
    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_76ce3f6dbe5fb3933297843d.woff2')format("woff");}.ff1_c00000{font-family:ff1_c00000;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00000;src:url('chunks/assets/font_c5c8c533419cf76bf3239c7d.woff2')format("woff");}.ff2_c00000{font-family:ff2_c00000;line-height:0.925293;font-style:normal;font-weight:normal;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_fa464bfeec9cd4ac9c60eddd.woff2')format("woff");}.ff3_c00000{font-family:ff3_c00000;line-height:0.938477;font-style:normal;font-weight:normal;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_5f26be7947a573dfc9ebb07d.woff2')format("woff");}.ff4_c00000{font-family:ff4_c00000;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00000;src:url('chunks/assets/font_3a7456ad9241f4286ac6fb14.woff2')format("woff");}.ff5_c00000{font-family:ff5_c00000;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00000{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00000{vertical-align:0.000000px;}
.lsd_c00000{letter-spacing:-0.505008px;}
.lsf_c00000{letter-spacing:-0.144288px;}
.ls9_c00000{letter-spacing:-0.096120px;}
.lsa_c00000{letter-spacing:-0.067284px;}
.lse_c00000{letter-spacing:-0.036072px;}
.lsc_c00000{letter-spacing:-0.030060px;}
.lsb_c00000{letter-spacing:-0.028800px;}
.ls8_c00000{letter-spacing:0.000000px;}
.ls0_c00000{letter-spacing:0.006012px;}
.ls3_c00000{letter-spacing:0.018036px;}
.ls2_c00000{letter-spacing:0.024048px;}
.ls6_c00000{letter-spacing:0.030060px;}
.ls7_c00000{letter-spacing:0.042084px;}
.ls1_c00000{letter-spacing:13.887720px;}
.ls4_c00000{letter-spacing:21.084084px;}
.ls5_c00000{letter-spacing:21.444804px;}
.sc__c00000{text-shadow:none;}
.sc0_c00000{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00000{-webkit-text-stroke:0px transparent;}
.sc0_c00000{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00000{word-spacing:-16.683300px;}
.wsa_c00000{word-spacing:-0.186372px;}
.ws9_c00000{word-spacing:-0.162324px;}
.wsb_c00000{word-spacing:-0.108216px;}
.ws1_c00000{word-spacing:0.000000px;}
.ws2_c00000{word-spacing:0.096120px;}
.ws3_c00000{word-spacing:0.187200px;}
.wsc_c00000{word-spacing:0.360720px;}
.ws5_c00000{word-spacing:13.869684px;}
.ws4_c00000{word-spacing:13.893732px;}
.ws8_c00000{word-spacing:21.066048px;}
.ws6_c00000{word-spacing:21.078072px;}
.ws7_c00000{word-spacing:21.132180px;}
._3_c00000{margin-left:-21.739392px;}
._2_c00000{margin-left:-14.350644px;}
._1_c00000{margin-left:-1.220436px;}
._0_c00000{width:1.191888px;}
.fc1_c00000{color:transparent;}
.fc0_c00000{color:rgb(0,0,0);}
.fs3_c00000{font-size:47.880000px;}
.fs4_c00000{font-size:60.120000px;}
.fs0_c00000{font-size:72.000000px;}
.fs2_c00000{font-size:96.120000px;}
.fs1_c00000{font-size:108.000000px;}
.y0_c00000{bottom:0.000000px;}
.y31_c00000{bottom:170.580450px;}
.y30_c00000{bottom:190.830429px;}
.y2f_c00000{bottom:208.200600px;}
.y2e_c00000{bottom:225.390450px;}
.y2d_c00000{bottom:242.580819px;}
.y2c_c00000{bottom:259.680450px;}
.y2b_c00000{bottom:277.140450px;}
.y2a_c00000{bottom:294.331125px;}
.y29_c00000{bottom:311.611116px;}
.y28_c00000{bottom:328.891107px;}
.y27_c00000{bottom:342.840450px;}
.y24_c00000{bottom:350.040450px;}
.y23_c00000{bottom:370.740450px;}
.y22_c00000{bottom:391.440450px;}
.y26_c00000{bottom:404.400450px;}
.y21_c00000{bottom:412.140450px;}
.y25_c00000{bottom:421.050450px;}
.y20_c00000{bottom:432.840450px;}
.y1f_c00000{bottom:453.450450px;}
.y1e_c00000{bottom:474.150450px;}
.y1d_c00000{bottom:494.850450px;}
.y1c_c00000{bottom:515.550450px;}
.y1b_c00000{bottom:536.250450px;}
.y1a_c00000{bottom:556.950450px;}
.y19_c00000{bottom:577.650450px;}
.y18_c00000{bottom:598.350450px;}
.y17_c00000{bottom:619.050450px;}
.y16_c00000{bottom:639.750450px;}
.y15_c00000{bottom:659.280450px;}
.y14_c00000{bottom:675.479667px;}
.y13_c00000{bottom:703.020450px;}
.y12_c00000{bottom:729.570450px;}
.y11_c00000{bottom:750.270450px;}
.y10_c00000{bottom:770.970450px;}
.yf_c00000{bottom:791.670450px;}
.ye_c00000{bottom:814.080450px;}
.yd_c00000{bottom:843.420450px;}
.yc_c00000{bottom:864.030450px;}
.yb_c00000{bottom:885.900450px;}
.ya_c00000{bottom:914.070450px;}
.y9_c00000{bottom:945.120450px;}
.y8_c00000{bottom:976.170450px;}
.y7_c00000{bottom:1007.220450px;}
.y6_c00000{bottom:1036.470450px;}
.y5_c00000{bottom:1057.260450px;}
.y4_c00000{bottom:1077.780450px;}
.y3_c00000{bottom:1098.660450px;}
.y2_c00000{bottom:1119.360450px;}
.y1_c00000{bottom:1140.060450px;}
.h5_c00000{height:34.857949px;}
.h7_c00000{height:40.070215px;}
.h6_c00000{height:43.769004px;}
.h1_c00000{height:47.988281px;}
.h2_c00000{height:52.417969px;}
.h4_c00000{height:69.977988px;}
.h3_c00000{height:78.626953px;}
.h0_c00000{height:1263.000000px;}
.w1_c00000{width:892.500000px;}
.w0_c00000{width:892.830000px;}
.x0_c00000{left:0.000000px;}
.x7_c00000{left:116.010000px;}
.x1_c00000{left:127.620000px;}
.x3_c00000{left:223.740000px;}
.x4_c00000{left:231.750000px;}
.x5_c00000{left:321.840873px;}
.x6_c00000{left:345.150000px;}
.x2_c00000{left:446.490000px;}
.x8_c00000{left:525.690000px;}
@media print{
.v0_c00000{vertical-align:0.000000pt;}
.lsd_c00000{letter-spacing:-0.448896pt;}
.lsf_c00000{letter-spacing:-0.128256pt;}
.ls9_c00000{letter-spacing:-0.085440pt;}
.lsa_c00000{letter-spacing:-0.059808pt;}
.lse_c00000{letter-spacing:-0.032064pt;}
.lsc_c00000{letter-spacing:-0.026720pt;}
.lsb_c00000{letter-spacing:-0.025600pt;}
.ls8_c00000{letter-spacing:0.000000pt;}
.ls0_c00000{letter-spacing:0.005344pt;}
.ls3_c00000{letter-spacing:0.016032pt;}
.ls2_c00000{letter-spacing:0.021376pt;}
.ls6_c00000{letter-spacing:0.026720pt;}
.ls7_c00000{letter-spacing:0.037408pt;}
.ls1_c00000{letter-spacing:12.344640pt;}
.ls4_c00000{letter-spacing:18.741408pt;}
.ls5_c00000{letter-spacing:19.062048pt;}
.ws0_c00000{word-spacing:-14.829600pt;}
.wsa_c00000{word-spacing:-0.165664pt;}
.ws9_c00000{word-spacing:-0.144288pt;}
.wsb_c00000{word-spacing:-0.096192pt;}
.ws1_c00000{word-spacing:0.000000pt;}
.ws2_c00000{word-spacing:0.085440pt;}
.ws3_c00000{word-spacing:0.166400pt;}
.wsc_c00000{word-spacing:0.320640pt;}
.ws5_c00000{word-spacing:12.328608pt;}
.ws4_c00000{word-spacing:12.349984pt;}
.ws8_c00000{word-spacing:18.725376pt;}
.ws6_c00000{word-spacing:18.736064pt;}
.ws7_c00000{word-spacing:18.784160pt;}
._3_c00000{margin-left:-19.323904pt;}
._2_c00000{margin-left:-12.756128pt;}
._1_c00000{margin-left:-1.084832pt;}
._0_c00000{width:1.059456pt;}
.fs3_c00000{font-size:42.560000pt;}
.fs4_c00000{font-size:53.440000pt;}
.fs0_c00000{font-size:64.000000pt;}
.fs2_c00000{font-size:85.440000pt;}
.fs1_c00000{font-size:96.000000pt;}
.y0_c00000{bottom:0.000000pt;}
.y31_c00000{bottom:151.627067pt;}
.y30_c00000{bottom:169.627048pt;}
.y2f_c00000{bottom:185.067200pt;}
.y2e_c00000{bottom:200.347067pt;}
.y2d_c00000{bottom:215.627395pt;}
.y2c_c00000{bottom:230.827067pt;}
.y2b_c00000{bottom:246.347067pt;}
.y2a_c00000{bottom:261.627667pt;}
.y29_c00000{bottom:276.987659pt;}
.y28_c00000{bottom:292.347651pt;}
.y27_c00000{bottom:304.747067pt;}
.y24_c00000{bottom:311.147067pt;}
.y23_c00000{bottom:329.547067pt;}
.y22_c00000{bottom:347.947067pt;}
.y26_c00000{bottom:359.467067pt;}
.y21_c00000{bottom:366.347067pt;}
.y25_c00000{bottom:374.267067pt;}
.y20_c00000{bottom:384.747067pt;}
.y1f_c00000{bottom:403.067067pt;}
.y1e_c00000{bottom:421.467067pt;}
.y1d_c00000{bottom:439.867067pt;}
.y1c_c00000{bottom:458.267067pt;}
.y1b_c00000{bottom:476.667067pt;}
.y1a_c00000{bottom:495.067067pt;}
.y19_c00000{bottom:513.467067pt;}
.y18_c00000{bottom:531.867067pt;}
.y17_c00000{bottom:550.267067pt;}
.y16_c00000{bottom:568.667067pt;}
.y15_c00000{bottom:586.027067pt;}
.y14_c00000{bottom:600.426371pt;}
.y13_c00000{bottom:624.907067pt;}
.y12_c00000{bottom:648.507067pt;}
.y11_c00000{bottom:666.907067pt;}
.y10_c00000{bottom:685.307067pt;}
.yf_c00000{bottom:703.707067pt;}
.ye_c00000{bottom:723.627067pt;}
.yd_c00000{bottom:749.707067pt;}
.yc_c00000{bottom:768.027067pt;}
.yb_c00000{bottom:787.467067pt;}
.ya_c00000{bottom:812.507067pt;}
.y9_c00000{bottom:840.107067pt;}
.y8_c00000{bottom:867.707067pt;}
.y7_c00000{bottom:895.307067pt;}
.y6_c00000{bottom:921.307067pt;}
.y5_c00000{bottom:939.787067pt;}
.y4_c00000{bottom:958.027067pt;}
.y3_c00000{bottom:976.587067pt;}
.y2_c00000{bottom:994.987067pt;}
.y1_c00000{bottom:1013.387067pt;}
.h5_c00000{height:30.984844pt;}
.h7_c00000{height:35.617969pt;}
.h6_c00000{height:38.905781pt;}
.h1_c00000{height:42.656250pt;}
.h2_c00000{height:46.593750pt;}
.h4_c00000{height:62.202656pt;}
.h3_c00000{height:69.890625pt;}
.h0_c00000{height:1122.666667pt;}
.w1_c00000{width:793.333333pt;}
.w0_c00000{width:793.626667pt;}
.x0_c00000{left:0.000000pt;}
.x7_c00000{left:103.120000pt;}
.x1_c00000{left:113.440000pt;}
.x3_c00000{left:198.880000pt;}
.x4_c00000{left:206.000000pt;}
.x5_c00000{left:286.080776pt;}
.x6_c00000{left:306.800000pt;}
.x2_c00000{left:396.880000pt;}
.x8_c00000{left:467.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5a18d9cb25b99df289c7832e.woff2')format("woff");}.ff1_c00001{font-family:ff1_c00001;line-height:1.109863;font-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_c00001{transform:matrix(0.042950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042950,0.000000,0.000000,0.250000,0,0);}
.m1f_c00001{transform:matrix(0.044700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.044700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.044700,0.000000,0.000000,0.250000,0,0);}
.m1b_c00001{transform:matrix(0.045250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00001{transform:matrix(0.049500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.049500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.049500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00001{transform:matrix(0.056550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056550,0.000000,0.000000,0.250000,0,0);}
.m19_c00001{transform:matrix(0.075075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075075,0.000000,0.000000,0.250000,0,0);}
.m28_c00001{transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);}
.m27_c00001{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m17_c00001{transform:matrix(0.126450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126450,0.000000,0.000000,0.250000,0,0);}
.m18_c00001{transform:matrix(0.228950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228950,0.000000,0.000000,0.250000,0,0);}
.m25_c00001{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m24_c00001{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.mb_c00001{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m26_c00001{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m23_c00001{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m3_c00001{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m8_c00001{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m20_c00001{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m22_c00001{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m7_c00001{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.ma_c00001{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m9_c00001{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m5_c00001{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.me_c00001{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m4_c00001{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m15_c00001{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m6_c00001{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);}
.m2_c00001{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m16_c00001{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m12_c00001{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);}
.md_c00001{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.mc_c00001{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m11_c00001{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m13_c00001{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.mf_c00001{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m0_c00001{transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);}
.m10_c00001{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m14_c00001{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m29_c00001{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00001{transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00001{transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);}
.m21_c00001{transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);}
.m1_c00001{transform:matrix(0.952500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.952500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.952500,0.000000,0.000000,0.250000,0,0);}
.v0_c00001{vertical-align:0.000000px;}
.ls0_c00001{letter-spacing:0.000000px;}
.sc__c00001{text-shadow:none;}
.sc0_c00001{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00001{-webkit-text-stroke:0px transparent;}
.sc0_c00001{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00001{word-spacing:0.000000px;}
.fc0_c00001{color:transparent;}
.fs11_c00001{font-size:8.640000px;}
.fs10_c00001{font-size:11.520000px;}
.fs1_c00001{font-size:17.280000px;}
.fs12_c00001{font-size:25.920000px;}
.fs0_c00001{font-size:28.800000px;}
.fse_c00001{font-size:31.680000px;}
.fs4_c00001{font-size:43.200000px;}
.fs2_c00001{font-size:46.080000px;}
.fs3_c00001{font-size:48.960000px;}
.fs7_c00001{font-size:54.720000px;}
.fs6_c00001{font-size:57.600000px;}
.fs5_c00001{font-size:60.480000px;}
.fsb_c00001{font-size:66.240000px;}
.fs9_c00001{font-size:97.920000px;}
.fsf_c00001{font-size:120.960000px;}
.fs13_c00001{font-size:190.080000px;}
.fsc_c00001{font-size:213.120000px;}
.fsd_c00001{font-size:216.000000px;}
.fsa_c00001{font-size:259.200000px;}
.fs8_c00001{font-size:311.040000px;}
.y0_c00001{bottom:0.000000px;}
.y21_c00001{bottom:10.080000px;}
.y1f_c00001{bottom:57.600000px;}
.y20_c00001{bottom:58.320000px;}
.y1e_c00001{bottom:61.920000px;}
.y1b_c00001{bottom:64.800000px;}
.y1d_c00001{bottom:70.560000px;}
.y1c_c00001{bottom:78.480000px;}
.y1a_c00001{bottom:94.320000px;}
.y18_c00001{bottom:95.040000px;}
.y19_c00001{bottom:96.480000px;}
.y17_c00001{bottom:115.200000px;}
.y16_c00001{bottom:125.280000px;}
.y15_c00001{bottom:126.000000px;}
.y14_c00001{bottom:126.720000px;}
.y12_c00001{bottom:182.880000px;}
.y13_c00001{bottom:192.960000px;}
.y11_c00001{bottom:195.840000px;}
.y10_c00001{bottom:244.080000px;}
.yd_c00001{bottom:378.000000px;}
.ye_c00001{bottom:380.160000px;}
.yf_c00001{bottom:381.600000px;}
.yb_c00001{bottom:484.560000px;}
.yc_c00001{bottom:486.720000px;}
.y9_c00001{bottom:516.240000px;}
.ya_c00001{bottom:516.960000px;}
.y8_c00001{bottom:518.400000px;}
.y7_c00001{bottom:519.120000px;}
.y5_c00001{bottom:730.080000px;}
.y6_c00001{bottom:730.800000px;}
.y4_c00001{bottom:772.560000px;}
.y3_c00001{bottom:773.280000px;}
.y2_c00001{bottom:1100.880000px;}
.y1_c00001{bottom:1110.960000px;}
.h13_c00001{height:7.775156px;}
.h12_c00001{height:10.366875px;}
.h3_c00001{height:15.550313px;}
.h14_c00001{height:23.325469px;}
.h2_c00001{height:25.917187px;}
.h10_c00001{height:28.508906px;}
.h6_c00001{height:38.875781px;}
.h4_c00001{height:41.467500px;}
.h5_c00001{height:44.059219px;}
.h9_c00001{height:49.242656px;}
.h8_c00001{height:51.834375px;}
.h7_c00001{height:54.426094px;}
.hd_c00001{height:59.609531px;}
.hb_c00001{height:88.118437px;}
.h11_c00001{height:108.852188px;}
.h15_c00001{height:171.053437px;}
.he_c00001{height:191.787188px;}
.hf_c00001{height:194.378906px;}
.hc_c00001{height:233.254688px;}
.ha_c00001{height:279.905625px;}
.h0_c00001{height:1139.760000px;}
.h1_c00001{height:1140.000000px;}
.w0_c00001{width:828.000000px;}
.x0_c00001{left:0.000000px;}
.x17_c00001{left:66.960000px;}
.x11_c00001{left:233.280000px;}
.x3_c00001{left:235.440000px;}
.x4_c00001{left:277.920000px;}
.x1a_c00001{left:295.200000px;}
.x20_c00001{left:308.880000px;}
.x5_c00001{left:329.040000px;}
.x12_c00001{left:330.480000px;}
.x18_c00001{left:340.560000px;}
.x9_c00001{left:342.000000px;}
.x1b_c00001{left:343.440000px;}
.x16_c00001{left:347.760000px;}
.x1e_c00001{left:362.880000px;}
.x1c_c00001{left:370.800000px;}
.xa_c00001{left:373.680000px;}
.x6_c00001{left:394.560000px;}
.xb_c00001{left:405.360000px;}
.x21_c00001{left:417.600000px;}
.x1d_c00001{left:426.960000px;}
.x19_c00001{left:436.320000px;}
.x7_c00001{left:438.480000px;}
.xf_c00001{left:469.440000px;}
.xc_c00001{left:493.200000px;}
.xd_c00001{left:502.560000px;}
.x13_c00001{left:511.920000px;}
.x8_c00001{left:568.080000px;}
.x10_c00001{left:589.680000px;}
.x14_c00001{left:610.560000px;}
.xe_c00001{left:620.640000px;}
.x15_c00001{left:641.520000px;}
.x22_c00001{left:660.960000px;}
.x28_c00001{left:663.120000px;}
.x1f_c00001{left:667.440000px;}
.x25_c00001{left:675.360000px;}
.x23_c00001{left:735.840000px;}
.x26_c00001{left:742.320000px;}
.x24_c00001{left:751.680000px;}
.x27_c00001{left:756.720000px;}
.x1_c00001{left:767.520000px;}
.x2_c00001{left:768.960000px;}
@media print{
.v0_c00001{vertical-align:0.000000pt;}
.ls0_c00001{letter-spacing:0.000000pt;}
.ws0_c00001{word-spacing:0.000000pt;}
.fs11_c00001{font-size:7.680000pt;}
.fs10_c00001{font-size:10.240000pt;}
.fs1_c00001{font-size:15.360000pt;}
.fs12_c00001{font-size:23.040000pt;}
.fs0_c00001{font-size:25.600000pt;}
.fse_c00001{font-size:28.160000pt;}
.fs4_c00001{font-size:38.400000pt;}
.fs2_c00001{font-size:40.960000pt;}
.fs3_c00001{font-size:43.520000pt;}
.fs7_c00001{font-size:48.640000pt;}
.fs6_c00001{font-size:51.200000pt;}
.fs5_c00001{font-size:53.760000pt;}
.fsb_c00001{font-size:58.880000pt;}
.fs9_c00001{font-size:87.040000pt;}
.fsf_c00001{font-size:107.520000pt;}
.fs13_c00001{font-size:168.960000pt;}
.fsc_c00001{font-size:189.440000pt;}
.fsd_c00001{font-size:192.000000pt;}
.fsa_c00001{font-size:230.400000pt;}
.fs8_c00001{font-size:276.480000pt;}
.y0_c00001{bottom:0.000000pt;}
.y21_c00001{bottom:8.960000pt;}
.y1f_c00001{bottom:51.200000pt;}
.y20_c00001{bottom:51.840000pt;}
.y1e_c00001{bottom:55.040000pt;}
.y1b_c00001{bottom:57.600000pt;}
.y1d_c00001{bottom:62.720000pt;}
.y1c_c00001{bottom:69.760000pt;}
.y1a_c00001{bottom:83.840000pt;}
.y18_c00001{bottom:84.480000pt;}
.y19_c00001{bottom:85.760000pt;}
.y17_c00001{bottom:102.400000pt;}
.y16_c00001{bottom:111.360000pt;}
.y15_c00001{bottom:112.000000pt;}
.y14_c00001{bottom:112.640000pt;}
.y12_c00001{bottom:162.560000pt;}
.y13_c00001{bottom:171.520000pt;}
.y11_c00001{bottom:174.080000pt;}
.y10_c00001{bottom:216.960000pt;}
.yd_c00001{bottom:336.000000pt;}
.ye_c00001{bottom:337.920000pt;}
.yf_c00001{bottom:339.200000pt;}
.yb_c00001{bottom:430.720000pt;}
.yc_c00001{bottom:432.640000pt;}
.y9_c00001{bottom:458.880000pt;}
.ya_c00001{bottom:459.520000pt;}
.y8_c00001{bottom:460.800000pt;}
.y7_c00001{bottom:461.440000pt;}
.y5_c00001{bottom:648.960000pt;}
.y6_c00001{bottom:649.600000pt;}
.y4_c00001{bottom:686.720000pt;}
.y3_c00001{bottom:687.360000pt;}
.y2_c00001{bottom:978.560000pt;}
.y1_c00001{bottom:987.520000pt;}
.h13_c00001{height:6.911250pt;}
.h12_c00001{height:9.215000pt;}
.h3_c00001{height:13.822500pt;}
.h14_c00001{height:20.733750pt;}
.h2_c00001{height:23.037500pt;}
.h10_c00001{height:25.341250pt;}
.h6_c00001{height:34.556250pt;}
.h4_c00001{height:36.860000pt;}
.h5_c00001{height:39.163750pt;}
.h9_c00001{height:43.771250pt;}
.h8_c00001{height:46.075000pt;}
.h7_c00001{height:48.378750pt;}
.hd_c00001{height:52.986250pt;}
.hb_c00001{height:78.327500pt;}
.h11_c00001{height:96.757500pt;}
.h15_c00001{height:152.047500pt;}
.he_c00001{height:170.477500pt;}
.hf_c00001{height:172.781250pt;}
.hc_c00001{height:207.337500pt;}
.ha_c00001{height:248.805000pt;}
.h0_c00001{height:1013.120000pt;}
.h1_c00001{height:1013.333333pt;}
.w0_c00001{width:736.000000pt;}
.x0_c00001{left:0.000000pt;}
.x17_c00001{left:59.520000pt;}
.x11_c00001{left:207.360000pt;}
.x3_c00001{left:209.280000pt;}
.x4_c00001{left:247.040000pt;}
.x1a_c00001{left:262.400000pt;}
.x20_c00001{left:274.560000pt;}
.x5_c00001{left:292.480000pt;}
.x12_c00001{left:293.760000pt;}
.x18_c00001{left:302.720000pt;}
.x9_c00001{left:304.000000pt;}
.x1b_c00001{left:305.280000pt;}
.x16_c00001{left:309.120000pt;}
.x1e_c00001{left:322.560000pt;}
.x1c_c00001{left:329.600000pt;}
.xa_c00001{left:332.160000pt;}
.x6_c00001{left:350.720000pt;}
.xb_c00001{left:360.320000pt;}
.x21_c00001{left:371.200000pt;}
.x1d_c00001{left:379.520000pt;}
.x19_c00001{left:387.840000pt;}
.x7_c00001{left:389.760000pt;}
.xf_c00001{left:417.280000pt;}
.xc_c00001{left:438.400000pt;}
.xd_c00001{left:446.720000pt;}
.x13_c00001{left:455.040000pt;}
.x8_c00001{left:504.960000pt;}
.x10_c00001{left:524.160000pt;}
.x14_c00001{left:542.720000pt;}
.xe_c00001{left:551.680000pt;}
.x15_c00001{left:570.240000pt;}
.x22_c00001{left:587.520000pt;}
.x28_c00001{left:589.440000pt;}
.x1f_c00001{left:593.280000pt;}
.x25_c00001{left:600.320000pt;}
.x23_c00001{left:654.080000pt;}
.x26_c00001{left:659.840000pt;}
.x24_c00001{left:668.160000pt;}
.x27_c00001{left:672.640000pt;}
.x1_c00001{left:682.240000pt;}
.x2_c00001{left:683.520000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0f82740cd984730322aca6c2.woff2')format("woff");}.ff1_c00002{font-family:ff1_c00002;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00002{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m2_c00002{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m1_c00002{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_c00002{vertical-align:0.000000px;}
.ls0_c00002{letter-spacing:0.000000px;}
.sc__c00002{text-shadow:none;}
.sc0_c00002{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00002{-webkit-text-stroke:0px transparent;}
.sc0_c00002{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00002{word-spacing:0.000000px;}
.fc0_c00002{color:transparent;}
.fs1_c00002{font-size:43.200000px;}
.fs0_c00002{font-size:69.120000px;}
.y0_c00002{bottom:0.000000px;}
.y2_c00002{bottom:699.120000px;}
.y1_c00002{bottom:1082.160000px;}
.h3_c00002{height:38.875781px;}
.h2_c00002{height:62.201250px;}
.h0_c00002{height:1142.640000px;}
.h1_c00002{height:1143.000000px;}
.w0_c00002{width:832.320000px;}
.w1_c00002{width:832.500000px;}
.x0_c00002{left:0.000000px;}
.x2_c00002{left:473.760000px;}
.x3_c00002{left:516.240000px;}
.x1_c00002{left:791.280000px;}
@media print{
.v0_c00002{vertical-align:0.000000pt;}
.ls0_c00002{letter-spacing:0.000000pt;}
.ws0_c00002{word-spacing:0.000000pt;}
.fs1_c00002{font-size:38.400000pt;}
.fs0_c00002{font-size:61.440000pt;}
.y0_c00002{bottom:0.000000pt;}
.y2_c00002{bottom:621.440000pt;}
.y1_c00002{bottom:961.920000pt;}
.h3_c00002{height:34.556250pt;}
.h2_c00002{height:55.290000pt;}
.h0_c00002{height:1015.680000pt;}
.h1_c00002{height:1016.000000pt;}
.w0_c00002{width:739.840000pt;}
.w1_c00002{width:740.000000pt;}
.x0_c00002{left:0.000000pt;}
.x2_c00002{left:421.120000pt;}
.x3_c00002{left:458.880000pt;}
.x1_c00002{left:703.360000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b049642ac8cc2f2b5cecd753.woff2')format("woff");}.ff1_c00003{font-family:ff1_c00003;line-height:1.109863;font-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_c00003{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00003{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m53_c00003{transform:matrix(0.194825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194825,0.000000,0.000000,0.250000,0,0);}
.md_c00003{transform:matrix(0.197575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197575,0.000000,0.000000,0.250000,0,0);}
.m48_c00003{transform:matrix(0.214275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214275,0.000000,0.000000,0.250000,0,0);}
.m2f_c00003{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m33_c00003{transform:matrix(0.229575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229575,0.000000,0.000000,0.250000,0,0);}
.m1e_c00003{transform:matrix(0.234200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234200,0.000000,0.000000,0.250000,0,0);}
.m0_c00003{transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);}
.m4d_c00003{transform:matrix(0.248375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248375,0.000000,0.000000,0.250000,0,0);}
.m19_c00003{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);}
.m56_c00003{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);}
.m28_c00003{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m22_c00003{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00003{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00003{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m44_c00003{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00003{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m38_c00003{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m30_c00003{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1_c00003{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00003{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00003{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00003{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00003{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m31_c00003{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_c00003{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);}
.m2c_c00003{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m17_c00003{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m4_c00003{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);}
.m49_c00003{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m62_c00003{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m15_c00003{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m45_c00003{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);}
.m60_c00003{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);}
.m4a_c00003{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00003{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);}
.m23_c00003{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);}
.m40_c00003{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m46_c00003{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m6_c00003{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m7_c00003{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m20_c00003{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m63_c00003{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m55_c00003{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);}
.m2d_c00003{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m2_c00003{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m24_c00003{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);}
.m14_c00003{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);}
.m66_c00003{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.mc_c00003{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00003{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m39_c00003{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00003{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m42_c00003{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);}
.m9_c00003{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m51_c00003{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);}
.m58_c00003{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m32_c00003{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);}
.m5b_c00003{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m47_c00003{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);}
.m3a_c00003{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00003{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m41_c00003{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00003{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m16_c00003{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m68_c00003{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m50_c00003{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.me_c00003{transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);}
.m54_c00003{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);}
.m8_c00003{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m52_c00003{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m27_c00003{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.m35_c00003{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00003{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.ma_c00003{transform:matrix(0.817500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.817500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.817500,0.000000,0.000000,0.250000,0,0);}
.m37_c00003{transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);}
.mb_c00003{transform:matrix(0.832500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832500,0.000000,0.000000,0.250000,0,0);}
.m65_c00003{transform:matrix(0.850000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.850000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.850000,0.000000,0.000000,0.250000,0,0);}
.m25_c00003{transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00003{transform:matrix(0.930000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.930000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.930000,0.000000,0.000000,0.250000,0,0);}
.m43_c00003{transform:matrix(0.940000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.940000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.940000,0.000000,0.000000,0.250000,0,0);}
.m36_c00003{transform:matrix(0.942500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.942500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.942500,0.000000,0.000000,0.250000,0,0);}
.m61_c00003{transform:matrix(0.955000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.955000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.955000,0.000000,0.000000,0.250000,0,0);}
.m69_c00003{transform:matrix(0.967500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.967500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.967500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00003{transform:matrix(0.980000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.980000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.980000,0.000000,0.000000,0.250000,0,0);}
.m26_c00003{transform:matrix(0.982500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.982500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.982500,0.000000,0.000000,0.250000,0,0);}
.m57_c00003{transform:matrix(1.050000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.050000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.050000,0.000000,0.000000,0.250000,0,0);}
.m64_c00003{transform:matrix(1.055000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.055000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.055000,0.000000,0.000000,0.250000,0,0);}
.m21_c00003{transform:matrix(1.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.060000,0.000000,0.000000,0.250000,0,0);}
.mf_c00003{transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);}
.m59_c00003{transform:matrix(1.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.080000,0.000000,0.000000,0.250000,0,0);}
.m3_c00003{transform:matrix(1.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.110000,0.000000,0.000000,0.250000,0,0);}
.m29_c00003{transform:matrix(1.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.125000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00003{transform:matrix(1.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.137500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00003{transform:matrix(1.147500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.147500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.147500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00003{transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);}
.m10_c00003{transform:matrix(1.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.157500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00003{transform:matrix(1.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.165000,0.000000,0.000000,0.250000,0,0);}
.m34_c00003{transform:matrix(1.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.167500,0.000000,0.000000,0.250000,0,0);}
.m12_c00003{transform:matrix(1.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.190000,0.000000,0.000000,0.250000,0,0);}
.m67_c00003{transform:matrix(1.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.195000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00003{transform:matrix(1.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.227500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00003{transform:matrix(1.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.230000,0.000000,0.000000,0.250000,0,0);}
.m5_c00003{transform:matrix(1.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.235000,0.000000,0.000000,0.250000,0,0);}
.m18_c00003{transform:matrix(1.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.317500,0.000000,0.000000,0.250000,0,0);}
.v0_c00003{vertical-align:0.000000px;}
.ls0_c00003{letter-spacing:0.000000px;}
.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;}
.fc0_c00003{color:transparent;}
.fsd_c00003{font-size:2.880000px;}
.fs8_c00003{font-size:5.760000px;}
.fs13_c00003{font-size:8.640000px;}
.fs4_c00003{font-size:17.280000px;}
.fs5_c00003{font-size:20.160000px;}
.fs3_c00003{font-size:23.040000px;}
.fs2_c00003{font-size:25.920000px;}
.fse_c00003{font-size:28.800000px;}
.fs11_c00003{font-size:31.680000px;}
.fsf_c00003{font-size:34.560000px;}
.fs10_c00003{font-size:40.320000px;}
.fs12_c00003{font-size:43.200000px;}
.fsa_c00003{font-size:48.960000px;}
.fs6_c00003{font-size:51.840000px;}
.fs7_c00003{font-size:54.720000px;}
.fs1_c00003{font-size:57.600000px;}
.fs9_c00003{font-size:60.480000px;}
.fsb_c00003{font-size:63.360000px;}
.fs0_c00003{font-size:66.240000px;}
.fsc_c00003{font-size:69.120000px;}
.y0_c00003{bottom:0.000000px;}
.y50_c00003{bottom:102.960000px;}
.y51_c00003{bottom:104.400000px;}
.y53_c00003{bottom:105.120000px;}
.y52_c00003{bottom:105.840000px;}
.y54_c00003{bottom:106.560000px;}
.y4b_c00003{bottom:146.160000px;}
.y4f_c00003{bottom:146.880000px;}
.y4d_c00003{bottom:147.600000px;}
.y4c_c00003{bottom:149.040000px;}
.y4e_c00003{bottom:150.480000px;}
.y48_c00003{bottom:190.080000px;}
.y47_c00003{bottom:190.800000px;}
.y49_c00003{bottom:191.520000px;}
.y4a_c00003{bottom:192.240000px;}
.y42_c00003{bottom:230.400000px;}
.y45_c00003{bottom:232.560000px;}
.y43_c00003{bottom:233.280000px;}
.y44_c00003{bottom:234.000000px;}
.y46_c00003{bottom:234.720000px;}
.y3e_c00003{bottom:273.600000px;}
.y3f_c00003{bottom:275.760000px;}
.y40_c00003{bottom:276.480000px;}
.y41_c00003{bottom:281.520000px;}
.y3c_c00003{bottom:317.520000px;}
.y3d_c00003{bottom:318.240000px;}
.y37_c00003{bottom:358.560000px;}
.y38_c00003{bottom:360.000000px;}
.y3b_c00003{bottom:360.720000px;}
.y39_c00003{bottom:361.440000px;}
.y36_c00003{bottom:362.160000px;}
.y3a_c00003{bottom:362.880000px;}
.y32_c00003{bottom:401.760000px;}
.y31_c00003{bottom:403.200000px;}
.y33_c00003{bottom:403.920000px;}
.y34_c00003{bottom:404.640000px;}
.y35_c00003{bottom:406.080000px;}
.y2e_c00003{bottom:446.400000px;}
.y2f_c00003{bottom:447.120000px;}
.y30_c00003{bottom:447.840000px;}
.y2d_c00003{bottom:488.880000px;}
.y2a_c00003{bottom:489.600000px;}
.y2b_c00003{bottom:490.320000px;}
.y2c_c00003{bottom:491.040000px;}
.y27_c00003{bottom:529.920000px;}
.y29_c00003{bottom:532.080000px;}
.y26_c00003{bottom:532.800000px;}
.y28_c00003{bottom:533.520000px;}
.y24_c00003{bottom:573.120000px;}
.y25_c00003{bottom:574.560000px;}
.y23_c00003{bottom:575.280000px;}
.y22_c00003{bottom:576.000000px;}
.y21_c00003{bottom:617.760000px;}
.y20_c00003{bottom:618.480000px;}
.y1f_c00003{bottom:619.200000px;}
.y1b_c00003{bottom:658.800000px;}
.y1e_c00003{bottom:660.240000px;}
.y1a_c00003{bottom:660.960000px;}
.y1c_c00003{bottom:663.840000px;}
.y1d_c00003{bottom:666.000000px;}
.y19_c00003{bottom:702.720000px;}
.y17_c00003{bottom:703.440000px;}
.y16_c00003{bottom:704.160000px;}
.y18_c00003{bottom:704.880000px;}
.y15_c00003{bottom:745.920000px;}
.y14_c00003{bottom:746.640000px;}
.y10_c00003{bottom:786.960000px;}
.y11_c00003{bottom:788.400000px;}
.y13_c00003{bottom:789.120000px;}
.y12_c00003{bottom:793.440000px;}
.yc_c00003{bottom:829.440000px;}
.yf_c00003{bottom:830.880000px;}
.yb_c00003{bottom:831.600000px;}
.yd_c00003{bottom:832.320000px;}
.ye_c00003{bottom:833.040000px;}
.y9_c00003{bottom:874.080000px;}
.y7_c00003{bottom:874.800000px;}
.y8_c00003{bottom:875.520000px;}
.ya_c00003{bottom:876.240000px;}
.y4_c00003{bottom:916.560000px;}
.y3_c00003{bottom:917.280000px;}
.y6_c00003{bottom:918.000000px;}
.y5_c00003{bottom:918.720000px;}
.y2_c00003{bottom:982.800000px;}
.y1_c00003{bottom:1070.640000px;}
.hf_c00003{height:2.591719px;}
.ha_c00003{height:5.183438px;}
.h15_c00003{height:7.775156px;}
.h6_c00003{height:15.550313px;}
.h7_c00003{height:18.142031px;}
.h5_c00003{height:20.733750px;}
.h4_c00003{height:23.325469px;}
.h10_c00003{height:25.917187px;}
.h13_c00003{height:28.508906px;}
.h11_c00003{height:31.100625px;}
.h12_c00003{height:36.284062px;}
.h14_c00003{height:38.875781px;}
.hc_c00003{height:44.059219px;}
.h8_c00003{height:46.650937px;}
.h9_c00003{height:49.242656px;}
.h3_c00003{height:51.834375px;}
.hb_c00003{height:54.426094px;}
.hd_c00003{height:57.017812px;}
.h2_c00003{height:59.609531px;}
.he_c00003{height:62.201250px;}
.h0_c00003{height:1139.760000px;}
.h1_c00003{height:1140.000000px;}
.w0_c00003{width:828.000000px;}
.x0_c00003{left:0.000000px;}
.x1b_c00003{left:102.240000px;}
.x3_c00003{left:103.680000px;}
.x1f_c00003{left:136.080000px;}
.x23_c00003{left:168.480000px;}
.x4_c00003{left:169.920000px;}
.x15_c00003{left:178.560000px;}
.x20_c00003{left:189.360000px;}
.x2a_c00003{left:200.160000px;}
.x3c_c00003{left:202.320000px;}
.x1c_c00003{left:223.920000px;}
.x30_c00003{left:233.280000px;}
.x2c_c00003{left:244.080000px;}
.x10_c00003{left:256.320000px;}
.x16_c00003{left:265.680000px;}
.x5_c00003{left:267.120000px;}
.x2b_c00003{left:276.480000px;}
.x6_c00003{left:277.920000px;}
.x3d_c00003{left:289.440000px;}
.x17_c00003{left:298.080000px;}
.x24_c00003{left:308.160000px;}
.x36_c00003{left:309.600000px;}
.x2d_c00003{left:318.960000px;}
.x3e_c00003{left:321.840000px;}
.x18_c00003{left:329.760000px;}
.x11_c00003{left:331.920000px;}
.x31_c00003{left:341.280000px;}
.x7_c00003{left:342.720000px;}
.x8_c00003{left:353.520000px;}
.x3f_c00003{left:362.880000px;}
.x44_c00003{left:372.960000px;}
.x2_c00003{left:374.400000px;}
.x12_c00003{left:375.840000px;}
.x13_c00003{left:386.640000px;}
.x41_c00003{left:395.280000px;}
.x43_c00003{left:405.360000px;}
.x32_c00003{left:406.800000px;}
.x45_c00003{left:408.240000px;}
.x19_c00003{left:418.320000px;}
.x40_c00003{left:429.120000px;}
.x9_c00003{left:439.920000px;}
.xa_c00003{left:450.720000px;}
.x33_c00003{left:460.080000px;}
.x49_c00003{left:462.240000px;}
.x25_c00003{left:481.680000px;}
.x26_c00003{left:483.840000px;}
.x37_c00003{left:503.280000px;}
.x38_c00003{left:515.520000px;}
.x3a_c00003{left:525.600000px;}
.x42_c00003{left:527.040000px;}
.x46_c00003{left:532.080000px;}
.x47_c00003{left:537.840000px;}
.x34_c00003{left:547.920000px;}
.x39_c00003{left:581.040000px;}
.x27_c00003{left:596.160000px;}
.x28_c00003{left:601.200000px;}
.x14_c00003{left:612.000000px;}
.x48_c00003{left:624.240000px;}
.x21_c00003{left:633.600000px;}
.x2e_c00003{left:635.040000px;}
.x2f_c00003{left:645.840000px;}
.x22_c00003{left:655.920000px;}
.x3b_c00003{left:660.960000px;}
.x29_c00003{left:666.720000px;}
.x1d_c00003{left:677.520000px;}
.xb_c00003{left:689.040000px;}
.xc_c00003{left:699.120000px;}
.x4a_c00003{left:700.560000px;}
.xd_c00003{left:710.640000px;}
.x35_c00003{left:720.720000px;}
.x1e_c00003{left:730.080000px;}
.x1a_c00003{left:731.520000px;}
.xe_c00003{left:741.600000px;}
.xf_c00003{left:764.640000px;}
.x1_c00003{left:771.120000px;}
@media print{
.v0_c00003{vertical-align:0.000000pt;}
.ls0_c00003{letter-spacing:0.000000pt;}
.ws0_c00003{word-spacing:0.000000pt;}
.fsd_c00003{font-size:2.560000pt;}
.fs8_c00003{font-size:5.120000pt;}
.fs13_c00003{font-size:7.680000pt;}
.fs4_c00003{font-size:15.360000pt;}
.fs5_c00003{font-size:17.920000pt;}
.fs3_c00003{font-size:20.480000pt;}
.fs2_c00003{font-size:23.040000pt;}
.fse_c00003{font-size:25.600000pt;}
.fs11_c00003{font-size:28.160000pt;}
.fsf_c00003{font-size:30.720000pt;}
.fs10_c00003{font-size:35.840000pt;}
.fs12_c00003{font-size:38.400000pt;}
.fsa_c00003{font-size:43.520000pt;}
.fs6_c00003{font-size:46.080000pt;}
.fs7_c00003{font-size:48.640000pt;}
.fs1_c00003{font-size:51.200000pt;}
.fs9_c00003{font-size:53.760000pt;}
.fsb_c00003{font-size:56.320000pt;}
.fs0_c00003{font-size:58.880000pt;}
.fsc_c00003{font-size:61.440000pt;}
.y0_c00003{bottom:0.000000pt;}
.y50_c00003{bottom:91.520000pt;}
.y51_c00003{bottom:92.800000pt;}
.y53_c00003{bottom:93.440000pt;}
.y52_c00003{bottom:94.080000pt;}
.y54_c00003{bottom:94.720000pt;}
.y4b_c00003{bottom:129.920000pt;}
.y4f_c00003{bottom:130.560000pt;}
.y4d_c00003{bottom:131.200000pt;}
.y4c_c00003{bottom:132.480000pt;}
.y4e_c00003{bottom:133.760000pt;}
.y48_c00003{bottom:168.960000pt;}
.y47_c00003{bottom:169.600000pt;}
.y49_c00003{bottom:170.240000pt;}
.y4a_c00003{bottom:170.880000pt;}
.y42_c00003{bottom:204.800000pt;}
.y45_c00003{bottom:206.720000pt;}
.y43_c00003{bottom:207.360000pt;}
.y44_c00003{bottom:208.000000pt;}
.y46_c00003{bottom:208.640000pt;}
.y3e_c00003{bottom:243.200000pt;}
.y3f_c00003{bottom:245.120000pt;}
.y40_c00003{bottom:245.760000pt;}
.y41_c00003{bottom:250.240000pt;}
.y3c_c00003{bottom:282.240000pt;}
.y3d_c00003{bottom:282.880000pt;}
.y37_c00003{bottom:318.720000pt;}
.y38_c00003{bottom:320.000000pt;}
.y3b_c00003{bottom:320.640000pt;}
.y39_c00003{bottom:321.280000pt;}
.y36_c00003{bottom:321.920000pt;}
.y3a_c00003{bottom:322.560000pt;}
.y32_c00003{bottom:357.120000pt;}
.y31_c00003{bottom:358.400000pt;}
.y33_c00003{bottom:359.040000pt;}
.y34_c00003{bottom:359.680000pt;}
.y35_c00003{bottom:360.960000pt;}
.y2e_c00003{bottom:396.800000pt;}
.y2f_c00003{bottom:397.440000pt;}
.y30_c00003{bottom:398.080000pt;}
.y2d_c00003{bottom:434.560000pt;}
.y2a_c00003{bottom:435.200000pt;}
.y2b_c00003{bottom:435.840000pt;}
.y2c_c00003{bottom:436.480000pt;}
.y27_c00003{bottom:471.040000pt;}
.y29_c00003{bottom:472.960000pt;}
.y26_c00003{bottom:473.600000pt;}
.y28_c00003{bottom:474.240000pt;}
.y24_c00003{bottom:509.440000pt;}
.y25_c00003{bottom:510.720000pt;}
.y23_c00003{bottom:511.360000pt;}
.y22_c00003{bottom:512.000000pt;}
.y21_c00003{bottom:549.120000pt;}
.y20_c00003{bottom:549.760000pt;}
.y1f_c00003{bottom:550.400000pt;}
.y1b_c00003{bottom:585.600000pt;}
.y1e_c00003{bottom:586.880000pt;}
.y1a_c00003{bottom:587.520000pt;}
.y1c_c00003{bottom:590.080000pt;}
.y1d_c00003{bottom:592.000000pt;}
.y19_c00003{bottom:624.640000pt;}
.y17_c00003{bottom:625.280000pt;}
.y16_c00003{bottom:625.920000pt;}
.y18_c00003{bottom:626.560000pt;}
.y15_c00003{bottom:663.040000pt;}
.y14_c00003{bottom:663.680000pt;}
.y10_c00003{bottom:699.520000pt;}
.y11_c00003{bottom:700.800000pt;}
.y13_c00003{bottom:701.440000pt;}
.y12_c00003{bottom:705.280000pt;}
.yc_c00003{bottom:737.280000pt;}
.yf_c00003{bottom:738.560000pt;}
.yb_c00003{bottom:739.200000pt;}
.yd_c00003{bottom:739.840000pt;}
.ye_c00003{bottom:740.480000pt;}
.y9_c00003{bottom:776.960000pt;}
.y7_c00003{bottom:777.600000pt;}
.y8_c00003{bottom:778.240000pt;}
.ya_c00003{bottom:778.880000pt;}
.y4_c00003{bottom:814.720000pt;}
.y3_c00003{bottom:815.360000pt;}
.y6_c00003{bottom:816.000000pt;}
.y5_c00003{bottom:816.640000pt;}
.y2_c00003{bottom:873.600000pt;}
.y1_c00003{bottom:951.680000pt;}
.hf_c00003{height:2.303750pt;}
.ha_c00003{height:4.607500pt;}
.h15_c00003{height:6.911250pt;}
.h6_c00003{height:13.822500pt;}
.h7_c00003{height:16.126250pt;}
.h5_c00003{height:18.430000pt;}
.h4_c00003{height:20.733750pt;}
.h10_c00003{height:23.037500pt;}
.h13_c00003{height:25.341250pt;}
.h11_c00003{height:27.645000pt;}
.h12_c00003{height:32.252500pt;}
.h14_c00003{height:34.556250pt;}
.hc_c00003{height:39.163750pt;}
.h8_c00003{height:41.467500pt;}
.h9_c00003{height:43.771250pt;}
.h3_c00003{height:46.075000pt;}
.hb_c00003{height:48.378750pt;}
.hd_c00003{height:50.682500pt;}
.h2_c00003{height:52.986250pt;}
.he_c00003{height:55.290000pt;}
.h0_c00003{height:1013.120000pt;}
.h1_c00003{height:1013.333333pt;}
.w0_c00003{width:736.000000pt;}
.x0_c00003{left:0.000000pt;}
.x1b_c00003{left:90.880000pt;}
.x3_c00003{left:92.160000pt;}
.x1f_c00003{left:120.960000pt;}
.x23_c00003{left:149.760000pt;}
.x4_c00003{left:151.040000pt;}
.x15_c00003{left:158.720000pt;}
.x20_c00003{left:168.320000pt;}
.x2a_c00003{left:177.920000pt;}
.x3c_c00003{left:179.840000pt;}
.x1c_c00003{left:199.040000pt;}
.x30_c00003{left:207.360000pt;}
.x2c_c00003{left:216.960000pt;}
.x10_c00003{left:227.840000pt;}
.x16_c00003{left:236.160000pt;}
.x5_c00003{left:237.440000pt;}
.x2b_c00003{left:245.760000pt;}
.x6_c00003{left:247.040000pt;}
.x3d_c00003{left:257.280000pt;}
.x17_c00003{left:264.960000pt;}
.x24_c00003{left:273.920000pt;}
.x36_c00003{left:275.200000pt;}
.x2d_c00003{left:283.520000pt;}
.x3e_c00003{left:286.080000pt;}
.x18_c00003{left:293.120000pt;}
.x11_c00003{left:295.040000pt;}
.x31_c00003{left:303.360000pt;}
.x7_c00003{left:304.640000pt;}
.x8_c00003{left:314.240000pt;}
.x3f_c00003{left:322.560000pt;}
.x44_c00003{left:331.520000pt;}
.x2_c00003{left:332.800000pt;}
.x12_c00003{left:334.080000pt;}
.x13_c00003{left:343.680000pt;}
.x41_c00003{left:351.360000pt;}
.x43_c00003{left:360.320000pt;}
.x32_c00003{left:361.600000pt;}
.x45_c00003{left:362.880000pt;}
.x19_c00003{left:371.840000pt;}
.x40_c00003{left:381.440000pt;}
.x9_c00003{left:391.040000pt;}
.xa_c00003{left:400.640000pt;}
.x33_c00003{left:408.960000pt;}
.x49_c00003{left:410.880000pt;}
.x25_c00003{left:428.160000pt;}
.x26_c00003{left:430.080000pt;}
.x37_c00003{left:447.360000pt;}
.x38_c00003{left:458.240000pt;}
.x3a_c00003{left:467.200000pt;}
.x42_c00003{left:468.480000pt;}
.x46_c00003{left:472.960000pt;}
.x47_c00003{left:478.080000pt;}
.x34_c00003{left:487.040000pt;}
.x39_c00003{left:516.480000pt;}
.x27_c00003{left:529.920000pt;}
.x28_c00003{left:534.400000pt;}
.x14_c00003{left:544.000000pt;}
.x48_c00003{left:554.880000pt;}
.x21_c00003{left:563.200000pt;}
.x2e_c00003{left:564.480000pt;}
.x2f_c00003{left:574.080000pt;}
.x22_c00003{left:583.040000pt;}
.x3b_c00003{left:587.520000pt;}
.x29_c00003{left:592.640000pt;}
.x1d_c00003{left:602.240000pt;}
.xb_c00003{left:612.480000pt;}
.xc_c00003{left:621.440000pt;}
.x4a_c00003{left:622.720000pt;}
.xd_c00003{left:631.680000pt;}
.x35_c00003{left:640.640000pt;}
.x1e_c00003{left:648.960000pt;}
.x1a_c00003{left:650.240000pt;}
.xe_c00003{left:659.200000pt;}
.xf_c00003{left:679.680000pt;}
.x1_c00003{left:685.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a6db66bb5c33662eb4639a1e.woff2')format("woff");}.ff1_c00004{font-family:ff1_c00004;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m60_c00004{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m67_c00004{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m47_c00004{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_c00004{transform:matrix(0.234775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234775,0.000000,0.000000,0.250000,0,0);}
.m2f_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);}
.m54_c00004{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m34_c00004{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);}
.m4c_c00004{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mc_c00004{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m18_c00004{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00004{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m7_c00004{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m30_c00004{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m6_c00004{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00004{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1_c00004{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00004{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m71_c00004{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m28_c00004{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m40_c00004{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);}
.m38_c00004{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m17_c00004{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);}
.m53_c00004{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);}
.m37_c00004{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00004{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);}
.m64_c00004{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m8_c00004{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);}
.m3c_c00004{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00004{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m9_c00004{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);}
.m43_c00004{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.md_c00004{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00004{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m25_c00004{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00004{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);}
.m2_c00004{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);}
.m45_c00004{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m22_c00004{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m29_c00004{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m59_c00004{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);}
.m35_c00004{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00004{transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00004{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);}
.m4d_c00004{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m23_c00004{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.mb_c00004{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m3_c00004{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00004{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00004{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m51_c00004{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m57_c00004{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);}
.m42_c00004{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00004{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m19_c00004{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);}
.m27_c00004{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m41_c00004{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00004{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00004{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);}
.m26_c00004{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);}
.m6e_c00004{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m56_c00004{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m62_c00004{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m20_c00004{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00004{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m50_c00004{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00004{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);}
.m69_c00004{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00004{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m39_c00004{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00004{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);}
.m55_c00004{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m49_c00004{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m14_c00004{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m4_c00004{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);}
.m1f_c00004{transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);}
.mf_c00004{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m11_c00004{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00004{transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00004{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.m13_c00004{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m0_c00004{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m15_c00004{transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00004{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00004{transform:matrix(0.832500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832500,0.000000,0.000000,0.250000,0,0);}
.m12_c00004{transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00004{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m31_c00004{transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);}
.m58_c00004{transform:matrix(0.877500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.877500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.877500,0.000000,0.000000,0.250000,0,0);}
.m16_c00004{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);}
.m63_c00004{transform:matrix(0.905000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.905000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.905000,0.000000,0.000000,0.250000,0,0);}
.m32_c00004{transform:matrix(0.925000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.925000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.925000,0.000000,0.000000,0.250000,0,0);}
.m10_c00004{transform:matrix(0.960000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.960000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.960000,0.000000,0.000000,0.250000,0,0);}
.m70_c00004{transform:matrix(0.972500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.972500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.972500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00004{transform:matrix(0.982500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.982500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.982500,0.000000,0.000000,0.250000,0,0);}
.m33_c00004{transform:matrix(0.987500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.987500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.987500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00004{transform:matrix(1.022500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.022500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.022500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00004{transform:matrix(1.047500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.047500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.047500,0.000000,0.000000,0.250000,0,0);}
.m36_c00004{transform:matrix(1.057500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.057500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.057500,0.000000,0.000000,0.250000,0,0);}
.m46_c00004{transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);}
.me_c00004{transform:matrix(1.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.080000,0.000000,0.000000,0.250000,0,0);}
.m65_c00004{transform:matrix(1.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.090000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00004{transform:matrix(1.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.100000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00004{transform:matrix(1.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.110000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00004{transform:matrix(1.122500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.122500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.122500,0.000000,0.000000,0.250000,0,0);}
.m61_c00004{transform:matrix(1.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.130000,0.000000,0.000000,0.250000,0,0);}
.m52_c00004{transform:matrix(1.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.140000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00004{transform:matrix(1.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.160000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00004{transform:matrix(1.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.165000,0.000000,0.000000,0.250000,0,0);}
.m5_c00004{transform:matrix(1.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.167500,0.000000,0.000000,0.250000,0,0);}
.m68_c00004{transform:matrix(1.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.205000,0.000000,0.000000,0.250000,0,0);}
.m24_c00004{transform:matrix(1.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.210000,0.000000,0.000000,0.250000,0,0);}
.m66_c00004{transform:matrix(1.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.300000,0.000000,0.000000,0.250000,0,0);}
.m44_c00004{transform:matrix(1.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.307500,0.000000,0.000000,0.250000,0,0);}
.m48_c00004{transform:matrix(1.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.347500,0.000000,0.000000,0.250000,0,0);}
.v1_c00004{vertical-align:-5.760000px;}
.v2_c00004{vertical-align:-2.880000px;}
.v0_c00004{vertical-align:0.000000px;}
.v3_c00004{vertical-align:2.880000px;}
.ls7_c00004{letter-spacing:0.000000px;}
.ls4_c00004{letter-spacing:7.038000px;}
.ls5_c00004{letter-spacing:7.041001px;}
.ls3_c00004{letter-spacing:7.044000px;}
.ls2_c00004{letter-spacing:8.052000px;}
.ls6_c00004{letter-spacing:9.054000px;}
.ls1_c00004{letter-spacing:9.216000px;}
.ls0_c00004{letter-spacing:10.213440px;}
.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;}
}
.ws3_c00004{word-spacing:-22.648320px;}
.ws5_c00004{word-spacing:-20.473321px;}
.ws0_c00004{word-spacing:-7.054917px;}
.ws2_c00004{word-spacing:-6.143524px;}
.ws7_c00004{word-spacing:-4.711071px;}
.ws8_c00004{word-spacing:-3.704279px;}
.ws4_c00004{word-spacing:-3.064320px;}
.ws6_c00004{word-spacing:-2.697489px;}
.ws9_c00004{word-spacing:0.000000px;}
.ws1_c00004{word-spacing:0.138948px;}
._0_c00004{margin-left:-9.216000px;}
._1_c00004{width:2.012997px;}
._2_c00004{width:9.055791px;}
.fc0_c00004{color:transparent;}
.fs12_c00004{font-size:5.760000px;}
.fs13_c00004{font-size:14.400000px;}
.fsa_c00004{font-size:17.280000px;}
.fs9_c00004{font-size:20.160000px;}
.fs0_c00004{font-size:23.040000px;}
.fs4_c00004{font-size:25.920000px;}
.fsb_c00004{font-size:28.800000px;}
.fs11_c00004{font-size:31.680000px;}
.fsc_c00004{font-size:34.560000px;}
.fse_c00004{font-size:37.440000px;}
.fs3_c00004{font-size:46.080000px;}
.fs7_c00004{font-size:48.960000px;}
.fs8_c00004{font-size:51.840000px;}
.fsf_c00004{font-size:54.720000px;}
.fsd_c00004{font-size:57.600000px;}
.fs2_c00004{font-size:60.480000px;}
.fs5_c00004{font-size:63.360000px;}
.fs6_c00004{font-size:66.240000px;}
.fs1_c00004{font-size:69.120000px;}
.fs10_c00004{font-size:72.000000px;}
.y0_c00004{bottom:0.000000px;}
.y5a_c00004{bottom:102.240000px;}
.y5c_c00004{bottom:102.960000px;}
.y5d_c00004{bottom:104.400000px;}
.y59_c00004{bottom:105.120000px;}
.y5b_c00004{bottom:105.840000px;}
.y58_c00004{bottom:146.160000px;}
.y57_c00004{bottom:146.880000px;}
.y56_c00004{bottom:147.600000px;}
.y52_c00004{bottom:187.920000px;}
.y51_c00004{bottom:189.360000px;}
.y53_c00004{bottom:190.080000px;}
.y54_c00004{bottom:190.800000px;}
.y55_c00004{bottom:191.520000px;}
.y4d_c00004{bottom:231.840000px;}
.y4e_c00004{bottom:232.560000px;}
.y4f_c00004{bottom:233.280000px;}
.y4c_c00004{bottom:234.000000px;}
.y50_c00004{bottom:234.720000px;}
.y48_c00004{bottom:272.880000px;}
.y4b_c00004{bottom:274.320000px;}
.y47_c00004{bottom:275.760000px;}
.y4a_c00004{bottom:276.480000px;}
.y49_c00004{bottom:277.200000px;}
.y43_c00004{bottom:315.360000px;}
.y44_c00004{bottom:316.080000px;}
.y46_c00004{bottom:317.520000px;}
.y45_c00004{bottom:318.240000px;}
.y42_c00004{bottom:318.960000px;}
.y3e_c00004{bottom:359.280000px;}
.y41_c00004{bottom:360.000000px;}
.y40_c00004{bottom:360.720000px;}
.y3d_c00004{bottom:361.440000px;}
.y3f_c00004{bottom:362.160000px;}
.y3b_c00004{bottom:402.480000px;}
.y3a_c00004{bottom:403.920000px;}
.y3c_c00004{bottom:404.640000px;}
.y38_c00004{bottom:446.400000px;}
.y39_c00004{bottom:447.120000px;}
.y37_c00004{bottom:488.880000px;}
.y36_c00004{bottom:489.600000px;}
.y32_c00004{bottom:529.920000px;}
.y35_c00004{bottom:531.360000px;}
.y34_c00004{bottom:532.080000px;}
.y33_c00004{bottom:532.800000px;}
.y2d_c00004{bottom:572.400000px;}
.y30_c00004{bottom:573.840000px;}
.y31_c00004{bottom:574.560000px;}
.y2e_c00004{bottom:575.280000px;}
.y2f_c00004{bottom:576.000000px;}
.y2c_c00004{bottom:617.040000px;}
.y2b_c00004{bottom:617.760000px;}
.y27_c00004{bottom:658.080000px;}
.y2a_c00004{bottom:658.800000px;}
.y29_c00004{bottom:659.520000px;}
.y26_c00004{bottom:660.240000px;}
.y28_c00004{bottom:660.960000px;}
.y23_c00004{bottom:700.560000px;}
.y25_c00004{bottom:702.000000px;}
.y24_c00004{bottom:702.720000px;}
.y22_c00004{bottom:703.440000px;}
.y20_c00004{bottom:744.480000px;}
.y21_c00004{bottom:745.200000px;}
.y1f_c00004{bottom:746.640000px;}
.y1e_c00004{bottom:787.680000px;}
.y1c_c00004{bottom:788.400000px;}
.y1d_c00004{bottom:789.120000px;}
.y18_c00004{bottom:828.720000px;}
.y19_c00004{bottom:830.160000px;}
.y1b_c00004{bottom:830.880000px;}
.y1a_c00004{bottom:832.320000px;}
.y12_c00004{bottom:871.920000px;}
.y13_c00004{bottom:872.640000px;}
.y17_c00004{bottom:873.360000px;}
.y14_c00004{bottom:874.080000px;}
.y15_c00004{bottom:874.800000px;}
.y16_c00004{bottom:875.520000px;}
.yd_c00004{bottom:914.400000px;}
.ye_c00004{bottom:915.120000px;}
.y11_c00004{bottom:915.840000px;}
.y10_c00004{bottom:916.560000px;}
.yf_c00004{bottom:917.280000px;}
.y9_c00004{bottom:956.880000px;}
.y7_c00004{bottom:957.600000px;}
.y8_c00004{bottom:958.320000px;}
.yc_c00004{bottom:959.040000px;}
.yb_c00004{bottom:959.760000px;}
.ya_c00004{bottom:960.480000px;}
.y2_c00004{bottom:1000.080000px;}
.y3_c00004{bottom:1001.520000px;}
.y5_c00004{bottom:1002.240000px;}
.y4_c00004{bottom:1003.680000px;}
.y6_c00004{bottom:1022.400000px;}
.y1_c00004{bottom:1086.480000px;}
.h16_c00004{height:5.183438px;}
.h17_c00004{height:12.958594px;}
.hc_c00004{height:15.550313px;}
.hd_c00004{height:17.853750px;}
.hb_c00004{height:18.142031px;}
.h2_c00004{height:20.733750px;}
.he_c00004{height:21.022031px;}
.h6_c00004{height:23.325469px;}
.hf_c00004{height:25.917187px;}
.h15_c00004{height:28.508906px;}
.h10_c00004{height:31.100625px;}
.h12_c00004{height:33.692344px;}
.h5_c00004{height:41.467500px;}
.h9_c00004{height:44.059219px;}
.ha_c00004{height:46.650937px;}
.h13_c00004{height:49.242656px;}
.h11_c00004{height:51.834375px;}
.h4_c00004{height:54.426094px;}
.h7_c00004{height:57.017812px;}
.h8_c00004{height:59.609531px;}
.h3_c00004{height:62.201250px;}
.h14_c00004{height:64.792969px;}
.h0_c00004{height:1139.760000px;}
.h1_c00004{height:1140.000000px;}
.w0_c00004{width:828.000000px;}
.x0_c00004{left:0.000000px;}
.x3e_c00004{left:125.280000px;}
.x2d_c00004{left:157.680000px;}
.x3f_c00004{left:179.280000px;}
.x2a_c00004{left:188.640000px;}
.x25_c00004{left:190.080000px;}
.x2_c00004{left:221.760000px;}
.x3_c00004{left:254.880000px;}
.x2b_c00004{left:275.760000px;}
.x9_c00004{left:277.200000px;}
.x34_c00004{left:287.280000px;}
.x46_c00004{left:288.720000px;}
.x2c_c00004{left:297.360000px;}
.x40_c00004{left:298.800000px;}
.x30_c00004{left:318.960000px;}
.xb_c00004{left:329.040000px;}
.xa_c00004{left:331.200000px;}
.x28_c00004{left:340.560000px;}
.x2e_c00004{left:342.000000px;}
.x31_c00004{left:352.080000px;}
.x4_c00004{left:361.440000px;}
.x26_c00004{left:362.880000px;}
.x35_c00004{left:373.680000px;}
.x41_c00004{left:375.120000px;}
.x32_c00004{left:383.760000px;}
.xc_c00004{left:385.200000px;}
.x33_c00004{left:393.840000px;}
.x38_c00004{left:395.280000px;}
.x5_c00004{left:396.720000px;}
.x27_c00004{left:405.360000px;}
.xd_c00004{left:407.520000px;}
.x6_c00004{left:418.320000px;}
.xe_c00004{left:429.120000px;}
.x3b_c00004{left:437.760000px;}
.x37_c00004{left:439.200000px;}
.xf_c00004{left:440.640000px;}
.x45_c00004{left:449.280000px;}
.x10_c00004{left:450.720000px;}
.x11_c00004{left:462.240000px;}
.x39_c00004{left:468.720000px;}
.x3c_c00004{left:470.880000px;}
.x12_c00004{left:472.320000px;}
.x29_c00004{left:482.400000px;}
.x13_c00004{left:493.200000px;}
.x14_c00004{left:505.440000px;}
.x42_c00004{left:514.800000px;}
.x24_c00004{left:516.240000px;}
.x3d_c00004{left:522.720000px;}
.x15_c00004{left:526.320000px;}
.x16_c00004{left:537.120000px;}
.x17_c00004{left:558.000000px;}
.x18_c00004{left:568.080000px;}
.x19_c00004{left:579.600000px;}
.x3a_c00004{left:590.400000px;}
.x1a_c00004{left:591.840000px;}
.x1b_c00004{left:601.920000px;}
.x1c_c00004{left:613.440000px;}
.x43_c00004{left:622.080000px;}
.x1d_c00004{left:623.520000px;}
.x2f_c00004{left:632.880000px;}
.x1e_c00004{left:635.040000px;}
.x1f_c00004{left:645.120000px;}
.x20_c00004{left:656.640000px;}
.x44_c00004{left:665.280000px;}
.x21_c00004{left:666.720000px;}
.x22_c00004{left:676.800000px;}
.x23_c00004{left:688.320000px;}
.x36_c00004{left:697.680000px;}
.x1_c00004{left:709.920000px;}
.x8_c00004{left:720.000000px;}
.x7_c00004{left:740.880000px;}
@media print{
.v1_c00004{vertical-align:-5.120000pt;}
.v2_c00004{vertical-align:-2.560000pt;}
.v0_c00004{vertical-align:0.000000pt;}
.v3_c00004{vertical-align:2.560000pt;}
.ls7_c00004{letter-spacing:0.000000pt;}
.ls4_c00004{letter-spacing:6.256000pt;}
.ls5_c00004{letter-spacing:6.258668pt;}
.ls3_c00004{letter-spacing:6.261333pt;}
.ls2_c00004{letter-spacing:7.157333pt;}
.ls6_c00004{letter-spacing:8.048000pt;}
.ls1_c00004{letter-spacing:8.192000pt;}
.ls0_c00004{letter-spacing:9.078613pt;}
.ws3_c00004{word-spacing:-20.131840pt;}
.ws5_c00004{word-spacing:-18.198508pt;}
.ws0_c00004{word-spacing:-6.271037pt;}
.ws2_c00004{word-spacing:-5.460910pt;}
.ws7_c00004{word-spacing:-4.187619pt;}
.ws8_c00004{word-spacing:-3.292692pt;}
.ws4_c00004{word-spacing:-2.723840pt;}
.ws6_c00004{word-spacing:-2.397768pt;}
.ws9_c00004{word-spacing:0.000000pt;}
.ws1_c00004{word-spacing:0.123510pt;}
._0_c00004{margin-left:-8.192000pt;}
._1_c00004{width:1.789331pt;}
._2_c00004{width:8.049592pt;}
.fs12_c00004{font-size:5.120000pt;}
.fs13_c00004{font-size:12.800000pt;}
.fsa_c00004{font-size:15.360000pt;}
.fs9_c00004{font-size:17.920000pt;}
.fs0_c00004{font-size:20.480000pt;}
.fs4_c00004{font-size:23.040000pt;}
.fsb_c00004{font-size:25.600000pt;}
.fs11_c00004{font-size:28.160000pt;}
.fsc_c00004{font-size:30.720000pt;}
.fse_c00004{font-size:33.280000pt;}
.fs3_c00004{font-size:40.960000pt;}
.fs7_c00004{font-size:43.520000pt;}
.fs8_c00004{font-size:46.080000pt;}
.fsf_c00004{font-size:48.640000pt;}
.fsd_c00004{font-size:51.200000pt;}
.fs2_c00004{font-size:53.760000pt;}
.fs5_c00004{font-size:56.320000pt;}
.fs6_c00004{font-size:58.880000pt;}
.fs1_c00004{font-size:61.440000pt;}
.fs10_c00004{font-size:64.000000pt;}
.y0_c00004{bottom:0.000000pt;}
.y5a_c00004{bottom:90.880000pt;}
.y5c_c00004{bottom:91.520000pt;}
.y5d_c00004{bottom:92.800000pt;}
.y59_c00004{bottom:93.440000pt;}
.y5b_c00004{bottom:94.080000pt;}
.y58_c00004{bottom:129.920000pt;}
.y57_c00004{bottom:130.560000pt;}
.y56_c00004{bottom:131.200000pt;}
.y52_c00004{bottom:167.040000pt;}
.y51_c00004{bottom:168.320000pt;}
.y53_c00004{bottom:168.960000pt;}
.y54_c00004{bottom:169.600000pt;}
.y55_c00004{bottom:170.240000pt;}
.y4d_c00004{bottom:206.080000pt;}
.y4e_c00004{bottom:206.720000pt;}
.y4f_c00004{bottom:207.360000pt;}
.y4c_c00004{bottom:208.000000pt;}
.y50_c00004{bottom:208.640000pt;}
.y48_c00004{bottom:242.560000pt;}
.y4b_c00004{bottom:243.840000pt;}
.y47_c00004{bottom:245.120000pt;}
.y4a_c00004{bottom:245.760000pt;}
.y49_c00004{bottom:246.400000pt;}
.y43_c00004{bottom:280.320000pt;}
.y44_c00004{bottom:280.960000pt;}
.y46_c00004{bottom:282.240000pt;}
.y45_c00004{bottom:282.880000pt;}
.y42_c00004{bottom:283.520000pt;}
.y3e_c00004{bottom:319.360000pt;}
.y41_c00004{bottom:320.000000pt;}
.y40_c00004{bottom:320.640000pt;}
.y3d_c00004{bottom:321.280000pt;}
.y3f_c00004{bottom:321.920000pt;}
.y3b_c00004{bottom:357.760000pt;}
.y3a_c00004{bottom:359.040000pt;}
.y3c_c00004{bottom:359.680000pt;}
.y38_c00004{bottom:396.800000pt;}
.y39_c00004{bottom:397.440000pt;}
.y37_c00004{bottom:434.560000pt;}
.y36_c00004{bottom:435.200000pt;}
.y32_c00004{bottom:471.040000pt;}
.y35_c00004{bottom:472.320000pt;}
.y34_c00004{bottom:472.960000pt;}
.y33_c00004{bottom:473.600000pt;}
.y2d_c00004{bottom:508.800000pt;}
.y30_c00004{bottom:510.080000pt;}
.y31_c00004{bottom:510.720000pt;}
.y2e_c00004{bottom:511.360000pt;}
.y2f_c00004{bottom:512.000000pt;}
.y2c_c00004{bottom:548.480000pt;}
.y2b_c00004{bottom:549.120000pt;}
.y27_c00004{bottom:584.960000pt;}
.y2a_c00004{bottom:585.600000pt;}
.y29_c00004{bottom:586.240000pt;}
.y26_c00004{bottom:586.880000pt;}
.y28_c00004{bottom:587.520000pt;}
.y23_c00004{bottom:622.720000pt;}
.y25_c00004{bottom:624.000000pt;}
.y24_c00004{bottom:624.640000pt;}
.y22_c00004{bottom:625.280000pt;}
.y20_c00004{bottom:661.760000pt;}
.y21_c00004{bottom:662.400000pt;}
.y1f_c00004{bottom:663.680000pt;}
.y1e_c00004{bottom:700.160000pt;}
.y1c_c00004{bottom:700.800000pt;}
.y1d_c00004{bottom:701.440000pt;}
.y18_c00004{bottom:736.640000pt;}
.y19_c00004{bottom:737.920000pt;}
.y1b_c00004{bottom:738.560000pt;}
.y1a_c00004{bottom:739.840000pt;}
.y12_c00004{bottom:775.040000pt;}
.y13_c00004{bottom:775.680000pt;}
.y17_c00004{bottom:776.320000pt;}
.y14_c00004{bottom:776.960000pt;}
.y15_c00004{bottom:777.600000pt;}
.y16_c00004{bottom:778.240000pt;}
.yd_c00004{bottom:812.800000pt;}
.ye_c00004{bottom:813.440000pt;}
.y11_c00004{bottom:814.080000pt;}
.y10_c00004{bottom:814.720000pt;}
.yf_c00004{bottom:815.360000pt;}
.y9_c00004{bottom:850.560000pt;}
.y7_c00004{bottom:851.200000pt;}
.y8_c00004{bottom:851.840000pt;}
.yc_c00004{bottom:852.480000pt;}
.yb_c00004{bottom:853.120000pt;}
.ya_c00004{bottom:853.760000pt;}
.y2_c00004{bottom:888.960000pt;}
.y3_c00004{bottom:890.240000pt;}
.y5_c00004{bottom:890.880000pt;}
.y4_c00004{bottom:892.160000pt;}
.y6_c00004{bottom:908.800000pt;}
.y1_c00004{bottom:965.760000pt;}
.h16_c00004{height:4.607500pt;}
.h17_c00004{height:11.518750pt;}
.hc_c00004{height:13.822500pt;}
.hd_c00004{height:15.870000pt;}
.hb_c00004{height:16.126250pt;}
.h2_c00004{height:18.430000pt;}
.he_c00004{height:18.686250pt;}
.h6_c00004{height:20.733750pt;}
.hf_c00004{height:23.037500pt;}
.h15_c00004{height:25.341250pt;}
.h10_c00004{height:27.645000pt;}
.h12_c00004{height:29.948750pt;}
.h5_c00004{height:36.860000pt;}
.h9_c00004{height:39.163750pt;}
.ha_c00004{height:41.467500pt;}
.h13_c00004{height:43.771250pt;}
.h11_c00004{height:46.075000pt;}
.h4_c00004{height:48.378750pt;}
.h7_c00004{height:50.682500pt;}
.h8_c00004{height:52.986250pt;}
.h3_c00004{height:55.290000pt;}
.h14_c00004{height:57.593750pt;}
.h0_c00004{height:1013.120000pt;}
.h1_c00004{height:1013.333333pt;}
.w0_c00004{width:736.000000pt;}
.x0_c00004{left:0.000000pt;}
.x3e_c00004{left:111.360000pt;}
.x2d_c00004{left:140.160000pt;}
.x3f_c00004{left:159.360000pt;}
.x2a_c00004{left:167.680000pt;}
.x25_c00004{left:168.960000pt;}
.x2_c00004{left:197.120000pt;}
.x3_c00004{left:226.560000pt;}
.x2b_c00004{left:245.120000pt;}
.x9_c00004{left:246.400000pt;}
.x34_c00004{left:255.360000pt;}
.x46_c00004{left:256.640000pt;}
.x2c_c00004{left:264.320000pt;}
.x40_c00004{left:265.600000pt;}
.x30_c00004{left:283.520000pt;}
.xb_c00004{left:292.480000pt;}
.xa_c00004{left:294.400000pt;}
.x28_c00004{left:302.720000pt;}
.x2e_c00004{left:304.000000pt;}
.x31_c00004{left:312.960000pt;}
.x4_c00004{left:321.280000pt;}
.x26_c00004{left:322.560000pt;}
.x35_c00004{left:332.160000pt;}
.x41_c00004{left:333.440000pt;}
.x32_c00004{left:341.120000pt;}
.xc_c00004{left:342.400000pt;}
.x33_c00004{left:350.080000pt;}
.x38_c00004{left:351.360000pt;}
.x5_c00004{left:352.640000pt;}
.x27_c00004{left:360.320000pt;}
.xd_c00004{left:362.240000pt;}
.x6_c00004{left:371.840000pt;}
.xe_c00004{left:381.440000pt;}
.x3b_c00004{left:389.120000pt;}
.x37_c00004{left:390.400000pt;}
.xf_c00004{left:391.680000pt;}
.x45_c00004{left:399.360000pt;}
.x10_c00004{left:400.640000pt;}
.x11_c00004{left:410.880000pt;}
.x39_c00004{left:416.640000pt;}
.x3c_c00004{left:418.560000pt;}
.x12_c00004{left:419.840000pt;}
.x29_c00004{left:428.800000pt;}
.x13_c00004{left:438.400000pt;}
.x14_c00004{left:449.280000pt;}
.x42_c00004{left:457.600000pt;}
.x24_c00004{left:458.880000pt;}
.x3d_c00004{left:464.640000pt;}
.x15_c00004{left:467.840000pt;}
.x16_c00004{left:477.440000pt;}
.x17_c00004{left:496.000000pt;}
.x18_c00004{left:504.960000pt;}
.x19_c00004{left:515.200000pt;}
.x3a_c00004{left:524.800000pt;}
.x1a_c00004{left:526.080000pt;}
.x1b_c00004{left:535.040000pt;}
.x1c_c00004{left:545.280000pt;}
.x43_c00004{left:552.960000pt;}
.x1d_c00004{left:554.240000pt;}
.x2f_c00004{left:562.560000pt;}
.x1e_c00004{left:564.480000pt;}
.x1f_c00004{left:573.440000pt;}
.x20_c00004{left:583.680000pt;}
.x44_c00004{left:591.360000pt;}
.x21_c00004{left:592.640000pt;}
.x22_c00004{left:601.600000pt;}
.x23_c00004{left:611.840000pt;}
.x36_c00004{left:620.160000pt;}
.x1_c00004{left:631.040000pt;}
.x8_c00004{left:640.000000pt;}
.x7_c00004{left:658.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8dd55345273d52f7eea9d509.woff2')format("woff");}.ff1_c00005{font-family:ff1_c00005;line-height:1.109863;font-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_c00005{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.mb_c00005{transform:matrix(0.117650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117650,0.000000,0.000000,0.250000,0,0);}
.md_c00005{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00005{transform:matrix(0.192700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192700,0.000000,0.000000,0.250000,0,0);}
.m22_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);}
.m1_c00005{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m0_c00005{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m13_c00005{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m8_c00005{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00005{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00005{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m14_c00005{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m20_c00005{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m9_c00005{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00005{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m2_c00005{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);}
.m3_c00005{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);}
.m6_c00005{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.mf_c00005{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m4_c00005{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_c00005{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.me_c00005{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m5_c00005{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m16_c00005{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);}
.m17_c00005{transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);}
.m12_c00005{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00005{transform:matrix(0.860000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.860000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.860000,0.000000,0.000000,0.250000,0,0);}
.m10_c00005{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00005{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);}
.m7_c00005{transform:matrix(1.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.015000,0.000000,0.000000,0.250000,0,0);}
.m11_c00005{transform:matrix(1.027500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.027500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.027500,0.000000,0.000000,0.250000,0,0);}
.m18_c00005{transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);}
.m19_c00005{transform:matrix(1.085000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.085000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.085000,0.000000,0.000000,0.250000,0,0);}
.ma_c00005{transform:matrix(1.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.182500,0.000000,0.000000,0.250000,0,0);}
.m15_c00005{transform:matrix(1.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.275000,0.000000,0.000000,0.250000,0,0);}
.v1_c00005{vertical-align:-2.880000px;}
.v0_c00005{vertical-align:0.000000px;}
.ls3_c00005{letter-spacing:0.000000px;}
.ls1_c00005{letter-spacing:38.011200px;}
.ls0_c00005{letter-spacing:44.808960px;}
.ls2_c00005{letter-spacing:86.011200px;}
.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;}
.fc0_c00005{color:transparent;}
.fs8_c00005{font-size:2.880000px;}
.fsf_c00005{font-size:8.640000px;}
.fse_c00005{font-size:11.520000px;}
.fsd_c00005{font-size:14.400000px;}
.fsb_c00005{font-size:17.280000px;}
.fs9_c00005{font-size:20.160000px;}
.fs7_c00005{font-size:23.040000px;}
.fsa_c00005{font-size:25.920000px;}
.fs4_c00005{font-size:28.800000px;}
.fs3_c00005{font-size:34.560000px;}
.fs2_c00005{font-size:48.960000px;}
.fs1_c00005{font-size:51.840000px;}
.fs6_c00005{font-size:54.720000px;}
.fs5_c00005{font-size:60.480000px;}
.fsc_c00005{font-size:63.360000px;}
.fs0_c00005{font-size:69.120000px;}
.y0_c00005{bottom:0.000000px;}
.y16_c00005{bottom:509.040000px;}
.y15_c00005{bottom:511.200000px;}
.y14_c00005{bottom:552.240000px;}
.y13_c00005{bottom:554.400000px;}
.y12_c00005{bottom:639.360000px;}
.yd_c00005{bottom:910.800000px;}
.y11_c00005{bottom:911.520000px;}
.y10_c00005{bottom:912.240000px;}
.ye_c00005{bottom:912.960000px;}
.yf_c00005{bottom:913.680000px;}
.yc_c00005{bottom:953.280000px;}
.ya_c00005{bottom:954.720000px;}
.yb_c00005{bottom:955.440000px;}
.y7_c00005{bottom:956.160000px;}
.y8_c00005{bottom:956.880000px;}
.y9_c00005{bottom:959.760000px;}
.y6_c00005{bottom:996.480000px;}
.y5_c00005{bottom:997.200000px;}
.y3_c00005{bottom:999.360000px;}
.y4_c00005{bottom:1000.080000px;}
.y2_c00005{bottom:1017.360000px;}
.y1_c00005{bottom:1077.120000px;}
.ha_c00005{height:2.591719px;}
.h10_c00005{height:7.775156px;}
.hf_c00005{height:12.958594px;}
.hd_c00005{height:15.550313px;}
.hb_c00005{height:18.142031px;}
.h9_c00005{height:20.733750px;}
.hc_c00005{height:23.325469px;}
.h6_c00005{height:25.917187px;}
.h5_c00005{height:31.100625px;}
.h4_c00005{height:44.059219px;}
.h3_c00005{height:46.650937px;}
.h8_c00005{height:49.242656px;}
.h7_c00005{height:54.426094px;}
.he_c00005{height:57.017812px;}
.h2_c00005{height:62.201250px;}
.h0_c00005{height:1137.600000px;}
.h1_c00005{height:1137.750000px;}
.w1_c00005{width:825.000000px;}
.w0_c00005{width:825.120000px;}
.x0_c00005{left:0.000000px;}
.xa_c00005{left:90.720000px;}
.x1d_c00005{left:92.880000px;}
.x21_c00005{left:100.800000px;}
.x1e_c00005{left:102.960000px;}
.x22_c00005{left:121.680000px;}
.x1f_c00005{left:123.120000px;}
.x23_c00005{left:132.480000px;}
.x20_c00005{left:133.920000px;}
.x3_c00005{left:156.240000px;}
.xb_c00005{left:233.280000px;}
.xc_c00005{left:276.480000px;}
.x4_c00005{left:296.640000px;}
.x14_c00005{left:310.320000px;}
.x5_c00005{left:361.440000px;}
.x15_c00005{left:373.680000px;}
.x16_c00005{left:384.480000px;}
.x6_c00005{left:394.560000px;}
.x17_c00005{left:406.080000px;}
.xd_c00005{left:411.120000px;}
.x7_c00005{left:447.840000px;}
.x18_c00005{left:523.440000px;}
.xe_c00005{left:535.680000px;}
.x19_c00005{left:546.480000px;}
.x8_c00005{left:568.080000px;}
.xf_c00005{left:578.880000px;}
.x1a_c00005{left:588.240000px;}
.x10_c00005{left:589.680000px;}
.x11_c00005{left:599.040000px;}
.x12_c00005{left:611.280000px;}
.x13_c00005{left:632.880000px;}
.x1b_c00005{left:643.680000px;}
.x1c_c00005{left:654.480000px;}
.x9_c00005{left:676.080000px;}
.x2_c00005{left:707.760000px;}
.x1_c00005{left:797.040000px;}
@media print{
.v1_c00005{vertical-align:-2.560000pt;}
.v0_c00005{vertical-align:0.000000pt;}
.ls3_c00005{letter-spacing:0.000000pt;}
.ls1_c00005{letter-spacing:33.787733pt;}
.ls0_c00005{letter-spacing:39.830187pt;}
.ls2_c00005{letter-spacing:76.454400pt;}
.ws0_c00005{word-spacing:0.000000pt;}
.fs8_c00005{font-size:2.560000pt;}
.fsf_c00005{font-size:7.680000pt;}
.fse_c00005{font-size:10.240000pt;}
.fsd_c00005{font-size:12.800000pt;}
.fsb_c00005{font-size:15.360000pt;}
.fs9_c00005{font-size:17.920000pt;}
.fs7_c00005{font-size:20.480000pt;}
.fsa_c00005{font-size:23.040000pt;}
.fs4_c00005{font-size:25.600000pt;}
.fs3_c00005{font-size:30.720000pt;}
.fs2_c00005{font-size:43.520000pt;}
.fs1_c00005{font-size:46.080000pt;}
.fs6_c00005{font-size:48.640000pt;}
.fs5_c00005{font-size:53.760000pt;}
.fsc_c00005{font-size:56.320000pt;}
.fs0_c00005{font-size:61.440000pt;}
.y0_c00005{bottom:0.000000pt;}
.y16_c00005{bottom:452.480000pt;}
.y15_c00005{bottom:454.400000pt;}
.y14_c00005{bottom:490.880000pt;}
.y13_c00005{bottom:492.800000pt;}
.y12_c00005{bottom:568.320000pt;}
.yd_c00005{bottom:809.600000pt;}
.y11_c00005{bottom:810.240000pt;}
.y10_c00005{bottom:810.880000pt;}
.ye_c00005{bottom:811.520000pt;}
.yf_c00005{bottom:812.160000pt;}
.yc_c00005{bottom:847.360000pt;}
.ya_c00005{bottom:848.640000pt;}
.yb_c00005{bottom:849.280000pt;}
.y7_c00005{bottom:849.920000pt;}
.y8_c00005{bottom:850.560000pt;}
.y9_c00005{bottom:853.120000pt;}
.y6_c00005{bottom:885.760000pt;}
.y5_c00005{bottom:886.400000pt;}
.y3_c00005{bottom:888.320000pt;}
.y4_c00005{bottom:888.960000pt;}
.y2_c00005{bottom:904.320000pt;}
.y1_c00005{bottom:957.440000pt;}
.ha_c00005{height:2.303750pt;}
.h10_c00005{height:6.911250pt;}
.hf_c00005{height:11.518750pt;}
.hd_c00005{height:13.822500pt;}
.hb_c00005{height:16.126250pt;}
.h9_c00005{height:18.430000pt;}
.hc_c00005{height:20.733750pt;}
.h6_c00005{height:23.037500pt;}
.h5_c00005{height:27.645000pt;}
.h4_c00005{height:39.163750pt;}
.h3_c00005{height:41.467500pt;}
.h8_c00005{height:43.771250pt;}
.h7_c00005{height:48.378750pt;}
.he_c00005{height:50.682500pt;}
.h2_c00005{height:55.290000pt;}
.h0_c00005{height:1011.200000pt;}
.h1_c00005{height:1011.333333pt;}
.w1_c00005{width:733.333333pt;}
.w0_c00005{width:733.440000pt;}
.x0_c00005{left:0.000000pt;}
.xa_c00005{left:80.640000pt;}
.x1d_c00005{left:82.560000pt;}
.x21_c00005{left:89.600000pt;}
.x1e_c00005{left:91.520000pt;}
.x22_c00005{left:108.160000pt;}
.x1f_c00005{left:109.440000pt;}
.x23_c00005{left:117.760000pt;}
.x20_c00005{left:119.040000pt;}
.x3_c00005{left:138.880000pt;}
.xb_c00005{left:207.360000pt;}
.xc_c00005{left:245.760000pt;}
.x4_c00005{left:263.680000pt;}
.x14_c00005{left:275.840000pt;}
.x5_c00005{left:321.280000pt;}
.x15_c00005{left:332.160000pt;}
.x16_c00005{left:341.760000pt;}
.x6_c00005{left:350.720000pt;}
.x17_c00005{left:360.960000pt;}
.xd_c00005{left:365.440000pt;}
.x7_c00005{left:398.080000pt;}
.x18_c00005{left:465.280000pt;}
.xe_c00005{left:476.160000pt;}
.x19_c00005{left:485.760000pt;}
.x8_c00005{left:504.960000pt;}
.xf_c00005{left:514.560000pt;}
.x1a_c00005{left:522.880000pt;}
.x10_c00005{left:524.160000pt;}
.x11_c00005{left:532.480000pt;}
.x12_c00005{left:543.360000pt;}
.x13_c00005{left:562.560000pt;}
.x1b_c00005{left:572.160000pt;}
.x1c_c00005{left:581.760000pt;}
.x9_c00005{left:600.960000pt;}
.x2_c00005{left:629.120000pt;}
.x1_c00005{left:708.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_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_21de289b5c8ac62296f1a374.woff2')format("woff");}.ff1_c00006{font-family:ff1_c00006;line-height:1.109863;font-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_c00006{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m14_c00006{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m9_c00006{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m34_c00006{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m39_c00006{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m51_c00006{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00006{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m52_c00006{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m19_c00006{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m36_c00006{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00006{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m44_c00006{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2_c00006{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m18_c00006{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.md_c00006{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_c00006{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m6_c00006{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m33_c00006{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m13_c00006{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m49_c00006{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);}
.m45_c00006{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m10_c00006{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00006{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m16_c00006{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);}
.m46_c00006{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00006{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00006{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m20_c00006{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);}
.m54_c00006{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m40_c00006{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);}
.m30_c00006{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);}
.m24_c00006{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m22_c00006{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00006{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m42_c00006{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m0_c00006{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00006{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);}
.m37_c00006{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m32_c00006{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);}
.m2d_c00006{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);}
.m29_c00006{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00006{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m21_c00006{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m12_c00006{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);}
.me_c00006{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m48_c00006{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);}
.m55_c00006{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.ma_c00006{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);}
.m28_c00006{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00006{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m8_c00006{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);}
.m47_c00006{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m23_c00006{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m41_c00006{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.mc_c00006{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m31_c00006{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00006{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m25_c00006{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00006{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);}
.m53_c00006{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m7_c00006{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00006{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00006{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);}
.m4b_c00006{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00006{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m1_c00006{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00006{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);}
.m35_c00006{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00006{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.mf_c00006{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m38_c00006{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);}
.m15_c00006{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00006{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);}
.m27_c00006{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);}
.m4_c00006{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.mb_c00006{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m17_c00006{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m43_c00006{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m50_c00006{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m5_c00006{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m11_c00006{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);}
.m4e_c00006{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m3_c00006{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00006{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00006{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00006{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.v2_c00006{vertical-align:-2.880000px;}
.v0_c00006{vertical-align:0.000000px;}
.v1_c00006{vertical-align:2.880000px;}
.ls0_c00006{letter-spacing:0.000000px;}
.sc__c00006{text-shadow:none;}
.sc0_c00006{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00006{-webkit-text-stroke:0px transparent;}
.sc0_c00006{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00006{word-spacing:-1.923600px;}
.ws2_c00006{word-spacing:-1.851725px;}
.ws1_c00006{word-spacing:-1.844400px;}
.ws4_c00006{word-spacing:0.000000px;}
.ws3_c00006{word-spacing:7.642800px;}
.fc0_c00006{color:transparent;}
.fs2_c00006{font-size:34.560000px;}
.fs3_c00006{font-size:37.440000px;}
.fsb_c00006{font-size:43.200000px;}
.fs7_c00006{font-size:46.080000px;}
.fs0_c00006{font-size:48.960000px;}
.fs4_c00006{font-size:51.840000px;}
.fs9_c00006{font-size:54.720000px;}
.fs1_c00006{font-size:57.600000px;}
.fs5_c00006{font-size:60.480000px;}
.fsa_c00006{font-size:63.360000px;}
.fs8_c00006{font-size:66.240000px;}
.fs6_c00006{font-size:69.120000px;}
.y0_c00006{bottom:0.000000px;}
.y4b_c00006{bottom:43.920000px;}
.y4a_c00006{bottom:44.640000px;}
.y48_c00006{bottom:46.800000px;}
.y49_c00006{bottom:47.520000px;}
.y47_c00006{bottom:86.400000px;}
.y46_c00006{bottom:87.120000px;}
.y45_c00006{bottom:90.000000px;}
.y43_c00006{bottom:128.880000px;}
.y42_c00006{bottom:129.600000px;}
.y44_c00006{bottom:131.760000px;}
.y41_c00006{bottom:132.480000px;}
.y3f_c00006{bottom:172.800000px;}
.y3e_c00006{bottom:174.240000px;}
.y40_c00006{bottom:174.960000px;}
.y3c_c00006{bottom:225.360000px;}
.y3d_c00006{bottom:227.520000px;}
.y3b_c00006{bottom:228.960000px;}
.y39_c00006{bottom:267.840000px;}
.y3a_c00006{bottom:268.560000px;}
.y38_c00006{bottom:270.720000px;}
.y37_c00006{bottom:271.440000px;}
.y35_c00006{bottom:311.040000px;}
.y33_c00006{bottom:313.200000px;}
.y34_c00006{bottom:313.920000px;}
.y36_c00006{bottom:314.640000px;}
.y32_c00006{bottom:353.520000px;}
.y31_c00006{bottom:354.240000px;}
.y30_c00006{bottom:356.400000px;}
.y2f_c00006{bottom:396.720000px;}
.y2d_c00006{bottom:398.880000px;}
.y2e_c00006{bottom:399.600000px;}
.y29_c00006{bottom:449.280000px;}
.y2b_c00006{bottom:450.000000px;}
.y2c_c00006{bottom:450.720000px;}
.y2a_c00006{bottom:452.880000px;}
.y28_c00006{bottom:491.760000px;}
.y25_c00006{bottom:492.480000px;}
.y26_c00006{bottom:493.200000px;}
.y24_c00006{bottom:495.360000px;}
.y27_c00006{bottom:496.080000px;}
.y23_c00006{bottom:535.680000px;}
.y22_c00006{bottom:537.840000px;}
.y21_c00006{bottom:538.560000px;}
.y1d_c00006{bottom:578.160000px;}
.y1f_c00006{bottom:578.880000px;}
.y1e_c00006{bottom:581.040000px;}
.y20_c00006{bottom:581.760000px;}
.y1b_c00006{bottom:623.520000px;}
.y1c_c00006{bottom:624.240000px;}
.y17_c00006{bottom:663.840000px;}
.y1a_c00006{bottom:664.560000px;}
.y18_c00006{bottom:666.000000px;}
.y19_c00006{bottom:666.720000px;}
.y15_c00006{bottom:707.040000px;}
.y13_c00006{bottom:709.200000px;}
.y14_c00006{bottom:709.920000px;}
.y16_c00006{bottom:710.640000px;}
.y12_c00006{bottom:774.000000px;}
.y11_c00006{bottom:835.920000px;}
.ye_c00006{bottom:866.880000px;}
.y10_c00006{bottom:868.320000px;}
.yf_c00006{bottom:870.480000px;}
.yc_c00006{bottom:899.280000px;}
.yb_c00006{bottom:902.160000px;}
.yd_c00006{bottom:902.880000px;}
.y8_c00006{bottom:933.120000px;}
.y7_c00006{bottom:933.840000px;}
.y9_c00006{bottom:934.560000px;}
.ya_c00006{bottom:935.280000px;}
.y5_c00006{bottom:964.080000px;}
.y4_c00006{bottom:966.240000px;}
.y6_c00006{bottom:966.960000px;}
.y3_c00006{bottom:996.480000px;}
.y2_c00006{bottom:998.640000px;}
.y1_c00006{bottom:999.360000px;}
.h4_c00006{height:31.100625px;}
.h5_c00006{height:33.692344px;}
.hd_c00006{height:38.875781px;}
.h9_c00006{height:41.467500px;}
.h2_c00006{height:44.059219px;}
.h6_c00006{height:46.650937px;}
.hb_c00006{height:49.242656px;}
.h3_c00006{height:51.834375px;}
.h7_c00006{height:54.426094px;}
.hc_c00006{height:57.017812px;}
.ha_c00006{height:59.609531px;}
.h8_c00006{height:62.201250px;}
.h0_c00006{height:1157.760000px;}
.h1_c00006{height:1158.000000px;}
.w1_c00006{width:821.250000px;}
.w0_c00006{width:821.520000px;}
.x0_c00006{left:0.000000px;}
.x1f_c00006{left:101.520000px;}
.x39_c00006{left:133.200000px;}
.x32_c00006{left:142.560000px;}
.x24_c00006{left:144.720000px;}
.x3c_c00006{left:166.320000px;}
.x25_c00006{left:177.120000px;}
.x29_c00006{left:199.440000px;}
.x18_c00006{left:210.240000px;}
.x42_c00006{left:219.600000px;}
.x2a_c00006{left:231.840000px;}
.x20_c00006{left:241.920000px;}
.x33_c00006{left:264.240000px;}
.x26_c00006{left:275.040000px;}
.x3d_c00006{left:285.120000px;}
.x34_c00006{left:295.200000px;}
.x17_c00006{left:298.080000px;}
.x43_c00006{left:305.280000px;}
.x3a_c00006{left:306.720000px;}
.x19_c00006{left:308.160000px;}
.x2b_c00006{left:317.520000px;}
.x27_c00006{left:318.960000px;}
.x36_c00006{left:328.320000px;}
.x2c_c00006{left:339.120000px;}
.x1a_c00006{left:349.920000px;}
.x40_c00006{left:360.720000px;}
.x1_c00006{left:363.600000px;}
.x7_c00006{left:371.520000px;}
.x2d_c00006{left:382.320000px;}
.x3e_c00006{left:391.680000px;}
.x1b_c00006{left:393.120000px;}
.x3f_c00006{left:403.200000px;}
.x2_c00006{left:404.640000px;}
.x21_c00006{left:414.720000px;}
.x2e_c00006{left:426.240000px;}
.x10_c00006{left:436.320000px;}
.x22_c00006{left:447.120000px;}
.x12_c00006{left:457.920000px;}
.x8_c00006{left:469.440000px;}
.x3b_c00006{left:479.520000px;}
.x13_c00006{left:491.040000px;}
.x9_c00006{left:501.120000px;}
.x44_c00006{left:510.480000px;}
.x23_c00006{left:511.920000px;}
.x2f_c00006{left:522.720000px;}
.x3_c00006{left:533.520000px;}
.x37_c00006{left:543.600000px;}
.xc_c00006{left:545.040000px;}
.x45_c00006{left:553.680000px;}
.x1c_c00006{left:555.120000px;}
.x30_c00006{left:565.920000px;}
.xd_c00006{left:576.720000px;}
.x16_c00006{left:579.600000px;}
.x38_c00006{left:587.520000px;}
.x1d_c00006{left:599.040000px;}
.x41_c00006{left:608.400000px;}
.x14_c00006{left:609.840000px;}
.xa_c00006{left:620.640000px;}
.x4_c00006{left:631.440000px;}
.x15_c00006{left:642.240000px;}
.xe_c00006{left:652.320000px;}
.x11_c00006{left:663.840000px;}
.x5_c00006{left:674.640000px;}
.x35_c00006{left:685.440000px;}
.x31_c00006{left:695.520000px;}
.xf_c00006{left:696.960000px;}
.x28_c00006{left:706.320000px;}
.x6_c00006{left:707.760000px;}
.x1e_c00006{left:717.120000px;}
.xb_c00006{left:727.920000px;}
@media print{
.v2_c00006{vertical-align:-2.560000pt;}
.v0_c00006{vertical-align:0.000000pt;}
.v1_c00006{vertical-align:2.560000pt;}
.ls0_c00006{letter-spacing:0.000000pt;}
.ws0_c00006{word-spacing:-1.709867pt;}
.ws2_c00006{word-spacing:-1.645978pt;}
.ws1_c00006{word-spacing:-1.639467pt;}
.ws4_c00006{word-spacing:0.000000pt;}
.ws3_c00006{word-spacing:6.793600pt;}
.fs2_c00006{font-size:30.720000pt;}
.fs3_c00006{font-size:33.280000pt;}
.fsb_c00006{font-size:38.400000pt;}
.fs7_c00006{font-size:40.960000pt;}
.fs0_c00006{font-size:43.520000pt;}
.fs4_c00006{font-size:46.080000pt;}
.fs9_c00006{font-size:48.640000pt;}
.fs1_c00006{font-size:51.200000pt;}
.fs5_c00006{font-size:53.760000pt;}
.fsa_c00006{font-size:56.320000pt;}
.fs8_c00006{font-size:58.880000pt;}
.fs6_c00006{font-size:61.440000pt;}
.y0_c00006{bottom:0.000000pt;}
.y4b_c00006{bottom:39.040000pt;}
.y4a_c00006{bottom:39.680000pt;}
.y48_c00006{bottom:41.600000pt;}
.y49_c00006{bottom:42.240000pt;}
.y47_c00006{bottom:76.800000pt;}
.y46_c00006{bottom:77.440000pt;}
.y45_c00006{bottom:80.000000pt;}
.y43_c00006{bottom:114.560000pt;}
.y42_c00006{bottom:115.200000pt;}
.y44_c00006{bottom:117.120000pt;}
.y41_c00006{bottom:117.760000pt;}
.y3f_c00006{bottom:153.600000pt;}
.y3e_c00006{bottom:154.880000pt;}
.y40_c00006{bottom:155.520000pt;}
.y3c_c00006{bottom:200.320000pt;}
.y3d_c00006{bottom:202.240000pt;}
.y3b_c00006{bottom:203.520000pt;}
.y39_c00006{bottom:238.080000pt;}
.y3a_c00006{bottom:238.720000pt;}
.y38_c00006{bottom:240.640000pt;}
.y37_c00006{bottom:241.280000pt;}
.y35_c00006{bottom:276.480000pt;}
.y33_c00006{bottom:278.400000pt;}
.y34_c00006{bottom:279.040000pt;}
.y36_c00006{bottom:279.680000pt;}
.y32_c00006{bottom:314.240000pt;}
.y31_c00006{bottom:314.880000pt;}
.y30_c00006{bottom:316.800000pt;}
.y2f_c00006{bottom:352.640000pt;}
.y2d_c00006{bottom:354.560000pt;}
.y2e_c00006{bottom:355.200000pt;}
.y29_c00006{bottom:399.360000pt;}
.y2b_c00006{bottom:400.000000pt;}
.y2c_c00006{bottom:400.640000pt;}
.y2a_c00006{bottom:402.560000pt;}
.y28_c00006{bottom:437.120000pt;}
.y25_c00006{bottom:437.760000pt;}
.y26_c00006{bottom:438.400000pt;}
.y24_c00006{bottom:440.320000pt;}
.y27_c00006{bottom:440.960000pt;}
.y23_c00006{bottom:476.160000pt;}
.y22_c00006{bottom:478.080000pt;}
.y21_c00006{bottom:478.720000pt;}
.y1d_c00006{bottom:513.920000pt;}
.y1f_c00006{bottom:514.560000pt;}
.y1e_c00006{bottom:516.480000pt;}
.y20_c00006{bottom:517.120000pt;}
.y1b_c00006{bottom:554.240000pt;}
.y1c_c00006{bottom:554.880000pt;}
.y17_c00006{bottom:590.080000pt;}
.y1a_c00006{bottom:590.720000pt;}
.y18_c00006{bottom:592.000000pt;}
.y19_c00006{bottom:592.640000pt;}
.y15_c00006{bottom:628.480000pt;}
.y13_c00006{bottom:630.400000pt;}
.y14_c00006{bottom:631.040000pt;}
.y16_c00006{bottom:631.680000pt;}
.y12_c00006{bottom:688.000000pt;}
.y11_c00006{bottom:743.040000pt;}
.ye_c00006{bottom:770.560000pt;}
.y10_c00006{bottom:771.840000pt;}
.yf_c00006{bottom:773.760000pt;}
.yc_c00006{bottom:799.360000pt;}
.yb_c00006{bottom:801.920000pt;}
.yd_c00006{bottom:802.560000pt;}
.y8_c00006{bottom:829.440000pt;}
.y7_c00006{bottom:830.080000pt;}
.y9_c00006{bottom:830.720000pt;}
.ya_c00006{bottom:831.360000pt;}
.y5_c00006{bottom:856.960000pt;}
.y4_c00006{bottom:858.880000pt;}
.y6_c00006{bottom:859.520000pt;}
.y3_c00006{bottom:885.760000pt;}
.y2_c00006{bottom:887.680000pt;}
.y1_c00006{bottom:888.320000pt;}
.h4_c00006{height:27.645000pt;}
.h5_c00006{height:29.948750pt;}
.hd_c00006{height:34.556250pt;}
.h9_c00006{height:36.860000pt;}
.h2_c00006{height:39.163750pt;}
.h6_c00006{height:41.467500pt;}
.hb_c00006{height:43.771250pt;}
.h3_c00006{height:46.075000pt;}
.h7_c00006{height:48.378750pt;}
.hc_c00006{height:50.682500pt;}
.ha_c00006{height:52.986250pt;}
.h8_c00006{height:55.290000pt;}
.h0_c00006{height:1029.120000pt;}
.h1_c00006{height:1029.333333pt;}
.w1_c00006{width:730.000000pt;}
.w0_c00006{width:730.240000pt;}
.x0_c00006{left:0.000000pt;}
.x1f_c00006{left:90.240000pt;}
.x39_c00006{left:118.400000pt;}
.x32_c00006{left:126.720000pt;}
.x24_c00006{left:128.640000pt;}
.x3c_c00006{left:147.840000pt;}
.x25_c00006{left:157.440000pt;}
.x29_c00006{left:177.280000pt;}
.x18_c00006{left:186.880000pt;}
.x42_c00006{left:195.200000pt;}
.x2a_c00006{left:206.080000pt;}
.x20_c00006{left:215.040000pt;}
.x33_c00006{left:234.880000pt;}
.x26_c00006{left:244.480000pt;}
.x3d_c00006{left:253.440000pt;}
.x34_c00006{left:262.400000pt;}
.x17_c00006{left:264.960000pt;}
.x43_c00006{left:271.360000pt;}
.x3a_c00006{left:272.640000pt;}
.x19_c00006{left:273.920000pt;}
.x2b_c00006{left:282.240000pt;}
.x27_c00006{left:283.520000pt;}
.x36_c00006{left:291.840000pt;}
.x2c_c00006{left:301.440000pt;}
.x1a_c00006{left:311.040000pt;}
.x40_c00006{left:320.640000pt;}
.x1_c00006{left:323.200000pt;}
.x7_c00006{left:330.240000pt;}
.x2d_c00006{left:339.840000pt;}
.x3e_c00006{left:348.160000pt;}
.x1b_c00006{left:349.440000pt;}
.x3f_c00006{left:358.400000pt;}
.x2_c00006{left:359.680000pt;}
.x21_c00006{left:368.640000pt;}
.x2e_c00006{left:378.880000pt;}
.x10_c00006{left:387.840000pt;}
.x22_c00006{left:397.440000pt;}
.x12_c00006{left:407.040000pt;}
.x8_c00006{left:417.280000pt;}
.x3b_c00006{left:426.240000pt;}
.x13_c00006{left:436.480000pt;}
.x9_c00006{left:445.440000pt;}
.x44_c00006{left:453.760000pt;}
.x23_c00006{left:455.040000pt;}
.x2f_c00006{left:464.640000pt;}
.x3_c00006{left:474.240000pt;}
.x37_c00006{left:483.200000pt;}
.xc_c00006{left:484.480000pt;}
.x45_c00006{left:492.160000pt;}
.x1c_c00006{left:493.440000pt;}
.x30_c00006{left:503.040000pt;}
.xd_c00006{left:512.640000pt;}
.x16_c00006{left:515.200000pt;}
.x38_c00006{left:522.240000pt;}
.x1d_c00006{left:532.480000pt;}
.x41_c00006{left:540.800000pt;}
.x14_c00006{left:542.080000pt;}
.xa_c00006{left:551.680000pt;}
.x4_c00006{left:561.280000pt;}
.x15_c00006{left:570.880000pt;}
.xe_c00006{left:579.840000pt;}
.x11_c00006{left:590.080000pt;}
.x5_c00006{left:599.680000pt;}
.x35_c00006{left:609.280000pt;}
.x31_c00006{left:618.240000pt;}
.xf_c00006{left:619.520000pt;}
.x28_c00006{left:627.840000pt;}
.x6_c00006{left:629.120000pt;}
.x1e_c00006{left:637.440000pt;}
.xb_c00006{left:647.040000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a6ae155adbca95b6f9fc0e6d.woff2')format("woff");}.ff1_c00007{font-family:ff1_c00007;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00007{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m26_c00007{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m36_c00007{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00007{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m56_c00007{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m50_c00007{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m43_c00007{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m42_c00007{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m53_c00007{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00007{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m15_c00007{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);}
.m3c_c00007{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m19_c00007{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);}
.m2b_c00007{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00007{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);}
.m41_c00007{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m30_c00007{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.md_c00007{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00007{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);}
.m2d_c00007{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m10_c00007{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m31_c00007{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);}
.m1d_c00007{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);}
.m16_c00007{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_c00007{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m17_c00007{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.ma_c00007{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m32_c00007{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);}
.mc_c00007{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_c00007{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);}
.m1f_c00007{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m47_c00007{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m48_c00007{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m9_c00007{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);}
.m29_c00007{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00007{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);}
.m35_c00007{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m4_c00007{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);}
.m3b_c00007{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);}
.m3d_c00007{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m34_c00007{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00007{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.mf_c00007{transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);}
.m1_c00007{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00007{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);}
.m2_c00007{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);}
.m24_c00007{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m40_c00007{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m52_c00007{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00007{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);}
.m39_c00007{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.me_c00007{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00007{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00007{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);}
.m2f_c00007{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m20_c00007{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m8_c00007{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m54_c00007{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m49_c00007{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);}
.m3_c00007{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);}
.m13_c00007{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m33_c00007{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);}
.m4b_c00007{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m18_c00007{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);}
.m25_c00007{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m45_c00007{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00007{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00007{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);}
.m6_c00007{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m57_c00007{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);}
.m11_c00007{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);}
.m12_c00007{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00007{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00007{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m55_c00007{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m22_c00007{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m28_c00007{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.mb_c00007{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m14_c00007{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);}
.m44_c00007{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m7_c00007{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m46_c00007{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);}
.m5_c00007{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m37_c00007{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);}
.m4e_c00007{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m38_c00007{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);}
.m51_c00007{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.m27_c00007{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.v0_c00007{vertical-align:0.000000px;}
.v1_c00007{vertical-align:14.400000px;}
.ls0_c00007{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00007{word-spacing:0.000000px;}
.ws0_c00007{word-spacing:3.642480px;}
.fc0_c00007{color:transparent;}
.fs4_c00007{font-size:34.560000px;}
.fsa_c00007{font-size:37.440000px;}
.fsc_c00007{font-size:40.320000px;}
.fs8_c00007{font-size:43.200000px;}
.fs9_c00007{font-size:46.080000px;}
.fs2_c00007{font-size:48.960000px;}
.fs3_c00007{font-size:51.840000px;}
.fsd_c00007{font-size:54.720000px;}
.fs5_c00007{font-size:57.600000px;}
.fs1_c00007{font-size:60.480000px;}
.fs6_c00007{font-size:63.360000px;}
.fs7_c00007{font-size:66.240000px;}
.fs0_c00007{font-size:69.120000px;}
.fsb_c00007{font-size:72.000000px;}
.y0_c00007{bottom:0.000000px;}
.y5a_c00007{bottom:36.720000px;}
.y58_c00007{bottom:38.160000px;}
.y5c_c00007{bottom:38.880000px;}
.y5b_c00007{bottom:39.600000px;}
.y59_c00007{bottom:40.320000px;}
.y57_c00007{bottom:41.040000px;}
.y56_c00007{bottom:79.200000px;}
.y55_c00007{bottom:82.080000px;}
.y54_c00007{bottom:82.800000px;}
.y50_c00007{bottom:121.680000px;}
.y51_c00007{bottom:122.400000px;}
.y53_c00007{bottom:123.840000px;}
.y52_c00007{bottom:124.560000px;}
.y4f_c00007{bottom:125.280000px;}
.y4a_c00007{bottom:164.160000px;}
.y4d_c00007{bottom:164.880000px;}
.y49_c00007{bottom:165.600000px;}
.y4e_c00007{bottom:166.320000px;}
.y4c_c00007{bottom:167.040000px;}
.y4b_c00007{bottom:167.760000px;}
.y48_c00007{bottom:168.480000px;}
.y45_c00007{bottom:207.360000px;}
.y47_c00007{bottom:209.520000px;}
.y46_c00007{bottom:210.240000px;}
.y43_c00007{bottom:249.840000px;}
.y42_c00007{bottom:252.000000px;}
.y44_c00007{bottom:252.720000px;}
.y40_c00007{bottom:292.320000px;}
.y3f_c00007{bottom:294.480000px;}
.y41_c00007{bottom:295.200000px;}
.y3c_c00007{bottom:345.600000px;}
.y3e_c00007{bottom:347.040000px;}
.y3d_c00007{bottom:347.760000px;}
.y3b_c00007{bottom:348.480000px;}
.y39_c00007{bottom:387.360000px;}
.y3a_c00007{bottom:388.800000px;}
.y37_c00007{bottom:390.960000px;}
.y38_c00007{bottom:391.680000px;}
.y36_c00007{bottom:431.280000px;}
.y35_c00007{bottom:432.000000px;}
.y33_c00007{bottom:433.440000px;}
.y34_c00007{bottom:434.160000px;}
.y32_c00007{bottom:473.040000px;}
.y30_c00007{bottom:475.920000px;}
.y31_c00007{bottom:476.640000px;}
.y2c_c00007{bottom:516.240000px;}
.y2d_c00007{bottom:516.960000px;}
.y2e_c00007{bottom:518.400000px;}
.y2b_c00007{bottom:519.120000px;}
.y2f_c00007{bottom:519.840000px;}
.y29_c00007{bottom:558.720000px;}
.y2a_c00007{bottom:559.440000px;}
.y28_c00007{bottom:561.600000px;}
.y27_c00007{bottom:562.320000px;}
.y24_c00007{bottom:601.920000px;}
.y25_c00007{bottom:602.640000px;}
.y23_c00007{bottom:604.800000px;}
.y26_c00007{bottom:605.520000px;}
.y21_c00007{bottom:644.400000px;}
.y20_c00007{bottom:645.120000px;}
.y1f_c00007{bottom:647.280000px;}
.y22_c00007{bottom:648.000000px;}
.y1d_c00007{bottom:686.880000px;}
.y1c_c00007{bottom:687.600000px;}
.y1e_c00007{bottom:689.760000px;}
.y1b_c00007{bottom:690.480000px;}
.y1a_c00007{bottom:742.320000px;}
.y18_c00007{bottom:783.360000px;}
.y19_c00007{bottom:784.080000px;}
.y17_c00007{bottom:786.240000px;}
.y12_c00007{bottom:825.120000px;}
.y16_c00007{bottom:826.560000px;}
.y13_c00007{bottom:827.280000px;}
.y11_c00007{bottom:828.000000px;}
.y14_c00007{bottom:828.720000px;}
.y15_c00007{bottom:829.440000px;}
.yd_c00007{bottom:868.320000px;}
.y10_c00007{bottom:869.040000px;}
.yf_c00007{bottom:871.200000px;}
.ye_c00007{bottom:871.920000px;}
.y9_c00007{bottom:910.800000px;}
.yb_c00007{bottom:911.520000px;}
.yc_c00007{bottom:913.680000px;}
.ya_c00007{bottom:914.400000px;}
.y4_c00007{bottom:952.560000px;}
.y8_c00007{bottom:955.440000px;}
.y5_c00007{bottom:956.160000px;}
.y6_c00007{bottom:956.880000px;}
.y7_c00007{bottom:957.600000px;}
.y2_c00007{bottom:996.480000px;}
.y3_c00007{bottom:1000.080000px;}
.y1_c00007{bottom:1111.680000px;}
.h6_c00007{height:31.100625px;}
.hc_c00007{height:33.692344px;}
.he_c00007{height:36.284062px;}
.ha_c00007{height:38.875781px;}
.hb_c00007{height:41.467500px;}
.h4_c00007{height:44.059219px;}
.h5_c00007{height:46.650937px;}
.hf_c00007{height:49.242656px;}
.h7_c00007{height:51.834375px;}
.h3_c00007{height:54.426094px;}
.h8_c00007{height:57.017812px;}
.h10_c00007{height:58.459219px;}
.h9_c00007{height:59.609531px;}
.h2_c00007{height:62.201250px;}
.hd_c00007{height:64.792969px;}
.h0_c00007{height:1157.760000px;}
.h1_c00007{height:1158.000000px;}
.w1_c00007{width:821.250000px;}
.w0_c00007{width:821.520000px;}
.x0_c00007{left:0.000000px;}
.x3f_c00007{left:99.360000px;}
.x2_c00007{left:100.800000px;}
.x16_c00007{left:102.960000px;}
.x59_c00007{left:131.760000px;}
.x27_c00007{left:133.920000px;}
.x23_c00007{left:143.280000px;}
.xb_c00007{left:144.720000px;}
.x5c_c00007{left:153.360000px;}
.x1d_c00007{left:155.520000px;}
.x40_c00007{left:164.880000px;}
.x3_c00007{left:166.320000px;}
.x43_c00007{left:175.680000px;}
.x1e_c00007{left:177.120000px;}
.x46_c00007{left:186.480000px;}
.xc_c00007{left:187.920000px;}
.x53_c00007{left:196.560000px;}
.x4d_c00007{left:207.360000px;}
.x4_c00007{left:208.800000px;}
.x2d_c00007{left:210.240000px;}
.x39_c00007{left:218.160000px;}
.x31_c00007{left:220.320000px;}
.x17_c00007{left:230.400000px;}
.x54_c00007{left:239.760000px;}
.xd_c00007{left:241.920000px;}
.x4e_c00007{left:250.560000px;}
.x5_c00007{left:252.000000px;}
.x4b_c00007{left:262.080000px;}
.x24_c00007{left:263.520000px;}
.xe_c00007{left:274.320000px;}
.x36_c00007{left:283.680000px;}
.x65_c00007{left:293.760000px;}
.x28_c00007{left:295.200000px;}
.x5a_c00007{left:303.840000px;}
.x18_c00007{left:306.720000px;}
.x1f_c00007{left:316.800000px;}
.x44_c00007{left:326.880000px;}
.xf_c00007{left:328.320000px;}
.x3a_c00007{left:337.680000px;}
.x5d_c00007{left:347.760000px;}
.x29_c00007{left:349.920000px;}
.x47_c00007{left:358.560000px;}
.x10_c00007{left:360.720000px;}
.x6_c00007{left:370.800000px;}
.x2a_c00007{left:381.600000px;}
.x55_c00007{left:390.960000px;}
.x32_c00007{left:392.400000px;}
.x61_c00007{left:400.320000px;}
.x4c_c00007{left:401.760000px;}
.x48_c00007{left:403.200000px;}
.x5e_c00007{left:412.560000px;}
.x19_c00007{left:414.720000px;}
.x42_c00007{left:424.080000px;}
.x57_c00007{left:434.160000px;}
.x37_c00007{left:435.600000px;}
.x62_c00007{left:444.960000px;}
.x11_c00007{left:446.400000px;}
.x4f_c00007{left:456.480000px;}
.x3b_c00007{left:467.280000px;}
.x5f_c00007{left:475.920000px;}
.x2e_c00007{left:477.360000px;}
.x45_c00007{left:478.800000px;}
.x50_c00007{left:488.160000px;}
.x25_c00007{left:489.600000px;}
.x33_c00007{left:498.960000px;}
.x3c_c00007{left:501.120000px;}
.x1a_c00007{left:511.920000px;}
.x7_c00007{left:521.280000px;}
.x12_c00007{left:522.720000px;}
.x49_c00007{left:532.080000px;}
.x2b_c00007{left:533.520000px;}
.x34_c00007{left:542.880000px;}
.x60_c00007{left:552.240000px;}
.x2f_c00007{left:554.400000px;}
.x8_c00007{left:564.480000px;}
.x51_c00007{left:574.560000px;}
.x20_c00007{left:576.000000px;}
.x66_c00007{left:583.920000px;}
.x30_c00007{left:586.080000px;}
.x9_c00007{left:598.320000px;}
.x2c_c00007{left:607.680000px;}
.x21_c00007{left:609.120000px;}
.x63_c00007{left:617.760000px;}
.x38_c00007{left:619.200000px;}
.x3d_c00007{left:630.720000px;}
.x13_c00007{left:641.520000px;}
.xa_c00007{left:650.160000px;}
.x1b_c00007{left:651.600000px;}
.x52_c00007{left:660.240000px;}
.x4a_c00007{left:662.400000px;}
.x64_c00007{left:671.760000px;}
.x14_c00007{left:673.920000px;}
.x56_c00007{left:682.560000px;}
.x1c_c00007{left:684.720000px;}
.x22_c00007{left:695.520000px;}
.x5b_c00007{left:704.880000px;}
.x35_c00007{left:706.320000px;}
.x58_c00007{left:714.960000px;}
.x26_c00007{left:716.400000px;}
.x41_c00007{left:725.760000px;}
.x15_c00007{left:727.920000px;}
.x3e_c00007{left:738.000000px;}
.x1_c00007{left:784.080000px;}
@media print{
.v0_c00007{vertical-align:0.000000pt;}
.v1_c00007{vertical-align:12.800000pt;}
.ls0_c00007{letter-spacing:0.000000pt;}
.ws1_c00007{word-spacing:0.000000pt;}
.ws0_c00007{word-spacing:3.237760pt;}
.fs4_c00007{font-size:30.720000pt;}
.fsa_c00007{font-size:33.280000pt;}
.fsc_c00007{font-size:35.840000pt;}
.fs8_c00007{font-size:38.400000pt;}
.fs9_c00007{font-size:40.960000pt;}
.fs2_c00007{font-size:43.520000pt;}
.fs3_c00007{font-size:46.080000pt;}
.fsd_c00007{font-size:48.640000pt;}
.fs5_c00007{font-size:51.200000pt;}
.fs1_c00007{font-size:53.760000pt;}
.fs6_c00007{font-size:56.320000pt;}
.fs7_c00007{font-size:58.880000pt;}
.fs0_c00007{font-size:61.440000pt;}
.fsb_c00007{font-size:64.000000pt;}
.y0_c00007{bottom:0.000000pt;}
.y5a_c00007{bottom:32.640000pt;}
.y58_c00007{bottom:33.920000pt;}
.y5c_c00007{bottom:34.560000pt;}
.y5b_c00007{bottom:35.200000pt;}
.y59_c00007{bottom:35.840000pt;}
.y57_c00007{bottom:36.480000pt;}
.y56_c00007{bottom:70.400000pt;}
.y55_c00007{bottom:72.960000pt;}
.y54_c00007{bottom:73.600000pt;}
.y50_c00007{bottom:108.160000pt;}
.y51_c00007{bottom:108.800000pt;}
.y53_c00007{bottom:110.080000pt;}
.y52_c00007{bottom:110.720000pt;}
.y4f_c00007{bottom:111.360000pt;}
.y4a_c00007{bottom:145.920000pt;}
.y4d_c00007{bottom:146.560000pt;}
.y49_c00007{bottom:147.200000pt;}
.y4e_c00007{bottom:147.840000pt;}
.y4c_c00007{bottom:148.480000pt;}
.y4b_c00007{bottom:149.120000pt;}
.y48_c00007{bottom:149.760000pt;}
.y45_c00007{bottom:184.320000pt;}
.y47_c00007{bottom:186.240000pt;}
.y46_c00007{bottom:186.880000pt;}
.y43_c00007{bottom:222.080000pt;}
.y42_c00007{bottom:224.000000pt;}
.y44_c00007{bottom:224.640000pt;}
.y40_c00007{bottom:259.840000pt;}
.y3f_c00007{bottom:261.760000pt;}
.y41_c00007{bottom:262.400000pt;}
.y3c_c00007{bottom:307.200000pt;}
.y3e_c00007{bottom:308.480000pt;}
.y3d_c00007{bottom:309.120000pt;}
.y3b_c00007{bottom:309.760000pt;}
.y39_c00007{bottom:344.320000pt;}
.y3a_c00007{bottom:345.600000pt;}
.y37_c00007{bottom:347.520000pt;}
.y38_c00007{bottom:348.160000pt;}
.y36_c00007{bottom:383.360000pt;}
.y35_c00007{bottom:384.000000pt;}
.y33_c00007{bottom:385.280000pt;}
.y34_c00007{bottom:385.920000pt;}
.y32_c00007{bottom:420.480000pt;}
.y30_c00007{bottom:423.040000pt;}
.y31_c00007{bottom:423.680000pt;}
.y2c_c00007{bottom:458.880000pt;}
.y2d_c00007{bottom:459.520000pt;}
.y2e_c00007{bottom:460.800000pt;}
.y2b_c00007{bottom:461.440000pt;}
.y2f_c00007{bottom:462.080000pt;}
.y29_c00007{bottom:496.640000pt;}
.y2a_c00007{bottom:497.280000pt;}
.y28_c00007{bottom:499.200000pt;}
.y27_c00007{bottom:499.840000pt;}
.y24_c00007{bottom:535.040000pt;}
.y25_c00007{bottom:535.680000pt;}
.y23_c00007{bottom:537.600000pt;}
.y26_c00007{bottom:538.240000pt;}
.y21_c00007{bottom:572.800000pt;}
.y20_c00007{bottom:573.440000pt;}
.y1f_c00007{bottom:575.360000pt;}
.y22_c00007{bottom:576.000000pt;}
.y1d_c00007{bottom:610.560000pt;}
.y1c_c00007{bottom:611.200000pt;}
.y1e_c00007{bottom:613.120000pt;}
.y1b_c00007{bottom:613.760000pt;}
.y1a_c00007{bottom:659.840000pt;}
.y18_c00007{bottom:696.320000pt;}
.y19_c00007{bottom:696.960000pt;}
.y17_c00007{bottom:698.880000pt;}
.y12_c00007{bottom:733.440000pt;}
.y16_c00007{bottom:734.720000pt;}
.y13_c00007{bottom:735.360000pt;}
.y11_c00007{bottom:736.000000pt;}
.y14_c00007{bottom:736.640000pt;}
.y15_c00007{bottom:737.280000pt;}
.yd_c00007{bottom:771.840000pt;}
.y10_c00007{bottom:772.480000pt;}
.yf_c00007{bottom:774.400000pt;}
.ye_c00007{bottom:775.040000pt;}
.y9_c00007{bottom:809.600000pt;}
.yb_c00007{bottom:810.240000pt;}
.yc_c00007{bottom:812.160000pt;}
.ya_c00007{bottom:812.800000pt;}
.y4_c00007{bottom:846.720000pt;}
.y8_c00007{bottom:849.280000pt;}
.y5_c00007{bottom:849.920000pt;}
.y6_c00007{bottom:850.560000pt;}
.y7_c00007{bottom:851.200000pt;}
.y2_c00007{bottom:885.760000pt;}
.y3_c00007{bottom:888.960000pt;}
.y1_c00007{bottom:988.160000pt;}
.h6_c00007{height:27.645000pt;}
.hc_c00007{height:29.948750pt;}
.he_c00007{height:32.252500pt;}
.ha_c00007{height:34.556250pt;}
.hb_c00007{height:36.860000pt;}
.h4_c00007{height:39.163750pt;}
.h5_c00007{height:41.467500pt;}
.hf_c00007{height:43.771250pt;}
.h7_c00007{height:46.075000pt;}
.h3_c00007{height:48.378750pt;}
.h8_c00007{height:50.682500pt;}
.h10_c00007{height:51.963750pt;}
.h9_c00007{height:52.986250pt;}
.h2_c00007{height:55.290000pt;}
.hd_c00007{height:57.593750pt;}
.h0_c00007{height:1029.120000pt;}
.h1_c00007{height:1029.333333pt;}
.w1_c00007{width:730.000000pt;}
.w0_c00007{width:730.240000pt;}
.x0_c00007{left:0.000000pt;}
.x3f_c00007{left:88.320000pt;}
.x2_c00007{left:89.600000pt;}
.x16_c00007{left:91.520000pt;}
.x59_c00007{left:117.120000pt;}
.x27_c00007{left:119.040000pt;}
.x23_c00007{left:127.360000pt;}
.xb_c00007{left:128.640000pt;}
.x5c_c00007{left:136.320000pt;}
.x1d_c00007{left:138.240000pt;}
.x40_c00007{left:146.560000pt;}
.x3_c00007{left:147.840000pt;}
.x43_c00007{left:156.160000pt;}
.x1e_c00007{left:157.440000pt;}
.x46_c00007{left:165.760000pt;}
.xc_c00007{left:167.040000pt;}
.x53_c00007{left:174.720000pt;}
.x4d_c00007{left:184.320000pt;}
.x4_c00007{left:185.600000pt;}
.x2d_c00007{left:186.880000pt;}
.x39_c00007{left:193.920000pt;}
.x31_c00007{left:195.840000pt;}
.x17_c00007{left:204.800000pt;}
.x54_c00007{left:213.120000pt;}
.xd_c00007{left:215.040000pt;}
.x4e_c00007{left:222.720000pt;}
.x5_c00007{left:224.000000pt;}
.x4b_c00007{left:232.960000pt;}
.x24_c00007{left:234.240000pt;}
.xe_c00007{left:243.840000pt;}
.x36_c00007{left:252.160000pt;}
.x65_c00007{left:261.120000pt;}
.x28_c00007{left:262.400000pt;}
.x5a_c00007{left:270.080000pt;}
.x18_c00007{left:272.640000pt;}
.x1f_c00007{left:281.600000pt;}
.x44_c00007{left:290.560000pt;}
.xf_c00007{left:291.840000pt;}
.x3a_c00007{left:300.160000pt;}
.x5d_c00007{left:309.120000pt;}
.x29_c00007{left:311.040000pt;}
.x47_c00007{left:318.720000pt;}
.x10_c00007{left:320.640000pt;}
.x6_c00007{left:329.600000pt;}
.x2a_c00007{left:339.200000pt;}
.x55_c00007{left:347.520000pt;}
.x32_c00007{left:348.800000pt;}
.x61_c00007{left:355.840000pt;}
.x4c_c00007{left:357.120000pt;}
.x48_c00007{left:358.400000pt;}
.x5e_c00007{left:366.720000pt;}
.x19_c00007{left:368.640000pt;}
.x42_c00007{left:376.960000pt;}
.x57_c00007{left:385.920000pt;}
.x37_c00007{left:387.200000pt;}
.x62_c00007{left:395.520000pt;}
.x11_c00007{left:396.800000pt;}
.x4f_c00007{left:405.760000pt;}
.x3b_c00007{left:415.360000pt;}
.x5f_c00007{left:423.040000pt;}
.x2e_c00007{left:424.320000pt;}
.x45_c00007{left:425.600000pt;}
.x50_c00007{left:433.920000pt;}
.x25_c00007{left:435.200000pt;}
.x33_c00007{left:443.520000pt;}
.x3c_c00007{left:445.440000pt;}
.x1a_c00007{left:455.040000pt;}
.x7_c00007{left:463.360000pt;}
.x12_c00007{left:464.640000pt;}
.x49_c00007{left:472.960000pt;}
.x2b_c00007{left:474.240000pt;}
.x34_c00007{left:482.560000pt;}
.x60_c00007{left:490.880000pt;}
.x2f_c00007{left:492.800000pt;}
.x8_c00007{left:501.760000pt;}
.x51_c00007{left:510.720000pt;}
.x20_c00007{left:512.000000pt;}
.x66_c00007{left:519.040000pt;}
.x30_c00007{left:520.960000pt;}
.x9_c00007{left:531.840000pt;}
.x2c_c00007{left:540.160000pt;}
.x21_c00007{left:541.440000pt;}
.x63_c00007{left:549.120000pt;}
.x38_c00007{left:550.400000pt;}
.x3d_c00007{left:560.640000pt;}
.x13_c00007{left:570.240000pt;}
.xa_c00007{left:577.920000pt;}
.x1b_c00007{left:579.200000pt;}
.x52_c00007{left:586.880000pt;}
.x4a_c00007{left:588.800000pt;}
.x64_c00007{left:597.120000pt;}
.x14_c00007{left:599.040000pt;}
.x56_c00007{left:606.720000pt;}
.x1c_c00007{left:608.640000pt;}
.x22_c00007{left:618.240000pt;}
.x5b_c00007{left:626.560000pt;}
.x35_c00007{left:627.840000pt;}
.x58_c00007{left:635.520000pt;}
.x26_c00007{left:636.800000pt;}
.x41_c00007{left:645.120000pt;}
.x15_c00007{left:647.040000pt;}
.x3e_c00007{left:656.000000pt;}
.x1_c00007{left:696.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_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_8fd7c57617e3663901537a84.woff2')format("woff");}.ff1_c00008{font-family:ff1_c00008;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m58_c00008{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m34_c00008{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00008{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m24_c00008{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m4_c00008{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00008{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m23_c00008{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m55_c00008{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.me_c00008{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m18_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);}
.m4c_c00008{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m26_c00008{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);}
.m4d_c00008{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m20_c00008{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);}
.m4f_c00008{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m52_c00008{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m21_c00008{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00008{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m17_c00008{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);}
.m3b_c00008{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m15_c00008{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m9_c00008{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);}
.m3a_c00008{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);}
.m5a_c00008{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);}
.m8_c00008{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00008{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);}
.m3c_c00008{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m41_c00008{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);}
.m45_c00008{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);}
.m1c_c00008{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);}
.m46_c00008{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m40_c00008{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m13_c00008{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);}
.mc_c00008{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);}
.m51_c00008{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m56_c00008{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);}
.m3e_c00008{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);}
.m57_c00008{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m53_c00008{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00008{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m37_c00008{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m43_c00008{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);}
.m3d_c00008{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00008{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);}
.m0_c00008{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m7_c00008{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);}
.ma_c00008{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.md_c00008{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m48_c00008{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m44_c00008{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m11_c00008{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);}
.m54_c00008{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m16_c00008{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m31_c00008{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m35_c00008{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);}
.m27_c00008{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00008{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m5_c00008{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m1_c00008{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00008{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m14_c00008{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);}
.m39_c00008{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);}
.m2f_c00008{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m42_c00008{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m2_c00008{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);}
.m4e_c00008{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m38_c00008{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m25_c00008{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m49_c00008{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);}
.m47_c00008{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m6_c00008{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00008{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.mb_c00008{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m30_c00008{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m12_c00008{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);}
.m22_c00008{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00008{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m19_c00008{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m36_c00008{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m33_c00008{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00008{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00008{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);}
.m29_c00008{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);}
.m1a_c00008{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m10_c00008{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);}
.mf_c00008{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m50_c00008{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m32_c00008{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m28_c00008{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.m59_c00008{transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);}
.m3_c00008{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);}
.m2e_c00008{transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);}
.v0_c00008{vertical-align:0.000000px;}
.ls0_c00008{letter-spacing:0.000000px;}
.sc__c00008{text-shadow:none;}
.sc0_c00008{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00008{-webkit-text-stroke:0px transparent;}
.sc0_c00008{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00008{word-spacing:-6.142560px;}
.ws1_c00008{word-spacing:0.000000px;}
.fc0_c00008{color:transparent;}
.fs5_c00008{font-size:34.560000px;}
.fs4_c00008{font-size:37.440000px;}
.fsb_c00008{font-size:43.200000px;}
.fs1_c00008{font-size:46.080000px;}
.fs0_c00008{font-size:48.960000px;}
.fs3_c00008{font-size:51.840000px;}
.fs7_c00008{font-size:54.720000px;}
.fs8_c00008{font-size:57.600000px;}
.fs2_c00008{font-size:60.480000px;}
.fsa_c00008{font-size:63.360000px;}
.fs6_c00008{font-size:66.240000px;}
.fs9_c00008{font-size:69.120000px;}
.fsc_c00008{font-size:72.000000px;}
.y0_c00008{bottom:0.000000px;}
.y58_c00008{bottom:76.320000px;}
.y5a_c00008{bottom:77.040000px;}
.y59_c00008{bottom:77.760000px;}
.y5b_c00008{bottom:78.480000px;}
.y55_c00008{bottom:116.640000px;}
.y57_c00008{bottom:119.520000px;}
.y56_c00008{bottom:120.240000px;}
.y54_c00008{bottom:120.960000px;}
.y50_c00008{bottom:159.840000px;}
.y53_c00008{bottom:160.560000px;}
.y51_c00008{bottom:161.280000px;}
.y52_c00008{bottom:162.720000px;}
.y4f_c00008{bottom:203.040000px;}
.y4d_c00008{bottom:203.760000px;}
.y4c_c00008{bottom:205.920000px;}
.y4e_c00008{bottom:206.640000px;}
.y4b_c00008{bottom:246.240000px;}
.y4a_c00008{bottom:248.400000px;}
.y49_c00008{bottom:249.120000px;}
.y48_c00008{bottom:249.840000px;}
.y46_c00008{bottom:288.000000px;}
.y47_c00008{bottom:290.880000px;}
.y45_c00008{bottom:291.600000px;}
.y44_c00008{bottom:292.320000px;}
.y41_c00008{bottom:331.920000px;}
.y43_c00008{bottom:333.360000px;}
.y42_c00008{bottom:334.080000px;}
.y3e_c00008{bottom:373.680000px;}
.y40_c00008{bottom:374.400000px;}
.y3d_c00008{bottom:376.560000px;}
.y3f_c00008{bottom:377.280000px;}
.y3c_c00008{bottom:426.960000px;}
.y39_c00008{bottom:428.400000px;}
.y3a_c00008{bottom:429.840000px;}
.y3b_c00008{bottom:430.560000px;}
.y35_c00008{bottom:470.160000px;}
.y37_c00008{bottom:470.880000px;}
.y38_c00008{bottom:472.320000px;}
.y36_c00008{bottom:473.040000px;}
.y34_c00008{bottom:512.640000px;}
.y32_c00008{bottom:513.360000px;}
.y33_c00008{bottom:514.800000px;}
.y31_c00008{bottom:515.520000px;}
.y2f_c00008{bottom:555.120000px;}
.y2e_c00008{bottom:555.840000px;}
.y30_c00008{bottom:556.560000px;}
.y2d_c00008{bottom:558.000000px;}
.y2c_c00008{bottom:558.720000px;}
.y2a_c00008{bottom:598.320000px;}
.y2b_c00008{bottom:600.480000px;}
.y28_c00008{bottom:601.200000px;}
.y29_c00008{bottom:601.920000px;}
.y25_c00008{bottom:640.800000px;}
.y27_c00008{bottom:641.520000px;}
.y24_c00008{bottom:642.240000px;}
.y26_c00008{bottom:643.680000px;}
.y23_c00008{bottom:644.400000px;}
.y22_c00008{bottom:683.280000px;}
.y20_c00008{bottom:684.000000px;}
.y1d_c00008{bottom:684.720000px;}
.y21_c00008{bottom:686.160000px;}
.y1f_c00008{bottom:686.880000px;}
.y1e_c00008{bottom:687.600000px;}
.y1b_c00008{bottom:726.480000px;}
.y1c_c00008{bottom:729.360000px;}
.y1a_c00008{bottom:730.080000px;}
.y19_c00008{bottom:769.680000px;}
.y15_c00008{bottom:770.400000px;}
.y18_c00008{bottom:771.840000px;}
.y16_c00008{bottom:772.560000px;}
.y17_c00008{bottom:773.280000px;}
.y11_c00008{bottom:812.160000px;}
.y14_c00008{bottom:815.040000px;}
.y12_c00008{bottom:815.760000px;}
.y13_c00008{bottom:816.480000px;}
.yf_c00008{bottom:855.360000px;}
.y10_c00008{bottom:857.520000px;}
.ye_c00008{bottom:858.240000px;}
.yd_c00008{bottom:858.960000px;}
.yb_c00008{bottom:908.640000px;}
.yc_c00008{bottom:911.520000px;}
.y9_c00008{bottom:950.400000px;}
.ya_c00008{bottom:953.280000px;}
.y7_c00008{bottom:954.000000px;}
.y8_c00008{bottom:954.720000px;}
.y1_c00008{bottom:994.320000px;}
.y2_c00008{bottom:995.040000px;}
.y6_c00008{bottom:995.760000px;}
.y4_c00008{bottom:996.480000px;}
.y5_c00008{bottom:997.200000px;}
.y3_c00008{bottom:997.920000px;}
.h7_c00008{height:31.100625px;}
.h6_c00008{height:33.692344px;}
.hd_c00008{height:38.875781px;}
.h3_c00008{height:41.467500px;}
.h2_c00008{height:44.059219px;}
.h5_c00008{height:46.650937px;}
.h9_c00008{height:49.242656px;}
.ha_c00008{height:51.834375px;}
.h4_c00008{height:54.426094px;}
.hc_c00008{height:57.017812px;}
.h8_c00008{height:59.609531px;}
.hb_c00008{height:62.201250px;}
.he_c00008{height:64.792969px;}
.h0_c00008{height:1157.760000px;}
.h1_c00008{height:1158.000000px;}
.w1_c00008{width:821.250000px;}
.w0_c00008{width:821.520000px;}
.x0_c00008{left:0.000000px;}
.x1_c00008{left:97.920000px;}
.xc_c00008{left:99.360000px;}
.x46_c00008{left:129.600000px;}
.xd_c00008{left:131.760000px;}
.x1d_c00008{left:142.560000px;}
.x49_c00008{left:151.920000px;}
.x2c_c00008{left:153.360000px;}
.x16_c00008{left:163.440000px;}
.x2_c00008{left:173.520000px;}
.x25_c00008{left:174.960000px;}
.x2d_c00008{left:185.760000px;}
.x3_c00008{left:195.840000px;}
.x40_c00008{left:205.920000px;}
.x17_c00008{left:207.360000px;}
.x39_c00008{left:216.720000px;}
.x4e_c00008{left:218.160000px;}
.x37_c00008{left:228.240000px;}
.x4a_c00008{left:237.600000px;}
.x4_c00008{left:239.760000px;}
.x1e_c00008{left:249.840000px;}
.xe_c00008{left:251.280000px;}
.x41_c00008{left:261.360000px;}
.x3d_c00008{left:271.440000px;}
.x1f_c00008{left:280.800000px;}
.x5_c00008{left:282.240000px;}
.x31_c00008{left:293.760000px;}
.x2e_c00008{left:302.400000px;}
.x45_c00008{left:304.560000px;}
.x47_c00008{left:313.920000px;}
.x18_c00008{left:315.360000px;}
.x38_c00008{left:324.720000px;}
.x26_c00008{left:326.160000px;}
.x3e_c00008{left:336.960000px;}
.x4d_c00008{left:345.600000px;}
.x3a_c00008{left:347.040000px;}
.x20_c00008{left:348.480000px;}
.x48_c00008{left:357.120000px;}
.x27_c00008{left:358.560000px;}
.x44_c00008{left:367.920000px;}
.xf_c00008{left:369.360000px;}
.x6_c00008{left:379.440000px;}
.x19_c00008{left:390.960000px;}
.x10_c00008{left:399.600000px;}
.x42_c00008{left:401.760000px;}
.x4f_c00008{left:411.840000px;}
.x7_c00008{left:423.360000px;}
.x3f_c00008{left:434.160000px;}
.x28_c00008{left:442.800000px;}
.x32_c00008{left:444.960000px;}
.x21_c00008{left:455.040000px;}
.x3b_c00008{left:466.560000px;}
.x11_c00008{left:476.640000px;}
.x2f_c00008{left:486.720000px;}
.x8_c00008{left:498.960000px;}
.x50_c00008{left:508.320000px;}
.x29_c00008{left:509.760000px;}
.x33_c00008{left:519.840000px;}
.x30_c00008{left:530.640000px;}
.x9_c00008{left:541.440000px;}
.x3c_c00008{left:550.800000px;}
.x2a_c00008{left:552.960000px;}
.x1a_c00008{left:573.840000px;}
.x22_c00008{left:575.280000px;}
.x34_c00008{left:583.920000px;}
.x12_c00008{left:595.440000px;}
.x1b_c00008{left:606.960000px;}
.x23_c00008{left:617.760000px;}
.x35_c00008{left:627.840000px;}
.x13_c00008{left:637.920000px;}
.x51_c00008{left:639.360000px;}
.x4b_c00008{left:649.440000px;}
.x1c_c00008{left:658.800000px;}
.xa_c00008{left:660.960000px;}
.x43_c00008{left:670.320000px;}
.x4c_c00008{left:681.120000px;}
.x14_c00008{left:682.560000px;}
.x2b_c00008{left:684.000000px;}
.xb_c00008{left:693.360000px;}
.x24_c00008{left:704.160000px;}
.x36_c00008{left:714.960000px;}
.x15_c00008{left:736.560000px;}
@media print{
.v0_c00008{vertical-align:0.000000pt;}
.ls0_c00008{letter-spacing:0.000000pt;}
.ws0_c00008{word-spacing:-5.460053pt;}
.ws1_c00008{word-spacing:0.000000pt;}
.fs5_c00008{font-size:30.720000pt;}
.fs4_c00008{font-size:33.280000pt;}
.fsb_c00008{font-size:38.400000pt;}
.fs1_c00008{font-size:40.960000pt;}
.fs0_c00008{font-size:43.520000pt;}
.fs3_c00008{font-size:46.080000pt;}
.fs7_c00008{font-size:48.640000pt;}
.fs8_c00008{font-size:51.200000pt;}
.fs2_c00008{font-size:53.760000pt;}
.fsa_c00008{font-size:56.320000pt;}
.fs6_c00008{font-size:58.880000pt;}
.fs9_c00008{font-size:61.440000pt;}
.fsc_c00008{font-size:64.000000pt;}
.y0_c00008{bottom:0.000000pt;}
.y58_c00008{bottom:67.840000pt;}
.y5a_c00008{bottom:68.480000pt;}
.y59_c00008{bottom:69.120000pt;}
.y5b_c00008{bottom:69.760000pt;}
.y55_c00008{bottom:103.680000pt;}
.y57_c00008{bottom:106.240000pt;}
.y56_c00008{bottom:106.880000pt;}
.y54_c00008{bottom:107.520000pt;}
.y50_c00008{bottom:142.080000pt;}
.y53_c00008{bottom:142.720000pt;}
.y51_c00008{bottom:143.360000pt;}
.y52_c00008{bottom:144.640000pt;}
.y4f_c00008{bottom:180.480000pt;}
.y4d_c00008{bottom:181.120000pt;}
.y4c_c00008{bottom:183.040000pt;}
.y4e_c00008{bottom:183.680000pt;}
.y4b_c00008{bottom:218.880000pt;}
.y4a_c00008{bottom:220.800000pt;}
.y49_c00008{bottom:221.440000pt;}
.y48_c00008{bottom:222.080000pt;}
.y46_c00008{bottom:256.000000pt;}
.y47_c00008{bottom:258.560000pt;}
.y45_c00008{bottom:259.200000pt;}
.y44_c00008{bottom:259.840000pt;}
.y41_c00008{bottom:295.040000pt;}
.y43_c00008{bottom:296.320000pt;}
.y42_c00008{bottom:296.960000pt;}
.y3e_c00008{bottom:332.160000pt;}
.y40_c00008{bottom:332.800000pt;}
.y3d_c00008{bottom:334.720000pt;}
.y3f_c00008{bottom:335.360000pt;}
.y3c_c00008{bottom:379.520000pt;}
.y39_c00008{bottom:380.800000pt;}
.y3a_c00008{bottom:382.080000pt;}
.y3b_c00008{bottom:382.720000pt;}
.y35_c00008{bottom:417.920000pt;}
.y37_c00008{bottom:418.560000pt;}
.y38_c00008{bottom:419.840000pt;}
.y36_c00008{bottom:420.480000pt;}
.y34_c00008{bottom:455.680000pt;}
.y32_c00008{bottom:456.320000pt;}
.y33_c00008{bottom:457.600000pt;}
.y31_c00008{bottom:458.240000pt;}
.y2f_c00008{bottom:493.440000pt;}
.y2e_c00008{bottom:494.080000pt;}
.y30_c00008{bottom:494.720000pt;}
.y2d_c00008{bottom:496.000000pt;}
.y2c_c00008{bottom:496.640000pt;}
.y2a_c00008{bottom:531.840000pt;}
.y2b_c00008{bottom:533.760000pt;}
.y28_c00008{bottom:534.400000pt;}
.y29_c00008{bottom:535.040000pt;}
.y25_c00008{bottom:569.600000pt;}
.y27_c00008{bottom:570.240000pt;}
.y24_c00008{bottom:570.880000pt;}
.y26_c00008{bottom:572.160000pt;}
.y23_c00008{bottom:572.800000pt;}
.y22_c00008{bottom:607.360000pt;}
.y20_c00008{bottom:608.000000pt;}
.y1d_c00008{bottom:608.640000pt;}
.y21_c00008{bottom:609.920000pt;}
.y1f_c00008{bottom:610.560000pt;}
.y1e_c00008{bottom:611.200000pt;}
.y1b_c00008{bottom:645.760000pt;}
.y1c_c00008{bottom:648.320000pt;}
.y1a_c00008{bottom:648.960000pt;}
.y19_c00008{bottom:684.160000pt;}
.y15_c00008{bottom:684.800000pt;}
.y18_c00008{bottom:686.080000pt;}
.y16_c00008{bottom:686.720000pt;}
.y17_c00008{bottom:687.360000pt;}
.y11_c00008{bottom:721.920000pt;}
.y14_c00008{bottom:724.480000pt;}
.y12_c00008{bottom:725.120000pt;}
.y13_c00008{bottom:725.760000pt;}
.yf_c00008{bottom:760.320000pt;}
.y10_c00008{bottom:762.240000pt;}
.ye_c00008{bottom:762.880000pt;}
.yd_c00008{bottom:763.520000pt;}
.yb_c00008{bottom:807.680000pt;}
.yc_c00008{bottom:810.240000pt;}
.y9_c00008{bottom:844.800000pt;}
.ya_c00008{bottom:847.360000pt;}
.y7_c00008{bottom:848.000000pt;}
.y8_c00008{bottom:848.640000pt;}
.y1_c00008{bottom:883.840000pt;}
.y2_c00008{bottom:884.480000pt;}
.y6_c00008{bottom:885.120000pt;}
.y4_c00008{bottom:885.760000pt;}
.y5_c00008{bottom:886.400000pt;}
.y3_c00008{bottom:887.040000pt;}
.h7_c00008{height:27.645000pt;}
.h6_c00008{height:29.948750pt;}
.hd_c00008{height:34.556250pt;}
.h3_c00008{height:36.860000pt;}
.h2_c00008{height:39.163750pt;}
.h5_c00008{height:41.467500pt;}
.h9_c00008{height:43.771250pt;}
.ha_c00008{height:46.075000pt;}
.h4_c00008{height:48.378750pt;}
.hc_c00008{height:50.682500pt;}
.h8_c00008{height:52.986250pt;}
.hb_c00008{height:55.290000pt;}
.he_c00008{height:57.593750pt;}
.h0_c00008{height:1029.120000pt;}
.h1_c00008{height:1029.333333pt;}
.w1_c00008{width:730.000000pt;}
.w0_c00008{width:730.240000pt;}
.x0_c00008{left:0.000000pt;}
.x1_c00008{left:87.040000pt;}
.xc_c00008{left:88.320000pt;}
.x46_c00008{left:115.200000pt;}
.xd_c00008{left:117.120000pt;}
.x1d_c00008{left:126.720000pt;}
.x49_c00008{left:135.040000pt;}
.x2c_c00008{left:136.320000pt;}
.x16_c00008{left:145.280000pt;}
.x2_c00008{left:154.240000pt;}
.x25_c00008{left:155.520000pt;}
.x2d_c00008{left:165.120000pt;}
.x3_c00008{left:174.080000pt;}
.x40_c00008{left:183.040000pt;}
.x17_c00008{left:184.320000pt;}
.x39_c00008{left:192.640000pt;}
.x4e_c00008{left:193.920000pt;}
.x37_c00008{left:202.880000pt;}
.x4a_c00008{left:211.200000pt;}
.x4_c00008{left:213.120000pt;}
.x1e_c00008{left:222.080000pt;}
.xe_c00008{left:223.360000pt;}
.x41_c00008{left:232.320000pt;}
.x3d_c00008{left:241.280000pt;}
.x1f_c00008{left:249.600000pt;}
.x5_c00008{left:250.880000pt;}
.x31_c00008{left:261.120000pt;}
.x2e_c00008{left:268.800000pt;}
.x45_c00008{left:270.720000pt;}
.x47_c00008{left:279.040000pt;}
.x18_c00008{left:280.320000pt;}
.x38_c00008{left:288.640000pt;}
.x26_c00008{left:289.920000pt;}
.x3e_c00008{left:299.520000pt;}
.x4d_c00008{left:307.200000pt;}
.x3a_c00008{left:308.480000pt;}
.x20_c00008{left:309.760000pt;}
.x48_c00008{left:317.440000pt;}
.x27_c00008{left:318.720000pt;}
.x44_c00008{left:327.040000pt;}
.xf_c00008{left:328.320000pt;}
.x6_c00008{left:337.280000pt;}
.x19_c00008{left:347.520000pt;}
.x10_c00008{left:355.200000pt;}
.x42_c00008{left:357.120000pt;}
.x4f_c00008{left:366.080000pt;}
.x7_c00008{left:376.320000pt;}
.x3f_c00008{left:385.920000pt;}
.x28_c00008{left:393.600000pt;}
.x32_c00008{left:395.520000pt;}
.x21_c00008{left:404.480000pt;}
.x3b_c00008{left:414.720000pt;}
.x11_c00008{left:423.680000pt;}
.x2f_c00008{left:432.640000pt;}
.x8_c00008{left:443.520000pt;}
.x50_c00008{left:451.840000pt;}
.x29_c00008{left:453.120000pt;}
.x33_c00008{left:462.080000pt;}
.x30_c00008{left:471.680000pt;}
.x9_c00008{left:481.280000pt;}
.x3c_c00008{left:489.600000pt;}
.x2a_c00008{left:491.520000pt;}
.x1a_c00008{left:510.080000pt;}
.x22_c00008{left:511.360000pt;}
.x34_c00008{left:519.040000pt;}
.x12_c00008{left:529.280000pt;}
.x1b_c00008{left:539.520000pt;}
.x23_c00008{left:549.120000pt;}
.x35_c00008{left:558.080000pt;}
.x13_c00008{left:567.040000pt;}
.x51_c00008{left:568.320000pt;}
.x4b_c00008{left:577.280000pt;}
.x1c_c00008{left:585.600000pt;}
.xa_c00008{left:587.520000pt;}
.x43_c00008{left:595.840000pt;}
.x4c_c00008{left:605.440000pt;}
.x14_c00008{left:606.720000pt;}
.x2b_c00008{left:608.000000pt;}
.xb_c00008{left:616.320000pt;}
.x24_c00008{left:625.920000pt;}
.x36_c00008{left:635.520000pt;}
.x15_c00008{left:654.720000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5171e2e4e9b3b8bf361ec266.woff2')format("woff");}.ff1_c00009{font-family:ff1_c00009;line-height:1.109863;font-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_c00009{transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);}
.m0_c00009{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m3b_c00009{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);}
.m5a_c00009{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.md_c00009{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m43_c00009{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m33_c00009{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00009{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m60_c00009{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00009{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00009{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m40_c00009{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m54_c00009{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_c00009{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m6_c00009{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_c00009{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00009{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m7_c00009{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m51_c00009{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);}
.m3c_c00009{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.mb_c00009{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m11_c00009{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);}
.m1d_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);}
.m2c_c00009{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.ma_c00009{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m3_c00009{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00009{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);}
.m16_c00009{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);}
.m2f_c00009{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00009{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);}
.m22_c00009{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m18_c00009{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);}
.m50_c00009{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);}
.mf_c00009{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m37_c00009{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m4_c00009{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00009{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);}
.m2d_c00009{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m35_c00009{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);}
.m52_c00009{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);}
.m59_c00009{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m19_c00009{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m24_c00009{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00009{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m47_c00009{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);}
.m4f_c00009{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00009{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m44_c00009{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);}
.m41_c00009{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m23_c00009{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);}
.m32_c00009{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00009{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m5_c00009{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m48_c00009{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m14_c00009{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);}
.m30_c00009{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m49_c00009{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00009{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m31_c00009{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m56_c00009{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m53_c00009{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00009{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m17_c00009{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);}
.mc_c00009{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);}
.m2_c00009{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00009{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m25_c00009{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);}
.m42_c00009{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00009{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m27_c00009{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00009{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m9_c00009{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);}
.m21_c00009{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00009{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00009{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00009{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);}
.m28_c00009{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m58_c00009{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);}
.m8_c00009{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);}
.m26_c00009{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m1_c00009{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m13_c00009{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m10_c00009{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m36_c00009{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00009{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m46_c00009{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);}
.m15_c00009{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m38_c00009{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);}
.m20_c00009{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m29_c00009{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m45_c00009{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m34_c00009{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00009{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.m55_c00009{transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);}
.m57_c00009{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.me_c00009{transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);}
.m39_c00009{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.v1_c00009{vertical-align:-2.880000px;}
.v0_c00009{vertical-align:0.000000px;}
.v2_c00009{vertical-align:8.640000px;}
.ls0_c00009{letter-spacing:0.000000px;}
.sc__c00009{text-shadow:none;}
.sc0_c00009{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00009{-webkit-text-stroke:0px transparent;}
.sc0_c00009{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00009{word-spacing:-3.402240px;}
.ws5_c00009{word-spacing:0.000000px;}
.ws2_c00009{word-spacing:0.778800px;}
.ws4_c00009{word-spacing:2.081280px;}
.ws1_c00009{word-spacing:3.150732px;}
.ws3_c00009{word-spacing:5.389920px;}
.fc0_c00009{color:transparent;}
.fsb_c00009{font-size:14.400000px;}
.fs4_c00009{font-size:34.560000px;}
.fsa_c00009{font-size:37.440000px;}
.fs9_c00009{font-size:43.200000px;}
.fs5_c00009{font-size:46.080000px;}
.fs1_c00009{font-size:48.960000px;}
.fs2_c00009{font-size:51.840000px;}
.fs8_c00009{font-size:54.720000px;}
.fs7_c00009{font-size:57.600000px;}
.fs6_c00009{font-size:60.480000px;}
.fs3_c00009{font-size:63.360000px;}
.fsc_c00009{font-size:66.240000px;}
.fs0_c00009{font-size:69.120000px;}
.y0_c00009{bottom:0.000000px;}
.y58_c00009{bottom:61.920000px;}
.y5a_c00009{bottom:62.640000px;}
.y5c_c00009{bottom:64.080000px;}
.y59_c00009{bottom:65.520000px;}
.y5b_c00009{bottom:66.240000px;}
.y57_c00009{bottom:105.120000px;}
.y55_c00009{bottom:107.280000px;}
.y56_c00009{bottom:108.000000px;}
.y54_c00009{bottom:148.320000px;}
.y53_c00009{bottom:149.040000px;}
.y51_c00009{bottom:150.480000px;}
.y52_c00009{bottom:151.200000px;}
.y50_c00009{bottom:201.600000px;}
.y4f_c00009{bottom:203.760000px;}
.y4e_c00009{bottom:204.480000px;}
.y4c_c00009{bottom:243.360000px;}
.y4b_c00009{bottom:246.960000px;}
.y4d_c00009{bottom:247.680000px;}
.y48_c00009{bottom:286.560000px;}
.y49_c00009{bottom:287.280000px;}
.y47_c00009{bottom:289.440000px;}
.y4a_c00009{bottom:290.160000px;}
.y46_c00009{bottom:329.760000px;}
.y45_c00009{bottom:330.480000px;}
.y44_c00009{bottom:331.920000px;}
.y43_c00009{bottom:332.640000px;}
.y42_c00009{bottom:371.520000px;}
.y3f_c00009{bottom:372.240000px;}
.y41_c00009{bottom:372.960000px;}
.y40_c00009{bottom:374.400000px;}
.y3e_c00009{bottom:375.120000px;}
.y3d_c00009{bottom:414.720000px;}
.y3c_c00009{bottom:415.440000px;}
.y3a_c00009{bottom:417.600000px;}
.y3b_c00009{bottom:418.320000px;}
.y39_c00009{bottom:457.920000px;}
.y37_c00009{bottom:460.080000px;}
.y38_c00009{bottom:460.800000px;}
.y33_c00009{bottom:511.200000px;}
.y36_c00009{bottom:512.640000px;}
.y35_c00009{bottom:514.080000px;}
.y34_c00009{bottom:514.800000px;}
.y30_c00009{bottom:553.680000px;}
.y32_c00009{bottom:555.840000px;}
.y31_c00009{bottom:556.560000px;}
.y2e_c00009{bottom:596.160000px;}
.y2d_c00009{bottom:596.880000px;}
.y2f_c00009{bottom:598.320000px;}
.y2c_c00009{bottom:599.040000px;}
.y2b_c00009{bottom:599.760000px;}
.y29_c00009{bottom:638.640000px;}
.y28_c00009{bottom:639.360000px;}
.y26_c00009{bottom:641.520000px;}
.y27_c00009{bottom:642.240000px;}
.y2a_c00009{bottom:644.400000px;}
.y25_c00009{bottom:681.120000px;}
.y21_c00009{bottom:681.840000px;}
.y22_c00009{bottom:682.560000px;}
.y24_c00009{bottom:684.000000px;}
.y23_c00009{bottom:684.720000px;}
.y1d_c00009{bottom:724.320000px;}
.y1e_c00009{bottom:725.040000px;}
.y20_c00009{bottom:726.480000px;}
.y1c_c00009{bottom:727.200000px;}
.y1f_c00009{bottom:727.920000px;}
.y1b_c00009{bottom:767.520000px;}
.y18_c00009{bottom:769.680000px;}
.y1a_c00009{bottom:770.400000px;}
.y19_c00009{bottom:771.120000px;}
.y17_c00009{bottom:820.800000px;}
.y14_c00009{bottom:822.960000px;}
.y16_c00009{bottom:823.680000px;}
.y15_c00009{bottom:824.400000px;}
.y10_c00009{bottom:863.280000px;}
.y12_c00009{bottom:864.000000px;}
.y13_c00009{bottom:866.160000px;}
.y11_c00009{bottom:866.880000px;}
.yf_c00009{bottom:905.760000px;}
.ye_c00009{bottom:906.480000px;}
.yd_c00009{bottom:907.200000px;}
.yb_c00009{bottom:908.640000px;}
.yc_c00009{bottom:909.360000px;}
.ya_c00009{bottom:948.240000px;}
.y7_c00009{bottom:948.960000px;}
.y9_c00009{bottom:950.400000px;}
.y6_c00009{bottom:951.120000px;}
.y8_c00009{bottom:951.840000px;}
.y3_c00009{bottom:991.440000px;}
.y5_c00009{bottom:993.600000px;}
.y2_c00009{bottom:994.320000px;}
.y4_c00009{bottom:995.040000px;}
.y1_c00009{bottom:1076.400000px;}
.hd_c00009{height:12.958594px;}
.h6_c00009{height:31.100625px;}
.hc_c00009{height:33.692344px;}
.hb_c00009{height:38.875781px;}
.h7_c00009{height:41.467500px;}
.h3_c00009{height:44.059219px;}
.h4_c00009{height:46.650937px;}
.ha_c00009{height:49.242656px;}
.h9_c00009{height:51.834375px;}
.h8_c00009{height:54.426094px;}
.he_c00009{height:55.290937px;}
.h5_c00009{height:57.017812px;}
.hf_c00009{height:59.609531px;}
.h2_c00009{height:62.201250px;}
.h0_c00009{height:1156.320000px;}
.h1_c00009{height:1156.500000px;}
.w1_c00009{width:820.500000px;}
.w0_c00009{width:820.800000px;}
.x0_c00009{left:0.000000px;}
.x2_c00009{left:97.200000px;}
.xd_c00009{left:98.640000px;}
.xe_c00009{left:130.320000px;}
.x36_c00009{left:141.120000px;}
.x3_c00009{left:151.920000px;}
.x3f_c00009{left:162.000000px;}
.x26_c00009{left:163.440000px;}
.xf_c00009{left:173.520000px;}
.x37_c00009{left:183.600000px;}
.x4_c00009{left:185.040000px;}
.x40_c00009{left:205.200000px;}
.x21_c00009{left:206.640000px;}
.x2c_c00009{left:216.720000px;}
.x27_c00009{left:218.160000px;}
.x1b_c00009{left:228.240000px;}
.x10_c00009{left:239.040000px;}
.x4f_c00009{left:249.120000px;}
.x30_c00009{left:250.560000px;}
.x28_c00009{left:260.640000px;}
.x4d_c00009{left:270.720000px;}
.x49_c00009{left:280.080000px;}
.x22_c00009{left:281.520000px;}
.x11_c00009{left:282.960000px;}
.x44_c00009{left:291.600000px;}
.x42_c00009{left:293.040000px;}
.x53_c00009{left:302.400000px;}
.x38_c00009{left:303.840000px;}
.x5_c00009{left:314.640000px;}
.x12_c00009{left:316.080000px;}
.x41_c00009{left:325.440000px;}
.x1c_c00009{left:335.520000px;}
.x2d_c00009{left:336.960000px;}
.x50_c00009{left:345.600000px;}
.x29_c00009{left:347.040000px;}
.x2e_c00009{left:357.840000px;}
.x13_c00009{left:367.200000px;}
.x6_c00009{left:378.000000px;}
.x3d_c00009{left:379.440000px;}
.x31_c00009{left:380.880000px;}
.x51_c00009{left:388.800000px;}
.x48_c00009{left:390.240000px;}
.x23_c00009{left:400.320000px;}
.x1d_c00009{left:412.560000px;}
.x39_c00009{left:422.640000px;}
.x14_c00009{left:433.440000px;}
.x4a_c00009{left:442.800000px;}
.x3e_c00009{left:444.240000px;}
.x7_c00009{left:454.320000px;}
.x3a_c00009{left:455.760000px;}
.x15_c00009{left:464.400000px;}
.x32_c00009{left:475.200000px;}
.x1e_c00009{left:476.640000px;}
.x55_c00009{left:486.000000px;}
.x1f_c00009{left:508.320000px;}
.x4e_c00009{left:509.760000px;}
.x8_c00009{left:519.120000px;}
.x2f_c00009{left:520.560000px;}
.x33_c00009{left:529.920000px;}
.x2a_c00009{left:540.720000px;}
.x16_c00009{left:542.160000px;}
.x34_c00009{left:551.520000px;}
.x9_c00009{left:552.960000px;}
.x24_c00009{left:563.040000px;}
.x54_c00009{left:572.400000px;}
.x17_c00009{left:573.840000px;}
.x25_c00009{left:594.720000px;}
.x43_c00009{left:615.600000px;}
.x3b_c00009{left:617.040000px;}
.x2b_c00009{left:626.400000px;}
.x45_c00009{left:627.840000px;}
.xa_c00009{left:637.920000px;}
.x4b_c00009{left:648.000000px;}
.x18_c00009{left:658.800000px;}
.x20_c00009{left:670.320000px;}
.x4c_c00009{left:671.760000px;}
.x52_c00009{left:681.840000px;}
.x46_c00009{left:691.200000px;}
.xb_c00009{left:692.640000px;}
.x19_c00009{left:702.720000px;}
.x3c_c00009{left:714.960000px;}
.xc_c00009{left:725.760000px;}
.x47_c00009{left:734.400000px;}
.x1a_c00009{left:735.840000px;}
.x35_c00009{left:746.640000px;}
.x1_c00009{left:749.520000px;}
@media print{
.v1_c00009{vertical-align:-2.560000pt;}
.v0_c00009{vertical-align:0.000000pt;}
.v2_c00009{vertical-align:7.680000pt;}
.ls0_c00009{letter-spacing:0.000000pt;}
.ws0_c00009{word-spacing:-3.024213pt;}
.ws5_c00009{word-spacing:0.000000pt;}
.ws2_c00009{word-spacing:0.692267pt;}
.ws4_c00009{word-spacing:1.850027pt;}
.ws1_c00009{word-spacing:2.800650pt;}
.ws3_c00009{word-spacing:4.791040pt;}
.fsb_c00009{font-size:12.800000pt;}
.fs4_c00009{font-size:30.720000pt;}
.fsa_c00009{font-size:33.280000pt;}
.fs9_c00009{font-size:38.400000pt;}
.fs5_c00009{font-size:40.960000pt;}
.fs1_c00009{font-size:43.520000pt;}
.fs2_c00009{font-size:46.080000pt;}
.fs8_c00009{font-size:48.640000pt;}
.fs7_c00009{font-size:51.200000pt;}
.fs6_c00009{font-size:53.760000pt;}
.fs3_c00009{font-size:56.320000pt;}
.fsc_c00009{font-size:58.880000pt;}
.fs0_c00009{font-size:61.440000pt;}
.y0_c00009{bottom:0.000000pt;}
.y58_c00009{bottom:55.040000pt;}
.y5a_c00009{bottom:55.680000pt;}
.y5c_c00009{bottom:56.960000pt;}
.y59_c00009{bottom:58.240000pt;}
.y5b_c00009{bottom:58.880000pt;}
.y57_c00009{bottom:93.440000pt;}
.y55_c00009{bottom:95.360000pt;}
.y56_c00009{bottom:96.000000pt;}
.y54_c00009{bottom:131.840000pt;}
.y53_c00009{bottom:132.480000pt;}
.y51_c00009{bottom:133.760000pt;}
.y52_c00009{bottom:134.400000pt;}
.y50_c00009{bottom:179.200000pt;}
.y4f_c00009{bottom:181.120000pt;}
.y4e_c00009{bottom:181.760000pt;}
.y4c_c00009{bottom:216.320000pt;}
.y4b_c00009{bottom:219.520000pt;}
.y4d_c00009{bottom:220.160000pt;}
.y48_c00009{bottom:254.720000pt;}
.y49_c00009{bottom:255.360000pt;}
.y47_c00009{bottom:257.280000pt;}
.y4a_c00009{bottom:257.920000pt;}
.y46_c00009{bottom:293.120000pt;}
.y45_c00009{bottom:293.760000pt;}
.y44_c00009{bottom:295.040000pt;}
.y43_c00009{bottom:295.680000pt;}
.y42_c00009{bottom:330.240000pt;}
.y3f_c00009{bottom:330.880000pt;}
.y41_c00009{bottom:331.520000pt;}
.y40_c00009{bottom:332.800000pt;}
.y3e_c00009{bottom:333.440000pt;}
.y3d_c00009{bottom:368.640000pt;}
.y3c_c00009{bottom:369.280000pt;}
.y3a_c00009{bottom:371.200000pt;}
.y3b_c00009{bottom:371.840000pt;}
.y39_c00009{bottom:407.040000pt;}
.y37_c00009{bottom:408.960000pt;}
.y38_c00009{bottom:409.600000pt;}
.y33_c00009{bottom:454.400000pt;}
.y36_c00009{bottom:455.680000pt;}
.y35_c00009{bottom:456.960000pt;}
.y34_c00009{bottom:457.600000pt;}
.y30_c00009{bottom:492.160000pt;}
.y32_c00009{bottom:494.080000pt;}
.y31_c00009{bottom:494.720000pt;}
.y2e_c00009{bottom:529.920000pt;}
.y2d_c00009{bottom:530.560000pt;}
.y2f_c00009{bottom:531.840000pt;}
.y2c_c00009{bottom:532.480000pt;}
.y2b_c00009{bottom:533.120000pt;}
.y29_c00009{bottom:567.680000pt;}
.y28_c00009{bottom:568.320000pt;}
.y26_c00009{bottom:570.240000pt;}
.y27_c00009{bottom:570.880000pt;}
.y2a_c00009{bottom:572.800000pt;}
.y25_c00009{bottom:605.440000pt;}
.y21_c00009{bottom:606.080000pt;}
.y22_c00009{bottom:606.720000pt;}
.y24_c00009{bottom:608.000000pt;}
.y23_c00009{bottom:608.640000pt;}
.y1d_c00009{bottom:643.840000pt;}
.y1e_c00009{bottom:644.480000pt;}
.y20_c00009{bottom:645.760000pt;}
.y1c_c00009{bottom:646.400000pt;}
.y1f_c00009{bottom:647.040000pt;}
.y1b_c00009{bottom:682.240000pt;}
.y18_c00009{bottom:684.160000pt;}
.y1a_c00009{bottom:684.800000pt;}
.y19_c00009{bottom:685.440000pt;}
.y17_c00009{bottom:729.600000pt;}
.y14_c00009{bottom:731.520000pt;}
.y16_c00009{bottom:732.160000pt;}
.y15_c00009{bottom:732.800000pt;}
.y10_c00009{bottom:767.360000pt;}
.y12_c00009{bottom:768.000000pt;}
.y13_c00009{bottom:769.920000pt;}
.y11_c00009{bottom:770.560000pt;}
.yf_c00009{bottom:805.120000pt;}
.ye_c00009{bottom:805.760000pt;}
.yd_c00009{bottom:806.400000pt;}
.yb_c00009{bottom:807.680000pt;}
.yc_c00009{bottom:808.320000pt;}
.ya_c00009{bottom:842.880000pt;}
.y7_c00009{bottom:843.520000pt;}
.y9_c00009{bottom:844.800000pt;}
.y6_c00009{bottom:845.440000pt;}
.y8_c00009{bottom:846.080000pt;}
.y3_c00009{bottom:881.280000pt;}
.y5_c00009{bottom:883.200000pt;}
.y2_c00009{bottom:883.840000pt;}
.y4_c00009{bottom:884.480000pt;}
.y1_c00009{bottom:956.800000pt;}
.hd_c00009{height:11.518750pt;}
.h6_c00009{height:27.645000pt;}
.hc_c00009{height:29.948750pt;}
.hb_c00009{height:34.556250pt;}
.h7_c00009{height:36.860000pt;}
.h3_c00009{height:39.163750pt;}
.h4_c00009{height:41.467500pt;}
.ha_c00009{height:43.771250pt;}
.h9_c00009{height:46.075000pt;}
.h8_c00009{height:48.378750pt;}
.he_c00009{height:49.147500pt;}
.h5_c00009{height:50.682500pt;}
.hf_c00009{height:52.986250pt;}
.h2_c00009{height:55.290000pt;}
.h0_c00009{height:1027.840000pt;}
.h1_c00009{height:1028.000000pt;}
.w1_c00009{width:729.333333pt;}
.w0_c00009{width:729.600000pt;}
.x0_c00009{left:0.000000pt;}
.x2_c00009{left:86.400000pt;}
.xd_c00009{left:87.680000pt;}
.xe_c00009{left:115.840000pt;}
.x36_c00009{left:125.440000pt;}
.x3_c00009{left:135.040000pt;}
.x3f_c00009{left:144.000000pt;}
.x26_c00009{left:145.280000pt;}
.xf_c00009{left:154.240000pt;}
.x37_c00009{left:163.200000pt;}
.x4_c00009{left:164.480000pt;}
.x40_c00009{left:182.400000pt;}
.x21_c00009{left:183.680000pt;}
.x2c_c00009{left:192.640000pt;}
.x27_c00009{left:193.920000pt;}
.x1b_c00009{left:202.880000pt;}
.x10_c00009{left:212.480000pt;}
.x4f_c00009{left:221.440000pt;}
.x30_c00009{left:222.720000pt;}
.x28_c00009{left:231.680000pt;}
.x4d_c00009{left:240.640000pt;}
.x49_c00009{left:248.960000pt;}
.x22_c00009{left:250.240000pt;}
.x11_c00009{left:251.520000pt;}
.x44_c00009{left:259.200000pt;}
.x42_c00009{left:260.480000pt;}
.x53_c00009{left:268.800000pt;}
.x38_c00009{left:270.080000pt;}
.x5_c00009{left:279.680000pt;}
.x12_c00009{left:280.960000pt;}
.x41_c00009{left:289.280000pt;}
.x1c_c00009{left:298.240000pt;}
.x2d_c00009{left:299.520000pt;}
.x50_c00009{left:307.200000pt;}
.x29_c00009{left:308.480000pt;}
.x2e_c00009{left:318.080000pt;}
.x13_c00009{left:326.400000pt;}
.x6_c00009{left:336.000000pt;}
.x3d_c00009{left:337.280000pt;}
.x31_c00009{left:338.560000pt;}
.x51_c00009{left:345.600000pt;}
.x48_c00009{left:346.880000pt;}
.x23_c00009{left:355.840000pt;}
.x1d_c00009{left:366.720000pt;}
.x39_c00009{left:375.680000pt;}
.x14_c00009{left:385.280000pt;}
.x4a_c00009{left:393.600000pt;}
.x3e_c00009{left:394.880000pt;}
.x7_c00009{left:403.840000pt;}
.x3a_c00009{left:405.120000pt;}
.x15_c00009{left:412.800000pt;}
.x32_c00009{left:422.400000pt;}
.x1e_c00009{left:423.680000pt;}
.x55_c00009{left:432.000000pt;}
.x1f_c00009{left:451.840000pt;}
.x4e_c00009{left:453.120000pt;}
.x8_c00009{left:461.440000pt;}
.x2f_c00009{left:462.720000pt;}
.x33_c00009{left:471.040000pt;}
.x2a_c00009{left:480.640000pt;}
.x16_c00009{left:481.920000pt;}
.x34_c00009{left:490.240000pt;}
.x9_c00009{left:491.520000pt;}
.x24_c00009{left:500.480000pt;}
.x54_c00009{left:508.800000pt;}
.x17_c00009{left:510.080000pt;}
.x25_c00009{left:528.640000pt;}
.x43_c00009{left:547.200000pt;}
.x3b_c00009{left:548.480000pt;}
.x2b_c00009{left:556.800000pt;}
.x45_c00009{left:558.080000pt;}
.xa_c00009{left:567.040000pt;}
.x4b_c00009{left:576.000000pt;}
.x18_c00009{left:585.600000pt;}
.x20_c00009{left:595.840000pt;}
.x4c_c00009{left:597.120000pt;}
.x52_c00009{left:606.080000pt;}
.x46_c00009{left:614.400000pt;}
.xb_c00009{left:615.680000pt;}
.x19_c00009{left:624.640000pt;}
.x3c_c00009{left:635.520000pt;}
.xc_c00009{left:645.120000pt;}
.x47_c00009{left:652.800000pt;}
.x1a_c00009{left:654.080000pt;}
.x35_c00009{left:663.680000pt;}
.x1_c00009{left:666.240000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_cc3e456dc863720d37242f82.woff2')format("woff");}.ff1_c00010{font-family:ff1_c00010;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3d_c00010{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m7_c00010{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m53_c00010{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00010{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00010{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00010{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00010{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m10_c00010{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00010{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2_c00010{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m32_c00010{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00010{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m9_c00010{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m33_c00010{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);}
.m25_c00010{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m36_c00010{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m0_c00010{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00010{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);}
.m1e_c00010{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m14_c00010{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.ma_c00010{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m55_c00010{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);}
.m2c_c00010{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);}
.m34_c00010{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00010{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m27_c00010{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);}
.m40_c00010{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.md_c00010{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);}
.m44_c00010{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00010{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);}
.m39_c00010{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m13_c00010{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);}
.m12_c00010{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_c00010{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m15_c00010{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m4_c00010{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.me_c00010{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00010{transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);}
.m1_c00010{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);}
.m23_c00010{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m47_c00010{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m11_c00010{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00010{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);}
.m16_c00010{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00010{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m54_c00010{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);}
.m22_c00010{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);}
.m3b_c00010{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m48_c00010{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.mb_c00010{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m8_c00010{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m3_c00010{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);}
.m42_c00010{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m43_c00010{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m26_c00010{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00010{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);}
.m31_c00010{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m29_c00010{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m52_c00010{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.mc_c00010{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m56_c00010{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);}
.mf_c00010{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);}
.m28_c00010{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m6_c00010{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00010{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m24_c00010{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);}
.m38_c00010{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00010{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m17_c00010{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);}
.m57_c00010{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m35_c00010{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00010{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m41_c00010{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);}
.m30_c00010{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);}
.m4a_c00010{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m46_c00010{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m18_c00010{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m51_c00010{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m37_c00010{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00010{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);}
.m5_c00010{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m50_c00010{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);}
.m1b_c00010{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m20_c00010{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00010{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m45_c00010{transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);}
.m49_c00010{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.m21_c00010{transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);}
.v1_c00010{vertical-align:-8.640000px;}
.v0_c00010{vertical-align:0.000000px;}
.ls0_c00010{letter-spacing:0.000000px;}
.sc__c00010{text-shadow:none;}
.sc0_c00010{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00010{-webkit-text-stroke:0px transparent;}
.sc0_c00010{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00010{word-spacing:-6.208800px;}
.ws1_c00010{word-spacing:0.000000px;}
.fc0_c00010{color:transparent;}
.fs3_c00010{font-size:34.560000px;}
.fs9_c00010{font-size:37.440000px;}
.fsc_c00010{font-size:40.320000px;}
.fsa_c00010{font-size:43.200000px;}
.fs1_c00010{font-size:46.080000px;}
.fs8_c00010{font-size:48.960000px;}
.fs5_c00010{font-size:51.840000px;}
.fsd_c00010{font-size:54.720000px;}
.fs4_c00010{font-size:57.600000px;}
.fs2_c00010{font-size:60.480000px;}
.fs7_c00010{font-size:63.360000px;}
.fsb_c00010{font-size:66.240000px;}
.fs0_c00010{font-size:69.120000px;}
.fs6_c00010{font-size:72.000000px;}
.y0_c00010{bottom:0.000000px;}
.y5b_c00010{bottom:59.760000px;}
.y5c_c00010{bottom:62.640000px;}
.y5a_c00010{bottom:63.360000px;}
.y54_c00010{bottom:102.240000px;}
.y57_c00010{bottom:102.960000px;}
.y58_c00010{bottom:103.680000px;}
.y59_c00010{bottom:104.400000px;}
.y55_c00010{bottom:105.120000px;}
.y56_c00010{bottom:105.840000px;}
.y51_c00010{bottom:145.440000px;}
.y4f_c00010{bottom:146.160000px;}
.y53_c00010{bottom:146.880000px;}
.y50_c00010{bottom:147.600000px;}
.y52_c00010{bottom:148.320000px;}
.y4e_c00010{bottom:187.200000px;}
.y4a_c00010{bottom:187.920000px;}
.y49_c00010{bottom:188.640000px;}
.y4b_c00010{bottom:190.080000px;}
.y4c_c00010{bottom:190.800000px;}
.y4d_c00010{bottom:191.520000px;}
.y48_c00010{bottom:230.400000px;}
.y46_c00010{bottom:231.120000px;}
.y47_c00010{bottom:233.280000px;}
.y44_c00010{bottom:273.600000px;}
.y45_c00010{bottom:275.760000px;}
.y43_c00010{bottom:276.480000px;}
.y40_c00010{bottom:326.880000px;}
.y42_c00010{bottom:328.320000px;}
.y41_c00010{bottom:329.040000px;}
.y3f_c00010{bottom:369.360000px;}
.y3e_c00010{bottom:371.520000px;}
.y3d_c00010{bottom:372.240000px;}
.y3c_c00010{bottom:372.960000px;}
.y3b_c00010{bottom:411.840000px;}
.y3a_c00010{bottom:414.720000px;}
.y39_c00010{bottom:415.440000px;}
.y38_c00010{bottom:455.040000px;}
.y36_c00010{bottom:456.480000px;}
.y37_c00010{bottom:457.200000px;}
.y35_c00010{bottom:457.920000px;}
.y34_c00010{bottom:497.520000px;}
.y33_c00010{bottom:498.240000px;}
.y31_c00010{bottom:499.680000px;}
.y30_c00010{bottom:500.400000px;}
.y32_c00010{bottom:501.120000px;}
.y2e_c00010{bottom:540.720000px;}
.y2d_c00010{bottom:542.160000px;}
.y2c_c00010{bottom:542.880000px;}
.y2f_c00010{bottom:543.600000px;}
.y28_c00010{bottom:594.000000px;}
.y2b_c00010{bottom:595.440000px;}
.y2a_c00010{bottom:596.160000px;}
.y29_c00010{bottom:596.880000px;}
.y25_c00010{bottom:635.760000px;}
.y27_c00010{bottom:636.480000px;}
.y22_c00010{bottom:637.200000px;}
.y26_c00010{bottom:638.640000px;}
.y23_c00010{bottom:639.360000px;}
.y24_c00010{bottom:640.080000px;}
.y1e_c00010{bottom:679.680000px;}
.y21_c00010{bottom:681.120000px;}
.y20_c00010{bottom:681.840000px;}
.y1f_c00010{bottom:682.560000px;}
.y1d_c00010{bottom:722.160000px;}
.y1b_c00010{bottom:724.320000px;}
.y1c_c00010{bottom:725.040000px;}
.y17_c00010{bottom:764.640000px;}
.y1a_c00010{bottom:766.080000px;}
.y19_c00010{bottom:766.800000px;}
.y18_c00010{bottom:767.520000px;}
.y16_c00010{bottom:807.120000px;}
.y14_c00010{bottom:807.840000px;}
.y13_c00010{bottom:810.000000px;}
.y15_c00010{bottom:810.720000px;}
.y11_c00010{bottom:850.320000px;}
.y12_c00010{bottom:852.480000px;}
.y10_c00010{bottom:853.200000px;}
.yc_c00010{bottom:892.800000px;}
.yd_c00010{bottom:893.520000px;}
.ye_c00010{bottom:894.240000px;}
.yf_c00010{bottom:895.680000px;}
.y8_c00010{bottom:935.280000px;}
.yb_c00010{bottom:936.720000px;}
.y9_c00010{bottom:938.160000px;}
.ya_c00010{bottom:938.880000px;}
.y7_c00010{bottom:977.760000px;}
.y2_c00010{bottom:978.480000px;}
.y3_c00010{bottom:979.200000px;}
.y5_c00010{bottom:981.360000px;}
.y6_c00010{bottom:982.080000px;}
.y4_c00010{bottom:982.800000px;}
.y1_c00010{bottom:1095.840000px;}
.h5_c00010{height:31.100625px;}
.hb_c00010{height:33.692344px;}
.he_c00010{height:36.284062px;}
.hc_c00010{height:38.875781px;}
.h3_c00010{height:41.467500px;}
.ha_c00010{height:44.059219px;}
.h7_c00010{height:46.650937px;}
.hf_c00010{height:49.242656px;}
.h6_c00010{height:51.834375px;}
.h4_c00010{height:54.426094px;}
.h9_c00010{height:57.017812px;}
.hd_c00010{height:59.609531px;}
.h2_c00010{height:62.201250px;}
.h8_c00010{height:64.792969px;}
.h1_c00010{height:1161.750000px;}
.h0_c00010{height:1162.080000px;}
.w0_c00010{width:828.000000px;}
.x0_c00010{left:0.000000px;}
.x2b_c00010{left:101.520000px;}
.x2_c00010{left:103.680000px;}
.x1b_c00010{left:105.840000px;}
.x30_c00010{left:113.760000px;}
.x3f_c00010{left:135.360000px;}
.x3b_c00010{left:144.720000px;}
.x3_c00010{left:146.880000px;}
.x46_c00010{left:156.240000px;}
.x44_c00010{left:157.680000px;}
.x56_c00010{left:167.040000px;}
.xb_c00010{left:179.280000px;}
.x36_c00010{left:189.360000px;}
.x45_c00010{left:199.440000px;}
.x22_c00010{left:200.880000px;}
.x4a_c00010{left:210.240000px;}
.xc_c00010{left:211.680000px;}
.x37_c00010{left:221.760000px;}
.x5a_c00010{left:231.120000px;}
.x4f_c00010{left:232.560000px;}
.x4b_c00010{left:241.920000px;}
.x23_c00010{left:244.080000px;}
.x1c_c00010{left:254.880000px;}
.x16_c00010{left:265.680000px;}
.x38_c00010{left:276.480000px;}
.x4_c00010{left:277.920000px;}
.x40_c00010{left:285.840000px;}
.xd_c00010{left:287.280000px;}
.x31_c00010{left:296.640000px;}
.x5_c00010{left:298.080000px;}
.x35_c00010{left:308.160000px;}
.x59_c00010{left:317.520000px;}
.x29_c00010{left:319.680000px;}
.x2c_c00010{left:329.760000px;}
.x52_c00010{left:339.120000px;}
.x2a_c00010{left:340.560000px;}
.xe_c00010{left:352.080000px;}
.x50_c00010{left:360.720000px;}
.x49_c00010{left:362.160000px;}
.xf_c00010{left:373.680000px;}
.x53_c00010{left:383.040000px;}
.x1d_c00010{left:384.480000px;}
.x5b_c00010{left:393.120000px;}
.x24_c00010{left:394.560000px;}
.x4c_c00010{left:404.640000px;}
.x10_c00010{left:406.080000px;}
.x54_c00010{left:414.720000px;}
.x17_c00010{left:416.880000px;}
.x32_c00010{left:426.960000px;}
.x47_c00010{left:437.040000px;}
.x6_c00010{left:449.280000px;}
.x33_c00010{left:458.640000px;}
.x2d_c00010{left:460.080000px;}
.x41_c00010{left:469.440000px;}
.x18_c00010{left:470.880000px;}
.x11_c00010{left:480.960000px;}
.x3a_c00010{left:491.040000px;}
.x7_c00010{left:492.480000px;}
.x39_c00010{left:501.840000px;}
.x1e_c00010{left:503.280000px;}
.x12_c00010{left:523.440000px;}
.x8_c00010{left:524.880000px;}
.x3c_c00010{left:534.240000px;}
.x1f_c00010{left:535.680000px;}
.x57_c00010{left:545.760000px;}
.x5c_c00010{left:555.120000px;}
.x25_c00010{left:556.560000px;}
.x4d_c00010{left:565.200000px;}
.x19_c00010{left:567.360000px;}
.x2e_c00010{left:578.160000px;}
.x51_c00010{left:587.520000px;}
.x26_c00010{left:589.680000px;}
.x55_c00010{left:599.040000px;}
.x13_c00010{left:601.200000px;}
.x3d_c00010{left:611.280000px;}
.x2f_c00010{left:621.360000px;}
.x9_c00010{left:632.880000px;}
.x5d_c00010{left:641.520000px;}
.x1a_c00010{left:642.960000px;}
.x3e_c00010{left:652.320000px;}
.x20_c00010{left:654.480000px;}
.xa_c00010{left:665.280000px;}
.x58_c00010{left:673.920000px;}
.x27_c00010{left:676.080000px;}
.x4e_c00010{left:685.440000px;}
.x34_c00010{left:686.880000px;}
.x42_c00010{left:695.520000px;}
.x14_c00010{left:697.680000px;}
.x48_c00010{left:707.040000px;}
.x28_c00010{left:719.280000px;}
.x43_c00010{left:729.360000px;}
.x15_c00010{left:730.800000px;}
.x21_c00010{left:751.680000px;}
.x1_c00010{left:762.480000px;}
@media print{
.v1_c00010{vertical-align:-7.680000pt;}
.v0_c00010{vertical-align:0.000000pt;}
.ls0_c00010{letter-spacing:0.000000pt;}
.ws0_c00010{word-spacing:-5.518933pt;}
.ws1_c00010{word-spacing:0.000000pt;}
.fs3_c00010{font-size:30.720000pt;}
.fs9_c00010{font-size:33.280000pt;}
.fsc_c00010{font-size:35.840000pt;}
.fsa_c00010{font-size:38.400000pt;}
.fs1_c00010{font-size:40.960000pt;}
.fs8_c00010{font-size:43.520000pt;}
.fs5_c00010{font-size:46.080000pt;}
.fsd_c00010{font-size:48.640000pt;}
.fs4_c00010{font-size:51.200000pt;}
.fs2_c00010{font-size:53.760000pt;}
.fs7_c00010{font-size:56.320000pt;}
.fsb_c00010{font-size:58.880000pt;}
.fs0_c00010{font-size:61.440000pt;}
.fs6_c00010{font-size:64.000000pt;}
.y0_c00010{bottom:0.000000pt;}
.y5b_c00010{bottom:53.120000pt;}
.y5c_c00010{bottom:55.680000pt;}
.y5a_c00010{bottom:56.320000pt;}
.y54_c00010{bottom:90.880000pt;}
.y57_c00010{bottom:91.520000pt;}
.y58_c00010{bottom:92.160000pt;}
.y59_c00010{bottom:92.800000pt;}
.y55_c00010{bottom:93.440000pt;}
.y56_c00010{bottom:94.080000pt;}
.y51_c00010{bottom:129.280000pt;}
.y4f_c00010{bottom:129.920000pt;}
.y53_c00010{bottom:130.560000pt;}
.y50_c00010{bottom:131.200000pt;}
.y52_c00010{bottom:131.840000pt;}
.y4e_c00010{bottom:166.400000pt;}
.y4a_c00010{bottom:167.040000pt;}
.y49_c00010{bottom:167.680000pt;}
.y4b_c00010{bottom:168.960000pt;}
.y4c_c00010{bottom:169.600000pt;}
.y4d_c00010{bottom:170.240000pt;}
.y48_c00010{bottom:204.800000pt;}
.y46_c00010{bottom:205.440000pt;}
.y47_c00010{bottom:207.360000pt;}
.y44_c00010{bottom:243.200000pt;}
.y45_c00010{bottom:245.120000pt;}
.y43_c00010{bottom:245.760000pt;}
.y40_c00010{bottom:290.560000pt;}
.y42_c00010{bottom:291.840000pt;}
.y41_c00010{bottom:292.480000pt;}
.y3f_c00010{bottom:328.320000pt;}
.y3e_c00010{bottom:330.240000pt;}
.y3d_c00010{bottom:330.880000pt;}
.y3c_c00010{bottom:331.520000pt;}
.y3b_c00010{bottom:366.080000pt;}
.y3a_c00010{bottom:368.640000pt;}
.y39_c00010{bottom:369.280000pt;}
.y38_c00010{bottom:404.480000pt;}
.y36_c00010{bottom:405.760000pt;}
.y37_c00010{bottom:406.400000pt;}
.y35_c00010{bottom:407.040000pt;}
.y34_c00010{bottom:442.240000pt;}
.y33_c00010{bottom:442.880000pt;}
.y31_c00010{bottom:444.160000pt;}
.y30_c00010{bottom:444.800000pt;}
.y32_c00010{bottom:445.440000pt;}
.y2e_c00010{bottom:480.640000pt;}
.y2d_c00010{bottom:481.920000pt;}
.y2c_c00010{bottom:482.560000pt;}
.y2f_c00010{bottom:483.200000pt;}
.y28_c00010{bottom:528.000000pt;}
.y2b_c00010{bottom:529.280000pt;}
.y2a_c00010{bottom:529.920000pt;}
.y29_c00010{bottom:530.560000pt;}
.y25_c00010{bottom:565.120000pt;}
.y27_c00010{bottom:565.760000pt;}
.y22_c00010{bottom:566.400000pt;}
.y26_c00010{bottom:567.680000pt;}
.y23_c00010{bottom:568.320000pt;}
.y24_c00010{bottom:568.960000pt;}
.y1e_c00010{bottom:604.160000pt;}
.y21_c00010{bottom:605.440000pt;}
.y20_c00010{bottom:606.080000pt;}
.y1f_c00010{bottom:606.720000pt;}
.y1d_c00010{bottom:641.920000pt;}
.y1b_c00010{bottom:643.840000pt;}
.y1c_c00010{bottom:644.480000pt;}
.y17_c00010{bottom:679.680000pt;}
.y1a_c00010{bottom:680.960000pt;}
.y19_c00010{bottom:681.600000pt;}
.y18_c00010{bottom:682.240000pt;}
.y16_c00010{bottom:717.440000pt;}
.y14_c00010{bottom:718.080000pt;}
.y13_c00010{bottom:720.000000pt;}
.y15_c00010{bottom:720.640000pt;}
.y11_c00010{bottom:755.840000pt;}
.y12_c00010{bottom:757.760000pt;}
.y10_c00010{bottom:758.400000pt;}
.yc_c00010{bottom:793.600000pt;}
.yd_c00010{bottom:794.240000pt;}
.ye_c00010{bottom:794.880000pt;}
.yf_c00010{bottom:796.160000pt;}
.y8_c00010{bottom:831.360000pt;}
.yb_c00010{bottom:832.640000pt;}
.y9_c00010{bottom:833.920000pt;}
.ya_c00010{bottom:834.560000pt;}
.y7_c00010{bottom:869.120000pt;}
.y2_c00010{bottom:869.760000pt;}
.y3_c00010{bottom:870.400000pt;}
.y5_c00010{bottom:872.320000pt;}
.y6_c00010{bottom:872.960000pt;}
.y4_c00010{bottom:873.600000pt;}
.y1_c00010{bottom:974.080000pt;}
.h5_c00010{height:27.645000pt;}
.hb_c00010{height:29.948750pt;}
.he_c00010{height:32.252500pt;}
.hc_c00010{height:34.556250pt;}
.h3_c00010{height:36.860000pt;}
.ha_c00010{height:39.163750pt;}
.h7_c00010{height:41.467500pt;}
.hf_c00010{height:43.771250pt;}
.h6_c00010{height:46.075000pt;}
.h4_c00010{height:48.378750pt;}
.h9_c00010{height:50.682500pt;}
.hd_c00010{height:52.986250pt;}
.h2_c00010{height:55.290000pt;}
.h8_c00010{height:57.593750pt;}
.h1_c00010{height:1032.666667pt;}
.h0_c00010{height:1032.960000pt;}
.w0_c00010{width:736.000000pt;}
.x0_c00010{left:0.000000pt;}
.x2b_c00010{left:90.240000pt;}
.x2_c00010{left:92.160000pt;}
.x1b_c00010{left:94.080000pt;}
.x30_c00010{left:101.120000pt;}
.x3f_c00010{left:120.320000pt;}
.x3b_c00010{left:128.640000pt;}
.x3_c00010{left:130.560000pt;}
.x46_c00010{left:138.880000pt;}
.x44_c00010{left:140.160000pt;}
.x56_c00010{left:148.480000pt;}
.xb_c00010{left:159.360000pt;}
.x36_c00010{left:168.320000pt;}
.x45_c00010{left:177.280000pt;}
.x22_c00010{left:178.560000pt;}
.x4a_c00010{left:186.880000pt;}
.xc_c00010{left:188.160000pt;}
.x37_c00010{left:197.120000pt;}
.x5a_c00010{left:205.440000pt;}
.x4f_c00010{left:206.720000pt;}
.x4b_c00010{left:215.040000pt;}
.x23_c00010{left:216.960000pt;}
.x1c_c00010{left:226.560000pt;}
.x16_c00010{left:236.160000pt;}
.x38_c00010{left:245.760000pt;}
.x4_c00010{left:247.040000pt;}
.x40_c00010{left:254.080000pt;}
.xd_c00010{left:255.360000pt;}
.x31_c00010{left:263.680000pt;}
.x5_c00010{left:264.960000pt;}
.x35_c00010{left:273.920000pt;}
.x59_c00010{left:282.240000pt;}
.x29_c00010{left:284.160000pt;}
.x2c_c00010{left:293.120000pt;}
.x52_c00010{left:301.440000pt;}
.x2a_c00010{left:302.720000pt;}
.xe_c00010{left:312.960000pt;}
.x50_c00010{left:320.640000pt;}
.x49_c00010{left:321.920000pt;}
.xf_c00010{left:332.160000pt;}
.x53_c00010{left:340.480000pt;}
.x1d_c00010{left:341.760000pt;}
.x5b_c00010{left:349.440000pt;}
.x24_c00010{left:350.720000pt;}
.x4c_c00010{left:359.680000pt;}
.x10_c00010{left:360.960000pt;}
.x54_c00010{left:368.640000pt;}
.x17_c00010{left:370.560000pt;}
.x32_c00010{left:379.520000pt;}
.x47_c00010{left:388.480000pt;}
.x6_c00010{left:399.360000pt;}
.x33_c00010{left:407.680000pt;}
.x2d_c00010{left:408.960000pt;}
.x41_c00010{left:417.280000pt;}
.x18_c00010{left:418.560000pt;}
.x11_c00010{left:427.520000pt;}
.x3a_c00010{left:436.480000pt;}
.x7_c00010{left:437.760000pt;}
.x39_c00010{left:446.080000pt;}
.x1e_c00010{left:447.360000pt;}
.x12_c00010{left:465.280000pt;}
.x8_c00010{left:466.560000pt;}
.x3c_c00010{left:474.880000pt;}
.x1f_c00010{left:476.160000pt;}
.x57_c00010{left:485.120000pt;}
.x5c_c00010{left:493.440000pt;}
.x25_c00010{left:494.720000pt;}
.x4d_c00010{left:502.400000pt;}
.x19_c00010{left:504.320000pt;}
.x2e_c00010{left:513.920000pt;}
.x51_c00010{left:522.240000pt;}
.x26_c00010{left:524.160000pt;}
.x55_c00010{left:532.480000pt;}
.x13_c00010{left:534.400000pt;}
.x3d_c00010{left:543.360000pt;}
.x2f_c00010{left:552.320000pt;}
.x9_c00010{left:562.560000pt;}
.x5d_c00010{left:570.240000pt;}
.x1a_c00010{left:571.520000pt;}
.x3e_c00010{left:579.840000pt;}
.x20_c00010{left:581.760000pt;}
.xa_c00010{left:591.360000pt;}
.x58_c00010{left:599.040000pt;}
.x27_c00010{left:600.960000pt;}
.x4e_c00010{left:609.280000pt;}
.x34_c00010{left:610.560000pt;}
.x42_c00010{left:618.240000pt;}
.x14_c00010{left:620.160000pt;}
.x48_c00010{left:628.480000pt;}
.x28_c00010{left:639.360000pt;}
.x43_c00010{left:648.320000pt;}
.x15_c00010{left:649.600000pt;}
.x21_c00010{left:668.160000pt;}
.x1_c00010{left:677.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_bd37acc9cd7e46fa1038b28e.woff2')format("woff");}.ff1_c00011{font-family:ff1_c00011;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00011{transform:matrix(0.149875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149875,0.000000,0.000000,0.250000,0,0);}
.m0_c00011{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m4e_c00011{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);}
.m40_c00011{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m11_c00011{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00011{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m35_c00011{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m49_c00011{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00011{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m33_c00011{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m7_c00011{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m59_c00011{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);}
.m3a_c00011{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m43_c00011{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);}
.m46_c00011{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m2_c00011{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);}
.m3e_c00011{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m22_c00011{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00011{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.mb_c00011{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);}
.m12_c00011{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);}
.m4a_c00011{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);}
.m2e_c00011{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);}
.m44_c00011{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m52_c00011{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);}
.m2b_c00011{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m31_c00011{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);}
.m27_c00011{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);}
.m9_c00011{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m18_c00011{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00011{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m41_c00011{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00011{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);}
.m8_c00011{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m6_c00011{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);}
.m25_c00011{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m24_c00011{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);}
.m50_c00011{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00011{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00011{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m37_c00011{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);}
.m2c_c00011{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m5_c00011{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);}
.m48_c00011{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00011{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);}
.m4d_c00011{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m39_c00011{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m13_c00011{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m19_c00011{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.mf_c00011{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);}
.m53_c00011{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m20_c00011{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m4_c00011{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);}
.m34_c00011{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00011{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.md_c00011{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m14_c00011{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m15_c00011{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);}
.m3_c00011{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);}
.m32_c00011{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m23_c00011{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m58_c00011{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00011{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);}
.m10_c00011{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00011{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.me_c00011{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m38_c00011{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);}
.m45_c00011{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.ma_c00011{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m51_c00011{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m54_c00011{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m42_c00011{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);}
.m16_c00011{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00011{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);}
.m1a_c00011{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);}
.m47_c00011{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m29_c00011{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m36_c00011{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00011{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00011{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.mc_c00011{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m21_c00011{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);}
.m3d_c00011{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);}
.m26_c00011{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00011{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m17_c00011{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m56_c00011{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m57_c00011{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m28_c00011{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m30_c00011{transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);}
.m55_c00011{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.v1_c00011{vertical-align:-8.640000px;}
.v0_c00011{vertical-align:0.000000px;}
.v2_c00011{vertical-align:5.760000px;}
.v3_c00011{vertical-align:11.520000px;}
.ls0_c00011{letter-spacing:0.000000px;}
.sc__c00011{text-shadow:none;}
.sc0_c00011{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00011{-webkit-text-stroke:0px transparent;}
.sc0_c00011{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00011{word-spacing:-6.783600px;}
.ws2_c00011{word-spacing:-5.743680px;}
.ws1_c00011{word-spacing:-5.127360px;}
.ws3_c00011{word-spacing:0.000000px;}
.fc0_c00011{color:transparent;}
.fs5_c00011{font-size:34.560000px;}
.fs8_c00011{font-size:37.440000px;}
.fsb_c00011{font-size:40.320000px;}
.fsc_c00011{font-size:43.200000px;}
.fs7_c00011{font-size:46.080000px;}
.fs4_c00011{font-size:48.960000px;}
.fs1_c00011{font-size:51.840000px;}
.fs3_c00011{font-size:54.720000px;}
.fs6_c00011{font-size:57.600000px;}
.fs2_c00011{font-size:60.480000px;}
.fsa_c00011{font-size:63.360000px;}
.fs9_c00011{font-size:66.240000px;}
.fs0_c00011{font-size:69.120000px;}
.y0_c00011{bottom:0.000000px;}
.y61_c00011{bottom:33.840000px;}
.y5f_c00011{bottom:34.560000px;}
.y63_c00011{bottom:35.280000px;}
.y60_c00011{bottom:36.000000px;}
.y62_c00011{bottom:36.720000px;}
.y5e_c00011{bottom:74.160000px;}
.y5d_c00011{bottom:74.880000px;}
.y5c_c00011{bottom:75.600000px;}
.y5a_c00011{bottom:76.320000px;}
.y5b_c00011{bottom:77.760000px;}
.y59_c00011{bottom:78.480000px;}
.y56_c00011{bottom:128.880000px;}
.y58_c00011{bottom:129.600000px;}
.y57_c00011{bottom:131.760000px;}
.y55_c00011{bottom:132.480000px;}
.y54_c00011{bottom:133.200000px;}
.y52_c00011{bottom:170.640000px;}
.y53_c00011{bottom:171.360000px;}
.y51_c00011{bottom:174.240000px;}
.y50_c00011{bottom:174.960000px;}
.y4f_c00011{bottom:175.680000px;}
.y4e_c00011{bottom:212.400000px;}
.y4a_c00011{bottom:213.840000px;}
.y4d_c00011{bottom:214.560000px;}
.y4c_c00011{bottom:216.720000px;}
.y4b_c00011{bottom:217.440000px;}
.y48_c00011{bottom:257.040000px;}
.y49_c00011{bottom:259.200000px;}
.y47_c00011{bottom:259.920000px;}
.y46_c00011{bottom:260.640000px;}
.y45_c00011{bottom:298.800000px;}
.y44_c00011{bottom:299.520000px;}
.y42_c00011{bottom:300.240000px;}
.y43_c00011{bottom:302.400000px;}
.y3f_c00011{bottom:342.000000px;}
.y40_c00011{bottom:342.720000px;}
.y41_c00011{bottom:344.880000px;}
.y3e_c00011{bottom:345.600000px;}
.y3d_c00011{bottom:346.320000px;}
.y3c_c00011{bottom:384.480000px;}
.y39_c00011{bottom:385.200000px;}
.y3b_c00011{bottom:386.640000px;}
.y3a_c00011{bottom:387.360000px;}
.y38_c00011{bottom:388.080000px;}
.y35_c00011{bottom:427.680000px;}
.y36_c00011{bottom:428.400000px;}
.y34_c00011{bottom:429.840000px;}
.y37_c00011{bottom:430.560000px;}
.y32_c00011{bottom:473.040000px;}
.y33_c00011{bottom:473.760000px;}
.y31_c00011{bottom:474.480000px;}
.y2e_c00011{bottom:513.360000px;}
.y2f_c00011{bottom:514.080000px;}
.y30_c00011{bottom:516.240000px;}
.y2b_c00011{bottom:556.560000px;}
.y2d_c00011{bottom:558.720000px;}
.y2c_c00011{bottom:559.440000px;}
.y27_c00011{bottom:598.320000px;}
.y28_c00011{bottom:599.040000px;}
.y29_c00011{bottom:599.760000px;}
.y2a_c00011{bottom:601.200000px;}
.y25_c00011{bottom:601.920000px;}
.y26_c00011{bottom:602.640000px;}
.y22_c00011{bottom:642.240000px;}
.y24_c00011{bottom:644.400000px;}
.y23_c00011{bottom:645.120000px;}
.y1e_c00011{bottom:684.720000px;}
.y20_c00011{bottom:685.440000px;}
.y21_c00011{bottom:686.880000px;}
.y1f_c00011{bottom:687.600000px;}
.y1d_c00011{bottom:726.480000px;}
.y1c_c00011{bottom:727.200000px;}
.y1b_c00011{bottom:727.920000px;}
.y1a_c00011{bottom:730.080000px;}
.y19_c00011{bottom:730.800000px;}
.y18_c00011{bottom:770.400000px;}
.y15_c00011{bottom:771.120000px;}
.y17_c00011{bottom:772.560000px;}
.y16_c00011{bottom:773.280000px;}
.y10_c00011{bottom:812.160000px;}
.y14_c00011{bottom:812.880000px;}
.y12_c00011{bottom:813.600000px;}
.yf_c00011{bottom:815.040000px;}
.y11_c00011{bottom:815.760000px;}
.y13_c00011{bottom:816.480000px;}
.yd_c00011{bottom:856.800000px;}
.yc_c00011{bottom:858.240000px;}
.ye_c00011{bottom:858.960000px;}
.y9_c00011{bottom:908.640000px;}
.ya_c00011{bottom:909.360000px;}
.y8_c00011{bottom:911.520000px;}
.yb_c00011{bottom:912.240000px;}
.y5_c00011{bottom:954.000000px;}
.y7_c00011{bottom:954.720000px;}
.y6_c00011{bottom:955.440000px;}
.y2_c00011{bottom:996.480000px;}
.y3_c00011{bottom:997.200000px;}
.y4_c00011{bottom:997.920000px;}
.y1_c00011{bottom:1088.640000px;}
.h7_c00011{height:31.100625px;}
.ha_c00011{height:33.692344px;}
.hd_c00011{height:36.284062px;}
.he_c00011{height:38.875781px;}
.h9_c00011{height:41.467500px;}
.h6_c00011{height:44.059219px;}
.h3_c00011{height:46.650937px;}
.h5_c00011{height:49.242656px;}
.h8_c00011{height:51.834375px;}
.h4_c00011{height:54.426094px;}
.hc_c00011{height:57.017812px;}
.hb_c00011{height:59.609531px;}
.h2_c00011{height:62.201250px;}
.h0_c00011{height:1159.920000px;}
.h1_c00011{height:1160.250000px;}
.w1_c00011{width:825.750000px;}
.w0_c00011{width:825.840000px;}
.x0_c00011{left:0.000000px;}
.x3a_c00011{left:100.800000px;}
.x3_c00011{left:102.240000px;}
.xc_c00011{left:103.680000px;}
.x51_c00011{left:123.120000px;}
.x47_c00011{left:133.200000px;}
.x4_c00011{left:134.640000px;}
.x2b_c00011{left:145.440000px;}
.x48_c00011{left:155.520000px;}
.x4a_c00011{left:164.880000px;}
.xd_c00011{left:167.760000px;}
.x5_c00011{left:177.120000px;}
.x2f_c00011{left:179.280000px;}
.x4d_c00011{left:187.200000px;}
.x14_c00011{left:188.640000px;}
.xe_c00011{left:199.440000px;}
.x15_c00011{left:210.240000px;}
.x3b_c00011{left:230.400000px;}
.xf_c00011{left:231.840000px;}
.x55_c00011{left:239.760000px;}
.x1b_c00011{left:242.640000px;}
.x4f_c00011{left:252.000000px;}
.x40_c00011{left:253.440000px;}
.x6_c00011{left:254.880000px;}
.x43_c00011{left:262.800000px;}
.x26_c00011{left:264.960000px;}
.x3e_c00011{left:275.040000px;}
.x1c_c00011{left:285.840000px;}
.x30_c00011{left:295.920000px;}
.x16_c00011{left:307.440000px;}
.x37_c00011{left:318.960000px;}
.x52_c00011{left:326.880000px;}
.x49_c00011{left:328.320000px;}
.x41_c00011{left:329.760000px;}
.x1d_c00011{left:339.840000px;}
.x17_c00011{left:350.640000px;}
.x7_c00011{left:360.720000px;}
.x58_c00011{left:370.080000px;}
.x10_c00011{left:372.960000px;}
.x45_c00011{left:382.320000px;}
.x2c_c00011{left:383.760000px;}
.x53_c00011{left:391.680000px;}
.x4b_c00011{left:393.120000px;}
.x1e_c00011{left:394.560000px;}
.x34_c00011{left:414.720000px;}
.x18_c00011{left:416.160000px;}
.x38_c00011{left:426.240000px;}
.x21_c00011{left:437.040000px;}
.x59_c00011{left:444.960000px;}
.x4e_c00011{left:447.120000px;}
.x31_c00011{left:457.920000px;}
.x8_c00011{left:460.080000px;}
.x50_c00011{left:468.000000px;}
.x27_c00011{left:469.440000px;}
.x22_c00011{left:480.240000px;}
.x5a_c00011{left:488.160000px;}
.x3c_c00011{left:490.320000px;}
.x2d_c00011{left:501.120000px;}
.x28_c00011{left:502.560000px;}
.x54_c00011{left:510.480000px;}
.x35_c00011{left:511.920000px;}
.x11_c00011{left:522.720000px;}
.x9_c00011{left:524.160000px;}
.x3d_c00011{left:533.520000px;}
.x1f_c00011{left:545.040000px;}
.x23_c00011{left:555.120000px;}
.x56_c00011{left:564.480000px;}
.x19_c00011{left:567.360000px;}
.x4c_c00011{left:576.720000px;}
.x32_c00011{left:578.160000px;}
.x12_c00011{left:588.240000px;}
.x24_c00011{left:599.040000px;}
.x57_c00011{left:608.400000px;}
.x1a_c00011{left:609.840000px;}
.x46_c00011{left:620.640000px;}
.x13_c00011{left:630.720000px;}
.xa_c00011{left:632.880000px;}
.x44_c00011{left:642.240000px;}
.x42_c00011{left:652.320000px;}
.x25_c00011{left:663.120000px;}
.x2e_c00011{left:673.920000px;}
.x36_c00011{left:675.360000px;}
.x29_c00011{left:684.720000px;}
.x39_c00011{left:696.240000px;}
.x20_c00011{left:707.040000px;}
.x33_c00011{left:717.120000px;}
.xb_c00011{left:719.280000px;}
.x3f_c00011{left:728.640000px;}
.x2a_c00011{left:730.080000px;}
.x1_c00011{left:767.520000px;}
.x2_c00011{left:786.240000px;}
@media print{
.v1_c00011{vertical-align:-7.680000pt;}
.v0_c00011{vertical-align:0.000000pt;}
.v2_c00011{vertical-align:5.120000pt;}
.v3_c00011{vertical-align:10.240000pt;}
.ls0_c00011{letter-spacing:0.000000pt;}
.ws0_c00011{word-spacing:-6.029867pt;}
.ws2_c00011{word-spacing:-5.105493pt;}
.ws1_c00011{word-spacing:-4.557653pt;}
.ws3_c00011{word-spacing:0.000000pt;}
.fs5_c00011{font-size:30.720000pt;}
.fs8_c00011{font-size:33.280000pt;}
.fsb_c00011{font-size:35.840000pt;}
.fsc_c00011{font-size:38.400000pt;}
.fs7_c00011{font-size:40.960000pt;}
.fs4_c00011{font-size:43.520000pt;}
.fs1_c00011{font-size:46.080000pt;}
.fs3_c00011{font-size:48.640000pt;}
.fs6_c00011{font-size:51.200000pt;}
.fs2_c00011{font-size:53.760000pt;}
.fsa_c00011{font-size:56.320000pt;}
.fs9_c00011{font-size:58.880000pt;}
.fs0_c00011{font-size:61.440000pt;}
.y0_c00011{bottom:0.000000pt;}
.y61_c00011{bottom:30.080000pt;}
.y5f_c00011{bottom:30.720000pt;}
.y63_c00011{bottom:31.360000pt;}
.y60_c00011{bottom:32.000000pt;}
.y62_c00011{bottom:32.640000pt;}
.y5e_c00011{bottom:65.920000pt;}
.y5d_c00011{bottom:66.560000pt;}
.y5c_c00011{bottom:67.200000pt;}
.y5a_c00011{bottom:67.840000pt;}
.y5b_c00011{bottom:69.120000pt;}
.y59_c00011{bottom:69.760000pt;}
.y56_c00011{bottom:114.560000pt;}
.y58_c00011{bottom:115.200000pt;}
.y57_c00011{bottom:117.120000pt;}
.y55_c00011{bottom:117.760000pt;}
.y54_c00011{bottom:118.400000pt;}
.y52_c00011{bottom:151.680000pt;}
.y53_c00011{bottom:152.320000pt;}
.y51_c00011{bottom:154.880000pt;}
.y50_c00011{bottom:155.520000pt;}
.y4f_c00011{bottom:156.160000pt;}
.y4e_c00011{bottom:188.800000pt;}
.y4a_c00011{bottom:190.080000pt;}
.y4d_c00011{bottom:190.720000pt;}
.y4c_c00011{bottom:192.640000pt;}
.y4b_c00011{bottom:193.280000pt;}
.y48_c00011{bottom:228.480000pt;}
.y49_c00011{bottom:230.400000pt;}
.y47_c00011{bottom:231.040000pt;}
.y46_c00011{bottom:231.680000pt;}
.y45_c00011{bottom:265.600000pt;}
.y44_c00011{bottom:266.240000pt;}
.y42_c00011{bottom:266.880000pt;}
.y43_c00011{bottom:268.800000pt;}
.y3f_c00011{bottom:304.000000pt;}
.y40_c00011{bottom:304.640000pt;}
.y41_c00011{bottom:306.560000pt;}
.y3e_c00011{bottom:307.200000pt;}
.y3d_c00011{bottom:307.840000pt;}
.y3c_c00011{bottom:341.760000pt;}
.y39_c00011{bottom:342.400000pt;}
.y3b_c00011{bottom:343.680000pt;}
.y3a_c00011{bottom:344.320000pt;}
.y38_c00011{bottom:344.960000pt;}
.y35_c00011{bottom:380.160000pt;}
.y36_c00011{bottom:380.800000pt;}
.y34_c00011{bottom:382.080000pt;}
.y37_c00011{bottom:382.720000pt;}
.y32_c00011{bottom:420.480000pt;}
.y33_c00011{bottom:421.120000pt;}
.y31_c00011{bottom:421.760000pt;}
.y2e_c00011{bottom:456.320000pt;}
.y2f_c00011{bottom:456.960000pt;}
.y30_c00011{bottom:458.880000pt;}
.y2b_c00011{bottom:494.720000pt;}
.y2d_c00011{bottom:496.640000pt;}
.y2c_c00011{bottom:497.280000pt;}
.y27_c00011{bottom:531.840000pt;}
.y28_c00011{bottom:532.480000pt;}
.y29_c00011{bottom:533.120000pt;}
.y2a_c00011{bottom:534.400000pt;}
.y25_c00011{bottom:535.040000pt;}
.y26_c00011{bottom:535.680000pt;}
.y22_c00011{bottom:570.880000pt;}
.y24_c00011{bottom:572.800000pt;}
.y23_c00011{bottom:573.440000pt;}
.y1e_c00011{bottom:608.640000pt;}
.y20_c00011{bottom:609.280000pt;}
.y21_c00011{bottom:610.560000pt;}
.y1f_c00011{bottom:611.200000pt;}
.y1d_c00011{bottom:645.760000pt;}
.y1c_c00011{bottom:646.400000pt;}
.y1b_c00011{bottom:647.040000pt;}
.y1a_c00011{bottom:648.960000pt;}
.y19_c00011{bottom:649.600000pt;}
.y18_c00011{bottom:684.800000pt;}
.y15_c00011{bottom:685.440000pt;}
.y17_c00011{bottom:686.720000pt;}
.y16_c00011{bottom:687.360000pt;}
.y10_c00011{bottom:721.920000pt;}
.y14_c00011{bottom:722.560000pt;}
.y12_c00011{bottom:723.200000pt;}
.yf_c00011{bottom:724.480000pt;}
.y11_c00011{bottom:725.120000pt;}
.y13_c00011{bottom:725.760000pt;}
.yd_c00011{bottom:761.600000pt;}
.yc_c00011{bottom:762.880000pt;}
.ye_c00011{bottom:763.520000pt;}
.y9_c00011{bottom:807.680000pt;}
.ya_c00011{bottom:808.320000pt;}
.y8_c00011{bottom:810.240000pt;}
.yb_c00011{bottom:810.880000pt;}
.y5_c00011{bottom:848.000000pt;}
.y7_c00011{bottom:848.640000pt;}
.y6_c00011{bottom:849.280000pt;}
.y2_c00011{bottom:885.760000pt;}
.y3_c00011{bottom:886.400000pt;}
.y4_c00011{bottom:887.040000pt;}
.y1_c00011{bottom:967.680000pt;}
.h7_c00011{height:27.645000pt;}
.ha_c00011{height:29.948750pt;}
.hd_c00011{height:32.252500pt;}
.he_c00011{height:34.556250pt;}
.h9_c00011{height:36.860000pt;}
.h6_c00011{height:39.163750pt;}
.h3_c00011{height:41.467500pt;}
.h5_c00011{height:43.771250pt;}
.h8_c00011{height:46.075000pt;}
.h4_c00011{height:48.378750pt;}
.hc_c00011{height:50.682500pt;}
.hb_c00011{height:52.986250pt;}
.h2_c00011{height:55.290000pt;}
.h0_c00011{height:1031.040000pt;}
.h1_c00011{height:1031.333333pt;}
.w1_c00011{width:734.000000pt;}
.w0_c00011{width:734.080000pt;}
.x0_c00011{left:0.000000pt;}
.x3a_c00011{left:89.600000pt;}
.x3_c00011{left:90.880000pt;}
.xc_c00011{left:92.160000pt;}
.x51_c00011{left:109.440000pt;}
.x47_c00011{left:118.400000pt;}
.x4_c00011{left:119.680000pt;}
.x2b_c00011{left:129.280000pt;}
.x48_c00011{left:138.240000pt;}
.x4a_c00011{left:146.560000pt;}
.xd_c00011{left:149.120000pt;}
.x5_c00011{left:157.440000pt;}
.x2f_c00011{left:159.360000pt;}
.x4d_c00011{left:166.400000pt;}
.x14_c00011{left:167.680000pt;}
.xe_c00011{left:177.280000pt;}
.x15_c00011{left:186.880000pt;}
.x3b_c00011{left:204.800000pt;}
.xf_c00011{left:206.080000pt;}
.x55_c00011{left:213.120000pt;}
.x1b_c00011{left:215.680000pt;}
.x4f_c00011{left:224.000000pt;}
.x40_c00011{left:225.280000pt;}
.x6_c00011{left:226.560000pt;}
.x43_c00011{left:233.600000pt;}
.x26_c00011{left:235.520000pt;}
.x3e_c00011{left:244.480000pt;}
.x1c_c00011{left:254.080000pt;}
.x30_c00011{left:263.040000pt;}
.x16_c00011{left:273.280000pt;}
.x37_c00011{left:283.520000pt;}
.x52_c00011{left:290.560000pt;}
.x49_c00011{left:291.840000pt;}
.x41_c00011{left:293.120000pt;}
.x1d_c00011{left:302.080000pt;}
.x17_c00011{left:311.680000pt;}
.x7_c00011{left:320.640000pt;}
.x58_c00011{left:328.960000pt;}
.x10_c00011{left:331.520000pt;}
.x45_c00011{left:339.840000pt;}
.x2c_c00011{left:341.120000pt;}
.x53_c00011{left:348.160000pt;}
.x4b_c00011{left:349.440000pt;}
.x1e_c00011{left:350.720000pt;}
.x34_c00011{left:368.640000pt;}
.x18_c00011{left:369.920000pt;}
.x38_c00011{left:378.880000pt;}
.x21_c00011{left:388.480000pt;}
.x59_c00011{left:395.520000pt;}
.x4e_c00011{left:397.440000pt;}
.x31_c00011{left:407.040000pt;}
.x8_c00011{left:408.960000pt;}
.x50_c00011{left:416.000000pt;}
.x27_c00011{left:417.280000pt;}
.x22_c00011{left:426.880000pt;}
.x5a_c00011{left:433.920000pt;}
.x3c_c00011{left:435.840000pt;}
.x2d_c00011{left:445.440000pt;}
.x28_c00011{left:446.720000pt;}
.x54_c00011{left:453.760000pt;}
.x35_c00011{left:455.040000pt;}
.x11_c00011{left:464.640000pt;}
.x9_c00011{left:465.920000pt;}
.x3d_c00011{left:474.240000pt;}
.x1f_c00011{left:484.480000pt;}
.x23_c00011{left:493.440000pt;}
.x56_c00011{left:501.760000pt;}
.x19_c00011{left:504.320000pt;}
.x4c_c00011{left:512.640000pt;}
.x32_c00011{left:513.920000pt;}
.x12_c00011{left:522.880000pt;}
.x24_c00011{left:532.480000pt;}
.x57_c00011{left:540.800000pt;}
.x1a_c00011{left:542.080000pt;}
.x46_c00011{left:551.680000pt;}
.x13_c00011{left:560.640000pt;}
.xa_c00011{left:562.560000pt;}
.x44_c00011{left:570.880000pt;}
.x42_c00011{left:579.840000pt;}
.x25_c00011{left:589.440000pt;}
.x2e_c00011{left:599.040000pt;}
.x36_c00011{left:600.320000pt;}
.x29_c00011{left:608.640000pt;}
.x39_c00011{left:618.880000pt;}
.x20_c00011{left:628.480000pt;}
.x33_c00011{left:637.440000pt;}
.xb_c00011{left:639.360000pt;}
.x3f_c00011{left:647.680000pt;}
.x2a_c00011{left:648.960000pt;}
.x1_c00011{left:682.240000pt;}
.x2_c00011{left:698.880000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a215f4ea16256d1b3ca91776.woff2')format("woff");}.ff1_c00012{font-family:ff1_c00012;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m43_c00012{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);}
.m4e_c00012{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m54_c00012{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);}
.m53_c00012{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m58_c00012{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m47_c00012{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m52_c00012{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00012{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00012{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00012{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m30_c00012{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00012{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m48_c00012{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m0_c00012{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00012{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m55_c00012{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);}
.m38_c00012{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1_c00012{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m3_c00012{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m31_c00012{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.mc_c00012{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00012{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m2_c00012{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m33_c00012{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00012{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m22_c00012{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m5_c00012{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);}
.m24_c00012{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00012{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);}
.m8_c00012{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00012{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);}
.m1e_c00012{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);}
.m3d_c00012{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);}
.m45_c00012{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m13_c00012{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m14_c00012{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00012{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);}
.m3c_c00012{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m46_c00012{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);}
.m56_c00012{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.mf_c00012{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);}
.m26_c00012{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);}
.m50_c00012{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.me_c00012{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m7_c00012{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m10_c00012{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);}
.m49_c00012{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m59_c00012{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00012{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);}
.m25_c00012{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m19_c00012{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);}
.m1d_c00012{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00012{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m34_c00012{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00012{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);}
.m2b_c00012{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00012{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m41_c00012{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.ma_c00012{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);}
.m29_c00012{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m27_c00012{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m36_c00012{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00012{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00012{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m18_c00012{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);}
.m9_c00012{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);}
.m3f_c00012{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m35_c00012{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00012{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);}
.m21_c00012{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m11_c00012{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m20_c00012{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);}
.m15_c00012{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m12_c00012{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m51_c00012{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m23_c00012{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m40_c00012{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);}
.m44_c00012{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);}
.m4_c00012{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m42_c00012{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m6_c00012{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m32_c00012{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.md_c00012{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.mb_c00012{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m28_c00012{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);}
.m17_c00012{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m16_c00012{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m37_c00012{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m39_c00012{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);}
.m57_c00012{transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);}
.v1_c00012{vertical-align:-8.640000px;}
.v0_c00012{vertical-align:0.000000px;}
.ls0_c00012{letter-spacing:0.000000px;}
.sc__c00012{text-shadow:none;}
.sc0_c00012{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00012{-webkit-text-stroke:0px transparent;}
.sc0_c00012{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00012{word-spacing:0.000000px;}
.ws0_c00012{word-spacing:11.668800px;}
.fc0_c00012{color:transparent;}
.fs2_c00012{font-size:34.560000px;}
.fsd_c00012{font-size:37.440000px;}
.fs9_c00012{font-size:40.320000px;}
.fsc_c00012{font-size:43.200000px;}
.fs4_c00012{font-size:46.080000px;}
.fs5_c00012{font-size:48.960000px;}
.fs1_c00012{font-size:51.840000px;}
.fs7_c00012{font-size:54.720000px;}
.fs6_c00012{font-size:57.600000px;}
.fs3_c00012{font-size:60.480000px;}
.fs8_c00012{font-size:63.360000px;}
.fsb_c00012{font-size:66.240000px;}
.fs0_c00012{font-size:69.120000px;}
.fsa_c00012{font-size:72.000000px;}
.y0_c00012{bottom:0.000000px;}
.y60_c00012{bottom:83.520000px;}
.y5d_c00012{bottom:84.240000px;}
.y61_c00012{bottom:85.680000px;}
.y5f_c00012{bottom:86.400000px;}
.y5e_c00012{bottom:87.120000px;}
.y5c_c00012{bottom:87.840000px;}
.y59_c00012{bottom:127.440000px;}
.y5b_c00012{bottom:128.160000px;}
.y5a_c00012{bottom:128.880000px;}
.y58_c00012{bottom:129.600000px;}
.y57_c00012{bottom:131.040000px;}
.y56_c00012{bottom:171.360000px;}
.y55_c00012{bottom:172.080000px;}
.y54_c00012{bottom:172.800000px;}
.y53_c00012{bottom:210.960000px;}
.y50_c00012{bottom:211.680000px;}
.y4e_c00012{bottom:212.400000px;}
.y52_c00012{bottom:213.840000px;}
.y4f_c00012{bottom:214.560000px;}
.y51_c00012{bottom:215.280000px;}
.y4a_c00012{bottom:254.880000px;}
.y4d_c00012{bottom:257.040000px;}
.y4c_c00012{bottom:257.760000px;}
.y4b_c00012{bottom:258.480000px;}
.y49_c00012{bottom:297.360000px;}
.y47_c00012{bottom:298.800000px;}
.y48_c00012{bottom:300.240000px;}
.y46_c00012{bottom:300.960000px;}
.y45_c00012{bottom:339.840000px;}
.y41_c00012{bottom:340.560000px;}
.y43_c00012{bottom:342.720000px;}
.y44_c00012{bottom:343.440000px;}
.y42_c00012{bottom:344.160000px;}
.y3c_c00012{bottom:383.040000px;}
.y3e_c00012{bottom:383.760000px;}
.y40_c00012{bottom:384.480000px;}
.y3d_c00012{bottom:385.920000px;}
.y3f_c00012{bottom:386.640000px;}
.y3b_c00012{bottom:425.520000px;}
.y3a_c00012{bottom:426.240000px;}
.y39_c00012{bottom:428.400000px;}
.y38_c00012{bottom:429.120000px;}
.y35_c00012{bottom:468.720000px;}
.y37_c00012{bottom:469.440000px;}
.y36_c00012{bottom:470.880000px;}
.y34_c00012{bottom:471.600000px;}
.y33_c00012{bottom:472.320000px;}
.y31_c00012{bottom:511.200000px;}
.y32_c00012{bottom:513.360000px;}
.y30_c00012{bottom:514.080000px;}
.y2d_c00012{bottom:553.680000px;}
.y2c_c00012{bottom:554.400000px;}
.y2b_c00012{bottom:555.120000px;}
.y2f_c00012{bottom:556.560000px;}
.y2e_c00012{bottom:557.280000px;}
.y29_c00012{bottom:596.880000px;}
.y26_c00012{bottom:597.600000px;}
.y28_c00012{bottom:599.040000px;}
.y27_c00012{bottom:599.760000px;}
.y2a_c00012{bottom:600.480000px;}
.y25_c00012{bottom:640.080000px;}
.y23_c00012{bottom:642.240000px;}
.y24_c00012{bottom:642.960000px;}
.y21_c00012{bottom:682.560000px;}
.y20_c00012{bottom:683.280000px;}
.y1f_c00012{bottom:684.720000px;}
.y22_c00012{bottom:685.440000px;}
.y1e_c00012{bottom:736.560000px;}
.y1d_c00012{bottom:738.720000px;}
.y1c_c00012{bottom:739.440000px;}
.y1a_c00012{bottom:778.320000px;}
.y19_c00012{bottom:779.040000px;}
.y1b_c00012{bottom:781.920000px;}
.y17_c00012{bottom:820.800000px;}
.y18_c00012{bottom:821.520000px;}
.y15_c00012{bottom:822.240000px;}
.y14_c00012{bottom:824.400000px;}
.y16_c00012{bottom:825.120000px;}
.y13_c00012{bottom:864.720000px;}
.y11_c00012{bottom:865.440000px;}
.yf_c00012{bottom:866.880000px;}
.y12_c00012{bottom:867.600000px;}
.y10_c00012{bottom:868.320000px;}
.yc_c00012{bottom:907.200000px;}
.ye_c00012{bottom:909.360000px;}
.yb_c00012{bottom:910.080000px;}
.yd_c00012{bottom:910.800000px;}
.y9_c00012{bottom:950.400000px;}
.y8_c00012{bottom:952.560000px;}
.ya_c00012{bottom:953.280000px;}
.y3_c00012{bottom:992.880000px;}
.y6_c00012{bottom:993.600000px;}
.y2_c00012{bottom:994.320000px;}
.y7_c00012{bottom:995.040000px;}
.y4_c00012{bottom:995.760000px;}
.y5_c00012{bottom:996.480000px;}
.y1_c00012{bottom:1090.800000px;}
.h4_c00012{height:31.100625px;}
.h10_c00012{height:33.692344px;}
.hb_c00012{height:36.284062px;}
.hf_c00012{height:38.875781px;}
.h6_c00012{height:41.467500px;}
.h7_c00012{height:44.059219px;}
.h3_c00012{height:46.650937px;}
.h9_c00012{height:49.242656px;}
.he_c00012{height:50.969531px;}
.h8_c00012{height:51.834375px;}
.h5_c00012{height:54.426094px;}
.ha_c00012{height:57.017812px;}
.hd_c00012{height:59.609531px;}
.h2_c00012{height:62.201250px;}
.hc_c00012{height:64.792969px;}
.h0_c00012{height:1159.920000px;}
.h1_c00012{height:1160.250000px;}
.w1_c00012{width:825.000000px;}
.w0_c00012{width:825.120000px;}
.x0_c00012{left:0.000000px;}
.x28_c00012{left:97.200000px;}
.x2_c00012{left:98.640000px;}
.x58_c00012{left:129.600000px;}
.x3_c00012{left:131.040000px;}
.x40_c00012{left:140.400000px;}
.x13_c00012{left:141.840000px;}
.x3d_c00012{left:151.920000px;}
.xd_c00012{left:153.360000px;}
.x37_c00012{left:162.000000px;}
.x29_c00012{left:163.440000px;}
.x41_c00012{left:172.800000px;}
.x30_c00012{left:183.600000px;}
.x3e_c00012{left:185.040000px;}
.x4a_c00012{left:194.400000px;}
.x2a_c00012{left:195.840000px;}
.x2d_c00012{left:205.920000px;}
.x25_c00012{left:217.440000px;}
.x31_c00012{left:226.800000px;}
.x4_c00012{left:228.960000px;}
.x4f_c00012{left:237.600000px;}
.x38_c00012{left:248.400000px;}
.x1a_c00012{left:250.560000px;}
.x4b_c00012{left:260.640000px;}
.x42_c00012{left:270.000000px;}
.x1b_c00012{left:272.160000px;}
.x21_c00012{left:282.240000px;}
.x4c_c00012{left:292.320000px;}
.x32_c00012{left:293.760000px;}
.xe_c00012{left:304.560000px;}
.x5_c00012{left:315.360000px;}
.x48_c00012{left:324.000000px;}
.x1c_c00012{left:325.440000px;}
.x3f_c00012{left:335.520000px;}
.x14_c00012{left:336.960000px;}
.x56_c00012{left:343.440000px;}
.xf_c00012{left:346.320000px;}
.x6_c00012{left:347.760000px;}
.x2b_c00012{left:357.840000px;}
.x22_c00012{left:367.920000px;}
.x50_c00012{left:377.280000px;}
.x59_c00012{left:378.720000px;}
.x33_c00012{left:380.160000px;}
.x39_c00012{left:389.520000px;}
.x4d_c00012{left:399.600000px;}
.x54_c00012{left:401.040000px;}
.x2c_c00012{left:411.120000px;}
.x43_c00012{left:421.200000px;}
.x15_c00012{left:423.360000px;}
.x57_c00012{left:432.000000px;}
.x1d_c00012{left:443.520000px;}
.x2e_c00012{left:454.320000px;}
.x3a_c00012{left:465.120000px;}
.x10_c00012{left:466.560000px;}
.x7_c00012{left:476.640000px;}
.x16_c00012{left:486.720000px;}
.x23_c00012{left:488.160000px;}
.x51_c00012{left:496.800000px;}
.x1e_c00012{left:498.960000px;}
.x8_c00012{left:508.320000px;}
.x17_c00012{left:519.120000px;}
.x44_c00012{left:529.920000px;}
.x34_c00012{left:540.720000px;}
.x9_c00012{left:550.800000px;}
.x18_c00012{left:561.600000px;}
.x11_c00012{left:573.840000px;}
.x52_c00012{left:582.480000px;}
.x1f_c00012{left:584.640000px;}
.x35_c00012{left:594.000000px;}
.x24_c00012{left:595.440000px;}
.x45_c00012{left:605.520000px;}
.x20_c00012{left:627.120000px;}
.xa_c00012{left:628.560000px;}
.x36_c00012{left:637.920000px;}
.x4e_c00012{left:648.000000px;}
.x26_c00012{left:658.800000px;}
.xb_c00012{left:660.240000px;}
.x55_c00012{left:669.600000px;}
.x2f_c00012{left:671.040000px;}
.x3b_c00012{left:682.560000px;}
.x27_c00012{left:691.200000px;}
.x19_c00012{left:692.640000px;}
.x53_c00012{left:702.000000px;}
.xc_c00012{left:703.440000px;}
.x49_c00012{left:712.800000px;}
.x47_c00012{left:714.240000px;}
.x3c_c00012{left:715.680000px;}
.x12_c00012{left:725.040000px;}
.x5a_c00012{left:734.400000px;}
.x46_c00012{left:736.560000px;}
.x1_c00012{left:757.440000px;}
@media print{
.v1_c00012{vertical-align:-7.680000pt;}
.v0_c00012{vertical-align:0.000000pt;}
.ls0_c00012{letter-spacing:0.000000pt;}
.ws1_c00012{word-spacing:0.000000pt;}
.ws0_c00012{word-spacing:10.372267pt;}
.fs2_c00012{font-size:30.720000pt;}
.fsd_c00012{font-size:33.280000pt;}
.fs9_c00012{font-size:35.840000pt;}
.fsc_c00012{font-size:38.400000pt;}
.fs4_c00012{font-size:40.960000pt;}
.fs5_c00012{font-size:43.520000pt;}
.fs1_c00012{font-size:46.080000pt;}
.fs7_c00012{font-size:48.640000pt;}
.fs6_c00012{font-size:51.200000pt;}
.fs3_c00012{font-size:53.760000pt;}
.fs8_c00012{font-size:56.320000pt;}
.fsb_c00012{font-size:58.880000pt;}
.fs0_c00012{font-size:61.440000pt;}
.fsa_c00012{font-size:64.000000pt;}
.y0_c00012{bottom:0.000000pt;}
.y60_c00012{bottom:74.240000pt;}
.y5d_c00012{bottom:74.880000pt;}
.y61_c00012{bottom:76.160000pt;}
.y5f_c00012{bottom:76.800000pt;}
.y5e_c00012{bottom:77.440000pt;}
.y5c_c00012{bottom:78.080000pt;}
.y59_c00012{bottom:113.280000pt;}
.y5b_c00012{bottom:113.920000pt;}
.y5a_c00012{bottom:114.560000pt;}
.y58_c00012{bottom:115.200000pt;}
.y57_c00012{bottom:116.480000pt;}
.y56_c00012{bottom:152.320000pt;}
.y55_c00012{bottom:152.960000pt;}
.y54_c00012{bottom:153.600000pt;}
.y53_c00012{bottom:187.520000pt;}
.y50_c00012{bottom:188.160000pt;}
.y4e_c00012{bottom:188.800000pt;}
.y52_c00012{bottom:190.080000pt;}
.y4f_c00012{bottom:190.720000pt;}
.y51_c00012{bottom:191.360000pt;}
.y4a_c00012{bottom:226.560000pt;}
.y4d_c00012{bottom:228.480000pt;}
.y4c_c00012{bottom:229.120000pt;}
.y4b_c00012{bottom:229.760000pt;}
.y49_c00012{bottom:264.320000pt;}
.y47_c00012{bottom:265.600000pt;}
.y48_c00012{bottom:266.880000pt;}
.y46_c00012{bottom:267.520000pt;}
.y45_c00012{bottom:302.080000pt;}
.y41_c00012{bottom:302.720000pt;}
.y43_c00012{bottom:304.640000pt;}
.y44_c00012{bottom:305.280000pt;}
.y42_c00012{bottom:305.920000pt;}
.y3c_c00012{bottom:340.480000pt;}
.y3e_c00012{bottom:341.120000pt;}
.y40_c00012{bottom:341.760000pt;}
.y3d_c00012{bottom:343.040000pt;}
.y3f_c00012{bottom:343.680000pt;}
.y3b_c00012{bottom:378.240000pt;}
.y3a_c00012{bottom:378.880000pt;}
.y39_c00012{bottom:380.800000pt;}
.y38_c00012{bottom:381.440000pt;}
.y35_c00012{bottom:416.640000pt;}
.y37_c00012{bottom:417.280000pt;}
.y36_c00012{bottom:418.560000pt;}
.y34_c00012{bottom:419.200000pt;}
.y33_c00012{bottom:419.840000pt;}
.y31_c00012{bottom:454.400000pt;}
.y32_c00012{bottom:456.320000pt;}
.y30_c00012{bottom:456.960000pt;}
.y2d_c00012{bottom:492.160000pt;}
.y2c_c00012{bottom:492.800000pt;}
.y2b_c00012{bottom:493.440000pt;}
.y2f_c00012{bottom:494.720000pt;}
.y2e_c00012{bottom:495.360000pt;}
.y29_c00012{bottom:530.560000pt;}
.y26_c00012{bottom:531.200000pt;}
.y28_c00012{bottom:532.480000pt;}
.y27_c00012{bottom:533.120000pt;}
.y2a_c00012{bottom:533.760000pt;}
.y25_c00012{bottom:568.960000pt;}
.y23_c00012{bottom:570.880000pt;}
.y24_c00012{bottom:571.520000pt;}
.y21_c00012{bottom:606.720000pt;}
.y20_c00012{bottom:607.360000pt;}
.y1f_c00012{bottom:608.640000pt;}
.y22_c00012{bottom:609.280000pt;}
.y1e_c00012{bottom:654.720000pt;}
.y1d_c00012{bottom:656.640000pt;}
.y1c_c00012{bottom:657.280000pt;}
.y1a_c00012{bottom:691.840000pt;}
.y19_c00012{bottom:692.480000pt;}
.y1b_c00012{bottom:695.040000pt;}
.y17_c00012{bottom:729.600000pt;}
.y18_c00012{bottom:730.240000pt;}
.y15_c00012{bottom:730.880000pt;}
.y14_c00012{bottom:732.800000pt;}
.y16_c00012{bottom:733.440000pt;}
.y13_c00012{bottom:768.640000pt;}
.y11_c00012{bottom:769.280000pt;}
.yf_c00012{bottom:770.560000pt;}
.y12_c00012{bottom:771.200000pt;}
.y10_c00012{bottom:771.840000pt;}
.yc_c00012{bottom:806.400000pt;}
.ye_c00012{bottom:808.320000pt;}
.yb_c00012{bottom:808.960000pt;}
.yd_c00012{bottom:809.600000pt;}
.y9_c00012{bottom:844.800000pt;}
.y8_c00012{bottom:846.720000pt;}
.ya_c00012{bottom:847.360000pt;}
.y3_c00012{bottom:882.560000pt;}
.y6_c00012{bottom:883.200000pt;}
.y2_c00012{bottom:883.840000pt;}
.y7_c00012{bottom:884.480000pt;}
.y4_c00012{bottom:885.120000pt;}
.y5_c00012{bottom:885.760000pt;}
.y1_c00012{bottom:969.600000pt;}
.h4_c00012{height:27.645000pt;}
.h10_c00012{height:29.948750pt;}
.hb_c00012{height:32.252500pt;}
.hf_c00012{height:34.556250pt;}
.h6_c00012{height:36.860000pt;}
.h7_c00012{height:39.163750pt;}
.h3_c00012{height:41.467500pt;}
.h9_c00012{height:43.771250pt;}
.he_c00012{height:45.306250pt;}
.h8_c00012{height:46.075000pt;}
.h5_c00012{height:48.378750pt;}
.ha_c00012{height:50.682500pt;}
.hd_c00012{height:52.986250pt;}
.h2_c00012{height:55.290000pt;}
.hc_c00012{height:57.593750pt;}
.h0_c00012{height:1031.040000pt;}
.h1_c00012{height:1031.333333pt;}
.w1_c00012{width:733.333333pt;}
.w0_c00012{width:733.440000pt;}
.x0_c00012{left:0.000000pt;}
.x28_c00012{left:86.400000pt;}
.x2_c00012{left:87.680000pt;}
.x58_c00012{left:115.200000pt;}
.x3_c00012{left:116.480000pt;}
.x40_c00012{left:124.800000pt;}
.x13_c00012{left:126.080000pt;}
.x3d_c00012{left:135.040000pt;}
.xd_c00012{left:136.320000pt;}
.x37_c00012{left:144.000000pt;}
.x29_c00012{left:145.280000pt;}
.x41_c00012{left:153.600000pt;}
.x30_c00012{left:163.200000pt;}
.x3e_c00012{left:164.480000pt;}
.x4a_c00012{left:172.800000pt;}
.x2a_c00012{left:174.080000pt;}
.x2d_c00012{left:183.040000pt;}
.x25_c00012{left:193.280000pt;}
.x31_c00012{left:201.600000pt;}
.x4_c00012{left:203.520000pt;}
.x4f_c00012{left:211.200000pt;}
.x38_c00012{left:220.800000pt;}
.x1a_c00012{left:222.720000pt;}
.x4b_c00012{left:231.680000pt;}
.x42_c00012{left:240.000000pt;}
.x1b_c00012{left:241.920000pt;}
.x21_c00012{left:250.880000pt;}
.x4c_c00012{left:259.840000pt;}
.x32_c00012{left:261.120000pt;}
.xe_c00012{left:270.720000pt;}
.x5_c00012{left:280.320000pt;}
.x48_c00012{left:288.000000pt;}
.x1c_c00012{left:289.280000pt;}
.x3f_c00012{left:298.240000pt;}
.x14_c00012{left:299.520000pt;}
.x56_c00012{left:305.280000pt;}
.xf_c00012{left:307.840000pt;}
.x6_c00012{left:309.120000pt;}
.x2b_c00012{left:318.080000pt;}
.x22_c00012{left:327.040000pt;}
.x50_c00012{left:335.360000pt;}
.x59_c00012{left:336.640000pt;}
.x33_c00012{left:337.920000pt;}
.x39_c00012{left:346.240000pt;}
.x4d_c00012{left:355.200000pt;}
.x54_c00012{left:356.480000pt;}
.x2c_c00012{left:365.440000pt;}
.x43_c00012{left:374.400000pt;}
.x15_c00012{left:376.320000pt;}
.x57_c00012{left:384.000000pt;}
.x1d_c00012{left:394.240000pt;}
.x2e_c00012{left:403.840000pt;}
.x3a_c00012{left:413.440000pt;}
.x10_c00012{left:414.720000pt;}
.x7_c00012{left:423.680000pt;}
.x16_c00012{left:432.640000pt;}
.x23_c00012{left:433.920000pt;}
.x51_c00012{left:441.600000pt;}
.x1e_c00012{left:443.520000pt;}
.x8_c00012{left:451.840000pt;}
.x17_c00012{left:461.440000pt;}
.x44_c00012{left:471.040000pt;}
.x34_c00012{left:480.640000pt;}
.x9_c00012{left:489.600000pt;}
.x18_c00012{left:499.200000pt;}
.x11_c00012{left:510.080000pt;}
.x52_c00012{left:517.760000pt;}
.x1f_c00012{left:519.680000pt;}
.x35_c00012{left:528.000000pt;}
.x24_c00012{left:529.280000pt;}
.x45_c00012{left:538.240000pt;}
.x20_c00012{left:557.440000pt;}
.xa_c00012{left:558.720000pt;}
.x36_c00012{left:567.040000pt;}
.x4e_c00012{left:576.000000pt;}
.x26_c00012{left:585.600000pt;}
.xb_c00012{left:586.880000pt;}
.x55_c00012{left:595.200000pt;}
.x2f_c00012{left:596.480000pt;}
.x3b_c00012{left:606.720000pt;}
.x27_c00012{left:614.400000pt;}
.x19_c00012{left:615.680000pt;}
.x53_c00012{left:624.000000pt;}
.xc_c00012{left:625.280000pt;}
.x49_c00012{left:633.600000pt;}
.x47_c00012{left:634.880000pt;}
.x3c_c00012{left:636.160000pt;}
.x12_c00012{left:644.480000pt;}
.x5a_c00012{left:652.800000pt;}
.x46_c00012{left:654.720000pt;}
.x1_c00012{left:673.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7c92e6a6d752150c70426e34.woff2')format("woff");}.ff1_c00013{font-family:ff1_c00013;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m37_c00013{transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);}
.m43_c00013{transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);}
.m35_c00013{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);}
.m4e_c00013{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m36_c00013{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m29_c00013{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m59_c00013{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1_c00013{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00013{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00013{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m25_c00013{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m30_c00013{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);}
.m3a_c00013{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m44_c00013{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);}
.m32_c00013{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);}
.m3e_c00013{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00013{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);}
.m52_c00013{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00013{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);}
.m46_c00013{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00013{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m3_c00013{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m28_c00013{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);}
.m57_c00013{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00013{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m8_c00013{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);}
.m45_c00013{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);}
.m7_c00013{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);}
.m3b_c00013{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00013{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_c00013{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m5_c00013{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);}
.m2_c00013{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.md_c00013{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m22_c00013{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m34_c00013{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m42_c00013{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);}
.m40_c00013{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m49_c00013{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);}
.m24_c00013{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m48_c00013{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);}
.m27_c00013{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00013{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m39_c00013{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00013{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.me_c00013{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m55_c00013{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m10_c00013{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);}
.m2e_c00013{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m13_c00013{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);}
.m6_c00013{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m41_c00013{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m23_c00013{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00013{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);}
.m1d_c00013{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m31_c00013{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m51_c00013{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00013{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);}
.m11_c00013{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m33_c00013{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m4_c00013{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m50_c00013{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.mf_c00013{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);}
.m9_c00013{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);}
.mc_c00013{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m19_c00013{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m58_c00013{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m47_c00013{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);}
.m1c_c00013{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00013{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m17_c00013{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);}
.m54_c00013{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m16_c00013{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00013{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00013{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m53_c00013{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m12_c00013{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);}
.mb_c00013{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m18_c00013{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m21_c00013{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m0_c00013{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m14_c00013{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);}
.m20_c00013{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);}
.m3c_c00013{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00013{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00013{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00013{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.ma_c00013{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m26_c00013{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.m38_c00013{transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);}
.m56_c00013{transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);}
.v1_c00013{vertical-align:-2.880000px;}
.v0_c00013{vertical-align:0.000000px;}
.ls0_c00013{letter-spacing:0.000000px;}
.sc__c00013{text-shadow:none;}
.sc0_c00013{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00013{-webkit-text-stroke:0px transparent;}
.sc0_c00013{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00013{word-spacing:0.000000px;}
.ws0_c00013{word-spacing:3.616800px;}
.fc0_c00013{color:transparent;}
.fs0_c00013{font-size:34.560000px;}
.fs8_c00013{font-size:37.440000px;}
.fs5_c00013{font-size:40.320000px;}
.fsd_c00013{font-size:43.200000px;}
.fs2_c00013{font-size:46.080000px;}
.fs3_c00013{font-size:48.960000px;}
.fs4_c00013{font-size:51.840000px;}
.fs6_c00013{font-size:54.720000px;}
.fs7_c00013{font-size:57.600000px;}
.fs1_c00013{font-size:60.480000px;}
.fsb_c00013{font-size:63.360000px;}
.fs9_c00013{font-size:66.240000px;}
.fsa_c00013{font-size:69.120000px;}
.fsc_c00013{font-size:72.000000px;}
.y0_c00013{bottom:0.000000px;}
.y50_c00013{bottom:113.760000px;}
.y52_c00013{bottom:114.480000px;}
.y51_c00013{bottom:115.920000px;}
.y4f_c00013{bottom:116.640000px;}
.y4e_c00013{bottom:117.360000px;}
.y4c_c00013{bottom:155.520000px;}
.y4d_c00013{bottom:156.240000px;}
.y49_c00013{bottom:156.960000px;}
.y4b_c00013{bottom:158.400000px;}
.y4a_c00013{bottom:159.120000px;}
.y47_c00013{bottom:198.720000px;}
.y46_c00013{bottom:200.880000px;}
.y48_c00013{bottom:201.600000px;}
.y43_c00013{bottom:241.200000px;}
.y44_c00013{bottom:241.920000px;}
.y42_c00013{bottom:244.080000px;}
.y45_c00013{bottom:244.800000px;}
.y40_c00013{bottom:283.680000px;}
.y3e_c00013{bottom:284.400000px;}
.y3f_c00013{bottom:286.560000px;}
.y41_c00013{bottom:287.280000px;}
.y3c_c00013{bottom:326.160000px;}
.y3d_c00013{bottom:329.040000px;}
.y3b_c00013{bottom:329.760000px;}
.y3a_c00013{bottom:331.200000px;}
.y39_c00013{bottom:369.360000px;}
.y37_c00013{bottom:370.080000px;}
.y36_c00013{bottom:372.240000px;}
.y38_c00013{bottom:372.960000px;}
.y35_c00013{bottom:373.680000px;}
.y33_c00013{bottom:423.360000px;}
.y34_c00013{bottom:424.800000px;}
.y31_c00013{bottom:466.560000px;}
.y32_c00013{bottom:468.000000px;}
.y30_c00013{bottom:468.720000px;}
.y2f_c00013{bottom:469.440000px;}
.y2d_c00013{bottom:509.040000px;}
.y2e_c00013{bottom:511.200000px;}
.y2c_c00013{bottom:511.920000px;}
.y2a_c00013{bottom:551.520000px;}
.y28_c00013{bottom:552.240000px;}
.y2b_c00013{bottom:553.680000px;}
.y29_c00013{bottom:554.400000px;}
.y27_c00013{bottom:594.000000px;}
.y26_c00013{bottom:596.160000px;}
.y24_c00013{bottom:596.880000px;}
.y25_c00013{bottom:597.600000px;}
.y23_c00013{bottom:636.480000px;}
.y22_c00013{bottom:637.200000px;}
.y20_c00013{bottom:639.360000px;}
.y21_c00013{bottom:640.080000px;}
.y1f_c00013{bottom:678.960000px;}
.y1d_c00013{bottom:679.680000px;}
.y1b_c00013{bottom:680.400000px;}
.y1a_c00013{bottom:681.840000px;}
.y1e_c00013{bottom:682.560000px;}
.y1c_c00013{bottom:683.280000px;}
.y19_c00013{bottom:722.160000px;}
.y18_c00013{bottom:725.040000px;}
.y17_c00013{bottom:725.760000px;}
.y16_c00013{bottom:764.640000px;}
.y15_c00013{bottom:765.360000px;}
.y14_c00013{bottom:767.520000px;}
.y13_c00013{bottom:768.240000px;}
.y12_c00013{bottom:807.120000px;}
.yf_c00013{bottom:808.560000px;}
.y11_c00013{bottom:810.000000px;}
.ye_c00013{bottom:810.720000px;}
.y10_c00013{bottom:811.440000px;}
.yc_c00013{bottom:851.040000px;}
.yb_c00013{bottom:853.200000px;}
.yd_c00013{bottom:853.920000px;}
.y9_c00013{bottom:896.400000px;}
.ya_c00013{bottom:897.120000px;}
.y7_c00013{bottom:947.520000px;}
.y8_c00013{bottom:948.960000px;}
.y5_c00013{bottom:949.680000px;}
.y6_c00013{bottom:950.400000px;}
.y2_c00013{bottom:990.000000px;}
.y1_c00013{bottom:992.160000px;}
.y4_c00013{bottom:992.880000px;}
.y3_c00013{bottom:993.600000px;}
.h2_c00013{height:31.100625px;}
.ha_c00013{height:33.692344px;}
.h7_c00013{height:36.284062px;}
.hf_c00013{height:38.875781px;}
.h4_c00013{height:41.467500px;}
.h5_c00013{height:44.059219px;}
.h6_c00013{height:46.650937px;}
.h8_c00013{height:49.242656px;}
.h9_c00013{height:51.834375px;}
.h3_c00013{height:54.426094px;}
.hd_c00013{height:57.017812px;}
.hb_c00013{height:59.609531px;}
.hc_c00013{height:62.201250px;}
.he_c00013{height:64.792969px;}
.h0_c00013{height:1158.480000px;}
.h1_c00013{height:1158.750000px;}
.w1_c00013{width:822.750000px;}
.w0_c00013{width:822.960000px;}
.x0_c00013{left:0.000000px;}
.x50_c00013{left:99.360000px;}
.x1_c00013{left:100.800000px;}
.x4c_c00013{left:120.960000px;}
.x46_c00013{left:122.400000px;}
.x31_c00013{left:132.480000px;}
.x2_c00013{left:133.920000px;}
.x3f_c00013{left:143.280000px;}
.x25_c00013{left:144.720000px;}
.x4d_c00013{left:153.360000px;}
.x1e_c00013{left:154.800000px;}
.x51_c00013{left:175.680000px;}
.xb_c00013{left:177.120000px;}
.x26_c00013{left:186.480000px;}
.x16_c00013{left:198.000000px;}
.x47_c00013{left:208.080000px;}
.xc_c00013{left:209.520000px;}
.x56_c00013{left:218.160000px;}
.x3_c00013{left:219.600000px;}
.x4a_c00013{left:228.960000px;}
.x1f_c00013{left:230.400000px;}
.xd_c00013{left:241.920000px;}
.x39_c00013{left:250.560000px;}
.x17_c00013{left:252.720000px;}
.x32_c00013{left:272.880000px;}
.x20_c00013{left:274.320000px;}
.x52_c00013{left:282.960000px;}
.x4_c00013{left:285.120000px;}
.x40_c00013{left:294.480000px;}
.x11_c00013{left:295.920000px;}
.x59_c00013{left:304.560000px;}
.x21_c00013{left:306.000000px;}
.x5f_c00013{left:313.920000px;}
.x48_c00013{left:315.360000px;}
.x3e_c00013{left:316.800000px;}
.x5_c00013{left:318.240000px;}
.x4b_c00013{left:326.160000px;}
.xe_c00013{left:328.320000px;}
.x41_c00013{left:336.240000px;}
.x3a_c00013{left:338.400000px;}
.xf_c00013{left:360.720000px;}
.x49_c00013{left:369.360000px;}
.x18_c00013{left:371.520000px;}
.x53_c00013{left:380.160000px;}
.x12_c00013{left:391.680000px;}
.x27_c00013{left:393.120000px;}
.x19_c00013{left:403.200000px;}
.x10_c00013{left:412.560000px;}
.x2d_c00013{left:414.720000px;}
.x5a_c00013{left:421.920000px;}
.x54_c00013{left:423.360000px;}
.x28_c00013{left:425.520000px;}
.x33_c00013{left:434.160000px;}
.x3b_c00013{left:436.320000px;}
.x1a_c00013{left:444.960000px;}
.x6_c00013{left:446.400000px;}
.x42_c00013{left:456.480000px;}
.x2e_c00013{left:457.920000px;}
.x57_c00013{left:466.560000px;}
.x36_c00013{left:468.720000px;}
.x13_c00013{left:478.800000px;}
.x5b_c00013{left:488.160000px;}
.x7_c00013{left:489.600000px;}
.x43_c00013{left:499.680000px;}
.x3c_c00013{left:510.480000px;}
.x5c_c00013{left:519.840000px;}
.x22_c00013{left:522.720000px;}
.x2f_c00013{left:532.080000px;}
.x29_c00013{left:542.880000px;}
.x3d_c00013{left:553.680000px;}
.x1b_c00013{left:564.480000px;}
.x44_c00013{left:575.280000px;}
.x5d_c00013{left:584.640000px;}
.x2a_c00013{left:586.080000px;}
.x8_c00013{left:587.520000px;}
.x4e_c00013{left:596.160000px;}
.x30_c00013{left:597.600000px;}
.x23_c00013{left:607.680000px;}
.x58_c00013{left:617.760000px;}
.x14_c00013{left:619.200000px;}
.x34_c00013{left:628.560000px;}
.x2b_c00013{left:630.720000px;}
.x37_c00013{left:640.080000px;}
.x15_c00013{left:650.160000px;}
.x1c_c00013{left:652.320000px;}
.x38_c00013{left:660.960000px;}
.x45_c00013{left:672.480000px;}
.x1d_c00013{left:683.280000px;}
.x9_c00013{left:684.720000px;}
.x24_c00013{left:695.520000px;}
.x35_c00013{left:706.320000px;}
.x4f_c00013{left:714.960000px;}
.xa_c00013{left:717.120000px;}
.x55_c00013{left:726.480000px;}
.x2c_c00013{left:727.920000px;}
.x5e_c00013{left:736.560000px;}
@media print{
.v1_c00013{vertical-align:-2.560000pt;}
.v0_c00013{vertical-align:0.000000pt;}
.ls0_c00013{letter-spacing:0.000000pt;}
.ws1_c00013{word-spacing:0.000000pt;}
.ws0_c00013{word-spacing:3.214933pt;}
.fs0_c00013{font-size:30.720000pt;}
.fs8_c00013{font-size:33.280000pt;}
.fs5_c00013{font-size:35.840000pt;}
.fsd_c00013{font-size:38.400000pt;}
.fs2_c00013{font-size:40.960000pt;}
.fs3_c00013{font-size:43.520000pt;}
.fs4_c00013{font-size:46.080000pt;}
.fs6_c00013{font-size:48.640000pt;}
.fs7_c00013{font-size:51.200000pt;}
.fs1_c00013{font-size:53.760000pt;}
.fsb_c00013{font-size:56.320000pt;}
.fs9_c00013{font-size:58.880000pt;}
.fsa_c00013{font-size:61.440000pt;}
.fsc_c00013{font-size:64.000000pt;}
.y0_c00013{bottom:0.000000pt;}
.y50_c00013{bottom:101.120000pt;}
.y52_c00013{bottom:101.760000pt;}
.y51_c00013{bottom:103.040000pt;}
.y4f_c00013{bottom:103.680000pt;}
.y4e_c00013{bottom:104.320000pt;}
.y4c_c00013{bottom:138.240000pt;}
.y4d_c00013{bottom:138.880000pt;}
.y49_c00013{bottom:139.520000pt;}
.y4b_c00013{bottom:140.800000pt;}
.y4a_c00013{bottom:141.440000pt;}
.y47_c00013{bottom:176.640000pt;}
.y46_c00013{bottom:178.560000pt;}
.y48_c00013{bottom:179.200000pt;}
.y43_c00013{bottom:214.400000pt;}
.y44_c00013{bottom:215.040000pt;}
.y42_c00013{bottom:216.960000pt;}
.y45_c00013{bottom:217.600000pt;}
.y40_c00013{bottom:252.160000pt;}
.y3e_c00013{bottom:252.800000pt;}
.y3f_c00013{bottom:254.720000pt;}
.y41_c00013{bottom:255.360000pt;}
.y3c_c00013{bottom:289.920000pt;}
.y3d_c00013{bottom:292.480000pt;}
.y3b_c00013{bottom:293.120000pt;}
.y3a_c00013{bottom:294.400000pt;}
.y39_c00013{bottom:328.320000pt;}
.y37_c00013{bottom:328.960000pt;}
.y36_c00013{bottom:330.880000pt;}
.y38_c00013{bottom:331.520000pt;}
.y35_c00013{bottom:332.160000pt;}
.y33_c00013{bottom:376.320000pt;}
.y34_c00013{bottom:377.600000pt;}
.y31_c00013{bottom:414.720000pt;}
.y32_c00013{bottom:416.000000pt;}
.y30_c00013{bottom:416.640000pt;}
.y2f_c00013{bottom:417.280000pt;}
.y2d_c00013{bottom:452.480000pt;}
.y2e_c00013{bottom:454.400000pt;}
.y2c_c00013{bottom:455.040000pt;}
.y2a_c00013{bottom:490.240000pt;}
.y28_c00013{bottom:490.880000pt;}
.y2b_c00013{bottom:492.160000pt;}
.y29_c00013{bottom:492.800000pt;}
.y27_c00013{bottom:528.000000pt;}
.y26_c00013{bottom:529.920000pt;}
.y24_c00013{bottom:530.560000pt;}
.y25_c00013{bottom:531.200000pt;}
.y23_c00013{bottom:565.760000pt;}
.y22_c00013{bottom:566.400000pt;}
.y20_c00013{bottom:568.320000pt;}
.y21_c00013{bottom:568.960000pt;}
.y1f_c00013{bottom:603.520000pt;}
.y1d_c00013{bottom:604.160000pt;}
.y1b_c00013{bottom:604.800000pt;}
.y1a_c00013{bottom:606.080000pt;}
.y1e_c00013{bottom:606.720000pt;}
.y1c_c00013{bottom:607.360000pt;}
.y19_c00013{bottom:641.920000pt;}
.y18_c00013{bottom:644.480000pt;}
.y17_c00013{bottom:645.120000pt;}
.y16_c00013{bottom:679.680000pt;}
.y15_c00013{bottom:680.320000pt;}
.y14_c00013{bottom:682.240000pt;}
.y13_c00013{bottom:682.880000pt;}
.y12_c00013{bottom:717.440000pt;}
.yf_c00013{bottom:718.720000pt;}
.y11_c00013{bottom:720.000000pt;}
.ye_c00013{bottom:720.640000pt;}
.y10_c00013{bottom:721.280000pt;}
.yc_c00013{bottom:756.480000pt;}
.yb_c00013{bottom:758.400000pt;}
.yd_c00013{bottom:759.040000pt;}
.y9_c00013{bottom:796.800000pt;}
.ya_c00013{bottom:797.440000pt;}
.y7_c00013{bottom:842.240000pt;}
.y8_c00013{bottom:843.520000pt;}
.y5_c00013{bottom:844.160000pt;}
.y6_c00013{bottom:844.800000pt;}
.y2_c00013{bottom:880.000000pt;}
.y1_c00013{bottom:881.920000pt;}
.y4_c00013{bottom:882.560000pt;}
.y3_c00013{bottom:883.200000pt;}
.h2_c00013{height:27.645000pt;}
.ha_c00013{height:29.948750pt;}
.h7_c00013{height:32.252500pt;}
.hf_c00013{height:34.556250pt;}
.h4_c00013{height:36.860000pt;}
.h5_c00013{height:39.163750pt;}
.h6_c00013{height:41.467500pt;}
.h8_c00013{height:43.771250pt;}
.h9_c00013{height:46.075000pt;}
.h3_c00013{height:48.378750pt;}
.hd_c00013{height:50.682500pt;}
.hb_c00013{height:52.986250pt;}
.hc_c00013{height:55.290000pt;}
.he_c00013{height:57.593750pt;}
.h0_c00013{height:1029.760000pt;}
.h1_c00013{height:1030.000000pt;}
.w1_c00013{width:731.333333pt;}
.w0_c00013{width:731.520000pt;}
.x0_c00013{left:0.000000pt;}
.x50_c00013{left:88.320000pt;}
.x1_c00013{left:89.600000pt;}
.x4c_c00013{left:107.520000pt;}
.x46_c00013{left:108.800000pt;}
.x31_c00013{left:117.760000pt;}
.x2_c00013{left:119.040000pt;}
.x3f_c00013{left:127.360000pt;}
.x25_c00013{left:128.640000pt;}
.x4d_c00013{left:136.320000pt;}
.x1e_c00013{left:137.600000pt;}
.x51_c00013{left:156.160000pt;}
.xb_c00013{left:157.440000pt;}
.x26_c00013{left:165.760000pt;}
.x16_c00013{left:176.000000pt;}
.x47_c00013{left:184.960000pt;}
.xc_c00013{left:186.240000pt;}
.x56_c00013{left:193.920000pt;}
.x3_c00013{left:195.200000pt;}
.x4a_c00013{left:203.520000pt;}
.x1f_c00013{left:204.800000pt;}
.xd_c00013{left:215.040000pt;}
.x39_c00013{left:222.720000pt;}
.x17_c00013{left:224.640000pt;}
.x32_c00013{left:242.560000pt;}
.x20_c00013{left:243.840000pt;}
.x52_c00013{left:251.520000pt;}
.x4_c00013{left:253.440000pt;}
.x40_c00013{left:261.760000pt;}
.x11_c00013{left:263.040000pt;}
.x59_c00013{left:270.720000pt;}
.x21_c00013{left:272.000000pt;}
.x5f_c00013{left:279.040000pt;}
.x48_c00013{left:280.320000pt;}
.x3e_c00013{left:281.600000pt;}
.x5_c00013{left:282.880000pt;}
.x4b_c00013{left:289.920000pt;}
.xe_c00013{left:291.840000pt;}
.x41_c00013{left:298.880000pt;}
.x3a_c00013{left:300.800000pt;}
.xf_c00013{left:320.640000pt;}
.x49_c00013{left:328.320000pt;}
.x18_c00013{left:330.240000pt;}
.x53_c00013{left:337.920000pt;}
.x12_c00013{left:348.160000pt;}
.x27_c00013{left:349.440000pt;}
.x19_c00013{left:358.400000pt;}
.x10_c00013{left:366.720000pt;}
.x2d_c00013{left:368.640000pt;}
.x5a_c00013{left:375.040000pt;}
.x54_c00013{left:376.320000pt;}
.x28_c00013{left:378.240000pt;}
.x33_c00013{left:385.920000pt;}
.x3b_c00013{left:387.840000pt;}
.x1a_c00013{left:395.520000pt;}
.x6_c00013{left:396.800000pt;}
.x42_c00013{left:405.760000pt;}
.x2e_c00013{left:407.040000pt;}
.x57_c00013{left:414.720000pt;}
.x36_c00013{left:416.640000pt;}
.x13_c00013{left:425.600000pt;}
.x5b_c00013{left:433.920000pt;}
.x7_c00013{left:435.200000pt;}
.x43_c00013{left:444.160000pt;}
.x3c_c00013{left:453.760000pt;}
.x5c_c00013{left:462.080000pt;}
.x22_c00013{left:464.640000pt;}
.x2f_c00013{left:472.960000pt;}
.x29_c00013{left:482.560000pt;}
.x3d_c00013{left:492.160000pt;}
.x1b_c00013{left:501.760000pt;}
.x44_c00013{left:511.360000pt;}
.x5d_c00013{left:519.680000pt;}
.x2a_c00013{left:520.960000pt;}
.x8_c00013{left:522.240000pt;}
.x4e_c00013{left:529.920000pt;}
.x30_c00013{left:531.200000pt;}
.x23_c00013{left:540.160000pt;}
.x58_c00013{left:549.120000pt;}
.x14_c00013{left:550.400000pt;}
.x34_c00013{left:558.720000pt;}
.x2b_c00013{left:560.640000pt;}
.x37_c00013{left:568.960000pt;}
.x15_c00013{left:577.920000pt;}
.x1c_c00013{left:579.840000pt;}
.x38_c00013{left:587.520000pt;}
.x45_c00013{left:597.760000pt;}
.x1d_c00013{left:607.360000pt;}
.x9_c00013{left:608.640000pt;}
.x24_c00013{left:618.240000pt;}
.x35_c00013{left:627.840000pt;}
.x4f_c00013{left:635.520000pt;}
.xa_c00013{left:637.440000pt;}
.x55_c00013{left:645.760000pt;}
.x2c_c00013{left:647.040000pt;}
.x5e_c00013{left:654.720000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9cf6edcb20ca4a7dc69e4e3e.woff2')format("woff");}.ff1_c00014{font-family:ff1_c00014;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00014{transform:matrix(0.237800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237800,0.000000,0.000000,0.250000,0,0);}
.m3f_c00014{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m37_c00014{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00014{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00014{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m55_c00014{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m42_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);}
.m6_c00014{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00014{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);}
.m26_c00014{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m13_c00014{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);}
.m56_c00014{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_c00014{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m58_c00014{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_c00014{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m29_c00014{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_c00014{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00014{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m21_c00014{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m11_c00014{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);}
.m36_c00014{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);}
.m49_c00014{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m43_c00014{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00014{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m4_c00014{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m1a_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);}
.m2f_c00014{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m45_c00014{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);}
.m34_c00014{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m41_c00014{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);}
.m51_c00014{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);}
.m33_c00014{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);}
.m3d_c00014{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.mc_c00014{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m48_c00014{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);}
.m15_c00014{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m25_c00014{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);}
.m28_c00014{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m14_c00014{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);}
.ma_c00014{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);}
.m7_c00014{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m10_c00014{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m19_c00014{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m8_c00014{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00014{transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);}
.m1_c00014{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m24_c00014{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m32_c00014{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);}
.m52_c00014{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m12_c00014{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);}
.m3_c00014{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.mb_c00014{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m50_c00014{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00014{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);}
.m47_c00014{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00014{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m38_c00014{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m53_c00014{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);}
.m2a_c00014{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.me_c00014{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m31_c00014{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m5_c00014{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m54_c00014{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m40_c00014{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);}
.m3a_c00014{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);}
.m2d_c00014{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m18_c00014{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m16_c00014{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m22_c00014{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);}
.m1e_c00014{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m2_c00014{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m46_c00014{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m2c_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);}
.m9_c00014{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00014{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m35_c00014{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00014{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.md_c00014{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);}
.m30_c00014{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m20_c00014{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00014{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00014{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m27_c00014{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);}
.m3e_c00014{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);}
.m17_c00014{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m59_c00014{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m23_c00014{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);}
.m44_c00014{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m39_c00014{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m57_c00014{transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);}
.v1_c00014{vertical-align:-2.880000px;}
.v0_c00014{vertical-align:0.000000px;}
.ls1_c00014{letter-spacing:0.000000px;}
.ls0_c00014{letter-spacing:25.586640px;}
.sc__c00014{text-shadow:none;}
.sc0_c00014{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00014{-webkit-text-stroke:0px transparent;}
.sc0_c00014{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00014{word-spacing:0.000000px;}
.fc0_c00014{color:transparent;}
.fse_c00014{font-size:31.680000px;}
.fs5_c00014{font-size:34.560000px;}
.fs7_c00014{font-size:37.440000px;}
.fsd_c00014{font-size:40.320000px;}
.fsb_c00014{font-size:43.200000px;}
.fs4_c00014{font-size:46.080000px;}
.fs1_c00014{font-size:48.960000px;}
.fs2_c00014{font-size:51.840000px;}
.fsc_c00014{font-size:54.720000px;}
.fs9_c00014{font-size:57.600000px;}
.fs3_c00014{font-size:60.480000px;}
.fs6_c00014{font-size:63.360000px;}
.fsa_c00014{font-size:66.240000px;}
.fs8_c00014{font-size:69.120000px;}
.fs0_c00014{font-size:72.000000px;}
.y0_c00014{bottom:0.000000px;}
.y61_c00014{bottom:55.440000px;}
.y5f_c00014{bottom:58.320000px;}
.y60_c00014{bottom:59.040000px;}
.y5c_c00014{bottom:97.200000px;}
.y5d_c00014{bottom:98.640000px;}
.y5e_c00014{bottom:100.080000px;}
.y5b_c00014{bottom:100.800000px;}
.y5a_c00014{bottom:101.520000px;}
.y59_c00014{bottom:139.680000px;}
.y58_c00014{bottom:140.400000px;}
.y57_c00014{bottom:143.280000px;}
.y53_c00014{bottom:182.160000px;}
.y56_c00014{bottom:182.880000px;}
.y54_c00014{bottom:183.600000px;}
.y55_c00014{bottom:185.040000px;}
.y51_c00014{bottom:185.760000px;}
.y52_c00014{bottom:186.480000px;}
.y4f_c00014{bottom:225.360000px;}
.y4d_c00014{bottom:226.080000px;}
.y4e_c00014{bottom:228.240000px;}
.y50_c00014{bottom:228.960000px;}
.y49_c00014{bottom:267.840000px;}
.y4b_c00014{bottom:268.560000px;}
.y4a_c00014{bottom:270.720000px;}
.y4c_c00014{bottom:271.440000px;}
.y46_c00014{bottom:311.040000px;}
.y47_c00014{bottom:311.760000px;}
.y45_c00014{bottom:313.200000px;}
.y44_c00014{bottom:313.920000px;}
.y48_c00014{bottom:314.640000px;}
.y41_c00014{bottom:353.520000px;}
.y40_c00014{bottom:354.240000px;}
.y42_c00014{bottom:356.400000px;}
.y43_c00014{bottom:357.120000px;}
.y3d_c00014{bottom:396.000000px;}
.y3e_c00014{bottom:396.720000px;}
.y3c_c00014{bottom:398.880000px;}
.y3f_c00014{bottom:399.600000px;}
.y39_c00014{bottom:439.200000px;}
.y38_c00014{bottom:439.920000px;}
.y3b_c00014{bottom:441.360000px;}
.y37_c00014{bottom:442.080000px;}
.y3a_c00014{bottom:442.800000px;}
.y34_c00014{bottom:480.960000px;}
.y36_c00014{bottom:482.400000px;}
.y35_c00014{bottom:484.560000px;}
.y33_c00014{bottom:485.280000px;}
.y31_c00014{bottom:524.160000px;}
.y30_c00014{bottom:524.880000px;}
.y32_c00014{bottom:525.600000px;}
.y2f_c00014{bottom:527.040000px;}
.y2e_c00014{bottom:527.760000px;}
.y2d_c00014{bottom:567.360000px;}
.y2b_c00014{bottom:568.080000px;}
.y2c_c00014{bottom:570.240000px;}
.y2a_c00014{bottom:570.960000px;}
.y28_c00014{bottom:610.560000px;}
.y25_c00014{bottom:611.280000px;}
.y27_c00014{bottom:612.720000px;}
.y26_c00014{bottom:613.440000px;}
.y29_c00014{bottom:614.160000px;}
.y22_c00014{bottom:653.040000px;}
.y23_c00014{bottom:655.920000px;}
.y24_c00014{bottom:656.640000px;}
.y21_c00014{bottom:694.800000px;}
.y20_c00014{bottom:696.240000px;}
.y1f_c00014{bottom:698.400000px;}
.y1e_c00014{bottom:699.120000px;}
.y1c_c00014{bottom:738.720000px;}
.y1d_c00014{bottom:739.440000px;}
.y1b_c00014{bottom:741.600000px;}
.y18_c00014{bottom:781.920000px;}
.y19_c00014{bottom:784.080000px;}
.y1a_c00014{bottom:784.800000px;}
.y16_c00014{bottom:823.680000px;}
.y17_c00014{bottom:824.400000px;}
.y13_c00014{bottom:826.560000px;}
.y15_c00014{bottom:827.280000px;}
.y14_c00014{bottom:828.000000px;}
.y11_c00014{bottom:866.880000px;}
.yf_c00014{bottom:869.040000px;}
.y10_c00014{bottom:869.760000px;}
.y12_c00014{bottom:870.480000px;}
.yd_c00014{bottom:909.360000px;}
.ye_c00014{bottom:911.520000px;}
.yb_c00014{bottom:912.240000px;}
.yc_c00014{bottom:912.960000px;}
.ya_c00014{bottom:952.560000px;}
.y8_c00014{bottom:953.280000px;}
.y6_c00014{bottom:954.000000px;}
.y9_c00014{bottom:954.720000px;}
.y7_c00014{bottom:955.440000px;}
.y4_c00014{bottom:995.040000px;}
.y3_c00014{bottom:995.760000px;}
.y5_c00014{bottom:997.920000px;}
.y2_c00014{bottom:998.640000px;}
.y1_c00014{bottom:1091.520000px;}
.h11_c00014{height:28.508906px;}
.h7_c00014{height:31.100625px;}
.h9_c00014{height:33.692344px;}
.h10_c00014{height:36.284062px;}
.he_c00014{height:38.875781px;}
.ha_c00014{height:41.179219px;}
.h6_c00014{height:41.467500px;}
.h3_c00014{height:44.059219px;}
.h4_c00014{height:46.650937px;}
.hf_c00014{height:49.242656px;}
.hc_c00014{height:51.834375px;}
.h5_c00014{height:54.426094px;}
.h8_c00014{height:57.017812px;}
.hd_c00014{height:59.609531px;}
.hb_c00014{height:62.201250px;}
.h2_c00014{height:64.792969px;}
.h0_c00014{height:1156.320000px;}
.h1_c00014{height:1156.500000px;}
.w1_c00014{width:820.500000px;}
.w0_c00014{width:820.800000px;}
.x0_c00014{left:0.000000px;}
.x59_c00014{left:88.560000px;}
.x19_c00014{left:93.600000px;}
.x9_c00014{left:95.040000px;}
.x56_c00014{left:105.840000px;}
.x51_c00014{left:126.000000px;}
.x1e_c00014{left:127.440000px;}
.x38_c00014{left:136.800000px;}
.xa_c00014{left:149.040000px;}
.x3f_c00014{left:159.840000px;}
.x1a_c00014{left:170.640000px;}
.x46_c00014{left:180.000000px;}
.x23_c00014{left:181.440000px;}
.x1f_c00014{left:192.240000px;}
.x2_c00014{left:203.040000px;}
.x1b_c00014{left:213.120000px;}
.x4c_c00014{left:223.200000px;}
.x2b_c00014{left:224.640000px;}
.x24_c00014{left:236.160000px;}
.x12_c00014{left:244.800000px;}
.xb_c00014{left:246.240000px;}
.x39_c00014{left:254.880000px;}
.x3_c00014{left:257.040000px;}
.x25_c00014{left:267.120000px;}
.x40_c00014{left:268.560000px;}
.x2c_c00014{left:279.360000px;}
.x52_c00014{left:288.000000px;}
.xc_c00014{left:289.440000px;}
.x47_c00014{left:298.800000px;}
.x42_c00014{left:309.600000px;}
.x20_c00014{left:311.760000px;}
.x2d_c00014{left:313.200000px;}
.x4_c00014{left:321.840000px;}
.x48_c00014{left:331.200000px;}
.x13_c00014{left:332.640000px;}
.x33_c00014{left:342.720000px;}
.x1c_c00014{left:344.160000px;}
.x3a_c00014{left:352.800000px;}
.xd_c00014{left:354.240000px;}
.x41_c00014{left:365.040000px;}
.x57_c00014{left:374.400000px;}
.x26_c00014{left:375.840000px;}
.x53_c00014{left:385.200000px;}
.x2e_c00014{left:386.640000px;}
.x4d_c00014{left:396.000000px;}
.x21_c00014{left:397.440000px;}
.x27_c00014{left:406.800000px;}
.x5_c00014{left:419.040000px;}
.x5a_c00014{left:427.680000px;}
.xe_c00014{left:429.840000px;}
.x4e_c00014{left:439.200000px;}
.x36_c00014{left:440.640000px;}
.x14_c00014{left:451.440000px;}
.xf_c00014{left:462.240000px;}
.x50_c00014{left:470.880000px;}
.x34_c00014{left:473.040000px;}
.x28_c00014{left:483.120000px;}
.x49_c00014{left:493.920000px;}
.x22_c00014{left:505.440000px;}
.x55_c00014{left:514.800000px;}
.x15_c00014{left:516.240000px;}
.x4a_c00014{left:525.600000px;}
.x2f_c00014{left:527.040000px;}
.x6_c00014{left:537.120000px;}
.x3e_c00014{left:547.200000px;}
.x10_c00014{left:548.640000px;}
.x35_c00014{left:557.280000px;}
.x7_c00014{left:558.720000px;}
.x44_c00014{left:570.240000px;}
.x3b_c00014{left:580.320000px;}
.x54_c00014{left:590.400000px;}
.x37_c00014{left:591.840000px;}
.x4b_c00014{left:600.480000px;}
.x1d_c00014{left:601.920000px;}
.x30_c00014{left:612.720000px;}
.x4f_c00014{left:622.800000px;}
.x29_c00014{left:624.240000px;}
.x58_c00014{left:633.600000px;}
.x16_c00014{left:635.040000px;}
.x43_c00014{left:644.400000px;}
.x31_c00014{left:645.840000px;}
.x2a_c00014{left:657.360000px;}
.x45_c00014{left:666.000000px;}
.x17_c00014{left:667.440000px;}
.x8_c00014{left:678.240000px;}
.x3c_c00014{left:688.320000px;}
.x32_c00014{left:689.760000px;}
.x18_c00014{left:699.120000px;}
.x3d_c00014{left:710.640000px;}
.x11_c00014{left:721.440000px;}
.x1_c00014{left:768.960000px;}
@media print{
.v1_c00014{vertical-align:-2.560000pt;}
.v0_c00014{vertical-align:0.000000pt;}
.ls1_c00014{letter-spacing:0.000000pt;}
.ls0_c00014{letter-spacing:22.743680pt;}
.ws0_c00014{word-spacing:0.000000pt;}
.fse_c00014{font-size:28.160000pt;}
.fs5_c00014{font-size:30.720000pt;}
.fs7_c00014{font-size:33.280000pt;}
.fsd_c00014{font-size:35.840000pt;}
.fsb_c00014{font-size:38.400000pt;}
.fs4_c00014{font-size:40.960000pt;}
.fs1_c00014{font-size:43.520000pt;}
.fs2_c00014{font-size:46.080000pt;}
.fsc_c00014{font-size:48.640000pt;}
.fs9_c00014{font-size:51.200000pt;}
.fs3_c00014{font-size:53.760000pt;}
.fs6_c00014{font-size:56.320000pt;}
.fsa_c00014{font-size:58.880000pt;}
.fs8_c00014{font-size:61.440000pt;}
.fs0_c00014{font-size:64.000000pt;}
.y0_c00014{bottom:0.000000pt;}
.y61_c00014{bottom:49.280000pt;}
.y5f_c00014{bottom:51.840000pt;}
.y60_c00014{bottom:52.480000pt;}
.y5c_c00014{bottom:86.400000pt;}
.y5d_c00014{bottom:87.680000pt;}
.y5e_c00014{bottom:88.960000pt;}
.y5b_c00014{bottom:89.600000pt;}
.y5a_c00014{bottom:90.240000pt;}
.y59_c00014{bottom:124.160000pt;}
.y58_c00014{bottom:124.800000pt;}
.y57_c00014{bottom:127.360000pt;}
.y53_c00014{bottom:161.920000pt;}
.y56_c00014{bottom:162.560000pt;}
.y54_c00014{bottom:163.200000pt;}
.y55_c00014{bottom:164.480000pt;}
.y51_c00014{bottom:165.120000pt;}
.y52_c00014{bottom:165.760000pt;}
.y4f_c00014{bottom:200.320000pt;}
.y4d_c00014{bottom:200.960000pt;}
.y4e_c00014{bottom:202.880000pt;}
.y50_c00014{bottom:203.520000pt;}
.y49_c00014{bottom:238.080000pt;}
.y4b_c00014{bottom:238.720000pt;}
.y4a_c00014{bottom:240.640000pt;}
.y4c_c00014{bottom:241.280000pt;}
.y46_c00014{bottom:276.480000pt;}
.y47_c00014{bottom:277.120000pt;}
.y45_c00014{bottom:278.400000pt;}
.y44_c00014{bottom:279.040000pt;}
.y48_c00014{bottom:279.680000pt;}
.y41_c00014{bottom:314.240000pt;}
.y40_c00014{bottom:314.880000pt;}
.y42_c00014{bottom:316.800000pt;}
.y43_c00014{bottom:317.440000pt;}
.y3d_c00014{bottom:352.000000pt;}
.y3e_c00014{bottom:352.640000pt;}
.y3c_c00014{bottom:354.560000pt;}
.y3f_c00014{bottom:355.200000pt;}
.y39_c00014{bottom:390.400000pt;}
.y38_c00014{bottom:391.040000pt;}
.y3b_c00014{bottom:392.320000pt;}
.y37_c00014{bottom:392.960000pt;}
.y3a_c00014{bottom:393.600000pt;}
.y34_c00014{bottom:427.520000pt;}
.y36_c00014{bottom:428.800000pt;}
.y35_c00014{bottom:430.720000pt;}
.y33_c00014{bottom:431.360000pt;}
.y31_c00014{bottom:465.920000pt;}
.y30_c00014{bottom:466.560000pt;}
.y32_c00014{bottom:467.200000pt;}
.y2f_c00014{bottom:468.480000pt;}
.y2e_c00014{bottom:469.120000pt;}
.y2d_c00014{bottom:504.320000pt;}
.y2b_c00014{bottom:504.960000pt;}
.y2c_c00014{bottom:506.880000pt;}
.y2a_c00014{bottom:507.520000pt;}
.y28_c00014{bottom:542.720000pt;}
.y25_c00014{bottom:543.360000pt;}
.y27_c00014{bottom:544.640000pt;}
.y26_c00014{bottom:545.280000pt;}
.y29_c00014{bottom:545.920000pt;}
.y22_c00014{bottom:580.480000pt;}
.y23_c00014{bottom:583.040000pt;}
.y24_c00014{bottom:583.680000pt;}
.y21_c00014{bottom:617.600000pt;}
.y20_c00014{bottom:618.880000pt;}
.y1f_c00014{bottom:620.800000pt;}
.y1e_c00014{bottom:621.440000pt;}
.y1c_c00014{bottom:656.640000pt;}
.y1d_c00014{bottom:657.280000pt;}
.y1b_c00014{bottom:659.200000pt;}
.y18_c00014{bottom:695.040000pt;}
.y19_c00014{bottom:696.960000pt;}
.y1a_c00014{bottom:697.600000pt;}
.y16_c00014{bottom:732.160000pt;}
.y17_c00014{bottom:732.800000pt;}
.y13_c00014{bottom:734.720000pt;}
.y15_c00014{bottom:735.360000pt;}
.y14_c00014{bottom:736.000000pt;}
.y11_c00014{bottom:770.560000pt;}
.yf_c00014{bottom:772.480000pt;}
.y10_c00014{bottom:773.120000pt;}
.y12_c00014{bottom:773.760000pt;}
.yd_c00014{bottom:808.320000pt;}
.ye_c00014{bottom:810.240000pt;}
.yb_c00014{bottom:810.880000pt;}
.yc_c00014{bottom:811.520000pt;}
.ya_c00014{bottom:846.720000pt;}
.y8_c00014{bottom:847.360000pt;}
.y6_c00014{bottom:848.000000pt;}
.y9_c00014{bottom:848.640000pt;}
.y7_c00014{bottom:849.280000pt;}
.y4_c00014{bottom:884.480000pt;}
.y3_c00014{bottom:885.120000pt;}
.y5_c00014{bottom:887.040000pt;}
.y2_c00014{bottom:887.680000pt;}
.y1_c00014{bottom:970.240000pt;}
.h11_c00014{height:25.341250pt;}
.h7_c00014{height:27.645000pt;}
.h9_c00014{height:29.948750pt;}
.h10_c00014{height:32.252500pt;}
.he_c00014{height:34.556250pt;}
.ha_c00014{height:36.603750pt;}
.h6_c00014{height:36.860000pt;}
.h3_c00014{height:39.163750pt;}
.h4_c00014{height:41.467500pt;}
.hf_c00014{height:43.771250pt;}
.hc_c00014{height:46.075000pt;}
.h5_c00014{height:48.378750pt;}
.h8_c00014{height:50.682500pt;}
.hd_c00014{height:52.986250pt;}
.hb_c00014{height:55.290000pt;}
.h2_c00014{height:57.593750pt;}
.h0_c00014{height:1027.840000pt;}
.h1_c00014{height:1028.000000pt;}
.w1_c00014{width:729.333333pt;}
.w0_c00014{width:729.600000pt;}
.x0_c00014{left:0.000000pt;}
.x59_c00014{left:78.720000pt;}
.x19_c00014{left:83.200000pt;}
.x9_c00014{left:84.480000pt;}
.x56_c00014{left:94.080000pt;}
.x51_c00014{left:112.000000pt;}
.x1e_c00014{left:113.280000pt;}
.x38_c00014{left:121.600000pt;}
.xa_c00014{left:132.480000pt;}
.x3f_c00014{left:142.080000pt;}
.x1a_c00014{left:151.680000pt;}
.x46_c00014{left:160.000000pt;}
.x23_c00014{left:161.280000pt;}
.x1f_c00014{left:170.880000pt;}
.x2_c00014{left:180.480000pt;}
.x1b_c00014{left:189.440000pt;}
.x4c_c00014{left:198.400000pt;}
.x2b_c00014{left:199.680000pt;}
.x24_c00014{left:209.920000pt;}
.x12_c00014{left:217.600000pt;}
.xb_c00014{left:218.880000pt;}
.x39_c00014{left:226.560000pt;}
.x3_c00014{left:228.480000pt;}
.x25_c00014{left:237.440000pt;}
.x40_c00014{left:238.720000pt;}
.x2c_c00014{left:248.320000pt;}
.x52_c00014{left:256.000000pt;}
.xc_c00014{left:257.280000pt;}
.x47_c00014{left:265.600000pt;}
.x42_c00014{left:275.200000pt;}
.x20_c00014{left:277.120000pt;}
.x2d_c00014{left:278.400000pt;}
.x4_c00014{left:286.080000pt;}
.x48_c00014{left:294.400000pt;}
.x13_c00014{left:295.680000pt;}
.x33_c00014{left:304.640000pt;}
.x1c_c00014{left:305.920000pt;}
.x3a_c00014{left:313.600000pt;}
.xd_c00014{left:314.880000pt;}
.x41_c00014{left:324.480000pt;}
.x57_c00014{left:332.800000pt;}
.x26_c00014{left:334.080000pt;}
.x53_c00014{left:342.400000pt;}
.x2e_c00014{left:343.680000pt;}
.x4d_c00014{left:352.000000pt;}
.x21_c00014{left:353.280000pt;}
.x27_c00014{left:361.600000pt;}
.x5_c00014{left:372.480000pt;}
.x5a_c00014{left:380.160000pt;}
.xe_c00014{left:382.080000pt;}
.x4e_c00014{left:390.400000pt;}
.x36_c00014{left:391.680000pt;}
.x14_c00014{left:401.280000pt;}
.xf_c00014{left:410.880000pt;}
.x50_c00014{left:418.560000pt;}
.x34_c00014{left:420.480000pt;}
.x28_c00014{left:429.440000pt;}
.x49_c00014{left:439.040000pt;}
.x22_c00014{left:449.280000pt;}
.x55_c00014{left:457.600000pt;}
.x15_c00014{left:458.880000pt;}
.x4a_c00014{left:467.200000pt;}
.x2f_c00014{left:468.480000pt;}
.x6_c00014{left:477.440000pt;}
.x3e_c00014{left:486.400000pt;}
.x10_c00014{left:487.680000pt;}
.x35_c00014{left:495.360000pt;}
.x7_c00014{left:496.640000pt;}
.x44_c00014{left:506.880000pt;}
.x3b_c00014{left:515.840000pt;}
.x54_c00014{left:524.800000pt;}
.x37_c00014{left:526.080000pt;}
.x4b_c00014{left:533.760000pt;}
.x1d_c00014{left:535.040000pt;}
.x30_c00014{left:544.640000pt;}
.x4f_c00014{left:553.600000pt;}
.x29_c00014{left:554.880000pt;}
.x58_c00014{left:563.200000pt;}
.x16_c00014{left:564.480000pt;}
.x43_c00014{left:572.800000pt;}
.x31_c00014{left:574.080000pt;}
.x2a_c00014{left:584.320000pt;}
.x45_c00014{left:592.000000pt;}
.x17_c00014{left:593.280000pt;}
.x8_c00014{left:602.880000pt;}
.x3c_c00014{left:611.840000pt;}
.x32_c00014{left:613.120000pt;}
.x18_c00014{left:621.440000pt;}
.x3d_c00014{left:631.680000pt;}
.x11_c00014{left:641.280000pt;}
.x1_c00014{left:683.520000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_419ac535c8691e3a049f15e9.woff2')format("woff");}.ff1_c00015{font-family:ff1_c00015;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m13_c00015{transform:matrix(0.221625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221625,0.000000,0.000000,0.250000,0,0);}
.m22_c00015{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.mb_c00015{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m0_c00015{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m5_c00015{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m7_c00015{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);}
.m1a_c00015{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_c00015{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m12_c00015{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);}
.m10_c00015{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m11_c00015{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m6_c00015{transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);}
.m1_c00015{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00015{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m16_c00015{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);}
.md_c00015{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m17_c00015{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);}
.m8_c00015{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m9_c00015{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m2_c00015{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m18_c00015{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);}
.me_c00015{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00015{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.ma_c00015{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);}
.m15_c00015{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_c00015{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m21_c00015{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00015{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m14_c00015{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.mc_c00015{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_c00015{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m4_c00015{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);}
.m19_c00015{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);}
.m20_c00015{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m3_c00015{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_c00015{vertical-align:0.000000px;}
.ls0_c00015{letter-spacing:0.000000px;}
.sc__c00015{text-shadow:none;}
.sc0_c00015{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00015{-webkit-text-stroke:0px transparent;}
.sc0_c00015{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00015{word-spacing:0.000000px;}
.fc0_c00015{color:transparent;}
.fs3_c00015{font-size:34.560000px;}
.fs9_c00015{font-size:37.440000px;}
.fs8_c00015{font-size:46.080000px;}
.fs2_c00015{font-size:48.960000px;}
.fs1_c00015{font-size:51.840000px;}
.fs6_c00015{font-size:57.600000px;}
.fs5_c00015{font-size:60.480000px;}
.fs4_c00015{font-size:63.360000px;}
.fs7_c00015{font-size:66.240000px;}
.fs0_c00015{font-size:69.120000px;}
.y0_c00015{bottom:0.000000px;}
.y1b_c00015{bottom:828.000000px;}
.y1a_c00015{bottom:828.720000px;}
.y18_c00015{bottom:830.880000px;}
.y19_c00015{bottom:831.600000px;}
.y17_c00015{bottom:870.480000px;}
.y13_c00015{bottom:871.200000px;}
.y12_c00015{bottom:872.640000px;}
.y16_c00015{bottom:873.360000px;}
.y15_c00015{bottom:874.080000px;}
.y14_c00015{bottom:874.800000px;}
.ye_c00015{bottom:912.960000px;}
.y10_c00015{bottom:913.680000px;}
.yd_c00015{bottom:915.840000px;}
.yf_c00015{bottom:916.560000px;}
.y11_c00015{bottom:917.280000px;}
.y9_c00015{bottom:955.440000px;}
.ya_c00015{bottom:956.160000px;}
.yc_c00015{bottom:956.880000px;}
.y7_c00015{bottom:958.320000px;}
.yb_c00015{bottom:959.040000px;}
.y8_c00015{bottom:959.760000px;}
.y6_c00015{bottom:998.640000px;}
.y3_c00015{bottom:999.360000px;}
.y2_c00015{bottom:1001.520000px;}
.y5_c00015{bottom:1002.240000px;}
.y4_c00015{bottom:1002.960000px;}
.y1_c00015{bottom:1098.000000px;}
.h5_c00015{height:31.100625px;}
.hb_c00015{height:33.692344px;}
.ha_c00015{height:41.467500px;}
.h4_c00015{height:44.059219px;}
.h3_c00015{height:46.650937px;}
.h8_c00015{height:51.834375px;}
.h7_c00015{height:54.426094px;}
.h6_c00015{height:57.017812px;}
.h9_c00015{height:59.609531px;}
.h2_c00015{height:62.201250px;}
.h0_c00015{height:1159.920000px;}
.h1_c00015{height:1160.250000px;}
.w1_c00015{width:825.000000px;}
.w0_c00015{width:825.120000px;}
.x0_c00015{left:0.000000px;}
.xb_c00015{left:99.360000px;}
.x1f_c00015{left:100.800000px;}
.x17_c00015{left:121.680000px;}
.x20_c00015{left:153.360000px;}
.x18_c00015{left:165.600000px;}
.x26_c00015{left:175.680000px;}
.x19_c00015{left:185.760000px;}
.x27_c00015{left:196.560000px;}
.xc_c00015{left:198.000000px;}
.x2_c00015{left:208.080000px;}
.xd_c00015{left:218.160000px;}
.x3_c00015{left:228.960000px;}
.x21_c00015{left:230.400000px;}
.xe_c00015{left:252.000000px;}
.x4_c00015{left:273.600000px;}
.x1a_c00015{left:293.760000px;}
.x5_c00015{left:315.360000px;}
.xf_c00015{left:336.960000px;}
.x6_c00015{left:347.760000px;}
.x10_c00015{left:358.560000px;}
.x22_c00015{left:379.440000px;}
.x11_c00015{left:390.960000px;}
.x12_c00015{left:424.080000px;}
.x28_c00015{left:433.440000px;}
.x7_c00015{left:444.960000px;}
.x1b_c00015{left:466.560000px;}
.x29_c00015{left:488.160000px;}
.x13_c00015{left:498.960000px;}
.x1c_c00015{left:509.760000px;}
.x2a_c00015{left:520.560000px;}
.x14_c00015{left:532.080000px;}
.x8_c00015{left:542.880000px;}
.x2b_c00015{left:564.480000px;}
.x9_c00015{left:575.280000px;}
.x23_c00015{left:585.360000px;}
.x15_c00015{left:628.560000px;}
.x24_c00015{left:639.360000px;}
.x1d_c00015{left:660.960000px;}
.xa_c00015{left:662.400000px;}
.x16_c00015{left:682.560000px;}
.x25_c00015{left:694.080000px;}
.x1e_c00015{left:726.480000px;}
.x1_c00015{left:746.640000px;}
@media print{
.v0_c00015{vertical-align:0.000000pt;}
.ls0_c00015{letter-spacing:0.000000pt;}
.ws0_c00015{word-spacing:0.000000pt;}
.fs3_c00015{font-size:30.720000pt;}
.fs9_c00015{font-size:33.280000pt;}
.fs8_c00015{font-size:40.960000pt;}
.fs2_c00015{font-size:43.520000pt;}
.fs1_c00015{font-size:46.080000pt;}
.fs6_c00015{font-size:51.200000pt;}
.fs5_c00015{font-size:53.760000pt;}
.fs4_c00015{font-size:56.320000pt;}
.fs7_c00015{font-size:58.880000pt;}
.fs0_c00015{font-size:61.440000pt;}
.y0_c00015{bottom:0.000000pt;}
.y1b_c00015{bottom:736.000000pt;}
.y1a_c00015{bottom:736.640000pt;}
.y18_c00015{bottom:738.560000pt;}
.y19_c00015{bottom:739.200000pt;}
.y17_c00015{bottom:773.760000pt;}
.y13_c00015{bottom:774.400000pt;}
.y12_c00015{bottom:775.680000pt;}
.y16_c00015{bottom:776.320000pt;}
.y15_c00015{bottom:776.960000pt;}
.y14_c00015{bottom:777.600000pt;}
.ye_c00015{bottom:811.520000pt;}
.y10_c00015{bottom:812.160000pt;}
.yd_c00015{bottom:814.080000pt;}
.yf_c00015{bottom:814.720000pt;}
.y11_c00015{bottom:815.360000pt;}
.y9_c00015{bottom:849.280000pt;}
.ya_c00015{bottom:849.920000pt;}
.yc_c00015{bottom:850.560000pt;}
.y7_c00015{bottom:851.840000pt;}
.yb_c00015{bottom:852.480000pt;}
.y8_c00015{bottom:853.120000pt;}
.y6_c00015{bottom:887.680000pt;}
.y3_c00015{bottom:888.320000pt;}
.y2_c00015{bottom:890.240000pt;}
.y5_c00015{bottom:890.880000pt;}
.y4_c00015{bottom:891.520000pt;}
.y1_c00015{bottom:976.000000pt;}
.h5_c00015{height:27.645000pt;}
.hb_c00015{height:29.948750pt;}
.ha_c00015{height:36.860000pt;}
.h4_c00015{height:39.163750pt;}
.h3_c00015{height:41.467500pt;}
.h8_c00015{height:46.075000pt;}
.h7_c00015{height:48.378750pt;}
.h6_c00015{height:50.682500pt;}
.h9_c00015{height:52.986250pt;}
.h2_c00015{height:55.290000pt;}
.h0_c00015{height:1031.040000pt;}
.h1_c00015{height:1031.333333pt;}
.w1_c00015{width:733.333333pt;}
.w0_c00015{width:733.440000pt;}
.x0_c00015{left:0.000000pt;}
.xb_c00015{left:88.320000pt;}
.x1f_c00015{left:89.600000pt;}
.x17_c00015{left:108.160000pt;}
.x20_c00015{left:136.320000pt;}
.x18_c00015{left:147.200000pt;}
.x26_c00015{left:156.160000pt;}
.x19_c00015{left:165.120000pt;}
.x27_c00015{left:174.720000pt;}
.xc_c00015{left:176.000000pt;}
.x2_c00015{left:184.960000pt;}
.xd_c00015{left:193.920000pt;}
.x3_c00015{left:203.520000pt;}
.x21_c00015{left:204.800000pt;}
.xe_c00015{left:224.000000pt;}
.x4_c00015{left:243.200000pt;}
.x1a_c00015{left:261.120000pt;}
.x5_c00015{left:280.320000pt;}
.xf_c00015{left:299.520000pt;}
.x6_c00015{left:309.120000pt;}
.x10_c00015{left:318.720000pt;}
.x22_c00015{left:337.280000pt;}
.x11_c00015{left:347.520000pt;}
.x12_c00015{left:376.960000pt;}
.x28_c00015{left:385.280000pt;}
.x7_c00015{left:395.520000pt;}
.x1b_c00015{left:414.720000pt;}
.x29_c00015{left:433.920000pt;}
.x13_c00015{left:443.520000pt;}
.x1c_c00015{left:453.120000pt;}
.x2a_c00015{left:462.720000pt;}
.x14_c00015{left:472.960000pt;}
.x8_c00015{left:482.560000pt;}
.x2b_c00015{left:501.760000pt;}
.x9_c00015{left:511.360000pt;}
.x23_c00015{left:520.320000pt;}
.x15_c00015{left:558.720000pt;}
.x24_c00015{left:568.320000pt;}
.x1d_c00015{left:587.520000pt;}
.xa_c00015{left:588.800000pt;}
.x16_c00015{left:606.720000pt;}
.x25_c00015{left:616.960000pt;}
.x1e_c00015{left:645.760000pt;}
.x1_c00015{left:663.680000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_435a3eeba390170b89d6d4cd.woff2')format("woff");}.ff1_c00016{font-family:ff1_c00016;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m51_c00016{transform:matrix(0.229625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229625,0.000000,0.000000,0.250000,0,0);}
.m5_c00016{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00016{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m45_c00016{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);}
.m54_c00016{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m52_c00016{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00016{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m38_c00016{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m44_c00016{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1_c00016{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m2_c00016{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00016{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m40_c00016{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m56_c00016{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00016{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m3_c00016{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);}
.m3b_c00016{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);}
.m35_c00016{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);}
.m4e_c00016{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m6_c00016{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m29_c00016{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m8_c00016{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.ma_c00016{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00016{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);}
.m0_c00016{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00016{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m18_c00016{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m4_c00016{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);}
.m59_c00016{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m33_c00016{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00016{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);}
.m3f_c00016{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m31_c00016{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);}
.m2b_c00016{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);}
.m12_c00016{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);}
.m36_c00016{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00016{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00016{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);}
.m53_c00016{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);}
.m10_c00016{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);}
.m43_c00016{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00016{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m22_c00016{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m37_c00016{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);}
.mb_c00016{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.mf_c00016{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m48_c00016{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);}
.m41_c00016{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_c00016{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m27_c00016{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00016{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m7_c00016{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);}
.m15_c00016{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m47_c00016{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m17_c00016{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00016{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m28_c00016{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m32_c00016{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m50_c00016{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00016{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m20_c00016{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);}
.m49_c00016{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);}
.m13_c00016{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.md_c00016{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m25_c00016{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);}
.m4c_c00016{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m57_c00016{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m14_c00016{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m34_c00016{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);}
.m24_c00016{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00016{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);}
.m21_c00016{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00016{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);}
.m55_c00016{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);}
.m2e_c00016{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m26_c00016{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m30_c00016{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.mc_c00016{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00016{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m23_c00016{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);}
.m4a_c00016{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m16_c00016{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);}
.m19_c00016{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m46_c00016{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m58_c00016{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m11_c00016{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.me_c00016{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.m39_c00016{transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00016{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.m42_c00016{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.v0_c00016{vertical-align:0.000000px;}
.ls0_c00016{letter-spacing:0.000000px;}
.sc__c00016{text-shadow:none;}
.sc0_c00016{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00016{-webkit-text-stroke:0px transparent;}
.sc0_c00016{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00016{word-spacing:-0.150480px;}
.ws2_c00016{word-spacing:0.000000px;}
.ws1_c00016{word-spacing:5.231520px;}
.fc0_c00016{color:transparent;}
.fs7_c00016{font-size:34.560000px;}
.fs8_c00016{font-size:37.440000px;}
.fsb_c00016{font-size:40.320000px;}
.fs2_c00016{font-size:43.200000px;}
.fs4_c00016{font-size:46.080000px;}
.fs1_c00016{font-size:48.960000px;}
.fs6_c00016{font-size:51.840000px;}
.fs9_c00016{font-size:54.720000px;}
.fsc_c00016{font-size:57.600000px;}
.fs3_c00016{font-size:60.480000px;}
.fs5_c00016{font-size:63.360000px;}
.fsa_c00016{font-size:66.240000px;}
.fs0_c00016{font-size:69.120000px;}
.fse_c00016{font-size:72.000000px;}
.fsd_c00016{font-size:74.880000px;}
.y0_c00016{bottom:0.000000px;}
.y5a_c00016{bottom:48.960000px;}
.y59_c00016{bottom:49.680000px;}
.y58_c00016{bottom:51.840000px;}
.y57_c00016{bottom:52.560000px;}
.y54_c00016{bottom:92.160000px;}
.y56_c00016{bottom:92.880000px;}
.y55_c00016{bottom:95.040000px;}
.y53_c00016{bottom:95.760000px;}
.y50_c00016{bottom:134.640000px;}
.y4f_c00016{bottom:135.360000px;}
.y52_c00016{bottom:136.800000px;}
.y51_c00016{bottom:137.520000px;}
.y4e_c00016{bottom:177.120000px;}
.y4d_c00016{bottom:179.280000px;}
.y4c_c00016{bottom:180.000000px;}
.y4b_c00016{bottom:219.600000px;}
.y4a_c00016{bottom:220.320000px;}
.y48_c00016{bottom:222.480000px;}
.y49_c00016{bottom:223.200000px;}
.y45_c00016{bottom:262.080000px;}
.y44_c00016{bottom:262.800000px;}
.y47_c00016{bottom:264.960000px;}
.y46_c00016{bottom:265.680000px;}
.y43_c00016{bottom:266.400000px;}
.y3f_c00016{bottom:316.080000px;}
.y40_c00016{bottom:316.800000px;}
.y42_c00016{bottom:317.520000px;}
.y41_c00016{bottom:318.240000px;}
.y3e_c00016{bottom:318.960000px;}
.y3d_c00016{bottom:361.440000px;}
.y3c_c00016{bottom:362.160000px;}
.y39_c00016{bottom:401.040000px;}
.y3b_c00016{bottom:401.760000px;}
.y3a_c00016{bottom:403.920000px;}
.y38_c00016{bottom:404.640000px;}
.y37_c00016{bottom:442.800000px;}
.y33_c00016{bottom:444.240000px;}
.y36_c00016{bottom:444.960000px;}
.y34_c00016{bottom:446.400000px;}
.y35_c00016{bottom:447.120000px;}
.y32_c00016{bottom:447.840000px;}
.y31_c00016{bottom:486.720000px;}
.y2f_c00016{bottom:487.440000px;}
.y30_c00016{bottom:489.600000px;}
.y2e_c00016{bottom:490.320000px;}
.y2b_c00016{bottom:540.720000px;}
.y2d_c00016{bottom:542.160000px;}
.y2c_c00016{bottom:542.880000px;}
.y29_c00016{bottom:543.600000px;}
.y2a_c00016{bottom:544.320000px;}
.y28_c00016{bottom:583.200000px;}
.y24_c00016{bottom:583.920000px;}
.y27_c00016{bottom:585.360000px;}
.y25_c00016{bottom:586.080000px;}
.y26_c00016{bottom:586.800000px;}
.y22_c00016{bottom:625.680000px;}
.y23_c00016{bottom:626.400000px;}
.y21_c00016{bottom:628.560000px;}
.y20_c00016{bottom:668.160000px;}
.y1f_c00016{bottom:668.880000px;}
.y1e_c00016{bottom:671.040000px;}
.y1d_c00016{bottom:671.760000px;}
.y1b_c00016{bottom:711.360000px;}
.y1a_c00016{bottom:712.080000px;}
.y1c_c00016{bottom:713.520000px;}
.y19_c00016{bottom:714.240000px;}
.y18_c00016{bottom:766.800000px;}
.y14_c00016{bottom:806.400000px;}
.y16_c00016{bottom:807.120000px;}
.y13_c00016{bottom:807.840000px;}
.y17_c00016{bottom:809.280000px;}
.y15_c00016{bottom:810.000000px;}
.y12_c00016{bottom:849.600000px;}
.y11_c00016{bottom:850.320000px;}
.ye_c00016{bottom:852.480000px;}
.yf_c00016{bottom:853.200000px;}
.y10_c00016{bottom:853.920000px;}
.ya_c00016{bottom:892.800000px;}
.yc_c00016{bottom:893.520000px;}
.yd_c00016{bottom:894.960000px;}
.y9_c00016{bottom:895.680000px;}
.yb_c00016{bottom:896.400000px;}
.y6_c00016{bottom:936.000000px;}
.y5_c00016{bottom:936.720000px;}
.y8_c00016{bottom:937.440000px;}
.y7_c00016{bottom:938.160000px;}
.y4_c00016{bottom:938.880000px;}
.y3_c00016{bottom:1002.960000px;}
.y2_c00016{bottom:1003.680000px;}
.y1_c00016{bottom:1088.640000px;}
.h9_c00016{height:31.100625px;}
.ha_c00016{height:33.692344px;}
.hd_c00016{height:36.284062px;}
.h4_c00016{height:38.875781px;}
.h6_c00016{height:41.467500px;}
.h3_c00016{height:44.059219px;}
.h8_c00016{height:46.650937px;}
.hb_c00016{height:49.242656px;}
.he_c00016{height:51.834375px;}
.h5_c00016{height:54.426094px;}
.h7_c00016{height:57.017812px;}
.hc_c00016{height:59.609531px;}
.h2_c00016{height:62.201250px;}
.h10_c00016{height:64.792969px;}
.hf_c00016{height:67.384687px;}
.h1_c00016{height:1146.750000px;}
.h0_c00016{height:1146.960000px;}
.w1_c00016{width:821.250000px;}
.w0_c00016{width:821.520000px;}
.x0_c00016{left:0.000000px;}
.xe_c00016{left:100.080000px;}
.x16_c00016{left:101.520000px;}
.x54_c00016{left:102.960000px;}
.x46_c00016{left:131.760000px;}
.xf_c00016{left:133.200000px;}
.x37_c00016{left:144.000000px;}
.x57_c00016{left:146.160000px;}
.x41_c00016{left:154.080000px;}
.x2c_c00016{left:155.520000px;}
.x38_c00016{left:164.160000px;}
.x10_c00016{left:176.400000px;}
.x2d_c00016{left:186.480000px;}
.x4b_c00016{left:187.920000px;}
.x1d_c00016{left:198.000000px;}
.x3d_c00016{left:208.080000px;}
.x7_c00016{left:209.520000px;}
.x11_c00016{left:219.600000px;}
.x39_c00016{left:229.680000px;}
.x3e_c00016{left:240.480000px;}
.x58_c00016{left:241.920000px;}
.x8_c00016{left:252.720000px;}
.x4c_c00016{left:261.360000px;}
.x2_c00016{left:263.520000px;}
.x5b_c00016{left:272.160000px;}
.x47_c00016{left:273.600000px;}
.x42_c00016{left:283.680000px;}
.x12_c00016{left:285.120000px;}
.x1e_c00016{left:295.920000px;}
.x25_c00016{left:306.000000px;}
.x43_c00016{left:316.080000px;}
.x17_c00016{left:317.520000px;}
.x4d_c00016{left:326.160000px;}
.x9_c00016{left:328.320000px;}
.x55_c00016{left:336.240000px;}
.x3_c00016{left:337.680000px;}
.x3a_c00016{left:348.480000px;}
.x2e_c00016{left:360.000000px;}
.x1f_c00016{left:370.080000px;}
.x3b_c00016{left:380.880000px;}
.x26_c00016{left:382.320000px;}
.x48_c00016{left:391.680000px;}
.x13_c00016{left:393.120000px;}
.x2f_c00016{left:403.200000px;}
.x20_c00016{left:414.720000px;}
.x59_c00016{left:423.360000px;}
.x4_c00016{left:425.520000px;}
.x27_c00016{left:435.600000px;}
.x5c_c00016{left:444.960000px;}
.x21_c00016{left:446.400000px;}
.x5_c00016{left:456.480000px;}
.x18_c00016{left:468.000000px;}
.x3c_c00016{left:478.080000px;}
.x30_c00016{left:488.880000px;}
.x6_c00016{left:490.320000px;}
.x35_c00016{left:498.960000px;}
.x19_c00016{left:501.120000px;}
.x52_c00016{left:509.760000px;}
.x44_c00016{left:511.200000px;}
.x5a_c00016{left:520.560000px;}
.xa_c00016{left:522.720000px;}
.x1a_c00016{left:532.080000px;}
.x22_c00016{left:533.520000px;}
.x49_c00016{left:542.160000px;}
.x28_c00016{left:543.600000px;}
.x4e_c00016{left:552.960000px;}
.x23_c00016{left:555.120000px;}
.x36_c00016{left:563.760000px;}
.x32_c00016{left:565.200000px;}
.x29_c00016{left:576.000000px;}
.x4a_c00016{left:586.080000px;}
.x4f_c00016{left:596.160000px;}
.x1b_c00016{left:597.600000px;}
.x53_c00016{left:606.960000px;}
.x2a_c00016{left:608.400000px;}
.x45_c00016{left:609.840000px;}
.x14_c00016{left:619.200000px;}
.x56_c00016{left:628.560000px;}
.x31_c00016{left:630.000000px;}
.x3f_c00016{left:640.080000px;}
.x1c_c00016{left:641.520000px;}
.x24_c00016{left:650.880000px;}
.xb_c00016{left:652.320000px;}
.x50_c00016{left:660.960000px;}
.x5d_c00016{left:662.400000px;}
.xc_c00016{left:684.720000px;}
.x51_c00016{left:693.360000px;}
.x33_c00016{left:694.800000px;}
.x2b_c00016{left:706.320000px;}
.xd_c00016{left:716.400000px;}
.x40_c00016{left:725.760000px;}
.x34_c00016{left:727.200000px;}
.x15_c00016{left:737.280000px;}
.x1_c00016{left:761.760000px;}
@media print{
.v0_c00016{vertical-align:0.000000pt;}
.ls0_c00016{letter-spacing:0.000000pt;}
.ws0_c00016{word-spacing:-0.133760pt;}
.ws2_c00016{word-spacing:0.000000pt;}
.ws1_c00016{word-spacing:4.650240pt;}
.fs7_c00016{font-size:30.720000pt;}
.fs8_c00016{font-size:33.280000pt;}
.fsb_c00016{font-size:35.840000pt;}
.fs2_c00016{font-size:38.400000pt;}
.fs4_c00016{font-size:40.960000pt;}
.fs1_c00016{font-size:43.520000pt;}
.fs6_c00016{font-size:46.080000pt;}
.fs9_c00016{font-size:48.640000pt;}
.fsc_c00016{font-size:51.200000pt;}
.fs3_c00016{font-size:53.760000pt;}
.fs5_c00016{font-size:56.320000pt;}
.fsa_c00016{font-size:58.880000pt;}
.fs0_c00016{font-size:61.440000pt;}
.fse_c00016{font-size:64.000000pt;}
.fsd_c00016{font-size:66.560000pt;}
.y0_c00016{bottom:0.000000pt;}
.y5a_c00016{bottom:43.520000pt;}
.y59_c00016{bottom:44.160000pt;}
.y58_c00016{bottom:46.080000pt;}
.y57_c00016{bottom:46.720000pt;}
.y54_c00016{bottom:81.920000pt;}
.y56_c00016{bottom:82.560000pt;}
.y55_c00016{bottom:84.480000pt;}
.y53_c00016{bottom:85.120000pt;}
.y50_c00016{bottom:119.680000pt;}
.y4f_c00016{bottom:120.320000pt;}
.y52_c00016{bottom:121.600000pt;}
.y51_c00016{bottom:122.240000pt;}
.y4e_c00016{bottom:157.440000pt;}
.y4d_c00016{bottom:159.360000pt;}
.y4c_c00016{bottom:160.000000pt;}
.y4b_c00016{bottom:195.200000pt;}
.y4a_c00016{bottom:195.840000pt;}
.y48_c00016{bottom:197.760000pt;}
.y49_c00016{bottom:198.400000pt;}
.y45_c00016{bottom:232.960000pt;}
.y44_c00016{bottom:233.600000pt;}
.y47_c00016{bottom:235.520000pt;}
.y46_c00016{bottom:236.160000pt;}
.y43_c00016{bottom:236.800000pt;}
.y3f_c00016{bottom:280.960000pt;}
.y40_c00016{bottom:281.600000pt;}
.y42_c00016{bottom:282.240000pt;}
.y41_c00016{bottom:282.880000pt;}
.y3e_c00016{bottom:283.520000pt;}
.y3d_c00016{bottom:321.280000pt;}
.y3c_c00016{bottom:321.920000pt;}
.y39_c00016{bottom:356.480000pt;}
.y3b_c00016{bottom:357.120000pt;}
.y3a_c00016{bottom:359.040000pt;}
.y38_c00016{bottom:359.680000pt;}
.y37_c00016{bottom:393.600000pt;}
.y33_c00016{bottom:394.880000pt;}
.y36_c00016{bottom:395.520000pt;}
.y34_c00016{bottom:396.800000pt;}
.y35_c00016{bottom:397.440000pt;}
.y32_c00016{bottom:398.080000pt;}
.y31_c00016{bottom:432.640000pt;}
.y2f_c00016{bottom:433.280000pt;}
.y30_c00016{bottom:435.200000pt;}
.y2e_c00016{bottom:435.840000pt;}
.y2b_c00016{bottom:480.640000pt;}
.y2d_c00016{bottom:481.920000pt;}
.y2c_c00016{bottom:482.560000pt;}
.y29_c00016{bottom:483.200000pt;}
.y2a_c00016{bottom:483.840000pt;}
.y28_c00016{bottom:518.400000pt;}
.y24_c00016{bottom:519.040000pt;}
.y27_c00016{bottom:520.320000pt;}
.y25_c00016{bottom:520.960000pt;}
.y26_c00016{bottom:521.600000pt;}
.y22_c00016{bottom:556.160000pt;}
.y23_c00016{bottom:556.800000pt;}
.y21_c00016{bottom:558.720000pt;}
.y20_c00016{bottom:593.920000pt;}
.y1f_c00016{bottom:594.560000pt;}
.y1e_c00016{bottom:596.480000pt;}
.y1d_c00016{bottom:597.120000pt;}
.y1b_c00016{bottom:632.320000pt;}
.y1a_c00016{bottom:632.960000pt;}
.y1c_c00016{bottom:634.240000pt;}
.y19_c00016{bottom:634.880000pt;}
.y18_c00016{bottom:681.600000pt;}
.y14_c00016{bottom:716.800000pt;}
.y16_c00016{bottom:717.440000pt;}
.y13_c00016{bottom:718.080000pt;}
.y17_c00016{bottom:719.360000pt;}
.y15_c00016{bottom:720.000000pt;}
.y12_c00016{bottom:755.200000pt;}
.y11_c00016{bottom:755.840000pt;}
.ye_c00016{bottom:757.760000pt;}
.yf_c00016{bottom:758.400000pt;}
.y10_c00016{bottom:759.040000pt;}
.ya_c00016{bottom:793.600000pt;}
.yc_c00016{bottom:794.240000pt;}
.yd_c00016{bottom:795.520000pt;}
.y9_c00016{bottom:796.160000pt;}
.yb_c00016{bottom:796.800000pt;}
.y6_c00016{bottom:832.000000pt;}
.y5_c00016{bottom:832.640000pt;}
.y8_c00016{bottom:833.280000pt;}
.y7_c00016{bottom:833.920000pt;}
.y4_c00016{bottom:834.560000pt;}
.y3_c00016{bottom:891.520000pt;}
.y2_c00016{bottom:892.160000pt;}
.y1_c00016{bottom:967.680000pt;}
.h9_c00016{height:27.645000pt;}
.ha_c00016{height:29.948750pt;}
.hd_c00016{height:32.252500pt;}
.h4_c00016{height:34.556250pt;}
.h6_c00016{height:36.860000pt;}
.h3_c00016{height:39.163750pt;}
.h8_c00016{height:41.467500pt;}
.hb_c00016{height:43.771250pt;}
.he_c00016{height:46.075000pt;}
.h5_c00016{height:48.378750pt;}
.h7_c00016{height:50.682500pt;}
.hc_c00016{height:52.986250pt;}
.h2_c00016{height:55.290000pt;}
.h10_c00016{height:57.593750pt;}
.hf_c00016{height:59.897500pt;}
.h1_c00016{height:1019.333333pt;}
.h0_c00016{height:1019.520000pt;}
.w1_c00016{width:730.000000pt;}
.w0_c00016{width:730.240000pt;}
.x0_c00016{left:0.000000pt;}
.xe_c00016{left:88.960000pt;}
.x16_c00016{left:90.240000pt;}
.x54_c00016{left:91.520000pt;}
.x46_c00016{left:117.120000pt;}
.xf_c00016{left:118.400000pt;}
.x37_c00016{left:128.000000pt;}
.x57_c00016{left:129.920000pt;}
.x41_c00016{left:136.960000pt;}
.x2c_c00016{left:138.240000pt;}
.x38_c00016{left:145.920000pt;}
.x10_c00016{left:156.800000pt;}
.x2d_c00016{left:165.760000pt;}
.x4b_c00016{left:167.040000pt;}
.x1d_c00016{left:176.000000pt;}
.x3d_c00016{left:184.960000pt;}
.x7_c00016{left:186.240000pt;}
.x11_c00016{left:195.200000pt;}
.x39_c00016{left:204.160000pt;}
.x3e_c00016{left:213.760000pt;}
.x58_c00016{left:215.040000pt;}
.x8_c00016{left:224.640000pt;}
.x4c_c00016{left:232.320000pt;}
.x2_c00016{left:234.240000pt;}
.x5b_c00016{left:241.920000pt;}
.x47_c00016{left:243.200000pt;}
.x42_c00016{left:252.160000pt;}
.x12_c00016{left:253.440000pt;}
.x1e_c00016{left:263.040000pt;}
.x25_c00016{left:272.000000pt;}
.x43_c00016{left:280.960000pt;}
.x17_c00016{left:282.240000pt;}
.x4d_c00016{left:289.920000pt;}
.x9_c00016{left:291.840000pt;}
.x55_c00016{left:298.880000pt;}
.x3_c00016{left:300.160000pt;}
.x3a_c00016{left:309.760000pt;}
.x2e_c00016{left:320.000000pt;}
.x1f_c00016{left:328.960000pt;}
.x3b_c00016{left:338.560000pt;}
.x26_c00016{left:339.840000pt;}
.x48_c00016{left:348.160000pt;}
.x13_c00016{left:349.440000pt;}
.x2f_c00016{left:358.400000pt;}
.x20_c00016{left:368.640000pt;}
.x59_c00016{left:376.320000pt;}
.x4_c00016{left:378.240000pt;}
.x27_c00016{left:387.200000pt;}
.x5c_c00016{left:395.520000pt;}
.x21_c00016{left:396.800000pt;}
.x5_c00016{left:405.760000pt;}
.x18_c00016{left:416.000000pt;}
.x3c_c00016{left:424.960000pt;}
.x30_c00016{left:434.560000pt;}
.x6_c00016{left:435.840000pt;}
.x35_c00016{left:443.520000pt;}
.x19_c00016{left:445.440000pt;}
.x52_c00016{left:453.120000pt;}
.x44_c00016{left:454.400000pt;}
.x5a_c00016{left:462.720000pt;}
.xa_c00016{left:464.640000pt;}
.x1a_c00016{left:472.960000pt;}
.x22_c00016{left:474.240000pt;}
.x49_c00016{left:481.920000pt;}
.x28_c00016{left:483.200000pt;}
.x4e_c00016{left:491.520000pt;}
.x23_c00016{left:493.440000pt;}
.x36_c00016{left:501.120000pt;}
.x32_c00016{left:502.400000pt;}
.x29_c00016{left:512.000000pt;}
.x4a_c00016{left:520.960000pt;}
.x4f_c00016{left:529.920000pt;}
.x1b_c00016{left:531.200000pt;}
.x53_c00016{left:539.520000pt;}
.x2a_c00016{left:540.800000pt;}
.x45_c00016{left:542.080000pt;}
.x14_c00016{left:550.400000pt;}
.x56_c00016{left:558.720000pt;}
.x31_c00016{left:560.000000pt;}
.x3f_c00016{left:568.960000pt;}
.x1c_c00016{left:570.240000pt;}
.x24_c00016{left:578.560000pt;}
.xb_c00016{left:579.840000pt;}
.x50_c00016{left:587.520000pt;}
.x5d_c00016{left:588.800000pt;}
.xc_c00016{left:608.640000pt;}
.x51_c00016{left:616.320000pt;}
.x33_c00016{left:617.600000pt;}
.x2b_c00016{left:627.840000pt;}
.xd_c00016{left:636.800000pt;}
.x40_c00016{left:645.120000pt;}
.x34_c00016{left:646.400000pt;}
.x15_c00016{left:655.360000pt;}
.x1_c00016{left:677.120000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d44b99dacfa7a771adc616f8.woff2')format("woff");}.ff1_c00017{font-family:ff1_c00017;line-height:1.109863;font-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_c00017{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m20_c00017{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);}
.m4c_c00017{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);}
.m47_c00017{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00017{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m17_c00017{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00017{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m37_c00017{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.md_c00017{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m18_c00017{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m31_c00017{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m27_c00017{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mb_c00017{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);}
.m54_c00017{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m43_c00017{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1_c00017{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_c00017{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m19_c00017{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);}
.m35_c00017{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m5_c00017{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m6_c00017{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m49_c00017{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);}
.m23_c00017{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);}
.m26_c00017{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m10_c00017{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m15_c00017{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);}
.m1d_c00017{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);}
.m2b_c00017{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);}
.m40_c00017{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00017{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);}
.m3b_c00017{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m46_c00017{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);}
.m9_c00017{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);}
.mf_c00017{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00017{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);}
.m1a_c00017{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m36_c00017{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);}
.m1c_c00017{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m45_c00017{transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00017{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);}
.m0_c00017{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00017{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m7_c00017{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00017{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m3_c00017{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00017{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);}
.m57_c00017{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00017{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);}
.m29_c00017{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m25_c00017{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m58_c00017{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m38_c00017{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m50_c00017{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);}
.m2e_c00017{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m16_c00017{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m28_c00017{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);}
.m3c_c00017{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m11_c00017{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00017{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m34_c00017{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m22_c00017{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);}
.m3f_c00017{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);}
.m14_c00017{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m32_c00017{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m48_c00017{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m2_c00017{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);}
.m53_c00017{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00017{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m52_c00017{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m21_c00017{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);}
.m2c_c00017{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m41_c00017{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m30_c00017{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m55_c00017{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m42_c00017{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.mc_c00017{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);}
.m2f_c00017{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m44_c00017{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00017{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m33_c00017{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m39_c00017{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);}
.ma_c00017{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);}
.m4_c00017{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m8_c00017{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);}
.me_c00017{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m51_c00017{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00017{transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);}
.m56_c00017{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.m24_c00017{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.v1_c00017{vertical-align:-11.520000px;}
.v0_c00017{vertical-align:0.000000px;}
.ls0_c00017{letter-spacing:0.000000px;}
.sc__c00017{text-shadow:none;}
.sc0_c00017{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00017{-webkit-text-stroke:0px transparent;}
.sc0_c00017{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00017{word-spacing:-6.609600px;}
.ws1_c00017{word-spacing:-5.531760px;}
.ws2_c00017{word-spacing:0.000000px;}
.fc0_c00017{color:transparent;}
.fs2_c00017{font-size:34.560000px;}
.fs8_c00017{font-size:37.440000px;}
.fsc_c00017{font-size:40.320000px;}
.fsb_c00017{font-size:43.200000px;}
.fs3_c00017{font-size:46.080000px;}
.fs1_c00017{font-size:48.960000px;}
.fs0_c00017{font-size:51.840000px;}
.fsa_c00017{font-size:54.720000px;}
.fs9_c00017{font-size:57.600000px;}
.fs4_c00017{font-size:60.480000px;}
.fs5_c00017{font-size:63.360000px;}
.fs7_c00017{font-size:66.240000px;}
.fs6_c00017{font-size:69.120000px;}
.y0_c00017{bottom:0.000000px;}
.y5d_c00017{bottom:31.680000px;}
.y5c_c00017{bottom:34.560000px;}
.y58_c00017{bottom:73.440000px;}
.y5b_c00017{bottom:74.880000px;}
.y5a_c00017{bottom:75.600000px;}
.y57_c00017{bottom:76.320000px;}
.y59_c00017{bottom:77.040000px;}
.y56_c00017{bottom:115.920000px;}
.y55_c00017{bottom:118.800000px;}
.y54_c00017{bottom:119.520000px;}
.y51_c00017{bottom:159.120000px;}
.y53_c00017{bottom:160.560000px;}
.y52_c00017{bottom:161.280000px;}
.y50_c00017{bottom:162.000000px;}
.y4e_c00017{bottom:211.680000px;}
.y4b_c00017{bottom:212.400000px;}
.y4f_c00017{bottom:213.120000px;}
.y4c_c00017{bottom:213.840000px;}
.y4d_c00017{bottom:214.560000px;}
.y49_c00017{bottom:254.160000px;}
.y4a_c00017{bottom:254.880000px;}
.y48_c00017{bottom:257.040000px;}
.y47_c00017{bottom:257.760000px;}
.y45_c00017{bottom:296.640000px;}
.y44_c00017{bottom:297.360000px;}
.y46_c00017{bottom:300.240000px;}
.y42_c00017{bottom:339.840000px;}
.y40_c00017{bottom:340.560000px;}
.y41_c00017{bottom:342.000000px;}
.y43_c00017{bottom:342.720000px;}
.y3e_c00017{bottom:382.320000px;}
.y3f_c00017{bottom:384.480000px;}
.y3d_c00017{bottom:385.200000px;}
.y3b_c00017{bottom:424.800000px;}
.y3c_c00017{bottom:425.520000px;}
.y3a_c00017{bottom:427.680000px;}
.y39_c00017{bottom:478.800000px;}
.y38_c00017{bottom:480.960000px;}
.y37_c00017{bottom:481.680000px;}
.y35_c00017{bottom:520.560000px;}
.y33_c00017{bottom:521.280000px;}
.y34_c00017{bottom:523.440000px;}
.y36_c00017{bottom:524.160000px;}
.y2f_c00017{bottom:564.480000px;}
.y31_c00017{bottom:565.920000px;}
.y30_c00017{bottom:566.640000px;}
.y32_c00017{bottom:567.360000px;}
.y2e_c00017{bottom:606.960000px;}
.y2c_c00017{bottom:609.120000px;}
.y2d_c00017{bottom:609.840000px;}
.y28_c00017{bottom:648.720000px;}
.y29_c00017{bottom:649.440000px;}
.y2a_c00017{bottom:650.160000px;}
.y27_c00017{bottom:652.320000px;}
.y2b_c00017{bottom:653.040000px;}
.y25_c00017{bottom:692.640000px;}
.y24_c00017{bottom:694.800000px;}
.y26_c00017{bottom:695.520000px;}
.y23_c00017{bottom:735.120000px;}
.y20_c00017{bottom:735.840000px;}
.y1f_c00017{bottom:737.280000px;}
.y21_c00017{bottom:738.000000px;}
.y22_c00017{bottom:738.720000px;}
.y1d_c00017{bottom:779.760000px;}
.y1c_c00017{bottom:780.480000px;}
.y1e_c00017{bottom:781.200000px;}
.y1b_c00017{bottom:820.080000px;}
.y17_c00017{bottom:820.800000px;}
.y19_c00017{bottom:822.960000px;}
.y1a_c00017{bottom:823.680000px;}
.y18_c00017{bottom:824.400000px;}
.y15_c00017{bottom:862.560000px;}
.y16_c00017{bottom:863.280000px;}
.y14_c00017{bottom:864.000000px;}
.y12_c00017{bottom:865.440000px;}
.y13_c00017{bottom:866.160000px;}
.ye_c00017{bottom:905.040000px;}
.y11_c00017{bottom:906.480000px;}
.yf_c00017{bottom:908.640000px;}
.y10_c00017{bottom:909.360000px;}
.yc_c00017{bottom:948.240000px;}
.yd_c00017{bottom:948.960000px;}
.y8_c00017{bottom:950.400000px;}
.ya_c00017{bottom:951.120000px;}
.y9_c00017{bottom:951.840000px;}
.yb_c00017{bottom:952.560000px;}
.y6_c00017{bottom:990.720000px;}
.y5_c00017{bottom:991.440000px;}
.y7_c00017{bottom:992.160000px;}
.y1_c00017{bottom:993.600000px;}
.y2_c00017{bottom:994.320000px;}
.y3_c00017{bottom:995.040000px;}
.y4_c00017{bottom:995.760000px;}
.h4_c00017{height:31.100625px;}
.ha_c00017{height:33.692344px;}
.he_c00017{height:36.284062px;}
.hd_c00017{height:38.875781px;}
.h5_c00017{height:41.467500px;}
.h3_c00017{height:44.059219px;}
.h2_c00017{height:46.650937px;}
.hc_c00017{height:49.242656px;}
.hb_c00017{height:51.834375px;}
.h6_c00017{height:54.426094px;}
.h7_c00017{height:57.017812px;}
.h9_c00017{height:59.609531px;}
.h8_c00017{height:62.201250px;}
.h0_c00017{height:1142.640000px;}
.h1_c00017{height:1143.000000px;}
.w0_c00017{width:816.480000px;}
.w1_c00017{width:816.750000px;}
.x0_c00017{left:0.000000px;}
.x2f_c00017{left:94.320000px;}
.x1_c00017{left:95.760000px;}
.x1b_c00017{left:97.200000px;}
.x3c_c00017{left:98.640000px;}
.x4f_c00017{left:126.000000px;}
.xc_c00017{left:128.160000px;}
.x3f_c00017{left:137.520000px;}
.x3a_c00017{left:149.040000px;}
.xd_c00017{left:159.840000px;}
.x1c_c00017{left:161.280000px;}
.x2_c00017{left:171.360000px;}
.xe_c00017{left:182.160000px;}
.x36_c00017{left:192.960000px;}
.x3d_c00017{left:202.320000px;}
.x3_c00017{left:203.760000px;}
.x40_c00017{left:213.120000px;}
.xf_c00017{left:214.560000px;}
.x4_c00017{left:225.360000px;}
.x4b_c00017{left:235.440000px;}
.x1d_c00017{left:246.240000px;}
.x35_c00017{left:247.680000px;}
.x5_c00017{left:257.760000px;}
.x2b_c00017{left:267.120000px;}
.x1e_c00017{left:280.800000px;}
.x52_c00017{left:288.000000px;}
.x30_c00017{left:289.440000px;}
.x16_c00017{left:290.880000px;}
.x6_c00017{left:300.240000px;}
.x2c_c00017{left:311.040000px;}
.x37_c00017{left:321.840000px;}
.x50_c00017{left:331.200000px;}
.x31_c00017{left:332.640000px;}
.x48_c00017{left:342.000000px;}
.x26_c00017{left:343.440000px;}
.x3e_c00017{left:353.520000px;}
.x10_c00017{left:365.040000px;}
.x53_c00017{left:374.400000px;}
.x7_c00017{left:376.560000px;}
.x49_c00017{left:385.920000px;}
.x17_c00017{left:389.520000px;}
.x32_c00017{left:398.160000px;}
.x54_c00017{left:406.800000px;}
.x8_c00017{left:408.240000px;}
.x4c_c00017{left:417.600000px;}
.x43_c00017{left:419.040000px;}
.x1f_c00017{left:429.840000px;}
.x9_c00017{left:441.360000px;}
.x45_c00017{left:450.000000px;}
.x41_c00017{left:451.440000px;}
.x4a_c00017{left:460.800000px;}
.x2d_c00017{left:462.240000px;}
.x20_c00017{left:473.040000px;}
.x38_c00017{left:475.920000px;}
.x11_c00017{left:483.840000px;}
.x18_c00017{left:485.280000px;}
.x33_c00017{left:494.640000px;}
.x12_c00017{left:504.720000px;}
.x21_c00017{left:516.240000px;}
.x42_c00017{left:527.040000px;}
.x27_c00017{left:537.840000px;}
.x13_c00017{left:539.280000px;}
.x22_c00017{left:548.640000px;}
.x51_c00017{left:557.280000px;}
.x19_c00017{left:559.440000px;}
.x55_c00017{left:560.880000px;}
.xa_c00017{left:580.320000px;}
.x28_c00017{left:581.760000px;}
.x4d_c00017{left:591.120000px;}
.x46_c00017{left:601.200000px;}
.x1a_c00017{left:602.640000px;}
.xb_c00017{left:614.160000px;}
.x44_c00017{left:622.800000px;}
.x23_c00017{left:624.240000px;}
.x4e_c00017{left:632.880000px;}
.x39_c00017{left:635.040000px;}
.x34_c00017{left:637.920000px;}
.x47_c00017{left:644.400000px;}
.x3b_c00017{left:645.840000px;}
.x24_c00017{left:667.440000px;}
.x29_c00017{left:678.240000px;}
.x14_c00017{left:689.760000px;}
.x25_c00017{left:700.560000px;}
.x2e_c00017{left:710.640000px;}
.x15_c00017{left:721.440000px;}
.x2a_c00017{left:732.240000px;}
@media print{
.v1_c00017{vertical-align:-10.240000pt;}
.v0_c00017{vertical-align:0.000000pt;}
.ls0_c00017{letter-spacing:0.000000pt;}
.ws0_c00017{word-spacing:-5.875200pt;}
.ws1_c00017{word-spacing:-4.917120pt;}
.ws2_c00017{word-spacing:0.000000pt;}
.fs2_c00017{font-size:30.720000pt;}
.fs8_c00017{font-size:33.280000pt;}
.fsc_c00017{font-size:35.840000pt;}
.fsb_c00017{font-size:38.400000pt;}
.fs3_c00017{font-size:40.960000pt;}
.fs1_c00017{font-size:43.520000pt;}
.fs0_c00017{font-size:46.080000pt;}
.fsa_c00017{font-size:48.640000pt;}
.fs9_c00017{font-size:51.200000pt;}
.fs4_c00017{font-size:53.760000pt;}
.fs5_c00017{font-size:56.320000pt;}
.fs7_c00017{font-size:58.880000pt;}
.fs6_c00017{font-size:61.440000pt;}
.y0_c00017{bottom:0.000000pt;}
.y5d_c00017{bottom:28.160000pt;}
.y5c_c00017{bottom:30.720000pt;}
.y58_c00017{bottom:65.280000pt;}
.y5b_c00017{bottom:66.560000pt;}
.y5a_c00017{bottom:67.200000pt;}
.y57_c00017{bottom:67.840000pt;}
.y59_c00017{bottom:68.480000pt;}
.y56_c00017{bottom:103.040000pt;}
.y55_c00017{bottom:105.600000pt;}
.y54_c00017{bottom:106.240000pt;}
.y51_c00017{bottom:141.440000pt;}
.y53_c00017{bottom:142.720000pt;}
.y52_c00017{bottom:143.360000pt;}
.y50_c00017{bottom:144.000000pt;}
.y4e_c00017{bottom:188.160000pt;}
.y4b_c00017{bottom:188.800000pt;}
.y4f_c00017{bottom:189.440000pt;}
.y4c_c00017{bottom:190.080000pt;}
.y4d_c00017{bottom:190.720000pt;}
.y49_c00017{bottom:225.920000pt;}
.y4a_c00017{bottom:226.560000pt;}
.y48_c00017{bottom:228.480000pt;}
.y47_c00017{bottom:229.120000pt;}
.y45_c00017{bottom:263.680000pt;}
.y44_c00017{bottom:264.320000pt;}
.y46_c00017{bottom:266.880000pt;}
.y42_c00017{bottom:302.080000pt;}
.y40_c00017{bottom:302.720000pt;}
.y41_c00017{bottom:304.000000pt;}
.y43_c00017{bottom:304.640000pt;}
.y3e_c00017{bottom:339.840000pt;}
.y3f_c00017{bottom:341.760000pt;}
.y3d_c00017{bottom:342.400000pt;}
.y3b_c00017{bottom:377.600000pt;}
.y3c_c00017{bottom:378.240000pt;}
.y3a_c00017{bottom:380.160000pt;}
.y39_c00017{bottom:425.600000pt;}
.y38_c00017{bottom:427.520000pt;}
.y37_c00017{bottom:428.160000pt;}
.y35_c00017{bottom:462.720000pt;}
.y33_c00017{bottom:463.360000pt;}
.y34_c00017{bottom:465.280000pt;}
.y36_c00017{bottom:465.920000pt;}
.y2f_c00017{bottom:501.760000pt;}
.y31_c00017{bottom:503.040000pt;}
.y30_c00017{bottom:503.680000pt;}
.y32_c00017{bottom:504.320000pt;}
.y2e_c00017{bottom:539.520000pt;}
.y2c_c00017{bottom:541.440000pt;}
.y2d_c00017{bottom:542.080000pt;}
.y28_c00017{bottom:576.640000pt;}
.y29_c00017{bottom:577.280000pt;}
.y2a_c00017{bottom:577.920000pt;}
.y27_c00017{bottom:579.840000pt;}
.y2b_c00017{bottom:580.480000pt;}
.y25_c00017{bottom:615.680000pt;}
.y24_c00017{bottom:617.600000pt;}
.y26_c00017{bottom:618.240000pt;}
.y23_c00017{bottom:653.440000pt;}
.y20_c00017{bottom:654.080000pt;}
.y1f_c00017{bottom:655.360000pt;}
.y21_c00017{bottom:656.000000pt;}
.y22_c00017{bottom:656.640000pt;}
.y1d_c00017{bottom:693.120000pt;}
.y1c_c00017{bottom:693.760000pt;}
.y1e_c00017{bottom:694.400000pt;}
.y1b_c00017{bottom:728.960000pt;}
.y17_c00017{bottom:729.600000pt;}
.y19_c00017{bottom:731.520000pt;}
.y1a_c00017{bottom:732.160000pt;}
.y18_c00017{bottom:732.800000pt;}
.y15_c00017{bottom:766.720000pt;}
.y16_c00017{bottom:767.360000pt;}
.y14_c00017{bottom:768.000000pt;}
.y12_c00017{bottom:769.280000pt;}
.y13_c00017{bottom:769.920000pt;}
.ye_c00017{bottom:804.480000pt;}
.y11_c00017{bottom:805.760000pt;}
.yf_c00017{bottom:807.680000pt;}
.y10_c00017{bottom:808.320000pt;}
.yc_c00017{bottom:842.880000pt;}
.yd_c00017{bottom:843.520000pt;}
.y8_c00017{bottom:844.800000pt;}
.ya_c00017{bottom:845.440000pt;}
.y9_c00017{bottom:846.080000pt;}
.yb_c00017{bottom:846.720000pt;}
.y6_c00017{bottom:880.640000pt;}
.y5_c00017{bottom:881.280000pt;}
.y7_c00017{bottom:881.920000pt;}
.y1_c00017{bottom:883.200000pt;}
.y2_c00017{bottom:883.840000pt;}
.y3_c00017{bottom:884.480000pt;}
.y4_c00017{bottom:885.120000pt;}
.h4_c00017{height:27.645000pt;}
.ha_c00017{height:29.948750pt;}
.he_c00017{height:32.252500pt;}
.hd_c00017{height:34.556250pt;}
.h5_c00017{height:36.860000pt;}
.h3_c00017{height:39.163750pt;}
.h2_c00017{height:41.467500pt;}
.hc_c00017{height:43.771250pt;}
.hb_c00017{height:46.075000pt;}
.h6_c00017{height:48.378750pt;}
.h7_c00017{height:50.682500pt;}
.h9_c00017{height:52.986250pt;}
.h8_c00017{height:55.290000pt;}
.h0_c00017{height:1015.680000pt;}
.h1_c00017{height:1016.000000pt;}
.w0_c00017{width:725.760000pt;}
.w1_c00017{width:726.000000pt;}
.x0_c00017{left:0.000000pt;}
.x2f_c00017{left:83.840000pt;}
.x1_c00017{left:85.120000pt;}
.x1b_c00017{left:86.400000pt;}
.x3c_c00017{left:87.680000pt;}
.x4f_c00017{left:112.000000pt;}
.xc_c00017{left:113.920000pt;}
.x3f_c00017{left:122.240000pt;}
.x3a_c00017{left:132.480000pt;}
.xd_c00017{left:142.080000pt;}
.x1c_c00017{left:143.360000pt;}
.x2_c00017{left:152.320000pt;}
.xe_c00017{left:161.920000pt;}
.x36_c00017{left:171.520000pt;}
.x3d_c00017{left:179.840000pt;}
.x3_c00017{left:181.120000pt;}
.x40_c00017{left:189.440000pt;}
.xf_c00017{left:190.720000pt;}
.x4_c00017{left:200.320000pt;}
.x4b_c00017{left:209.280000pt;}
.x1d_c00017{left:218.880000pt;}
.x35_c00017{left:220.160000pt;}
.x5_c00017{left:229.120000pt;}
.x2b_c00017{left:237.440000pt;}
.x1e_c00017{left:249.600000pt;}
.x52_c00017{left:256.000000pt;}
.x30_c00017{left:257.280000pt;}
.x16_c00017{left:258.560000pt;}
.x6_c00017{left:266.880000pt;}
.x2c_c00017{left:276.480000pt;}
.x37_c00017{left:286.080000pt;}
.x50_c00017{left:294.400000pt;}
.x31_c00017{left:295.680000pt;}
.x48_c00017{left:304.000000pt;}
.x26_c00017{left:305.280000pt;}
.x3e_c00017{left:314.240000pt;}
.x10_c00017{left:324.480000pt;}
.x53_c00017{left:332.800000pt;}
.x7_c00017{left:334.720000pt;}
.x49_c00017{left:343.040000pt;}
.x17_c00017{left:346.240000pt;}
.x32_c00017{left:353.920000pt;}
.x54_c00017{left:361.600000pt;}
.x8_c00017{left:362.880000pt;}
.x4c_c00017{left:371.200000pt;}
.x43_c00017{left:372.480000pt;}
.x1f_c00017{left:382.080000pt;}
.x9_c00017{left:392.320000pt;}
.x45_c00017{left:400.000000pt;}
.x41_c00017{left:401.280000pt;}
.x4a_c00017{left:409.600000pt;}
.x2d_c00017{left:410.880000pt;}
.x20_c00017{left:420.480000pt;}
.x38_c00017{left:423.040000pt;}
.x11_c00017{left:430.080000pt;}
.x18_c00017{left:431.360000pt;}
.x33_c00017{left:439.680000pt;}
.x12_c00017{left:448.640000pt;}
.x21_c00017{left:458.880000pt;}
.x42_c00017{left:468.480000pt;}
.x27_c00017{left:478.080000pt;}
.x13_c00017{left:479.360000pt;}
.x22_c00017{left:487.680000pt;}
.x51_c00017{left:495.360000pt;}
.x19_c00017{left:497.280000pt;}
.x55_c00017{left:498.560000pt;}
.xa_c00017{left:515.840000pt;}
.x28_c00017{left:517.120000pt;}
.x4d_c00017{left:525.440000pt;}
.x46_c00017{left:534.400000pt;}
.x1a_c00017{left:535.680000pt;}
.xb_c00017{left:545.920000pt;}
.x44_c00017{left:553.600000pt;}
.x23_c00017{left:554.880000pt;}
.x4e_c00017{left:562.560000pt;}
.x39_c00017{left:564.480000pt;}
.x34_c00017{left:567.040000pt;}
.x47_c00017{left:572.800000pt;}
.x3b_c00017{left:574.080000pt;}
.x24_c00017{left:593.280000pt;}
.x29_c00017{left:602.880000pt;}
.x14_c00017{left:613.120000pt;}
.x25_c00017{left:622.720000pt;}
.x2e_c00017{left:631.680000pt;}
.x15_c00017{left:641.280000pt;}
.x2a_c00017{left:650.880000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_06cb4b34d6baf0bc4589e3d7.woff2')format("woff");}.ff1_c00018{font-family:ff1_c00018;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m39_c00018{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m22_c00018{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m26_c00018{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);}
.m4f_c00018{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m41_c00018{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m50_c00018{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m13_c00018{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m42_c00018{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m0_c00018{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m10_c00018{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m44_c00018{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m56_c00018{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m16_c00018{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m45_c00018{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m34_c00018{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m30_c00018{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m14_c00018{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);}
.m3c_c00018{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.ma_c00018{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m5_c00018{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m19_c00018{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m53_c00018{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);}
.m48_c00018{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m32_c00018{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);}
.m1a_c00018{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);}
.m2e_c00018{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m36_c00018{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m2_c00018{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.mf_c00018{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);}
.m35_c00018{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);}
.m2b_c00018{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00018{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);}
.m46_c00018{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m23_c00018{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);}
.m8_c00018{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);}
.m59_c00018{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);}
.m3e_c00018{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00018{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00018{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);}
.m29_c00018{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m12_c00018{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m47_c00018{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);}
.m15_c00018{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);}
.m27_c00018{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m4_c00018{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m1_c00018{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m18_c00018{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);}
.m2d_c00018{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m52_c00018{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00018{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);}
.m4c_c00018{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00018{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_c00018{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m49_c00018{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m38_c00018{transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);}
.m28_c00018{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00018{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00018{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m58_c00018{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);}
.m24_c00018{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.mb_c00018{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m43_c00018{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m31_c00018{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);}
.m33_c00018{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m11_c00018{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m9_c00018{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00018{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);}
.m17_c00018{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m57_c00018{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.me_c00018{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m25_c00018{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);}
.m2a_c00018{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00018{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m6_c00018{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);}
.m40_c00018{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00018{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);}
.md_c00018{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00018{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);}
.m1d_c00018{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m55_c00018{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00018{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.mc_c00018{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m21_c00018{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m7_c00018{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);}
.m54_c00018{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00018{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);}
.m37_c00018{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m51_c00018{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00018{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00018{transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00018{transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);}
.m3_c00018{transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);}
.v1_c00018{vertical-align:-14.400000px;}
.v0_c00018{vertical-align:0.000000px;}
.ls1_c00018{letter-spacing:0.000000px;}
.ls0_c00018{letter-spacing:30.588720px;}
.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;}
}
.ws1_c00018{word-spacing:0.000000px;}
.ws0_c00018{word-spacing:2.617661px;}
.fc0_c00018{color:transparent;}
.fs5_c00018{font-size:34.560000px;}
.fs6_c00018{font-size:37.440000px;}
.fs8_c00018{font-size:40.320000px;}
.fsd_c00018{font-size:43.200000px;}
.fs4_c00018{font-size:46.080000px;}
.fs3_c00018{font-size:48.960000px;}
.fs1_c00018{font-size:51.840000px;}
.fsa_c00018{font-size:54.720000px;}
.fsc_c00018{font-size:57.600000px;}
.fs2_c00018{font-size:60.480000px;}
.fs9_c00018{font-size:63.360000px;}
.fs7_c00018{font-size:66.240000px;}
.fs0_c00018{font-size:69.120000px;}
.fsb_c00018{font-size:72.000000px;}
.y0_c00018{bottom:0.000000px;}
.y59_c00018{bottom:79.920000px;}
.y58_c00018{bottom:80.640000px;}
.y56_c00018{bottom:81.360000px;}
.y5a_c00018{bottom:82.800000px;}
.y57_c00018{bottom:83.520000px;}
.y55_c00018{bottom:123.120000px;}
.y54_c00018{bottom:125.280000px;}
.y53_c00018{bottom:126.000000px;}
.y52_c00018{bottom:126.720000px;}
.y51_c00018{bottom:164.880000px;}
.y4f_c00018{bottom:167.760000px;}
.y50_c00018{bottom:168.480000px;}
.y4e_c00018{bottom:169.200000px;}
.y4c_c00018{bottom:208.080000px;}
.y4d_c00018{bottom:210.960000px;}
.y4b_c00018{bottom:211.680000px;}
.y48_c00018{bottom:251.280000px;}
.y4a_c00018{bottom:253.440000px;}
.y49_c00018{bottom:254.160000px;}
.y46_c00018{bottom:293.760000px;}
.y47_c00018{bottom:295.920000px;}
.y45_c00018{bottom:296.640000px;}
.y44_c00018{bottom:297.360000px;}
.y3f_c00018{bottom:335.520000px;}
.y41_c00018{bottom:336.240000px;}
.y40_c00018{bottom:338.400000px;}
.y43_c00018{bottom:339.120000px;}
.y42_c00018{bottom:339.840000px;}
.y3e_c00018{bottom:379.440000px;}
.y3d_c00018{bottom:381.600000px;}
.y3c_c00018{bottom:382.320000px;}
.y3b_c00018{bottom:383.040000px;}
.y38_c00018{bottom:421.920000px;}
.y39_c00018{bottom:422.640000px;}
.y37_c00018{bottom:423.360000px;}
.y3a_c00018{bottom:424.800000px;}
.y36_c00018{bottom:464.400000px;}
.y33_c00018{bottom:465.120000px;}
.y35_c00018{bottom:467.280000px;}
.y34_c00018{bottom:468.000000px;}
.y31_c00018{bottom:507.600000px;}
.y32_c00018{bottom:508.320000px;}
.y30_c00018{bottom:509.760000px;}
.y2f_c00018{bottom:510.480000px;}
.y2e_c00018{bottom:550.080000px;}
.y2c_c00018{bottom:552.240000px;}
.y2d_c00018{bottom:552.960000px;}
.y2a_c00018{bottom:602.640000px;}
.y2b_c00018{bottom:604.080000px;}
.y29_c00018{bottom:606.240000px;}
.y27_c00018{bottom:645.840000px;}
.y28_c00018{bottom:646.560000px;}
.y25_c00018{bottom:647.280000px;}
.y26_c00018{bottom:648.720000px;}
.y24_c00018{bottom:649.440000px;}
.y22_c00018{bottom:689.040000px;}
.y21_c00018{bottom:689.760000px;}
.y20_c00018{bottom:691.200000px;}
.y1f_c00018{bottom:691.920000px;}
.y23_c00018{bottom:692.640000px;}
.y1e_c00018{bottom:730.800000px;}
.y1d_c00018{bottom:731.520000px;}
.y1c_c00018{bottom:733.680000px;}
.y1b_c00018{bottom:734.400000px;}
.y1a_c00018{bottom:735.120000px;}
.y19_c00018{bottom:774.000000px;}
.y18_c00018{bottom:774.720000px;}
.y16_c00018{bottom:776.880000px;}
.y17_c00018{bottom:777.600000px;}
.y13_c00018{bottom:817.200000px;}
.y15_c00018{bottom:820.080000px;}
.y14_c00018{bottom:820.800000px;}
.y10_c00018{bottom:859.680000px;}
.y11_c00018{bottom:860.400000px;}
.yf_c00018{bottom:861.120000px;}
.y12_c00018{bottom:862.560000px;}
.ye_c00018{bottom:863.280000px;}
.yd_c00018{bottom:913.680000px;}
.yb_c00018{bottom:915.840000px;}
.yc_c00018{bottom:916.560000px;}
.y8_c00018{bottom:956.160000px;}
.y7_c00018{bottom:958.320000px;}
.ya_c00018{bottom:959.040000px;}
.y9_c00018{bottom:959.760000px;}
.y5_c00018{bottom:999.360000px;}
.y3_c00018{bottom:1000.080000px;}
.y6_c00018{bottom:1001.520000px;}
.y4_c00018{bottom:1002.240000px;}
.y2_c00018{bottom:1002.960000px;}
.y1_c00018{bottom:1090.080000px;}
.h7_c00018{height:31.100625px;}
.h8_c00018{height:33.692344px;}
.ha_c00018{height:36.284062px;}
.hf_c00018{height:38.875781px;}
.h6_c00018{height:41.467500px;}
.h5_c00018{height:44.059219px;}
.h3_c00018{height:46.650937px;}
.hc_c00018{height:49.242656px;}
.he_c00018{height:51.834375px;}
.h4_c00018{height:54.426094px;}
.hb_c00018{height:57.017812px;}
.h9_c00018{height:59.609531px;}
.h2_c00018{height:62.201250px;}
.hd_c00018{height:64.792969px;}
.h1_c00018{height:1148.250000px;}
.h0_c00018{height:1148.400000px;}
.w1_c00018{width:822.750000px;}
.w0_c00018{width:822.960000px;}
.x0_c00018{left:0.000000px;}
.x41_c00018{left:97.920000px;}
.xb_c00018{left:100.080000px;}
.x1b_c00018{left:101.520000px;}
.x24_c00018{left:131.760000px;}
.xc_c00018{left:133.920000px;}
.x1c_c00018{left:142.560000px;}
.x37_c00018{left:144.000000px;}
.x48_c00018{left:162.000000px;}
.x25_c00018{left:164.880000px;}
.x4f_c00018{left:185.040000px;}
.x14_c00018{left:187.200000px;}
.x2a_c00018{left:197.280000px;}
.x2_c00018{left:208.080000px;}
.x4a_c00018{left:218.160000px;}
.x1d_c00018{left:228.960000px;}
.x42_c00018{left:239.760000px;}
.x3_c00018{left:241.200000px;}
.x33_c00018{left:250.560000px;}
.x38_c00018{left:261.360000px;}
.x15_c00018{left:263.520000px;}
.x3d_c00018{left:271.440000px;}
.x2d_c00018{left:273.600000px;}
.x43_c00018{left:282.240000px;}
.xd_c00018{left:283.680000px;}
.x4c_c00018{left:285.120000px;}
.x57_c00018{left:293.040000px;}
.x39_c00018{left:294.480000px;}
.x2e_c00018{left:304.560000px;}
.x26_c00018{left:306.000000px;}
.x5b_c00018{left:313.920000px;}
.xe_c00018{left:316.080000px;}
.x50_c00018{left:325.440000px;}
.x1e_c00018{left:326.880000px;}
.x54_c00018{left:335.520000px;}
.x27_c00018{left:336.960000px;}
.xf_c00018{left:346.320000px;}
.x2f_c00018{left:347.760000px;}
.x51_c00018{left:358.560000px;}
.x1f_c00018{left:360.000000px;}
.x58_c00018{left:368.640000px;}
.x28_c00018{left:370.080000px;}
.x44_c00018{left:380.160000px;}
.x34_c00018{left:382.320000px;}
.x55_c00018{left:389.520000px;}
.x4_c00018{left:391.680000px;}
.x16_c00018{left:393.120000px;}
.x5e_c00018{left:400.320000px;}
.x30_c00018{left:412.560000px;}
.x10_c00018{left:423.360000px;}
.x56_c00018{left:432.720000px;}
.x5_c00018{left:434.160000px;}
.x4d_c00018{left:444.240000px;}
.x3a_c00018{left:445.680000px;}
.x11_c00018{left:455.760000px;}
.x6_c00018{left:465.840000px;}
.x5c_c00018{left:475.920000px;}
.x3e_c00018{left:487.440000px;}
.x20_c00018{left:488.880000px;}
.x17_c00018{left:498.960000px;}
.x45_c00018{left:509.760000px;}
.x21_c00018{left:519.840000px;}
.x7_c00018{left:529.200000px;}
.x12_c00018{left:531.360000px;}
.x52_c00018{left:540.720000px;}
.x18_c00018{left:542.160000px;}
.x3b_c00018{left:544.320000px;}
.x35_c00018{left:552.240000px;}
.x31_c00018{left:563.760000px;}
.x49_c00018{left:573.120000px;}
.x46_c00018{left:574.560000px;}
.x53_c00018{left:583.920000px;}
.x2b_c00018{left:585.360000px;}
.x47_c00018{left:594.720000px;}
.x8_c00018{left:596.160000px;}
.x5d_c00018{left:604.800000px;}
.x29_c00018{left:606.960000px;}
.x4e_c00018{left:616.320000px;}
.x32_c00018{left:617.760000px;}
.x59_c00018{left:627.120000px;}
.x3f_c00018{left:638.640000px;}
.x9_c00018{left:640.080000px;}
.x5f_c00018{left:648.720000px;}
.x19_c00018{left:650.160000px;}
.x22_c00018{left:651.600000px;}
.x2c_c00018{left:660.240000px;}
.xa_c00018{left:671.760000px;}
.x23_c00018{left:682.560000px;}
.x5a_c00018{left:692.640000px;}
.x1a_c00018{left:694.080000px;}
.x36_c00018{left:704.160000px;}
.x13_c00018{left:707.040000px;}
.x4b_c00018{left:713.520000px;}
.x3c_c00018{left:714.960000px;}
.x40_c00018{left:725.760000px;}
.x1_c00018{left:770.400000px;}
@media print{
.v1_c00018{vertical-align:-12.800000pt;}
.v0_c00018{vertical-align:0.000000pt;}
.ls1_c00018{letter-spacing:0.000000pt;}
.ls0_c00018{letter-spacing:27.189973pt;}
.ws1_c00018{word-spacing:0.000000pt;}
.ws0_c00018{word-spacing:2.326810pt;}
.fs5_c00018{font-size:30.720000pt;}
.fs6_c00018{font-size:33.280000pt;}
.fs8_c00018{font-size:35.840000pt;}
.fsd_c00018{font-size:38.400000pt;}
.fs4_c00018{font-size:40.960000pt;}
.fs3_c00018{font-size:43.520000pt;}
.fs1_c00018{font-size:46.080000pt;}
.fsa_c00018{font-size:48.640000pt;}
.fsc_c00018{font-size:51.200000pt;}
.fs2_c00018{font-size:53.760000pt;}
.fs9_c00018{font-size:56.320000pt;}
.fs7_c00018{font-size:58.880000pt;}
.fs0_c00018{font-size:61.440000pt;}
.fsb_c00018{font-size:64.000000pt;}
.y0_c00018{bottom:0.000000pt;}
.y59_c00018{bottom:71.040000pt;}
.y58_c00018{bottom:71.680000pt;}
.y56_c00018{bottom:72.320000pt;}
.y5a_c00018{bottom:73.600000pt;}
.y57_c00018{bottom:74.240000pt;}
.y55_c00018{bottom:109.440000pt;}
.y54_c00018{bottom:111.360000pt;}
.y53_c00018{bottom:112.000000pt;}
.y52_c00018{bottom:112.640000pt;}
.y51_c00018{bottom:146.560000pt;}
.y4f_c00018{bottom:149.120000pt;}
.y50_c00018{bottom:149.760000pt;}
.y4e_c00018{bottom:150.400000pt;}
.y4c_c00018{bottom:184.960000pt;}
.y4d_c00018{bottom:187.520000pt;}
.y4b_c00018{bottom:188.160000pt;}
.y48_c00018{bottom:223.360000pt;}
.y4a_c00018{bottom:225.280000pt;}
.y49_c00018{bottom:225.920000pt;}
.y46_c00018{bottom:261.120000pt;}
.y47_c00018{bottom:263.040000pt;}
.y45_c00018{bottom:263.680000pt;}
.y44_c00018{bottom:264.320000pt;}
.y3f_c00018{bottom:298.240000pt;}
.y41_c00018{bottom:298.880000pt;}
.y40_c00018{bottom:300.800000pt;}
.y43_c00018{bottom:301.440000pt;}
.y42_c00018{bottom:302.080000pt;}
.y3e_c00018{bottom:337.280000pt;}
.y3d_c00018{bottom:339.200000pt;}
.y3c_c00018{bottom:339.840000pt;}
.y3b_c00018{bottom:340.480000pt;}
.y38_c00018{bottom:375.040000pt;}
.y39_c00018{bottom:375.680000pt;}
.y37_c00018{bottom:376.320000pt;}
.y3a_c00018{bottom:377.600000pt;}
.y36_c00018{bottom:412.800000pt;}
.y33_c00018{bottom:413.440000pt;}
.y35_c00018{bottom:415.360000pt;}
.y34_c00018{bottom:416.000000pt;}
.y31_c00018{bottom:451.200000pt;}
.y32_c00018{bottom:451.840000pt;}
.y30_c00018{bottom:453.120000pt;}
.y2f_c00018{bottom:453.760000pt;}
.y2e_c00018{bottom:488.960000pt;}
.y2c_c00018{bottom:490.880000pt;}
.y2d_c00018{bottom:491.520000pt;}
.y2a_c00018{bottom:535.680000pt;}
.y2b_c00018{bottom:536.960000pt;}
.y29_c00018{bottom:538.880000pt;}
.y27_c00018{bottom:574.080000pt;}
.y28_c00018{bottom:574.720000pt;}
.y25_c00018{bottom:575.360000pt;}
.y26_c00018{bottom:576.640000pt;}
.y24_c00018{bottom:577.280000pt;}
.y22_c00018{bottom:612.480000pt;}
.y21_c00018{bottom:613.120000pt;}
.y20_c00018{bottom:614.400000pt;}
.y1f_c00018{bottom:615.040000pt;}
.y23_c00018{bottom:615.680000pt;}
.y1e_c00018{bottom:649.600000pt;}
.y1d_c00018{bottom:650.240000pt;}
.y1c_c00018{bottom:652.160000pt;}
.y1b_c00018{bottom:652.800000pt;}
.y1a_c00018{bottom:653.440000pt;}
.y19_c00018{bottom:688.000000pt;}
.y18_c00018{bottom:688.640000pt;}
.y16_c00018{bottom:690.560000pt;}
.y17_c00018{bottom:691.200000pt;}
.y13_c00018{bottom:726.400000pt;}
.y15_c00018{bottom:728.960000pt;}
.y14_c00018{bottom:729.600000pt;}
.y10_c00018{bottom:764.160000pt;}
.y11_c00018{bottom:764.800000pt;}
.yf_c00018{bottom:765.440000pt;}
.y12_c00018{bottom:766.720000pt;}
.ye_c00018{bottom:767.360000pt;}
.yd_c00018{bottom:812.160000pt;}
.yb_c00018{bottom:814.080000pt;}
.yc_c00018{bottom:814.720000pt;}
.y8_c00018{bottom:849.920000pt;}
.y7_c00018{bottom:851.840000pt;}
.ya_c00018{bottom:852.480000pt;}
.y9_c00018{bottom:853.120000pt;}
.y5_c00018{bottom:888.320000pt;}
.y3_c00018{bottom:888.960000pt;}
.y6_c00018{bottom:890.240000pt;}
.y4_c00018{bottom:890.880000pt;}
.y2_c00018{bottom:891.520000pt;}
.y1_c00018{bottom:968.960000pt;}
.h7_c00018{height:27.645000pt;}
.h8_c00018{height:29.948750pt;}
.ha_c00018{height:32.252500pt;}
.hf_c00018{height:34.556250pt;}
.h6_c00018{height:36.860000pt;}
.h5_c00018{height:39.163750pt;}
.h3_c00018{height:41.467500pt;}
.hc_c00018{height:43.771250pt;}
.he_c00018{height:46.075000pt;}
.h4_c00018{height:48.378750pt;}
.hb_c00018{height:50.682500pt;}
.h9_c00018{height:52.986250pt;}
.h2_c00018{height:55.290000pt;}
.hd_c00018{height:57.593750pt;}
.h1_c00018{height:1020.666667pt;}
.h0_c00018{height:1020.800000pt;}
.w1_c00018{width:731.333333pt;}
.w0_c00018{width:731.520000pt;}
.x0_c00018{left:0.000000pt;}
.x41_c00018{left:87.040000pt;}
.xb_c00018{left:88.960000pt;}
.x1b_c00018{left:90.240000pt;}
.x24_c00018{left:117.120000pt;}
.xc_c00018{left:119.040000pt;}
.x1c_c00018{left:126.720000pt;}
.x37_c00018{left:128.000000pt;}
.x48_c00018{left:144.000000pt;}
.x25_c00018{left:146.560000pt;}
.x4f_c00018{left:164.480000pt;}
.x14_c00018{left:166.400000pt;}
.x2a_c00018{left:175.360000pt;}
.x2_c00018{left:184.960000pt;}
.x4a_c00018{left:193.920000pt;}
.x1d_c00018{left:203.520000pt;}
.x42_c00018{left:213.120000pt;}
.x3_c00018{left:214.400000pt;}
.x33_c00018{left:222.720000pt;}
.x38_c00018{left:232.320000pt;}
.x15_c00018{left:234.240000pt;}
.x3d_c00018{left:241.280000pt;}
.x2d_c00018{left:243.200000pt;}
.x43_c00018{left:250.880000pt;}
.xd_c00018{left:252.160000pt;}
.x4c_c00018{left:253.440000pt;}
.x57_c00018{left:260.480000pt;}
.x39_c00018{left:261.760000pt;}
.x2e_c00018{left:270.720000pt;}
.x26_c00018{left:272.000000pt;}
.x5b_c00018{left:279.040000pt;}
.xe_c00018{left:280.960000pt;}
.x50_c00018{left:289.280000pt;}
.x1e_c00018{left:290.560000pt;}
.x54_c00018{left:298.240000pt;}
.x27_c00018{left:299.520000pt;}
.xf_c00018{left:307.840000pt;}
.x2f_c00018{left:309.120000pt;}
.x51_c00018{left:318.720000pt;}
.x1f_c00018{left:320.000000pt;}
.x58_c00018{left:327.680000pt;}
.x28_c00018{left:328.960000pt;}
.x44_c00018{left:337.920000pt;}
.x34_c00018{left:339.840000pt;}
.x55_c00018{left:346.240000pt;}
.x4_c00018{left:348.160000pt;}
.x16_c00018{left:349.440000pt;}
.x5e_c00018{left:355.840000pt;}
.x30_c00018{left:366.720000pt;}
.x10_c00018{left:376.320000pt;}
.x56_c00018{left:384.640000pt;}
.x5_c00018{left:385.920000pt;}
.x4d_c00018{left:394.880000pt;}
.x3a_c00018{left:396.160000pt;}
.x11_c00018{left:405.120000pt;}
.x6_c00018{left:414.080000pt;}
.x5c_c00018{left:423.040000pt;}
.x3e_c00018{left:433.280000pt;}
.x20_c00018{left:434.560000pt;}
.x17_c00018{left:443.520000pt;}
.x45_c00018{left:453.120000pt;}
.x21_c00018{left:462.080000pt;}
.x7_c00018{left:470.400000pt;}
.x12_c00018{left:472.320000pt;}
.x52_c00018{left:480.640000pt;}
.x18_c00018{left:481.920000pt;}
.x3b_c00018{left:483.840000pt;}
.x35_c00018{left:490.880000pt;}
.x31_c00018{left:501.120000pt;}
.x49_c00018{left:509.440000pt;}
.x46_c00018{left:510.720000pt;}
.x53_c00018{left:519.040000pt;}
.x2b_c00018{left:520.320000pt;}
.x47_c00018{left:528.640000pt;}
.x8_c00018{left:529.920000pt;}
.x5d_c00018{left:537.600000pt;}
.x29_c00018{left:539.520000pt;}
.x4e_c00018{left:547.840000pt;}
.x32_c00018{left:549.120000pt;}
.x59_c00018{left:557.440000pt;}
.x3f_c00018{left:567.680000pt;}
.x9_c00018{left:568.960000pt;}
.x5f_c00018{left:576.640000pt;}
.x19_c00018{left:577.920000pt;}
.x22_c00018{left:579.200000pt;}
.x2c_c00018{left:586.880000pt;}
.xa_c00018{left:597.120000pt;}
.x23_c00018{left:606.720000pt;}
.x5a_c00018{left:615.680000pt;}
.x1a_c00018{left:616.960000pt;}
.x36_c00018{left:625.920000pt;}
.x13_c00018{left:628.480000pt;}
.x4b_c00018{left:634.240000pt;}
.x3c_c00018{left:635.520000pt;}
.x40_c00018{left:645.120000pt;}
.x1_c00018{left:684.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a661689bc2403c1d7365fd18.woff2')format("woff");}.ff1_c00019{font-family:ff1_c00019;line-height:1.109863;font-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_c00019{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m25_c00019{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m16_c00019{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00019{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m43_c00019{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00019{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m28_c00019{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m42_c00019{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00019{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m17_c00019{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m48_c00019{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.md_c00019{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);}
.m53_c00019{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m51_c00019{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00019{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);}
.m2e_c00019{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m40_c00019{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m0_c00019{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00019{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_c00019{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00019{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m24_c00019{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);}
.m41_c00019{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m20_c00019{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);}
.mb_c00019{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);}
.m50_c00019{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_c00019{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);}
.me_c00019{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00019{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);}
.m2f_c00019{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);}
.m29_c00019{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.mf_c00019{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m5_c00019{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00019{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);}
.m2b_c00019{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m15_c00019{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);}
.ma_c00019{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);}
.mc_c00019{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);}
.m45_c00019{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m32_c00019{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m12_c00019{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m2_c00019{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m1_c00019{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);}
.m44_c00019{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m33_c00019{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m31_c00019{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);}
.m21_c00019{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m27_c00019{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);}
.m46_c00019{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00019{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m47_c00019{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00019{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m3_c00019{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_c00019{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m22_c00019{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m34_c00019{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m10_c00019{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);}
.m7_c00019{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m11_c00019{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m14_c00019{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m30_c00019{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00019{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);}
.m4_c00019{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);}
.m38_c00019{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m19_c00019{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);}
.m13_c00019{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00019{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00019{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);}
.m54_c00019{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m49_c00019{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00019{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00019{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00019{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.m37_c00019{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);}
.m9_c00019{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m35_c00019{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m8_c00019{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00019{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m6_c00019{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);}
.m1c_c00019{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);}
.m4a_c00019{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m52_c00019{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m18_c00019{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);}
.m39_c00019{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m36_c00019{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.v0_c00019{vertical-align:0.000000px;}
.ls0_c00019{letter-spacing:0.000000px;}
.sc__c00019{text-shadow:none;}
.sc0_c00019{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00019{-webkit-text-stroke:0px transparent;}
.sc0_c00019{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00019{word-spacing:0.000000px;}
.fc0_c00019{color:transparent;}
.fs4_c00019{font-size:34.560000px;}
.fsa_c00019{font-size:37.440000px;}
.fsc_c00019{font-size:43.200000px;}
.fs2_c00019{font-size:46.080000px;}
.fs3_c00019{font-size:48.960000px;}
.fs1_c00019{font-size:51.840000px;}
.fsb_c00019{font-size:54.720000px;}
.fs7_c00019{font-size:57.600000px;}
.fs9_c00019{font-size:60.480000px;}
.fs5_c00019{font-size:63.360000px;}
.fs6_c00019{font-size:66.240000px;}
.fs0_c00019{font-size:69.120000px;}
.fs8_c00019{font-size:72.000000px;}
.y0_c00019{bottom:0.000000px;}
.y65_c00019{bottom:74.160000px;}
.y67_c00019{bottom:75.600000px;}
.y66_c00019{bottom:76.320000px;}
.y64_c00019{bottom:77.040000px;}
.y63_c00019{bottom:116.640000px;}
.y60_c00019{bottom:117.360000px;}
.y62_c00019{bottom:118.800000px;}
.y61_c00019{bottom:119.520000px;}
.y5e_c00019{bottom:158.400000px;}
.y5b_c00019{bottom:159.120000px;}
.y5d_c00019{bottom:161.280000px;}
.y5c_c00019{bottom:162.000000px;}
.y5f_c00019{bottom:162.720000px;}
.y5a_c00019{bottom:200.880000px;}
.y58_c00019{bottom:201.600000px;}
.y59_c00019{bottom:202.320000px;}
.y57_c00019{bottom:203.760000px;}
.y56_c00019{bottom:204.480000px;}
.y55_c00019{bottom:244.080000px;}
.y53_c00019{bottom:246.240000px;}
.y54_c00019{bottom:246.960000px;}
.y52_c00019{bottom:247.680000px;}
.y4e_c00019{bottom:286.560000px;}
.y4f_c00019{bottom:288.720000px;}
.y50_c00019{bottom:289.440000px;}
.y51_c00019{bottom:290.160000px;}
.y4d_c00019{bottom:328.320000px;}
.y4c_c00019{bottom:329.760000px;}
.y4a_c00019{bottom:331.200000px;}
.y4b_c00019{bottom:331.920000px;}
.y49_c00019{bottom:332.640000px;}
.y44_c00019{bottom:371.520000px;}
.y45_c00019{bottom:372.240000px;}
.y48_c00019{bottom:372.960000px;}
.y43_c00019{bottom:374.400000px;}
.y47_c00019{bottom:375.120000px;}
.y46_c00019{bottom:375.840000px;}
.y40_c00019{bottom:424.800000px;}
.y3e_c00019{bottom:425.520000px;}
.y3f_c00019{bottom:426.960000px;}
.y42_c00019{bottom:427.680000px;}
.y41_c00019{bottom:428.400000px;}
.y3d_c00019{bottom:470.160000px;}
.y3c_c00019{bottom:470.880000px;}
.y3b_c00019{bottom:510.480000px;}
.y38_c00019{bottom:511.200000px;}
.y3a_c00019{bottom:513.360000px;}
.y39_c00019{bottom:514.080000px;}
.y34_c00019{bottom:552.960000px;}
.y37_c00019{bottom:553.680000px;}
.y36_c00019{bottom:555.840000px;}
.y35_c00019{bottom:556.560000px;}
.y33_c00019{bottom:557.280000px;}
.y30_c00019{bottom:596.880000px;}
.y31_c00019{bottom:598.320000px;}
.y2f_c00019{bottom:599.040000px;}
.y32_c00019{bottom:599.760000px;}
.y2c_c00019{bottom:649.440000px;}
.y2d_c00019{bottom:650.160000px;}
.y2e_c00019{bottom:651.600000px;}
.y2a_c00019{bottom:652.320000px;}
.y2b_c00019{bottom:653.040000px;}
.y27_c00019{bottom:692.640000px;}
.y29_c00019{bottom:693.360000px;}
.y26_c00019{bottom:694.800000px;}
.y28_c00019{bottom:695.520000px;}
.y22_c00019{bottom:734.400000px;}
.y24_c00019{bottom:735.840000px;}
.y21_c00019{bottom:738.000000px;}
.y23_c00019{bottom:738.720000px;}
.y25_c00019{bottom:739.440000px;}
.y1c_c00019{bottom:787.680000px;}
.y1f_c00019{bottom:788.400000px;}
.y20_c00019{bottom:789.120000px;}
.y1d_c00019{bottom:791.280000px;}
.y1e_c00019{bottom:792.000000px;}
.y1b_c00019{bottom:830.880000px;}
.y18_c00019{bottom:831.600000px;}
.y17_c00019{bottom:833.040000px;}
.y19_c00019{bottom:833.760000px;}
.y1a_c00019{bottom:834.480000px;}
.y16_c00019{bottom:873.360000px;}
.y12_c00019{bottom:874.080000px;}
.y11_c00019{bottom:875.520000px;}
.y15_c00019{bottom:876.240000px;}
.y13_c00019{bottom:876.960000px;}
.y14_c00019{bottom:877.680000px;}
.ye_c00019{bottom:916.560000px;}
.y10_c00019{bottom:917.280000px;}
.yc_c00019{bottom:918.000000px;}
.yb_c00019{bottom:918.720000px;}
.yd_c00019{bottom:919.440000px;}
.yf_c00019{bottom:920.160000px;}
.y6_c00019{bottom:957.600000px;}
.ya_c00019{bottom:959.040000px;}
.y9_c00019{bottom:959.760000px;}
.y7_c00019{bottom:961.920000px;}
.y8_c00019{bottom:962.640000px;}
.y3_c00019{bottom:1002.240000px;}
.y2_c00019{bottom:1003.680000px;}
.y4_c00019{bottom:1005.120000px;}
.y5_c00019{bottom:1005.840000px;}
.y1_c00019{bottom:1082.160000px;}
.h6_c00019{height:31.100625px;}
.hc_c00019{height:33.692344px;}
.he_c00019{height:38.875781px;}
.h4_c00019{height:41.467500px;}
.h5_c00019{height:44.059219px;}
.h3_c00019{height:46.650937px;}
.hd_c00019{height:49.242656px;}
.h9_c00019{height:51.834375px;}
.hb_c00019{height:54.426094px;}
.h7_c00019{height:57.017812px;}
.h8_c00019{height:59.609531px;}
.h2_c00019{height:62.201250px;}
.ha_c00019{height:64.792969px;}
.h1_c00019{height:1143.750000px;}
.h0_c00019{height:1144.080000px;}
.w0_c00019{width:817.200000px;}
.w1_c00019{width:817.500000px;}
.x0_c00019{left:0.000000px;}
.x2_c00019{left:95.760000px;}
.xd_c00019{left:97.200000px;}
.x4b_c00019{left:127.440000px;}
.x18_c00019{left:128.880000px;}
.x43_c00019{left:138.240000px;}
.x30_c00019{left:139.680000px;}
.x3_c00019{left:149.040000px;}
.x39_c00019{left:161.280000px;}
.x21_c00019{left:171.360000px;}
.x12_c00019{left:182.880000px;}
.x4_c00019{left:192.240000px;}
.x34_c00019{left:203.040000px;}
.x19_c00019{left:204.480000px;}
.x4a_c00019{left:214.560000px;}
.x28_c00019{left:216.000000px;}
.x3a_c00019{left:225.360000px;}
.x36_c00019{left:236.160000px;}
.x2d_c00019{left:237.600000px;}
.x3e_c00019{left:246.960000px;}
.x5_c00019{left:257.760000px;}
.x1a_c00019{left:269.280000px;}
.x44_c00019{left:278.640000px;}
.x1b_c00019{left:290.160000px;}
.x6_c00019{left:300.960000px;}
.x13_c00019{left:313.200000px;}
.x1c_c00019{left:322.560000px;}
.x40_c00019{left:333.360000px;}
.x47_c00019{left:343.440000px;}
.x31_c00019{left:344.880000px;}
.x29_c00019{left:354.960000px;}
.x1d_c00019{left:365.760000px;}
.x22_c00019{left:376.560000px;}
.x2e_c00019{left:387.360000px;}
.x2a_c00019{left:388.800000px;}
.x1e_c00019{left:397.440000px;}
.x3b_c00019{left:399.600000px;}
.x7_c00019{left:408.960000px;}
.xe_c00019{left:420.480000px;}
.x23_c00019{left:430.560000px;}
.x8_c00019{left:441.360000px;}
.x4d_c00019{left:451.440000px;}
.x14_c00019{left:452.880000px;}
.x35_c00019{left:462.240000px;}
.x4c_c00019{left:464.400000px;}
.x41_c00019{left:473.760000px;}
.x37_c00019{left:483.840000px;}
.x3f_c00019{left:485.280000px;}
.x24_c00019{left:493.920000px;}
.xf_c00019{left:495.360000px;}
.x15_c00019{left:505.440000px;}
.x10_c00019{left:527.760000px;}
.x16_c00019{left:538.560000px;}
.x2b_c00019{left:548.640000px;}
.x3c_c00019{left:550.800000px;}
.x9_c00019{left:560.160000px;}
.x42_c00019{left:570.960000px;}
.x45_c00019{left:573.120000px;}
.xa_c00019{left:591.840000px;}
.x1f_c00019{left:593.280000px;}
.x25_c00019{left:595.440000px;}
.x11_c00019{left:602.640000px;}
.x20_c00019{left:624.240000px;}
.x2c_c00019{left:635.040000px;}
.x46_c00019{left:637.200000px;}
.x26_c00019{left:646.560000px;}
.x38_c00019{left:648.000000px;}
.xb_c00019{left:657.360000px;}
.x17_c00019{left:669.600000px;}
.x49_c00019{left:678.240000px;}
.x27_c00019{left:679.680000px;}
.x32_c00019{left:689.760000px;}
.x3d_c00019{left:691.200000px;}
.xc_c00019{left:701.280000px;}
.x48_c00019{left:710.640000px;}
.x2f_c00019{left:712.800000px;}
.x33_c00019{left:722.160000px;}
.x1_c00019{left:747.360000px;}
@media print{
.v0_c00019{vertical-align:0.000000pt;}
.ls0_c00019{letter-spacing:0.000000pt;}
.ws0_c00019{word-spacing:0.000000pt;}
.fs4_c00019{font-size:30.720000pt;}
.fsa_c00019{font-size:33.280000pt;}
.fsc_c00019{font-size:38.400000pt;}
.fs2_c00019{font-size:40.960000pt;}
.fs3_c00019{font-size:43.520000pt;}
.fs1_c00019{font-size:46.080000pt;}
.fsb_c00019{font-size:48.640000pt;}
.fs7_c00019{font-size:51.200000pt;}
.fs9_c00019{font-size:53.760000pt;}
.fs5_c00019{font-size:56.320000pt;}
.fs6_c00019{font-size:58.880000pt;}
.fs0_c00019{font-size:61.440000pt;}
.fs8_c00019{font-size:64.000000pt;}
.y0_c00019{bottom:0.000000pt;}
.y65_c00019{bottom:65.920000pt;}
.y67_c00019{bottom:67.200000pt;}
.y66_c00019{bottom:67.840000pt;}
.y64_c00019{bottom:68.480000pt;}
.y63_c00019{bottom:103.680000pt;}
.y60_c00019{bottom:104.320000pt;}
.y62_c00019{bottom:105.600000pt;}
.y61_c00019{bottom:106.240000pt;}
.y5e_c00019{bottom:140.800000pt;}
.y5b_c00019{bottom:141.440000pt;}
.y5d_c00019{bottom:143.360000pt;}
.y5c_c00019{bottom:144.000000pt;}
.y5f_c00019{bottom:144.640000pt;}
.y5a_c00019{bottom:178.560000pt;}
.y58_c00019{bottom:179.200000pt;}
.y59_c00019{bottom:179.840000pt;}
.y57_c00019{bottom:181.120000pt;}
.y56_c00019{bottom:181.760000pt;}
.y55_c00019{bottom:216.960000pt;}
.y53_c00019{bottom:218.880000pt;}
.y54_c00019{bottom:219.520000pt;}
.y52_c00019{bottom:220.160000pt;}
.y4e_c00019{bottom:254.720000pt;}
.y4f_c00019{bottom:256.640000pt;}
.y50_c00019{bottom:257.280000pt;}
.y51_c00019{bottom:257.920000pt;}
.y4d_c00019{bottom:291.840000pt;}
.y4c_c00019{bottom:293.120000pt;}
.y4a_c00019{bottom:294.400000pt;}
.y4b_c00019{bottom:295.040000pt;}
.y49_c00019{bottom:295.680000pt;}
.y44_c00019{bottom:330.240000pt;}
.y45_c00019{bottom:330.880000pt;}
.y48_c00019{bottom:331.520000pt;}
.y43_c00019{bottom:332.800000pt;}
.y47_c00019{bottom:333.440000pt;}
.y46_c00019{bottom:334.080000pt;}
.y40_c00019{bottom:377.600000pt;}
.y3e_c00019{bottom:378.240000pt;}
.y3f_c00019{bottom:379.520000pt;}
.y42_c00019{bottom:380.160000pt;}
.y41_c00019{bottom:380.800000pt;}
.y3d_c00019{bottom:417.920000pt;}
.y3c_c00019{bottom:418.560000pt;}
.y3b_c00019{bottom:453.760000pt;}
.y38_c00019{bottom:454.400000pt;}
.y3a_c00019{bottom:456.320000pt;}
.y39_c00019{bottom:456.960000pt;}
.y34_c00019{bottom:491.520000pt;}
.y37_c00019{bottom:492.160000pt;}
.y36_c00019{bottom:494.080000pt;}
.y35_c00019{bottom:494.720000pt;}
.y33_c00019{bottom:495.360000pt;}
.y30_c00019{bottom:530.560000pt;}
.y31_c00019{bottom:531.840000pt;}
.y2f_c00019{bottom:532.480000pt;}
.y32_c00019{bottom:533.120000pt;}
.y2c_c00019{bottom:577.280000pt;}
.y2d_c00019{bottom:577.920000pt;}
.y2e_c00019{bottom:579.200000pt;}
.y2a_c00019{bottom:579.840000pt;}
.y2b_c00019{bottom:580.480000pt;}
.y27_c00019{bottom:615.680000pt;}
.y29_c00019{bottom:616.320000pt;}
.y26_c00019{bottom:617.600000pt;}
.y28_c00019{bottom:618.240000pt;}
.y22_c00019{bottom:652.800000pt;}
.y24_c00019{bottom:654.080000pt;}
.y21_c00019{bottom:656.000000pt;}
.y23_c00019{bottom:656.640000pt;}
.y25_c00019{bottom:657.280000pt;}
.y1c_c00019{bottom:700.160000pt;}
.y1f_c00019{bottom:700.800000pt;}
.y20_c00019{bottom:701.440000pt;}
.y1d_c00019{bottom:703.360000pt;}
.y1e_c00019{bottom:704.000000pt;}
.y1b_c00019{bottom:738.560000pt;}
.y18_c00019{bottom:739.200000pt;}
.y17_c00019{bottom:740.480000pt;}
.y19_c00019{bottom:741.120000pt;}
.y1a_c00019{bottom:741.760000pt;}
.y16_c00019{bottom:776.320000pt;}
.y12_c00019{bottom:776.960000pt;}
.y11_c00019{bottom:778.240000pt;}
.y15_c00019{bottom:778.880000pt;}
.y13_c00019{bottom:779.520000pt;}
.y14_c00019{bottom:780.160000pt;}
.ye_c00019{bottom:814.720000pt;}
.y10_c00019{bottom:815.360000pt;}
.yc_c00019{bottom:816.000000pt;}
.yb_c00019{bottom:816.640000pt;}
.yd_c00019{bottom:817.280000pt;}
.yf_c00019{bottom:817.920000pt;}
.y6_c00019{bottom:851.200000pt;}
.ya_c00019{bottom:852.480000pt;}
.y9_c00019{bottom:853.120000pt;}
.y7_c00019{bottom:855.040000pt;}
.y8_c00019{bottom:855.680000pt;}
.y3_c00019{bottom:890.880000pt;}
.y2_c00019{bottom:892.160000pt;}
.y4_c00019{bottom:893.440000pt;}
.y5_c00019{bottom:894.080000pt;}
.y1_c00019{bottom:961.920000pt;}
.h6_c00019{height:27.645000pt;}
.hc_c00019{height:29.948750pt;}
.he_c00019{height:34.556250pt;}
.h4_c00019{height:36.860000pt;}
.h5_c00019{height:39.163750pt;}
.h3_c00019{height:41.467500pt;}
.hd_c00019{height:43.771250pt;}
.h9_c00019{height:46.075000pt;}
.hb_c00019{height:48.378750pt;}
.h7_c00019{height:50.682500pt;}
.h8_c00019{height:52.986250pt;}
.h2_c00019{height:55.290000pt;}
.ha_c00019{height:57.593750pt;}
.h1_c00019{height:1016.666667pt;}
.h0_c00019{height:1016.960000pt;}
.w0_c00019{width:726.400000pt;}
.w1_c00019{width:726.666667pt;}
.x0_c00019{left:0.000000pt;}
.x2_c00019{left:85.120000pt;}
.xd_c00019{left:86.400000pt;}
.x4b_c00019{left:113.280000pt;}
.x18_c00019{left:114.560000pt;}
.x43_c00019{left:122.880000pt;}
.x30_c00019{left:124.160000pt;}
.x3_c00019{left:132.480000pt;}
.x39_c00019{left:143.360000pt;}
.x21_c00019{left:152.320000pt;}
.x12_c00019{left:162.560000pt;}
.x4_c00019{left:170.880000pt;}
.x34_c00019{left:180.480000pt;}
.x19_c00019{left:181.760000pt;}
.x4a_c00019{left:190.720000pt;}
.x28_c00019{left:192.000000pt;}
.x3a_c00019{left:200.320000pt;}
.x36_c00019{left:209.920000pt;}
.x2d_c00019{left:211.200000pt;}
.x3e_c00019{left:219.520000pt;}
.x5_c00019{left:229.120000pt;}
.x1a_c00019{left:239.360000pt;}
.x44_c00019{left:247.680000pt;}
.x1b_c00019{left:257.920000pt;}
.x6_c00019{left:267.520000pt;}
.x13_c00019{left:278.400000pt;}
.x1c_c00019{left:286.720000pt;}
.x40_c00019{left:296.320000pt;}
.x47_c00019{left:305.280000pt;}
.x31_c00019{left:306.560000pt;}
.x29_c00019{left:315.520000pt;}
.x1d_c00019{left:325.120000pt;}
.x22_c00019{left:334.720000pt;}
.x2e_c00019{left:344.320000pt;}
.x2a_c00019{left:345.600000pt;}
.x1e_c00019{left:353.280000pt;}
.x3b_c00019{left:355.200000pt;}
.x7_c00019{left:363.520000pt;}
.xe_c00019{left:373.760000pt;}
.x23_c00019{left:382.720000pt;}
.x8_c00019{left:392.320000pt;}
.x4d_c00019{left:401.280000pt;}
.x14_c00019{left:402.560000pt;}
.x35_c00019{left:410.880000pt;}
.x4c_c00019{left:412.800000pt;}
.x41_c00019{left:421.120000pt;}
.x37_c00019{left:430.080000pt;}
.x3f_c00019{left:431.360000pt;}
.x24_c00019{left:439.040000pt;}
.xf_c00019{left:440.320000pt;}
.x15_c00019{left:449.280000pt;}
.x10_c00019{left:469.120000pt;}
.x16_c00019{left:478.720000pt;}
.x2b_c00019{left:487.680000pt;}
.x3c_c00019{left:489.600000pt;}
.x9_c00019{left:497.920000pt;}
.x42_c00019{left:507.520000pt;}
.x45_c00019{left:509.440000pt;}
.xa_c00019{left:526.080000pt;}
.x1f_c00019{left:527.360000pt;}
.x25_c00019{left:529.280000pt;}
.x11_c00019{left:535.680000pt;}
.x20_c00019{left:554.880000pt;}
.x2c_c00019{left:564.480000pt;}
.x46_c00019{left:566.400000pt;}
.x26_c00019{left:574.720000pt;}
.x38_c00019{left:576.000000pt;}
.xb_c00019{left:584.320000pt;}
.x17_c00019{left:595.200000pt;}
.x49_c00019{left:602.880000pt;}
.x27_c00019{left:604.160000pt;}
.x32_c00019{left:613.120000pt;}
.x3d_c00019{left:614.400000pt;}
.xc_c00019{left:623.360000pt;}
.x48_c00019{left:631.680000pt;}
.x2f_c00019{left:633.600000pt;}
.x33_c00019{left:641.920000pt;}
.x1_c00019{left:664.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_62d0cd2992d032402c087388.woff2')format("woff");}.ff1_c00020{font-family:ff1_c00020;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m34_c00020{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m38_c00020{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m28_c00020{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00020{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00020{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m5_c00020{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m43_c00020{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00020{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m41_c00020{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m52_c00020{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00020{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);}
.m25_c00020{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m27_c00020{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.me_c00020{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);}
.m30_c00020{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m17_c00020{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00020{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);}
.m51_c00020{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m54_c00020{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_c00020{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m0_c00020{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);}
.m20_c00020{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m42_c00020{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);}
.m24_c00020{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1_c00020{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m46_c00020{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m10_c00020{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);}
.m23_c00020{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);}
.m3d_c00020{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m36_c00020{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m13_c00020{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m37_c00020{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);}
.m8_c00020{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m11_c00020{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m33_c00020{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00020{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);}
.m2e_c00020{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);}
.m32_c00020{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.mf_c00020{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);}
.m48_c00020{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m44_c00020{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m39_c00020{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m19_c00020{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);}
.mc_c00020{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);}
.m4e_c00020{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m15_c00020{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);}
.m26_c00020{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m49_c00020{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m6_c00020{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00020{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);}
.m22_c00020{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m45_c00020{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00020{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00020{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);}
.m29_c00020{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.md_c00020{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00020{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m18_c00020{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);}
.ma_c00020{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);}
.m1f_c00020{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m35_c00020{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m47_c00020{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);}
.m31_c00020{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m53_c00020{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00020{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);}
.m2_c00020{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m9_c00020{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m3_c00020{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m14_c00020{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00020{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);}
.m2d_c00020{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00020{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);}
.m4_c00020{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00020{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m7_c00020{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00020{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m50_c00020{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m40_c00020{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m21_c00020{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);}
.m1d_c00020{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);}
.m12_c00020{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);}
.m3f_c00020{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.mb_c00020{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00020{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00020{transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);}
.v0_c00020{vertical-align:0.000000px;}
.v1_c00020{vertical-align:8.640000px;}
.ls2_c00020{letter-spacing:0.000000px;}
.ls1_c00020{letter-spacing:26.334000px;}
.ls0_c00020{letter-spacing:27.978000px;}
.sc__c00020{text-shadow:none;}
.sc0_c00020{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00020{-webkit-text-stroke:0px transparent;}
.sc0_c00020{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00020{word-spacing:0.000000px;}
.ws0_c00020{word-spacing:3.531203px;}
.fc0_c00020{color:transparent;}
.fs7_c00020{font-size:34.560000px;}
.fs2_c00020{font-size:37.440000px;}
.fsc_c00020{font-size:43.200000px;}
.fs5_c00020{font-size:46.080000px;}
.fs3_c00020{font-size:48.960000px;}
.fs4_c00020{font-size:51.840000px;}
.fsb_c00020{font-size:54.720000px;}
.fsa_c00020{font-size:57.600000px;}
.fs6_c00020{font-size:60.480000px;}
.fs1_c00020{font-size:63.360000px;}
.fs8_c00020{font-size:66.240000px;}
.fs0_c00020{font-size:69.120000px;}
.fs9_c00020{font-size:72.000000px;}
.y0_c00020{bottom:0.000000px;}
.y59_c00020{bottom:89.280000px;}
.y5b_c00020{bottom:90.000000px;}
.y5a_c00020{bottom:90.720000px;}
.y5c_c00020{bottom:92.160000px;}
.y57_c00020{bottom:92.880000px;}
.y58_c00020{bottom:93.600000px;}
.y56_c00020{bottom:133.200000px;}
.y54_c00020{bottom:133.920000px;}
.y53_c00020{bottom:135.360000px;}
.y55_c00020{bottom:136.080000px;}
.y52_c00020{bottom:174.960000px;}
.y4f_c00020{bottom:175.680000px;}
.y51_c00020{bottom:177.840000px;}
.y50_c00020{bottom:178.560000px;}
.y4e_c00020{bottom:179.280000px;}
.y4d_c00020{bottom:218.160000px;}
.y4c_c00020{bottom:220.320000px;}
.y4b_c00020{bottom:221.040000px;}
.y4a_c00020{bottom:260.640000px;}
.y47_c00020{bottom:261.360000px;}
.y49_c00020{bottom:263.520000px;}
.y48_c00020{bottom:264.240000px;}
.y46_c00020{bottom:303.840000px;}
.y45_c00020{bottom:305.280000px;}
.y44_c00020{bottom:306.000000px;}
.y43_c00020{bottom:306.720000px;}
.y3e_c00020{bottom:345.600000px;}
.y41_c00020{bottom:346.320000px;}
.y42_c00020{bottom:347.040000px;}
.y3d_c00020{bottom:348.480000px;}
.y40_c00020{bottom:349.200000px;}
.y3f_c00020{bottom:349.920000px;}
.y3b_c00020{bottom:388.080000px;}
.y3a_c00020{bottom:388.800000px;}
.y38_c00020{bottom:390.240000px;}
.y39_c00020{bottom:391.680000px;}
.y3c_c00020{bottom:392.400000px;}
.y37_c00020{bottom:431.280000px;}
.y36_c00020{bottom:432.000000px;}
.y35_c00020{bottom:434.160000px;}
.y32_c00020{bottom:473.760000px;}
.y34_c00020{bottom:474.480000px;}
.y33_c00020{bottom:476.640000px;}
.y31_c00020{bottom:477.360000px;}
.y30_c00020{bottom:516.960000px;}
.y2e_c00020{bottom:517.680000px;}
.y2f_c00020{bottom:519.840000px;}
.y2b_c00020{bottom:559.440000px;}
.y2c_c00020{bottom:560.160000px;}
.y2a_c00020{bottom:562.320000px;}
.y2d_c00020{bottom:563.040000px;}
.y29_c00020{bottom:613.440000px;}
.y28_c00020{bottom:615.600000px;}
.y27_c00020{bottom:655.920000px;}
.y26_c00020{bottom:656.640000px;}
.y25_c00020{bottom:658.800000px;}
.y24_c00020{bottom:659.520000px;}
.y23_c00020{bottom:698.400000px;}
.y21_c00020{bottom:699.120000px;}
.y20_c00020{bottom:701.280000px;}
.y22_c00020{bottom:702.000000px;}
.y1e_c00020{bottom:740.880000px;}
.y1d_c00020{bottom:741.600000px;}
.y1c_c00020{bottom:742.320000px;}
.y1f_c00020{bottom:743.760000px;}
.y1b_c00020{bottom:744.480000px;}
.y1a_c00020{bottom:784.080000px;}
.y17_c00020{bottom:784.800000px;}
.y19_c00020{bottom:786.240000px;}
.y16_c00020{bottom:786.960000px;}
.y18_c00020{bottom:787.680000px;}
.y15_c00020{bottom:825.840000px;}
.y13_c00020{bottom:827.280000px;}
.y12_c00020{bottom:829.440000px;}
.y14_c00020{bottom:830.160000px;}
.y11_c00020{bottom:869.040000px;}
.ye_c00020{bottom:869.760000px;}
.yf_c00020{bottom:870.480000px;}
.y10_c00020{bottom:872.640000px;}
.yb_c00020{bottom:912.240000px;}
.yd_c00020{bottom:912.960000px;}
.yc_c00020{bottom:915.840000px;}
.y9_c00020{bottom:954.720000px;}
.ya_c00020{bottom:955.440000px;}
.y8_c00020{bottom:956.160000px;}
.y5_c00020{bottom:957.600000px;}
.y6_c00020{bottom:958.320000px;}
.y7_c00020{bottom:959.040000px;}
.y2_c00020{bottom:998.640000px;}
.y3_c00020{bottom:1001.520000px;}
.y4_c00020{bottom:1002.240000px;}
.y1_c00020{bottom:1084.320000px;}
.h9_c00020{height:31.100625px;}
.h4_c00020{height:33.692344px;}
.hf_c00020{height:38.875781px;}
.h7_c00020{height:41.467500px;}
.h5_c00020{height:44.059219px;}
.h6_c00020{height:46.650937px;}
.he_c00020{height:49.242656px;}
.hd_c00020{height:51.834375px;}
.h8_c00020{height:54.426094px;}
.hc_c00020{height:55.290937px;}
.h3_c00020{height:57.017812px;}
.ha_c00020{height:59.609531px;}
.h2_c00020{height:62.201250px;}
.hb_c00020{height:64.792969px;}
.h1_c00020{height:1146.750000px;}
.h0_c00020{height:1146.960000px;}
.w1_c00020{width:821.250000px;}
.w0_c00020{width:821.520000px;}
.x0_c00020{left:0.000000px;}
.x24_c00020{left:97.920000px;}
.x2_c00020{left:99.360000px;}
.x20_c00020{left:100.800000px;}
.x36_c00020{left:102.240000px;}
.x4d_c00020{left:120.960000px;}
.x31_c00020{left:131.760000px;}
.x3a_c00020{left:142.560000px;}
.x2d_c00020{left:153.360000px;}
.xb_c00020{left:164.160000px;}
.x51_c00020{left:165.600000px;}
.x3f_c00020{left:174.240000px;}
.x14_c00020{left:175.680000px;}
.x55_c00020{left:185.040000px;}
.x49_c00020{left:196.560000px;}
.x32_c00020{left:208.080000px;}
.x19_c00020{left:218.160000px;}
.x37_c00020{left:229.680000px;}
.x33_c00020{left:240.480000px;}
.x28_c00020{left:250.560000px;}
.x3_c00020{left:262.080000px;}
.xc_c00020{left:272.880000px;}
.x44_c00020{left:281.520000px;}
.x1a_c00020{left:283.680000px;}
.x56_c00020{left:293.040000px;}
.x4_c00020{left:294.480000px;}
.x3c_c00020{left:303.840000px;}
.xd_c00020{left:305.280000px;}
.x4c_c00020{left:314.640000px;}
.x15_c00020{left:316.080000px;}
.x45_c00020{left:324.720000px;}
.x5_c00020{left:326.880000px;}
.x2e_c00020{left:336.240000px;}
.x3d_c00020{left:346.320000px;}
.x25_c00020{left:347.760000px;}
.x40_c00020{left:358.560000px;}
.x38_c00020{left:368.640000px;}
.x21_c00020{left:380.160000px;}
.x34_c00020{left:390.960000px;}
.x29_c00020{left:401.760000px;}
.x6_c00020{left:404.640000px;}
.xe_c00020{left:412.560000px;}
.x3b_c00020{left:422.640000px;}
.x1b_c00020{left:424.080000px;}
.x52_c00020{left:432.720000px;}
.x35_c00020{left:434.880000px;}
.x22_c00020{left:444.960000px;}
.x4e_c00020{left:455.040000px;}
.xf_c00020{left:456.480000px;}
.x53_c00020{left:465.120000px;}
.x46_c00020{left:466.560000px;}
.x39_c00020{left:476.640000px;}
.x2a_c00020{left:488.160000px;}
.x4f_c00020{left:496.800000px;}
.x23_c00020{left:498.960000px;}
.x57_c00020{left:508.320000px;}
.x1c_c00020{left:509.760000px;}
.x16_c00020{left:511.920000px;}
.x26_c00020{left:519.840000px;}
.x41_c00020{left:530.640000px;}
.x4a_c00020{left:540.000000px;}
.x1d_c00020{left:542.160000px;}
.x2b_c00020{left:552.960000px;}
.x10_c00020{left:563.760000px;}
.x7_c00020{left:574.560000px;}
.x2f_c00020{left:584.640000px;}
.x47_c00020{left:595.440000px;}
.x1e_c00020{left:596.880000px;}
.x11_c00020{left:606.960000px;}
.x8_c00020{left:617.760000px;}
.x48_c00020{left:627.120000px;}
.x30_c00020{left:628.560000px;}
.x54_c00020{left:638.640000px;}
.x27_c00020{left:641.520000px;}
.x1f_c00020{left:650.160000px;}
.x42_c00020{left:659.520000px;}
.x17_c00020{left:660.960000px;}
.x9_c00020{left:671.760000px;}
.x2c_c00020{left:683.280000px;}
.x43_c00020{left:691.920000px;}
.x12_c00020{left:693.360000px;}
.x3e_c00020{left:702.720000px;}
.x18_c00020{left:704.880000px;}
.x50_c00020{left:706.320000px;}
.x4b_c00020{left:714.240000px;}
.x13_c00020{left:725.040000px;}
.xa_c00020{left:736.560000px;}
.x1_c00020{left:770.400000px;}
@media print{
.v0_c00020{vertical-align:0.000000pt;}
.v1_c00020{vertical-align:7.680000pt;}
.ls2_c00020{letter-spacing:0.000000pt;}
.ls1_c00020{letter-spacing:23.408000pt;}
.ls0_c00020{letter-spacing:24.869333pt;}
.ws1_c00020{word-spacing:0.000000pt;}
.ws0_c00020{word-spacing:3.138847pt;}
.fs7_c00020{font-size:30.720000pt;}
.fs2_c00020{font-size:33.280000pt;}
.fsc_c00020{font-size:38.400000pt;}
.fs5_c00020{font-size:40.960000pt;}
.fs3_c00020{font-size:43.520000pt;}
.fs4_c00020{font-size:46.080000pt;}
.fsb_c00020{font-size:48.640000pt;}
.fsa_c00020{font-size:51.200000pt;}
.fs6_c00020{font-size:53.760000pt;}
.fs1_c00020{font-size:56.320000pt;}
.fs8_c00020{font-size:58.880000pt;}
.fs0_c00020{font-size:61.440000pt;}
.fs9_c00020{font-size:64.000000pt;}
.y0_c00020{bottom:0.000000pt;}
.y59_c00020{bottom:79.360000pt;}
.y5b_c00020{bottom:80.000000pt;}
.y5a_c00020{bottom:80.640000pt;}
.y5c_c00020{bottom:81.920000pt;}
.y57_c00020{bottom:82.560000pt;}
.y58_c00020{bottom:83.200000pt;}
.y56_c00020{bottom:118.400000pt;}
.y54_c00020{bottom:119.040000pt;}
.y53_c00020{bottom:120.320000pt;}
.y55_c00020{bottom:120.960000pt;}
.y52_c00020{bottom:155.520000pt;}
.y4f_c00020{bottom:156.160000pt;}
.y51_c00020{bottom:158.080000pt;}
.y50_c00020{bottom:158.720000pt;}
.y4e_c00020{bottom:159.360000pt;}
.y4d_c00020{bottom:193.920000pt;}
.y4c_c00020{bottom:195.840000pt;}
.y4b_c00020{bottom:196.480000pt;}
.y4a_c00020{bottom:231.680000pt;}
.y47_c00020{bottom:232.320000pt;}
.y49_c00020{bottom:234.240000pt;}
.y48_c00020{bottom:234.880000pt;}
.y46_c00020{bottom:270.080000pt;}
.y45_c00020{bottom:271.360000pt;}
.y44_c00020{bottom:272.000000pt;}
.y43_c00020{bottom:272.640000pt;}
.y3e_c00020{bottom:307.200000pt;}
.y41_c00020{bottom:307.840000pt;}
.y42_c00020{bottom:308.480000pt;}
.y3d_c00020{bottom:309.760000pt;}
.y40_c00020{bottom:310.400000pt;}
.y3f_c00020{bottom:311.040000pt;}
.y3b_c00020{bottom:344.960000pt;}
.y3a_c00020{bottom:345.600000pt;}
.y38_c00020{bottom:346.880000pt;}
.y39_c00020{bottom:348.160000pt;}
.y3c_c00020{bottom:348.800000pt;}
.y37_c00020{bottom:383.360000pt;}
.y36_c00020{bottom:384.000000pt;}
.y35_c00020{bottom:385.920000pt;}
.y32_c00020{bottom:421.120000pt;}
.y34_c00020{bottom:421.760000pt;}
.y33_c00020{bottom:423.680000pt;}
.y31_c00020{bottom:424.320000pt;}
.y30_c00020{bottom:459.520000pt;}
.y2e_c00020{bottom:460.160000pt;}
.y2f_c00020{bottom:462.080000pt;}
.y2b_c00020{bottom:497.280000pt;}
.y2c_c00020{bottom:497.920000pt;}
.y2a_c00020{bottom:499.840000pt;}
.y2d_c00020{bottom:500.480000pt;}
.y29_c00020{bottom:545.280000pt;}
.y28_c00020{bottom:547.200000pt;}
.y27_c00020{bottom:583.040000pt;}
.y26_c00020{bottom:583.680000pt;}
.y25_c00020{bottom:585.600000pt;}
.y24_c00020{bottom:586.240000pt;}
.y23_c00020{bottom:620.800000pt;}
.y21_c00020{bottom:621.440000pt;}
.y20_c00020{bottom:623.360000pt;}
.y22_c00020{bottom:624.000000pt;}
.y1e_c00020{bottom:658.560000pt;}
.y1d_c00020{bottom:659.200000pt;}
.y1c_c00020{bottom:659.840000pt;}
.y1f_c00020{bottom:661.120000pt;}
.y1b_c00020{bottom:661.760000pt;}
.y1a_c00020{bottom:696.960000pt;}
.y17_c00020{bottom:697.600000pt;}
.y19_c00020{bottom:698.880000pt;}
.y16_c00020{bottom:699.520000pt;}
.y18_c00020{bottom:700.160000pt;}
.y15_c00020{bottom:734.080000pt;}
.y13_c00020{bottom:735.360000pt;}
.y12_c00020{bottom:737.280000pt;}
.y14_c00020{bottom:737.920000pt;}
.y11_c00020{bottom:772.480000pt;}
.ye_c00020{bottom:773.120000pt;}
.yf_c00020{bottom:773.760000pt;}
.y10_c00020{bottom:775.680000pt;}
.yb_c00020{bottom:810.880000pt;}
.yd_c00020{bottom:811.520000pt;}
.yc_c00020{bottom:814.080000pt;}
.y9_c00020{bottom:848.640000pt;}
.ya_c00020{bottom:849.280000pt;}
.y8_c00020{bottom:849.920000pt;}
.y5_c00020{bottom:851.200000pt;}
.y6_c00020{bottom:851.840000pt;}
.y7_c00020{bottom:852.480000pt;}
.y2_c00020{bottom:887.680000pt;}
.y3_c00020{bottom:890.240000pt;}
.y4_c00020{bottom:890.880000pt;}
.y1_c00020{bottom:963.840000pt;}
.h9_c00020{height:27.645000pt;}
.h4_c00020{height:29.948750pt;}
.hf_c00020{height:34.556250pt;}
.h7_c00020{height:36.860000pt;}
.h5_c00020{height:39.163750pt;}
.h6_c00020{height:41.467500pt;}
.he_c00020{height:43.771250pt;}
.hd_c00020{height:46.075000pt;}
.h8_c00020{height:48.378750pt;}
.hc_c00020{height:49.147500pt;}
.h3_c00020{height:50.682500pt;}
.ha_c00020{height:52.986250pt;}
.h2_c00020{height:55.290000pt;}
.hb_c00020{height:57.593750pt;}
.h1_c00020{height:1019.333333pt;}
.h0_c00020{height:1019.520000pt;}
.w1_c00020{width:730.000000pt;}
.w0_c00020{width:730.240000pt;}
.x0_c00020{left:0.000000pt;}
.x24_c00020{left:87.040000pt;}
.x2_c00020{left:88.320000pt;}
.x20_c00020{left:89.600000pt;}
.x36_c00020{left:90.880000pt;}
.x4d_c00020{left:107.520000pt;}
.x31_c00020{left:117.120000pt;}
.x3a_c00020{left:126.720000pt;}
.x2d_c00020{left:136.320000pt;}
.xb_c00020{left:145.920000pt;}
.x51_c00020{left:147.200000pt;}
.x3f_c00020{left:154.880000pt;}
.x14_c00020{left:156.160000pt;}
.x55_c00020{left:164.480000pt;}
.x49_c00020{left:174.720000pt;}
.x32_c00020{left:184.960000pt;}
.x19_c00020{left:193.920000pt;}
.x37_c00020{left:204.160000pt;}
.x33_c00020{left:213.760000pt;}
.x28_c00020{left:222.720000pt;}
.x3_c00020{left:232.960000pt;}
.xc_c00020{left:242.560000pt;}
.x44_c00020{left:250.240000pt;}
.x1a_c00020{left:252.160000pt;}
.x56_c00020{left:260.480000pt;}
.x4_c00020{left:261.760000pt;}
.x3c_c00020{left:270.080000pt;}
.xd_c00020{left:271.360000pt;}
.x4c_c00020{left:279.680000pt;}
.x15_c00020{left:280.960000pt;}
.x45_c00020{left:288.640000pt;}
.x5_c00020{left:290.560000pt;}
.x2e_c00020{left:298.880000pt;}
.x3d_c00020{left:307.840000pt;}
.x25_c00020{left:309.120000pt;}
.x40_c00020{left:318.720000pt;}
.x38_c00020{left:327.680000pt;}
.x21_c00020{left:337.920000pt;}
.x34_c00020{left:347.520000pt;}
.x29_c00020{left:357.120000pt;}
.x6_c00020{left:359.680000pt;}
.xe_c00020{left:366.720000pt;}
.x3b_c00020{left:375.680000pt;}
.x1b_c00020{left:376.960000pt;}
.x52_c00020{left:384.640000pt;}
.x35_c00020{left:386.560000pt;}
.x22_c00020{left:395.520000pt;}
.x4e_c00020{left:404.480000pt;}
.xf_c00020{left:405.760000pt;}
.x53_c00020{left:413.440000pt;}
.x46_c00020{left:414.720000pt;}
.x39_c00020{left:423.680000pt;}
.x2a_c00020{left:433.920000pt;}
.x4f_c00020{left:441.600000pt;}
.x23_c00020{left:443.520000pt;}
.x57_c00020{left:451.840000pt;}
.x1c_c00020{left:453.120000pt;}
.x16_c00020{left:455.040000pt;}
.x26_c00020{left:462.080000pt;}
.x41_c00020{left:471.680000pt;}
.x4a_c00020{left:480.000000pt;}
.x1d_c00020{left:481.920000pt;}
.x2b_c00020{left:491.520000pt;}
.x10_c00020{left:501.120000pt;}
.x7_c00020{left:510.720000pt;}
.x2f_c00020{left:519.680000pt;}
.x47_c00020{left:529.280000pt;}
.x1e_c00020{left:530.560000pt;}
.x11_c00020{left:539.520000pt;}
.x8_c00020{left:549.120000pt;}
.x48_c00020{left:557.440000pt;}
.x30_c00020{left:558.720000pt;}
.x54_c00020{left:567.680000pt;}
.x27_c00020{left:570.240000pt;}
.x1f_c00020{left:577.920000pt;}
.x42_c00020{left:586.240000pt;}
.x17_c00020{left:587.520000pt;}
.x9_c00020{left:597.120000pt;}
.x2c_c00020{left:607.360000pt;}
.x43_c00020{left:615.040000pt;}
.x12_c00020{left:616.320000pt;}
.x3e_c00020{left:624.640000pt;}
.x18_c00020{left:626.560000pt;}
.x50_c00020{left:627.840000pt;}
.x4b_c00020{left:634.880000pt;}
.x13_c00020{left:644.480000pt;}
.xa_c00020{left:654.720000pt;}
.x1_c00020{left:684.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1c6a1ba3faf6af3549c16186.woff2')format("woff");}.ff1_c00021{font-family:ff1_c00021;line-height:1.109863;font-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_c00021{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m50_c00021{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00021{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m38_c00021{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m37_c00021{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m39_c00021{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m41_c00021{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m0_c00021{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m58_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);}
.m49_c00021{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00021{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00021{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m12_c00021{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m28_c00021{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m18_c00021{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);}
.m57_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);}
.m27_c00021{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00021{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00021{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m32_c00021{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);}
.m53_c00021{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00021{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);}
.ma_c00021{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m22_c00021{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m16_c00021{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m21_c00021{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m6_c00021{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m24_c00021{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m1_c00021{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00021{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);}
.m52_c00021{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m7_c00021{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00021{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);}
.m1f_c00021{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00021{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);}
.m42_c00021{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m46_c00021{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);}
.m3e_c00021{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);}
.m3a_c00021{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00021{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.me_c00021{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m4_c00021{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);}
.m1d_c00021{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00021{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m35_c00021{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);}
.m4a_c00021{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m3_c00021{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);}
.m1a_c00021{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m9_c00021{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.mf_c00021{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m14_c00021{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m5_c00021{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);}
.m13_c00021{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m34_c00021{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00021{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m15_c00021{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);}
.m17_c00021{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m2_c00021{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m48_c00021{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00021{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m44_c00021{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);}
.m2e_c00021{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);}
.m3c_c00021{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m11_c00021{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m23_c00021{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);}
.m8_c00021{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m45_c00021{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00021{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m31_c00021{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);}
.m26_c00021{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m55_c00021{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00021{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m36_c00021{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m54_c00021{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00021{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m43_c00021{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);}
.m10_c00021{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);}
.m51_c00021{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.md_c00021{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m56_c00021{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m19_c00021{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m25_c00021{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00021{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m20_c00021{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);}
.m30_c00021{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m47_c00021{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);}
.m33_c00021{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);}
.mb_c00021{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m40_c00021{transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);}
.v0_c00021{vertical-align:0.000000px;}
.ls0_c00021{letter-spacing:0.000000px;}
.sc__c00021{text-shadow:none;}
.sc0_c00021{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00021{-webkit-text-stroke:0px transparent;}
.sc0_c00021{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00021{word-spacing:0.000000px;}
.fc0_c00021{color:transparent;}
.fs5_c00021{font-size:34.560000px;}
.fsb_c00021{font-size:37.440000px;}
.fse_c00021{font-size:40.320000px;}
.fsa_c00021{font-size:43.200000px;}
.fs2_c00021{font-size:46.080000px;}
.fs4_c00021{font-size:48.960000px;}
.fs1_c00021{font-size:51.840000px;}
.fs7_c00021{font-size:54.720000px;}
.fsc_c00021{font-size:57.600000px;}
.fs3_c00021{font-size:60.480000px;}
.fs8_c00021{font-size:63.360000px;}
.fs9_c00021{font-size:66.240000px;}
.fs0_c00021{font-size:69.120000px;}
.fs6_c00021{font-size:72.000000px;}
.fsd_c00021{font-size:74.880000px;}
.y0_c00021{bottom:0.000000px;}
.y5e_c00021{bottom:36.720000px;}
.y5b_c00021{bottom:37.440000px;}
.y5f_c00021{bottom:38.160000px;}
.y5c_c00021{bottom:39.600000px;}
.y5d_c00021{bottom:40.320000px;}
.y58_c00021{bottom:78.480000px;}
.y5a_c00021{bottom:81.360000px;}
.y59_c00021{bottom:82.080000px;}
.y57_c00021{bottom:120.960000px;}
.y56_c00021{bottom:121.680000px;}
.y55_c00021{bottom:122.400000px;}
.y54_c00021{bottom:124.560000px;}
.y53_c00021{bottom:125.280000px;}
.y52_c00021{bottom:164.160000px;}
.y51_c00021{bottom:164.880000px;}
.y4e_c00021{bottom:165.600000px;}
.y4f_c00021{bottom:167.040000px;}
.y50_c00021{bottom:168.480000px;}
.y4b_c00021{bottom:206.640000px;}
.y4c_c00021{bottom:207.360000px;}
.y4d_c00021{bottom:209.520000px;}
.y49_c00021{bottom:249.840000px;}
.y4a_c00021{bottom:251.280000px;}
.y48_c00021{bottom:252.000000px;}
.y46_c00021{bottom:252.720000px;}
.y47_c00021{bottom:253.440000px;}
.y45_c00021{bottom:292.320000px;}
.y44_c00021{bottom:295.200000px;}
.y43_c00021{bottom:295.920000px;}
.y3f_c00021{bottom:334.080000px;}
.y41_c00021{bottom:334.800000px;}
.y42_c00021{bottom:335.520000px;}
.y40_c00021{bottom:337.680000px;}
.y3e_c00021{bottom:338.400000px;}
.y3c_c00021{bottom:377.280000px;}
.y3b_c00021{bottom:378.720000px;}
.y3d_c00021{bottom:380.160000px;}
.y39_c00021{bottom:380.880000px;}
.y3a_c00021{bottom:381.600000px;}
.y38_c00021{bottom:420.480000px;}
.y37_c00021{bottom:422.640000px;}
.y36_c00021{bottom:423.360000px;}
.y31_c00021{bottom:462.960000px;}
.y33_c00021{bottom:463.680000px;}
.y32_c00021{bottom:464.400000px;}
.y35_c00021{bottom:465.120000px;}
.y30_c00021{bottom:465.840000px;}
.y34_c00021{bottom:466.560000px;}
.y2e_c00021{bottom:504.720000px;}
.y2f_c00021{bottom:505.440000px;}
.y2d_c00021{bottom:506.160000px;}
.y2c_c00021{bottom:509.040000px;}
.y2a_c00021{bottom:547.920000px;}
.y2b_c00021{bottom:548.640000px;}
.y28_c00021{bottom:550.800000px;}
.y29_c00021{bottom:551.520000px;}
.y26_c00021{bottom:591.120000px;}
.y27_c00021{bottom:593.280000px;}
.y25_c00021{bottom:594.000000px;}
.y23_c00021{bottom:633.600000px;}
.y24_c00021{bottom:634.320000px;}
.y22_c00021{bottom:636.480000px;}
.y21_c00021{bottom:677.520000px;}
.y20_c00021{bottom:678.960000px;}
.y1f_c00021{bottom:679.680000px;}
.y1e_c00021{bottom:729.360000px;}
.y1d_c00021{bottom:730.080000px;}
.y1c_c00021{bottom:732.240000px;}
.y1b_c00021{bottom:732.960000px;}
.y1a_c00021{bottom:733.680000px;}
.y19_c00021{bottom:772.560000px;}
.y18_c00021{bottom:773.280000px;}
.y15_c00021{bottom:774.720000px;}
.y17_c00021{bottom:775.440000px;}
.y16_c00021{bottom:776.160000px;}
.y14_c00021{bottom:815.040000px;}
.y12_c00021{bottom:815.760000px;}
.y10_c00021{bottom:816.480000px;}
.y13_c00021{bottom:817.920000px;}
.y11_c00021{bottom:818.640000px;}
.yd_c00021{bottom:858.240000px;}
.yf_c00021{bottom:858.960000px;}
.ye_c00021{bottom:861.120000px;}
.ya_c00021{bottom:900.720000px;}
.yc_c00021{bottom:903.600000px;}
.yb_c00021{bottom:904.320000px;}
.y6_c00021{bottom:942.480000px;}
.y8_c00021{bottom:943.920000px;}
.y9_c00021{bottom:946.080000px;}
.y7_c00021{bottom:946.800000px;}
.y5_c00021{bottom:986.400000px;}
.y4_c00021{bottom:987.120000px;}
.y2_c00021{bottom:988.560000px;}
.y3_c00021{bottom:989.280000px;}
.y1_c00021{bottom:1064.880000px;}
.h7_c00021{height:31.100625px;}
.hd_c00021{height:33.692344px;}
.h10_c00021{height:36.284062px;}
.hc_c00021{height:38.875781px;}
.h4_c00021{height:41.467500px;}
.h6_c00021{height:44.059219px;}
.h3_c00021{height:46.650937px;}
.h9_c00021{height:49.242656px;}
.he_c00021{height:51.834375px;}
.h5_c00021{height:54.426094px;}
.ha_c00021{height:57.017812px;}
.hb_c00021{height:59.609531px;}
.h2_c00021{height:62.201250px;}
.h8_c00021{height:64.792969px;}
.hf_c00021{height:67.384687px;}
.h0_c00021{height:1139.760000px;}
.h1_c00021{height:1140.000000px;}
.w0_c00021{width:812.160000px;}
.w1_c00021{width:812.250000px;}
.x0_c00021{left:0.000000px;}
.x2_c00021{left:90.720000px;}
.x13_c00021{left:92.160000px;}
.x2e_c00021{left:123.840000px;}
.x39_c00021{left:125.280000px;}
.x42_c00021{left:134.640000px;}
.x4c_c00021{left:144.720000px;}
.xb_c00021{left:146.160000px;}
.x29_c00021{left:156.240000px;}
.x54_c00021{left:166.320000px;}
.x3_c00021{left:167.760000px;}
.x4f_c00021{left:177.120000px;}
.xc_c00021{left:179.280000px;}
.x46_c00021{left:189.360000px;}
.x52_c00021{left:198.720000px;}
.x21_c00021{left:200.160000px;}
.x55_c00021{left:209.520000px;}
.x1a_c00021{left:210.960000px;}
.x5b_c00021{left:220.320000px;}
.x3f_c00021{left:221.760000px;}
.x43_c00021{left:231.840000px;}
.x53_c00021{left:241.920000px;}
.x14_c00021{left:243.360000px;}
.x40_c00021{left:252.720000px;}
.x4_c00021{left:254.160000px;}
.x2a_c00021{left:264.240000px;}
.x1b_c00021{left:265.680000px;}
.x3a_c00021{left:275.040000px;}
.x47_c00021{left:285.120000px;}
.xd_c00021{left:287.280000px;}
.x22_c00021{left:296.640000px;}
.x5_c00021{left:298.080000px;}
.x3b_c00021{left:306.720000px;}
.xe_c00021{left:317.520000px;}
.x57_c00021{left:327.600000px;}
.x32_c00021{left:339.120000px;}
.x2f_c00021{left:342.720000px;}
.x44_c00021{left:349.920000px;}
.xf_c00021{left:351.360000px;}
.x49_c00021{left:360.000000px;}
.x1c_c00021{left:361.440000px;}
.x15_c00021{left:373.680000px;}
.x2b_c00021{left:383.760000px;}
.x36_c00021{left:393.120000px;}
.x23_c00021{left:394.560000px;}
.x16_c00021{left:403.920000px;}
.x3c_c00021{left:415.440000px;}
.x24_c00021{left:425.520000px;}
.x2c_c00021{left:427.680000px;}
.x6_c00021{left:437.040000px;}
.x41_c00021{left:438.480000px;}
.x4e_c00021{left:446.400000px;}
.x17_c00021{left:447.840000px;}
.x25_c00021{left:457.920000px;}
.x50_c00021{left:468.720000px;}
.x30_c00021{left:470.160000px;}
.x4a_c00021{left:478.800000px;}
.x10_c00021{left:480.240000px;}
.x58_c00021{left:489.600000px;}
.x1d_c00021{left:491.040000px;}
.x33_c00021{left:501.120000px;}
.x5c_c00021{left:503.280000px;}
.x3d_c00021{left:511.920000px;}
.x7_c00021{left:513.360000px;}
.x1e_c00021{left:522.720000px;}
.x34_c00021{left:533.520000px;}
.x45_c00021{left:543.600000px;}
.x11_c00021{left:545.040000px;}
.x31_c00021{left:546.480000px;}
.x4b_c00021{left:554.400000px;}
.x1f_c00021{left:556.560000px;}
.x26_c00021{left:565.920000px;}
.x59_c00021{left:576.000000px;}
.x18_c00021{left:577.440000px;}
.x4d_c00021{left:586.080000px;}
.x37_c00021{left:588.960000px;}
.x5a_c00021{left:606.960000px;}
.x12_c00021{left:609.120000px;}
.x8_c00021{left:620.640000px;}
.x51_c00021{left:630.720000px;}
.x9_c00021{left:653.040000px;}
.x27_c00021{left:663.120000px;}
.x19_c00021{left:664.560000px;}
.x20_c00021{left:666.720000px;}
.x56_c00021{left:673.200000px;}
.x3e_c00021{left:684.720000px;}
.x48_c00021{left:694.080000px;}
.xa_c00021{left:695.520000px;}
.x2d_c00021{left:696.960000px;}
.x35_c00021{left:707.040000px;}
.x28_c00021{left:716.400000px;}
.x1_c00021{left:721.440000px;}
.x38_c00021{left:727.920000px;}
@media print{
.v0_c00021{vertical-align:0.000000pt;}
.ls0_c00021{letter-spacing:0.000000pt;}
.ws0_c00021{word-spacing:0.000000pt;}
.fs5_c00021{font-size:30.720000pt;}
.fsb_c00021{font-size:33.280000pt;}
.fse_c00021{font-size:35.840000pt;}
.fsa_c00021{font-size:38.400000pt;}
.fs2_c00021{font-size:40.960000pt;}
.fs4_c00021{font-size:43.520000pt;}
.fs1_c00021{font-size:46.080000pt;}
.fs7_c00021{font-size:48.640000pt;}
.fsc_c00021{font-size:51.200000pt;}
.fs3_c00021{font-size:53.760000pt;}
.fs8_c00021{font-size:56.320000pt;}
.fs9_c00021{font-size:58.880000pt;}
.fs0_c00021{font-size:61.440000pt;}
.fs6_c00021{font-size:64.000000pt;}
.fsd_c00021{font-size:66.560000pt;}
.y0_c00021{bottom:0.000000pt;}
.y5e_c00021{bottom:32.640000pt;}
.y5b_c00021{bottom:33.280000pt;}
.y5f_c00021{bottom:33.920000pt;}
.y5c_c00021{bottom:35.200000pt;}
.y5d_c00021{bottom:35.840000pt;}
.y58_c00021{bottom:69.760000pt;}
.y5a_c00021{bottom:72.320000pt;}
.y59_c00021{bottom:72.960000pt;}
.y57_c00021{bottom:107.520000pt;}
.y56_c00021{bottom:108.160000pt;}
.y55_c00021{bottom:108.800000pt;}
.y54_c00021{bottom:110.720000pt;}
.y53_c00021{bottom:111.360000pt;}
.y52_c00021{bottom:145.920000pt;}
.y51_c00021{bottom:146.560000pt;}
.y4e_c00021{bottom:147.200000pt;}
.y4f_c00021{bottom:148.480000pt;}
.y50_c00021{bottom:149.760000pt;}
.y4b_c00021{bottom:183.680000pt;}
.y4c_c00021{bottom:184.320000pt;}
.y4d_c00021{bottom:186.240000pt;}
.y49_c00021{bottom:222.080000pt;}
.y4a_c00021{bottom:223.360000pt;}
.y48_c00021{bottom:224.000000pt;}
.y46_c00021{bottom:224.640000pt;}
.y47_c00021{bottom:225.280000pt;}
.y45_c00021{bottom:259.840000pt;}
.y44_c00021{bottom:262.400000pt;}
.y43_c00021{bottom:263.040000pt;}
.y3f_c00021{bottom:296.960000pt;}
.y41_c00021{bottom:297.600000pt;}
.y42_c00021{bottom:298.240000pt;}
.y40_c00021{bottom:300.160000pt;}
.y3e_c00021{bottom:300.800000pt;}
.y3c_c00021{bottom:335.360000pt;}
.y3b_c00021{bottom:336.640000pt;}
.y3d_c00021{bottom:337.920000pt;}
.y39_c00021{bottom:338.560000pt;}
.y3a_c00021{bottom:339.200000pt;}
.y38_c00021{bottom:373.760000pt;}
.y37_c00021{bottom:375.680000pt;}
.y36_c00021{bottom:376.320000pt;}
.y31_c00021{bottom:411.520000pt;}
.y33_c00021{bottom:412.160000pt;}
.y32_c00021{bottom:412.800000pt;}
.y35_c00021{bottom:413.440000pt;}
.y30_c00021{bottom:414.080000pt;}
.y34_c00021{bottom:414.720000pt;}
.y2e_c00021{bottom:448.640000pt;}
.y2f_c00021{bottom:449.280000pt;}
.y2d_c00021{bottom:449.920000pt;}
.y2c_c00021{bottom:452.480000pt;}
.y2a_c00021{bottom:487.040000pt;}
.y2b_c00021{bottom:487.680000pt;}
.y28_c00021{bottom:489.600000pt;}
.y29_c00021{bottom:490.240000pt;}
.y26_c00021{bottom:525.440000pt;}
.y27_c00021{bottom:527.360000pt;}
.y25_c00021{bottom:528.000000pt;}
.y23_c00021{bottom:563.200000pt;}
.y24_c00021{bottom:563.840000pt;}
.y22_c00021{bottom:565.760000pt;}
.y21_c00021{bottom:602.240000pt;}
.y20_c00021{bottom:603.520000pt;}
.y1f_c00021{bottom:604.160000pt;}
.y1e_c00021{bottom:648.320000pt;}
.y1d_c00021{bottom:648.960000pt;}
.y1c_c00021{bottom:650.880000pt;}
.y1b_c00021{bottom:651.520000pt;}
.y1a_c00021{bottom:652.160000pt;}
.y19_c00021{bottom:686.720000pt;}
.y18_c00021{bottom:687.360000pt;}
.y15_c00021{bottom:688.640000pt;}
.y17_c00021{bottom:689.280000pt;}
.y16_c00021{bottom:689.920000pt;}
.y14_c00021{bottom:724.480000pt;}
.y12_c00021{bottom:725.120000pt;}
.y10_c00021{bottom:725.760000pt;}
.y13_c00021{bottom:727.040000pt;}
.y11_c00021{bottom:727.680000pt;}
.yd_c00021{bottom:762.880000pt;}
.yf_c00021{bottom:763.520000pt;}
.ye_c00021{bottom:765.440000pt;}
.ya_c00021{bottom:800.640000pt;}
.yc_c00021{bottom:803.200000pt;}
.yb_c00021{bottom:803.840000pt;}
.y6_c00021{bottom:837.760000pt;}
.y8_c00021{bottom:839.040000pt;}
.y9_c00021{bottom:840.960000pt;}
.y7_c00021{bottom:841.600000pt;}
.y5_c00021{bottom:876.800000pt;}
.y4_c00021{bottom:877.440000pt;}
.y2_c00021{bottom:878.720000pt;}
.y3_c00021{bottom:879.360000pt;}
.y1_c00021{bottom:946.560000pt;}
.h7_c00021{height:27.645000pt;}
.hd_c00021{height:29.948750pt;}
.h10_c00021{height:32.252500pt;}
.hc_c00021{height:34.556250pt;}
.h4_c00021{height:36.860000pt;}
.h6_c00021{height:39.163750pt;}
.h3_c00021{height:41.467500pt;}
.h9_c00021{height:43.771250pt;}
.he_c00021{height:46.075000pt;}
.h5_c00021{height:48.378750pt;}
.ha_c00021{height:50.682500pt;}
.hb_c00021{height:52.986250pt;}
.h2_c00021{height:55.290000pt;}
.h8_c00021{height:57.593750pt;}
.hf_c00021{height:59.897500pt;}
.h0_c00021{height:1013.120000pt;}
.h1_c00021{height:1013.333333pt;}
.w0_c00021{width:721.920000pt;}
.w1_c00021{width:722.000000pt;}
.x0_c00021{left:0.000000pt;}
.x2_c00021{left:80.640000pt;}
.x13_c00021{left:81.920000pt;}
.x2e_c00021{left:110.080000pt;}
.x39_c00021{left:111.360000pt;}
.x42_c00021{left:119.680000pt;}
.x4c_c00021{left:128.640000pt;}
.xb_c00021{left:129.920000pt;}
.x29_c00021{left:138.880000pt;}
.x54_c00021{left:147.840000pt;}
.x3_c00021{left:149.120000pt;}
.x4f_c00021{left:157.440000pt;}
.xc_c00021{left:159.360000pt;}
.x46_c00021{left:168.320000pt;}
.x52_c00021{left:176.640000pt;}
.x21_c00021{left:177.920000pt;}
.x55_c00021{left:186.240000pt;}
.x1a_c00021{left:187.520000pt;}
.x5b_c00021{left:195.840000pt;}
.x3f_c00021{left:197.120000pt;}
.x43_c00021{left:206.080000pt;}
.x53_c00021{left:215.040000pt;}
.x14_c00021{left:216.320000pt;}
.x40_c00021{left:224.640000pt;}
.x4_c00021{left:225.920000pt;}
.x2a_c00021{left:234.880000pt;}
.x1b_c00021{left:236.160000pt;}
.x3a_c00021{left:244.480000pt;}
.x47_c00021{left:253.440000pt;}
.xd_c00021{left:255.360000pt;}
.x22_c00021{left:263.680000pt;}
.x5_c00021{left:264.960000pt;}
.x3b_c00021{left:272.640000pt;}
.xe_c00021{left:282.240000pt;}
.x57_c00021{left:291.200000pt;}
.x32_c00021{left:301.440000pt;}
.x2f_c00021{left:304.640000pt;}
.x44_c00021{left:311.040000pt;}
.xf_c00021{left:312.320000pt;}
.x49_c00021{left:320.000000pt;}
.x1c_c00021{left:321.280000pt;}
.x15_c00021{left:332.160000pt;}
.x2b_c00021{left:341.120000pt;}
.x36_c00021{left:349.440000pt;}
.x23_c00021{left:350.720000pt;}
.x16_c00021{left:359.040000pt;}
.x3c_c00021{left:369.280000pt;}
.x24_c00021{left:378.240000pt;}
.x2c_c00021{left:380.160000pt;}
.x6_c00021{left:388.480000pt;}
.x41_c00021{left:389.760000pt;}
.x4e_c00021{left:396.800000pt;}
.x17_c00021{left:398.080000pt;}
.x25_c00021{left:407.040000pt;}
.x50_c00021{left:416.640000pt;}
.x30_c00021{left:417.920000pt;}
.x4a_c00021{left:425.600000pt;}
.x10_c00021{left:426.880000pt;}
.x58_c00021{left:435.200000pt;}
.x1d_c00021{left:436.480000pt;}
.x33_c00021{left:445.440000pt;}
.x5c_c00021{left:447.360000pt;}
.x3d_c00021{left:455.040000pt;}
.x7_c00021{left:456.320000pt;}
.x1e_c00021{left:464.640000pt;}
.x34_c00021{left:474.240000pt;}
.x45_c00021{left:483.200000pt;}
.x11_c00021{left:484.480000pt;}
.x31_c00021{left:485.760000pt;}
.x4b_c00021{left:492.800000pt;}
.x1f_c00021{left:494.720000pt;}
.x26_c00021{left:503.040000pt;}
.x59_c00021{left:512.000000pt;}
.x18_c00021{left:513.280000pt;}
.x4d_c00021{left:520.960000pt;}
.x37_c00021{left:523.520000pt;}
.x5a_c00021{left:539.520000pt;}
.x12_c00021{left:541.440000pt;}
.x8_c00021{left:551.680000pt;}
.x51_c00021{left:560.640000pt;}
.x9_c00021{left:580.480000pt;}
.x27_c00021{left:589.440000pt;}
.x19_c00021{left:590.720000pt;}
.x20_c00021{left:592.640000pt;}
.x56_c00021{left:598.400000pt;}
.x3e_c00021{left:608.640000pt;}
.x48_c00021{left:616.960000pt;}
.xa_c00021{left:618.240000pt;}
.x2d_c00021{left:619.520000pt;}
.x35_c00021{left:628.480000pt;}
.x28_c00021{left:636.800000pt;}
.x1_c00021{left:641.280000pt;}
.x38_c00021{left:647.040000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e5f33564c3f47e0993d8ae56.woff2')format("woff");}.ff1_c00022{font-family:ff1_c00022;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4f_c00022{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);}
.m53_c00022{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m23_c00022{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);}
.m57_c00022{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00022{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m49_c00022{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m22_c00022{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00022{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m39_c00022{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m48_c00022{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m29_c00022{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m27_c00022{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m59_c00022{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00022{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);}
.m38_c00022{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);}
.m3c_c00022{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);}
.m31_c00022{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m37_c00022{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m0_c00022{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m43_c00022{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_c00022{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00022{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.me_c00022{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m1_c00022{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);}
.m56_c00022{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m7_c00022{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);}
.m44_c00022{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m11_c00022{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);}
.m47_c00022{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00022{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);}
.ma_c00022{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);}
.m41_c00022{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00022{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m8_c00022{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.mf_c00022{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);}
.m4b_c00022{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00022{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);}
.m25_c00022{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);}
.m21_c00022{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);}
.m3f_c00022{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00022{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m36_c00022{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00022{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m4_c00022{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);}
.m1a_c00022{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00022{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m33_c00022{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);}
.mc_c00022{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m18_c00022{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);}
.m28_c00022{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m52_c00022{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00022{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m19_c00022{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m9_c00022{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);}
.m6_c00022{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m50_c00022{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00022{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m45_c00022{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);}
.m2f_c00022{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00022{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m3_c00022{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m2_c00022{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00022{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m34_c00022{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);}
.m42_c00022{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);}
.m13_c00022{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m12_c00022{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00022{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);}
.m10_c00022{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m35_c00022{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m40_c00022{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);}
.m3e_c00022{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m20_c00022{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m26_c00022{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m58_c00022{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.md_c00022{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m16_c00022{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);}
.m30_c00022{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m15_c00022{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m32_c00022{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m51_c00022{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m55_c00022{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m46_c00022{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00022{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00022{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00022{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);}
.m2c_c00022{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);}
.m24_c00022{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00022{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m54_c00022{transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);}
.mb_c00022{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.m5_c00022{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.v2_c00022{vertical-align:-11.520000px;}
.v0_c00022{vertical-align:0.000000px;}
.v1_c00022{vertical-align:8.640000px;}
.ls0_c00022{letter-spacing:0.000000px;}
.sc__c00022{text-shadow:none;}
.sc0_c00022{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00022{-webkit-text-stroke:0px transparent;}
.sc0_c00022{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00022{word-spacing:0.000000px;}
.ws0_c00022{word-spacing:1.551840px;}
.ws1_c00022{word-spacing:1.984560px;}
.fc0_c00022{color:transparent;}
.fsd_c00022{font-size:31.680000px;}
.fs7_c00022{font-size:34.560000px;}
.fs6_c00022{font-size:37.440000px;}
.fsc_c00022{font-size:43.200000px;}
.fs2_c00022{font-size:46.080000px;}
.fs4_c00022{font-size:48.960000px;}
.fs3_c00022{font-size:51.840000px;}
.fsa_c00022{font-size:54.720000px;}
.fs8_c00022{font-size:57.600000px;}
.fs1_c00022{font-size:60.480000px;}
.fs5_c00022{font-size:63.360000px;}
.fs9_c00022{font-size:66.240000px;}
.fs0_c00022{font-size:69.120000px;}
.fsb_c00022{font-size:72.000000px;}
.y0_c00022{bottom:0.000000px;}
.y54_c00022{bottom:36.720000px;}
.y56_c00022{bottom:38.880000px;}
.y55_c00022{bottom:39.600000px;}
.y53_c00022{bottom:40.320000px;}
.y51_c00022{bottom:79.200000px;}
.y50_c00022{bottom:79.920000px;}
.y52_c00022{bottom:81.360000px;}
.y4f_c00022{bottom:82.080000px;}
.y4e_c00022{bottom:82.800000px;}
.y4c_c00022{bottom:122.400000px;}
.y4d_c00022{bottom:124.560000px;}
.y4b_c00022{bottom:125.280000px;}
.y4a_c00022{bottom:126.000000px;}
.y49_c00022{bottom:164.880000px;}
.y48_c00022{bottom:167.040000px;}
.y47_c00022{bottom:167.760000px;}
.y46_c00022{bottom:206.640000px;}
.y45_c00022{bottom:209.520000px;}
.y44_c00022{bottom:210.240000px;}
.y43_c00022{bottom:249.840000px;}
.y42_c00022{bottom:252.000000px;}
.y41_c00022{bottom:252.720000px;}
.y3f_c00022{bottom:292.320000px;}
.y3e_c00022{bottom:294.480000px;}
.y3d_c00022{bottom:295.200000px;}
.y40_c00022{bottom:295.920000px;}
.y3c_c00022{bottom:334.800000px;}
.y3a_c00022{bottom:336.960000px;}
.y39_c00022{bottom:337.680000px;}
.y3b_c00022{bottom:338.400000px;}
.y36_c00022{bottom:377.280000px;}
.y35_c00022{bottom:378.000000px;}
.y37_c00022{bottom:380.160000px;}
.y38_c00022{bottom:380.880000px;}
.y31_c00022{bottom:419.760000px;}
.y33_c00022{bottom:420.480000px;}
.y32_c00022{bottom:422.640000px;}
.y34_c00022{bottom:423.360000px;}
.y2e_c00022{bottom:462.960000px;}
.y30_c00022{bottom:465.120000px;}
.y2f_c00022{bottom:465.840000px;}
.y2d_c00022{bottom:505.440000px;}
.y2a_c00022{bottom:506.160000px;}
.y2c_c00022{bottom:508.320000px;}
.y2b_c00022{bottom:509.040000px;}
.y28_c00022{bottom:548.640000px;}
.y29_c00022{bottom:550.800000px;}
.y27_c00022{bottom:551.520000px;}
.y26_c00022{bottom:604.080000px;}
.y24_c00022{bottom:645.120000px;}
.y23_c00022{bottom:647.280000px;}
.y25_c00022{bottom:648.000000px;}
.y22_c00022{bottom:686.880000px;}
.y21_c00022{bottom:687.600000px;}
.y1f_c00022{bottom:689.760000px;}
.y20_c00022{bottom:690.480000px;}
.y1d_c00022{bottom:730.800000px;}
.y1b_c00022{bottom:732.240000px;}
.y1c_c00022{bottom:732.960000px;}
.y1e_c00022{bottom:733.680000px;}
.y19_c00022{bottom:783.360000px;}
.y18_c00022{bottom:784.080000px;}
.y1a_c00022{bottom:786.240000px;}
.y17_c00022{bottom:825.840000px;}
.y16_c00022{bottom:826.560000px;}
.y14_c00022{bottom:828.720000px;}
.y15_c00022{bottom:829.440000px;}
.y10_c00022{bottom:868.320000px;}
.y11_c00022{bottom:869.040000px;}
.yf_c00022{bottom:870.480000px;}
.y13_c00022{bottom:871.200000px;}
.y12_c00022{bottom:871.920000px;}
.yc_c00022{bottom:911.520000px;}
.ya_c00022{bottom:912.960000px;}
.yb_c00022{bottom:913.680000px;}
.yd_c00022{bottom:914.400000px;}
.ye_c00022{bottom:915.120000px;}
.y8_c00022{bottom:954.720000px;}
.y6_c00022{bottom:956.160000px;}
.y9_c00022{bottom:956.880000px;}
.y7_c00022{bottom:957.600000px;}
.y2_c00022{bottom:997.200000px;}
.y4_c00022{bottom:999.360000px;}
.y3_c00022{bottom:1000.080000px;}
.y5_c00022{bottom:1000.800000px;}
.y1_c00022{bottom:1087.200000px;}
.h10_c00022{height:28.508906px;}
.h9_c00022{height:31.100625px;}
.h8_c00022{height:33.692344px;}
.hf_c00022{height:38.875781px;}
.h4_c00022{height:41.467500px;}
.h6_c00022{height:44.059219px;}
.h5_c00022{height:46.650937px;}
.hd_c00022{height:49.242656px;}
.ha_c00022{height:51.834375px;}
.h3_c00022{height:54.426094px;}
.hc_c00022{height:55.290937px;}
.h7_c00022{height:57.017812px;}
.hb_c00022{height:59.609531px;}
.h2_c00022{height:62.201250px;}
.he_c00022{height:64.792969px;}
.h0_c00022{height:1141.920000px;}
.h1_c00022{height:1142.250000px;}
.w0_c00022{width:815.040000px;}
.w1_c00022{width:815.250000px;}
.x0_c00022{left:0.000000px;}
.x23_c00022{left:93.600000px;}
.x2_c00022{left:95.040000px;}
.x2a_c00022{left:97.200000px;}
.x4f_c00022{left:105.120000px;}
.x15_c00022{left:127.440000px;}
.x24_c00022{left:138.240000px;}
.x36_c00022{left:149.040000px;}
.x3e_c00022{left:158.400000px;}
.x31_c00022{left:159.840000px;}
.x16_c00022{left:161.280000px;}
.x1e_c00022{left:170.640000px;}
.x49_c00022{left:180.000000px;}
.x3_c00022{left:181.440000px;}
.xe_c00022{left:192.240000px;}
.x4_c00022{left:203.040000px;}
.x2b_c00022{left:204.480000px;}
.x56_c00022{left:213.120000px;}
.xf_c00022{left:224.640000px;}
.x2d_c00022{left:235.440000px;}
.x52_c00022{left:245.520000px;}
.x5_c00022{left:246.960000px;}
.x44_c00022{left:257.760000px;}
.x32_c00022{left:267.840000px;}
.x50_c00022{left:278.640000px;}
.x25_c00022{left:280.080000px;}
.x1f_c00022{left:289.440000px;}
.x37_c00022{left:299.520000px;}
.x10_c00022{left:300.960000px;}
.x17_c00022{left:311.040000px;}
.x2c_c00022{left:321.840000px;}
.x53_c00022{left:323.280000px;}
.x45_c00022{left:332.640000px;}
.x4c_c00022{left:342.000000px;}
.x2e_c00022{left:343.440000px;}
.x18_c00022{left:353.520000px;}
.x3c_c00022{left:373.680000px;}
.x19_c00022{left:375.840000px;}
.x46_c00022{left:385.920000px;}
.x11_c00022{left:396.000000px;}
.x6_c00022{left:397.440000px;}
.x20_c00022{left:406.800000px;}
.x54_c00022{left:408.240000px;}
.x47_c00022{left:418.320000px;}
.x38_c00022{left:428.400000px;}
.x7_c00022{left:439.200000px;}
.x4d_c00022{left:450.000000px;}
.x33_c00022{left:451.440000px;}
.x8_c00022{left:462.240000px;}
.x21_c00022{left:470.880000px;}
.x2f_c00022{left:473.040000px;}
.x34_c00022{left:483.120000px;}
.x3f_c00022{left:493.200000px;}
.x9_c00022{left:494.640000px;}
.x26_c00022{left:504.000000px;}
.x12_c00022{left:505.440000px;}
.x4a_c00022{left:515.520000px;}
.xa_c00022{left:525.600000px;}
.x22_c00022{left:536.400000px;}
.x27_c00022{left:547.200000px;}
.x39_c00022{left:548.640000px;}
.x42_c00022{left:557.280000px;}
.xb_c00022{left:559.440000px;}
.x4e_c00022{left:568.800000px;}
.x13_c00022{left:570.240000px;}
.x55_c00022{left:578.880000px;}
.x1a_c00022{left:580.320000px;}
.x28_c00022{left:591.120000px;}
.x48_c00022{left:600.480000px;}
.x1b_c00022{left:602.640000px;}
.x30_c00022{left:612.720000px;}
.x29_c00022{left:624.240000px;}
.x4b_c00022{left:633.600000px;}
.x1c_c00022{left:635.040000px;}
.x43_c00022{left:645.120000px;}
.x14_c00022{left:655.920000px;}
.x35_c00022{left:666.000000px;}
.x1d_c00022{left:667.440000px;}
.x3d_c00022{left:676.800000px;}
.xc_c00022{left:678.240000px;}
.x40_c00022{left:687.600000px;}
.x3a_c00022{left:699.120000px;}
.x51_c00022{left:709.200000px;}
.x3b_c00022{left:710.640000px;}
.x41_c00022{left:720.000000px;}
.xd_c00022{left:721.440000px;}
.x1_c00022{left:742.320000px;}
@media print{
.v2_c00022{vertical-align:-10.240000pt;}
.v0_c00022{vertical-align:0.000000pt;}
.v1_c00022{vertical-align:7.680000pt;}
.ls0_c00022{letter-spacing:0.000000pt;}
.ws2_c00022{word-spacing:0.000000pt;}
.ws0_c00022{word-spacing:1.379413pt;}
.ws1_c00022{word-spacing:1.764053pt;}
.fsd_c00022{font-size:28.160000pt;}
.fs7_c00022{font-size:30.720000pt;}
.fs6_c00022{font-size:33.280000pt;}
.fsc_c00022{font-size:38.400000pt;}
.fs2_c00022{font-size:40.960000pt;}
.fs4_c00022{font-size:43.520000pt;}
.fs3_c00022{font-size:46.080000pt;}
.fsa_c00022{font-size:48.640000pt;}
.fs8_c00022{font-size:51.200000pt;}
.fs1_c00022{font-size:53.760000pt;}
.fs5_c00022{font-size:56.320000pt;}
.fs9_c00022{font-size:58.880000pt;}
.fs0_c00022{font-size:61.440000pt;}
.fsb_c00022{font-size:64.000000pt;}
.y0_c00022{bottom:0.000000pt;}
.y54_c00022{bottom:32.640000pt;}
.y56_c00022{bottom:34.560000pt;}
.y55_c00022{bottom:35.200000pt;}
.y53_c00022{bottom:35.840000pt;}
.y51_c00022{bottom:70.400000pt;}
.y50_c00022{bottom:71.040000pt;}
.y52_c00022{bottom:72.320000pt;}
.y4f_c00022{bottom:72.960000pt;}
.y4e_c00022{bottom:73.600000pt;}
.y4c_c00022{bottom:108.800000pt;}
.y4d_c00022{bottom:110.720000pt;}
.y4b_c00022{bottom:111.360000pt;}
.y4a_c00022{bottom:112.000000pt;}
.y49_c00022{bottom:146.560000pt;}
.y48_c00022{bottom:148.480000pt;}
.y47_c00022{bottom:149.120000pt;}
.y46_c00022{bottom:183.680000pt;}
.y45_c00022{bottom:186.240000pt;}
.y44_c00022{bottom:186.880000pt;}
.y43_c00022{bottom:222.080000pt;}
.y42_c00022{bottom:224.000000pt;}
.y41_c00022{bottom:224.640000pt;}
.y3f_c00022{bottom:259.840000pt;}
.y3e_c00022{bottom:261.760000pt;}
.y3d_c00022{bottom:262.400000pt;}
.y40_c00022{bottom:263.040000pt;}
.y3c_c00022{bottom:297.600000pt;}
.y3a_c00022{bottom:299.520000pt;}
.y39_c00022{bottom:300.160000pt;}
.y3b_c00022{bottom:300.800000pt;}
.y36_c00022{bottom:335.360000pt;}
.y35_c00022{bottom:336.000000pt;}
.y37_c00022{bottom:337.920000pt;}
.y38_c00022{bottom:338.560000pt;}
.y31_c00022{bottom:373.120000pt;}
.y33_c00022{bottom:373.760000pt;}
.y32_c00022{bottom:375.680000pt;}
.y34_c00022{bottom:376.320000pt;}
.y2e_c00022{bottom:411.520000pt;}
.y30_c00022{bottom:413.440000pt;}
.y2f_c00022{bottom:414.080000pt;}
.y2d_c00022{bottom:449.280000pt;}
.y2a_c00022{bottom:449.920000pt;}
.y2c_c00022{bottom:451.840000pt;}
.y2b_c00022{bottom:452.480000pt;}
.y28_c00022{bottom:487.680000pt;}
.y29_c00022{bottom:489.600000pt;}
.y27_c00022{bottom:490.240000pt;}
.y26_c00022{bottom:536.960000pt;}
.y24_c00022{bottom:573.440000pt;}
.y23_c00022{bottom:575.360000pt;}
.y25_c00022{bottom:576.000000pt;}
.y22_c00022{bottom:610.560000pt;}
.y21_c00022{bottom:611.200000pt;}
.y1f_c00022{bottom:613.120000pt;}
.y20_c00022{bottom:613.760000pt;}
.y1d_c00022{bottom:649.600000pt;}
.y1b_c00022{bottom:650.880000pt;}
.y1c_c00022{bottom:651.520000pt;}
.y1e_c00022{bottom:652.160000pt;}
.y19_c00022{bottom:696.320000pt;}
.y18_c00022{bottom:696.960000pt;}
.y1a_c00022{bottom:698.880000pt;}
.y17_c00022{bottom:734.080000pt;}
.y16_c00022{bottom:734.720000pt;}
.y14_c00022{bottom:736.640000pt;}
.y15_c00022{bottom:737.280000pt;}
.y10_c00022{bottom:771.840000pt;}
.y11_c00022{bottom:772.480000pt;}
.yf_c00022{bottom:773.760000pt;}
.y13_c00022{bottom:774.400000pt;}
.y12_c00022{bottom:775.040000pt;}
.yc_c00022{bottom:810.240000pt;}
.ya_c00022{bottom:811.520000pt;}
.yb_c00022{bottom:812.160000pt;}
.yd_c00022{bottom:812.800000pt;}
.ye_c00022{bottom:813.440000pt;}
.y8_c00022{bottom:848.640000pt;}
.y6_c00022{bottom:849.920000pt;}
.y9_c00022{bottom:850.560000pt;}
.y7_c00022{bottom:851.200000pt;}
.y2_c00022{bottom:886.400000pt;}
.y4_c00022{bottom:888.320000pt;}
.y3_c00022{bottom:888.960000pt;}
.y5_c00022{bottom:889.600000pt;}
.y1_c00022{bottom:966.400000pt;}
.h10_c00022{height:25.341250pt;}
.h9_c00022{height:27.645000pt;}
.h8_c00022{height:29.948750pt;}
.hf_c00022{height:34.556250pt;}
.h4_c00022{height:36.860000pt;}
.h6_c00022{height:39.163750pt;}
.h5_c00022{height:41.467500pt;}
.hd_c00022{height:43.771250pt;}
.ha_c00022{height:46.075000pt;}
.h3_c00022{height:48.378750pt;}
.hc_c00022{height:49.147500pt;}
.h7_c00022{height:50.682500pt;}
.hb_c00022{height:52.986250pt;}
.h2_c00022{height:55.290000pt;}
.he_c00022{height:57.593750pt;}
.h0_c00022{height:1015.040000pt;}
.h1_c00022{height:1015.333333pt;}
.w0_c00022{width:724.480000pt;}
.w1_c00022{width:724.666667pt;}
.x0_c00022{left:0.000000pt;}
.x23_c00022{left:83.200000pt;}
.x2_c00022{left:84.480000pt;}
.x2a_c00022{left:86.400000pt;}
.x4f_c00022{left:93.440000pt;}
.x15_c00022{left:113.280000pt;}
.x24_c00022{left:122.880000pt;}
.x36_c00022{left:132.480000pt;}
.x3e_c00022{left:140.800000pt;}
.x31_c00022{left:142.080000pt;}
.x16_c00022{left:143.360000pt;}
.x1e_c00022{left:151.680000pt;}
.x49_c00022{left:160.000000pt;}
.x3_c00022{left:161.280000pt;}
.xe_c00022{left:170.880000pt;}
.x4_c00022{left:180.480000pt;}
.x2b_c00022{left:181.760000pt;}
.x56_c00022{left:189.440000pt;}
.xf_c00022{left:199.680000pt;}
.x2d_c00022{left:209.280000pt;}
.x52_c00022{left:218.240000pt;}
.x5_c00022{left:219.520000pt;}
.x44_c00022{left:229.120000pt;}
.x32_c00022{left:238.080000pt;}
.x50_c00022{left:247.680000pt;}
.x25_c00022{left:248.960000pt;}
.x1f_c00022{left:257.280000pt;}
.x37_c00022{left:266.240000pt;}
.x10_c00022{left:267.520000pt;}
.x17_c00022{left:276.480000pt;}
.x2c_c00022{left:286.080000pt;}
.x53_c00022{left:287.360000pt;}
.x45_c00022{left:295.680000pt;}
.x4c_c00022{left:304.000000pt;}
.x2e_c00022{left:305.280000pt;}
.x18_c00022{left:314.240000pt;}
.x3c_c00022{left:332.160000pt;}
.x19_c00022{left:334.080000pt;}
.x46_c00022{left:343.040000pt;}
.x11_c00022{left:352.000000pt;}
.x6_c00022{left:353.280000pt;}
.x20_c00022{left:361.600000pt;}
.x54_c00022{left:362.880000pt;}
.x47_c00022{left:371.840000pt;}
.x38_c00022{left:380.800000pt;}
.x7_c00022{left:390.400000pt;}
.x4d_c00022{left:400.000000pt;}
.x33_c00022{left:401.280000pt;}
.x8_c00022{left:410.880000pt;}
.x21_c00022{left:418.560000pt;}
.x2f_c00022{left:420.480000pt;}
.x34_c00022{left:429.440000pt;}
.x3f_c00022{left:438.400000pt;}
.x9_c00022{left:439.680000pt;}
.x26_c00022{left:448.000000pt;}
.x12_c00022{left:449.280000pt;}
.x4a_c00022{left:458.240000pt;}
.xa_c00022{left:467.200000pt;}
.x22_c00022{left:476.800000pt;}
.x27_c00022{left:486.400000pt;}
.x39_c00022{left:487.680000pt;}
.x42_c00022{left:495.360000pt;}
.xb_c00022{left:497.280000pt;}
.x4e_c00022{left:505.600000pt;}
.x13_c00022{left:506.880000pt;}
.x55_c00022{left:514.560000pt;}
.x1a_c00022{left:515.840000pt;}
.x28_c00022{left:525.440000pt;}
.x48_c00022{left:533.760000pt;}
.x1b_c00022{left:535.680000pt;}
.x30_c00022{left:544.640000pt;}
.x29_c00022{left:554.880000pt;}
.x4b_c00022{left:563.200000pt;}
.x1c_c00022{left:564.480000pt;}
.x43_c00022{left:573.440000pt;}
.x14_c00022{left:583.040000pt;}
.x35_c00022{left:592.000000pt;}
.x1d_c00022{left:593.280000pt;}
.x3d_c00022{left:601.600000pt;}
.xc_c00022{left:602.880000pt;}
.x40_c00022{left:611.200000pt;}
.x3a_c00022{left:621.440000pt;}
.x51_c00022{left:630.400000pt;}
.x3b_c00022{left:631.680000pt;}
.x41_c00022{left:640.000000pt;}
.xd_c00022{left:641.280000pt;}
.x1_c00022{left:659.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4e2e549e079a1b3edacd2ade.woff2')format("woff");}.ff1_c00023{font-family:ff1_c00023;line-height:1.109863;font-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_c00023{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m4_c00023{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.mb_c00023{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m21_c00023{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m47_c00023{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m24_c00023{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00023{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m18_c00023{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00023{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m29_c00023{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);}
.m56_c00023{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.ma_c00023{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m5_c00023{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m52_c00023{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m0_c00023{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_c00023{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m28_c00023{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m15_c00023{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m43_c00023{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m17_c00023{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);}
.md_c00023{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00023{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00023{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);}
.m33_c00023{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);}
.m41_c00023{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_c00023{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m6_c00023{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);}
.m4e_c00023{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m35_c00023{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m16_c00023{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);}
.m39_c00023{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);}
.m4b_c00023{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m23_c00023{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.mc_c00023{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m19_c00023{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);}
.m1a_c00023{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m7_c00023{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m30_c00023{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);}
.m3f_c00023{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m3_c00023{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.mf_c00023{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m1_c00023{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);}
.m9_c00023{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00023{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m49_c00023{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_c00023{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);}
.m34_c00023{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00023{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m26_c00023{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m50_c00023{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m8_c00023{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);}
.me_c00023{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m22_c00023{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00023{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);}
.m51_c00023{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00023{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m54_c00023{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00023{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m38_c00023{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m27_c00023{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);}
.m1e_c00023{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m45_c00023{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);}
.m25_c00023{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m2_c00023{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m46_c00023{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m14_c00023{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);}
.m1d_c00023{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00023{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m32_c00023{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00023{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00023{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00023{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);}
.m1c_c00023{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m37_c00023{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00023{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m10_c00023{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m53_c00023{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);}
.m11_c00023{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00023{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m40_c00023{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m36_c00023{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m55_c00023{transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);}
.m13_c00023{transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);}
.m44_c00023{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);}
.m4a_c00023{transform:matrix(0.695000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.695000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.695000,0.000000,0.000000,0.250000,0,0);}
.m42_c00023{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00023{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.v0_c00023{vertical-align:0.000000px;}
.ls0_c00023{letter-spacing:0.000000px;}
.sc__c00023{text-shadow:none;}
.sc0_c00023{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00023{-webkit-text-stroke:0px transparent;}
.sc0_c00023{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00023{word-spacing:0.000000px;}
.fc0_c00023{color:transparent;}
.fs3_c00023{font-size:34.560000px;}
.fs9_c00023{font-size:37.440000px;}
.fsd_c00023{font-size:40.320000px;}
.fsc_c00023{font-size:43.200000px;}
.fs2_c00023{font-size:46.080000px;}
.fs6_c00023{font-size:48.960000px;}
.fs1_c00023{font-size:51.840000px;}
.fsb_c00023{font-size:54.720000px;}
.fs8_c00023{font-size:57.600000px;}
.fs4_c00023{font-size:60.480000px;}
.fs5_c00023{font-size:63.360000px;}
.fs7_c00023{font-size:66.240000px;}
.fsa_c00023{font-size:69.120000px;}
.fs0_c00023{font-size:72.000000px;}
.y0_c00023{bottom:0.000000px;}
.y58_c00023{bottom:26.640000px;}
.y54_c00023{bottom:28.080000px;}
.y56_c00023{bottom:29.520000px;}
.y55_c00023{bottom:30.240000px;}
.y57_c00023{bottom:30.960000px;}
.y53_c00023{bottom:69.120000px;}
.y52_c00023{bottom:72.000000px;}
.y51_c00023{bottom:72.720000px;}
.y50_c00023{bottom:73.440000px;}
.y4f_c00023{bottom:111.600000px;}
.y4d_c00023{bottom:112.320000px;}
.y4e_c00023{bottom:114.480000px;}
.y4c_c00023{bottom:115.200000px;}
.y4b_c00023{bottom:156.960000px;}
.y49_c00023{bottom:157.680000px;}
.y4a_c00023{bottom:158.400000px;}
.y47_c00023{bottom:208.080000px;}
.y48_c00023{bottom:209.520000px;}
.y46_c00023{bottom:210.960000px;}
.y45_c00023{bottom:250.560000px;}
.y43_c00023{bottom:252.720000px;}
.y44_c00023{bottom:253.440000px;}
.y42_c00023{bottom:254.160000px;}
.y3e_c00023{bottom:293.040000px;}
.y40_c00023{bottom:293.760000px;}
.y3f_c00023{bottom:295.920000px;}
.y41_c00023{bottom:296.640000px;}
.y3b_c00023{bottom:335.520000px;}
.y3d_c00023{bottom:336.240000px;}
.y3c_c00023{bottom:338.400000px;}
.y3a_c00023{bottom:339.120000px;}
.y37_c00023{bottom:378.000000px;}
.y39_c00023{bottom:378.720000px;}
.y36_c00023{bottom:380.160000px;}
.y35_c00023{bottom:380.880000px;}
.y38_c00023{bottom:381.600000px;}
.y32_c00023{bottom:420.480000px;}
.y34_c00023{bottom:421.920000px;}
.y31_c00023{bottom:423.360000px;}
.y33_c00023{bottom:424.080000px;}
.y2f_c00023{bottom:462.960000px;}
.y30_c00023{bottom:463.680000px;}
.y2e_c00023{bottom:465.840000px;}
.y2d_c00023{bottom:466.560000px;}
.y2a_c00023{bottom:505.440000px;}
.y2c_c00023{bottom:506.160000px;}
.y29_c00023{bottom:508.320000px;}
.y2b_c00023{bottom:509.040000px;}
.y28_c00023{bottom:561.600000px;}
.y24_c00023{bottom:601.920000px;}
.y27_c00023{bottom:602.640000px;}
.y25_c00023{bottom:604.080000px;}
.y23_c00023{bottom:604.800000px;}
.y26_c00023{bottom:605.520000px;}
.y21_c00023{bottom:645.120000px;}
.y22_c00023{bottom:646.560000px;}
.y20_c00023{bottom:647.280000px;}
.y1c_c00023{bottom:686.880000px;}
.y1f_c00023{bottom:687.600000px;}
.y1e_c00023{bottom:689.760000px;}
.y1d_c00023{bottom:690.480000px;}
.y18_c00023{bottom:729.360000px;}
.y1a_c00023{bottom:730.080000px;}
.y1b_c00023{bottom:732.240000px;}
.y19_c00023{bottom:732.960000px;}
.y15_c00023{bottom:772.560000px;}
.y16_c00023{bottom:775.440000px;}
.y17_c00023{bottom:776.160000px;}
.y11_c00023{bottom:815.040000px;}
.y13_c00023{bottom:815.760000px;}
.y14_c00023{bottom:817.920000px;}
.y12_c00023{bottom:818.640000px;}
.ye_c00023{bottom:858.960000px;}
.yd_c00023{bottom:860.400000px;}
.yf_c00023{bottom:861.120000px;}
.y10_c00023{bottom:861.840000px;}
.yb_c00023{bottom:902.160000px;}
.yc_c00023{bottom:903.600000px;}
.ya_c00023{bottom:904.320000px;}
.y9_c00023{bottom:954.720000px;}
.y8_c00023{bottom:955.440000px;}
.y5_c00023{bottom:956.160000px;}
.y6_c00023{bottom:956.880000px;}
.y7_c00023{bottom:957.600000px;}
.y4_c00023{bottom:997.200000px;}
.y2_c00023{bottom:999.360000px;}
.y3_c00023{bottom:1000.080000px;}
.y1_c00023{bottom:1083.600000px;}
.h5_c00023{height:31.100625px;}
.hb_c00023{height:33.692344px;}
.hf_c00023{height:36.284062px;}
.he_c00023{height:38.875781px;}
.h4_c00023{height:41.467500px;}
.h8_c00023{height:44.059219px;}
.h3_c00023{height:46.650937px;}
.hd_c00023{height:49.242656px;}
.ha_c00023{height:51.834375px;}
.h6_c00023{height:54.426094px;}
.h7_c00023{height:57.017812px;}
.h9_c00023{height:59.609531px;}
.hc_c00023{height:62.201250px;}
.h2_c00023{height:64.792969px;}
.h0_c00023{height:1142.640000px;}
.h1_c00023{height:1143.000000px;}
.w0_c00023{width:816.480000px;}
.w1_c00023{width:816.750000px;}
.x0_c00023{left:0.000000px;}
.x3e_c00023{left:93.600000px;}
.x2_c00023{left:95.040000px;}
.x15_c00023{left:96.480375px;}
.x37_c00023{left:127.440000px;}
.x4a_c00023{left:138.240000px;}
.x30_c00023{left:149.040000px;}
.x24_c00023{left:159.840000px;}
.x9_c00023{left:170.640000px;}
.x38_c00023{left:181.440000px;}
.xa_c00023{left:192.240000px;}
.xd_c00023{left:203.760000px;}
.x3f_c00023{left:213.840000px;}
.x31_c00023{left:223.200000px;}
.x3_c00023{left:224.640000px;}
.x16_c00023{left:226.080000px;}
.x4e_c00023{left:234.000000px;}
.x1d_c00023{left:236.160000px;}
.x49_c00023{left:245.520000px;}
.xe_c00023{left:257.760000px;}
.x4_c00023{left:267.840000px;}
.xb_c00023{left:270.720000px;}
.x43_c00023{left:277.920000px;}
.x33_c00023{left:290.160000px;}
.x28_c00023{left:300.240000px;}
.x2b_c00023{left:301.680000px;}
.x44_c00023{left:311.040000px;}
.x4b_c00023{left:320.400000px;}
.x17_c00023{left:321.840000px;}
.x1e_c00023{left:332.640000px;}
.x29_c00023{left:343.440000px;}
.x3d_c00023{left:354.240000px;}
.xf_c00023{left:364.320000px;}
.x25_c00023{left:375.840000px;}
.x39_c00023{left:385.920000px;}
.xc_c00023{left:387.360000px;}
.x45_c00023{left:395.280000px;}
.x5_c00023{left:396.720000px;}
.x18_c00023{left:407.520000px;}
.x10_c00023{left:416.880000px;}
.x34_c00023{left:418.320000px;}
.x1f_c00023{left:429.120000px;}
.x40_c00023{left:439.200000px;}
.x6_c00023{left:450.720000px;}
.x2c_c00023{left:452.160000px;}
.x36_c00023{left:462.240000px;}
.x20_c00023{left:472.320000px;}
.x19_c00023{left:482.400000px;}
.x4c_c00023{left:483.840000px;}
.x32_c00023{left:493.200000px;}
.x11_c00023{left:494.640000px;}
.x21_c00023{left:505.440000px;}
.x47_c00023{left:507.600000px;}
.x7_c00023{left:515.520000px;}
.x41_c00023{left:524.880000px;}
.x2d_c00023{left:526.320000px;}
.x22_c00023{left:537.120000px;}
.x12_c00023{left:548.640000px;}
.x35_c00023{left:558.720000px;}
.x42_c00023{left:568.800000px;}
.x23_c00023{left:570.240000px;}
.x26_c00023{left:580.320000px;}
.x48_c00023{left:581.760000px;}
.x1a_c00023{left:591.840000px;}
.x13_c00023{left:602.640000px;}
.x46_c00023{left:613.440000px;}
.x1b_c00023{left:623.520000px;}
.x2e_c00023{left:634.320000px;}
.x50_c00023{left:645.120000px;}
.x4f_c00023{left:646.560000px;}
.x1c_c00023{left:655.920000px;}
.x2f_c00023{left:666.000000px;}
.x2a_c00023{left:667.440000px;}
.x3a_c00023{left:677.520000px;}
.x14_c00023{left:689.040000px;}
.x8_c00023{left:699.840000px;}
.x3b_c00023{left:710.640000px;}
.x1_c00023{left:717.840000px;}
.x27_c00023{left:720.720000px;}
.x4d_c00023{left:731.520000px;}
.x3c_c00023{left:743.040000px;}
@media print{
.v0_c00023{vertical-align:0.000000pt;}
.ls0_c00023{letter-spacing:0.000000pt;}
.ws0_c00023{word-spacing:0.000000pt;}
.fs3_c00023{font-size:30.720000pt;}
.fs9_c00023{font-size:33.280000pt;}
.fsd_c00023{font-size:35.840000pt;}
.fsc_c00023{font-size:38.400000pt;}
.fs2_c00023{font-size:40.960000pt;}
.fs6_c00023{font-size:43.520000pt;}
.fs1_c00023{font-size:46.080000pt;}
.fsb_c00023{font-size:48.640000pt;}
.fs8_c00023{font-size:51.200000pt;}
.fs4_c00023{font-size:53.760000pt;}
.fs5_c00023{font-size:56.320000pt;}
.fs7_c00023{font-size:58.880000pt;}
.fsa_c00023{font-size:61.440000pt;}
.fs0_c00023{font-size:64.000000pt;}
.y0_c00023{bottom:0.000000pt;}
.y58_c00023{bottom:23.680000pt;}
.y54_c00023{bottom:24.960000pt;}
.y56_c00023{bottom:26.240000pt;}
.y55_c00023{bottom:26.880000pt;}
.y57_c00023{bottom:27.520000pt;}
.y53_c00023{bottom:61.440000pt;}
.y52_c00023{bottom:64.000000pt;}
.y51_c00023{bottom:64.640000pt;}
.y50_c00023{bottom:65.280000pt;}
.y4f_c00023{bottom:99.200000pt;}
.y4d_c00023{bottom:99.840000pt;}
.y4e_c00023{bottom:101.760000pt;}
.y4c_c00023{bottom:102.400000pt;}
.y4b_c00023{bottom:139.520000pt;}
.y49_c00023{bottom:140.160000pt;}
.y4a_c00023{bottom:140.800000pt;}
.y47_c00023{bottom:184.960000pt;}
.y48_c00023{bottom:186.240000pt;}
.y46_c00023{bottom:187.520000pt;}
.y45_c00023{bottom:222.720000pt;}
.y43_c00023{bottom:224.640000pt;}
.y44_c00023{bottom:225.280000pt;}
.y42_c00023{bottom:225.920000pt;}
.y3e_c00023{bottom:260.480000pt;}
.y40_c00023{bottom:261.120000pt;}
.y3f_c00023{bottom:263.040000pt;}
.y41_c00023{bottom:263.680000pt;}
.y3b_c00023{bottom:298.240000pt;}
.y3d_c00023{bottom:298.880000pt;}
.y3c_c00023{bottom:300.800000pt;}
.y3a_c00023{bottom:301.440000pt;}
.y37_c00023{bottom:336.000000pt;}
.y39_c00023{bottom:336.640000pt;}
.y36_c00023{bottom:337.920000pt;}
.y35_c00023{bottom:338.560000pt;}
.y38_c00023{bottom:339.200000pt;}
.y32_c00023{bottom:373.760000pt;}
.y34_c00023{bottom:375.040000pt;}
.y31_c00023{bottom:376.320000pt;}
.y33_c00023{bottom:376.960000pt;}
.y2f_c00023{bottom:411.520000pt;}
.y30_c00023{bottom:412.160000pt;}
.y2e_c00023{bottom:414.080000pt;}
.y2d_c00023{bottom:414.720000pt;}
.y2a_c00023{bottom:449.280000pt;}
.y2c_c00023{bottom:449.920000pt;}
.y29_c00023{bottom:451.840000pt;}
.y2b_c00023{bottom:452.480000pt;}
.y28_c00023{bottom:499.200000pt;}
.y24_c00023{bottom:535.040000pt;}
.y27_c00023{bottom:535.680000pt;}
.y25_c00023{bottom:536.960000pt;}
.y23_c00023{bottom:537.600000pt;}
.y26_c00023{bottom:538.240000pt;}
.y21_c00023{bottom:573.440000pt;}
.y22_c00023{bottom:574.720000pt;}
.y20_c00023{bottom:575.360000pt;}
.y1c_c00023{bottom:610.560000pt;}
.y1f_c00023{bottom:611.200000pt;}
.y1e_c00023{bottom:613.120000pt;}
.y1d_c00023{bottom:613.760000pt;}
.y18_c00023{bottom:648.320000pt;}
.y1a_c00023{bottom:648.960000pt;}
.y1b_c00023{bottom:650.880000pt;}
.y19_c00023{bottom:651.520000pt;}
.y15_c00023{bottom:686.720000pt;}
.y16_c00023{bottom:689.280000pt;}
.y17_c00023{bottom:689.920000pt;}
.y11_c00023{bottom:724.480000pt;}
.y13_c00023{bottom:725.120000pt;}
.y14_c00023{bottom:727.040000pt;}
.y12_c00023{bottom:727.680000pt;}
.ye_c00023{bottom:763.520000pt;}
.yd_c00023{bottom:764.800000pt;}
.yf_c00023{bottom:765.440000pt;}
.y10_c00023{bottom:766.080000pt;}
.yb_c00023{bottom:801.920000pt;}
.yc_c00023{bottom:803.200000pt;}
.ya_c00023{bottom:803.840000pt;}
.y9_c00023{bottom:848.640000pt;}
.y8_c00023{bottom:849.280000pt;}
.y5_c00023{bottom:849.920000pt;}
.y6_c00023{bottom:850.560000pt;}
.y7_c00023{bottom:851.200000pt;}
.y4_c00023{bottom:886.400000pt;}
.y2_c00023{bottom:888.320000pt;}
.y3_c00023{bottom:888.960000pt;}
.y1_c00023{bottom:963.200000pt;}
.h5_c00023{height:27.645000pt;}
.hb_c00023{height:29.948750pt;}
.hf_c00023{height:32.252500pt;}
.he_c00023{height:34.556250pt;}
.h4_c00023{height:36.860000pt;}
.h8_c00023{height:39.163750pt;}
.h3_c00023{height:41.467500pt;}
.hd_c00023{height:43.771250pt;}
.ha_c00023{height:46.075000pt;}
.h6_c00023{height:48.378750pt;}
.h7_c00023{height:50.682500pt;}
.h9_c00023{height:52.986250pt;}
.hc_c00023{height:55.290000pt;}
.h2_c00023{height:57.593750pt;}
.h0_c00023{height:1015.680000pt;}
.h1_c00023{height:1016.000000pt;}
.w0_c00023{width:725.760000pt;}
.w1_c00023{width:726.000000pt;}
.x0_c00023{left:0.000000pt;}
.x3e_c00023{left:83.200000pt;}
.x2_c00023{left:84.480000pt;}
.x15_c00023{left:85.760333pt;}
.x37_c00023{left:113.280000pt;}
.x4a_c00023{left:122.880000pt;}
.x30_c00023{left:132.480000pt;}
.x24_c00023{left:142.080000pt;}
.x9_c00023{left:151.680000pt;}
.x38_c00023{left:161.280000pt;}
.xa_c00023{left:170.880000pt;}
.xd_c00023{left:181.120000pt;}
.x3f_c00023{left:190.080000pt;}
.x31_c00023{left:198.400000pt;}
.x3_c00023{left:199.680000pt;}
.x16_c00023{left:200.960000pt;}
.x4e_c00023{left:208.000000pt;}
.x1d_c00023{left:209.920000pt;}
.x49_c00023{left:218.240000pt;}
.xe_c00023{left:229.120000pt;}
.x4_c00023{left:238.080000pt;}
.xb_c00023{left:240.640000pt;}
.x43_c00023{left:247.040000pt;}
.x33_c00023{left:257.920000pt;}
.x28_c00023{left:266.880000pt;}
.x2b_c00023{left:268.160000pt;}
.x44_c00023{left:276.480000pt;}
.x4b_c00023{left:284.800000pt;}
.x17_c00023{left:286.080000pt;}
.x1e_c00023{left:295.680000pt;}
.x29_c00023{left:305.280000pt;}
.x3d_c00023{left:314.880000pt;}
.xf_c00023{left:323.840000pt;}
.x25_c00023{left:334.080000pt;}
.x39_c00023{left:343.040000pt;}
.xc_c00023{left:344.320000pt;}
.x45_c00023{left:351.360000pt;}
.x5_c00023{left:352.640000pt;}
.x18_c00023{left:362.240000pt;}
.x10_c00023{left:370.560000pt;}
.x34_c00023{left:371.840000pt;}
.x1f_c00023{left:381.440000pt;}
.x40_c00023{left:390.400000pt;}
.x6_c00023{left:400.640000pt;}
.x2c_c00023{left:401.920000pt;}
.x36_c00023{left:410.880000pt;}
.x20_c00023{left:419.840000pt;}
.x19_c00023{left:428.800000pt;}
.x4c_c00023{left:430.080000pt;}
.x32_c00023{left:438.400000pt;}
.x11_c00023{left:439.680000pt;}
.x21_c00023{left:449.280000pt;}
.x47_c00023{left:451.200000pt;}
.x7_c00023{left:458.240000pt;}
.x41_c00023{left:466.560000pt;}
.x2d_c00023{left:467.840000pt;}
.x22_c00023{left:477.440000pt;}
.x12_c00023{left:487.680000pt;}
.x35_c00023{left:496.640000pt;}
.x42_c00023{left:505.600000pt;}
.x23_c00023{left:506.880000pt;}
.x26_c00023{left:515.840000pt;}
.x48_c00023{left:517.120000pt;}
.x1a_c00023{left:526.080000pt;}
.x13_c00023{left:535.680000pt;}
.x46_c00023{left:545.280000pt;}
.x1b_c00023{left:554.240000pt;}
.x2e_c00023{left:563.840000pt;}
.x50_c00023{left:573.440000pt;}
.x4f_c00023{left:574.720000pt;}
.x1c_c00023{left:583.040000pt;}
.x2f_c00023{left:592.000000pt;}
.x2a_c00023{left:593.280000pt;}
.x3a_c00023{left:602.240000pt;}
.x14_c00023{left:612.480000pt;}
.x8_c00023{left:622.080000pt;}
.x3b_c00023{left:631.680000pt;}
.x1_c00023{left:638.080000pt;}
.x27_c00023{left:640.640000pt;}
.x4d_c00023{left:650.240000pt;}
.x3c_c00023{left:660.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_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_ba2e5bbf3005e921a1860abb.woff2')format("woff");}.ff1_c00024{font-family:ff1_c00024;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00024{transform:matrix(0.234825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234825,0.000000,0.000000,0.250000,0,0);}
.m58_c00024{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00024{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);}
.m31_c00024{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2_c00024{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m23_c00024{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m11_c00024{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mf_c00024{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m36_c00024{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m41_c00024{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m18_c00024{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1_c00024{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m12_c00024{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m21_c00024{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00024{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00024{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00024{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m50_c00024{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m6_c00024{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00024{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m17_c00024{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);}
.m5b_c00024{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m16_c00024{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);}
.m53_c00024{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m42_c00024{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);}
.m8_c00024{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m10_c00024{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);}
.m9_c00024{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);}
.m28_c00024{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00024{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.mb_c00024{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);}
.m3c_c00024{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);}
.m2d_c00024{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);}
.m27_c00024{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);}
.m29_c00024{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00024{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);}
.m1c_c00024{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);}
.m5f_c00024{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);}
.m35_c00024{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m5_c00024{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m15_c00024{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m22_c00024{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m4_c00024{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m30_c00024{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);}
.m52_c00024{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);}
.m3e_c00024{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00024{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00024{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m45_c00024{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);}
.m24_c00024{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);}
.m20_c00024{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);}
.md_c00024{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m40_c00024{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m14_c00024{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m33_c00024{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m34_c00024{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);}
.m2a_c00024{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00024{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m59_c00024{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m43_c00024{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);}
.mc_c00024{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m54_c00024{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00024{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m19_c00024{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00024{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00024{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);}
.m56_c00024{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);}
.m57_c00024{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00024{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m3_c00024{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00024{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);}
.m47_c00024{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m49_c00024{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00024{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);}
.m4f_c00024{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m37_c00024{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m13_c00024{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.me_c00024{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);}
.m38_c00024{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m25_c00024{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00024{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m39_c00024{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00024{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.ma_c00024{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m7_c00024{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00024{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m26_c00024{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m44_c00024{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);}
.m1d_c00024{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m55_c00024{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m32_c00024{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m46_c00024{transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00024{transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);}
.m48_c00024{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.m51_c00024{transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00024{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.v1_c00024{vertical-align:-2.880000px;}
.v0_c00024{vertical-align:0.000000px;}
.v2_c00024{vertical-align:2.880000px;}
.ls0_c00024{letter-spacing:0.000000px;}
.sc__c00024{text-shadow:none;}
.sc0_c00024{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00024{-webkit-text-stroke:0px transparent;}
.sc0_c00024{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00024{word-spacing:-2.844480px;}
.ws2_c00024{word-spacing:-2.630880px;}
.ws4_c00024{word-spacing:0.000000px;}
.ws0_c00024{word-spacing:0.333711px;}
.ws1_c00024{word-spacing:3.601302px;}
.fc0_c00024{color:transparent;}
.fs8_c00024{font-size:34.560000px;}
.fs3_c00024{font-size:37.440000px;}
.fs7_c00024{font-size:40.320000px;}
.fse_c00024{font-size:43.200000px;}
.fs4_c00024{font-size:46.080000px;}
.fs5_c00024{font-size:48.960000px;}
.fs9_c00024{font-size:51.840000px;}
.fsc_c00024{font-size:54.720000px;}
.fsd_c00024{font-size:57.600000px;}
.fsa_c00024{font-size:60.480000px;}
.fs6_c00024{font-size:63.360000px;}
.fsb_c00024{font-size:66.240000px;}
.fs1_c00024{font-size:69.120000px;}
.fs2_c00024{font-size:72.000000px;}
.fs0_c00024{font-size:74.880000px;}
.y0_c00024{bottom:0.000000px;}
.y5c_c00024{bottom:47.520000px;}
.y5b_c00024{bottom:48.240000px;}
.y5d_c00024{bottom:49.680000px;}
.y5a_c00024{bottom:50.400000px;}
.y59_c00024{bottom:51.120000px;}
.y58_c00024{bottom:92.160000px;}
.y57_c00024{bottom:92.880000px;}
.y55_c00024{bottom:143.280000px;}
.y56_c00024{bottom:146.160000px;}
.y53_c00024{bottom:185.040000px;}
.y51_c00024{bottom:185.760000px;}
.y54_c00024{bottom:187.920000px;}
.y52_c00024{bottom:188.640000px;}
.y4f_c00024{bottom:227.520000px;}
.y4e_c00024{bottom:228.240000px;}
.y50_c00024{bottom:230.400000px;}
.y4d_c00024{bottom:231.120000px;}
.y4a_c00024{bottom:270.720000px;}
.y4c_c00024{bottom:271.440000px;}
.y4b_c00024{bottom:272.880000px;}
.y49_c00024{bottom:273.600000px;}
.y48_c00024{bottom:312.480000px;}
.y45_c00024{bottom:313.200000px;}
.y46_c00024{bottom:313.920000px;}
.y47_c00024{bottom:316.080000px;}
.y44_c00024{bottom:316.800000px;}
.y40_c00024{bottom:356.400000px;}
.y41_c00024{bottom:357.840000px;}
.y42_c00024{bottom:358.560000px;}
.y43_c00024{bottom:359.280000px;}
.y3f_c00024{bottom:398.160000px;}
.y3e_c00024{bottom:398.880000px;}
.y3d_c00024{bottom:401.040000px;}
.y3c_c00024{bottom:401.760000px;}
.y3a_c00024{bottom:440.640000px;}
.y3b_c00024{bottom:441.360000px;}
.y38_c00024{bottom:443.520000px;}
.y39_c00024{bottom:444.240000px;}
.y35_c00024{bottom:484.560000px;}
.y37_c00024{bottom:486.000000px;}
.y36_c00024{bottom:486.720000px;}
.y33_c00024{bottom:526.320000px;}
.y31_c00024{bottom:527.040000px;}
.y34_c00024{bottom:528.480000px;}
.y32_c00024{bottom:529.200000px;}
.y30_c00024{bottom:529.920000px;}
.y2e_c00024{bottom:568.800000px;}
.y2d_c00024{bottom:569.520000px;}
.y2f_c00024{bottom:571.680000px;}
.y2c_c00024{bottom:572.400000px;}
.y2a_c00024{bottom:622.800000px;}
.y2b_c00024{bottom:623.520000px;}
.y29_c00024{bottom:624.960000px;}
.y27_c00024{bottom:665.280000px;}
.y25_c00024{bottom:666.000000px;}
.y26_c00024{bottom:667.440000px;}
.y24_c00024{bottom:668.160000px;}
.y28_c00024{bottom:668.880000px;}
.y21_c00024{bottom:707.760000px;}
.y23_c00024{bottom:709.200000px;}
.y22_c00024{bottom:709.920000px;}
.y20_c00024{bottom:710.640000px;}
.y1e_c00024{bottom:749.520000px;}
.y1d_c00024{bottom:750.240000px;}
.y1c_c00024{bottom:753.120000px;}
.y1f_c00024{bottom:753.840000px;}
.y1b_c00024{bottom:792.720000px;}
.y1a_c00024{bottom:793.440000px;}
.y19_c00024{bottom:795.600000px;}
.y17_c00024{bottom:835.200000px;}
.y15_c00024{bottom:837.360000px;}
.y16_c00024{bottom:838.080000px;}
.y18_c00024{bottom:838.800000px;}
.y13_c00024{bottom:877.680000px;}
.y14_c00024{bottom:878.400000px;}
.y12_c00024{bottom:879.120000px;}
.y11_c00024{bottom:880.560000px;}
.yc_c00024{bottom:920.160000px;}
.ye_c00024{bottom:920.880000px;}
.yf_c00024{bottom:921.600000px;}
.yd_c00024{bottom:923.040000px;}
.y10_c00024{bottom:923.760000px;}
.ya_c00024{bottom:962.640000px;}
.y7_c00024{bottom:963.360000px;}
.y9_c00024{bottom:964.080000px;}
.yb_c00024{bottom:965.520000px;}
.y6_c00024{bottom:966.240000px;}
.y8_c00024{bottom:966.960000px;}
.y5_c00024{bottom:1005.120000px;}
.y2_c00024{bottom:1005.840000px;}
.y3_c00024{bottom:1008.720000px;}
.y4_c00024{bottom:1009.440000px;}
.y1_c00024{bottom:1092.960000px;}
.ha_c00024{height:31.100625px;}
.h5_c00024{height:33.692344px;}
.h9_c00024{height:36.284062px;}
.h10_c00024{height:38.875781px;}
.h6_c00024{height:41.467500px;}
.h7_c00024{height:44.059219px;}
.hb_c00024{height:46.650937px;}
.he_c00024{height:49.242656px;}
.h11_c00024{height:49.530937px;}
.hf_c00024{height:51.834375px;}
.hc_c00024{height:54.426094px;}
.h8_c00024{height:57.017812px;}
.hd_c00024{height:59.609531px;}
.h3_c00024{height:62.201250px;}
.h4_c00024{height:64.792969px;}
.h2_c00024{height:67.384687px;}
.h1_c00024{height:1148.250000px;}
.h0_c00024{height:1148.400000px;}
.w1_c00024{width:823.500000px;}
.w0_c00024{width:823.680000px;}
.x0_c00024{left:0.000000px;}
.x45_c00024{left:92.880000px;}
.xe_c00024{left:94.320000px;}
.x2_c00024{left:95.760000px;}
.x48_c00024{left:115.920000px;}
.x19_c00024{left:126.000000px;}
.x3b_c00024{left:136.080000px;}
.x1e_c00024{left:137.520000px;}
.x25_c00024{left:147.600000px;}
.x1a_c00024{left:159.120000px;}
.xf_c00024{left:168.480000px;}
.x46_c00024{left:170.640000px;}
.x4a_c00024{left:179.280000px;}
.x3_c00024{left:180.720000px;}
.x10_c00024{left:190.800000px;}
.x2b_c00024{left:193.680000px;}
.x39_c00024{left:200.880000px;}
.x42_c00024{left:202.320000px;}
.x3c_c00024{left:212.400000px;}
.x37_c00024{left:215.280000px;}
.x11_c00024{left:223.200000px;}
.x22_c00024{left:234.000000px;}
.x31_c00024{left:235.440000px;}
.x4_c00024{left:244.080000px;}
.x4b_c00024{left:245.520000px;}
.x43_c00024{left:255.600000px;}
.x44_c00024{left:276.480000px;}
.x4c_c00024{left:278.640000px;}
.x32_c00024{left:287.280000px;}
.x1b_c00024{left:290.160000px;}
.x3d_c00024{left:299.520000px;}
.x12_c00024{left:300.960000px;}
.x33_c00024{left:310.320000px;}
.x3e_c00024{left:319.680000px;}
.x38_c00024{left:321.840000px;}
.x4e_c00024{left:330.480000px;}
.x5_c00024{left:341.280000px;}
.x26_c00024{left:352.800000px;}
.x28_c00024{left:362.880000px;}
.x2c_c00024{left:364.320000px;}
.x6_c00024{left:372.960000px;}
.x1f_c00024{left:384.480000px;}
.x13_c00024{left:396.000000px;}
.x7_c00024{left:406.080000px;}
.x2d_c00024{left:417.600000px;}
.x3f_c00024{left:427.680000px;}
.x34_c00024{left:439.200000px;}
.x47_c00024{left:449.280000px;}
.x4f_c00024{left:450.720000px;}
.x14_c00024{left:460.080000px;}
.x35_c00024{left:471.600000px;}
.x2e_c00024{left:473.040000px;}
.x8_c00024{left:481.680000px;}
.x23_c00024{left:493.200000px;}
.x29_c00024{left:503.280000px;}
.x20_c00024{left:504.720000px;}
.x9_c00024{left:513.360000px;}
.x49_c00024{left:524.880000px;}
.x27_c00024{left:527.040000px;}
.x40_c00024{left:536.400000px;}
.x2f_c00024{left:547.200000px;}
.x15_c00024{left:557.280000px;}
.xa_c00024{left:578.880000px;}
.x16_c00024{left:589.680000px;}
.x50_c00024{left:591.120000px;}
.x1c_c00024{left:599.760000px;}
.xb_c00024{left:612.000000px;}
.x17_c00024{left:621.360000px;}
.x2a_c00024{left:632.880000px;}
.x21_c00024{left:643.680000px;}
.x1d_c00024{left:664.560000px;}
.x4d_c00024{left:666.000000px;}
.xc_c00024{left:676.080000px;}
.x3a_c00024{left:686.880000px;}
.x18_c00024{left:697.680000px;}
.xd_c00024{left:708.480000px;}
.x36_c00024{left:709.920000px;}
.x41_c00024{left:720.000000px;}
.x24_c00024{left:729.360000px;}
.x30_c00024{left:730.800000px;}
.x1_c00024{left:747.360000px;}
@media print{
.v1_c00024{vertical-align:-2.560000pt;}
.v0_c00024{vertical-align:0.000000pt;}
.v2_c00024{vertical-align:2.560000pt;}
.ls0_c00024{letter-spacing:0.000000pt;}
.ws3_c00024{word-spacing:-2.528427pt;}
.ws2_c00024{word-spacing:-2.338560pt;}
.ws4_c00024{word-spacing:0.000000pt;}
.ws0_c00024{word-spacing:0.296632pt;}
.ws1_c00024{word-spacing:3.201157pt;}
.fs8_c00024{font-size:30.720000pt;}
.fs3_c00024{font-size:33.280000pt;}
.fs7_c00024{font-size:35.840000pt;}
.fse_c00024{font-size:38.400000pt;}
.fs4_c00024{font-size:40.960000pt;}
.fs5_c00024{font-size:43.520000pt;}
.fs9_c00024{font-size:46.080000pt;}
.fsc_c00024{font-size:48.640000pt;}
.fsd_c00024{font-size:51.200000pt;}
.fsa_c00024{font-size:53.760000pt;}
.fs6_c00024{font-size:56.320000pt;}
.fsb_c00024{font-size:58.880000pt;}
.fs1_c00024{font-size:61.440000pt;}
.fs2_c00024{font-size:64.000000pt;}
.fs0_c00024{font-size:66.560000pt;}
.y0_c00024{bottom:0.000000pt;}
.y5c_c00024{bottom:42.240000pt;}
.y5b_c00024{bottom:42.880000pt;}
.y5d_c00024{bottom:44.160000pt;}
.y5a_c00024{bottom:44.800000pt;}
.y59_c00024{bottom:45.440000pt;}
.y58_c00024{bottom:81.920000pt;}
.y57_c00024{bottom:82.560000pt;}
.y55_c00024{bottom:127.360000pt;}
.y56_c00024{bottom:129.920000pt;}
.y53_c00024{bottom:164.480000pt;}
.y51_c00024{bottom:165.120000pt;}
.y54_c00024{bottom:167.040000pt;}
.y52_c00024{bottom:167.680000pt;}
.y4f_c00024{bottom:202.240000pt;}
.y4e_c00024{bottom:202.880000pt;}
.y50_c00024{bottom:204.800000pt;}
.y4d_c00024{bottom:205.440000pt;}
.y4a_c00024{bottom:240.640000pt;}
.y4c_c00024{bottom:241.280000pt;}
.y4b_c00024{bottom:242.560000pt;}
.y49_c00024{bottom:243.200000pt;}
.y48_c00024{bottom:277.760000pt;}
.y45_c00024{bottom:278.400000pt;}
.y46_c00024{bottom:279.040000pt;}
.y47_c00024{bottom:280.960000pt;}
.y44_c00024{bottom:281.600000pt;}
.y40_c00024{bottom:316.800000pt;}
.y41_c00024{bottom:318.080000pt;}
.y42_c00024{bottom:318.720000pt;}
.y43_c00024{bottom:319.360000pt;}
.y3f_c00024{bottom:353.920000pt;}
.y3e_c00024{bottom:354.560000pt;}
.y3d_c00024{bottom:356.480000pt;}
.y3c_c00024{bottom:357.120000pt;}
.y3a_c00024{bottom:391.680000pt;}
.y3b_c00024{bottom:392.320000pt;}
.y38_c00024{bottom:394.240000pt;}
.y39_c00024{bottom:394.880000pt;}
.y35_c00024{bottom:430.720000pt;}
.y37_c00024{bottom:432.000000pt;}
.y36_c00024{bottom:432.640000pt;}
.y33_c00024{bottom:467.840000pt;}
.y31_c00024{bottom:468.480000pt;}
.y34_c00024{bottom:469.760000pt;}
.y32_c00024{bottom:470.400000pt;}
.y30_c00024{bottom:471.040000pt;}
.y2e_c00024{bottom:505.600000pt;}
.y2d_c00024{bottom:506.240000pt;}
.y2f_c00024{bottom:508.160000pt;}
.y2c_c00024{bottom:508.800000pt;}
.y2a_c00024{bottom:553.600000pt;}
.y2b_c00024{bottom:554.240000pt;}
.y29_c00024{bottom:555.520000pt;}
.y27_c00024{bottom:591.360000pt;}
.y25_c00024{bottom:592.000000pt;}
.y26_c00024{bottom:593.280000pt;}
.y24_c00024{bottom:593.920000pt;}
.y28_c00024{bottom:594.560000pt;}
.y21_c00024{bottom:629.120000pt;}
.y23_c00024{bottom:630.400000pt;}
.y22_c00024{bottom:631.040000pt;}
.y20_c00024{bottom:631.680000pt;}
.y1e_c00024{bottom:666.240000pt;}
.y1d_c00024{bottom:666.880000pt;}
.y1c_c00024{bottom:669.440000pt;}
.y1f_c00024{bottom:670.080000pt;}
.y1b_c00024{bottom:704.640000pt;}
.y1a_c00024{bottom:705.280000pt;}
.y19_c00024{bottom:707.200000pt;}
.y17_c00024{bottom:742.400000pt;}
.y15_c00024{bottom:744.320000pt;}
.y16_c00024{bottom:744.960000pt;}
.y18_c00024{bottom:745.600000pt;}
.y13_c00024{bottom:780.160000pt;}
.y14_c00024{bottom:780.800000pt;}
.y12_c00024{bottom:781.440000pt;}
.y11_c00024{bottom:782.720000pt;}
.yc_c00024{bottom:817.920000pt;}
.ye_c00024{bottom:818.560000pt;}
.yf_c00024{bottom:819.200000pt;}
.yd_c00024{bottom:820.480000pt;}
.y10_c00024{bottom:821.120000pt;}
.ya_c00024{bottom:855.680000pt;}
.y7_c00024{bottom:856.320000pt;}
.y9_c00024{bottom:856.960000pt;}
.yb_c00024{bottom:858.240000pt;}
.y6_c00024{bottom:858.880000pt;}
.y8_c00024{bottom:859.520000pt;}
.y5_c00024{bottom:893.440000pt;}
.y2_c00024{bottom:894.080000pt;}
.y3_c00024{bottom:896.640000pt;}
.y4_c00024{bottom:897.280000pt;}
.y1_c00024{bottom:971.520000pt;}
.ha_c00024{height:27.645000pt;}
.h5_c00024{height:29.948750pt;}
.h9_c00024{height:32.252500pt;}
.h10_c00024{height:34.556250pt;}
.h6_c00024{height:36.860000pt;}
.h7_c00024{height:39.163750pt;}
.hb_c00024{height:41.467500pt;}
.he_c00024{height:43.771250pt;}
.h11_c00024{height:44.027500pt;}
.hf_c00024{height:46.075000pt;}
.hc_c00024{height:48.378750pt;}
.h8_c00024{height:50.682500pt;}
.hd_c00024{height:52.986250pt;}
.h3_c00024{height:55.290000pt;}
.h4_c00024{height:57.593750pt;}
.h2_c00024{height:59.897500pt;}
.h1_c00024{height:1020.666667pt;}
.h0_c00024{height:1020.800000pt;}
.w1_c00024{width:732.000000pt;}
.w0_c00024{width:732.160000pt;}
.x0_c00024{left:0.000000pt;}
.x45_c00024{left:82.560000pt;}
.xe_c00024{left:83.840000pt;}
.x2_c00024{left:85.120000pt;}
.x48_c00024{left:103.040000pt;}
.x19_c00024{left:112.000000pt;}
.x3b_c00024{left:120.960000pt;}
.x1e_c00024{left:122.240000pt;}
.x25_c00024{left:131.200000pt;}
.x1a_c00024{left:141.440000pt;}
.xf_c00024{left:149.760000pt;}
.x46_c00024{left:151.680000pt;}
.x4a_c00024{left:159.360000pt;}
.x3_c00024{left:160.640000pt;}
.x10_c00024{left:169.600000pt;}
.x2b_c00024{left:172.160000pt;}
.x39_c00024{left:178.560000pt;}
.x42_c00024{left:179.840000pt;}
.x3c_c00024{left:188.800000pt;}
.x37_c00024{left:191.360000pt;}
.x11_c00024{left:198.400000pt;}
.x22_c00024{left:208.000000pt;}
.x31_c00024{left:209.280000pt;}
.x4_c00024{left:216.960000pt;}
.x4b_c00024{left:218.240000pt;}
.x43_c00024{left:227.200000pt;}
.x44_c00024{left:245.760000pt;}
.x4c_c00024{left:247.680000pt;}
.x32_c00024{left:255.360000pt;}
.x1b_c00024{left:257.920000pt;}
.x3d_c00024{left:266.240000pt;}
.x12_c00024{left:267.520000pt;}
.x33_c00024{left:275.840000pt;}
.x3e_c00024{left:284.160000pt;}
.x38_c00024{left:286.080000pt;}
.x4e_c00024{left:293.760000pt;}
.x5_c00024{left:303.360000pt;}
.x26_c00024{left:313.600000pt;}
.x28_c00024{left:322.560000pt;}
.x2c_c00024{left:323.840000pt;}
.x6_c00024{left:331.520000pt;}
.x1f_c00024{left:341.760000pt;}
.x13_c00024{left:352.000000pt;}
.x7_c00024{left:360.960000pt;}
.x2d_c00024{left:371.200000pt;}
.x3f_c00024{left:380.160000pt;}
.x34_c00024{left:390.400000pt;}
.x47_c00024{left:399.360000pt;}
.x4f_c00024{left:400.640000pt;}
.x14_c00024{left:408.960000pt;}
.x35_c00024{left:419.200000pt;}
.x2e_c00024{left:420.480000pt;}
.x8_c00024{left:428.160000pt;}
.x23_c00024{left:438.400000pt;}
.x29_c00024{left:447.360000pt;}
.x20_c00024{left:448.640000pt;}
.x9_c00024{left:456.320000pt;}
.x49_c00024{left:466.560000pt;}
.x27_c00024{left:468.480000pt;}
.x40_c00024{left:476.800000pt;}
.x2f_c00024{left:486.400000pt;}
.x15_c00024{left:495.360000pt;}
.xa_c00024{left:514.560000pt;}
.x16_c00024{left:524.160000pt;}
.x50_c00024{left:525.440000pt;}
.x1c_c00024{left:533.120000pt;}
.xb_c00024{left:544.000000pt;}
.x17_c00024{left:552.320000pt;}
.x2a_c00024{left:562.560000pt;}
.x21_c00024{left:572.160000pt;}
.x1d_c00024{left:590.720000pt;}
.x4d_c00024{left:592.000000pt;}
.xc_c00024{left:600.960000pt;}
.x3a_c00024{left:610.560000pt;}
.x18_c00024{left:620.160000pt;}
.xd_c00024{left:629.760000pt;}
.x36_c00024{left:631.040000pt;}
.x41_c00024{left:640.000000pt;}
.x24_c00024{left:648.320000pt;}
.x30_c00024{left:649.600000pt;}
.x1_c00024{left:664.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_26a60fd163e30f1ec68d8993.woff2')format("woff");}.ff1_c00025{font-family:ff1_c00025;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00025{transform:matrix(0.244225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244225,0.000000,0.000000,0.250000,0,0);}
.m2_c00025{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00025{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m30_c00025{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00025{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m42_c00025{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m28_c00025{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00025{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m11_c00025{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m3_c00025{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00025{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m10_c00025{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00025{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00025{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1_c00025{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m16_c00025{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);}
.m49_c00025{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m45_c00025{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);}
.m47_c00025{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);}
.m18_c00025{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.md_c00025{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00025{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m36_c00025{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m5_c00025{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m23_c00025{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_c00025{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00025{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);}
.m21_c00025{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00025{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);}
.ma_c00025{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);}
.m1b_c00025{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);}
.m20_c00025{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m31_c00025{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m46_c00025{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m34_c00025{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);}
.m2a_c00025{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);}
.m19_c00025{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.me_c00025{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);}
.m15_c00025{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m43_c00025{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00025{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00025{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m40_c00025{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);}
.m37_c00025{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m41_c00025{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m4_c00025{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);}
.m3e_c00025{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m13_c00025{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);}
.m32_c00025{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m12_c00025{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m9_c00025{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m22_c00025{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00025{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);}
.m3f_c00025{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.mf_c00025{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00025{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m26_c00025{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);}
.mc_c00025{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m35_c00025{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);}
.m8_c00025{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m27_c00025{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m17_c00025{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);}
.m24_c00025{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00025{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00025{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m39_c00025{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);}
.m14_c00025{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00025{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m44_c00025{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m29_c00025{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m38_c00025{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);}
.m3c_c00025{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m33_c00025{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);}
.m6_c00025{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m25_c00025{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.mb_c00025{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m48_c00025{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m7_c00025{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);}
.m4c_c00025{transform:matrix(1.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.172500,0.000000,0.000000,0.250000,0,0);}
.v1_c00025{vertical-align:-11.520000px;}
.v0_c00025{vertical-align:0.000000px;}
.v2_c00025{vertical-align:11.520000px;}
.ls0_c00025{letter-spacing:0.000000px;}
.sc__c00025{text-shadow:none;}
.sc0_c00025{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00025{-webkit-text-stroke:0px transparent;}
.sc0_c00025{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00025{word-spacing:-4.495306px;}
.ws2_c00025{word-spacing:-2.094240px;}
.ws3_c00025{word-spacing:0.000000px;}
.ws1_c00025{word-spacing:2.146800px;}
.fc0_c00025{color:transparent;}
.fsc_c00025{font-size:20.160000px;}
.fs4_c00025{font-size:34.560000px;}
.fs7_c00025{font-size:37.440000px;}
.fsa_c00025{font-size:43.200000px;}
.fs6_c00025{font-size:46.080000px;}
.fs2_c00025{font-size:48.960000px;}
.fs5_c00025{font-size:51.840000px;}
.fsb_c00025{font-size:57.600000px;}
.fs3_c00025{font-size:60.480000px;}
.fs9_c00025{font-size:63.360000px;}
.fs1_c00025{font-size:66.240000px;}
.fs8_c00025{font-size:69.120000px;}
.fs0_c00025{font-size:72.000000px;}
.y0_c00025{bottom:0.000000px;}
.y60_c00025{bottom:62.640000px;}
.y5d_c00025{bottom:63.360000px;}
.y5f_c00025{bottom:65.520000px;}
.y5e_c00025{bottom:66.240000px;}
.y5c_c00025{bottom:66.960000px;}
.y5b_c00025{bottom:67.680000px;}
.y59_c00025{bottom:104.400000px;}
.y57_c00025{bottom:106.560000px;}
.y5a_c00025{bottom:108.000000px;}
.y58_c00025{bottom:108.720000px;}
.y56_c00025{bottom:109.440000px;}
.y55_c00025{bottom:147.600000px;}
.y51_c00025{bottom:148.320000px;}
.y54_c00025{bottom:150.480000px;}
.y53_c00025{bottom:151.200000px;}
.y52_c00025{bottom:151.920000px;}
.y4f_c00025{bottom:190.080000px;}
.y4e_c00025{bottom:191.520000px;}
.y4d_c00025{bottom:192.240000px;}
.y50_c00025{bottom:192.960000px;}
.y4c_c00025{bottom:194.400000px;}
.y4a_c00025{bottom:233.280000px;}
.y4b_c00025{bottom:235.440000px;}
.y49_c00025{bottom:236.160000px;}
.y48_c00025{bottom:236.880000px;}
.y47_c00025{bottom:288.000000px;}
.y46_c00025{bottom:288.720000px;}
.y45_c00025{bottom:289.440000px;}
.y44_c00025{bottom:290.160000px;}
.y43_c00025{bottom:290.880000px;}
.y41_c00025{bottom:329.040000px;}
.y42_c00025{bottom:329.760000px;}
.y40_c00025{bottom:332.640000px;}
.y3f_c00025{bottom:333.360000px;}
.y3c_c00025{bottom:371.520000px;}
.y3d_c00025{bottom:372.240000px;}
.y3e_c00025{bottom:375.120000px;}
.y3b_c00025{bottom:376.560000px;}
.y37_c00025{bottom:415.440000px;}
.y3a_c00025{bottom:416.880000px;}
.y38_c00025{bottom:417.600000px;}
.y39_c00025{bottom:418.320000px;}
.y36_c00025{bottom:457.920000px;}
.y35_c00025{bottom:460.080000px;}
.y34_c00025{bottom:460.800000px;}
.y33_c00025{bottom:511.920000px;}
.y32_c00025{bottom:513.360000px;}
.y30_c00025{bottom:552.960000px;}
.y31_c00025{bottom:553.680000px;}
.y2e_c00025{bottom:555.840000px;}
.y2f_c00025{bottom:556.560000px;}
.y2d_c00025{bottom:557.280000px;}
.y2c_c00025{bottom:595.440000px;}
.y2b_c00025{bottom:596.880000px;}
.y29_c00025{bottom:597.600000px;}
.y28_c00025{bottom:598.320000px;}
.y2a_c00025{bottom:599.040000px;}
.y25_c00025{bottom:637.920000px;}
.y24_c00025{bottom:640.800000px;}
.y26_c00025{bottom:641.520000px;}
.y27_c00025{bottom:642.240000px;}
.y22_c00025{bottom:681.840000px;}
.y21_c00025{bottom:684.000000px;}
.y23_c00025{bottom:684.720000px;}
.y20_c00025{bottom:735.120000px;}
.y1f_c00025{bottom:735.840000px;}
.y1d_c00025{bottom:737.280000px;}
.y1c_c00025{bottom:738.000000px;}
.y1e_c00025{bottom:738.720000px;}
.y19_c00025{bottom:777.600000px;}
.y1b_c00025{bottom:778.320000px;}
.y18_c00025{bottom:780.480000px;}
.y1a_c00025{bottom:781.200000px;}
.y17_c00025{bottom:820.080000px;}
.y16_c00025{bottom:820.800000px;}
.y15_c00025{bottom:822.960000px;}
.y14_c00025{bottom:823.680000px;}
.y10_c00025{bottom:873.360000px;}
.y12_c00025{bottom:874.080000px;}
.y11_c00025{bottom:876.240000px;}
.y13_c00025{bottom:876.960000px;}
.yb_c00025{bottom:915.840000px;}
.ye_c00025{bottom:916.560000px;}
.yc_c00025{bottom:918.720000px;}
.yf_c00025{bottom:919.440000px;}
.yd_c00025{bottom:920.160000px;}
.ya_c00025{bottom:959.040000px;}
.y9_c00025{bottom:959.760000px;}
.y7_c00025{bottom:961.200000px;}
.y8_c00025{bottom:961.920000px;}
.y3_c00025{bottom:1000.800000px;}
.y2_c00025{bottom:1001.520000px;}
.y4_c00025{bottom:1002.240000px;}
.y5_c00025{bottom:1004.400000px;}
.y6_c00025{bottom:1005.120000px;}
.y1_c00025{bottom:1085.040000px;}
.hf_c00025{height:18.142031px;}
.h6_c00025{height:31.100625px;}
.h9_c00025{height:33.692344px;}
.hc_c00025{height:38.875781px;}
.h8_c00025{height:41.467500px;}
.h4_c00025{height:44.059219px;}
.h7_c00025{height:46.650937px;}
.hd_c00025{height:51.834375px;}
.he_c00025{height:52.987500px;}
.h5_c00025{height:54.426094px;}
.hb_c00025{height:57.017812px;}
.h3_c00025{height:59.609531px;}
.ha_c00025{height:62.201250px;}
.h2_c00025{height:64.792969px;}
.h1_c00025{height:1148.250000px;}
.h0_c00025{height:1148.400000px;}
.w1_c00025{width:822.750000px;}
.w0_c00025{width:822.960000px;}
.x0_c00025{left:0.000000px;}
.x5a_c00025{left:92.880000px;}
.x37_c00025{left:94.320000px;}
.xb_c00025{left:95.760000px;}
.x2_c00025{left:97.920000px;}
.x60_c00025{left:115.200000px;}
.x15_c00025{left:116.640000px;}
.x4e_c00025{left:126.720000px;}
.x3e_c00025{left:128.160000px;}
.xc_c00025{left:139.680000px;}
.x61_c00025{left:147.600000px;}
.x3f_c00025{left:159.840000px;}
.x2e_c00025{left:161.280000px;}
.x1d_c00025{left:170.640000px;}
.x3_c00025{left:172.800000px;}
.xd_c00025{left:182.160000px;}
.x5b_c00025{left:190.080000px;}
.x16_c00025{left:192.960000px;}
.x46_c00025{left:202.320000px;}
.x1e_c00025{left:203.760000px;}
.x48_c00025{left:213.120000px;}
.xe_c00025{left:214.560000px;}
.x29_c00025{left:223.200000px;}
.x17_c00025{left:224.640000px;}
.x57_c00025{left:234.720000px;}
.x23_c00025{left:236.160000px;}
.x4_c00025{left:237.600000px;}
.x62_c00025{left:244.080000px;}
.xf_c00025{left:246.960000px;}
.x2f_c00025{left:256.320000px;}
.x18_c00025{left:257.760000px;}
.x58_c00025{left:266.400000px;}
.x49_c00025{left:267.840000px;}
.x42_c00025{left:276.480000px;}
.x5c_c00025{left:277.920000px;}
.x50_c00025{left:287.280000px;}
.x24_c00025{left:289.440000px;}
.x1f_c00025{left:291.600000px;}
.x34_c00025{left:300.240000px;}
.x4c_c00025{left:308.880000px;}
.x47_c00025{left:310.320000px;}
.x5_c00025{left:311.760000px;}
.x51_c00025{left:319.680000px;}
.x38_c00025{left:321.840000px;}
.x4f_c00025{left:331.200000px;}
.x19_c00025{left:332.640000px;}
.x43_c00025{left:342.720000px;}
.x20_c00025{left:354.240000px;}
.x35_c00025{left:363.600000px;}
.x10_c00025{left:365.040000px;}
.x54_c00025{left:374.400000px;}
.x6_c00025{left:375.840000px;}
.x39_c00025{left:385.920000px;}
.x11_c00025{left:397.440000px;}
.x4a_c00025{left:406.800000px;}
.x63_c00025{left:416.880000px;}
.x25_c00025{left:419.040000px;}
.x3a_c00025{left:428.400000px;}
.x2a_c00025{left:429.840000px;}
.x30_c00025{left:432.000000px;}
.x5d_c00025{left:438.480000px;}
.x55_c00025{left:449.280000px;}
.x52_c00025{left:450.720000px;}
.x21_c00025{left:462.240000px;}
.x40_c00025{left:472.320000px;}
.x22_c00025{left:483.840000px;}
.x44_c00025{left:493.200000px;}
.x1a_c00025{left:495.360000px;}
.x12_c00025{left:496.800000px;}
.x7_c00025{left:505.440000px;}
.x64_c00025{left:524.880000px;}
.x32_c00025{left:526.320000px;}
.x41_c00025{left:536.400000px;}
.x2b_c00025{left:537.840000px;}
.x8_c00025{left:548.640000px;}
.x1b_c00025{left:559.440000px;}
.x5e_c00025{left:568.080000px;}
.x33_c00025{left:570.240000px;}
.x59_c00025{left:578.880000px;}
.x2c_c00025{left:581.040000px;}
.x13_c00025{left:583.200000px;}
.x9_c00025{left:592.560000px;}
.x26_c00025{left:602.640000px;}
.x4b_c00025{left:612.000000px;}
.x3b_c00025{left:613.440000px;}
.x65_c00025{left:622.800000px;}
.x1c_c00025{left:624.240000px;}
.x31_c00025{left:625.680000px;}
.x4d_c00025{left:632.880000px;}
.x45_c00025{left:654.480000px;}
.x14_c00025{left:658.080000px;}
.x36_c00025{left:666.000000px;}
.x3c_c00025{left:667.440000px;}
.x56_c00025{left:676.080000px;}
.x27_c00025{left:678.240000px;}
.x53_c00025{left:698.400000px;}
.xa_c00025{left:699.840000px;}
.x28_c00025{left:710.640000px;}
.x5f_c00025{left:719.280000px;}
.x3d_c00025{left:721.440000px;}
.x2d_c00025{left:743.040000px;}
.x1_c00025{left:753.120000px;}
@media print{
.v1_c00025{vertical-align:-10.240000pt;}
.v0_c00025{vertical-align:0.000000pt;}
.v2_c00025{vertical-align:10.240000pt;}
.ls0_c00025{letter-spacing:0.000000pt;}
.ws0_c00025{word-spacing:-3.995827pt;}
.ws2_c00025{word-spacing:-1.861547pt;}
.ws3_c00025{word-spacing:0.000000pt;}
.ws1_c00025{word-spacing:1.908267pt;}
.fsc_c00025{font-size:17.920000pt;}
.fs4_c00025{font-size:30.720000pt;}
.fs7_c00025{font-size:33.280000pt;}
.fsa_c00025{font-size:38.400000pt;}
.fs6_c00025{font-size:40.960000pt;}
.fs2_c00025{font-size:43.520000pt;}
.fs5_c00025{font-size:46.080000pt;}
.fsb_c00025{font-size:51.200000pt;}
.fs3_c00025{font-size:53.760000pt;}
.fs9_c00025{font-size:56.320000pt;}
.fs1_c00025{font-size:58.880000pt;}
.fs8_c00025{font-size:61.440000pt;}
.fs0_c00025{font-size:64.000000pt;}
.y0_c00025{bottom:0.000000pt;}
.y60_c00025{bottom:55.680000pt;}
.y5d_c00025{bottom:56.320000pt;}
.y5f_c00025{bottom:58.240000pt;}
.y5e_c00025{bottom:58.880000pt;}
.y5c_c00025{bottom:59.520000pt;}
.y5b_c00025{bottom:60.160000pt;}
.y59_c00025{bottom:92.800000pt;}
.y57_c00025{bottom:94.720000pt;}
.y5a_c00025{bottom:96.000000pt;}
.y58_c00025{bottom:96.640000pt;}
.y56_c00025{bottom:97.280000pt;}
.y55_c00025{bottom:131.200000pt;}
.y51_c00025{bottom:131.840000pt;}
.y54_c00025{bottom:133.760000pt;}
.y53_c00025{bottom:134.400000pt;}
.y52_c00025{bottom:135.040000pt;}
.y4f_c00025{bottom:168.960000pt;}
.y4e_c00025{bottom:170.240000pt;}
.y4d_c00025{bottom:170.880000pt;}
.y50_c00025{bottom:171.520000pt;}
.y4c_c00025{bottom:172.800000pt;}
.y4a_c00025{bottom:207.360000pt;}
.y4b_c00025{bottom:209.280000pt;}
.y49_c00025{bottom:209.920000pt;}
.y48_c00025{bottom:210.560000pt;}
.y47_c00025{bottom:256.000000pt;}
.y46_c00025{bottom:256.640000pt;}
.y45_c00025{bottom:257.280000pt;}
.y44_c00025{bottom:257.920000pt;}
.y43_c00025{bottom:258.560000pt;}
.y41_c00025{bottom:292.480000pt;}
.y42_c00025{bottom:293.120000pt;}
.y40_c00025{bottom:295.680000pt;}
.y3f_c00025{bottom:296.320000pt;}
.y3c_c00025{bottom:330.240000pt;}
.y3d_c00025{bottom:330.880000pt;}
.y3e_c00025{bottom:333.440000pt;}
.y3b_c00025{bottom:334.720000pt;}
.y37_c00025{bottom:369.280000pt;}
.y3a_c00025{bottom:370.560000pt;}
.y38_c00025{bottom:371.200000pt;}
.y39_c00025{bottom:371.840000pt;}
.y36_c00025{bottom:407.040000pt;}
.y35_c00025{bottom:408.960000pt;}
.y34_c00025{bottom:409.600000pt;}
.y33_c00025{bottom:455.040000pt;}
.y32_c00025{bottom:456.320000pt;}
.y30_c00025{bottom:491.520000pt;}
.y31_c00025{bottom:492.160000pt;}
.y2e_c00025{bottom:494.080000pt;}
.y2f_c00025{bottom:494.720000pt;}
.y2d_c00025{bottom:495.360000pt;}
.y2c_c00025{bottom:529.280000pt;}
.y2b_c00025{bottom:530.560000pt;}
.y29_c00025{bottom:531.200000pt;}
.y28_c00025{bottom:531.840000pt;}
.y2a_c00025{bottom:532.480000pt;}
.y25_c00025{bottom:567.040000pt;}
.y24_c00025{bottom:569.600000pt;}
.y26_c00025{bottom:570.240000pt;}
.y27_c00025{bottom:570.880000pt;}
.y22_c00025{bottom:606.080000pt;}
.y21_c00025{bottom:608.000000pt;}
.y23_c00025{bottom:608.640000pt;}
.y20_c00025{bottom:653.440000pt;}
.y1f_c00025{bottom:654.080000pt;}
.y1d_c00025{bottom:655.360000pt;}
.y1c_c00025{bottom:656.000000pt;}
.y1e_c00025{bottom:656.640000pt;}
.y19_c00025{bottom:691.200000pt;}
.y1b_c00025{bottom:691.840000pt;}
.y18_c00025{bottom:693.760000pt;}
.y1a_c00025{bottom:694.400000pt;}
.y17_c00025{bottom:728.960000pt;}
.y16_c00025{bottom:729.600000pt;}
.y15_c00025{bottom:731.520000pt;}
.y14_c00025{bottom:732.160000pt;}
.y10_c00025{bottom:776.320000pt;}
.y12_c00025{bottom:776.960000pt;}
.y11_c00025{bottom:778.880000pt;}
.y13_c00025{bottom:779.520000pt;}
.yb_c00025{bottom:814.080000pt;}
.ye_c00025{bottom:814.720000pt;}
.yc_c00025{bottom:816.640000pt;}
.yf_c00025{bottom:817.280000pt;}
.yd_c00025{bottom:817.920000pt;}
.ya_c00025{bottom:852.480000pt;}
.y9_c00025{bottom:853.120000pt;}
.y7_c00025{bottom:854.400000pt;}
.y8_c00025{bottom:855.040000pt;}
.y3_c00025{bottom:889.600000pt;}
.y2_c00025{bottom:890.240000pt;}
.y4_c00025{bottom:890.880000pt;}
.y5_c00025{bottom:892.800000pt;}
.y6_c00025{bottom:893.440000pt;}
.y1_c00025{bottom:964.480000pt;}
.hf_c00025{height:16.126250pt;}
.h6_c00025{height:27.645000pt;}
.h9_c00025{height:29.948750pt;}
.hc_c00025{height:34.556250pt;}
.h8_c00025{height:36.860000pt;}
.h4_c00025{height:39.163750pt;}
.h7_c00025{height:41.467500pt;}
.hd_c00025{height:46.075000pt;}
.he_c00025{height:47.100000pt;}
.h5_c00025{height:48.378750pt;}
.hb_c00025{height:50.682500pt;}
.h3_c00025{height:52.986250pt;}
.ha_c00025{height:55.290000pt;}
.h2_c00025{height:57.593750pt;}
.h1_c00025{height:1020.666667pt;}
.h0_c00025{height:1020.800000pt;}
.w1_c00025{width:731.333333pt;}
.w0_c00025{width:731.520000pt;}
.x0_c00025{left:0.000000pt;}
.x5a_c00025{left:82.560000pt;}
.x37_c00025{left:83.840000pt;}
.xb_c00025{left:85.120000pt;}
.x2_c00025{left:87.040000pt;}
.x60_c00025{left:102.400000pt;}
.x15_c00025{left:103.680000pt;}
.x4e_c00025{left:112.640000pt;}
.x3e_c00025{left:113.920000pt;}
.xc_c00025{left:124.160000pt;}
.x61_c00025{left:131.200000pt;}
.x3f_c00025{left:142.080000pt;}
.x2e_c00025{left:143.360000pt;}
.x1d_c00025{left:151.680000pt;}
.x3_c00025{left:153.600000pt;}
.xd_c00025{left:161.920000pt;}
.x5b_c00025{left:168.960000pt;}
.x16_c00025{left:171.520000pt;}
.x46_c00025{left:179.840000pt;}
.x1e_c00025{left:181.120000pt;}
.x48_c00025{left:189.440000pt;}
.xe_c00025{left:190.720000pt;}
.x29_c00025{left:198.400000pt;}
.x17_c00025{left:199.680000pt;}
.x57_c00025{left:208.640000pt;}
.x23_c00025{left:209.920000pt;}
.x4_c00025{left:211.200000pt;}
.x62_c00025{left:216.960000pt;}
.xf_c00025{left:219.520000pt;}
.x2f_c00025{left:227.840000pt;}
.x18_c00025{left:229.120000pt;}
.x58_c00025{left:236.800000pt;}
.x49_c00025{left:238.080000pt;}
.x42_c00025{left:245.760000pt;}
.x5c_c00025{left:247.040000pt;}
.x50_c00025{left:255.360000pt;}
.x24_c00025{left:257.280000pt;}
.x1f_c00025{left:259.200000pt;}
.x34_c00025{left:266.880000pt;}
.x4c_c00025{left:274.560000pt;}
.x47_c00025{left:275.840000pt;}
.x5_c00025{left:277.120000pt;}
.x51_c00025{left:284.160000pt;}
.x38_c00025{left:286.080000pt;}
.x4f_c00025{left:294.400000pt;}
.x19_c00025{left:295.680000pt;}
.x43_c00025{left:304.640000pt;}
.x20_c00025{left:314.880000pt;}
.x35_c00025{left:323.200000pt;}
.x10_c00025{left:324.480000pt;}
.x54_c00025{left:332.800000pt;}
.x6_c00025{left:334.080000pt;}
.x39_c00025{left:343.040000pt;}
.x11_c00025{left:353.280000pt;}
.x4a_c00025{left:361.600000pt;}
.x63_c00025{left:370.560000pt;}
.x25_c00025{left:372.480000pt;}
.x3a_c00025{left:380.800000pt;}
.x2a_c00025{left:382.080000pt;}
.x30_c00025{left:384.000000pt;}
.x5d_c00025{left:389.760000pt;}
.x55_c00025{left:399.360000pt;}
.x52_c00025{left:400.640000pt;}
.x21_c00025{left:410.880000pt;}
.x40_c00025{left:419.840000pt;}
.x22_c00025{left:430.080000pt;}
.x44_c00025{left:438.400000pt;}
.x1a_c00025{left:440.320000pt;}
.x12_c00025{left:441.600000pt;}
.x7_c00025{left:449.280000pt;}
.x64_c00025{left:466.560000pt;}
.x32_c00025{left:467.840000pt;}
.x41_c00025{left:476.800000pt;}
.x2b_c00025{left:478.080000pt;}
.x8_c00025{left:487.680000pt;}
.x1b_c00025{left:497.280000pt;}
.x5e_c00025{left:504.960000pt;}
.x33_c00025{left:506.880000pt;}
.x59_c00025{left:514.560000pt;}
.x2c_c00025{left:516.480000pt;}
.x13_c00025{left:518.400000pt;}
.x9_c00025{left:526.720000pt;}
.x26_c00025{left:535.680000pt;}
.x4b_c00025{left:544.000000pt;}
.x3b_c00025{left:545.280000pt;}
.x65_c00025{left:553.600000pt;}
.x1c_c00025{left:554.880000pt;}
.x31_c00025{left:556.160000pt;}
.x4d_c00025{left:562.560000pt;}
.x45_c00025{left:581.760000pt;}
.x14_c00025{left:584.960000pt;}
.x36_c00025{left:592.000000pt;}
.x3c_c00025{left:593.280000pt;}
.x56_c00025{left:600.960000pt;}
.x27_c00025{left:602.880000pt;}
.x53_c00025{left:620.800000pt;}
.xa_c00025{left:622.080000pt;}
.x28_c00025{left:631.680000pt;}
.x5f_c00025{left:639.360000pt;}
.x3d_c00025{left:641.280000pt;}
.x2d_c00025{left:660.480000pt;}
.x1_c00025{left:669.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d452468c307f31787dda61d0.woff2')format("woff");}.ff1_c00026{font-family:ff1_c00026;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m35_c00026{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m19_c00026{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00026{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);}
.m49_c00026{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);}
.m32_c00026{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00026{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00026{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m57_c00026{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00026{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m33_c00026{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.ma_c00026{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m51_c00026{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m28_c00026{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00026{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mf_c00026{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m18_c00026{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00026{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m13_c00026{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00026{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m12_c00026{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00026{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);}
.m58_c00026{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00026{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00026{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m17_c00026{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00026{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m4_c00026{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m0_c00026{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m23_c00026{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00026{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);}
.m46_c00026{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);}
.m2e_c00026{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);}
.m42_c00026{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00026{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m27_c00026{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);}
.m41_c00026{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);}
.m44_c00026{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m29_c00026{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m11_c00026{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);}
.m16_c00026{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m38_c00026{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);}
.m50_c00026{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m34_c00026{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);}
.m14_c00026{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);}
.m20_c00026{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m43_c00026{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.mb_c00026{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00026{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);}
.m3a_c00026{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00026{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m3_c00026{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);}
.m56_c00026{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m22_c00026{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);}
.m2b_c00026{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.md_c00026{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m10_c00026{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);}
.m53_c00026{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00026{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);}
.m36_c00026{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m6_c00026{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m52_c00026{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m15_c00026{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);}
.m26_c00026{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00026{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m1_c00026{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);}
.m45_c00026{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m31_c00026{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m39_c00026{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m30_c00026{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m8_c00026{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);}
.m7_c00026{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m37_c00026{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00026{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00026{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m2_c00026{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m21_c00026{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);}
.m5_c00026{transform:matrix(0.525000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525000,0.000000,0.000000,0.250000,0,0);}
.mc_c00026{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m9_c00026{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00026{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m48_c00026{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m24_c00026{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00026{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);}
.m40_c00026{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);}
.m54_c00026{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.me_c00026{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);}
.m55_c00026{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m47_c00026{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m25_c00026{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.v0_c00026{vertical-align:0.000000px;}
.v1_c00026{vertical-align:8.640000px;}
.v2_c00026{vertical-align:11.520000px;}
.ls1_c00026{letter-spacing:0.000000px;}
.ls0_c00026{letter-spacing:27.978000px;}
.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;}
}
.ws3_c00026{word-spacing:0.000000px;}
.ws2_c00026{word-spacing:0.842160px;}
.ws0_c00026{word-spacing:1.008720px;}
.ws1_c00026{word-spacing:5.787360px;}
.fc0_c00026{color:transparent;}
.fs1_c00026{font-size:34.560000px;}
.fs4_c00026{font-size:37.440000px;}
.fs8_c00026{font-size:40.320000px;}
.fsb_c00026{font-size:43.200000px;}
.fs7_c00026{font-size:46.080000px;}
.fs3_c00026{font-size:48.960000px;}
.fs2_c00026{font-size:51.840000px;}
.fsc_c00026{font-size:54.720000px;}
.fs6_c00026{font-size:57.600000px;}
.fs5_c00026{font-size:60.480000px;}
.fsa_c00026{font-size:63.360000px;}
.fs9_c00026{font-size:66.240000px;}
.fs0_c00026{font-size:69.120000px;}
.y0_c00026{bottom:0.000000px;}
.y5d_c00026{bottom:70.560000px;}
.y5f_c00026{bottom:71.280000px;}
.y5e_c00026{bottom:72.000000px;}
.y5c_c00026{bottom:74.880000px;}
.y59_c00026{bottom:113.760000px;}
.y58_c00026{bottom:114.480000px;}
.y5a_c00026{bottom:116.640000px;}
.y5b_c00026{bottom:117.360000px;}
.y57_c00026{bottom:156.960000px;}
.y56_c00026{bottom:159.120000px;}
.y55_c00026{bottom:198.720000px;}
.y53_c00026{bottom:199.440000px;}
.y54_c00026{bottom:202.320000px;}
.y52_c00026{bottom:242.640000px;}
.y50_c00026{bottom:244.080000px;}
.y4f_c00026{bottom:244.800000px;}
.y51_c00026{bottom:245.520000px;}
.y4c_c00026{bottom:295.200000px;}
.y4e_c00026{bottom:295.920000px;}
.y4d_c00026{bottom:298.080000px;}
.y49_c00026{bottom:337.680000px;}
.y4b_c00026{bottom:338.400000px;}
.y48_c00026{bottom:340.560000px;}
.y4a_c00026{bottom:341.280000px;}
.y45_c00026{bottom:380.160000px;}
.y44_c00026{bottom:380.880000px;}
.y46_c00026{bottom:381.600000px;}
.y43_c00026{bottom:383.040000px;}
.y47_c00026{bottom:383.760000px;}
.y40_c00026{bottom:422.640000px;}
.y42_c00026{bottom:423.360000px;}
.y3f_c00026{bottom:425.520000px;}
.y41_c00026{bottom:426.240000px;}
.y3d_c00026{bottom:465.120000px;}
.y3c_c00026{bottom:465.840000px;}
.y3b_c00026{bottom:468.000000px;}
.y3e_c00026{bottom:468.720000px;}
.y3a_c00026{bottom:469.440000px;}
.y36_c00026{bottom:507.600000px;}
.y38_c00026{bottom:508.320000px;}
.y39_c00026{bottom:509.040000px;}
.y37_c00026{bottom:511.200000px;}
.y35_c00026{bottom:511.920000px;}
.y2f_c00026{bottom:550.080000px;}
.y30_c00026{bottom:550.800000px;}
.y33_c00026{bottom:551.520000px;}
.y32_c00026{bottom:552.960000px;}
.y31_c00026{bottom:553.680000px;}
.y34_c00026{bottom:554.400000px;}
.y2b_c00026{bottom:593.280000px;}
.y2d_c00026{bottom:594.000000px;}
.y2c_c00026{bottom:596.160000px;}
.y2e_c00026{bottom:596.880000px;}
.y28_c00026{bottom:635.040000px;}
.y27_c00026{bottom:635.760000px;}
.y29_c00026{bottom:636.480000px;}
.y26_c00026{bottom:638.640000px;}
.y2a_c00026{bottom:639.360000px;}
.y23_c00026{bottom:678.960000px;}
.y25_c00026{bottom:679.680000px;}
.y22_c00026{bottom:681.120000px;}
.y24_c00026{bottom:681.840000px;}
.y1f_c00026{bottom:721.440000px;}
.y20_c00026{bottom:722.160000px;}
.y1e_c00026{bottom:723.600000px;}
.y21_c00026{bottom:724.320000px;}
.y1d_c00026{bottom:725.040000px;}
.y1c_c00026{bottom:775.440000px;}
.y1b_c00026{bottom:776.880000px;}
.y1a_c00026{bottom:817.200000px;}
.y19_c00026{bottom:817.920000px;}
.y17_c00026{bottom:819.360000px;}
.y18_c00026{bottom:820.080000px;}
.y16_c00026{bottom:858.960000px;}
.y11_c00026{bottom:859.680000px;}
.y14_c00026{bottom:860.400000px;}
.y15_c00026{bottom:861.840000px;}
.y12_c00026{bottom:862.560000px;}
.y13_c00026{bottom:863.280000px;}
.yb_c00026{bottom:902.160000px;}
.yf_c00026{bottom:902.880000px;}
.y10_c00026{bottom:903.600000px;}
.yc_c00026{bottom:905.040000px;}
.ye_c00026{bottom:905.760000px;}
.yd_c00026{bottom:906.480000px;}
.y5_c00026{bottom:944.640000px;}
.y9_c00026{bottom:945.360000px;}
.y7_c00026{bottom:946.080000px;}
.y6_c00026{bottom:947.520000px;}
.y8_c00026{bottom:948.240000px;}
.ya_c00026{bottom:948.960000px;}
.y4_c00026{bottom:988.560000px;}
.y3_c00026{bottom:990.720000px;}
.y2_c00026{bottom:991.440000px;}
.y1_c00026{bottom:1066.320000px;}
.h3_c00026{height:31.100625px;}
.h6_c00026{height:33.692344px;}
.ha_c00026{height:36.284062px;}
.hd_c00026{height:38.875781px;}
.h9_c00026{height:41.467500px;}
.h5_c00026{height:44.059219px;}
.h4_c00026{height:46.650937px;}
.hf_c00026{height:49.242656px;}
.h8_c00026{height:51.834375px;}
.he_c00026{height:52.699219px;}
.h7_c00026{height:54.426094px;}
.hc_c00026{height:57.017812px;}
.h10_c00026{height:58.170937px;}
.hb_c00026{height:59.609531px;}
.h2_c00026{height:62.201250px;}
.h0_c00026{height:1141.920000px;}
.h1_c00026{height:1142.250000px;}
.w1_c00026{width:802.500000px;}
.w0_c00026{width:802.800000px;}
.x0_c00026{left:0.000000px;}
.x2_c00026{left:79.920000px;}
.x23_c00026{left:81.360000px;}
.x54_c00026{left:82.800000px;}
.x3_c00026{left:101.520000px;}
.x41_c00026{left:112.320000px;}
.xd_c00026{left:123.120000px;}
.x4_c00026{left:133.920000px;}
.x24_c00026{left:144.720000px;}
.x48_c00026{left:155.520000px;}
.x52_c00026{left:158.400000px;}
.x1f_c00026{left:166.320000px;}
.x2a_c00026{left:167.760000px;}
.x36_c00026{left:177.120000px;}
.x5_c00026{left:187.920000px;}
.x4e_c00026{left:198.720000px;}
.x30_c00026{left:209.520000px;}
.x4b_c00026{left:211.680000px;}
.x6_c00026{left:220.320000px;}
.x16_c00026{left:231.120000px;}
.x3c_c00026{left:241.920000px;}
.x17_c00026{left:252.000000px;}
.xe_c00026{left:263.520000px;}
.x45_c00026{left:265.680000px;}
.x3d_c00026{left:284.400000px;}
.x4c_c00026{left:285.840000px;}
.x18_c00026{left:294.480000px;}
.x3b_c00026{left:295.920000px;}
.x4f_c00026{left:298.080000px;}
.x7_c00026{left:306.000000px;}
.xf_c00026{left:316.080000px;}
.x55_c00026{left:326.880000px;}
.x31_c00026{left:328.320000px;}
.x37_c00026{left:338.400000px;}
.x46_c00026{left:341.280000px;}
.x49_c00026{left:347.760000px;}
.x2b_c00026{left:349.920000px;}
.x57_c00026{left:359.280000px;}
.x10_c00026{left:360.720000px;}
.x47_c00026{left:370.800000px;}
.x3e_c00026{left:381.600000px;}
.x4d_c00026{left:391.680000px;}
.x19_c00026{left:393.120000px;}
.x8_c00026{left:403.200000px;}
.x56_c00026{left:412.560000px;}
.x20_c00026{left:414.000000px;}
.x1a_c00026{left:424.080000px;}
.x25_c00026{left:425.520000px;}
.x9_c00026{left:435.600000px;}
.x50_c00026{left:445.680000px;}
.x32_c00026{left:447.120000px;}
.x38_c00026{left:457.920000px;}
.xa_c00026{left:468.000000px;}
.x33_c00026{left:478.080000px;}
.x58_c00026{left:488.880000px;}
.x3f_c00026{left:490.320000px;}
.x21_c00026{left:499.680000px;}
.x11_c00026{left:501.120000px;}
.x2c_c00026{left:511.200000px;}
.x1b_c00026{left:514.080000px;}
.x26_c00026{left:521.280000px;}
.x12_c00026{left:522.720000px;}
.xb_c00026{left:542.160000px;}
.x2d_c00026{left:544.320000px;}
.x22_c00026{left:553.680000px;}
.x27_c00026{left:555.120000px;}
.x39_c00026{left:563.760000px;}
.x42_c00026{left:565.200000px;}
.x4a_c00026{left:575.280000px;}
.x2e_c00026{left:586.080000px;}
.x13_c00026{left:587.520000px;}
.x43_c00026{left:596.880000px;}
.x53_c00026{left:606.960000px;}
.x1c_c00026{left:609.120000px;}
.x34_c00026{left:611.280000px;}
.x14_c00026{left:619.200000px;}
.x44_c00026{left:628.560000px;}
.x2f_c00026{left:630.000000px;}
.x28_c00026{left:632.160000px;}
.x51_c00026{left:639.360000px;}
.x3a_c00026{left:650.160000px;}
.x1d_c00026{left:661.680000px;}
.x35_c00026{left:673.920000px;}
.x15_c00026{left:683.280000px;}
.x1e_c00026{left:684.720000px;}
.xc_c00026{left:694.800000px;}
.x29_c00026{left:705.600000px;}
.x40_c00026{left:716.400000px;}
.x1_c00026{left:726.480000px;}
@media print{
.v0_c00026{vertical-align:0.000000pt;}
.v1_c00026{vertical-align:7.680000pt;}
.v2_c00026{vertical-align:10.240000pt;}
.ls1_c00026{letter-spacing:0.000000pt;}
.ls0_c00026{letter-spacing:24.869333pt;}
.ws3_c00026{word-spacing:0.000000pt;}
.ws2_c00026{word-spacing:0.748587pt;}
.ws0_c00026{word-spacing:0.896640pt;}
.ws1_c00026{word-spacing:5.144320pt;}
.fs1_c00026{font-size:30.720000pt;}
.fs4_c00026{font-size:33.280000pt;}
.fs8_c00026{font-size:35.840000pt;}
.fsb_c00026{font-size:38.400000pt;}
.fs7_c00026{font-size:40.960000pt;}
.fs3_c00026{font-size:43.520000pt;}
.fs2_c00026{font-size:46.080000pt;}
.fsc_c00026{font-size:48.640000pt;}
.fs6_c00026{font-size:51.200000pt;}
.fs5_c00026{font-size:53.760000pt;}
.fsa_c00026{font-size:56.320000pt;}
.fs9_c00026{font-size:58.880000pt;}
.fs0_c00026{font-size:61.440000pt;}
.y0_c00026{bottom:0.000000pt;}
.y5d_c00026{bottom:62.720000pt;}
.y5f_c00026{bottom:63.360000pt;}
.y5e_c00026{bottom:64.000000pt;}
.y5c_c00026{bottom:66.560000pt;}
.y59_c00026{bottom:101.120000pt;}
.y58_c00026{bottom:101.760000pt;}
.y5a_c00026{bottom:103.680000pt;}
.y5b_c00026{bottom:104.320000pt;}
.y57_c00026{bottom:139.520000pt;}
.y56_c00026{bottom:141.440000pt;}
.y55_c00026{bottom:176.640000pt;}
.y53_c00026{bottom:177.280000pt;}
.y54_c00026{bottom:179.840000pt;}
.y52_c00026{bottom:215.680000pt;}
.y50_c00026{bottom:216.960000pt;}
.y4f_c00026{bottom:217.600000pt;}
.y51_c00026{bottom:218.240000pt;}
.y4c_c00026{bottom:262.400000pt;}
.y4e_c00026{bottom:263.040000pt;}
.y4d_c00026{bottom:264.960000pt;}
.y49_c00026{bottom:300.160000pt;}
.y4b_c00026{bottom:300.800000pt;}
.y48_c00026{bottom:302.720000pt;}
.y4a_c00026{bottom:303.360000pt;}
.y45_c00026{bottom:337.920000pt;}
.y44_c00026{bottom:338.560000pt;}
.y46_c00026{bottom:339.200000pt;}
.y43_c00026{bottom:340.480000pt;}
.y47_c00026{bottom:341.120000pt;}
.y40_c00026{bottom:375.680000pt;}
.y42_c00026{bottom:376.320000pt;}
.y3f_c00026{bottom:378.240000pt;}
.y41_c00026{bottom:378.880000pt;}
.y3d_c00026{bottom:413.440000pt;}
.y3c_c00026{bottom:414.080000pt;}
.y3b_c00026{bottom:416.000000pt;}
.y3e_c00026{bottom:416.640000pt;}
.y3a_c00026{bottom:417.280000pt;}
.y36_c00026{bottom:451.200000pt;}
.y38_c00026{bottom:451.840000pt;}
.y39_c00026{bottom:452.480000pt;}
.y37_c00026{bottom:454.400000pt;}
.y35_c00026{bottom:455.040000pt;}
.y2f_c00026{bottom:488.960000pt;}
.y30_c00026{bottom:489.600000pt;}
.y33_c00026{bottom:490.240000pt;}
.y32_c00026{bottom:491.520000pt;}
.y31_c00026{bottom:492.160000pt;}
.y34_c00026{bottom:492.800000pt;}
.y2b_c00026{bottom:527.360000pt;}
.y2d_c00026{bottom:528.000000pt;}
.y2c_c00026{bottom:529.920000pt;}
.y2e_c00026{bottom:530.560000pt;}
.y28_c00026{bottom:564.480000pt;}
.y27_c00026{bottom:565.120000pt;}
.y29_c00026{bottom:565.760000pt;}
.y26_c00026{bottom:567.680000pt;}
.y2a_c00026{bottom:568.320000pt;}
.y23_c00026{bottom:603.520000pt;}
.y25_c00026{bottom:604.160000pt;}
.y22_c00026{bottom:605.440000pt;}
.y24_c00026{bottom:606.080000pt;}
.y1f_c00026{bottom:641.280000pt;}
.y20_c00026{bottom:641.920000pt;}
.y1e_c00026{bottom:643.200000pt;}
.y21_c00026{bottom:643.840000pt;}
.y1d_c00026{bottom:644.480000pt;}
.y1c_c00026{bottom:689.280000pt;}
.y1b_c00026{bottom:690.560000pt;}
.y1a_c00026{bottom:726.400000pt;}
.y19_c00026{bottom:727.040000pt;}
.y17_c00026{bottom:728.320000pt;}
.y18_c00026{bottom:728.960000pt;}
.y16_c00026{bottom:763.520000pt;}
.y11_c00026{bottom:764.160000pt;}
.y14_c00026{bottom:764.800000pt;}
.y15_c00026{bottom:766.080000pt;}
.y12_c00026{bottom:766.720000pt;}
.y13_c00026{bottom:767.360000pt;}
.yb_c00026{bottom:801.920000pt;}
.yf_c00026{bottom:802.560000pt;}
.y10_c00026{bottom:803.200000pt;}
.yc_c00026{bottom:804.480000pt;}
.ye_c00026{bottom:805.120000pt;}
.yd_c00026{bottom:805.760000pt;}
.y5_c00026{bottom:839.680000pt;}
.y9_c00026{bottom:840.320000pt;}
.y7_c00026{bottom:840.960000pt;}
.y6_c00026{bottom:842.240000pt;}
.y8_c00026{bottom:842.880000pt;}
.ya_c00026{bottom:843.520000pt;}
.y4_c00026{bottom:878.720000pt;}
.y3_c00026{bottom:880.640000pt;}
.y2_c00026{bottom:881.280000pt;}
.y1_c00026{bottom:947.840000pt;}
.h3_c00026{height:27.645000pt;}
.h6_c00026{height:29.948750pt;}
.ha_c00026{height:32.252500pt;}
.hd_c00026{height:34.556250pt;}
.h9_c00026{height:36.860000pt;}
.h5_c00026{height:39.163750pt;}
.h4_c00026{height:41.467500pt;}
.hf_c00026{height:43.771250pt;}
.h8_c00026{height:46.075000pt;}
.he_c00026{height:46.843750pt;}
.h7_c00026{height:48.378750pt;}
.hc_c00026{height:50.682500pt;}
.h10_c00026{height:51.707500pt;}
.hb_c00026{height:52.986250pt;}
.h2_c00026{height:55.290000pt;}
.h0_c00026{height:1015.040000pt;}
.h1_c00026{height:1015.333333pt;}
.w1_c00026{width:713.333333pt;}
.w0_c00026{width:713.600000pt;}
.x0_c00026{left:0.000000pt;}
.x2_c00026{left:71.040000pt;}
.x23_c00026{left:72.320000pt;}
.x54_c00026{left:73.600000pt;}
.x3_c00026{left:90.240000pt;}
.x41_c00026{left:99.840000pt;}
.xd_c00026{left:109.440000pt;}
.x4_c00026{left:119.040000pt;}
.x24_c00026{left:128.640000pt;}
.x48_c00026{left:138.240000pt;}
.x52_c00026{left:140.800000pt;}
.x1f_c00026{left:147.840000pt;}
.x2a_c00026{left:149.120000pt;}
.x36_c00026{left:157.440000pt;}
.x5_c00026{left:167.040000pt;}
.x4e_c00026{left:176.640000pt;}
.x30_c00026{left:186.240000pt;}
.x4b_c00026{left:188.160000pt;}
.x6_c00026{left:195.840000pt;}
.x16_c00026{left:205.440000pt;}
.x3c_c00026{left:215.040000pt;}
.x17_c00026{left:224.000000pt;}
.xe_c00026{left:234.240000pt;}
.x45_c00026{left:236.160000pt;}
.x3d_c00026{left:252.800000pt;}
.x4c_c00026{left:254.080000pt;}
.x18_c00026{left:261.760000pt;}
.x3b_c00026{left:263.040000pt;}
.x4f_c00026{left:264.960000pt;}
.x7_c00026{left:272.000000pt;}
.xf_c00026{left:280.960000pt;}
.x55_c00026{left:290.560000pt;}
.x31_c00026{left:291.840000pt;}
.x37_c00026{left:300.800000pt;}
.x46_c00026{left:303.360000pt;}
.x49_c00026{left:309.120000pt;}
.x2b_c00026{left:311.040000pt;}
.x57_c00026{left:319.360000pt;}
.x10_c00026{left:320.640000pt;}
.x47_c00026{left:329.600000pt;}
.x3e_c00026{left:339.200000pt;}
.x4d_c00026{left:348.160000pt;}
.x19_c00026{left:349.440000pt;}
.x8_c00026{left:358.400000pt;}
.x56_c00026{left:366.720000pt;}
.x20_c00026{left:368.000000pt;}
.x1a_c00026{left:376.960000pt;}
.x25_c00026{left:378.240000pt;}
.x9_c00026{left:387.200000pt;}
.x50_c00026{left:396.160000pt;}
.x32_c00026{left:397.440000pt;}
.x38_c00026{left:407.040000pt;}
.xa_c00026{left:416.000000pt;}
.x33_c00026{left:424.960000pt;}
.x58_c00026{left:434.560000pt;}
.x3f_c00026{left:435.840000pt;}
.x21_c00026{left:444.160000pt;}
.x11_c00026{left:445.440000pt;}
.x2c_c00026{left:454.400000pt;}
.x1b_c00026{left:456.960000pt;}
.x26_c00026{left:463.360000pt;}
.x12_c00026{left:464.640000pt;}
.xb_c00026{left:481.920000pt;}
.x2d_c00026{left:483.840000pt;}
.x22_c00026{left:492.160000pt;}
.x27_c00026{left:493.440000pt;}
.x39_c00026{left:501.120000pt;}
.x42_c00026{left:502.400000pt;}
.x4a_c00026{left:511.360000pt;}
.x2e_c00026{left:520.960000pt;}
.x13_c00026{left:522.240000pt;}
.x43_c00026{left:530.560000pt;}
.x53_c00026{left:539.520000pt;}
.x1c_c00026{left:541.440000pt;}
.x34_c00026{left:543.360000pt;}
.x14_c00026{left:550.400000pt;}
.x44_c00026{left:558.720000pt;}
.x2f_c00026{left:560.000000pt;}
.x28_c00026{left:561.920000pt;}
.x51_c00026{left:568.320000pt;}
.x3a_c00026{left:577.920000pt;}
.x1d_c00026{left:588.160000pt;}
.x35_c00026{left:599.040000pt;}
.x15_c00026{left:607.360000pt;}
.x1e_c00026{left:608.640000pt;}
.xc_c00026{left:617.600000pt;}
.x29_c00026{left:627.200000pt;}
.x40_c00026{left:636.800000pt;}
.x1_c00026{left:645.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6c94a132217833906cbd7195.woff2')format("woff");}.ff1_c00027{font-family:ff1_c00027;line-height:1.109863;font-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_c00027{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m2e_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);}
.m55_c00027{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m53_c00027{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);}
.m57_c00027{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m58_c00027{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m6_c00027{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1_c00027{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m46_c00027{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m54_c00027{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m43_c00027{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m45_c00027{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00027{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m38_c00027{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m0_c00027{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m4_c00027{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);}
.m41_c00027{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m19_c00027{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00027{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m15_c00027{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.mc_c00027{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m34_c00027{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m16_c00027{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00027{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);}
.m8_c00027{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);}
.m49_c00027{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m3_c00027{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00027{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);}
.m32_c00027{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);}
.m59_c00027{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_c00027{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00027{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m13_c00027{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m33_c00027{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);}
.m3a_c00027{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);}
.m9_c00027{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);}
.m27_c00027{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m21_c00027{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m47_c00027{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);}
.m2c_c00027{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m18_c00027{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);}
.m52_c00027{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m11_c00027{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_c00027{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00027{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.mf_c00027{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m2_c00027{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m29_c00027{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);}
.m31_c00027{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00027{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m50_c00027{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_c00027{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m24_c00027{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);}
.m22_c00027{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m12_c00027{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00027{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.md_c00027{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);}
.m2b_c00027{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m44_c00027{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m36_c00027{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);}
.m7_c00027{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m14_c00027{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m5_c00027{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m42_c00027{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);}
.m28_c00027{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);}
.m20_c00027{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m48_c00027{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00027{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);}
.m2d_c00027{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00027{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);}
.m4f_c00027{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00027{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00027{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m40_c00027{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);}
.m25_c00027{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);}
.m4a_c00027{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m56_c00027{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m17_c00027{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.mb_c00027{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00027{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m39_c00027{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);}
.m1e_c00027{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.me_c00027{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);}
.m2a_c00027{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m51_c00027{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);}
.m3f_c00027{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m35_c00027{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m30_c00027{transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);}
.ma_c00027{transform:matrix(0.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680000,0.000000,0.000000,0.250000,0,0);}
.m37_c00027{transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);}
.v0_c00027{vertical-align:0.000000px;}
.v1_c00027{vertical-align:8.640000px;}
.ls0_c00027{letter-spacing:0.000000px;}
.sc__c00027{text-shadow:none;}
.sc0_c00027{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00027{-webkit-text-stroke:0px transparent;}
.sc0_c00027{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00027{word-spacing:-0.918960px;}
.ws2_c00027{word-spacing:0.000000px;}
.ws0_c00027{word-spacing:1.302480px;}
.fc0_c00027{color:transparent;}
.fs5_c00027{font-size:34.560000px;}
.fsa_c00027{font-size:37.440000px;}
.fs8_c00027{font-size:43.200000px;}
.fs7_c00027{font-size:46.080000px;}
.fs6_c00027{font-size:48.960000px;}
.fs2_c00027{font-size:51.840000px;}
.fsc_c00027{font-size:54.720000px;}
.fs4_c00027{font-size:57.600000px;}
.fs3_c00027{font-size:60.480000px;}
.fsb_c00027{font-size:63.360000px;}
.fs9_c00027{font-size:66.240000px;}
.fs1_c00027{font-size:69.120000px;}
.fs0_c00027{font-size:72.000000px;}
.y0_c00027{bottom:0.000000px;}
.y64_c00027{bottom:49.680000px;}
.y63_c00027{bottom:50.400000px;}
.y60_c00027{bottom:51.120000px;}
.y5f_c00027{bottom:51.840000px;}
.y62_c00027{bottom:52.560000px;}
.y61_c00027{bottom:53.280000px;}
.y5e_c00027{bottom:92.880000px;}
.y5d_c00027{bottom:95.040000px;}
.y5c_c00027{bottom:95.760000px;}
.y5b_c00027{bottom:96.480000px;}
.y5a_c00027{bottom:134.640000px;}
.y59_c00027{bottom:135.360000px;}
.y57_c00027{bottom:136.080000px;}
.y58_c00027{bottom:137.520000px;}
.y56_c00027{bottom:138.240000px;}
.y53_c00027{bottom:177.840000px;}
.y54_c00027{bottom:178.560000px;}
.y55_c00027{bottom:180.000000px;}
.y52_c00027{bottom:180.720000px;}
.y51_c00027{bottom:220.320000px;}
.y50_c00027{bottom:222.480000px;}
.y4e_c00027{bottom:223.200000px;}
.y4f_c00027{bottom:223.920000px;}
.y4d_c00027{bottom:262.080000px;}
.y4b_c00027{bottom:262.800000px;}
.y49_c00027{bottom:263.520000px;}
.y4c_c00027{bottom:265.680000px;}
.y4a_c00027{bottom:266.400000px;}
.y47_c00027{bottom:305.280000px;}
.y45_c00027{bottom:306.000000px;}
.y46_c00027{bottom:308.160000px;}
.y48_c00027{bottom:308.880000px;}
.y44_c00027{bottom:347.760000px;}
.y43_c00027{bottom:348.480000px;}
.y42_c00027{bottom:350.640000px;}
.y41_c00027{bottom:351.360000px;}
.y40_c00027{bottom:389.520000px;}
.y3d_c00027{bottom:390.960000px;}
.y3f_c00027{bottom:392.400000px;}
.y3c_c00027{bottom:393.120000px;}
.y3e_c00027{bottom:393.840000px;}
.y3b_c00027{bottom:433.440000px;}
.y3a_c00027{bottom:434.160000px;}
.y39_c00027{bottom:435.600000px;}
.y38_c00027{bottom:436.320000px;}
.y36_c00027{bottom:486.000000px;}
.y33_c00027{bottom:486.720000px;}
.y37_c00027{bottom:487.440000px;}
.y35_c00027{bottom:488.880000px;}
.y34_c00027{bottom:489.600000px;}
.y30_c00027{bottom:528.480000px;}
.y31_c00027{bottom:531.360000px;}
.y2f_c00027{bottom:532.080000px;}
.y32_c00027{bottom:532.800000px;}
.y2e_c00027{bottom:571.680000px;}
.y2a_c00027{bottom:572.400000px;}
.y2d_c00027{bottom:573.840000px;}
.y2c_c00027{bottom:574.560000px;}
.y2b_c00027{bottom:575.280000px;}
.y29_c00027{bottom:614.160000px;}
.y27_c00027{bottom:617.040000px;}
.y28_c00027{bottom:617.760000px;}
.y24_c00027{bottom:656.640000px;}
.y26_c00027{bottom:657.360000px;}
.y25_c00027{bottom:658.800000px;}
.y22_c00027{bottom:660.240000px;}
.y23_c00027{bottom:660.960000px;}
.y20_c00027{bottom:699.840000px;}
.y21_c00027{bottom:702.000000px;}
.y1f_c00027{bottom:702.720000px;}
.y1d_c00027{bottom:742.320000px;}
.y1e_c00027{bottom:744.480000px;}
.y1c_c00027{bottom:745.200000px;}
.y1b_c00027{bottom:784.800000px;}
.y19_c00027{bottom:785.520000px;}
.y18_c00027{bottom:787.680000px;}
.y1a_c00027{bottom:788.400000px;}
.y15_c00027{bottom:828.000000px;}
.y14_c00027{bottom:829.440000px;}
.y16_c00027{bottom:830.160000px;}
.y17_c00027{bottom:830.880000px;}
.y11_c00027{bottom:870.480000px;}
.y13_c00027{bottom:871.920000px;}
.y10_c00027{bottom:872.640000px;}
.y12_c00027{bottom:873.360000px;}
.yb_c00027{bottom:912.240000px;}
.ye_c00027{bottom:912.960000px;}
.yf_c00027{bottom:915.120000px;}
.yc_c00027{bottom:915.840000px;}
.yd_c00027{bottom:916.560000px;}
.y9_c00027{bottom:954.720000px;}
.ya_c00027{bottom:955.440000px;}
.y7_c00027{bottom:958.320000px;}
.y8_c00027{bottom:959.040000px;}
.y5_c00027{bottom:997.920000px;}
.y2_c00027{bottom:998.640000px;}
.y6_c00027{bottom:999.360000px;}
.y4_c00027{bottom:1000.800000px;}
.y3_c00027{bottom:1001.520000px;}
.y1_c00027{bottom:1085.040000px;}
.h7_c00027{height:31.100625px;}
.hc_c00027{height:33.692344px;}
.ha_c00027{height:38.875781px;}
.h9_c00027{height:41.467500px;}
.h8_c00027{height:44.059219px;}
.h4_c00027{height:46.650937px;}
.he_c00027{height:49.242656px;}
.h6_c00027{height:51.834375px;}
.h5_c00027{height:54.426094px;}
.hd_c00027{height:57.017812px;}
.hb_c00027{height:59.609531px;}
.h3_c00027{height:62.201250px;}
.h2_c00027{height:64.792969px;}
.h1_c00027{height:1148.250000px;}
.h0_c00027{height:1148.400000px;}
.w0_c00027{width:810.000000px;}
.x0_c00027{left:0.000000px;}
.x4f_c00027{left:86.400000px;}
.x2_c00027{left:88.560000px;}
.x1c_c00027{left:109.440000px;}
.xc_c00027{left:120.960000px;}
.x32_c00027{left:130.320000px;}
.x1d_c00027{left:142.560000px;}
.x24_c00027{left:153.360000px;}
.x3_c00027{left:164.160000px;}
.x33_c00027{left:174.960000px;}
.x49_c00027{left:185.760000px;}
.x4_c00027{left:195.120000px;}
.x15_c00027{left:196.560000px;}
.x2e_c00027{left:205.920000px;}
.x46_c00027{left:207.360000px;}
.x38_c00027{left:216.720000px;}
.xd_c00027{left:218.160000px;}
.x3d_c00027{left:228.960000px;}
.xe_c00027{left:237.600000px;}
.x53_c00027{left:248.400000px;}
.x41_c00027{left:249.840000px;}
.x16_c00027{left:260.640000px;}
.x34_c00027{left:272.160000px;}
.xf_c00027{left:282.240000px;}
.x57_c00027{left:291.600000px;}
.x5_c00027{left:293.040000px;}
.x2a_c00027{left:303.840000px;}
.x3e_c00027{left:313.920000px;}
.x47_c00027{left:315.360000px;}
.x6_c00027{left:323.280000px;}
.x2b_c00027{left:324.720000px;}
.x39_c00027{left:326.160000px;}
.x10_c00027{left:336.240000px;}
.x3a_c00027{left:345.600000px;}
.x42_c00027{left:347.760000px;}
.x17_c00027{left:356.400000px;}
.x3f_c00027{left:357.840000px;}
.x1e_c00027{left:367.920000px;}
.x3b_c00027{left:369.360000px;}
.x52_c00027{left:378.000000px;}
.x35_c00027{left:379.440000px;}
.x25_c00027{left:388.800000px;}
.x50_c00027{left:390.240000px;}
.x18_c00027{left:399.600000px;}
.x4d_c00027{left:401.040000px;}
.x1f_c00027{left:410.400000px;}
.x4a_c00027{left:411.840000px;}
.x43_c00027{left:421.920000px;}
.x19_c00027{left:432.000000px;}
.x54_c00027{left:442.800000px;}
.x7_c00027{left:444.240000px;}
.x44_c00027{left:454.320000px;}
.x11_c00027{left:464.400000px;}
.x20_c00027{left:475.200000px;}
.x8_c00027{left:486.000000px;}
.x58_c00027{left:487.440000px;}
.x4b_c00027{left:488.880000px;}
.x1a_c00027{left:497.520000px;}
.x36_c00027{left:508.320000px;}
.x26_c00027{left:518.400000px;}
.x4e_c00027{left:529.200000px;}
.x55_c00027{left:530.640000px;}
.x27_c00027{left:540.720000px;}
.x21_c00027{left:551.520000px;}
.x2f_c00027{left:561.600000px;}
.x12_c00027{left:563.040000px;}
.x9_c00027{left:573.840000px;}
.x22_c00027{left:583.920000px;}
.x30_c00027{left:594.000000px;}
.x48_c00027{left:604.800000px;}
.xa_c00027{left:615.600000px;}
.x1b_c00027{left:617.040000px;}
.x13_c00027{left:626.400000px;}
.x45_c00027{left:628.560000px;}
.x28_c00027{left:637.200000px;}
.x2c_c00027{left:648.000000px;}
.x4c_c00027{left:650.160000px;}
.x14_c00027{left:658.800000px;}
.x56_c00027{left:662.400000px;}
.x29_c00027{left:669.600000px;}
.x3c_c00027{left:671.040000px;}
.x31_c00027{left:680.400000px;}
.x2d_c00027{left:681.840000px;}
.x37_c00027{left:691.200000px;}
.x23_c00027{left:702.000000px;}
.x40_c00027{left:713.520000px;}
.x51_c00027{left:716.400000px;}
.x1_c00027{left:723.600000px;}
.xb_c00027{left:734.400000px;}
@media print{
.v0_c00027{vertical-align:0.000000pt;}
.v1_c00027{vertical-align:7.680000pt;}
.ls0_c00027{letter-spacing:0.000000pt;}
.ws1_c00027{word-spacing:-0.816853pt;}
.ws2_c00027{word-spacing:0.000000pt;}
.ws0_c00027{word-spacing:1.157760pt;}
.fs5_c00027{font-size:30.720000pt;}
.fsa_c00027{font-size:33.280000pt;}
.fs8_c00027{font-size:38.400000pt;}
.fs7_c00027{font-size:40.960000pt;}
.fs6_c00027{font-size:43.520000pt;}
.fs2_c00027{font-size:46.080000pt;}
.fsc_c00027{font-size:48.640000pt;}
.fs4_c00027{font-size:51.200000pt;}
.fs3_c00027{font-size:53.760000pt;}
.fsb_c00027{font-size:56.320000pt;}
.fs9_c00027{font-size:58.880000pt;}
.fs1_c00027{font-size:61.440000pt;}
.fs0_c00027{font-size:64.000000pt;}
.y0_c00027{bottom:0.000000pt;}
.y64_c00027{bottom:44.160000pt;}
.y63_c00027{bottom:44.800000pt;}
.y60_c00027{bottom:45.440000pt;}
.y5f_c00027{bottom:46.080000pt;}
.y62_c00027{bottom:46.720000pt;}
.y61_c00027{bottom:47.360000pt;}
.y5e_c00027{bottom:82.560000pt;}
.y5d_c00027{bottom:84.480000pt;}
.y5c_c00027{bottom:85.120000pt;}
.y5b_c00027{bottom:85.760000pt;}
.y5a_c00027{bottom:119.680000pt;}
.y59_c00027{bottom:120.320000pt;}
.y57_c00027{bottom:120.960000pt;}
.y58_c00027{bottom:122.240000pt;}
.y56_c00027{bottom:122.880000pt;}
.y53_c00027{bottom:158.080000pt;}
.y54_c00027{bottom:158.720000pt;}
.y55_c00027{bottom:160.000000pt;}
.y52_c00027{bottom:160.640000pt;}
.y51_c00027{bottom:195.840000pt;}
.y50_c00027{bottom:197.760000pt;}
.y4e_c00027{bottom:198.400000pt;}
.y4f_c00027{bottom:199.040000pt;}
.y4d_c00027{bottom:232.960000pt;}
.y4b_c00027{bottom:233.600000pt;}
.y49_c00027{bottom:234.240000pt;}
.y4c_c00027{bottom:236.160000pt;}
.y4a_c00027{bottom:236.800000pt;}
.y47_c00027{bottom:271.360000pt;}
.y45_c00027{bottom:272.000000pt;}
.y46_c00027{bottom:273.920000pt;}
.y48_c00027{bottom:274.560000pt;}
.y44_c00027{bottom:309.120000pt;}
.y43_c00027{bottom:309.760000pt;}
.y42_c00027{bottom:311.680000pt;}
.y41_c00027{bottom:312.320000pt;}
.y40_c00027{bottom:346.240000pt;}
.y3d_c00027{bottom:347.520000pt;}
.y3f_c00027{bottom:348.800000pt;}
.y3c_c00027{bottom:349.440000pt;}
.y3e_c00027{bottom:350.080000pt;}
.y3b_c00027{bottom:385.280000pt;}
.y3a_c00027{bottom:385.920000pt;}
.y39_c00027{bottom:387.200000pt;}
.y38_c00027{bottom:387.840000pt;}
.y36_c00027{bottom:432.000000pt;}
.y33_c00027{bottom:432.640000pt;}
.y37_c00027{bottom:433.280000pt;}
.y35_c00027{bottom:434.560000pt;}
.y34_c00027{bottom:435.200000pt;}
.y30_c00027{bottom:469.760000pt;}
.y31_c00027{bottom:472.320000pt;}
.y2f_c00027{bottom:472.960000pt;}
.y32_c00027{bottom:473.600000pt;}
.y2e_c00027{bottom:508.160000pt;}
.y2a_c00027{bottom:508.800000pt;}
.y2d_c00027{bottom:510.080000pt;}
.y2c_c00027{bottom:510.720000pt;}
.y2b_c00027{bottom:511.360000pt;}
.y29_c00027{bottom:545.920000pt;}
.y27_c00027{bottom:548.480000pt;}
.y28_c00027{bottom:549.120000pt;}
.y24_c00027{bottom:583.680000pt;}
.y26_c00027{bottom:584.320000pt;}
.y25_c00027{bottom:585.600000pt;}
.y22_c00027{bottom:586.880000pt;}
.y23_c00027{bottom:587.520000pt;}
.y20_c00027{bottom:622.080000pt;}
.y21_c00027{bottom:624.000000pt;}
.y1f_c00027{bottom:624.640000pt;}
.y1d_c00027{bottom:659.840000pt;}
.y1e_c00027{bottom:661.760000pt;}
.y1c_c00027{bottom:662.400000pt;}
.y1b_c00027{bottom:697.600000pt;}
.y19_c00027{bottom:698.240000pt;}
.y18_c00027{bottom:700.160000pt;}
.y1a_c00027{bottom:700.800000pt;}
.y15_c00027{bottom:736.000000pt;}
.y14_c00027{bottom:737.280000pt;}
.y16_c00027{bottom:737.920000pt;}
.y17_c00027{bottom:738.560000pt;}
.y11_c00027{bottom:773.760000pt;}
.y13_c00027{bottom:775.040000pt;}
.y10_c00027{bottom:775.680000pt;}
.y12_c00027{bottom:776.320000pt;}
.yb_c00027{bottom:810.880000pt;}
.ye_c00027{bottom:811.520000pt;}
.yf_c00027{bottom:813.440000pt;}
.yc_c00027{bottom:814.080000pt;}
.yd_c00027{bottom:814.720000pt;}
.y9_c00027{bottom:848.640000pt;}
.ya_c00027{bottom:849.280000pt;}
.y7_c00027{bottom:851.840000pt;}
.y8_c00027{bottom:852.480000pt;}
.y5_c00027{bottom:887.040000pt;}
.y2_c00027{bottom:887.680000pt;}
.y6_c00027{bottom:888.320000pt;}
.y4_c00027{bottom:889.600000pt;}
.y3_c00027{bottom:890.240000pt;}
.y1_c00027{bottom:964.480000pt;}
.h7_c00027{height:27.645000pt;}
.hc_c00027{height:29.948750pt;}
.ha_c00027{height:34.556250pt;}
.h9_c00027{height:36.860000pt;}
.h8_c00027{height:39.163750pt;}
.h4_c00027{height:41.467500pt;}
.he_c00027{height:43.771250pt;}
.h6_c00027{height:46.075000pt;}
.h5_c00027{height:48.378750pt;}
.hd_c00027{height:50.682500pt;}
.hb_c00027{height:52.986250pt;}
.h3_c00027{height:55.290000pt;}
.h2_c00027{height:57.593750pt;}
.h1_c00027{height:1020.666667pt;}
.h0_c00027{height:1020.800000pt;}
.w0_c00027{width:720.000000pt;}
.x0_c00027{left:0.000000pt;}
.x4f_c00027{left:76.800000pt;}
.x2_c00027{left:78.720000pt;}
.x1c_c00027{left:97.280000pt;}
.xc_c00027{left:107.520000pt;}
.x32_c00027{left:115.840000pt;}
.x1d_c00027{left:126.720000pt;}
.x24_c00027{left:136.320000pt;}
.x3_c00027{left:145.920000pt;}
.x33_c00027{left:155.520000pt;}
.x49_c00027{left:165.120000pt;}
.x4_c00027{left:173.440000pt;}
.x15_c00027{left:174.720000pt;}
.x2e_c00027{left:183.040000pt;}
.x46_c00027{left:184.320000pt;}
.x38_c00027{left:192.640000pt;}
.xd_c00027{left:193.920000pt;}
.x3d_c00027{left:203.520000pt;}
.xe_c00027{left:211.200000pt;}
.x53_c00027{left:220.800000pt;}
.x41_c00027{left:222.080000pt;}
.x16_c00027{left:231.680000pt;}
.x34_c00027{left:241.920000pt;}
.xf_c00027{left:250.880000pt;}
.x57_c00027{left:259.200000pt;}
.x5_c00027{left:260.480000pt;}
.x2a_c00027{left:270.080000pt;}
.x3e_c00027{left:279.040000pt;}
.x47_c00027{left:280.320000pt;}
.x6_c00027{left:287.360000pt;}
.x2b_c00027{left:288.640000pt;}
.x39_c00027{left:289.920000pt;}
.x10_c00027{left:298.880000pt;}
.x3a_c00027{left:307.200000pt;}
.x42_c00027{left:309.120000pt;}
.x17_c00027{left:316.800000pt;}
.x3f_c00027{left:318.080000pt;}
.x1e_c00027{left:327.040000pt;}
.x3b_c00027{left:328.320000pt;}
.x52_c00027{left:336.000000pt;}
.x35_c00027{left:337.280000pt;}
.x25_c00027{left:345.600000pt;}
.x50_c00027{left:346.880000pt;}
.x18_c00027{left:355.200000pt;}
.x4d_c00027{left:356.480000pt;}
.x1f_c00027{left:364.800000pt;}
.x4a_c00027{left:366.080000pt;}
.x43_c00027{left:375.040000pt;}
.x19_c00027{left:384.000000pt;}
.x54_c00027{left:393.600000pt;}
.x7_c00027{left:394.880000pt;}
.x44_c00027{left:403.840000pt;}
.x11_c00027{left:412.800000pt;}
.x20_c00027{left:422.400000pt;}
.x8_c00027{left:432.000000pt;}
.x58_c00027{left:433.280000pt;}
.x4b_c00027{left:434.560000pt;}
.x1a_c00027{left:442.240000pt;}
.x36_c00027{left:451.840000pt;}
.x26_c00027{left:460.800000pt;}
.x4e_c00027{left:470.400000pt;}
.x55_c00027{left:471.680000pt;}
.x27_c00027{left:480.640000pt;}
.x21_c00027{left:490.240000pt;}
.x2f_c00027{left:499.200000pt;}
.x12_c00027{left:500.480000pt;}
.x9_c00027{left:510.080000pt;}
.x22_c00027{left:519.040000pt;}
.x30_c00027{left:528.000000pt;}
.x48_c00027{left:537.600000pt;}
.xa_c00027{left:547.200000pt;}
.x1b_c00027{left:548.480000pt;}
.x13_c00027{left:556.800000pt;}
.x45_c00027{left:558.720000pt;}
.x28_c00027{left:566.400000pt;}
.x2c_c00027{left:576.000000pt;}
.x4c_c00027{left:577.920000pt;}
.x14_c00027{left:585.600000pt;}
.x56_c00027{left:588.800000pt;}
.x29_c00027{left:595.200000pt;}
.x3c_c00027{left:596.480000pt;}
.x31_c00027{left:604.800000pt;}
.x2d_c00027{left:606.080000pt;}
.x37_c00027{left:614.400000pt;}
.x23_c00027{left:624.000000pt;}
.x40_c00027{left:634.240000pt;}
.x51_c00027{left:636.800000pt;}
.x1_c00027{left:643.200000pt;}
.xb_c00027{left:652.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_dfa868f179985252d0affa7d.woff2')format("woff");}.ff1_c00028{font-family:ff1_c00028;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3f_c00028{transform:matrix(0.190975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190975,0.000000,0.000000,0.250000,0,0);}
.m1c_c00028{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);}
.m4e_c00028{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m7_c00028{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m0_c00028{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00028{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00028{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m34_c00028{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m42_c00028{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m51_c00028{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m12_c00028{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m48_c00028{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mc_c00028{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00028{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00028{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m39_c00028{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m29_c00028{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mb_c00028{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m5_c00028{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);}
.m4c_c00028{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);}
.m43_c00028{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m38_c00028{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);}
.m47_c00028{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m31_c00028{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_c00028{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.ma_c00028{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00028{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00028{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m11_c00028{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);}
.m54_c00028{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00028{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);}
.m36_c00028{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);}
.m3a_c00028{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m19_c00028{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.md_c00028{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00028{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00028{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);}
.m1e_c00028{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m6_c00028{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m20_c00028{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m32_c00028{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);}
.m21_c00028{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);}
.m46_c00028{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m18_c00028{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m9_c00028{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);}
.m15_c00028{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m17_c00028{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m45_c00028{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);}
.m33_c00028{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m40_c00028{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);}
.m58_c00028{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m41_c00028{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m55_c00028{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m22_c00028{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);}
.m4f_c00028{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m57_c00028{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m25_c00028{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);}
.m2c_c00028{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m24_c00028{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00028{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m37_c00028{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m8_c00028{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00028{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);}
.m4_c00028{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);}
.m1d_c00028{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m35_c00028{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m2_c00028{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);}
.m3_c00028{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m52_c00028{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m27_c00028{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m26_c00028{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);}
.m23_c00028{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.me_c00028{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00028{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);}
.m44_c00028{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);}
.m16_c00028{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m49_c00028{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m53_c00028{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m50_c00028{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00028{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m14_c00028{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m56_c00028{transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00028{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m10_c00028{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00028{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);}
.m28_c00028{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m1_c00028{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00028{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m30_c00028{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.v0_c00028{vertical-align:0.000000px;}
.v1_c00028{vertical-align:11.520000px;}
.ls0_c00028{letter-spacing:0.000000px;}
.sc__c00028{text-shadow:none;}
.sc0_c00028{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00028{-webkit-text-stroke:0px transparent;}
.sc0_c00028{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00028{word-spacing:-1.480080px;}
.ws1_c00028{word-spacing:0.000000px;}
.fc0_c00028{color:transparent;}
.fs8_c00028{font-size:34.560000px;}
.fs1_c00028{font-size:37.440000px;}
.fs7_c00028{font-size:43.200000px;}
.fs4_c00028{font-size:46.080000px;}
.fs3_c00028{font-size:48.960000px;}
.fs2_c00028{font-size:51.840000px;}
.fsc_c00028{font-size:54.720000px;}
.fsa_c00028{font-size:57.600000px;}
.fs9_c00028{font-size:60.480000px;}
.fsb_c00028{font-size:63.360000px;}
.fs6_c00028{font-size:66.240000px;}
.fs5_c00028{font-size:69.120000px;}
.fs0_c00028{font-size:72.000000px;}
.fse_c00028{font-size:74.880000px;}
.fsd_c00028{font-size:100.800000px;}
.y0_c00028{bottom:0.000000px;}
.y63_c00028{bottom:48.240000px;}
.y62_c00028{bottom:49.680000px;}
.y60_c00028{bottom:87.840000px;}
.y5e_c00028{bottom:89.280000px;}
.y61_c00028{bottom:90.720000px;}
.y5f_c00028{bottom:91.440000px;}
.y5d_c00028{bottom:92.160000px;}
.y5c_c00028{bottom:130.320000px;}
.y59_c00028{bottom:131.040000px;}
.y5b_c00028{bottom:131.760000px;}
.y58_c00028{bottom:133.920000px;}
.y5a_c00028{bottom:134.640000px;}
.y54_c00028{bottom:173.520000px;}
.y53_c00028{bottom:174.240000px;}
.y52_c00028{bottom:174.960000px;}
.y57_c00028{bottom:175.680000px;}
.y55_c00028{bottom:176.400000px;}
.y56_c00028{bottom:177.120000px;}
.y51_c00028{bottom:216.000000px;}
.y4e_c00028{bottom:217.440000px;}
.y4f_c00028{bottom:218.880000px;}
.y50_c00028{bottom:219.600000px;}
.y4d_c00028{bottom:220.320000px;}
.y48_c00028{bottom:259.920000px;}
.y4c_c00028{bottom:260.640000px;}
.y4b_c00028{bottom:261.360000px;}
.y4a_c00028{bottom:262.080000px;}
.y49_c00028{bottom:262.800000px;}
.y47_c00028{bottom:300.960000px;}
.y44_c00028{bottom:301.680000px;}
.y45_c00028{bottom:303.840000px;}
.y46_c00028{bottom:304.560000px;}
.y43_c00028{bottom:305.280000px;}
.y42_c00028{bottom:346.320000px;}
.y41_c00028{bottom:347.040000px;}
.y40_c00028{bottom:386.640000px;}
.y3e_c00028{bottom:388.800000px;}
.y3d_c00028{bottom:389.520000px;}
.y3f_c00028{bottom:390.240000px;}
.y3b_c00028{bottom:439.920000px;}
.y3a_c00028{bottom:440.640000px;}
.y3c_c00028{bottom:442.080000px;}
.y36_c00028{bottom:482.400000px;}
.y37_c00028{bottom:483.120000px;}
.y39_c00028{bottom:484.560000px;}
.y38_c00028{bottom:485.280000px;}
.y35_c00028{bottom:524.160000px;}
.y34_c00028{bottom:524.880000px;}
.y33_c00028{bottom:527.760000px;}
.y32_c00028{bottom:528.480000px;}
.y31_c00028{bottom:567.360000px;}
.y30_c00028{bottom:568.080000px;}
.y2f_c00028{bottom:568.800000px;}
.y2e_c00028{bottom:570.240000px;}
.y2d_c00028{bottom:570.960000px;}
.y2a_c00028{bottom:610.560000px;}
.y29_c00028{bottom:611.280000px;}
.y2b_c00028{bottom:613.440000px;}
.y2c_c00028{bottom:614.160000px;}
.y26_c00028{bottom:653.040000px;}
.y27_c00028{bottom:655.920000px;}
.y28_c00028{bottom:656.640000px;}
.y20_c00028{bottom:694.800000px;}
.y23_c00028{bottom:696.240000px;}
.y25_c00028{bottom:697.680000px;}
.y22_c00028{bottom:698.400000px;}
.y21_c00028{bottom:699.120000px;}
.y24_c00028{bottom:699.840000px;}
.y1c_c00028{bottom:738.000000px;}
.y1e_c00028{bottom:738.720000px;}
.y1d_c00028{bottom:739.440000px;}
.y1f_c00028{bottom:740.880000px;}
.y1a_c00028{bottom:741.600000px;}
.y1b_c00028{bottom:742.320000px;}
.y19_c00028{bottom:781.200000px;}
.y18_c00028{bottom:781.920000px;}
.y17_c00028{bottom:784.080000px;}
.y15_c00028{bottom:823.680000px;}
.y16_c00028{bottom:824.400000px;}
.y13_c00028{bottom:826.560000px;}
.y14_c00028{bottom:827.280000px;}
.yf_c00028{bottom:876.960000px;}
.y10_c00028{bottom:877.680000px;}
.y12_c00028{bottom:879.120000px;}
.y11_c00028{bottom:879.840000px;}
.ye_c00028{bottom:919.440000px;}
.yd_c00028{bottom:920.160000px;}
.yb_c00028{bottom:922.320000px;}
.yc_c00028{bottom:923.040000px;}
.ya_c00028{bottom:961.920000px;}
.y8_c00028{bottom:962.640000px;}
.y7_c00028{bottom:963.360000px;}
.y6_c00028{bottom:964.800000px;}
.y9_c00028{bottom:965.520000px;}
.y5_c00028{bottom:1003.680000px;}
.y4_c00028{bottom:1004.400000px;}
.y2_c00028{bottom:1007.280000px;}
.y3_c00028{bottom:1008.000000px;}
.y1_c00028{bottom:1077.840000px;}
.ha_c00028{height:31.100625px;}
.h3_c00028{height:33.692344px;}
.h9_c00028{height:38.875781px;}
.h6_c00028{height:41.467500px;}
.h5_c00028{height:44.059219px;}
.h4_c00028{height:46.650937px;}
.he_c00028{height:49.242656px;}
.hc_c00028{height:51.834375px;}
.h10_c00028{height:52.987500px;}
.hb_c00028{height:54.426094px;}
.hd_c00028{height:57.017812px;}
.h8_c00028{height:59.609531px;}
.h7_c00028{height:62.201250px;}
.h2_c00028{height:64.792969px;}
.h11_c00028{height:67.384687px;}
.hf_c00028{height:90.710156px;}
.h1_c00028{height:1149.000000px;}
.h0_c00028{height:1149.120000px;}
.w0_c00028{width:812.160000px;}
.w1_c00028{width:812.250000px;}
.x0_c00028{left:0.000000px;}
.xa_c00028{left:89.280000px;}
.x2_c00028{left:90.720000px;}
.x42_c00028{left:110.880000px;}
.x12_c00028{left:112.320000px;}
.x51_c00028{left:121.680000px;}
.x29_c00028{left:132.480000px;}
.x2e_c00028{left:133.920000px;}
.x13_c00028{left:144.720000px;}
.x46_c00028{left:154.080000px;}
.x3_c00028{left:155.520000px;}
.x54_c00028{left:156.960000px;}
.x57_c00028{left:164.880000px;}
.x36_c00028{left:175.680000px;}
.x2a_c00028{left:177.120000px;}
.xb_c00028{left:186.480000px;}
.x43_c00028{left:187.920000px;}
.x58_c00028{left:197.280000px;}
.x1e_c00028{left:198.720000px;}
.x31_c00028{left:208.800000px;}
.x3f_c00028{left:218.160000px;}
.x14_c00028{left:220.320000px;}
.x37_c00028{left:229.680000px;}
.x50_c00028{left:239.760000px;}
.x32_c00028{left:241.920000px;}
.x59_c00028{left:250.560000px;}
.x15_c00028{left:252.000000px;}
.x47_c00028{left:261.360000px;}
.xc_c00028{left:263.520000px;}
.x4_c00028{left:273.600000px;}
.x33_c00028{left:285.120000px;}
.x16_c00028{left:294.480000px;}
.x1f_c00028{left:306.000000px;}
.x52_c00028{left:316.080000px;}
.x4c_c00028{left:326.160000px;}
.x1a_c00028{left:327.600000px;}
.x5_c00028{left:339.120000px;}
.x20_c00028{left:347.760000px;}
.x40_c00028{left:349.200000px;}
.x38_c00028{left:359.280000px;}
.xd_c00028{left:370.080000px;}
.x48_c00028{left:380.160000px;}
.x26_c00028{left:381.600000px;}
.x2b_c00028{left:391.680000px;}
.xe_c00028{left:401.760000px;}
.x55_c00028{left:412.560000px;}
.x21_c00028{left:414.720000px;}
.x4a_c00028{left:423.360000px;}
.x34_c00028{left:424.800000px;}
.x6_c00028{left:426.960000px;}
.x2f_c00028{left:434.160000px;}
.x27_c00028{left:456.480000px;}
.x3d_c00028{left:466.560000px;}
.xf_c00028{left:468.000000px;}
.x1b_c00028{left:478.080000px;}
.x53_c00028{left:488.160000px;}
.x49_c00028{left:489.600000px;}
.x2c_c00028{left:499.680000px;}
.x4d_c00028{left:501.120000px;}
.x56_c00028{left:509.760000px;}
.x39_c00028{left:520.560000px;}
.x10_c00028{left:522.000000px;}
.x2d_c00028{left:531.360000px;}
.x17_c00028{left:542.160000px;}
.x1c_c00028{left:543.600000px;}
.x22_c00028{left:552.960000px;}
.x7_c00028{left:555.120000px;}
.x41_c00028{left:564.480000px;}
.x1d_c00028{left:574.560000px;}
.x4e_c00028{left:576.000000px;}
.x18_c00028{left:586.080000px;}
.x23_c00028{left:596.160000px;}
.x28_c00028{left:606.960000px;}
.x3a_c00028{left:617.760000px;}
.x44_c00028{left:629.280000px;}
.x8_c00028{left:630.720000px;}
.x11_c00028{left:640.080000px;}
.x4f_c00028{left:649.440000px;}
.x19_c00028{left:650.880000px;}
.x3b_c00028{left:660.960000px;}
.x35_c00028{left:672.480000px;}
.x3e_c00028{left:682.560000px;}
.x30_c00028{left:686.160000px;}
.x3c_c00028{left:694.080000px;}
.x9_c00028{left:695.520000px;}
.x24_c00028{left:705.600000px;}
.x45_c00028{left:707.760000px;}
.x4b_c00028{left:714.960000px;}
.x25_c00028{left:725.760000px;}
.x1_c00028{left:736.560000px;}
@media print{
.v0_c00028{vertical-align:0.000000pt;}
.v1_c00028{vertical-align:10.240000pt;}
.ls0_c00028{letter-spacing:0.000000pt;}
.ws0_c00028{word-spacing:-1.315627pt;}
.ws1_c00028{word-spacing:0.000000pt;}
.fs8_c00028{font-size:30.720000pt;}
.fs1_c00028{font-size:33.280000pt;}
.fs7_c00028{font-size:38.400000pt;}
.fs4_c00028{font-size:40.960000pt;}
.fs3_c00028{font-size:43.520000pt;}
.fs2_c00028{font-size:46.080000pt;}
.fsc_c00028{font-size:48.640000pt;}
.fsa_c00028{font-size:51.200000pt;}
.fs9_c00028{font-size:53.760000pt;}
.fsb_c00028{font-size:56.320000pt;}
.fs6_c00028{font-size:58.880000pt;}
.fs5_c00028{font-size:61.440000pt;}
.fs0_c00028{font-size:64.000000pt;}
.fse_c00028{font-size:66.560000pt;}
.fsd_c00028{font-size:89.600000pt;}
.y0_c00028{bottom:0.000000pt;}
.y63_c00028{bottom:42.880000pt;}
.y62_c00028{bottom:44.160000pt;}
.y60_c00028{bottom:78.080000pt;}
.y5e_c00028{bottom:79.360000pt;}
.y61_c00028{bottom:80.640000pt;}
.y5f_c00028{bottom:81.280000pt;}
.y5d_c00028{bottom:81.920000pt;}
.y5c_c00028{bottom:115.840000pt;}
.y59_c00028{bottom:116.480000pt;}
.y5b_c00028{bottom:117.120000pt;}
.y58_c00028{bottom:119.040000pt;}
.y5a_c00028{bottom:119.680000pt;}
.y54_c00028{bottom:154.240000pt;}
.y53_c00028{bottom:154.880000pt;}
.y52_c00028{bottom:155.520000pt;}
.y57_c00028{bottom:156.160000pt;}
.y55_c00028{bottom:156.800000pt;}
.y56_c00028{bottom:157.440000pt;}
.y51_c00028{bottom:192.000000pt;}
.y4e_c00028{bottom:193.280000pt;}
.y4f_c00028{bottom:194.560000pt;}
.y50_c00028{bottom:195.200000pt;}
.y4d_c00028{bottom:195.840000pt;}
.y48_c00028{bottom:231.040000pt;}
.y4c_c00028{bottom:231.680000pt;}
.y4b_c00028{bottom:232.320000pt;}
.y4a_c00028{bottom:232.960000pt;}
.y49_c00028{bottom:233.600000pt;}
.y47_c00028{bottom:267.520000pt;}
.y44_c00028{bottom:268.160000pt;}
.y45_c00028{bottom:270.080000pt;}
.y46_c00028{bottom:270.720000pt;}
.y43_c00028{bottom:271.360000pt;}
.y42_c00028{bottom:307.840000pt;}
.y41_c00028{bottom:308.480000pt;}
.y40_c00028{bottom:343.680000pt;}
.y3e_c00028{bottom:345.600000pt;}
.y3d_c00028{bottom:346.240000pt;}
.y3f_c00028{bottom:346.880000pt;}
.y3b_c00028{bottom:391.040000pt;}
.y3a_c00028{bottom:391.680000pt;}
.y3c_c00028{bottom:392.960000pt;}
.y36_c00028{bottom:428.800000pt;}
.y37_c00028{bottom:429.440000pt;}
.y39_c00028{bottom:430.720000pt;}
.y38_c00028{bottom:431.360000pt;}
.y35_c00028{bottom:465.920000pt;}
.y34_c00028{bottom:466.560000pt;}
.y33_c00028{bottom:469.120000pt;}
.y32_c00028{bottom:469.760000pt;}
.y31_c00028{bottom:504.320000pt;}
.y30_c00028{bottom:504.960000pt;}
.y2f_c00028{bottom:505.600000pt;}
.y2e_c00028{bottom:506.880000pt;}
.y2d_c00028{bottom:507.520000pt;}
.y2a_c00028{bottom:542.720000pt;}
.y29_c00028{bottom:543.360000pt;}
.y2b_c00028{bottom:545.280000pt;}
.y2c_c00028{bottom:545.920000pt;}
.y26_c00028{bottom:580.480000pt;}
.y27_c00028{bottom:583.040000pt;}
.y28_c00028{bottom:583.680000pt;}
.y20_c00028{bottom:617.600000pt;}
.y23_c00028{bottom:618.880000pt;}
.y25_c00028{bottom:620.160000pt;}
.y22_c00028{bottom:620.800000pt;}
.y21_c00028{bottom:621.440000pt;}
.y24_c00028{bottom:622.080000pt;}
.y1c_c00028{bottom:656.000000pt;}
.y1e_c00028{bottom:656.640000pt;}
.y1d_c00028{bottom:657.280000pt;}
.y1f_c00028{bottom:658.560000pt;}
.y1a_c00028{bottom:659.200000pt;}
.y1b_c00028{bottom:659.840000pt;}
.y19_c00028{bottom:694.400000pt;}
.y18_c00028{bottom:695.040000pt;}
.y17_c00028{bottom:696.960000pt;}
.y15_c00028{bottom:732.160000pt;}
.y16_c00028{bottom:732.800000pt;}
.y13_c00028{bottom:734.720000pt;}
.y14_c00028{bottom:735.360000pt;}
.yf_c00028{bottom:779.520000pt;}
.y10_c00028{bottom:780.160000pt;}
.y12_c00028{bottom:781.440000pt;}
.y11_c00028{bottom:782.080000pt;}
.ye_c00028{bottom:817.280000pt;}
.yd_c00028{bottom:817.920000pt;}
.yb_c00028{bottom:819.840000pt;}
.yc_c00028{bottom:820.480000pt;}
.ya_c00028{bottom:855.040000pt;}
.y8_c00028{bottom:855.680000pt;}
.y7_c00028{bottom:856.320000pt;}
.y6_c00028{bottom:857.600000pt;}
.y9_c00028{bottom:858.240000pt;}
.y5_c00028{bottom:892.160000pt;}
.y4_c00028{bottom:892.800000pt;}
.y2_c00028{bottom:895.360000pt;}
.y3_c00028{bottom:896.000000pt;}
.y1_c00028{bottom:958.080000pt;}
.ha_c00028{height:27.645000pt;}
.h3_c00028{height:29.948750pt;}
.h9_c00028{height:34.556250pt;}
.h6_c00028{height:36.860000pt;}
.h5_c00028{height:39.163750pt;}
.h4_c00028{height:41.467500pt;}
.he_c00028{height:43.771250pt;}
.hc_c00028{height:46.075000pt;}
.h10_c00028{height:47.100000pt;}
.hb_c00028{height:48.378750pt;}
.hd_c00028{height:50.682500pt;}
.h8_c00028{height:52.986250pt;}
.h7_c00028{height:55.290000pt;}
.h2_c00028{height:57.593750pt;}
.h11_c00028{height:59.897500pt;}
.hf_c00028{height:80.631250pt;}
.h1_c00028{height:1021.333333pt;}
.h0_c00028{height:1021.440000pt;}
.w0_c00028{width:721.920000pt;}
.w1_c00028{width:722.000000pt;}
.x0_c00028{left:0.000000pt;}
.xa_c00028{left:79.360000pt;}
.x2_c00028{left:80.640000pt;}
.x42_c00028{left:98.560000pt;}
.x12_c00028{left:99.840000pt;}
.x51_c00028{left:108.160000pt;}
.x29_c00028{left:117.760000pt;}
.x2e_c00028{left:119.040000pt;}
.x13_c00028{left:128.640000pt;}
.x46_c00028{left:136.960000pt;}
.x3_c00028{left:138.240000pt;}
.x54_c00028{left:139.520000pt;}
.x57_c00028{left:146.560000pt;}
.x36_c00028{left:156.160000pt;}
.x2a_c00028{left:157.440000pt;}
.xb_c00028{left:165.760000pt;}
.x43_c00028{left:167.040000pt;}
.x58_c00028{left:175.360000pt;}
.x1e_c00028{left:176.640000pt;}
.x31_c00028{left:185.600000pt;}
.x3f_c00028{left:193.920000pt;}
.x14_c00028{left:195.840000pt;}
.x37_c00028{left:204.160000pt;}
.x50_c00028{left:213.120000pt;}
.x32_c00028{left:215.040000pt;}
.x59_c00028{left:222.720000pt;}
.x15_c00028{left:224.000000pt;}
.x47_c00028{left:232.320000pt;}
.xc_c00028{left:234.240000pt;}
.x4_c00028{left:243.200000pt;}
.x33_c00028{left:253.440000pt;}
.x16_c00028{left:261.760000pt;}
.x1f_c00028{left:272.000000pt;}
.x52_c00028{left:280.960000pt;}
.x4c_c00028{left:289.920000pt;}
.x1a_c00028{left:291.200000pt;}
.x5_c00028{left:301.440000pt;}
.x20_c00028{left:309.120000pt;}
.x40_c00028{left:310.400000pt;}
.x38_c00028{left:319.360000pt;}
.xd_c00028{left:328.960000pt;}
.x48_c00028{left:337.920000pt;}
.x26_c00028{left:339.200000pt;}
.x2b_c00028{left:348.160000pt;}
.xe_c00028{left:357.120000pt;}
.x55_c00028{left:366.720000pt;}
.x21_c00028{left:368.640000pt;}
.x4a_c00028{left:376.320000pt;}
.x34_c00028{left:377.600000pt;}
.x6_c00028{left:379.520000pt;}
.x2f_c00028{left:385.920000pt;}
.x27_c00028{left:405.760000pt;}
.x3d_c00028{left:414.720000pt;}
.xf_c00028{left:416.000000pt;}
.x1b_c00028{left:424.960000pt;}
.x53_c00028{left:433.920000pt;}
.x49_c00028{left:435.200000pt;}
.x2c_c00028{left:444.160000pt;}
.x4d_c00028{left:445.440000pt;}
.x56_c00028{left:453.120000pt;}
.x39_c00028{left:462.720000pt;}
.x10_c00028{left:464.000000pt;}
.x2d_c00028{left:472.320000pt;}
.x17_c00028{left:481.920000pt;}
.x1c_c00028{left:483.200000pt;}
.x22_c00028{left:491.520000pt;}
.x7_c00028{left:493.440000pt;}
.x41_c00028{left:501.760000pt;}
.x1d_c00028{left:510.720000pt;}
.x4e_c00028{left:512.000000pt;}
.x18_c00028{left:520.960000pt;}
.x23_c00028{left:529.920000pt;}
.x28_c00028{left:539.520000pt;}
.x3a_c00028{left:549.120000pt;}
.x44_c00028{left:559.360000pt;}
.x8_c00028{left:560.640000pt;}
.x11_c00028{left:568.960000pt;}
.x4f_c00028{left:577.280000pt;}
.x19_c00028{left:578.560000pt;}
.x3b_c00028{left:587.520000pt;}
.x35_c00028{left:597.760000pt;}
.x3e_c00028{left:606.720000pt;}
.x30_c00028{left:609.920000pt;}
.x3c_c00028{left:616.960000pt;}
.x9_c00028{left:618.240000pt;}
.x24_c00028{left:627.200000pt;}
.x45_c00028{left:629.120000pt;}
.x4b_c00028{left:635.520000pt;}
.x25_c00028{left:645.120000pt;}
.x1_c00028{left:654.720000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_86047669b8b29183d8e3dd43.woff2')format("woff");}.ff1_c00029{font-family:ff1_c00029;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3e_c00029{transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);}
.m1e_c00029{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);}
.m53_c00029{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00029{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);}
.m4c_c00029{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m57_c00029{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m44_c00029{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00029{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m19_c00029{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00029{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m43_c00029{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m0_c00029{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m17_c00029{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m32_c00029{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1_c00029{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00029{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00029{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);}
.m3f_c00029{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);}
.m34_c00029{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m28_c00029{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);}
.m56_c00029{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.mb_c00029{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);}
.m2b_c00029{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.md_c00029{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);}
.m48_c00029{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00029{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);}
.m49_c00029{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);}
.m4b_c00029{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00029{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m13_c00029{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);}
.m59_c00029{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);}
.m4d_c00029{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m22_c00029{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m16_c00029{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00029{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);}
.m18_c00029{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00029{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m4_c00029{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m14_c00029{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);}
.m31_c00029{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00029{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);}
.m5c_c00029{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m40_c00029{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_c00029{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m37_c00029{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m52_c00029{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m8_c00029{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);}
.mf_c00029{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00029{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);}
.m29_c00029{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);}
.m21_c00029{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00029{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m54_c00029{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m10_c00029{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m35_c00029{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);}
.m11_c00029{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m20_c00029{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00029{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m38_c00029{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);}
.m2_c00029{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m6_c00029{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m9_c00029{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00029{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.me_c00029{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.ma_c00029{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);}
.m47_c00029{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);}
.m3_c00029{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m41_c00029{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m46_c00029{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);}
.m39_c00029{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m26_c00029{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m58_c00029{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);}
.m50_c00029{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00029{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00029{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m51_c00029{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);}
.m12_c00029{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m42_c00029{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);}
.m30_c00029{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00029{transform:matrix(0.525000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525000,0.000000,0.000000,0.250000,0,0);}
.mc_c00029{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m5_c00029{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00029{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m45_c00029{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m15_c00029{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m36_c00029{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m25_c00029{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);}
.m23_c00029{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m55_c00029{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00029{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m7_c00029{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.m27_c00029{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m33_c00029{transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00029{transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);}
.v0_c00029{vertical-align:0.000000px;}
.ls0_c00029{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00029{word-spacing:0.000000px;}
.ws0_c00029{word-spacing:4.582800px;}
.fc0_c00029{color:transparent;}
.fs6_c00029{font-size:34.560000px;}
.fs5_c00029{font-size:37.440000px;}
.fsc_c00029{font-size:43.200000px;}
.fs4_c00029{font-size:46.080000px;}
.fs2_c00029{font-size:48.960000px;}
.fs3_c00029{font-size:51.840000px;}
.fs7_c00029{font-size:54.720000px;}
.fsb_c00029{font-size:57.600000px;}
.fs8_c00029{font-size:60.480000px;}
.fs1_c00029{font-size:63.360000px;}
.fsa_c00029{font-size:66.240000px;}
.fs9_c00029{font-size:69.120000px;}
.fs0_c00029{font-size:74.880000px;}
.y0_c00029{bottom:0.000000px;}
.y65_c00029{bottom:39.600000px;}
.y64_c00029{bottom:40.320000px;}
.y62_c00029{bottom:41.760000px;}
.y63_c00029{bottom:43.920000px;}
.y61_c00029{bottom:44.640000px;}
.y60_c00029{bottom:45.360000px;}
.y5f_c00029{bottom:46.080000px;}
.y5d_c00029{bottom:83.520000px;}
.y5b_c00029{bottom:84.240000px;}
.y5e_c00029{bottom:85.680000px;}
.y5c_c00029{bottom:86.400000px;}
.y5a_c00029{bottom:87.120000px;}
.y59_c00029{bottom:126.000000px;}
.y56_c00029{bottom:126.720000px;}
.y55_c00029{bottom:127.440000px;}
.y57_c00029{bottom:128.880000px;}
.y58_c00029{bottom:129.600000px;}
.y52_c00029{bottom:169.200000px;}
.y51_c00029{bottom:169.920000px;}
.y54_c00029{bottom:170.640000px;}
.y53_c00029{bottom:171.360000px;}
.y50_c00029{bottom:172.080000px;}
.y4f_c00029{bottom:172.800000px;}
.y4e_c00029{bottom:210.960000px;}
.y4c_c00029{bottom:211.680000px;}
.y4d_c00029{bottom:213.120000px;}
.y4b_c00029{bottom:213.840000px;}
.y4a_c00029{bottom:214.560000px;}
.y48_c00029{bottom:254.880000px;}
.y49_c00029{bottom:257.040000px;}
.y47_c00029{bottom:257.760000px;}
.y46_c00029{bottom:306.720000px;}
.y45_c00029{bottom:307.440000px;}
.y44_c00029{bottom:308.160000px;}
.y43_c00029{bottom:310.320000px;}
.y42_c00029{bottom:311.040000px;}
.y41_c00029{bottom:350.640000px;}
.y40_c00029{bottom:353.520000px;}
.y3c_c00029{bottom:392.400000px;}
.y3e_c00029{bottom:393.120000px;}
.y3d_c00029{bottom:393.840000px;}
.y3f_c00029{bottom:395.280000px;}
.y3b_c00029{bottom:396.000000px;}
.y3a_c00029{bottom:396.720000px;}
.y37_c00029{bottom:434.880000px;}
.y38_c00029{bottom:435.600000px;}
.y36_c00029{bottom:436.320000px;}
.y34_c00029{bottom:437.760000px;}
.y35_c00029{bottom:438.480000px;}
.y39_c00029{bottom:439.200000px;}
.y31_c00029{bottom:478.080000px;}
.y32_c00029{bottom:478.800000px;}
.y30_c00029{bottom:480.960000px;}
.y33_c00029{bottom:481.680000px;}
.y2f_c00029{bottom:521.280000px;}
.y2d_c00029{bottom:523.440000px;}
.y2e_c00029{bottom:524.160000px;}
.y2a_c00029{bottom:563.040000px;}
.y2c_c00029{bottom:563.760000px;}
.y2b_c00029{bottom:564.480000px;}
.y29_c00029{bottom:565.920000px;}
.y28_c00029{bottom:566.640000px;}
.y27_c00029{bottom:606.240000px;}
.y25_c00029{bottom:608.400000px;}
.y26_c00029{bottom:609.120000px;}
.y23_c00029{bottom:659.520000px;}
.y24_c00029{bottom:661.680000px;}
.y22_c00029{bottom:702.000000px;}
.y20_c00029{bottom:704.880000px;}
.y21_c00029{bottom:705.600000px;}
.y1b_c00029{bottom:744.480000px;}
.y1c_c00029{bottom:745.200000px;}
.y1f_c00029{bottom:745.920000px;}
.y1d_c00029{bottom:747.360000px;}
.y1e_c00029{bottom:748.080000px;}
.y19_c00029{bottom:787.680000px;}
.y18_c00029{bottom:788.400000px;}
.y17_c00029{bottom:789.840000px;}
.y1a_c00029{bottom:790.560000px;}
.y14_c00029{bottom:830.160000px;}
.y13_c00029{bottom:830.880000px;}
.y15_c00029{bottom:833.040000px;}
.y16_c00029{bottom:833.760000px;}
.ye_c00029{bottom:871.920000px;}
.yf_c00029{bottom:872.640000px;}
.y10_c00029{bottom:873.360000px;}
.y12_c00029{bottom:875.520000px;}
.y11_c00029{bottom:876.240000px;}
.y9_c00029{bottom:915.120000px;}
.yd_c00029{bottom:915.840000px;}
.ya_c00029{bottom:916.560000px;}
.yc_c00029{bottom:918.000000px;}
.yb_c00029{bottom:918.720000px;}
.y6_c00029{bottom:960.480000px;}
.y7_c00029{bottom:961.200000px;}
.y8_c00029{bottom:961.920000px;}
.y2_c00029{bottom:1000.800000px;}
.y4_c00029{bottom:1003.680000px;}
.y3_c00029{bottom:1004.400000px;}
.y5_c00029{bottom:1005.120000px;}
.y1_c00029{bottom:1074.960000px;}
.h8_c00029{height:31.100625px;}
.h7_c00029{height:33.692344px;}
.he_c00029{height:38.875781px;}
.h6_c00029{height:41.467500px;}
.h4_c00029{height:44.059219px;}
.h5_c00029{height:46.650937px;}
.h9_c00029{height:49.242656px;}
.hd_c00029{height:51.834375px;}
.ha_c00029{height:54.426094px;}
.h3_c00029{height:57.017812px;}
.hc_c00029{height:59.609531px;}
.hb_c00029{height:62.201250px;}
.h2_c00029{height:67.384687px;}
.h1_c00029{height:1150.500000px;}
.h0_c00029{height:1150.560000px;}
.w0_c00029{width:814.320000px;}
.w1_c00029{width:814.500000px;}
.x0_c00029{left:0.000000px;}
.x40_c00029{left:88.560000px;}
.xa_c00029{left:90.000000px;}
.x2c_c00029{left:92.160000px;}
.x42_c00029{left:120.960000px;}
.x31_c00029{left:123.120000px;}
.x13_c00029{left:132.480000px;}
.x4d_c00029{left:143.280000px;}
.x1b_c00029{left:154.080000px;}
.x3a_c00029{left:155.520000px;}
.x58_c00029{left:164.160000px;}
.x46_c00029{left:176.400000px;}
.x22_c00029{left:185.760000px;}
.x2d_c00029{left:187.920000px;}
.x38_c00029{left:197.280000px;}
.x2_c00029{left:198.720000px;}
.x29_c00029{left:208.080000px;}
.x32_c00029{left:218.160000px;}
.xb_c00029{left:219.600000px;}
.x14_c00029{left:229.680000px;}
.x43_c00029{left:232.560000px;}
.x59_c00029{left:249.840000px;}
.x2a_c00029{left:251.280000px;}
.x48_c00029{left:261.360000px;}
.x2e_c00029{left:263.520000px;}
.x33_c00029{left:272.160000px;}
.xc_c00029{left:283.680000px;}
.x4e_c00029{left:293.760000px;}
.x3b_c00029{left:295.200000px;}
.x3_c00029{left:304.560000px;}
.x1c_c00029{left:306.000000px;}
.x15_c00029{left:315.360000px;}
.x4a_c00029{left:317.520000px;}
.xd_c00029{left:326.160000px;}
.x3c_c00029{left:336.240000px;}
.x23_c00029{left:337.680000px;}
.x1d_c00029{left:358.560000px;}
.x4_c00029{left:370.080000px;}
.x16_c00029{left:380.160000px;}
.x1e_c00029{left:391.680000px;}
.xe_c00029{left:401.760000px;}
.x5_c00029{left:403.200000px;}
.x34_c00029{left:411.840000px;}
.x4b_c00029{left:414.000000px;}
.x2f_c00029{left:423.360000px;}
.x49_c00029{left:432.720000px;}
.xf_c00029{left:434.160000px;}
.x6_c00029{left:445.680000px;}
.x5a_c00029{left:455.040000px;}
.x17_c00029{left:457.200000px;}
.x10_c00029{left:466.560000px;}
.x44_c00029{left:468.000000px;}
.x24_c00029{left:477.360000px;}
.x4f_c00029{left:479.520000px;}
.x4c_c00029{left:487.440000px;}
.x1f_c00029{left:488.880000px;}
.x57_c00029{left:497.520000px;}
.x30_c00029{left:509.760000px;}
.x52_c00029{left:518.400000px;}
.x25_c00029{left:519.840000px;}
.x45_c00029{left:530.640000px;}
.x18_c00029{left:552.960000px;}
.x7_c00029{left:563.760000px;}
.x5b_c00029{left:565.200000px;}
.x35_c00029{left:574.560000px;}
.x11_c00029{left:576.720000px;}
.x53_c00029{left:583.920000px;}
.x19_c00029{left:585.360000px;}
.x20_c00029{left:588.240000px;}
.x26_c00029{left:596.160000px;}
.x36_c00029{left:604.800000px;}
.x2b_c00029{left:606.960000px;}
.x3f_c00029{left:608.400000px;}
.x8_c00029{left:617.760000px;}
.x27_c00029{left:627.840000px;}
.x50_c00029{left:629.280000px;}
.x39_c00029{left:638.640000px;}
.x12_c00029{left:640.080000px;}
.x56_c00029{left:648.720000px;}
.x3d_c00029{left:650.160000px;}
.x54_c00029{left:659.520000px;}
.x21_c00029{left:661.680000px;}
.x1a_c00029{left:663.840000px;}
.x51_c00029{left:671.760000px;}
.x41_c00029{left:682.560000px;}
.x47_c00029{left:693.360000px;}
.x55_c00029{left:702.000000px;}
.x37_c00029{left:704.160000px;}
.x9_c00029{left:705.600000px;}
.x3e_c00029{left:714.960000px;}
.x28_c00029{left:726.480000px;}
.x1_c00029{left:737.280000px;}
@media print{
.v0_c00029{vertical-align:0.000000pt;}
.ls0_c00029{letter-spacing:0.000000pt;}
.ws1_c00029{word-spacing:0.000000pt;}
.ws0_c00029{word-spacing:4.073600pt;}
.fs6_c00029{font-size:30.720000pt;}
.fs5_c00029{font-size:33.280000pt;}
.fsc_c00029{font-size:38.400000pt;}
.fs4_c00029{font-size:40.960000pt;}
.fs2_c00029{font-size:43.520000pt;}
.fs3_c00029{font-size:46.080000pt;}
.fs7_c00029{font-size:48.640000pt;}
.fsb_c00029{font-size:51.200000pt;}
.fs8_c00029{font-size:53.760000pt;}
.fs1_c00029{font-size:56.320000pt;}
.fsa_c00029{font-size:58.880000pt;}
.fs9_c00029{font-size:61.440000pt;}
.fs0_c00029{font-size:66.560000pt;}
.y0_c00029{bottom:0.000000pt;}
.y65_c00029{bottom:35.200000pt;}
.y64_c00029{bottom:35.840000pt;}
.y62_c00029{bottom:37.120000pt;}
.y63_c00029{bottom:39.040000pt;}
.y61_c00029{bottom:39.680000pt;}
.y60_c00029{bottom:40.320000pt;}
.y5f_c00029{bottom:40.960000pt;}
.y5d_c00029{bottom:74.240000pt;}
.y5b_c00029{bottom:74.880000pt;}
.y5e_c00029{bottom:76.160000pt;}
.y5c_c00029{bottom:76.800000pt;}
.y5a_c00029{bottom:77.440000pt;}
.y59_c00029{bottom:112.000000pt;}
.y56_c00029{bottom:112.640000pt;}
.y55_c00029{bottom:113.280000pt;}
.y57_c00029{bottom:114.560000pt;}
.y58_c00029{bottom:115.200000pt;}
.y52_c00029{bottom:150.400000pt;}
.y51_c00029{bottom:151.040000pt;}
.y54_c00029{bottom:151.680000pt;}
.y53_c00029{bottom:152.320000pt;}
.y50_c00029{bottom:152.960000pt;}
.y4f_c00029{bottom:153.600000pt;}
.y4e_c00029{bottom:187.520000pt;}
.y4c_c00029{bottom:188.160000pt;}
.y4d_c00029{bottom:189.440000pt;}
.y4b_c00029{bottom:190.080000pt;}
.y4a_c00029{bottom:190.720000pt;}
.y48_c00029{bottom:226.560000pt;}
.y49_c00029{bottom:228.480000pt;}
.y47_c00029{bottom:229.120000pt;}
.y46_c00029{bottom:272.640000pt;}
.y45_c00029{bottom:273.280000pt;}
.y44_c00029{bottom:273.920000pt;}
.y43_c00029{bottom:275.840000pt;}
.y42_c00029{bottom:276.480000pt;}
.y41_c00029{bottom:311.680000pt;}
.y40_c00029{bottom:314.240000pt;}
.y3c_c00029{bottom:348.800000pt;}
.y3e_c00029{bottom:349.440000pt;}
.y3d_c00029{bottom:350.080000pt;}
.y3f_c00029{bottom:351.360000pt;}
.y3b_c00029{bottom:352.000000pt;}
.y3a_c00029{bottom:352.640000pt;}
.y37_c00029{bottom:386.560000pt;}
.y38_c00029{bottom:387.200000pt;}
.y36_c00029{bottom:387.840000pt;}
.y34_c00029{bottom:389.120000pt;}
.y35_c00029{bottom:389.760000pt;}
.y39_c00029{bottom:390.400000pt;}
.y31_c00029{bottom:424.960000pt;}
.y32_c00029{bottom:425.600000pt;}
.y30_c00029{bottom:427.520000pt;}
.y33_c00029{bottom:428.160000pt;}
.y2f_c00029{bottom:463.360000pt;}
.y2d_c00029{bottom:465.280000pt;}
.y2e_c00029{bottom:465.920000pt;}
.y2a_c00029{bottom:500.480000pt;}
.y2c_c00029{bottom:501.120000pt;}
.y2b_c00029{bottom:501.760000pt;}
.y29_c00029{bottom:503.040000pt;}
.y28_c00029{bottom:503.680000pt;}
.y27_c00029{bottom:538.880000pt;}
.y25_c00029{bottom:540.800000pt;}
.y26_c00029{bottom:541.440000pt;}
.y23_c00029{bottom:586.240000pt;}
.y24_c00029{bottom:588.160000pt;}
.y22_c00029{bottom:624.000000pt;}
.y20_c00029{bottom:626.560000pt;}
.y21_c00029{bottom:627.200000pt;}
.y1b_c00029{bottom:661.760000pt;}
.y1c_c00029{bottom:662.400000pt;}
.y1f_c00029{bottom:663.040000pt;}
.y1d_c00029{bottom:664.320000pt;}
.y1e_c00029{bottom:664.960000pt;}
.y19_c00029{bottom:700.160000pt;}
.y18_c00029{bottom:700.800000pt;}
.y17_c00029{bottom:702.080000pt;}
.y1a_c00029{bottom:702.720000pt;}
.y14_c00029{bottom:737.920000pt;}
.y13_c00029{bottom:738.560000pt;}
.y15_c00029{bottom:740.480000pt;}
.y16_c00029{bottom:741.120000pt;}
.ye_c00029{bottom:775.040000pt;}
.yf_c00029{bottom:775.680000pt;}
.y10_c00029{bottom:776.320000pt;}
.y12_c00029{bottom:778.240000pt;}
.y11_c00029{bottom:778.880000pt;}
.y9_c00029{bottom:813.440000pt;}
.yd_c00029{bottom:814.080000pt;}
.ya_c00029{bottom:814.720000pt;}
.yc_c00029{bottom:816.000000pt;}
.yb_c00029{bottom:816.640000pt;}
.y6_c00029{bottom:853.760000pt;}
.y7_c00029{bottom:854.400000pt;}
.y8_c00029{bottom:855.040000pt;}
.y2_c00029{bottom:889.600000pt;}
.y4_c00029{bottom:892.160000pt;}
.y3_c00029{bottom:892.800000pt;}
.y5_c00029{bottom:893.440000pt;}
.y1_c00029{bottom:955.520000pt;}
.h8_c00029{height:27.645000pt;}
.h7_c00029{height:29.948750pt;}
.he_c00029{height:34.556250pt;}
.h6_c00029{height:36.860000pt;}
.h4_c00029{height:39.163750pt;}
.h5_c00029{height:41.467500pt;}
.h9_c00029{height:43.771250pt;}
.hd_c00029{height:46.075000pt;}
.ha_c00029{height:48.378750pt;}
.h3_c00029{height:50.682500pt;}
.hc_c00029{height:52.986250pt;}
.hb_c00029{height:55.290000pt;}
.h2_c00029{height:59.897500pt;}
.h1_c00029{height:1022.666667pt;}
.h0_c00029{height:1022.720000pt;}
.w0_c00029{width:723.840000pt;}
.w1_c00029{width:724.000000pt;}
.x0_c00029{left:0.000000pt;}
.x40_c00029{left:78.720000pt;}
.xa_c00029{left:80.000000pt;}
.x2c_c00029{left:81.920000pt;}
.x42_c00029{left:107.520000pt;}
.x31_c00029{left:109.440000pt;}
.x13_c00029{left:117.760000pt;}
.x4d_c00029{left:127.360000pt;}
.x1b_c00029{left:136.960000pt;}
.x3a_c00029{left:138.240000pt;}
.x58_c00029{left:145.920000pt;}
.x46_c00029{left:156.800000pt;}
.x22_c00029{left:165.120000pt;}
.x2d_c00029{left:167.040000pt;}
.x38_c00029{left:175.360000pt;}
.x2_c00029{left:176.640000pt;}
.x29_c00029{left:184.960000pt;}
.x32_c00029{left:193.920000pt;}
.xb_c00029{left:195.200000pt;}
.x14_c00029{left:204.160000pt;}
.x43_c00029{left:206.720000pt;}
.x59_c00029{left:222.080000pt;}
.x2a_c00029{left:223.360000pt;}
.x48_c00029{left:232.320000pt;}
.x2e_c00029{left:234.240000pt;}
.x33_c00029{left:241.920000pt;}
.xc_c00029{left:252.160000pt;}
.x4e_c00029{left:261.120000pt;}
.x3b_c00029{left:262.400000pt;}
.x3_c00029{left:270.720000pt;}
.x1c_c00029{left:272.000000pt;}
.x15_c00029{left:280.320000pt;}
.x4a_c00029{left:282.240000pt;}
.xd_c00029{left:289.920000pt;}
.x3c_c00029{left:298.880000pt;}
.x23_c00029{left:300.160000pt;}
.x1d_c00029{left:318.720000pt;}
.x4_c00029{left:328.960000pt;}
.x16_c00029{left:337.920000pt;}
.x1e_c00029{left:348.160000pt;}
.xe_c00029{left:357.120000pt;}
.x5_c00029{left:358.400000pt;}
.x34_c00029{left:366.080000pt;}
.x4b_c00029{left:368.000000pt;}
.x2f_c00029{left:376.320000pt;}
.x49_c00029{left:384.640000pt;}
.xf_c00029{left:385.920000pt;}
.x6_c00029{left:396.160000pt;}
.x5a_c00029{left:404.480000pt;}
.x17_c00029{left:406.400000pt;}
.x10_c00029{left:414.720000pt;}
.x44_c00029{left:416.000000pt;}
.x24_c00029{left:424.320000pt;}
.x4f_c00029{left:426.240000pt;}
.x4c_c00029{left:433.280000pt;}
.x1f_c00029{left:434.560000pt;}
.x57_c00029{left:442.240000pt;}
.x30_c00029{left:453.120000pt;}
.x52_c00029{left:460.800000pt;}
.x25_c00029{left:462.080000pt;}
.x45_c00029{left:471.680000pt;}
.x18_c00029{left:491.520000pt;}
.x7_c00029{left:501.120000pt;}
.x5b_c00029{left:502.400000pt;}
.x35_c00029{left:510.720000pt;}
.x11_c00029{left:512.640000pt;}
.x53_c00029{left:519.040000pt;}
.x19_c00029{left:520.320000pt;}
.x20_c00029{left:522.880000pt;}
.x26_c00029{left:529.920000pt;}
.x36_c00029{left:537.600000pt;}
.x2b_c00029{left:539.520000pt;}
.x3f_c00029{left:540.800000pt;}
.x8_c00029{left:549.120000pt;}
.x27_c00029{left:558.080000pt;}
.x50_c00029{left:559.360000pt;}
.x39_c00029{left:567.680000pt;}
.x12_c00029{left:568.960000pt;}
.x56_c00029{left:576.640000pt;}
.x3d_c00029{left:577.920000pt;}
.x54_c00029{left:586.240000pt;}
.x21_c00029{left:588.160000pt;}
.x1a_c00029{left:590.080000pt;}
.x51_c00029{left:597.120000pt;}
.x41_c00029{left:606.720000pt;}
.x47_c00029{left:616.320000pt;}
.x55_c00029{left:624.000000pt;}
.x37_c00029{left:625.920000pt;}
.x9_c00029{left:627.200000pt;}
.x3e_c00029{left:635.520000pt;}
.x28_c00029{left:645.760000pt;}
.x1_c00029{left:655.360000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_dbce88fb8c9a7f79a1a32a9a.woff2')format("woff");}.ff1_c00030{font-family:ff1_c00030;line-height:1.109863;font-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_c00030{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);}
.m52_c00030{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mf_c00030{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m14_c00030{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);}
.m34_c00030{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);}
.m47_c00030{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m10_c00030{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00030{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m6_c00030{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m5_c00030{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00030{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mb_c00030{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m0_c00030{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m51_c00030{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m9_c00030{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);}
.m2e_c00030{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m2_c00030{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m16_c00030{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);}
.m35_c00030{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00030{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);}
.m36_c00030{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00030{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.md_c00030{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m37_c00030{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);}
.m2a_c00030{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);}
.m46_c00030{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m30_c00030{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m8_c00030{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);}
.m45_c00030{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);}
.m4c_c00030{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);}
.m4e_c00030{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m4_c00030{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);}
.m3f_c00030{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m13_c00030{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);}
.m43_c00030{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00030{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00030{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);}
.m53_c00030{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00030{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);}
.m19_c00030{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);}
.m2b_c00030{transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);}
.m1_c00030{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m20_c00030{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m24_c00030{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00030{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m28_c00030{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);}
.m49_c00030{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00030{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m33_c00030{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);}
.m3_c00030{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);}
.m7_c00030{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00030{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m27_c00030{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m12_c00030{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m25_c00030{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);}
.m2c_c00030{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m22_c00030{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m31_c00030{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);}
.m15_c00030{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m11_c00030{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m26_c00030{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);}
.m3e_c00030{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m44_c00030{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);}
.me_c00030{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m42_c00030{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m41_c00030{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m29_c00030{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);}
.m38_c00030{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m40_c00030{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00030{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00030{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00030{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);}
.m39_c00030{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m48_c00030{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m21_c00030{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m23_c00030{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00030{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m56_c00030{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m54_c00030{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);}
.m1a_c00030{transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00030{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m50_c00030{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m18_c00030{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m32_c00030{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00030{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);}
.m17_c00030{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m55_c00030{transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);}
.v0_c00030{vertical-align:0.000000px;}
.v1_c00030{vertical-align:2.880000px;}
.ls0_c00030{letter-spacing:0.000000px;}
.sc__c00030{text-shadow:none;}
.sc0_c00030{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00030{-webkit-text-stroke:0px transparent;}
.sc0_c00030{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00030{word-spacing:0.000000px;}
.ws0_c00030{word-spacing:2.425440px;}
.fc0_c00030{color:transparent;}
.fsa_c00030{font-size:34.560000px;}
.fs9_c00030{font-size:37.440000px;}
.fsc_c00030{font-size:40.320000px;}
.fs8_c00030{font-size:46.080000px;}
.fs5_c00030{font-size:48.960000px;}
.fs3_c00030{font-size:51.840000px;}
.fs1_c00030{font-size:54.720000px;}
.fs6_c00030{font-size:57.600000px;}
.fs2_c00030{font-size:60.480000px;}
.fsb_c00030{font-size:63.360000px;}
.fs7_c00030{font-size:66.240000px;}
.fs4_c00030{font-size:69.120000px;}
.fs0_c00030{font-size:72.000000px;}
.y0_c00030{bottom:0.000000px;}
.y5d_c00030{bottom:27.360000px;}
.y5c_c00030{bottom:30.240000px;}
.y5b_c00030{bottom:68.400000px;}
.y59_c00030{bottom:69.120000px;}
.y5a_c00030{bottom:71.280000px;}
.y58_c00030{bottom:72.000000px;}
.y54_c00030{bottom:110.880000px;}
.y55_c00030{bottom:112.320000px;}
.y57_c00030{bottom:113.040000px;}
.y56_c00030{bottom:114.480000px;}
.y50_c00030{bottom:153.360000px;}
.y52_c00030{bottom:154.080000px;}
.y4f_c00030{bottom:154.800000px;}
.y53_c00030{bottom:156.240000px;}
.y51_c00030{bottom:156.960000px;}
.y4e_c00030{bottom:157.680000px;}
.y4d_c00030{bottom:198.720000px;}
.y4c_c00030{bottom:199.440000px;}
.y48_c00030{bottom:238.320000px;}
.y4a_c00030{bottom:239.760000px;}
.y4b_c00030{bottom:241.920000px;}
.y49_c00030{bottom:242.640000px;}
.y47_c00030{bottom:294.480000px;}
.y46_c00030{bottom:334.080000px;}
.y44_c00030{bottom:335.520000px;}
.y45_c00030{bottom:336.960000px;}
.y42_c00030{bottom:337.680000px;}
.y43_c00030{bottom:338.400000px;}
.y40_c00030{bottom:378.000000px;}
.y41_c00030{bottom:380.160000px;}
.y3f_c00030{bottom:381.600000px;}
.y3c_c00030{bottom:420.480000px;}
.y3d_c00030{bottom:421.200000px;}
.y3e_c00030{bottom:421.920000px;}
.y3b_c00030{bottom:422.640000px;}
.y3a_c00030{bottom:423.360000px;}
.y37_c00030{bottom:462.960000px;}
.y38_c00030{bottom:465.120000px;}
.y39_c00030{bottom:465.840000px;}
.y35_c00030{bottom:515.520000px;}
.y36_c00030{bottom:516.240000px;}
.y33_c00030{bottom:518.400000px;}
.y32_c00030{bottom:519.120000px;}
.y34_c00030{bottom:519.840000px;}
.y31_c00030{bottom:558.000000px;}
.y2f_c00030{bottom:558.720000px;}
.y30_c00030{bottom:561.600000px;}
.y2e_c00030{bottom:562.320000px;}
.y2d_c00030{bottom:601.200000px;}
.y2b_c00030{bottom:601.920000px;}
.y2c_c00030{bottom:604.080000px;}
.y2a_c00030{bottom:604.800000px;}
.y27_c00030{bottom:644.400000px;}
.y29_c00030{bottom:645.120000px;}
.y28_c00030{bottom:646.560000px;}
.y26_c00030{bottom:647.280000px;}
.y25_c00030{bottom:648.000000px;}
.y23_c00030{bottom:686.160000px;}
.y24_c00030{bottom:686.880000px;}
.y22_c00030{bottom:689.760000px;}
.y21_c00030{bottom:690.480000px;}
.y1e_c00030{bottom:729.360000px;}
.y1f_c00030{bottom:730.080000px;}
.y1d_c00030{bottom:732.240000px;}
.y20_c00030{bottom:732.960000px;}
.y1b_c00030{bottom:783.360000px;}
.y1c_c00030{bottom:784.800000px;}
.y19_c00030{bottom:785.520000px;}
.y1a_c00030{bottom:786.240000px;}
.y18_c00030{bottom:825.840000px;}
.y16_c00030{bottom:828.000000px;}
.y17_c00030{bottom:828.720000px;}
.y14_c00030{bottom:867.600000px;}
.y15_c00030{bottom:868.320000px;}
.y11_c00030{bottom:870.480000px;}
.y12_c00030{bottom:871.200000px;}
.y13_c00030{bottom:871.920000px;}
.yf_c00030{bottom:910.080000px;}
.yd_c00030{bottom:910.800000px;}
.yc_c00030{bottom:911.520000px;}
.ye_c00030{bottom:913.680000px;}
.y10_c00030{bottom:914.400000px;}
.y7_c00030{bottom:952.560000px;}
.y8_c00030{bottom:953.280000px;}
.yb_c00030{bottom:954.000000px;}
.ya_c00030{bottom:956.160000px;}
.y9_c00030{bottom:956.880000px;}
.y5_c00030{bottom:995.760000px;}
.y3_c00030{bottom:996.480000px;}
.y6_c00030{bottom:997.920000px;}
.y2_c00030{bottom:998.640000px;}
.y4_c00030{bottom:999.360000px;}
.y1_c00030{bottom:1064.160000px;}
.hc_c00030{height:31.100625px;}
.hb_c00030{height:33.692344px;}
.he_c00030{height:36.284062px;}
.ha_c00030{height:41.467500px;}
.h7_c00030{height:44.059219px;}
.h5_c00030{height:46.650937px;}
.h3_c00030{height:49.242656px;}
.h8_c00030{height:51.834375px;}
.h4_c00030{height:54.426094px;}
.hd_c00030{height:57.017812px;}
.h9_c00030{height:59.609531px;}
.h6_c00030{height:62.201250px;}
.h2_c00030{height:64.792969px;}
.hf_c00030{height:65.081250px;}
.h1_c00030{height:1149.000000px;}
.h0_c00030{height:1149.120000px;}
.w0_c00030{width:813.600000px;}
.w1_c00030{width:813.750000px;}
.x0_c00030{left:0.000000px;}
.x23_c00030{left:86.400000px;}
.x2_c00030{left:87.840000px;}
.x34_c00030{left:89.280000px;}
.x46_c00030{left:109.440000px;}
.x3_c00030{left:131.040000px;}
.x35_c00030{left:152.640000px;}
.x47_c00030{left:163.440000px;}
.xc_c00030{left:174.960000px;}
.x4e_c00030{left:183.600000px;}
.x4_c00030{left:185.040000px;}
.x42_c00030{left:194.400000px;}
.x29_c00030{left:196.560000px;}
.x24_c00030{left:205.920000px;}
.x19_c00030{left:207.360000px;}
.x3f_c00030{left:216.000000px;}
.x15_c00030{left:220.320000px;}
.x30_c00030{left:227.520000px;}
.x5_c00030{left:228.960000px;}
.x36_c00030{left:237.600000px;}
.x1a_c00030{left:239.760000px;}
.x3d_c00030{left:259.200000px;}
.x25_c00030{left:261.360000px;}
.x1b_c00030{left:270.000000px;}
.x31_c00030{left:272.160000px;}
.xd_c00030{left:282.240000px;}
.x40_c00030{left:303.120000px;}
.x2c_c00030{left:313.200000px;}
.x16_c00030{left:315.360000px;}
.x6_c00030{left:316.800000px;}
.x20_c00030{left:324.000000px;}
.xe_c00030{left:325.440000px;}
.x37_c00030{left:335.520000px;}
.x1c_c00030{left:357.120000px;}
.x2d_c00030{left:367.920000px;}
.x43_c00030{left:378.720000px;}
.x4b_c00030{left:388.800000px;}
.xf_c00030{left:390.240000px;}
.x38_c00030{left:399.600000px;}
.x41_c00030{left:401.040000px;}
.x7_c00030{left:410.400000px;}
.x26_c00030{left:421.200000px;}
.x3e_c00030{left:432.000000px;}
.x39_c00030{left:433.440000px;}
.x49_c00030{left:442.800000px;}
.x50_c00030{left:444.240000px;}
.x10_c00030{left:446.400000px;}
.x32_c00030{left:453.600000px;}
.x17_c00030{left:464.400000px;}
.x4a_c00030{left:474.480000px;}
.x2a_c00030{left:475.920000px;}
.x44_c00030{left:486.000000px;}
.x8_c00030{left:496.800000px;}
.x2e_c00030{left:508.320000px;}
.x9_c00030{left:519.120000px;}
.x4f_c00030{left:528.480000px;}
.x1d_c00030{left:529.920000px;}
.x27_c00030{left:540.000000px;}
.x3a_c00030{left:550.800000px;}
.xa_c00030{left:552.240000px;}
.x11_c00030{left:561.600000px;}
.x21_c00030{left:572.400000px;}
.x3b_c00030{left:582.480000px;}
.x33_c00030{left:594.000000px;}
.x18_c00030{left:604.800000px;}
.x1e_c00030{left:615.600000px;}
.x4d_c00030{left:624.960000px;}
.x3c_c00030{left:626.400000px;}
.x28_c00030{left:636.480000px;}
.x12_c00030{left:648.000000px;}
.x48_c00030{left:649.440000px;}
.xb_c00030{left:651.600000px;}
.x22_c00030{left:658.800000px;}
.x4c_c00030{left:668.880000px;}
.x13_c00030{left:670.320000px;}
.x45_c00030{left:680.400000px;}
.x2b_c00030{left:691.200000px;}
.x2f_c00030{left:692.640000px;}
.x1f_c00030{left:702.720000px;}
.x14_c00030{left:712.800000px;}
.x1_c00030{left:725.760000px;}
@media print{
.v0_c00030{vertical-align:0.000000pt;}
.v1_c00030{vertical-align:2.560000pt;}
.ls0_c00030{letter-spacing:0.000000pt;}
.ws1_c00030{word-spacing:0.000000pt;}
.ws0_c00030{word-spacing:2.155947pt;}
.fsa_c00030{font-size:30.720000pt;}
.fs9_c00030{font-size:33.280000pt;}
.fsc_c00030{font-size:35.840000pt;}
.fs8_c00030{font-size:40.960000pt;}
.fs5_c00030{font-size:43.520000pt;}
.fs3_c00030{font-size:46.080000pt;}
.fs1_c00030{font-size:48.640000pt;}
.fs6_c00030{font-size:51.200000pt;}
.fs2_c00030{font-size:53.760000pt;}
.fsb_c00030{font-size:56.320000pt;}
.fs7_c00030{font-size:58.880000pt;}
.fs4_c00030{font-size:61.440000pt;}
.fs0_c00030{font-size:64.000000pt;}
.y0_c00030{bottom:0.000000pt;}
.y5d_c00030{bottom:24.320000pt;}
.y5c_c00030{bottom:26.880000pt;}
.y5b_c00030{bottom:60.800000pt;}
.y59_c00030{bottom:61.440000pt;}
.y5a_c00030{bottom:63.360000pt;}
.y58_c00030{bottom:64.000000pt;}
.y54_c00030{bottom:98.560000pt;}
.y55_c00030{bottom:99.840000pt;}
.y57_c00030{bottom:100.480000pt;}
.y56_c00030{bottom:101.760000pt;}
.y50_c00030{bottom:136.320000pt;}
.y52_c00030{bottom:136.960000pt;}
.y4f_c00030{bottom:137.600000pt;}
.y53_c00030{bottom:138.880000pt;}
.y51_c00030{bottom:139.520000pt;}
.y4e_c00030{bottom:140.160000pt;}
.y4d_c00030{bottom:176.640000pt;}
.y4c_c00030{bottom:177.280000pt;}
.y48_c00030{bottom:211.840000pt;}
.y4a_c00030{bottom:213.120000pt;}
.y4b_c00030{bottom:215.040000pt;}
.y49_c00030{bottom:215.680000pt;}
.y47_c00030{bottom:261.760000pt;}
.y46_c00030{bottom:296.960000pt;}
.y44_c00030{bottom:298.240000pt;}
.y45_c00030{bottom:299.520000pt;}
.y42_c00030{bottom:300.160000pt;}
.y43_c00030{bottom:300.800000pt;}
.y40_c00030{bottom:336.000000pt;}
.y41_c00030{bottom:337.920000pt;}
.y3f_c00030{bottom:339.200000pt;}
.y3c_c00030{bottom:373.760000pt;}
.y3d_c00030{bottom:374.400000pt;}
.y3e_c00030{bottom:375.040000pt;}
.y3b_c00030{bottom:375.680000pt;}
.y3a_c00030{bottom:376.320000pt;}
.y37_c00030{bottom:411.520000pt;}
.y38_c00030{bottom:413.440000pt;}
.y39_c00030{bottom:414.080000pt;}
.y35_c00030{bottom:458.240000pt;}
.y36_c00030{bottom:458.880000pt;}
.y33_c00030{bottom:460.800000pt;}
.y32_c00030{bottom:461.440000pt;}
.y34_c00030{bottom:462.080000pt;}
.y31_c00030{bottom:496.000000pt;}
.y2f_c00030{bottom:496.640000pt;}
.y30_c00030{bottom:499.200000pt;}
.y2e_c00030{bottom:499.840000pt;}
.y2d_c00030{bottom:534.400000pt;}
.y2b_c00030{bottom:535.040000pt;}
.y2c_c00030{bottom:536.960000pt;}
.y2a_c00030{bottom:537.600000pt;}
.y27_c00030{bottom:572.800000pt;}
.y29_c00030{bottom:573.440000pt;}
.y28_c00030{bottom:574.720000pt;}
.y26_c00030{bottom:575.360000pt;}
.y25_c00030{bottom:576.000000pt;}
.y23_c00030{bottom:609.920000pt;}
.y24_c00030{bottom:610.560000pt;}
.y22_c00030{bottom:613.120000pt;}
.y21_c00030{bottom:613.760000pt;}
.y1e_c00030{bottom:648.320000pt;}
.y1f_c00030{bottom:648.960000pt;}
.y1d_c00030{bottom:650.880000pt;}
.y20_c00030{bottom:651.520000pt;}
.y1b_c00030{bottom:696.320000pt;}
.y1c_c00030{bottom:697.600000pt;}
.y19_c00030{bottom:698.240000pt;}
.y1a_c00030{bottom:698.880000pt;}
.y18_c00030{bottom:734.080000pt;}
.y16_c00030{bottom:736.000000pt;}
.y17_c00030{bottom:736.640000pt;}
.y14_c00030{bottom:771.200000pt;}
.y15_c00030{bottom:771.840000pt;}
.y11_c00030{bottom:773.760000pt;}
.y12_c00030{bottom:774.400000pt;}
.y13_c00030{bottom:775.040000pt;}
.yf_c00030{bottom:808.960000pt;}
.yd_c00030{bottom:809.600000pt;}
.yc_c00030{bottom:810.240000pt;}
.ye_c00030{bottom:812.160000pt;}
.y10_c00030{bottom:812.800000pt;}
.y7_c00030{bottom:846.720000pt;}
.y8_c00030{bottom:847.360000pt;}
.yb_c00030{bottom:848.000000pt;}
.ya_c00030{bottom:849.920000pt;}
.y9_c00030{bottom:850.560000pt;}
.y5_c00030{bottom:885.120000pt;}
.y3_c00030{bottom:885.760000pt;}
.y6_c00030{bottom:887.040000pt;}
.y2_c00030{bottom:887.680000pt;}
.y4_c00030{bottom:888.320000pt;}
.y1_c00030{bottom:945.920000pt;}
.hc_c00030{height:27.645000pt;}
.hb_c00030{height:29.948750pt;}
.he_c00030{height:32.252500pt;}
.ha_c00030{height:36.860000pt;}
.h7_c00030{height:39.163750pt;}
.h5_c00030{height:41.467500pt;}
.h3_c00030{height:43.771250pt;}
.h8_c00030{height:46.075000pt;}
.h4_c00030{height:48.378750pt;}
.hd_c00030{height:50.682500pt;}
.h9_c00030{height:52.986250pt;}
.h6_c00030{height:55.290000pt;}
.h2_c00030{height:57.593750pt;}
.hf_c00030{height:57.850000pt;}
.h1_c00030{height:1021.333333pt;}
.h0_c00030{height:1021.440000pt;}
.w0_c00030{width:723.200000pt;}
.w1_c00030{width:723.333333pt;}
.x0_c00030{left:0.000000pt;}
.x23_c00030{left:76.800000pt;}
.x2_c00030{left:78.080000pt;}
.x34_c00030{left:79.360000pt;}
.x46_c00030{left:97.280000pt;}
.x3_c00030{left:116.480000pt;}
.x35_c00030{left:135.680000pt;}
.x47_c00030{left:145.280000pt;}
.xc_c00030{left:155.520000pt;}
.x4e_c00030{left:163.200000pt;}
.x4_c00030{left:164.480000pt;}
.x42_c00030{left:172.800000pt;}
.x29_c00030{left:174.720000pt;}
.x24_c00030{left:183.040000pt;}
.x19_c00030{left:184.320000pt;}
.x3f_c00030{left:192.000000pt;}
.x15_c00030{left:195.840000pt;}
.x30_c00030{left:202.240000pt;}
.x5_c00030{left:203.520000pt;}
.x36_c00030{left:211.200000pt;}
.x1a_c00030{left:213.120000pt;}
.x3d_c00030{left:230.400000pt;}
.x25_c00030{left:232.320000pt;}
.x1b_c00030{left:240.000000pt;}
.x31_c00030{left:241.920000pt;}
.xd_c00030{left:250.880000pt;}
.x40_c00030{left:269.440000pt;}
.x2c_c00030{left:278.400000pt;}
.x16_c00030{left:280.320000pt;}
.x6_c00030{left:281.600000pt;}
.x20_c00030{left:288.000000pt;}
.xe_c00030{left:289.280000pt;}
.x37_c00030{left:298.240000pt;}
.x1c_c00030{left:317.440000pt;}
.x2d_c00030{left:327.040000pt;}
.x43_c00030{left:336.640000pt;}
.x4b_c00030{left:345.600000pt;}
.xf_c00030{left:346.880000pt;}
.x38_c00030{left:355.200000pt;}
.x41_c00030{left:356.480000pt;}
.x7_c00030{left:364.800000pt;}
.x26_c00030{left:374.400000pt;}
.x3e_c00030{left:384.000000pt;}
.x39_c00030{left:385.280000pt;}
.x49_c00030{left:393.600000pt;}
.x50_c00030{left:394.880000pt;}
.x10_c00030{left:396.800000pt;}
.x32_c00030{left:403.200000pt;}
.x17_c00030{left:412.800000pt;}
.x4a_c00030{left:421.760000pt;}
.x2a_c00030{left:423.040000pt;}
.x44_c00030{left:432.000000pt;}
.x8_c00030{left:441.600000pt;}
.x2e_c00030{left:451.840000pt;}
.x9_c00030{left:461.440000pt;}
.x4f_c00030{left:469.760000pt;}
.x1d_c00030{left:471.040000pt;}
.x27_c00030{left:480.000000pt;}
.x3a_c00030{left:489.600000pt;}
.xa_c00030{left:490.880000pt;}
.x11_c00030{left:499.200000pt;}
.x21_c00030{left:508.800000pt;}
.x3b_c00030{left:517.760000pt;}
.x33_c00030{left:528.000000pt;}
.x18_c00030{left:537.600000pt;}
.x1e_c00030{left:547.200000pt;}
.x4d_c00030{left:555.520000pt;}
.x3c_c00030{left:556.800000pt;}
.x28_c00030{left:565.760000pt;}
.x12_c00030{left:576.000000pt;}
.x48_c00030{left:577.280000pt;}
.xb_c00030{left:579.200000pt;}
.x22_c00030{left:585.600000pt;}
.x4c_c00030{left:594.560000pt;}
.x13_c00030{left:595.840000pt;}
.x45_c00030{left:604.800000pt;}
.x2b_c00030{left:614.400000pt;}
.x2f_c00030{left:615.680000pt;}
.x1f_c00030{left:624.640000pt;}
.x14_c00030{left:633.600000pt;}
.x1_c00030{left:645.120000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0a2c4e33a45bba586d50a095.woff2')format("woff");}.ff1_c00031{font-family:ff1_c00031;line-height:1.109863;font-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_c00031{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m16_c00031{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00031{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);}
.m54_c00031{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);}
.m3f_c00031{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m47_c00031{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m55_c00031{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m26_c00031{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m0_c00031{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m18_c00031{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00031{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m22_c00031{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00031{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);}
.m39_c00031{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m41_c00031{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m17_c00031{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00031{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);}
.m34_c00031{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00031{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m6_c00031{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m33_c00031{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);}
.m3d_c00031{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m13_c00031{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);}
.m3a_c00031{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m10_c00031{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00031{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.ma_c00031{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);}
.m5a_c00031{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);}
.m31_c00031{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);}
.m4f_c00031{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00031{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);}
.m58_c00031{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m51_c00031{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);}
.m2_c00031{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);}
.m1e_c00031{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);}
.m1d_c00031{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m57_c00031{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m36_c00031{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m53_c00031{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);}
.m4_c00031{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m24_c00031{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m25_c00031{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);}
.m49_c00031{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m12_c00031{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m42_c00031{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m1_c00031{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m48_c00031{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);}
.m37_c00031{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m32_c00031{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m23_c00031{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);}
.m14_c00031{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m45_c00031{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);}
.m3b_c00031{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00031{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m28_c00031{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m8_c00031{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);}
.m38_c00031{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00031{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m52_c00031{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m44_c00031{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);}
.m30_c00031{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m9_c00031{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.md_c00031{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00031{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m3_c00031{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);}
.m5_c00031{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);}
.m46_c00031{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m19_c00031{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m35_c00031{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.mc_c00031{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00031{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.mb_c00031{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);}
.m11_c00031{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00031{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.me_c00031{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00031{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m20_c00031{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m7_c00031{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);}
.m1c_c00031{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);}
.m56_c00031{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m21_c00031{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m27_c00031{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m29_c00031{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m40_c00031{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00031{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);}
.m3e_c00031{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);}
.m2b_c00031{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m59_c00031{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);}
.m50_c00031{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00031{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00031{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m43_c00031{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.mf_c00031{transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);}
.m15_c00031{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.v0_c00031{vertical-align:0.000000px;}
.v1_c00031{vertical-align:8.640000px;}
.ls0_c00031{letter-spacing:0.000000px;}
.sc__c00031{text-shadow:none;}
.sc0_c00031{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00031{-webkit-text-stroke:0px transparent;}
.sc0_c00031{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00031{word-spacing:-0.760320px;}
.ws1_c00031{word-spacing:0.000000px;}
.fc0_c00031{color:transparent;}
.fs6_c00031{font-size:34.560000px;}
.fs4_c00031{font-size:37.440000px;}
.fsc_c00031{font-size:40.320000px;}
.fs9_c00031{font-size:43.200000px;}
.fs1_c00031{font-size:46.080000px;}
.fs5_c00031{font-size:48.960000px;}
.fs3_c00031{font-size:51.840000px;}
.fs8_c00031{font-size:54.720000px;}
.fsa_c00031{font-size:57.600000px;}
.fs2_c00031{font-size:60.480000px;}
.fs7_c00031{font-size:63.360000px;}
.fsb_c00031{font-size:66.240000px;}
.fs0_c00031{font-size:69.120000px;}
.fsd_c00031{font-size:74.880000px;}
.y0_c00031{bottom:0.000000px;}
.y5e_c00031{bottom:38.160000px;}
.y5f_c00031{bottom:38.880000px;}
.y60_c00031{bottom:40.320000px;}
.y5c_c00031{bottom:41.760000px;}
.y5d_c00031{bottom:42.480000px;}
.y5b_c00031{bottom:79.920000px;}
.y5a_c00031{bottom:81.360000px;}
.y59_c00031{bottom:83.520000px;}
.y58_c00031{bottom:84.240000px;}
.y52_c00031{bottom:123.120000px;}
.y53_c00031{bottom:123.840000px;}
.y55_c00031{bottom:124.560000px;}
.y57_c00031{bottom:125.280000px;}
.y56_c00031{bottom:126.000000px;}
.y54_c00031{bottom:126.720000px;}
.y4f_c00031{bottom:165.600000px;}
.y51_c00031{bottom:166.320000px;}
.y4d_c00031{bottom:167.040000px;}
.y4e_c00031{bottom:168.480000px;}
.y50_c00031{bottom:169.920000px;}
.y4c_c00031{bottom:210.960000px;}
.y4a_c00031{bottom:211.680000px;}
.y4b_c00031{bottom:212.400000px;}
.y49_c00031{bottom:262.080000px;}
.y47_c00031{bottom:262.800000px;}
.y48_c00031{bottom:265.680000px;}
.y44_c00031{bottom:305.280000px;}
.y46_c00031{bottom:307.440000px;}
.y45_c00031{bottom:308.160000px;}
.y43_c00031{bottom:308.880000px;}
.y41_c00031{bottom:347.040000px;}
.y40_c00031{bottom:347.760000px;}
.y42_c00031{bottom:349.920000px;}
.y3e_c00031{bottom:350.640000px;}
.y3f_c00031{bottom:351.360000px;}
.y3d_c00031{bottom:388.800000px;}
.y3c_c00031{bottom:389.520000px;}
.y39_c00031{bottom:390.240000px;}
.y3b_c00031{bottom:392.400000px;}
.y3a_c00031{bottom:393.120000px;}
.y37_c00031{bottom:432.000000px;}
.y36_c00031{bottom:432.720000px;}
.y38_c00031{bottom:434.880000px;}
.y35_c00031{bottom:435.600000px;}
.y34_c00031{bottom:473.760000px;}
.y33_c00031{bottom:475.920000px;}
.y32_c00031{bottom:478.080000px;}
.y31_c00031{bottom:478.800000px;}
.y30_c00031{bottom:530.640000px;}
.y2f_c00031{bottom:531.360000px;}
.y2e_c00031{bottom:532.080000px;}
.y2d_c00031{bottom:570.960000px;}
.y2b_c00031{bottom:571.680000px;}
.y2c_c00031{bottom:573.840000px;}
.y2a_c00031{bottom:574.560000px;}
.y29_c00031{bottom:613.440000px;}
.y28_c00031{bottom:614.160000px;}
.y27_c00031{bottom:617.040000px;}
.y25_c00031{bottom:656.640000px;}
.y23_c00031{bottom:657.360000px;}
.y22_c00031{bottom:658.080000px;}
.y26_c00031{bottom:658.800000px;}
.y24_c00031{bottom:659.520000px;}
.y21_c00031{bottom:660.240000px;}
.y1f_c00031{bottom:699.120000px;}
.y1d_c00031{bottom:699.840000px;}
.y1e_c00031{bottom:702.000000px;}
.y20_c00031{bottom:702.720000px;}
.y1b_c00031{bottom:744.480000px;}
.y1c_c00031{bottom:745.200000px;}
.y19_c00031{bottom:784.800000px;}
.y1a_c00031{bottom:786.960000px;}
.y17_c00031{bottom:787.680000px;}
.y18_c00031{bottom:788.400000px;}
.y15_c00031{bottom:828.000000px;}
.y16_c00031{bottom:828.720000px;}
.y12_c00031{bottom:830.160000px;}
.y14_c00031{bottom:830.880000px;}
.y13_c00031{bottom:831.600000px;}
.ye_c00031{bottom:870.480000px;}
.y11_c00031{bottom:871.200000px;}
.yf_c00031{bottom:873.360000px;}
.y10_c00031{bottom:874.080000px;}
.yd_c00031{bottom:913.680000px;}
.y9_c00031{bottom:915.120000px;}
.yb_c00031{bottom:915.840000px;}
.yc_c00031{bottom:916.560000px;}
.ya_c00031{bottom:917.280000px;}
.y7_c00031{bottom:956.160000px;}
.y5_c00031{bottom:958.320000px;}
.y6_c00031{bottom:959.040000px;}
.y8_c00031{bottom:959.760000px;}
.y4_c00031{bottom:999.360000px;}
.y3_c00031{bottom:1001.520000px;}
.y2_c00031{bottom:1002.240000px;}
.y1_c00031{bottom:1070.640000px;}
.h8_c00031{height:31.100625px;}
.h6_c00031{height:33.692344px;}
.hf_c00031{height:36.284062px;}
.hb_c00031{height:38.875781px;}
.h3_c00031{height:41.467500px;}
.h7_c00031{height:44.059219px;}
.h5_c00031{height:46.650937px;}
.ha_c00031{height:49.242656px;}
.hc_c00031{height:51.834375px;}
.h4_c00031{height:54.426094px;}
.he_c00031{height:55.290938px;}
.h9_c00031{height:57.017812px;}
.hd_c00031{height:59.609531px;}
.h2_c00031{height:62.201250px;}
.h10_c00031{height:67.384687px;}
.h1_c00031{height:1150.500000px;}
.h0_c00031{height:1150.560000px;}
.w1_c00031{width:805.500000px;}
.w0_c00031{width:805.680000px;}
.x0_c00031{left:0.000000px;}
.x65_c00031{left:79.920000px;}
.x4d_c00031{left:81.360000px;}
.xa_c00031{left:82.800000px;}
.x26_c00031{left:84.240000px;}
.x27_c00031{left:115.200000px;}
.x32_c00031{left:125.280000px;}
.x48_c00031{left:136.800000px;}
.x66_c00031{left:145.440000px;}
.x56_c00031{left:146.880000px;}
.x13_c00031{left:158.400000px;}
.x1a_c00031{left:159.840000px;}
.x49_c00031{left:167.760000px;}
.x1e_c00031{left:169.920000px;}
.x3e_c00031{left:179.280000px;}
.x59_c00031{left:188.640000px;}
.x2_c00031{left:190.800000px;}
.xb_c00031{left:201.600000px;}
.x5f_c00031{left:210.240000px;}
.x31_c00031{left:211.680000px;}
.x14_c00031{left:213.840000px;}
.x3f_c00031{left:222.480000px;}
.x3_c00031{left:223.920000px;}
.x33_c00031{left:232.560000px;}
.x2b_c00031{left:235.440000px;}
.x1f_c00031{left:244.800000px;}
.xc_c00031{left:255.600000px;}
.x57_c00031{left:264.240000px;}
.x60_c00031{left:275.040000px;}
.x4e_c00031{left:276.480000px;}
.x2c_c00031{left:287.280000px;}
.x20_c00031{left:289.440000px;}
.x3c_c00031{left:298.080000px;}
.x4f_c00031{left:308.160000px;}
.x4_c00031{left:309.600000px;}
.x1b_c00031{left:320.400000px;}
.x61_c00031{left:328.320000px;}
.x3d_c00031{left:330.480000px;}
.xd_c00031{left:331.920000px;}
.x34_c00031{left:341.280000px;}
.x15_c00031{left:342.720000px;}
.x1c_c00031{left:352.800000px;}
.x67_c00031{left:361.440000px;}
.x16_c00031{left:363.600000px;}
.x21_c00031{left:365.760000px;}
.x52_c00031{left:371.520000px;}
.x38_c00031{left:373.680000px;}
.x5a_c00031{left:383.040000px;}
.x4a_c00031{left:395.280000px;}
.x42_c00031{left:405.360000px;}
.x5_c00031{left:406.800000px;}
.x58_c00031{left:414.720000px;}
.x28_c00031{left:417.600000px;}
.x5b_c00031{left:425.520000px;}
.x2d_c00031{left:427.680000px;}
.x4b_c00031{left:437.760000px;}
.x43_c00031{left:448.560000px;}
.x6_c00031{left:450.000000px;}
.x22_c00031{left:451.440000px;}
.x39_c00031{left:458.640000px;}
.x2e_c00031{left:460.080000px;}
.x1d_c00031{left:470.880000px;}
.x53_c00031{left:479.520000px;}
.x5c_c00031{left:480.960000px;}
.xe_c00031{left:492.480000px;}
.x7_c00031{left:493.920000px;}
.x17_c00031{left:504.000000px;}
.x23_c00031{left:514.080000px;}
.x62_c00031{left:523.440000px;}
.x40_c00031{left:534.240000px;}
.xf_c00031{left:536.400000px;}
.x3a_c00031{left:545.760000px;}
.x2f_c00031{left:547.200000px;}
.x44_c00031{left:555.840000px;}
.x41_c00031{left:558.000000px;}
.x35_c00031{left:567.360000px;}
.x5d_c00031{left:576.720000px;}
.x30_c00031{left:578.880000px;}
.x54_c00031{left:598.320000px;}
.x36_c00031{left:599.760000px;}
.x8_c00031{left:602.640000px;}
.x45_c00031{left:609.840000px;}
.x29_c00031{left:611.280000px;}
.x47_c00031{left:620.640000px;}
.x10_c00031{left:622.080000px;}
.x24_c00031{left:632.880000px;}
.x55_c00031{left:635.760000px;}
.x50_c00031{left:641.520000px;}
.x2a_c00031{left:643.680000px;}
.x9_c00031{left:645.120000px;}
.x5e_c00031{left:652.320000px;}
.x37_c00031{left:654.480000px;}
.x4c_c00031{left:663.840000px;}
.x25_c00031{left:665.280000px;}
.x11_c00031{left:666.720000px;}
.x63_c00031{left:673.200000px;}
.x18_c00031{left:676.800000px;}
.x46_c00031{left:685.440000px;}
.x12_c00031{left:698.400000px;}
.x51_c00031{left:707.040000px;}
.x19_c00031{left:709.200000px;}
.x64_c00031{left:717.120000px;}
.x3b_c00031{left:720.000000px;}
.x1_c00031{left:731.520000px;}
@media print{
.v0_c00031{vertical-align:0.000000pt;}
.v1_c00031{vertical-align:7.680000pt;}
.ls0_c00031{letter-spacing:0.000000pt;}
.ws0_c00031{word-spacing:-0.675840pt;}
.ws1_c00031{word-spacing:0.000000pt;}
.fs6_c00031{font-size:30.720000pt;}
.fs4_c00031{font-size:33.280000pt;}
.fsc_c00031{font-size:35.840000pt;}
.fs9_c00031{font-size:38.400000pt;}
.fs1_c00031{font-size:40.960000pt;}
.fs5_c00031{font-size:43.520000pt;}
.fs3_c00031{font-size:46.080000pt;}
.fs8_c00031{font-size:48.640000pt;}
.fsa_c00031{font-size:51.200000pt;}
.fs2_c00031{font-size:53.760000pt;}
.fs7_c00031{font-size:56.320000pt;}
.fsb_c00031{font-size:58.880000pt;}
.fs0_c00031{font-size:61.440000pt;}
.fsd_c00031{font-size:66.560000pt;}
.y0_c00031{bottom:0.000000pt;}
.y5e_c00031{bottom:33.920000pt;}
.y5f_c00031{bottom:34.560000pt;}
.y60_c00031{bottom:35.840000pt;}
.y5c_c00031{bottom:37.120000pt;}
.y5d_c00031{bottom:37.760000pt;}
.y5b_c00031{bottom:71.040000pt;}
.y5a_c00031{bottom:72.320000pt;}
.y59_c00031{bottom:74.240000pt;}
.y58_c00031{bottom:74.880000pt;}
.y52_c00031{bottom:109.440000pt;}
.y53_c00031{bottom:110.080000pt;}
.y55_c00031{bottom:110.720000pt;}
.y57_c00031{bottom:111.360000pt;}
.y56_c00031{bottom:112.000000pt;}
.y54_c00031{bottom:112.640000pt;}
.y4f_c00031{bottom:147.200000pt;}
.y51_c00031{bottom:147.840000pt;}
.y4d_c00031{bottom:148.480000pt;}
.y4e_c00031{bottom:149.760000pt;}
.y50_c00031{bottom:151.040000pt;}
.y4c_c00031{bottom:187.520000pt;}
.y4a_c00031{bottom:188.160000pt;}
.y4b_c00031{bottom:188.800000pt;}
.y49_c00031{bottom:232.960000pt;}
.y47_c00031{bottom:233.600000pt;}
.y48_c00031{bottom:236.160000pt;}
.y44_c00031{bottom:271.360000pt;}
.y46_c00031{bottom:273.280000pt;}
.y45_c00031{bottom:273.920000pt;}
.y43_c00031{bottom:274.560000pt;}
.y41_c00031{bottom:308.480000pt;}
.y40_c00031{bottom:309.120000pt;}
.y42_c00031{bottom:311.040000pt;}
.y3e_c00031{bottom:311.680000pt;}
.y3f_c00031{bottom:312.320000pt;}
.y3d_c00031{bottom:345.600000pt;}
.y3c_c00031{bottom:346.240000pt;}
.y39_c00031{bottom:346.880000pt;}
.y3b_c00031{bottom:348.800000pt;}
.y3a_c00031{bottom:349.440000pt;}
.y37_c00031{bottom:384.000000pt;}
.y36_c00031{bottom:384.640000pt;}
.y38_c00031{bottom:386.560000pt;}
.y35_c00031{bottom:387.200000pt;}
.y34_c00031{bottom:421.120000pt;}
.y33_c00031{bottom:423.040000pt;}
.y32_c00031{bottom:424.960000pt;}
.y31_c00031{bottom:425.600000pt;}
.y30_c00031{bottom:471.680000pt;}
.y2f_c00031{bottom:472.320000pt;}
.y2e_c00031{bottom:472.960000pt;}
.y2d_c00031{bottom:507.520000pt;}
.y2b_c00031{bottom:508.160000pt;}
.y2c_c00031{bottom:510.080000pt;}
.y2a_c00031{bottom:510.720000pt;}
.y29_c00031{bottom:545.280000pt;}
.y28_c00031{bottom:545.920000pt;}
.y27_c00031{bottom:548.480000pt;}
.y25_c00031{bottom:583.680000pt;}
.y23_c00031{bottom:584.320000pt;}
.y22_c00031{bottom:584.960000pt;}
.y26_c00031{bottom:585.600000pt;}
.y24_c00031{bottom:586.240000pt;}
.y21_c00031{bottom:586.880000pt;}
.y1f_c00031{bottom:621.440000pt;}
.y1d_c00031{bottom:622.080000pt;}
.y1e_c00031{bottom:624.000000pt;}
.y20_c00031{bottom:624.640000pt;}
.y1b_c00031{bottom:661.760000pt;}
.y1c_c00031{bottom:662.400000pt;}
.y19_c00031{bottom:697.600000pt;}
.y1a_c00031{bottom:699.520000pt;}
.y17_c00031{bottom:700.160000pt;}
.y18_c00031{bottom:700.800000pt;}
.y15_c00031{bottom:736.000000pt;}
.y16_c00031{bottom:736.640000pt;}
.y12_c00031{bottom:737.920000pt;}
.y14_c00031{bottom:738.560000pt;}
.y13_c00031{bottom:739.200000pt;}
.ye_c00031{bottom:773.760000pt;}
.y11_c00031{bottom:774.400000pt;}
.yf_c00031{bottom:776.320000pt;}
.y10_c00031{bottom:776.960000pt;}
.yd_c00031{bottom:812.160000pt;}
.y9_c00031{bottom:813.440000pt;}
.yb_c00031{bottom:814.080000pt;}
.yc_c00031{bottom:814.720000pt;}
.ya_c00031{bottom:815.360000pt;}
.y7_c00031{bottom:849.920000pt;}
.y5_c00031{bottom:851.840000pt;}
.y6_c00031{bottom:852.480000pt;}
.y8_c00031{bottom:853.120000pt;}
.y4_c00031{bottom:888.320000pt;}
.y3_c00031{bottom:890.240000pt;}
.y2_c00031{bottom:890.880000pt;}
.y1_c00031{bottom:951.680000pt;}
.h8_c00031{height:27.645000pt;}
.h6_c00031{height:29.948750pt;}
.hf_c00031{height:32.252500pt;}
.hb_c00031{height:34.556250pt;}
.h3_c00031{height:36.860000pt;}
.h7_c00031{height:39.163750pt;}
.h5_c00031{height:41.467500pt;}
.ha_c00031{height:43.771250pt;}
.hc_c00031{height:46.075000pt;}
.h4_c00031{height:48.378750pt;}
.he_c00031{height:49.147500pt;}
.h9_c00031{height:50.682500pt;}
.hd_c00031{height:52.986250pt;}
.h2_c00031{height:55.290000pt;}
.h10_c00031{height:59.897500pt;}
.h1_c00031{height:1022.666667pt;}
.h0_c00031{height:1022.720000pt;}
.w1_c00031{width:716.000000pt;}
.w0_c00031{width:716.160000pt;}
.x0_c00031{left:0.000000pt;}
.x65_c00031{left:71.040000pt;}
.x4d_c00031{left:72.320000pt;}
.xa_c00031{left:73.600000pt;}
.x26_c00031{left:74.880000pt;}
.x27_c00031{left:102.400000pt;}
.x32_c00031{left:111.360000pt;}
.x48_c00031{left:121.600000pt;}
.x66_c00031{left:129.280000pt;}
.x56_c00031{left:130.560000pt;}
.x13_c00031{left:140.800000pt;}
.x1a_c00031{left:142.080000pt;}
.x49_c00031{left:149.120000pt;}
.x1e_c00031{left:151.040000pt;}
.x3e_c00031{left:159.360000pt;}
.x59_c00031{left:167.680000pt;}
.x2_c00031{left:169.600000pt;}
.xb_c00031{left:179.200000pt;}
.x5f_c00031{left:186.880000pt;}
.x31_c00031{left:188.160000pt;}
.x14_c00031{left:190.080000pt;}
.x3f_c00031{left:197.760000pt;}
.x3_c00031{left:199.040000pt;}
.x33_c00031{left:206.720000pt;}
.x2b_c00031{left:209.280000pt;}
.x1f_c00031{left:217.600000pt;}
.xc_c00031{left:227.200000pt;}
.x57_c00031{left:234.880000pt;}
.x60_c00031{left:244.480000pt;}
.x4e_c00031{left:245.760000pt;}
.x2c_c00031{left:255.360000pt;}
.x20_c00031{left:257.280000pt;}
.x3c_c00031{left:264.960000pt;}
.x4f_c00031{left:273.920000pt;}
.x4_c00031{left:275.200000pt;}
.x1b_c00031{left:284.800000pt;}
.x61_c00031{left:291.840000pt;}
.x3d_c00031{left:293.760000pt;}
.xd_c00031{left:295.040000pt;}
.x34_c00031{left:303.360000pt;}
.x15_c00031{left:304.640000pt;}
.x1c_c00031{left:313.600000pt;}
.x67_c00031{left:321.280000pt;}
.x16_c00031{left:323.200000pt;}
.x21_c00031{left:325.120000pt;}
.x52_c00031{left:330.240000pt;}
.x38_c00031{left:332.160000pt;}
.x5a_c00031{left:340.480000pt;}
.x4a_c00031{left:351.360000pt;}
.x42_c00031{left:360.320000pt;}
.x5_c00031{left:361.600000pt;}
.x58_c00031{left:368.640000pt;}
.x28_c00031{left:371.200000pt;}
.x5b_c00031{left:378.240000pt;}
.x2d_c00031{left:380.160000pt;}
.x4b_c00031{left:389.120000pt;}
.x43_c00031{left:398.720000pt;}
.x6_c00031{left:400.000000pt;}
.x22_c00031{left:401.280000pt;}
.x39_c00031{left:407.680000pt;}
.x2e_c00031{left:408.960000pt;}
.x1d_c00031{left:418.560000pt;}
.x53_c00031{left:426.240000pt;}
.x5c_c00031{left:427.520000pt;}
.xe_c00031{left:437.760000pt;}
.x7_c00031{left:439.040000pt;}
.x17_c00031{left:448.000000pt;}
.x23_c00031{left:456.960000pt;}
.x62_c00031{left:465.280000pt;}
.x40_c00031{left:474.880000pt;}
.xf_c00031{left:476.800000pt;}
.x3a_c00031{left:485.120000pt;}
.x2f_c00031{left:486.400000pt;}
.x44_c00031{left:494.080000pt;}
.x41_c00031{left:496.000000pt;}
.x35_c00031{left:504.320000pt;}
.x5d_c00031{left:512.640000pt;}
.x30_c00031{left:514.560000pt;}
.x54_c00031{left:531.840000pt;}
.x36_c00031{left:533.120000pt;}
.x8_c00031{left:535.680000pt;}
.x45_c00031{left:542.080000pt;}
.x29_c00031{left:543.360000pt;}
.x47_c00031{left:551.680000pt;}
.x10_c00031{left:552.960000pt;}
.x24_c00031{left:562.560000pt;}
.x55_c00031{left:565.120000pt;}
.x50_c00031{left:570.240000pt;}
.x2a_c00031{left:572.160000pt;}
.x9_c00031{left:573.440000pt;}
.x5e_c00031{left:579.840000pt;}
.x37_c00031{left:581.760000pt;}
.x4c_c00031{left:590.080000pt;}
.x25_c00031{left:591.360000pt;}
.x11_c00031{left:592.640000pt;}
.x63_c00031{left:598.400000pt;}
.x18_c00031{left:601.600000pt;}
.x46_c00031{left:609.280000pt;}
.x12_c00031{left:620.800000pt;}
.x51_c00031{left:628.480000pt;}
.x19_c00031{left:630.400000pt;}
.x64_c00031{left:637.440000pt;}
.x3b_c00031{left:640.000000pt;}
.x1_c00031{left:650.240000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1d29b3466b46e589031c870c.woff2')format("woff");}.ff1_c00032{font-family:ff1_c00032;line-height:1.109863;font-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_c00032{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m33_c00032{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);}
.m55_c00032{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00032{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00032{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00032{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00032{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m46_c00032{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m41_c00032{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m28_c00032{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m49_c00032{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00032{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m0_c00032{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00032{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m4_c00032{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m11_c00032{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m21_c00032{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m37_c00032{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);}
.me_c00032{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m15_c00032{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);}
.mf_c00032{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);}
.m36_c00032{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.mc_c00032{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m16_c00032{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);}
.m2f_c00032{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);}
.m26_c00032{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);}
.m2d_c00032{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m24_c00032{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m31_c00032{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);}
.m29_c00032{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);}
.m13_c00032{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m7_c00032{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m32_c00032{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);}
.m43_c00032{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00032{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);}
.m40_c00032{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m25_c00032{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);}
.m10_c00032{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m17_c00032{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.mb_c00032{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);}
.m1e_c00032{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m50_c00032{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00032{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);}
.ma_c00032{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m1_c00032{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m22_c00032{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m30_c00032{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m48_c00032{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m51_c00032{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);}
.m47_c00032{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m6_c00032{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m45_c00032{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m52_c00032{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);}
.m27_c00032{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m2_c00032{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m5_c00032{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00032{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00032{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m14_c00032{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);}
.md_c00032{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);}
.m39_c00032{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00032{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m35_c00032{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);}
.m3c_c00032{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00032{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);}
.m34_c00032{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m38_c00032{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00032{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m12_c00032{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00032{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);}
.m8_c00032{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00032{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m54_c00032{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);}
.m9_c00032{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);}
.m4e_c00032{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00032{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m53_c00032{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m20_c00032{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00032{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);}
.m4d_c00032{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m18_c00032{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);}
.m19_c00032{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m23_c00032{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m3_c00032{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00032{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m42_c00032{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.v1_c00032{vertical-align:-2.880000px;}
.v0_c00032{vertical-align:0.000000px;}
.ls0_c00032{letter-spacing:0.000000px;}
.sc__c00032{text-shadow:none;}
.sc0_c00032{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00032{-webkit-text-stroke:0px transparent;}
.sc0_c00032{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00032{word-spacing:-2.006160px;}
.ws1_c00032{word-spacing:0.000000px;}
.fc0_c00032{color:transparent;}
.fs8_c00032{font-size:34.560000px;}
.fs5_c00032{font-size:37.440000px;}
.fsb_c00032{font-size:43.200000px;}
.fs2_c00032{font-size:46.080000px;}
.fs1_c00032{font-size:48.960000px;}
.fs3_c00032{font-size:51.840000px;}
.fsc_c00032{font-size:54.720000px;}
.fsa_c00032{font-size:57.600000px;}
.fs4_c00032{font-size:60.480000px;}
.fs7_c00032{font-size:63.360000px;}
.fs9_c00032{font-size:66.240000px;}
.fs0_c00032{font-size:69.120000px;}
.fs6_c00032{font-size:72.000000px;}
.y0_c00032{bottom:0.000000px;}
.y62_c00032{bottom:35.280000px;}
.y5e_c00032{bottom:36.000000px;}
.y5f_c00032{bottom:36.720000px;}
.y61_c00032{bottom:38.160000px;}
.y60_c00032{bottom:38.880000px;}
.y58_c00032{bottom:77.040000px;}
.y5b_c00032{bottom:77.760000px;}
.y5a_c00032{bottom:78.480000px;}
.y5d_c00032{bottom:79.920000px;}
.y5c_c00032{bottom:80.640000px;}
.y59_c00032{bottom:81.360000px;}
.y56_c00032{bottom:120.240000px;}
.y57_c00032{bottom:122.400000px;}
.y55_c00032{bottom:123.120000px;}
.y54_c00032{bottom:123.840000px;}
.y53_c00032{bottom:124.560000px;}
.y51_c00032{bottom:163.440000px;}
.y52_c00032{bottom:165.600000px;}
.y4f_c00032{bottom:166.320000px;}
.y50_c00032{bottom:167.040000px;}
.y4b_c00032{bottom:216.000000px;}
.y4e_c00032{bottom:218.160000px;}
.y4c_c00032{bottom:218.880000px;}
.y4d_c00032{bottom:219.600000px;}
.y4a_c00032{bottom:220.320000px;}
.y45_c00032{bottom:258.480000px;}
.y49_c00032{bottom:259.200000px;}
.y46_c00032{bottom:261.360000px;}
.y47_c00032{bottom:262.080000px;}
.y48_c00032{bottom:262.800000px;}
.y41_c00032{bottom:300.960000px;}
.y42_c00032{bottom:301.680000px;}
.y43_c00032{bottom:303.840000px;}
.y44_c00032{bottom:304.560000px;}
.y40_c00032{bottom:305.280000px;}
.y3f_c00032{bottom:344.160000px;}
.y3e_c00032{bottom:344.880000px;}
.y3d_c00032{bottom:347.040000px;}
.y3c_c00032{bottom:389.520000px;}
.y3b_c00032{bottom:390.240000px;}
.y37_c00032{bottom:429.840000px;}
.y39_c00032{bottom:430.560000px;}
.y3a_c00032{bottom:432.000000px;}
.y38_c00032{bottom:432.720000px;}
.y36_c00032{bottom:433.440000px;}
.y35_c00032{bottom:472.320000px;}
.y33_c00032{bottom:473.040000px;}
.y34_c00032{bottom:474.480000px;}
.y31_c00032{bottom:475.200000px;}
.y32_c00032{bottom:475.920000px;}
.y2d_c00032{bottom:515.520000px;}
.y30_c00032{bottom:516.960000px;}
.y2e_c00032{bottom:517.680000px;}
.y2f_c00032{bottom:518.400000px;}
.y2c_c00032{bottom:558.000000px;}
.y2b_c00032{bottom:558.720000px;}
.y2a_c00032{bottom:560.880000px;}
.y25_c00032{bottom:600.480000px;}
.y27_c00032{bottom:601.200000px;}
.y29_c00032{bottom:602.640000px;}
.y28_c00032{bottom:603.360000px;}
.y26_c00032{bottom:604.080000px;}
.y24_c00032{bottom:642.960000px;}
.y23_c00032{bottom:643.680000px;}
.y21_c00032{bottom:645.840000px;}
.y22_c00032{bottom:646.560000px;}
.y1e_c00032{bottom:695.520000px;}
.y20_c00032{bottom:696.240000px;}
.y1f_c00032{bottom:699.120000px;}
.y1d_c00032{bottom:699.840000px;}
.y1c_c00032{bottom:739.440000px;}
.y1b_c00032{bottom:741.600000px;}
.y1a_c00032{bottom:742.320000px;}
.y18_c00032{bottom:781.200000px;}
.y17_c00032{bottom:781.920000px;}
.y16_c00032{bottom:782.640000px;}
.y15_c00032{bottom:784.080000px;}
.y19_c00032{bottom:784.800000px;}
.y14_c00032{bottom:823.680000px;}
.y13_c00032{bottom:824.400000px;}
.y11_c00032{bottom:827.280000px;}
.y12_c00032{bottom:828.000000px;}
.y10_c00032{bottom:866.160000px;}
.yf_c00032{bottom:867.600000px;}
.yd_c00032{bottom:869.760000px;}
.ye_c00032{bottom:870.480000px;}
.ya_c00032{bottom:910.080000px;}
.yc_c00032{bottom:910.800000px;}
.y9_c00032{bottom:912.240000px;}
.yb_c00032{bottom:912.960000px;}
.y8_c00032{bottom:952.560000px;}
.y7_c00032{bottom:953.280000px;}
.y5_c00032{bottom:955.440000px;}
.y6_c00032{bottom:956.160000px;}
.y3_c00032{bottom:996.480000px;}
.y2_c00032{bottom:998.640000px;}
.y4_c00032{bottom:999.360000px;}
.y1_c00032{bottom:1081.440000px;}
.ha_c00032{height:31.100625px;}
.h7_c00032{height:33.692344px;}
.hd_c00032{height:38.875781px;}
.h4_c00032{height:41.467500px;}
.h3_c00032{height:44.059219px;}
.h5_c00032{height:46.650937px;}
.he_c00032{height:49.242656px;}
.hc_c00032{height:51.834375px;}
.h6_c00032{height:54.426094px;}
.h9_c00032{height:57.017812px;}
.hb_c00032{height:59.609531px;}
.h2_c00032{height:62.201250px;}
.h8_c00032{height:64.792969px;}
.h1_c00032{height:1150.500000px;}
.h0_c00032{height:1150.560000px;}
.w1_c00032{width:806.250000px;}
.w0_c00032{width:806.400000px;}
.x0_c00032{left:0.000000px;}
.x55_c00032{left:82.080000px;}
.x1d_c00032{left:83.520000px;}
.xa_c00032{left:84.960000px;}
.x13_c00032{left:116.640000px;}
.x56_c00032{left:126.000000px;}
.xb_c00032{left:127.440000px;}
.x60_c00032{left:138.240000px;}
.x1e_c00032{left:149.040000px;}
.x51_c00032{left:158.400000px;}
.x19_c00032{left:159.840000px;}
.x65_c00032{left:162.000000px;}
.x30_c00032{left:169.920000px;}
.x21_c00032{left:171.360000px;}
.xc_c00032{left:172.800000px;}
.x35_c00032{left:181.440000px;}
.x3e_c00032{left:190.800000px;}
.x2_c00032{left:192.240000px;}
.x61_c00032{left:200.880000px;}
.x27_c00032{left:203.760000px;}
.x63_c00032{left:212.400000px;}
.x3_c00032{left:213.840000px;}
.x5a_c00032{left:223.200000px;}
.x3a_c00032{left:224.640000px;}
.x2a_c00032{left:234.000000px;}
.x14_c00032{left:235.440000px;}
.x4e_c00032{left:244.800000px;}
.x66_c00032{left:246.240000px;}
.x57_c00032{left:255.600000px;}
.x4_c00032{left:257.040000px;}
.x1a_c00032{left:267.120000px;}
.x4a_c00032{left:278.640000px;}
.x44_c00032{left:288.000000px;}
.x3f_c00032{left:289.440000px;}
.xd_c00032{left:290.880000px;}
.x5_c00032{left:300.240000px;}
.x58_c00032{left:308.880000px;}
.x48_c00032{left:310.320000px;}
.x28_c00032{left:321.840000px;}
.x2c_c00032{left:332.640000px;}
.x31_c00032{left:342.000000px;}
.x3b_c00032{left:343.440000px;}
.x5b_c00032{left:352.800000px;}
.x22_c00032{left:354.240000px;}
.x15_c00032{left:365.040000px;}
.x40_c00032{left:374.400000px;}
.x1b_c00032{left:375.840000px;}
.x67_c00032{left:384.480000px;}
.xe_c00032{left:385.920000px;}
.x59_c00032{left:395.280000px;}
.x36_c00032{left:396.720000px;}
.x6_c00032{left:398.160000px;}
.x16_c00032{left:408.240000px;}
.x4b_c00032{left:416.880000px;}
.x1f_c00032{left:419.040000px;}
.x2d_c00032{left:421.200000px;}
.x4f_c00032{left:427.680000px;}
.xf_c00032{left:429.120000px;}
.x45_c00032{left:439.200000px;}
.x52_c00032{left:449.280000px;}
.x32_c00032{left:450.720000px;}
.x37_c00032{left:460.080000px;}
.x2b_c00032{left:461.520000px;}
.x33_c00032{left:471.600000px;}
.x7_c00032{left:473.040000px;}
.x5c_c00032{left:481.680000px;}
.x23_c00032{left:483.120000px;}
.x4c_c00032{left:493.200000px;}
.x41_c00032{left:503.280000px;}
.x10_c00032{left:505.440000px;}
.x49_c00032{left:514.080000px;}
.x29_c00032{left:516.240000px;}
.x34_c00032{left:525.600000px;}
.x8_c00032{left:527.040000px;}
.x62_c00032{left:535.680000px;}
.x11_c00032{left:537.840000px;}
.x5d_c00032{left:546.480000px;}
.x46_c00032{left:547.920000px;}
.x20_c00032{left:558.720000px;}
.x50_c00032{left:568.080000px;}
.x2e_c00032{left:579.600000px;}
.x17_c00032{left:592.560000px;}
.x38_c00032{left:601.200000px;}
.x5e_c00032{left:610.560000px;}
.x2f_c00032{left:613.440000px;}
.x47_c00032{left:622.080000px;}
.x9_c00032{left:624.240000px;}
.x42_c00032{left:625.680000px;}
.x68_c00032{left:632.880000px;}
.x1c_c00032{left:635.040000px;}
.x39_c00032{left:644.400000px;}
.x24_c00032{left:645.840000px;}
.x5f_c00032{left:654.480000px;}
.x12_c00032{left:656.640000px;}
.x53_c00032{left:676.080000px;}
.x25_c00032{left:678.240000px;}
.x18_c00032{left:689.040000px;}
.x54_c00032{left:697.680000px;}
.x3c_c00032{left:699.120000px;}
.x4d_c00032{left:708.480000px;}
.x43_c00032{left:710.640000px;}
.x64_c00032{left:720.000000px;}
.x26_c00032{left:721.440000px;}
.x3d_c00032{left:730.800000px;}
.x1_c00032{left:754.560000px;}
@media print{
.v1_c00032{vertical-align:-2.560000pt;}
.v0_c00032{vertical-align:0.000000pt;}
.ls0_c00032{letter-spacing:0.000000pt;}
.ws0_c00032{word-spacing:-1.783253pt;}
.ws1_c00032{word-spacing:0.000000pt;}
.fs8_c00032{font-size:30.720000pt;}
.fs5_c00032{font-size:33.280000pt;}
.fsb_c00032{font-size:38.400000pt;}
.fs2_c00032{font-size:40.960000pt;}
.fs1_c00032{font-size:43.520000pt;}
.fs3_c00032{font-size:46.080000pt;}
.fsc_c00032{font-size:48.640000pt;}
.fsa_c00032{font-size:51.200000pt;}
.fs4_c00032{font-size:53.760000pt;}
.fs7_c00032{font-size:56.320000pt;}
.fs9_c00032{font-size:58.880000pt;}
.fs0_c00032{font-size:61.440000pt;}
.fs6_c00032{font-size:64.000000pt;}
.y0_c00032{bottom:0.000000pt;}
.y62_c00032{bottom:31.360000pt;}
.y5e_c00032{bottom:32.000000pt;}
.y5f_c00032{bottom:32.640000pt;}
.y61_c00032{bottom:33.920000pt;}
.y60_c00032{bottom:34.560000pt;}
.y58_c00032{bottom:68.480000pt;}
.y5b_c00032{bottom:69.120000pt;}
.y5a_c00032{bottom:69.760000pt;}
.y5d_c00032{bottom:71.040000pt;}
.y5c_c00032{bottom:71.680000pt;}
.y59_c00032{bottom:72.320000pt;}
.y56_c00032{bottom:106.880000pt;}
.y57_c00032{bottom:108.800000pt;}
.y55_c00032{bottom:109.440000pt;}
.y54_c00032{bottom:110.080000pt;}
.y53_c00032{bottom:110.720000pt;}
.y51_c00032{bottom:145.280000pt;}
.y52_c00032{bottom:147.200000pt;}
.y4f_c00032{bottom:147.840000pt;}
.y50_c00032{bottom:148.480000pt;}
.y4b_c00032{bottom:192.000000pt;}
.y4e_c00032{bottom:193.920000pt;}
.y4c_c00032{bottom:194.560000pt;}
.y4d_c00032{bottom:195.200000pt;}
.y4a_c00032{bottom:195.840000pt;}
.y45_c00032{bottom:229.760000pt;}
.y49_c00032{bottom:230.400000pt;}
.y46_c00032{bottom:232.320000pt;}
.y47_c00032{bottom:232.960000pt;}
.y48_c00032{bottom:233.600000pt;}
.y41_c00032{bottom:267.520000pt;}
.y42_c00032{bottom:268.160000pt;}
.y43_c00032{bottom:270.080000pt;}
.y44_c00032{bottom:270.720000pt;}
.y40_c00032{bottom:271.360000pt;}
.y3f_c00032{bottom:305.920000pt;}
.y3e_c00032{bottom:306.560000pt;}
.y3d_c00032{bottom:308.480000pt;}
.y3c_c00032{bottom:346.240000pt;}
.y3b_c00032{bottom:346.880000pt;}
.y37_c00032{bottom:382.080000pt;}
.y39_c00032{bottom:382.720000pt;}
.y3a_c00032{bottom:384.000000pt;}
.y38_c00032{bottom:384.640000pt;}
.y36_c00032{bottom:385.280000pt;}
.y35_c00032{bottom:419.840000pt;}
.y33_c00032{bottom:420.480000pt;}
.y34_c00032{bottom:421.760000pt;}
.y31_c00032{bottom:422.400000pt;}
.y32_c00032{bottom:423.040000pt;}
.y2d_c00032{bottom:458.240000pt;}
.y30_c00032{bottom:459.520000pt;}
.y2e_c00032{bottom:460.160000pt;}
.y2f_c00032{bottom:460.800000pt;}
.y2c_c00032{bottom:496.000000pt;}
.y2b_c00032{bottom:496.640000pt;}
.y2a_c00032{bottom:498.560000pt;}
.y25_c00032{bottom:533.760000pt;}
.y27_c00032{bottom:534.400000pt;}
.y29_c00032{bottom:535.680000pt;}
.y28_c00032{bottom:536.320000pt;}
.y26_c00032{bottom:536.960000pt;}
.y24_c00032{bottom:571.520000pt;}
.y23_c00032{bottom:572.160000pt;}
.y21_c00032{bottom:574.080000pt;}
.y22_c00032{bottom:574.720000pt;}
.y1e_c00032{bottom:618.240000pt;}
.y20_c00032{bottom:618.880000pt;}
.y1f_c00032{bottom:621.440000pt;}
.y1d_c00032{bottom:622.080000pt;}
.y1c_c00032{bottom:657.280000pt;}
.y1b_c00032{bottom:659.200000pt;}
.y1a_c00032{bottom:659.840000pt;}
.y18_c00032{bottom:694.400000pt;}
.y17_c00032{bottom:695.040000pt;}
.y16_c00032{bottom:695.680000pt;}
.y15_c00032{bottom:696.960000pt;}
.y19_c00032{bottom:697.600000pt;}
.y14_c00032{bottom:732.160000pt;}
.y13_c00032{bottom:732.800000pt;}
.y11_c00032{bottom:735.360000pt;}
.y12_c00032{bottom:736.000000pt;}
.y10_c00032{bottom:769.920000pt;}
.yf_c00032{bottom:771.200000pt;}
.yd_c00032{bottom:773.120000pt;}
.ye_c00032{bottom:773.760000pt;}
.ya_c00032{bottom:808.960000pt;}
.yc_c00032{bottom:809.600000pt;}
.y9_c00032{bottom:810.880000pt;}
.yb_c00032{bottom:811.520000pt;}
.y8_c00032{bottom:846.720000pt;}
.y7_c00032{bottom:847.360000pt;}
.y5_c00032{bottom:849.280000pt;}
.y6_c00032{bottom:849.920000pt;}
.y3_c00032{bottom:885.760000pt;}
.y2_c00032{bottom:887.680000pt;}
.y4_c00032{bottom:888.320000pt;}
.y1_c00032{bottom:961.280000pt;}
.ha_c00032{height:27.645000pt;}
.h7_c00032{height:29.948750pt;}
.hd_c00032{height:34.556250pt;}
.h4_c00032{height:36.860000pt;}
.h3_c00032{height:39.163750pt;}
.h5_c00032{height:41.467500pt;}
.he_c00032{height:43.771250pt;}
.hc_c00032{height:46.075000pt;}
.h6_c00032{height:48.378750pt;}
.h9_c00032{height:50.682500pt;}
.hb_c00032{height:52.986250pt;}
.h2_c00032{height:55.290000pt;}
.h8_c00032{height:57.593750pt;}
.h1_c00032{height:1022.666667pt;}
.h0_c00032{height:1022.720000pt;}
.w1_c00032{width:716.666667pt;}
.w0_c00032{width:716.800000pt;}
.x0_c00032{left:0.000000pt;}
.x55_c00032{left:72.960000pt;}
.x1d_c00032{left:74.240000pt;}
.xa_c00032{left:75.520000pt;}
.x13_c00032{left:103.680000pt;}
.x56_c00032{left:112.000000pt;}
.xb_c00032{left:113.280000pt;}
.x60_c00032{left:122.880000pt;}
.x1e_c00032{left:132.480000pt;}
.x51_c00032{left:140.800000pt;}
.x19_c00032{left:142.080000pt;}
.x65_c00032{left:144.000000pt;}
.x30_c00032{left:151.040000pt;}
.x21_c00032{left:152.320000pt;}
.xc_c00032{left:153.600000pt;}
.x35_c00032{left:161.280000pt;}
.x3e_c00032{left:169.600000pt;}
.x2_c00032{left:170.880000pt;}
.x61_c00032{left:178.560000pt;}
.x27_c00032{left:181.120000pt;}
.x63_c00032{left:188.800000pt;}
.x3_c00032{left:190.080000pt;}
.x5a_c00032{left:198.400000pt;}
.x3a_c00032{left:199.680000pt;}
.x2a_c00032{left:208.000000pt;}
.x14_c00032{left:209.280000pt;}
.x4e_c00032{left:217.600000pt;}
.x66_c00032{left:218.880000pt;}
.x57_c00032{left:227.200000pt;}
.x4_c00032{left:228.480000pt;}
.x1a_c00032{left:237.440000pt;}
.x4a_c00032{left:247.680000pt;}
.x44_c00032{left:256.000000pt;}
.x3f_c00032{left:257.280000pt;}
.xd_c00032{left:258.560000pt;}
.x5_c00032{left:266.880000pt;}
.x58_c00032{left:274.560000pt;}
.x48_c00032{left:275.840000pt;}
.x28_c00032{left:286.080000pt;}
.x2c_c00032{left:295.680000pt;}
.x31_c00032{left:304.000000pt;}
.x3b_c00032{left:305.280000pt;}
.x5b_c00032{left:313.600000pt;}
.x22_c00032{left:314.880000pt;}
.x15_c00032{left:324.480000pt;}
.x40_c00032{left:332.800000pt;}
.x1b_c00032{left:334.080000pt;}
.x67_c00032{left:341.760000pt;}
.xe_c00032{left:343.040000pt;}
.x59_c00032{left:351.360000pt;}
.x36_c00032{left:352.640000pt;}
.x6_c00032{left:353.920000pt;}
.x16_c00032{left:362.880000pt;}
.x4b_c00032{left:370.560000pt;}
.x1f_c00032{left:372.480000pt;}
.x2d_c00032{left:374.400000pt;}
.x4f_c00032{left:380.160000pt;}
.xf_c00032{left:381.440000pt;}
.x45_c00032{left:390.400000pt;}
.x52_c00032{left:399.360000pt;}
.x32_c00032{left:400.640000pt;}
.x37_c00032{left:408.960000pt;}
.x2b_c00032{left:410.240000pt;}
.x33_c00032{left:419.200000pt;}
.x7_c00032{left:420.480000pt;}
.x5c_c00032{left:428.160000pt;}
.x23_c00032{left:429.440000pt;}
.x4c_c00032{left:438.400000pt;}
.x41_c00032{left:447.360000pt;}
.x10_c00032{left:449.280000pt;}
.x49_c00032{left:456.960000pt;}
.x29_c00032{left:458.880000pt;}
.x34_c00032{left:467.200000pt;}
.x8_c00032{left:468.480000pt;}
.x62_c00032{left:476.160000pt;}
.x11_c00032{left:478.080000pt;}
.x5d_c00032{left:485.760000pt;}
.x46_c00032{left:487.040000pt;}
.x20_c00032{left:496.640000pt;}
.x50_c00032{left:504.960000pt;}
.x2e_c00032{left:515.200000pt;}
.x17_c00032{left:526.720000pt;}
.x38_c00032{left:534.400000pt;}
.x5e_c00032{left:542.720000pt;}
.x2f_c00032{left:545.280000pt;}
.x47_c00032{left:552.960000pt;}
.x9_c00032{left:554.880000pt;}
.x42_c00032{left:556.160000pt;}
.x68_c00032{left:562.560000pt;}
.x1c_c00032{left:564.480000pt;}
.x39_c00032{left:572.800000pt;}
.x24_c00032{left:574.080000pt;}
.x5f_c00032{left:581.760000pt;}
.x12_c00032{left:583.680000pt;}
.x53_c00032{left:600.960000pt;}
.x25_c00032{left:602.880000pt;}
.x18_c00032{left:612.480000pt;}
.x54_c00032{left:620.160000pt;}
.x3c_c00032{left:621.440000pt;}
.x4d_c00032{left:629.760000pt;}
.x43_c00032{left:631.680000pt;}
.x64_c00032{left:640.000000pt;}
.x26_c00032{left:641.280000pt;}
.x3d_c00032{left:649.600000pt;}
.x1_c00032{left:670.720000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ea6cd93a524f0a2818c96987.woff2')format("woff");}.ff1_c00033{font-family:ff1_c00033;line-height:1.109863;font-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_c00033{transform:matrix(0.240025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240025,0.000000,0.000000,0.250000,0,0);}
.m5a_c00033{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00033{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m46_c00033{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m57_c00033{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m35_c00033{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m23_c00033{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m56_c00033{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m30_c00033{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m49_c00033{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m45_c00033{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mb_c00033{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m21_c00033{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00033{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00033{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00033{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m0_c00033{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00033{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m24_c00033{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m28_c00033{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m12_c00033{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m26_c00033{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00033{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00033{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);}
.m39_c00033{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m31_c00033{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);}
.m2c_c00033{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1_c00033{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m20_c00033{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.mc_c00033{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);}
.m3f_c00033{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);}
.m32_c00033{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m14_c00033{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m16_c00033{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m11_c00033{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);}
.m8_c00033{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);}
.m1c_c00033{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00033{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00033{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);}
.m18_c00033{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);}
.m4c_c00033{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00033{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);}
.m54_c00033{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);}
.m53_c00033{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m43_c00033{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m36_c00033{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00033{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m6_c00033{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);}
.m10_c00033{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m19_c00033{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m22_c00033{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);}
.me_c00033{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m48_c00033{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m15_c00033{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00033{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00033{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);}
.m2_c00033{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.ma_c00033{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m34_c00033{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m58_c00033{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);}
.m38_c00033{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00033{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00033{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00033{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m13_c00033{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m25_c00033{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);}
.m29_c00033{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);}
.m5b_c00033{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m44_c00033{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00033{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m3_c00033{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);}
.m3c_c00033{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00033{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m7_c00033{transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);}
.m4_c00033{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m51_c00033{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m42_c00033{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m50_c00033{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);}
.mf_c00033{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_c00033{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m55_c00033{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m40_c00033{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m37_c00033{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.md_c00033{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00033{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m41_c00033{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);}
.m52_c00033{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m9_c00033{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);}
.m5_c00033{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.m47_c00033{transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);}
.m27_c00033{transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00033{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m33_c00033{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m59_c00033{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.v1_c00033{vertical-align:-11.520000px;}
.v0_c00033{vertical-align:0.000000px;}
.ls0_c00033{letter-spacing:0.000000px;}
.sc__c00033{text-shadow:none;}
.sc0_c00033{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00033{-webkit-text-stroke:0px transparent;}
.sc0_c00033{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00033{word-spacing:-3.482160px;}
.ws1_c00033{word-spacing:0.000000px;}
.fc0_c00033{color:transparent;}
.fs5_c00033{font-size:34.560000px;}
.fs4_c00033{font-size:37.440000px;}
.fsd_c00033{font-size:40.320000px;}
.fsc_c00033{font-size:43.200000px;}
.fs3_c00033{font-size:46.080000px;}
.fs6_c00033{font-size:48.960000px;}
.fs2_c00033{font-size:51.840000px;}
.fs9_c00033{font-size:54.720000px;}
.fsa_c00033{font-size:57.600000px;}
.fs1_c00033{font-size:60.480000px;}
.fs7_c00033{font-size:63.360000px;}
.fs8_c00033{font-size:66.240000px;}
.fsb_c00033{font-size:69.120000px;}
.fs0_c00033{font-size:72.000000px;}
.y0_c00033{bottom:0.000000px;}
.y5e_c00033{bottom:43.920000px;}
.y5d_c00033{bottom:44.640000px;}
.y5f_c00033{bottom:46.800000px;}
.y5c_c00033{bottom:47.520000px;}
.y5a_c00033{bottom:86.400000px;}
.y58_c00033{bottom:87.120000px;}
.y5b_c00033{bottom:88.560000px;}
.y59_c00033{bottom:89.280000px;}
.y57_c00033{bottom:90.000000px;}
.y55_c00033{bottom:128.160000px;}
.y54_c00033{bottom:128.880000px;}
.y52_c00033{bottom:129.600000px;}
.y56_c00033{bottom:131.040000px;}
.y53_c00033{bottom:131.760000px;}
.y51_c00033{bottom:132.480000px;}
.y50_c00033{bottom:172.080000px;}
.y4f_c00033{bottom:174.240000px;}
.y4e_c00033{bottom:174.960000px;}
.y4d_c00033{bottom:214.560000px;}
.y4c_c00033{bottom:216.720000px;}
.y4b_c00033{bottom:217.440000px;}
.y4a_c00033{bottom:257.040000px;}
.y49_c00033{bottom:259.920000px;}
.y46_c00033{bottom:299.520000px;}
.y47_c00033{bottom:300.240000px;}
.y48_c00033{bottom:302.400000px;}
.y45_c00033{bottom:354.960000px;}
.y44_c00033{bottom:355.680000px;}
.y3f_c00033{bottom:394.560000px;}
.y41_c00033{bottom:395.280000px;}
.y42_c00033{bottom:397.440000px;}
.y40_c00033{bottom:398.160000px;}
.y43_c00033{bottom:398.880000px;}
.y3e_c00033{bottom:437.760000px;}
.y3b_c00033{bottom:438.480000px;}
.y3c_c00033{bottom:439.920000px;}
.y3d_c00033{bottom:440.640000px;}
.y38_c00033{bottom:479.520000px;}
.y3a_c00033{bottom:480.960000px;}
.y37_c00033{bottom:483.120000px;}
.y39_c00033{bottom:483.840000px;}
.y33_c00033{bottom:522.720000px;}
.y35_c00033{bottom:523.440000px;}
.y36_c00033{bottom:524.160000px;}
.y34_c00033{bottom:525.600000px;}
.y32_c00033{bottom:526.320000px;}
.y31_c00033{bottom:565.200000px;}
.y2f_c00033{bottom:565.920000px;}
.y30_c00033{bottom:566.640000px;}
.y2d_c00033{bottom:568.080000px;}
.y2e_c00033{bottom:568.800000px;}
.y2c_c00033{bottom:608.400000px;}
.y2a_c00033{bottom:609.120000px;}
.y2b_c00033{bottom:610.560000px;}
.y29_c00033{bottom:611.280000px;}
.y25_c00033{bottom:650.880000px;}
.y27_c00033{bottom:651.600000px;}
.y28_c00033{bottom:653.760000px;}
.y26_c00033{bottom:654.480000px;}
.y24_c00033{bottom:693.360000px;}
.y23_c00033{bottom:694.080000px;}
.y22_c00033{bottom:696.960000px;}
.y1c_c00033{bottom:735.840000px;}
.y1e_c00033{bottom:736.560000px;}
.y21_c00033{bottom:737.280000px;}
.y20_c00033{bottom:738.720000px;}
.y1f_c00033{bottom:739.440000px;}
.y1d_c00033{bottom:740.160000px;}
.y16_c00033{bottom:779.040000px;}
.y19_c00033{bottom:779.760000px;}
.y1a_c00033{bottom:780.480000px;}
.y17_c00033{bottom:781.920000px;}
.y18_c00033{bottom:782.640000px;}
.y1b_c00033{bottom:783.360000px;}
.y15_c00033{bottom:821.520000px;}
.y14_c00033{bottom:822.240000px;}
.y11_c00033{bottom:824.400000px;}
.y12_c00033{bottom:825.120000px;}
.y13_c00033{bottom:825.840000px;}
.y10_c00033{bottom:864.000000px;}
.yd_c00033{bottom:864.720000px;}
.yf_c00033{bottom:865.440000px;}
.ye_c00033{bottom:867.600000px;}
.yc_c00033{bottom:907.920000px;}
.ya_c00033{bottom:910.080000px;}
.yb_c00033{bottom:910.800000px;}
.y7_c00033{bottom:950.400000px;}
.y6_c00033{bottom:952.560000px;}
.y8_c00033{bottom:953.280000px;}
.y9_c00033{bottom:954.000000px;}
.y4_c00033{bottom:992.880000px;}
.y2_c00033{bottom:995.040000px;}
.y3_c00033{bottom:995.760000px;}
.y5_c00033{bottom:996.480000px;}
.y1_c00033{bottom:1065.600000px;}
.h7_c00033{height:31.100625px;}
.h6_c00033{height:33.692344px;}
.hf_c00033{height:36.284062px;}
.he_c00033{height:38.875781px;}
.h5_c00033{height:41.467500px;}
.h8_c00033{height:44.059219px;}
.h4_c00033{height:46.650937px;}
.hb_c00033{height:49.242656px;}
.hc_c00033{height:51.834375px;}
.h3_c00033{height:54.426094px;}
.h9_c00033{height:57.017812px;}
.ha_c00033{height:59.609531px;}
.hd_c00033{height:62.201250px;}
.h2_c00033{height:64.792969px;}
.h1_c00033{height:1146.000000px;}
.h0_c00033{height:1146.240000px;}
.w0_c00033{width:799.920000px;}
.w1_c00033{width:800.250000px;}
.x0_c00033{left:0.000000px;}
.x2_c00033{left:77.760000px;}
.xb_c00033{left:79.200000px;}
.x44_c00033{left:82.080000px;}
.x33_c00033{left:100.800000px;}
.x2d_c00033{left:110.880000px;}
.x45_c00033{left:120.960000px;}
.x4c_c00033{left:122.400000px;}
.x34_c00033{left:133.920000px;}
.x4d_c00033{left:142.560000px;}
.xc_c00033{left:144.000000px;}
.x23_c00033{left:154.080000px;}
.x29_c00033{left:155.520000px;}
.x36_c00033{left:164.880000px;}
.x3f_c00033{left:166.320000px;}
.x2a_c00033{left:176.400000px;}
.x12_c00033{left:186.480000px;}
.x19_c00033{left:197.280000px;}
.x43_c00033{left:208.080000px;}
.x37_c00033{left:209.520000px;}
.x3_c00033{left:218.880000px;}
.x35_c00033{left:220.320000px;}
.x51_c00033{left:228.960000px;}
.x24_c00033{left:230.400000px;}
.xd_c00033{left:240.480000px;}
.x48_c00033{left:249.840000px;}
.x1a_c00033{left:251.280000px;}
.x3b_c00033{left:252.720000px;}
.x25_c00033{left:261.360000px;}
.x13_c00033{left:272.880000px;}
.x2e_c00033{left:283.680000px;}
.x2b_c00033{left:285.120000px;}
.x40_c00033{left:295.200000px;}
.x41_c00033{left:304.560000px;}
.x38_c00033{left:306.000000px;}
.x50_c00033{left:307.440000px;}
.x26_c00033{left:315.360000px;}
.x3c_c00033{left:316.800000px;}
.x4_c00033{left:336.960000px;}
.x46_c00033{left:347.040000px;}
.x42_c00033{left:357.840000px;}
.x14_c00033{left:359.280000px;}
.xe_c00033{left:369.360000px;}
.x5_c00033{left:380.160000px;}
.x20_c00033{left:382.320000px;}
.x4e_c00033{left:393.840000px;}
.x1b_c00033{left:401.760000px;}
.x6_c00033{left:412.560000px;}
.xf_c00033{left:414.000000px;}
.x3d_c00033{left:424.080000px;}
.x15_c00033{left:434.880000px;}
.x39_c00033{left:444.960000px;}
.x2f_c00033{left:455.760000px;}
.x16_c00033{left:466.560000px;}
.x1c_c00033{left:477.360000px;}
.x3a_c00033{left:488.160000px;}
.x30_c00033{left:499.680000px;}
.x27_c00033{left:509.760000px;}
.x21_c00033{left:520.560000px;}
.x4f_c00033{left:522.000000px;}
.x7_c00033{left:531.360000px;}
.x2c_c00033{left:542.880000px;}
.x4b_c00033{left:550.800000px;}
.x28_c00033{left:553.680000px;}
.x17_c00033{left:575.280000px;}
.x10_c00033{left:585.360000px;}
.x8_c00033{left:596.880000px;}
.x31_c00033{left:606.960000px;}
.x11_c00033{left:609.120000px;}
.x22_c00033{left:617.760000px;}
.x1d_c00033{left:619.200000px;}
.x9_c00033{left:627.840000px;}
.x32_c00033{left:639.360000px;}
.x49_c00033{left:649.440000px;}
.x3e_c00033{left:660.960000px;}
.x18_c00033{left:671.760000px;}
.x47_c00033{left:681.120000px;}
.x4a_c00033{left:682.560000px;}
.x1e_c00033{left:693.360000px;}
.xa_c00033{left:704.160000px;}
.x1f_c00033{left:714.960000px;}
.x1_c00033{left:723.600000px;}
@media print{
.v1_c00033{vertical-align:-10.240000pt;}
.v0_c00033{vertical-align:0.000000pt;}
.ls0_c00033{letter-spacing:0.000000pt;}
.ws0_c00033{word-spacing:-3.095253pt;}
.ws1_c00033{word-spacing:0.000000pt;}
.fs5_c00033{font-size:30.720000pt;}
.fs4_c00033{font-size:33.280000pt;}
.fsd_c00033{font-size:35.840000pt;}
.fsc_c00033{font-size:38.400000pt;}
.fs3_c00033{font-size:40.960000pt;}
.fs6_c00033{font-size:43.520000pt;}
.fs2_c00033{font-size:46.080000pt;}
.fs9_c00033{font-size:48.640000pt;}
.fsa_c00033{font-size:51.200000pt;}
.fs1_c00033{font-size:53.760000pt;}
.fs7_c00033{font-size:56.320000pt;}
.fs8_c00033{font-size:58.880000pt;}
.fsb_c00033{font-size:61.440000pt;}
.fs0_c00033{font-size:64.000000pt;}
.y0_c00033{bottom:0.000000pt;}
.y5e_c00033{bottom:39.040000pt;}
.y5d_c00033{bottom:39.680000pt;}
.y5f_c00033{bottom:41.600000pt;}
.y5c_c00033{bottom:42.240000pt;}
.y5a_c00033{bottom:76.800000pt;}
.y58_c00033{bottom:77.440000pt;}
.y5b_c00033{bottom:78.720000pt;}
.y59_c00033{bottom:79.360000pt;}
.y57_c00033{bottom:80.000000pt;}
.y55_c00033{bottom:113.920000pt;}
.y54_c00033{bottom:114.560000pt;}
.y52_c00033{bottom:115.200000pt;}
.y56_c00033{bottom:116.480000pt;}
.y53_c00033{bottom:117.120000pt;}
.y51_c00033{bottom:117.760000pt;}
.y50_c00033{bottom:152.960000pt;}
.y4f_c00033{bottom:154.880000pt;}
.y4e_c00033{bottom:155.520000pt;}
.y4d_c00033{bottom:190.720000pt;}
.y4c_c00033{bottom:192.640000pt;}
.y4b_c00033{bottom:193.280000pt;}
.y4a_c00033{bottom:228.480000pt;}
.y49_c00033{bottom:231.040000pt;}
.y46_c00033{bottom:266.240000pt;}
.y47_c00033{bottom:266.880000pt;}
.y48_c00033{bottom:268.800000pt;}
.y45_c00033{bottom:315.520000pt;}
.y44_c00033{bottom:316.160000pt;}
.y3f_c00033{bottom:350.720000pt;}
.y41_c00033{bottom:351.360000pt;}
.y42_c00033{bottom:353.280000pt;}
.y40_c00033{bottom:353.920000pt;}
.y43_c00033{bottom:354.560000pt;}
.y3e_c00033{bottom:389.120000pt;}
.y3b_c00033{bottom:389.760000pt;}
.y3c_c00033{bottom:391.040000pt;}
.y3d_c00033{bottom:391.680000pt;}
.y38_c00033{bottom:426.240000pt;}
.y3a_c00033{bottom:427.520000pt;}
.y37_c00033{bottom:429.440000pt;}
.y39_c00033{bottom:430.080000pt;}
.y33_c00033{bottom:464.640000pt;}
.y35_c00033{bottom:465.280000pt;}
.y36_c00033{bottom:465.920000pt;}
.y34_c00033{bottom:467.200000pt;}
.y32_c00033{bottom:467.840000pt;}
.y31_c00033{bottom:502.400000pt;}
.y2f_c00033{bottom:503.040000pt;}
.y30_c00033{bottom:503.680000pt;}
.y2d_c00033{bottom:504.960000pt;}
.y2e_c00033{bottom:505.600000pt;}
.y2c_c00033{bottom:540.800000pt;}
.y2a_c00033{bottom:541.440000pt;}
.y2b_c00033{bottom:542.720000pt;}
.y29_c00033{bottom:543.360000pt;}
.y25_c00033{bottom:578.560000pt;}
.y27_c00033{bottom:579.200000pt;}
.y28_c00033{bottom:581.120000pt;}
.y26_c00033{bottom:581.760000pt;}
.y24_c00033{bottom:616.320000pt;}
.y23_c00033{bottom:616.960000pt;}
.y22_c00033{bottom:619.520000pt;}
.y1c_c00033{bottom:654.080000pt;}
.y1e_c00033{bottom:654.720000pt;}
.y21_c00033{bottom:655.360000pt;}
.y20_c00033{bottom:656.640000pt;}
.y1f_c00033{bottom:657.280000pt;}
.y1d_c00033{bottom:657.920000pt;}
.y16_c00033{bottom:692.480000pt;}
.y19_c00033{bottom:693.120000pt;}
.y1a_c00033{bottom:693.760000pt;}
.y17_c00033{bottom:695.040000pt;}
.y18_c00033{bottom:695.680000pt;}
.y1b_c00033{bottom:696.320000pt;}
.y15_c00033{bottom:730.240000pt;}
.y14_c00033{bottom:730.880000pt;}
.y11_c00033{bottom:732.800000pt;}
.y12_c00033{bottom:733.440000pt;}
.y13_c00033{bottom:734.080000pt;}
.y10_c00033{bottom:768.000000pt;}
.yd_c00033{bottom:768.640000pt;}
.yf_c00033{bottom:769.280000pt;}
.ye_c00033{bottom:771.200000pt;}
.yc_c00033{bottom:807.040000pt;}
.ya_c00033{bottom:808.960000pt;}
.yb_c00033{bottom:809.600000pt;}
.y7_c00033{bottom:844.800000pt;}
.y6_c00033{bottom:846.720000pt;}
.y8_c00033{bottom:847.360000pt;}
.y9_c00033{bottom:848.000000pt;}
.y4_c00033{bottom:882.560000pt;}
.y2_c00033{bottom:884.480000pt;}
.y3_c00033{bottom:885.120000pt;}
.y5_c00033{bottom:885.760000pt;}
.y1_c00033{bottom:947.200000pt;}
.h7_c00033{height:27.645000pt;}
.h6_c00033{height:29.948750pt;}
.hf_c00033{height:32.252500pt;}
.he_c00033{height:34.556250pt;}
.h5_c00033{height:36.860000pt;}
.h8_c00033{height:39.163750pt;}
.h4_c00033{height:41.467500pt;}
.hb_c00033{height:43.771250pt;}
.hc_c00033{height:46.075000pt;}
.h3_c00033{height:48.378750pt;}
.h9_c00033{height:50.682500pt;}
.ha_c00033{height:52.986250pt;}
.hd_c00033{height:55.290000pt;}
.h2_c00033{height:57.593750pt;}
.h1_c00033{height:1018.666667pt;}
.h0_c00033{height:1018.880000pt;}
.w0_c00033{width:711.040000pt;}
.w1_c00033{width:711.333333pt;}
.x0_c00033{left:0.000000pt;}
.x2_c00033{left:69.120000pt;}
.xb_c00033{left:70.400000pt;}
.x44_c00033{left:72.960000pt;}
.x33_c00033{left:89.600000pt;}
.x2d_c00033{left:98.560000pt;}
.x45_c00033{left:107.520000pt;}
.x4c_c00033{left:108.800000pt;}
.x34_c00033{left:119.040000pt;}
.x4d_c00033{left:126.720000pt;}
.xc_c00033{left:128.000000pt;}
.x23_c00033{left:136.960000pt;}
.x29_c00033{left:138.240000pt;}
.x36_c00033{left:146.560000pt;}
.x3f_c00033{left:147.840000pt;}
.x2a_c00033{left:156.800000pt;}
.x12_c00033{left:165.760000pt;}
.x19_c00033{left:175.360000pt;}
.x43_c00033{left:184.960000pt;}
.x37_c00033{left:186.240000pt;}
.x3_c00033{left:194.560000pt;}
.x35_c00033{left:195.840000pt;}
.x51_c00033{left:203.520000pt;}
.x24_c00033{left:204.800000pt;}
.xd_c00033{left:213.760000pt;}
.x48_c00033{left:222.080000pt;}
.x1a_c00033{left:223.360000pt;}
.x3b_c00033{left:224.640000pt;}
.x25_c00033{left:232.320000pt;}
.x13_c00033{left:242.560000pt;}
.x2e_c00033{left:252.160000pt;}
.x2b_c00033{left:253.440000pt;}
.x40_c00033{left:262.400000pt;}
.x41_c00033{left:270.720000pt;}
.x38_c00033{left:272.000000pt;}
.x50_c00033{left:273.280000pt;}
.x26_c00033{left:280.320000pt;}
.x3c_c00033{left:281.600000pt;}
.x4_c00033{left:299.520000pt;}
.x46_c00033{left:308.480000pt;}
.x42_c00033{left:318.080000pt;}
.x14_c00033{left:319.360000pt;}
.xe_c00033{left:328.320000pt;}
.x5_c00033{left:337.920000pt;}
.x20_c00033{left:339.840000pt;}
.x4e_c00033{left:350.080000pt;}
.x1b_c00033{left:357.120000pt;}
.x6_c00033{left:366.720000pt;}
.xf_c00033{left:368.000000pt;}
.x3d_c00033{left:376.960000pt;}
.x15_c00033{left:386.560000pt;}
.x39_c00033{left:395.520000pt;}
.x2f_c00033{left:405.120000pt;}
.x16_c00033{left:414.720000pt;}
.x1c_c00033{left:424.320000pt;}
.x3a_c00033{left:433.920000pt;}
.x30_c00033{left:444.160000pt;}
.x27_c00033{left:453.120000pt;}
.x21_c00033{left:462.720000pt;}
.x4f_c00033{left:464.000000pt;}
.x7_c00033{left:472.320000pt;}
.x2c_c00033{left:482.560000pt;}
.x4b_c00033{left:489.600000pt;}
.x28_c00033{left:492.160000pt;}
.x17_c00033{left:511.360000pt;}
.x10_c00033{left:520.320000pt;}
.x8_c00033{left:530.560000pt;}
.x31_c00033{left:539.520000pt;}
.x11_c00033{left:541.440000pt;}
.x22_c00033{left:549.120000pt;}
.x1d_c00033{left:550.400000pt;}
.x9_c00033{left:558.080000pt;}
.x32_c00033{left:568.320000pt;}
.x49_c00033{left:577.280000pt;}
.x3e_c00033{left:587.520000pt;}
.x18_c00033{left:597.120000pt;}
.x47_c00033{left:605.440000pt;}
.x4a_c00033{left:606.720000pt;}
.x1e_c00033{left:616.320000pt;}
.xa_c00033{left:625.920000pt;}
.x1f_c00033{left:635.520000pt;}
.x1_c00033{left:643.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_dded67404908b1a04d2d7d6c.woff2')format("woff");}.ff1_c00034{font-family:ff1_c00034;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00034{transform:matrix(0.214225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214225,0.000000,0.000000,0.250000,0,0);}
.m32_c00034{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m49_c00034{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00034{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1d_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);}
.m2_c00034{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00034{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00034{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00034{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m13_c00034{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00034{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m48_c00034{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m15_c00034{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m50_c00034{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m11_c00034{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m3_c00034{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m39_c00034{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m28_c00034{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m7_c00034{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m31_c00034{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);}
.m52_c00034{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m21_c00034{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m8_c00034{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m24_c00034{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m18_c00034{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);}
.m27_c00034{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);}
.m51_c00034{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m29_c00034{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);}
.m46_c00034{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00034{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m44_c00034{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.mc_c00034{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00034{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);}
.m3e_c00034{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);}
.m45_c00034{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m30_c00034{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);}
.m4d_c00034{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);}
.m2a_c00034{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.mf_c00034{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);}
.m3a_c00034{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00034{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00034{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);}
.m25_c00034{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m38_c00034{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);}
.m12_c00034{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.ma_c00034{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m42_c00034{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m40_c00034{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.me_c00034{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);}
.md_c00034{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m23_c00034{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m16_c00034{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00034{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);}
.m4e_c00034{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00034{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00034{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m36_c00034{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m10_c00034{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);}
.m5_c00034{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);}
.m17_c00034{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.mb_c00034{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00034{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00034{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m22_c00034{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00034{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m47_c00034{transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);}
.m1_c00034{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m41_c00034{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m37_c00034{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);}
.m34_c00034{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m26_c00034{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m19_c00034{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);}
.m6_c00034{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m33_c00034{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m35_c00034{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m54_c00034{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m14_c00034{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m53_c00034{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);}
.m4f_c00034{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);}
.m55_c00034{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m20_c00034{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);}
.m4_c00034{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m43_c00034{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m9_c00034{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00034{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00034{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.m56_c00034{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.v0_c00034{vertical-align:0.000000px;}
.v1_c00034{vertical-align:14.400000px;}
.ls0_c00034{letter-spacing:0.000000px;}
.sc__c00034{text-shadow:none;}
.sc0_c00034{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00034{-webkit-text-stroke:0px transparent;}
.sc0_c00034{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00034{word-spacing:-3.174733px;}
.ws1_c00034{word-spacing:-1.795200px;}
.ws2_c00034{word-spacing:0.000000px;}
.fc0_c00034{color:transparent;}
.fsc_c00034{font-size:31.680000px;}
.fs1_c00034{font-size:34.560000px;}
.fsa_c00034{font-size:37.440000px;}
.fse_c00034{font-size:40.320000px;}
.fs7_c00034{font-size:43.200000px;}
.fs6_c00034{font-size:46.080000px;}
.fs5_c00034{font-size:48.960000px;}
.fs4_c00034{font-size:51.840000px;}
.fsb_c00034{font-size:54.720000px;}
.fsd_c00034{font-size:57.600000px;}
.fs3_c00034{font-size:60.480000px;}
.fs9_c00034{font-size:63.360000px;}
.fs8_c00034{font-size:66.240000px;}
.fs2_c00034{font-size:69.120000px;}
.fsf_c00034{font-size:72.000000px;}
.fs0_c00034{font-size:77.760000px;}
.y0_c00034{bottom:0.000000px;}
.y64_c00034{bottom:90.000000px;}
.y63_c00034{bottom:92.160000px;}
.y62_c00034{bottom:94.320000px;}
.y61_c00034{bottom:95.040000px;}
.y5f_c00034{bottom:133.200000px;}
.y5e_c00034{bottom:133.920000px;}
.y60_c00034{bottom:136.080000px;}
.y5d_c00034{bottom:136.800000px;}
.y5c_c00034{bottom:137.520000px;}
.y5b_c00034{bottom:176.400000px;}
.y58_c00034{bottom:177.120000px;}
.y59_c00034{bottom:178.560000px;}
.y57_c00034{bottom:179.280000px;}
.y5a_c00034{bottom:180.000000px;}
.y54_c00034{bottom:218.880000px;}
.y56_c00034{bottom:219.600000px;}
.y53_c00034{bottom:221.040000px;}
.y55_c00034{bottom:221.760000px;}
.y51_c00034{bottom:272.160000px;}
.y52_c00034{bottom:272.880000px;}
.y50_c00034{bottom:274.320000px;}
.y4f_c00034{bottom:275.040000px;}
.y4b_c00034{bottom:313.920000px;}
.y4e_c00034{bottom:314.640000px;}
.y4d_c00034{bottom:315.360000px;}
.y4c_c00034{bottom:317.520000px;}
.y4a_c00034{bottom:357.120000px;}
.y49_c00034{bottom:357.840000px;}
.y48_c00034{bottom:360.000000px;}
.y47_c00034{bottom:360.720000px;}
.y45_c00034{bottom:398.880000px;}
.y46_c00034{bottom:400.320000px;}
.y44_c00034{bottom:401.040000px;}
.y43_c00034{bottom:403.200000px;}
.y3f_c00034{bottom:442.800000px;}
.y41_c00034{bottom:444.960000px;}
.y40_c00034{bottom:445.680000px;}
.y42_c00034{bottom:446.400000px;}
.y3e_c00034{bottom:486.000000px;}
.y3d_c00034{bottom:486.720000px;}
.y3a_c00034{bottom:487.440000px;}
.y39_c00034{bottom:488.160000px;}
.y3b_c00034{bottom:488.880000px;}
.y3c_c00034{bottom:489.600000px;}
.y36_c00034{bottom:527.760000px;}
.y38_c00034{bottom:529.920000px;}
.y35_c00034{bottom:530.640000px;}
.y37_c00034{bottom:531.360000px;}
.y2f_c00034{bottom:570.240000px;}
.y33_c00034{bottom:570.960000px;}
.y31_c00034{bottom:571.680000px;}
.y30_c00034{bottom:572.400000px;}
.y32_c00034{bottom:573.120000px;}
.y34_c00034{bottom:573.840000px;}
.y2c_c00034{bottom:612.720000px;}
.y2e_c00034{bottom:614.160000px;}
.y2a_c00034{bottom:614.880000px;}
.y2b_c00034{bottom:615.600000px;}
.y2d_c00034{bottom:616.320000px;}
.y24_c00034{bottom:654.480000px;}
.y27_c00034{bottom:655.200000px;}
.y26_c00034{bottom:655.920000px;}
.y25_c00034{bottom:657.360000px;}
.y28_c00034{bottom:658.080000px;}
.y29_c00034{bottom:658.800000px;}
.y20_c00034{bottom:697.680000px;}
.y23_c00034{bottom:698.400000px;}
.y21_c00034{bottom:700.560000px;}
.y22_c00034{bottom:701.280000px;}
.y1d_c00034{bottom:740.160000px;}
.y1f_c00034{bottom:741.600000px;}
.y1a_c00034{bottom:742.320000px;}
.y1c_c00034{bottom:743.040000px;}
.y1e_c00034{bottom:743.760000px;}
.y1b_c00034{bottom:744.480000px;}
.y16_c00034{bottom:782.640000px;}
.y17_c00034{bottom:784.800000px;}
.y18_c00034{bottom:785.520000px;}
.y19_c00034{bottom:786.240000px;}
.y12_c00034{bottom:825.120000px;}
.y13_c00034{bottom:825.840000px;}
.y14_c00034{bottom:828.000000px;}
.y15_c00034{bottom:828.720000px;}
.yd_c00034{bottom:868.320000px;}
.y11_c00034{bottom:869.040000px;}
.yf_c00034{bottom:870.480000px;}
.ye_c00034{bottom:871.200000px;}
.y10_c00034{bottom:871.920000px;}
.y9_c00034{bottom:910.800000px;}
.yb_c00034{bottom:911.520000px;}
.yc_c00034{bottom:912.240000px;}
.y7_c00034{bottom:912.960000px;}
.y8_c00034{bottom:913.680000px;}
.ya_c00034{bottom:914.400000px;}
.y4_c00034{bottom:954.000000px;}
.y6_c00034{bottom:956.160000px;}
.y5_c00034{bottom:956.880000px;}
.y3_c00034{bottom:1007.280000px;}
.y2_c00034{bottom:1013.040000px;}
.y1_c00034{bottom:1054.800000px;}
.hf_c00034{height:28.508906px;}
.h3_c00034{height:31.100625px;}
.hc_c00034{height:33.692344px;}
.h11_c00034{height:36.284062px;}
.h9_c00034{height:38.875781px;}
.h8_c00034{height:41.467500px;}
.h7_c00034{height:44.059219px;}
.h6_c00034{height:46.650937px;}
.he_c00034{height:49.242656px;}
.h10_c00034{height:51.834375px;}
.h5_c00034{height:54.426094px;}
.hd_c00034{height:55.867500px;}
.hb_c00034{height:57.017812px;}
.ha_c00034{height:59.609531px;}
.h4_c00034{height:62.201250px;}
.h12_c00034{height:64.792969px;}
.h2_c00034{height:69.976406px;}
.h0_c00034{height:1152.720000px;}
.h1_c00034{height:1152.750000px;}
.w1_c00034{width:808.500000px;}
.w0_c00034{width:808.560000px;}
.x0_c00034{left:0.000000px;}
.x40_c00034{left:86.400000px;}
.x2_c00034{left:87.840000px;}
.x3_c00034{left:119.520000px;}
.x1c_c00034{left:123.120000px;}
.x37_c00034{left:130.320000px;}
.x22_c00034{left:131.760000px;}
.x48_c00034{left:151.200000px;}
.x32_c00034{left:152.640000px;}
.x23_c00034{left:163.440000px;}
.x38_c00034{left:173.520000px;}
.x27_c00034{left:184.320000px;}
.x47_c00034{left:185.760000px;}
.x4_c00034{left:196.560000px;}
.x13_c00034{left:206.640000px;}
.x28_c00034{left:216.000000px;}
.x33_c00034{left:227.520000px;}
.x14_c00034{left:238.320000px;}
.x34_c00034{left:249.840000px;}
.xb_c00034{left:259.920000px;}
.x15_c00034{left:270.000000px;}
.x2b_c00034{left:271.440000px;}
.x29_c00034{left:281.520000px;}
.x1d_c00034{left:282.960000px;}
.xc_c00034{left:291.600000px;}
.x5_c00034{left:302.400000px;}
.x2c_c00034{left:303.840000px;}
.x1e_c00034{left:313.920000px;}
.x39_c00034{left:324.000000px;}
.x2d_c00034{left:334.800000px;}
.x3b_c00034{left:336.240000px;}
.x6_c00034{left:345.600000px;}
.x16_c00034{left:367.920000px;}
.xd_c00034{left:378.000000px;}
.x7_c00034{left:388.800000px;}
.x17_c00034{left:399.600000px;}
.x2e_c00034{left:410.400000px;}
.x43_c00034{left:421.200000px;}
.x1f_c00034{left:432.000000px;}
.x2f_c00034{left:433.440000px;}
.x18_c00034{left:443.520000px;}
.x8_c00034{left:453.600000px;}
.x20_c00034{left:463.680000px;}
.xe_c00034{left:465.120000px;}
.x30_c00034{left:475.200000px;}
.xf_c00034{left:486.000000px;}
.x21_c00034{left:496.080000px;}
.x24_c00034{left:497.520000px;}
.x41_c00034{left:506.880000px;}
.x31_c00034{left:508.320000px;}
.x3c_c00034{left:517.680000px;}
.x44_c00034{left:527.760000px;}
.x46_c00034{left:529.200000px;}
.x25_c00034{left:530.640000px;}
.x10_c00034{left:540.000000px;}
.x42_c00034{left:550.800000px;}
.x19_c00034{left:561.600000px;}
.x35_c00034{left:572.400000px;}
.x49_c00034{left:581.040000px;}
.x11_c00034{left:583.200000px;}
.x2a_c00034{left:594.000000px;}
.x1a_c00034{left:604.080000px;}
.x9_c00034{left:615.600000px;}
.x36_c00034{left:626.400000px;}
.x3d_c00034{left:636.480000px;}
.x26_c00034{left:648.000000px;}
.x3e_c00034{left:658.800000px;}
.x1b_c00034{left:669.600000px;}
.x12_c00034{left:691.200000px;}
.xa_c00034{left:702.000000px;}
.x45_c00034{left:712.080000px;}
.x3a_c00034{left:723.600000px;}
.x3f_c00034{left:734.400000px;}
.x1_c00034{left:744.480000px;}
@media print{
.v0_c00034{vertical-align:0.000000pt;}
.v1_c00034{vertical-align:12.800000pt;}
.ls0_c00034{letter-spacing:0.000000pt;}
.ws0_c00034{word-spacing:-2.821985pt;}
.ws1_c00034{word-spacing:-1.595733pt;}
.ws2_c00034{word-spacing:0.000000pt;}
.fsc_c00034{font-size:28.160000pt;}
.fs1_c00034{font-size:30.720000pt;}
.fsa_c00034{font-size:33.280000pt;}
.fse_c00034{font-size:35.840000pt;}
.fs7_c00034{font-size:38.400000pt;}
.fs6_c00034{font-size:40.960000pt;}
.fs5_c00034{font-size:43.520000pt;}
.fs4_c00034{font-size:46.080000pt;}
.fsb_c00034{font-size:48.640000pt;}
.fsd_c00034{font-size:51.200000pt;}
.fs3_c00034{font-size:53.760000pt;}
.fs9_c00034{font-size:56.320000pt;}
.fs8_c00034{font-size:58.880000pt;}
.fs2_c00034{font-size:61.440000pt;}
.fsf_c00034{font-size:64.000000pt;}
.fs0_c00034{font-size:69.120000pt;}
.y0_c00034{bottom:0.000000pt;}
.y64_c00034{bottom:80.000000pt;}
.y63_c00034{bottom:81.920000pt;}
.y62_c00034{bottom:83.840000pt;}
.y61_c00034{bottom:84.480000pt;}
.y5f_c00034{bottom:118.400000pt;}
.y5e_c00034{bottom:119.040000pt;}
.y60_c00034{bottom:120.960000pt;}
.y5d_c00034{bottom:121.600000pt;}
.y5c_c00034{bottom:122.240000pt;}
.y5b_c00034{bottom:156.800000pt;}
.y58_c00034{bottom:157.440000pt;}
.y59_c00034{bottom:158.720000pt;}
.y57_c00034{bottom:159.360000pt;}
.y5a_c00034{bottom:160.000000pt;}
.y54_c00034{bottom:194.560000pt;}
.y56_c00034{bottom:195.200000pt;}
.y53_c00034{bottom:196.480000pt;}
.y55_c00034{bottom:197.120000pt;}
.y51_c00034{bottom:241.920000pt;}
.y52_c00034{bottom:242.560000pt;}
.y50_c00034{bottom:243.840000pt;}
.y4f_c00034{bottom:244.480000pt;}
.y4b_c00034{bottom:279.040000pt;}
.y4e_c00034{bottom:279.680000pt;}
.y4d_c00034{bottom:280.320000pt;}
.y4c_c00034{bottom:282.240000pt;}
.y4a_c00034{bottom:317.440000pt;}
.y49_c00034{bottom:318.080000pt;}
.y48_c00034{bottom:320.000000pt;}
.y47_c00034{bottom:320.640000pt;}
.y45_c00034{bottom:354.560000pt;}
.y46_c00034{bottom:355.840000pt;}
.y44_c00034{bottom:356.480000pt;}
.y43_c00034{bottom:358.400000pt;}
.y3f_c00034{bottom:393.600000pt;}
.y41_c00034{bottom:395.520000pt;}
.y40_c00034{bottom:396.160000pt;}
.y42_c00034{bottom:396.800000pt;}
.y3e_c00034{bottom:432.000000pt;}
.y3d_c00034{bottom:432.640000pt;}
.y3a_c00034{bottom:433.280000pt;}
.y39_c00034{bottom:433.920000pt;}
.y3b_c00034{bottom:434.560000pt;}
.y3c_c00034{bottom:435.200000pt;}
.y36_c00034{bottom:469.120000pt;}
.y38_c00034{bottom:471.040000pt;}
.y35_c00034{bottom:471.680000pt;}
.y37_c00034{bottom:472.320000pt;}
.y2f_c00034{bottom:506.880000pt;}
.y33_c00034{bottom:507.520000pt;}
.y31_c00034{bottom:508.160000pt;}
.y30_c00034{bottom:508.800000pt;}
.y32_c00034{bottom:509.440000pt;}
.y34_c00034{bottom:510.080000pt;}
.y2c_c00034{bottom:544.640000pt;}
.y2e_c00034{bottom:545.920000pt;}
.y2a_c00034{bottom:546.560000pt;}
.y2b_c00034{bottom:547.200000pt;}
.y2d_c00034{bottom:547.840000pt;}
.y24_c00034{bottom:581.760000pt;}
.y27_c00034{bottom:582.400000pt;}
.y26_c00034{bottom:583.040000pt;}
.y25_c00034{bottom:584.320000pt;}
.y28_c00034{bottom:584.960000pt;}
.y29_c00034{bottom:585.600000pt;}
.y20_c00034{bottom:620.160000pt;}
.y23_c00034{bottom:620.800000pt;}
.y21_c00034{bottom:622.720000pt;}
.y22_c00034{bottom:623.360000pt;}
.y1d_c00034{bottom:657.920000pt;}
.y1f_c00034{bottom:659.200000pt;}
.y1a_c00034{bottom:659.840000pt;}
.y1c_c00034{bottom:660.480000pt;}
.y1e_c00034{bottom:661.120000pt;}
.y1b_c00034{bottom:661.760000pt;}
.y16_c00034{bottom:695.680000pt;}
.y17_c00034{bottom:697.600000pt;}
.y18_c00034{bottom:698.240000pt;}
.y19_c00034{bottom:698.880000pt;}
.y12_c00034{bottom:733.440000pt;}
.y13_c00034{bottom:734.080000pt;}
.y14_c00034{bottom:736.000000pt;}
.y15_c00034{bottom:736.640000pt;}
.yd_c00034{bottom:771.840000pt;}
.y11_c00034{bottom:772.480000pt;}
.yf_c00034{bottom:773.760000pt;}
.ye_c00034{bottom:774.400000pt;}
.y10_c00034{bottom:775.040000pt;}
.y9_c00034{bottom:809.600000pt;}
.yb_c00034{bottom:810.240000pt;}
.yc_c00034{bottom:810.880000pt;}
.y7_c00034{bottom:811.520000pt;}
.y8_c00034{bottom:812.160000pt;}
.ya_c00034{bottom:812.800000pt;}
.y4_c00034{bottom:848.000000pt;}
.y6_c00034{bottom:849.920000pt;}
.y5_c00034{bottom:850.560000pt;}
.y3_c00034{bottom:895.360000pt;}
.y2_c00034{bottom:900.480000pt;}
.y1_c00034{bottom:937.600000pt;}
.hf_c00034{height:25.341250pt;}
.h3_c00034{height:27.645000pt;}
.hc_c00034{height:29.948750pt;}
.h11_c00034{height:32.252500pt;}
.h9_c00034{height:34.556250pt;}
.h8_c00034{height:36.860000pt;}
.h7_c00034{height:39.163750pt;}
.h6_c00034{height:41.467500pt;}
.he_c00034{height:43.771250pt;}
.h10_c00034{height:46.075000pt;}
.h5_c00034{height:48.378750pt;}
.hd_c00034{height:49.660000pt;}
.hb_c00034{height:50.682500pt;}
.ha_c00034{height:52.986250pt;}
.h4_c00034{height:55.290000pt;}
.h12_c00034{height:57.593750pt;}
.h2_c00034{height:62.201250pt;}
.h0_c00034{height:1024.640000pt;}
.h1_c00034{height:1024.666667pt;}
.w1_c00034{width:718.666667pt;}
.w0_c00034{width:718.720000pt;}
.x0_c00034{left:0.000000pt;}
.x40_c00034{left:76.800000pt;}
.x2_c00034{left:78.080000pt;}
.x3_c00034{left:106.240000pt;}
.x1c_c00034{left:109.440000pt;}
.x37_c00034{left:115.840000pt;}
.x22_c00034{left:117.120000pt;}
.x48_c00034{left:134.400000pt;}
.x32_c00034{left:135.680000pt;}
.x23_c00034{left:145.280000pt;}
.x38_c00034{left:154.240000pt;}
.x27_c00034{left:163.840000pt;}
.x47_c00034{left:165.120000pt;}
.x4_c00034{left:174.720000pt;}
.x13_c00034{left:183.680000pt;}
.x28_c00034{left:192.000000pt;}
.x33_c00034{left:202.240000pt;}
.x14_c00034{left:211.840000pt;}
.x34_c00034{left:222.080000pt;}
.xb_c00034{left:231.040000pt;}
.x15_c00034{left:240.000000pt;}
.x2b_c00034{left:241.280000pt;}
.x29_c00034{left:250.240000pt;}
.x1d_c00034{left:251.520000pt;}
.xc_c00034{left:259.200000pt;}
.x5_c00034{left:268.800000pt;}
.x2c_c00034{left:270.080000pt;}
.x1e_c00034{left:279.040000pt;}
.x39_c00034{left:288.000000pt;}
.x2d_c00034{left:297.600000pt;}
.x3b_c00034{left:298.880000pt;}
.x6_c00034{left:307.200000pt;}
.x16_c00034{left:327.040000pt;}
.xd_c00034{left:336.000000pt;}
.x7_c00034{left:345.600000pt;}
.x17_c00034{left:355.200000pt;}
.x2e_c00034{left:364.800000pt;}
.x43_c00034{left:374.400000pt;}
.x1f_c00034{left:384.000000pt;}
.x2f_c00034{left:385.280000pt;}
.x18_c00034{left:394.240000pt;}
.x8_c00034{left:403.200000pt;}
.x20_c00034{left:412.160000pt;}
.xe_c00034{left:413.440000pt;}
.x30_c00034{left:422.400000pt;}
.xf_c00034{left:432.000000pt;}
.x21_c00034{left:440.960000pt;}
.x24_c00034{left:442.240000pt;}
.x41_c00034{left:450.560000pt;}
.x31_c00034{left:451.840000pt;}
.x3c_c00034{left:460.160000pt;}
.x44_c00034{left:469.120000pt;}
.x46_c00034{left:470.400000pt;}
.x25_c00034{left:471.680000pt;}
.x10_c00034{left:480.000000pt;}
.x42_c00034{left:489.600000pt;}
.x19_c00034{left:499.200000pt;}
.x35_c00034{left:508.800000pt;}
.x49_c00034{left:516.480000pt;}
.x11_c00034{left:518.400000pt;}
.x2a_c00034{left:528.000000pt;}
.x1a_c00034{left:536.960000pt;}
.x9_c00034{left:547.200000pt;}
.x36_c00034{left:556.800000pt;}
.x3d_c00034{left:565.760000pt;}
.x26_c00034{left:576.000000pt;}
.x3e_c00034{left:585.600000pt;}
.x1b_c00034{left:595.200000pt;}
.x12_c00034{left:614.400000pt;}
.xa_c00034{left:624.000000pt;}
.x45_c00034{left:632.960000pt;}
.x3a_c00034{left:643.200000pt;}
.x3f_c00034{left:652.800000pt;}
.x1_c00034{left:661.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_25e89644d64cbfac18d4ef74.woff2')format("woff");}.ff1_c00035{font-family:ff1_c00035;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00035{transform:matrix(0.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);}
.m40_c00035{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m44_c00035{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m54_c00035{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m26_c00035{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00035{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00035{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m55_c00035{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00035{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m50_c00035{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);}
.m41_c00035{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m34_c00035{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m35_c00035{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m11_c00035{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);}
.m45_c00035{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m27_c00035{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m32_c00035{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m8_c00035{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);}
.m28_c00035{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.me_c00035{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);}
.m2d_c00035{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);}
.m12_c00035{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00035{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00035{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);}
.m5_c00035{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.mc_c00035{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00035{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m46_c00035{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);}
.m21_c00035{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m33_c00035{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);}
.m37_c00035{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);}
.m1f_c00035{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m52_c00035{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m17_c00035{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m7_c00035{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00035{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);}
.m38_c00035{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m16_c00035{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);}
.m3b_c00035{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m31_c00035{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00035{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.mf_c00035{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.ma_c00035{transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);}
.m1_c00035{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00035{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00035{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);}
.m19_c00035{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00035{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);}
.m14_c00035{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m42_c00035{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00035{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m47_c00035{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m20_c00035{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);}
.m2_c00035{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m36_c00035{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m6_c00035{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m9_c00035{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);}
.m39_c00035{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00035{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.mb_c00035{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00035{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m18_c00035{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m13_c00035{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);}
.md_c00035{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00035{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m51_c00035{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);}
.m22_c00035{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m24_c00035{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);}
.m56_c00035{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m10_c00035{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00035{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m48_c00035{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);}
.m4a_c00035{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m49_c00035{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m3_c00035{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);}
.m2c_c00035{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m15_c00035{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m30_c00035{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m23_c00035{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m53_c00035{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);}
.m4_c00035{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);}
.m1a_c00035{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);}
.m25_c00035{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m29_c00035{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);}
.m3c_c00035{transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);}
.m43_c00035{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00035{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.v0_c00035{vertical-align:0.000000px;}
.ls0_c00035{letter-spacing:0.000000px;}
.sc__c00035{text-shadow:none;}
.sc0_c00035{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00035{-webkit-text-stroke:0px transparent;}
.sc0_c00035{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00035{word-spacing:-1.535520px;}
.ws2_c00035{word-spacing:0.000000px;}
.ws0_c00035{word-spacing:9.658800px;}
.fc0_c00035{color:transparent;}
.fse_c00035{font-size:14.400000px;}
.fs2_c00035{font-size:34.560000px;}
.fsd_c00035{font-size:37.440000px;}
.fsc_c00035{font-size:40.320000px;}
.fs7_c00035{font-size:43.200000px;}
.fs3_c00035{font-size:46.080000px;}
.fs5_c00035{font-size:48.960000px;}
.fs1_c00035{font-size:51.840000px;}
.fs4_c00035{font-size:54.720000px;}
.fsa_c00035{font-size:57.600000px;}
.fs6_c00035{font-size:60.480000px;}
.fs8_c00035{font-size:63.360000px;}
.fsb_c00035{font-size:66.240000px;}
.fs9_c00035{font-size:69.120000px;}
.fs0_c00035{font-size:72.000000px;}
.y0_c00035{bottom:0.000000px;}
.y61_c00035{bottom:41.040000px;}
.y60_c00035{bottom:41.760000px;}
.y5f_c00035{bottom:44.640000px;}
.y5e_c00035{bottom:45.360000px;}
.y5d_c00035{bottom:82.800000px;}
.y5c_c00035{bottom:85.680000px;}
.y5b_c00035{bottom:86.400000px;}
.y5a_c00035{bottom:87.120000px;}
.y59_c00035{bottom:88.560000px;}
.y54_c00035{bottom:126.720000px;}
.y56_c00035{bottom:127.440000px;}
.y58_c00035{bottom:128.160000px;}
.y57_c00035{bottom:128.880000px;}
.y55_c00035{bottom:129.600000px;}
.y53_c00035{bottom:131.040000px;}
.y4f_c00035{bottom:169.920000px;}
.y52_c00035{bottom:171.360000px;}
.y50_c00035{bottom:172.080000px;}
.y51_c00035{bottom:174.960000px;}
.y4d_c00035{bottom:212.400000px;}
.y4e_c00035{bottom:213.840000px;}
.y4c_c00035{bottom:214.560000px;}
.y4b_c00035{bottom:215.280000px;}
.y4a_c00035{bottom:264.240000px;}
.y49_c00035{bottom:265.680000px;}
.y48_c00035{bottom:267.840000px;}
.y47_c00035{bottom:268.560000px;}
.y45_c00035{bottom:307.440000px;}
.y46_c00035{bottom:309.600000px;}
.y44_c00035{bottom:310.320000px;}
.y43_c00035{bottom:311.040000px;}
.y42_c00035{bottom:349.920000px;}
.y41_c00035{bottom:352.080000px;}
.y40_c00035{bottom:352.800000px;}
.y3f_c00035{bottom:391.680000px;}
.y3e_c00035{bottom:393.120000px;}
.y3a_c00035{bottom:393.840000px;}
.y3d_c00035{bottom:395.280000px;}
.y3c_c00035{bottom:396.000000px;}
.y3b_c00035{bottom:396.720000px;}
.y39_c00035{bottom:434.880000px;}
.y38_c00035{bottom:435.600000px;}
.y36_c00035{bottom:437.760000px;}
.y37_c00035{bottom:438.480000px;}
.y35_c00035{bottom:488.160000px;}
.y33_c00035{bottom:531.360000px;}
.y34_c00035{bottom:533.520000px;}
.y32_c00035{bottom:534.240000px;}
.y2f_c00035{bottom:573.840000px;}
.y2e_c00035{bottom:574.560000px;}
.y31_c00035{bottom:576.000000px;}
.y30_c00035{bottom:576.720000px;}
.y2c_c00035{bottom:616.320000px;}
.y29_c00035{bottom:617.040000px;}
.y2d_c00035{bottom:618.480000px;}
.y2a_c00035{bottom:619.200000px;}
.y2b_c00035{bottom:619.920000px;}
.y26_c00035{bottom:669.600000px;}
.y28_c00035{bottom:672.480000px;}
.y27_c00035{bottom:673.200000px;}
.y24_c00035{bottom:712.080000px;}
.y22_c00035{bottom:712.800000px;}
.y23_c00035{bottom:714.240000px;}
.y21_c00035{bottom:714.960000px;}
.y25_c00035{bottom:715.680000px;}
.y1d_c00035{bottom:755.280000px;}
.y20_c00035{bottom:757.440000px;}
.y1f_c00035{bottom:758.160000px;}
.y1e_c00035{bottom:758.880000px;}
.y1b_c00035{bottom:797.040000px;}
.y1a_c00035{bottom:799.920000px;}
.y19_c00035{bottom:800.640000px;}
.y1c_c00035{bottom:801.360000px;}
.y15_c00035{bottom:839.520000px;}
.y18_c00035{bottom:840.960000px;}
.y17_c00035{bottom:842.400000px;}
.y14_c00035{bottom:843.120000px;}
.y16_c00035{bottom:843.840000px;}
.yf_c00035{bottom:882.720000px;}
.y13_c00035{bottom:883.440000px;}
.y12_c00035{bottom:884.880000px;}
.y11_c00035{bottom:885.600000px;}
.y10_c00035{bottom:886.320000px;}
.yb_c00035{bottom:924.480000px;}
.yc_c00035{bottom:925.920000px;}
.yd_c00035{bottom:928.080000px;}
.ye_c00035{bottom:928.800000px;}
.y9_c00035{bottom:967.680000px;}
.y7_c00035{bottom:968.400000px;}
.y6_c00035{bottom:969.840000px;}
.y8_c00035{bottom:970.560000px;}
.ya_c00035{bottom:971.280000px;}
.y4_c00035{bottom:1010.880000px;}
.y5_c00035{bottom:1012.320000px;}
.y2_c00035{bottom:1013.040000px;}
.y3_c00035{bottom:1013.760000px;}
.y1_c00035{bottom:1098.720000px;}
.h10_c00035{height:12.958594px;}
.h4_c00035{height:31.100625px;}
.hf_c00035{height:33.692344px;}
.he_c00035{height:36.284062px;}
.h9_c00035{height:38.875781px;}
.h5_c00035{height:41.467500px;}
.h7_c00035{height:44.059219px;}
.h3_c00035{height:46.650937px;}
.h6_c00035{height:49.242656px;}
.hc_c00035{height:51.834375px;}
.h8_c00035{height:54.426094px;}
.ha_c00035{height:57.017812px;}
.hd_c00035{height:59.609531px;}
.hb_c00035{height:62.201250px;}
.h2_c00035{height:64.792969px;}
.h1_c00035{height:1149.000000px;}
.h0_c00035{height:1149.120000px;}
.w1_c00035{width:804.000000px;}
.w0_c00035{width:804.240000px;}
.x0_c00035{left:0.000000px;}
.x25_c00035{left:84.960000px;}
.x2_c00035{left:86.400000px;}
.x26_c00035{left:117.360000px;}
.x3b_c00035{left:119.520000px;}
.x20_c00035{left:128.880000px;}
.x59_c00035{left:138.240000px;}
.x27_c00035{left:140.400000px;}
.x40_c00035{left:149.760000px;}
.x13_c00035{left:151.200000px;}
.x50_c00035{left:159.840000px;}
.x2e_c00035{left:161.280000px;}
.xb_c00035{left:172.080000px;}
.x3c_c00035{left:182.160000px;}
.xc_c00035{left:192.960000px;}
.x21_c00035{left:194.400000px;}
.x3_c00035{left:204.480000px;}
.x49_c00035{left:214.560000px;}
.x22_c00035{left:216.000000px;}
.x45_c00035{left:225.360000px;}
.x14_c00035{left:236.160000px;}
.x1b_c00035{left:237.600000px;}
.x52_c00035{left:244.800000px;}
.x41_c00035{left:246.960000px;}
.x4a_c00035{left:248.400000px;}
.x2f_c00035{left:257.760000px;}
.x4e_c00035{left:267.840000px;}
.x33_c00035{left:270.000000px;}
.x2c_c00035{left:279.360000px;}
.x46_c00035{left:288.720000px;}
.x3d_c00035{left:290.880000px;}
.x5a_c00035{left:300.240000px;}
.x28_c00035{left:302.400000px;}
.x3e_c00035{left:311.040000px;}
.x1c_c00035{left:312.480000px;}
.x4_c00035{left:322.560000px;}
.x42_c00035{left:324.000000px;}
.x35_c00035{left:332.640000px;}
.xd_c00035{left:334.080000px;}
.x5_c00035{left:355.680000px;}
.x34_c00035{left:365.040000px;}
.x6_c00035{left:386.640000px;}
.x15_c00035{left:388.080000px;}
.x53_c00035{left:396.720000px;}
.x30_c00035{left:408.240000px;}
.x4b_c00035{left:419.040000px;}
.x16_c00035{left:420.480000px;}
.x5b_c00035{left:428.400000px;}
.x7_c00035{left:429.840000px;}
.xe_c00035{left:441.360000px;}
.x4c_c00035{left:449.280000px;}
.x29_c00035{left:451.440000px;}
.x56_c00035{left:460.800000px;}
.x3f_c00035{left:462.240000px;}
.x5c_c00035{left:470.880000px;}
.x1d_c00035{left:473.040000px;}
.xf_c00035{left:475.200000px;}
.x23_c00035{left:483.840000px;}
.x36_c00035{left:493.920000px;}
.x8_c00035{left:505.440000px;}
.x17_c00035{left:516.240000px;}
.x43_c00035{left:524.880000px;}
.x5f_c00035{left:526.320000px;}
.x54_c00035{left:535.680000px;}
.x51_c00035{left:537.120000px;}
.x5d_c00035{left:547.920000px;}
.x9_c00035{left:549.360000px;}
.x18_c00035{left:559.440000px;}
.x38_c00035{left:568.800000px;}
.x1e_c00035{left:570.960000px;}
.x5e_c00035{left:579.600000px;}
.x37_c00035{left:581.040000px;}
.x57_c00035{left:591.840000px;}
.x4f_c00035{left:601.200000px;}
.x24_c00035{left:602.640000px;}
.x19_c00035{left:613.440000px;}
.x44_c00035{left:623.520000px;}
.x1f_c00035{left:624.960000px;}
.x2a_c00035{left:633.600000px;}
.x10_c00035{left:635.040000px;}
.x4d_c00035{left:643.680000px;}
.xa_c00035{left:647.280000px;}
.x31_c00035{left:656.640000px;}
.x39_c00035{left:666.000000px;}
.x47_c00035{left:667.440000px;}
.x2d_c00035{left:668.880000px;}
.x55_c00035{left:677.520000px;}
.x11_c00035{left:679.680000px;}
.x2b_c00035{left:690.480000px;}
.x48_c00035{left:697.680000px;}
.x58_c00035{left:699.120000px;}
.x32_c00035{left:710.640000px;}
.x1a_c00035{left:712.080000px;}
.x3a_c00035{left:720.720000px;}
.x12_c00035{left:722.160000px;}
.x1_c00035{left:740.160000px;}
@media print{
.v0_c00035{vertical-align:0.000000pt;}
.ls0_c00035{letter-spacing:0.000000pt;}
.ws1_c00035{word-spacing:-1.364907pt;}
.ws2_c00035{word-spacing:0.000000pt;}
.ws0_c00035{word-spacing:8.585600pt;}
.fse_c00035{font-size:12.800000pt;}
.fs2_c00035{font-size:30.720000pt;}
.fsd_c00035{font-size:33.280000pt;}
.fsc_c00035{font-size:35.840000pt;}
.fs7_c00035{font-size:38.400000pt;}
.fs3_c00035{font-size:40.960000pt;}
.fs5_c00035{font-size:43.520000pt;}
.fs1_c00035{font-size:46.080000pt;}
.fs4_c00035{font-size:48.640000pt;}
.fsa_c00035{font-size:51.200000pt;}
.fs6_c00035{font-size:53.760000pt;}
.fs8_c00035{font-size:56.320000pt;}
.fsb_c00035{font-size:58.880000pt;}
.fs9_c00035{font-size:61.440000pt;}
.fs0_c00035{font-size:64.000000pt;}
.y0_c00035{bottom:0.000000pt;}
.y61_c00035{bottom:36.480000pt;}
.y60_c00035{bottom:37.120000pt;}
.y5f_c00035{bottom:39.680000pt;}
.y5e_c00035{bottom:40.320000pt;}
.y5d_c00035{bottom:73.600000pt;}
.y5c_c00035{bottom:76.160000pt;}
.y5b_c00035{bottom:76.800000pt;}
.y5a_c00035{bottom:77.440000pt;}
.y59_c00035{bottom:78.720000pt;}
.y54_c00035{bottom:112.640000pt;}
.y56_c00035{bottom:113.280000pt;}
.y58_c00035{bottom:113.920000pt;}
.y57_c00035{bottom:114.560000pt;}
.y55_c00035{bottom:115.200000pt;}
.y53_c00035{bottom:116.480000pt;}
.y4f_c00035{bottom:151.040000pt;}
.y52_c00035{bottom:152.320000pt;}
.y50_c00035{bottom:152.960000pt;}
.y51_c00035{bottom:155.520000pt;}
.y4d_c00035{bottom:188.800000pt;}
.y4e_c00035{bottom:190.080000pt;}
.y4c_c00035{bottom:190.720000pt;}
.y4b_c00035{bottom:191.360000pt;}
.y4a_c00035{bottom:234.880000pt;}
.y49_c00035{bottom:236.160000pt;}
.y48_c00035{bottom:238.080000pt;}
.y47_c00035{bottom:238.720000pt;}
.y45_c00035{bottom:273.280000pt;}
.y46_c00035{bottom:275.200000pt;}
.y44_c00035{bottom:275.840000pt;}
.y43_c00035{bottom:276.480000pt;}
.y42_c00035{bottom:311.040000pt;}
.y41_c00035{bottom:312.960000pt;}
.y40_c00035{bottom:313.600000pt;}
.y3f_c00035{bottom:348.160000pt;}
.y3e_c00035{bottom:349.440000pt;}
.y3a_c00035{bottom:350.080000pt;}
.y3d_c00035{bottom:351.360000pt;}
.y3c_c00035{bottom:352.000000pt;}
.y3b_c00035{bottom:352.640000pt;}
.y39_c00035{bottom:386.560000pt;}
.y38_c00035{bottom:387.200000pt;}
.y36_c00035{bottom:389.120000pt;}
.y37_c00035{bottom:389.760000pt;}
.y35_c00035{bottom:433.920000pt;}
.y33_c00035{bottom:472.320000pt;}
.y34_c00035{bottom:474.240000pt;}
.y32_c00035{bottom:474.880000pt;}
.y2f_c00035{bottom:510.080000pt;}
.y2e_c00035{bottom:510.720000pt;}
.y31_c00035{bottom:512.000000pt;}
.y30_c00035{bottom:512.640000pt;}
.y2c_c00035{bottom:547.840000pt;}
.y29_c00035{bottom:548.480000pt;}
.y2d_c00035{bottom:549.760000pt;}
.y2a_c00035{bottom:550.400000pt;}
.y2b_c00035{bottom:551.040000pt;}
.y26_c00035{bottom:595.200000pt;}
.y28_c00035{bottom:597.760000pt;}
.y27_c00035{bottom:598.400000pt;}
.y24_c00035{bottom:632.960000pt;}
.y22_c00035{bottom:633.600000pt;}
.y23_c00035{bottom:634.880000pt;}
.y21_c00035{bottom:635.520000pt;}
.y25_c00035{bottom:636.160000pt;}
.y1d_c00035{bottom:671.360000pt;}
.y20_c00035{bottom:673.280000pt;}
.y1f_c00035{bottom:673.920000pt;}
.y1e_c00035{bottom:674.560000pt;}
.y1b_c00035{bottom:708.480000pt;}
.y1a_c00035{bottom:711.040000pt;}
.y19_c00035{bottom:711.680000pt;}
.y1c_c00035{bottom:712.320000pt;}
.y15_c00035{bottom:746.240000pt;}
.y18_c00035{bottom:747.520000pt;}
.y17_c00035{bottom:748.800000pt;}
.y14_c00035{bottom:749.440000pt;}
.y16_c00035{bottom:750.080000pt;}
.yf_c00035{bottom:784.640000pt;}
.y13_c00035{bottom:785.280000pt;}
.y12_c00035{bottom:786.560000pt;}
.y11_c00035{bottom:787.200000pt;}
.y10_c00035{bottom:787.840000pt;}
.yb_c00035{bottom:821.760000pt;}
.yc_c00035{bottom:823.040000pt;}
.yd_c00035{bottom:824.960000pt;}
.ye_c00035{bottom:825.600000pt;}
.y9_c00035{bottom:860.160000pt;}
.y7_c00035{bottom:860.800000pt;}
.y6_c00035{bottom:862.080000pt;}
.y8_c00035{bottom:862.720000pt;}
.ya_c00035{bottom:863.360000pt;}
.y4_c00035{bottom:898.560000pt;}
.y5_c00035{bottom:899.840000pt;}
.y2_c00035{bottom:900.480000pt;}
.y3_c00035{bottom:901.120000pt;}
.y1_c00035{bottom:976.640000pt;}
.h10_c00035{height:11.518750pt;}
.h4_c00035{height:27.645000pt;}
.hf_c00035{height:29.948750pt;}
.he_c00035{height:32.252500pt;}
.h9_c00035{height:34.556250pt;}
.h5_c00035{height:36.860000pt;}
.h7_c00035{height:39.163750pt;}
.h3_c00035{height:41.467500pt;}
.h6_c00035{height:43.771250pt;}
.hc_c00035{height:46.075000pt;}
.h8_c00035{height:48.378750pt;}
.ha_c00035{height:50.682500pt;}
.hd_c00035{height:52.986250pt;}
.hb_c00035{height:55.290000pt;}
.h2_c00035{height:57.593750pt;}
.h1_c00035{height:1021.333333pt;}
.h0_c00035{height:1021.440000pt;}
.w1_c00035{width:714.666667pt;}
.w0_c00035{width:714.880000pt;}
.x0_c00035{left:0.000000pt;}
.x25_c00035{left:75.520000pt;}
.x2_c00035{left:76.800000pt;}
.x26_c00035{left:104.320000pt;}
.x3b_c00035{left:106.240000pt;}
.x20_c00035{left:114.560000pt;}
.x59_c00035{left:122.880000pt;}
.x27_c00035{left:124.800000pt;}
.x40_c00035{left:133.120000pt;}
.x13_c00035{left:134.400000pt;}
.x50_c00035{left:142.080000pt;}
.x2e_c00035{left:143.360000pt;}
.xb_c00035{left:152.960000pt;}
.x3c_c00035{left:161.920000pt;}
.xc_c00035{left:171.520000pt;}
.x21_c00035{left:172.800000pt;}
.x3_c00035{left:181.760000pt;}
.x49_c00035{left:190.720000pt;}
.x22_c00035{left:192.000000pt;}
.x45_c00035{left:200.320000pt;}
.x14_c00035{left:209.920000pt;}
.x1b_c00035{left:211.200000pt;}
.x52_c00035{left:217.600000pt;}
.x41_c00035{left:219.520000pt;}
.x4a_c00035{left:220.800000pt;}
.x2f_c00035{left:229.120000pt;}
.x4e_c00035{left:238.080000pt;}
.x33_c00035{left:240.000000pt;}
.x2c_c00035{left:248.320000pt;}
.x46_c00035{left:256.640000pt;}
.x3d_c00035{left:258.560000pt;}
.x5a_c00035{left:266.880000pt;}
.x28_c00035{left:268.800000pt;}
.x3e_c00035{left:276.480000pt;}
.x1c_c00035{left:277.760000pt;}
.x4_c00035{left:286.720000pt;}
.x42_c00035{left:288.000000pt;}
.x35_c00035{left:295.680000pt;}
.xd_c00035{left:296.960000pt;}
.x5_c00035{left:316.160000pt;}
.x34_c00035{left:324.480000pt;}
.x6_c00035{left:343.680000pt;}
.x15_c00035{left:344.960000pt;}
.x53_c00035{left:352.640000pt;}
.x30_c00035{left:362.880000pt;}
.x4b_c00035{left:372.480000pt;}
.x16_c00035{left:373.760000pt;}
.x5b_c00035{left:380.800000pt;}
.x7_c00035{left:382.080000pt;}
.xe_c00035{left:392.320000pt;}
.x4c_c00035{left:399.360000pt;}
.x29_c00035{left:401.280000pt;}
.x56_c00035{left:409.600000pt;}
.x3f_c00035{left:410.880000pt;}
.x5c_c00035{left:418.560000pt;}
.x1d_c00035{left:420.480000pt;}
.xf_c00035{left:422.400000pt;}
.x23_c00035{left:430.080000pt;}
.x36_c00035{left:439.040000pt;}
.x8_c00035{left:449.280000pt;}
.x17_c00035{left:458.880000pt;}
.x43_c00035{left:466.560000pt;}
.x5f_c00035{left:467.840000pt;}
.x54_c00035{left:476.160000pt;}
.x51_c00035{left:477.440000pt;}
.x5d_c00035{left:487.040000pt;}
.x9_c00035{left:488.320000pt;}
.x18_c00035{left:497.280000pt;}
.x38_c00035{left:505.600000pt;}
.x1e_c00035{left:507.520000pt;}
.x5e_c00035{left:515.200000pt;}
.x37_c00035{left:516.480000pt;}
.x57_c00035{left:526.080000pt;}
.x4f_c00035{left:534.400000pt;}
.x24_c00035{left:535.680000pt;}
.x19_c00035{left:545.280000pt;}
.x44_c00035{left:554.240000pt;}
.x1f_c00035{left:555.520000pt;}
.x2a_c00035{left:563.200000pt;}
.x10_c00035{left:564.480000pt;}
.x4d_c00035{left:572.160000pt;}
.xa_c00035{left:575.360000pt;}
.x31_c00035{left:583.680000pt;}
.x39_c00035{left:592.000000pt;}
.x47_c00035{left:593.280000pt;}
.x2d_c00035{left:594.560000pt;}
.x55_c00035{left:602.240000pt;}
.x11_c00035{left:604.160000pt;}
.x2b_c00035{left:613.760000pt;}
.x48_c00035{left:620.160000pt;}
.x58_c00035{left:621.440000pt;}
.x32_c00035{left:631.680000pt;}
.x1a_c00035{left:632.960000pt;}
.x3a_c00035{left:640.640000pt;}
.x12_c00035{left:641.920000pt;}
.x1_c00035{left:657.920000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2b95a829061c106f0fb82d81.woff2')format("woff");}.ff1_c00036{font-family:ff1_c00036;line-height:1.109863;font-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_c00036{transform:matrix(0.226825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226825,0.000000,0.000000,0.250000,0,0);}
.m55_c00036{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m17_c00036{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m51_c00036{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m3_c00036{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m45_c00036{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m26_c00036{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m15_c00036{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m30_c00036{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00036{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m50_c00036{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m32_c00036{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m18_c00036{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m44_c00036{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);}
.m33_c00036{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);}
.m52_c00036{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m35_c00036{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m0_c00036{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m8_c00036{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);}
.m3f_c00036{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m29_c00036{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);}
.m1d_c00036{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m4_c00036{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);}
.m3e_c00036{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m34_c00036{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m24_c00036{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);}
.m4c_c00036{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);}
.m38_c00036{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);}
.m4e_c00036{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);}
.m2d_c00036{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m46_c00036{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);}
.m23_c00036{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);}
.m39_c00036{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);}
.m6_c00036{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m16_c00036{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00036{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00036{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);}
.m28_c00036{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00036{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);}
.m14_c00036{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m7_c00036{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);}
.m3b_c00036{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);}
.m20_c00036{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m47_c00036{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m42_c00036{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m1_c00036{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00036{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);}
.m43_c00036{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m11_c00036{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m21_c00036{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);}
.ma_c00036{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m10_c00036{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);}
.m27_c00036{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m19_c00036{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m25_c00036{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m22_c00036{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00036{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);}
.mb_c00036{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.md_c00036{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m9_c00036{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m49_c00036{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m12_c00036{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00036{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m48_c00036{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00036{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00036{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);}
.m3a_c00036{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m40_c00036{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00036{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m2_c00036{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00036{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00036{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m54_c00036{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m41_c00036{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m36_c00036{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m13_c00036{transform:matrix(0.525000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525000,0.000000,0.000000,0.250000,0,0);}
.mc_c00036{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00036{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.mf_c00036{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m53_c00036{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m37_c00036{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00036{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00036{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);}
.m56_c00036{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m31_c00036{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);}
.me_c00036{transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00036{transform:matrix(1.122500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.122500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.122500,0.000000,0.000000,0.250000,0,0);}
.v2_c00036{vertical-align:-11.520000px;}
.v0_c00036{vertical-align:0.000000px;}
.v1_c00036{vertical-align:2.880000px;}
.ls0_c00036{letter-spacing:0.000000px;}
.sc__c00036{text-shadow:none;}
.sc0_c00036{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00036{-webkit-text-stroke:0px transparent;}
.sc0_c00036{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00036{word-spacing:0.000000px;}
.ws1_c00036{word-spacing:5.482800px;}
.ws0_c00036{word-spacing:5.666400px;}
.fc0_c00036{color:transparent;}
.fse_c00036{font-size:20.160000px;}
.fs7_c00036{font-size:34.560000px;}
.fs8_c00036{font-size:37.440000px;}
.fsc_c00036{font-size:43.200000px;}
.fs6_c00036{font-size:46.080000px;}
.fs5_c00036{font-size:48.960000px;}
.fs1_c00036{font-size:51.840000px;}
.fsd_c00036{font-size:54.720000px;}
.fs2_c00036{font-size:57.600000px;}
.fs9_c00036{font-size:60.480000px;}
.fsa_c00036{font-size:63.360000px;}
.fs3_c00036{font-size:66.240000px;}
.fs0_c00036{font-size:69.120000px;}
.fsb_c00036{font-size:72.000000px;}
.fsf_c00036{font-size:74.880000px;}
.fs4_c00036{font-size:83.520000px;}
.y0_c00036{bottom:0.000000px;}
.y60_c00036{bottom:44.640000px;}
.y5f_c00036{bottom:45.360000px;}
.y5a_c00036{bottom:46.080000px;}
.y5c_c00036{bottom:46.800000px;}
.y5e_c00036{bottom:47.520000px;}
.y5b_c00036{bottom:48.240000px;}
.y5d_c00036{bottom:48.960000px;}
.y59_c00036{bottom:50.400000px;}
.y58_c00036{bottom:86.400000px;}
.y55_c00036{bottom:87.120000px;}
.y56_c00036{bottom:87.840000px;}
.y53_c00036{bottom:89.280000px;}
.y57_c00036{bottom:90.000000px;}
.y54_c00036{bottom:90.720000px;}
.y50_c00036{bottom:130.320000px;}
.y52_c00036{bottom:131.760000px;}
.y51_c00036{bottom:132.480000px;}
.y4f_c00036{bottom:133.200000px;}
.y4e_c00036{bottom:133.920000px;}
.y4a_c00036{bottom:182.880000px;}
.y4b_c00036{bottom:183.600000px;}
.y4d_c00036{bottom:185.760000px;}
.y4c_c00036{bottom:186.480000px;}
.y49_c00036{bottom:224.640000px;}
.y46_c00036{bottom:225.360000px;}
.y48_c00036{bottom:226.080000px;}
.y47_c00036{bottom:228.240000px;}
.y44_c00036{bottom:267.120000px;}
.y43_c00036{bottom:268.560000px;}
.y45_c00036{bottom:270.720000px;}
.y42_c00036{bottom:271.440000px;}
.y41_c00036{bottom:272.160000px;}
.y3e_c00036{bottom:310.320000px;}
.y3d_c00036{bottom:311.040000px;}
.y3c_c00036{bottom:312.480000px;}
.y40_c00036{bottom:313.200000px;}
.y3f_c00036{bottom:313.920000px;}
.y37_c00036{bottom:353.520000px;}
.y3b_c00036{bottom:354.240000px;}
.y39_c00036{bottom:355.680000px;}
.y38_c00036{bottom:356.400000px;}
.y3a_c00036{bottom:357.120000px;}
.y36_c00036{bottom:396.720000px;}
.y35_c00036{bottom:398.880000px;}
.y34_c00036{bottom:399.600000px;}
.y32_c00036{bottom:439.200000px;}
.y33_c00036{bottom:441.360000px;}
.y31_c00036{bottom:481.680000px;}
.y30_c00036{bottom:483.840000px;}
.y2f_c00036{bottom:484.560000px;}
.y2e_c00036{bottom:485.280000px;}
.y2b_c00036{bottom:523.440000px;}
.y2a_c00036{bottom:524.160000px;}
.y2d_c00036{bottom:524.880000px;}
.y2c_c00036{bottom:526.320000px;}
.y29_c00036{bottom:527.040000px;}
.y28_c00036{bottom:566.640000px;}
.y27_c00036{bottom:569.520000px;}
.y26_c00036{bottom:570.240000px;}
.y24_c00036{bottom:609.120000px;}
.y25_c00036{bottom:609.840000px;}
.y23_c00036{bottom:611.280000px;}
.y22_c00036{bottom:612.000000px;}
.y20_c00036{bottom:652.320000px;}
.y21_c00036{bottom:654.480000px;}
.y1f_c00036{bottom:655.200000px;}
.y1e_c00036{bottom:694.800000px;}
.y1c_c00036{bottom:696.960000px;}
.y1d_c00036{bottom:697.680000px;}
.y19_c00036{bottom:737.280000px;}
.y1a_c00036{bottom:738.000000px;}
.y18_c00036{bottom:739.440000px;}
.y1b_c00036{bottom:740.160000px;}
.y14_c00036{bottom:779.040000px;}
.y15_c00036{bottom:779.760000px;}
.y16_c00036{bottom:781.920000px;}
.y17_c00036{bottom:782.640000px;}
.y13_c00036{bottom:822.240000px;}
.y11_c00036{bottom:824.400000px;}
.y12_c00036{bottom:825.120000px;}
.y10_c00036{bottom:865.440000px;}
.ye_c00036{bottom:867.600000px;}
.yf_c00036{bottom:868.320000px;}
.yc_c00036{bottom:917.280000px;}
.ya_c00036{bottom:918.000000px;}
.yd_c00036{bottom:918.720000px;}
.yb_c00036{bottom:920.880000px;}
.y5_c00036{bottom:959.760000px;}
.y9_c00036{bottom:960.480000px;}
.y6_c00036{bottom:961.200000px;}
.y8_c00036{bottom:963.360000px;}
.y7_c00036{bottom:964.080000px;}
.y3_c00036{bottom:1005.120000px;}
.y2_c00036{bottom:1006.560000px;}
.y4_c00036{bottom:1007.280000px;}
.y1_c00036{bottom:1075.680000px;}
.h11_c00036{height:18.142031px;}
.h9_c00036{height:31.100625px;}
.ha_c00036{height:33.692344px;}
.he_c00036{height:38.875781px;}
.h8_c00036{height:41.467500px;}
.h7_c00036{height:44.059219px;}
.h3_c00036{height:46.650937px;}
.h10_c00036{height:49.242656px;}
.h4_c00036{height:51.834375px;}
.hb_c00036{height:54.426094px;}
.hc_c00036{height:57.017812px;}
.h5_c00036{height:59.609531px;}
.h2_c00036{height:62.201250px;}
.hd_c00036{height:64.792969px;}
.hf_c00036{height:65.081250px;}
.h12_c00036{height:67.384687px;}
.h6_c00036{height:75.159844px;}
.h1_c00036{height:1151.250000px;}
.h0_c00036{height:1151.280000px;}
.w1_c00036{width:807.750000px;}
.w0_c00036{width:807.840000px;}
.x0_c00036{left:0.000000px;}
.x14_c00036{left:84.240000px;}
.x2_c00036{left:85.680000px;}
.x45_c00036{left:87.120000px;}
.x4a_c00036{left:116.640000px;}
.x3_c00036{left:118.800000px;}
.x38_c00036{left:128.160000px;}
.xb_c00036{left:138.960000px;}
.x4b_c00036{left:149.040000px;}
.x2b_c00036{left:150.480000px;}
.x28_c00036{left:159.840000px;}
.x54_c00036{left:170.640000px;}
.x3e_c00036{left:172.080000px;}
.x21_c00036{left:182.880000px;}
.x5b_c00036{left:191.520000px;}
.xc_c00036{left:192.960000px;}
.x19_c00036{left:194.400000px;}
.x39_c00036{left:203.040000px;}
.x4_c00036{left:213.840000px;}
.x30_c00036{left:215.280000px;}
.x15_c00036{left:218.160000px;}
.xd_c00036{left:224.640000px;}
.x62_c00036{left:234.720000px;}
.x34_c00036{left:236.160000px;}
.x5a_c00036{left:246.240000px;}
.x31_c00036{left:247.680000px;}
.x1a_c00036{left:257.040000px;}
.x35_c00036{left:267.840000px;}
.x2c_c00036{left:278.640000px;}
.x3a_c00036{left:288.000000px;}
.x1b_c00036{left:301.680000px;}
.x46_c00036{left:310.320000px;}
.x5_c00036{left:311.760000px;}
.x55_c00036{left:321.120000px;}
.x29_c00036{left:322.560000px;}
.x22_c00036{left:333.360000px;}
.x5c_c00036{left:334.800000px;}
.x41_c00036{left:342.720000px;}
.x32_c00036{left:344.160000px;}
.x56_c00036{left:353.520000px;}
.xe_c00036{left:354.960000px;}
.x16_c00036{left:363.600000px;}
.x2d_c00036{left:365.040000px;}
.x6_c00036{left:366.480000px;}
.x47_c00036{left:375.120000px;}
.x1c_c00036{left:386.640000px;}
.x58_c00036{left:388.080000px;}
.x4c_c00036{left:396.000000px;}
.x42_c00036{left:417.600000px;}
.x3b_c00036{left:419.040000px;}
.x50_c00036{left:427.680000px;}
.xf_c00036{left:429.840000px;}
.x5d_c00036{left:438.480000px;}
.x23_c00036{left:440.640000px;}
.x17_c00036{left:442.080000px;}
.x48_c00036{left:450.000000px;}
.x10_c00036{left:451.440000px;}
.x2a_c00036{left:461.520000px;}
.x5f_c00036{left:470.880000px;}
.x63_c00036{left:481.680000px;}
.x40_c00036{left:483.120000px;}
.x7_c00036{left:484.560000px;}
.x1d_c00036{left:494.640000px;}
.x60_c00036{left:503.280000px;}
.x18_c00036{left:505.440000px;}
.x4d_c00036{left:514.800000px;}
.x2e_c00036{left:516.240000px;}
.x24_c00036{left:527.040000px;}
.x8_c00036{left:538.560000px;}
.x3c_c00036{left:546.480000px;}
.x36_c00036{left:547.920000px;}
.x51_c00036{left:557.280000px;}
.x61_c00036{left:566.640000px;}
.x5e_c00036{left:568.080000px;}
.x25_c00036{left:570.240000px;}
.x57_c00036{left:578.880000px;}
.x11_c00036{left:581.760000px;}
.x2f_c00036{left:591.840000px;}
.x9_c00036{left:602.640000px;}
.x12_c00036{left:613.440000px;}
.x43_c00036{left:622.080000px;}
.x1e_c00036{left:624.240000px;}
.x33_c00036{left:633.600000px;}
.xa_c00036{left:635.040000px;}
.x3f_c00036{left:644.400000px;}
.x26_c00036{left:645.840000px;}
.x44_c00036{left:654.480000px;}
.x1f_c00036{left:655.920000px;}
.x4e_c00036{left:665.280000px;}
.x49_c00036{left:667.440000px;}
.x27_c00036{left:677.520000px;}
.x52_c00036{left:687.600000px;}
.x59_c00036{left:689.760000px;}
.x4f_c00036{left:697.680000px;}
.x20_c00036{left:699.120000px;}
.x13_c00036{left:711.360000px;}
.x53_c00036{left:719.280000px;}
.x37_c00036{left:720.720000px;}
.x3d_c00036{left:731.520000px;}
.x1_c00036{left:735.120000px;}
@media print{
.v2_c00036{vertical-align:-10.240000pt;}
.v0_c00036{vertical-align:0.000000pt;}
.v1_c00036{vertical-align:2.560000pt;}
.ls0_c00036{letter-spacing:0.000000pt;}
.ws2_c00036{word-spacing:0.000000pt;}
.ws1_c00036{word-spacing:4.873600pt;}
.ws0_c00036{word-spacing:5.036800pt;}
.fse_c00036{font-size:17.920000pt;}
.fs7_c00036{font-size:30.720000pt;}
.fs8_c00036{font-size:33.280000pt;}
.fsc_c00036{font-size:38.400000pt;}
.fs6_c00036{font-size:40.960000pt;}
.fs5_c00036{font-size:43.520000pt;}
.fs1_c00036{font-size:46.080000pt;}
.fsd_c00036{font-size:48.640000pt;}
.fs2_c00036{font-size:51.200000pt;}
.fs9_c00036{font-size:53.760000pt;}
.fsa_c00036{font-size:56.320000pt;}
.fs3_c00036{font-size:58.880000pt;}
.fs0_c00036{font-size:61.440000pt;}
.fsb_c00036{font-size:64.000000pt;}
.fsf_c00036{font-size:66.560000pt;}
.fs4_c00036{font-size:74.240000pt;}
.y0_c00036{bottom:0.000000pt;}
.y60_c00036{bottom:39.680000pt;}
.y5f_c00036{bottom:40.320000pt;}
.y5a_c00036{bottom:40.960000pt;}
.y5c_c00036{bottom:41.600000pt;}
.y5e_c00036{bottom:42.240000pt;}
.y5b_c00036{bottom:42.880000pt;}
.y5d_c00036{bottom:43.520000pt;}
.y59_c00036{bottom:44.800000pt;}
.y58_c00036{bottom:76.800000pt;}
.y55_c00036{bottom:77.440000pt;}
.y56_c00036{bottom:78.080000pt;}
.y53_c00036{bottom:79.360000pt;}
.y57_c00036{bottom:80.000000pt;}
.y54_c00036{bottom:80.640000pt;}
.y50_c00036{bottom:115.840000pt;}
.y52_c00036{bottom:117.120000pt;}
.y51_c00036{bottom:117.760000pt;}
.y4f_c00036{bottom:118.400000pt;}
.y4e_c00036{bottom:119.040000pt;}
.y4a_c00036{bottom:162.560000pt;}
.y4b_c00036{bottom:163.200000pt;}
.y4d_c00036{bottom:165.120000pt;}
.y4c_c00036{bottom:165.760000pt;}
.y49_c00036{bottom:199.680000pt;}
.y46_c00036{bottom:200.320000pt;}
.y48_c00036{bottom:200.960000pt;}
.y47_c00036{bottom:202.880000pt;}
.y44_c00036{bottom:237.440000pt;}
.y43_c00036{bottom:238.720000pt;}
.y45_c00036{bottom:240.640000pt;}
.y42_c00036{bottom:241.280000pt;}
.y41_c00036{bottom:241.920000pt;}
.y3e_c00036{bottom:275.840000pt;}
.y3d_c00036{bottom:276.480000pt;}
.y3c_c00036{bottom:277.760000pt;}
.y40_c00036{bottom:278.400000pt;}
.y3f_c00036{bottom:279.040000pt;}
.y37_c00036{bottom:314.240000pt;}
.y3b_c00036{bottom:314.880000pt;}
.y39_c00036{bottom:316.160000pt;}
.y38_c00036{bottom:316.800000pt;}
.y3a_c00036{bottom:317.440000pt;}
.y36_c00036{bottom:352.640000pt;}
.y35_c00036{bottom:354.560000pt;}
.y34_c00036{bottom:355.200000pt;}
.y32_c00036{bottom:390.400000pt;}
.y33_c00036{bottom:392.320000pt;}
.y31_c00036{bottom:428.160000pt;}
.y30_c00036{bottom:430.080000pt;}
.y2f_c00036{bottom:430.720000pt;}
.y2e_c00036{bottom:431.360000pt;}
.y2b_c00036{bottom:465.280000pt;}
.y2a_c00036{bottom:465.920000pt;}
.y2d_c00036{bottom:466.560000pt;}
.y2c_c00036{bottom:467.840000pt;}
.y29_c00036{bottom:468.480000pt;}
.y28_c00036{bottom:503.680000pt;}
.y27_c00036{bottom:506.240000pt;}
.y26_c00036{bottom:506.880000pt;}
.y24_c00036{bottom:541.440000pt;}
.y25_c00036{bottom:542.080000pt;}
.y23_c00036{bottom:543.360000pt;}
.y22_c00036{bottom:544.000000pt;}
.y20_c00036{bottom:579.840000pt;}
.y21_c00036{bottom:581.760000pt;}
.y1f_c00036{bottom:582.400000pt;}
.y1e_c00036{bottom:617.600000pt;}
.y1c_c00036{bottom:619.520000pt;}
.y1d_c00036{bottom:620.160000pt;}
.y19_c00036{bottom:655.360000pt;}
.y1a_c00036{bottom:656.000000pt;}
.y18_c00036{bottom:657.280000pt;}
.y1b_c00036{bottom:657.920000pt;}
.y14_c00036{bottom:692.480000pt;}
.y15_c00036{bottom:693.120000pt;}
.y16_c00036{bottom:695.040000pt;}
.y17_c00036{bottom:695.680000pt;}
.y13_c00036{bottom:730.880000pt;}
.y11_c00036{bottom:732.800000pt;}
.y12_c00036{bottom:733.440000pt;}
.y10_c00036{bottom:769.280000pt;}
.ye_c00036{bottom:771.200000pt;}
.yf_c00036{bottom:771.840000pt;}
.yc_c00036{bottom:815.360000pt;}
.ya_c00036{bottom:816.000000pt;}
.yd_c00036{bottom:816.640000pt;}
.yb_c00036{bottom:818.560000pt;}
.y5_c00036{bottom:853.120000pt;}
.y9_c00036{bottom:853.760000pt;}
.y6_c00036{bottom:854.400000pt;}
.y8_c00036{bottom:856.320000pt;}
.y7_c00036{bottom:856.960000pt;}
.y3_c00036{bottom:893.440000pt;}
.y2_c00036{bottom:894.720000pt;}
.y4_c00036{bottom:895.360000pt;}
.y1_c00036{bottom:956.160000pt;}
.h11_c00036{height:16.126250pt;}
.h9_c00036{height:27.645000pt;}
.ha_c00036{height:29.948750pt;}
.he_c00036{height:34.556250pt;}
.h8_c00036{height:36.860000pt;}
.h7_c00036{height:39.163750pt;}
.h3_c00036{height:41.467500pt;}
.h10_c00036{height:43.771250pt;}
.h4_c00036{height:46.075000pt;}
.hb_c00036{height:48.378750pt;}
.hc_c00036{height:50.682500pt;}
.h5_c00036{height:52.986250pt;}
.h2_c00036{height:55.290000pt;}
.hd_c00036{height:57.593750pt;}
.hf_c00036{height:57.850000pt;}
.h12_c00036{height:59.897500pt;}
.h6_c00036{height:66.808750pt;}
.h1_c00036{height:1023.333333pt;}
.h0_c00036{height:1023.360000pt;}
.w1_c00036{width:718.000000pt;}
.w0_c00036{width:718.080000pt;}
.x0_c00036{left:0.000000pt;}
.x14_c00036{left:74.880000pt;}
.x2_c00036{left:76.160000pt;}
.x45_c00036{left:77.440000pt;}
.x4a_c00036{left:103.680000pt;}
.x3_c00036{left:105.600000pt;}
.x38_c00036{left:113.920000pt;}
.xb_c00036{left:123.520000pt;}
.x4b_c00036{left:132.480000pt;}
.x2b_c00036{left:133.760000pt;}
.x28_c00036{left:142.080000pt;}
.x54_c00036{left:151.680000pt;}
.x3e_c00036{left:152.960000pt;}
.x21_c00036{left:162.560000pt;}
.x5b_c00036{left:170.240000pt;}
.xc_c00036{left:171.520000pt;}
.x19_c00036{left:172.800000pt;}
.x39_c00036{left:180.480000pt;}
.x4_c00036{left:190.080000pt;}
.x30_c00036{left:191.360000pt;}
.x15_c00036{left:193.920000pt;}
.xd_c00036{left:199.680000pt;}
.x62_c00036{left:208.640000pt;}
.x34_c00036{left:209.920000pt;}
.x5a_c00036{left:218.880000pt;}
.x31_c00036{left:220.160000pt;}
.x1a_c00036{left:228.480000pt;}
.x35_c00036{left:238.080000pt;}
.x2c_c00036{left:247.680000pt;}
.x3a_c00036{left:256.000000pt;}
.x1b_c00036{left:268.160000pt;}
.x46_c00036{left:275.840000pt;}
.x5_c00036{left:277.120000pt;}
.x55_c00036{left:285.440000pt;}
.x29_c00036{left:286.720000pt;}
.x22_c00036{left:296.320000pt;}
.x5c_c00036{left:297.600000pt;}
.x41_c00036{left:304.640000pt;}
.x32_c00036{left:305.920000pt;}
.x56_c00036{left:314.240000pt;}
.xe_c00036{left:315.520000pt;}
.x16_c00036{left:323.200000pt;}
.x2d_c00036{left:324.480000pt;}
.x6_c00036{left:325.760000pt;}
.x47_c00036{left:333.440000pt;}
.x1c_c00036{left:343.680000pt;}
.x58_c00036{left:344.960000pt;}
.x4c_c00036{left:352.000000pt;}
.x42_c00036{left:371.200000pt;}
.x3b_c00036{left:372.480000pt;}
.x50_c00036{left:380.160000pt;}
.xf_c00036{left:382.080000pt;}
.x5d_c00036{left:389.760000pt;}
.x23_c00036{left:391.680000pt;}
.x17_c00036{left:392.960000pt;}
.x48_c00036{left:400.000000pt;}
.x10_c00036{left:401.280000pt;}
.x2a_c00036{left:410.240000pt;}
.x5f_c00036{left:418.560000pt;}
.x63_c00036{left:428.160000pt;}
.x40_c00036{left:429.440000pt;}
.x7_c00036{left:430.720000pt;}
.x1d_c00036{left:439.680000pt;}
.x60_c00036{left:447.360000pt;}
.x18_c00036{left:449.280000pt;}
.x4d_c00036{left:457.600000pt;}
.x2e_c00036{left:458.880000pt;}
.x24_c00036{left:468.480000pt;}
.x8_c00036{left:478.720000pt;}
.x3c_c00036{left:485.760000pt;}
.x36_c00036{left:487.040000pt;}
.x51_c00036{left:495.360000pt;}
.x61_c00036{left:503.680000pt;}
.x5e_c00036{left:504.960000pt;}
.x25_c00036{left:506.880000pt;}
.x57_c00036{left:514.560000pt;}
.x11_c00036{left:517.120000pt;}
.x2f_c00036{left:526.080000pt;}
.x9_c00036{left:535.680000pt;}
.x12_c00036{left:545.280000pt;}
.x43_c00036{left:552.960000pt;}
.x1e_c00036{left:554.880000pt;}
.x33_c00036{left:563.200000pt;}
.xa_c00036{left:564.480000pt;}
.x3f_c00036{left:572.800000pt;}
.x26_c00036{left:574.080000pt;}
.x44_c00036{left:581.760000pt;}
.x1f_c00036{left:583.040000pt;}
.x4e_c00036{left:591.360000pt;}
.x49_c00036{left:593.280000pt;}
.x27_c00036{left:602.240000pt;}
.x52_c00036{left:611.200000pt;}
.x59_c00036{left:613.120000pt;}
.x4f_c00036{left:620.160000pt;}
.x20_c00036{left:621.440000pt;}
.x13_c00036{left:632.320000pt;}
.x53_c00036{left:639.360000pt;}
.x37_c00036{left:640.640000pt;}
.x3d_c00036{left:650.240000pt;}
.x1_c00036{left:653.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4ba6008467054df4f9c1d9f5.woff2')format("woff");}.ff1_c00037{font-family:ff1_c00037;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5a_c00037{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);}
.m58_c00037{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m55_c00037{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m42_c00037{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00037{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m52_c00037{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m29_c00037{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m17_c00037{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00037{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m51_c00037{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00037{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m0_c00037{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m2_c00037{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00037{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00037{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);}
.m5b_c00037{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00037{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m9_c00037{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m23_c00037{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00037{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);}
.m32_c00037{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m4_c00037{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);}
.m59_c00037{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m10_c00037{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m13_c00037{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00037{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);}
.m34_c00037{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);}
.m5e_c00037{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m60_c00037{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.md_c00037{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);}
.m57_c00037{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m6_c00037{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);}
.m20_c00037{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m25_c00037{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);}
.m47_c00037{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);}
.m39_c00037{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m19_c00037{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00037{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m15_c00037{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.mf_c00037{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);}
.m3a_c00037{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m33_c00037{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);}
.m3d_c00037{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m48_c00037{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);}
.m3_c00037{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);}
.m12_c00037{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00037{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m11_c00037{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m31_c00037{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);}
.m28_c00037{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m41_c00037{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m22_c00037{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);}
.m3e_c00037{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m7_c00037{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);}
.m1e_c00037{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m56_c00037{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m18_c00037{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00037{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);}
.m2d_c00037{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m8_c00037{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m1_c00037{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m53_c00037{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);}
.m21_c00037{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.me_c00037{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m14_c00037{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m54_c00037{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00037{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m24_c00037{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);}
.m40_c00037{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);}
.m30_c00037{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.mc_c00037{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m44_c00037{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);}
.m3c_c00037{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.mb_c00037{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m16_c00037{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);}
.m50_c00037{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m37_c00037{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m38_c00037{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m5_c00037{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m61_c00037{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);}
.m45_c00037{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m26_c00037{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00037{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);}
.m2c_c00037{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00037{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);}
.m1c_c00037{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m27_c00037{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m49_c00037{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m36_c00037{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m43_c00037{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m35_c00037{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);}
.m1a_c00037{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00037{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);}
.m4f_c00037{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00037{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m46_c00037{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00037{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.ma_c00037{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.v2_c00037{vertical-align:-2.880000px;}
.v0_c00037{vertical-align:0.000000px;}
.v1_c00037{vertical-align:11.520000px;}
.ls0_c00037{letter-spacing:0.000000px;}
.sc__c00037{text-shadow:none;}
.sc0_c00037{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00037{-webkit-text-stroke:0px transparent;}
.sc0_c00037{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00037{word-spacing:-6.552240px;}
.ws0_c00037{word-spacing:-2.818320px;}
.ws3_c00037{word-spacing:0.000000px;}
.ws2_c00037{word-spacing:4.150800px;}
.fc0_c00037{color:transparent;}
.fs5_c00037{font-size:34.560000px;}
.fsb_c00037{font-size:37.440000px;}
.fs8_c00037{font-size:43.200000px;}
.fs3_c00037{font-size:46.080000px;}
.fs4_c00037{font-size:48.960000px;}
.fs1_c00037{font-size:51.840000px;}
.fsc_c00037{font-size:54.720000px;}
.fsa_c00037{font-size:57.600000px;}
.fs2_c00037{font-size:60.480000px;}
.fs6_c00037{font-size:63.360000px;}
.fs7_c00037{font-size:66.240000px;}
.fs9_c00037{font-size:69.120000px;}
.fs0_c00037{font-size:72.000000px;}
.y0_c00037{bottom:0.000000px;}
.y67_c00037{bottom:51.840000px;}
.y64_c00037{bottom:52.560000px;}
.y66_c00037{bottom:53.280000px;}
.y62_c00037{bottom:54.000000px;}
.y63_c00037{bottom:55.440000px;}
.y65_c00037{bottom:56.160000px;}
.y61_c00037{bottom:56.880000px;}
.y60_c00037{bottom:95.040000px;}
.y5e_c00037{bottom:96.480000px;}
.y5b_c00037{bottom:97.200000px;}
.y5f_c00037{bottom:97.920000px;}
.y5d_c00037{bottom:98.640000px;}
.y5c_c00037{bottom:99.360000px;}
.y5a_c00037{bottom:100.080000px;}
.y55_c00037{bottom:139.680000px;}
.y58_c00037{bottom:140.400000px;}
.y57_c00037{bottom:141.120000px;}
.y59_c00037{bottom:141.840000px;}
.y56_c00037{bottom:142.560000px;}
.y52_c00037{bottom:180.720000px;}
.y53_c00037{bottom:181.440000px;}
.y51_c00037{bottom:182.160000px;}
.y54_c00037{bottom:182.880000px;}
.y50_c00037{bottom:184.320000px;}
.y4f_c00037{bottom:223.200000px;}
.y4d_c00037{bottom:224.640000px;}
.y4e_c00037{bottom:226.080000px;}
.y4c_c00037{bottom:226.800000px;}
.y4b_c00037{bottom:265.680000px;}
.y4a_c00037{bottom:266.400000px;}
.y48_c00037{bottom:267.120000px;}
.y49_c00037{bottom:269.280000px;}
.y47_c00037{bottom:270.000000px;}
.y44_c00037{bottom:308.160000px;}
.y43_c00037{bottom:309.600000px;}
.y46_c00037{bottom:311.040000px;}
.y45_c00037{bottom:311.760000px;}
.y3f_c00037{bottom:351.360000px;}
.y42_c00037{bottom:353.520000px;}
.y40_c00037{bottom:354.240000px;}
.y41_c00037{bottom:354.960000px;}
.y3d_c00037{bottom:396.000000px;}
.y3c_c00037{bottom:396.720000px;}
.y3e_c00037{bottom:397.440000px;}
.y3b_c00037{bottom:449.280000px;}
.y39_c00037{bottom:489.600000px;}
.y3a_c00037{bottom:491.760000px;}
.y38_c00037{bottom:492.480000px;}
.y37_c00037{bottom:493.200000px;}
.y36_c00037{bottom:532.080000px;}
.y35_c00037{bottom:534.960000px;}
.y34_c00037{bottom:535.680000px;}
.y31_c00037{bottom:574.560000px;}
.y30_c00037{bottom:575.280000px;}
.y32_c00037{bottom:577.440000px;}
.y33_c00037{bottom:578.160000px;}
.y2d_c00037{bottom:617.760000px;}
.y2e_c00037{bottom:618.480000px;}
.y2b_c00037{bottom:619.200000px;}
.y2f_c00037{bottom:619.920000px;}
.y2a_c00037{bottom:620.640000px;}
.y2c_c00037{bottom:621.360000px;}
.y26_c00037{bottom:659.520000px;}
.y28_c00037{bottom:660.240000px;}
.y29_c00037{bottom:662.400000px;}
.y27_c00037{bottom:663.120000px;}
.y23_c00037{bottom:702.720000px;}
.y24_c00037{bottom:703.440000px;}
.y22_c00037{bottom:705.600000px;}
.y25_c00037{bottom:706.320000px;}
.y1e_c00037{bottom:745.200000px;}
.y21_c00037{bottom:746.640000px;}
.y20_c00037{bottom:748.080000px;}
.y1f_c00037{bottom:748.800000px;}
.y1d_c00037{bottom:787.680000px;}
.y1a_c00037{bottom:788.400000px;}
.y19_c00037{bottom:789.840000px;}
.y1b_c00037{bottom:790.560000px;}
.y1c_c00037{bottom:791.280000px;}
.y17_c00037{bottom:830.880000px;}
.y15_c00037{bottom:833.040000px;}
.y16_c00037{bottom:833.760000px;}
.y18_c00037{bottom:834.480000px;}
.y14_c00037{bottom:874.080000px;}
.y11_c00037{bottom:875.520000px;}
.y12_c00037{bottom:876.240000px;}
.y13_c00037{bottom:876.960000px;}
.ye_c00037{bottom:915.120000px;}
.y10_c00037{bottom:915.840000px;}
.yf_c00037{bottom:916.560000px;}
.yb_c00037{bottom:917.280000px;}
.yc_c00037{bottom:918.000000px;}
.yd_c00037{bottom:918.720000px;}
.y8_c00037{bottom:957.600000px;}
.ya_c00037{bottom:958.320000px;}
.y7_c00037{bottom:960.480000px;}
.y9_c00037{bottom:961.200000px;}
.y3_c00037{bottom:1000.800000px;}
.y4_c00037{bottom:1001.520000px;}
.y2_c00037{bottom:1002.240000px;}
.y6_c00037{bottom:1003.680000px;}
.y5_c00037{bottom:1004.400000px;}
.y1_c00037{bottom:1072.800000px;}
.h7_c00037{height:31.100625px;}
.he_c00037{height:33.692344px;}
.hb_c00037{height:38.875781px;}
.h5_c00037{height:41.467500px;}
.h10_c00037{height:43.770937px;}
.h6_c00037{height:44.059219px;}
.h3_c00037{height:46.650937px;}
.hf_c00037{height:49.242656px;}
.hd_c00037{height:51.834375px;}
.h4_c00037{height:54.426094px;}
.h8_c00037{height:57.017812px;}
.ha_c00037{height:58.170937px;}
.h9_c00037{height:59.609531px;}
.hc_c00037{height:62.201250px;}
.h2_c00037{height:64.792969px;}
.h1_c00037{height:1146.000000px;}
.h0_c00037{height:1146.240000px;}
.w0_c00037{width:799.920000px;}
.w1_c00037{width:800.250000px;}
.x0_c00037{left:0.000000px;}
.x52_c00037{left:79.920000px;}
.x2_c00037{left:81.360000px;}
.x23_c00037{left:83.520000px;}
.xc_c00037{left:114.480000px;}
.x53_c00037{left:115.920000px;}
.x60_c00037{left:123.120000px;}
.x28_c00037{left:125.280000px;}
.x57_c00037{left:134.640000px;}
.x13_c00037{left:136.080000px;}
.x3_c00037{left:146.880000px;}
.x4e_c00037{left:157.680000px;}
.x5b_c00037{left:166.320000px;}
.x14_c00037{left:168.480000px;}
.x61_c00037{left:177.120000px;}
.x2f_c00037{left:178.560000px;}
.x1a_c00037{left:180.000000px;}
.x58_c00037{left:188.640000px;}
.x47_c00037{left:190.080000px;}
.x40_c00037{left:199.440000px;}
.x1b_c00037{left:200.880000px;}
.x63_c00037{left:209.520000px;}
.x4_c00037{left:210.960000px;}
.x41_c00037{left:221.040000px;}
.xd_c00037{left:222.480000px;}
.x29_c00037{left:224.640000px;}
.x4f_c00037{left:231.120000px;}
.x1c_c00037{left:232.560000px;}
.x5c_c00037{left:241.920000px;}
.x24_c00037{left:243.360000px;}
.x54_c00037{left:252.720000px;}
.x5_c00037{left:254.160000px;}
.x37_c00037{left:275.040000px;}
.x48_c00037{left:285.120000px;}
.x15_c00037{left:297.360000px;}
.x50_c00037{left:307.440000px;}
.xe_c00037{left:308.880000px;}
.x64_c00037{left:316.800000px;}
.x59_c00037{left:318.240000px;}
.x2a_c00037{left:319.680000px;}
.x3c_c00037{left:328.320000px;}
.x1d_c00037{left:329.760000px;}
.x42_c00037{left:339.840000px;}
.x33_c00037{left:350.640000px;}
.x1e_c00037{left:360.720000px;}
.x30_c00037{left:362.880000px;}
.xf_c00037{left:372.240000px;}
.x3f_c00037{left:382.320000px;}
.x2b_c00037{left:383.760000px;}
.x6_c00037{left:394.560000px;}
.x67_c00037{left:402.480000px;}
.x51_c00037{left:403.920000px;}
.x16_c00037{left:405.360000px;}
.x4c_c00037{left:413.280000px;}
.x25_c00037{left:414.720000px;}
.x38_c00037{left:416.160000px;}
.x7_c00037{left:426.240000px;}
.x5a_c00037{left:435.600000px;}
.x1f_c00037{left:437.040000px;}
.x39_c00037{left:447.120000px;}
.x10_c00037{left:448.560000px;}
.x49_c00037{left:457.200000px;}
.x20_c00037{left:468.720000px;}
.x34_c00037{left:470.160000px;}
.x5d_c00037{left:478.800000px;}
.x11_c00037{left:480.240000px;}
.x4d_c00037{left:489.600000px;}
.x65_c00037{left:500.400000px;}
.x17_c00037{left:501.840000px;}
.x2c_c00037{left:511.920000px;}
.x45_c00037{left:522.720000px;}
.x8_c00037{left:524.160000px;}
.x4a_c00037{left:531.360000px;}
.x55_c00037{left:542.880000px;}
.x3a_c00037{left:544.320000px;}
.x46_c00037{left:554.400000px;}
.x56_c00037{left:565.200000px;}
.x31_c00037{left:566.640000px;}
.x9_c00037{left:568.080000px;}
.x3d_c00037{left:576.720000px;}
.x21_c00037{left:578.160000px;}
.x43_c00037{left:587.520000px;}
.x5e_c00037{left:596.880000px;}
.x32_c00037{left:598.320000px;}
.x26_c00037{left:599.760000px;}
.x35_c00037{left:609.120000px;}
.x4b_c00037{left:618.480000px;}
.x18_c00037{left:619.920000px;}
.x66_c00037{left:629.280000px;}
.x2d_c00037{left:630.720000px;}
.x36_c00037{left:641.520000px;}
.x27_c00037{left:652.320000px;}
.xa_c00037{left:653.760000px;}
.x3e_c00037{left:663.120000px;}
.x12_c00037{left:665.280000px;}
.x22_c00037{left:674.640000px;}
.x19_c00037{left:676.080000px;}
.x62_c00037{left:683.280000px;}
.x2e_c00037{left:684.720000px;}
.xb_c00037{left:686.160000px;}
.x5f_c00037{left:694.080000px;}
.x3b_c00037{left:695.520000px;}
.x44_c00037{left:707.040000px;}
.x1_c00037{left:726.480000px;}
@media print{
.v2_c00037{vertical-align:-2.560000pt;}
.v0_c00037{vertical-align:0.000000pt;}
.v1_c00037{vertical-align:10.240000pt;}
.ls0_c00037{letter-spacing:0.000000pt;}
.ws1_c00037{word-spacing:-5.824213pt;}
.ws0_c00037{word-spacing:-2.505173pt;}
.ws3_c00037{word-spacing:0.000000pt;}
.ws2_c00037{word-spacing:3.689600pt;}
.fs5_c00037{font-size:30.720000pt;}
.fsb_c00037{font-size:33.280000pt;}
.fs8_c00037{font-size:38.400000pt;}
.fs3_c00037{font-size:40.960000pt;}
.fs4_c00037{font-size:43.520000pt;}
.fs1_c00037{font-size:46.080000pt;}
.fsc_c00037{font-size:48.640000pt;}
.fsa_c00037{font-size:51.200000pt;}
.fs2_c00037{font-size:53.760000pt;}
.fs6_c00037{font-size:56.320000pt;}
.fs7_c00037{font-size:58.880000pt;}
.fs9_c00037{font-size:61.440000pt;}
.fs0_c00037{font-size:64.000000pt;}
.y0_c00037{bottom:0.000000pt;}
.y67_c00037{bottom:46.080000pt;}
.y64_c00037{bottom:46.720000pt;}
.y66_c00037{bottom:47.360000pt;}
.y62_c00037{bottom:48.000000pt;}
.y63_c00037{bottom:49.280000pt;}
.y65_c00037{bottom:49.920000pt;}
.y61_c00037{bottom:50.560000pt;}
.y60_c00037{bottom:84.480000pt;}
.y5e_c00037{bottom:85.760000pt;}
.y5b_c00037{bottom:86.400000pt;}
.y5f_c00037{bottom:87.040000pt;}
.y5d_c00037{bottom:87.680000pt;}
.y5c_c00037{bottom:88.320000pt;}
.y5a_c00037{bottom:88.960000pt;}
.y55_c00037{bottom:124.160000pt;}
.y58_c00037{bottom:124.800000pt;}
.y57_c00037{bottom:125.440000pt;}
.y59_c00037{bottom:126.080000pt;}
.y56_c00037{bottom:126.720000pt;}
.y52_c00037{bottom:160.640000pt;}
.y53_c00037{bottom:161.280000pt;}
.y51_c00037{bottom:161.920000pt;}
.y54_c00037{bottom:162.560000pt;}
.y50_c00037{bottom:163.840000pt;}
.y4f_c00037{bottom:198.400000pt;}
.y4d_c00037{bottom:199.680000pt;}
.y4e_c00037{bottom:200.960000pt;}
.y4c_c00037{bottom:201.600000pt;}
.y4b_c00037{bottom:236.160000pt;}
.y4a_c00037{bottom:236.800000pt;}
.y48_c00037{bottom:237.440000pt;}
.y49_c00037{bottom:239.360000pt;}
.y47_c00037{bottom:240.000000pt;}
.y44_c00037{bottom:273.920000pt;}
.y43_c00037{bottom:275.200000pt;}
.y46_c00037{bottom:276.480000pt;}
.y45_c00037{bottom:277.120000pt;}
.y3f_c00037{bottom:312.320000pt;}
.y42_c00037{bottom:314.240000pt;}
.y40_c00037{bottom:314.880000pt;}
.y41_c00037{bottom:315.520000pt;}
.y3d_c00037{bottom:352.000000pt;}
.y3c_c00037{bottom:352.640000pt;}
.y3e_c00037{bottom:353.280000pt;}
.y3b_c00037{bottom:399.360000pt;}
.y39_c00037{bottom:435.200000pt;}
.y3a_c00037{bottom:437.120000pt;}
.y38_c00037{bottom:437.760000pt;}
.y37_c00037{bottom:438.400000pt;}
.y36_c00037{bottom:472.960000pt;}
.y35_c00037{bottom:475.520000pt;}
.y34_c00037{bottom:476.160000pt;}
.y31_c00037{bottom:510.720000pt;}
.y30_c00037{bottom:511.360000pt;}
.y32_c00037{bottom:513.280000pt;}
.y33_c00037{bottom:513.920000pt;}
.y2d_c00037{bottom:549.120000pt;}
.y2e_c00037{bottom:549.760000pt;}
.y2b_c00037{bottom:550.400000pt;}
.y2f_c00037{bottom:551.040000pt;}
.y2a_c00037{bottom:551.680000pt;}
.y2c_c00037{bottom:552.320000pt;}
.y26_c00037{bottom:586.240000pt;}
.y28_c00037{bottom:586.880000pt;}
.y29_c00037{bottom:588.800000pt;}
.y27_c00037{bottom:589.440000pt;}
.y23_c00037{bottom:624.640000pt;}
.y24_c00037{bottom:625.280000pt;}
.y22_c00037{bottom:627.200000pt;}
.y25_c00037{bottom:627.840000pt;}
.y1e_c00037{bottom:662.400000pt;}
.y21_c00037{bottom:663.680000pt;}
.y20_c00037{bottom:664.960000pt;}
.y1f_c00037{bottom:665.600000pt;}
.y1d_c00037{bottom:700.160000pt;}
.y1a_c00037{bottom:700.800000pt;}
.y19_c00037{bottom:702.080000pt;}
.y1b_c00037{bottom:702.720000pt;}
.y1c_c00037{bottom:703.360000pt;}
.y17_c00037{bottom:738.560000pt;}
.y15_c00037{bottom:740.480000pt;}
.y16_c00037{bottom:741.120000pt;}
.y18_c00037{bottom:741.760000pt;}
.y14_c00037{bottom:776.960000pt;}
.y11_c00037{bottom:778.240000pt;}
.y12_c00037{bottom:778.880000pt;}
.y13_c00037{bottom:779.520000pt;}
.ye_c00037{bottom:813.440000pt;}
.y10_c00037{bottom:814.080000pt;}
.yf_c00037{bottom:814.720000pt;}
.yb_c00037{bottom:815.360000pt;}
.yc_c00037{bottom:816.000000pt;}
.yd_c00037{bottom:816.640000pt;}
.y8_c00037{bottom:851.200000pt;}
.ya_c00037{bottom:851.840000pt;}
.y7_c00037{bottom:853.760000pt;}
.y9_c00037{bottom:854.400000pt;}
.y3_c00037{bottom:889.600000pt;}
.y4_c00037{bottom:890.240000pt;}
.y2_c00037{bottom:890.880000pt;}
.y6_c00037{bottom:892.160000pt;}
.y5_c00037{bottom:892.800000pt;}
.y1_c00037{bottom:953.600000pt;}
.h7_c00037{height:27.645000pt;}
.he_c00037{height:29.948750pt;}
.hb_c00037{height:34.556250pt;}
.h5_c00037{height:36.860000pt;}
.h10_c00037{height:38.907500pt;}
.h6_c00037{height:39.163750pt;}
.h3_c00037{height:41.467500pt;}
.hf_c00037{height:43.771250pt;}
.hd_c00037{height:46.075000pt;}
.h4_c00037{height:48.378750pt;}
.h8_c00037{height:50.682500pt;}
.ha_c00037{height:51.707500pt;}
.h9_c00037{height:52.986250pt;}
.hc_c00037{height:55.290000pt;}
.h2_c00037{height:57.593750pt;}
.h1_c00037{height:1018.666667pt;}
.h0_c00037{height:1018.880000pt;}
.w0_c00037{width:711.040000pt;}
.w1_c00037{width:711.333333pt;}
.x0_c00037{left:0.000000pt;}
.x52_c00037{left:71.040000pt;}
.x2_c00037{left:72.320000pt;}
.x23_c00037{left:74.240000pt;}
.xc_c00037{left:101.760000pt;}
.x53_c00037{left:103.040000pt;}
.x60_c00037{left:109.440000pt;}
.x28_c00037{left:111.360000pt;}
.x57_c00037{left:119.680000pt;}
.x13_c00037{left:120.960000pt;}
.x3_c00037{left:130.560000pt;}
.x4e_c00037{left:140.160000pt;}
.x5b_c00037{left:147.840000pt;}
.x14_c00037{left:149.760000pt;}
.x61_c00037{left:157.440000pt;}
.x2f_c00037{left:158.720000pt;}
.x1a_c00037{left:160.000000pt;}
.x58_c00037{left:167.680000pt;}
.x47_c00037{left:168.960000pt;}
.x40_c00037{left:177.280000pt;}
.x1b_c00037{left:178.560000pt;}
.x63_c00037{left:186.240000pt;}
.x4_c00037{left:187.520000pt;}
.x41_c00037{left:196.480000pt;}
.xd_c00037{left:197.760000pt;}
.x29_c00037{left:199.680000pt;}
.x4f_c00037{left:205.440000pt;}
.x1c_c00037{left:206.720000pt;}
.x5c_c00037{left:215.040000pt;}
.x24_c00037{left:216.320000pt;}
.x54_c00037{left:224.640000pt;}
.x5_c00037{left:225.920000pt;}
.x37_c00037{left:244.480000pt;}
.x48_c00037{left:253.440000pt;}
.x15_c00037{left:264.320000pt;}
.x50_c00037{left:273.280000pt;}
.xe_c00037{left:274.560000pt;}
.x64_c00037{left:281.600000pt;}
.x59_c00037{left:282.880000pt;}
.x2a_c00037{left:284.160000pt;}
.x3c_c00037{left:291.840000pt;}
.x1d_c00037{left:293.120000pt;}
.x42_c00037{left:302.080000pt;}
.x33_c00037{left:311.680000pt;}
.x1e_c00037{left:320.640000pt;}
.x30_c00037{left:322.560000pt;}
.xf_c00037{left:330.880000pt;}
.x3f_c00037{left:339.840000pt;}
.x2b_c00037{left:341.120000pt;}
.x6_c00037{left:350.720000pt;}
.x67_c00037{left:357.760000pt;}
.x51_c00037{left:359.040000pt;}
.x16_c00037{left:360.320000pt;}
.x4c_c00037{left:367.360000pt;}
.x25_c00037{left:368.640000pt;}
.x38_c00037{left:369.920000pt;}
.x7_c00037{left:378.880000pt;}
.x5a_c00037{left:387.200000pt;}
.x1f_c00037{left:388.480000pt;}
.x39_c00037{left:397.440000pt;}
.x10_c00037{left:398.720000pt;}
.x49_c00037{left:406.400000pt;}
.x20_c00037{left:416.640000pt;}
.x34_c00037{left:417.920000pt;}
.x5d_c00037{left:425.600000pt;}
.x11_c00037{left:426.880000pt;}
.x4d_c00037{left:435.200000pt;}
.x65_c00037{left:444.800000pt;}
.x17_c00037{left:446.080000pt;}
.x2c_c00037{left:455.040000pt;}
.x45_c00037{left:464.640000pt;}
.x8_c00037{left:465.920000pt;}
.x4a_c00037{left:472.320000pt;}
.x55_c00037{left:482.560000pt;}
.x3a_c00037{left:483.840000pt;}
.x46_c00037{left:492.800000pt;}
.x56_c00037{left:502.400000pt;}
.x31_c00037{left:503.680000pt;}
.x9_c00037{left:504.960000pt;}
.x3d_c00037{left:512.640000pt;}
.x21_c00037{left:513.920000pt;}
.x43_c00037{left:522.240000pt;}
.x5e_c00037{left:530.560000pt;}
.x32_c00037{left:531.840000pt;}
.x26_c00037{left:533.120000pt;}
.x35_c00037{left:541.440000pt;}
.x4b_c00037{left:549.760000pt;}
.x18_c00037{left:551.040000pt;}
.x66_c00037{left:559.360000pt;}
.x2d_c00037{left:560.640000pt;}
.x36_c00037{left:570.240000pt;}
.x27_c00037{left:579.840000pt;}
.xa_c00037{left:581.120000pt;}
.x3e_c00037{left:589.440000pt;}
.x12_c00037{left:591.360000pt;}
.x22_c00037{left:599.680000pt;}
.x19_c00037{left:600.960000pt;}
.x62_c00037{left:607.360000pt;}
.x2e_c00037{left:608.640000pt;}
.xb_c00037{left:609.920000pt;}
.x5f_c00037{left:616.960000pt;}
.x3b_c00037{left:618.240000pt;}
.x44_c00037{left:628.480000pt;}
.x1_c00037{left:645.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3e07e2557a622acae10791ff.woff2')format("woff");}.ff1_c00038{font-family:ff1_c00038;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3e_c00038{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m45_c00038{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m53_c00038{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m0_c00038{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m26_c00038{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m44_c00038{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m52_c00038{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m47_c00038{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m41_c00038{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m42_c00038{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m13_c00038{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m54_c00038{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m30_c00038{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m43_c00038{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m17_c00038{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);}
.m57_c00038{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m35_c00038{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_c00038{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.ma_c00038{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m11_c00038{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00038{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);}
.m1c_c00038{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);}
.m2b_c00038{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00038{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m25_c00038{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m20_c00038{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);}
.m4a_c00038{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m19_c00038{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);}
.m14_c00038{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.md_c00038{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);}
.m58_c00038{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);}
.m40_c00038{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);}
.m1e_c00038{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00038{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m24_c00038{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m48_c00038{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);}
.m59_c00038{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);}
.m21_c00038{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m22_c00038{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);}
.m32_c00038{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);}
.m4b_c00038{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m28_c00038{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00038{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m8_c00038{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m7_c00038{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);}
.m38_c00038{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m5_c00038{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);}
.m3c_c00038{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.mc_c00038{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);}
.m2e_c00038{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00038{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.me_c00038{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m23_c00038{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);}
.m51_c00038{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m4_c00038{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00038{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00038{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);}
.m37_c00038{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m46_c00038{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m27_c00038{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m29_c00038{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00038{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);}
.m18_c00038{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);}
.m3d_c00038{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00038{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m3_c00038{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);}
.m36_c00038{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00038{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m9_c00038{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m2_c00038{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);}
.m33_c00038{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m56_c00038{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m15_c00038{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m6_c00038{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);}
.m31_c00038{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m34_c00038{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);}
.m12_c00038{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_c00038{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m39_c00038{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m1_c00038{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m55_c00038{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00038{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m10_c00038{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);}
.m49_c00038{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);}
.mb_c00038{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00038{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00038{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00038{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00038{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.m50_c00038{transform:matrix(0.982500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.982500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.982500,0.000000,0.000000,0.250000,0,0);}
.v1_c00038{vertical-align:-2.880000px;}
.v0_c00038{vertical-align:0.000000px;}
.ls0_c00038{letter-spacing:0.000000px;}
.sc__c00038{text-shadow:none;}
.sc0_c00038{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00038{-webkit-text-stroke:0px transparent;}
.sc0_c00038{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00038{word-spacing:0.000000px;}
.ws0_c00038{word-spacing:1.762800px;}
.fc0_c00038{color:transparent;}
.fsd_c00038{font-size:23.040000px;}
.fs1_c00038{font-size:34.560000px;}
.fs3_c00038{font-size:37.440000px;}
.fsb_c00038{font-size:43.200000px;}
.fs6_c00038{font-size:46.080000px;}
.fs4_c00038{font-size:48.960000px;}
.fs2_c00038{font-size:51.840000px;}
.fs5_c00038{font-size:54.720000px;}
.fs9_c00038{font-size:57.600000px;}
.fs7_c00038{font-size:60.480000px;}
.fsa_c00038{font-size:63.360000px;}
.fs8_c00038{font-size:66.240000px;}
.fs0_c00038{font-size:69.120000px;}
.fsc_c00038{font-size:72.000000px;}
.y0_c00038{bottom:0.000000px;}
.y59_c00038{bottom:78.480000px;}
.y57_c00038{bottom:80.640000px;}
.y58_c00038{bottom:82.080000px;}
.y56_c00038{bottom:82.800000px;}
.y55_c00038{bottom:83.520000px;}
.y54_c00038{bottom:120.960000px;}
.y53_c00038{bottom:121.680000px;}
.y52_c00038{bottom:123.120000px;}
.y50_c00038{bottom:123.840000px;}
.y51_c00038{bottom:125.280000px;}
.y4e_c00038{bottom:163.440000px;}
.y4f_c00038{bottom:164.160000px;}
.y4b_c00038{bottom:165.600000px;}
.y4d_c00038{bottom:167.040000px;}
.y4c_c00038{bottom:167.760000px;}
.y4a_c00038{bottom:168.480000px;}
.y47_c00038{bottom:207.360000px;}
.y48_c00038{bottom:208.080000px;}
.y49_c00038{bottom:209.520000px;}
.y46_c00038{bottom:210.240000px;}
.y45_c00038{bottom:249.840000px;}
.y44_c00038{bottom:252.000000px;}
.y42_c00038{bottom:252.720000px;}
.y43_c00038{bottom:253.440000px;}
.y41_c00038{bottom:305.280000px;}
.y40_c00038{bottom:306.000000px;}
.y3d_c00038{bottom:345.600000px;}
.y3b_c00038{bottom:346.320000px;}
.y3c_c00038{bottom:347.760000px;}
.y3f_c00038{bottom:348.480000px;}
.y3e_c00038{bottom:349.200000px;}
.y3a_c00038{bottom:388.080000px;}
.y39_c00038{bottom:388.800000px;}
.y37_c00038{bottom:390.960000px;}
.y38_c00038{bottom:391.680000px;}
.y34_c00038{bottom:430.560000px;}
.y32_c00038{bottom:431.280000px;}
.y33_c00038{bottom:432.000000px;}
.y35_c00038{bottom:433.440000px;}
.y36_c00038{bottom:434.160000px;}
.y31_c00038{bottom:473.040000px;}
.y30_c00038{bottom:473.760000px;}
.y2f_c00038{bottom:475.920000px;}
.y2e_c00038{bottom:476.640000px;}
.y2d_c00038{bottom:477.360000px;}
.y2c_c00038{bottom:516.240000px;}
.y2b_c00038{bottom:516.960000px;}
.y29_c00038{bottom:518.400000px;}
.y28_c00038{bottom:519.120000px;}
.y2a_c00038{bottom:519.840000px;}
.y26_c00038{bottom:558.720000px;}
.y24_c00038{bottom:559.440000px;}
.y25_c00038{bottom:561.600000px;}
.y27_c00038{bottom:562.320000px;}
.y23_c00038{bottom:601.200000px;}
.y22_c00038{bottom:604.080000px;}
.y1f_c00038{bottom:643.680000px;}
.y1e_c00038{bottom:646.560000px;}
.y21_c00038{bottom:647.280000px;}
.y20_c00038{bottom:648.000000px;}
.y1b_c00038{bottom:686.160000px;}
.y1c_c00038{bottom:686.880000px;}
.y1d_c00038{bottom:687.600000px;}
.y1a_c00038{bottom:689.040000px;}
.y19_c00038{bottom:689.760000px;}
.y18_c00038{bottom:729.360000px;}
.y16_c00038{bottom:731.520000px;}
.y17_c00038{bottom:732.240000px;}
.y15_c00038{bottom:771.120000px;}
.y14_c00038{bottom:774.000000px;}
.y13_c00038{bottom:774.720000px;}
.y11_c00038{bottom:825.120000px;}
.y12_c00038{bottom:826.560000px;}
.yf_c00038{bottom:827.280000px;}
.y10_c00038{bottom:828.000000px;}
.yc_c00038{bottom:868.320000px;}
.yd_c00038{bottom:870.480000px;}
.ye_c00038{bottom:871.200000px;}
.yb_c00038{bottom:909.360000px;}
.y9_c00038{bottom:912.960000px;}
.ya_c00038{bottom:913.680000px;}
.y7_c00038{bottom:952.560000px;}
.y8_c00038{bottom:953.280000px;}
.y6_c00038{bottom:955.440000px;}
.y5_c00038{bottom:956.160000px;}
.y4_c00038{bottom:1006.560000px;}
.y2_c00038{bottom:1008.720000px;}
.y3_c00038{bottom:1009.440000px;}
.y1_c00038{bottom:1082.160000px;}
.h10_c00038{height:20.733750px;}
.h3_c00038{height:31.100625px;}
.h5_c00038{height:33.692344px;}
.he_c00038{height:38.875781px;}
.h8_c00038{height:41.467500px;}
.ha_c00038{height:43.770937px;}
.h6_c00038{height:44.059219px;}
.h4_c00038{height:46.650937px;}
.h7_c00038{height:49.242656px;}
.hc_c00038{height:51.834375px;}
.h9_c00038{height:54.426094px;}
.hd_c00038{height:57.017812px;}
.hb_c00038{height:59.609531px;}
.h2_c00038{height:62.201250px;}
.hf_c00038{height:64.792969px;}
.h0_c00038{height:1153.440000px;}
.h1_c00038{height:1153.500000px;}
.w0_c00038{width:810.720000px;}
.w1_c00038{width:810.750000px;}
.x0_c00038{left:0.000000px;}
.x48_c00038{left:86.400000px;}
.x2_c00038{left:87.840000px;}
.x53_c00038{left:118.800000px;}
.x3_c00038{left:120.240000px;}
.x52_c00038{left:129.600000px;}
.x23_c00038{left:131.760000px;}
.x1d_c00038{left:141.120000px;}
.x2c_c00038{left:142.560000px;}
.x49_c00038{left:151.200000px;}
.x4_c00038{left:152.640000px;}
.x44_c00038{left:162.000000px;}
.x41_c00038{left:172.800000px;}
.x28_c00038{left:174.960000px;}
.x12_c00038{left:185.040000px;}
.xa_c00038{left:195.120000px;}
.x51_c00038{left:196.560000px;}
.x24_c00038{left:205.920000px;}
.x4e_c00038{left:207.360000px;}
.x3c_c00038{left:216.720000px;}
.x13_c00038{left:218.160000px;}
.xb_c00038{left:226.800000px;}
.x4a_c00038{left:237.600000px;}
.x20_c00038{left:239.040000px;}
.x14_c00038{left:249.120000px;}
.x1a_c00038{left:250.560000px;}
.x36_c00038{left:259.920000px;}
.x42_c00038{left:262.800000px;}
.x5_c00038{left:270.720000px;}
.x54_c00038{left:272.160000px;}
.x45_c00038{left:281.520000px;}
.x37_c00038{left:293.760000px;}
.x1e_c00038{left:303.120000px;}
.xc_c00038{left:313.200000px;}
.x6_c00038{left:324.720000px;}
.x3d_c00038{left:334.800000px;}
.x33_c00038{left:345.600000px;}
.x57_c00038{left:356.400000px;}
.x25_c00038{left:357.840000px;}
.x15_c00038{left:367.920000px;}
.x7_c00038{left:378.000000px;}
.x34_c00038{left:389.520000px;}
.x58_c00038{left:398.880000px;}
.x38_c00038{left:409.680000px;}
.x8_c00038{left:411.120000px;}
.x29_c00038{left:412.560000px;}
.xd_c00038{left:421.920000px;}
.x3e_c00038{left:423.360000px;}
.x21_c00038{left:432.000000px;}
.x46_c00038{left:433.440000px;}
.x55_c00038{left:442.800000px;}
.x4b_c00038{left:452.880000px;}
.x43_c00038{left:463.680000px;}
.x2d_c00038{left:465.120000px;}
.x1f_c00038{left:475.200000px;}
.x16_c00038{left:486.720000px;}
.xe_c00038{left:497.520000px;}
.x3f_c00038{left:508.320000px;}
.x9_c00038{left:518.400000px;}
.x47_c00038{left:529.200000px;}
.xf_c00038{left:540.000000px;}
.x35_c00038{left:550.800000px;}
.x2a_c00038{left:559.440000px;}
.x4c_c00038{left:560.880000px;}
.x2e_c00038{left:571.680000px;}
.x4f_c00038{left:581.040000px;}
.x26_c00038{left:583.200000px;}
.x39_c00038{left:594.000000px;}
.x17_c00038{left:604.800000px;}
.x10_c00038{left:616.320000px;}
.x2f_c00038{left:624.960000px;}
.x3a_c00038{left:626.400000px;}
.x18_c00038{left:636.480000px;}
.x27_c00038{left:637.920000px;}
.x4d_c00038{left:645.840000px;}
.x2b_c00038{left:648.000000px;}
.x1b_c00038{left:658.800000px;}
.x11_c00038{left:660.960000px;}
.x56_c00038{left:668.160000px;}
.x30_c00038{left:669.600000px;}
.x40_c00038{left:671.760000px;}
.x1c_c00038{left:680.400000px;}
.x50_c00038{left:689.760000px;}
.x22_c00038{left:691.200000px;}
.x31_c00038{left:701.280000px;}
.x19_c00038{left:712.800000px;}
.x3b_c00038{left:722.160000px;}
.x32_c00038{left:723.600000px;}
.x1_c00038{left:745.200000px;}
@media print{
.v1_c00038{vertical-align:-2.560000pt;}
.v0_c00038{vertical-align:0.000000pt;}
.ls0_c00038{letter-spacing:0.000000pt;}
.ws1_c00038{word-spacing:0.000000pt;}
.ws0_c00038{word-spacing:1.566933pt;}
.fsd_c00038{font-size:20.480000pt;}
.fs1_c00038{font-size:30.720000pt;}
.fs3_c00038{font-size:33.280000pt;}
.fsb_c00038{font-size:38.400000pt;}
.fs6_c00038{font-size:40.960000pt;}
.fs4_c00038{font-size:43.520000pt;}
.fs2_c00038{font-size:46.080000pt;}
.fs5_c00038{font-size:48.640000pt;}
.fs9_c00038{font-size:51.200000pt;}
.fs7_c00038{font-size:53.760000pt;}
.fsa_c00038{font-size:56.320000pt;}
.fs8_c00038{font-size:58.880000pt;}
.fs0_c00038{font-size:61.440000pt;}
.fsc_c00038{font-size:64.000000pt;}
.y0_c00038{bottom:0.000000pt;}
.y59_c00038{bottom:69.760000pt;}
.y57_c00038{bottom:71.680000pt;}
.y58_c00038{bottom:72.960000pt;}
.y56_c00038{bottom:73.600000pt;}
.y55_c00038{bottom:74.240000pt;}
.y54_c00038{bottom:107.520000pt;}
.y53_c00038{bottom:108.160000pt;}
.y52_c00038{bottom:109.440000pt;}
.y50_c00038{bottom:110.080000pt;}
.y51_c00038{bottom:111.360000pt;}
.y4e_c00038{bottom:145.280000pt;}
.y4f_c00038{bottom:145.920000pt;}
.y4b_c00038{bottom:147.200000pt;}
.y4d_c00038{bottom:148.480000pt;}
.y4c_c00038{bottom:149.120000pt;}
.y4a_c00038{bottom:149.760000pt;}
.y47_c00038{bottom:184.320000pt;}
.y48_c00038{bottom:184.960000pt;}
.y49_c00038{bottom:186.240000pt;}
.y46_c00038{bottom:186.880000pt;}
.y45_c00038{bottom:222.080000pt;}
.y44_c00038{bottom:224.000000pt;}
.y42_c00038{bottom:224.640000pt;}
.y43_c00038{bottom:225.280000pt;}
.y41_c00038{bottom:271.360000pt;}
.y40_c00038{bottom:272.000000pt;}
.y3d_c00038{bottom:307.200000pt;}
.y3b_c00038{bottom:307.840000pt;}
.y3c_c00038{bottom:309.120000pt;}
.y3f_c00038{bottom:309.760000pt;}
.y3e_c00038{bottom:310.400000pt;}
.y3a_c00038{bottom:344.960000pt;}
.y39_c00038{bottom:345.600000pt;}
.y37_c00038{bottom:347.520000pt;}
.y38_c00038{bottom:348.160000pt;}
.y34_c00038{bottom:382.720000pt;}
.y32_c00038{bottom:383.360000pt;}
.y33_c00038{bottom:384.000000pt;}
.y35_c00038{bottom:385.280000pt;}
.y36_c00038{bottom:385.920000pt;}
.y31_c00038{bottom:420.480000pt;}
.y30_c00038{bottom:421.120000pt;}
.y2f_c00038{bottom:423.040000pt;}
.y2e_c00038{bottom:423.680000pt;}
.y2d_c00038{bottom:424.320000pt;}
.y2c_c00038{bottom:458.880000pt;}
.y2b_c00038{bottom:459.520000pt;}
.y29_c00038{bottom:460.800000pt;}
.y28_c00038{bottom:461.440000pt;}
.y2a_c00038{bottom:462.080000pt;}
.y26_c00038{bottom:496.640000pt;}
.y24_c00038{bottom:497.280000pt;}
.y25_c00038{bottom:499.200000pt;}
.y27_c00038{bottom:499.840000pt;}
.y23_c00038{bottom:534.400000pt;}
.y22_c00038{bottom:536.960000pt;}
.y1f_c00038{bottom:572.160000pt;}
.y1e_c00038{bottom:574.720000pt;}
.y21_c00038{bottom:575.360000pt;}
.y20_c00038{bottom:576.000000pt;}
.y1b_c00038{bottom:609.920000pt;}
.y1c_c00038{bottom:610.560000pt;}
.y1d_c00038{bottom:611.200000pt;}
.y1a_c00038{bottom:612.480000pt;}
.y19_c00038{bottom:613.120000pt;}
.y18_c00038{bottom:648.320000pt;}
.y16_c00038{bottom:650.240000pt;}
.y17_c00038{bottom:650.880000pt;}
.y15_c00038{bottom:685.440000pt;}
.y14_c00038{bottom:688.000000pt;}
.y13_c00038{bottom:688.640000pt;}
.y11_c00038{bottom:733.440000pt;}
.y12_c00038{bottom:734.720000pt;}
.yf_c00038{bottom:735.360000pt;}
.y10_c00038{bottom:736.000000pt;}
.yc_c00038{bottom:771.840000pt;}
.yd_c00038{bottom:773.760000pt;}
.ye_c00038{bottom:774.400000pt;}
.yb_c00038{bottom:808.320000pt;}
.y9_c00038{bottom:811.520000pt;}
.ya_c00038{bottom:812.160000pt;}
.y7_c00038{bottom:846.720000pt;}
.y8_c00038{bottom:847.360000pt;}
.y6_c00038{bottom:849.280000pt;}
.y5_c00038{bottom:849.920000pt;}
.y4_c00038{bottom:894.720000pt;}
.y2_c00038{bottom:896.640000pt;}
.y3_c00038{bottom:897.280000pt;}
.y1_c00038{bottom:961.920000pt;}
.h10_c00038{height:18.430000pt;}
.h3_c00038{height:27.645000pt;}
.h5_c00038{height:29.948750pt;}
.he_c00038{height:34.556250pt;}
.h8_c00038{height:36.860000pt;}
.ha_c00038{height:38.907500pt;}
.h6_c00038{height:39.163750pt;}
.h4_c00038{height:41.467500pt;}
.h7_c00038{height:43.771250pt;}
.hc_c00038{height:46.075000pt;}
.h9_c00038{height:48.378750pt;}
.hd_c00038{height:50.682500pt;}
.hb_c00038{height:52.986250pt;}
.h2_c00038{height:55.290000pt;}
.hf_c00038{height:57.593750pt;}
.h0_c00038{height:1025.280000pt;}
.h1_c00038{height:1025.333333pt;}
.w0_c00038{width:720.640000pt;}
.w1_c00038{width:720.666667pt;}
.x0_c00038{left:0.000000pt;}
.x48_c00038{left:76.800000pt;}
.x2_c00038{left:78.080000pt;}
.x53_c00038{left:105.600000pt;}
.x3_c00038{left:106.880000pt;}
.x52_c00038{left:115.200000pt;}
.x23_c00038{left:117.120000pt;}
.x1d_c00038{left:125.440000pt;}
.x2c_c00038{left:126.720000pt;}
.x49_c00038{left:134.400000pt;}
.x4_c00038{left:135.680000pt;}
.x44_c00038{left:144.000000pt;}
.x41_c00038{left:153.600000pt;}
.x28_c00038{left:155.520000pt;}
.x12_c00038{left:164.480000pt;}
.xa_c00038{left:173.440000pt;}
.x51_c00038{left:174.720000pt;}
.x24_c00038{left:183.040000pt;}
.x4e_c00038{left:184.320000pt;}
.x3c_c00038{left:192.640000pt;}
.x13_c00038{left:193.920000pt;}
.xb_c00038{left:201.600000pt;}
.x4a_c00038{left:211.200000pt;}
.x20_c00038{left:212.480000pt;}
.x14_c00038{left:221.440000pt;}
.x1a_c00038{left:222.720000pt;}
.x36_c00038{left:231.040000pt;}
.x42_c00038{left:233.600000pt;}
.x5_c00038{left:240.640000pt;}
.x54_c00038{left:241.920000pt;}
.x45_c00038{left:250.240000pt;}
.x37_c00038{left:261.120000pt;}
.x1e_c00038{left:269.440000pt;}
.xc_c00038{left:278.400000pt;}
.x6_c00038{left:288.640000pt;}
.x3d_c00038{left:297.600000pt;}
.x33_c00038{left:307.200000pt;}
.x57_c00038{left:316.800000pt;}
.x25_c00038{left:318.080000pt;}
.x15_c00038{left:327.040000pt;}
.x7_c00038{left:336.000000pt;}
.x34_c00038{left:346.240000pt;}
.x58_c00038{left:354.560000pt;}
.x38_c00038{left:364.160000pt;}
.x8_c00038{left:365.440000pt;}
.x29_c00038{left:366.720000pt;}
.xd_c00038{left:375.040000pt;}
.x3e_c00038{left:376.320000pt;}
.x21_c00038{left:384.000000pt;}
.x46_c00038{left:385.280000pt;}
.x55_c00038{left:393.600000pt;}
.x4b_c00038{left:402.560000pt;}
.x43_c00038{left:412.160000pt;}
.x2d_c00038{left:413.440000pt;}
.x1f_c00038{left:422.400000pt;}
.x16_c00038{left:432.640000pt;}
.xe_c00038{left:442.240000pt;}
.x3f_c00038{left:451.840000pt;}
.x9_c00038{left:460.800000pt;}
.x47_c00038{left:470.400000pt;}
.xf_c00038{left:480.000000pt;}
.x35_c00038{left:489.600000pt;}
.x2a_c00038{left:497.280000pt;}
.x4c_c00038{left:498.560000pt;}
.x2e_c00038{left:508.160000pt;}
.x4f_c00038{left:516.480000pt;}
.x26_c00038{left:518.400000pt;}
.x39_c00038{left:528.000000pt;}
.x17_c00038{left:537.600000pt;}
.x10_c00038{left:547.840000pt;}
.x2f_c00038{left:555.520000pt;}
.x3a_c00038{left:556.800000pt;}
.x18_c00038{left:565.760000pt;}
.x27_c00038{left:567.040000pt;}
.x4d_c00038{left:574.080000pt;}
.x2b_c00038{left:576.000000pt;}
.x1b_c00038{left:585.600000pt;}
.x11_c00038{left:587.520000pt;}
.x56_c00038{left:593.920000pt;}
.x30_c00038{left:595.200000pt;}
.x40_c00038{left:597.120000pt;}
.x1c_c00038{left:604.800000pt;}
.x50_c00038{left:613.120000pt;}
.x22_c00038{left:614.400000pt;}
.x31_c00038{left:623.360000pt;}
.x19_c00038{left:633.600000pt;}
.x3b_c00038{left:641.920000pt;}
.x32_c00038{left:643.200000pt;}
.x1_c00038{left:662.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_85554bcf2439800e9bcafdb6.woff2')format("woff");}.ff1_c00039{font-family:ff1_c00039;line-height:1.109863;font-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_c00039{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m42_c00039{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00039{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);}
.m33_c00039{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m20_c00039{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00039{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00039{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m50_c00039{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00039{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m44_c00039{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00039{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m23_c00039{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m14_c00039{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00039{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m51_c00039{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m0_c00039{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m58_c00039{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m21_c00039{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m1_c00039{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m29_c00039{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);}
.m60_c00039{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00039{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);}
.m37_c00039{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00039{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);}
.m52_c00039{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00039{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);}
.m1d_c00039{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m6_c00039{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m32_c00039{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);}
.m48_c00039{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);}
.m13_c00039{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00039{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m38_c00039{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);}
.m3a_c00039{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00039{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m39_c00039{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);}
.m26_c00039{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00039{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);}
.m5f_c00039{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);}
.m1b_c00039{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);}
.m56_c00039{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00039{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m43_c00039{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);}
.m62_c00039{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m27_c00039{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);}
.ma_c00039{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);}
.m35_c00039{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);}
.m28_c00039{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m22_c00039{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m17_c00039{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.me_c00039{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);}
.m19_c00039{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m9_c00039{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m45_c00039{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m3_c00039{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);}
.m7_c00039{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m57_c00039{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00039{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m11_c00039{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m2_c00039{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);}
.m41_c00039{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00039{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m18_c00039{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m15_c00039{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);}
.m36_c00039{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m10_c00039{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m55_c00039{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);}
.m2f_c00039{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);}
.mb_c00039{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m31_c00039{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m16_c00039{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m61_c00039{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00039{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m30_c00039{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);}
.md_c00039{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m5_c00039{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m12_c00039{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m46_c00039{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00039{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00039{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);}
.mf_c00039{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);}
.m53_c00039{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m24_c00039{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m40_c00039{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00039{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00039{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00039{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00039{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);}
.mc_c00039{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);}
.m59_c00039{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m54_c00039{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m4_c00039{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);}
.m4d_c00039{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m34_c00039{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m49_c00039{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m25_c00039{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00039{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m47_c00039{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);}
.m8_c00039{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.v0_c00039{vertical-align:0.000000px;}
.v1_c00039{vertical-align:11.520000px;}
.ls0_c00039{letter-spacing:0.000000px;}
.sc__c00039{text-shadow:none;}
.sc0_c00039{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00039{-webkit-text-stroke:0px transparent;}
.sc0_c00039{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00039{word-spacing:-5.501280px;}
.ws1_c00039{word-spacing:-0.089040px;}
.ws2_c00039{word-spacing:0.000000px;}
.fc0_c00039{color:transparent;}
.fs6_c00039{font-size:14.400000px;}
.fs2_c00039{font-size:34.560000px;}
.fs9_c00039{font-size:37.440000px;}
.fse_c00039{font-size:40.320000px;}
.fsf_c00039{font-size:43.200000px;}
.fs7_c00039{font-size:46.080000px;}
.fs3_c00039{font-size:48.960000px;}
.fs4_c00039{font-size:51.840000px;}
.fsb_c00039{font-size:54.720000px;}
.fs8_c00039{font-size:57.600000px;}
.fsa_c00039{font-size:60.480000px;}
.fs5_c00039{font-size:63.360000px;}
.fsd_c00039{font-size:66.240000px;}
.fsc_c00039{font-size:69.120000px;}
.fs1_c00039{font-size:72.000000px;}
.fs0_c00039{font-size:74.880000px;}
.y0_c00039{bottom:0.000000px;}
.y5a_c00039{bottom:69.840000px;}
.y59_c00039{bottom:70.560000px;}
.y56_c00039{bottom:71.280000px;}
.y58_c00039{bottom:72.720000px;}
.y57_c00039{bottom:73.440000px;}
.y53_c00039{bottom:112.320000px;}
.y54_c00039{bottom:113.040000px;}
.y52_c00039{bottom:113.760000px;}
.y55_c00039{bottom:115.200000px;}
.y51_c00039{bottom:115.920000px;}
.y50_c00039{bottom:116.640000px;}
.y4f_c00039{bottom:167.040000px;}
.y4e_c00039{bottom:169.200000px;}
.y4d_c00039{bottom:169.920000px;}
.y4c_c00039{bottom:208.080000px;}
.y4b_c00039{bottom:211.680000px;}
.y4a_c00039{bottom:212.400000px;}
.y47_c00039{bottom:252.000000px;}
.y49_c00039{bottom:253.440000px;}
.y48_c00039{bottom:254.160000px;}
.y46_c00039{bottom:254.880000px;}
.y45_c00039{bottom:293.760000px;}
.y43_c00039{bottom:296.640000px;}
.y44_c00039{bottom:297.360000px;}
.y41_c00039{bottom:346.320000px;}
.y40_c00039{bottom:347.040000px;}
.y3e_c00039{bottom:347.760000px;}
.y42_c00039{bottom:348.480000px;}
.y3f_c00039{bottom:349.920000px;}
.y3d_c00039{bottom:350.640000px;}
.y3b_c00039{bottom:389.520000px;}
.y38_c00039{bottom:390.240000px;}
.y3c_c00039{bottom:390.960000px;}
.y39_c00039{bottom:392.400000px;}
.y37_c00039{bottom:393.120000px;}
.y3a_c00039{bottom:393.840000px;}
.y36_c00039{bottom:432.720000px;}
.y34_c00039{bottom:434.880000px;}
.y35_c00039{bottom:435.600000px;}
.y31_c00039{bottom:474.480000px;}
.y30_c00039{bottom:475.200000px;}
.y33_c00039{bottom:477.360000px;}
.y32_c00039{bottom:478.080000px;}
.y2c_c00039{bottom:516.960000px;}
.y2f_c00039{bottom:517.680000px;}
.y2e_c00039{bottom:519.840000px;}
.y2d_c00039{bottom:520.560000px;}
.y2b_c00039{bottom:559.440000px;}
.y29_c00039{bottom:560.160000px;}
.y28_c00039{bottom:563.040000px;}
.y2a_c00039{bottom:563.760000px;}
.y24_c00039{bottom:602.640000px;}
.y27_c00039{bottom:603.360000px;}
.y25_c00039{bottom:605.520000px;}
.y26_c00039{bottom:606.240000px;}
.y22_c00039{bottom:645.840000px;}
.y20_c00039{bottom:646.560000px;}
.y21_c00039{bottom:648.000000px;}
.y23_c00039{bottom:648.720000px;}
.y1c_c00039{bottom:687.600000px;}
.y1f_c00039{bottom:688.320000px;}
.y1b_c00039{bottom:689.040000px;}
.y1e_c00039{bottom:690.480000px;}
.y1d_c00039{bottom:691.200000px;}
.y19_c00039{bottom:730.800000px;}
.y17_c00039{bottom:732.960000px;}
.y18_c00039{bottom:733.680000px;}
.y1a_c00039{bottom:734.400000px;}
.y14_c00039{bottom:773.280000px;}
.y13_c00039{bottom:774.000000px;}
.y12_c00039{bottom:776.160000px;}
.y16_c00039{bottom:776.880000px;}
.y15_c00039{bottom:777.600000px;}
.y11_c00039{bottom:825.840000px;}
.y10_c00039{bottom:827.280000px;}
.yf_c00039{bottom:829.440000px;}
.ye_c00039{bottom:869.760000px;}
.yc_c00039{bottom:871.920000px;}
.yd_c00039{bottom:872.640000px;}
.y9_c00039{bottom:912.240000px;}
.y8_c00039{bottom:914.400000px;}
.ya_c00039{bottom:915.120000px;}
.yb_c00039{bottom:915.840000px;}
.y6_c00039{bottom:956.880000px;}
.y7_c00039{bottom:957.600000px;}
.y2_c00039{bottom:997.200000px;}
.y4_c00039{bottom:1000.080000px;}
.y3_c00039{bottom:1000.800000px;}
.y5_c00039{bottom:1003.680000px;}
.y1_c00039{bottom:1079.280000px;}
.h8_c00039{height:12.958594px;}
.h4_c00039{height:31.100625px;}
.hb_c00039{height:33.692344px;}
.h10_c00039{height:36.284062px;}
.h12_c00039{height:38.875781px;}
.h9_c00039{height:41.467500px;}
.h5_c00039{height:44.059219px;}
.h6_c00039{height:46.650937px;}
.hd_c00039{height:49.242656px;}
.ha_c00039{height:51.834375px;}
.hc_c00039{height:54.426094px;}
.h7_c00039{height:57.017812px;}
.h11_c00039{height:58.170937px;}
.hf_c00039{height:59.609531px;}
.he_c00039{height:62.201250px;}
.h3_c00039{height:64.792969px;}
.h2_c00039{height:67.384687px;}
.h1_c00039{height:1149.000000px;}
.h0_c00039{height:1149.120000px;}
.w1_c00039{width:804.000000px;}
.w0_c00039{width:804.240000px;}
.x0_c00039{left:0.000000px;}
.x1a_c00039{left:84.240000px;}
.x2_c00039{left:85.680000px;}
.x50_c00039{left:117.360000px;}
.x3a_c00039{left:118.800000px;}
.x13_c00039{left:128.880000px;}
.x49_c00039{left:138.960000px;}
.x36_c00039{left:140.400000px;}
.x43_c00039{left:149.760000px;}
.x3_c00039{left:151.200000px;}
.x4_c00039{left:171.360000px;}
.x58_c00039{left:172.800000px;}
.x20_c00039{left:174.960000px;}
.x37_c00039{left:182.160000px;}
.x22_c00039{left:194.400000px;}
.x1b_c00039{left:203.760000px;}
.x29_c00039{left:215.280000px;}
.x3b_c00039{left:226.080000px;}
.x2a_c00039{left:235.440000px;}
.x14_c00039{left:236.880000px;}
.xb_c00039{left:238.320000px;}
.x54_c00039{left:246.960000px;}
.x23_c00039{left:248.400000px;}
.x5_c00039{left:267.840000px;}
.x21_c00039{left:270.000000px;}
.x1c_c00039{left:279.360000px;}
.x55_c00039{left:289.440000px;}
.x15_c00039{left:290.880000px;}
.xc_c00039{left:300.960000px;}
.x32_c00039{left:311.040000px;}
.x6_c00039{left:312.480000px;}
.x4a_c00039{left:321.840000px;}
.x3c_c00039{left:324.000000px;}
.x16_c00039{left:333.360000px;}
.x44_c00039{left:344.160000px;}
.x2f_c00039{left:354.960000px;}
.x45_c00039{left:365.040000px;}
.x3d_c00039{left:376.560000px;}
.x1d_c00039{left:386.640000px;}
.x24_c00039{left:388.080000px;}
.xd_c00039{left:398.880000px;}
.x3e_c00039{left:408.240000px;}
.x7_c00039{left:409.680000px;}
.x33_c00039{left:419.760000px;}
.xe_c00039{left:429.840000px;}
.x2b_c00039{left:441.360000px;}
.x51_c00039{left:442.800000px;}
.x25_c00039{left:452.880000px;}
.x1e_c00039{left:455.040000px;}
.x4b_c00039{left:462.240000px;}
.x34_c00039{left:473.040000px;}
.x26_c00039{left:474.480000px;}
.x38_c00039{left:483.840000px;}
.x2c_c00039{left:486.000000px;}
.x46_c00039{left:494.640000px;}
.x30_c00039{left:496.800000px;}
.x27_c00039{left:504.000000px;}
.xf_c00039{left:506.160000px;}
.x8_c00039{left:507.600000px;}
.x41_c00039{left:516.240000px;}
.x4c_c00039{left:527.040000px;}
.x59_c00039{left:528.480000px;}
.x10_c00039{left:537.840000px;}
.x17_c00039{left:548.640000px;}
.x4d_c00039{left:558.720000px;}
.x31_c00039{left:562.320000px;}
.x1f_c00039{left:570.240000px;}
.x11_c00039{left:571.680000px;}
.x56_c00039{left:581.040000px;}
.x18_c00039{left:591.840000px;}
.x3f_c00039{left:602.640000px;}
.x2d_c00039{left:614.160000px;}
.x28_c00039{left:624.240000px;}
.x19_c00039{left:635.760000px;}
.x40_c00039{left:644.400000px;}
.x39_c00039{left:645.840000px;}
.x53_c00039{left:647.280000px;}
.x35_c00039{left:655.200000px;}
.x2e_c00039{left:656.640000px;}
.x47_c00039{left:658.800000px;}
.x4e_c00039{left:667.440000px;}
.x42_c00039{left:668.880000px;}
.x9_c00039{left:678.240000px;}
.x52_c00039{left:689.040000px;}
.xa_c00039{left:700.560000px;}
.x4f_c00039{left:709.920000px;}
.x12_c00039{left:711.360000px;}
.x48_c00039{left:732.240000px;}
.x57_c00039{left:743.040000px;}
.x1_c00039{left:752.400000px;}
@media print{
.v0_c00039{vertical-align:0.000000pt;}
.v1_c00039{vertical-align:10.240000pt;}
.ls0_c00039{letter-spacing:0.000000pt;}
.ws0_c00039{word-spacing:-4.890027pt;}
.ws1_c00039{word-spacing:-0.079147pt;}
.ws2_c00039{word-spacing:0.000000pt;}
.fs6_c00039{font-size:12.800000pt;}
.fs2_c00039{font-size:30.720000pt;}
.fs9_c00039{font-size:33.280000pt;}
.fse_c00039{font-size:35.840000pt;}
.fsf_c00039{font-size:38.400000pt;}
.fs7_c00039{font-size:40.960000pt;}
.fs3_c00039{font-size:43.520000pt;}
.fs4_c00039{font-size:46.080000pt;}
.fsb_c00039{font-size:48.640000pt;}
.fs8_c00039{font-size:51.200000pt;}
.fsa_c00039{font-size:53.760000pt;}
.fs5_c00039{font-size:56.320000pt;}
.fsd_c00039{font-size:58.880000pt;}
.fsc_c00039{font-size:61.440000pt;}
.fs1_c00039{font-size:64.000000pt;}
.fs0_c00039{font-size:66.560000pt;}
.y0_c00039{bottom:0.000000pt;}
.y5a_c00039{bottom:62.080000pt;}
.y59_c00039{bottom:62.720000pt;}
.y56_c00039{bottom:63.360000pt;}
.y58_c00039{bottom:64.640000pt;}
.y57_c00039{bottom:65.280000pt;}
.y53_c00039{bottom:99.840000pt;}
.y54_c00039{bottom:100.480000pt;}
.y52_c00039{bottom:101.120000pt;}
.y55_c00039{bottom:102.400000pt;}
.y51_c00039{bottom:103.040000pt;}
.y50_c00039{bottom:103.680000pt;}
.y4f_c00039{bottom:148.480000pt;}
.y4e_c00039{bottom:150.400000pt;}
.y4d_c00039{bottom:151.040000pt;}
.y4c_c00039{bottom:184.960000pt;}
.y4b_c00039{bottom:188.160000pt;}
.y4a_c00039{bottom:188.800000pt;}
.y47_c00039{bottom:224.000000pt;}
.y49_c00039{bottom:225.280000pt;}
.y48_c00039{bottom:225.920000pt;}
.y46_c00039{bottom:226.560000pt;}
.y45_c00039{bottom:261.120000pt;}
.y43_c00039{bottom:263.680000pt;}
.y44_c00039{bottom:264.320000pt;}
.y41_c00039{bottom:307.840000pt;}
.y40_c00039{bottom:308.480000pt;}
.y3e_c00039{bottom:309.120000pt;}
.y42_c00039{bottom:309.760000pt;}
.y3f_c00039{bottom:311.040000pt;}
.y3d_c00039{bottom:311.680000pt;}
.y3b_c00039{bottom:346.240000pt;}
.y38_c00039{bottom:346.880000pt;}
.y3c_c00039{bottom:347.520000pt;}
.y39_c00039{bottom:348.800000pt;}
.y37_c00039{bottom:349.440000pt;}
.y3a_c00039{bottom:350.080000pt;}
.y36_c00039{bottom:384.640000pt;}
.y34_c00039{bottom:386.560000pt;}
.y35_c00039{bottom:387.200000pt;}
.y31_c00039{bottom:421.760000pt;}
.y30_c00039{bottom:422.400000pt;}
.y33_c00039{bottom:424.320000pt;}
.y32_c00039{bottom:424.960000pt;}
.y2c_c00039{bottom:459.520000pt;}
.y2f_c00039{bottom:460.160000pt;}
.y2e_c00039{bottom:462.080000pt;}
.y2d_c00039{bottom:462.720000pt;}
.y2b_c00039{bottom:497.280000pt;}
.y29_c00039{bottom:497.920000pt;}
.y28_c00039{bottom:500.480000pt;}
.y2a_c00039{bottom:501.120000pt;}
.y24_c00039{bottom:535.680000pt;}
.y27_c00039{bottom:536.320000pt;}
.y25_c00039{bottom:538.240000pt;}
.y26_c00039{bottom:538.880000pt;}
.y22_c00039{bottom:574.080000pt;}
.y20_c00039{bottom:574.720000pt;}
.y21_c00039{bottom:576.000000pt;}
.y23_c00039{bottom:576.640000pt;}
.y1c_c00039{bottom:611.200000pt;}
.y1f_c00039{bottom:611.840000pt;}
.y1b_c00039{bottom:612.480000pt;}
.y1e_c00039{bottom:613.760000pt;}
.y1d_c00039{bottom:614.400000pt;}
.y19_c00039{bottom:649.600000pt;}
.y17_c00039{bottom:651.520000pt;}
.y18_c00039{bottom:652.160000pt;}
.y1a_c00039{bottom:652.800000pt;}
.y14_c00039{bottom:687.360000pt;}
.y13_c00039{bottom:688.000000pt;}
.y12_c00039{bottom:689.920000pt;}
.y16_c00039{bottom:690.560000pt;}
.y15_c00039{bottom:691.200000pt;}
.y11_c00039{bottom:734.080000pt;}
.y10_c00039{bottom:735.360000pt;}
.yf_c00039{bottom:737.280000pt;}
.ye_c00039{bottom:773.120000pt;}
.yc_c00039{bottom:775.040000pt;}
.yd_c00039{bottom:775.680000pt;}
.y9_c00039{bottom:810.880000pt;}
.y8_c00039{bottom:812.800000pt;}
.ya_c00039{bottom:813.440000pt;}
.yb_c00039{bottom:814.080000pt;}
.y6_c00039{bottom:850.560000pt;}
.y7_c00039{bottom:851.200000pt;}
.y2_c00039{bottom:886.400000pt;}
.y4_c00039{bottom:888.960000pt;}
.y3_c00039{bottom:889.600000pt;}
.y5_c00039{bottom:892.160000pt;}
.y1_c00039{bottom:959.360000pt;}
.h8_c00039{height:11.518750pt;}
.h4_c00039{height:27.645000pt;}
.hb_c00039{height:29.948750pt;}
.h10_c00039{height:32.252500pt;}
.h12_c00039{height:34.556250pt;}
.h9_c00039{height:36.860000pt;}
.h5_c00039{height:39.163750pt;}
.h6_c00039{height:41.467500pt;}
.hd_c00039{height:43.771250pt;}
.ha_c00039{height:46.075000pt;}
.hc_c00039{height:48.378750pt;}
.h7_c00039{height:50.682500pt;}
.h11_c00039{height:51.707500pt;}
.hf_c00039{height:52.986250pt;}
.he_c00039{height:55.290000pt;}
.h3_c00039{height:57.593750pt;}
.h2_c00039{height:59.897500pt;}
.h1_c00039{height:1021.333333pt;}
.h0_c00039{height:1021.440000pt;}
.w1_c00039{width:714.666667pt;}
.w0_c00039{width:714.880000pt;}
.x0_c00039{left:0.000000pt;}
.x1a_c00039{left:74.880000pt;}
.x2_c00039{left:76.160000pt;}
.x50_c00039{left:104.320000pt;}
.x3a_c00039{left:105.600000pt;}
.x13_c00039{left:114.560000pt;}
.x49_c00039{left:123.520000pt;}
.x36_c00039{left:124.800000pt;}
.x43_c00039{left:133.120000pt;}
.x3_c00039{left:134.400000pt;}
.x4_c00039{left:152.320000pt;}
.x58_c00039{left:153.600000pt;}
.x20_c00039{left:155.520000pt;}
.x37_c00039{left:161.920000pt;}
.x22_c00039{left:172.800000pt;}
.x1b_c00039{left:181.120000pt;}
.x29_c00039{left:191.360000pt;}
.x3b_c00039{left:200.960000pt;}
.x2a_c00039{left:209.280000pt;}
.x14_c00039{left:210.560000pt;}
.xb_c00039{left:211.840000pt;}
.x54_c00039{left:219.520000pt;}
.x23_c00039{left:220.800000pt;}
.x5_c00039{left:238.080000pt;}
.x21_c00039{left:240.000000pt;}
.x1c_c00039{left:248.320000pt;}
.x55_c00039{left:257.280000pt;}
.x15_c00039{left:258.560000pt;}
.xc_c00039{left:267.520000pt;}
.x32_c00039{left:276.480000pt;}
.x6_c00039{left:277.760000pt;}
.x4a_c00039{left:286.080000pt;}
.x3c_c00039{left:288.000000pt;}
.x16_c00039{left:296.320000pt;}
.x44_c00039{left:305.920000pt;}
.x2f_c00039{left:315.520000pt;}
.x45_c00039{left:324.480000pt;}
.x3d_c00039{left:334.720000pt;}
.x1d_c00039{left:343.680000pt;}
.x24_c00039{left:344.960000pt;}
.xd_c00039{left:354.560000pt;}
.x3e_c00039{left:362.880000pt;}
.x7_c00039{left:364.160000pt;}
.x33_c00039{left:373.120000pt;}
.xe_c00039{left:382.080000pt;}
.x2b_c00039{left:392.320000pt;}
.x51_c00039{left:393.600000pt;}
.x25_c00039{left:402.560000pt;}
.x1e_c00039{left:404.480000pt;}
.x4b_c00039{left:410.880000pt;}
.x34_c00039{left:420.480000pt;}
.x26_c00039{left:421.760000pt;}
.x38_c00039{left:430.080000pt;}
.x2c_c00039{left:432.000000pt;}
.x46_c00039{left:439.680000pt;}
.x30_c00039{left:441.600000pt;}
.x27_c00039{left:448.000000pt;}
.xf_c00039{left:449.920000pt;}
.x8_c00039{left:451.200000pt;}
.x41_c00039{left:458.880000pt;}
.x4c_c00039{left:468.480000pt;}
.x59_c00039{left:469.760000pt;}
.x10_c00039{left:478.080000pt;}
.x17_c00039{left:487.680000pt;}
.x4d_c00039{left:496.640000pt;}
.x31_c00039{left:499.840000pt;}
.x1f_c00039{left:506.880000pt;}
.x11_c00039{left:508.160000pt;}
.x56_c00039{left:516.480000pt;}
.x18_c00039{left:526.080000pt;}
.x3f_c00039{left:535.680000pt;}
.x2d_c00039{left:545.920000pt;}
.x28_c00039{left:554.880000pt;}
.x19_c00039{left:565.120000pt;}
.x40_c00039{left:572.800000pt;}
.x39_c00039{left:574.080000pt;}
.x53_c00039{left:575.360000pt;}
.x35_c00039{left:582.400000pt;}
.x2e_c00039{left:583.680000pt;}
.x47_c00039{left:585.600000pt;}
.x4e_c00039{left:593.280000pt;}
.x42_c00039{left:594.560000pt;}
.x9_c00039{left:602.880000pt;}
.x52_c00039{left:612.480000pt;}
.xa_c00039{left:622.720000pt;}
.x4f_c00039{left:631.040000pt;}
.x12_c00039{left:632.320000pt;}
.x48_c00039{left:650.880000pt;}
.x57_c00039{left:660.480000pt;}
.x1_c00039{left:668.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_015ad9609261e7196b95e4f9.woff2')format("woff");}.ff1_c00040{font-family:ff1_c00040;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m49_c00040{transform:matrix(0.243325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243325,0.000000,0.000000,0.250000,0,0);}
.m28_c00040{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.md_c00040{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);}
.m38_c00040{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m43_c00040{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m27_c00040{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m54_c00040{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00040{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00040{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00040{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m15_c00040{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00040{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m6_c00040{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m37_c00040{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m52_c00040{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m42_c00040{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m11_c00040{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);}
.m48_c00040{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m4_c00040{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m0_c00040{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.ma_c00040{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);}
.m2d_c00040{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00040{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);}
.m1a_c00040{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m26_c00040{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);}
.m4f_c00040{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00040{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00040{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m5_c00040{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m18_c00040{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);}
.m21_c00040{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m1_c00040{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00040{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);}
.m31_c00040{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00040{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);}
.mb_c00040{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);}
.m5c_c00040{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);}
.m46_c00040{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00040{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);}
.m44_c00040{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m16_c00040{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);}
.m55_c00040{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m47_c00040{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);}
.m10_c00040{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);}
.m36_c00040{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00040{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m29_c00040{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00040{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);}
.m50_c00040{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00040{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00040{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);}
.m25_c00040{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_c00040{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m40_c00040{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.mf_c00040{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m53_c00040{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00040{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);}
.m4e_c00040{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m14_c00040{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m33_c00040{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);}
.m22_c00040{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m51_c00040{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m45_c00040{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m57_c00040{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m59_c00040{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m19_c00040{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);}
.me_c00040{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);}
.m8_c00040{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m56_c00040{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m24_c00040{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);}
.m13_c00040{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m2_c00040{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m3_c00040{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);}
.m4b_c00040{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m7_c00040{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00040{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m12_c00040{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00040{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);}
.m34_c00040{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m20_c00040{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);}
.m41_c00040{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.mc_c00040{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);}
.m58_c00040{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m39_c00040{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00040{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m32_c00040{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m17_c00040{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m35_c00040{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00040{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);}
.m30_c00040{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m23_c00040{transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00040{transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00040{transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00040{transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);}
.v0_c00040{vertical-align:0.000000px;}
.ls0_c00040{letter-spacing:0.000000px;}
.sc__c00040{text-shadow:none;}
.sc0_c00040{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00040{-webkit-text-stroke:0px transparent;}
.sc0_c00040{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00040{word-spacing:-4.495306px;}
.ws1_c00040{word-spacing:0.000000px;}
.fc0_c00040{color:transparent;}
.fs8_c00040{font-size:20.160000px;}
.fs6_c00040{font-size:34.560000px;}
.fs2_c00040{font-size:37.440000px;}
.fsc_c00040{font-size:43.200000px;}
.fs7_c00040{font-size:46.080000px;}
.fs5_c00040{font-size:48.960000px;}
.fs3_c00040{font-size:51.840000px;}
.fsb_c00040{font-size:54.720000px;}
.fs9_c00040{font-size:57.600000px;}
.fs4_c00040{font-size:60.480000px;}
.fs1_c00040{font-size:63.360000px;}
.fsa_c00040{font-size:66.240000px;}
.fs0_c00040{font-size:69.120000px;}
.y0_c00040{bottom:0.000000px;}
.y65_c00040{bottom:53.280000px;}
.y64_c00040{bottom:54.000000px;}
.y62_c00040{bottom:56.160000px;}
.y63_c00040{bottom:57.600000px;}
.y60_c00040{bottom:95.760000px;}
.y61_c00040{bottom:96.480000px;}
.y5f_c00040{bottom:97.200000px;}
.y5e_c00040{bottom:98.640000px;}
.y5d_c00040{bottom:99.360000px;}
.y5c_c00040{bottom:100.800000px;}
.y5b_c00040{bottom:138.960000px;}
.y56_c00040{bottom:139.680000px;}
.y59_c00040{bottom:141.120000px;}
.y5a_c00040{bottom:141.840000px;}
.y57_c00040{bottom:142.560000px;}
.y58_c00040{bottom:143.280000px;}
.y55_c00040{bottom:180.000000px;}
.y54_c00040{bottom:181.440000px;}
.y53_c00040{bottom:183.600000px;}
.y52_c00040{bottom:184.320000px;}
.y4f_c00040{bottom:223.920000px;}
.y50_c00040{bottom:224.640000px;}
.y4e_c00040{bottom:226.080000px;}
.y4d_c00040{bottom:226.800000px;}
.y51_c00040{bottom:227.520000px;}
.y4c_c00040{bottom:266.400000px;}
.y48_c00040{bottom:267.120000px;}
.y4a_c00040{bottom:268.560000px;}
.y49_c00040{bottom:269.280000px;}
.y4b_c00040{bottom:270.000000px;}
.y47_c00040{bottom:311.040000px;}
.y46_c00040{bottom:311.760000px;}
.y45_c00040{bottom:312.480000px;}
.y44_c00040{bottom:350.640000px;}
.y42_c00040{bottom:351.360000px;}
.y43_c00040{bottom:352.080000px;}
.y40_c00040{bottom:354.240000px;}
.y41_c00040{bottom:354.960000px;}
.y3d_c00040{bottom:393.840000px;}
.y3f_c00040{bottom:394.560000px;}
.y3a_c00040{bottom:395.280000px;}
.y3c_c00040{bottom:396.720000px;}
.y3b_c00040{bottom:397.440000px;}
.y3e_c00040{bottom:398.160000px;}
.y38_c00040{bottom:437.760000px;}
.y37_c00040{bottom:439.200000px;}
.y36_c00040{bottom:439.920000px;}
.y39_c00040{bottom:440.640000px;}
.y35_c00040{bottom:479.520000px;}
.y32_c00040{bottom:480.240000px;}
.y34_c00040{bottom:481.680000px;}
.y33_c00040{bottom:482.400000px;}
.y31_c00040{bottom:522.000000px;}
.y2f_c00040{bottom:524.880000px;}
.y30_c00040{bottom:525.600000px;}
.y2b_c00040{bottom:564.480000px;}
.y2e_c00040{bottom:565.200000px;}
.y2c_c00040{bottom:567.360000px;}
.y2d_c00040{bottom:568.080000px;}
.y29_c00040{bottom:607.680000px;}
.y27_c00040{bottom:609.840000px;}
.y2a_c00040{bottom:610.560000px;}
.y28_c00040{bottom:611.280000px;}
.y22_c00040{bottom:649.440000px;}
.y25_c00040{bottom:650.160000px;}
.y26_c00040{bottom:650.880000px;}
.y23_c00040{bottom:652.320000px;}
.y24_c00040{bottom:653.040000px;}
.y20_c00040{bottom:692.640000px;}
.y21_c00040{bottom:693.360000px;}
.y1e_c00040{bottom:694.800000px;}
.y1f_c00040{bottom:695.520000px;}
.y1c_c00040{bottom:745.200000px;}
.y1d_c00040{bottom:747.360000px;}
.y1a_c00040{bottom:787.680000px;}
.y19_c00040{bottom:788.400000px;}
.y1b_c00040{bottom:789.120000px;}
.y17_c00040{bottom:790.560000px;}
.y18_c00040{bottom:791.280000px;}
.y13_c00040{bottom:830.160000px;}
.y14_c00040{bottom:833.040000px;}
.y15_c00040{bottom:833.760000px;}
.y16_c00040{bottom:834.480000px;}
.y12_c00040{bottom:874.080000px;}
.y10_c00040{bottom:876.240000px;}
.y11_c00040{bottom:876.960000px;}
.yd_c00040{bottom:915.840000px;}
.yc_c00040{bottom:916.560000px;}
.yb_c00040{bottom:918.720000px;}
.ye_c00040{bottom:919.440000px;}
.yf_c00040{bottom:920.160000px;}
.y7_c00040{bottom:959.040000px;}
.y9_c00040{bottom:959.760000px;}
.y6_c00040{bottom:961.200000px;}
.y8_c00040{bottom:961.920000px;}
.ya_c00040{bottom:962.640000px;}
.y2_c00040{bottom:1001.520000px;}
.y5_c00040{bottom:1002.240000px;}
.y3_c00040{bottom:1004.400000px;}
.y4_c00040{bottom:1005.120000px;}
.y1_c00040{bottom:1092.960000px;}
.ha_c00040{height:18.142031px;}
.h8_c00040{height:31.100625px;}
.h4_c00040{height:33.692344px;}
.he_c00040{height:38.875781px;}
.h9_c00040{height:41.467500px;}
.h7_c00040{height:44.059219px;}
.h5_c00040{height:46.650937px;}
.hd_c00040{height:49.242656px;}
.hb_c00040{height:51.834375px;}
.h6_c00040{height:54.426094px;}
.h3_c00040{height:57.017812px;}
.hc_c00040{height:59.609531px;}
.h2_c00040{height:62.201250px;}
.h1_c00040{height:1146.750000px;}
.h0_c00040{height:1146.960000px;}
.w1_c00040{width:801.750000px;}
.w0_c00040{width:802.080000px;}
.x0_c00040{left:0.000000px;}
.x2_c00040{left:78.480000px;}
.x2a_c00040{left:80.640000px;}
.x55_c00040{left:100.800000px;}
.x59_c00040{left:110.160000px;}
.xd_c00040{left:111.600000px;}
.x1e_c00040{left:121.680000px;}
.x2b_c00040{left:135.360000px;}
.x3d_c00040{left:142.560000px;}
.xe_c00040{left:144.720000px;}
.x31_c00040{left:153.360000px;}
.x12_c00040{left:155.520000px;}
.x1f_c00040{left:164.880000px;}
.x49_c00040{left:174.960000px;}
.x18_c00040{left:176.400000px;}
.x56_c00040{left:185.760000px;}
.x25_c00040{left:187.200000px;}
.x13_c00040{left:196.560000px;}
.x4a_c00040{left:207.360000px;}
.x5a_c00040{left:217.440000px;}
.x3_c00040{left:219.600000px;}
.x45_c00040{left:228.960000px;}
.x26_c00040{left:231.120000px;}
.x41_c00040{left:239.040000px;}
.xf_c00040{left:240.480000px;}
.x4_c00040{left:251.280000px;}
.x32_c00040{left:261.360000px;}
.x20_c00040{left:263.520000px;}
.x3b_c00040{left:272.160000px;}
.x3e_c00040{left:274.320000px;}
.x5b_c00040{left:282.960000px;}
.x5_c00040{left:284.400000px;}
.x35_c00040{left:285.840000px;}
.x19_c00040{left:294.480000px;}
.x4d_c00040{left:304.560000px;}
.x14_c00040{left:316.080000px;}
.x57_c00040{left:326.160000px;}
.x52_c00040{left:338.400000px;}
.x2c_c00040{left:348.480000px;}
.x21_c00040{left:357.120000px;}
.x1a_c00040{left:359.280000px;}
.x36_c00040{left:360.720000px;}
.x33_c00040{left:369.360000px;}
.x2d_c00040{left:380.160000px;}
.x1b_c00040{left:391.680000px;}
.x6_c00040{left:401.760000px;}
.x34_c00040{left:411.840000px;}
.x3a_c00040{left:414.000000px;}
.x1c_c00040{left:423.360000px;}
.x42_c00040{left:432.720000px;}
.x7_c00040{left:434.160000px;}
.x2e_c00040{left:445.680000px;}
.x53_c00040{left:447.120000px;}
.x5c_c00040{left:453.600000px;}
.x37_c00040{left:455.760000px;}
.x4b_c00040{left:465.120000px;}
.x22_c00040{left:466.560000px;}
.x4e_c00040{left:475.920000px;}
.x15_c00040{left:477.360000px;}
.x38_c00040{left:487.440000px;}
.x4f_c00040{left:507.600000px;}
.x46_c00040{left:509.040000px;}
.x8_c00040{left:510.480000px;}
.x58_c00040{left:519.120000px;}
.x1d_c00040{left:520.560000px;}
.x27_c00040{left:522.720000px;}
.x2f_c00040{left:531.360000px;}
.x10_c00040{left:532.800000px;}
.x9_c00040{left:542.160000px;}
.x3f_c00040{left:552.240000px;}
.x47_c00040{left:562.320000px;}
.x39_c00040{left:563.760000px;}
.xa_c00040{left:575.280000px;}
.x4c_c00040{left:583.920000px;}
.x43_c00040{left:585.360000px;}
.x54_c00040{left:594.720000px;}
.x30_c00040{left:596.160000px;}
.x23_c00040{left:606.960000px;}
.x28_c00040{left:608.400000px;}
.x50_c00040{left:615.600000px;}
.x48_c00040{left:617.760000px;}
.x11_c00040{left:629.280000px;}
.x24_c00040{left:639.360000px;}
.x40_c00040{left:649.440000px;}
.x3c_c00040{left:659.520000px;}
.xb_c00040{left:660.960000px;}
.x16_c00040{left:671.760000px;}
.x29_c00040{left:682.560000px;}
.x44_c00040{left:691.200000px;}
.xc_c00040{left:693.360000px;}
.x51_c00040{left:702.720000px;}
.x17_c00040{left:704.160000px;}
.x1_c00040{left:748.080000px;}
@media print{
.v0_c00040{vertical-align:0.000000pt;}
.ls0_c00040{letter-spacing:0.000000pt;}
.ws0_c00040{word-spacing:-3.995827pt;}
.ws1_c00040{word-spacing:0.000000pt;}
.fs8_c00040{font-size:17.920000pt;}
.fs6_c00040{font-size:30.720000pt;}
.fs2_c00040{font-size:33.280000pt;}
.fsc_c00040{font-size:38.400000pt;}
.fs7_c00040{font-size:40.960000pt;}
.fs5_c00040{font-size:43.520000pt;}
.fs3_c00040{font-size:46.080000pt;}
.fsb_c00040{font-size:48.640000pt;}
.fs9_c00040{font-size:51.200000pt;}
.fs4_c00040{font-size:53.760000pt;}
.fs1_c00040{font-size:56.320000pt;}
.fsa_c00040{font-size:58.880000pt;}
.fs0_c00040{font-size:61.440000pt;}
.y0_c00040{bottom:0.000000pt;}
.y65_c00040{bottom:47.360000pt;}
.y64_c00040{bottom:48.000000pt;}
.y62_c00040{bottom:49.920000pt;}
.y63_c00040{bottom:51.200000pt;}
.y60_c00040{bottom:85.120000pt;}
.y61_c00040{bottom:85.760000pt;}
.y5f_c00040{bottom:86.400000pt;}
.y5e_c00040{bottom:87.680000pt;}
.y5d_c00040{bottom:88.320000pt;}
.y5c_c00040{bottom:89.600000pt;}
.y5b_c00040{bottom:123.520000pt;}
.y56_c00040{bottom:124.160000pt;}
.y59_c00040{bottom:125.440000pt;}
.y5a_c00040{bottom:126.080000pt;}
.y57_c00040{bottom:126.720000pt;}
.y58_c00040{bottom:127.360000pt;}
.y55_c00040{bottom:160.000000pt;}
.y54_c00040{bottom:161.280000pt;}
.y53_c00040{bottom:163.200000pt;}
.y52_c00040{bottom:163.840000pt;}
.y4f_c00040{bottom:199.040000pt;}
.y50_c00040{bottom:199.680000pt;}
.y4e_c00040{bottom:200.960000pt;}
.y4d_c00040{bottom:201.600000pt;}
.y51_c00040{bottom:202.240000pt;}
.y4c_c00040{bottom:236.800000pt;}
.y48_c00040{bottom:237.440000pt;}
.y4a_c00040{bottom:238.720000pt;}
.y49_c00040{bottom:239.360000pt;}
.y4b_c00040{bottom:240.000000pt;}
.y47_c00040{bottom:276.480000pt;}
.y46_c00040{bottom:277.120000pt;}
.y45_c00040{bottom:277.760000pt;}
.y44_c00040{bottom:311.680000pt;}
.y42_c00040{bottom:312.320000pt;}
.y43_c00040{bottom:312.960000pt;}
.y40_c00040{bottom:314.880000pt;}
.y41_c00040{bottom:315.520000pt;}
.y3d_c00040{bottom:350.080000pt;}
.y3f_c00040{bottom:350.720000pt;}
.y3a_c00040{bottom:351.360000pt;}
.y3c_c00040{bottom:352.640000pt;}
.y3b_c00040{bottom:353.280000pt;}
.y3e_c00040{bottom:353.920000pt;}
.y38_c00040{bottom:389.120000pt;}
.y37_c00040{bottom:390.400000pt;}
.y36_c00040{bottom:391.040000pt;}
.y39_c00040{bottom:391.680000pt;}
.y35_c00040{bottom:426.240000pt;}
.y32_c00040{bottom:426.880000pt;}
.y34_c00040{bottom:428.160000pt;}
.y33_c00040{bottom:428.800000pt;}
.y31_c00040{bottom:464.000000pt;}
.y2f_c00040{bottom:466.560000pt;}
.y30_c00040{bottom:467.200000pt;}
.y2b_c00040{bottom:501.760000pt;}
.y2e_c00040{bottom:502.400000pt;}
.y2c_c00040{bottom:504.320000pt;}
.y2d_c00040{bottom:504.960000pt;}
.y29_c00040{bottom:540.160000pt;}
.y27_c00040{bottom:542.080000pt;}
.y2a_c00040{bottom:542.720000pt;}
.y28_c00040{bottom:543.360000pt;}
.y22_c00040{bottom:577.280000pt;}
.y25_c00040{bottom:577.920000pt;}
.y26_c00040{bottom:578.560000pt;}
.y23_c00040{bottom:579.840000pt;}
.y24_c00040{bottom:580.480000pt;}
.y20_c00040{bottom:615.680000pt;}
.y21_c00040{bottom:616.320000pt;}
.y1e_c00040{bottom:617.600000pt;}
.y1f_c00040{bottom:618.240000pt;}
.y1c_c00040{bottom:662.400000pt;}
.y1d_c00040{bottom:664.320000pt;}
.y1a_c00040{bottom:700.160000pt;}
.y19_c00040{bottom:700.800000pt;}
.y1b_c00040{bottom:701.440000pt;}
.y17_c00040{bottom:702.720000pt;}
.y18_c00040{bottom:703.360000pt;}
.y13_c00040{bottom:737.920000pt;}
.y14_c00040{bottom:740.480000pt;}
.y15_c00040{bottom:741.120000pt;}
.y16_c00040{bottom:741.760000pt;}
.y12_c00040{bottom:776.960000pt;}
.y10_c00040{bottom:778.880000pt;}
.y11_c00040{bottom:779.520000pt;}
.yd_c00040{bottom:814.080000pt;}
.yc_c00040{bottom:814.720000pt;}
.yb_c00040{bottom:816.640000pt;}
.ye_c00040{bottom:817.280000pt;}
.yf_c00040{bottom:817.920000pt;}
.y7_c00040{bottom:852.480000pt;}
.y9_c00040{bottom:853.120000pt;}
.y6_c00040{bottom:854.400000pt;}
.y8_c00040{bottom:855.040000pt;}
.ya_c00040{bottom:855.680000pt;}
.y2_c00040{bottom:890.240000pt;}
.y5_c00040{bottom:890.880000pt;}
.y3_c00040{bottom:892.800000pt;}
.y4_c00040{bottom:893.440000pt;}
.y1_c00040{bottom:971.520000pt;}
.ha_c00040{height:16.126250pt;}
.h8_c00040{height:27.645000pt;}
.h4_c00040{height:29.948750pt;}
.he_c00040{height:34.556250pt;}
.h9_c00040{height:36.860000pt;}
.h7_c00040{height:39.163750pt;}
.h5_c00040{height:41.467500pt;}
.hd_c00040{height:43.771250pt;}
.hb_c00040{height:46.075000pt;}
.h6_c00040{height:48.378750pt;}
.h3_c00040{height:50.682500pt;}
.hc_c00040{height:52.986250pt;}
.h2_c00040{height:55.290000pt;}
.h1_c00040{height:1019.333333pt;}
.h0_c00040{height:1019.520000pt;}
.w1_c00040{width:712.666667pt;}
.w0_c00040{width:712.960000pt;}
.x0_c00040{left:0.000000pt;}
.x2_c00040{left:69.760000pt;}
.x2a_c00040{left:71.680000pt;}
.x55_c00040{left:89.600000pt;}
.x59_c00040{left:97.920000pt;}
.xd_c00040{left:99.200000pt;}
.x1e_c00040{left:108.160000pt;}
.x2b_c00040{left:120.320000pt;}
.x3d_c00040{left:126.720000pt;}
.xe_c00040{left:128.640000pt;}
.x31_c00040{left:136.320000pt;}
.x12_c00040{left:138.240000pt;}
.x1f_c00040{left:146.560000pt;}
.x49_c00040{left:155.520000pt;}
.x18_c00040{left:156.800000pt;}
.x56_c00040{left:165.120000pt;}
.x25_c00040{left:166.400000pt;}
.x13_c00040{left:174.720000pt;}
.x4a_c00040{left:184.320000pt;}
.x5a_c00040{left:193.280000pt;}
.x3_c00040{left:195.200000pt;}
.x45_c00040{left:203.520000pt;}
.x26_c00040{left:205.440000pt;}
.x41_c00040{left:212.480000pt;}
.xf_c00040{left:213.760000pt;}
.x4_c00040{left:223.360000pt;}
.x32_c00040{left:232.320000pt;}
.x20_c00040{left:234.240000pt;}
.x3b_c00040{left:241.920000pt;}
.x3e_c00040{left:243.840000pt;}
.x5b_c00040{left:251.520000pt;}
.x5_c00040{left:252.800000pt;}
.x35_c00040{left:254.080000pt;}
.x19_c00040{left:261.760000pt;}
.x4d_c00040{left:270.720000pt;}
.x14_c00040{left:280.960000pt;}
.x57_c00040{left:289.920000pt;}
.x52_c00040{left:300.800000pt;}
.x2c_c00040{left:309.760000pt;}
.x21_c00040{left:317.440000pt;}
.x1a_c00040{left:319.360000pt;}
.x36_c00040{left:320.640000pt;}
.x33_c00040{left:328.320000pt;}
.x2d_c00040{left:337.920000pt;}
.x1b_c00040{left:348.160000pt;}
.x6_c00040{left:357.120000pt;}
.x34_c00040{left:366.080000pt;}
.x3a_c00040{left:368.000000pt;}
.x1c_c00040{left:376.320000pt;}
.x42_c00040{left:384.640000pt;}
.x7_c00040{left:385.920000pt;}
.x2e_c00040{left:396.160000pt;}
.x53_c00040{left:397.440000pt;}
.x5c_c00040{left:403.200000pt;}
.x37_c00040{left:405.120000pt;}
.x4b_c00040{left:413.440000pt;}
.x22_c00040{left:414.720000pt;}
.x4e_c00040{left:423.040000pt;}
.x15_c00040{left:424.320000pt;}
.x38_c00040{left:433.280000pt;}
.x4f_c00040{left:451.200000pt;}
.x46_c00040{left:452.480000pt;}
.x8_c00040{left:453.760000pt;}
.x58_c00040{left:461.440000pt;}
.x1d_c00040{left:462.720000pt;}
.x27_c00040{left:464.640000pt;}
.x2f_c00040{left:472.320000pt;}
.x10_c00040{left:473.600000pt;}
.x9_c00040{left:481.920000pt;}
.x3f_c00040{left:490.880000pt;}
.x47_c00040{left:499.840000pt;}
.x39_c00040{left:501.120000pt;}
.xa_c00040{left:511.360000pt;}
.x4c_c00040{left:519.040000pt;}
.x43_c00040{left:520.320000pt;}
.x54_c00040{left:528.640000pt;}
.x30_c00040{left:529.920000pt;}
.x23_c00040{left:539.520000pt;}
.x28_c00040{left:540.800000pt;}
.x50_c00040{left:547.200000pt;}
.x48_c00040{left:549.120000pt;}
.x11_c00040{left:559.360000pt;}
.x24_c00040{left:568.320000pt;}
.x40_c00040{left:577.280000pt;}
.x3c_c00040{left:586.240000pt;}
.xb_c00040{left:587.520000pt;}
.x16_c00040{left:597.120000pt;}
.x29_c00040{left:606.720000pt;}
.x44_c00040{left:614.400000pt;}
.xc_c00040{left:616.320000pt;}
.x51_c00040{left:624.640000pt;}
.x17_c00040{left:625.920000pt;}
.x1_c00040{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_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_741a59660cb641a79f288f23.woff2')format("woff");}.ff1_c00041{font-family:ff1_c00041;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00041{transform:matrix(0.131150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131150,0.000000,0.000000,0.250000,0,0);}
.mc_c00041{transform:matrix(0.183950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183950,0.000000,0.000000,0.250000,0,0);}
.m1_c00041{transform:matrix(0.215825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215825,0.000000,0.000000,0.250000,0,0);}
.ma_c00041{transform:matrix(0.240025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240025,0.000000,0.000000,0.250000,0,0);}
.m55_c00041{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);}
.m5c_c00041{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);}
.m62_c00041{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00041{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m63_c00041{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m30_c00041{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m61_c00041{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00041{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m26_c00041{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00041{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00041{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m39_c00041{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m50_c00041{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);}
.m5b_c00041{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m51_c00041{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m13_c00041{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);}
.m48_c00041{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);}
.m21_c00041{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m22_c00041{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);}
.m29_c00041{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00041{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);}
.m1e_c00041{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00041{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m56_c00041{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);}
.m2f_c00041{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);}
.m57_c00041{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00041{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m44_c00041{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);}
.m36_c00041{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);}
.m60_c00041{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m15_c00041{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);}
.mb_c00041{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m25_c00041{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);}
.m1c_c00041{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m58_c00041{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m19_c00041{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m41_c00041{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);}
.m16_c00041{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m43_c00041{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);}
.m24_c00041{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);}
.m33_c00041{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00041{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.me_c00041{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m5_c00041{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m17_c00041{transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);}
.m11_c00041{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m53_c00041{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00041{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);}
.m34_c00041{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m42_c00041{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);}
.m7_c00041{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00041{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m18_c00041{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);}
.m12_c00041{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00041{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m54_c00041{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m38_c00041{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);}
.m4c_c00041{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00041{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00041{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m23_c00041{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00041{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);}
.m37_c00041{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m10_c00041{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00041{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m4_c00041{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);}
.m40_c00041{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m45_c00041{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m59_c00041{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m3_c00041{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00041{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);}
.m31_c00041{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m20_c00041{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00041{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);}
.m32_c00041{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m46_c00041{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);}
.m4e_c00041{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m49_c00041{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);}
.m8_c00041{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00041{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m14_c00041{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m28_c00041{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00041{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00041{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.mf_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);}
.m6_c00041{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);}
.m9_c00041{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00041{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00041{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m27_c00041{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00041{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m35_c00041{transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);}
.md_c00041{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);}
.m52_c00041{transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);}
.m0_c00041{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m47_c00041{transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);}
.v0_c00041{vertical-align:0.000000px;}
.v1_c00041{vertical-align:5.760000px;}
.ls1_c00041{letter-spacing:0.000000px;}
.ls0_c00041{letter-spacing:22.920000px;}
.sc__c00041{text-shadow:none;}
.sc0_c00041{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00041{-webkit-text-stroke:0px transparent;}
.sc0_c00041{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00041{word-spacing:0.000000px;}
.fc0_c00041{color:transparent;}
.fs0_c00041{font-size:17.280000px;}
.fs8_c00041{font-size:23.040000px;}
.fs7_c00041{font-size:31.680000px;}
.fs5_c00041{font-size:34.560000px;}
.fsd_c00041{font-size:37.440000px;}
.fs10_c00041{font-size:40.320000px;}
.fsf_c00041{font-size:43.200000px;}
.fs6_c00041{font-size:46.080000px;}
.fs3_c00041{font-size:48.960000px;}
.fs4_c00041{font-size:51.840000px;}
.fse_c00041{font-size:54.720000px;}
.fsa_c00041{font-size:57.600000px;}
.fs9_c00041{font-size:60.480000px;}
.fsb_c00041{font-size:63.360000px;}
.fsc_c00041{font-size:66.240000px;}
.fs2_c00041{font-size:69.120000px;}
.fs1_c00041{font-size:72.000000px;}
.y0_c00041{bottom:0.000000px;}
.y65_c00041{bottom:46.800000px;}
.y61_c00041{bottom:47.520000px;}
.y64_c00041{bottom:49.680000px;}
.y63_c00041{bottom:50.400000px;}
.y62_c00041{bottom:51.120000px;}
.y5f_c00041{bottom:87.840000px;}
.y5c_c00041{bottom:89.280000px;}
.y5b_c00041{bottom:90.720000px;}
.y60_c00041{bottom:91.440000px;}
.y5d_c00041{bottom:92.160000px;}
.y5e_c00041{bottom:92.880000px;}
.y5a_c00041{bottom:131.760000px;}
.y59_c00041{bottom:132.480000px;}
.y58_c00041{bottom:135.360000px;}
.y57_c00041{bottom:136.080000px;}
.y56_c00041{bottom:174.240000px;}
.y54_c00041{bottom:174.960000px;}
.y55_c00041{bottom:177.120000px;}
.y53_c00041{bottom:216.000000px;}
.y51_c00041{bottom:217.440000px;}
.y50_c00041{bottom:219.600000px;}
.y52_c00041{bottom:220.320000px;}
.y4f_c00041{bottom:270.720000px;}
.y4e_c00041{bottom:273.600000px;}
.y4c_c00041{bottom:312.480000px;}
.y4a_c00041{bottom:313.920000px;}
.y4d_c00041{bottom:314.640000px;}
.y49_c00041{bottom:315.360000px;}
.y4b_c00041{bottom:316.080000px;}
.y47_c00041{bottom:354.240000px;}
.y48_c00041{bottom:354.960000px;}
.y46_c00041{bottom:355.680000px;}
.y45_c00041{bottom:357.840000px;}
.y44_c00041{bottom:358.560000px;}
.y42_c00041{bottom:396.720000px;}
.y40_c00041{bottom:397.440000px;}
.y43_c00041{bottom:398.160000px;}
.y3f_c00041{bottom:400.320000px;}
.y41_c00041{bottom:401.040000px;}
.y3d_c00041{bottom:439.200000px;}
.y3e_c00041{bottom:439.920000px;}
.y3c_c00041{bottom:440.640000px;}
.y3b_c00041{bottom:442.800000px;}
.y3a_c00041{bottom:482.400000px;}
.y39_c00041{bottom:484.560000px;}
.y38_c00041{bottom:485.280000px;}
.y37_c00041{bottom:486.720000px;}
.y35_c00041{bottom:524.160000px;}
.y36_c00041{bottom:524.880000px;}
.y34_c00041{bottom:525.600000px;}
.y33_c00041{bottom:527.760000px;}
.y32_c00041{bottom:528.480000px;}
.y31_c00041{bottom:570.240000px;}
.y2f_c00041{bottom:570.960000px;}
.y30_c00041{bottom:571.680000px;}
.y2d_c00041{bottom:610.560000px;}
.y2e_c00041{bottom:612.720000px;}
.y2b_c00041{bottom:613.440000px;}
.y2c_c00041{bottom:614.160000px;}
.y2a_c00041{bottom:653.040000px;}
.y27_c00041{bottom:653.760000px;}
.y28_c00041{bottom:655.920000px;}
.y29_c00041{bottom:656.640000px;}
.y24_c00041{bottom:695.520000px;}
.y25_c00041{bottom:696.240000px;}
.y26_c00041{bottom:698.400000px;}
.y23_c00041{bottom:699.120000px;}
.y1d_c00041{bottom:738.000000px;}
.y20_c00041{bottom:738.720000px;}
.y22_c00041{bottom:740.160000px;}
.y21_c00041{bottom:740.880000px;}
.y1f_c00041{bottom:741.600000px;}
.y1e_c00041{bottom:742.320000px;}
.y1c_c00041{bottom:779.760000px;}
.y1a_c00041{bottom:780.480000px;}
.y1b_c00041{bottom:781.200000px;}
.y19_c00041{bottom:784.080000px;}
.y17_c00041{bottom:822.960000px;}
.y18_c00041{bottom:823.680000px;}
.y14_c00041{bottom:825.840000px;}
.y15_c00041{bottom:826.560000px;}
.y16_c00041{bottom:827.280000px;}
.y13_c00041{bottom:865.440000px;}
.y12_c00041{bottom:866.160000px;}
.y10_c00041{bottom:866.880000px;}
.y11_c00041{bottom:868.320000px;}
.yf_c00041{bottom:869.040000px;}
.ye_c00041{bottom:910.080000px;}
.yd_c00041{bottom:910.800000px;}
.yc_c00041{bottom:911.520000px;}
.yb_c00041{bottom:964.080000px;}
.y9_c00041{bottom:964.800000px;}
.ya_c00041{bottom:969.840000px;}
.y7_c00041{bottom:1004.400000px;}
.y8_c00041{bottom:1005.120000px;}
.y4_c00041{bottom:1006.560000px;}
.y5_c00041{bottom:1007.280000px;}
.y6_c00041{bottom:1008.000000px;}
.y3_c00041{bottom:1075.680000px;}
.y2_c00041{bottom:1076.400000px;}
.y1_c00041{bottom:1081.440000px;}
.h2_c00041{height:15.550313px;}
.ha_c00041{height:20.733750px;}
.h9_c00041{height:28.508906px;}
.h7_c00041{height:31.100625px;}
.hf_c00041{height:33.692344px;}
.h13_c00041{height:36.284062px;}
.h11_c00041{height:38.875781px;}
.h8_c00041{height:41.467500px;}
.h5_c00041{height:44.059219px;}
.h6_c00041{height:46.650937px;}
.h10_c00041{height:49.242656px;}
.hc_c00041{height:51.834375px;}
.h12_c00041{height:52.410937px;}
.hb_c00041{height:54.426094px;}
.hd_c00041{height:57.017812px;}
.he_c00041{height:59.609531px;}
.h4_c00041{height:62.201250px;}
.h3_c00041{height:64.792969px;}
.h0_c00041{height:1152.720000px;}
.h1_c00041{height:1152.750000px;}
.w1_c00041{width:808.500000px;}
.w0_c00041{width:808.560000px;}
.x0_c00041{left:0.000000px;}
.x4b_c00041{left:86.400000px;}
.x4_c00041{left:87.840000px;}
.x38_c00041{left:89.280000px;}
.x1b_c00041{left:119.520000px;}
.x55_c00041{left:129.600000px;}
.x5_c00041{left:131.040000px;}
.x51_c00041{left:140.400000px;}
.x28_c00041{left:151.920000px;}
.x47_c00041{left:162.000000px;}
.x22_c00041{left:164.160000px;}
.x36_c00041{left:173.520000px;}
.x10_c00041{left:174.960000px;}
.x52_c00041{left:183.600000px;}
.x58_c00041{left:185.040000px;}
.x3e_c00041{left:195.120000px;}
.x13_c00041{left:196.560000px;}
.x2d_c00041{left:206.640000px;}
.x37_c00041{left:216.720000px;}
.x5d_c00041{left:227.520000px;}
.x14_c00041{left:239.760000px;}
.x2e_c00041{left:249.120000px;}
.x6_c00041{left:250.560000px;}
.x11_c00041{left:252.720000px;}
.x42_c00041{left:259.920000px;}
.x12_c00041{left:262.800000px;}
.x4c_c00041{left:270.000000px;}
.x15_c00041{left:272.160000px;}
.x32_c00041{left:280.800000px;}
.x59_c00041{left:283.680000px;}
.x3f_c00041{left:291.600000px;}
.x1c_c00041{left:293.040000px;}
.x16_c00041{left:303.840000px;}
.x7_c00041{left:313.200000px;}
.x4d_c00041{left:322.560000px;}
.x23_c00041{left:324.720000px;}
.x29_c00041{left:334.800000px;}
.x33_c00041{left:345.600000px;}
.x8_c00041{left:357.120000px;}
.x1d_c00041{left:367.200000px;}
.x9_c00041{left:378.720000px;}
.x4e_c00041{left:388.080000px;}
.x48_c00041{left:398.160000px;}
.x2a_c00041{left:400.320000px;}
.x56_c00041{left:409.680000px;}
.x34_c00041{left:411.120000px;}
.x2f_c00041{left:420.480000px;}
.x53_c00041{left:429.840000px;}
.xa_c00041{left:432.720000px;}
.x39_c00041{left:442.800000px;}
.x43_c00041{left:453.600000px;}
.x17_c00041{left:455.040000px;}
.x5e_c00041{left:463.680000px;}
.xb_c00041{left:465.120000px;}
.x40_c00041{left:474.480000px;}
.x35_c00041{left:475.920000px;}
.x18_c00041{left:486.000000px;}
.x2b_c00041{left:496.800000px;}
.xc_c00041{left:498.240000px;}
.x30_c00041{left:506.160000px;}
.x1e_c00041{left:507.600000px;}
.x41_c00041{left:509.040000px;}
.x19_c00041{left:519.120000px;}
.x3a_c00041{left:529.920000px;}
.x57_c00041{left:540.000000px;}
.x5b_c00041{left:541.440000px;}
.x54_c00041{left:548.640000px;}
.x24_c00041{left:550.800000px;}
.xd_c00041{left:561.600000px;}
.x49_c00041{left:570.960000px;}
.x31_c00041{left:572.400000px;}
.x3b_c00041{left:583.200000px;}
.x46_c00041{left:592.560000px;}
.x25_c00041{left:594.000000px;}
.xe_c00041{left:605.520000px;}
.x44_c00041{left:614.880000px;}
.x1a_c00041{left:616.320000px;}
.x1f_c00041{left:626.400000px;}
.x4f_c00041{left:636.480000px;}
.xf_c00041{left:637.920000px;}
.x26_c00041{left:648.000000px;}
.x5c_c00041{left:668.160000px;}
.x20_c00041{left:669.600000px;}
.x5a_c00041{left:671.040000px;}
.x3c_c00041{left:679.680000px;}
.x1_c00041{left:681.120000px;}
.x4a_c00041{left:689.760000px;}
.x2c_c00041{left:691.920000px;}
.x21_c00041{left:702.000000px;}
.x50_c00041{left:710.640000px;}
.x45_c00041{left:712.080000px;}
.x27_c00041{left:713.520000px;}
.x3d_c00041{left:723.600000px;}
.x2_c00041{left:747.360000px;}
.x3_c00041{left:765.360000px;}
@media print{
.v0_c00041{vertical-align:0.000000pt;}
.v1_c00041{vertical-align:5.120000pt;}
.ls1_c00041{letter-spacing:0.000000pt;}
.ls0_c00041{letter-spacing:20.373333pt;}
.ws0_c00041{word-spacing:0.000000pt;}
.fs0_c00041{font-size:15.360000pt;}
.fs8_c00041{font-size:20.480000pt;}
.fs7_c00041{font-size:28.160000pt;}
.fs5_c00041{font-size:30.720000pt;}
.fsd_c00041{font-size:33.280000pt;}
.fs10_c00041{font-size:35.840000pt;}
.fsf_c00041{font-size:38.400000pt;}
.fs6_c00041{font-size:40.960000pt;}
.fs3_c00041{font-size:43.520000pt;}
.fs4_c00041{font-size:46.080000pt;}
.fse_c00041{font-size:48.640000pt;}
.fsa_c00041{font-size:51.200000pt;}
.fs9_c00041{font-size:53.760000pt;}
.fsb_c00041{font-size:56.320000pt;}
.fsc_c00041{font-size:58.880000pt;}
.fs2_c00041{font-size:61.440000pt;}
.fs1_c00041{font-size:64.000000pt;}
.y0_c00041{bottom:0.000000pt;}
.y65_c00041{bottom:41.600000pt;}
.y61_c00041{bottom:42.240000pt;}
.y64_c00041{bottom:44.160000pt;}
.y63_c00041{bottom:44.800000pt;}
.y62_c00041{bottom:45.440000pt;}
.y5f_c00041{bottom:78.080000pt;}
.y5c_c00041{bottom:79.360000pt;}
.y5b_c00041{bottom:80.640000pt;}
.y60_c00041{bottom:81.280000pt;}
.y5d_c00041{bottom:81.920000pt;}
.y5e_c00041{bottom:82.560000pt;}
.y5a_c00041{bottom:117.120000pt;}
.y59_c00041{bottom:117.760000pt;}
.y58_c00041{bottom:120.320000pt;}
.y57_c00041{bottom:120.960000pt;}
.y56_c00041{bottom:154.880000pt;}
.y54_c00041{bottom:155.520000pt;}
.y55_c00041{bottom:157.440000pt;}
.y53_c00041{bottom:192.000000pt;}
.y51_c00041{bottom:193.280000pt;}
.y50_c00041{bottom:195.200000pt;}
.y52_c00041{bottom:195.840000pt;}
.y4f_c00041{bottom:240.640000pt;}
.y4e_c00041{bottom:243.200000pt;}
.y4c_c00041{bottom:277.760000pt;}
.y4a_c00041{bottom:279.040000pt;}
.y4d_c00041{bottom:279.680000pt;}
.y49_c00041{bottom:280.320000pt;}
.y4b_c00041{bottom:280.960000pt;}
.y47_c00041{bottom:314.880000pt;}
.y48_c00041{bottom:315.520000pt;}
.y46_c00041{bottom:316.160000pt;}
.y45_c00041{bottom:318.080000pt;}
.y44_c00041{bottom:318.720000pt;}
.y42_c00041{bottom:352.640000pt;}
.y40_c00041{bottom:353.280000pt;}
.y43_c00041{bottom:353.920000pt;}
.y3f_c00041{bottom:355.840000pt;}
.y41_c00041{bottom:356.480000pt;}
.y3d_c00041{bottom:390.400000pt;}
.y3e_c00041{bottom:391.040000pt;}
.y3c_c00041{bottom:391.680000pt;}
.y3b_c00041{bottom:393.600000pt;}
.y3a_c00041{bottom:428.800000pt;}
.y39_c00041{bottom:430.720000pt;}
.y38_c00041{bottom:431.360000pt;}
.y37_c00041{bottom:432.640000pt;}
.y35_c00041{bottom:465.920000pt;}
.y36_c00041{bottom:466.560000pt;}
.y34_c00041{bottom:467.200000pt;}
.y33_c00041{bottom:469.120000pt;}
.y32_c00041{bottom:469.760000pt;}
.y31_c00041{bottom:506.880000pt;}
.y2f_c00041{bottom:507.520000pt;}
.y30_c00041{bottom:508.160000pt;}
.y2d_c00041{bottom:542.720000pt;}
.y2e_c00041{bottom:544.640000pt;}
.y2b_c00041{bottom:545.280000pt;}
.y2c_c00041{bottom:545.920000pt;}
.y2a_c00041{bottom:580.480000pt;}
.y27_c00041{bottom:581.120000pt;}
.y28_c00041{bottom:583.040000pt;}
.y29_c00041{bottom:583.680000pt;}
.y24_c00041{bottom:618.240000pt;}
.y25_c00041{bottom:618.880000pt;}
.y26_c00041{bottom:620.800000pt;}
.y23_c00041{bottom:621.440000pt;}
.y1d_c00041{bottom:656.000000pt;}
.y20_c00041{bottom:656.640000pt;}
.y22_c00041{bottom:657.920000pt;}
.y21_c00041{bottom:658.560000pt;}
.y1f_c00041{bottom:659.200000pt;}
.y1e_c00041{bottom:659.840000pt;}
.y1c_c00041{bottom:693.120000pt;}
.y1a_c00041{bottom:693.760000pt;}
.y1b_c00041{bottom:694.400000pt;}
.y19_c00041{bottom:696.960000pt;}
.y17_c00041{bottom:731.520000pt;}
.y18_c00041{bottom:732.160000pt;}
.y14_c00041{bottom:734.080000pt;}
.y15_c00041{bottom:734.720000pt;}
.y16_c00041{bottom:735.360000pt;}
.y13_c00041{bottom:769.280000pt;}
.y12_c00041{bottom:769.920000pt;}
.y10_c00041{bottom:770.560000pt;}
.y11_c00041{bottom:771.840000pt;}
.yf_c00041{bottom:772.480000pt;}
.ye_c00041{bottom:808.960000pt;}
.yd_c00041{bottom:809.600000pt;}
.yc_c00041{bottom:810.240000pt;}
.yb_c00041{bottom:856.960000pt;}
.y9_c00041{bottom:857.600000pt;}
.ya_c00041{bottom:862.080000pt;}
.y7_c00041{bottom:892.800000pt;}
.y8_c00041{bottom:893.440000pt;}
.y4_c00041{bottom:894.720000pt;}
.y5_c00041{bottom:895.360000pt;}
.y6_c00041{bottom:896.000000pt;}
.y3_c00041{bottom:956.160000pt;}
.y2_c00041{bottom:956.800000pt;}
.y1_c00041{bottom:961.280000pt;}
.h2_c00041{height:13.822500pt;}
.ha_c00041{height:18.430000pt;}
.h9_c00041{height:25.341250pt;}
.h7_c00041{height:27.645000pt;}
.hf_c00041{height:29.948750pt;}
.h13_c00041{height:32.252500pt;}
.h11_c00041{height:34.556250pt;}
.h8_c00041{height:36.860000pt;}
.h5_c00041{height:39.163750pt;}
.h6_c00041{height:41.467500pt;}
.h10_c00041{height:43.771250pt;}
.hc_c00041{height:46.075000pt;}
.h12_c00041{height:46.587500pt;}
.hb_c00041{height:48.378750pt;}
.hd_c00041{height:50.682500pt;}
.he_c00041{height:52.986250pt;}
.h4_c00041{height:55.290000pt;}
.h3_c00041{height:57.593750pt;}
.h0_c00041{height:1024.640000pt;}
.h1_c00041{height:1024.666667pt;}
.w1_c00041{width:718.666667pt;}
.w0_c00041{width:718.720000pt;}
.x0_c00041{left:0.000000pt;}
.x4b_c00041{left:76.800000pt;}
.x4_c00041{left:78.080000pt;}
.x38_c00041{left:79.360000pt;}
.x1b_c00041{left:106.240000pt;}
.x55_c00041{left:115.200000pt;}
.x5_c00041{left:116.480000pt;}
.x51_c00041{left:124.800000pt;}
.x28_c00041{left:135.040000pt;}
.x47_c00041{left:144.000000pt;}
.x22_c00041{left:145.920000pt;}
.x36_c00041{left:154.240000pt;}
.x10_c00041{left:155.520000pt;}
.x52_c00041{left:163.200000pt;}
.x58_c00041{left:164.480000pt;}
.x3e_c00041{left:173.440000pt;}
.x13_c00041{left:174.720000pt;}
.x2d_c00041{left:183.680000pt;}
.x37_c00041{left:192.640000pt;}
.x5d_c00041{left:202.240000pt;}
.x14_c00041{left:213.120000pt;}
.x2e_c00041{left:221.440000pt;}
.x6_c00041{left:222.720000pt;}
.x11_c00041{left:224.640000pt;}
.x42_c00041{left:231.040000pt;}
.x12_c00041{left:233.600000pt;}
.x4c_c00041{left:240.000000pt;}
.x15_c00041{left:241.920000pt;}
.x32_c00041{left:249.600000pt;}
.x59_c00041{left:252.160000pt;}
.x3f_c00041{left:259.200000pt;}
.x1c_c00041{left:260.480000pt;}
.x16_c00041{left:270.080000pt;}
.x7_c00041{left:278.400000pt;}
.x4d_c00041{left:286.720000pt;}
.x23_c00041{left:288.640000pt;}
.x29_c00041{left:297.600000pt;}
.x33_c00041{left:307.200000pt;}
.x8_c00041{left:317.440000pt;}
.x1d_c00041{left:326.400000pt;}
.x9_c00041{left:336.640000pt;}
.x4e_c00041{left:344.960000pt;}
.x48_c00041{left:353.920000pt;}
.x2a_c00041{left:355.840000pt;}
.x56_c00041{left:364.160000pt;}
.x34_c00041{left:365.440000pt;}
.x2f_c00041{left:373.760000pt;}
.x53_c00041{left:382.080000pt;}
.xa_c00041{left:384.640000pt;}
.x39_c00041{left:393.600000pt;}
.x43_c00041{left:403.200000pt;}
.x17_c00041{left:404.480000pt;}
.x5e_c00041{left:412.160000pt;}
.xb_c00041{left:413.440000pt;}
.x40_c00041{left:421.760000pt;}
.x35_c00041{left:423.040000pt;}
.x18_c00041{left:432.000000pt;}
.x2b_c00041{left:441.600000pt;}
.xc_c00041{left:442.880000pt;}
.x30_c00041{left:449.920000pt;}
.x1e_c00041{left:451.200000pt;}
.x41_c00041{left:452.480000pt;}
.x19_c00041{left:461.440000pt;}
.x3a_c00041{left:471.040000pt;}
.x57_c00041{left:480.000000pt;}
.x5b_c00041{left:481.280000pt;}
.x54_c00041{left:487.680000pt;}
.x24_c00041{left:489.600000pt;}
.xd_c00041{left:499.200000pt;}
.x49_c00041{left:507.520000pt;}
.x31_c00041{left:508.800000pt;}
.x3b_c00041{left:518.400000pt;}
.x46_c00041{left:526.720000pt;}
.x25_c00041{left:528.000000pt;}
.xe_c00041{left:538.240000pt;}
.x44_c00041{left:546.560000pt;}
.x1a_c00041{left:547.840000pt;}
.x1f_c00041{left:556.800000pt;}
.x4f_c00041{left:565.760000pt;}
.xf_c00041{left:567.040000pt;}
.x26_c00041{left:576.000000pt;}
.x5c_c00041{left:593.920000pt;}
.x20_c00041{left:595.200000pt;}
.x5a_c00041{left:596.480000pt;}
.x3c_c00041{left:604.160000pt;}
.x1_c00041{left:605.440000pt;}
.x4a_c00041{left:613.120000pt;}
.x2c_c00041{left:615.040000pt;}
.x21_c00041{left:624.000000pt;}
.x50_c00041{left:631.680000pt;}
.x45_c00041{left:632.960000pt;}
.x27_c00041{left:634.240000pt;}
.x3d_c00041{left:643.200000pt;}
.x2_c00041{left:664.320000pt;}
.x3_c00041{left:680.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_72f445431a6baf23530862a4.woff2')format("woff");}.ff1_c00042{font-family:ff1_c00042;line-height:1.109863;font-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_c00042{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m25_c00042{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m37_c00042{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m14_c00042{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m28_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);}
.mc_c00042{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00042{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00042{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m41_c00042{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00042{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00042{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m0_c00042{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00042{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);}
.m3e_c00042{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m3_c00042{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);}
.m4e_c00042{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m24_c00042{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m22_c00042{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m32_c00042{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_c00042{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m54_c00042{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);}
.m2e_c00042{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.mb_c00042{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);}
.m38_c00042{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);}
.m45_c00042{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m12_c00042{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m8_c00042{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);}
.m13_c00042{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m11_c00042{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);}
.m50_c00042{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m40_c00042{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);}
.m47_c00042{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m18_c00042{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);}
.m51_c00042{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);}
.m42_c00042{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m15_c00042{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m35_c00042{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m6_c00042{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m2_c00042{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m49_c00042{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m48_c00042{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);}
.m3c_c00042{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00042{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00042{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.ma_c00042{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);}
.m5_c00042{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m19_c00042{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00042{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);}
.m7_c00042{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m10_c00042{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00042{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m20_c00042{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m29_c00042{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);}
.m33_c00042{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m55_c00042{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m9_c00042{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00042{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);}
.m1a_c00042{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00042{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00042{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m21_c00042{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);}
.mf_c00042{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m16_c00042{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00042{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);}
.m3d_c00042{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m44_c00042{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m4_c00042{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);}
.m53_c00042{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m46_c00042{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m26_c00042{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00042{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.m1_c00042{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);}
.m2c_c00042{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00042{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m34_c00042{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m43_c00042{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m31_c00042{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m30_c00042{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m52_c00042{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.me_c00042{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);}
.m17_c00042{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);}
.m27_c00042{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m56_c00042{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m36_c00042{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m39_c00042{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00042{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.m23_c00042{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.v0_c00042{vertical-align:0.000000px;}
.v1_c00042{vertical-align:8.640000px;}
.ls1_c00042{letter-spacing:0.000000px;}
.ls0_c00042{letter-spacing:23.040000px;}
.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:-3.250938px;}
.ws1_c00042{word-spacing:-0.742080px;}
.ws2_c00042{word-spacing:0.000000px;}
.fc0_c00042{color:transparent;}
.fs1_c00042{font-size:34.560000px;}
.fs9_c00042{font-size:37.440000px;}
.fsd_c00042{font-size:40.320000px;}
.fsb_c00042{font-size:43.200000px;}
.fsa_c00042{font-size:46.080000px;}
.fs2_c00042{font-size:48.960000px;}
.fs4_c00042{font-size:51.840000px;}
.fsc_c00042{font-size:54.720000px;}
.fs5_c00042{font-size:57.600000px;}
.fs8_c00042{font-size:60.480000px;}
.fs3_c00042{font-size:63.360000px;}
.fs6_c00042{font-size:66.240000px;}
.fs7_c00042{font-size:69.120000px;}
.fs0_c00042{font-size:72.000000px;}
.y0_c00042{bottom:0.000000px;}
.y65_c00042{bottom:43.200000px;}
.y64_c00042{bottom:43.920000px;}
.y67_c00042{bottom:45.360000px;}
.y66_c00042{bottom:46.080000px;}
.y63_c00042{bottom:46.800000px;}
.y62_c00042{bottom:47.520000px;}
.y61_c00042{bottom:97.200000px;}
.y60_c00042{bottom:100.080000px;}
.y5f_c00042{bottom:100.800000px;}
.y5d_c00042{bottom:138.960000px;}
.y5a_c00042{bottom:140.400000px;}
.y5e_c00042{bottom:141.120000px;}
.y5c_c00042{bottom:141.840000px;}
.y5b_c00042{bottom:142.560000px;}
.y59_c00042{bottom:181.440000px;}
.y58_c00042{bottom:183.600000px;}
.y56_c00042{bottom:184.320000px;}
.y57_c00042{bottom:185.040000px;}
.y55_c00042{bottom:185.760000px;}
.y54_c00042{bottom:223.920000px;}
.y51_c00042{bottom:224.640000px;}
.y52_c00042{bottom:226.080000px;}
.y53_c00042{bottom:226.800000px;}
.y50_c00042{bottom:227.520000px;}
.y4f_c00042{bottom:228.240000px;}
.y4e_c00042{bottom:266.400000px;}
.y4d_c00042{bottom:267.120000px;}
.y4b_c00042{bottom:269.280000px;}
.y4c_c00042{bottom:270.000000px;}
.y49_c00042{bottom:308.160000px;}
.y4a_c00042{bottom:308.880000px;}
.y46_c00042{bottom:309.600000px;}
.y48_c00042{bottom:311.040000px;}
.y47_c00042{bottom:311.760000px;}
.y45_c00042{bottom:312.480000px;}
.y43_c00042{bottom:351.360000px;}
.y41_c00042{bottom:352.800000px;}
.y44_c00042{bottom:353.520000px;}
.y42_c00042{bottom:354.960000px;}
.y40_c00042{bottom:394.560000px;}
.y3f_c00042{bottom:396.720000px;}
.y3e_c00042{bottom:397.440000px;}
.y3c_c00042{bottom:435.600000px;}
.y3d_c00042{bottom:436.320000px;}
.y38_c00042{bottom:437.040000px;}
.y3a_c00042{bottom:437.760000px;}
.y3b_c00042{bottom:439.200000px;}
.y39_c00042{bottom:439.920000px;}
.y36_c00042{bottom:478.800000px;}
.y35_c00042{bottom:479.520000px;}
.y33_c00042{bottom:481.680000px;}
.y37_c00042{bottom:482.400000px;}
.y34_c00042{bottom:483.120000px;}
.y31_c00042{bottom:521.280000px;}
.y30_c00042{bottom:522.000000px;}
.y32_c00042{bottom:524.160000px;}
.y2f_c00042{bottom:524.880000px;}
.y2e_c00042{bottom:564.480000px;}
.y2c_c00042{bottom:565.200000px;}
.y2d_c00042{bottom:567.360000px;}
.y2b_c00042{bottom:568.080000px;}
.y28_c00042{bottom:618.480000px;}
.y2a_c00042{bottom:619.920000px;}
.y29_c00042{bottom:620.640000px;}
.y27_c00042{bottom:621.360000px;}
.y26_c00042{bottom:660.960000px;}
.y24_c00042{bottom:663.120000px;}
.y25_c00042{bottom:663.840000px;}
.y21_c00042{bottom:703.440000px;}
.y23_c00042{bottom:704.160000px;}
.y22_c00042{bottom:705.600000px;}
.y20_c00042{bottom:706.320000px;}
.y1e_c00042{bottom:745.920000px;}
.y1d_c00042{bottom:748.800000px;}
.y1f_c00042{bottom:749.520000px;}
.y17_c00042{bottom:787.680000px;}
.y1b_c00042{bottom:788.400000px;}
.y1c_c00042{bottom:789.120000px;}
.y1a_c00042{bottom:789.840000px;}
.y18_c00042{bottom:791.280000px;}
.y19_c00042{bottom:792.000000px;}
.y15_c00042{bottom:830.880000px;}
.y14_c00042{bottom:833.760000px;}
.y16_c00042{bottom:834.480000px;}
.y10_c00042{bottom:873.360000px;}
.y12_c00042{bottom:874.080000px;}
.y11_c00042{bottom:876.240000px;}
.y13_c00042{bottom:876.960000px;}
.ye_c00042{bottom:915.840000px;}
.yc_c00042{bottom:916.560000px;}
.yd_c00042{bottom:918.720000px;}
.yf_c00042{bottom:919.440000px;}
.ya_c00042{bottom:958.320000px;}
.y9_c00042{bottom:959.040000px;}
.y8_c00042{bottom:960.480000px;}
.yb_c00042{bottom:961.920000px;}
.y3_c00042{bottom:1000.800000px;}
.y6_c00042{bottom:1001.520000px;}
.y7_c00042{bottom:1002.240000px;}
.y2_c00042{bottom:1003.680000px;}
.y5_c00042{bottom:1004.400000px;}
.y4_c00042{bottom:1005.120000px;}
.y1_c00042{bottom:1078.560000px;}
.h3_c00042{height:31.100625px;}
.hb_c00042{height:33.692344px;}
.h10_c00042{height:36.284062px;}
.he_c00042{height:38.875781px;}
.hc_c00042{height:41.467500px;}
.h4_c00042{height:44.059219px;}
.h6_c00042{height:46.650937px;}
.hf_c00042{height:49.242656px;}
.h7_c00042{height:51.834375px;}
.ha_c00042{height:54.426094px;}
.hd_c00042{height:55.290937px;}
.h5_c00042{height:57.017812px;}
.h11_c00042{height:57.882656px;}
.h8_c00042{height:59.609531px;}
.h9_c00042{height:62.201250px;}
.h2_c00042{height:64.792969px;}
.h1_c00042{height:1146.000000px;}
.h0_c00042{height:1146.240000px;}
.w0_c00042{width:799.920000px;}
.w1_c00042{width:800.250000px;}
.x0_c00042{left:0.000000px;}
.x25_c00042{left:76.320000px;}
.x2_c00042{left:77.760000px;}
.x3_c00042{left:109.440000px;}
.x55_c00042{left:120.960000px;}
.x1c_c00042{left:132.480000px;}
.x50_c00042{left:141.120000px;}
.x3b_c00042{left:142.560000px;}
.x4_c00042{left:151.920000px;}
.x26_c00042{left:154.800000px;}
.xd_c00042{left:166.320000px;}
.x59_c00042{left:173.520000px;}
.x31_c00042{left:174.960000px;}
.x4b_c00042{left:184.320000px;}
.x43_c00042{left:185.760000px;}
.x4d_c00042{left:195.120000px;}
.x2b_c00042{left:196.560000px;}
.x32_c00042{left:206.640000px;}
.x56_c00042{left:216.720000px;}
.x41_c00042{left:218.160000px;}
.x65_c00042{left:226.800000px;}
.x51_c00042{left:228.240000px;}
.x4e_c00042{left:237.600000px;}
.x1d_c00042{left:239.040000px;}
.x33_c00042{left:249.840000px;}
.xe_c00042{left:251.280000px;}
.x42_c00042{left:259.200000px;}
.x15_c00042{left:270.720000px;}
.x5_c00042{left:272.160000px;}
.x5a_c00042{left:280.800000px;}
.x1e_c00042{left:282.240000px;}
.x52_c00042{left:291.600000px;}
.x34_c00042{left:293.760000px;}
.x66_c00042{left:302.400000px;}
.x6_c00042{left:303.840000px;}
.x2c_c00042{left:313.200000px;}
.x1f_c00042{left:314.640000px;}
.x48_c00042{left:324.720000px;}
.xf_c00042{left:326.160000px;}
.x7_c00042{left:336.240000px;}
.x5d_c00042{left:345.600000px;}
.x38_c00042{left:347.760000px;}
.x63_c00042{left:354.960000px;}
.x44_c00042{left:356.400000px;}
.x2d_c00042{left:358.560000px;}
.x4c_c00042{left:367.200000px;}
.x57_c00042{left:378.000000px;}
.x16_c00042{left:379.440000px;}
.x3c_c00042{left:388.800000px;}
.x10_c00042{left:390.240000px;}
.x2e_c00042{left:401.760000px;}
.x4f_c00042{left:410.400000px;}
.x45_c00042{left:411.840000px;}
.x5f_c00042{left:421.200000px;}
.x8_c00042{left:422.640000px;}
.x20_c00042{left:432.000000px;}
.x35_c00042{left:443.520000px;}
.x11_c00042{left:453.600000px;}
.x17_c00042{left:455.040000px;}
.x60_c00042{left:464.400000px;}
.x27_c00042{left:465.840000px;}
.x3d_c00042{left:475.200000px;}
.x9_c00042{left:486.720000px;}
.x36_c00042{left:496.080000px;}
.x28_c00042{left:497.520000px;}
.xa_c00042{left:507.600000px;}
.x3e_c00042{left:518.400000px;}
.x21_c00042{left:529.200000px;}
.x12_c00042{left:530.640000px;}
.x5e_c00042{left:538.560000px;}
.x3f_c00042{left:540.000000px;}
.x18_c00042{left:541.440000px;}
.x22_c00042{left:550.800000px;}
.x19_c00042{left:561.600000px;}
.x13_c00042{left:563.040000px;}
.x53_c00042{left:571.680000px;}
.x39_c00042{left:573.120000px;}
.x58_c00042{left:581.760000px;}
.x49_c00042{left:583.200000px;}
.x1a_c00042{left:594.000000px;}
.xb_c00042{left:595.440000px;}
.x5b_c00042{left:603.360000px;}
.x2f_c00042{left:605.520000px;}
.x61_c00042{left:615.600000px;}
.x14_c00042{left:617.040000px;}
.x64_c00042{left:624.240000px;}
.x4a_c00042{left:625.680000px;}
.x23_c00042{left:627.840000px;}
.x29_c00042{left:636.480000px;}
.x5c_c00042{left:646.560000px;}
.x40_c00042{left:648.720000px;}
.x46_c00042{left:658.800000px;}
.x24_c00042{left:669.600000px;}
.x1b_c00042{left:671.040000px;}
.x37_c00042{left:680.400000px;}
.x62_c00042{left:689.760000px;}
.x47_c00042{left:691.200000px;}
.x2a_c00042{left:692.640000px;}
.x3a_c00042{left:702.000000px;}
.x54_c00042{left:711.360000px;}
.xc_c00042{left:712.800000px;}
.x30_c00042{left:714.240000px;}
.x1_c00042{left:748.080000px;}
@media print{
.v0_c00042{vertical-align:0.000000pt;}
.v1_c00042{vertical-align:7.680000pt;}
.ls1_c00042{letter-spacing:0.000000pt;}
.ls0_c00042{letter-spacing:20.480000pt;}
.ws0_c00042{word-spacing:-2.889723pt;}
.ws1_c00042{word-spacing:-0.659627pt;}
.ws2_c00042{word-spacing:0.000000pt;}
.fs1_c00042{font-size:30.720000pt;}
.fs9_c00042{font-size:33.280000pt;}
.fsd_c00042{font-size:35.840000pt;}
.fsb_c00042{font-size:38.400000pt;}
.fsa_c00042{font-size:40.960000pt;}
.fs2_c00042{font-size:43.520000pt;}
.fs4_c00042{font-size:46.080000pt;}
.fsc_c00042{font-size:48.640000pt;}
.fs5_c00042{font-size:51.200000pt;}
.fs8_c00042{font-size:53.760000pt;}
.fs3_c00042{font-size:56.320000pt;}
.fs6_c00042{font-size:58.880000pt;}
.fs7_c00042{font-size:61.440000pt;}
.fs0_c00042{font-size:64.000000pt;}
.y0_c00042{bottom:0.000000pt;}
.y65_c00042{bottom:38.400000pt;}
.y64_c00042{bottom:39.040000pt;}
.y67_c00042{bottom:40.320000pt;}
.y66_c00042{bottom:40.960000pt;}
.y63_c00042{bottom:41.600000pt;}
.y62_c00042{bottom:42.240000pt;}
.y61_c00042{bottom:86.400000pt;}
.y60_c00042{bottom:88.960000pt;}
.y5f_c00042{bottom:89.600000pt;}
.y5d_c00042{bottom:123.520000pt;}
.y5a_c00042{bottom:124.800000pt;}
.y5e_c00042{bottom:125.440000pt;}
.y5c_c00042{bottom:126.080000pt;}
.y5b_c00042{bottom:126.720000pt;}
.y59_c00042{bottom:161.280000pt;}
.y58_c00042{bottom:163.200000pt;}
.y56_c00042{bottom:163.840000pt;}
.y57_c00042{bottom:164.480000pt;}
.y55_c00042{bottom:165.120000pt;}
.y54_c00042{bottom:199.040000pt;}
.y51_c00042{bottom:199.680000pt;}
.y52_c00042{bottom:200.960000pt;}
.y53_c00042{bottom:201.600000pt;}
.y50_c00042{bottom:202.240000pt;}
.y4f_c00042{bottom:202.880000pt;}
.y4e_c00042{bottom:236.800000pt;}
.y4d_c00042{bottom:237.440000pt;}
.y4b_c00042{bottom:239.360000pt;}
.y4c_c00042{bottom:240.000000pt;}
.y49_c00042{bottom:273.920000pt;}
.y4a_c00042{bottom:274.560000pt;}
.y46_c00042{bottom:275.200000pt;}
.y48_c00042{bottom:276.480000pt;}
.y47_c00042{bottom:277.120000pt;}
.y45_c00042{bottom:277.760000pt;}
.y43_c00042{bottom:312.320000pt;}
.y41_c00042{bottom:313.600000pt;}
.y44_c00042{bottom:314.240000pt;}
.y42_c00042{bottom:315.520000pt;}
.y40_c00042{bottom:350.720000pt;}
.y3f_c00042{bottom:352.640000pt;}
.y3e_c00042{bottom:353.280000pt;}
.y3c_c00042{bottom:387.200000pt;}
.y3d_c00042{bottom:387.840000pt;}
.y38_c00042{bottom:388.480000pt;}
.y3a_c00042{bottom:389.120000pt;}
.y3b_c00042{bottom:390.400000pt;}
.y39_c00042{bottom:391.040000pt;}
.y36_c00042{bottom:425.600000pt;}
.y35_c00042{bottom:426.240000pt;}
.y33_c00042{bottom:428.160000pt;}
.y37_c00042{bottom:428.800000pt;}
.y34_c00042{bottom:429.440000pt;}
.y31_c00042{bottom:463.360000pt;}
.y30_c00042{bottom:464.000000pt;}
.y32_c00042{bottom:465.920000pt;}
.y2f_c00042{bottom:466.560000pt;}
.y2e_c00042{bottom:501.760000pt;}
.y2c_c00042{bottom:502.400000pt;}
.y2d_c00042{bottom:504.320000pt;}
.y2b_c00042{bottom:504.960000pt;}
.y28_c00042{bottom:549.760000pt;}
.y2a_c00042{bottom:551.040000pt;}
.y29_c00042{bottom:551.680000pt;}
.y27_c00042{bottom:552.320000pt;}
.y26_c00042{bottom:587.520000pt;}
.y24_c00042{bottom:589.440000pt;}
.y25_c00042{bottom:590.080000pt;}
.y21_c00042{bottom:625.280000pt;}
.y23_c00042{bottom:625.920000pt;}
.y22_c00042{bottom:627.200000pt;}
.y20_c00042{bottom:627.840000pt;}
.y1e_c00042{bottom:663.040000pt;}
.y1d_c00042{bottom:665.600000pt;}
.y1f_c00042{bottom:666.240000pt;}
.y17_c00042{bottom:700.160000pt;}
.y1b_c00042{bottom:700.800000pt;}
.y1c_c00042{bottom:701.440000pt;}
.y1a_c00042{bottom:702.080000pt;}
.y18_c00042{bottom:703.360000pt;}
.y19_c00042{bottom:704.000000pt;}
.y15_c00042{bottom:738.560000pt;}
.y14_c00042{bottom:741.120000pt;}
.y16_c00042{bottom:741.760000pt;}
.y10_c00042{bottom:776.320000pt;}
.y12_c00042{bottom:776.960000pt;}
.y11_c00042{bottom:778.880000pt;}
.y13_c00042{bottom:779.520000pt;}
.ye_c00042{bottom:814.080000pt;}
.yc_c00042{bottom:814.720000pt;}
.yd_c00042{bottom:816.640000pt;}
.yf_c00042{bottom:817.280000pt;}
.ya_c00042{bottom:851.840000pt;}
.y9_c00042{bottom:852.480000pt;}
.y8_c00042{bottom:853.760000pt;}
.yb_c00042{bottom:855.040000pt;}
.y3_c00042{bottom:889.600000pt;}
.y6_c00042{bottom:890.240000pt;}
.y7_c00042{bottom:890.880000pt;}
.y2_c00042{bottom:892.160000pt;}
.y5_c00042{bottom:892.800000pt;}
.y4_c00042{bottom:893.440000pt;}
.y1_c00042{bottom:958.720000pt;}
.h3_c00042{height:27.645000pt;}
.hb_c00042{height:29.948750pt;}
.h10_c00042{height:32.252500pt;}
.he_c00042{height:34.556250pt;}
.hc_c00042{height:36.860000pt;}
.h4_c00042{height:39.163750pt;}
.h6_c00042{height:41.467500pt;}
.hf_c00042{height:43.771250pt;}
.h7_c00042{height:46.075000pt;}
.ha_c00042{height:48.378750pt;}
.hd_c00042{height:49.147500pt;}
.h5_c00042{height:50.682500pt;}
.h11_c00042{height:51.451250pt;}
.h8_c00042{height:52.986250pt;}
.h9_c00042{height:55.290000pt;}
.h2_c00042{height:57.593750pt;}
.h1_c00042{height:1018.666667pt;}
.h0_c00042{height:1018.880000pt;}
.w0_c00042{width:711.040000pt;}
.w1_c00042{width:711.333333pt;}
.x0_c00042{left:0.000000pt;}
.x25_c00042{left:67.840000pt;}
.x2_c00042{left:69.120000pt;}
.x3_c00042{left:97.280000pt;}
.x55_c00042{left:107.520000pt;}
.x1c_c00042{left:117.760000pt;}
.x50_c00042{left:125.440000pt;}
.x3b_c00042{left:126.720000pt;}
.x4_c00042{left:135.040000pt;}
.x26_c00042{left:137.600000pt;}
.xd_c00042{left:147.840000pt;}
.x59_c00042{left:154.240000pt;}
.x31_c00042{left:155.520000pt;}
.x4b_c00042{left:163.840000pt;}
.x43_c00042{left:165.120000pt;}
.x4d_c00042{left:173.440000pt;}
.x2b_c00042{left:174.720000pt;}
.x32_c00042{left:183.680000pt;}
.x56_c00042{left:192.640000pt;}
.x41_c00042{left:193.920000pt;}
.x65_c00042{left:201.600000pt;}
.x51_c00042{left:202.880000pt;}
.x4e_c00042{left:211.200000pt;}
.x1d_c00042{left:212.480000pt;}
.x33_c00042{left:222.080000pt;}
.xe_c00042{left:223.360000pt;}
.x42_c00042{left:230.400000pt;}
.x15_c00042{left:240.640000pt;}
.x5_c00042{left:241.920000pt;}
.x5a_c00042{left:249.600000pt;}
.x1e_c00042{left:250.880000pt;}
.x52_c00042{left:259.200000pt;}
.x34_c00042{left:261.120000pt;}
.x66_c00042{left:268.800000pt;}
.x6_c00042{left:270.080000pt;}
.x2c_c00042{left:278.400000pt;}
.x1f_c00042{left:279.680000pt;}
.x48_c00042{left:288.640000pt;}
.xf_c00042{left:289.920000pt;}
.x7_c00042{left:298.880000pt;}
.x5d_c00042{left:307.200000pt;}
.x38_c00042{left:309.120000pt;}
.x63_c00042{left:315.520000pt;}
.x44_c00042{left:316.800000pt;}
.x2d_c00042{left:318.720000pt;}
.x4c_c00042{left:326.400000pt;}
.x57_c00042{left:336.000000pt;}
.x16_c00042{left:337.280000pt;}
.x3c_c00042{left:345.600000pt;}
.x10_c00042{left:346.880000pt;}
.x2e_c00042{left:357.120000pt;}
.x4f_c00042{left:364.800000pt;}
.x45_c00042{left:366.080000pt;}
.x5f_c00042{left:374.400000pt;}
.x8_c00042{left:375.680000pt;}
.x20_c00042{left:384.000000pt;}
.x35_c00042{left:394.240000pt;}
.x11_c00042{left:403.200000pt;}
.x17_c00042{left:404.480000pt;}
.x60_c00042{left:412.800000pt;}
.x27_c00042{left:414.080000pt;}
.x3d_c00042{left:422.400000pt;}
.x9_c00042{left:432.640000pt;}
.x36_c00042{left:440.960000pt;}
.x28_c00042{left:442.240000pt;}
.xa_c00042{left:451.200000pt;}
.x3e_c00042{left:460.800000pt;}
.x21_c00042{left:470.400000pt;}
.x12_c00042{left:471.680000pt;}
.x5e_c00042{left:478.720000pt;}
.x3f_c00042{left:480.000000pt;}
.x18_c00042{left:481.280000pt;}
.x22_c00042{left:489.600000pt;}
.x19_c00042{left:499.200000pt;}
.x13_c00042{left:500.480000pt;}
.x53_c00042{left:508.160000pt;}
.x39_c00042{left:509.440000pt;}
.x58_c00042{left:517.120000pt;}
.x49_c00042{left:518.400000pt;}
.x1a_c00042{left:528.000000pt;}
.xb_c00042{left:529.280000pt;}
.x5b_c00042{left:536.320000pt;}
.x2f_c00042{left:538.240000pt;}
.x61_c00042{left:547.200000pt;}
.x14_c00042{left:548.480000pt;}
.x64_c00042{left:554.880000pt;}
.x4a_c00042{left:556.160000pt;}
.x23_c00042{left:558.080000pt;}
.x29_c00042{left:565.760000pt;}
.x5c_c00042{left:574.720000pt;}
.x40_c00042{left:576.640000pt;}
.x46_c00042{left:585.600000pt;}
.x24_c00042{left:595.200000pt;}
.x1b_c00042{left:596.480000pt;}
.x37_c00042{left:604.800000pt;}
.x62_c00042{left:613.120000pt;}
.x47_c00042{left:614.400000pt;}
.x2a_c00042{left:615.680000pt;}
.x3a_c00042{left:624.000000pt;}
.x54_c00042{left:632.320000pt;}
.xc_c00042{left:633.600000pt;}
.x30_c00042{left:634.880000pt;}
.x1_c00042{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_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_0041011c6bf3bbf44ec5fd48.woff2')format("woff");}.ff1_c00043{font-family:ff1_c00043;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m30_c00043{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00043{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00043{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m0_c00043{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00043{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m46_c00043{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00043{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m11_c00043{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m2_c00043{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m36_c00043{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);}
.m40_c00043{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00043{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m8_c00043{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);}
.m2e_c00043{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m41_c00043{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);}
.me_c00043{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m44_c00043{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m28_c00043{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m4_c00043{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m18_c00043{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_c00043{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);}
.m27_c00043{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);}
.m21_c00043{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m24_c00043{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);}
.m1e_c00043{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m52_c00043{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);}
.m26_c00043{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);}
.m3b_c00043{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);}
.m2d_c00043{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m32_c00043{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m9_c00043{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);}
.m45_c00043{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m25_c00043{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);}
.m6_c00043{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m49_c00043{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);}
.md_c00043{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);}
.m54_c00043{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00043{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m19_c00043{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);}
.mc_c00043{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.ma_c00043{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m5_c00043{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);}
.mb_c00043{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);}
.m1d_c00043{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00043{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m1_c00043{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00043{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);}
.m1c_c00043{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00043{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m12_c00043{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m50_c00043{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m13_c00043{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m37_c00043{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m16_c00043{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m31_c00043{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m34_c00043{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);}
.m7_c00043{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m23_c00043{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m33_c00043{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);}
.m48_c00043{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.mf_c00043{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00043{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);}
.m4f_c00043{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m20_c00043{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m38_c00043{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m53_c00043{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m47_c00043{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);}
.m10_c00043{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m15_c00043{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00043{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);}
.m22_c00043{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);}
.m39_c00043{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00043{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m43_c00043{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m42_c00043{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m14_c00043{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00043{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m35_c00043{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m3_c00043{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);}
.m29_c00043{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00043{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00043{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00043{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.m51_c00043{transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00043{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_c00043{vertical-align:0.000000px;}
.v1_c00043{vertical-align:8.640000px;}
.ls0_c00043{letter-spacing:0.000000px;}
.sc__c00043{text-shadow:none;}
.sc0_c00043{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00043{-webkit-text-stroke:0px transparent;}
.sc0_c00043{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00043{word-spacing:-0.649200px;}
.ws1_c00043{word-spacing:0.000000px;}
.fc0_c00043{color:transparent;}
.fs2_c00043{font-size:34.560000px;}
.fs6_c00043{font-size:37.440000px;}
.fs7_c00043{font-size:40.320000px;}
.fsb_c00043{font-size:43.200000px;}
.fs8_c00043{font-size:46.080000px;}
.fs4_c00043{font-size:48.960000px;}
.fs1_c00043{font-size:51.840000px;}
.fs5_c00043{font-size:54.720000px;}
.fsa_c00043{font-size:57.600000px;}
.fs3_c00043{font-size:60.480000px;}
.fs9_c00043{font-size:63.360000px;}
.fsd_c00043{font-size:66.240000px;}
.fsc_c00043{font-size:69.120000px;}
.fs0_c00043{font-size:74.880000px;}
.y0_c00043{bottom:0.000000px;}
.y57_c00043{bottom:77.040000px;}
.y56_c00043{bottom:79.920000px;}
.y55_c00043{bottom:80.640000px;}
.y54_c00043{bottom:132.480000px;}
.y52_c00043{bottom:173.520000px;}
.y50_c00043{bottom:174.960000px;}
.y53_c00043{bottom:175.680000px;}
.y51_c00043{bottom:176.400000px;}
.y4e_c00043{bottom:216.720000px;}
.y4f_c00043{bottom:218.160000px;}
.y4d_c00043{bottom:218.880000px;}
.y4a_c00043{bottom:257.040000px;}
.y4c_c00043{bottom:259.920000px;}
.y4b_c00043{bottom:260.640000px;}
.y49_c00043{bottom:261.360000px;}
.y48_c00043{bottom:262.080000px;}
.y46_c00043{bottom:300.960000px;}
.y47_c00043{bottom:301.680000px;}
.y43_c00043{bottom:303.120000px;}
.y45_c00043{bottom:303.840000px;}
.y44_c00043{bottom:304.560000px;}
.y41_c00043{bottom:343.440000px;}
.y3e_c00043{bottom:344.160000px;}
.y42_c00043{bottom:345.600000px;}
.y40_c00043{bottom:346.320000px;}
.y3f_c00043{bottom:347.040000px;}
.y3d_c00043{bottom:385.920000px;}
.y3b_c00043{bottom:388.800000px;}
.y3c_c00043{bottom:389.520000px;}
.y3a_c00043{bottom:428.400000px;}
.y38_c00043{bottom:429.120000px;}
.y39_c00043{bottom:431.280000px;}
.y37_c00043{bottom:432.000000px;}
.y36_c00043{bottom:470.880000px;}
.y33_c00043{bottom:471.600000px;}
.y35_c00043{bottom:473.760000px;}
.y34_c00043{bottom:474.480000px;}
.y30_c00043{bottom:514.080000px;}
.y32_c00043{bottom:516.240000px;}
.y31_c00043{bottom:516.960000px;}
.y2f_c00043{bottom:556.560000px;}
.y2d_c00043{bottom:559.440000px;}
.y2e_c00043{bottom:560.160000px;}
.y2c_c00043{bottom:599.040000px;}
.y2b_c00043{bottom:599.760000px;}
.y2a_c00043{bottom:601.920000px;}
.y29_c00043{bottom:602.640000px;}
.y24_c00043{bottom:641.520000px;}
.y27_c00043{bottom:643.680000px;}
.y25_c00043{bottom:644.400000px;}
.y26_c00043{bottom:645.120000px;}
.y28_c00043{bottom:645.840000px;}
.y22_c00043{bottom:684.000000px;}
.y20_c00043{bottom:686.880000px;}
.y21_c00043{bottom:687.600000px;}
.y23_c00043{bottom:688.320000px;}
.y1e_c00043{bottom:729.360000px;}
.y1f_c00043{bottom:730.080000px;}
.y1a_c00043{bottom:779.760000px;}
.y1d_c00043{bottom:781.920000px;}
.y1b_c00043{bottom:782.640000px;}
.y1c_c00043{bottom:783.360000px;}
.y16_c00043{bottom:822.240000px;}
.y19_c00043{bottom:822.960000px;}
.y17_c00043{bottom:825.120000px;}
.y18_c00043{bottom:825.840000px;}
.y12_c00043{bottom:864.720000px;}
.y14_c00043{bottom:865.440000px;}
.y13_c00043{bottom:867.600000px;}
.y15_c00043{bottom:868.320000px;}
.yb_c00043{bottom:906.480000px;}
.ye_c00043{bottom:907.200000px;}
.yf_c00043{bottom:907.920000px;}
.yc_c00043{bottom:908.640000px;}
.y10_c00043{bottom:910.080000px;}
.yd_c00043{bottom:910.800000px;}
.y11_c00043{bottom:911.520000px;}
.y8_c00043{bottom:950.400000px;}
.ya_c00043{bottom:951.120000px;}
.y7_c00043{bottom:952.560000px;}
.y6_c00043{bottom:953.280000px;}
.y9_c00043{bottom:954.000000px;}
.y4_c00043{bottom:993.600000px;}
.y5_c00043{bottom:994.320000px;}
.y2_c00043{bottom:995.760000px;}
.y3_c00043{bottom:996.480000px;}
.y1_c00043{bottom:1067.760000px;}
.h4_c00043{height:31.100625px;}
.h9_c00043{height:33.692344px;}
.ha_c00043{height:36.284062px;}
.he_c00043{height:38.875781px;}
.hb_c00043{height:41.467500px;}
.h6_c00043{height:44.059219px;}
.h3_c00043{height:46.650937px;}
.h7_c00043{height:49.242656px;}
.hd_c00043{height:51.834375px;}
.h5_c00043{height:54.426094px;}
.h8_c00043{height:55.290937px;}
.hc_c00043{height:57.017812px;}
.h10_c00043{height:59.609531px;}
.hf_c00043{height:62.201250px;}
.h2_c00043{height:67.384687px;}
.h1_c00043{height:1151.250000px;}
.h0_c00043{height:1151.280000px;}
.w1_c00043{width:807.750000px;}
.w0_c00043{width:807.840000px;}
.x0_c00043{left:0.000000px;}
.x4d_c00043{left:79.920000px;}
.x23_c00043{left:84.960000px;}
.x2_c00043{left:86.400000px;}
.x29_c00043{left:118.800000px;}
.x3a_c00043{left:128.880000px;}
.xb_c00043{left:140.400000px;}
.x1b_c00043{left:151.200000px;}
.x40_c00043{left:159.840000px;}
.x14_c00043{left:162.000000px;}
.x3_c00043{left:172.800000px;}
.x1c_c00043{left:183.600000px;}
.xc_c00043{left:185.040000px;}
.x4e_c00043{left:192.960000px;}
.x2d_c00043{left:194.400000px;}
.x4_c00043{left:205.200000px;}
.x24_c00043{left:214.560000px;}
.x44_c00043{left:216.000000px;}
.x4f_c00043{left:235.440000px;}
.x1d_c00043{left:236.880000px;}
.x2e_c00043{left:248.400000px;}
.x54_c00043{left:257.760000px;}
.x5_c00043{left:259.200000px;}
.x48_c00043{left:278.640000px;}
.x2a_c00043{left:280.080000px;}
.x55_c00043{left:290.160000px;}
.x25_c00043{left:291.600000px;}
.xd_c00043{left:301.680000px;}
.x33_c00043{left:311.760000px;}
.x41_c00043{left:321.840000px;}
.xe_c00043{left:324.000000px;}
.x59_c00043{left:332.640000px;}
.x2f_c00043{left:334.080000px;}
.x36_c00043{left:347.040000px;}
.x45_c00043{left:354.960000px;}
.xf_c00043{left:356.400000px;}
.x56_c00043{left:365.040000px;}
.x15_c00043{left:366.480000px;}
.x50_c00043{left:376.560000px;}
.x49_c00043{left:386.640000px;}
.x6_c00043{left:388.080000px;}
.x34_c00043{left:398.880000px;}
.x30_c00043{left:409.680000px;}
.x46_c00043{left:419.040000px;}
.x52_c00043{left:420.480000px;}
.x3b_c00043{left:429.840000px;}
.x16_c00043{left:441.360000px;}
.x7_c00043{left:442.800000px;}
.x3e_c00043{left:450.720000px;}
.x47_c00043{left:452.160000px;}
.x31_c00043{left:453.600000px;}
.x17_c00043{left:462.240000px;}
.x1e_c00043{left:463.680000px;}
.x4c_c00043{left:473.040000px;}
.x10_c00043{left:475.200000px;}
.x57_c00043{left:483.120000px;}
.x26_c00043{left:484.560000px;}
.x2b_c00043{left:494.640000px;}
.x1f_c00043{left:496.080000px;}
.x5a_c00043{left:505.440000px;}
.x27_c00043{left:516.960000px;}
.x35_c00043{left:527.040000px;}
.x18_c00043{left:528.480000px;}
.x37_c00043{left:537.120000px;}
.x5b_c00043{left:538.560000px;}
.x3c_c00043{left:548.640000px;}
.x19_c00043{left:560.160000px;}
.x8_c00043{left:561.600000px;}
.x4a_c00043{left:568.800000px;}
.x11_c00043{left:570.240000px;}
.x20_c00043{left:581.760000px;}
.x58_c00043{left:590.400000px;}
.x9_c00043{left:592.560000px;}
.x4b_c00043{left:602.640000px;}
.x2c_c00043{left:613.440000px;}
.x21_c00043{left:614.880000px;}
.x53_c00043{left:634.320000px;}
.x38_c00043{left:635.760000px;}
.x3d_c00043{left:645.840000px;}
.x39_c00043{left:656.640000px;}
.x22_c00043{left:667.440000px;}
.x12_c00043{left:669.600000px;}
.x42_c00043{left:677.520000px;}
.x32_c00043{left:678.960000px;}
.x51_c00043{left:687.600000px;}
.x28_c00043{left:689.760000px;}
.xa_c00043{left:691.200000px;}
.x13_c00043{left:700.560000px;}
.x1a_c00043{left:711.360000px;}
.x1_c00043{left:716.400000px;}
.x43_c00043{left:720.000000px;}
.x3f_c00043{left:721.440000px;}
@media print{
.v0_c00043{vertical-align:0.000000pt;}
.v1_c00043{vertical-align:7.680000pt;}
.ls0_c00043{letter-spacing:0.000000pt;}
.ws0_c00043{word-spacing:-0.577067pt;}
.ws1_c00043{word-spacing:0.000000pt;}
.fs2_c00043{font-size:30.720000pt;}
.fs6_c00043{font-size:33.280000pt;}
.fs7_c00043{font-size:35.840000pt;}
.fsb_c00043{font-size:38.400000pt;}
.fs8_c00043{font-size:40.960000pt;}
.fs4_c00043{font-size:43.520000pt;}
.fs1_c00043{font-size:46.080000pt;}
.fs5_c00043{font-size:48.640000pt;}
.fsa_c00043{font-size:51.200000pt;}
.fs3_c00043{font-size:53.760000pt;}
.fs9_c00043{font-size:56.320000pt;}
.fsd_c00043{font-size:58.880000pt;}
.fsc_c00043{font-size:61.440000pt;}
.fs0_c00043{font-size:66.560000pt;}
.y0_c00043{bottom:0.000000pt;}
.y57_c00043{bottom:68.480000pt;}
.y56_c00043{bottom:71.040000pt;}
.y55_c00043{bottom:71.680000pt;}
.y54_c00043{bottom:117.760000pt;}
.y52_c00043{bottom:154.240000pt;}
.y50_c00043{bottom:155.520000pt;}
.y53_c00043{bottom:156.160000pt;}
.y51_c00043{bottom:156.800000pt;}
.y4e_c00043{bottom:192.640000pt;}
.y4f_c00043{bottom:193.920000pt;}
.y4d_c00043{bottom:194.560000pt;}
.y4a_c00043{bottom:228.480000pt;}
.y4c_c00043{bottom:231.040000pt;}
.y4b_c00043{bottom:231.680000pt;}
.y49_c00043{bottom:232.320000pt;}
.y48_c00043{bottom:232.960000pt;}
.y46_c00043{bottom:267.520000pt;}
.y47_c00043{bottom:268.160000pt;}
.y43_c00043{bottom:269.440000pt;}
.y45_c00043{bottom:270.080000pt;}
.y44_c00043{bottom:270.720000pt;}
.y41_c00043{bottom:305.280000pt;}
.y3e_c00043{bottom:305.920000pt;}
.y42_c00043{bottom:307.200000pt;}
.y40_c00043{bottom:307.840000pt;}
.y3f_c00043{bottom:308.480000pt;}
.y3d_c00043{bottom:343.040000pt;}
.y3b_c00043{bottom:345.600000pt;}
.y3c_c00043{bottom:346.240000pt;}
.y3a_c00043{bottom:380.800000pt;}
.y38_c00043{bottom:381.440000pt;}
.y39_c00043{bottom:383.360000pt;}
.y37_c00043{bottom:384.000000pt;}
.y36_c00043{bottom:418.560000pt;}
.y33_c00043{bottom:419.200000pt;}
.y35_c00043{bottom:421.120000pt;}
.y34_c00043{bottom:421.760000pt;}
.y30_c00043{bottom:456.960000pt;}
.y32_c00043{bottom:458.880000pt;}
.y31_c00043{bottom:459.520000pt;}
.y2f_c00043{bottom:494.720000pt;}
.y2d_c00043{bottom:497.280000pt;}
.y2e_c00043{bottom:497.920000pt;}
.y2c_c00043{bottom:532.480000pt;}
.y2b_c00043{bottom:533.120000pt;}
.y2a_c00043{bottom:535.040000pt;}
.y29_c00043{bottom:535.680000pt;}
.y24_c00043{bottom:570.240000pt;}
.y27_c00043{bottom:572.160000pt;}
.y25_c00043{bottom:572.800000pt;}
.y26_c00043{bottom:573.440000pt;}
.y28_c00043{bottom:574.080000pt;}
.y22_c00043{bottom:608.000000pt;}
.y20_c00043{bottom:610.560000pt;}
.y21_c00043{bottom:611.200000pt;}
.y23_c00043{bottom:611.840000pt;}
.y1e_c00043{bottom:648.320000pt;}
.y1f_c00043{bottom:648.960000pt;}
.y1a_c00043{bottom:693.120000pt;}
.y1d_c00043{bottom:695.040000pt;}
.y1b_c00043{bottom:695.680000pt;}
.y1c_c00043{bottom:696.320000pt;}
.y16_c00043{bottom:730.880000pt;}
.y19_c00043{bottom:731.520000pt;}
.y17_c00043{bottom:733.440000pt;}
.y18_c00043{bottom:734.080000pt;}
.y12_c00043{bottom:768.640000pt;}
.y14_c00043{bottom:769.280000pt;}
.y13_c00043{bottom:771.200000pt;}
.y15_c00043{bottom:771.840000pt;}
.yb_c00043{bottom:805.760000pt;}
.ye_c00043{bottom:806.400000pt;}
.yf_c00043{bottom:807.040000pt;}
.yc_c00043{bottom:807.680000pt;}
.y10_c00043{bottom:808.960000pt;}
.yd_c00043{bottom:809.600000pt;}
.y11_c00043{bottom:810.240000pt;}
.y8_c00043{bottom:844.800000pt;}
.ya_c00043{bottom:845.440000pt;}
.y7_c00043{bottom:846.720000pt;}
.y6_c00043{bottom:847.360000pt;}
.y9_c00043{bottom:848.000000pt;}
.y4_c00043{bottom:883.200000pt;}
.y5_c00043{bottom:883.840000pt;}
.y2_c00043{bottom:885.120000pt;}
.y3_c00043{bottom:885.760000pt;}
.y1_c00043{bottom:949.120000pt;}
.h4_c00043{height:27.645000pt;}
.h9_c00043{height:29.948750pt;}
.ha_c00043{height:32.252500pt;}
.he_c00043{height:34.556250pt;}
.hb_c00043{height:36.860000pt;}
.h6_c00043{height:39.163750pt;}
.h3_c00043{height:41.467500pt;}
.h7_c00043{height:43.771250pt;}
.hd_c00043{height:46.075000pt;}
.h5_c00043{height:48.378750pt;}
.h8_c00043{height:49.147500pt;}
.hc_c00043{height:50.682500pt;}
.h10_c00043{height:52.986250pt;}
.hf_c00043{height:55.290000pt;}
.h2_c00043{height:59.897500pt;}
.h1_c00043{height:1023.333333pt;}
.h0_c00043{height:1023.360000pt;}
.w1_c00043{width:718.000000pt;}
.w0_c00043{width:718.080000pt;}
.x0_c00043{left:0.000000pt;}
.x4d_c00043{left:71.040000pt;}
.x23_c00043{left:75.520000pt;}
.x2_c00043{left:76.800000pt;}
.x29_c00043{left:105.600000pt;}
.x3a_c00043{left:114.560000pt;}
.xb_c00043{left:124.800000pt;}
.x1b_c00043{left:134.400000pt;}
.x40_c00043{left:142.080000pt;}
.x14_c00043{left:144.000000pt;}
.x3_c00043{left:153.600000pt;}
.x1c_c00043{left:163.200000pt;}
.xc_c00043{left:164.480000pt;}
.x4e_c00043{left:171.520000pt;}
.x2d_c00043{left:172.800000pt;}
.x4_c00043{left:182.400000pt;}
.x24_c00043{left:190.720000pt;}
.x44_c00043{left:192.000000pt;}
.x4f_c00043{left:209.280000pt;}
.x1d_c00043{left:210.560000pt;}
.x2e_c00043{left:220.800000pt;}
.x54_c00043{left:229.120000pt;}
.x5_c00043{left:230.400000pt;}
.x48_c00043{left:247.680000pt;}
.x2a_c00043{left:248.960000pt;}
.x55_c00043{left:257.920000pt;}
.x25_c00043{left:259.200000pt;}
.xd_c00043{left:268.160000pt;}
.x33_c00043{left:277.120000pt;}
.x41_c00043{left:286.080000pt;}
.xe_c00043{left:288.000000pt;}
.x59_c00043{left:295.680000pt;}
.x2f_c00043{left:296.960000pt;}
.x36_c00043{left:308.480000pt;}
.x45_c00043{left:315.520000pt;}
.xf_c00043{left:316.800000pt;}
.x56_c00043{left:324.480000pt;}
.x15_c00043{left:325.760000pt;}
.x50_c00043{left:334.720000pt;}
.x49_c00043{left:343.680000pt;}
.x6_c00043{left:344.960000pt;}
.x34_c00043{left:354.560000pt;}
.x30_c00043{left:364.160000pt;}
.x46_c00043{left:372.480000pt;}
.x52_c00043{left:373.760000pt;}
.x3b_c00043{left:382.080000pt;}
.x16_c00043{left:392.320000pt;}
.x7_c00043{left:393.600000pt;}
.x3e_c00043{left:400.640000pt;}
.x47_c00043{left:401.920000pt;}
.x31_c00043{left:403.200000pt;}
.x17_c00043{left:410.880000pt;}
.x1e_c00043{left:412.160000pt;}
.x4c_c00043{left:420.480000pt;}
.x10_c00043{left:422.400000pt;}
.x57_c00043{left:429.440000pt;}
.x26_c00043{left:430.720000pt;}
.x2b_c00043{left:439.680000pt;}
.x1f_c00043{left:440.960000pt;}
.x5a_c00043{left:449.280000pt;}
.x27_c00043{left:459.520000pt;}
.x35_c00043{left:468.480000pt;}
.x18_c00043{left:469.760000pt;}
.x37_c00043{left:477.440000pt;}
.x5b_c00043{left:478.720000pt;}
.x3c_c00043{left:487.680000pt;}
.x19_c00043{left:497.920000pt;}
.x8_c00043{left:499.200000pt;}
.x4a_c00043{left:505.600000pt;}
.x11_c00043{left:506.880000pt;}
.x20_c00043{left:517.120000pt;}
.x58_c00043{left:524.800000pt;}
.x9_c00043{left:526.720000pt;}
.x4b_c00043{left:535.680000pt;}
.x2c_c00043{left:545.280000pt;}
.x21_c00043{left:546.560000pt;}
.x53_c00043{left:563.840000pt;}
.x38_c00043{left:565.120000pt;}
.x3d_c00043{left:574.080000pt;}
.x39_c00043{left:583.680000pt;}
.x22_c00043{left:593.280000pt;}
.x12_c00043{left:595.200000pt;}
.x42_c00043{left:602.240000pt;}
.x32_c00043{left:603.520000pt;}
.x51_c00043{left:611.200000pt;}
.x28_c00043{left:613.120000pt;}
.xa_c00043{left:614.400000pt;}
.x13_c00043{left:622.720000pt;}
.x1a_c00043{left:632.320000pt;}
.x1_c00043{left:636.800000pt;}
.x43_c00043{left:640.000000pt;}
.x3f_c00043{left:641.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_cb58cbe8b404d75dffd78698.woff2')format("woff");}.ff1_c00044{font-family:ff1_c00044;line-height:1.109863;font-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_c00044{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m7_c00044{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);}
.m4f_c00044{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m20_c00044{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00044{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m37_c00044{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m14_c00044{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00044{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m35_c00044{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m43_c00044{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m30_c00044{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m41_c00044{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);}
.m46_c00044{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m26_c00044{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m3_c00044{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m48_c00044{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m39_c00044{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m36_c00044{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m22_c00044{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m1_c00044{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00044{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m17_c00044{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00044{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);}
.m6_c00044{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);}
.m33_c00044{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m38_c00044{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m24_c00044{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);}
.m42_c00044{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m25_c00044{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00044{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_c00044{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);}
.m47_c00044{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);}
.m13_c00044{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00044{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00044{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m16_c00044{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);}
.m4a_c00044{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m58_c00044{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);}
.m27_c00044{transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);}
.m19_c00044{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m59_c00044{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00044{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00044{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.ma_c00044{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);}
.m3d_c00044{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m23_c00044{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m56_c00044{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m4_c00044{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);}
.m1e_c00044{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m40_c00044{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m8_c00044{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m11_c00044{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m44_c00044{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);}
.m18_c00044{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00044{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m0_c00044{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m2_c00044{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);}
.m5a_c00044{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m50_c00044{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00044{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00044{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m5_c00044{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00044{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);}
.md_c00044{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);}
.m57_c00044{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m45_c00044{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.me_c00044{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);}
.m2e_c00044{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m21_c00044{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m51_c00044{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_c00044{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.mc_c00044{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00044{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m49_c00044{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m54_c00044{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.mb_c00044{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);}
.m34_c00044{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m15_c00044{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);}
.m55_c00044{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00044{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m28_c00044{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.mf_c00044{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m52_c00044{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m32_c00044{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m29_c00044{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00044{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m31_c00044{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m9_c00044{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);}
.m12_c00044{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m53_c00044{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00044{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00044{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.v0_c00044{vertical-align:0.000000px;}
.v1_c00044{vertical-align:2.880000px;}
.ls0_c00044{letter-spacing:0.000000px;}
.sc__c00044{text-shadow:none;}
.sc0_c00044{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00044{-webkit-text-stroke:0px transparent;}
.sc0_c00044{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00044{word-spacing:-0.988800px;}
.ws1_c00044{word-spacing:0.000000px;}
.fc0_c00044{color:transparent;}
.fs7_c00044{font-size:34.560000px;}
.fs6_c00044{font-size:37.440000px;}
.fsb_c00044{font-size:43.200000px;}
.fs4_c00044{font-size:46.080000px;}
.fs1_c00044{font-size:48.960000px;}
.fs2_c00044{font-size:51.840000px;}
.fs0_c00044{font-size:54.720000px;}
.fsa_c00044{font-size:57.600000px;}
.fs5_c00044{font-size:60.480000px;}
.fsc_c00044{font-size:63.360000px;}
.fs9_c00044{font-size:66.240000px;}
.fs3_c00044{font-size:69.120000px;}
.fsd_c00044{font-size:72.000000px;}
.fs8_c00044{font-size:74.880000px;}
.y0_c00044{bottom:0.000000px;}
.y63_c00044{bottom:38.880000px;}
.y62_c00044{bottom:39.600000px;}
.y64_c00044{bottom:41.040000px;}
.y61_c00044{bottom:41.760000px;}
.y60_c00044{bottom:42.480000px;}
.y5f_c00044{bottom:43.200000px;}
.y5e_c00044{bottom:79.920000px;}
.y5d_c00044{bottom:82.080000px;}
.y5c_c00044{bottom:84.240000px;}
.y5b_c00044{bottom:84.960000px;}
.y5a_c00044{bottom:85.680000px;}
.y57_c00044{bottom:125.280000px;}
.y59_c00044{bottom:126.000000px;}
.y58_c00044{bottom:126.720000px;}
.y56_c00044{bottom:127.440000px;}
.y55_c00044{bottom:179.280000px;}
.y54_c00044{bottom:180.720000px;}
.y53_c00044{bottom:181.440000px;}
.y4f_c00044{bottom:219.600000px;}
.y50_c00044{bottom:221.040000px;}
.y52_c00044{bottom:221.760000px;}
.y4e_c00044{bottom:222.480000px;}
.y51_c00044{bottom:223.200000px;}
.y4b_c00044{bottom:262.800000px;}
.y4d_c00044{bottom:264.240000px;}
.y4c_c00044{bottom:264.960000px;}
.y4a_c00044{bottom:265.680000px;}
.y48_c00044{bottom:304.560000px;}
.y47_c00044{bottom:305.280000px;}
.y49_c00044{bottom:307.440000px;}
.y46_c00044{bottom:308.160000px;}
.y45_c00044{bottom:347.760000px;}
.y44_c00044{bottom:349.920000px;}
.y43_c00044{bottom:350.640000px;}
.y41_c00044{bottom:390.240000px;}
.y40_c00044{bottom:390.960000px;}
.y3f_c00044{bottom:393.120000px;}
.y42_c00044{bottom:393.840000px;}
.y3d_c00044{bottom:432.000000px;}
.y3a_c00044{bottom:433.440000px;}
.y3b_c00044{bottom:434.880000px;}
.y3c_c00044{bottom:435.600000px;}
.y3e_c00044{bottom:436.320000px;}
.y36_c00044{bottom:474.480000px;}
.y38_c00044{bottom:475.200000px;}
.y37_c00044{bottom:477.360000px;}
.y39_c00044{bottom:478.080000px;}
.y34_c00044{bottom:517.680000px;}
.y32_c00044{bottom:518.400000px;}
.y35_c00044{bottom:520.560000px;}
.y33_c00044{bottom:521.280000px;}
.y30_c00044{bottom:559.440000px;}
.y31_c00044{bottom:560.160000px;}
.y2e_c00044{bottom:560.880000px;}
.y2d_c00044{bottom:563.040000px;}
.y2f_c00044{bottom:563.760000px;}
.y2b_c00044{bottom:601.920000px;}
.y2a_c00044{bottom:602.640000px;}
.y29_c00044{bottom:603.360000px;}
.y2c_c00044{bottom:604.800000px;}
.y27_c00044{bottom:605.520000px;}
.y28_c00044{bottom:606.240000px;}
.y26_c00044{bottom:645.120000px;}
.y25_c00044{bottom:645.840000px;}
.y24_c00044{bottom:648.000000px;}
.y23_c00044{bottom:687.600000px;}
.y21_c00044{bottom:688.320000px;}
.y22_c00044{bottom:690.480000px;}
.y20_c00044{bottom:691.200000px;}
.y1d_c00044{bottom:730.080000px;}
.y1f_c00044{bottom:730.800000px;}
.y1e_c00044{bottom:733.680000px;}
.y1c_c00044{bottom:775.440000px;}
.y1b_c00044{bottom:776.160000px;}
.y1a_c00044{bottom:776.880000px;}
.y19_c00044{bottom:826.560000px;}
.y18_c00044{bottom:827.280000px;}
.y16_c00044{bottom:828.720000px;}
.y17_c00044{bottom:829.440000px;}
.y12_c00044{bottom:869.040000px;}
.y15_c00044{bottom:869.760000px;}
.y13_c00044{bottom:871.920000px;}
.y14_c00044{bottom:872.640000px;}
.ye_c00044{bottom:912.240000px;}
.y11_c00044{bottom:912.960000px;}
.yc_c00044{bottom:913.680000px;}
.yf_c00044{bottom:914.400000px;}
.yd_c00044{bottom:915.120000px;}
.y10_c00044{bottom:915.840000px;}
.y7_c00044{bottom:954.000000px;}
.yb_c00044{bottom:955.440000px;}
.y6_c00044{bottom:956.880000px;}
.y8_c00044{bottom:957.600000px;}
.y9_c00044{bottom:958.320000px;}
.ya_c00044{bottom:959.040000px;}
.y3_c00044{bottom:997.920000px;}
.y1_c00044{bottom:998.640000px;}
.y2_c00044{bottom:999.360000px;}
.y4_c00044{bottom:1000.080000px;}
.y5_c00044{bottom:1000.800000px;}
.h9_c00044{height:31.100625px;}
.h8_c00044{height:33.692344px;}
.hd_c00044{height:38.875781px;}
.h6_c00044{height:41.467500px;}
.h3_c00044{height:44.059219px;}
.h4_c00044{height:46.650937px;}
.h2_c00044{height:49.242656px;}
.hc_c00044{height:51.834375px;}
.h7_c00044{height:54.426094px;}
.he_c00044{height:57.017812px;}
.hb_c00044{height:59.609531px;}
.h5_c00044{height:62.201250px;}
.hf_c00044{height:64.792969px;}
.ha_c00044{height:67.384687px;}
.h0_c00044{height:1142.640000px;}
.h1_c00044{height:1143.000000px;}
.w0_c00044{width:794.880000px;}
.w1_c00044{width:795.000000px;}
.x0_c00044{left:0.000000px;}
.x51_c00044{left:69.840000px;}
.x1_c00044{left:71.280000px;}
.x30_c00044{left:72.720000px;}
.x43_c00044{left:74.160000px;}
.x52_c00044{left:102.960000px;}
.xa_c00044{left:104.400000px;}
.x37_c00044{left:106.560000px;}
.x1b_c00044{left:114.480000px;}
.x22_c00044{left:136.800000px;}
.x2_c00044{left:146.880000px;}
.x14_c00044{left:158.400000px;}
.x31_c00044{left:168.480000px;}
.x5d_c00044{left:177.120000px;}
.x28_c00044{left:179.280000px;}
.x4e_c00044{left:188.640000px;}
.x3_c00044{left:190.080000px;}
.x23_c00044{left:200.880000px;}
.x29_c00044{left:211.680000px;}
.x5e_c00044{left:221.040000px;}
.x15_c00044{left:223.200000px;}
.x56_c00044{left:231.120000px;}
.xb_c00044{left:233.280000px;}
.x3f_c00044{left:244.080000px;}
.x53_c00044{left:253.440000px;}
.x2c_c00044{left:255.600000px;}
.x32_c00044{left:265.680000px;}
.x40_c00044{left:275.040000px;}
.x1c_c00044{left:276.480000px;}
.x49_c00044{left:285.120000px;}
.x4_c00044{left:287.280000px;}
.x57_c00044{left:295.920000px;}
.x3a_c00044{left:297.360000px;}
.xc_c00044{left:308.160000px;}
.x1d_c00044{left:309.600000px;}
.x16_c00044{left:319.680000px;}
.x5b_c00044{left:329.040000px;}
.x24_c00044{left:330.480000px;}
.x4d_c00044{left:339.840000px;}
.x38_c00044{left:341.280000px;}
.x4f_c00044{left:349.920000px;}
.xd_c00044{left:352.080000px;}
.x58_c00044{left:360.720000px;}
.x25_c00044{left:362.880000px;}
.xe_c00044{left:372.960000px;}
.x47_c00044{left:383.760000px;}
.x5f_c00044{left:393.120000px;}
.x1e_c00044{left:394.560000px;}
.xf_c00044{left:404.640000px;}
.x2d_c00044{left:406.080000px;}
.x44_c00044{left:414.720000px;}
.x5_c00044{left:416.880000px;}
.x3b_c00044{left:425.520000px;}
.x33_c00044{left:427.680000px;}
.x54_c00044{left:447.840000px;}
.x1f_c00044{left:449.280000px;}
.x34_c00044{left:458.640000px;}
.x6_c00044{left:460.080000px;}
.x26_c00044{left:470.160000px;}
.x41_c00044{left:480.240000px;}
.x2e_c00044{left:481.680000px;}
.x59_c00044{left:490.320000px;}
.x2a_c00044{left:491.760000px;}
.x4a_c00044{left:501.120000px;}
.x17_c00044{left:502.560000px;}
.x10_c00044{left:513.360000px;}
.x2f_c00044{left:522.720000px;}
.x20_c00044{left:524.160000px;}
.x7_c00044{left:527.040000px;}
.x3c_c00044{left:528.480000px;}
.x4b_c00044{left:533.520000px;}
.x11_c00044{left:545.040000px;}
.x50_c00044{left:554.400000px;}
.x35_c00044{left:555.840000px;}
.x55_c00044{left:565.920000px;}
.x18_c00044{left:568.080000px;}
.x4c_c00044{left:576.720000px;}
.x27_c00044{left:578.880000px;}
.x42_c00044{left:587.520000px;}
.x19_c00044{left:588.960000px;}
.x45_c00044{left:598.320000px;}
.x12_c00044{left:600.480000px;}
.x2b_c00044{left:609.840000px;}
.x21_c00044{left:611.280000px;}
.x5a_c00044{left:619.920000px;}
.x8_c00044{left:622.800000px;}
.x1a_c00044{left:631.440000px;}
.x13_c00044{left:632.880000px;}
.x46_c00044{left:641.520000px;}
.x3d_c00044{left:653.040000px;}
.x36_c00044{left:663.120000px;}
.x3e_c00044{left:674.640000px;}
.x60_c00044{left:684.720000px;}
.x9_c00044{left:686.880000px;}
.x5c_c00044{left:694.080000px;}
.x39_c00044{left:696.240000px;}
.x48_c00044{left:706.320000px;}
@media print{
.v0_c00044{vertical-align:0.000000pt;}
.v1_c00044{vertical-align:2.560000pt;}
.ls0_c00044{letter-spacing:0.000000pt;}
.ws0_c00044{word-spacing:-0.878933pt;}
.ws1_c00044{word-spacing:0.000000pt;}
.fs7_c00044{font-size:30.720000pt;}
.fs6_c00044{font-size:33.280000pt;}
.fsb_c00044{font-size:38.400000pt;}
.fs4_c00044{font-size:40.960000pt;}
.fs1_c00044{font-size:43.520000pt;}
.fs2_c00044{font-size:46.080000pt;}
.fs0_c00044{font-size:48.640000pt;}
.fsa_c00044{font-size:51.200000pt;}
.fs5_c00044{font-size:53.760000pt;}
.fsc_c00044{font-size:56.320000pt;}
.fs9_c00044{font-size:58.880000pt;}
.fs3_c00044{font-size:61.440000pt;}
.fsd_c00044{font-size:64.000000pt;}
.fs8_c00044{font-size:66.560000pt;}
.y0_c00044{bottom:0.000000pt;}
.y63_c00044{bottom:34.560000pt;}
.y62_c00044{bottom:35.200000pt;}
.y64_c00044{bottom:36.480000pt;}
.y61_c00044{bottom:37.120000pt;}
.y60_c00044{bottom:37.760000pt;}
.y5f_c00044{bottom:38.400000pt;}
.y5e_c00044{bottom:71.040000pt;}
.y5d_c00044{bottom:72.960000pt;}
.y5c_c00044{bottom:74.880000pt;}
.y5b_c00044{bottom:75.520000pt;}
.y5a_c00044{bottom:76.160000pt;}
.y57_c00044{bottom:111.360000pt;}
.y59_c00044{bottom:112.000000pt;}
.y58_c00044{bottom:112.640000pt;}
.y56_c00044{bottom:113.280000pt;}
.y55_c00044{bottom:159.360000pt;}
.y54_c00044{bottom:160.640000pt;}
.y53_c00044{bottom:161.280000pt;}
.y4f_c00044{bottom:195.200000pt;}
.y50_c00044{bottom:196.480000pt;}
.y52_c00044{bottom:197.120000pt;}
.y4e_c00044{bottom:197.760000pt;}
.y51_c00044{bottom:198.400000pt;}
.y4b_c00044{bottom:233.600000pt;}
.y4d_c00044{bottom:234.880000pt;}
.y4c_c00044{bottom:235.520000pt;}
.y4a_c00044{bottom:236.160000pt;}
.y48_c00044{bottom:270.720000pt;}
.y47_c00044{bottom:271.360000pt;}
.y49_c00044{bottom:273.280000pt;}
.y46_c00044{bottom:273.920000pt;}
.y45_c00044{bottom:309.120000pt;}
.y44_c00044{bottom:311.040000pt;}
.y43_c00044{bottom:311.680000pt;}
.y41_c00044{bottom:346.880000pt;}
.y40_c00044{bottom:347.520000pt;}
.y3f_c00044{bottom:349.440000pt;}
.y42_c00044{bottom:350.080000pt;}
.y3d_c00044{bottom:384.000000pt;}
.y3a_c00044{bottom:385.280000pt;}
.y3b_c00044{bottom:386.560000pt;}
.y3c_c00044{bottom:387.200000pt;}
.y3e_c00044{bottom:387.840000pt;}
.y36_c00044{bottom:421.760000pt;}
.y38_c00044{bottom:422.400000pt;}
.y37_c00044{bottom:424.320000pt;}
.y39_c00044{bottom:424.960000pt;}
.y34_c00044{bottom:460.160000pt;}
.y32_c00044{bottom:460.800000pt;}
.y35_c00044{bottom:462.720000pt;}
.y33_c00044{bottom:463.360000pt;}
.y30_c00044{bottom:497.280000pt;}
.y31_c00044{bottom:497.920000pt;}
.y2e_c00044{bottom:498.560000pt;}
.y2d_c00044{bottom:500.480000pt;}
.y2f_c00044{bottom:501.120000pt;}
.y2b_c00044{bottom:535.040000pt;}
.y2a_c00044{bottom:535.680000pt;}
.y29_c00044{bottom:536.320000pt;}
.y2c_c00044{bottom:537.600000pt;}
.y27_c00044{bottom:538.240000pt;}
.y28_c00044{bottom:538.880000pt;}
.y26_c00044{bottom:573.440000pt;}
.y25_c00044{bottom:574.080000pt;}
.y24_c00044{bottom:576.000000pt;}
.y23_c00044{bottom:611.200000pt;}
.y21_c00044{bottom:611.840000pt;}
.y22_c00044{bottom:613.760000pt;}
.y20_c00044{bottom:614.400000pt;}
.y1d_c00044{bottom:648.960000pt;}
.y1f_c00044{bottom:649.600000pt;}
.y1e_c00044{bottom:652.160000pt;}
.y1c_c00044{bottom:689.280000pt;}
.y1b_c00044{bottom:689.920000pt;}
.y1a_c00044{bottom:690.560000pt;}
.y19_c00044{bottom:734.720000pt;}
.y18_c00044{bottom:735.360000pt;}
.y16_c00044{bottom:736.640000pt;}
.y17_c00044{bottom:737.280000pt;}
.y12_c00044{bottom:772.480000pt;}
.y15_c00044{bottom:773.120000pt;}
.y13_c00044{bottom:775.040000pt;}
.y14_c00044{bottom:775.680000pt;}
.ye_c00044{bottom:810.880000pt;}
.y11_c00044{bottom:811.520000pt;}
.yc_c00044{bottom:812.160000pt;}
.yf_c00044{bottom:812.800000pt;}
.yd_c00044{bottom:813.440000pt;}
.y10_c00044{bottom:814.080000pt;}
.y7_c00044{bottom:848.000000pt;}
.yb_c00044{bottom:849.280000pt;}
.y6_c00044{bottom:850.560000pt;}
.y8_c00044{bottom:851.200000pt;}
.y9_c00044{bottom:851.840000pt;}
.ya_c00044{bottom:852.480000pt;}
.y3_c00044{bottom:887.040000pt;}
.y1_c00044{bottom:887.680000pt;}
.y2_c00044{bottom:888.320000pt;}
.y4_c00044{bottom:888.960000pt;}
.y5_c00044{bottom:889.600000pt;}
.h9_c00044{height:27.645000pt;}
.h8_c00044{height:29.948750pt;}
.hd_c00044{height:34.556250pt;}
.h6_c00044{height:36.860000pt;}
.h3_c00044{height:39.163750pt;}
.h4_c00044{height:41.467500pt;}
.h2_c00044{height:43.771250pt;}
.hc_c00044{height:46.075000pt;}
.h7_c00044{height:48.378750pt;}
.he_c00044{height:50.682500pt;}
.hb_c00044{height:52.986250pt;}
.h5_c00044{height:55.290000pt;}
.hf_c00044{height:57.593750pt;}
.ha_c00044{height:59.897500pt;}
.h0_c00044{height:1015.680000pt;}
.h1_c00044{height:1016.000000pt;}
.w0_c00044{width:706.560000pt;}
.w1_c00044{width:706.666667pt;}
.x0_c00044{left:0.000000pt;}
.x51_c00044{left:62.080000pt;}
.x1_c00044{left:63.360000pt;}
.x30_c00044{left:64.640000pt;}
.x43_c00044{left:65.920000pt;}
.x52_c00044{left:91.520000pt;}
.xa_c00044{left:92.800000pt;}
.x37_c00044{left:94.720000pt;}
.x1b_c00044{left:101.760000pt;}
.x22_c00044{left:121.600000pt;}
.x2_c00044{left:130.560000pt;}
.x14_c00044{left:140.800000pt;}
.x31_c00044{left:149.760000pt;}
.x5d_c00044{left:157.440000pt;}
.x28_c00044{left:159.360000pt;}
.x4e_c00044{left:167.680000pt;}
.x3_c00044{left:168.960000pt;}
.x23_c00044{left:178.560000pt;}
.x29_c00044{left:188.160000pt;}
.x5e_c00044{left:196.480000pt;}
.x15_c00044{left:198.400000pt;}
.x56_c00044{left:205.440000pt;}
.xb_c00044{left:207.360000pt;}
.x3f_c00044{left:216.960000pt;}
.x53_c00044{left:225.280000pt;}
.x2c_c00044{left:227.200000pt;}
.x32_c00044{left:236.160000pt;}
.x40_c00044{left:244.480000pt;}
.x1c_c00044{left:245.760000pt;}
.x49_c00044{left:253.440000pt;}
.x4_c00044{left:255.360000pt;}
.x57_c00044{left:263.040000pt;}
.x3a_c00044{left:264.320000pt;}
.xc_c00044{left:273.920000pt;}
.x1d_c00044{left:275.200000pt;}
.x16_c00044{left:284.160000pt;}
.x5b_c00044{left:292.480000pt;}
.x24_c00044{left:293.760000pt;}
.x4d_c00044{left:302.080000pt;}
.x38_c00044{left:303.360000pt;}
.x4f_c00044{left:311.040000pt;}
.xd_c00044{left:312.960000pt;}
.x58_c00044{left:320.640000pt;}
.x25_c00044{left:322.560000pt;}
.xe_c00044{left:331.520000pt;}
.x47_c00044{left:341.120000pt;}
.x5f_c00044{left:349.440000pt;}
.x1e_c00044{left:350.720000pt;}
.xf_c00044{left:359.680000pt;}
.x2d_c00044{left:360.960000pt;}
.x44_c00044{left:368.640000pt;}
.x5_c00044{left:370.560000pt;}
.x3b_c00044{left:378.240000pt;}
.x33_c00044{left:380.160000pt;}
.x54_c00044{left:398.080000pt;}
.x1f_c00044{left:399.360000pt;}
.x34_c00044{left:407.680000pt;}
.x6_c00044{left:408.960000pt;}
.x26_c00044{left:417.920000pt;}
.x41_c00044{left:426.880000pt;}
.x2e_c00044{left:428.160000pt;}
.x59_c00044{left:435.840000pt;}
.x2a_c00044{left:437.120000pt;}
.x4a_c00044{left:445.440000pt;}
.x17_c00044{left:446.720000pt;}
.x10_c00044{left:456.320000pt;}
.x2f_c00044{left:464.640000pt;}
.x20_c00044{left:465.920000pt;}
.x7_c00044{left:468.480000pt;}
.x3c_c00044{left:469.760000pt;}
.x4b_c00044{left:474.240000pt;}
.x11_c00044{left:484.480000pt;}
.x50_c00044{left:492.800000pt;}
.x35_c00044{left:494.080000pt;}
.x55_c00044{left:503.040000pt;}
.x18_c00044{left:504.960000pt;}
.x4c_c00044{left:512.640000pt;}
.x27_c00044{left:514.560000pt;}
.x42_c00044{left:522.240000pt;}
.x19_c00044{left:523.520000pt;}
.x45_c00044{left:531.840000pt;}
.x12_c00044{left:533.760000pt;}
.x2b_c00044{left:542.080000pt;}
.x21_c00044{left:543.360000pt;}
.x5a_c00044{left:551.040000pt;}
.x8_c00044{left:553.600000pt;}
.x1a_c00044{left:561.280000pt;}
.x13_c00044{left:562.560000pt;}
.x46_c00044{left:570.240000pt;}
.x3d_c00044{left:580.480000pt;}
.x36_c00044{left:589.440000pt;}
.x3e_c00044{left:599.680000pt;}
.x60_c00044{left:608.640000pt;}
.x9_c00044{left:610.560000pt;}
.x5c_c00044{left:616.960000pt;}
.x39_c00044{left:618.880000pt;}
.x48_c00044{left:627.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_54c701b2ec05a33355b0e835.woff2')format("woff");}.ff1_c00045{font-family:ff1_c00045;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m36_c00045{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);}
.m21_c00045{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00045{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);}
.m39_c00045{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m50_c00045{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00045{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m45_c00045{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00045{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m40_c00045{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m51_c00045{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m44_c00045{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m52_c00045{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00045{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m4_c00045{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);}
.m29_c00045{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m14_c00045{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);}
.m4d_c00045{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00045{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_c00045{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00045{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m42_c00045{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00045{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m5_c00045{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00045{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);}
.m28_c00045{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);}
.m7_c00045{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);}
.m53_c00045{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m10_c00045{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);}
.m49_c00045{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m1_c00045{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);}
.m37_c00045{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);}
.m48_c00045{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m8_c00045{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m19_c00045{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);}
.m46_c00045{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m43_c00045{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);}
.m15_c00045{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00045{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);}
.m17_c00045{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m33_c00045{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m24_c00045{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.md_c00045{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00045{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);}
.m30_c00045{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.mf_c00045{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m22_c00045{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);}
.m23_c00045{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m6_c00045{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);}
.m3d_c00045{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m35_c00045{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00045{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m3_c00045{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00045{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);}
.m16_c00045{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.ma_c00045{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m34_c00045{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m26_c00045{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);}
.m12_c00045{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m27_c00045{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00045{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00045{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m31_c00045{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);}
.m47_c00045{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);}
.m4f_c00045{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.me_c00045{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m9_c00045{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.mc_c00045{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);}
.m54_c00045{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_c00045{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00045{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m2_c00045{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m38_c00045{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m41_c00045{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);}
.mb_c00045{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00045{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);}
.m3a_c00045{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00045{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m18_c00045{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m11_c00045{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00045{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);}
.m4b_c00045{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m13_c00045{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);}
.m3e_c00045{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m25_c00045{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00045{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.v1_c00045{vertical-align:-2.880000px;}
.v0_c00045{vertical-align:0.000000px;}
.v3_c00045{vertical-align:11.520000px;}
.v2_c00045{vertical-align:14.400000px;}
.ls0_c00045{letter-spacing:0.000000px;}
.sc__c00045{text-shadow:none;}
.sc0_c00045{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00045{-webkit-text-stroke:0px transparent;}
.sc0_c00045{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00045{word-spacing:-1.144800px;}
.ws4_c00045{word-spacing:0.000000px;}
.ws0_c00045{word-spacing:3.170400px;}
.ws3_c00045{word-spacing:4.717920px;}
.ws1_c00045{word-spacing:5.613360px;}
.fc0_c00045{color:transparent;}
.fs7_c00045{font-size:34.560000px;}
.fs2_c00045{font-size:37.440000px;}
.fsa_c00045{font-size:43.200000px;}
.fs8_c00045{font-size:46.080000px;}
.fs6_c00045{font-size:48.960000px;}
.fs4_c00045{font-size:51.840000px;}
.fs3_c00045{font-size:54.720000px;}
.fs1_c00045{font-size:57.600000px;}
.fs5_c00045{font-size:60.480000px;}
.fs9_c00045{font-size:63.360000px;}
.fs0_c00045{font-size:66.240000px;}
.fsb_c00045{font-size:69.120000px;}
.y0_c00045{bottom:0.000000px;}
.y5a_c00045{bottom:41.040000px;}
.y59_c00045{bottom:78.480000px;}
.y58_c00045{bottom:79.920000px;}
.y56_c00045{bottom:80.640000px;}
.y55_c00045{bottom:81.360000px;}
.y57_c00045{bottom:82.080000px;}
.y54_c00045{bottom:119.520000px;}
.y51_c00045{bottom:123.120000px;}
.y53_c00045{bottom:123.840000px;}
.y52_c00045{bottom:124.560000px;}
.y50_c00045{bottom:125.280000px;}
.y4e_c00045{bottom:164.160000px;}
.y4c_c00045{bottom:164.880000px;}
.y4a_c00045{bottom:165.600000px;}
.y4f_c00045{bottom:166.320000px;}
.y4d_c00045{bottom:167.040000px;}
.y4b_c00045{bottom:167.760000px;}
.y48_c00045{bottom:205.920000px;}
.y49_c00045{bottom:208.800000px;}
.y47_c00045{bottom:209.520000px;}
.y46_c00045{bottom:210.240000px;}
.y42_c00045{bottom:249.120000px;}
.y41_c00045{bottom:249.840000px;}
.y45_c00045{bottom:250.560000px;}
.y44_c00045{bottom:251.280000px;}
.y43_c00045{bottom:252.000000px;}
.y40_c00045{bottom:290.880000px;}
.y3e_c00045{bottom:291.600000px;}
.y3f_c00045{bottom:293.760000px;}
.y3d_c00045{bottom:294.480000px;}
.y3a_c00045{bottom:333.360000px;}
.y3c_c00045{bottom:334.080000px;}
.y3b_c00045{bottom:336.240000px;}
.y39_c00045{bottom:336.960000px;}
.y36_c00045{bottom:386.640000px;}
.y38_c00045{bottom:388.080000px;}
.y37_c00045{bottom:388.800000px;}
.y35_c00045{bottom:389.520000px;}
.y34_c00045{bottom:390.240000px;}
.y33_c00045{bottom:429.120000px;}
.y32_c00045{bottom:429.840000px;}
.y30_c00045{bottom:432.000000px;}
.y31_c00045{bottom:432.720000px;}
.y2e_c00045{bottom:471.600000px;}
.y2f_c00045{bottom:472.320000px;}
.y2d_c00045{bottom:474.480000px;}
.y2c_c00045{bottom:475.200000px;}
.y2a_c00045{bottom:526.320000px;}
.y2b_c00045{bottom:527.040000px;}
.y29_c00045{bottom:527.760000px;}
.y28_c00045{bottom:528.480000px;}
.y25_c00045{bottom:568.080000px;}
.y27_c00045{bottom:570.240000px;}
.y26_c00045{bottom:570.960000px;}
.y21_c00045{bottom:610.560000px;}
.y22_c00045{bottom:612.720000px;}
.y23_c00045{bottom:613.440000px;}
.y24_c00045{bottom:614.160000px;}
.y1f_c00045{bottom:652.320000px;}
.y20_c00045{bottom:655.200000px;}
.y1e_c00045{bottom:655.920000px;}
.y1d_c00045{bottom:695.520000px;}
.y1b_c00045{bottom:697.680000px;}
.y1c_c00045{bottom:698.400000px;}
.y19_c00045{bottom:738.000000px;}
.y18_c00045{bottom:740.160000px;}
.y1a_c00045{bottom:740.880000px;}
.y16_c00045{bottom:779.760000px;}
.y15_c00045{bottom:780.480000px;}
.y17_c00045{bottom:781.200000px;}
.y13_c00045{bottom:781.920000px;}
.y12_c00045{bottom:782.640000px;}
.y14_c00045{bottom:784.080000px;}
.ye_c00045{bottom:822.240000px;}
.yd_c00045{bottom:822.960000px;}
.yf_c00045{bottom:825.840000px;}
.y10_c00045{bottom:826.560000px;}
.y11_c00045{bottom:827.280000px;}
.yc_c00045{bottom:865.440000px;}
.yb_c00045{bottom:867.600000px;}
.ya_c00045{bottom:868.320000px;}
.y9_c00045{bottom:918.000000px;}
.y8_c00045{bottom:920.160000px;}
.y6_c00045{bottom:960.480000px;}
.y5_c00045{bottom:963.360000px;}
.y7_c00045{bottom:964.080000px;}
.y1_c00045{bottom:1003.680000px;}
.y2_c00045{bottom:1004.400000px;}
.y3_c00045{bottom:1006.560000px;}
.y4_c00045{bottom:1007.280000px;}
.h9_c00045{height:31.100625px;}
.h4_c00045{height:33.692344px;}
.he_c00045{height:38.875781px;}
.ha_c00045{height:41.467500px;}
.h8_c00045{height:44.059219px;}
.h6_c00045{height:46.650937px;}
.h5_c00045{height:49.242656px;}
.hb_c00045{height:51.546094px;}
.h3_c00045{height:51.834375px;}
.h7_c00045{height:54.426094px;}
.hf_c00045{height:55.579219px;}
.hc_c00045{height:57.017812px;}
.hd_c00045{height:58.459219px;}
.h2_c00045{height:59.609531px;}
.h10_c00045{height:62.201250px;}
.h1_c00045{height:1151.250000px;}
.h0_c00045{height:1151.280000px;}
.w1_c00045{width:807.750000px;}
.w0_c00045{width:807.840000px;}
.x0_c00045{left:0.000000px;}
.xa_c00045{left:84.240000px;}
.x1_c00045{left:86.400000px;}
.x1f_c00045{left:106.560000px;}
.x28_c00045{left:118.080000px;}
.x15_c00045{left:127.440000px;}
.xb_c00045{left:128.880000px;}
.x47_c00045{left:138.240000px;}
.x20_c00045{left:139.680000px;}
.x36_c00045{left:149.040000px;}
.x54_c00045{left:158.400000px;}
.x29_c00045{left:161.280000px;}
.xc_c00045{left:170.640000px;}
.x2e_c00045{left:174.240000px;}
.x21_c00045{left:181.440000px;}
.x2_c00045{left:182.880000px;}
.x16_c00045{left:192.240000px;}
.x26_c00045{left:193.680000px;}
.x48_c00045{left:203.040000px;}
.x34_c00045{left:213.840000px;}
.x1c_c00045{left:215.280000px;}
.x55_c00045{left:223.920000px;}
.xd_c00045{left:225.360000px;}
.x2a_c00045{left:235.440000px;}
.x37_c00045{left:238.320000px;}
.xe_c00045{left:246.960000px;}
.x39_c00045{left:257.040000px;}
.x56_c00045{left:265.680000px;}
.x2b_c00045{left:267.840000px;}
.x27_c00045{left:278.640000px;}
.x4c_c00045{left:288.000000px;}
.x3_c00045{left:289.440000px;}
.x2f_c00045{left:300.240000px;}
.x22_c00045{left:301.680000px;}
.x41_c00045{left:311.040000px;}
.x2c_c00045{left:312.480000px;}
.x4e_c00045{left:321.120000px;}
.x17_c00045{left:322.560000px;}
.x4_c00045{left:332.640000px;}
.x53_c00045{left:342.000000px;}
.x30_c00045{left:343.440000px;}
.x18_c00045{left:354.240000px;}
.xf_c00045{left:365.040000px;}
.x3a_c00045{left:386.640000px;}
.x49_c00045{left:395.280000px;}
.x5_c00045{left:397.440000px;}
.x19_c00045{left:408.240000px;}
.x3b_c00045{left:419.040000px;}
.x6_c00045{left:429.840000px;}
.x10_c00045{left:440.640000px;}
.x31_c00045{left:451.440000px;}
.x4f_c00045{left:460.800000px;}
.x32_c00045{left:462.240000px;}
.x11_c00045{left:473.040000px;}
.x4a_c00045{left:482.400000px;}
.x50_c00045{left:493.200000px;}
.x3c_c00045{left:503.280000px;}
.x12_c00045{left:505.440000px;}
.x23_c00045{left:515.520000px;}
.x4d_c00045{left:517.680000px;}
.x42_c00045{left:524.880000px;}
.x51_c00045{left:526.320000px;}
.x40_c00045{left:536.400000px;}
.x7_c00045{left:537.840000px;}
.x24_c00045{left:548.640000px;}
.x2d_c00045{left:558.720000px;}
.x43_c00045{left:568.800000px;}
.x1d_c00045{left:570.240000px;}
.x52_c00045{left:579.600000px;}
.x8_c00045{left:581.040000px;}
.x3e_c00045{left:590.400000px;}
.x44_c00045{left:600.480000px;}
.x13_c00045{left:602.640000px;}
.x1a_c00045{left:613.440000px;}
.x3f_c00045{left:622.080000px;}
.x33_c00045{left:633.600000px;}
.x45_c00045{left:642.960000px;}
.x14_c00045{left:645.840000px;}
.x3d_c00045{left:655.200000px;}
.x38_c00045{left:665.280000px;}
.x25_c00045{left:666.720000px;}
.x1e_c00045{left:678.240000px;}
.x35_c00045{left:688.320000px;}
.x4b_c00045{left:698.400000px;}
.x1b_c00045{left:700.560000px;}
.x46_c00045{left:708.480000px;}
.x9_c00045{left:710.640000px;}
@media print{
.v1_c00045{vertical-align:-2.560000pt;}
.v0_c00045{vertical-align:0.000000pt;}
.v3_c00045{vertical-align:10.240000pt;}
.v2_c00045{vertical-align:12.800000pt;}
.ls0_c00045{letter-spacing:0.000000pt;}
.ws2_c00045{word-spacing:-1.017600pt;}
.ws4_c00045{word-spacing:0.000000pt;}
.ws0_c00045{word-spacing:2.818133pt;}
.ws3_c00045{word-spacing:4.193707pt;}
.ws1_c00045{word-spacing:4.989653pt;}
.fs7_c00045{font-size:30.720000pt;}
.fs2_c00045{font-size:33.280000pt;}
.fsa_c00045{font-size:38.400000pt;}
.fs8_c00045{font-size:40.960000pt;}
.fs6_c00045{font-size:43.520000pt;}
.fs4_c00045{font-size:46.080000pt;}
.fs3_c00045{font-size:48.640000pt;}
.fs1_c00045{font-size:51.200000pt;}
.fs5_c00045{font-size:53.760000pt;}
.fs9_c00045{font-size:56.320000pt;}
.fs0_c00045{font-size:58.880000pt;}
.fsb_c00045{font-size:61.440000pt;}
.y0_c00045{bottom:0.000000pt;}
.y5a_c00045{bottom:36.480000pt;}
.y59_c00045{bottom:69.760000pt;}
.y58_c00045{bottom:71.040000pt;}
.y56_c00045{bottom:71.680000pt;}
.y55_c00045{bottom:72.320000pt;}
.y57_c00045{bottom:72.960000pt;}
.y54_c00045{bottom:106.240000pt;}
.y51_c00045{bottom:109.440000pt;}
.y53_c00045{bottom:110.080000pt;}
.y52_c00045{bottom:110.720000pt;}
.y50_c00045{bottom:111.360000pt;}
.y4e_c00045{bottom:145.920000pt;}
.y4c_c00045{bottom:146.560000pt;}
.y4a_c00045{bottom:147.200000pt;}
.y4f_c00045{bottom:147.840000pt;}
.y4d_c00045{bottom:148.480000pt;}
.y4b_c00045{bottom:149.120000pt;}
.y48_c00045{bottom:183.040000pt;}
.y49_c00045{bottom:185.600000pt;}
.y47_c00045{bottom:186.240000pt;}
.y46_c00045{bottom:186.880000pt;}
.y42_c00045{bottom:221.440000pt;}
.y41_c00045{bottom:222.080000pt;}
.y45_c00045{bottom:222.720000pt;}
.y44_c00045{bottom:223.360000pt;}
.y43_c00045{bottom:224.000000pt;}
.y40_c00045{bottom:258.560000pt;}
.y3e_c00045{bottom:259.200000pt;}
.y3f_c00045{bottom:261.120000pt;}
.y3d_c00045{bottom:261.760000pt;}
.y3a_c00045{bottom:296.320000pt;}
.y3c_c00045{bottom:296.960000pt;}
.y3b_c00045{bottom:298.880000pt;}
.y39_c00045{bottom:299.520000pt;}
.y36_c00045{bottom:343.680000pt;}
.y38_c00045{bottom:344.960000pt;}
.y37_c00045{bottom:345.600000pt;}
.y35_c00045{bottom:346.240000pt;}
.y34_c00045{bottom:346.880000pt;}
.y33_c00045{bottom:381.440000pt;}
.y32_c00045{bottom:382.080000pt;}
.y30_c00045{bottom:384.000000pt;}
.y31_c00045{bottom:384.640000pt;}
.y2e_c00045{bottom:419.200000pt;}
.y2f_c00045{bottom:419.840000pt;}
.y2d_c00045{bottom:421.760000pt;}
.y2c_c00045{bottom:422.400000pt;}
.y2a_c00045{bottom:467.840000pt;}
.y2b_c00045{bottom:468.480000pt;}
.y29_c00045{bottom:469.120000pt;}
.y28_c00045{bottom:469.760000pt;}
.y25_c00045{bottom:504.960000pt;}
.y27_c00045{bottom:506.880000pt;}
.y26_c00045{bottom:507.520000pt;}
.y21_c00045{bottom:542.720000pt;}
.y22_c00045{bottom:544.640000pt;}
.y23_c00045{bottom:545.280000pt;}
.y24_c00045{bottom:545.920000pt;}
.y1f_c00045{bottom:579.840000pt;}
.y20_c00045{bottom:582.400000pt;}
.y1e_c00045{bottom:583.040000pt;}
.y1d_c00045{bottom:618.240000pt;}
.y1b_c00045{bottom:620.160000pt;}
.y1c_c00045{bottom:620.800000pt;}
.y19_c00045{bottom:656.000000pt;}
.y18_c00045{bottom:657.920000pt;}
.y1a_c00045{bottom:658.560000pt;}
.y16_c00045{bottom:693.120000pt;}
.y15_c00045{bottom:693.760000pt;}
.y17_c00045{bottom:694.400000pt;}
.y13_c00045{bottom:695.040000pt;}
.y12_c00045{bottom:695.680000pt;}
.y14_c00045{bottom:696.960000pt;}
.ye_c00045{bottom:730.880000pt;}
.yd_c00045{bottom:731.520000pt;}
.yf_c00045{bottom:734.080000pt;}
.y10_c00045{bottom:734.720000pt;}
.y11_c00045{bottom:735.360000pt;}
.yc_c00045{bottom:769.280000pt;}
.yb_c00045{bottom:771.200000pt;}
.ya_c00045{bottom:771.840000pt;}
.y9_c00045{bottom:816.000000pt;}
.y8_c00045{bottom:817.920000pt;}
.y6_c00045{bottom:853.760000pt;}
.y5_c00045{bottom:856.320000pt;}
.y7_c00045{bottom:856.960000pt;}
.y1_c00045{bottom:892.160000pt;}
.y2_c00045{bottom:892.800000pt;}
.y3_c00045{bottom:894.720000pt;}
.y4_c00045{bottom:895.360000pt;}
.h9_c00045{height:27.645000pt;}
.h4_c00045{height:29.948750pt;}
.he_c00045{height:34.556250pt;}
.ha_c00045{height:36.860000pt;}
.h8_c00045{height:39.163750pt;}
.h6_c00045{height:41.467500pt;}
.h5_c00045{height:43.771250pt;}
.hb_c00045{height:45.818750pt;}
.h3_c00045{height:46.075000pt;}
.h7_c00045{height:48.378750pt;}
.hf_c00045{height:49.403750pt;}
.hc_c00045{height:50.682500pt;}
.hd_c00045{height:51.963750pt;}
.h2_c00045{height:52.986250pt;}
.h10_c00045{height:55.290000pt;}
.h1_c00045{height:1023.333333pt;}
.h0_c00045{height:1023.360000pt;}
.w1_c00045{width:718.000000pt;}
.w0_c00045{width:718.080000pt;}
.x0_c00045{left:0.000000pt;}
.xa_c00045{left:74.880000pt;}
.x1_c00045{left:76.800000pt;}
.x1f_c00045{left:94.720000pt;}
.x28_c00045{left:104.960000pt;}
.x15_c00045{left:113.280000pt;}
.xb_c00045{left:114.560000pt;}
.x47_c00045{left:122.880000pt;}
.x20_c00045{left:124.160000pt;}
.x36_c00045{left:132.480000pt;}
.x54_c00045{left:140.800000pt;}
.x29_c00045{left:143.360000pt;}
.xc_c00045{left:151.680000pt;}
.x2e_c00045{left:154.880000pt;}
.x21_c00045{left:161.280000pt;}
.x2_c00045{left:162.560000pt;}
.x16_c00045{left:170.880000pt;}
.x26_c00045{left:172.160000pt;}
.x48_c00045{left:180.480000pt;}
.x34_c00045{left:190.080000pt;}
.x1c_c00045{left:191.360000pt;}
.x55_c00045{left:199.040000pt;}
.xd_c00045{left:200.320000pt;}
.x2a_c00045{left:209.280000pt;}
.x37_c00045{left:211.840000pt;}
.xe_c00045{left:219.520000pt;}
.x39_c00045{left:228.480000pt;}
.x56_c00045{left:236.160000pt;}
.x2b_c00045{left:238.080000pt;}
.x27_c00045{left:247.680000pt;}
.x4c_c00045{left:256.000000pt;}
.x3_c00045{left:257.280000pt;}
.x2f_c00045{left:266.880000pt;}
.x22_c00045{left:268.160000pt;}
.x41_c00045{left:276.480000pt;}
.x2c_c00045{left:277.760000pt;}
.x4e_c00045{left:285.440000pt;}
.x17_c00045{left:286.720000pt;}
.x4_c00045{left:295.680000pt;}
.x53_c00045{left:304.000000pt;}
.x30_c00045{left:305.280000pt;}
.x18_c00045{left:314.880000pt;}
.xf_c00045{left:324.480000pt;}
.x3a_c00045{left:343.680000pt;}
.x49_c00045{left:351.360000pt;}
.x5_c00045{left:353.280000pt;}
.x19_c00045{left:362.880000pt;}
.x3b_c00045{left:372.480000pt;}
.x6_c00045{left:382.080000pt;}
.x10_c00045{left:391.680000pt;}
.x31_c00045{left:401.280000pt;}
.x4f_c00045{left:409.600000pt;}
.x32_c00045{left:410.880000pt;}
.x11_c00045{left:420.480000pt;}
.x4a_c00045{left:428.800000pt;}
.x50_c00045{left:438.400000pt;}
.x3c_c00045{left:447.360000pt;}
.x12_c00045{left:449.280000pt;}
.x23_c00045{left:458.240000pt;}
.x4d_c00045{left:460.160000pt;}
.x42_c00045{left:466.560000pt;}
.x51_c00045{left:467.840000pt;}
.x40_c00045{left:476.800000pt;}
.x7_c00045{left:478.080000pt;}
.x24_c00045{left:487.680000pt;}
.x2d_c00045{left:496.640000pt;}
.x43_c00045{left:505.600000pt;}
.x1d_c00045{left:506.880000pt;}
.x52_c00045{left:515.200000pt;}
.x8_c00045{left:516.480000pt;}
.x3e_c00045{left:524.800000pt;}
.x44_c00045{left:533.760000pt;}
.x13_c00045{left:535.680000pt;}
.x1a_c00045{left:545.280000pt;}
.x3f_c00045{left:552.960000pt;}
.x33_c00045{left:563.200000pt;}
.x45_c00045{left:571.520000pt;}
.x14_c00045{left:574.080000pt;}
.x3d_c00045{left:582.400000pt;}
.x38_c00045{left:591.360000pt;}
.x25_c00045{left:592.640000pt;}
.x1e_c00045{left:602.880000pt;}
.x35_c00045{left:611.840000pt;}
.x4b_c00045{left:620.800000pt;}
.x1b_c00045{left:622.720000pt;}
.x46_c00045{left:629.760000pt;}
.x9_c00045{left:631.680000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_08fc2f17466662d1d6fbc85a.woff2')format("woff");}.ff1_c00046{font-family:ff1_c00046;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3d_c00046{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);}
.m48_c00046{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00046{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m36_c00046{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m14_c00046{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00046{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m38_c00046{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m15_c00046{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00046{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m35_c00046{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00046{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00046{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m18_c00046{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m17_c00046{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m1_c00046{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m40_c00046{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);}
.m4e_c00046{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m7_c00046{transform:matrix(0.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);}
.m34_c00046{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.md_c00046{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.mb_c00046{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);}
.m8_c00046{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00046{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m13_c00046{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);}
.m41_c00046{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);}
.m31_c00046{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m20_c00046{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00046{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);}
.m2a_c00046{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m56_c00046{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);}
.m3b_c00046{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);}
.m43_c00046{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);}
.m3_c00046{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m9_c00046{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);}
.m1f_c00046{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m0_c00046{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);}
.m3f_c00046{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);}
.m3a_c00046{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m16_c00046{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00046{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m37_c00046{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00046{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);}
.m10_c00046{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m27_c00046{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m39_c00046{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);}
.m23_c00046{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m19_c00046{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);}
.m47_c00046{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m42_c00046{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.mc_c00046{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00046{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);}
.m22_c00046{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00046{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);}
.m51_c00046{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m33_c00046{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00046{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m6_c00046{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m49_c00046{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m46_c00046{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);}
.m5_c00046{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);}
.m53_c00046{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m12_c00046{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00046{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m26_c00046{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00046{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00046{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00046{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);}
.m32_c00046{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m24_c00046{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m50_c00046{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.ma_c00046{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00046{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m2_c00046{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);}
.m4_c00046{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);}
.m28_c00046{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m55_c00046{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m11_c00046{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m52_c00046{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);}
.m45_c00046{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m30_c00046{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);}
.m29_c00046{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m21_c00046{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.me_c00046{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);}
.m54_c00046{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m25_c00046{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.mf_c00046{transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);}
.m44_c00046{transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);}
.v0_c00046{vertical-align:0.000000px;}
.ls0_c00046{letter-spacing:0.000000px;}
.sc__c00046{text-shadow:none;}
.sc0_c00046{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00046{-webkit-text-stroke:0px transparent;}
.sc0_c00046{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00046{word-spacing:0.000000px;}
.fc0_c00046{color:transparent;}
.fs0_c00046{font-size:17.280000px;}
.fsd_c00046{font-size:31.680000px;}
.fs4_c00046{font-size:34.560000px;}
.fs2_c00046{font-size:37.440000px;}
.fsc_c00046{font-size:43.200000px;}
.fs1_c00046{font-size:46.080000px;}
.fs6_c00046{font-size:48.960000px;}
.fs5_c00046{font-size:51.840000px;}
.fsb_c00046{font-size:54.720000px;}
.fs3_c00046{font-size:57.600000px;}
.fs7_c00046{font-size:60.480000px;}
.fsa_c00046{font-size:63.360000px;}
.fs9_c00046{font-size:66.240000px;}
.fs8_c00046{font-size:69.120000px;}
.fse_c00046{font-size:72.000000px;}
.y0_c00046{bottom:0.000000px;}
.y61_c00046{bottom:36.000000px;}
.y60_c00046{bottom:36.720000px;}
.y62_c00046{bottom:38.880000px;}
.y5f_c00046{bottom:39.600000px;}
.y5e_c00046{bottom:77.760000px;}
.y5d_c00046{bottom:80.640000px;}
.y5c_c00046{bottom:81.360000px;}
.y5b_c00046{bottom:82.080000px;}
.y5a_c00046{bottom:82.800000px;}
.y56_c00046{bottom:120.960000px;}
.y57_c00046{bottom:123.120000px;}
.y59_c00046{bottom:123.840000px;}
.y58_c00046{bottom:124.560000px;}
.y55_c00046{bottom:163.440000px;}
.y54_c00046{bottom:165.600000px;}
.y53_c00046{bottom:166.320000px;}
.y52_c00046{bottom:167.040000px;}
.y51_c00046{bottom:205.200000px;}
.y4e_c00046{bottom:205.920000px;}
.y4d_c00046{bottom:206.640000px;}
.y4f_c00046{bottom:208.080000px;}
.y50_c00046{bottom:208.800000px;}
.y4c_c00046{bottom:248.400000px;}
.y4a_c00046{bottom:249.120000px;}
.y49_c00046{bottom:250.560000px;}
.y4b_c00046{bottom:251.280000px;}
.y48_c00046{bottom:252.000000px;}
.y47_c00046{bottom:291.600000px;}
.y46_c00046{bottom:293.040000px;}
.y45_c00046{bottom:293.760000px;}
.y44_c00046{bottom:345.600000px;}
.y43_c00046{bottom:346.320000px;}
.y42_c00046{bottom:347.760000px;}
.y40_c00046{bottom:385.920000px;}
.y41_c00046{bottom:386.640000px;}
.y3e_c00046{bottom:387.360000px;}
.y3f_c00046{bottom:388.800000px;}
.y3c_c00046{bottom:429.120000px;}
.y3a_c00046{bottom:431.280000px;}
.y3b_c00046{bottom:432.000000px;}
.y3d_c00046{bottom:432.720000px;}
.y38_c00046{bottom:470.880000px;}
.y37_c00046{bottom:471.600000px;}
.y39_c00046{bottom:473.760000px;}
.y36_c00046{bottom:474.480000px;}
.y32_c00046{bottom:513.360000px;}
.y33_c00046{bottom:514.080000px;}
.y34_c00046{bottom:516.240000px;}
.y35_c00046{bottom:516.960000px;}
.y2e_c00046{bottom:566.640000px;}
.y2f_c00046{bottom:567.360000px;}
.y31_c00046{bottom:568.800000px;}
.y2d_c00046{bottom:569.520000px;}
.y30_c00046{bottom:570.240000px;}
.y2b_c00046{bottom:609.120000px;}
.y29_c00046{bottom:609.840000px;}
.y2a_c00046{bottom:612.000000px;}
.y2c_c00046{bottom:612.720000px;}
.y25_c00046{bottom:651.600000px;}
.y27_c00046{bottom:652.320000px;}
.y26_c00046{bottom:654.480000px;}
.y28_c00046{bottom:655.200000px;}
.y21_c00046{bottom:694.080000px;}
.y22_c00046{bottom:694.800000px;}
.y23_c00046{bottom:696.960000px;}
.y24_c00046{bottom:697.680000px;}
.y20_c00046{bottom:736.560000px;}
.y1f_c00046{bottom:737.280000px;}
.y1d_c00046{bottom:739.440000px;}
.y1e_c00046{bottom:740.160000px;}
.y1c_c00046{bottom:779.760000px;}
.y1b_c00046{bottom:780.480000px;}
.y18_c00046{bottom:781.920000px;}
.y19_c00046{bottom:782.640000px;}
.y1a_c00046{bottom:783.360000px;}
.y13_c00046{bottom:821.520000px;}
.y15_c00046{bottom:822.240000px;}
.y14_c00046{bottom:822.960000px;}
.y16_c00046{bottom:825.120000px;}
.y17_c00046{bottom:825.840000px;}
.y12_c00046{bottom:864.720000px;}
.y10_c00046{bottom:865.440000px;}
.yf_c00046{bottom:867.600000px;}
.y11_c00046{bottom:868.320000px;}
.yd_c00046{bottom:907.200000px;}
.ye_c00046{bottom:907.920000px;}
.ya_c00046{bottom:908.640000px;}
.yc_c00046{bottom:909.360000px;}
.yb_c00046{bottom:910.080000px;}
.y7_c00046{bottom:949.680000px;}
.y5_c00046{bottom:951.120000px;}
.y8_c00046{bottom:951.840000px;}
.y6_c00046{bottom:952.560000px;}
.y9_c00046{bottom:953.280000px;}
.y3_c00046{bottom:994.320000px;}
.y2_c00046{bottom:995.040000px;}
.y4_c00046{bottom:995.760000px;}
.y1_c00046{bottom:1070.640000px;}
.h2_c00046{height:15.550313px;}
.hf_c00046{height:28.508906px;}
.h6_c00046{height:31.100625px;}
.h4_c00046{height:33.692344px;}
.he_c00046{height:38.875781px;}
.h3_c00046{height:41.467500px;}
.h8_c00046{height:44.059219px;}
.h7_c00046{height:46.650937px;}
.hd_c00046{height:49.242656px;}
.h5_c00046{height:51.834375px;}
.h9_c00046{height:54.426094px;}
.hc_c00046{height:57.017812px;}
.hb_c00046{height:59.609531px;}
.ha_c00046{height:62.201250px;}
.h10_c00046{height:64.792969px;}
.h1_c00046{height:1146.000000px;}
.h0_c00046{height:1146.240000px;}
.w0_c00046{width:799.920000px;}
.w1_c00046{width:800.250000px;}
.x0_c00046{left:0.000000px;}
.x11_c00046{left:73.440000px;}
.x9_c00046{left:74.880000px;}
.x43_c00046{left:106.560000px;}
.x48_c00046{left:108.000000px;}
.x18_c00046{left:116.640000px;}
.x45_c00046{left:118.800000px;}
.x29_c00046{left:128.880000px;}
.x12_c00046{left:149.040000px;}
.x35_c00046{left:160.560000px;}
.x4c_c00046{left:164.160000px;}
.xa_c00046{left:171.360000px;}
.x2_c00046{left:181.440000px;}
.x51_c00046{left:182.880000px;}
.x2a_c00046{left:192.240000px;}
.xb_c00046{left:203.040000px;}
.x3a_c00046{left:204.480000px;}
.x3_c00046{left:213.840000px;}
.x49_c00046{left:215.280000px;}
.x2b_c00046{left:224.640000px;}
.x2f_c00046{left:226.080000px;}
.x1e_c00046{left:235.440000px;}
.x40_c00046{left:236.880000px;}
.x23_c00046{left:246.960000px;}
.x30_c00046{left:256.320000px;}
.x4a_c00046{left:257.760000px;}
.x4d_c00046{left:259.200000px;}
.x24_c00046{left:278.640000px;}
.x19_c00046{left:280.080000px;}
.x4_c00046{left:289.440000px;}
.xc_c00046{left:299.520000px;}
.x31_c00046{left:300.960000px;}
.x1f_c00046{left:311.040000px;}
.x1a_c00046{left:322.560000px;}
.x13_c00046{left:332.640000px;}
.xd_c00046{left:343.440000px;}
.x1b_c00046{left:353.520000px;}
.x46_c00046{left:354.960000px;}
.x14_c00046{left:364.320000px;}
.x36_c00046{left:366.480000px;}
.x3b_c00046{left:375.840000px;}
.x20_c00046{left:385.920000px;}
.x4b_c00046{left:396.720000px;}
.x32_c00046{left:398.160000px;}
.x25_c00046{left:407.520000px;}
.x5_c00046{left:418.320000px;}
.x52_c00046{left:419.760000px;}
.x2c_c00046{left:421.200000px;}
.x37_c00046{left:426.960000px;}
.x41_c00046{left:429.840000px;}
.xe_c00046{left:440.640000px;}
.x6_c00046{left:450.000000px;}
.x26_c00046{left:451.440000px;}
.x15_c00046{left:462.240000px;}
.x3c_c00046{left:472.320000px;}
.x27_c00046{left:482.400000px;}
.x44_c00046{left:483.840000px;}
.x7_c00046{left:493.920000px;}
.x1c_c00046{left:505.440000px;}
.x16_c00046{left:527.040000px;}
.x21_c00046{left:536.400000px;}
.x2d_c00046{left:548.640000px;}
.x38_c00046{left:557.280000px;}
.xf_c00046{left:559.440000px;}
.x50_c00046{left:578.880000px;}
.x33_c00046{left:580.320000px;}
.x17_c00046{left:583.200000px;}
.x10_c00046{left:591.840000px;}
.x3d_c00046{left:601.920000px;}
.x22_c00046{left:612.720000px;}
.x28_c00046{left:624.240000px;}
.x3e_c00046{left:632.880000px;}
.x8_c00046{left:634.320000px;}
.x42_c00046{left:645.120000px;}
.x1d_c00046{left:655.920000px;}
.x34_c00046{left:666.000000px;}
.x1_c00046{left:668.160000px;}
.x47_c00046{left:676.080000px;}
.x4e_c00046{left:677.520000px;}
.x3f_c00046{left:686.880000px;}
.x2e_c00046{left:688.320000px;}
.x39_c00046{left:699.120000px;}
.x4f_c00046{left:709.920000px;}
@media print{
.v0_c00046{vertical-align:0.000000pt;}
.ls0_c00046{letter-spacing:0.000000pt;}
.ws0_c00046{word-spacing:0.000000pt;}
.fs0_c00046{font-size:15.360000pt;}
.fsd_c00046{font-size:28.160000pt;}
.fs4_c00046{font-size:30.720000pt;}
.fs2_c00046{font-size:33.280000pt;}
.fsc_c00046{font-size:38.400000pt;}
.fs1_c00046{font-size:40.960000pt;}
.fs6_c00046{font-size:43.520000pt;}
.fs5_c00046{font-size:46.080000pt;}
.fsb_c00046{font-size:48.640000pt;}
.fs3_c00046{font-size:51.200000pt;}
.fs7_c00046{font-size:53.760000pt;}
.fsa_c00046{font-size:56.320000pt;}
.fs9_c00046{font-size:58.880000pt;}
.fs8_c00046{font-size:61.440000pt;}
.fse_c00046{font-size:64.000000pt;}
.y0_c00046{bottom:0.000000pt;}
.y61_c00046{bottom:32.000000pt;}
.y60_c00046{bottom:32.640000pt;}
.y62_c00046{bottom:34.560000pt;}
.y5f_c00046{bottom:35.200000pt;}
.y5e_c00046{bottom:69.120000pt;}
.y5d_c00046{bottom:71.680000pt;}
.y5c_c00046{bottom:72.320000pt;}
.y5b_c00046{bottom:72.960000pt;}
.y5a_c00046{bottom:73.600000pt;}
.y56_c00046{bottom:107.520000pt;}
.y57_c00046{bottom:109.440000pt;}
.y59_c00046{bottom:110.080000pt;}
.y58_c00046{bottom:110.720000pt;}
.y55_c00046{bottom:145.280000pt;}
.y54_c00046{bottom:147.200000pt;}
.y53_c00046{bottom:147.840000pt;}
.y52_c00046{bottom:148.480000pt;}
.y51_c00046{bottom:182.400000pt;}
.y4e_c00046{bottom:183.040000pt;}
.y4d_c00046{bottom:183.680000pt;}
.y4f_c00046{bottom:184.960000pt;}
.y50_c00046{bottom:185.600000pt;}
.y4c_c00046{bottom:220.800000pt;}
.y4a_c00046{bottom:221.440000pt;}
.y49_c00046{bottom:222.720000pt;}
.y4b_c00046{bottom:223.360000pt;}
.y48_c00046{bottom:224.000000pt;}
.y47_c00046{bottom:259.200000pt;}
.y46_c00046{bottom:260.480000pt;}
.y45_c00046{bottom:261.120000pt;}
.y44_c00046{bottom:307.200000pt;}
.y43_c00046{bottom:307.840000pt;}
.y42_c00046{bottom:309.120000pt;}
.y40_c00046{bottom:343.040000pt;}
.y41_c00046{bottom:343.680000pt;}
.y3e_c00046{bottom:344.320000pt;}
.y3f_c00046{bottom:345.600000pt;}
.y3c_c00046{bottom:381.440000pt;}
.y3a_c00046{bottom:383.360000pt;}
.y3b_c00046{bottom:384.000000pt;}
.y3d_c00046{bottom:384.640000pt;}
.y38_c00046{bottom:418.560000pt;}
.y37_c00046{bottom:419.200000pt;}
.y39_c00046{bottom:421.120000pt;}
.y36_c00046{bottom:421.760000pt;}
.y32_c00046{bottom:456.320000pt;}
.y33_c00046{bottom:456.960000pt;}
.y34_c00046{bottom:458.880000pt;}
.y35_c00046{bottom:459.520000pt;}
.y2e_c00046{bottom:503.680000pt;}
.y2f_c00046{bottom:504.320000pt;}
.y31_c00046{bottom:505.600000pt;}
.y2d_c00046{bottom:506.240000pt;}
.y30_c00046{bottom:506.880000pt;}
.y2b_c00046{bottom:541.440000pt;}
.y29_c00046{bottom:542.080000pt;}
.y2a_c00046{bottom:544.000000pt;}
.y2c_c00046{bottom:544.640000pt;}
.y25_c00046{bottom:579.200000pt;}
.y27_c00046{bottom:579.840000pt;}
.y26_c00046{bottom:581.760000pt;}
.y28_c00046{bottom:582.400000pt;}
.y21_c00046{bottom:616.960000pt;}
.y22_c00046{bottom:617.600000pt;}
.y23_c00046{bottom:619.520000pt;}
.y24_c00046{bottom:620.160000pt;}
.y20_c00046{bottom:654.720000pt;}
.y1f_c00046{bottom:655.360000pt;}
.y1d_c00046{bottom:657.280000pt;}
.y1e_c00046{bottom:657.920000pt;}
.y1c_c00046{bottom:693.120000pt;}
.y1b_c00046{bottom:693.760000pt;}
.y18_c00046{bottom:695.040000pt;}
.y19_c00046{bottom:695.680000pt;}
.y1a_c00046{bottom:696.320000pt;}
.y13_c00046{bottom:730.240000pt;}
.y15_c00046{bottom:730.880000pt;}
.y14_c00046{bottom:731.520000pt;}
.y16_c00046{bottom:733.440000pt;}
.y17_c00046{bottom:734.080000pt;}
.y12_c00046{bottom:768.640000pt;}
.y10_c00046{bottom:769.280000pt;}
.yf_c00046{bottom:771.200000pt;}
.y11_c00046{bottom:771.840000pt;}
.yd_c00046{bottom:806.400000pt;}
.ye_c00046{bottom:807.040000pt;}
.ya_c00046{bottom:807.680000pt;}
.yc_c00046{bottom:808.320000pt;}
.yb_c00046{bottom:808.960000pt;}
.y7_c00046{bottom:844.160000pt;}
.y5_c00046{bottom:845.440000pt;}
.y8_c00046{bottom:846.080000pt;}
.y6_c00046{bottom:846.720000pt;}
.y9_c00046{bottom:847.360000pt;}
.y3_c00046{bottom:883.840000pt;}
.y2_c00046{bottom:884.480000pt;}
.y4_c00046{bottom:885.120000pt;}
.y1_c00046{bottom:951.680000pt;}
.h2_c00046{height:13.822500pt;}
.hf_c00046{height:25.341250pt;}
.h6_c00046{height:27.645000pt;}
.h4_c00046{height:29.948750pt;}
.he_c00046{height:34.556250pt;}
.h3_c00046{height:36.860000pt;}
.h8_c00046{height:39.163750pt;}
.h7_c00046{height:41.467500pt;}
.hd_c00046{height:43.771250pt;}
.h5_c00046{height:46.075000pt;}
.h9_c00046{height:48.378750pt;}
.hc_c00046{height:50.682500pt;}
.hb_c00046{height:52.986250pt;}
.ha_c00046{height:55.290000pt;}
.h10_c00046{height:57.593750pt;}
.h1_c00046{height:1018.666667pt;}
.h0_c00046{height:1018.880000pt;}
.w0_c00046{width:711.040000pt;}
.w1_c00046{width:711.333333pt;}
.x0_c00046{left:0.000000pt;}
.x11_c00046{left:65.280000pt;}
.x9_c00046{left:66.560000pt;}
.x43_c00046{left:94.720000pt;}
.x48_c00046{left:96.000000pt;}
.x18_c00046{left:103.680000pt;}
.x45_c00046{left:105.600000pt;}
.x29_c00046{left:114.560000pt;}
.x12_c00046{left:132.480000pt;}
.x35_c00046{left:142.720000pt;}
.x4c_c00046{left:145.920000pt;}
.xa_c00046{left:152.320000pt;}
.x2_c00046{left:161.280000pt;}
.x51_c00046{left:162.560000pt;}
.x2a_c00046{left:170.880000pt;}
.xb_c00046{left:180.480000pt;}
.x3a_c00046{left:181.760000pt;}
.x3_c00046{left:190.080000pt;}
.x49_c00046{left:191.360000pt;}
.x2b_c00046{left:199.680000pt;}
.x2f_c00046{left:200.960000pt;}
.x1e_c00046{left:209.280000pt;}
.x40_c00046{left:210.560000pt;}
.x23_c00046{left:219.520000pt;}
.x30_c00046{left:227.840000pt;}
.x4a_c00046{left:229.120000pt;}
.x4d_c00046{left:230.400000pt;}
.x24_c00046{left:247.680000pt;}
.x19_c00046{left:248.960000pt;}
.x4_c00046{left:257.280000pt;}
.xc_c00046{left:266.240000pt;}
.x31_c00046{left:267.520000pt;}
.x1f_c00046{left:276.480000pt;}
.x1a_c00046{left:286.720000pt;}
.x13_c00046{left:295.680000pt;}
.xd_c00046{left:305.280000pt;}
.x1b_c00046{left:314.240000pt;}
.x46_c00046{left:315.520000pt;}
.x14_c00046{left:323.840000pt;}
.x36_c00046{left:325.760000pt;}
.x3b_c00046{left:334.080000pt;}
.x20_c00046{left:343.040000pt;}
.x4b_c00046{left:352.640000pt;}
.x32_c00046{left:353.920000pt;}
.x25_c00046{left:362.240000pt;}
.x5_c00046{left:371.840000pt;}
.x52_c00046{left:373.120000pt;}
.x2c_c00046{left:374.400000pt;}
.x37_c00046{left:379.520000pt;}
.x41_c00046{left:382.080000pt;}
.xe_c00046{left:391.680000pt;}
.x6_c00046{left:400.000000pt;}
.x26_c00046{left:401.280000pt;}
.x15_c00046{left:410.880000pt;}
.x3c_c00046{left:419.840000pt;}
.x27_c00046{left:428.800000pt;}
.x44_c00046{left:430.080000pt;}
.x7_c00046{left:439.040000pt;}
.x1c_c00046{left:449.280000pt;}
.x16_c00046{left:468.480000pt;}
.x21_c00046{left:476.800000pt;}
.x2d_c00046{left:487.680000pt;}
.x38_c00046{left:495.360000pt;}
.xf_c00046{left:497.280000pt;}
.x50_c00046{left:514.560000pt;}
.x33_c00046{left:515.840000pt;}
.x17_c00046{left:518.400000pt;}
.x10_c00046{left:526.080000pt;}
.x3d_c00046{left:535.040000pt;}
.x22_c00046{left:544.640000pt;}
.x28_c00046{left:554.880000pt;}
.x3e_c00046{left:562.560000pt;}
.x8_c00046{left:563.840000pt;}
.x42_c00046{left:573.440000pt;}
.x1d_c00046{left:583.040000pt;}
.x34_c00046{left:592.000000pt;}
.x1_c00046{left:593.920000pt;}
.x47_c00046{left:600.960000pt;}
.x4e_c00046{left:602.240000pt;}
.x3f_c00046{left:610.560000pt;}
.x2e_c00046{left:611.840000pt;}
.x39_c00046{left:621.440000pt;}
.x4f_c00046{left:631.040000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_855bbb2bd4bb8b29342c0c2f.woff2')format("woff");}.ff1_c00047{font-family:ff1_c00047;line-height:1.109863;font-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_c00047{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m29_c00047{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00047{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00047{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00047{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m49_c00047{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m0_c00047{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m32_c00047{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m18_c00047{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m13_c00047{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m11_c00047{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.mc_c00047{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);}
.m21_c00047{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m28_c00047{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m23_c00047{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m4_c00047{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_c00047{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m26_c00047{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m59_c00047{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);}
.m2b_c00047{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m19_c00047{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00047{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00047{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);}
.m37_c00047{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m8_c00047{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);}
.m58_c00047{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.mb_c00047{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00047{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m5_c00047{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);}
.m56_c00047{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);}
.m39_c00047{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);}
.mf_c00047{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m34_c00047{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m15_c00047{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);}
.m54_c00047{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m12_c00047{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);}
.m36_c00047{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00047{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);}
.m3_c00047{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);}
.m46_c00047{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m17_c00047{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00047{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00047{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00047{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);}
.m4d_c00047{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m2_c00047{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00047{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);}
.m41_c00047{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00047{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);}
.m6_c00047{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00047{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m10_c00047{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m53_c00047{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00047{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);}
.ma_c00047{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m33_c00047{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00047{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m30_c00047{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);}
.m20_c00047{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m24_c00047{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00047{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00047{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m27_c00047{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_c00047{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m43_c00047{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m31_c00047{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);}
.m14_c00047{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m48_c00047{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00047{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);}
.m44_c00047{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m22_c00047{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m7_c00047{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m57_c00047{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);}
.m47_c00047{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);}
.m42_c00047{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m1_c00047{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00047{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.me_c00047{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m50_c00047{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m45_c00047{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);}
.m16_c00047{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);}
.m2f_c00047{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m51_c00047{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00047{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);}
.m35_c00047{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m40_c00047{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m55_c00047{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);}
.m38_c00047{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00047{transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00047{transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);}
.m52_c00047{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.v1_c00047{vertical-align:-14.400000px;}
.v0_c00047{vertical-align:0.000000px;}
.ls0_c00047{letter-spacing:0.000000px;}
.sc__c00047{text-shadow:none;}
.sc0_c00047{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00047{-webkit-text-stroke:0px transparent;}
.sc0_c00047{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00047{word-spacing:-4.021903px;}
.ws2_c00047{word-spacing:0.000000px;}
.ws0_c00047{word-spacing:7.642800px;}
.fc0_c00047{color:transparent;}
.fs8_c00047{font-size:34.560000px;}
.fsa_c00047{font-size:37.440000px;}
.fsd_c00047{font-size:40.320000px;}
.fs4_c00047{font-size:43.200000px;}
.fs2_c00047{font-size:46.080000px;}
.fs1_c00047{font-size:48.960000px;}
.fs5_c00047{font-size:51.840000px;}
.fsb_c00047{font-size:54.720000px;}
.fsc_c00047{font-size:57.600000px;}
.fs3_c00047{font-size:60.480000px;}
.fs6_c00047{font-size:63.360000px;}
.fs9_c00047{font-size:66.240000px;}
.fs7_c00047{font-size:69.120000px;}
.fs0_c00047{font-size:72.000000px;}
.y0_c00047{bottom:0.000000px;}
.y63_c00047{bottom:36.720000px;}
.y60_c00047{bottom:38.160000px;}
.y62_c00047{bottom:39.600000px;}
.y61_c00047{bottom:40.320000px;}
.y5f_c00047{bottom:41.040000px;}
.y5c_c00047{bottom:79.200000px;}
.y5d_c00047{bottom:79.920000px;}
.y5e_c00047{bottom:81.360000px;}
.y5a_c00047{bottom:82.080000px;}
.y5b_c00047{bottom:82.800000px;}
.y59_c00047{bottom:83.520000px;}
.y58_c00047{bottom:121.680000px;}
.y57_c00047{bottom:123.840000px;}
.y55_c00047{bottom:124.560000px;}
.y56_c00047{bottom:125.280000px;}
.y52_c00047{bottom:174.240000px;}
.y53_c00047{bottom:174.960000px;}
.y54_c00047{bottom:177.120000px;}
.y51_c00047{bottom:177.840000px;}
.y50_c00047{bottom:178.560000px;}
.y4d_c00047{bottom:216.720000px;}
.y4e_c00047{bottom:217.440000px;}
.y4c_c00047{bottom:218.160000px;}
.y4f_c00047{bottom:219.600000px;}
.y4b_c00047{bottom:220.320000px;}
.y4a_c00047{bottom:221.040000px;}
.y49_c00047{bottom:259.200000px;}
.y48_c00047{bottom:259.920000px;}
.y46_c00047{bottom:260.640000px;}
.y45_c00047{bottom:262.800000px;}
.y47_c00047{bottom:263.520000px;}
.y44_c00047{bottom:264.240000px;}
.y43_c00047{bottom:301.680000px;}
.y42_c00047{bottom:305.280000px;}
.y41_c00047{bottom:344.160000px;}
.y3f_c00047{bottom:344.880000px;}
.y40_c00047{bottom:345.600000px;}
.y3e_c00047{bottom:347.760000px;}
.y3c_c00047{bottom:387.360000px;}
.y3d_c00047{bottom:389.520000px;}
.y3b_c00047{bottom:390.240000px;}
.y3a_c00047{bottom:390.960000px;}
.y39_c00047{bottom:429.840000px;}
.y38_c00047{bottom:432.720000px;}
.y37_c00047{bottom:433.440000px;}
.y36_c00047{bottom:472.320000px;}
.y35_c00047{bottom:475.200000px;}
.y34_c00047{bottom:475.920000px;}
.y33_c00047{bottom:528.480000px;}
.y30_c00047{bottom:567.360000px;}
.y32_c00047{bottom:568.080000px;}
.y2f_c00047{bottom:568.800000px;}
.y2e_c00047{bottom:570.240000px;}
.y31_c00047{bottom:570.960000px;}
.y2a_c00047{bottom:610.560000px;}
.y2c_c00047{bottom:611.280000px;}
.y2d_c00047{bottom:613.440000px;}
.y2b_c00047{bottom:614.160000px;}
.y29_c00047{bottom:653.040000px;}
.y28_c00047{bottom:653.760000px;}
.y26_c00047{bottom:655.200000px;}
.y27_c00047{bottom:655.920000px;}
.y25_c00047{bottom:695.520000px;}
.y23_c00047{bottom:696.240000px;}
.y24_c00047{bottom:697.680000px;}
.y22_c00047{bottom:698.400000px;}
.y1f_c00047{bottom:738.000000px;}
.y1e_c00047{bottom:738.720000px;}
.y20_c00047{bottom:739.440000px;}
.y21_c00047{bottom:740.160000px;}
.y1d_c00047{bottom:740.880000px;}
.y1c_c00047{bottom:780.480000px;}
.y1a_c00047{bottom:781.200000px;}
.y19_c00047{bottom:782.640000px;}
.y1b_c00047{bottom:783.360000px;}
.y18_c00047{bottom:822.240000px;}
.y17_c00047{bottom:822.960000px;}
.y16_c00047{bottom:825.840000px;}
.y13_c00047{bottom:864.720000px;}
.y14_c00047{bottom:865.440000px;}
.y15_c00047{bottom:866.160000px;}
.y11_c00047{bottom:868.320000px;}
.y12_c00047{bottom:869.040000px;}
.ye_c00047{bottom:908.640000px;}
.y10_c00047{bottom:910.800000px;}
.yf_c00047{bottom:911.520000px;}
.yb_c00047{bottom:950.400000px;}
.y9_c00047{bottom:951.120000px;}
.ya_c00047{bottom:951.840000px;}
.y7_c00047{bottom:952.560000px;}
.yd_c00047{bottom:953.280000px;}
.y8_c00047{bottom:954.000000px;}
.yc_c00047{bottom:954.720000px;}
.y3_c00047{bottom:993.600000px;}
.y4_c00047{bottom:994.320000px;}
.y6_c00047{bottom:995.760000px;}
.y2_c00047{bottom:996.480000px;}
.y5_c00047{bottom:997.200000px;}
.y1_c00047{bottom:1066.320000px;}
.ha_c00047{height:31.100625px;}
.hc_c00047{height:33.692344px;}
.hf_c00047{height:36.284062px;}
.h6_c00047{height:38.875781px;}
.h4_c00047{height:41.467500px;}
.h3_c00047{height:44.059219px;}
.h7_c00047{height:46.650937px;}
.hd_c00047{height:49.242656px;}
.he_c00047{height:51.834375px;}
.h5_c00047{height:54.426094px;}
.h8_c00047{height:57.017812px;}
.hb_c00047{height:59.609531px;}
.h9_c00047{height:62.201250px;}
.h2_c00047{height:64.792969px;}
.h1_c00047{height:1146.750000px;}
.h0_c00047{height:1146.960000px;}
.w1_c00047{width:801.750000px;}
.w0_c00047{width:802.080000px;}
.x0_c00047{left:0.000000px;}
.x2_c00047{left:77.760000px;}
.x4c_c00047{left:108.000000px;}
.x3_c00047{left:110.160000px;}
.x39_c00047{left:119.520000px;}
.x1e_c00047{left:120.960000px;}
.x14_c00047{left:131.760000px;}
.x4_c00047{left:142.560000px;}
.x22_c00047{left:153.360000px;}
.x4e_c00047{left:162.720000px;}
.x11_c00047{left:174.960000px;}
.xc_c00047{left:185.760000px;}
.x30_c00047{left:195.120000px;}
.x15_c00047{left:196.560000px;}
.x3e_c00047{left:205.200000px;}
.x2c_c00047{left:207.360000px;}
.x35_c00047{left:216.000000px;}
.x1b_c00047{left:218.160000px;}
.x16_c00047{left:227.520000px;}
.x3f_c00047{left:237.600000px;}
.x5_c00047{left:239.040000px;}
.x23_c00047{left:249.120000px;}
.x41_c00047{left:250.560000px;}
.x47_c00047{left:259.200000px;}
.x28_c00047{left:260.640000px;}
.x2d_c00047{left:271.440000px;}
.x12_c00047{left:282.240000px;}
.x29_c00047{left:291.600000px;}
.x36_c00047{left:293.040000px;}
.x40_c00047{left:302.400000px;}
.x4a_c00047{left:304.560000px;}
.x13_c00047{left:313.920000px;}
.x6_c00047{left:324.720000px;}
.x1f_c00047{left:336.240000px;}
.x17_c00047{left:347.040000px;}
.xd_c00047{left:349.200000px;}
.x2e_c00047{left:356.400000px;}
.x38_c00047{left:367.200000px;}
.x31_c00047{left:378.720000px;}
.x3b_c00047{left:388.800000px;}
.x26_c00047{left:400.320000px;}
.x7_c00047{left:410.400000px;}
.x24_c00047{left:422.640000px;}
.x48_c00047{left:432.000000px;}
.x18_c00047{left:443.520000px;}
.x25_c00047{left:453.600000px;}
.x8_c00047{left:455.040000px;}
.x4b_c00047{left:462.960000px;}
.x37_c00047{left:464.400000px;}
.x3c_c00047{left:475.920000px;}
.x32_c00047{left:486.000000px;}
.x9_c00047{left:487.440000px;}
.x4f_c00047{left:494.640000px;}
.x42_c00047{left:496.080000px;}
.x43_c00047{left:497.520000px;}
.x2f_c00047{left:508.320000px;}
.x27_c00047{left:518.400000px;}
.x49_c00047{left:527.760000px;}
.x33_c00047{left:529.200000px;}
.x44_c00047{left:540.000000px;}
.x20_c00047{left:550.800000px;}
.x3a_c00047{left:560.880000px;}
.x3d_c00047{left:562.320000px;}
.xe_c00047{left:572.400000px;}
.xa_c00047{left:583.200000px;}
.x4d_c00047{left:592.560000px;}
.x1c_c00047{left:594.000000px;}
.xf_c00047{left:604.080000px;}
.x19_c00047{left:605.520000px;}
.x45_c00047{left:614.880000px;}
.xb_c00047{left:616.320000px;}
.x21_c00047{left:626.400000px;}
.x50_c00047{left:635.760000px;}
.x1d_c00047{left:637.920000px;}
.x34_c00047{left:648.000000px;}
.x46_c00047{left:658.800000px;}
.x2a_c00047{left:669.600000px;}
.x1a_c00047{left:680.400000px;}
.x10_c00047{left:691.200000px;}
.x1_c00047{left:697.680000px;}
.x2b_c00047{left:702.000000px;}
@media print{
.v1_c00047{vertical-align:-12.800000pt;}
.v0_c00047{vertical-align:0.000000pt;}
.ls0_c00047{letter-spacing:0.000000pt;}
.ws1_c00047{word-spacing:-3.575025pt;}
.ws2_c00047{word-spacing:0.000000pt;}
.ws0_c00047{word-spacing:6.793600pt;}
.fs8_c00047{font-size:30.720000pt;}
.fsa_c00047{font-size:33.280000pt;}
.fsd_c00047{font-size:35.840000pt;}
.fs4_c00047{font-size:38.400000pt;}
.fs2_c00047{font-size:40.960000pt;}
.fs1_c00047{font-size:43.520000pt;}
.fs5_c00047{font-size:46.080000pt;}
.fsb_c00047{font-size:48.640000pt;}
.fsc_c00047{font-size:51.200000pt;}
.fs3_c00047{font-size:53.760000pt;}
.fs6_c00047{font-size:56.320000pt;}
.fs9_c00047{font-size:58.880000pt;}
.fs7_c00047{font-size:61.440000pt;}
.fs0_c00047{font-size:64.000000pt;}
.y0_c00047{bottom:0.000000pt;}
.y63_c00047{bottom:32.640000pt;}
.y60_c00047{bottom:33.920000pt;}
.y62_c00047{bottom:35.200000pt;}
.y61_c00047{bottom:35.840000pt;}
.y5f_c00047{bottom:36.480000pt;}
.y5c_c00047{bottom:70.400000pt;}
.y5d_c00047{bottom:71.040000pt;}
.y5e_c00047{bottom:72.320000pt;}
.y5a_c00047{bottom:72.960000pt;}
.y5b_c00047{bottom:73.600000pt;}
.y59_c00047{bottom:74.240000pt;}
.y58_c00047{bottom:108.160000pt;}
.y57_c00047{bottom:110.080000pt;}
.y55_c00047{bottom:110.720000pt;}
.y56_c00047{bottom:111.360000pt;}
.y52_c00047{bottom:154.880000pt;}
.y53_c00047{bottom:155.520000pt;}
.y54_c00047{bottom:157.440000pt;}
.y51_c00047{bottom:158.080000pt;}
.y50_c00047{bottom:158.720000pt;}
.y4d_c00047{bottom:192.640000pt;}
.y4e_c00047{bottom:193.280000pt;}
.y4c_c00047{bottom:193.920000pt;}
.y4f_c00047{bottom:195.200000pt;}
.y4b_c00047{bottom:195.840000pt;}
.y4a_c00047{bottom:196.480000pt;}
.y49_c00047{bottom:230.400000pt;}
.y48_c00047{bottom:231.040000pt;}
.y46_c00047{bottom:231.680000pt;}
.y45_c00047{bottom:233.600000pt;}
.y47_c00047{bottom:234.240000pt;}
.y44_c00047{bottom:234.880000pt;}
.y43_c00047{bottom:268.160000pt;}
.y42_c00047{bottom:271.360000pt;}
.y41_c00047{bottom:305.920000pt;}
.y3f_c00047{bottom:306.560000pt;}
.y40_c00047{bottom:307.200000pt;}
.y3e_c00047{bottom:309.120000pt;}
.y3c_c00047{bottom:344.320000pt;}
.y3d_c00047{bottom:346.240000pt;}
.y3b_c00047{bottom:346.880000pt;}
.y3a_c00047{bottom:347.520000pt;}
.y39_c00047{bottom:382.080000pt;}
.y38_c00047{bottom:384.640000pt;}
.y37_c00047{bottom:385.280000pt;}
.y36_c00047{bottom:419.840000pt;}
.y35_c00047{bottom:422.400000pt;}
.y34_c00047{bottom:423.040000pt;}
.y33_c00047{bottom:469.760000pt;}
.y30_c00047{bottom:504.320000pt;}
.y32_c00047{bottom:504.960000pt;}
.y2f_c00047{bottom:505.600000pt;}
.y2e_c00047{bottom:506.880000pt;}
.y31_c00047{bottom:507.520000pt;}
.y2a_c00047{bottom:542.720000pt;}
.y2c_c00047{bottom:543.360000pt;}
.y2d_c00047{bottom:545.280000pt;}
.y2b_c00047{bottom:545.920000pt;}
.y29_c00047{bottom:580.480000pt;}
.y28_c00047{bottom:581.120000pt;}
.y26_c00047{bottom:582.400000pt;}
.y27_c00047{bottom:583.040000pt;}
.y25_c00047{bottom:618.240000pt;}
.y23_c00047{bottom:618.880000pt;}
.y24_c00047{bottom:620.160000pt;}
.y22_c00047{bottom:620.800000pt;}
.y1f_c00047{bottom:656.000000pt;}
.y1e_c00047{bottom:656.640000pt;}
.y20_c00047{bottom:657.280000pt;}
.y21_c00047{bottom:657.920000pt;}
.y1d_c00047{bottom:658.560000pt;}
.y1c_c00047{bottom:693.760000pt;}
.y1a_c00047{bottom:694.400000pt;}
.y19_c00047{bottom:695.680000pt;}
.y1b_c00047{bottom:696.320000pt;}
.y18_c00047{bottom:730.880000pt;}
.y17_c00047{bottom:731.520000pt;}
.y16_c00047{bottom:734.080000pt;}
.y13_c00047{bottom:768.640000pt;}
.y14_c00047{bottom:769.280000pt;}
.y15_c00047{bottom:769.920000pt;}
.y11_c00047{bottom:771.840000pt;}
.y12_c00047{bottom:772.480000pt;}
.ye_c00047{bottom:807.680000pt;}
.y10_c00047{bottom:809.600000pt;}
.yf_c00047{bottom:810.240000pt;}
.yb_c00047{bottom:844.800000pt;}
.y9_c00047{bottom:845.440000pt;}
.ya_c00047{bottom:846.080000pt;}
.y7_c00047{bottom:846.720000pt;}
.yd_c00047{bottom:847.360000pt;}
.y8_c00047{bottom:848.000000pt;}
.yc_c00047{bottom:848.640000pt;}
.y3_c00047{bottom:883.200000pt;}
.y4_c00047{bottom:883.840000pt;}
.y6_c00047{bottom:885.120000pt;}
.y2_c00047{bottom:885.760000pt;}
.y5_c00047{bottom:886.400000pt;}
.y1_c00047{bottom:947.840000pt;}
.ha_c00047{height:27.645000pt;}
.hc_c00047{height:29.948750pt;}
.hf_c00047{height:32.252500pt;}
.h6_c00047{height:34.556250pt;}
.h4_c00047{height:36.860000pt;}
.h3_c00047{height:39.163750pt;}
.h7_c00047{height:41.467500pt;}
.hd_c00047{height:43.771250pt;}
.he_c00047{height:46.075000pt;}
.h5_c00047{height:48.378750pt;}
.h8_c00047{height:50.682500pt;}
.hb_c00047{height:52.986250pt;}
.h9_c00047{height:55.290000pt;}
.h2_c00047{height:57.593750pt;}
.h1_c00047{height:1019.333333pt;}
.h0_c00047{height:1019.520000pt;}
.w1_c00047{width:712.666667pt;}
.w0_c00047{width:712.960000pt;}
.x0_c00047{left:0.000000pt;}
.x2_c00047{left:69.120000pt;}
.x4c_c00047{left:96.000000pt;}
.x3_c00047{left:97.920000pt;}
.x39_c00047{left:106.240000pt;}
.x1e_c00047{left:107.520000pt;}
.x14_c00047{left:117.120000pt;}
.x4_c00047{left:126.720000pt;}
.x22_c00047{left:136.320000pt;}
.x4e_c00047{left:144.640000pt;}
.x11_c00047{left:155.520000pt;}
.xc_c00047{left:165.120000pt;}
.x30_c00047{left:173.440000pt;}
.x15_c00047{left:174.720000pt;}
.x3e_c00047{left:182.400000pt;}
.x2c_c00047{left:184.320000pt;}
.x35_c00047{left:192.000000pt;}
.x1b_c00047{left:193.920000pt;}
.x16_c00047{left:202.240000pt;}
.x3f_c00047{left:211.200000pt;}
.x5_c00047{left:212.480000pt;}
.x23_c00047{left:221.440000pt;}
.x41_c00047{left:222.720000pt;}
.x47_c00047{left:230.400000pt;}
.x28_c00047{left:231.680000pt;}
.x2d_c00047{left:241.280000pt;}
.x12_c00047{left:250.880000pt;}
.x29_c00047{left:259.200000pt;}
.x36_c00047{left:260.480000pt;}
.x40_c00047{left:268.800000pt;}
.x4a_c00047{left:270.720000pt;}
.x13_c00047{left:279.040000pt;}
.x6_c00047{left:288.640000pt;}
.x1f_c00047{left:298.880000pt;}
.x17_c00047{left:308.480000pt;}
.xd_c00047{left:310.400000pt;}
.x2e_c00047{left:316.800000pt;}
.x38_c00047{left:326.400000pt;}
.x31_c00047{left:336.640000pt;}
.x3b_c00047{left:345.600000pt;}
.x26_c00047{left:355.840000pt;}
.x7_c00047{left:364.800000pt;}
.x24_c00047{left:375.680000pt;}
.x48_c00047{left:384.000000pt;}
.x18_c00047{left:394.240000pt;}
.x25_c00047{left:403.200000pt;}
.x8_c00047{left:404.480000pt;}
.x4b_c00047{left:411.520000pt;}
.x37_c00047{left:412.800000pt;}
.x3c_c00047{left:423.040000pt;}
.x32_c00047{left:432.000000pt;}
.x9_c00047{left:433.280000pt;}
.x4f_c00047{left:439.680000pt;}
.x42_c00047{left:440.960000pt;}
.x43_c00047{left:442.240000pt;}
.x2f_c00047{left:451.840000pt;}
.x27_c00047{left:460.800000pt;}
.x49_c00047{left:469.120000pt;}
.x33_c00047{left:470.400000pt;}
.x44_c00047{left:480.000000pt;}
.x20_c00047{left:489.600000pt;}
.x3a_c00047{left:498.560000pt;}
.x3d_c00047{left:499.840000pt;}
.xe_c00047{left:508.800000pt;}
.xa_c00047{left:518.400000pt;}
.x4d_c00047{left:526.720000pt;}
.x1c_c00047{left:528.000000pt;}
.xf_c00047{left:536.960000pt;}
.x19_c00047{left:538.240000pt;}
.x45_c00047{left:546.560000pt;}
.xb_c00047{left:547.840000pt;}
.x21_c00047{left:556.800000pt;}
.x50_c00047{left:565.120000pt;}
.x1d_c00047{left:567.040000pt;}
.x34_c00047{left:576.000000pt;}
.x46_c00047{left:585.600000pt;}
.x2a_c00047{left:595.200000pt;}
.x1a_c00047{left:604.800000pt;}
.x10_c00047{left:614.400000pt;}
.x1_c00047{left:620.160000pt;}
.x2b_c00047{left:624.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_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_1e7e3502a96215543a4beda1.woff2')format("woff");}.ff1_c00048{font-family:ff1_c00048;line-height:1.109863;font-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_c00048{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m39_c00048{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m38_c00048{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m4_c00048{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m43_c00048{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00048{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00048{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.md_c00048{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00048{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00048{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m44_c00048{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mc_c00048{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00048{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m17_c00048{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);}
.m30_c00048{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);}
.m2a_c00048{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m21_c00048{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);}
.m36_c00048{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1_c00048{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);}
.m41_c00048{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);}
.m37_c00048{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_c00048{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m25_c00048{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m2_c00048{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00048{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);}
.m1b_c00048{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);}
.m13_c00048{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m27_c00048{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00048{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.mb_c00048{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m34_c00048{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m35_c00048{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);}
.me_c00048{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);}
.m18_c00048{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m19_c00048{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m42_c00048{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m3_c00048{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_c00048{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m9_c00048{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);}
.m40_c00048{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m20_c00048{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00048{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m5_c00048{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);}
.m24_c00048{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m29_c00048{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00048{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m15_c00048{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m14_c00048{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m16_c00048{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);}
.m0_c00048{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00048{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m6_c00048{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);}
.m3b_c00048{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);}
.m45_c00048{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m10_c00048{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m22_c00048{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m8_c00048{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);}
.m23_c00048{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m32_c00048{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_c00048{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m26_c00048{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m11_c00048{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00048{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m28_c00048{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00048{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.ma_c00048{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);}
.m31_c00048{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00048{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m33_c00048{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m7_c00048{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.v0_c00048{vertical-align:0.000000px;}
.ls0_c00048{letter-spacing:0.000000px;}
.sc__c00048{text-shadow:none;}
.sc0_c00048{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00048{-webkit-text-stroke:0px transparent;}
.sc0_c00048{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00048{word-spacing:-6.596400px;}
.ws1_c00048{word-spacing:0.000000px;}
.fc0_c00048{color:transparent;}
.fs4_c00048{font-size:34.560000px;}
.fs7_c00048{font-size:37.440000px;}
.fs9_c00048{font-size:43.200000px;}
.fs6_c00048{font-size:46.080000px;}
.fs1_c00048{font-size:48.960000px;}
.fs0_c00048{font-size:51.840000px;}
.fs5_c00048{font-size:54.720000px;}
.fsa_c00048{font-size:57.600000px;}
.fs2_c00048{font-size:60.480000px;}
.fs3_c00048{font-size:63.360000px;}
.fs8_c00048{font-size:66.240000px;}
.fsb_c00048{font-size:69.120000px;}
.y0_c00048{bottom:0.000000px;}
.y38_c00048{bottom:439.200000px;}
.y36_c00048{bottom:439.920000px;}
.y3a_c00048{bottom:440.640000px;}
.y37_c00048{bottom:442.080000px;}
.y39_c00048{bottom:442.800000px;}
.y32_c00048{bottom:481.680000px;}
.y35_c00048{bottom:482.400000px;}
.y34_c00048{bottom:483.840000px;}
.y33_c00048{bottom:484.560000px;}
.y31_c00048{bottom:524.160000px;}
.y2e_c00048{bottom:524.880000px;}
.y30_c00048{bottom:527.040000px;}
.y2f_c00048{bottom:527.760000px;}
.y2a_c00048{bottom:566.640000px;}
.y2c_c00048{bottom:567.360000px;}
.y2d_c00048{bottom:568.080000px;}
.y2b_c00048{bottom:569.520000px;}
.y29_c00048{bottom:570.240000px;}
.y28_c00048{bottom:609.120000px;}
.y25_c00048{bottom:609.840000px;}
.y26_c00048{bottom:612.000000px;}
.y27_c00048{bottom:612.720000px;}
.y21_c00048{bottom:652.320000px;}
.y23_c00048{bottom:654.480000px;}
.y22_c00048{bottom:655.200000px;}
.y24_c00048{bottom:655.920000px;}
.y1f_c00048{bottom:694.080000px;}
.y20_c00048{bottom:694.800000px;}
.y1e_c00048{bottom:695.520000px;}
.y1d_c00048{bottom:697.680000px;}
.y1a_c00048{bottom:736.560000px;}
.y1c_c00048{bottom:737.280000px;}
.y1b_c00048{bottom:739.440000px;}
.y19_c00048{bottom:740.160000px;}
.y18_c00048{bottom:779.040000px;}
.y17_c00048{bottom:779.760000px;}
.y15_c00048{bottom:781.920000px;}
.y16_c00048{bottom:782.640000px;}
.y14_c00048{bottom:822.240000px;}
.y12_c00048{bottom:822.960000px;}
.y11_c00048{bottom:823.680000px;}
.y10_c00048{bottom:824.400000px;}
.y13_c00048{bottom:825.120000px;}
.ye_c00048{bottom:864.000000px;}
.yf_c00048{bottom:864.720000px;}
.yc_c00048{bottom:866.880000px;}
.yd_c00048{bottom:867.600000px;}
.yb_c00048{bottom:905.760000px;}
.ya_c00048{bottom:907.200000px;}
.y9_c00048{bottom:909.360000px;}
.y8_c00048{bottom:948.960000px;}
.y7_c00048{bottom:949.680000px;}
.y6_c00048{bottom:951.840000px;}
.y5_c00048{bottom:952.560000px;}
.y2_c00048{bottom:992.160000px;}
.y1_c00048{bottom:994.320000px;}
.y4_c00048{bottom:995.040000px;}
.y3_c00048{bottom:995.760000px;}
.h6_c00048{height:31.100625px;}
.h9_c00048{height:33.692344px;}
.hb_c00048{height:38.875781px;}
.h8_c00048{height:41.467500px;}
.h3_c00048{height:44.059219px;}
.h2_c00048{height:46.650937px;}
.h7_c00048{height:49.242656px;}
.hc_c00048{height:51.834375px;}
.h4_c00048{height:54.426094px;}
.h5_c00048{height:57.017812px;}
.ha_c00048{height:59.609531px;}
.hd_c00048{height:62.201250px;}
.h1_c00048{height:1149.000000px;}
.h0_c00048{height:1149.120000px;}
.w1_c00048{width:803.250000px;}
.w0_c00048{width:803.520000px;}
.x0_c00048{left:0.000000px;}
.x1_c00048{left:82.080000px;}
.x12_c00048{left:83.520000px;}
.x13_c00048{left:126.000000px;}
.xa_c00048{left:137.520000px;}
.x2_c00048{left:147.600000px;}
.x1b_c00048{left:159.120000px;}
.x3_c00048{left:180.000000px;}
.x1c_c00048{left:190.080000px;}
.x2e_c00048{left:200.880000px;}
.x28_c00048{left:211.680000px;}
.x20_c00048{left:224.640000px;}
.xb_c00048{left:233.280000px;}
.x21_c00048{left:254.880000px;}
.xc_c00048{left:265.680000px;}
.x14_c00048{left:276.480000px;}
.x38_c00048{left:287.280000px;}
.x22_c00048{left:298.080000px;}
.xd_c00048{left:309.600000px;}
.x15_c00048{left:318.960000px;}
.x2f_c00048{left:330.480000px;}
.x4_c00048{left:341.280000px;}
.x1d_c00048{left:351.360000px;}
.x39_c00048{left:361.440000px;}
.x2b_c00048{left:362.880000px;}
.x35_c00048{left:373.680000px;}
.x5_c00048{left:395.280000px;}
.x32_c00048{left:405.360000px;}
.x29_c00048{left:416.160000px;}
.x3f_c00048{left:426.240000px;}
.x16_c00048{left:437.760000px;}
.xe_c00048{left:448.560000px;}
.x36_c00048{left:459.360000px;}
.x17_c00048{left:468.720000px;}
.x30_c00048{left:470.160000px;}
.x3b_c00048{left:480.240000px;}
.x1e_c00048{left:481.680000px;}
.xf_c00048{left:491.040000px;}
.x6_c00048{left:492.480000px;}
.x2c_c00048{left:501.840000px;}
.x31_c00048{left:512.640000px;}
.x7_c00048{left:514.080000px;}
.x23_c00048{left:524.880000px;}
.x33_c00048{left:533.520000px;}
.x3c_c00048{left:545.040000px;}
.x18_c00048{left:546.480000px;}
.x24_c00048{left:556.560000px;}
.x3d_c00048{left:576.720000px;}
.x10_c00048{left:578.880000px;}
.x25_c00048{left:588.240000px;}
.x34_c00048{left:599.760000px;}
.x11_c00048{left:609.840000px;}
.x3e_c00048{left:622.080000px;}
.x8_c00048{left:631.440000px;}
.x1f_c00048{left:642.240000px;}
.x2d_c00048{left:643.680000px;}
.x37_c00048{left:652.320000px;}
.x9_c00048{left:663.840000px;}
.x2a_c00048{left:676.080000px;}
.x26_c00048{left:685.440000px;}
.x19_c00048{left:696.960000px;}
.x3a_c00048{left:707.760000px;}
.x27_c00048{left:717.840000px;}
.x1a_c00048{left:728.640000px;}
@media print{
.v0_c00048{vertical-align:0.000000pt;}
.ls0_c00048{letter-spacing:0.000000pt;}
.ws0_c00048{word-spacing:-5.863467pt;}
.ws1_c00048{word-spacing:0.000000pt;}
.fs4_c00048{font-size:30.720000pt;}
.fs7_c00048{font-size:33.280000pt;}
.fs9_c00048{font-size:38.400000pt;}
.fs6_c00048{font-size:40.960000pt;}
.fs1_c00048{font-size:43.520000pt;}
.fs0_c00048{font-size:46.080000pt;}
.fs5_c00048{font-size:48.640000pt;}
.fsa_c00048{font-size:51.200000pt;}
.fs2_c00048{font-size:53.760000pt;}
.fs3_c00048{font-size:56.320000pt;}
.fs8_c00048{font-size:58.880000pt;}
.fsb_c00048{font-size:61.440000pt;}
.y0_c00048{bottom:0.000000pt;}
.y38_c00048{bottom:390.400000pt;}
.y36_c00048{bottom:391.040000pt;}
.y3a_c00048{bottom:391.680000pt;}
.y37_c00048{bottom:392.960000pt;}
.y39_c00048{bottom:393.600000pt;}
.y32_c00048{bottom:428.160000pt;}
.y35_c00048{bottom:428.800000pt;}
.y34_c00048{bottom:430.080000pt;}
.y33_c00048{bottom:430.720000pt;}
.y31_c00048{bottom:465.920000pt;}
.y2e_c00048{bottom:466.560000pt;}
.y30_c00048{bottom:468.480000pt;}
.y2f_c00048{bottom:469.120000pt;}
.y2a_c00048{bottom:503.680000pt;}
.y2c_c00048{bottom:504.320000pt;}
.y2d_c00048{bottom:504.960000pt;}
.y2b_c00048{bottom:506.240000pt;}
.y29_c00048{bottom:506.880000pt;}
.y28_c00048{bottom:541.440000pt;}
.y25_c00048{bottom:542.080000pt;}
.y26_c00048{bottom:544.000000pt;}
.y27_c00048{bottom:544.640000pt;}
.y21_c00048{bottom:579.840000pt;}
.y23_c00048{bottom:581.760000pt;}
.y22_c00048{bottom:582.400000pt;}
.y24_c00048{bottom:583.040000pt;}
.y1f_c00048{bottom:616.960000pt;}
.y20_c00048{bottom:617.600000pt;}
.y1e_c00048{bottom:618.240000pt;}
.y1d_c00048{bottom:620.160000pt;}
.y1a_c00048{bottom:654.720000pt;}
.y1c_c00048{bottom:655.360000pt;}
.y1b_c00048{bottom:657.280000pt;}
.y19_c00048{bottom:657.920000pt;}
.y18_c00048{bottom:692.480000pt;}
.y17_c00048{bottom:693.120000pt;}
.y15_c00048{bottom:695.040000pt;}
.y16_c00048{bottom:695.680000pt;}
.y14_c00048{bottom:730.880000pt;}
.y12_c00048{bottom:731.520000pt;}
.y11_c00048{bottom:732.160000pt;}
.y10_c00048{bottom:732.800000pt;}
.y13_c00048{bottom:733.440000pt;}
.ye_c00048{bottom:768.000000pt;}
.yf_c00048{bottom:768.640000pt;}
.yc_c00048{bottom:770.560000pt;}
.yd_c00048{bottom:771.200000pt;}
.yb_c00048{bottom:805.120000pt;}
.ya_c00048{bottom:806.400000pt;}
.y9_c00048{bottom:808.320000pt;}
.y8_c00048{bottom:843.520000pt;}
.y7_c00048{bottom:844.160000pt;}
.y6_c00048{bottom:846.080000pt;}
.y5_c00048{bottom:846.720000pt;}
.y2_c00048{bottom:881.920000pt;}
.y1_c00048{bottom:883.840000pt;}
.y4_c00048{bottom:884.480000pt;}
.y3_c00048{bottom:885.120000pt;}
.h6_c00048{height:27.645000pt;}
.h9_c00048{height:29.948750pt;}
.hb_c00048{height:34.556250pt;}
.h8_c00048{height:36.860000pt;}
.h3_c00048{height:39.163750pt;}
.h2_c00048{height:41.467500pt;}
.h7_c00048{height:43.771250pt;}
.hc_c00048{height:46.075000pt;}
.h4_c00048{height:48.378750pt;}
.h5_c00048{height:50.682500pt;}
.ha_c00048{height:52.986250pt;}
.hd_c00048{height:55.290000pt;}
.h1_c00048{height:1021.333333pt;}
.h0_c00048{height:1021.440000pt;}
.w1_c00048{width:714.000000pt;}
.w0_c00048{width:714.240000pt;}
.x0_c00048{left:0.000000pt;}
.x1_c00048{left:72.960000pt;}
.x12_c00048{left:74.240000pt;}
.x13_c00048{left:112.000000pt;}
.xa_c00048{left:122.240000pt;}
.x2_c00048{left:131.200000pt;}
.x1b_c00048{left:141.440000pt;}
.x3_c00048{left:160.000000pt;}
.x1c_c00048{left:168.960000pt;}
.x2e_c00048{left:178.560000pt;}
.x28_c00048{left:188.160000pt;}
.x20_c00048{left:199.680000pt;}
.xb_c00048{left:207.360000pt;}
.x21_c00048{left:226.560000pt;}
.xc_c00048{left:236.160000pt;}
.x14_c00048{left:245.760000pt;}
.x38_c00048{left:255.360000pt;}
.x22_c00048{left:264.960000pt;}
.xd_c00048{left:275.200000pt;}
.x15_c00048{left:283.520000pt;}
.x2f_c00048{left:293.760000pt;}
.x4_c00048{left:303.360000pt;}
.x1d_c00048{left:312.320000pt;}
.x39_c00048{left:321.280000pt;}
.x2b_c00048{left:322.560000pt;}
.x35_c00048{left:332.160000pt;}
.x5_c00048{left:351.360000pt;}
.x32_c00048{left:360.320000pt;}
.x29_c00048{left:369.920000pt;}
.x3f_c00048{left:378.880000pt;}
.x16_c00048{left:389.120000pt;}
.xe_c00048{left:398.720000pt;}
.x36_c00048{left:408.320000pt;}
.x17_c00048{left:416.640000pt;}
.x30_c00048{left:417.920000pt;}
.x3b_c00048{left:426.880000pt;}
.x1e_c00048{left:428.160000pt;}
.xf_c00048{left:436.480000pt;}
.x6_c00048{left:437.760000pt;}
.x2c_c00048{left:446.080000pt;}
.x31_c00048{left:455.680000pt;}
.x7_c00048{left:456.960000pt;}
.x23_c00048{left:466.560000pt;}
.x33_c00048{left:474.240000pt;}
.x3c_c00048{left:484.480000pt;}
.x18_c00048{left:485.760000pt;}
.x24_c00048{left:494.720000pt;}
.x3d_c00048{left:512.640000pt;}
.x10_c00048{left:514.560000pt;}
.x25_c00048{left:522.880000pt;}
.x34_c00048{left:533.120000pt;}
.x11_c00048{left:542.080000pt;}
.x3e_c00048{left:552.960000pt;}
.x8_c00048{left:561.280000pt;}
.x1f_c00048{left:570.880000pt;}
.x2d_c00048{left:572.160000pt;}
.x37_c00048{left:579.840000pt;}
.x9_c00048{left:590.080000pt;}
.x2a_c00048{left:600.960000pt;}
.x26_c00048{left:609.280000pt;}
.x19_c00048{left:619.520000pt;}
.x3a_c00048{left:629.120000pt;}
.x27_c00048{left:638.080000pt;}
.x1a_c00048{left:647.680000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0790fb24d0995c08593b6c23.woff2')format("woff");}.ff1_c00049{font-family:ff1_c00049;line-height:1.109863;font-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_c00049{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m52_c00049{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m27_c00049{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.ma_c00049{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m9_c00049{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m8_c00049{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m54_c00049{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m46_c00049{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.md_c00049{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m58_c00049{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m0_c00049{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m56_c00049{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m18_c00049{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00049{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00049{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m59_c00049{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m22_c00049{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m24_c00049{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);}
.m5f_c00049{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m19_c00049{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);}
.m35_c00049{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m50_c00049{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);}
.m4a_c00049{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00049{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_c00049{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m29_c00049{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m57_c00049{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00049{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.mc_c00049{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);}
.m26_c00049{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00049{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m28_c00049{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m14_c00049{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);}
.m3c_c00049{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);}
.m16_c00049{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m13_c00049{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00049{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);}
.m55_c00049{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m33_c00049{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);}
.m4d_c00049{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);}
.m1d_c00049{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m42_c00049{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m23_c00049{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00049{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m36_c00049{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);}
.m25_c00049{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m53_c00049{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00049{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);}
.m15_c00049{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m17_c00049{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);}
.m5_c00049{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00049{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m12_c00049{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);}
.m30_c00049{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00049{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);}
.m45_c00049{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00049{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m3_c00049{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m21_c00049{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00049{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);}
.m47_c00049{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);}
.m39_c00049{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00049{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m20_c00049{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);}
.m2e_c00049{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m40_c00049{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00049{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);}
.m31_c00049{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00049{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00049{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m48_c00049{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00049{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);}
.m32_c00049{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m6_c00049{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m34_c00049{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00049{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m10_c00049{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m49_c00049{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);}
.mf_c00049{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00049{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m2_c00049{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.me_c00049{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.m60_c00049{transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00049{transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);}
.m61_c00049{transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00049{transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);}
.m44_c00049{transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);}
.m37_c00049{transform:matrix(0.775000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.775000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.775000,0.000000,0.000000,0.250000,0,0);}
.m43_c00049{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m7_c00049{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m51_c00049{transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);}
.m38_c00049{transform:matrix(0.927500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.927500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.927500,0.000000,0.000000,0.250000,0,0);}
.m62_c00049{transform:matrix(0.935000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.935000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.935000,0.000000,0.000000,0.250000,0,0);}
.m4_c00049{transform:matrix(0.972500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.972500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.972500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00049{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00049{transform:matrix(1.065000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.065000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.065000,0.000000,0.000000,0.250000,0,0);}
.m41_c00049{transform:matrix(1.147500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.147500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.147500,0.000000,0.000000,0.250000,0,0);}
.m11_c00049{transform:matrix(1.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.155000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00049{transform:matrix(1.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.252500,0.000000,0.000000,0.250000,0,0);}
.v0_c00049{vertical-align:0.000000px;}
.v1_c00049{vertical-align:2.880000px;}
.v2_c00049{vertical-align:11.520000px;}
.ls0_c00049{letter-spacing:0.000000px;}
.sc__c00049{text-shadow:none;}
.sc0_c00049{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00049{-webkit-text-stroke:0px transparent;}
.sc0_c00049{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00049{word-spacing:-10.633920px;}
.ws3_c00049{word-spacing:-1.491840px;}
.ws4_c00049{word-spacing:0.000000px;}
.ws1_c00049{word-spacing:4.382160px;}
.ws2_c00049{word-spacing:11.958123px;}
.fc0_c00049{color:transparent;}
.fsb_c00049{font-size:34.560000px;}
.fs8_c00049{font-size:37.440000px;}
.fs6_c00049{font-size:40.320000px;}
.fsf_c00049{font-size:43.200000px;}
.fsc_c00049{font-size:46.080000px;}
.fs3_c00049{font-size:48.960000px;}
.fs2_c00049{font-size:51.840000px;}
.fs7_c00049{font-size:54.720000px;}
.fse_c00049{font-size:57.600000px;}
.fs1_c00049{font-size:60.480000px;}
.fs4_c00049{font-size:63.360000px;}
.fs9_c00049{font-size:66.240000px;}
.fsa_c00049{font-size:69.120000px;}
.fsd_c00049{font-size:72.000000px;}
.fs5_c00049{font-size:74.880000px;}
.fs0_c00049{font-size:77.760000px;}
.y0_c00049{bottom:0.000000px;}
.y51_c00049{bottom:55.440000px;}
.y4e_c00049{bottom:56.160000px;}
.y50_c00049{bottom:56.880000px;}
.y4d_c00049{bottom:57.600000px;}
.y4f_c00049{bottom:59.040000px;}
.y4c_c00049{bottom:59.760000px;}
.y4b_c00049{bottom:60.480000px;}
.y48_c00049{bottom:98.640000px;}
.y4a_c00049{bottom:100.800000px;}
.y49_c00049{bottom:101.520000px;}
.y46_c00049{bottom:102.240000px;}
.y47_c00049{bottom:102.960000px;}
.y44_c00049{bottom:141.120000px;}
.y45_c00049{bottom:143.280000px;}
.y43_c00049{bottom:144.000000px;}
.y42_c00049{bottom:145.440000px;}
.y41_c00049{bottom:182.880000px;}
.y3c_c00049{bottom:183.600000px;}
.y3f_c00049{bottom:184.320000px;}
.y40_c00049{bottom:185.760000px;}
.y3e_c00049{bottom:186.480000px;}
.y3d_c00049{bottom:187.200000px;}
.y3b_c00049{bottom:224.640000px;}
.y39_c00049{bottom:225.360000px;}
.y3a_c00049{bottom:226.080000px;}
.y38_c00049{bottom:228.960000px;}
.y37_c00049{bottom:267.840000px;}
.y34_c00049{bottom:268.560000px;}
.y36_c00049{bottom:269.280000px;}
.y35_c00049{bottom:270.720000px;}
.y33_c00049{bottom:271.440000px;}
.y32_c00049{bottom:272.160000px;}
.y2f_c00049{bottom:311.040000px;}
.y2e_c00049{bottom:311.760000px;}
.y31_c00049{bottom:313.200000px;}
.y30_c00049{bottom:313.920000px;}
.y2d_c00049{bottom:314.640000px;}
.y2b_c00049{bottom:353.520000px;}
.y2c_c00049{bottom:355.680000px;}
.y2a_c00049{bottom:356.400000px;}
.y28_c00049{bottom:406.800000px;}
.y29_c00049{bottom:407.520000px;}
.y26_c00049{bottom:408.960000px;}
.y27_c00049{bottom:409.680000px;}
.y24_c00049{bottom:449.280000px;}
.y25_c00049{bottom:452.160000px;}
.y22_c00049{bottom:491.760000px;}
.y23_c00049{bottom:492.480000px;}
.y21_c00049{bottom:494.640000px;}
.y1b_c00049{bottom:533.520000px;}
.y1f_c00049{bottom:534.240000px;}
.y1c_c00049{bottom:534.960000px;}
.y20_c00049{bottom:535.680000px;}
.y1d_c00049{bottom:537.120000px;}
.y1e_c00049{bottom:537.840000px;}
.y18_c00049{bottom:617.760000px;}
.y1a_c00049{bottom:619.920000px;}
.y17_c00049{bottom:622.080000px;}
.y19_c00049{bottom:622.800000px;}
.y16_c00049{bottom:664.560000px;}
.y12_c00049{bottom:704.160000px;}
.y14_c00049{bottom:704.880000px;}
.y13_c00049{bottom:707.040000px;}
.y15_c00049{bottom:707.760000px;}
.yf_c00049{bottom:745.920000px;}
.y10_c00049{bottom:746.640000px;}
.y11_c00049{bottom:747.360000px;}
.yd_c00049{bottom:748.800000px;}
.ye_c00049{bottom:749.520000px;}
.yc_c00049{bottom:789.840000px;}
.yb_c00049{bottom:791.280000px;}
.ya_c00049{bottom:792.000000px;}
.y5_c00049{bottom:831.600000px;}
.y9_c00049{bottom:832.320000px;}
.y6_c00049{bottom:833.760000px;}
.y7_c00049{bottom:834.480000px;}
.y8_c00049{bottom:835.200000px;}
.y4_c00049{bottom:884.880000px;}
.y3_c00049{bottom:887.760000px;}
.y2_c00049{bottom:994.320000px;}
.y1_c00049{bottom:1038.960000px;}
.he_c00049{height:31.100625px;}
.ha_c00049{height:33.692344px;}
.h8_c00049{height:36.284062px;}
.h12_c00049{height:38.875781px;}
.hf_c00049{height:41.467500px;}
.h5_c00049{height:44.059219px;}
.h4_c00049{height:46.650937px;}
.h9_c00049{height:49.242656px;}
.hc_c00049{height:49.530938px;}
.h11_c00049{height:51.834375px;}
.h3_c00049{height:54.426094px;}
.h6_c00049{height:57.017812px;}
.h13_c00049{height:58.170937px;}
.hb_c00049{height:59.609531px;}
.hd_c00049{height:62.201250px;}
.h10_c00049{height:64.792969px;}
.h7_c00049{height:67.384687px;}
.h2_c00049{height:69.976406px;}
.h1_c00049{height:1149.000000px;}
.h0_c00049{height:1149.120000px;}
.w1_c00049{width:804.000000px;}
.w0_c00049{width:804.240000px;}
.x0_c00049{left:0.000000px;}
.x3_c00049{left:79.920000px;}
.x2b_c00049{left:81.360000px;}
.x4b_c00049{left:112.320000px;}
.x36_c00049{left:113.760000px;}
.x4_c00049{left:123.120000px;}
.x42_c00049{left:125.280000px;}
.x33_c00049{left:133.920000px;}
.x27_c00049{left:144.720000px;}
.x47_c00049{left:146.160000px;}
.x34_c00049{left:155.520000px;}
.x20_c00049{left:166.320000px;}
.x3b_c00049{left:177.120000px;}
.xa_c00049{left:186.480000px;}
.x13_c00049{left:187.920000px;}
.x5_c00049{left:198.720000px;}
.x2c_c00049{left:209.520000px;}
.x48_c00049{left:221.040000px;}
.xb_c00049{left:231.120000px;}
.x14_c00049{left:241.200000px;}
.x4c_c00049{left:242.640000px;}
.x19_c00049{left:254.160000px;}
.x2_c00049{left:262.080000px;}
.x39_c00049{left:263.520000px;}
.x21_c00049{left:274.320000px;}
.x28_c00049{left:295.920000px;}
.x2d_c00049{left:305.280000px;}
.x15_c00049{left:306.720000px;}
.x37_c00049{left:317.520000px;}
.xc_c00049{left:337.680000px;}
.x3e_c00049{left:339.120000px;}
.x43_c00049{left:350.640000px;}
.x1a_c00049{left:359.280000px;}
.x4e_c00049{left:360.720000px;}
.x6_c00049{left:370.080000px;}
.xd_c00049{left:380.880000px;}
.x3c_c00049{left:382.320000px;}
.x4d_c00049{left:391.680000px;}
.x2e_c00049{left:393.120000px;}
.x1b_c00049{left:403.200000px;}
.x3f_c00049{left:406.080000px;}
.xe_c00049{left:414.000000px;}
.x1c_c00049{left:434.880000px;}
.x49_c00049{left:436.320000px;}
.x2f_c00049{left:445.680000px;}
.x7_c00049{left:456.480000px;}
.x1d_c00049{left:466.560000px;}
.x16_c00049{left:468.000000px;}
.x30_c00049{left:478.080000px;}
.x38_c00049{left:488.880000px;}
.xf_c00049{left:499.680000px;}
.x4f_c00049{left:509.760000px;}
.x22_c00049{left:511.200000px;}
.x8_c00049{left:522.000000px;}
.x29_c00049{left:532.080000px;}
.x44_c00049{left:533.520000px;}
.x23_c00049{left:542.880000px;}
.x9_c00049{left:553.680000px;}
.x1e_c00049{left:564.480000px;}
.x45_c00049{left:576.720000px;}
.x24_c00049{left:585.360000px;}
.x40_c00049{left:586.800000px;}
.x1f_c00049{left:596.160000px;}
.x10_c00049{left:606.960000px;}
.x17_c00049{left:618.480000px;}
.x41_c00049{left:619.920000px;}
.x31_c00049{left:628.560000px;}
.x11_c00049{left:639.360000px;}
.x46_c00049{left:640.800000px;}
.x18_c00049{left:650.160000px;}
.x4a_c00049{left:651.600000px;}
.x3a_c00049{left:661.680000px;}
.x32_c00049{left:663.120000px;}
.x25_c00049{left:672.480000px;}
.x12_c00049{left:682.560000px;}
.x2a_c00049{left:694.080000px;}
.x3d_c00049{left:695.520000px;}
.x1_c00049{left:701.280000px;}
.x26_c00049{left:704.880000px;}
.x35_c00049{left:715.680000px;}
@media print{
.v0_c00049{vertical-align:0.000000pt;}
.v1_c00049{vertical-align:2.560000pt;}
.v2_c00049{vertical-align:10.240000pt;}
.ls0_c00049{letter-spacing:0.000000pt;}
.ws0_c00049{word-spacing:-9.452373pt;}
.ws3_c00049{word-spacing:-1.326080pt;}
.ws4_c00049{word-spacing:0.000000pt;}
.ws1_c00049{word-spacing:3.895253pt;}
.ws2_c00049{word-spacing:10.629443pt;}
.fsb_c00049{font-size:30.720000pt;}
.fs8_c00049{font-size:33.280000pt;}
.fs6_c00049{font-size:35.840000pt;}
.fsf_c00049{font-size:38.400000pt;}
.fsc_c00049{font-size:40.960000pt;}
.fs3_c00049{font-size:43.520000pt;}
.fs2_c00049{font-size:46.080000pt;}
.fs7_c00049{font-size:48.640000pt;}
.fse_c00049{font-size:51.200000pt;}
.fs1_c00049{font-size:53.760000pt;}
.fs4_c00049{font-size:56.320000pt;}
.fs9_c00049{font-size:58.880000pt;}
.fsa_c00049{font-size:61.440000pt;}
.fsd_c00049{font-size:64.000000pt;}
.fs5_c00049{font-size:66.560000pt;}
.fs0_c00049{font-size:69.120000pt;}
.y0_c00049{bottom:0.000000pt;}
.y51_c00049{bottom:49.280000pt;}
.y4e_c00049{bottom:49.920000pt;}
.y50_c00049{bottom:50.560000pt;}
.y4d_c00049{bottom:51.200000pt;}
.y4f_c00049{bottom:52.480000pt;}
.y4c_c00049{bottom:53.120000pt;}
.y4b_c00049{bottom:53.760000pt;}
.y48_c00049{bottom:87.680000pt;}
.y4a_c00049{bottom:89.600000pt;}
.y49_c00049{bottom:90.240000pt;}
.y46_c00049{bottom:90.880000pt;}
.y47_c00049{bottom:91.520000pt;}
.y44_c00049{bottom:125.440000pt;}
.y45_c00049{bottom:127.360000pt;}
.y43_c00049{bottom:128.000000pt;}
.y42_c00049{bottom:129.280000pt;}
.y41_c00049{bottom:162.560000pt;}
.y3c_c00049{bottom:163.200000pt;}
.y3f_c00049{bottom:163.840000pt;}
.y40_c00049{bottom:165.120000pt;}
.y3e_c00049{bottom:165.760000pt;}
.y3d_c00049{bottom:166.400000pt;}
.y3b_c00049{bottom:199.680000pt;}
.y39_c00049{bottom:200.320000pt;}
.y3a_c00049{bottom:200.960000pt;}
.y38_c00049{bottom:203.520000pt;}
.y37_c00049{bottom:238.080000pt;}
.y34_c00049{bottom:238.720000pt;}
.y36_c00049{bottom:239.360000pt;}
.y35_c00049{bottom:240.640000pt;}
.y33_c00049{bottom:241.280000pt;}
.y32_c00049{bottom:241.920000pt;}
.y2f_c00049{bottom:276.480000pt;}
.y2e_c00049{bottom:277.120000pt;}
.y31_c00049{bottom:278.400000pt;}
.y30_c00049{bottom:279.040000pt;}
.y2d_c00049{bottom:279.680000pt;}
.y2b_c00049{bottom:314.240000pt;}
.y2c_c00049{bottom:316.160000pt;}
.y2a_c00049{bottom:316.800000pt;}
.y28_c00049{bottom:361.600000pt;}
.y29_c00049{bottom:362.240000pt;}
.y26_c00049{bottom:363.520000pt;}
.y27_c00049{bottom:364.160000pt;}
.y24_c00049{bottom:399.360000pt;}
.y25_c00049{bottom:401.920000pt;}
.y22_c00049{bottom:437.120000pt;}
.y23_c00049{bottom:437.760000pt;}
.y21_c00049{bottom:439.680000pt;}
.y1b_c00049{bottom:474.240000pt;}
.y1f_c00049{bottom:474.880000pt;}
.y1c_c00049{bottom:475.520000pt;}
.y20_c00049{bottom:476.160000pt;}
.y1d_c00049{bottom:477.440000pt;}
.y1e_c00049{bottom:478.080000pt;}
.y18_c00049{bottom:549.120000pt;}
.y1a_c00049{bottom:551.040000pt;}
.y17_c00049{bottom:552.960000pt;}
.y19_c00049{bottom:553.600000pt;}
.y16_c00049{bottom:590.720000pt;}
.y12_c00049{bottom:625.920000pt;}
.y14_c00049{bottom:626.560000pt;}
.y13_c00049{bottom:628.480000pt;}
.y15_c00049{bottom:629.120000pt;}
.yf_c00049{bottom:663.040000pt;}
.y10_c00049{bottom:663.680000pt;}
.y11_c00049{bottom:664.320000pt;}
.yd_c00049{bottom:665.600000pt;}
.ye_c00049{bottom:666.240000pt;}
.yc_c00049{bottom:702.080000pt;}
.yb_c00049{bottom:703.360000pt;}
.ya_c00049{bottom:704.000000pt;}
.y5_c00049{bottom:739.200000pt;}
.y9_c00049{bottom:739.840000pt;}
.y6_c00049{bottom:741.120000pt;}
.y7_c00049{bottom:741.760000pt;}
.y8_c00049{bottom:742.400000pt;}
.y4_c00049{bottom:786.560000pt;}
.y3_c00049{bottom:789.120000pt;}
.y2_c00049{bottom:883.840000pt;}
.y1_c00049{bottom:923.520000pt;}
.he_c00049{height:27.645000pt;}
.ha_c00049{height:29.948750pt;}
.h8_c00049{height:32.252500pt;}
.h12_c00049{height:34.556250pt;}
.hf_c00049{height:36.860000pt;}
.h5_c00049{height:39.163750pt;}
.h4_c00049{height:41.467500pt;}
.h9_c00049{height:43.771250pt;}
.hc_c00049{height:44.027500pt;}
.h11_c00049{height:46.075000pt;}
.h3_c00049{height:48.378750pt;}
.h6_c00049{height:50.682500pt;}
.h13_c00049{height:51.707500pt;}
.hb_c00049{height:52.986250pt;}
.hd_c00049{height:55.290000pt;}
.h10_c00049{height:57.593750pt;}
.h7_c00049{height:59.897500pt;}
.h2_c00049{height:62.201250pt;}
.h1_c00049{height:1021.333333pt;}
.h0_c00049{height:1021.440000pt;}
.w1_c00049{width:714.666667pt;}
.w0_c00049{width:714.880000pt;}
.x0_c00049{left:0.000000pt;}
.x3_c00049{left:71.040000pt;}
.x2b_c00049{left:72.320000pt;}
.x4b_c00049{left:99.840000pt;}
.x36_c00049{left:101.120000pt;}
.x4_c00049{left:109.440000pt;}
.x42_c00049{left:111.360000pt;}
.x33_c00049{left:119.040000pt;}
.x27_c00049{left:128.640000pt;}
.x47_c00049{left:129.920000pt;}
.x34_c00049{left:138.240000pt;}
.x20_c00049{left:147.840000pt;}
.x3b_c00049{left:157.440000pt;}
.xa_c00049{left:165.760000pt;}
.x13_c00049{left:167.040000pt;}
.x5_c00049{left:176.640000pt;}
.x2c_c00049{left:186.240000pt;}
.x48_c00049{left:196.480000pt;}
.xb_c00049{left:205.440000pt;}
.x14_c00049{left:214.400000pt;}
.x4c_c00049{left:215.680000pt;}
.x19_c00049{left:225.920000pt;}
.x2_c00049{left:232.960000pt;}
.x39_c00049{left:234.240000pt;}
.x21_c00049{left:243.840000pt;}
.x28_c00049{left:263.040000pt;}
.x2d_c00049{left:271.360000pt;}
.x15_c00049{left:272.640000pt;}
.x37_c00049{left:282.240000pt;}
.xc_c00049{left:300.160000pt;}
.x3e_c00049{left:301.440000pt;}
.x43_c00049{left:311.680000pt;}
.x1a_c00049{left:319.360000pt;}
.x4e_c00049{left:320.640000pt;}
.x6_c00049{left:328.960000pt;}
.xd_c00049{left:338.560000pt;}
.x3c_c00049{left:339.840000pt;}
.x4d_c00049{left:348.160000pt;}
.x2e_c00049{left:349.440000pt;}
.x1b_c00049{left:358.400000pt;}
.x3f_c00049{left:360.960000pt;}
.xe_c00049{left:368.000000pt;}
.x1c_c00049{left:386.560000pt;}
.x49_c00049{left:387.840000pt;}
.x2f_c00049{left:396.160000pt;}
.x7_c00049{left:405.760000pt;}
.x1d_c00049{left:414.720000pt;}
.x16_c00049{left:416.000000pt;}
.x30_c00049{left:424.960000pt;}
.x38_c00049{left:434.560000pt;}
.xf_c00049{left:444.160000pt;}
.x4f_c00049{left:453.120000pt;}
.x22_c00049{left:454.400000pt;}
.x8_c00049{left:464.000000pt;}
.x29_c00049{left:472.960000pt;}
.x44_c00049{left:474.240000pt;}
.x23_c00049{left:482.560000pt;}
.x9_c00049{left:492.160000pt;}
.x1e_c00049{left:501.760000pt;}
.x45_c00049{left:512.640000pt;}
.x24_c00049{left:520.320000pt;}
.x40_c00049{left:521.600000pt;}
.x1f_c00049{left:529.920000pt;}
.x10_c00049{left:539.520000pt;}
.x17_c00049{left:549.760000pt;}
.x41_c00049{left:551.040000pt;}
.x31_c00049{left:558.720000pt;}
.x11_c00049{left:568.320000pt;}
.x46_c00049{left:569.600000pt;}
.x18_c00049{left:577.920000pt;}
.x4a_c00049{left:579.200000pt;}
.x3a_c00049{left:588.160000pt;}
.x32_c00049{left:589.440000pt;}
.x25_c00049{left:597.760000pt;}
.x12_c00049{left:606.720000pt;}
.x2a_c00049{left:616.960000pt;}
.x3d_c00049{left:618.240000pt;}
.x1_c00049{left:623.360000pt;}
.x26_c00049{left:626.560000pt;}
.x35_c00049{left:636.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_19c5c58c268d5d4070abe3f6.woff2')format("woff");}.ff1_c00050{font-family:ff1_c00050;line-height:1.109863;font-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_c00050{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_c00050{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);}
.m4e_c00050{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);}
.m4c_c00050{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);}
.m56_c00050{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);}
.m51_c00050{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m52_c00050{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m55_c00050{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.md_c00050{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m57_c00050{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m54_c00050{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m19_c00050{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m7_c00050{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00050{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m0_c00050{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m21_c00050{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);}
.m36_c00050{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m22_c00050{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m15_c00050{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);}
.m26_c00050{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00050{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);}
.m3c_c00050{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m39_c00050{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);}
.m2d_c00050{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m47_c00050{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);}
.m1e_c00050{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);}
.m30_c00050{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00050{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m25_c00050{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m4_c00050{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.mc_c00050{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);}
.m3_c00050{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00050{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);}
.m27_c00050{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);}
.m40_c00050{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m41_c00050{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00050{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);}
.m10_c00050{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00050{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);}
.m34_c00050{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m16_c00050{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);}
.m18_c00050{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m13_c00050{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00050{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m1_c00050{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);}
.m23_c00050{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.me_c00050{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m17_c00050{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);}
.m8_c00050{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_c00050{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m24_c00050{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m31_c00050{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m9_c00050{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m53_c00050{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);}
.m14_c00050{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m33_c00050{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m5_c00050{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);}
.m2c_c00050{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m32_c00050{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00050{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00050{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00050{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);}
.m2_c00050{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);}
.m48_c00050{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.mb_c00050{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00050{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00050{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);}
.m38_c00050{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m49_c00050{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m46_c00050{transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00050{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m37_c00050{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.ma_c00050{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m11_c00050{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);}
.m12_c00050{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00050{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m44_c00050{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m6_c00050{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m50_c00050{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00050{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.mf_c00050{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);}
.m42_c00050{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);}
.m29_c00050{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m35_c00050{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00050{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00050{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00050{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m43_c00050{transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);}
.v1_c00050{vertical-align:-11.520000px;}
.v0_c00050{vertical-align:0.000000px;}
.ls0_c00050{letter-spacing:0.000000px;}
.sc__c00050{text-shadow:none;}
.sc0_c00050{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00050{-webkit-text-stroke:0px transparent;}
.sc0_c00050{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00050{word-spacing:-10.447680px;}
.ws1_c00050{word-spacing:-1.943040px;}
.ws2_c00050{word-spacing:0.000000px;}
.fc0_c00050{color:transparent;}
.fs4_c00050{font-size:34.560000px;}
.fsb_c00050{font-size:37.440000px;}
.fsc_c00050{font-size:43.200000px;}
.fs6_c00050{font-size:46.080000px;}
.fs7_c00050{font-size:48.960000px;}
.fs1_c00050{font-size:51.840000px;}
.fsd_c00050{font-size:54.720000px;}
.fsa_c00050{font-size:57.600000px;}
.fs2_c00050{font-size:60.480000px;}
.fs8_c00050{font-size:63.360000px;}
.fs9_c00050{font-size:66.240000px;}
.fs3_c00050{font-size:69.120000px;}
.fs0_c00050{font-size:72.000000px;}
.fs5_c00050{font-size:74.880000px;}
.y0_c00050{bottom:0.000000px;}
.y5f_c00050{bottom:73.440000px;}
.y60_c00050{bottom:75.600000px;}
.y5e_c00050{bottom:76.320000px;}
.y5d_c00050{bottom:77.040000px;}
.y5b_c00050{bottom:115.200000px;}
.y5a_c00050{bottom:115.920000px;}
.y5c_c00050{bottom:117.360000px;}
.y59_c00050{bottom:120.240000px;}
.y58_c00050{bottom:156.960000px;}
.y55_c00050{bottom:158.400000px;}
.y56_c00050{bottom:159.120000px;}
.y57_c00050{bottom:160.560000px;}
.y54_c00050{bottom:161.280000px;}
.y53_c00050{bottom:162.000000px;}
.y51_c00050{bottom:200.880000px;}
.y4f_c00050{bottom:201.600000px;}
.y52_c00050{bottom:203.040000px;}
.y50_c00050{bottom:203.760000px;}
.y4e_c00050{bottom:243.360000px;}
.y4c_c00050{bottom:244.080000px;}
.y4d_c00050{bottom:245.520000px;}
.y4b_c00050{bottom:246.240000px;}
.y4a_c00050{bottom:246.960000px;}
.y46_c00050{bottom:285.120000px;}
.y49_c00050{bottom:285.840000px;}
.y47_c00050{bottom:286.560000px;}
.y45_c00050{bottom:288.720000px;}
.y48_c00050{bottom:289.440000px;}
.y43_c00050{bottom:328.320000px;}
.y44_c00050{bottom:329.040000px;}
.y40_c00050{bottom:329.760000px;}
.y42_c00050{bottom:331.200000px;}
.y41_c00050{bottom:331.920000px;}
.y3e_c00050{bottom:371.520000px;}
.y3d_c00050{bottom:372.240000px;}
.y3f_c00050{bottom:373.680000px;}
.y3c_c00050{bottom:374.400000px;}
.y3b_c00050{bottom:375.120000px;}
.y3a_c00050{bottom:416.160000px;}
.y39_c00050{bottom:416.880000px;}
.y38_c00050{bottom:417.600000px;}
.y35_c00050{bottom:467.280000px;}
.y37_c00050{bottom:469.440000px;}
.y36_c00050{bottom:470.160000px;}
.y30_c00050{bottom:509.040000px;}
.y31_c00050{bottom:509.760000px;}
.y34_c00050{bottom:510.480000px;}
.y33_c00050{bottom:511.920000px;}
.y32_c00050{bottom:512.640000px;}
.y2e_c00050{bottom:552.240000px;}
.y2d_c00050{bottom:554.400000px;}
.y2f_c00050{bottom:555.120000px;}
.y2b_c00050{bottom:594.000000px;}
.y2c_c00050{bottom:594.720000px;}
.y2a_c00050{bottom:596.880000px;}
.y28_c00050{bottom:597.600000px;}
.y29_c00050{bottom:598.320000px;}
.y27_c00050{bottom:637.200000px;}
.y24_c00050{bottom:637.920000px;}
.y25_c00050{bottom:640.080000px;}
.y26_c00050{bottom:640.800000px;}
.y22_c00050{bottom:679.680000px;}
.y21_c00050{bottom:680.400000px;}
.y20_c00050{bottom:682.560000px;}
.y23_c00050{bottom:683.280000px;}
.y1f_c00050{bottom:722.160000px;}
.y1e_c00050{bottom:722.880000px;}
.y1c_c00050{bottom:725.040000px;}
.y1d_c00050{bottom:725.760000px;}
.y18_c00050{bottom:764.640000px;}
.y1a_c00050{bottom:765.360000px;}
.y1b_c00050{bottom:767.520000px;}
.y19_c00050{bottom:768.240000px;}
.y17_c00050{bottom:807.120000px;}
.y14_c00050{bottom:807.840000px;}
.y15_c00050{bottom:810.000000px;}
.y16_c00050{bottom:810.720000px;}
.y12_c00050{bottom:850.320000px;}
.y13_c00050{bottom:851.040000px;}
.y10_c00050{bottom:852.480000px;}
.yf_c00050{bottom:853.200000px;}
.y11_c00050{bottom:853.920000px;}
.ye_c00050{bottom:904.320000px;}
.yd_c00050{bottom:906.480000px;}
.ya_c00050{bottom:946.800000px;}
.y9_c00050{bottom:948.240000px;}
.yb_c00050{bottom:948.960000px;}
.yc_c00050{bottom:949.680000px;}
.y7_c00050{bottom:988.560000px;}
.y4_c00050{bottom:989.280000px;}
.y8_c00050{bottom:990.000000px;}
.y2_c00050{bottom:990.720000px;}
.y3_c00050{bottom:991.440000px;}
.y5_c00050{bottom:992.160000px;}
.y6_c00050{bottom:992.880000px;}
.y1_c00050{bottom:1065.600000px;}
.h6_c00050{height:31.100625px;}
.hd_c00050{height:33.692344px;}
.he_c00050{height:38.875781px;}
.h8_c00050{height:41.467500px;}
.h9_c00050{height:44.059219px;}
.h3_c00050{height:46.650937px;}
.hf_c00050{height:49.242656px;}
.hc_c00050{height:51.834375px;}
.h4_c00050{height:54.426094px;}
.ha_c00050{height:57.017812px;}
.hb_c00050{height:59.609531px;}
.h5_c00050{height:62.201250px;}
.h2_c00050{height:64.792969px;}
.h7_c00050{height:67.384687px;}
.h1_c00050{height:1143.750000px;}
.h0_c00050{height:1144.080000px;}
.w0_c00050{width:797.040000px;}
.w1_c00050{width:797.250000px;}
.x0_c00050{left:0.000000px;}
.x2_c00050{left:73.440000px;}
.x12_c00050{left:74.880000px;}
.x25_c00050{left:76.320000px;}
.x35_c00050{left:106.560000px;}
.x3d_c00050{left:116.640000px;}
.x2e_c00050{left:127.440000px;}
.x3_c00050{left:138.240000px;}
.x3b_c00050{left:149.040000px;}
.x3e_c00050{left:160.560000px;}
.x4e_c00050{left:170.640000px;}
.x21_c00050{left:172.800000px;}
.x4_c00050{left:181.440000px;}
.x1a_c00050{left:182.880000px;}
.x13_c00050{left:192.240000px;}
.x2f_c00050{left:202.320000px;}
.x1b_c00050{left:213.840000px;}
.x29_c00050{left:224.640000px;}
.xd_c00050{left:235.440000px;}
.x43_c00050{left:244.080000px;}
.x14_c00050{left:246.240000px;}
.x5_c00050{left:257.040000px;}
.x4a_c00050{left:267.120000px;}
.x3f_c00050{left:288.000000px;}
.x31_c00050{left:289.440000px;}
.x1c_c00050{left:300.240000px;}
.x2a_c00050{left:311.040000px;}
.x49_c00050{left:320.400000px;}
.x22_c00050{left:321.840000px;}
.x45_c00050{left:331.200000px;}
.xe_c00050{left:332.640000px;}
.x1d_c00050{left:334.800000px;}
.x15_c00050{left:342.720000px;}
.x44_c00050{left:354.240000px;}
.x26_c00050{left:363.600000px;}
.x36_c00050{left:365.040000px;}
.x40_c00050{left:375.120000px;}
.x16_c00050{left:385.200000px;}
.x46_c00050{left:386.640000px;}
.x4b_c00050{left:395.280000px;}
.x6_c00050{left:397.440000px;}
.x37_c00050{left:417.600000px;}
.x32_c00050{left:429.120000px;}
.x30_c00050{left:440.640000px;}
.x23_c00050{left:450.000000px;}
.xf_c00050{left:451.440000px;}
.x17_c00050{left:461.520000px;}
.x38_c00050{left:471.600000px;}
.x1e_c00050{left:473.040000px;}
.x7_c00050{left:482.400000px;}
.x33_c00050{left:492.480000px;}
.x27_c00050{left:493.920000px;}
.x2b_c00050{left:504.000000px;}
.x18_c00050{left:505.440000px;}
.x41_c00050{left:514.080000px;}
.x3c_c00050{left:525.600000px;}
.x8_c00050{left:527.040000px;}
.x34_c00050{left:537.120000px;}
.x4c_c00050{left:538.560000px;}
.x2c_c00050{left:547.200000px;}
.x42_c00050{left:557.280000px;}
.x9_c00050{left:558.720000px;}
.x10_c00050{left:570.240000px;}
.x1f_c00050{left:578.880000px;}
.x19_c00050{left:580.320000px;}
.x47_c00050{left:589.680000px;}
.x11_c00050{left:601.920000px;}
.x39_c00050{left:611.280000px;}
.xa_c00050{left:612.720000px;}
.x28_c00050{left:623.520000px;}
.xb_c00050{left:634.320000px;}
.x3a_c00050{left:643.680000px;}
.x4d_c00050{left:645.120000px;}
.x20_c00050{left:654.480000px;}
.x24_c00050{left:666.000000px;}
.x48_c00050{left:675.360000px;}
.xc_c00050{left:676.800000px;}
.x2d_c00050{left:699.120000px;}
.x1_c00050{left:711.360000px;}
@media print{
.v1_c00050{vertical-align:-10.240000pt;}
.v0_c00050{vertical-align:0.000000pt;}
.ls0_c00050{letter-spacing:0.000000pt;}
.ws0_c00050{word-spacing:-9.286827pt;}
.ws1_c00050{word-spacing:-1.727147pt;}
.ws2_c00050{word-spacing:0.000000pt;}
.fs4_c00050{font-size:30.720000pt;}
.fsb_c00050{font-size:33.280000pt;}
.fsc_c00050{font-size:38.400000pt;}
.fs6_c00050{font-size:40.960000pt;}
.fs7_c00050{font-size:43.520000pt;}
.fs1_c00050{font-size:46.080000pt;}
.fsd_c00050{font-size:48.640000pt;}
.fsa_c00050{font-size:51.200000pt;}
.fs2_c00050{font-size:53.760000pt;}
.fs8_c00050{font-size:56.320000pt;}
.fs9_c00050{font-size:58.880000pt;}
.fs3_c00050{font-size:61.440000pt;}
.fs0_c00050{font-size:64.000000pt;}
.fs5_c00050{font-size:66.560000pt;}
.y0_c00050{bottom:0.000000pt;}
.y5f_c00050{bottom:65.280000pt;}
.y60_c00050{bottom:67.200000pt;}
.y5e_c00050{bottom:67.840000pt;}
.y5d_c00050{bottom:68.480000pt;}
.y5b_c00050{bottom:102.400000pt;}
.y5a_c00050{bottom:103.040000pt;}
.y5c_c00050{bottom:104.320000pt;}
.y59_c00050{bottom:106.880000pt;}
.y58_c00050{bottom:139.520000pt;}
.y55_c00050{bottom:140.800000pt;}
.y56_c00050{bottom:141.440000pt;}
.y57_c00050{bottom:142.720000pt;}
.y54_c00050{bottom:143.360000pt;}
.y53_c00050{bottom:144.000000pt;}
.y51_c00050{bottom:178.560000pt;}
.y4f_c00050{bottom:179.200000pt;}
.y52_c00050{bottom:180.480000pt;}
.y50_c00050{bottom:181.120000pt;}
.y4e_c00050{bottom:216.320000pt;}
.y4c_c00050{bottom:216.960000pt;}
.y4d_c00050{bottom:218.240000pt;}
.y4b_c00050{bottom:218.880000pt;}
.y4a_c00050{bottom:219.520000pt;}
.y46_c00050{bottom:253.440000pt;}
.y49_c00050{bottom:254.080000pt;}
.y47_c00050{bottom:254.720000pt;}
.y45_c00050{bottom:256.640000pt;}
.y48_c00050{bottom:257.280000pt;}
.y43_c00050{bottom:291.840000pt;}
.y44_c00050{bottom:292.480000pt;}
.y40_c00050{bottom:293.120000pt;}
.y42_c00050{bottom:294.400000pt;}
.y41_c00050{bottom:295.040000pt;}
.y3e_c00050{bottom:330.240000pt;}
.y3d_c00050{bottom:330.880000pt;}
.y3f_c00050{bottom:332.160000pt;}
.y3c_c00050{bottom:332.800000pt;}
.y3b_c00050{bottom:333.440000pt;}
.y3a_c00050{bottom:369.920000pt;}
.y39_c00050{bottom:370.560000pt;}
.y38_c00050{bottom:371.200000pt;}
.y35_c00050{bottom:415.360000pt;}
.y37_c00050{bottom:417.280000pt;}
.y36_c00050{bottom:417.920000pt;}
.y30_c00050{bottom:452.480000pt;}
.y31_c00050{bottom:453.120000pt;}
.y34_c00050{bottom:453.760000pt;}
.y33_c00050{bottom:455.040000pt;}
.y32_c00050{bottom:455.680000pt;}
.y2e_c00050{bottom:490.880000pt;}
.y2d_c00050{bottom:492.800000pt;}
.y2f_c00050{bottom:493.440000pt;}
.y2b_c00050{bottom:528.000000pt;}
.y2c_c00050{bottom:528.640000pt;}
.y2a_c00050{bottom:530.560000pt;}
.y28_c00050{bottom:531.200000pt;}
.y29_c00050{bottom:531.840000pt;}
.y27_c00050{bottom:566.400000pt;}
.y24_c00050{bottom:567.040000pt;}
.y25_c00050{bottom:568.960000pt;}
.y26_c00050{bottom:569.600000pt;}
.y22_c00050{bottom:604.160000pt;}
.y21_c00050{bottom:604.800000pt;}
.y20_c00050{bottom:606.720000pt;}
.y23_c00050{bottom:607.360000pt;}
.y1f_c00050{bottom:641.920000pt;}
.y1e_c00050{bottom:642.560000pt;}
.y1c_c00050{bottom:644.480000pt;}
.y1d_c00050{bottom:645.120000pt;}
.y18_c00050{bottom:679.680000pt;}
.y1a_c00050{bottom:680.320000pt;}
.y1b_c00050{bottom:682.240000pt;}
.y19_c00050{bottom:682.880000pt;}
.y17_c00050{bottom:717.440000pt;}
.y14_c00050{bottom:718.080000pt;}
.y15_c00050{bottom:720.000000pt;}
.y16_c00050{bottom:720.640000pt;}
.y12_c00050{bottom:755.840000pt;}
.y13_c00050{bottom:756.480000pt;}
.y10_c00050{bottom:757.760000pt;}
.yf_c00050{bottom:758.400000pt;}
.y11_c00050{bottom:759.040000pt;}
.ye_c00050{bottom:803.840000pt;}
.yd_c00050{bottom:805.760000pt;}
.ya_c00050{bottom:841.600000pt;}
.y9_c00050{bottom:842.880000pt;}
.yb_c00050{bottom:843.520000pt;}
.yc_c00050{bottom:844.160000pt;}
.y7_c00050{bottom:878.720000pt;}
.y4_c00050{bottom:879.360000pt;}
.y8_c00050{bottom:880.000000pt;}
.y2_c00050{bottom:880.640000pt;}
.y3_c00050{bottom:881.280000pt;}
.y5_c00050{bottom:881.920000pt;}
.y6_c00050{bottom:882.560000pt;}
.y1_c00050{bottom:947.200000pt;}
.h6_c00050{height:27.645000pt;}
.hd_c00050{height:29.948750pt;}
.he_c00050{height:34.556250pt;}
.h8_c00050{height:36.860000pt;}
.h9_c00050{height:39.163750pt;}
.h3_c00050{height:41.467500pt;}
.hf_c00050{height:43.771250pt;}
.hc_c00050{height:46.075000pt;}
.h4_c00050{height:48.378750pt;}
.ha_c00050{height:50.682500pt;}
.hb_c00050{height:52.986250pt;}
.h5_c00050{height:55.290000pt;}
.h2_c00050{height:57.593750pt;}
.h7_c00050{height:59.897500pt;}
.h1_c00050{height:1016.666667pt;}
.h0_c00050{height:1016.960000pt;}
.w0_c00050{width:708.480000pt;}
.w1_c00050{width:708.666667pt;}
.x0_c00050{left:0.000000pt;}
.x2_c00050{left:65.280000pt;}
.x12_c00050{left:66.560000pt;}
.x25_c00050{left:67.840000pt;}
.x35_c00050{left:94.720000pt;}
.x3d_c00050{left:103.680000pt;}
.x2e_c00050{left:113.280000pt;}
.x3_c00050{left:122.880000pt;}
.x3b_c00050{left:132.480000pt;}
.x3e_c00050{left:142.720000pt;}
.x4e_c00050{left:151.680000pt;}
.x21_c00050{left:153.600000pt;}
.x4_c00050{left:161.280000pt;}
.x1a_c00050{left:162.560000pt;}
.x13_c00050{left:170.880000pt;}
.x2f_c00050{left:179.840000pt;}
.x1b_c00050{left:190.080000pt;}
.x29_c00050{left:199.680000pt;}
.xd_c00050{left:209.280000pt;}
.x43_c00050{left:216.960000pt;}
.x14_c00050{left:218.880000pt;}
.x5_c00050{left:228.480000pt;}
.x4a_c00050{left:237.440000pt;}
.x3f_c00050{left:256.000000pt;}
.x31_c00050{left:257.280000pt;}
.x1c_c00050{left:266.880000pt;}
.x2a_c00050{left:276.480000pt;}
.x49_c00050{left:284.800000pt;}
.x22_c00050{left:286.080000pt;}
.x45_c00050{left:294.400000pt;}
.xe_c00050{left:295.680000pt;}
.x1d_c00050{left:297.600000pt;}
.x15_c00050{left:304.640000pt;}
.x44_c00050{left:314.880000pt;}
.x26_c00050{left:323.200000pt;}
.x36_c00050{left:324.480000pt;}
.x40_c00050{left:333.440000pt;}
.x16_c00050{left:342.400000pt;}
.x46_c00050{left:343.680000pt;}
.x4b_c00050{left:351.360000pt;}
.x6_c00050{left:353.280000pt;}
.x37_c00050{left:371.200000pt;}
.x32_c00050{left:381.440000pt;}
.x30_c00050{left:391.680000pt;}
.x23_c00050{left:400.000000pt;}
.xf_c00050{left:401.280000pt;}
.x17_c00050{left:410.240000pt;}
.x38_c00050{left:419.200000pt;}
.x1e_c00050{left:420.480000pt;}
.x7_c00050{left:428.800000pt;}
.x33_c00050{left:437.760000pt;}
.x27_c00050{left:439.040000pt;}
.x2b_c00050{left:448.000000pt;}
.x18_c00050{left:449.280000pt;}
.x41_c00050{left:456.960000pt;}
.x3c_c00050{left:467.200000pt;}
.x8_c00050{left:468.480000pt;}
.x34_c00050{left:477.440000pt;}
.x4c_c00050{left:478.720000pt;}
.x2c_c00050{left:486.400000pt;}
.x42_c00050{left:495.360000pt;}
.x9_c00050{left:496.640000pt;}
.x10_c00050{left:506.880000pt;}
.x1f_c00050{left:514.560000pt;}
.x19_c00050{left:515.840000pt;}
.x47_c00050{left:524.160000pt;}
.x11_c00050{left:535.040000pt;}
.x39_c00050{left:543.360000pt;}
.xa_c00050{left:544.640000pt;}
.x28_c00050{left:554.240000pt;}
.xb_c00050{left:563.840000pt;}
.x3a_c00050{left:572.160000pt;}
.x4d_c00050{left:573.440000pt;}
.x20_c00050{left:581.760000pt;}
.x24_c00050{left:592.000000pt;}
.x48_c00050{left:600.320000pt;}
.xc_c00050{left:601.600000pt;}
.x2d_c00050{left:621.440000pt;}
.x1_c00050{left:632.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_25da74f8c4bdc08025683e85.woff2')format("woff");}.ff1_c00051{font-family:ff1_c00051;line-height:1.109863;font-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_c00051{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00051{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m36_c00051{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00051{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m34_c00051{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m41_c00051{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m35_c00051{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m0_c00051{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00051{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00051{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00051{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00051{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00051{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00051{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00051{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m19_c00051{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m47_c00051{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.mc_c00051{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);}
.m5f_c00051{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m17_c00051{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);}
.m57_c00051{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m13_c00051{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m16_c00051{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m32_c00051{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1_c00051{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m30_c00051{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.md_c00051{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);}
.m53_c00051{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m44_c00051{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.ma_c00051{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);}
.m15_c00051{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);}
.m31_c00051{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m12_c00051{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00051{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m23_c00051{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);}
.m1c_c00051{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);}
.m43_c00051{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);}
.m4c_c00051{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m49_c00051{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m54_c00051{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m42_c00051{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00051{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);}
.m4a_c00051{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00051{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);}
.m3f_c00051{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.mf_c00051{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00051{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m52_c00051{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m18_c00051{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);}
.m4f_c00051{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m37_c00051{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);}
.m5_c00051{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);}
.m1a_c00051{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00051{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m58_c00051{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m3_c00051{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m28_c00051{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);}
.me_c00051{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m56_c00051{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m4_c00051{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m38_c00051{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);}
.m39_c00051{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m22_c00051{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m24_c00051{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00051{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00051{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);}
.m14_c00051{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);}
.m2a_c00051{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m26_c00051{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00051{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m48_c00051{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);}
.m20_c00051{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m25_c00051{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00051{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);}
.m5d_c00051{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m8_c00051{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00051{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m33_c00051{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m11_c00051{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m7_c00051{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);}
.m45_c00051{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);}
.m29_c00051{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.mb_c00051{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m10_c00051{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m2_c00051{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m46_c00051{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);}
.m55_c00051{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00051{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);}
.m21_c00051{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m6_c00051{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m51_c00051{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00051{transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);}
.m50_c00051{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);}
.m59_c00051{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m40_c00051{transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00051{transform:matrix(0.912500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.912500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.912500,0.000000,0.000000,0.250000,0,0);}
.v0_c00051{vertical-align:0.000000px;}
.ls0_c00051{letter-spacing:0.000000px;}
.sc__c00051{text-shadow:none;}
.sc0_c00051{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00051{-webkit-text-stroke:0px transparent;}
.sc0_c00051{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00051{word-spacing:0.000000px;}
.fc0_c00051{color:transparent;}
.fse_c00051{font-size:25.920000px;}
.fs5_c00051{font-size:34.560000px;}
.fs6_c00051{font-size:37.440000px;}
.fsa_c00051{font-size:40.320000px;}
.fsc_c00051{font-size:43.200000px;}
.fs1_c00051{font-size:46.080000px;}
.fs2_c00051{font-size:48.960000px;}
.fs3_c00051{font-size:51.840000px;}
.fs4_c00051{font-size:54.720000px;}
.fsf_c00051{font-size:57.600000px;}
.fs7_c00051{font-size:60.480000px;}
.fs9_c00051{font-size:63.360000px;}
.fsd_c00051{font-size:66.240000px;}
.fs8_c00051{font-size:69.120000px;}
.fs0_c00051{font-size:72.000000px;}
.fsb_c00051{font-size:74.880000px;}
.y0_c00051{bottom:0.000000px;}
.y5d_c00051{bottom:51.840000px;}
.y5c_c00051{bottom:52.560000px;}
.y5a_c00051{bottom:53.280000px;}
.y5b_c00051{bottom:55.440000px;}
.y59_c00051{bottom:56.160000px;}
.y58_c00051{bottom:95.040000px;}
.y55_c00051{bottom:95.760000px;}
.y57_c00051{bottom:97.200000px;}
.y56_c00051{bottom:97.920000px;}
.y54_c00051{bottom:98.640000px;}
.y53_c00051{bottom:135.360000px;}
.y50_c00051{bottom:136.800000px;}
.y52_c00051{bottom:139.680000px;}
.y51_c00051{bottom:140.400000px;}
.y4f_c00051{bottom:141.120000px;}
.y4e_c00051{bottom:180.000000px;}
.y4d_c00051{bottom:182.160000px;}
.y4c_c00051{bottom:182.880000px;}
.y4a_c00051{bottom:222.480000px;}
.y4b_c00051{bottom:224.640000px;}
.y49_c00051{bottom:225.360000px;}
.y45_c00051{bottom:275.040000px;}
.y46_c00051{bottom:275.760000px;}
.y48_c00051{bottom:277.920000px;}
.y47_c00051{bottom:278.640000px;}
.y44_c00051{bottom:318.960000px;}
.y43_c00051{bottom:320.400000px;}
.y42_c00051{bottom:321.120000px;}
.y41_c00051{bottom:321.840000px;}
.y3d_c00051{bottom:360.720000px;}
.y3f_c00051{bottom:361.440000px;}
.y3e_c00051{bottom:362.880000px;}
.y3c_c00051{bottom:363.600000px;}
.y40_c00051{bottom:364.320000px;}
.y3b_c00051{bottom:403.200000px;}
.y3a_c00051{bottom:405.360000px;}
.y39_c00051{bottom:406.080000px;}
.y38_c00051{bottom:406.800000px;}
.y37_c00051{bottom:445.680000px;}
.y36_c00051{bottom:446.400000px;}
.y35_c00051{bottom:448.560000px;}
.y34_c00051{bottom:449.280000px;}
.y32_c00051{bottom:487.440000px;}
.y33_c00051{bottom:488.160000px;}
.y31_c00051{bottom:491.040000px;}
.y30_c00051{bottom:491.760000px;}
.y2f_c00051{bottom:492.480000px;}
.y2e_c00051{bottom:530.640000px;}
.y2b_c00051{bottom:531.360000px;}
.y2c_c00051{bottom:532.080000px;}
.y2d_c00051{bottom:533.520000px;}
.y2a_c00051{bottom:534.240000px;}
.y29_c00051{bottom:534.960000px;}
.y26_c00051{bottom:573.120000px;}
.y25_c00051{bottom:573.840000px;}
.y28_c00051{bottom:576.000000px;}
.y27_c00051{bottom:576.720000px;}
.y22_c00051{bottom:616.320000px;}
.y24_c00051{bottom:617.040000px;}
.y23_c00051{bottom:619.200000px;}
.y21_c00051{bottom:658.080000px;}
.y1f_c00051{bottom:661.680000px;}
.y20_c00051{bottom:662.400000px;}
.y1d_c00051{bottom:701.280000px;}
.y1c_c00051{bottom:703.440000px;}
.y1b_c00051{bottom:704.160000px;}
.y1e_c00051{bottom:704.880000px;}
.y1a_c00051{bottom:743.760000px;}
.y19_c00051{bottom:744.480000px;}
.y18_c00051{bottom:746.640000px;}
.y16_c00051{bottom:786.240000px;}
.y17_c00051{bottom:788.400000px;}
.y14_c00051{bottom:789.120000px;}
.y15_c00051{bottom:789.840000px;}
.y12_c00051{bottom:828.720000px;}
.y10_c00051{bottom:829.440000px;}
.y13_c00051{bottom:830.160000px;}
.y11_c00051{bottom:831.600000px;}
.yf_c00051{bottom:832.320000px;}
.yd_c00051{bottom:871.920000px;}
.yc_c00051{bottom:874.080000px;}
.ye_c00051{bottom:874.800000px;}
.yb_c00051{bottom:915.120000px;}
.ya_c00051{bottom:917.280000px;}
.y8_c00051{bottom:956.880000px;}
.y7_c00051{bottom:957.600000px;}
.y5_c00051{bottom:959.040000px;}
.y6_c00051{bottom:959.760000px;}
.y9_c00051{bottom:960.480000px;}
.y3_c00051{bottom:1002.240000px;}
.y2_c00051{bottom:1002.960000px;}
.y4_c00051{bottom:1003.680000px;}
.y1_c00051{bottom:1068.480000px;}
.h10_c00051{height:23.325469px;}
.h7_c00051{height:31.100625px;}
.h8_c00051{height:33.692344px;}
.hc_c00051{height:36.284062px;}
.he_c00051{height:38.875781px;}
.h3_c00051{height:41.467500px;}
.h4_c00051{height:44.059219px;}
.h5_c00051{height:46.650937px;}
.h6_c00051{height:49.242656px;}
.h11_c00051{height:51.834375px;}
.h9_c00051{height:54.426094px;}
.hb_c00051{height:57.017812px;}
.hf_c00051{height:59.609531px;}
.ha_c00051{height:62.201250px;}
.h2_c00051{height:64.792969px;}
.hd_c00051{height:67.384687px;}
.h1_c00051{height:1150.500000px;}
.h0_c00051{height:1150.560000px;}
.w1_c00051{width:805.500000px;}
.w0_c00051{width:805.680000px;}
.x0_c00051{left:0.000000px;}
.x1d_c00051{left:80.640000px;}
.xb_c00051{left:82.080000px;}
.x46_c00051{left:102.960000px;}
.x41_c00051{left:112.320000px;}
.xc_c00051{left:113.760000px;}
.x4b_c00051{left:123.120000px;}
.x1e_c00051{left:125.280000px;}
.x2d_c00051{left:133.920000px;}
.x29_c00051{left:136.080000px;}
.x54_c00051{left:144.720000px;}
.xd_c00051{left:146.880000px;}
.x24_c00051{left:156.960000px;}
.x35_c00051{left:167.040000px;}
.x42_c00051{left:177.840000px;}
.x3e_c00051{left:187.920000px;}
.x2_c00051{left:190.080000px;}
.x5b_c00051{left:197.280000px;}
.x43_c00051{left:200.880000px;}
.x17_c00051{left:210.240000px;}
.x3_c00051{left:221.040000px;}
.x55_c00051{left:222.480000px;}
.x38_c00051{left:231.120000px;}
.x2e_c00051{left:234.720000px;}
.x1f_c00051{left:241.920000px;}
.x47_c00051{left:243.360000px;}
.x4d_c00051{left:252.720000px;}
.x4_c00051{left:254.880000px;}
.x39_c00051{left:264.240000px;}
.x50_c00051{left:274.320000px;}
.x2a_c00051{left:275.760000px;}
.x20_c00051{left:285.120000px;}
.x56_c00051{left:293.760000px;}
.x5d_c00051{left:295.200000px;}
.xe_c00051{left:296.640000px;}
.x3f_c00051{left:306.720000px;}
.x18_c00051{left:308.160000px;}
.x2f_c00051{left:319.680000px;}
.x44_c00051{left:328.320000px;}
.x19_c00051{left:329.760000px;}
.x25_c00051{left:339.120000px;}
.x61_c00051{left:349.200000px;}
.x36_c00051{left:360.720000px;}
.x58_c00051{left:370.800000px;}
.x5_c00051{left:372.240000px;}
.x30_c00051{left:380.880000px;}
.x62_c00051{left:392.400000px;}
.x21_c00051{left:393.840000px;}
.x48_c00051{left:402.480000px;}
.x5e_c00051{left:403.920000px;}
.x6_c00051{left:405.360000px;}
.x5c_c00051{left:414.720000px;}
.x1a_c00051{left:424.080000px;}
.x2b_c00051{left:425.520000px;}
.x45_c00051{left:426.960000px;}
.x5f_c00051{left:434.880000px;}
.x26_c00051{left:436.320000px;}
.xf_c00051{left:447.840000px;}
.x51_c00051{left:456.480000px;}
.x31_c00051{left:458.640000px;}
.x3a_c00051{left:467.280000px;}
.x40_c00051{left:468.720000px;}
.x4e_c00051{left:478.080000px;}
.x22_c00051{left:479.520000px;}
.x59_c00051{left:488.880000px;}
.x15_c00051{left:490.320000px;}
.x52_c00051{left:499.680000px;}
.x10_c00051{left:501.120000px;}
.x63_c00051{left:509.760000px;}
.x23_c00051{left:511.920000px;}
.x37_c00051{left:521.280000px;}
.x4f_c00051{left:531.360000px;}
.x11_c00051{left:533.520000px;}
.x3b_c00051{left:543.600000px;}
.x64_c00051{left:553.680000px;}
.x7_c00051{left:555.840000px;}
.x49_c00051{left:564.480000px;}
.x12_c00051{left:565.920000px;}
.x16_c00051{left:576.720000px;}
.x2c_c00051{left:578.880000px;}
.x3c_c00051{left:585.360000px;}
.x8_c00051{left:587.520000px;}
.x4a_c00051{left:596.160000px;}
.x13_c00051{left:598.320000px;}
.x60_c00051{left:606.960000px;}
.x1b_c00051{left:608.400000px;}
.x32_c00051{left:619.200000px;}
.x57_c00051{left:621.360000px;}
.x4c_c00051{left:628.560000px;}
.x9_c00051{left:630.720000px;}
.x5a_c00051{left:639.360000px;}
.x53_c00051{left:640.800000px;}
.x14_c00051{left:652.320000px;}
.x33_c00051{left:661.680000px;}
.x27_c00051{left:663.120000px;}
.xa_c00051{left:684.000000px;}
.x3d_c00051{left:693.360000px;}
.x28_c00051{left:696.240000px;}
.x34_c00051{left:704.880000px;}
.x65_c00051{left:714.960000px;}
.x1_c00051{left:719.280000px;}
.x1c_c00051{left:727.920000px;}
@media print{
.v0_c00051{vertical-align:0.000000pt;}
.ls0_c00051{letter-spacing:0.000000pt;}
.ws0_c00051{word-spacing:0.000000pt;}
.fse_c00051{font-size:23.040000pt;}
.fs5_c00051{font-size:30.720000pt;}
.fs6_c00051{font-size:33.280000pt;}
.fsa_c00051{font-size:35.840000pt;}
.fsc_c00051{font-size:38.400000pt;}
.fs1_c00051{font-size:40.960000pt;}
.fs2_c00051{font-size:43.520000pt;}
.fs3_c00051{font-size:46.080000pt;}
.fs4_c00051{font-size:48.640000pt;}
.fsf_c00051{font-size:51.200000pt;}
.fs7_c00051{font-size:53.760000pt;}
.fs9_c00051{font-size:56.320000pt;}
.fsd_c00051{font-size:58.880000pt;}
.fs8_c00051{font-size:61.440000pt;}
.fs0_c00051{font-size:64.000000pt;}
.fsb_c00051{font-size:66.560000pt;}
.y0_c00051{bottom:0.000000pt;}
.y5d_c00051{bottom:46.080000pt;}
.y5c_c00051{bottom:46.720000pt;}
.y5a_c00051{bottom:47.360000pt;}
.y5b_c00051{bottom:49.280000pt;}
.y59_c00051{bottom:49.920000pt;}
.y58_c00051{bottom:84.480000pt;}
.y55_c00051{bottom:85.120000pt;}
.y57_c00051{bottom:86.400000pt;}
.y56_c00051{bottom:87.040000pt;}
.y54_c00051{bottom:87.680000pt;}
.y53_c00051{bottom:120.320000pt;}
.y50_c00051{bottom:121.600000pt;}
.y52_c00051{bottom:124.160000pt;}
.y51_c00051{bottom:124.800000pt;}
.y4f_c00051{bottom:125.440000pt;}
.y4e_c00051{bottom:160.000000pt;}
.y4d_c00051{bottom:161.920000pt;}
.y4c_c00051{bottom:162.560000pt;}
.y4a_c00051{bottom:197.760000pt;}
.y4b_c00051{bottom:199.680000pt;}
.y49_c00051{bottom:200.320000pt;}
.y45_c00051{bottom:244.480000pt;}
.y46_c00051{bottom:245.120000pt;}
.y48_c00051{bottom:247.040000pt;}
.y47_c00051{bottom:247.680000pt;}
.y44_c00051{bottom:283.520000pt;}
.y43_c00051{bottom:284.800000pt;}
.y42_c00051{bottom:285.440000pt;}
.y41_c00051{bottom:286.080000pt;}
.y3d_c00051{bottom:320.640000pt;}
.y3f_c00051{bottom:321.280000pt;}
.y3e_c00051{bottom:322.560000pt;}
.y3c_c00051{bottom:323.200000pt;}
.y40_c00051{bottom:323.840000pt;}
.y3b_c00051{bottom:358.400000pt;}
.y3a_c00051{bottom:360.320000pt;}
.y39_c00051{bottom:360.960000pt;}
.y38_c00051{bottom:361.600000pt;}
.y37_c00051{bottom:396.160000pt;}
.y36_c00051{bottom:396.800000pt;}
.y35_c00051{bottom:398.720000pt;}
.y34_c00051{bottom:399.360000pt;}
.y32_c00051{bottom:433.280000pt;}
.y33_c00051{bottom:433.920000pt;}
.y31_c00051{bottom:436.480000pt;}
.y30_c00051{bottom:437.120000pt;}
.y2f_c00051{bottom:437.760000pt;}
.y2e_c00051{bottom:471.680000pt;}
.y2b_c00051{bottom:472.320000pt;}
.y2c_c00051{bottom:472.960000pt;}
.y2d_c00051{bottom:474.240000pt;}
.y2a_c00051{bottom:474.880000pt;}
.y29_c00051{bottom:475.520000pt;}
.y26_c00051{bottom:509.440000pt;}
.y25_c00051{bottom:510.080000pt;}
.y28_c00051{bottom:512.000000pt;}
.y27_c00051{bottom:512.640000pt;}
.y22_c00051{bottom:547.840000pt;}
.y24_c00051{bottom:548.480000pt;}
.y23_c00051{bottom:550.400000pt;}
.y21_c00051{bottom:584.960000pt;}
.y1f_c00051{bottom:588.160000pt;}
.y20_c00051{bottom:588.800000pt;}
.y1d_c00051{bottom:623.360000pt;}
.y1c_c00051{bottom:625.280000pt;}
.y1b_c00051{bottom:625.920000pt;}
.y1e_c00051{bottom:626.560000pt;}
.y1a_c00051{bottom:661.120000pt;}
.y19_c00051{bottom:661.760000pt;}
.y18_c00051{bottom:663.680000pt;}
.y16_c00051{bottom:698.880000pt;}
.y17_c00051{bottom:700.800000pt;}
.y14_c00051{bottom:701.440000pt;}
.y15_c00051{bottom:702.080000pt;}
.y12_c00051{bottom:736.640000pt;}
.y10_c00051{bottom:737.280000pt;}
.y13_c00051{bottom:737.920000pt;}
.y11_c00051{bottom:739.200000pt;}
.yf_c00051{bottom:739.840000pt;}
.yd_c00051{bottom:775.040000pt;}
.yc_c00051{bottom:776.960000pt;}
.ye_c00051{bottom:777.600000pt;}
.yb_c00051{bottom:813.440000pt;}
.ya_c00051{bottom:815.360000pt;}
.y8_c00051{bottom:850.560000pt;}
.y7_c00051{bottom:851.200000pt;}
.y5_c00051{bottom:852.480000pt;}
.y6_c00051{bottom:853.120000pt;}
.y9_c00051{bottom:853.760000pt;}
.y3_c00051{bottom:890.880000pt;}
.y2_c00051{bottom:891.520000pt;}
.y4_c00051{bottom:892.160000pt;}
.y1_c00051{bottom:949.760000pt;}
.h10_c00051{height:20.733750pt;}
.h7_c00051{height:27.645000pt;}
.h8_c00051{height:29.948750pt;}
.hc_c00051{height:32.252500pt;}
.he_c00051{height:34.556250pt;}
.h3_c00051{height:36.860000pt;}
.h4_c00051{height:39.163750pt;}
.h5_c00051{height:41.467500pt;}
.h6_c00051{height:43.771250pt;}
.h11_c00051{height:46.075000pt;}
.h9_c00051{height:48.378750pt;}
.hb_c00051{height:50.682500pt;}
.hf_c00051{height:52.986250pt;}
.ha_c00051{height:55.290000pt;}
.h2_c00051{height:57.593750pt;}
.hd_c00051{height:59.897500pt;}
.h1_c00051{height:1022.666667pt;}
.h0_c00051{height:1022.720000pt;}
.w1_c00051{width:716.000000pt;}
.w0_c00051{width:716.160000pt;}
.x0_c00051{left:0.000000pt;}
.x1d_c00051{left:71.680000pt;}
.xb_c00051{left:72.960000pt;}
.x46_c00051{left:91.520000pt;}
.x41_c00051{left:99.840000pt;}
.xc_c00051{left:101.120000pt;}
.x4b_c00051{left:109.440000pt;}
.x1e_c00051{left:111.360000pt;}
.x2d_c00051{left:119.040000pt;}
.x29_c00051{left:120.960000pt;}
.x54_c00051{left:128.640000pt;}
.xd_c00051{left:130.560000pt;}
.x24_c00051{left:139.520000pt;}
.x35_c00051{left:148.480000pt;}
.x42_c00051{left:158.080000pt;}
.x3e_c00051{left:167.040000pt;}
.x2_c00051{left:168.960000pt;}
.x5b_c00051{left:175.360000pt;}
.x43_c00051{left:178.560000pt;}
.x17_c00051{left:186.880000pt;}
.x3_c00051{left:196.480000pt;}
.x55_c00051{left:197.760000pt;}
.x38_c00051{left:205.440000pt;}
.x2e_c00051{left:208.640000pt;}
.x1f_c00051{left:215.040000pt;}
.x47_c00051{left:216.320000pt;}
.x4d_c00051{left:224.640000pt;}
.x4_c00051{left:226.560000pt;}
.x39_c00051{left:234.880000pt;}
.x50_c00051{left:243.840000pt;}
.x2a_c00051{left:245.120000pt;}
.x20_c00051{left:253.440000pt;}
.x56_c00051{left:261.120000pt;}
.x5d_c00051{left:262.400000pt;}
.xe_c00051{left:263.680000pt;}
.x3f_c00051{left:272.640000pt;}
.x18_c00051{left:273.920000pt;}
.x2f_c00051{left:284.160000pt;}
.x44_c00051{left:291.840000pt;}
.x19_c00051{left:293.120000pt;}
.x25_c00051{left:301.440000pt;}
.x61_c00051{left:310.400000pt;}
.x36_c00051{left:320.640000pt;}
.x58_c00051{left:329.600000pt;}
.x5_c00051{left:330.880000pt;}
.x30_c00051{left:338.560000pt;}
.x62_c00051{left:348.800000pt;}
.x21_c00051{left:350.080000pt;}
.x48_c00051{left:357.760000pt;}
.x5e_c00051{left:359.040000pt;}
.x6_c00051{left:360.320000pt;}
.x5c_c00051{left:368.640000pt;}
.x1a_c00051{left:376.960000pt;}
.x2b_c00051{left:378.240000pt;}
.x45_c00051{left:379.520000pt;}
.x5f_c00051{left:386.560000pt;}
.x26_c00051{left:387.840000pt;}
.xf_c00051{left:398.080000pt;}
.x51_c00051{left:405.760000pt;}
.x31_c00051{left:407.680000pt;}
.x3a_c00051{left:415.360000pt;}
.x40_c00051{left:416.640000pt;}
.x4e_c00051{left:424.960000pt;}
.x22_c00051{left:426.240000pt;}
.x59_c00051{left:434.560000pt;}
.x15_c00051{left:435.840000pt;}
.x52_c00051{left:444.160000pt;}
.x10_c00051{left:445.440000pt;}
.x63_c00051{left:453.120000pt;}
.x23_c00051{left:455.040000pt;}
.x37_c00051{left:463.360000pt;}
.x4f_c00051{left:472.320000pt;}
.x11_c00051{left:474.240000pt;}
.x3b_c00051{left:483.200000pt;}
.x64_c00051{left:492.160000pt;}
.x7_c00051{left:494.080000pt;}
.x49_c00051{left:501.760000pt;}
.x12_c00051{left:503.040000pt;}
.x16_c00051{left:512.640000pt;}
.x2c_c00051{left:514.560000pt;}
.x3c_c00051{left:520.320000pt;}
.x8_c00051{left:522.240000pt;}
.x4a_c00051{left:529.920000pt;}
.x13_c00051{left:531.840000pt;}
.x60_c00051{left:539.520000pt;}
.x1b_c00051{left:540.800000pt;}
.x32_c00051{left:550.400000pt;}
.x57_c00051{left:552.320000pt;}
.x4c_c00051{left:558.720000pt;}
.x9_c00051{left:560.640000pt;}
.x5a_c00051{left:568.320000pt;}
.x53_c00051{left:569.600000pt;}
.x14_c00051{left:579.840000pt;}
.x33_c00051{left:588.160000pt;}
.x27_c00051{left:589.440000pt;}
.xa_c00051{left:608.000000pt;}
.x3d_c00051{left:616.320000pt;}
.x28_c00051{left:618.880000pt;}
.x34_c00051{left:626.560000pt;}
.x65_c00051{left:635.520000pt;}
.x1_c00051{left:639.360000pt;}
.x1c_c00051{left:647.040000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a63d59430f2137f891dd75eb.woff2')format("woff");}.ff1_c00052{font-family:ff1_c00052;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4c_c00052{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00052{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m57_c00052{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m54_c00052{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00052{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00052{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m55_c00052{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00052{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.ma_c00052{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00052{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m40_c00052{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m14_c00052{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00052{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m0_c00052{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m49_c00052{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m21_c00052{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m8_c00052{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.md_c00052{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);}
.m47_c00052{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m2_c00052{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);}
.m50_c00052{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00052{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1_c00052{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m17_c00052{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m3_c00052{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);}
.m46_c00052{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m29_c00052{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.me_c00052{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m27_c00052{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.mf_c00052{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m20_c00052{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00052{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m58_c00052{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);}
.m1f_c00052{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);}
.m7_c00052{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_c00052{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m6_c00052{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m52_c00052{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);}
.m39_c00052{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m43_c00052{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);}
.m33_c00052{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);}
.m38_c00052{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00052{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00052{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m24_c00052{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m32_c00052{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);}
.m1b_c00052{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m26_c00052{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m10_c00052{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);}
.m3b_c00052{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);}
.m31_c00052{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m41_c00052{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m4_c00052{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m25_c00052{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);}
.m2f_c00052{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00052{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m42_c00052{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);}
.m44_c00052{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m9_c00052{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00052{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00052{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);}
.m5_c00052{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m53_c00052{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m34_c00052{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);}
.m2d_c00052{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m30_c00052{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m45_c00052{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);}
.m3c_c00052{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m28_c00052{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m19_c00052{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);}
.m13_c00052{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m18_c00052{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);}
.m11_c00052{transform:matrix(0.525000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525000,0.000000,0.000000,0.250000,0,0);}
.mc_c00052{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m22_c00052{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m56_c00052{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.mb_c00052{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m35_c00052{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m51_c00052{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m15_c00052{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);}
.m1c_c00052{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00052{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m37_c00052{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m12_c00052{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.m36_c00052{transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00052{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m16_c00052{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00052{transform:matrix(0.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680000,0.000000,0.000000,0.250000,0,0);}
.m48_c00052{transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);}
.v1_c00052{vertical-align:-5.760000px;}
.v0_c00052{vertical-align:0.000000px;}
.v2_c00052{vertical-align:11.520000px;}
.ls1_c00052{letter-spacing:0.000000px;}
.ls0_c00052{letter-spacing:26.250000px;}
.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;}
}
.ws1_c00052{word-spacing:-1.596480px;}
.ws2_c00052{word-spacing:0.000000px;}
.ws0_c00052{word-spacing:4.705200px;}
.fc0_c00052{color:transparent;}
.fs9_c00052{font-size:34.560000px;}
.fs7_c00052{font-size:37.440000px;}
.fsc_c00052{font-size:40.320000px;}
.fsb_c00052{font-size:46.080000px;}
.fs4_c00052{font-size:48.960000px;}
.fs2_c00052{font-size:51.840000px;}
.fs5_c00052{font-size:54.720000px;}
.fsa_c00052{font-size:57.600000px;}
.fs3_c00052{font-size:60.480000px;}
.fs1_c00052{font-size:63.360000px;}
.fs6_c00052{font-size:66.240000px;}
.fs8_c00052{font-size:69.120000px;}
.fs0_c00052{font-size:72.000000px;}
.y0_c00052{bottom:0.000000px;}
.y5d_c00052{bottom:72.000000px;}
.y5b_c00052{bottom:72.720000px;}
.y5c_c00052{bottom:73.440000px;}
.y59_c00052{bottom:74.160000px;}
.y5a_c00052{bottom:75.600000px;}
.y58_c00052{bottom:76.320000px;}
.y57_c00052{bottom:77.040000px;}
.y55_c00052{bottom:115.920000px;}
.y56_c00052{bottom:118.080000px;}
.y54_c00052{bottom:118.800000px;}
.y53_c00052{bottom:119.520000px;}
.y50_c00052{bottom:157.680000px;}
.y51_c00052{bottom:158.400000px;}
.y4f_c00052{bottom:161.280000px;}
.y52_c00052{bottom:162.000000px;}
.y4d_c00052{bottom:200.880000px;}
.y4b_c00052{bottom:201.600000px;}
.y4e_c00052{bottom:203.040000px;}
.y4c_c00052{bottom:203.760000px;}
.y4a_c00052{bottom:204.480000px;}
.y47_c00052{bottom:242.640000px;}
.y49_c00052{bottom:243.360000px;}
.y46_c00052{bottom:244.080000px;}
.y48_c00052{bottom:245.520000px;}
.y45_c00052{bottom:246.240000px;}
.y44_c00052{bottom:286.560000px;}
.y43_c00052{bottom:288.720000px;}
.y42_c00052{bottom:289.440000px;}
.y3f_c00052{bottom:328.320000px;}
.y3d_c00052{bottom:329.040000px;}
.y41_c00052{bottom:330.480000px;}
.y3e_c00052{bottom:331.200000px;}
.y40_c00052{bottom:331.920000px;}
.y3b_c00052{bottom:370.800000px;}
.y39_c00052{bottom:371.520000px;}
.y3a_c00052{bottom:372.960000px;}
.y38_c00052{bottom:373.680000px;}
.y3c_c00052{bottom:374.400000px;}
.y36_c00052{bottom:413.280000px;}
.y37_c00052{bottom:416.160000px;}
.y35_c00052{bottom:416.880000px;}
.y32_c00052{bottom:456.480000px;}
.y33_c00052{bottom:458.640000px;}
.y34_c00052{bottom:459.360000px;}
.y30_c00052{bottom:498.240000px;}
.y2e_c00052{bottom:498.960000px;}
.y31_c00052{bottom:499.680000px;}
.y2f_c00052{bottom:501.120000px;}
.y2d_c00052{bottom:501.840000px;}
.y2b_c00052{bottom:540.720000px;}
.y2a_c00052{bottom:541.440000px;}
.y2c_c00052{bottom:543.600000px;}
.y29_c00052{bottom:544.320000px;}
.y28_c00052{bottom:545.040000px;}
.y27_c00052{bottom:596.160000px;}
.y25_c00052{bottom:596.880000px;}
.y26_c00052{bottom:597.600000px;}
.y21_c00052{bottom:637.200000px;}
.y23_c00052{bottom:637.920000px;}
.y22_c00052{bottom:640.080000px;}
.y24_c00052{bottom:640.800000px;}
.y1d_c00052{bottom:678.960000px;}
.y20_c00052{bottom:679.680000px;}
.y1c_c00052{bottom:681.840000px;}
.y1f_c00052{bottom:682.560000px;}
.y1e_c00052{bottom:683.280000px;}
.y1a_c00052{bottom:722.880000px;}
.y19_c00052{bottom:725.040000px;}
.y1b_c00052{bottom:725.760000px;}
.y18_c00052{bottom:765.360000px;}
.y17_c00052{bottom:766.080000px;}
.y16_c00052{bottom:768.240000px;}
.y15_c00052{bottom:820.080000px;}
.y13_c00052{bottom:860.400000px;}
.y14_c00052{bottom:861.120000px;}
.y12_c00052{bottom:863.280000px;}
.y11_c00052{bottom:864.000000px;}
.yf_c00052{bottom:902.880000px;}
.y10_c00052{bottom:903.600000px;}
.ye_c00052{bottom:904.320000px;}
.yc_c00052{bottom:905.760000px;}
.yd_c00052{bottom:906.480000px;}
.y8_c00052{bottom:945.360000px;}
.ya_c00052{bottom:946.080000px;}
.yb_c00052{bottom:946.800000px;}
.y7_c00052{bottom:948.240000px;}
.y9_c00052{bottom:948.960000px;}
.y2_c00052{bottom:988.560000px;}
.y6_c00052{bottom:989.280000px;}
.y3_c00052{bottom:990.720000px;}
.y4_c00052{bottom:991.440000px;}
.y5_c00052{bottom:992.160000px;}
.y1_c00052{bottom:1061.280000px;}
.hc_c00052{height:31.100625px;}
.h9_c00052{height:33.692344px;}
.hf_c00052{height:36.284062px;}
.he_c00052{height:41.467500px;}
.h5_c00052{height:44.059219px;}
.h6_c00052{height:46.650937px;}
.h4_c00052{height:48.666094px;}
.h7_c00052{height:49.242656px;}
.hd_c00052{height:51.834375px;}
.hb_c00052{height:54.426094px;}
.h3_c00052{height:57.017812px;}
.h10_c00052{height:58.170937px;}
.h8_c00052{height:59.609531px;}
.ha_c00052{height:62.201250px;}
.h2_c00052{height:64.792969px;}
.h0_c00052{height:1141.920000px;}
.h1_c00052{height:1142.250000px;}
.w0_c00052{width:793.440000px;}
.w1_c00052{width:793.500000px;}
.x0_c00052{left:0.000000px;}
.x2_c00052{left:72.000000px;}
.x4b_c00052{left:73.440000px;}
.x1b_c00052{left:102.960000px;}
.xa_c00052{left:105.120000px;}
.x4c_c00052{left:113.760000px;}
.x2e_c00052{left:115.200000px;}
.x11_c00052{left:125.280000px;}
.x3f_c00052{left:135.360000px;}
.x35_c00052{left:146.160000px;}
.x4f_c00052{left:157.680000px;}
.x12_c00052{left:159.120000px;}
.xb_c00052{left:168.480000px;}
.x1c_c00052{left:179.280000px;}
.x32_c00052{left:190.080000px;}
.x36_c00052{left:200.160000px;}
.x1d_c00052{left:211.680000px;}
.x3_c00052{left:222.480000px;}
.x2f_c00052{left:233.280000px;}
.x13_c00052{left:244.080000px;}
.x1e_c00052{left:254.160000px;}
.xc_c00052{left:255.600000px;}
.x14_c00052{left:275.760000px;}
.x3a_c00052{left:287.280000px;}
.x1f_c00052{left:298.080000px;}
.x15_c00052{left:307.440000px;}
.x3d_c00052{left:318.240000px;}
.x26_c00052{left:319.680000px;}
.x45_c00052{left:329.040000px;}
.x20_c00052{left:330.480000px;}
.x3b_c00052{left:339.840000px;}
.x4_c00052{left:341.280000px;}
.x47_c00052{left:352.080000px;}
.x16_c00052{left:362.160000px;}
.x48_c00052{left:370.800000px;}
.x27_c00052{left:372.240000px;}
.xd_c00052{left:373.680000px;}
.x41_c00052{left:393.840000px;}
.xe_c00052{left:405.360000px;}
.x2c_c00052{left:415.440000px;}
.x21_c00052{left:425.520000px;}
.x5_c00052{left:427.680000px;}
.x49_c00052{left:437.040000px;}
.x30_c00052{left:447.840000px;}
.x4d_c00052{left:449.280000px;}
.x39_c00052{left:457.920000px;}
.x43_c00052{left:460.080000px;}
.x37_c00052{left:469.440000px;}
.x28_c00052{left:480.240000px;}
.x17_c00052{left:491.040000px;}
.x22_c00052{left:501.120000px;}
.x40_c00052{left:511.200000px;}
.x6_c00052{left:514.080000px;}
.x4a_c00052{left:523.440000px;}
.x18_c00052{left:524.880000px;}
.x23_c00052{left:534.240000px;}
.x29_c00052{left:544.320000px;}
.x7_c00052{left:546.480000px;}
.x42_c00052{left:555.120000px;}
.x2d_c00052{left:556.560000px;}
.x4e_c00052{left:564.480000px;}
.x3c_c00052{left:565.920000px;}
.x19_c00052{left:567.360000px;}
.x38_c00052{left:576.720000px;}
.x33_c00052{left:578.160000px;}
.x2a_c00052{left:587.520000px;}
.x24_c00052{left:599.040000px;}
.x8_c00052{left:609.840000px;}
.x3e_c00052{left:619.200000px;}
.x25_c00052{left:630.720000px;}
.x31_c00052{left:641.520000px;}
.x44_c00052{left:642.960000px;}
.x46_c00052{left:650.880000px;}
.xf_c00052{left:653.040000px;}
.x9_c00052{left:663.120000px;}
.x34_c00052{left:673.920000px;}
.x2b_c00052{left:696.240000px;}
.x10_c00052{left:707.040000px;}
.x1_c00052{left:712.080000px;}
.x1a_c00052{left:717.120000px;}
@media print{
.v1_c00052{vertical-align:-5.120000pt;}
.v0_c00052{vertical-align:0.000000pt;}
.v2_c00052{vertical-align:10.240000pt;}
.ls1_c00052{letter-spacing:0.000000pt;}
.ls0_c00052{letter-spacing:23.333333pt;}
.ws1_c00052{word-spacing:-1.419093pt;}
.ws2_c00052{word-spacing:0.000000pt;}
.ws0_c00052{word-spacing:4.182400pt;}
.fs9_c00052{font-size:30.720000pt;}
.fs7_c00052{font-size:33.280000pt;}
.fsc_c00052{font-size:35.840000pt;}
.fsb_c00052{font-size:40.960000pt;}
.fs4_c00052{font-size:43.520000pt;}
.fs2_c00052{font-size:46.080000pt;}
.fs5_c00052{font-size:48.640000pt;}
.fsa_c00052{font-size:51.200000pt;}
.fs3_c00052{font-size:53.760000pt;}
.fs1_c00052{font-size:56.320000pt;}
.fs6_c00052{font-size:58.880000pt;}
.fs8_c00052{font-size:61.440000pt;}
.fs0_c00052{font-size:64.000000pt;}
.y0_c00052{bottom:0.000000pt;}
.y5d_c00052{bottom:64.000000pt;}
.y5b_c00052{bottom:64.640000pt;}
.y5c_c00052{bottom:65.280000pt;}
.y59_c00052{bottom:65.920000pt;}
.y5a_c00052{bottom:67.200000pt;}
.y58_c00052{bottom:67.840000pt;}
.y57_c00052{bottom:68.480000pt;}
.y55_c00052{bottom:103.040000pt;}
.y56_c00052{bottom:104.960000pt;}
.y54_c00052{bottom:105.600000pt;}
.y53_c00052{bottom:106.240000pt;}
.y50_c00052{bottom:140.160000pt;}
.y51_c00052{bottom:140.800000pt;}
.y4f_c00052{bottom:143.360000pt;}
.y52_c00052{bottom:144.000000pt;}
.y4d_c00052{bottom:178.560000pt;}
.y4b_c00052{bottom:179.200000pt;}
.y4e_c00052{bottom:180.480000pt;}
.y4c_c00052{bottom:181.120000pt;}
.y4a_c00052{bottom:181.760000pt;}
.y47_c00052{bottom:215.680000pt;}
.y49_c00052{bottom:216.320000pt;}
.y46_c00052{bottom:216.960000pt;}
.y48_c00052{bottom:218.240000pt;}
.y45_c00052{bottom:218.880000pt;}
.y44_c00052{bottom:254.720000pt;}
.y43_c00052{bottom:256.640000pt;}
.y42_c00052{bottom:257.280000pt;}
.y3f_c00052{bottom:291.840000pt;}
.y3d_c00052{bottom:292.480000pt;}
.y41_c00052{bottom:293.760000pt;}
.y3e_c00052{bottom:294.400000pt;}
.y40_c00052{bottom:295.040000pt;}
.y3b_c00052{bottom:329.600000pt;}
.y39_c00052{bottom:330.240000pt;}
.y3a_c00052{bottom:331.520000pt;}
.y38_c00052{bottom:332.160000pt;}
.y3c_c00052{bottom:332.800000pt;}
.y36_c00052{bottom:367.360000pt;}
.y37_c00052{bottom:369.920000pt;}
.y35_c00052{bottom:370.560000pt;}
.y32_c00052{bottom:405.760000pt;}
.y33_c00052{bottom:407.680000pt;}
.y34_c00052{bottom:408.320000pt;}
.y30_c00052{bottom:442.880000pt;}
.y2e_c00052{bottom:443.520000pt;}
.y31_c00052{bottom:444.160000pt;}
.y2f_c00052{bottom:445.440000pt;}
.y2d_c00052{bottom:446.080000pt;}
.y2b_c00052{bottom:480.640000pt;}
.y2a_c00052{bottom:481.280000pt;}
.y2c_c00052{bottom:483.200000pt;}
.y29_c00052{bottom:483.840000pt;}
.y28_c00052{bottom:484.480000pt;}
.y27_c00052{bottom:529.920000pt;}
.y25_c00052{bottom:530.560000pt;}
.y26_c00052{bottom:531.200000pt;}
.y21_c00052{bottom:566.400000pt;}
.y23_c00052{bottom:567.040000pt;}
.y22_c00052{bottom:568.960000pt;}
.y24_c00052{bottom:569.600000pt;}
.y1d_c00052{bottom:603.520000pt;}
.y20_c00052{bottom:604.160000pt;}
.y1c_c00052{bottom:606.080000pt;}
.y1f_c00052{bottom:606.720000pt;}
.y1e_c00052{bottom:607.360000pt;}
.y1a_c00052{bottom:642.560000pt;}
.y19_c00052{bottom:644.480000pt;}
.y1b_c00052{bottom:645.120000pt;}
.y18_c00052{bottom:680.320000pt;}
.y17_c00052{bottom:680.960000pt;}
.y16_c00052{bottom:682.880000pt;}
.y15_c00052{bottom:728.960000pt;}
.y13_c00052{bottom:764.800000pt;}
.y14_c00052{bottom:765.440000pt;}
.y12_c00052{bottom:767.360000pt;}
.y11_c00052{bottom:768.000000pt;}
.yf_c00052{bottom:802.560000pt;}
.y10_c00052{bottom:803.200000pt;}
.ye_c00052{bottom:803.840000pt;}
.yc_c00052{bottom:805.120000pt;}
.yd_c00052{bottom:805.760000pt;}
.y8_c00052{bottom:840.320000pt;}
.ya_c00052{bottom:840.960000pt;}
.yb_c00052{bottom:841.600000pt;}
.y7_c00052{bottom:842.880000pt;}
.y9_c00052{bottom:843.520000pt;}
.y2_c00052{bottom:878.720000pt;}
.y6_c00052{bottom:879.360000pt;}
.y3_c00052{bottom:880.640000pt;}
.y4_c00052{bottom:881.280000pt;}
.y5_c00052{bottom:881.920000pt;}
.y1_c00052{bottom:943.360000pt;}
.hc_c00052{height:27.645000pt;}
.h9_c00052{height:29.948750pt;}
.hf_c00052{height:32.252500pt;}
.he_c00052{height:36.860000pt;}
.h5_c00052{height:39.163750pt;}
.h6_c00052{height:41.467500pt;}
.h4_c00052{height:43.258750pt;}
.h7_c00052{height:43.771250pt;}
.hd_c00052{height:46.075000pt;}
.hb_c00052{height:48.378750pt;}
.h3_c00052{height:50.682500pt;}
.h10_c00052{height:51.707500pt;}
.h8_c00052{height:52.986250pt;}
.ha_c00052{height:55.290000pt;}
.h2_c00052{height:57.593750pt;}
.h0_c00052{height:1015.040000pt;}
.h1_c00052{height:1015.333333pt;}
.w0_c00052{width:705.280000pt;}
.w1_c00052{width:705.333333pt;}
.x0_c00052{left:0.000000pt;}
.x2_c00052{left:64.000000pt;}
.x4b_c00052{left:65.280000pt;}
.x1b_c00052{left:91.520000pt;}
.xa_c00052{left:93.440000pt;}
.x4c_c00052{left:101.120000pt;}
.x2e_c00052{left:102.400000pt;}
.x11_c00052{left:111.360000pt;}
.x3f_c00052{left:120.320000pt;}
.x35_c00052{left:129.920000pt;}
.x4f_c00052{left:140.160000pt;}
.x12_c00052{left:141.440000pt;}
.xb_c00052{left:149.760000pt;}
.x1c_c00052{left:159.360000pt;}
.x32_c00052{left:168.960000pt;}
.x36_c00052{left:177.920000pt;}
.x1d_c00052{left:188.160000pt;}
.x3_c00052{left:197.760000pt;}
.x2f_c00052{left:207.360000pt;}
.x13_c00052{left:216.960000pt;}
.x1e_c00052{left:225.920000pt;}
.xc_c00052{left:227.200000pt;}
.x14_c00052{left:245.120000pt;}
.x3a_c00052{left:255.360000pt;}
.x1f_c00052{left:264.960000pt;}
.x15_c00052{left:273.280000pt;}
.x3d_c00052{left:282.880000pt;}
.x26_c00052{left:284.160000pt;}
.x45_c00052{left:292.480000pt;}
.x20_c00052{left:293.760000pt;}
.x3b_c00052{left:302.080000pt;}
.x4_c00052{left:303.360000pt;}
.x47_c00052{left:312.960000pt;}
.x16_c00052{left:321.920000pt;}
.x48_c00052{left:329.600000pt;}
.x27_c00052{left:330.880000pt;}
.xd_c00052{left:332.160000pt;}
.x41_c00052{left:350.080000pt;}
.xe_c00052{left:360.320000pt;}
.x2c_c00052{left:369.280000pt;}
.x21_c00052{left:378.240000pt;}
.x5_c00052{left:380.160000pt;}
.x49_c00052{left:388.480000pt;}
.x30_c00052{left:398.080000pt;}
.x4d_c00052{left:399.360000pt;}
.x39_c00052{left:407.040000pt;}
.x43_c00052{left:408.960000pt;}
.x37_c00052{left:417.280000pt;}
.x28_c00052{left:426.880000pt;}
.x17_c00052{left:436.480000pt;}
.x22_c00052{left:445.440000pt;}
.x40_c00052{left:454.400000pt;}
.x6_c00052{left:456.960000pt;}
.x4a_c00052{left:465.280000pt;}
.x18_c00052{left:466.560000pt;}
.x23_c00052{left:474.880000pt;}
.x29_c00052{left:483.840000pt;}
.x7_c00052{left:485.760000pt;}
.x42_c00052{left:493.440000pt;}
.x2d_c00052{left:494.720000pt;}
.x4e_c00052{left:501.760000pt;}
.x3c_c00052{left:503.040000pt;}
.x19_c00052{left:504.320000pt;}
.x38_c00052{left:512.640000pt;}
.x33_c00052{left:513.920000pt;}
.x2a_c00052{left:522.240000pt;}
.x24_c00052{left:532.480000pt;}
.x8_c00052{left:542.080000pt;}
.x3e_c00052{left:550.400000pt;}
.x25_c00052{left:560.640000pt;}
.x31_c00052{left:570.240000pt;}
.x44_c00052{left:571.520000pt;}
.x46_c00052{left:578.560000pt;}
.xf_c00052{left:580.480000pt;}
.x9_c00052{left:589.440000pt;}
.x34_c00052{left:599.040000pt;}
.x2b_c00052{left:618.880000pt;}
.x10_c00052{left:628.480000pt;}
.x1_c00052{left:632.960000pt;}
.x1a_c00052{left:637.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6611e2d66a3e42cc40d4226f.woff2')format("woff");}.ff1_c00053{font-family:ff1_c00053;line-height:1.109863;font-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_c00053{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_c00053{transform:matrix(0.246925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246925,0.000000,0.000000,0.250000,0,0);}
.m6_c00053{transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);}
.m16_c00053{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.ma_c00053{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.mf_c00053{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m32_c00053{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m31_c00053{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00053{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00053{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00053{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m38_c00053{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00053{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m53_c00053{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00053{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m8_c00053{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);}
.m4a_c00053{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m0_c00053{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);}
.m57_c00053{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);}
.m59_c00053{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m56_c00053{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);}
.m33_c00053{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00053{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);}
.m48_c00053{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);}
.m2f_c00053{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m26_c00053{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);}
.m1d_c00053{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m14_c00053{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m5_c00053{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m7_c00053{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);}
.m43_c00053{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00053{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);}
.m36_c00053{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m55_c00053{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);}
.m3a_c00053{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m13_c00053{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);}
.m30_c00053{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);}
.m4_c00053{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);}
.m3c_c00053{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m21_c00053{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.mb_c00053{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.me_c00053{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);}
.m29_c00053{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m17_c00053{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m47_c00053{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);}
.m46_c00053{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);}
.m37_c00053{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m24_c00053{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00053{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m15_c00053{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m45_c00053{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);}
.m4c_c00053{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m3_c00053{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);}
.m41_c00053{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00053{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);}
.md_c00053{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m10_c00053{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m19_c00053{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);}
.m58_c00053{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m25_c00053{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m9_c00053{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);}
.m49_c00053{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00053{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m42_c00053{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00053{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00053{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m44_c00053{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);}
.m51_c00053{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m18_c00053{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m52_c00053{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m23_c00053{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);}
.m3d_c00053{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m20_c00053{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m22_c00053{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m1_c00053{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_c00053{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m28_c00053{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00053{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m34_c00053{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m54_c00053{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);}
.m35_c00053{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00053{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);}
.m40_c00053{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);}
.m39_c00053{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00053{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00053{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m12_c00053{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00053{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);}
.m27_c00053{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);}
.m50_c00053{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);}
.m2_c00053{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00053{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.v0_c00053{vertical-align:0.000000px;}
.ls0_c00053{letter-spacing:0.000000px;}
.sc__c00053{text-shadow:none;}
.sc0_c00053{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00053{-webkit-text-stroke:0px transparent;}
.sc0_c00053{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00053{word-spacing:0.000000px;}
.fc0_c00053{color:transparent;}
.fs2_c00053{font-size:34.560000px;}
.fs7_c00053{font-size:37.440000px;}
.fsa_c00053{font-size:43.200000px;}
.fs3_c00053{font-size:46.080000px;}
.fs4_c00053{font-size:48.960000px;}
.fs1_c00053{font-size:51.840000px;}
.fs5_c00053{font-size:54.720000px;}
.fsd_c00053{font-size:57.600000px;}
.fs6_c00053{font-size:60.480000px;}
.fs9_c00053{font-size:63.360000px;}
.fs8_c00053{font-size:66.240000px;}
.fs0_c00053{font-size:69.120000px;}
.fsc_c00053{font-size:72.000000px;}
.fsb_c00053{font-size:74.880000px;}
.y0_c00053{bottom:0.000000px;}
.y63_c00053{bottom:51.840000px;}
.y64_c00053{bottom:53.280000px;}
.y62_c00053{bottom:54.000000px;}
.y61_c00053{bottom:54.720000px;}
.y60_c00053{bottom:55.440000px;}
.y5f_c00053{bottom:56.160000px;}
.y5a_c00053{bottom:94.320000px;}
.y5b_c00053{bottom:95.040000px;}
.y5e_c00053{bottom:96.480000px;}
.y5d_c00053{bottom:97.200000px;}
.y5c_c00053{bottom:97.920000px;}
.y58_c00053{bottom:136.800000px;}
.y55_c00053{bottom:137.520000px;}
.y59_c00053{bottom:138.960000px;}
.y57_c00053{bottom:139.680000px;}
.y56_c00053{bottom:140.400000px;}
.y53_c00053{bottom:179.280000px;}
.y54_c00053{bottom:180.000000px;}
.y51_c00053{bottom:182.160000px;}
.y52_c00053{bottom:182.880000px;}
.y50_c00053{bottom:222.480000px;}
.y4d_c00053{bottom:224.640000px;}
.y4f_c00053{bottom:225.360000px;}
.y4e_c00053{bottom:226.080000px;}
.y49_c00053{bottom:264.960000px;}
.y4a_c00053{bottom:267.120000px;}
.y4c_c00053{bottom:267.840000px;}
.y4b_c00053{bottom:268.560000px;}
.y48_c00053{bottom:307.440000px;}
.y46_c00053{bottom:309.600000px;}
.y47_c00053{bottom:310.320000px;}
.y44_c00053{bottom:349.920000px;}
.y45_c00053{bottom:352.080000px;}
.y43_c00053{bottom:352.800000px;}
.y3e_c00053{bottom:392.400000px;}
.y42_c00053{bottom:393.120000px;}
.y3f_c00053{bottom:394.560000px;}
.y40_c00053{bottom:395.280000px;}
.y41_c00053{bottom:396.000000px;}
.y3d_c00053{bottom:434.880000px;}
.y3c_c00053{bottom:437.760000px;}
.y3a_c00053{bottom:478.080000px;}
.y39_c00053{bottom:480.240000px;}
.y3b_c00053{bottom:480.960000px;}
.y35_c00053{bottom:519.840000px;}
.y37_c00053{bottom:520.560000px;}
.y38_c00053{bottom:522.720000px;}
.y36_c00053{bottom:523.440000px;}
.y34_c00053{bottom:524.160000px;}
.y31_c00053{bottom:562.320000px;}
.y33_c00053{bottom:563.040000px;}
.y30_c00053{bottom:565.200000px;}
.y32_c00053{bottom:565.920000px;}
.y2f_c00053{bottom:615.600000px;}
.y2e_c00053{bottom:618.480000px;}
.y29_c00053{bottom:658.080000px;}
.y2d_c00053{bottom:658.800000px;}
.y2a_c00053{bottom:660.240000px;}
.y2b_c00053{bottom:660.960000px;}
.y2c_c00053{bottom:661.680000px;}
.y26_c00053{bottom:700.560000px;}
.y25_c00053{bottom:702.720000px;}
.y27_c00053{bottom:703.440000px;}
.y28_c00053{bottom:704.160000px;}
.y22_c00053{bottom:743.040000px;}
.y24_c00053{bottom:743.760000px;}
.y23_c00053{bottom:744.480000px;}
.y1f_c00053{bottom:745.200000px;}
.y20_c00053{bottom:745.920000px;}
.y21_c00053{bottom:746.640000px;}
.y1a_c00053{bottom:784.800000px;}
.y1d_c00053{bottom:785.520000px;}
.y1e_c00053{bottom:786.240000px;}
.y19_c00053{bottom:787.680000px;}
.y1b_c00053{bottom:788.400000px;}
.y1c_c00053{bottom:789.120000px;}
.y16_c00053{bottom:828.000000px;}
.y15_c00053{bottom:830.880000px;}
.y18_c00053{bottom:831.600000px;}
.y17_c00053{bottom:832.320000px;}
.y10_c00053{bottom:870.480000px;}
.y14_c00053{bottom:871.200000px;}
.y13_c00053{bottom:871.920000px;}
.y12_c00053{bottom:873.360000px;}
.y11_c00053{bottom:874.080000px;}
.yc_c00053{bottom:912.960000px;}
.yd_c00053{bottom:913.680000px;}
.ye_c00053{bottom:914.400000px;}
.yb_c00053{bottom:915.840000px;}
.yf_c00053{bottom:917.280000px;}
.y6_c00053{bottom:955.440000px;}
.y7_c00053{bottom:956.160000px;}
.y8_c00053{bottom:958.320000px;}
.y9_c00053{bottom:959.040000px;}
.ya_c00053{bottom:959.760000px;}
.y4_c00053{bottom:999.360000px;}
.y2_c00053{bottom:1001.520000px;}
.y3_c00053{bottom:1002.240000px;}
.y5_c00053{bottom:1002.960000px;}
.y1_c00053{bottom:1067.760000px;}
.h4_c00053{height:31.100625px;}
.h9_c00053{height:33.692344px;}
.hc_c00053{height:38.875781px;}
.h5_c00053{height:41.467500px;}
.h6_c00053{height:44.059219px;}
.h3_c00053{height:46.650937px;}
.h7_c00053{height:49.242656px;}
.hf_c00053{height:51.834375px;}
.h8_c00053{height:54.426094px;}
.hb_c00053{height:57.017812px;}
.ha_c00053{height:59.609531px;}
.h2_c00053{height:62.201250px;}
.he_c00053{height:64.792969px;}
.hd_c00053{height:67.384687px;}
.h0_c00053{height:1141.920000px;}
.h1_c00053{height:1142.250000px;}
.w0_c00053{width:793.440000px;}
.w1_c00053{width:793.500000px;}
.x0_c00053{left:0.000000px;}
.x2_c00053{left:72.000000px;}
.x20_c00053{left:73.440000px;}
.x46_c00053{left:74.880000px;}
.x30_c00053{left:94.320000px;}
.x2a_c00053{left:103.680000px;}
.x21_c00053{left:115.920000px;}
.x1a_c00053{left:126.000000px;}
.x3_c00053{left:136.080000px;}
.x54_c00053{left:137.520000px;}
.x4f_c00053{left:146.880000px;}
.x39_c00053{left:149.040000px;}
.xa_c00053{left:157.680000px;}
.x41_c00053{left:159.120000px;}
.x4d_c00053{left:169.200000px;}
.x22_c00053{left:179.280000px;}
.x47_c00053{left:180.720000px;}
.x4_c00053{left:190.080000px;}
.x31_c00053{left:201.600000px;}
.x15_c00053{left:211.680000px;}
.x3a_c00053{left:213.120000px;}
.xb_c00053{left:223.200000px;}
.x53_c00053{left:234.720000px;}
.x36_c00053{left:244.080000px;}
.x4a_c00053{left:245.520000px;}
.x5_c00053{left:255.600000px;}
.x26_c00053{left:266.400000px;}
.x52_c00053{left:276.480000px;}
.xc_c00053{left:286.560000px;}
.x42_c00053{left:288.000000px;}
.x2b_c00053{left:298.080000px;}
.x50_c00053{left:308.880000px;}
.x16_c00053{left:319.680000px;}
.x2c_c00053{left:329.040000px;}
.x27_c00053{left:330.480000px;}
.x1b_c00053{left:340.560000px;}
.x6_c00053{left:352.080000px;}
.x23_c00053{left:362.880000px;}
.x49_c00053{left:373.680000px;}
.x1c_c00053{left:383.760000px;}
.xd_c00053{left:394.560000px;}
.x17_c00053{left:405.360000px;}
.x1d_c00053{left:415.440000px;}
.xe_c00053{left:416.880000px;}
.x18_c00053{left:427.680000px;}
.x3b_c00053{left:437.760000px;}
.x51_c00053{left:447.120000px;}
.xf_c00053{left:449.280000px;}
.x37_c00053{left:458.640000px;}
.x24_c00053{left:460.080000px;}
.x32_c00053{left:469.440000px;}
.x3c_c00053{left:470.880000px;}
.x25_c00053{left:479.520000px;}
.x4e_c00053{left:480.960000px;}
.x2d_c00053{left:492.480000px;}
.x33_c00053{left:501.120000px;}
.x4b_c00053{left:503.280000px;}
.x1e_c00053{left:513.360000px;}
.x10_c00053{left:522.720000px;}
.x2e_c00053{left:524.160000px;}
.x7_c00053{left:527.040000px;}
.x3f_c00053{left:534.240000px;}
.x43_c00053{left:535.680000px;}
.x1f_c00053{left:546.480000px;}
.x2f_c00053{left:555.840000px;}
.x55_c00053{left:557.280000px;}
.x11_c00053{left:567.360000px;}
.x19_c00053{left:578.160000px;}
.x34_c00053{left:588.960000px;}
.x44_c00053{left:598.320000px;}
.x8_c00053{left:599.760000px;}
.x3d_c00053{left:609.840000px;}
.x12_c00053{left:611.280000px;}
.x35_c00053{left:620.640000px;}
.x28_c00053{left:630.720000px;}
.x9_c00053{left:632.160000px;}
.x3e_c00053{left:642.240000px;}
.x29_c00053{left:652.320000px;}
.x38_c00053{left:655.920000px;}
.x13_c00053{left:663.840000px;}
.x40_c00053{left:675.360000px;}
.x4c_c00053{left:685.440000px;}
.x45_c00053{left:686.880000px;}
.x48_c00053{left:695.520000px;}
.x14_c00053{left:696.960000px;}
.x1_c00053{left:698.400000px;}
@media print{
.v0_c00053{vertical-align:0.000000pt;}
.ls0_c00053{letter-spacing:0.000000pt;}
.ws0_c00053{word-spacing:0.000000pt;}
.fs2_c00053{font-size:30.720000pt;}
.fs7_c00053{font-size:33.280000pt;}
.fsa_c00053{font-size:38.400000pt;}
.fs3_c00053{font-size:40.960000pt;}
.fs4_c00053{font-size:43.520000pt;}
.fs1_c00053{font-size:46.080000pt;}
.fs5_c00053{font-size:48.640000pt;}
.fsd_c00053{font-size:51.200000pt;}
.fs6_c00053{font-size:53.760000pt;}
.fs9_c00053{font-size:56.320000pt;}
.fs8_c00053{font-size:58.880000pt;}
.fs0_c00053{font-size:61.440000pt;}
.fsc_c00053{font-size:64.000000pt;}
.fsb_c00053{font-size:66.560000pt;}
.y0_c00053{bottom:0.000000pt;}
.y63_c00053{bottom:46.080000pt;}
.y64_c00053{bottom:47.360000pt;}
.y62_c00053{bottom:48.000000pt;}
.y61_c00053{bottom:48.640000pt;}
.y60_c00053{bottom:49.280000pt;}
.y5f_c00053{bottom:49.920000pt;}
.y5a_c00053{bottom:83.840000pt;}
.y5b_c00053{bottom:84.480000pt;}
.y5e_c00053{bottom:85.760000pt;}
.y5d_c00053{bottom:86.400000pt;}
.y5c_c00053{bottom:87.040000pt;}
.y58_c00053{bottom:121.600000pt;}
.y55_c00053{bottom:122.240000pt;}
.y59_c00053{bottom:123.520000pt;}
.y57_c00053{bottom:124.160000pt;}
.y56_c00053{bottom:124.800000pt;}
.y53_c00053{bottom:159.360000pt;}
.y54_c00053{bottom:160.000000pt;}
.y51_c00053{bottom:161.920000pt;}
.y52_c00053{bottom:162.560000pt;}
.y50_c00053{bottom:197.760000pt;}
.y4d_c00053{bottom:199.680000pt;}
.y4f_c00053{bottom:200.320000pt;}
.y4e_c00053{bottom:200.960000pt;}
.y49_c00053{bottom:235.520000pt;}
.y4a_c00053{bottom:237.440000pt;}
.y4c_c00053{bottom:238.080000pt;}
.y4b_c00053{bottom:238.720000pt;}
.y48_c00053{bottom:273.280000pt;}
.y46_c00053{bottom:275.200000pt;}
.y47_c00053{bottom:275.840000pt;}
.y44_c00053{bottom:311.040000pt;}
.y45_c00053{bottom:312.960000pt;}
.y43_c00053{bottom:313.600000pt;}
.y3e_c00053{bottom:348.800000pt;}
.y42_c00053{bottom:349.440000pt;}
.y3f_c00053{bottom:350.720000pt;}
.y40_c00053{bottom:351.360000pt;}
.y41_c00053{bottom:352.000000pt;}
.y3d_c00053{bottom:386.560000pt;}
.y3c_c00053{bottom:389.120000pt;}
.y3a_c00053{bottom:424.960000pt;}
.y39_c00053{bottom:426.880000pt;}
.y3b_c00053{bottom:427.520000pt;}
.y35_c00053{bottom:462.080000pt;}
.y37_c00053{bottom:462.720000pt;}
.y38_c00053{bottom:464.640000pt;}
.y36_c00053{bottom:465.280000pt;}
.y34_c00053{bottom:465.920000pt;}
.y31_c00053{bottom:499.840000pt;}
.y33_c00053{bottom:500.480000pt;}
.y30_c00053{bottom:502.400000pt;}
.y32_c00053{bottom:503.040000pt;}
.y2f_c00053{bottom:547.200000pt;}
.y2e_c00053{bottom:549.760000pt;}
.y29_c00053{bottom:584.960000pt;}
.y2d_c00053{bottom:585.600000pt;}
.y2a_c00053{bottom:586.880000pt;}
.y2b_c00053{bottom:587.520000pt;}
.y2c_c00053{bottom:588.160000pt;}
.y26_c00053{bottom:622.720000pt;}
.y25_c00053{bottom:624.640000pt;}
.y27_c00053{bottom:625.280000pt;}
.y28_c00053{bottom:625.920000pt;}
.y22_c00053{bottom:660.480000pt;}
.y24_c00053{bottom:661.120000pt;}
.y23_c00053{bottom:661.760000pt;}
.y1f_c00053{bottom:662.400000pt;}
.y20_c00053{bottom:663.040000pt;}
.y21_c00053{bottom:663.680000pt;}
.y1a_c00053{bottom:697.600000pt;}
.y1d_c00053{bottom:698.240000pt;}
.y1e_c00053{bottom:698.880000pt;}
.y19_c00053{bottom:700.160000pt;}
.y1b_c00053{bottom:700.800000pt;}
.y1c_c00053{bottom:701.440000pt;}
.y16_c00053{bottom:736.000000pt;}
.y15_c00053{bottom:738.560000pt;}
.y18_c00053{bottom:739.200000pt;}
.y17_c00053{bottom:739.840000pt;}
.y10_c00053{bottom:773.760000pt;}
.y14_c00053{bottom:774.400000pt;}
.y13_c00053{bottom:775.040000pt;}
.y12_c00053{bottom:776.320000pt;}
.y11_c00053{bottom:776.960000pt;}
.yc_c00053{bottom:811.520000pt;}
.yd_c00053{bottom:812.160000pt;}
.ye_c00053{bottom:812.800000pt;}
.yb_c00053{bottom:814.080000pt;}
.yf_c00053{bottom:815.360000pt;}
.y6_c00053{bottom:849.280000pt;}
.y7_c00053{bottom:849.920000pt;}
.y8_c00053{bottom:851.840000pt;}
.y9_c00053{bottom:852.480000pt;}
.ya_c00053{bottom:853.120000pt;}
.y4_c00053{bottom:888.320000pt;}
.y2_c00053{bottom:890.240000pt;}
.y3_c00053{bottom:890.880000pt;}
.y5_c00053{bottom:891.520000pt;}
.y1_c00053{bottom:949.120000pt;}
.h4_c00053{height:27.645000pt;}
.h9_c00053{height:29.948750pt;}
.hc_c00053{height:34.556250pt;}
.h5_c00053{height:36.860000pt;}
.h6_c00053{height:39.163750pt;}
.h3_c00053{height:41.467500pt;}
.h7_c00053{height:43.771250pt;}
.hf_c00053{height:46.075000pt;}
.h8_c00053{height:48.378750pt;}
.hb_c00053{height:50.682500pt;}
.ha_c00053{height:52.986250pt;}
.h2_c00053{height:55.290000pt;}
.he_c00053{height:57.593750pt;}
.hd_c00053{height:59.897500pt;}
.h0_c00053{height:1015.040000pt;}
.h1_c00053{height:1015.333333pt;}
.w0_c00053{width:705.280000pt;}
.w1_c00053{width:705.333333pt;}
.x0_c00053{left:0.000000pt;}
.x2_c00053{left:64.000000pt;}
.x20_c00053{left:65.280000pt;}
.x46_c00053{left:66.560000pt;}
.x30_c00053{left:83.840000pt;}
.x2a_c00053{left:92.160000pt;}
.x21_c00053{left:103.040000pt;}
.x1a_c00053{left:112.000000pt;}
.x3_c00053{left:120.960000pt;}
.x54_c00053{left:122.240000pt;}
.x4f_c00053{left:130.560000pt;}
.x39_c00053{left:132.480000pt;}
.xa_c00053{left:140.160000pt;}
.x41_c00053{left:141.440000pt;}
.x4d_c00053{left:150.400000pt;}
.x22_c00053{left:159.360000pt;}
.x47_c00053{left:160.640000pt;}
.x4_c00053{left:168.960000pt;}
.x31_c00053{left:179.200000pt;}
.x15_c00053{left:188.160000pt;}
.x3a_c00053{left:189.440000pt;}
.xb_c00053{left:198.400000pt;}
.x53_c00053{left:208.640000pt;}
.x36_c00053{left:216.960000pt;}
.x4a_c00053{left:218.240000pt;}
.x5_c00053{left:227.200000pt;}
.x26_c00053{left:236.800000pt;}
.x52_c00053{left:245.760000pt;}
.xc_c00053{left:254.720000pt;}
.x42_c00053{left:256.000000pt;}
.x2b_c00053{left:264.960000pt;}
.x50_c00053{left:274.560000pt;}
.x16_c00053{left:284.160000pt;}
.x2c_c00053{left:292.480000pt;}
.x27_c00053{left:293.760000pt;}
.x1b_c00053{left:302.720000pt;}
.x6_c00053{left:312.960000pt;}
.x23_c00053{left:322.560000pt;}
.x49_c00053{left:332.160000pt;}
.x1c_c00053{left:341.120000pt;}
.xd_c00053{left:350.720000pt;}
.x17_c00053{left:360.320000pt;}
.x1d_c00053{left:369.280000pt;}
.xe_c00053{left:370.560000pt;}
.x18_c00053{left:380.160000pt;}
.x3b_c00053{left:389.120000pt;}
.x51_c00053{left:397.440000pt;}
.xf_c00053{left:399.360000pt;}
.x37_c00053{left:407.680000pt;}
.x24_c00053{left:408.960000pt;}
.x32_c00053{left:417.280000pt;}
.x3c_c00053{left:418.560000pt;}
.x25_c00053{left:426.240000pt;}
.x4e_c00053{left:427.520000pt;}
.x2d_c00053{left:437.760000pt;}
.x33_c00053{left:445.440000pt;}
.x4b_c00053{left:447.360000pt;}
.x1e_c00053{left:456.320000pt;}
.x10_c00053{left:464.640000pt;}
.x2e_c00053{left:465.920000pt;}
.x7_c00053{left:468.480000pt;}
.x3f_c00053{left:474.880000pt;}
.x43_c00053{left:476.160000pt;}
.x1f_c00053{left:485.760000pt;}
.x2f_c00053{left:494.080000pt;}
.x55_c00053{left:495.360000pt;}
.x11_c00053{left:504.320000pt;}
.x19_c00053{left:513.920000pt;}
.x34_c00053{left:523.520000pt;}
.x44_c00053{left:531.840000pt;}
.x8_c00053{left:533.120000pt;}
.x3d_c00053{left:542.080000pt;}
.x12_c00053{left:543.360000pt;}
.x35_c00053{left:551.680000pt;}
.x28_c00053{left:560.640000pt;}
.x9_c00053{left:561.920000pt;}
.x3e_c00053{left:570.880000pt;}
.x29_c00053{left:579.840000pt;}
.x38_c00053{left:583.040000pt;}
.x13_c00053{left:590.080000pt;}
.x40_c00053{left:600.320000pt;}
.x4c_c00053{left:609.280000pt;}
.x45_c00053{left:610.560000pt;}
.x48_c00053{left:618.240000pt;}
.x14_c00053{left:619.520000pt;}
.x1_c00053{left:620.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b13ac2e27a360cd6adc90e82.woff2')format("woff");}.ff1_c00054{font-family:ff1_c00054;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m45_c00054{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m29_c00054{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m19_c00054{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);}
.m51_c00054{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m44_c00054{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00054{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m57_c00054{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m37_c00054{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m47_c00054{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m56_c00054{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m40_c00054{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m39_c00054{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.ma_c00054{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m43_c00054{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m48_c00054{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m7_c00054{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m52_c00054{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00054{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m36_c00054{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);}
.m3c_c00054{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m0_c00054{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m14_c00054{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m17_c00054{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m9_c00054{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00054{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m26_c00054{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_c00054{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00054{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.me_c00054{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);}
.m6_c00054{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00054{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);}
.m38_c00054{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m35_c00054{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);}
.m22_c00054{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m54_c00054{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);}
.m28_c00054{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);}
.m3e_c00054{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.md_c00054{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m33_c00054{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);}
.m42_c00054{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00054{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);}
.m2d_c00054{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00054{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);}
.m13_c00054{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);}
.m23_c00054{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00054{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m4_c00054{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00054{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);}
.m12_c00054{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m21_c00054{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m27_c00054{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_c00054{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m18_c00054{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);}
.m2e_c00054{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00054{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00054{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m24_c00054{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00054{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);}
.m59_c00054{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m58_c00054{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m31_c00054{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00054{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);}
.m53_c00054{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m46_c00054{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00054{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m49_c00054{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);}
.m3_c00054{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);}
.m2_c00054{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m20_c00054{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);}
.m34_c00054{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m11_c00054{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.mc_c00054{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);}
.m32_c00054{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00054{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m30_c00054{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00054{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00054{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00054{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);}
.m4f_c00054{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00054{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m55_c00054{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m8_c00054{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m25_c00054{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.mb_c00054{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.mf_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);}
.m1_c00054{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00054{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m41_c00054{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m5_c00054{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m50_c00054{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m15_c00054{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00054{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00054{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.v0_c00054{vertical-align:0.000000px;}
.v1_c00054{vertical-align:8.640000px;}
.ls0_c00054{letter-spacing:0.000000px;}
.sc__c00054{text-shadow:none;}
.sc0_c00054{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00054{-webkit-text-stroke:0px transparent;}
.sc0_c00054{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00054{word-spacing:-6.712560px;}
.ws1_c00054{word-spacing:0.000000px;}
.fc0_c00054{color:transparent;}
.fs4_c00054{font-size:34.560000px;}
.fs1_c00054{font-size:37.440000px;}
.fs9_c00054{font-size:40.320000px;}
.fsa_c00054{font-size:46.080000px;}
.fs0_c00054{font-size:48.960000px;}
.fs2_c00054{font-size:51.840000px;}
.fs7_c00054{font-size:54.720000px;}
.fsb_c00054{font-size:57.600000px;}
.fs3_c00054{font-size:60.480000px;}
.fs5_c00054{font-size:63.360000px;}
.fsc_c00054{font-size:66.240000px;}
.fs6_c00054{font-size:69.120000px;}
.fs8_c00054{font-size:72.000000px;}
.fsd_c00054{font-size:74.880000px;}
.y0_c00054{bottom:0.000000px;}
.y57_c00054{bottom:79.920000px;}
.y5b_c00054{bottom:80.640000px;}
.y5a_c00054{bottom:81.360000px;}
.y59_c00054{bottom:82.080000px;}
.y58_c00054{bottom:82.800000px;}
.y56_c00054{bottom:83.520000px;}
.y55_c00054{bottom:84.240000px;}
.y53_c00054{bottom:120.960000px;}
.y50_c00054{bottom:123.120000px;}
.y54_c00054{bottom:123.840000px;}
.y52_c00054{bottom:124.560000px;}
.y51_c00054{bottom:125.280000px;}
.y4e_c00054{bottom:163.440000px;}
.y4f_c00054{bottom:164.160000px;}
.y4c_c00054{bottom:164.880000px;}
.y4b_c00054{bottom:165.600000px;}
.y4d_c00054{bottom:167.040000px;}
.y4a_c00054{bottom:167.760000px;}
.y49_c00054{bottom:168.480000px;}
.y47_c00054{bottom:207.360000px;}
.y48_c00054{bottom:208.800000px;}
.y46_c00054{bottom:209.520000px;}
.y45_c00054{bottom:210.240000px;}
.y43_c00054{bottom:249.120000px;}
.y42_c00054{bottom:250.560000px;}
.y44_c00054{bottom:252.000000px;}
.y41_c00054{bottom:252.720000px;}
.y3f_c00054{bottom:292.320000px;}
.y40_c00054{bottom:293.760000px;}
.y3e_c00054{bottom:294.480000px;}
.y3d_c00054{bottom:295.200000px;}
.y3a_c00054{bottom:334.800000px;}
.y38_c00054{bottom:335.520000px;}
.y3c_c00054{bottom:336.960000px;}
.y39_c00054{bottom:337.680000px;}
.y3b_c00054{bottom:338.400000px;}
.y35_c00054{bottom:378.000000px;}
.y36_c00054{bottom:379.440000px;}
.y37_c00054{bottom:380.160000px;}
.y34_c00054{bottom:380.880000px;}
.y31_c00054{bottom:429.840000px;}
.y33_c00054{bottom:431.280000px;}
.y32_c00054{bottom:432.720000px;}
.y2e_c00054{bottom:472.320000px;}
.y2f_c00054{bottom:473.040000px;}
.y30_c00054{bottom:475.200000px;}
.y2d_c00054{bottom:475.920000px;}
.y2b_c00054{bottom:514.800000px;}
.y2c_c00054{bottom:515.520000px;}
.y29_c00054{bottom:516.240000px;}
.y2a_c00054{bottom:518.400000px;}
.y28_c00054{bottom:558.000000px;}
.y27_c00054{bottom:560.880000px;}
.y26_c00054{bottom:561.600000px;}
.y25_c00054{bottom:600.480000px;}
.y23_c00054{bottom:601.200000px;}
.y22_c00054{bottom:603.360000px;}
.y24_c00054{bottom:604.080000px;}
.y21_c00054{bottom:653.760000px;}
.y20_c00054{bottom:656.640000px;}
.y1f_c00054{bottom:657.360000px;}
.y1d_c00054{bottom:696.240000px;}
.y1b_c00054{bottom:696.960000px;}
.y1e_c00054{bottom:699.120000px;}
.y1c_c00054{bottom:699.840000px;}
.y1a_c00054{bottom:739.440000px;}
.y19_c00054{bottom:742.320000px;}
.y18_c00054{bottom:743.040000px;}
.y17_c00054{bottom:781.920000px;}
.y14_c00054{bottom:782.640000px;}
.y16_c00054{bottom:784.080000px;}
.y15_c00054{bottom:784.800000px;}
.yf_c00054{bottom:824.400000px;}
.y13_c00054{bottom:825.120000px;}
.y11_c00054{bottom:826.560000px;}
.y12_c00054{bottom:827.280000px;}
.y10_c00054{bottom:828.000000px;}
.ye_c00054{bottom:867.600000px;}
.yc_c00054{bottom:869.760000px;}
.yd_c00054{bottom:870.480000px;}
.yb_c00054{bottom:909.360000px;}
.y9_c00054{bottom:912.240000px;}
.ya_c00054{bottom:912.960000px;}
.y7_c00054{bottom:951.840000px;}
.y5_c00054{bottom:952.560000px;}
.y8_c00054{bottom:954.000000px;}
.y4_c00054{bottom:954.720000px;}
.y6_c00054{bottom:955.440000px;}
.y3_c00054{bottom:995.760000px;}
.y2_c00054{bottom:997.200000px;}
.y1_c00054{bottom:997.920000px;}
.h6_c00054{height:31.100625px;}
.h3_c00054{height:33.692344px;}
.hb_c00054{height:36.284062px;}
.hc_c00054{height:41.467500px;}
.h2_c00054{height:44.059219px;}
.h4_c00054{height:46.650937px;}
.h9_c00054{height:49.242656px;}
.hd_c00054{height:51.834375px;}
.h5_c00054{height:54.426094px;}
.h7_c00054{height:57.017812px;}
.he_c00054{height:59.609531px;}
.h8_c00054{height:62.201250px;}
.ha_c00054{height:64.792969px;}
.hf_c00054{height:67.384687px;}
.h0_c00054{height:1153.440000px;}
.h1_c00054{height:1153.500000px;}
.w0_c00054{width:810.000000px;}
.x0_c00054{left:0.000000px;}
.x2f_c00054{left:82.800000px;}
.x9_c00054{left:84.240000px;}
.x5e_c00054{left:104.400000px;}
.x48_c00054{left:105.840000px;}
.xa_c00054{left:117.360000px;}
.x41_c00054{left:127.440000px;}
.x14_c00054{left:138.240000px;}
.x4d_c00054{left:147.600000px;}
.x1f_c00054{left:159.840000px;}
.x15_c00054{left:170.640000px;}
.x5c_c00054{left:180.000000px;}
.x51_c00054{left:183.600000px;}
.x46_c00054{left:190.800000px;}
.x1_c00054{left:192.240000px;}
.x35_c00054{left:203.040000px;}
.x3c_c00054{left:213.120000px;}
.xb_c00054{left:214.560000px;}
.x47_c00054{left:223.200000px;}
.x2_c00054{left:233.280000px;}
.x18_c00054{left:235.440000px;}
.x59_c00054{left:244.800000px;}
.x20_c00054{left:246.240000px;}
.x27_c00054{left:265.680000px;}
.x52_c00054{left:267.840000px;}
.x3d_c00054{left:277.200000px;}
.x3_c00054{left:278.640000px;}
.x36_c00054{left:288.000000px;}
.x19_c00054{left:298.800000px;}
.x42_c00054{left:308.880000px;}
.x28_c00054{left:310.320000px;}
.x3e_c00054{left:320.400000px;}
.x49_c00054{left:330.480000px;}
.xc_c00054{left:332.640000px;}
.x21_c00054{left:341.280000px;}
.x1a_c00054{left:343.440000px;}
.x5d_c00054{left:351.360000px;}
.x53_c00054{left:352.800000px;}
.x39_c00054{left:362.880000px;}
.xd_c00054{left:364.320000px;}
.x1c_c00054{left:374.400000px;}
.x30_c00054{left:384.480000px;}
.x22_c00054{left:385.920000px;}
.xe_c00054{left:396.000000px;}
.x1d_c00054{left:406.800000px;}
.x29_c00054{left:416.880000px;}
.x31_c00054{left:426.960000px;}
.x4_c00054{left:428.400000px;}
.x2a_c00054{left:438.480000px;}
.xf_c00054{left:439.920000px;}
.x3f_c00054{left:448.560000px;}
.x4e_c00054{left:459.360000px;}
.x10_c00054{left:460.800000px;}
.x5f_c00054{left:469.440000px;}
.x5_c00054{left:471.600000px;}
.x4f_c00054{left:480.240000px;}
.x16_c00054{left:482.400000px;}
.x44_c00054{left:491.040000px;}
.x1e_c00054{left:493.200000px;}
.x37_c00054{left:502.560000px;}
.x23_c00054{left:504.720000px;}
.x4a_c00054{left:514.080000px;}
.x54_c00054{left:515.520000px;}
.x32_c00054{left:524.880000px;}
.x2b_c00054{left:534.240000px;}
.x11_c00054{left:535.680000px;}
.x6_c00054{left:537.120000px;}
.x38_c00054{left:544.320000px;}
.x4b_c00054{left:545.760000px;}
.x3a_c00054{left:557.280000px;}
.x33_c00054{left:558.720000px;}
.x45_c00054{left:565.920000px;}
.x7_c00054{left:568.800000px;}
.x50_c00054{left:576.720000px;}
.x40_c00054{left:578.880000px;}
.x24_c00054{left:589.680000px;}
.x12_c00054{left:591.840000px;}
.x2c_c00054{left:600.480000px;}
.x17_c00054{left:601.920000px;}
.x1b_c00054{left:611.280000px;}
.x55_c00054{left:621.360000px;}
.x13_c00054{left:622.800000px;}
.x3b_c00054{left:632.880000px;}
.x8_c00054{left:644.400000px;}
.x56_c00054{left:653.040000px;}
.x34_c00054{left:654.480000px;}
.x5a_c00054{left:665.280000px;}
.x25_c00054{left:676.080000px;}
.x58_c00054{left:678.240000px;}
.x57_c00054{left:684.720000px;}
.x2d_c00054{left:686.880000px;}
.x5b_c00054{left:696.240000px;}
.x43_c00054{left:697.680000px;}
.x26_c00054{left:708.480000px;}
.x2e_c00054{left:718.560000px;}
.x4c_c00054{left:730.080000px;}
@media print{
.v0_c00054{vertical-align:0.000000pt;}
.v1_c00054{vertical-align:7.680000pt;}
.ls0_c00054{letter-spacing:0.000000pt;}
.ws0_c00054{word-spacing:-5.966720pt;}
.ws1_c00054{word-spacing:0.000000pt;}
.fs4_c00054{font-size:30.720000pt;}
.fs1_c00054{font-size:33.280000pt;}
.fs9_c00054{font-size:35.840000pt;}
.fsa_c00054{font-size:40.960000pt;}
.fs0_c00054{font-size:43.520000pt;}
.fs2_c00054{font-size:46.080000pt;}
.fs7_c00054{font-size:48.640000pt;}
.fsb_c00054{font-size:51.200000pt;}
.fs3_c00054{font-size:53.760000pt;}
.fs5_c00054{font-size:56.320000pt;}
.fsc_c00054{font-size:58.880000pt;}
.fs6_c00054{font-size:61.440000pt;}
.fs8_c00054{font-size:64.000000pt;}
.fsd_c00054{font-size:66.560000pt;}
.y0_c00054{bottom:0.000000pt;}
.y57_c00054{bottom:71.040000pt;}
.y5b_c00054{bottom:71.680000pt;}
.y5a_c00054{bottom:72.320000pt;}
.y59_c00054{bottom:72.960000pt;}
.y58_c00054{bottom:73.600000pt;}
.y56_c00054{bottom:74.240000pt;}
.y55_c00054{bottom:74.880000pt;}
.y53_c00054{bottom:107.520000pt;}
.y50_c00054{bottom:109.440000pt;}
.y54_c00054{bottom:110.080000pt;}
.y52_c00054{bottom:110.720000pt;}
.y51_c00054{bottom:111.360000pt;}
.y4e_c00054{bottom:145.280000pt;}
.y4f_c00054{bottom:145.920000pt;}
.y4c_c00054{bottom:146.560000pt;}
.y4b_c00054{bottom:147.200000pt;}
.y4d_c00054{bottom:148.480000pt;}
.y4a_c00054{bottom:149.120000pt;}
.y49_c00054{bottom:149.760000pt;}
.y47_c00054{bottom:184.320000pt;}
.y48_c00054{bottom:185.600000pt;}
.y46_c00054{bottom:186.240000pt;}
.y45_c00054{bottom:186.880000pt;}
.y43_c00054{bottom:221.440000pt;}
.y42_c00054{bottom:222.720000pt;}
.y44_c00054{bottom:224.000000pt;}
.y41_c00054{bottom:224.640000pt;}
.y3f_c00054{bottom:259.840000pt;}
.y40_c00054{bottom:261.120000pt;}
.y3e_c00054{bottom:261.760000pt;}
.y3d_c00054{bottom:262.400000pt;}
.y3a_c00054{bottom:297.600000pt;}
.y38_c00054{bottom:298.240000pt;}
.y3c_c00054{bottom:299.520000pt;}
.y39_c00054{bottom:300.160000pt;}
.y3b_c00054{bottom:300.800000pt;}
.y35_c00054{bottom:336.000000pt;}
.y36_c00054{bottom:337.280000pt;}
.y37_c00054{bottom:337.920000pt;}
.y34_c00054{bottom:338.560000pt;}
.y31_c00054{bottom:382.080000pt;}
.y33_c00054{bottom:383.360000pt;}
.y32_c00054{bottom:384.640000pt;}
.y2e_c00054{bottom:419.840000pt;}
.y2f_c00054{bottom:420.480000pt;}
.y30_c00054{bottom:422.400000pt;}
.y2d_c00054{bottom:423.040000pt;}
.y2b_c00054{bottom:457.600000pt;}
.y2c_c00054{bottom:458.240000pt;}
.y29_c00054{bottom:458.880000pt;}
.y2a_c00054{bottom:460.800000pt;}
.y28_c00054{bottom:496.000000pt;}
.y27_c00054{bottom:498.560000pt;}
.y26_c00054{bottom:499.200000pt;}
.y25_c00054{bottom:533.760000pt;}
.y23_c00054{bottom:534.400000pt;}
.y22_c00054{bottom:536.320000pt;}
.y24_c00054{bottom:536.960000pt;}
.y21_c00054{bottom:581.120000pt;}
.y20_c00054{bottom:583.680000pt;}
.y1f_c00054{bottom:584.320000pt;}
.y1d_c00054{bottom:618.880000pt;}
.y1b_c00054{bottom:619.520000pt;}
.y1e_c00054{bottom:621.440000pt;}
.y1c_c00054{bottom:622.080000pt;}
.y1a_c00054{bottom:657.280000pt;}
.y19_c00054{bottom:659.840000pt;}
.y18_c00054{bottom:660.480000pt;}
.y17_c00054{bottom:695.040000pt;}
.y14_c00054{bottom:695.680000pt;}
.y16_c00054{bottom:696.960000pt;}
.y15_c00054{bottom:697.600000pt;}
.yf_c00054{bottom:732.800000pt;}
.y13_c00054{bottom:733.440000pt;}
.y11_c00054{bottom:734.720000pt;}
.y12_c00054{bottom:735.360000pt;}
.y10_c00054{bottom:736.000000pt;}
.ye_c00054{bottom:771.200000pt;}
.yc_c00054{bottom:773.120000pt;}
.yd_c00054{bottom:773.760000pt;}
.yb_c00054{bottom:808.320000pt;}
.y9_c00054{bottom:810.880000pt;}
.ya_c00054{bottom:811.520000pt;}
.y7_c00054{bottom:846.080000pt;}
.y5_c00054{bottom:846.720000pt;}
.y8_c00054{bottom:848.000000pt;}
.y4_c00054{bottom:848.640000pt;}
.y6_c00054{bottom:849.280000pt;}
.y3_c00054{bottom:885.120000pt;}
.y2_c00054{bottom:886.400000pt;}
.y1_c00054{bottom:887.040000pt;}
.h6_c00054{height:27.645000pt;}
.h3_c00054{height:29.948750pt;}
.hb_c00054{height:32.252500pt;}
.hc_c00054{height:36.860000pt;}
.h2_c00054{height:39.163750pt;}
.h4_c00054{height:41.467500pt;}
.h9_c00054{height:43.771250pt;}
.hd_c00054{height:46.075000pt;}
.h5_c00054{height:48.378750pt;}
.h7_c00054{height:50.682500pt;}
.he_c00054{height:52.986250pt;}
.h8_c00054{height:55.290000pt;}
.ha_c00054{height:57.593750pt;}
.hf_c00054{height:59.897500pt;}
.h0_c00054{height:1025.280000pt;}
.h1_c00054{height:1025.333333pt;}
.w0_c00054{width:720.000000pt;}
.x0_c00054{left:0.000000pt;}
.x2f_c00054{left:73.600000pt;}
.x9_c00054{left:74.880000pt;}
.x5e_c00054{left:92.800000pt;}
.x48_c00054{left:94.080000pt;}
.xa_c00054{left:104.320000pt;}
.x41_c00054{left:113.280000pt;}
.x14_c00054{left:122.880000pt;}
.x4d_c00054{left:131.200000pt;}
.x1f_c00054{left:142.080000pt;}
.x15_c00054{left:151.680000pt;}
.x5c_c00054{left:160.000000pt;}
.x51_c00054{left:163.200000pt;}
.x46_c00054{left:169.600000pt;}
.x1_c00054{left:170.880000pt;}
.x35_c00054{left:180.480000pt;}
.x3c_c00054{left:189.440000pt;}
.xb_c00054{left:190.720000pt;}
.x47_c00054{left:198.400000pt;}
.x2_c00054{left:207.360000pt;}
.x18_c00054{left:209.280000pt;}
.x59_c00054{left:217.600000pt;}
.x20_c00054{left:218.880000pt;}
.x27_c00054{left:236.160000pt;}
.x52_c00054{left:238.080000pt;}
.x3d_c00054{left:246.400000pt;}
.x3_c00054{left:247.680000pt;}
.x36_c00054{left:256.000000pt;}
.x19_c00054{left:265.600000pt;}
.x42_c00054{left:274.560000pt;}
.x28_c00054{left:275.840000pt;}
.x3e_c00054{left:284.800000pt;}
.x49_c00054{left:293.760000pt;}
.xc_c00054{left:295.680000pt;}
.x21_c00054{left:303.360000pt;}
.x1a_c00054{left:305.280000pt;}
.x5d_c00054{left:312.320000pt;}
.x53_c00054{left:313.600000pt;}
.x39_c00054{left:322.560000pt;}
.xd_c00054{left:323.840000pt;}
.x1c_c00054{left:332.800000pt;}
.x30_c00054{left:341.760000pt;}
.x22_c00054{left:343.040000pt;}
.xe_c00054{left:352.000000pt;}
.x1d_c00054{left:361.600000pt;}
.x29_c00054{left:370.560000pt;}
.x31_c00054{left:379.520000pt;}
.x4_c00054{left:380.800000pt;}
.x2a_c00054{left:389.760000pt;}
.xf_c00054{left:391.040000pt;}
.x3f_c00054{left:398.720000pt;}
.x4e_c00054{left:408.320000pt;}
.x10_c00054{left:409.600000pt;}
.x5f_c00054{left:417.280000pt;}
.x5_c00054{left:419.200000pt;}
.x4f_c00054{left:426.880000pt;}
.x16_c00054{left:428.800000pt;}
.x44_c00054{left:436.480000pt;}
.x1e_c00054{left:438.400000pt;}
.x37_c00054{left:446.720000pt;}
.x23_c00054{left:448.640000pt;}
.x4a_c00054{left:456.960000pt;}
.x54_c00054{left:458.240000pt;}
.x32_c00054{left:466.560000pt;}
.x2b_c00054{left:474.880000pt;}
.x11_c00054{left:476.160000pt;}
.x6_c00054{left:477.440000pt;}
.x38_c00054{left:483.840000pt;}
.x4b_c00054{left:485.120000pt;}
.x3a_c00054{left:495.360000pt;}
.x33_c00054{left:496.640000pt;}
.x45_c00054{left:503.040000pt;}
.x7_c00054{left:505.600000pt;}
.x50_c00054{left:512.640000pt;}
.x40_c00054{left:514.560000pt;}
.x24_c00054{left:524.160000pt;}
.x12_c00054{left:526.080000pt;}
.x2c_c00054{left:533.760000pt;}
.x17_c00054{left:535.040000pt;}
.x1b_c00054{left:543.360000pt;}
.x55_c00054{left:552.320000pt;}
.x13_c00054{left:553.600000pt;}
.x3b_c00054{left:562.560000pt;}
.x8_c00054{left:572.800000pt;}
.x56_c00054{left:580.480000pt;}
.x34_c00054{left:581.760000pt;}
.x5a_c00054{left:591.360000pt;}
.x25_c00054{left:600.960000pt;}
.x58_c00054{left:602.880000pt;}
.x57_c00054{left:608.640000pt;}
.x2d_c00054{left:610.560000pt;}
.x5b_c00054{left:618.880000pt;}
.x43_c00054{left:620.160000pt;}
.x26_c00054{left:629.760000pt;}
.x2e_c00054{left:638.720000pt;}
.x4c_c00054{left:648.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_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_0ed8a4776aaa9d3c7f0a94ca.woff2')format("woff");}.ff1_c00055{font-family:ff1_c00055;line-height:1.109863;font-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_c00055{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m37_c00055{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00055{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m3_c00055{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00055{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00055{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m40_c00055{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.me_c00055{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m42_c00055{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00055{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m6_c00055{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m46_c00055{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m27_c00055{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m57_c00055{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m0_c00055{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m34_c00055{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);}
.m2b_c00055{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);}
.m50_c00055{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);}
.m54_c00055{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m24_c00055{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m53_c00055{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00055{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m12_c00055{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m59_c00055{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);}
.m1d_c00055{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);}
.m2a_c00055{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m56_c00055{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00055{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);}
.m14_c00055{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);}
.m29_c00055{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m15_c00055{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00055{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m35_c00055{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);}
.m38_c00055{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);}
.m48_c00055{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);}
.ma_c00055{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m49_c00055{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m17_c00055{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m26_c00055{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m1_c00055{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m22_c00055{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);}
.m3d_c00055{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00055{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);}
.m5c_c00055{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m55_c00055{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m30_c00055{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.mc_c00055{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_c00055{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00055{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m44_c00055{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m13_c00055{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m23_c00055{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m4_c00055{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m8_c00055{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);}
.m51_c00055{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00055{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m21_c00055{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.mf_c00055{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);}
.m9_c00055{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m28_c00055{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m32_c00055{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00055{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00055{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);}
.md_c00055{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);}
.m20_c00055{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m10_c00055{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.mb_c00055{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);}
.m36_c00055{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m25_c00055{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00055{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);}
.m43_c00055{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m52_c00055{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m45_c00055{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00055{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);}
.m39_c00055{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00055{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);}
.m7_c00055{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);}
.m5_c00055{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m47_c00055{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m33_c00055{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m16_c00055{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00055{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00055{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00055{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m2_c00055{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00055{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);}
.m41_c00055{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00055{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);}
.m5a_c00055{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m31_c00055{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);}
.m4a_c00055{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00055{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m19_c00055{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);}
.m58_c00055{transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00055{transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);}
.v0_c00055{vertical-align:0.000000px;}
.ls0_c00055{letter-spacing:0.000000px;}
.sc__c00055{text-shadow:none;}
.sc0_c00055{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00055{-webkit-text-stroke:0px transparent;}
.sc0_c00055{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00055{word-spacing:0.000000px;}
.ws0_c00055{word-spacing:3.131040px;}
.fc0_c00055{color:transparent;}
.fsf_c00055{font-size:23.040000px;}
.fs6_c00055{font-size:34.560000px;}
.fs5_c00055{font-size:37.440000px;}
.fs8_c00055{font-size:40.320000px;}
.fsd_c00055{font-size:43.200000px;}
.fsb_c00055{font-size:46.080000px;}
.fs2_c00055{font-size:48.960000px;}
.fs4_c00055{font-size:51.840000px;}
.fs7_c00055{font-size:54.720000px;}
.fsc_c00055{font-size:57.600000px;}
.fs9_c00055{font-size:60.480000px;}
.fs1_c00055{font-size:63.360000px;}
.fsa_c00055{font-size:66.240000px;}
.fs3_c00055{font-size:69.120000px;}
.fs0_c00055{font-size:72.000000px;}
.fse_c00055{font-size:74.880000px;}
.y0_c00055{bottom:0.000000px;}
.y6c_c00055{bottom:56.880000px;}
.y6e_c00055{bottom:59.040000px;}
.y6d_c00055{bottom:60.480000px;}
.y6a_c00055{bottom:98.640000px;}
.y66_c00055{bottom:99.360000px;}
.y6b_c00055{bottom:100.800000px;}
.y69_c00055{bottom:101.520000px;}
.y68_c00055{bottom:102.240000px;}
.y67_c00055{bottom:102.960000px;}
.y64_c00055{bottom:140.400000px;}
.y62_c00055{bottom:141.840000px;}
.y65_c00055{bottom:143.280000px;}
.y63_c00055{bottom:144.000000px;}
.y61_c00055{bottom:144.720000px;}
.y60_c00055{bottom:145.440000px;}
.y5f_c00055{bottom:182.880000px;}
.y5c_c00055{bottom:183.600000px;}
.y5e_c00055{bottom:184.320000px;}
.y5d_c00055{bottom:187.200000px;}
.y5b_c00055{bottom:226.080000px;}
.y58_c00055{bottom:226.800000px;}
.y5a_c00055{bottom:228.240000px;}
.y59_c00055{bottom:228.960000px;}
.y57_c00055{bottom:229.680000px;}
.y56_c00055{bottom:268.560000px;}
.y55_c00055{bottom:269.280000px;}
.y54_c00055{bottom:271.440000px;}
.y53_c00055{bottom:272.160000px;}
.y4f_c00055{bottom:311.040000px;}
.y52_c00055{bottom:311.760000px;}
.y51_c00055{bottom:313.920000px;}
.y50_c00055{bottom:314.640000px;}
.y4c_c00055{bottom:353.520000px;}
.y4e_c00055{bottom:354.240000px;}
.y4b_c00055{bottom:356.400000px;}
.y4d_c00055{bottom:357.120000px;}
.y4a_c00055{bottom:357.840000px;}
.y47_c00055{bottom:406.800000px;}
.y49_c00055{bottom:407.520000px;}
.y46_c00055{bottom:409.680000px;}
.y48_c00055{bottom:410.400000px;}
.y45_c00055{bottom:411.120000px;}
.y42_c00055{bottom:449.280000px;}
.y40_c00055{bottom:450.000000px;}
.y44_c00055{bottom:450.720000px;}
.y41_c00055{bottom:451.440000px;}
.y3f_c00055{bottom:452.160000px;}
.y3e_c00055{bottom:452.880000px;}
.y43_c00055{bottom:453.600000px;}
.y39_c00055{bottom:492.480000px;}
.y3a_c00055{bottom:493.200000px;}
.y3d_c00055{bottom:494.640000px;}
.y3b_c00055{bottom:495.360000px;}
.y3c_c00055{bottom:496.080000px;}
.y38_c00055{bottom:534.960000px;}
.y36_c00055{bottom:535.680000px;}
.y37_c00055{bottom:537.840000px;}
.y35_c00055{bottom:538.560000px;}
.y32_c00055{bottom:577.440000px;}
.y33_c00055{bottom:578.160000px;}
.y31_c00055{bottom:580.320000px;}
.y34_c00055{bottom:581.040000px;}
.y2e_c00055{bottom:620.640000px;}
.y30_c00055{bottom:621.360000px;}
.y2d_c00055{bottom:622.800000px;}
.y2f_c00055{bottom:623.520000px;}
.y28_c00055{bottom:660.960000px;}
.y2b_c00055{bottom:662.400000px;}
.y29_c00055{bottom:663.120000px;}
.y2c_c00055{bottom:665.280000px;}
.y2a_c00055{bottom:666.000000px;}
.y25_c00055{bottom:704.880000px;}
.y27_c00055{bottom:707.760000px;}
.y26_c00055{bottom:708.480000px;}
.y24_c00055{bottom:748.080000px;}
.y23_c00055{bottom:748.800000px;}
.y21_c00055{bottom:750.240000px;}
.y22_c00055{bottom:750.960000px;}
.y1d_c00055{bottom:790.560000px;}
.y20_c00055{bottom:791.280000px;}
.y1e_c00055{bottom:792.720000px;}
.y1f_c00055{bottom:793.440000px;}
.y1a_c00055{bottom:832.320000px;}
.y19_c00055{bottom:833.040000px;}
.y1c_c00055{bottom:833.760000px;}
.y17_c00055{bottom:835.200000px;}
.y18_c00055{bottom:835.920000px;}
.y1b_c00055{bottom:836.640000px;}
.y14_c00055{bottom:875.520000px;}
.y15_c00055{bottom:876.240000px;}
.y12_c00055{bottom:877.680000px;}
.y13_c00055{bottom:878.400000px;}
.y16_c00055{bottom:879.120000px;}
.yd_c00055{bottom:918.000000px;}
.ye_c00055{bottom:918.720000px;}
.y10_c00055{bottom:920.880000px;}
.yf_c00055{bottom:921.600000px;}
.y11_c00055{bottom:922.320000px;}
.y7_c00055{bottom:959.760000px;}
.ya_c00055{bottom:960.480000px;}
.yc_c00055{bottom:961.200000px;}
.y9_c00055{bottom:963.360000px;}
.y8_c00055{bottom:964.080000px;}
.yb_c00055{bottom:964.800000px;}
.y2_c00055{bottom:1002.240000px;}
.y4_c00055{bottom:1003.680000px;}
.y3_c00055{bottom:1006.560000px;}
.y6_c00055{bottom:1007.280000px;}
.y5_c00055{bottom:1008.000000px;}
.y1_c00055{bottom:1051.200000px;}
.h11_c00055{height:20.733750px;}
.h8_c00055{height:31.100625px;}
.h7_c00055{height:33.692344px;}
.ha_c00055{height:36.284062px;}
.hf_c00055{height:38.875781px;}
.hd_c00055{height:41.467500px;}
.h4_c00055{height:44.059219px;}
.h6_c00055{height:46.650937px;}
.h9_c00055{height:49.242656px;}
.he_c00055{height:51.834375px;}
.hb_c00055{height:54.426094px;}
.h3_c00055{height:57.017812px;}
.hc_c00055{height:59.609531px;}
.h5_c00055{height:62.201250px;}
.h2_c00055{height:64.792969px;}
.h10_c00055{height:67.384687px;}
.h1_c00055{height:1151.250000px;}
.h0_c00055{height:1151.280000px;}
.w1_c00055{width:807.750000px;}
.w0_c00055{width:807.840000px;}
.x0_c00055{left:0.000000px;}
.x2_c00055{left:82.800000px;}
.x2a_c00055{left:84.240000px;}
.x15_c00055{left:85.680000px;}
.x21_c00055{left:115.920000px;}
.x51_c00055{left:125.280000px;}
.x31_c00055{left:126.720000px;}
.x3_c00055{left:136.800000px;}
.x43_c00055{left:147.600000px;}
.x3c_c00055{left:157.680000px;}
.x38_c00055{left:159.120000px;}
.x4_c00055{left:169.200000px;}
.x46_c00055{left:179.280000px;}
.xc_c00055{left:180.720000px;}
.x44_c00055{left:190.080000px;}
.x49_c00055{left:191.520000px;}
.xd_c00055{left:200.880000px;}
.x3d_c00055{left:202.320000px;}
.x2b_c00055{left:211.680000px;}
.x1c_c00055{left:222.480000px;}
.x32_c00055{left:223.920000px;}
.x40_c00055{left:233.280000px;}
.x52_c00055{left:243.360000px;}
.x5_c00055{left:244.800000px;}
.x2c_c00055{left:254.880000px;}
.xe_c00055{left:265.680000px;}
.x33_c00055{left:267.120000px;}
.x4c_c00055{left:286.560000px;}
.x6_c00055{left:288.000000px;}
.x22_c00055{left:298.800000px;}
.x55_c00055{left:307.440000px;}
.xf_c00055{left:308.880000px;}
.x1d_c00055{left:319.680000px;}
.x16_c00055{left:330.480000px;}
.x2e_c00055{left:341.280000px;}
.x53_c00055{left:351.360000px;}
.x17_c00055{left:362.160000px;}
.x39_c00055{left:372.240000px;}
.x23_c00055{left:373.680000px;}
.x2f_c00055{left:384.480000px;}
.x34_c00055{left:393.840000px;}
.x7_c00055{left:395.280000px;}
.x24_c00055{left:406.080000px;}
.x30_c00055{left:415.440000px;}
.x10_c00055{left:416.880000px;}
.x8_c00055{left:427.680000px;}
.x3a_c00055{left:437.760000px;}
.x50_c00055{left:448.560000px;}
.x35_c00055{left:457.920000px;}
.x25_c00055{left:460.080000px;}
.x2d_c00055{left:470.160000px;}
.x48_c00055{left:480.240000px;}
.x18_c00055{left:481.680000px;}
.x41_c00055{left:491.040000px;}
.x47_c00055{left:492.480000px;}
.x3e_c00055{left:501.840000px;}
.x11_c00055{left:503.280000px;}
.x4a_c00055{left:512.640000px;}
.x54_c00055{left:522.720000px;}
.x12_c00055{left:524.880000px;}
.x4e_c00055{left:533.520000px;}
.x42_c00055{left:535.680000px;}
.x26_c00055{left:545.040000px;}
.x19_c00055{left:546.480000px;}
.x56_c00055{left:555.840000px;}
.x4b_c00055{left:566.640000px;}
.x1e_c00055{left:568.080000px;}
.x27_c00055{left:578.160000px;}
.x36_c00055{left:587.520000px;}
.x9_c00055{left:589.680000px;}
.x13_c00055{left:598.320000px;}
.x1f_c00055{left:600.480000px;}
.xa_c00055{left:609.840000px;}
.x3f_c00055{left:620.640000px;}
.x20_c00055{left:631.440000px;}
.x14_c00055{left:642.960000px;}
.x4d_c00055{left:644.400000px;}
.x3b_c00055{left:653.040000px;}
.x4f_c00055{left:663.120000px;}
.x1a_c00055{left:664.560000px;}
.xb_c00055{left:674.640000px;}
.x45_c00055{left:684.720000px;}
.x1b_c00055{left:695.520000px;}
.x28_c00055{left:697.680000px;}
.x37_c00055{left:707.040000px;}
.x1_c00055{left:708.480000px;}
.x29_c00055{left:719.280000px;}
@media print{
.v0_c00055{vertical-align:0.000000pt;}
.ls0_c00055{letter-spacing:0.000000pt;}
.ws1_c00055{word-spacing:0.000000pt;}
.ws0_c00055{word-spacing:2.783147pt;}
.fsf_c00055{font-size:20.480000pt;}
.fs6_c00055{font-size:30.720000pt;}
.fs5_c00055{font-size:33.280000pt;}
.fs8_c00055{font-size:35.840000pt;}
.fsd_c00055{font-size:38.400000pt;}
.fsb_c00055{font-size:40.960000pt;}
.fs2_c00055{font-size:43.520000pt;}
.fs4_c00055{font-size:46.080000pt;}
.fs7_c00055{font-size:48.640000pt;}
.fsc_c00055{font-size:51.200000pt;}
.fs9_c00055{font-size:53.760000pt;}
.fs1_c00055{font-size:56.320000pt;}
.fsa_c00055{font-size:58.880000pt;}
.fs3_c00055{font-size:61.440000pt;}
.fs0_c00055{font-size:64.000000pt;}
.fse_c00055{font-size:66.560000pt;}
.y0_c00055{bottom:0.000000pt;}
.y6c_c00055{bottom:50.560000pt;}
.y6e_c00055{bottom:52.480000pt;}
.y6d_c00055{bottom:53.760000pt;}
.y6a_c00055{bottom:87.680000pt;}
.y66_c00055{bottom:88.320000pt;}
.y6b_c00055{bottom:89.600000pt;}
.y69_c00055{bottom:90.240000pt;}
.y68_c00055{bottom:90.880000pt;}
.y67_c00055{bottom:91.520000pt;}
.y64_c00055{bottom:124.800000pt;}
.y62_c00055{bottom:126.080000pt;}
.y65_c00055{bottom:127.360000pt;}
.y63_c00055{bottom:128.000000pt;}
.y61_c00055{bottom:128.640000pt;}
.y60_c00055{bottom:129.280000pt;}
.y5f_c00055{bottom:162.560000pt;}
.y5c_c00055{bottom:163.200000pt;}
.y5e_c00055{bottom:163.840000pt;}
.y5d_c00055{bottom:166.400000pt;}
.y5b_c00055{bottom:200.960000pt;}
.y58_c00055{bottom:201.600000pt;}
.y5a_c00055{bottom:202.880000pt;}
.y59_c00055{bottom:203.520000pt;}
.y57_c00055{bottom:204.160000pt;}
.y56_c00055{bottom:238.720000pt;}
.y55_c00055{bottom:239.360000pt;}
.y54_c00055{bottom:241.280000pt;}
.y53_c00055{bottom:241.920000pt;}
.y4f_c00055{bottom:276.480000pt;}
.y52_c00055{bottom:277.120000pt;}
.y51_c00055{bottom:279.040000pt;}
.y50_c00055{bottom:279.680000pt;}
.y4c_c00055{bottom:314.240000pt;}
.y4e_c00055{bottom:314.880000pt;}
.y4b_c00055{bottom:316.800000pt;}
.y4d_c00055{bottom:317.440000pt;}
.y4a_c00055{bottom:318.080000pt;}
.y47_c00055{bottom:361.600000pt;}
.y49_c00055{bottom:362.240000pt;}
.y46_c00055{bottom:364.160000pt;}
.y48_c00055{bottom:364.800000pt;}
.y45_c00055{bottom:365.440000pt;}
.y42_c00055{bottom:399.360000pt;}
.y40_c00055{bottom:400.000000pt;}
.y44_c00055{bottom:400.640000pt;}
.y41_c00055{bottom:401.280000pt;}
.y3f_c00055{bottom:401.920000pt;}
.y3e_c00055{bottom:402.560000pt;}
.y43_c00055{bottom:403.200000pt;}
.y39_c00055{bottom:437.760000pt;}
.y3a_c00055{bottom:438.400000pt;}
.y3d_c00055{bottom:439.680000pt;}
.y3b_c00055{bottom:440.320000pt;}
.y3c_c00055{bottom:440.960000pt;}
.y38_c00055{bottom:475.520000pt;}
.y36_c00055{bottom:476.160000pt;}
.y37_c00055{bottom:478.080000pt;}
.y35_c00055{bottom:478.720000pt;}
.y32_c00055{bottom:513.280000pt;}
.y33_c00055{bottom:513.920000pt;}
.y31_c00055{bottom:515.840000pt;}
.y34_c00055{bottom:516.480000pt;}
.y2e_c00055{bottom:551.680000pt;}
.y30_c00055{bottom:552.320000pt;}
.y2d_c00055{bottom:553.600000pt;}
.y2f_c00055{bottom:554.240000pt;}
.y28_c00055{bottom:587.520000pt;}
.y2b_c00055{bottom:588.800000pt;}
.y29_c00055{bottom:589.440000pt;}
.y2c_c00055{bottom:591.360000pt;}
.y2a_c00055{bottom:592.000000pt;}
.y25_c00055{bottom:626.560000pt;}
.y27_c00055{bottom:629.120000pt;}
.y26_c00055{bottom:629.760000pt;}
.y24_c00055{bottom:664.960000pt;}
.y23_c00055{bottom:665.600000pt;}
.y21_c00055{bottom:666.880000pt;}
.y22_c00055{bottom:667.520000pt;}
.y1d_c00055{bottom:702.720000pt;}
.y20_c00055{bottom:703.360000pt;}
.y1e_c00055{bottom:704.640000pt;}
.y1f_c00055{bottom:705.280000pt;}
.y1a_c00055{bottom:739.840000pt;}
.y19_c00055{bottom:740.480000pt;}
.y1c_c00055{bottom:741.120000pt;}
.y17_c00055{bottom:742.400000pt;}
.y18_c00055{bottom:743.040000pt;}
.y1b_c00055{bottom:743.680000pt;}
.y14_c00055{bottom:778.240000pt;}
.y15_c00055{bottom:778.880000pt;}
.y12_c00055{bottom:780.160000pt;}
.y13_c00055{bottom:780.800000pt;}
.y16_c00055{bottom:781.440000pt;}
.yd_c00055{bottom:816.000000pt;}
.ye_c00055{bottom:816.640000pt;}
.y10_c00055{bottom:818.560000pt;}
.yf_c00055{bottom:819.200000pt;}
.y11_c00055{bottom:819.840000pt;}
.y7_c00055{bottom:853.120000pt;}
.ya_c00055{bottom:853.760000pt;}
.yc_c00055{bottom:854.400000pt;}
.y9_c00055{bottom:856.320000pt;}
.y8_c00055{bottom:856.960000pt;}
.yb_c00055{bottom:857.600000pt;}
.y2_c00055{bottom:890.880000pt;}
.y4_c00055{bottom:892.160000pt;}
.y3_c00055{bottom:894.720000pt;}
.y6_c00055{bottom:895.360000pt;}
.y5_c00055{bottom:896.000000pt;}
.y1_c00055{bottom:934.400000pt;}
.h11_c00055{height:18.430000pt;}
.h8_c00055{height:27.645000pt;}
.h7_c00055{height:29.948750pt;}
.ha_c00055{height:32.252500pt;}
.hf_c00055{height:34.556250pt;}
.hd_c00055{height:36.860000pt;}
.h4_c00055{height:39.163750pt;}
.h6_c00055{height:41.467500pt;}
.h9_c00055{height:43.771250pt;}
.he_c00055{height:46.075000pt;}
.hb_c00055{height:48.378750pt;}
.h3_c00055{height:50.682500pt;}
.hc_c00055{height:52.986250pt;}
.h5_c00055{height:55.290000pt;}
.h2_c00055{height:57.593750pt;}
.h10_c00055{height:59.897500pt;}
.h1_c00055{height:1023.333333pt;}
.h0_c00055{height:1023.360000pt;}
.w1_c00055{width:718.000000pt;}
.w0_c00055{width:718.080000pt;}
.x0_c00055{left:0.000000pt;}
.x2_c00055{left:73.600000pt;}
.x2a_c00055{left:74.880000pt;}
.x15_c00055{left:76.160000pt;}
.x21_c00055{left:103.040000pt;}
.x51_c00055{left:111.360000pt;}
.x31_c00055{left:112.640000pt;}
.x3_c00055{left:121.600000pt;}
.x43_c00055{left:131.200000pt;}
.x3c_c00055{left:140.160000pt;}
.x38_c00055{left:141.440000pt;}
.x4_c00055{left:150.400000pt;}
.x46_c00055{left:159.360000pt;}
.xc_c00055{left:160.640000pt;}
.x44_c00055{left:168.960000pt;}
.x49_c00055{left:170.240000pt;}
.xd_c00055{left:178.560000pt;}
.x3d_c00055{left:179.840000pt;}
.x2b_c00055{left:188.160000pt;}
.x1c_c00055{left:197.760000pt;}
.x32_c00055{left:199.040000pt;}
.x40_c00055{left:207.360000pt;}
.x52_c00055{left:216.320000pt;}
.x5_c00055{left:217.600000pt;}
.x2c_c00055{left:226.560000pt;}
.xe_c00055{left:236.160000pt;}
.x33_c00055{left:237.440000pt;}
.x4c_c00055{left:254.720000pt;}
.x6_c00055{left:256.000000pt;}
.x22_c00055{left:265.600000pt;}
.x55_c00055{left:273.280000pt;}
.xf_c00055{left:274.560000pt;}
.x1d_c00055{left:284.160000pt;}
.x16_c00055{left:293.760000pt;}
.x2e_c00055{left:303.360000pt;}
.x53_c00055{left:312.320000pt;}
.x17_c00055{left:321.920000pt;}
.x39_c00055{left:330.880000pt;}
.x23_c00055{left:332.160000pt;}
.x2f_c00055{left:341.760000pt;}
.x34_c00055{left:350.080000pt;}
.x7_c00055{left:351.360000pt;}
.x24_c00055{left:360.960000pt;}
.x30_c00055{left:369.280000pt;}
.x10_c00055{left:370.560000pt;}
.x8_c00055{left:380.160000pt;}
.x3a_c00055{left:389.120000pt;}
.x50_c00055{left:398.720000pt;}
.x35_c00055{left:407.040000pt;}
.x25_c00055{left:408.960000pt;}
.x2d_c00055{left:417.920000pt;}
.x48_c00055{left:426.880000pt;}
.x18_c00055{left:428.160000pt;}
.x41_c00055{left:436.480000pt;}
.x47_c00055{left:437.760000pt;}
.x3e_c00055{left:446.080000pt;}
.x11_c00055{left:447.360000pt;}
.x4a_c00055{left:455.680000pt;}
.x54_c00055{left:464.640000pt;}
.x12_c00055{left:466.560000pt;}
.x4e_c00055{left:474.240000pt;}
.x42_c00055{left:476.160000pt;}
.x26_c00055{left:484.480000pt;}
.x19_c00055{left:485.760000pt;}
.x56_c00055{left:494.080000pt;}
.x4b_c00055{left:503.680000pt;}
.x1e_c00055{left:504.960000pt;}
.x27_c00055{left:513.920000pt;}
.x36_c00055{left:522.240000pt;}
.x9_c00055{left:524.160000pt;}
.x13_c00055{left:531.840000pt;}
.x1f_c00055{left:533.760000pt;}
.xa_c00055{left:542.080000pt;}
.x3f_c00055{left:551.680000pt;}
.x20_c00055{left:561.280000pt;}
.x14_c00055{left:571.520000pt;}
.x4d_c00055{left:572.800000pt;}
.x3b_c00055{left:580.480000pt;}
.x4f_c00055{left:589.440000pt;}
.x1a_c00055{left:590.720000pt;}
.xb_c00055{left:599.680000pt;}
.x45_c00055{left:608.640000pt;}
.x1b_c00055{left:618.240000pt;}
.x28_c00055{left:620.160000pt;}
.x37_c00055{left:628.480000pt;}
.x1_c00055{left:629.760000pt;}
.x29_c00055{left:639.360000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ccbbf86c5d096b9ca5830d67.woff2')format("woff");}.ff1_c00056{font-family:ff1_c00056;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m47_c00056{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m30_c00056{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m58_c00056{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m23_c00056{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m55_c00056{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m42_c00056{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m51_c00056{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m46_c00056{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00056{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m21_c00056{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00056{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m9_c00056{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m6_c00056{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m27_c00056{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m0_c00056{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m2_c00056{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);}
.m29_c00056{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00056{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m20_c00056{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);}
.m3d_c00056{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00056{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);}
.m5_c00056{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m40_c00056{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);}
.m31_c00056{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m33_c00056{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00056{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);}
.m1b_c00056{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);}
.m59_c00056{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);}
.m3a_c00056{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m56_c00056{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);}
.m14_c00056{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m44_c00056{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);}
.m12_c00056{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);}
.m34_c00056{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m17_c00056{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00056{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m22_c00056{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m7_c00056{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00056{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);}
.m54_c00056{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m45_c00056{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);}
.m5f_c00056{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.me_c00056{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m16_c00056{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m4_c00056{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);}
.m52_c00056{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00056{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m32_c00056{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);}
.m1f_c00056{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00056{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);}
.m19_c00056{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m11_c00056{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m24_c00056{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m41_c00056{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m1_c00056{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);}
.m4b_c00056{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00056{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m37_c00056{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m3_c00056{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);}
.m57_c00056{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.mc_c00056{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.mb_c00056{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m53_c00056{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00056{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);}
.md_c00056{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);}
.ma_c00056{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);}
.m8_c00056{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m49_c00056{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);}
.m48_c00056{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00056{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00056{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00056{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m28_c00056{transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);}
.m18_c00056{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00056{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);}
.m2e_c00056{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);}
.m26_c00056{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00056{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00056{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00056{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m25_c00056{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.mf_c00056{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m39_c00056{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);}
.m3e_c00056{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);}
.m60_c00056{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00056{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m35_c00056{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);}
.m50_c00056{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m36_c00056{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m10_c00056{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m38_c00056{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00056{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m43_c00056{transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);}
.m13_c00056{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00056{transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00056{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m15_c00056{transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);}
.v0_c00056{vertical-align:0.000000px;}
.ls0_c00056{letter-spacing:0.000000px;}
.sc__c00056{text-shadow:none;}
.sc0_c00056{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00056{-webkit-text-stroke:0px transparent;}
.sc0_c00056{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00056{word-spacing:0.000000px;}
.fc0_c00056{color:transparent;}
.fs7_c00056{font-size:17.280000px;}
.fs6_c00056{font-size:34.560000px;}
.fs5_c00056{font-size:37.440000px;}
.fse_c00056{font-size:40.320000px;}
.fs9_c00056{font-size:43.200000px;}
.fs0_c00056{font-size:46.080000px;}
.fs3_c00056{font-size:48.960000px;}
.fs2_c00056{font-size:51.840000px;}
.fsd_c00056{font-size:54.720000px;}
.fs1_c00056{font-size:57.600000px;}
.fs4_c00056{font-size:60.480000px;}
.fs8_c00056{font-size:63.360000px;}
.fsb_c00056{font-size:66.240000px;}
.fsc_c00056{font-size:69.120000px;}
.fsa_c00056{font-size:72.000000px;}
.y0_c00056{bottom:0.000000px;}
.y67_c00056{bottom:41.760000px;}
.y65_c00056{bottom:43.200000px;}
.y64_c00056{bottom:45.360000px;}
.y66_c00056{bottom:46.080000px;}
.y63_c00056{bottom:46.800000px;}
.y62_c00056{bottom:84.240000px;}
.y5f_c00056{bottom:85.680000px;}
.y61_c00056{bottom:86.400000px;}
.y60_c00056{bottom:87.840000px;}
.y5e_c00056{bottom:88.560000px;}
.y5d_c00056{bottom:89.280000px;}
.y5b_c00056{bottom:127.440000px;}
.y5c_c00056{bottom:128.160000px;}
.y5a_c00056{bottom:130.320000px;}
.y59_c00056{bottom:131.040000px;}
.y56_c00056{bottom:181.440000px;}
.y58_c00056{bottom:183.600000px;}
.y57_c00056{bottom:184.320000px;}
.y55_c00056{bottom:185.040000px;}
.y53_c00056{bottom:223.200000px;}
.y54_c00056{bottom:223.920000px;}
.y50_c00056{bottom:224.640000px;}
.y51_c00056{bottom:226.080000px;}
.y52_c00056{bottom:226.800000px;}
.y4f_c00056{bottom:265.680000px;}
.y4c_c00056{bottom:266.400000px;}
.y4e_c00056{bottom:267.840000px;}
.y4b_c00056{bottom:268.560000px;}
.y4d_c00056{bottom:269.280000px;}
.y46_c00056{bottom:307.440000px;}
.y47_c00056{bottom:308.160000px;}
.y48_c00056{bottom:308.880000px;}
.y4a_c00056{bottom:310.320000px;}
.y49_c00056{bottom:311.040000px;}
.y45_c00056{bottom:311.760000px;}
.y42_c00056{bottom:351.360000px;}
.y44_c00056{bottom:352.800000px;}
.y43_c00056{bottom:353.520000px;}
.y41_c00056{bottom:354.240000px;}
.y3f_c00056{bottom:392.400000px;}
.y3d_c00056{bottom:393.840000px;}
.y40_c00056{bottom:395.280000px;}
.y3e_c00056{bottom:396.000000px;}
.y3a_c00056{bottom:435.600000px;}
.y38_c00056{bottom:437.040000px;}
.y3b_c00056{bottom:437.760000px;}
.y39_c00056{bottom:438.480000px;}
.y3c_c00056{bottom:439.200000px;}
.y36_c00056{bottom:478.800000px;}
.y37_c00056{bottom:480.960000px;}
.y35_c00056{bottom:481.680000px;}
.y31_c00056{bottom:531.360000px;}
.y30_c00056{bottom:532.080000px;}
.y33_c00056{bottom:533.520000px;}
.y32_c00056{bottom:534.240000px;}
.y34_c00056{bottom:534.960000px;}
.y2d_c00056{bottom:574.560000px;}
.y2e_c00056{bottom:576.720000px;}
.y2f_c00056{bottom:577.440000px;}
.y2b_c00056{bottom:616.320000px;}
.y2c_c00056{bottom:617.040000px;}
.y2a_c00056{bottom:619.200000px;}
.y29_c00056{bottom:619.920000px;}
.y24_c00056{bottom:659.520000px;}
.y27_c00056{bottom:660.240000px;}
.y28_c00056{bottom:661.680000px;}
.y26_c00056{bottom:662.400000px;}
.y25_c00056{bottom:663.120000px;}
.y21_c00056{bottom:701.280000px;}
.y23_c00056{bottom:702.720000px;}
.y22_c00056{bottom:704.160000px;}
.y1f_c00056{bottom:704.880000px;}
.y20_c00056{bottom:705.600000px;}
.y1d_c00056{bottom:744.480000px;}
.y1e_c00056{bottom:745.200000px;}
.y1c_c00056{bottom:747.360000px;}
.y18_c00056{bottom:786.960000px;}
.y1a_c00056{bottom:787.680000px;}
.y19_c00056{bottom:789.840000px;}
.y1b_c00056{bottom:790.560000px;}
.y14_c00056{bottom:828.720000px;}
.y17_c00056{bottom:829.440000px;}
.y15_c00056{bottom:830.160000px;}
.y13_c00056{bottom:831.600000px;}
.y16_c00056{bottom:833.040000px;}
.y10_c00056{bottom:871.920000px;}
.y12_c00056{bottom:872.640000px;}
.yf_c00056{bottom:874.800000px;}
.y11_c00056{bottom:875.520000px;}
.yc_c00056{bottom:914.400000px;}
.ye_c00056{bottom:915.840000px;}
.ya_c00056{bottom:916.560000px;}
.y9_c00056{bottom:917.280000px;}
.yd_c00056{bottom:918.000000px;}
.yb_c00056{bottom:920.160000px;}
.y4_c00056{bottom:956.880000px;}
.y7_c00056{bottom:957.600000px;}
.y8_c00056{bottom:958.320000px;}
.y6_c00056{bottom:959.760000px;}
.y5_c00056{bottom:960.480000px;}
.y3_c00056{bottom:1000.080000px;}
.y2_c00056{bottom:1002.240000px;}
.y1_c00056{bottom:1002.960000px;}
.h9_c00056{height:15.550313px;}
.h8_c00056{height:31.100625px;}
.h7_c00056{height:33.692344px;}
.h10_c00056{height:36.284062px;}
.hb_c00056{height:38.875781px;}
.h2_c00056{height:41.467500px;}
.h5_c00056{height:44.059219px;}
.h4_c00056{height:46.650937px;}
.hf_c00056{height:49.242656px;}
.h3_c00056{height:51.834375px;}
.h6_c00056{height:54.426094px;}
.ha_c00056{height:57.017812px;}
.hd_c00056{height:59.609531px;}
.he_c00056{height:62.201250px;}
.hc_c00056{height:64.792969px;}
.h1_c00056{height:1146.750000px;}
.h0_c00056{height:1146.960000px;}
.w1_c00056{width:801.000000px;}
.w0_c00056{width:801.360000px;}
.x0_c00056{left:0.000000px;}
.x47_c00056{left:74.160000px;}
.xa_c00056{left:75.600000px;}
.x20_c00056{left:77.040000px;}
.x54_c00056{left:105.840000px;}
.x2f_c00056{left:107.280000px;}
.x4a_c00056{left:108.720000px;}
.x3e_c00056{left:118.800000px;}
.xb_c00056{left:130.320000px;}
.x14_c00056{left:141.120000px;}
.xc_c00056{left:151.200000px;}
.x50_c00056{left:162.720000px;}
.x55_c00056{left:171.360000px;}
.x1a_c00056{left:172.800000px;}
.x42_c00056{left:182.160000px;}
.x1_c00056{left:183.600000px;}
.xd_c00056{left:194.400000px;}
.x46_c00056{left:203.040000px;}
.x1b_c00056{left:204.480000px;}
.x15_c00056{left:215.280000px;}
.x21_c00056{left:225.360000px;}
.x30_c00056{left:226.800000px;}
.x4d_c00056{left:236.160000px;}
.x2_c00056{left:237.600000px;}
.x29_c00056{left:247.680000px;}
.x57_c00056{left:257.040000px;}
.x22_c00056{left:259.200000px;}
.x3f_c00056{left:268.560000px;}
.x1c_c00056{left:270.000000px;}
.x4b_c00056{left:278.640000px;}
.x51_c00056{left:280.080000px;}
.x23_c00056{left:300.960000px;}
.x2b_c00056{left:313.200000px;}
.x37_c00056{left:321.840000px;}
.x16_c00056{left:323.280000px;}
.xe_c00056{left:334.800000px;}
.x48_c00056{left:344.160000px;}
.x40_c00056{left:345.600000px;}
.x31_c00056{left:354.240000px;}
.x58_c00056{left:364.320000px;}
.xf_c00056{left:365.760000px;}
.x3_c00056{left:367.200000px;}
.x41_c00056{left:376.560000px;}
.x38_c00056{left:386.640000px;}
.x24_c00056{left:388.080000px;}
.x32_c00056{left:397.440000px;}
.x4_c00056{left:398.880000px;}
.x10_c00056{left:408.960000px;}
.x39_c00056{left:419.760000px;}
.x4e_c00056{left:429.120000px;}
.x17_c00056{left:430.560000px;}
.x33_c00056{left:440.640000px;}
.x1d_c00056{left:452.160000px;}
.x5_c00056{left:453.600000px;}
.x18_c00056{left:462.960000px;}
.x5a_c00056{left:470.880000px;}
.x11_c00056{left:474.480000px;}
.x52_c00056{left:483.120000px;}
.x1e_c00056{left:484.560000px;}
.x45_c00056{left:493.920000px;}
.x34_c00056{left:496.080000px;}
.x4c_c00056{left:503.280000px;}
.x25_c00056{left:505.440000px;}
.x6_c00056{left:506.880000px;}
.x3a_c00056{left:516.240000px;}
.x53_c00056{left:525.600000px;}
.x2c_c00056{left:528.480000px;}
.x7_c00056{left:537.840000px;}
.x26_c00056{left:539.280000px;}
.x3b_c00056{left:548.640000px;}
.x43_c00056{left:559.440000px;}
.x3d_c00056{left:569.520000px;}
.x2a_c00056{left:571.680000px;}
.x35_c00056{left:579.600000px;}
.x1f_c00056{left:581.760000px;}
.x44_c00056{left:591.840000px;}
.x12_c00056{left:602.640000px;}
.x56_c00056{left:611.280000px;}
.x59_c00056{left:613.440000px;}
.x2d_c00056{left:624.240000px;}
.x4f_c00056{left:634.320000px;}
.x8_c00056{left:635.760000px;}
.x36_c00056{left:645.840000px;}
.x3c_c00056{left:648.720000px;}
.x49_c00056{left:655.920000px;}
.x13_c00056{left:658.800000px;}
.x2e_c00056{left:667.440000px;}
.x27_c00056{left:678.240000px;}
.x9_c00056{left:680.400000px;}
.x19_c00056{left:689.040000px;}
.x28_c00056{left:699.840000px;}
@media print{
.v0_c00056{vertical-align:0.000000pt;}
.ls0_c00056{letter-spacing:0.000000pt;}
.ws0_c00056{word-spacing:0.000000pt;}
.fs7_c00056{font-size:15.360000pt;}
.fs6_c00056{font-size:30.720000pt;}
.fs5_c00056{font-size:33.280000pt;}
.fse_c00056{font-size:35.840000pt;}
.fs9_c00056{font-size:38.400000pt;}
.fs0_c00056{font-size:40.960000pt;}
.fs3_c00056{font-size:43.520000pt;}
.fs2_c00056{font-size:46.080000pt;}
.fsd_c00056{font-size:48.640000pt;}
.fs1_c00056{font-size:51.200000pt;}
.fs4_c00056{font-size:53.760000pt;}
.fs8_c00056{font-size:56.320000pt;}
.fsb_c00056{font-size:58.880000pt;}
.fsc_c00056{font-size:61.440000pt;}
.fsa_c00056{font-size:64.000000pt;}
.y0_c00056{bottom:0.000000pt;}
.y67_c00056{bottom:37.120000pt;}
.y65_c00056{bottom:38.400000pt;}
.y64_c00056{bottom:40.320000pt;}
.y66_c00056{bottom:40.960000pt;}
.y63_c00056{bottom:41.600000pt;}
.y62_c00056{bottom:74.880000pt;}
.y5f_c00056{bottom:76.160000pt;}
.y61_c00056{bottom:76.800000pt;}
.y60_c00056{bottom:78.080000pt;}
.y5e_c00056{bottom:78.720000pt;}
.y5d_c00056{bottom:79.360000pt;}
.y5b_c00056{bottom:113.280000pt;}
.y5c_c00056{bottom:113.920000pt;}
.y5a_c00056{bottom:115.840000pt;}
.y59_c00056{bottom:116.480000pt;}
.y56_c00056{bottom:161.280000pt;}
.y58_c00056{bottom:163.200000pt;}
.y57_c00056{bottom:163.840000pt;}
.y55_c00056{bottom:164.480000pt;}
.y53_c00056{bottom:198.400000pt;}
.y54_c00056{bottom:199.040000pt;}
.y50_c00056{bottom:199.680000pt;}
.y51_c00056{bottom:200.960000pt;}
.y52_c00056{bottom:201.600000pt;}
.y4f_c00056{bottom:236.160000pt;}
.y4c_c00056{bottom:236.800000pt;}
.y4e_c00056{bottom:238.080000pt;}
.y4b_c00056{bottom:238.720000pt;}
.y4d_c00056{bottom:239.360000pt;}
.y46_c00056{bottom:273.280000pt;}
.y47_c00056{bottom:273.920000pt;}
.y48_c00056{bottom:274.560000pt;}
.y4a_c00056{bottom:275.840000pt;}
.y49_c00056{bottom:276.480000pt;}
.y45_c00056{bottom:277.120000pt;}
.y42_c00056{bottom:312.320000pt;}
.y44_c00056{bottom:313.600000pt;}
.y43_c00056{bottom:314.240000pt;}
.y41_c00056{bottom:314.880000pt;}
.y3f_c00056{bottom:348.800000pt;}
.y3d_c00056{bottom:350.080000pt;}
.y40_c00056{bottom:351.360000pt;}
.y3e_c00056{bottom:352.000000pt;}
.y3a_c00056{bottom:387.200000pt;}
.y38_c00056{bottom:388.480000pt;}
.y3b_c00056{bottom:389.120000pt;}
.y39_c00056{bottom:389.760000pt;}
.y3c_c00056{bottom:390.400000pt;}
.y36_c00056{bottom:425.600000pt;}
.y37_c00056{bottom:427.520000pt;}
.y35_c00056{bottom:428.160000pt;}
.y31_c00056{bottom:472.320000pt;}
.y30_c00056{bottom:472.960000pt;}
.y33_c00056{bottom:474.240000pt;}
.y32_c00056{bottom:474.880000pt;}
.y34_c00056{bottom:475.520000pt;}
.y2d_c00056{bottom:510.720000pt;}
.y2e_c00056{bottom:512.640000pt;}
.y2f_c00056{bottom:513.280000pt;}
.y2b_c00056{bottom:547.840000pt;}
.y2c_c00056{bottom:548.480000pt;}
.y2a_c00056{bottom:550.400000pt;}
.y29_c00056{bottom:551.040000pt;}
.y24_c00056{bottom:586.240000pt;}
.y27_c00056{bottom:586.880000pt;}
.y28_c00056{bottom:588.160000pt;}
.y26_c00056{bottom:588.800000pt;}
.y25_c00056{bottom:589.440000pt;}
.y21_c00056{bottom:623.360000pt;}
.y23_c00056{bottom:624.640000pt;}
.y22_c00056{bottom:625.920000pt;}
.y1f_c00056{bottom:626.560000pt;}
.y20_c00056{bottom:627.200000pt;}
.y1d_c00056{bottom:661.760000pt;}
.y1e_c00056{bottom:662.400000pt;}
.y1c_c00056{bottom:664.320000pt;}
.y18_c00056{bottom:699.520000pt;}
.y1a_c00056{bottom:700.160000pt;}
.y19_c00056{bottom:702.080000pt;}
.y1b_c00056{bottom:702.720000pt;}
.y14_c00056{bottom:736.640000pt;}
.y17_c00056{bottom:737.280000pt;}
.y15_c00056{bottom:737.920000pt;}
.y13_c00056{bottom:739.200000pt;}
.y16_c00056{bottom:740.480000pt;}
.y10_c00056{bottom:775.040000pt;}
.y12_c00056{bottom:775.680000pt;}
.yf_c00056{bottom:777.600000pt;}
.y11_c00056{bottom:778.240000pt;}
.yc_c00056{bottom:812.800000pt;}
.ye_c00056{bottom:814.080000pt;}
.ya_c00056{bottom:814.720000pt;}
.y9_c00056{bottom:815.360000pt;}
.yd_c00056{bottom:816.000000pt;}
.yb_c00056{bottom:817.920000pt;}
.y4_c00056{bottom:850.560000pt;}
.y7_c00056{bottom:851.200000pt;}
.y8_c00056{bottom:851.840000pt;}
.y6_c00056{bottom:853.120000pt;}
.y5_c00056{bottom:853.760000pt;}
.y3_c00056{bottom:888.960000pt;}
.y2_c00056{bottom:890.880000pt;}
.y1_c00056{bottom:891.520000pt;}
.h9_c00056{height:13.822500pt;}
.h8_c00056{height:27.645000pt;}
.h7_c00056{height:29.948750pt;}
.h10_c00056{height:32.252500pt;}
.hb_c00056{height:34.556250pt;}
.h2_c00056{height:36.860000pt;}
.h5_c00056{height:39.163750pt;}
.h4_c00056{height:41.467500pt;}
.hf_c00056{height:43.771250pt;}
.h3_c00056{height:46.075000pt;}
.h6_c00056{height:48.378750pt;}
.ha_c00056{height:50.682500pt;}
.hd_c00056{height:52.986250pt;}
.he_c00056{height:55.290000pt;}
.hc_c00056{height:57.593750pt;}
.h1_c00056{height:1019.333333pt;}
.h0_c00056{height:1019.520000pt;}
.w1_c00056{width:712.000000pt;}
.w0_c00056{width:712.320000pt;}
.x0_c00056{left:0.000000pt;}
.x47_c00056{left:65.920000pt;}
.xa_c00056{left:67.200000pt;}
.x20_c00056{left:68.480000pt;}
.x54_c00056{left:94.080000pt;}
.x2f_c00056{left:95.360000pt;}
.x4a_c00056{left:96.640000pt;}
.x3e_c00056{left:105.600000pt;}
.xb_c00056{left:115.840000pt;}
.x14_c00056{left:125.440000pt;}
.xc_c00056{left:134.400000pt;}
.x50_c00056{left:144.640000pt;}
.x55_c00056{left:152.320000pt;}
.x1a_c00056{left:153.600000pt;}
.x42_c00056{left:161.920000pt;}
.x1_c00056{left:163.200000pt;}
.xd_c00056{left:172.800000pt;}
.x46_c00056{left:180.480000pt;}
.x1b_c00056{left:181.760000pt;}
.x15_c00056{left:191.360000pt;}
.x21_c00056{left:200.320000pt;}
.x30_c00056{left:201.600000pt;}
.x4d_c00056{left:209.920000pt;}
.x2_c00056{left:211.200000pt;}
.x29_c00056{left:220.160000pt;}
.x57_c00056{left:228.480000pt;}
.x22_c00056{left:230.400000pt;}
.x3f_c00056{left:238.720000pt;}
.x1c_c00056{left:240.000000pt;}
.x4b_c00056{left:247.680000pt;}
.x51_c00056{left:248.960000pt;}
.x23_c00056{left:267.520000pt;}
.x2b_c00056{left:278.400000pt;}
.x37_c00056{left:286.080000pt;}
.x16_c00056{left:287.360000pt;}
.xe_c00056{left:297.600000pt;}
.x48_c00056{left:305.920000pt;}
.x40_c00056{left:307.200000pt;}
.x31_c00056{left:314.880000pt;}
.x58_c00056{left:323.840000pt;}
.xf_c00056{left:325.120000pt;}
.x3_c00056{left:326.400000pt;}
.x41_c00056{left:334.720000pt;}
.x38_c00056{left:343.680000pt;}
.x24_c00056{left:344.960000pt;}
.x32_c00056{left:353.280000pt;}
.x4_c00056{left:354.560000pt;}
.x10_c00056{left:363.520000pt;}
.x39_c00056{left:373.120000pt;}
.x4e_c00056{left:381.440000pt;}
.x17_c00056{left:382.720000pt;}
.x33_c00056{left:391.680000pt;}
.x1d_c00056{left:401.920000pt;}
.x5_c00056{left:403.200000pt;}
.x18_c00056{left:411.520000pt;}
.x5a_c00056{left:418.560000pt;}
.x11_c00056{left:421.760000pt;}
.x52_c00056{left:429.440000pt;}
.x1e_c00056{left:430.720000pt;}
.x45_c00056{left:439.040000pt;}
.x34_c00056{left:440.960000pt;}
.x4c_c00056{left:447.360000pt;}
.x25_c00056{left:449.280000pt;}
.x6_c00056{left:450.560000pt;}
.x3a_c00056{left:458.880000pt;}
.x53_c00056{left:467.200000pt;}
.x2c_c00056{left:469.760000pt;}
.x7_c00056{left:478.080000pt;}
.x26_c00056{left:479.360000pt;}
.x3b_c00056{left:487.680000pt;}
.x43_c00056{left:497.280000pt;}
.x3d_c00056{left:506.240000pt;}
.x2a_c00056{left:508.160000pt;}
.x35_c00056{left:515.200000pt;}
.x1f_c00056{left:517.120000pt;}
.x44_c00056{left:526.080000pt;}
.x12_c00056{left:535.680000pt;}
.x56_c00056{left:543.360000pt;}
.x59_c00056{left:545.280000pt;}
.x2d_c00056{left:554.880000pt;}
.x4f_c00056{left:563.840000pt;}
.x8_c00056{left:565.120000pt;}
.x36_c00056{left:574.080000pt;}
.x3c_c00056{left:576.640000pt;}
.x49_c00056{left:583.040000pt;}
.x13_c00056{left:585.600000pt;}
.x2e_c00056{left:593.280000pt;}
.x27_c00056{left:602.880000pt;}
.x9_c00056{left:604.800000pt;}
.x19_c00056{left:612.480000pt;}
.x28_c00056{left:622.080000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8e1b08b6c3a5b757a92f3a8e.woff2')format("woff");}.ff1_c00057{font-family:ff1_c00057;line-height:1.109863;font-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_c00057{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00057{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00057{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m32_c00057{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m49_c00057{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2_c00057{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m46_c00057{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00057{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m0_c00057{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00057{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m50_c00057{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.ma_c00057{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m9_c00057{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m11_c00057{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m28_c00057{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);}
.m2d_c00057{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m15_c00057{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_c00057{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m3_c00057{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);}
.m3f_c00057{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m12_c00057{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m24_c00057{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);}
.m26_c00057{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);}
.m2e_c00057{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);}
.m14_c00057{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00057{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);}
.m27_c00057{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m19_c00057{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_c00057{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);}
.m2a_c00057{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m41_c00057{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m23_c00057{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.mb_c00057{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00057{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);}
.m4e_c00057{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00057{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);}
.m3b_c00057{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);}
.m16_c00057{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00057{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m36_c00057{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m13_c00057{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m18_c00057{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);}
.m1a_c00057{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m4_c00057{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00057{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);}
.m43_c00057{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m33_c00057{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);}
.m35_c00057{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m10_c00057{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.mc_c00057{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m53_c00057{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m7_c00057{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);}
.m48_c00057{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00057{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m42_c00057{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);}
.m21_c00057{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m38_c00057{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m31_c00057{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00057{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);}
.m37_c00057{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.me_c00057{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m52_c00057{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m20_c00057{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);}
.m22_c00057{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);}
.m5_c00057{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00057{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m8_c00057{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00057{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m39_c00057{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);}
.md_c00057{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);}
.m51_c00057{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m1_c00057{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m44_c00057{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m29_c00057{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00057{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00057{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m30_c00057{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m34_c00057{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m40_c00057{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);}
.m6_c00057{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);}
.m17_c00057{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00057{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m47_c00057{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m45_c00057{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.v2_c00057{vertical-align:-2.880000px;}
.v0_c00057{vertical-align:0.000000px;}
.v1_c00057{vertical-align:14.400000px;}
.ls0_c00057{letter-spacing:0.000000px;}
.sc__c00057{text-shadow:none;}
.sc0_c00057{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00057{-webkit-text-stroke:0px transparent;}
.sc0_c00057{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00057{word-spacing:-6.506880px;}
.ws2_c00057{word-spacing:-0.994560px;}
.ws3_c00057{word-spacing:0.000000px;}
.ws1_c00057{word-spacing:3.562080px;}
.fc0_c00057{color:transparent;}
.fs6_c00057{font-size:34.560000px;}
.fs5_c00057{font-size:37.440000px;}
.fsd_c00057{font-size:40.320000px;}
.fs8_c00057{font-size:43.200000px;}
.fsa_c00057{font-size:46.080000px;}
.fs1_c00057{font-size:48.960000px;}
.fs4_c00057{font-size:51.840000px;}
.fs7_c00057{font-size:54.720000px;}
.fsb_c00057{font-size:57.600000px;}
.fs3_c00057{font-size:60.480000px;}
.fsc_c00057{font-size:63.360000px;}
.fs9_c00057{font-size:66.240000px;}
.fs2_c00057{font-size:69.120000px;}
.fs0_c00057{font-size:72.000000px;}
.fse_c00057{font-size:74.880000px;}
.y0_c00057{bottom:0.000000px;}
.y5d_c00057{bottom:36.720000px;}
.y5b_c00057{bottom:38.160000px;}
.y5e_c00057{bottom:38.880000px;}
.y5c_c00057{bottom:39.600000px;}
.y58_c00057{bottom:78.480000px;}
.y57_c00057{bottom:79.200000px;}
.y56_c00057{bottom:79.920000px;}
.y5a_c00057{bottom:80.640000px;}
.y59_c00057{bottom:81.360000px;}
.y55_c00057{bottom:120.240000px;}
.y54_c00057{bottom:120.960000px;}
.y53_c00057{bottom:123.120000px;}
.y51_c00057{bottom:123.840000px;}
.y52_c00057{bottom:124.560000px;}
.y4f_c00057{bottom:163.440000px;}
.y50_c00057{bottom:165.600000px;}
.y4e_c00057{bottom:166.320000px;}
.y4d_c00057{bottom:216.000000px;}
.y4c_c00057{bottom:216.720000px;}
.y4a_c00057{bottom:217.440000px;}
.y4b_c00057{bottom:218.880000px;}
.y49_c00057{bottom:219.600000px;}
.y47_c00057{bottom:257.760000px;}
.y48_c00057{bottom:259.200000px;}
.y45_c00057{bottom:261.360000px;}
.y46_c00057{bottom:262.080000px;}
.y44_c00057{bottom:300.960000px;}
.y41_c00057{bottom:302.400000px;}
.y43_c00057{bottom:303.840000px;}
.y40_c00057{bottom:304.560000px;}
.y42_c00057{bottom:305.280000px;}
.y3d_c00057{bottom:344.160000px;}
.y3e_c00057{bottom:346.320000px;}
.y3f_c00057{bottom:347.040000px;}
.y3c_c00057{bottom:347.760000px;}
.y38_c00057{bottom:386.640000px;}
.y3b_c00057{bottom:387.360000px;}
.y3a_c00057{bottom:388.800000px;}
.y39_c00057{bottom:389.520000px;}
.y36_c00057{bottom:429.120000px;}
.y37_c00057{bottom:429.840000px;}
.y35_c00057{bottom:432.000000px;}
.y33_c00057{bottom:472.320000px;}
.y34_c00057{bottom:473.760000px;}
.y31_c00057{bottom:474.480000px;}
.y32_c00057{bottom:475.200000px;}
.y2c_c00057{bottom:513.360000px;}
.y30_c00057{bottom:514.080000px;}
.y2f_c00057{bottom:514.800000px;}
.y2d_c00057{bottom:516.960000px;}
.y2e_c00057{bottom:517.680000px;}
.y2b_c00057{bottom:557.280000px;}
.y28_c00057{bottom:558.720000px;}
.y29_c00057{bottom:559.440000px;}
.y2a_c00057{bottom:560.160000px;}
.y25_c00057{bottom:599.040000px;}
.y26_c00057{bottom:599.760000px;}
.y24_c00057{bottom:601.200000px;}
.y23_c00057{bottom:601.920000px;}
.y27_c00057{bottom:602.640000px;}
.y21_c00057{bottom:642.240000px;}
.y20_c00057{bottom:643.680000px;}
.y1f_c00057{bottom:644.400000px;}
.y22_c00057{bottom:645.120000px;}
.y1d_c00057{bottom:683.280000px;}
.y1e_c00057{bottom:684.000000px;}
.y1c_c00057{bottom:684.720000px;}
.y1b_c00057{bottom:687.600000px;}
.y19_c00057{bottom:737.280000px;}
.y1a_c00057{bottom:739.440000px;}
.y15_c00057{bottom:780.480000px;}
.y16_c00057{bottom:782.640000px;}
.y18_c00057{bottom:783.360000px;}
.y17_c00057{bottom:784.080000px;}
.y12_c00057{bottom:822.960000px;}
.y11_c00057{bottom:825.120000px;}
.y13_c00057{bottom:825.840000px;}
.y14_c00057{bottom:826.560000px;}
.y10_c00057{bottom:865.440000px;}
.yf_c00057{bottom:866.880000px;}
.ye_c00057{bottom:867.600000px;}
.yd_c00057{bottom:868.320000px;}
.yc_c00057{bottom:918.720000px;}
.y7_c00057{bottom:959.760000px;}
.y8_c00057{bottom:961.200000px;}
.yb_c00057{bottom:962.640000px;}
.y9_c00057{bottom:963.360000px;}
.ya_c00057{bottom:964.080000px;}
.y3_c00057{bottom:1002.960000px;}
.y4_c00057{bottom:1003.680000px;}
.y6_c00057{bottom:1005.120000px;}
.y2_c00057{bottom:1006.560000px;}
.y5_c00057{bottom:1007.280000px;}
.y1_c00057{bottom:1072.080000px;}
.h8_c00057{height:31.100625px;}
.h7_c00057{height:33.692344px;}
.h10_c00057{height:36.284062px;}
.ha_c00057{height:38.875781px;}
.hc_c00057{height:41.467500px;}
.h3_c00057{height:44.059219px;}
.h6_c00057{height:46.650937px;}
.h9_c00057{height:49.242656px;}
.hd_c00057{height:51.834375px;}
.h5_c00057{height:54.426094px;}
.he_c00057{height:57.017812px;}
.hb_c00057{height:59.609531px;}
.h4_c00057{height:62.201250px;}
.h2_c00057{height:64.792969px;}
.hf_c00057{height:66.234375px;}
.h11_c00057{height:67.384687px;}
.h1_c00057{height:1151.250000px;}
.h0_c00057{height:1151.280000px;}
.w1_c00057{width:806.250000px;}
.w0_c00057{width:806.400000px;}
.x0_c00057{left:0.000000px;}
.xb_c00057{left:79.920000px;}
.x2_c00057{left:82.080000px;}
.x3_c00057{left:113.040000px;}
.x38_c00057{left:114.480000px;}
.x3d_c00057{left:125.280000px;}
.x2c_c00057{left:136.080000px;}
.x43_c00057{left:146.160000px;}
.x41_c00057{left:157.680000px;}
.x1c_c00057{left:167.760000px;}
.x31_c00057{left:178.560000px;}
.x15_c00057{left:189.360000px;}
.xc_c00057{left:199.440000px;}
.x21_c00057{left:200.880000px;}
.x2d_c00057{left:209.520000px;}
.x16_c00057{left:221.040000px;}
.x28_c00057{left:222.480000px;}
.x22_c00057{left:231.840000px;}
.x47_c00057{left:233.280000px;}
.xd_c00057{left:242.640000px;}
.x4_c00057{left:244.080000px;}
.x33_c00057{left:253.440000px;}
.x3a_c00057{left:263.520000px;}
.x48_c00057{left:264.960000px;}
.x1d_c00057{left:275.760000px;}
.x44_c00057{left:277.920000px;}
.xe_c00057{left:286.560000px;}
.x2e_c00057{left:296.640000px;}
.x1e_c00057{left:306.720000px;}
.x17_c00057{left:318.960000px;}
.x29_c00057{left:329.040000px;}
.x5_c00057{left:339.120000px;}
.x34_c00057{left:349.200000px;}
.x23_c00057{left:350.640000px;}
.x3e_c00057{left:361.440000px;}
.x24_c00057{left:382.320000px;}
.x3f_c00057{left:392.400000px;}
.x3b_c00057{left:403.200000px;}
.x18_c00057{left:404.640000px;}
.xf_c00057{left:414.720000px;}
.x42_c00057{left:416.880000px;}
.x1f_c00057{left:426.240000px;}
.x6_c00057{left:437.040000px;}
.x45_c00057{left:446.400000px;}
.x25_c00057{left:447.840000px;}
.x10_c00057{left:458.640000px;}
.x7_c00057{left:468.720000px;}
.x2a_c00057{left:479.520000px;}
.x11_c00057{left:489.600000px;}
.x19_c00057{left:491.040000px;}
.x1a_c00057{left:511.200000px;}
.x36_c00057{left:522.720000px;}
.x49_c00057{left:533.520000px;}
.x2f_c00057{left:542.880000px;}
.x8_c00057{left:545.040000px;}
.x32_c00057{left:554.400000px;}
.x12_c00057{left:566.640000px;}
.x30_c00057{left:576.720000px;}
.x9_c00057{left:587.520000px;}
.x3c_c00057{left:596.160000px;}
.x26_c00057{left:598.320000px;}
.x35_c00057{left:607.680000px;}
.x39_c00057{left:619.200000px;}
.x27_c00057{left:630.000000px;}
.x40_c00057{left:640.080000px;}
.x1b_c00057{left:641.520000px;}
.x37_c00057{left:651.600000px;}
.x2b_c00057{left:663.120000px;}
.x13_c00057{left:673.920000px;}
.xa_c00057{left:684.720000px;}
.x20_c00057{left:695.520000px;}
.x14_c00057{left:705.600000px;}
.x1_c00057{left:709.920000px;}
.x46_c00057{left:717.120000px;}
@media print{
.v2_c00057{vertical-align:-2.560000pt;}
.v0_c00057{vertical-align:0.000000pt;}
.v1_c00057{vertical-align:12.800000pt;}
.ls0_c00057{letter-spacing:0.000000pt;}
.ws0_c00057{word-spacing:-5.783893pt;}
.ws2_c00057{word-spacing:-0.884053pt;}
.ws3_c00057{word-spacing:0.000000pt;}
.ws1_c00057{word-spacing:3.166293pt;}
.fs6_c00057{font-size:30.720000pt;}
.fs5_c00057{font-size:33.280000pt;}
.fsd_c00057{font-size:35.840000pt;}
.fs8_c00057{font-size:38.400000pt;}
.fsa_c00057{font-size:40.960000pt;}
.fs1_c00057{font-size:43.520000pt;}
.fs4_c00057{font-size:46.080000pt;}
.fs7_c00057{font-size:48.640000pt;}
.fsb_c00057{font-size:51.200000pt;}
.fs3_c00057{font-size:53.760000pt;}
.fsc_c00057{font-size:56.320000pt;}
.fs9_c00057{font-size:58.880000pt;}
.fs2_c00057{font-size:61.440000pt;}
.fs0_c00057{font-size:64.000000pt;}
.fse_c00057{font-size:66.560000pt;}
.y0_c00057{bottom:0.000000pt;}
.y5d_c00057{bottom:32.640000pt;}
.y5b_c00057{bottom:33.920000pt;}
.y5e_c00057{bottom:34.560000pt;}
.y5c_c00057{bottom:35.200000pt;}
.y58_c00057{bottom:69.760000pt;}
.y57_c00057{bottom:70.400000pt;}
.y56_c00057{bottom:71.040000pt;}
.y5a_c00057{bottom:71.680000pt;}
.y59_c00057{bottom:72.320000pt;}
.y55_c00057{bottom:106.880000pt;}
.y54_c00057{bottom:107.520000pt;}
.y53_c00057{bottom:109.440000pt;}
.y51_c00057{bottom:110.080000pt;}
.y52_c00057{bottom:110.720000pt;}
.y4f_c00057{bottom:145.280000pt;}
.y50_c00057{bottom:147.200000pt;}
.y4e_c00057{bottom:147.840000pt;}
.y4d_c00057{bottom:192.000000pt;}
.y4c_c00057{bottom:192.640000pt;}
.y4a_c00057{bottom:193.280000pt;}
.y4b_c00057{bottom:194.560000pt;}
.y49_c00057{bottom:195.200000pt;}
.y47_c00057{bottom:229.120000pt;}
.y48_c00057{bottom:230.400000pt;}
.y45_c00057{bottom:232.320000pt;}
.y46_c00057{bottom:232.960000pt;}
.y44_c00057{bottom:267.520000pt;}
.y41_c00057{bottom:268.800000pt;}
.y43_c00057{bottom:270.080000pt;}
.y40_c00057{bottom:270.720000pt;}
.y42_c00057{bottom:271.360000pt;}
.y3d_c00057{bottom:305.920000pt;}
.y3e_c00057{bottom:307.840000pt;}
.y3f_c00057{bottom:308.480000pt;}
.y3c_c00057{bottom:309.120000pt;}
.y38_c00057{bottom:343.680000pt;}
.y3b_c00057{bottom:344.320000pt;}
.y3a_c00057{bottom:345.600000pt;}
.y39_c00057{bottom:346.240000pt;}
.y36_c00057{bottom:381.440000pt;}
.y37_c00057{bottom:382.080000pt;}
.y35_c00057{bottom:384.000000pt;}
.y33_c00057{bottom:419.840000pt;}
.y34_c00057{bottom:421.120000pt;}
.y31_c00057{bottom:421.760000pt;}
.y32_c00057{bottom:422.400000pt;}
.y2c_c00057{bottom:456.320000pt;}
.y30_c00057{bottom:456.960000pt;}
.y2f_c00057{bottom:457.600000pt;}
.y2d_c00057{bottom:459.520000pt;}
.y2e_c00057{bottom:460.160000pt;}
.y2b_c00057{bottom:495.360000pt;}
.y28_c00057{bottom:496.640000pt;}
.y29_c00057{bottom:497.280000pt;}
.y2a_c00057{bottom:497.920000pt;}
.y25_c00057{bottom:532.480000pt;}
.y26_c00057{bottom:533.120000pt;}
.y24_c00057{bottom:534.400000pt;}
.y23_c00057{bottom:535.040000pt;}
.y27_c00057{bottom:535.680000pt;}
.y21_c00057{bottom:570.880000pt;}
.y20_c00057{bottom:572.160000pt;}
.y1f_c00057{bottom:572.800000pt;}
.y22_c00057{bottom:573.440000pt;}
.y1d_c00057{bottom:607.360000pt;}
.y1e_c00057{bottom:608.000000pt;}
.y1c_c00057{bottom:608.640000pt;}
.y1b_c00057{bottom:611.200000pt;}
.y19_c00057{bottom:655.360000pt;}
.y1a_c00057{bottom:657.280000pt;}
.y15_c00057{bottom:693.760000pt;}
.y16_c00057{bottom:695.680000pt;}
.y18_c00057{bottom:696.320000pt;}
.y17_c00057{bottom:696.960000pt;}
.y12_c00057{bottom:731.520000pt;}
.y11_c00057{bottom:733.440000pt;}
.y13_c00057{bottom:734.080000pt;}
.y14_c00057{bottom:734.720000pt;}
.y10_c00057{bottom:769.280000pt;}
.yf_c00057{bottom:770.560000pt;}
.ye_c00057{bottom:771.200000pt;}
.yd_c00057{bottom:771.840000pt;}
.yc_c00057{bottom:816.640000pt;}
.y7_c00057{bottom:853.120000pt;}
.y8_c00057{bottom:854.400000pt;}
.yb_c00057{bottom:855.680000pt;}
.y9_c00057{bottom:856.320000pt;}
.ya_c00057{bottom:856.960000pt;}
.y3_c00057{bottom:891.520000pt;}
.y4_c00057{bottom:892.160000pt;}
.y6_c00057{bottom:893.440000pt;}
.y2_c00057{bottom:894.720000pt;}
.y5_c00057{bottom:895.360000pt;}
.y1_c00057{bottom:952.960000pt;}
.h8_c00057{height:27.645000pt;}
.h7_c00057{height:29.948750pt;}
.h10_c00057{height:32.252500pt;}
.ha_c00057{height:34.556250pt;}
.hc_c00057{height:36.860000pt;}
.h3_c00057{height:39.163750pt;}
.h6_c00057{height:41.467500pt;}
.h9_c00057{height:43.771250pt;}
.hd_c00057{height:46.075000pt;}
.h5_c00057{height:48.378750pt;}
.he_c00057{height:50.682500pt;}
.hb_c00057{height:52.986250pt;}
.h4_c00057{height:55.290000pt;}
.h2_c00057{height:57.593750pt;}
.hf_c00057{height:58.875000pt;}
.h11_c00057{height:59.897500pt;}
.h1_c00057{height:1023.333333pt;}
.h0_c00057{height:1023.360000pt;}
.w1_c00057{width:716.666667pt;}
.w0_c00057{width:716.800000pt;}
.x0_c00057{left:0.000000pt;}
.xb_c00057{left:71.040000pt;}
.x2_c00057{left:72.960000pt;}
.x3_c00057{left:100.480000pt;}
.x38_c00057{left:101.760000pt;}
.x3d_c00057{left:111.360000pt;}
.x2c_c00057{left:120.960000pt;}
.x43_c00057{left:129.920000pt;}
.x41_c00057{left:140.160000pt;}
.x1c_c00057{left:149.120000pt;}
.x31_c00057{left:158.720000pt;}
.x15_c00057{left:168.320000pt;}
.xc_c00057{left:177.280000pt;}
.x21_c00057{left:178.560000pt;}
.x2d_c00057{left:186.240000pt;}
.x16_c00057{left:196.480000pt;}
.x28_c00057{left:197.760000pt;}
.x22_c00057{left:206.080000pt;}
.x47_c00057{left:207.360000pt;}
.xd_c00057{left:215.680000pt;}
.x4_c00057{left:216.960000pt;}
.x33_c00057{left:225.280000pt;}
.x3a_c00057{left:234.240000pt;}
.x48_c00057{left:235.520000pt;}
.x1d_c00057{left:245.120000pt;}
.x44_c00057{left:247.040000pt;}
.xe_c00057{left:254.720000pt;}
.x2e_c00057{left:263.680000pt;}
.x1e_c00057{left:272.640000pt;}
.x17_c00057{left:283.520000pt;}
.x29_c00057{left:292.480000pt;}
.x5_c00057{left:301.440000pt;}
.x34_c00057{left:310.400000pt;}
.x23_c00057{left:311.680000pt;}
.x3e_c00057{left:321.280000pt;}
.x24_c00057{left:339.840000pt;}
.x3f_c00057{left:348.800000pt;}
.x3b_c00057{left:358.400000pt;}
.x18_c00057{left:359.680000pt;}
.xf_c00057{left:368.640000pt;}
.x42_c00057{left:370.560000pt;}
.x1f_c00057{left:378.880000pt;}
.x6_c00057{left:388.480000pt;}
.x45_c00057{left:396.800000pt;}
.x25_c00057{left:398.080000pt;}
.x10_c00057{left:407.680000pt;}
.x7_c00057{left:416.640000pt;}
.x2a_c00057{left:426.240000pt;}
.x11_c00057{left:435.200000pt;}
.x19_c00057{left:436.480000pt;}
.x1a_c00057{left:454.400000pt;}
.x36_c00057{left:464.640000pt;}
.x49_c00057{left:474.240000pt;}
.x2f_c00057{left:482.560000pt;}
.x8_c00057{left:484.480000pt;}
.x32_c00057{left:492.800000pt;}
.x12_c00057{left:503.680000pt;}
.x30_c00057{left:512.640000pt;}
.x9_c00057{left:522.240000pt;}
.x3c_c00057{left:529.920000pt;}
.x26_c00057{left:531.840000pt;}
.x35_c00057{left:540.160000pt;}
.x39_c00057{left:550.400000pt;}
.x27_c00057{left:560.000000pt;}
.x40_c00057{left:568.960000pt;}
.x1b_c00057{left:570.240000pt;}
.x37_c00057{left:579.200000pt;}
.x2b_c00057{left:589.440000pt;}
.x13_c00057{left:599.040000pt;}
.xa_c00057{left:608.640000pt;}
.x20_c00057{left:618.240000pt;}
.x14_c00057{left:627.200000pt;}
.x1_c00057{left:631.040000pt;}
.x46_c00057{left:637.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_24d71164fd6b6cd790a216a4.woff2')format("woff");}.ff1_c00058{font-family:ff1_c00058;line-height:1.109863;font-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_c00058{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);}
.m1f_c00058{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m43_c00058{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m0_c00058{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m18_c00058{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m9_c00058{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00058{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.mc_c00058{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m45_c00058{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m49_c00058{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m54_c00058{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m35_c00058{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00058{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m39_c00058{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m31_c00058{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m36_c00058{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m55_c00058{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00058{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);}
.m38_c00058{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00058{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.mf_c00058{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m7_c00058{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);}
.m53_c00058{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00058{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m4_c00058{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);}
.m4b_c00058{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);}
.m2d_c00058{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);}
.m28_c00058{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m29_c00058{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);}
.m1d_c00058{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m10_c00058{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.md_c00058{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);}
.m20_c00058{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m30_c00058{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m12_c00058{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00058{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);}
.m2a_c00058{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m8_c00058{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);}
.m24_c00058{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);}
.m4c_c00058{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);}
.m14_c00058{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m22_c00058{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00058{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m16_c00058{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);}
.m50_c00058{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m2_c00058{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.mb_c00058{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);}
.m52_c00058{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00058{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);}
.m23_c00058{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m37_c00058{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m42_c00058{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m46_c00058{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m26_c00058{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);}
.ma_c00058{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00058{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m15_c00058{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00058{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);}
.m48_c00058{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m51_c00058{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m5_c00058{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m41_c00058{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00058{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);}
.m1c_c00058{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m19_c00058{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m13_c00058{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);}
.m2f_c00058{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m40_c00058{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);}
.m25_c00058{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m44_c00058{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m34_c00058{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m33_c00058{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);}
.m1_c00058{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.me_c00058{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);}
.m32_c00058{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m11_c00058{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);}
.m4a_c00058{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m3_c00058{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m27_c00058{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m56_c00058{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m47_c00058{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m6_c00058{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m17_c00058{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);}
.m2b_c00058{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);}
.m21_c00058{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00058{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00058{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.v1_c00058{vertical-align:-14.400000px;}
.v0_c00058{vertical-align:0.000000px;}
.ls0_c00058{letter-spacing:0.000000px;}
.sc__c00058{text-shadow:none;}
.sc0_c00058{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00058{-webkit-text-stroke:0px transparent;}
.sc0_c00058{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00058{word-spacing:-3.987600px;}
.ws1_c00058{word-spacing:0.000000px;}
.fc0_c00058{color:transparent;}
.fs6_c00058{font-size:34.560000px;}
.fs9_c00058{font-size:37.440000px;}
.fsc_c00058{font-size:40.320000px;}
.fs8_c00058{font-size:43.200000px;}
.fs5_c00058{font-size:46.080000px;}
.fs3_c00058{font-size:48.960000px;}
.fs1_c00058{font-size:51.840000px;}
.fsd_c00058{font-size:54.720000px;}
.fsa_c00058{font-size:57.600000px;}
.fs2_c00058{font-size:60.480000px;}
.fs4_c00058{font-size:63.360000px;}
.fsb_c00058{font-size:66.240000px;}
.fs7_c00058{font-size:69.120000px;}
.fs0_c00058{font-size:72.000000px;}
.y0_c00058{bottom:0.000000px;}
.y58_c00058{bottom:75.600000px;}
.y5b_c00058{bottom:77.040000px;}
.y59_c00058{bottom:77.760000px;}
.y5a_c00058{bottom:78.480000px;}
.y57_c00058{bottom:79.200000px;}
.y56_c00058{bottom:130.320000px;}
.y55_c00058{bottom:133.200000px;}
.y51_c00058{bottom:170.640000px;}
.y53_c00058{bottom:171.360000px;}
.y54_c00058{bottom:172.800000px;}
.y52_c00058{bottom:173.520000px;}
.y50_c00058{bottom:174.240000px;}
.y4f_c00058{bottom:174.960000px;}
.y4b_c00058{bottom:213.120000px;}
.y4e_c00058{bottom:214.560000px;}
.y4c_c00058{bottom:215.280000px;}
.y4d_c00058{bottom:216.000000px;}
.y49_c00058{bottom:255.600000px;}
.y46_c00058{bottom:256.320000px;}
.y4a_c00058{bottom:257.760000px;}
.y47_c00058{bottom:258.480000px;}
.y48_c00058{bottom:259.200000px;}
.y45_c00058{bottom:297.360000px;}
.y44_c00058{bottom:298.080000px;}
.y42_c00058{bottom:300.240000px;}
.y43_c00058{bottom:300.960000px;}
.y41_c00058{bottom:301.680000px;}
.y40_c00058{bottom:340.560000px;}
.y3e_c00058{bottom:342.720000px;}
.y3d_c00058{bottom:343.440000px;}
.y3f_c00058{bottom:344.160000px;}
.y3a_c00058{bottom:393.120000px;}
.y3b_c00058{bottom:394.560000px;}
.y3c_c00058{bottom:396.000000px;}
.y39_c00058{bottom:435.600000px;}
.y37_c00058{bottom:436.320000px;}
.y38_c00058{bottom:438.480000px;}
.y36_c00058{bottom:439.200000px;}
.y34_c00058{bottom:478.800000px;}
.y32_c00058{bottom:479.520000px;}
.y35_c00058{bottom:480.960000px;}
.y33_c00058{bottom:481.680000px;}
.y30_c00058{bottom:521.280000px;}
.y31_c00058{bottom:522.000000px;}
.y2f_c00058{bottom:524.160000px;}
.y2e_c00058{bottom:524.880000px;}
.y2d_c00058{bottom:564.480000px;}
.y2b_c00058{bottom:566.640000px;}
.y2c_c00058{bottom:567.360000px;}
.y27_c00058{bottom:606.960000px;}
.y28_c00058{bottom:608.400000px;}
.y29_c00058{bottom:609.120000px;}
.y2a_c00058{bottom:609.840000px;}
.y25_c00058{bottom:649.440000px;}
.y26_c00058{bottom:651.600000px;}
.y24_c00058{bottom:652.320000px;}
.y20_c00058{bottom:701.280000px;}
.y22_c00058{bottom:702.720000px;}
.y23_c00058{bottom:704.880000px;}
.y21_c00058{bottom:705.600000px;}
.y1d_c00058{bottom:745.200000px;}
.y1f_c00058{bottom:745.920000px;}
.y1c_c00058{bottom:747.360000px;}
.y1e_c00058{bottom:748.080000px;}
.y18_c00058{bottom:786.960000px;}
.y1b_c00058{bottom:787.680000px;}
.y1a_c00058{bottom:789.840000px;}
.y19_c00058{bottom:790.560000px;}
.y17_c00058{bottom:829.440000px;}
.y15_c00058{bottom:832.320000px;}
.y16_c00058{bottom:833.040000px;}
.y11_c00058{bottom:871.920000px;}
.y13_c00058{bottom:872.640000px;}
.y12_c00058{bottom:874.080000px;}
.y10_c00058{bottom:874.800000px;}
.y14_c00058{bottom:875.520000px;}
.ye_c00058{bottom:915.120000px;}
.yc_c00058{bottom:917.280000px;}
.yd_c00058{bottom:918.000000px;}
.yf_c00058{bottom:918.720000px;}
.y9_c00058{bottom:956.880000px;}
.y8_c00058{bottom:957.600000px;}
.yb_c00058{bottom:958.320000px;}
.y7_c00058{bottom:959.760000px;}
.ya_c00058{bottom:960.480000px;}
.y3_c00058{bottom:1000.080000px;}
.y5_c00058{bottom:1000.800000px;}
.y2_c00058{bottom:1002.240000px;}
.y4_c00058{bottom:1002.960000px;}
.y6_c00058{bottom:1003.680000px;}
.y1_c00058{bottom:1069.200000px;}
.h8_c00058{height:31.100625px;}
.hb_c00058{height:33.692344px;}
.hd_c00058{height:36.284062px;}
.ha_c00058{height:38.875781px;}
.h7_c00058{height:41.467500px;}
.h5_c00058{height:44.059219px;}
.h3_c00058{height:46.650937px;}
.he_c00058{height:49.242656px;}
.hc_c00058{height:51.834375px;}
.h4_c00058{height:54.426094px;}
.h6_c00058{height:57.017812px;}
.hf_c00058{height:59.609531px;}
.h9_c00058{height:62.201250px;}
.h2_c00058{height:64.792969px;}
.h1_c00058{height:1148.250000px;}
.h0_c00058{height:1148.400000px;}
.w1_c00058{width:801.750000px;}
.w0_c00058{width:802.080000px;}
.x0_c00058{left:0.000000px;}
.x4a_c00058{left:77.040000px;}
.x2_c00058{left:78.480000px;}
.x39_c00058{left:79.920000px;}
.x14_c00058{left:100.080000px;}
.x3_c00058{left:110.160000px;}
.x27_c00058{left:111.600000px;}
.x40_c00058{left:121.680000px;}
.xc_c00058{left:132.480000px;}
.x2f_c00058{left:144.000000px;}
.xd_c00058{left:153.360000px;}
.x22_c00058{left:164.160000px;}
.x30_c00058{left:165.600000px;}
.x37_c00058{left:174.960000px;}
.x48_c00058{left:176.400000px;}
.x4_c00058{left:185.760000px;}
.x31_c00058{left:195.120000px;}
.x1b_c00058{left:207.360000px;}
.x5_c00058{left:218.160000px;}
.x3b_c00058{left:229.680000px;}
.x1c_c00058{left:239.760000px;}
.x32_c00058{left:250.560000px;}
.x28_c00058{left:261.360000px;}
.x41_c00058{left:272.160000px;}
.x1d_c00058{left:281.520000px;}
.xe_c00058{left:282.960000px;}
.x35_c00058{left:293.760000px;}
.x15_c00058{left:305.280000px;}
.x33_c00058{left:315.360000px;}
.x44_c00058{left:324.720000px;}
.x16_c00058{left:326.160000px;}
.x3c_c00058{left:346.320000px;}
.x29_c00058{left:347.760000px;}
.x6_c00058{left:357.840000px;}
.x17_c00058{left:369.360000px;}
.x7_c00058{left:379.440000px;}
.xf_c00058{left:400.320000px;}
.x34_c00058{left:401.760000px;}
.x24_c00058{left:410.400000px;}
.x8_c00058{left:412.560000px;}
.x45_c00058{left:421.920000px;}
.x3d_c00058{left:433.440000px;}
.x10_c00058{left:443.520000px;}
.x18_c00058{left:444.960000px;}
.x46_c00058{left:455.040000px;}
.x3a_c00058{left:465.840000px;}
.x1e_c00058{left:475.920000px;}
.x25_c00058{left:497.520000px;}
.x19_c00058{left:508.320000px;}
.x3f_c00058{left:518.400000px;}
.x26_c00058{left:529.920000px;}
.x9_c00058{left:531.360000px;}
.x2a_c00058{left:540.720000px;}
.x47_c00058{left:550.800000px;}
.x11_c00058{left:552.240000px;}
.xa_c00058{left:562.320000px;}
.x38_c00058{left:572.400000px;}
.x1f_c00058{left:573.840000px;}
.x42_c00058{left:583.200000px;}
.x1a_c00058{left:585.360000px;}
.x4b_c00058{left:593.280000px;}
.x12_c00058{left:594.720000px;}
.x23_c00058{left:605.520000px;}
.x2b_c00058{left:616.320000px;}
.x20_c00058{left:625.680000px;}
.x3e_c00058{left:627.120000px;}
.x13_c00058{left:637.920000px;}
.x2c_c00058{left:648.000000px;}
.x4c_c00058{left:658.800000px;}
.xb_c00058{left:660.240000px;}
.x43_c00058{left:669.600000px;}
.x2d_c00058{left:680.400000px;}
.x36_c00058{left:681.840000px;}
.x49_c00058{left:691.200000px;}
.x21_c00058{left:702.720000px;}
.x1_c00058{left:715.680000px;}
.x2e_c00058{left:735.120000px;}
@media print{
.v1_c00058{vertical-align:-12.800000pt;}
.v0_c00058{vertical-align:0.000000pt;}
.ls0_c00058{letter-spacing:0.000000pt;}
.ws0_c00058{word-spacing:-3.544533pt;}
.ws1_c00058{word-spacing:0.000000pt;}
.fs6_c00058{font-size:30.720000pt;}
.fs9_c00058{font-size:33.280000pt;}
.fsc_c00058{font-size:35.840000pt;}
.fs8_c00058{font-size:38.400000pt;}
.fs5_c00058{font-size:40.960000pt;}
.fs3_c00058{font-size:43.520000pt;}
.fs1_c00058{font-size:46.080000pt;}
.fsd_c00058{font-size:48.640000pt;}
.fsa_c00058{font-size:51.200000pt;}
.fs2_c00058{font-size:53.760000pt;}
.fs4_c00058{font-size:56.320000pt;}
.fsb_c00058{font-size:58.880000pt;}
.fs7_c00058{font-size:61.440000pt;}
.fs0_c00058{font-size:64.000000pt;}
.y0_c00058{bottom:0.000000pt;}
.y58_c00058{bottom:67.200000pt;}
.y5b_c00058{bottom:68.480000pt;}
.y59_c00058{bottom:69.120000pt;}
.y5a_c00058{bottom:69.760000pt;}
.y57_c00058{bottom:70.400000pt;}
.y56_c00058{bottom:115.840000pt;}
.y55_c00058{bottom:118.400000pt;}
.y51_c00058{bottom:151.680000pt;}
.y53_c00058{bottom:152.320000pt;}
.y54_c00058{bottom:153.600000pt;}
.y52_c00058{bottom:154.240000pt;}
.y50_c00058{bottom:154.880000pt;}
.y4f_c00058{bottom:155.520000pt;}
.y4b_c00058{bottom:189.440000pt;}
.y4e_c00058{bottom:190.720000pt;}
.y4c_c00058{bottom:191.360000pt;}
.y4d_c00058{bottom:192.000000pt;}
.y49_c00058{bottom:227.200000pt;}
.y46_c00058{bottom:227.840000pt;}
.y4a_c00058{bottom:229.120000pt;}
.y47_c00058{bottom:229.760000pt;}
.y48_c00058{bottom:230.400000pt;}
.y45_c00058{bottom:264.320000pt;}
.y44_c00058{bottom:264.960000pt;}
.y42_c00058{bottom:266.880000pt;}
.y43_c00058{bottom:267.520000pt;}
.y41_c00058{bottom:268.160000pt;}
.y40_c00058{bottom:302.720000pt;}
.y3e_c00058{bottom:304.640000pt;}
.y3d_c00058{bottom:305.280000pt;}
.y3f_c00058{bottom:305.920000pt;}
.y3a_c00058{bottom:349.440000pt;}
.y3b_c00058{bottom:350.720000pt;}
.y3c_c00058{bottom:352.000000pt;}
.y39_c00058{bottom:387.200000pt;}
.y37_c00058{bottom:387.840000pt;}
.y38_c00058{bottom:389.760000pt;}
.y36_c00058{bottom:390.400000pt;}
.y34_c00058{bottom:425.600000pt;}
.y32_c00058{bottom:426.240000pt;}
.y35_c00058{bottom:427.520000pt;}
.y33_c00058{bottom:428.160000pt;}
.y30_c00058{bottom:463.360000pt;}
.y31_c00058{bottom:464.000000pt;}
.y2f_c00058{bottom:465.920000pt;}
.y2e_c00058{bottom:466.560000pt;}
.y2d_c00058{bottom:501.760000pt;}
.y2b_c00058{bottom:503.680000pt;}
.y2c_c00058{bottom:504.320000pt;}
.y27_c00058{bottom:539.520000pt;}
.y28_c00058{bottom:540.800000pt;}
.y29_c00058{bottom:541.440000pt;}
.y2a_c00058{bottom:542.080000pt;}
.y25_c00058{bottom:577.280000pt;}
.y26_c00058{bottom:579.200000pt;}
.y24_c00058{bottom:579.840000pt;}
.y20_c00058{bottom:623.360000pt;}
.y22_c00058{bottom:624.640000pt;}
.y23_c00058{bottom:626.560000pt;}
.y21_c00058{bottom:627.200000pt;}
.y1d_c00058{bottom:662.400000pt;}
.y1f_c00058{bottom:663.040000pt;}
.y1c_c00058{bottom:664.320000pt;}
.y1e_c00058{bottom:664.960000pt;}
.y18_c00058{bottom:699.520000pt;}
.y1b_c00058{bottom:700.160000pt;}
.y1a_c00058{bottom:702.080000pt;}
.y19_c00058{bottom:702.720000pt;}
.y17_c00058{bottom:737.280000pt;}
.y15_c00058{bottom:739.840000pt;}
.y16_c00058{bottom:740.480000pt;}
.y11_c00058{bottom:775.040000pt;}
.y13_c00058{bottom:775.680000pt;}
.y12_c00058{bottom:776.960000pt;}
.y10_c00058{bottom:777.600000pt;}
.y14_c00058{bottom:778.240000pt;}
.ye_c00058{bottom:813.440000pt;}
.yc_c00058{bottom:815.360000pt;}
.yd_c00058{bottom:816.000000pt;}
.yf_c00058{bottom:816.640000pt;}
.y9_c00058{bottom:850.560000pt;}
.y8_c00058{bottom:851.200000pt;}
.yb_c00058{bottom:851.840000pt;}
.y7_c00058{bottom:853.120000pt;}
.ya_c00058{bottom:853.760000pt;}
.y3_c00058{bottom:888.960000pt;}
.y5_c00058{bottom:889.600000pt;}
.y2_c00058{bottom:890.880000pt;}
.y4_c00058{bottom:891.520000pt;}
.y6_c00058{bottom:892.160000pt;}
.y1_c00058{bottom:950.400000pt;}
.h8_c00058{height:27.645000pt;}
.hb_c00058{height:29.948750pt;}
.hd_c00058{height:32.252500pt;}
.ha_c00058{height:34.556250pt;}
.h7_c00058{height:36.860000pt;}
.h5_c00058{height:39.163750pt;}
.h3_c00058{height:41.467500pt;}
.he_c00058{height:43.771250pt;}
.hc_c00058{height:46.075000pt;}
.h4_c00058{height:48.378750pt;}
.h6_c00058{height:50.682500pt;}
.hf_c00058{height:52.986250pt;}
.h9_c00058{height:55.290000pt;}
.h2_c00058{height:57.593750pt;}
.h1_c00058{height:1020.666667pt;}
.h0_c00058{height:1020.800000pt;}
.w1_c00058{width:712.666667pt;}
.w0_c00058{width:712.960000pt;}
.x0_c00058{left:0.000000pt;}
.x4a_c00058{left:68.480000pt;}
.x2_c00058{left:69.760000pt;}
.x39_c00058{left:71.040000pt;}
.x14_c00058{left:88.960000pt;}
.x3_c00058{left:97.920000pt;}
.x27_c00058{left:99.200000pt;}
.x40_c00058{left:108.160000pt;}
.xc_c00058{left:117.760000pt;}
.x2f_c00058{left:128.000000pt;}
.xd_c00058{left:136.320000pt;}
.x22_c00058{left:145.920000pt;}
.x30_c00058{left:147.200000pt;}
.x37_c00058{left:155.520000pt;}
.x48_c00058{left:156.800000pt;}
.x4_c00058{left:165.120000pt;}
.x31_c00058{left:173.440000pt;}
.x1b_c00058{left:184.320000pt;}
.x5_c00058{left:193.920000pt;}
.x3b_c00058{left:204.160000pt;}
.x1c_c00058{left:213.120000pt;}
.x32_c00058{left:222.720000pt;}
.x28_c00058{left:232.320000pt;}
.x41_c00058{left:241.920000pt;}
.x1d_c00058{left:250.240000pt;}
.xe_c00058{left:251.520000pt;}
.x35_c00058{left:261.120000pt;}
.x15_c00058{left:271.360000pt;}
.x33_c00058{left:280.320000pt;}
.x44_c00058{left:288.640000pt;}
.x16_c00058{left:289.920000pt;}
.x3c_c00058{left:307.840000pt;}
.x29_c00058{left:309.120000pt;}
.x6_c00058{left:318.080000pt;}
.x17_c00058{left:328.320000pt;}
.x7_c00058{left:337.280000pt;}
.xf_c00058{left:355.840000pt;}
.x34_c00058{left:357.120000pt;}
.x24_c00058{left:364.800000pt;}
.x8_c00058{left:366.720000pt;}
.x45_c00058{left:375.040000pt;}
.x3d_c00058{left:385.280000pt;}
.x10_c00058{left:394.240000pt;}
.x18_c00058{left:395.520000pt;}
.x46_c00058{left:404.480000pt;}
.x3a_c00058{left:414.080000pt;}
.x1e_c00058{left:423.040000pt;}
.x25_c00058{left:442.240000pt;}
.x19_c00058{left:451.840000pt;}
.x3f_c00058{left:460.800000pt;}
.x26_c00058{left:471.040000pt;}
.x9_c00058{left:472.320000pt;}
.x2a_c00058{left:480.640000pt;}
.x47_c00058{left:489.600000pt;}
.x11_c00058{left:490.880000pt;}
.xa_c00058{left:499.840000pt;}
.x38_c00058{left:508.800000pt;}
.x1f_c00058{left:510.080000pt;}
.x42_c00058{left:518.400000pt;}
.x1a_c00058{left:520.320000pt;}
.x4b_c00058{left:527.360000pt;}
.x12_c00058{left:528.640000pt;}
.x23_c00058{left:538.240000pt;}
.x2b_c00058{left:547.840000pt;}
.x20_c00058{left:556.160000pt;}
.x3e_c00058{left:557.440000pt;}
.x13_c00058{left:567.040000pt;}
.x2c_c00058{left:576.000000pt;}
.x4c_c00058{left:585.600000pt;}
.xb_c00058{left:586.880000pt;}
.x43_c00058{left:595.200000pt;}
.x2d_c00058{left:604.800000pt;}
.x36_c00058{left:606.080000pt;}
.x49_c00058{left:614.400000pt;}
.x21_c00058{left:624.640000pt;}
.x1_c00058{left:636.160000pt;}
.x2e_c00058{left:653.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4526cdf862c2068169ff5d3e.woff2')format("woff");}.ff1_c00059{font-family:ff1_c00059;line-height:1.109863;font-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_c00059{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00059{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00059{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00059{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m23_c00059{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00059{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00059{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.ma_c00059{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m55_c00059{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m20_c00059{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m29_c00059{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00059{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m5_c00059{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2_c00059{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m0_c00059{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m10_c00059{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m4_c00059{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);}
.m4c_c00059{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00059{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);}
.m3d_c00059{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m6_c00059{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m3_c00059{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m27_c00059{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);}
.m24_c00059{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m33_c00059{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);}
.m26_c00059{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);}
.m35_c00059{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m12_c00059{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);}
.m25_c00059{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);}
.m2b_c00059{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00059{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);}
.m62_c00059{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m42_c00059{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00059{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);}
.m18_c00059{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m36_c00059{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m28_c00059{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00059{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);}
.m57_c00059{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m54_c00059{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);}
.m1a_c00059{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00059{transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00059{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);}
.m5c_c00059{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m44_c00059{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m46_c00059{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m1_c00059{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m47_c00059{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);}
.m2f_c00059{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m21_c00059{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m49_c00059{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);}
.m16_c00059{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m8_c00059{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_c00059{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.mc_c00059{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00059{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m52_c00059{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);}
.m4f_c00059{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m48_c00059{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00059{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m31_c00059{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);}
.m3f_c00059{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m32_c00059{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m17_c00059{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m9_c00059{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m43_c00059{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);}
.me_c00059{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);}
.m50_c00059{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00059{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m30_c00059{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);}
.m34_c00059{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00059{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.mf_c00059{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);}
.m13_c00059{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00059{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m41_c00059{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m56_c00059{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m38_c00059{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m45_c00059{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);}
.m63_c00059{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m22_c00059{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);}
.m7_c00059{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.md_c00059{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m19_c00059{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m59_c00059{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m11_c00059{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m58_c00059{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00059{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m39_c00059{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);}
.m51_c00059{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);}
.m4d_c00059{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00059{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);}
.m61_c00059{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00059{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m37_c00059{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);}
.m5a_c00059{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.mb_c00059{transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);}
.m53_c00059{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m64_c00059{transform:matrix(0.735000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735000,0.000000,0.000000,0.250000,0,0);}
.m40_c00059{transform:matrix(0.872500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.872500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.872500,0.000000,0.000000,0.250000,0,0);}
.m60_c00059{transform:matrix(1.027500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.027500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.027500,0.000000,0.000000,0.250000,0,0);}
.v1_c00059{vertical-align:-14.400000px;}
.v4_c00059{vertical-align:-11.520000px;}
.v2_c00059{vertical-align:-2.880000px;}
.v0_c00059{vertical-align:0.000000px;}
.v3_c00059{vertical-align:2.880000px;}
.ls0_c00059{letter-spacing:0.000000px;}
.sc__c00059{text-shadow:none;}
.sc0_c00059{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00059{-webkit-text-stroke:0px transparent;}
.sc0_c00059{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00059{word-spacing:-6.574320px;}
.ws2_c00059{word-spacing:-5.095440px;}
.ws4_c00059{word-spacing:0.000000px;}
.ws1_c00059{word-spacing:3.636000px;}
.ws0_c00059{word-spacing:5.995200px;}
.fc0_c00059{color:transparent;}
.fs10_c00059{font-size:23.040000px;}
.fsd_c00059{font-size:25.920000px;}
.fs6_c00059{font-size:34.560000px;}
.fs9_c00059{font-size:37.440000px;}
.fsc_c00059{font-size:43.200000px;}
.fs1_c00059{font-size:46.080000px;}
.fsa_c00059{font-size:48.960000px;}
.fs5_c00059{font-size:51.840000px;}
.fse_c00059{font-size:54.720000px;}
.fsb_c00059{font-size:57.600000px;}
.fs7_c00059{font-size:60.480000px;}
.fs3_c00059{font-size:63.360000px;}
.fs4_c00059{font-size:66.240000px;}
.fs2_c00059{font-size:69.120000px;}
.fs0_c00059{font-size:72.000000px;}
.fs8_c00059{font-size:74.880000px;}
.fsf_c00059{font-size:77.760000px;}
.y0_c00059{bottom:0.000000px;}
.y66_c00059{bottom:58.320000px;}
.y65_c00059{bottom:59.760000px;}
.y64_c00059{bottom:60.480000px;}
.y63_c00059{bottom:61.920000px;}
.y62_c00059{bottom:99.360000px;}
.y5f_c00059{bottom:100.800000px;}
.y60_c00059{bottom:102.240000px;}
.y61_c00059{bottom:102.960000px;}
.y5e_c00059{bottom:103.680000px;}
.y59_c00059{bottom:142.560000px;}
.y5d_c00059{bottom:143.280000px;}
.y5c_c00059{bottom:144.720000px;}
.y5b_c00059{bottom:145.440000px;}
.y5a_c00059{bottom:146.160000px;}
.y57_c00059{bottom:184.320000px;}
.y55_c00059{bottom:185.040000px;}
.y58_c00059{bottom:187.200000px;}
.y56_c00059{bottom:187.920000px;}
.y54_c00059{bottom:188.640000px;}
.y53_c00059{bottom:226.800000px;}
.y52_c00059{bottom:230.400000px;}
.y51_c00059{bottom:231.120000px;}
.y4e_c00059{bottom:270.000000px;}
.y4f_c00059{bottom:270.720000px;}
.y4d_c00059{bottom:272.880000px;}
.y50_c00059{bottom:273.600000px;}
.y4a_c00059{bottom:312.480000px;}
.y49_c00059{bottom:313.200000px;}
.y4c_c00059{bottom:314.640000px;}
.y48_c00059{bottom:315.360000px;}
.y4b_c00059{bottom:316.080000px;}
.y47_c00059{bottom:354.240000px;}
.y45_c00059{bottom:357.120000px;}
.y46_c00059{bottom:357.840000px;}
.y44_c00059{bottom:397.440000px;}
.y43_c00059{bottom:398.160000px;}
.y42_c00059{bottom:400.320000px;}
.y41_c00059{bottom:401.040000px;}
.y3e_c00059{bottom:439.920000px;}
.y40_c00059{bottom:440.640000px;}
.y3c_c00059{bottom:442.080000px;}
.y3d_c00059{bottom:442.800000px;}
.y3f_c00059{bottom:443.520000px;}
.y3b_c00059{bottom:482.400000px;}
.y3a_c00059{bottom:483.120000px;}
.y39_c00059{bottom:485.280000px;}
.y38_c00059{bottom:486.000000px;}
.y37_c00059{bottom:524.880000px;}
.y35_c00059{bottom:527.760000px;}
.y36_c00059{bottom:528.480000px;}
.y33_c00059{bottom:577.440000px;}
.y30_c00059{bottom:578.880000px;}
.y34_c00059{bottom:579.600000px;}
.y31_c00059{bottom:580.320000px;}
.y32_c00059{bottom:581.040000px;}
.y2f_c00059{bottom:581.760000px;}
.y2c_c00059{bottom:620.640000px;}
.y2e_c00059{bottom:621.360000px;}
.y2b_c00059{bottom:623.520000px;}
.y2d_c00059{bottom:624.240000px;}
.y28_c00059{bottom:663.120000px;}
.y2a_c00059{bottom:666.000000px;}
.y29_c00059{bottom:666.720000px;}
.y23_c00059{bottom:705.600000px;}
.y26_c00059{bottom:706.320000px;}
.y25_c00059{bottom:708.480000px;}
.y24_c00059{bottom:709.200000px;}
.y27_c00059{bottom:709.920000px;}
.y21_c00059{bottom:748.800000px;}
.y1f_c00059{bottom:750.960000px;}
.y20_c00059{bottom:751.680000px;}
.y22_c00059{bottom:752.400000px;}
.y1c_c00059{bottom:791.280000px;}
.y1e_c00059{bottom:792.000000px;}
.y1d_c00059{bottom:794.160000px;}
.y17_c00059{bottom:833.040000px;}
.y1b_c00059{bottom:833.760000px;}
.y18_c00059{bottom:834.480000px;}
.y1a_c00059{bottom:835.920000px;}
.y19_c00059{bottom:836.640000px;}
.y13_c00059{bottom:876.240000px;}
.y15_c00059{bottom:876.960000px;}
.y14_c00059{bottom:878.400000px;}
.y12_c00059{bottom:879.120000px;}
.y16_c00059{bottom:879.840000px;}
.ye_c00059{bottom:918.000000px;}
.yd_c00059{bottom:918.720000px;}
.y10_c00059{bottom:919.440000px;}
.yc_c00059{bottom:920.880000px;}
.yf_c00059{bottom:921.600000px;}
.y11_c00059{bottom:923.040000px;}
.y8_c00059{bottom:961.200000px;}
.yb_c00059{bottom:962.640000px;}
.ya_c00059{bottom:964.080000px;}
.y9_c00059{bottom:964.800000px;}
.y3_c00059{bottom:1002.960000px;}
.y2_c00059{bottom:1003.680000px;}
.y4_c00059{bottom:1004.400000px;}
.y7_c00059{bottom:1005.120000px;}
.y5_c00059{bottom:1006.560000px;}
.y6_c00059{bottom:1008.000000px;}
.y1_c00059{bottom:1074.240000px;}
.h14_c00059{height:20.733750px;}
.h11_c00059{height:23.325469px;}
.h8_c00059{height:31.100625px;}
.hb_c00059{height:33.692344px;}
.h10_c00059{height:38.875781px;}
.h3_c00059{height:41.467500px;}
.hc_c00059{height:44.059219px;}
.h7_c00059{height:46.650937px;}
.h12_c00059{height:49.242656px;}
.hf_c00059{height:51.834375px;}
.ha_c00059{height:52.984687px;}
.h9_c00059{height:54.426094px;}
.h5_c00059{height:57.017812px;}
.he_c00059{height:59.321250px;}
.h6_c00059{height:59.609531px;}
.h4_c00059{height:62.201250px;}
.h2_c00059{height:64.792969px;}
.hd_c00059{height:67.384687px;}
.h13_c00059{height:69.976406px;}
.h1_c00059{height:1150.500000px;}
.h0_c00059{height:1150.560000px;}
.w1_c00059{width:805.500000px;}
.w0_c00059{width:805.680000px;}
.x0_c00059{left:0.000000px;}
.x2_c00059{left:79.200000px;}
.x2a_c00059{left:80.640000px;}
.x1b_c00059{left:112.320000px;}
.x12_c00059{left:123.120000px;}
.x3_c00059{left:125.280000px;}
.x1c_c00059{left:133.200000px;}
.xb_c00059{left:142.560000px;}
.x44_c00059{left:144.720000px;}
.x13_c00059{left:155.520000px;}
.x21_c00059{left:165.600000px;}
.x2e_c00059{left:175.680000px;}
.x26_c00059{left:177.120000px;}
.x45_c00059{left:186.480000px;}
.xc_c00059{left:187.920000px;}
.x34_c00059{left:198.000000px;}
.x22_c00059{left:209.520000px;}
.x4_c00059{left:220.320000px;}
.x48_c00059{left:231.120000px;}
.x39_c00059{left:241.200000px;}
.x14_c00059{left:251.280000px;}
.x1d_c00059{left:252.720000px;}
.x35_c00059{left:262.080000px;}
.x36_c00059{left:263.520000px;}
.x3a_c00059{left:273.600000px;}
.x1e_c00059{left:283.680000px;}
.x4d_c00059{left:293.760000px;}
.xd_c00059{left:295.920000px;}
.x43_c00059{left:304.560000px;}
.x27_c00059{left:306.000000px;}
.x5_c00059{left:316.080000px;}
.xe_c00059{left:326.880000px;}
.x4e_c00059{left:328.320000px;}
.x15_c00059{left:337.680000px;}
.x28_c00059{left:348.480000px;}
.x2f_c00059{left:359.280000px;}
.xf_c00059{left:370.800000px;}
.x37_c00059{left:380.160000px;}
.x49_c00059{left:381.600000px;}
.x3d_c00059{left:390.960000px;}
.x6_c00059{left:392.400000px;}
.x30_c00059{left:402.480000px;}
.x16_c00059{left:412.560000px;}
.x38_c00059{left:414.720000px;}
.x2b_c00059{left:423.360000px;}
.x1f_c00059{left:424.800000px;}
.x17_c00059{left:434.160000px;}
.x4a_c00059{left:437.040000px;}
.x29_c00059{left:444.960000px;}
.x3f_c00059{left:455.760000px;}
.x3e_c00059{left:457.200000px;}
.x23_c00059{left:466.560000px;}
.x10_c00059{left:477.360000px;}
.x46_c00059{left:488.880000px;}
.x18_c00059{left:498.960000px;}
.x20_c00059{left:510.480000px;}
.x4b_c00059{left:511.920000px;}
.x31_c00059{left:531.360000px;}
.x4c_c00059{left:534.240000px;}
.x7_c00059{left:542.160000px;}
.x24_c00059{left:563.760000px;}
.x8_c00059{left:575.280000px;}
.x2c_c00059{left:585.360000px;}
.x3b_c00059{left:596.160000px;}
.x25_c00059{left:606.240000px;}
.x19_c00059{left:618.480000px;}
.x3c_c00059{left:627.120000px;}
.x40_c00059{left:629.280000px;}
.x9_c00059{left:639.360000px;}
.x47_c00059{left:651.600000px;}
.x41_c00059{left:659.520000px;}
.x11_c00059{left:660.960000px;}
.xa_c00059{left:662.400000px;}
.x1a_c00059{left:671.040000px;}
.x32_c00059{left:683.280000px;}
.x2d_c00059{left:693.360000px;}
.x33_c00059{left:704.160000px;}
.x1_c00059{left:708.480000px;}
.x42_c00059{left:714.240000px;}
@media print{
.v1_c00059{vertical-align:-12.800000pt;}
.v4_c00059{vertical-align:-10.240000pt;}
.v2_c00059{vertical-align:-2.560000pt;}
.v0_c00059{vertical-align:0.000000pt;}
.v3_c00059{vertical-align:2.560000pt;}
.ls0_c00059{letter-spacing:0.000000pt;}
.ws3_c00059{word-spacing:-5.843840pt;}
.ws2_c00059{word-spacing:-4.529280pt;}
.ws4_c00059{word-spacing:0.000000pt;}
.ws1_c00059{word-spacing:3.232000pt;}
.ws0_c00059{word-spacing:5.329067pt;}
.fs10_c00059{font-size:20.480000pt;}
.fsd_c00059{font-size:23.040000pt;}
.fs6_c00059{font-size:30.720000pt;}
.fs9_c00059{font-size:33.280000pt;}
.fsc_c00059{font-size:38.400000pt;}
.fs1_c00059{font-size:40.960000pt;}
.fsa_c00059{font-size:43.520000pt;}
.fs5_c00059{font-size:46.080000pt;}
.fse_c00059{font-size:48.640000pt;}
.fsb_c00059{font-size:51.200000pt;}
.fs7_c00059{font-size:53.760000pt;}
.fs3_c00059{font-size:56.320000pt;}
.fs4_c00059{font-size:58.880000pt;}
.fs2_c00059{font-size:61.440000pt;}
.fs0_c00059{font-size:64.000000pt;}
.fs8_c00059{font-size:66.560000pt;}
.fsf_c00059{font-size:69.120000pt;}
.y0_c00059{bottom:0.000000pt;}
.y66_c00059{bottom:51.840000pt;}
.y65_c00059{bottom:53.120000pt;}
.y64_c00059{bottom:53.760000pt;}
.y63_c00059{bottom:55.040000pt;}
.y62_c00059{bottom:88.320000pt;}
.y5f_c00059{bottom:89.600000pt;}
.y60_c00059{bottom:90.880000pt;}
.y61_c00059{bottom:91.520000pt;}
.y5e_c00059{bottom:92.160000pt;}
.y59_c00059{bottom:126.720000pt;}
.y5d_c00059{bottom:127.360000pt;}
.y5c_c00059{bottom:128.640000pt;}
.y5b_c00059{bottom:129.280000pt;}
.y5a_c00059{bottom:129.920000pt;}
.y57_c00059{bottom:163.840000pt;}
.y55_c00059{bottom:164.480000pt;}
.y58_c00059{bottom:166.400000pt;}
.y56_c00059{bottom:167.040000pt;}
.y54_c00059{bottom:167.680000pt;}
.y53_c00059{bottom:201.600000pt;}
.y52_c00059{bottom:204.800000pt;}
.y51_c00059{bottom:205.440000pt;}
.y4e_c00059{bottom:240.000000pt;}
.y4f_c00059{bottom:240.640000pt;}
.y4d_c00059{bottom:242.560000pt;}
.y50_c00059{bottom:243.200000pt;}
.y4a_c00059{bottom:277.760000pt;}
.y49_c00059{bottom:278.400000pt;}
.y4c_c00059{bottom:279.680000pt;}
.y48_c00059{bottom:280.320000pt;}
.y4b_c00059{bottom:280.960000pt;}
.y47_c00059{bottom:314.880000pt;}
.y45_c00059{bottom:317.440000pt;}
.y46_c00059{bottom:318.080000pt;}
.y44_c00059{bottom:353.280000pt;}
.y43_c00059{bottom:353.920000pt;}
.y42_c00059{bottom:355.840000pt;}
.y41_c00059{bottom:356.480000pt;}
.y3e_c00059{bottom:391.040000pt;}
.y40_c00059{bottom:391.680000pt;}
.y3c_c00059{bottom:392.960000pt;}
.y3d_c00059{bottom:393.600000pt;}
.y3f_c00059{bottom:394.240000pt;}
.y3b_c00059{bottom:428.800000pt;}
.y3a_c00059{bottom:429.440000pt;}
.y39_c00059{bottom:431.360000pt;}
.y38_c00059{bottom:432.000000pt;}
.y37_c00059{bottom:466.560000pt;}
.y35_c00059{bottom:469.120000pt;}
.y36_c00059{bottom:469.760000pt;}
.y33_c00059{bottom:513.280000pt;}
.y30_c00059{bottom:514.560000pt;}
.y34_c00059{bottom:515.200000pt;}
.y31_c00059{bottom:515.840000pt;}
.y32_c00059{bottom:516.480000pt;}
.y2f_c00059{bottom:517.120000pt;}
.y2c_c00059{bottom:551.680000pt;}
.y2e_c00059{bottom:552.320000pt;}
.y2b_c00059{bottom:554.240000pt;}
.y2d_c00059{bottom:554.880000pt;}
.y28_c00059{bottom:589.440000pt;}
.y2a_c00059{bottom:592.000000pt;}
.y29_c00059{bottom:592.640000pt;}
.y23_c00059{bottom:627.200000pt;}
.y26_c00059{bottom:627.840000pt;}
.y25_c00059{bottom:629.760000pt;}
.y24_c00059{bottom:630.400000pt;}
.y27_c00059{bottom:631.040000pt;}
.y21_c00059{bottom:665.600000pt;}
.y1f_c00059{bottom:667.520000pt;}
.y20_c00059{bottom:668.160000pt;}
.y22_c00059{bottom:668.800000pt;}
.y1c_c00059{bottom:703.360000pt;}
.y1e_c00059{bottom:704.000000pt;}
.y1d_c00059{bottom:705.920000pt;}
.y17_c00059{bottom:740.480000pt;}
.y1b_c00059{bottom:741.120000pt;}
.y18_c00059{bottom:741.760000pt;}
.y1a_c00059{bottom:743.040000pt;}
.y19_c00059{bottom:743.680000pt;}
.y13_c00059{bottom:778.880000pt;}
.y15_c00059{bottom:779.520000pt;}
.y14_c00059{bottom:780.800000pt;}
.y12_c00059{bottom:781.440000pt;}
.y16_c00059{bottom:782.080000pt;}
.ye_c00059{bottom:816.000000pt;}
.yd_c00059{bottom:816.640000pt;}
.y10_c00059{bottom:817.280000pt;}
.yc_c00059{bottom:818.560000pt;}
.yf_c00059{bottom:819.200000pt;}
.y11_c00059{bottom:820.480000pt;}
.y8_c00059{bottom:854.400000pt;}
.yb_c00059{bottom:855.680000pt;}
.ya_c00059{bottom:856.960000pt;}
.y9_c00059{bottom:857.600000pt;}
.y3_c00059{bottom:891.520000pt;}
.y2_c00059{bottom:892.160000pt;}
.y4_c00059{bottom:892.800000pt;}
.y7_c00059{bottom:893.440000pt;}
.y5_c00059{bottom:894.720000pt;}
.y6_c00059{bottom:896.000000pt;}
.y1_c00059{bottom:954.880000pt;}
.h14_c00059{height:18.430000pt;}
.h11_c00059{height:20.733750pt;}
.h8_c00059{height:27.645000pt;}
.hb_c00059{height:29.948750pt;}
.h10_c00059{height:34.556250pt;}
.h3_c00059{height:36.860000pt;}
.hc_c00059{height:39.163750pt;}
.h7_c00059{height:41.467500pt;}
.h12_c00059{height:43.771250pt;}
.hf_c00059{height:46.075000pt;}
.ha_c00059{height:47.097500pt;}
.h9_c00059{height:48.378750pt;}
.h5_c00059{height:50.682500pt;}
.he_c00059{height:52.730000pt;}
.h6_c00059{height:52.986250pt;}
.h4_c00059{height:55.290000pt;}
.h2_c00059{height:57.593750pt;}
.hd_c00059{height:59.897500pt;}
.h13_c00059{height:62.201250pt;}
.h1_c00059{height:1022.666667pt;}
.h0_c00059{height:1022.720000pt;}
.w1_c00059{width:716.000000pt;}
.w0_c00059{width:716.160000pt;}
.x0_c00059{left:0.000000pt;}
.x2_c00059{left:70.400000pt;}
.x2a_c00059{left:71.680000pt;}
.x1b_c00059{left:99.840000pt;}
.x12_c00059{left:109.440000pt;}
.x3_c00059{left:111.360000pt;}
.x1c_c00059{left:118.400000pt;}
.xb_c00059{left:126.720000pt;}
.x44_c00059{left:128.640000pt;}
.x13_c00059{left:138.240000pt;}
.x21_c00059{left:147.200000pt;}
.x2e_c00059{left:156.160000pt;}
.x26_c00059{left:157.440000pt;}
.x45_c00059{left:165.760000pt;}
.xc_c00059{left:167.040000pt;}
.x34_c00059{left:176.000000pt;}
.x22_c00059{left:186.240000pt;}
.x4_c00059{left:195.840000pt;}
.x48_c00059{left:205.440000pt;}
.x39_c00059{left:214.400000pt;}
.x14_c00059{left:223.360000pt;}
.x1d_c00059{left:224.640000pt;}
.x35_c00059{left:232.960000pt;}
.x36_c00059{left:234.240000pt;}
.x3a_c00059{left:243.200000pt;}
.x1e_c00059{left:252.160000pt;}
.x4d_c00059{left:261.120000pt;}
.xd_c00059{left:263.040000pt;}
.x43_c00059{left:270.720000pt;}
.x27_c00059{left:272.000000pt;}
.x5_c00059{left:280.960000pt;}
.xe_c00059{left:290.560000pt;}
.x4e_c00059{left:291.840000pt;}
.x15_c00059{left:300.160000pt;}
.x28_c00059{left:309.760000pt;}
.x2f_c00059{left:319.360000pt;}
.xf_c00059{left:329.600000pt;}
.x37_c00059{left:337.920000pt;}
.x49_c00059{left:339.200000pt;}
.x3d_c00059{left:347.520000pt;}
.x6_c00059{left:348.800000pt;}
.x30_c00059{left:357.760000pt;}
.x16_c00059{left:366.720000pt;}
.x38_c00059{left:368.640000pt;}
.x2b_c00059{left:376.320000pt;}
.x1f_c00059{left:377.600000pt;}
.x17_c00059{left:385.920000pt;}
.x4a_c00059{left:388.480000pt;}
.x29_c00059{left:395.520000pt;}
.x3f_c00059{left:405.120000pt;}
.x3e_c00059{left:406.400000pt;}
.x23_c00059{left:414.720000pt;}
.x10_c00059{left:424.320000pt;}
.x46_c00059{left:434.560000pt;}
.x18_c00059{left:443.520000pt;}
.x20_c00059{left:453.760000pt;}
.x4b_c00059{left:455.040000pt;}
.x31_c00059{left:472.320000pt;}
.x4c_c00059{left:474.880000pt;}
.x7_c00059{left:481.920000pt;}
.x24_c00059{left:501.120000pt;}
.x8_c00059{left:511.360000pt;}
.x2c_c00059{left:520.320000pt;}
.x3b_c00059{left:529.920000pt;}
.x25_c00059{left:538.880000pt;}
.x19_c00059{left:549.760000pt;}
.x3c_c00059{left:557.440000pt;}
.x40_c00059{left:559.360000pt;}
.x9_c00059{left:568.320000pt;}
.x47_c00059{left:579.200000pt;}
.x41_c00059{left:586.240000pt;}
.x11_c00059{left:587.520000pt;}
.xa_c00059{left:588.800000pt;}
.x1a_c00059{left:596.480000pt;}
.x32_c00059{left:607.360000pt;}
.x2d_c00059{left:616.320000pt;}
.x33_c00059{left:625.920000pt;}
.x1_c00059{left:629.760000pt;}
.x42_c00059{left:634.880000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1d1aca43b6994131de3a0b10.woff2')format("woff");}.ff1_c00060{font-family:ff1_c00060;line-height:1.109863;font-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_c00060{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00060{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m22_c00060{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m55_c00060{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m11_c00060{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m47_c00060{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m10_c00060{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m27_c00060{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m50_c00060{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m34_c00060{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00060{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m48_c00060{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m24_c00060{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00060{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m16_c00060{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m8_c00060{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);}
.m2b_c00060{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m0_c00060{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m5_c00060{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);}
.m46_c00060{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m3_c00060{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m6_c00060{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00060{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m49_c00060{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m2_c00060{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1_c00060{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m41_c00060{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);}
.m45_c00060{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);}
.m4a_c00060{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m19_c00060{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);}
.md_c00060{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00060{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);}
.m33_c00060{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);}
.mc_c00060{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);}
.m31_c00060{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m37_c00060{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00060{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m7_c00060{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);}
.m2e_c00060{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);}
.m3c_c00060{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);}
.m43_c00060{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);}
.m28_c00060{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m38_c00060{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.mf_c00060{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00060{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00060{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);}
.m2a_c00060{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m30_c00060{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00060{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);}
.m3b_c00060{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m13_c00060{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);}
.m4_c00060{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00060{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m9_c00060{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m44_c00060{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);}
.m39_c00060{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.me_c00060{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m42_c00060{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m15_c00060{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.mb_c00060{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00060{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m20_c00060{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);}
.m3d_c00060{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00060{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m35_c00060{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);}
.m12_c00060{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m51_c00060{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m57_c00060{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m32_c00060{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);}
.m18_c00060{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m23_c00060{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);}
.m21_c00060{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m36_c00060{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m17_c00060{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);}
.m58_c00060{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m14_c00060{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m40_c00060{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m56_c00060{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m53_c00060{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m29_c00060{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m54_c00060{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);}
.m3a_c00060{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);}
.m2f_c00060{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);}
.m1f_c00060{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00060{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.ma_c00060{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);}
.m52_c00060{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.m25_c00060{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m26_c00060{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.v0_c00060{vertical-align:0.000000px;}
.ls0_c00060{letter-spacing:0.000000px;}
.sc__c00060{text-shadow:none;}
.sc0_c00060{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00060{-webkit-text-stroke:0px transparent;}
.sc0_c00060{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00060{word-spacing:0.000000px;}
.fc0_c00060{color:transparent;}
.fs7_c00060{font-size:34.560000px;}
.fs8_c00060{font-size:37.440000px;}
.fsb_c00060{font-size:40.320000px;}
.fsc_c00060{font-size:43.200000px;}
.fs3_c00060{font-size:46.080000px;}
.fs1_c00060{font-size:48.960000px;}
.fs4_c00060{font-size:51.840000px;}
.fse_c00060{font-size:54.720000px;}
.fs9_c00060{font-size:57.600000px;}
.fs2_c00060{font-size:60.480000px;}
.fs6_c00060{font-size:63.360000px;}
.fsd_c00060{font-size:66.240000px;}
.fs0_c00060{font-size:69.120000px;}
.fs5_c00060{font-size:72.000000px;}
.fsa_c00060{font-size:83.520000px;}
.y0_c00060{bottom:0.000000px;}
.y59_c00060{bottom:67.680000px;}
.y56_c00060{bottom:68.400000px;}
.y57_c00060{bottom:69.120000px;}
.y5a_c00060{bottom:70.560000px;}
.y58_c00060{bottom:72.000000px;}
.y55_c00060{bottom:72.720000px;}
.y54_c00060{bottom:110.880000px;}
.y53_c00060{bottom:113.760000px;}
.y52_c00060{bottom:114.480000px;}
.y51_c00060{bottom:115.200000px;}
.y50_c00060{bottom:115.920000px;}
.y4e_c00060{bottom:154.080000px;}
.y4f_c00060{bottom:156.240000px;}
.y4d_c00060{bottom:156.960000px;}
.y4c_c00060{bottom:157.680000px;}
.y4b_c00060{bottom:197.280000px;}
.y4a_c00060{bottom:198.720000px;}
.y48_c00060{bottom:199.440000px;}
.y49_c00060{bottom:200.160000px;}
.y46_c00060{bottom:239.040000px;}
.y47_c00060{bottom:241.200000px;}
.y45_c00060{bottom:241.920000px;}
.y43_c00060{bottom:292.320000px;}
.y44_c00060{bottom:294.480000px;}
.y42_c00060{bottom:334.080000px;}
.y40_c00060{bottom:334.800000px;}
.y41_c00060{bottom:336.960000px;}
.y3f_c00060{bottom:337.680000px;}
.y3c_c00060{bottom:376.560000px;}
.y3a_c00060{bottom:377.280000px;}
.y3d_c00060{bottom:378.000000px;}
.y3e_c00060{bottom:378.720000px;}
.y3b_c00060{bottom:379.440000px;}
.y37_c00060{bottom:419.040000px;}
.y39_c00060{bottom:419.760000px;}
.y36_c00060{bottom:420.480000px;}
.y38_c00060{bottom:422.640000px;}
.y32_c00060{bottom:461.520000px;}
.y35_c00060{bottom:462.240000px;}
.y33_c00060{bottom:464.400000px;}
.y34_c00060{bottom:465.120000px;}
.y2f_c00060{bottom:504.000000px;}
.y30_c00060{bottom:504.720000px;}
.y2e_c00060{bottom:507.600000px;}
.y31_c00060{bottom:508.320000px;}
.y2c_c00060{bottom:547.920000px;}
.y2d_c00060{bottom:550.080000px;}
.y2b_c00060{bottom:550.800000px;}
.y2a_c00060{bottom:600.480000px;}
.y29_c00060{bottom:601.200000px;}
.y27_c00060{bottom:603.360000px;}
.y28_c00060{bottom:604.080000px;}
.y22_c00060{bottom:642.960000px;}
.y26_c00060{bottom:643.680000px;}
.y25_c00060{bottom:645.120000px;}
.y24_c00060{bottom:645.840000px;}
.y23_c00060{bottom:647.280000px;}
.y21_c00060{bottom:685.440000px;}
.y1f_c00060{bottom:688.320000px;}
.y20_c00060{bottom:689.040000px;}
.y1b_c00060{bottom:727.920000px;}
.y1d_c00060{bottom:728.640000px;}
.y1c_c00060{bottom:730.800000px;}
.y1e_c00060{bottom:731.520000px;}
.y1a_c00060{bottom:769.680000px;}
.y19_c00060{bottom:770.400000px;}
.y18_c00060{bottom:771.120000px;}
.y17_c00060{bottom:773.280000px;}
.y16_c00060{bottom:812.880000px;}
.y15_c00060{bottom:813.600000px;}
.y14_c00060{bottom:815.760000px;}
.ye_c00060{bottom:855.360000px;}
.y12_c00060{bottom:856.080000px;}
.y13_c00060{bottom:856.800000px;}
.y10_c00060{bottom:857.520000px;}
.y11_c00060{bottom:858.240000px;}
.yf_c00060{bottom:858.960000px;}
.yd_c00060{bottom:898.560000px;}
.yc_c00060{bottom:900.720000px;}
.yb_c00060{bottom:901.440000px;}
.y8_c00060{bottom:951.120000px;}
.ya_c00060{bottom:951.840000px;}
.y7_c00060{bottom:954.000000px;}
.y9_c00060{bottom:954.720000px;}
.y2_c00060{bottom:993.600000px;}
.y3_c00060{bottom:994.320000px;}
.y6_c00060{bottom:995.040000px;}
.y5_c00060{bottom:996.480000px;}
.y4_c00060{bottom:997.200000px;}
.y1_c00060{bottom:1070.640000px;}
.h9_c00060{height:31.100625px;}
.ha_c00060{height:33.692344px;}
.hd_c00060{height:36.284062px;}
.he_c00060{height:38.875781px;}
.h5_c00060{height:41.467500px;}
.h3_c00060{height:44.059219px;}
.h6_c00060{height:46.650937px;}
.h10_c00060{height:49.242656px;}
.hb_c00060{height:51.834375px;}
.h4_c00060{height:54.426094px;}
.h8_c00060{height:57.017812px;}
.hf_c00060{height:59.609531px;}
.h2_c00060{height:62.201250px;}
.h7_c00060{height:64.792969px;}
.hc_c00060{height:75.159844px;}
.h1_c00060{height:1143.750000px;}
.h0_c00060{height:1144.080000px;}
.w0_c00060{width:797.040000px;}
.w1_c00060{width:797.250000px;}
.x0_c00060{left:0.000000px;}
.x2_c00060{left:72.720000px;}
.x19_c00060{left:94.320000px;}
.x3_c00060{left:105.840000px;}
.x2a_c00060{left:108.000000px;}
.xc_c00060{left:115.200000px;}
.x24_c00060{left:116.640000px;}
.x1a_c00060{left:126.720000px;}
.x35_c00060{left:136.080000px;}
.xd_c00060{left:137.520000px;}
.x50_c00060{left:147.600000px;}
.x1b_c00060{left:157.680000px;}
.x2e_c00060{left:168.480000px;}
.x55_c00060{left:169.920000px;}
.x3f_c00060{left:179.280000px;}
.x4_c00060{left:180.720000px;}
.x56_c00060{left:190.080000px;}
.x38_c00060{left:191.520000px;}
.x13_c00060{left:200.880000px;}
.x3b_c00060{left:202.320000px;}
.x5_c00060{left:212.400000px;}
.x1c_c00060{left:223.200000px;}
.x46_c00060{left:234.000000px;}
.x14_c00060{left:244.800000px;}
.xe_c00060{left:246.240000px;}
.x25_c00060{left:254.880000px;}
.x4a_c00060{left:265.680000px;}
.x6_c00060{left:267.120000px;}
.x3c_c00060{left:277.200000px;}
.x54_c00060{left:286.560000px;}
.x57_c00060{left:288.000000px;}
.x26_c00060{left:290.880000px;}
.xf_c00060{left:298.080000px;}
.x4b_c00060{left:308.880000px;}
.x15_c00060{left:310.320000px;}
.x47_c00060{left:319.680000px;}
.x36_c00060{left:330.480000px;}
.x2f_c00060{left:331.920000px;}
.x51_c00060{left:339.120000px;}
.x42_c00060{left:341.280000px;}
.x5b_c00060{left:351.360000px;}
.x7_c00060{left:352.800000px;}
.x1d_c00060{left:363.600000px;}
.x27_c00060{left:365.040000px;}
.x3d_c00060{left:372.240000px;}
.x43_c00060{left:373.680000px;}
.x8_c00060{left:384.480000px;}
.x1e_c00060{left:394.560000px;}
.x10_c00060{left:406.800000px;}
.x3e_c00060{left:416.880000px;}
.x52_c00060{left:426.240000px;}
.x30_c00060{left:427.680000px;}
.x4e_c00060{left:437.760000px;}
.x16_c00060{left:439.200000px;}
.x1f_c00060{left:449.280000px;}
.x2b_c00060{left:460.080000px;}
.x53_c00060{left:469.440000px;}
.x9_c00060{left:471.600000px;}
.x20_c00060{left:481.680000px;}
.x59_c00060{left:491.040000px;}
.x40_c00060{left:492.480000px;}
.x17_c00060{left:503.280000px;}
.x58_c00060{left:511.920000px;}
.x2c_c00060{left:516.240000px;}
.x48_c00060{left:523.440000px;}
.x31_c00060{left:524.880000px;}
.x5a_c00060{left:534.240000px;}
.xa_c00060{left:535.680000px;}
.x28_c00060{left:538.560000px;}
.x37_c00060{left:545.040000px;}
.x21_c00060{left:546.480000px;}
.x32_c00060{left:556.560000px;}
.x11_c00060{left:559.440000px;}
.x4c_c00060{left:565.920000px;}
.x18_c00060{left:567.360000px;}
.x44_c00060{left:577.440000px;}
.x22_c00060{left:578.880000px;}
.x2d_c00060{left:588.960000px;}
.x33_c00060{left:599.040000px;}
.x4f_c00060{left:609.840000px;}
.x29_c00060{left:611.280000px;}
.x39_c00060{left:621.360000px;}
.x49_c00060{left:632.160000px;}
.x45_c00060{left:642.960000px;}
.x4d_c00060{left:653.760000px;}
.x12_c00060{left:655.200000px;}
.x34_c00060{left:664.560000px;}
.xb_c00060{left:666.000000px;}
.x5c_c00060{left:673.920000px;}
.x41_c00060{left:686.160000px;}
.x23_c00060{left:696.240000px;}
.x1_c00060{left:705.600000px;}
.x3a_c00060{left:707.040000px;}
@media print{
.v0_c00060{vertical-align:0.000000pt;}
.ls0_c00060{letter-spacing:0.000000pt;}
.ws0_c00060{word-spacing:0.000000pt;}
.fs7_c00060{font-size:30.720000pt;}
.fs8_c00060{font-size:33.280000pt;}
.fsb_c00060{font-size:35.840000pt;}
.fsc_c00060{font-size:38.400000pt;}
.fs3_c00060{font-size:40.960000pt;}
.fs1_c00060{font-size:43.520000pt;}
.fs4_c00060{font-size:46.080000pt;}
.fse_c00060{font-size:48.640000pt;}
.fs9_c00060{font-size:51.200000pt;}
.fs2_c00060{font-size:53.760000pt;}
.fs6_c00060{font-size:56.320000pt;}
.fsd_c00060{font-size:58.880000pt;}
.fs0_c00060{font-size:61.440000pt;}
.fs5_c00060{font-size:64.000000pt;}
.fsa_c00060{font-size:74.240000pt;}
.y0_c00060{bottom:0.000000pt;}
.y59_c00060{bottom:60.160000pt;}
.y56_c00060{bottom:60.800000pt;}
.y57_c00060{bottom:61.440000pt;}
.y5a_c00060{bottom:62.720000pt;}
.y58_c00060{bottom:64.000000pt;}
.y55_c00060{bottom:64.640000pt;}
.y54_c00060{bottom:98.560000pt;}
.y53_c00060{bottom:101.120000pt;}
.y52_c00060{bottom:101.760000pt;}
.y51_c00060{bottom:102.400000pt;}
.y50_c00060{bottom:103.040000pt;}
.y4e_c00060{bottom:136.960000pt;}
.y4f_c00060{bottom:138.880000pt;}
.y4d_c00060{bottom:139.520000pt;}
.y4c_c00060{bottom:140.160000pt;}
.y4b_c00060{bottom:175.360000pt;}
.y4a_c00060{bottom:176.640000pt;}
.y48_c00060{bottom:177.280000pt;}
.y49_c00060{bottom:177.920000pt;}
.y46_c00060{bottom:212.480000pt;}
.y47_c00060{bottom:214.400000pt;}
.y45_c00060{bottom:215.040000pt;}
.y43_c00060{bottom:259.840000pt;}
.y44_c00060{bottom:261.760000pt;}
.y42_c00060{bottom:296.960000pt;}
.y40_c00060{bottom:297.600000pt;}
.y41_c00060{bottom:299.520000pt;}
.y3f_c00060{bottom:300.160000pt;}
.y3c_c00060{bottom:334.720000pt;}
.y3a_c00060{bottom:335.360000pt;}
.y3d_c00060{bottom:336.000000pt;}
.y3e_c00060{bottom:336.640000pt;}
.y3b_c00060{bottom:337.280000pt;}
.y37_c00060{bottom:372.480000pt;}
.y39_c00060{bottom:373.120000pt;}
.y36_c00060{bottom:373.760000pt;}
.y38_c00060{bottom:375.680000pt;}
.y32_c00060{bottom:410.240000pt;}
.y35_c00060{bottom:410.880000pt;}
.y33_c00060{bottom:412.800000pt;}
.y34_c00060{bottom:413.440000pt;}
.y2f_c00060{bottom:448.000000pt;}
.y30_c00060{bottom:448.640000pt;}
.y2e_c00060{bottom:451.200000pt;}
.y31_c00060{bottom:451.840000pt;}
.y2c_c00060{bottom:487.040000pt;}
.y2d_c00060{bottom:488.960000pt;}
.y2b_c00060{bottom:489.600000pt;}
.y2a_c00060{bottom:533.760000pt;}
.y29_c00060{bottom:534.400000pt;}
.y27_c00060{bottom:536.320000pt;}
.y28_c00060{bottom:536.960000pt;}
.y22_c00060{bottom:571.520000pt;}
.y26_c00060{bottom:572.160000pt;}
.y25_c00060{bottom:573.440000pt;}
.y24_c00060{bottom:574.080000pt;}
.y23_c00060{bottom:575.360000pt;}
.y21_c00060{bottom:609.280000pt;}
.y1f_c00060{bottom:611.840000pt;}
.y20_c00060{bottom:612.480000pt;}
.y1b_c00060{bottom:647.040000pt;}
.y1d_c00060{bottom:647.680000pt;}
.y1c_c00060{bottom:649.600000pt;}
.y1e_c00060{bottom:650.240000pt;}
.y1a_c00060{bottom:684.160000pt;}
.y19_c00060{bottom:684.800000pt;}
.y18_c00060{bottom:685.440000pt;}
.y17_c00060{bottom:687.360000pt;}
.y16_c00060{bottom:722.560000pt;}
.y15_c00060{bottom:723.200000pt;}
.y14_c00060{bottom:725.120000pt;}
.ye_c00060{bottom:760.320000pt;}
.y12_c00060{bottom:760.960000pt;}
.y13_c00060{bottom:761.600000pt;}
.y10_c00060{bottom:762.240000pt;}
.y11_c00060{bottom:762.880000pt;}
.yf_c00060{bottom:763.520000pt;}
.yd_c00060{bottom:798.720000pt;}
.yc_c00060{bottom:800.640000pt;}
.yb_c00060{bottom:801.280000pt;}
.y8_c00060{bottom:845.440000pt;}
.ya_c00060{bottom:846.080000pt;}
.y7_c00060{bottom:848.000000pt;}
.y9_c00060{bottom:848.640000pt;}
.y2_c00060{bottom:883.200000pt;}
.y3_c00060{bottom:883.840000pt;}
.y6_c00060{bottom:884.480000pt;}
.y5_c00060{bottom:885.760000pt;}
.y4_c00060{bottom:886.400000pt;}
.y1_c00060{bottom:951.680000pt;}
.h9_c00060{height:27.645000pt;}
.ha_c00060{height:29.948750pt;}
.hd_c00060{height:32.252500pt;}
.he_c00060{height:34.556250pt;}
.h5_c00060{height:36.860000pt;}
.h3_c00060{height:39.163750pt;}
.h6_c00060{height:41.467500pt;}
.h10_c00060{height:43.771250pt;}
.hb_c00060{height:46.075000pt;}
.h4_c00060{height:48.378750pt;}
.h8_c00060{height:50.682500pt;}
.hf_c00060{height:52.986250pt;}
.h2_c00060{height:55.290000pt;}
.h7_c00060{height:57.593750pt;}
.hc_c00060{height:66.808750pt;}
.h1_c00060{height:1016.666667pt;}
.h0_c00060{height:1016.960000pt;}
.w0_c00060{width:708.480000pt;}
.w1_c00060{width:708.666667pt;}
.x0_c00060{left:0.000000pt;}
.x2_c00060{left:64.640000pt;}
.x19_c00060{left:83.840000pt;}
.x3_c00060{left:94.080000pt;}
.x2a_c00060{left:96.000000pt;}
.xc_c00060{left:102.400000pt;}
.x24_c00060{left:103.680000pt;}
.x1a_c00060{left:112.640000pt;}
.x35_c00060{left:120.960000pt;}
.xd_c00060{left:122.240000pt;}
.x50_c00060{left:131.200000pt;}
.x1b_c00060{left:140.160000pt;}
.x2e_c00060{left:149.760000pt;}
.x55_c00060{left:151.040000pt;}
.x3f_c00060{left:159.360000pt;}
.x4_c00060{left:160.640000pt;}
.x56_c00060{left:168.960000pt;}
.x38_c00060{left:170.240000pt;}
.x13_c00060{left:178.560000pt;}
.x3b_c00060{left:179.840000pt;}
.x5_c00060{left:188.800000pt;}
.x1c_c00060{left:198.400000pt;}
.x46_c00060{left:208.000000pt;}
.x14_c00060{left:217.600000pt;}
.xe_c00060{left:218.880000pt;}
.x25_c00060{left:226.560000pt;}
.x4a_c00060{left:236.160000pt;}
.x6_c00060{left:237.440000pt;}
.x3c_c00060{left:246.400000pt;}
.x54_c00060{left:254.720000pt;}
.x57_c00060{left:256.000000pt;}
.x26_c00060{left:258.560000pt;}
.xf_c00060{left:264.960000pt;}
.x4b_c00060{left:274.560000pt;}
.x15_c00060{left:275.840000pt;}
.x47_c00060{left:284.160000pt;}
.x36_c00060{left:293.760000pt;}
.x2f_c00060{left:295.040000pt;}
.x51_c00060{left:301.440000pt;}
.x42_c00060{left:303.360000pt;}
.x5b_c00060{left:312.320000pt;}
.x7_c00060{left:313.600000pt;}
.x1d_c00060{left:323.200000pt;}
.x27_c00060{left:324.480000pt;}
.x3d_c00060{left:330.880000pt;}
.x43_c00060{left:332.160000pt;}
.x8_c00060{left:341.760000pt;}
.x1e_c00060{left:350.720000pt;}
.x10_c00060{left:361.600000pt;}
.x3e_c00060{left:370.560000pt;}
.x52_c00060{left:378.880000pt;}
.x30_c00060{left:380.160000pt;}
.x4e_c00060{left:389.120000pt;}
.x16_c00060{left:390.400000pt;}
.x1f_c00060{left:399.360000pt;}
.x2b_c00060{left:408.960000pt;}
.x53_c00060{left:417.280000pt;}
.x9_c00060{left:419.200000pt;}
.x20_c00060{left:428.160000pt;}
.x59_c00060{left:436.480000pt;}
.x40_c00060{left:437.760000pt;}
.x17_c00060{left:447.360000pt;}
.x58_c00060{left:455.040000pt;}
.x2c_c00060{left:458.880000pt;}
.x48_c00060{left:465.280000pt;}
.x31_c00060{left:466.560000pt;}
.x5a_c00060{left:474.880000pt;}
.xa_c00060{left:476.160000pt;}
.x28_c00060{left:478.720000pt;}
.x37_c00060{left:484.480000pt;}
.x21_c00060{left:485.760000pt;}
.x32_c00060{left:494.720000pt;}
.x11_c00060{left:497.280000pt;}
.x4c_c00060{left:503.040000pt;}
.x18_c00060{left:504.320000pt;}
.x44_c00060{left:513.280000pt;}
.x22_c00060{left:514.560000pt;}
.x2d_c00060{left:523.520000pt;}
.x33_c00060{left:532.480000pt;}
.x4f_c00060{left:542.080000pt;}
.x29_c00060{left:543.360000pt;}
.x39_c00060{left:552.320000pt;}
.x49_c00060{left:561.920000pt;}
.x45_c00060{left:571.520000pt;}
.x4d_c00060{left:581.120000pt;}
.x12_c00060{left:582.400000pt;}
.x34_c00060{left:590.720000pt;}
.xb_c00060{left:592.000000pt;}
.x5c_c00060{left:599.040000pt;}
.x41_c00060{left:609.920000pt;}
.x23_c00060{left:618.880000pt;}
.x1_c00060{left:627.200000pt;}
.x3a_c00060{left:628.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_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_93d9b4ef40525575e9fcfc0b.woff2')format("woff");}.ff1_c00061{font-family:ff1_c00061;line-height:1.109863;font-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_c00061{transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);}
.m0_c00061{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m41_c00061{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00061{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m46_c00061{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m56_c00061{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00061{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00061{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m24_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);}
.m57_c00061{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m10_c00061{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m55_c00061{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00061{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m40_c00061{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m59_c00061{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);}
.m34_c00061{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_c00061{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00061{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m4_c00061{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m7_c00061{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);}
.m58_c00061{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00061{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);}
.m35_c00061{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m17_c00061{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);}
.m31_c00061{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m21_c00061{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m5_c00061{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.mb_c00061{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);}
.m16_c00061{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m3_c00061{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m9_c00061{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.md_c00061{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);}
.ma_c00061{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);}
.m45_c00061{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);}
.m5b_c00061{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m11_c00061{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m50_c00061{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);}
.mf_c00061{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00061{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);}
.m51_c00061{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.me_c00061{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);}
.m25_c00061{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);}
.m33_c00061{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00061{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m22_c00061{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00061{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m14_c00061{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);}
.m32_c00061{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00061{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m44_c00061{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);}
.m2_c00061{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);}
.m2c_c00061{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00061{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m39_c00061{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00061{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m30_c00061{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);}
.m1e_c00061{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m52_c00061{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);}
.m1f_c00061{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m26_c00061{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00061{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00061{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m8_c00061{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);}
.m37_c00061{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);}
.m18_c00061{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m23_c00061{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m53_c00061{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00061{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);}
.m13_c00061{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m38_c00061{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m54_c00061{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m6_c00061{transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);}
.m28_c00061{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00061{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00061{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);}
.mc_c00061{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m36_c00061{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);}
.m12_c00061{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);}
.m2a_c00061{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00061{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m15_c00061{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m49_c00061{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m48_c00061{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);}
.m43_c00061{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00061{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);}
.m3c_c00061{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00061{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00061{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m27_c00061{transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);}
.m42_c00061{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m20_c00061{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m29_c00061{transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);}
.m47_c00061{transform:matrix(0.650000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.650000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.650000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00061{transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);}
.v0_c00061{vertical-align:0.000000px;}
.ls0_c00061{letter-spacing:0.000000px;}
.sc__c00061{text-shadow:none;}
.sc0_c00061{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00061{-webkit-text-stroke:0px transparent;}
.sc0_c00061{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00061{word-spacing:0.000000px;}
.fc0_c00061{color:transparent;}
.fsb_c00061{font-size:17.280000px;}
.fs5_c00061{font-size:34.560000px;}
.fsa_c00061{font-size:37.440000px;}
.fsc_c00061{font-size:40.320000px;}
.fs7_c00061{font-size:46.080000px;}
.fs4_c00061{font-size:48.960000px;}
.fs1_c00061{font-size:51.840000px;}
.fs6_c00061{font-size:54.720000px;}
.fs9_c00061{font-size:57.600000px;}
.fs3_c00061{font-size:60.480000px;}
.fs2_c00061{font-size:63.360000px;}
.fsd_c00061{font-size:66.240000px;}
.fs0_c00061{font-size:69.120000px;}
.fs8_c00061{font-size:72.000000px;}
.y0_c00061{bottom:0.000000px;}
.y63_c00061{bottom:73.440000px;}
.y62_c00061{bottom:74.160000px;}
.y60_c00061{bottom:74.880000px;}
.y5e_c00061{bottom:75.600000px;}
.y61_c00061{bottom:76.320000px;}
.y5f_c00061{bottom:77.040000px;}
.y5d_c00061{bottom:115.920000px;}
.y5a_c00061{bottom:116.640000px;}
.y5c_c00061{bottom:118.080000px;}
.y5b_c00061{bottom:118.800000px;}
.y59_c00061{bottom:119.520000px;}
.y58_c00061{bottom:120.240000px;}
.y57_c00061{bottom:156.960000px;}
.y55_c00061{bottom:159.120000px;}
.y52_c00061{bottom:159.840000px;}
.y51_c00061{bottom:160.560000px;}
.y54_c00061{bottom:161.280000px;}
.y53_c00061{bottom:162.000000px;}
.y56_c00061{bottom:162.720000px;}
.y4f_c00061{bottom:200.880000px;}
.y4c_c00061{bottom:201.600000px;}
.y50_c00061{bottom:203.040000px;}
.y4e_c00061{bottom:203.760000px;}
.y4d_c00061{bottom:204.480000px;}
.y4b_c00061{bottom:205.920000px;}
.y47_c00061{bottom:244.800000px;}
.y4a_c00061{bottom:246.240000px;}
.y49_c00061{bottom:246.960000px;}
.y48_c00061{bottom:247.680000px;}
.y43_c00061{bottom:286.560000px;}
.y45_c00061{bottom:287.280000px;}
.y46_c00061{bottom:288.720000px;}
.y44_c00061{bottom:289.440000px;}
.y40_c00061{bottom:329.040000px;}
.y42_c00061{bottom:329.760000px;}
.y41_c00061{bottom:331.920000px;}
.y3f_c00061{bottom:332.640000px;}
.y3d_c00061{bottom:382.320000px;}
.y3e_c00061{bottom:383.040000px;}
.y3b_c00061{bottom:385.200000px;}
.y3c_c00061{bottom:385.920000px;}
.y39_c00061{bottom:424.800000px;}
.y3a_c00061{bottom:425.520000px;}
.y37_c00061{bottom:426.960000px;}
.y36_c00061{bottom:427.680000px;}
.y38_c00061{bottom:428.400000px;}
.y35_c00061{bottom:466.560000px;}
.y34_c00061{bottom:467.280000px;}
.y33_c00061{bottom:470.160000px;}
.y32_c00061{bottom:509.760000px;}
.y30_c00061{bottom:511.920000px;}
.y31_c00061{bottom:512.640000px;}
.y2d_c00061{bottom:551.520000px;}
.y2b_c00061{bottom:552.240000px;}
.y2e_c00061{bottom:552.960000px;}
.y2c_c00061{bottom:554.400000px;}
.y2a_c00061{bottom:555.120000px;}
.y2f_c00061{bottom:555.840000px;}
.y27_c00061{bottom:594.720000px;}
.y28_c00061{bottom:597.600000px;}
.y29_c00061{bottom:598.320000px;}
.y26_c00061{bottom:637.200000px;}
.y23_c00061{bottom:637.920000px;}
.y25_c00061{bottom:640.080000px;}
.y24_c00061{bottom:640.800000px;}
.y20_c00061{bottom:679.680000px;}
.y22_c00061{bottom:682.560000px;}
.y21_c00061{bottom:683.280000px;}
.y1d_c00061{bottom:733.680000px;}
.y1f_c00061{bottom:735.120000px;}
.y1c_c00061{bottom:735.840000px;}
.y1e_c00061{bottom:738.000000px;}
.y18_c00061{bottom:775.440000px;}
.y19_c00061{bottom:776.160000px;}
.y1b_c00061{bottom:778.320000px;}
.y1a_c00061{bottom:779.040000px;}
.y13_c00061{bottom:817.920000px;}
.y15_c00061{bottom:818.640000px;}
.y14_c00061{bottom:820.800000px;}
.y17_c00061{bottom:821.520000px;}
.y16_c00061{bottom:822.240000px;}
.ye_c00061{bottom:860.400000px;}
.y11_c00061{bottom:861.120000px;}
.y10_c00061{bottom:862.560000px;}
.yd_c00061{bottom:863.280000px;}
.yf_c00061{bottom:864.000000px;}
.y12_c00061{bottom:864.720000px;}
.yb_c00061{bottom:902.880000px;}
.ya_c00061{bottom:905.760000px;}
.yc_c00061{bottom:906.480000px;}
.y8_c00061{bottom:956.160000px;}
.y9_c00061{bottom:959.040000px;}
.y2_c00061{bottom:997.200000px;}
.y4_c00061{bottom:998.640000px;}
.y5_c00061{bottom:999.360000px;}
.y7_c00061{bottom:1000.080000px;}
.y3_c00061{bottom:1001.520000px;}
.y6_c00061{bottom:1002.240000px;}
.y1_c00061{bottom:1059.840000px;}
.hd_c00061{height:15.550313px;}
.h7_c00061{height:31.100625px;}
.hc_c00061{height:33.692344px;}
.he_c00061{height:36.284062px;}
.h9_c00061{height:41.467500px;}
.h6_c00061{height:44.059219px;}
.h3_c00061{height:46.650937px;}
.h8_c00061{height:49.242656px;}
.hb_c00061{height:51.834375px;}
.h5_c00061{height:54.426094px;}
.h4_c00061{height:57.017812px;}
.hf_c00061{height:59.609531px;}
.h2_c00061{height:62.201250px;}
.ha_c00061{height:64.792969px;}
.h0_c00061{height:1152.720000px;}
.h1_c00061{height:1152.750000px;}
.w0_c00061{width:810.000000px;}
.x0_c00061{left:0.000000px;}
.x3_c00061{left:83.520000px;}
.x1d_c00061{left:84.960000px;}
.xb_c00061{left:86.400000px;}
.x4e_c00061{left:105.840000px;}
.x15_c00061{left:116.640000px;}
.x4_c00061{left:127.440000px;}
.x33_c00061{left:138.960000px;}
.xc_c00061{left:149.760000px;}
.x40_c00061{left:160.560000px;}
.x16_c00061{left:170.640000px;}
.x2b_c00061{left:172.800000px;}
.xd_c00061{left:181.440000px;}
.xf_c00061{left:191.520000px;}
.x3c_c00061{left:192.960000px;}
.x5_c00061{left:203.040000px;}
.xe_c00061{left:213.840000px;}
.x43_c00061{left:216.000000px;}
.x10_c00061{left:223.920000px;}
.x37_c00061{left:235.440000px;}
.x1e_c00061{left:246.240000px;}
.x26_c00061{left:256.320000px;}
.x17_c00061{left:267.840000px;}
.x1f_c00061{left:278.640000px;}
.x3d_c00061{left:288.000000px;}
.x2c_c00061{left:289.440000px;}
.x18_c00061{left:298.800000px;}
.x11_c00061{left:300.240000px;}
.x2f_c00061{left:310.320000px;}
.x34_c00061{left:319.680000px;}
.x51_c00061{left:321.840000px;}
.x44_c00061{left:330.480000px;}
.x27_c00061{left:331.920000px;}
.x4c_c00061{left:341.280000px;}
.x20_c00061{left:342.720000px;}
.x52_c00061{left:352.800000px;}
.x47_c00061{left:354.240000px;}
.x2d_c00061{left:363.600000px;}
.x19_c00061{left:365.040000px;}
.x28_c00061{left:374.400000px;}
.x48_c00061{left:385.200000px;}
.x2e_c00061{left:386.640000px;}
.x53_c00061{left:396.000000px;}
.x6_c00061{left:407.520000px;}
.x35_c00061{left:417.600000px;}
.x4a_c00061{left:427.680000px;}
.x21_c00061{left:429.840000px;}
.x41_c00061{left:438.480000px;}
.x1a_c00061{left:440.640000px;}
.x22_c00061{left:450.000000px;}
.x12_c00061{left:451.440000px;}
.x49_c00061{left:459.360000px;}
.x30_c00061{left:460.800000px;}
.x38_c00061{left:471.600000px;}
.x4d_c00061{left:480.960000px;}
.x45_c00061{left:482.400000px;}
.x1b_c00061{left:493.200000px;}
.x23_c00061{left:494.640000px;}
.x3e_c00061{left:503.280000px;}
.x7_c00061{left:504.720000px;}
.x4b_c00061{left:514.080000px;}
.x39_c00061{left:515.520000px;}
.x4f_c00061{left:526.320000px;}
.x8_c00061{left:537.120000px;}
.x24_c00061{left:547.920000px;}
.x3a_c00061{left:558.000000px;}
.x29_c00061{left:568.080000px;}
.x13_c00061{left:569.520000px;}
.x31_c00061{left:579.600000px;}
.x3b_c00061{left:589.680000px;}
.x9_c00061{left:600.480000px;}
.x1c_c00061{left:622.800000px;}
.x32_c00061{left:633.600000px;}
.x36_c00061{left:642.960000px;}
.x14_c00061{left:645.120000px;}
.x25_c00061{left:654.480000px;}
.x42_c00061{left:665.280000px;}
.x46_c00061{left:676.800000px;}
.x2a_c00061{left:686.880000px;}
.x54_c00061{left:697.680000px;}
.x50_c00061{left:699.120000px;}
.x1_c00061{left:708.480000px;}
.xa_c00061{left:720.000000px;}
.x2_c00061{left:725.760000px;}
.x3f_c00061{left:730.080000px;}
@media print{
.v0_c00061{vertical-align:0.000000pt;}
.ls0_c00061{letter-spacing:0.000000pt;}
.ws0_c00061{word-spacing:0.000000pt;}
.fsb_c00061{font-size:15.360000pt;}
.fs5_c00061{font-size:30.720000pt;}
.fsa_c00061{font-size:33.280000pt;}
.fsc_c00061{font-size:35.840000pt;}
.fs7_c00061{font-size:40.960000pt;}
.fs4_c00061{font-size:43.520000pt;}
.fs1_c00061{font-size:46.080000pt;}
.fs6_c00061{font-size:48.640000pt;}
.fs9_c00061{font-size:51.200000pt;}
.fs3_c00061{font-size:53.760000pt;}
.fs2_c00061{font-size:56.320000pt;}
.fsd_c00061{font-size:58.880000pt;}
.fs0_c00061{font-size:61.440000pt;}
.fs8_c00061{font-size:64.000000pt;}
.y0_c00061{bottom:0.000000pt;}
.y63_c00061{bottom:65.280000pt;}
.y62_c00061{bottom:65.920000pt;}
.y60_c00061{bottom:66.560000pt;}
.y5e_c00061{bottom:67.200000pt;}
.y61_c00061{bottom:67.840000pt;}
.y5f_c00061{bottom:68.480000pt;}
.y5d_c00061{bottom:103.040000pt;}
.y5a_c00061{bottom:103.680000pt;}
.y5c_c00061{bottom:104.960000pt;}
.y5b_c00061{bottom:105.600000pt;}
.y59_c00061{bottom:106.240000pt;}
.y58_c00061{bottom:106.880000pt;}
.y57_c00061{bottom:139.520000pt;}
.y55_c00061{bottom:141.440000pt;}
.y52_c00061{bottom:142.080000pt;}
.y51_c00061{bottom:142.720000pt;}
.y54_c00061{bottom:143.360000pt;}
.y53_c00061{bottom:144.000000pt;}
.y56_c00061{bottom:144.640000pt;}
.y4f_c00061{bottom:178.560000pt;}
.y4c_c00061{bottom:179.200000pt;}
.y50_c00061{bottom:180.480000pt;}
.y4e_c00061{bottom:181.120000pt;}
.y4d_c00061{bottom:181.760000pt;}
.y4b_c00061{bottom:183.040000pt;}
.y47_c00061{bottom:217.600000pt;}
.y4a_c00061{bottom:218.880000pt;}
.y49_c00061{bottom:219.520000pt;}
.y48_c00061{bottom:220.160000pt;}
.y43_c00061{bottom:254.720000pt;}
.y45_c00061{bottom:255.360000pt;}
.y46_c00061{bottom:256.640000pt;}
.y44_c00061{bottom:257.280000pt;}
.y40_c00061{bottom:292.480000pt;}
.y42_c00061{bottom:293.120000pt;}
.y41_c00061{bottom:295.040000pt;}
.y3f_c00061{bottom:295.680000pt;}
.y3d_c00061{bottom:339.840000pt;}
.y3e_c00061{bottom:340.480000pt;}
.y3b_c00061{bottom:342.400000pt;}
.y3c_c00061{bottom:343.040000pt;}
.y39_c00061{bottom:377.600000pt;}
.y3a_c00061{bottom:378.240000pt;}
.y37_c00061{bottom:379.520000pt;}
.y36_c00061{bottom:380.160000pt;}
.y38_c00061{bottom:380.800000pt;}
.y35_c00061{bottom:414.720000pt;}
.y34_c00061{bottom:415.360000pt;}
.y33_c00061{bottom:417.920000pt;}
.y32_c00061{bottom:453.120000pt;}
.y30_c00061{bottom:455.040000pt;}
.y31_c00061{bottom:455.680000pt;}
.y2d_c00061{bottom:490.240000pt;}
.y2b_c00061{bottom:490.880000pt;}
.y2e_c00061{bottom:491.520000pt;}
.y2c_c00061{bottom:492.800000pt;}
.y2a_c00061{bottom:493.440000pt;}
.y2f_c00061{bottom:494.080000pt;}
.y27_c00061{bottom:528.640000pt;}
.y28_c00061{bottom:531.200000pt;}
.y29_c00061{bottom:531.840000pt;}
.y26_c00061{bottom:566.400000pt;}
.y23_c00061{bottom:567.040000pt;}
.y25_c00061{bottom:568.960000pt;}
.y24_c00061{bottom:569.600000pt;}
.y20_c00061{bottom:604.160000pt;}
.y22_c00061{bottom:606.720000pt;}
.y21_c00061{bottom:607.360000pt;}
.y1d_c00061{bottom:652.160000pt;}
.y1f_c00061{bottom:653.440000pt;}
.y1c_c00061{bottom:654.080000pt;}
.y1e_c00061{bottom:656.000000pt;}
.y18_c00061{bottom:689.280000pt;}
.y19_c00061{bottom:689.920000pt;}
.y1b_c00061{bottom:691.840000pt;}
.y1a_c00061{bottom:692.480000pt;}
.y13_c00061{bottom:727.040000pt;}
.y15_c00061{bottom:727.680000pt;}
.y14_c00061{bottom:729.600000pt;}
.y17_c00061{bottom:730.240000pt;}
.y16_c00061{bottom:730.880000pt;}
.ye_c00061{bottom:764.800000pt;}
.y11_c00061{bottom:765.440000pt;}
.y10_c00061{bottom:766.720000pt;}
.yd_c00061{bottom:767.360000pt;}
.yf_c00061{bottom:768.000000pt;}
.y12_c00061{bottom:768.640000pt;}
.yb_c00061{bottom:802.560000pt;}
.ya_c00061{bottom:805.120000pt;}
.yc_c00061{bottom:805.760000pt;}
.y8_c00061{bottom:849.920000pt;}
.y9_c00061{bottom:852.480000pt;}
.y2_c00061{bottom:886.400000pt;}
.y4_c00061{bottom:887.680000pt;}
.y5_c00061{bottom:888.320000pt;}
.y7_c00061{bottom:888.960000pt;}
.y3_c00061{bottom:890.240000pt;}
.y6_c00061{bottom:890.880000pt;}
.y1_c00061{bottom:942.080000pt;}
.hd_c00061{height:13.822500pt;}
.h7_c00061{height:27.645000pt;}
.hc_c00061{height:29.948750pt;}
.he_c00061{height:32.252500pt;}
.h9_c00061{height:36.860000pt;}
.h6_c00061{height:39.163750pt;}
.h3_c00061{height:41.467500pt;}
.h8_c00061{height:43.771250pt;}
.hb_c00061{height:46.075000pt;}
.h5_c00061{height:48.378750pt;}
.h4_c00061{height:50.682500pt;}
.hf_c00061{height:52.986250pt;}
.h2_c00061{height:55.290000pt;}
.ha_c00061{height:57.593750pt;}
.h0_c00061{height:1024.640000pt;}
.h1_c00061{height:1024.666667pt;}
.w0_c00061{width:720.000000pt;}
.x0_c00061{left:0.000000pt;}
.x3_c00061{left:74.240000pt;}
.x1d_c00061{left:75.520000pt;}
.xb_c00061{left:76.800000pt;}
.x4e_c00061{left:94.080000pt;}
.x15_c00061{left:103.680000pt;}
.x4_c00061{left:113.280000pt;}
.x33_c00061{left:123.520000pt;}
.xc_c00061{left:133.120000pt;}
.x40_c00061{left:142.720000pt;}
.x16_c00061{left:151.680000pt;}
.x2b_c00061{left:153.600000pt;}
.xd_c00061{left:161.280000pt;}
.xf_c00061{left:170.240000pt;}
.x3c_c00061{left:171.520000pt;}
.x5_c00061{left:180.480000pt;}
.xe_c00061{left:190.080000pt;}
.x43_c00061{left:192.000000pt;}
.x10_c00061{left:199.040000pt;}
.x37_c00061{left:209.280000pt;}
.x1e_c00061{left:218.880000pt;}
.x26_c00061{left:227.840000pt;}
.x17_c00061{left:238.080000pt;}
.x1f_c00061{left:247.680000pt;}
.x3d_c00061{left:256.000000pt;}
.x2c_c00061{left:257.280000pt;}
.x18_c00061{left:265.600000pt;}
.x11_c00061{left:266.880000pt;}
.x2f_c00061{left:275.840000pt;}
.x34_c00061{left:284.160000pt;}
.x51_c00061{left:286.080000pt;}
.x44_c00061{left:293.760000pt;}
.x27_c00061{left:295.040000pt;}
.x4c_c00061{left:303.360000pt;}
.x20_c00061{left:304.640000pt;}
.x52_c00061{left:313.600000pt;}
.x47_c00061{left:314.880000pt;}
.x2d_c00061{left:323.200000pt;}
.x19_c00061{left:324.480000pt;}
.x28_c00061{left:332.800000pt;}
.x48_c00061{left:342.400000pt;}
.x2e_c00061{left:343.680000pt;}
.x53_c00061{left:352.000000pt;}
.x6_c00061{left:362.240000pt;}
.x35_c00061{left:371.200000pt;}
.x4a_c00061{left:380.160000pt;}
.x21_c00061{left:382.080000pt;}
.x41_c00061{left:389.760000pt;}
.x1a_c00061{left:391.680000pt;}
.x22_c00061{left:400.000000pt;}
.x12_c00061{left:401.280000pt;}
.x49_c00061{left:408.320000pt;}
.x30_c00061{left:409.600000pt;}
.x38_c00061{left:419.200000pt;}
.x4d_c00061{left:427.520000pt;}
.x45_c00061{left:428.800000pt;}
.x1b_c00061{left:438.400000pt;}
.x23_c00061{left:439.680000pt;}
.x3e_c00061{left:447.360000pt;}
.x7_c00061{left:448.640000pt;}
.x4b_c00061{left:456.960000pt;}
.x39_c00061{left:458.240000pt;}
.x4f_c00061{left:467.840000pt;}
.x8_c00061{left:477.440000pt;}
.x24_c00061{left:487.040000pt;}
.x3a_c00061{left:496.000000pt;}
.x29_c00061{left:504.960000pt;}
.x13_c00061{left:506.240000pt;}
.x31_c00061{left:515.200000pt;}
.x3b_c00061{left:524.160000pt;}
.x9_c00061{left:533.760000pt;}
.x1c_c00061{left:553.600000pt;}
.x32_c00061{left:563.200000pt;}
.x36_c00061{left:571.520000pt;}
.x14_c00061{left:573.440000pt;}
.x25_c00061{left:581.760000pt;}
.x42_c00061{left:591.360000pt;}
.x46_c00061{left:601.600000pt;}
.x2a_c00061{left:610.560000pt;}
.x54_c00061{left:620.160000pt;}
.x50_c00061{left:621.440000pt;}
.x1_c00061{left:629.760000pt;}
.xa_c00061{left:640.000000pt;}
.x2_c00061{left:645.120000pt;}
.x3f_c00061{left:648.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_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_41017c6267d69da5b7158e77.woff2')format("woff");}.ff1_c00062{font-family:ff1_c00062;line-height:1.109863;font-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_c00062{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00062{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);}
.m34_c00062{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m19_c00062{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00062{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m40_c00062{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m36_c00062{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m26_c00062{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m35_c00062{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00062{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m47_c00062{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m46_c00062{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00062{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00062{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);}
.m5e_c00062{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00062{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m0_c00062{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m44_c00062{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);}
.m58_c00062{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);}
.m1d_c00062{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00062{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m4_c00062{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m1_c00062{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m23_c00062{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00062{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m17_c00062{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m12_c00062{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.mb_c00062{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m18_c00062{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);}
.m27_c00062{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);}
.m57_c00062{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00062{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);}
.m32_c00062{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00062{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m14_c00062{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);}
.m5d_c00062{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m7_c00062{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m2_c00062{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m39_c00062{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);}
.m29_c00062{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m30_c00062{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);}
.m2f_c00062{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m60_c00062{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);}
.m38_c00062{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);}
.m3c_c00062{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m5_c00062{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m53_c00062{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m33_c00062{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m59_c00062{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);}
.md_c00062{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m37_c00062{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m56_c00062{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);}
.mf_c00062{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00062{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);}
.m28_c00062{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00062{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m43_c00062{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m55_c00062{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);}
.ma_c00062{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00062{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m54_c00062{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m11_c00062{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m6_c00062{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m50_c00062{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m31_c00062{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00062{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);}
.m16_c00062{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);}
.m2d_c00062{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m25_c00062{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00062{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m9_c00062{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);}
.m49_c00062{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m13_c00062{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m10_c00062{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);}
.m3_c00062{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m42_c00062{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m48_c00062{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00062{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);}
.m20_c00062{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00062{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);}
.m21_c00062{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m45_c00062{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);}
.m8_c00062{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00062{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00062{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00062{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00062{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m52_c00062{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);}
.m2e_c00062{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);}
.m1a_c00062{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m15_c00062{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.me_c00062{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);}
.mc_c00062{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00062{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m51_c00062{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m22_c00062{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m41_c00062{transform:matrix(0.700000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.700000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.700000,0.000000,0.000000,0.250000,0,0);}
.v0_c00062{vertical-align:0.000000px;}
.v1_c00062{vertical-align:8.640000px;}
.ls0_c00062{letter-spacing:0.000000px;}
.sc__c00062{text-shadow:none;}
.sc0_c00062{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00062{-webkit-text-stroke:0px transparent;}
.sc0_c00062{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00062{word-spacing:-5.657760px;}
.ws1_c00062{word-spacing:0.000000px;}
.fc0_c00062{color:transparent;}
.fs5_c00062{font-size:34.560000px;}
.fs3_c00062{font-size:37.440000px;}
.fs7_c00062{font-size:46.080000px;}
.fs2_c00062{font-size:48.960000px;}
.fs4_c00062{font-size:51.840000px;}
.fs9_c00062{font-size:54.720000px;}
.fs8_c00062{font-size:57.600000px;}
.fs6_c00062{font-size:60.480000px;}
.fs1_c00062{font-size:63.360000px;}
.fsb_c00062{font-size:66.240000px;}
.fs0_c00062{font-size:69.120000px;}
.fsa_c00062{font-size:72.000000px;}
.y0_c00062{bottom:0.000000px;}
.y68_c00062{bottom:44.640000px;}
.y6a_c00062{bottom:45.360000px;}
.y69_c00062{bottom:46.080000px;}
.y64_c00062{bottom:46.800000px;}
.y67_c00062{bottom:47.520000px;}
.y66_c00062{bottom:48.240000px;}
.y65_c00062{bottom:48.960000px;}
.y63_c00062{bottom:49.680000px;}
.y62_c00062{bottom:85.680000px;}
.y60_c00062{bottom:87.840000px;}
.y5f_c00062{bottom:88.560000px;}
.y61_c00062{bottom:89.280000px;}
.y5e_c00062{bottom:129.600000px;}
.y5d_c00062{bottom:130.320000px;}
.y5b_c00062{bottom:131.760000px;}
.y5c_c00062{bottom:132.480000px;}
.y5a_c00062{bottom:133.200000px;}
.y59_c00062{bottom:133.920000px;}
.y58_c00062{bottom:169.920000px;}
.y55_c00062{bottom:170.640000px;}
.y56_c00062{bottom:172.080000px;}
.y57_c00062{bottom:174.240000px;}
.y54_c00062{bottom:174.960000px;}
.y53_c00062{bottom:226.800000px;}
.y52_c00062{bottom:228.240000px;}
.y50_c00062{bottom:267.120000px;}
.y4d_c00062{bottom:267.840000px;}
.y4c_c00062{bottom:268.560000px;}
.y51_c00062{bottom:269.280000px;}
.y4e_c00062{bottom:270.000000px;}
.y4f_c00062{bottom:270.720000px;}
.y4b_c00062{bottom:309.600000px;}
.y4a_c00062{bottom:312.480000px;}
.y49_c00062{bottom:313.200000px;}
.y48_c00062{bottom:352.080000px;}
.y44_c00062{bottom:352.800000px;}
.y46_c00062{bottom:354.240000px;}
.y47_c00062{bottom:354.960000px;}
.y45_c00062{bottom:355.680000px;}
.y40_c00062{bottom:394.560000px;}
.y43_c00062{bottom:395.280000px;}
.y42_c00062{bottom:397.440000px;}
.y41_c00062{bottom:398.160000px;}
.y3f_c00062{bottom:436.320000px;}
.y3c_c00062{bottom:437.760000px;}
.y3d_c00062{bottom:438.480000px;}
.y3e_c00062{bottom:439.920000px;}
.y3b_c00062{bottom:440.640000px;}
.y37_c00062{bottom:480.960000px;}
.y3a_c00062{bottom:481.680000px;}
.y39_c00062{bottom:482.400000px;}
.y36_c00062{bottom:483.120000px;}
.y38_c00062{bottom:483.840000px;}
.y34_c00062{bottom:522.720000px;}
.y35_c00062{bottom:523.440000px;}
.y33_c00062{bottom:524.880000px;}
.y31_c00062{bottom:525.600000px;}
.y32_c00062{bottom:526.320000px;}
.y2f_c00062{bottom:565.200000px;}
.y30_c00062{bottom:565.920000px;}
.y2e_c00062{bottom:568.080000px;}
.y2d_c00062{bottom:568.800000px;}
.y2c_c00062{bottom:608.400000px;}
.y2a_c00062{bottom:610.560000px;}
.y2b_c00062{bottom:611.280000px;}
.y29_c00062{bottom:650.880000px;}
.y28_c00062{bottom:653.040000px;}
.y27_c00062{bottom:653.760000px;}
.y26_c00062{bottom:703.440000px;}
.y24_c00062{bottom:704.160000px;}
.y23_c00062{bottom:706.320000px;}
.y25_c00062{bottom:707.040000px;}
.y1e_c00062{bottom:745.200000px;}
.y1d_c00062{bottom:745.920000px;}
.y1f_c00062{bottom:746.640000px;}
.y22_c00062{bottom:747.360000px;}
.y21_c00062{bottom:748.800000px;}
.y20_c00062{bottom:749.520000px;}
.y18_c00062{bottom:788.400000px;}
.y17_c00062{bottom:789.120000px;}
.y1b_c00062{bottom:789.840000px;}
.y1a_c00062{bottom:791.280000px;}
.y19_c00062{bottom:792.000000px;}
.y1c_c00062{bottom:792.720000px;}
.y15_c00062{bottom:830.880000px;}
.y16_c00062{bottom:831.600000px;}
.y13_c00062{bottom:833.760000px;}
.y14_c00062{bottom:834.480000px;}
.y10_c00062{bottom:874.080000px;}
.y11_c00062{bottom:876.240000px;}
.y12_c00062{bottom:876.960000px;}
.yf_c00062{bottom:917.280000px;}
.yc_c00062{bottom:918.720000px;}
.yd_c00062{bottom:919.440000px;}
.ye_c00062{bottom:920.160000px;}
.y8_c00062{bottom:959.040000px;}
.ya_c00062{bottom:959.760000px;}
.yb_c00062{bottom:960.480000px;}
.y6_c00062{bottom:961.920000px;}
.y7_c00062{bottom:962.640000px;}
.y9_c00062{bottom:963.360000px;}
.y2_c00062{bottom:1001.520000px;}
.y4_c00062{bottom:1002.240000px;}
.y5_c00062{bottom:1004.400000px;}
.y3_c00062{bottom:1005.120000px;}
.y1_c00062{bottom:1074.960000px;}
.h7_c00062{height:31.100625px;}
.h5_c00062{height:33.692344px;}
.h9_c00062{height:41.467500px;}
.h4_c00062{height:44.059219px;}
.h6_c00062{height:46.650937px;}
.hb_c00062{height:49.242656px;}
.ha_c00062{height:51.834375px;}
.h8_c00062{height:54.426094px;}
.h3_c00062{height:57.017812px;}
.hd_c00062{height:59.609531px;}
.h2_c00062{height:62.201250px;}
.hc_c00062{height:64.792969px;}
.h1_c00062{height:1149.000000px;}
.h0_c00062{height:1149.120000px;}
.w1_c00062{width:805.500000px;}
.w0_c00062{width:805.680000px;}
.x0_c00062{left:0.000000px;}
.x4e_c00062{left:77.760000px;}
.x27_c00062{left:79.200000px;}
.x2_c00062{left:80.640000px;}
.x22_c00062{left:111.600000px;}
.x13_c00062{left:113.040000px;}
.x3f_c00062{left:122.400000px;}
.x34_c00062{left:133.200000px;}
.x9_c00062{left:134.640000px;}
.x5b_c00062{left:142.560000px;}
.x3c_c00062{left:154.080000px;}
.xa_c00062{left:155.520000px;}
.x58_c00062{left:164.160000px;}
.x51_c00062{left:165.600000px;}
.x44_c00062{left:175.680000px;}
.x14_c00062{left:177.120000px;}
.x28_c00062{left:186.480000px;}
.x1c_c00062{left:187.920000px;}
.x47_c00062{left:195.840000px;}
.x54_c00062{left:198.000000px;}
.x40_c00062{left:207.360000px;}
.xb_c00062{left:208.800000px;}
.x2d_c00062{left:218.880000px;}
.x41_c00062{left:228.960000px;}
.x4b_c00062{left:239.760000px;}
.x3_c00062{left:241.920000px;}
.x29_c00062{left:251.280000px;}
.x2e_c00062{left:262.080000px;}
.x1d_c00062{left:263.520000px;}
.x45_c00062{left:272.160000px;}
.x15_c00062{left:273.600000px;}
.x4f_c00062{left:282.960000px;}
.x4_c00062{left:294.480000px;}
.x48_c00062{left:303.840000px;}
.xc_c00062{left:305.280000px;}
.x38_c00062{left:315.360000px;}
.x16_c00062{left:316.800000px;}
.x35_c00062{left:326.880000px;}
.x5_c00062{left:328.320000px;}
.x49_c00062{left:336.240000px;}
.x17_c00062{left:337.680000px;}
.x1e_c00062{left:347.760000px;}
.xd_c00062{left:349.200000px;}
.x59_c00062{left:357.120000px;}
.x39_c00062{left:358.560000px;}
.x2f_c00062{left:369.360000px;}
.x4a_c00062{left:380.160000px;}
.x4c_c00062{left:390.960000px;}
.x5c_c00062{left:400.320000px;}
.x30_c00062{left:401.760000px;}
.x42_c00062{left:412.560000px;}
.x6_c00062{left:414.000000px;}
.x18_c00062{left:423.360000px;}
.x2a_c00062{left:433.440000px;}
.x43_c00062{left:444.240000px;}
.x36_c00062{left:455.760000px;}
.xe_c00062{left:457.200000px;}
.x55_c00062{left:465.120000px;}
.x19_c00062{left:467.280000px;}
.xf_c00062{left:477.360000px;}
.x23_c00062{left:488.160000px;}
.x2b_c00062{left:498.960000px;}
.x1f_c00062{left:509.040000px;}
.x10_c00062{left:510.480000px;}
.x46_c00062{left:519.120000px;}
.x50_c00062{left:521.280000px;}
.x5d_c00062{left:529.920000px;}
.x31_c00062{left:542.160000px;}
.x20_c00062{left:551.520000px;}
.x3d_c00062{left:552.960000px;}
.x37_c00062{left:555.120000px;}
.x52_c00062{left:562.320000px;}
.x4d_c00062{left:563.760000px;}
.x5e_c00062{left:572.400000px;}
.x32_c00062{left:573.840000px;}
.x24_c00062{left:585.360000px;}
.x7_c00062{left:596.160000px;}
.x5a_c00062{left:605.520000px;}
.x11_c00062{left:606.960000px;}
.x33_c00062{left:617.760000px;}
.x21_c00062{left:628.560000px;}
.x56_c00062{left:637.920000px;}
.x8_c00062{left:639.360000px;}
.x3e_c00062{left:648.720000px;}
.x1a_c00062{left:650.160000px;}
.x3b_c00062{left:660.960000px;}
.x53_c00062{left:669.600000px;}
.x3a_c00062{left:671.040000px;}
.x2c_c00062{left:681.120000px;}
.x25_c00062{left:682.560000px;}
.x57_c00062{left:691.920000px;}
.x1b_c00062{left:693.360000px;}
.x1_c00062{left:709.200000px;}
.x12_c00062{left:714.960000px;}
.x26_c00062{left:725.040000px;}
@media print{
.v0_c00062{vertical-align:0.000000pt;}
.v1_c00062{vertical-align:7.680000pt;}
.ls0_c00062{letter-spacing:0.000000pt;}
.ws0_c00062{word-spacing:-5.029120pt;}
.ws1_c00062{word-spacing:0.000000pt;}
.fs5_c00062{font-size:30.720000pt;}
.fs3_c00062{font-size:33.280000pt;}
.fs7_c00062{font-size:40.960000pt;}
.fs2_c00062{font-size:43.520000pt;}
.fs4_c00062{font-size:46.080000pt;}
.fs9_c00062{font-size:48.640000pt;}
.fs8_c00062{font-size:51.200000pt;}
.fs6_c00062{font-size:53.760000pt;}
.fs1_c00062{font-size:56.320000pt;}
.fsb_c00062{font-size:58.880000pt;}
.fs0_c00062{font-size:61.440000pt;}
.fsa_c00062{font-size:64.000000pt;}
.y0_c00062{bottom:0.000000pt;}
.y68_c00062{bottom:39.680000pt;}
.y6a_c00062{bottom:40.320000pt;}
.y69_c00062{bottom:40.960000pt;}
.y64_c00062{bottom:41.600000pt;}
.y67_c00062{bottom:42.240000pt;}
.y66_c00062{bottom:42.880000pt;}
.y65_c00062{bottom:43.520000pt;}
.y63_c00062{bottom:44.160000pt;}
.y62_c00062{bottom:76.160000pt;}
.y60_c00062{bottom:78.080000pt;}
.y5f_c00062{bottom:78.720000pt;}
.y61_c00062{bottom:79.360000pt;}
.y5e_c00062{bottom:115.200000pt;}
.y5d_c00062{bottom:115.840000pt;}
.y5b_c00062{bottom:117.120000pt;}
.y5c_c00062{bottom:117.760000pt;}
.y5a_c00062{bottom:118.400000pt;}
.y59_c00062{bottom:119.040000pt;}
.y58_c00062{bottom:151.040000pt;}
.y55_c00062{bottom:151.680000pt;}
.y56_c00062{bottom:152.960000pt;}
.y57_c00062{bottom:154.880000pt;}
.y54_c00062{bottom:155.520000pt;}
.y53_c00062{bottom:201.600000pt;}
.y52_c00062{bottom:202.880000pt;}
.y50_c00062{bottom:237.440000pt;}
.y4d_c00062{bottom:238.080000pt;}
.y4c_c00062{bottom:238.720000pt;}
.y51_c00062{bottom:239.360000pt;}
.y4e_c00062{bottom:240.000000pt;}
.y4f_c00062{bottom:240.640000pt;}
.y4b_c00062{bottom:275.200000pt;}
.y4a_c00062{bottom:277.760000pt;}
.y49_c00062{bottom:278.400000pt;}
.y48_c00062{bottom:312.960000pt;}
.y44_c00062{bottom:313.600000pt;}
.y46_c00062{bottom:314.880000pt;}
.y47_c00062{bottom:315.520000pt;}
.y45_c00062{bottom:316.160000pt;}
.y40_c00062{bottom:350.720000pt;}
.y43_c00062{bottom:351.360000pt;}
.y42_c00062{bottom:353.280000pt;}
.y41_c00062{bottom:353.920000pt;}
.y3f_c00062{bottom:387.840000pt;}
.y3c_c00062{bottom:389.120000pt;}
.y3d_c00062{bottom:389.760000pt;}
.y3e_c00062{bottom:391.040000pt;}
.y3b_c00062{bottom:391.680000pt;}
.y37_c00062{bottom:427.520000pt;}
.y3a_c00062{bottom:428.160000pt;}
.y39_c00062{bottom:428.800000pt;}
.y36_c00062{bottom:429.440000pt;}
.y38_c00062{bottom:430.080000pt;}
.y34_c00062{bottom:464.640000pt;}
.y35_c00062{bottom:465.280000pt;}
.y33_c00062{bottom:466.560000pt;}
.y31_c00062{bottom:467.200000pt;}
.y32_c00062{bottom:467.840000pt;}
.y2f_c00062{bottom:502.400000pt;}
.y30_c00062{bottom:503.040000pt;}
.y2e_c00062{bottom:504.960000pt;}
.y2d_c00062{bottom:505.600000pt;}
.y2c_c00062{bottom:540.800000pt;}
.y2a_c00062{bottom:542.720000pt;}
.y2b_c00062{bottom:543.360000pt;}
.y29_c00062{bottom:578.560000pt;}
.y28_c00062{bottom:580.480000pt;}
.y27_c00062{bottom:581.120000pt;}
.y26_c00062{bottom:625.280000pt;}
.y24_c00062{bottom:625.920000pt;}
.y23_c00062{bottom:627.840000pt;}
.y25_c00062{bottom:628.480000pt;}
.y1e_c00062{bottom:662.400000pt;}
.y1d_c00062{bottom:663.040000pt;}
.y1f_c00062{bottom:663.680000pt;}
.y22_c00062{bottom:664.320000pt;}
.y21_c00062{bottom:665.600000pt;}
.y20_c00062{bottom:666.240000pt;}
.y18_c00062{bottom:700.800000pt;}
.y17_c00062{bottom:701.440000pt;}
.y1b_c00062{bottom:702.080000pt;}
.y1a_c00062{bottom:703.360000pt;}
.y19_c00062{bottom:704.000000pt;}
.y1c_c00062{bottom:704.640000pt;}
.y15_c00062{bottom:738.560000pt;}
.y16_c00062{bottom:739.200000pt;}
.y13_c00062{bottom:741.120000pt;}
.y14_c00062{bottom:741.760000pt;}
.y10_c00062{bottom:776.960000pt;}
.y11_c00062{bottom:778.880000pt;}
.y12_c00062{bottom:779.520000pt;}
.yf_c00062{bottom:815.360000pt;}
.yc_c00062{bottom:816.640000pt;}
.yd_c00062{bottom:817.280000pt;}
.ye_c00062{bottom:817.920000pt;}
.y8_c00062{bottom:852.480000pt;}
.ya_c00062{bottom:853.120000pt;}
.yb_c00062{bottom:853.760000pt;}
.y6_c00062{bottom:855.040000pt;}
.y7_c00062{bottom:855.680000pt;}
.y9_c00062{bottom:856.320000pt;}
.y2_c00062{bottom:890.240000pt;}
.y4_c00062{bottom:890.880000pt;}
.y5_c00062{bottom:892.800000pt;}
.y3_c00062{bottom:893.440000pt;}
.y1_c00062{bottom:955.520000pt;}
.h7_c00062{height:27.645000pt;}
.h5_c00062{height:29.948750pt;}
.h9_c00062{height:36.860000pt;}
.h4_c00062{height:39.163750pt;}
.h6_c00062{height:41.467500pt;}
.hb_c00062{height:43.771250pt;}
.ha_c00062{height:46.075000pt;}
.h8_c00062{height:48.378750pt;}
.h3_c00062{height:50.682500pt;}
.hd_c00062{height:52.986250pt;}
.h2_c00062{height:55.290000pt;}
.hc_c00062{height:57.593750pt;}
.h1_c00062{height:1021.333333pt;}
.h0_c00062{height:1021.440000pt;}
.w1_c00062{width:716.000000pt;}
.w0_c00062{width:716.160000pt;}
.x0_c00062{left:0.000000pt;}
.x4e_c00062{left:69.120000pt;}
.x27_c00062{left:70.400000pt;}
.x2_c00062{left:71.680000pt;}
.x22_c00062{left:99.200000pt;}
.x13_c00062{left:100.480000pt;}
.x3f_c00062{left:108.800000pt;}
.x34_c00062{left:118.400000pt;}
.x9_c00062{left:119.680000pt;}
.x5b_c00062{left:126.720000pt;}
.x3c_c00062{left:136.960000pt;}
.xa_c00062{left:138.240000pt;}
.x58_c00062{left:145.920000pt;}
.x51_c00062{left:147.200000pt;}
.x44_c00062{left:156.160000pt;}
.x14_c00062{left:157.440000pt;}
.x28_c00062{left:165.760000pt;}
.x1c_c00062{left:167.040000pt;}
.x47_c00062{left:174.080000pt;}
.x54_c00062{left:176.000000pt;}
.x40_c00062{left:184.320000pt;}
.xb_c00062{left:185.600000pt;}
.x2d_c00062{left:194.560000pt;}
.x41_c00062{left:203.520000pt;}
.x4b_c00062{left:213.120000pt;}
.x3_c00062{left:215.040000pt;}
.x29_c00062{left:223.360000pt;}
.x2e_c00062{left:232.960000pt;}
.x1d_c00062{left:234.240000pt;}
.x45_c00062{left:241.920000pt;}
.x15_c00062{left:243.200000pt;}
.x4f_c00062{left:251.520000pt;}
.x4_c00062{left:261.760000pt;}
.x48_c00062{left:270.080000pt;}
.xc_c00062{left:271.360000pt;}
.x38_c00062{left:280.320000pt;}
.x16_c00062{left:281.600000pt;}
.x35_c00062{left:290.560000pt;}
.x5_c00062{left:291.840000pt;}
.x49_c00062{left:298.880000pt;}
.x17_c00062{left:300.160000pt;}
.x1e_c00062{left:309.120000pt;}
.xd_c00062{left:310.400000pt;}
.x59_c00062{left:317.440000pt;}
.x39_c00062{left:318.720000pt;}
.x2f_c00062{left:328.320000pt;}
.x4a_c00062{left:337.920000pt;}
.x4c_c00062{left:347.520000pt;}
.x5c_c00062{left:355.840000pt;}
.x30_c00062{left:357.120000pt;}
.x42_c00062{left:366.720000pt;}
.x6_c00062{left:368.000000pt;}
.x18_c00062{left:376.320000pt;}
.x2a_c00062{left:385.280000pt;}
.x43_c00062{left:394.880000pt;}
.x36_c00062{left:405.120000pt;}
.xe_c00062{left:406.400000pt;}
.x55_c00062{left:413.440000pt;}
.x19_c00062{left:415.360000pt;}
.xf_c00062{left:424.320000pt;}
.x23_c00062{left:433.920000pt;}
.x2b_c00062{left:443.520000pt;}
.x1f_c00062{left:452.480000pt;}
.x10_c00062{left:453.760000pt;}
.x46_c00062{left:461.440000pt;}
.x50_c00062{left:463.360000pt;}
.x5d_c00062{left:471.040000pt;}
.x31_c00062{left:481.920000pt;}
.x20_c00062{left:490.240000pt;}
.x3d_c00062{left:491.520000pt;}
.x37_c00062{left:493.440000pt;}
.x52_c00062{left:499.840000pt;}
.x4d_c00062{left:501.120000pt;}
.x5e_c00062{left:508.800000pt;}
.x32_c00062{left:510.080000pt;}
.x24_c00062{left:520.320000pt;}
.x7_c00062{left:529.920000pt;}
.x5a_c00062{left:538.240000pt;}
.x11_c00062{left:539.520000pt;}
.x33_c00062{left:549.120000pt;}
.x21_c00062{left:558.720000pt;}
.x56_c00062{left:567.040000pt;}
.x8_c00062{left:568.320000pt;}
.x3e_c00062{left:576.640000pt;}
.x1a_c00062{left:577.920000pt;}
.x3b_c00062{left:587.520000pt;}
.x53_c00062{left:595.200000pt;}
.x3a_c00062{left:596.480000pt;}
.x2c_c00062{left:605.440000pt;}
.x25_c00062{left:606.720000pt;}
.x57_c00062{left:615.040000pt;}
.x1b_c00062{left:616.320000pt;}
.x1_c00062{left:630.400000pt;}
.x12_c00062{left:635.520000pt;}
.x26_c00062{left:644.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_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_a426faf364f3a80f34ca1f82.woff2')format("woff");}.ff1_c00063{font-family:ff1_c00063;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m37_c00063{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m59_c00063{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m31_c00063{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m24_c00063{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00063{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00063{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mc_c00063{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00063{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1_c00063{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m23_c00063{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m53_c00063{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00063{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);}
.m42_c00063{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m22_c00063{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m0_c00063{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.ma_c00063{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);}
.m35_c00063{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00063{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00063{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.mb_c00063{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);}
.m10_c00063{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);}
.m38_c00063{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m4_c00063{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00063{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);}
.m4a_c00063{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);}
.m2a_c00063{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m15_c00063{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m5_c00063{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m29_c00063{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);}
.m4b_c00063{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00063{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m7_c00063{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m8_c00063{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);}
.m25_c00063{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m51_c00063{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);}
.m49_c00063{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);}
.m41_c00063{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);}
.m1a_c00063{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00063{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m13_c00063{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m52_c00063{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00063{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m58_c00063{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00063{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m9_c00063{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m32_c00063{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);}
.me_c00063{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m47_c00063{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m21_c00063{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m56_c00063{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m11_c00063{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);}
.m2f_c00063{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m36_c00063{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00063{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m33_c00063{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m2_c00063{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m26_c00063{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m12_c00063{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);}
.m43_c00063{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m3_c00063{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m48_c00063{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m18_c00063{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);}
.m6_c00063{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00063{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00063{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00063{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);}
.m44_c00063{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m46_c00063{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m54_c00063{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m28_c00063{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m45_c00063{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.mf_c00063{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);}
.m57_c00063{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m50_c00063{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00063{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00063{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m14_c00063{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m55_c00063{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m34_c00063{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m19_c00063{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m20_c00063{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m27_c00063{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);}
.m3d_c00063{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00063{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m17_c00063{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m40_c00063{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.md_c00063{transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);}
.m16_c00063{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m39_c00063{transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00063{transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);}
.m30_c00063{transform:matrix(0.700000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.700000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.700000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00063{transform:matrix(0.767500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.767500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.767500,0.000000,0.000000,0.250000,0,0);}
.v0_c00063{vertical-align:0.000000px;}
.ls0_c00063{letter-spacing:0.000000px;}
.sc__c00063{text-shadow:none;}
.sc0_c00063{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00063{-webkit-text-stroke:0px transparent;}
.sc0_c00063{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00063{word-spacing:0.000000px;}
.fc0_c00063{color:transparent;}
.fs9_c00063{font-size:34.560000px;}
.fsb_c00063{font-size:37.440000px;}
.fs7_c00063{font-size:40.320000px;}
.fsd_c00063{font-size:43.200000px;}
.fs1_c00063{font-size:46.080000px;}
.fs3_c00063{font-size:48.960000px;}
.fs2_c00063{font-size:51.840000px;}
.fs6_c00063{font-size:54.720000px;}
.fs8_c00063{font-size:57.600000px;}
.fs5_c00063{font-size:60.480000px;}
.fs4_c00063{font-size:63.360000px;}
.fs0_c00063{font-size:69.120000px;}
.fsc_c00063{font-size:72.000000px;}
.fsa_c00063{font-size:74.880000px;}
.y0_c00063{bottom:0.000000px;}
.y58_c00063{bottom:128.880000px;}
.y57_c00063{bottom:131.760000px;}
.y55_c00063{bottom:162.000000px;}
.y56_c00063{bottom:164.160000px;}
.y54_c00063{bottom:192.960000px;}
.y53_c00063{bottom:195.120000px;}
.y51_c00063{bottom:226.800000px;}
.y52_c00063{bottom:227.520000px;}
.y50_c00063{bottom:256.320000px;}
.y4e_c00063{bottom:257.040000px;}
.y4f_c00063{bottom:258.480000px;}
.y4d_c00063{bottom:259.920000px;}
.y4c_c00063{bottom:298.800000px;}
.y4b_c00063{bottom:300.960000px;}
.y4a_c00063{bottom:320.400000px;}
.y49_c00063{bottom:321.840000px;}
.y48_c00063{bottom:323.280000px;}
.y46_c00063{bottom:332.640000px;}
.y47_c00063{bottom:333.360000px;}
.y44_c00063{bottom:351.360000px;}
.y43_c00063{bottom:352.800000px;}
.y45_c00063{bottom:354.240000px;}
.y42_c00063{bottom:355.680000px;}
.y41_c00063{bottom:362.880000px;}
.y40_c00063{bottom:365.040000px;}
.y3d_c00063{bottom:393.840000px;}
.y3f_c00063{bottom:394.560000px;}
.y3b_c00063{bottom:396.000000px;}
.y3c_c00063{bottom:396.720000px;}
.y3e_c00063{bottom:397.440000px;}
.y3a_c00063{bottom:425.520000px;}
.y36_c00063{bottom:426.240000px;}
.y39_c00063{bottom:427.680000px;}
.y37_c00063{bottom:428.400000px;}
.y35_c00063{bottom:429.120000px;}
.y38_c00063{bottom:429.840000px;}
.y34_c00063{bottom:470.880000px;}
.y30_c00063{bottom:511.200000px;}
.y33_c00063{bottom:512.640000px;}
.y32_c00063{bottom:513.360000px;}
.y31_c00063{bottom:514.080000px;}
.y2e_c00063{bottom:552.960000px;}
.y2c_c00063{bottom:553.680000px;}
.y2f_c00063{bottom:555.840000px;}
.y2d_c00063{bottom:556.560000px;}
.y2b_c00063{bottom:557.280000px;}
.y2a_c00063{bottom:596.160000px;}
.y28_c00063{bottom:596.880000px;}
.y27_c00063{bottom:598.320000px;}
.y29_c00063{bottom:599.040000px;}
.y26_c00063{bottom:599.760000px;}
.y23_c00063{bottom:637.920000px;}
.y21_c00063{bottom:638.640000px;}
.y25_c00063{bottom:639.360000px;}
.y24_c00063{bottom:640.800000px;}
.y22_c00063{bottom:641.520000px;}
.y1f_c00063{bottom:681.120000px;}
.y20_c00063{bottom:681.840000px;}
.y1d_c00063{bottom:684.000000px;}
.y1e_c00063{bottom:684.720000px;}
.y19_c00063{bottom:723.600000px;}
.y1a_c00063{bottom:724.320000px;}
.y1c_c00063{bottom:725.760000px;}
.y1b_c00063{bottom:726.480000px;}
.y18_c00063{bottom:777.600000px;}
.y17_c00063{bottom:779.760000px;}
.y16_c00063{bottom:818.640000px;}
.y13_c00063{bottom:819.360000px;}
.y15_c00063{bottom:821.520000px;}
.y14_c00063{bottom:822.240000px;}
.y11_c00063{bottom:861.120000px;}
.y10_c00063{bottom:861.840000px;}
.y12_c00063{bottom:862.560000px;}
.yf_c00063{bottom:864.000000px;}
.ye_c00063{bottom:864.720000px;}
.yd_c00063{bottom:903.600000px;}
.yc_c00063{bottom:905.040000px;}
.yb_c00063{bottom:906.480000px;}
.ya_c00063{bottom:907.200000px;}
.y8_c00063{bottom:947.520000px;}
.y7_c00063{bottom:948.960000px;}
.y6_c00063{bottom:949.680000px;}
.y9_c00063{bottom:950.400000px;}
.y2_c00063{bottom:989.280000px;}
.y5_c00063{bottom:991.440000px;}
.y3_c00063{bottom:992.160000px;}
.y4_c00063{bottom:992.880000px;}
.y1_c00063{bottom:1074.240000px;}
.hb_c00063{height:31.100625px;}
.hd_c00063{height:33.692344px;}
.h9_c00063{height:36.284062px;}
.hf_c00063{height:38.875781px;}
.h3_c00063{height:41.467500px;}
.h5_c00063{height:44.059219px;}
.h4_c00063{height:46.650937px;}
.h8_c00063{height:49.242656px;}
.ha_c00063{height:51.834375px;}
.h7_c00063{height:54.426094px;}
.h6_c00063{height:57.017812px;}
.h2_c00063{height:62.201250px;}
.he_c00063{height:64.792969px;}
.hc_c00063{height:67.384687px;}
.h1_c00063{height:1146.750000px;}
.h0_c00063{height:1146.960000px;}
.w1_c00063{width:801.000000px;}
.w0_c00063{width:801.360000px;}
.x0_c00063{left:0.000000px;}
.x18_c00063{left:74.160000px;}
.x2_c00063{left:76.320000px;}
.x21_c00063{left:86.400000px;}
.x4a_c00063{left:98.640000px;}
.x2f_c00063{left:106.560000px;}
.x4e_c00063{left:108.720000px;}
.x22_c00063{left:118.080000px;}
.x44_c00063{left:127.440000px;}
.x19_c00063{left:139.680000px;}
.x30_c00063{left:149.040000px;}
.x23_c00063{left:150.480000px;}
.x3_c00063{left:160.560000px;}
.x1a_c00063{left:162.000000px;}
.x33_c00063{left:171.360000px;}
.x31_c00063{left:181.440000px;}
.x4_c00063{left:182.880000px;}
.x1b_c00063{left:193.680000px;}
.x34_c00063{left:203.040000px;}
.x3c_c00063{left:213.840000px;}
.x5_c00063{left:215.280000px;}
.x10_c00063{left:246.960000px;}
.x35_c00063{left:256.320000px;}
.x6_c00063{left:257.760000px;}
.x45_c00063{left:266.400000px;}
.x24_c00063{left:268.560000px;}
.x4f_c00063{left:277.920000px;}
.x11_c00063{left:279.360000px;}
.x7_c00063{left:289.440000px;}
.x1c_c00063{left:300.240000px;}
.x36_c00063{left:321.840000px;}
.x8_c00063{left:332.640000px;}
.x2a_c00063{left:334.080000px;}
.x37_c00063{left:343.440000px;}
.x12_c00063{left:344.880000px;}
.x3d_c00063{left:353.520000px;}
.x46_c00063{left:365.040000px;}
.x38_c00063{left:375.120000px;}
.x2b_c00063{left:386.640000px;}
.x9_c00063{left:397.440000px;}
.x25_c00063{left:408.240000px;}
.x4d_c00063{left:416.880000px;}
.x1d_c00063{left:419.040000px;}
.x32_c00063{left:429.120000px;}
.xa_c00063{left:432.000000px;}
.x26_c00063{left:439.920000px;}
.x13_c00063{left:441.360000px;}
.x3e_c00063{left:451.440000px;}
.x49_c00063{left:460.800000px;}
.x2c_c00063{left:473.040000px;}
.x42_c00063{left:482.400000px;}
.xb_c00063{left:483.840000px;}
.x4b_c00063{left:493.920000px;}
.x2d_c00063{left:504.720000px;}
.x14_c00063{left:516.240000px;}
.x1e_c00063{left:527.040000px;}
.x2e_c00063{left:537.120000px;}
.x39_c00063{left:547.200000px;}
.xc_c00063{left:548.640000px;}
.x47_c00063{left:558.000000px;}
.x27_c00063{left:559.440000px;}
.x3f_c00063{left:578.880000px;}
.xd_c00063{left:581.040000px;}
.x3a_c00063{left:590.400000px;}
.x28_c00063{left:601.200000px;}
.x40_c00063{left:611.280000px;}
.x15_c00063{left:613.440000px;}
.x43_c00063{left:622.080000px;}
.x4c_c00063{left:623.520000px;}
.x1f_c00063{left:633.600000px;}
.x48_c00063{left:643.680000px;}
.x16_c00063{left:645.120000px;}
.x20_c00063{left:654.480000px;}
.xe_c00063{left:656.640000px;}
.x3b_c00063{left:665.280000px;}
.x41_c00063{left:676.080000px;}
.x29_c00063{left:687.600000px;}
.x17_c00063{left:699.120000px;}
.x1_c00063{left:702.000000px;}
.xf_c00063{left:709.200000px;}
@media print{
.v0_c00063{vertical-align:0.000000pt;}
.ls0_c00063{letter-spacing:0.000000pt;}
.ws0_c00063{word-spacing:0.000000pt;}
.fs9_c00063{font-size:30.720000pt;}
.fsb_c00063{font-size:33.280000pt;}
.fs7_c00063{font-size:35.840000pt;}
.fsd_c00063{font-size:38.400000pt;}
.fs1_c00063{font-size:40.960000pt;}
.fs3_c00063{font-size:43.520000pt;}
.fs2_c00063{font-size:46.080000pt;}
.fs6_c00063{font-size:48.640000pt;}
.fs8_c00063{font-size:51.200000pt;}
.fs5_c00063{font-size:53.760000pt;}
.fs4_c00063{font-size:56.320000pt;}
.fs0_c00063{font-size:61.440000pt;}
.fsc_c00063{font-size:64.000000pt;}
.fsa_c00063{font-size:66.560000pt;}
.y0_c00063{bottom:0.000000pt;}
.y58_c00063{bottom:114.560000pt;}
.y57_c00063{bottom:117.120000pt;}
.y55_c00063{bottom:144.000000pt;}
.y56_c00063{bottom:145.920000pt;}
.y54_c00063{bottom:171.520000pt;}
.y53_c00063{bottom:173.440000pt;}
.y51_c00063{bottom:201.600000pt;}
.y52_c00063{bottom:202.240000pt;}
.y50_c00063{bottom:227.840000pt;}
.y4e_c00063{bottom:228.480000pt;}
.y4f_c00063{bottom:229.760000pt;}
.y4d_c00063{bottom:231.040000pt;}
.y4c_c00063{bottom:265.600000pt;}
.y4b_c00063{bottom:267.520000pt;}
.y4a_c00063{bottom:284.800000pt;}
.y49_c00063{bottom:286.080000pt;}
.y48_c00063{bottom:287.360000pt;}
.y46_c00063{bottom:295.680000pt;}
.y47_c00063{bottom:296.320000pt;}
.y44_c00063{bottom:312.320000pt;}
.y43_c00063{bottom:313.600000pt;}
.y45_c00063{bottom:314.880000pt;}
.y42_c00063{bottom:316.160000pt;}
.y41_c00063{bottom:322.560000pt;}
.y40_c00063{bottom:324.480000pt;}
.y3d_c00063{bottom:350.080000pt;}
.y3f_c00063{bottom:350.720000pt;}
.y3b_c00063{bottom:352.000000pt;}
.y3c_c00063{bottom:352.640000pt;}
.y3e_c00063{bottom:353.280000pt;}
.y3a_c00063{bottom:378.240000pt;}
.y36_c00063{bottom:378.880000pt;}
.y39_c00063{bottom:380.160000pt;}
.y37_c00063{bottom:380.800000pt;}
.y35_c00063{bottom:381.440000pt;}
.y38_c00063{bottom:382.080000pt;}
.y34_c00063{bottom:418.560000pt;}
.y30_c00063{bottom:454.400000pt;}
.y33_c00063{bottom:455.680000pt;}
.y32_c00063{bottom:456.320000pt;}
.y31_c00063{bottom:456.960000pt;}
.y2e_c00063{bottom:491.520000pt;}
.y2c_c00063{bottom:492.160000pt;}
.y2f_c00063{bottom:494.080000pt;}
.y2d_c00063{bottom:494.720000pt;}
.y2b_c00063{bottom:495.360000pt;}
.y2a_c00063{bottom:529.920000pt;}
.y28_c00063{bottom:530.560000pt;}
.y27_c00063{bottom:531.840000pt;}
.y29_c00063{bottom:532.480000pt;}
.y26_c00063{bottom:533.120000pt;}
.y23_c00063{bottom:567.040000pt;}
.y21_c00063{bottom:567.680000pt;}
.y25_c00063{bottom:568.320000pt;}
.y24_c00063{bottom:569.600000pt;}
.y22_c00063{bottom:570.240000pt;}
.y1f_c00063{bottom:605.440000pt;}
.y20_c00063{bottom:606.080000pt;}
.y1d_c00063{bottom:608.000000pt;}
.y1e_c00063{bottom:608.640000pt;}
.y19_c00063{bottom:643.200000pt;}
.y1a_c00063{bottom:643.840000pt;}
.y1c_c00063{bottom:645.120000pt;}
.y1b_c00063{bottom:645.760000pt;}
.y18_c00063{bottom:691.200000pt;}
.y17_c00063{bottom:693.120000pt;}
.y16_c00063{bottom:727.680000pt;}
.y13_c00063{bottom:728.320000pt;}
.y15_c00063{bottom:730.240000pt;}
.y14_c00063{bottom:730.880000pt;}
.y11_c00063{bottom:765.440000pt;}
.y10_c00063{bottom:766.080000pt;}
.y12_c00063{bottom:766.720000pt;}
.yf_c00063{bottom:768.000000pt;}
.ye_c00063{bottom:768.640000pt;}
.yd_c00063{bottom:803.200000pt;}
.yc_c00063{bottom:804.480000pt;}
.yb_c00063{bottom:805.760000pt;}
.ya_c00063{bottom:806.400000pt;}
.y8_c00063{bottom:842.240000pt;}
.y7_c00063{bottom:843.520000pt;}
.y6_c00063{bottom:844.160000pt;}
.y9_c00063{bottom:844.800000pt;}
.y2_c00063{bottom:879.360000pt;}
.y5_c00063{bottom:881.280000pt;}
.y3_c00063{bottom:881.920000pt;}
.y4_c00063{bottom:882.560000pt;}
.y1_c00063{bottom:954.880000pt;}
.hb_c00063{height:27.645000pt;}
.hd_c00063{height:29.948750pt;}
.h9_c00063{height:32.252500pt;}
.hf_c00063{height:34.556250pt;}
.h3_c00063{height:36.860000pt;}
.h5_c00063{height:39.163750pt;}
.h4_c00063{height:41.467500pt;}
.h8_c00063{height:43.771250pt;}
.ha_c00063{height:46.075000pt;}
.h7_c00063{height:48.378750pt;}
.h6_c00063{height:50.682500pt;}
.h2_c00063{height:55.290000pt;}
.he_c00063{height:57.593750pt;}
.hc_c00063{height:59.897500pt;}
.h1_c00063{height:1019.333333pt;}
.h0_c00063{height:1019.520000pt;}
.w1_c00063{width:712.000000pt;}
.w0_c00063{width:712.320000pt;}
.x0_c00063{left:0.000000pt;}
.x18_c00063{left:65.920000pt;}
.x2_c00063{left:67.840000pt;}
.x21_c00063{left:76.800000pt;}
.x4a_c00063{left:87.680000pt;}
.x2f_c00063{left:94.720000pt;}
.x4e_c00063{left:96.640000pt;}
.x22_c00063{left:104.960000pt;}
.x44_c00063{left:113.280000pt;}
.x19_c00063{left:124.160000pt;}
.x30_c00063{left:132.480000pt;}
.x23_c00063{left:133.760000pt;}
.x3_c00063{left:142.720000pt;}
.x1a_c00063{left:144.000000pt;}
.x33_c00063{left:152.320000pt;}
.x31_c00063{left:161.280000pt;}
.x4_c00063{left:162.560000pt;}
.x1b_c00063{left:172.160000pt;}
.x34_c00063{left:180.480000pt;}
.x3c_c00063{left:190.080000pt;}
.x5_c00063{left:191.360000pt;}
.x10_c00063{left:219.520000pt;}
.x35_c00063{left:227.840000pt;}
.x6_c00063{left:229.120000pt;}
.x45_c00063{left:236.800000pt;}
.x24_c00063{left:238.720000pt;}
.x4f_c00063{left:247.040000pt;}
.x11_c00063{left:248.320000pt;}
.x7_c00063{left:257.280000pt;}
.x1c_c00063{left:266.880000pt;}
.x36_c00063{left:286.080000pt;}
.x8_c00063{left:295.680000pt;}
.x2a_c00063{left:296.960000pt;}
.x37_c00063{left:305.280000pt;}
.x12_c00063{left:306.560000pt;}
.x3d_c00063{left:314.240000pt;}
.x46_c00063{left:324.480000pt;}
.x38_c00063{left:333.440000pt;}
.x2b_c00063{left:343.680000pt;}
.x9_c00063{left:353.280000pt;}
.x25_c00063{left:362.880000pt;}
.x4d_c00063{left:370.560000pt;}
.x1d_c00063{left:372.480000pt;}
.x32_c00063{left:381.440000pt;}
.xa_c00063{left:384.000000pt;}
.x26_c00063{left:391.040000pt;}
.x13_c00063{left:392.320000pt;}
.x3e_c00063{left:401.280000pt;}
.x49_c00063{left:409.600000pt;}
.x2c_c00063{left:420.480000pt;}
.x42_c00063{left:428.800000pt;}
.xb_c00063{left:430.080000pt;}
.x4b_c00063{left:439.040000pt;}
.x2d_c00063{left:448.640000pt;}
.x14_c00063{left:458.880000pt;}
.x1e_c00063{left:468.480000pt;}
.x2e_c00063{left:477.440000pt;}
.x39_c00063{left:486.400000pt;}
.xc_c00063{left:487.680000pt;}
.x47_c00063{left:496.000000pt;}
.x27_c00063{left:497.280000pt;}
.x3f_c00063{left:514.560000pt;}
.xd_c00063{left:516.480000pt;}
.x3a_c00063{left:524.800000pt;}
.x28_c00063{left:534.400000pt;}
.x40_c00063{left:543.360000pt;}
.x15_c00063{left:545.280000pt;}
.x43_c00063{left:552.960000pt;}
.x4c_c00063{left:554.240000pt;}
.x1f_c00063{left:563.200000pt;}
.x48_c00063{left:572.160000pt;}
.x16_c00063{left:573.440000pt;}
.x20_c00063{left:581.760000pt;}
.xe_c00063{left:583.680000pt;}
.x3b_c00063{left:591.360000pt;}
.x41_c00063{left:600.960000pt;}
.x29_c00063{left:611.200000pt;}
.x17_c00063{left:621.440000pt;}
.x1_c00063{left:624.000000pt;}
.xf_c00063{left:630.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9f99331478a08e5e486c3ef3.woff2')format("woff");}.ff1_c00064{font-family:ff1_c00064;line-height:1.109863;font-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_c00064{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m5_c00064{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m23_c00064{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m4_c00064{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m7_c00064{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m35_c00064{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00064{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00064{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m9_c00064{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.me_c00064{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m31_c00064{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mf_c00064{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);}
.m47_c00064{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);}
.m33_c00064{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m3_c00064{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);}
.m46_c00064{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1_c00064{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.mc_c00064{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m10_c00064{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m14_c00064{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00064{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m8_c00064{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00064{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m12_c00064{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);}
.m42_c00064{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);}
.m16_c00064{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);}
.m38_c00064{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.ma_c00064{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00064{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);}
.m2e_c00064{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);}
.m2f_c00064{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);}
.m36_c00064{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m39_c00064{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00064{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m20_c00064{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);}
.m43_c00064{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m18_c00064{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);}
.m45_c00064{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00064{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_c00064{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);}
.m3d_c00064{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00064{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00064{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);}
.m34_c00064{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.mb_c00064{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m40_c00064{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);}
.m6_c00064{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m0_c00064{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m32_c00064{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m24_c00064{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);}
.m30_c00064{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m27_c00064{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m2_c00064{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);}
.m25_c00064{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);}
.m37_c00064{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);}
.m2a_c00064{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00064{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);}
.m21_c00064{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m13_c00064{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);}
.m4b_c00064{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m41_c00064{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);}
.m3b_c00064{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);}
.m44_c00064{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00064{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m48_c00064{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00064{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m15_c00064{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m29_c00064{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m49_c00064{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);}
.m19_c00064{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m28_c00064{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);}
.m2d_c00064{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.md_c00064{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);}
.m3e_c00064{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m17_c00064{transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);}
.m11_c00064{transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);}
.m22_c00064{transform:matrix(0.912500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.912500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.912500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00064{transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);}
.v2_c00064{vertical-align:-14.400000px;}
.v1_c00064{vertical-align:-8.640000px;}
.v0_c00064{vertical-align:0.000000px;}
.ls0_c00064{letter-spacing:0.000000px;}
.sc__c00064{text-shadow:none;}
.sc0_c00064{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00064{-webkit-text-stroke:0px transparent;}
.sc0_c00064{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00064{word-spacing:0.000000px;}
.ws0_c00064{word-spacing:4.475520px;}
.ws1_c00064{word-spacing:7.380000px;}
.fc0_c00064{color:transparent;}
.fs10_c00064{font-size:14.400000px;}
.fse_c00064{font-size:17.280000px;}
.fsf_c00064{font-size:25.920000px;}
.fsd_c00064{font-size:34.560000px;}
.fsb_c00064{font-size:37.440000px;}
.fs9_c00064{font-size:40.320000px;}
.fsc_c00064{font-size:43.200000px;}
.fs8_c00064{font-size:46.080000px;}
.fs5_c00064{font-size:48.960000px;}
.fs2_c00064{font-size:51.840000px;}
.fs0_c00064{font-size:54.720000px;}
.fsa_c00064{font-size:57.600000px;}
.fs1_c00064{font-size:60.480000px;}
.fs7_c00064{font-size:63.360000px;}
.fs11_c00064{font-size:66.240000px;}
.fs3_c00064{font-size:69.120000px;}
.fs6_c00064{font-size:74.880000px;}
.fs4_c00064{font-size:77.760000px;}
.y0_c00064{bottom:0.000000px;}
.y52_c00064{bottom:82.800000px;}
.y50_c00064{bottom:84.240000px;}
.y4f_c00064{bottom:85.680000px;}
.y4e_c00064{bottom:86.400000px;}
.y51_c00064{bottom:87.120000px;}
.y4c_c00064{bottom:126.000000px;}
.y4d_c00064{bottom:127.440000px;}
.y4b_c00064{bottom:128.160000px;}
.y4a_c00064{bottom:128.880000px;}
.y49_c00064{bottom:129.600000px;}
.y45_c00064{bottom:168.480000px;}
.y46_c00064{bottom:169.200000px;}
.y47_c00064{bottom:169.920000px;}
.y48_c00064{bottom:170.640000px;}
.y44_c00064{bottom:171.360000px;}
.y43_c00064{bottom:172.080000px;}
.y3e_c00064{bottom:210.960000px;}
.y41_c00064{bottom:211.680000px;}
.y42_c00064{bottom:212.400000px;}
.y3f_c00064{bottom:213.840000px;}
.y40_c00064{bottom:214.560000px;}
.y39_c00064{bottom:253.440000px;}
.y3b_c00064{bottom:254.160000px;}
.y3d_c00064{bottom:254.880000px;}
.y3a_c00064{bottom:256.320000px;}
.y3c_c00064{bottom:257.040000px;}
.y38_c00064{bottom:297.360000px;}
.y37_c00064{bottom:298.800000px;}
.y35_c00064{bottom:299.520000px;}
.y36_c00064{bottom:300.240000px;}
.y33_c00064{bottom:339.120000px;}
.y31_c00064{bottom:339.840000px;}
.y34_c00064{bottom:341.280000px;}
.y32_c00064{bottom:342.000000px;}
.y30_c00064{bottom:342.720000px;}
.y2f_c00064{bottom:381.600000px;}
.y2d_c00064{bottom:382.320000px;}
.y2c_c00064{bottom:384.480000px;}
.y2e_c00064{bottom:385.200000px;}
.y2b_c00064{bottom:424.080000px;}
.y29_c00064{bottom:425.520000px;}
.y2a_c00064{bottom:426.960000px;}
.y28_c00064{bottom:427.680000px;}
.y26_c00064{bottom:467.280000px;}
.y27_c00064{bottom:469.440000px;}
.y25_c00064{bottom:470.160000px;}
.y23_c00064{bottom:584.640000px;}
.y21_c00064{bottom:586.080000px;}
.y20_c00064{bottom:586.800000px;}
.y24_c00064{bottom:587.520000px;}
.y22_c00064{bottom:590.400000px;}
.y1f_c00064{bottom:629.280000px;}
.y1e_c00064{bottom:669.600000px;}
.y1c_c00064{bottom:671.760000px;}
.y1d_c00064{bottom:674.640000px;}
.y1a_c00064{bottom:714.960000px;}
.y1b_c00064{bottom:715.680000px;}
.y17_c00064{bottom:755.280000px;}
.y16_c00064{bottom:756.000000px;}
.y18_c00064{bottom:757.440000px;}
.y19_c00064{bottom:758.160000px;}
.y13_c00064{bottom:786.960000px;}
.y15_c00064{bottom:787.680000px;}
.y14_c00064{bottom:789.840000px;}
.y11_c00064{bottom:818.640000px;}
.y10_c00064{bottom:820.800000px;}
.y12_c00064{bottom:821.520000px;}
.ye_c00064{bottom:863.280000px;}
.yf_c00064{bottom:864.720000px;}
.yb_c00064{bottom:893.520000px;}
.yd_c00064{bottom:894.240000px;}
.yc_c00064{bottom:896.400000px;}
.ya_c00064{bottom:925.920000px;}
.y8_c00064{bottom:927.360000px;}
.y9_c00064{bottom:928.800000px;}
.y7_c00064{bottom:956.160000px;}
.y6_c00064{bottom:957.600000px;}
.y5_c00064{bottom:987.840000px;}
.y2_c00064{bottom:989.280000px;}
.y1_c00064{bottom:990.720000px;}
.y4_c00064{bottom:992.160000px;}
.y3_c00064{bottom:992.880000px;}
.h12_c00064{height:12.958594px;}
.h10_c00064{height:15.550313px;}
.h11_c00064{height:23.325469px;}
.hf_c00064{height:31.100625px;}
.hd_c00064{height:33.692344px;}
.hb_c00064{height:36.284062px;}
.he_c00064{height:38.875781px;}
.ha_c00064{height:41.467500px;}
.h7_c00064{height:44.059219px;}
.h14_c00064{height:45.209531px;}
.h4_c00064{height:46.650937px;}
.h2_c00064{height:49.242656px;}
.hc_c00064{height:51.834375px;}
.h3_c00064{height:54.426094px;}
.h9_c00064{height:57.017812px;}
.h13_c00064{height:59.609531px;}
.h5_c00064{height:62.201250px;}
.h8_c00064{height:67.384687px;}
.h6_c00064{height:69.976406px;}
.h1_c00064{height:1151.250000px;}
.h0_c00064{height:1151.280000px;}
.w1_c00064{width:807.750000px;}
.w0_c00064{width:807.840000px;}
.x0_c00064{left:0.000000px;}
.x13_c00064{left:86.400000px;}
.x1_c00064{left:87.840000px;}
.xd_c00064{left:108.720000px;}
.x3d_c00064{left:118.800000px;}
.x20_c00064{left:120.240000px;}
.x16_c00064{left:129.600000px;}
.x2_c00064{left:131.760000px;}
.x39_c00064{left:141.840000px;}
.x9_c00064{left:151.920000px;}
.x17_c00064{left:153.360000px;}
.x31_c00064{left:162.000000px;}
.x18_c00064{left:172.800000px;}
.x19_c00064{left:195.120000px;}
.x21_c00064{left:205.920000px;}
.xf_c00064{left:216.720000px;}
.x3_c00064{left:227.520000px;}
.xa_c00064{left:238.320000px;}
.x10_c00064{left:249.120000px;}
.x14_c00064{left:259.200000px;}
.xb_c00064{left:270.720000px;}
.x22_c00064{left:280.080000px;}
.x35_c00064{left:291.600000px;}
.x11_c00064{left:312.480000px;}
.x15_c00064{left:324.000000px;}
.xc_c00064{left:334.080000px;}
.x23_c00064{left:345.600000px;}
.x12_c00064{left:356.400000px;}
.x1a_c00064{left:367.200000px;}
.x2d_c00064{left:376.560000px;}
.xe_c00064{left:378.000000px;}
.x1b_c00064{left:387.360000px;}
.x3e_c00064{left:388.800000px;}
.x32_c00064{left:398.160000px;}
.x4_c00064{left:402.480000px;}
.x2e_c00064{left:408.960000px;}
.x7_c00064{left:410.400000px;}
.x3a_c00064{left:419.760000px;}
.x29_c00064{left:429.840000px;}
.x8_c00064{left:432.000000px;}
.x1c_c00064{left:442.080000px;}
.x24_c00064{left:452.880000px;}
.x2f_c00064{left:463.680000px;}
.x3f_c00064{left:474.480000px;}
.x36_c00064{left:484.560000px;}
.x5_c00064{left:496.080000px;}
.x1d_c00064{left:506.880000px;}
.x3b_c00064{left:517.680000px;}
.x40_c00064{left:537.840000px;}
.x25_c00064{left:549.360000px;}
.x3c_c00064{left:559.440000px;}
.x26_c00064{left:571.680000px;}
.x6_c00064{left:583.200000px;}
.x41_c00064{left:592.560000px;}
.x27_c00064{left:603.360000px;}
.x1e_c00064{left:615.600000px;}
.x42_c00064{left:624.240000px;}
.x33_c00064{left:635.040000px;}
.x1f_c00064{left:647.280000px;}
.x43_c00064{left:656.640000px;}
.x2a_c00064{left:658.080000px;}
.x37_c00064{left:668.160000px;}
.x34_c00064{left:677.520000px;}
.x2b_c00064{left:678.960000px;}
.x30_c00064{left:689.760000px;}
.x28_c00064{left:691.200000px;}
.x38_c00064{left:711.360000px;}
.x2c_c00064{left:722.160000px;}
@media print{
.v2_c00064{vertical-align:-12.800000pt;}
.v1_c00064{vertical-align:-7.680000pt;}
.v0_c00064{vertical-align:0.000000pt;}
.ls0_c00064{letter-spacing:0.000000pt;}
.ws2_c00064{word-spacing:0.000000pt;}
.ws0_c00064{word-spacing:3.978240pt;}
.ws1_c00064{word-spacing:6.560000pt;}
.fs10_c00064{font-size:12.800000pt;}
.fse_c00064{font-size:15.360000pt;}
.fsf_c00064{font-size:23.040000pt;}
.fsd_c00064{font-size:30.720000pt;}
.fsb_c00064{font-size:33.280000pt;}
.fs9_c00064{font-size:35.840000pt;}
.fsc_c00064{font-size:38.400000pt;}
.fs8_c00064{font-size:40.960000pt;}
.fs5_c00064{font-size:43.520000pt;}
.fs2_c00064{font-size:46.080000pt;}
.fs0_c00064{font-size:48.640000pt;}
.fsa_c00064{font-size:51.200000pt;}
.fs1_c00064{font-size:53.760000pt;}
.fs7_c00064{font-size:56.320000pt;}
.fs11_c00064{font-size:58.880000pt;}
.fs3_c00064{font-size:61.440000pt;}
.fs6_c00064{font-size:66.560000pt;}
.fs4_c00064{font-size:69.120000pt;}
.y0_c00064{bottom:0.000000pt;}
.y52_c00064{bottom:73.600000pt;}
.y50_c00064{bottom:74.880000pt;}
.y4f_c00064{bottom:76.160000pt;}
.y4e_c00064{bottom:76.800000pt;}
.y51_c00064{bottom:77.440000pt;}
.y4c_c00064{bottom:112.000000pt;}
.y4d_c00064{bottom:113.280000pt;}
.y4b_c00064{bottom:113.920000pt;}
.y4a_c00064{bottom:114.560000pt;}
.y49_c00064{bottom:115.200000pt;}
.y45_c00064{bottom:149.760000pt;}
.y46_c00064{bottom:150.400000pt;}
.y47_c00064{bottom:151.040000pt;}
.y48_c00064{bottom:151.680000pt;}
.y44_c00064{bottom:152.320000pt;}
.y43_c00064{bottom:152.960000pt;}
.y3e_c00064{bottom:187.520000pt;}
.y41_c00064{bottom:188.160000pt;}
.y42_c00064{bottom:188.800000pt;}
.y3f_c00064{bottom:190.080000pt;}
.y40_c00064{bottom:190.720000pt;}
.y39_c00064{bottom:225.280000pt;}
.y3b_c00064{bottom:225.920000pt;}
.y3d_c00064{bottom:226.560000pt;}
.y3a_c00064{bottom:227.840000pt;}
.y3c_c00064{bottom:228.480000pt;}
.y38_c00064{bottom:264.320000pt;}
.y37_c00064{bottom:265.600000pt;}
.y35_c00064{bottom:266.240000pt;}
.y36_c00064{bottom:266.880000pt;}
.y33_c00064{bottom:301.440000pt;}
.y31_c00064{bottom:302.080000pt;}
.y34_c00064{bottom:303.360000pt;}
.y32_c00064{bottom:304.000000pt;}
.y30_c00064{bottom:304.640000pt;}
.y2f_c00064{bottom:339.200000pt;}
.y2d_c00064{bottom:339.840000pt;}
.y2c_c00064{bottom:341.760000pt;}
.y2e_c00064{bottom:342.400000pt;}
.y2b_c00064{bottom:376.960000pt;}
.y29_c00064{bottom:378.240000pt;}
.y2a_c00064{bottom:379.520000pt;}
.y28_c00064{bottom:380.160000pt;}
.y26_c00064{bottom:415.360000pt;}
.y27_c00064{bottom:417.280000pt;}
.y25_c00064{bottom:417.920000pt;}
.y23_c00064{bottom:519.680000pt;}
.y21_c00064{bottom:520.960000pt;}
.y20_c00064{bottom:521.600000pt;}
.y24_c00064{bottom:522.240000pt;}
.y22_c00064{bottom:524.800000pt;}
.y1f_c00064{bottom:559.360000pt;}
.y1e_c00064{bottom:595.200000pt;}
.y1c_c00064{bottom:597.120000pt;}
.y1d_c00064{bottom:599.680000pt;}
.y1a_c00064{bottom:635.520000pt;}
.y1b_c00064{bottom:636.160000pt;}
.y17_c00064{bottom:671.360000pt;}
.y16_c00064{bottom:672.000000pt;}
.y18_c00064{bottom:673.280000pt;}
.y19_c00064{bottom:673.920000pt;}
.y13_c00064{bottom:699.520000pt;}
.y15_c00064{bottom:700.160000pt;}
.y14_c00064{bottom:702.080000pt;}
.y11_c00064{bottom:727.680000pt;}
.y10_c00064{bottom:729.600000pt;}
.y12_c00064{bottom:730.240000pt;}
.ye_c00064{bottom:767.360000pt;}
.yf_c00064{bottom:768.640000pt;}
.yb_c00064{bottom:794.240000pt;}
.yd_c00064{bottom:794.880000pt;}
.yc_c00064{bottom:796.800000pt;}
.ya_c00064{bottom:823.040000pt;}
.y8_c00064{bottom:824.320000pt;}
.y9_c00064{bottom:825.600000pt;}
.y7_c00064{bottom:849.920000pt;}
.y6_c00064{bottom:851.200000pt;}
.y5_c00064{bottom:878.080000pt;}
.y2_c00064{bottom:879.360000pt;}
.y1_c00064{bottom:880.640000pt;}
.y4_c00064{bottom:881.920000pt;}
.y3_c00064{bottom:882.560000pt;}
.h12_c00064{height:11.518750pt;}
.h10_c00064{height:13.822500pt;}
.h11_c00064{height:20.733750pt;}
.hf_c00064{height:27.645000pt;}
.hd_c00064{height:29.948750pt;}
.hb_c00064{height:32.252500pt;}
.he_c00064{height:34.556250pt;}
.ha_c00064{height:36.860000pt;}
.h7_c00064{height:39.163750pt;}
.h14_c00064{height:40.186250pt;}
.h4_c00064{height:41.467500pt;}
.h2_c00064{height:43.771250pt;}
.hc_c00064{height:46.075000pt;}
.h3_c00064{height:48.378750pt;}
.h9_c00064{height:50.682500pt;}
.h13_c00064{height:52.986250pt;}
.h5_c00064{height:55.290000pt;}
.h8_c00064{height:59.897500pt;}
.h6_c00064{height:62.201250pt;}
.h1_c00064{height:1023.333333pt;}
.h0_c00064{height:1023.360000pt;}
.w1_c00064{width:718.000000pt;}
.w0_c00064{width:718.080000pt;}
.x0_c00064{left:0.000000pt;}
.x13_c00064{left:76.800000pt;}
.x1_c00064{left:78.080000pt;}
.xd_c00064{left:96.640000pt;}
.x3d_c00064{left:105.600000pt;}
.x20_c00064{left:106.880000pt;}
.x16_c00064{left:115.200000pt;}
.x2_c00064{left:117.120000pt;}
.x39_c00064{left:126.080000pt;}
.x9_c00064{left:135.040000pt;}
.x17_c00064{left:136.320000pt;}
.x31_c00064{left:144.000000pt;}
.x18_c00064{left:153.600000pt;}
.x19_c00064{left:173.440000pt;}
.x21_c00064{left:183.040000pt;}
.xf_c00064{left:192.640000pt;}
.x3_c00064{left:202.240000pt;}
.xa_c00064{left:211.840000pt;}
.x10_c00064{left:221.440000pt;}
.x14_c00064{left:230.400000pt;}
.xb_c00064{left:240.640000pt;}
.x22_c00064{left:248.960000pt;}
.x35_c00064{left:259.200000pt;}
.x11_c00064{left:277.760000pt;}
.x15_c00064{left:288.000000pt;}
.xc_c00064{left:296.960000pt;}
.x23_c00064{left:307.200000pt;}
.x12_c00064{left:316.800000pt;}
.x1a_c00064{left:326.400000pt;}
.x2d_c00064{left:334.720000pt;}
.xe_c00064{left:336.000000pt;}
.x1b_c00064{left:344.320000pt;}
.x3e_c00064{left:345.600000pt;}
.x32_c00064{left:353.920000pt;}
.x4_c00064{left:357.760000pt;}
.x2e_c00064{left:363.520000pt;}
.x7_c00064{left:364.800000pt;}
.x3a_c00064{left:373.120000pt;}
.x29_c00064{left:382.080000pt;}
.x8_c00064{left:384.000000pt;}
.x1c_c00064{left:392.960000pt;}
.x24_c00064{left:402.560000pt;}
.x2f_c00064{left:412.160000pt;}
.x3f_c00064{left:421.760000pt;}
.x36_c00064{left:430.720000pt;}
.x5_c00064{left:440.960000pt;}
.x1d_c00064{left:450.560000pt;}
.x3b_c00064{left:460.160000pt;}
.x40_c00064{left:478.080000pt;}
.x25_c00064{left:488.320000pt;}
.x3c_c00064{left:497.280000pt;}
.x26_c00064{left:508.160000pt;}
.x6_c00064{left:518.400000pt;}
.x41_c00064{left:526.720000pt;}
.x27_c00064{left:536.320000pt;}
.x1e_c00064{left:547.200000pt;}
.x42_c00064{left:554.880000pt;}
.x33_c00064{left:564.480000pt;}
.x1f_c00064{left:575.360000pt;}
.x43_c00064{left:583.680000pt;}
.x2a_c00064{left:584.960000pt;}
.x37_c00064{left:593.920000pt;}
.x34_c00064{left:602.240000pt;}
.x2b_c00064{left:603.520000pt;}
.x30_c00064{left:613.120000pt;}
.x28_c00064{left:614.400000pt;}
.x38_c00064{left:632.320000pt;}
.x2c_c00064{left:641.920000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_08f6b72b8ea4a09769fe8155.woff2')format("woff");}.ff1_c00065{font-family:ff1_c00065;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m47_c00065{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00065{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m40_c00065{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m12_c00065{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m39_c00065{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m4_c00065{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.ma_c00065{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00065{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m8_c00065{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m31_c00065{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m11_c00065{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);}
.m52_c00065{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m26_c00065{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m15_c00065{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m38_c00065{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00065{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m3_c00065{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m28_c00065{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);}
.m30_c00065{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m24_c00065{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m36_c00065{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m5_c00065{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);}
.m19_c00065{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m2f_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);}
.m20_c00065{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m42_c00065{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00065{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m7_c00065{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);}
.m1e_c00065{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_c00065{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);}
.m33_c00065{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m43_c00065{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00065{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);}
.m50_c00065{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m49_c00065{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m18_c00065{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);}
.m25_c00065{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);}
.m1b_c00065{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m48_c00065{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m10_c00065{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00065{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);}
.m27_c00065{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m37_c00065{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);}
.m32_c00065{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m13_c00065{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);}
.md_c00065{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00065{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m21_c00065{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.mc_c00065{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00065{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);}
.m9_c00065{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m46_c00065{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00065{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m29_c00065{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);}
.m2_c00065{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m16_c00065{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00065{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00065{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);}
.mf_c00065{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);}
.m2a_c00065{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m34_c00065{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m6_c00065{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);}
.m1a_c00065{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m45_c00065{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00065{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.mb_c00065{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);}
.m2d_c00065{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00065{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00065{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00065{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);}
.m41_c00065{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m0_c00065{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);}
.m14_c00065{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m1_c00065{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_c00065{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m23_c00065{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00065{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m51_c00065{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.me_c00065{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m22_c00065{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);}
.m35_c00065{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m44_c00065{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00065{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.v0_c00065{vertical-align:0.000000px;}
.v1_c00065{vertical-align:2.880000px;}
.ls0_c00065{letter-spacing:0.000000px;}
.sc__c00065{text-shadow:none;}
.sc0_c00065{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00065{-webkit-text-stroke:0px transparent;}
.sc0_c00065{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00065{word-spacing:-7.842960px;}
.ws1_c00065{word-spacing:-1.333083px;}
.ws2_c00065{word-spacing:0.000000px;}
.fc0_c00065{color:transparent;}
.fs1_c00065{font-size:34.560000px;}
.fs2_c00065{font-size:37.440000px;}
.fsd_c00065{font-size:40.320000px;}
.fsc_c00065{font-size:43.200000px;}
.fs9_c00065{font-size:46.080000px;}
.fs3_c00065{font-size:48.960000px;}
.fs0_c00065{font-size:51.840000px;}
.fs4_c00065{font-size:54.720000px;}
.fsb_c00065{font-size:57.600000px;}
.fs5_c00065{font-size:60.480000px;}
.fs7_c00065{font-size:63.360000px;}
.fs8_c00065{font-size:66.240000px;}
.fs6_c00065{font-size:69.120000px;}
.fsa_c00065{font-size:72.000000px;}
.y0_c00065{bottom:0.000000px;}
.y5d_c00065{bottom:86.400000px;}
.y5f_c00065{bottom:87.120000px;}
.y5e_c00065{bottom:89.280000px;}
.y60_c00065{bottom:90.000000px;}
.y5c_c00065{bottom:92.160000px;}
.y5b_c00065{bottom:128.160000px;}
.y58_c00065{bottom:129.600000px;}
.y56_c00065{bottom:130.320000px;}
.y57_c00065{bottom:131.040000px;}
.y5a_c00065{bottom:131.760000px;}
.y59_c00065{bottom:132.480000px;}
.y55_c00065{bottom:171.360000px;}
.y54_c00065{bottom:172.080000px;}
.y53_c00065{bottom:172.800000px;}
.y52_c00065{bottom:174.240000px;}
.y51_c00065{bottom:174.960000px;}
.y4f_c00065{bottom:214.560000px;}
.y50_c00065{bottom:216.000000px;}
.y4e_c00065{bottom:216.720000px;}
.y4d_c00065{bottom:217.440000px;}
.y49_c00065{bottom:256.320000px;}
.y4c_c00065{bottom:257.040000px;}
.y4a_c00065{bottom:259.200000px;}
.y4b_c00065{bottom:259.920000px;}
.y45_c00065{bottom:300.240000px;}
.y46_c00065{bottom:301.680000px;}
.y47_c00065{bottom:302.400000px;}
.y48_c00065{bottom:303.120000px;}
.y43_c00065{bottom:342.000000px;}
.y44_c00065{bottom:342.720000px;}
.y42_c00065{bottom:344.160000px;}
.y41_c00065{bottom:344.880000px;}
.y3d_c00065{bottom:383.760000px;}
.y3b_c00065{bottom:384.480000px;}
.y3e_c00065{bottom:385.200000px;}
.y3f_c00065{bottom:385.920000px;}
.y3c_c00065{bottom:386.640000px;}
.y40_c00065{bottom:387.360000px;}
.y3a_c00065{bottom:388.080000px;}
.y38_c00065{bottom:426.240000px;}
.y37_c00065{bottom:426.960000px;}
.y39_c00065{bottom:429.120000px;}
.y36_c00065{bottom:429.840000px;}
.y33_c00065{bottom:469.440000px;}
.y34_c00065{bottom:470.160000px;}
.y32_c00065{bottom:472.320000px;}
.y35_c00065{bottom:473.040000px;}
.y30_c00065{bottom:511.920000px;}
.y2f_c00065{bottom:512.640000px;}
.y31_c00065{bottom:514.080000px;}
.y2e_c00065{bottom:514.800000px;}
.y2d_c00065{bottom:515.520000px;}
.y2c_c00065{bottom:555.120000px;}
.y2b_c00065{bottom:557.280000px;}
.y2a_c00065{bottom:558.000000px;}
.y27_c00065{bottom:606.960000px;}
.y29_c00065{bottom:607.680000px;}
.y28_c00065{bottom:608.400000px;}
.y26_c00065{bottom:610.560000px;}
.y25_c00065{bottom:611.280000px;}
.y23_c00065{bottom:650.880000px;}
.y24_c00065{bottom:653.040000px;}
.y22_c00065{bottom:653.760000px;}
.y1c_c00065{bottom:692.640000px;}
.y1e_c00065{bottom:693.360000px;}
.y1f_c00065{bottom:694.800000px;}
.y20_c00065{bottom:695.520000px;}
.y1d_c00065{bottom:696.240000px;}
.y21_c00065{bottom:696.960000px;}
.y1a_c00065{bottom:735.840000px;}
.y19_c00065{bottom:736.560000px;}
.y18_c00065{bottom:738.000000px;}
.y1b_c00065{bottom:738.720000px;}
.y16_c00065{bottom:781.200000px;}
.y17_c00065{bottom:781.920000px;}
.y15_c00065{bottom:831.600000px;}
.y14_c00065{bottom:873.360000px;}
.y12_c00065{bottom:874.080000px;}
.y11_c00065{bottom:876.240000px;}
.y13_c00065{bottom:876.960000px;}
.y10_c00065{bottom:915.120000px;}
.ye_c00065{bottom:915.840000px;}
.yd_c00065{bottom:918.720000px;}
.yf_c00065{bottom:919.440000px;}
.y9_c00065{bottom:958.320000px;}
.y7_c00065{bottom:959.040000px;}
.ya_c00065{bottom:959.760000px;}
.yc_c00065{bottom:960.480000px;}
.y8_c00065{bottom:961.920000px;}
.yb_c00065{bottom:962.640000px;}
.y6_c00065{bottom:1001.520000px;}
.y4_c00065{bottom:1002.960000px;}
.y1_c00065{bottom:1003.680000px;}
.y2_c00065{bottom:1004.400000px;}
.y3_c00065{bottom:1005.120000px;}
.y5_c00065{bottom:1005.840000px;}
.h3_c00065{height:31.100625px;}
.h4_c00065{height:33.692344px;}
.h10_c00065{height:36.284062px;}
.hf_c00065{height:38.875781px;}
.hb_c00065{height:41.467500px;}
.h5_c00065{height:44.059219px;}
.h2_c00065{height:46.650937px;}
.hc_c00065{height:46.939219px;}
.h6_c00065{height:49.242656px;}
.he_c00065{height:51.834375px;}
.h7_c00065{height:54.426094px;}
.h9_c00065{height:57.017812px;}
.ha_c00065{height:59.609531px;}
.h8_c00065{height:62.201250px;}
.hd_c00065{height:64.792969px;}
.h0_c00065{height:1152.720000px;}
.h1_c00065{height:1152.750000px;}
.w1_c00065{width:808.500000px;}
.w0_c00065{width:808.560000px;}
.x0_c00065{left:0.000000px;}
.xe_c00065{left:86.400000px;}
.x1_c00065{left:87.840000px;}
.x4f_c00065{left:108.000000px;}
.x2_c00065{left:119.520000px;}
.x31_c00065{left:128.160000px;}
.x17_c00065{left:129.600000px;}
.x38_c00065{left:131.040000px;}
.x3_c00065{left:151.200000px;}
.x47_c00065{left:152.640000px;}
.x1c_c00065{left:162.000000px;}
.x4a_c00065{left:164.160000px;}
.xf_c00065{left:172.800000px;}
.x43_c00065{left:174.240000px;}
.x1d_c00065{left:183.600000px;}
.x4d_c00065{left:185.760000px;}
.x4_c00065{left:195.120000px;}
.x44_c00065{left:205.200000px;}
.x3b_c00065{left:206.640000px;}
.x4c_c00065{left:217.440000px;}
.x10_c00065{left:226.800000px;}
.x4b_c00065{left:228.960000px;}
.x18_c00065{left:248.400000px;}
.x5_c00065{left:259.200000px;}
.x26_c00065{left:269.280000px;}
.x1e_c00065{left:280.800000px;}
.x6_c00065{left:292.320000px;}
.x40_c00065{left:302.400000px;}
.x3c_c00065{left:303.840000px;}
.x19_c00065{left:313.200000px;}
.x7_c00065{left:323.280000px;}
.x27_c00065{left:334.800000px;}
.x11_c00065{left:344.880000px;}
.x50_c00065{left:346.320000px;}
.x1f_c00065{left:356.400000px;}
.x45_c00065{left:367.200000px;}
.x2b_c00065{left:378.000000px;}
.x12_c00065{left:387.360000px;}
.x3d_c00065{left:389.520000px;}
.x8_c00065{left:399.600000px;}
.x2c_c00065{left:409.680000px;}
.x9_c00065{left:419.760000px;}
.x23_c00065{left:421.200000px;}
.x41_c00065{left:431.280000px;}
.x1a_c00065{left:441.360000px;}
.x24_c00065{left:442.800000px;}
.x13_c00065{left:452.880000px;}
.x39_c00065{left:463.680000px;}
.x32_c00065{left:475.200000px;}
.x3e_c00065{left:486.000000px;}
.xa_c00065{left:495.360000px;}
.x28_c00065{left:496.800000px;}
.x3f_c00065{left:518.400000px;}
.x2e_c00065{left:527.760000px;}
.xb_c00065{left:540.000000px;}
.x34_c00065{left:550.080000px;}
.x20_c00065{left:559.440000px;}
.x14_c00065{left:561.600000px;}
.x33_c00065{left:571.680000px;}
.x2f_c00065{left:581.760000px;}
.x35_c00065{left:583.200000px;}
.xc_c00065{left:593.280000px;}
.x48_c00065{left:603.360000px;}
.x2d_c00065{left:614.160000px;}
.x4e_c00065{left:615.600000px;}
.x15_c00065{left:625.680000px;}
.x36_c00065{left:636.480000px;}
.x21_c00065{left:646.560000px;}
.x29_c00065{left:648.000000px;}
.x42_c00065{left:658.800000px;}
.x16_c00065{left:660.960000px;}
.x1b_c00065{left:669.600000px;}
.xd_c00065{left:678.240000px;}
.x2a_c00065{left:680.400000px;}
.x22_c00065{left:689.040000px;}
.x46_c00065{left:690.480000px;}
.x30_c00065{left:702.000000px;}
.x25_c00065{left:711.360000px;}
.x49_c00065{left:712.800000px;}
.x37_c00065{left:722.880000px;}
.x3a_c00065{left:734.400000px;}
@media print{
.v0_c00065{vertical-align:0.000000pt;}
.v1_c00065{vertical-align:2.560000pt;}
.ls0_c00065{letter-spacing:0.000000pt;}
.ws0_c00065{word-spacing:-6.971520pt;}
.ws1_c00065{word-spacing:-1.184963pt;}
.ws2_c00065{word-spacing:0.000000pt;}
.fs1_c00065{font-size:30.720000pt;}
.fs2_c00065{font-size:33.280000pt;}
.fsd_c00065{font-size:35.840000pt;}
.fsc_c00065{font-size:38.400000pt;}
.fs9_c00065{font-size:40.960000pt;}
.fs3_c00065{font-size:43.520000pt;}
.fs0_c00065{font-size:46.080000pt;}
.fs4_c00065{font-size:48.640000pt;}
.fsb_c00065{font-size:51.200000pt;}
.fs5_c00065{font-size:53.760000pt;}
.fs7_c00065{font-size:56.320000pt;}
.fs8_c00065{font-size:58.880000pt;}
.fs6_c00065{font-size:61.440000pt;}
.fsa_c00065{font-size:64.000000pt;}
.y0_c00065{bottom:0.000000pt;}
.y5d_c00065{bottom:76.800000pt;}
.y5f_c00065{bottom:77.440000pt;}
.y5e_c00065{bottom:79.360000pt;}
.y60_c00065{bottom:80.000000pt;}
.y5c_c00065{bottom:81.920000pt;}
.y5b_c00065{bottom:113.920000pt;}
.y58_c00065{bottom:115.200000pt;}
.y56_c00065{bottom:115.840000pt;}
.y57_c00065{bottom:116.480000pt;}
.y5a_c00065{bottom:117.120000pt;}
.y59_c00065{bottom:117.760000pt;}
.y55_c00065{bottom:152.320000pt;}
.y54_c00065{bottom:152.960000pt;}
.y53_c00065{bottom:153.600000pt;}
.y52_c00065{bottom:154.880000pt;}
.y51_c00065{bottom:155.520000pt;}
.y4f_c00065{bottom:190.720000pt;}
.y50_c00065{bottom:192.000000pt;}
.y4e_c00065{bottom:192.640000pt;}
.y4d_c00065{bottom:193.280000pt;}
.y49_c00065{bottom:227.840000pt;}
.y4c_c00065{bottom:228.480000pt;}
.y4a_c00065{bottom:230.400000pt;}
.y4b_c00065{bottom:231.040000pt;}
.y45_c00065{bottom:266.880000pt;}
.y46_c00065{bottom:268.160000pt;}
.y47_c00065{bottom:268.800000pt;}
.y48_c00065{bottom:269.440000pt;}
.y43_c00065{bottom:304.000000pt;}
.y44_c00065{bottom:304.640000pt;}
.y42_c00065{bottom:305.920000pt;}
.y41_c00065{bottom:306.560000pt;}
.y3d_c00065{bottom:341.120000pt;}
.y3b_c00065{bottom:341.760000pt;}
.y3e_c00065{bottom:342.400000pt;}
.y3f_c00065{bottom:343.040000pt;}
.y3c_c00065{bottom:343.680000pt;}
.y40_c00065{bottom:344.320000pt;}
.y3a_c00065{bottom:344.960000pt;}
.y38_c00065{bottom:378.880000pt;}
.y37_c00065{bottom:379.520000pt;}
.y39_c00065{bottom:381.440000pt;}
.y36_c00065{bottom:382.080000pt;}
.y33_c00065{bottom:417.280000pt;}
.y34_c00065{bottom:417.920000pt;}
.y32_c00065{bottom:419.840000pt;}
.y35_c00065{bottom:420.480000pt;}
.y30_c00065{bottom:455.040000pt;}
.y2f_c00065{bottom:455.680000pt;}
.y31_c00065{bottom:456.960000pt;}
.y2e_c00065{bottom:457.600000pt;}
.y2d_c00065{bottom:458.240000pt;}
.y2c_c00065{bottom:493.440000pt;}
.y2b_c00065{bottom:495.360000pt;}
.y2a_c00065{bottom:496.000000pt;}
.y27_c00065{bottom:539.520000pt;}
.y29_c00065{bottom:540.160000pt;}
.y28_c00065{bottom:540.800000pt;}
.y26_c00065{bottom:542.720000pt;}
.y25_c00065{bottom:543.360000pt;}
.y23_c00065{bottom:578.560000pt;}
.y24_c00065{bottom:580.480000pt;}
.y22_c00065{bottom:581.120000pt;}
.y1c_c00065{bottom:615.680000pt;}
.y1e_c00065{bottom:616.320000pt;}
.y1f_c00065{bottom:617.600000pt;}
.y20_c00065{bottom:618.240000pt;}
.y1d_c00065{bottom:618.880000pt;}
.y21_c00065{bottom:619.520000pt;}
.y1a_c00065{bottom:654.080000pt;}
.y19_c00065{bottom:654.720000pt;}
.y18_c00065{bottom:656.000000pt;}
.y1b_c00065{bottom:656.640000pt;}
.y16_c00065{bottom:694.400000pt;}
.y17_c00065{bottom:695.040000pt;}
.y15_c00065{bottom:739.200000pt;}
.y14_c00065{bottom:776.320000pt;}
.y12_c00065{bottom:776.960000pt;}
.y11_c00065{bottom:778.880000pt;}
.y13_c00065{bottom:779.520000pt;}
.y10_c00065{bottom:813.440000pt;}
.ye_c00065{bottom:814.080000pt;}
.yd_c00065{bottom:816.640000pt;}
.yf_c00065{bottom:817.280000pt;}
.y9_c00065{bottom:851.840000pt;}
.y7_c00065{bottom:852.480000pt;}
.ya_c00065{bottom:853.120000pt;}
.yc_c00065{bottom:853.760000pt;}
.y8_c00065{bottom:855.040000pt;}
.yb_c00065{bottom:855.680000pt;}
.y6_c00065{bottom:890.240000pt;}
.y4_c00065{bottom:891.520000pt;}
.y1_c00065{bottom:892.160000pt;}
.y2_c00065{bottom:892.800000pt;}
.y3_c00065{bottom:893.440000pt;}
.y5_c00065{bottom:894.080000pt;}
.h3_c00065{height:27.645000pt;}
.h4_c00065{height:29.948750pt;}
.h10_c00065{height:32.252500pt;}
.hf_c00065{height:34.556250pt;}
.hb_c00065{height:36.860000pt;}
.h5_c00065{height:39.163750pt;}
.h2_c00065{height:41.467500pt;}
.hc_c00065{height:41.723750pt;}
.h6_c00065{height:43.771250pt;}
.he_c00065{height:46.075000pt;}
.h7_c00065{height:48.378750pt;}
.h9_c00065{height:50.682500pt;}
.ha_c00065{height:52.986250pt;}
.h8_c00065{height:55.290000pt;}
.hd_c00065{height:57.593750pt;}
.h0_c00065{height:1024.640000pt;}
.h1_c00065{height:1024.666667pt;}
.w1_c00065{width:718.666667pt;}
.w0_c00065{width:718.720000pt;}
.x0_c00065{left:0.000000pt;}
.xe_c00065{left:76.800000pt;}
.x1_c00065{left:78.080000pt;}
.x4f_c00065{left:96.000000pt;}
.x2_c00065{left:106.240000pt;}
.x31_c00065{left:113.920000pt;}
.x17_c00065{left:115.200000pt;}
.x38_c00065{left:116.480000pt;}
.x3_c00065{left:134.400000pt;}
.x47_c00065{left:135.680000pt;}
.x1c_c00065{left:144.000000pt;}
.x4a_c00065{left:145.920000pt;}
.xf_c00065{left:153.600000pt;}
.x43_c00065{left:154.880000pt;}
.x1d_c00065{left:163.200000pt;}
.x4d_c00065{left:165.120000pt;}
.x4_c00065{left:173.440000pt;}
.x44_c00065{left:182.400000pt;}
.x3b_c00065{left:183.680000pt;}
.x4c_c00065{left:193.280000pt;}
.x10_c00065{left:201.600000pt;}
.x4b_c00065{left:203.520000pt;}
.x18_c00065{left:220.800000pt;}
.x5_c00065{left:230.400000pt;}
.x26_c00065{left:239.360000pt;}
.x1e_c00065{left:249.600000pt;}
.x6_c00065{left:259.840000pt;}
.x40_c00065{left:268.800000pt;}
.x3c_c00065{left:270.080000pt;}
.x19_c00065{left:278.400000pt;}
.x7_c00065{left:287.360000pt;}
.x27_c00065{left:297.600000pt;}
.x11_c00065{left:306.560000pt;}
.x50_c00065{left:307.840000pt;}
.x1f_c00065{left:316.800000pt;}
.x45_c00065{left:326.400000pt;}
.x2b_c00065{left:336.000000pt;}
.x12_c00065{left:344.320000pt;}
.x3d_c00065{left:346.240000pt;}
.x8_c00065{left:355.200000pt;}
.x2c_c00065{left:364.160000pt;}
.x9_c00065{left:373.120000pt;}
.x23_c00065{left:374.400000pt;}
.x41_c00065{left:383.360000pt;}
.x1a_c00065{left:392.320000pt;}
.x24_c00065{left:393.600000pt;}
.x13_c00065{left:402.560000pt;}
.x39_c00065{left:412.160000pt;}
.x32_c00065{left:422.400000pt;}
.x3e_c00065{left:432.000000pt;}
.xa_c00065{left:440.320000pt;}
.x28_c00065{left:441.600000pt;}
.x3f_c00065{left:460.800000pt;}
.x2e_c00065{left:469.120000pt;}
.xb_c00065{left:480.000000pt;}
.x34_c00065{left:488.960000pt;}
.x20_c00065{left:497.280000pt;}
.x14_c00065{left:499.200000pt;}
.x33_c00065{left:508.160000pt;}
.x2f_c00065{left:517.120000pt;}
.x35_c00065{left:518.400000pt;}
.xc_c00065{left:527.360000pt;}
.x48_c00065{left:536.320000pt;}
.x2d_c00065{left:545.920000pt;}
.x4e_c00065{left:547.200000pt;}
.x15_c00065{left:556.160000pt;}
.x36_c00065{left:565.760000pt;}
.x21_c00065{left:574.720000pt;}
.x29_c00065{left:576.000000pt;}
.x42_c00065{left:585.600000pt;}
.x16_c00065{left:587.520000pt;}
.x1b_c00065{left:595.200000pt;}
.xd_c00065{left:602.880000pt;}
.x2a_c00065{left:604.800000pt;}
.x22_c00065{left:612.480000pt;}
.x46_c00065{left:613.760000pt;}
.x30_c00065{left:624.000000pt;}
.x25_c00065{left:632.320000pt;}
.x49_c00065{left:633.600000pt;}
.x37_c00065{left:642.560000pt;}
.x3a_c00065{left:652.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_00d45cbc527f33228d876ac4.woff2')format("woff");}.ff1_c00066{font-family:ff1_c00066;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m41_c00066{transform:matrix(0.241225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241225,0.000000,0.000000,0.250000,0,0);}
.m39_c00066{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);}
.m4d_c00066{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);}
.m59_c00066{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);}
.m2a_c00066{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_c00066{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m2_c00066{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m31_c00066{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m50_c00066{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m43_c00066{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00066{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m48_c00066{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m47_c00066{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m0_c00066{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00066{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00066{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00066{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);}
.m52_c00066{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);}
.m45_c00066{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00066{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m25_c00066{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m16_c00066{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m9_c00066{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00066{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m30_c00066{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);}
.m35_c00066{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00066{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);}
.m56_c00066{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);}
.m21_c00066{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);}
.m1c_c00066{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m51_c00066{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);}
.m12_c00066{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m17_c00066{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);}
.m3b_c00066{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);}
.m3d_c00066{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);}
.m49_c00066{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.mc_c00066{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00066{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);}
.m4a_c00066{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m55_c00066{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);}
.m10_c00066{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m11_c00066{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);}
.m19_c00066{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);}
.m42_c00066{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m57_c00066{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m27_c00066{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00066{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m44_c00066{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);}
.m15_c00066{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m58_c00066{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00066{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);}
.m34_c00066{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.mb_c00066{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.ma_c00066{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m3_c00066{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m8_c00066{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);}
.m29_c00066{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m5_c00066{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00066{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m1_c00066{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m53_c00066{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.md_c00066{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00066{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m23_c00066{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);}
.m40_c00066{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);}
.m14_c00066{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m7_c00066{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m28_c00066{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m6_c00066{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);}
.m13_c00066{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m4_c00066{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00066{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);}
.m1d_c00066{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.me_c00066{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m46_c00066{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);}
.m4e_c00066{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m24_c00066{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m18_c00066{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);}
.m38_c00066{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);}
.m54_c00066{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m33_c00066{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m20_c00066{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m22_c00066{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00066{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.mf_c00066{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m37_c00066{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00066{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m36_c00066{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);}
.m2e_c00066{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00066{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);}
.m2f_c00066{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00066{transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);}
.m32_c00066{transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);}
.v0_c00066{vertical-align:0.000000px;}
.ls0_c00066{letter-spacing:0.000000px;}
.sc__c00066{text-shadow:none;}
.sc0_c00066{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00066{-webkit-text-stroke:0px transparent;}
.sc0_c00066{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00066{word-spacing:0.000000px;}
.fc0_c00066{color:transparent;}
.fs5_c00066{font-size:34.560000px;}
.fs8_c00066{font-size:37.440000px;}
.fsc_c00066{font-size:40.320000px;}
.fs7_c00066{font-size:46.080000px;}
.fs3_c00066{font-size:48.960000px;}
.fs4_c00066{font-size:51.840000px;}
.fs9_c00066{font-size:54.720000px;}
.fsb_c00066{font-size:57.600000px;}
.fsa_c00066{font-size:60.480000px;}
.fs6_c00066{font-size:63.360000px;}
.fs1_c00066{font-size:66.240000px;}
.fs2_c00066{font-size:69.120000px;}
.fs0_c00066{font-size:72.000000px;}
.fsd_c00066{font-size:74.880000px;}
.fse_c00066{font-size:77.760000px;}
.y0_c00066{bottom:0.000000px;}
.y5c_c00066{bottom:41.760000px;}
.y5e_c00066{bottom:43.920000px;}
.y5d_c00066{bottom:44.640000px;}
.y5b_c00066{bottom:45.360000px;}
.y58_c00066{bottom:83.520000px;}
.y56_c00066{bottom:84.240000px;}
.y5a_c00066{bottom:85.680000px;}
.y59_c00066{bottom:86.400000px;}
.y57_c00066{bottom:87.120000px;}
.y52_c00066{bottom:126.720000px;}
.y55_c00066{bottom:128.880000px;}
.y53_c00066{bottom:129.600000px;}
.y54_c00066{bottom:130.320000px;}
.y51_c00066{bottom:168.480000px;}
.y4f_c00066{bottom:172.080000px;}
.y50_c00066{bottom:172.800000px;}
.y4b_c00066{bottom:223.200000px;}
.y4d_c00066{bottom:224.640000px;}
.y4c_c00066{bottom:225.360000px;}
.y4e_c00066{bottom:226.080000px;}
.y4a_c00066{bottom:226.800000px;}
.y49_c00066{bottom:264.960000px;}
.y46_c00066{bottom:265.680000px;}
.y45_c00066{bottom:266.400000px;}
.y48_c00066{bottom:267.840000px;}
.y47_c00066{bottom:268.560000px;}
.y41_c00066{bottom:306.720000px;}
.y43_c00066{bottom:307.440000px;}
.y44_c00066{bottom:310.320000px;}
.y42_c00066{bottom:311.040000px;}
.y40_c00066{bottom:349.920000px;}
.y3c_c00066{bottom:351.360000px;}
.y3e_c00066{bottom:352.800000px;}
.y3f_c00066{bottom:353.520000px;}
.y3d_c00066{bottom:354.240000px;}
.y39_c00066{bottom:393.120000px;}
.y3a_c00066{bottom:393.840000px;}
.y3b_c00066{bottom:396.000000px;}
.y38_c00066{bottom:396.720000px;}
.y37_c00066{bottom:434.880000px;}
.y35_c00066{bottom:435.600000px;}
.y33_c00066{bottom:436.320000px;}
.y32_c00066{bottom:438.480000px;}
.y36_c00066{bottom:439.200000px;}
.y34_c00066{bottom:439.920000px;}
.y30_c00066{bottom:478.080000px;}
.y31_c00066{bottom:478.800000px;}
.y2f_c00066{bottom:481.680000px;}
.y2c_c00066{bottom:520.560000px;}
.y2e_c00066{bottom:521.280000px;}
.y2b_c00066{bottom:523.440000px;}
.y2d_c00066{bottom:524.160000px;}
.y27_c00066{bottom:563.040000px;}
.y29_c00066{bottom:564.480000px;}
.y2a_c00066{bottom:565.920000px;}
.y26_c00066{bottom:566.640000px;}
.y28_c00066{bottom:567.360000px;}
.y23_c00066{bottom:606.240000px;}
.y24_c00066{bottom:606.960000px;}
.y25_c00066{bottom:609.120000px;}
.y22_c00066{bottom:609.840000px;}
.y21_c00066{bottom:649.440000px;}
.y20_c00066{bottom:652.320000px;}
.y1e_c00066{bottom:691.920000px;}
.y1c_c00066{bottom:694.080000px;}
.y1d_c00066{bottom:694.800000px;}
.y1f_c00066{bottom:695.520000px;}
.y1a_c00066{bottom:735.120000px;}
.y19_c00066{bottom:736.560000px;}
.y18_c00066{bottom:737.280000px;}
.y1b_c00066{bottom:738.000000px;}
.y16_c00066{bottom:779.040000px;}
.y15_c00066{bottom:779.760000px;}
.y17_c00066{bottom:780.480000px;}
.y10_c00066{bottom:819.360000px;}
.y13_c00066{bottom:820.800000px;}
.y11_c00066{bottom:822.240000px;}
.y12_c00066{bottom:822.960000px;}
.y14_c00066{bottom:823.680000px;}
.yf_c00066{bottom:862.560000px;}
.yd_c00066{bottom:865.440000px;}
.ye_c00066{bottom:866.160000px;}
.yc_c00066{bottom:918.000000px;}
.y6_c00066{bottom:957.600000px;}
.y7_c00066{bottom:958.320000px;}
.ya_c00066{bottom:959.040000px;}
.y8_c00066{bottom:961.200000px;}
.y9_c00066{bottom:961.920000px;}
.yb_c00066{bottom:962.640000px;}
.y2_c00066{bottom:999.360000px;}
.y3_c00066{bottom:1000.800000px;}
.y4_c00066{bottom:1004.400000px;}
.y5_c00066{bottom:1005.120000px;}
.y1_c00066{bottom:1075.680000px;}
.h7_c00066{height:31.100625px;}
.ha_c00066{height:33.692344px;}
.he_c00066{height:36.284062px;}
.h9_c00066{height:41.467500px;}
.h5_c00066{height:44.059219px;}
.h6_c00066{height:46.650937px;}
.hb_c00066{height:49.242656px;}
.hd_c00066{height:51.834375px;}
.hc_c00066{height:54.426094px;}
.h8_c00066{height:57.017812px;}
.h3_c00066{height:59.609531px;}
.h4_c00066{height:62.201250px;}
.h2_c00066{height:64.792969px;}
.hf_c00066{height:67.384687px;}
.h10_c00066{height:69.976406px;}
.h0_c00066{height:1153.440000px;}
.h1_c00066{height:1153.500000px;}
.w0_c00066{width:810.000000px;}
.x0_c00066{left:0.000000px;}
.x2b_c00066{left:89.280000px;}
.x2_c00066{left:90.720000px;}
.x10_c00066{left:92.880000px;}
.x35_c00066{left:123.120000px;}
.x2c_c00066{left:124.560000px;}
.x1f_c00066{left:134.640000px;}
.x2d_c00066{left:144.720000px;}
.x3_c00066{left:156.240000px;}
.x43_c00066{left:167.040000px;}
.x33_c00066{left:175.680000px;}
.xa_c00066{left:177.840000px;}
.x4f_c00066{left:187.920000px;}
.x11_c00066{left:198.720000px;}
.x26_c00066{left:209.520000px;}
.x1c_c00066{left:221.040000px;}
.xb_c00066{left:231.840000px;}
.x4a_c00066{left:240.480000px;}
.x27_c00066{left:241.920000px;}
.x39_c00066{left:252.720000px;}
.x20_c00066{left:263.520000px;}
.x4_c00066{left:274.320000px;}
.x3c_c00066{left:285.840000px;}
.x21_c00066{left:295.920000px;}
.x18_c00066{left:306.720000px;}
.x2e_c00066{left:316.800000px;}
.x5_c00066{left:318.240000px;}
.x44_c00066{left:328.320000px;}
.x1d_c00066{left:339.120000px;}
.x2f_c00066{left:349.920000px;}
.x3d_c00066{left:358.560000px;}
.x19_c00066{left:360.000000px;}
.xc_c00066{left:361.440000px;}
.x6_c00066{left:371.520000px;}
.x3a_c00066{left:381.600000px;}
.x12_c00066{left:393.120000px;}
.x30_c00066{left:403.200000px;}
.x46_c00066{left:414.720000px;}
.x13_c00066{left:424.800000px;}
.x47_c00066{left:435.600000px;}
.x36_c00066{left:444.960000px;}
.x34_c00066{left:447.120000px;}
.x4b_c00066{left:457.200000px;}
.x22_c00066{left:467.280000px;}
.xd_c00066{left:469.440000px;}
.x1a_c00066{left:477.360000px;}
.x45_c00066{left:479.520000px;}
.xe_c00066{left:490.320000px;}
.x1e_c00066{left:499.680000px;}
.x37_c00066{left:511.200000px;}
.x28_c00066{left:522.000000px;}
.x23_c00066{left:532.080000px;}
.x7_c00066{left:533.520000px;}
.x32_c00066{left:543.600000px;}
.x48_c00066{left:552.960000px;}
.x8_c00066{left:555.120000px;}
.x3b_c00066{left:564.480000px;}
.x4c_c00066{left:574.560000px;}
.x24_c00066{left:576.720000px;}
.x14_c00066{left:586.800000px;}
.x40_c00066{left:597.600000px;}
.x29_c00066{left:608.400000px;}
.x1b_c00066{left:619.920000px;}
.x49_c00066{left:629.280000px;}
.x15_c00066{left:630.720000px;}
.x2a_c00066{left:640.800000px;}
.x4e_c00066{left:650.160000px;}
.x16_c00066{left:651.600000px;}
.x31_c00066{left:660.960000px;}
.x4d_c00066{left:672.480000px;}
.x38_c00066{left:673.920000px;}
.x41_c00066{left:683.280000px;}
.x9_c00066{left:684.720000px;}
.x25_c00066{left:694.080000px;}
.x3e_c00066{left:695.520000px;}
.xf_c00066{left:705.600000px;}
.x42_c00066{left:715.680000px;}
.x17_c00066{left:717.120000px;}
.x1_c00066{left:725.760000px;}
.x3f_c00066{left:727.920000px;}
@media print{
.v0_c00066{vertical-align:0.000000pt;}
.ls0_c00066{letter-spacing:0.000000pt;}
.ws0_c00066{word-spacing:0.000000pt;}
.fs5_c00066{font-size:30.720000pt;}
.fs8_c00066{font-size:33.280000pt;}
.fsc_c00066{font-size:35.840000pt;}
.fs7_c00066{font-size:40.960000pt;}
.fs3_c00066{font-size:43.520000pt;}
.fs4_c00066{font-size:46.080000pt;}
.fs9_c00066{font-size:48.640000pt;}
.fsb_c00066{font-size:51.200000pt;}
.fsa_c00066{font-size:53.760000pt;}
.fs6_c00066{font-size:56.320000pt;}
.fs1_c00066{font-size:58.880000pt;}
.fs2_c00066{font-size:61.440000pt;}
.fs0_c00066{font-size:64.000000pt;}
.fsd_c00066{font-size:66.560000pt;}
.fse_c00066{font-size:69.120000pt;}
.y0_c00066{bottom:0.000000pt;}
.y5c_c00066{bottom:37.120000pt;}
.y5e_c00066{bottom:39.040000pt;}
.y5d_c00066{bottom:39.680000pt;}
.y5b_c00066{bottom:40.320000pt;}
.y58_c00066{bottom:74.240000pt;}
.y56_c00066{bottom:74.880000pt;}
.y5a_c00066{bottom:76.160000pt;}
.y59_c00066{bottom:76.800000pt;}
.y57_c00066{bottom:77.440000pt;}
.y52_c00066{bottom:112.640000pt;}
.y55_c00066{bottom:114.560000pt;}
.y53_c00066{bottom:115.200000pt;}
.y54_c00066{bottom:115.840000pt;}
.y51_c00066{bottom:149.760000pt;}
.y4f_c00066{bottom:152.960000pt;}
.y50_c00066{bottom:153.600000pt;}
.y4b_c00066{bottom:198.400000pt;}
.y4d_c00066{bottom:199.680000pt;}
.y4c_c00066{bottom:200.320000pt;}
.y4e_c00066{bottom:200.960000pt;}
.y4a_c00066{bottom:201.600000pt;}
.y49_c00066{bottom:235.520000pt;}
.y46_c00066{bottom:236.160000pt;}
.y45_c00066{bottom:236.800000pt;}
.y48_c00066{bottom:238.080000pt;}
.y47_c00066{bottom:238.720000pt;}
.y41_c00066{bottom:272.640000pt;}
.y43_c00066{bottom:273.280000pt;}
.y44_c00066{bottom:275.840000pt;}
.y42_c00066{bottom:276.480000pt;}
.y40_c00066{bottom:311.040000pt;}
.y3c_c00066{bottom:312.320000pt;}
.y3e_c00066{bottom:313.600000pt;}
.y3f_c00066{bottom:314.240000pt;}
.y3d_c00066{bottom:314.880000pt;}
.y39_c00066{bottom:349.440000pt;}
.y3a_c00066{bottom:350.080000pt;}
.y3b_c00066{bottom:352.000000pt;}
.y38_c00066{bottom:352.640000pt;}
.y37_c00066{bottom:386.560000pt;}
.y35_c00066{bottom:387.200000pt;}
.y33_c00066{bottom:387.840000pt;}
.y32_c00066{bottom:389.760000pt;}
.y36_c00066{bottom:390.400000pt;}
.y34_c00066{bottom:391.040000pt;}
.y30_c00066{bottom:424.960000pt;}
.y31_c00066{bottom:425.600000pt;}
.y2f_c00066{bottom:428.160000pt;}
.y2c_c00066{bottom:462.720000pt;}
.y2e_c00066{bottom:463.360000pt;}
.y2b_c00066{bottom:465.280000pt;}
.y2d_c00066{bottom:465.920000pt;}
.y27_c00066{bottom:500.480000pt;}
.y29_c00066{bottom:501.760000pt;}
.y2a_c00066{bottom:503.040000pt;}
.y26_c00066{bottom:503.680000pt;}
.y28_c00066{bottom:504.320000pt;}
.y23_c00066{bottom:538.880000pt;}
.y24_c00066{bottom:539.520000pt;}
.y25_c00066{bottom:541.440000pt;}
.y22_c00066{bottom:542.080000pt;}
.y21_c00066{bottom:577.280000pt;}
.y20_c00066{bottom:579.840000pt;}
.y1e_c00066{bottom:615.040000pt;}
.y1c_c00066{bottom:616.960000pt;}
.y1d_c00066{bottom:617.600000pt;}
.y1f_c00066{bottom:618.240000pt;}
.y1a_c00066{bottom:653.440000pt;}
.y19_c00066{bottom:654.720000pt;}
.y18_c00066{bottom:655.360000pt;}
.y1b_c00066{bottom:656.000000pt;}
.y16_c00066{bottom:692.480000pt;}
.y15_c00066{bottom:693.120000pt;}
.y17_c00066{bottom:693.760000pt;}
.y10_c00066{bottom:728.320000pt;}
.y13_c00066{bottom:729.600000pt;}
.y11_c00066{bottom:730.880000pt;}
.y12_c00066{bottom:731.520000pt;}
.y14_c00066{bottom:732.160000pt;}
.yf_c00066{bottom:766.720000pt;}
.yd_c00066{bottom:769.280000pt;}
.ye_c00066{bottom:769.920000pt;}
.yc_c00066{bottom:816.000000pt;}
.y6_c00066{bottom:851.200000pt;}
.y7_c00066{bottom:851.840000pt;}
.ya_c00066{bottom:852.480000pt;}
.y8_c00066{bottom:854.400000pt;}
.y9_c00066{bottom:855.040000pt;}
.yb_c00066{bottom:855.680000pt;}
.y2_c00066{bottom:888.320000pt;}
.y3_c00066{bottom:889.600000pt;}
.y4_c00066{bottom:892.800000pt;}
.y5_c00066{bottom:893.440000pt;}
.y1_c00066{bottom:956.160000pt;}
.h7_c00066{height:27.645000pt;}
.ha_c00066{height:29.948750pt;}
.he_c00066{height:32.252500pt;}
.h9_c00066{height:36.860000pt;}
.h5_c00066{height:39.163750pt;}
.h6_c00066{height:41.467500pt;}
.hb_c00066{height:43.771250pt;}
.hd_c00066{height:46.075000pt;}
.hc_c00066{height:48.378750pt;}
.h8_c00066{height:50.682500pt;}
.h3_c00066{height:52.986250pt;}
.h4_c00066{height:55.290000pt;}
.h2_c00066{height:57.593750pt;}
.hf_c00066{height:59.897500pt;}
.h10_c00066{height:62.201250pt;}
.h0_c00066{height:1025.280000pt;}
.h1_c00066{height:1025.333333pt;}
.w0_c00066{width:720.000000pt;}
.x0_c00066{left:0.000000pt;}
.x2b_c00066{left:79.360000pt;}
.x2_c00066{left:80.640000pt;}
.x10_c00066{left:82.560000pt;}
.x35_c00066{left:109.440000pt;}
.x2c_c00066{left:110.720000pt;}
.x1f_c00066{left:119.680000pt;}
.x2d_c00066{left:128.640000pt;}
.x3_c00066{left:138.880000pt;}
.x43_c00066{left:148.480000pt;}
.x33_c00066{left:156.160000pt;}
.xa_c00066{left:158.080000pt;}
.x4f_c00066{left:167.040000pt;}
.x11_c00066{left:176.640000pt;}
.x26_c00066{left:186.240000pt;}
.x1c_c00066{left:196.480000pt;}
.xb_c00066{left:206.080000pt;}
.x4a_c00066{left:213.760000pt;}
.x27_c00066{left:215.040000pt;}
.x39_c00066{left:224.640000pt;}
.x20_c00066{left:234.240000pt;}
.x4_c00066{left:243.840000pt;}
.x3c_c00066{left:254.080000pt;}
.x21_c00066{left:263.040000pt;}
.x18_c00066{left:272.640000pt;}
.x2e_c00066{left:281.600000pt;}
.x5_c00066{left:282.880000pt;}
.x44_c00066{left:291.840000pt;}
.x1d_c00066{left:301.440000pt;}
.x2f_c00066{left:311.040000pt;}
.x3d_c00066{left:318.720000pt;}
.x19_c00066{left:320.000000pt;}
.xc_c00066{left:321.280000pt;}
.x6_c00066{left:330.240000pt;}
.x3a_c00066{left:339.200000pt;}
.x12_c00066{left:349.440000pt;}
.x30_c00066{left:358.400000pt;}
.x46_c00066{left:368.640000pt;}
.x13_c00066{left:377.600000pt;}
.x47_c00066{left:387.200000pt;}
.x36_c00066{left:395.520000pt;}
.x34_c00066{left:397.440000pt;}
.x4b_c00066{left:406.400000pt;}
.x22_c00066{left:415.360000pt;}
.xd_c00066{left:417.280000pt;}
.x1a_c00066{left:424.320000pt;}
.x45_c00066{left:426.240000pt;}
.xe_c00066{left:435.840000pt;}
.x1e_c00066{left:444.160000pt;}
.x37_c00066{left:454.400000pt;}
.x28_c00066{left:464.000000pt;}
.x23_c00066{left:472.960000pt;}
.x7_c00066{left:474.240000pt;}
.x32_c00066{left:483.200000pt;}
.x48_c00066{left:491.520000pt;}
.x8_c00066{left:493.440000pt;}
.x3b_c00066{left:501.760000pt;}
.x4c_c00066{left:510.720000pt;}
.x24_c00066{left:512.640000pt;}
.x14_c00066{left:521.600000pt;}
.x40_c00066{left:531.200000pt;}
.x29_c00066{left:540.800000pt;}
.x1b_c00066{left:551.040000pt;}
.x49_c00066{left:559.360000pt;}
.x15_c00066{left:560.640000pt;}
.x2a_c00066{left:569.600000pt;}
.x4e_c00066{left:577.920000pt;}
.x16_c00066{left:579.200000pt;}
.x31_c00066{left:587.520000pt;}
.x4d_c00066{left:597.760000pt;}
.x38_c00066{left:599.040000pt;}
.x41_c00066{left:607.360000pt;}
.x9_c00066{left:608.640000pt;}
.x25_c00066{left:616.960000pt;}
.x3e_c00066{left:618.240000pt;}
.xf_c00066{left:627.200000pt;}
.x42_c00066{left:636.160000pt;}
.x17_c00066{left:637.440000pt;}
.x1_c00066{left:645.120000pt;}
.x3f_c00066{left:647.040000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8933a313b8e968732d04a19b.woff2')format("woff");}.ff1_c00067{font-family:ff1_c00067;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m54_c00067{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m17_c00067{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);}
.m4e_c00067{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m53_c00067{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00067{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m41_c00067{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m43_c00067{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00067{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mb_c00067{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00067{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m0_c00067{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00067{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);}
.m42_c00067{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m3_c00067{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m23_c00067{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m2_c00067{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_c00067{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m19_c00067{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m47_c00067{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00067{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00067{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);}
.m45_c00067{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m13_c00067{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_c00067{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m29_c00067{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);}
.m8_c00067{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m1_c00067{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);}
.m22_c00067{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);}
.m37_c00067{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);}
.m26_c00067{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m6_c00067{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00067{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m20_c00067{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00067{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);}
.m32_c00067{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00067{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);}
.m28_c00067{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m18_c00067{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00067{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00067{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m4_c00067{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);}
.m5_c00067{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00067{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m49_c00067{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m9_c00067{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);}
.m16_c00067{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m38_c00067{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.mc_c00067{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);}
.m7_c00067{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m33_c00067{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m44_c00067{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);}
.mf_c00067{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m52_c00067{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m15_c00067{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m12_c00067{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m51_c00067{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00067{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);}
.m10_c00067{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);}
.m34_c00067{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00067{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);}
.me_c00067{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m21_c00067{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);}
.m1d_c00067{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.ma_c00067{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m50_c00067{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);}
.m46_c00067{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m36_c00067{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m48_c00067{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);}
.m2f_c00067{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m30_c00067{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);}
.m31_c00067{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00067{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00067{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m40_c00067{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m25_c00067{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00067{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m27_c00067{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00067{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m39_c00067{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);}
.m24_c00067{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);}
.m3f_c00067{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m14_c00067{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.md_c00067{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m35_c00067{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m55_c00067{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00067{transform:matrix(0.650000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.650000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.650000,0.000000,0.000000,0.250000,0,0);}
.v0_c00067{vertical-align:0.000000px;}
.ls0_c00067{letter-spacing:0.000000px;}
.sc__c00067{text-shadow:none;}
.sc0_c00067{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00067{-webkit-text-stroke:0px transparent;}
.sc0_c00067{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00067{word-spacing:0.000000px;}
.ws0_c00067{word-spacing:6.812160px;}
.fc0_c00067{color:transparent;}
.fs7_c00067{font-size:34.560000px;}
.fs5_c00067{font-size:37.440000px;}
.fsd_c00067{font-size:40.320000px;}
.fs3_c00067{font-size:43.200000px;}
.fs9_c00067{font-size:46.080000px;}
.fs4_c00067{font-size:48.960000px;}
.fs1_c00067{font-size:51.840000px;}
.fsa_c00067{font-size:54.720000px;}
.fs8_c00067{font-size:57.600000px;}
.fs2_c00067{font-size:60.480000px;}
.fs6_c00067{font-size:63.360000px;}
.fsb_c00067{font-size:66.240000px;}
.fs0_c00067{font-size:69.120000px;}
.fsc_c00067{font-size:72.000000px;}
.y0_c00067{bottom:0.000000px;}
.y66_c00067{bottom:32.400000px;}
.y64_c00067{bottom:33.120000px;}
.y65_c00067{bottom:35.280000px;}
.y63_c00067{bottom:36.000000px;}
.y62_c00067{bottom:36.720000px;}
.y5f_c00067{bottom:75.600000px;}
.y61_c00067{bottom:77.040000px;}
.y60_c00067{bottom:77.760000px;}
.y5e_c00067{bottom:78.480000px;}
.y5d_c00067{bottom:79.920000px;}
.y5a_c00067{bottom:117.360000px;}
.y59_c00067{bottom:118.080000px;}
.y5c_c00067{bottom:119.520000px;}
.y5b_c00067{bottom:120.240000px;}
.y58_c00067{bottom:120.960000px;}
.y57_c00067{bottom:121.680000px;}
.y56_c00067{bottom:159.840000px;}
.y54_c00067{bottom:162.720000px;}
.y53_c00067{bottom:163.440000px;}
.y55_c00067{bottom:164.160000px;}
.y52_c00067{bottom:164.880000px;}
.y51_c00067{bottom:201.600000px;}
.y50_c00067{bottom:203.040000px;}
.y4f_c00067{bottom:205.200000px;}
.y4e_c00067{bottom:205.920000px;}
.y4d_c00067{bottom:206.640000px;}
.y49_c00067{bottom:245.520000px;}
.y4c_c00067{bottom:247.680000px;}
.y4a_c00067{bottom:248.400000px;}
.y4b_c00067{bottom:249.120000px;}
.y48_c00067{bottom:287.280000px;}
.y47_c00067{bottom:290.160000px;}
.y46_c00067{bottom:290.880000px;}
.y45_c00067{bottom:291.600000px;}
.y43_c00067{bottom:341.280000px;}
.y42_c00067{bottom:342.720000px;}
.y44_c00067{bottom:344.160000px;}
.y41_c00067{bottom:344.880000px;}
.y40_c00067{bottom:383.760000px;}
.y3f_c00067{bottom:386.640000px;}
.y3e_c00067{bottom:387.360000px;}
.y3b_c00067{bottom:426.960000px;}
.y3a_c00067{bottom:427.680000px;}
.y3d_c00067{bottom:429.120000px;}
.y3c_c00067{bottom:429.840000px;}
.y39_c00067{bottom:468.720000px;}
.y38_c00067{bottom:469.440000px;}
.y37_c00067{bottom:470.160000px;}
.y36_c00067{bottom:472.320000px;}
.y35_c00067{bottom:473.040000px;}
.y31_c00067{bottom:511.920000px;}
.y34_c00067{bottom:512.640000px;}
.y30_c00067{bottom:513.360000px;}
.y32_c00067{bottom:514.800000px;}
.y33_c00067{bottom:515.520000px;}
.y2f_c00067{bottom:555.120000px;}
.y2d_c00067{bottom:557.280000px;}
.y2c_c00067{bottom:558.000000px;}
.y2e_c00067{bottom:558.720000px;}
.y2b_c00067{bottom:598.320000px;}
.y2a_c00067{bottom:599.760000px;}
.y29_c00067{bottom:600.480000px;}
.y26_c00067{bottom:650.880000px;}
.y27_c00067{bottom:653.040000px;}
.y28_c00067{bottom:653.760000px;}
.y24_c00067{bottom:692.640000px;}
.y23_c00067{bottom:693.360000px;}
.y22_c00067{bottom:695.520000px;}
.y21_c00067{bottom:696.240000px;}
.y25_c00067{bottom:696.960000px;}
.y1f_c00067{bottom:735.840000px;}
.y1e_c00067{bottom:738.000000px;}
.y1d_c00067{bottom:738.720000px;}
.y20_c00067{bottom:739.440000px;}
.y19_c00067{bottom:777.600000px;}
.y1c_c00067{bottom:778.320000px;}
.y1a_c00067{bottom:780.480000px;}
.y1b_c00067{bottom:781.200000px;}
.y14_c00067{bottom:820.800000px;}
.y15_c00067{bottom:821.520000px;}
.y17_c00067{bottom:822.960000px;}
.y16_c00067{bottom:823.680000px;}
.y18_c00067{bottom:824.400000px;}
.y13_c00067{bottom:863.280000px;}
.y10_c00067{bottom:866.160000px;}
.y12_c00067{bottom:866.880000px;}
.y11_c00067{bottom:867.600000px;}
.yd_c00067{bottom:905.040000px;}
.yf_c00067{bottom:905.760000px;}
.ya_c00067{bottom:906.480000px;}
.ye_c00067{bottom:907.200000px;}
.yb_c00067{bottom:908.640000px;}
.yc_c00067{bottom:909.360000px;}
.y7_c00067{bottom:948.240000px;}
.y6_c00067{bottom:951.120000px;}
.y8_c00067{bottom:951.840000px;}
.y9_c00067{bottom:952.560000px;}
.y2_c00067{bottom:993.600000px;}
.y3_c00067{bottom:994.320000px;}
.y4_c00067{bottom:995.040000px;}
.y5_c00067{bottom:995.760000px;}
.y1_c00067{bottom:1071.360000px;}
.h9_c00067{height:31.100625px;}
.h7_c00067{height:33.692344px;}
.hf_c00067{height:36.284062px;}
.h5_c00067{height:38.875781px;}
.hb_c00067{height:41.467500px;}
.h6_c00067{height:44.059219px;}
.h3_c00067{height:46.650937px;}
.hc_c00067{height:49.242656px;}
.ha_c00067{height:51.834375px;}
.h4_c00067{height:54.426094px;}
.h8_c00067{height:57.017812px;}
.hd_c00067{height:59.609531px;}
.h2_c00067{height:62.201250px;}
.he_c00067{height:64.792969px;}
.h1_c00067{height:1149.000000px;}
.h0_c00067{height:1149.120000px;}
.w1_c00067{width:805.500000px;}
.w0_c00067{width:805.680000px;}
.x0_c00067{left:0.000000px;}
.x2_c00067{left:88.560000px;}
.x19_c00067{left:90.000000px;}
.x1a_c00067{left:120.960000px;}
.xc_c00067{left:123.120000px;}
.x34_c00067{left:132.480000px;}
.x3_c00067{left:143.280000px;}
.x31_c00067{left:153.360000px;}
.x2c_c00067{left:164.160000px;}
.x4a_c00067{left:174.240000px;}
.x4_c00067{left:175.680000px;}
.x25_c00067{left:186.480000px;}
.x13_c00067{left:196.560000px;}
.x43_c00067{left:207.360000px;}
.x35_c00067{left:218.160000px;}
.x14_c00067{left:229.680000px;}
.x44_c00067{left:238.320000px;}
.xd_c00067{left:239.760000px;}
.x26_c00067{left:250.560000px;}
.x1b_c00067{left:252.000000px;}
.x4b_c00067{left:259.200000px;}
.x15_c00067{left:262.080000px;}
.x1c_c00067{left:271.440000px;}
.x51_c00067{left:281.520000px;}
.x32_c00067{left:282.960000px;}
.x4f_c00067{left:293.040000px;}
.x5_c00067{left:304.560000px;}
.x21_c00067{left:315.360000px;}
.x45_c00067{left:324.720000px;}
.x1d_c00067{left:326.880000px;}
.x2d_c00067{left:336.240000px;}
.x6_c00067{left:337.680000px;}
.x3e_c00067{left:347.760000px;}
.x37_c00067{left:349.920000px;}
.xe_c00067{left:358.560000px;}
.x4c_c00067{left:367.920000px;}
.x27_c00067{left:380.160000px;}
.x3b_c00067{left:390.960000px;}
.x4d_c00067{left:399.600000px;}
.x7_c00067{left:402.480000px;}
.x3f_c00067{left:412.560000px;}
.x1e_c00067{left:422.640000px;}
.x52_c00067{left:442.800000px;}
.xf_c00067{left:444.960000px;}
.x28_c00067{left:455.040000px;}
.x3c_c00067{left:465.120000px;}
.x1f_c00067{left:466.560000px;}
.x48_c00067{left:475.920000px;}
.x8_c00067{left:477.360000px;}
.x40_c00067{left:487.440000px;}
.x29_c00067{left:498.240000px;}
.x38_c00067{left:507.600000px;}
.x9_c00067{left:509.760000px;}
.x22_c00067{left:519.120000px;}
.x4e_c00067{left:529.920000px;}
.x10_c00067{left:531.360000px;}
.x2e_c00067{left:541.440000px;}
.x46_c00067{left:550.800000px;}
.x16_c00067{left:552.240000px;}
.x33_c00067{left:561.600000px;}
.xa_c00067{left:563.760000px;}
.x53_c00067{left:573.120000px;}
.x11_c00067{left:574.560000px;}
.x50_c00067{left:581.760000px;}
.x41_c00067{left:583.920000px;}
.x2f_c00067{left:585.360000px;}
.x47_c00067{left:594.000000px;}
.x2a_c00067{left:595.440000px;}
.x49_c00067{left:605.520000px;}
.x20_c00067{left:606.960000px;}
.x39_c00067{left:616.320000px;}
.x23_c00067{left:627.840000px;}
.xb_c00067{left:639.360000px;}
.x3d_c00067{left:647.280000px;}
.x2b_c00067{left:649.440000px;}
.x17_c00067{left:659.520000px;}
.x42_c00067{left:670.320000px;}
.x30_c00067{left:682.560000px;}
.x54_c00067{left:691.920000px;}
.x24_c00067{left:693.360000px;}
.x18_c00067{left:703.440000px;}
.x3a_c00067{left:704.880000px;}
.x12_c00067{left:714.960000px;}
.x1_c00067{left:721.440000px;}
.x36_c00067{left:725.040000px;}
@media print{
.v0_c00067{vertical-align:0.000000pt;}
.ls0_c00067{letter-spacing:0.000000pt;}
.ws1_c00067{word-spacing:0.000000pt;}
.ws0_c00067{word-spacing:6.055253pt;}
.fs7_c00067{font-size:30.720000pt;}
.fs5_c00067{font-size:33.280000pt;}
.fsd_c00067{font-size:35.840000pt;}
.fs3_c00067{font-size:38.400000pt;}
.fs9_c00067{font-size:40.960000pt;}
.fs4_c00067{font-size:43.520000pt;}
.fs1_c00067{font-size:46.080000pt;}
.fsa_c00067{font-size:48.640000pt;}
.fs8_c00067{font-size:51.200000pt;}
.fs2_c00067{font-size:53.760000pt;}
.fs6_c00067{font-size:56.320000pt;}
.fsb_c00067{font-size:58.880000pt;}
.fs0_c00067{font-size:61.440000pt;}
.fsc_c00067{font-size:64.000000pt;}
.y0_c00067{bottom:0.000000pt;}
.y66_c00067{bottom:28.800000pt;}
.y64_c00067{bottom:29.440000pt;}
.y65_c00067{bottom:31.360000pt;}
.y63_c00067{bottom:32.000000pt;}
.y62_c00067{bottom:32.640000pt;}
.y5f_c00067{bottom:67.200000pt;}
.y61_c00067{bottom:68.480000pt;}
.y60_c00067{bottom:69.120000pt;}
.y5e_c00067{bottom:69.760000pt;}
.y5d_c00067{bottom:71.040000pt;}
.y5a_c00067{bottom:104.320000pt;}
.y59_c00067{bottom:104.960000pt;}
.y5c_c00067{bottom:106.240000pt;}
.y5b_c00067{bottom:106.880000pt;}
.y58_c00067{bottom:107.520000pt;}
.y57_c00067{bottom:108.160000pt;}
.y56_c00067{bottom:142.080000pt;}
.y54_c00067{bottom:144.640000pt;}
.y53_c00067{bottom:145.280000pt;}
.y55_c00067{bottom:145.920000pt;}
.y52_c00067{bottom:146.560000pt;}
.y51_c00067{bottom:179.200000pt;}
.y50_c00067{bottom:180.480000pt;}
.y4f_c00067{bottom:182.400000pt;}
.y4e_c00067{bottom:183.040000pt;}
.y4d_c00067{bottom:183.680000pt;}
.y49_c00067{bottom:218.240000pt;}
.y4c_c00067{bottom:220.160000pt;}
.y4a_c00067{bottom:220.800000pt;}
.y4b_c00067{bottom:221.440000pt;}
.y48_c00067{bottom:255.360000pt;}
.y47_c00067{bottom:257.920000pt;}
.y46_c00067{bottom:258.560000pt;}
.y45_c00067{bottom:259.200000pt;}
.y43_c00067{bottom:303.360000pt;}
.y42_c00067{bottom:304.640000pt;}
.y44_c00067{bottom:305.920000pt;}
.y41_c00067{bottom:306.560000pt;}
.y40_c00067{bottom:341.120000pt;}
.y3f_c00067{bottom:343.680000pt;}
.y3e_c00067{bottom:344.320000pt;}
.y3b_c00067{bottom:379.520000pt;}
.y3a_c00067{bottom:380.160000pt;}
.y3d_c00067{bottom:381.440000pt;}
.y3c_c00067{bottom:382.080000pt;}
.y39_c00067{bottom:416.640000pt;}
.y38_c00067{bottom:417.280000pt;}
.y37_c00067{bottom:417.920000pt;}
.y36_c00067{bottom:419.840000pt;}
.y35_c00067{bottom:420.480000pt;}
.y31_c00067{bottom:455.040000pt;}
.y34_c00067{bottom:455.680000pt;}
.y30_c00067{bottom:456.320000pt;}
.y32_c00067{bottom:457.600000pt;}
.y33_c00067{bottom:458.240000pt;}
.y2f_c00067{bottom:493.440000pt;}
.y2d_c00067{bottom:495.360000pt;}
.y2c_c00067{bottom:496.000000pt;}
.y2e_c00067{bottom:496.640000pt;}
.y2b_c00067{bottom:531.840000pt;}
.y2a_c00067{bottom:533.120000pt;}
.y29_c00067{bottom:533.760000pt;}
.y26_c00067{bottom:578.560000pt;}
.y27_c00067{bottom:580.480000pt;}
.y28_c00067{bottom:581.120000pt;}
.y24_c00067{bottom:615.680000pt;}
.y23_c00067{bottom:616.320000pt;}
.y22_c00067{bottom:618.240000pt;}
.y21_c00067{bottom:618.880000pt;}
.y25_c00067{bottom:619.520000pt;}
.y1f_c00067{bottom:654.080000pt;}
.y1e_c00067{bottom:656.000000pt;}
.y1d_c00067{bottom:656.640000pt;}
.y20_c00067{bottom:657.280000pt;}
.y19_c00067{bottom:691.200000pt;}
.y1c_c00067{bottom:691.840000pt;}
.y1a_c00067{bottom:693.760000pt;}
.y1b_c00067{bottom:694.400000pt;}
.y14_c00067{bottom:729.600000pt;}
.y15_c00067{bottom:730.240000pt;}
.y17_c00067{bottom:731.520000pt;}
.y16_c00067{bottom:732.160000pt;}
.y18_c00067{bottom:732.800000pt;}
.y13_c00067{bottom:767.360000pt;}
.y10_c00067{bottom:769.920000pt;}
.y12_c00067{bottom:770.560000pt;}
.y11_c00067{bottom:771.200000pt;}
.yd_c00067{bottom:804.480000pt;}
.yf_c00067{bottom:805.120000pt;}
.ya_c00067{bottom:805.760000pt;}
.ye_c00067{bottom:806.400000pt;}
.yb_c00067{bottom:807.680000pt;}
.yc_c00067{bottom:808.320000pt;}
.y7_c00067{bottom:842.880000pt;}
.y6_c00067{bottom:845.440000pt;}
.y8_c00067{bottom:846.080000pt;}
.y9_c00067{bottom:846.720000pt;}
.y2_c00067{bottom:883.200000pt;}
.y3_c00067{bottom:883.840000pt;}
.y4_c00067{bottom:884.480000pt;}
.y5_c00067{bottom:885.120000pt;}
.y1_c00067{bottom:952.320000pt;}
.h9_c00067{height:27.645000pt;}
.h7_c00067{height:29.948750pt;}
.hf_c00067{height:32.252500pt;}
.h5_c00067{height:34.556250pt;}
.hb_c00067{height:36.860000pt;}
.h6_c00067{height:39.163750pt;}
.h3_c00067{height:41.467500pt;}
.hc_c00067{height:43.771250pt;}
.ha_c00067{height:46.075000pt;}
.h4_c00067{height:48.378750pt;}
.h8_c00067{height:50.682500pt;}
.hd_c00067{height:52.986250pt;}
.h2_c00067{height:55.290000pt;}
.he_c00067{height:57.593750pt;}
.h1_c00067{height:1021.333333pt;}
.h0_c00067{height:1021.440000pt;}
.w1_c00067{width:716.000000pt;}
.w0_c00067{width:716.160000pt;}
.x0_c00067{left:0.000000pt;}
.x2_c00067{left:78.720000pt;}
.x19_c00067{left:80.000000pt;}
.x1a_c00067{left:107.520000pt;}
.xc_c00067{left:109.440000pt;}
.x34_c00067{left:117.760000pt;}
.x3_c00067{left:127.360000pt;}
.x31_c00067{left:136.320000pt;}
.x2c_c00067{left:145.920000pt;}
.x4a_c00067{left:154.880000pt;}
.x4_c00067{left:156.160000pt;}
.x25_c00067{left:165.760000pt;}
.x13_c00067{left:174.720000pt;}
.x43_c00067{left:184.320000pt;}
.x35_c00067{left:193.920000pt;}
.x14_c00067{left:204.160000pt;}
.x44_c00067{left:211.840000pt;}
.xd_c00067{left:213.120000pt;}
.x26_c00067{left:222.720000pt;}
.x1b_c00067{left:224.000000pt;}
.x4b_c00067{left:230.400000pt;}
.x15_c00067{left:232.960000pt;}
.x1c_c00067{left:241.280000pt;}
.x51_c00067{left:250.240000pt;}
.x32_c00067{left:251.520000pt;}
.x4f_c00067{left:260.480000pt;}
.x5_c00067{left:270.720000pt;}
.x21_c00067{left:280.320000pt;}
.x45_c00067{left:288.640000pt;}
.x1d_c00067{left:290.560000pt;}
.x2d_c00067{left:298.880000pt;}
.x6_c00067{left:300.160000pt;}
.x3e_c00067{left:309.120000pt;}
.x37_c00067{left:311.040000pt;}
.xe_c00067{left:318.720000pt;}
.x4c_c00067{left:327.040000pt;}
.x27_c00067{left:337.920000pt;}
.x3b_c00067{left:347.520000pt;}
.x4d_c00067{left:355.200000pt;}
.x7_c00067{left:357.760000pt;}
.x3f_c00067{left:366.720000pt;}
.x1e_c00067{left:375.680000pt;}
.x52_c00067{left:393.600000pt;}
.xf_c00067{left:395.520000pt;}
.x28_c00067{left:404.480000pt;}
.x3c_c00067{left:413.440000pt;}
.x1f_c00067{left:414.720000pt;}
.x48_c00067{left:423.040000pt;}
.x8_c00067{left:424.320000pt;}
.x40_c00067{left:433.280000pt;}
.x29_c00067{left:442.880000pt;}
.x38_c00067{left:451.200000pt;}
.x9_c00067{left:453.120000pt;}
.x22_c00067{left:461.440000pt;}
.x4e_c00067{left:471.040000pt;}
.x10_c00067{left:472.320000pt;}
.x2e_c00067{left:481.280000pt;}
.x46_c00067{left:489.600000pt;}
.x16_c00067{left:490.880000pt;}
.x33_c00067{left:499.200000pt;}
.xa_c00067{left:501.120000pt;}
.x53_c00067{left:509.440000pt;}
.x11_c00067{left:510.720000pt;}
.x50_c00067{left:517.120000pt;}
.x41_c00067{left:519.040000pt;}
.x2f_c00067{left:520.320000pt;}
.x47_c00067{left:528.000000pt;}
.x2a_c00067{left:529.280000pt;}
.x49_c00067{left:538.240000pt;}
.x20_c00067{left:539.520000pt;}
.x39_c00067{left:547.840000pt;}
.x23_c00067{left:558.080000pt;}
.xb_c00067{left:568.320000pt;}
.x3d_c00067{left:575.360000pt;}
.x2b_c00067{left:577.280000pt;}
.x17_c00067{left:586.240000pt;}
.x42_c00067{left:595.840000pt;}
.x30_c00067{left:606.720000pt;}
.x54_c00067{left:615.040000pt;}
.x24_c00067{left:616.320000pt;}
.x18_c00067{left:625.280000pt;}
.x3a_c00067{left:626.560000pt;}
.x12_c00067{left:635.520000pt;}
.x1_c00067{left:641.280000pt;}
.x36_c00067{left:644.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_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_f5a0cb547e046be4e35d38ea.woff2')format("woff");}.ff1_c00068{font-family:ff1_c00068;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m8_c00068{transform:matrix(0.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_c00068{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);}
.m5a_c00068{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00068{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m58_c00068{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m52_c00068{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00068{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m0_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);}
.m24_c00068{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00068{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m42_c00068{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m35_c00068{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m46_c00068{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m4_c00068{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);}
.m51_c00068{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);}
.m57_c00068{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m3_c00068{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00068{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m33_c00068{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_c00068{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00068{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_c00068{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m19_c00068{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.me_c00068{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);}
.m56_c00068{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00068{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m13_c00068{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.mf_c00068{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m6_c00068{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m18_c00068{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00068{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);}
.m2e_c00068{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m27_c00068{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);}
.m32_c00068{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);}
.m41_c00068{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m26_c00068{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m49_c00068{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m28_c00068{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);}
.m40_c00068{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m48_c00068{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);}
.m3d_c00068{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m14_c00068{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);}
.m29_c00068{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_c00068{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00068{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00068{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m12_c00068{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);}
.m59_c00068{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00068{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00068{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);}
.m4c_c00068{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.md_c00068{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m11_c00068{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.mc_c00068{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m50_c00068{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m30_c00068{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);}
.m2f_c00068{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m9_c00068{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00068{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00068{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);}
.m38_c00068{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m25_c00068{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00068{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m20_c00068{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.ma_c00068{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);}
.m5_c00068{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);}
.m45_c00068{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00068{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m21_c00068{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);}
.m22_c00068{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00068{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m43_c00068{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m15_c00068{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);}
.m44_c00068{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00068{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m47_c00068{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m55_c00068{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m36_c00068{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);}
.m2_c00068{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00068{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m1_c00068{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m53_c00068{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m39_c00068{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m10_c00068{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00068{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);}
.m2d_c00068{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);}
.m31_c00068{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00068{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m23_c00068{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m34_c00068{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m37_c00068{transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);}
.m54_c00068{transform:matrix(0.735000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735000,0.000000,0.000000,0.250000,0,0);}
.m17_c00068{transform:matrix(1.042500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.042500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.042500,0.000000,0.000000,0.250000,0,0);}
.v1_c00068{vertical-align:-11.520000px;}
.v0_c00068{vertical-align:0.000000px;}
.v2_c00068{vertical-align:11.520000px;}
.ls0_c00068{letter-spacing:0.000000px;}
.sc__c00068{text-shadow:none;}
.sc0_c00068{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00068{-webkit-text-stroke:0px transparent;}
.sc0_c00068{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00068{word-spacing:0.000000px;}
.ws1_c00068{word-spacing:0.630240px;}
.ws0_c00068{word-spacing:1.600800px;}
.fc0_c00068{color:transparent;}
.fsb_c00068{font-size:34.560000px;}
.fs9_c00068{font-size:37.440000px;}
.fs1_c00068{font-size:40.320000px;}
.fs8_c00068{font-size:43.200000px;}
.fs6_c00068{font-size:46.080000px;}
.fs2_c00068{font-size:48.960000px;}
.fs4_c00068{font-size:51.840000px;}
.fs7_c00068{font-size:54.720000px;}
.fsc_c00068{font-size:57.600000px;}
.fs3_c00068{font-size:60.480000px;}
.fs5_c00068{font-size:63.360000px;}
.fsa_c00068{font-size:66.240000px;}
.fs0_c00068{font-size:69.120000px;}
.fsd_c00068{font-size:72.000000px;}
.y0_c00068{bottom:0.000000px;}
.y60_c00068{bottom:5.760000px;}
.y5d_c00068{bottom:43.920000px;}
.y5f_c00068{bottom:45.360000px;}
.y5c_c00068{bottom:46.080000px;}
.y5e_c00068{bottom:46.800000px;}
.y5b_c00068{bottom:84.960000px;}
.y5a_c00068{bottom:86.400000px;}
.y58_c00068{bottom:88.560000px;}
.y59_c00068{bottom:89.280000px;}
.y56_c00068{bottom:128.160000px;}
.y57_c00068{bottom:128.880000px;}
.y55_c00068{bottom:131.040000px;}
.y54_c00068{bottom:131.760000px;}
.y53_c00068{bottom:132.480000px;}
.y52_c00068{bottom:133.200000px;}
.y4f_c00068{bottom:171.360000px;}
.y51_c00068{bottom:172.080000px;}
.y50_c00068{bottom:174.240000px;}
.y4e_c00068{bottom:212.400000px;}
.y4d_c00068{bottom:213.120000px;}
.y4b_c00068{bottom:213.840000px;}
.y4c_c00068{bottom:216.000000px;}
.y4a_c00068{bottom:216.720000px;}
.y49_c00068{bottom:217.440000px;}
.y48_c00068{bottom:218.160000px;}
.y47_c00068{bottom:256.320000px;}
.y46_c00068{bottom:258.480000px;}
.y45_c00068{bottom:259.200000px;}
.y43_c00068{bottom:259.920000px;}
.y44_c00068{bottom:260.640000px;}
.y40_c00068{bottom:299.520000px;}
.y41_c00068{bottom:301.680000px;}
.y42_c00068{bottom:302.400000px;}
.y3e_c00068{bottom:341.280000px;}
.y3b_c00068{bottom:342.000000px;}
.y3f_c00068{bottom:344.160000px;}
.y3d_c00068{bottom:344.880000px;}
.y3c_c00068{bottom:345.600000px;}
.y38_c00068{bottom:384.480000px;}
.y3a_c00068{bottom:385.200000px;}
.y37_c00068{bottom:386.640000px;}
.y39_c00068{bottom:388.080000px;}
.y35_c00068{bottom:437.760000px;}
.y36_c00068{bottom:439.920000px;}
.y34_c00068{bottom:440.640000px;}
.y32_c00068{bottom:479.520000px;}
.y30_c00068{bottom:480.240000px;}
.y33_c00068{bottom:482.400000px;}
.y31_c00068{bottom:483.120000px;}
.y2f_c00068{bottom:522.000000px;}
.y2d_c00068{bottom:522.720000px;}
.y2e_c00068{bottom:523.440000px;}
.y2c_c00068{bottom:524.880000px;}
.y2b_c00068{bottom:525.600000px;}
.y2a_c00068{bottom:565.200000px;}
.y28_c00068{bottom:567.360000px;}
.y29_c00068{bottom:568.080000px;}
.y27_c00068{bottom:620.640000px;}
.y25_c00068{bottom:660.960000px;}
.y26_c00068{bottom:661.680000px;}
.y24_c00068{bottom:663.120000px;}
.y23_c00068{bottom:663.840000px;}
.y22_c00068{bottom:664.560000px;}
.y21_c00068{bottom:702.720000px;}
.y20_c00068{bottom:704.160000px;}
.y1e_c00068{bottom:706.320000px;}
.y1f_c00068{bottom:707.040000px;}
.y1d_c00068{bottom:745.920000px;}
.y1c_c00068{bottom:746.640000px;}
.y1a_c00068{bottom:748.800000px;}
.y1b_c00068{bottom:749.520000px;}
.y19_c00068{bottom:789.120000px;}
.y17_c00068{bottom:791.280000px;}
.y18_c00068{bottom:792.000000px;}
.y16_c00068{bottom:832.320000px;}
.y14_c00068{bottom:833.760000px;}
.y15_c00068{bottom:834.480000px;}
.y10_c00068{bottom:874.080000px;}
.y11_c00068{bottom:876.240000px;}
.y13_c00068{bottom:876.960000px;}
.y12_c00068{bottom:877.680000px;}
.ye_c00068{bottom:917.280000px;}
.yc_c00068{bottom:918.720000px;}
.yd_c00068{bottom:919.440000px;}
.yf_c00068{bottom:920.160000px;}
.y9_c00068{bottom:959.040000px;}
.y8_c00068{bottom:959.760000px;}
.y7_c00068{bottom:961.200000px;}
.ya_c00068{bottom:961.920000px;}
.yb_c00068{bottom:963.360000px;}
.y5_c00068{bottom:1002.240000px;}
.y6_c00068{bottom:1002.960000px;}
.y2_c00068{bottom:1003.680000px;}
.y3_c00068{bottom:1004.400000px;}
.y4_c00068{bottom:1005.120000px;}
.y1_c00068{bottom:1076.400000px;}
.hd_c00068{height:31.100625px;}
.hb_c00068{height:33.692344px;}
.h3_c00068{height:36.284062px;}
.ha_c00068{height:38.875781px;}
.h8_c00068{height:41.467500px;}
.h4_c00068{height:44.059219px;}
.h6_c00068{height:46.650937px;}
.h9_c00068{height:49.242656px;}
.he_c00068{height:51.834375px;}
.h5_c00068{height:54.426094px;}
.h7_c00068{height:57.017812px;}
.hc_c00068{height:59.609531px;}
.h2_c00068{height:62.201250px;}
.hf_c00068{height:64.792969px;}
.h0_c00068{height:1152.720000px;}
.h1_c00068{height:1152.750000px;}
.w1_c00068{width:808.500000px;}
.w0_c00068{width:808.560000px;}
.x0_c00068{left:0.000000px;}
.x23_c00068{left:88.560000px;}
.x2_c00068{left:90.720000px;}
.x19_c00068{left:112.320000px;}
.x34_c00068{left:120.960000px;}
.x3b_c00068{left:132.480000px;}
.x2b_c00068{left:133.920000px;}
.x3f_c00068{left:143.280000px;}
.x12_c00068{left:154.800000px;}
.xb_c00068{left:166.320000px;}
.x3_c00068{left:176.400000px;}
.x31_c00068{left:185.040000px;}
.x24_c00068{left:186.480000px;}
.x1a_c00068{left:187.920000px;}
.x13_c00068{left:190.080000px;}
.xc_c00068{left:197.280000px;}
.x4_c00068{left:207.360000px;}
.x35_c00068{left:208.800000px;}
.x43_c00068{left:218.160000px;}
.x48_c00068{left:219.600000px;}
.x25_c00068{left:229.680000px;}
.x36_c00068{left:241.200000px;}
.x32_c00068{left:251.280000px;}
.x3c_c00068{left:261.360000px;}
.x1b_c00068{left:262.800000px;}
.x2c_c00068{left:272.880000px;}
.x4a_c00068{left:282.960000px;}
.x5_c00068{left:295.200000px;}
.x1c_c00068{left:306.000000px;}
.x3d_c00068{left:315.360000px;}
.x6_c00068{left:326.880000px;}
.x14_c00068{left:336.960000px;}
.x3e_c00068{left:338.400000px;}
.xd_c00068{left:348.480000px;}
.x15_c00068{left:359.280000px;}
.x7_c00068{left:370.080000px;}
.x44_c00068{left:380.880000px;}
.x16_c00068{left:390.960000px;}
.x2d_c00068{left:392.400000px;}
.x1d_c00068{left:402.480000px;}
.x26_c00068{left:413.280000px;}
.x37_c00068{left:423.360000px;}
.x3a_c00068{left:434.160000px;}
.x33_c00068{left:444.960000px;}
.x1e_c00068{left:455.760000px;}
.x46_c00068{left:457.200000px;}
.x17_c00068{left:467.280000px;}
.xe_c00068{left:478.080000px;}
.x2e_c00068{left:488.880000px;}
.x42_c00068{left:498.960000px;}
.x8_c00068{left:500.400000px;}
.x28_c00068{left:509.760000px;}
.x38_c00068{left:520.560000px;}
.x45_c00068{left:522.720000px;}
.x29_c00068{left:541.440000px;}
.x1f_c00068{left:542.880000px;}
.x40_c00068{left:552.960000px;}
.x39_c00068{left:563.760000px;}
.x27_c00068{left:586.080000px;}
.xf_c00068{left:596.880000px;}
.x2a_c00068{left:606.960000px;}
.x20_c00068{left:618.480000px;}
.x10_c00068{left:628.560000px;}
.x21_c00068{left:639.360000px;}
.x18_c00068{left:642.240000px;}
.x2f_c00068{left:650.160000px;}
.x9_c00068{left:651.600000px;}
.x49_c00068{left:659.520000px;}
.x11_c00068{left:661.680000px;}
.x41_c00068{left:671.760000px;}
.x22_c00068{left:682.560000px;}
.x47_c00068{left:693.360000px;}
.x30_c00068{left:704.160000px;}
.xa_c00068{left:715.680000px;}
.x1_c00068{left:725.040000px;}
@media print{
.v1_c00068{vertical-align:-10.240000pt;}
.v0_c00068{vertical-align:0.000000pt;}
.v2_c00068{vertical-align:10.240000pt;}
.ls0_c00068{letter-spacing:0.000000pt;}
.ws2_c00068{word-spacing:0.000000pt;}
.ws1_c00068{word-spacing:0.560213pt;}
.ws0_c00068{word-spacing:1.422933pt;}
.fsb_c00068{font-size:30.720000pt;}
.fs9_c00068{font-size:33.280000pt;}
.fs1_c00068{font-size:35.840000pt;}
.fs8_c00068{font-size:38.400000pt;}
.fs6_c00068{font-size:40.960000pt;}
.fs2_c00068{font-size:43.520000pt;}
.fs4_c00068{font-size:46.080000pt;}
.fs7_c00068{font-size:48.640000pt;}
.fsc_c00068{font-size:51.200000pt;}
.fs3_c00068{font-size:53.760000pt;}
.fs5_c00068{font-size:56.320000pt;}
.fsa_c00068{font-size:58.880000pt;}
.fs0_c00068{font-size:61.440000pt;}
.fsd_c00068{font-size:64.000000pt;}
.y0_c00068{bottom:0.000000pt;}
.y60_c00068{bottom:5.120000pt;}
.y5d_c00068{bottom:39.040000pt;}
.y5f_c00068{bottom:40.320000pt;}
.y5c_c00068{bottom:40.960000pt;}
.y5e_c00068{bottom:41.600000pt;}
.y5b_c00068{bottom:75.520000pt;}
.y5a_c00068{bottom:76.800000pt;}
.y58_c00068{bottom:78.720000pt;}
.y59_c00068{bottom:79.360000pt;}
.y56_c00068{bottom:113.920000pt;}
.y57_c00068{bottom:114.560000pt;}
.y55_c00068{bottom:116.480000pt;}
.y54_c00068{bottom:117.120000pt;}
.y53_c00068{bottom:117.760000pt;}
.y52_c00068{bottom:118.400000pt;}
.y4f_c00068{bottom:152.320000pt;}
.y51_c00068{bottom:152.960000pt;}
.y50_c00068{bottom:154.880000pt;}
.y4e_c00068{bottom:188.800000pt;}
.y4d_c00068{bottom:189.440000pt;}
.y4b_c00068{bottom:190.080000pt;}
.y4c_c00068{bottom:192.000000pt;}
.y4a_c00068{bottom:192.640000pt;}
.y49_c00068{bottom:193.280000pt;}
.y48_c00068{bottom:193.920000pt;}
.y47_c00068{bottom:227.840000pt;}
.y46_c00068{bottom:229.760000pt;}
.y45_c00068{bottom:230.400000pt;}
.y43_c00068{bottom:231.040000pt;}
.y44_c00068{bottom:231.680000pt;}
.y40_c00068{bottom:266.240000pt;}
.y41_c00068{bottom:268.160000pt;}
.y42_c00068{bottom:268.800000pt;}
.y3e_c00068{bottom:303.360000pt;}
.y3b_c00068{bottom:304.000000pt;}
.y3f_c00068{bottom:305.920000pt;}
.y3d_c00068{bottom:306.560000pt;}
.y3c_c00068{bottom:307.200000pt;}
.y38_c00068{bottom:341.760000pt;}
.y3a_c00068{bottom:342.400000pt;}
.y37_c00068{bottom:343.680000pt;}
.y39_c00068{bottom:344.960000pt;}
.y35_c00068{bottom:389.120000pt;}
.y36_c00068{bottom:391.040000pt;}
.y34_c00068{bottom:391.680000pt;}
.y32_c00068{bottom:426.240000pt;}
.y30_c00068{bottom:426.880000pt;}
.y33_c00068{bottom:428.800000pt;}
.y31_c00068{bottom:429.440000pt;}
.y2f_c00068{bottom:464.000000pt;}
.y2d_c00068{bottom:464.640000pt;}
.y2e_c00068{bottom:465.280000pt;}
.y2c_c00068{bottom:466.560000pt;}
.y2b_c00068{bottom:467.200000pt;}
.y2a_c00068{bottom:502.400000pt;}
.y28_c00068{bottom:504.320000pt;}
.y29_c00068{bottom:504.960000pt;}
.y27_c00068{bottom:551.680000pt;}
.y25_c00068{bottom:587.520000pt;}
.y26_c00068{bottom:588.160000pt;}
.y24_c00068{bottom:589.440000pt;}
.y23_c00068{bottom:590.080000pt;}
.y22_c00068{bottom:590.720000pt;}
.y21_c00068{bottom:624.640000pt;}
.y20_c00068{bottom:625.920000pt;}
.y1e_c00068{bottom:627.840000pt;}
.y1f_c00068{bottom:628.480000pt;}
.y1d_c00068{bottom:663.040000pt;}
.y1c_c00068{bottom:663.680000pt;}
.y1a_c00068{bottom:665.600000pt;}
.y1b_c00068{bottom:666.240000pt;}
.y19_c00068{bottom:701.440000pt;}
.y17_c00068{bottom:703.360000pt;}
.y18_c00068{bottom:704.000000pt;}
.y16_c00068{bottom:739.840000pt;}
.y14_c00068{bottom:741.120000pt;}
.y15_c00068{bottom:741.760000pt;}
.y10_c00068{bottom:776.960000pt;}
.y11_c00068{bottom:778.880000pt;}
.y13_c00068{bottom:779.520000pt;}
.y12_c00068{bottom:780.160000pt;}
.ye_c00068{bottom:815.360000pt;}
.yc_c00068{bottom:816.640000pt;}
.yd_c00068{bottom:817.280000pt;}
.yf_c00068{bottom:817.920000pt;}
.y9_c00068{bottom:852.480000pt;}
.y8_c00068{bottom:853.120000pt;}
.y7_c00068{bottom:854.400000pt;}
.ya_c00068{bottom:855.040000pt;}
.yb_c00068{bottom:856.320000pt;}
.y5_c00068{bottom:890.880000pt;}
.y6_c00068{bottom:891.520000pt;}
.y2_c00068{bottom:892.160000pt;}
.y3_c00068{bottom:892.800000pt;}
.y4_c00068{bottom:893.440000pt;}
.y1_c00068{bottom:956.800000pt;}
.hd_c00068{height:27.645000pt;}
.hb_c00068{height:29.948750pt;}
.h3_c00068{height:32.252500pt;}
.ha_c00068{height:34.556250pt;}
.h8_c00068{height:36.860000pt;}
.h4_c00068{height:39.163750pt;}
.h6_c00068{height:41.467500pt;}
.h9_c00068{height:43.771250pt;}
.he_c00068{height:46.075000pt;}
.h5_c00068{height:48.378750pt;}
.h7_c00068{height:50.682500pt;}
.hc_c00068{height:52.986250pt;}
.h2_c00068{height:55.290000pt;}
.hf_c00068{height:57.593750pt;}
.h0_c00068{height:1024.640000pt;}
.h1_c00068{height:1024.666667pt;}
.w1_c00068{width:718.666667pt;}
.w0_c00068{width:718.720000pt;}
.x0_c00068{left:0.000000pt;}
.x23_c00068{left:78.720000pt;}
.x2_c00068{left:80.640000pt;}
.x19_c00068{left:99.840000pt;}
.x34_c00068{left:107.520000pt;}
.x3b_c00068{left:117.760000pt;}
.x2b_c00068{left:119.040000pt;}
.x3f_c00068{left:127.360000pt;}
.x12_c00068{left:137.600000pt;}
.xb_c00068{left:147.840000pt;}
.x3_c00068{left:156.800000pt;}
.x31_c00068{left:164.480000pt;}
.x24_c00068{left:165.760000pt;}
.x1a_c00068{left:167.040000pt;}
.x13_c00068{left:168.960000pt;}
.xc_c00068{left:175.360000pt;}
.x4_c00068{left:184.320000pt;}
.x35_c00068{left:185.600000pt;}
.x43_c00068{left:193.920000pt;}
.x48_c00068{left:195.200000pt;}
.x25_c00068{left:204.160000pt;}
.x36_c00068{left:214.400000pt;}
.x32_c00068{left:223.360000pt;}
.x3c_c00068{left:232.320000pt;}
.x1b_c00068{left:233.600000pt;}
.x2c_c00068{left:242.560000pt;}
.x4a_c00068{left:251.520000pt;}
.x5_c00068{left:262.400000pt;}
.x1c_c00068{left:272.000000pt;}
.x3d_c00068{left:280.320000pt;}
.x6_c00068{left:290.560000pt;}
.x14_c00068{left:299.520000pt;}
.x3e_c00068{left:300.800000pt;}
.xd_c00068{left:309.760000pt;}
.x15_c00068{left:319.360000pt;}
.x7_c00068{left:328.960000pt;}
.x44_c00068{left:338.560000pt;}
.x16_c00068{left:347.520000pt;}
.x2d_c00068{left:348.800000pt;}
.x1d_c00068{left:357.760000pt;}
.x26_c00068{left:367.360000pt;}
.x37_c00068{left:376.320000pt;}
.x3a_c00068{left:385.920000pt;}
.x33_c00068{left:395.520000pt;}
.x1e_c00068{left:405.120000pt;}
.x46_c00068{left:406.400000pt;}
.x17_c00068{left:415.360000pt;}
.xe_c00068{left:424.960000pt;}
.x2e_c00068{left:434.560000pt;}
.x42_c00068{left:443.520000pt;}
.x8_c00068{left:444.800000pt;}
.x28_c00068{left:453.120000pt;}
.x38_c00068{left:462.720000pt;}
.x45_c00068{left:464.640000pt;}
.x29_c00068{left:481.280000pt;}
.x1f_c00068{left:482.560000pt;}
.x40_c00068{left:491.520000pt;}
.x39_c00068{left:501.120000pt;}
.x27_c00068{left:520.960000pt;}
.xf_c00068{left:530.560000pt;}
.x2a_c00068{left:539.520000pt;}
.x20_c00068{left:549.760000pt;}
.x10_c00068{left:558.720000pt;}
.x21_c00068{left:568.320000pt;}
.x18_c00068{left:570.880000pt;}
.x2f_c00068{left:577.920000pt;}
.x9_c00068{left:579.200000pt;}
.x49_c00068{left:586.240000pt;}
.x11_c00068{left:588.160000pt;}
.x41_c00068{left:597.120000pt;}
.x22_c00068{left:606.720000pt;}
.x47_c00068{left:616.320000pt;}
.x30_c00068{left:625.920000pt;}
.xa_c00068{left:636.160000pt;}
.x1_c00068{left:644.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_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_81d3081eb2c8752002860c3a.woff2')format("woff");}.ff1_c00069{font-family:ff1_c00069;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00069{transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);}
.m1_c00069{transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);}
.m3d_c00069{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m55_c00069{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00069{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00069{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m58_c00069{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00069{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m47_c00069{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00069{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m37_c00069{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);}
.m53_c00069{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m20_c00069{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_c00069{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m3_c00069{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00069{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);}
.m50_c00069{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00069{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);}
.m2e_c00069{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00069{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.ma_c00069{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m21_c00069{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);}
.m33_c00069{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00069{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m23_c00069{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);}
.m44_c00069{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m11_c00069{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_c00069{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m49_c00069{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m2_c00069{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m30_c00069{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);}
.m13_c00069{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);}
.m2d_c00069{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m56_c00069{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m4_c00069{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m9_c00069{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_c00069{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m24_c00069{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);}
.m3e_c00069{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m26_c00069{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);}
.m36_c00069{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);}
.m2f_c00069{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00069{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_c00069{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m39_c00069{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);}
.m1b_c00069{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m27_c00069{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);}
.m45_c00069{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m6_c00069{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m5_c00069{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m28_c00069{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);}
.m42_c00069{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m25_c00069{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00069{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00069{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);}
.mc_c00069{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m18_c00069{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m10_c00069{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.mf_c00069{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m16_c00069{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00069{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);}
.m4d_c00069{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m51_c00069{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m38_c00069{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);}
.m35_c00069{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m57_c00069{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00069{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);}
.m46_c00069{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m40_c00069{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00069{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.mb_c00069{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);}
.m31_c00069{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.md_c00069{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);}
.m15_c00069{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);}
.m7_c00069{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m14_c00069{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00069{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00069{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m19_c00069{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m29_c00069{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m34_c00069{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);}
.m12_c00069{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);}
.m43_c00069{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);}
.m32_c00069{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m52_c00069{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m54_c00069{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m48_c00069{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m59_c00069{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);}
.m41_c00069{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.m8_c00069{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);}
.v2_c00069{vertical-align:-8.640000px;}
.v0_c00069{vertical-align:0.000000px;}
.v1_c00069{vertical-align:14.400000px;}
.ls0_c00069{letter-spacing:0.000000px;}
.sc__c00069{text-shadow:none;}
.sc0_c00069{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00069{-webkit-text-stroke:0px transparent;}
.sc0_c00069{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00069{word-spacing:-4.067522px;}
.ws3_c00069{word-spacing:-4.019520px;}
.ws2_c00069{word-spacing:-2.612880px;}
.ws0_c00069{word-spacing:-1.534560px;}
.ws4_c00069{word-spacing:0.000000px;}
.fc0_c00069{color:transparent;}
.fs6_c00069{font-size:34.560000px;}
.fs5_c00069{font-size:37.440000px;}
.fsa_c00069{font-size:43.200000px;}
.fs8_c00069{font-size:46.080000px;}
.fs2_c00069{font-size:48.960000px;}
.fs4_c00069{font-size:51.840000px;}
.fsb_c00069{font-size:54.720000px;}
.fs9_c00069{font-size:57.600000px;}
.fs3_c00069{font-size:60.480000px;}
.fs7_c00069{font-size:63.360000px;}
.fs1_c00069{font-size:66.240000px;}
.fs0_c00069{font-size:69.120000px;}
.y0_c00069{bottom:0.000000px;}
.y63_c00069{bottom:33.840000px;}
.y62_c00069{bottom:34.560000px;}
.y61_c00069{bottom:35.280000px;}
.y64_c00069{bottom:36.000000px;}
.y60_c00069{bottom:36.720000px;}
.y5c_c00069{bottom:77.040000px;}
.y5f_c00069{bottom:77.760000px;}
.y5e_c00069{bottom:78.480000px;}
.y5d_c00069{bottom:79.200000px;}
.y5b_c00069{bottom:79.920000px;}
.y5a_c00069{bottom:82.080000px;}
.y58_c00069{bottom:118.800000px;}
.y55_c00069{bottom:119.520000px;}
.y59_c00069{bottom:120.960000px;}
.y57_c00069{bottom:121.680000px;}
.y56_c00069{bottom:122.400000px;}
.y54_c00069{bottom:124.560000px;}
.y53_c00069{bottom:161.280000px;}
.y51_c00069{bottom:162.720000px;}
.y52_c00069{bottom:164.160000px;}
.y50_c00069{bottom:203.040000px;}
.y4d_c00069{bottom:203.760000px;}
.y4c_c00069{bottom:205.200000px;}
.y4f_c00069{bottom:205.920000px;}
.y4e_c00069{bottom:206.640000px;}
.y49_c00069{bottom:245.520000px;}
.y47_c00069{bottom:246.240000px;}
.y4a_c00069{bottom:246.960000px;}
.y4b_c00069{bottom:248.400000px;}
.y48_c00069{bottom:249.120000px;}
.y46_c00069{bottom:300.240000px;}
.y45_c00069{bottom:342.720000px;}
.y44_c00069{bottom:343.440000px;}
.y43_c00069{bottom:344.880000px;}
.y42_c00069{bottom:345.600000px;}
.y3f_c00069{bottom:384.480000px;}
.y3e_c00069{bottom:385.200000px;}
.y3d_c00069{bottom:385.920000px;}
.y40_c00069{bottom:387.360000px;}
.y41_c00069{bottom:388.080000px;}
.y3b_c00069{bottom:427.680000px;}
.y3c_c00069{bottom:428.400000px;}
.y3a_c00069{bottom:429.840000px;}
.y39_c00069{bottom:430.560000px;}
.y36_c00069{bottom:469.440000px;}
.y37_c00069{bottom:470.160000px;}
.y38_c00069{bottom:470.880000px;}
.y35_c00069{bottom:473.040000px;}
.y32_c00069{bottom:512.640000px;}
.y34_c00069{bottom:513.360000px;}
.y30_c00069{bottom:514.800000px;}
.y33_c00069{bottom:515.520000px;}
.y31_c00069{bottom:516.240000px;}
.y2f_c00069{bottom:558.000000px;}
.y2e_c00069{bottom:558.720000px;}
.y2d_c00069{bottom:608.400000px;}
.y2c_c00069{bottom:611.280000px;}
.y29_c00069{bottom:651.600000px;}
.y28_c00069{bottom:653.760000px;}
.y2a_c00069{bottom:654.480000px;}
.y2b_c00069{bottom:655.200000px;}
.y26_c00069{bottom:693.360000px;}
.y24_c00069{bottom:694.800000px;}
.y22_c00069{bottom:695.520000px;}
.y23_c00069{bottom:696.240000px;}
.y27_c00069{bottom:696.960000px;}
.y25_c00069{bottom:697.680000px;}
.y21_c00069{bottom:738.000000px;}
.y1f_c00069{bottom:738.720000px;}
.y20_c00069{bottom:739.440000px;}
.y1b_c00069{bottom:778.320000px;}
.y1a_c00069{bottom:779.040000px;}
.y1d_c00069{bottom:779.760000px;}
.y19_c00069{bottom:781.200000px;}
.y1c_c00069{bottom:781.920000px;}
.y1e_c00069{bottom:782.640000px;}
.y18_c00069{bottom:832.320000px;}
.y16_c00069{bottom:833.760000px;}
.y15_c00069{bottom:834.480000px;}
.y17_c00069{bottom:835.200000px;}
.y10_c00069{bottom:874.080000px;}
.y11_c00069{bottom:874.800000px;}
.y13_c00069{bottom:875.520000px;}
.yf_c00069{bottom:876.960000px;}
.y12_c00069{bottom:877.680000px;}
.y14_c00069{bottom:878.400000px;}
.ye_c00069{bottom:917.280000px;}
.yb_c00069{bottom:918.720000px;}
.yc_c00069{bottom:919.440000px;}
.yd_c00069{bottom:920.160000px;}
.y8_c00069{bottom:959.760000px;}
.ya_c00069{bottom:960.480000px;}
.y6_c00069{bottom:961.200000px;}
.y7_c00069{bottom:961.920000px;}
.y9_c00069{bottom:963.360000px;}
.y3_c00069{bottom:1003.680000px;}
.y2_c00069{bottom:1005.120000px;}
.y4_c00069{bottom:1005.840000px;}
.y5_c00069{bottom:1006.560000px;}
.y1_c00069{bottom:1069.200000px;}
.h8_c00069{height:31.100625px;}
.h7_c00069{height:33.692344px;}
.hd_c00069{height:38.875781px;}
.ha_c00069{height:41.467500px;}
.h4_c00069{height:44.059219px;}
.h6_c00069{height:46.650937px;}
.he_c00069{height:49.242656px;}
.hc_c00069{height:51.834375px;}
.h5_c00069{height:54.426094px;}
.h9_c00069{height:57.017812px;}
.hb_c00069{height:58.459219px;}
.h3_c00069{height:59.609531px;}
.h2_c00069{height:62.201250px;}
.h0_c00069{height:1153.440000px;}
.h1_c00069{height:1153.500000px;}
.w0_c00069{width:810.720000px;}
.w1_c00069{width:810.750000px;}
.x0_c00069{left:0.000000px;}
.x34_c00069{left:91.440000px;}
.xc_c00069{left:92.880000px;}
.x46_c00069{left:114.480000px;}
.x15_c00069{left:124.560000px;}
.xd_c00069{left:136.080000px;}
.x22_c00069{left:146.160000px;}
.x2d_c00069{left:156.240000px;}
.x3f_c00069{left:157.680000px;}
.x4a_c00069{left:168.480000px;}
.x23_c00069{left:177.840000px;}
.x2e_c00069{left:190.080000px;}
.x43_c00069{left:192.240000px;}
.x3_c00069{left:199.440000px;}
.xe_c00069{left:200.880000px;}
.x3a_c00069{left:210.960000px;}
.x24_c00069{left:220.320000px;}
.x47_c00069{left:224.640000px;}
.x4_c00069{left:231.840000px;}
.xf_c00069{left:241.920000px;}
.x1c_c00069{left:243.360000px;}
.x2f_c00069{left:253.440000px;}
.x16_c00069{left:264.240000px;}
.x40_c00069{left:275.760000px;}
.x38_c00069{left:285.120000px;}
.x35_c00069{left:294.480000px;}
.x25_c00069{left:296.640000px;}
.x26_c00069{left:306.720000px;}
.x17_c00069{left:308.880000px;}
.x36_c00069{left:318.240000px;}
.x5_c00069{left:329.040000px;}
.x44_c00069{left:330.480000px;}
.x1d_c00069{left:340.560000px;}
.x42_c00069{left:342.720000px;}
.x30_c00069{left:351.360000px;}
.x27_c00069{left:360.720000px;}
.x1e_c00069{left:371.520000px;}
.x18_c00069{left:382.320000px;}
.x10_c00069{left:383.760000px;}
.x31_c00069{left:393.120000px;}
.x3b_c00069{left:403.920000px;}
.x19_c00069{left:414.000000px;}
.x41_c00069{left:426.240000px;}
.x3c_c00069{left:435.600000px;}
.x6_c00069{left:447.120000px;}
.x28_c00069{left:468.720000px;}
.x48_c00069{left:478.800000px;}
.x37_c00069{left:480.240000px;}
.x7_c00069{left:490.320000px;}
.x29_c00069{left:501.120000px;}
.x32_c00069{left:512.640000px;}
.x1a_c00069{left:522.000000px;}
.x33_c00069{left:532.800000px;}
.x11_c00069{left:544.320000px;}
.x3d_c00069{left:555.120000px;}
.x12_c00069{left:565.920000px;}
.x8_c00069{left:576.720000px;}
.x1f_c00069{left:587.520000px;}
.x2a_c00069{left:598.320000px;}
.x9_c00069{left:608.400000px;}
.x1b_c00069{left:619.200000px;}
.x2b_c00069{left:630.720000px;}
.x20_c00069{left:641.520000px;}
.xa_c00069{left:652.320000px;}
.x45_c00069{left:662.400000px;}
.x21_c00069{left:672.480000px;}
.x13_c00069{left:673.920000px;}
.x39_c00069{left:685.440000px;}
.x2c_c00069{left:695.520000px;}
.x14_c00069{left:706.320000px;}
.x3e_c00069{left:709.920000px;}
.x49_c00069{left:717.840000px;}
.xb_c00069{left:727.920000px;}
.x1_c00069{left:748.080000px;}
.x2_c00069{left:765.360000px;}
@media print{
.v2_c00069{vertical-align:-7.680000pt;}
.v0_c00069{vertical-align:0.000000pt;}
.v1_c00069{vertical-align:12.800000pt;}
.ls0_c00069{letter-spacing:0.000000pt;}
.ws1_c00069{word-spacing:-3.615575pt;}
.ws3_c00069{word-spacing:-3.572907pt;}
.ws2_c00069{word-spacing:-2.322560pt;}
.ws0_c00069{word-spacing:-1.364053pt;}
.ws4_c00069{word-spacing:0.000000pt;}
.fs6_c00069{font-size:30.720000pt;}
.fs5_c00069{font-size:33.280000pt;}
.fsa_c00069{font-size:38.400000pt;}
.fs8_c00069{font-size:40.960000pt;}
.fs2_c00069{font-size:43.520000pt;}
.fs4_c00069{font-size:46.080000pt;}
.fsb_c00069{font-size:48.640000pt;}
.fs9_c00069{font-size:51.200000pt;}
.fs3_c00069{font-size:53.760000pt;}
.fs7_c00069{font-size:56.320000pt;}
.fs1_c00069{font-size:58.880000pt;}
.fs0_c00069{font-size:61.440000pt;}
.y0_c00069{bottom:0.000000pt;}
.y63_c00069{bottom:30.080000pt;}
.y62_c00069{bottom:30.720000pt;}
.y61_c00069{bottom:31.360000pt;}
.y64_c00069{bottom:32.000000pt;}
.y60_c00069{bottom:32.640000pt;}
.y5c_c00069{bottom:68.480000pt;}
.y5f_c00069{bottom:69.120000pt;}
.y5e_c00069{bottom:69.760000pt;}
.y5d_c00069{bottom:70.400000pt;}
.y5b_c00069{bottom:71.040000pt;}
.y5a_c00069{bottom:72.960000pt;}
.y58_c00069{bottom:105.600000pt;}
.y55_c00069{bottom:106.240000pt;}
.y59_c00069{bottom:107.520000pt;}
.y57_c00069{bottom:108.160000pt;}
.y56_c00069{bottom:108.800000pt;}
.y54_c00069{bottom:110.720000pt;}
.y53_c00069{bottom:143.360000pt;}
.y51_c00069{bottom:144.640000pt;}
.y52_c00069{bottom:145.920000pt;}
.y50_c00069{bottom:180.480000pt;}
.y4d_c00069{bottom:181.120000pt;}
.y4c_c00069{bottom:182.400000pt;}
.y4f_c00069{bottom:183.040000pt;}
.y4e_c00069{bottom:183.680000pt;}
.y49_c00069{bottom:218.240000pt;}
.y47_c00069{bottom:218.880000pt;}
.y4a_c00069{bottom:219.520000pt;}
.y4b_c00069{bottom:220.800000pt;}
.y48_c00069{bottom:221.440000pt;}
.y46_c00069{bottom:266.880000pt;}
.y45_c00069{bottom:304.640000pt;}
.y44_c00069{bottom:305.280000pt;}
.y43_c00069{bottom:306.560000pt;}
.y42_c00069{bottom:307.200000pt;}
.y3f_c00069{bottom:341.760000pt;}
.y3e_c00069{bottom:342.400000pt;}
.y3d_c00069{bottom:343.040000pt;}
.y40_c00069{bottom:344.320000pt;}
.y41_c00069{bottom:344.960000pt;}
.y3b_c00069{bottom:380.160000pt;}
.y3c_c00069{bottom:380.800000pt;}
.y3a_c00069{bottom:382.080000pt;}
.y39_c00069{bottom:382.720000pt;}
.y36_c00069{bottom:417.280000pt;}
.y37_c00069{bottom:417.920000pt;}
.y38_c00069{bottom:418.560000pt;}
.y35_c00069{bottom:420.480000pt;}
.y32_c00069{bottom:455.680000pt;}
.y34_c00069{bottom:456.320000pt;}
.y30_c00069{bottom:457.600000pt;}
.y33_c00069{bottom:458.240000pt;}
.y31_c00069{bottom:458.880000pt;}
.y2f_c00069{bottom:496.000000pt;}
.y2e_c00069{bottom:496.640000pt;}
.y2d_c00069{bottom:540.800000pt;}
.y2c_c00069{bottom:543.360000pt;}
.y29_c00069{bottom:579.200000pt;}
.y28_c00069{bottom:581.120000pt;}
.y2a_c00069{bottom:581.760000pt;}
.y2b_c00069{bottom:582.400000pt;}
.y26_c00069{bottom:616.320000pt;}
.y24_c00069{bottom:617.600000pt;}
.y22_c00069{bottom:618.240000pt;}
.y23_c00069{bottom:618.880000pt;}
.y27_c00069{bottom:619.520000pt;}
.y25_c00069{bottom:620.160000pt;}
.y21_c00069{bottom:656.000000pt;}
.y1f_c00069{bottom:656.640000pt;}
.y20_c00069{bottom:657.280000pt;}
.y1b_c00069{bottom:691.840000pt;}
.y1a_c00069{bottom:692.480000pt;}
.y1d_c00069{bottom:693.120000pt;}
.y19_c00069{bottom:694.400000pt;}
.y1c_c00069{bottom:695.040000pt;}
.y1e_c00069{bottom:695.680000pt;}
.y18_c00069{bottom:739.840000pt;}
.y16_c00069{bottom:741.120000pt;}
.y15_c00069{bottom:741.760000pt;}
.y17_c00069{bottom:742.400000pt;}
.y10_c00069{bottom:776.960000pt;}
.y11_c00069{bottom:777.600000pt;}
.y13_c00069{bottom:778.240000pt;}
.yf_c00069{bottom:779.520000pt;}
.y12_c00069{bottom:780.160000pt;}
.y14_c00069{bottom:780.800000pt;}
.ye_c00069{bottom:815.360000pt;}
.yb_c00069{bottom:816.640000pt;}
.yc_c00069{bottom:817.280000pt;}
.yd_c00069{bottom:817.920000pt;}
.y8_c00069{bottom:853.120000pt;}
.ya_c00069{bottom:853.760000pt;}
.y6_c00069{bottom:854.400000pt;}
.y7_c00069{bottom:855.040000pt;}
.y9_c00069{bottom:856.320000pt;}
.y3_c00069{bottom:892.160000pt;}
.y2_c00069{bottom:893.440000pt;}
.y4_c00069{bottom:894.080000pt;}
.y5_c00069{bottom:894.720000pt;}
.y1_c00069{bottom:950.400000pt;}
.h8_c00069{height:27.645000pt;}
.h7_c00069{height:29.948750pt;}
.hd_c00069{height:34.556250pt;}
.ha_c00069{height:36.860000pt;}
.h4_c00069{height:39.163750pt;}
.h6_c00069{height:41.467500pt;}
.he_c00069{height:43.771250pt;}
.hc_c00069{height:46.075000pt;}
.h5_c00069{height:48.378750pt;}
.h9_c00069{height:50.682500pt;}
.hb_c00069{height:51.963750pt;}
.h3_c00069{height:52.986250pt;}
.h2_c00069{height:55.290000pt;}
.h0_c00069{height:1025.280000pt;}
.h1_c00069{height:1025.333333pt;}
.w0_c00069{width:720.640000pt;}
.w1_c00069{width:720.666667pt;}
.x0_c00069{left:0.000000pt;}
.x34_c00069{left:81.280000pt;}
.xc_c00069{left:82.560000pt;}
.x46_c00069{left:101.760000pt;}
.x15_c00069{left:110.720000pt;}
.xd_c00069{left:120.960000pt;}
.x22_c00069{left:129.920000pt;}
.x2d_c00069{left:138.880000pt;}
.x3f_c00069{left:140.160000pt;}
.x4a_c00069{left:149.760000pt;}
.x23_c00069{left:158.080000pt;}
.x2e_c00069{left:168.960000pt;}
.x43_c00069{left:170.880000pt;}
.x3_c00069{left:177.280000pt;}
.xe_c00069{left:178.560000pt;}
.x3a_c00069{left:187.520000pt;}
.x24_c00069{left:195.840000pt;}
.x47_c00069{left:199.680000pt;}
.x4_c00069{left:206.080000pt;}
.xf_c00069{left:215.040000pt;}
.x1c_c00069{left:216.320000pt;}
.x2f_c00069{left:225.280000pt;}
.x16_c00069{left:234.880000pt;}
.x40_c00069{left:245.120000pt;}
.x38_c00069{left:253.440000pt;}
.x35_c00069{left:261.760000pt;}
.x25_c00069{left:263.680000pt;}
.x26_c00069{left:272.640000pt;}
.x17_c00069{left:274.560000pt;}
.x36_c00069{left:282.880000pt;}
.x5_c00069{left:292.480000pt;}
.x44_c00069{left:293.760000pt;}
.x1d_c00069{left:302.720000pt;}
.x42_c00069{left:304.640000pt;}
.x30_c00069{left:312.320000pt;}
.x27_c00069{left:320.640000pt;}
.x1e_c00069{left:330.240000pt;}
.x18_c00069{left:339.840000pt;}
.x10_c00069{left:341.120000pt;}
.x31_c00069{left:349.440000pt;}
.x3b_c00069{left:359.040000pt;}
.x19_c00069{left:368.000000pt;}
.x41_c00069{left:378.880000pt;}
.x3c_c00069{left:387.200000pt;}
.x6_c00069{left:397.440000pt;}
.x28_c00069{left:416.640000pt;}
.x48_c00069{left:425.600000pt;}
.x37_c00069{left:426.880000pt;}
.x7_c00069{left:435.840000pt;}
.x29_c00069{left:445.440000pt;}
.x32_c00069{left:455.680000pt;}
.x1a_c00069{left:464.000000pt;}
.x33_c00069{left:473.600000pt;}
.x11_c00069{left:483.840000pt;}
.x3d_c00069{left:493.440000pt;}
.x12_c00069{left:503.040000pt;}
.x8_c00069{left:512.640000pt;}
.x1f_c00069{left:522.240000pt;}
.x2a_c00069{left:531.840000pt;}
.x9_c00069{left:540.800000pt;}
.x1b_c00069{left:550.400000pt;}
.x2b_c00069{left:560.640000pt;}
.x20_c00069{left:570.240000pt;}
.xa_c00069{left:579.840000pt;}
.x45_c00069{left:588.800000pt;}
.x21_c00069{left:597.760000pt;}
.x13_c00069{left:599.040000pt;}
.x39_c00069{left:609.280000pt;}
.x2c_c00069{left:618.240000pt;}
.x14_c00069{left:627.840000pt;}
.x3e_c00069{left:631.040000pt;}
.x49_c00069{left:638.080000pt;}
.xb_c00069{left:647.040000pt;}
.x1_c00069{left:664.960000pt;}
.x2_c00069{left:680.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_95409bd475ef913ae85c7969.woff2')format("woff");}.ff1_c00070{font-family:ff1_c00070;line-height:1.109863;font-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_c00070{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m4_c00070{transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);}
.m51_c00070{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m23_c00070{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m53_c00070{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mb_c00070{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m54_c00070{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m56_c00070{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00070{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.md_c00070{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m30_c00070{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m41_c00070{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m58_c00070{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m28_c00070{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m39_c00070{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.me_c00070{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m0_c00070{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m11_c00070{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m18_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);}
.m45_c00070{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m12_c00070{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m48_c00070{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);}
.m29_c00070{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);}
.m55_c00070{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m22_c00070{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);}
.m31_c00070{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);}
.m4c_c00070{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);}
.m2_c00070{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m46_c00070{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00070{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);}
.m10_c00070{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);}
.m59_c00070{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);}
.m33_c00070{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m36_c00070{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m20_c00070{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00070{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);}
.m16_c00070{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m14_c00070{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);}
.m26_c00070{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00070{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);}
.mf_c00070{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);}
.m37_c00070{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m57_c00070{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00070{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m40_c00070{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m38_c00070{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);}
.m42_c00070{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00070{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);}
.m2e_c00070{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);}
.m34_c00070{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m13_c00070{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m44_c00070{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00070{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);}
.m7_c00070{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00070{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00070{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m52_c00070{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);}
.m1f_c00070{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00070{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m9_c00070{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_c00070{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);}
.mc_c00070{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m47_c00070{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00070{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);}
.m4e_c00070{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00070{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m8_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);}
.m35_c00070{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00070{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m24_c00070{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00070{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);}
.m6_c00070{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00070{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m25_c00070{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);}
.m21_c00070{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);}
.m3d_c00070{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m1_c00070{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m5_c00070{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m27_c00070{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m43_c00070{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.ma_c00070{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00070{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00070{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m50_c00070{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m19_c00070{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);}
.m4b_c00070{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00070{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00070{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m15_c00070{transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);}
.m49_c00070{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);}
.m3e_c00070{transform:matrix(0.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680000,0.000000,0.000000,0.250000,0,0);}
.v1_c00070{vertical-align:-5.760000px;}
.v0_c00070{vertical-align:0.000000px;}
.ls0_c00070{letter-spacing:0.000000px;}
.sc__c00070{text-shadow:none;}
.sc0_c00070{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00070{-webkit-text-stroke:0px transparent;}
.sc0_c00070{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00070{word-spacing:0.000000px;}
.ws1_c00070{word-spacing:2.136960px;}
.ws0_c00070{word-spacing:8.131200px;}
.fc0_c00070{color:transparent;}
.fs4_c00070{font-size:34.560000px;}
.fs9_c00070{font-size:37.440000px;}
.fsc_c00070{font-size:40.320000px;}
.fsb_c00070{font-size:43.200000px;}
.fs6_c00070{font-size:46.080000px;}
.fs1_c00070{font-size:48.960000px;}
.fs2_c00070{font-size:51.840000px;}
.fs8_c00070{font-size:54.720000px;}
.fs7_c00070{font-size:57.600000px;}
.fsa_c00070{font-size:60.480000px;}
.fsd_c00070{font-size:63.360000px;}
.fs5_c00070{font-size:66.240000px;}
.fs3_c00070{font-size:69.120000px;}
.fs0_c00070{font-size:72.000000px;}
.y0_c00070{bottom:0.000000px;}
.y69_c00070{bottom:67.680000px;}
.y67_c00070{bottom:69.840000px;}
.y68_c00070{bottom:71.280000px;}
.y66_c00070{bottom:72.000000px;}
.y65_c00070{bottom:72.720000px;}
.y64_c00070{bottom:111.600000px;}
.y60_c00070{bottom:112.320000px;}
.y63_c00070{bottom:113.760000px;}
.y62_c00070{bottom:114.480000px;}
.y61_c00070{bottom:115.200000px;}
.y5e_c00070{bottom:156.240000px;}
.y5f_c00070{bottom:156.960000px;}
.y5d_c00070{bottom:157.680000px;}
.y5c_c00070{bottom:158.400000px;}
.y59_c00070{bottom:196.560000px;}
.y5a_c00070{bottom:197.280000px;}
.y5b_c00070{bottom:198.720000px;}
.y58_c00070{bottom:199.440000px;}
.y57_c00070{bottom:249.840000px;}
.y54_c00070{bottom:250.560000px;}
.y53_c00070{bottom:251.280000px;}
.y55_c00070{bottom:252.000000px;}
.y56_c00070{bottom:252.720000px;}
.y52_c00070{bottom:292.320000px;}
.y50_c00070{bottom:293.040000px;}
.y51_c00070{bottom:295.200000px;}
.y4f_c00070{bottom:295.920000px;}
.y4d_c00070{bottom:334.800000px;}
.y4e_c00070{bottom:335.520000px;}
.y4b_c00070{bottom:336.960000px;}
.y4c_c00070{bottom:337.680000px;}
.y4a_c00070{bottom:338.400000px;}
.y46_c00070{bottom:377.280000px;}
.y47_c00070{bottom:378.000000px;}
.y49_c00070{bottom:379.440000px;}
.y48_c00070{bottom:380.160000px;}
.y43_c00070{bottom:419.760000px;}
.y45_c00070{bottom:421.200000px;}
.y44_c00070{bottom:422.640000px;}
.y42_c00070{bottom:423.360000px;}
.y41_c00070{bottom:462.960000px;}
.y40_c00070{bottom:465.120000px;}
.y3e_c00070{bottom:465.840000px;}
.y3f_c00070{bottom:466.560000px;}
.y3c_c00070{bottom:515.520000px;}
.y3d_c00070{bottom:516.240000px;}
.y39_c00070{bottom:516.960000px;}
.y3b_c00070{bottom:518.400000px;}
.y3a_c00070{bottom:519.120000px;}
.y35_c00070{bottom:558.720000px;}
.y36_c00070{bottom:559.440000px;}
.y38_c00070{bottom:560.880000px;}
.y34_c00070{bottom:561.600000px;}
.y37_c00070{bottom:562.320000px;}
.y32_c00070{bottom:601.200000px;}
.y31_c00070{bottom:601.920000px;}
.y30_c00070{bottom:602.640000px;}
.y2e_c00070{bottom:603.360000px;}
.y2f_c00070{bottom:604.080000px;}
.y33_c00070{bottom:604.800000px;}
.y2c_c00070{bottom:642.960000px;}
.y2a_c00070{bottom:643.680000px;}
.y29_c00070{bottom:646.560000px;}
.y2b_c00070{bottom:647.280000px;}
.y2d_c00070{bottom:648.000000px;}
.y28_c00070{bottom:686.880000px;}
.y26_c00070{bottom:689.040000px;}
.y27_c00070{bottom:689.760000px;}
.y23_c00070{bottom:729.360000px;}
.y25_c00070{bottom:730.080000px;}
.y22_c00070{bottom:731.520000px;}
.y24_c00070{bottom:732.240000px;}
.y20_c00070{bottom:771.840000px;}
.y1f_c00070{bottom:772.560000px;}
.y1e_c00070{bottom:773.280000px;}
.y1c_c00070{bottom:774.000000px;}
.y1d_c00070{bottom:774.720000px;}
.y21_c00070{bottom:775.440000px;}
.y1a_c00070{bottom:814.320000px;}
.y1b_c00070{bottom:815.040000px;}
.y19_c00070{bottom:817.200000px;}
.y13_c00070{bottom:866.160000px;}
.y17_c00070{bottom:866.880000px;}
.y14_c00070{bottom:867.600000px;}
.y18_c00070{bottom:869.040000px;}
.y15_c00070{bottom:869.760000px;}
.y16_c00070{bottom:870.480000px;}
.yd_c00070{bottom:909.360000px;}
.yf_c00070{bottom:910.080000px;}
.y11_c00070{bottom:910.800000px;}
.ye_c00070{bottom:912.240000px;}
.y10_c00070{bottom:912.960000px;}
.y12_c00070{bottom:913.680000px;}
.y9_c00070{bottom:952.560000px;}
.y7_c00070{bottom:953.280000px;}
.y8_c00070{bottom:954.000000px;}
.ya_c00070{bottom:954.720000px;}
.yb_c00070{bottom:955.440000px;}
.yc_c00070{bottom:956.160000px;}
.y3_c00070{bottom:994.320000px;}
.y6_c00070{bottom:995.760000px;}
.y2_c00070{bottom:996.480000px;}
.y4_c00070{bottom:997.920000px;}
.y5_c00070{bottom:998.640000px;}
.y1_c00070{bottom:1067.760000px;}
.h6_c00070{height:31.100625px;}
.hc_c00070{height:33.692344px;}
.hf_c00070{height:36.284062px;}
.he_c00070{height:38.875781px;}
.h8_c00070{height:41.467500px;}
.h3_c00070{height:44.059219px;}
.h4_c00070{height:46.650937px;}
.hb_c00070{height:49.242656px;}
.h9_c00070{height:51.834375px;}
.hd_c00070{height:54.426094px;}
.ha_c00070{height:56.441250px;}
.h10_c00070{height:57.017812px;}
.h7_c00070{height:59.609531px;}
.h5_c00070{height:62.201250px;}
.h2_c00070{height:64.792969px;}
.h0_c00070{height:1153.440000px;}
.h1_c00070{height:1153.500000px;}
.w0_c00070{width:810.000000px;}
.x0_c00070{left:0.000000px;}
.x48_c00070{left:90.720000px;}
.x2d_c00070{left:92.160000px;}
.x2_c00070{left:93.600000px;}
.x3_c00070{left:125.280000px;}
.x1f_c00070{left:146.880000px;}
.x2a_c00070{left:157.680000px;}
.x4f_c00070{left:167.040000px;}
.xf_c00070{left:168.480000px;}
.x35_c00070{left:179.280000px;}
.x17_c00070{left:189.360000px;}
.x4_c00070{left:192.960000px;}
.x23_c00070{left:201.600000px;}
.x36_c00070{left:210.960000px;}
.x2b_c00070{left:222.480000px;}
.x5_c00070{left:224.640000px;}
.x42_c00070{left:232.560000px;}
.x39_c00070{left:242.640000px;}
.x6_c00070{left:244.800000px;}
.x4d_c00070{left:253.440000px;}
.x20_c00070{left:254.880000px;}
.x59_c00070{left:264.240000px;}
.x49_c00070{left:265.680000px;}
.x7_c00070{left:275.760000px;}
.x45_c00070{left:285.840000px;}
.x50_c00070{left:295.920000px;}
.x21_c00070{left:297.360000px;}
.x53_c00070{left:307.440000px;}
.x2e_c00070{left:308.880000px;}
.x18_c00070{left:318.960000px;}
.x10_c00070{left:329.760000px;}
.x56_c00070{left:339.120000px;}
.x8_c00070{left:341.280000px;}
.x2f_c00070{left:352.080000px;}
.x19_c00070{left:362.160000px;}
.x51_c00070{left:364.320000px;}
.x57_c00070{left:371.520000px;}
.x11_c00070{left:372.960000px;}
.x30_c00070{left:384.480000px;}
.x3d_c00070{left:394.560000px;}
.x24_c00070{left:404.640000px;}
.x54_c00070{left:414.720000px;}
.x2c_c00070{left:425.520000px;}
.x31_c00070{left:426.960000px;}
.x1a_c00070{left:437.040000px;}
.x22_c00070{left:447.120000px;}
.x58_c00070{left:457.920000px;}
.x9_c00070{left:459.360000px;}
.x25_c00070{left:468.720000px;}
.x1b_c00070{left:470.160000px;}
.x3a_c00070{left:490.320000px;}
.xa_c00070{left:492.480000px;}
.x32_c00070{left:493.920000px;}
.x46_c00070{left:501.120000px;}
.x12_c00070{left:503.280000px;}
.x4c_c00070{left:512.640000px;}
.x47_c00070{left:523.440000px;}
.x4a_c00070{left:533.520000px;}
.x37_c00070{left:534.960000px;}
.x26_c00070{left:545.760000px;}
.x43_c00070{left:555.120000px;}
.x13_c00070{left:557.280000px;}
.x3e_c00070{left:565.920000px;}
.x1c_c00070{left:568.080000px;}
.x38_c00070{left:577.440000px;}
.xb_c00070{left:588.240000px;}
.x14_c00070{left:589.680000px;}
.x27_c00070{left:598.320000px;}
.x3b_c00070{left:609.840000px;}
.x33_c00070{left:611.280000px;}
.x44_c00070{left:620.640000px;}
.x3f_c00070{left:630.720000px;}
.x4b_c00070{left:641.520000px;}
.x55_c00070{left:644.400000px;}
.x4e_c00070{left:653.040000px;}
.x15_c00070{left:654.480000px;}
.xc_c00070{left:655.920000px;}
.x40_c00070{left:663.120000px;}
.x1d_c00070{left:665.280000px;}
.x28_c00070{left:674.640000px;}
.x1e_c00070{left:685.440000px;}
.x3c_c00070{left:695.520000px;}
.xd_c00070{left:696.960000px;}
.x34_c00070{left:698.400000px;}
.x52_c00070{left:706.320000px;}
.x16_c00070{left:717.840000px;}
.x29_c00070{left:719.280000px;}
.x1_c00070{left:720.720000px;}
.x41_c00070{left:728.640000px;}
.xe_c00070{left:740.160000px;}
@media print{
.v1_c00070{vertical-align:-5.120000pt;}
.v0_c00070{vertical-align:0.000000pt;}
.ls0_c00070{letter-spacing:0.000000pt;}
.ws2_c00070{word-spacing:0.000000pt;}
.ws1_c00070{word-spacing:1.899520pt;}
.ws0_c00070{word-spacing:7.227733pt;}
.fs4_c00070{font-size:30.720000pt;}
.fs9_c00070{font-size:33.280000pt;}
.fsc_c00070{font-size:35.840000pt;}
.fsb_c00070{font-size:38.400000pt;}
.fs6_c00070{font-size:40.960000pt;}
.fs1_c00070{font-size:43.520000pt;}
.fs2_c00070{font-size:46.080000pt;}
.fs8_c00070{font-size:48.640000pt;}
.fs7_c00070{font-size:51.200000pt;}
.fsa_c00070{font-size:53.760000pt;}
.fsd_c00070{font-size:56.320000pt;}
.fs5_c00070{font-size:58.880000pt;}
.fs3_c00070{font-size:61.440000pt;}
.fs0_c00070{font-size:64.000000pt;}
.y0_c00070{bottom:0.000000pt;}
.y69_c00070{bottom:60.160000pt;}
.y67_c00070{bottom:62.080000pt;}
.y68_c00070{bottom:63.360000pt;}
.y66_c00070{bottom:64.000000pt;}
.y65_c00070{bottom:64.640000pt;}
.y64_c00070{bottom:99.200000pt;}
.y60_c00070{bottom:99.840000pt;}
.y63_c00070{bottom:101.120000pt;}
.y62_c00070{bottom:101.760000pt;}
.y61_c00070{bottom:102.400000pt;}
.y5e_c00070{bottom:138.880000pt;}
.y5f_c00070{bottom:139.520000pt;}
.y5d_c00070{bottom:140.160000pt;}
.y5c_c00070{bottom:140.800000pt;}
.y59_c00070{bottom:174.720000pt;}
.y5a_c00070{bottom:175.360000pt;}
.y5b_c00070{bottom:176.640000pt;}
.y58_c00070{bottom:177.280000pt;}
.y57_c00070{bottom:222.080000pt;}
.y54_c00070{bottom:222.720000pt;}
.y53_c00070{bottom:223.360000pt;}
.y55_c00070{bottom:224.000000pt;}
.y56_c00070{bottom:224.640000pt;}
.y52_c00070{bottom:259.840000pt;}
.y50_c00070{bottom:260.480000pt;}
.y51_c00070{bottom:262.400000pt;}
.y4f_c00070{bottom:263.040000pt;}
.y4d_c00070{bottom:297.600000pt;}
.y4e_c00070{bottom:298.240000pt;}
.y4b_c00070{bottom:299.520000pt;}
.y4c_c00070{bottom:300.160000pt;}
.y4a_c00070{bottom:300.800000pt;}
.y46_c00070{bottom:335.360000pt;}
.y47_c00070{bottom:336.000000pt;}
.y49_c00070{bottom:337.280000pt;}
.y48_c00070{bottom:337.920000pt;}
.y43_c00070{bottom:373.120000pt;}
.y45_c00070{bottom:374.400000pt;}
.y44_c00070{bottom:375.680000pt;}
.y42_c00070{bottom:376.320000pt;}
.y41_c00070{bottom:411.520000pt;}
.y40_c00070{bottom:413.440000pt;}
.y3e_c00070{bottom:414.080000pt;}
.y3f_c00070{bottom:414.720000pt;}
.y3c_c00070{bottom:458.240000pt;}
.y3d_c00070{bottom:458.880000pt;}
.y39_c00070{bottom:459.520000pt;}
.y3b_c00070{bottom:460.800000pt;}
.y3a_c00070{bottom:461.440000pt;}
.y35_c00070{bottom:496.640000pt;}
.y36_c00070{bottom:497.280000pt;}
.y38_c00070{bottom:498.560000pt;}
.y34_c00070{bottom:499.200000pt;}
.y37_c00070{bottom:499.840000pt;}
.y32_c00070{bottom:534.400000pt;}
.y31_c00070{bottom:535.040000pt;}
.y30_c00070{bottom:535.680000pt;}
.y2e_c00070{bottom:536.320000pt;}
.y2f_c00070{bottom:536.960000pt;}
.y33_c00070{bottom:537.600000pt;}
.y2c_c00070{bottom:571.520000pt;}
.y2a_c00070{bottom:572.160000pt;}
.y29_c00070{bottom:574.720000pt;}
.y2b_c00070{bottom:575.360000pt;}
.y2d_c00070{bottom:576.000000pt;}
.y28_c00070{bottom:610.560000pt;}
.y26_c00070{bottom:612.480000pt;}
.y27_c00070{bottom:613.120000pt;}
.y23_c00070{bottom:648.320000pt;}
.y25_c00070{bottom:648.960000pt;}
.y22_c00070{bottom:650.240000pt;}
.y24_c00070{bottom:650.880000pt;}
.y20_c00070{bottom:686.080000pt;}
.y1f_c00070{bottom:686.720000pt;}
.y1e_c00070{bottom:687.360000pt;}
.y1c_c00070{bottom:688.000000pt;}
.y1d_c00070{bottom:688.640000pt;}
.y21_c00070{bottom:689.280000pt;}
.y1a_c00070{bottom:723.840000pt;}
.y1b_c00070{bottom:724.480000pt;}
.y19_c00070{bottom:726.400000pt;}
.y13_c00070{bottom:769.920000pt;}
.y17_c00070{bottom:770.560000pt;}
.y14_c00070{bottom:771.200000pt;}
.y18_c00070{bottom:772.480000pt;}
.y15_c00070{bottom:773.120000pt;}
.y16_c00070{bottom:773.760000pt;}
.yd_c00070{bottom:808.320000pt;}
.yf_c00070{bottom:808.960000pt;}
.y11_c00070{bottom:809.600000pt;}
.ye_c00070{bottom:810.880000pt;}
.y10_c00070{bottom:811.520000pt;}
.y12_c00070{bottom:812.160000pt;}
.y9_c00070{bottom:846.720000pt;}
.y7_c00070{bottom:847.360000pt;}
.y8_c00070{bottom:848.000000pt;}
.ya_c00070{bottom:848.640000pt;}
.yb_c00070{bottom:849.280000pt;}
.yc_c00070{bottom:849.920000pt;}
.y3_c00070{bottom:883.840000pt;}
.y6_c00070{bottom:885.120000pt;}
.y2_c00070{bottom:885.760000pt;}
.y4_c00070{bottom:887.040000pt;}
.y5_c00070{bottom:887.680000pt;}
.y1_c00070{bottom:949.120000pt;}
.h6_c00070{height:27.645000pt;}
.hc_c00070{height:29.948750pt;}
.hf_c00070{height:32.252500pt;}
.he_c00070{height:34.556250pt;}
.h8_c00070{height:36.860000pt;}
.h3_c00070{height:39.163750pt;}
.h4_c00070{height:41.467500pt;}
.hb_c00070{height:43.771250pt;}
.h9_c00070{height:46.075000pt;}
.hd_c00070{height:48.378750pt;}
.ha_c00070{height:50.170000pt;}
.h10_c00070{height:50.682500pt;}
.h7_c00070{height:52.986250pt;}
.h5_c00070{height:55.290000pt;}
.h2_c00070{height:57.593750pt;}
.h0_c00070{height:1025.280000pt;}
.h1_c00070{height:1025.333333pt;}
.w0_c00070{width:720.000000pt;}
.x0_c00070{left:0.000000pt;}
.x48_c00070{left:80.640000pt;}
.x2d_c00070{left:81.920000pt;}
.x2_c00070{left:83.200000pt;}
.x3_c00070{left:111.360000pt;}
.x1f_c00070{left:130.560000pt;}
.x2a_c00070{left:140.160000pt;}
.x4f_c00070{left:148.480000pt;}
.xf_c00070{left:149.760000pt;}
.x35_c00070{left:159.360000pt;}
.x17_c00070{left:168.320000pt;}
.x4_c00070{left:171.520000pt;}
.x23_c00070{left:179.200000pt;}
.x36_c00070{left:187.520000pt;}
.x2b_c00070{left:197.760000pt;}
.x5_c00070{left:199.680000pt;}
.x42_c00070{left:206.720000pt;}
.x39_c00070{left:215.680000pt;}
.x6_c00070{left:217.600000pt;}
.x4d_c00070{left:225.280000pt;}
.x20_c00070{left:226.560000pt;}
.x59_c00070{left:234.880000pt;}
.x49_c00070{left:236.160000pt;}
.x7_c00070{left:245.120000pt;}
.x45_c00070{left:254.080000pt;}
.x50_c00070{left:263.040000pt;}
.x21_c00070{left:264.320000pt;}
.x53_c00070{left:273.280000pt;}
.x2e_c00070{left:274.560000pt;}
.x18_c00070{left:283.520000pt;}
.x10_c00070{left:293.120000pt;}
.x56_c00070{left:301.440000pt;}
.x8_c00070{left:303.360000pt;}
.x2f_c00070{left:312.960000pt;}
.x19_c00070{left:321.920000pt;}
.x51_c00070{left:323.840000pt;}
.x57_c00070{left:330.240000pt;}
.x11_c00070{left:331.520000pt;}
.x30_c00070{left:341.760000pt;}
.x3d_c00070{left:350.720000pt;}
.x24_c00070{left:359.680000pt;}
.x54_c00070{left:368.640000pt;}
.x2c_c00070{left:378.240000pt;}
.x31_c00070{left:379.520000pt;}
.x1a_c00070{left:388.480000pt;}
.x22_c00070{left:397.440000pt;}
.x58_c00070{left:407.040000pt;}
.x9_c00070{left:408.320000pt;}
.x25_c00070{left:416.640000pt;}
.x1b_c00070{left:417.920000pt;}
.x3a_c00070{left:435.840000pt;}
.xa_c00070{left:437.760000pt;}
.x32_c00070{left:439.040000pt;}
.x46_c00070{left:445.440000pt;}
.x12_c00070{left:447.360000pt;}
.x4c_c00070{left:455.680000pt;}
.x47_c00070{left:465.280000pt;}
.x4a_c00070{left:474.240000pt;}
.x37_c00070{left:475.520000pt;}
.x26_c00070{left:485.120000pt;}
.x43_c00070{left:493.440000pt;}
.x13_c00070{left:495.360000pt;}
.x3e_c00070{left:503.040000pt;}
.x1c_c00070{left:504.960000pt;}
.x38_c00070{left:513.280000pt;}
.xb_c00070{left:522.880000pt;}
.x14_c00070{left:524.160000pt;}
.x27_c00070{left:531.840000pt;}
.x3b_c00070{left:542.080000pt;}
.x33_c00070{left:543.360000pt;}
.x44_c00070{left:551.680000pt;}
.x3f_c00070{left:560.640000pt;}
.x4b_c00070{left:570.240000pt;}
.x55_c00070{left:572.800000pt;}
.x4e_c00070{left:580.480000pt;}
.x15_c00070{left:581.760000pt;}
.xc_c00070{left:583.040000pt;}
.x40_c00070{left:589.440000pt;}
.x1d_c00070{left:591.360000pt;}
.x28_c00070{left:599.680000pt;}
.x1e_c00070{left:609.280000pt;}
.x3c_c00070{left:618.240000pt;}
.xd_c00070{left:619.520000pt;}
.x34_c00070{left:620.800000pt;}
.x52_c00070{left:627.840000pt;}
.x16_c00070{left:638.080000pt;}
.x29_c00070{left:639.360000pt;}
.x1_c00070{left:640.640000pt;}
.x41_c00070{left:647.680000pt;}
.xe_c00070{left:657.920000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_82db8c1692d931ec78530043.woff2')format("woff");}.ff1_c00071{font-family:ff1_c00071;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m53_c00071{transform:matrix(0.187350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187350,0.000000,0.000000,0.250000,0,0);}
.m44_c00071{transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);}
.m59_c00071{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.ma_c00071{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m22_c00071{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m34_c00071{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m10_c00071{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00071{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m58_c00071{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00071{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m39_c00071{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m0_c00071{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m46_c00071{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m20_c00071{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m29_c00071{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m45_c00071{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00071{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m14_c00071{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00071{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00071{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00071{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m15_c00071{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);}
.m54_c00071{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m1_c00071{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m32_c00071{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00071{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);}
.m36_c00071{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m16_c00071{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m7_c00071{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m3_c00071{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_c00071{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);}
.m52_c00071{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00071{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m18_c00071{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m19_c00071{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);}
.m4c_c00071{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m56_c00071{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);}
.m21_c00071{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m6_c00071{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.md_c00071{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);}
.m9_c00071{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m33_c00071{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00071{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m37_c00071{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00071{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m35_c00071{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);}
.m50_c00071{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m48_c00071{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);}
.mb_c00071{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);}
.m60_c00071{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m41_c00071{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00071{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00071{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m40_c00071{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m38_c00071{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m24_c00071{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);}
.m4a_c00071{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m42_c00071{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);}
.m2a_c00071{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00071{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m17_c00071{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00071{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m4_c00071{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);}
.me_c00071{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m31_c00071{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m43_c00071{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00071{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m51_c00071{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m13_c00071{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m12_c00071{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);}
.m4d_c00071{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);}
.m4b_c00071{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00071{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00071{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m11_c00071{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);}
.m25_c00071{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00071{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m28_c00071{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00071{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);}
.m57_c00071{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m61_c00071{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m63_c00071{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);}
.m5_c00071{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m64_c00071{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);}
.m62_c00071{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00071{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);}
.m3d_c00071{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m8_c00071{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.mc_c00071{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00071{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m26_c00071{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00071{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00071{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.mf_c00071{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m23_c00071{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);}
.m30_c00071{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);}
.m49_c00071{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m2_c00071{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00071{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);}
.m3e_c00071{transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);}
.m47_c00071{transform:matrix(0.877500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.877500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.877500,0.000000,0.000000,0.250000,0,0);}
.v0_c00071{vertical-align:0.000000px;}
.ls0_c00071{letter-spacing:0.000000px;}
.sc__c00071{text-shadow:none;}
.sc0_c00071{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00071{-webkit-text-stroke:0px transparent;}
.sc0_c00071{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00071{word-spacing:0.000000px;}
.ws0_c00071{word-spacing:0.669360px;}
.fc0_c00071{color:transparent;}
.fs3_c00071{font-size:34.560000px;}
.fs2_c00071{font-size:37.440000px;}
.fsc_c00071{font-size:40.320000px;}
.fsa_c00071{font-size:43.200000px;}
.fs6_c00071{font-size:46.080000px;}
.fs5_c00071{font-size:48.960000px;}
.fs4_c00071{font-size:51.840000px;}
.fs9_c00071{font-size:54.720000px;}
.fs7_c00071{font-size:57.600000px;}
.fs1_c00071{font-size:60.480000px;}
.fsb_c00071{font-size:63.360000px;}
.fsd_c00071{font-size:66.240000px;}
.fs8_c00071{font-size:69.120000px;}
.fs0_c00071{font-size:72.000000px;}
.fse_c00071{font-size:77.760000px;}
.y0_c00071{bottom:0.000000px;}
.y65_c00071{bottom:68.400000px;}
.y62_c00071{bottom:69.120000px;}
.y64_c00071{bottom:71.280000px;}
.y63_c00071{bottom:72.000000px;}
.y61_c00071{bottom:72.720000px;}
.y60_c00071{bottom:74.160000px;}
.y5d_c00071{bottom:113.040000px;}
.y5e_c00071{bottom:113.760000px;}
.y5f_c00071{bottom:114.480000px;}
.y5c_c00071{bottom:115.200000px;}
.y5b_c00071{bottom:115.920000px;}
.y59_c00071{bottom:154.800000px;}
.y5a_c00071{bottom:155.520000px;}
.y58_c00071{bottom:156.240000px;}
.y56_c00071{bottom:157.680000px;}
.y55_c00071{bottom:158.400000px;}
.y57_c00071{bottom:159.120000px;}
.y52_c00071{bottom:208.800000px;}
.y50_c00071{bottom:210.240000px;}
.y53_c00071{bottom:210.960000px;}
.y54_c00071{bottom:211.680000px;}
.y51_c00071{bottom:212.400000px;}
.y4f_c00071{bottom:249.840000px;}
.y4c_c00071{bottom:251.280000px;}
.y4b_c00071{bottom:252.000000px;}
.y4e_c00071{bottom:253.440000px;}
.y4d_c00071{bottom:254.160000px;}
.y49_c00071{bottom:293.040000px;}
.y47_c00071{bottom:293.760000px;}
.y44_c00071{bottom:294.480000px;}
.y4a_c00071{bottom:295.920000px;}
.y46_c00071{bottom:296.640000px;}
.y45_c00071{bottom:297.360000px;}
.y43_c00071{bottom:298.080000px;}
.y48_c00071{bottom:300.960000px;}
.y41_c00071{bottom:336.240000px;}
.y40_c00071{bottom:336.960000px;}
.y42_c00071{bottom:338.400000px;}
.y3f_c00071{bottom:339.120000px;}
.y3c_c00071{bottom:379.440000px;}
.y3e_c00071{bottom:380.880000px;}
.y3d_c00071{bottom:381.600000px;}
.y3b_c00071{bottom:421.920000px;}
.y3a_c00071{bottom:423.360000px;}
.y39_c00071{bottom:424.080000px;}
.y38_c00071{bottom:424.800000px;}
.y35_c00071{bottom:474.480000px;}
.y37_c00071{bottom:475.920000px;}
.y36_c00071{bottom:476.640000px;}
.y34_c00071{bottom:477.360000px;}
.y31_c00071{bottom:509.760000px;}
.y32_c00071{bottom:516.240000px;}
.y2f_c00071{bottom:516.960000px;}
.y2e_c00071{bottom:517.680000px;}
.y30_c00071{bottom:519.840000px;}
.y33_c00071{bottom:520.560000px;}
.y2d_c00071{bottom:530.640000px;}
.y2b_c00071{bottom:559.440000px;}
.y2c_c00071{bottom:560.880000px;}
.y2a_c00071{bottom:561.600000px;}
.y29_c00071{bottom:562.320000px;}
.y28_c00071{bottom:563.040000px;}
.y27_c00071{bottom:602.640000px;}
.y26_c00071{bottom:604.080000px;}
.y25_c00071{bottom:604.800000px;}
.y24_c00071{bottom:605.520000px;}
.y23_c00071{bottom:645.120000px;}
.y22_c00071{bottom:647.280000px;}
.y21_c00071{bottom:648.000000px;}
.y1f_c00071{bottom:686.160000px;}
.y1c_c00071{bottom:686.880000px;}
.y20_c00071{bottom:687.600000px;}
.y1e_c00071{bottom:689.760000px;}
.y1d_c00071{bottom:690.480000px;}
.y19_c00071{bottom:732.240000px;}
.y1a_c00071{bottom:732.960000px;}
.y1b_c00071{bottom:733.680000px;}
.y18_c00071{bottom:772.560000px;}
.y16_c00071{bottom:774.720000px;}
.y15_c00071{bottom:775.440000px;}
.y17_c00071{bottom:776.160000px;}
.y12_c00071{bottom:814.320000px;}
.y13_c00071{bottom:817.920000px;}
.y14_c00071{bottom:818.640000px;}
.y11_c00071{bottom:858.240000px;}
.yf_c00071{bottom:860.400000px;}
.y10_c00071{bottom:861.120000px;}
.ye_c00071{bottom:910.800000px;}
.yc_c00071{bottom:912.960000px;}
.yd_c00071{bottom:913.680000px;}
.ya_c00071{bottom:954.000000px;}
.yb_c00071{bottom:954.720000px;}
.y7_c00071{bottom:955.440000px;}
.y9_c00071{bottom:956.160000px;}
.y8_c00071{bottom:956.880000px;}
.y2_c00071{bottom:995.040000px;}
.y4_c00071{bottom:996.480000px;}
.y3_c00071{bottom:998.640000px;}
.y5_c00071{bottom:999.360000px;}
.y6_c00071{bottom:1000.080000px;}
.y1_c00071{bottom:1064.160000px;}
.h5_c00071{height:31.100625px;}
.h4_c00071{height:33.692344px;}
.he_c00071{height:36.284062px;}
.hc_c00071{height:38.875781px;}
.h8_c00071{height:41.467500px;}
.h7_c00071{height:44.059219px;}
.h6_c00071{height:46.650937px;}
.hb_c00071{height:49.242656px;}
.h9_c00071{height:51.834375px;}
.h3_c00071{height:54.426094px;}
.hd_c00071{height:57.017812px;}
.hf_c00071{height:59.609531px;}
.ha_c00071{height:62.201250px;}
.h2_c00071{height:64.792969px;}
.h10_c00071{height:69.976406px;}
.h0_c00071{height:1152.720000px;}
.h1_c00071{height:1152.750000px;}
.w1_c00071{width:808.500000px;}
.w0_c00071{width:808.560000px;}
.x0_c00071{left:0.000000px;}
.x16_c00071{left:90.720000px;}
.x2_c00071{left:92.160000px;}
.x41_c00071{left:93.600000px;}
.x3a_c00071{left:112.320000px;}
.x2e_c00071{left:123.840000px;}
.x22_c00071{left:133.920000px;}
.x28_c00071{left:144.720000px;}
.x57_c00071{left:146.160000px;}
.x49_c00071{left:156.240000px;}
.x51_c00071{left:157.680000px;}
.x17_c00071{left:166.320000px;}
.x4b_c00071{left:168.480000px;}
.xe_c00071{left:177.120000px;}
.x18_c00071{left:188.640000px;}
.x1a_c00071{left:198.720000px;}
.x3_c00071{left:209.520000px;}
.x2f_c00071{left:218.880000px;}
.x19_c00071{left:220.320000px;}
.x1b_c00071{left:231.120000px;}
.x42_c00071{left:232.560000px;}
.x4c_c00071{left:241.200000px;}
.x58_c00071{left:242.640000px;}
.x4_c00071{left:253.440000px;}
.x23_c00071{left:263.520000px;}
.x33_c00071{left:275.040000px;}
.x29_c00071{left:285.120000px;}
.x4d_c00071{left:287.280000px;}
.xf_c00071{left:295.920000px;}
.x3b_c00071{left:306.720000px;}
.x4a_c00071{left:308.880000px;}
.x1c_c00071{left:316.080000px;}
.x40_c00071{left:317.520000px;}
.x52_c00071{left:318.960000px;}
.x10_c00071{left:328.320000px;}
.x4e_c00071{left:338.400000px;}
.x34_c00071{left:349.200000px;}
.x5_c00071{left:350.640000px;}
.x1d_c00071{left:360.720000px;}
.x6_c00071{left:371.520000px;}
.x3c_c00071{left:380.880000px;}
.x30_c00071{left:382.320000px;}
.x2a_c00071{left:392.400000px;}
.x7_c00071{left:402.480000px;}
.x24_c00071{left:403.920000px;}
.x31_c00071{left:413.280000px;}
.x2b_c00071{left:414.720000px;}
.x55_c00071{left:424.080000px;}
.x37_c00071{left:425.520000px;}
.x25_c00071{left:436.320000px;}
.x11_c00071{left:438.480000px;}
.x53_c00071{left:445.680000px;}
.x2c_c00071{left:447.120000px;}
.x1e_c00071{left:457.920000px;}
.x8_c00071{left:468.720000px;}
.x4f_c00071{left:478.080000px;}
.x12_c00071{left:479.520000px;}
.x1f_c00071{left:490.320000px;}
.x43_c00071{left:498.240000px;}
.x26_c00071{left:499.680000px;}
.x9_c00071{left:501.120000px;}
.x35_c00071{left:511.920000px;}
.x32_c00071{left:522.720000px;}
.xa_c00071{left:533.520000px;}
.x36_c00071{left:542.160000px;}
.x47_c00071{left:543.600000px;}
.x44_c00071{left:555.120000px;}
.x3d_c00071{left:565.200000px;}
.x20_c00071{left:574.560000px;}
.x54_c00071{left:576.000000px;}
.x2d_c00071{left:577.440000px;}
.x3e_c00071{left:586.800000px;}
.x13_c00071{left:596.880000px;}
.x27_c00071{left:607.680000px;}
.x38_c00071{left:619.920000px;}
.x48_c00071{left:629.280000px;}
.x21_c00071{left:640.800000px;}
.xb_c00071{left:643.680000px;}
.x45_c00071{left:650.880000px;}
.x39_c00071{left:652.320000px;}
.x3f_c00071{left:661.680000px;}
.x56_c00071{left:663.120000px;}
.x50_c00071{left:665.280000px;}
.x14_c00071{left:673.200000px;}
.x46_c00071{left:684.720000px;}
.xc_c00071{left:705.600000px;}
.x15_c00071{left:716.400000px;}
.x1_c00071{left:738.720000px;}
.xd_c00071{left:749.520000px;}
@media print{
.v0_c00071{vertical-align:0.000000pt;}
.ls0_c00071{letter-spacing:0.000000pt;}
.ws1_c00071{word-spacing:0.000000pt;}
.ws0_c00071{word-spacing:0.594987pt;}
.fs3_c00071{font-size:30.720000pt;}
.fs2_c00071{font-size:33.280000pt;}
.fsc_c00071{font-size:35.840000pt;}
.fsa_c00071{font-size:38.400000pt;}
.fs6_c00071{font-size:40.960000pt;}
.fs5_c00071{font-size:43.520000pt;}
.fs4_c00071{font-size:46.080000pt;}
.fs9_c00071{font-size:48.640000pt;}
.fs7_c00071{font-size:51.200000pt;}
.fs1_c00071{font-size:53.760000pt;}
.fsb_c00071{font-size:56.320000pt;}
.fsd_c00071{font-size:58.880000pt;}
.fs8_c00071{font-size:61.440000pt;}
.fs0_c00071{font-size:64.000000pt;}
.fse_c00071{font-size:69.120000pt;}
.y0_c00071{bottom:0.000000pt;}
.y65_c00071{bottom:60.800000pt;}
.y62_c00071{bottom:61.440000pt;}
.y64_c00071{bottom:63.360000pt;}
.y63_c00071{bottom:64.000000pt;}
.y61_c00071{bottom:64.640000pt;}
.y60_c00071{bottom:65.920000pt;}
.y5d_c00071{bottom:100.480000pt;}
.y5e_c00071{bottom:101.120000pt;}
.y5f_c00071{bottom:101.760000pt;}
.y5c_c00071{bottom:102.400000pt;}
.y5b_c00071{bottom:103.040000pt;}
.y59_c00071{bottom:137.600000pt;}
.y5a_c00071{bottom:138.240000pt;}
.y58_c00071{bottom:138.880000pt;}
.y56_c00071{bottom:140.160000pt;}
.y55_c00071{bottom:140.800000pt;}
.y57_c00071{bottom:141.440000pt;}
.y52_c00071{bottom:185.600000pt;}
.y50_c00071{bottom:186.880000pt;}
.y53_c00071{bottom:187.520000pt;}
.y54_c00071{bottom:188.160000pt;}
.y51_c00071{bottom:188.800000pt;}
.y4f_c00071{bottom:222.080000pt;}
.y4c_c00071{bottom:223.360000pt;}
.y4b_c00071{bottom:224.000000pt;}
.y4e_c00071{bottom:225.280000pt;}
.y4d_c00071{bottom:225.920000pt;}
.y49_c00071{bottom:260.480000pt;}
.y47_c00071{bottom:261.120000pt;}
.y44_c00071{bottom:261.760000pt;}
.y4a_c00071{bottom:263.040000pt;}
.y46_c00071{bottom:263.680000pt;}
.y45_c00071{bottom:264.320000pt;}
.y43_c00071{bottom:264.960000pt;}
.y48_c00071{bottom:267.520000pt;}
.y41_c00071{bottom:298.880000pt;}
.y40_c00071{bottom:299.520000pt;}
.y42_c00071{bottom:300.800000pt;}
.y3f_c00071{bottom:301.440000pt;}
.y3c_c00071{bottom:337.280000pt;}
.y3e_c00071{bottom:338.560000pt;}
.y3d_c00071{bottom:339.200000pt;}
.y3b_c00071{bottom:375.040000pt;}
.y3a_c00071{bottom:376.320000pt;}
.y39_c00071{bottom:376.960000pt;}
.y38_c00071{bottom:377.600000pt;}
.y35_c00071{bottom:421.760000pt;}
.y37_c00071{bottom:423.040000pt;}
.y36_c00071{bottom:423.680000pt;}
.y34_c00071{bottom:424.320000pt;}
.y31_c00071{bottom:453.120000pt;}
.y32_c00071{bottom:458.880000pt;}
.y2f_c00071{bottom:459.520000pt;}
.y2e_c00071{bottom:460.160000pt;}
.y30_c00071{bottom:462.080000pt;}
.y33_c00071{bottom:462.720000pt;}
.y2d_c00071{bottom:471.680000pt;}
.y2b_c00071{bottom:497.280000pt;}
.y2c_c00071{bottom:498.560000pt;}
.y2a_c00071{bottom:499.200000pt;}
.y29_c00071{bottom:499.840000pt;}
.y28_c00071{bottom:500.480000pt;}
.y27_c00071{bottom:535.680000pt;}
.y26_c00071{bottom:536.960000pt;}
.y25_c00071{bottom:537.600000pt;}
.y24_c00071{bottom:538.240000pt;}
.y23_c00071{bottom:573.440000pt;}
.y22_c00071{bottom:575.360000pt;}
.y21_c00071{bottom:576.000000pt;}
.y1f_c00071{bottom:609.920000pt;}
.y1c_c00071{bottom:610.560000pt;}
.y20_c00071{bottom:611.200000pt;}
.y1e_c00071{bottom:613.120000pt;}
.y1d_c00071{bottom:613.760000pt;}
.y19_c00071{bottom:650.880000pt;}
.y1a_c00071{bottom:651.520000pt;}
.y1b_c00071{bottom:652.160000pt;}
.y18_c00071{bottom:686.720000pt;}
.y16_c00071{bottom:688.640000pt;}
.y15_c00071{bottom:689.280000pt;}
.y17_c00071{bottom:689.920000pt;}
.y12_c00071{bottom:723.840000pt;}
.y13_c00071{bottom:727.040000pt;}
.y14_c00071{bottom:727.680000pt;}
.y11_c00071{bottom:762.880000pt;}
.yf_c00071{bottom:764.800000pt;}
.y10_c00071{bottom:765.440000pt;}
.ye_c00071{bottom:809.600000pt;}
.yc_c00071{bottom:811.520000pt;}
.yd_c00071{bottom:812.160000pt;}
.ya_c00071{bottom:848.000000pt;}
.yb_c00071{bottom:848.640000pt;}
.y7_c00071{bottom:849.280000pt;}
.y9_c00071{bottom:849.920000pt;}
.y8_c00071{bottom:850.560000pt;}
.y2_c00071{bottom:884.480000pt;}
.y4_c00071{bottom:885.760000pt;}
.y3_c00071{bottom:887.680000pt;}
.y5_c00071{bottom:888.320000pt;}
.y6_c00071{bottom:888.960000pt;}
.y1_c00071{bottom:945.920000pt;}
.h5_c00071{height:27.645000pt;}
.h4_c00071{height:29.948750pt;}
.he_c00071{height:32.252500pt;}
.hc_c00071{height:34.556250pt;}
.h8_c00071{height:36.860000pt;}
.h7_c00071{height:39.163750pt;}
.h6_c00071{height:41.467500pt;}
.hb_c00071{height:43.771250pt;}
.h9_c00071{height:46.075000pt;}
.h3_c00071{height:48.378750pt;}
.hd_c00071{height:50.682500pt;}
.hf_c00071{height:52.986250pt;}
.ha_c00071{height:55.290000pt;}
.h2_c00071{height:57.593750pt;}
.h10_c00071{height:62.201250pt;}
.h0_c00071{height:1024.640000pt;}
.h1_c00071{height:1024.666667pt;}
.w1_c00071{width:718.666667pt;}
.w0_c00071{width:718.720000pt;}
.x0_c00071{left:0.000000pt;}
.x16_c00071{left:80.640000pt;}
.x2_c00071{left:81.920000pt;}
.x41_c00071{left:83.200000pt;}
.x3a_c00071{left:99.840000pt;}
.x2e_c00071{left:110.080000pt;}
.x22_c00071{left:119.040000pt;}
.x28_c00071{left:128.640000pt;}
.x57_c00071{left:129.920000pt;}
.x49_c00071{left:138.880000pt;}
.x51_c00071{left:140.160000pt;}
.x17_c00071{left:147.840000pt;}
.x4b_c00071{left:149.760000pt;}
.xe_c00071{left:157.440000pt;}
.x18_c00071{left:167.680000pt;}
.x1a_c00071{left:176.640000pt;}
.x3_c00071{left:186.240000pt;}
.x2f_c00071{left:194.560000pt;}
.x19_c00071{left:195.840000pt;}
.x1b_c00071{left:205.440000pt;}
.x42_c00071{left:206.720000pt;}
.x4c_c00071{left:214.400000pt;}
.x58_c00071{left:215.680000pt;}
.x4_c00071{left:225.280000pt;}
.x23_c00071{left:234.240000pt;}
.x33_c00071{left:244.480000pt;}
.x29_c00071{left:253.440000pt;}
.x4d_c00071{left:255.360000pt;}
.xf_c00071{left:263.040000pt;}
.x3b_c00071{left:272.640000pt;}
.x4a_c00071{left:274.560000pt;}
.x1c_c00071{left:280.960000pt;}
.x40_c00071{left:282.240000pt;}
.x52_c00071{left:283.520000pt;}
.x10_c00071{left:291.840000pt;}
.x4e_c00071{left:300.800000pt;}
.x34_c00071{left:310.400000pt;}
.x5_c00071{left:311.680000pt;}
.x1d_c00071{left:320.640000pt;}
.x6_c00071{left:330.240000pt;}
.x3c_c00071{left:338.560000pt;}
.x30_c00071{left:339.840000pt;}
.x2a_c00071{left:348.800000pt;}
.x7_c00071{left:357.760000pt;}
.x24_c00071{left:359.040000pt;}
.x31_c00071{left:367.360000pt;}
.x2b_c00071{left:368.640000pt;}
.x55_c00071{left:376.960000pt;}
.x37_c00071{left:378.240000pt;}
.x25_c00071{left:387.840000pt;}
.x11_c00071{left:389.760000pt;}
.x53_c00071{left:396.160000pt;}
.x2c_c00071{left:397.440000pt;}
.x1e_c00071{left:407.040000pt;}
.x8_c00071{left:416.640000pt;}
.x4f_c00071{left:424.960000pt;}
.x12_c00071{left:426.240000pt;}
.x1f_c00071{left:435.840000pt;}
.x43_c00071{left:442.880000pt;}
.x26_c00071{left:444.160000pt;}
.x9_c00071{left:445.440000pt;}
.x35_c00071{left:455.040000pt;}
.x32_c00071{left:464.640000pt;}
.xa_c00071{left:474.240000pt;}
.x36_c00071{left:481.920000pt;}
.x47_c00071{left:483.200000pt;}
.x44_c00071{left:493.440000pt;}
.x3d_c00071{left:502.400000pt;}
.x20_c00071{left:510.720000pt;}
.x54_c00071{left:512.000000pt;}
.x2d_c00071{left:513.280000pt;}
.x3e_c00071{left:521.600000pt;}
.x13_c00071{left:530.560000pt;}
.x27_c00071{left:540.160000pt;}
.x38_c00071{left:551.040000pt;}
.x48_c00071{left:559.360000pt;}
.x21_c00071{left:569.600000pt;}
.xb_c00071{left:572.160000pt;}
.x45_c00071{left:578.560000pt;}
.x39_c00071{left:579.840000pt;}
.x3f_c00071{left:588.160000pt;}
.x56_c00071{left:589.440000pt;}
.x50_c00071{left:591.360000pt;}
.x14_c00071{left:598.400000pt;}
.x46_c00071{left:608.640000pt;}
.xc_c00071{left:627.200000pt;}
.x15_c00071{left:636.800000pt;}
.x1_c00071{left:656.640000pt;}
.xd_c00071{left:666.240000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_808c103554a6722b8ab56fb0.woff2')format("woff");}.ff1_c00072{font-family:ff1_c00072;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5a_c00072{transform:matrix(0.216300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216300,0.000000,0.000000,0.250000,0,0);}
.m4f_c00072{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m54_c00072{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m58_c00072{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00072{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m22_c00072{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m11_c00072{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m61_c00072{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m39_c00072{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m42_c00072{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m41_c00072{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m24_c00072{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m48_c00072{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m0_c00072{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m38_c00072{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00072{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);}
.m43_c00072{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00072{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m14_c00072{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);}
.m3c_c00072{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m37_c00072{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m20_c00072{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m8_c00072{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m46_c00072{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.mb_c00072{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00072{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.mf_c00072{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);}
.m34_c00072{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00072{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m59_c00072{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);}
.m4_c00072{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);}
.m2_c00072{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m1_c00072{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m29_c00072{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m62_c00072{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m6_c00072{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m52_c00072{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);}
.m49_c00072{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00072{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);}
.m13_c00072{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);}
.m4b_c00072{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00072{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00072{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00072{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m33_c00072{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_c00072{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m23_c00072{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);}
.m28_c00072{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00072{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);}
.m27_c00072{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m25_c00072{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00072{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.me_c00072{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00072{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);}
.m60_c00072{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00072{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00072{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00072{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);}
.m9_c00072{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m47_c00072{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m32_c00072{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00072{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m31_c00072{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m26_c00072{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);}
.m21_c00072{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);}
.m57_c00072{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m12_c00072{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00072{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00072{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);}
.m2f_c00072{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m50_c00072{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00072{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);}
.m55_c00072{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m45_c00072{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.ma_c00072{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m10_c00072{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m35_c00072{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);}
.m17_c00072{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m44_c00072{transform:matrix(0.525000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525000,0.000000,0.000000,0.250000,0,0);}
.mc_c00072{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.md_c00072{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m7_c00072{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m53_c00072{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00072{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m36_c00072{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00072{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m30_c00072{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);}
.m56_c00072{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);}
.m3_c00072{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m51_c00072{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m15_c00072{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);}
.m19_c00072{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00072{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00072{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m16_c00072{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m5_c00072{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m40_c00072{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00072{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00072{transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);}
.v0_c00072{vertical-align:0.000000px;}
.v1_c00072{vertical-align:2.880000px;}
.ls0_c00072{letter-spacing:0.000000px;}
.sc__c00072{text-shadow:none;}
.sc0_c00072{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00072{-webkit-text-stroke:0px transparent;}
.sc0_c00072{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00072{word-spacing:-3.402240px;}
.ws1_c00072{word-spacing:0.000000px;}
.fc0_c00072{color:transparent;}
.fs10_c00072{font-size:8.640000px;}
.fs13_c00072{font-size:14.400000px;}
.fs12_c00072{font-size:17.280000px;}
.fs8_c00072{font-size:31.680000px;}
.fs4_c00072{font-size:34.560000px;}
.fs6_c00072{font-size:37.440000px;}
.fsb_c00072{font-size:40.320000px;}
.fsa_c00072{font-size:43.200000px;}
.fsd_c00072{font-size:46.080000px;}
.fs2_c00072{font-size:48.960000px;}
.fs3_c00072{font-size:51.840000px;}
.fse_c00072{font-size:54.720000px;}
.fs7_c00072{font-size:57.600000px;}
.fs1_c00072{font-size:60.480000px;}
.fs5_c00072{font-size:63.360000px;}
.fs9_c00072{font-size:66.240000px;}
.fsc_c00072{font-size:69.120000px;}
.fs0_c00072{font-size:72.000000px;}
.fs11_c00072{font-size:97.920000px;}
.fsf_c00072{font-size:100.800000px;}
.y0_c00072{bottom:0.000000px;}
.y76_c00072{bottom:35.280000px;}
.y77_c00072{bottom:36.000000px;}
.y74_c00072{bottom:37.440000px;}
.y75_c00072{bottom:38.160000px;}
.y72_c00072{bottom:77.040000px;}
.y70_c00072{bottom:77.760000px;}
.y73_c00072{bottom:78.480000px;}
.y6f_c00072{bottom:79.920000px;}
.y71_c00072{bottom:80.640000px;}
.y6e_c00072{bottom:81.360000px;}
.y6b_c00072{bottom:131.040000px;}
.y69_c00072{bottom:131.760000px;}
.y6d_c00072{bottom:132.480000px;}
.y6a_c00072{bottom:133.200000px;}
.y6c_c00072{bottom:133.920000px;}
.y68_c00072{bottom:135.360000px;}
.y65_c00072{bottom:176.400000px;}
.y63_c00072{bottom:177.120000px;}
.y67_c00072{bottom:186.480000px;}
.y64_c00072{bottom:187.200000px;}
.y62_c00072{bottom:188.640000px;}
.y66_c00072{bottom:189.360000px;}
.y61_c00072{bottom:203.760000px;}
.y5c_c00072{bottom:204.480000px;}
.y60_c00072{bottom:205.200000px;}
.y5b_c00072{bottom:208.080000px;}
.y5f_c00072{bottom:208.800000px;}
.y59_c00072{bottom:209.520000px;}
.y5d_c00072{bottom:218.880000px;}
.y58_c00072{bottom:219.600000px;}
.y5e_c00072{bottom:221.040000px;}
.y5a_c00072{bottom:221.760000px;}
.y56_c00072{bottom:257.760000px;}
.y55_c00072{bottom:258.480000px;}
.y57_c00072{bottom:260.640000px;}
.y54_c00072{bottom:261.360000px;}
.y50_c00072{bottom:293.760000px;}
.y52_c00072{bottom:300.960000px;}
.y4f_c00072{bottom:301.680000px;}
.y53_c00072{bottom:303.120000px;}
.y51_c00072{bottom:303.840000px;}
.y4e_c00072{bottom:335.520000px;}
.y4c_c00072{bottom:343.440000px;}
.y4d_c00072{bottom:344.160000px;}
.y4b_c00072{bottom:346.320000px;}
.y4a_c00072{bottom:347.040000px;}
.y48_c00072{bottom:378.000000px;}
.y49_c00072{bottom:379.440000px;}
.y47_c00072{bottom:386.640000px;}
.y46_c00072{bottom:388.800000px;}
.y45_c00072{bottom:389.520000px;}
.y43_c00072{bottom:418.320000px;}
.y44_c00072{bottom:421.200000px;}
.y42_c00072{bottom:429.120000px;}
.y40_c00072{bottom:431.280000px;}
.y41_c00072{bottom:432.000000px;}
.y3e_c00072{bottom:470.880000px;}
.y3d_c00072{bottom:473.760000px;}
.y3c_c00072{bottom:474.480000px;}
.y3f_c00072{bottom:475.200000px;}
.y3b_c00072{bottom:514.080000px;}
.y39_c00072{bottom:514.800000px;}
.y38_c00072{bottom:516.960000px;}
.y3a_c00072{bottom:517.680000px;}
.y35_c00072{bottom:555.840000px;}
.y34_c00072{bottom:556.560000px;}
.y33_c00072{bottom:558.720000px;}
.y37_c00072{bottom:559.440000px;}
.y36_c00072{bottom:560.160000px;}
.y30_c00072{bottom:599.040000px;}
.y32_c00072{bottom:599.760000px;}
.y2f_c00072{bottom:601.920000px;}
.y31_c00072{bottom:602.640000px;}
.y2d_c00072{bottom:641.520000px;}
.y2c_c00072{bottom:642.240000px;}
.y2b_c00072{bottom:644.400000px;}
.y2e_c00072{bottom:645.120000px;}
.y2a_c00072{bottom:695.520000px;}
.y29_c00072{bottom:696.960000px;}
.y28_c00072{bottom:697.680000px;}
.y23_c00072{bottom:737.280000px;}
.y25_c00072{bottom:738.000000px;}
.y24_c00072{bottom:740.160000px;}
.y27_c00072{bottom:740.880000px;}
.y26_c00072{bottom:741.600000px;}
.y21_c00072{bottom:780.480000px;}
.y20_c00072{bottom:781.200000px;}
.y1e_c00072{bottom:781.920000px;}
.y1f_c00072{bottom:782.640000px;}
.y22_c00072{bottom:783.360000px;}
.y18_c00072{bottom:822.240000px;}
.y19_c00072{bottom:822.960000px;}
.y1c_c00072{bottom:823.680000px;}
.y17_c00072{bottom:824.400000px;}
.y1a_c00072{bottom:825.120000px;}
.y1b_c00072{bottom:825.840000px;}
.y1d_c00072{bottom:826.560000px;}
.y14_c00072{bottom:865.440000px;}
.y13_c00072{bottom:866.880000px;}
.y15_c00072{bottom:868.320000px;}
.y16_c00072{bottom:869.040000px;}
.y10_c00072{bottom:908.640000px;}
.ye_c00072{bottom:910.080000px;}
.yf_c00072{bottom:910.800000px;}
.y11_c00072{bottom:911.520000px;}
.y12_c00072{bottom:912.240000px;}
.yb_c00072{bottom:961.920000px;}
.y8_c00072{bottom:962.640000px;}
.y9_c00072{bottom:963.360000px;}
.ya_c00072{bottom:964.080000px;}
.yd_c00072{bottom:964.800000px;}
.yc_c00072{bottom:965.520000px;}
.y2_c00072{bottom:1002.960000px;}
.y3_c00072{bottom:1003.680000px;}
.y4_c00072{bottom:1004.400000px;}
.y6_c00072{bottom:1005.120000px;}
.y7_c00072{bottom:1005.840000px;}
.y5_c00072{bottom:1008.000000px;}
.y1_c00072{bottom:1072.080000px;}
.h13_c00072{height:7.775156px;}
.h16_c00072{height:12.958594px;}
.h15_c00072{height:15.550313px;}
.ha_c00072{height:28.508906px;}
.h6_c00072{height:31.100625px;}
.h8_c00072{height:33.692344px;}
.hd_c00072{height:36.284062px;}
.hc_c00072{height:38.875781px;}
.hf_c00072{height:41.467500px;}
.h4_c00072{height:44.059219px;}
.h5_c00072{height:46.650937px;}
.h11_c00072{height:46.939219px;}
.h10_c00072{height:49.242656px;}
.h9_c00072{height:51.834375px;}
.h3_c00072{height:54.426094px;}
.h7_c00072{height:57.017812px;}
.hb_c00072{height:59.609531px;}
.he_c00072{height:62.201250px;}
.h2_c00072{height:64.792969px;}
.h14_c00072{height:88.118437px;}
.h12_c00072{height:90.710156px;}
.h0_c00072{height:1152.720000px;}
.h1_c00072{height:1152.750000px;}
.w0_c00072{width:810.000000px;}
.x0_c00072{left:0.000000px;}
.x2_c00072{left:89.280840px;}
.x4e_c00072{left:110.160000px;}
.x33_c00072{left:120.960000px;}
.x20_c00072{left:131.760000px;}
.x3_c00072{left:133.200000px;}
.x2f_c00072{left:143.280000px;}
.x1a_c00072{left:154.080000px;}
.x38_c00072{left:156.960000px;}
.x34_c00072{left:164.160000px;}
.xc_c00072{left:165.600000px;}
.x30_c00072{left:175.680000px;}
.x47_c00072{left:185.040000px;}
.x3b_c00072{left:186.480000px;}
.x4d_c00072{left:189.360000px;}
.x1b_c00072{left:196.560000px;}
.x11_c00072{left:198.000000px;}
.x3d_c00072{left:207.360000px;}
.x26_c00072{left:218.160000px;}
.x4_c00072{left:229.680000px;}
.x1c_c00072{left:239.760000px;}
.x21_c00072{left:248.400000px;}
.x12_c00072{left:250.560000px;}
.x39_c00072{left:252.000000px;}
.x5_c00072{left:262.080000px;}
.x48_c00072{left:264.240000px;}
.x22_c00072{left:271.440000px;}
.x4c_c00072{left:281.520000px;}
.x13_c00072{left:283.680000px;}
.xd_c00072{left:294.480000px;}
.x49_c00072{left:297.360000px;}
.x35_c00072{left:304.560000px;}
.x53_c00072{left:315.360000px;}
.x4a_c00072{left:318.240000px;}
.x27_c00072{left:326.160000px;}
.x31_c00072{left:336.960000px;}
.x51_c00072{left:347.040000px;}
.xe_c00072{left:348.480000px;}
.x3c_c00072{left:357.840000px;}
.x1d_c00072{left:367.920000px;}
.x6_c00072{left:369.360000px;}
.x14_c00072{left:380.160000px;}
.x36_c00072{left:391.680000px;}
.x4f_c00072{left:401.040000px;}
.x28_c00072{left:402.480000px;}
.x7_c00072{left:413.280000px;}
.x29_c00072{left:423.360000px;}
.x50_c00072{left:432.720000px;}
.x2b_c00072{left:434.160000px;}
.xf_c00072{left:444.960000px;}
.x52_c00072{left:455.040000px;}
.x1e_c00072{left:456.480000px;}
.x10_c00072{left:467.280000px;}
.x15_c00072{left:478.080000px;}
.x3e_c00072{left:488.160000px;}
.x40_c00072{left:497.520000px;}
.x23_c00072{left:499.680000px;}
.x44_c00072{left:501.120000px;}
.x16_c00072{left:509.760000px;}
.x46_c00072{left:519.120000px;}
.x4b_c00072{left:520.560000px;}
.x32_c00072{left:531.360000px;}
.x2c_c00072{left:542.160000px;}
.x2a_c00072{left:552.240000px;}
.x8_c00072{left:563.760000px;}
.x3a_c00072{left:575.280000px;}
.x41_c00072{left:576.720000px;}
.x3f_c00072{left:585.360000px;}
.x43_c00072{left:594.720000px;}
.x24_c00072{left:596.160000px;}
.x9_c00072{left:606.960000px;}
.x54_c00072{left:615.600000px;}
.x17_c00072{left:617.760000px;}
.x2d_c00072{left:627.840000px;}
.x42_c00072{left:630.720000px;}
.x25_c00072{left:639.360000px;}
.x18_c00072{left:649.440000px;}
.xa_c00072{left:660.960000px;}
.x2e_c00072{left:671.760000px;}
.x19_c00072{left:682.560000px;}
.xb_c00072{left:694.080000px;}
.x37_c00072{left:704.160000px;}
.x1f_c00072{left:714.240000px;}
.x45_c00072{left:725.760000px;}
.x1_c00072{left:734.400000px;}
@media print{
.v0_c00072{vertical-align:0.000000pt;}
.v1_c00072{vertical-align:2.560000pt;}
.ls0_c00072{letter-spacing:0.000000pt;}
.ws0_c00072{word-spacing:-3.024213pt;}
.ws1_c00072{word-spacing:0.000000pt;}
.fs10_c00072{font-size:7.680000pt;}
.fs13_c00072{font-size:12.800000pt;}
.fs12_c00072{font-size:15.360000pt;}
.fs8_c00072{font-size:28.160000pt;}
.fs4_c00072{font-size:30.720000pt;}
.fs6_c00072{font-size:33.280000pt;}
.fsb_c00072{font-size:35.840000pt;}
.fsa_c00072{font-size:38.400000pt;}
.fsd_c00072{font-size:40.960000pt;}
.fs2_c00072{font-size:43.520000pt;}
.fs3_c00072{font-size:46.080000pt;}
.fse_c00072{font-size:48.640000pt;}
.fs7_c00072{font-size:51.200000pt;}
.fs1_c00072{font-size:53.760000pt;}
.fs5_c00072{font-size:56.320000pt;}
.fs9_c00072{font-size:58.880000pt;}
.fsc_c00072{font-size:61.440000pt;}
.fs0_c00072{font-size:64.000000pt;}
.fs11_c00072{font-size:87.040000pt;}
.fsf_c00072{font-size:89.600000pt;}
.y0_c00072{bottom:0.000000pt;}
.y76_c00072{bottom:31.360000pt;}
.y77_c00072{bottom:32.000000pt;}
.y74_c00072{bottom:33.280000pt;}
.y75_c00072{bottom:33.920000pt;}
.y72_c00072{bottom:68.480000pt;}
.y70_c00072{bottom:69.120000pt;}
.y73_c00072{bottom:69.760000pt;}
.y6f_c00072{bottom:71.040000pt;}
.y71_c00072{bottom:71.680000pt;}
.y6e_c00072{bottom:72.320000pt;}
.y6b_c00072{bottom:116.480000pt;}
.y69_c00072{bottom:117.120000pt;}
.y6d_c00072{bottom:117.760000pt;}
.y6a_c00072{bottom:118.400000pt;}
.y6c_c00072{bottom:119.040000pt;}
.y68_c00072{bottom:120.320000pt;}
.y65_c00072{bottom:156.800000pt;}
.y63_c00072{bottom:157.440000pt;}
.y67_c00072{bottom:165.760000pt;}
.y64_c00072{bottom:166.400000pt;}
.y62_c00072{bottom:167.680000pt;}
.y66_c00072{bottom:168.320000pt;}
.y61_c00072{bottom:181.120000pt;}
.y5c_c00072{bottom:181.760000pt;}
.y60_c00072{bottom:182.400000pt;}
.y5b_c00072{bottom:184.960000pt;}
.y5f_c00072{bottom:185.600000pt;}
.y59_c00072{bottom:186.240000pt;}
.y5d_c00072{bottom:194.560000pt;}
.y58_c00072{bottom:195.200000pt;}
.y5e_c00072{bottom:196.480000pt;}
.y5a_c00072{bottom:197.120000pt;}
.y56_c00072{bottom:229.120000pt;}
.y55_c00072{bottom:229.760000pt;}
.y57_c00072{bottom:231.680000pt;}
.y54_c00072{bottom:232.320000pt;}
.y50_c00072{bottom:261.120000pt;}
.y52_c00072{bottom:267.520000pt;}
.y4f_c00072{bottom:268.160000pt;}
.y53_c00072{bottom:269.440000pt;}
.y51_c00072{bottom:270.080000pt;}
.y4e_c00072{bottom:298.240000pt;}
.y4c_c00072{bottom:305.280000pt;}
.y4d_c00072{bottom:305.920000pt;}
.y4b_c00072{bottom:307.840000pt;}
.y4a_c00072{bottom:308.480000pt;}
.y48_c00072{bottom:336.000000pt;}
.y49_c00072{bottom:337.280000pt;}
.y47_c00072{bottom:343.680000pt;}
.y46_c00072{bottom:345.600000pt;}
.y45_c00072{bottom:346.240000pt;}
.y43_c00072{bottom:371.840000pt;}
.y44_c00072{bottom:374.400000pt;}
.y42_c00072{bottom:381.440000pt;}
.y40_c00072{bottom:383.360000pt;}
.y41_c00072{bottom:384.000000pt;}
.y3e_c00072{bottom:418.560000pt;}
.y3d_c00072{bottom:421.120000pt;}
.y3c_c00072{bottom:421.760000pt;}
.y3f_c00072{bottom:422.400000pt;}
.y3b_c00072{bottom:456.960000pt;}
.y39_c00072{bottom:457.600000pt;}
.y38_c00072{bottom:459.520000pt;}
.y3a_c00072{bottom:460.160000pt;}
.y35_c00072{bottom:494.080000pt;}
.y34_c00072{bottom:494.720000pt;}
.y33_c00072{bottom:496.640000pt;}
.y37_c00072{bottom:497.280000pt;}
.y36_c00072{bottom:497.920000pt;}
.y30_c00072{bottom:532.480000pt;}
.y32_c00072{bottom:533.120000pt;}
.y2f_c00072{bottom:535.040000pt;}
.y31_c00072{bottom:535.680000pt;}
.y2d_c00072{bottom:570.240000pt;}
.y2c_c00072{bottom:570.880000pt;}
.y2b_c00072{bottom:572.800000pt;}
.y2e_c00072{bottom:573.440000pt;}
.y2a_c00072{bottom:618.240000pt;}
.y29_c00072{bottom:619.520000pt;}
.y28_c00072{bottom:620.160000pt;}
.y23_c00072{bottom:655.360000pt;}
.y25_c00072{bottom:656.000000pt;}
.y24_c00072{bottom:657.920000pt;}
.y27_c00072{bottom:658.560000pt;}
.y26_c00072{bottom:659.200000pt;}
.y21_c00072{bottom:693.760000pt;}
.y20_c00072{bottom:694.400000pt;}
.y1e_c00072{bottom:695.040000pt;}
.y1f_c00072{bottom:695.680000pt;}
.y22_c00072{bottom:696.320000pt;}
.y18_c00072{bottom:730.880000pt;}
.y19_c00072{bottom:731.520000pt;}
.y1c_c00072{bottom:732.160000pt;}
.y17_c00072{bottom:732.800000pt;}
.y1a_c00072{bottom:733.440000pt;}
.y1b_c00072{bottom:734.080000pt;}
.y1d_c00072{bottom:734.720000pt;}
.y14_c00072{bottom:769.280000pt;}
.y13_c00072{bottom:770.560000pt;}
.y15_c00072{bottom:771.840000pt;}
.y16_c00072{bottom:772.480000pt;}
.y10_c00072{bottom:807.680000pt;}
.ye_c00072{bottom:808.960000pt;}
.yf_c00072{bottom:809.600000pt;}
.y11_c00072{bottom:810.240000pt;}
.y12_c00072{bottom:810.880000pt;}
.yb_c00072{bottom:855.040000pt;}
.y8_c00072{bottom:855.680000pt;}
.y9_c00072{bottom:856.320000pt;}
.ya_c00072{bottom:856.960000pt;}
.yd_c00072{bottom:857.600000pt;}
.yc_c00072{bottom:858.240000pt;}
.y2_c00072{bottom:891.520000pt;}
.y3_c00072{bottom:892.160000pt;}
.y4_c00072{bottom:892.800000pt;}
.y6_c00072{bottom:893.440000pt;}
.y7_c00072{bottom:894.080000pt;}
.y5_c00072{bottom:896.000000pt;}
.y1_c00072{bottom:952.960000pt;}
.h13_c00072{height:6.911250pt;}
.h16_c00072{height:11.518750pt;}
.h15_c00072{height:13.822500pt;}
.ha_c00072{height:25.341250pt;}
.h6_c00072{height:27.645000pt;}
.h8_c00072{height:29.948750pt;}
.hd_c00072{height:32.252500pt;}
.hc_c00072{height:34.556250pt;}
.hf_c00072{height:36.860000pt;}
.h4_c00072{height:39.163750pt;}
.h5_c00072{height:41.467500pt;}
.h11_c00072{height:41.723750pt;}
.h10_c00072{height:43.771250pt;}
.h9_c00072{height:46.075000pt;}
.h3_c00072{height:48.378750pt;}
.h7_c00072{height:50.682500pt;}
.hb_c00072{height:52.986250pt;}
.he_c00072{height:55.290000pt;}
.h2_c00072{height:57.593750pt;}
.h14_c00072{height:78.327500pt;}
.h12_c00072{height:80.631250pt;}
.h0_c00072{height:1024.640000pt;}
.h1_c00072{height:1024.666667pt;}
.w0_c00072{width:720.000000pt;}
.x0_c00072{left:0.000000pt;}
.x2_c00072{left:79.360747pt;}
.x4e_c00072{left:97.920000pt;}
.x33_c00072{left:107.520000pt;}
.x20_c00072{left:117.120000pt;}
.x3_c00072{left:118.400000pt;}
.x2f_c00072{left:127.360000pt;}
.x1a_c00072{left:136.960000pt;}
.x38_c00072{left:139.520000pt;}
.x34_c00072{left:145.920000pt;}
.xc_c00072{left:147.200000pt;}
.x30_c00072{left:156.160000pt;}
.x47_c00072{left:164.480000pt;}
.x3b_c00072{left:165.760000pt;}
.x4d_c00072{left:168.320000pt;}
.x1b_c00072{left:174.720000pt;}
.x11_c00072{left:176.000000pt;}
.x3d_c00072{left:184.320000pt;}
.x26_c00072{left:193.920000pt;}
.x4_c00072{left:204.160000pt;}
.x1c_c00072{left:213.120000pt;}
.x21_c00072{left:220.800000pt;}
.x12_c00072{left:222.720000pt;}
.x39_c00072{left:224.000000pt;}
.x5_c00072{left:232.960000pt;}
.x48_c00072{left:234.880000pt;}
.x22_c00072{left:241.280000pt;}
.x4c_c00072{left:250.240000pt;}
.x13_c00072{left:252.160000pt;}
.xd_c00072{left:261.760000pt;}
.x49_c00072{left:264.320000pt;}
.x35_c00072{left:270.720000pt;}
.x53_c00072{left:280.320000pt;}
.x4a_c00072{left:282.880000pt;}
.x27_c00072{left:289.920000pt;}
.x31_c00072{left:299.520000pt;}
.x51_c00072{left:308.480000pt;}
.xe_c00072{left:309.760000pt;}
.x3c_c00072{left:318.080000pt;}
.x1d_c00072{left:327.040000pt;}
.x6_c00072{left:328.320000pt;}
.x14_c00072{left:337.920000pt;}
.x36_c00072{left:348.160000pt;}
.x4f_c00072{left:356.480000pt;}
.x28_c00072{left:357.760000pt;}
.x7_c00072{left:367.360000pt;}
.x29_c00072{left:376.320000pt;}
.x50_c00072{left:384.640000pt;}
.x2b_c00072{left:385.920000pt;}
.xf_c00072{left:395.520000pt;}
.x52_c00072{left:404.480000pt;}
.x1e_c00072{left:405.760000pt;}
.x10_c00072{left:415.360000pt;}
.x15_c00072{left:424.960000pt;}
.x3e_c00072{left:433.920000pt;}
.x40_c00072{left:442.240000pt;}
.x23_c00072{left:444.160000pt;}
.x44_c00072{left:445.440000pt;}
.x16_c00072{left:453.120000pt;}
.x46_c00072{left:461.440000pt;}
.x4b_c00072{left:462.720000pt;}
.x32_c00072{left:472.320000pt;}
.x2c_c00072{left:481.920000pt;}
.x2a_c00072{left:490.880000pt;}
.x8_c00072{left:501.120000pt;}
.x3a_c00072{left:511.360000pt;}
.x41_c00072{left:512.640000pt;}
.x3f_c00072{left:520.320000pt;}
.x43_c00072{left:528.640000pt;}
.x24_c00072{left:529.920000pt;}
.x9_c00072{left:539.520000pt;}
.x54_c00072{left:547.200000pt;}
.x17_c00072{left:549.120000pt;}
.x2d_c00072{left:558.080000pt;}
.x42_c00072{left:560.640000pt;}
.x25_c00072{left:568.320000pt;}
.x18_c00072{left:577.280000pt;}
.xa_c00072{left:587.520000pt;}
.x2e_c00072{left:597.120000pt;}
.x19_c00072{left:606.720000pt;}
.xb_c00072{left:616.960000pt;}
.x37_c00072{left:625.920000pt;}
.x1f_c00072{left:634.880000pt;}
.x45_c00072{left:645.120000pt;}
.x1_c00072{left:652.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4388a1d348092ac42560cb2c.woff2')format("woff");}.ff1_c00073{font-family:ff1_c00073;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m53_c00073{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m43_c00073{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m46_c00073{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m10_c00073{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m41_c00073{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m9_c00073{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m52_c00073{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m51_c00073{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m29_c00073{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);}
.m27_c00073{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.me_c00073{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m0_c00073{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m33_c00073{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00073{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);}
.m19_c00073{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00073{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);}
.m1a_c00073{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00073{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);}
.m45_c00073{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m3_c00073{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);}
.m11_c00073{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);}
.m2d_c00073{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00073{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00073{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);}
.m39_c00073{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m54_c00073{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);}
.m3c_c00073{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);}
.m3a_c00073{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m23_c00073{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m15_c00073{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);}
.m14_c00073{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00073{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);}
.m3b_c00073{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00073{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);}
.m22_c00073{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m48_c00073{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.md_c00073{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m40_c00073{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00073{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);}
.ma_c00073{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);}
.m30_c00073{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m8_c00073{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);}
.m24_c00073{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m28_c00073{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m4_c00073{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00073{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.mf_c00073{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);}
.m2b_c00073{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m12_c00073{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m26_c00073{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);}
.m4a_c00073{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m37_c00073{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m42_c00073{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m20_c00073{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);}
.m2_c00073{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00073{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m5_c00073{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);}
.m1e_c00073{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00073{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00073{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m47_c00073{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.mc_c00073{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);}
.m49_c00073{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m32_c00073{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00073{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m16_c00073{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m17_c00073{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);}
.m25_c00073{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m35_c00073{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);}
.m31_c00073{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);}
.m13_c00073{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.mb_c00073{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m36_c00073{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m7_c00073{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00073{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00073{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m38_c00073{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);}
.m34_c00073{transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);}
.m1_c00073{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);}
.m6_c00073{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m18_c00073{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m21_c00073{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m44_c00073{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m50_c00073{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00073{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.v0_c00073{vertical-align:0.000000px;}
.ls0_c00073{letter-spacing:0.000000px;}
.sc__c00073{text-shadow:none;}
.sc0_c00073{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00073{-webkit-text-stroke:0px transparent;}
.sc0_c00073{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00073{word-spacing:0.000000px;}
.fc0_c00073{color:transparent;}
.fs2_c00073{font-size:34.560000px;}
.fs5_c00073{font-size:37.440000px;}
.fsc_c00073{font-size:40.320000px;}
.fsd_c00073{font-size:43.200000px;}
.fs8_c00073{font-size:46.080000px;}
.fs4_c00073{font-size:48.960000px;}
.fs3_c00073{font-size:51.840000px;}
.fs9_c00073{font-size:54.720000px;}
.fsb_c00073{font-size:57.600000px;}
.fs1_c00073{font-size:60.480000px;}
.fs7_c00073{font-size:63.360000px;}
.fs6_c00073{font-size:66.240000px;}
.fsa_c00073{font-size:69.120000px;}
.fs0_c00073{font-size:72.000000px;}
.y0_c00073{bottom:0.000000px;}
.y5f_c00073{bottom:64.080000px;}
.y60_c00073{bottom:64.800000px;}
.y5b_c00073{bottom:66.240000px;}
.y5d_c00073{bottom:66.960000px;}
.y5e_c00073{bottom:67.680000px;}
.y5c_c00073{bottom:68.400000px;}
.y5a_c00073{bottom:69.840000px;}
.y59_c00073{bottom:108.000000px;}
.y57_c00073{bottom:109.440000px;}
.y58_c00073{bottom:110.160000px;}
.y55_c00073{bottom:110.880000px;}
.y56_c00073{bottom:111.600000px;}
.y53_c00073{bottom:150.480000px;}
.y54_c00073{bottom:152.640000px;}
.y51_c00073{bottom:153.360000px;}
.y52_c00073{bottom:154.080000px;}
.y50_c00073{bottom:205.200000px;}
.y4f_c00073{bottom:245.520000px;}
.y4c_c00073{bottom:246.240000px;}
.y49_c00073{bottom:246.960000px;}
.y4a_c00073{bottom:247.680000px;}
.y4e_c00073{bottom:248.400000px;}
.y4d_c00073{bottom:249.120000px;}
.y4b_c00073{bottom:249.840000px;}
.y48_c00073{bottom:288.720000px;}
.y46_c00073{bottom:289.440000px;}
.y44_c00073{bottom:290.880000px;}
.y45_c00073{bottom:291.600000px;}
.y47_c00073{bottom:292.320000px;}
.y41_c00073{bottom:331.200000px;}
.y42_c00073{bottom:331.920000px;}
.y43_c00073{bottom:334.080000px;}
.y40_c00073{bottom:334.800000px;}
.y3f_c00073{bottom:373.680000px;}
.y3e_c00073{bottom:376.560000px;}
.y3d_c00073{bottom:377.280000px;}
.y3c_c00073{bottom:416.880000px;}
.y3b_c00073{bottom:419.040000px;}
.y39_c00073{bottom:419.760000px;}
.y3a_c00073{bottom:420.480000px;}
.y37_c00073{bottom:459.360000px;}
.y35_c00073{bottom:460.080000px;}
.y38_c00073{bottom:461.520000px;}
.y36_c00073{bottom:462.240000px;}
.y33_c00073{bottom:501.840000px;}
.y31_c00073{bottom:502.560000px;}
.y34_c00073{bottom:504.720000px;}
.y32_c00073{bottom:505.440000px;}
.y2f_c00073{bottom:544.320000px;}
.y2e_c00073{bottom:545.040000px;}
.y2d_c00073{bottom:547.200000px;}
.y30_c00073{bottom:547.920000px;}
.y2c_c00073{bottom:586.800000px;}
.y2a_c00073{bottom:587.520000px;}
.y2b_c00073{bottom:589.680000px;}
.y29_c00073{bottom:590.400000px;}
.y25_c00073{bottom:640.800000px;}
.y26_c00073{bottom:642.960000px;}
.y28_c00073{bottom:643.680000px;}
.y27_c00073{bottom:644.400000px;}
.y21_c00073{bottom:682.560000px;}
.y24_c00073{bottom:683.280000px;}
.y22_c00073{bottom:686.160000px;}
.y23_c00073{bottom:686.880000px;}
.y1e_c00073{bottom:725.760000px;}
.y1f_c00073{bottom:726.480000px;}
.y1c_c00073{bottom:727.920000px;}
.y1d_c00073{bottom:728.640000px;}
.y20_c00073{bottom:729.360000px;}
.y1b_c00073{bottom:768.960000px;}
.y1a_c00073{bottom:771.120000px;}
.y18_c00073{bottom:821.520000px;}
.y17_c00073{bottom:822.240000px;}
.y16_c00073{bottom:823.680000px;}
.y19_c00073{bottom:824.400000px;}
.y14_c00073{bottom:863.280000px;}
.y12_c00073{bottom:866.160000px;}
.y13_c00073{bottom:866.880000px;}
.y15_c00073{bottom:867.600000px;}
.yd_c00073{bottom:905.760000px;}
.yf_c00073{bottom:906.480000px;}
.y11_c00073{bottom:907.200000px;}
.ye_c00073{bottom:909.360000px;}
.y10_c00073{bottom:910.080000px;}
.y8_c00073{bottom:948.240000px;}
.yb_c00073{bottom:948.960000px;}
.yc_c00073{bottom:950.400000px;}
.y9_c00073{bottom:951.840000px;}
.ya_c00073{bottom:952.560000px;}
.y2_c00073{bottom:991.440000px;}
.y5_c00073{bottom:992.160000px;}
.y6_c00073{bottom:992.880000px;}
.y3_c00073{bottom:994.320000px;}
.y4_c00073{bottom:995.040000px;}
.y7_c00073{bottom:995.760000px;}
.y1_c00073{bottom:1074.240000px;}
.h4_c00073{height:31.100625px;}
.h7_c00073{height:33.692344px;}
.he_c00073{height:36.284062px;}
.hf_c00073{height:38.875781px;}
.ha_c00073{height:41.467500px;}
.h6_c00073{height:44.059219px;}
.h5_c00073{height:46.650937px;}
.hb_c00073{height:49.242656px;}
.hd_c00073{height:51.834375px;}
.h3_c00073{height:54.426094px;}
.h9_c00073{height:57.017812px;}
.h8_c00073{height:59.609531px;}
.hc_c00073{height:62.201250px;}
.h2_c00073{height:64.792969px;}
.h0_c00073{height:1153.440000px;}
.h1_c00073{height:1153.500000px;}
.w0_c00073{width:810.720000px;}
.w1_c00073{width:810.750000px;}
.x0_c00073{left:0.000000px;}
.x45_c00073{left:87.120000px;}
.x14_c00073{left:88.560000px;}
.x2_c00073{left:89.999490px;}
.x40_c00073{left:108.720000px;}
.x2b_c00073{left:119.520000px;}
.x43_c00073{left:129.600000px;}
.x15_c00073{left:131.760000px;}
.x33_c00073{left:140.400000px;}
.x52_c00073{left:141.840000px;}
.x46_c00073{left:151.920000px;}
.x1d_c00073{left:153.360000px;}
.x16_c00073{left:164.160000px;}
.x3c_c00073{left:174.240000px;}
.x3_c00073{left:185.040000px;}
.xc_c00073{left:195.840000px;}
.x47_c00073{left:200.880000px;}
.x2c_c00073{left:205.920000px;}
.x17_c00073{left:207.360000px;}
.x3d_c00073{left:216.720000px;}
.x4_c00073{left:218.160000px;}
.x48_c00073{left:228.240000px;}
.x38_c00073{left:238.320000px;}
.x2d_c00073{left:239.760000px;}
.x4f_c00073{left:248.400000px;}
.x5_c00073{left:250.560000px;}
.x3e_c00073{left:270.720000px;}
.x1e_c00073{left:272.160000px;}
.x4c_c00073{left:281.520000px;}
.x31_c00073{left:282.960000px;}
.x25_c00073{left:291.600000px;}
.x41_c00073{left:302.400000px;}
.x1f_c00073{left:303.840000px;}
.x26_c00073{left:313.920000px;}
.x18_c00073{left:315.360000px;}
.x6_c00073{left:325.440000px;}
.x34_c00073{left:334.800000px;}
.x19_c00073{left:346.320000px;}
.xd_c00073{left:347.760000px;}
.x53_c00073{left:357.120000px;}
.x35_c00073{left:367.200000px;}
.x20_c00073{left:368.640000px;}
.xe_c00073{left:378.720000px;}
.x39_c00073{left:389.520000px;}
.x50_c00073{left:399.600000px;}
.x42_c00073{left:410.400000px;}
.x7_c00073{left:411.840000px;}
.x32_c00073{left:421.200000px;}
.x1a_c00073{left:423.360000px;}
.x51_c00073{left:432.000000px;}
.x3a_c00073{left:442.800000px;}
.xf_c00073{left:444.240000px;}
.x4d_c00073{left:452.880000px;}
.x27_c00073{left:455.040000px;}
.x21_c00073{left:465.120000px;}
.x1b_c00073{left:476.640000px;}
.x54_c00073{left:486.720000px;}
.x2e_c00073{left:496.800000px;}
.x22_c00073{left:508.320000px;}
.x4b_c00073{left:519.120000px;}
.x28_c00073{left:531.360000px;}
.x2f_c00073{left:540.720000px;}
.x49_c00073{left:550.800000px;}
.x10_c00073{left:552.240000px;}
.x4e_c00073{left:561.600000px;}
.x1c_c00073{left:573.120000px;}
.x4a_c00073{left:583.920000px;}
.x8_c00073{left:585.360000px;}
.x36_c00073{left:594.720000px;}
.x3b_c00073{left:604.080000px;}
.x9_c00073{left:605.520000px;}
.x44_c00073{left:615.600000px;}
.x29_c00073{left:617.040000px;}
.x37_c00073{left:626.400000px;}
.xa_c00073{left:637.920000px;}
.x11_c00073{left:639.360000px;}
.x2a_c00073{left:648.000000px;}
.x12_c00073{left:660.240000px;}
.x3f_c00073{left:661.680000px;}
.x23_c00073{left:670.320000px;}
.x30_c00073{left:681.840000px;}
.xb_c00073{left:703.440000px;}
.x13_c00073{left:712.800000px;}
.x24_c00073{left:714.240000px;}
.x1_c00073{left:744.480000px;}
@media print{
.v0_c00073{vertical-align:0.000000pt;}
.ls0_c00073{letter-spacing:0.000000pt;}
.ws0_c00073{word-spacing:0.000000pt;}
.fs2_c00073{font-size:30.720000pt;}
.fs5_c00073{font-size:33.280000pt;}
.fsc_c00073{font-size:35.840000pt;}
.fsd_c00073{font-size:38.400000pt;}
.fs8_c00073{font-size:40.960000pt;}
.fs4_c00073{font-size:43.520000pt;}
.fs3_c00073{font-size:46.080000pt;}
.fs9_c00073{font-size:48.640000pt;}
.fsb_c00073{font-size:51.200000pt;}
.fs1_c00073{font-size:53.760000pt;}
.fs7_c00073{font-size:56.320000pt;}
.fs6_c00073{font-size:58.880000pt;}
.fsa_c00073{font-size:61.440000pt;}
.fs0_c00073{font-size:64.000000pt;}
.y0_c00073{bottom:0.000000pt;}
.y5f_c00073{bottom:56.960000pt;}
.y60_c00073{bottom:57.600000pt;}
.y5b_c00073{bottom:58.880000pt;}
.y5d_c00073{bottom:59.520000pt;}
.y5e_c00073{bottom:60.160000pt;}
.y5c_c00073{bottom:60.800000pt;}
.y5a_c00073{bottom:62.080000pt;}
.y59_c00073{bottom:96.000000pt;}
.y57_c00073{bottom:97.280000pt;}
.y58_c00073{bottom:97.920000pt;}
.y55_c00073{bottom:98.560000pt;}
.y56_c00073{bottom:99.200000pt;}
.y53_c00073{bottom:133.760000pt;}
.y54_c00073{bottom:135.680000pt;}
.y51_c00073{bottom:136.320000pt;}
.y52_c00073{bottom:136.960000pt;}
.y50_c00073{bottom:182.400000pt;}
.y4f_c00073{bottom:218.240000pt;}
.y4c_c00073{bottom:218.880000pt;}
.y49_c00073{bottom:219.520000pt;}
.y4a_c00073{bottom:220.160000pt;}
.y4e_c00073{bottom:220.800000pt;}
.y4d_c00073{bottom:221.440000pt;}
.y4b_c00073{bottom:222.080000pt;}
.y48_c00073{bottom:256.640000pt;}
.y46_c00073{bottom:257.280000pt;}
.y44_c00073{bottom:258.560000pt;}
.y45_c00073{bottom:259.200000pt;}
.y47_c00073{bottom:259.840000pt;}
.y41_c00073{bottom:294.400000pt;}
.y42_c00073{bottom:295.040000pt;}
.y43_c00073{bottom:296.960000pt;}
.y40_c00073{bottom:297.600000pt;}
.y3f_c00073{bottom:332.160000pt;}
.y3e_c00073{bottom:334.720000pt;}
.y3d_c00073{bottom:335.360000pt;}
.y3c_c00073{bottom:370.560000pt;}
.y3b_c00073{bottom:372.480000pt;}
.y39_c00073{bottom:373.120000pt;}
.y3a_c00073{bottom:373.760000pt;}
.y37_c00073{bottom:408.320000pt;}
.y35_c00073{bottom:408.960000pt;}
.y38_c00073{bottom:410.240000pt;}
.y36_c00073{bottom:410.880000pt;}
.y33_c00073{bottom:446.080000pt;}
.y31_c00073{bottom:446.720000pt;}
.y34_c00073{bottom:448.640000pt;}
.y32_c00073{bottom:449.280000pt;}
.y2f_c00073{bottom:483.840000pt;}
.y2e_c00073{bottom:484.480000pt;}
.y2d_c00073{bottom:486.400000pt;}
.y30_c00073{bottom:487.040000pt;}
.y2c_c00073{bottom:521.600000pt;}
.y2a_c00073{bottom:522.240000pt;}
.y2b_c00073{bottom:524.160000pt;}
.y29_c00073{bottom:524.800000pt;}
.y25_c00073{bottom:569.600000pt;}
.y26_c00073{bottom:571.520000pt;}
.y28_c00073{bottom:572.160000pt;}
.y27_c00073{bottom:572.800000pt;}
.y21_c00073{bottom:606.720000pt;}
.y24_c00073{bottom:607.360000pt;}
.y22_c00073{bottom:609.920000pt;}
.y23_c00073{bottom:610.560000pt;}
.y1e_c00073{bottom:645.120000pt;}
.y1f_c00073{bottom:645.760000pt;}
.y1c_c00073{bottom:647.040000pt;}
.y1d_c00073{bottom:647.680000pt;}
.y20_c00073{bottom:648.320000pt;}
.y1b_c00073{bottom:683.520000pt;}
.y1a_c00073{bottom:685.440000pt;}
.y18_c00073{bottom:730.240000pt;}
.y17_c00073{bottom:730.880000pt;}
.y16_c00073{bottom:732.160000pt;}
.y19_c00073{bottom:732.800000pt;}
.y14_c00073{bottom:767.360000pt;}
.y12_c00073{bottom:769.920000pt;}
.y13_c00073{bottom:770.560000pt;}
.y15_c00073{bottom:771.200000pt;}
.yd_c00073{bottom:805.120000pt;}
.yf_c00073{bottom:805.760000pt;}
.y11_c00073{bottom:806.400000pt;}
.ye_c00073{bottom:808.320000pt;}
.y10_c00073{bottom:808.960000pt;}
.y8_c00073{bottom:842.880000pt;}
.yb_c00073{bottom:843.520000pt;}
.yc_c00073{bottom:844.800000pt;}
.y9_c00073{bottom:846.080000pt;}
.ya_c00073{bottom:846.720000pt;}
.y2_c00073{bottom:881.280000pt;}
.y5_c00073{bottom:881.920000pt;}
.y6_c00073{bottom:882.560000pt;}
.y3_c00073{bottom:883.840000pt;}
.y4_c00073{bottom:884.480000pt;}
.y7_c00073{bottom:885.120000pt;}
.y1_c00073{bottom:954.880000pt;}
.h4_c00073{height:27.645000pt;}
.h7_c00073{height:29.948750pt;}
.he_c00073{height:32.252500pt;}
.hf_c00073{height:34.556250pt;}
.ha_c00073{height:36.860000pt;}
.h6_c00073{height:39.163750pt;}
.h5_c00073{height:41.467500pt;}
.hb_c00073{height:43.771250pt;}
.hd_c00073{height:46.075000pt;}
.h3_c00073{height:48.378750pt;}
.h9_c00073{height:50.682500pt;}
.h8_c00073{height:52.986250pt;}
.hc_c00073{height:55.290000pt;}
.h2_c00073{height:57.593750pt;}
.h0_c00073{height:1025.280000pt;}
.h1_c00073{height:1025.333333pt;}
.w0_c00073{width:720.640000pt;}
.w1_c00073{width:720.666667pt;}
.x0_c00073{left:0.000000pt;}
.x45_c00073{left:77.440000pt;}
.x14_c00073{left:78.720000pt;}
.x2_c00073{left:79.999547pt;}
.x40_c00073{left:96.640000pt;}
.x2b_c00073{left:106.240000pt;}
.x43_c00073{left:115.200000pt;}
.x15_c00073{left:117.120000pt;}
.x33_c00073{left:124.800000pt;}
.x52_c00073{left:126.080000pt;}
.x46_c00073{left:135.040000pt;}
.x1d_c00073{left:136.320000pt;}
.x16_c00073{left:145.920000pt;}
.x3c_c00073{left:154.880000pt;}
.x3_c00073{left:164.480000pt;}
.xc_c00073{left:174.080000pt;}
.x47_c00073{left:178.560000pt;}
.x2c_c00073{left:183.040000pt;}
.x17_c00073{left:184.320000pt;}
.x3d_c00073{left:192.640000pt;}
.x4_c00073{left:193.920000pt;}
.x48_c00073{left:202.880000pt;}
.x38_c00073{left:211.840000pt;}
.x2d_c00073{left:213.120000pt;}
.x4f_c00073{left:220.800000pt;}
.x5_c00073{left:222.720000pt;}
.x3e_c00073{left:240.640000pt;}
.x1e_c00073{left:241.920000pt;}
.x4c_c00073{left:250.240000pt;}
.x31_c00073{left:251.520000pt;}
.x25_c00073{left:259.200000pt;}
.x41_c00073{left:268.800000pt;}
.x1f_c00073{left:270.080000pt;}
.x26_c00073{left:279.040000pt;}
.x18_c00073{left:280.320000pt;}
.x6_c00073{left:289.280000pt;}
.x34_c00073{left:297.600000pt;}
.x19_c00073{left:307.840000pt;}
.xd_c00073{left:309.120000pt;}
.x53_c00073{left:317.440000pt;}
.x35_c00073{left:326.400000pt;}
.x20_c00073{left:327.680000pt;}
.xe_c00073{left:336.640000pt;}
.x39_c00073{left:346.240000pt;}
.x50_c00073{left:355.200000pt;}
.x42_c00073{left:364.800000pt;}
.x7_c00073{left:366.080000pt;}
.x32_c00073{left:374.400000pt;}
.x1a_c00073{left:376.320000pt;}
.x51_c00073{left:384.000000pt;}
.x3a_c00073{left:393.600000pt;}
.xf_c00073{left:394.880000pt;}
.x4d_c00073{left:402.560000pt;}
.x27_c00073{left:404.480000pt;}
.x21_c00073{left:413.440000pt;}
.x1b_c00073{left:423.680000pt;}
.x54_c00073{left:432.640000pt;}
.x2e_c00073{left:441.600000pt;}
.x22_c00073{left:451.840000pt;}
.x4b_c00073{left:461.440000pt;}
.x28_c00073{left:472.320000pt;}
.x2f_c00073{left:480.640000pt;}
.x49_c00073{left:489.600000pt;}
.x10_c00073{left:490.880000pt;}
.x4e_c00073{left:499.200000pt;}
.x1c_c00073{left:509.440000pt;}
.x4a_c00073{left:519.040000pt;}
.x8_c00073{left:520.320000pt;}
.x36_c00073{left:528.640000pt;}
.x3b_c00073{left:536.960000pt;}
.x9_c00073{left:538.240000pt;}
.x44_c00073{left:547.200000pt;}
.x29_c00073{left:548.480000pt;}
.x37_c00073{left:556.800000pt;}
.xa_c00073{left:567.040000pt;}
.x11_c00073{left:568.320000pt;}
.x2a_c00073{left:576.000000pt;}
.x12_c00073{left:586.880000pt;}
.x3f_c00073{left:588.160000pt;}
.x23_c00073{left:595.840000pt;}
.x30_c00073{left:606.080000pt;}
.xb_c00073{left:625.280000pt;}
.x13_c00073{left:633.600000pt;}
.x24_c00073{left:634.880000pt;}
.x1_c00073{left:661.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4ce920661db23d1ed2967d15.woff2')format("woff");}.ff1_c00074{font-family:ff1_c00074;line-height:1.109863;font-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_c00074{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m2a_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);}
.m37_c00074{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m27_c00074{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m31_c00074{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m45_c00074{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m33_c00074{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00074{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m9_c00074{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00074{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m47_c00074{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m7_c00074{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);}
.m51_c00074{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00074{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m3_c00074{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);}
.m54_c00074{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m1_c00074{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m40_c00074{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);}
.m43_c00074{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m39_c00074{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m5_c00074{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.mf_c00074{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00074{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m6_c00074{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);}
.m4c_c00074{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m18_c00074{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);}
.m4b_c00074{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m17_c00074{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00074{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m50_c00074{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m48_c00074{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m41_c00074{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m38_c00074{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);}
.m52_c00074{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m13_c00074{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_c00074{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);}
.m23_c00074{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00074{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.mb_c00074{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m28_c00074{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00074{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);}
.m1d_c00074{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m25_c00074{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);}
.m3e_c00074{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m11_c00074{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m59_c00074{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00074{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);}
.m36_c00074{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m4_c00074{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00074{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);}
.m16_c00074{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00074{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.md_c00074{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00074{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m49_c00074{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00074{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);}
.m20_c00074{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);}
.m34_c00074{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m15_c00074{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00074{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m21_c00074{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);}
.m3d_c00074{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00074{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m10_c00074{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m30_c00074{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);}
.m44_c00074{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m29_c00074{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m58_c00074{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m56_c00074{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);}
.m24_c00074{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.me_c00074{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m14_c00074{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);}
.ma_c00074{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m46_c00074{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00074{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00074{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.mc_c00074{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00074{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m2_c00074{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m0_c00074{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m12_c00074{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);}
.m57_c00074{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m32_c00074{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00074{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);}
.m19_c00074{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m53_c00074{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m8_c00074{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m35_c00074{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.m55_c00074{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);}
.m26_c00074{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);}
.m5a_c00074{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.m42_c00074{transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);}
.v1_c00074{vertical-align:-8.640000px;}
.v0_c00074{vertical-align:0.000000px;}
.ls0_c00074{letter-spacing:0.000000px;}
.sc__c00074{text-shadow:none;}
.sc0_c00074{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00074{-webkit-text-stroke:0px transparent;}
.sc0_c00074{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00074{word-spacing:-0.850800px;}
.ws2_c00074{word-spacing:0.000000px;}
.ws1_c00074{word-spacing:4.705200px;}
.fc0_c00074{color:transparent;}
.fs0_c00074{font-size:34.560000px;}
.fsa_c00074{font-size:37.440000px;}
.fs7_c00074{font-size:40.320000px;}
.fs4_c00074{font-size:43.200000px;}
.fs6_c00074{font-size:46.080000px;}
.fs1_c00074{font-size:48.960000px;}
.fs2_c00074{font-size:51.840000px;}
.fse_c00074{font-size:54.720000px;}
.fs9_c00074{font-size:57.600000px;}
.fs5_c00074{font-size:60.480000px;}
.fs3_c00074{font-size:63.360000px;}
.fsb_c00074{font-size:66.240000px;}
.fsc_c00074{font-size:69.120000px;}
.fsd_c00074{font-size:72.000000px;}
.fs8_c00074{font-size:100.800000px;}
.y0_c00074{bottom:0.000000px;}
.y60_c00074{bottom:87.120000px;}
.y5f_c00074{bottom:127.440000px;}
.y5b_c00074{bottom:128.880000px;}
.y5e_c00074{bottom:130.320000px;}
.y5d_c00074{bottom:131.040000px;}
.y5c_c00074{bottom:131.760000px;}
.y5a_c00074{bottom:169.920000px;}
.y58_c00074{bottom:170.640000px;}
.y56_c00074{bottom:172.080000px;}
.y59_c00074{bottom:172.800000px;}
.y57_c00074{bottom:173.520000px;}
.y53_c00074{bottom:212.400000px;}
.y52_c00074{bottom:213.840000px;}
.y55_c00074{bottom:215.280000px;}
.y54_c00074{bottom:216.000000px;}
.y50_c00074{bottom:255.600000px;}
.y4e_c00074{bottom:257.040000px;}
.y4f_c00074{bottom:258.480000px;}
.y51_c00074{bottom:259.200000px;}
.y4d_c00074{bottom:259.920000px;}
.y4b_c00074{bottom:298.800000px;}
.y4c_c00074{bottom:300.960000px;}
.y4a_c00074{bottom:301.680000px;}
.y49_c00074{bottom:302.400000px;}
.y47_c00074{bottom:339.840000px;}
.y48_c00074{bottom:340.560000px;}
.y45_c00074{bottom:341.280000px;}
.y46_c00074{bottom:343.440000px;}
.y44_c00074{bottom:344.160000px;}
.y43_c00074{bottom:344.880000px;}
.y42_c00074{bottom:383.760000px;}
.y41_c00074{bottom:385.920000px;}
.y3f_c00074{bottom:386.640000px;}
.y40_c00074{bottom:387.360000px;}
.y3e_c00074{bottom:425.520000px;}
.y3c_c00074{bottom:426.240000px;}
.y3d_c00074{bottom:426.960000px;}
.y39_c00074{bottom:428.400000px;}
.y3b_c00074{bottom:429.120000px;}
.y3a_c00074{bottom:429.840000px;}
.y38_c00074{bottom:468.720000px;}
.y36_c00074{bottom:471.600000px;}
.y37_c00074{bottom:472.320000px;}
.y31_c00074{bottom:511.200000px;}
.y33_c00074{bottom:511.920000px;}
.y35_c00074{bottom:513.360000px;}
.y34_c00074{bottom:514.080000px;}
.y32_c00074{bottom:514.800000px;}
.y2e_c00074{bottom:554.400000px;}
.y30_c00074{bottom:556.560000px;}
.y2f_c00074{bottom:557.280000px;}
.y2c_c00074{bottom:596.880000px;}
.y2d_c00074{bottom:597.600000px;}
.y29_c00074{bottom:599.040000px;}
.y2a_c00074{bottom:599.760000px;}
.y2b_c00074{bottom:600.480000px;}
.y27_c00074{bottom:639.360000px;}
.y25_c00074{bottom:641.520000px;}
.y28_c00074{bottom:642.240000px;}
.y26_c00074{bottom:642.960000px;}
.y23_c00074{bottom:692.640000px;}
.y24_c00074{bottom:693.360000px;}
.y21_c00074{bottom:694.800000px;}
.y22_c00074{bottom:695.520000px;}
.y1c_c00074{bottom:734.400000px;}
.y1e_c00074{bottom:735.120000px;}
.y1d_c00074{bottom:735.840000px;}
.y1f_c00074{bottom:738.000000px;}
.y20_c00074{bottom:738.720000px;}
.y19_c00074{bottom:777.600000px;}
.y1a_c00074{bottom:778.320000px;}
.y17_c00074{bottom:779.760000px;}
.y1b_c00074{bottom:780.480000px;}
.y18_c00074{bottom:781.200000px;}
.y16_c00074{bottom:820.800000px;}
.y14_c00074{bottom:822.960000px;}
.y15_c00074{bottom:823.680000px;}
.y13_c00074{bottom:863.280000px;}
.y11_c00074{bottom:865.440000px;}
.y12_c00074{bottom:866.160000px;}
.yd_c00074{bottom:905.040000px;}
.y10_c00074{bottom:906.480000px;}
.ye_c00074{bottom:908.640000px;}
.yf_c00074{bottom:909.360000px;}
.yc_c00074{bottom:933.120000px;}
.y9_c00074{bottom:948.240000px;}
.y7_c00074{bottom:948.960000px;}
.y8_c00074{bottom:950.400000px;}
.yb_c00074{bottom:951.120000px;}
.ya_c00074{bottom:951.840000px;}
.y6_c00074{bottom:964.080000px;}
.y2_c00074{bottom:991.440000px;}
.y3_c00074{bottom:992.880000px;}
.y1_c00074{bottom:993.600000px;}
.y5_c00074{bottom:994.320000px;}
.y4_c00074{bottom:995.040000px;}
.h2_c00074{height:31.100625px;}
.hc_c00074{height:33.692344px;}
.h9_c00074{height:36.284062px;}
.h6_c00074{height:38.875781px;}
.h8_c00074{height:41.467500px;}
.h3_c00074{height:44.059219px;}
.h4_c00074{height:46.650937px;}
.h10_c00074{height:49.242656px;}
.hb_c00074{height:51.834375px;}
.h7_c00074{height:54.426094px;}
.h5_c00074{height:57.017812px;}
.hd_c00074{height:59.609531px;}
.he_c00074{height:62.201250px;}
.hf_c00074{height:64.792969px;}
.ha_c00074{height:90.710156px;}
.h1_c00074{height:1150.500000px;}
.h0_c00074{height:1150.560000px;}
.w1_c00074{width:806.250000px;}
.w0_c00074{width:806.400000px;}
.x0_c00074{left:0.000000px;}
.x18_c00074{left:84.960000px;}
.x1_c00074{left:86.400000px;}
.x48_c00074{left:117.360000px;}
.x30_c00074{left:128.160000px;}
.x25_c00074{left:129.600000px;}
.x2_c00074{left:140.400000px;}
.x1c_c00074{left:151.200000px;}
.x40_c00074{left:159.840000px;}
.x10_c00074{left:161.280000px;}
.x3_c00074{left:170.640000px;}
.x31_c00074{left:172.080000px;}
.x38_c00074{left:182.880000px;}
.x26_c00074{left:185.040000px;}
.x19_c00074{left:192.960000px;}
.x35_c00074{left:194.400000px;}
.x4_c00074{left:203.040000px;}
.x1d_c00074{left:213.840000px;}
.x43_c00074{left:215.280000px;}
.x27_c00074{left:224.640000px;}
.x1a_c00074{left:236.160000px;}
.x32_c00074{left:247.680000px;}
.x1e_c00074{left:257.760000px;}
.x5_c00074{left:267.840000px;}
.x44_c00074{left:269.280000px;}
.x11_c00074{left:279.360000px;}
.x41_c00074{left:280.800000px;}
.x33_c00074{left:290.160000px;}
.x1f_c00074{left:300.240000px;}
.x49_c00074{left:301.680000px;}
.x36_c00074{left:309.600000px;}
.x12_c00074{left:311.040000px;}
.x4b_c00074{left:312.480000px;}
.x20_c00074{left:321.840000px;}
.xc_c00074{left:323.280000px;}
.x28_c00074{left:332.640000px;}
.x4a_c00074{left:343.440000px;}
.x3d_c00074{left:344.880000px;}
.x3b_c00074{left:354.960000px;}
.x21_c00074{left:365.760000px;}
.xd_c00074{left:375.840000px;}
.x13_c00074{left:387.360000px;}
.x6_c00074{left:397.440000px;}
.x3e_c00074{left:408.960000px;}
.xe_c00074{left:419.040000px;}
.x34_c00074{left:429.840000px;}
.x7_c00074{left:431.280000px;}
.x22_c00074{left:440.640000px;}
.x29_c00074{left:452.160000px;}
.x14_c00074{left:462.240000px;}
.x46_c00074{left:463.680000px;}
.x4c_c00074{left:473.040000px;}
.x8_c00074{left:484.560000px;}
.x3f_c00074{left:493.200000px;}
.x2a_c00074{left:494.640000px;}
.x1b_c00074{left:506.880000px;}
.x9_c00074{left:516.960000px;}
.x3c_c00074{left:527.040000px;}
.x4d_c00074{left:528.480000px;}
.x15_c00074{left:537.840000px;}
.x2d_c00074{left:548.640000px;}
.x45_c00074{left:559.440000px;}
.x16_c00074{left:570.960000px;}
.x23_c00074{left:581.760000px;}
.x2b_c00074{left:613.440000px;}
.x4e_c00074{left:616.320000px;}
.x39_c00074{left:624.240000px;}
.x24_c00074{left:635.040000px;}
.x2e_c00074{left:637.920000px;}
.x47_c00074{left:645.840000px;}
.x2c_c00074{left:647.280000px;}
.xa_c00074{left:657.360000px;}
.x2f_c00074{left:668.160000px;}
.x17_c00074{left:678.240000px;}
.xf_c00074{left:685.440000px;}
.x3a_c00074{left:689.760000px;}
.xb_c00074{left:701.280000px;}
.x37_c00074{left:710.640000px;}
.x42_c00074{left:712.800000px;}
@media print{
.v1_c00074{vertical-align:-7.680000pt;}
.v0_c00074{vertical-align:0.000000pt;}
.ls0_c00074{letter-spacing:0.000000pt;}
.ws0_c00074{word-spacing:-0.756267pt;}
.ws2_c00074{word-spacing:0.000000pt;}
.ws1_c00074{word-spacing:4.182400pt;}
.fs0_c00074{font-size:30.720000pt;}
.fsa_c00074{font-size:33.280000pt;}
.fs7_c00074{font-size:35.840000pt;}
.fs4_c00074{font-size:38.400000pt;}
.fs6_c00074{font-size:40.960000pt;}
.fs1_c00074{font-size:43.520000pt;}
.fs2_c00074{font-size:46.080000pt;}
.fse_c00074{font-size:48.640000pt;}
.fs9_c00074{font-size:51.200000pt;}
.fs5_c00074{font-size:53.760000pt;}
.fs3_c00074{font-size:56.320000pt;}
.fsb_c00074{font-size:58.880000pt;}
.fsc_c00074{font-size:61.440000pt;}
.fsd_c00074{font-size:64.000000pt;}
.fs8_c00074{font-size:89.600000pt;}
.y0_c00074{bottom:0.000000pt;}
.y60_c00074{bottom:77.440000pt;}
.y5f_c00074{bottom:113.280000pt;}
.y5b_c00074{bottom:114.560000pt;}
.y5e_c00074{bottom:115.840000pt;}
.y5d_c00074{bottom:116.480000pt;}
.y5c_c00074{bottom:117.120000pt;}
.y5a_c00074{bottom:151.040000pt;}
.y58_c00074{bottom:151.680000pt;}
.y56_c00074{bottom:152.960000pt;}
.y59_c00074{bottom:153.600000pt;}
.y57_c00074{bottom:154.240000pt;}
.y53_c00074{bottom:188.800000pt;}
.y52_c00074{bottom:190.080000pt;}
.y55_c00074{bottom:191.360000pt;}
.y54_c00074{bottom:192.000000pt;}
.y50_c00074{bottom:227.200000pt;}
.y4e_c00074{bottom:228.480000pt;}
.y4f_c00074{bottom:229.760000pt;}
.y51_c00074{bottom:230.400000pt;}
.y4d_c00074{bottom:231.040000pt;}
.y4b_c00074{bottom:265.600000pt;}
.y4c_c00074{bottom:267.520000pt;}
.y4a_c00074{bottom:268.160000pt;}
.y49_c00074{bottom:268.800000pt;}
.y47_c00074{bottom:302.080000pt;}
.y48_c00074{bottom:302.720000pt;}
.y45_c00074{bottom:303.360000pt;}
.y46_c00074{bottom:305.280000pt;}
.y44_c00074{bottom:305.920000pt;}
.y43_c00074{bottom:306.560000pt;}
.y42_c00074{bottom:341.120000pt;}
.y41_c00074{bottom:343.040000pt;}
.y3f_c00074{bottom:343.680000pt;}
.y40_c00074{bottom:344.320000pt;}
.y3e_c00074{bottom:378.240000pt;}
.y3c_c00074{bottom:378.880000pt;}
.y3d_c00074{bottom:379.520000pt;}
.y39_c00074{bottom:380.800000pt;}
.y3b_c00074{bottom:381.440000pt;}
.y3a_c00074{bottom:382.080000pt;}
.y38_c00074{bottom:416.640000pt;}
.y36_c00074{bottom:419.200000pt;}
.y37_c00074{bottom:419.840000pt;}
.y31_c00074{bottom:454.400000pt;}
.y33_c00074{bottom:455.040000pt;}
.y35_c00074{bottom:456.320000pt;}
.y34_c00074{bottom:456.960000pt;}
.y32_c00074{bottom:457.600000pt;}
.y2e_c00074{bottom:492.800000pt;}
.y30_c00074{bottom:494.720000pt;}
.y2f_c00074{bottom:495.360000pt;}
.y2c_c00074{bottom:530.560000pt;}
.y2d_c00074{bottom:531.200000pt;}
.y29_c00074{bottom:532.480000pt;}
.y2a_c00074{bottom:533.120000pt;}
.y2b_c00074{bottom:533.760000pt;}
.y27_c00074{bottom:568.320000pt;}
.y25_c00074{bottom:570.240000pt;}
.y28_c00074{bottom:570.880000pt;}
.y26_c00074{bottom:571.520000pt;}
.y23_c00074{bottom:615.680000pt;}
.y24_c00074{bottom:616.320000pt;}
.y21_c00074{bottom:617.600000pt;}
.y22_c00074{bottom:618.240000pt;}
.y1c_c00074{bottom:652.800000pt;}
.y1e_c00074{bottom:653.440000pt;}
.y1d_c00074{bottom:654.080000pt;}
.y1f_c00074{bottom:656.000000pt;}
.y20_c00074{bottom:656.640000pt;}
.y19_c00074{bottom:691.200000pt;}
.y1a_c00074{bottom:691.840000pt;}
.y17_c00074{bottom:693.120000pt;}
.y1b_c00074{bottom:693.760000pt;}
.y18_c00074{bottom:694.400000pt;}
.y16_c00074{bottom:729.600000pt;}
.y14_c00074{bottom:731.520000pt;}
.y15_c00074{bottom:732.160000pt;}
.y13_c00074{bottom:767.360000pt;}
.y11_c00074{bottom:769.280000pt;}
.y12_c00074{bottom:769.920000pt;}
.yd_c00074{bottom:804.480000pt;}
.y10_c00074{bottom:805.760000pt;}
.ye_c00074{bottom:807.680000pt;}
.yf_c00074{bottom:808.320000pt;}
.yc_c00074{bottom:829.440000pt;}
.y9_c00074{bottom:842.880000pt;}
.y7_c00074{bottom:843.520000pt;}
.y8_c00074{bottom:844.800000pt;}
.yb_c00074{bottom:845.440000pt;}
.ya_c00074{bottom:846.080000pt;}
.y6_c00074{bottom:856.960000pt;}
.y2_c00074{bottom:881.280000pt;}
.y3_c00074{bottom:882.560000pt;}
.y1_c00074{bottom:883.200000pt;}
.y5_c00074{bottom:883.840000pt;}
.y4_c00074{bottom:884.480000pt;}
.h2_c00074{height:27.645000pt;}
.hc_c00074{height:29.948750pt;}
.h9_c00074{height:32.252500pt;}
.h6_c00074{height:34.556250pt;}
.h8_c00074{height:36.860000pt;}
.h3_c00074{height:39.163750pt;}
.h4_c00074{height:41.467500pt;}
.h10_c00074{height:43.771250pt;}
.hb_c00074{height:46.075000pt;}
.h7_c00074{height:48.378750pt;}
.h5_c00074{height:50.682500pt;}
.hd_c00074{height:52.986250pt;}
.he_c00074{height:55.290000pt;}
.hf_c00074{height:57.593750pt;}
.ha_c00074{height:80.631250pt;}
.h1_c00074{height:1022.666667pt;}
.h0_c00074{height:1022.720000pt;}
.w1_c00074{width:716.666667pt;}
.w0_c00074{width:716.800000pt;}
.x0_c00074{left:0.000000pt;}
.x18_c00074{left:75.520000pt;}
.x1_c00074{left:76.800000pt;}
.x48_c00074{left:104.320000pt;}
.x30_c00074{left:113.920000pt;}
.x25_c00074{left:115.200000pt;}
.x2_c00074{left:124.800000pt;}
.x1c_c00074{left:134.400000pt;}
.x40_c00074{left:142.080000pt;}
.x10_c00074{left:143.360000pt;}
.x3_c00074{left:151.680000pt;}
.x31_c00074{left:152.960000pt;}
.x38_c00074{left:162.560000pt;}
.x26_c00074{left:164.480000pt;}
.x19_c00074{left:171.520000pt;}
.x35_c00074{left:172.800000pt;}
.x4_c00074{left:180.480000pt;}
.x1d_c00074{left:190.080000pt;}
.x43_c00074{left:191.360000pt;}
.x27_c00074{left:199.680000pt;}
.x1a_c00074{left:209.920000pt;}
.x32_c00074{left:220.160000pt;}
.x1e_c00074{left:229.120000pt;}
.x5_c00074{left:238.080000pt;}
.x44_c00074{left:239.360000pt;}
.x11_c00074{left:248.320000pt;}
.x41_c00074{left:249.600000pt;}
.x33_c00074{left:257.920000pt;}
.x1f_c00074{left:266.880000pt;}
.x49_c00074{left:268.160000pt;}
.x36_c00074{left:275.200000pt;}
.x12_c00074{left:276.480000pt;}
.x4b_c00074{left:277.760000pt;}
.x20_c00074{left:286.080000pt;}
.xc_c00074{left:287.360000pt;}
.x28_c00074{left:295.680000pt;}
.x4a_c00074{left:305.280000pt;}
.x3d_c00074{left:306.560000pt;}
.x3b_c00074{left:315.520000pt;}
.x21_c00074{left:325.120000pt;}
.xd_c00074{left:334.080000pt;}
.x13_c00074{left:344.320000pt;}
.x6_c00074{left:353.280000pt;}
.x3e_c00074{left:363.520000pt;}
.xe_c00074{left:372.480000pt;}
.x34_c00074{left:382.080000pt;}
.x7_c00074{left:383.360000pt;}
.x22_c00074{left:391.680000pt;}
.x29_c00074{left:401.920000pt;}
.x14_c00074{left:410.880000pt;}
.x46_c00074{left:412.160000pt;}
.x4c_c00074{left:420.480000pt;}
.x8_c00074{left:430.720000pt;}
.x3f_c00074{left:438.400000pt;}
.x2a_c00074{left:439.680000pt;}
.x1b_c00074{left:450.560000pt;}
.x9_c00074{left:459.520000pt;}
.x3c_c00074{left:468.480000pt;}
.x4d_c00074{left:469.760000pt;}
.x15_c00074{left:478.080000pt;}
.x2d_c00074{left:487.680000pt;}
.x45_c00074{left:497.280000pt;}
.x16_c00074{left:507.520000pt;}
.x23_c00074{left:517.120000pt;}
.x2b_c00074{left:545.280000pt;}
.x4e_c00074{left:547.840000pt;}
.x39_c00074{left:554.880000pt;}
.x24_c00074{left:564.480000pt;}
.x2e_c00074{left:567.040000pt;}
.x47_c00074{left:574.080000pt;}
.x2c_c00074{left:575.360000pt;}
.xa_c00074{left:584.320000pt;}
.x2f_c00074{left:593.920000pt;}
.x17_c00074{left:602.880000pt;}
.xf_c00074{left:609.280000pt;}
.x3a_c00074{left:613.120000pt;}
.xb_c00074{left:623.360000pt;}
.x37_c00074{left:631.680000pt;}
.x42_c00074{left:633.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d3ed67a2a5db857a891942a2.woff2')format("woff");}.ff1_c00075{font-family:ff1_c00075;line-height:1.109863;font-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_c00075{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m44_c00075{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00075{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m49_c00075{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m34_c00075{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m24_c00075{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00075{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m33_c00075{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m9_c00075{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00075{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m52_c00075{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.ma_c00075{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.mb_c00075{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m55_c00075{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m38_c00075{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);}
.m37_c00075{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m26_c00075{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m4_c00075{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m41_c00075{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m25_c00075{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00075{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);}
.m30_c00075{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1_c00075{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.mc_c00075{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m3_c00075{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);}
.m22_c00075{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);}
.m5_c00075{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00075{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);}
.m31_c00075{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00075{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);}
.m23_c00075{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_c00075{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);}
.m3d_c00075{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00075{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m50_c00075{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m17_c00075{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);}
.m59_c00075{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m6_c00075{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);}
.m43_c00075{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m0_c00075{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);}
.m2f_c00075{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);}
.m28_c00075{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m42_c00075{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m40_c00075{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m11_c00075{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);}
.m46_c00075{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m53_c00075{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m16_c00075{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);}
.m3c_c00075{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m12_c00075{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);}
.m4b_c00075{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.md_c00075{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m18_c00075{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m39_c00075{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m10_c00075{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);}
.m36_c00075{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00075{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00075{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m57_c00075{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m20_c00075{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m15_c00075{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m58_c00075{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);}
.m19_c00075{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);}
.m48_c00075{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m2_c00075{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.mf_c00075{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00075{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);}
.m51_c00075{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00075{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00075{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);}
.m27_c00075{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00075{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);}
.m3a_c00075{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00075{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);}
.m7_c00075{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);}
.m47_c00075{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m35_c00075{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m14_c00075{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m8_c00075{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.me_c00075{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m54_c00075{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00075{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);}
.m29_c00075{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m13_c00075{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00075{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);}
.m32_c00075{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00075{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);}
.m45_c00075{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00075{transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00075{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.m56_c00075{transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);}
.v0_c00075{vertical-align:0.000000px;}
.v1_c00075{vertical-align:8.640000px;}
.ls0_c00075{letter-spacing:0.000000px;}
.sc__c00075{text-shadow:none;}
.sc0_c00075{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00075{-webkit-text-stroke:0px transparent;}
.sc0_c00075{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00075{word-spacing:-1.954800px;}
.ws1_c00075{word-spacing:0.000000px;}
.fc0_c00075{color:transparent;}
.fs0_c00075{font-size:23.040000px;}
.fs5_c00075{font-size:34.560000px;}
.fs4_c00075{font-size:37.440000px;}
.fse_c00075{font-size:43.200000px;}
.fs7_c00075{font-size:46.080000px;}
.fs3_c00075{font-size:48.960000px;}
.fs1_c00075{font-size:51.840000px;}
.fs6_c00075{font-size:54.720000px;}
.fsa_c00075{font-size:57.600000px;}
.fs2_c00075{font-size:60.480000px;}
.fs8_c00075{font-size:63.360000px;}
.fsd_c00075{font-size:66.240000px;}
.fs9_c00075{font-size:69.120000px;}
.fsb_c00075{font-size:72.000000px;}
.fsc_c00075{font-size:77.760000px;}
.y0_c00075{bottom:0.000000px;}
.y69_c00075{bottom:55.440000px;}
.y6a_c00075{bottom:56.160000px;}
.y6d_c00075{bottom:56.880000px;}
.y6c_c00075{bottom:57.600000px;}
.y6b_c00075{bottom:58.320000px;}
.y68_c00075{bottom:59.760000px;}
.y67_c00075{bottom:60.480000px;}
.y65_c00075{bottom:97.920000px;}
.y66_c00075{bottom:100.080000px;}
.y64_c00075{bottom:100.800000px;}
.y63_c00075{bottom:101.520000px;}
.y62_c00075{bottom:102.960000px;}
.y5f_c00075{bottom:141.120000px;}
.y61_c00075{bottom:142.560000px;}
.y60_c00075{bottom:143.280000px;}
.y5d_c00075{bottom:144.000000px;}
.y5e_c00075{bottom:144.720000px;}
.y5c_c00075{bottom:145.440000px;}
.y59_c00075{bottom:182.880000px;}
.y58_c00075{bottom:183.600000px;}
.y57_c00075{bottom:184.320000px;}
.y5b_c00075{bottom:185.040000px;}
.y5a_c00075{bottom:185.760000px;}
.y56_c00075{bottom:186.480000px;}
.y55_c00075{bottom:187.200000px;}
.y54_c00075{bottom:187.920000px;}
.y53_c00075{bottom:225.360000px;}
.y52_c00075{bottom:226.080000px;}
.y50_c00075{bottom:226.800000px;}
.y51_c00075{bottom:228.240000px;}
.y4f_c00075{bottom:267.840000px;}
.y4e_c00075{bottom:268.560000px;}
.y4d_c00075{bottom:270.720000px;}
.y4c_c00075{bottom:271.440000px;}
.y4b_c00075{bottom:272.160000px;}
.y49_c00075{bottom:311.040000px;}
.y48_c00075{bottom:311.760000px;}
.y4a_c00075{bottom:313.200000px;}
.y47_c00075{bottom:313.920000px;}
.y46_c00075{bottom:314.640000px;}
.y44_c00075{bottom:352.800000px;}
.y45_c00075{bottom:353.520000px;}
.y43_c00075{bottom:355.680000px;}
.y42_c00075{bottom:356.400000px;}
.y40_c00075{bottom:396.000000px;}
.y3e_c00075{bottom:396.720000px;}
.y41_c00075{bottom:397.440000px;}
.y3f_c00075{bottom:398.160000px;}
.y3d_c00075{bottom:398.880000px;}
.y3c_c00075{bottom:399.600000px;}
.y3b_c00075{bottom:437.760000px;}
.y3a_c00075{bottom:438.480000px;}
.y37_c00075{bottom:439.200000px;}
.y39_c00075{bottom:440.640000px;}
.y38_c00075{bottom:441.360000px;}
.y33_c00075{bottom:481.680000px;}
.y35_c00075{bottom:482.400000px;}
.y36_c00075{bottom:483.120000px;}
.y32_c00075{bottom:483.840000px;}
.y34_c00075{bottom:484.560000px;}
.y2e_c00075{bottom:524.160000px;}
.y31_c00075{bottom:525.600000px;}
.y2f_c00075{bottom:526.320000px;}
.y30_c00075{bottom:527.040000px;}
.y2b_c00075{bottom:565.920000px;}
.y2d_c00075{bottom:566.640000px;}
.y2a_c00075{bottom:568.800000px;}
.y2c_c00075{bottom:569.520000px;}
.y29_c00075{bottom:609.120000px;}
.y27_c00075{bottom:611.280000px;}
.y28_c00075{bottom:612.000000px;}
.y26_c00075{bottom:662.400000px;}
.y25_c00075{bottom:665.280000px;}
.y23_c00075{bottom:704.880000px;}
.y24_c00075{bottom:705.600000px;}
.y22_c00075{bottom:707.040000px;}
.y21_c00075{bottom:707.760000px;}
.y1b_c00075{bottom:745.920000px;}
.y1e_c00075{bottom:746.640000px;}
.y1c_c00075{bottom:747.360000px;}
.y20_c00075{bottom:749.520000px;}
.y1d_c00075{bottom:750.240000px;}
.y1f_c00075{bottom:750.960000px;}
.y18_c00075{bottom:789.120000px;}
.y1a_c00075{bottom:792.000000px;}
.y19_c00075{bottom:792.720000px;}
.y15_c00075{bottom:831.600000px;}
.y17_c00075{bottom:833.760000px;}
.y14_c00075{bottom:834.480000px;}
.y16_c00075{bottom:835.200000px;}
.y10_c00075{bottom:874.800000px;}
.y12_c00075{bottom:875.520000px;}
.yf_c00075{bottom:876.960000px;}
.y11_c00075{bottom:877.680000px;}
.y13_c00075{bottom:878.400000px;}
.ye_c00075{bottom:918.000000px;}
.yb_c00075{bottom:919.440000px;}
.yc_c00075{bottom:920.160000px;}
.yd_c00075{bottom:921.600000px;}
.y9_c00075{bottom:960.480000px;}
.y6_c00075{bottom:961.200000px;}
.y7_c00075{bottom:961.920000px;}
.y8_c00075{bottom:962.640000px;}
.ya_c00075{bottom:963.360000px;}
.y4_c00075{bottom:1003.680000px;}
.y2_c00075{bottom:1004.400000px;}
.y3_c00075{bottom:1005.840000px;}
.y5_c00075{bottom:1006.560000px;}
.y1_c00075{bottom:1105.920000px;}
.h2_c00075{height:20.733750px;}
.h8_c00075{height:31.100625px;}
.h7_c00075{height:33.692344px;}
.h11_c00075{height:38.875781px;}
.ha_c00075{height:41.467500px;}
.h6_c00075{height:44.059219px;}
.h3_c00075{height:46.650937px;}
.h9_c00075{height:49.242656px;}
.hd_c00075{height:51.834375px;}
.h4_c00075{height:54.426094px;}
.hb_c00075{height:57.017812px;}
.h10_c00075{height:59.609531px;}
.hc_c00075{height:62.201250px;}
.h5_c00075{height:63.066094px;}
.he_c00075{height:64.792969px;}
.hf_c00075{height:69.976406px;}
.h0_c00075{height:1153.440000px;}
.h1_c00075{height:1153.500000px;}
.w0_c00075{width:810.720000px;}
.w1_c00075{width:810.750000px;}
.x0_c00075{left:0.000000px;}
.xa_c00075{left:89.280000px;}
.x34_c00075{left:90.720000px;}
.x30_c00075{left:110.880000px;}
.x42_c00075{left:121.680000px;}
.x2b_c00075{left:132.480000px;}
.x14_c00075{left:133.920000px;}
.x39_c00075{left:142.560000px;}
.x1d_c00075{left:144.720000px;}
.x31_c00075{left:153.360000px;}
.x15_c00075{left:155.520000px;}
.x2c_c00075{left:165.600000px;}
.xb_c00075{left:175.680000px;}
.x35_c00075{left:177.840000px;}
.x43_c00075{left:185.760000px;}
.x51_c00075{left:187.200000px;}
.x24_c00075{left:197.280000px;}
.x2_c00075{left:198.720000px;}
.x2d_c00075{left:207.360000px;}
.xc_c00075{left:208.800000px;}
.x1e_c00075{left:218.880000px;}
.x25_c00075{left:229.680000px;}
.x23_c00075{left:239.760000px;}
.xd_c00075{left:241.200000px;}
.x3_c00075{left:251.280000px;}
.x26_c00075{left:261.360000px;}
.x4b_c00075{left:272.880000px;}
.x36_c00075{left:274.320000px;}
.x4_c00075{left:283.680000px;}
.x16_c00075{left:295.200000px;}
.x3a_c00075{left:305.280000px;}
.x37_c00075{left:316.080000px;}
.x3d_c00075{left:324.720000px;}
.x32_c00075{left:326.880000px;}
.xe_c00075{left:337.680000px;}
.x2e_c00075{left:347.040000px;}
.x49_c00075{left:348.480000px;}
.x5_c00075{left:358.560000px;}
.xf_c00075{left:369.360000px;}
.x50_c00075{left:380.160000px;}
.x27_c00075{left:390.960000px;}
.x44_c00075{left:392.400000px;}
.x17_c00075{left:401.760000px;}
.x1f_c00075{left:412.560000px;}
.x28_c00075{left:424.080000px;}
.x18_c00075{left:434.880000px;}
.x4c_c00075{left:445.680000px;}
.x29_c00075{left:455.760000px;}
.x3e_c00075{left:465.840000px;}
.x2f_c00075{left:467.280000px;}
.x41_c00075{left:478.080000px;}
.x45_c00075{left:489.600000px;}
.x6_c00075{left:498.960000px;}
.x20_c00075{left:509.760000px;}
.x10_c00075{left:520.560000px;}
.x47_c00075{left:529.920000px;}
.x4f_c00075{left:532.080000px;}
.x19_c00075{left:542.880000px;}
.x11_c00075{left:553.680000px;}
.x46_c00075{left:563.760000px;}
.x33_c00075{left:575.280000px;}
.x1a_c00075{left:584.640000px;}
.x3f_c00075{left:586.080000px;}
.x48_c00075{left:596.880000px;}
.x2a_c00075{left:606.960000px;}
.x7_c00075{left:617.760000px;}
.x21_c00075{left:628.560000px;}
.x1b_c00075{left:630.000000px;}
.x4a_c00075{left:639.360000px;}
.x12_c00075{left:640.800000px;}
.x8_c00075{left:650.160000px;}
.x4e_c00075{left:651.600000px;}
.x3b_c00075{left:661.680000px;}
.x1_c00075{left:671.760000px;}
.x1c_c00075{left:673.200000px;}
.x22_c00075{left:681.840000px;}
.x13_c00075{left:683.280000px;}
.x9_c00075{left:693.360000px;}
.x3c_c00075{left:694.800000px;}
.x38_c00075{left:705.600000px;}
.x40_c00075{left:714.960000px;}
.x4d_c00075{left:717.120000px;}
@media print{
.v0_c00075{vertical-align:0.000000pt;}
.v1_c00075{vertical-align:7.680000pt;}
.ls0_c00075{letter-spacing:0.000000pt;}
.ws0_c00075{word-spacing:-1.737600pt;}
.ws1_c00075{word-spacing:0.000000pt;}
.fs0_c00075{font-size:20.480000pt;}
.fs5_c00075{font-size:30.720000pt;}
.fs4_c00075{font-size:33.280000pt;}
.fse_c00075{font-size:38.400000pt;}
.fs7_c00075{font-size:40.960000pt;}
.fs3_c00075{font-size:43.520000pt;}
.fs1_c00075{font-size:46.080000pt;}
.fs6_c00075{font-size:48.640000pt;}
.fsa_c00075{font-size:51.200000pt;}
.fs2_c00075{font-size:53.760000pt;}
.fs8_c00075{font-size:56.320000pt;}
.fsd_c00075{font-size:58.880000pt;}
.fs9_c00075{font-size:61.440000pt;}
.fsb_c00075{font-size:64.000000pt;}
.fsc_c00075{font-size:69.120000pt;}
.y0_c00075{bottom:0.000000pt;}
.y69_c00075{bottom:49.280000pt;}
.y6a_c00075{bottom:49.920000pt;}
.y6d_c00075{bottom:50.560000pt;}
.y6c_c00075{bottom:51.200000pt;}
.y6b_c00075{bottom:51.840000pt;}
.y68_c00075{bottom:53.120000pt;}
.y67_c00075{bottom:53.760000pt;}
.y65_c00075{bottom:87.040000pt;}
.y66_c00075{bottom:88.960000pt;}
.y64_c00075{bottom:89.600000pt;}
.y63_c00075{bottom:90.240000pt;}
.y62_c00075{bottom:91.520000pt;}
.y5f_c00075{bottom:125.440000pt;}
.y61_c00075{bottom:126.720000pt;}
.y60_c00075{bottom:127.360000pt;}
.y5d_c00075{bottom:128.000000pt;}
.y5e_c00075{bottom:128.640000pt;}
.y5c_c00075{bottom:129.280000pt;}
.y59_c00075{bottom:162.560000pt;}
.y58_c00075{bottom:163.200000pt;}
.y57_c00075{bottom:163.840000pt;}
.y5b_c00075{bottom:164.480000pt;}
.y5a_c00075{bottom:165.120000pt;}
.y56_c00075{bottom:165.760000pt;}
.y55_c00075{bottom:166.400000pt;}
.y54_c00075{bottom:167.040000pt;}
.y53_c00075{bottom:200.320000pt;}
.y52_c00075{bottom:200.960000pt;}
.y50_c00075{bottom:201.600000pt;}
.y51_c00075{bottom:202.880000pt;}
.y4f_c00075{bottom:238.080000pt;}
.y4e_c00075{bottom:238.720000pt;}
.y4d_c00075{bottom:240.640000pt;}
.y4c_c00075{bottom:241.280000pt;}
.y4b_c00075{bottom:241.920000pt;}
.y49_c00075{bottom:276.480000pt;}
.y48_c00075{bottom:277.120000pt;}
.y4a_c00075{bottom:278.400000pt;}
.y47_c00075{bottom:279.040000pt;}
.y46_c00075{bottom:279.680000pt;}
.y44_c00075{bottom:313.600000pt;}
.y45_c00075{bottom:314.240000pt;}
.y43_c00075{bottom:316.160000pt;}
.y42_c00075{bottom:316.800000pt;}
.y40_c00075{bottom:352.000000pt;}
.y3e_c00075{bottom:352.640000pt;}
.y41_c00075{bottom:353.280000pt;}
.y3f_c00075{bottom:353.920000pt;}
.y3d_c00075{bottom:354.560000pt;}
.y3c_c00075{bottom:355.200000pt;}
.y3b_c00075{bottom:389.120000pt;}
.y3a_c00075{bottom:389.760000pt;}
.y37_c00075{bottom:390.400000pt;}
.y39_c00075{bottom:391.680000pt;}
.y38_c00075{bottom:392.320000pt;}
.y33_c00075{bottom:428.160000pt;}
.y35_c00075{bottom:428.800000pt;}
.y36_c00075{bottom:429.440000pt;}
.y32_c00075{bottom:430.080000pt;}
.y34_c00075{bottom:430.720000pt;}
.y2e_c00075{bottom:465.920000pt;}
.y31_c00075{bottom:467.200000pt;}
.y2f_c00075{bottom:467.840000pt;}
.y30_c00075{bottom:468.480000pt;}
.y2b_c00075{bottom:503.040000pt;}
.y2d_c00075{bottom:503.680000pt;}
.y2a_c00075{bottom:505.600000pt;}
.y2c_c00075{bottom:506.240000pt;}
.y29_c00075{bottom:541.440000pt;}
.y27_c00075{bottom:543.360000pt;}
.y28_c00075{bottom:544.000000pt;}
.y26_c00075{bottom:588.800000pt;}
.y25_c00075{bottom:591.360000pt;}
.y23_c00075{bottom:626.560000pt;}
.y24_c00075{bottom:627.200000pt;}
.y22_c00075{bottom:628.480000pt;}
.y21_c00075{bottom:629.120000pt;}
.y1b_c00075{bottom:663.040000pt;}
.y1e_c00075{bottom:663.680000pt;}
.y1c_c00075{bottom:664.320000pt;}
.y20_c00075{bottom:666.240000pt;}
.y1d_c00075{bottom:666.880000pt;}
.y1f_c00075{bottom:667.520000pt;}
.y18_c00075{bottom:701.440000pt;}
.y1a_c00075{bottom:704.000000pt;}
.y19_c00075{bottom:704.640000pt;}
.y15_c00075{bottom:739.200000pt;}
.y17_c00075{bottom:741.120000pt;}
.y14_c00075{bottom:741.760000pt;}
.y16_c00075{bottom:742.400000pt;}
.y10_c00075{bottom:777.600000pt;}
.y12_c00075{bottom:778.240000pt;}
.yf_c00075{bottom:779.520000pt;}
.y11_c00075{bottom:780.160000pt;}
.y13_c00075{bottom:780.800000pt;}
.ye_c00075{bottom:816.000000pt;}
.yb_c00075{bottom:817.280000pt;}
.yc_c00075{bottom:817.920000pt;}
.yd_c00075{bottom:819.200000pt;}
.y9_c00075{bottom:853.760000pt;}
.y6_c00075{bottom:854.400000pt;}
.y7_c00075{bottom:855.040000pt;}
.y8_c00075{bottom:855.680000pt;}
.ya_c00075{bottom:856.320000pt;}
.y4_c00075{bottom:892.160000pt;}
.y2_c00075{bottom:892.800000pt;}
.y3_c00075{bottom:894.080000pt;}
.y5_c00075{bottom:894.720000pt;}
.y1_c00075{bottom:983.040000pt;}
.h2_c00075{height:18.430000pt;}
.h8_c00075{height:27.645000pt;}
.h7_c00075{height:29.948750pt;}
.h11_c00075{height:34.556250pt;}
.ha_c00075{height:36.860000pt;}
.h6_c00075{height:39.163750pt;}
.h3_c00075{height:41.467500pt;}
.h9_c00075{height:43.771250pt;}
.hd_c00075{height:46.075000pt;}
.h4_c00075{height:48.378750pt;}
.hb_c00075{height:50.682500pt;}
.h10_c00075{height:52.986250pt;}
.hc_c00075{height:55.290000pt;}
.h5_c00075{height:56.058750pt;}
.he_c00075{height:57.593750pt;}
.hf_c00075{height:62.201250pt;}
.h0_c00075{height:1025.280000pt;}
.h1_c00075{height:1025.333333pt;}
.w0_c00075{width:720.640000pt;}
.w1_c00075{width:720.666667pt;}
.x0_c00075{left:0.000000pt;}
.xa_c00075{left:79.360000pt;}
.x34_c00075{left:80.640000pt;}
.x30_c00075{left:98.560000pt;}
.x42_c00075{left:108.160000pt;}
.x2b_c00075{left:117.760000pt;}
.x14_c00075{left:119.040000pt;}
.x39_c00075{left:126.720000pt;}
.x1d_c00075{left:128.640000pt;}
.x31_c00075{left:136.320000pt;}
.x15_c00075{left:138.240000pt;}
.x2c_c00075{left:147.200000pt;}
.xb_c00075{left:156.160000pt;}
.x35_c00075{left:158.080000pt;}
.x43_c00075{left:165.120000pt;}
.x51_c00075{left:166.400000pt;}
.x24_c00075{left:175.360000pt;}
.x2_c00075{left:176.640000pt;}
.x2d_c00075{left:184.320000pt;}
.xc_c00075{left:185.600000pt;}
.x1e_c00075{left:194.560000pt;}
.x25_c00075{left:204.160000pt;}
.x23_c00075{left:213.120000pt;}
.xd_c00075{left:214.400000pt;}
.x3_c00075{left:223.360000pt;}
.x26_c00075{left:232.320000pt;}
.x4b_c00075{left:242.560000pt;}
.x36_c00075{left:243.840000pt;}
.x4_c00075{left:252.160000pt;}
.x16_c00075{left:262.400000pt;}
.x3a_c00075{left:271.360000pt;}
.x37_c00075{left:280.960000pt;}
.x3d_c00075{left:288.640000pt;}
.x32_c00075{left:290.560000pt;}
.xe_c00075{left:300.160000pt;}
.x2e_c00075{left:308.480000pt;}
.x49_c00075{left:309.760000pt;}
.x5_c00075{left:318.720000pt;}
.xf_c00075{left:328.320000pt;}
.x50_c00075{left:337.920000pt;}
.x27_c00075{left:347.520000pt;}
.x44_c00075{left:348.800000pt;}
.x17_c00075{left:357.120000pt;}
.x1f_c00075{left:366.720000pt;}
.x28_c00075{left:376.960000pt;}
.x18_c00075{left:386.560000pt;}
.x4c_c00075{left:396.160000pt;}
.x29_c00075{left:405.120000pt;}
.x3e_c00075{left:414.080000pt;}
.x2f_c00075{left:415.360000pt;}
.x41_c00075{left:424.960000pt;}
.x45_c00075{left:435.200000pt;}
.x6_c00075{left:443.520000pt;}
.x20_c00075{left:453.120000pt;}
.x10_c00075{left:462.720000pt;}
.x47_c00075{left:471.040000pt;}
.x4f_c00075{left:472.960000pt;}
.x19_c00075{left:482.560000pt;}
.x11_c00075{left:492.160000pt;}
.x46_c00075{left:501.120000pt;}
.x33_c00075{left:511.360000pt;}
.x1a_c00075{left:519.680000pt;}
.x3f_c00075{left:520.960000pt;}
.x48_c00075{left:530.560000pt;}
.x2a_c00075{left:539.520000pt;}
.x7_c00075{left:549.120000pt;}
.x21_c00075{left:558.720000pt;}
.x1b_c00075{left:560.000000pt;}
.x4a_c00075{left:568.320000pt;}
.x12_c00075{left:569.600000pt;}
.x8_c00075{left:577.920000pt;}
.x4e_c00075{left:579.200000pt;}
.x3b_c00075{left:588.160000pt;}
.x1_c00075{left:597.120000pt;}
.x1c_c00075{left:598.400000pt;}
.x22_c00075{left:606.080000pt;}
.x13_c00075{left:607.360000pt;}
.x9_c00075{left:616.320000pt;}
.x3c_c00075{left:617.600000pt;}
.x38_c00075{left:627.200000pt;}
.x40_c00075{left:635.520000pt;}
.x4d_c00075{left:637.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f09d39e1919f9b3f56f05637.woff2')format("woff");}.ff1_c00076{font-family:ff1_c00076;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3d_c00076{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00076{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m29_c00076{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00076{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00076{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);}
.m63_c00076{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mb_c00076{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00076{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.me_c00076{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00076{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m49_c00076{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m35_c00076{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00076{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00076{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m46_c00076{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00076{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);}
.m30_c00076{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m4_c00076{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m45_c00076{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m27_c00076{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);}
.m19_c00076{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00076{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1_c00076{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m0_c00076{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);}
.m54_c00076{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);}
.m3a_c00076{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m44_c00076{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m32_c00076{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);}
.m16_c00076{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m20_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);}
.m56_c00076{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m38_c00076{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);}
.m4d_c00076{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m37_c00076{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);}
.m23_c00076{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00076{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m57_c00076{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m13_c00076{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m12_c00076{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);}
.m2d_c00076{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00076{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);}
.m59_c00076{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m60_c00076{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);}
.mf_c00076{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);}
.m36_c00076{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m62_c00076{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00076{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m8_c00076{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m26_c00076{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);}
.m4e_c00076{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m25_c00076{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m24_c00076{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);}
.m1b_c00076{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m18_c00076{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);}
.m31_c00076{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m43_c00076{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m14_c00076{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m48_c00076{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m9_c00076{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);}
.m50_c00076{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m47_c00076{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m3_c00076{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00076{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m42_c00076{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m5_c00076{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m34_c00076{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00076{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00076{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);}
.m4a_c00076{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);}
.m5d_c00076{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00076{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.md_c00076{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);}
.m21_c00076{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.mc_c00076{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00076{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m28_c00076{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.ma_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);}
.m53_c00076{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00076{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m33_c00076{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m7_c00076{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m51_c00076{transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);}
.m61_c00076{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m15_c00076{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);}
.m1f_c00076{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m64_c00076{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m2_c00076{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m52_c00076{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m11_c00076{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m17_c00076{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m41_c00076{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m40_c00076{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m39_c00076{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);}
.m55_c00076{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m6_c00076{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m58_c00076{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m22_c00076{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m10_c00076{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00076{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00076{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00076{transform:matrix(0.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680000,0.000000,0.000000,0.250000,0,0);}
.v3_c00076{vertical-align:-11.520000px;}
.v1_c00076{vertical-align:-2.880000px;}
.v0_c00076{vertical-align:0.000000px;}
.v2_c00076{vertical-align:2.880000px;}
.ls0_c00076{letter-spacing:0.000000px;}
.sc__c00076{text-shadow:none;}
.sc0_c00076{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00076{-webkit-text-stroke:0px transparent;}
.sc0_c00076{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00076{word-spacing:-5.607740px;}
.ws2_c00076{word-spacing:-2.405760px;}
.ws4_c00076{word-spacing:0.000000px;}
.ws3_c00076{word-spacing:1.726320px;}
.ws0_c00076{word-spacing:1.809120px;}
.fc0_c00076{color:transparent;}
.fs5_c00076{font-size:34.560000px;}
.fs8_c00076{font-size:37.440000px;}
.fsc_c00076{font-size:43.200000px;}
.fs4_c00076{font-size:46.080000px;}
.fs1_c00076{font-size:48.960000px;}
.fs2_c00076{font-size:51.840000px;}
.fs9_c00076{font-size:54.720000px;}
.fs6_c00076{font-size:57.600000px;}
.fs3_c00076{font-size:60.480000px;}
.fsa_c00076{font-size:63.360000px;}
.fsb_c00076{font-size:66.240000px;}
.fs7_c00076{font-size:69.120000px;}
.fs0_c00076{font-size:72.000000px;}
.y0_c00076{bottom:0.000000px;}
.y6c_c00076{bottom:41.760000px;}
.y6a_c00076{bottom:42.480000px;}
.y68_c00076{bottom:43.920000px;}
.y6b_c00076{bottom:45.360000px;}
.y69_c00076{bottom:46.080000px;}
.y67_c00076{bottom:46.800000px;}
.y66_c00076{bottom:84.240000px;}
.y64_c00076{bottom:84.960000px;}
.y61_c00076{bottom:87.120000px;}
.y65_c00076{bottom:87.840000px;}
.y63_c00076{bottom:88.560000px;}
.y62_c00076{bottom:89.280000px;}
.y5f_c00076{bottom:127.440000px;}
.y5c_c00076{bottom:128.160000px;}
.y5d_c00076{bottom:129.600000px;}
.y5e_c00076{bottom:130.320000px;}
.y60_c00076{bottom:131.040000px;}
.y5b_c00076{bottom:184.320000px;}
.y5a_c00076{bottom:185.760000px;}
.y58_c00076{bottom:223.200000px;}
.y59_c00076{bottom:223.920000px;}
.y57_c00076{bottom:226.800000px;}
.y56_c00076{bottom:227.520000px;}
.y54_c00076{bottom:264.960000px;}
.y53_c00076{bottom:266.400000px;}
.y55_c00076{bottom:268.560000px;}
.y52_c00076{bottom:269.280000px;}
.y51_c00076{bottom:270.000000px;}
.y50_c00076{bottom:270.720000px;}
.y4f_c00076{bottom:307.440000px;}
.y4c_c00076{bottom:308.880000px;}
.y4b_c00076{bottom:310.320000px;}
.y4e_c00076{bottom:311.040000px;}
.y4d_c00076{bottom:311.760000px;}
.y4a_c00076{bottom:312.480000px;}
.y48_c00076{bottom:352.080000px;}
.y47_c00076{bottom:354.240000px;}
.y49_c00076{bottom:354.960000px;}
.y46_c00076{bottom:394.560000px;}
.y45_c00076{bottom:396.720000px;}
.y44_c00076{bottom:397.440000px;}
.y41_c00076{bottom:437.040000px;}
.y42_c00076{bottom:437.760000px;}
.y40_c00076{bottom:439.200000px;}
.y3f_c00076{bottom:439.920000px;}
.y43_c00076{bottom:440.640000px;}
.y3e_c00076{bottom:479.520000px;}
.y3a_c00076{bottom:480.240000px;}
.y3b_c00076{bottom:481.680000px;}
.y3d_c00076{bottom:482.400000px;}
.y3c_c00076{bottom:483.120000px;}
.y38_c00076{bottom:520.560000px;}
.y37_c00076{bottom:522.720000px;}
.y39_c00076{bottom:524.160000px;}
.y36_c00076{bottom:524.880000px;}
.y33_c00076{bottom:565.200000px;}
.y34_c00076{bottom:566.640000px;}
.y32_c00076{bottom:567.360000px;}
.y35_c00076{bottom:568.080000px;}
.y30_c00076{bottom:606.960000px;}
.y2e_c00076{bottom:607.680000px;}
.y2f_c00076{bottom:609.840000px;}
.y2d_c00076{bottom:610.560000px;}
.y31_c00076{bottom:611.280000px;}
.y28_c00076{bottom:650.160000px;}
.y2b_c00076{bottom:650.880000px;}
.y2a_c00076{bottom:652.320000px;}
.y29_c00076{bottom:653.040000px;}
.y2c_c00076{bottom:653.760000px;}
.y24_c00076{bottom:692.640000px;}
.y26_c00076{bottom:693.360000px;}
.y27_c00076{bottom:694.800000px;}
.y25_c00076{bottom:695.520000px;}
.y21_c00076{bottom:735.120000px;}
.y22_c00076{bottom:735.840000px;}
.y20_c00076{bottom:738.000000px;}
.y23_c00076{bottom:738.720000px;}
.y1d_c00076{bottom:777.600000px;}
.y1b_c00076{bottom:778.320000px;}
.y1c_c00076{bottom:779.760000px;}
.y1a_c00076{bottom:780.480000px;}
.y1e_c00076{bottom:781.200000px;}
.y1f_c00076{bottom:781.920000px;}
.y17_c00076{bottom:820.800000px;}
.y16_c00076{bottom:822.960000px;}
.y18_c00076{bottom:823.680000px;}
.y19_c00076{bottom:824.400000px;}
.y12_c00076{bottom:862.560000px;}
.y14_c00076{bottom:863.280000px;}
.y11_c00076{bottom:865.440000px;}
.y13_c00076{bottom:866.160000px;}
.y15_c00076{bottom:866.880000px;}
.y10_c00076{bottom:907.200000px;}
.yd_c00076{bottom:907.920000px;}
.ye_c00076{bottom:908.640000px;}
.yf_c00076{bottom:909.360000px;}
.y9_c00076{bottom:959.040000px;}
.yb_c00076{bottom:959.760000px;}
.y8_c00076{bottom:960.480000px;}
.ya_c00076{bottom:961.920000px;}
.yc_c00076{bottom:962.640000px;}
.y5_c00076{bottom:1001.520000px;}
.y4_c00076{bottom:1002.240000px;}
.y2_c00076{bottom:1002.960000px;}
.y3_c00076{bottom:1003.680000px;}
.y6_c00076{bottom:1005.120000px;}
.y7_c00076{bottom:1005.840000px;}
.y1_c00076{bottom:1074.960000px;}
.h7_c00076{height:31.100625px;}
.ha_c00076{height:33.692344px;}
.he_c00076{height:38.875781px;}
.h6_c00076{height:41.467500px;}
.h3_c00076{height:44.059219px;}
.h4_c00076{height:46.650937px;}
.hb_c00076{height:49.242656px;}
.hf_c00076{height:50.681250px;}
.h8_c00076{height:51.834375px;}
.h5_c00076{height:54.426094px;}
.hc_c00076{height:57.017812px;}
.hd_c00076{height:59.609531px;}
.h9_c00076{height:62.201250px;}
.h2_c00076{height:64.792969px;}
.h0_c00076{height:1153.440000px;}
.h1_c00076{height:1153.500000px;}
.w0_c00076{width:810.720000px;}
.w1_c00076{width:810.750000px;}
.x0_c00076{left:0.000000px;}
.x20_c00076{left:88.560000px;}
.x2_c00076{left:90.000000px;}
.x30_c00076{left:109.440000px;}
.x3_c00076{left:120.960000px;}
.x38_c00076{left:122.400000px;}
.x3e_c00076{left:131.040000px;}
.x1a_c00076{left:133.200000px;}
.xe_c00076{left:142.560000px;}
.x21_c00076{left:152.640000px;}
.x4_c00076{left:154.080000px;}
.x4c_c00076{left:164.880000px;}
.x48_c00076{left:174.960000px;}
.x1b_c00076{left:184.320000px;}
.x27_c00076{left:185.760000px;}
.x40_c00076{left:196.560000px;}
.x13_c00076{left:198.000000px;}
.x4d_c00076{left:205.920000px;}
.x39_c00076{left:207.360000px;}
.x28_c00076{left:218.160000px;}
.x1c_c00076{left:228.960000px;}
.x2d_c00076{left:239.760000px;}
.x5_c00076{left:251.280000px;}
.x29_c00076{left:259.920000px;}
.x34_c00076{left:270.720000px;}
.xf_c00076{left:272.160000px;}
.x22_c00076{left:282.960000px;}
.x10_c00076{left:293.760000px;}
.x14_c00076{left:304.560000px;}
.x42_c00076{left:314.640000px;}
.x6_c00076{left:336.960000px;}
.x41_c00076{left:347.040000px;}
.x15_c00076{left:348.480000px;}
.x49_c00076{left:357.120000px;}
.x7_c00076{left:358.560000px;}
.x1d_c00076{left:380.160000px;}
.x4b_c00076{left:388.800000px;}
.x3b_c00076{left:390.960000px;}
.x8_c00076{left:401.760000px;}
.x43_c00076{left:411.120000px;}
.x11_c00076{left:412.560000px;}
.x2e_c00076{left:423.360000px;}
.x3c_c00076{left:432.720000px;}
.x2a_c00076{left:434.160000px;}
.x45_c00076{left:444.240000px;}
.x9_c00076{left:455.760000px;}
.x31_c00076{left:465.840000px;}
.x35_c00076{left:476.640000px;}
.x16_c00076{left:487.440000px;}
.x46_c00076{left:497.520000px;}
.x12_c00076{left:498.960000px;}
.x3a_c00076{left:508.320000px;}
.x23_c00076{left:509.760000px;}
.x32_c00076{left:519.120000px;}
.x1e_c00076{left:531.360000px;}
.x3f_c00076{left:542.160000px;}
.xa_c00076{left:552.960000px;}
.x47_c00076{left:562.320000px;}
.x36_c00076{left:563.760000px;}
.x17_c00076{left:573.120000px;}
.x24_c00076{left:584.640000px;}
.x2b_c00076{left:595.440000px;}
.x4a_c00076{left:606.240000px;}
.x33_c00076{left:607.680000px;}
.x2f_c00076{left:617.760000px;}
.x18_c00076{left:628.560000px;}
.xb_c00076{left:639.360000px;}
.x25_c00076{left:650.160000px;}
.x44_c00076{left:659.520000px;}
.x19_c00076{left:660.960000px;}
.x4e_c00076{left:671.040000px;}
.x2c_c00076{left:672.480000px;}
.x37_c00076{left:673.920000px;}
.x3d_c00076{left:682.560000px;}
.xc_c00076{left:693.360000px;}
.x1f_c00076{left:703.440000px;}
.x26_c00076{left:714.960000px;}
.xd_c00076{left:726.480000px;}
.x1_c00076{left:737.280000px;}
@media print{
.v3_c00076{vertical-align:-10.240000pt;}
.v1_c00076{vertical-align:-2.560000pt;}
.v0_c00076{vertical-align:0.000000pt;}
.v2_c00076{vertical-align:2.560000pt;}
.ls0_c00076{letter-spacing:0.000000pt;}
.ws1_c00076{word-spacing:-4.984658pt;}
.ws2_c00076{word-spacing:-2.138453pt;}
.ws4_c00076{word-spacing:0.000000pt;}
.ws3_c00076{word-spacing:1.534507pt;}
.ws0_c00076{word-spacing:1.608107pt;}
.fs5_c00076{font-size:30.720000pt;}
.fs8_c00076{font-size:33.280000pt;}
.fsc_c00076{font-size:38.400000pt;}
.fs4_c00076{font-size:40.960000pt;}
.fs1_c00076{font-size:43.520000pt;}
.fs2_c00076{font-size:46.080000pt;}
.fs9_c00076{font-size:48.640000pt;}
.fs6_c00076{font-size:51.200000pt;}
.fs3_c00076{font-size:53.760000pt;}
.fsa_c00076{font-size:56.320000pt;}
.fsb_c00076{font-size:58.880000pt;}
.fs7_c00076{font-size:61.440000pt;}
.fs0_c00076{font-size:64.000000pt;}
.y0_c00076{bottom:0.000000pt;}
.y6c_c00076{bottom:37.120000pt;}
.y6a_c00076{bottom:37.760000pt;}
.y68_c00076{bottom:39.040000pt;}
.y6b_c00076{bottom:40.320000pt;}
.y69_c00076{bottom:40.960000pt;}
.y67_c00076{bottom:41.600000pt;}
.y66_c00076{bottom:74.880000pt;}
.y64_c00076{bottom:75.520000pt;}
.y61_c00076{bottom:77.440000pt;}
.y65_c00076{bottom:78.080000pt;}
.y63_c00076{bottom:78.720000pt;}
.y62_c00076{bottom:79.360000pt;}
.y5f_c00076{bottom:113.280000pt;}
.y5c_c00076{bottom:113.920000pt;}
.y5d_c00076{bottom:115.200000pt;}
.y5e_c00076{bottom:115.840000pt;}
.y60_c00076{bottom:116.480000pt;}
.y5b_c00076{bottom:163.840000pt;}
.y5a_c00076{bottom:165.120000pt;}
.y58_c00076{bottom:198.400000pt;}
.y59_c00076{bottom:199.040000pt;}
.y57_c00076{bottom:201.600000pt;}
.y56_c00076{bottom:202.240000pt;}
.y54_c00076{bottom:235.520000pt;}
.y53_c00076{bottom:236.800000pt;}
.y55_c00076{bottom:238.720000pt;}
.y52_c00076{bottom:239.360000pt;}
.y51_c00076{bottom:240.000000pt;}
.y50_c00076{bottom:240.640000pt;}
.y4f_c00076{bottom:273.280000pt;}
.y4c_c00076{bottom:274.560000pt;}
.y4b_c00076{bottom:275.840000pt;}
.y4e_c00076{bottom:276.480000pt;}
.y4d_c00076{bottom:277.120000pt;}
.y4a_c00076{bottom:277.760000pt;}
.y48_c00076{bottom:312.960000pt;}
.y47_c00076{bottom:314.880000pt;}
.y49_c00076{bottom:315.520000pt;}
.y46_c00076{bottom:350.720000pt;}
.y45_c00076{bottom:352.640000pt;}
.y44_c00076{bottom:353.280000pt;}
.y41_c00076{bottom:388.480000pt;}
.y42_c00076{bottom:389.120000pt;}
.y40_c00076{bottom:390.400000pt;}
.y3f_c00076{bottom:391.040000pt;}
.y43_c00076{bottom:391.680000pt;}
.y3e_c00076{bottom:426.240000pt;}
.y3a_c00076{bottom:426.880000pt;}
.y3b_c00076{bottom:428.160000pt;}
.y3d_c00076{bottom:428.800000pt;}
.y3c_c00076{bottom:429.440000pt;}
.y38_c00076{bottom:462.720000pt;}
.y37_c00076{bottom:464.640000pt;}
.y39_c00076{bottom:465.920000pt;}
.y36_c00076{bottom:466.560000pt;}
.y33_c00076{bottom:502.400000pt;}
.y34_c00076{bottom:503.680000pt;}
.y32_c00076{bottom:504.320000pt;}
.y35_c00076{bottom:504.960000pt;}
.y30_c00076{bottom:539.520000pt;}
.y2e_c00076{bottom:540.160000pt;}
.y2f_c00076{bottom:542.080000pt;}
.y2d_c00076{bottom:542.720000pt;}
.y31_c00076{bottom:543.360000pt;}
.y28_c00076{bottom:577.920000pt;}
.y2b_c00076{bottom:578.560000pt;}
.y2a_c00076{bottom:579.840000pt;}
.y29_c00076{bottom:580.480000pt;}
.y2c_c00076{bottom:581.120000pt;}
.y24_c00076{bottom:615.680000pt;}
.y26_c00076{bottom:616.320000pt;}
.y27_c00076{bottom:617.600000pt;}
.y25_c00076{bottom:618.240000pt;}
.y21_c00076{bottom:653.440000pt;}
.y22_c00076{bottom:654.080000pt;}
.y20_c00076{bottom:656.000000pt;}
.y23_c00076{bottom:656.640000pt;}
.y1d_c00076{bottom:691.200000pt;}
.y1b_c00076{bottom:691.840000pt;}
.y1c_c00076{bottom:693.120000pt;}
.y1a_c00076{bottom:693.760000pt;}
.y1e_c00076{bottom:694.400000pt;}
.y1f_c00076{bottom:695.040000pt;}
.y17_c00076{bottom:729.600000pt;}
.y16_c00076{bottom:731.520000pt;}
.y18_c00076{bottom:732.160000pt;}
.y19_c00076{bottom:732.800000pt;}
.y12_c00076{bottom:766.720000pt;}
.y14_c00076{bottom:767.360000pt;}
.y11_c00076{bottom:769.280000pt;}
.y13_c00076{bottom:769.920000pt;}
.y15_c00076{bottom:770.560000pt;}
.y10_c00076{bottom:806.400000pt;}
.yd_c00076{bottom:807.040000pt;}
.ye_c00076{bottom:807.680000pt;}
.yf_c00076{bottom:808.320000pt;}
.y9_c00076{bottom:852.480000pt;}
.yb_c00076{bottom:853.120000pt;}
.y8_c00076{bottom:853.760000pt;}
.ya_c00076{bottom:855.040000pt;}
.yc_c00076{bottom:855.680000pt;}
.y5_c00076{bottom:890.240000pt;}
.y4_c00076{bottom:890.880000pt;}
.y2_c00076{bottom:891.520000pt;}
.y3_c00076{bottom:892.160000pt;}
.y6_c00076{bottom:893.440000pt;}
.y7_c00076{bottom:894.080000pt;}
.y1_c00076{bottom:955.520000pt;}
.h7_c00076{height:27.645000pt;}
.ha_c00076{height:29.948750pt;}
.he_c00076{height:34.556250pt;}
.h6_c00076{height:36.860000pt;}
.h3_c00076{height:39.163750pt;}
.h4_c00076{height:41.467500pt;}
.hb_c00076{height:43.771250pt;}
.hf_c00076{height:45.050000pt;}
.h8_c00076{height:46.075000pt;}
.h5_c00076{height:48.378750pt;}
.hc_c00076{height:50.682500pt;}
.hd_c00076{height:52.986250pt;}
.h9_c00076{height:55.290000pt;}
.h2_c00076{height:57.593750pt;}
.h0_c00076{height:1025.280000pt;}
.h1_c00076{height:1025.333333pt;}
.w0_c00076{width:720.640000pt;}
.w1_c00076{width:720.666667pt;}
.x0_c00076{left:0.000000pt;}
.x20_c00076{left:78.720000pt;}
.x2_c00076{left:80.000000pt;}
.x30_c00076{left:97.280000pt;}
.x3_c00076{left:107.520000pt;}
.x38_c00076{left:108.800000pt;}
.x3e_c00076{left:116.480000pt;}
.x1a_c00076{left:118.400000pt;}
.xe_c00076{left:126.720000pt;}
.x21_c00076{left:135.680000pt;}
.x4_c00076{left:136.960000pt;}
.x4c_c00076{left:146.560000pt;}
.x48_c00076{left:155.520000pt;}
.x1b_c00076{left:163.840000pt;}
.x27_c00076{left:165.120000pt;}
.x40_c00076{left:174.720000pt;}
.x13_c00076{left:176.000000pt;}
.x4d_c00076{left:183.040000pt;}
.x39_c00076{left:184.320000pt;}
.x28_c00076{left:193.920000pt;}
.x1c_c00076{left:203.520000pt;}
.x2d_c00076{left:213.120000pt;}
.x5_c00076{left:223.360000pt;}
.x29_c00076{left:231.040000pt;}
.x34_c00076{left:240.640000pt;}
.xf_c00076{left:241.920000pt;}
.x22_c00076{left:251.520000pt;}
.x10_c00076{left:261.120000pt;}
.x14_c00076{left:270.720000pt;}
.x42_c00076{left:279.680000pt;}
.x6_c00076{left:299.520000pt;}
.x41_c00076{left:308.480000pt;}
.x15_c00076{left:309.760000pt;}
.x49_c00076{left:317.440000pt;}
.x7_c00076{left:318.720000pt;}
.x1d_c00076{left:337.920000pt;}
.x4b_c00076{left:345.600000pt;}
.x3b_c00076{left:347.520000pt;}
.x8_c00076{left:357.120000pt;}
.x43_c00076{left:365.440000pt;}
.x11_c00076{left:366.720000pt;}
.x2e_c00076{left:376.320000pt;}
.x3c_c00076{left:384.640000pt;}
.x2a_c00076{left:385.920000pt;}
.x45_c00076{left:394.880000pt;}
.x9_c00076{left:405.120000pt;}
.x31_c00076{left:414.080000pt;}
.x35_c00076{left:423.680000pt;}
.x16_c00076{left:433.280000pt;}
.x46_c00076{left:442.240000pt;}
.x12_c00076{left:443.520000pt;}
.x3a_c00076{left:451.840000pt;}
.x23_c00076{left:453.120000pt;}
.x32_c00076{left:461.440000pt;}
.x1e_c00076{left:472.320000pt;}
.x3f_c00076{left:481.920000pt;}
.xa_c00076{left:491.520000pt;}
.x47_c00076{left:499.840000pt;}
.x36_c00076{left:501.120000pt;}
.x17_c00076{left:509.440000pt;}
.x24_c00076{left:519.680000pt;}
.x2b_c00076{left:529.280000pt;}
.x4a_c00076{left:538.880000pt;}
.x33_c00076{left:540.160000pt;}
.x2f_c00076{left:549.120000pt;}
.x18_c00076{left:558.720000pt;}
.xb_c00076{left:568.320000pt;}
.x25_c00076{left:577.920000pt;}
.x44_c00076{left:586.240000pt;}
.x19_c00076{left:587.520000pt;}
.x4e_c00076{left:596.480000pt;}
.x2c_c00076{left:597.760000pt;}
.x37_c00076{left:599.040000pt;}
.x3d_c00076{left:606.720000pt;}
.xc_c00076{left:616.320000pt;}
.x1f_c00076{left:625.280000pt;}
.x26_c00076{left:635.520000pt;}
.xd_c00076{left:645.760000pt;}
.x1_c00076{left:655.360000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f170b88c92e453dd2dcbe9de.woff2')format("woff");}.ff1_c00077{font-family:ff1_c00077;line-height:1.109863;font-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_c00077{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m8_c00077{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m44_c00077{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m33_c00077{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00077{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m18_c00077{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00077{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m4_c00077{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m0_c00077{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m19_c00077{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);}
.m25_c00077{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);}
.m2b_c00077{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m40_c00077{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);}
.m28_c00077{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_c00077{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m15_c00077{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m10_c00077{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.me_c00077{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m9_c00077{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m23_c00077{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);}
.m37_c00077{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m29_c00077{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);}
.m35_c00077{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);}
.m2_c00077{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);}
.m34_c00077{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m14_c00077{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.md_c00077{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m32_c00077{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);}
.m43_c00077{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m20_c00077{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);}
.m5_c00077{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);}
.m27_c00077{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m30_c00077{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m24_c00077{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m17_c00077{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00077{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);}
.mf_c00077{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m11_c00077{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);}
.m42_c00077{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m3_c00077{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);}
.m3d_c00077{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m1_c00077{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m16_c00077{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00077{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);}
.m3a_c00077{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.ma_c00077{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m22_c00077{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m38_c00077{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00077{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00077{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00077{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m31_c00077{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);}
.m7_c00077{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00077{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);}
.m2c_c00077{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m12_c00077{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00077{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);}
.mc_c00077{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00077{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00077{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);}
.m6_c00077{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00077{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m21_c00077{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m36_c00077{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m41_c00077{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m13_c00077{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);}
.mb_c00077{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00077{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m39_c00077{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.v0_c00077{vertical-align:0.000000px;}
.v1_c00077{vertical-align:2.880000px;}
.ls0_c00077{letter-spacing:0.000000px;}
.sc__c00077{text-shadow:none;}
.sc0_c00077{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00077{-webkit-text-stroke:0px transparent;}
.sc0_c00077{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00077{word-spacing:-7.882560px;}
.ws2_c00077{word-spacing:0.000000px;}
.ws0_c00077{word-spacing:9.040067px;}
.fc0_c00077{color:transparent;}
.fs7_c00077{font-size:34.560000px;}
.fs6_c00077{font-size:37.440000px;}
.fsb_c00077{font-size:40.320000px;}
.fsc_c00077{font-size:43.200000px;}
.fs5_c00077{font-size:46.080000px;}
.fs1_c00077{font-size:48.960000px;}
.fs3_c00077{font-size:51.840000px;}
.fs4_c00077{font-size:57.600000px;}
.fs2_c00077{font-size:60.480000px;}
.fs8_c00077{font-size:63.360000px;}
.fs9_c00077{font-size:66.240000px;}
.fsa_c00077{font-size:69.120000px;}
.fs0_c00077{font-size:72.000000px;}
.y0_c00077{bottom:0.000000px;}
.y3f_c00077{bottom:486.000000px;}
.y3e_c00077{bottom:486.720000px;}
.y3d_c00077{bottom:525.600000px;}
.y3a_c00077{bottom:527.040000px;}
.y3c_c00077{bottom:528.480000px;}
.y3b_c00077{bottom:529.200000px;}
.y39_c00077{bottom:568.080000px;}
.y36_c00077{bottom:568.800000px;}
.y37_c00077{bottom:569.520000px;}
.y38_c00077{bottom:570.960000px;}
.y35_c00077{bottom:571.680000px;}
.y34_c00077{bottom:572.400000px;}
.y33_c00077{bottom:611.280000px;}
.y32_c00077{bottom:612.000000px;}
.y31_c00077{bottom:613.440000px;}
.y30_c00077{bottom:614.160000px;}
.y2f_c00077{bottom:614.880000px;}
.y2e_c00077{bottom:653.040000px;}
.y2d_c00077{bottom:653.760000px;}
.y2b_c00077{bottom:654.480000px;}
.y2c_c00077{bottom:655.920000px;}
.y2a_c00077{bottom:656.640000px;}
.y28_c00077{bottom:696.240000px;}
.y27_c00077{bottom:698.400000px;}
.y26_c00077{bottom:699.120000px;}
.y29_c00077{bottom:699.840000px;}
.y24_c00077{bottom:738.720000px;}
.y23_c00077{bottom:739.440000px;}
.y25_c00077{bottom:740.880000px;}
.y1f_c00077{bottom:781.200000px;}
.y21_c00077{bottom:781.920000px;}
.y20_c00077{bottom:784.080000px;}
.y22_c00077{bottom:784.800000px;}
.y19_c00077{bottom:823.680000px;}
.y1b_c00077{bottom:824.400000px;}
.y1e_c00077{bottom:825.120000px;}
.y1a_c00077{bottom:825.840000px;}
.y1c_c00077{bottom:826.560000px;}
.y1d_c00077{bottom:827.280000px;}
.y14_c00077{bottom:866.160000px;}
.y15_c00077{bottom:866.880000px;}
.y13_c00077{bottom:868.320000px;}
.y18_c00077{bottom:869.040000px;}
.y17_c00077{bottom:869.760000px;}
.y16_c00077{bottom:870.480000px;}
.ye_c00077{bottom:908.640000px;}
.y10_c00077{bottom:909.360000px;}
.yd_c00077{bottom:910.800000px;}
.yf_c00077{bottom:911.520000px;}
.y11_c00077{bottom:912.240000px;}
.y12_c00077{bottom:912.960000px;}
.y9_c00077{bottom:951.840000px;}
.yb_c00077{bottom:952.560000px;}
.y7_c00077{bottom:953.280000px;}
.y8_c00077{bottom:954.000000px;}
.ya_c00077{bottom:954.720000px;}
.yc_c00077{bottom:955.440000px;}
.y3_c00077{bottom:995.040000px;}
.y6_c00077{bottom:995.760000px;}
.y2_c00077{bottom:996.480000px;}
.y4_c00077{bottom:997.920000px;}
.y5_c00077{bottom:998.640000px;}
.y1_c00077{bottom:1059.840000px;}
.h9_c00077{height:31.100625px;}
.h8_c00077{height:33.692344px;}
.hd_c00077{height:36.284062px;}
.he_c00077{height:38.875781px;}
.h7_c00077{height:41.467500px;}
.h3_c00077{height:44.059219px;}
.h5_c00077{height:46.650937px;}
.h6_c00077{height:51.834375px;}
.h4_c00077{height:54.426094px;}
.ha_c00077{height:57.017812px;}
.hb_c00077{height:59.609531px;}
.hc_c00077{height:62.201250px;}
.h2_c00077{height:64.792969px;}
.h1_c00077{height:1151.250000px;}
.h0_c00077{height:1151.280000px;}
.w1_c00077{width:807.750000px;}
.w0_c00077{width:807.840000px;}
.x0_c00077{left:0.000000px;}
.x1d_c00077{left:84.960000px;}
.x2_c00077{left:86.400000px;}
.xc_c00077{left:118.800000px;}
.x3e_c00077{left:127.440000px;}
.x30_c00077{left:128.880000px;}
.x3_c00077{left:140.400000px;}
.xd_c00077{left:161.280000px;}
.x29_c00077{left:182.160000px;}
.x31_c00077{left:192.960000px;}
.x15_c00077{left:194.400000px;}
.x39_c00077{left:203.040000px;}
.x35_c00077{left:204.480000px;}
.x23_c00077{left:215.280000px;}
.x16_c00077{left:224.640000px;}
.x24_c00077{left:246.960000px;}
.xe_c00077{left:258.480000px;}
.x2a_c00077{left:278.640000px;}
.x4_c00077{left:280.800000px;}
.x17_c00077{left:290.160000px;}
.xf_c00077{left:291.600000px;}
.x38_c00077{left:300.240000px;}
.x32_c00077{left:301.680000px;}
.x41_c00077{left:311.040000px;}
.x1e_c00077{left:313.200000px;}
.x5_c00077{left:321.840000px;}
.x2b_c00077{left:323.280000px;}
.x1f_c00077{left:334.080000px;}
.x3a_c00077{left:344.160000px;}
.x18_c00077{left:366.480000px;}
.x25_c00077{left:377.280000px;}
.x36_c00077{left:387.360000px;}
.x6_c00077{left:398.160000px;}
.x3f_c00077{left:419.760000px;}
.x10_c00077{left:421.920000px;}
.x3b_c00077{left:429.840000px;}
.x20_c00077{left:431.280000px;}
.x7_c00077{left:441.360000px;}
.x40_c00077{left:451.440000px;}
.x42_c00077{left:462.960000px;}
.x26_c00077{left:483.840000px;}
.x43_c00077{left:494.640000px;}
.x21_c00077{left:496.080000px;}
.x33_c00077{left:506.160000px;}
.x37_c00077{left:516.960000px;}
.x11_c00077{left:518.400000px;}
.x22_c00077{left:527.040000px;}
.x8_c00077{left:529.200000px;}
.x19_c00077{left:549.360000px;}
.x2c_c00077{left:550.800000px;}
.x9_c00077{left:559.440000px;}
.x12_c00077{left:571.680000px;}
.x1a_c00077{left:581.040000px;}
.x27_c00077{left:603.360000px;}
.xa_c00077{left:604.800000px;}
.x3c_c00077{left:614.160000px;}
.x13_c00077{left:624.960000px;}
.x34_c00077{left:626.400000px;}
.x28_c00077{left:635.040000px;}
.x2d_c00077{left:637.200000px;}
.x2e_c00077{left:657.360000px;}
.x14_c00077{left:658.800000px;}
.x3d_c00077{left:667.440000px;}
.x1b_c00077{left:669.600000px;}
.x2f_c00077{left:689.760000px;}
.xb_c00077{left:702.000000px;}
.x1c_c00077{left:712.080000px;}
.x1_c00077{left:717.120000px;}
@media print{
.v0_c00077{vertical-align:0.000000pt;}
.v1_c00077{vertical-align:2.560000pt;}
.ls0_c00077{letter-spacing:0.000000pt;}
.ws1_c00077{word-spacing:-7.006720pt;}
.ws2_c00077{word-spacing:0.000000pt;}
.ws0_c00077{word-spacing:8.035615pt;}
.fs7_c00077{font-size:30.720000pt;}
.fs6_c00077{font-size:33.280000pt;}
.fsb_c00077{font-size:35.840000pt;}
.fsc_c00077{font-size:38.400000pt;}
.fs5_c00077{font-size:40.960000pt;}
.fs1_c00077{font-size:43.520000pt;}
.fs3_c00077{font-size:46.080000pt;}
.fs4_c00077{font-size:51.200000pt;}
.fs2_c00077{font-size:53.760000pt;}
.fs8_c00077{font-size:56.320000pt;}
.fs9_c00077{font-size:58.880000pt;}
.fsa_c00077{font-size:61.440000pt;}
.fs0_c00077{font-size:64.000000pt;}
.y0_c00077{bottom:0.000000pt;}
.y3f_c00077{bottom:432.000000pt;}
.y3e_c00077{bottom:432.640000pt;}
.y3d_c00077{bottom:467.200000pt;}
.y3a_c00077{bottom:468.480000pt;}
.y3c_c00077{bottom:469.760000pt;}
.y3b_c00077{bottom:470.400000pt;}
.y39_c00077{bottom:504.960000pt;}
.y36_c00077{bottom:505.600000pt;}
.y37_c00077{bottom:506.240000pt;}
.y38_c00077{bottom:507.520000pt;}
.y35_c00077{bottom:508.160000pt;}
.y34_c00077{bottom:508.800000pt;}
.y33_c00077{bottom:543.360000pt;}
.y32_c00077{bottom:544.000000pt;}
.y31_c00077{bottom:545.280000pt;}
.y30_c00077{bottom:545.920000pt;}
.y2f_c00077{bottom:546.560000pt;}
.y2e_c00077{bottom:580.480000pt;}
.y2d_c00077{bottom:581.120000pt;}
.y2b_c00077{bottom:581.760000pt;}
.y2c_c00077{bottom:583.040000pt;}
.y2a_c00077{bottom:583.680000pt;}
.y28_c00077{bottom:618.880000pt;}
.y27_c00077{bottom:620.800000pt;}
.y26_c00077{bottom:621.440000pt;}
.y29_c00077{bottom:622.080000pt;}
.y24_c00077{bottom:656.640000pt;}
.y23_c00077{bottom:657.280000pt;}
.y25_c00077{bottom:658.560000pt;}
.y1f_c00077{bottom:694.400000pt;}
.y21_c00077{bottom:695.040000pt;}
.y20_c00077{bottom:696.960000pt;}
.y22_c00077{bottom:697.600000pt;}
.y19_c00077{bottom:732.160000pt;}
.y1b_c00077{bottom:732.800000pt;}
.y1e_c00077{bottom:733.440000pt;}
.y1a_c00077{bottom:734.080000pt;}
.y1c_c00077{bottom:734.720000pt;}
.y1d_c00077{bottom:735.360000pt;}
.y14_c00077{bottom:769.920000pt;}
.y15_c00077{bottom:770.560000pt;}
.y13_c00077{bottom:771.840000pt;}
.y18_c00077{bottom:772.480000pt;}
.y17_c00077{bottom:773.120000pt;}
.y16_c00077{bottom:773.760000pt;}
.ye_c00077{bottom:807.680000pt;}
.y10_c00077{bottom:808.320000pt;}
.yd_c00077{bottom:809.600000pt;}
.yf_c00077{bottom:810.240000pt;}
.y11_c00077{bottom:810.880000pt;}
.y12_c00077{bottom:811.520000pt;}
.y9_c00077{bottom:846.080000pt;}
.yb_c00077{bottom:846.720000pt;}
.y7_c00077{bottom:847.360000pt;}
.y8_c00077{bottom:848.000000pt;}
.ya_c00077{bottom:848.640000pt;}
.yc_c00077{bottom:849.280000pt;}
.y3_c00077{bottom:884.480000pt;}
.y6_c00077{bottom:885.120000pt;}
.y2_c00077{bottom:885.760000pt;}
.y4_c00077{bottom:887.040000pt;}
.y5_c00077{bottom:887.680000pt;}
.y1_c00077{bottom:942.080000pt;}
.h9_c00077{height:27.645000pt;}
.h8_c00077{height:29.948750pt;}
.hd_c00077{height:32.252500pt;}
.he_c00077{height:34.556250pt;}
.h7_c00077{height:36.860000pt;}
.h3_c00077{height:39.163750pt;}
.h5_c00077{height:41.467500pt;}
.h6_c00077{height:46.075000pt;}
.h4_c00077{height:48.378750pt;}
.ha_c00077{height:50.682500pt;}
.hb_c00077{height:52.986250pt;}
.hc_c00077{height:55.290000pt;}
.h2_c00077{height:57.593750pt;}
.h1_c00077{height:1023.333333pt;}
.h0_c00077{height:1023.360000pt;}
.w1_c00077{width:718.000000pt;}
.w0_c00077{width:718.080000pt;}
.x0_c00077{left:0.000000pt;}
.x1d_c00077{left:75.520000pt;}
.x2_c00077{left:76.800000pt;}
.xc_c00077{left:105.600000pt;}
.x3e_c00077{left:113.280000pt;}
.x30_c00077{left:114.560000pt;}
.x3_c00077{left:124.800000pt;}
.xd_c00077{left:143.360000pt;}
.x29_c00077{left:161.920000pt;}
.x31_c00077{left:171.520000pt;}
.x15_c00077{left:172.800000pt;}
.x39_c00077{left:180.480000pt;}
.x35_c00077{left:181.760000pt;}
.x23_c00077{left:191.360000pt;}
.x16_c00077{left:199.680000pt;}
.x24_c00077{left:219.520000pt;}
.xe_c00077{left:229.760000pt;}
.x2a_c00077{left:247.680000pt;}
.x4_c00077{left:249.600000pt;}
.x17_c00077{left:257.920000pt;}
.xf_c00077{left:259.200000pt;}
.x38_c00077{left:266.880000pt;}
.x32_c00077{left:268.160000pt;}
.x41_c00077{left:276.480000pt;}
.x1e_c00077{left:278.400000pt;}
.x5_c00077{left:286.080000pt;}
.x2b_c00077{left:287.360000pt;}
.x1f_c00077{left:296.960000pt;}
.x3a_c00077{left:305.920000pt;}
.x18_c00077{left:325.760000pt;}
.x25_c00077{left:335.360000pt;}
.x36_c00077{left:344.320000pt;}
.x6_c00077{left:353.920000pt;}
.x3f_c00077{left:373.120000pt;}
.x10_c00077{left:375.040000pt;}
.x3b_c00077{left:382.080000pt;}
.x20_c00077{left:383.360000pt;}
.x7_c00077{left:392.320000pt;}
.x40_c00077{left:401.280000pt;}
.x42_c00077{left:411.520000pt;}
.x26_c00077{left:430.080000pt;}
.x43_c00077{left:439.680000pt;}
.x21_c00077{left:440.960000pt;}
.x33_c00077{left:449.920000pt;}
.x37_c00077{left:459.520000pt;}
.x11_c00077{left:460.800000pt;}
.x22_c00077{left:468.480000pt;}
.x8_c00077{left:470.400000pt;}
.x19_c00077{left:488.320000pt;}
.x2c_c00077{left:489.600000pt;}
.x9_c00077{left:497.280000pt;}
.x12_c00077{left:508.160000pt;}
.x1a_c00077{left:516.480000pt;}
.x27_c00077{left:536.320000pt;}
.xa_c00077{left:537.600000pt;}
.x3c_c00077{left:545.920000pt;}
.x13_c00077{left:555.520000pt;}
.x34_c00077{left:556.800000pt;}
.x28_c00077{left:564.480000pt;}
.x2d_c00077{left:566.400000pt;}
.x2e_c00077{left:584.320000pt;}
.x14_c00077{left:585.600000pt;}
.x3d_c00077{left:593.280000pt;}
.x1b_c00077{left:595.200000pt;}
.x2f_c00077{left:613.120000pt;}
.xb_c00077{left:624.000000pt;}
.x1c_c00077{left:632.960000pt;}
.x1_c00077{left:637.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7348db177fc95dcc814c9fdd.woff2')format("woff");}.ff1_c00078{font-family:ff1_c00078;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4f_c00078{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m59_c00078{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00078{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);}
.m3d_c00078{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00078{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m57_c00078{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m7_c00078{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m51_c00078{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1_c00078{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m37_c00078{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00078{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m49_c00078{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m28_c00078{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);}
.m2b_c00078{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);}
.m48_c00078{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);}
.m52_c00078{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m11_c00078{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00078{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m9_c00078{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m31_c00078{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);}
.m2c_c00078{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m27_c00078{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00078{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);}
.m32_c00078{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);}
.m53_c00078{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.mc_c00078{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);}
.m24_c00078{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00078{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);}
.m26_c00078{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);}
.m2a_c00078{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);}
.m2e_c00078{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m16_c00078{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.mb_c00078{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m38_c00078{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m15_c00078{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);}
.m33_c00078{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00078{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);}
.m1f_c00078{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_c00078{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m50_c00078{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m45_c00078{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m4_c00078{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m3_c00078{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);}
.m2_c00078{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.md_c00078{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);}
.m18_c00078{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00078{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);}
.m1a_c00078{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00078{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.mf_c00078{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m55_c00078{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m30_c00078{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m10_c00078{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m39_c00078{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m14_c00078{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m12_c00078{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m44_c00078{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m42_c00078{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m23_c00078{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);}
.ma_c00078{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);}
.m6_c00078{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00078{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m5_c00078{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00078{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);}
.m46_c00078{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m21_c00078{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00078{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);}
.m4d_c00078{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m17_c00078{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00078{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.me_c00078{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00078{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);}
.m8_c00078{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m29_c00078{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);}
.m40_c00078{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m47_c00078{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m22_c00078{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m13_c00078{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m19_c00078{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m56_c00078{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00078{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m43_c00078{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);}
.m35_c00078{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00078{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m54_c00078{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m41_c00078{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m25_c00078{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m20_c00078{transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);}
.m58_c00078{transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);}
.m34_c00078{transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);}
.m36_c00078{transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);}
.v0_c00078{vertical-align:0.000000px;}
.v1_c00078{vertical-align:11.520000px;}
.ls0_c00078{letter-spacing:0.000000px;}
.sc__c00078{text-shadow:none;}
.sc0_c00078{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00078{-webkit-text-stroke:0px transparent;}
.sc0_c00078{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00078{word-spacing:-4.803702px;}
.ws3_c00078{word-spacing:0.000000px;}
.ws0_c00078{word-spacing:0.025920px;}
.ws1_c00078{word-spacing:2.599200px;}
.fc0_c00078{color:transparent;}
.fs7_c00078{font-size:34.560000px;}
.fs3_c00078{font-size:37.440000px;}
.fs5_c00078{font-size:40.320000px;}
.fs9_c00078{font-size:43.200000px;}
.fs8_c00078{font-size:46.080000px;}
.fs2_c00078{font-size:48.960000px;}
.fs1_c00078{font-size:51.840000px;}
.fsd_c00078{font-size:54.720000px;}
.fsa_c00078{font-size:57.600000px;}
.fs6_c00078{font-size:60.480000px;}
.fsb_c00078{font-size:63.360000px;}
.fsc_c00078{font-size:66.240000px;}
.fs4_c00078{font-size:69.120000px;}
.fs0_c00078{font-size:72.000000px;}
.fse_c00078{font-size:74.880000px;}
.y0_c00078{bottom:0.000000px;}
.y63_c00078{bottom:52.560000px;}
.y60_c00078{bottom:53.280000px;}
.y64_c00078{bottom:54.000000px;}
.y62_c00078{bottom:55.440000px;}
.y61_c00078{bottom:56.880000px;}
.y5f_c00078{bottom:58.320000px;}
.y5e_c00078{bottom:95.040000px;}
.y5b_c00078{bottom:95.760000px;}
.y5d_c00078{bottom:97.200000px;}
.y5c_c00078{bottom:97.920000px;}
.y5a_c00078{bottom:98.640000px;}
.y59_c00078{bottom:100.080000px;}
.y58_c00078{bottom:137.520000px;}
.y55_c00078{bottom:138.240000px;}
.y53_c00078{bottom:139.680000px;}
.y57_c00078{bottom:140.400000px;}
.y56_c00078{bottom:141.120000px;}
.y54_c00078{bottom:141.840000px;}
.y52_c00078{bottom:143.280000px;}
.y4f_c00078{bottom:181.440000px;}
.y50_c00078{bottom:182.880000px;}
.y51_c00078{bottom:183.600000px;}
.y4e_c00078{bottom:185.040000px;}
.y4d_c00078{bottom:221.760000px;}
.y4c_c00078{bottom:222.480000px;}
.y4b_c00078{bottom:223.200000px;}
.y49_c00078{bottom:226.080000px;}
.y4a_c00078{bottom:226.800000px;}
.y47_c00078{bottom:265.680000px;}
.y48_c00078{bottom:268.560000px;}
.y46_c00078{bottom:269.280000px;}
.y44_c00078{bottom:308.880000px;}
.y45_c00078{bottom:311.040000px;}
.y43_c00078{bottom:311.760000px;}
.y42_c00078{bottom:362.160000px;}
.y41_c00078{bottom:364.320000px;}
.y40_c00078{bottom:365.040000px;}
.y3c_c00078{bottom:404.640000px;}
.y3d_c00078{bottom:405.360000px;}
.y3f_c00078{bottom:407.520000px;}
.y3e_c00078{bottom:408.240000px;}
.y3b_c00078{bottom:447.840000px;}
.y39_c00078{bottom:450.000000px;}
.y3a_c00078{bottom:450.720000px;}
.y37_c00078{bottom:489.600000px;}
.y34_c00078{bottom:490.320000px;}
.y35_c00078{bottom:491.760000px;}
.y38_c00078{bottom:492.480000px;}
.y36_c00078{bottom:493.200000px;}
.y32_c00078{bottom:532.800000px;}
.y31_c00078{bottom:534.960000px;}
.y30_c00078{bottom:535.680000px;}
.y33_c00078{bottom:536.400000px;}
.y2a_c00078{bottom:574.560000px;}
.y2d_c00078{bottom:575.280000px;}
.y2e_c00078{bottom:576.000000px;}
.y2b_c00078{bottom:578.160000px;}
.y2c_c00078{bottom:578.880000px;}
.y2f_c00078{bottom:579.600000px;}
.y25_c00078{bottom:617.760000px;}
.y27_c00078{bottom:618.480000px;}
.y28_c00078{bottom:619.200000px;}
.y26_c00078{bottom:620.640000px;}
.y29_c00078{bottom:621.360000px;}
.y20_c00078{bottom:660.240000px;}
.y23_c00078{bottom:660.960000px;}
.y24_c00078{bottom:661.680000px;}
.y21_c00078{bottom:662.400000px;}
.y1f_c00078{bottom:663.120000px;}
.y22_c00078{bottom:663.840000px;}
.y1b_c00078{bottom:702.720000px;}
.y1e_c00078{bottom:703.440000px;}
.y1a_c00078{bottom:705.600000px;}
.y1c_c00078{bottom:706.320000px;}
.y1d_c00078{bottom:707.040000px;}
.y18_c00078{bottom:745.920000px;}
.y17_c00078{bottom:746.640000px;}
.y19_c00078{bottom:748.080000px;}
.y16_c00078{bottom:748.800000px;}
.y15_c00078{bottom:799.200000px;}
.y13_c00078{bottom:800.640000px;}
.y14_c00078{bottom:801.360000px;}
.ye_c00078{bottom:840.960000px;}
.yf_c00078{bottom:841.680000px;}
.y12_c00078{bottom:842.400000px;}
.yd_c00078{bottom:843.840000px;}
.y10_c00078{bottom:844.560000px;}
.y11_c00078{bottom:845.280000px;}
.ya_c00078{bottom:884.160000px;}
.y9_c00078{bottom:884.880000px;}
.y7_c00078{bottom:885.600000px;}
.y8_c00078{bottom:886.320000px;}
.yb_c00078{bottom:887.040000px;}
.yc_c00078{bottom:887.760000px;}
.y5_c00078{bottom:928.080000px;}
.y3_c00078{bottom:929.520000px;}
.y4_c00078{bottom:930.240000px;}
.y6_c00078{bottom:930.960000px;}
.y2_c00078{bottom:993.600000px;}
.y1_c00078{bottom:1063.440000px;}
.h9_c00078{height:31.100625px;}
.h5_c00078{height:33.692344px;}
.h7_c00078{height:36.284062px;}
.hb_c00078{height:38.875781px;}
.ha_c00078{height:41.467500px;}
.h4_c00078{height:44.059219px;}
.h3_c00078{height:46.650937px;}
.h10_c00078{height:49.242656px;}
.hc_c00078{height:51.834375px;}
.h8_c00078{height:54.426094px;}
.hd_c00078{height:57.017812px;}
.hf_c00078{height:58.170937px;}
.he_c00078{height:59.609531px;}
.h6_c00078{height:62.201250px;}
.h2_c00078{height:64.792969px;}
.h11_c00078{height:67.384687px;}
.h0_c00078{height:1152.720000px;}
.h1_c00078{height:1152.750000px;}
.w1_c00078{width:808.500000px;}
.w0_c00078{width:808.560000px;}
.x0_c00078{left:0.000000px;}
.x39_c00078{left:74.880000px;}
.xb_c00078{left:87.120000px;}
.x3e_c00078{left:107.280000px;}
.x4a_c00078{left:117.360000px;}
.xc_c00078{left:118.800000px;}
.x28_c00078{left:128.880000px;}
.x49_c00078{left:131.040000px;}
.x23_c00078{left:138.960000px;}
.x3a_c00078{left:140.400000px;}
.x2c_c00078{left:150.480000px;}
.xd_c00078{left:162.000000px;}
.x29_c00078{left:172.800000px;}
.x16_c00078{left:182.880000px;}
.x3_c00078{left:194.400000px;}
.x43_c00078{left:205.200000px;}
.x47_c00078{left:216.000000px;}
.x37_c00078{left:226.080000px;}
.x33_c00078{left:237.600000px;}
.x4_c00078{left:247.680000px;}
.x3b_c00078{left:257.040000px;}
.x2a_c00078{left:258.480000px;}
.x38_c00078{left:259.920000px;}
.xe_c00078{left:269.280000px;}
.x17_c00078{left:280.080000px;}
.x3d_c00078{left:290.880000px;}
.x2_c00078{left:302.400000px;}
.x5_c00078{left:312.480000px;}
.x4d_c00078{left:321.840000px;}
.x1e_c00078{left:323.280000px;}
.x2d_c00078{left:334.800000px;}
.xf_c00078{left:355.680000px;}
.x2e_c00078{left:365.760000px;}
.x1d_c00078{left:367.200000px;}
.x24_c00078{left:377.280000px;}
.x1f_c00078{left:387.360000px;}
.x18_c00078{left:388.800000px;}
.x2b_c00078{left:398.160000px;}
.x6_c00078{left:399.600000px;}
.x10_c00078{left:408.960000px;}
.x4c_c00078{left:410.400000px;}
.x19_c00078{left:419.760000px;}
.x3f_c00078{left:421.200000px;}
.x7_c00078{left:431.280000px;}
.x11_c00078{left:442.080000px;}
.x2f_c00078{left:452.160000px;}
.x25_c00078{left:463.680000px;}
.x20_c00078{left:474.480000px;}
.x1a_c00078{left:484.560000px;}
.x30_c00078{left:493.920000px;}
.x3c_c00078{left:496.080000px;}
.x40_c00078{left:506.160000px;}
.x34_c00078{left:507.600000px;}
.x4e_c00078{left:516.240000px;}
.x21_c00078{left:518.400000px;}
.x8_c00078{left:527.760000px;}
.x12_c00078{left:529.200000px;}
.x35_c00078{left:540.720000px;}
.x44_c00078{left:549.360000px;}
.x4b_c00078{left:550.800000px;}
.x41_c00078{left:560.160000px;}
.x50_c00078{left:572.400000px;}
.x45_c00078{left:581.760000px;}
.x26_c00078{left:583.200000px;}
.x42_c00078{left:592.560000px;}
.x9_c00078{left:594.000000px;}
.x1b_c00078{left:614.880000px;}
.x22_c00078{left:626.400000px;}
.x48_c00078{left:635.040000px;}
.x13_c00078{left:637.200000px;}
.xa_c00078{left:648.000000px;}
.x27_c00078{left:658.080000px;}
.x14_c00078{left:668.880000px;}
.x31_c00078{left:670.320000px;}
.x4f_c00078{left:678.960000px;}
.x36_c00078{left:680.400000px;}
.x1c_c00078{left:691.200000px;}
.x46_c00078{left:702.000000px;}
.x15_c00078{left:712.800000px;}
.x1_c00078{left:715.680000px;}
.x32_c00078{left:723.600000px;}
@media print{
.v0_c00078{vertical-align:0.000000pt;}
.v1_c00078{vertical-align:10.240000pt;}
.ls0_c00078{letter-spacing:0.000000pt;}
.ws2_c00078{word-spacing:-4.269957pt;}
.ws3_c00078{word-spacing:0.000000pt;}
.ws0_c00078{word-spacing:0.023040pt;}
.ws1_c00078{word-spacing:2.310400pt;}
.fs7_c00078{font-size:30.720000pt;}
.fs3_c00078{font-size:33.280000pt;}
.fs5_c00078{font-size:35.840000pt;}
.fs9_c00078{font-size:38.400000pt;}
.fs8_c00078{font-size:40.960000pt;}
.fs2_c00078{font-size:43.520000pt;}
.fs1_c00078{font-size:46.080000pt;}
.fsd_c00078{font-size:48.640000pt;}
.fsa_c00078{font-size:51.200000pt;}
.fs6_c00078{font-size:53.760000pt;}
.fsb_c00078{font-size:56.320000pt;}
.fsc_c00078{font-size:58.880000pt;}
.fs4_c00078{font-size:61.440000pt;}
.fs0_c00078{font-size:64.000000pt;}
.fse_c00078{font-size:66.560000pt;}
.y0_c00078{bottom:0.000000pt;}
.y63_c00078{bottom:46.720000pt;}
.y60_c00078{bottom:47.360000pt;}
.y64_c00078{bottom:48.000000pt;}
.y62_c00078{bottom:49.280000pt;}
.y61_c00078{bottom:50.560000pt;}
.y5f_c00078{bottom:51.840000pt;}
.y5e_c00078{bottom:84.480000pt;}
.y5b_c00078{bottom:85.120000pt;}
.y5d_c00078{bottom:86.400000pt;}
.y5c_c00078{bottom:87.040000pt;}
.y5a_c00078{bottom:87.680000pt;}
.y59_c00078{bottom:88.960000pt;}
.y58_c00078{bottom:122.240000pt;}
.y55_c00078{bottom:122.880000pt;}
.y53_c00078{bottom:124.160000pt;}
.y57_c00078{bottom:124.800000pt;}
.y56_c00078{bottom:125.440000pt;}
.y54_c00078{bottom:126.080000pt;}
.y52_c00078{bottom:127.360000pt;}
.y4f_c00078{bottom:161.280000pt;}
.y50_c00078{bottom:162.560000pt;}
.y51_c00078{bottom:163.200000pt;}
.y4e_c00078{bottom:164.480000pt;}
.y4d_c00078{bottom:197.120000pt;}
.y4c_c00078{bottom:197.760000pt;}
.y4b_c00078{bottom:198.400000pt;}
.y49_c00078{bottom:200.960000pt;}
.y4a_c00078{bottom:201.600000pt;}
.y47_c00078{bottom:236.160000pt;}
.y48_c00078{bottom:238.720000pt;}
.y46_c00078{bottom:239.360000pt;}
.y44_c00078{bottom:274.560000pt;}
.y45_c00078{bottom:276.480000pt;}
.y43_c00078{bottom:277.120000pt;}
.y42_c00078{bottom:321.920000pt;}
.y41_c00078{bottom:323.840000pt;}
.y40_c00078{bottom:324.480000pt;}
.y3c_c00078{bottom:359.680000pt;}
.y3d_c00078{bottom:360.320000pt;}
.y3f_c00078{bottom:362.240000pt;}
.y3e_c00078{bottom:362.880000pt;}
.y3b_c00078{bottom:398.080000pt;}
.y39_c00078{bottom:400.000000pt;}
.y3a_c00078{bottom:400.640000pt;}
.y37_c00078{bottom:435.200000pt;}
.y34_c00078{bottom:435.840000pt;}
.y35_c00078{bottom:437.120000pt;}
.y38_c00078{bottom:437.760000pt;}
.y36_c00078{bottom:438.400000pt;}
.y32_c00078{bottom:473.600000pt;}
.y31_c00078{bottom:475.520000pt;}
.y30_c00078{bottom:476.160000pt;}
.y33_c00078{bottom:476.800000pt;}
.y2a_c00078{bottom:510.720000pt;}
.y2d_c00078{bottom:511.360000pt;}
.y2e_c00078{bottom:512.000000pt;}
.y2b_c00078{bottom:513.920000pt;}
.y2c_c00078{bottom:514.560000pt;}
.y2f_c00078{bottom:515.200000pt;}
.y25_c00078{bottom:549.120000pt;}
.y27_c00078{bottom:549.760000pt;}
.y28_c00078{bottom:550.400000pt;}
.y26_c00078{bottom:551.680000pt;}
.y29_c00078{bottom:552.320000pt;}
.y20_c00078{bottom:586.880000pt;}
.y23_c00078{bottom:587.520000pt;}
.y24_c00078{bottom:588.160000pt;}
.y21_c00078{bottom:588.800000pt;}
.y1f_c00078{bottom:589.440000pt;}
.y22_c00078{bottom:590.080000pt;}
.y1b_c00078{bottom:624.640000pt;}
.y1e_c00078{bottom:625.280000pt;}
.y1a_c00078{bottom:627.200000pt;}
.y1c_c00078{bottom:627.840000pt;}
.y1d_c00078{bottom:628.480000pt;}
.y18_c00078{bottom:663.040000pt;}
.y17_c00078{bottom:663.680000pt;}
.y19_c00078{bottom:664.960000pt;}
.y16_c00078{bottom:665.600000pt;}
.y15_c00078{bottom:710.400000pt;}
.y13_c00078{bottom:711.680000pt;}
.y14_c00078{bottom:712.320000pt;}
.ye_c00078{bottom:747.520000pt;}
.yf_c00078{bottom:748.160000pt;}
.y12_c00078{bottom:748.800000pt;}
.yd_c00078{bottom:750.080000pt;}
.y10_c00078{bottom:750.720000pt;}
.y11_c00078{bottom:751.360000pt;}
.ya_c00078{bottom:785.920000pt;}
.y9_c00078{bottom:786.560000pt;}
.y7_c00078{bottom:787.200000pt;}
.y8_c00078{bottom:787.840000pt;}
.yb_c00078{bottom:788.480000pt;}
.yc_c00078{bottom:789.120000pt;}
.y5_c00078{bottom:824.960000pt;}
.y3_c00078{bottom:826.240000pt;}
.y4_c00078{bottom:826.880000pt;}
.y6_c00078{bottom:827.520000pt;}
.y2_c00078{bottom:883.200000pt;}
.y1_c00078{bottom:945.280000pt;}
.h9_c00078{height:27.645000pt;}
.h5_c00078{height:29.948750pt;}
.h7_c00078{height:32.252500pt;}
.hb_c00078{height:34.556250pt;}
.ha_c00078{height:36.860000pt;}
.h4_c00078{height:39.163750pt;}
.h3_c00078{height:41.467500pt;}
.h10_c00078{height:43.771250pt;}
.hc_c00078{height:46.075000pt;}
.h8_c00078{height:48.378750pt;}
.hd_c00078{height:50.682500pt;}
.hf_c00078{height:51.707500pt;}
.he_c00078{height:52.986250pt;}
.h6_c00078{height:55.290000pt;}
.h2_c00078{height:57.593750pt;}
.h11_c00078{height:59.897500pt;}
.h0_c00078{height:1024.640000pt;}
.h1_c00078{height:1024.666667pt;}
.w1_c00078{width:718.666667pt;}
.w0_c00078{width:718.720000pt;}
.x0_c00078{left:0.000000pt;}
.x39_c00078{left:66.560000pt;}
.xb_c00078{left:77.440000pt;}
.x3e_c00078{left:95.360000pt;}
.x4a_c00078{left:104.320000pt;}
.xc_c00078{left:105.600000pt;}
.x28_c00078{left:114.560000pt;}
.x49_c00078{left:116.480000pt;}
.x23_c00078{left:123.520000pt;}
.x3a_c00078{left:124.800000pt;}
.x2c_c00078{left:133.760000pt;}
.xd_c00078{left:144.000000pt;}
.x29_c00078{left:153.600000pt;}
.x16_c00078{left:162.560000pt;}
.x3_c00078{left:172.800000pt;}
.x43_c00078{left:182.400000pt;}
.x47_c00078{left:192.000000pt;}
.x37_c00078{left:200.960000pt;}
.x33_c00078{left:211.200000pt;}
.x4_c00078{left:220.160000pt;}
.x3b_c00078{left:228.480000pt;}
.x2a_c00078{left:229.760000pt;}
.x38_c00078{left:231.040000pt;}
.xe_c00078{left:239.360000pt;}
.x17_c00078{left:248.960000pt;}
.x3d_c00078{left:258.560000pt;}
.x2_c00078{left:268.800000pt;}
.x5_c00078{left:277.760000pt;}
.x4d_c00078{left:286.080000pt;}
.x1e_c00078{left:287.360000pt;}
.x2d_c00078{left:297.600000pt;}
.xf_c00078{left:316.160000pt;}
.x2e_c00078{left:325.120000pt;}
.x1d_c00078{left:326.400000pt;}
.x24_c00078{left:335.360000pt;}
.x1f_c00078{left:344.320000pt;}
.x18_c00078{left:345.600000pt;}
.x2b_c00078{left:353.920000pt;}
.x6_c00078{left:355.200000pt;}
.x10_c00078{left:363.520000pt;}
.x4c_c00078{left:364.800000pt;}
.x19_c00078{left:373.120000pt;}
.x3f_c00078{left:374.400000pt;}
.x7_c00078{left:383.360000pt;}
.x11_c00078{left:392.960000pt;}
.x2f_c00078{left:401.920000pt;}
.x25_c00078{left:412.160000pt;}
.x20_c00078{left:421.760000pt;}
.x1a_c00078{left:430.720000pt;}
.x30_c00078{left:439.040000pt;}
.x3c_c00078{left:440.960000pt;}
.x40_c00078{left:449.920000pt;}
.x34_c00078{left:451.200000pt;}
.x4e_c00078{left:458.880000pt;}
.x21_c00078{left:460.800000pt;}
.x8_c00078{left:469.120000pt;}
.x12_c00078{left:470.400000pt;}
.x35_c00078{left:480.640000pt;}
.x44_c00078{left:488.320000pt;}
.x4b_c00078{left:489.600000pt;}
.x41_c00078{left:497.920000pt;}
.x50_c00078{left:508.800000pt;}
.x45_c00078{left:517.120000pt;}
.x26_c00078{left:518.400000pt;}
.x42_c00078{left:526.720000pt;}
.x9_c00078{left:528.000000pt;}
.x1b_c00078{left:546.560000pt;}
.x22_c00078{left:556.800000pt;}
.x48_c00078{left:564.480000pt;}
.x13_c00078{left:566.400000pt;}
.xa_c00078{left:576.000000pt;}
.x27_c00078{left:584.960000pt;}
.x14_c00078{left:594.560000pt;}
.x31_c00078{left:595.840000pt;}
.x4f_c00078{left:603.520000pt;}
.x36_c00078{left:604.800000pt;}
.x1c_c00078{left:614.400000pt;}
.x46_c00078{left:624.000000pt;}
.x15_c00078{left:633.600000pt;}
.x1_c00078{left:636.160000pt;}
.x32_c00078{left:643.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_00ca9fdea134f6c9eceb9d66.woff2')format("woff");}.ff1_c00079{font-family:ff1_c00079;line-height:1.109863;font-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_c00079{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m51_c00079{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00079{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m56_c00079{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m31_c00079{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m15_c00079{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m49_c00079{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00079{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00079{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m32_c00079{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m20_c00079{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00079{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);}
.m53_c00079{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m29_c00079{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);}
.m34_c00079{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);}
.m43_c00079{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m52_c00079{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m38_c00079{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);}
.m50_c00079{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m8_c00079{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m0_c00079{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m35_c00079{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);}
.m9_c00079{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m4_c00079{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m5_c00079{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00079{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);}
.m6_c00079{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);}
.m3e_c00079{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);}
.mc_c00079{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m48_c00079{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m16_c00079{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.mb_c00079{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_c00079{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);}
.m13_c00079{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00079{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m42_c00079{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00079{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);}
.m18_c00079{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00079{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m54_c00079{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);}
.me_c00079{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);}
.m3b_c00079{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00079{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m55_c00079{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m19_c00079{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);}
.m4b_c00079{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00079{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m47_c00079{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);}
.m40_c00079{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m3_c00079{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);}
.m2_c00079{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00079{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m22_c00079{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m30_c00079{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);}
.m2f_c00079{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00079{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m23_c00079{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00079{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);}
.md_c00079{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m33_c00079{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m24_c00079{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00079{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00079{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);}
.m27_c00079{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);}
.m39_c00079{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m1_c00079{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m44_c00079{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m25_c00079{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);}
.m45_c00079{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m36_c00079{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m57_c00079{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m37_c00079{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m14_c00079{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_c00079{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00079{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m21_c00079{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.ma_c00079{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00079{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_c00079{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00079{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m12_c00079{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m58_c00079{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m41_c00079{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m17_c00079{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00079{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);}
.m7_c00079{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);}
.m26_c00079{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m11_c00079{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00079{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);}
.m46_c00079{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m59_c00079{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);}
.m2d_c00079{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.v0_c00079{vertical-align:0.000000px;}
.v1_c00079{vertical-align:5.760000px;}
.ls0_c00079{letter-spacing:0.000000px;}
.sc__c00079{text-shadow:none;}
.sc0_c00079{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00079{-webkit-text-stroke:0px transparent;}
.sc0_c00079{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00079{word-spacing:0.000000px;}
.ws1_c00079{word-spacing:5.722320px;}
.ws0_c00079{word-spacing:6.545040px;}
.fc0_c00079{color:transparent;}
.fs4_c00079{font-size:34.560000px;}
.fs7_c00079{font-size:37.440000px;}
.fsd_c00079{font-size:40.320000px;}
.fse_c00079{font-size:43.200000px;}
.fs0_c00079{font-size:46.080000px;}
.fs3_c00079{font-size:48.960000px;}
.fs1_c00079{font-size:51.840000px;}
.fs5_c00079{font-size:54.720000px;}
.fs8_c00079{font-size:57.600000px;}
.fs2_c00079{font-size:60.480000px;}
.fs9_c00079{font-size:63.360000px;}
.fsb_c00079{font-size:66.240000px;}
.fs6_c00079{font-size:69.120000px;}
.fsc_c00079{font-size:72.000000px;}
.fsa_c00079{font-size:74.880000px;}
.y0_c00079{bottom:0.000000px;}
.y73_c00079{bottom:41.040000px;}
.y74_c00079{bottom:41.760000px;}
.y75_c00079{bottom:42.480000px;}
.y72_c00079{bottom:43.200000px;}
.y71_c00079{bottom:44.640000px;}
.y6f_c00079{bottom:45.360000px;}
.y70_c00079{bottom:46.080000px;}
.y6e_c00079{bottom:46.800000px;}
.y6d_c00079{bottom:48.240000px;}
.y69_c00079{bottom:82.800000px;}
.y6b_c00079{bottom:83.520000px;}
.y6a_c00079{bottom:84.240000px;}
.y6c_c00079{bottom:85.680000px;}
.y68_c00079{bottom:86.400000px;}
.y67_c00079{bottom:87.120000px;}
.y66_c00079{bottom:87.840000px;}
.y65_c00079{bottom:126.720000px;}
.y64_c00079{bottom:128.880000px;}
.y62_c00079{bottom:129.600000px;}
.y63_c00079{bottom:131.040000px;}
.y61_c00079{bottom:131.760000px;}
.y5e_c00079{bottom:169.200000px;}
.y5c_c00079{bottom:170.640000px;}
.y60_c00079{bottom:171.360000px;}
.y5f_c00079{bottom:172.080000px;}
.y5d_c00079{bottom:172.800000px;}
.y5b_c00079{bottom:173.520000px;}
.y5a_c00079{bottom:174.240000px;}
.y59_c00079{bottom:210.960000px;}
.y55_c00079{bottom:212.400000px;}
.y57_c00079{bottom:213.120000px;}
.y58_c00079{bottom:214.560000px;}
.y56_c00079{bottom:215.280000px;}
.y54_c00079{bottom:216.000000px;}
.y53_c00079{bottom:266.400000px;}
.y50_c00079{bottom:267.120000px;}
.y52_c00079{bottom:267.840000px;}
.y51_c00079{bottom:268.560000px;}
.y4f_c00079{bottom:308.880000px;}
.y4e_c00079{bottom:310.320000px;}
.y4d_c00079{bottom:311.040000px;}
.y4c_c00079{bottom:311.760000px;}
.y4b_c00079{bottom:312.480000px;}
.y4a_c00079{bottom:350.640000px;}
.y46_c00079{bottom:351.360000px;}
.y48_c00079{bottom:352.800000px;}
.y47_c00079{bottom:353.520000px;}
.y49_c00079{bottom:354.240000px;}
.y44_c00079{bottom:393.120000px;}
.y45_c00079{bottom:395.280000px;}
.y43_c00079{bottom:396.000000px;}
.y42_c00079{bottom:396.720000px;}
.y40_c00079{bottom:436.320000px;}
.y3f_c00079{bottom:437.040000px;}
.y41_c00079{bottom:438.480000px;}
.y3e_c00079{bottom:439.200000px;}
.y3c_c00079{bottom:478.800000px;}
.y3d_c00079{bottom:480.960000px;}
.y3b_c00079{bottom:481.680000px;}
.y39_c00079{bottom:521.280000px;}
.y3a_c00079{bottom:523.440000px;}
.y38_c00079{bottom:524.160000px;}
.y32_c00079{bottom:563.760000px;}
.y36_c00079{bottom:564.480000px;}
.y37_c00079{bottom:565.200000px;}
.y35_c00079{bottom:565.920000px;}
.y33_c00079{bottom:566.640000px;}
.y34_c00079{bottom:567.360000px;}
.y31_c00079{bottom:606.240000px;}
.y2f_c00079{bottom:606.960000px;}
.y30_c00079{bottom:608.400000px;}
.y2e_c00079{bottom:609.120000px;}
.y2d_c00079{bottom:609.840000px;}
.y29_c00079{bottom:659.520000px;}
.y2b_c00079{bottom:660.240000px;}
.y2c_c00079{bottom:661.680000px;}
.y2a_c00079{bottom:662.400000px;}
.y28_c00079{bottom:702.000000px;}
.y25_c00079{bottom:702.720000px;}
.y27_c00079{bottom:703.440000px;}
.y26_c00079{bottom:705.600000px;}
.y21_c00079{bottom:744.480000px;}
.y22_c00079{bottom:747.360000px;}
.y23_c00079{bottom:748.080000px;}
.y24_c00079{bottom:748.800000px;}
.y1f_c00079{bottom:788.400000px;}
.y1d_c00079{bottom:789.840000px;}
.y1e_c00079{bottom:790.560000px;}
.y20_c00079{bottom:791.280000px;}
.y1c_c00079{bottom:829.440000px;}
.y1b_c00079{bottom:830.880000px;}
.y19_c00079{bottom:832.320000px;}
.y1a_c00079{bottom:833.040000px;}
.y15_c00079{bottom:871.920000px;}
.y16_c00079{bottom:872.640000px;}
.y18_c00079{bottom:873.360000px;}
.y13_c00079{bottom:874.800000px;}
.y14_c00079{bottom:875.520000px;}
.y17_c00079{bottom:876.240000px;}
.ye_c00079{bottom:914.400000px;}
.yf_c00079{bottom:915.120000px;}
.y12_c00079{bottom:915.840000px;}
.yd_c00079{bottom:916.560000px;}
.y10_c00079{bottom:918.000000px;}
.y11_c00079{bottom:918.720000px;}
.y8_c00079{bottom:957.600000px;}
.ya_c00079{bottom:958.320000px;}
.y7_c00079{bottom:959.040000px;}
.y9_c00079{bottom:960.480000px;}
.yb_c00079{bottom:961.200000px;}
.yc_c00079{bottom:961.920000px;}
.y4_c00079{bottom:1000.800000px;}
.y1_c00079{bottom:1001.520000px;}
.y2_c00079{bottom:1002.240000px;}
.y3_c00079{bottom:1002.960000px;}
.y5_c00079{bottom:1003.680000px;}
.y6_c00079{bottom:1004.400000px;}
.h6_c00079{height:31.100625px;}
.h9_c00079{height:33.692344px;}
.h10_c00079{height:36.284062px;}
.h11_c00079{height:38.875781px;}
.h2_c00079{height:41.467500px;}
.h5_c00079{height:44.059219px;}
.h3_c00079{height:46.650937px;}
.h7_c00079{height:49.242656px;}
.ha_c00079{height:51.834375px;}
.h4_c00079{height:54.426094px;}
.hb_c00079{height:57.017812px;}
.he_c00079{height:59.609531px;}
.hd_c00079{height:60.186094px;}
.h8_c00079{height:62.201250px;}
.hf_c00079{height:64.792969px;}
.hc_c00079{height:67.384687px;}
.h0_c00079{height:1152.720000px;}
.h1_c00079{height:1152.750000px;}
.w1_c00079{width:808.500000px;}
.w0_c00079{width:808.560000px;}
.x0_c00079{left:0.000000px;}
.x12_c00079{left:84.960000px;}
.x1_c00079{left:86.400000px;}
.x36_c00079{left:107.280000px;}
.x2_c00079{left:118.800000px;}
.x4d_c00079{left:127.440000px;}
.x33_c00079{left:138.960000px;}
.x1e_c00079{left:140.400000px;}
.x3e_c00079{left:149.760000px;}
.x3_c00079{left:151.200000px;}
.x4e_c00079{left:159.840000px;}
.x3f_c00079{left:170.640000px;}
.x1f_c00079{left:172.080000px;}
.x49_c00079{left:181.440000px;}
.x2e_c00079{left:192.240000px;}
.x24_c00079{left:194.400000px;}
.x46_c00079{left:203.040000px;}
.x19_c00079{left:204.480000px;}
.x25_c00079{left:214.560000px;}
.x39_c00079{left:224.640000px;}
.xb_c00079{left:226.080000px;}
.x4b_c00079{left:235.440000px;}
.x4_c00079{left:236.880000px;}
.x26_c00079{left:246.240000px;}
.x13_c00079{left:257.760000px;}
.x40_c00079{left:268.560000px;}
.x5_c00079{left:279.360000px;}
.x34_c00079{left:289.440000px;}
.x27_c00079{left:290.880000px;}
.x3a_c00079{left:300.240000px;}
.x14_c00079{left:311.760000px;}
.x20_c00079{left:322.560000px;}
.x41_c00079{left:332.640000px;}
.x37_c00079{left:343.440000px;}
.x15_c00079{left:344.880000px;}
.x6_c00079{left:365.040000px;}
.x28_c00079{left:376.560000px;}
.xc_c00079{left:387.360000px;}
.x1a_c00079{left:397.440000px;}
.x29_c00079{left:408.240000px;}
.x3b_c00079{left:419.040000px;}
.x2f_c00079{left:420.480000px;}
.x7_c00079{left:430.560000px;}
.x2a_c00079{left:440.640000px;}
.x16_c00079{left:442.080000px;}
.x35_c00079{left:452.160000px;}
.x42_c00079{left:462.240000px;}
.x38_c00079{left:473.040000px;}
.x4f_c00079{left:483.840000px;}
.x21_c00079{left:485.280000px;}
.xd_c00079{left:495.360000px;}
.x43_c00079{left:503.280000px;}
.x8_c00079{left:505.440000px;}
.x47_c00079{left:515.520000px;}
.x17_c00079{left:516.960000px;}
.x30_c00079{left:527.760000px;}
.xe_c00079{left:537.840000px;}
.x4a_c00079{left:548.640000px;}
.x9_c00079{left:550.080000px;}
.x31_c00079{left:559.440000px;}
.x48_c00079{left:570.240000px;}
.x18_c00079{left:581.760000px;}
.x1b_c00079{left:591.840000px;}
.x4c_c00079{left:601.200000px;}
.x22_c00079{left:603.360000px;}
.x2b_c00079{left:614.160000px;}
.x32_c00079{left:624.240000px;}
.xf_c00079{left:625.680000px;}
.x50_c00079{left:634.320000px;}
.x1c_c00079{left:635.760000px;}
.x51_c00079{left:645.120000px;}
.x2c_c00079{left:648.000000px;}
.x3c_c00079{left:656.640000px;}
.x10_c00079{left:658.080000px;}
.x1d_c00079{left:667.440000px;}
.x44_c00079{left:668.880000px;}
.x2d_c00079{left:679.680000px;}
.x11_c00079{left:689.040000px;}
.xa_c00079{left:690.480000px;}
.x45_c00079{left:699.840000px;}
.x3d_c00079{left:702.000000px;}
.x23_c00079{left:711.360000px;}
@media print{
.v0_c00079{vertical-align:0.000000pt;}
.v1_c00079{vertical-align:5.120000pt;}
.ls0_c00079{letter-spacing:0.000000pt;}
.ws2_c00079{word-spacing:0.000000pt;}
.ws1_c00079{word-spacing:5.086507pt;}
.ws0_c00079{word-spacing:5.817813pt;}
.fs4_c00079{font-size:30.720000pt;}
.fs7_c00079{font-size:33.280000pt;}
.fsd_c00079{font-size:35.840000pt;}
.fse_c00079{font-size:38.400000pt;}
.fs0_c00079{font-size:40.960000pt;}
.fs3_c00079{font-size:43.520000pt;}
.fs1_c00079{font-size:46.080000pt;}
.fs5_c00079{font-size:48.640000pt;}
.fs8_c00079{font-size:51.200000pt;}
.fs2_c00079{font-size:53.760000pt;}
.fs9_c00079{font-size:56.320000pt;}
.fsb_c00079{font-size:58.880000pt;}
.fs6_c00079{font-size:61.440000pt;}
.fsc_c00079{font-size:64.000000pt;}
.fsa_c00079{font-size:66.560000pt;}
.y0_c00079{bottom:0.000000pt;}
.y73_c00079{bottom:36.480000pt;}
.y74_c00079{bottom:37.120000pt;}
.y75_c00079{bottom:37.760000pt;}
.y72_c00079{bottom:38.400000pt;}
.y71_c00079{bottom:39.680000pt;}
.y6f_c00079{bottom:40.320000pt;}
.y70_c00079{bottom:40.960000pt;}
.y6e_c00079{bottom:41.600000pt;}
.y6d_c00079{bottom:42.880000pt;}
.y69_c00079{bottom:73.600000pt;}
.y6b_c00079{bottom:74.240000pt;}
.y6a_c00079{bottom:74.880000pt;}
.y6c_c00079{bottom:76.160000pt;}
.y68_c00079{bottom:76.800000pt;}
.y67_c00079{bottom:77.440000pt;}
.y66_c00079{bottom:78.080000pt;}
.y65_c00079{bottom:112.640000pt;}
.y64_c00079{bottom:114.560000pt;}
.y62_c00079{bottom:115.200000pt;}
.y63_c00079{bottom:116.480000pt;}
.y61_c00079{bottom:117.120000pt;}
.y5e_c00079{bottom:150.400000pt;}
.y5c_c00079{bottom:151.680000pt;}
.y60_c00079{bottom:152.320000pt;}
.y5f_c00079{bottom:152.960000pt;}
.y5d_c00079{bottom:153.600000pt;}
.y5b_c00079{bottom:154.240000pt;}
.y5a_c00079{bottom:154.880000pt;}
.y59_c00079{bottom:187.520000pt;}
.y55_c00079{bottom:188.800000pt;}
.y57_c00079{bottom:189.440000pt;}
.y58_c00079{bottom:190.720000pt;}
.y56_c00079{bottom:191.360000pt;}
.y54_c00079{bottom:192.000000pt;}
.y53_c00079{bottom:236.800000pt;}
.y50_c00079{bottom:237.440000pt;}
.y52_c00079{bottom:238.080000pt;}
.y51_c00079{bottom:238.720000pt;}
.y4f_c00079{bottom:274.560000pt;}
.y4e_c00079{bottom:275.840000pt;}
.y4d_c00079{bottom:276.480000pt;}
.y4c_c00079{bottom:277.120000pt;}
.y4b_c00079{bottom:277.760000pt;}
.y4a_c00079{bottom:311.680000pt;}
.y46_c00079{bottom:312.320000pt;}
.y48_c00079{bottom:313.600000pt;}
.y47_c00079{bottom:314.240000pt;}
.y49_c00079{bottom:314.880000pt;}
.y44_c00079{bottom:349.440000pt;}
.y45_c00079{bottom:351.360000pt;}
.y43_c00079{bottom:352.000000pt;}
.y42_c00079{bottom:352.640000pt;}
.y40_c00079{bottom:387.840000pt;}
.y3f_c00079{bottom:388.480000pt;}
.y41_c00079{bottom:389.760000pt;}
.y3e_c00079{bottom:390.400000pt;}
.y3c_c00079{bottom:425.600000pt;}
.y3d_c00079{bottom:427.520000pt;}
.y3b_c00079{bottom:428.160000pt;}
.y39_c00079{bottom:463.360000pt;}
.y3a_c00079{bottom:465.280000pt;}
.y38_c00079{bottom:465.920000pt;}
.y32_c00079{bottom:501.120000pt;}
.y36_c00079{bottom:501.760000pt;}
.y37_c00079{bottom:502.400000pt;}
.y35_c00079{bottom:503.040000pt;}
.y33_c00079{bottom:503.680000pt;}
.y34_c00079{bottom:504.320000pt;}
.y31_c00079{bottom:538.880000pt;}
.y2f_c00079{bottom:539.520000pt;}
.y30_c00079{bottom:540.800000pt;}
.y2e_c00079{bottom:541.440000pt;}
.y2d_c00079{bottom:542.080000pt;}
.y29_c00079{bottom:586.240000pt;}
.y2b_c00079{bottom:586.880000pt;}
.y2c_c00079{bottom:588.160000pt;}
.y2a_c00079{bottom:588.800000pt;}
.y28_c00079{bottom:624.000000pt;}
.y25_c00079{bottom:624.640000pt;}
.y27_c00079{bottom:625.280000pt;}
.y26_c00079{bottom:627.200000pt;}
.y21_c00079{bottom:661.760000pt;}
.y22_c00079{bottom:664.320000pt;}
.y23_c00079{bottom:664.960000pt;}
.y24_c00079{bottom:665.600000pt;}
.y1f_c00079{bottom:700.800000pt;}
.y1d_c00079{bottom:702.080000pt;}
.y1e_c00079{bottom:702.720000pt;}
.y20_c00079{bottom:703.360000pt;}
.y1c_c00079{bottom:737.280000pt;}
.y1b_c00079{bottom:738.560000pt;}
.y19_c00079{bottom:739.840000pt;}
.y1a_c00079{bottom:740.480000pt;}
.y15_c00079{bottom:775.040000pt;}
.y16_c00079{bottom:775.680000pt;}
.y18_c00079{bottom:776.320000pt;}
.y13_c00079{bottom:777.600000pt;}
.y14_c00079{bottom:778.240000pt;}
.y17_c00079{bottom:778.880000pt;}
.ye_c00079{bottom:812.800000pt;}
.yf_c00079{bottom:813.440000pt;}
.y12_c00079{bottom:814.080000pt;}
.yd_c00079{bottom:814.720000pt;}
.y10_c00079{bottom:816.000000pt;}
.y11_c00079{bottom:816.640000pt;}
.y8_c00079{bottom:851.200000pt;}
.ya_c00079{bottom:851.840000pt;}
.y7_c00079{bottom:852.480000pt;}
.y9_c00079{bottom:853.760000pt;}
.yb_c00079{bottom:854.400000pt;}
.yc_c00079{bottom:855.040000pt;}
.y4_c00079{bottom:889.600000pt;}
.y1_c00079{bottom:890.240000pt;}
.y2_c00079{bottom:890.880000pt;}
.y3_c00079{bottom:891.520000pt;}
.y5_c00079{bottom:892.160000pt;}
.y6_c00079{bottom:892.800000pt;}
.h6_c00079{height:27.645000pt;}
.h9_c00079{height:29.948750pt;}
.h10_c00079{height:32.252500pt;}
.h11_c00079{height:34.556250pt;}
.h2_c00079{height:36.860000pt;}
.h5_c00079{height:39.163750pt;}
.h3_c00079{height:41.467500pt;}
.h7_c00079{height:43.771250pt;}
.ha_c00079{height:46.075000pt;}
.h4_c00079{height:48.378750pt;}
.hb_c00079{height:50.682500pt;}
.he_c00079{height:52.986250pt;}
.hd_c00079{height:53.498750pt;}
.h8_c00079{height:55.290000pt;}
.hf_c00079{height:57.593750pt;}
.hc_c00079{height:59.897500pt;}
.h0_c00079{height:1024.640000pt;}
.h1_c00079{height:1024.666667pt;}
.w1_c00079{width:718.666667pt;}
.w0_c00079{width:718.720000pt;}
.x0_c00079{left:0.000000pt;}
.x12_c00079{left:75.520000pt;}
.x1_c00079{left:76.800000pt;}
.x36_c00079{left:95.360000pt;}
.x2_c00079{left:105.600000pt;}
.x4d_c00079{left:113.280000pt;}
.x33_c00079{left:123.520000pt;}
.x1e_c00079{left:124.800000pt;}
.x3e_c00079{left:133.120000pt;}
.x3_c00079{left:134.400000pt;}
.x4e_c00079{left:142.080000pt;}
.x3f_c00079{left:151.680000pt;}
.x1f_c00079{left:152.960000pt;}
.x49_c00079{left:161.280000pt;}
.x2e_c00079{left:170.880000pt;}
.x24_c00079{left:172.800000pt;}
.x46_c00079{left:180.480000pt;}
.x19_c00079{left:181.760000pt;}
.x25_c00079{left:190.720000pt;}
.x39_c00079{left:199.680000pt;}
.xb_c00079{left:200.960000pt;}
.x4b_c00079{left:209.280000pt;}
.x4_c00079{left:210.560000pt;}
.x26_c00079{left:218.880000pt;}
.x13_c00079{left:229.120000pt;}
.x40_c00079{left:238.720000pt;}
.x5_c00079{left:248.320000pt;}
.x34_c00079{left:257.280000pt;}
.x27_c00079{left:258.560000pt;}
.x3a_c00079{left:266.880000pt;}
.x14_c00079{left:277.120000pt;}
.x20_c00079{left:286.720000pt;}
.x41_c00079{left:295.680000pt;}
.x37_c00079{left:305.280000pt;}
.x15_c00079{left:306.560000pt;}
.x6_c00079{left:324.480000pt;}
.x28_c00079{left:334.720000pt;}
.xc_c00079{left:344.320000pt;}
.x1a_c00079{left:353.280000pt;}
.x29_c00079{left:362.880000pt;}
.x3b_c00079{left:372.480000pt;}
.x2f_c00079{left:373.760000pt;}
.x7_c00079{left:382.720000pt;}
.x2a_c00079{left:391.680000pt;}
.x16_c00079{left:392.960000pt;}
.x35_c00079{left:401.920000pt;}
.x42_c00079{left:410.880000pt;}
.x38_c00079{left:420.480000pt;}
.x4f_c00079{left:430.080000pt;}
.x21_c00079{left:431.360000pt;}
.xd_c00079{left:440.320000pt;}
.x43_c00079{left:447.360000pt;}
.x8_c00079{left:449.280000pt;}
.x47_c00079{left:458.240000pt;}
.x17_c00079{left:459.520000pt;}
.x30_c00079{left:469.120000pt;}
.xe_c00079{left:478.080000pt;}
.x4a_c00079{left:487.680000pt;}
.x9_c00079{left:488.960000pt;}
.x31_c00079{left:497.280000pt;}
.x48_c00079{left:506.880000pt;}
.x18_c00079{left:517.120000pt;}
.x1b_c00079{left:526.080000pt;}
.x4c_c00079{left:534.400000pt;}
.x22_c00079{left:536.320000pt;}
.x2b_c00079{left:545.920000pt;}
.x32_c00079{left:554.880000pt;}
.xf_c00079{left:556.160000pt;}
.x50_c00079{left:563.840000pt;}
.x1c_c00079{left:565.120000pt;}
.x51_c00079{left:573.440000pt;}
.x2c_c00079{left:576.000000pt;}
.x3c_c00079{left:583.680000pt;}
.x10_c00079{left:584.960000pt;}
.x1d_c00079{left:593.280000pt;}
.x44_c00079{left:594.560000pt;}
.x2d_c00079{left:604.160000pt;}
.x11_c00079{left:612.480000pt;}
.xa_c00079{left:613.760000pt;}
.x45_c00079{left:622.080000pt;}
.x3d_c00079{left:624.000000pt;}
.x23_c00079{left:632.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9c1295ff2c813ebd38cea3cc.woff2')format("woff");}.ff1_c00080{font-family:ff1_c00080;line-height:1.109863;font-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_c00080{transform:matrix(0.229625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229625,0.000000,0.000000,0.250000,0,0);}
.m5_c00080{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m20_c00080{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);}
.m2c_c00080{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.ma_c00080{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);}
.m3f_c00080{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m15_c00080{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00080{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2e_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);}
.m31_c00080{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m52_c00080{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m36_c00080{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m33_c00080{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mb_c00080{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m37_c00080{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m0_c00080{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m8_c00080{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);}
.m32_c00080{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);}
.m48_c00080{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);}
.m58_c00080{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00080{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m11_c00080{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.me_c00080{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);}
.m47_c00080{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m46_c00080{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m6_c00080{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m14_c00080{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_c00080{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m13_c00080{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m39_c00080{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);}
.m2f_c00080{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);}
.m2a_c00080{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);}
.m44_c00080{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m30_c00080{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);}
.m4e_c00080{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);}
.m22_c00080{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);}
.m4_c00080{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m40_c00080{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00080{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m56_c00080{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);}
.m10_c00080{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m23_c00080{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);}
.m41_c00080{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m3_c00080{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);}
.m4c_c00080{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m55_c00080{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m35_c00080{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m12_c00080{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);}
.m38_c00080{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00080{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00080{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m43_c00080{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);}
.m3e_c00080{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m51_c00080{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m27_c00080{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00080{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m28_c00080{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);}
.m21_c00080{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m34_c00080{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m2_c00080{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00080{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m9_c00080{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.mf_c00080{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m1_c00080{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00080{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m50_c00080{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00080{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);}
.m45_c00080{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.mc_c00080{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m29_c00080{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m57_c00080{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m25_c00080{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);}
.m42_c00080{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.md_c00080{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m54_c00080{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m59_c00080{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00080{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);}
.m1f_c00080{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m7_c00080{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00080{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m24_c00080{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m49_c00080{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m19_c00080{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00080{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m17_c00080{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);}
.m26_c00080{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);}
.m1d_c00080{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m18_c00080{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00080{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m53_c00080{transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);}
.v2_c00080{vertical-align:-8.640000px;}
.v0_c00080{vertical-align:0.000000px;}
.v1_c00080{vertical-align:8.640000px;}
.ls0_c00080{letter-spacing:0.000000px;}
.sc__c00080{text-shadow:none;}
.sc0_c00080{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00080{-webkit-text-stroke:0px transparent;}
.sc0_c00080{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00080{word-spacing:-7.512240px;}
.ws0_c00080{word-spacing:-6.641520px;}
.ws2_c00080{word-spacing:0.000000px;}
.fc0_c00080{color:transparent;}
.fs8_c00080{font-size:34.560000px;}
.fs9_c00080{font-size:37.440000px;}
.fsb_c00080{font-size:43.200000px;}
.fs3_c00080{font-size:46.080000px;}
.fs1_c00080{font-size:48.960000px;}
.fs5_c00080{font-size:51.840000px;}
.fs4_c00080{font-size:54.720000px;}
.fs7_c00080{font-size:57.600000px;}
.fs2_c00080{font-size:60.480000px;}
.fs6_c00080{font-size:63.360000px;}
.fsd_c00080{font-size:66.240000px;}
.fsa_c00080{font-size:69.120000px;}
.fs0_c00080{font-size:72.000000px;}
.fsc_c00080{font-size:74.880000px;}
.y0_c00080{bottom:0.000000px;}
.y6a_c00080{bottom:66.240000px;}
.y68_c00080{bottom:66.960000px;}
.y6b_c00080{bottom:67.680000px;}
.y69_c00080{bottom:68.400000px;}
.y67_c00080{bottom:69.840000px;}
.y66_c00080{bottom:108.000000px;}
.y65_c00080{bottom:108.720000px;}
.y64_c00080{bottom:109.440000px;}
.y61_c00080{bottom:110.880000px;}
.y63_c00080{bottom:111.600000px;}
.y62_c00080{bottom:112.320000px;}
.y60_c00080{bottom:113.760000px;}
.y5d_c00080{bottom:151.200000px;}
.y5e_c00080{bottom:151.920000px;}
.y5f_c00080{bottom:154.080000px;}
.y5c_c00080{bottom:154.800000px;}
.y58_c00080{bottom:205.200000px;}
.y5b_c00080{bottom:206.640000px;}
.y5a_c00080{bottom:207.360000px;}
.y59_c00080{bottom:208.080000px;}
.y57_c00080{bottom:208.800000px;}
.y55_c00080{bottom:246.960000px;}
.y54_c00080{bottom:247.680000px;}
.y52_c00080{bottom:248.400000px;}
.y56_c00080{bottom:249.840000px;}
.y53_c00080{bottom:250.560000px;}
.y51_c00080{bottom:251.280000px;}
.y4f_c00080{bottom:289.440000px;}
.y4e_c00080{bottom:290.880000px;}
.y50_c00080{bottom:292.320000px;}
.y4d_c00080{bottom:293.040000px;}
.y4c_c00080{bottom:293.760000px;}
.y4b_c00080{bottom:333.360000px;}
.y4a_c00080{bottom:335.520000px;}
.y49_c00080{bottom:336.240000px;}
.y48_c00080{bottom:336.960000px;}
.y45_c00080{bottom:375.840000px;}
.y46_c00080{bottom:376.560000px;}
.y47_c00080{bottom:378.000000px;}
.y44_c00080{bottom:378.720000px;}
.y43_c00080{bottom:417.600000px;}
.y3e_c00080{bottom:418.320000px;}
.y41_c00080{bottom:419.040000px;}
.y40_c00080{bottom:420.480000px;}
.y3f_c00080{bottom:421.200000px;}
.y42_c00080{bottom:421.920000px;}
.y3c_c00080{bottom:461.520000px;}
.y3d_c00080{bottom:463.680000px;}
.y3a_c00080{bottom:503.280000px;}
.y3b_c00080{bottom:504.000000px;}
.y38_c00080{bottom:506.160000px;}
.y39_c00080{bottom:506.880000px;}
.y33_c00080{bottom:545.760000px;}
.y35_c00080{bottom:546.480000px;}
.y37_c00080{bottom:547.200000px;}
.y32_c00080{bottom:547.920000px;}
.y34_c00080{bottom:548.640000px;}
.y36_c00080{bottom:549.360000px;}
.y30_c00080{bottom:588.240000px;}
.y31_c00080{bottom:588.960000px;}
.y2e_c00080{bottom:591.120000px;}
.y2f_c00080{bottom:591.840000px;}
.y2d_c00080{bottom:631.440000px;}
.y2b_c00080{bottom:632.160000px;}
.y2a_c00080{bottom:634.320000px;}
.y2c_c00080{bottom:635.040000px;}
.y26_c00080{bottom:684.000000px;}
.y27_c00080{bottom:684.720000px;}
.y29_c00080{bottom:685.440000px;}
.y28_c00080{bottom:687.600000px;}
.y22_c00080{bottom:727.200000px;}
.y24_c00080{bottom:727.920000px;}
.y25_c00080{bottom:728.640000px;}
.y21_c00080{bottom:729.360000px;}
.y23_c00080{bottom:730.800000px;}
.y1e_c00080{bottom:769.680000px;}
.y1d_c00080{bottom:770.400000px;}
.y1c_c00080{bottom:772.560000px;}
.y20_c00080{bottom:773.280000px;}
.y1f_c00080{bottom:774.000000px;}
.y1a_c00080{bottom:813.600000px;}
.y17_c00080{bottom:814.320000px;}
.y19_c00080{bottom:815.040000px;}
.y18_c00080{bottom:815.760000px;}
.y1b_c00080{bottom:816.480000px;}
.y16_c00080{bottom:856.800000px;}
.y13_c00080{bottom:858.240000px;}
.y14_c00080{bottom:858.960000px;}
.y15_c00080{bottom:859.680000px;}
.y10_c00080{bottom:910.080000px;}
.y11_c00080{bottom:910.800000px;}
.y12_c00080{bottom:911.520000px;}
.yb_c00080{bottom:951.120000px;}
.yd_c00080{bottom:951.840000px;}
.y9_c00080{bottom:952.560000px;}
.y8_c00080{bottom:953.280000px;}
.ya_c00080{bottom:954.000000px;}
.yc_c00080{bottom:954.720000px;}
.ye_c00080{bottom:955.440000px;}
.yf_c00080{bottom:956.160000px;}
.y3_c00080{bottom:993.600000px;}
.y5_c00080{bottom:995.040000px;}
.y2_c00080{bottom:995.760000px;}
.y7_c00080{bottom:996.480000px;}
.y4_c00080{bottom:997.200000px;}
.y6_c00080{bottom:997.920000px;}
.y1_c00080{bottom:1073.520000px;}
.ha_c00080{height:31.100625px;}
.hb_c00080{height:33.692344px;}
.hd_c00080{height:38.875781px;}
.h5_c00080{height:41.467500px;}
.h3_c00080{height:44.059219px;}
.h7_c00080{height:46.650937px;}
.h6_c00080{height:49.242656px;}
.h9_c00080{height:51.834375px;}
.h4_c00080{height:54.426094px;}
.h8_c00080{height:57.017812px;}
.hf_c00080{height:59.609531px;}
.hc_c00080{height:62.201250px;}
.h2_c00080{height:64.792969px;}
.he_c00080{height:67.384687px;}
.h1_c00080{height:1150.500000px;}
.h0_c00080{height:1150.560000px;}
.w1_c00080{width:806.250000px;}
.w0_c00080{width:806.400000px;}
.x0_c00080{left:0.000000px;}
.x10_c00080{left:84.240000px;}
.x2_c00080{left:85.680000px;}
.x50_c00080{left:87.120000px;}
.x3c_c00080{left:116.640000px;}
.x37_c00080{left:118.080000px;}
.x11_c00080{left:128.160000px;}
.x19_c00080{left:138.960000px;}
.x3e_c00080{left:140.400000px;}
.x38_c00080{left:149.760000px;}
.x3_c00080{left:160.560000px;}
.x21_c00080{left:170.640000px;}
.x4c_c00080{left:172.080000px;}
.x1a_c00080{left:181.440000px;}
.x2c_c00080{left:184.320000px;}
.x1c_c00080{left:193.680000px;}
.x39_c00080{left:203.760000px;}
.x47_c00080{left:205.200000px;}
.x30_c00080{left:213.840000px;}
.x4_c00080{left:225.360000px;}
.x1b_c00080{left:236.160000px;}
.x31_c00080{left:237.600000px;}
.x34_c00080{left:247.680000px;}
.x5_c00080{left:257.040000px;}
.x42_c00080{left:258.480000px;}
.x12_c00080{left:267.840000px;}
.x48_c00080{left:269.280000px;}
.x1d_c00080{left:278.640000px;}
.x22_c00080{left:289.440000px;}
.x27_c00080{left:300.240000px;}
.x6_c00080{left:309.600000px;}
.x3a_c00080{left:311.760000px;}
.x49_c00080{left:321.840000px;}
.x32_c00080{left:324.000000px;}
.x3d_c00080{left:332.640000px;}
.x28_c00080{left:334.800000px;}
.x2d_c00080{left:344.160000px;}
.x7_c00080{left:354.240000px;}
.x13_c00080{left:365.040000px;}
.x40_c00080{left:375.840000px;}
.x8_c00080{left:385.920000px;}
.x51_c00080{left:388.080000px;}
.x1e_c00080{left:398.160000px;}
.x14_c00080{left:407.520000px;}
.x29_c00080{left:410.400000px;}
.x35_c00080{left:418.320000px;}
.x43_c00080{left:420.480000px;}
.x33_c00080{left:429.840000px;}
.x4e_c00080{left:431.280000px;}
.x9_c00080{left:439.920000px;}
.x44_c00080{left:441.360000px;}
.x1f_c00080{left:451.440000px;}
.x23_c00080{left:461.520000px;}
.x4a_c00080{left:462.960000px;}
.x45_c00080{left:473.040000px;}
.x15_c00080{left:483.840000px;}
.x52_c00080{left:485.280000px;}
.x24_c00080{left:494.640000px;}
.x56_c00080{left:496.080000px;}
.xa_c00080{left:506.160000px;}
.x16_c00080{left:516.240000px;}
.x46_c00080{left:527.040000px;}
.x2e_c00080{left:537.840000px;}
.x4d_c00080{left:540.000000px;}
.x41_c00080{left:548.640000px;}
.x53_c00080{left:550.080000px;}
.x3f_c00080{left:559.440000px;}
.x3b_c00080{left:569.520000px;}
.xb_c00080{left:571.680000px;}
.x25_c00080{left:581.040000px;}
.xc_c00080{left:602.640000px;}
.x36_c00080{left:613.440000px;}
.x4f_c00080{left:624.240000px;}
.xd_c00080{left:625.680000px;}
.x4b_c00080{left:634.320000px;}
.x2a_c00080{left:635.760000px;}
.x54_c00080{left:637.200000px;}
.x20_c00080{left:645.840000px;}
.x2f_c00080{left:648.720000px;}
.xe_c00080{left:655.920000px;}
.x55_c00080{left:657.360000px;}
.x17_c00080{left:668.160000px;}
.x26_c00080{left:689.760000px;}
.x57_c00080{left:691.200000px;}
.x18_c00080{left:699.840000px;}
.x2b_c00080{left:701.280000px;}
.xf_c00080{left:711.360000px;}
.x1_c00080{left:735.840000px;}
@media print{
.v2_c00080{vertical-align:-7.680000pt;}
.v0_c00080{vertical-align:0.000000pt;}
.v1_c00080{vertical-align:7.680000pt;}
.ls0_c00080{letter-spacing:0.000000pt;}
.ws1_c00080{word-spacing:-6.677547pt;}
.ws0_c00080{word-spacing:-5.903573pt;}
.ws2_c00080{word-spacing:0.000000pt;}
.fs8_c00080{font-size:30.720000pt;}
.fs9_c00080{font-size:33.280000pt;}
.fsb_c00080{font-size:38.400000pt;}
.fs3_c00080{font-size:40.960000pt;}
.fs1_c00080{font-size:43.520000pt;}
.fs5_c00080{font-size:46.080000pt;}
.fs4_c00080{font-size:48.640000pt;}
.fs7_c00080{font-size:51.200000pt;}
.fs2_c00080{font-size:53.760000pt;}
.fs6_c00080{font-size:56.320000pt;}
.fsd_c00080{font-size:58.880000pt;}
.fsa_c00080{font-size:61.440000pt;}
.fs0_c00080{font-size:64.000000pt;}
.fsc_c00080{font-size:66.560000pt;}
.y0_c00080{bottom:0.000000pt;}
.y6a_c00080{bottom:58.880000pt;}
.y68_c00080{bottom:59.520000pt;}
.y6b_c00080{bottom:60.160000pt;}
.y69_c00080{bottom:60.800000pt;}
.y67_c00080{bottom:62.080000pt;}
.y66_c00080{bottom:96.000000pt;}
.y65_c00080{bottom:96.640000pt;}
.y64_c00080{bottom:97.280000pt;}
.y61_c00080{bottom:98.560000pt;}
.y63_c00080{bottom:99.200000pt;}
.y62_c00080{bottom:99.840000pt;}
.y60_c00080{bottom:101.120000pt;}
.y5d_c00080{bottom:134.400000pt;}
.y5e_c00080{bottom:135.040000pt;}
.y5f_c00080{bottom:136.960000pt;}
.y5c_c00080{bottom:137.600000pt;}
.y58_c00080{bottom:182.400000pt;}
.y5b_c00080{bottom:183.680000pt;}
.y5a_c00080{bottom:184.320000pt;}
.y59_c00080{bottom:184.960000pt;}
.y57_c00080{bottom:185.600000pt;}
.y55_c00080{bottom:219.520000pt;}
.y54_c00080{bottom:220.160000pt;}
.y52_c00080{bottom:220.800000pt;}
.y56_c00080{bottom:222.080000pt;}
.y53_c00080{bottom:222.720000pt;}
.y51_c00080{bottom:223.360000pt;}
.y4f_c00080{bottom:257.280000pt;}
.y4e_c00080{bottom:258.560000pt;}
.y50_c00080{bottom:259.840000pt;}
.y4d_c00080{bottom:260.480000pt;}
.y4c_c00080{bottom:261.120000pt;}
.y4b_c00080{bottom:296.320000pt;}
.y4a_c00080{bottom:298.240000pt;}
.y49_c00080{bottom:298.880000pt;}
.y48_c00080{bottom:299.520000pt;}
.y45_c00080{bottom:334.080000pt;}
.y46_c00080{bottom:334.720000pt;}
.y47_c00080{bottom:336.000000pt;}
.y44_c00080{bottom:336.640000pt;}
.y43_c00080{bottom:371.200000pt;}
.y3e_c00080{bottom:371.840000pt;}
.y41_c00080{bottom:372.480000pt;}
.y40_c00080{bottom:373.760000pt;}
.y3f_c00080{bottom:374.400000pt;}
.y42_c00080{bottom:375.040000pt;}
.y3c_c00080{bottom:410.240000pt;}
.y3d_c00080{bottom:412.160000pt;}
.y3a_c00080{bottom:447.360000pt;}
.y3b_c00080{bottom:448.000000pt;}
.y38_c00080{bottom:449.920000pt;}
.y39_c00080{bottom:450.560000pt;}
.y33_c00080{bottom:485.120000pt;}
.y35_c00080{bottom:485.760000pt;}
.y37_c00080{bottom:486.400000pt;}
.y32_c00080{bottom:487.040000pt;}
.y34_c00080{bottom:487.680000pt;}
.y36_c00080{bottom:488.320000pt;}
.y30_c00080{bottom:522.880000pt;}
.y31_c00080{bottom:523.520000pt;}
.y2e_c00080{bottom:525.440000pt;}
.y2f_c00080{bottom:526.080000pt;}
.y2d_c00080{bottom:561.280000pt;}
.y2b_c00080{bottom:561.920000pt;}
.y2a_c00080{bottom:563.840000pt;}
.y2c_c00080{bottom:564.480000pt;}
.y26_c00080{bottom:608.000000pt;}
.y27_c00080{bottom:608.640000pt;}
.y29_c00080{bottom:609.280000pt;}
.y28_c00080{bottom:611.200000pt;}
.y22_c00080{bottom:646.400000pt;}
.y24_c00080{bottom:647.040000pt;}
.y25_c00080{bottom:647.680000pt;}
.y21_c00080{bottom:648.320000pt;}
.y23_c00080{bottom:649.600000pt;}
.y1e_c00080{bottom:684.160000pt;}
.y1d_c00080{bottom:684.800000pt;}
.y1c_c00080{bottom:686.720000pt;}
.y20_c00080{bottom:687.360000pt;}
.y1f_c00080{bottom:688.000000pt;}
.y1a_c00080{bottom:723.200000pt;}
.y17_c00080{bottom:723.840000pt;}
.y19_c00080{bottom:724.480000pt;}
.y18_c00080{bottom:725.120000pt;}
.y1b_c00080{bottom:725.760000pt;}
.y16_c00080{bottom:761.600000pt;}
.y13_c00080{bottom:762.880000pt;}
.y14_c00080{bottom:763.520000pt;}
.y15_c00080{bottom:764.160000pt;}
.y10_c00080{bottom:808.960000pt;}
.y11_c00080{bottom:809.600000pt;}
.y12_c00080{bottom:810.240000pt;}
.yb_c00080{bottom:845.440000pt;}
.yd_c00080{bottom:846.080000pt;}
.y9_c00080{bottom:846.720000pt;}
.y8_c00080{bottom:847.360000pt;}
.ya_c00080{bottom:848.000000pt;}
.yc_c00080{bottom:848.640000pt;}
.ye_c00080{bottom:849.280000pt;}
.yf_c00080{bottom:849.920000pt;}
.y3_c00080{bottom:883.200000pt;}
.y5_c00080{bottom:884.480000pt;}
.y2_c00080{bottom:885.120000pt;}
.y7_c00080{bottom:885.760000pt;}
.y4_c00080{bottom:886.400000pt;}
.y6_c00080{bottom:887.040000pt;}
.y1_c00080{bottom:954.240000pt;}
.ha_c00080{height:27.645000pt;}
.hb_c00080{height:29.948750pt;}
.hd_c00080{height:34.556250pt;}
.h5_c00080{height:36.860000pt;}
.h3_c00080{height:39.163750pt;}
.h7_c00080{height:41.467500pt;}
.h6_c00080{height:43.771250pt;}
.h9_c00080{height:46.075000pt;}
.h4_c00080{height:48.378750pt;}
.h8_c00080{height:50.682500pt;}
.hf_c00080{height:52.986250pt;}
.hc_c00080{height:55.290000pt;}
.h2_c00080{height:57.593750pt;}
.he_c00080{height:59.897500pt;}
.h1_c00080{height:1022.666667pt;}
.h0_c00080{height:1022.720000pt;}
.w1_c00080{width:716.666667pt;}
.w0_c00080{width:716.800000pt;}
.x0_c00080{left:0.000000pt;}
.x10_c00080{left:74.880000pt;}
.x2_c00080{left:76.160000pt;}
.x50_c00080{left:77.440000pt;}
.x3c_c00080{left:103.680000pt;}
.x37_c00080{left:104.960000pt;}
.x11_c00080{left:113.920000pt;}
.x19_c00080{left:123.520000pt;}
.x3e_c00080{left:124.800000pt;}
.x38_c00080{left:133.120000pt;}
.x3_c00080{left:142.720000pt;}
.x21_c00080{left:151.680000pt;}
.x4c_c00080{left:152.960000pt;}
.x1a_c00080{left:161.280000pt;}
.x2c_c00080{left:163.840000pt;}
.x1c_c00080{left:172.160000pt;}
.x39_c00080{left:181.120000pt;}
.x47_c00080{left:182.400000pt;}
.x30_c00080{left:190.080000pt;}
.x4_c00080{left:200.320000pt;}
.x1b_c00080{left:209.920000pt;}
.x31_c00080{left:211.200000pt;}
.x34_c00080{left:220.160000pt;}
.x5_c00080{left:228.480000pt;}
.x42_c00080{left:229.760000pt;}
.x12_c00080{left:238.080000pt;}
.x48_c00080{left:239.360000pt;}
.x1d_c00080{left:247.680000pt;}
.x22_c00080{left:257.280000pt;}
.x27_c00080{left:266.880000pt;}
.x6_c00080{left:275.200000pt;}
.x3a_c00080{left:277.120000pt;}
.x49_c00080{left:286.080000pt;}
.x32_c00080{left:288.000000pt;}
.x3d_c00080{left:295.680000pt;}
.x28_c00080{left:297.600000pt;}
.x2d_c00080{left:305.920000pt;}
.x7_c00080{left:314.880000pt;}
.x13_c00080{left:324.480000pt;}
.x40_c00080{left:334.080000pt;}
.x8_c00080{left:343.040000pt;}
.x51_c00080{left:344.960000pt;}
.x1e_c00080{left:353.920000pt;}
.x14_c00080{left:362.240000pt;}
.x29_c00080{left:364.800000pt;}
.x35_c00080{left:371.840000pt;}
.x43_c00080{left:373.760000pt;}
.x33_c00080{left:382.080000pt;}
.x4e_c00080{left:383.360000pt;}
.x9_c00080{left:391.040000pt;}
.x44_c00080{left:392.320000pt;}
.x1f_c00080{left:401.280000pt;}
.x23_c00080{left:410.240000pt;}
.x4a_c00080{left:411.520000pt;}
.x45_c00080{left:420.480000pt;}
.x15_c00080{left:430.080000pt;}
.x52_c00080{left:431.360000pt;}
.x24_c00080{left:439.680000pt;}
.x56_c00080{left:440.960000pt;}
.xa_c00080{left:449.920000pt;}
.x16_c00080{left:458.880000pt;}
.x46_c00080{left:468.480000pt;}
.x2e_c00080{left:478.080000pt;}
.x4d_c00080{left:480.000000pt;}
.x41_c00080{left:487.680000pt;}
.x53_c00080{left:488.960000pt;}
.x3f_c00080{left:497.280000pt;}
.x3b_c00080{left:506.240000pt;}
.xb_c00080{left:508.160000pt;}
.x25_c00080{left:516.480000pt;}
.xc_c00080{left:535.680000pt;}
.x36_c00080{left:545.280000pt;}
.x4f_c00080{left:554.880000pt;}
.xd_c00080{left:556.160000pt;}
.x4b_c00080{left:563.840000pt;}
.x2a_c00080{left:565.120000pt;}
.x54_c00080{left:566.400000pt;}
.x20_c00080{left:574.080000pt;}
.x2f_c00080{left:576.640000pt;}
.xe_c00080{left:583.040000pt;}
.x55_c00080{left:584.320000pt;}
.x17_c00080{left:593.920000pt;}
.x26_c00080{left:613.120000pt;}
.x57_c00080{left:614.400000pt;}
.x18_c00080{left:622.080000pt;}
.x2b_c00080{left:623.360000pt;}
.xf_c00080{left:632.320000pt;}
.x1_c00080{left:654.080000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f3108b42e632aa31b11cf617.woff2')format("woff");}.ff1_c00081{font-family:ff1_c00081;line-height:1.109863;font-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_c00081{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);}
.m48_c00081{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m55_c00081{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m22_c00081{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m58_c00081{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m0_c00081{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.ma_c00081{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m41_c00081{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00081{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m56_c00081{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m16_c00081{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m29_c00081{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00081{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);}
.m2d_c00081{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);}
.m3c_c00081{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.mc_c00081{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m19_c00081{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);}
.m27_c00081{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00081{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m15_c00081{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m5_c00081{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);}
.m1c_c00081{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);}
.m39_c00081{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m54_c00081{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.md_c00081{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);}
.m7_c00081{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);}
.m10_c00081{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);}
.m40_c00081{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1_c00081{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m2_c00081{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00081{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);}
.m4d_c00081{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);}
.m57_c00081{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);}
.m38_c00081{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m8_c00081{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m31_c00081{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m21_c00081{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m20_c00081{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);}
.m30_c00081{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m53_c00081{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);}
.m2e_c00081{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);}
.m18_c00081{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00081{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m14_c00081{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m37_c00081{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);}
.m4c_c00081{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00081{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00081{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);}
.m2c_c00081{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m23_c00081{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);}
.m1b_c00081{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m50_c00081{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00081{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m17_c00081{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);}
.m3a_c00081{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m36_c00081{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m45_c00081{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m12_c00081{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);}
.m51_c00081{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m35_c00081{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m28_c00081{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m59_c00081{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);}
.m3_c00081{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);}
.m4_c00081{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m43_c00081{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);}
.m33_c00081{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m52_c00081{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m34_c00081{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);}
.m25_c00081{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m26_c00081{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.mf_c00081{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00081{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00081{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.mb_c00081{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);}
.m4a_c00081{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m42_c00081{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m6_c00081{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m13_c00081{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m46_c00081{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m47_c00081{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00081{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m44_c00081{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);}
.m49_c00081{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00081{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m11_c00081{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00081{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00081{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.m32_c00081{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m24_c00081{transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);}
.m9_c00081{transform:matrix(0.912500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.912500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.912500,0.000000,0.000000,0.250000,0,0);}
.v0_c00081{vertical-align:0.000000px;}
.v1_c00081{vertical-align:8.640000px;}
.ls0_c00081{letter-spacing:0.000000px;}
.sc__c00081{text-shadow:none;}
.sc0_c00081{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00081{-webkit-text-stroke:0px transparent;}
.sc0_c00081{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00081{word-spacing:-4.768560px;}
.ws1_c00081{word-spacing:0.000000px;}
.fc0_c00081{color:transparent;}
.fs6_c00081{font-size:25.920000px;}
.fs7_c00081{font-size:34.560000px;}
.fs4_c00081{font-size:37.440000px;}
.fsd_c00081{font-size:40.320000px;}
.fsf_c00081{font-size:43.200000px;}
.fsa_c00081{font-size:46.080000px;}
.fs2_c00081{font-size:48.960000px;}
.fs3_c00081{font-size:51.840000px;}
.fs9_c00081{font-size:54.720000px;}
.fsc_c00081{font-size:57.600000px;}
.fs1_c00081{font-size:60.480000px;}
.fsb_c00081{font-size:63.360000px;}
.fs5_c00081{font-size:66.240000px;}
.fs8_c00081{font-size:69.120000px;}
.fs0_c00081{font-size:72.000000px;}
.fse_c00081{font-size:74.880000px;}
.y0_c00081{bottom:0.000000px;}
.y6f_c00081{bottom:80.640000px;}
.y71_c00081{bottom:81.360000px;}
.y70_c00081{bottom:82.080000px;}
.y6e_c00081{bottom:83.520000px;}
.y6c_c00081{bottom:122.400000px;}
.y6d_c00081{bottom:123.840000px;}
.y6a_c00081{bottom:124.560000px;}
.y6b_c00081{bottom:125.280000px;}
.y68_c00081{bottom:126.000000px;}
.y69_c00081{bottom:126.720000px;}
.y66_c00081{bottom:164.880000px;}
.y67_c00081{bottom:166.320000px;}
.y65_c00081{bottom:167.040000px;}
.y64_c00081{bottom:167.760000px;}
.y63_c00081{bottom:168.480000px;}
.y62_c00081{bottom:170.640000px;}
.y5e_c00081{bottom:207.360000px;}
.y5f_c00081{bottom:208.080000px;}
.y61_c00081{bottom:209.520000px;}
.y60_c00081{bottom:210.240000px;}
.y5d_c00081{bottom:210.960000px;}
.y5c_c00081{bottom:263.520000px;}
.y5b_c00081{bottom:264.240000px;}
.y5a_c00081{bottom:265.680000px;}
.y58_c00081{bottom:302.400000px;}
.y55_c00081{bottom:303.840000px;}
.y54_c00081{bottom:304.560000px;}
.y59_c00081{bottom:305.280000px;}
.y57_c00081{bottom:306.000000px;}
.y56_c00081{bottom:306.720000px;}
.y53_c00081{bottom:307.440000px;}
.y52_c00081{bottom:345.600000px;}
.y50_c00081{bottom:346.320000px;}
.y51_c00081{bottom:348.480000px;}
.y4f_c00081{bottom:349.200000px;}
.y4e_c00081{bottom:349.920000px;}
.y4b_c00081{bottom:389.520000px;}
.y4d_c00081{bottom:390.960000px;}
.y4c_c00081{bottom:391.680000px;}
.y4a_c00081{bottom:392.400000px;}
.y46_c00081{bottom:431.280000px;}
.y48_c00081{bottom:432.000000px;}
.y49_c00081{bottom:433.440000px;}
.y47_c00081{bottom:434.160000px;}
.y45_c00081{bottom:434.880000px;}
.y44_c00081{bottom:435.600000px;}
.y43_c00081{bottom:473.760000px;}
.y40_c00081{bottom:474.480000px;}
.y42_c00081{bottom:475.920000px;}
.y41_c00081{bottom:476.640000px;}
.y3f_c00081{bottom:477.360000px;}
.y3d_c00081{bottom:516.240000px;}
.y3b_c00081{bottom:516.960000px;}
.y3c_c00081{bottom:517.680000px;}
.y3a_c00081{bottom:519.840000px;}
.y3e_c00081{bottom:520.560000px;}
.y38_c00081{bottom:559.440000px;}
.y39_c00081{bottom:561.600000px;}
.y36_c00081{bottom:562.320000px;}
.y37_c00081{bottom:563.040000px;}
.y34_c00081{bottom:601.920000px;}
.y35_c00081{bottom:602.640000px;}
.y32_c00081{bottom:604.800000px;}
.y33_c00081{bottom:605.520000px;}
.y2e_c00081{bottom:645.120000px;}
.y31_c00081{bottom:645.840000px;}
.y30_c00081{bottom:646.560000px;}
.y2d_c00081{bottom:647.280000px;}
.y2f_c00081{bottom:648.000000px;}
.y29_c00081{bottom:687.600000px;}
.y2b_c00081{bottom:689.760000px;}
.y2a_c00081{bottom:690.480000px;}
.y2c_c00081{bottom:691.200000px;}
.y27_c00081{bottom:743.040000px;}
.y28_c00081{bottom:743.760000px;}
.y20_c00081{bottom:783.360000px;}
.y25_c00081{bottom:784.080000px;}
.y23_c00081{bottom:784.800000px;}
.y21_c00081{bottom:785.520000px;}
.y22_c00081{bottom:786.240000px;}
.y24_c00081{bottom:786.960000px;}
.y26_c00081{bottom:787.680000px;}
.y1b_c00081{bottom:825.120000px;}
.y1d_c00081{bottom:825.840000px;}
.y1e_c00081{bottom:826.560000px;}
.y1c_c00081{bottom:828.720000px;}
.y1f_c00081{bottom:829.440000px;}
.y15_c00081{bottom:866.880000px;}
.y16_c00081{bottom:867.600000px;}
.y17_c00081{bottom:868.320000px;}
.y19_c00081{bottom:869.040000px;}
.y18_c00081{bottom:871.200000px;}
.y1a_c00081{bottom:871.920000px;}
.yf_c00081{bottom:910.080000px;}
.y12_c00081{bottom:911.520000px;}
.y14_c00081{bottom:912.240000px;}
.ye_c00081{bottom:912.960000px;}
.y11_c00081{bottom:913.680000px;}
.y10_c00081{bottom:914.400000px;}
.y13_c00081{bottom:915.120000px;}
.y9_c00081{bottom:954.000000px;}
.y7_c00081{bottom:954.720000px;}
.yb_c00081{bottom:955.440000px;}
.y8_c00081{bottom:956.160000px;}
.ya_c00081{bottom:956.880000px;}
.yd_c00081{bottom:957.600000px;}
.yc_c00081{bottom:958.320000px;}
.y5_c00081{bottom:997.200000px;}
.y2_c00081{bottom:998.640000px;}
.y3_c00081{bottom:999.360000px;}
.y4_c00081{bottom:1000.080000px;}
.y6_c00081{bottom:1000.800000px;}
.y1_c00081{bottom:1070.640000px;}
.h8_c00081{height:23.325469px;}
.h9_c00081{height:31.100625px;}
.h6_c00081{height:33.692344px;}
.hf_c00081{height:36.284062px;}
.h11_c00081{height:38.875781px;}
.hc_c00081{height:41.467500px;}
.h4_c00081{height:44.059219px;}
.h5_c00081{height:46.650937px;}
.hb_c00081{height:49.242656px;}
.he_c00081{height:51.834375px;}
.h3_c00081{height:54.426094px;}
.hd_c00081{height:57.017812px;}
.h7_c00081{height:59.609531px;}
.ha_c00081{height:62.201250px;}
.h2_c00081{height:64.792969px;}
.h10_c00081{height:67.384687px;}
.h0_c00081{height:1152.720000px;}
.h1_c00081{height:1152.750000px;}
.w1_c00081{width:808.500000px;}
.w0_c00081{width:808.560000px;}
.x0_c00081{left:0.000000px;}
.x2_c00081{left:88.560000px;}
.xc_c00081{left:90.720000px;}
.x38_c00081{left:120.960000px;}
.xd_c00081{left:122.400000px;}
.x3d_c00081{left:131.760000px;}
.x27_c00081{left:143.280000px;}
.x33_c00081{left:153.360000px;}
.xe_c00081{left:154.800000px;}
.x39_c00081{left:162.720000px;}
.x2a_c00081{left:164.160000px;}
.x4a_c00081{left:165.600000px;}
.x20_c00081{left:173.520000px;}
.x28_c00081{left:177.120000px;}
.xf_c00081{left:185.760000px;}
.x2b_c00081{left:196.560000px;}
.x37_c00081{left:207.360000px;}
.x3_c00081{left:228.960000px;}
.x17_c00081{left:239.760000px;}
.x41_c00081{left:241.200000px;}
.x34_c00081{left:249.840000px;}
.x4_c00081{left:261.360000px;}
.x21_c00081{left:271.440000px;}
.x10_c00081{left:283.680000px;}
.x42_c00081{left:291.600000px;}
.x18_c00081{left:293.040000px;}
.x5_c00081{left:304.560000px;}
.x11_c00081{left:313.920000px;}
.x2c_c00081{left:315.360000px;}
.x46_c00081{left:326.160000px;}
.x22_c00081{left:336.960000px;}
.x19_c00081{left:347.760000px;}
.x49_c00081{left:358.560000px;}
.x23_c00081{left:368.640000px;}
.x4b_c00081{left:378.000000px;}
.x1a_c00081{left:380.160000px;}
.x2d_c00081{left:390.240000px;}
.x29_c00081{left:391.680000px;}
.x2f_c00081{left:401.760000px;}
.x3e_c00081{left:412.560000px;}
.x6_c00081{left:423.360000px;}
.x30_c00081{left:433.440000px;}
.x47_c00081{left:442.800000px;}
.x12_c00081{left:444.960000px;}
.x3b_c00081{left:455.040000px;}
.x2e_c00081{left:466.560000px;}
.x31_c00081{left:475.200000px;}
.x13_c00081{left:477.360000px;}
.x7_c00081{left:488.160000px;}
.x35_c00081{left:509.040000px;}
.x1b_c00081{left:519.840000px;}
.x8_c00081{left:531.360000px;}
.x43_c00081{left:540.720000px;}
.x1c_c00081{left:542.160000px;}
.x3f_c00081{left:552.960000px;}
.x32_c00081{left:563.760000px;}
.x48_c00081{left:573.120000px;}
.x1d_c00081{left:575.280000px;}
.x44_c00081{left:583.920000px;}
.x14_c00081{left:585.360000px;}
.x24_c00081{left:596.880000px;}
.x3a_c00081{left:606.240000px;}
.x1e_c00081{left:617.760000px;}
.x40_c00081{left:627.840000px;}
.x9_c00081{left:629.280000px;}
.x4c_c00081{left:639.360000px;}
.x26_c00081{left:650.160000px;}
.x45_c00081{left:660.960000px;}
.x3c_c00081{left:671.760000px;}
.x1f_c00081{left:682.560000px;}
.x36_c00081{left:693.360000px;}
.xa_c00081{left:704.880000px;}
.x15_c00081{left:714.960000px;}
.x25_c00081{left:726.480000px;}
.x1_c00081{left:732.960000px;}
.xb_c00081{left:738.720000px;}
.x16_c00081{left:747.360000px;}
@media print{
.v0_c00081{vertical-align:0.000000pt;}
.v1_c00081{vertical-align:7.680000pt;}
.ls0_c00081{letter-spacing:0.000000pt;}
.ws0_c00081{word-spacing:-4.238720pt;}
.ws1_c00081{word-spacing:0.000000pt;}
.fs6_c00081{font-size:23.040000pt;}
.fs7_c00081{font-size:30.720000pt;}
.fs4_c00081{font-size:33.280000pt;}
.fsd_c00081{font-size:35.840000pt;}
.fsf_c00081{font-size:38.400000pt;}
.fsa_c00081{font-size:40.960000pt;}
.fs2_c00081{font-size:43.520000pt;}
.fs3_c00081{font-size:46.080000pt;}
.fs9_c00081{font-size:48.640000pt;}
.fsc_c00081{font-size:51.200000pt;}
.fs1_c00081{font-size:53.760000pt;}
.fsb_c00081{font-size:56.320000pt;}
.fs5_c00081{font-size:58.880000pt;}
.fs8_c00081{font-size:61.440000pt;}
.fs0_c00081{font-size:64.000000pt;}
.fse_c00081{font-size:66.560000pt;}
.y0_c00081{bottom:0.000000pt;}
.y6f_c00081{bottom:71.680000pt;}
.y71_c00081{bottom:72.320000pt;}
.y70_c00081{bottom:72.960000pt;}
.y6e_c00081{bottom:74.240000pt;}
.y6c_c00081{bottom:108.800000pt;}
.y6d_c00081{bottom:110.080000pt;}
.y6a_c00081{bottom:110.720000pt;}
.y6b_c00081{bottom:111.360000pt;}
.y68_c00081{bottom:112.000000pt;}
.y69_c00081{bottom:112.640000pt;}
.y66_c00081{bottom:146.560000pt;}
.y67_c00081{bottom:147.840000pt;}
.y65_c00081{bottom:148.480000pt;}
.y64_c00081{bottom:149.120000pt;}
.y63_c00081{bottom:149.760000pt;}
.y62_c00081{bottom:151.680000pt;}
.y5e_c00081{bottom:184.320000pt;}
.y5f_c00081{bottom:184.960000pt;}
.y61_c00081{bottom:186.240000pt;}
.y60_c00081{bottom:186.880000pt;}
.y5d_c00081{bottom:187.520000pt;}
.y5c_c00081{bottom:234.240000pt;}
.y5b_c00081{bottom:234.880000pt;}
.y5a_c00081{bottom:236.160000pt;}
.y58_c00081{bottom:268.800000pt;}
.y55_c00081{bottom:270.080000pt;}
.y54_c00081{bottom:270.720000pt;}
.y59_c00081{bottom:271.360000pt;}
.y57_c00081{bottom:272.000000pt;}
.y56_c00081{bottom:272.640000pt;}
.y53_c00081{bottom:273.280000pt;}
.y52_c00081{bottom:307.200000pt;}
.y50_c00081{bottom:307.840000pt;}
.y51_c00081{bottom:309.760000pt;}
.y4f_c00081{bottom:310.400000pt;}
.y4e_c00081{bottom:311.040000pt;}
.y4b_c00081{bottom:346.240000pt;}
.y4d_c00081{bottom:347.520000pt;}
.y4c_c00081{bottom:348.160000pt;}
.y4a_c00081{bottom:348.800000pt;}
.y46_c00081{bottom:383.360000pt;}
.y48_c00081{bottom:384.000000pt;}
.y49_c00081{bottom:385.280000pt;}
.y47_c00081{bottom:385.920000pt;}
.y45_c00081{bottom:386.560000pt;}
.y44_c00081{bottom:387.200000pt;}
.y43_c00081{bottom:421.120000pt;}
.y40_c00081{bottom:421.760000pt;}
.y42_c00081{bottom:423.040000pt;}
.y41_c00081{bottom:423.680000pt;}
.y3f_c00081{bottom:424.320000pt;}
.y3d_c00081{bottom:458.880000pt;}
.y3b_c00081{bottom:459.520000pt;}
.y3c_c00081{bottom:460.160000pt;}
.y3a_c00081{bottom:462.080000pt;}
.y3e_c00081{bottom:462.720000pt;}
.y38_c00081{bottom:497.280000pt;}
.y39_c00081{bottom:499.200000pt;}
.y36_c00081{bottom:499.840000pt;}
.y37_c00081{bottom:500.480000pt;}
.y34_c00081{bottom:535.040000pt;}
.y35_c00081{bottom:535.680000pt;}
.y32_c00081{bottom:537.600000pt;}
.y33_c00081{bottom:538.240000pt;}
.y2e_c00081{bottom:573.440000pt;}
.y31_c00081{bottom:574.080000pt;}
.y30_c00081{bottom:574.720000pt;}
.y2d_c00081{bottom:575.360000pt;}
.y2f_c00081{bottom:576.000000pt;}
.y29_c00081{bottom:611.200000pt;}
.y2b_c00081{bottom:613.120000pt;}
.y2a_c00081{bottom:613.760000pt;}
.y2c_c00081{bottom:614.400000pt;}
.y27_c00081{bottom:660.480000pt;}
.y28_c00081{bottom:661.120000pt;}
.y20_c00081{bottom:696.320000pt;}
.y25_c00081{bottom:696.960000pt;}
.y23_c00081{bottom:697.600000pt;}
.y21_c00081{bottom:698.240000pt;}
.y22_c00081{bottom:698.880000pt;}
.y24_c00081{bottom:699.520000pt;}
.y26_c00081{bottom:700.160000pt;}
.y1b_c00081{bottom:733.440000pt;}
.y1d_c00081{bottom:734.080000pt;}
.y1e_c00081{bottom:734.720000pt;}
.y1c_c00081{bottom:736.640000pt;}
.y1f_c00081{bottom:737.280000pt;}
.y15_c00081{bottom:770.560000pt;}
.y16_c00081{bottom:771.200000pt;}
.y17_c00081{bottom:771.840000pt;}
.y19_c00081{bottom:772.480000pt;}
.y18_c00081{bottom:774.400000pt;}
.y1a_c00081{bottom:775.040000pt;}
.yf_c00081{bottom:808.960000pt;}
.y12_c00081{bottom:810.240000pt;}
.y14_c00081{bottom:810.880000pt;}
.ye_c00081{bottom:811.520000pt;}
.y11_c00081{bottom:812.160000pt;}
.y10_c00081{bottom:812.800000pt;}
.y13_c00081{bottom:813.440000pt;}
.y9_c00081{bottom:848.000000pt;}
.y7_c00081{bottom:848.640000pt;}
.yb_c00081{bottom:849.280000pt;}
.y8_c00081{bottom:849.920000pt;}
.ya_c00081{bottom:850.560000pt;}
.yd_c00081{bottom:851.200000pt;}
.yc_c00081{bottom:851.840000pt;}
.y5_c00081{bottom:886.400000pt;}
.y2_c00081{bottom:887.680000pt;}
.y3_c00081{bottom:888.320000pt;}
.y4_c00081{bottom:888.960000pt;}
.y6_c00081{bottom:889.600000pt;}
.y1_c00081{bottom:951.680000pt;}
.h8_c00081{height:20.733750pt;}
.h9_c00081{height:27.645000pt;}
.h6_c00081{height:29.948750pt;}
.hf_c00081{height:32.252500pt;}
.h11_c00081{height:34.556250pt;}
.hc_c00081{height:36.860000pt;}
.h4_c00081{height:39.163750pt;}
.h5_c00081{height:41.467500pt;}
.hb_c00081{height:43.771250pt;}
.he_c00081{height:46.075000pt;}
.h3_c00081{height:48.378750pt;}
.hd_c00081{height:50.682500pt;}
.h7_c00081{height:52.986250pt;}
.ha_c00081{height:55.290000pt;}
.h2_c00081{height:57.593750pt;}
.h10_c00081{height:59.897500pt;}
.h0_c00081{height:1024.640000pt;}
.h1_c00081{height:1024.666667pt;}
.w1_c00081{width:718.666667pt;}
.w0_c00081{width:718.720000pt;}
.x0_c00081{left:0.000000pt;}
.x2_c00081{left:78.720000pt;}
.xc_c00081{left:80.640000pt;}
.x38_c00081{left:107.520000pt;}
.xd_c00081{left:108.800000pt;}
.x3d_c00081{left:117.120000pt;}
.x27_c00081{left:127.360000pt;}
.x33_c00081{left:136.320000pt;}
.xe_c00081{left:137.600000pt;}
.x39_c00081{left:144.640000pt;}
.x2a_c00081{left:145.920000pt;}
.x4a_c00081{left:147.200000pt;}
.x20_c00081{left:154.240000pt;}
.x28_c00081{left:157.440000pt;}
.xf_c00081{left:165.120000pt;}
.x2b_c00081{left:174.720000pt;}
.x37_c00081{left:184.320000pt;}
.x3_c00081{left:203.520000pt;}
.x17_c00081{left:213.120000pt;}
.x41_c00081{left:214.400000pt;}
.x34_c00081{left:222.080000pt;}
.x4_c00081{left:232.320000pt;}
.x21_c00081{left:241.280000pt;}
.x10_c00081{left:252.160000pt;}
.x42_c00081{left:259.200000pt;}
.x18_c00081{left:260.480000pt;}
.x5_c00081{left:270.720000pt;}
.x11_c00081{left:279.040000pt;}
.x2c_c00081{left:280.320000pt;}
.x46_c00081{left:289.920000pt;}
.x22_c00081{left:299.520000pt;}
.x19_c00081{left:309.120000pt;}
.x49_c00081{left:318.720000pt;}
.x23_c00081{left:327.680000pt;}
.x4b_c00081{left:336.000000pt;}
.x1a_c00081{left:337.920000pt;}
.x2d_c00081{left:346.880000pt;}
.x29_c00081{left:348.160000pt;}
.x2f_c00081{left:357.120000pt;}
.x3e_c00081{left:366.720000pt;}
.x6_c00081{left:376.320000pt;}
.x30_c00081{left:385.280000pt;}
.x47_c00081{left:393.600000pt;}
.x12_c00081{left:395.520000pt;}
.x3b_c00081{left:404.480000pt;}
.x2e_c00081{left:414.720000pt;}
.x31_c00081{left:422.400000pt;}
.x13_c00081{left:424.320000pt;}
.x7_c00081{left:433.920000pt;}
.x35_c00081{left:452.480000pt;}
.x1b_c00081{left:462.080000pt;}
.x8_c00081{left:472.320000pt;}
.x43_c00081{left:480.640000pt;}
.x1c_c00081{left:481.920000pt;}
.x3f_c00081{left:491.520000pt;}
.x32_c00081{left:501.120000pt;}
.x48_c00081{left:509.440000pt;}
.x1d_c00081{left:511.360000pt;}
.x44_c00081{left:519.040000pt;}
.x14_c00081{left:520.320000pt;}
.x24_c00081{left:530.560000pt;}
.x3a_c00081{left:538.880000pt;}
.x1e_c00081{left:549.120000pt;}
.x40_c00081{left:558.080000pt;}
.x9_c00081{left:559.360000pt;}
.x4c_c00081{left:568.320000pt;}
.x26_c00081{left:577.920000pt;}
.x45_c00081{left:587.520000pt;}
.x3c_c00081{left:597.120000pt;}
.x1f_c00081{left:606.720000pt;}
.x36_c00081{left:616.320000pt;}
.xa_c00081{left:626.560000pt;}
.x15_c00081{left:635.520000pt;}
.x25_c00081{left:645.760000pt;}
.x1_c00081{left:651.520000pt;}
.xb_c00081{left:656.640000pt;}
.x16_c00081{left:664.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a639b3ac8217cf2e5e9486df.woff2')format("woff");}.ff1_c00082{font-family:ff1_c00082;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m52_c00082{transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);}
.m51_c00082{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m55_c00082{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);}
.m2b_c00082{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1_c00082{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m41_c00082{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m57_c00082{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.me_c00082{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m32_c00082{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m36_c00082{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m0_c00082{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mf_c00082{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m26_c00082{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m44_c00082{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);}
.m2e_c00082{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00082{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m2_c00082{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m35_c00082{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);}
.m42_c00082{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);}
.m33_c00082{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00082{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);}
.m27_c00082{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_c00082{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m17_c00082{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);}
.m23_c00082{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00082{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);}
.m4f_c00082{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);}
.m1e_c00082{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);}
.m45_c00082{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m3_c00082{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m16_c00082{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);}
.m31_c00082{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.md_c00082{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);}
.m4c_c00082{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00082{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);}
.m6_c00082{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);}
.m2d_c00082{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m9_c00082{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00082{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m39_c00082{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m34_c00082{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);}
.m4_c00082{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m40_c00082{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);}
.m5_c00082{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00082{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m38_c00082{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m12_c00082{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_c00082{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00082{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m11_c00082{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00082{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);}
.m3d_c00082{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m49_c00082{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.mc_c00082{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m37_c00082{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00082{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);}
.m43_c00082{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m29_c00082{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00082{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00082{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);}
.m30_c00082{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00082{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00082{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m8_c00082{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);}
.m47_c00082{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m18_c00082{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m28_c00082{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m20_c00082{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);}
.m15_c00082{transform:matrix(0.525000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525000,0.000000,0.000000,0.250000,0,0);}
.m10_c00082{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m14_c00082{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m53_c00082{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m50_c00082{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m24_c00082{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m7_c00082{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m19_c00082{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m13_c00082{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m21_c00082{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);}
.m56_c00082{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00082{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);}
.m22_c00082{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);}
.m1f_c00082{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m46_c00082{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.mb_c00082{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.ma_c00082{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m48_c00082{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m54_c00082{transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00082{transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);}
.v1_c00082{vertical-align:-11.520000px;}
.v2_c00082{vertical-align:-8.640000px;}
.v0_c00082{vertical-align:0.000000px;}
.ls0_c00082{letter-spacing:0.000000px;}
.sc__c00082{text-shadow:none;}
.sc0_c00082{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00082{-webkit-text-stroke:0px transparent;}
.sc0_c00082{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00082{word-spacing:-7.411680px;}
.ws1_c00082{word-spacing:-2.557680px;}
.ws3_c00082{word-spacing:0.000000px;}
.ws0_c00082{word-spacing:0.906000px;}
.fc0_c00082{color:transparent;}
.fs4_c00082{font-size:34.560000px;}
.fs7_c00082{font-size:37.440000px;}
.fse_c00082{font-size:40.320000px;}
.fs9_c00082{font-size:43.200000px;}
.fs3_c00082{font-size:46.080000px;}
.fs1_c00082{font-size:48.960000px;}
.fs5_c00082{font-size:51.840000px;}
.fs2_c00082{font-size:54.720000px;}
.fsb_c00082{font-size:57.600000px;}
.fs8_c00082{font-size:60.480000px;}
.fs6_c00082{font-size:63.360000px;}
.fsc_c00082{font-size:66.240000px;}
.fsd_c00082{font-size:69.120000px;}
.fs0_c00082{font-size:72.000000px;}
.fsa_c00082{font-size:74.880000px;}
.y0_c00082{bottom:0.000000px;}
.y71_c00082{bottom:29.520000px;}
.y6f_c00082{bottom:30.960000px;}
.y6d_c00082{bottom:31.680000px;}
.y70_c00082{bottom:33.840000px;}
.y6e_c00082{bottom:34.560000px;}
.y6c_c00082{bottom:36.000000px;}
.y6b_c00082{bottom:36.720000px;}
.y6a_c00082{bottom:38.160000px;}
.y69_c00082{bottom:38.880000px;}
.y67_c00082{bottom:73.440000px;}
.y66_c00082{bottom:74.880000px;}
.y64_c00082{bottom:76.320000px;}
.y68_c00082{bottom:77.040000px;}
.y65_c00082{bottom:77.760000px;}
.y63_c00082{bottom:80.640000px;}
.y62_c00082{bottom:115.920000px;}
.y61_c00082{bottom:116.640000px;}
.y5f_c00082{bottom:118.800000px;}
.y5e_c00082{bottom:119.520000px;}
.y60_c00082{bottom:120.240000px;}
.y5d_c00082{bottom:122.400000px;}
.y5c_c00082{bottom:158.400000px;}
.y5a_c00082{bottom:159.120000px;}
.y5b_c00082{bottom:162.000000px;}
.y59_c00082{bottom:163.440000px;}
.y58_c00082{bottom:164.160000px;}
.y57_c00082{bottom:164.880000px;}
.y54_c00082{bottom:200.880000px;}
.y56_c00082{bottom:204.480000px;}
.y55_c00082{bottom:205.200000px;}
.y53_c00082{bottom:205.920000px;}
.y52_c00082{bottom:243.360000px;}
.y51_c00082{bottom:245.520000px;}
.y50_c00082{bottom:246.960000px;}
.y4f_c00082{bottom:247.680000px;}
.y4e_c00082{bottom:248.400000px;}
.y49_c00082{bottom:298.080000px;}
.y4c_c00082{bottom:298.800000px;}
.y4d_c00082{bottom:300.240000px;}
.y4b_c00082{bottom:300.960000px;}
.y4a_c00082{bottom:301.680000px;}
.y48_c00082{bottom:302.400000px;}
.y47_c00082{bottom:340.560000px;}
.y45_c00082{bottom:341.280000px;}
.y46_c00082{bottom:343.440000px;}
.y44_c00082{bottom:344.160000px;}
.y43_c00082{bottom:383.040000px;}
.y42_c00082{bottom:383.760000px;}
.y41_c00082{bottom:385.920000px;}
.y40_c00082{bottom:386.640000px;}
.y3e_c00082{bottom:424.800000px;}
.y3f_c00082{bottom:426.240000px;}
.y3c_c00082{bottom:426.960000px;}
.y3d_c00082{bottom:429.120000px;}
.y3b_c00082{bottom:429.840000px;}
.y3a_c00082{bottom:468.720000px;}
.y37_c00082{bottom:469.440000px;}
.y39_c00082{bottom:470.880000px;}
.y38_c00082{bottom:471.600000px;}
.y36_c00082{bottom:472.320000px;}
.y33_c00082{bottom:511.920000px;}
.y35_c00082{bottom:514.080000px;}
.y34_c00082{bottom:514.800000px;}
.y2f_c00082{bottom:553.680000px;}
.y31_c00082{bottom:554.400000px;}
.y32_c00082{bottom:556.560000px;}
.y30_c00082{bottom:557.280000px;}
.y2d_c00082{bottom:596.880000px;}
.y2c_c00082{bottom:599.760000px;}
.y2e_c00082{bottom:600.480000px;}
.y28_c00082{bottom:640.080000px;}
.y2b_c00082{bottom:640.800000px;}
.y29_c00082{bottom:642.240000px;}
.y2a_c00082{bottom:642.960000px;}
.y22_c00082{bottom:681.840000px;}
.y27_c00082{bottom:682.560000px;}
.y26_c00082{bottom:683.280000px;}
.y23_c00082{bottom:684.720000px;}
.y25_c00082{bottom:685.440000px;}
.y24_c00082{bottom:686.160000px;}
.y1e_c00082{bottom:724.320000px;}
.y20_c00082{bottom:725.040000px;}
.y1d_c00082{bottom:727.200000px;}
.y1f_c00082{bottom:727.920000px;}
.y21_c00082{bottom:728.640000px;}
.y1a_c00082{bottom:767.520000px;}
.y19_c00082{bottom:768.240000px;}
.y18_c00082{bottom:770.400000px;}
.y1b_c00082{bottom:771.120000px;}
.y1c_c00082{bottom:771.840000px;}
.y17_c00082{bottom:822.240000px;}
.y16_c00082{bottom:822.960000px;}
.y12_c00082{bottom:863.280000px;}
.y14_c00082{bottom:864.720000px;}
.y11_c00082{bottom:866.160000px;}
.y13_c00082{bottom:866.880000px;}
.y15_c00082{bottom:867.600000px;}
.yf_c00082{bottom:906.480000px;}
.y10_c00082{bottom:907.200000px;}
.yc_c00082{bottom:907.920000px;}
.yd_c00082{bottom:908.640000px;}
.ye_c00082{bottom:909.360000px;}
.y9_c00082{bottom:948.240000px;}
.y8_c00082{bottom:950.400000px;}
.ya_c00082{bottom:951.840000px;}
.yb_c00082{bottom:952.560000px;}
.y2_c00082{bottom:990.720000px;}
.y6_c00082{bottom:992.880000px;}
.y3_c00082{bottom:993.600000px;}
.y4_c00082{bottom:994.320000px;}
.y5_c00082{bottom:995.040000px;}
.y7_c00082{bottom:995.760000px;}
.y1_c00082{bottom:1074.240000px;}
.h6_c00082{height:31.100625px;}
.h9_c00082{height:33.692344px;}
.h10_c00082{height:36.284062px;}
.hb_c00082{height:38.875781px;}
.h5_c00082{height:41.467500px;}
.h3_c00082{height:44.059219px;}
.h7_c00082{height:46.650937px;}
.h4_c00082{height:49.242656px;}
.hd_c00082{height:51.834375px;}
.ha_c00082{height:54.426094px;}
.h8_c00082{height:57.017812px;}
.he_c00082{height:59.609531px;}
.hf_c00082{height:62.201250px;}
.h2_c00082{height:64.792969px;}
.hc_c00082{height:67.384687px;}
.h0_c00082{height:1153.440000px;}
.h1_c00082{height:1153.500000px;}
.w0_c00082{width:810.720000px;}
.w1_c00082{width:810.750000px;}
.x0_c00082{left:0.000000px;}
.x1e_c00082{left:88.560000px;}
.x2_c00082{left:90.720000px;}
.x16_c00082{left:110.880000px;}
.x42_c00082{left:121.680000px;}
.x2a_c00082{left:123.120000px;}
.xc_c00082{left:132.480000px;}
.x17_c00082{left:143.280000px;}
.x47_c00082{left:154.080000px;}
.x33_c00082{left:164.160000px;}
.xd_c00082{left:174.960000px;}
.x38_c00082{left:185.760000px;}
.x25_c00082{left:197.280000px;}
.x18_c00082{left:208.080000px;}
.xe_c00082{left:216.720000px;}
.x45_c00082{left:218.160000px;}
.x3_c00082{left:229.680000px;}
.x3b_c00082{left:239.040000px;}
.x19_c00082{left:240.480000px;}
.x1f_c00082{left:251.280000px;}
.x2b_c00082{left:259.920000px;}
.x4_c00082{left:262.080000px;}
.x39_c00082{left:271.440000px;}
.x4d_c00082{left:272.880000px;}
.xf_c00082{left:282.960000px;}
.x1a_c00082{left:293.760000px;}
.x46_c00082{left:304.560000px;}
.x10_c00082{left:315.360000px;}
.x26_c00082{left:325.440000px;}
.x4e_c00082{left:336.960000px;}
.x34_c00082{left:347.040000px;}
.x49_c00082{left:349.200000px;}
.x2f_c00082{left:357.840000px;}
.x4a_c00082{left:359.280000px;}
.x2c_c00082{left:367.920000px;}
.x40_c00082{left:369.360000px;}
.x5_c00082{left:379.440000px;}
.x27_c00082{left:390.960000px;}
.x11_c00082{left:402.480000px;}
.x1b_c00082{left:413.280000px;}
.x6_c00082{left:423.360000px;}
.x3c_c00082{left:424.800000px;}
.x43_c00082{left:434.160000px;}
.x1c_c00082{left:444.960000px;}
.x3d_c00082{left:455.760000px;}
.x12_c00082{left:467.280000px;}
.x35_c00082{left:477.360000px;}
.x7_c00082{left:488.160000px;}
.x13_c00082{left:498.960000px;}
.x30_c00082{left:500.400000px;}
.x20_c00082{left:509.760000px;}
.x8_c00082{left:531.360000px;}
.x48_c00082{left:532.800000px;}
.x14_c00082{left:540.720000px;}
.x28_c00082{left:542.160000px;}
.x41_c00082{left:552.960000px;}
.x9_c00082{left:563.760000px;}
.x36_c00082{left:565.200000px;}
.x21_c00082{left:574.560000px;}
.x50_c00082{left:576.000000px;}
.x2d_c00082{left:586.080000px;}
.xa_c00082{left:596.160000px;}
.x22_c00082{left:597.600000px;}
.x3a_c00082{left:606.960000px;}
.x2e_c00082{left:617.760000px;}
.x31_c00082{left:619.200000px;}
.x15_c00082{left:629.280000px;}
.x1d_c00082{left:639.360000px;}
.x37_c00082{left:650.880000px;}
.x23_c00082{left:661.680000px;}
.x3e_c00082{left:672.480000px;}
.x4f_c00082{left:673.920000px;}
.x29_c00082{left:683.280000px;}
.x32_c00082{left:684.720000px;}
.x4c_c00082{left:693.360000px;}
.x24_c00082{left:694.800000px;}
.x3f_c00082{left:704.880000px;}
.x4b_c00082{left:706.320000px;}
.x44_c00082{left:714.960000px;}
.xb_c00082{left:716.400000px;}
.x1_c00082{left:736.560000px;}
@media print{
.v1_c00082{vertical-align:-10.240000pt;}
.v2_c00082{vertical-align:-7.680000pt;}
.v0_c00082{vertical-align:0.000000pt;}
.ls0_c00082{letter-spacing:0.000000pt;}
.ws2_c00082{word-spacing:-6.588160pt;}
.ws1_c00082{word-spacing:-2.273493pt;}
.ws3_c00082{word-spacing:0.000000pt;}
.ws0_c00082{word-spacing:0.805333pt;}
.fs4_c00082{font-size:30.720000pt;}
.fs7_c00082{font-size:33.280000pt;}
.fse_c00082{font-size:35.840000pt;}
.fs9_c00082{font-size:38.400000pt;}
.fs3_c00082{font-size:40.960000pt;}
.fs1_c00082{font-size:43.520000pt;}
.fs5_c00082{font-size:46.080000pt;}
.fs2_c00082{font-size:48.640000pt;}
.fsb_c00082{font-size:51.200000pt;}
.fs8_c00082{font-size:53.760000pt;}
.fs6_c00082{font-size:56.320000pt;}
.fsc_c00082{font-size:58.880000pt;}
.fsd_c00082{font-size:61.440000pt;}
.fs0_c00082{font-size:64.000000pt;}
.fsa_c00082{font-size:66.560000pt;}
.y0_c00082{bottom:0.000000pt;}
.y71_c00082{bottom:26.240000pt;}
.y6f_c00082{bottom:27.520000pt;}
.y6d_c00082{bottom:28.160000pt;}
.y70_c00082{bottom:30.080000pt;}
.y6e_c00082{bottom:30.720000pt;}
.y6c_c00082{bottom:32.000000pt;}
.y6b_c00082{bottom:32.640000pt;}
.y6a_c00082{bottom:33.920000pt;}
.y69_c00082{bottom:34.560000pt;}
.y67_c00082{bottom:65.280000pt;}
.y66_c00082{bottom:66.560000pt;}
.y64_c00082{bottom:67.840000pt;}
.y68_c00082{bottom:68.480000pt;}
.y65_c00082{bottom:69.120000pt;}
.y63_c00082{bottom:71.680000pt;}
.y62_c00082{bottom:103.040000pt;}
.y61_c00082{bottom:103.680000pt;}
.y5f_c00082{bottom:105.600000pt;}
.y5e_c00082{bottom:106.240000pt;}
.y60_c00082{bottom:106.880000pt;}
.y5d_c00082{bottom:108.800000pt;}
.y5c_c00082{bottom:140.800000pt;}
.y5a_c00082{bottom:141.440000pt;}
.y5b_c00082{bottom:144.000000pt;}
.y59_c00082{bottom:145.280000pt;}
.y58_c00082{bottom:145.920000pt;}
.y57_c00082{bottom:146.560000pt;}
.y54_c00082{bottom:178.560000pt;}
.y56_c00082{bottom:181.760000pt;}
.y55_c00082{bottom:182.400000pt;}
.y53_c00082{bottom:183.040000pt;}
.y52_c00082{bottom:216.320000pt;}
.y51_c00082{bottom:218.240000pt;}
.y50_c00082{bottom:219.520000pt;}
.y4f_c00082{bottom:220.160000pt;}
.y4e_c00082{bottom:220.800000pt;}
.y49_c00082{bottom:264.960000pt;}
.y4c_c00082{bottom:265.600000pt;}
.y4d_c00082{bottom:266.880000pt;}
.y4b_c00082{bottom:267.520000pt;}
.y4a_c00082{bottom:268.160000pt;}
.y48_c00082{bottom:268.800000pt;}
.y47_c00082{bottom:302.720000pt;}
.y45_c00082{bottom:303.360000pt;}
.y46_c00082{bottom:305.280000pt;}
.y44_c00082{bottom:305.920000pt;}
.y43_c00082{bottom:340.480000pt;}
.y42_c00082{bottom:341.120000pt;}
.y41_c00082{bottom:343.040000pt;}
.y40_c00082{bottom:343.680000pt;}
.y3e_c00082{bottom:377.600000pt;}
.y3f_c00082{bottom:378.880000pt;}
.y3c_c00082{bottom:379.520000pt;}
.y3d_c00082{bottom:381.440000pt;}
.y3b_c00082{bottom:382.080000pt;}
.y3a_c00082{bottom:416.640000pt;}
.y37_c00082{bottom:417.280000pt;}
.y39_c00082{bottom:418.560000pt;}
.y38_c00082{bottom:419.200000pt;}
.y36_c00082{bottom:419.840000pt;}
.y33_c00082{bottom:455.040000pt;}
.y35_c00082{bottom:456.960000pt;}
.y34_c00082{bottom:457.600000pt;}
.y2f_c00082{bottom:492.160000pt;}
.y31_c00082{bottom:492.800000pt;}
.y32_c00082{bottom:494.720000pt;}
.y30_c00082{bottom:495.360000pt;}
.y2d_c00082{bottom:530.560000pt;}
.y2c_c00082{bottom:533.120000pt;}
.y2e_c00082{bottom:533.760000pt;}
.y28_c00082{bottom:568.960000pt;}
.y2b_c00082{bottom:569.600000pt;}
.y29_c00082{bottom:570.880000pt;}
.y2a_c00082{bottom:571.520000pt;}
.y22_c00082{bottom:606.080000pt;}
.y27_c00082{bottom:606.720000pt;}
.y26_c00082{bottom:607.360000pt;}
.y23_c00082{bottom:608.640000pt;}
.y25_c00082{bottom:609.280000pt;}
.y24_c00082{bottom:609.920000pt;}
.y1e_c00082{bottom:643.840000pt;}
.y20_c00082{bottom:644.480000pt;}
.y1d_c00082{bottom:646.400000pt;}
.y1f_c00082{bottom:647.040000pt;}
.y21_c00082{bottom:647.680000pt;}
.y1a_c00082{bottom:682.240000pt;}
.y19_c00082{bottom:682.880000pt;}
.y18_c00082{bottom:684.800000pt;}
.y1b_c00082{bottom:685.440000pt;}
.y1c_c00082{bottom:686.080000pt;}
.y17_c00082{bottom:730.880000pt;}
.y16_c00082{bottom:731.520000pt;}
.y12_c00082{bottom:767.360000pt;}
.y14_c00082{bottom:768.640000pt;}
.y11_c00082{bottom:769.920000pt;}
.y13_c00082{bottom:770.560000pt;}
.y15_c00082{bottom:771.200000pt;}
.yf_c00082{bottom:805.760000pt;}
.y10_c00082{bottom:806.400000pt;}
.yc_c00082{bottom:807.040000pt;}
.yd_c00082{bottom:807.680000pt;}
.ye_c00082{bottom:808.320000pt;}
.y9_c00082{bottom:842.880000pt;}
.y8_c00082{bottom:844.800000pt;}
.ya_c00082{bottom:846.080000pt;}
.yb_c00082{bottom:846.720000pt;}
.y2_c00082{bottom:880.640000pt;}
.y6_c00082{bottom:882.560000pt;}
.y3_c00082{bottom:883.200000pt;}
.y4_c00082{bottom:883.840000pt;}
.y5_c00082{bottom:884.480000pt;}
.y7_c00082{bottom:885.120000pt;}
.y1_c00082{bottom:954.880000pt;}
.h6_c00082{height:27.645000pt;}
.h9_c00082{height:29.948750pt;}
.h10_c00082{height:32.252500pt;}
.hb_c00082{height:34.556250pt;}
.h5_c00082{height:36.860000pt;}
.h3_c00082{height:39.163750pt;}
.h7_c00082{height:41.467500pt;}
.h4_c00082{height:43.771250pt;}
.hd_c00082{height:46.075000pt;}
.ha_c00082{height:48.378750pt;}
.h8_c00082{height:50.682500pt;}
.he_c00082{height:52.986250pt;}
.hf_c00082{height:55.290000pt;}
.h2_c00082{height:57.593750pt;}
.hc_c00082{height:59.897500pt;}
.h0_c00082{height:1025.280000pt;}
.h1_c00082{height:1025.333333pt;}
.w0_c00082{width:720.640000pt;}
.w1_c00082{width:720.666667pt;}
.x0_c00082{left:0.000000pt;}
.x1e_c00082{left:78.720000pt;}
.x2_c00082{left:80.640000pt;}
.x16_c00082{left:98.560000pt;}
.x42_c00082{left:108.160000pt;}
.x2a_c00082{left:109.440000pt;}
.xc_c00082{left:117.760000pt;}
.x17_c00082{left:127.360000pt;}
.x47_c00082{left:136.960000pt;}
.x33_c00082{left:145.920000pt;}
.xd_c00082{left:155.520000pt;}
.x38_c00082{left:165.120000pt;}
.x25_c00082{left:175.360000pt;}
.x18_c00082{left:184.960000pt;}
.xe_c00082{left:192.640000pt;}
.x45_c00082{left:193.920000pt;}
.x3_c00082{left:204.160000pt;}
.x3b_c00082{left:212.480000pt;}
.x19_c00082{left:213.760000pt;}
.x1f_c00082{left:223.360000pt;}
.x2b_c00082{left:231.040000pt;}
.x4_c00082{left:232.960000pt;}
.x39_c00082{left:241.280000pt;}
.x4d_c00082{left:242.560000pt;}
.xf_c00082{left:251.520000pt;}
.x1a_c00082{left:261.120000pt;}
.x46_c00082{left:270.720000pt;}
.x10_c00082{left:280.320000pt;}
.x26_c00082{left:289.280000pt;}
.x4e_c00082{left:299.520000pt;}
.x34_c00082{left:308.480000pt;}
.x49_c00082{left:310.400000pt;}
.x2f_c00082{left:318.080000pt;}
.x4a_c00082{left:319.360000pt;}
.x2c_c00082{left:327.040000pt;}
.x40_c00082{left:328.320000pt;}
.x5_c00082{left:337.280000pt;}
.x27_c00082{left:347.520000pt;}
.x11_c00082{left:357.760000pt;}
.x1b_c00082{left:367.360000pt;}
.x6_c00082{left:376.320000pt;}
.x3c_c00082{left:377.600000pt;}
.x43_c00082{left:385.920000pt;}
.x1c_c00082{left:395.520000pt;}
.x3d_c00082{left:405.120000pt;}
.x12_c00082{left:415.360000pt;}
.x35_c00082{left:424.320000pt;}
.x7_c00082{left:433.920000pt;}
.x13_c00082{left:443.520000pt;}
.x30_c00082{left:444.800000pt;}
.x20_c00082{left:453.120000pt;}
.x8_c00082{left:472.320000pt;}
.x48_c00082{left:473.600000pt;}
.x14_c00082{left:480.640000pt;}
.x28_c00082{left:481.920000pt;}
.x41_c00082{left:491.520000pt;}
.x9_c00082{left:501.120000pt;}
.x36_c00082{left:502.400000pt;}
.x21_c00082{left:510.720000pt;}
.x50_c00082{left:512.000000pt;}
.x2d_c00082{left:520.960000pt;}
.xa_c00082{left:529.920000pt;}
.x22_c00082{left:531.200000pt;}
.x3a_c00082{left:539.520000pt;}
.x2e_c00082{left:549.120000pt;}
.x31_c00082{left:550.400000pt;}
.x15_c00082{left:559.360000pt;}
.x1d_c00082{left:568.320000pt;}
.x37_c00082{left:578.560000pt;}
.x23_c00082{left:588.160000pt;}
.x3e_c00082{left:597.760000pt;}
.x4f_c00082{left:599.040000pt;}
.x29_c00082{left:607.360000pt;}
.x32_c00082{left:608.640000pt;}
.x4c_c00082{left:616.320000pt;}
.x24_c00082{left:617.600000pt;}
.x3f_c00082{left:626.560000pt;}
.x4b_c00082{left:627.840000pt;}
.x44_c00082{left:635.520000pt;}
.xb_c00082{left:636.800000pt;}
.x1_c00082{left:654.720000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9b62765357446db7e8b0e26f.woff2')format("woff");}.ff1_c00083{font-family:ff1_c00083;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5c_c00083{transform:matrix(0.230925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230925,0.000000,0.000000,0.250000,0,0);}
.m59_c00083{transform:matrix(0.238775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238775,0.000000,0.000000,0.250000,0,0);}
.m4e_c00083{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m57_c00083{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m23_c00083{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m54_c00083{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00083{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00083{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m56_c00083{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m25_c00083{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m46_c00083{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00083{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1_c00083{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m15_c00083{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m51_c00083{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00083{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m30_c00083{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m0_c00083{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00083{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00083{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00083{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);}
.m40_c00083{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m45_c00083{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00083{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_c00083{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m36_c00083{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m33_c00083{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.me_c00083{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);}
.m1a_c00083{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00083{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.mc_c00083{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);}
.m49_c00083{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m27_c00083{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);}
.m8_c00083{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00083{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m7_c00083{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m52_c00083{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);}
.m55_c00083{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);}
.mf_c00083{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m4_c00083{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m38_c00083{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);}
.m9_c00083{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00083{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00083{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);}
.m17_c00083{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);}
.m16_c00083{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m29_c00083{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m37_c00083{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);}
.m6_c00083{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.ma_c00083{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m44_c00083{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);}
.m4d_c00083{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m28_c00083{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);}
.m2b_c00083{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00083{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m35_c00083{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m20_c00083{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);}
.m47_c00083{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00083{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00083{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);}
.m2_c00083{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00083{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00083{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00083{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00083{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m42_c00083{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);}
.m5_c00083{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00083{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m19_c00083{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);}
.m2e_c00083{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m18_c00083{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m34_c00083{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m10_c00083{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);}
.m53_c00083{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00083{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m32_c00083{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m43_c00083{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m12_c00083{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m39_c00083{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);}
.mb_c00083{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.md_c00083{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);}
.m22_c00083{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m24_c00083{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m21_c00083{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00083{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m41_c00083{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00083{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m13_c00083{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);}
.m48_c00083{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);}
.m2d_c00083{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m26_c00083{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m58_c00083{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m50_c00083{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m14_c00083{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m31_c00083{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.m3_c00083{transform:matrix(0.982500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.982500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.982500,0.000000,0.000000,0.250000,0,0);}
.v0_c00083{vertical-align:0.000000px;}
.ls0_c00083{letter-spacing:0.000000px;}
.sc__c00083{text-shadow:none;}
.sc0_c00083{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00083{-webkit-text-stroke:0px transparent;}
.sc0_c00083{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00083{word-spacing:-12.114697px;}
.ws0_c00083{word-spacing:-4.495306px;}
.ws2_c00083{word-spacing:0.000000px;}
.fc0_c00083{color:transparent;}
.fs3_c00083{font-size:23.040000px;}
.fsc_c00083{font-size:34.560000px;}
.fs8_c00083{font-size:37.440000px;}
.fs7_c00083{font-size:40.320000px;}
.fsa_c00083{font-size:43.200000px;}
.fsb_c00083{font-size:46.080000px;}
.fs2_c00083{font-size:48.960000px;}
.fs4_c00083{font-size:51.840000px;}
.fs9_c00083{font-size:54.720000px;}
.fs6_c00083{font-size:57.600000px;}
.fs5_c00083{font-size:60.480000px;}
.fs1_c00083{font-size:63.360000px;}
.fsd_c00083{font-size:66.240000px;}
.fse_c00083{font-size:69.120000px;}
.fs0_c00083{font-size:72.000000px;}
.y0_c00083{bottom:0.000000px;}
.y6f_c00083{bottom:22.320000px;}
.y70_c00083{bottom:23.040000px;}
.y71_c00083{bottom:23.760000px;}
.y6c_c00083{bottom:24.480000px;}
.y6e_c00083{bottom:25.200000px;}
.y6d_c00083{bottom:25.920000px;}
.y6b_c00083{bottom:28.080000px;}
.y6a_c00083{bottom:64.080000px;}
.y68_c00083{bottom:64.800000px;}
.y69_c00083{bottom:66.960000px;}
.y67_c00083{bottom:67.680000px;}
.y66_c00083{bottom:68.400000px;}
.y63_c00083{bottom:108.000000px;}
.y62_c00083{bottom:108.720000px;}
.y65_c00083{bottom:109.440000px;}
.y61_c00083{bottom:110.160000px;}
.y64_c00083{bottom:111.600000px;}
.y60_c00083{bottom:160.560000px;}
.y5d_c00083{bottom:163.440000px;}
.y5f_c00083{bottom:164.160000px;}
.y5e_c00083{bottom:164.880000px;}
.y5c_c00083{bottom:202.320000px;}
.y5b_c00083{bottom:203.040000px;}
.y59_c00083{bottom:203.760000px;}
.y56_c00083{bottom:205.200000px;}
.y5a_c00083{bottom:205.920000px;}
.y57_c00083{bottom:206.640000px;}
.y58_c00083{bottom:207.360000px;}
.y55_c00083{bottom:208.800000px;}
.y53_c00083{bottom:246.240000px;}
.y50_c00083{bottom:246.960000px;}
.y54_c00083{bottom:247.680000px;}
.y4f_c00083{bottom:248.400000px;}
.y52_c00083{bottom:249.120000px;}
.y51_c00083{bottom:249.840000px;}
.y4d_c00083{bottom:289.440000px;}
.y4e_c00083{bottom:291.600000px;}
.y4c_c00083{bottom:292.320000px;}
.y49_c00083{bottom:342.000000px;}
.y4a_c00083{bottom:342.720000px;}
.y4b_c00083{bottom:344.160000px;}
.y48_c00083{bottom:345.600000px;}
.y47_c00083{bottom:346.320000px;}
.y46_c00083{bottom:384.480000px;}
.y43_c00083{bottom:385.920000px;}
.y45_c00083{bottom:387.360000px;}
.y44_c00083{bottom:388.080000px;}
.y40_c00083{bottom:426.960000px;}
.y3f_c00083{bottom:427.680000px;}
.y41_c00083{bottom:429.840000px;}
.y42_c00083{bottom:430.560000px;}
.y3d_c00083{bottom:431.280000px;}
.y3e_c00083{bottom:432.000000px;}
.y3a_c00083{bottom:469.440000px;}
.y3c_c00083{bottom:472.320000px;}
.y3b_c00083{bottom:473.040000px;}
.y39_c00083{bottom:473.760000px;}
.y38_c00083{bottom:474.480000px;}
.y37_c00083{bottom:513.360000px;}
.y36_c00083{bottom:514.800000px;}
.y35_c00083{bottom:515.520000px;}
.y34_c00083{bottom:516.240000px;}
.y32_c00083{bottom:555.840000px;}
.y33_c00083{bottom:558.000000px;}
.y31_c00083{bottom:558.720000px;}
.y30_c00083{bottom:596.880000px;}
.y2e_c00083{bottom:600.480000px;}
.y2d_c00083{bottom:601.200000px;}
.y2f_c00083{bottom:601.920000px;}
.y2b_c00083{bottom:640.800000px;}
.y2c_c00083{bottom:643.680000px;}
.y2a_c00083{bottom:684.000000px;}
.y29_c00083{bottom:684.720000px;}
.y27_c00083{bottom:686.160000px;}
.y28_c00083{bottom:686.880000px;}
.y22_c00083{bottom:736.560000px;}
.y25_c00083{bottom:737.280000px;}
.y23_c00083{bottom:739.440000px;}
.y26_c00083{bottom:740.160000px;}
.y24_c00083{bottom:740.880000px;}
.y20_c00083{bottom:779.760000px;}
.y1e_c00083{bottom:781.920000px;}
.y1f_c00083{bottom:782.640000px;}
.y21_c00083{bottom:783.360000px;}
.y1c_c00083{bottom:821.520000px;}
.y1b_c00083{bottom:822.240000px;}
.y1d_c00083{bottom:822.960000px;}
.y19_c00083{bottom:823.680000px;}
.y1a_c00083{bottom:825.120000px;}
.y15_c00083{bottom:864.000000px;}
.y14_c00083{bottom:866.160000px;}
.y16_c00083{bottom:866.880000px;}
.y17_c00083{bottom:867.600000px;}
.y18_c00083{bottom:868.320000px;}
.yf_c00083{bottom:907.200000px;}
.y10_c00083{bottom:907.920000px;}
.yd_c00083{bottom:908.640000px;}
.ye_c00083{bottom:909.360000px;}
.y11_c00083{bottom:910.080000px;}
.y12_c00083{bottom:910.800000px;}
.y13_c00083{bottom:911.520000px;}
.y8_c00083{bottom:951.120000px;}
.y9_c00083{bottom:951.840000px;}
.ya_c00083{bottom:952.560000px;}
.yb_c00083{bottom:953.280000px;}
.yc_c00083{bottom:954.000000px;}
.y2_c00083{bottom:990.720000px;}
.y7_c00083{bottom:993.600000px;}
.y3_c00083{bottom:994.320000px;}
.y4_c00083{bottom:995.040000px;}
.y5_c00083{bottom:995.760000px;}
.y6_c00083{bottom:996.480000px;}
.y1_c00083{bottom:1069.920000px;}
.h5_c00083{height:20.733750px;}
.he_c00083{height:31.100625px;}
.ha_c00083{height:33.692344px;}
.h9_c00083{height:36.284062px;}
.hc_c00083{height:38.875781px;}
.hd_c00083{height:41.467500px;}
.h4_c00083{height:44.059219px;}
.h6_c00083{height:46.650937px;}
.hb_c00083{height:49.242656px;}
.h8_c00083{height:51.834375px;}
.h7_c00083{height:54.426094px;}
.h3_c00083{height:57.017812px;}
.hf_c00083{height:59.609531px;}
.h10_c00083{height:62.201250px;}
.h2_c00083{height:64.792969px;}
.h1_c00083{height:1149.000000px;}
.h0_c00083{height:1149.120000px;}
.w1_c00083{width:805.500000px;}
.w0_c00083{width:805.680000px;}
.x0_c00083{left:0.000000px;}
.x2_c00083{left:85.680000px;}
.x52_c00083{left:87.120000px;}
.xe_c00083{left:117.360000px;}
.x39_c00083{left:118.800000px;}
.x3_c00083{left:128.160000px;}
.x55_c00083{left:129.600000px;}
.x1c_c00083{left:138.960000px;}
.x2e_c00083{left:149.040000px;}
.x1d_c00083{left:160.560000px;}
.x4_c00083{left:162.000000px;}
.x54_c00083{left:172.800000px;}
.x24_c00083{left:182.880000px;}
.x2f_c00083{left:192.240000px;}
.x5_c00083{left:193.680000px;}
.x4c_c00083{left:203.760000px;}
.x56_c00083{left:205.200000px;}
.x25_c00083{left:213.840000px;}
.x15_c00083{left:224.640000px;}
.x4e_c00083{left:226.800000px;}
.x47_c00083{left:236.880000px;}
.x6_c00083{left:246.240000px;}
.xf_c00083{left:257.760000px;}
.x4a_c00083{left:259.200000px;}
.x1e_c00083{left:267.840000px;}
.x7_c00083{left:279.360000px;}
.x10_c00083{left:289.440000px;}
.x57_c00083{left:290.880000px;}
.x16_c00083{left:300.240000px;}
.x3e_c00083{left:301.680000px;}
.x26_c00083{left:311.040000px;}
.x4f_c00083{left:312.480000px;}
.x58_c00083{left:321.840000px;}
.x11_c00083{left:323.280000px;}
.x17_c00083{left:332.640000px;}
.x30_c00083{left:344.160000px;}
.x53_c00083{left:345.600000px;}
.x27_c00083{left:354.240000px;}
.x3f_c00083{left:355.680000px;}
.x3c_c00083{left:364.320000px;}
.x43_c00083{left:366.480000px;}
.x1f_c00083{left:375.840000px;}
.x28_c00083{left:388.800000px;}
.x8_c00083{left:396.000000px;}
.x18_c00083{left:398.160000px;}
.x59_c00083{left:399.600000px;}
.x31_c00083{left:408.240000px;}
.x44_c00083{left:410.400000px;}
.x2a_c00083{left:419.760000px;}
.x50_c00083{left:429.840000px;}
.x45_c00083{left:431.280000px;}
.x20_c00083{left:440.640000px;}
.x12_c00083{left:442.800000px;}
.x3b_c00083{left:452.880000px;}
.x9_c00083{left:462.240000px;}
.x46_c00083{left:463.680000px;}
.x21_c00083{left:472.320000px;}
.x40_c00083{left:473.760000px;}
.x5a_c00083{left:484.560000px;}
.xa_c00083{left:494.640000px;}
.x41_c00083{left:496.080000px;}
.x2b_c00083{left:505.440000px;}
.x35_c00083{left:516.960000px;}
.x13_c00083{left:537.840000px;}
.x32_c00083{left:539.280000px;}
.x2c_c00083{left:548.640000px;}
.x48_c00083{left:550.080000px;}
.x19_c00083{left:560.160000px;}
.xb_c00083{left:570.240000px;}
.x49_c00083{left:571.680000px;}
.x22_c00083{left:581.040000px;}
.x33_c00083{left:582.480000px;}
.x5b_c00083{left:593.280000px;}
.x4b_c00083{left:602.640000px;}
.x51_c00083{left:604.080000px;}
.x3a_c00083{left:615.600000px;}
.xc_c00083{left:625.680000px;}
.x36_c00083{left:637.200000px;}
.x38_c00083{left:646.560000px;}
.x14_c00083{left:657.360000px;}
.x23_c00083{left:658.800000px;}
.xd_c00083{left:666.720000px;}
.x3d_c00083{left:668.880000px;}
.x4d_c00083{left:680.400000px;}
.x1a_c00083{left:689.040000px;}
.x42_c00083{left:691.200000px;}
.x29_c00083{left:700.560000px;}
.x34_c00083{left:702.000000px;}
.x2d_c00083{left:712.800000px;}
.x37_c00083{left:724.320000px;}
.x1_c00083{left:730.080000px;}
.x1b_c00083{left:766.080000px;}
@media print{
.v0_c00083{vertical-align:0.000000pt;}
.ls0_c00083{letter-spacing:0.000000pt;}
.ws1_c00083{word-spacing:-10.768620pt;}
.ws0_c00083{word-spacing:-3.995827pt;}
.ws2_c00083{word-spacing:0.000000pt;}
.fs3_c00083{font-size:20.480000pt;}
.fsc_c00083{font-size:30.720000pt;}
.fs8_c00083{font-size:33.280000pt;}
.fs7_c00083{font-size:35.840000pt;}
.fsa_c00083{font-size:38.400000pt;}
.fsb_c00083{font-size:40.960000pt;}
.fs2_c00083{font-size:43.520000pt;}
.fs4_c00083{font-size:46.080000pt;}
.fs9_c00083{font-size:48.640000pt;}
.fs6_c00083{font-size:51.200000pt;}
.fs5_c00083{font-size:53.760000pt;}
.fs1_c00083{font-size:56.320000pt;}
.fsd_c00083{font-size:58.880000pt;}
.fse_c00083{font-size:61.440000pt;}
.fs0_c00083{font-size:64.000000pt;}
.y0_c00083{bottom:0.000000pt;}
.y6f_c00083{bottom:19.840000pt;}
.y70_c00083{bottom:20.480000pt;}
.y71_c00083{bottom:21.120000pt;}
.y6c_c00083{bottom:21.760000pt;}
.y6e_c00083{bottom:22.400000pt;}
.y6d_c00083{bottom:23.040000pt;}
.y6b_c00083{bottom:24.960000pt;}
.y6a_c00083{bottom:56.960000pt;}
.y68_c00083{bottom:57.600000pt;}
.y69_c00083{bottom:59.520000pt;}
.y67_c00083{bottom:60.160000pt;}
.y66_c00083{bottom:60.800000pt;}
.y63_c00083{bottom:96.000000pt;}
.y62_c00083{bottom:96.640000pt;}
.y65_c00083{bottom:97.280000pt;}
.y61_c00083{bottom:97.920000pt;}
.y64_c00083{bottom:99.200000pt;}
.y60_c00083{bottom:142.720000pt;}
.y5d_c00083{bottom:145.280000pt;}
.y5f_c00083{bottom:145.920000pt;}
.y5e_c00083{bottom:146.560000pt;}
.y5c_c00083{bottom:179.840000pt;}
.y5b_c00083{bottom:180.480000pt;}
.y59_c00083{bottom:181.120000pt;}
.y56_c00083{bottom:182.400000pt;}
.y5a_c00083{bottom:183.040000pt;}
.y57_c00083{bottom:183.680000pt;}
.y58_c00083{bottom:184.320000pt;}
.y55_c00083{bottom:185.600000pt;}
.y53_c00083{bottom:218.880000pt;}
.y50_c00083{bottom:219.520000pt;}
.y54_c00083{bottom:220.160000pt;}
.y4f_c00083{bottom:220.800000pt;}
.y52_c00083{bottom:221.440000pt;}
.y51_c00083{bottom:222.080000pt;}
.y4d_c00083{bottom:257.280000pt;}
.y4e_c00083{bottom:259.200000pt;}
.y4c_c00083{bottom:259.840000pt;}
.y49_c00083{bottom:304.000000pt;}
.y4a_c00083{bottom:304.640000pt;}
.y4b_c00083{bottom:305.920000pt;}
.y48_c00083{bottom:307.200000pt;}
.y47_c00083{bottom:307.840000pt;}
.y46_c00083{bottom:341.760000pt;}
.y43_c00083{bottom:343.040000pt;}
.y45_c00083{bottom:344.320000pt;}
.y44_c00083{bottom:344.960000pt;}
.y40_c00083{bottom:379.520000pt;}
.y3f_c00083{bottom:380.160000pt;}
.y41_c00083{bottom:382.080000pt;}
.y42_c00083{bottom:382.720000pt;}
.y3d_c00083{bottom:383.360000pt;}
.y3e_c00083{bottom:384.000000pt;}
.y3a_c00083{bottom:417.280000pt;}
.y3c_c00083{bottom:419.840000pt;}
.y3b_c00083{bottom:420.480000pt;}
.y39_c00083{bottom:421.120000pt;}
.y38_c00083{bottom:421.760000pt;}
.y37_c00083{bottom:456.320000pt;}
.y36_c00083{bottom:457.600000pt;}
.y35_c00083{bottom:458.240000pt;}
.y34_c00083{bottom:458.880000pt;}
.y32_c00083{bottom:494.080000pt;}
.y33_c00083{bottom:496.000000pt;}
.y31_c00083{bottom:496.640000pt;}
.y30_c00083{bottom:530.560000pt;}
.y2e_c00083{bottom:533.760000pt;}
.y2d_c00083{bottom:534.400000pt;}
.y2f_c00083{bottom:535.040000pt;}
.y2b_c00083{bottom:569.600000pt;}
.y2c_c00083{bottom:572.160000pt;}
.y2a_c00083{bottom:608.000000pt;}
.y29_c00083{bottom:608.640000pt;}
.y27_c00083{bottom:609.920000pt;}
.y28_c00083{bottom:610.560000pt;}
.y22_c00083{bottom:654.720000pt;}
.y25_c00083{bottom:655.360000pt;}
.y23_c00083{bottom:657.280000pt;}
.y26_c00083{bottom:657.920000pt;}
.y24_c00083{bottom:658.560000pt;}
.y20_c00083{bottom:693.120000pt;}
.y1e_c00083{bottom:695.040000pt;}
.y1f_c00083{bottom:695.680000pt;}
.y21_c00083{bottom:696.320000pt;}
.y1c_c00083{bottom:730.240000pt;}
.y1b_c00083{bottom:730.880000pt;}
.y1d_c00083{bottom:731.520000pt;}
.y19_c00083{bottom:732.160000pt;}
.y1a_c00083{bottom:733.440000pt;}
.y15_c00083{bottom:768.000000pt;}
.y14_c00083{bottom:769.920000pt;}
.y16_c00083{bottom:770.560000pt;}
.y17_c00083{bottom:771.200000pt;}
.y18_c00083{bottom:771.840000pt;}
.yf_c00083{bottom:806.400000pt;}
.y10_c00083{bottom:807.040000pt;}
.yd_c00083{bottom:807.680000pt;}
.ye_c00083{bottom:808.320000pt;}
.y11_c00083{bottom:808.960000pt;}
.y12_c00083{bottom:809.600000pt;}
.y13_c00083{bottom:810.240000pt;}
.y8_c00083{bottom:845.440000pt;}
.y9_c00083{bottom:846.080000pt;}
.ya_c00083{bottom:846.720000pt;}
.yb_c00083{bottom:847.360000pt;}
.yc_c00083{bottom:848.000000pt;}
.y2_c00083{bottom:880.640000pt;}
.y7_c00083{bottom:883.200000pt;}
.y3_c00083{bottom:883.840000pt;}
.y4_c00083{bottom:884.480000pt;}
.y5_c00083{bottom:885.120000pt;}
.y6_c00083{bottom:885.760000pt;}
.y1_c00083{bottom:951.040000pt;}
.h5_c00083{height:18.430000pt;}
.he_c00083{height:27.645000pt;}
.ha_c00083{height:29.948750pt;}
.h9_c00083{height:32.252500pt;}
.hc_c00083{height:34.556250pt;}
.hd_c00083{height:36.860000pt;}
.h4_c00083{height:39.163750pt;}
.h6_c00083{height:41.467500pt;}
.hb_c00083{height:43.771250pt;}
.h8_c00083{height:46.075000pt;}
.h7_c00083{height:48.378750pt;}
.h3_c00083{height:50.682500pt;}
.hf_c00083{height:52.986250pt;}
.h10_c00083{height:55.290000pt;}
.h2_c00083{height:57.593750pt;}
.h1_c00083{height:1021.333333pt;}
.h0_c00083{height:1021.440000pt;}
.w1_c00083{width:716.000000pt;}
.w0_c00083{width:716.160000pt;}
.x0_c00083{left:0.000000pt;}
.x2_c00083{left:76.160000pt;}
.x52_c00083{left:77.440000pt;}
.xe_c00083{left:104.320000pt;}
.x39_c00083{left:105.600000pt;}
.x3_c00083{left:113.920000pt;}
.x55_c00083{left:115.200000pt;}
.x1c_c00083{left:123.520000pt;}
.x2e_c00083{left:132.480000pt;}
.x1d_c00083{left:142.720000pt;}
.x4_c00083{left:144.000000pt;}
.x54_c00083{left:153.600000pt;}
.x24_c00083{left:162.560000pt;}
.x2f_c00083{left:170.880000pt;}
.x5_c00083{left:172.160000pt;}
.x4c_c00083{left:181.120000pt;}
.x56_c00083{left:182.400000pt;}
.x25_c00083{left:190.080000pt;}
.x15_c00083{left:199.680000pt;}
.x4e_c00083{left:201.600000pt;}
.x47_c00083{left:210.560000pt;}
.x6_c00083{left:218.880000pt;}
.xf_c00083{left:229.120000pt;}
.x4a_c00083{left:230.400000pt;}
.x1e_c00083{left:238.080000pt;}
.x7_c00083{left:248.320000pt;}
.x10_c00083{left:257.280000pt;}
.x57_c00083{left:258.560000pt;}
.x16_c00083{left:266.880000pt;}
.x3e_c00083{left:268.160000pt;}
.x26_c00083{left:276.480000pt;}
.x4f_c00083{left:277.760000pt;}
.x58_c00083{left:286.080000pt;}
.x11_c00083{left:287.360000pt;}
.x17_c00083{left:295.680000pt;}
.x30_c00083{left:305.920000pt;}
.x53_c00083{left:307.200000pt;}
.x27_c00083{left:314.880000pt;}
.x3f_c00083{left:316.160000pt;}
.x3c_c00083{left:323.840000pt;}
.x43_c00083{left:325.760000pt;}
.x1f_c00083{left:334.080000pt;}
.x28_c00083{left:345.600000pt;}
.x8_c00083{left:352.000000pt;}
.x18_c00083{left:353.920000pt;}
.x59_c00083{left:355.200000pt;}
.x31_c00083{left:362.880000pt;}
.x44_c00083{left:364.800000pt;}
.x2a_c00083{left:373.120000pt;}
.x50_c00083{left:382.080000pt;}
.x45_c00083{left:383.360000pt;}
.x20_c00083{left:391.680000pt;}
.x12_c00083{left:393.600000pt;}
.x3b_c00083{left:402.560000pt;}
.x9_c00083{left:410.880000pt;}
.x46_c00083{left:412.160000pt;}
.x21_c00083{left:419.840000pt;}
.x40_c00083{left:421.120000pt;}
.x5a_c00083{left:430.720000pt;}
.xa_c00083{left:439.680000pt;}
.x41_c00083{left:440.960000pt;}
.x2b_c00083{left:449.280000pt;}
.x35_c00083{left:459.520000pt;}
.x13_c00083{left:478.080000pt;}
.x32_c00083{left:479.360000pt;}
.x2c_c00083{left:487.680000pt;}
.x48_c00083{left:488.960000pt;}
.x19_c00083{left:497.920000pt;}
.xb_c00083{left:506.880000pt;}
.x49_c00083{left:508.160000pt;}
.x22_c00083{left:516.480000pt;}
.x33_c00083{left:517.760000pt;}
.x5b_c00083{left:527.360000pt;}
.x4b_c00083{left:535.680000pt;}
.x51_c00083{left:536.960000pt;}
.x3a_c00083{left:547.200000pt;}
.xc_c00083{left:556.160000pt;}
.x36_c00083{left:566.400000pt;}
.x38_c00083{left:574.720000pt;}
.x14_c00083{left:584.320000pt;}
.x23_c00083{left:585.600000pt;}
.xd_c00083{left:592.640000pt;}
.x3d_c00083{left:594.560000pt;}
.x4d_c00083{left:604.800000pt;}
.x1a_c00083{left:612.480000pt;}
.x42_c00083{left:614.400000pt;}
.x29_c00083{left:622.720000pt;}
.x34_c00083{left:624.000000pt;}
.x2d_c00083{left:633.600000pt;}
.x37_c00083{left:643.840000pt;}
.x1_c00083{left:648.960000pt;}
.x1b_c00083{left:680.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_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_ca0f8fbcff4b1b790dd77690.woff2')format("woff");}.ff1_c00084{font-family:ff1_c00084;line-height:1.109863;font-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_c00084{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);}
.m31_c00084{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);}
.m2d_c00084{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00084{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m38_c00084{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00084{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00084{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m21_c00084{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00084{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m19_c00084{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m8_c00084{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.mf_c00084{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m12_c00084{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m6_c00084{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m29_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);}
.m22_c00084{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.me_c00084{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m25_c00084{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m41_c00084{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);}
.m35_c00084{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m24_c00084{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m34_c00084{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);}
.m13_c00084{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m11_c00084{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m1_c00084{transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00084{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m28_c00084{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m37_c00084{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m5_c00084{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m20_c00084{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);}
.m1a_c00084{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m23_c00084{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);}
.m2e_c00084{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.md_c00084{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00084{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);}
.m26_c00084{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m27_c00084{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m40_c00084{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m14_c00084{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.mb_c00084{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00084{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.mc_c00084{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00084{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);}
.m3a_c00084{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m18_c00084{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m30_c00084{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m16_c00084{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m4_c00084{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00084{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);}
.m39_c00084{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m3_c00084{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m2_c00084{transform:matrix(0.525000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525000,0.000000,0.000000,0.250000,0,0);}
.m10_c00084{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m0_c00084{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m32_c00084{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00084{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00084{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m33_c00084{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m7_c00084{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.ma_c00084{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);}
.m17_c00084{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m36_c00084{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);}
.m9_c00084{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00084{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00084{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m42_c00084{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m15_c00084{transform:matrix(0.685000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685000,0.000000,0.000000,0.250000,0,0);}
.v0_c00084{vertical-align:0.000000px;}
.ls0_c00084{letter-spacing:0.000000px;}
.sc__c00084{text-shadow:none;}
.sc0_c00084{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00084{-webkit-text-stroke:0px transparent;}
.sc0_c00084{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00084{word-spacing:-1.004244px;}
.ws1_c00084{word-spacing:0.000000px;}
.fc0_c00084{color:transparent;}
.fs0_c00084{font-size:34.560000px;}
.fs2_c00084{font-size:37.440000px;}
.fs7_c00084{font-size:43.200000px;}
.fs1_c00084{font-size:46.080000px;}
.fs3_c00084{font-size:48.960000px;}
.fs4_c00084{font-size:51.840000px;}
.fsa_c00084{font-size:54.720000px;}
.fs6_c00084{font-size:57.600000px;}
.fs5_c00084{font-size:60.480000px;}
.fs9_c00084{font-size:63.360000px;}
.fsb_c00084{font-size:66.240000px;}
.fs8_c00084{font-size:69.120000px;}
.y0_c00084{bottom:0.000000px;}
.y3b_c00084{bottom:437.760000px;}
.y3a_c00084{bottom:478.080000px;}
.y36_c00084{bottom:478.800000px;}
.y38_c00084{bottom:480.240000px;}
.y39_c00084{bottom:480.960000px;}
.y37_c00084{bottom:481.680000px;}
.y33_c00084{bottom:520.560000px;}
.y32_c00084{bottom:521.280000px;}
.y35_c00084{bottom:522.000000px;}
.y34_c00084{bottom:522.720000px;}
.y30_c00084{bottom:523.440000px;}
.y31_c00084{bottom:524.160000px;}
.y2e_c00084{bottom:563.040000px;}
.y2f_c00084{bottom:565.200000px;}
.y2d_c00084{bottom:565.920000px;}
.y2c_c00084{bottom:566.640000px;}
.y2b_c00084{bottom:605.520000px;}
.y2a_c00084{bottom:606.240000px;}
.y29_c00084{bottom:608.400000px;}
.y28_c00084{bottom:609.120000px;}
.y27_c00084{bottom:648.720000px;}
.y26_c00084{bottom:650.880000px;}
.y25_c00084{bottom:651.600000px;}
.y23_c00084{bottom:690.480000px;}
.y22_c00084{bottom:691.200000px;}
.y21_c00084{bottom:694.080000px;}
.y24_c00084{bottom:694.800000px;}
.y1e_c00084{bottom:732.960000px;}
.y1c_c00084{bottom:733.680000px;}
.y1f_c00084{bottom:734.400000px;}
.y20_c00084{bottom:735.840000px;}
.y1d_c00084{bottom:736.560000px;}
.y19_c00084{bottom:776.160000px;}
.y1a_c00084{bottom:776.880000px;}
.y17_c00084{bottom:778.320000px;}
.y18_c00084{bottom:779.040000px;}
.y1b_c00084{bottom:779.760000px;}
.y14_c00084{bottom:818.640000px;}
.y16_c00084{bottom:820.800000px;}
.y13_c00084{bottom:821.520000px;}
.y15_c00084{bottom:822.240000px;}
.y12_c00084{bottom:871.920000px;}
.y11_c00084{bottom:874.080000px;}
.yb_c00084{bottom:913.680000px;}
.ye_c00084{bottom:914.400000px;}
.y10_c00084{bottom:915.120000px;}
.ya_c00084{bottom:915.840000px;}
.yd_c00084{bottom:916.560000px;}
.yc_c00084{bottom:917.280000px;}
.yf_c00084{bottom:918.000000px;}
.y6_c00084{bottom:957.600000px;}
.y7_c00084{bottom:959.040000px;}
.y8_c00084{bottom:959.760000px;}
.y9_c00084{bottom:960.480000px;}
.y2_c00084{bottom:998.640000px;}
.y1_c00084{bottom:1001.520000px;}
.y3_c00084{bottom:1002.240000px;}
.y4_c00084{bottom:1002.960000px;}
.y5_c00084{bottom:1003.680000px;}
.h2_c00084{height:31.100625px;}
.h4_c00084{height:33.692344px;}
.h9_c00084{height:38.875781px;}
.h3_c00084{height:41.467500px;}
.h5_c00084{height:44.059219px;}
.h6_c00084{height:46.650937px;}
.hc_c00084{height:49.242656px;}
.h8_c00084{height:51.834375px;}
.h7_c00084{height:54.426094px;}
.hb_c00084{height:57.017812px;}
.hd_c00084{height:59.609531px;}
.ha_c00084{height:62.201250px;}
.h1_c00084{height:1143.750000px;}
.h0_c00084{height:1144.080000px;}
.w0_c00084{width:797.040000px;}
.w1_c00084{width:797.250000px;}
.x0_c00084{left:0.000000px;}
.xd_c00084{left:78.480000px;}
.x1_c00084{left:80.640000px;}
.x1b_c00084{left:111.600000px;}
.x2_c00084{left:121.680000px;}
.x3b_c00084{left:131.760000px;}
.xe_c00084{left:133.920000px;}
.x23_c00084{left:144.000000px;}
.x3_c00084{left:164.880000px;}
.x37_c00084{left:174.960000px;}
.x1d_c00084{left:186.480000px;}
.x4_c00084{left:197.280000px;}
.x15_c00084{left:208.080000px;}
.xf_c00084{left:219.600000px;}
.x32_c00084{left:229.680000px;}
.x1c_c00084{left:240.480000px;}
.x16_c00084{left:272.880000px;}
.x24_c00084{left:283.680000px;}
.x1e_c00084{left:293.760000px;}
.x29_c00084{left:304.560000px;}
.x5_c00084{left:316.080000px;}
.x33_c00084{left:326.880000px;}
.x6_c00084{left:347.760000px;}
.x1f_c00084{left:360.000000px;}
.x2e_c00084{left:369.360000px;}
.x17_c00084{left:380.160000px;}
.x25_c00084{left:390.960000px;}
.x2f_c00084{left:412.560000px;}
.x2a_c00084{left:423.360000px;}
.x34_c00084{left:434.160000px;}
.x3a_c00084{left:445.680000px;}
.x7_c00084{left:456.480000px;}
.x10_c00084{left:466.560000px;}
.x36_c00084{left:477.360000px;}
.x26_c00084{left:478.800000px;}
.x8_c00084{left:488.880000px;}
.x20_c00084{left:499.680000px;}
.x11_c00084{left:501.120000px;}
.x9_c00084{left:520.560000px;}
.x21_c00084{left:532.080000px;}
.x18_c00084{left:542.160000px;}
.x12_c00084{left:552.960000px;}
.x27_c00084{left:564.480000px;}
.x38_c00084{left:574.560000px;}
.xa_c00084{left:586.080000px;}
.x2b_c00084{left:587.520000px;}
.x28_c00084{left:596.880000px;}
.x30_c00084{left:598.320000px;}
.x35_c00084{left:607.680000px;}
.x39_c00084{left:617.760000px;}
.x31_c00084{left:619.200000px;}
.xb_c00084{left:630.000000px;}
.x13_c00084{left:650.880000px;}
.xc_c00084{left:660.960000px;}
.x2c_c00084{left:662.400000px;}
.x14_c00084{left:671.760000px;}
.x19_c00084{left:673.920000px;}
.x3c_c00084{left:694.080000px;}
.x22_c00084{left:695.520000px;}
.x1a_c00084{left:704.880000px;}
.x2d_c00084{left:706.320000px;}
@media print{
.v0_c00084{vertical-align:0.000000pt;}
.ls0_c00084{letter-spacing:0.000000pt;}
.ws0_c00084{word-spacing:-0.892662pt;}
.ws1_c00084{word-spacing:0.000000pt;}
.fs0_c00084{font-size:30.720000pt;}
.fs2_c00084{font-size:33.280000pt;}
.fs7_c00084{font-size:38.400000pt;}
.fs1_c00084{font-size:40.960000pt;}
.fs3_c00084{font-size:43.520000pt;}
.fs4_c00084{font-size:46.080000pt;}
.fsa_c00084{font-size:48.640000pt;}
.fs6_c00084{font-size:51.200000pt;}
.fs5_c00084{font-size:53.760000pt;}
.fs9_c00084{font-size:56.320000pt;}
.fsb_c00084{font-size:58.880000pt;}
.fs8_c00084{font-size:61.440000pt;}
.y0_c00084{bottom:0.000000pt;}
.y3b_c00084{bottom:389.120000pt;}
.y3a_c00084{bottom:424.960000pt;}
.y36_c00084{bottom:425.600000pt;}
.y38_c00084{bottom:426.880000pt;}
.y39_c00084{bottom:427.520000pt;}
.y37_c00084{bottom:428.160000pt;}
.y33_c00084{bottom:462.720000pt;}
.y32_c00084{bottom:463.360000pt;}
.y35_c00084{bottom:464.000000pt;}
.y34_c00084{bottom:464.640000pt;}
.y30_c00084{bottom:465.280000pt;}
.y31_c00084{bottom:465.920000pt;}
.y2e_c00084{bottom:500.480000pt;}
.y2f_c00084{bottom:502.400000pt;}
.y2d_c00084{bottom:503.040000pt;}
.y2c_c00084{bottom:503.680000pt;}
.y2b_c00084{bottom:538.240000pt;}
.y2a_c00084{bottom:538.880000pt;}
.y29_c00084{bottom:540.800000pt;}
.y28_c00084{bottom:541.440000pt;}
.y27_c00084{bottom:576.640000pt;}
.y26_c00084{bottom:578.560000pt;}
.y25_c00084{bottom:579.200000pt;}
.y23_c00084{bottom:613.760000pt;}
.y22_c00084{bottom:614.400000pt;}
.y21_c00084{bottom:616.960000pt;}
.y24_c00084{bottom:617.600000pt;}
.y1e_c00084{bottom:651.520000pt;}
.y1c_c00084{bottom:652.160000pt;}
.y1f_c00084{bottom:652.800000pt;}
.y20_c00084{bottom:654.080000pt;}
.y1d_c00084{bottom:654.720000pt;}
.y19_c00084{bottom:689.920000pt;}
.y1a_c00084{bottom:690.560000pt;}
.y17_c00084{bottom:691.840000pt;}
.y18_c00084{bottom:692.480000pt;}
.y1b_c00084{bottom:693.120000pt;}
.y14_c00084{bottom:727.680000pt;}
.y16_c00084{bottom:729.600000pt;}
.y13_c00084{bottom:730.240000pt;}
.y15_c00084{bottom:730.880000pt;}
.y12_c00084{bottom:775.040000pt;}
.y11_c00084{bottom:776.960000pt;}
.yb_c00084{bottom:812.160000pt;}
.ye_c00084{bottom:812.800000pt;}
.y10_c00084{bottom:813.440000pt;}
.ya_c00084{bottom:814.080000pt;}
.yd_c00084{bottom:814.720000pt;}
.yc_c00084{bottom:815.360000pt;}
.yf_c00084{bottom:816.000000pt;}
.y6_c00084{bottom:851.200000pt;}
.y7_c00084{bottom:852.480000pt;}
.y8_c00084{bottom:853.120000pt;}
.y9_c00084{bottom:853.760000pt;}
.y2_c00084{bottom:887.680000pt;}
.y1_c00084{bottom:890.240000pt;}
.y3_c00084{bottom:890.880000pt;}
.y4_c00084{bottom:891.520000pt;}
.y5_c00084{bottom:892.160000pt;}
.h2_c00084{height:27.645000pt;}
.h4_c00084{height:29.948750pt;}
.h9_c00084{height:34.556250pt;}
.h3_c00084{height:36.860000pt;}
.h5_c00084{height:39.163750pt;}
.h6_c00084{height:41.467500pt;}
.hc_c00084{height:43.771250pt;}
.h8_c00084{height:46.075000pt;}
.h7_c00084{height:48.378750pt;}
.hb_c00084{height:50.682500pt;}
.hd_c00084{height:52.986250pt;}
.ha_c00084{height:55.290000pt;}
.h1_c00084{height:1016.666667pt;}
.h0_c00084{height:1016.960000pt;}
.w0_c00084{width:708.480000pt;}
.w1_c00084{width:708.666667pt;}
.x0_c00084{left:0.000000pt;}
.xd_c00084{left:69.760000pt;}
.x1_c00084{left:71.680000pt;}
.x1b_c00084{left:99.200000pt;}
.x2_c00084{left:108.160000pt;}
.x3b_c00084{left:117.120000pt;}
.xe_c00084{left:119.040000pt;}
.x23_c00084{left:128.000000pt;}
.x3_c00084{left:146.560000pt;}
.x37_c00084{left:155.520000pt;}
.x1d_c00084{left:165.760000pt;}
.x4_c00084{left:175.360000pt;}
.x15_c00084{left:184.960000pt;}
.xf_c00084{left:195.200000pt;}
.x32_c00084{left:204.160000pt;}
.x1c_c00084{left:213.760000pt;}
.x16_c00084{left:242.560000pt;}
.x24_c00084{left:252.160000pt;}
.x1e_c00084{left:261.120000pt;}
.x29_c00084{left:270.720000pt;}
.x5_c00084{left:280.960000pt;}
.x33_c00084{left:290.560000pt;}
.x6_c00084{left:309.120000pt;}
.x1f_c00084{left:320.000000pt;}
.x2e_c00084{left:328.320000pt;}
.x17_c00084{left:337.920000pt;}
.x25_c00084{left:347.520000pt;}
.x2f_c00084{left:366.720000pt;}
.x2a_c00084{left:376.320000pt;}
.x34_c00084{left:385.920000pt;}
.x3a_c00084{left:396.160000pt;}
.x7_c00084{left:405.760000pt;}
.x10_c00084{left:414.720000pt;}
.x36_c00084{left:424.320000pt;}
.x26_c00084{left:425.600000pt;}
.x8_c00084{left:434.560000pt;}
.x20_c00084{left:444.160000pt;}
.x11_c00084{left:445.440000pt;}
.x9_c00084{left:462.720000pt;}
.x21_c00084{left:472.960000pt;}
.x18_c00084{left:481.920000pt;}
.x12_c00084{left:491.520000pt;}
.x27_c00084{left:501.760000pt;}
.x38_c00084{left:510.720000pt;}
.xa_c00084{left:520.960000pt;}
.x2b_c00084{left:522.240000pt;}
.x28_c00084{left:530.560000pt;}
.x30_c00084{left:531.840000pt;}
.x35_c00084{left:540.160000pt;}
.x39_c00084{left:549.120000pt;}
.x31_c00084{left:550.400000pt;}
.xb_c00084{left:560.000000pt;}
.x13_c00084{left:578.560000pt;}
.xc_c00084{left:587.520000pt;}
.x2c_c00084{left:588.800000pt;}
.x14_c00084{left:597.120000pt;}
.x19_c00084{left:599.040000pt;}
.x3c_c00084{left:616.960000pt;}
.x22_c00084{left:618.240000pt;}
.x1a_c00084{left:626.560000pt;}
.x2d_c00084{left:627.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_118586cbdd679437bf386186.woff2')format("woff");}.ff1_c00085{font-family:ff1_c00085;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00085{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00085{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1_c00085{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00085{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m16_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);}
.m2f_c00085{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);}
.m3d_c00085{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m3_c00085{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);}
.m2e_c00085{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m2_c00085{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);}
.m24_c00085{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00085{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);}
.m34_c00085{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m25_c00085{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m17_c00085{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m33_c00085{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);}
.m11_c00085{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);}
.m21_c00085{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);}
.m8_c00085{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m6_c00085{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);}
.m29_c00085{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m3b_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);}
.m2d_c00085{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00085{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m45_c00085{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m46_c00085{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m32_c00085{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);}
.m1a_c00085{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m10_c00085{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);}
.m3f_c00085{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);}
.m2a_c00085{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m4_c00085{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m13_c00085{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);}
.mc_c00085{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00085{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m12_c00085{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);}
.m30_c00085{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m19_c00085{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_c00085{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.mb_c00085{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m5_c00085{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m36_c00085{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);}
.m27_c00085{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00085{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m41_c00085{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m28_c00085{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m43_c00085{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m39_c00085{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m7_c00085{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);}
.m22_c00085{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m14_c00085{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);}
.m44_c00085{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m35_c00085{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m23_c00085{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m26_c00085{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);}
.md_c00085{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m37_c00085{transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);}
.m18_c00085{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00085{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);}
.m3a_c00085{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00085{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.ma_c00085{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m15_c00085{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m31_c00085{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);}
.m20_c00085{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00085{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m40_c00085{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);}
.m38_c00085{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.mf_c00085{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m42_c00085{transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00085{transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);}
.v1_c00085{vertical-align:-2.880000px;}
.v0_c00085{vertical-align:0.000000px;}
.ls0_c00085{letter-spacing:0.000000px;}
.sc__c00085{text-shadow:none;}
.sc0_c00085{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00085{-webkit-text-stroke:0px transparent;}
.sc0_c00085{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00085{word-spacing:0.000000px;}
.ws0_c00085{word-spacing:9.464640px;}
.fc0_c00085{color:transparent;}
.fs4_c00085{font-size:34.560000px;}
.fs5_c00085{font-size:37.440000px;}
.fs7_c00085{font-size:43.200000px;}
.fs3_c00085{font-size:46.080000px;}
.fs6_c00085{font-size:48.960000px;}
.fs0_c00085{font-size:51.840000px;}
.fsa_c00085{font-size:54.720000px;}
.fs8_c00085{font-size:57.600000px;}
.fs1_c00085{font-size:60.480000px;}
.fs2_c00085{font-size:63.360000px;}
.fsb_c00085{font-size:66.240000px;}
.fs9_c00085{font-size:69.120000px;}
.y0_c00085{bottom:0.000000px;}
.y5e_c00085{bottom:84.240000px;}
.y5f_c00085{bottom:84.960000px;}
.y5c_c00085{bottom:85.680000px;}
.y5d_c00085{bottom:86.400000px;}
.y5b_c00085{bottom:88.560000px;}
.y58_c00085{bottom:126.000000px;}
.y5a_c00085{bottom:128.160000px;}
.y59_c00085{bottom:128.880000px;}
.y57_c00085{bottom:129.600000px;}
.y56_c00085{bottom:131.760000px;}
.y55_c00085{bottom:169.200000px;}
.y54_c00085{bottom:171.360000px;}
.y53_c00085{bottom:172.080000px;}
.y52_c00085{bottom:172.800000px;}
.y51_c00085{bottom:173.520000px;}
.y4e_c00085{bottom:212.400000px;}
.y50_c00085{bottom:213.840000px;}
.y4f_c00085{bottom:214.560000px;}
.y4d_c00085{bottom:215.280000px;}
.y4c_c00085{bottom:216.000000px;}
.y4a_c00085{bottom:254.880000px;}
.y49_c00085{bottom:257.040000px;}
.y4b_c00085{bottom:257.760000px;}
.y48_c00085{bottom:258.480000px;}
.y45_c00085{bottom:298.080000px;}
.y47_c00085{bottom:299.520000px;}
.y46_c00085{bottom:300.240000px;}
.y43_c00085{bottom:339.840000px;}
.y42_c00085{bottom:340.560000px;}
.y40_c00085{bottom:341.280000px;}
.y44_c00085{bottom:342.000000px;}
.y41_c00085{bottom:342.720000px;}
.y3f_c00085{bottom:343.440000px;}
.y3d_c00085{bottom:382.320000px;}
.y3e_c00085{bottom:383.040000px;}
.y3c_c00085{bottom:383.760000px;}
.y3b_c00085{bottom:385.200000px;}
.y3a_c00085{bottom:385.920000px;}
.y39_c00085{bottom:386.640000px;}
.y38_c00085{bottom:425.520000px;}
.y37_c00085{bottom:428.400000px;}
.y36_c00085{bottom:429.120000px;}
.y31_c00085{bottom:467.280000px;}
.y35_c00085{bottom:468.000000px;}
.y34_c00085{bottom:468.720000px;}
.y32_c00085{bottom:470.880000px;}
.y33_c00085{bottom:471.600000px;}
.y30_c00085{bottom:511.920000px;}
.y2f_c00085{bottom:514.080000px;}
.y2d_c00085{bottom:553.680000px;}
.y2a_c00085{bottom:554.400000px;}
.y2c_c00085{bottom:555.840000px;}
.y2b_c00085{bottom:556.560000px;}
.y2e_c00085{bottom:557.280000px;}
.y29_c00085{bottom:596.880000px;}
.y28_c00085{bottom:599.040000px;}
.y27_c00085{bottom:599.760000px;}
.y26_c00085{bottom:650.160000px;}
.y25_c00085{bottom:652.320000px;}
.y24_c00085{bottom:693.360000px;}
.y22_c00085{bottom:695.520000px;}
.y23_c00085{bottom:696.240000px;}
.y1d_c00085{bottom:735.120000px;}
.y20_c00085{bottom:735.840000px;}
.y21_c00085{bottom:736.560000px;}
.y1c_c00085{bottom:737.280000px;}
.y1e_c00085{bottom:738.000000px;}
.y1f_c00085{bottom:738.720000px;}
.y17_c00085{bottom:777.600000px;}
.y16_c00085{bottom:779.760000px;}
.y18_c00085{bottom:780.480000px;}
.y19_c00085{bottom:781.200000px;}
.y1a_c00085{bottom:781.920000px;}
.y1b_c00085{bottom:782.640000px;}
.y12_c00085{bottom:822.240000px;}
.y13_c00085{bottom:822.960000px;}
.y14_c00085{bottom:823.680000px;}
.y15_c00085{bottom:824.400000px;}
.ya_c00085{bottom:862.560000px;}
.yd_c00085{bottom:864.000000px;}
.y11_c00085{bottom:864.720000px;}
.yb_c00085{bottom:865.440000px;}
.yc_c00085{bottom:866.160000px;}
.ye_c00085{bottom:866.880000px;}
.y10_c00085{bottom:867.600000px;}
.yf_c00085{bottom:868.320000px;}
.y8_c00085{bottom:907.200000px;}
.y5_c00085{bottom:907.920000px;}
.y6_c00085{bottom:908.640000px;}
.y7_c00085{bottom:909.360000px;}
.y9_c00085{bottom:910.080000px;}
.y4_c00085{bottom:960.480000px;}
.y3_c00085{bottom:961.920000px;}
.y1_c00085{bottom:1015.200000px;}
.y2_c00085{bottom:1015.920000px;}
.h6_c00085{height:31.100625px;}
.h7_c00085{height:33.692344px;}
.h9_c00085{height:38.875781px;}
.h5_c00085{height:41.467500px;}
.h8_c00085{height:44.059219px;}
.h2_c00085{height:46.650937px;}
.hc_c00085{height:49.242656px;}
.ha_c00085{height:51.834375px;}
.h3_c00085{height:54.426094px;}
.h4_c00085{height:57.017812px;}
.hd_c00085{height:59.609531px;}
.hb_c00085{height:62.201250px;}
.h0_c00085{height:1153.440000px;}
.h1_c00085{height:1153.500000px;}
.w0_c00085{width:810.720000px;}
.w1_c00085{width:810.750000px;}
.x0_c00085{left:0.000000px;}
.xc_c00085{left:88.560000px;}
.x15_c00085{left:90.000000px;}
.x1e_c00085{left:120.960000px;}
.xd_c00085{left:131.760000px;}
.x46_c00085{left:133.200000px;}
.x31_c00085{left:142.560000px;}
.x1f_c00085{left:153.360000px;}
.xe_c00085{left:164.160000px;}
.x3f_c00085{left:165.600000px;}
.x3d_c00085{left:175.680000px;}
.x47_c00085{left:177.120000px;}
.x37_c00085{left:185.760000px;}
.x5_c00085{left:196.560000px;}
.x16_c00085{left:205.920000px;}
.x22_c00085{left:207.360000px;}
.x2c_c00085{left:218.160000px;}
.x6_c00085{left:228.240000px;}
.x27_c00085{left:239.040000px;}
.x34_c00085{left:249.840000px;}
.x3_c00085{left:251.280000px;}
.x30_c00085{left:261.360000px;}
.xf_c00085{left:271.440000px;}
.x23_c00085{left:282.240000px;}
.x38_c00085{left:283.680000px;}
.x17_c00085{left:293.760000px;}
.x1_c00085{left:304.560000px;}
.x7_c00085{left:315.360000px;}
.x18_c00085{left:325.440000px;}
.x43_c00085{left:327.600000px;}
.x29_c00085{left:336.240000px;}
.x8_c00085{left:347.040000px;}
.x2_c00085{left:358.560000px;}
.x24_c00085{left:367.200000px;}
.x2d_c00085{left:369.360000px;}
.x19_c00085{left:379.440000px;}
.x4_c00085{left:389.520000px;}
.x28_c00085{left:390.960000px;}
.x1a_c00085{left:411.840000px;}
.x2a_c00085{left:423.360000px;}
.x10_c00085{left:432.000000px;}
.x20_c00085{left:433.440000px;}
.x48_c00085{left:434.880000px;}
.x35_c00085{left:444.960000px;}
.x32_c00085{left:466.560000px;}
.x11_c00085{left:477.360000px;}
.x21_c00085{left:488.160000px;}
.x9_c00085{left:498.960000px;}
.x1b_c00085{left:509.760000px;}
.x44_c00085{left:511.200000px;}
.x2e_c00085{left:519.840000px;}
.x40_c00085{left:532.080000px;}
.x1c_c00085{left:541.440000px;}
.x2b_c00085{left:552.240000px;}
.x49_c00085{left:553.680000px;}
.x12_c00085{left:563.760000px;}
.x3a_c00085{left:573.840000px;}
.x36_c00085{left:576.000000px;}
.x2f_c00085{left:585.360000px;}
.x25_c00085{left:596.160000px;}
.x4a_c00085{left:597.600000px;}
.x39_c00085{left:606.240000px;}
.x1d_c00085{left:617.760000px;}
.x45_c00085{left:619.200000px;}
.xa_c00085{left:628.560000px;}
.x13_c00085{left:640.080000px;}
.x3b_c00085{left:650.160000px;}
.x41_c00085{left:652.320000px;}
.xb_c00085{left:660.960000px;}
.x33_c00085{left:673.200000px;}
.x42_c00085{left:683.280000px;}
.x14_c00085{left:693.360000px;}
.x3c_c00085{left:704.160000px;}
.x3e_c00085{left:705.600000px;}
.x26_c00085{left:715.680000px;}
@media print{
.v1_c00085{vertical-align:-2.560000pt;}
.v0_c00085{vertical-align:0.000000pt;}
.ls0_c00085{letter-spacing:0.000000pt;}
.ws1_c00085{word-spacing:0.000000pt;}
.ws0_c00085{word-spacing:8.413013pt;}
.fs4_c00085{font-size:30.720000pt;}
.fs5_c00085{font-size:33.280000pt;}
.fs7_c00085{font-size:38.400000pt;}
.fs3_c00085{font-size:40.960000pt;}
.fs6_c00085{font-size:43.520000pt;}
.fs0_c00085{font-size:46.080000pt;}
.fsa_c00085{font-size:48.640000pt;}
.fs8_c00085{font-size:51.200000pt;}
.fs1_c00085{font-size:53.760000pt;}
.fs2_c00085{font-size:56.320000pt;}
.fsb_c00085{font-size:58.880000pt;}
.fs9_c00085{font-size:61.440000pt;}
.y0_c00085{bottom:0.000000pt;}
.y5e_c00085{bottom:74.880000pt;}
.y5f_c00085{bottom:75.520000pt;}
.y5c_c00085{bottom:76.160000pt;}
.y5d_c00085{bottom:76.800000pt;}
.y5b_c00085{bottom:78.720000pt;}
.y58_c00085{bottom:112.000000pt;}
.y5a_c00085{bottom:113.920000pt;}
.y59_c00085{bottom:114.560000pt;}
.y57_c00085{bottom:115.200000pt;}
.y56_c00085{bottom:117.120000pt;}
.y55_c00085{bottom:150.400000pt;}
.y54_c00085{bottom:152.320000pt;}
.y53_c00085{bottom:152.960000pt;}
.y52_c00085{bottom:153.600000pt;}
.y51_c00085{bottom:154.240000pt;}
.y4e_c00085{bottom:188.800000pt;}
.y50_c00085{bottom:190.080000pt;}
.y4f_c00085{bottom:190.720000pt;}
.y4d_c00085{bottom:191.360000pt;}
.y4c_c00085{bottom:192.000000pt;}
.y4a_c00085{bottom:226.560000pt;}
.y49_c00085{bottom:228.480000pt;}
.y4b_c00085{bottom:229.120000pt;}
.y48_c00085{bottom:229.760000pt;}
.y45_c00085{bottom:264.960000pt;}
.y47_c00085{bottom:266.240000pt;}
.y46_c00085{bottom:266.880000pt;}
.y43_c00085{bottom:302.080000pt;}
.y42_c00085{bottom:302.720000pt;}
.y40_c00085{bottom:303.360000pt;}
.y44_c00085{bottom:304.000000pt;}
.y41_c00085{bottom:304.640000pt;}
.y3f_c00085{bottom:305.280000pt;}
.y3d_c00085{bottom:339.840000pt;}
.y3e_c00085{bottom:340.480000pt;}
.y3c_c00085{bottom:341.120000pt;}
.y3b_c00085{bottom:342.400000pt;}
.y3a_c00085{bottom:343.040000pt;}
.y39_c00085{bottom:343.680000pt;}
.y38_c00085{bottom:378.240000pt;}
.y37_c00085{bottom:380.800000pt;}
.y36_c00085{bottom:381.440000pt;}
.y31_c00085{bottom:415.360000pt;}
.y35_c00085{bottom:416.000000pt;}
.y34_c00085{bottom:416.640000pt;}
.y32_c00085{bottom:418.560000pt;}
.y33_c00085{bottom:419.200000pt;}
.y30_c00085{bottom:455.040000pt;}
.y2f_c00085{bottom:456.960000pt;}
.y2d_c00085{bottom:492.160000pt;}
.y2a_c00085{bottom:492.800000pt;}
.y2c_c00085{bottom:494.080000pt;}
.y2b_c00085{bottom:494.720000pt;}
.y2e_c00085{bottom:495.360000pt;}
.y29_c00085{bottom:530.560000pt;}
.y28_c00085{bottom:532.480000pt;}
.y27_c00085{bottom:533.120000pt;}
.y26_c00085{bottom:577.920000pt;}
.y25_c00085{bottom:579.840000pt;}
.y24_c00085{bottom:616.320000pt;}
.y22_c00085{bottom:618.240000pt;}
.y23_c00085{bottom:618.880000pt;}
.y1d_c00085{bottom:653.440000pt;}
.y20_c00085{bottom:654.080000pt;}
.y21_c00085{bottom:654.720000pt;}
.y1c_c00085{bottom:655.360000pt;}
.y1e_c00085{bottom:656.000000pt;}
.y1f_c00085{bottom:656.640000pt;}
.y17_c00085{bottom:691.200000pt;}
.y16_c00085{bottom:693.120000pt;}
.y18_c00085{bottom:693.760000pt;}
.y19_c00085{bottom:694.400000pt;}
.y1a_c00085{bottom:695.040000pt;}
.y1b_c00085{bottom:695.680000pt;}
.y12_c00085{bottom:730.880000pt;}
.y13_c00085{bottom:731.520000pt;}
.y14_c00085{bottom:732.160000pt;}
.y15_c00085{bottom:732.800000pt;}
.ya_c00085{bottom:766.720000pt;}
.yd_c00085{bottom:768.000000pt;}
.y11_c00085{bottom:768.640000pt;}
.yb_c00085{bottom:769.280000pt;}
.yc_c00085{bottom:769.920000pt;}
.ye_c00085{bottom:770.560000pt;}
.y10_c00085{bottom:771.200000pt;}
.yf_c00085{bottom:771.840000pt;}
.y8_c00085{bottom:806.400000pt;}
.y5_c00085{bottom:807.040000pt;}
.y6_c00085{bottom:807.680000pt;}
.y7_c00085{bottom:808.320000pt;}
.y9_c00085{bottom:808.960000pt;}
.y4_c00085{bottom:853.760000pt;}
.y3_c00085{bottom:855.040000pt;}
.y1_c00085{bottom:902.400000pt;}
.y2_c00085{bottom:903.040000pt;}
.h6_c00085{height:27.645000pt;}
.h7_c00085{height:29.948750pt;}
.h9_c00085{height:34.556250pt;}
.h5_c00085{height:36.860000pt;}
.h8_c00085{height:39.163750pt;}
.h2_c00085{height:41.467500pt;}
.hc_c00085{height:43.771250pt;}
.ha_c00085{height:46.075000pt;}
.h3_c00085{height:48.378750pt;}
.h4_c00085{height:50.682500pt;}
.hd_c00085{height:52.986250pt;}
.hb_c00085{height:55.290000pt;}
.h0_c00085{height:1025.280000pt;}
.h1_c00085{height:1025.333333pt;}
.w0_c00085{width:720.640000pt;}
.w1_c00085{width:720.666667pt;}
.x0_c00085{left:0.000000pt;}
.xc_c00085{left:78.720000pt;}
.x15_c00085{left:80.000000pt;}
.x1e_c00085{left:107.520000pt;}
.xd_c00085{left:117.120000pt;}
.x46_c00085{left:118.400000pt;}
.x31_c00085{left:126.720000pt;}
.x1f_c00085{left:136.320000pt;}
.xe_c00085{left:145.920000pt;}
.x3f_c00085{left:147.200000pt;}
.x3d_c00085{left:156.160000pt;}
.x47_c00085{left:157.440000pt;}
.x37_c00085{left:165.120000pt;}
.x5_c00085{left:174.720000pt;}
.x16_c00085{left:183.040000pt;}
.x22_c00085{left:184.320000pt;}
.x2c_c00085{left:193.920000pt;}
.x6_c00085{left:202.880000pt;}
.x27_c00085{left:212.480000pt;}
.x34_c00085{left:222.080000pt;}
.x3_c00085{left:223.360000pt;}
.x30_c00085{left:232.320000pt;}
.xf_c00085{left:241.280000pt;}
.x23_c00085{left:250.880000pt;}
.x38_c00085{left:252.160000pt;}
.x17_c00085{left:261.120000pt;}
.x1_c00085{left:270.720000pt;}
.x7_c00085{left:280.320000pt;}
.x18_c00085{left:289.280000pt;}
.x43_c00085{left:291.200000pt;}
.x29_c00085{left:298.880000pt;}
.x8_c00085{left:308.480000pt;}
.x2_c00085{left:318.720000pt;}
.x24_c00085{left:326.400000pt;}
.x2d_c00085{left:328.320000pt;}
.x19_c00085{left:337.280000pt;}
.x4_c00085{left:346.240000pt;}
.x28_c00085{left:347.520000pt;}
.x1a_c00085{left:366.080000pt;}
.x2a_c00085{left:376.320000pt;}
.x10_c00085{left:384.000000pt;}
.x20_c00085{left:385.280000pt;}
.x48_c00085{left:386.560000pt;}
.x35_c00085{left:395.520000pt;}
.x32_c00085{left:414.720000pt;}
.x11_c00085{left:424.320000pt;}
.x21_c00085{left:433.920000pt;}
.x9_c00085{left:443.520000pt;}
.x1b_c00085{left:453.120000pt;}
.x44_c00085{left:454.400000pt;}
.x2e_c00085{left:462.080000pt;}
.x40_c00085{left:472.960000pt;}
.x1c_c00085{left:481.280000pt;}
.x2b_c00085{left:490.880000pt;}
.x49_c00085{left:492.160000pt;}
.x12_c00085{left:501.120000pt;}
.x3a_c00085{left:510.080000pt;}
.x36_c00085{left:512.000000pt;}
.x2f_c00085{left:520.320000pt;}
.x25_c00085{left:529.920000pt;}
.x4a_c00085{left:531.200000pt;}
.x39_c00085{left:538.880000pt;}
.x1d_c00085{left:549.120000pt;}
.x45_c00085{left:550.400000pt;}
.xa_c00085{left:558.720000pt;}
.x13_c00085{left:568.960000pt;}
.x3b_c00085{left:577.920000pt;}
.x41_c00085{left:579.840000pt;}
.xb_c00085{left:587.520000pt;}
.x33_c00085{left:598.400000pt;}
.x42_c00085{left:607.360000pt;}
.x14_c00085{left:616.320000pt;}
.x3c_c00085{left:625.920000pt;}
.x3e_c00085{left:627.200000pt;}
.x26_c00085{left:636.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f1cd60c7395b0a043249f19a.woff2')format("woff");}.ff1_c00086{font-family:ff1_c00086;line-height:1.109863;font-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_c00086{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);}
.m49_c00086{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);}
.m59_c00086{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);}
.m57_c00086{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00086{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m41_c00086{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00086{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00086{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m54_c00086{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.ma_c00086{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2_c00086{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mf_c00086{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m0_c00086{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m42_c00086{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00086{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m14_c00086{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mb_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);}
.m4d_c00086{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m31_c00086{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);}
.m3c_c00086{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m10_c00086{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_c00086{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m7_c00086{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m17_c00086{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m50_c00086{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);}
.m13_c00086{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00086{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);}
.m37_c00086{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);}
.m52_c00086{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);}
.m36_c00086{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00086{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);}
.m21_c00086{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00086{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);}
.m2b_c00086{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);}
.m47_c00086{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);}
.m34_c00086{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m3_c00086{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00086{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m35_c00086{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m39_c00086{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_c00086{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m23_c00086{transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00086{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);}
.m56_c00086{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m46_c00086{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m6_c00086{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m40_c00086{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);}
.m43_c00086{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m45_c00086{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m25_c00086{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);}
.m29_c00086{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m15_c00086{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);}
.m58_c00086{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m55_c00086{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00086{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m22_c00086{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);}
.m11_c00086{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m24_c00086{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00086{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);}
.m30_c00086{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.md_c00086{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00086{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m12_c00086{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00086{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);}
.m51_c00086{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);}
.mc_c00086{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m9_c00086{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m19_c00086{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);}
.m20_c00086{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m1_c00086{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m16_c00086{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00086{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00086{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m48_c00086{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.me_c00086{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m53_c00086{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m26_c00086{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);}
.m2f_c00086{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m4_c00086{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00086{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m8_c00086{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m33_c00086{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m44_c00086{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);}
.m3a_c00086{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00086{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);}
.m32_c00086{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m27_c00086{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00086{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);}
.m5_c00086{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00086{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00086{transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);}
.v0_c00086{vertical-align:0.000000px;}
.ls0_c00086{letter-spacing:0.000000px;}
.sc__c00086{text-shadow:none;}
.sc0_c00086{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00086{-webkit-text-stroke:0px transparent;}
.sc0_c00086{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00086{word-spacing:-1.659120px;}
.ws1_c00086{word-spacing:0.000000px;}
.fc0_c00086{color:transparent;}
.fsc_c00086{font-size:17.280000px;}
.fs3_c00086{font-size:34.560000px;}
.fs8_c00086{font-size:37.440000px;}
.fse_c00086{font-size:43.200000px;}
.fs4_c00086{font-size:46.080000px;}
.fs1_c00086{font-size:48.960000px;}
.fs6_c00086{font-size:51.840000px;}
.fs7_c00086{font-size:54.720000px;}
.fsa_c00086{font-size:57.600000px;}
.fs5_c00086{font-size:60.480000px;}
.fs2_c00086{font-size:63.360000px;}
.fsb_c00086{font-size:66.240000px;}
.fs9_c00086{font-size:69.120000px;}
.fs0_c00086{font-size:72.000000px;}
.fsd_c00086{font-size:74.880000px;}
.y0_c00086{bottom:0.000000px;}
.y6e_c00086{bottom:65.520000px;}
.y6d_c00086{bottom:68.400000px;}
.y6b_c00086{bottom:105.120000px;}
.y6a_c00086{bottom:105.840000px;}
.y6c_c00086{bottom:107.280000px;}
.y69_c00086{bottom:108.000000px;}
.y68_c00086{bottom:110.160000px;}
.y67_c00086{bottom:110.880000px;}
.y66_c00086{bottom:149.040000px;}
.y64_c00086{bottom:149.760000px;}
.y65_c00086{bottom:150.480000px;}
.y63_c00086{bottom:151.920000px;}
.y61_c00086{bottom:190.800000px;}
.y62_c00086{bottom:192.960000px;}
.y60_c00086{bottom:193.680000px;}
.y5f_c00086{bottom:194.400000px;}
.y5e_c00086{bottom:195.840000px;}
.y5d_c00086{bottom:233.280000px;}
.y5c_c00086{bottom:235.440000px;}
.y5b_c00086{bottom:236.160000px;}
.y5a_c00086{bottom:236.880000px;}
.y59_c00086{bottom:237.600000px;}
.y58_c00086{bottom:238.320000px;}
.y56_c00086{bottom:275.040000px;}
.y55_c00086{bottom:275.760000px;}
.y57_c00086{bottom:278.640000px;}
.y53_c00086{bottom:279.360000px;}
.y54_c00086{bottom:280.080000px;}
.y52_c00086{bottom:280.800000px;}
.y50_c00086{bottom:318.960000px;}
.y4d_c00086{bottom:319.680000px;}
.y4f_c00086{bottom:321.120000px;}
.y51_c00086{bottom:321.840000px;}
.y4e_c00086{bottom:322.560000px;}
.y4a_c00086{bottom:362.880000px;}
.y4c_c00086{bottom:363.600000px;}
.y4b_c00086{bottom:364.320000px;}
.y48_c00086{bottom:365.040000px;}
.y49_c00086{bottom:365.760000px;}
.y44_c00086{bottom:403.200000px;}
.y47_c00086{bottom:403.920000px;}
.y45_c00086{bottom:404.640000px;}
.y46_c00086{bottom:406.800000px;}
.y43_c00086{bottom:407.520000px;}
.y42_c00086{bottom:408.240000px;}
.y40_c00086{bottom:446.400000px;}
.y41_c00086{bottom:447.120000px;}
.y3e_c00086{bottom:447.840000px;}
.y3d_c00086{bottom:449.280000px;}
.y3f_c00086{bottom:450.000000px;}
.y3c_c00086{bottom:450.720000px;}
.y3b_c00086{bottom:490.320000px;}
.y3a_c00086{bottom:492.480000px;}
.y39_c00086{bottom:493.200000px;}
.y37_c00086{bottom:533.520000px;}
.y36_c00086{bottom:535.680000px;}
.y38_c00086{bottom:536.400000px;}
.y35_c00086{bottom:574.560000px;}
.y32_c00086{bottom:575.280000px;}
.y31_c00086{bottom:576.000000px;}
.y33_c00086{bottom:578.160000px;}
.y34_c00086{bottom:578.880000px;}
.y30_c00086{bottom:618.480000px;}
.y2f_c00086{bottom:619.200000px;}
.y2d_c00086{bottom:619.920000px;}
.y2e_c00086{bottom:620.640000px;}
.y2c_c00086{bottom:621.360000px;}
.y28_c00086{bottom:660.960000px;}
.y27_c00086{bottom:661.680000px;}
.y2a_c00086{bottom:663.120000px;}
.y29_c00086{bottom:663.840000px;}
.y2b_c00086{bottom:664.560000px;}
.y25_c00086{bottom:703.440000px;}
.y26_c00086{bottom:704.160000px;}
.y23_c00086{bottom:706.320000px;}
.y24_c00086{bottom:707.040000px;}
.y1f_c00086{bottom:745.920000px;}
.y20_c00086{bottom:748.800000px;}
.y21_c00086{bottom:749.520000px;}
.y22_c00086{bottom:750.240000px;}
.y1e_c00086{bottom:799.200000px;}
.y1c_c00086{bottom:842.400000px;}
.y18_c00086{bottom:843.840000px;}
.y1a_c00086{bottom:844.560000px;}
.y19_c00086{bottom:845.280000px;}
.y1b_c00086{bottom:846.000000px;}
.y1d_c00086{bottom:846.720000px;}
.y16_c00086{bottom:884.880000px;}
.y13_c00086{bottom:886.320000px;}
.y14_c00086{bottom:887.040000px;}
.y15_c00086{bottom:887.760000px;}
.y17_c00086{bottom:888.480000px;}
.ye_c00086{bottom:928.800000px;}
.yf_c00086{bottom:929.520000px;}
.y10_c00086{bottom:930.240000px;}
.y11_c00086{bottom:930.960000px;}
.y12_c00086{bottom:931.680000px;}
.y8_c00086{bottom:969.120000px;}
.yc_c00086{bottom:971.280000px;}
.y9_c00086{bottom:972.000000px;}
.ya_c00086{bottom:972.720000px;}
.yb_c00086{bottom:973.440000px;}
.yd_c00086{bottom:974.160000px;}
.y3_c00086{bottom:1012.320000px;}
.y4_c00086{bottom:1013.040000px;}
.y7_c00086{bottom:1014.480000px;}
.y2_c00086{bottom:1015.200000px;}
.y5_c00086{bottom:1016.640000px;}
.y6_c00086{bottom:1017.360000px;}
.y1_c00086{bottom:1085.760000px;}
.he_c00086{height:15.550313px;}
.h5_c00086{height:31.100625px;}
.ha_c00086{height:33.692344px;}
.h10_c00086{height:38.875781px;}
.h6_c00086{height:41.467500px;}
.h3_c00086{height:44.059219px;}
.h8_c00086{height:46.650937px;}
.h9_c00086{height:49.242656px;}
.hc_c00086{height:51.834375px;}
.h7_c00086{height:54.426094px;}
.h4_c00086{height:57.017812px;}
.hd_c00086{height:59.609531px;}
.hb_c00086{height:62.201250px;}
.h2_c00086{height:64.792969px;}
.hf_c00086{height:67.384687px;}
.h0_c00086{height:1153.440000px;}
.h1_c00086{height:1153.500000px;}
.w0_c00086{width:810.720000px;}
.w1_c00086{width:810.750000px;}
.x0_c00086{left:0.000000px;}
.x30_c00086{left:86.400000px;}
.x21_c00086{left:87.840000px;}
.x2_c00086{left:89.280000px;}
.x48_c00086{left:90.720000px;}
.x3_c00086{left:120.960000px;}
.xe_c00086{left:131.040000px;}
.x38_c00086{left:142.560000px;}
.x3f_c00086{left:151.920000px;}
.x31_c00086{left:153.360000px;}
.xf_c00086{left:162.720000px;}
.x1d_c00086{left:164.160000px;}
.x47_c00086{left:174.240000px;}
.x22_c00086{left:183.600000px;}
.x29_c00086{left:195.120000px;}
.x16_c00086{left:206.640000px;}
.x4_c00086{left:216.000000px;}
.x4c_c00086{left:219.600000px;}
.x23_c00086{left:227.520000px;}
.x2a_c00086{left:237.600000px;}
.x17_c00086{left:239.040000px;}
.x1e_c00086{left:248.400000px;}
.x3c_c00086{left:249.840000px;}
.x40_c00086{left:259.200000px;}
.x3a_c00086{left:260.640000px;}
.x10_c00086{left:270.720000px;}
.x5_c00086{left:282.240000px;}
.x4d_c00086{left:291.600000px;}
.x11_c00086{left:302.400000px;}
.x6_c00086{left:313.200000px;}
.x41_c00086{left:314.640000px;}
.x32_c00086{left:334.800000px;}
.x2b_c00086{left:345.600000px;}
.x42_c00086{left:347.040000px;}
.x7_c00086{left:356.400000px;}
.x3d_c00086{left:357.840000px;}
.x24_c00086{left:367.200000px;}
.x49_c00086{left:377.280000px;}
.x18_c00086{left:378.720000px;}
.x4e_c00086{left:380.160000px;}
.x8_c00086{left:388.800000px;}
.x19_c00086{left:400.320000px;}
.x12_c00086{left:411.120000px;}
.x3e_c00086{left:421.200000px;}
.x33_c00086{left:422.640000px;}
.x4b_c00086{left:432.000000px;}
.x25_c00086{left:433.440000px;}
.x3b_c00086{left:443.520000px;}
.x4a_c00086{left:444.960000px;}
.x43_c00086{left:453.600000px;}
.x2c_c00086{left:455.760000px;}
.x34_c00086{left:475.920000px;}
.x44_c00086{left:477.360000px;}
.x1a_c00086{left:487.440000px;}
.x46_c00086{left:498.960000px;}
.x9_c00086{left:508.320000px;}
.x2d_c00086{left:519.120000px;}
.x1b_c00086{left:520.560000px;}
.x26_c00086{left:529.920000px;}
.xa_c00086{left:541.440000px;}
.x2e_c00086{left:551.520000px;}
.x13_c00086{left:562.320000px;}
.x1c_c00086{left:563.760000px;}
.xb_c00086{left:574.560000px;}
.x35_c00086{left:584.640000px;}
.x39_c00086{left:595.440000px;}
.x1f_c00086{left:605.520000px;}
.x14_c00086{left:606.960000px;}
.x27_c00086{left:627.840000px;}
.x15_c00086{left:639.360000px;}
.x45_c00086{left:650.160000px;}
.xc_c00086{left:660.960000px;}
.x37_c00086{left:671.040000px;}
.x20_c00086{left:682.560000px;}
.xd_c00086{left:693.360000px;}
.x36_c00086{left:704.160000px;}
.x28_c00086{left:714.240000px;}
.x2f_c00086{left:725.760000px;}
.x1_c00086{left:736.560000px;}
@media print{
.v0_c00086{vertical-align:0.000000pt;}
.ls0_c00086{letter-spacing:0.000000pt;}
.ws0_c00086{word-spacing:-1.474773pt;}
.ws1_c00086{word-spacing:0.000000pt;}
.fsc_c00086{font-size:15.360000pt;}
.fs3_c00086{font-size:30.720000pt;}
.fs8_c00086{font-size:33.280000pt;}
.fse_c00086{font-size:38.400000pt;}
.fs4_c00086{font-size:40.960000pt;}
.fs1_c00086{font-size:43.520000pt;}
.fs6_c00086{font-size:46.080000pt;}
.fs7_c00086{font-size:48.640000pt;}
.fsa_c00086{font-size:51.200000pt;}
.fs5_c00086{font-size:53.760000pt;}
.fs2_c00086{font-size:56.320000pt;}
.fsb_c00086{font-size:58.880000pt;}
.fs9_c00086{font-size:61.440000pt;}
.fs0_c00086{font-size:64.000000pt;}
.fsd_c00086{font-size:66.560000pt;}
.y0_c00086{bottom:0.000000pt;}
.y6e_c00086{bottom:58.240000pt;}
.y6d_c00086{bottom:60.800000pt;}
.y6b_c00086{bottom:93.440000pt;}
.y6a_c00086{bottom:94.080000pt;}
.y6c_c00086{bottom:95.360000pt;}
.y69_c00086{bottom:96.000000pt;}
.y68_c00086{bottom:97.920000pt;}
.y67_c00086{bottom:98.560000pt;}
.y66_c00086{bottom:132.480000pt;}
.y64_c00086{bottom:133.120000pt;}
.y65_c00086{bottom:133.760000pt;}
.y63_c00086{bottom:135.040000pt;}
.y61_c00086{bottom:169.600000pt;}
.y62_c00086{bottom:171.520000pt;}
.y60_c00086{bottom:172.160000pt;}
.y5f_c00086{bottom:172.800000pt;}
.y5e_c00086{bottom:174.080000pt;}
.y5d_c00086{bottom:207.360000pt;}
.y5c_c00086{bottom:209.280000pt;}
.y5b_c00086{bottom:209.920000pt;}
.y5a_c00086{bottom:210.560000pt;}
.y59_c00086{bottom:211.200000pt;}
.y58_c00086{bottom:211.840000pt;}
.y56_c00086{bottom:244.480000pt;}
.y55_c00086{bottom:245.120000pt;}
.y57_c00086{bottom:247.680000pt;}
.y53_c00086{bottom:248.320000pt;}
.y54_c00086{bottom:248.960000pt;}
.y52_c00086{bottom:249.600000pt;}
.y50_c00086{bottom:283.520000pt;}
.y4d_c00086{bottom:284.160000pt;}
.y4f_c00086{bottom:285.440000pt;}
.y51_c00086{bottom:286.080000pt;}
.y4e_c00086{bottom:286.720000pt;}
.y4a_c00086{bottom:322.560000pt;}
.y4c_c00086{bottom:323.200000pt;}
.y4b_c00086{bottom:323.840000pt;}
.y48_c00086{bottom:324.480000pt;}
.y49_c00086{bottom:325.120000pt;}
.y44_c00086{bottom:358.400000pt;}
.y47_c00086{bottom:359.040000pt;}
.y45_c00086{bottom:359.680000pt;}
.y46_c00086{bottom:361.600000pt;}
.y43_c00086{bottom:362.240000pt;}
.y42_c00086{bottom:362.880000pt;}
.y40_c00086{bottom:396.800000pt;}
.y41_c00086{bottom:397.440000pt;}
.y3e_c00086{bottom:398.080000pt;}
.y3d_c00086{bottom:399.360000pt;}
.y3f_c00086{bottom:400.000000pt;}
.y3c_c00086{bottom:400.640000pt;}
.y3b_c00086{bottom:435.840000pt;}
.y3a_c00086{bottom:437.760000pt;}
.y39_c00086{bottom:438.400000pt;}
.y37_c00086{bottom:474.240000pt;}
.y36_c00086{bottom:476.160000pt;}
.y38_c00086{bottom:476.800000pt;}
.y35_c00086{bottom:510.720000pt;}
.y32_c00086{bottom:511.360000pt;}
.y31_c00086{bottom:512.000000pt;}
.y33_c00086{bottom:513.920000pt;}
.y34_c00086{bottom:514.560000pt;}
.y30_c00086{bottom:549.760000pt;}
.y2f_c00086{bottom:550.400000pt;}
.y2d_c00086{bottom:551.040000pt;}
.y2e_c00086{bottom:551.680000pt;}
.y2c_c00086{bottom:552.320000pt;}
.y28_c00086{bottom:587.520000pt;}
.y27_c00086{bottom:588.160000pt;}
.y2a_c00086{bottom:589.440000pt;}
.y29_c00086{bottom:590.080000pt;}
.y2b_c00086{bottom:590.720000pt;}
.y25_c00086{bottom:625.280000pt;}
.y26_c00086{bottom:625.920000pt;}
.y23_c00086{bottom:627.840000pt;}
.y24_c00086{bottom:628.480000pt;}
.y1f_c00086{bottom:663.040000pt;}
.y20_c00086{bottom:665.600000pt;}
.y21_c00086{bottom:666.240000pt;}
.y22_c00086{bottom:666.880000pt;}
.y1e_c00086{bottom:710.400000pt;}
.y1c_c00086{bottom:748.800000pt;}
.y18_c00086{bottom:750.080000pt;}
.y1a_c00086{bottom:750.720000pt;}
.y19_c00086{bottom:751.360000pt;}
.y1b_c00086{bottom:752.000000pt;}
.y1d_c00086{bottom:752.640000pt;}
.y16_c00086{bottom:786.560000pt;}
.y13_c00086{bottom:787.840000pt;}
.y14_c00086{bottom:788.480000pt;}
.y15_c00086{bottom:789.120000pt;}
.y17_c00086{bottom:789.760000pt;}
.ye_c00086{bottom:825.600000pt;}
.yf_c00086{bottom:826.240000pt;}
.y10_c00086{bottom:826.880000pt;}
.y11_c00086{bottom:827.520000pt;}
.y12_c00086{bottom:828.160000pt;}
.y8_c00086{bottom:861.440000pt;}
.yc_c00086{bottom:863.360000pt;}
.y9_c00086{bottom:864.000000pt;}
.ya_c00086{bottom:864.640000pt;}
.yb_c00086{bottom:865.280000pt;}
.yd_c00086{bottom:865.920000pt;}
.y3_c00086{bottom:899.840000pt;}
.y4_c00086{bottom:900.480000pt;}
.y7_c00086{bottom:901.760000pt;}
.y2_c00086{bottom:902.400000pt;}
.y5_c00086{bottom:903.680000pt;}
.y6_c00086{bottom:904.320000pt;}
.y1_c00086{bottom:965.120000pt;}
.he_c00086{height:13.822500pt;}
.h5_c00086{height:27.645000pt;}
.ha_c00086{height:29.948750pt;}
.h10_c00086{height:34.556250pt;}
.h6_c00086{height:36.860000pt;}
.h3_c00086{height:39.163750pt;}
.h8_c00086{height:41.467500pt;}
.h9_c00086{height:43.771250pt;}
.hc_c00086{height:46.075000pt;}
.h7_c00086{height:48.378750pt;}
.h4_c00086{height:50.682500pt;}
.hd_c00086{height:52.986250pt;}
.hb_c00086{height:55.290000pt;}
.h2_c00086{height:57.593750pt;}
.hf_c00086{height:59.897500pt;}
.h0_c00086{height:1025.280000pt;}
.h1_c00086{height:1025.333333pt;}
.w0_c00086{width:720.640000pt;}
.w1_c00086{width:720.666667pt;}
.x0_c00086{left:0.000000pt;}
.x30_c00086{left:76.800000pt;}
.x21_c00086{left:78.080000pt;}
.x2_c00086{left:79.360000pt;}
.x48_c00086{left:80.640000pt;}
.x3_c00086{left:107.520000pt;}
.xe_c00086{left:116.480000pt;}
.x38_c00086{left:126.720000pt;}
.x3f_c00086{left:135.040000pt;}
.x31_c00086{left:136.320000pt;}
.xf_c00086{left:144.640000pt;}
.x1d_c00086{left:145.920000pt;}
.x47_c00086{left:154.880000pt;}
.x22_c00086{left:163.200000pt;}
.x29_c00086{left:173.440000pt;}
.x16_c00086{left:183.680000pt;}
.x4_c00086{left:192.000000pt;}
.x4c_c00086{left:195.200000pt;}
.x23_c00086{left:202.240000pt;}
.x2a_c00086{left:211.200000pt;}
.x17_c00086{left:212.480000pt;}
.x1e_c00086{left:220.800000pt;}
.x3c_c00086{left:222.080000pt;}
.x40_c00086{left:230.400000pt;}
.x3a_c00086{left:231.680000pt;}
.x10_c00086{left:240.640000pt;}
.x5_c00086{left:250.880000pt;}
.x4d_c00086{left:259.200000pt;}
.x11_c00086{left:268.800000pt;}
.x6_c00086{left:278.400000pt;}
.x41_c00086{left:279.680000pt;}
.x32_c00086{left:297.600000pt;}
.x2b_c00086{left:307.200000pt;}
.x42_c00086{left:308.480000pt;}
.x7_c00086{left:316.800000pt;}
.x3d_c00086{left:318.080000pt;}
.x24_c00086{left:326.400000pt;}
.x49_c00086{left:335.360000pt;}
.x18_c00086{left:336.640000pt;}
.x4e_c00086{left:337.920000pt;}
.x8_c00086{left:345.600000pt;}
.x19_c00086{left:355.840000pt;}
.x12_c00086{left:365.440000pt;}
.x3e_c00086{left:374.400000pt;}
.x33_c00086{left:375.680000pt;}
.x4b_c00086{left:384.000000pt;}
.x25_c00086{left:385.280000pt;}
.x3b_c00086{left:394.240000pt;}
.x4a_c00086{left:395.520000pt;}
.x43_c00086{left:403.200000pt;}
.x2c_c00086{left:405.120000pt;}
.x34_c00086{left:423.040000pt;}
.x44_c00086{left:424.320000pt;}
.x1a_c00086{left:433.280000pt;}
.x46_c00086{left:443.520000pt;}
.x9_c00086{left:451.840000pt;}
.x2d_c00086{left:461.440000pt;}
.x1b_c00086{left:462.720000pt;}
.x26_c00086{left:471.040000pt;}
.xa_c00086{left:481.280000pt;}
.x2e_c00086{left:490.240000pt;}
.x13_c00086{left:499.840000pt;}
.x1c_c00086{left:501.120000pt;}
.xb_c00086{left:510.720000pt;}
.x35_c00086{left:519.680000pt;}
.x39_c00086{left:529.280000pt;}
.x1f_c00086{left:538.240000pt;}
.x14_c00086{left:539.520000pt;}
.x27_c00086{left:558.080000pt;}
.x15_c00086{left:568.320000pt;}
.x45_c00086{left:577.920000pt;}
.xc_c00086{left:587.520000pt;}
.x37_c00086{left:596.480000pt;}
.x20_c00086{left:606.720000pt;}
.xd_c00086{left:616.320000pt;}
.x36_c00086{left:625.920000pt;}
.x28_c00086{left:634.880000pt;}
.x2f_c00086{left:645.120000pt;}
.x1_c00086{left:654.720000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4fc375764b7f3cd96b235236.woff2')format("woff");}.ff1_c00087{font-family:ff1_c00087;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m55_c00087{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);}
.m58_c00087{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m1_c00087{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m47_c00087{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m49_c00087{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m57_c00087{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m45_c00087{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m40_c00087{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m59_c00087{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m27_c00087{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m31_c00087{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m21_c00087{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m0_c00087{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);}
.m4c_c00087{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00087{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m3_c00087{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m23_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);}
.m11_c00087{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.md_c00087{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_c00087{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2_c00087{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);}
.m7_c00087{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);}
.m3b_c00087{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00087{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m6_c00087{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);}
.m52_c00087{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m17_c00087{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);}
.m35_c00087{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00087{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);}
.m41_c00087{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m36_c00087{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);}
.m24_c00087{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00087{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);}
.m20_c00087{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00087{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m43_c00087{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00087{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);}
.m32_c00087{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00087{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);}
.m13_c00087{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.me_c00087{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);}
.m3f_c00087{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00087{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00087{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m26_c00087{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00087{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m18_c00087{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);}
.m38_c00087{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00087{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);}
.m3d_c00087{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m8_c00087{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m39_c00087{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m44_c00087{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m30_c00087{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);}
.m2d_c00087{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);}
.m10_c00087{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m34_c00087{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m46_c00087{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00087{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m51_c00087{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);}
.m48_c00087{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);}
.m53_c00087{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00087{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00087{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.mc_c00087{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);}
.m4_c00087{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m19_c00087{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m33_c00087{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m50_c00087{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m29_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);}
.ma_c00087{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m5_c00087{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m22_c00087{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m54_c00087{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);}
.m9_c00087{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m15_c00087{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m42_c00087{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);}
.m1c_c00087{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m14_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);}
.m28_c00087{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00087{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.mf_c00087{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00087{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00087{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00087{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00087{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m37_c00087{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00087{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);}
.m16_c00087{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m12_c00087{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00087{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m56_c00087{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00087{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);}
.m25_c00087{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00087{transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);}
.v1_c00087{vertical-align:-11.520000px;}
.v0_c00087{vertical-align:0.000000px;}
.v2_c00087{vertical-align:14.400000px;}
.ls1_c00087{letter-spacing:0.000000px;}
.ls0_c00087{letter-spacing:24.612000px;}
.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;}
}
.ws1_c00087{word-spacing:-1.914240px;}
.ws2_c00087{word-spacing:-1.817280px;}
.ws3_c00087{word-spacing:0.000000px;}
.ws0_c00087{word-spacing:11.668800px;}
.fc0_c00087{color:transparent;}
.fs9_c00087{font-size:34.560000px;}
.fs8_c00087{font-size:37.440000px;}
.fs2_c00087{font-size:46.080000px;}
.fs5_c00087{font-size:48.960000px;}
.fs4_c00087{font-size:51.840000px;}
.fs7_c00087{font-size:54.720000px;}
.fsb_c00087{font-size:57.600000px;}
.fs1_c00087{font-size:60.480000px;}
.fs6_c00087{font-size:63.360000px;}
.fsa_c00087{font-size:66.240000px;}
.fs0_c00087{font-size:69.120000px;}
.fs3_c00087{font-size:72.000000px;}
.fsc_c00087{font-size:77.760000px;}
.y0_c00087{bottom:0.000000px;}
.y7a_c00087{bottom:64.080000px;}
.y79_c00087{bottom:64.800000px;}
.y77_c00087{bottom:65.520000px;}
.y75_c00087{bottom:66.960000px;}
.y78_c00087{bottom:67.680000px;}
.y76_c00087{bottom:68.400000px;}
.y74_c00087{bottom:70.560000px;}
.y6f_c00087{bottom:108.720000px;}
.y70_c00087{bottom:109.440000px;}
.y72_c00087{bottom:110.160000px;}
.y73_c00087{bottom:110.880000px;}
.y71_c00087{bottom:111.600000px;}
.y6e_c00087{bottom:112.320000px;}
.y6d_c00087{bottom:149.760000px;}
.y6b_c00087{bottom:150.480000px;}
.y69_c00087{bottom:151.200000px;}
.y6a_c00087{bottom:151.920000px;}
.y6c_c00087{bottom:153.360000px;}
.y67_c00087{bottom:193.680000px;}
.y66_c00087{bottom:194.400000px;}
.y68_c00087{bottom:195.840000px;}
.y65_c00087{bottom:196.560000px;}
.y63_c00087{bottom:235.440000px;}
.y64_c00087{bottom:236.880000px;}
.y62_c00087{bottom:238.320000px;}
.y61_c00087{bottom:239.040000px;}
.y60_c00087{bottom:239.760000px;}
.y5f_c00087{bottom:277.920000px;}
.y5e_c00087{bottom:278.640000px;}
.y5c_c00087{bottom:279.360000px;}
.y5a_c00087{bottom:280.080000px;}
.y5b_c00087{bottom:280.800000px;}
.y5d_c00087{bottom:281.520000px;}
.y57_c00087{bottom:321.120000px;}
.y59_c00087{bottom:321.840000px;}
.y58_c00087{bottom:324.000000px;}
.y56_c00087{bottom:324.720000px;}
.y55_c00087{bottom:325.440000px;}
.y53_c00087{bottom:364.320000px;}
.y54_c00087{bottom:366.480000px;}
.y52_c00087{bottom:367.200000px;}
.y50_c00087{bottom:406.080000px;}
.y4f_c00087{bottom:406.800000px;}
.y51_c00087{bottom:407.520000px;}
.y4e_c00087{bottom:408.960000px;}
.y4d_c00087{bottom:409.680000px;}
.y4c_c00087{bottom:410.400000px;}
.y4a_c00087{bottom:448.560000px;}
.y48_c00087{bottom:449.280000px;}
.y4b_c00087{bottom:451.440000px;}
.y49_c00087{bottom:452.160000px;}
.y47_c00087{bottom:452.880000px;}
.y45_c00087{bottom:491.760000px;}
.y44_c00087{bottom:493.920000px;}
.y46_c00087{bottom:494.640000px;}
.y41_c00087{bottom:534.960000px;}
.y43_c00087{bottom:535.680000px;}
.y40_c00087{bottom:536.400000px;}
.y3f_c00087{bottom:537.120000px;}
.y42_c00087{bottom:537.840000px;}
.y3b_c00087{bottom:576.720000px;}
.y3e_c00087{bottom:577.440000px;}
.y3d_c00087{bottom:578.880000px;}
.y3a_c00087{bottom:579.600000px;}
.y3c_c00087{bottom:580.320000px;}
.y34_c00087{bottom:618.480000px;}
.y33_c00087{bottom:619.200000px;}
.y37_c00087{bottom:619.920000px;}
.y36_c00087{bottom:621.360000px;}
.y38_c00087{bottom:622.080000px;}
.y35_c00087{bottom:622.800000px;}
.y39_c00087{bottom:623.520000px;}
.y2f_c00087{bottom:661.680000px;}
.y30_c00087{bottom:662.400000px;}
.y2e_c00087{bottom:664.560000px;}
.y31_c00087{bottom:665.280000px;}
.y32_c00087{bottom:666.000000px;}
.y2a_c00087{bottom:707.040000px;}
.y2b_c00087{bottom:707.760000px;}
.y2c_c00087{bottom:708.480000px;}
.y2d_c00087{bottom:709.200000px;}
.y28_c00087{bottom:757.440000px;}
.y27_c00087{bottom:759.600000px;}
.y26_c00087{bottom:760.320000px;}
.y29_c00087{bottom:761.040000px;}
.y21_c00087{bottom:799.920000px;}
.y24_c00087{bottom:801.360000px;}
.y22_c00087{bottom:802.080000px;}
.y20_c00087{bottom:802.800000px;}
.y23_c00087{bottom:803.520000px;}
.y25_c00087{bottom:804.240000px;}
.y1a_c00087{bottom:842.400000px;}
.y1b_c00087{bottom:843.120000px;}
.y1e_c00087{bottom:843.840000px;}
.y18_c00087{bottom:844.560000px;}
.y19_c00087{bottom:845.280000px;}
.y1c_c00087{bottom:846.000000px;}
.y1d_c00087{bottom:846.720000px;}
.y1f_c00087{bottom:847.440000px;}
.y13_c00087{bottom:885.600000px;}
.y17_c00087{bottom:887.040000px;}
.y12_c00087{bottom:887.760000px;}
.y14_c00087{bottom:888.480000px;}
.y16_c00087{bottom:889.200000px;}
.y15_c00087{bottom:889.920000px;}
.ye_c00087{bottom:929.520000px;}
.yf_c00087{bottom:930.960000px;}
.y10_c00087{bottom:931.680000px;}
.y11_c00087{bottom:932.400000px;}
.y9_c00087{bottom:969.840000px;}
.yb_c00087{bottom:970.560000px;}
.y8_c00087{bottom:972.000000px;}
.ya_c00087{bottom:974.160000px;}
.yc_c00087{bottom:974.880000px;}
.yd_c00087{bottom:975.600000px;}
.y2_c00087{bottom:1013.040000px;}
.y4_c00087{bottom:1013.760000px;}
.y3_c00087{bottom:1014.480000px;}
.y6_c00087{bottom:1015.200000px;}
.y5_c00087{bottom:1017.360000px;}
.y7_c00087{bottom:1018.080000px;}
.y1_c00087{bottom:1089.360000px;}
.hb_c00087{height:31.100625px;}
.ha_c00087{height:33.692344px;}
.h4_c00087{height:41.467500px;}
.h7_c00087{height:44.059219px;}
.h6_c00087{height:46.650937px;}
.h9_c00087{height:49.242656px;}
.he_c00087{height:50.681250px;}
.hd_c00087{height:51.834375px;}
.h3_c00087{height:54.426094px;}
.h8_c00087{height:57.017812px;}
.hf_c00087{height:58.459219px;}
.hc_c00087{height:59.609531px;}
.h2_c00087{height:62.201250px;}
.h5_c00087{height:64.792969px;}
.h10_c00087{height:69.976406px;}
.h1_c00087{height:1149.000000px;}
.h0_c00087{height:1149.120000px;}
.w1_c00087{width:803.250000px;}
.w0_c00087{width:803.520000px;}
.x0_c00087{left:0.000000px;}
.xb_c00087{left:80.640000px;}
.x21_c00087{left:82.080000px;}
.x48_c00087{left:83.520000px;}
.x49_c00087{left:103.680000px;}
.x1c_c00087{left:113.040000px;}
.x5a_c00087{left:114.480000px;}
.x63_c00087{left:116.640000px;}
.xc_c00087{left:123.840000px;}
.x2a_c00087{left:125.280000px;}
.x6d_c00087{left:128.160000px;}
.x32_c00087{left:136.080000px;}
.x22_c00087{left:146.160000px;}
.x64_c00087{left:147.600000px;}
.xd_c00087{left:155.520000px;}
.x36_c00087{left:156.960000px;}
.x4d_c00087{left:158.400000px;}
.x1d_c00087{left:167.040000px;}
.x37_c00087{left:178.560000px;}
.x68_c00087{left:180.720000px;}
.x2_c00087{left:187.920000px;}
.x2f_c00087{left:190.080000px;}
.x54_c00087{left:200.880000px;}
.x6e_c00087{left:202.320000px;}
.x26_c00087{left:210.960000px;}
.x5e_c00087{left:212.400000px;}
.x2b_c00087{left:221.040000px;}
.x3b_c00087{left:232.560000px;}
.x6f_c00087{left:235.440000px;}
.x27_c00087{left:242.640000px;}
.x55_c00087{left:244.800000px;}
.x2c_c00087{left:254.160000px;}
.x15_c00087{left:263.520000px;}
.x4e_c00087{left:265.680000px;}
.x65_c00087{left:267.120000px;}
.x3_c00087{left:274.320000px;}
.x43_c00087{left:276.480000px;}
.xe_c00087{left:285.120000px;}
.x4f_c00087{left:287.280000px;}
.x16_c00087{left:295.920000px;}
.x5b_c00087{left:298.080000px;}
.xf_c00087{left:307.440000px;}
.x75_c00087{left:309.600000px;}
.x4_c00087{left:316.080000px;}
.x38_c00087{left:318.240000px;}
.x50_c00087{left:319.680000px;}
.x17_c00087{left:329.040000px;}
.x70_c00087{left:330.480000px;}
.x23_c00087{left:340.560000px;}
.x44_c00087{left:351.360000px;}
.x2d_c00087{left:361.440000px;}
.x56_c00087{left:362.880000px;}
.x4a_c00087{left:372.960000px;}
.x18_c00087{left:382.320000px;}
.x57_c00087{left:384.480000px;}
.x2e_c00087{left:393.120000px;}
.x33_c00087{left:394.560000px;}
.x5_c00087{left:403.200000px;}
.x39_c00087{left:405.360000px;}
.x5f_c00087{left:406.800000px;}
.x10_c00087{left:414.000000px;}
.x5c_c00087{left:415.440000px;}
.x58_c00087{left:416.880000px;}
.x1e_c00087{left:425.520000px;}
.x3f_c00087{left:437.040000px;}
.x66_c00087{left:439.200000px;}
.x6_c00087{left:446.400000px;}
.x3c_c00087{left:447.840000px;}
.x69_c00087{left:449.280000px;}
.x6a_c00087{left:450.720000px;}
.x11_c00087{left:458.640000px;}
.x28_c00087{left:468.720000px;}
.x51_c00087{left:470.880000px;}
.x30_c00087{left:480.240000px;}
.x71_c00087{left:481.680000px;}
.x12_c00087{left:490.320000px;}
.x5d_c00087{left:492.480000px;}
.x52_c00087{left:502.560000px;}
.x60_c00087{left:504.000000px;}
.x7_c00087{left:511.920000px;}
.x45_c00087{left:513.360000px;}
.x24_c00087{left:523.440000px;}
.x72_c00087{left:525.600000px;}
.x29_c00087{left:533.520000px;}
.x40_c00087{left:534.960000px;}
.x8_c00087{left:543.600000px;}
.x34_c00087{left:545.040000px;}
.x67_c00087{left:546.480000px;}
.x25_c00087{left:554.400000px;}
.x19_c00087{left:555.840000px;}
.x3d_c00087{left:557.280000px;}
.x4b_c00087{left:568.080000px;}
.x13_c00087{left:576.000000px;}
.x59_c00087{left:578.880000px;}
.x9_c00087{left:586.800000px;}
.x3e_c00087{left:588.240000px;}
.x61_c00087{left:589.680000px;}
.x1f_c00087{left:598.320000px;}
.x4c_c00087{left:600.480000px;}
.x1a_c00087{left:609.840000px;}
.x6b_c00087{left:611.280000px;}
.x73_c00087{left:612.720000px;}
.x41_c00087{left:621.360000px;}
.x20_c00087{left:631.440000px;}
.x1b_c00087{left:642.960000px;}
.x53_c00087{left:654.480000px;}
.x14_c00087{left:663.120000px;}
.x46_c00087{left:664.560000px;}
.x62_c00087{left:666.000000px;}
.x35_c00087{left:675.360000px;}
.x74_c00087{left:677.520000px;}
.x31_c00087{left:686.880000px;}
.x76_c00087{left:688.320000px;}
.xa_c00087{left:695.520000px;}
.x47_c00087{left:697.680000px;}
.x3a_c00087{left:707.760000px;}
.x6c_c00087{left:709.920000px;}
.x1_c00087{left:715.680000px;}
.x42_c00087{left:719.280000px;}
@media print{
.v1_c00087{vertical-align:-10.240000pt;}
.v0_c00087{vertical-align:0.000000pt;}
.v2_c00087{vertical-align:12.800000pt;}
.ls1_c00087{letter-spacing:0.000000pt;}
.ls0_c00087{letter-spacing:21.877333pt;}
.ws1_c00087{word-spacing:-1.701547pt;}
.ws2_c00087{word-spacing:-1.615360pt;}
.ws3_c00087{word-spacing:0.000000pt;}
.ws0_c00087{word-spacing:10.372267pt;}
.fs9_c00087{font-size:30.720000pt;}
.fs8_c00087{font-size:33.280000pt;}
.fs2_c00087{font-size:40.960000pt;}
.fs5_c00087{font-size:43.520000pt;}
.fs4_c00087{font-size:46.080000pt;}
.fs7_c00087{font-size:48.640000pt;}
.fsb_c00087{font-size:51.200000pt;}
.fs1_c00087{font-size:53.760000pt;}
.fs6_c00087{font-size:56.320000pt;}
.fsa_c00087{font-size:58.880000pt;}
.fs0_c00087{font-size:61.440000pt;}
.fs3_c00087{font-size:64.000000pt;}
.fsc_c00087{font-size:69.120000pt;}
.y0_c00087{bottom:0.000000pt;}
.y7a_c00087{bottom:56.960000pt;}
.y79_c00087{bottom:57.600000pt;}
.y77_c00087{bottom:58.240000pt;}
.y75_c00087{bottom:59.520000pt;}
.y78_c00087{bottom:60.160000pt;}
.y76_c00087{bottom:60.800000pt;}
.y74_c00087{bottom:62.720000pt;}
.y6f_c00087{bottom:96.640000pt;}
.y70_c00087{bottom:97.280000pt;}
.y72_c00087{bottom:97.920000pt;}
.y73_c00087{bottom:98.560000pt;}
.y71_c00087{bottom:99.200000pt;}
.y6e_c00087{bottom:99.840000pt;}
.y6d_c00087{bottom:133.120000pt;}
.y6b_c00087{bottom:133.760000pt;}
.y69_c00087{bottom:134.400000pt;}
.y6a_c00087{bottom:135.040000pt;}
.y6c_c00087{bottom:136.320000pt;}
.y67_c00087{bottom:172.160000pt;}
.y66_c00087{bottom:172.800000pt;}
.y68_c00087{bottom:174.080000pt;}
.y65_c00087{bottom:174.720000pt;}
.y63_c00087{bottom:209.280000pt;}
.y64_c00087{bottom:210.560000pt;}
.y62_c00087{bottom:211.840000pt;}
.y61_c00087{bottom:212.480000pt;}
.y60_c00087{bottom:213.120000pt;}
.y5f_c00087{bottom:247.040000pt;}
.y5e_c00087{bottom:247.680000pt;}
.y5c_c00087{bottom:248.320000pt;}
.y5a_c00087{bottom:248.960000pt;}
.y5b_c00087{bottom:249.600000pt;}
.y5d_c00087{bottom:250.240000pt;}
.y57_c00087{bottom:285.440000pt;}
.y59_c00087{bottom:286.080000pt;}
.y58_c00087{bottom:288.000000pt;}
.y56_c00087{bottom:288.640000pt;}
.y55_c00087{bottom:289.280000pt;}
.y53_c00087{bottom:323.840000pt;}
.y54_c00087{bottom:325.760000pt;}
.y52_c00087{bottom:326.400000pt;}
.y50_c00087{bottom:360.960000pt;}
.y4f_c00087{bottom:361.600000pt;}
.y51_c00087{bottom:362.240000pt;}
.y4e_c00087{bottom:363.520000pt;}
.y4d_c00087{bottom:364.160000pt;}
.y4c_c00087{bottom:364.800000pt;}
.y4a_c00087{bottom:398.720000pt;}
.y48_c00087{bottom:399.360000pt;}
.y4b_c00087{bottom:401.280000pt;}
.y49_c00087{bottom:401.920000pt;}
.y47_c00087{bottom:402.560000pt;}
.y45_c00087{bottom:437.120000pt;}
.y44_c00087{bottom:439.040000pt;}
.y46_c00087{bottom:439.680000pt;}
.y41_c00087{bottom:475.520000pt;}
.y43_c00087{bottom:476.160000pt;}
.y40_c00087{bottom:476.800000pt;}
.y3f_c00087{bottom:477.440000pt;}
.y42_c00087{bottom:478.080000pt;}
.y3b_c00087{bottom:512.640000pt;}
.y3e_c00087{bottom:513.280000pt;}
.y3d_c00087{bottom:514.560000pt;}
.y3a_c00087{bottom:515.200000pt;}
.y3c_c00087{bottom:515.840000pt;}
.y34_c00087{bottom:549.760000pt;}
.y33_c00087{bottom:550.400000pt;}
.y37_c00087{bottom:551.040000pt;}
.y36_c00087{bottom:552.320000pt;}
.y38_c00087{bottom:552.960000pt;}
.y35_c00087{bottom:553.600000pt;}
.y39_c00087{bottom:554.240000pt;}
.y2f_c00087{bottom:588.160000pt;}
.y30_c00087{bottom:588.800000pt;}
.y2e_c00087{bottom:590.720000pt;}
.y31_c00087{bottom:591.360000pt;}
.y32_c00087{bottom:592.000000pt;}
.y2a_c00087{bottom:628.480000pt;}
.y2b_c00087{bottom:629.120000pt;}
.y2c_c00087{bottom:629.760000pt;}
.y2d_c00087{bottom:630.400000pt;}
.y28_c00087{bottom:673.280000pt;}
.y27_c00087{bottom:675.200000pt;}
.y26_c00087{bottom:675.840000pt;}
.y29_c00087{bottom:676.480000pt;}
.y21_c00087{bottom:711.040000pt;}
.y24_c00087{bottom:712.320000pt;}
.y22_c00087{bottom:712.960000pt;}
.y20_c00087{bottom:713.600000pt;}
.y23_c00087{bottom:714.240000pt;}
.y25_c00087{bottom:714.880000pt;}
.y1a_c00087{bottom:748.800000pt;}
.y1b_c00087{bottom:749.440000pt;}
.y1e_c00087{bottom:750.080000pt;}
.y18_c00087{bottom:750.720000pt;}
.y19_c00087{bottom:751.360000pt;}
.y1c_c00087{bottom:752.000000pt;}
.y1d_c00087{bottom:752.640000pt;}
.y1f_c00087{bottom:753.280000pt;}
.y13_c00087{bottom:787.200000pt;}
.y17_c00087{bottom:788.480000pt;}
.y12_c00087{bottom:789.120000pt;}
.y14_c00087{bottom:789.760000pt;}
.y16_c00087{bottom:790.400000pt;}
.y15_c00087{bottom:791.040000pt;}
.ye_c00087{bottom:826.240000pt;}
.yf_c00087{bottom:827.520000pt;}
.y10_c00087{bottom:828.160000pt;}
.y11_c00087{bottom:828.800000pt;}
.y9_c00087{bottom:862.080000pt;}
.yb_c00087{bottom:862.720000pt;}
.y8_c00087{bottom:864.000000pt;}
.ya_c00087{bottom:865.920000pt;}
.yc_c00087{bottom:866.560000pt;}
.yd_c00087{bottom:867.200000pt;}
.y2_c00087{bottom:900.480000pt;}
.y4_c00087{bottom:901.120000pt;}
.y3_c00087{bottom:901.760000pt;}
.y6_c00087{bottom:902.400000pt;}
.y5_c00087{bottom:904.320000pt;}
.y7_c00087{bottom:904.960000pt;}
.y1_c00087{bottom:968.320000pt;}
.hb_c00087{height:27.645000pt;}
.ha_c00087{height:29.948750pt;}
.h4_c00087{height:36.860000pt;}
.h7_c00087{height:39.163750pt;}
.h6_c00087{height:41.467500pt;}
.h9_c00087{height:43.771250pt;}
.he_c00087{height:45.050000pt;}
.hd_c00087{height:46.075000pt;}
.h3_c00087{height:48.378750pt;}
.h8_c00087{height:50.682500pt;}
.hf_c00087{height:51.963750pt;}
.hc_c00087{height:52.986250pt;}
.h2_c00087{height:55.290000pt;}
.h5_c00087{height:57.593750pt;}
.h10_c00087{height:62.201250pt;}
.h1_c00087{height:1021.333333pt;}
.h0_c00087{height:1021.440000pt;}
.w1_c00087{width:714.000000pt;}
.w0_c00087{width:714.240000pt;}
.x0_c00087{left:0.000000pt;}
.xb_c00087{left:71.680000pt;}
.x21_c00087{left:72.960000pt;}
.x48_c00087{left:74.240000pt;}
.x49_c00087{left:92.160000pt;}
.x1c_c00087{left:100.480000pt;}
.x5a_c00087{left:101.760000pt;}
.x63_c00087{left:103.680000pt;}
.xc_c00087{left:110.080000pt;}
.x2a_c00087{left:111.360000pt;}
.x6d_c00087{left:113.920000pt;}
.x32_c00087{left:120.960000pt;}
.x22_c00087{left:129.920000pt;}
.x64_c00087{left:131.200000pt;}
.xd_c00087{left:138.240000pt;}
.x36_c00087{left:139.520000pt;}
.x4d_c00087{left:140.800000pt;}
.x1d_c00087{left:148.480000pt;}
.x37_c00087{left:158.720000pt;}
.x68_c00087{left:160.640000pt;}
.x2_c00087{left:167.040000pt;}
.x2f_c00087{left:168.960000pt;}
.x54_c00087{left:178.560000pt;}
.x6e_c00087{left:179.840000pt;}
.x26_c00087{left:187.520000pt;}
.x5e_c00087{left:188.800000pt;}
.x2b_c00087{left:196.480000pt;}
.x3b_c00087{left:206.720000pt;}
.x6f_c00087{left:209.280000pt;}
.x27_c00087{left:215.680000pt;}
.x55_c00087{left:217.600000pt;}
.x2c_c00087{left:225.920000pt;}
.x15_c00087{left:234.240000pt;}
.x4e_c00087{left:236.160000pt;}
.x65_c00087{left:237.440000pt;}
.x3_c00087{left:243.840000pt;}
.x43_c00087{left:245.760000pt;}
.xe_c00087{left:253.440000pt;}
.x4f_c00087{left:255.360000pt;}
.x16_c00087{left:263.040000pt;}
.x5b_c00087{left:264.960000pt;}
.xf_c00087{left:273.280000pt;}
.x75_c00087{left:275.200000pt;}
.x4_c00087{left:280.960000pt;}
.x38_c00087{left:282.880000pt;}
.x50_c00087{left:284.160000pt;}
.x17_c00087{left:292.480000pt;}
.x70_c00087{left:293.760000pt;}
.x23_c00087{left:302.720000pt;}
.x44_c00087{left:312.320000pt;}
.x2d_c00087{left:321.280000pt;}
.x56_c00087{left:322.560000pt;}
.x4a_c00087{left:331.520000pt;}
.x18_c00087{left:339.840000pt;}
.x57_c00087{left:341.760000pt;}
.x2e_c00087{left:349.440000pt;}
.x33_c00087{left:350.720000pt;}
.x5_c00087{left:358.400000pt;}
.x39_c00087{left:360.320000pt;}
.x5f_c00087{left:361.600000pt;}
.x10_c00087{left:368.000000pt;}
.x5c_c00087{left:369.280000pt;}
.x58_c00087{left:370.560000pt;}
.x1e_c00087{left:378.240000pt;}
.x3f_c00087{left:388.480000pt;}
.x66_c00087{left:390.400000pt;}
.x6_c00087{left:396.800000pt;}
.x3c_c00087{left:398.080000pt;}
.x69_c00087{left:399.360000pt;}
.x6a_c00087{left:400.640000pt;}
.x11_c00087{left:407.680000pt;}
.x28_c00087{left:416.640000pt;}
.x51_c00087{left:418.560000pt;}
.x30_c00087{left:426.880000pt;}
.x71_c00087{left:428.160000pt;}
.x12_c00087{left:435.840000pt;}
.x5d_c00087{left:437.760000pt;}
.x52_c00087{left:446.720000pt;}
.x60_c00087{left:448.000000pt;}
.x7_c00087{left:455.040000pt;}
.x45_c00087{left:456.320000pt;}
.x24_c00087{left:465.280000pt;}
.x72_c00087{left:467.200000pt;}
.x29_c00087{left:474.240000pt;}
.x40_c00087{left:475.520000pt;}
.x8_c00087{left:483.200000pt;}
.x34_c00087{left:484.480000pt;}
.x67_c00087{left:485.760000pt;}
.x25_c00087{left:492.800000pt;}
.x19_c00087{left:494.080000pt;}
.x3d_c00087{left:495.360000pt;}
.x4b_c00087{left:504.960000pt;}
.x13_c00087{left:512.000000pt;}
.x59_c00087{left:514.560000pt;}
.x9_c00087{left:521.600000pt;}
.x3e_c00087{left:522.880000pt;}
.x61_c00087{left:524.160000pt;}
.x1f_c00087{left:531.840000pt;}
.x4c_c00087{left:533.760000pt;}
.x1a_c00087{left:542.080000pt;}
.x6b_c00087{left:543.360000pt;}
.x73_c00087{left:544.640000pt;}
.x41_c00087{left:552.320000pt;}
.x20_c00087{left:561.280000pt;}
.x1b_c00087{left:571.520000pt;}
.x53_c00087{left:581.760000pt;}
.x14_c00087{left:589.440000pt;}
.x46_c00087{left:590.720000pt;}
.x62_c00087{left:592.000000pt;}
.x35_c00087{left:600.320000pt;}
.x74_c00087{left:602.240000pt;}
.x31_c00087{left:610.560000pt;}
.x76_c00087{left:611.840000pt;}
.xa_c00087{left:618.240000pt;}
.x47_c00087{left:620.160000pt;}
.x3a_c00087{left:629.120000pt;}
.x6c_c00087{left:631.040000pt;}
.x1_c00087{left:636.160000pt;}
.x42_c00087{left:639.360000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a11305ff5b304f8f15991bb2.woff2')format("woff");}.ff1_c00088{font-family:ff1_c00088;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00088{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m27_c00088{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00088{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00088{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m35_c00088{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00088{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00088{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00088{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m34_c00088{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2_c00088{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m30_c00088{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m7_c00088{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.mf_c00088{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m51_c00088{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m47_c00088{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m4_c00088{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m5_c00088{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_c00088{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00088{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);}
.m1d_c00088{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m50_c00088{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m25_c00088{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);}
.m48_c00088{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.md_c00088{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);}
.m56_c00088{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);}
.m46_c00088{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);}
.m4a_c00088{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m26_c00088{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00088{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);}
.m20_c00088{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);}
.m23_c00088{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);}
.m37_c00088{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m9_c00088{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00088{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);}
.mc_c00088{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m14_c00088{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);}
.m3d_c00088{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m52_c00088{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);}
.m18_c00088{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);}
.me_c00088{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.mb_c00088{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00088{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m6_c00088{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m29_c00088{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m13_c00088{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m11_c00088{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);}
.m53_c00088{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);}
.ma_c00088{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m57_c00088{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m28_c00088{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m32_c00088{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);}
.m1e_c00088{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m44_c00088{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m33_c00088{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m43_c00088{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);}
.m40_c00088{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m54_c00088{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m41_c00088{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m38_c00088{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m22_c00088{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_c00088{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00088{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m45_c00088{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00088{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);}
.m3f_c00088{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m42_c00088{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00088{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00088{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);}
.m2a_c00088{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m12_c00088{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m15_c00088{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00088{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m24_c00088{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);}
.m1_c00088{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m21_c00088{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);}
.m8_c00088{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);}
.m49_c00088{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m55_c00088{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m36_c00088{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m10_c00088{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m3_c00088{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m31_c00088{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m58_c00088{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);}
.m2f_c00088{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m19_c00088{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);}
.m3a_c00088{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00088{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00088{transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);}
.m39_c00088{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.v1_c00088{vertical-align:-11.520000px;}
.v0_c00088{vertical-align:0.000000px;}
.v2_c00088{vertical-align:2.880000px;}
.ls0_c00088{letter-spacing:0.000000px;}
.sc__c00088{text-shadow:none;}
.sc0_c00088{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00088{-webkit-text-stroke:0px transparent;}
.sc0_c00088{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00088{word-spacing:-5.277600px;}
.ws2_c00088{word-spacing:-2.405760px;}
.ws3_c00088{word-spacing:0.000000px;}
.ws1_c00088{word-spacing:1.513200px;}
.fc0_c00088{color:transparent;}
.fs3_c00088{font-size:34.560000px;}
.fs5_c00088{font-size:37.440000px;}
.fs9_c00088{font-size:40.320000px;}
.fsd_c00088{font-size:43.200000px;}
.fs4_c00088{font-size:46.080000px;}
.fs6_c00088{font-size:48.960000px;}
.fs1_c00088{font-size:51.840000px;}
.fs7_c00088{font-size:54.720000px;}
.fs8_c00088{font-size:57.600000px;}
.fs2_c00088{font-size:60.480000px;}
.fsc_c00088{font-size:63.360000px;}
.fsb_c00088{font-size:66.240000px;}
.fsa_c00088{font-size:69.120000px;}
.fs0_c00088{font-size:72.000000px;}
.y0_c00088{bottom:0.000000px;}
.y67_c00088{bottom:150.480000px;}
.y66_c00088{bottom:153.360000px;}
.y65_c00088{bottom:154.800000px;}
.y64_c00088{bottom:193.680000px;}
.y61_c00088{bottom:194.400000px;}
.y62_c00088{bottom:195.120000px;}
.y63_c00088{bottom:195.840000px;}
.y60_c00088{bottom:196.560000px;}
.y5d_c00088{bottom:235.440000px;}
.y5f_c00088{bottom:236.160000px;}
.y5e_c00088{bottom:237.600000px;}
.y5c_c00088{bottom:238.320000px;}
.y5b_c00088{bottom:239.040000px;}
.y59_c00088{bottom:276.480000px;}
.y5a_c00088{bottom:277.200000px;}
.y55_c00088{bottom:277.920000px;}
.y58_c00088{bottom:279.360000px;}
.y57_c00088{bottom:280.080000px;}
.y56_c00088{bottom:280.800000px;}
.y54_c00088{bottom:281.520000px;}
.y52_c00088{bottom:318.960000px;}
.y50_c00088{bottom:320.400000px;}
.y4f_c00088{bottom:321.840000px;}
.y53_c00088{bottom:322.560000px;}
.y51_c00088{bottom:323.280000px;}
.y4e_c00088{bottom:324.000000px;}
.y4d_c00088{bottom:362.880000px;}
.y4c_c00088{bottom:365.760000px;}
.y4b_c00088{bottom:366.480000px;}
.y4a_c00088{bottom:367.200000px;}
.y48_c00088{bottom:406.080000px;}
.y47_c00088{bottom:406.800000px;}
.y45_c00088{bottom:407.520000px;}
.y49_c00088{bottom:408.240000px;}
.y46_c00088{bottom:408.960000px;}
.y44_c00088{bottom:409.680000px;}
.y41_c00088{bottom:447.840000px;}
.y42_c00088{bottom:449.280000px;}
.y43_c00088{bottom:450.720000px;}
.y3f_c00088{bottom:451.440000px;}
.y40_c00088{bottom:452.160000px;}
.y3e_c00088{bottom:491.760000px;}
.y3c_c00088{bottom:493.920000px;}
.y3d_c00088{bottom:494.640000px;}
.y3a_c00088{bottom:533.520000px;}
.y3b_c00088{bottom:536.400000px;}
.y38_c00088{bottom:537.120000px;}
.y39_c00088{bottom:537.840000px;}
.y36_c00088{bottom:576.720000px;}
.y37_c00088{bottom:577.440000px;}
.y34_c00088{bottom:579.600000px;}
.y35_c00088{bottom:580.320000px;}
.y31_c00088{bottom:619.920000px;}
.y32_c00088{bottom:622.080000px;}
.y33_c00088{bottom:622.800000px;}
.y2f_c00088{bottom:665.280000px;}
.y30_c00088{bottom:666.000000px;}
.y2e_c00088{bottom:715.680000px;}
.y2d_c00088{bottom:717.840000px;}
.y2c_c00088{bottom:718.560000px;}
.y28_c00088{bottom:758.160000px;}
.y29_c00088{bottom:758.880000px;}
.y27_c00088{bottom:761.040000px;}
.y2a_c00088{bottom:761.760000px;}
.y2b_c00088{bottom:762.480000px;}
.y22_c00088{bottom:800.640000px;}
.y26_c00088{bottom:802.800000px;}
.y23_c00088{bottom:803.520000px;}
.y24_c00088{bottom:804.240000px;}
.y25_c00088{bottom:804.960000px;}
.y1d_c00088{bottom:842.400000px;}
.y1e_c00088{bottom:843.840000px;}
.y21_c00088{bottom:845.280000px;}
.y1f_c00088{bottom:846.720000px;}
.y20_c00088{bottom:847.440000px;}
.y17_c00088{bottom:884.880000px;}
.y1a_c00088{bottom:887.040000px;}
.y1b_c00088{bottom:887.760000px;}
.y18_c00088{bottom:889.200000px;}
.y19_c00088{bottom:889.920000px;}
.y1c_c00088{bottom:890.640000px;}
.y11_c00088{bottom:928.080000px;}
.y13_c00088{bottom:929.520000px;}
.y15_c00088{bottom:930.240000px;}
.y12_c00088{bottom:930.960000px;}
.y16_c00088{bottom:932.400000px;}
.y14_c00088{bottom:933.120000px;}
.yd_c00088{bottom:972.000000px;}
.ya_c00088{bottom:972.720000px;}
.yb_c00088{bottom:973.440000px;}
.yc_c00088{bottom:974.160000px;}
.yf_c00088{bottom:974.880000px;}
.ye_c00088{bottom:975.600000px;}
.y10_c00088{bottom:976.320000px;}
.y3_c00088{bottom:1013.760000px;}
.y5_c00088{bottom:1014.480000px;}
.y6_c00088{bottom:1015.200000px;}
.y2_c00088{bottom:1015.920000px;}
.y4_c00088{bottom:1017.360000px;}
.y7_c00088{bottom:1018.080000px;}
.y8_c00088{bottom:1018.800000px;}
.y9_c00088{bottom:1019.520000px;}
.y1_c00088{bottom:1082.160000px;}
.h5_c00088{height:31.100625px;}
.h7_c00088{height:33.692344px;}
.hb_c00088{height:36.284062px;}
.hf_c00088{height:38.875781px;}
.h6_c00088{height:41.467500px;}
.h8_c00088{height:44.059219px;}
.h3_c00088{height:46.650937px;}
.h9_c00088{height:49.242656px;}
.ha_c00088{height:51.834375px;}
.h4_c00088{height:54.426094px;}
.he_c00088{height:57.017812px;}
.hd_c00088{height:59.609531px;}
.hc_c00088{height:62.201250px;}
.h2_c00088{height:64.792969px;}
.h0_c00088{height:1153.440000px;}
.h1_c00088{height:1153.500000px;}
.w0_c00088{width:810.720000px;}
.w1_c00088{width:810.750000px;}
.x0_c00088{left:0.000000px;}
.x38_c00088{left:83.520000px;}
.x2_c00088{left:84.960000px;}
.x4a_c00088{left:95.760000px;}
.x3_c00088{left:116.640000px;}
.xd_c00088{left:128.160000px;}
.x34_c00088{left:137.520000px;}
.x39_c00088{left:138.960000px;}
.x14_c00088{left:149.040000px;}
.x3a_c00088{left:158.400000px;}
.x4_c00088{left:160.560000px;}
.x43_c00088{left:169.920000px;}
.x1c_c00088{left:171.360000px;}
.x26_c00088{left:181.440000px;}
.x5_c00088{left:192.960000px;}
.x3b_c00088{left:202.320000px;}
.x1d_c00088{left:203.760000px;}
.x27_c00088{left:213.840000px;}
.xe_c00088{left:225.360000px;}
.x3c_c00088{left:234.000000px;}
.x15_c00088{left:235.440000px;}
.x2c_c00088{left:246.960000px;}
.x28_c00088{left:257.040000px;}
.x1e_c00088{left:267.840000px;}
.x16_c00088{left:277.920000px;}
.x35_c00088{left:288.720000px;}
.x30_c00088{left:292.320000px;}
.x1f_c00088{left:300.240000px;}
.x6_c00088{left:311.040000px;}
.x49_c00088{left:320.400000px;}
.x17_c00088{left:321.840000px;}
.xf_c00088{left:331.920000px;}
.x31_c00088{left:353.520000px;}
.x45_c00088{left:364.320000px;}
.x10_c00088{left:375.840000px;}
.x7_c00088{left:385.200000px;}
.x20_c00088{left:386.640000px;}
.x2d_c00088{left:396.000000px;}
.x29_c00088{left:397.440000px;}
.x48_c00088{left:407.520000px;}
.x8_c00088{left:429.840000px;}
.x41_c00088{left:440.640000px;}
.x18_c00088{left:451.440000px;}
.x4b_c00088{left:460.800000px;}
.x21_c00088{left:462.240000px;}
.x2a_c00088{left:472.320000px;}
.x19_c00088{left:473.760000px;}
.x36_c00088{left:483.120000px;}
.x9_c00088{left:494.640000px;}
.x3d_c00088{left:504.000000px;}
.x46_c00088{left:505.440000px;}
.x2b_c00088{left:516.240000px;}
.x24_c00088{left:527.040000px;}
.x11_c00088{left:537.840000px;}
.x3e_c00088{left:548.640000px;}
.x37_c00088{left:558.000000px;}
.xa_c00088{left:559.440000px;}
.x47_c00088{left:569.520000px;}
.x1a_c00088{left:570.960000px;}
.x3f_c00088{left:580.320000px;}
.x42_c00088{left:591.840000px;}
.x32_c00088{left:601.920000px;}
.xb_c00088{left:603.360000px;}
.x40_c00088{left:613.440000px;}
.x1b_c00088{left:624.240000px;}
.x2e_c00088{left:635.040000px;}
.x44_c00088{left:645.840000px;}
.x22_c00088{left:647.280000px;}
.xc_c00088{left:656.640000px;}
.x12_c00088{left:669.600000px;}
.x25_c00088{left:678.960000px;}
.x23_c00088{left:689.040000px;}
.x2f_c00088{left:701.280000px;}
.x13_c00088{left:711.360000px;}
.x33_c00088{left:712.800000px;}
.x1_c00088{left:717.120000px;}
@media print{
.v1_c00088{vertical-align:-10.240000pt;}
.v0_c00088{vertical-align:0.000000pt;}
.v2_c00088{vertical-align:2.560000pt;}
.ls0_c00088{letter-spacing:0.000000pt;}
.ws0_c00088{word-spacing:-4.691200pt;}
.ws2_c00088{word-spacing:-2.138453pt;}
.ws3_c00088{word-spacing:0.000000pt;}
.ws1_c00088{word-spacing:1.345067pt;}
.fs3_c00088{font-size:30.720000pt;}
.fs5_c00088{font-size:33.280000pt;}
.fs9_c00088{font-size:35.840000pt;}
.fsd_c00088{font-size:38.400000pt;}
.fs4_c00088{font-size:40.960000pt;}
.fs6_c00088{font-size:43.520000pt;}
.fs1_c00088{font-size:46.080000pt;}
.fs7_c00088{font-size:48.640000pt;}
.fs8_c00088{font-size:51.200000pt;}
.fs2_c00088{font-size:53.760000pt;}
.fsc_c00088{font-size:56.320000pt;}
.fsb_c00088{font-size:58.880000pt;}
.fsa_c00088{font-size:61.440000pt;}
.fs0_c00088{font-size:64.000000pt;}
.y0_c00088{bottom:0.000000pt;}
.y67_c00088{bottom:133.760000pt;}
.y66_c00088{bottom:136.320000pt;}
.y65_c00088{bottom:137.600000pt;}
.y64_c00088{bottom:172.160000pt;}
.y61_c00088{bottom:172.800000pt;}
.y62_c00088{bottom:173.440000pt;}
.y63_c00088{bottom:174.080000pt;}
.y60_c00088{bottom:174.720000pt;}
.y5d_c00088{bottom:209.280000pt;}
.y5f_c00088{bottom:209.920000pt;}
.y5e_c00088{bottom:211.200000pt;}
.y5c_c00088{bottom:211.840000pt;}
.y5b_c00088{bottom:212.480000pt;}
.y59_c00088{bottom:245.760000pt;}
.y5a_c00088{bottom:246.400000pt;}
.y55_c00088{bottom:247.040000pt;}
.y58_c00088{bottom:248.320000pt;}
.y57_c00088{bottom:248.960000pt;}
.y56_c00088{bottom:249.600000pt;}
.y54_c00088{bottom:250.240000pt;}
.y52_c00088{bottom:283.520000pt;}
.y50_c00088{bottom:284.800000pt;}
.y4f_c00088{bottom:286.080000pt;}
.y53_c00088{bottom:286.720000pt;}
.y51_c00088{bottom:287.360000pt;}
.y4e_c00088{bottom:288.000000pt;}
.y4d_c00088{bottom:322.560000pt;}
.y4c_c00088{bottom:325.120000pt;}
.y4b_c00088{bottom:325.760000pt;}
.y4a_c00088{bottom:326.400000pt;}
.y48_c00088{bottom:360.960000pt;}
.y47_c00088{bottom:361.600000pt;}
.y45_c00088{bottom:362.240000pt;}
.y49_c00088{bottom:362.880000pt;}
.y46_c00088{bottom:363.520000pt;}
.y44_c00088{bottom:364.160000pt;}
.y41_c00088{bottom:398.080000pt;}
.y42_c00088{bottom:399.360000pt;}
.y43_c00088{bottom:400.640000pt;}
.y3f_c00088{bottom:401.280000pt;}
.y40_c00088{bottom:401.920000pt;}
.y3e_c00088{bottom:437.120000pt;}
.y3c_c00088{bottom:439.040000pt;}
.y3d_c00088{bottom:439.680000pt;}
.y3a_c00088{bottom:474.240000pt;}
.y3b_c00088{bottom:476.800000pt;}
.y38_c00088{bottom:477.440000pt;}
.y39_c00088{bottom:478.080000pt;}
.y36_c00088{bottom:512.640000pt;}
.y37_c00088{bottom:513.280000pt;}
.y34_c00088{bottom:515.200000pt;}
.y35_c00088{bottom:515.840000pt;}
.y31_c00088{bottom:551.040000pt;}
.y32_c00088{bottom:552.960000pt;}
.y33_c00088{bottom:553.600000pt;}
.y2f_c00088{bottom:591.360000pt;}
.y30_c00088{bottom:592.000000pt;}
.y2e_c00088{bottom:636.160000pt;}
.y2d_c00088{bottom:638.080000pt;}
.y2c_c00088{bottom:638.720000pt;}
.y28_c00088{bottom:673.920000pt;}
.y29_c00088{bottom:674.560000pt;}
.y27_c00088{bottom:676.480000pt;}
.y2a_c00088{bottom:677.120000pt;}
.y2b_c00088{bottom:677.760000pt;}
.y22_c00088{bottom:711.680000pt;}
.y26_c00088{bottom:713.600000pt;}
.y23_c00088{bottom:714.240000pt;}
.y24_c00088{bottom:714.880000pt;}
.y25_c00088{bottom:715.520000pt;}
.y1d_c00088{bottom:748.800000pt;}
.y1e_c00088{bottom:750.080000pt;}
.y21_c00088{bottom:751.360000pt;}
.y1f_c00088{bottom:752.640000pt;}
.y20_c00088{bottom:753.280000pt;}
.y17_c00088{bottom:786.560000pt;}
.y1a_c00088{bottom:788.480000pt;}
.y1b_c00088{bottom:789.120000pt;}
.y18_c00088{bottom:790.400000pt;}
.y19_c00088{bottom:791.040000pt;}
.y1c_c00088{bottom:791.680000pt;}
.y11_c00088{bottom:824.960000pt;}
.y13_c00088{bottom:826.240000pt;}
.y15_c00088{bottom:826.880000pt;}
.y12_c00088{bottom:827.520000pt;}
.y16_c00088{bottom:828.800000pt;}
.y14_c00088{bottom:829.440000pt;}
.yd_c00088{bottom:864.000000pt;}
.ya_c00088{bottom:864.640000pt;}
.yb_c00088{bottom:865.280000pt;}
.yc_c00088{bottom:865.920000pt;}
.yf_c00088{bottom:866.560000pt;}
.ye_c00088{bottom:867.200000pt;}
.y10_c00088{bottom:867.840000pt;}
.y3_c00088{bottom:901.120000pt;}
.y5_c00088{bottom:901.760000pt;}
.y6_c00088{bottom:902.400000pt;}
.y2_c00088{bottom:903.040000pt;}
.y4_c00088{bottom:904.320000pt;}
.y7_c00088{bottom:904.960000pt;}
.y8_c00088{bottom:905.600000pt;}
.y9_c00088{bottom:906.240000pt;}
.y1_c00088{bottom:961.920000pt;}
.h5_c00088{height:27.645000pt;}
.h7_c00088{height:29.948750pt;}
.hb_c00088{height:32.252500pt;}
.hf_c00088{height:34.556250pt;}
.h6_c00088{height:36.860000pt;}
.h8_c00088{height:39.163750pt;}
.h3_c00088{height:41.467500pt;}
.h9_c00088{height:43.771250pt;}
.ha_c00088{height:46.075000pt;}
.h4_c00088{height:48.378750pt;}
.he_c00088{height:50.682500pt;}
.hd_c00088{height:52.986250pt;}
.hc_c00088{height:55.290000pt;}
.h2_c00088{height:57.593750pt;}
.h0_c00088{height:1025.280000pt;}
.h1_c00088{height:1025.333333pt;}
.w0_c00088{width:720.640000pt;}
.w1_c00088{width:720.666667pt;}
.x0_c00088{left:0.000000pt;}
.x38_c00088{left:74.240000pt;}
.x2_c00088{left:75.520000pt;}
.x4a_c00088{left:85.120000pt;}
.x3_c00088{left:103.680000pt;}
.xd_c00088{left:113.920000pt;}
.x34_c00088{left:122.240000pt;}
.x39_c00088{left:123.520000pt;}
.x14_c00088{left:132.480000pt;}
.x3a_c00088{left:140.800000pt;}
.x4_c00088{left:142.720000pt;}
.x43_c00088{left:151.040000pt;}
.x1c_c00088{left:152.320000pt;}
.x26_c00088{left:161.280000pt;}
.x5_c00088{left:171.520000pt;}
.x3b_c00088{left:179.840000pt;}
.x1d_c00088{left:181.120000pt;}
.x27_c00088{left:190.080000pt;}
.xe_c00088{left:200.320000pt;}
.x3c_c00088{left:208.000000pt;}
.x15_c00088{left:209.280000pt;}
.x2c_c00088{left:219.520000pt;}
.x28_c00088{left:228.480000pt;}
.x1e_c00088{left:238.080000pt;}
.x16_c00088{left:247.040000pt;}
.x35_c00088{left:256.640000pt;}
.x30_c00088{left:259.840000pt;}
.x1f_c00088{left:266.880000pt;}
.x6_c00088{left:276.480000pt;}
.x49_c00088{left:284.800000pt;}
.x17_c00088{left:286.080000pt;}
.xf_c00088{left:295.040000pt;}
.x31_c00088{left:314.240000pt;}
.x45_c00088{left:323.840000pt;}
.x10_c00088{left:334.080000pt;}
.x7_c00088{left:342.400000pt;}
.x20_c00088{left:343.680000pt;}
.x2d_c00088{left:352.000000pt;}
.x29_c00088{left:353.280000pt;}
.x48_c00088{left:362.240000pt;}
.x8_c00088{left:382.080000pt;}
.x41_c00088{left:391.680000pt;}
.x18_c00088{left:401.280000pt;}
.x4b_c00088{left:409.600000pt;}
.x21_c00088{left:410.880000pt;}
.x2a_c00088{left:419.840000pt;}
.x19_c00088{left:421.120000pt;}
.x36_c00088{left:429.440000pt;}
.x9_c00088{left:439.680000pt;}
.x3d_c00088{left:448.000000pt;}
.x46_c00088{left:449.280000pt;}
.x2b_c00088{left:458.880000pt;}
.x24_c00088{left:468.480000pt;}
.x11_c00088{left:478.080000pt;}
.x3e_c00088{left:487.680000pt;}
.x37_c00088{left:496.000000pt;}
.xa_c00088{left:497.280000pt;}
.x47_c00088{left:506.240000pt;}
.x1a_c00088{left:507.520000pt;}
.x3f_c00088{left:515.840000pt;}
.x42_c00088{left:526.080000pt;}
.x32_c00088{left:535.040000pt;}
.xb_c00088{left:536.320000pt;}
.x40_c00088{left:545.280000pt;}
.x1b_c00088{left:554.880000pt;}
.x2e_c00088{left:564.480000pt;}
.x44_c00088{left:574.080000pt;}
.x22_c00088{left:575.360000pt;}
.xc_c00088{left:583.680000pt;}
.x12_c00088{left:595.200000pt;}
.x25_c00088{left:603.520000pt;}
.x23_c00088{left:612.480000pt;}
.x2f_c00088{left:623.360000pt;}
.x13_c00088{left:632.320000pt;}
.x33_c00088{left:633.600000pt;}
.x1_c00088{left:637.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2ab630bd6b0d594ee7f050da.woff2')format("woff");}.ff1_c00089{font-family:ff1_c00089;line-height:1.109863;font-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_c00089{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);}
.m57_c00089{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00089{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m54_c00089{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m11_c00089{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m31_c00089{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);}
.m32_c00089{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00089{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m45_c00089{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m17_c00089{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1_c00089{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00089{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00089{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m14_c00089{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2_c00089{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m0_c00089{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00089{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m13_c00089{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);}
.m4d_c00089{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m12_c00089{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.me_c00089{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);}
.m53_c00089{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m18_c00089{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);}
.m23_c00089{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00089{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.md_c00089{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m20_c00089{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);}
.m42_c00089{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);}
.m3a_c00089{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m3_c00089{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00089{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);}
.m35_c00089{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);}
.m2a_c00089{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);}
.m37_c00089{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m58_c00089{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.mc_c00089{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m24_c00089{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);}
.m5d_c00089{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);}
.m1f_c00089{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00089{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m5_c00089{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m19_c00089{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00089{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m59_c00089{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);}
.m39_c00089{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);}
.m22_c00089{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m47_c00089{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m41_c00089{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m4_c00089{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m55_c00089{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);}
.m40_c00089{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00089{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);}
.m38_c00089{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00089{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);}
.m8_c00089{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m52_c00089{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m21_c00089{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m16_c00089{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);}
.m6_c00089{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00089{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00089{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00089{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m15_c00089{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m30_c00089{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);}
.m56_c00089{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);}
.m2d_c00089{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.mf_c00089{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);}
.m4f_c00089{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m7_c00089{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00089{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);}
.m2b_c00089{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00089{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.mb_c00089{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m48_c00089{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m46_c00089{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);}
.m10_c00089{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m36_c00089{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);}
.ma_c00089{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00089{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m29_c00089{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00089{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m9_c00089{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m33_c00089{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m28_c00089{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m51_c00089{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);}
.m4e_c00089{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);}
.m49_c00089{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m25_c00089{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);}
.m26_c00089{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m34_c00089{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m43_c00089{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m50_c00089{transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);}
.m27_c00089{transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);}
.m44_c00089{transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);}
.v1_c00089{vertical-align:-5.760000px;}
.v0_c00089{vertical-align:0.000000px;}
.v3_c00089{vertical-align:5.760000px;}
.v2_c00089{vertical-align:8.640000px;}
.ls1_c00089{letter-spacing:0.000000px;}
.ls0_c00089{letter-spacing:23.166000px;}
.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;}
}
.ws1_c00089{word-spacing:-6.134160px;}
.ws0_c00089{word-spacing:-2.066160px;}
.ws2_c00089{word-spacing:0.000000px;}
.fc0_c00089{color:transparent;}
.fs4_c00089{font-size:34.560000px;}
.fs3_c00089{font-size:37.440000px;}
.fsb_c00089{font-size:40.320000px;}
.fsd_c00089{font-size:43.200000px;}
.fs9_c00089{font-size:46.080000px;}
.fs2_c00089{font-size:48.960000px;}
.fs1_c00089{font-size:51.840000px;}
.fs7_c00089{font-size:54.720000px;}
.fsa_c00089{font-size:57.600000px;}
.fs6_c00089{font-size:60.480000px;}
.fs8_c00089{font-size:63.360000px;}
.fsc_c00089{font-size:66.240000px;}
.fs5_c00089{font-size:69.120000px;}
.fs0_c00089{font-size:72.000000px;}
.y0_c00089{bottom:0.000000px;}
.y7a_c00089{bottom:43.200000px;}
.y78_c00089{bottom:43.920000px;}
.y77_c00089{bottom:44.640000px;}
.y79_c00089{bottom:45.360000px;}
.y76_c00089{bottom:46.800000px;}
.y73_c00089{bottom:84.960000px;}
.y75_c00089{bottom:86.400000px;}
.y74_c00089{bottom:87.120000px;}
.y72_c00089{bottom:87.840000px;}
.y71_c00089{bottom:88.560000px;}
.y70_c00089{bottom:89.280000px;}
.y6e_c00089{bottom:125.280000px;}
.y6f_c00089{bottom:126.000000px;}
.y6a_c00089{bottom:128.160000px;}
.y6d_c00089{bottom:129.600000px;}
.y69_c00089{bottom:130.320000px;}
.y6c_c00089{bottom:131.040000px;}
.y6b_c00089{bottom:131.760000px;}
.y68_c00089{bottom:133.920000px;}
.y66_c00089{bottom:169.920000px;}
.y65_c00089{bottom:170.640000px;}
.y67_c00089{bottom:171.360000px;}
.y62_c00089{bottom:172.800000px;}
.y64_c00089{bottom:174.240000px;}
.y63_c00089{bottom:174.960000px;}
.y5f_c00089{bottom:212.400000px;}
.y5b_c00089{bottom:213.120000px;}
.y61_c00089{bottom:213.840000px;}
.y60_c00089{bottom:214.560000px;}
.y5e_c00089{bottom:215.280000px;}
.y5d_c00089{bottom:216.000000px;}
.y5c_c00089{bottom:216.720000px;}
.y5a_c00089{bottom:217.440000px;}
.y58_c00089{bottom:254.880000px;}
.y59_c00089{bottom:257.040000px;}
.y57_c00089{bottom:257.760000px;}
.y56_c00089{bottom:258.480000px;}
.y55_c00089{bottom:259.200000px;}
.y53_c00089{bottom:308.880000px;}
.y54_c00089{bottom:309.600000px;}
.y51_c00089{bottom:310.320000px;}
.y52_c00089{bottom:313.200000px;}
.y50_c00089{bottom:313.920000px;}
.y4f_c00089{bottom:350.640000px;}
.y4e_c00089{bottom:351.360000px;}
.y4b_c00089{bottom:353.520000px;}
.y4d_c00089{bottom:354.240000px;}
.y4c_c00089{bottom:354.960000px;}
.y4a_c00089{bottom:355.680000px;}
.y46_c00089{bottom:394.560000px;}
.y48_c00089{bottom:395.280000px;}
.y49_c00089{bottom:396.000000px;}
.y47_c00089{bottom:396.720000px;}
.y45_c00089{bottom:397.440000px;}
.y43_c00089{bottom:436.320000px;}
.y42_c00089{bottom:437.760000px;}
.y44_c00089{bottom:439.200000px;}
.y41_c00089{bottom:440.640000px;}
.y3f_c00089{bottom:478.800000px;}
.y40_c00089{bottom:479.520000px;}
.y3d_c00089{bottom:480.240000px;}
.y3e_c00089{bottom:481.680000px;}
.y3c_c00089{bottom:482.400000px;}
.y3b_c00089{bottom:483.120000px;}
.y3a_c00089{bottom:524.160000px;}
.y38_c00089{bottom:524.880000px;}
.y39_c00089{bottom:525.600000px;}
.y37_c00089{bottom:564.480000px;}
.y35_c00089{bottom:565.200000px;}
.y36_c00089{bottom:565.920000px;}
.y34_c00089{bottom:568.080000px;}
.y2f_c00089{bottom:607.680000px;}
.y32_c00089{bottom:608.400000px;}
.y33_c00089{bottom:609.840000px;}
.y30_c00089{bottom:610.560000px;}
.y31_c00089{bottom:611.280000px;}
.y2b_c00089{bottom:649.440000px;}
.y2d_c00089{bottom:650.880000px;}
.y2a_c00089{bottom:652.320000px;}
.y2c_c00089{bottom:653.040000px;}
.y2e_c00089{bottom:653.760000px;}
.y28_c00089{bottom:692.640000px;}
.y29_c00089{bottom:693.360000px;}
.y26_c00089{bottom:695.520000px;}
.y27_c00089{bottom:696.240000px;}
.y21_c00089{bottom:735.120000px;}
.y23_c00089{bottom:735.840000px;}
.y22_c00089{bottom:737.280000px;}
.y20_c00089{bottom:738.000000px;}
.y24_c00089{bottom:738.720000px;}
.y25_c00089{bottom:739.440000px;}
.y1e_c00089{bottom:778.320000px;}
.y1d_c00089{bottom:781.200000px;}
.y1f_c00089{bottom:781.920000px;}
.y15_c00089{bottom:820.080000px;}
.y16_c00089{bottom:820.800000px;}
.y1a_c00089{bottom:821.520000px;}
.y19_c00089{bottom:822.240000px;}
.y14_c00089{bottom:822.960000px;}
.y18_c00089{bottom:823.680000px;}
.y17_c00089{bottom:824.400000px;}
.y1b_c00089{bottom:825.120000px;}
.y1c_c00089{bottom:825.840000px;}
.y12_c00089{bottom:864.000000px;}
.yf_c00089{bottom:864.720000px;}
.y10_c00089{bottom:865.440000px;}
.y11_c00089{bottom:866.880000px;}
.y13_c00089{bottom:867.600000px;}
.y9_c00089{bottom:905.760000px;}
.yd_c00089{bottom:907.200000px;}
.ya_c00089{bottom:908.640000px;}
.yc_c00089{bottom:909.360000px;}
.yb_c00089{bottom:910.080000px;}
.ye_c00089{bottom:910.800000px;}
.y8_c00089{bottom:950.400000px;}
.y4_c00089{bottom:951.120000px;}
.y5_c00089{bottom:951.840000px;}
.y6_c00089{bottom:952.560000px;}
.y7_c00089{bottom:953.280000px;}
.y2_c00089{bottom:1015.920000px;}
.y3_c00089{bottom:1016.640000px;}
.y1_c00089{bottom:1088.640000px;}
.h6_c00089{height:31.100625px;}
.h5_c00089{height:33.692344px;}
.hd_c00089{height:36.284062px;}
.h10_c00089{height:38.875781px;}
.hb_c00089{height:41.467500px;}
.h4_c00089{height:44.059219px;}
.h3_c00089{height:46.650937px;}
.h9_c00089{height:49.242656px;}
.hc_c00089{height:51.834375px;}
.h8_c00089{height:54.426094px;}
.hf_c00089{height:55.290938px;}
.ha_c00089{height:57.017812px;}
.he_c00089{height:59.609531px;}
.h7_c00089{height:62.201250px;}
.h2_c00089{height:64.792969px;}
.h0_c00089{height:1153.440000px;}
.h1_c00089{height:1153.500000px;}
.w0_c00089{width:810.000000px;}
.x0_c00089{left:0.000000px;}
.x26_c00089{left:84.240000px;}
.xe_c00089{left:86.400000px;}
.x5a_c00089{left:88.560000px;}
.x46_c00089{left:116.640000px;}
.x1f_c00089{left:118.800000px;}
.x4a_c00089{left:127.440000px;}
.x19_c00089{left:129.600000px;}
.x40_c00089{left:138.240000px;}
.x20_c00089{left:149.040000px;}
.x2a_c00089{left:150.480000px;}
.x3a_c00089{left:160.560000px;}
.xf_c00089{left:162.000000px;}
.x4b_c00089{left:169.200000px;}
.x30_c00089{left:171.360000px;}
.x42_c00089{left:181.440000px;}
.x2b_c00089{left:182.880000px;}
.x5_c00089{left:193.680000px;}
.x3b_c00089{left:203.040000px;}
.x53_c00089{left:211.680000px;}
.x31_c00089{left:213.840000px;}
.x50_c00089{left:215.280000px;}
.x6_c00089{left:224.640000px;}
.x5b_c00089{left:235.440000px;}
.x43_c00089{left:245.520000px;}
.x10_c00089{left:246.960000px;}
.x47_c00089{left:255.600000px;}
.x51_c00089{left:257.040000px;}
.x11_c00089{left:267.840000px;}
.x34_c00089{left:277.200000px;}
.x21_c00089{left:278.640000px;}
.x2c_c00089{left:289.440000px;}
.x54_c00089{left:298.800000px;}
.x2_c00089{left:300.960000px;}
.x1a_c00089{left:311.040000px;}
.x44_c00089{left:321.120000px;}
.x12_c00089{left:322.560000px;}
.x3_c00089{left:332.640000px;}
.x13_c00089{left:343.440000px;}
.x2d_c00089{left:346.320000px;}
.x35_c00089{left:354.240000px;}
.x55_c00089{left:363.600000px;}
.x3c_c00089{left:365.040000px;}
.x7_c00089{left:366.480000px;}
.x1b_c00089{left:375.840000px;}
.x45_c00089{left:387.360000px;}
.x8_c00089{left:398.160000px;}
.x4_c00089{left:408.240000px;}
.x2e_c00089{left:409.680000px;}
.x58_c00089{left:418.320000px;}
.x22_c00089{left:419.760000px;}
.x14_c00089{left:431.280000px;}
.x4c_c00089{left:444.960000px;}
.x56_c00089{left:450.000000px;}
.x27_c00089{left:451.440000px;}
.x36_c00089{left:462.240000px;}
.x4d_c00089{left:471.600000px;}
.x1c_c00089{left:473.760000px;}
.x41_c00089{left:483.840000px;}
.x3d_c00089{left:485.280000px;}
.x32_c00089{left:493.920000px;}
.x9_c00089{left:506.160000px;}
.x3e_c00089{left:516.240000px;}
.x15_c00089{left:527.040000px;}
.x59_c00089{left:537.120000px;}
.xa_c00089{left:538.560000px;}
.x2f_c00089{left:540.000000px;}
.x16_c00089{left:549.360000px;}
.x37_c00089{left:560.160000px;}
.x3f_c00089{left:570.240000px;}
.xb_c00089{left:572.400000px;}
.x28_c00089{left:581.760000px;}
.x38_c00089{left:592.560000px;}
.x49_c00089{left:602.640000px;}
.x17_c00089{left:604.080000px;}
.x33_c00089{left:614.160000px;}
.x29_c00089{left:615.600000px;}
.xc_c00089{left:625.680000px;}
.x4e_c00089{left:635.040000px;}
.x5c_c00089{left:636.480000px;}
.x23_c00089{left:646.560000px;}
.x48_c00089{left:657.360000px;}
.xd_c00089{left:658.800000px;}
.x57_c00089{left:668.160000px;}
.x1d_c00089{left:669.600000px;}
.x24_c00089{left:679.680000px;}
.x18_c00089{left:690.480000px;}
.x52_c00089{left:700.560000px;}
.x1e_c00089{left:702.000000px;}
.x4f_c00089{left:704.160000px;}
.x25_c00089{left:712.080000px;}
.x1_c00089{left:730.080000px;}
.x39_c00089{left:734.400000px;}
@media print{
.v1_c00089{vertical-align:-5.120000pt;}
.v0_c00089{vertical-align:0.000000pt;}
.v3_c00089{vertical-align:5.120000pt;}
.v2_c00089{vertical-align:7.680000pt;}
.ls1_c00089{letter-spacing:0.000000pt;}
.ls0_c00089{letter-spacing:20.592000pt;}
.ws1_c00089{word-spacing:-5.452587pt;}
.ws0_c00089{word-spacing:-1.836587pt;}
.ws2_c00089{word-spacing:0.000000pt;}
.fs4_c00089{font-size:30.720000pt;}
.fs3_c00089{font-size:33.280000pt;}
.fsb_c00089{font-size:35.840000pt;}
.fsd_c00089{font-size:38.400000pt;}
.fs9_c00089{font-size:40.960000pt;}
.fs2_c00089{font-size:43.520000pt;}
.fs1_c00089{font-size:46.080000pt;}
.fs7_c00089{font-size:48.640000pt;}
.fsa_c00089{font-size:51.200000pt;}
.fs6_c00089{font-size:53.760000pt;}
.fs8_c00089{font-size:56.320000pt;}
.fsc_c00089{font-size:58.880000pt;}
.fs5_c00089{font-size:61.440000pt;}
.fs0_c00089{font-size:64.000000pt;}
.y0_c00089{bottom:0.000000pt;}
.y7a_c00089{bottom:38.400000pt;}
.y78_c00089{bottom:39.040000pt;}
.y77_c00089{bottom:39.680000pt;}
.y79_c00089{bottom:40.320000pt;}
.y76_c00089{bottom:41.600000pt;}
.y73_c00089{bottom:75.520000pt;}
.y75_c00089{bottom:76.800000pt;}
.y74_c00089{bottom:77.440000pt;}
.y72_c00089{bottom:78.080000pt;}
.y71_c00089{bottom:78.720000pt;}
.y70_c00089{bottom:79.360000pt;}
.y6e_c00089{bottom:111.360000pt;}
.y6f_c00089{bottom:112.000000pt;}
.y6a_c00089{bottom:113.920000pt;}
.y6d_c00089{bottom:115.200000pt;}
.y69_c00089{bottom:115.840000pt;}
.y6c_c00089{bottom:116.480000pt;}
.y6b_c00089{bottom:117.120000pt;}
.y68_c00089{bottom:119.040000pt;}
.y66_c00089{bottom:151.040000pt;}
.y65_c00089{bottom:151.680000pt;}
.y67_c00089{bottom:152.320000pt;}
.y62_c00089{bottom:153.600000pt;}
.y64_c00089{bottom:154.880000pt;}
.y63_c00089{bottom:155.520000pt;}
.y5f_c00089{bottom:188.800000pt;}
.y5b_c00089{bottom:189.440000pt;}
.y61_c00089{bottom:190.080000pt;}
.y60_c00089{bottom:190.720000pt;}
.y5e_c00089{bottom:191.360000pt;}
.y5d_c00089{bottom:192.000000pt;}
.y5c_c00089{bottom:192.640000pt;}
.y5a_c00089{bottom:193.280000pt;}
.y58_c00089{bottom:226.560000pt;}
.y59_c00089{bottom:228.480000pt;}
.y57_c00089{bottom:229.120000pt;}
.y56_c00089{bottom:229.760000pt;}
.y55_c00089{bottom:230.400000pt;}
.y53_c00089{bottom:274.560000pt;}
.y54_c00089{bottom:275.200000pt;}
.y51_c00089{bottom:275.840000pt;}
.y52_c00089{bottom:278.400000pt;}
.y50_c00089{bottom:279.040000pt;}
.y4f_c00089{bottom:311.680000pt;}
.y4e_c00089{bottom:312.320000pt;}
.y4b_c00089{bottom:314.240000pt;}
.y4d_c00089{bottom:314.880000pt;}
.y4c_c00089{bottom:315.520000pt;}
.y4a_c00089{bottom:316.160000pt;}
.y46_c00089{bottom:350.720000pt;}
.y48_c00089{bottom:351.360000pt;}
.y49_c00089{bottom:352.000000pt;}
.y47_c00089{bottom:352.640000pt;}
.y45_c00089{bottom:353.280000pt;}
.y43_c00089{bottom:387.840000pt;}
.y42_c00089{bottom:389.120000pt;}
.y44_c00089{bottom:390.400000pt;}
.y41_c00089{bottom:391.680000pt;}
.y3f_c00089{bottom:425.600000pt;}
.y40_c00089{bottom:426.240000pt;}
.y3d_c00089{bottom:426.880000pt;}
.y3e_c00089{bottom:428.160000pt;}
.y3c_c00089{bottom:428.800000pt;}
.y3b_c00089{bottom:429.440000pt;}
.y3a_c00089{bottom:465.920000pt;}
.y38_c00089{bottom:466.560000pt;}
.y39_c00089{bottom:467.200000pt;}
.y37_c00089{bottom:501.760000pt;}
.y35_c00089{bottom:502.400000pt;}
.y36_c00089{bottom:503.040000pt;}
.y34_c00089{bottom:504.960000pt;}
.y2f_c00089{bottom:540.160000pt;}
.y32_c00089{bottom:540.800000pt;}
.y33_c00089{bottom:542.080000pt;}
.y30_c00089{bottom:542.720000pt;}
.y31_c00089{bottom:543.360000pt;}
.y2b_c00089{bottom:577.280000pt;}
.y2d_c00089{bottom:578.560000pt;}
.y2a_c00089{bottom:579.840000pt;}
.y2c_c00089{bottom:580.480000pt;}
.y2e_c00089{bottom:581.120000pt;}
.y28_c00089{bottom:615.680000pt;}
.y29_c00089{bottom:616.320000pt;}
.y26_c00089{bottom:618.240000pt;}
.y27_c00089{bottom:618.880000pt;}
.y21_c00089{bottom:653.440000pt;}
.y23_c00089{bottom:654.080000pt;}
.y22_c00089{bottom:655.360000pt;}
.y20_c00089{bottom:656.000000pt;}
.y24_c00089{bottom:656.640000pt;}
.y25_c00089{bottom:657.280000pt;}
.y1e_c00089{bottom:691.840000pt;}
.y1d_c00089{bottom:694.400000pt;}
.y1f_c00089{bottom:695.040000pt;}
.y15_c00089{bottom:728.960000pt;}
.y16_c00089{bottom:729.600000pt;}
.y1a_c00089{bottom:730.240000pt;}
.y19_c00089{bottom:730.880000pt;}
.y14_c00089{bottom:731.520000pt;}
.y18_c00089{bottom:732.160000pt;}
.y17_c00089{bottom:732.800000pt;}
.y1b_c00089{bottom:733.440000pt;}
.y1c_c00089{bottom:734.080000pt;}
.y12_c00089{bottom:768.000000pt;}
.yf_c00089{bottom:768.640000pt;}
.y10_c00089{bottom:769.280000pt;}
.y11_c00089{bottom:770.560000pt;}
.y13_c00089{bottom:771.200000pt;}
.y9_c00089{bottom:805.120000pt;}
.yd_c00089{bottom:806.400000pt;}
.ya_c00089{bottom:807.680000pt;}
.yc_c00089{bottom:808.320000pt;}
.yb_c00089{bottom:808.960000pt;}
.ye_c00089{bottom:809.600000pt;}
.y8_c00089{bottom:844.800000pt;}
.y4_c00089{bottom:845.440000pt;}
.y5_c00089{bottom:846.080000pt;}
.y6_c00089{bottom:846.720000pt;}
.y7_c00089{bottom:847.360000pt;}
.y2_c00089{bottom:903.040000pt;}
.y3_c00089{bottom:903.680000pt;}
.y1_c00089{bottom:967.680000pt;}
.h6_c00089{height:27.645000pt;}
.h5_c00089{height:29.948750pt;}
.hd_c00089{height:32.252500pt;}
.h10_c00089{height:34.556250pt;}
.hb_c00089{height:36.860000pt;}
.h4_c00089{height:39.163750pt;}
.h3_c00089{height:41.467500pt;}
.h9_c00089{height:43.771250pt;}
.hc_c00089{height:46.075000pt;}
.h8_c00089{height:48.378750pt;}
.hf_c00089{height:49.147500pt;}
.ha_c00089{height:50.682500pt;}
.he_c00089{height:52.986250pt;}
.h7_c00089{height:55.290000pt;}
.h2_c00089{height:57.593750pt;}
.h0_c00089{height:1025.280000pt;}
.h1_c00089{height:1025.333333pt;}
.w0_c00089{width:720.000000pt;}
.x0_c00089{left:0.000000pt;}
.x26_c00089{left:74.880000pt;}
.xe_c00089{left:76.800000pt;}
.x5a_c00089{left:78.720000pt;}
.x46_c00089{left:103.680000pt;}
.x1f_c00089{left:105.600000pt;}
.x4a_c00089{left:113.280000pt;}
.x19_c00089{left:115.200000pt;}
.x40_c00089{left:122.880000pt;}
.x20_c00089{left:132.480000pt;}
.x2a_c00089{left:133.760000pt;}
.x3a_c00089{left:142.720000pt;}
.xf_c00089{left:144.000000pt;}
.x4b_c00089{left:150.400000pt;}
.x30_c00089{left:152.320000pt;}
.x42_c00089{left:161.280000pt;}
.x2b_c00089{left:162.560000pt;}
.x5_c00089{left:172.160000pt;}
.x3b_c00089{left:180.480000pt;}
.x53_c00089{left:188.160000pt;}
.x31_c00089{left:190.080000pt;}
.x50_c00089{left:191.360000pt;}
.x6_c00089{left:199.680000pt;}
.x5b_c00089{left:209.280000pt;}
.x43_c00089{left:218.240000pt;}
.x10_c00089{left:219.520000pt;}
.x47_c00089{left:227.200000pt;}
.x51_c00089{left:228.480000pt;}
.x11_c00089{left:238.080000pt;}
.x34_c00089{left:246.400000pt;}
.x21_c00089{left:247.680000pt;}
.x2c_c00089{left:257.280000pt;}
.x54_c00089{left:265.600000pt;}
.x2_c00089{left:267.520000pt;}
.x1a_c00089{left:276.480000pt;}
.x44_c00089{left:285.440000pt;}
.x12_c00089{left:286.720000pt;}
.x3_c00089{left:295.680000pt;}
.x13_c00089{left:305.280000pt;}
.x2d_c00089{left:307.840000pt;}
.x35_c00089{left:314.880000pt;}
.x55_c00089{left:323.200000pt;}
.x3c_c00089{left:324.480000pt;}
.x7_c00089{left:325.760000pt;}
.x1b_c00089{left:334.080000pt;}
.x45_c00089{left:344.320000pt;}
.x8_c00089{left:353.920000pt;}
.x4_c00089{left:362.880000pt;}
.x2e_c00089{left:364.160000pt;}
.x58_c00089{left:371.840000pt;}
.x22_c00089{left:373.120000pt;}
.x14_c00089{left:383.360000pt;}
.x4c_c00089{left:395.520000pt;}
.x56_c00089{left:400.000000pt;}
.x27_c00089{left:401.280000pt;}
.x36_c00089{left:410.880000pt;}
.x4d_c00089{left:419.200000pt;}
.x1c_c00089{left:421.120000pt;}
.x41_c00089{left:430.080000pt;}
.x3d_c00089{left:431.360000pt;}
.x32_c00089{left:439.040000pt;}
.x9_c00089{left:449.920000pt;}
.x3e_c00089{left:458.880000pt;}
.x15_c00089{left:468.480000pt;}
.x59_c00089{left:477.440000pt;}
.xa_c00089{left:478.720000pt;}
.x2f_c00089{left:480.000000pt;}
.x16_c00089{left:488.320000pt;}
.x37_c00089{left:497.920000pt;}
.x3f_c00089{left:506.880000pt;}
.xb_c00089{left:508.800000pt;}
.x28_c00089{left:517.120000pt;}
.x38_c00089{left:526.720000pt;}
.x49_c00089{left:535.680000pt;}
.x17_c00089{left:536.960000pt;}
.x33_c00089{left:545.920000pt;}
.x29_c00089{left:547.200000pt;}
.xc_c00089{left:556.160000pt;}
.x4e_c00089{left:564.480000pt;}
.x5c_c00089{left:565.760000pt;}
.x23_c00089{left:574.720000pt;}
.x48_c00089{left:584.320000pt;}
.xd_c00089{left:585.600000pt;}
.x57_c00089{left:593.920000pt;}
.x1d_c00089{left:595.200000pt;}
.x24_c00089{left:604.160000pt;}
.x18_c00089{left:613.760000pt;}
.x52_c00089{left:622.720000pt;}
.x1e_c00089{left:624.000000pt;}
.x4f_c00089{left:625.920000pt;}
.x25_c00089{left:632.960000pt;}
.x1_c00089{left:648.960000pt;}
.x39_c00089{left:652.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6048c1baa61564dfebd8c08f.woff2')format("woff");}.ff1_c00090{font-family:ff1_c00090;line-height:1.109863;font-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_c00090{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);}
.m4c_c00090{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m17_c00090{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);}
.m58_c00090{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m24_c00090{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m40_c00090{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00090{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m57_c00090{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m10_c00090{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m41_c00090{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m54_c00090{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00090{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);}
.m3f_c00090{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);}
.m1b_c00090{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);}
.m35_c00090{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00090{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m13_c00090{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m0_c00090{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);}
.m2b_c00090{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m3_c00090{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);}
.m1a_c00090{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);}
.m15_c00090{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m38_c00090{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m6_c00090{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);}
.m39_c00090{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);}
.m42_c00090{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_c00090{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m53_c00090{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);}
.m18_c00090{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m7_c00090{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);}
.m29_c00090{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m47_c00090{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.mb_c00090{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00090{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);}
.m12_c00090{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);}
.m48_c00090{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m14_c00090{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m32_c00090{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.me_c00090{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00090{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);}
.m9_c00090{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m23_c00090{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);}
.m2e_c00090{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m34_c00090{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00090{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m55_c00090{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m1_c00090{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00090{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m59_c00090{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);}
.m2c_c00090{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m11_c00090{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00090{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);}
.md_c00090{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m37_c00090{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m20_c00090{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00090{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m28_c00090{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);}
.m36_c00090{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);}
.m56_c00090{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m5_c00090{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00090{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m27_c00090{transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);}
.ma_c00090{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00090{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00090{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m33_c00090{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m19_c00090{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);}
.m3d_c00090{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00090{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00090{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m50_c00090{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m16_c00090{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m45_c00090{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);}
.m31_c00090{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);}
.m25_c00090{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.mc_c00090{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m22_c00090{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m4_c00090{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m43_c00090{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m30_c00090{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m52_c00090{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);}
.m3a_c00090{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);}
.m46_c00090{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m51_c00090{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);}
.m26_c00090{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m8_c00090{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m49_c00090{transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);}
.m44_c00090{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);}
.m21_c00090{transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);}
.m2_c00090{transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);}
.v0_c00090{vertical-align:0.000000px;}
.ls0_c00090{letter-spacing:0.000000px;}
.sc__c00090{text-shadow:none;}
.sc0_c00090{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00090{-webkit-text-stroke:0px transparent;}
.sc0_c00090{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00090{word-spacing:0.000000px;}
.fc0_c00090{color:transparent;}
.fs4_c00090{font-size:34.560000px;}
.fs9_c00090{font-size:37.440000px;}
.fsd_c00090{font-size:40.320000px;}
.fsb_c00090{font-size:43.200000px;}
.fs2_c00090{font-size:46.080000px;}
.fs5_c00090{font-size:48.960000px;}
.fs1_c00090{font-size:51.840000px;}
.fsc_c00090{font-size:54.720000px;}
.fs6_c00090{font-size:57.600000px;}
.fs3_c00090{font-size:60.480000px;}
.fs8_c00090{font-size:63.360000px;}
.fsa_c00090{font-size:66.240000px;}
.fs0_c00090{font-size:69.120000px;}
.fs7_c00090{font-size:72.000000px;}
.y0_c00090{bottom:0.000000px;}
.y79_c00090{bottom:52.560000px;}
.y76_c00090{bottom:53.280000px;}
.y78_c00090{bottom:54.720000px;}
.y77_c00090{bottom:55.440000px;}
.y75_c00090{bottom:56.880000px;}
.y74_c00090{bottom:110.160000px;}
.y70_c00090{bottom:149.040000px;}
.y72_c00090{bottom:149.760000px;}
.y73_c00090{bottom:150.480000px;}
.y71_c00090{bottom:151.920000px;}
.y6f_c00090{bottom:152.640000px;}
.y6e_c00090{bottom:190.080000px;}
.y6c_c00090{bottom:190.800000px;}
.y6d_c00090{bottom:191.520000px;}
.y6b_c00090{bottom:192.240000px;}
.y68_c00090{bottom:193.680000px;}
.y6a_c00090{bottom:194.400000px;}
.y69_c00090{bottom:195.840000px;}
.y67_c00090{bottom:232.560000px;}
.y66_c00090{bottom:234.000000px;}
.y63_c00090{bottom:234.720000px;}
.y65_c00090{bottom:235.440000px;}
.y61_c00090{bottom:236.160000px;}
.y64_c00090{bottom:236.880000px;}
.y62_c00090{bottom:237.600000px;}
.y60_c00090{bottom:238.320000px;}
.y5f_c00090{bottom:276.480000px;}
.y5c_c00090{bottom:277.920000px;}
.y5e_c00090{bottom:279.360000px;}
.y5d_c00090{bottom:280.080000px;}
.y5b_c00090{bottom:318.240000px;}
.y5a_c00090{bottom:318.960000px;}
.y58_c00090{bottom:319.680000px;}
.y57_c00090{bottom:321.120000px;}
.y59_c00090{bottom:321.840000px;}
.y56_c00090{bottom:323.280000px;}
.y54_c00090{bottom:360.720000px;}
.y51_c00090{bottom:361.440000px;}
.y50_c00090{bottom:362.160000px;}
.y55_c00090{bottom:363.600000px;}
.y53_c00090{bottom:364.320000px;}
.y52_c00090{bottom:365.040000px;}
.y4f_c00090{bottom:365.760000px;}
.y4d_c00090{bottom:405.360000px;}
.y4e_c00090{bottom:406.800000px;}
.y4c_c00090{bottom:407.520000px;}
.y4b_c00090{bottom:408.960000px;}
.y47_c00090{bottom:447.120000px;}
.y46_c00090{bottom:447.840000px;}
.y49_c00090{bottom:448.560000px;}
.y4a_c00090{bottom:449.280000px;}
.y48_c00090{bottom:450.000000px;}
.y45_c00090{bottom:450.720000px;}
.y44_c00090{bottom:451.440000px;}
.y40_c00090{bottom:490.320000px;}
.y3f_c00090{bottom:491.040000px;}
.y41_c00090{bottom:491.760000px;}
.y43_c00090{bottom:492.480000px;}
.y42_c00090{bottom:493.200000px;}
.y3e_c00090{bottom:493.920000px;}
.y3d_c00090{bottom:532.800000px;}
.y3b_c00090{bottom:533.520000px;}
.y38_c00090{bottom:534.240000px;}
.y3a_c00090{bottom:534.960000px;}
.y39_c00090{bottom:535.680000px;}
.y3c_c00090{bottom:536.400000px;}
.y37_c00090{bottom:537.120000px;}
.y36_c00090{bottom:586.800000px;}
.y35_c00090{bottom:587.520000px;}
.y34_c00090{bottom:588.960000px;}
.y33_c00090{bottom:628.560000px;}
.y30_c00090{bottom:629.280000px;}
.y32_c00090{bottom:630.000000px;}
.y31_c00090{bottom:631.440000px;}
.y2f_c00090{bottom:632.160000px;}
.y2b_c00090{bottom:671.760000px;}
.y2d_c00090{bottom:672.480000px;}
.y2c_c00090{bottom:674.640000px;}
.y2e_c00090{bottom:675.360000px;}
.y27_c00090{bottom:714.240000px;}
.y2a_c00090{bottom:714.960000px;}
.y26_c00090{bottom:716.400000px;}
.y28_c00090{bottom:717.120000px;}
.y29_c00090{bottom:717.840000px;}
.y23_c00090{bottom:756.000000px;}
.y24_c00090{bottom:757.440000px;}
.y22_c00090{bottom:759.600000px;}
.y25_c00090{bottom:760.320000px;}
.y1d_c00090{bottom:799.200000px;}
.y1e_c00090{bottom:799.920000px;}
.y21_c00090{bottom:800.640000px;}
.y1c_c00090{bottom:802.080000px;}
.y1f_c00090{bottom:802.800000px;}
.y20_c00090{bottom:803.520000px;}
.y19_c00090{bottom:841.680000px;}
.y18_c00090{bottom:844.560000px;}
.y1a_c00090{bottom:845.280000px;}
.y1b_c00090{bottom:846.000000px;}
.y14_c00090{bottom:885.600000px;}
.y17_c00090{bottom:886.320000px;}
.y13_c00090{bottom:887.040000px;}
.y15_c00090{bottom:888.480000px;}
.y16_c00090{bottom:889.200000px;}
.yd_c00090{bottom:925.920000px;}
.yf_c00090{bottom:927.360000px;}
.y12_c00090{bottom:928.800000px;}
.ye_c00090{bottom:929.520000px;}
.y10_c00090{bottom:930.960000px;}
.y11_c00090{bottom:931.680000px;}
.y7_c00090{bottom:971.280000px;}
.y8_c00090{bottom:972.000000px;}
.y9_c00090{bottom:972.720000px;}
.ya_c00090{bottom:973.440000px;}
.yb_c00090{bottom:974.160000px;}
.yc_c00090{bottom:974.880000px;}
.y4_c00090{bottom:1013.040000px;}
.y2_c00090{bottom:1014.480000px;}
.y3_c00090{bottom:1015.920000px;}
.y5_c00090{bottom:1016.640000px;}
.y6_c00090{bottom:1018.080000px;}
.y1_c00090{bottom:1085.040000px;}
.h6_c00090{height:31.100625px;}
.hb_c00090{height:33.692344px;}
.hf_c00090{height:36.284062px;}
.hd_c00090{height:38.875781px;}
.h4_c00090{height:41.467500px;}
.h7_c00090{height:44.059219px;}
.h3_c00090{height:46.650937px;}
.he_c00090{height:49.242656px;}
.h8_c00090{height:51.834375px;}
.h5_c00090{height:54.426094px;}
.ha_c00090{height:57.017812px;}
.hc_c00090{height:59.609531px;}
.h2_c00090{height:62.201250px;}
.h9_c00090{height:64.792969px;}
.h0_c00090{height:1152.720000px;}
.h1_c00090{height:1152.750000px;}
.w1_c00090{width:808.500000px;}
.w0_c00090{width:808.560000px;}
.x0_c00090{left:0.000000px;}
.x25_c00090{left:81.360000px;}
.x2_c00090{left:82.800000px;}
.x18_c00090{left:92.880000px;}
.xd_c00090{left:114.480000px;}
.x26_c00090{left:123.840000px;}
.x19_c00090{left:134.640000px;}
.x3_c00090{left:136.080000px;}
.x38_c00090{left:138.240000px;}
.x3f_c00090{left:146.160000px;}
.x4c_c00090{left:155.520000px;}
.x4_c00090{left:157.680000px;}
.x45_c00090{left:159.840000px;}
.x15_c00090{left:167.760000px;}
.x4d_c00090{left:178.560000px;}
.x1f_c00090{left:187.920000px;}
.x35_c00090{left:190.080000px;}
.x48_c00090{left:191.520000px;}
.x1a_c00090{left:198.720000px;}
.x46_c00090{left:200.160000px;}
.x3a_c00090{left:210.240000px;}
.x2b_c00090{left:221.040000px;}
.xe_c00090{left:231.840000px;}
.x20_c00090{left:241.920000px;}
.x49_c00090{left:243.360000px;}
.x5_c00090{left:253.440000px;}
.x27_c00090{left:263.520000px;}
.x32_c00090{left:275.040000px;}
.x6_c00090{left:285.120000px;}
.x21_c00090{left:295.920000px;}
.x7_c00090{left:317.520000px;}
.x2c_c00090{left:328.320000px;}
.x40_c00090{left:339.120000px;}
.x36_c00090{left:349.920000px;}
.x39_c00090{left:352.080000px;}
.x2d_c00090{left:360.000000px;}
.xf_c00090{left:361.440000px;}
.x28_c00090{left:371.520000px;}
.x22_c00090{left:382.320000px;}
.x41_c00090{left:393.120000px;}
.x2e_c00090{left:404.640000px;}
.x10_c00090{left:414.720000px;}
.x29_c00090{left:425.520000px;}
.x8_c00090{left:436.320000px;}
.x11_c00090{left:447.120000px;}
.x4a_c00090{left:448.560000px;}
.x3b_c00090{left:458.640000px;}
.x16_c00090{left:468.720000px;}
.x9_c00090{left:479.520000px;}
.x12_c00090{left:490.320000px;}
.x3c_c00090{left:491.760000px;}
.x42_c00090{left:501.840000px;}
.x23_c00090{left:512.640000px;}
.xa_c00090{left:523.440000px;}
.x4e_c00090{left:533.520000px;}
.x3e_c00090{left:535.680000px;}
.x2f_c00090{left:545.760000px;}
.x13_c00090{left:555.840000px;}
.x1b_c00090{left:557.280000px;}
.x37_c00090{left:566.640000px;}
.x1c_c00090{left:577.440000px;}
.xb_c00090{left:588.240000px;}
.x30_c00090{left:589.680000px;}
.x4f_c00090{left:598.320000px;}
.x1d_c00090{left:599.760000px;}
.x33_c00090{left:609.840000px;}
.x47_c00090{left:611.280000px;}
.x34_c00090{left:620.640000px;}
.xc_c00090{left:631.440000px;}
.x24_c00090{left:642.240000px;}
.x31_c00090{left:643.680000px;}
.x50_c00090{left:652.320000px;}
.x17_c00090{left:653.760000px;}
.x1e_c00090{left:664.560000px;}
.x2a_c00090{left:676.080000px;}
.x4b_c00090{left:686.880000px;}
.x3d_c00090{left:696.960000px;}
.x43_c00090{left:698.400000px;}
.x44_c00090{left:708.480000px;}
.x1_c00090{left:720.000000px;}
.x14_c00090{left:751.680000px;}
@media print{
.v0_c00090{vertical-align:0.000000pt;}
.ls0_c00090{letter-spacing:0.000000pt;}
.ws0_c00090{word-spacing:0.000000pt;}
.fs4_c00090{font-size:30.720000pt;}
.fs9_c00090{font-size:33.280000pt;}
.fsd_c00090{font-size:35.840000pt;}
.fsb_c00090{font-size:38.400000pt;}
.fs2_c00090{font-size:40.960000pt;}
.fs5_c00090{font-size:43.520000pt;}
.fs1_c00090{font-size:46.080000pt;}
.fsc_c00090{font-size:48.640000pt;}
.fs6_c00090{font-size:51.200000pt;}
.fs3_c00090{font-size:53.760000pt;}
.fs8_c00090{font-size:56.320000pt;}
.fsa_c00090{font-size:58.880000pt;}
.fs0_c00090{font-size:61.440000pt;}
.fs7_c00090{font-size:64.000000pt;}
.y0_c00090{bottom:0.000000pt;}
.y79_c00090{bottom:46.720000pt;}
.y76_c00090{bottom:47.360000pt;}
.y78_c00090{bottom:48.640000pt;}
.y77_c00090{bottom:49.280000pt;}
.y75_c00090{bottom:50.560000pt;}
.y74_c00090{bottom:97.920000pt;}
.y70_c00090{bottom:132.480000pt;}
.y72_c00090{bottom:133.120000pt;}
.y73_c00090{bottom:133.760000pt;}
.y71_c00090{bottom:135.040000pt;}
.y6f_c00090{bottom:135.680000pt;}
.y6e_c00090{bottom:168.960000pt;}
.y6c_c00090{bottom:169.600000pt;}
.y6d_c00090{bottom:170.240000pt;}
.y6b_c00090{bottom:170.880000pt;}
.y68_c00090{bottom:172.160000pt;}
.y6a_c00090{bottom:172.800000pt;}
.y69_c00090{bottom:174.080000pt;}
.y67_c00090{bottom:206.720000pt;}
.y66_c00090{bottom:208.000000pt;}
.y63_c00090{bottom:208.640000pt;}
.y65_c00090{bottom:209.280000pt;}
.y61_c00090{bottom:209.920000pt;}
.y64_c00090{bottom:210.560000pt;}
.y62_c00090{bottom:211.200000pt;}
.y60_c00090{bottom:211.840000pt;}
.y5f_c00090{bottom:245.760000pt;}
.y5c_c00090{bottom:247.040000pt;}
.y5e_c00090{bottom:248.320000pt;}
.y5d_c00090{bottom:248.960000pt;}
.y5b_c00090{bottom:282.880000pt;}
.y5a_c00090{bottom:283.520000pt;}
.y58_c00090{bottom:284.160000pt;}
.y57_c00090{bottom:285.440000pt;}
.y59_c00090{bottom:286.080000pt;}
.y56_c00090{bottom:287.360000pt;}
.y54_c00090{bottom:320.640000pt;}
.y51_c00090{bottom:321.280000pt;}
.y50_c00090{bottom:321.920000pt;}
.y55_c00090{bottom:323.200000pt;}
.y53_c00090{bottom:323.840000pt;}
.y52_c00090{bottom:324.480000pt;}
.y4f_c00090{bottom:325.120000pt;}
.y4d_c00090{bottom:360.320000pt;}
.y4e_c00090{bottom:361.600000pt;}
.y4c_c00090{bottom:362.240000pt;}
.y4b_c00090{bottom:363.520000pt;}
.y47_c00090{bottom:397.440000pt;}
.y46_c00090{bottom:398.080000pt;}
.y49_c00090{bottom:398.720000pt;}
.y4a_c00090{bottom:399.360000pt;}
.y48_c00090{bottom:400.000000pt;}
.y45_c00090{bottom:400.640000pt;}
.y44_c00090{bottom:401.280000pt;}
.y40_c00090{bottom:435.840000pt;}
.y3f_c00090{bottom:436.480000pt;}
.y41_c00090{bottom:437.120000pt;}
.y43_c00090{bottom:437.760000pt;}
.y42_c00090{bottom:438.400000pt;}
.y3e_c00090{bottom:439.040000pt;}
.y3d_c00090{bottom:473.600000pt;}
.y3b_c00090{bottom:474.240000pt;}
.y38_c00090{bottom:474.880000pt;}
.y3a_c00090{bottom:475.520000pt;}
.y39_c00090{bottom:476.160000pt;}
.y3c_c00090{bottom:476.800000pt;}
.y37_c00090{bottom:477.440000pt;}
.y36_c00090{bottom:521.600000pt;}
.y35_c00090{bottom:522.240000pt;}
.y34_c00090{bottom:523.520000pt;}
.y33_c00090{bottom:558.720000pt;}
.y30_c00090{bottom:559.360000pt;}
.y32_c00090{bottom:560.000000pt;}
.y31_c00090{bottom:561.280000pt;}
.y2f_c00090{bottom:561.920000pt;}
.y2b_c00090{bottom:597.120000pt;}
.y2d_c00090{bottom:597.760000pt;}
.y2c_c00090{bottom:599.680000pt;}
.y2e_c00090{bottom:600.320000pt;}
.y27_c00090{bottom:634.880000pt;}
.y2a_c00090{bottom:635.520000pt;}
.y26_c00090{bottom:636.800000pt;}
.y28_c00090{bottom:637.440000pt;}
.y29_c00090{bottom:638.080000pt;}
.y23_c00090{bottom:672.000000pt;}
.y24_c00090{bottom:673.280000pt;}
.y22_c00090{bottom:675.200000pt;}
.y25_c00090{bottom:675.840000pt;}
.y1d_c00090{bottom:710.400000pt;}
.y1e_c00090{bottom:711.040000pt;}
.y21_c00090{bottom:711.680000pt;}
.y1c_c00090{bottom:712.960000pt;}
.y1f_c00090{bottom:713.600000pt;}
.y20_c00090{bottom:714.240000pt;}
.y19_c00090{bottom:748.160000pt;}
.y18_c00090{bottom:750.720000pt;}
.y1a_c00090{bottom:751.360000pt;}
.y1b_c00090{bottom:752.000000pt;}
.y14_c00090{bottom:787.200000pt;}
.y17_c00090{bottom:787.840000pt;}
.y13_c00090{bottom:788.480000pt;}
.y15_c00090{bottom:789.760000pt;}
.y16_c00090{bottom:790.400000pt;}
.yd_c00090{bottom:823.040000pt;}
.yf_c00090{bottom:824.320000pt;}
.y12_c00090{bottom:825.600000pt;}
.ye_c00090{bottom:826.240000pt;}
.y10_c00090{bottom:827.520000pt;}
.y11_c00090{bottom:828.160000pt;}
.y7_c00090{bottom:863.360000pt;}
.y8_c00090{bottom:864.000000pt;}
.y9_c00090{bottom:864.640000pt;}
.ya_c00090{bottom:865.280000pt;}
.yb_c00090{bottom:865.920000pt;}
.yc_c00090{bottom:866.560000pt;}
.y4_c00090{bottom:900.480000pt;}
.y2_c00090{bottom:901.760000pt;}
.y3_c00090{bottom:903.040000pt;}
.y5_c00090{bottom:903.680000pt;}
.y6_c00090{bottom:904.960000pt;}
.y1_c00090{bottom:964.480000pt;}
.h6_c00090{height:27.645000pt;}
.hb_c00090{height:29.948750pt;}
.hf_c00090{height:32.252500pt;}
.hd_c00090{height:34.556250pt;}
.h4_c00090{height:36.860000pt;}
.h7_c00090{height:39.163750pt;}
.h3_c00090{height:41.467500pt;}
.he_c00090{height:43.771250pt;}
.h8_c00090{height:46.075000pt;}
.h5_c00090{height:48.378750pt;}
.ha_c00090{height:50.682500pt;}
.hc_c00090{height:52.986250pt;}
.h2_c00090{height:55.290000pt;}
.h9_c00090{height:57.593750pt;}
.h0_c00090{height:1024.640000pt;}
.h1_c00090{height:1024.666667pt;}
.w1_c00090{width:718.666667pt;}
.w0_c00090{width:718.720000pt;}
.x0_c00090{left:0.000000pt;}
.x25_c00090{left:72.320000pt;}
.x2_c00090{left:73.600000pt;}
.x18_c00090{left:82.560000pt;}
.xd_c00090{left:101.760000pt;}
.x26_c00090{left:110.080000pt;}
.x19_c00090{left:119.680000pt;}
.x3_c00090{left:120.960000pt;}
.x38_c00090{left:122.880000pt;}
.x3f_c00090{left:129.920000pt;}
.x4c_c00090{left:138.240000pt;}
.x4_c00090{left:140.160000pt;}
.x45_c00090{left:142.080000pt;}
.x15_c00090{left:149.120000pt;}
.x4d_c00090{left:158.720000pt;}
.x1f_c00090{left:167.040000pt;}
.x35_c00090{left:168.960000pt;}
.x48_c00090{left:170.240000pt;}
.x1a_c00090{left:176.640000pt;}
.x46_c00090{left:177.920000pt;}
.x3a_c00090{left:186.880000pt;}
.x2b_c00090{left:196.480000pt;}
.xe_c00090{left:206.080000pt;}
.x20_c00090{left:215.040000pt;}
.x49_c00090{left:216.320000pt;}
.x5_c00090{left:225.280000pt;}
.x27_c00090{left:234.240000pt;}
.x32_c00090{left:244.480000pt;}
.x6_c00090{left:253.440000pt;}
.x21_c00090{left:263.040000pt;}
.x7_c00090{left:282.240000pt;}
.x2c_c00090{left:291.840000pt;}
.x40_c00090{left:301.440000pt;}
.x36_c00090{left:311.040000pt;}
.x39_c00090{left:312.960000pt;}
.x2d_c00090{left:320.000000pt;}
.xf_c00090{left:321.280000pt;}
.x28_c00090{left:330.240000pt;}
.x22_c00090{left:339.840000pt;}
.x41_c00090{left:349.440000pt;}
.x2e_c00090{left:359.680000pt;}
.x10_c00090{left:368.640000pt;}
.x29_c00090{left:378.240000pt;}
.x8_c00090{left:387.840000pt;}
.x11_c00090{left:397.440000pt;}
.x4a_c00090{left:398.720000pt;}
.x3b_c00090{left:407.680000pt;}
.x16_c00090{left:416.640000pt;}
.x9_c00090{left:426.240000pt;}
.x12_c00090{left:435.840000pt;}
.x3c_c00090{left:437.120000pt;}
.x42_c00090{left:446.080000pt;}
.x23_c00090{left:455.680000pt;}
.xa_c00090{left:465.280000pt;}
.x4e_c00090{left:474.240000pt;}
.x3e_c00090{left:476.160000pt;}
.x2f_c00090{left:485.120000pt;}
.x13_c00090{left:494.080000pt;}
.x1b_c00090{left:495.360000pt;}
.x37_c00090{left:503.680000pt;}
.x1c_c00090{left:513.280000pt;}
.xb_c00090{left:522.880000pt;}
.x30_c00090{left:524.160000pt;}
.x4f_c00090{left:531.840000pt;}
.x1d_c00090{left:533.120000pt;}
.x33_c00090{left:542.080000pt;}
.x47_c00090{left:543.360000pt;}
.x34_c00090{left:551.680000pt;}
.xc_c00090{left:561.280000pt;}
.x24_c00090{left:570.880000pt;}
.x31_c00090{left:572.160000pt;}
.x50_c00090{left:579.840000pt;}
.x17_c00090{left:581.120000pt;}
.x1e_c00090{left:590.720000pt;}
.x2a_c00090{left:600.960000pt;}
.x4b_c00090{left:610.560000pt;}
.x3d_c00090{left:619.520000pt;}
.x43_c00090{left:620.800000pt;}
.x44_c00090{left:629.760000pt;}
.x1_c00090{left:640.000000pt;}
.x14_c00090{left:668.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_558b9b930c16f3630d9fd6e2.woff2')format("woff");}.ff1_c00091{font-family:ff1_c00091;line-height:1.109863;font-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_c00091{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00091{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m18_c00091{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);}
.m41_c00091{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m53_c00091{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m52_c00091{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m17_c00091{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00091{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m0_c00091{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00091{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m44_c00091{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m15_c00091{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00091{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);}
.m3e_c00091{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.ma_c00091{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);}
.m49_c00091{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m12_c00091{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.md_c00091{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m2_c00091{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_c00091{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00091{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00091{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1_c00091{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);}
.m2f_c00091{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);}
.m5_c00091{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m54_c00091{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);}
.mc_c00091{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);}
.m2a_c00091{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m20_c00091{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m21_c00091{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);}
.m45_c00091{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m56_c00091{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_c00091{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);}
.m29_c00091{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00091{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00091{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);}
.m14_c00091{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00091{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);}
.m4c_c00091{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);}
.m22_c00091{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);}
.m4_c00091{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m8_c00091{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m39_c00091{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00091{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);}
.m4e_c00091{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m32_c00091{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m40_c00091{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);}
.m1c_c00091{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m34_c00091{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);}
.m1b_c00091{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m10_c00091{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m26_c00091{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);}
.m47_c00091{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00091{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m37_c00091{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m55_c00091{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);}
.m35_c00091{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m6_c00091{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00091{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m16_c00091{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);}
.m38_c00091{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);}
.m51_c00091{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.me_c00091{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m48_c00091{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m9_c00091{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);}
.m4f_c00091{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m58_c00091{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m31_c00091{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m28_c00091{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m11_c00091{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);}
.m3_c00091{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00091{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m30_c00091{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m13_c00091{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);}
.m1f_c00091{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m27_c00091{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);}
.mb_c00091{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m23_c00091{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m43_c00091{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m33_c00091{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m19_c00091{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m46_c00091{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m57_c00091{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);}
.m7_c00091{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);}
.m2d_c00091{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m25_c00091{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);}
.m36_c00091{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00091{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00091{transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);}
.m50_c00091{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);}
.m59_c00091{transform:matrix(0.872500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.872500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.872500,0.000000,0.000000,0.250000,0,0);}
.m42_c00091{transform:matrix(0.942500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.942500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.942500,0.000000,0.000000,0.250000,0,0);}
.v0_c00091{vertical-align:0.000000px;}
.ls0_c00091{letter-spacing:0.000000px;}
.sc__c00091{text-shadow:none;}
.sc0_c00091{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00091{-webkit-text-stroke:0px transparent;}
.sc0_c00091{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00091{word-spacing:0.000000px;}
.fc0_c00091{color:transparent;}
.fsf_c00091{font-size:25.920000px;}
.fsa_c00091{font-size:31.680000px;}
.fs5_c00091{font-size:34.560000px;}
.fs3_c00091{font-size:37.440000px;}
.fsc_c00091{font-size:40.320000px;}
.fs4_c00091{font-size:46.080000px;}
.fs6_c00091{font-size:48.960000px;}
.fs1_c00091{font-size:51.840000px;}
.fs8_c00091{font-size:54.720000px;}
.fsd_c00091{font-size:57.600000px;}
.fs2_c00091{font-size:60.480000px;}
.fs7_c00091{font-size:63.360000px;}
.fs9_c00091{font-size:66.240000px;}
.fs0_c00091{font-size:69.120000px;}
.fsb_c00091{font-size:72.000000px;}
.fse_c00091{font-size:74.880000px;}
.y0_c00091{bottom:0.000000px;}
.y6b_c00091{bottom:79.920000px;}
.y6a_c00091{bottom:80.640000px;}
.y6d_c00091{bottom:81.360000px;}
.y6f_c00091{bottom:82.080000px;}
.y6e_c00091{bottom:82.800000px;}
.y6c_c00091{bottom:83.520000px;}
.y66_c00091{bottom:122.400000px;}
.y67_c00091{bottom:123.120000px;}
.y69_c00091{bottom:123.840000px;}
.y68_c00091{bottom:124.560000px;}
.y65_c00091{bottom:127.440000px;}
.y63_c00091{bottom:164.880000px;}
.y64_c00091{bottom:167.040000px;}
.y62_c00091{bottom:167.760000px;}
.y61_c00091{bottom:168.480000px;}
.y60_c00091{bottom:169.200000px;}
.y5f_c00091{bottom:169.920000px;}
.y5d_c00091{bottom:205.920000px;}
.y5c_c00091{bottom:206.640000px;}
.y5b_c00091{bottom:207.360000px;}
.y5e_c00091{bottom:208.800000px;}
.y5a_c00091{bottom:210.960000px;}
.y59_c00091{bottom:211.680000px;}
.y55_c00091{bottom:249.120000px;}
.y56_c00091{bottom:250.560000px;}
.y54_c00091{bottom:251.280000px;}
.y58_c00091{bottom:252.000000px;}
.y57_c00091{bottom:252.720000px;}
.y53_c00091{bottom:253.440000px;}
.y52_c00091{bottom:254.160000px;}
.y51_c00091{bottom:293.040000px;}
.y50_c00091{bottom:295.200000px;}
.y4f_c00091{bottom:295.920000px;}
.y4e_c00091{bottom:296.640000px;}
.y4c_c00091{bottom:335.520000px;}
.y4b_c00091{bottom:336.240000px;}
.y4a_c00091{bottom:336.960000px;}
.y4d_c00091{bottom:338.400000px;}
.y49_c00091{bottom:339.120000px;}
.y48_c00091{bottom:391.680000px;}
.y47_c00091{bottom:431.280000px;}
.y44_c00091{bottom:432.000000px;}
.y45_c00091{bottom:434.160000px;}
.y46_c00091{bottom:434.880000px;}
.y42_c00091{bottom:474.480000px;}
.y40_c00091{bottom:475.200000px;}
.y41_c00091{bottom:477.360000px;}
.y43_c00091{bottom:478.080000px;}
.y3e_c00091{bottom:516.960000px;}
.y3b_c00091{bottom:517.680000px;}
.y3f_c00091{bottom:518.400000px;}
.y3d_c00091{bottom:519.840000px;}
.y3c_c00091{bottom:520.560000px;}
.y3a_c00091{bottom:532.800000px;}
.y37_c00091{bottom:560.160000px;}
.y39_c00091{bottom:560.880000px;}
.y36_c00091{bottom:563.040000px;}
.y38_c00091{bottom:563.760000px;}
.y34_c00091{bottom:613.440000px;}
.y33_c00091{bottom:614.160000px;}
.y35_c00091{bottom:615.600000px;}
.y32_c00091{bottom:616.320000px;}
.y2e_c00091{bottom:655.200000px;}
.y2f_c00091{bottom:656.640000px;}
.y30_c00091{bottom:657.360000px;}
.y2d_c00091{bottom:658.800000px;}
.y31_c00091{bottom:660.240000px;}
.y26_c00091{bottom:697.680000px;}
.y2a_c00091{bottom:699.840000px;}
.y2b_c00091{bottom:700.560000px;}
.y27_c00091{bottom:701.280000px;}
.y28_c00091{bottom:702.000000px;}
.y29_c00091{bottom:702.720000px;}
.y2c_c00091{bottom:703.440000px;}
.y24_c00091{bottom:742.320000px;}
.y22_c00091{bottom:743.040000px;}
.y23_c00091{bottom:743.760000px;}
.y25_c00091{bottom:745.200000px;}
.y1d_c00091{bottom:783.360000px;}
.y20_c00091{bottom:785.520000px;}
.y1c_c00091{bottom:786.240000px;}
.y1e_c00091{bottom:787.680000px;}
.y1f_c00091{bottom:788.400000px;}
.y21_c00091{bottom:789.120000px;}
.y1b_c00091{bottom:828.000000px;}
.y18_c00091{bottom:829.440000px;}
.y19_c00091{bottom:830.160000px;}
.y1a_c00091{bottom:830.880000px;}
.y16_c00091{bottom:878.400000px;}
.y17_c00091{bottom:879.840000px;}
.y11_c00091{bottom:923.040000px;}
.y13_c00091{bottom:923.760000px;}
.y10_c00091{bottom:924.480000px;}
.y12_c00091{bottom:925.200000px;}
.y15_c00091{bottom:927.360000px;}
.y14_c00091{bottom:928.080000px;}
.y8_c00091{bottom:964.080000px;}
.ya_c00091{bottom:965.520000px;}
.yd_c00091{bottom:967.680000px;}
.y9_c00091{bottom:968.400000px;}
.yb_c00091{bottom:969.120000px;}
.yc_c00091{bottom:969.840000px;}
.ye_c00091{bottom:970.560000px;}
.yf_c00091{bottom:971.280000px;}
.y2_c00091{bottom:1008.720000px;}
.y5_c00091{bottom:1010.160000px;}
.y6_c00091{bottom:1010.880000px;}
.y3_c00091{bottom:1011.600000px;}
.y4_c00091{bottom:1012.320000px;}
.y7_c00091{bottom:1013.760000px;}
.y1_c00091{bottom:1088.640000px;}
.h11_c00091{height:23.325469px;}
.hc_c00091{height:28.508906px;}
.h7_c00091{height:31.100625px;}
.h5_c00091{height:33.692344px;}
.he_c00091{height:36.284062px;}
.h6_c00091{height:41.467500px;}
.h8_c00091{height:44.059219px;}
.h3_c00091{height:46.650937px;}
.ha_c00091{height:49.242656px;}
.hf_c00091{height:51.834375px;}
.h4_c00091{height:54.426094px;}
.h9_c00091{height:57.017812px;}
.hb_c00091{height:59.609531px;}
.h2_c00091{height:62.201250px;}
.hd_c00091{height:64.792969px;}
.h10_c00091{height:67.384687px;}
.h1_c00091{height:1149.000000px;}
.h0_c00091{height:1149.120000px;}
.w1_c00091{width:804.000000px;}
.w0_c00091{width:804.240000px;}
.x0_c00091{left:0.000000px;}
.x2b_c00091{left:77.040000px;}
.x2_c00091{left:78.480000px;}
.x1a_c00091{left:79.920000px;}
.x22_c00091{left:110.160000px;}
.x55_c00091{left:123.120000px;}
.x52_c00091{left:132.480000px;}
.x3_c00091{left:142.560000px;}
.x4c_c00091{left:144.000000px;}
.x34_c00091{left:153.360000px;}
.x13_c00091{left:164.160000px;}
.x4a_c00091{left:166.320000px;}
.xb_c00091{left:174.960000px;}
.x4d_c00091{left:177.120000px;}
.x1b_c00091{left:185.760000px;}
.x23_c00091{left:196.560000px;}
.xc_c00091{left:207.360000px;}
.x38_c00091{left:209.520000px;}
.x14_c00091{left:217.440000px;}
.x3d_c00091{left:228.240000px;}
.x24_c00091{left:238.320000px;}
.x2f_c00091{left:239.760000px;}
.x53_c00091{left:241.200000px;}
.x35_c00091{left:250.560000px;}
.xd_c00091{left:260.640000px;}
.x4_c00091{left:270.720000px;}
.x44_c00091{left:272.160000px;}
.x25_c00091{left:282.240000px;}
.x1c_c00091{left:293.760000px;}
.x5_c00091{left:303.120000px;}
.x47_c00091{left:304.560000px;}
.x54_c00091{left:306.000000px;}
.x4e_c00091{left:307.440000px;}
.x15_c00091{left:314.640000px;}
.x1d_c00091{left:324.720000px;}
.x3e_c00091{left:326.160000px;}
.xe_c00091{left:336.240000px;}
.x58_c00091{left:338.400000px;}
.x39_c00091{left:347.040000px;}
.x30_c00091{left:358.560000px;}
.xf_c00091{left:368.640000px;}
.x59_c00091{left:370.080000px;}
.x16_c00091{left:371.520000px;}
.x26_c00091{left:380.160000px;}
.x3f_c00091{left:388.800000px;}
.x1e_c00091{left:390.960000px;}
.x31_c00091{left:399.600000px;}
.x3b_c00091{left:401.760000px;}
.x5a_c00091{left:403.200000px;}
.x6_c00091{left:412.560000px;}
.x1f_c00091{left:421.920000px;}
.x3a_c00091{left:424.080000px;}
.x2c_c00091{left:433.440000px;}
.x40_c00091{left:435.600000px;}
.x27_c00091{left:443.520000px;}
.x45_c00091{left:444.960000px;}
.x10_c00091{left:455.760000px;}
.x17_c00091{left:466.560000px;}
.x46_c00091{left:477.360000px;}
.x56_c00091{left:478.800000px;}
.x42_c00091{left:487.440000px;}
.x20_c00091{left:498.960000px;}
.x28_c00091{left:509.760000px;}
.x7_c00091{left:519.840000px;}
.x41_c00091{left:531.360000px;}
.x5b_c00091{left:532.800000px;}
.x36_c00091{left:540.720000px;}
.x8_c00091{left:542.160000px;}
.x29_c00091{left:552.960000px;}
.x32_c00091{left:564.480000px;}
.x4f_c00091{left:565.920000px;}
.x9_c00091{left:573.840000px;}
.x43_c00091{left:575.280000px;}
.x2a_c00091{left:584.640000px;}
.x4b_c00091{left:586.080000px;}
.x50_c00091{left:596.880000px;}
.x2d_c00091{left:606.960000px;}
.x11_c00091{left:617.760000px;}
.x48_c00091{left:629.280000px;}
.x18_c00091{left:639.360000px;}
.x51_c00091{left:641.520000px;}
.x2e_c00091{left:651.600000px;}
.x12_c00091{left:660.960000px;}
.x19_c00091{left:662.400000px;}
.xa_c00091{left:671.760000px;}
.x5c_c00091{left:673.920000px;}
.x37_c00091{left:684.000000px;}
.x57_c00091{left:686.160000px;}
.x49_c00091{left:695.520000px;}
.x21_c00091{left:704.880000px;}
.x3c_c00091{left:706.320000px;}
.x33_c00091{left:717.120000px;}
.x1_c00091{left:720.720000px;}
@media print{
.v0_c00091{vertical-align:0.000000pt;}
.ls0_c00091{letter-spacing:0.000000pt;}
.ws0_c00091{word-spacing:0.000000pt;}
.fsf_c00091{font-size:23.040000pt;}
.fsa_c00091{font-size:28.160000pt;}
.fs5_c00091{font-size:30.720000pt;}
.fs3_c00091{font-size:33.280000pt;}
.fsc_c00091{font-size:35.840000pt;}
.fs4_c00091{font-size:40.960000pt;}
.fs6_c00091{font-size:43.520000pt;}
.fs1_c00091{font-size:46.080000pt;}
.fs8_c00091{font-size:48.640000pt;}
.fsd_c00091{font-size:51.200000pt;}
.fs2_c00091{font-size:53.760000pt;}
.fs7_c00091{font-size:56.320000pt;}
.fs9_c00091{font-size:58.880000pt;}
.fs0_c00091{font-size:61.440000pt;}
.fsb_c00091{font-size:64.000000pt;}
.fse_c00091{font-size:66.560000pt;}
.y0_c00091{bottom:0.000000pt;}
.y6b_c00091{bottom:71.040000pt;}
.y6a_c00091{bottom:71.680000pt;}
.y6d_c00091{bottom:72.320000pt;}
.y6f_c00091{bottom:72.960000pt;}
.y6e_c00091{bottom:73.600000pt;}
.y6c_c00091{bottom:74.240000pt;}
.y66_c00091{bottom:108.800000pt;}
.y67_c00091{bottom:109.440000pt;}
.y69_c00091{bottom:110.080000pt;}
.y68_c00091{bottom:110.720000pt;}
.y65_c00091{bottom:113.280000pt;}
.y63_c00091{bottom:146.560000pt;}
.y64_c00091{bottom:148.480000pt;}
.y62_c00091{bottom:149.120000pt;}
.y61_c00091{bottom:149.760000pt;}
.y60_c00091{bottom:150.400000pt;}
.y5f_c00091{bottom:151.040000pt;}
.y5d_c00091{bottom:183.040000pt;}
.y5c_c00091{bottom:183.680000pt;}
.y5b_c00091{bottom:184.320000pt;}
.y5e_c00091{bottom:185.600000pt;}
.y5a_c00091{bottom:187.520000pt;}
.y59_c00091{bottom:188.160000pt;}
.y55_c00091{bottom:221.440000pt;}
.y56_c00091{bottom:222.720000pt;}
.y54_c00091{bottom:223.360000pt;}
.y58_c00091{bottom:224.000000pt;}
.y57_c00091{bottom:224.640000pt;}
.y53_c00091{bottom:225.280000pt;}
.y52_c00091{bottom:225.920000pt;}
.y51_c00091{bottom:260.480000pt;}
.y50_c00091{bottom:262.400000pt;}
.y4f_c00091{bottom:263.040000pt;}
.y4e_c00091{bottom:263.680000pt;}
.y4c_c00091{bottom:298.240000pt;}
.y4b_c00091{bottom:298.880000pt;}
.y4a_c00091{bottom:299.520000pt;}
.y4d_c00091{bottom:300.800000pt;}
.y49_c00091{bottom:301.440000pt;}
.y48_c00091{bottom:348.160000pt;}
.y47_c00091{bottom:383.360000pt;}
.y44_c00091{bottom:384.000000pt;}
.y45_c00091{bottom:385.920000pt;}
.y46_c00091{bottom:386.560000pt;}
.y42_c00091{bottom:421.760000pt;}
.y40_c00091{bottom:422.400000pt;}
.y41_c00091{bottom:424.320000pt;}
.y43_c00091{bottom:424.960000pt;}
.y3e_c00091{bottom:459.520000pt;}
.y3b_c00091{bottom:460.160000pt;}
.y3f_c00091{bottom:460.800000pt;}
.y3d_c00091{bottom:462.080000pt;}
.y3c_c00091{bottom:462.720000pt;}
.y3a_c00091{bottom:473.600000pt;}
.y37_c00091{bottom:497.920000pt;}
.y39_c00091{bottom:498.560000pt;}
.y36_c00091{bottom:500.480000pt;}
.y38_c00091{bottom:501.120000pt;}
.y34_c00091{bottom:545.280000pt;}
.y33_c00091{bottom:545.920000pt;}
.y35_c00091{bottom:547.200000pt;}
.y32_c00091{bottom:547.840000pt;}
.y2e_c00091{bottom:582.400000pt;}
.y2f_c00091{bottom:583.680000pt;}
.y30_c00091{bottom:584.320000pt;}
.y2d_c00091{bottom:585.600000pt;}
.y31_c00091{bottom:586.880000pt;}
.y26_c00091{bottom:620.160000pt;}
.y2a_c00091{bottom:622.080000pt;}
.y2b_c00091{bottom:622.720000pt;}
.y27_c00091{bottom:623.360000pt;}
.y28_c00091{bottom:624.000000pt;}
.y29_c00091{bottom:624.640000pt;}
.y2c_c00091{bottom:625.280000pt;}
.y24_c00091{bottom:659.840000pt;}
.y22_c00091{bottom:660.480000pt;}
.y23_c00091{bottom:661.120000pt;}
.y25_c00091{bottom:662.400000pt;}
.y1d_c00091{bottom:696.320000pt;}
.y20_c00091{bottom:698.240000pt;}
.y1c_c00091{bottom:698.880000pt;}
.y1e_c00091{bottom:700.160000pt;}
.y1f_c00091{bottom:700.800000pt;}
.y21_c00091{bottom:701.440000pt;}
.y1b_c00091{bottom:736.000000pt;}
.y18_c00091{bottom:737.280000pt;}
.y19_c00091{bottom:737.920000pt;}
.y1a_c00091{bottom:738.560000pt;}
.y16_c00091{bottom:780.800000pt;}
.y17_c00091{bottom:782.080000pt;}
.y11_c00091{bottom:820.480000pt;}
.y13_c00091{bottom:821.120000pt;}
.y10_c00091{bottom:821.760000pt;}
.y12_c00091{bottom:822.400000pt;}
.y15_c00091{bottom:824.320000pt;}
.y14_c00091{bottom:824.960000pt;}
.y8_c00091{bottom:856.960000pt;}
.ya_c00091{bottom:858.240000pt;}
.yd_c00091{bottom:860.160000pt;}
.y9_c00091{bottom:860.800000pt;}
.yb_c00091{bottom:861.440000pt;}
.yc_c00091{bottom:862.080000pt;}
.ye_c00091{bottom:862.720000pt;}
.yf_c00091{bottom:863.360000pt;}
.y2_c00091{bottom:896.640000pt;}
.y5_c00091{bottom:897.920000pt;}
.y6_c00091{bottom:898.560000pt;}
.y3_c00091{bottom:899.200000pt;}
.y4_c00091{bottom:899.840000pt;}
.y7_c00091{bottom:901.120000pt;}
.y1_c00091{bottom:967.680000pt;}
.h11_c00091{height:20.733750pt;}
.hc_c00091{height:25.341250pt;}
.h7_c00091{height:27.645000pt;}
.h5_c00091{height:29.948750pt;}
.he_c00091{height:32.252500pt;}
.h6_c00091{height:36.860000pt;}
.h8_c00091{height:39.163750pt;}
.h3_c00091{height:41.467500pt;}
.ha_c00091{height:43.771250pt;}
.hf_c00091{height:46.075000pt;}
.h4_c00091{height:48.378750pt;}
.h9_c00091{height:50.682500pt;}
.hb_c00091{height:52.986250pt;}
.h2_c00091{height:55.290000pt;}
.hd_c00091{height:57.593750pt;}
.h10_c00091{height:59.897500pt;}
.h1_c00091{height:1021.333333pt;}
.h0_c00091{height:1021.440000pt;}
.w1_c00091{width:714.666667pt;}
.w0_c00091{width:714.880000pt;}
.x0_c00091{left:0.000000pt;}
.x2b_c00091{left:68.480000pt;}
.x2_c00091{left:69.760000pt;}
.x1a_c00091{left:71.040000pt;}
.x22_c00091{left:97.920000pt;}
.x55_c00091{left:109.440000pt;}
.x52_c00091{left:117.760000pt;}
.x3_c00091{left:126.720000pt;}
.x4c_c00091{left:128.000000pt;}
.x34_c00091{left:136.320000pt;}
.x13_c00091{left:145.920000pt;}
.x4a_c00091{left:147.840000pt;}
.xb_c00091{left:155.520000pt;}
.x4d_c00091{left:157.440000pt;}
.x1b_c00091{left:165.120000pt;}
.x23_c00091{left:174.720000pt;}
.xc_c00091{left:184.320000pt;}
.x38_c00091{left:186.240000pt;}
.x14_c00091{left:193.280000pt;}
.x3d_c00091{left:202.880000pt;}
.x24_c00091{left:211.840000pt;}
.x2f_c00091{left:213.120000pt;}
.x53_c00091{left:214.400000pt;}
.x35_c00091{left:222.720000pt;}
.xd_c00091{left:231.680000pt;}
.x4_c00091{left:240.640000pt;}
.x44_c00091{left:241.920000pt;}
.x25_c00091{left:250.880000pt;}
.x1c_c00091{left:261.120000pt;}
.x5_c00091{left:269.440000pt;}
.x47_c00091{left:270.720000pt;}
.x54_c00091{left:272.000000pt;}
.x4e_c00091{left:273.280000pt;}
.x15_c00091{left:279.680000pt;}
.x1d_c00091{left:288.640000pt;}
.x3e_c00091{left:289.920000pt;}
.xe_c00091{left:298.880000pt;}
.x58_c00091{left:300.800000pt;}
.x39_c00091{left:308.480000pt;}
.x30_c00091{left:318.720000pt;}
.xf_c00091{left:327.680000pt;}
.x59_c00091{left:328.960000pt;}
.x16_c00091{left:330.240000pt;}
.x26_c00091{left:337.920000pt;}
.x3f_c00091{left:345.600000pt;}
.x1e_c00091{left:347.520000pt;}
.x31_c00091{left:355.200000pt;}
.x3b_c00091{left:357.120000pt;}
.x5a_c00091{left:358.400000pt;}
.x6_c00091{left:366.720000pt;}
.x1f_c00091{left:375.040000pt;}
.x3a_c00091{left:376.960000pt;}
.x2c_c00091{left:385.280000pt;}
.x40_c00091{left:387.200000pt;}
.x27_c00091{left:394.240000pt;}
.x45_c00091{left:395.520000pt;}
.x10_c00091{left:405.120000pt;}
.x17_c00091{left:414.720000pt;}
.x46_c00091{left:424.320000pt;}
.x56_c00091{left:425.600000pt;}
.x42_c00091{left:433.280000pt;}
.x20_c00091{left:443.520000pt;}
.x28_c00091{left:453.120000pt;}
.x7_c00091{left:462.080000pt;}
.x41_c00091{left:472.320000pt;}
.x5b_c00091{left:473.600000pt;}
.x36_c00091{left:480.640000pt;}
.x8_c00091{left:481.920000pt;}
.x29_c00091{left:491.520000pt;}
.x32_c00091{left:501.760000pt;}
.x4f_c00091{left:503.040000pt;}
.x9_c00091{left:510.080000pt;}
.x43_c00091{left:511.360000pt;}
.x2a_c00091{left:519.680000pt;}
.x4b_c00091{left:520.960000pt;}
.x50_c00091{left:530.560000pt;}
.x2d_c00091{left:539.520000pt;}
.x11_c00091{left:549.120000pt;}
.x48_c00091{left:559.360000pt;}
.x18_c00091{left:568.320000pt;}
.x51_c00091{left:570.240000pt;}
.x2e_c00091{left:579.200000pt;}
.x12_c00091{left:587.520000pt;}
.x19_c00091{left:588.800000pt;}
.xa_c00091{left:597.120000pt;}
.x5c_c00091{left:599.040000pt;}
.x37_c00091{left:608.000000pt;}
.x57_c00091{left:609.920000pt;}
.x49_c00091{left:618.240000pt;}
.x21_c00091{left:626.560000pt;}
.x3c_c00091{left:627.840000pt;}
.x33_c00091{left:637.440000pt;}
.x1_c00091{left:640.640000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2786cb5979c16a08844d5d75.woff2')format("woff");}.ff1_c00092{font-family:ff1_c00092;line-height:1.109863;font-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_c00092{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m55_c00092{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);}
.m56_c00092{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);}
.m25_c00092{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);}
.m3a_c00092{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m12_c00092{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m10_c00092{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2_c00092{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00092{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m6_c00092{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00092{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m48_c00092{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m0_c00092{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);}
.m43_c00092{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m49_c00092{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m19_c00092{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.md_c00092{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m14_c00092{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m8_c00092{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00092{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m15_c00092{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00092{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m3_c00092{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.ma_c00092{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);}
.m3b_c00092{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);}
.m27_c00092{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m33_c00092{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);}
.m20_c00092{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m18_c00092{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);}
.m32_c00092{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);}
.m1d_c00092{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00092{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m36_c00092{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m1_c00092{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);}
.m39_c00092{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m41_c00092{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);}
.m13_c00092{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m37_c00092{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);}
.m21_c00092{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);}
.m11_c00092{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m5_c00092{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00092{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m29_c00092{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m35_c00092{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);}
.m47_c00092{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00092{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);}
.m3d_c00092{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m4_c00092{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);}
.m2a_c00092{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m51_c00092{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m22_c00092{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m46_c00092{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);}
.me_c00092{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m17_c00092{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);}
.m1a_c00092{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m7_c00092{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.mc_c00092{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m52_c00092{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m26_c00092{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);}
.mb_c00092{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);}
.m3f_c00092{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m24_c00092{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m16_c00092{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00092{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00092{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m45_c00092{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_c00092{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m42_c00092{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m9_c00092{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00092{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);}
.m2d_c00092{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00092{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00092{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.mf_c00092{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00092{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00092{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m58_c00092{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m34_c00092{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);}
.m57_c00092{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m53_c00092{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);}
.m38_c00092{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m30_c00092{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m50_c00092{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m40_c00092{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m28_c00092{transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);}
.m31_c00092{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.m54_c00092{transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);}
.m59_c00092{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m44_c00092{transform:matrix(0.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00092{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00092{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);}
.v1_c00092{vertical-align:-2.880000px;}
.v0_c00092{vertical-align:0.000000px;}
.ls0_c00092{letter-spacing:0.000000px;}
.sc__c00092{text-shadow:none;}
.sc0_c00092{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00092{-webkit-text-stroke:0px transparent;}
.sc0_c00092{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00092{word-spacing:-5.754240px;}
.ws2_c00092{word-spacing:0.000000px;}
.ws0_c00092{word-spacing:9.643680px;}
.fc0_c00092{color:transparent;}
.fse_c00092{font-size:14.400000px;}
.fsb_c00092{font-size:34.560000px;}
.fs7_c00092{font-size:37.440000px;}
.fs6_c00092{font-size:40.320000px;}
.fsa_c00092{font-size:43.200000px;}
.fs9_c00092{font-size:46.080000px;}
.fs4_c00092{font-size:48.960000px;}
.fs3_c00092{font-size:51.840000px;}
.fsc_c00092{font-size:54.720000px;}
.fs2_c00092{font-size:57.600000px;}
.fs1_c00092{font-size:60.480000px;}
.fs5_c00092{font-size:63.360000px;}
.fs8_c00092{font-size:66.240000px;}
.fs0_c00092{font-size:69.120000px;}
.fsd_c00092{font-size:72.000000px;}
.fsf_c00092{font-size:74.880000px;}
.y0_c00092{bottom:0.000000px;}
.y7c_c00092{bottom:29.520000px;}
.y7b_c00092{bottom:30.240000px;}
.y7a_c00092{bottom:33.120000px;}
.y75_c00092{bottom:69.840000px;}
.y76_c00092{bottom:70.560000px;}
.y79_c00092{bottom:72.000000px;}
.y78_c00092{bottom:72.720000px;}
.y77_c00092{bottom:73.440000px;}
.y74_c00092{bottom:74.160000px;}
.y73_c00092{bottom:76.320000px;}
.y6d_c00092{bottom:120.240000px;}
.y71_c00092{bottom:120.960000px;}
.y72_c00092{bottom:121.680000px;}
.y70_c00092{bottom:122.400000px;}
.y6f_c00092{bottom:123.120000px;}
.y6e_c00092{bottom:123.840000px;}
.y6c_c00092{bottom:124.560000px;}
.y6b_c00092{bottom:126.720000px;}
.y69_c00092{bottom:163.440000px;}
.y6a_c00092{bottom:164.160000px;}
.y67_c00092{bottom:164.880000px;}
.y66_c00092{bottom:165.600000px;}
.y68_c00092{bottom:166.320000px;}
.y65_c00092{bottom:167.760000px;}
.y64_c00092{bottom:203.760000px;}
.y63_c00092{bottom:204.480000px;}
.y61_c00092{bottom:205.200000px;}
.y5e_c00092{bottom:206.640000px;}
.y62_c00092{bottom:208.080000px;}
.y60_c00092{bottom:208.800000px;}
.y5f_c00092{bottom:209.520000px;}
.y5c_c00092{bottom:246.240000px;}
.y5d_c00092{bottom:247.680000px;}
.y5a_c00092{bottom:249.120000px;}
.y5b_c00092{bottom:250.560000px;}
.y59_c00092{bottom:252.000000px;}
.y56_c00092{bottom:300.960000px;}
.y58_c00092{bottom:303.120000px;}
.y57_c00092{bottom:303.840000px;}
.y55_c00092{bottom:304.560000px;}
.y54_c00092{bottom:305.280000px;}
.y53_c00092{bottom:306.000000px;}
.y51_c00092{bottom:344.160000px;}
.y52_c00092{bottom:345.600000px;}
.y50_c00092{bottom:346.320000px;}
.y4f_c00092{bottom:347.040000px;}
.y4e_c00092{bottom:347.760000px;}
.y4b_c00092{bottom:388.080000px;}
.y4d_c00092{bottom:388.800000px;}
.y4c_c00092{bottom:389.520000px;}
.y4a_c00092{bottom:390.240000px;}
.y49_c00092{bottom:390.960000px;}
.y46_c00092{bottom:429.120000px;}
.y48_c00092{bottom:429.840000px;}
.y43_c00092{bottom:430.560000px;}
.y47_c00092{bottom:432.000000px;}
.y45_c00092{bottom:432.720000px;}
.y44_c00092{bottom:433.440000px;}
.y42_c00092{bottom:472.320000px;}
.y41_c00092{bottom:473.040000px;}
.y3f_c00092{bottom:473.760000px;}
.y40_c00092{bottom:475.200000px;}
.y3e_c00092{bottom:475.920000px;}
.y3b_c00092{bottom:525.600000px;}
.y39_c00092{bottom:526.320000px;}
.y3d_c00092{bottom:527.760000px;}
.y3a_c00092{bottom:528.480000px;}
.y3c_c00092{bottom:529.200000px;}
.y37_c00092{bottom:568.080000px;}
.y36_c00092{bottom:568.800000px;}
.y35_c00092{bottom:570.960000px;}
.y38_c00092{bottom:571.680000px;}
.y34_c00092{bottom:572.400000px;}
.y31_c00092{bottom:612.000000px;}
.y33_c00092{bottom:612.720000px;}
.y2f_c00092{bottom:613.440000px;}
.y30_c00092{bottom:614.160000px;}
.y32_c00092{bottom:614.880000px;}
.y2c_c00092{bottom:653.760000px;}
.y2e_c00092{bottom:655.200000px;}
.y2b_c00092{bottom:656.640000px;}
.y2d_c00092{bottom:657.360000px;}
.y26_c00092{bottom:696.240000px;}
.y29_c00092{bottom:696.960000px;}
.y27_c00092{bottom:699.120000px;}
.y28_c00092{bottom:699.840000px;}
.y2a_c00092{bottom:700.560000px;}
.y23_c00092{bottom:739.440000px;}
.y24_c00092{bottom:740.160000px;}
.y22_c00092{bottom:742.320000px;}
.y25_c00092{bottom:743.040000px;}
.y21_c00092{bottom:794.160000px;}
.y1f_c00092{bottom:835.200000px;}
.y1e_c00092{bottom:835.920000px;}
.y1d_c00092{bottom:836.640000px;}
.y1b_c00092{bottom:837.360000px;}
.y1c_c00092{bottom:838.080000px;}
.y20_c00092{bottom:838.800000px;}
.y15_c00092{bottom:877.680000px;}
.y18_c00092{bottom:878.400000px;}
.y14_c00092{bottom:879.120000px;}
.y16_c00092{bottom:880.560000px;}
.y17_c00092{bottom:881.280000px;}
.y19_c00092{bottom:882.000000px;}
.y1a_c00092{bottom:882.720000px;}
.ye_c00092{bottom:920.160000px;}
.y10_c00092{bottom:920.880000px;}
.y13_c00092{bottom:921.600000px;}
.yd_c00092{bottom:922.320000px;}
.yf_c00092{bottom:923.760000px;}
.y12_c00092{bottom:924.480000px;}
.y11_c00092{bottom:925.200000px;}
.y7_c00092{bottom:964.800000px;}
.y8_c00092{bottom:965.520000px;}
.y9_c00092{bottom:966.240000px;}
.ya_c00092{bottom:966.960000px;}
.yb_c00092{bottom:967.680000px;}
.yc_c00092{bottom:968.400000px;}
.y2_c00092{bottom:1005.120000px;}
.y4_c00092{bottom:1005.840000px;}
.y3_c00092{bottom:1008.720000px;}
.y5_c00092{bottom:1010.160000px;}
.y6_c00092{bottom:1010.880000px;}
.y1_c00092{bottom:1082.880000px;}
.h11_c00092{height:12.958594px;}
.hd_c00092{height:31.100625px;}
.h9_c00092{height:33.692344px;}
.h10_c00092{height:35.995781px;}
.h8_c00092{height:36.284062px;}
.hc_c00092{height:38.875781px;}
.hb_c00092{height:41.467500px;}
.h6_c00092{height:44.059219px;}
.h5_c00092{height:46.650937px;}
.he_c00092{height:49.242656px;}
.h4_c00092{height:51.834375px;}
.h3_c00092{height:54.426094px;}
.h7_c00092{height:57.017812px;}
.ha_c00092{height:59.609531px;}
.h2_c00092{height:62.201250px;}
.hf_c00092{height:64.792969px;}
.h12_c00092{height:67.384687px;}
.h1_c00092{height:1150.500000px;}
.h0_c00092{height:1150.560000px;}
.w1_c00092{width:806.250000px;}
.w0_c00092{width:806.400000px;}
.x0_c00092{left:0.000000px;}
.x36_c00092{left:81.360000px;}
.x1c_c00092{left:82.800000px;}
.x2_c00092{left:84.240000px;}
.x1d_c00092{left:114.480000px;}
.x49_c00092{left:125.280000px;}
.x4e_c00092{left:126.720000px;}
.x59_c00092{left:135.360000px;}
.x3_c00092{left:136.800000px;}
.x14_c00092{left:138.240000px;}
.x37_c00092{left:157.680000px;}
.xc_c00092{left:159.120000px;}
.x2f_c00092{left:167.760000px;}
.x4_c00092{left:179.280000px;}
.x24_c00092{left:190.080000px;}
.x30_c00092{left:199.440000px;}
.x4f_c00092{left:200.880000px;}
.x15_c00092{left:211.680000px;}
.x2b_c00092{left:221.760000px;}
.x50_c00092{left:231.840000px;}
.xd_c00092{left:233.280000px;}
.x16_c00092{left:243.360000px;}
.x5a_c00092{left:245.520000px;}
.x31_c00092{left:253.440000px;}
.x25_c00092{left:254.880000px;}
.x57_c00092{left:259.200000px;}
.xe_c00092{left:264.960000px;}
.x47_c00092{left:275.040000px;}
.x5_c00092{left:276.480000px;}
.x2c_c00092{left:285.840000px;}
.x26_c00092{left:287.280000px;}
.x42_c00092{left:296.640000px;}
.x1e_c00092{left:298.080000px;}
.xf_c00092{left:308.160000px;}
.x6_c00092{left:318.960000px;}
.x27_c00092{left:329.760000px;}
.x3e_c00092{left:340.560000px;}
.x32_c00092{left:350.640000px;}
.x53_c00092{left:352.800000px;}
.x43_c00092{left:361.440000px;}
.x1f_c00092{left:362.880000px;}
.x5b_c00092{left:370.800000px;}
.x17_c00092{left:372.960000px;}
.x39_c00092{left:383.760000px;}
.x10_c00092{left:393.840000px;}
.x54_c00092{left:395.280000px;}
.x4b_c00092{left:403.920000px;}
.x18_c00092{left:405.360000px;}
.x51_c00092{left:415.440000px;}
.x40_c00092{left:416.880000px;}
.x4a_c00092{left:425.520000px;}
.x2d_c00092{left:437.040000px;}
.x19_c00092{left:438.480000px;}
.x55_c00092{left:447.120000px;}
.x7_c00092{left:449.280000px;}
.x52_c00092{left:460.080000px;}
.x33_c00092{left:470.160000px;}
.x4c_c00092{left:471.600000px;}
.x3a_c00092{left:480.240000px;}
.x28_c00092{left:481.680000px;}
.x8_c00092{left:491.040000px;}
.x20_c00092{left:492.480000px;}
.x11_c00092{left:503.280000px;}
.x29_c00092{left:513.360000px;}
.x4d_c00092{left:522.720000px;}
.x21_c00092{left:524.880000px;}
.x56_c00092{left:534.240000px;}
.x12_c00092{left:535.680000px;}
.x34_c00092{left:546.480000px;}
.x5c_c00092{left:555.120000px;}
.x9_c00092{left:557.280000px;}
.x41_c00092{left:559.440000px;}
.x46_c00092{left:566.640000px;}
.x3b_c00092{left:568.080000px;}
.x58_c00092{left:578.160000px;}
.x5d_c00092{left:587.520000px;}
.xa_c00092{left:590.400000px;}
.x38_c00092{left:599.040000px;}
.x3c_c00092{left:600.480000px;}
.x44_c00092{left:611.280000px;}
.x2e_c00092{left:622.080000px;}
.x22_c00092{left:623.520000px;}
.x48_c00092{left:632.160000px;}
.x2a_c00092{left:633.600000px;}
.x1a_c00092{left:643.680000px;}
.x23_c00092{left:654.480000px;}
.x13_c00092{left:658.080000px;}
.x35_c00092{left:665.280000px;}
.x3f_c00092{left:676.080000px;}
.xb_c00092{left:686.880000px;}
.x45_c00092{left:688.320000px;}
.x3d_c00092{left:699.120000px;}
.x1_c00092{left:708.480000px;}
.x1b_c00092{left:709.920000px;}
@media print{
.v1_c00092{vertical-align:-2.560000pt;}
.v0_c00092{vertical-align:0.000000pt;}
.ls0_c00092{letter-spacing:0.000000pt;}
.ws1_c00092{word-spacing:-5.114880pt;}
.ws2_c00092{word-spacing:0.000000pt;}
.ws0_c00092{word-spacing:8.572160pt;}
.fse_c00092{font-size:12.800000pt;}
.fsb_c00092{font-size:30.720000pt;}
.fs7_c00092{font-size:33.280000pt;}
.fs6_c00092{font-size:35.840000pt;}
.fsa_c00092{font-size:38.400000pt;}
.fs9_c00092{font-size:40.960000pt;}
.fs4_c00092{font-size:43.520000pt;}
.fs3_c00092{font-size:46.080000pt;}
.fsc_c00092{font-size:48.640000pt;}
.fs2_c00092{font-size:51.200000pt;}
.fs1_c00092{font-size:53.760000pt;}
.fs5_c00092{font-size:56.320000pt;}
.fs8_c00092{font-size:58.880000pt;}
.fs0_c00092{font-size:61.440000pt;}
.fsd_c00092{font-size:64.000000pt;}
.fsf_c00092{font-size:66.560000pt;}
.y0_c00092{bottom:0.000000pt;}
.y7c_c00092{bottom:26.240000pt;}
.y7b_c00092{bottom:26.880000pt;}
.y7a_c00092{bottom:29.440000pt;}
.y75_c00092{bottom:62.080000pt;}
.y76_c00092{bottom:62.720000pt;}
.y79_c00092{bottom:64.000000pt;}
.y78_c00092{bottom:64.640000pt;}
.y77_c00092{bottom:65.280000pt;}
.y74_c00092{bottom:65.920000pt;}
.y73_c00092{bottom:67.840000pt;}
.y6d_c00092{bottom:106.880000pt;}
.y71_c00092{bottom:107.520000pt;}
.y72_c00092{bottom:108.160000pt;}
.y70_c00092{bottom:108.800000pt;}
.y6f_c00092{bottom:109.440000pt;}
.y6e_c00092{bottom:110.080000pt;}
.y6c_c00092{bottom:110.720000pt;}
.y6b_c00092{bottom:112.640000pt;}
.y69_c00092{bottom:145.280000pt;}
.y6a_c00092{bottom:145.920000pt;}
.y67_c00092{bottom:146.560000pt;}
.y66_c00092{bottom:147.200000pt;}
.y68_c00092{bottom:147.840000pt;}
.y65_c00092{bottom:149.120000pt;}
.y64_c00092{bottom:181.120000pt;}
.y63_c00092{bottom:181.760000pt;}
.y61_c00092{bottom:182.400000pt;}
.y5e_c00092{bottom:183.680000pt;}
.y62_c00092{bottom:184.960000pt;}
.y60_c00092{bottom:185.600000pt;}
.y5f_c00092{bottom:186.240000pt;}
.y5c_c00092{bottom:218.880000pt;}
.y5d_c00092{bottom:220.160000pt;}
.y5a_c00092{bottom:221.440000pt;}
.y5b_c00092{bottom:222.720000pt;}
.y59_c00092{bottom:224.000000pt;}
.y56_c00092{bottom:267.520000pt;}
.y58_c00092{bottom:269.440000pt;}
.y57_c00092{bottom:270.080000pt;}
.y55_c00092{bottom:270.720000pt;}
.y54_c00092{bottom:271.360000pt;}
.y53_c00092{bottom:272.000000pt;}
.y51_c00092{bottom:305.920000pt;}
.y52_c00092{bottom:307.200000pt;}
.y50_c00092{bottom:307.840000pt;}
.y4f_c00092{bottom:308.480000pt;}
.y4e_c00092{bottom:309.120000pt;}
.y4b_c00092{bottom:344.960000pt;}
.y4d_c00092{bottom:345.600000pt;}
.y4c_c00092{bottom:346.240000pt;}
.y4a_c00092{bottom:346.880000pt;}
.y49_c00092{bottom:347.520000pt;}
.y46_c00092{bottom:381.440000pt;}
.y48_c00092{bottom:382.080000pt;}
.y43_c00092{bottom:382.720000pt;}
.y47_c00092{bottom:384.000000pt;}
.y45_c00092{bottom:384.640000pt;}
.y44_c00092{bottom:385.280000pt;}
.y42_c00092{bottom:419.840000pt;}
.y41_c00092{bottom:420.480000pt;}
.y3f_c00092{bottom:421.120000pt;}
.y40_c00092{bottom:422.400000pt;}
.y3e_c00092{bottom:423.040000pt;}
.y3b_c00092{bottom:467.200000pt;}
.y39_c00092{bottom:467.840000pt;}
.y3d_c00092{bottom:469.120000pt;}
.y3a_c00092{bottom:469.760000pt;}
.y3c_c00092{bottom:470.400000pt;}
.y37_c00092{bottom:504.960000pt;}
.y36_c00092{bottom:505.600000pt;}
.y35_c00092{bottom:507.520000pt;}
.y38_c00092{bottom:508.160000pt;}
.y34_c00092{bottom:508.800000pt;}
.y31_c00092{bottom:544.000000pt;}
.y33_c00092{bottom:544.640000pt;}
.y2f_c00092{bottom:545.280000pt;}
.y30_c00092{bottom:545.920000pt;}
.y32_c00092{bottom:546.560000pt;}
.y2c_c00092{bottom:581.120000pt;}
.y2e_c00092{bottom:582.400000pt;}
.y2b_c00092{bottom:583.680000pt;}
.y2d_c00092{bottom:584.320000pt;}
.y26_c00092{bottom:618.880000pt;}
.y29_c00092{bottom:619.520000pt;}
.y27_c00092{bottom:621.440000pt;}
.y28_c00092{bottom:622.080000pt;}
.y2a_c00092{bottom:622.720000pt;}
.y23_c00092{bottom:657.280000pt;}
.y24_c00092{bottom:657.920000pt;}
.y22_c00092{bottom:659.840000pt;}
.y25_c00092{bottom:660.480000pt;}
.y21_c00092{bottom:705.920000pt;}
.y1f_c00092{bottom:742.400000pt;}
.y1e_c00092{bottom:743.040000pt;}
.y1d_c00092{bottom:743.680000pt;}
.y1b_c00092{bottom:744.320000pt;}
.y1c_c00092{bottom:744.960000pt;}
.y20_c00092{bottom:745.600000pt;}
.y15_c00092{bottom:780.160000pt;}
.y18_c00092{bottom:780.800000pt;}
.y14_c00092{bottom:781.440000pt;}
.y16_c00092{bottom:782.720000pt;}
.y17_c00092{bottom:783.360000pt;}
.y19_c00092{bottom:784.000000pt;}
.y1a_c00092{bottom:784.640000pt;}
.ye_c00092{bottom:817.920000pt;}
.y10_c00092{bottom:818.560000pt;}
.y13_c00092{bottom:819.200000pt;}
.yd_c00092{bottom:819.840000pt;}
.yf_c00092{bottom:821.120000pt;}
.y12_c00092{bottom:821.760000pt;}
.y11_c00092{bottom:822.400000pt;}
.y7_c00092{bottom:857.600000pt;}
.y8_c00092{bottom:858.240000pt;}
.y9_c00092{bottom:858.880000pt;}
.ya_c00092{bottom:859.520000pt;}
.yb_c00092{bottom:860.160000pt;}
.yc_c00092{bottom:860.800000pt;}
.y2_c00092{bottom:893.440000pt;}
.y4_c00092{bottom:894.080000pt;}
.y3_c00092{bottom:896.640000pt;}
.y5_c00092{bottom:897.920000pt;}
.y6_c00092{bottom:898.560000pt;}
.y1_c00092{bottom:962.560000pt;}
.h11_c00092{height:11.518750pt;}
.hd_c00092{height:27.645000pt;}
.h9_c00092{height:29.948750pt;}
.h10_c00092{height:31.996250pt;}
.h8_c00092{height:32.252500pt;}
.hc_c00092{height:34.556250pt;}
.hb_c00092{height:36.860000pt;}
.h6_c00092{height:39.163750pt;}
.h5_c00092{height:41.467500pt;}
.he_c00092{height:43.771250pt;}
.h4_c00092{height:46.075000pt;}
.h3_c00092{height:48.378750pt;}
.h7_c00092{height:50.682500pt;}
.ha_c00092{height:52.986250pt;}
.h2_c00092{height:55.290000pt;}
.hf_c00092{height:57.593750pt;}
.h12_c00092{height:59.897500pt;}
.h1_c00092{height:1022.666667pt;}
.h0_c00092{height:1022.720000pt;}
.w1_c00092{width:716.666667pt;}
.w0_c00092{width:716.800000pt;}
.x0_c00092{left:0.000000pt;}
.x36_c00092{left:72.320000pt;}
.x1c_c00092{left:73.600000pt;}
.x2_c00092{left:74.880000pt;}
.x1d_c00092{left:101.760000pt;}
.x49_c00092{left:111.360000pt;}
.x4e_c00092{left:112.640000pt;}
.x59_c00092{left:120.320000pt;}
.x3_c00092{left:121.600000pt;}
.x14_c00092{left:122.880000pt;}
.x37_c00092{left:140.160000pt;}
.xc_c00092{left:141.440000pt;}
.x2f_c00092{left:149.120000pt;}
.x4_c00092{left:159.360000pt;}
.x24_c00092{left:168.960000pt;}
.x30_c00092{left:177.280000pt;}
.x4f_c00092{left:178.560000pt;}
.x15_c00092{left:188.160000pt;}
.x2b_c00092{left:197.120000pt;}
.x50_c00092{left:206.080000pt;}
.xd_c00092{left:207.360000pt;}
.x16_c00092{left:216.320000pt;}
.x5a_c00092{left:218.240000pt;}
.x31_c00092{left:225.280000pt;}
.x25_c00092{left:226.560000pt;}
.x57_c00092{left:230.400000pt;}
.xe_c00092{left:235.520000pt;}
.x47_c00092{left:244.480000pt;}
.x5_c00092{left:245.760000pt;}
.x2c_c00092{left:254.080000pt;}
.x26_c00092{left:255.360000pt;}
.x42_c00092{left:263.680000pt;}
.x1e_c00092{left:264.960000pt;}
.xf_c00092{left:273.920000pt;}
.x6_c00092{left:283.520000pt;}
.x27_c00092{left:293.120000pt;}
.x3e_c00092{left:302.720000pt;}
.x32_c00092{left:311.680000pt;}
.x53_c00092{left:313.600000pt;}
.x43_c00092{left:321.280000pt;}
.x1f_c00092{left:322.560000pt;}
.x5b_c00092{left:329.600000pt;}
.x17_c00092{left:331.520000pt;}
.x39_c00092{left:341.120000pt;}
.x10_c00092{left:350.080000pt;}
.x54_c00092{left:351.360000pt;}
.x4b_c00092{left:359.040000pt;}
.x18_c00092{left:360.320000pt;}
.x51_c00092{left:369.280000pt;}
.x40_c00092{left:370.560000pt;}
.x4a_c00092{left:378.240000pt;}
.x2d_c00092{left:388.480000pt;}
.x19_c00092{left:389.760000pt;}
.x55_c00092{left:397.440000pt;}
.x7_c00092{left:399.360000pt;}
.x52_c00092{left:408.960000pt;}
.x33_c00092{left:417.920000pt;}
.x4c_c00092{left:419.200000pt;}
.x3a_c00092{left:426.880000pt;}
.x28_c00092{left:428.160000pt;}
.x8_c00092{left:436.480000pt;}
.x20_c00092{left:437.760000pt;}
.x11_c00092{left:447.360000pt;}
.x29_c00092{left:456.320000pt;}
.x4d_c00092{left:464.640000pt;}
.x21_c00092{left:466.560000pt;}
.x56_c00092{left:474.880000pt;}
.x12_c00092{left:476.160000pt;}
.x34_c00092{left:485.760000pt;}
.x5c_c00092{left:493.440000pt;}
.x9_c00092{left:495.360000pt;}
.x41_c00092{left:497.280000pt;}
.x46_c00092{left:503.680000pt;}
.x3b_c00092{left:504.960000pt;}
.x58_c00092{left:513.920000pt;}
.x5d_c00092{left:522.240000pt;}
.xa_c00092{left:524.800000pt;}
.x38_c00092{left:532.480000pt;}
.x3c_c00092{left:533.760000pt;}
.x44_c00092{left:543.360000pt;}
.x2e_c00092{left:552.960000pt;}
.x22_c00092{left:554.240000pt;}
.x48_c00092{left:561.920000pt;}
.x2a_c00092{left:563.200000pt;}
.x1a_c00092{left:572.160000pt;}
.x23_c00092{left:581.760000pt;}
.x13_c00092{left:584.960000pt;}
.x35_c00092{left:591.360000pt;}
.x3f_c00092{left:600.960000pt;}
.xb_c00092{left:610.560000pt;}
.x45_c00092{left:611.840000pt;}
.x3d_c00092{left:621.440000pt;}
.x1_c00092{left:629.760000pt;}
.x1b_c00092{left:631.040000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_06f3095dfad7200699098c74.woff2')format("woff");}.ff1_c00093{font-family:ff1_c00093;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4a_c00093{transform:matrix(0.238525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238525,0.000000,0.000000,0.250000,0,0);}
.m4d_c00093{transform:matrix(0.238925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238925,0.000000,0.000000,0.250000,0,0);}
.m43_c00093{transform:matrix(0.244425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244425,0.000000,0.000000,0.250000,0,0);}
.m47_c00093{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00093{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m48_c00093{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m56_c00093{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m57_c00093{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m42_c00093{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m21_c00093{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m52_c00093{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m44_c00093{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m5_c00093{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00093{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m40_c00093{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00093{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m27_c00093{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m17_c00093{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);}
.m3e_c00093{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m10_c00093{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);}
.m5a_c00093{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m0_c00093{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m9_c00093{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.mf_c00093{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);}
.m4e_c00093{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);}
.m55_c00093{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00093{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m3_c00093{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m12_c00093{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);}
.m7_c00093{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);}
.m4b_c00093{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m24_c00093{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);}
.m3a_c00093{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00093{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);}
.m1c_c00093{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);}
.m54_c00093{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m37_c00093{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m28_c00093{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.mb_c00093{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);}
.m51_c00093{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);}
.m8_c00093{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m1_c00093{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);}
.m4_c00093{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);}
.m30_c00093{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m23_c00093{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m19_c00093{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m49_c00093{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);}
.m2c_c00093{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m18_c00093{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m35_c00093{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);}
.m41_c00093{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m15_c00093{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);}
.m1a_c00093{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m20_c00093{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m34_c00093{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00093{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m13_c00093{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);}
.m22_c00093{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m32_c00093{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00093{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);}
.m3c_c00093{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00093{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.md_c00093{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m26_c00093{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m59_c00093{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m2_c00093{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);}
.m39_c00093{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00093{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m16_c00093{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00093{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);}
.m29_c00093{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.ma_c00093{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m14_c00093{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00093{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);}
.m11_c00093{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m45_c00093{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.me_c00093{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.mc_c00093{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);}
.m33_c00093{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00093{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m36_c00093{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00093{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00093{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m25_c00093{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m50_c00093{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);}
.m6_c00093{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);}
.m58_c00093{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m53_c00093{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m46_c00093{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m38_c00093{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m31_c00093{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00093{transform:matrix(0.952500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.952500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.952500,0.000000,0.000000,0.250000,0,0);}
.v0_c00093{vertical-align:0.000000px;}
.ls0_c00093{letter-spacing:0.000000px;}
.sc__c00093{text-shadow:none;}
.sc0_c00093{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00093{-webkit-text-stroke:0px transparent;}
.sc0_c00093{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00093{word-spacing:0.000000px;}
.fc0_c00093{color:transparent;}
.fse_c00093{font-size:25.920000px;}
.fs4_c00093{font-size:34.560000px;}
.fs8_c00093{font-size:37.440000px;}
.fs7_c00093{font-size:40.320000px;}
.fsd_c00093{font-size:43.200000px;}
.fs9_c00093{font-size:46.080000px;}
.fs1_c00093{font-size:48.960000px;}
.fs2_c00093{font-size:51.840000px;}
.fs6_c00093{font-size:54.720000px;}
.fsc_c00093{font-size:57.600000px;}
.fs3_c00093{font-size:60.480000px;}
.fs5_c00093{font-size:63.360000px;}
.fsb_c00093{font-size:66.240000px;}
.fs0_c00093{font-size:69.120000px;}
.fsa_c00093{font-size:72.000000px;}
.y0_c00093{bottom:0.000000px;}
.y76_c00093{bottom:52.560000px;}
.y77_c00093{bottom:53.280000px;}
.y73_c00093{bottom:54.000000px;}
.y75_c00093{bottom:54.720000px;}
.y74_c00093{bottom:56.160000px;}
.y72_c00093{bottom:59.040000px;}
.y71_c00093{bottom:60.480000px;}
.y6e_c00093{bottom:94.320000px;}
.y6d_c00093{bottom:95.040000px;}
.y70_c00093{bottom:95.760000px;}
.y69_c00093{bottom:96.480000px;}
.y6f_c00093{bottom:97.200000px;}
.y6c_c00093{bottom:97.920000px;}
.y6b_c00093{bottom:98.640000px;}
.y6a_c00093{bottom:99.360000px;}
.y68_c00093{bottom:136.800000px;}
.y67_c00093{bottom:137.520000px;}
.y62_c00093{bottom:138.960000px;}
.y65_c00093{bottom:139.680000px;}
.y66_c00093{bottom:140.400000px;}
.y64_c00093{bottom:141.120000px;}
.y63_c00093{bottom:141.840000px;}
.y5f_c00093{bottom:180.000000px;}
.y61_c00093{bottom:181.440000px;}
.y5e_c00093{bottom:182.160000px;}
.y60_c00093{bottom:183.600000px;}
.y5d_c00093{bottom:184.320000px;}
.y5c_c00093{bottom:237.600000px;}
.y5b_c00093{bottom:239.040000px;}
.y58_c00093{bottom:276.480000px;}
.y57_c00093{bottom:277.920000px;}
.y56_c00093{bottom:278.640000px;}
.y5a_c00093{bottom:279.360000px;}
.y59_c00093{bottom:280.080000px;}
.y55_c00093{bottom:281.520000px;}
.y53_c00093{bottom:318.960000px;}
.y54_c00093{bottom:321.120000px;}
.y51_c00093{bottom:321.840000px;}
.y50_c00093{bottom:322.560000px;}
.y52_c00093{bottom:323.280000px;}
.y4f_c00093{bottom:324.000000px;}
.y4e_c00093{bottom:361.440000px;}
.y4a_c00093{bottom:364.320000px;}
.y4d_c00093{bottom:365.040000px;}
.y4c_c00093{bottom:365.760000px;}
.y4b_c00093{bottom:366.480000px;}
.y47_c00093{bottom:404.640000px;}
.y49_c00093{bottom:405.360000px;}
.y46_c00093{bottom:406.080000px;}
.y48_c00093{bottom:407.520000px;}
.y45_c00093{bottom:408.240000px;}
.y44_c00093{bottom:408.960000px;}
.y42_c00093{bottom:447.840000px;}
.y43_c00093{bottom:448.560000px;}
.y3f_c00093{bottom:449.280000px;}
.y40_c00093{bottom:450.720000px;}
.y41_c00093{bottom:451.440000px;}
.y3d_c00093{bottom:490.320000px;}
.y3e_c00093{bottom:491.040000px;}
.y3c_c00093{bottom:493.200000px;}
.y3b_c00093{bottom:533.520000px;}
.y38_c00093{bottom:534.240000px;}
.y37_c00093{bottom:535.680000px;}
.y39_c00093{bottom:536.400000px;}
.y3a_c00093{bottom:537.120000px;}
.y35_c00093{bottom:576.720000px;}
.y36_c00093{bottom:577.440000px;}
.y34_c00093{bottom:578.880000px;}
.y32_c00093{bottom:619.200000px;}
.y33_c00093{bottom:619.920000px;}
.y30_c00093{bottom:621.360000px;}
.y31_c00093{bottom:622.080000px;}
.y2e_c00093{bottom:661.680000px;}
.y2f_c00093{bottom:662.400000px;}
.y2d_c00093{bottom:663.840000px;}
.y2b_c00093{bottom:664.560000px;}
.y2c_c00093{bottom:665.280000px;}
.y26_c00093{bottom:704.160000px;}
.y28_c00093{bottom:704.880000px;}
.y2a_c00093{bottom:705.600000px;}
.y25_c00093{bottom:706.320000px;}
.y27_c00093{bottom:707.040000px;}
.y29_c00093{bottom:707.760000px;}
.y21_c00093{bottom:745.920000px;}
.y22_c00093{bottom:746.640000px;}
.y1f_c00093{bottom:748.800000px;}
.y20_c00093{bottom:749.520000px;}
.y23_c00093{bottom:750.240000px;}
.y24_c00093{bottom:750.960000px;}
.y1d_c00093{bottom:789.840000px;}
.y1e_c00093{bottom:790.560000px;}
.y1a_c00093{bottom:792.000000px;}
.y1b_c00093{bottom:792.720000px;}
.y1c_c00093{bottom:793.440000px;}
.y19_c00093{bottom:845.280000px;}
.y14_c00093{bottom:883.440000px;}
.y18_c00093{bottom:887.040000px;}
.y15_c00093{bottom:887.760000px;}
.y16_c00093{bottom:888.480000px;}
.y17_c00093{bottom:889.200000px;}
.yf_c00093{bottom:928.080000px;}
.y11_c00093{bottom:929.520000px;}
.yd_c00093{bottom:930.240000px;}
.ye_c00093{bottom:930.960000px;}
.y10_c00093{bottom:931.680000px;}
.y12_c00093{bottom:932.400000px;}
.y13_c00093{bottom:933.120000px;}
.y7_c00093{bottom:969.120000px;}
.y9_c00093{bottom:971.280000px;}
.y8_c00093{bottom:972.720000px;}
.ya_c00093{bottom:974.160000px;}
.yb_c00093{bottom:974.880000px;}
.yc_c00093{bottom:975.600000px;}
.y4_c00093{bottom:1015.200000px;}
.y2_c00093{bottom:1015.920000px;}
.y3_c00093{bottom:1017.360000px;}
.y5_c00093{bottom:1018.800000px;}
.y6_c00093{bottom:1019.520000px;}
.y1_c00093{bottom:1080.000000px;}
.h10_c00093{height:23.325469px;}
.h6_c00093{height:31.100625px;}
.ha_c00093{height:33.692344px;}
.h9_c00093{height:36.284062px;}
.hf_c00093{height:38.875781px;}
.hb_c00093{height:41.467500px;}
.h3_c00093{height:44.059219px;}
.h4_c00093{height:46.650937px;}
.h8_c00093{height:49.242656px;}
.he_c00093{height:51.834375px;}
.h5_c00093{height:54.426094px;}
.h7_c00093{height:57.017812px;}
.hd_c00093{height:59.609531px;}
.h2_c00093{height:62.201250px;}
.hc_c00093{height:64.792969px;}
.h0_c00093{height:1153.440000px;}
.h1_c00093{height:1153.500000px;}
.w0_c00093{width:810.000000px;}
.x0_c00093{left:0.000000px;}
.x39_c00093{left:82.080000px;}
.xc_c00093{left:83.520000px;}
.x15_c00093{left:105.120000px;}
.x30_c00093{left:114.480000px;}
.x46_c00093{left:115.920000px;}
.x19_c00093{left:126.720000px;}
.xd_c00093{left:136.800000px;}
.x47_c00093{left:147.600000px;}
.x22_c00093{left:156.960000px;}
.xe_c00093{left:168.480000px;}
.x2_c00093{left:190.080000px;}
.x42_c00093{left:191.520000px;}
.x29_c00093{left:200.880000px;}
.x31_c00093{left:211.680000px;}
.x3e_c00093{left:213.840000px;}
.x1a_c00093{left:222.480000px;}
.x36_c00093{left:232.560000px;}
.x16_c00093{left:234.000000px;}
.x2a_c00093{left:244.800000px;}
.x3_c00093{left:254.880000px;}
.x32_c00093{left:265.680000px;}
.x40_c00093{left:275.040000px;}
.x1b_c00093{left:276.480000px;}
.x48_c00093{left:287.280000px;}
.x4_c00093{left:298.080000px;}
.x1c_c00093{left:308.880000px;}
.x23_c00093{left:319.680000px;}
.xf_c00093{left:330.480000px;}
.x5_c00093{left:339.840000px;}
.x24_c00093{left:341.280000px;}
.x37_c00093{left:351.360000px;}
.x17_c00093{left:362.160000px;}
.x2b_c00093{left:372.960000px;}
.x25_c00093{left:384.480000px;}
.x3c_c00093{left:396.000000px;}
.x45_c00093{left:405.360000px;}
.x1d_c00093{left:406.800000px;}
.x6_c00093{left:416.880000px;}
.x10_c00093{left:427.680000px;}
.x26_c00093{left:437.040000px;}
.x33_c00093{left:438.480000px;}
.x18_c00093{left:450.000000px;}
.x7_c00093{left:459.360000px;}
.x3f_c00093{left:460.800000px;}
.x1e_c00093{left:470.880000px;}
.x3d_c00093{left:481.680000px;}
.x27_c00093{left:491.760000px;}
.x8_c00093{left:503.280000px;}
.x3a_c00093{left:504.720000px;}
.x2c_c00093{left:514.080000px;}
.x1f_c00093{left:525.600000px;}
.x11_c00093{left:536.400000px;}
.x3b_c00093{left:546.480000px;}
.x2d_c00093{left:557.280000px;}
.x12_c00093{left:568.080000px;}
.x43_c00093{left:569.520000px;}
.x28_c00093{left:579.600000px;}
.x9_c00093{left:589.680000px;}
.x13_c00093{left:600.480000px;}
.x38_c00093{left:603.360000px;}
.x41_c00093{left:612.000000px;}
.x20_c00093{left:622.800000px;}
.x34_c00093{left:632.880000px;}
.xa_c00093{left:645.120000px;}
.x21_c00093{left:654.480000px;}
.x49_c00093{left:655.920000px;}
.x14_c00093{left:666.000000px;}
.x44_c00093{left:667.440000px;}
.xb_c00093{left:676.800000px;}
.x2e_c00093{left:678.240000px;}
.x35_c00093{left:688.320000px;}
.x2f_c00093{left:699.840000px;}
.x1_c00093{left:714.240000px;}
@media print{
.v0_c00093{vertical-align:0.000000pt;}
.ls0_c00093{letter-spacing:0.000000pt;}
.ws0_c00093{word-spacing:0.000000pt;}
.fse_c00093{font-size:23.040000pt;}
.fs4_c00093{font-size:30.720000pt;}
.fs8_c00093{font-size:33.280000pt;}
.fs7_c00093{font-size:35.840000pt;}
.fsd_c00093{font-size:38.400000pt;}
.fs9_c00093{font-size:40.960000pt;}
.fs1_c00093{font-size:43.520000pt;}
.fs2_c00093{font-size:46.080000pt;}
.fs6_c00093{font-size:48.640000pt;}
.fsc_c00093{font-size:51.200000pt;}
.fs3_c00093{font-size:53.760000pt;}
.fs5_c00093{font-size:56.320000pt;}
.fsb_c00093{font-size:58.880000pt;}
.fs0_c00093{font-size:61.440000pt;}
.fsa_c00093{font-size:64.000000pt;}
.y0_c00093{bottom:0.000000pt;}
.y76_c00093{bottom:46.720000pt;}
.y77_c00093{bottom:47.360000pt;}
.y73_c00093{bottom:48.000000pt;}
.y75_c00093{bottom:48.640000pt;}
.y74_c00093{bottom:49.920000pt;}
.y72_c00093{bottom:52.480000pt;}
.y71_c00093{bottom:53.760000pt;}
.y6e_c00093{bottom:83.840000pt;}
.y6d_c00093{bottom:84.480000pt;}
.y70_c00093{bottom:85.120000pt;}
.y69_c00093{bottom:85.760000pt;}
.y6f_c00093{bottom:86.400000pt;}
.y6c_c00093{bottom:87.040000pt;}
.y6b_c00093{bottom:87.680000pt;}
.y6a_c00093{bottom:88.320000pt;}
.y68_c00093{bottom:121.600000pt;}
.y67_c00093{bottom:122.240000pt;}
.y62_c00093{bottom:123.520000pt;}
.y65_c00093{bottom:124.160000pt;}
.y66_c00093{bottom:124.800000pt;}
.y64_c00093{bottom:125.440000pt;}
.y63_c00093{bottom:126.080000pt;}
.y5f_c00093{bottom:160.000000pt;}
.y61_c00093{bottom:161.280000pt;}
.y5e_c00093{bottom:161.920000pt;}
.y60_c00093{bottom:163.200000pt;}
.y5d_c00093{bottom:163.840000pt;}
.y5c_c00093{bottom:211.200000pt;}
.y5b_c00093{bottom:212.480000pt;}
.y58_c00093{bottom:245.760000pt;}
.y57_c00093{bottom:247.040000pt;}
.y56_c00093{bottom:247.680000pt;}
.y5a_c00093{bottom:248.320000pt;}
.y59_c00093{bottom:248.960000pt;}
.y55_c00093{bottom:250.240000pt;}
.y53_c00093{bottom:283.520000pt;}
.y54_c00093{bottom:285.440000pt;}
.y51_c00093{bottom:286.080000pt;}
.y50_c00093{bottom:286.720000pt;}
.y52_c00093{bottom:287.360000pt;}
.y4f_c00093{bottom:288.000000pt;}
.y4e_c00093{bottom:321.280000pt;}
.y4a_c00093{bottom:323.840000pt;}
.y4d_c00093{bottom:324.480000pt;}
.y4c_c00093{bottom:325.120000pt;}
.y4b_c00093{bottom:325.760000pt;}
.y47_c00093{bottom:359.680000pt;}
.y49_c00093{bottom:360.320000pt;}
.y46_c00093{bottom:360.960000pt;}
.y48_c00093{bottom:362.240000pt;}
.y45_c00093{bottom:362.880000pt;}
.y44_c00093{bottom:363.520000pt;}
.y42_c00093{bottom:398.080000pt;}
.y43_c00093{bottom:398.720000pt;}
.y3f_c00093{bottom:399.360000pt;}
.y40_c00093{bottom:400.640000pt;}
.y41_c00093{bottom:401.280000pt;}
.y3d_c00093{bottom:435.840000pt;}
.y3e_c00093{bottom:436.480000pt;}
.y3c_c00093{bottom:438.400000pt;}
.y3b_c00093{bottom:474.240000pt;}
.y38_c00093{bottom:474.880000pt;}
.y37_c00093{bottom:476.160000pt;}
.y39_c00093{bottom:476.800000pt;}
.y3a_c00093{bottom:477.440000pt;}
.y35_c00093{bottom:512.640000pt;}
.y36_c00093{bottom:513.280000pt;}
.y34_c00093{bottom:514.560000pt;}
.y32_c00093{bottom:550.400000pt;}
.y33_c00093{bottom:551.040000pt;}
.y30_c00093{bottom:552.320000pt;}
.y31_c00093{bottom:552.960000pt;}
.y2e_c00093{bottom:588.160000pt;}
.y2f_c00093{bottom:588.800000pt;}
.y2d_c00093{bottom:590.080000pt;}
.y2b_c00093{bottom:590.720000pt;}
.y2c_c00093{bottom:591.360000pt;}
.y26_c00093{bottom:625.920000pt;}
.y28_c00093{bottom:626.560000pt;}
.y2a_c00093{bottom:627.200000pt;}
.y25_c00093{bottom:627.840000pt;}
.y27_c00093{bottom:628.480000pt;}
.y29_c00093{bottom:629.120000pt;}
.y21_c00093{bottom:663.040000pt;}
.y22_c00093{bottom:663.680000pt;}
.y1f_c00093{bottom:665.600000pt;}
.y20_c00093{bottom:666.240000pt;}
.y23_c00093{bottom:666.880000pt;}
.y24_c00093{bottom:667.520000pt;}
.y1d_c00093{bottom:702.080000pt;}
.y1e_c00093{bottom:702.720000pt;}
.y1a_c00093{bottom:704.000000pt;}
.y1b_c00093{bottom:704.640000pt;}
.y1c_c00093{bottom:705.280000pt;}
.y19_c00093{bottom:751.360000pt;}
.y14_c00093{bottom:785.280000pt;}
.y18_c00093{bottom:788.480000pt;}
.y15_c00093{bottom:789.120000pt;}
.y16_c00093{bottom:789.760000pt;}
.y17_c00093{bottom:790.400000pt;}
.yf_c00093{bottom:824.960000pt;}
.y11_c00093{bottom:826.240000pt;}
.yd_c00093{bottom:826.880000pt;}
.ye_c00093{bottom:827.520000pt;}
.y10_c00093{bottom:828.160000pt;}
.y12_c00093{bottom:828.800000pt;}
.y13_c00093{bottom:829.440000pt;}
.y7_c00093{bottom:861.440000pt;}
.y9_c00093{bottom:863.360000pt;}
.y8_c00093{bottom:864.640000pt;}
.ya_c00093{bottom:865.920000pt;}
.yb_c00093{bottom:866.560000pt;}
.yc_c00093{bottom:867.200000pt;}
.y4_c00093{bottom:902.400000pt;}
.y2_c00093{bottom:903.040000pt;}
.y3_c00093{bottom:904.320000pt;}
.y5_c00093{bottom:905.600000pt;}
.y6_c00093{bottom:906.240000pt;}
.y1_c00093{bottom:960.000000pt;}
.h10_c00093{height:20.733750pt;}
.h6_c00093{height:27.645000pt;}
.ha_c00093{height:29.948750pt;}
.h9_c00093{height:32.252500pt;}
.hf_c00093{height:34.556250pt;}
.hb_c00093{height:36.860000pt;}
.h3_c00093{height:39.163750pt;}
.h4_c00093{height:41.467500pt;}
.h8_c00093{height:43.771250pt;}
.he_c00093{height:46.075000pt;}
.h5_c00093{height:48.378750pt;}
.h7_c00093{height:50.682500pt;}
.hd_c00093{height:52.986250pt;}
.h2_c00093{height:55.290000pt;}
.hc_c00093{height:57.593750pt;}
.h0_c00093{height:1025.280000pt;}
.h1_c00093{height:1025.333333pt;}
.w0_c00093{width:720.000000pt;}
.x0_c00093{left:0.000000pt;}
.x39_c00093{left:72.960000pt;}
.xc_c00093{left:74.240000pt;}
.x15_c00093{left:93.440000pt;}
.x30_c00093{left:101.760000pt;}
.x46_c00093{left:103.040000pt;}
.x19_c00093{left:112.640000pt;}
.xd_c00093{left:121.600000pt;}
.x47_c00093{left:131.200000pt;}
.x22_c00093{left:139.520000pt;}
.xe_c00093{left:149.760000pt;}
.x2_c00093{left:168.960000pt;}
.x42_c00093{left:170.240000pt;}
.x29_c00093{left:178.560000pt;}
.x31_c00093{left:188.160000pt;}
.x3e_c00093{left:190.080000pt;}
.x1a_c00093{left:197.760000pt;}
.x36_c00093{left:206.720000pt;}
.x16_c00093{left:208.000000pt;}
.x2a_c00093{left:217.600000pt;}
.x3_c00093{left:226.560000pt;}
.x32_c00093{left:236.160000pt;}
.x40_c00093{left:244.480000pt;}
.x1b_c00093{left:245.760000pt;}
.x48_c00093{left:255.360000pt;}
.x4_c00093{left:264.960000pt;}
.x1c_c00093{left:274.560000pt;}
.x23_c00093{left:284.160000pt;}
.xf_c00093{left:293.760000pt;}
.x5_c00093{left:302.080000pt;}
.x24_c00093{left:303.360000pt;}
.x37_c00093{left:312.320000pt;}
.x17_c00093{left:321.920000pt;}
.x2b_c00093{left:331.520000pt;}
.x25_c00093{left:341.760000pt;}
.x3c_c00093{left:352.000000pt;}
.x45_c00093{left:360.320000pt;}
.x1d_c00093{left:361.600000pt;}
.x6_c00093{left:370.560000pt;}
.x10_c00093{left:380.160000pt;}
.x26_c00093{left:388.480000pt;}
.x33_c00093{left:389.760000pt;}
.x18_c00093{left:400.000000pt;}
.x7_c00093{left:408.320000pt;}
.x3f_c00093{left:409.600000pt;}
.x1e_c00093{left:418.560000pt;}
.x3d_c00093{left:428.160000pt;}
.x27_c00093{left:437.120000pt;}
.x8_c00093{left:447.360000pt;}
.x3a_c00093{left:448.640000pt;}
.x2c_c00093{left:456.960000pt;}
.x1f_c00093{left:467.200000pt;}
.x11_c00093{left:476.800000pt;}
.x3b_c00093{left:485.760000pt;}
.x2d_c00093{left:495.360000pt;}
.x12_c00093{left:504.960000pt;}
.x43_c00093{left:506.240000pt;}
.x28_c00093{left:515.200000pt;}
.x9_c00093{left:524.160000pt;}
.x13_c00093{left:533.760000pt;}
.x38_c00093{left:536.320000pt;}
.x41_c00093{left:544.000000pt;}
.x20_c00093{left:553.600000pt;}
.x34_c00093{left:562.560000pt;}
.xa_c00093{left:573.440000pt;}
.x21_c00093{left:581.760000pt;}
.x49_c00093{left:583.040000pt;}
.x14_c00093{left:592.000000pt;}
.x44_c00093{left:593.280000pt;}
.xb_c00093{left:601.600000pt;}
.x2e_c00093{left:602.880000pt;}
.x35_c00093{left:611.840000pt;}
.x2f_c00093{left:622.080000pt;}
.x1_c00093{left:634.880000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_92488c960b09c532753c0c8a.woff2')format("woff");}.ff1_c00094{font-family:ff1_c00094;line-height:1.109863;font-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_c00094{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mc_c00094{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m13_c00094{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);}
.m41_c00094{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00094{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);}
.m2b_c00094{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m35_c00094{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m49_c00094{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00094{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00094{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.md_c00094{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00094{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m3_c00094{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m42_c00094{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00094{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m5_c00094{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m29_c00094{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);}
.m46_c00094{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00094{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.me_c00094{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);}
.m59_c00094{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m22_c00094{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);}
.m19_c00094{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m57_c00094{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);}
.m3b_c00094{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m16_c00094{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);}
.m9_c00094{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);}
.m51_c00094{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00094{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00094{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);}
.m39_c00094{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m20_c00094{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00094{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00094{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);}
.m1e_c00094{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00094{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);}
.m2c_c00094{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m1_c00094{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00094{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00094{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m47_c00094{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00094{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);}
.m58_c00094{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m15_c00094{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);}
.m24_c00094{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);}
.m43_c00094{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00094{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m18_c00094{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m31_c00094{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);}
.m25_c00094{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m2_c00094{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m28_c00094{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);}
.m8_c00094{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m44_c00094{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);}
.m14_c00094{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m36_c00094{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m12_c00094{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m38_c00094{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);}
.m5d_c00094{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m10_c00094{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00094{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.ma_c00094{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);}
.m32_c00094{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m40_c00094{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m34_c00094{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m53_c00094{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);}
.m1d_c00094{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);}
.m4_c00094{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m26_c00094{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m11_c00094{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m55_c00094{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);}
.m30_c00094{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m45_c00094{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00094{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m52_c00094{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.mb_c00094{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);}
.m6_c00094{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00094{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00094{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);}
.m0_c00094{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_c00094{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m17_c00094{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m27_c00094{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00094{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m48_c00094{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m7_c00094{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);}
.m21_c00094{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m37_c00094{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);}
.m54_c00094{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00094{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00094{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00094{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m23_c00094{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.m56_c00094{transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);}
.m50_c00094{transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);}
.v0_c00094{vertical-align:0.000000px;}
.ls0_c00094{letter-spacing:0.000000px;}
.sc__c00094{text-shadow:none;}
.sc0_c00094{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00094{-webkit-text-stroke:0px transparent;}
.sc0_c00094{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00094{word-spacing:-1.074695px;}
.ws1_c00094{word-spacing:0.000000px;}
.fc0_c00094{color:transparent;}
.fsd_c00094{font-size:31.680000px;}
.fs0_c00094{font-size:34.560000px;}
.fs4_c00094{font-size:37.440000px;}
.fsc_c00094{font-size:40.320000px;}
.fsa_c00094{font-size:43.200000px;}
.fs6_c00094{font-size:46.080000px;}
.fs1_c00094{font-size:48.960000px;}
.fs2_c00094{font-size:51.840000px;}
.fsb_c00094{font-size:54.720000px;}
.fs7_c00094{font-size:57.600000px;}
.fs3_c00094{font-size:60.480000px;}
.fs8_c00094{font-size:63.360000px;}
.fs9_c00094{font-size:66.240000px;}
.fs5_c00094{font-size:69.120000px;}
.y0_c00094{bottom:0.000000px;}
.y7f_c00094{bottom:54.000000px;}
.y81_c00094{bottom:56.160000px;}
.y80_c00094{bottom:56.880000px;}
.y7e_c00094{bottom:57.600000px;}
.y7d_c00094{bottom:58.320000px;}
.y7c_c00094{bottom:59.760000px;}
.y7b_c00094{bottom:100.800000px;}
.y76_c00094{bottom:103.680000px;}
.y77_c00094{bottom:104.400000px;}
.y7a_c00094{bottom:105.120000px;}
.y79_c00094{bottom:105.840000px;}
.y78_c00094{bottom:106.560000px;}
.y75_c00094{bottom:107.280000px;}
.y74_c00094{bottom:108.720000px;}
.y71_c00094{bottom:144.720000px;}
.y73_c00094{bottom:146.160000px;}
.y72_c00094{bottom:147.600000px;}
.y70_c00094{bottom:148.320000px;}
.y6f_c00094{bottom:149.760000px;}
.y6e_c00094{bottom:150.480000px;}
.y6d_c00094{bottom:151.200000px;}
.y6c_c00094{bottom:151.920000px;}
.y6b_c00094{bottom:187.200000px;}
.y68_c00094{bottom:187.920000px;}
.y67_c00094{bottom:189.360000px;}
.y69_c00094{bottom:190.800000px;}
.y6a_c00094{bottom:191.520000px;}
.y66_c00094{bottom:192.240000px;}
.y65_c00094{bottom:192.960000px;}
.y64_c00094{bottom:193.680000px;}
.y63_c00094{bottom:230.400000px;}
.y62_c00094{bottom:231.120000px;}
.y5f_c00094{bottom:234.000000px;}
.y61_c00094{bottom:234.720000px;}
.y60_c00094{bottom:235.440000px;}
.y5b_c00094{bottom:274.320000px;}
.y5e_c00094{bottom:275.760000px;}
.y5c_c00094{bottom:276.480000px;}
.y5d_c00094{bottom:277.200000px;}
.y5a_c00094{bottom:277.920000px;}
.y59_c00094{bottom:278.640000px;}
.y58_c00094{bottom:279.360000px;}
.y53_c00094{bottom:317.520000px;}
.y56_c00094{bottom:318.240000px;}
.y55_c00094{bottom:318.960000px;}
.y57_c00094{bottom:319.680000px;}
.y54_c00094{bottom:320.400000px;}
.y51_c00094{bottom:359.280000px;}
.y4f_c00094{bottom:360.000000px;}
.y50_c00094{bottom:360.720000px;}
.y4e_c00094{bottom:361.440000px;}
.y52_c00094{bottom:362.160000px;}
.y4c_c00094{bottom:362.880000px;}
.y4d_c00094{bottom:363.600000px;}
.y4a_c00094{bottom:401.760000px;}
.y49_c00094{bottom:402.480000px;}
.y47_c00094{bottom:403.200000px;}
.y4b_c00094{bottom:404.640000px;}
.y46_c00094{bottom:405.360000px;}
.y48_c00094{bottom:406.080000px;}
.y45_c00094{bottom:406.800000px;}
.y42_c00094{bottom:444.960000px;}
.y41_c00094{bottom:445.680000px;}
.y44_c00094{bottom:446.400000px;}
.y43_c00094{bottom:447.120000px;}
.y40_c00094{bottom:448.560000px;}
.y3f_c00094{bottom:498.240000px;}
.y3d_c00094{bottom:499.680000px;}
.y3c_c00094{bottom:501.120000px;}
.y3e_c00094{bottom:501.840000px;}
.y3b_c00094{bottom:540.000000px;}
.y3a_c00094{bottom:540.720000px;}
.y39_c00094{bottom:541.440000px;}
.y37_c00094{bottom:543.600000px;}
.y36_c00094{bottom:544.320000px;}
.y38_c00094{bottom:545.040000px;}
.y34_c00094{bottom:586.080000px;}
.y33_c00094{bottom:586.800000px;}
.y35_c00094{bottom:587.520000px;}
.y31_c00094{bottom:626.400000px;}
.y32_c00094{bottom:627.120000px;}
.y30_c00094{bottom:629.280000px;}
.y2f_c00094{bottom:630.000000px;}
.y2c_c00094{bottom:668.880000px;}
.y2e_c00094{bottom:669.600000px;}
.y2a_c00094{bottom:670.320000px;}
.y2d_c00094{bottom:671.760000px;}
.y2b_c00094{bottom:672.480000px;}
.y26_c00094{bottom:711.360000px;}
.y28_c00094{bottom:712.080000px;}
.y29_c00094{bottom:712.800000px;}
.y24_c00094{bottom:714.240000px;}
.y25_c00094{bottom:714.960000px;}
.y27_c00094{bottom:715.680000px;}
.y21_c00094{bottom:753.840000px;}
.y1f_c00094{bottom:754.560000px;}
.y23_c00094{bottom:756.000000px;}
.y20_c00094{bottom:757.440000px;}
.y22_c00094{bottom:758.160000px;}
.y1b_c00094{bottom:797.040000px;}
.y1d_c00094{bottom:798.480000px;}
.y1c_c00094{bottom:800.640000px;}
.y1e_c00094{bottom:801.360000px;}
.y1a_c00094{bottom:840.960000px;}
.y18_c00094{bottom:842.400000px;}
.y19_c00094{bottom:843.120000px;}
.y14_c00094{bottom:882.720000px;}
.y13_c00094{bottom:884.880000px;}
.y16_c00094{bottom:885.600000px;}
.y15_c00094{bottom:886.320000px;}
.y17_c00094{bottom:887.040000px;}
.yc_c00094{bottom:923.760000px;}
.ye_c00094{bottom:925.200000px;}
.yf_c00094{bottom:925.920000px;}
.y11_c00094{bottom:927.360000px;}
.yd_c00094{bottom:928.080000px;}
.y10_c00094{bottom:928.800000px;}
.y12_c00094{bottom:929.520000px;}
.y8_c00094{bottom:968.400000px;}
.y9_c00094{bottom:969.120000px;}
.y7_c00094{bottom:969.840000px;}
.ya_c00094{bottom:972.000000px;}
.yb_c00094{bottom:972.720000px;}
.y3_c00094{bottom:1011.600000px;}
.y2_c00094{bottom:1012.320000px;}
.y1_c00094{bottom:1013.040000px;}
.y4_c00094{bottom:1014.480000px;}
.y5_c00094{bottom:1015.200000px;}
.y6_c00094{bottom:1015.920000px;}
.hf_c00094{height:28.508906px;}
.h2_c00094{height:31.100625px;}
.h6_c00094{height:33.692344px;}
.he_c00094{height:36.284062px;}
.hc_c00094{height:38.875781px;}
.h8_c00094{height:41.467500px;}
.h3_c00094{height:44.059219px;}
.h4_c00094{height:46.650937px;}
.hd_c00094{height:49.242656px;}
.h9_c00094{height:51.834375px;}
.h5_c00094{height:54.426094px;}
.ha_c00094{height:57.017812px;}
.hb_c00094{height:59.609531px;}
.h7_c00094{height:62.201250px;}
.h1_c00094{height:1150.500000px;}
.h0_c00094{height:1150.560000px;}
.w1_c00094{width:805.500000px;}
.w0_c00094{width:805.680000px;}
.x0_c00094{left:0.000000px;}
.x3e_c00094{left:79.200000px;}
.x1_c00094{left:80.640000px;}
.x57_c00094{left:83.520000px;}
.x2_c00094{left:101.520000px;}
.x48_c00094{left:110.880000px;}
.x20_c00094{left:112.320000px;}
.x58_c00094{left:114.480000px;}
.x3b_c00094{left:123.120000px;}
.x2b_c00094{left:133.200000px;}
.x21_c00094{left:145.440000px;}
.x3_c00094{left:154.800000px;}
.x59_c00094{left:157.680000px;}
.x34_c00094{left:164.880000px;}
.xc_c00094{left:168.480000px;}
.x2c_c00094{left:175.680000px;}
.x27_c00094{left:187.200000px;}
.x50_c00094{left:197.280000px;}
.x15_c00094{left:198.720000px;}
.x52_c00094{left:208.080000px;}
.x35_c00094{left:209.520000px;}
.x5a_c00094{left:210.960000px;}
.x45_c00094{left:218.160000px;}
.x41_c00094{left:220.320000px;}
.x22_c00094{left:229.680000px;}
.x4_c00094{left:240.480000px;}
.x28_c00094{left:251.280000px;}
.x3c_c00094{left:261.360000px;}
.xd_c00094{left:263.520000px;}
.x4d_c00094{left:264.960000px;}
.x42_c00094{left:272.160000px;}
.x29_c00094{left:274.320000px;}
.x2d_c00094{left:283.680000px;}
.x16_c00094{left:293.760000px;}
.x23_c00094{left:295.200000px;}
.x2e_c00094{left:305.280000px;}
.x44_c00094{left:316.080000px;}
.x51_c00094{left:326.160000px;}
.x5b_c00094{left:329.760000px;}
.x1c_c00094{left:337.680000px;}
.xe_c00094{left:339.120000px;}
.x5_c00094{left:347.760000px;}
.x17_c00094{left:349.200000px;}
.x49_c00094{left:358.560000px;}
.x24_c00094{left:360.000000px;}
.x56_c00094{left:369.360000px;}
.xf_c00094{left:370.800000px;}
.x4e_c00094{left:379.440000px;}
.x2f_c00094{left:381.600000px;}
.x38_c00094{left:391.680000px;}
.x25_c00094{left:393.120000px;}
.x3f_c00094{left:402.480000px;}
.x36_c00094{left:411.840000px;}
.x6_c00094{left:414.720000px;}
.x10_c00094{left:424.080000px;}
.x4f_c00094{left:444.960000px;}
.x2a_c00094{left:446.400000px;}
.x46_c00094{left:455.760000px;}
.x5c_c00094{left:460.080000px;}
.x39_c00094{left:468.000000px;}
.x30_c00094{left:478.080000px;}
.x4a_c00094{left:488.160000px;}
.x18_c00094{left:489.600000px;}
.x53_c00094{left:498.960000px;}
.x7_c00094{left:500.400000px;}
.x19_c00094{left:511.200000px;}
.x47_c00094{left:520.560000px;}
.x11_c00094{left:522.000000px;}
.x40_c00094{left:531.360000px;}
.x8_c00094{left:533.520000px;}
.x37_c00094{left:542.880000px;}
.x1d_c00094{left:544.320000px;}
.x3d_c00094{left:553.680000px;}
.x9_c00094{left:565.920000px;}
.x54_c00094{left:574.560000px;}
.x43_c00094{left:576.000000px;}
.x5d_c00094{left:578.880000px;}
.x1e_c00094{left:586.080000px;}
.x3a_c00094{left:597.600000px;}
.x1a_c00094{left:609.120000px;}
.x31_c00094{left:619.920000px;}
.x4b_c00094{left:629.280000px;}
.xa_c00094{left:630.720000px;}
.x26_c00094{left:633.600000px;}
.x12_c00094{left:640.800000px;}
.x32_c00094{left:652.320000px;}
.x5e_c00094{left:655.200000px;}
.xb_c00094{left:663.120000px;}
.x1f_c00094{left:673.920000px;}
.x13_c00094{left:684.720000px;}
.x4c_c00094{left:686.160000px;}
.x33_c00094{left:695.520000px;}
.x5f_c00094{left:699.840000px;}
.x1b_c00094{left:707.040000px;}
.x55_c00094{left:717.120000px;}
.x14_c00094{left:739.440000px;}
@media print{
.v0_c00094{vertical-align:0.000000pt;}
.ls0_c00094{letter-spacing:0.000000pt;}
.ws0_c00094{word-spacing:-0.955284pt;}
.ws1_c00094{word-spacing:0.000000pt;}
.fsd_c00094{font-size:28.160000pt;}
.fs0_c00094{font-size:30.720000pt;}
.fs4_c00094{font-size:33.280000pt;}
.fsc_c00094{font-size:35.840000pt;}
.fsa_c00094{font-size:38.400000pt;}
.fs6_c00094{font-size:40.960000pt;}
.fs1_c00094{font-size:43.520000pt;}
.fs2_c00094{font-size:46.080000pt;}
.fsb_c00094{font-size:48.640000pt;}
.fs7_c00094{font-size:51.200000pt;}
.fs3_c00094{font-size:53.760000pt;}
.fs8_c00094{font-size:56.320000pt;}
.fs9_c00094{font-size:58.880000pt;}
.fs5_c00094{font-size:61.440000pt;}
.y0_c00094{bottom:0.000000pt;}
.y7f_c00094{bottom:48.000000pt;}
.y81_c00094{bottom:49.920000pt;}
.y80_c00094{bottom:50.560000pt;}
.y7e_c00094{bottom:51.200000pt;}
.y7d_c00094{bottom:51.840000pt;}
.y7c_c00094{bottom:53.120000pt;}
.y7b_c00094{bottom:89.600000pt;}
.y76_c00094{bottom:92.160000pt;}
.y77_c00094{bottom:92.800000pt;}
.y7a_c00094{bottom:93.440000pt;}
.y79_c00094{bottom:94.080000pt;}
.y78_c00094{bottom:94.720000pt;}
.y75_c00094{bottom:95.360000pt;}
.y74_c00094{bottom:96.640000pt;}
.y71_c00094{bottom:128.640000pt;}
.y73_c00094{bottom:129.920000pt;}
.y72_c00094{bottom:131.200000pt;}
.y70_c00094{bottom:131.840000pt;}
.y6f_c00094{bottom:133.120000pt;}
.y6e_c00094{bottom:133.760000pt;}
.y6d_c00094{bottom:134.400000pt;}
.y6c_c00094{bottom:135.040000pt;}
.y6b_c00094{bottom:166.400000pt;}
.y68_c00094{bottom:167.040000pt;}
.y67_c00094{bottom:168.320000pt;}
.y69_c00094{bottom:169.600000pt;}
.y6a_c00094{bottom:170.240000pt;}
.y66_c00094{bottom:170.880000pt;}
.y65_c00094{bottom:171.520000pt;}
.y64_c00094{bottom:172.160000pt;}
.y63_c00094{bottom:204.800000pt;}
.y62_c00094{bottom:205.440000pt;}
.y5f_c00094{bottom:208.000000pt;}
.y61_c00094{bottom:208.640000pt;}
.y60_c00094{bottom:209.280000pt;}
.y5b_c00094{bottom:243.840000pt;}
.y5e_c00094{bottom:245.120000pt;}
.y5c_c00094{bottom:245.760000pt;}
.y5d_c00094{bottom:246.400000pt;}
.y5a_c00094{bottom:247.040000pt;}
.y59_c00094{bottom:247.680000pt;}
.y58_c00094{bottom:248.320000pt;}
.y53_c00094{bottom:282.240000pt;}
.y56_c00094{bottom:282.880000pt;}
.y55_c00094{bottom:283.520000pt;}
.y57_c00094{bottom:284.160000pt;}
.y54_c00094{bottom:284.800000pt;}
.y51_c00094{bottom:319.360000pt;}
.y4f_c00094{bottom:320.000000pt;}
.y50_c00094{bottom:320.640000pt;}
.y4e_c00094{bottom:321.280000pt;}
.y52_c00094{bottom:321.920000pt;}
.y4c_c00094{bottom:322.560000pt;}
.y4d_c00094{bottom:323.200000pt;}
.y4a_c00094{bottom:357.120000pt;}
.y49_c00094{bottom:357.760000pt;}
.y47_c00094{bottom:358.400000pt;}
.y4b_c00094{bottom:359.680000pt;}
.y46_c00094{bottom:360.320000pt;}
.y48_c00094{bottom:360.960000pt;}
.y45_c00094{bottom:361.600000pt;}
.y42_c00094{bottom:395.520000pt;}
.y41_c00094{bottom:396.160000pt;}
.y44_c00094{bottom:396.800000pt;}
.y43_c00094{bottom:397.440000pt;}
.y40_c00094{bottom:398.720000pt;}
.y3f_c00094{bottom:442.880000pt;}
.y3d_c00094{bottom:444.160000pt;}
.y3c_c00094{bottom:445.440000pt;}
.y3e_c00094{bottom:446.080000pt;}
.y3b_c00094{bottom:480.000000pt;}
.y3a_c00094{bottom:480.640000pt;}
.y39_c00094{bottom:481.280000pt;}
.y37_c00094{bottom:483.200000pt;}
.y36_c00094{bottom:483.840000pt;}
.y38_c00094{bottom:484.480000pt;}
.y34_c00094{bottom:520.960000pt;}
.y33_c00094{bottom:521.600000pt;}
.y35_c00094{bottom:522.240000pt;}
.y31_c00094{bottom:556.800000pt;}
.y32_c00094{bottom:557.440000pt;}
.y30_c00094{bottom:559.360000pt;}
.y2f_c00094{bottom:560.000000pt;}
.y2c_c00094{bottom:594.560000pt;}
.y2e_c00094{bottom:595.200000pt;}
.y2a_c00094{bottom:595.840000pt;}
.y2d_c00094{bottom:597.120000pt;}
.y2b_c00094{bottom:597.760000pt;}
.y26_c00094{bottom:632.320000pt;}
.y28_c00094{bottom:632.960000pt;}
.y29_c00094{bottom:633.600000pt;}
.y24_c00094{bottom:634.880000pt;}
.y25_c00094{bottom:635.520000pt;}
.y27_c00094{bottom:636.160000pt;}
.y21_c00094{bottom:670.080000pt;}
.y1f_c00094{bottom:670.720000pt;}
.y23_c00094{bottom:672.000000pt;}
.y20_c00094{bottom:673.280000pt;}
.y22_c00094{bottom:673.920000pt;}
.y1b_c00094{bottom:708.480000pt;}
.y1d_c00094{bottom:709.760000pt;}
.y1c_c00094{bottom:711.680000pt;}
.y1e_c00094{bottom:712.320000pt;}
.y1a_c00094{bottom:747.520000pt;}
.y18_c00094{bottom:748.800000pt;}
.y19_c00094{bottom:749.440000pt;}
.y14_c00094{bottom:784.640000pt;}
.y13_c00094{bottom:786.560000pt;}
.y16_c00094{bottom:787.200000pt;}
.y15_c00094{bottom:787.840000pt;}
.y17_c00094{bottom:788.480000pt;}
.yc_c00094{bottom:821.120000pt;}
.ye_c00094{bottom:822.400000pt;}
.yf_c00094{bottom:823.040000pt;}
.y11_c00094{bottom:824.320000pt;}
.yd_c00094{bottom:824.960000pt;}
.y10_c00094{bottom:825.600000pt;}
.y12_c00094{bottom:826.240000pt;}
.y8_c00094{bottom:860.800000pt;}
.y9_c00094{bottom:861.440000pt;}
.y7_c00094{bottom:862.080000pt;}
.ya_c00094{bottom:864.000000pt;}
.yb_c00094{bottom:864.640000pt;}
.y3_c00094{bottom:899.200000pt;}
.y2_c00094{bottom:899.840000pt;}
.y1_c00094{bottom:900.480000pt;}
.y4_c00094{bottom:901.760000pt;}
.y5_c00094{bottom:902.400000pt;}
.y6_c00094{bottom:903.040000pt;}
.hf_c00094{height:25.341250pt;}
.h2_c00094{height:27.645000pt;}
.h6_c00094{height:29.948750pt;}
.he_c00094{height:32.252500pt;}
.hc_c00094{height:34.556250pt;}
.h8_c00094{height:36.860000pt;}
.h3_c00094{height:39.163750pt;}
.h4_c00094{height:41.467500pt;}
.hd_c00094{height:43.771250pt;}
.h9_c00094{height:46.075000pt;}
.h5_c00094{height:48.378750pt;}
.ha_c00094{height:50.682500pt;}
.hb_c00094{height:52.986250pt;}
.h7_c00094{height:55.290000pt;}
.h1_c00094{height:1022.666667pt;}
.h0_c00094{height:1022.720000pt;}
.w1_c00094{width:716.000000pt;}
.w0_c00094{width:716.160000pt;}
.x0_c00094{left:0.000000pt;}
.x3e_c00094{left:70.400000pt;}
.x1_c00094{left:71.680000pt;}
.x57_c00094{left:74.240000pt;}
.x2_c00094{left:90.240000pt;}
.x48_c00094{left:98.560000pt;}
.x20_c00094{left:99.840000pt;}
.x58_c00094{left:101.760000pt;}
.x3b_c00094{left:109.440000pt;}
.x2b_c00094{left:118.400000pt;}
.x21_c00094{left:129.280000pt;}
.x3_c00094{left:137.600000pt;}
.x59_c00094{left:140.160000pt;}
.x34_c00094{left:146.560000pt;}
.xc_c00094{left:149.760000pt;}
.x2c_c00094{left:156.160000pt;}
.x27_c00094{left:166.400000pt;}
.x50_c00094{left:175.360000pt;}
.x15_c00094{left:176.640000pt;}
.x52_c00094{left:184.960000pt;}
.x35_c00094{left:186.240000pt;}
.x5a_c00094{left:187.520000pt;}
.x45_c00094{left:193.920000pt;}
.x41_c00094{left:195.840000pt;}
.x22_c00094{left:204.160000pt;}
.x4_c00094{left:213.760000pt;}
.x28_c00094{left:223.360000pt;}
.x3c_c00094{left:232.320000pt;}
.xd_c00094{left:234.240000pt;}
.x4d_c00094{left:235.520000pt;}
.x42_c00094{left:241.920000pt;}
.x29_c00094{left:243.840000pt;}
.x2d_c00094{left:252.160000pt;}
.x16_c00094{left:261.120000pt;}
.x23_c00094{left:262.400000pt;}
.x2e_c00094{left:271.360000pt;}
.x44_c00094{left:280.960000pt;}
.x51_c00094{left:289.920000pt;}
.x5b_c00094{left:293.120000pt;}
.x1c_c00094{left:300.160000pt;}
.xe_c00094{left:301.440000pt;}
.x5_c00094{left:309.120000pt;}
.x17_c00094{left:310.400000pt;}
.x49_c00094{left:318.720000pt;}
.x24_c00094{left:320.000000pt;}
.x56_c00094{left:328.320000pt;}
.xf_c00094{left:329.600000pt;}
.x4e_c00094{left:337.280000pt;}
.x2f_c00094{left:339.200000pt;}
.x38_c00094{left:348.160000pt;}
.x25_c00094{left:349.440000pt;}
.x3f_c00094{left:357.760000pt;}
.x36_c00094{left:366.080000pt;}
.x6_c00094{left:368.640000pt;}
.x10_c00094{left:376.960000pt;}
.x4f_c00094{left:395.520000pt;}
.x2a_c00094{left:396.800000pt;}
.x46_c00094{left:405.120000pt;}
.x5c_c00094{left:408.960000pt;}
.x39_c00094{left:416.000000pt;}
.x30_c00094{left:424.960000pt;}
.x4a_c00094{left:433.920000pt;}
.x18_c00094{left:435.200000pt;}
.x53_c00094{left:443.520000pt;}
.x7_c00094{left:444.800000pt;}
.x19_c00094{left:454.400000pt;}
.x47_c00094{left:462.720000pt;}
.x11_c00094{left:464.000000pt;}
.x40_c00094{left:472.320000pt;}
.x8_c00094{left:474.240000pt;}
.x37_c00094{left:482.560000pt;}
.x1d_c00094{left:483.840000pt;}
.x3d_c00094{left:492.160000pt;}
.x9_c00094{left:503.040000pt;}
.x54_c00094{left:510.720000pt;}
.x43_c00094{left:512.000000pt;}
.x5d_c00094{left:514.560000pt;}
.x1e_c00094{left:520.960000pt;}
.x3a_c00094{left:531.200000pt;}
.x1a_c00094{left:541.440000pt;}
.x31_c00094{left:551.040000pt;}
.x4b_c00094{left:559.360000pt;}
.xa_c00094{left:560.640000pt;}
.x26_c00094{left:563.200000pt;}
.x12_c00094{left:569.600000pt;}
.x32_c00094{left:579.840000pt;}
.x5e_c00094{left:582.400000pt;}
.xb_c00094{left:589.440000pt;}
.x1f_c00094{left:599.040000pt;}
.x13_c00094{left:608.640000pt;}
.x4c_c00094{left:609.920000pt;}
.x33_c00094{left:618.240000pt;}
.x5f_c00094{left:622.080000pt;}
.x1b_c00094{left:628.480000pt;}
.x55_c00094{left:637.440000pt;}
.x14_c00094{left:657.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3b430aee8a8975b06f328c1a.woff2')format("woff");}.ff1_c00095{font-family:ff1_c00095;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3d_c00095{transform:matrix(0.190875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190875,0.000000,0.000000,0.250000,0,0);}
.m35_c00095{transform:matrix(0.216200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216200,0.000000,0.000000,0.250000,0,0);}
.m56_c00095{transform:matrix(0.220300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220300,0.000000,0.000000,0.250000,0,0);}
.m55_c00095{transform:matrix(0.227900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227900,0.000000,0.000000,0.250000,0,0);}
.m3b_c00095{transform:matrix(0.246625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246625,0.000000,0.000000,0.250000,0,0);}
.m37_c00095{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.ma_c00095{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);}
.m40_c00095{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);}
.m36_c00095{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00095{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m51_c00095{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00095{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00095{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m52_c00095{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m19_c00095{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00095{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m0_c00095{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m41_c00095{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m12_c00095{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00095{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);}
.m28_c00095{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m22_c00095{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);}
.m23_c00095{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m39_c00095{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m9_c00095{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);}
.m3c_c00095{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00095{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);}
.m53_c00095{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m6_c00095{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);}
.m4d_c00095{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);}
.m1e_c00095{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);}
.m44_c00095{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m10_c00095{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);}
.m38_c00095{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00095{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.me_c00095{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);}
.m4f_c00095{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);}
.m2a_c00095{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00095{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m5_c00095{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);}
.m59_c00095{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m50_c00095{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m31_c00095{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);}
.m17_c00095{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m2_c00095{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.mb_c00095{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m21_c00095{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m48_c00095{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);}
.m1a_c00095{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00095{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m34_c00095{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m11_c00095{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m42_c00095{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);}
.m32_c00095{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m45_c00095{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00095{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m24_c00095{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);}
.m27_c00095{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m1_c00095{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m46_c00095{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);}
.mf_c00095{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m8_c00095{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m4_c00095{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00095{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);}
.m58_c00095{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);}
.md_c00095{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);}
.m18_c00095{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00095{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00095{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.mc_c00095{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m47_c00095{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);}
.m3_c00095{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m29_c00095{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m49_c00095{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00095{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);}
.m14_c00095{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);}
.m26_c00095{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);}
.m30_c00095{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m20_c00095{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00095{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m7_c00095{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00095{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m25_c00095{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);}
.m15_c00095{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m43_c00095{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);}
.m1c_c00095{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m33_c00095{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m16_c00095{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m57_c00095{transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);}
.m54_c00095{transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00095{transform:matrix(1.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.502500,0.000000,0.000000,0.250000,0,0);}
.v1_c00095{vertical-align:-2.880000px;}
.v0_c00095{vertical-align:0.000000px;}
.v2_c00095{vertical-align:2.880000px;}
.ls0_c00095{letter-spacing:0.000000px;}
.sc__c00095{text-shadow:none;}
.sc0_c00095{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00095{-webkit-text-stroke:0px transparent;}
.sc0_c00095{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00095{word-spacing:-0.723360px;}
.ws2_c00095{word-spacing:0.000000px;}
.ws0_c00095{word-spacing:1.408800px;}
.fc0_c00095{color:transparent;}
.fsd_c00095{font-size:23.040000px;}
.fs7_c00095{font-size:34.560000px;}
.fs3_c00095{font-size:37.440000px;}
.fsa_c00095{font-size:43.200000px;}
.fs8_c00095{font-size:46.080000px;}
.fs5_c00095{font-size:48.960000px;}
.fs2_c00095{font-size:51.840000px;}
.fs4_c00095{font-size:54.720000px;}
.fs6_c00095{font-size:57.600000px;}
.fs1_c00095{font-size:60.480000px;}
.fsc_c00095{font-size:63.360000px;}
.fs9_c00095{font-size:66.240000px;}
.fs0_c00095{font-size:69.120000px;}
.fsb_c00095{font-size:72.000000px;}
.fse_c00095{font-size:77.760000px;}
.fs10_c00095{font-size:83.520000px;}
.fs11_c00095{font-size:86.400000px;}
.fsf_c00095{font-size:95.040000px;}
.y0_c00095{bottom:0.000000px;}
.y74_c00095{bottom:57.600000px;}
.y73_c00095{bottom:61.200000px;}
.y72_c00095{bottom:61.920000px;}
.y70_c00095{bottom:64.080000px;}
.y71_c00095{bottom:64.800000px;}
.y6f_c00095{bottom:66.960000px;}
.y6c_c00095{bottom:102.960000px;}
.y6b_c00095{bottom:104.400000px;}
.y6e_c00095{bottom:105.120000px;}
.y6d_c00095{bottom:105.840000px;}
.y67_c00095{bottom:106.560000px;}
.y6a_c00095{bottom:107.280000px;}
.y69_c00095{bottom:108.000000px;}
.y68_c00095{bottom:108.720000px;}
.y63_c00095{bottom:158.400000px;}
.y65_c00095{bottom:159.120000px;}
.y62_c00095{bottom:159.840000px;}
.y61_c00095{bottom:162.000000px;}
.y60_c00095{bottom:162.720000px;}
.y66_c00095{bottom:164.160000px;}
.y5f_c00095{bottom:200.880000px;}
.y5e_c00095{bottom:201.600000px;}
.y5d_c00095{bottom:203.040000px;}
.y5c_c00095{bottom:205.920000px;}
.y64_c00095{bottom:206.640000px;}
.y5a_c00095{bottom:244.080000px;}
.y57_c00095{bottom:244.800000px;}
.y5b_c00095{bottom:245.520000px;}
.y59_c00095{bottom:246.960000px;}
.y58_c00095{bottom:247.680000px;}
.y55_c00095{bottom:285.120000px;}
.y56_c00095{bottom:285.840000px;}
.y54_c00095{bottom:286.560000px;}
.y53_c00095{bottom:290.160000px;}
.y52_c00095{bottom:290.880000px;}
.y51_c00095{bottom:341.280000px;}
.y4e_c00095{bottom:342.000000px;}
.y50_c00095{bottom:342.720000px;}
.y4f_c00095{bottom:344.160000px;}
.y4d_c00095{bottom:381.600000px;}
.y4c_c00095{bottom:382.320000px;}
.y4a_c00095{bottom:383.040000px;}
.y49_c00095{bottom:384.480000px;}
.y4b_c00095{bottom:385.200000px;}
.y48_c00095{bottom:385.920000px;}
.y47_c00095{bottom:386.640000px;}
.y44_c00095{bottom:424.080000px;}
.y46_c00095{bottom:424.800000px;}
.y45_c00095{bottom:425.520000px;}
.y43_c00095{bottom:427.680000px;}
.y42_c00095{bottom:428.400000px;}
.y41_c00095{bottom:429.120000px;}
.y40_c00095{bottom:429.840000px;}
.y3f_c00095{bottom:478.800000px;}
.y3e_c00095{bottom:479.520000px;}
.y3c_c00095{bottom:481.680000px;}
.y3d_c00095{bottom:482.400000px;}
.y3b_c00095{bottom:522.000000px;}
.y38_c00095{bottom:522.720000px;}
.y39_c00095{bottom:524.160000px;}
.y3a_c00095{bottom:525.600000px;}
.y34_c00095{bottom:564.480000px;}
.y36_c00095{bottom:565.200000px;}
.y35_c00095{bottom:565.920000px;}
.y33_c00095{bottom:567.360000px;}
.y32_c00095{bottom:568.080000px;}
.y37_c00095{bottom:570.240000px;}
.y31_c00095{bottom:607.680000px;}
.y30_c00095{bottom:609.840000px;}
.y2f_c00095{bottom:610.560000px;}
.y2e_c00095{bottom:650.160000px;}
.y2c_c00095{bottom:650.880000px;}
.y2b_c00095{bottom:653.040000px;}
.y2d_c00095{bottom:653.760000px;}
.y28_c00095{bottom:703.440000px;}
.y2a_c00095{bottom:704.880000px;}
.y27_c00095{bottom:705.600000px;}
.y29_c00095{bottom:706.320000px;}
.y22_c00095{bottom:745.200000px;}
.y24_c00095{bottom:745.920000px;}
.y21_c00095{bottom:748.080000px;}
.y23_c00095{bottom:748.800000px;}
.y25_c00095{bottom:749.520000px;}
.y26_c00095{bottom:750.240000px;}
.y1d_c00095{bottom:787.680000px;}
.y1c_c00095{bottom:789.840000px;}
.y1e_c00095{bottom:791.280000px;}
.y1f_c00095{bottom:792.000000px;}
.y20_c00095{bottom:793.440000px;}
.y18_c00095{bottom:830.160000px;}
.y19_c00095{bottom:831.600000px;}
.y1b_c00095{bottom:832.320000px;}
.y17_c00095{bottom:833.040000px;}
.y1a_c00095{bottom:835.200000px;}
.y13_c00095{bottom:876.240000px;}
.y14_c00095{bottom:876.960000px;}
.y15_c00095{bottom:878.400000px;}
.y16_c00095{bottom:879.120000px;}
.y10_c00095{bottom:928.080000px;}
.y12_c00095{bottom:928.800000px;}
.y11_c00095{bottom:929.520000px;}
.ya_c00095{bottom:969.840000px;}
.y9_c00095{bottom:971.280000px;}
.yd_c00095{bottom:972.000000px;}
.yb_c00095{bottom:972.720000px;}
.yc_c00095{bottom:973.440000px;}
.ye_c00095{bottom:974.880000px;}
.yf_c00095{bottom:975.600000px;}
.y2_c00095{bottom:1013.760000px;}
.y3_c00095{bottom:1015.200000px;}
.y4_c00095{bottom:1015.920000px;}
.y5_c00095{bottom:1016.640000px;}
.y6_c00095{bottom:1017.360000px;}
.y7_c00095{bottom:1018.080000px;}
.y8_c00095{bottom:1018.800000px;}
.y1_c00095{bottom:1082.160000px;}
.hf_c00095{height:20.733750px;}
.h9_c00095{height:31.100625px;}
.h5_c00095{height:33.692344px;}
.hc_c00095{height:38.875781px;}
.ha_c00095{height:41.467500px;}
.h7_c00095{height:44.059219px;}
.h4_c00095{height:46.650937px;}
.h6_c00095{height:49.242656px;}
.h8_c00095{height:51.834375px;}
.h3_c00095{height:54.426094px;}
.he_c00095{height:57.017812px;}
.hb_c00095{height:59.609531px;}
.h2_c00095{height:62.201250px;}
.hd_c00095{height:64.792969px;}
.h10_c00095{height:69.976406px;}
.h12_c00095{height:75.159844px;}
.h13_c00095{height:77.751563px;}
.h11_c00095{height:85.526719px;}
.h0_c00095{height:1152.720000px;}
.h1_c00095{height:1152.750000px;}
.w1_c00095{width:808.500000px;}
.w0_c00095{width:808.560000px;}
.x0_c00095{left:0.000000px;}
.x34_c00095{left:83.520000px;}
.x2_c00095{left:84.960000px;}
.x2a_c00095{left:116.640000px;}
.x17_c00095{left:126.720000px;}
.xf_c00095{left:138.240000px;}
.x28_c00095{left:149.040000px;}
.x1e_c00095{left:159.840000px;}
.x10_c00095{left:181.440000px;}
.x3_c00095{left:190.800000px;}
.x48_c00095{left:192.240000px;}
.x41_c00095{left:201.600000px;}
.x18_c00095{left:203.040000px;}
.x35_c00095{left:204.480000px;}
.x2b_c00095{left:212.400000px;}
.x3d_c00095{left:223.200000px;}
.x19_c00095{left:234.720000px;}
.x23_c00095{left:245.520000px;}
.x42_c00095{left:254.880000px;}
.x4_c00095{left:256.320000px;}
.x2c_c00095{left:266.400000px;}
.x46_c00095{left:276.480000px;}
.x36_c00095{left:278.640000px;}
.x29_c00095{left:287.280000px;}
.x5_c00095{left:288.720000px;}
.x37_c00095{left:290.160000px;}
.x3c_c00095{left:291.600000px;}
.x2d_c00095{left:298.800000px;}
.x2e_c00095{left:308.880000px;}
.x11_c00095{left:320.400000px;}
.x6_c00095{left:321.840000px;}
.x3e_c00095{left:331.200000px;}
.x44_c00095{left:341.280000px;}
.x1f_c00095{left:342.720000px;}
.x1a_c00095{left:352.800000px;}
.x47_c00095{left:354.240000px;}
.x3f_c00095{left:362.160000px;}
.x24_c00095{left:364.320000px;}
.x38_c00095{left:373.680000px;}
.x2f_c00095{left:384.480000px;}
.x7_c00095{left:385.920000px;}
.x25_c00095{left:396.720000px;}
.x39_c00095{left:406.080000px;}
.x8_c00095{left:418.320000px;}
.x30_c00095{left:428.400000px;}
.x12_c00095{left:432.000000px;}
.x26_c00095{left:439.920000px;}
.x45_c00095{left:449.280000px;}
.x9_c00095{left:450.720000px;}
.x20_c00095{left:460.800000px;}
.x43_c00095{left:471.600000px;}
.x3a_c00095{left:482.400000px;}
.x4c_c00095{left:492.480000px;}
.x49_c00095{left:503.280000px;}
.xa_c00095{left:505.440000px;}
.x31_c00095{left:514.800000px;}
.x3b_c00095{left:516.240000px;}
.x1b_c00095{left:527.040000px;}
.xb_c00095{left:537.840000px;}
.x4a_c00095{left:547.920000px;}
.x21_c00095{left:549.360000px;}
.xc_c00095{left:558.000000px;}
.x32_c00095{left:568.800000px;}
.x13_c00095{left:570.240000px;}
.x27_c00095{left:581.040000px;}
.x14_c00095{left:591.840000px;}
.x33_c00095{left:602.640000px;}
.xd_c00095{left:613.440000px;}
.x15_c00095{left:624.240000px;}
.x4d_c00095{left:634.320000px;}
.x1c_c00095{left:645.840000px;}
.x16_c00095{left:656.640000px;}
.x40_c00095{left:667.440000px;}
.x1d_c00095{left:689.040000px;}
.x22_c00095{left:700.560000px;}
.xe_c00095{left:702.000000px;}
.x4b_c00095{left:711.360000px;}
.x1_c00095{left:717.120000px;}
@media print{
.v1_c00095{vertical-align:-2.560000pt;}
.v0_c00095{vertical-align:0.000000pt;}
.v2_c00095{vertical-align:2.560000pt;}
.ls0_c00095{letter-spacing:0.000000pt;}
.ws1_c00095{word-spacing:-0.642987pt;}
.ws2_c00095{word-spacing:0.000000pt;}
.ws0_c00095{word-spacing:1.252267pt;}
.fsd_c00095{font-size:20.480000pt;}
.fs7_c00095{font-size:30.720000pt;}
.fs3_c00095{font-size:33.280000pt;}
.fsa_c00095{font-size:38.400000pt;}
.fs8_c00095{font-size:40.960000pt;}
.fs5_c00095{font-size:43.520000pt;}
.fs2_c00095{font-size:46.080000pt;}
.fs4_c00095{font-size:48.640000pt;}
.fs6_c00095{font-size:51.200000pt;}
.fs1_c00095{font-size:53.760000pt;}
.fsc_c00095{font-size:56.320000pt;}
.fs9_c00095{font-size:58.880000pt;}
.fs0_c00095{font-size:61.440000pt;}
.fsb_c00095{font-size:64.000000pt;}
.fse_c00095{font-size:69.120000pt;}
.fs10_c00095{font-size:74.240000pt;}
.fs11_c00095{font-size:76.800000pt;}
.fsf_c00095{font-size:84.480000pt;}
.y0_c00095{bottom:0.000000pt;}
.y74_c00095{bottom:51.200000pt;}
.y73_c00095{bottom:54.400000pt;}
.y72_c00095{bottom:55.040000pt;}
.y70_c00095{bottom:56.960000pt;}
.y71_c00095{bottom:57.600000pt;}
.y6f_c00095{bottom:59.520000pt;}
.y6c_c00095{bottom:91.520000pt;}
.y6b_c00095{bottom:92.800000pt;}
.y6e_c00095{bottom:93.440000pt;}
.y6d_c00095{bottom:94.080000pt;}
.y67_c00095{bottom:94.720000pt;}
.y6a_c00095{bottom:95.360000pt;}
.y69_c00095{bottom:96.000000pt;}
.y68_c00095{bottom:96.640000pt;}
.y63_c00095{bottom:140.800000pt;}
.y65_c00095{bottom:141.440000pt;}
.y62_c00095{bottom:142.080000pt;}
.y61_c00095{bottom:144.000000pt;}
.y60_c00095{bottom:144.640000pt;}
.y66_c00095{bottom:145.920000pt;}
.y5f_c00095{bottom:178.560000pt;}
.y5e_c00095{bottom:179.200000pt;}
.y5d_c00095{bottom:180.480000pt;}
.y5c_c00095{bottom:183.040000pt;}
.y64_c00095{bottom:183.680000pt;}
.y5a_c00095{bottom:216.960000pt;}
.y57_c00095{bottom:217.600000pt;}
.y5b_c00095{bottom:218.240000pt;}
.y59_c00095{bottom:219.520000pt;}
.y58_c00095{bottom:220.160000pt;}
.y55_c00095{bottom:253.440000pt;}
.y56_c00095{bottom:254.080000pt;}
.y54_c00095{bottom:254.720000pt;}
.y53_c00095{bottom:257.920000pt;}
.y52_c00095{bottom:258.560000pt;}
.y51_c00095{bottom:303.360000pt;}
.y4e_c00095{bottom:304.000000pt;}
.y50_c00095{bottom:304.640000pt;}
.y4f_c00095{bottom:305.920000pt;}
.y4d_c00095{bottom:339.200000pt;}
.y4c_c00095{bottom:339.840000pt;}
.y4a_c00095{bottom:340.480000pt;}
.y49_c00095{bottom:341.760000pt;}
.y4b_c00095{bottom:342.400000pt;}
.y48_c00095{bottom:343.040000pt;}
.y47_c00095{bottom:343.680000pt;}
.y44_c00095{bottom:376.960000pt;}
.y46_c00095{bottom:377.600000pt;}
.y45_c00095{bottom:378.240000pt;}
.y43_c00095{bottom:380.160000pt;}
.y42_c00095{bottom:380.800000pt;}
.y41_c00095{bottom:381.440000pt;}
.y40_c00095{bottom:382.080000pt;}
.y3f_c00095{bottom:425.600000pt;}
.y3e_c00095{bottom:426.240000pt;}
.y3c_c00095{bottom:428.160000pt;}
.y3d_c00095{bottom:428.800000pt;}
.y3b_c00095{bottom:464.000000pt;}
.y38_c00095{bottom:464.640000pt;}
.y39_c00095{bottom:465.920000pt;}
.y3a_c00095{bottom:467.200000pt;}
.y34_c00095{bottom:501.760000pt;}
.y36_c00095{bottom:502.400000pt;}
.y35_c00095{bottom:503.040000pt;}
.y33_c00095{bottom:504.320000pt;}
.y32_c00095{bottom:504.960000pt;}
.y37_c00095{bottom:506.880000pt;}
.y31_c00095{bottom:540.160000pt;}
.y30_c00095{bottom:542.080000pt;}
.y2f_c00095{bottom:542.720000pt;}
.y2e_c00095{bottom:577.920000pt;}
.y2c_c00095{bottom:578.560000pt;}
.y2b_c00095{bottom:580.480000pt;}
.y2d_c00095{bottom:581.120000pt;}
.y28_c00095{bottom:625.280000pt;}
.y2a_c00095{bottom:626.560000pt;}
.y27_c00095{bottom:627.200000pt;}
.y29_c00095{bottom:627.840000pt;}
.y22_c00095{bottom:662.400000pt;}
.y24_c00095{bottom:663.040000pt;}
.y21_c00095{bottom:664.960000pt;}
.y23_c00095{bottom:665.600000pt;}
.y25_c00095{bottom:666.240000pt;}
.y26_c00095{bottom:666.880000pt;}
.y1d_c00095{bottom:700.160000pt;}
.y1c_c00095{bottom:702.080000pt;}
.y1e_c00095{bottom:703.360000pt;}
.y1f_c00095{bottom:704.000000pt;}
.y20_c00095{bottom:705.280000pt;}
.y18_c00095{bottom:737.920000pt;}
.y19_c00095{bottom:739.200000pt;}
.y1b_c00095{bottom:739.840000pt;}
.y17_c00095{bottom:740.480000pt;}
.y1a_c00095{bottom:742.400000pt;}
.y13_c00095{bottom:778.880000pt;}
.y14_c00095{bottom:779.520000pt;}
.y15_c00095{bottom:780.800000pt;}
.y16_c00095{bottom:781.440000pt;}
.y10_c00095{bottom:824.960000pt;}
.y12_c00095{bottom:825.600000pt;}
.y11_c00095{bottom:826.240000pt;}
.ya_c00095{bottom:862.080000pt;}
.y9_c00095{bottom:863.360000pt;}
.yd_c00095{bottom:864.000000pt;}
.yb_c00095{bottom:864.640000pt;}
.yc_c00095{bottom:865.280000pt;}
.ye_c00095{bottom:866.560000pt;}
.yf_c00095{bottom:867.200000pt;}
.y2_c00095{bottom:901.120000pt;}
.y3_c00095{bottom:902.400000pt;}
.y4_c00095{bottom:903.040000pt;}
.y5_c00095{bottom:903.680000pt;}
.y6_c00095{bottom:904.320000pt;}
.y7_c00095{bottom:904.960000pt;}
.y8_c00095{bottom:905.600000pt;}
.y1_c00095{bottom:961.920000pt;}
.hf_c00095{height:18.430000pt;}
.h9_c00095{height:27.645000pt;}
.h5_c00095{height:29.948750pt;}
.hc_c00095{height:34.556250pt;}
.ha_c00095{height:36.860000pt;}
.h7_c00095{height:39.163750pt;}
.h4_c00095{height:41.467500pt;}
.h6_c00095{height:43.771250pt;}
.h8_c00095{height:46.075000pt;}
.h3_c00095{height:48.378750pt;}
.he_c00095{height:50.682500pt;}
.hb_c00095{height:52.986250pt;}
.h2_c00095{height:55.290000pt;}
.hd_c00095{height:57.593750pt;}
.h10_c00095{height:62.201250pt;}
.h12_c00095{height:66.808750pt;}
.h13_c00095{height:69.112500pt;}
.h11_c00095{height:76.023750pt;}
.h0_c00095{height:1024.640000pt;}
.h1_c00095{height:1024.666667pt;}
.w1_c00095{width:718.666667pt;}
.w0_c00095{width:718.720000pt;}
.x0_c00095{left:0.000000pt;}
.x34_c00095{left:74.240000pt;}
.x2_c00095{left:75.520000pt;}
.x2a_c00095{left:103.680000pt;}
.x17_c00095{left:112.640000pt;}
.xf_c00095{left:122.880000pt;}
.x28_c00095{left:132.480000pt;}
.x1e_c00095{left:142.080000pt;}
.x10_c00095{left:161.280000pt;}
.x3_c00095{left:169.600000pt;}
.x48_c00095{left:170.880000pt;}
.x41_c00095{left:179.200000pt;}
.x18_c00095{left:180.480000pt;}
.x35_c00095{left:181.760000pt;}
.x2b_c00095{left:188.800000pt;}
.x3d_c00095{left:198.400000pt;}
.x19_c00095{left:208.640000pt;}
.x23_c00095{left:218.240000pt;}
.x42_c00095{left:226.560000pt;}
.x4_c00095{left:227.840000pt;}
.x2c_c00095{left:236.800000pt;}
.x46_c00095{left:245.760000pt;}
.x36_c00095{left:247.680000pt;}
.x29_c00095{left:255.360000pt;}
.x5_c00095{left:256.640000pt;}
.x37_c00095{left:257.920000pt;}
.x3c_c00095{left:259.200000pt;}
.x2d_c00095{left:265.600000pt;}
.x2e_c00095{left:274.560000pt;}
.x11_c00095{left:284.800000pt;}
.x6_c00095{left:286.080000pt;}
.x3e_c00095{left:294.400000pt;}
.x44_c00095{left:303.360000pt;}
.x1f_c00095{left:304.640000pt;}
.x1a_c00095{left:313.600000pt;}
.x47_c00095{left:314.880000pt;}
.x3f_c00095{left:321.920000pt;}
.x24_c00095{left:323.840000pt;}
.x38_c00095{left:332.160000pt;}
.x2f_c00095{left:341.760000pt;}
.x7_c00095{left:343.040000pt;}
.x25_c00095{left:352.640000pt;}
.x39_c00095{left:360.960000pt;}
.x8_c00095{left:371.840000pt;}
.x30_c00095{left:380.800000pt;}
.x12_c00095{left:384.000000pt;}
.x26_c00095{left:391.040000pt;}
.x45_c00095{left:399.360000pt;}
.x9_c00095{left:400.640000pt;}
.x20_c00095{left:409.600000pt;}
.x43_c00095{left:419.200000pt;}
.x3a_c00095{left:428.800000pt;}
.x4c_c00095{left:437.760000pt;}
.x49_c00095{left:447.360000pt;}
.xa_c00095{left:449.280000pt;}
.x31_c00095{left:457.600000pt;}
.x3b_c00095{left:458.880000pt;}
.x1b_c00095{left:468.480000pt;}
.xb_c00095{left:478.080000pt;}
.x4a_c00095{left:487.040000pt;}
.x21_c00095{left:488.320000pt;}
.xc_c00095{left:496.000000pt;}
.x32_c00095{left:505.600000pt;}
.x13_c00095{left:506.880000pt;}
.x27_c00095{left:516.480000pt;}
.x14_c00095{left:526.080000pt;}
.x33_c00095{left:535.680000pt;}
.xd_c00095{left:545.280000pt;}
.x15_c00095{left:554.880000pt;}
.x4d_c00095{left:563.840000pt;}
.x1c_c00095{left:574.080000pt;}
.x16_c00095{left:583.680000pt;}
.x40_c00095{left:593.280000pt;}
.x1d_c00095{left:612.480000pt;}
.x22_c00095{left:622.720000pt;}
.xe_c00095{left:624.000000pt;}
.x4b_c00095{left:632.320000pt;}
.x1_c00095{left:637.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9fd6355157466be663d4709b.woff2')format("woff");}.ff1_c00096{font-family:ff1_c00096;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4d_c00096{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m13_c00096{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_c00096{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m0_c00096{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m17_c00096{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);}
.m30_c00096{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);}
.m44_c00096{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00096{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00096{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m5_c00096{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00096{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00096{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.ma_c00096{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m8_c00096{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m48_c00096{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m40_c00096{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m50_c00096{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m45_c00096{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m11_c00096{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);}
.m3f_c00096{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);}
.m33_c00096{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m46_c00096{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m3_c00096{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m24_c00096{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_c00096{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);}
.me_c00096{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m19_c00096{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.mb_c00096{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);}
.m43_c00096{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m16_c00096{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);}
.m4b_c00096{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);}
.m1c_c00096{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00096{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);}
.m2c_c00096{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m57_c00096{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);}
.m25_c00096{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);}
.m52_c00096{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.mc_c00096{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00096{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);}
.m3c_c00096{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00096{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);}
.m4_c00096{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m15_c00096{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);}
.m31_c00096{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);}
.m2d_c00096{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m6_c00096{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m26_c00096{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m37_c00096{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00096{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m12_c00096{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.mf_c00096{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);}
.m27_c00096{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m1_c00096{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m36_c00096{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m23_c00096{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m34_c00096{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);}
.m38_c00096{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00096{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.md_c00096{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);}
.m3e_c00096{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00096{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00096{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00096{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);}
.m35_c00096{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);}
.m21_c00096{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m7_c00096{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m47_c00096{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00096{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);}
.m22_c00096{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m58_c00096{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m53_c00096{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m9_c00096{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);}
.m1a_c00096{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m49_c00096{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m18_c00096{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m54_c00096{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m39_c00096{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m32_c00096{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);}
.m20_c00096{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);}
.m41_c00096{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00096{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m59_c00096{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m56_c00096{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00096{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m29_c00096{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00096{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m42_c00096{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);}
.m2_c00096{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);}
.m2f_c00096{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m14_c00096{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);}
.m51_c00096{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m55_c00096{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00096{transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);}
.v0_c00096{vertical-align:0.000000px;}
.ls0_c00096{letter-spacing:0.000000px;}
.sc__c00096{text-shadow:none;}
.sc0_c00096{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00096{-webkit-text-stroke:0px transparent;}
.sc0_c00096{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00096{word-spacing:-0.798480px;}
.ws1_c00096{word-spacing:0.000000px;}
.fc0_c00096{color:transparent;}
.fs2_c00096{font-size:34.560000px;}
.fs9_c00096{font-size:37.440000px;}
.fse_c00096{font-size:40.320000px;}
.fs1_c00096{font-size:43.200000px;}
.fsa_c00096{font-size:46.080000px;}
.fs5_c00096{font-size:48.960000px;}
.fs3_c00096{font-size:51.840000px;}
.fs8_c00096{font-size:54.720000px;}
.fs7_c00096{font-size:57.600000px;}
.fs4_c00096{font-size:60.480000px;}
.fs6_c00096{font-size:63.360000px;}
.fsb_c00096{font-size:66.240000px;}
.fs0_c00096{font-size:69.120000px;}
.fsc_c00096{font-size:72.000000px;}
.fsd_c00096{font-size:77.760000px;}
.y0_c00096{bottom:0.000000px;}
.y75_c00096{bottom:84.240000px;}
.y74_c00096{bottom:84.960000px;}
.y73_c00096{bottom:85.680000px;}
.y72_c00096{bottom:86.400000px;}
.y71_c00096{bottom:87.120000px;}
.y70_c00096{bottom:138.240000px;}
.y6f_c00096{bottom:177.120000px;}
.y6e_c00096{bottom:177.840000px;}
.y6d_c00096{bottom:178.560000px;}
.y6b_c00096{bottom:180.000000px;}
.y6c_c00096{bottom:181.440000px;}
.y6a_c00096{bottom:182.880000px;}
.y69_c00096{bottom:183.600000px;}
.y65_c00096{bottom:221.760000px;}
.y67_c00096{bottom:223.200000px;}
.y68_c00096{bottom:223.920000px;}
.y66_c00096{bottom:224.640000px;}
.y64_c00096{bottom:264.240000px;}
.y61_c00096{bottom:264.960000px;}
.y63_c00096{bottom:266.400000px;}
.y62_c00096{bottom:267.120000px;}
.y60_c00096{bottom:267.840000px;}
.y5e_c00096{bottom:307.440000px;}
.y5c_c00096{bottom:308.160000px;}
.y5f_c00096{bottom:308.880000px;}
.y5d_c00096{bottom:309.600000px;}
.y5b_c00096{bottom:310.320000px;}
.y5a_c00096{bottom:311.040000px;}
.y59_c00096{bottom:349.200000px;}
.y57_c00096{bottom:349.920000px;}
.y55_c00096{bottom:350.640000px;}
.y58_c00096{bottom:352.080000px;}
.y56_c00096{bottom:352.800000px;}
.y54_c00096{bottom:353.520000px;}
.y51_c00096{bottom:393.120000px;}
.y53_c00096{bottom:394.560000px;}
.y52_c00096{bottom:395.280000px;}
.y50_c00096{bottom:396.000000px;}
.y4f_c00096{bottom:445.680000px;}
.y4e_c00096{bottom:446.400000px;}
.y4d_c00096{bottom:448.560000px;}
.y4c_c00096{bottom:449.280000px;}
.y4a_c00096{bottom:487.440000px;}
.y4b_c00096{bottom:488.160000px;}
.y49_c00096{bottom:490.320000px;}
.y48_c00096{bottom:491.040000px;}
.y47_c00096{bottom:491.760000px;}
.y45_c00096{bottom:531.360000px;}
.y46_c00096{bottom:533.520000px;}
.y44_c00096{bottom:534.240000px;}
.y42_c00096{bottom:573.120000px;}
.y43_c00096{bottom:573.840000px;}
.y41_c00096{bottom:575.280000px;}
.y3f_c00096{bottom:576.000000px;}
.y40_c00096{bottom:576.720000px;}
.y3b_c00096{bottom:616.320000px;}
.y3a_c00096{bottom:617.040000px;}
.y3e_c00096{bottom:617.760000px;}
.y3c_c00096{bottom:618.480000px;}
.y3d_c00096{bottom:619.200000px;}
.y39_c00096{bottom:619.920000px;}
.y35_c00096{bottom:658.080000px;}
.y36_c00096{bottom:658.800000px;}
.y38_c00096{bottom:659.520000px;}
.y34_c00096{bottom:660.960000px;}
.y33_c00096{bottom:661.680000px;}
.y37_c00096{bottom:662.400000px;}
.y30_c00096{bottom:701.280000px;}
.y31_c00096{bottom:702.000000px;}
.y2e_c00096{bottom:703.440000px;}
.y2f_c00096{bottom:704.160000px;}
.y32_c00096{bottom:704.880000px;}
.y29_c00096{bottom:743.040000px;}
.y2a_c00096{bottom:744.480000px;}
.y2d_c00096{bottom:745.200000px;}
.y2b_c00096{bottom:746.640000px;}
.y2c_c00096{bottom:747.360000px;}
.y24_c00096{bottom:786.240000px;}
.y26_c00096{bottom:786.960000px;}
.y25_c00096{bottom:787.680000px;}
.y22_c00096{bottom:788.400000px;}
.y23_c00096{bottom:789.120000px;}
.y28_c00096{bottom:789.840000px;}
.y27_c00096{bottom:790.560000px;}
.y1d_c00096{bottom:828.720000px;}
.y1f_c00096{bottom:829.440000px;}
.y20_c00096{bottom:830.160000px;}
.y1b_c00096{bottom:830.880000px;}
.y1c_c00096{bottom:831.600000px;}
.y1e_c00096{bottom:832.320000px;}
.y21_c00096{bottom:833.040000px;}
.y16_c00096{bottom:871.200000px;}
.y18_c00096{bottom:872.640000px;}
.y17_c00096{bottom:874.800000px;}
.y19_c00096{bottom:875.520000px;}
.y1a_c00096{bottom:876.240000px;}
.y14_c00096{bottom:914.400000px;}
.y15_c00096{bottom:915.120000px;}
.y10_c00096{bottom:915.840000px;}
.y12_c00096{bottom:916.560000px;}
.y11_c00096{bottom:917.280000px;}
.y13_c00096{bottom:918.000000px;}
.yf_c00096{bottom:928.800000px;}
.y9_c00096{bottom:956.880000px;}
.ya_c00096{bottom:957.600000px;}
.yc_c00096{bottom:958.320000px;}
.y8_c00096{bottom:959.760000px;}
.ye_c00096{bottom:960.480000px;}
.yb_c00096{bottom:961.200000px;}
.yd_c00096{bottom:961.920000px;}
.y2_c00096{bottom:1010.160000px;}
.y4_c00096{bottom:1010.880000px;}
.y7_c00096{bottom:1011.600000px;}
.y3_c00096{bottom:1013.040000px;}
.y5_c00096{bottom:1013.760000px;}
.y6_c00096{bottom:1015.200000px;}
.y1_c00096{bottom:1085.760000px;}
.h4_c00096{height:31.100625px;}
.hb_c00096{height:33.692344px;}
.h10_c00096{height:36.284062px;}
.h3_c00096{height:38.875781px;}
.hc_c00096{height:41.467500px;}
.h7_c00096{height:44.059219px;}
.h5_c00096{height:46.650937px;}
.ha_c00096{height:49.242656px;}
.h9_c00096{height:51.834375px;}
.h6_c00096{height:54.426094px;}
.h8_c00096{height:57.017812px;}
.hd_c00096{height:59.609531px;}
.h2_c00096{height:62.201250px;}
.he_c00096{height:64.792969px;}
.hf_c00096{height:69.976406px;}
.h0_c00096{height:1153.440000px;}
.h1_c00096{height:1153.500000px;}
.w0_c00096{width:810.720000px;}
.w1_c00096{width:810.750000px;}
.x0_c00096{left:0.000000px;}
.x27_c00096{left:86.400000px;}
.x2_c00096{left:87.840000px;}
.x22_c00096{left:118.800000px;}
.x17_c00096{left:129.600000px;}
.x3_c00096{left:131.040000px;}
.x1d_c00096{left:151.200000px;}
.x28_c00096{left:161.280000px;}
.x4_c00096{left:164.160000px;}
.x23_c00096{left:172.800000px;}
.x18_c00096{left:174.240000px;}
.x33_c00096{left:182.880000px;}
.x5e_c00096{left:192.960000px;}
.x3f_c00096{left:194.400000px;}
.xe_c00096{left:196.560000px;}
.x2d_c00096{left:203.760000px;}
.x36_c00096{left:205.200000px;}
.x24_c00096{left:216.000000px;}
.x49_c00096{left:225.360000px;}
.x3c_c00096{left:226.800000px;}
.x37_c00096{left:236.880000px;}
.xf_c00096{left:238.320000px;}
.x4e_c00096{left:246.960000px;}
.x5_c00096{left:248.400000px;}
.x25_c00096{left:259.200000px;}
.x19_c00096{left:270.720000px;}
.x38_c00096{left:280.800000px;}
.x56_c00096{left:289.440000px;}
.x10_c00096{left:291.600000px;}
.x40_c00096{left:302.400000px;}
.x48_c00096{left:303.840000px;}
.x45_c00096{left:312.480000px;}
.x53_c00096{left:321.120000px;}
.x6_c00096{left:323.280000px;}
.x57_c00096{left:332.640000px;}
.x4a_c00096{left:343.440000px;}
.x11_c00096{left:345.600000px;}
.x34_c00096{left:355.680000px;}
.x41_c00096{left:366.480000px;}
.x5f_c00096{left:375.840000px;}
.x12_c00096{left:379.440000px;}
.x5c_c00096{left:386.640000px;}
.x7_c00096{left:388.800000px;}
.x39_c00096{left:398.160000px;}
.x2e_c00096{left:399.600000px;}
.x58_c00096{left:408.240000px;}
.x1a_c00096{left:409.680000px;}
.x5d_c00096{left:419.040000px;}
.x54_c00096{left:420.480000px;}
.x29_c00096{left:431.280000px;}
.x4b_c00096{left:440.640000px;}
.x46_c00096{left:442.800000px;}
.x59_c00096{left:450.720000px;}
.x8_c00096{left:454.320000px;}
.x44_c00096{left:463.680000px;}
.x2a_c00096{left:473.760000px;}
.x1e_c00096{left:475.920000px;}
.x50_c00096{left:483.840000px;}
.x4c_c00096{left:485.280000px;}
.x9_c00096{left:486.720000px;}
.x4f_c00096{left:496.800000px;}
.x3a_c00096{left:505.440000px;}
.x13_c00096{left:507.600000px;}
.x2f_c00096{left:516.960000px;}
.x1f_c00096{left:518.400000px;}
.x51_c00096{left:527.760000px;}
.x3d_c00096{left:538.560000px;}
.x14_c00096{left:540.720000px;}
.xa_c00096{left:550.800000px;}
.x20_c00096{left:559.440000px;}
.x1b_c00096{left:561.600000px;}
.xb_c00096{left:572.400000px;}
.x5a_c00096{left:581.760000px;}
.x2b_c00096{left:583.200000px;}
.x55_c00096{left:591.840000px;}
.x35_c00096{left:594.000000px;}
.x60_c00096{left:602.640000px;}
.x26_c00096{left:604.080000px;}
.xc_c00096{left:606.960000px;}
.x47_c00096{left:613.440000px;}
.x5b_c00096{left:615.600000px;}
.x3e_c00096{left:624.960000px;}
.x30_c00096{left:626.400000px;}
.x52_c00096{left:635.040000px;}
.x15_c00096{left:637.200000px;}
.x2c_c00096{left:648.720000px;}
.x61_c00096{left:657.360000px;}
.x31_c00096{left:658.800000px;}
.x16_c00096{left:660.960000px;}
.x4d_c00096{left:668.880000px;}
.x42_c00096{left:670.320000px;}
.xd_c00096{left:671.760000px;}
.x21_c00096{left:680.400000px;}
.x1c_c00096{left:691.200000px;}
.x3b_c00096{left:702.000000px;}
.x1_c00096{left:708.480000px;}
.x32_c00096{left:714.240000px;}
.x43_c00096{left:735.120000px;}
@media print{
.v0_c00096{vertical-align:0.000000pt;}
.ls0_c00096{letter-spacing:0.000000pt;}
.ws0_c00096{word-spacing:-0.709760pt;}
.ws1_c00096{word-spacing:0.000000pt;}
.fs2_c00096{font-size:30.720000pt;}
.fs9_c00096{font-size:33.280000pt;}
.fse_c00096{font-size:35.840000pt;}
.fs1_c00096{font-size:38.400000pt;}
.fsa_c00096{font-size:40.960000pt;}
.fs5_c00096{font-size:43.520000pt;}
.fs3_c00096{font-size:46.080000pt;}
.fs8_c00096{font-size:48.640000pt;}
.fs7_c00096{font-size:51.200000pt;}
.fs4_c00096{font-size:53.760000pt;}
.fs6_c00096{font-size:56.320000pt;}
.fsb_c00096{font-size:58.880000pt;}
.fs0_c00096{font-size:61.440000pt;}
.fsc_c00096{font-size:64.000000pt;}
.fsd_c00096{font-size:69.120000pt;}
.y0_c00096{bottom:0.000000pt;}
.y75_c00096{bottom:74.880000pt;}
.y74_c00096{bottom:75.520000pt;}
.y73_c00096{bottom:76.160000pt;}
.y72_c00096{bottom:76.800000pt;}
.y71_c00096{bottom:77.440000pt;}
.y70_c00096{bottom:122.880000pt;}
.y6f_c00096{bottom:157.440000pt;}
.y6e_c00096{bottom:158.080000pt;}
.y6d_c00096{bottom:158.720000pt;}
.y6b_c00096{bottom:160.000000pt;}
.y6c_c00096{bottom:161.280000pt;}
.y6a_c00096{bottom:162.560000pt;}
.y69_c00096{bottom:163.200000pt;}
.y65_c00096{bottom:197.120000pt;}
.y67_c00096{bottom:198.400000pt;}
.y68_c00096{bottom:199.040000pt;}
.y66_c00096{bottom:199.680000pt;}
.y64_c00096{bottom:234.880000pt;}
.y61_c00096{bottom:235.520000pt;}
.y63_c00096{bottom:236.800000pt;}
.y62_c00096{bottom:237.440000pt;}
.y60_c00096{bottom:238.080000pt;}
.y5e_c00096{bottom:273.280000pt;}
.y5c_c00096{bottom:273.920000pt;}
.y5f_c00096{bottom:274.560000pt;}
.y5d_c00096{bottom:275.200000pt;}
.y5b_c00096{bottom:275.840000pt;}
.y5a_c00096{bottom:276.480000pt;}
.y59_c00096{bottom:310.400000pt;}
.y57_c00096{bottom:311.040000pt;}
.y55_c00096{bottom:311.680000pt;}
.y58_c00096{bottom:312.960000pt;}
.y56_c00096{bottom:313.600000pt;}
.y54_c00096{bottom:314.240000pt;}
.y51_c00096{bottom:349.440000pt;}
.y53_c00096{bottom:350.720000pt;}
.y52_c00096{bottom:351.360000pt;}
.y50_c00096{bottom:352.000000pt;}
.y4f_c00096{bottom:396.160000pt;}
.y4e_c00096{bottom:396.800000pt;}
.y4d_c00096{bottom:398.720000pt;}
.y4c_c00096{bottom:399.360000pt;}
.y4a_c00096{bottom:433.280000pt;}
.y4b_c00096{bottom:433.920000pt;}
.y49_c00096{bottom:435.840000pt;}
.y48_c00096{bottom:436.480000pt;}
.y47_c00096{bottom:437.120000pt;}
.y45_c00096{bottom:472.320000pt;}
.y46_c00096{bottom:474.240000pt;}
.y44_c00096{bottom:474.880000pt;}
.y42_c00096{bottom:509.440000pt;}
.y43_c00096{bottom:510.080000pt;}
.y41_c00096{bottom:511.360000pt;}
.y3f_c00096{bottom:512.000000pt;}
.y40_c00096{bottom:512.640000pt;}
.y3b_c00096{bottom:547.840000pt;}
.y3a_c00096{bottom:548.480000pt;}
.y3e_c00096{bottom:549.120000pt;}
.y3c_c00096{bottom:549.760000pt;}
.y3d_c00096{bottom:550.400000pt;}
.y39_c00096{bottom:551.040000pt;}
.y35_c00096{bottom:584.960000pt;}
.y36_c00096{bottom:585.600000pt;}
.y38_c00096{bottom:586.240000pt;}
.y34_c00096{bottom:587.520000pt;}
.y33_c00096{bottom:588.160000pt;}
.y37_c00096{bottom:588.800000pt;}
.y30_c00096{bottom:623.360000pt;}
.y31_c00096{bottom:624.000000pt;}
.y2e_c00096{bottom:625.280000pt;}
.y2f_c00096{bottom:625.920000pt;}
.y32_c00096{bottom:626.560000pt;}
.y29_c00096{bottom:660.480000pt;}
.y2a_c00096{bottom:661.760000pt;}
.y2d_c00096{bottom:662.400000pt;}
.y2b_c00096{bottom:663.680000pt;}
.y2c_c00096{bottom:664.320000pt;}
.y24_c00096{bottom:698.880000pt;}
.y26_c00096{bottom:699.520000pt;}
.y25_c00096{bottom:700.160000pt;}
.y22_c00096{bottom:700.800000pt;}
.y23_c00096{bottom:701.440000pt;}
.y28_c00096{bottom:702.080000pt;}
.y27_c00096{bottom:702.720000pt;}
.y1d_c00096{bottom:736.640000pt;}
.y1f_c00096{bottom:737.280000pt;}
.y20_c00096{bottom:737.920000pt;}
.y1b_c00096{bottom:738.560000pt;}
.y1c_c00096{bottom:739.200000pt;}
.y1e_c00096{bottom:739.840000pt;}
.y21_c00096{bottom:740.480000pt;}
.y16_c00096{bottom:774.400000pt;}
.y18_c00096{bottom:775.680000pt;}
.y17_c00096{bottom:777.600000pt;}
.y19_c00096{bottom:778.240000pt;}
.y1a_c00096{bottom:778.880000pt;}
.y14_c00096{bottom:812.800000pt;}
.y15_c00096{bottom:813.440000pt;}
.y10_c00096{bottom:814.080000pt;}
.y12_c00096{bottom:814.720000pt;}
.y11_c00096{bottom:815.360000pt;}
.y13_c00096{bottom:816.000000pt;}
.yf_c00096{bottom:825.600000pt;}
.y9_c00096{bottom:850.560000pt;}
.ya_c00096{bottom:851.200000pt;}
.yc_c00096{bottom:851.840000pt;}
.y8_c00096{bottom:853.120000pt;}
.ye_c00096{bottom:853.760000pt;}
.yb_c00096{bottom:854.400000pt;}
.yd_c00096{bottom:855.040000pt;}
.y2_c00096{bottom:897.920000pt;}
.y4_c00096{bottom:898.560000pt;}
.y7_c00096{bottom:899.200000pt;}
.y3_c00096{bottom:900.480000pt;}
.y5_c00096{bottom:901.120000pt;}
.y6_c00096{bottom:902.400000pt;}
.y1_c00096{bottom:965.120000pt;}
.h4_c00096{height:27.645000pt;}
.hb_c00096{height:29.948750pt;}
.h10_c00096{height:32.252500pt;}
.h3_c00096{height:34.556250pt;}
.hc_c00096{height:36.860000pt;}
.h7_c00096{height:39.163750pt;}
.h5_c00096{height:41.467500pt;}
.ha_c00096{height:43.771250pt;}
.h9_c00096{height:46.075000pt;}
.h6_c00096{height:48.378750pt;}
.h8_c00096{height:50.682500pt;}
.hd_c00096{height:52.986250pt;}
.h2_c00096{height:55.290000pt;}
.he_c00096{height:57.593750pt;}
.hf_c00096{height:62.201250pt;}
.h0_c00096{height:1025.280000pt;}
.h1_c00096{height:1025.333333pt;}
.w0_c00096{width:720.640000pt;}
.w1_c00096{width:720.666667pt;}
.x0_c00096{left:0.000000pt;}
.x27_c00096{left:76.800000pt;}
.x2_c00096{left:78.080000pt;}
.x22_c00096{left:105.600000pt;}
.x17_c00096{left:115.200000pt;}
.x3_c00096{left:116.480000pt;}
.x1d_c00096{left:134.400000pt;}
.x28_c00096{left:143.360000pt;}
.x4_c00096{left:145.920000pt;}
.x23_c00096{left:153.600000pt;}
.x18_c00096{left:154.880000pt;}
.x33_c00096{left:162.560000pt;}
.x5e_c00096{left:171.520000pt;}
.x3f_c00096{left:172.800000pt;}
.xe_c00096{left:174.720000pt;}
.x2d_c00096{left:181.120000pt;}
.x36_c00096{left:182.400000pt;}
.x24_c00096{left:192.000000pt;}
.x49_c00096{left:200.320000pt;}
.x3c_c00096{left:201.600000pt;}
.x37_c00096{left:210.560000pt;}
.xf_c00096{left:211.840000pt;}
.x4e_c00096{left:219.520000pt;}
.x5_c00096{left:220.800000pt;}
.x25_c00096{left:230.400000pt;}
.x19_c00096{left:240.640000pt;}
.x38_c00096{left:249.600000pt;}
.x56_c00096{left:257.280000pt;}
.x10_c00096{left:259.200000pt;}
.x40_c00096{left:268.800000pt;}
.x48_c00096{left:270.080000pt;}
.x45_c00096{left:277.760000pt;}
.x53_c00096{left:285.440000pt;}
.x6_c00096{left:287.360000pt;}
.x57_c00096{left:295.680000pt;}
.x4a_c00096{left:305.280000pt;}
.x11_c00096{left:307.200000pt;}
.x34_c00096{left:316.160000pt;}
.x41_c00096{left:325.760000pt;}
.x5f_c00096{left:334.080000pt;}
.x12_c00096{left:337.280000pt;}
.x5c_c00096{left:343.680000pt;}
.x7_c00096{left:345.600000pt;}
.x39_c00096{left:353.920000pt;}
.x2e_c00096{left:355.200000pt;}
.x58_c00096{left:362.880000pt;}
.x1a_c00096{left:364.160000pt;}
.x5d_c00096{left:372.480000pt;}
.x54_c00096{left:373.760000pt;}
.x29_c00096{left:383.360000pt;}
.x4b_c00096{left:391.680000pt;}
.x46_c00096{left:393.600000pt;}
.x59_c00096{left:400.640000pt;}
.x8_c00096{left:403.840000pt;}
.x44_c00096{left:412.160000pt;}
.x2a_c00096{left:421.120000pt;}
.x1e_c00096{left:423.040000pt;}
.x50_c00096{left:430.080000pt;}
.x4c_c00096{left:431.360000pt;}
.x9_c00096{left:432.640000pt;}
.x4f_c00096{left:441.600000pt;}
.x3a_c00096{left:449.280000pt;}
.x13_c00096{left:451.200000pt;}
.x2f_c00096{left:459.520000pt;}
.x1f_c00096{left:460.800000pt;}
.x51_c00096{left:469.120000pt;}
.x3d_c00096{left:478.720000pt;}
.x14_c00096{left:480.640000pt;}
.xa_c00096{left:489.600000pt;}
.x20_c00096{left:497.280000pt;}
.x1b_c00096{left:499.200000pt;}
.xb_c00096{left:508.800000pt;}
.x5a_c00096{left:517.120000pt;}
.x2b_c00096{left:518.400000pt;}
.x55_c00096{left:526.080000pt;}
.x35_c00096{left:528.000000pt;}
.x60_c00096{left:535.680000pt;}
.x26_c00096{left:536.960000pt;}
.xc_c00096{left:539.520000pt;}
.x47_c00096{left:545.280000pt;}
.x5b_c00096{left:547.200000pt;}
.x3e_c00096{left:555.520000pt;}
.x30_c00096{left:556.800000pt;}
.x52_c00096{left:564.480000pt;}
.x15_c00096{left:566.400000pt;}
.x2c_c00096{left:576.640000pt;}
.x61_c00096{left:584.320000pt;}
.x31_c00096{left:585.600000pt;}
.x16_c00096{left:587.520000pt;}
.x4d_c00096{left:594.560000pt;}
.x42_c00096{left:595.840000pt;}
.xd_c00096{left:597.120000pt;}
.x21_c00096{left:604.800000pt;}
.x1c_c00096{left:614.400000pt;}
.x3b_c00096{left:624.000000pt;}
.x1_c00096{left:629.760000pt;}
.x32_c00096{left:634.880000pt;}
.x43_c00096{left:653.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b206cb4661eab8145e252221.woff2')format("woff");}.ff1_c00097{font-family:ff1_c00097;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m60_c00097{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m36_c00097{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m46_c00097{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);}
.m51_c00097{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m32_c00097{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m52_c00097{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m23_c00097{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m24_c00097{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00097{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00097{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m19_c00097{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m0_c00097{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mf_c00097{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00097{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00097{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);}
.m27_c00097{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00097{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m17_c00097{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);}
.m2a_c00097{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m15_c00097{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00097{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);}
.m30_c00097{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m21_c00097{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_c00097{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m16_c00097{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);}
.m31_c00097{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.md_c00097{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);}
.m1a_c00097{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);}
.m45_c00097{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m20_c00097{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00097{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m22_c00097{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);}
.m14_c00097{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);}
.m26_c00097{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m12_c00097{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m13_c00097{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m50_c00097{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);}
.m28_c00097{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);}
.m48_c00097{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);}
.m33_c00097{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m43_c00097{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m2_c00097{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.mb_c00097{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);}
.m10_c00097{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00097{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);}
.m34_c00097{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m29_c00097{transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00097{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);}
.m4d_c00097{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m25_c00097{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.me_c00097{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m1_c00097{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m7_c00097{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);}
.m5c_c00097{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00097{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);}
.mc_c00097{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);}
.m49_c00097{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00097{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m5_c00097{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00097{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m40_c00097{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);}
.m37_c00097{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m56_c00097{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00097{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00097{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);}
.m4_c00097{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m39_c00097{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00097{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00097{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m9_c00097{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);}
.m3_c00097{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);}
.m5a_c00097{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m44_c00097{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.ma_c00097{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);}
.m3e_c00097{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m59_c00097{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m38_c00097{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);}
.m5f_c00097{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00097{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);}
.m58_c00097{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m8_c00097{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);}
.m42_c00097{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m54_c00097{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);}
.m41_c00097{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m47_c00097{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m18_c00097{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00097{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);}
.m4f_c00097{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00097{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);}
.m6_c00097{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m57_c00097{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00097{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m55_c00097{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00097{transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00097{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);}
.m35_c00097{transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);}
.m53_c00097{transform:matrix(0.685000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685000,0.000000,0.000000,0.250000,0,0);}
.v0_c00097{vertical-align:0.000000px;}
.v1_c00097{vertical-align:5.760000px;}
.ls0_c00097{letter-spacing:0.000000px;}
.sc__c00097{text-shadow:none;}
.sc0_c00097{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00097{-webkit-text-stroke:0px transparent;}
.sc0_c00097{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00097{word-spacing:-4.782000px;}
.ws1_c00097{word-spacing:0.000000px;}
.fc0_c00097{color:transparent;}
.fs5_c00097{font-size:34.560000px;}
.fs4_c00097{font-size:37.440000px;}
.fsa_c00097{font-size:40.320000px;}
.fs6_c00097{font-size:46.080000px;}
.fs1_c00097{font-size:48.960000px;}
.fs2_c00097{font-size:51.840000px;}
.fsb_c00097{font-size:54.720000px;}
.fsc_c00097{font-size:57.600000px;}
.fs3_c00097{font-size:60.480000px;}
.fs8_c00097{font-size:63.360000px;}
.fs7_c00097{font-size:66.240000px;}
.fs9_c00097{font-size:69.120000px;}
.fs0_c00097{font-size:72.000000px;}
.fsd_c00097{font-size:74.880000px;}
.y0_c00097{bottom:0.000000px;}
.y7b_c00097{bottom:61.920000px;}
.y7c_c00097{bottom:62.640000px;}
.y79_c00097{bottom:63.360000px;}
.y7d_c00097{bottom:64.800000px;}
.y77_c00097{bottom:65.520000px;}
.y7a_c00097{bottom:66.240000px;}
.y78_c00097{bottom:66.960000px;}
.y76_c00097{bottom:69.120000px;}
.y75_c00097{bottom:104.400000px;}
.y73_c00097{bottom:105.840000px;}
.y72_c00097{bottom:106.560000px;}
.y71_c00097{bottom:108.720000px;}
.y74_c00097{bottom:109.440000px;}
.y70_c00097{bottom:146.880000px;}
.y6f_c00097{bottom:149.040000px;}
.y6d_c00097{bottom:150.480000px;}
.y6c_c00097{bottom:151.200000px;}
.y6b_c00097{bottom:152.640000px;}
.y6e_c00097{bottom:153.360000px;}
.y6a_c00097{bottom:154.080000px;}
.y69_c00097{bottom:190.800000px;}
.y68_c00097{bottom:192.240000px;}
.y64_c00097{bottom:193.680000px;}
.y66_c00097{bottom:194.400000px;}
.y67_c00097{bottom:195.120000px;}
.y65_c00097{bottom:195.840000px;}
.y63_c00097{bottom:196.560000px;}
.y61_c00097{bottom:234.720000px;}
.y5e_c00097{bottom:235.440000px;}
.y5f_c00097{bottom:236.160000px;}
.y62_c00097{bottom:236.880000px;}
.y60_c00097{bottom:237.600000px;}
.y5c_c00097{bottom:238.320000px;}
.y5d_c00097{bottom:239.040000px;}
.y5b_c00097{bottom:239.760000px;}
.y59_c00097{bottom:277.200000px;}
.y57_c00097{bottom:278.640000px;}
.y5a_c00097{bottom:280.080000px;}
.y58_c00097{bottom:280.800000px;}
.y54_c00097{bottom:320.400000px;}
.y55_c00097{bottom:321.120000px;}
.y56_c00097{bottom:322.560000px;}
.y53_c00097{bottom:323.280000px;}
.y52_c00097{bottom:324.000000px;}
.y50_c00097{bottom:362.880000px;}
.y51_c00097{bottom:363.600000px;}
.y4f_c00097{bottom:365.760000px;}
.y4e_c00097{bottom:366.480000px;}
.y49_c00097{bottom:405.360000px;}
.y4d_c00097{bottom:406.080000px;}
.y4b_c00097{bottom:406.800000px;}
.y4c_c00097{bottom:408.240000px;}
.y4a_c00097{bottom:408.960000px;}
.y46_c00097{bottom:448.560000px;}
.y48_c00097{bottom:449.280000px;}
.y45_c00097{bottom:451.440000px;}
.y47_c00097{bottom:452.160000px;}
.y44_c00097{bottom:491.760000px;}
.y42_c00097{bottom:493.920000px;}
.y43_c00097{bottom:494.640000px;}
.y40_c00097{bottom:533.520000px;}
.y3f_c00097{bottom:534.240000px;}
.y3e_c00097{bottom:536.400000px;}
.y3d_c00097{bottom:537.120000px;}
.y41_c00097{bottom:537.840000px;}
.y3b_c00097{bottom:586.080000px;}
.y3c_c00097{bottom:587.520000px;}
.y3a_c00097{bottom:589.680000px;}
.y35_c00097{bottom:629.280000px;}
.y36_c00097{bottom:630.000000px;}
.y37_c00097{bottom:630.720000px;}
.y39_c00097{bottom:631.440000px;}
.y38_c00097{bottom:632.880000px;}
.y31_c00097{bottom:671.760000px;}
.y33_c00097{bottom:672.480000px;}
.y34_c00097{bottom:673.200000px;}
.y32_c00097{bottom:673.920000px;}
.y2b_c00097{bottom:714.240000px;}
.y2d_c00097{bottom:714.960000px;}
.y2f_c00097{bottom:716.400000px;}
.y2c_c00097{bottom:717.120000px;}
.y2e_c00097{bottom:717.840000px;}
.y30_c00097{bottom:719.280000px;}
.y27_c00097{bottom:757.440000px;}
.y28_c00097{bottom:758.160000px;}
.y2a_c00097{bottom:759.600000px;}
.y29_c00097{bottom:761.040000px;}
.y21_c00097{bottom:799.200000px;}
.y22_c00097{bottom:799.920000px;}
.y23_c00097{bottom:800.640000px;}
.y25_c00097{bottom:801.360000px;}
.y26_c00097{bottom:802.800000px;}
.y24_c00097{bottom:804.240000px;}
.y1b_c00097{bottom:841.680000px;}
.y1d_c00097{bottom:843.120000px;}
.y1f_c00097{bottom:843.840000px;}
.y1c_c00097{bottom:845.280000px;}
.y1e_c00097{bottom:846.720000px;}
.y20_c00097{bottom:848.160000px;}
.y15_c00097{bottom:884.880000px;}
.y16_c00097{bottom:885.600000px;}
.y17_c00097{bottom:886.320000px;}
.y19_c00097{bottom:887.040000px;}
.y18_c00097{bottom:889.920000px;}
.y1a_c00097{bottom:890.640000px;}
.ye_c00097{bottom:926.640000px;}
.yf_c00097{bottom:928.080000px;}
.y10_c00097{bottom:928.800000px;}
.y11_c00097{bottom:929.520000px;}
.y13_c00097{bottom:930.240000px;}
.y14_c00097{bottom:930.960000px;}
.y12_c00097{bottom:933.120000px;}
.y9_c00097{bottom:970.560000px;}
.y8_c00097{bottom:972.000000px;}
.y7_c00097{bottom:972.720000px;}
.ya_c00097{bottom:973.440000px;}
.yb_c00097{bottom:974.160000px;}
.yc_c00097{bottom:976.320000px;}
.yd_c00097{bottom:977.040000px;}
.y2_c00097{bottom:1014.480000px;}
.y3_c00097{bottom:1015.920000px;}
.y4_c00097{bottom:1017.360000px;}
.y5_c00097{bottom:1018.800000px;}
.y6_c00097{bottom:1019.520000px;}
.y1_c00097{bottom:1089.360000px;}
.h7_c00097{height:31.100625px;}
.h6_c00097{height:33.692344px;}
.hc_c00097{height:36.284062px;}
.h8_c00097{height:41.467500px;}
.h3_c00097{height:44.059219px;}
.h4_c00097{height:46.650937px;}
.hd_c00097{height:49.242656px;}
.he_c00097{height:51.834375px;}
.h5_c00097{height:54.426094px;}
.ha_c00097{height:57.017812px;}
.h9_c00097{height:59.609531px;}
.hb_c00097{height:62.201250px;}
.h2_c00097{height:64.792969px;}
.hf_c00097{height:67.384687px;}
.h0_c00097{height:1153.440000px;}
.h1_c00097{height:1153.500000px;}
.w0_c00097{width:810.000000px;}
.x0_c00097{left:0.000000px;}
.x38_c00097{left:84.240000px;}
.x2_c00097{left:85.680000px;}
.x55_c00097{left:87.120000px;}
.x19_c00097{left:88.560000px;}
.xb_c00097{left:108.000000px;}
.x42_c00097{left:118.800000px;}
.x5c_c00097{left:120.240000px;}
.x13_c00097{left:127.440000px;}
.x3_c00097{left:129.600000px;}
.x4e_c00097{left:140.400000px;}
.x29_c00097{left:141.840000px;}
.x3d_c00097{left:151.200000px;}
.x61_c00097{left:162.720000px;}
.xc_c00097{left:171.360000px;}
.x4_c00097{left:181.440000px;}
.x1e_c00097{left:184.320000px;}
.xd_c00097{left:192.240000px;}
.x3a_c00097{left:194.400000px;}
.x64_c00097{left:195.840000px;}
.x43_c00097{left:202.320000px;}
.x39_c00097{left:203.760000px;}
.x51_c00097{left:205.200000px;}
.x56_c00097{left:207.360000px;}
.x2a_c00097{left:214.560000px;}
.x23_c00097{left:216.720000px;}
.x5d_c00097{left:218.160000px;}
.x5_c00097{left:224.640000px;}
.x14_c00097{left:226.800000px;}
.x32_c00097{left:234.720000px;}
.x52_c00097{left:236.160000px;}
.x1f_c00097{left:257.040000px;}
.x50_c00097{left:258.480000px;}
.xe_c00097{left:259.920000px;}
.x44_c00097{left:267.840000px;}
.x57_c00097{left:280.800000px;}
.x24_c00097{left:289.440000px;}
.x2b_c00097{left:292.320000px;}
.x62_c00097{left:300.960000px;}
.x65_c00097{left:304.560000px;}
.x6_c00097{left:311.040000px;}
.x49_c00097{left:313.200000px;}
.x27_c00097{left:333.360000px;}
.x3b_c00097{left:343.440000px;}
.x33_c00097{left:354.240000px;}
.x1a_c00097{left:356.400000px;}
.x20_c00097{left:367.200000px;}
.xf_c00097{left:375.840000px;}
.x34_c00097{left:377.280000px;}
.x2c_c00097{left:378.720000px;}
.x3e_c00097{left:385.920000px;}
.x5e_c00097{left:388.800000px;}
.x58_c00097{left:398.880000px;}
.x5f_c00097{left:408.960000px;}
.x25_c00097{left:410.400000px;}
.x15_c00097{left:419.040000px;}
.x45_c00097{left:420.480000px;}
.x1b_c00097{left:429.120000px;}
.x66_c00097{left:431.280000px;}
.x7_c00097{left:440.640000px;}
.x4a_c00097{left:444.240000px;}
.x46_c00097{left:451.440000px;}
.x2f_c00097{left:453.600000px;}
.x35_c00097{left:460.800000px;}
.x53_c00097{left:462.960000px;}
.x2d_c00097{left:473.040000px;}
.x5a_c00097{left:474.480000px;}
.x21_c00097{left:486.000000px;}
.x16_c00097{left:495.360000px;}
.x59_c00097{left:505.440000px;}
.x10_c00097{left:507.600000px;}
.x63_c00097{left:519.120000px;}
.x60_c00097{left:520.560000px;}
.x1c_c00097{left:527.040000px;}
.x30_c00097{left:528.480000px;}
.x8_c00097{left:537.840000px;}
.x47_c00097{left:539.280000px;}
.x17_c00097{left:548.640000px;}
.x1d_c00097{left:551.520000px;}
.x4f_c00097{left:563.760000px;}
.x3f_c00097{left:570.960000px;}
.x11_c00097{left:582.480000px;}
.x2e_c00097{left:591.840000px;}
.x4b_c00097{left:593.280000px;}
.x31_c00097{left:595.440000px;}
.x36_c00097{left:604.080000px;}
.x40_c00097{left:614.880000px;}
.x9_c00097{left:624.240000px;}
.x4c_c00097{left:626.400000px;}
.x18_c00097{left:637.200000px;}
.x22_c00097{left:638.640000px;}
.x48_c00097{left:647.280000px;}
.x26_c00097{left:649.440000px;}
.x41_c00097{left:657.360000px;}
.x4d_c00097{left:659.520000px;}
.xa_c00097{left:667.440000px;}
.x54_c00097{left:669.600000px;}
.x37_c00097{left:672.480000px;}
.x28_c00097{left:679.680000px;}
.x3c_c00097{left:702.000000px;}
.x12_c00097{left:704.160000px;}
.x5b_c00097{left:714.240000px;}
.x1_c00097{left:717.840000px;}
@media print{
.v0_c00097{vertical-align:0.000000pt;}
.v1_c00097{vertical-align:5.120000pt;}
.ls0_c00097{letter-spacing:0.000000pt;}
.ws0_c00097{word-spacing:-4.250667pt;}
.ws1_c00097{word-spacing:0.000000pt;}
.fs5_c00097{font-size:30.720000pt;}
.fs4_c00097{font-size:33.280000pt;}
.fsa_c00097{font-size:35.840000pt;}
.fs6_c00097{font-size:40.960000pt;}
.fs1_c00097{font-size:43.520000pt;}
.fs2_c00097{font-size:46.080000pt;}
.fsb_c00097{font-size:48.640000pt;}
.fsc_c00097{font-size:51.200000pt;}
.fs3_c00097{font-size:53.760000pt;}
.fs8_c00097{font-size:56.320000pt;}
.fs7_c00097{font-size:58.880000pt;}
.fs9_c00097{font-size:61.440000pt;}
.fs0_c00097{font-size:64.000000pt;}
.fsd_c00097{font-size:66.560000pt;}
.y0_c00097{bottom:0.000000pt;}
.y7b_c00097{bottom:55.040000pt;}
.y7c_c00097{bottom:55.680000pt;}
.y79_c00097{bottom:56.320000pt;}
.y7d_c00097{bottom:57.600000pt;}
.y77_c00097{bottom:58.240000pt;}
.y7a_c00097{bottom:58.880000pt;}
.y78_c00097{bottom:59.520000pt;}
.y76_c00097{bottom:61.440000pt;}
.y75_c00097{bottom:92.800000pt;}
.y73_c00097{bottom:94.080000pt;}
.y72_c00097{bottom:94.720000pt;}
.y71_c00097{bottom:96.640000pt;}
.y74_c00097{bottom:97.280000pt;}
.y70_c00097{bottom:130.560000pt;}
.y6f_c00097{bottom:132.480000pt;}
.y6d_c00097{bottom:133.760000pt;}
.y6c_c00097{bottom:134.400000pt;}
.y6b_c00097{bottom:135.680000pt;}
.y6e_c00097{bottom:136.320000pt;}
.y6a_c00097{bottom:136.960000pt;}
.y69_c00097{bottom:169.600000pt;}
.y68_c00097{bottom:170.880000pt;}
.y64_c00097{bottom:172.160000pt;}
.y66_c00097{bottom:172.800000pt;}
.y67_c00097{bottom:173.440000pt;}
.y65_c00097{bottom:174.080000pt;}
.y63_c00097{bottom:174.720000pt;}
.y61_c00097{bottom:208.640000pt;}
.y5e_c00097{bottom:209.280000pt;}
.y5f_c00097{bottom:209.920000pt;}
.y62_c00097{bottom:210.560000pt;}
.y60_c00097{bottom:211.200000pt;}
.y5c_c00097{bottom:211.840000pt;}
.y5d_c00097{bottom:212.480000pt;}
.y5b_c00097{bottom:213.120000pt;}
.y59_c00097{bottom:246.400000pt;}
.y57_c00097{bottom:247.680000pt;}
.y5a_c00097{bottom:248.960000pt;}
.y58_c00097{bottom:249.600000pt;}
.y54_c00097{bottom:284.800000pt;}
.y55_c00097{bottom:285.440000pt;}
.y56_c00097{bottom:286.720000pt;}
.y53_c00097{bottom:287.360000pt;}
.y52_c00097{bottom:288.000000pt;}
.y50_c00097{bottom:322.560000pt;}
.y51_c00097{bottom:323.200000pt;}
.y4f_c00097{bottom:325.120000pt;}
.y4e_c00097{bottom:325.760000pt;}
.y49_c00097{bottom:360.320000pt;}
.y4d_c00097{bottom:360.960000pt;}
.y4b_c00097{bottom:361.600000pt;}
.y4c_c00097{bottom:362.880000pt;}
.y4a_c00097{bottom:363.520000pt;}
.y46_c00097{bottom:398.720000pt;}
.y48_c00097{bottom:399.360000pt;}
.y45_c00097{bottom:401.280000pt;}
.y47_c00097{bottom:401.920000pt;}
.y44_c00097{bottom:437.120000pt;}
.y42_c00097{bottom:439.040000pt;}
.y43_c00097{bottom:439.680000pt;}
.y40_c00097{bottom:474.240000pt;}
.y3f_c00097{bottom:474.880000pt;}
.y3e_c00097{bottom:476.800000pt;}
.y3d_c00097{bottom:477.440000pt;}
.y41_c00097{bottom:478.080000pt;}
.y3b_c00097{bottom:520.960000pt;}
.y3c_c00097{bottom:522.240000pt;}
.y3a_c00097{bottom:524.160000pt;}
.y35_c00097{bottom:559.360000pt;}
.y36_c00097{bottom:560.000000pt;}
.y37_c00097{bottom:560.640000pt;}
.y39_c00097{bottom:561.280000pt;}
.y38_c00097{bottom:562.560000pt;}
.y31_c00097{bottom:597.120000pt;}
.y33_c00097{bottom:597.760000pt;}
.y34_c00097{bottom:598.400000pt;}
.y32_c00097{bottom:599.040000pt;}
.y2b_c00097{bottom:634.880000pt;}
.y2d_c00097{bottom:635.520000pt;}
.y2f_c00097{bottom:636.800000pt;}
.y2c_c00097{bottom:637.440000pt;}
.y2e_c00097{bottom:638.080000pt;}
.y30_c00097{bottom:639.360000pt;}
.y27_c00097{bottom:673.280000pt;}
.y28_c00097{bottom:673.920000pt;}
.y2a_c00097{bottom:675.200000pt;}
.y29_c00097{bottom:676.480000pt;}
.y21_c00097{bottom:710.400000pt;}
.y22_c00097{bottom:711.040000pt;}
.y23_c00097{bottom:711.680000pt;}
.y25_c00097{bottom:712.320000pt;}
.y26_c00097{bottom:713.600000pt;}
.y24_c00097{bottom:714.880000pt;}
.y1b_c00097{bottom:748.160000pt;}
.y1d_c00097{bottom:749.440000pt;}
.y1f_c00097{bottom:750.080000pt;}
.y1c_c00097{bottom:751.360000pt;}
.y1e_c00097{bottom:752.640000pt;}
.y20_c00097{bottom:753.920000pt;}
.y15_c00097{bottom:786.560000pt;}
.y16_c00097{bottom:787.200000pt;}
.y17_c00097{bottom:787.840000pt;}
.y19_c00097{bottom:788.480000pt;}
.y18_c00097{bottom:791.040000pt;}
.y1a_c00097{bottom:791.680000pt;}
.ye_c00097{bottom:823.680000pt;}
.yf_c00097{bottom:824.960000pt;}
.y10_c00097{bottom:825.600000pt;}
.y11_c00097{bottom:826.240000pt;}
.y13_c00097{bottom:826.880000pt;}
.y14_c00097{bottom:827.520000pt;}
.y12_c00097{bottom:829.440000pt;}
.y9_c00097{bottom:862.720000pt;}
.y8_c00097{bottom:864.000000pt;}
.y7_c00097{bottom:864.640000pt;}
.ya_c00097{bottom:865.280000pt;}
.yb_c00097{bottom:865.920000pt;}
.yc_c00097{bottom:867.840000pt;}
.yd_c00097{bottom:868.480000pt;}
.y2_c00097{bottom:901.760000pt;}
.y3_c00097{bottom:903.040000pt;}
.y4_c00097{bottom:904.320000pt;}
.y5_c00097{bottom:905.600000pt;}
.y6_c00097{bottom:906.240000pt;}
.y1_c00097{bottom:968.320000pt;}
.h7_c00097{height:27.645000pt;}
.h6_c00097{height:29.948750pt;}
.hc_c00097{height:32.252500pt;}
.h8_c00097{height:36.860000pt;}
.h3_c00097{height:39.163750pt;}
.h4_c00097{height:41.467500pt;}
.hd_c00097{height:43.771250pt;}
.he_c00097{height:46.075000pt;}
.h5_c00097{height:48.378750pt;}
.ha_c00097{height:50.682500pt;}
.h9_c00097{height:52.986250pt;}
.hb_c00097{height:55.290000pt;}
.h2_c00097{height:57.593750pt;}
.hf_c00097{height:59.897500pt;}
.h0_c00097{height:1025.280000pt;}
.h1_c00097{height:1025.333333pt;}
.w0_c00097{width:720.000000pt;}
.x0_c00097{left:0.000000pt;}
.x38_c00097{left:74.880000pt;}
.x2_c00097{left:76.160000pt;}
.x55_c00097{left:77.440000pt;}
.x19_c00097{left:78.720000pt;}
.xb_c00097{left:96.000000pt;}
.x42_c00097{left:105.600000pt;}
.x5c_c00097{left:106.880000pt;}
.x13_c00097{left:113.280000pt;}
.x3_c00097{left:115.200000pt;}
.x4e_c00097{left:124.800000pt;}
.x29_c00097{left:126.080000pt;}
.x3d_c00097{left:134.400000pt;}
.x61_c00097{left:144.640000pt;}
.xc_c00097{left:152.320000pt;}
.x4_c00097{left:161.280000pt;}
.x1e_c00097{left:163.840000pt;}
.xd_c00097{left:170.880000pt;}
.x3a_c00097{left:172.800000pt;}
.x64_c00097{left:174.080000pt;}
.x43_c00097{left:179.840000pt;}
.x39_c00097{left:181.120000pt;}
.x51_c00097{left:182.400000pt;}
.x56_c00097{left:184.320000pt;}
.x2a_c00097{left:190.720000pt;}
.x23_c00097{left:192.640000pt;}
.x5d_c00097{left:193.920000pt;}
.x5_c00097{left:199.680000pt;}
.x14_c00097{left:201.600000pt;}
.x32_c00097{left:208.640000pt;}
.x52_c00097{left:209.920000pt;}
.x1f_c00097{left:228.480000pt;}
.x50_c00097{left:229.760000pt;}
.xe_c00097{left:231.040000pt;}
.x44_c00097{left:238.080000pt;}
.x57_c00097{left:249.600000pt;}
.x24_c00097{left:257.280000pt;}
.x2b_c00097{left:259.840000pt;}
.x62_c00097{left:267.520000pt;}
.x65_c00097{left:270.720000pt;}
.x6_c00097{left:276.480000pt;}
.x49_c00097{left:278.400000pt;}
.x27_c00097{left:296.320000pt;}
.x3b_c00097{left:305.280000pt;}
.x33_c00097{left:314.880000pt;}
.x1a_c00097{left:316.800000pt;}
.x20_c00097{left:326.400000pt;}
.xf_c00097{left:334.080000pt;}
.x34_c00097{left:335.360000pt;}
.x2c_c00097{left:336.640000pt;}
.x3e_c00097{left:343.040000pt;}
.x5e_c00097{left:345.600000pt;}
.x58_c00097{left:354.560000pt;}
.x5f_c00097{left:363.520000pt;}
.x25_c00097{left:364.800000pt;}
.x15_c00097{left:372.480000pt;}
.x45_c00097{left:373.760000pt;}
.x1b_c00097{left:381.440000pt;}
.x66_c00097{left:383.360000pt;}
.x7_c00097{left:391.680000pt;}
.x4a_c00097{left:394.880000pt;}
.x46_c00097{left:401.280000pt;}
.x2f_c00097{left:403.200000pt;}
.x35_c00097{left:409.600000pt;}
.x53_c00097{left:411.520000pt;}
.x2d_c00097{left:420.480000pt;}
.x5a_c00097{left:421.760000pt;}
.x21_c00097{left:432.000000pt;}
.x16_c00097{left:440.320000pt;}
.x59_c00097{left:449.280000pt;}
.x10_c00097{left:451.200000pt;}
.x63_c00097{left:461.440000pt;}
.x60_c00097{left:462.720000pt;}
.x1c_c00097{left:468.480000pt;}
.x30_c00097{left:469.760000pt;}
.x8_c00097{left:478.080000pt;}
.x47_c00097{left:479.360000pt;}
.x17_c00097{left:487.680000pt;}
.x1d_c00097{left:490.240000pt;}
.x4f_c00097{left:501.120000pt;}
.x3f_c00097{left:507.520000pt;}
.x11_c00097{left:517.760000pt;}
.x2e_c00097{left:526.080000pt;}
.x4b_c00097{left:527.360000pt;}
.x31_c00097{left:529.280000pt;}
.x36_c00097{left:536.960000pt;}
.x40_c00097{left:546.560000pt;}
.x9_c00097{left:554.880000pt;}
.x4c_c00097{left:556.800000pt;}
.x18_c00097{left:566.400000pt;}
.x22_c00097{left:567.680000pt;}
.x48_c00097{left:575.360000pt;}
.x26_c00097{left:577.280000pt;}
.x41_c00097{left:584.320000pt;}
.x4d_c00097{left:586.240000pt;}
.xa_c00097{left:593.280000pt;}
.x54_c00097{left:595.200000pt;}
.x37_c00097{left:597.760000pt;}
.x28_c00097{left:604.160000pt;}
.x3c_c00097{left:624.000000pt;}
.x12_c00097{left:625.920000pt;}
.x5b_c00097{left:634.880000pt;}
.x1_c00097{left:638.080000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ce2738a4c36c03d2325ca6e7.woff2')format("woff");}.ff1_c00098{font-family:ff1_c00098;line-height:1.109863;font-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_c00098{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.mb_c00098{transform:matrix(0.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);}
.m5b_c00098{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m16_c00098{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1_c00098{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m49_c00098{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m58_c00098{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m45_c00098{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m55_c00098{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m44_c00098{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00098{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.me_c00098{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m30_c00098{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);}
.m37_c00098{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00098{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);}
.m5a_c00098{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m35_c00098{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);}
.m48_c00098{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m26_c00098{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m2_c00098{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00098{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m14_c00098{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);}
.m2e_c00098{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00098{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.md_c00098{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);}
.m31_c00098{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);}
.m22_c00098{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00098{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);}
.m17_c00098{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m46_c00098{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);}
.m4c_c00098{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);}
.m42_c00098{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m62_c00098{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);}
.m43_c00098{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m0_c00098{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);}
.m5f_c00098{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00098{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);}
.m52_c00098{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);}
.m38_c00098{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m47_c00098{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m21_c00098{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m12_c00098{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m7_c00098{transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00098{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m4_c00098{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00098{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);}
.m20_c00098{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00098{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_c00098{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00098{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00098{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m13_c00098{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m28_c00098{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);}
.m1b_c00098{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m39_c00098{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m63_c00098{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m5_c00098{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);}
.m18_c00098{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00098{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m40_c00098{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m34_c00098{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00098{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);}
.m36_c00098{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);}
.m1e_c00098{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m41_c00098{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m50_c00098{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);}
.m27_c00098{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m60_c00098{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m54_c00098{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m15_c00098{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m23_c00098{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);}
.m51_c00098{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.ma_c00098{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00098{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m9_c00098{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00098{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);}
.mc_c00098{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m8_c00098{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);}
.m6_c00098{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m32_c00098{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00098{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m25_c00098{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m56_c00098{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m10_c00098{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00098{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00098{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00098{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);}
.m29_c00098{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00098{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00098{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);}
.m11_c00098{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m53_c00098{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m19_c00098{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m33_c00098{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m57_c00098{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m61_c00098{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00098{transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);}
.m59_c00098{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00098{transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);}
.m24_c00098{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_c00098{vertical-align:0.000000px;}
.ls0_c00098{letter-spacing:0.000000px;}
.sc__c00098{text-shadow:none;}
.sc0_c00098{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00098{-webkit-text-stroke:0px transparent;}
.sc0_c00098{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00098{word-spacing:0.000000px;}
.fc0_c00098{color:transparent;}
.fs4_c00098{font-size:34.560000px;}
.fs3_c00098{font-size:37.440000px;}
.fsc_c00098{font-size:40.320000px;}
.fs7_c00098{font-size:46.080000px;}
.fs0_c00098{font-size:48.960000px;}
.fs2_c00098{font-size:51.840000px;}
.fs9_c00098{font-size:54.720000px;}
.fs6_c00098{font-size:57.600000px;}
.fs5_c00098{font-size:60.480000px;}
.fsa_c00098{font-size:63.360000px;}
.fsb_c00098{font-size:66.240000px;}
.fs1_c00098{font-size:69.120000px;}
.fs8_c00098{font-size:72.000000px;}
.y0_c00098{bottom:0.000000px;}
.y79_c00098{bottom:48.240000px;}
.y77_c00098{bottom:48.960000px;}
.y75_c00098{bottom:50.400000px;}
.y78_c00098{bottom:51.840000px;}
.y76_c00098{bottom:53.280000px;}
.y73_c00098{bottom:54.720000px;}
.y74_c00098{bottom:55.440000px;}
.y72_c00098{bottom:93.600000px;}
.y6f_c00098{bottom:94.320000px;}
.y71_c00098{bottom:95.040000px;}
.y70_c00098{bottom:95.760000px;}
.y6e_c00098{bottom:96.480000px;}
.y6d_c00098{bottom:97.200000px;}
.y6b_c00098{bottom:148.320000px;}
.y69_c00098{bottom:149.040000px;}
.y6c_c00098{bottom:149.760000px;}
.y6a_c00098{bottom:151.200000px;}
.y68_c00098{bottom:187.920000px;}
.y64_c00098{bottom:190.800000px;}
.y67_c00098{bottom:191.520000px;}
.y66_c00098{bottom:192.240000px;}
.y65_c00098{bottom:192.960000px;}
.y63_c00098{bottom:195.120000px;}
.y62_c00098{bottom:231.120000px;}
.y5f_c00098{bottom:232.560000px;}
.y61_c00098{bottom:234.000000px;}
.y5d_c00098{bottom:234.720000px;}
.y60_c00098{bottom:235.440000px;}
.y5e_c00098{bottom:236.160000px;}
.y5c_c00098{bottom:237.600000px;}
.y56_c00098{bottom:275.040000px;}
.y5a_c00098{bottom:275.760000px;}
.y5b_c00098{bottom:276.480000px;}
.y59_c00098{bottom:277.200000px;}
.y58_c00098{bottom:277.920000px;}
.y57_c00098{bottom:278.640000px;}
.y55_c00098{bottom:317.520000px;}
.y52_c00098{bottom:318.960000px;}
.y53_c00098{bottom:319.680000px;}
.y54_c00098{bottom:320.400000px;}
.y50_c00098{bottom:360.000000px;}
.y4f_c00098{bottom:360.720000px;}
.y51_c00098{bottom:362.160000px;}
.y4e_c00098{bottom:362.880000px;}
.y4d_c00098{bottom:364.320000px;}
.y4c_c00098{bottom:365.040000px;}
.y4b_c00098{bottom:403.200000px;}
.y4a_c00098{bottom:404.640000px;}
.y48_c00098{bottom:406.080000px;}
.y47_c00098{bottom:406.800000px;}
.y49_c00098{bottom:407.520000px;}
.y45_c00098{bottom:445.680000px;}
.y42_c00098{bottom:447.120000px;}
.y46_c00098{bottom:447.840000px;}
.y44_c00098{bottom:448.560000px;}
.y43_c00098{bottom:449.280000px;}
.y41_c00098{bottom:450.000000px;}
.y40_c00098{bottom:488.160000px;}
.y3f_c00098{bottom:491.040000px;}
.y3d_c00098{bottom:491.760000px;}
.y3e_c00098{bottom:492.480000px;}
.y3c_c00098{bottom:542.880000px;}
.y3b_c00098{bottom:545.760000px;}
.y37_c00098{bottom:585.360000px;}
.y39_c00098{bottom:587.520000px;}
.y38_c00098{bottom:588.240000px;}
.y3a_c00098{bottom:588.960000px;}
.y33_c00098{bottom:627.120000px;}
.y35_c00098{bottom:628.560000px;}
.y34_c00098{bottom:630.720000px;}
.y36_c00098{bottom:631.440000px;}
.y31_c00098{bottom:670.320000px;}
.y30_c00098{bottom:672.480000px;}
.y2f_c00098{bottom:673.200000px;}
.y2e_c00098{bottom:673.920000px;}
.y32_c00098{bottom:674.640000px;}
.y2a_c00098{bottom:712.800000px;}
.y2d_c00098{bottom:714.240000px;}
.y2c_c00098{bottom:714.960000px;}
.y2b_c00098{bottom:715.680000px;}
.y29_c00098{bottom:716.400000px;}
.y26_c00098{bottom:756.000000px;}
.y24_c00098{bottom:758.160000px;}
.y25_c00098{bottom:758.880000px;}
.y27_c00098{bottom:759.600000px;}
.y28_c00098{bottom:760.320000px;}
.y22_c00098{bottom:797.760000px;}
.y21_c00098{bottom:798.480000px;}
.y20_c00098{bottom:801.360000px;}
.y23_c00098{bottom:802.080000px;}
.y1d_c00098{bottom:841.680000px;}
.y1b_c00098{bottom:843.120000px;}
.y1a_c00098{bottom:843.840000px;}
.y1c_c00098{bottom:844.560000px;}
.y1e_c00098{bottom:845.280000px;}
.y1f_c00098{bottom:846.000000px;}
.y14_c00098{bottom:882.720000px;}
.y17_c00098{bottom:884.880000px;}
.y15_c00098{bottom:886.320000px;}
.y16_c00098{bottom:887.040000px;}
.y18_c00098{bottom:887.760000px;}
.y19_c00098{bottom:888.480000px;}
.ye_c00098{bottom:925.200000px;}
.yf_c00098{bottom:925.920000px;}
.y12_c00098{bottom:928.080000px;}
.y10_c00098{bottom:929.520000px;}
.y11_c00098{bottom:930.240000px;}
.y13_c00098{bottom:930.960000px;}
.yc_c00098{bottom:969.840000px;}
.y8_c00098{bottom:970.560000px;}
.y9_c00098{bottom:971.280000px;}
.ya_c00098{bottom:972.000000px;}
.yb_c00098{bottom:972.720000px;}
.yd_c00098{bottom:974.160000px;}
.y1_c00098{bottom:1010.160000px;}
.y2_c00098{bottom:1010.880000px;}
.y3_c00098{bottom:1012.320000px;}
.y4_c00098{bottom:1013.040000px;}
.y5_c00098{bottom:1015.200000px;}
.y6_c00098{bottom:1015.920000px;}
.y7_c00098{bottom:1016.640000px;}
.h6_c00098{height:31.100625px;}
.h5_c00098{height:33.692344px;}
.he_c00098{height:36.284062px;}
.h9_c00098{height:41.467500px;}
.h2_c00098{height:44.059219px;}
.h4_c00098{height:46.650937px;}
.hb_c00098{height:49.242656px;}
.h8_c00098{height:51.834375px;}
.h7_c00098{height:54.426094px;}
.hc_c00098{height:57.017812px;}
.hd_c00098{height:59.609531px;}
.h3_c00098{height:62.201250px;}
.ha_c00098{height:64.792969px;}
.h0_c00098{height:1153.440000px;}
.h1_c00098{height:1153.500000px;}
.w0_c00098{width:810.720000px;}
.w1_c00098{width:810.750000px;}
.x0_c00098{left:0.000000px;}
.x17_c00098{left:82.800000px;}
.x1_c00098{left:84.240000px;}
.x42_c00098{left:114.480000px;}
.x9_c00098{left:115.920000px;}
.x2_c00098{left:118.800000px;}
.x34_c00098{left:125.280000px;}
.x23_c00098{left:126.720000px;}
.x1d_c00098{left:136.080000px;}
.x31_c00098{left:146.880000px;}
.xa_c00098{left:149.040000px;}
.x24_c00098{left:157.680000px;}
.x2a_c00098{left:168.480000px;}
.x1e_c00098{left:180.000000px;}
.x25_c00098{left:190.080000px;}
.x3f_c00098{left:191.520000px;}
.xb_c00098{left:200.880000px;}
.x39_c00098{left:202.320000px;}
.x45_c00098{left:212.400000px;}
.x26_c00098{left:222.480000px;}
.x3_c00098{left:223.920000px;}
.x2d_c00098{left:232.560000px;}
.x40_c00098{left:242.640000px;}
.xc_c00098{left:244.800000px;}
.x46_c00098{left:254.880000px;}
.x18_c00098{left:265.680000px;}
.x1f_c00098{left:277.200000px;}
.x2b_c00098{left:287.280000px;}
.xd_c00098{left:298.080000px;}
.x4_c00098{left:308.880000px;}
.x4b_c00098{left:318.240000px;}
.x2c_c00098{left:319.680000px;}
.xe_c00098{left:330.480000px;}
.x2e_c00098{left:341.280000px;}
.x3a_c00098{left:352.080000px;}
.xf_c00098{left:362.880000px;}
.x27_c00098{left:373.680000px;}
.x35_c00098{left:384.480000px;}
.x20_c00098{left:395.280000px;}
.x19_c00098{left:406.080000px;}
.x36_c00098{left:416.880000px;}
.x3b_c00098{left:426.240000px;}
.x43_c00098{left:427.680000px;}
.x5_c00098{left:439.200000px;}
.x1a_c00098{left:449.280000px;}
.x47_c00098{left:458.640000px;}
.x2f_c00098{left:460.080000px;}
.x10_c00098{left:470.880000px;}
.x3c_c00098{left:481.680000px;}
.x11_c00098{left:493.200000px;}
.x6_c00098{left:504.000000px;}
.x1b_c00098{left:514.800000px;}
.x12_c00098{left:524.880000px;}
.x41_c00098{left:526.320000px;}
.x21_c00098{left:535.680000px;}
.x37_c00098{left:546.480000px;}
.x13_c00098{left:558.000000px;}
.x3d_c00098{left:568.800000px;}
.x7_c00098{left:580.320000px;}
.x4c_c00098{left:589.680000px;}
.x48_c00098{left:600.480000px;}
.x14_c00098{left:601.920000px;}
.x8_c00098{left:612.000000px;}
.x38_c00098{left:622.080000px;}
.x28_c00098{left:623.520000px;}
.x3e_c00098{left:633.600000px;}
.x15_c00098{left:645.120000px;}
.x32_c00098{left:655.200000px;}
.x22_c00098{left:656.640000px;}
.x49_c00098{left:665.280000px;}
.x44_c00098{left:667.440000px;}
.x16_c00098{left:677.520000px;}
.x30_c00098{left:678.960000px;}
.x1c_c00098{left:689.040000px;}
.x4a_c00098{left:698.400000px;}
.x33_c00098{left:699.840000px;}
.x29_c00098{left:710.640000px;}
@media print{
.v0_c00098{vertical-align:0.000000pt;}
.ls0_c00098{letter-spacing:0.000000pt;}
.ws0_c00098{word-spacing:0.000000pt;}
.fs4_c00098{font-size:30.720000pt;}
.fs3_c00098{font-size:33.280000pt;}
.fsc_c00098{font-size:35.840000pt;}
.fs7_c00098{font-size:40.960000pt;}
.fs0_c00098{font-size:43.520000pt;}
.fs2_c00098{font-size:46.080000pt;}
.fs9_c00098{font-size:48.640000pt;}
.fs6_c00098{font-size:51.200000pt;}
.fs5_c00098{font-size:53.760000pt;}
.fsa_c00098{font-size:56.320000pt;}
.fsb_c00098{font-size:58.880000pt;}
.fs1_c00098{font-size:61.440000pt;}
.fs8_c00098{font-size:64.000000pt;}
.y0_c00098{bottom:0.000000pt;}
.y79_c00098{bottom:42.880000pt;}
.y77_c00098{bottom:43.520000pt;}
.y75_c00098{bottom:44.800000pt;}
.y78_c00098{bottom:46.080000pt;}
.y76_c00098{bottom:47.360000pt;}
.y73_c00098{bottom:48.640000pt;}
.y74_c00098{bottom:49.280000pt;}
.y72_c00098{bottom:83.200000pt;}
.y6f_c00098{bottom:83.840000pt;}
.y71_c00098{bottom:84.480000pt;}
.y70_c00098{bottom:85.120000pt;}
.y6e_c00098{bottom:85.760000pt;}
.y6d_c00098{bottom:86.400000pt;}
.y6b_c00098{bottom:131.840000pt;}
.y69_c00098{bottom:132.480000pt;}
.y6c_c00098{bottom:133.120000pt;}
.y6a_c00098{bottom:134.400000pt;}
.y68_c00098{bottom:167.040000pt;}
.y64_c00098{bottom:169.600000pt;}
.y67_c00098{bottom:170.240000pt;}
.y66_c00098{bottom:170.880000pt;}
.y65_c00098{bottom:171.520000pt;}
.y63_c00098{bottom:173.440000pt;}
.y62_c00098{bottom:205.440000pt;}
.y5f_c00098{bottom:206.720000pt;}
.y61_c00098{bottom:208.000000pt;}
.y5d_c00098{bottom:208.640000pt;}
.y60_c00098{bottom:209.280000pt;}
.y5e_c00098{bottom:209.920000pt;}
.y5c_c00098{bottom:211.200000pt;}
.y56_c00098{bottom:244.480000pt;}
.y5a_c00098{bottom:245.120000pt;}
.y5b_c00098{bottom:245.760000pt;}
.y59_c00098{bottom:246.400000pt;}
.y58_c00098{bottom:247.040000pt;}
.y57_c00098{bottom:247.680000pt;}
.y55_c00098{bottom:282.240000pt;}
.y52_c00098{bottom:283.520000pt;}
.y53_c00098{bottom:284.160000pt;}
.y54_c00098{bottom:284.800000pt;}
.y50_c00098{bottom:320.000000pt;}
.y4f_c00098{bottom:320.640000pt;}
.y51_c00098{bottom:321.920000pt;}
.y4e_c00098{bottom:322.560000pt;}
.y4d_c00098{bottom:323.840000pt;}
.y4c_c00098{bottom:324.480000pt;}
.y4b_c00098{bottom:358.400000pt;}
.y4a_c00098{bottom:359.680000pt;}
.y48_c00098{bottom:360.960000pt;}
.y47_c00098{bottom:361.600000pt;}
.y49_c00098{bottom:362.240000pt;}
.y45_c00098{bottom:396.160000pt;}
.y42_c00098{bottom:397.440000pt;}
.y46_c00098{bottom:398.080000pt;}
.y44_c00098{bottom:398.720000pt;}
.y43_c00098{bottom:399.360000pt;}
.y41_c00098{bottom:400.000000pt;}
.y40_c00098{bottom:433.920000pt;}
.y3f_c00098{bottom:436.480000pt;}
.y3d_c00098{bottom:437.120000pt;}
.y3e_c00098{bottom:437.760000pt;}
.y3c_c00098{bottom:482.560000pt;}
.y3b_c00098{bottom:485.120000pt;}
.y37_c00098{bottom:520.320000pt;}
.y39_c00098{bottom:522.240000pt;}
.y38_c00098{bottom:522.880000pt;}
.y3a_c00098{bottom:523.520000pt;}
.y33_c00098{bottom:557.440000pt;}
.y35_c00098{bottom:558.720000pt;}
.y34_c00098{bottom:560.640000pt;}
.y36_c00098{bottom:561.280000pt;}
.y31_c00098{bottom:595.840000pt;}
.y30_c00098{bottom:597.760000pt;}
.y2f_c00098{bottom:598.400000pt;}
.y2e_c00098{bottom:599.040000pt;}
.y32_c00098{bottom:599.680000pt;}
.y2a_c00098{bottom:633.600000pt;}
.y2d_c00098{bottom:634.880000pt;}
.y2c_c00098{bottom:635.520000pt;}
.y2b_c00098{bottom:636.160000pt;}
.y29_c00098{bottom:636.800000pt;}
.y26_c00098{bottom:672.000000pt;}
.y24_c00098{bottom:673.920000pt;}
.y25_c00098{bottom:674.560000pt;}
.y27_c00098{bottom:675.200000pt;}
.y28_c00098{bottom:675.840000pt;}
.y22_c00098{bottom:709.120000pt;}
.y21_c00098{bottom:709.760000pt;}
.y20_c00098{bottom:712.320000pt;}
.y23_c00098{bottom:712.960000pt;}
.y1d_c00098{bottom:748.160000pt;}
.y1b_c00098{bottom:749.440000pt;}
.y1a_c00098{bottom:750.080000pt;}
.y1c_c00098{bottom:750.720000pt;}
.y1e_c00098{bottom:751.360000pt;}
.y1f_c00098{bottom:752.000000pt;}
.y14_c00098{bottom:784.640000pt;}
.y17_c00098{bottom:786.560000pt;}
.y15_c00098{bottom:787.840000pt;}
.y16_c00098{bottom:788.480000pt;}
.y18_c00098{bottom:789.120000pt;}
.y19_c00098{bottom:789.760000pt;}
.ye_c00098{bottom:822.400000pt;}
.yf_c00098{bottom:823.040000pt;}
.y12_c00098{bottom:824.960000pt;}
.y10_c00098{bottom:826.240000pt;}
.y11_c00098{bottom:826.880000pt;}
.y13_c00098{bottom:827.520000pt;}
.yc_c00098{bottom:862.080000pt;}
.y8_c00098{bottom:862.720000pt;}
.y9_c00098{bottom:863.360000pt;}
.ya_c00098{bottom:864.000000pt;}
.yb_c00098{bottom:864.640000pt;}
.yd_c00098{bottom:865.920000pt;}
.y1_c00098{bottom:897.920000pt;}
.y2_c00098{bottom:898.560000pt;}
.y3_c00098{bottom:899.840000pt;}
.y4_c00098{bottom:900.480000pt;}
.y5_c00098{bottom:902.400000pt;}
.y6_c00098{bottom:903.040000pt;}
.y7_c00098{bottom:903.680000pt;}
.h6_c00098{height:27.645000pt;}
.h5_c00098{height:29.948750pt;}
.he_c00098{height:32.252500pt;}
.h9_c00098{height:36.860000pt;}
.h2_c00098{height:39.163750pt;}
.h4_c00098{height:41.467500pt;}
.hb_c00098{height:43.771250pt;}
.h8_c00098{height:46.075000pt;}
.h7_c00098{height:48.378750pt;}
.hc_c00098{height:50.682500pt;}
.hd_c00098{height:52.986250pt;}
.h3_c00098{height:55.290000pt;}
.ha_c00098{height:57.593750pt;}
.h0_c00098{height:1025.280000pt;}
.h1_c00098{height:1025.333333pt;}
.w0_c00098{width:720.640000pt;}
.w1_c00098{width:720.666667pt;}
.x0_c00098{left:0.000000pt;}
.x17_c00098{left:73.600000pt;}
.x1_c00098{left:74.880000pt;}
.x42_c00098{left:101.760000pt;}
.x9_c00098{left:103.040000pt;}
.x2_c00098{left:105.600000pt;}
.x34_c00098{left:111.360000pt;}
.x23_c00098{left:112.640000pt;}
.x1d_c00098{left:120.960000pt;}
.x31_c00098{left:130.560000pt;}
.xa_c00098{left:132.480000pt;}
.x24_c00098{left:140.160000pt;}
.x2a_c00098{left:149.760000pt;}
.x1e_c00098{left:160.000000pt;}
.x25_c00098{left:168.960000pt;}
.x3f_c00098{left:170.240000pt;}
.xb_c00098{left:178.560000pt;}
.x39_c00098{left:179.840000pt;}
.x45_c00098{left:188.800000pt;}
.x26_c00098{left:197.760000pt;}
.x3_c00098{left:199.040000pt;}
.x2d_c00098{left:206.720000pt;}
.x40_c00098{left:215.680000pt;}
.xc_c00098{left:217.600000pt;}
.x46_c00098{left:226.560000pt;}
.x18_c00098{left:236.160000pt;}
.x1f_c00098{left:246.400000pt;}
.x2b_c00098{left:255.360000pt;}
.xd_c00098{left:264.960000pt;}
.x4_c00098{left:274.560000pt;}
.x4b_c00098{left:282.880000pt;}
.x2c_c00098{left:284.160000pt;}
.xe_c00098{left:293.760000pt;}
.x2e_c00098{left:303.360000pt;}
.x3a_c00098{left:312.960000pt;}
.xf_c00098{left:322.560000pt;}
.x27_c00098{left:332.160000pt;}
.x35_c00098{left:341.760000pt;}
.x20_c00098{left:351.360000pt;}
.x19_c00098{left:360.960000pt;}
.x36_c00098{left:370.560000pt;}
.x3b_c00098{left:378.880000pt;}
.x43_c00098{left:380.160000pt;}
.x5_c00098{left:390.400000pt;}
.x1a_c00098{left:399.360000pt;}
.x47_c00098{left:407.680000pt;}
.x2f_c00098{left:408.960000pt;}
.x10_c00098{left:418.560000pt;}
.x3c_c00098{left:428.160000pt;}
.x11_c00098{left:438.400000pt;}
.x6_c00098{left:448.000000pt;}
.x1b_c00098{left:457.600000pt;}
.x12_c00098{left:466.560000pt;}
.x41_c00098{left:467.840000pt;}
.x21_c00098{left:476.160000pt;}
.x37_c00098{left:485.760000pt;}
.x13_c00098{left:496.000000pt;}
.x3d_c00098{left:505.600000pt;}
.x7_c00098{left:515.840000pt;}
.x4c_c00098{left:524.160000pt;}
.x48_c00098{left:533.760000pt;}
.x14_c00098{left:535.040000pt;}
.x8_c00098{left:544.000000pt;}
.x38_c00098{left:552.960000pt;}
.x28_c00098{left:554.240000pt;}
.x3e_c00098{left:563.200000pt;}
.x15_c00098{left:573.440000pt;}
.x32_c00098{left:582.400000pt;}
.x22_c00098{left:583.680000pt;}
.x49_c00098{left:591.360000pt;}
.x44_c00098{left:593.280000pt;}
.x16_c00098{left:602.240000pt;}
.x30_c00098{left:603.520000pt;}
.x1c_c00098{left:612.480000pt;}
.x4a_c00098{left:620.800000pt;}
.x33_c00098{left:622.080000pt;}
.x29_c00098{left:631.680000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1837f868186bb30e755d06d1.woff2')format("woff");}.ff1_c00099{font-family:ff1_c00099;line-height:1.109863;font-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_c00099{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m58_c00099{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mc_c00099{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m28_c00099{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m48_c00099{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m50_c00099{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m47_c00099{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m26_c00099{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m21_c00099{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.ma_c00099{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00099{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m20_c00099{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m36_c00099{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m0_c00099{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m2_c00099{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);}
.m2e_c00099{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m6_c00099{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.md_c00099{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m43_c00099{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m15_c00099{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);}
.m30_c00099{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m3_c00099{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);}
.m39_c00099{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);}
.m54_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);}
.m3f_c00099{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m45_c00099{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);}
.m33_c00099{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m56_c00099{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);}
.m27_c00099{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00099{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);}
.m34_c00099{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m25_c00099{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00099{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m8_c00099{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);}
.m3a_c00099{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00099{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);}
.m4c_c00099{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00099{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);}
.m46_c00099{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m23_c00099{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.me_c00099{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m57_c00099{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m16_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);}
.m24_c00099{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00099{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m31_c00099{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);}
.m18_c00099{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.mb_c00099{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);}
.m40_c00099{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m38_c00099{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m14_c00099{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.mf_c00099{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);}
.m3c_c00099{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00099{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m35_c00099{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);}
.m49_c00099{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00099{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m17_c00099{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m7_c00099{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00099{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m13_c00099{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m19_c00099{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m42_c00099{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m22_c00099{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);}
.m4_c00099{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m11_c00099{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m1_c00099{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00099{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m51_c00099{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00099{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00099{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);}
.m10_c00099{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00099{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);}
.m2d_c00099{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00099{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);}
.m5_c00099{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m53_c00099{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m41_c00099{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00099{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m59_c00099{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m12_c00099{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m44_c00099{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m29_c00099{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);}
.m1d_c00099{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m37_c00099{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);}
.m55_c00099{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m52_c00099{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m32_c00099{transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00099{transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00099{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.v0_c00099{vertical-align:0.000000px;}
.ls0_c00099{letter-spacing:0.000000px;}
.sc__c00099{text-shadow:none;}
.sc0_c00099{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00099{-webkit-text-stroke:0px transparent;}
.sc0_c00099{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00099{word-spacing:0.000000px;}
.fc0_c00099{color:transparent;}
.fs7_c00099{font-size:34.560000px;}
.fs1_c00099{font-size:37.440000px;}
.fs5_c00099{font-size:40.320000px;}
.fsa_c00099{font-size:43.200000px;}
.fs6_c00099{font-size:46.080000px;}
.fs3_c00099{font-size:48.960000px;}
.fs4_c00099{font-size:51.840000px;}
.fs9_c00099{font-size:54.720000px;}
.fs8_c00099{font-size:57.600000px;}
.fs2_c00099{font-size:60.480000px;}
.fsc_c00099{font-size:63.360000px;}
.fsb_c00099{font-size:66.240000px;}
.fs0_c00099{font-size:69.120000px;}
.fsd_c00099{font-size:72.000000px;}
.y0_c00099{bottom:0.000000px;}
.y76_c00099{bottom:95.040000px;}
.y78_c00099{bottom:97.200000px;}
.y77_c00099{bottom:97.920000px;}
.y74_c00099{bottom:98.640000px;}
.y75_c00099{bottom:99.360000px;}
.y73_c00099{bottom:100.080000px;}
.y72_c00099{bottom:101.520000px;}
.y71_c00099{bottom:136.080000px;}
.y70_c00099{bottom:137.520000px;}
.y6f_c00099{bottom:138.240000px;}
.y6c_c00099{bottom:139.680000px;}
.y6e_c00099{bottom:141.120000px;}
.y6d_c00099{bottom:141.840000px;}
.y6b_c00099{bottom:142.560000px;}
.y6a_c00099{bottom:144.000000px;}
.y66_c00099{bottom:181.440000px;}
.y67_c00099{bottom:182.160000px;}
.y69_c00099{bottom:182.880000px;}
.y68_c00099{bottom:183.600000px;}
.y65_c00099{bottom:184.320000px;}
.y64_c00099{bottom:185.040000px;}
.y63_c00099{bottom:185.760000px;}
.y60_c00099{bottom:223.920000px;}
.y5f_c00099{bottom:224.640000px;}
.y5e_c00099{bottom:225.360000px;}
.y62_c00099{bottom:226.080000px;}
.y61_c00099{bottom:226.800000px;}
.y5d_c00099{bottom:227.520000px;}
.y5c_c00099{bottom:266.400000px;}
.y5a_c00099{bottom:267.120000px;}
.y58_c00099{bottom:267.840000px;}
.y5b_c00099{bottom:269.280000px;}
.y59_c00099{bottom:270.000000px;}
.y57_c00099{bottom:270.720000px;}
.y55_c00099{bottom:309.600000px;}
.y54_c00099{bottom:311.040000px;}
.y56_c00099{bottom:311.760000px;}
.y53_c00099{bottom:312.480000px;}
.y52_c00099{bottom:313.200000px;}
.y4f_c00099{bottom:352.080000px;}
.y51_c00099{bottom:352.800000px;}
.y50_c00099{bottom:354.240000px;}
.y4e_c00099{bottom:354.960000px;}
.y4d_c00099{bottom:355.680000px;}
.y4c_c00099{bottom:394.560000px;}
.y4b_c00099{bottom:396.720000px;}
.y4a_c00099{bottom:397.440000px;}
.y49_c00099{bottom:398.160000px;}
.y48_c00099{bottom:436.320000px;}
.y44_c00099{bottom:437.040000px;}
.y45_c00099{bottom:437.760000px;}
.y46_c00099{bottom:439.920000px;}
.y47_c00099{bottom:440.640000px;}
.y42_c00099{bottom:480.240000px;}
.y43_c00099{bottom:482.400000px;}
.y41_c00099{bottom:483.120000px;}
.y3d_c00099{bottom:522.720000px;}
.y3e_c00099{bottom:523.440000px;}
.y3f_c00099{bottom:524.160000px;}
.y3c_c00099{bottom:524.880000px;}
.y3b_c00099{bottom:525.600000px;}
.y40_c00099{bottom:526.320000px;}
.y38_c00099{bottom:565.200000px;}
.y39_c00099{bottom:565.920000px;}
.y37_c00099{bottom:568.080000px;}
.y3a_c00099{bottom:568.800000px;}
.y36_c00099{bottom:620.640000px;}
.y30_c00099{bottom:660.240000px;}
.y33_c00099{bottom:661.680000px;}
.y34_c00099{bottom:662.400000px;}
.y32_c00099{bottom:663.120000px;}
.y31_c00099{bottom:663.840000px;}
.y35_c00099{bottom:665.280000px;}
.y2e_c00099{bottom:704.880000px;}
.y2b_c00099{bottom:705.600000px;}
.y2d_c00099{bottom:706.320000px;}
.y2c_c00099{bottom:707.040000px;}
.y2f_c00099{bottom:707.760000px;}
.y26_c00099{bottom:745.920000px;}
.y28_c00099{bottom:747.360000px;}
.y24_c00099{bottom:748.080000px;}
.y25_c00099{bottom:748.800000px;}
.y27_c00099{bottom:749.520000px;}
.y2a_c00099{bottom:750.240000px;}
.y29_c00099{bottom:750.960000px;}
.y1d_c00099{bottom:787.680000px;}
.y1f_c00099{bottom:789.120000px;}
.y1c_c00099{bottom:789.840000px;}
.y1e_c00099{bottom:791.280000px;}
.y20_c00099{bottom:792.000000px;}
.y22_c00099{bottom:792.720000px;}
.y21_c00099{bottom:793.440000px;}
.y23_c00099{bottom:794.160000px;}
.y19_c00099{bottom:831.600000px;}
.y16_c00099{bottom:833.040000px;}
.y17_c00099{bottom:833.760000px;}
.y18_c00099{bottom:834.480000px;}
.y1b_c00099{bottom:835.200000px;}
.y1a_c00099{bottom:835.920000px;}
.yf_c00099{bottom:873.360000px;}
.y11_c00099{bottom:874.800000px;}
.y10_c00099{bottom:876.240000px;}
.y12_c00099{bottom:877.680000px;}
.y13_c00099{bottom:878.400000px;}
.y14_c00099{bottom:879.120000px;}
.y15_c00099{bottom:879.840000px;}
.yb_c00099{bottom:918.720000px;}
.yc_c00099{bottom:920.160000px;}
.yd_c00099{bottom:920.880000px;}
.ye_c00099{bottom:921.600000px;}
.y8_c00099{bottom:967.680000px;}
.ya_c00099{bottom:969.120000px;}
.y9_c00099{bottom:971.280000px;}
.y2_c00099{bottom:1013.760000px;}
.y3_c00099{bottom:1014.480000px;}
.y4_c00099{bottom:1015.200000px;}
.y7_c00099{bottom:1015.920000px;}
.y5_c00099{bottom:1016.640000px;}
.y6_c00099{bottom:1018.080000px;}
.y1_c00099{bottom:1083.600000px;}
.h9_c00099{height:31.100625px;}
.h3_c00099{height:33.692344px;}
.h7_c00099{height:36.284062px;}
.hc_c00099{height:38.875781px;}
.h8_c00099{height:41.467500px;}
.h5_c00099{height:44.059219px;}
.h6_c00099{height:46.650937px;}
.hb_c00099{height:49.242656px;}
.ha_c00099{height:51.834375px;}
.h4_c00099{height:54.426094px;}
.he_c00099{height:57.017812px;}
.hd_c00099{height:59.609531px;}
.h2_c00099{height:62.201250px;}
.hf_c00099{height:64.792969px;}
.h0_c00099{height:1152.720000px;}
.h1_c00099{height:1152.750000px;}
.w1_c00099{width:808.500000px;}
.w0_c00099{width:808.560000px;}
.x0_c00099{left:0.000000px;}
.x2_c00099{left:81.360000px;}
.x18_c00099{left:82.800000px;}
.x52_c00099{left:84.240000px;}
.xd_c00099{left:104.400000px;}
.x57_c00099{left:105.840000px;}
.x39_c00099{left:114.480000px;}
.x43_c00099{left:115.920000px;}
.x3_c00099{left:124.560000px;}
.x5b_c00099{left:126.000000px;}
.x1f_c00099{left:133.920000px;}
.x25_c00099{left:136.080000px;}
.x4b_c00099{left:146.880000px;}
.x58_c00099{left:148.320000px;}
.x2a_c00099{left:157.680000px;}
.x4_c00099{left:178.560000px;}
.xe_c00099{left:180.000000px;}
.xf_c00099{left:190.080000px;}
.x4c_c00099{left:200.880000px;}
.x5c_c00099{left:202.320000px;}
.x5_c00099{left:209.520000px;}
.x2e_c00099{left:211.680000px;}
.x2b_c00099{left:220.320000px;}
.x19_c00099{left:221.760000px;}
.x53_c00099{left:223.200000px;}
.x35_c00099{left:233.280000px;}
.x3d_c00099{left:243.360000px;}
.x6_c00099{left:252.720000px;}
.x47_c00099{left:254.880000px;}
.x26_c00099{left:264.960000px;}
.x10_c00099{left:275.760000px;}
.x4f_c00099{left:277.200000px;}
.x33_c00099{left:286.560000px;}
.x2f_c00099{left:296.640000px;}
.x59_c00099{left:298.080000px;}
.x3a_c00099{left:308.160000px;}
.x54_c00099{left:310.320000px;}
.x20_c00099{left:318.240000px;}
.x4d_c00099{left:319.680000px;}
.x1a_c00099{left:329.040000px;}
.x5d_c00099{left:330.480000px;}
.x11_c00099{left:340.560000px;}
.x7_c00099{left:350.640000px;}
.x21_c00099{left:352.080000px;}
.x12_c00099{left:360.720000px;}
.x40_c00099{left:362.160000px;}
.x36_c00099{left:372.240000px;}
.x44_c00099{left:373.680000px;}
.x3e_c00099{left:375.120000px;}
.x8_c00099{left:383.040000px;}
.x13_c00099{left:393.840000px;}
.x41_c00099{left:395.280000px;}
.x2c_c00099{left:404.640000px;}
.x50_c00099{left:406.080000px;}
.x27_c00099{left:416.160000px;}
.x30_c00099{left:426.960000px;}
.x37_c00099{left:438.480000px;}
.x3b_c00099{left:447.840000px;}
.x1b_c00099{left:458.640000px;}
.x42_c00099{left:460.080000px;}
.x51_c00099{left:470.880000px;}
.x22_c00099{left:480.240000px;}
.x48_c00099{left:481.680000px;}
.x9_c00099{left:491.040000px;}
.x2d_c00099{left:492.480000px;}
.x14_c00099{left:501.840000px;}
.x49_c00099{left:504.000000px;}
.xa_c00099{left:512.640000px;}
.x55_c00099{left:514.800000px;}
.x1c_c00099{left:523.440000px;}
.x23_c00099{left:534.960000px;}
.x38_c00099{left:545.760000px;}
.x5a_c00099{left:548.640000px;}
.x31_c00099{left:556.560000px;}
.x5e_c00099{left:558.720000px;}
.xb_c00099{left:565.920000px;}
.x28_c00099{left:568.080000px;}
.x15_c00099{left:578.880000px;}
.x3f_c00099{left:588.240000px;}
.x45_c00099{left:589.680000px;}
.x4e_c00099{left:591.120000px;}
.x16_c00099{left:611.280000px;}
.xc_c00099{left:613.440000px;}
.x32_c00099{left:622.080000px;}
.x56_c00099{left:623.520000px;}
.x46_c00099{left:632.880000px;}
.x1d_c00099{left:643.680000px;}
.x17_c00099{left:653.760000px;}
.x4a_c00099{left:655.200000px;}
.x24_c00099{left:665.280000px;}
.x1e_c00099{left:676.080000px;}
.x3c_c00099{left:689.040000px;}
.x34_c00099{left:698.400000px;}
.x29_c00099{left:709.920000px;}
.x1_c00099{left:723.600000px;}
@media print{
.v0_c00099{vertical-align:0.000000pt;}
.ls0_c00099{letter-spacing:0.000000pt;}
.ws0_c00099{word-spacing:0.000000pt;}
.fs7_c00099{font-size:30.720000pt;}
.fs1_c00099{font-size:33.280000pt;}
.fs5_c00099{font-size:35.840000pt;}
.fsa_c00099{font-size:38.400000pt;}
.fs6_c00099{font-size:40.960000pt;}
.fs3_c00099{font-size:43.520000pt;}
.fs4_c00099{font-size:46.080000pt;}
.fs9_c00099{font-size:48.640000pt;}
.fs8_c00099{font-size:51.200000pt;}
.fs2_c00099{font-size:53.760000pt;}
.fsc_c00099{font-size:56.320000pt;}
.fsb_c00099{font-size:58.880000pt;}
.fs0_c00099{font-size:61.440000pt;}
.fsd_c00099{font-size:64.000000pt;}
.y0_c00099{bottom:0.000000pt;}
.y76_c00099{bottom:84.480000pt;}
.y78_c00099{bottom:86.400000pt;}
.y77_c00099{bottom:87.040000pt;}
.y74_c00099{bottom:87.680000pt;}
.y75_c00099{bottom:88.320000pt;}
.y73_c00099{bottom:88.960000pt;}
.y72_c00099{bottom:90.240000pt;}
.y71_c00099{bottom:120.960000pt;}
.y70_c00099{bottom:122.240000pt;}
.y6f_c00099{bottom:122.880000pt;}
.y6c_c00099{bottom:124.160000pt;}
.y6e_c00099{bottom:125.440000pt;}
.y6d_c00099{bottom:126.080000pt;}
.y6b_c00099{bottom:126.720000pt;}
.y6a_c00099{bottom:128.000000pt;}
.y66_c00099{bottom:161.280000pt;}
.y67_c00099{bottom:161.920000pt;}
.y69_c00099{bottom:162.560000pt;}
.y68_c00099{bottom:163.200000pt;}
.y65_c00099{bottom:163.840000pt;}
.y64_c00099{bottom:164.480000pt;}
.y63_c00099{bottom:165.120000pt;}
.y60_c00099{bottom:199.040000pt;}
.y5f_c00099{bottom:199.680000pt;}
.y5e_c00099{bottom:200.320000pt;}
.y62_c00099{bottom:200.960000pt;}
.y61_c00099{bottom:201.600000pt;}
.y5d_c00099{bottom:202.240000pt;}
.y5c_c00099{bottom:236.800000pt;}
.y5a_c00099{bottom:237.440000pt;}
.y58_c00099{bottom:238.080000pt;}
.y5b_c00099{bottom:239.360000pt;}
.y59_c00099{bottom:240.000000pt;}
.y57_c00099{bottom:240.640000pt;}
.y55_c00099{bottom:275.200000pt;}
.y54_c00099{bottom:276.480000pt;}
.y56_c00099{bottom:277.120000pt;}
.y53_c00099{bottom:277.760000pt;}
.y52_c00099{bottom:278.400000pt;}
.y4f_c00099{bottom:312.960000pt;}
.y51_c00099{bottom:313.600000pt;}
.y50_c00099{bottom:314.880000pt;}
.y4e_c00099{bottom:315.520000pt;}
.y4d_c00099{bottom:316.160000pt;}
.y4c_c00099{bottom:350.720000pt;}
.y4b_c00099{bottom:352.640000pt;}
.y4a_c00099{bottom:353.280000pt;}
.y49_c00099{bottom:353.920000pt;}
.y48_c00099{bottom:387.840000pt;}
.y44_c00099{bottom:388.480000pt;}
.y45_c00099{bottom:389.120000pt;}
.y46_c00099{bottom:391.040000pt;}
.y47_c00099{bottom:391.680000pt;}
.y42_c00099{bottom:426.880000pt;}
.y43_c00099{bottom:428.800000pt;}
.y41_c00099{bottom:429.440000pt;}
.y3d_c00099{bottom:464.640000pt;}
.y3e_c00099{bottom:465.280000pt;}
.y3f_c00099{bottom:465.920000pt;}
.y3c_c00099{bottom:466.560000pt;}
.y3b_c00099{bottom:467.200000pt;}
.y40_c00099{bottom:467.840000pt;}
.y38_c00099{bottom:502.400000pt;}
.y39_c00099{bottom:503.040000pt;}
.y37_c00099{bottom:504.960000pt;}
.y3a_c00099{bottom:505.600000pt;}
.y36_c00099{bottom:551.680000pt;}
.y30_c00099{bottom:586.880000pt;}
.y33_c00099{bottom:588.160000pt;}
.y34_c00099{bottom:588.800000pt;}
.y32_c00099{bottom:589.440000pt;}
.y31_c00099{bottom:590.080000pt;}
.y35_c00099{bottom:591.360000pt;}
.y2e_c00099{bottom:626.560000pt;}
.y2b_c00099{bottom:627.200000pt;}
.y2d_c00099{bottom:627.840000pt;}
.y2c_c00099{bottom:628.480000pt;}
.y2f_c00099{bottom:629.120000pt;}
.y26_c00099{bottom:663.040000pt;}
.y28_c00099{bottom:664.320000pt;}
.y24_c00099{bottom:664.960000pt;}
.y25_c00099{bottom:665.600000pt;}
.y27_c00099{bottom:666.240000pt;}
.y2a_c00099{bottom:666.880000pt;}
.y29_c00099{bottom:667.520000pt;}
.y1d_c00099{bottom:700.160000pt;}
.y1f_c00099{bottom:701.440000pt;}
.y1c_c00099{bottom:702.080000pt;}
.y1e_c00099{bottom:703.360000pt;}
.y20_c00099{bottom:704.000000pt;}
.y22_c00099{bottom:704.640000pt;}
.y21_c00099{bottom:705.280000pt;}
.y23_c00099{bottom:705.920000pt;}
.y19_c00099{bottom:739.200000pt;}
.y16_c00099{bottom:740.480000pt;}
.y17_c00099{bottom:741.120000pt;}
.y18_c00099{bottom:741.760000pt;}
.y1b_c00099{bottom:742.400000pt;}
.y1a_c00099{bottom:743.040000pt;}
.yf_c00099{bottom:776.320000pt;}
.y11_c00099{bottom:777.600000pt;}
.y10_c00099{bottom:778.880000pt;}
.y12_c00099{bottom:780.160000pt;}
.y13_c00099{bottom:780.800000pt;}
.y14_c00099{bottom:781.440000pt;}
.y15_c00099{bottom:782.080000pt;}
.yb_c00099{bottom:816.640000pt;}
.yc_c00099{bottom:817.920000pt;}
.yd_c00099{bottom:818.560000pt;}
.ye_c00099{bottom:819.200000pt;}
.y8_c00099{bottom:860.160000pt;}
.ya_c00099{bottom:861.440000pt;}
.y9_c00099{bottom:863.360000pt;}
.y2_c00099{bottom:901.120000pt;}
.y3_c00099{bottom:901.760000pt;}
.y4_c00099{bottom:902.400000pt;}
.y7_c00099{bottom:903.040000pt;}
.y5_c00099{bottom:903.680000pt;}
.y6_c00099{bottom:904.960000pt;}
.y1_c00099{bottom:963.200000pt;}
.h9_c00099{height:27.645000pt;}
.h3_c00099{height:29.948750pt;}
.h7_c00099{height:32.252500pt;}
.hc_c00099{height:34.556250pt;}
.h8_c00099{height:36.860000pt;}
.h5_c00099{height:39.163750pt;}
.h6_c00099{height:41.467500pt;}
.hb_c00099{height:43.771250pt;}
.ha_c00099{height:46.075000pt;}
.h4_c00099{height:48.378750pt;}
.he_c00099{height:50.682500pt;}
.hd_c00099{height:52.986250pt;}
.h2_c00099{height:55.290000pt;}
.hf_c00099{height:57.593750pt;}
.h0_c00099{height:1024.640000pt;}
.h1_c00099{height:1024.666667pt;}
.w1_c00099{width:718.666667pt;}
.w0_c00099{width:718.720000pt;}
.x0_c00099{left:0.000000pt;}
.x2_c00099{left:72.320000pt;}
.x18_c00099{left:73.600000pt;}
.x52_c00099{left:74.880000pt;}
.xd_c00099{left:92.800000pt;}
.x57_c00099{left:94.080000pt;}
.x39_c00099{left:101.760000pt;}
.x43_c00099{left:103.040000pt;}
.x3_c00099{left:110.720000pt;}
.x5b_c00099{left:112.000000pt;}
.x1f_c00099{left:119.040000pt;}
.x25_c00099{left:120.960000pt;}
.x4b_c00099{left:130.560000pt;}
.x58_c00099{left:131.840000pt;}
.x2a_c00099{left:140.160000pt;}
.x4_c00099{left:158.720000pt;}
.xe_c00099{left:160.000000pt;}
.xf_c00099{left:168.960000pt;}
.x4c_c00099{left:178.560000pt;}
.x5c_c00099{left:179.840000pt;}
.x5_c00099{left:186.240000pt;}
.x2e_c00099{left:188.160000pt;}
.x2b_c00099{left:195.840000pt;}
.x19_c00099{left:197.120000pt;}
.x53_c00099{left:198.400000pt;}
.x35_c00099{left:207.360000pt;}
.x3d_c00099{left:216.320000pt;}
.x6_c00099{left:224.640000pt;}
.x47_c00099{left:226.560000pt;}
.x26_c00099{left:235.520000pt;}
.x10_c00099{left:245.120000pt;}
.x4f_c00099{left:246.400000pt;}
.x33_c00099{left:254.720000pt;}
.x2f_c00099{left:263.680000pt;}
.x59_c00099{left:264.960000pt;}
.x3a_c00099{left:273.920000pt;}
.x54_c00099{left:275.840000pt;}
.x20_c00099{left:282.880000pt;}
.x4d_c00099{left:284.160000pt;}
.x1a_c00099{left:292.480000pt;}
.x5d_c00099{left:293.760000pt;}
.x11_c00099{left:302.720000pt;}
.x7_c00099{left:311.680000pt;}
.x21_c00099{left:312.960000pt;}
.x12_c00099{left:320.640000pt;}
.x40_c00099{left:321.920000pt;}
.x36_c00099{left:330.880000pt;}
.x44_c00099{left:332.160000pt;}
.x3e_c00099{left:333.440000pt;}
.x8_c00099{left:340.480000pt;}
.x13_c00099{left:350.080000pt;}
.x41_c00099{left:351.360000pt;}
.x2c_c00099{left:359.680000pt;}
.x50_c00099{left:360.960000pt;}
.x27_c00099{left:369.920000pt;}
.x30_c00099{left:379.520000pt;}
.x37_c00099{left:389.760000pt;}
.x3b_c00099{left:398.080000pt;}
.x1b_c00099{left:407.680000pt;}
.x42_c00099{left:408.960000pt;}
.x51_c00099{left:418.560000pt;}
.x22_c00099{left:426.880000pt;}
.x48_c00099{left:428.160000pt;}
.x9_c00099{left:436.480000pt;}
.x2d_c00099{left:437.760000pt;}
.x14_c00099{left:446.080000pt;}
.x49_c00099{left:448.000000pt;}
.xa_c00099{left:455.680000pt;}
.x55_c00099{left:457.600000pt;}
.x1c_c00099{left:465.280000pt;}
.x23_c00099{left:475.520000pt;}
.x38_c00099{left:485.120000pt;}
.x5a_c00099{left:487.680000pt;}
.x31_c00099{left:494.720000pt;}
.x5e_c00099{left:496.640000pt;}
.xb_c00099{left:503.040000pt;}
.x28_c00099{left:504.960000pt;}
.x15_c00099{left:514.560000pt;}
.x3f_c00099{left:522.880000pt;}
.x45_c00099{left:524.160000pt;}
.x4e_c00099{left:525.440000pt;}
.x16_c00099{left:543.360000pt;}
.xc_c00099{left:545.280000pt;}
.x32_c00099{left:552.960000pt;}
.x56_c00099{left:554.240000pt;}
.x46_c00099{left:562.560000pt;}
.x1d_c00099{left:572.160000pt;}
.x17_c00099{left:581.120000pt;}
.x4a_c00099{left:582.400000pt;}
.x24_c00099{left:591.360000pt;}
.x1e_c00099{left:600.960000pt;}
.x3c_c00099{left:612.480000pt;}
.x34_c00099{left:620.800000pt;}
.x29_c00099{left:631.040000pt;}
.x1_c00099{left:643.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_52739c40605810c9f3bfd12a.woff2')format("woff");}.ff1_c00100{font-family:ff1_c00100;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m60_c00100{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m57_c00100{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m36_c00100{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m59_c00100{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m24_c00100{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m10_c00100{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m45_c00100{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00100{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m51_c00100{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m19_c00100{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00100{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m5_c00100{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m16_c00100{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m53_c00100{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m37_c00100{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m28_c00100{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m17_c00100{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_c00100{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m20_c00100{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m0_c00100{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_c00100{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00100{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00100{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m32_c00100{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);}
.m15_c00100{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m47_c00100{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m31_c00100{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);}
.mb_c00100{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m1_c00100{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);}
.m38_c00100{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.ma_c00100{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);}
.m1e_c00100{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00100{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);}
.m4d_c00100{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);}
.m4e_c00100{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);}
.m40_c00100{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.mc_c00100{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m50_c00100{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00100{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);}
.m9_c00100{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00100{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);}
.m35_c00100{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m27_c00100{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);}
.m3c_c00100{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);}
.m29_c00100{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m6_c00100{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00100{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00100{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);}
.m5e_c00100{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00100{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m54_c00100{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);}
.m43_c00100{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m12_c00100{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);}
.m1f_c00100{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00100{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m2_c00100{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m3_c00100{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m44_c00100{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);}
.m49_c00100{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m25_c00100{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m39_c00100{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m23_c00100{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);}
.m21_c00100{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m7_c00100{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.mf_c00100{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.md_c00100{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);}
.m22_c00100{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);}
.m4b_c00100{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m30_c00100{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00100{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00100{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);}
.m4_c00100{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m33_c00100{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m55_c00100{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m11_c00100{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);}
.m34_c00100{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m13_c00100{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m8_c00100{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);}
.m5b_c00100{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m52_c00100{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);}
.m48_c00100{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.me_c00100{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m58_c00100{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00100{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m26_c00100{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m41_c00100{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m14_c00100{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00100{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m46_c00100{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);}
.m2f_c00100{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);}
.m42_c00100{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00100{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00100{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);}
.m5c_c00100{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00100{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m56_c00100{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00100{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m61_c00100{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.v0_c00100{vertical-align:0.000000px;}
.ls0_c00100{letter-spacing:0.000000px;}
.sc__c00100{text-shadow:none;}
.sc0_c00100{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00100{-webkit-text-stroke:0px transparent;}
.sc0_c00100{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00100{word-spacing:0.000000px;}
.fc0_c00100{color:transparent;}
.fsf_c00100{font-size:5.760000px;}
.fs10_c00100{font-size:25.920000px;}
.fsb_c00100{font-size:34.560000px;}
.fs7_c00100{font-size:37.440000px;}
.fsd_c00100{font-size:40.320000px;}
.fs8_c00100{font-size:43.200000px;}
.fs4_c00100{font-size:46.080000px;}
.fs1_c00100{font-size:48.960000px;}
.fs2_c00100{font-size:51.840000px;}
.fsc_c00100{font-size:54.720000px;}
.fs5_c00100{font-size:57.600000px;}
.fs6_c00100{font-size:60.480000px;}
.fsa_c00100{font-size:63.360000px;}
.fs9_c00100{font-size:66.240000px;}
.fs3_c00100{font-size:69.120000px;}
.fse_c00100{font-size:72.000000px;}
.fs0_c00100{font-size:77.760000px;}
.y0_c00100{bottom:0.000000px;}
.y84_c00100{bottom:32.400000px;}
.y7e_c00100{bottom:41.040000px;}
.y80_c00100{bottom:42.480000px;}
.y82_c00100{bottom:43.200000px;}
.y81_c00100{bottom:44.640000px;}
.y7f_c00100{bottom:45.360000px;}
.y7d_c00100{bottom:46.080000px;}
.y7c_c00100{bottom:48.240000px;}
.y7b_c00100{bottom:48.960000px;}
.y7a_c00100{bottom:49.680000px;}
.y83_c00100{bottom:52.560000px;}
.y77_c00100{bottom:86.400000px;}
.y79_c00100{bottom:87.120000px;}
.y78_c00100{bottom:87.840000px;}
.y76_c00100{bottom:88.560000px;}
.y75_c00100{bottom:89.280000px;}
.y74_c00100{bottom:90.000000px;}
.y73_c00100{bottom:91.440000px;}
.y72_c00100{bottom:138.960000px;}
.y70_c00100{bottom:139.680000px;}
.y71_c00100{bottom:141.840000px;}
.y6f_c00100{bottom:142.560000px;}
.y6e_c00100{bottom:143.280000px;}
.y6d_c00100{bottom:144.000000px;}
.y6c_c00100{bottom:144.720000px;}
.y6b_c00100{bottom:179.280000px;}
.y68_c00100{bottom:181.440000px;}
.y6a_c00100{bottom:182.880000px;}
.y69_c00100{bottom:183.600000px;}
.y65_c00100{bottom:185.040000px;}
.y67_c00100{bottom:185.760000px;}
.y66_c00100{bottom:186.480000px;}
.y64_c00100{bottom:223.920000px;}
.y63_c00100{bottom:226.800000px;}
.y62_c00100{bottom:227.520000px;}
.y61_c00100{bottom:228.240000px;}
.y60_c00100{bottom:228.960000px;}
.y5f_c00100{bottom:229.680000px;}
.y5e_c00100{bottom:266.400000px;}
.y5c_c00100{bottom:267.120000px;}
.y5a_c00100{bottom:267.840000px;}
.y58_c00100{bottom:268.560000px;}
.y5d_c00100{bottom:269.280000px;}
.y5b_c00100{bottom:270.000000px;}
.y59_c00100{bottom:270.720000px;}
.y57_c00100{bottom:271.440000px;}
.y55_c00100{bottom:308.880000px;}
.y52_c00100{bottom:309.600000px;}
.y56_c00100{bottom:311.040000px;}
.y54_c00100{bottom:311.760000px;}
.y53_c00100{bottom:312.480000px;}
.y51_c00100{bottom:313.200000px;}
.y50_c00100{bottom:313.920000px;}
.y4d_c00100{bottom:362.880000px;}
.y4a_c00100{bottom:363.600000px;}
.y4f_c00100{bottom:364.320000px;}
.y4e_c00100{bottom:365.040000px;}
.y4c_c00100{bottom:365.760000px;}
.y4b_c00100{bottom:366.480000px;}
.y49_c00100{bottom:404.640000px;}
.y45_c00100{bottom:405.360000px;}
.y46_c00100{bottom:406.080000px;}
.y43_c00100{bottom:406.800000px;}
.y48_c00100{bottom:407.520000px;}
.y47_c00100{bottom:408.240000px;}
.y44_c00100{bottom:408.960000px;}
.y42_c00100{bottom:409.680000px;}
.y3f_c00100{bottom:448.560000px;}
.y41_c00100{bottom:450.720000px;}
.y40_c00100{bottom:451.440000px;}
.y3b_c00100{bottom:491.040000px;}
.y3c_c00100{bottom:491.760000px;}
.y3e_c00100{bottom:493.200000px;}
.y3d_c00100{bottom:493.920000px;}
.y3a_c00100{bottom:494.640000px;}
.y38_c00100{bottom:534.240000px;}
.y37_c00100{bottom:536.400000px;}
.y39_c00100{bottom:537.120000px;}
.y33_c00100{bottom:576.000000px;}
.y36_c00100{bottom:576.720000px;}
.y34_c00100{bottom:578.880000px;}
.y35_c00100{bottom:579.600000px;}
.y2f_c00100{bottom:619.200000px;}
.y31_c00100{bottom:619.920000px;}
.y30_c00100{bottom:622.080000px;}
.y32_c00100{bottom:622.800000px;}
.y2c_c00100{bottom:661.680000px;}
.y2e_c00100{bottom:663.120000px;}
.y2b_c00100{bottom:664.560000px;}
.y2d_c00100{bottom:665.280000px;}
.y28_c00100{bottom:704.160000px;}
.y29_c00100{bottom:707.040000px;}
.y2a_c00100{bottom:707.760000px;}
.y24_c00100{bottom:746.640000px;}
.y25_c00100{bottom:747.360000px;}
.y26_c00100{bottom:749.520000px;}
.y23_c00100{bottom:750.240000px;}
.y27_c00100{bottom:750.960000px;}
.y21_c00100{bottom:800.640000px;}
.y20_c00100{bottom:802.800000px;}
.y22_c00100{bottom:803.520000px;}
.y1a_c00100{bottom:843.120000px;}
.y1e_c00100{bottom:844.560000px;}
.y1b_c00100{bottom:845.280000px;}
.y1c_c00100{bottom:846.000000px;}
.y1d_c00100{bottom:846.720000px;}
.y1f_c00100{bottom:847.440000px;}
.y15_c00100{bottom:884.880000px;}
.y17_c00100{bottom:885.600000px;}
.y16_c00100{bottom:886.320000px;}
.y18_c00100{bottom:888.480000px;}
.y19_c00100{bottom:889.920000px;}
.y10_c00100{bottom:928.080000px;}
.yf_c00100{bottom:928.800000px;}
.ye_c00100{bottom:929.520000px;}
.y14_c00100{bottom:930.240000px;}
.y12_c00100{bottom:930.960000px;}
.y11_c00100{bottom:931.680000px;}
.y13_c00100{bottom:932.400000px;}
.y9_c00100{bottom:970.560000px;}
.ya_c00100{bottom:972.000000px;}
.y7_c00100{bottom:972.720000px;}
.y8_c00100{bottom:973.440000px;}
.yb_c00100{bottom:974.160000px;}
.yd_c00100{bottom:974.880000px;}
.yc_c00100{bottom:975.600000px;}
.y4_c00100{bottom:1014.480000px;}
.y2_c00100{bottom:1015.200000px;}
.y3_c00100{bottom:1016.640000px;}
.y5_c00100{bottom:1017.360000px;}
.y6_c00100{bottom:1018.800000px;}
.y1_c00100{bottom:1090.800000px;}
.h11_c00100{height:5.183438px;}
.h12_c00100{height:23.325469px;}
.hd_c00100{height:31.100625px;}
.h9_c00100{height:33.692344px;}
.hf_c00100{height:36.284062px;}
.ha_c00100{height:38.875781px;}
.h6_c00100{height:41.467500px;}
.h3_c00100{height:44.059219px;}
.h4_c00100{height:46.650937px;}
.he_c00100{height:49.242656px;}
.h7_c00100{height:51.834375px;}
.h8_c00100{height:54.426094px;}
.hc_c00100{height:57.017812px;}
.hb_c00100{height:59.609531px;}
.h5_c00100{height:62.201250px;}
.h10_c00100{height:64.792969px;}
.h2_c00100{height:69.976406px;}
.h0_c00100{height:1153.440000px;}
.h1_c00100{height:1153.500000px;}
.w0_c00100{width:810.000000px;}
.x0_c00100{left:0.000000px;}
.x3f_c00100{left:79.200000px;}
.x2_c00100{left:80.640000px;}
.xb_c00100{left:82.080000px;}
.x31_c00100{left:112.320000px;}
.x15_c00100{left:114.480000px;}
.x34_c00100{left:123.120000px;}
.x45_c00100{left:134.640000px;}
.x24_c00100{left:144.720000px;}
.x1b_c00100{left:155.520000px;}
.x4b_c00100{left:157.680000px;}
.xc_c00100{left:167.040000px;}
.x3_c00100{left:177.120000px;}
.x46_c00100{left:187.200000px;}
.x25_c00100{left:188.640000px;}
.xd_c00100{left:198.720000px;}
.x1c_c00100{left:200.880000px;}
.x16_c00100{left:209.520000px;}
.x2a_c00100{left:220.320000px;}
.x17_c00100{left:231.120000px;}
.x4c_c00100{left:240.480000px;}
.x4e_c00100{left:241.920000px;}
.xe_c00100{left:252.720000px;}
.x35_c00100{left:262.800000px;}
.x47_c00100{left:272.880000px;}
.x18_c00100{left:274.320000px;}
.x48_c00100{left:285.120000px;}
.x20_c00100{left:295.200000px;}
.x26_c00100{left:296.640000px;}
.x2b_c00100{left:306.720000px;}
.x19_c00100{left:317.520000px;}
.x36_c00100{left:327.600000px;}
.x4_c00100{left:339.120000px;}
.xf_c00100{left:349.920000px;}
.x40_c00100{left:358.560000px;}
.x49_c00100{left:360.720000px;}
.x37_c00100{left:371.520000px;}
.x5_c00100{left:382.320000px;}
.x10_c00100{left:393.120000px;}
.x2c_c00100{left:403.920000px;}
.x38_c00100{left:414.000000px;}
.x6_c00100{left:425.520000px;}
.x11_c00100{left:436.320000px;}
.x3d_c00100{left:444.960000px;}
.x27_c00100{left:447.120000px;}
.x21_c00100{left:456.480000px;}
.x2f_c00100{left:457.920000px;}
.x41_c00100{left:468.720000px;}
.x28_c00100{left:479.520000px;}
.x2d_c00100{left:490.320000px;}
.x30_c00100{left:499.680000px;}
.x7_c00100{left:501.840000px;}
.x42_c00100{left:511.920000px;}
.x1d_c00100{left:522.720000px;}
.x32_c00100{left:533.520000px;}
.x12_c00100{left:534.960000px;}
.x29_c00100{left:544.320000px;}
.x4d_c00100{left:554.400000px;}
.x1e_c00100{left:555.840000px;}
.x39_c00100{left:565.920000px;}
.x22_c00100{left:577.440000px;}
.x2e_c00100{left:588.960000px;}
.x13_c00100{left:599.040000px;}
.x3a_c00100{left:600.480000px;}
.x4f_c00100{left:610.560000px;}
.x33_c00100{left:620.640000px;}
.x14_c00100{left:622.080000px;}
.x43_c00100{left:630.720000px;}
.x8_c00100{left:632.160000px;}
.x3b_c00100{left:643.680000px;}
.x9_c00100{left:653.760000px;}
.x4a_c00100{left:655.920000px;}
.x50_c00100{left:662.400000px;}
.x44_c00100{left:663.840000px;}
.x51_c00100{left:671.760000px;}
.x3e_c00100{left:676.080000px;}
.x1a_c00100{left:678.240000px;}
.x1f_c00100{left:686.880000px;}
.x3c_c00100{left:695.520000px;}
.xa_c00100{left:697.680000px;}
.x1_c00100{left:699.840000px;}
.x23_c00100{left:708.480000px;}
@media print{
.v0_c00100{vertical-align:0.000000pt;}
.ls0_c00100{letter-spacing:0.000000pt;}
.ws0_c00100{word-spacing:0.000000pt;}
.fsf_c00100{font-size:5.120000pt;}
.fs10_c00100{font-size:23.040000pt;}
.fsb_c00100{font-size:30.720000pt;}
.fs7_c00100{font-size:33.280000pt;}
.fsd_c00100{font-size:35.840000pt;}
.fs8_c00100{font-size:38.400000pt;}
.fs4_c00100{font-size:40.960000pt;}
.fs1_c00100{font-size:43.520000pt;}
.fs2_c00100{font-size:46.080000pt;}
.fsc_c00100{font-size:48.640000pt;}
.fs5_c00100{font-size:51.200000pt;}
.fs6_c00100{font-size:53.760000pt;}
.fsa_c00100{font-size:56.320000pt;}
.fs9_c00100{font-size:58.880000pt;}
.fs3_c00100{font-size:61.440000pt;}
.fse_c00100{font-size:64.000000pt;}
.fs0_c00100{font-size:69.120000pt;}
.y0_c00100{bottom:0.000000pt;}
.y84_c00100{bottom:28.800000pt;}
.y7e_c00100{bottom:36.480000pt;}
.y80_c00100{bottom:37.760000pt;}
.y82_c00100{bottom:38.400000pt;}
.y81_c00100{bottom:39.680000pt;}
.y7f_c00100{bottom:40.320000pt;}
.y7d_c00100{bottom:40.960000pt;}
.y7c_c00100{bottom:42.880000pt;}
.y7b_c00100{bottom:43.520000pt;}
.y7a_c00100{bottom:44.160000pt;}
.y83_c00100{bottom:46.720000pt;}
.y77_c00100{bottom:76.800000pt;}
.y79_c00100{bottom:77.440000pt;}
.y78_c00100{bottom:78.080000pt;}
.y76_c00100{bottom:78.720000pt;}
.y75_c00100{bottom:79.360000pt;}
.y74_c00100{bottom:80.000000pt;}
.y73_c00100{bottom:81.280000pt;}
.y72_c00100{bottom:123.520000pt;}
.y70_c00100{bottom:124.160000pt;}
.y71_c00100{bottom:126.080000pt;}
.y6f_c00100{bottom:126.720000pt;}
.y6e_c00100{bottom:127.360000pt;}
.y6d_c00100{bottom:128.000000pt;}
.y6c_c00100{bottom:128.640000pt;}
.y6b_c00100{bottom:159.360000pt;}
.y68_c00100{bottom:161.280000pt;}
.y6a_c00100{bottom:162.560000pt;}
.y69_c00100{bottom:163.200000pt;}
.y65_c00100{bottom:164.480000pt;}
.y67_c00100{bottom:165.120000pt;}
.y66_c00100{bottom:165.760000pt;}
.y64_c00100{bottom:199.040000pt;}
.y63_c00100{bottom:201.600000pt;}
.y62_c00100{bottom:202.240000pt;}
.y61_c00100{bottom:202.880000pt;}
.y60_c00100{bottom:203.520000pt;}
.y5f_c00100{bottom:204.160000pt;}
.y5e_c00100{bottom:236.800000pt;}
.y5c_c00100{bottom:237.440000pt;}
.y5a_c00100{bottom:238.080000pt;}
.y58_c00100{bottom:238.720000pt;}
.y5d_c00100{bottom:239.360000pt;}
.y5b_c00100{bottom:240.000000pt;}
.y59_c00100{bottom:240.640000pt;}
.y57_c00100{bottom:241.280000pt;}
.y55_c00100{bottom:274.560000pt;}
.y52_c00100{bottom:275.200000pt;}
.y56_c00100{bottom:276.480000pt;}
.y54_c00100{bottom:277.120000pt;}
.y53_c00100{bottom:277.760000pt;}
.y51_c00100{bottom:278.400000pt;}
.y50_c00100{bottom:279.040000pt;}
.y4d_c00100{bottom:322.560000pt;}
.y4a_c00100{bottom:323.200000pt;}
.y4f_c00100{bottom:323.840000pt;}
.y4e_c00100{bottom:324.480000pt;}
.y4c_c00100{bottom:325.120000pt;}
.y4b_c00100{bottom:325.760000pt;}
.y49_c00100{bottom:359.680000pt;}
.y45_c00100{bottom:360.320000pt;}
.y46_c00100{bottom:360.960000pt;}
.y43_c00100{bottom:361.600000pt;}
.y48_c00100{bottom:362.240000pt;}
.y47_c00100{bottom:362.880000pt;}
.y44_c00100{bottom:363.520000pt;}
.y42_c00100{bottom:364.160000pt;}
.y3f_c00100{bottom:398.720000pt;}
.y41_c00100{bottom:400.640000pt;}
.y40_c00100{bottom:401.280000pt;}
.y3b_c00100{bottom:436.480000pt;}
.y3c_c00100{bottom:437.120000pt;}
.y3e_c00100{bottom:438.400000pt;}
.y3d_c00100{bottom:439.040000pt;}
.y3a_c00100{bottom:439.680000pt;}
.y38_c00100{bottom:474.880000pt;}
.y37_c00100{bottom:476.800000pt;}
.y39_c00100{bottom:477.440000pt;}
.y33_c00100{bottom:512.000000pt;}
.y36_c00100{bottom:512.640000pt;}
.y34_c00100{bottom:514.560000pt;}
.y35_c00100{bottom:515.200000pt;}
.y2f_c00100{bottom:550.400000pt;}
.y31_c00100{bottom:551.040000pt;}
.y30_c00100{bottom:552.960000pt;}
.y32_c00100{bottom:553.600000pt;}
.y2c_c00100{bottom:588.160000pt;}
.y2e_c00100{bottom:589.440000pt;}
.y2b_c00100{bottom:590.720000pt;}
.y2d_c00100{bottom:591.360000pt;}
.y28_c00100{bottom:625.920000pt;}
.y29_c00100{bottom:628.480000pt;}
.y2a_c00100{bottom:629.120000pt;}
.y24_c00100{bottom:663.680000pt;}
.y25_c00100{bottom:664.320000pt;}
.y26_c00100{bottom:666.240000pt;}
.y23_c00100{bottom:666.880000pt;}
.y27_c00100{bottom:667.520000pt;}
.y21_c00100{bottom:711.680000pt;}
.y20_c00100{bottom:713.600000pt;}
.y22_c00100{bottom:714.240000pt;}
.y1a_c00100{bottom:749.440000pt;}
.y1e_c00100{bottom:750.720000pt;}
.y1b_c00100{bottom:751.360000pt;}
.y1c_c00100{bottom:752.000000pt;}
.y1d_c00100{bottom:752.640000pt;}
.y1f_c00100{bottom:753.280000pt;}
.y15_c00100{bottom:786.560000pt;}
.y17_c00100{bottom:787.200000pt;}
.y16_c00100{bottom:787.840000pt;}
.y18_c00100{bottom:789.760000pt;}
.y19_c00100{bottom:791.040000pt;}
.y10_c00100{bottom:824.960000pt;}
.yf_c00100{bottom:825.600000pt;}
.ye_c00100{bottom:826.240000pt;}
.y14_c00100{bottom:826.880000pt;}
.y12_c00100{bottom:827.520000pt;}
.y11_c00100{bottom:828.160000pt;}
.y13_c00100{bottom:828.800000pt;}
.y9_c00100{bottom:862.720000pt;}
.ya_c00100{bottom:864.000000pt;}
.y7_c00100{bottom:864.640000pt;}
.y8_c00100{bottom:865.280000pt;}
.yb_c00100{bottom:865.920000pt;}
.yd_c00100{bottom:866.560000pt;}
.yc_c00100{bottom:867.200000pt;}
.y4_c00100{bottom:901.760000pt;}
.y2_c00100{bottom:902.400000pt;}
.y3_c00100{bottom:903.680000pt;}
.y5_c00100{bottom:904.320000pt;}
.y6_c00100{bottom:905.600000pt;}
.y1_c00100{bottom:969.600000pt;}
.h11_c00100{height:4.607500pt;}
.h12_c00100{height:20.733750pt;}
.hd_c00100{height:27.645000pt;}
.h9_c00100{height:29.948750pt;}
.hf_c00100{height:32.252500pt;}
.ha_c00100{height:34.556250pt;}
.h6_c00100{height:36.860000pt;}
.h3_c00100{height:39.163750pt;}
.h4_c00100{height:41.467500pt;}
.he_c00100{height:43.771250pt;}
.h7_c00100{height:46.075000pt;}
.h8_c00100{height:48.378750pt;}
.hc_c00100{height:50.682500pt;}
.hb_c00100{height:52.986250pt;}
.h5_c00100{height:55.290000pt;}
.h10_c00100{height:57.593750pt;}
.h2_c00100{height:62.201250pt;}
.h0_c00100{height:1025.280000pt;}
.h1_c00100{height:1025.333333pt;}
.w0_c00100{width:720.000000pt;}
.x0_c00100{left:0.000000pt;}
.x3f_c00100{left:70.400000pt;}
.x2_c00100{left:71.680000pt;}
.xb_c00100{left:72.960000pt;}
.x31_c00100{left:99.840000pt;}
.x15_c00100{left:101.760000pt;}
.x34_c00100{left:109.440000pt;}
.x45_c00100{left:119.680000pt;}
.x24_c00100{left:128.640000pt;}
.x1b_c00100{left:138.240000pt;}
.x4b_c00100{left:140.160000pt;}
.xc_c00100{left:148.480000pt;}
.x3_c00100{left:157.440000pt;}
.x46_c00100{left:166.400000pt;}
.x25_c00100{left:167.680000pt;}
.xd_c00100{left:176.640000pt;}
.x1c_c00100{left:178.560000pt;}
.x16_c00100{left:186.240000pt;}
.x2a_c00100{left:195.840000pt;}
.x17_c00100{left:205.440000pt;}
.x4c_c00100{left:213.760000pt;}
.x4e_c00100{left:215.040000pt;}
.xe_c00100{left:224.640000pt;}
.x35_c00100{left:233.600000pt;}
.x47_c00100{left:242.560000pt;}
.x18_c00100{left:243.840000pt;}
.x48_c00100{left:253.440000pt;}
.x20_c00100{left:262.400000pt;}
.x26_c00100{left:263.680000pt;}
.x2b_c00100{left:272.640000pt;}
.x19_c00100{left:282.240000pt;}
.x36_c00100{left:291.200000pt;}
.x4_c00100{left:301.440000pt;}
.xf_c00100{left:311.040000pt;}
.x40_c00100{left:318.720000pt;}
.x49_c00100{left:320.640000pt;}
.x37_c00100{left:330.240000pt;}
.x5_c00100{left:339.840000pt;}
.x10_c00100{left:349.440000pt;}
.x2c_c00100{left:359.040000pt;}
.x38_c00100{left:368.000000pt;}
.x6_c00100{left:378.240000pt;}
.x11_c00100{left:387.840000pt;}
.x3d_c00100{left:395.520000pt;}
.x27_c00100{left:397.440000pt;}
.x21_c00100{left:405.760000pt;}
.x2f_c00100{left:407.040000pt;}
.x41_c00100{left:416.640000pt;}
.x28_c00100{left:426.240000pt;}
.x2d_c00100{left:435.840000pt;}
.x30_c00100{left:444.160000pt;}
.x7_c00100{left:446.080000pt;}
.x42_c00100{left:455.040000pt;}
.x1d_c00100{left:464.640000pt;}
.x32_c00100{left:474.240000pt;}
.x12_c00100{left:475.520000pt;}
.x29_c00100{left:483.840000pt;}
.x4d_c00100{left:492.800000pt;}
.x1e_c00100{left:494.080000pt;}
.x39_c00100{left:503.040000pt;}
.x22_c00100{left:513.280000pt;}
.x2e_c00100{left:523.520000pt;}
.x13_c00100{left:532.480000pt;}
.x3a_c00100{left:533.760000pt;}
.x4f_c00100{left:542.720000pt;}
.x33_c00100{left:551.680000pt;}
.x14_c00100{left:552.960000pt;}
.x43_c00100{left:560.640000pt;}
.x8_c00100{left:561.920000pt;}
.x3b_c00100{left:572.160000pt;}
.x9_c00100{left:581.120000pt;}
.x4a_c00100{left:583.040000pt;}
.x50_c00100{left:588.800000pt;}
.x44_c00100{left:590.080000pt;}
.x51_c00100{left:597.120000pt;}
.x3e_c00100{left:600.960000pt;}
.x1a_c00100{left:602.880000pt;}
.x1f_c00100{left:610.560000pt;}
.x3c_c00100{left:618.240000pt;}
.xa_c00100{left:620.160000pt;}
.x1_c00100{left:622.080000pt;}
.x23_c00100{left:629.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_63e0662a3da535ec79b95f15.woff2')format("woff");}.ff1_c00101{font-family:ff1_c00101;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m69_c00101{transform:matrix(0.239375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239375,0.000000,0.000000,0.250000,0,0);}
.m3e_c00101{transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);}
.m36_c00101{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);}
.m64_c00101{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_c00101{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_c00101{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m67_c00101{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m33_c00101{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m68_c00101{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m62_c00101{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m19_c00101{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00101{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00101{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00101{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m32_c00101{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mb_c00101{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00101{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m3_c00101{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00101{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m0_c00101{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m15_c00101{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);}
.m45_c00101{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m59_c00101{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);}
.m5e_c00101{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m28_c00101{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);}
.m37_c00101{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00101{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);}
.m66_c00101{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m4_c00101{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);}
.m2f_c00101{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2_c00101{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);}
.m24_c00101{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);}
.m11_c00101{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m39_c00101{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m22_c00101{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_c00101{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);}
.m2d_c00101{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m25_c00101{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.ma_c00101{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m38_c00101{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);}
.m1c_c00101{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);}
.m13_c00101{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);}
.m47_c00101{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m35_c00101{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.md_c00101{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m43_c00101{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);}
.m54_c00101{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m23_c00101{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);}
.m1e_c00101{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.mc_c00101{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);}
.m53_c00101{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m44_c00101{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m48_c00101{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);}
.m30_c00101{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00101{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m6_c00101{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_c00101{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);}
.m27_c00101{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m50_c00101{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00101{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00101{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);}
.m3c_c00101{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m31_c00101{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m29_c00101{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);}
.m4d_c00101{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m52_c00101{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00101{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m57_c00101{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m41_c00101{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.mf_c00101{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);}
.m5_c00101{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);}
.me_c00101{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m60_c00101{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00101{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);}
.m3f_c00101{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m46_c00101{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m58_c00101{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_c00101{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00101{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00101{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m42_c00101{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);}
.m55_c00101{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00101{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);}
.m56_c00101{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m10_c00101{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);}
.m40_c00101{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m49_c00101{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m26_c00101{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m21_c00101{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m65_c00101{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m7_c00101{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m51_c00101{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);}
.m14_c00101{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);}
.m18_c00101{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00101{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);}
.m1_c00101{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m20_c00101{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00101{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m34_c00101{transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);}
.m9_c00101{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);}
.m61_c00101{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00101{transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00101{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m63_c00101{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00101{transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00101{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.v1_c00101{vertical-align:-11.520000px;}
.v0_c00101{vertical-align:0.000000px;}
.v2_c00101{vertical-align:8.640000px;}
.ls0_c00101{letter-spacing:0.000000px;}
.sc__c00101{text-shadow:none;}
.sc0_c00101{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00101{-webkit-text-stroke:0px transparent;}
.sc0_c00101{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00101{word-spacing:0.000000px;}
.ws1_c00101{word-spacing:0.459600px;}
.ws0_c00101{word-spacing:4.582800px;}
.fc0_c00101{color:transparent;}
.fsd_c00101{font-size:14.400000px;}
.fs1_c00101{font-size:34.560000px;}
.fsa_c00101{font-size:37.440000px;}
.fsc_c00101{font-size:43.200000px;}
.fs8_c00101{font-size:46.080000px;}
.fs7_c00101{font-size:48.960000px;}
.fs5_c00101{font-size:51.840000px;}
.fse_c00101{font-size:54.720000px;}
.fs3_c00101{font-size:57.600000px;}
.fs2_c00101{font-size:60.480000px;}
.fs4_c00101{font-size:63.360000px;}
.fs9_c00101{font-size:66.240000px;}
.fsb_c00101{font-size:69.120000px;}
.fs6_c00101{font-size:72.000000px;}
.fsf_c00101{font-size:74.880000px;}
.fs0_c00101{font-size:77.760000px;}
.y0_c00101{bottom:0.000000px;}
.y6b_c00101{bottom:49.680000px;}
.y6c_c00101{bottom:51.120000px;}
.y6a_c00101{bottom:51.840000px;}
.y69_c00101{bottom:52.560000px;}
.y75_c00101{bottom:53.280000px;}
.y74_c00101{bottom:57.600000px;}
.y73_c00101{bottom:95.040000px;}
.y72_c00101{bottom:97.200000px;}
.y77_c00101{bottom:126.720000px;}
.y6e_c00101{bottom:127.440000px;}
.y6f_c00101{bottom:128.160000px;}
.y76_c00101{bottom:128.880000px;}
.y71_c00101{bottom:129.600000px;}
.y70_c00101{bottom:130.320000px;}
.y6d_c00101{bottom:131.760000px;}
.y68_c00101{bottom:169.200000px;}
.y67_c00101{bottom:169.920000px;}
.y66_c00101{bottom:171.360000px;}
.y65_c00101{bottom:172.080000px;}
.y64_c00101{bottom:174.240000px;}
.y63_c00101{bottom:174.960000px;}
.y60_c00101{bottom:224.640000px;}
.y62_c00101{bottom:225.360000px;}
.y61_c00101{bottom:226.080000px;}
.y5e_c00101{bottom:226.800000px;}
.y5f_c00101{bottom:227.520000px;}
.y5d_c00101{bottom:265.680000px;}
.y59_c00101{bottom:267.120000px;}
.y58_c00101{bottom:267.840000px;}
.y5c_c00101{bottom:268.560000px;}
.y5b_c00101{bottom:269.280000px;}
.y5a_c00101{bottom:270.000000px;}
.y55_c00101{bottom:307.440000px;}
.y56_c00101{bottom:308.160000px;}
.y57_c00101{bottom:309.600000px;}
.y51_c00101{bottom:310.320000px;}
.y54_c00101{bottom:311.040000px;}
.y53_c00101{bottom:311.760000px;}
.y52_c00101{bottom:312.480000px;}
.y4f_c00101{bottom:350.640000px;}
.y50_c00101{bottom:352.800000px;}
.y4c_c00101{bottom:353.520000px;}
.y4e_c00101{bottom:354.240000px;}
.y4d_c00101{bottom:354.960000px;}
.y4a_c00101{bottom:393.120000px;}
.y48_c00101{bottom:395.280000px;}
.y4b_c00101{bottom:396.000000px;}
.y49_c00101{bottom:396.720000px;}
.y47_c00101{bottom:397.440000px;}
.y46_c00101{bottom:398.880000px;}
.y3c_c00101{bottom:450.000000px;}
.y3a_c00101{bottom:450.720000px;}
.y3b_c00101{bottom:454.320000px;}
.y42_c00101{bottom:490.320000px;}
.y43_c00101{bottom:491.040000px;}
.y45_c00101{bottom:492.480000px;}
.y44_c00101{bottom:493.200000px;}
.y41_c00101{bottom:532.080000px;}
.y3e_c00101{bottom:532.800000px;}
.y3f_c00101{bottom:533.520000px;}
.y40_c00101{bottom:534.960000px;}
.y3d_c00101{bottom:535.680000px;}
.y37_c00101{bottom:574.560000px;}
.y36_c00101{bottom:575.280000px;}
.y38_c00101{bottom:576.720000px;}
.y39_c00101{bottom:577.440000px;}
.y34_c00101{bottom:578.160000px;}
.y35_c00101{bottom:578.880000px;}
.y2e_c00101{bottom:617.040000px;}
.y33_c00101{bottom:617.760000px;}
.y2f_c00101{bottom:618.480000px;}
.y32_c00101{bottom:619.920000px;}
.y30_c00101{bottom:620.640000px;}
.y31_c00101{bottom:621.360000px;}
.y2d_c00101{bottom:660.960000px;}
.y2b_c00101{bottom:661.680000px;}
.y2a_c00101{bottom:663.120000px;}
.y2c_c00101{bottom:663.840000px;}
.y27_c00101{bottom:703.440000px;}
.y29_c00101{bottom:704.160000px;}
.y26_c00101{bottom:705.600000px;}
.y28_c00101{bottom:706.320000px;}
.y21_c00101{bottom:745.200000px;}
.y23_c00101{bottom:745.920000px;}
.y24_c00101{bottom:746.640000px;}
.y22_c00101{bottom:748.800000px;}
.y25_c00101{bottom:749.520000px;}
.y1d_c00101{bottom:788.400000px;}
.y1c_c00101{bottom:789.120000px;}
.y1b_c00101{bottom:790.560000px;}
.y1e_c00101{bottom:791.280000px;}
.y1f_c00101{bottom:792.000000px;}
.y20_c00101{bottom:792.720000px;}
.y19_c00101{bottom:831.600000px;}
.y1a_c00101{bottom:832.320000px;}
.y16_c00101{bottom:833.040000px;}
.y17_c00101{bottom:833.760000px;}
.y18_c00101{bottom:834.480000px;}
.y15_c00101{bottom:874.800000px;}
.y13_c00101{bottom:876.960000px;}
.y14_c00101{bottom:877.680000px;}
.yd_c00101{bottom:926.640000px;}
.ye_c00101{bottom:927.360000px;}
.y11_c00101{bottom:928.080000px;}
.y12_c00101{bottom:928.800000px;}
.y10_c00101{bottom:930.240000px;}
.yf_c00101{bottom:930.960000px;}
.y9_c00101{bottom:970.560000px;}
.ya_c00101{bottom:972.720000px;}
.yc_c00101{bottom:973.440000px;}
.yb_c00101{bottom:974.160000px;}
.y4_c00101{bottom:1012.320000px;}
.y3_c00101{bottom:1013.040000px;}
.y2_c00101{bottom:1014.480000px;}
.y5_c00101{bottom:1015.200000px;}
.y6_c00101{bottom:1015.920000px;}
.y7_c00101{bottom:1016.640000px;}
.y8_c00101{bottom:1017.360000px;}
.y1_c00101{bottom:1095.120000px;}
.h10_c00101{height:12.958594px;}
.h3_c00101{height:31.100625px;}
.hc_c00101{height:33.692344px;}
.hf_c00101{height:38.875781px;}
.ha_c00101{height:41.467500px;}
.h9_c00101{height:44.059219px;}
.h7_c00101{height:46.650937px;}
.h11_c00101{height:49.242656px;}
.h5_c00101{height:51.834375px;}
.h4_c00101{height:54.426094px;}
.he_c00101{height:55.290937px;}
.h6_c00101{height:57.017812px;}
.hb_c00101{height:59.609531px;}
.hd_c00101{height:62.201250px;}
.h8_c00101{height:64.792969px;}
.h12_c00101{height:67.384687px;}
.h2_c00101{height:69.976406px;}
.h0_c00101{height:1153.440000px;}
.h1_c00101{height:1153.500000px;}
.w0_c00101{width:799.200000px;}
.w1_c00101{width:799.500000px;}
.x0_c00101{left:0.000000px;}
.x2c_c00101{left:65.520000px;}
.x2_c00101{left:66.960000px;}
.x31_c00101{left:98.640000px;}
.x3_c00101{left:109.440000px;}
.x25_c00101{left:120.240000px;}
.x4f_c00101{left:129.600000px;}
.x51_c00101{left:131.760000px;}
.x3a_c00101{left:141.120000px;}
.x2d_c00101{left:151.200000px;}
.x3f_c00101{left:163.440000px;}
.x4_c00101{left:173.520000px;}
.x1a_c00101{left:174.960000px;}
.x43_c00101{left:183.600000px;}
.x2e_c00101{left:185.040000px;}
.x3b_c00101{left:194.400000px;}
.x1b_c00101{left:205.200000px;}
.x1e_c00101{left:206.640000px;}
.x5_c00101{left:216.000000px;}
.x47_c00101{left:226.080000px;}
.x14_c00101{left:227.520000px;}
.xe_c00101{left:228.960000px;}
.x1f_c00101{left:238.320000px;}
.x37_c00101{left:248.400000px;}
.x26_c00101{left:259.920000px;}
.xf_c00101{left:270.000000px;}
.x32_c00101{left:280.800000px;}
.x38_c00101{left:301.680000px;}
.x6_c00101{left:303.120000px;}
.x15_c00101{left:313.200000px;}
.x20_c00101{left:324.000000px;}
.x7_c00101{left:334.800000px;}
.x3c_c00101{left:344.880000px;}
.x21_c00101{left:356.400000px;}
.x16_c00101{left:357.840000px;}
.x33_c00101{left:367.200000px;}
.x48_c00101{left:375.840000px;}
.x8_c00101{left:378.000000px;}
.x1c_c00101{left:388.800000px;}
.x50_c00101{left:409.680000px;}
.x10_c00101{left:411.120000px;}
.x39_c00101{left:421.920000px;}
.x27_c00101{left:432.000000px;}
.x17_c00101{left:434.160000px;}
.x11_c00101{left:443.520000px;}
.x9_c00101{left:453.600000px;}
.x22_c00101{left:464.400000px;}
.x18_c00101{left:475.200000px;}
.x44_c00101{left:486.000000px;}
.xa_c00101{left:487.440000px;}
.x40_c00101{left:496.800000px;}
.x3d_c00101{left:498.240000px;}
.x28_c00101{left:507.600000px;}
.x2f_c00101{left:518.400000px;}
.x23_c00101{left:519.840000px;}
.x34_c00101{left:529.200000px;}
.x41_c00101{left:540.720000px;}
.x45_c00101{left:550.800000px;}
.x24_c00101{left:552.240000px;}
.xb_c00101{left:563.040000px;}
.x35_c00101{left:573.840000px;}
.x49_c00101{left:583.200000px;}
.x29_c00101{left:585.360000px;}
.x4a_c00101{left:594.720000px;}
.x19_c00101{left:596.880000px;}
.x12_c00101{left:605.520000px;}
.xc_c00101{left:617.040000px;}
.x46_c00101{left:618.480000px;}
.x42_c00101{left:627.840000px;}
.x2a_c00101{left:639.360000px;}
.x30_c00101{left:650.160000px;}
.x3e_c00101{left:659.520000px;}
.x36_c00101{left:660.960000px;}
.x13_c00101{left:671.760000px;}
.x2b_c00101{left:682.560000px;}
.x1d_c00101{left:692.640000px;}
.x4d_c00101{left:694.080000px;}
.x1_c00101{left:702.000000px;}
.xd_c00101{left:704.160000px;}
.x52_c00101{left:716.400000px;}
.x4b_c00101{left:725.760000px;}
.x4e_c00101{left:737.280000px;}
.x4c_c00101{left:758.160000px;}
@media print{
.v1_c00101{vertical-align:-10.240000pt;}
.v0_c00101{vertical-align:0.000000pt;}
.v2_c00101{vertical-align:7.680000pt;}
.ls0_c00101{letter-spacing:0.000000pt;}
.ws2_c00101{word-spacing:0.000000pt;}
.ws1_c00101{word-spacing:0.408533pt;}
.ws0_c00101{word-spacing:4.073600pt;}
.fsd_c00101{font-size:12.800000pt;}
.fs1_c00101{font-size:30.720000pt;}
.fsa_c00101{font-size:33.280000pt;}
.fsc_c00101{font-size:38.400000pt;}
.fs8_c00101{font-size:40.960000pt;}
.fs7_c00101{font-size:43.520000pt;}
.fs5_c00101{font-size:46.080000pt;}
.fse_c00101{font-size:48.640000pt;}
.fs3_c00101{font-size:51.200000pt;}
.fs2_c00101{font-size:53.760000pt;}
.fs4_c00101{font-size:56.320000pt;}
.fs9_c00101{font-size:58.880000pt;}
.fsb_c00101{font-size:61.440000pt;}
.fs6_c00101{font-size:64.000000pt;}
.fsf_c00101{font-size:66.560000pt;}
.fs0_c00101{font-size:69.120000pt;}
.y0_c00101{bottom:0.000000pt;}
.y6b_c00101{bottom:44.160000pt;}
.y6c_c00101{bottom:45.440000pt;}
.y6a_c00101{bottom:46.080000pt;}
.y69_c00101{bottom:46.720000pt;}
.y75_c00101{bottom:47.360000pt;}
.y74_c00101{bottom:51.200000pt;}
.y73_c00101{bottom:84.480000pt;}
.y72_c00101{bottom:86.400000pt;}
.y77_c00101{bottom:112.640000pt;}
.y6e_c00101{bottom:113.280000pt;}
.y6f_c00101{bottom:113.920000pt;}
.y76_c00101{bottom:114.560000pt;}
.y71_c00101{bottom:115.200000pt;}
.y70_c00101{bottom:115.840000pt;}
.y6d_c00101{bottom:117.120000pt;}
.y68_c00101{bottom:150.400000pt;}
.y67_c00101{bottom:151.040000pt;}
.y66_c00101{bottom:152.320000pt;}
.y65_c00101{bottom:152.960000pt;}
.y64_c00101{bottom:154.880000pt;}
.y63_c00101{bottom:155.520000pt;}
.y60_c00101{bottom:199.680000pt;}
.y62_c00101{bottom:200.320000pt;}
.y61_c00101{bottom:200.960000pt;}
.y5e_c00101{bottom:201.600000pt;}
.y5f_c00101{bottom:202.240000pt;}
.y5d_c00101{bottom:236.160000pt;}
.y59_c00101{bottom:237.440000pt;}
.y58_c00101{bottom:238.080000pt;}
.y5c_c00101{bottom:238.720000pt;}
.y5b_c00101{bottom:239.360000pt;}
.y5a_c00101{bottom:240.000000pt;}
.y55_c00101{bottom:273.280000pt;}
.y56_c00101{bottom:273.920000pt;}
.y57_c00101{bottom:275.200000pt;}
.y51_c00101{bottom:275.840000pt;}
.y54_c00101{bottom:276.480000pt;}
.y53_c00101{bottom:277.120000pt;}
.y52_c00101{bottom:277.760000pt;}
.y4f_c00101{bottom:311.680000pt;}
.y50_c00101{bottom:313.600000pt;}
.y4c_c00101{bottom:314.240000pt;}
.y4e_c00101{bottom:314.880000pt;}
.y4d_c00101{bottom:315.520000pt;}
.y4a_c00101{bottom:349.440000pt;}
.y48_c00101{bottom:351.360000pt;}
.y4b_c00101{bottom:352.000000pt;}
.y49_c00101{bottom:352.640000pt;}
.y47_c00101{bottom:353.280000pt;}
.y46_c00101{bottom:354.560000pt;}
.y3c_c00101{bottom:400.000000pt;}
.y3a_c00101{bottom:400.640000pt;}
.y3b_c00101{bottom:403.840000pt;}
.y42_c00101{bottom:435.840000pt;}
.y43_c00101{bottom:436.480000pt;}
.y45_c00101{bottom:437.760000pt;}
.y44_c00101{bottom:438.400000pt;}
.y41_c00101{bottom:472.960000pt;}
.y3e_c00101{bottom:473.600000pt;}
.y3f_c00101{bottom:474.240000pt;}
.y40_c00101{bottom:475.520000pt;}
.y3d_c00101{bottom:476.160000pt;}
.y37_c00101{bottom:510.720000pt;}
.y36_c00101{bottom:511.360000pt;}
.y38_c00101{bottom:512.640000pt;}
.y39_c00101{bottom:513.280000pt;}
.y34_c00101{bottom:513.920000pt;}
.y35_c00101{bottom:514.560000pt;}
.y2e_c00101{bottom:548.480000pt;}
.y33_c00101{bottom:549.120000pt;}
.y2f_c00101{bottom:549.760000pt;}
.y32_c00101{bottom:551.040000pt;}
.y30_c00101{bottom:551.680000pt;}
.y31_c00101{bottom:552.320000pt;}
.y2d_c00101{bottom:587.520000pt;}
.y2b_c00101{bottom:588.160000pt;}
.y2a_c00101{bottom:589.440000pt;}
.y2c_c00101{bottom:590.080000pt;}
.y27_c00101{bottom:625.280000pt;}
.y29_c00101{bottom:625.920000pt;}
.y26_c00101{bottom:627.200000pt;}
.y28_c00101{bottom:627.840000pt;}
.y21_c00101{bottom:662.400000pt;}
.y23_c00101{bottom:663.040000pt;}
.y24_c00101{bottom:663.680000pt;}
.y22_c00101{bottom:665.600000pt;}
.y25_c00101{bottom:666.240000pt;}
.y1d_c00101{bottom:700.800000pt;}
.y1c_c00101{bottom:701.440000pt;}
.y1b_c00101{bottom:702.720000pt;}
.y1e_c00101{bottom:703.360000pt;}
.y1f_c00101{bottom:704.000000pt;}
.y20_c00101{bottom:704.640000pt;}
.y19_c00101{bottom:739.200000pt;}
.y1a_c00101{bottom:739.840000pt;}
.y16_c00101{bottom:740.480000pt;}
.y17_c00101{bottom:741.120000pt;}
.y18_c00101{bottom:741.760000pt;}
.y15_c00101{bottom:777.600000pt;}
.y13_c00101{bottom:779.520000pt;}
.y14_c00101{bottom:780.160000pt;}
.yd_c00101{bottom:823.680000pt;}
.ye_c00101{bottom:824.320000pt;}
.y11_c00101{bottom:824.960000pt;}
.y12_c00101{bottom:825.600000pt;}
.y10_c00101{bottom:826.880000pt;}
.yf_c00101{bottom:827.520000pt;}
.y9_c00101{bottom:862.720000pt;}
.ya_c00101{bottom:864.640000pt;}
.yc_c00101{bottom:865.280000pt;}
.yb_c00101{bottom:865.920000pt;}
.y4_c00101{bottom:899.840000pt;}
.y3_c00101{bottom:900.480000pt;}
.y2_c00101{bottom:901.760000pt;}
.y5_c00101{bottom:902.400000pt;}
.y6_c00101{bottom:903.040000pt;}
.y7_c00101{bottom:903.680000pt;}
.y8_c00101{bottom:904.320000pt;}
.y1_c00101{bottom:973.440000pt;}
.h10_c00101{height:11.518750pt;}
.h3_c00101{height:27.645000pt;}
.hc_c00101{height:29.948750pt;}
.hf_c00101{height:34.556250pt;}
.ha_c00101{height:36.860000pt;}
.h9_c00101{height:39.163750pt;}
.h7_c00101{height:41.467500pt;}
.h11_c00101{height:43.771250pt;}
.h5_c00101{height:46.075000pt;}
.h4_c00101{height:48.378750pt;}
.he_c00101{height:49.147500pt;}
.h6_c00101{height:50.682500pt;}
.hb_c00101{height:52.986250pt;}
.hd_c00101{height:55.290000pt;}
.h8_c00101{height:57.593750pt;}
.h12_c00101{height:59.897500pt;}
.h2_c00101{height:62.201250pt;}
.h0_c00101{height:1025.280000pt;}
.h1_c00101{height:1025.333333pt;}
.w0_c00101{width:710.400000pt;}
.w1_c00101{width:710.666667pt;}
.x0_c00101{left:0.000000pt;}
.x2c_c00101{left:58.240000pt;}
.x2_c00101{left:59.520000pt;}
.x31_c00101{left:87.680000pt;}
.x3_c00101{left:97.280000pt;}
.x25_c00101{left:106.880000pt;}
.x4f_c00101{left:115.200000pt;}
.x51_c00101{left:117.120000pt;}
.x3a_c00101{left:125.440000pt;}
.x2d_c00101{left:134.400000pt;}
.x3f_c00101{left:145.280000pt;}
.x4_c00101{left:154.240000pt;}
.x1a_c00101{left:155.520000pt;}
.x43_c00101{left:163.200000pt;}
.x2e_c00101{left:164.480000pt;}
.x3b_c00101{left:172.800000pt;}
.x1b_c00101{left:182.400000pt;}
.x1e_c00101{left:183.680000pt;}
.x5_c00101{left:192.000000pt;}
.x47_c00101{left:200.960000pt;}
.x14_c00101{left:202.240000pt;}
.xe_c00101{left:203.520000pt;}
.x1f_c00101{left:211.840000pt;}
.x37_c00101{left:220.800000pt;}
.x26_c00101{left:231.040000pt;}
.xf_c00101{left:240.000000pt;}
.x32_c00101{left:249.600000pt;}
.x38_c00101{left:268.160000pt;}
.x6_c00101{left:269.440000pt;}
.x15_c00101{left:278.400000pt;}
.x20_c00101{left:288.000000pt;}
.x7_c00101{left:297.600000pt;}
.x3c_c00101{left:306.560000pt;}
.x21_c00101{left:316.800000pt;}
.x16_c00101{left:318.080000pt;}
.x33_c00101{left:326.400000pt;}
.x48_c00101{left:334.080000pt;}
.x8_c00101{left:336.000000pt;}
.x1c_c00101{left:345.600000pt;}
.x50_c00101{left:364.160000pt;}
.x10_c00101{left:365.440000pt;}
.x39_c00101{left:375.040000pt;}
.x27_c00101{left:384.000000pt;}
.x17_c00101{left:385.920000pt;}
.x11_c00101{left:394.240000pt;}
.x9_c00101{left:403.200000pt;}
.x22_c00101{left:412.800000pt;}
.x18_c00101{left:422.400000pt;}
.x44_c00101{left:432.000000pt;}
.xa_c00101{left:433.280000pt;}
.x40_c00101{left:441.600000pt;}
.x3d_c00101{left:442.880000pt;}
.x28_c00101{left:451.200000pt;}
.x2f_c00101{left:460.800000pt;}
.x23_c00101{left:462.080000pt;}
.x34_c00101{left:470.400000pt;}
.x41_c00101{left:480.640000pt;}
.x45_c00101{left:489.600000pt;}
.x24_c00101{left:490.880000pt;}
.xb_c00101{left:500.480000pt;}
.x35_c00101{left:510.080000pt;}
.x49_c00101{left:518.400000pt;}
.x29_c00101{left:520.320000pt;}
.x4a_c00101{left:528.640000pt;}
.x19_c00101{left:530.560000pt;}
.x12_c00101{left:538.240000pt;}
.xc_c00101{left:548.480000pt;}
.x46_c00101{left:549.760000pt;}
.x42_c00101{left:558.080000pt;}
.x2a_c00101{left:568.320000pt;}
.x30_c00101{left:577.920000pt;}
.x3e_c00101{left:586.240000pt;}
.x36_c00101{left:587.520000pt;}
.x13_c00101{left:597.120000pt;}
.x2b_c00101{left:606.720000pt;}
.x1d_c00101{left:615.680000pt;}
.x4d_c00101{left:616.960000pt;}
.x1_c00101{left:624.000000pt;}
.xd_c00101{left:625.920000pt;}
.x52_c00101{left:636.800000pt;}
.x4b_c00101{left:645.120000pt;}
.x4e_c00101{left:655.360000pt;}
.x4c_c00101{left:673.920000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3aba63bdc1f7573c1efe8a35.woff2')format("woff");}.ff1_c00102{font-family:ff1_c00102;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3a_c00102{transform:matrix(0.171550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171550,0.000000,0.000000,0.250000,0,0);}
.m41_c00102{transform:matrix(0.185175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185175,0.000000,0.000000,0.250000,0,0);}
.m1c_c00102{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m19_c00102{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);}
.mf_c00102{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);}
.me_c00102{transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00102{transform:matrix(0.241350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241350,0.000000,0.000000,0.250000,0,0);}
.m10_c00102{transform:matrix(0.242075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242075,0.000000,0.000000,0.250000,0,0);}
.m4e_c00102{transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);}
.m4d_c00102{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m6_c00102{transform:matrix(0.245600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245600,0.000000,0.000000,0.250000,0,0);}
.m3d_c00102{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00102{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m3c_c00102{transform:matrix(0.247900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247900,0.000000,0.000000,0.250000,0,0);}
.m9_c00102{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m2_c00102{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m14_c00102{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00102{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m15_c00102{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m34_c00102{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m12_c00102{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m30_c00102{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00102{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m31_c00102{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00102{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m16_c00102{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m4_c00102{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m49_c00102{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m3_c00102{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m20_c00102{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m0_c00102{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m7_c00102{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m32_c00102{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m44_c00102{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m13_c00102{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m45_c00102{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.ma_c00102{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00102{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m40_c00102{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00102{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00102{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m18_c00102{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m25_c00102{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);}
.m48_c00102{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);}
.m4c_c00102{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);}
.m35_c00102{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m11_c00102{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m23_c00102{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m29_c00102{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m21_c00102{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m42_c00102{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);}
.m46_c00102{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m33_c00102{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);}
.m27_c00102{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);}
.m8_c00102{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);}
.m5_c00102{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00102{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);}
.m2d_c00102{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_c00102{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00102{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m39_c00102{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);}
.m36_c00102{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);}
.m38_c00102{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00102{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.mb_c00102{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m22_c00102{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m43_c00102{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);}
.m26_c00102{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.mc_c00102{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m37_c00102{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);}
.m2f_c00102{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);}
.m2b_c00102{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);}
.m24_c00102{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m28_c00102{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m17_c00102{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00102{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m47_c00102{transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);}
.m1_c00102{transform:matrix(0.745000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.745000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.745000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00102{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.md_c00102{transform:matrix(0.947500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.947500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.947500,0.000000,0.000000,0.250000,0,0);}
.v5_c00102{vertical-align:-8.640000px;}
.v6_c00102{vertical-align:-5.760000px;}
.v4_c00102{vertical-align:-2.880000px;}
.v0_c00102{vertical-align:0.000000px;}
.v2_c00102{vertical-align:2.880000px;}
.v1_c00102{vertical-align:5.760000px;}
.v3_c00102{vertical-align:8.640000px;}
.ls4_c00102{letter-spacing:0.000000px;}
.ls1_c00102{letter-spacing:40.309680px;}
.ls0_c00102{letter-spacing:42.841680px;}
.ls2_c00102{letter-spacing:151.176960px;}
.ls3_c00102{letter-spacing:159.049680px;}
.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;}
}
.ws1_c00102{word-spacing:-4.296960px;}
.ws4_c00102{word-spacing:0.000000px;}
.ws2_c00102{word-spacing:14.238000px;}
.ws0_c00102{word-spacing:14.393376px;}
.ws3_c00102{word-spacing:179.499600px;}
.fc0_c00102{color:transparent;}
.fs1_c00102{font-size:34.560000px;}
.fs6_c00102{font-size:37.440000px;}
.fse_c00102{font-size:40.320000px;}
.fsc_c00102{font-size:46.080000px;}
.fsa_c00102{font-size:48.960000px;}
.fs5_c00102{font-size:51.840000px;}
.fsb_c00102{font-size:54.720000px;}
.fs8_c00102{font-size:57.600000px;}
.fs0_c00102{font-size:60.480000px;}
.fs4_c00102{font-size:63.360000px;}
.fsd_c00102{font-size:66.240000px;}
.fs3_c00102{font-size:69.120000px;}
.fs9_c00102{font-size:72.000000px;}
.fs2_c00102{font-size:74.880000px;}
.fs7_c00102{font-size:77.760000px;}
.fsf_c00102{font-size:100.800000px;}
.y0_c00102{bottom:0.000000px;}
.y7d_c00102{bottom:118.800000px;}
.y5e_c00102{bottom:119.520000px;}
.y7e_c00102{bottom:120.240000px;}
.y7c_c00102{bottom:120.960000px;}
.y5c_c00102{bottom:121.680000px;}
.y5d_c00102{bottom:122.400000px;}
.y5b_c00102{bottom:125.280000px;}
.y7b_c00102{bottom:162.720000px;}
.y5a_c00102{bottom:163.440000px;}
.y59_c00102{bottom:164.880000px;}
.y7a_c00102{bottom:165.600000px;}
.y79_c00102{bottom:167.040000px;}
.y58_c00102{bottom:167.760000px;}
.y57_c00102{bottom:205.920000px;}
.y78_c00102{bottom:206.640000px;}
.y55_c00102{bottom:207.360000px;}
.y56_c00102{bottom:208.080000px;}
.y77_c00102{bottom:208.800000px;}
.y54_c00102{bottom:210.240000px;}
.y75_c00102{bottom:249.120000px;}
.y52_c00102{bottom:249.840000px;}
.y53_c00102{bottom:250.560000px;}
.y76_c00102{bottom:251.280000px;}
.y74_c00102{bottom:252.000000px;}
.y51_c00102{bottom:252.720000px;}
.y73_c00102{bottom:292.320000px;}
.y50_c00102{bottom:293.040000px;}
.y71_c00102{bottom:293.760000px;}
.y72_c00102{bottom:294.480000px;}
.y4f_c00102{bottom:295.920000px;}
.y70_c00102{bottom:334.800000px;}
.y4e_c00102{bottom:335.520000px;}
.y4d_c00102{bottom:336.240000px;}
.y6f_c00102{bottom:336.960000px;}
.y4c_c00102{bottom:338.400000px;}
.y4b_c00102{bottom:371.520000px;}
.y49_c00102{bottom:378.000000px;}
.y4a_c00102{bottom:380.880000px;}
.y48_c00102{bottom:381.600000px;}
.y47_c00102{bottom:420.480000px;}
.y6e_c00102{bottom:421.200000px;}
.y6d_c00102{bottom:421.920000px;}
.y6c_c00102{bottom:422.640000px;}
.y43_c00102{bottom:423.360000px;}
.y45_c00102{bottom:424.800000px;}
.y44_c00102{bottom:425.520000px;}
.y46_c00102{bottom:426.240000px;}
.y41_c00102{bottom:464.400000px;}
.y42_c00102{bottom:465.120000px;}
.y6a_c00102{bottom:465.840000px;}
.y6b_c00102{bottom:466.560000px;}
.y40_c00102{bottom:467.280000px;}
.y3e_c00102{bottom:507.600000px;}
.y69_c00102{bottom:508.320000px;}
.y3f_c00102{bottom:509.040000px;}
.y3d_c00102{bottom:510.480000px;}
.y3c_c00102{bottom:550.080000px;}
.y3b_c00102{bottom:550.800000px;}
.y66_c00102{bottom:551.520000px;}
.y3a_c00102{bottom:552.240000px;}
.y68_c00102{bottom:552.960000px;}
.y65_c00102{bottom:553.680000px;}
.y67_c00102{bottom:554.400000px;}
.y38_c00102{bottom:593.280000px;}
.y39_c00102{bottom:594.000000px;}
.y37_c00102{bottom:594.720000px;}
.y63_c00102{bottom:595.440000px;}
.y64_c00102{bottom:596.160000px;}
.y33_c00102{bottom:635.760000px;}
.y36_c00102{bottom:636.480000px;}
.y34_c00102{bottom:637.200000px;}
.y32_c00102{bottom:637.920000px;}
.y62_c00102{bottom:638.640000px;}
.y35_c00102{bottom:640.080000px;}
.y2c_c00102{bottom:678.240000px;}
.y31_c00102{bottom:678.960000px;}
.y2f_c00102{bottom:679.680000px;}
.y2d_c00102{bottom:680.400000px;}
.y2b_c00102{bottom:681.120000px;}
.y30_c00102{bottom:681.840000px;}
.y2e_c00102{bottom:682.560000px;}
.y29_c00102{bottom:725.040000px;}
.y2a_c00102{bottom:725.760000px;}
.y27_c00102{bottom:754.560000px;}
.y28_c00102{bottom:755.280000px;}
.y25_c00102{bottom:756.000000px;}
.y61_c00102{bottom:756.720000px;}
.y26_c00102{bottom:757.440000px;}
.y22_c00102{bottom:795.600000px;}
.y21_c00102{bottom:797.760000px;}
.y5f_c00102{bottom:799.200000px;}
.y24_c00102{bottom:799.920000px;}
.y23_c00102{bottom:800.640000px;}
.y60_c00102{bottom:801.360000px;}
.y10_c00102{bottom:838.800000px;}
.yf_c00102{bottom:840.240000px;}
.y20_c00102{bottom:840.960000px;}
.y1e_c00102{bottom:841.680000px;}
.y1f_c00102{bottom:842.400000px;}
.ye_c00102{bottom:881.280000px;}
.yd_c00102{bottom:884.160000px;}
.y17_c00102{bottom:885.600000px;}
.y1c_c00102{bottom:886.320000px;}
.y1d_c00102{bottom:887.040000px;}
.y9_c00102{bottom:924.480000px;}
.ya_c00102{bottom:925.920000px;}
.y8_c00102{bottom:926.640000px;}
.yb_c00102{bottom:927.360000px;}
.y16_c00102{bottom:928.800000px;}
.yc_c00102{bottom:929.520000px;}
.y1b_c00102{bottom:930.240000px;}
.y5_c00102{bottom:967.680000px;}
.y4_c00102{bottom:968.400000px;}
.y7_c00102{bottom:969.840000px;}
.y6_c00102{bottom:970.560000px;}
.y14_c00102{bottom:971.280000px;}
.y18_c00102{bottom:972.000000px;}
.y15_c00102{bottom:972.720000px;}
.y19_c00102{bottom:973.440000px;}
.y1a_c00102{bottom:974.160000px;}
.y2_c00102{bottom:1010.880000px;}
.y1_c00102{bottom:1012.320000px;}
.y3_c00102{bottom:1013.760000px;}
.y12_c00102{bottom:1015.200000px;}
.y13_c00102{bottom:1016.640000px;}
.y11_c00102{bottom:1108.080000px;}
.h3_c00102{height:31.100625px;}
.h8_c00102{height:33.692344px;}
.h11_c00102{height:36.284062px;}
.hf_c00102{height:41.467500px;}
.hc_c00102{height:44.059219px;}
.h7_c00102{height:46.650937px;}
.hd_c00102{height:49.242656px;}
.ha_c00102{height:51.834375px;}
.h2_c00102{height:54.426094px;}
.he_c00102{height:55.002656px;}
.h6_c00102{height:57.017812px;}
.h13_c00102{height:57.882656px;}
.h10_c00102{height:59.609531px;}
.h5_c00102{height:62.201250px;}
.hb_c00102{height:64.792969px;}
.h4_c00102{height:67.384687px;}
.h9_c00102{height:69.976406px;}
.h12_c00102{height:90.710156px;}
.h0_c00102{height:1152.720000px;}
.h1_c00102{height:1152.750000px;}
.w0_c00102{width:798.480000px;}
.w1_c00102{width:798.750000px;}
.x0_c00102{left:0.000000px;}
.x23_c00102{left:77.760000px;}
.x1_c00102{left:79.920000px;}
.x2_c00102{left:113.040000px;}
.x7_c00102{left:131.760000px;}
.x25_c00102{left:141.120000px;}
.x3_c00102{left:142.560000px;}
.x1f_c00102{left:152.640000px;}
.x15_c00102{left:154.080000px;}
.x29_c00102{left:185.040000px;}
.x1c_c00102{left:196.560000px;}
.x20_c00102{left:206.640000px;}
.x2a_c00102{left:216.720000px;}
.x33_c00102{left:227.520000px;}
.x4_c00102{left:228.960000px;}
.x16_c00102{left:239.040000px;}
.x13_c00102{left:249.840000px;}
.x8_c00102{left:261.360000px;}
.x30_c00102{left:270.000000px;}
.x14_c00102{left:271.440000px;}
.x24_c00102{left:280.800000px;}
.x21_c00102{left:282.240000px;}
.x2b_c00102{left:292.320000px;}
.x17_c00102{left:303.840000px;}
.x2c_c00102{left:313.920000px;}
.x22_c00102{left:336.240000px;}
.x2d_c00102{left:344.880000px;}
.x31_c00102{left:356.400000px;}
.x5_c00102{left:358.560000px;}
.x9_c00102{left:369.360000px;}
.x18_c00102{left:379.440000px;}
.x32_c00102{left:389.520000px;}
.x6_c00102{left:390.960000px;}
.x26_c00102{left:401.040000px;}
.x2e_c00102{left:410.400000px;}
.x27_c00102{left:421.920000px;}
.xa_c00102{left:423.360000px;}
.x19_c00102{left:453.600000px;}
.x28_c00102{left:464.400000px;}
.x1d_c00102{left:465.840000px;}
.x2f_c00102{left:475.920000px;}
.x1a_c00102{left:498.960000px;}
.x1e_c00102{left:508.320000px;}
.x3c_c00102{left:563.040000px;}
.x1b_c00102{left:564.480000px;}
.x35_c00102{left:575.280000px;}
.xc_c00102{left:576.720000px;}
.x3d_c00102{left:594.720000px;}
.x37_c00102{left:596.160000px;}
.xf_c00102{left:597.600000px;}
.x3e_c00102{left:616.320000px;}
.xd_c00102{left:618.480000px;}
.x3b_c00102{left:628.560000px;}
.x36_c00102{left:650.160000px;}
.x10_c00102{left:651.600000px;}
.x39_c00102{left:684.000000px;}
.x11_c00102{left:685.440000px;}
.xb_c00102{left:688.320000px;}
.x34_c00102{left:717.840000px;}
.x38_c00102{left:726.480000px;}
.xe_c00102{left:727.920000px;}
.x3a_c00102{left:748.080000px;}
.x12_c00102{left:749.520000px;}
@media print{
.v5_c00102{vertical-align:-7.680000pt;}
.v6_c00102{vertical-align:-5.120000pt;}
.v4_c00102{vertical-align:-2.560000pt;}
.v0_c00102{vertical-align:0.000000pt;}
.v2_c00102{vertical-align:2.560000pt;}
.v1_c00102{vertical-align:5.120000pt;}
.v3_c00102{vertical-align:7.680000pt;}
.ls4_c00102{letter-spacing:0.000000pt;}
.ls1_c00102{letter-spacing:35.830827pt;}
.ls0_c00102{letter-spacing:38.081493pt;}
.ls2_c00102{letter-spacing:134.379520pt;}
.ls3_c00102{letter-spacing:141.377493pt;}
.ws1_c00102{word-spacing:-3.819520pt;}
.ws4_c00102{word-spacing:0.000000pt;}
.ws2_c00102{word-spacing:12.656000pt;}
.ws0_c00102{word-spacing:12.794112pt;}
.ws3_c00102{word-spacing:159.555200pt;}
.fs1_c00102{font-size:30.720000pt;}
.fs6_c00102{font-size:33.280000pt;}
.fse_c00102{font-size:35.840000pt;}
.fsc_c00102{font-size:40.960000pt;}
.fsa_c00102{font-size:43.520000pt;}
.fs5_c00102{font-size:46.080000pt;}
.fsb_c00102{font-size:48.640000pt;}
.fs8_c00102{font-size:51.200000pt;}
.fs0_c00102{font-size:53.760000pt;}
.fs4_c00102{font-size:56.320000pt;}
.fsd_c00102{font-size:58.880000pt;}
.fs3_c00102{font-size:61.440000pt;}
.fs9_c00102{font-size:64.000000pt;}
.fs2_c00102{font-size:66.560000pt;}
.fs7_c00102{font-size:69.120000pt;}
.fsf_c00102{font-size:89.600000pt;}
.y0_c00102{bottom:0.000000pt;}
.y7d_c00102{bottom:105.600000pt;}
.y5e_c00102{bottom:106.240000pt;}
.y7e_c00102{bottom:106.880000pt;}
.y7c_c00102{bottom:107.520000pt;}
.y5c_c00102{bottom:108.160000pt;}
.y5d_c00102{bottom:108.800000pt;}
.y5b_c00102{bottom:111.360000pt;}
.y7b_c00102{bottom:144.640000pt;}
.y5a_c00102{bottom:145.280000pt;}
.y59_c00102{bottom:146.560000pt;}
.y7a_c00102{bottom:147.200000pt;}
.y79_c00102{bottom:148.480000pt;}
.y58_c00102{bottom:149.120000pt;}
.y57_c00102{bottom:183.040000pt;}
.y78_c00102{bottom:183.680000pt;}
.y55_c00102{bottom:184.320000pt;}
.y56_c00102{bottom:184.960000pt;}
.y77_c00102{bottom:185.600000pt;}
.y54_c00102{bottom:186.880000pt;}
.y75_c00102{bottom:221.440000pt;}
.y52_c00102{bottom:222.080000pt;}
.y53_c00102{bottom:222.720000pt;}
.y76_c00102{bottom:223.360000pt;}
.y74_c00102{bottom:224.000000pt;}
.y51_c00102{bottom:224.640000pt;}
.y73_c00102{bottom:259.840000pt;}
.y50_c00102{bottom:260.480000pt;}
.y71_c00102{bottom:261.120000pt;}
.y72_c00102{bottom:261.760000pt;}
.y4f_c00102{bottom:263.040000pt;}
.y70_c00102{bottom:297.600000pt;}
.y4e_c00102{bottom:298.240000pt;}
.y4d_c00102{bottom:298.880000pt;}
.y6f_c00102{bottom:299.520000pt;}
.y4c_c00102{bottom:300.800000pt;}
.y4b_c00102{bottom:330.240000pt;}
.y49_c00102{bottom:336.000000pt;}
.y4a_c00102{bottom:338.560000pt;}
.y48_c00102{bottom:339.200000pt;}
.y47_c00102{bottom:373.760000pt;}
.y6e_c00102{bottom:374.400000pt;}
.y6d_c00102{bottom:375.040000pt;}
.y6c_c00102{bottom:375.680000pt;}
.y43_c00102{bottom:376.320000pt;}
.y45_c00102{bottom:377.600000pt;}
.y44_c00102{bottom:378.240000pt;}
.y46_c00102{bottom:378.880000pt;}
.y41_c00102{bottom:412.800000pt;}
.y42_c00102{bottom:413.440000pt;}
.y6a_c00102{bottom:414.080000pt;}
.y6b_c00102{bottom:414.720000pt;}
.y40_c00102{bottom:415.360000pt;}
.y3e_c00102{bottom:451.200000pt;}
.y69_c00102{bottom:451.840000pt;}
.y3f_c00102{bottom:452.480000pt;}
.y3d_c00102{bottom:453.760000pt;}
.y3c_c00102{bottom:488.960000pt;}
.y3b_c00102{bottom:489.600000pt;}
.y66_c00102{bottom:490.240000pt;}
.y3a_c00102{bottom:490.880000pt;}
.y68_c00102{bottom:491.520000pt;}
.y65_c00102{bottom:492.160000pt;}
.y67_c00102{bottom:492.800000pt;}
.y38_c00102{bottom:527.360000pt;}
.y39_c00102{bottom:528.000000pt;}
.y37_c00102{bottom:528.640000pt;}
.y63_c00102{bottom:529.280000pt;}
.y64_c00102{bottom:529.920000pt;}
.y33_c00102{bottom:565.120000pt;}
.y36_c00102{bottom:565.760000pt;}
.y34_c00102{bottom:566.400000pt;}
.y32_c00102{bottom:567.040000pt;}
.y62_c00102{bottom:567.680000pt;}
.y35_c00102{bottom:568.960000pt;}
.y2c_c00102{bottom:602.880000pt;}
.y31_c00102{bottom:603.520000pt;}
.y2f_c00102{bottom:604.160000pt;}
.y2d_c00102{bottom:604.800000pt;}
.y2b_c00102{bottom:605.440000pt;}
.y30_c00102{bottom:606.080000pt;}
.y2e_c00102{bottom:606.720000pt;}
.y29_c00102{bottom:644.480000pt;}
.y2a_c00102{bottom:645.120000pt;}
.y27_c00102{bottom:670.720000pt;}
.y28_c00102{bottom:671.360000pt;}
.y25_c00102{bottom:672.000000pt;}
.y61_c00102{bottom:672.640000pt;}
.y26_c00102{bottom:673.280000pt;}
.y22_c00102{bottom:707.200000pt;}
.y21_c00102{bottom:709.120000pt;}
.y5f_c00102{bottom:710.400000pt;}
.y24_c00102{bottom:711.040000pt;}
.y23_c00102{bottom:711.680000pt;}
.y60_c00102{bottom:712.320000pt;}
.y10_c00102{bottom:745.600000pt;}
.yf_c00102{bottom:746.880000pt;}
.y20_c00102{bottom:747.520000pt;}
.y1e_c00102{bottom:748.160000pt;}
.y1f_c00102{bottom:748.800000pt;}
.ye_c00102{bottom:783.360000pt;}
.yd_c00102{bottom:785.920000pt;}
.y17_c00102{bottom:787.200000pt;}
.y1c_c00102{bottom:787.840000pt;}
.y1d_c00102{bottom:788.480000pt;}
.y9_c00102{bottom:821.760000pt;}
.ya_c00102{bottom:823.040000pt;}
.y8_c00102{bottom:823.680000pt;}
.yb_c00102{bottom:824.320000pt;}
.y16_c00102{bottom:825.600000pt;}
.yc_c00102{bottom:826.240000pt;}
.y1b_c00102{bottom:826.880000pt;}
.y5_c00102{bottom:860.160000pt;}
.y4_c00102{bottom:860.800000pt;}
.y7_c00102{bottom:862.080000pt;}
.y6_c00102{bottom:862.720000pt;}
.y14_c00102{bottom:863.360000pt;}
.y18_c00102{bottom:864.000000pt;}
.y15_c00102{bottom:864.640000pt;}
.y19_c00102{bottom:865.280000pt;}
.y1a_c00102{bottom:865.920000pt;}
.y2_c00102{bottom:898.560000pt;}
.y1_c00102{bottom:899.840000pt;}
.y3_c00102{bottom:901.120000pt;}
.y12_c00102{bottom:902.400000pt;}
.y13_c00102{bottom:903.680000pt;}
.y11_c00102{bottom:984.960000pt;}
.h3_c00102{height:27.645000pt;}
.h8_c00102{height:29.948750pt;}
.h11_c00102{height:32.252500pt;}
.hf_c00102{height:36.860000pt;}
.hc_c00102{height:39.163750pt;}
.h7_c00102{height:41.467500pt;}
.hd_c00102{height:43.771250pt;}
.ha_c00102{height:46.075000pt;}
.h2_c00102{height:48.378750pt;}
.he_c00102{height:48.891250pt;}
.h6_c00102{height:50.682500pt;}
.h13_c00102{height:51.451250pt;}
.h10_c00102{height:52.986250pt;}
.h5_c00102{height:55.290000pt;}
.hb_c00102{height:57.593750pt;}
.h4_c00102{height:59.897500pt;}
.h9_c00102{height:62.201250pt;}
.h12_c00102{height:80.631250pt;}
.h0_c00102{height:1024.640000pt;}
.h1_c00102{height:1024.666667pt;}
.w0_c00102{width:709.760000pt;}
.w1_c00102{width:710.000000pt;}
.x0_c00102{left:0.000000pt;}
.x23_c00102{left:69.120000pt;}
.x1_c00102{left:71.040000pt;}
.x2_c00102{left:100.480000pt;}
.x7_c00102{left:117.120000pt;}
.x25_c00102{left:125.440000pt;}
.x3_c00102{left:126.720000pt;}
.x1f_c00102{left:135.680000pt;}
.x15_c00102{left:136.960000pt;}
.x29_c00102{left:164.480000pt;}
.x1c_c00102{left:174.720000pt;}
.x20_c00102{left:183.680000pt;}
.x2a_c00102{left:192.640000pt;}
.x33_c00102{left:202.240000pt;}
.x4_c00102{left:203.520000pt;}
.x16_c00102{left:212.480000pt;}
.x13_c00102{left:222.080000pt;}
.x8_c00102{left:232.320000pt;}
.x30_c00102{left:240.000000pt;}
.x14_c00102{left:241.280000pt;}
.x24_c00102{left:249.600000pt;}
.x21_c00102{left:250.880000pt;}
.x2b_c00102{left:259.840000pt;}
.x17_c00102{left:270.080000pt;}
.x2c_c00102{left:279.040000pt;}
.x22_c00102{left:298.880000pt;}
.x2d_c00102{left:306.560000pt;}
.x31_c00102{left:316.800000pt;}
.x5_c00102{left:318.720000pt;}
.x9_c00102{left:328.320000pt;}
.x18_c00102{left:337.280000pt;}
.x32_c00102{left:346.240000pt;}
.x6_c00102{left:347.520000pt;}
.x26_c00102{left:356.480000pt;}
.x2e_c00102{left:364.800000pt;}
.x27_c00102{left:375.040000pt;}
.xa_c00102{left:376.320000pt;}
.x19_c00102{left:403.200000pt;}
.x28_c00102{left:412.800000pt;}
.x1d_c00102{left:414.080000pt;}
.x2f_c00102{left:423.040000pt;}
.x1a_c00102{left:443.520000pt;}
.x1e_c00102{left:451.840000pt;}
.x3c_c00102{left:500.480000pt;}
.x1b_c00102{left:501.760000pt;}
.x35_c00102{left:511.360000pt;}
.xc_c00102{left:512.640000pt;}
.x3d_c00102{left:528.640000pt;}
.x37_c00102{left:529.920000pt;}
.xf_c00102{left:531.200000pt;}
.x3e_c00102{left:547.840000pt;}
.xd_c00102{left:549.760000pt;}
.x3b_c00102{left:558.720000pt;}
.x36_c00102{left:577.920000pt;}
.x10_c00102{left:579.200000pt;}
.x39_c00102{left:608.000000pt;}
.x11_c00102{left:609.280000pt;}
.xb_c00102{left:611.840000pt;}
.x34_c00102{left:638.080000pt;}
.x38_c00102{left:645.760000pt;}
.xe_c00102{left:647.040000pt;}
.x3a_c00102{left:664.960000pt;}
.x12_c00102{left:666.240000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1b5f12692abb1b0fae20a7c3.woff2')format("woff");}.ff1_c00103{font-family:ff1_c00103;line-height:1.109863;font-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_c00103{transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);}
.m41_c00103{transform:matrix(0.196625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196625,0.000000,0.000000,0.250000,0,0);}
.m22_c00103{transform:matrix(0.225425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225425,0.000000,0.000000,0.250000,0,0);}
.m2a_c00103{transform:matrix(0.232475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232475,0.000000,0.000000,0.250000,0,0);}
.m3b_c00103{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m31_c00103{transform:matrix(0.238450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238450,0.000000,0.000000,0.250000,0,0);}
.m2_c00103{transform:matrix(0.240975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240975,0.000000,0.000000,0.250000,0,0);}
.m1d_c00103{transform:matrix(0.244425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244425,0.000000,0.000000,0.250000,0,0);}
.m28_c00103{transform:matrix(0.244525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244525,0.000000,0.000000,0.250000,0,0);}
.m37_c00103{transform:matrix(0.247200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247200,0.000000,0.000000,0.250000,0,0);}
.m3f_c00103{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m5_c00103{transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);}
.m2f_c00103{transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);}
.m2d_c00103{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00103{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mf_c00103{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00103{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);}
.m2c_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);}
.m1f_c00103{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00103{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m32_c00103{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m7_c00103{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m13_c00103{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m25_c00103{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m6_c00103{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m23_c00103{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m3_c00103{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m26_c00103{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m34_c00103{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m30_c00103{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m0_c00103{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m9_c00103{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1_c00103{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m21_c00103{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00103{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m18_c00103{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m8_c00103{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m16_c00103{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mb_c00103{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.md_c00103{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m29_c00103{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m20_c00103{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m19_c00103{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m15_c00103{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00103{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);}
.m36_c00103{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m24_c00103{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);}
.m3c_c00103{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00103{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m4_c00103{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);}
.m42_c00103{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);}
.m1c_c00103{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m39_c00103{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.me_c00103{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);}
.m44_c00103{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);}
.m43_c00103{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.ma_c00103{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m10_c00103{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00103{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m35_c00103{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);}
.m12_c00103{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m17_c00103{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);}
.m3e_c00103{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m11_c00103{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m38_c00103{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m27_c00103{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m14_c00103{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m33_c00103{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m40_c00103{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.v0_c00103{vertical-align:0.000000px;}
.v1_c00103{vertical-align:2.880000px;}
.ls0_c00103{letter-spacing:0.000000px;}
.sc__c00103{text-shadow:none;}
.sc0_c00103{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00103{-webkit-text-stroke:0px transparent;}
.sc0_c00103{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00103{word-spacing:0.000000px;}
.ws0_c00103{word-spacing:0.777840px;}
.ws1_c00103{word-spacing:59.734524px;}
.fc0_c00103{color:transparent;}
.fsa_c00103{font-size:25.920000px;}
.fse_c00103{font-size:34.560000px;}
.fsd_c00103{font-size:37.440000px;}
.fs7_c00103{font-size:43.200000px;}
.fs5_c00103{font-size:51.840000px;}
.fs6_c00103{font-size:54.720000px;}
.fsb_c00103{font-size:57.600000px;}
.fs2_c00103{font-size:60.480000px;}
.fs9_c00103{font-size:63.360000px;}
.fs8_c00103{font-size:66.240000px;}
.fs4_c00103{font-size:69.120000px;}
.fs0_c00103{font-size:72.000000px;}
.fs3_c00103{font-size:74.880000px;}
.fs1_c00103{font-size:77.760000px;}
.fsc_c00103{font-size:80.640000px;}
.y0_c00103{bottom:0.000000px;}
.y43_c00103{bottom:74.160000px;}
.y6d_c00103{bottom:74.880000px;}
.y6e_c00103{bottom:75.600000px;}
.y42_c00103{bottom:77.040000px;}
.y6a_c00103{bottom:116.640000px;}
.y41_c00103{bottom:117.360000px;}
.y69_c00103{bottom:118.080000px;}
.y6c_c00103{bottom:118.800000px;}
.y6b_c00103{bottom:119.520000px;}
.y40_c00103{bottom:121.680000px;}
.y68_c00103{bottom:159.120000px;}
.y66_c00103{bottom:159.840000px;}
.y3f_c00103{bottom:160.560000px;}
.y65_c00103{bottom:161.280000px;}
.y67_c00103{bottom:162.000000px;}
.y3e_c00103{bottom:163.440000px;}
.y62_c00103{bottom:202.320000px;}
.y3d_c00103{bottom:203.040000px;}
.y61_c00103{bottom:203.760000px;}
.y64_c00103{bottom:204.480000px;}
.y63_c00103{bottom:205.200000px;}
.y3c_c00103{bottom:206.640000px;}
.y5f_c00103{bottom:245.520000px;}
.y3b_c00103{bottom:246.960000px;}
.y60_c00103{bottom:248.400000px;}
.y3a_c00103{bottom:249.120000px;}
.y39_c00103{bottom:289.440000px;}
.y5d_c00103{bottom:290.160000px;}
.y5e_c00103{bottom:291.600000px;}
.y37_c00103{bottom:292.320000px;}
.y38_c00103{bottom:293.040000px;}
.y36_c00103{bottom:331.200000px;}
.y34_c00103{bottom:331.920000px;}
.y5c_c00103{bottom:332.640000px;}
.y33_c00103{bottom:333.360000px;}
.y5b_c00103{bottom:334.800000px;}
.y35_c00103{bottom:335.520000px;}
.y32_c00103{bottom:375.120000px;}
.y59_c00103{bottom:375.840000px;}
.y5a_c00103{bottom:376.560000px;}
.y30_c00103{bottom:378.000000px;}
.y31_c00103{bottom:378.720000px;}
.y2f_c00103{bottom:418.320000px;}
.y2e_c00103{bottom:419.040000px;}
.y2d_c00103{bottom:461.520000px;}
.y57_c00103{bottom:462.240000px;}
.y58_c00103{bottom:462.960000px;}
.y2c_c00103{bottom:463.680000px;}
.y2b_c00103{bottom:504.000000px;}
.y55_c00103{bottom:505.440000px;}
.y2a_c00103{bottom:506.160000px;}
.y56_c00103{bottom:508.320000px;}
.y28_c00103{bottom:546.480000px;}
.y29_c00103{bottom:547.200000px;}
.y54_c00103{bottom:547.920000px;}
.y53_c00103{bottom:548.640000px;}
.y27_c00103{bottom:549.360000px;}
.y26_c00103{bottom:550.080000px;}
.y25_c00103{bottom:589.680000px;}
.y24_c00103{bottom:591.840000px;}
.y52_c00103{bottom:592.560000px;}
.y23_c00103{bottom:632.880000px;}
.y22_c00103{bottom:634.320000px;}
.y50_c00103{bottom:635.040000px;}
.y51_c00103{bottom:635.760000px;}
.y21_c00103{bottom:676.080000px;}
.y20_c00103{bottom:678.240000px;}
.y4f_c00103{bottom:680.400000px;}
.y1f_c00103{bottom:718.560000px;}
.y1e_c00103{bottom:720.000000px;}
.y4d_c00103{bottom:721.440000px;}
.y4e_c00103{bottom:722.160000px;}
.y1d_c00103{bottom:761.040000px;}
.y4c_c00103{bottom:762.480000px;}
.y1c_c00103{bottom:763.200000px;}
.y4b_c00103{bottom:765.360000px;}
.y1b_c00103{bottom:804.240000px;}
.y1a_c00103{bottom:805.680000px;}
.y49_c00103{bottom:807.120000px;}
.y48_c00103{bottom:807.840000px;}
.y4a_c00103{bottom:810.000000px;}
.y19_c00103{bottom:847.440000px;}
.y18_c00103{bottom:848.880000px;}
.y45_c00103{bottom:849.600000px;}
.y44_c00103{bottom:850.320000px;}
.y46_c00103{bottom:851.040000px;}
.y47_c00103{bottom:852.480000px;}
.y17_c00103{bottom:891.360000px;}
.y16_c00103{bottom:892.800000px;}
.y15_c00103{bottom:894.240000px;}
.ye_c00103{bottom:923.040000px;}
.yd_c00103{bottom:923.760000px;}
.y11_c00103{bottom:925.920000px;}
.yf_c00103{bottom:926.640000px;}
.y10_c00103{bottom:927.360000px;}
.y14_c00103{bottom:928.080000px;}
.y13_c00103{bottom:928.800000px;}
.y12_c00103{bottom:930.960000px;}
.y6_c00103{bottom:965.520000px;}
.y5_c00103{bottom:966.240000px;}
.yb_c00103{bottom:968.400000px;}
.ya_c00103{bottom:969.120000px;}
.yc_c00103{bottom:969.840000px;}
.y3_c00103{bottom:1008.720000px;}
.y2_c00103{bottom:1009.440000px;}
.y4_c00103{bottom:1010.160000px;}
.y8_c00103{bottom:1012.320000px;}
.y7_c00103{bottom:1013.040000px;}
.y9_c00103{bottom:1015.200000px;}
.y1_c00103{bottom:1081.440000px;}
.hc_c00103{height:23.325469px;}
.h11_c00103{height:31.100625px;}
.h10_c00103{height:33.692344px;}
.h9_c00103{height:38.875781px;}
.h7_c00103{height:46.650937px;}
.h8_c00103{height:49.242656px;}
.hd_c00103{height:51.834375px;}
.h4_c00103{height:54.426094px;}
.he_c00103{height:54.714375px;}
.hb_c00103{height:57.017812px;}
.ha_c00103{height:59.609531px;}
.h6_c00103{height:62.201250px;}
.h2_c00103{height:64.792969px;}
.h5_c00103{height:67.384687px;}
.h3_c00103{height:69.976406px;}
.hf_c00103{height:72.568125px;}
.h1_c00103{height:1151.250000px;}
.h0_c00103{height:1151.280000px;}
.w0_c00103{width:796.320000px;}
.w1_c00103{width:796.500000px;}
.x0_c00103{left:0.000000px;}
.xb_c00103{left:76.320000px;}
.x2_c00103{left:77.760000px;}
.x1c_c00103{left:108.000000px;}
.xc_c00103{left:110.160000px;}
.x19_c00103{left:118.800000px;}
.x16_c00103{left:139.680000px;}
.xd_c00103{left:141.120000px;}
.x1b_c00103{left:149.040000px;}
.x3_c00103{left:150.480000px;}
.x18_c00103{left:160.560000px;}
.x14_c00103{left:192.960000px;}
.x17_c00103{left:213.840000px;}
.xe_c00103{left:226.080000px;}
.x1a_c00103{left:246.240000px;}
.x4_c00103{left:248.400000px;}
.xf_c00103{left:280.080000px;}
.x15_c00103{left:290.160000px;}
.x10_c00103{left:334.800000px;}
.x1d_c00103{left:365.760000px;}
.x1e_c00103{left:408.240000px;}
.x11_c00103{left:485.280000px;}
.x12_c00103{left:541.440000px;}
.x5_c00103{left:561.600000px;}
.x13_c00103{left:572.400000px;}
.x23_c00103{left:594.000000px;}
.x9_c00103{left:595.440000px;}
.x26_c00103{left:614.880000px;}
.x6_c00103{left:616.320000px;}
.x25_c00103{left:626.400000px;}
.x21_c00103{left:648.000000px;}
.x1f_c00103{left:649.440000px;}
.x20_c00103{left:682.560000px;}
.x1_c00103{left:685.440000px;}
.x24_c00103{left:691.200000px;}
.xa_c00103{left:692.640000px;}
.x22_c00103{left:724.320000px;}
.x7_c00103{left:725.760000px;}
.x8_c00103{left:745.920000px;}
@media print{
.v0_c00103{vertical-align:0.000000pt;}
.v1_c00103{vertical-align:2.560000pt;}
.ls0_c00103{letter-spacing:0.000000pt;}
.ws2_c00103{word-spacing:0.000000pt;}
.ws0_c00103{word-spacing:0.691413pt;}
.ws1_c00103{word-spacing:53.097354pt;}
.fsa_c00103{font-size:23.040000pt;}
.fse_c00103{font-size:30.720000pt;}
.fsd_c00103{font-size:33.280000pt;}
.fs7_c00103{font-size:38.400000pt;}
.fs5_c00103{font-size:46.080000pt;}
.fs6_c00103{font-size:48.640000pt;}
.fsb_c00103{font-size:51.200000pt;}
.fs2_c00103{font-size:53.760000pt;}
.fs9_c00103{font-size:56.320000pt;}
.fs8_c00103{font-size:58.880000pt;}
.fs4_c00103{font-size:61.440000pt;}
.fs0_c00103{font-size:64.000000pt;}
.fs3_c00103{font-size:66.560000pt;}
.fs1_c00103{font-size:69.120000pt;}
.fsc_c00103{font-size:71.680000pt;}
.y0_c00103{bottom:0.000000pt;}
.y43_c00103{bottom:65.920000pt;}
.y6d_c00103{bottom:66.560000pt;}
.y6e_c00103{bottom:67.200000pt;}
.y42_c00103{bottom:68.480000pt;}
.y6a_c00103{bottom:103.680000pt;}
.y41_c00103{bottom:104.320000pt;}
.y69_c00103{bottom:104.960000pt;}
.y6c_c00103{bottom:105.600000pt;}
.y6b_c00103{bottom:106.240000pt;}
.y40_c00103{bottom:108.160000pt;}
.y68_c00103{bottom:141.440000pt;}
.y66_c00103{bottom:142.080000pt;}
.y3f_c00103{bottom:142.720000pt;}
.y65_c00103{bottom:143.360000pt;}
.y67_c00103{bottom:144.000000pt;}
.y3e_c00103{bottom:145.280000pt;}
.y62_c00103{bottom:179.840000pt;}
.y3d_c00103{bottom:180.480000pt;}
.y61_c00103{bottom:181.120000pt;}
.y64_c00103{bottom:181.760000pt;}
.y63_c00103{bottom:182.400000pt;}
.y3c_c00103{bottom:183.680000pt;}
.y5f_c00103{bottom:218.240000pt;}
.y3b_c00103{bottom:219.520000pt;}
.y60_c00103{bottom:220.800000pt;}
.y3a_c00103{bottom:221.440000pt;}
.y39_c00103{bottom:257.280000pt;}
.y5d_c00103{bottom:257.920000pt;}
.y5e_c00103{bottom:259.200000pt;}
.y37_c00103{bottom:259.840000pt;}
.y38_c00103{bottom:260.480000pt;}
.y36_c00103{bottom:294.400000pt;}
.y34_c00103{bottom:295.040000pt;}
.y5c_c00103{bottom:295.680000pt;}
.y33_c00103{bottom:296.320000pt;}
.y5b_c00103{bottom:297.600000pt;}
.y35_c00103{bottom:298.240000pt;}
.y32_c00103{bottom:333.440000pt;}
.y59_c00103{bottom:334.080000pt;}
.y5a_c00103{bottom:334.720000pt;}
.y30_c00103{bottom:336.000000pt;}
.y31_c00103{bottom:336.640000pt;}
.y2f_c00103{bottom:371.840000pt;}
.y2e_c00103{bottom:372.480000pt;}
.y2d_c00103{bottom:410.240000pt;}
.y57_c00103{bottom:410.880000pt;}
.y58_c00103{bottom:411.520000pt;}
.y2c_c00103{bottom:412.160000pt;}
.y2b_c00103{bottom:448.000000pt;}
.y55_c00103{bottom:449.280000pt;}
.y2a_c00103{bottom:449.920000pt;}
.y56_c00103{bottom:451.840000pt;}
.y28_c00103{bottom:485.760000pt;}
.y29_c00103{bottom:486.400000pt;}
.y54_c00103{bottom:487.040000pt;}
.y53_c00103{bottom:487.680000pt;}
.y27_c00103{bottom:488.320000pt;}
.y26_c00103{bottom:488.960000pt;}
.y25_c00103{bottom:524.160000pt;}
.y24_c00103{bottom:526.080000pt;}
.y52_c00103{bottom:526.720000pt;}
.y23_c00103{bottom:562.560000pt;}
.y22_c00103{bottom:563.840000pt;}
.y50_c00103{bottom:564.480000pt;}
.y51_c00103{bottom:565.120000pt;}
.y21_c00103{bottom:600.960000pt;}
.y20_c00103{bottom:602.880000pt;}
.y4f_c00103{bottom:604.800000pt;}
.y1f_c00103{bottom:638.720000pt;}
.y1e_c00103{bottom:640.000000pt;}
.y4d_c00103{bottom:641.280000pt;}
.y4e_c00103{bottom:641.920000pt;}
.y1d_c00103{bottom:676.480000pt;}
.y4c_c00103{bottom:677.760000pt;}
.y1c_c00103{bottom:678.400000pt;}
.y4b_c00103{bottom:680.320000pt;}
.y1b_c00103{bottom:714.880000pt;}
.y1a_c00103{bottom:716.160000pt;}
.y49_c00103{bottom:717.440000pt;}
.y48_c00103{bottom:718.080000pt;}
.y4a_c00103{bottom:720.000000pt;}
.y19_c00103{bottom:753.280000pt;}
.y18_c00103{bottom:754.560000pt;}
.y45_c00103{bottom:755.200000pt;}
.y44_c00103{bottom:755.840000pt;}
.y46_c00103{bottom:756.480000pt;}
.y47_c00103{bottom:757.760000pt;}
.y17_c00103{bottom:792.320000pt;}
.y16_c00103{bottom:793.600000pt;}
.y15_c00103{bottom:794.880000pt;}
.ye_c00103{bottom:820.480000pt;}
.yd_c00103{bottom:821.120000pt;}
.y11_c00103{bottom:823.040000pt;}
.yf_c00103{bottom:823.680000pt;}
.y10_c00103{bottom:824.320000pt;}
.y14_c00103{bottom:824.960000pt;}
.y13_c00103{bottom:825.600000pt;}
.y12_c00103{bottom:827.520000pt;}
.y6_c00103{bottom:858.240000pt;}
.y5_c00103{bottom:858.880000pt;}
.yb_c00103{bottom:860.800000pt;}
.ya_c00103{bottom:861.440000pt;}
.yc_c00103{bottom:862.080000pt;}
.y3_c00103{bottom:896.640000pt;}
.y2_c00103{bottom:897.280000pt;}
.y4_c00103{bottom:897.920000pt;}
.y8_c00103{bottom:899.840000pt;}
.y7_c00103{bottom:900.480000pt;}
.y9_c00103{bottom:902.400000pt;}
.y1_c00103{bottom:961.280000pt;}
.hc_c00103{height:20.733750pt;}
.h11_c00103{height:27.645000pt;}
.h10_c00103{height:29.948750pt;}
.h9_c00103{height:34.556250pt;}
.h7_c00103{height:41.467500pt;}
.h8_c00103{height:43.771250pt;}
.hd_c00103{height:46.075000pt;}
.h4_c00103{height:48.378750pt;}
.he_c00103{height:48.635000pt;}
.hb_c00103{height:50.682500pt;}
.ha_c00103{height:52.986250pt;}
.h6_c00103{height:55.290000pt;}
.h2_c00103{height:57.593750pt;}
.h5_c00103{height:59.897500pt;}
.h3_c00103{height:62.201250pt;}
.hf_c00103{height:64.505000pt;}
.h1_c00103{height:1023.333333pt;}
.h0_c00103{height:1023.360000pt;}
.w0_c00103{width:707.840000pt;}
.w1_c00103{width:708.000000pt;}
.x0_c00103{left:0.000000pt;}
.xb_c00103{left:67.840000pt;}
.x2_c00103{left:69.120000pt;}
.x1c_c00103{left:96.000000pt;}
.xc_c00103{left:97.920000pt;}
.x19_c00103{left:105.600000pt;}
.x16_c00103{left:124.160000pt;}
.xd_c00103{left:125.440000pt;}
.x1b_c00103{left:132.480000pt;}
.x3_c00103{left:133.760000pt;}
.x18_c00103{left:142.720000pt;}
.x14_c00103{left:171.520000pt;}
.x17_c00103{left:190.080000pt;}
.xe_c00103{left:200.960000pt;}
.x1a_c00103{left:218.880000pt;}
.x4_c00103{left:220.800000pt;}
.xf_c00103{left:248.960000pt;}
.x15_c00103{left:257.920000pt;}
.x10_c00103{left:297.600000pt;}
.x1d_c00103{left:325.120000pt;}
.x1e_c00103{left:362.880000pt;}
.x11_c00103{left:431.360000pt;}
.x12_c00103{left:481.280000pt;}
.x5_c00103{left:499.200000pt;}
.x13_c00103{left:508.800000pt;}
.x23_c00103{left:528.000000pt;}
.x9_c00103{left:529.280000pt;}
.x26_c00103{left:546.560000pt;}
.x6_c00103{left:547.840000pt;}
.x25_c00103{left:556.800000pt;}
.x21_c00103{left:576.000000pt;}
.x1f_c00103{left:577.280000pt;}
.x20_c00103{left:606.720000pt;}
.x1_c00103{left:609.280000pt;}
.x24_c00103{left:614.400000pt;}
.xa_c00103{left:615.680000pt;}
.x22_c00103{left:643.840000pt;}
.x7_c00103{left:645.120000pt;}
.x8_c00103{left:663.040000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9e4bc3a4375b4749236b7e64.woff2')format("woff");}.ff1_c00104{font-family:ff1_c00104;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m43_c00104{transform:matrix(0.134625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134625,0.000000,0.000000,0.250000,0,0);}
.m14_c00104{transform:matrix(0.188775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188775,0.000000,0.000000,0.250000,0,0);}
.m3e_c00104{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m2c_c00104{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);}
.m49_c00104{transform:matrix(0.227625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227625,0.000000,0.000000,0.250000,0,0);}
.m35_c00104{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m10_c00104{transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);}
.m15_c00104{transform:matrix(0.244150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244150,0.000000,0.000000,0.250000,0,0);}
.m1e_c00104{transform:matrix(0.245350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245350,0.000000,0.000000,0.250000,0,0);}
.m2f_c00104{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m26_c00104{transform:matrix(0.247950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247950,0.000000,0.000000,0.250000,0,0);}
.m3d_c00104{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m21_c00104{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_c00104{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);}
.m37_c00104{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m1_c00104{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mc_c00104{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m18_c00104{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00104{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m31_c00104{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m4_c00104{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m13_c00104{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m16_c00104{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m8_c00104{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.me_c00104{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m22_c00104{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m41_c00104{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m11_c00104{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00104{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m34_c00104{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00104{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m6_c00104{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m24_c00104{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.md_c00104{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m32_c00104{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m29_c00104{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00104{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m27_c00104{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m9_c00104{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m20_c00104{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00104{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00104{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m38_c00104{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m36_c00104{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00104{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00104{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);}
.m45_c00104{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00104{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m12_c00104{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);}
.m28_c00104{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);}
.m40_c00104{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m46_c00104{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m17_c00104{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);}
.m42_c00104{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m7_c00104{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);}
.m39_c00104{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);}
.m2_c00104{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);}
.m5_c00104{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m25_c00104{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);}
.m1d_c00104{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m48_c00104{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);}
.m0_c00104{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);}
.m1f_c00104{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m19_c00104{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.mf_c00104{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.mb_c00104{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m33_c00104{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m47_c00104{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00104{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.ma_c00104{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);}
.m23_c00104{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);}
.m44_c00104{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00104{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m30_c00104{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00104{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.v0_c00104{vertical-align:0.000000px;}
.v1_c00104{vertical-align:2.880000px;}
.ls0_c00104{letter-spacing:0.000000px;}
.sc__c00104{text-shadow:none;}
.sc0_c00104{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00104{-webkit-text-stroke:0px transparent;}
.sc0_c00104{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00104{word-spacing:0.000000px;}
.ws0_c00104{word-spacing:83.690400px;}
.fc0_c00104{color:transparent;}
.fsb_c00104{font-size:37.440000px;}
.fse_c00104{font-size:43.200000px;}
.fs6_c00104{font-size:48.960000px;}
.fs7_c00104{font-size:51.840000px;}
.fs8_c00104{font-size:54.720000px;}
.fs0_c00104{font-size:57.600000px;}
.fs4_c00104{font-size:60.480000px;}
.fs9_c00104{font-size:63.360000px;}
.fsd_c00104{font-size:66.240000px;}
.fs5_c00104{font-size:69.120000px;}
.fs3_c00104{font-size:72.000000px;}
.fs2_c00104{font-size:74.880000px;}
.fs1_c00104{font-size:77.760000px;}
.fsa_c00104{font-size:103.680000px;}
.fsc_c00104{font-size:112.320000px;}
.y0_c00104{bottom:0.000000px;}
.y70_c00104{bottom:73.440000px;}
.y77_c00104{bottom:74.160000px;}
.y6e_c00104{bottom:75.600000px;}
.y76_c00104{bottom:76.320000px;}
.y6f_c00104{bottom:77.760000px;}
.y6d_c00104{bottom:78.480000px;}
.y6c_c00104{bottom:117.360000px;}
.y75_c00104{bottom:118.080000px;}
.y6b_c00104{bottom:121.680000px;}
.y73_c00104{bottom:160.560000px;}
.y6a_c00104{bottom:161.280000px;}
.y74_c00104{bottom:162.000000px;}
.y72_c00104{bottom:162.720000px;}
.y71_c00104{bottom:164.160000px;}
.y69_c00104{bottom:164.880000px;}
.y66_c00104{bottom:203.760000px;}
.y68_c00104{bottom:205.200000px;}
.y67_c00104{bottom:205.920000px;}
.y65_c00104{bottom:208.080000px;}
.y62_c00104{bottom:236.160000px;}
.y60_c00104{bottom:246.240000px;}
.y5f_c00104{bottom:246.960000px;}
.y63_c00104{bottom:247.680000px;}
.y5e_c00104{bottom:248.400000px;}
.y64_c00104{bottom:249.120000px;}
.y61_c00104{bottom:249.840000px;}
.y5d_c00104{bottom:289.440000px;}
.y2e_c00104{bottom:290.160000px;}
.y5c_c00104{bottom:291.600000px;}
.y2d_c00104{bottom:292.320000px;}
.y2c_c00104{bottom:331.920000px;}
.y5b_c00104{bottom:332.640000px;}
.y5a_c00104{bottom:333.360000px;}
.y59_c00104{bottom:334.800000px;}
.y2b_c00104{bottom:335.520000px;}
.y28_c00104{bottom:374.400000px;}
.y2a_c00104{bottom:375.840000px;}
.y27_c00104{bottom:378.000000px;}
.y29_c00104{bottom:378.720000px;}
.y26_c00104{bottom:417.600000px;}
.y58_c00104{bottom:419.040000px;}
.y25_c00104{bottom:419.760000px;}
.y57_c00104{bottom:421.200000px;}
.y24_c00104{bottom:460.800000px;}
.y55_c00104{bottom:462.240000px;}
.y23_c00104{bottom:462.960000px;}
.y54_c00104{bottom:463.680000px;}
.y56_c00104{bottom:464.400000px;}
.y53_c00104{bottom:465.120000px;}
.y21_c00104{bottom:504.000000px;}
.y51_c00104{bottom:505.440000px;}
.y20_c00104{bottom:506.160000px;}
.y50_c00104{bottom:506.880000px;}
.y22_c00104{bottom:507.600000px;}
.y52_c00104{bottom:508.320000px;}
.y4e_c00104{bottom:549.360000px;}
.y4f_c00104{bottom:550.080000px;}
.y1f_c00104{bottom:590.400000px;}
.y1c_c00104{bottom:622.080000px;}
.y1b_c00104{bottom:623.520000px;}
.y4c_c00104{bottom:624.240000px;}
.y4d_c00104{bottom:624.960000px;}
.y1e_c00104{bottom:625.680000px;}
.y1d_c00104{bottom:626.400000px;}
.y19_c00104{bottom:663.840000px;}
.y1a_c00104{bottom:665.280000px;}
.y18_c00104{bottom:666.720000px;}
.y4b_c00104{bottom:667.440000px;}
.y4a_c00104{bottom:668.160000px;}
.y17_c00104{bottom:699.120000px;}
.y15_c00104{bottom:707.040000px;}
.y16_c00104{bottom:708.480000px;}
.y14_c00104{bottom:709.920000px;}
.y46_c00104{bottom:711.360000px;}
.y48_c00104{bottom:712.080000px;}
.y47_c00104{bottom:712.800000px;}
.y49_c00104{bottom:713.520000px;}
.y11_c00104{bottom:750.240000px;}
.y13_c00104{bottom:750.960000px;}
.y12_c00104{bottom:751.680000px;}
.y10_c00104{bottom:752.400000px;}
.y44_c00104{bottom:753.840000px;}
.y45_c00104{bottom:754.560000px;}
.y43_c00104{bottom:756.720000px;}
.yf_c00104{bottom:793.440000px;}
.ye_c00104{bottom:794.160000px;}
.y41_c00104{bottom:796.320000px;}
.y40_c00104{bottom:797.040000px;}
.y42_c00104{bottom:799.200000px;}
.ya_c00104{bottom:835.920000px;}
.yc_c00104{bottom:837.360000px;}
.y9_c00104{bottom:838.080000px;}
.yd_c00104{bottom:838.800000px;}
.yb_c00104{bottom:840.240000px;}
.y3d_c00104{bottom:840.960000px;}
.y3f_c00104{bottom:841.680000px;}
.y3e_c00104{bottom:843.120000px;}
.y8_c00104{bottom:879.120000px;}
.y7_c00104{bottom:880.560000px;}
.y3c_c00104{bottom:882.720000px;}
.y3a_c00104{bottom:883.440000px;}
.y3b_c00104{bottom:884.880000px;}
.y6_c00104{bottom:921.600000px;}
.y5_c00104{bottom:923.040000px;}
.y39_c00104{bottom:926.640000px;}
.y36_c00104{bottom:927.360000px;}
.y37_c00104{bottom:928.080000px;}
.y38_c00104{bottom:928.800000px;}
.y3_c00104{bottom:964.080000px;}
.y2_c00104{bottom:965.520000px;}
.y4_c00104{bottom:966.240000px;}
.y33_c00104{bottom:968.400000px;}
.y34_c00104{bottom:969.120000px;}
.y35_c00104{bottom:970.560000px;}
.y1_c00104{bottom:1008.000000px;}
.y31_c00104{bottom:1012.320000px;}
.y30_c00104{bottom:1013.040000px;}
.y32_c00104{bottom:1015.200000px;}
.y2f_c00104{bottom:1086.480000px;}
.hd_c00104{height:33.692344px;}
.h11_c00104{height:38.875781px;}
.h8_c00104{height:44.059219px;}
.h9_c00104{height:46.650937px;}
.ha_c00104{height:49.242656px;}
.h2_c00104{height:51.834375px;}
.h6_c00104{height:54.426094px;}
.hb_c00104{height:57.017812px;}
.he_c00104{height:57.306094px;}
.h10_c00104{height:59.609531px;}
.h7_c00104{height:62.201250px;}
.h5_c00104{height:64.792969px;}
.h4_c00104{height:67.384687px;}
.h3_c00104{height:69.976406px;}
.hc_c00104{height:93.301875px;}
.hf_c00104{height:101.077031px;}
.h0_c00104{height:1153.440000px;}
.h1_c00104{height:1153.500000px;}
.w0_c00104{width:799.200000px;}
.w1_c00104{width:799.500000px;}
.x0_c00104{left:0.000000px;}
.xa_c00104{left:77.040000px;}
.x1_c00104{left:78.480000px;}
.x27_c00104{left:79.920000px;}
.x2_c00104{left:141.120000px;}
.x5_c00104{left:142.560000px;}
.x3_c00104{left:151.920000px;}
.x15_c00104{left:205.200000px;}
.x6_c00104{left:226.800000px;}
.xe_c00104{left:228.240000px;}
.x4_c00104{left:238.320000px;}
.x28_c00104{left:270.720000px;}
.x26_c00104{left:272.160000px;}
.x7_c00104{left:280.800000px;}
.x12_c00104{left:291.600000px;}
.x13_c00104{left:302.400000px;}
.xc_c00104{left:313.200000px;}
.xf_c00104{left:324.000000px;}
.x8_c00104{left:335.520000px;}
.xb_c00104{left:356.400000px;}
.x10_c00104{left:376.560000px;}
.x14_c00104{left:410.400000px;}
.x11_c00104{left:421.200000px;}
.x29_c00104{left:432.720000px;}
.x2a_c00104{left:475.200000px;}
.xd_c00104{left:497.520000px;}
.x9_c00104{left:508.320000px;}
.x17_c00104{left:563.040000px;}
.x24_c00104{left:573.120000px;}
.x1b_c00104{left:574.560000px;}
.x21_c00104{left:585.360000px;}
.x23_c00104{left:594.720000px;}
.x1c_c00104{left:596.160000px;}
.x1d_c00104{left:617.040000px;}
.x1e_c00104{left:627.840000px;}
.x18_c00104{left:650.160000px;}
.x19_c00104{left:682.560000px;}
.x20_c00104{left:684.000000px;}
.x16_c00104{left:692.640000px;}
.x25_c00104{left:717.120000px;}
.x1a_c00104{left:726.480000px;}
.x22_c00104{left:727.920000px;}
.x1f_c00104{left:747.360000px;}
.x2b_c00104{left:748.800000px;}
@media print{
.v0_c00104{vertical-align:0.000000pt;}
.v1_c00104{vertical-align:2.560000pt;}
.ls0_c00104{letter-spacing:0.000000pt;}
.ws1_c00104{word-spacing:0.000000pt;}
.ws0_c00104{word-spacing:74.391467pt;}
.fsb_c00104{font-size:33.280000pt;}
.fse_c00104{font-size:38.400000pt;}
.fs6_c00104{font-size:43.520000pt;}
.fs7_c00104{font-size:46.080000pt;}
.fs8_c00104{font-size:48.640000pt;}
.fs0_c00104{font-size:51.200000pt;}
.fs4_c00104{font-size:53.760000pt;}
.fs9_c00104{font-size:56.320000pt;}
.fsd_c00104{font-size:58.880000pt;}
.fs5_c00104{font-size:61.440000pt;}
.fs3_c00104{font-size:64.000000pt;}
.fs2_c00104{font-size:66.560000pt;}
.fs1_c00104{font-size:69.120000pt;}
.fsa_c00104{font-size:92.160000pt;}
.fsc_c00104{font-size:99.840000pt;}
.y0_c00104{bottom:0.000000pt;}
.y70_c00104{bottom:65.280000pt;}
.y77_c00104{bottom:65.920000pt;}
.y6e_c00104{bottom:67.200000pt;}
.y76_c00104{bottom:67.840000pt;}
.y6f_c00104{bottom:69.120000pt;}
.y6d_c00104{bottom:69.760000pt;}
.y6c_c00104{bottom:104.320000pt;}
.y75_c00104{bottom:104.960000pt;}
.y6b_c00104{bottom:108.160000pt;}
.y73_c00104{bottom:142.720000pt;}
.y6a_c00104{bottom:143.360000pt;}
.y74_c00104{bottom:144.000000pt;}
.y72_c00104{bottom:144.640000pt;}
.y71_c00104{bottom:145.920000pt;}
.y69_c00104{bottom:146.560000pt;}
.y66_c00104{bottom:181.120000pt;}
.y68_c00104{bottom:182.400000pt;}
.y67_c00104{bottom:183.040000pt;}
.y65_c00104{bottom:184.960000pt;}
.y62_c00104{bottom:209.920000pt;}
.y60_c00104{bottom:218.880000pt;}
.y5f_c00104{bottom:219.520000pt;}
.y63_c00104{bottom:220.160000pt;}
.y5e_c00104{bottom:220.800000pt;}
.y64_c00104{bottom:221.440000pt;}
.y61_c00104{bottom:222.080000pt;}
.y5d_c00104{bottom:257.280000pt;}
.y2e_c00104{bottom:257.920000pt;}
.y5c_c00104{bottom:259.200000pt;}
.y2d_c00104{bottom:259.840000pt;}
.y2c_c00104{bottom:295.040000pt;}
.y5b_c00104{bottom:295.680000pt;}
.y5a_c00104{bottom:296.320000pt;}
.y59_c00104{bottom:297.600000pt;}
.y2b_c00104{bottom:298.240000pt;}
.y28_c00104{bottom:332.800000pt;}
.y2a_c00104{bottom:334.080000pt;}
.y27_c00104{bottom:336.000000pt;}
.y29_c00104{bottom:336.640000pt;}
.y26_c00104{bottom:371.200000pt;}
.y58_c00104{bottom:372.480000pt;}
.y25_c00104{bottom:373.120000pt;}
.y57_c00104{bottom:374.400000pt;}
.y24_c00104{bottom:409.600000pt;}
.y55_c00104{bottom:410.880000pt;}
.y23_c00104{bottom:411.520000pt;}
.y54_c00104{bottom:412.160000pt;}
.y56_c00104{bottom:412.800000pt;}
.y53_c00104{bottom:413.440000pt;}
.y21_c00104{bottom:448.000000pt;}
.y51_c00104{bottom:449.280000pt;}
.y20_c00104{bottom:449.920000pt;}
.y50_c00104{bottom:450.560000pt;}
.y22_c00104{bottom:451.200000pt;}
.y52_c00104{bottom:451.840000pt;}
.y4e_c00104{bottom:488.320000pt;}
.y4f_c00104{bottom:488.960000pt;}
.y1f_c00104{bottom:524.800000pt;}
.y1c_c00104{bottom:552.960000pt;}
.y1b_c00104{bottom:554.240000pt;}
.y4c_c00104{bottom:554.880000pt;}
.y4d_c00104{bottom:555.520000pt;}
.y1e_c00104{bottom:556.160000pt;}
.y1d_c00104{bottom:556.800000pt;}
.y19_c00104{bottom:590.080000pt;}
.y1a_c00104{bottom:591.360000pt;}
.y18_c00104{bottom:592.640000pt;}
.y4b_c00104{bottom:593.280000pt;}
.y4a_c00104{bottom:593.920000pt;}
.y17_c00104{bottom:621.440000pt;}
.y15_c00104{bottom:628.480000pt;}
.y16_c00104{bottom:629.760000pt;}
.y14_c00104{bottom:631.040000pt;}
.y46_c00104{bottom:632.320000pt;}
.y48_c00104{bottom:632.960000pt;}
.y47_c00104{bottom:633.600000pt;}
.y49_c00104{bottom:634.240000pt;}
.y11_c00104{bottom:666.880000pt;}
.y13_c00104{bottom:667.520000pt;}
.y12_c00104{bottom:668.160000pt;}
.y10_c00104{bottom:668.800000pt;}
.y44_c00104{bottom:670.080000pt;}
.y45_c00104{bottom:670.720000pt;}
.y43_c00104{bottom:672.640000pt;}
.yf_c00104{bottom:705.280000pt;}
.ye_c00104{bottom:705.920000pt;}
.y41_c00104{bottom:707.840000pt;}
.y40_c00104{bottom:708.480000pt;}
.y42_c00104{bottom:710.400000pt;}
.ya_c00104{bottom:743.040000pt;}
.yc_c00104{bottom:744.320000pt;}
.y9_c00104{bottom:744.960000pt;}
.yd_c00104{bottom:745.600000pt;}
.yb_c00104{bottom:746.880000pt;}
.y3d_c00104{bottom:747.520000pt;}
.y3f_c00104{bottom:748.160000pt;}
.y3e_c00104{bottom:749.440000pt;}
.y8_c00104{bottom:781.440000pt;}
.y7_c00104{bottom:782.720000pt;}
.y3c_c00104{bottom:784.640000pt;}
.y3a_c00104{bottom:785.280000pt;}
.y3b_c00104{bottom:786.560000pt;}
.y6_c00104{bottom:819.200000pt;}
.y5_c00104{bottom:820.480000pt;}
.y39_c00104{bottom:823.680000pt;}
.y36_c00104{bottom:824.320000pt;}
.y37_c00104{bottom:824.960000pt;}
.y38_c00104{bottom:825.600000pt;}
.y3_c00104{bottom:856.960000pt;}
.y2_c00104{bottom:858.240000pt;}
.y4_c00104{bottom:858.880000pt;}
.y33_c00104{bottom:860.800000pt;}
.y34_c00104{bottom:861.440000pt;}
.y35_c00104{bottom:862.720000pt;}
.y1_c00104{bottom:896.000000pt;}
.y31_c00104{bottom:899.840000pt;}
.y30_c00104{bottom:900.480000pt;}
.y32_c00104{bottom:902.400000pt;}
.y2f_c00104{bottom:965.760000pt;}
.hd_c00104{height:29.948750pt;}
.h11_c00104{height:34.556250pt;}
.h8_c00104{height:39.163750pt;}
.h9_c00104{height:41.467500pt;}
.ha_c00104{height:43.771250pt;}
.h2_c00104{height:46.075000pt;}
.h6_c00104{height:48.378750pt;}
.hb_c00104{height:50.682500pt;}
.he_c00104{height:50.938750pt;}
.h10_c00104{height:52.986250pt;}
.h7_c00104{height:55.290000pt;}
.h5_c00104{height:57.593750pt;}
.h4_c00104{height:59.897500pt;}
.h3_c00104{height:62.201250pt;}
.hc_c00104{height:82.935000pt;}
.hf_c00104{height:89.846250pt;}
.h0_c00104{height:1025.280000pt;}
.h1_c00104{height:1025.333333pt;}
.w0_c00104{width:710.400000pt;}
.w1_c00104{width:710.666667pt;}
.x0_c00104{left:0.000000pt;}
.xa_c00104{left:68.480000pt;}
.x1_c00104{left:69.760000pt;}
.x27_c00104{left:71.040000pt;}
.x2_c00104{left:125.440000pt;}
.x5_c00104{left:126.720000pt;}
.x3_c00104{left:135.040000pt;}
.x15_c00104{left:182.400000pt;}
.x6_c00104{left:201.600000pt;}
.xe_c00104{left:202.880000pt;}
.x4_c00104{left:211.840000pt;}
.x28_c00104{left:240.640000pt;}
.x26_c00104{left:241.920000pt;}
.x7_c00104{left:249.600000pt;}
.x12_c00104{left:259.200000pt;}
.x13_c00104{left:268.800000pt;}
.xc_c00104{left:278.400000pt;}
.xf_c00104{left:288.000000pt;}
.x8_c00104{left:298.240000pt;}
.xb_c00104{left:316.800000pt;}
.x10_c00104{left:334.720000pt;}
.x14_c00104{left:364.800000pt;}
.x11_c00104{left:374.400000pt;}
.x29_c00104{left:384.640000pt;}
.x2a_c00104{left:422.400000pt;}
.xd_c00104{left:442.240000pt;}
.x9_c00104{left:451.840000pt;}
.x17_c00104{left:500.480000pt;}
.x24_c00104{left:509.440000pt;}
.x1b_c00104{left:510.720000pt;}
.x21_c00104{left:520.320000pt;}
.x23_c00104{left:528.640000pt;}
.x1c_c00104{left:529.920000pt;}
.x1d_c00104{left:548.480000pt;}
.x1e_c00104{left:558.080000pt;}
.x18_c00104{left:577.920000pt;}
.x19_c00104{left:606.720000pt;}
.x20_c00104{left:608.000000pt;}
.x16_c00104{left:615.680000pt;}
.x25_c00104{left:637.440000pt;}
.x1a_c00104{left:645.760000pt;}
.x22_c00104{left:647.040000pt;}
.x1f_c00104{left:664.320000pt;}
.x2b_c00104{left:665.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_61e7e847f4de70e48f7dc387.woff2')format("woff");}.ff1_c00105{font-family:ff1_c00105;line-height:1.109863;font-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_c00105{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m23_c00105{transform:matrix(0.233375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233375,0.000000,0.000000,0.250000,0,0);}
.m3c_c00105{transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);}
.m40_c00105{transform:matrix(0.244450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244450,0.000000,0.000000,0.250000,0,0);}
.m1a_c00105{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m37_c00105{transform:matrix(0.246275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246275,0.000000,0.000000,0.250000,0,0);}
.m22_c00105{transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);}
.m3_c00105{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m34_c00105{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.me_c00105{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m16_c00105{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00105{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m24_c00105{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);}
.m26_c00105{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mb_c00105{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m36_c00105{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m9_c00105{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m11_c00105{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m27_c00105{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00105{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m8_c00105{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.ma_c00105{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m18_c00105{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m5_c00105{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m6_c00105{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m12_c00105{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00105{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m15_c00105{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00105{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m0_c00105{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m42_c00105{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m46_c00105{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m44_c00105{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1_c00105{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00105{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.md_c00105{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mf_c00105{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m43_c00105{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_c00105{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);}
.m49_c00105{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m14_c00105{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);}
.m39_c00105{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m47_c00105{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m29_c00105{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m17_c00105{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m25_c00105{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00105{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m38_c00105{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);}
.m3f_c00105{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);}
.m4_c00105{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);}
.m32_c00105{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m28_c00105{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);}
.m3b_c00105{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);}
.m30_c00105{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);}
.m2_c00105{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00105{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00105{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00105{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);}
.m3a_c00105{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00105{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);}
.m4c_c00105{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);}
.m31_c00105{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00105{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);}
.m1d_c00105{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.mc_c00105{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);}
.m3e_c00105{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m35_c00105{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);}
.m20_c00105{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m19_c00105{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m7_c00105{transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);}
.m41_c00105{transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);}
.m45_c00105{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m48_c00105{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m13_c00105{transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);}
.m10_c00105{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);}
.m21_c00105{transform:matrix(0.775000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.775000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.775000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00105{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.v3_c00105{vertical-align:-2.880000px;}
.v0_c00105{vertical-align:0.000000px;}
.v1_c00105{vertical-align:2.880000px;}
.v2_c00105{vertical-align:5.760000px;}
.ls0_c00105{letter-spacing:0.000000px;}
.sc__c00105{text-shadow:none;}
.sc0_c00105{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00105{-webkit-text-stroke:0px transparent;}
.sc0_c00105{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00105{word-spacing:0.000000px;}
.ws1_c00105{word-spacing:9.475200px;}
.ws0_c00105{word-spacing:11.690400px;}
.ws2_c00105{word-spacing:192.750000px;}
.fc0_c00105{color:transparent;}
.fse_c00105{font-size:2.880000px;}
.fs11_c00105{font-size:14.400000px;}
.fsb_c00105{font-size:31.680000px;}
.fs5_c00105{font-size:34.560000px;}
.fsf_c00105{font-size:37.440000px;}
.fsc_c00105{font-size:40.320000px;}
.fs12_c00105{font-size:46.080000px;}
.fs9_c00105{font-size:48.960000px;}
.fs8_c00105{font-size:51.840000px;}
.fsa_c00105{font-size:54.720000px;}
.fs2_c00105{font-size:57.600000px;}
.fs4_c00105{font-size:60.480000px;}
.fs7_c00105{font-size:63.360000px;}
.fs10_c00105{font-size:66.240000px;}
.fs0_c00105{font-size:69.120000px;}
.fsd_c00105{font-size:72.000000px;}
.fs3_c00105{font-size:74.880000px;}
.fs1_c00105{font-size:77.760000px;}
.fs6_c00105{font-size:83.520000px;}
.y0_c00105{bottom:0.000000px;}
.y7b_c00105{bottom:59.760000px;}
.y7a_c00105{bottom:60.480000px;}
.y54_c00105{bottom:61.920000px;}
.y79_c00105{bottom:64.800000px;}
.y53_c00105{bottom:66.240000px;}
.y52_c00105{bottom:66.960000px;}
.y51_c00105{bottom:104.400000px;}
.y77_c00105{bottom:105.120000px;}
.y78_c00105{bottom:105.840000px;}
.y76_c00105{bottom:106.560000px;}
.y50_c00105{bottom:108.720000px;}
.y75_c00105{bottom:146.880000px;}
.y4f_c00105{bottom:147.600000px;}
.y4e_c00105{bottom:148.320000px;}
.y74_c00105{bottom:149.760000px;}
.y4d_c00105{bottom:151.200000px;}
.y4c_c00105{bottom:190.080000px;}
.y49_c00105{bottom:190.800000px;}
.y73_c00105{bottom:191.520000px;}
.y4a_c00105{bottom:192.240000px;}
.y4b_c00105{bottom:193.680000px;}
.y48_c00105{bottom:194.400000px;}
.y72_c00105{bottom:233.280000px;}
.y47_c00105{bottom:234.000000px;}
.y71_c00105{bottom:236.160000px;}
.y46_c00105{bottom:236.880000px;}
.y45_c00105{bottom:276.480000px;}
.y70_c00105{bottom:279.360000px;}
.y44_c00105{bottom:280.800000px;}
.y43_c00105{bottom:318.240000px;}
.y40_c00105{bottom:320.400000px;}
.y42_c00105{bottom:321.120000px;}
.y6e_c00105{bottom:321.840000px;}
.y6f_c00105{bottom:322.560000px;}
.y41_c00105{bottom:323.280000px;}
.y3f_c00105{bottom:324.000000px;}
.y3d_c00105{bottom:362.880000px;}
.y6d_c00105{bottom:363.600000px;}
.y6c_c00105{bottom:365.040000px;}
.y3c_c00105{bottom:365.760000px;}
.y3e_c00105{bottom:366.480000px;}
.y3b_c00105{bottom:405.360000px;}
.y6a_c00105{bottom:406.080000px;}
.y6b_c00105{bottom:406.800000px;}
.y69_c00105{bottom:407.520000px;}
.y3a_c00105{bottom:408.960000px;}
.y39_c00105{bottom:448.560000px;}
.y68_c00105{bottom:449.280000px;}
.y38_c00105{bottom:451.440000px;}
.y67_c00105{bottom:452.880000px;}
.y37_c00105{bottom:491.040000px;}
.y65_c00105{bottom:492.480000px;}
.y66_c00105{bottom:493.200000px;}
.y36_c00105{bottom:494.640000px;}
.y64_c00105{bottom:495.360000px;}
.y34_c00105{bottom:535.680000px;}
.y32_c00105{bottom:536.400000px;}
.y63_c00105{bottom:537.120000px;}
.y35_c00105{bottom:538.560000px;}
.y33_c00105{bottom:542.160000px;}
.y31_c00105{bottom:576.720000px;}
.y60_c00105{bottom:578.880000px;}
.y30_c00105{bottom:579.600000px;}
.y62_c00105{bottom:580.320000px;}
.y61_c00105{bottom:582.480000px;}
.y2e_c00105{bottom:621.360000px;}
.y2d_c00105{bottom:622.080000px;}
.y2c_c00105{bottom:623.520000px;}
.y2f_c00105{bottom:624.240000px;}
.y5f_c00105{bottom:624.960000px;}
.y29_c00105{bottom:663.840000px;}
.y2b_c00105{bottom:664.560000px;}
.y28_c00105{bottom:665.280000px;}
.y5e_c00105{bottom:666.720000px;}
.y2a_c00105{bottom:667.440000px;}
.y5d_c00105{bottom:668.160000px;}
.y26_c00105{bottom:706.320000px;}
.y27_c00105{bottom:707.040000px;}
.y25_c00105{bottom:708.480000px;}
.y5b_c00105{bottom:710.640000px;}
.y5c_c00105{bottom:711.360000px;}
.y24_c00105{bottom:748.800000px;}
.y23_c00105{bottom:750.960000px;}
.y59_c00105{bottom:752.400000px;}
.y58_c00105{bottom:753.120000px;}
.y57_c00105{bottom:754.560000px;}
.y5a_c00105{bottom:755.280000px;}
.y21_c00105{bottom:791.280000px;}
.y1f_c00105{bottom:792.720000px;}
.y22_c00105{bottom:793.440000px;}
.y20_c00105{bottom:794.160000px;}
.y56_c00105{bottom:795.600000px;}
.y55_c00105{bottom:797.760000px;}
.y1e_c00105{bottom:830.160000px;}
.y1c_c00105{bottom:834.480000px;}
.y1a_c00105{bottom:836.640000px;}
.y1b_c00105{bottom:837.360000px;}
.y1d_c00105{bottom:838.800000px;}
.y18_c00105{bottom:839.520000px;}
.y19_c00105{bottom:840.240000px;}
.y9_c00105{bottom:878.400000px;}
.y7_c00105{bottom:879.120000px;}
.y8_c00105{bottom:879.840000px;}
.y17_c00105{bottom:881.280000px;}
.y16_c00105{bottom:882.720000px;}
.y15_c00105{bottom:884.160000px;}
.y6_c00105{bottom:921.600000px;}
.y5_c00105{bottom:922.320000px;}
.y12_c00105{bottom:925.200000px;}
.y13_c00105{bottom:925.920000px;}
.y14_c00105{bottom:927.360000px;}
.y4_c00105{bottom:964.080000px;}
.y3_c00105{bottom:966.240000px;}
.yf_c00105{bottom:967.680000px;}
.y11_c00105{bottom:969.120000px;}
.y10_c00105{bottom:969.840000px;}
.ye_c00105{bottom:970.560000px;}
.y2_c00105{bottom:1007.280000px;}
.y1_c00105{bottom:1008.000000px;}
.yb_c00105{bottom:1012.320000px;}
.yc_c00105{bottom:1013.760000px;}
.yd_c00105{bottom:1014.480000px;}
.ya_c00105{bottom:1096.560000px;}
.h11_c00105{height:2.591719px;}
.h14_c00105{height:12.958594px;}
.he_c00105{height:28.508906px;}
.h7_c00105{height:31.100625px;}
.h12_c00105{height:33.692344px;}
.hf_c00105{height:36.284062px;}
.h15_c00105{height:41.467500px;}
.hb_c00105{height:44.059219px;}
.ha_c00105{height:46.650937px;}
.hc_c00105{height:49.242656px;}
.h4_c00105{height:51.834375px;}
.h6_c00105{height:54.426094px;}
.h9_c00105{height:57.017812px;}
.hd_c00105{height:57.306094px;}
.h16_c00105{height:57.594375px;}
.h13_c00105{height:59.609531px;}
.h2_c00105{height:62.201250px;}
.h10_c00105{height:64.792969px;}
.h5_c00105{height:67.384687px;}
.h3_c00105{height:69.976406px;}
.h8_c00105{height:75.159844px;}
.h1_c00105{height:1149.000000px;}
.h0_c00105{height:1149.120000px;}
.w0_c00105{width:792.720000px;}
.w1_c00105{width:792.750000px;}
.x0_c00105{left:0.000000px;}
.x1d_c00105{left:61.920000px;}
.x1_c00105{left:63.360000px;}
.x28_c00105{left:64.800000px;}
.xf_c00105{left:95.040000px;}
.x4_c00105{left:105.840000px;}
.x1e_c00105{left:114.480000px;}
.x3_c00105{left:125.280000px;}
.x10_c00105{left:126.720000px;}
.x17_c00105{left:135.360000px;}
.x2_c00105{left:136.800000px;}
.x24_c00105{left:148.320000px;}
.x1c_c00105{left:210.240000px;}
.x19_c00105{left:222.480000px;}
.x11_c00105{left:233.280000px;}
.x15_c00105{left:261.360000px;}
.x20_c00105{left:265.680000px;}
.x12_c00105{left:275.760000px;}
.x1f_c00105{left:285.840000px;}
.x21_c00105{left:307.440000px;}
.x18_c00105{left:308.880000px;}
.x22_c00105{left:318.960000px;}
.x27_c00105{left:330.480000px;}
.x1a_c00105{left:362.880000px;}
.x25_c00105{left:372.960000px;}
.x1b_c00105{left:406.080000px;}
.x13_c00105{left:416.880000px;}
.x26_c00105{left:427.680000px;}
.x23_c00105{left:460.080000px;}
.x14_c00105{left:468.720000px;}
.x16_c00105{left:492.480000px;}
.x6_c00105{left:547.200000px;}
.xb_c00105{left:548.640000px;}
.xd_c00105{left:558.720000px;}
.x2b_c00105{left:574.560000px;}
.xc_c00105{left:580.320000px;}
.x2c_c00105{left:601.200000px;}
.x2a_c00105{left:612.720000px;}
.x29_c00105{left:633.600000px;}
.x7_c00105{left:635.040000px;}
.x8_c00105{left:667.440000px;}
.x5_c00105{left:690.480000px;}
.xe_c00105{left:700.560000px;}
.x2d_c00105{left:705.600000px;}
.x9_c00105{left:710.640000px;}
.x2e_c00105{left:712.080000px;}
.xa_c00105{left:731.520000px;}
@media print{
.v3_c00105{vertical-align:-2.560000pt;}
.v0_c00105{vertical-align:0.000000pt;}
.v1_c00105{vertical-align:2.560000pt;}
.v2_c00105{vertical-align:5.120000pt;}
.ls0_c00105{letter-spacing:0.000000pt;}
.ws3_c00105{word-spacing:0.000000pt;}
.ws1_c00105{word-spacing:8.422400pt;}
.ws0_c00105{word-spacing:10.391467pt;}
.ws2_c00105{word-spacing:171.333333pt;}
.fse_c00105{font-size:2.560000pt;}
.fs11_c00105{font-size:12.800000pt;}
.fsb_c00105{font-size:28.160000pt;}
.fs5_c00105{font-size:30.720000pt;}
.fsf_c00105{font-size:33.280000pt;}
.fsc_c00105{font-size:35.840000pt;}
.fs12_c00105{font-size:40.960000pt;}
.fs9_c00105{font-size:43.520000pt;}
.fs8_c00105{font-size:46.080000pt;}
.fsa_c00105{font-size:48.640000pt;}
.fs2_c00105{font-size:51.200000pt;}
.fs4_c00105{font-size:53.760000pt;}
.fs7_c00105{font-size:56.320000pt;}
.fs10_c00105{font-size:58.880000pt;}
.fs0_c00105{font-size:61.440000pt;}
.fsd_c00105{font-size:64.000000pt;}
.fs3_c00105{font-size:66.560000pt;}
.fs1_c00105{font-size:69.120000pt;}
.fs6_c00105{font-size:74.240000pt;}
.y0_c00105{bottom:0.000000pt;}
.y7b_c00105{bottom:53.120000pt;}
.y7a_c00105{bottom:53.760000pt;}
.y54_c00105{bottom:55.040000pt;}
.y79_c00105{bottom:57.600000pt;}
.y53_c00105{bottom:58.880000pt;}
.y52_c00105{bottom:59.520000pt;}
.y51_c00105{bottom:92.800000pt;}
.y77_c00105{bottom:93.440000pt;}
.y78_c00105{bottom:94.080000pt;}
.y76_c00105{bottom:94.720000pt;}
.y50_c00105{bottom:96.640000pt;}
.y75_c00105{bottom:130.560000pt;}
.y4f_c00105{bottom:131.200000pt;}
.y4e_c00105{bottom:131.840000pt;}
.y74_c00105{bottom:133.120000pt;}
.y4d_c00105{bottom:134.400000pt;}
.y4c_c00105{bottom:168.960000pt;}
.y49_c00105{bottom:169.600000pt;}
.y73_c00105{bottom:170.240000pt;}
.y4a_c00105{bottom:170.880000pt;}
.y4b_c00105{bottom:172.160000pt;}
.y48_c00105{bottom:172.800000pt;}
.y72_c00105{bottom:207.360000pt;}
.y47_c00105{bottom:208.000000pt;}
.y71_c00105{bottom:209.920000pt;}
.y46_c00105{bottom:210.560000pt;}
.y45_c00105{bottom:245.760000pt;}
.y70_c00105{bottom:248.320000pt;}
.y44_c00105{bottom:249.600000pt;}
.y43_c00105{bottom:282.880000pt;}
.y40_c00105{bottom:284.800000pt;}
.y42_c00105{bottom:285.440000pt;}
.y6e_c00105{bottom:286.080000pt;}
.y6f_c00105{bottom:286.720000pt;}
.y41_c00105{bottom:287.360000pt;}
.y3f_c00105{bottom:288.000000pt;}
.y3d_c00105{bottom:322.560000pt;}
.y6d_c00105{bottom:323.200000pt;}
.y6c_c00105{bottom:324.480000pt;}
.y3c_c00105{bottom:325.120000pt;}
.y3e_c00105{bottom:325.760000pt;}
.y3b_c00105{bottom:360.320000pt;}
.y6a_c00105{bottom:360.960000pt;}
.y6b_c00105{bottom:361.600000pt;}
.y69_c00105{bottom:362.240000pt;}
.y3a_c00105{bottom:363.520000pt;}
.y39_c00105{bottom:398.720000pt;}
.y68_c00105{bottom:399.360000pt;}
.y38_c00105{bottom:401.280000pt;}
.y67_c00105{bottom:402.560000pt;}
.y37_c00105{bottom:436.480000pt;}
.y65_c00105{bottom:437.760000pt;}
.y66_c00105{bottom:438.400000pt;}
.y36_c00105{bottom:439.680000pt;}
.y64_c00105{bottom:440.320000pt;}
.y34_c00105{bottom:476.160000pt;}
.y32_c00105{bottom:476.800000pt;}
.y63_c00105{bottom:477.440000pt;}
.y35_c00105{bottom:478.720000pt;}
.y33_c00105{bottom:481.920000pt;}
.y31_c00105{bottom:512.640000pt;}
.y60_c00105{bottom:514.560000pt;}
.y30_c00105{bottom:515.200000pt;}
.y62_c00105{bottom:515.840000pt;}
.y61_c00105{bottom:517.760000pt;}
.y2e_c00105{bottom:552.320000pt;}
.y2d_c00105{bottom:552.960000pt;}
.y2c_c00105{bottom:554.240000pt;}
.y2f_c00105{bottom:554.880000pt;}
.y5f_c00105{bottom:555.520000pt;}
.y29_c00105{bottom:590.080000pt;}
.y2b_c00105{bottom:590.720000pt;}
.y28_c00105{bottom:591.360000pt;}
.y5e_c00105{bottom:592.640000pt;}
.y2a_c00105{bottom:593.280000pt;}
.y5d_c00105{bottom:593.920000pt;}
.y26_c00105{bottom:627.840000pt;}
.y27_c00105{bottom:628.480000pt;}
.y25_c00105{bottom:629.760000pt;}
.y5b_c00105{bottom:631.680000pt;}
.y5c_c00105{bottom:632.320000pt;}
.y24_c00105{bottom:665.600000pt;}
.y23_c00105{bottom:667.520000pt;}
.y59_c00105{bottom:668.800000pt;}
.y58_c00105{bottom:669.440000pt;}
.y57_c00105{bottom:670.720000pt;}
.y5a_c00105{bottom:671.360000pt;}
.y21_c00105{bottom:703.360000pt;}
.y1f_c00105{bottom:704.640000pt;}
.y22_c00105{bottom:705.280000pt;}
.y20_c00105{bottom:705.920000pt;}
.y56_c00105{bottom:707.200000pt;}
.y55_c00105{bottom:709.120000pt;}
.y1e_c00105{bottom:737.920000pt;}
.y1c_c00105{bottom:741.760000pt;}
.y1a_c00105{bottom:743.680000pt;}
.y1b_c00105{bottom:744.320000pt;}
.y1d_c00105{bottom:745.600000pt;}
.y18_c00105{bottom:746.240000pt;}
.y19_c00105{bottom:746.880000pt;}
.y9_c00105{bottom:780.800000pt;}
.y7_c00105{bottom:781.440000pt;}
.y8_c00105{bottom:782.080000pt;}
.y17_c00105{bottom:783.360000pt;}
.y16_c00105{bottom:784.640000pt;}
.y15_c00105{bottom:785.920000pt;}
.y6_c00105{bottom:819.200000pt;}
.y5_c00105{bottom:819.840000pt;}
.y12_c00105{bottom:822.400000pt;}
.y13_c00105{bottom:823.040000pt;}
.y14_c00105{bottom:824.320000pt;}
.y4_c00105{bottom:856.960000pt;}
.y3_c00105{bottom:858.880000pt;}
.yf_c00105{bottom:860.160000pt;}
.y11_c00105{bottom:861.440000pt;}
.y10_c00105{bottom:862.080000pt;}
.ye_c00105{bottom:862.720000pt;}
.y2_c00105{bottom:895.360000pt;}
.y1_c00105{bottom:896.000000pt;}
.yb_c00105{bottom:899.840000pt;}
.yc_c00105{bottom:901.120000pt;}
.yd_c00105{bottom:901.760000pt;}
.ya_c00105{bottom:974.720000pt;}
.h11_c00105{height:2.303750pt;}
.h14_c00105{height:11.518750pt;}
.he_c00105{height:25.341250pt;}
.h7_c00105{height:27.645000pt;}
.h12_c00105{height:29.948750pt;}
.hf_c00105{height:32.252500pt;}
.h15_c00105{height:36.860000pt;}
.hb_c00105{height:39.163750pt;}
.ha_c00105{height:41.467500pt;}
.hc_c00105{height:43.771250pt;}
.h4_c00105{height:46.075000pt;}
.h6_c00105{height:48.378750pt;}
.h9_c00105{height:50.682500pt;}
.hd_c00105{height:50.938750pt;}
.h16_c00105{height:51.195000pt;}
.h13_c00105{height:52.986250pt;}
.h2_c00105{height:55.290000pt;}
.h10_c00105{height:57.593750pt;}
.h5_c00105{height:59.897500pt;}
.h3_c00105{height:62.201250pt;}
.h8_c00105{height:66.808750pt;}
.h1_c00105{height:1021.333333pt;}
.h0_c00105{height:1021.440000pt;}
.w0_c00105{width:704.640000pt;}
.w1_c00105{width:704.666667pt;}
.x0_c00105{left:0.000000pt;}
.x1d_c00105{left:55.040000pt;}
.x1_c00105{left:56.320000pt;}
.x28_c00105{left:57.600000pt;}
.xf_c00105{left:84.480000pt;}
.x4_c00105{left:94.080000pt;}
.x1e_c00105{left:101.760000pt;}
.x3_c00105{left:111.360000pt;}
.x10_c00105{left:112.640000pt;}
.x17_c00105{left:120.320000pt;}
.x2_c00105{left:121.600000pt;}
.x24_c00105{left:131.840000pt;}
.x1c_c00105{left:186.880000pt;}
.x19_c00105{left:197.760000pt;}
.x11_c00105{left:207.360000pt;}
.x15_c00105{left:232.320000pt;}
.x20_c00105{left:236.160000pt;}
.x12_c00105{left:245.120000pt;}
.x1f_c00105{left:254.080000pt;}
.x21_c00105{left:273.280000pt;}
.x18_c00105{left:274.560000pt;}
.x22_c00105{left:283.520000pt;}
.x27_c00105{left:293.760000pt;}
.x1a_c00105{left:322.560000pt;}
.x25_c00105{left:331.520000pt;}
.x1b_c00105{left:360.960000pt;}
.x13_c00105{left:370.560000pt;}
.x26_c00105{left:380.160000pt;}
.x23_c00105{left:408.960000pt;}
.x14_c00105{left:416.640000pt;}
.x16_c00105{left:437.760000pt;}
.x6_c00105{left:486.400000pt;}
.xb_c00105{left:487.680000pt;}
.xd_c00105{left:496.640000pt;}
.x2b_c00105{left:510.720000pt;}
.xc_c00105{left:515.840000pt;}
.x2c_c00105{left:534.400000pt;}
.x2a_c00105{left:544.640000pt;}
.x29_c00105{left:563.200000pt;}
.x7_c00105{left:564.480000pt;}
.x8_c00105{left:593.280000pt;}
.x5_c00105{left:613.760000pt;}
.xe_c00105{left:622.720000pt;}
.x2d_c00105{left:627.200000pt;}
.x9_c00105{left:631.680000pt;}
.x2e_c00105{left:632.960000pt;}
.xa_c00105{left:650.240000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ceea4b19ce6a7daf300032a6.woff2')format("woff");}.ff1_c00106{font-family:ff1_c00106;line-height:1.109863;font-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_c00106{transform:matrix(0.196850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196850,0.000000,0.000000,0.250000,0,0);}
.m37_c00106{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.m41_c00106{transform:matrix(0.207200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207200,0.000000,0.000000,0.250000,0,0);}
.mf_c00106{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m35_c00106{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_c00106{transform:matrix(0.233925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233925,0.000000,0.000000,0.250000,0,0);}
.m3c_c00106{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m54_c00106{transform:matrix(0.237850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237850,0.000000,0.000000,0.250000,0,0);}
.m55_c00106{transform:matrix(0.240150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240150,0.000000,0.000000,0.250000,0,0);}
.m40_c00106{transform:matrix(0.242800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242800,0.000000,0.000000,0.250000,0,0);}
.m39_c00106{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m46_c00106{transform:matrix(0.247425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247425,0.000000,0.000000,0.250000,0,0);}
.m11_c00106{transform:matrix(0.248725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248725,0.000000,0.000000,0.250000,0,0);}
.m28_c00106{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m6_c00106{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m16_c00106{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);}
.m2a_c00106{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);}
.m25_c00106{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);}
.m57_c00106{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m1_c00106{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_c00106{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m14_c00106{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);}
.m3b_c00106{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_c00106{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);}
.m2f_c00106{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m44_c00106{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00106{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00106{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.me_c00106{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);}
.m3d_c00106{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2_c00106{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00106{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m31_c00106{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m23_c00106{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00106{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m34_c00106{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m21_c00106{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.ma_c00106{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m17_c00106{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m36_c00106{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m0_c00106{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00106{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m56_c00106{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00106{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m32_c00106{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m22_c00106{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m30_c00106{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.md_c00106{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m4_c00106{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m49_c00106{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m20_c00106{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m13_c00106{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);}
.m45_c00106{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m53_c00106{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m38_c00106{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m29_c00106{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);}
.mb_c00106{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00106{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);}
.m9_c00106{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);}
.m24_c00106{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00106{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m27_c00106{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);}
.m50_c00106{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m10_c00106{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);}
.m52_c00106{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m12_c00106{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m48_c00106{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00106{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);}
.m43_c00106{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);}
.m4b_c00106{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m15_c00106{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);}
.m47_c00106{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00106{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);}
.m4a_c00106{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m26_c00106{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00106{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00106{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00106{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m42_c00106{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m51_c00106{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);}
.m2c_c00106{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m7_c00106{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);}
.m3_c00106{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00106{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m18_c00106{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m5_c00106{transform:matrix(0.805000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.805000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.805000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00106{transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);}
.m19_c00106{transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);}
.v0_c00106{vertical-align:0.000000px;}
.v1_c00106{vertical-align:11.520000px;}
.ls0_c00106{letter-spacing:0.000000px;}
.sc__c00106{text-shadow:none;}
.sc0_c00106{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00106{-webkit-text-stroke:0px transparent;}
.sc0_c00106{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00106{word-spacing:0.000000px;}
.ws1_c00106{word-spacing:9.212400px;}
.ws2_c00106{word-spacing:17.060371px;}
.ws0_c00106{word-spacing:202.865705px;}
.fc0_c00106{color:transparent;}
.fsb_c00106{font-size:17.280000px;}
.fsa_c00106{font-size:20.160000px;}
.fs11_c00106{font-size:23.040000px;}
.fs12_c00106{font-size:37.440000px;}
.fs9_c00106{font-size:40.320000px;}
.fsf_c00106{font-size:43.200000px;}
.fs5_c00106{font-size:46.080000px;}
.fs10_c00106{font-size:48.960000px;}
.fs3_c00106{font-size:51.840000px;}
.fsc_c00106{font-size:54.720000px;}
.fs6_c00106{font-size:57.600000px;}
.fs2_c00106{font-size:60.480000px;}
.fs4_c00106{font-size:63.360000px;}
.fsd_c00106{font-size:66.240000px;}
.fs0_c00106{font-size:69.120000px;}
.fse_c00106{font-size:72.000000px;}
.fs7_c00106{font-size:74.880000px;}
.fs1_c00106{font-size:77.760000px;}
.fs8_c00106{font-size:80.640000px;}
.y0_c00106{bottom:0.000000px;}
.y7b_c00106{bottom:102.240000px;}
.y75_c00106{bottom:102.960000px;}
.y79_c00106{bottom:104.400000px;}
.y7a_c00106{bottom:105.120000px;}
.y74_c00106{bottom:107.280000px;}
.y73_c00106{bottom:145.440000px;}
.y72_c00106{bottom:146.880000px;}
.y71_c00106{bottom:149.040000px;}
.y70_c00106{bottom:149.760000px;}
.y78_c00106{bottom:177.840000px;}
.y6b_c00106{bottom:178.560000px;}
.y6e_c00106{bottom:179.280000px;}
.y6f_c00106{bottom:180.720000px;}
.y6d_c00106{bottom:181.440000px;}
.y6c_c00106{bottom:182.160000px;}
.y6a_c00106{bottom:182.880000px;}
.y68_c00106{bottom:221.760000px;}
.y69_c00106{bottom:224.640000px;}
.y66_c00106{bottom:253.440000px;}
.y77_c00106{bottom:254.880000px;}
.y76_c00106{bottom:255.600000px;}
.y67_c00106{bottom:256.320000px;}
.y64_c00106{bottom:257.040000px;}
.y65_c00106{bottom:259.920000px;}
.y62_c00106{bottom:298.080000px;}
.y63_c00106{bottom:299.520000px;}
.y5e_c00106{bottom:327.600000px;}
.y5c_c00106{bottom:328.320000px;}
.y5f_c00106{bottom:329.040000px;}
.y60_c00106{bottom:329.760000px;}
.y61_c00106{bottom:330.480000px;}
.y5b_c00106{bottom:331.200000px;}
.y5d_c00106{bottom:331.920000px;}
.y58_c00106{bottom:371.520000px;}
.y59_c00106{bottom:372.960000px;}
.y57_c00106{bottom:373.680000px;}
.y5a_c00106{bottom:375.840000px;}
.y9_c00106{bottom:414.000000px;}
.yb_c00106{bottom:414.720000px;}
.yd_c00106{bottom:415.440000px;}
.ya_c00106{bottom:416.160000px;}
.y8_c00106{bottom:416.880000px;}
.yc_c00106{bottom:417.600000px;}
.ye_c00106{bottom:418.320000px;}
.y7_c00106{bottom:457.200000px;}
.y5_c00106{bottom:458.640000px;}
.y6_c00106{bottom:459.360000px;}
.y2_c00106{bottom:488.880000px;}
.y3_c00106{bottom:491.040000px;}
.y1_c00106{bottom:491.760000px;}
.y4_c00106{bottom:493.200000px;}
.y56_c00106{bottom:493.920000px;}
.y34_c00106{bottom:532.080000px;}
.y35_c00106{bottom:532.800000px;}
.y54_c00106{bottom:534.240000px;}
.y33_c00106{bottom:534.960000px;}
.y55_c00106{bottom:537.840000px;}
.y31_c00106{bottom:576.720000px;}
.y30_c00106{bottom:577.440000px;}
.y53_c00106{bottom:578.880000px;}
.y32_c00106{bottom:579.600000px;}
.y2f_c00106{bottom:617.760000px;}
.y2e_c00106{bottom:619.920000px;}
.y51_c00106{bottom:620.640000px;}
.y50_c00106{bottom:622.080000px;}
.y52_c00106{bottom:624.240000px;}
.y2d_c00106{bottom:660.240000px;}
.y2b_c00106{bottom:660.960000px;}
.y2a_c00106{bottom:662.400000px;}
.y2c_c00106{bottom:663.120000px;}
.y4d_c00106{bottom:664.560000px;}
.y4f_c00106{bottom:665.280000px;}
.y4e_c00106{bottom:666.000000px;}
.y27_c00106{bottom:703.440000px;}
.y26_c00106{bottom:704.880000px;}
.y29_c00106{bottom:705.600000px;}
.y28_c00106{bottom:707.040000px;}
.y4a_c00106{bottom:707.760000px;}
.y4c_c00106{bottom:708.480000px;}
.y4b_c00106{bottom:709.920000px;}
.y23_c00106{bottom:746.640000px;}
.y22_c00106{bottom:747.360000px;}
.y25_c00106{bottom:748.080000px;}
.y24_c00106{bottom:748.800000px;}
.y48_c00106{bottom:750.960000px;}
.y49_c00106{bottom:753.120000px;}
.y1d_c00106{bottom:789.840000px;}
.y21_c00106{bottom:791.280000px;}
.y1c_c00106{bottom:792.000000px;}
.y1e_c00106{bottom:793.440000px;}
.y1f_c00106{bottom:794.160000px;}
.y20_c00106{bottom:794.880000px;}
.y47_c00106{bottom:796.320000px;}
.y1b_c00106{bottom:831.600000px;}
.y18_c00106{bottom:833.760000px;}
.y19_c00106{bottom:835.200000px;}
.y46_c00106{bottom:836.640000px;}
.y45_c00106{bottom:837.360000px;}
.y1a_c00106{bottom:838.080000px;}
.y14_c00106{bottom:874.800000px;}
.y13_c00106{bottom:876.240000px;}
.y17_c00106{bottom:876.960000px;}
.y16_c00106{bottom:878.400000px;}
.y15_c00106{bottom:879.120000px;}
.y44_c00106{bottom:879.840000px;}
.y42_c00106{bottom:880.560000px;}
.y41_c00106{bottom:881.280000px;}
.y43_c00106{bottom:883.440000px;}
.y12_c00106{bottom:917.280000px;}
.y11_c00106{bottom:920.160000px;}
.y3f_c00106{bottom:923.040000px;}
.y40_c00106{bottom:923.760000px;}
.y3e_c00106{bottom:925.920000px;}
.y10_c00106{bottom:959.760000px;}
.yf_c00106{bottom:961.200000px;}
.y3b_c00106{bottom:965.520000px;}
.y3c_c00106{bottom:966.240000px;}
.y3d_c00106{bottom:967.680000px;}
.y3a_c00106{bottom:968.400000px;}
.y38_c00106{bottom:1009.440000px;}
.y39_c00106{bottom:1010.160000px;}
.y37_c00106{bottom:1011.600000px;}
.y36_c00106{bottom:1079.280000px;}
.hd_c00106{height:15.550313px;}
.hc_c00106{height:18.142031px;}
.h14_c00106{height:20.733750px;}
.h15_c00106{height:33.692344px;}
.hb_c00106{height:36.284062px;}
.h11_c00106{height:38.875781px;}
.h7_c00106{height:41.467500px;}
.h12_c00106{height:44.059219px;}
.h5_c00106{height:46.650937px;}
.he_c00106{height:49.242656px;}
.h8_c00106{height:51.834375px;}
.h4_c00106{height:54.426094px;}
.h6_c00106{height:57.017812px;}
.hf_c00106{height:59.609531px;}
.h2_c00106{height:62.201250px;}
.h10_c00106{height:64.792969px;}
.h13_c00106{height:65.946094px;}
.h9_c00106{height:67.384687px;}
.h3_c00106{height:69.976406px;}
.ha_c00106{height:72.568125px;}
.h1_c00106{height:1148.250000px;}
.h0_c00106{height:1148.400000px;}
.w0_c00106{width:792.000000px;}
.x0_c00106{left:0.000000px;}
.x11_c00106{left:64.800000px;}
.x1_c00106{left:66.960000px;}
.x41_c00106{left:69.120000px;}
.x17_c00106{left:97.920000px;}
.x18_c00106{left:106.560000px;}
.x3a_c00106{left:108.720000px;}
.x13_c00106{left:116.640000px;}
.x12_c00106{left:127.440000px;}
.x2_c00106{left:128.880000px;}
.x7_c00106{left:130.320000px;}
.x3b_c00106{left:131.760000px;}
.xa_c00106{left:140.400000px;}
.x42_c00106{left:142.560000px;}
.x8_c00106{left:172.800000px;}
.x39_c00106{left:183.600000px;}
.x14_c00106{left:214.560000px;}
.x3c_c00106{left:216.720000px;}
.x9_c00106{left:226.800000px;}
.x24_c00106{left:236.160000px;}
.x3_c00106{left:237.600000px;}
.x1f_c00106{left:246.960000px;}
.x36_c00106{left:249.120000px;}
.x15_c00106{left:257.040000px;}
.x43_c00106{left:259.920000px;}
.x19_c00106{left:267.840000px;}
.x1d_c00106{left:269.280000px;}
.x3d_c00106{left:280.800000px;}
.x20_c00106{left:289.440000px;}
.xb_c00106{left:292.320000px;}
.x22_c00106{left:300.960000px;}
.x40_c00106{left:303.120000px;}
.x1a_c00106{left:311.040000px;}
.x3e_c00106{left:313.200000px;}
.x23_c00106{left:324.000000px;}
.x1e_c00106{left:354.960000px;}
.x44_c00106{left:357.120000px;}
.x4_c00106{left:367.200000px;}
.x16_c00106{left:376.560000px;}
.xc_c00106{left:378.000000px;}
.x1b_c00106{left:388.080000px;}
.x3f_c00106{left:410.400000px;}
.x5_c00106{left:419.760000px;}
.x1c_c00106{left:430.560000px;}
.x37_c00106{left:442.800000px;}
.x21_c00106{left:453.600000px;}
.x6_c00106{left:464.400000px;}
.x38_c00106{left:530.640000px;}
.xd_c00106{left:550.800000px;}
.x45_c00106{left:552.240000px;}
.x26_c00106{left:560.880000px;}
.x32_c00106{left:563.040000px;}
.x27_c00106{left:583.200000px;}
.x31_c00106{left:584.640000px;}
.x28_c00106{left:604.080000px;}
.x2e_c00106{left:605.520000px;}
.x34_c00106{left:606.960000px;}
.x2d_c00106{left:615.600000px;}
.x2f_c00106{left:617.040000px;}
.x46_c00106{left:630.720000px;}
.x2b_c00106{left:637.200000px;}
.xe_c00106{left:640.080000px;}
.x2c_c00106{left:671.040000px;}
.xf_c00106{left:673.200000px;}
.x25_c00106{left:678.240000px;}
.x35_c00106{left:696.240000px;}
.x30_c00106{left:705.600000px;}
.x29_c00106{left:712.800000px;}
.x2a_c00106{left:714.960000px;}
.x10_c00106{left:716.400000px;}
.x33_c00106{left:736.560000px;}
@media print{
.v0_c00106{vertical-align:0.000000pt;}
.v1_c00106{vertical-align:10.240000pt;}
.ls0_c00106{letter-spacing:0.000000pt;}
.ws3_c00106{word-spacing:0.000000pt;}
.ws1_c00106{word-spacing:8.188800pt;}
.ws2_c00106{word-spacing:15.164774pt;}
.ws0_c00106{word-spacing:180.325071pt;}
.fsb_c00106{font-size:15.360000pt;}
.fsa_c00106{font-size:17.920000pt;}
.fs11_c00106{font-size:20.480000pt;}
.fs12_c00106{font-size:33.280000pt;}
.fs9_c00106{font-size:35.840000pt;}
.fsf_c00106{font-size:38.400000pt;}
.fs5_c00106{font-size:40.960000pt;}
.fs10_c00106{font-size:43.520000pt;}
.fs3_c00106{font-size:46.080000pt;}
.fsc_c00106{font-size:48.640000pt;}
.fs6_c00106{font-size:51.200000pt;}
.fs2_c00106{font-size:53.760000pt;}
.fs4_c00106{font-size:56.320000pt;}
.fsd_c00106{font-size:58.880000pt;}
.fs0_c00106{font-size:61.440000pt;}
.fse_c00106{font-size:64.000000pt;}
.fs7_c00106{font-size:66.560000pt;}
.fs1_c00106{font-size:69.120000pt;}
.fs8_c00106{font-size:71.680000pt;}
.y0_c00106{bottom:0.000000pt;}
.y7b_c00106{bottom:90.880000pt;}
.y75_c00106{bottom:91.520000pt;}
.y79_c00106{bottom:92.800000pt;}
.y7a_c00106{bottom:93.440000pt;}
.y74_c00106{bottom:95.360000pt;}
.y73_c00106{bottom:129.280000pt;}
.y72_c00106{bottom:130.560000pt;}
.y71_c00106{bottom:132.480000pt;}
.y70_c00106{bottom:133.120000pt;}
.y78_c00106{bottom:158.080000pt;}
.y6b_c00106{bottom:158.720000pt;}
.y6e_c00106{bottom:159.360000pt;}
.y6f_c00106{bottom:160.640000pt;}
.y6d_c00106{bottom:161.280000pt;}
.y6c_c00106{bottom:161.920000pt;}
.y6a_c00106{bottom:162.560000pt;}
.y68_c00106{bottom:197.120000pt;}
.y69_c00106{bottom:199.680000pt;}
.y66_c00106{bottom:225.280000pt;}
.y77_c00106{bottom:226.560000pt;}
.y76_c00106{bottom:227.200000pt;}
.y67_c00106{bottom:227.840000pt;}
.y64_c00106{bottom:228.480000pt;}
.y65_c00106{bottom:231.040000pt;}
.y62_c00106{bottom:264.960000pt;}
.y63_c00106{bottom:266.240000pt;}
.y5e_c00106{bottom:291.200000pt;}
.y5c_c00106{bottom:291.840000pt;}
.y5f_c00106{bottom:292.480000pt;}
.y60_c00106{bottom:293.120000pt;}
.y61_c00106{bottom:293.760000pt;}
.y5b_c00106{bottom:294.400000pt;}
.y5d_c00106{bottom:295.040000pt;}
.y58_c00106{bottom:330.240000pt;}
.y59_c00106{bottom:331.520000pt;}
.y57_c00106{bottom:332.160000pt;}
.y5a_c00106{bottom:334.080000pt;}
.y9_c00106{bottom:368.000000pt;}
.yb_c00106{bottom:368.640000pt;}
.yd_c00106{bottom:369.280000pt;}
.ya_c00106{bottom:369.920000pt;}
.y8_c00106{bottom:370.560000pt;}
.yc_c00106{bottom:371.200000pt;}
.ye_c00106{bottom:371.840000pt;}
.y7_c00106{bottom:406.400000pt;}
.y5_c00106{bottom:407.680000pt;}
.y6_c00106{bottom:408.320000pt;}
.y2_c00106{bottom:434.560000pt;}
.y3_c00106{bottom:436.480000pt;}
.y1_c00106{bottom:437.120000pt;}
.y4_c00106{bottom:438.400000pt;}
.y56_c00106{bottom:439.040000pt;}
.y34_c00106{bottom:472.960000pt;}
.y35_c00106{bottom:473.600000pt;}
.y54_c00106{bottom:474.880000pt;}
.y33_c00106{bottom:475.520000pt;}
.y55_c00106{bottom:478.080000pt;}
.y31_c00106{bottom:512.640000pt;}
.y30_c00106{bottom:513.280000pt;}
.y53_c00106{bottom:514.560000pt;}
.y32_c00106{bottom:515.200000pt;}
.y2f_c00106{bottom:549.120000pt;}
.y2e_c00106{bottom:551.040000pt;}
.y51_c00106{bottom:551.680000pt;}
.y50_c00106{bottom:552.960000pt;}
.y52_c00106{bottom:554.880000pt;}
.y2d_c00106{bottom:586.880000pt;}
.y2b_c00106{bottom:587.520000pt;}
.y2a_c00106{bottom:588.800000pt;}
.y2c_c00106{bottom:589.440000pt;}
.y4d_c00106{bottom:590.720000pt;}
.y4f_c00106{bottom:591.360000pt;}
.y4e_c00106{bottom:592.000000pt;}
.y27_c00106{bottom:625.280000pt;}
.y26_c00106{bottom:626.560000pt;}
.y29_c00106{bottom:627.200000pt;}
.y28_c00106{bottom:628.480000pt;}
.y4a_c00106{bottom:629.120000pt;}
.y4c_c00106{bottom:629.760000pt;}
.y4b_c00106{bottom:631.040000pt;}
.y23_c00106{bottom:663.680000pt;}
.y22_c00106{bottom:664.320000pt;}
.y25_c00106{bottom:664.960000pt;}
.y24_c00106{bottom:665.600000pt;}
.y48_c00106{bottom:667.520000pt;}
.y49_c00106{bottom:669.440000pt;}
.y1d_c00106{bottom:702.080000pt;}
.y21_c00106{bottom:703.360000pt;}
.y1c_c00106{bottom:704.000000pt;}
.y1e_c00106{bottom:705.280000pt;}
.y1f_c00106{bottom:705.920000pt;}
.y20_c00106{bottom:706.560000pt;}
.y47_c00106{bottom:707.840000pt;}
.y1b_c00106{bottom:739.200000pt;}
.y18_c00106{bottom:741.120000pt;}
.y19_c00106{bottom:742.400000pt;}
.y46_c00106{bottom:743.680000pt;}
.y45_c00106{bottom:744.320000pt;}
.y1a_c00106{bottom:744.960000pt;}
.y14_c00106{bottom:777.600000pt;}
.y13_c00106{bottom:778.880000pt;}
.y17_c00106{bottom:779.520000pt;}
.y16_c00106{bottom:780.800000pt;}
.y15_c00106{bottom:781.440000pt;}
.y44_c00106{bottom:782.080000pt;}
.y42_c00106{bottom:782.720000pt;}
.y41_c00106{bottom:783.360000pt;}
.y43_c00106{bottom:785.280000pt;}
.y12_c00106{bottom:815.360000pt;}
.y11_c00106{bottom:817.920000pt;}
.y3f_c00106{bottom:820.480000pt;}
.y40_c00106{bottom:821.120000pt;}
.y3e_c00106{bottom:823.040000pt;}
.y10_c00106{bottom:853.120000pt;}
.yf_c00106{bottom:854.400000pt;}
.y3b_c00106{bottom:858.240000pt;}
.y3c_c00106{bottom:858.880000pt;}
.y3d_c00106{bottom:860.160000pt;}
.y3a_c00106{bottom:860.800000pt;}
.y38_c00106{bottom:897.280000pt;}
.y39_c00106{bottom:897.920000pt;}
.y37_c00106{bottom:899.200000pt;}
.y36_c00106{bottom:959.360000pt;}
.hd_c00106{height:13.822500pt;}
.hc_c00106{height:16.126250pt;}
.h14_c00106{height:18.430000pt;}
.h15_c00106{height:29.948750pt;}
.hb_c00106{height:32.252500pt;}
.h11_c00106{height:34.556250pt;}
.h7_c00106{height:36.860000pt;}
.h12_c00106{height:39.163750pt;}
.h5_c00106{height:41.467500pt;}
.he_c00106{height:43.771250pt;}
.h8_c00106{height:46.075000pt;}
.h4_c00106{height:48.378750pt;}
.h6_c00106{height:50.682500pt;}
.hf_c00106{height:52.986250pt;}
.h2_c00106{height:55.290000pt;}
.h10_c00106{height:57.593750pt;}
.h13_c00106{height:58.618750pt;}
.h9_c00106{height:59.897500pt;}
.h3_c00106{height:62.201250pt;}
.ha_c00106{height:64.505000pt;}
.h1_c00106{height:1020.666667pt;}
.h0_c00106{height:1020.800000pt;}
.w0_c00106{width:704.000000pt;}
.x0_c00106{left:0.000000pt;}
.x11_c00106{left:57.600000pt;}
.x1_c00106{left:59.520000pt;}
.x41_c00106{left:61.440000pt;}
.x17_c00106{left:87.040000pt;}
.x18_c00106{left:94.720000pt;}
.x3a_c00106{left:96.640000pt;}
.x13_c00106{left:103.680000pt;}
.x12_c00106{left:113.280000pt;}
.x2_c00106{left:114.560000pt;}
.x7_c00106{left:115.840000pt;}
.x3b_c00106{left:117.120000pt;}
.xa_c00106{left:124.800000pt;}
.x42_c00106{left:126.720000pt;}
.x8_c00106{left:153.600000pt;}
.x39_c00106{left:163.200000pt;}
.x14_c00106{left:190.720000pt;}
.x3c_c00106{left:192.640000pt;}
.x9_c00106{left:201.600000pt;}
.x24_c00106{left:209.920000pt;}
.x3_c00106{left:211.200000pt;}
.x1f_c00106{left:219.520000pt;}
.x36_c00106{left:221.440000pt;}
.x15_c00106{left:228.480000pt;}
.x43_c00106{left:231.040000pt;}
.x19_c00106{left:238.080000pt;}
.x1d_c00106{left:239.360000pt;}
.x3d_c00106{left:249.600000pt;}
.x20_c00106{left:257.280000pt;}
.xb_c00106{left:259.840000pt;}
.x22_c00106{left:267.520000pt;}
.x40_c00106{left:269.440000pt;}
.x1a_c00106{left:276.480000pt;}
.x3e_c00106{left:278.400000pt;}
.x23_c00106{left:288.000000pt;}
.x1e_c00106{left:315.520000pt;}
.x44_c00106{left:317.440000pt;}
.x4_c00106{left:326.400000pt;}
.x16_c00106{left:334.720000pt;}
.xc_c00106{left:336.000000pt;}
.x1b_c00106{left:344.960000pt;}
.x3f_c00106{left:364.800000pt;}
.x5_c00106{left:373.120000pt;}
.x1c_c00106{left:382.720000pt;}
.x37_c00106{left:393.600000pt;}
.x21_c00106{left:403.200000pt;}
.x6_c00106{left:412.800000pt;}
.x38_c00106{left:471.680000pt;}
.xd_c00106{left:489.600000pt;}
.x45_c00106{left:490.880000pt;}
.x26_c00106{left:498.560000pt;}
.x32_c00106{left:500.480000pt;}
.x27_c00106{left:518.400000pt;}
.x31_c00106{left:519.680000pt;}
.x28_c00106{left:536.960000pt;}
.x2e_c00106{left:538.240000pt;}
.x34_c00106{left:539.520000pt;}
.x2d_c00106{left:547.200000pt;}
.x2f_c00106{left:548.480000pt;}
.x46_c00106{left:560.640000pt;}
.x2b_c00106{left:566.400000pt;}
.xe_c00106{left:568.960000pt;}
.x2c_c00106{left:596.480000pt;}
.xf_c00106{left:598.400000pt;}
.x25_c00106{left:602.880000pt;}
.x35_c00106{left:618.880000pt;}
.x30_c00106{left:627.200000pt;}
.x29_c00106{left:633.600000pt;}
.x2a_c00106{left:635.520000pt;}
.x10_c00106{left:636.800000pt;}
.x33_c00106{left:654.720000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_027533e6fa3b0b622415c4e7.woff2')format("woff");}.ff1_c00107{font-family:ff1_c00107;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m54_c00107{transform:matrix(0.157200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157200,0.000000,0.000000,0.250000,0,0);}
.m1f_c00107{transform:matrix(0.187325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187325,0.000000,0.000000,0.250000,0,0);}
.m12_c00107{transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);}
.m9_c00107{transform:matrix(0.211525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211525,0.000000,0.000000,0.250000,0,0);}
.m22_c00107{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m49_c00107{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m31_c00107{transform:matrix(0.243700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243700,0.000000,0.000000,0.250000,0,0);}
.m45_c00107{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m20_c00107{transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);}
.m33_c00107{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m16_c00107{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1_c00107{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);}
.m42_c00107{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);}
.m3f_c00107{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);}
.m32_c00107{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00107{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);}
.m3a_c00107{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.md_c00107{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m52_c00107{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);}
.m55_c00107{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.mb_c00107{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);}
.m3e_c00107{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00107{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);}
.m2b_c00107{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00107{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);}
.m43_c00107{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00107{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m4_c00107{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m27_c00107{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m51_c00107{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m46_c00107{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m37_c00107{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00107{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mf_c00107{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m40_c00107{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00107{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m47_c00107{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m30_c00107{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m53_c00107{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m34_c00107{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);}
.m3d_c00107{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m35_c00107{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_c00107{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m44_c00107{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);}
.m4f_c00107{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m14_c00107{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);}
.m19_c00107{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m0_c00107{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m13_c00107{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m21_c00107{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.ma_c00107{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);}
.m28_c00107{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m26_c00107{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m2_c00107{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);}
.m15_c00107{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);}
.m1c_c00107{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.mc_c00107{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);}
.m2f_c00107{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);}
.m7_c00107{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);}
.m38_c00107{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);}
.m4a_c00107{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00107{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);}
.m2a_c00107{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m23_c00107{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m18_c00107{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);}
.m25_c00107{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);}
.m39_c00107{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m41_c00107{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m6_c00107{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00107{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00107{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m29_c00107{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m17_c00107{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m8_c00107{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m56_c00107{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00107{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m3_c00107{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m36_c00107{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);}
.m24_c00107{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m10_c00107{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00107{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);}
.m11_c00107{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00107{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m48_c00107{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m5_c00107{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m50_c00107{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);}
.m1a_c00107{transform:matrix(1.692500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.692500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.692500,0.000000,0.000000,0.250000,0,0);}
.v0_c00107{vertical-align:0.000000px;}
.v1_c00107{vertical-align:5.760000px;}
.ls0_c00107{letter-spacing:0.000000px;}
.sc__c00107{text-shadow:none;}
.sc0_c00107{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00107{-webkit-text-stroke:0px transparent;}
.sc0_c00107{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00107{word-spacing:0.000000px;}
.ws0_c00107{word-spacing:1.604400px;}
.fc0_c00107{color:transparent;}
.fs10_c00107{font-size:34.560000px;}
.fsd_c00107{font-size:37.440000px;}
.fsf_c00107{font-size:40.320000px;}
.fs5_c00107{font-size:43.200000px;}
.fs8_c00107{font-size:46.080000px;}
.fsc_c00107{font-size:48.960000px;}
.fs2_c00107{font-size:51.840000px;}
.fs3_c00107{font-size:54.720000px;}
.fs9_c00107{font-size:57.600000px;}
.fs7_c00107{font-size:60.480000px;}
.fs0_c00107{font-size:63.360000px;}
.fsa_c00107{font-size:66.240000px;}
.fs4_c00107{font-size:69.120000px;}
.fs11_c00107{font-size:72.000000px;}
.fs1_c00107{font-size:74.880000px;}
.fs6_c00107{font-size:77.760000px;}
.fsb_c00107{font-size:103.680000px;}
.fse_c00107{font-size:106.560000px;}
.y0_c00107{bottom:0.000000px;}
.y78_c00107{bottom:82.800000px;}
.y77_c00107{bottom:83.520000px;}
.y6f_c00107{bottom:84.960000px;}
.y6e_c00107{bottom:86.400000px;}
.y6d_c00107{bottom:89.280000px;}
.y76_c00107{bottom:126.720000px;}
.y6c_c00107{bottom:128.160000px;}
.y75_c00107{bottom:128.880000px;}
.y6b_c00107{bottom:133.200000px;}
.y73_c00107{bottom:169.920000px;}
.y6a_c00107{bottom:170.640000px;}
.y74_c00107{bottom:171.360000px;}
.y68_c00107{bottom:172.800000px;}
.y69_c00107{bottom:174.240000px;}
.y67_c00107{bottom:175.680000px;}
.y66_c00107{bottom:212.400000px;}
.y71_c00107{bottom:213.120000px;}
.y64_c00107{bottom:213.840000px;}
.y72_c00107{bottom:214.560000px;}
.y65_c00107{bottom:216.720000px;}
.y63_c00107{bottom:218.160000px;}
.y62_c00107{bottom:256.320000px;}
.y60_c00107{bottom:257.040000px;}
.y70_c00107{bottom:257.760000px;}
.y61_c00107{bottom:260.640000px;}
.y5f_c00107{bottom:261.360000px;}
.y5e_c00107{bottom:300.960000px;}
.y5d_c00107{bottom:305.280000px;}
.y5c_c00107{bottom:331.200000px;}
.y5b_c00107{bottom:331.920000px;}
.y5a_c00107{bottom:332.640000px;}
.y58_c00107{bottom:334.080000px;}
.y59_c00107{bottom:334.800000px;}
.y57_c00107{bottom:336.240000px;}
.y45_c00107{bottom:375.120000px;}
.y43_c00107{bottom:375.840000px;}
.y44_c00107{bottom:376.560000px;}
.y42_c00107{bottom:378.000000px;}
.y55_c00107{bottom:418.320000px;}
.y41_c00107{bottom:419.040000px;}
.y54_c00107{bottom:419.760000px;}
.y56_c00107{bottom:420.480000px;}
.y40_c00107{bottom:422.640000px;}
.y3f_c00107{bottom:461.520000px;}
.y3e_c00107{bottom:462.960000px;}
.y53_c00107{bottom:493.920000px;}
.y3c_c00107{bottom:494.640000px;}
.y52_c00107{bottom:495.360000px;}
.y3d_c00107{bottom:496.800000px;}
.y3b_c00107{bottom:497.520000px;}
.y3a_c00107{bottom:529.200000px;}
.y39_c00107{bottom:536.400000px;}
.y37_c00107{bottom:537.120000px;}
.y38_c00107{bottom:537.840000px;}
.y50_c00107{bottom:538.560000px;}
.y51_c00107{bottom:539.280000px;}
.y36_c00107{bottom:540.000000px;}
.y34_c00107{bottom:579.600000px;}
.y4d_c00107{bottom:580.320000px;}
.y35_c00107{bottom:581.040000px;}
.y4f_c00107{bottom:581.760000px;}
.y33_c00107{bottom:582.480000px;}
.y4e_c00107{bottom:583.200000px;}
.y32_c00107{bottom:622.800000px;}
.y31_c00107{bottom:623.520000px;}
.y30_c00107{bottom:624.240000px;}
.y2d_c00107{bottom:655.200000px;}
.y2e_c00107{bottom:655.920000px;}
.y2c_c00107{bottom:656.640000px;}
.y2f_c00107{bottom:657.360000px;}
.y4c_c00107{bottom:658.800000px;}
.y2b_c00107{bottom:698.400000px;}
.y2a_c00107{bottom:699.120000px;}
.y28_c00107{bottom:699.840000px;}
.y29_c00107{bottom:702.000000px;}
.y24_c00107{bottom:730.080000px;}
.y25_c00107{bottom:731.520000px;}
.y23_c00107{bottom:732.240000px;}
.y26_c00107{bottom:733.680000px;}
.y27_c00107{bottom:734.400000px;}
.y4a_c00107{bottom:735.120000px;}
.y4b_c00107{bottom:735.840000px;}
.y22_c00107{bottom:774.000000px;}
.y21_c00107{bottom:776.880000px;}
.y1c_c00107{bottom:804.960000px;}
.y1b_c00107{bottom:806.400000px;}
.y20_c00107{bottom:807.120000px;}
.y1f_c00107{bottom:807.840000px;}
.y1d_c00107{bottom:809.280000px;}
.y1e_c00107{bottom:810.000000px;}
.y19_c00107{bottom:841.680000px;}
.y17_c00107{bottom:847.440000px;}
.y16_c00107{bottom:849.600000px;}
.y18_c00107{bottom:850.320000px;}
.y1a_c00107{bottom:851.040000px;}
.y49_c00107{bottom:851.760000px;}
.y47_c00107{bottom:853.200000px;}
.y48_c00107{bottom:854.640000px;}
.y11_c00107{bottom:890.640000px;}
.y10_c00107{bottom:892.080000px;}
.y12_c00107{bottom:892.800000px;}
.y15_c00107{bottom:893.520000px;}
.y46_c00107{bottom:894.240000px;}
.y13_c00107{bottom:894.960000px;}
.y14_c00107{bottom:895.680000px;}
.yf_c00107{bottom:928.800000px;}
.yc_c00107{bottom:933.840000px;}
.yb_c00107{bottom:935.280000px;}
.yd_c00107{bottom:938.160000px;}
.ye_c00107{bottom:938.880000px;}
.y6_c00107{bottom:977.760000px;}
.y5_c00107{bottom:980.640000px;}
.y7_c00107{bottom:981.360000px;}
.y2_c00107{bottom:1009.440000px;}
.y1_c00107{bottom:1010.160000px;}
.y4_c00107{bottom:1012.320000px;}
.y9_c00107{bottom:1013.040000px;}
.y3_c00107{bottom:1013.760000px;}
.ya_c00107{bottom:1015.920000px;}
.y8_c00107{bottom:1084.320000px;}
.h12_c00107{height:31.100625px;}
.hf_c00107{height:33.692344px;}
.h11_c00107{height:36.284062px;}
.h7_c00107{height:38.875781px;}
.ha_c00107{height:41.467500px;}
.he_c00107{height:44.059219px;}
.h4_c00107{height:46.650937px;}
.h5_c00107{height:49.242656px;}
.hb_c00107{height:51.834375px;}
.h9_c00107{height:54.426094px;}
.h2_c00107{height:57.017812px;}
.hc_c00107{height:59.609531px;}
.h6_c00107{height:62.201250px;}
.h13_c00107{height:64.792969px;}
.h3_c00107{height:67.384687px;}
.h8_c00107{height:69.976406px;}
.hd_c00107{height:93.301875px;}
.h10_c00107{height:95.893594px;}
.h0_c00107{height:1153.440000px;}
.h1_c00107{height:1153.500000px;}
.w0_c00107{width:799.200000px;}
.w1_c00107{width:799.500000px;}
.x0_c00107{left:0.000000px;}
.xf_c00107{left:66.960000px;}
.x1_c00107{left:68.400000px;}
.x2e_c00107{left:99.360000px;}
.x6_c00107{left:129.600000px;}
.x2_c00107{left:131.760000px;}
.x17_c00107{left:140.400000px;}
.x28_c00107{left:141.840000px;}
.x27_c00107{left:152.640000px;}
.x7_c00107{left:173.520000px;}
.x1f_c00107{left:205.200000px;}
.x1d_c00107{left:216.000000px;}
.x3_c00107{left:217.440000px;}
.x8_c00107{left:227.520000px;}
.x31_c00107{left:237.600000px;}
.x20_c00107{left:257.760000px;}
.x9_c00107{left:270.000000px;}
.x32_c00107{left:280.080000px;}
.x10_c00107{left:291.600000px;}
.x2f_c00107{left:301.680000px;}
.xa_c00107{left:303.120000px;}
.x25_c00107{left:313.200000px;}
.x4_c00107{left:324.720000px;}
.x29_c00107{left:334.080000px;}
.x11_c00107{left:345.600000px;}
.x30_c00107{left:354.240000px;}
.x1a_c00107{left:355.680000px;}
.x18_c00107{left:367.200000px;}
.x5_c00107{left:378.720000px;}
.x21_c00107{left:388.800000px;}
.x1b_c00107{left:399.600000px;}
.x23_c00107{left:410.400000px;}
.x26_c00107{left:421.200000px;}
.x12_c00107{left:432.720000px;}
.x22_c00107{left:442.800000px;}
.x1e_c00107{left:453.600000px;}
.x24_c00107{left:465.120000px;}
.x19_c00107{left:476.640000px;}
.x13_c00107{left:486.000000px;}
.x1c_c00107{left:487.440000px;}
.x2c_c00107{left:550.800000px;}
.x14_c00107{left:552.960000px;}
.x2d_c00107{left:605.520000px;}
.x15_c00107{left:606.960000px;}
.x2a_c00107{left:639.360000px;}
.xc_c00107{left:640.800000px;}
.x2b_c00107{left:672.480000px;}
.xd_c00107{left:673.920000px;}
.xb_c00107{left:686.880000px;}
.x34_c00107{left:705.600000px;}
.x16_c00107{left:715.680000px;}
.xe_c00107{left:717.120000px;}
.x33_c00107{left:737.280000px;}
@media print{
.v0_c00107{vertical-align:0.000000pt;}
.v1_c00107{vertical-align:5.120000pt;}
.ls0_c00107{letter-spacing:0.000000pt;}
.ws1_c00107{word-spacing:0.000000pt;}
.ws0_c00107{word-spacing:1.426133pt;}
.fs10_c00107{font-size:30.720000pt;}
.fsd_c00107{font-size:33.280000pt;}
.fsf_c00107{font-size:35.840000pt;}
.fs5_c00107{font-size:38.400000pt;}
.fs8_c00107{font-size:40.960000pt;}
.fsc_c00107{font-size:43.520000pt;}
.fs2_c00107{font-size:46.080000pt;}
.fs3_c00107{font-size:48.640000pt;}
.fs9_c00107{font-size:51.200000pt;}
.fs7_c00107{font-size:53.760000pt;}
.fs0_c00107{font-size:56.320000pt;}
.fsa_c00107{font-size:58.880000pt;}
.fs4_c00107{font-size:61.440000pt;}
.fs11_c00107{font-size:64.000000pt;}
.fs1_c00107{font-size:66.560000pt;}
.fs6_c00107{font-size:69.120000pt;}
.fsb_c00107{font-size:92.160000pt;}
.fse_c00107{font-size:94.720000pt;}
.y0_c00107{bottom:0.000000pt;}
.y78_c00107{bottom:73.600000pt;}
.y77_c00107{bottom:74.240000pt;}
.y6f_c00107{bottom:75.520000pt;}
.y6e_c00107{bottom:76.800000pt;}
.y6d_c00107{bottom:79.360000pt;}
.y76_c00107{bottom:112.640000pt;}
.y6c_c00107{bottom:113.920000pt;}
.y75_c00107{bottom:114.560000pt;}
.y6b_c00107{bottom:118.400000pt;}
.y73_c00107{bottom:151.040000pt;}
.y6a_c00107{bottom:151.680000pt;}
.y74_c00107{bottom:152.320000pt;}
.y68_c00107{bottom:153.600000pt;}
.y69_c00107{bottom:154.880000pt;}
.y67_c00107{bottom:156.160000pt;}
.y66_c00107{bottom:188.800000pt;}
.y71_c00107{bottom:189.440000pt;}
.y64_c00107{bottom:190.080000pt;}
.y72_c00107{bottom:190.720000pt;}
.y65_c00107{bottom:192.640000pt;}
.y63_c00107{bottom:193.920000pt;}
.y62_c00107{bottom:227.840000pt;}
.y60_c00107{bottom:228.480000pt;}
.y70_c00107{bottom:229.120000pt;}
.y61_c00107{bottom:231.680000pt;}
.y5f_c00107{bottom:232.320000pt;}
.y5e_c00107{bottom:267.520000pt;}
.y5d_c00107{bottom:271.360000pt;}
.y5c_c00107{bottom:294.400000pt;}
.y5b_c00107{bottom:295.040000pt;}
.y5a_c00107{bottom:295.680000pt;}
.y58_c00107{bottom:296.960000pt;}
.y59_c00107{bottom:297.600000pt;}
.y57_c00107{bottom:298.880000pt;}
.y45_c00107{bottom:333.440000pt;}
.y43_c00107{bottom:334.080000pt;}
.y44_c00107{bottom:334.720000pt;}
.y42_c00107{bottom:336.000000pt;}
.y55_c00107{bottom:371.840000pt;}
.y41_c00107{bottom:372.480000pt;}
.y54_c00107{bottom:373.120000pt;}
.y56_c00107{bottom:373.760000pt;}
.y40_c00107{bottom:375.680000pt;}
.y3f_c00107{bottom:410.240000pt;}
.y3e_c00107{bottom:411.520000pt;}
.y53_c00107{bottom:439.040000pt;}
.y3c_c00107{bottom:439.680000pt;}
.y52_c00107{bottom:440.320000pt;}
.y3d_c00107{bottom:441.600000pt;}
.y3b_c00107{bottom:442.240000pt;}
.y3a_c00107{bottom:470.400000pt;}
.y39_c00107{bottom:476.800000pt;}
.y37_c00107{bottom:477.440000pt;}
.y38_c00107{bottom:478.080000pt;}
.y50_c00107{bottom:478.720000pt;}
.y51_c00107{bottom:479.360000pt;}
.y36_c00107{bottom:480.000000pt;}
.y34_c00107{bottom:515.200000pt;}
.y4d_c00107{bottom:515.840000pt;}
.y35_c00107{bottom:516.480000pt;}
.y4f_c00107{bottom:517.120000pt;}
.y33_c00107{bottom:517.760000pt;}
.y4e_c00107{bottom:518.400000pt;}
.y32_c00107{bottom:553.600000pt;}
.y31_c00107{bottom:554.240000pt;}
.y30_c00107{bottom:554.880000pt;}
.y2d_c00107{bottom:582.400000pt;}
.y2e_c00107{bottom:583.040000pt;}
.y2c_c00107{bottom:583.680000pt;}
.y2f_c00107{bottom:584.320000pt;}
.y4c_c00107{bottom:585.600000pt;}
.y2b_c00107{bottom:620.800000pt;}
.y2a_c00107{bottom:621.440000pt;}
.y28_c00107{bottom:622.080000pt;}
.y29_c00107{bottom:624.000000pt;}
.y24_c00107{bottom:648.960000pt;}
.y25_c00107{bottom:650.240000pt;}
.y23_c00107{bottom:650.880000pt;}
.y26_c00107{bottom:652.160000pt;}
.y27_c00107{bottom:652.800000pt;}
.y4a_c00107{bottom:653.440000pt;}
.y4b_c00107{bottom:654.080000pt;}
.y22_c00107{bottom:688.000000pt;}
.y21_c00107{bottom:690.560000pt;}
.y1c_c00107{bottom:715.520000pt;}
.y1b_c00107{bottom:716.800000pt;}
.y20_c00107{bottom:717.440000pt;}
.y1f_c00107{bottom:718.080000pt;}
.y1d_c00107{bottom:719.360000pt;}
.y1e_c00107{bottom:720.000000pt;}
.y19_c00107{bottom:748.160000pt;}
.y17_c00107{bottom:753.280000pt;}
.y16_c00107{bottom:755.200000pt;}
.y18_c00107{bottom:755.840000pt;}
.y1a_c00107{bottom:756.480000pt;}
.y49_c00107{bottom:757.120000pt;}
.y47_c00107{bottom:758.400000pt;}
.y48_c00107{bottom:759.680000pt;}
.y11_c00107{bottom:791.680000pt;}
.y10_c00107{bottom:792.960000pt;}
.y12_c00107{bottom:793.600000pt;}
.y15_c00107{bottom:794.240000pt;}
.y46_c00107{bottom:794.880000pt;}
.y13_c00107{bottom:795.520000pt;}
.y14_c00107{bottom:796.160000pt;}
.yf_c00107{bottom:825.600000pt;}
.yc_c00107{bottom:830.080000pt;}
.yb_c00107{bottom:831.360000pt;}
.yd_c00107{bottom:833.920000pt;}
.ye_c00107{bottom:834.560000pt;}
.y6_c00107{bottom:869.120000pt;}
.y5_c00107{bottom:871.680000pt;}
.y7_c00107{bottom:872.320000pt;}
.y2_c00107{bottom:897.280000pt;}
.y1_c00107{bottom:897.920000pt;}
.y4_c00107{bottom:899.840000pt;}
.y9_c00107{bottom:900.480000pt;}
.y3_c00107{bottom:901.120000pt;}
.ya_c00107{bottom:903.040000pt;}
.y8_c00107{bottom:963.840000pt;}
.h12_c00107{height:27.645000pt;}
.hf_c00107{height:29.948750pt;}
.h11_c00107{height:32.252500pt;}
.h7_c00107{height:34.556250pt;}
.ha_c00107{height:36.860000pt;}
.he_c00107{height:39.163750pt;}
.h4_c00107{height:41.467500pt;}
.h5_c00107{height:43.771250pt;}
.hb_c00107{height:46.075000pt;}
.h9_c00107{height:48.378750pt;}
.h2_c00107{height:50.682500pt;}
.hc_c00107{height:52.986250pt;}
.h6_c00107{height:55.290000pt;}
.h13_c00107{height:57.593750pt;}
.h3_c00107{height:59.897500pt;}
.h8_c00107{height:62.201250pt;}
.hd_c00107{height:82.935000pt;}
.h10_c00107{height:85.238750pt;}
.h0_c00107{height:1025.280000pt;}
.h1_c00107{height:1025.333333pt;}
.w0_c00107{width:710.400000pt;}
.w1_c00107{width:710.666667pt;}
.x0_c00107{left:0.000000pt;}
.xf_c00107{left:59.520000pt;}
.x1_c00107{left:60.800000pt;}
.x2e_c00107{left:88.320000pt;}
.x6_c00107{left:115.200000pt;}
.x2_c00107{left:117.120000pt;}
.x17_c00107{left:124.800000pt;}
.x28_c00107{left:126.080000pt;}
.x27_c00107{left:135.680000pt;}
.x7_c00107{left:154.240000pt;}
.x1f_c00107{left:182.400000pt;}
.x1d_c00107{left:192.000000pt;}
.x3_c00107{left:193.280000pt;}
.x8_c00107{left:202.240000pt;}
.x31_c00107{left:211.200000pt;}
.x20_c00107{left:229.120000pt;}
.x9_c00107{left:240.000000pt;}
.x32_c00107{left:248.960000pt;}
.x10_c00107{left:259.200000pt;}
.x2f_c00107{left:268.160000pt;}
.xa_c00107{left:269.440000pt;}
.x25_c00107{left:278.400000pt;}
.x4_c00107{left:288.640000pt;}
.x29_c00107{left:296.960000pt;}
.x11_c00107{left:307.200000pt;}
.x30_c00107{left:314.880000pt;}
.x1a_c00107{left:316.160000pt;}
.x18_c00107{left:326.400000pt;}
.x5_c00107{left:336.640000pt;}
.x21_c00107{left:345.600000pt;}
.x1b_c00107{left:355.200000pt;}
.x23_c00107{left:364.800000pt;}
.x26_c00107{left:374.400000pt;}
.x12_c00107{left:384.640000pt;}
.x22_c00107{left:393.600000pt;}
.x1e_c00107{left:403.200000pt;}
.x24_c00107{left:413.440000pt;}
.x19_c00107{left:423.680000pt;}
.x13_c00107{left:432.000000pt;}
.x1c_c00107{left:433.280000pt;}
.x2c_c00107{left:489.600000pt;}
.x14_c00107{left:491.520000pt;}
.x2d_c00107{left:538.240000pt;}
.x15_c00107{left:539.520000pt;}
.x2a_c00107{left:568.320000pt;}
.xc_c00107{left:569.600000pt;}
.x2b_c00107{left:597.760000pt;}
.xd_c00107{left:599.040000pt;}
.xb_c00107{left:610.560000pt;}
.x34_c00107{left:627.200000pt;}
.x16_c00107{left:636.160000pt;}
.xe_c00107{left:637.440000pt;}
.x33_c00107{left:655.360000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d12198471b5882abde3f61be.woff2')format("woff");}.ff1_c00108{font-family:ff1_c00108;line-height:1.109863;font-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_c00108{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.m3d_c00108{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m47_c00108{transform:matrix(0.240150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240150,0.000000,0.000000,0.250000,0,0);}
.m41_c00108{transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);}
.m36_c00108{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m40_c00108{transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);}
.m45_c00108{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);}
.m34_c00108{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);}
.m29_c00108{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);}
.m39_c00108{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);}
.m20_c00108{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m18_c00108{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m8_c00108{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m4_c00108{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m12_c00108{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00108{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m6_c00108{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m28_c00108{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m5_c00108{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m11_c00108{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m33_c00108{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m25_c00108{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m9_c00108{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2_c00108{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m37_c00108{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m14_c00108{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.md_c00108{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m24_c00108{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m38_c00108{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.ma_c00108{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m3_c00108{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1_c00108{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00108{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00108{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m35_c00108{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);}
.m1f_c00108{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m13_c00108{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m22_c00108{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);}
.m2c_c00108{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m0_c00108{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);}
.m44_c00108{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.mc_c00108{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m17_c00108{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.mb_c00108{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m19_c00108{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);}
.m2d_c00108{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m42_c00108{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);}
.m23_c00108{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);}
.m1e_c00108{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);}
.m48_c00108{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00108{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);}
.m46_c00108{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);}
.m31_c00108{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);}
.m10_c00108{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);}
.m49_c00108{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m16_c00108{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);}
.m21_c00108{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m27_c00108{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00108{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00108{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00108{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00108{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m32_c00108{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00108{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m43_c00108{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00108{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m30_c00108{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);}
.m1c_c00108{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00108{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00108{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.mf_c00108{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);}
.m4c_c00108{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.me_c00108{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m7_c00108{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00108{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.m15_c00108{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00108{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.v0_c00108{vertical-align:0.000000px;}
.v4_c00108{vertical-align:5.760000px;}
.v1_c00108{vertical-align:11.520000px;}
.v2_c00108{vertical-align:23.040000px;}
.v3_c00108{vertical-align:25.920000px;}
.ls0_c00108{letter-spacing:0.000000px;}
.sc__c00108{text-shadow:none;}
.sc0_c00108{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00108{-webkit-text-stroke:0px transparent;}
.sc0_c00108{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00108{word-spacing:0.000000px;}
.ws0_c00108{word-spacing:3.837360px;}
.ws3_c00108{word-spacing:14.240400px;}
.ws4_c00108{word-spacing:359.934000px;}
.ws1_c00108{word-spacing:700.448160px;}
.ws2_c00108{word-spacing:929.299200px;}
.fc0_c00108{color:transparent;}
.fs6_c00108{font-size:34.560000px;}
.fse_c00108{font-size:37.440000px;}
.fsc_c00108{font-size:40.320000px;}
.fsa_c00108{font-size:46.080000px;}
.fs8_c00108{font-size:48.960000px;}
.fs9_c00108{font-size:51.840000px;}
.fs4_c00108{font-size:54.720000px;}
.fsb_c00108{font-size:57.600000px;}
.fs3_c00108{font-size:60.480000px;}
.fs5_c00108{font-size:63.360000px;}
.fs1_c00108{font-size:66.240000px;}
.fs7_c00108{font-size:69.120000px;}
.fsd_c00108{font-size:72.000000px;}
.fs2_c00108{font-size:74.880000px;}
.fs0_c00108{font-size:77.760000px;}
.y0_c00108{bottom:0.000000px;}
.y75_c00108{bottom:74.880000px;}
.y74_c00108{bottom:75.600000px;}
.y77_c00108{bottom:76.320000px;}
.y76_c00108{bottom:77.760000px;}
.y73_c00108{bottom:79.920000px;}
.y72_c00108{bottom:122.400000px;}
.y71_c00108{bottom:123.840000px;}
.y6f_c00108{bottom:151.920000px;}
.y70_c00108{bottom:153.360000px;}
.y6e_c00108{bottom:154.080000px;}
.y6b_c00108{bottom:193.680000px;}
.y69_c00108{bottom:194.400000px;}
.y6d_c00108{bottom:195.120000px;}
.y6c_c00108{bottom:195.840000px;}
.y68_c00108{bottom:196.560000px;}
.y6a_c00108{bottom:197.280000px;}
.y64_c00108{bottom:236.880000px;}
.y66_c00108{bottom:238.320000px;}
.y65_c00108{bottom:239.040000px;}
.y67_c00108{bottom:240.480000px;}
.y63_c00108{bottom:241.200000px;}
.y60_c00108{bottom:280.080000px;}
.y5f_c00108{bottom:280.800000px;}
.y62_c00108{bottom:281.520000px;}
.y5e_c00108{bottom:282.240000px;}
.y61_c00108{bottom:282.960000px;}
.y5c_c00108{bottom:322.560000px;}
.y5d_c00108{bottom:324.000000px;}
.y5b_c00108{bottom:325.440000px;}
.y56_c00108{bottom:365.040000px;}
.y58_c00108{bottom:366.480000px;}
.y57_c00108{bottom:367.200000px;}
.y5a_c00108{bottom:367.920000px;}
.y59_c00108{bottom:368.640000px;}
.y55_c00108{bottom:370.080000px;}
.y50_c00108{bottom:408.240000px;}
.y51_c00108{bottom:408.960000px;}
.y52_c00108{bottom:411.120000px;}
.y4f_c00108{bottom:411.840000px;}
.y53_c00108{bottom:412.560000px;}
.y54_c00108{bottom:414.000000px;}
.y4b_c00108{bottom:451.440000px;}
.y4a_c00108{bottom:453.600000px;}
.y4c_c00108{bottom:454.320000px;}
.y4e_c00108{bottom:455.040000px;}
.y4d_c00108{bottom:455.760000px;}
.y46_c00108{bottom:493.920000px;}
.y47_c00108{bottom:495.360000px;}
.y45_c00108{bottom:496.080000px;}
.y48_c00108{bottom:497.520000px;}
.y49_c00108{bottom:498.240000px;}
.y40_c00108{bottom:537.120000px;}
.y42_c00108{bottom:537.840000px;}
.y3f_c00108{bottom:540.000000px;}
.y44_c00108{bottom:541.440000px;}
.y43_c00108{bottom:542.160000px;}
.y41_c00108{bottom:542.880000px;}
.y39_c00108{bottom:581.760000px;}
.y3d_c00108{bottom:583.200000px;}
.y3c_c00108{bottom:583.920000px;}
.y3a_c00108{bottom:584.640000px;}
.y3b_c00108{bottom:585.360000px;}
.y3e_c00108{bottom:586.800000px;}
.y35_c00108{bottom:623.520000px;}
.y34_c00108{bottom:624.960000px;}
.y37_c00108{bottom:627.120000px;}
.y36_c00108{bottom:627.840000px;}
.y38_c00108{bottom:630.000000px;}
.y2f_c00108{bottom:666.720000px;}
.y2e_c00108{bottom:668.880000px;}
.y31_c00108{bottom:669.600000px;}
.y30_c00108{bottom:671.040000px;}
.y32_c00108{bottom:673.200000px;}
.y33_c00108{bottom:673.920000px;}
.y2a_c00108{bottom:709.920000px;}
.y28_c00108{bottom:711.360000px;}
.y29_c00108{bottom:712.800000px;}
.y2b_c00108{bottom:713.520000px;}
.y2c_c00108{bottom:714.960000px;}
.y2d_c00108{bottom:715.680000px;}
.y23_c00108{bottom:753.120000px;}
.y22_c00108{bottom:753.840000px;}
.y27_c00108{bottom:756.720000px;}
.y25_c00108{bottom:757.440000px;}
.y24_c00108{bottom:758.880000px;}
.y26_c00108{bottom:759.600000px;}
.y1d_c00108{bottom:795.600000px;}
.y1b_c00108{bottom:796.320000px;}
.y1c_c00108{bottom:798.480000px;}
.y1f_c00108{bottom:799.920000px;}
.y1e_c00108{bottom:800.640000px;}
.y21_c00108{bottom:802.080000px;}
.y20_c00108{bottom:802.800000px;}
.y17_c00108{bottom:838.800000px;}
.y16_c00108{bottom:840.960000px;}
.y18_c00108{bottom:843.120000px;}
.y19_c00108{bottom:843.840000px;}
.y1a_c00108{bottom:846.720000px;}
.y12_c00108{bottom:881.280000px;}
.y11_c00108{bottom:883.440000px;}
.y13_c00108{bottom:886.320000px;}
.y15_c00108{bottom:887.760000px;}
.y14_c00108{bottom:889.200000px;}
.yc_c00108{bottom:924.480000px;}
.yd_c00108{bottom:927.360000px;}
.yf_c00108{bottom:930.240000px;}
.ye_c00108{bottom:931.680000px;}
.y10_c00108{bottom:933.120000px;}
.y7_c00108{bottom:966.240000px;}
.y9_c00108{bottom:967.680000px;}
.y8_c00108{bottom:969.120000px;}
.yb_c00108{bottom:972.720000px;}
.ya_c00108{bottom:973.440000px;}
.y2_c00108{bottom:1010.160000px;}
.y3_c00108{bottom:1010.880000px;}
.y5_c00108{bottom:1015.200000px;}
.y4_c00108{bottom:1016.640000px;}
.y6_c00108{bottom:1017.360000px;}
.y1_c00108{bottom:1095.120000px;}
.h8_c00108{height:31.100625px;}
.h13_c00108{height:33.692344px;}
.hf_c00108{height:36.284062px;}
.hc_c00108{height:41.467500px;}
.h11_c00108{height:44.059219px;}
.ha_c00108{height:46.650937px;}
.h6_c00108{height:49.242656px;}
.he_c00108{height:51.834375px;}
.h5_c00108{height:54.426094px;}
.h7_c00108{height:57.017812px;}
.h3_c00108{height:59.609531px;}
.h12_c00108{height:60.186094px;}
.h9_c00108{height:62.201250px;}
.h10_c00108{height:64.792969px;}
.h4_c00108{height:67.384687px;}
.h2_c00108{height:69.976406px;}
.hb_c00108{height:77.466094px;}
.hd_c00108{height:77.754375px;}
.h0_c00108{height:1152.720000px;}
.h1_c00108{height:1152.750000px;}
.w0_c00108{width:797.040000px;}
.w1_c00108{width:797.250000px;}
.x0_c00108{left:0.000000px;}
.x2_c00108{left:70.560000px;}
.x26_c00108{left:72.000000px;}
.x2e_c00108{left:73.440000px;}
.x36_c00108{left:74.880000px;}
.x8_c00108{left:113.760000px;}
.xc_c00108{left:133.920000px;}
.x1c_c00108{left:135.360000px;}
.x34_c00108{left:136.800000px;}
.x3_c00108{left:142.560000px;}
.x11_c00108{left:144.000000px;}
.x22_c00108{left:145.440000px;}
.x27_c00108{left:146.880000px;}
.x9_c00108{left:156.240000px;}
.x35_c00108{left:190.080000px;}
.x23_c00108{left:200.880000px;}
.xd_c00108{left:208.800000px;}
.x13_c00108{left:219.600000px;}
.x30_c00108{left:221.760000px;}
.x28_c00108{left:232.560000px;}
.x1d_c00108{left:241.920000px;}
.x1a_c00108{left:274.320000px;}
.x2a_c00108{left:275.760000px;}
.x1e_c00108{left:285.120000px;}
.x31_c00108{left:286.560000px;}
.x1b_c00108{left:316.800000px;}
.x32_c00108{left:340.560000px;}
.x29_c00108{left:361.440000px;}
.x14_c00108{left:370.800000px;}
.x2b_c00108{left:394.560000px;}
.x37_c00108{left:416.880000px;}
.x15_c00108{left:425.520000px;}
.x33_c00108{left:470.160000px;}
.x38_c00108{left:514.800000px;}
.x4_c00108{left:553.680000px;}
.xa_c00108{left:555.840000px;}
.x1f_c00108{left:557.280000px;}
.x39_c00108{left:558.720000px;}
.x24_c00108{left:568.080000px;}
.x25_c00108{left:590.400000px;}
.xb_c00108{left:609.840000px;}
.x20_c00108{left:611.280000px;}
.x2f_c00108{left:612.720000px;}
.xe_c00108{left:621.360000px;}
.xf_c00108{left:641.520000px;}
.x5_c00108{left:642.960000px;}
.x17_c00108{left:644.400000px;}
.x2c_c00108{left:645.840000px;}
.x6_c00108{left:674.640000px;}
.x12_c00108{left:676.080000px;}
.x21_c00108{left:677.520000px;}
.x1_c00108{left:688.320000px;}
.x16_c00108{left:706.320000px;}
.x7_c00108{left:718.560000px;}
.x18_c00108{left:720.720000px;}
.x2d_c00108{left:722.880000px;}
.x10_c00108{left:739.440000px;}
.x19_c00108{left:740.880000px;}
@media print{
.v0_c00108{vertical-align:0.000000pt;}
.v4_c00108{vertical-align:5.120000pt;}
.v1_c00108{vertical-align:10.240000pt;}
.v2_c00108{vertical-align:20.480000pt;}
.v3_c00108{vertical-align:23.040000pt;}
.ls0_c00108{letter-spacing:0.000000pt;}
.ws5_c00108{word-spacing:0.000000pt;}
.ws0_c00108{word-spacing:3.410987pt;}
.ws3_c00108{word-spacing:12.658133pt;}
.ws4_c00108{word-spacing:319.941333pt;}
.ws1_c00108{word-spacing:622.620587pt;}
.ws2_c00108{word-spacing:826.043733pt;}
.fs6_c00108{font-size:30.720000pt;}
.fse_c00108{font-size:33.280000pt;}
.fsc_c00108{font-size:35.840000pt;}
.fsa_c00108{font-size:40.960000pt;}
.fs8_c00108{font-size:43.520000pt;}
.fs9_c00108{font-size:46.080000pt;}
.fs4_c00108{font-size:48.640000pt;}
.fsb_c00108{font-size:51.200000pt;}
.fs3_c00108{font-size:53.760000pt;}
.fs5_c00108{font-size:56.320000pt;}
.fs1_c00108{font-size:58.880000pt;}
.fs7_c00108{font-size:61.440000pt;}
.fsd_c00108{font-size:64.000000pt;}
.fs2_c00108{font-size:66.560000pt;}
.fs0_c00108{font-size:69.120000pt;}
.y0_c00108{bottom:0.000000pt;}
.y75_c00108{bottom:66.560000pt;}
.y74_c00108{bottom:67.200000pt;}
.y77_c00108{bottom:67.840000pt;}
.y76_c00108{bottom:69.120000pt;}
.y73_c00108{bottom:71.040000pt;}
.y72_c00108{bottom:108.800000pt;}
.y71_c00108{bottom:110.080000pt;}
.y6f_c00108{bottom:135.040000pt;}
.y70_c00108{bottom:136.320000pt;}
.y6e_c00108{bottom:136.960000pt;}
.y6b_c00108{bottom:172.160000pt;}
.y69_c00108{bottom:172.800000pt;}
.y6d_c00108{bottom:173.440000pt;}
.y6c_c00108{bottom:174.080000pt;}
.y68_c00108{bottom:174.720000pt;}
.y6a_c00108{bottom:175.360000pt;}
.y64_c00108{bottom:210.560000pt;}
.y66_c00108{bottom:211.840000pt;}
.y65_c00108{bottom:212.480000pt;}
.y67_c00108{bottom:213.760000pt;}
.y63_c00108{bottom:214.400000pt;}
.y60_c00108{bottom:248.960000pt;}
.y5f_c00108{bottom:249.600000pt;}
.y62_c00108{bottom:250.240000pt;}
.y5e_c00108{bottom:250.880000pt;}
.y61_c00108{bottom:251.520000pt;}
.y5c_c00108{bottom:286.720000pt;}
.y5d_c00108{bottom:288.000000pt;}
.y5b_c00108{bottom:289.280000pt;}
.y56_c00108{bottom:324.480000pt;}
.y58_c00108{bottom:325.760000pt;}
.y57_c00108{bottom:326.400000pt;}
.y5a_c00108{bottom:327.040000pt;}
.y59_c00108{bottom:327.680000pt;}
.y55_c00108{bottom:328.960000pt;}
.y50_c00108{bottom:362.880000pt;}
.y51_c00108{bottom:363.520000pt;}
.y52_c00108{bottom:365.440000pt;}
.y4f_c00108{bottom:366.080000pt;}
.y53_c00108{bottom:366.720000pt;}
.y54_c00108{bottom:368.000000pt;}
.y4b_c00108{bottom:401.280000pt;}
.y4a_c00108{bottom:403.200000pt;}
.y4c_c00108{bottom:403.840000pt;}
.y4e_c00108{bottom:404.480000pt;}
.y4d_c00108{bottom:405.120000pt;}
.y46_c00108{bottom:439.040000pt;}
.y47_c00108{bottom:440.320000pt;}
.y45_c00108{bottom:440.960000pt;}
.y48_c00108{bottom:442.240000pt;}
.y49_c00108{bottom:442.880000pt;}
.y40_c00108{bottom:477.440000pt;}
.y42_c00108{bottom:478.080000pt;}
.y3f_c00108{bottom:480.000000pt;}
.y44_c00108{bottom:481.280000pt;}
.y43_c00108{bottom:481.920000pt;}
.y41_c00108{bottom:482.560000pt;}
.y39_c00108{bottom:517.120000pt;}
.y3d_c00108{bottom:518.400000pt;}
.y3c_c00108{bottom:519.040000pt;}
.y3a_c00108{bottom:519.680000pt;}
.y3b_c00108{bottom:520.320000pt;}
.y3e_c00108{bottom:521.600000pt;}
.y35_c00108{bottom:554.240000pt;}
.y34_c00108{bottom:555.520000pt;}
.y37_c00108{bottom:557.440000pt;}
.y36_c00108{bottom:558.080000pt;}
.y38_c00108{bottom:560.000000pt;}
.y2f_c00108{bottom:592.640000pt;}
.y2e_c00108{bottom:594.560000pt;}
.y31_c00108{bottom:595.200000pt;}
.y30_c00108{bottom:596.480000pt;}
.y32_c00108{bottom:598.400000pt;}
.y33_c00108{bottom:599.040000pt;}
.y2a_c00108{bottom:631.040000pt;}
.y28_c00108{bottom:632.320000pt;}
.y29_c00108{bottom:633.600000pt;}
.y2b_c00108{bottom:634.240000pt;}
.y2c_c00108{bottom:635.520000pt;}
.y2d_c00108{bottom:636.160000pt;}
.y23_c00108{bottom:669.440000pt;}
.y22_c00108{bottom:670.080000pt;}
.y27_c00108{bottom:672.640000pt;}
.y25_c00108{bottom:673.280000pt;}
.y24_c00108{bottom:674.560000pt;}
.y26_c00108{bottom:675.200000pt;}
.y1d_c00108{bottom:707.200000pt;}
.y1b_c00108{bottom:707.840000pt;}
.y1c_c00108{bottom:709.760000pt;}
.y1f_c00108{bottom:711.040000pt;}
.y1e_c00108{bottom:711.680000pt;}
.y21_c00108{bottom:712.960000pt;}
.y20_c00108{bottom:713.600000pt;}
.y17_c00108{bottom:745.600000pt;}
.y16_c00108{bottom:747.520000pt;}
.y18_c00108{bottom:749.440000pt;}
.y19_c00108{bottom:750.080000pt;}
.y1a_c00108{bottom:752.640000pt;}
.y12_c00108{bottom:783.360000pt;}
.y11_c00108{bottom:785.280000pt;}
.y13_c00108{bottom:787.840000pt;}
.y15_c00108{bottom:789.120000pt;}
.y14_c00108{bottom:790.400000pt;}
.yc_c00108{bottom:821.760000pt;}
.yd_c00108{bottom:824.320000pt;}
.yf_c00108{bottom:826.880000pt;}
.ye_c00108{bottom:828.160000pt;}
.y10_c00108{bottom:829.440000pt;}
.y7_c00108{bottom:858.880000pt;}
.y9_c00108{bottom:860.160000pt;}
.y8_c00108{bottom:861.440000pt;}
.yb_c00108{bottom:864.640000pt;}
.ya_c00108{bottom:865.280000pt;}
.y2_c00108{bottom:897.920000pt;}
.y3_c00108{bottom:898.560000pt;}
.y5_c00108{bottom:902.400000pt;}
.y4_c00108{bottom:903.680000pt;}
.y6_c00108{bottom:904.320000pt;}
.y1_c00108{bottom:973.440000pt;}
.h8_c00108{height:27.645000pt;}
.h13_c00108{height:29.948750pt;}
.hf_c00108{height:32.252500pt;}
.hc_c00108{height:36.860000pt;}
.h11_c00108{height:39.163750pt;}
.ha_c00108{height:41.467500pt;}
.h6_c00108{height:43.771250pt;}
.he_c00108{height:46.075000pt;}
.h5_c00108{height:48.378750pt;}
.h7_c00108{height:50.682500pt;}
.h3_c00108{height:52.986250pt;}
.h12_c00108{height:53.498750pt;}
.h9_c00108{height:55.290000pt;}
.h10_c00108{height:57.593750pt;}
.h4_c00108{height:59.897500pt;}
.h2_c00108{height:62.201250pt;}
.hb_c00108{height:68.858750pt;}
.hd_c00108{height:69.115000pt;}
.h0_c00108{height:1024.640000pt;}
.h1_c00108{height:1024.666667pt;}
.w0_c00108{width:708.480000pt;}
.w1_c00108{width:708.666667pt;}
.x0_c00108{left:0.000000pt;}
.x2_c00108{left:62.720000pt;}
.x26_c00108{left:64.000000pt;}
.x2e_c00108{left:65.280000pt;}
.x36_c00108{left:66.560000pt;}
.x8_c00108{left:101.120000pt;}
.xc_c00108{left:119.040000pt;}
.x1c_c00108{left:120.320000pt;}
.x34_c00108{left:121.600000pt;}
.x3_c00108{left:126.720000pt;}
.x11_c00108{left:128.000000pt;}
.x22_c00108{left:129.280000pt;}
.x27_c00108{left:130.560000pt;}
.x9_c00108{left:138.880000pt;}
.x35_c00108{left:168.960000pt;}
.x23_c00108{left:178.560000pt;}
.xd_c00108{left:185.600000pt;}
.x13_c00108{left:195.200000pt;}
.x30_c00108{left:197.120000pt;}
.x28_c00108{left:206.720000pt;}
.x1d_c00108{left:215.040000pt;}
.x1a_c00108{left:243.840000pt;}
.x2a_c00108{left:245.120000pt;}
.x1e_c00108{left:253.440000pt;}
.x31_c00108{left:254.720000pt;}
.x1b_c00108{left:281.600000pt;}
.x32_c00108{left:302.720000pt;}
.x29_c00108{left:321.280000pt;}
.x14_c00108{left:329.600000pt;}
.x2b_c00108{left:350.720000pt;}
.x37_c00108{left:370.560000pt;}
.x15_c00108{left:378.240000pt;}
.x33_c00108{left:417.920000pt;}
.x38_c00108{left:457.600000pt;}
.x4_c00108{left:492.160000pt;}
.xa_c00108{left:494.080000pt;}
.x1f_c00108{left:495.360000pt;}
.x39_c00108{left:496.640000pt;}
.x24_c00108{left:504.960000pt;}
.x25_c00108{left:524.800000pt;}
.xb_c00108{left:542.080000pt;}
.x20_c00108{left:543.360000pt;}
.x2f_c00108{left:544.640000pt;}
.xe_c00108{left:552.320000pt;}
.xf_c00108{left:570.240000pt;}
.x5_c00108{left:571.520000pt;}
.x17_c00108{left:572.800000pt;}
.x2c_c00108{left:574.080000pt;}
.x6_c00108{left:599.680000pt;}
.x12_c00108{left:600.960000pt;}
.x21_c00108{left:602.240000pt;}
.x1_c00108{left:611.840000pt;}
.x16_c00108{left:627.840000pt;}
.x7_c00108{left:638.720000pt;}
.x18_c00108{left:640.640000pt;}
.x2d_c00108{left:642.560000pt;}
.x10_c00108{left:657.280000pt;}
.x19_c00108{left:658.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_bad7458ba1d41ce86b4c4e7c.woff2')format("woff");}.ff1_c00109{font-family:ff1_c00109;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3e_c00109{transform:matrix(0.123075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123075,0.000000,0.000000,0.250000,0,0);}
.m31_c00109{transform:matrix(0.179750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179750,0.000000,0.000000,0.250000,0,0);}
.m30_c00109{transform:matrix(0.186650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186650,0.000000,0.000000,0.250000,0,0);}
.m19_c00109{transform:matrix(0.202325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202325,0.000000,0.000000,0.250000,0,0);}
.m37_c00109{transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);}
.m35_c00109{transform:matrix(0.207200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207200,0.000000,0.000000,0.250000,0,0);}
.m1f_c00109{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m38_c00109{transform:matrix(0.240800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240800,0.000000,0.000000,0.250000,0,0);}
.m28_c00109{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m15_c00109{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);}
.m3d_c00109{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m2_c00109{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);}
.m2c_c00109{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_c00109{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.ma_c00109{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.me_c00109{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);}
.m39_c00109{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.md_c00109{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m24_c00109{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m13_c00109{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00109{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);}
.m26_c00109{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m18_c00109{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m6_c00109{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00109{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mf_c00109{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m23_c00109{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m10_c00109{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m17_c00109{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m4_c00109{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m11_c00109{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m32_c00109{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00109{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m42_c00109{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m7_c00109{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m0_c00109{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00109{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00109{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m21_c00109{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);}
.m33_c00109{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);}
.m34_c00109{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);}
.m41_c00109{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m36_c00109{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);}
.m20_c00109{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00109{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);}
.m1a_c00109{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m16_c00109{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);}
.mc_c00109{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m9_c00109{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m45_c00109{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);}
.m40_c00109{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);}
.m14_c00109{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m1_c00109{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m43_c00109{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);}
.m3f_c00109{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);}
.m3b_c00109{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m5_c00109{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00109{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);}
.m22_c00109{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00109{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m25_c00109{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m44_c00109{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00109{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);}
.m1b_c00109{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m3_c00109{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.mb_c00109{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);}
.m12_c00109{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00109{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m29_c00109{transform:matrix(0.932500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.932500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.932500,0.000000,0.000000,0.250000,0,0);}
.m27_c00109{transform:matrix(1.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.137500,0.000000,0.000000,0.250000,0,0);}
.m46_c00109{transform:matrix(1.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.590000,0.000000,0.000000,0.250000,0,0);}
.v1_c00109{vertical-align:-2.880000px;}
.v0_c00109{vertical-align:0.000000px;}
.ls0_c00109{letter-spacing:0.000000px;}
.sc__c00109{text-shadow:none;}
.sc0_c00109{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00109{-webkit-text-stroke:0px transparent;}
.sc0_c00109{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00109{word-spacing:0.000000px;}
.ws1_c00109{word-spacing:2.058000px;}
.ws0_c00109{word-spacing:70.740000px;}
.fc0_c00109{color:transparent;}
.fs12_c00109{font-size:17.280000px;}
.fs10_c00109{font-size:25.920000px;}
.fs11_c00109{font-size:31.680000px;}
.fs13_c00109{font-size:34.560000px;}
.fs9_c00109{font-size:37.440000px;}
.fs3_c00109{font-size:40.320000px;}
.fsf_c00109{font-size:43.200000px;}
.fse_c00109{font-size:48.960000px;}
.fs5_c00109{font-size:51.840000px;}
.fsc_c00109{font-size:54.720000px;}
.fs7_c00109{font-size:57.600000px;}
.fs1_c00109{font-size:60.480000px;}
.fsb_c00109{font-size:63.360000px;}
.fs4_c00109{font-size:66.240000px;}
.fs8_c00109{font-size:69.120000px;}
.fs6_c00109{font-size:72.000000px;}
.fsa_c00109{font-size:74.880000px;}
.fs2_c00109{font-size:77.760000px;}
.fs0_c00109{font-size:80.640000px;}
.fsd_c00109{font-size:83.520000px;}
.y0_c00109{bottom:0.000000px;}
.y66_c00109{bottom:78.480000px;}
.y65_c00109{bottom:79.920000px;}
.y64_c00109{bottom:82.800000px;}
.y63_c00109{bottom:87.840000px;}
.y62_c00109{bottom:122.400000px;}
.y61_c00109{bottom:123.840000px;}
.y60_c00109{bottom:125.280000px;}
.y5f_c00109{bottom:130.320000px;}
.y5e_c00109{bottom:165.600000px;}
.y5d_c00109{bottom:166.320000px;}
.y5c_c00109{bottom:168.480000px;}
.y5b_c00109{bottom:173.520000px;}
.y58_c00109{bottom:208.800000px;}
.y5a_c00109{bottom:209.520000px;}
.y57_c00109{bottom:210.240000px;}
.y56_c00109{bottom:210.960000px;}
.y55_c00109{bottom:215.280000px;}
.y59_c00109{bottom:218.160000px;}
.y54_c00109{bottom:252.720000px;}
.y53_c00109{bottom:254.160000px;}
.y52_c00109{bottom:258.480000px;}
.y51_c00109{bottom:295.920000px;}
.y4f_c00109{bottom:296.640000px;}
.y50_c00109{bottom:297.360000px;}
.y4d_c00109{bottom:298.080000px;}
.y4c_c00109{bottom:301.680000px;}
.y4e_c00109{bottom:303.120000px;}
.y4b_c00109{bottom:338.400000px;}
.y4a_c00109{bottom:339.120000px;}
.y49_c00109{bottom:339.840000px;}
.y47_c00109{bottom:340.560000px;}
.y48_c00109{bottom:341.280000px;}
.y46_c00109{bottom:344.160000px;}
.y45_c00109{bottom:382.320000px;}
.y43_c00109{bottom:383.040000px;}
.y44_c00109{bottom:383.760000px;}
.y42_c00109{bottom:384.480000px;}
.y41_c00109{bottom:387.360000px;}
.y40_c00109{bottom:424.800000px;}
.y3f_c00109{bottom:426.240000px;}
.y3e_c00109{bottom:430.560000px;}
.y3d_c00109{bottom:468.720000px;}
.y3c_c00109{bottom:469.440000px;}
.y3b_c00109{bottom:472.320000px;}
.y3a_c00109{bottom:511.920000px;}
.y39_c00109{bottom:512.640000px;}
.y38_c00109{bottom:515.520000px;}
.y36_c00109{bottom:555.120000px;}
.y37_c00109{bottom:555.840000px;}
.y35_c00109{bottom:558.000000px;}
.y32_c00109{bottom:598.320000px;}
.y34_c00109{bottom:599.040000px;}
.y33_c00109{bottom:599.760000px;}
.y31_c00109{bottom:601.920000px;}
.y2e_c00109{bottom:641.520000px;}
.y2f_c00109{bottom:642.240000px;}
.y30_c00109{bottom:643.680000px;}
.y2c_c00109{bottom:644.400000px;}
.y2b_c00109{bottom:645.120000px;}
.y2d_c00109{bottom:645.840000px;}
.y29_c00109{bottom:684.720000px;}
.y27_c00109{bottom:686.160000px;}
.y2a_c00109{bottom:687.600000px;}
.y28_c00109{bottom:689.040000px;}
.y25_c00109{bottom:726.480000px;}
.y24_c00109{bottom:727.920000px;}
.y26_c00109{bottom:728.640000px;}
.y23_c00109{bottom:730.080000px;}
.y21_c00109{bottom:771.120000px;}
.y22_c00109{bottom:771.840000px;}
.y1f_c00109{bottom:773.280000px;}
.y20_c00109{bottom:774.720000px;}
.y1b_c00109{bottom:802.080000px;}
.y1e_c00109{bottom:803.520000px;}
.y1d_c00109{bottom:804.240000px;}
.y1a_c00109{bottom:804.960000px;}
.y1c_c00109{bottom:807.120000px;}
.y16_c00109{bottom:845.280000px;}
.y18_c00109{bottom:846.000000px;}
.y17_c00109{bottom:846.720000px;}
.y19_c00109{bottom:847.440000px;}
.y15_c00109{bottom:848.160000px;}
.y12_c00109{bottom:887.040000px;}
.y13_c00109{bottom:890.640000px;}
.y11_c00109{bottom:891.360000px;}
.y14_c00109{bottom:892.080000px;}
.y10_c00109{bottom:932.400000px;}
.ye_c00109{bottom:935.280000px;}
.yf_c00109{bottom:936.720000px;}
.y9_c00109{bottom:963.360000px;}
.y8_c00109{bottom:965.520000px;}
.yc_c00109{bottom:966.240000px;}
.yd_c00109{bottom:966.960000px;}
.ya_c00109{bottom:968.400000px;}
.yb_c00109{bottom:969.120000px;}
.y3_c00109{bottom:1006.560000px;}
.y2_c00109{bottom:1008.000000px;}
.y6_c00109{bottom:1008.720000px;}
.y5_c00109{bottom:1009.440000px;}
.y7_c00109{bottom:1010.160000px;}
.y4_c00109{bottom:1011.600000px;}
.y1_c00109{bottom:1080.000000px;}
.h15_c00109{height:15.550313px;}
.h13_c00109{height:23.325469px;}
.h14_c00109{height:28.508906px;}
.h16_c00109{height:31.100625px;}
.hb_c00109{height:33.692344px;}
.h5_c00109{height:36.284062px;}
.h12_c00109{height:38.875781px;}
.h10_c00109{height:44.059219px;}
.h7_c00109{height:46.650937px;}
.he_c00109{height:49.242656px;}
.ha_c00109{height:51.834375px;}
.h3_c00109{height:54.426094px;}
.hd_c00109{height:57.017812px;}
.h9_c00109{height:59.321250px;}
.h6_c00109{height:59.609531px;}
.h11_c00109{height:62.201250px;}
.h8_c00109{height:64.792969px;}
.hc_c00109{height:67.384687px;}
.h4_c00109{height:69.976406px;}
.h2_c00109{height:72.568125px;}
.hf_c00109{height:75.159844px;}
.h1_c00109{height:1151.250000px;}
.h0_c00109{height:1151.280000px;}
.w0_c00109{width:796.320000px;}
.w1_c00109{width:796.500000px;}
.x0_c00109{left:0.000000px;}
.x25_c00109{left:66.240000px;}
.x13_c00109{left:67.680000px;}
.x2_c00109{left:69.120000px;}
.x21_c00109{left:78.480000px;}
.x1e_c00109{left:100.080000px;}
.x28_c00109{left:119.520000px;}
.x12_c00109{left:122.400000px;}
.x2b_c00109{left:130.320000px;}
.x1c_c00109{left:131.760000px;}
.x3_c00109{left:133.200000px;}
.x15_c00109{left:142.560000px;}
.x1f_c00109{left:153.360000px;}
.x10_c00109{left:174.960000px;}
.x22_c00109{left:184.320000px;}
.x2d_c00109{left:193.680000px;}
.x2e_c00109{left:203.040000px;}
.x29_c00109{left:216.000000px;}
.x11_c00109{left:218.160000px;}
.x1a_c00109{left:226.800000px;}
.x1d_c00109{left:228.240000px;}
.x2f_c00109{left:247.680000px;}
.x1b_c00109{left:270.720000px;}
.xa_c00109{left:282.960000px;}
.x4_c00109{left:293.760000px;}
.x2a_c00109{left:301.680000px;}
.xb_c00109{left:325.440000px;}
.x5_c00109{left:336.240000px;}
.xc_c00109{left:369.360000px;}
.x16_c00109{left:390.240000px;}
.x17_c00109{left:422.640000px;}
.x6_c00109{left:434.880000px;}
.x7_c00109{left:478.080000px;}
.x27_c00109{left:551.520000px;}
.x18_c00109{left:552.960000px;}
.x8_c00109{left:554.400000px;}
.x14_c00109{left:587.520000px;}
.x30_c00109{left:604.800000px;}
.x26_c00109{left:606.240000px;}
.x19_c00109{left:607.680000px;}
.x23_c00109{left:617.760000px;}
.xd_c00109{left:640.800000px;}
.x2c_c00109{left:663.120000px;}
.x32_c00109{left:671.760000px;}
.xe_c00109{left:674.640000px;}
.x1_c00109{left:686.160000px;}
.x20_c00109{left:696.240000px;}
.x31_c00109{left:714.240000px;}
.x24_c00109{left:715.680000px;}
.xf_c00109{left:717.120000px;}
.x9_c00109{left:718.560000px;}
@media print{
.v1_c00109{vertical-align:-2.560000pt;}
.v0_c00109{vertical-align:0.000000pt;}
.ls0_c00109{letter-spacing:0.000000pt;}
.ws2_c00109{word-spacing:0.000000pt;}
.ws1_c00109{word-spacing:1.829333pt;}
.ws0_c00109{word-spacing:62.880000pt;}
.fs12_c00109{font-size:15.360000pt;}
.fs10_c00109{font-size:23.040000pt;}
.fs11_c00109{font-size:28.160000pt;}
.fs13_c00109{font-size:30.720000pt;}
.fs9_c00109{font-size:33.280000pt;}
.fs3_c00109{font-size:35.840000pt;}
.fsf_c00109{font-size:38.400000pt;}
.fse_c00109{font-size:43.520000pt;}
.fs5_c00109{font-size:46.080000pt;}
.fsc_c00109{font-size:48.640000pt;}
.fs7_c00109{font-size:51.200000pt;}
.fs1_c00109{font-size:53.760000pt;}
.fsb_c00109{font-size:56.320000pt;}
.fs4_c00109{font-size:58.880000pt;}
.fs8_c00109{font-size:61.440000pt;}
.fs6_c00109{font-size:64.000000pt;}
.fsa_c00109{font-size:66.560000pt;}
.fs2_c00109{font-size:69.120000pt;}
.fs0_c00109{font-size:71.680000pt;}
.fsd_c00109{font-size:74.240000pt;}
.y0_c00109{bottom:0.000000pt;}
.y66_c00109{bottom:69.760000pt;}
.y65_c00109{bottom:71.040000pt;}
.y64_c00109{bottom:73.600000pt;}
.y63_c00109{bottom:78.080000pt;}
.y62_c00109{bottom:108.800000pt;}
.y61_c00109{bottom:110.080000pt;}
.y60_c00109{bottom:111.360000pt;}
.y5f_c00109{bottom:115.840000pt;}
.y5e_c00109{bottom:147.200000pt;}
.y5d_c00109{bottom:147.840000pt;}
.y5c_c00109{bottom:149.760000pt;}
.y5b_c00109{bottom:154.240000pt;}
.y58_c00109{bottom:185.600000pt;}
.y5a_c00109{bottom:186.240000pt;}
.y57_c00109{bottom:186.880000pt;}
.y56_c00109{bottom:187.520000pt;}
.y55_c00109{bottom:191.360000pt;}
.y59_c00109{bottom:193.920000pt;}
.y54_c00109{bottom:224.640000pt;}
.y53_c00109{bottom:225.920000pt;}
.y52_c00109{bottom:229.760000pt;}
.y51_c00109{bottom:263.040000pt;}
.y4f_c00109{bottom:263.680000pt;}
.y50_c00109{bottom:264.320000pt;}
.y4d_c00109{bottom:264.960000pt;}
.y4c_c00109{bottom:268.160000pt;}
.y4e_c00109{bottom:269.440000pt;}
.y4b_c00109{bottom:300.800000pt;}
.y4a_c00109{bottom:301.440000pt;}
.y49_c00109{bottom:302.080000pt;}
.y47_c00109{bottom:302.720000pt;}
.y48_c00109{bottom:303.360000pt;}
.y46_c00109{bottom:305.920000pt;}
.y45_c00109{bottom:339.840000pt;}
.y43_c00109{bottom:340.480000pt;}
.y44_c00109{bottom:341.120000pt;}
.y42_c00109{bottom:341.760000pt;}
.y41_c00109{bottom:344.320000pt;}
.y40_c00109{bottom:377.600000pt;}
.y3f_c00109{bottom:378.880000pt;}
.y3e_c00109{bottom:382.720000pt;}
.y3d_c00109{bottom:416.640000pt;}
.y3c_c00109{bottom:417.280000pt;}
.y3b_c00109{bottom:419.840000pt;}
.y3a_c00109{bottom:455.040000pt;}
.y39_c00109{bottom:455.680000pt;}
.y38_c00109{bottom:458.240000pt;}
.y36_c00109{bottom:493.440000pt;}
.y37_c00109{bottom:494.080000pt;}
.y35_c00109{bottom:496.000000pt;}
.y32_c00109{bottom:531.840000pt;}
.y34_c00109{bottom:532.480000pt;}
.y33_c00109{bottom:533.120000pt;}
.y31_c00109{bottom:535.040000pt;}
.y2e_c00109{bottom:570.240000pt;}
.y2f_c00109{bottom:570.880000pt;}
.y30_c00109{bottom:572.160000pt;}
.y2c_c00109{bottom:572.800000pt;}
.y2b_c00109{bottom:573.440000pt;}
.y2d_c00109{bottom:574.080000pt;}
.y29_c00109{bottom:608.640000pt;}
.y27_c00109{bottom:609.920000pt;}
.y2a_c00109{bottom:611.200000pt;}
.y28_c00109{bottom:612.480000pt;}
.y25_c00109{bottom:645.760000pt;}
.y24_c00109{bottom:647.040000pt;}
.y26_c00109{bottom:647.680000pt;}
.y23_c00109{bottom:648.960000pt;}
.y21_c00109{bottom:685.440000pt;}
.y22_c00109{bottom:686.080000pt;}
.y1f_c00109{bottom:687.360000pt;}
.y20_c00109{bottom:688.640000pt;}
.y1b_c00109{bottom:712.960000pt;}
.y1e_c00109{bottom:714.240000pt;}
.y1d_c00109{bottom:714.880000pt;}
.y1a_c00109{bottom:715.520000pt;}
.y1c_c00109{bottom:717.440000pt;}
.y16_c00109{bottom:751.360000pt;}
.y18_c00109{bottom:752.000000pt;}
.y17_c00109{bottom:752.640000pt;}
.y19_c00109{bottom:753.280000pt;}
.y15_c00109{bottom:753.920000pt;}
.y12_c00109{bottom:788.480000pt;}
.y13_c00109{bottom:791.680000pt;}
.y11_c00109{bottom:792.320000pt;}
.y14_c00109{bottom:792.960000pt;}
.y10_c00109{bottom:828.800000pt;}
.ye_c00109{bottom:831.360000pt;}
.yf_c00109{bottom:832.640000pt;}
.y9_c00109{bottom:856.320000pt;}
.y8_c00109{bottom:858.240000pt;}
.yc_c00109{bottom:858.880000pt;}
.yd_c00109{bottom:859.520000pt;}
.ya_c00109{bottom:860.800000pt;}
.yb_c00109{bottom:861.440000pt;}
.y3_c00109{bottom:894.720000pt;}
.y2_c00109{bottom:896.000000pt;}
.y6_c00109{bottom:896.640000pt;}
.y5_c00109{bottom:897.280000pt;}
.y7_c00109{bottom:897.920000pt;}
.y4_c00109{bottom:899.200000pt;}
.y1_c00109{bottom:960.000000pt;}
.h15_c00109{height:13.822500pt;}
.h13_c00109{height:20.733750pt;}
.h14_c00109{height:25.341250pt;}
.h16_c00109{height:27.645000pt;}
.hb_c00109{height:29.948750pt;}
.h5_c00109{height:32.252500pt;}
.h12_c00109{height:34.556250pt;}
.h10_c00109{height:39.163750pt;}
.h7_c00109{height:41.467500pt;}
.he_c00109{height:43.771250pt;}
.ha_c00109{height:46.075000pt;}
.h3_c00109{height:48.378750pt;}
.hd_c00109{height:50.682500pt;}
.h9_c00109{height:52.730000pt;}
.h6_c00109{height:52.986250pt;}
.h11_c00109{height:55.290000pt;}
.h8_c00109{height:57.593750pt;}
.hc_c00109{height:59.897500pt;}
.h4_c00109{height:62.201250pt;}
.h2_c00109{height:64.505000pt;}
.hf_c00109{height:66.808750pt;}
.h1_c00109{height:1023.333333pt;}
.h0_c00109{height:1023.360000pt;}
.w0_c00109{width:707.840000pt;}
.w1_c00109{width:708.000000pt;}
.x0_c00109{left:0.000000pt;}
.x25_c00109{left:58.880000pt;}
.x13_c00109{left:60.160000pt;}
.x2_c00109{left:61.440000pt;}
.x21_c00109{left:69.760000pt;}
.x1e_c00109{left:88.960000pt;}
.x28_c00109{left:106.240000pt;}
.x12_c00109{left:108.800000pt;}
.x2b_c00109{left:115.840000pt;}
.x1c_c00109{left:117.120000pt;}
.x3_c00109{left:118.400000pt;}
.x15_c00109{left:126.720000pt;}
.x1f_c00109{left:136.320000pt;}
.x10_c00109{left:155.520000pt;}
.x22_c00109{left:163.840000pt;}
.x2d_c00109{left:172.160000pt;}
.x2e_c00109{left:180.480000pt;}
.x29_c00109{left:192.000000pt;}
.x11_c00109{left:193.920000pt;}
.x1a_c00109{left:201.600000pt;}
.x1d_c00109{left:202.880000pt;}
.x2f_c00109{left:220.160000pt;}
.x1b_c00109{left:240.640000pt;}
.xa_c00109{left:251.520000pt;}
.x4_c00109{left:261.120000pt;}
.x2a_c00109{left:268.160000pt;}
.xb_c00109{left:289.280000pt;}
.x5_c00109{left:298.880000pt;}
.xc_c00109{left:328.320000pt;}
.x16_c00109{left:346.880000pt;}
.x17_c00109{left:375.680000pt;}
.x6_c00109{left:386.560000pt;}
.x7_c00109{left:424.960000pt;}
.x27_c00109{left:490.240000pt;}
.x18_c00109{left:491.520000pt;}
.x8_c00109{left:492.800000pt;}
.x14_c00109{left:522.240000pt;}
.x30_c00109{left:537.600000pt;}
.x26_c00109{left:538.880000pt;}
.x19_c00109{left:540.160000pt;}
.x23_c00109{left:549.120000pt;}
.xd_c00109{left:569.600000pt;}
.x2c_c00109{left:589.440000pt;}
.x32_c00109{left:597.120000pt;}
.xe_c00109{left:599.680000pt;}
.x1_c00109{left:609.920000pt;}
.x20_c00109{left:618.880000pt;}
.x31_c00109{left:634.880000pt;}
.x24_c00109{left:636.160000pt;}
.xf_c00109{left:637.440000pt;}
.x9_c00109{left:638.720000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_fc12226d99ff0c9ef4cfdd72.woff2')format("woff");}.ff1_c00110{font-family:ff1_c00110;line-height:1.109863;font-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_c00110{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m45_c00110{transform:matrix(0.241275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241275,0.000000,0.000000,0.250000,0,0);}
.m35_c00110{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00110{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m46_c00110{transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);}
.m33_c00110{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_c00110{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m24_c00110{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_c00110{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_c00110{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m2_c00110{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.md_c00110{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m9_c00110{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_c00110{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mb_c00110{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m17_c00110{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m6_c00110{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);}
.m29_c00110{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00110{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00110{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m34_c00110{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m28_c00110{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m18_c00110{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00110{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m15_c00110{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00110{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m19_c00110{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.me_c00110{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mf_c00110{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00110{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m31_c00110{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m47_c00110{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m14_c00110{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m16_c00110{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m11_c00110{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);}
.m38_c00110{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_c00110{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1_c00110{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m0_c00110{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00110{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00110{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);}
.m48_c00110{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m5_c00110{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00110{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);}
.ma_c00110{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);}
.m25_c00110{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m23_c00110{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);}
.m2c_c00110{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m36_c00110{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);}
.m2f_c00110{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.mc_c00110{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m37_c00110{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00110{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m44_c00110{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m30_c00110{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m41_c00110{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);}
.m32_c00110{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_c00110{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m40_c00110{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m21_c00110{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m3_c00110{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00110{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m20_c00110{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);}
.m4_c00110{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m22_c00110{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00110{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m42_c00110{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);}
.m3d_c00110{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00110{transform:matrix(0.860000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.860000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.860000,0.000000,0.000000,0.250000,0,0);}
.m7_c00110{transform:matrix(1.030000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.030000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.030000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00110{transform:matrix(1.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.317500,0.000000,0.000000,0.250000,0,0);}
.m43_c00110{transform:matrix(1.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.547500,0.000000,0.000000,0.250000,0,0);}
.m39_c00110{transform:matrix(1.635000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.635000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.635000,0.000000,0.000000,0.250000,0,0);}
.v0_c00110{vertical-align:0.000000px;}
.v1_c00110{vertical-align:2.880000px;}
.v2_c00110{vertical-align:5.760000px;}
.ls0_c00110{letter-spacing:0.000000px;}
.sc__c00110{text-shadow:none;}
.sc0_c00110{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00110{-webkit-text-stroke:0px transparent;}
.sc0_c00110{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00110{word-spacing:0.000000px;}
.ws1_c00110{word-spacing:4.770000px;}
.ws0_c00110{word-spacing:14.364000px;}
.fc0_c00110{color:transparent;}
.fs3_c00110{font-size:23.040000px;}
.fse_c00110{font-size:25.920000px;}
.fs6_c00110{font-size:31.680000px;}
.fs10_c00110{font-size:34.560000px;}
.fsc_c00110{font-size:37.440000px;}
.fs11_c00110{font-size:40.320000px;}
.fsf_c00110{font-size:46.080000px;}
.fsb_c00110{font-size:48.960000px;}
.fsa_c00110{font-size:51.840000px;}
.fs9_c00110{font-size:54.720000px;}
.fs2_c00110{font-size:57.600000px;}
.fs7_c00110{font-size:60.480000px;}
.fs4_c00110{font-size:63.360000px;}
.fs1_c00110{font-size:66.240000px;}
.fs8_c00110{font-size:69.120000px;}
.fsd_c00110{font-size:72.000000px;}
.fs5_c00110{font-size:74.880000px;}
.fs0_c00110{font-size:77.760000px;}
.y0_c00110{bottom:0.000000px;}
.y74_c00110{bottom:36.720000px;}
.y6a_c00110{bottom:37.440000px;}
.y73_c00110{bottom:38.160000px;}
.y67_c00110{bottom:38.880000px;}
.y68_c00110{bottom:40.320000px;}
.y69_c00110{bottom:41.040000px;}
.y66_c00110{bottom:44.640000px;}
.y72_c00110{bottom:79.920000px;}
.y65_c00110{bottom:81.360000px;}
.y64_c00110{bottom:87.120000px;}
.y70_c00110{bottom:123.120000px;}
.y63_c00110{bottom:124.560000px;}
.y71_c00110{bottom:126.000000px;}
.y62_c00110{bottom:130.320000px;}
.y6e_c00110{bottom:167.040000px;}
.y6d_c00110{bottom:167.760000px;}
.y61_c00110{bottom:168.480000px;}
.y6f_c00110{bottom:169.200000px;}
.y60_c00110{bottom:169.920000px;}
.y5f_c00110{bottom:172.080000px;}
.y6c_c00110{bottom:209.520000px;}
.y5e_c00110{bottom:210.240000px;}
.y6b_c00110{bottom:210.960000px;}
.y5d_c00110{bottom:214.560000px;}
.y5a_c00110{bottom:254.160000px;}
.y5c_c00110{bottom:254.880000px;}
.y5b_c00110{bottom:255.600000px;}
.y59_c00110{bottom:258.480000px;}
.y58_c00110{bottom:285.120000px;}
.y56_c00110{bottom:285.840000px;}
.y53_c00110{bottom:286.560000px;}
.y55_c00110{bottom:287.280000px;}
.y57_c00110{bottom:288.000000px;}
.y54_c00110{bottom:288.720000px;}
.y52_c00110{bottom:289.440000px;}
.y4f_c00110{bottom:328.320000px;}
.y51_c00110{bottom:329.760000px;}
.y4e_c00110{bottom:330.480000px;}
.y50_c00110{bottom:331.920000px;}
.y4d_c00110{bottom:332.640000px;}
.y4c_c00110{bottom:371.520000px;}
.y4a_c00110{bottom:372.240000px;}
.y4b_c00110{bottom:372.960000px;}
.y49_c00110{bottom:375.840000px;}
.y46_c00110{bottom:414.720000px;}
.y47_c00110{bottom:416.160000px;}
.y48_c00110{bottom:417.600000px;}
.y45_c00110{bottom:419.040000px;}
.y41_c00110{bottom:457.920000px;}
.y44_c00110{bottom:458.640000px;}
.y43_c00110{bottom:459.360000px;}
.y42_c00110{bottom:460.080000px;}
.y40_c00110{bottom:461.520000px;}
.y3e_c00110{bottom:501.120000px;}
.y3f_c00110{bottom:502.560000px;}
.y3d_c00110{bottom:503.280000px;}
.y3a_c00110{bottom:544.320000px;}
.y3b_c00110{bottom:545.760000px;}
.y39_c00110{bottom:546.480000px;}
.y3c_c00110{bottom:547.200000px;}
.y35_c00110{bottom:586.800000px;}
.y36_c00110{bottom:588.960000px;}
.y34_c00110{bottom:589.680000px;}
.y37_c00110{bottom:590.400000px;}
.y38_c00110{bottom:591.120000px;}
.y2f_c00110{bottom:630.000000px;}
.y31_c00110{bottom:631.440000px;}
.y2e_c00110{bottom:632.160000px;}
.y32_c00110{bottom:632.880000px;}
.y33_c00110{bottom:633.600000px;}
.y30_c00110{bottom:637.200000px;}
.y2a_c00110{bottom:673.920000px;}
.y29_c00110{bottom:674.640000px;}
.y2d_c00110{bottom:675.360000px;}
.y2b_c00110{bottom:676.080000px;}
.y2c_c00110{bottom:676.800000px;}
.y26_c00110{bottom:716.400000px;}
.y25_c00110{bottom:718.560000px;}
.y27_c00110{bottom:720.000000px;}
.y28_c00110{bottom:720.720000px;}
.y23_c00110{bottom:760.320000px;}
.y24_c00110{bottom:761.760000px;}
.y22_c00110{bottom:763.200000px;}
.y20_c00110{bottom:791.280000px;}
.y21_c00110{bottom:793.440000px;}
.y1f_c00110{bottom:794.160000px;}
.y1e_c00110{bottom:794.880000px;}
.y1c_c00110{bottom:795.600000px;}
.y1d_c00110{bottom:796.320000px;}
.yf_c00110{bottom:833.760000px;}
.ye_c00110{bottom:835.920000px;}
.y1a_c00110{bottom:837.360000px;}
.y19_c00110{bottom:838.080000px;}
.y1b_c00110{bottom:838.800000px;}
.yd_c00110{bottom:876.960000px;}
.yc_c00110{bottom:878.400000px;}
.y17_c00110{bottom:880.560000px;}
.y16_c00110{bottom:881.280000px;}
.y18_c00110{bottom:882.000000px;}
.yb_c00110{bottom:920.160000px;}
.ya_c00110{bottom:920.880000px;}
.y14_c00110{bottom:923.760000px;}
.y13_c00110{bottom:924.480000px;}
.y15_c00110{bottom:925.200000px;}
.y9_c00110{bottom:962.640000px;}
.y8_c00110{bottom:965.520000px;}
.y11_c00110{bottom:966.960000px;}
.y10_c00110{bottom:967.680000px;}
.y12_c00110{bottom:968.400000px;}
.y3_c00110{bottom:1005.840000px;}
.y2_c00110{bottom:1006.560000px;}
.y7_c00110{bottom:1008.720000px;}
.y6_c00110{bottom:1009.440000px;}
.y4_c00110{bottom:1010.880000px;}
.y5_c00110{bottom:1015.200000px;}
.y1_c00110{bottom:1085.760000px;}
.h5_c00110{height:20.733750px;}
.h11_c00110{height:23.325469px;}
.h8_c00110{height:28.508906px;}
.h14_c00110{height:31.100625px;}
.he_c00110{height:33.692344px;}
.h15_c00110{height:36.284062px;}
.h13_c00110{height:41.467500px;}
.hd_c00110{height:44.059219px;}
.hc_c00110{height:46.650937px;}
.hb_c00110{height:49.242656px;}
.h4_c00110{height:51.834375px;}
.h12_c00110{height:52.410937px;}
.h9_c00110{height:54.426094px;}
.h6_c00110{height:57.017812px;}
.h3_c00110{height:59.609531px;}
.ha_c00110{height:62.201250px;}
.hf_c00110{height:64.792969px;}
.h10_c00110{height:65.081250px;}
.h7_c00110{height:67.384687px;}
.h2_c00110{height:69.976406px;}
.h0_c00110{height:1152.720000px;}
.h1_c00110{height:1152.750000px;}
.w0_c00110{width:797.040000px;}
.w1_c00110{width:797.250000px;}
.x0_c00110{left:0.000000px;}
.x26_c00110{left:65.520000px;}
.x2_c00110{left:67.680000px;}
.x8_c00110{left:69.120000px;}
.x1c_c00110{left:110.160000px;}
.x21_c00110{left:120.960000px;}
.x32_c00110{left:130.320000px;}
.x9_c00110{left:131.760000px;}
.x3_c00110{left:133.200000px;}
.x30_c00110{left:136.800000px;}
.x1f_c00110{left:142.560000px;}
.x2f_c00110{left:172.800000px;}
.x31_c00110{left:176.400000px;}
.x27_c00110{left:216.720000px;}
.x33_c00110{left:226.800000px;}
.x14_c00110{left:237.600000px;}
.x1d_c00110{left:241.200000px;}
.x18_c00110{left:249.840000px;}
.x24_c00110{left:251.280000px;}
.x2c_c00110{left:259.920000px;}
.x17_c00110{left:263.520000px;}
.x20_c00110{left:272.880000px;}
.x34_c00110{left:280.800000px;}
.x19_c00110{left:291.600000px;}
.x11_c00110{left:293.040000px;}
.x28_c00110{left:302.400000px;}
.x2d_c00110{left:303.840000px;}
.x4_c00110{left:313.920000px;}
.x1a_c00110{left:324.000000px;}
.x15_c00110{left:336.960000px;}
.x22_c00110{left:345.600000px;}
.x12_c00110{left:347.760000px;}
.x5_c00110{left:357.120000px;}
.x6_c00110{left:369.360000px;}
.x13_c00110{left:390.240000px;}
.x16_c00110{left:392.400000px;}
.x1b_c00110{left:403.200000px;}
.x7_c00110{left:412.560000px;}
.x29_c00110{left:421.200000px;}
.x2a_c00110{left:465.840000px;}
.x2e_c00110{left:476.640000px;}
.xa_c00110{left:553.680000px;}
.x25_c00110{left:563.760000px;}
.x36_c00110{left:586.080000px;}
.x35_c00110{left:606.960000px;}
.xb_c00110{left:608.400000px;}
.x37_c00110{left:619.200000px;}
.x23_c00110{left:639.360000px;}
.x10_c00110{left:640.800000px;}
.x1_c00110{left:663.840000px;}
.x1e_c00110{left:673.920000px;}
.xd_c00110{left:675.360000px;}
.xe_c00110{left:684.720000px;}
.xc_c00110{left:717.120000px;}
.xf_c00110{left:718.560000px;}
.x2b_c00110{left:738.720000px;}
@media print{
.v0_c00110{vertical-align:0.000000pt;}
.v1_c00110{vertical-align:2.560000pt;}
.v2_c00110{vertical-align:5.120000pt;}
.ls0_c00110{letter-spacing:0.000000pt;}
.ws2_c00110{word-spacing:0.000000pt;}
.ws1_c00110{word-spacing:4.240000pt;}
.ws0_c00110{word-spacing:12.768000pt;}
.fs3_c00110{font-size:20.480000pt;}
.fse_c00110{font-size:23.040000pt;}
.fs6_c00110{font-size:28.160000pt;}
.fs10_c00110{font-size:30.720000pt;}
.fsc_c00110{font-size:33.280000pt;}
.fs11_c00110{font-size:35.840000pt;}
.fsf_c00110{font-size:40.960000pt;}
.fsb_c00110{font-size:43.520000pt;}
.fsa_c00110{font-size:46.080000pt;}
.fs9_c00110{font-size:48.640000pt;}
.fs2_c00110{font-size:51.200000pt;}
.fs7_c00110{font-size:53.760000pt;}
.fs4_c00110{font-size:56.320000pt;}
.fs1_c00110{font-size:58.880000pt;}
.fs8_c00110{font-size:61.440000pt;}
.fsd_c00110{font-size:64.000000pt;}
.fs5_c00110{font-size:66.560000pt;}
.fs0_c00110{font-size:69.120000pt;}
.y0_c00110{bottom:0.000000pt;}
.y74_c00110{bottom:32.640000pt;}
.y6a_c00110{bottom:33.280000pt;}
.y73_c00110{bottom:33.920000pt;}
.y67_c00110{bottom:34.560000pt;}
.y68_c00110{bottom:35.840000pt;}
.y69_c00110{bottom:36.480000pt;}
.y66_c00110{bottom:39.680000pt;}
.y72_c00110{bottom:71.040000pt;}
.y65_c00110{bottom:72.320000pt;}
.y64_c00110{bottom:77.440000pt;}
.y70_c00110{bottom:109.440000pt;}
.y63_c00110{bottom:110.720000pt;}
.y71_c00110{bottom:112.000000pt;}
.y62_c00110{bottom:115.840000pt;}
.y6e_c00110{bottom:148.480000pt;}
.y6d_c00110{bottom:149.120000pt;}
.y61_c00110{bottom:149.760000pt;}
.y6f_c00110{bottom:150.400000pt;}
.y60_c00110{bottom:151.040000pt;}
.y5f_c00110{bottom:152.960000pt;}
.y6c_c00110{bottom:186.240000pt;}
.y5e_c00110{bottom:186.880000pt;}
.y6b_c00110{bottom:187.520000pt;}
.y5d_c00110{bottom:190.720000pt;}
.y5a_c00110{bottom:225.920000pt;}
.y5c_c00110{bottom:226.560000pt;}
.y5b_c00110{bottom:227.200000pt;}
.y59_c00110{bottom:229.760000pt;}
.y58_c00110{bottom:253.440000pt;}
.y56_c00110{bottom:254.080000pt;}
.y53_c00110{bottom:254.720000pt;}
.y55_c00110{bottom:255.360000pt;}
.y57_c00110{bottom:256.000000pt;}
.y54_c00110{bottom:256.640000pt;}
.y52_c00110{bottom:257.280000pt;}
.y4f_c00110{bottom:291.840000pt;}
.y51_c00110{bottom:293.120000pt;}
.y4e_c00110{bottom:293.760000pt;}
.y50_c00110{bottom:295.040000pt;}
.y4d_c00110{bottom:295.680000pt;}
.y4c_c00110{bottom:330.240000pt;}
.y4a_c00110{bottom:330.880000pt;}
.y4b_c00110{bottom:331.520000pt;}
.y49_c00110{bottom:334.080000pt;}
.y46_c00110{bottom:368.640000pt;}
.y47_c00110{bottom:369.920000pt;}
.y48_c00110{bottom:371.200000pt;}
.y45_c00110{bottom:372.480000pt;}
.y41_c00110{bottom:407.040000pt;}
.y44_c00110{bottom:407.680000pt;}
.y43_c00110{bottom:408.320000pt;}
.y42_c00110{bottom:408.960000pt;}
.y40_c00110{bottom:410.240000pt;}
.y3e_c00110{bottom:445.440000pt;}
.y3f_c00110{bottom:446.720000pt;}
.y3d_c00110{bottom:447.360000pt;}
.y3a_c00110{bottom:483.840000pt;}
.y3b_c00110{bottom:485.120000pt;}
.y39_c00110{bottom:485.760000pt;}
.y3c_c00110{bottom:486.400000pt;}
.y35_c00110{bottom:521.600000pt;}
.y36_c00110{bottom:523.520000pt;}
.y34_c00110{bottom:524.160000pt;}
.y37_c00110{bottom:524.800000pt;}
.y38_c00110{bottom:525.440000pt;}
.y2f_c00110{bottom:560.000000pt;}
.y31_c00110{bottom:561.280000pt;}
.y2e_c00110{bottom:561.920000pt;}
.y32_c00110{bottom:562.560000pt;}
.y33_c00110{bottom:563.200000pt;}
.y30_c00110{bottom:566.400000pt;}
.y2a_c00110{bottom:599.040000pt;}
.y29_c00110{bottom:599.680000pt;}
.y2d_c00110{bottom:600.320000pt;}
.y2b_c00110{bottom:600.960000pt;}
.y2c_c00110{bottom:601.600000pt;}
.y26_c00110{bottom:636.800000pt;}
.y25_c00110{bottom:638.720000pt;}
.y27_c00110{bottom:640.000000pt;}
.y28_c00110{bottom:640.640000pt;}
.y23_c00110{bottom:675.840000pt;}
.y24_c00110{bottom:677.120000pt;}
.y22_c00110{bottom:678.400000pt;}
.y20_c00110{bottom:703.360000pt;}
.y21_c00110{bottom:705.280000pt;}
.y1f_c00110{bottom:705.920000pt;}
.y1e_c00110{bottom:706.560000pt;}
.y1c_c00110{bottom:707.200000pt;}
.y1d_c00110{bottom:707.840000pt;}
.yf_c00110{bottom:741.120000pt;}
.ye_c00110{bottom:743.040000pt;}
.y1a_c00110{bottom:744.320000pt;}
.y19_c00110{bottom:744.960000pt;}
.y1b_c00110{bottom:745.600000pt;}
.yd_c00110{bottom:779.520000pt;}
.yc_c00110{bottom:780.800000pt;}
.y17_c00110{bottom:782.720000pt;}
.y16_c00110{bottom:783.360000pt;}
.y18_c00110{bottom:784.000000pt;}
.yb_c00110{bottom:817.920000pt;}
.ya_c00110{bottom:818.560000pt;}
.y14_c00110{bottom:821.120000pt;}
.y13_c00110{bottom:821.760000pt;}
.y15_c00110{bottom:822.400000pt;}
.y9_c00110{bottom:855.680000pt;}
.y8_c00110{bottom:858.240000pt;}
.y11_c00110{bottom:859.520000pt;}
.y10_c00110{bottom:860.160000pt;}
.y12_c00110{bottom:860.800000pt;}
.y3_c00110{bottom:894.080000pt;}
.y2_c00110{bottom:894.720000pt;}
.y7_c00110{bottom:896.640000pt;}
.y6_c00110{bottom:897.280000pt;}
.y4_c00110{bottom:898.560000pt;}
.y5_c00110{bottom:902.400000pt;}
.y1_c00110{bottom:965.120000pt;}
.h5_c00110{height:18.430000pt;}
.h11_c00110{height:20.733750pt;}
.h8_c00110{height:25.341250pt;}
.h14_c00110{height:27.645000pt;}
.he_c00110{height:29.948750pt;}
.h15_c00110{height:32.252500pt;}
.h13_c00110{height:36.860000pt;}
.hd_c00110{height:39.163750pt;}
.hc_c00110{height:41.467500pt;}
.hb_c00110{height:43.771250pt;}
.h4_c00110{height:46.075000pt;}
.h12_c00110{height:46.587500pt;}
.h9_c00110{height:48.378750pt;}
.h6_c00110{height:50.682500pt;}
.h3_c00110{height:52.986250pt;}
.ha_c00110{height:55.290000pt;}
.hf_c00110{height:57.593750pt;}
.h10_c00110{height:57.850000pt;}
.h7_c00110{height:59.897500pt;}
.h2_c00110{height:62.201250pt;}
.h0_c00110{height:1024.640000pt;}
.h1_c00110{height:1024.666667pt;}
.w0_c00110{width:708.480000pt;}
.w1_c00110{width:708.666667pt;}
.x0_c00110{left:0.000000pt;}
.x26_c00110{left:58.240000pt;}
.x2_c00110{left:60.160000pt;}
.x8_c00110{left:61.440000pt;}
.x1c_c00110{left:97.920000pt;}
.x21_c00110{left:107.520000pt;}
.x32_c00110{left:115.840000pt;}
.x9_c00110{left:117.120000pt;}
.x3_c00110{left:118.400000pt;}
.x30_c00110{left:121.600000pt;}
.x1f_c00110{left:126.720000pt;}
.x2f_c00110{left:153.600000pt;}
.x31_c00110{left:156.800000pt;}
.x27_c00110{left:192.640000pt;}
.x33_c00110{left:201.600000pt;}
.x14_c00110{left:211.200000pt;}
.x1d_c00110{left:214.400000pt;}
.x18_c00110{left:222.080000pt;}
.x24_c00110{left:223.360000pt;}
.x2c_c00110{left:231.040000pt;}
.x17_c00110{left:234.240000pt;}
.x20_c00110{left:242.560000pt;}
.x34_c00110{left:249.600000pt;}
.x19_c00110{left:259.200000pt;}
.x11_c00110{left:260.480000pt;}
.x28_c00110{left:268.800000pt;}
.x2d_c00110{left:270.080000pt;}
.x4_c00110{left:279.040000pt;}
.x1a_c00110{left:288.000000pt;}
.x15_c00110{left:299.520000pt;}
.x22_c00110{left:307.200000pt;}
.x12_c00110{left:309.120000pt;}
.x5_c00110{left:317.440000pt;}
.x6_c00110{left:328.320000pt;}
.x13_c00110{left:346.880000pt;}
.x16_c00110{left:348.800000pt;}
.x1b_c00110{left:358.400000pt;}
.x7_c00110{left:366.720000pt;}
.x29_c00110{left:374.400000pt;}
.x2a_c00110{left:414.080000pt;}
.x2e_c00110{left:423.680000pt;}
.xa_c00110{left:492.160000pt;}
.x25_c00110{left:501.120000pt;}
.x36_c00110{left:520.960000pt;}
.x35_c00110{left:539.520000pt;}
.xb_c00110{left:540.800000pt;}
.x37_c00110{left:550.400000pt;}
.x23_c00110{left:568.320000pt;}
.x10_c00110{left:569.600000pt;}
.x1_c00110{left:590.080000pt;}
.x1e_c00110{left:599.040000pt;}
.xd_c00110{left:600.320000pt;}
.xe_c00110{left:608.640000pt;}
.xc_c00110{left:637.440000pt;}
.xf_c00110{left:638.720000pt;}
.x2b_c00110{left:656.640000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9c47ef11f9e175047944a641.woff2')format("woff");}.ff1_c00111{font-family:ff1_c00111;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3f_c00111{transform:matrix(0.167550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167550,0.000000,0.000000,0.250000,0,0);}
.m40_c00111{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m3_c00111{transform:matrix(0.242850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242850,0.000000,0.000000,0.250000,0,0);}
.m4_c00111{transform:matrix(0.244450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244450,0.000000,0.000000,0.250000,0,0);}
.mc_c00111{transform:matrix(0.245450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245450,0.000000,0.000000,0.250000,0,0);}
.m15_c00111{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m11_c00111{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m6_c00111{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m8_c00111{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.ma_c00111{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m9_c00111{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m29_c00111{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00111{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1_c00111{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m28_c00111{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m26_c00111{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m25_c00111{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00111{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m16_c00111{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00111{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00111{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00111{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m13_c00111{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00111{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m20_c00111{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m39_c00111{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m23_c00111{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m17_c00111{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m24_c00111{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m21_c00111{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m22_c00111{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m18_c00111{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00111{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m30_c00111{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_c00111{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00111{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.mf_c00111{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m38_c00111{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m10_c00111{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);}
.m27_c00111{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m35_c00111{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m2_c00111{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m14_c00111{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);}
.mb_c00111{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00111{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);}
.m0_c00111{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);}
.m5_c00111{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00111{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.md_c00111{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m12_c00111{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m19_c00111{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);}
.m34_c00111{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00111{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00111{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);}
.m2e_c00111{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.me_c00111{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m31_c00111{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m7_c00111{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m36_c00111{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);}
.m33_c00111{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00111{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00111{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.m32_c00111{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00111{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.m37_c00111{transform:matrix(1.410000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.410000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.410000,0.000000,0.000000,0.250000,0,0);}
.v0_c00111{vertical-align:0.000000px;}
.ls0_c00111{letter-spacing:0.000000px;}
.sc__c00111{text-shadow:none;}
.sc0_c00111{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00111{-webkit-text-stroke:0px transparent;}
.sc0_c00111{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00111{word-spacing:0.000000px;}
.fc0_c00111{color:transparent;}
.fse_c00111{font-size:28.800000px;}
.fsf_c00111{font-size:37.440000px;}
.fsc_c00111{font-size:43.200000px;}
.fsd_c00111{font-size:46.080000px;}
.fsa_c00111{font-size:48.960000px;}
.fs6_c00111{font-size:51.840000px;}
.fs4_c00111{font-size:54.720000px;}
.fs0_c00111{font-size:57.600000px;}
.fs2_c00111{font-size:60.480000px;}
.fsb_c00111{font-size:63.360000px;}
.fs9_c00111{font-size:66.240000px;}
.fs8_c00111{font-size:69.120000px;}
.fs7_c00111{font-size:72.000000px;}
.fs5_c00111{font-size:74.880000px;}
.fs3_c00111{font-size:77.760000px;}
.fs1_c00111{font-size:80.640000px;}
.y0_c00111{bottom:0.000000px;}
.y66_c00111{bottom:58.320000px;}
.y5e_c00111{bottom:59.760000px;}
.y65_c00111{bottom:60.480000px;}
.y5d_c00111{bottom:102.240000px;}
.y5c_c00111{bottom:106.560000px;}
.y5a_c00111{bottom:134.640000px;}
.y63_c00111{bottom:135.360000px;}
.y64_c00111{bottom:136.800000px;}
.y5b_c00111{bottom:137.520000px;}
.y59_c00111{bottom:138.240000px;}
.y57_c00111{bottom:177.840000px;}
.y58_c00111{bottom:178.560000px;}
.y62_c00111{bottom:179.280000px;}
.y56_c00111{bottom:181.440000px;}
.y54_c00111{bottom:221.040000px;}
.y55_c00111{bottom:221.760000px;}
.y61_c00111{bottom:222.480000px;}
.y53_c00111{bottom:224.640000px;}
.y50_c00111{bottom:264.240000px;}
.y52_c00111{bottom:264.960000px;}
.y4f_c00111{bottom:265.680000px;}
.y5f_c00111{bottom:266.400000px;}
.y60_c00111{bottom:267.840000px;}
.y51_c00111{bottom:268.560000px;}
.y27_c00111{bottom:307.440000px;}
.y4e_c00111{bottom:308.160000px;}
.y26_c00111{bottom:309.600000px;}
.y4d_c00111{bottom:310.320000px;}
.y23_c00111{bottom:349.920000px;}
.y25_c00111{bottom:350.640000px;}
.y24_c00111{bottom:351.360000px;}
.y4c_c00111{bottom:352.080000px;}
.y22_c00111{bottom:352.800000px;}
.y21_c00111{bottom:393.120000px;}
.y4b_c00111{bottom:394.560000px;}
.y4a_c00111{bottom:395.280000px;}
.y20_c00111{bottom:396.000000px;}
.y1f_c00111{bottom:435.600000px;}
.y1d_c00111{bottom:437.760000px;}
.y1e_c00111{bottom:438.480000px;}
.y48_c00111{bottom:439.200000px;}
.y49_c00111{bottom:440.640000px;}
.y1c_c00111{bottom:478.080000px;}
.y1b_c00111{bottom:480.960000px;}
.y45_c00111{bottom:481.680000px;}
.y47_c00111{bottom:483.120000px;}
.y46_c00111{bottom:483.840000px;}
.y19_c00111{bottom:521.280000px;}
.y1a_c00111{bottom:522.720000px;}
.y18_c00111{bottom:523.440000px;}
.y43_c00111{bottom:524.160000px;}
.y44_c00111{bottom:524.880000px;}
.y41_c00111{bottom:525.600000px;}
.y42_c00111{bottom:527.040000px;}
.y17_c00111{bottom:565.200000px;}
.y16_c00111{bottom:566.640000px;}
.y3f_c00111{bottom:568.080000px;}
.y40_c00111{bottom:570.240000px;}
.y15_c00111{bottom:607.680000px;}
.y14_c00111{bottom:609.120000px;}
.y3d_c00111{bottom:610.560000px;}
.y3c_c00111{bottom:611.280000px;}
.y3e_c00111{bottom:613.440000px;}
.y3a_c00111{bottom:654.480000px;}
.y3b_c00111{bottom:656.640000px;}
.y13_c00111{bottom:696.960000px;}
.y12_c00111{bottom:746.640000px;}
.y11_c00111{bottom:749.520000px;}
.y38_c00111{bottom:750.960000px;}
.y37_c00111{bottom:751.680000px;}
.y39_c00111{bottom:753.120000px;}
.y10_c00111{bottom:789.120000px;}
.yf_c00111{bottom:791.280000px;}
.y35_c00111{bottom:794.880000px;}
.y36_c00111{bottom:797.040000px;}
.ye_c00111{bottom:832.320000px;}
.yd_c00111{bottom:833.760000px;}
.y33_c00111{bottom:838.080000px;}
.y34_c00111{bottom:838.800000px;}
.yc_c00111{bottom:875.520000px;}
.yb_c00111{bottom:876.960000px;}
.y31_c00111{bottom:880.560000px;}
.y30_c00111{bottom:881.280000px;}
.y32_c00111{bottom:883.440000px;}
.y8_c00111{bottom:918.720000px;}
.ya_c00111{bottom:920.160000px;}
.y7_c00111{bottom:920.880000px;}
.y9_c00111{bottom:923.040000px;}
.y2e_c00111{bottom:923.760000px;}
.y2f_c00111{bottom:925.200000px;}
.y4_c00111{bottom:961.200000px;}
.y3_c00111{bottom:962.640000px;}
.y6_c00111{bottom:963.360000px;}
.y5_c00111{bottom:966.240000px;}
.y2b_c00111{bottom:966.960000px;}
.y2c_c00111{bottom:967.680000px;}
.y2d_c00111{bottom:968.400000px;}
.y2_c00111{bottom:1003.680000px;}
.y1_c00111{bottom:1005.840000px;}
.y29_c00111{bottom:1010.880000px;}
.y2a_c00111{bottom:1011.600000px;}
.y28_c00111{bottom:1082.880000px;}
.h10_c00111{height:25.917187px;}
.h11_c00111{height:33.692344px;}
.he_c00111{height:38.875781px;}
.hf_c00111{height:41.467500px;}
.hc_c00111{height:44.059219px;}
.h8_c00111{height:46.650937px;}
.h6_c00111{height:49.242656px;}
.h2_c00111{height:51.834375px;}
.h4_c00111{height:54.426094px;}
.hd_c00111{height:57.017812px;}
.hb_c00111{height:59.609531px;}
.ha_c00111{height:62.201250px;}
.h9_c00111{height:64.792969px;}
.h7_c00111{height:67.384687px;}
.h5_c00111{height:69.976406px;}
.h3_c00111{height:72.568125px;}
.h1_c00111{height:1144.500000px;}
.h0_c00111{height:1144.800000px;}
.w1_c00111{width:801.000000px;}
.w0_c00111{width:801.360000px;}
.x0_c00111{left:0.000000px;}
.x1_c00111{left:79.920000px;}
.xb_c00111{left:81.360000px;}
.x26_c00111{left:82.800000px;}
.x2c_c00111{left:84.240000px;}
.x8_c00111{left:133.200000px;}
.x2_c00111{left:142.560000px;}
.x3_c00111{left:144.000000px;}
.xf_c00111{left:146.160000px;}
.xa_c00111{left:155.520000px;}
.x2d_c00111{left:157.680000px;}
.x32_c00111{left:200.160000px;}
.x9_c00111{left:218.160000px;}
.xe_c00111{left:220.320000px;}
.xd_c00111{left:230.400000px;}
.x4_c00111{left:239.760000px;}
.x27_c00111{left:242.640000px;}
.xc_c00111{left:252.000000px;}
.x6_c00111{left:261.360000px;}
.x2b_c00111{left:264.240000px;}
.x2e_c00111{left:286.560000px;}
.x5_c00111{left:303.840000px;}
.x10_c00111{left:307.440000px;}
.x7_c00111{left:326.160000px;}
.x33_c00111{left:341.280000px;}
.x2f_c00111{left:352.080000px;}
.x28_c00111{left:360.720000px;}
.x30_c00111{left:383.040000px;}
.x34_c00111{left:395.280000px;}
.x29_c00111{left:415.440000px;}
.x11_c00111{left:447.120000px;}
.x31_c00111{left:480.960000px;}
.x2a_c00111{left:524.160000px;}
.x13_c00111{left:563.760000px;}
.x16_c00111{left:565.920000px;}
.x22_c00111{left:567.360000px;}
.x19_c00111{left:598.320000px;}
.x23_c00111{left:600.480000px;}
.x17_c00111{left:619.920000px;}
.x1a_c00111{left:621.360000px;}
.x14_c00111{left:630.000000px;}
.x1d_c00111{left:631.440000px;}
.x36_c00111{left:632.880000px;}
.x24_c00111{left:645.840000px;}
.x1e_c00111{left:653.760000px;}
.x20_c00111{left:655.200000px;}
.x37_c00111{left:656.640000px;}
.x12_c00111{left:684.000000px;}
.x18_c00111{left:686.160000px;}
.x21_c00111{left:687.600000px;}
.x35_c00111{left:689.040000px;}
.x1f_c00111{left:720.720000px;}
.x15_c00111{left:728.640000px;}
.x1b_c00111{left:730.800000px;}
.x25_c00111{left:732.240000px;}
.x1c_c00111{left:750.960000px;}
.x38_c00111{left:753.840000px;}
@media print{
.v0_c00111{vertical-align:0.000000pt;}
.ls0_c00111{letter-spacing:0.000000pt;}
.ws0_c00111{word-spacing:0.000000pt;}
.fse_c00111{font-size:25.600000pt;}
.fsf_c00111{font-size:33.280000pt;}
.fsc_c00111{font-size:38.400000pt;}
.fsd_c00111{font-size:40.960000pt;}
.fsa_c00111{font-size:43.520000pt;}
.fs6_c00111{font-size:46.080000pt;}
.fs4_c00111{font-size:48.640000pt;}
.fs0_c00111{font-size:51.200000pt;}
.fs2_c00111{font-size:53.760000pt;}
.fsb_c00111{font-size:56.320000pt;}
.fs9_c00111{font-size:58.880000pt;}
.fs8_c00111{font-size:61.440000pt;}
.fs7_c00111{font-size:64.000000pt;}
.fs5_c00111{font-size:66.560000pt;}
.fs3_c00111{font-size:69.120000pt;}
.fs1_c00111{font-size:71.680000pt;}
.y0_c00111{bottom:0.000000pt;}
.y66_c00111{bottom:51.840000pt;}
.y5e_c00111{bottom:53.120000pt;}
.y65_c00111{bottom:53.760000pt;}
.y5d_c00111{bottom:90.880000pt;}
.y5c_c00111{bottom:94.720000pt;}
.y5a_c00111{bottom:119.680000pt;}
.y63_c00111{bottom:120.320000pt;}
.y64_c00111{bottom:121.600000pt;}
.y5b_c00111{bottom:122.240000pt;}
.y59_c00111{bottom:122.880000pt;}
.y57_c00111{bottom:158.080000pt;}
.y58_c00111{bottom:158.720000pt;}
.y62_c00111{bottom:159.360000pt;}
.y56_c00111{bottom:161.280000pt;}
.y54_c00111{bottom:196.480000pt;}
.y55_c00111{bottom:197.120000pt;}
.y61_c00111{bottom:197.760000pt;}
.y53_c00111{bottom:199.680000pt;}
.y50_c00111{bottom:234.880000pt;}
.y52_c00111{bottom:235.520000pt;}
.y4f_c00111{bottom:236.160000pt;}
.y5f_c00111{bottom:236.800000pt;}
.y60_c00111{bottom:238.080000pt;}
.y51_c00111{bottom:238.720000pt;}
.y27_c00111{bottom:273.280000pt;}
.y4e_c00111{bottom:273.920000pt;}
.y26_c00111{bottom:275.200000pt;}
.y4d_c00111{bottom:275.840000pt;}
.y23_c00111{bottom:311.040000pt;}
.y25_c00111{bottom:311.680000pt;}
.y24_c00111{bottom:312.320000pt;}
.y4c_c00111{bottom:312.960000pt;}
.y22_c00111{bottom:313.600000pt;}
.y21_c00111{bottom:349.440000pt;}
.y4b_c00111{bottom:350.720000pt;}
.y4a_c00111{bottom:351.360000pt;}
.y20_c00111{bottom:352.000000pt;}
.y1f_c00111{bottom:387.200000pt;}
.y1d_c00111{bottom:389.120000pt;}
.y1e_c00111{bottom:389.760000pt;}
.y48_c00111{bottom:390.400000pt;}
.y49_c00111{bottom:391.680000pt;}
.y1c_c00111{bottom:424.960000pt;}
.y1b_c00111{bottom:427.520000pt;}
.y45_c00111{bottom:428.160000pt;}
.y47_c00111{bottom:429.440000pt;}
.y46_c00111{bottom:430.080000pt;}
.y19_c00111{bottom:463.360000pt;}
.y1a_c00111{bottom:464.640000pt;}
.y18_c00111{bottom:465.280000pt;}
.y43_c00111{bottom:465.920000pt;}
.y44_c00111{bottom:466.560000pt;}
.y41_c00111{bottom:467.200000pt;}
.y42_c00111{bottom:468.480000pt;}
.y17_c00111{bottom:502.400000pt;}
.y16_c00111{bottom:503.680000pt;}
.y3f_c00111{bottom:504.960000pt;}
.y40_c00111{bottom:506.880000pt;}
.y15_c00111{bottom:540.160000pt;}
.y14_c00111{bottom:541.440000pt;}
.y3d_c00111{bottom:542.720000pt;}
.y3c_c00111{bottom:543.360000pt;}
.y3e_c00111{bottom:545.280000pt;}
.y3a_c00111{bottom:581.760000pt;}
.y3b_c00111{bottom:583.680000pt;}
.y13_c00111{bottom:619.520000pt;}
.y12_c00111{bottom:663.680000pt;}
.y11_c00111{bottom:666.240000pt;}
.y38_c00111{bottom:667.520000pt;}
.y37_c00111{bottom:668.160000pt;}
.y39_c00111{bottom:669.440000pt;}
.y10_c00111{bottom:701.440000pt;}
.yf_c00111{bottom:703.360000pt;}
.y35_c00111{bottom:706.560000pt;}
.y36_c00111{bottom:708.480000pt;}
.ye_c00111{bottom:739.840000pt;}
.yd_c00111{bottom:741.120000pt;}
.y33_c00111{bottom:744.960000pt;}
.y34_c00111{bottom:745.600000pt;}
.yc_c00111{bottom:778.240000pt;}
.yb_c00111{bottom:779.520000pt;}
.y31_c00111{bottom:782.720000pt;}
.y30_c00111{bottom:783.360000pt;}
.y32_c00111{bottom:785.280000pt;}
.y8_c00111{bottom:816.640000pt;}
.ya_c00111{bottom:817.920000pt;}
.y7_c00111{bottom:818.560000pt;}
.y9_c00111{bottom:820.480000pt;}
.y2e_c00111{bottom:821.120000pt;}
.y2f_c00111{bottom:822.400000pt;}
.y4_c00111{bottom:854.400000pt;}
.y3_c00111{bottom:855.680000pt;}
.y6_c00111{bottom:856.320000pt;}
.y5_c00111{bottom:858.880000pt;}
.y2b_c00111{bottom:859.520000pt;}
.y2c_c00111{bottom:860.160000pt;}
.y2d_c00111{bottom:860.800000pt;}
.y2_c00111{bottom:892.160000pt;}
.y1_c00111{bottom:894.080000pt;}
.y29_c00111{bottom:898.560000pt;}
.y2a_c00111{bottom:899.200000pt;}
.y28_c00111{bottom:962.560000pt;}
.h10_c00111{height:23.037500pt;}
.h11_c00111{height:29.948750pt;}
.he_c00111{height:34.556250pt;}
.hf_c00111{height:36.860000pt;}
.hc_c00111{height:39.163750pt;}
.h8_c00111{height:41.467500pt;}
.h6_c00111{height:43.771250pt;}
.h2_c00111{height:46.075000pt;}
.h4_c00111{height:48.378750pt;}
.hd_c00111{height:50.682500pt;}
.hb_c00111{height:52.986250pt;}
.ha_c00111{height:55.290000pt;}
.h9_c00111{height:57.593750pt;}
.h7_c00111{height:59.897500pt;}
.h5_c00111{height:62.201250pt;}
.h3_c00111{height:64.505000pt;}
.h1_c00111{height:1017.333333pt;}
.h0_c00111{height:1017.600000pt;}
.w1_c00111{width:712.000000pt;}
.w0_c00111{width:712.320000pt;}
.x0_c00111{left:0.000000pt;}
.x1_c00111{left:71.040000pt;}
.xb_c00111{left:72.320000pt;}
.x26_c00111{left:73.600000pt;}
.x2c_c00111{left:74.880000pt;}
.x8_c00111{left:118.400000pt;}
.x2_c00111{left:126.720000pt;}
.x3_c00111{left:128.000000pt;}
.xf_c00111{left:129.920000pt;}
.xa_c00111{left:138.240000pt;}
.x2d_c00111{left:140.160000pt;}
.x32_c00111{left:177.920000pt;}
.x9_c00111{left:193.920000pt;}
.xe_c00111{left:195.840000pt;}
.xd_c00111{left:204.800000pt;}
.x4_c00111{left:213.120000pt;}
.x27_c00111{left:215.680000pt;}
.xc_c00111{left:224.000000pt;}
.x6_c00111{left:232.320000pt;}
.x2b_c00111{left:234.880000pt;}
.x2e_c00111{left:254.720000pt;}
.x5_c00111{left:270.080000pt;}
.x10_c00111{left:273.280000pt;}
.x7_c00111{left:289.920000pt;}
.x33_c00111{left:303.360000pt;}
.x2f_c00111{left:312.960000pt;}
.x28_c00111{left:320.640000pt;}
.x30_c00111{left:340.480000pt;}
.x34_c00111{left:351.360000pt;}
.x29_c00111{left:369.280000pt;}
.x11_c00111{left:397.440000pt;}
.x31_c00111{left:427.520000pt;}
.x2a_c00111{left:465.920000pt;}
.x13_c00111{left:501.120000pt;}
.x16_c00111{left:503.040000pt;}
.x22_c00111{left:504.320000pt;}
.x19_c00111{left:531.840000pt;}
.x23_c00111{left:533.760000pt;}
.x17_c00111{left:551.040000pt;}
.x1a_c00111{left:552.320000pt;}
.x14_c00111{left:560.000000pt;}
.x1d_c00111{left:561.280000pt;}
.x36_c00111{left:562.560000pt;}
.x24_c00111{left:574.080000pt;}
.x1e_c00111{left:581.120000pt;}
.x20_c00111{left:582.400000pt;}
.x37_c00111{left:583.680000pt;}
.x12_c00111{left:608.000000pt;}
.x18_c00111{left:609.920000pt;}
.x21_c00111{left:611.200000pt;}
.x35_c00111{left:612.480000pt;}
.x1f_c00111{left:640.640000pt;}
.x15_c00111{left:647.680000pt;}
.x1b_c00111{left:649.600000pt;}
.x25_c00111{left:650.880000pt;}
.x1c_c00111{left:667.520000pt;}
.x38_c00111{left:670.080000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3c4c37f2cb3deb0bf6902c8d.woff2')format("woff");}.ff1_c00112{font-family:ff1_c00112;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m39_c00112{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.m17_c00112{transform:matrix(0.236375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236375,0.000000,0.000000,0.250000,0,0);}
.m36_c00112{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m28_c00112{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);}
.m34_c00112{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m24_c00112{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m21_c00112{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);}
.m2c_c00112{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m5_c00112{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m3_c00112{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m20_c00112{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);}
.m30_c00112{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);}
.m27_c00112{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mf_c00112{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m14_c00112{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1_c00112{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m45_c00112{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00112{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m29_c00112{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m12_c00112{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m8_c00112{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00112{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m19_c00112{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m7_c00112{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m2_c00112{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m4_c00112{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m10_c00112{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00112{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m38_c00112{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m6_c00112{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mc_c00112{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m0_c00112{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00112{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m9_c00112{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_c00112{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m33_c00112{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);}
.m2a_c00112{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m31_c00112{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m18_c00112{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m25_c00112{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m22_c00112{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);}
.m15_c00112{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00112{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_c00112{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m13_c00112{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);}
.m26_c00112{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00112{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);}
.m1f_c00112{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_c00112{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_c00112{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m16_c00112{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);}
.md_c00112{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_c00112{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m43_c00112{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00112{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00112{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m37_c00112{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);}
.m2b_c00112{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m41_c00112{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m40_c00112{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);}
.m11_c00112{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m35_c00112{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.me_c00112{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m44_c00112{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);}
.m32_c00112{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m42_c00112{transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);}
.mb_c00112{transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00112{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00112{transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);}
.ma_c00112{transform:matrix(1.792500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.792500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.792500,0.000000,0.000000,0.250000,0,0);}
.v0_c00112{vertical-align:0.000000px;}
.v2_c00112{vertical-align:2.880000px;}
.v1_c00112{vertical-align:8.640000px;}
.ls0_c00112{letter-spacing:0.000000px;}
.sc__c00112{text-shadow:none;}
.sc0_c00112{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00112{-webkit-text-stroke:0px transparent;}
.sc0_c00112{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00112{word-spacing:0.000000px;}
.ws1_c00112{word-spacing:7.886400px;}
.ws2_c00112{word-spacing:9.210378px;}
.ws3_c00112{word-spacing:9.212400px;}
.ws0_c00112{word-spacing:11.690400px;}
.fc0_c00112{color:transparent;}
.fsd_c00112{font-size:14.400000px;}
.fs6_c00112{font-size:17.280000px;}
.fs7_c00112{font-size:31.680000px;}
.fse_c00112{font-size:46.080000px;}
.fs5_c00112{font-size:48.960000px;}
.fsa_c00112{font-size:51.840000px;}
.fs3_c00112{font-size:54.720000px;}
.fs0_c00112{font-size:57.600000px;}
.fs1_c00112{font-size:60.480000px;}
.fs8_c00112{font-size:63.360000px;}
.fs2_c00112{font-size:66.240000px;}
.fs4_c00112{font-size:69.120000px;}
.fs9_c00112{font-size:72.000000px;}
.fsb_c00112{font-size:74.880000px;}
.fsc_c00112{font-size:77.760000px;}
.y0_c00112{bottom:0.000000px;}
.y7a_c00112{bottom:74.880000px;}
.y73_c00112{bottom:75.600000px;}
.y72_c00112{bottom:76.320000px;}
.y70_c00112{bottom:77.040000px;}
.y71_c00112{bottom:79.920000px;}
.y6f_c00112{bottom:80.640000px;}
.y6e_c00112{bottom:118.080000px;}
.y78_c00112{bottom:118.800000px;}
.y77_c00112{bottom:119.520000px;}
.y6c_c00112{bottom:120.240000px;}
.y79_c00112{bottom:120.960000px;}
.y6b_c00112{bottom:122.400000px;}
.y6d_c00112{bottom:123.120000px;}
.y6a_c00112{bottom:163.440000px;}
.y68_c00112{bottom:164.160000px;}
.y69_c00112{bottom:165.600000px;}
.y67_c00112{bottom:194.400000px;}
.y65_c00112{bottom:195.120000px;}
.y64_c00112{bottom:197.280000px;}
.y66_c00112{bottom:198.000000px;}
.y63_c00112{bottom:198.720000px;}
.y62_c00112{bottom:237.600000px;}
.y76_c00112{bottom:239.760000px;}
.y61_c00112{bottom:240.480000px;}
.y60_c00112{bottom:241.200000px;}
.y74_c00112{bottom:280.800000px;}
.y75_c00112{bottom:283.680000px;}
.y5f_c00112{bottom:284.400000px;}
.y5d_c00112{bottom:324.000000px;}
.y5c_c00112{bottom:324.720000px;}
.y5b_c00112{bottom:325.440000px;}
.y5e_c00112{bottom:326.160000px;}
.y57_c00112{bottom:365.760000px;}
.y58_c00112{bottom:367.200000px;}
.y5a_c00112{bottom:367.920000px;}
.y59_c00112{bottom:368.640000px;}
.y56_c00112{bottom:370.080000px;}
.y55_c00112{bottom:410.400000px;}
.y52_c00112{bottom:411.120000px;}
.y54_c00112{bottom:412.560000px;}
.y53_c00112{bottom:413.280000px;}
.y3c_c00112{bottom:452.160000px;}
.y50_c00112{bottom:453.600000px;}
.y3a_c00112{bottom:454.320000px;}
.y51_c00112{bottom:455.760000px;}
.y3b_c00112{bottom:459.360000px;}
.y39_c00112{bottom:495.360000px;}
.y35_c00112{bottom:496.800000px;}
.y38_c00112{bottom:497.520000px;}
.y4f_c00112{bottom:498.960000px;}
.y37_c00112{bottom:537.840000px;}
.y36_c00112{bottom:539.280000px;}
.y4d_c00112{bottom:540.000000px;}
.y34_c00112{bottom:540.720000px;}
.y4c_c00112{bottom:542.160000px;}
.y4e_c00112{bottom:542.880000px;}
.y33_c00112{bottom:583.200000px;}
.y4b_c00112{bottom:585.360000px;}
.y2f_c00112{bottom:624.960000px;}
.y30_c00112{bottom:625.680000px;}
.y32_c00112{bottom:626.400000px;}
.y31_c00112{bottom:627.120000px;}
.y4a_c00112{bottom:628.560000px;}
.y49_c00112{bottom:629.280000px;}
.y2c_c00112{bottom:666.000000px;}
.y2d_c00112{bottom:666.720000px;}
.y2b_c00112{bottom:668.160000px;}
.y2e_c00112{bottom:669.600000px;}
.y46_c00112{bottom:670.320000px;}
.y48_c00112{bottom:671.760000px;}
.y47_c00112{bottom:672.480000px;}
.y28_c00112{bottom:709.920000px;}
.y27_c00112{bottom:710.640000px;}
.yb_c00112{bottom:711.360000px;}
.ya_c00112{bottom:712.080000px;}
.y2a_c00112{bottom:712.800000px;}
.y29_c00112{bottom:713.520000px;}
.yc_c00112{bottom:714.240000px;}
.yd_c00112{bottom:715.680000px;}
.y26_c00112{bottom:752.400000px;}
.y25_c00112{bottom:753.840000px;}
.y9_c00112{bottom:755.280000px;}
.y8_c00112{bottom:756.000000px;}
.y24_c00112{bottom:794.880000px;}
.y23_c00112{bottom:797.040000px;}
.y4_c00112{bottom:798.480000px;}
.y5_c00112{bottom:799.920000px;}
.y6_c00112{bottom:800.640000px;}
.y7_c00112{bottom:802.080000px;}
.y1e_c00112{bottom:838.080000px;}
.y1c_c00112{bottom:838.800000px;}
.y1d_c00112{bottom:839.520000px;}
.y1f_c00112{bottom:840.960000px;}
.y1_c00112{bottom:841.680000px;}
.y2_c00112{bottom:842.400000px;}
.y3_c00112{bottom:843.120000px;}
.y19_c00112{bottom:879.840000px;}
.y18_c00112{bottom:881.280000px;}
.y1b_c00112{bottom:882.000000px;}
.y1a_c00112{bottom:883.440000px;}
.y22_c00112{bottom:884.160000px;}
.y44_c00112{bottom:885.600000px;}
.y45_c00112{bottom:888.480000px;}
.y17_c00112{bottom:923.760000px;}
.y16_c00112{bottom:924.480000px;}
.y21_c00112{bottom:928.800000px;}
.y43_c00112{bottom:930.960000px;}
.y15_c00112{bottom:966.240000px;}
.y14_c00112{bottom:967.680000px;}
.y20_c00112{bottom:971.280000px;}
.y41_c00112{bottom:972.000000px;}
.y42_c00112{bottom:974.160000px;}
.y40_c00112{bottom:974.880000px;}
.y10_c00112{bottom:1010.880000px;}
.yf_c00112{bottom:1011.600000px;}
.y12_c00112{bottom:1012.320000px;}
.y11_c00112{bottom:1013.760000px;}
.ye_c00112{bottom:1015.200000px;}
.y13_c00112{bottom:1015.920000px;}
.y3f_c00112{bottom:1016.640000px;}
.y3e_c00112{bottom:1017.360000px;}
.y3d_c00112{bottom:1098.720000px;}
.h10_c00112{height:12.958594px;}
.h9_c00112{height:15.550313px;}
.ha_c00112{height:28.508906px;}
.h11_c00112{height:41.467500px;}
.h8_c00112{height:44.059219px;}
.hd_c00112{height:46.650937px;}
.h6_c00112{height:49.242656px;}
.h2_c00112{height:51.834375px;}
.h4_c00112{height:54.426094px;}
.hb_c00112{height:57.017812px;}
.h12_c00112{height:57.306094px;}
.h5_c00112{height:59.609531px;}
.h7_c00112{height:62.201250px;}
.h3_c00112{height:63.066094px;}
.hc_c00112{height:64.792969px;}
.he_c00112{height:67.384687px;}
.hf_c00112{height:69.976406px;}
.h1_c00112{height:1151.250000px;}
.h0_c00112{height:1151.280000px;}
.w0_c00112{width:810.000000px;}
.x0_c00112{left:0.000000px;}
.x7_c00112{left:83.520000px;}
.xf_c00112{left:84.960000px;}
.x19_c00112{left:86.400000px;}
.x8_c00112{left:116.640000px;}
.x1a_c00112{left:138.240000px;}
.x9_c00112{left:148.320000px;}
.x2d_c00112{left:150.480000px;}
.x10_c00112{left:159.120000px;}
.x26_c00112{left:160.560000px;}
.x33_c00112{left:162.000000px;}
.x15_c00112{left:171.360000px;}
.x34_c00112{left:201.600000px;}
.x29_c00112{left:223.920000px;}
.xa_c00112{left:233.280000px;}
.x17_c00112{left:234.720000px;}
.x12_c00112{left:244.080000px;}
.x27_c00112{left:246.240000px;}
.x16_c00112{left:276.480000px;}
.x35_c00112{left:278.640000px;}
.x11_c00112{left:287.280000px;}
.x18_c00112{left:288.720000px;}
.xb_c00112{left:298.080000px;}
.x28_c00112{left:299.520000px;}
.x2c_c00112{left:300.960000px;}
.x13_c00112{left:308.880000px;}
.xc_c00112{left:352.080000px;}
.x31_c00112{left:354.240000px;}
.x14_c00112{left:363.600000px;}
.x2e_c00112{left:365.040000px;}
.x36_c00112{left:374.400000px;}
.x32_c00112{left:408.960000px;}
.x37_c00112{left:429.840000px;}
.x2f_c00112{left:440.640000px;}
.xd_c00112{left:449.280000px;}
.x30_c00112{left:495.360000px;}
.xe_c00112{left:504.000000px;}
.x1_c00112{left:570.240000px;}
.x2b_c00112{left:572.400000px;}
.x5_c00112{left:624.960000px;}
.x24_c00112{left:626.400000px;}
.x1e_c00112{left:635.760000px;}
.x21_c00112{left:637.200000px;}
.x20_c00112{left:656.640000px;}
.x2_c00112{left:658.080000px;}
.x38_c00112{left:660.240000px;}
.x1b_c00112{left:681.840000px;}
.x4_c00112{left:690.480000px;}
.x2a_c00112{left:691.920000px;}
.x22_c00112{left:702.000000px;}
.x1d_c00112{left:722.880000px;}
.x6_c00112{left:724.320000px;}
.x39_c00112{left:725.760000px;}
.x1c_c00112{left:732.240000px;}
.x3_c00112{left:733.680000px;}
.x23_c00112{left:736.560000px;}
.x1f_c00112{left:753.840000px;}
.x25_c00112{left:756.000000px;}
@media print{
.v0_c00112{vertical-align:0.000000pt;}
.v2_c00112{vertical-align:2.560000pt;}
.v1_c00112{vertical-align:7.680000pt;}
.ls0_c00112{letter-spacing:0.000000pt;}
.ws4_c00112{word-spacing:0.000000pt;}
.ws1_c00112{word-spacing:7.010133pt;}
.ws2_c00112{word-spacing:8.187003pt;}
.ws3_c00112{word-spacing:8.188800pt;}
.ws0_c00112{word-spacing:10.391467pt;}
.fsd_c00112{font-size:12.800000pt;}
.fs6_c00112{font-size:15.360000pt;}
.fs7_c00112{font-size:28.160000pt;}
.fse_c00112{font-size:40.960000pt;}
.fs5_c00112{font-size:43.520000pt;}
.fsa_c00112{font-size:46.080000pt;}
.fs3_c00112{font-size:48.640000pt;}
.fs0_c00112{font-size:51.200000pt;}
.fs1_c00112{font-size:53.760000pt;}
.fs8_c00112{font-size:56.320000pt;}
.fs2_c00112{font-size:58.880000pt;}
.fs4_c00112{font-size:61.440000pt;}
.fs9_c00112{font-size:64.000000pt;}
.fsb_c00112{font-size:66.560000pt;}
.fsc_c00112{font-size:69.120000pt;}
.y0_c00112{bottom:0.000000pt;}
.y7a_c00112{bottom:66.560000pt;}
.y73_c00112{bottom:67.200000pt;}
.y72_c00112{bottom:67.840000pt;}
.y70_c00112{bottom:68.480000pt;}
.y71_c00112{bottom:71.040000pt;}
.y6f_c00112{bottom:71.680000pt;}
.y6e_c00112{bottom:104.960000pt;}
.y78_c00112{bottom:105.600000pt;}
.y77_c00112{bottom:106.240000pt;}
.y6c_c00112{bottom:106.880000pt;}
.y79_c00112{bottom:107.520000pt;}
.y6b_c00112{bottom:108.800000pt;}
.y6d_c00112{bottom:109.440000pt;}
.y6a_c00112{bottom:145.280000pt;}
.y68_c00112{bottom:145.920000pt;}
.y69_c00112{bottom:147.200000pt;}
.y67_c00112{bottom:172.800000pt;}
.y65_c00112{bottom:173.440000pt;}
.y64_c00112{bottom:175.360000pt;}
.y66_c00112{bottom:176.000000pt;}
.y63_c00112{bottom:176.640000pt;}
.y62_c00112{bottom:211.200000pt;}
.y76_c00112{bottom:213.120000pt;}
.y61_c00112{bottom:213.760000pt;}
.y60_c00112{bottom:214.400000pt;}
.y74_c00112{bottom:249.600000pt;}
.y75_c00112{bottom:252.160000pt;}
.y5f_c00112{bottom:252.800000pt;}
.y5d_c00112{bottom:288.000000pt;}
.y5c_c00112{bottom:288.640000pt;}
.y5b_c00112{bottom:289.280000pt;}
.y5e_c00112{bottom:289.920000pt;}
.y57_c00112{bottom:325.120000pt;}
.y58_c00112{bottom:326.400000pt;}
.y5a_c00112{bottom:327.040000pt;}
.y59_c00112{bottom:327.680000pt;}
.y56_c00112{bottom:328.960000pt;}
.y55_c00112{bottom:364.800000pt;}
.y52_c00112{bottom:365.440000pt;}
.y54_c00112{bottom:366.720000pt;}
.y53_c00112{bottom:367.360000pt;}
.y3c_c00112{bottom:401.920000pt;}
.y50_c00112{bottom:403.200000pt;}
.y3a_c00112{bottom:403.840000pt;}
.y51_c00112{bottom:405.120000pt;}
.y3b_c00112{bottom:408.320000pt;}
.y39_c00112{bottom:440.320000pt;}
.y35_c00112{bottom:441.600000pt;}
.y38_c00112{bottom:442.240000pt;}
.y4f_c00112{bottom:443.520000pt;}
.y37_c00112{bottom:478.080000pt;}
.y36_c00112{bottom:479.360000pt;}
.y4d_c00112{bottom:480.000000pt;}
.y34_c00112{bottom:480.640000pt;}
.y4c_c00112{bottom:481.920000pt;}
.y4e_c00112{bottom:482.560000pt;}
.y33_c00112{bottom:518.400000pt;}
.y4b_c00112{bottom:520.320000pt;}
.y2f_c00112{bottom:555.520000pt;}
.y30_c00112{bottom:556.160000pt;}
.y32_c00112{bottom:556.800000pt;}
.y31_c00112{bottom:557.440000pt;}
.y4a_c00112{bottom:558.720000pt;}
.y49_c00112{bottom:559.360000pt;}
.y2c_c00112{bottom:592.000000pt;}
.y2d_c00112{bottom:592.640000pt;}
.y2b_c00112{bottom:593.920000pt;}
.y2e_c00112{bottom:595.200000pt;}
.y46_c00112{bottom:595.840000pt;}
.y48_c00112{bottom:597.120000pt;}
.y47_c00112{bottom:597.760000pt;}
.y28_c00112{bottom:631.040000pt;}
.y27_c00112{bottom:631.680000pt;}
.yb_c00112{bottom:632.320000pt;}
.ya_c00112{bottom:632.960000pt;}
.y2a_c00112{bottom:633.600000pt;}
.y29_c00112{bottom:634.240000pt;}
.yc_c00112{bottom:634.880000pt;}
.yd_c00112{bottom:636.160000pt;}
.y26_c00112{bottom:668.800000pt;}
.y25_c00112{bottom:670.080000pt;}
.y9_c00112{bottom:671.360000pt;}
.y8_c00112{bottom:672.000000pt;}
.y24_c00112{bottom:706.560000pt;}
.y23_c00112{bottom:708.480000pt;}
.y4_c00112{bottom:709.760000pt;}
.y5_c00112{bottom:711.040000pt;}
.y6_c00112{bottom:711.680000pt;}
.y7_c00112{bottom:712.960000pt;}
.y1e_c00112{bottom:744.960000pt;}
.y1c_c00112{bottom:745.600000pt;}
.y1d_c00112{bottom:746.240000pt;}
.y1f_c00112{bottom:747.520000pt;}
.y1_c00112{bottom:748.160000pt;}
.y2_c00112{bottom:748.800000pt;}
.y3_c00112{bottom:749.440000pt;}
.y19_c00112{bottom:782.080000pt;}
.y18_c00112{bottom:783.360000pt;}
.y1b_c00112{bottom:784.000000pt;}
.y1a_c00112{bottom:785.280000pt;}
.y22_c00112{bottom:785.920000pt;}
.y44_c00112{bottom:787.200000pt;}
.y45_c00112{bottom:789.760000pt;}
.y17_c00112{bottom:821.120000pt;}
.y16_c00112{bottom:821.760000pt;}
.y21_c00112{bottom:825.600000pt;}
.y43_c00112{bottom:827.520000pt;}
.y15_c00112{bottom:858.880000pt;}
.y14_c00112{bottom:860.160000pt;}
.y20_c00112{bottom:863.360000pt;}
.y41_c00112{bottom:864.000000pt;}
.y42_c00112{bottom:865.920000pt;}
.y40_c00112{bottom:866.560000pt;}
.y10_c00112{bottom:898.560000pt;}
.yf_c00112{bottom:899.200000pt;}
.y12_c00112{bottom:899.840000pt;}
.y11_c00112{bottom:901.120000pt;}
.ye_c00112{bottom:902.400000pt;}
.y13_c00112{bottom:903.040000pt;}
.y3f_c00112{bottom:903.680000pt;}
.y3e_c00112{bottom:904.320000pt;}
.y3d_c00112{bottom:976.640000pt;}
.h10_c00112{height:11.518750pt;}
.h9_c00112{height:13.822500pt;}
.ha_c00112{height:25.341250pt;}
.h11_c00112{height:36.860000pt;}
.h8_c00112{height:39.163750pt;}
.hd_c00112{height:41.467500pt;}
.h6_c00112{height:43.771250pt;}
.h2_c00112{height:46.075000pt;}
.h4_c00112{height:48.378750pt;}
.hb_c00112{height:50.682500pt;}
.h12_c00112{height:50.938750pt;}
.h5_c00112{height:52.986250pt;}
.h7_c00112{height:55.290000pt;}
.h3_c00112{height:56.058750pt;}
.hc_c00112{height:57.593750pt;}
.he_c00112{height:59.897500pt;}
.hf_c00112{height:62.201250pt;}
.h1_c00112{height:1023.333333pt;}
.h0_c00112{height:1023.360000pt;}
.w0_c00112{width:720.000000pt;}
.x0_c00112{left:0.000000pt;}
.x7_c00112{left:74.240000pt;}
.xf_c00112{left:75.520000pt;}
.x19_c00112{left:76.800000pt;}
.x8_c00112{left:103.680000pt;}
.x1a_c00112{left:122.880000pt;}
.x9_c00112{left:131.840000pt;}
.x2d_c00112{left:133.760000pt;}
.x10_c00112{left:141.440000pt;}
.x26_c00112{left:142.720000pt;}
.x33_c00112{left:144.000000pt;}
.x15_c00112{left:152.320000pt;}
.x34_c00112{left:179.200000pt;}
.x29_c00112{left:199.040000pt;}
.xa_c00112{left:207.360000pt;}
.x17_c00112{left:208.640000pt;}
.x12_c00112{left:216.960000pt;}
.x27_c00112{left:218.880000pt;}
.x16_c00112{left:245.760000pt;}
.x35_c00112{left:247.680000pt;}
.x11_c00112{left:255.360000pt;}
.x18_c00112{left:256.640000pt;}
.xb_c00112{left:264.960000pt;}
.x28_c00112{left:266.240000pt;}
.x2c_c00112{left:267.520000pt;}
.x13_c00112{left:274.560000pt;}
.xc_c00112{left:312.960000pt;}
.x31_c00112{left:314.880000pt;}
.x14_c00112{left:323.200000pt;}
.x2e_c00112{left:324.480000pt;}
.x36_c00112{left:332.800000pt;}
.x32_c00112{left:363.520000pt;}
.x37_c00112{left:382.080000pt;}
.x2f_c00112{left:391.680000pt;}
.xd_c00112{left:399.360000pt;}
.x30_c00112{left:440.320000pt;}
.xe_c00112{left:448.000000pt;}
.x1_c00112{left:506.880000pt;}
.x2b_c00112{left:508.800000pt;}
.x5_c00112{left:555.520000pt;}
.x24_c00112{left:556.800000pt;}
.x1e_c00112{left:565.120000pt;}
.x21_c00112{left:566.400000pt;}
.x20_c00112{left:583.680000pt;}
.x2_c00112{left:584.960000pt;}
.x38_c00112{left:586.880000pt;}
.x1b_c00112{left:606.080000pt;}
.x4_c00112{left:613.760000pt;}
.x2a_c00112{left:615.040000pt;}
.x22_c00112{left:624.000000pt;}
.x1d_c00112{left:642.560000pt;}
.x6_c00112{left:643.840000pt;}
.x39_c00112{left:645.120000pt;}
.x1c_c00112{left:650.880000pt;}
.x3_c00112{left:652.160000pt;}
.x23_c00112{left:654.720000pt;}
.x1f_c00112{left:670.080000pt;}
.x25_c00112{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_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_3c773d2ce1eb2183080b1304.woff2')format("woff");}.ff1_c00113{font-family:ff1_c00113;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4f_c00113{transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);}
.m42_c00113{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m54_c00113{transform:matrix(0.196600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196600,0.000000,0.000000,0.250000,0,0);}
.m47_c00113{transform:matrix(0.207450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207450,0.000000,0.000000,0.250000,0,0);}
.m4a_c00113{transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);}
.m34_c00113{transform:matrix(0.215025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215025,0.000000,0.000000,0.250000,0,0);}
.m44_c00113{transform:matrix(0.224025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224025,0.000000,0.000000,0.250000,0,0);}
.ma_c00113{transform:matrix(0.225825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225825,0.000000,0.000000,0.250000,0,0);}
.m4b_c00113{transform:matrix(0.229075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229075,0.000000,0.000000,0.250000,0,0);}
.m49_c00113{transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);}
.m4e_c00113{transform:matrix(0.233550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233550,0.000000,0.000000,0.250000,0,0);}
.m45_c00113{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00113{transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);}
.m23_c00113{transform:matrix(0.245800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245800,0.000000,0.000000,0.250000,0,0);}
.m16_c00113{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00113{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m8_c00113{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);}
.m4d_c00113{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m13_c00113{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);}
.m2f_c00113{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m18_c00113{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1_c00113{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m48_c00113{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00113{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m7_c00113{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m53_c00113{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m29_c00113{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);}
.m40_c00113{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m39_c00113{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m38_c00113{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m5_c00113{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m19_c00113{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.me_c00113{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m11_c00113{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m27_c00113{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m33_c00113{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m10_c00113{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m6_c00113{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m46_c00113{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00113{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m15_c00113{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m20_c00113{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m2_c00113{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00113{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);}
.m52_c00113{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);}
.m3c_c00113{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);}
.m3d_c00113{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00113{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m9_c00113{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);}
.m2b_c00113{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);}
.m37_c00113{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00113{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);}
.m3f_c00113{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);}
.m30_c00113{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m17_c00113{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);}
.m26_c00113{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);}
.m21_c00113{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00113{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);}
.m3b_c00113{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);}
.m35_c00113{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);}
.m32_c00113{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);}
.m25_c00113{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);}
.m3_c00113{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00113{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m22_c00113{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.md_c00113{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m36_c00113{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.mb_c00113{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m31_c00113{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);}
.mc_c00113{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m51_c00113{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00113{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m28_c00113{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m43_c00113{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);}
.m41_c00113{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m4_c00113{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00113{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00113{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);}
.m14_c00113{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m24_c00113{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00113{transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);}
.m12_c00113{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m50_c00113{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.mf_c00113{transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00113{transform:matrix(0.830000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.830000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.830000,0.000000,0.000000,0.250000,0,0);}
.v1_c00113{vertical-align:-5.760000px;}
.v0_c00113{vertical-align:0.000000px;}
.ls0_c00113{letter-spacing:0.000000px;}
.sc__c00113{text-shadow:none;}
.sc0_c00113{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00113{-webkit-text-stroke:0px transparent;}
.sc0_c00113{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00113{word-spacing:0.000000px;}
.ws0_c00113{word-spacing:14.175968px;}
.ws1_c00113{word-spacing:43.886400px;}
.fc0_c00113{color:transparent;}
.fs9_c00113{font-size:25.920000px;}
.fsc_c00113{font-size:28.800000px;}
.fs7_c00113{font-size:31.680000px;}
.fs11_c00113{font-size:34.560000px;}
.fse_c00113{font-size:40.320000px;}
.fsd_c00113{font-size:43.200000px;}
.fs12_c00113{font-size:46.080000px;}
.fs8_c00113{font-size:48.960000px;}
.fs2_c00113{font-size:51.840000px;}
.fsf_c00113{font-size:54.720000px;}
.fs6_c00113{font-size:57.600000px;}
.fsb_c00113{font-size:60.480000px;}
.fs5_c00113{font-size:63.360000px;}
.fs3_c00113{font-size:66.240000px;}
.fs0_c00113{font-size:69.120000px;}
.fs10_c00113{font-size:72.000000px;}
.fs4_c00113{font-size:74.880000px;}
.fs1_c00113{font-size:77.760000px;}
.fsa_c00113{font-size:80.640000px;}
.fs14_c00113{font-size:103.680000px;}
.fs13_c00113{font-size:106.560000px;}
.y0_c00113{bottom:0.000000px;}
.y74_c00113{bottom:70.560000px;}
.y73_c00113{bottom:71.280000px;}
.y40_c00113{bottom:72.720000px;}
.y3f_c00113{bottom:73.440000px;}
.y3e_c00113{bottom:74.880000px;}
.y3d_c00113{bottom:105.840000px;}
.y72_c00113{bottom:113.040000px;}
.y6e_c00113{bottom:113.760000px;}
.y3c_c00113{bottom:114.480000px;}
.y3a_c00113{bottom:115.200000px;}
.y3b_c00113{bottom:118.800000px;}
.y39_c00113{bottom:119.520000px;}
.y38_c00113{bottom:156.240000px;}
.y6f_c00113{bottom:156.960000px;}
.y6d_c00113{bottom:157.680000px;}
.y70_c00113{bottom:158.400000px;}
.y71_c00113{bottom:159.840000px;}
.y37_c00113{bottom:160.560000px;}
.y36_c00113{bottom:200.880000px;}
.y34_c00113{bottom:202.320000px;}
.y35_c00113{bottom:203.040000px;}
.y33_c00113{bottom:232.560000px;}
.y32_c00113{bottom:233.280000px;}
.y31_c00113{bottom:234.720000px;}
.y6c_c00113{bottom:276.480000px;}
.y2f_c00113{bottom:277.200000px;}
.y30_c00113{bottom:277.920000px;}
.y2e_c00113{bottom:278.640000px;}
.y2d_c00113{bottom:318.240000px;}
.y69_c00113{bottom:319.680000px;}
.y2c_c00113{bottom:320.400000px;}
.y6a_c00113{bottom:321.120000px;}
.y6b_c00113{bottom:321.840000px;}
.y29_c00113{bottom:361.440000px;}
.y68_c00113{bottom:362.160000px;}
.y28_c00113{bottom:362.880000px;}
.y2b_c00113{bottom:363.600000px;}
.y2a_c00113{bottom:364.320000px;}
.y67_c00113{bottom:404.640000px;}
.y25_c00113{bottom:405.360000px;}
.y23_c00113{bottom:406.080000px;}
.y24_c00113{bottom:406.800000px;}
.y27_c00113{bottom:407.520000px;}
.y26_c00113{bottom:408.240000px;}
.y65_c00113{bottom:448.560000px;}
.y21_c00113{bottom:449.280000px;}
.y66_c00113{bottom:450.000000px;}
.y22_c00113{bottom:450.720000px;}
.y64_c00113{bottom:491.760000px;}
.y62_c00113{bottom:535.680000px;}
.y63_c00113{bottom:537.120000px;}
.y5e_c00113{bottom:578.160000px;}
.y61_c00113{bottom:578.880000px;}
.y60_c00113{bottom:580.320000px;}
.y5f_c00113{bottom:581.040000px;}
.y1f_c00113{bottom:618.480000px;}
.y1c_c00113{bottom:619.200000px;}
.y1d_c00113{bottom:620.640000px;}
.y5b_c00113{bottom:621.360000px;}
.y1e_c00113{bottom:622.080000px;}
.y20_c00113{bottom:622.800000px;}
.y5d_c00113{bottom:623.520000px;}
.y5c_c00113{bottom:624.240000px;}
.y1b_c00113{bottom:662.400000px;}
.y19_c00113{bottom:663.840000px;}
.y58_c00113{bottom:664.560000px;}
.y1a_c00113{bottom:665.280000px;}
.y5a_c00113{bottom:666.000000px;}
.y59_c00113{bottom:667.440000px;}
.y16_c00113{bottom:703.440000px;}
.y18_c00113{bottom:704.160000px;}
.y14_c00113{bottom:704.880000px;}
.y17_c00113{bottom:707.040000px;}
.y55_c00113{bottom:707.760000px;}
.y57_c00113{bottom:708.480000px;}
.y15_c00113{bottom:709.200000px;}
.y56_c00113{bottom:709.920000px;}
.y52_c00113{bottom:750.960000px;}
.y54_c00113{bottom:751.680000px;}
.y53_c00113{bottom:753.120000px;}
.y50_c00113{bottom:794.160000px;}
.y4f_c00113{bottom:794.880000px;}
.y51_c00113{bottom:797.040000px;}
.y4c_c00113{bottom:836.640000px;}
.y4e_c00113{bottom:838.080000px;}
.y4d_c00113{bottom:839.520000px;}
.y10_c00113{bottom:875.520000px;}
.y12_c00113{bottom:876.240000px;}
.y13_c00113{bottom:877.680000px;}
.y4a_c00113{bottom:879.840000px;}
.y4b_c00113{bottom:880.560000px;}
.y11_c00113{bottom:881.280000px;}
.yb_c00113{bottom:918.000000px;}
.ya_c00113{bottom:918.720000px;}
.yf_c00113{bottom:920.880000px;}
.yd_c00113{bottom:921.600000px;}
.yc_c00113{bottom:923.040000px;}
.y48_c00113{bottom:923.760000px;}
.ye_c00113{bottom:924.480000px;}
.y49_c00113{bottom:925.200000px;}
.y8_c00113{bottom:961.200000px;}
.y7_c00113{bottom:961.920000px;}
.y9_c00113{bottom:962.640000px;}
.y45_c00113{bottom:965.520000px;}
.y47_c00113{bottom:966.960000px;}
.y46_c00113{bottom:967.680000px;}
.y2_c00113{bottom:1004.400000px;}
.y1_c00113{bottom:1005.840000px;}
.y6_c00113{bottom:1007.280000px;}
.y4_c00113{bottom:1008.000000px;}
.y3_c00113{bottom:1008.720000px;}
.y42_c00113{bottom:1010.160000px;}
.y5_c00113{bottom:1010.880000px;}
.y44_c00113{bottom:1012.320000px;}
.y43_c00113{bottom:1013.040000px;}
.y41_c00113{bottom:1083.600000px;}
.hb_c00113{height:23.325469px;}
.he_c00113{height:25.917187px;}
.h9_c00113{height:28.508906px;}
.h13_c00113{height:31.100625px;}
.h10_c00113{height:36.284062px;}
.hf_c00113{height:38.875781px;}
.h14_c00113{height:41.467500px;}
.ha_c00113{height:44.059219px;}
.h4_c00113{height:46.650937px;}
.h11_c00113{height:49.242656px;}
.h8_c00113{height:51.834375px;}
.hd_c00113{height:54.426094px;}
.h7_c00113{height:57.017812px;}
.h5_c00113{height:59.609531px;}
.h2_c00113{height:62.201250px;}
.h12_c00113{height:64.792969px;}
.h6_c00113{height:67.384687px;}
.h3_c00113{height:69.976406px;}
.hc_c00113{height:72.568125px;}
.h16_c00113{height:93.301875px;}
.h15_c00113{height:95.893594px;}
.h1_c00113{height:1149.000000px;}
.h0_c00113{height:1149.120000px;}
.w1_c00113{width:807.000000px;}
.w0_c00113{width:807.120000px;}
.x0_c00113{left:0.000000px;}
.x7_c00113{left:80.640000px;}
.x1_c00113{left:82.080000px;}
.x21_c00113{left:83.520000px;}
.x2a_c00113{left:84.960000px;}
.x19_c00113{left:114.480000px;}
.xe_c00113{left:123.120000px;}
.xa_c00113{left:132.480000px;}
.xf_c00113{left:144.720000px;}
.x1a_c00113{left:146.160000px;}
.xb_c00113{left:154.080000px;}
.x2_c00113{left:155.520000px;}
.x17_c00113{left:156.960000px;}
.x2b_c00113{left:158.400000px;}
.x1b_c00113{left:199.440000px;}
.x13_c00113{left:203.040000px;}
.x3_c00113{left:228.960000px;}
.x14_c00113{left:230.400000px;}
.x27_c00113{left:232.560000px;}
.x10_c00113{left:240.480000px;}
.x18_c00113{left:241.920000px;}
.x26_c00113{left:243.360000px;}
.x25_c00113{left:252.720000px;}
.x4_c00113{left:282.960000px;}
.x1c_c00113{left:285.120000px;}
.x28_c00113{left:286.560000px;}
.x11_c00113{left:293.760000px;}
.x15_c00113{left:295.200000px;}
.x22_c00113{left:296.640000px;}
.x16_c00113{left:326.160000px;}
.x8_c00113{left:327.600000px;}
.x9_c00113{left:337.680000px;}
.x1d_c00113{left:339.120000px;}
.x1f_c00113{left:349.920000px;}
.x23_c00113{left:351.360000px;}
.x5_c00113{left:379.440000px;}
.x20_c00113{left:393.840000px;}
.xc_c00113{left:412.560000px;}
.x29_c00113{left:427.680000px;}
.x6_c00113{left:434.880000px;}
.x12_c00113{left:436.320000px;}
.xd_c00113{left:467.280000px;}
.x24_c00113{left:480.240000px;}
.x1e_c00113{left:491.040000px;}
.x2d_c00113{left:565.920000px;}
.x36_c00113{left:567.360000px;}
.x41_c00113{left:568.800000px;}
.x38_c00113{left:621.360000px;}
.x34_c00113{left:631.440000px;}
.x39_c00113{left:632.880000px;}
.x3a_c00113{left:645.840000px;}
.x2e_c00113{left:653.040000px;}
.x37_c00113{left:654.480000px;}
.x42_c00113{left:656.640000px;}
.x2f_c00113{left:685.440000px;}
.x32_c00113{left:686.880000px;}
.x3e_c00113{left:689.040000px;}
.x2c_c00113{left:693.360000px;}
.x33_c00113{left:696.960000px;}
.x3d_c00113{left:698.400000px;}
.x40_c00113{left:699.840000px;}
.x3c_c00113{left:720.720000px;}
.x43_c00113{left:722.160000px;}
.x30_c00113{left:728.640000px;}
.x35_c00113{left:730.080000px;}
.x3b_c00113{left:731.520000px;}
.x31_c00113{left:749.520000px;}
.x3f_c00113{left:751.680000px;}
@media print{
.v1_c00113{vertical-align:-5.120000pt;}
.v0_c00113{vertical-align:0.000000pt;}
.ls0_c00113{letter-spacing:0.000000pt;}
.ws2_c00113{word-spacing:0.000000pt;}
.ws0_c00113{word-spacing:12.600860pt;}
.ws1_c00113{word-spacing:39.010133pt;}
.fs9_c00113{font-size:23.040000pt;}
.fsc_c00113{font-size:25.600000pt;}
.fs7_c00113{font-size:28.160000pt;}
.fs11_c00113{font-size:30.720000pt;}
.fse_c00113{font-size:35.840000pt;}
.fsd_c00113{font-size:38.400000pt;}
.fs12_c00113{font-size:40.960000pt;}
.fs8_c00113{font-size:43.520000pt;}
.fs2_c00113{font-size:46.080000pt;}
.fsf_c00113{font-size:48.640000pt;}
.fs6_c00113{font-size:51.200000pt;}
.fsb_c00113{font-size:53.760000pt;}
.fs5_c00113{font-size:56.320000pt;}
.fs3_c00113{font-size:58.880000pt;}
.fs0_c00113{font-size:61.440000pt;}
.fs10_c00113{font-size:64.000000pt;}
.fs4_c00113{font-size:66.560000pt;}
.fs1_c00113{font-size:69.120000pt;}
.fsa_c00113{font-size:71.680000pt;}
.fs14_c00113{font-size:92.160000pt;}
.fs13_c00113{font-size:94.720000pt;}
.y0_c00113{bottom:0.000000pt;}
.y74_c00113{bottom:62.720000pt;}
.y73_c00113{bottom:63.360000pt;}
.y40_c00113{bottom:64.640000pt;}
.y3f_c00113{bottom:65.280000pt;}
.y3e_c00113{bottom:66.560000pt;}
.y3d_c00113{bottom:94.080000pt;}
.y72_c00113{bottom:100.480000pt;}
.y6e_c00113{bottom:101.120000pt;}
.y3c_c00113{bottom:101.760000pt;}
.y3a_c00113{bottom:102.400000pt;}
.y3b_c00113{bottom:105.600000pt;}
.y39_c00113{bottom:106.240000pt;}
.y38_c00113{bottom:138.880000pt;}
.y6f_c00113{bottom:139.520000pt;}
.y6d_c00113{bottom:140.160000pt;}
.y70_c00113{bottom:140.800000pt;}
.y71_c00113{bottom:142.080000pt;}
.y37_c00113{bottom:142.720000pt;}
.y36_c00113{bottom:178.560000pt;}
.y34_c00113{bottom:179.840000pt;}
.y35_c00113{bottom:180.480000pt;}
.y33_c00113{bottom:206.720000pt;}
.y32_c00113{bottom:207.360000pt;}
.y31_c00113{bottom:208.640000pt;}
.y6c_c00113{bottom:245.760000pt;}
.y2f_c00113{bottom:246.400000pt;}
.y30_c00113{bottom:247.040000pt;}
.y2e_c00113{bottom:247.680000pt;}
.y2d_c00113{bottom:282.880000pt;}
.y69_c00113{bottom:284.160000pt;}
.y2c_c00113{bottom:284.800000pt;}
.y6a_c00113{bottom:285.440000pt;}
.y6b_c00113{bottom:286.080000pt;}
.y29_c00113{bottom:321.280000pt;}
.y68_c00113{bottom:321.920000pt;}
.y28_c00113{bottom:322.560000pt;}
.y2b_c00113{bottom:323.200000pt;}
.y2a_c00113{bottom:323.840000pt;}
.y67_c00113{bottom:359.680000pt;}
.y25_c00113{bottom:360.320000pt;}
.y23_c00113{bottom:360.960000pt;}
.y24_c00113{bottom:361.600000pt;}
.y27_c00113{bottom:362.240000pt;}
.y26_c00113{bottom:362.880000pt;}
.y65_c00113{bottom:398.720000pt;}
.y21_c00113{bottom:399.360000pt;}
.y66_c00113{bottom:400.000000pt;}
.y22_c00113{bottom:400.640000pt;}
.y64_c00113{bottom:437.120000pt;}
.y62_c00113{bottom:476.160000pt;}
.y63_c00113{bottom:477.440000pt;}
.y5e_c00113{bottom:513.920000pt;}
.y61_c00113{bottom:514.560000pt;}
.y60_c00113{bottom:515.840000pt;}
.y5f_c00113{bottom:516.480000pt;}
.y1f_c00113{bottom:549.760000pt;}
.y1c_c00113{bottom:550.400000pt;}
.y1d_c00113{bottom:551.680000pt;}
.y5b_c00113{bottom:552.320000pt;}
.y1e_c00113{bottom:552.960000pt;}
.y20_c00113{bottom:553.600000pt;}
.y5d_c00113{bottom:554.240000pt;}
.y5c_c00113{bottom:554.880000pt;}
.y1b_c00113{bottom:588.800000pt;}
.y19_c00113{bottom:590.080000pt;}
.y58_c00113{bottom:590.720000pt;}
.y1a_c00113{bottom:591.360000pt;}
.y5a_c00113{bottom:592.000000pt;}
.y59_c00113{bottom:593.280000pt;}
.y16_c00113{bottom:625.280000pt;}
.y18_c00113{bottom:625.920000pt;}
.y14_c00113{bottom:626.560000pt;}
.y17_c00113{bottom:628.480000pt;}
.y55_c00113{bottom:629.120000pt;}
.y57_c00113{bottom:629.760000pt;}
.y15_c00113{bottom:630.400000pt;}
.y56_c00113{bottom:631.040000pt;}
.y52_c00113{bottom:667.520000pt;}
.y54_c00113{bottom:668.160000pt;}
.y53_c00113{bottom:669.440000pt;}
.y50_c00113{bottom:705.920000pt;}
.y4f_c00113{bottom:706.560000pt;}
.y51_c00113{bottom:708.480000pt;}
.y4c_c00113{bottom:743.680000pt;}
.y4e_c00113{bottom:744.960000pt;}
.y4d_c00113{bottom:746.240000pt;}
.y10_c00113{bottom:778.240000pt;}
.y12_c00113{bottom:778.880000pt;}
.y13_c00113{bottom:780.160000pt;}
.y4a_c00113{bottom:782.080000pt;}
.y4b_c00113{bottom:782.720000pt;}
.y11_c00113{bottom:783.360000pt;}
.yb_c00113{bottom:816.000000pt;}
.ya_c00113{bottom:816.640000pt;}
.yf_c00113{bottom:818.560000pt;}
.yd_c00113{bottom:819.200000pt;}
.yc_c00113{bottom:820.480000pt;}
.y48_c00113{bottom:821.120000pt;}
.ye_c00113{bottom:821.760000pt;}
.y49_c00113{bottom:822.400000pt;}
.y8_c00113{bottom:854.400000pt;}
.y7_c00113{bottom:855.040000pt;}
.y9_c00113{bottom:855.680000pt;}
.y45_c00113{bottom:858.240000pt;}
.y47_c00113{bottom:859.520000pt;}
.y46_c00113{bottom:860.160000pt;}
.y2_c00113{bottom:892.800000pt;}
.y1_c00113{bottom:894.080000pt;}
.y6_c00113{bottom:895.360000pt;}
.y4_c00113{bottom:896.000000pt;}
.y3_c00113{bottom:896.640000pt;}
.y42_c00113{bottom:897.920000pt;}
.y5_c00113{bottom:898.560000pt;}
.y44_c00113{bottom:899.840000pt;}
.y43_c00113{bottom:900.480000pt;}
.y41_c00113{bottom:963.200000pt;}
.hb_c00113{height:20.733750pt;}
.he_c00113{height:23.037500pt;}
.h9_c00113{height:25.341250pt;}
.h13_c00113{height:27.645000pt;}
.h10_c00113{height:32.252500pt;}
.hf_c00113{height:34.556250pt;}
.h14_c00113{height:36.860000pt;}
.ha_c00113{height:39.163750pt;}
.h4_c00113{height:41.467500pt;}
.h11_c00113{height:43.771250pt;}
.h8_c00113{height:46.075000pt;}
.hd_c00113{height:48.378750pt;}
.h7_c00113{height:50.682500pt;}
.h5_c00113{height:52.986250pt;}
.h2_c00113{height:55.290000pt;}
.h12_c00113{height:57.593750pt;}
.h6_c00113{height:59.897500pt;}
.h3_c00113{height:62.201250pt;}
.hc_c00113{height:64.505000pt;}
.h16_c00113{height:82.935000pt;}
.h15_c00113{height:85.238750pt;}
.h1_c00113{height:1021.333333pt;}
.h0_c00113{height:1021.440000pt;}
.w1_c00113{width:717.333333pt;}
.w0_c00113{width:717.440000pt;}
.x0_c00113{left:0.000000pt;}
.x7_c00113{left:71.680000pt;}
.x1_c00113{left:72.960000pt;}
.x21_c00113{left:74.240000pt;}
.x2a_c00113{left:75.520000pt;}
.x19_c00113{left:101.760000pt;}
.xe_c00113{left:109.440000pt;}
.xa_c00113{left:117.760000pt;}
.xf_c00113{left:128.640000pt;}
.x1a_c00113{left:129.920000pt;}
.xb_c00113{left:136.960000pt;}
.x2_c00113{left:138.240000pt;}
.x17_c00113{left:139.520000pt;}
.x2b_c00113{left:140.800000pt;}
.x1b_c00113{left:177.280000pt;}
.x13_c00113{left:180.480000pt;}
.x3_c00113{left:203.520000pt;}
.x14_c00113{left:204.800000pt;}
.x27_c00113{left:206.720000pt;}
.x10_c00113{left:213.760000pt;}
.x18_c00113{left:215.040000pt;}
.x26_c00113{left:216.320000pt;}
.x25_c00113{left:224.640000pt;}
.x4_c00113{left:251.520000pt;}
.x1c_c00113{left:253.440000pt;}
.x28_c00113{left:254.720000pt;}
.x11_c00113{left:261.120000pt;}
.x15_c00113{left:262.400000pt;}
.x22_c00113{left:263.680000pt;}
.x16_c00113{left:289.920000pt;}
.x8_c00113{left:291.200000pt;}
.x9_c00113{left:300.160000pt;}
.x1d_c00113{left:301.440000pt;}
.x1f_c00113{left:311.040000pt;}
.x23_c00113{left:312.320000pt;}
.x5_c00113{left:337.280000pt;}
.x20_c00113{left:350.080000pt;}
.xc_c00113{left:366.720000pt;}
.x29_c00113{left:380.160000pt;}
.x6_c00113{left:386.560000pt;}
.x12_c00113{left:387.840000pt;}
.xd_c00113{left:415.360000pt;}
.x24_c00113{left:426.880000pt;}
.x1e_c00113{left:436.480000pt;}
.x2d_c00113{left:503.040000pt;}
.x36_c00113{left:504.320000pt;}
.x41_c00113{left:505.600000pt;}
.x38_c00113{left:552.320000pt;}
.x34_c00113{left:561.280000pt;}
.x39_c00113{left:562.560000pt;}
.x3a_c00113{left:574.080000pt;}
.x2e_c00113{left:580.480000pt;}
.x37_c00113{left:581.760000pt;}
.x42_c00113{left:583.680000pt;}
.x2f_c00113{left:609.280000pt;}
.x32_c00113{left:610.560000pt;}
.x3e_c00113{left:612.480000pt;}
.x2c_c00113{left:616.320000pt;}
.x33_c00113{left:619.520000pt;}
.x3d_c00113{left:620.800000pt;}
.x40_c00113{left:622.080000pt;}
.x3c_c00113{left:640.640000pt;}
.x43_c00113{left:641.920000pt;}
.x30_c00113{left:647.680000pt;}
.x35_c00113{left:648.960000pt;}
.x3b_c00113{left:650.240000pt;}
.x31_c00113{left:666.240000pt;}
.x3f_c00113{left:668.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0e37a3ac924ce863c2ba03c6.woff2')format("woff");}.ff1_c00114{font-family:ff1_c00114;line-height:1.109863;font-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_c00114{transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);}
.m46_c00114{transform:matrix(0.187725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187725,0.000000,0.000000,0.250000,0,0);}
.m27_c00114{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00114{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.m40_c00114{transform:matrix(0.216375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216375,0.000000,0.000000,0.250000,0,0);}
.m3a_c00114{transform:matrix(0.239225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239225,0.000000,0.000000,0.250000,0,0);}
.m3e_c00114{transform:matrix(0.239250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239250,0.000000,0.000000,0.250000,0,0);}
.m32_c00114{transform:matrix(0.242225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242225,0.000000,0.000000,0.250000,0,0);}
.m47_c00114{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);}
.mb_c00114{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);}
.m2b_c00114{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.mf_c00114{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);}
.m41_c00114{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_c00114{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m23_c00114{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);}
.m2a_c00114{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m14_c00114{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);}
.m2d_c00114{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00114{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00114{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00114{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);}
.m2f_c00114{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m11_c00114{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m30_c00114{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.md_c00114{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m16_c00114{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m19_c00114{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m22_c00114{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m35_c00114{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m36_c00114{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m5_c00114{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00114{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m25_c00114{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m20_c00114{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1_c00114{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m26_c00114{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.me_c00114{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m9_c00114{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m18_c00114{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);}
.m28_c00114{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);}
.m3b_c00114{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);}
.m21_c00114{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);}
.m37_c00114{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.ma_c00114{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m10_c00114{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);}
.m2c_c00114{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m4_c00114{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.mc_c00114{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);}
.m7_c00114{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m3_c00114{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_c00114{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m38_c00114{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m48_c00114{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);}
.m8_c00114{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);}
.m42_c00114{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00114{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);}
.m17_c00114{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);}
.m43_c00114{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m15_c00114{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m45_c00114{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);}
.m12_c00114{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m2_c00114{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m49_c00114{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00114{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m29_c00114{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);}
.m44_c00114{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m6_c00114{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);}
.m2e_c00114{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00114{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m39_c00114{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);}
.m34_c00114{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m31_c00114{transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);}
.m24_c00114{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00114{transform:matrix(0.870000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.870000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.870000,0.000000,0.000000,0.250000,0,0);}
.m13_c00114{transform:matrix(1.610000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.610000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.610000,0.000000,0.000000,0.250000,0,0);}
.v5_c00114{vertical-align:-11.520000px;}
.v6_c00114{vertical-align:-8.640000px;}
.v3_c00114{vertical-align:-2.880000px;}
.v0_c00114{vertical-align:0.000000px;}
.v2_c00114{vertical-align:2.880000px;}
.v1_c00114{vertical-align:8.640000px;}
.v4_c00114{vertical-align:11.520000px;}
.ls0_c00114{letter-spacing:0.000000px;}
.sc__c00114{text-shadow:none;}
.sc0_c00114{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00114{-webkit-text-stroke:0px transparent;}
.sc0_c00114{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00114{word-spacing:-10.748160px;}
.ws0_c00114{word-spacing:-3.843360px;}
.ws7_c00114{word-spacing:0.000000px;}
.ws3_c00114{word-spacing:9.474000px;}
.ws6_c00114{word-spacing:72.906480px;}
.ws5_c00114{word-spacing:74.000400px;}
.ws2_c00114{word-spacing:195.416400px;}
.ws4_c00114{word-spacing:433.716000px;}
.fc0_c00114{color:transparent;}
.fsa_c00114{font-size:20.160000px;}
.fs9_c00114{font-size:25.920000px;}
.fsd_c00114{font-size:43.200000px;}
.fsc_c00114{font-size:46.080000px;}
.fs2_c00114{font-size:51.840000px;}
.fs5_c00114{font-size:54.720000px;}
.fs7_c00114{font-size:57.600000px;}
.fs3_c00114{font-size:60.480000px;}
.fs0_c00114{font-size:63.360000px;}
.fse_c00114{font-size:66.240000px;}
.fs1_c00114{font-size:69.120000px;}
.fs4_c00114{font-size:72.000000px;}
.fs6_c00114{font-size:74.880000px;}
.fs8_c00114{font-size:77.760000px;}
.fsb_c00114{font-size:80.640000px;}
.fsf_c00114{font-size:83.520000px;}
.y0_c00114{bottom:0.000000px;}
.y77_c00114{bottom:68.400000px;}
.y76_c00114{bottom:69.840000px;}
.y6f_c00114{bottom:70.560000px;}
.y75_c00114{bottom:71.280000px;}
.y6e_c00114{bottom:74.160000px;}
.y6d_c00114{bottom:112.320000px;}
.y6c_c00114{bottom:113.760000px;}
.y73_c00114{bottom:114.480000px;}
.y74_c00114{bottom:115.200000px;}
.y6b_c00114{bottom:116.640000px;}
.y6a_c00114{bottom:155.520000px;}
.y69_c00114{bottom:160.560000px;}
.y66_c00114{bottom:187.920000px;}
.y70_c00114{bottom:188.640000px;}
.y71_c00114{bottom:189.360000px;}
.y72_c00114{bottom:190.080000px;}
.y67_c00114{bottom:190.800000px;}
.y65_c00114{bottom:191.520000px;}
.y68_c00114{bottom:192.240000px;}
.y60_c00114{bottom:230.400000px;}
.y63_c00114{bottom:231.120000px;}
.y61_c00114{bottom:232.560000px;}
.y64_c00114{bottom:233.280000px;}
.y62_c00114{bottom:234.000000px;}
.y5f_c00114{bottom:234.720000px;}
.y5b_c00114{bottom:274.320000px;}
.y5d_c00114{bottom:275.760000px;}
.y5c_c00114{bottom:276.480000px;}
.y5a_c00114{bottom:277.200000px;}
.y5e_c00114{bottom:277.920000px;}
.y59_c00114{bottom:316.080000px;}
.y56_c00114{bottom:318.960000px;}
.y57_c00114{bottom:320.400000px;}
.y58_c00114{bottom:321.120000px;}
.y52_c00114{bottom:360.720000px;}
.y51_c00114{bottom:362.880000px;}
.y54_c00114{bottom:363.600000px;}
.y53_c00114{bottom:364.320000px;}
.y55_c00114{bottom:365.040000px;}
.y4e_c00114{bottom:403.200000px;}
.y50_c00114{bottom:403.920000px;}
.y4d_c00114{bottom:405.360000px;}
.y4f_c00114{bottom:406.080000px;}
.y48_c00114{bottom:446.400000px;}
.y49_c00114{bottom:447.120000px;}
.y47_c00114{bottom:447.840000px;}
.y4b_c00114{bottom:448.560000px;}
.y4c_c00114{bottom:450.000000px;}
.y4a_c00114{bottom:450.720000px;}
.y1e_c00114{bottom:488.880000px;}
.y22_c00114{bottom:489.600000px;}
.y1d_c00114{bottom:491.040000px;}
.y46_c00114{bottom:491.760000px;}
.y21_c00114{bottom:492.480000px;}
.y1f_c00114{bottom:493.200000px;}
.y20_c00114{bottom:493.920000px;}
.y1b_c00114{bottom:532.080000px;}
.y1c_c00114{bottom:532.800000px;}
.y1a_c00114{bottom:534.240000px;}
.y44_c00114{bottom:534.960000px;}
.y43_c00114{bottom:537.120000px;}
.y45_c00114{bottom:537.840000px;}
.y17_c00114{bottom:574.560000px;}
.y19_c00114{bottom:576.000000px;}
.y16_c00114{bottom:578.160000px;}
.y18_c00114{bottom:578.880000px;}
.y41_c00114{bottom:579.600000px;}
.y42_c00114{bottom:581.040000px;}
.y14_c00114{bottom:617.760000px;}
.y11_c00114{bottom:619.200000px;}
.y15_c00114{bottom:619.920000px;}
.y12_c00114{bottom:621.360000px;}
.y40_c00114{bottom:622.080000px;}
.y3f_c00114{bottom:622.800000px;}
.y13_c00114{bottom:624.240000px;}
.y10_c00114{bottom:660.960000px;}
.yf_c00114{bottom:662.400000px;}
.y3c_c00114{bottom:664.560000px;}
.y3d_c00114{bottom:665.280000px;}
.y3e_c00114{bottom:666.720000px;}
.yb_c00114{bottom:703.440000px;}
.yc_c00114{bottom:704.880000px;}
.ya_c00114{bottom:705.600000px;}
.y39_c00114{bottom:707.040000px;}
.yd_c00114{bottom:707.760000px;}
.ye_c00114{bottom:708.480000px;}
.y3b_c00114{bottom:709.920000px;}
.y3a_c00114{bottom:710.640000px;}
.y7_c00114{bottom:747.360000px;}
.y8_c00114{bottom:748.080000px;}
.y9_c00114{bottom:750.960000px;}
.y37_c00114{bottom:753.120000px;}
.y38_c00114{bottom:753.840000px;}
.y35_c00114{bottom:794.880000px;}
.y34_c00114{bottom:796.320000px;}
.y36_c00114{bottom:797.040000px;}
.y31_c00114{bottom:836.640000px;}
.y33_c00114{bottom:837.360000px;}
.y32_c00114{bottom:838.080000px;}
.y30_c00114{bottom:840.240000px;}
.y4_c00114{bottom:876.960000px;}
.y5_c00114{bottom:877.680000px;}
.y6_c00114{bottom:879.120000px;}
.y2e_c00114{bottom:882.720000px;}
.y2f_c00114{bottom:883.440000px;}
.y2b_c00114{bottom:923.760000px;}
.y2c_c00114{bottom:925.200000px;}
.y2d_c00114{bottom:925.920000px;}
.y29_c00114{bottom:968.400000px;}
.y2a_c00114{bottom:969.120000px;}
.y1_c00114{bottom:1005.840000px;}
.y2_c00114{bottom:1007.280000px;}
.y24_c00114{bottom:1009.440000px;}
.y3_c00114{bottom:1010.160000px;}
.y25_c00114{bottom:1011.600000px;}
.y26_c00114{bottom:1012.320000px;}
.y28_c00114{bottom:1013.040000px;}
.y27_c00114{bottom:1013.760000px;}
.y23_c00114{bottom:1076.400000px;}
.hc_c00114{height:18.142031px;}
.hb_c00114{height:23.325469px;}
.h10_c00114{height:38.875781px;}
.he_c00114{height:41.467500px;}
.h4_c00114{height:46.650937px;}
.h7_c00114{height:49.242656px;}
.h9_c00114{height:51.834375px;}
.h5_c00114{height:54.426094px;}
.h2_c00114{height:57.017812px;}
.h11_c00114{height:57.306094px;}
.h13_c00114{height:58.456406px;}
.h12_c00114{height:59.609531px;}
.h14_c00114{height:61.336406px;}
.h3_c00114{height:62.201250px;}
.h6_c00114{height:64.792969px;}
.h8_c00114{height:67.384687px;}
.ha_c00114{height:69.976406px;}
.hf_c00114{height:70.841250px;}
.hd_c00114{height:72.568125px;}
.h15_c00114{height:75.159844px;}
.h1_c00114{height:1151.250000px;}
.h0_c00114{height:1151.280000px;}
.w0_c00114{width:811.440000px;}
.w1_c00114{width:811.500000px;}
.x0_c00114{left:0.000000px;}
.x1_c00114{left:84.240000px;}
.x25_c00114{left:85.680000px;}
.x36_c00114{left:87.120000px;}
.xb_c00114{left:128.160000px;}
.xc_c00114{left:136.800000px;}
.x7_c00114{left:138.240000px;}
.x2_c00114{left:148.320000px;}
.x31_c00114{left:149.760000px;}
.xd_c00114{left:158.400000px;}
.x5_c00114{left:159.840000px;}
.x35_c00114{left:190.800000px;}
.x8_c00114{left:222.480000px;}
.xa_c00114{left:233.280000px;}
.x37_c00114{left:235.440000px;}
.x6_c00114{left:244.080000px;}
.x26_c00114{left:266.400000px;}
.x13_c00114{left:277.200000px;}
.x32_c00114{left:278.640000px;}
.x9_c00114{left:287.280000px;}
.x38_c00114{left:288.720000px;}
.x3_c00114{left:298.080000px;}
.x23_c00114{left:299.520000px;}
.x2c_c00114{left:309.600000px;}
.x14_c00114{left:311.040000px;}
.x15_c00114{left:321.120000px;}
.xe_c00114{left:331.200000px;}
.x2a_c00114{left:332.640000px;}
.x4_c00114{left:352.080000px;}
.x16_c00114{left:363.600000px;}
.x11_c00114{left:373.680000px;}
.xf_c00114{left:375.840000px;}
.x24_c00114{left:385.920000px;}
.x17_c00114{left:406.800000px;}
.x2d_c00114{left:408.240000px;}
.x2b_c00114{left:419.040000px;}
.x29_c00114{left:429.120000px;}
.x12_c00114{left:439.200000px;}
.x10_c00114{left:449.280000px;}
.x33_c00114{left:474.480000px;}
.x2e_c00114{left:494.640000px;}
.x27_c00114{left:504.000000px;}
.x34_c00114{left:516.240000px;}
.x19_c00114{left:570.240000px;}
.x22_c00114{left:603.360000px;}
.x20_c00114{left:624.960000px;}
.x3a_c00114{left:626.400000px;}
.x1a_c00114{left:657.360000px;}
.x2f_c00114{left:658.800000px;}
.x1b_c00114{left:689.760000px;}
.x1f_c00114{left:691.200000px;}
.x18_c00114{left:710.640000px;}
.x1e_c00114{left:722.880000px;}
.x30_c00114{left:724.320000px;}
.x1c_c00114{left:732.960000px;}
.x21_c00114{left:734.400000px;}
.x3b_c00114{left:736.560000px;}
.x1d_c00114{left:753.840000px;}
.x28_c00114{left:755.280000px;}
.x39_c00114{left:756.720000px;}
@media print{
.v5_c00114{vertical-align:-10.240000pt;}
.v6_c00114{vertical-align:-7.680000pt;}
.v3_c00114{vertical-align:-2.560000pt;}
.v0_c00114{vertical-align:0.000000pt;}
.v2_c00114{vertical-align:2.560000pt;}
.v1_c00114{vertical-align:7.680000pt;}
.v4_c00114{vertical-align:10.240000pt;}
.ls0_c00114{letter-spacing:0.000000pt;}
.ws1_c00114{word-spacing:-9.553920pt;}
.ws0_c00114{word-spacing:-3.416320pt;}
.ws7_c00114{word-spacing:0.000000pt;}
.ws3_c00114{word-spacing:8.421333pt;}
.ws6_c00114{word-spacing:64.805760pt;}
.ws5_c00114{word-spacing:65.778133pt;}
.ws2_c00114{word-spacing:173.703467pt;}
.ws4_c00114{word-spacing:385.525333pt;}
.fsa_c00114{font-size:17.920000pt;}
.fs9_c00114{font-size:23.040000pt;}
.fsd_c00114{font-size:38.400000pt;}
.fsc_c00114{font-size:40.960000pt;}
.fs2_c00114{font-size:46.080000pt;}
.fs5_c00114{font-size:48.640000pt;}
.fs7_c00114{font-size:51.200000pt;}
.fs3_c00114{font-size:53.760000pt;}
.fs0_c00114{font-size:56.320000pt;}
.fse_c00114{font-size:58.880000pt;}
.fs1_c00114{font-size:61.440000pt;}
.fs4_c00114{font-size:64.000000pt;}
.fs6_c00114{font-size:66.560000pt;}
.fs8_c00114{font-size:69.120000pt;}
.fsb_c00114{font-size:71.680000pt;}
.fsf_c00114{font-size:74.240000pt;}
.y0_c00114{bottom:0.000000pt;}
.y77_c00114{bottom:60.800000pt;}
.y76_c00114{bottom:62.080000pt;}
.y6f_c00114{bottom:62.720000pt;}
.y75_c00114{bottom:63.360000pt;}
.y6e_c00114{bottom:65.920000pt;}
.y6d_c00114{bottom:99.840000pt;}
.y6c_c00114{bottom:101.120000pt;}
.y73_c00114{bottom:101.760000pt;}
.y74_c00114{bottom:102.400000pt;}
.y6b_c00114{bottom:103.680000pt;}
.y6a_c00114{bottom:138.240000pt;}
.y69_c00114{bottom:142.720000pt;}
.y66_c00114{bottom:167.040000pt;}
.y70_c00114{bottom:167.680000pt;}
.y71_c00114{bottom:168.320000pt;}
.y72_c00114{bottom:168.960000pt;}
.y67_c00114{bottom:169.600000pt;}
.y65_c00114{bottom:170.240000pt;}
.y68_c00114{bottom:170.880000pt;}
.y60_c00114{bottom:204.800000pt;}
.y63_c00114{bottom:205.440000pt;}
.y61_c00114{bottom:206.720000pt;}
.y64_c00114{bottom:207.360000pt;}
.y62_c00114{bottom:208.000000pt;}
.y5f_c00114{bottom:208.640000pt;}
.y5b_c00114{bottom:243.840000pt;}
.y5d_c00114{bottom:245.120000pt;}
.y5c_c00114{bottom:245.760000pt;}
.y5a_c00114{bottom:246.400000pt;}
.y5e_c00114{bottom:247.040000pt;}
.y59_c00114{bottom:280.960000pt;}
.y56_c00114{bottom:283.520000pt;}
.y57_c00114{bottom:284.800000pt;}
.y58_c00114{bottom:285.440000pt;}
.y52_c00114{bottom:320.640000pt;}
.y51_c00114{bottom:322.560000pt;}
.y54_c00114{bottom:323.200000pt;}
.y53_c00114{bottom:323.840000pt;}
.y55_c00114{bottom:324.480000pt;}
.y4e_c00114{bottom:358.400000pt;}
.y50_c00114{bottom:359.040000pt;}
.y4d_c00114{bottom:360.320000pt;}
.y4f_c00114{bottom:360.960000pt;}
.y48_c00114{bottom:396.800000pt;}
.y49_c00114{bottom:397.440000pt;}
.y47_c00114{bottom:398.080000pt;}
.y4b_c00114{bottom:398.720000pt;}
.y4c_c00114{bottom:400.000000pt;}
.y4a_c00114{bottom:400.640000pt;}
.y1e_c00114{bottom:434.560000pt;}
.y22_c00114{bottom:435.200000pt;}
.y1d_c00114{bottom:436.480000pt;}
.y46_c00114{bottom:437.120000pt;}
.y21_c00114{bottom:437.760000pt;}
.y1f_c00114{bottom:438.400000pt;}
.y20_c00114{bottom:439.040000pt;}
.y1b_c00114{bottom:472.960000pt;}
.y1c_c00114{bottom:473.600000pt;}
.y1a_c00114{bottom:474.880000pt;}
.y44_c00114{bottom:475.520000pt;}
.y43_c00114{bottom:477.440000pt;}
.y45_c00114{bottom:478.080000pt;}
.y17_c00114{bottom:510.720000pt;}
.y19_c00114{bottom:512.000000pt;}
.y16_c00114{bottom:513.920000pt;}
.y18_c00114{bottom:514.560000pt;}
.y41_c00114{bottom:515.200000pt;}
.y42_c00114{bottom:516.480000pt;}
.y14_c00114{bottom:549.120000pt;}
.y11_c00114{bottom:550.400000pt;}
.y15_c00114{bottom:551.040000pt;}
.y12_c00114{bottom:552.320000pt;}
.y40_c00114{bottom:552.960000pt;}
.y3f_c00114{bottom:553.600000pt;}
.y13_c00114{bottom:554.880000pt;}
.y10_c00114{bottom:587.520000pt;}
.yf_c00114{bottom:588.800000pt;}
.y3c_c00114{bottom:590.720000pt;}
.y3d_c00114{bottom:591.360000pt;}
.y3e_c00114{bottom:592.640000pt;}
.yb_c00114{bottom:625.280000pt;}
.yc_c00114{bottom:626.560000pt;}
.ya_c00114{bottom:627.200000pt;}
.y39_c00114{bottom:628.480000pt;}
.yd_c00114{bottom:629.120000pt;}
.ye_c00114{bottom:629.760000pt;}
.y3b_c00114{bottom:631.040000pt;}
.y3a_c00114{bottom:631.680000pt;}
.y7_c00114{bottom:664.320000pt;}
.y8_c00114{bottom:664.960000pt;}
.y9_c00114{bottom:667.520000pt;}
.y37_c00114{bottom:669.440000pt;}
.y38_c00114{bottom:670.080000pt;}
.y35_c00114{bottom:706.560000pt;}
.y34_c00114{bottom:707.840000pt;}
.y36_c00114{bottom:708.480000pt;}
.y31_c00114{bottom:743.680000pt;}
.y33_c00114{bottom:744.320000pt;}
.y32_c00114{bottom:744.960000pt;}
.y30_c00114{bottom:746.880000pt;}
.y4_c00114{bottom:779.520000pt;}
.y5_c00114{bottom:780.160000pt;}
.y6_c00114{bottom:781.440000pt;}
.y2e_c00114{bottom:784.640000pt;}
.y2f_c00114{bottom:785.280000pt;}
.y2b_c00114{bottom:821.120000pt;}
.y2c_c00114{bottom:822.400000pt;}
.y2d_c00114{bottom:823.040000pt;}
.y29_c00114{bottom:860.800000pt;}
.y2a_c00114{bottom:861.440000pt;}
.y1_c00114{bottom:894.080000pt;}
.y2_c00114{bottom:895.360000pt;}
.y24_c00114{bottom:897.280000pt;}
.y3_c00114{bottom:897.920000pt;}
.y25_c00114{bottom:899.200000pt;}
.y26_c00114{bottom:899.840000pt;}
.y28_c00114{bottom:900.480000pt;}
.y27_c00114{bottom:901.120000pt;}
.y23_c00114{bottom:956.800000pt;}
.hc_c00114{height:16.126250pt;}
.hb_c00114{height:20.733750pt;}
.h10_c00114{height:34.556250pt;}
.he_c00114{height:36.860000pt;}
.h4_c00114{height:41.467500pt;}
.h7_c00114{height:43.771250pt;}
.h9_c00114{height:46.075000pt;}
.h5_c00114{height:48.378750pt;}
.h2_c00114{height:50.682500pt;}
.h11_c00114{height:50.938750pt;}
.h13_c00114{height:51.961250pt;}
.h12_c00114{height:52.986250pt;}
.h14_c00114{height:54.521250pt;}
.h3_c00114{height:55.290000pt;}
.h6_c00114{height:57.593750pt;}
.h8_c00114{height:59.897500pt;}
.ha_c00114{height:62.201250pt;}
.hf_c00114{height:62.970000pt;}
.hd_c00114{height:64.505000pt;}
.h15_c00114{height:66.808750pt;}
.h1_c00114{height:1023.333333pt;}
.h0_c00114{height:1023.360000pt;}
.w0_c00114{width:721.280000pt;}
.w1_c00114{width:721.333333pt;}
.x0_c00114{left:0.000000pt;}
.x1_c00114{left:74.880000pt;}
.x25_c00114{left:76.160000pt;}
.x36_c00114{left:77.440000pt;}
.xb_c00114{left:113.920000pt;}
.xc_c00114{left:121.600000pt;}
.x7_c00114{left:122.880000pt;}
.x2_c00114{left:131.840000pt;}
.x31_c00114{left:133.120000pt;}
.xd_c00114{left:140.800000pt;}
.x5_c00114{left:142.080000pt;}
.x35_c00114{left:169.600000pt;}
.x8_c00114{left:197.760000pt;}
.xa_c00114{left:207.360000pt;}
.x37_c00114{left:209.280000pt;}
.x6_c00114{left:216.960000pt;}
.x26_c00114{left:236.800000pt;}
.x13_c00114{left:246.400000pt;}
.x32_c00114{left:247.680000pt;}
.x9_c00114{left:255.360000pt;}
.x38_c00114{left:256.640000pt;}
.x3_c00114{left:264.960000pt;}
.x23_c00114{left:266.240000pt;}
.x2c_c00114{left:275.200000pt;}
.x14_c00114{left:276.480000pt;}
.x15_c00114{left:285.440000pt;}
.xe_c00114{left:294.400000pt;}
.x2a_c00114{left:295.680000pt;}
.x4_c00114{left:312.960000pt;}
.x16_c00114{left:323.200000pt;}
.x11_c00114{left:332.160000pt;}
.xf_c00114{left:334.080000pt;}
.x24_c00114{left:343.040000pt;}
.x17_c00114{left:361.600000pt;}
.x2d_c00114{left:362.880000pt;}
.x2b_c00114{left:372.480000pt;}
.x29_c00114{left:381.440000pt;}
.x12_c00114{left:390.400000pt;}
.x10_c00114{left:399.360000pt;}
.x33_c00114{left:421.760000pt;}
.x2e_c00114{left:439.680000pt;}
.x27_c00114{left:448.000000pt;}
.x34_c00114{left:458.880000pt;}
.x19_c00114{left:506.880000pt;}
.x22_c00114{left:536.320000pt;}
.x20_c00114{left:555.520000pt;}
.x3a_c00114{left:556.800000pt;}
.x1a_c00114{left:584.320000pt;}
.x2f_c00114{left:585.600000pt;}
.x1b_c00114{left:613.120000pt;}
.x1f_c00114{left:614.400000pt;}
.x18_c00114{left:631.680000pt;}
.x1e_c00114{left:642.560000pt;}
.x30_c00114{left:643.840000pt;}
.x1c_c00114{left:651.520000pt;}
.x21_c00114{left:652.800000pt;}
.x3b_c00114{left:654.720000pt;}
.x1d_c00114{left:670.080000pt;}
.x28_c00114{left:671.360000pt;}
.x39_c00114{left:672.640000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2c3366ceb33769d5c6f22c1c.woff2')format("woff");}.ff1_c00115{font-family:ff1_c00115;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4c_c00115{transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);}
.m19_c00115{transform:matrix(0.204700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204700,0.000000,0.000000,0.250000,0,0);}
.m4d_c00115{transform:matrix(0.211450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211450,0.000000,0.000000,0.250000,0,0);}
.m1a_c00115{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m30_c00115{transform:matrix(0.226475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226475,0.000000,0.000000,0.250000,0,0);}
.m2d_c00115{transform:matrix(0.231450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231450,0.000000,0.000000,0.250000,0,0);}
.m1e_c00115{transform:matrix(0.233800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233800,0.000000,0.000000,0.250000,0,0);}
.m49_c00115{transform:matrix(0.237325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237325,0.000000,0.000000,0.250000,0,0);}
.m10_c00115{transform:matrix(0.237575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237575,0.000000,0.000000,0.250000,0,0);}
.m2b_c00115{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m33_c00115{transform:matrix(0.243200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243200,0.000000,0.000000,0.250000,0,0);}
.m4b_c00115{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.me_c00115{transform:matrix(0.245450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245450,0.000000,0.000000,0.250000,0,0);}
.m14_c00115{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m22_c00115{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_c00115{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);}
.m37_c00115{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m13_c00115{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_c00115{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m44_c00115{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m23_c00115{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m41_c00115{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.ma_c00115{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m34_c00115{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m42_c00115{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m39_c00115{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mc_c00115{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00115{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m5_c00115{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m31_c00115{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00115{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m38_c00115{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00115{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m20_c00115{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m28_c00115{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m2_c00115{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m25_c00115{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00115{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00115{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m11_c00115{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m15_c00115{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m40_c00115{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00115{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00115{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00115{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m12_c00115{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);}
.m24_c00115{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m6_c00115{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00115{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m8_c00115{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m9_c00115{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_c00115{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m0_c00115{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);}
.m4_c00115{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);}
.mb_c00115{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m29_c00115{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);}
.m35_c00115{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m17_c00115{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m7_c00115{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);}
.m18_c00115{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);}
.m47_c00115{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);}
.m16_c00115{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);}
.m3f_c00115{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.mf_c00115{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);}
.m21_c00115{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m36_c00115{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);}
.m27_c00115{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00115{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);}
.m48_c00115{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00115{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m46_c00115{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m45_c00115{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m43_c00115{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00115{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m32_c00115{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.md_c00115{transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00115{transform:matrix(1.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.192500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00115{transform:matrix(1.822500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.822500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.822500,0.000000,0.000000,0.250000,0,0);}
.v0_c00115{vertical-align:0.000000px;}
.ls0_c00115{letter-spacing:0.000000px;}
.sc__c00115{text-shadow:none;}
.sc0_c00115{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00115{-webkit-text-stroke:0px transparent;}
.sc0_c00115{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00115{word-spacing:0.000000px;}
.fc0_c00115{color:transparent;}
.fsc_c00115{font-size:20.160000px;}
.fs9_c00115{font-size:31.680000px;}
.fsd_c00115{font-size:34.560000px;}
.fs10_c00115{font-size:43.200000px;}
.fs11_c00115{font-size:46.080000px;}
.fs12_c00115{font-size:48.960000px;}
.fs7_c00115{font-size:51.840000px;}
.fs6_c00115{font-size:54.720000px;}
.fsa_c00115{font-size:57.600000px;}
.fs4_c00115{font-size:60.480000px;}
.fs0_c00115{font-size:63.360000px;}
.fsb_c00115{font-size:66.240000px;}
.fs5_c00115{font-size:69.120000px;}
.fs2_c00115{font-size:72.000000px;}
.fs8_c00115{font-size:74.880000px;}
.fs3_c00115{font-size:77.760000px;}
.fs1_c00115{font-size:80.640000px;}
.fsf_c00115{font-size:86.400000px;}
.fse_c00115{font-size:103.680000px;}
.y0_c00115{bottom:0.000000px;}
.y69_c00115{bottom:93.600000px;}
.y39_c00115{bottom:94.320000px;}
.y3a_c00115{bottom:95.760000px;}
.y68_c00115{bottom:96.480000px;}
.y3b_c00115{bottom:97.920000px;}
.y3c_c00115{bottom:98.640000px;}
.y38_c00115{bottom:99.360000px;}
.y37_c00115{bottom:131.040000px;}
.y66_c00115{bottom:136.800000px;}
.y35_c00115{bottom:138.240000px;}
.y34_c00115{bottom:138.960000px;}
.y67_c00115{bottom:139.680000px;}
.y36_c00115{bottom:140.400000px;}
.y65_c00115{bottom:141.840000px;}
.y33_c00115{bottom:144.000000px;}
.y31_c00115{bottom:180.720000px;}
.y32_c00115{bottom:181.440000px;}
.y63_c00115{bottom:182.160000px;}
.y64_c00115{bottom:183.600000px;}
.y2e_c00115{bottom:185.040000px;}
.y2f_c00115{bottom:185.760000px;}
.y30_c00115{bottom:188.640000px;}
.y2d_c00115{bottom:277.920000px;}
.y62_c00115{bottom:279.360000px;}
.y2c_c00115{bottom:282.240000px;}
.y61_c00115{bottom:320.400000px;}
.y2b_c00115{bottom:321.120000px;}
.y60_c00115{bottom:321.840000px;}
.y5f_c00115{bottom:323.280000px;}
.y2a_c00115{bottom:324.000000px;}
.y29_c00115{bottom:324.720000px;}
.y28_c00115{bottom:364.320000px;}
.y5e_c00115{bottom:366.480000px;}
.y27_c00115{bottom:367.200000px;}
.y26_c00115{bottom:406.800000px;}
.y5c_c00115{bottom:408.240000px;}
.y5d_c00115{bottom:408.960000px;}
.y23_c00115{bottom:409.680000px;}
.y24_c00115{bottom:410.400000px;}
.y25_c00115{bottom:411.120000px;}
.y22_c00115{bottom:450.000000px;}
.y59_c00115{bottom:451.440000px;}
.y21_c00115{bottom:452.880000px;}
.y5b_c00115{bottom:454.320000px;}
.y5a_c00115{bottom:455.040000px;}
.y20_c00115{bottom:493.200000px;}
.y58_c00115{bottom:495.360000px;}
.y1f_c00115{bottom:496.080000px;}
.y1e_c00115{bottom:536.400000px;}
.y56_c00115{bottom:537.840000px;}
.y1d_c00115{bottom:538.560000px;}
.y57_c00115{bottom:539.280000px;}
.y55_c00115{bottom:540.720000px;}
.y1c_c00115{bottom:578.880000px;}
.y1b_c00115{bottom:581.040000px;}
.y54_c00115{bottom:581.760000px;}
.y18_c00115{bottom:622.080000px;}
.y1a_c00115{bottom:622.800000px;}
.y17_c00115{bottom:623.520000px;}
.y52_c00115{bottom:624.960000px;}
.y19_c00115{bottom:625.680000px;}
.y53_c00115{bottom:627.120000px;}
.y16_c00115{bottom:664.560000px;}
.y15_c00115{bottom:666.720000px;}
.y4f_c00115{bottom:667.440000px;}
.y50_c00115{bottom:668.160000px;}
.y51_c00115{bottom:670.320000px;}
.y13_c00115{bottom:707.040000px;}
.y14_c00115{bottom:708.480000px;}
.y12_c00115{bottom:709.200000px;}
.y4d_c00115{bottom:711.360000px;}
.y4c_c00115{bottom:712.080000px;}
.y4e_c00115{bottom:712.800000px;}
.y11_c00115{bottom:750.960000px;}
.yf_c00115{bottom:751.680000px;}
.y10_c00115{bottom:753.840000px;}
.y4a_c00115{bottom:754.560000px;}
.y4b_c00115{bottom:756.720000px;}
.ye_c00115{bottom:794.160000px;}
.yd_c00115{bottom:796.320000px;}
.y49_c00115{bottom:797.760000px;}
.yc_c00115{bottom:836.640000px;}
.yb_c00115{bottom:837.360000px;}
.y47_c00115{bottom:840.240000px;}
.y48_c00115{bottom:840.960000px;}
.y7_c00115{bottom:879.840000px;}
.y6_c00115{bottom:880.560000px;}
.ya_c00115{bottom:881.280000px;}
.y46_c00115{bottom:883.440000px;}
.y8_c00115{bottom:884.160000px;}
.y9_c00115{bottom:884.880000px;}
.y45_c00115{bottom:885.600000px;}
.y5_c00115{bottom:923.040000px;}
.y4_c00115{bottom:923.760000px;}
.y42_c00115{bottom:926.640000px;}
.y43_c00115{bottom:927.360000px;}
.y44_c00115{bottom:929.520000px;}
.y3_c00115{bottom:965.520000px;}
.y2_c00115{bottom:966.240000px;}
.y40_c00115{bottom:969.840000px;}
.y3f_c00115{bottom:970.560000px;}
.y41_c00115{bottom:972.000000px;}
.y1_c00115{bottom:1008.720000px;}
.y3d_c00115{bottom:1013.040000px;}
.y3e_c00115{bottom:1013.760000px;}
.he_c00115{height:18.142031px;}
.hb_c00115{height:28.508906px;}
.hf_c00115{height:31.100625px;}
.h12_c00115{height:38.875781px;}
.h13_c00115{height:41.467500px;}
.h14_c00115{height:44.059219px;}
.h9_c00115{height:46.650937px;}
.h8_c00115{height:49.242656px;}
.hc_c00115{height:51.834375px;}
.h6_c00115{height:54.426094px;}
.h2_c00115{height:57.017812px;}
.hd_c00115{height:59.609531px;}
.h7_c00115{height:62.201250px;}
.h4_c00115{height:64.792969px;}
.ha_c00115{height:67.384687px;}
.h5_c00115{height:69.976406px;}
.h3_c00115{height:72.568125px;}
.h11_c00115{height:77.751563px;}
.h10_c00115{height:93.301875px;}
.h0_c00115{height:1152.720000px;}
.h1_c00115{height:1152.750000px;}
.w0_c00115{width:811.440000px;}
.w1_c00115{width:811.500000px;}
.x0_c00115{left:0.000000px;}
.x1_c00115{left:84.240000px;}
.x3_c00115{left:85.680000px;}
.x9_c00115{left:117.360000px;}
.x13_c00115{left:128.160000px;}
.x14_c00115{left:136.080000px;}
.x2_c00115{left:146.880000px;}
.xe_c00115{left:149.040000px;}
.x5_c00115{left:158.400000px;}
.x4_c00115{left:159.840000px;}
.xf_c00115{left:181.440000px;}
.x10_c00115{left:223.200000px;}
.x12_c00115{left:244.080000px;}
.x15_c00115{left:254.880000px;}
.x16_c00115{left:256.320000px;}
.xc_c00115{left:266.400000px;}
.x11_c00115{left:277.920000px;}
.xa_c00115{left:288.000000px;}
.x6_c00115{left:299.520000px;}
.x17_c00115{left:364.320000px;}
.xd_c00115{left:372.240000px;}
.xb_c00115{left:373.680000px;}
.x7_c00115{left:384.480000px;}
.x18_c00115{left:417.600000px;}
.x8_c00115{left:428.400000px;}
.x19_c00115{left:570.240000px;}
.x1a_c00115{left:624.240000px;}
.x1c_c00115{left:635.040000px;}
.x1e_c00115{left:648.000000px;}
.x21_c00115{left:656.640000px;}
.x20_c00115{left:658.080000px;}
.x25_c00115{left:681.840000px;}
.x1d_c00115{left:691.200000px;}
.x24_c00115{left:699.840000px;}
.x26_c00115{left:702.000000px;}
.x22_c00115{left:723.600000px;}
.x1b_c00115{left:733.680000px;}
.x1f_c00115{left:753.840000px;}
.x23_c00115{left:755.280000px;}
@media print{
.v0_c00115{vertical-align:0.000000pt;}
.ls0_c00115{letter-spacing:0.000000pt;}
.ws0_c00115{word-spacing:0.000000pt;}
.fsc_c00115{font-size:17.920000pt;}
.fs9_c00115{font-size:28.160000pt;}
.fsd_c00115{font-size:30.720000pt;}
.fs10_c00115{font-size:38.400000pt;}
.fs11_c00115{font-size:40.960000pt;}
.fs12_c00115{font-size:43.520000pt;}
.fs7_c00115{font-size:46.080000pt;}
.fs6_c00115{font-size:48.640000pt;}
.fsa_c00115{font-size:51.200000pt;}
.fs4_c00115{font-size:53.760000pt;}
.fs0_c00115{font-size:56.320000pt;}
.fsb_c00115{font-size:58.880000pt;}
.fs5_c00115{font-size:61.440000pt;}
.fs2_c00115{font-size:64.000000pt;}
.fs8_c00115{font-size:66.560000pt;}
.fs3_c00115{font-size:69.120000pt;}
.fs1_c00115{font-size:71.680000pt;}
.fsf_c00115{font-size:76.800000pt;}
.fse_c00115{font-size:92.160000pt;}
.y0_c00115{bottom:0.000000pt;}
.y69_c00115{bottom:83.200000pt;}
.y39_c00115{bottom:83.840000pt;}
.y3a_c00115{bottom:85.120000pt;}
.y68_c00115{bottom:85.760000pt;}
.y3b_c00115{bottom:87.040000pt;}
.y3c_c00115{bottom:87.680000pt;}
.y38_c00115{bottom:88.320000pt;}
.y37_c00115{bottom:116.480000pt;}
.y66_c00115{bottom:121.600000pt;}
.y35_c00115{bottom:122.880000pt;}
.y34_c00115{bottom:123.520000pt;}
.y67_c00115{bottom:124.160000pt;}
.y36_c00115{bottom:124.800000pt;}
.y65_c00115{bottom:126.080000pt;}
.y33_c00115{bottom:128.000000pt;}
.y31_c00115{bottom:160.640000pt;}
.y32_c00115{bottom:161.280000pt;}
.y63_c00115{bottom:161.920000pt;}
.y64_c00115{bottom:163.200000pt;}
.y2e_c00115{bottom:164.480000pt;}
.y2f_c00115{bottom:165.120000pt;}
.y30_c00115{bottom:167.680000pt;}
.y2d_c00115{bottom:247.040000pt;}
.y62_c00115{bottom:248.320000pt;}
.y2c_c00115{bottom:250.880000pt;}
.y61_c00115{bottom:284.800000pt;}
.y2b_c00115{bottom:285.440000pt;}
.y60_c00115{bottom:286.080000pt;}
.y5f_c00115{bottom:287.360000pt;}
.y2a_c00115{bottom:288.000000pt;}
.y29_c00115{bottom:288.640000pt;}
.y28_c00115{bottom:323.840000pt;}
.y5e_c00115{bottom:325.760000pt;}
.y27_c00115{bottom:326.400000pt;}
.y26_c00115{bottom:361.600000pt;}
.y5c_c00115{bottom:362.880000pt;}
.y5d_c00115{bottom:363.520000pt;}
.y23_c00115{bottom:364.160000pt;}
.y24_c00115{bottom:364.800000pt;}
.y25_c00115{bottom:365.440000pt;}
.y22_c00115{bottom:400.000000pt;}
.y59_c00115{bottom:401.280000pt;}
.y21_c00115{bottom:402.560000pt;}
.y5b_c00115{bottom:403.840000pt;}
.y5a_c00115{bottom:404.480000pt;}
.y20_c00115{bottom:438.400000pt;}
.y58_c00115{bottom:440.320000pt;}
.y1f_c00115{bottom:440.960000pt;}
.y1e_c00115{bottom:476.800000pt;}
.y56_c00115{bottom:478.080000pt;}
.y1d_c00115{bottom:478.720000pt;}
.y57_c00115{bottom:479.360000pt;}
.y55_c00115{bottom:480.640000pt;}
.y1c_c00115{bottom:514.560000pt;}
.y1b_c00115{bottom:516.480000pt;}
.y54_c00115{bottom:517.120000pt;}
.y18_c00115{bottom:552.960000pt;}
.y1a_c00115{bottom:553.600000pt;}
.y17_c00115{bottom:554.240000pt;}
.y52_c00115{bottom:555.520000pt;}
.y19_c00115{bottom:556.160000pt;}
.y53_c00115{bottom:557.440000pt;}
.y16_c00115{bottom:590.720000pt;}
.y15_c00115{bottom:592.640000pt;}
.y4f_c00115{bottom:593.280000pt;}
.y50_c00115{bottom:593.920000pt;}
.y51_c00115{bottom:595.840000pt;}
.y13_c00115{bottom:628.480000pt;}
.y14_c00115{bottom:629.760000pt;}
.y12_c00115{bottom:630.400000pt;}
.y4d_c00115{bottom:632.320000pt;}
.y4c_c00115{bottom:632.960000pt;}
.y4e_c00115{bottom:633.600000pt;}
.y11_c00115{bottom:667.520000pt;}
.yf_c00115{bottom:668.160000pt;}
.y10_c00115{bottom:670.080000pt;}
.y4a_c00115{bottom:670.720000pt;}
.y4b_c00115{bottom:672.640000pt;}
.ye_c00115{bottom:705.920000pt;}
.yd_c00115{bottom:707.840000pt;}
.y49_c00115{bottom:709.120000pt;}
.yc_c00115{bottom:743.680000pt;}
.yb_c00115{bottom:744.320000pt;}
.y47_c00115{bottom:746.880000pt;}
.y48_c00115{bottom:747.520000pt;}
.y7_c00115{bottom:782.080000pt;}
.y6_c00115{bottom:782.720000pt;}
.ya_c00115{bottom:783.360000pt;}
.y46_c00115{bottom:785.280000pt;}
.y8_c00115{bottom:785.920000pt;}
.y9_c00115{bottom:786.560000pt;}
.y45_c00115{bottom:787.200000pt;}
.y5_c00115{bottom:820.480000pt;}
.y4_c00115{bottom:821.120000pt;}
.y42_c00115{bottom:823.680000pt;}
.y43_c00115{bottom:824.320000pt;}
.y44_c00115{bottom:826.240000pt;}
.y3_c00115{bottom:858.240000pt;}
.y2_c00115{bottom:858.880000pt;}
.y40_c00115{bottom:862.080000pt;}
.y3f_c00115{bottom:862.720000pt;}
.y41_c00115{bottom:864.000000pt;}
.y1_c00115{bottom:896.640000pt;}
.y3d_c00115{bottom:900.480000pt;}
.y3e_c00115{bottom:901.120000pt;}
.he_c00115{height:16.126250pt;}
.hb_c00115{height:25.341250pt;}
.hf_c00115{height:27.645000pt;}
.h12_c00115{height:34.556250pt;}
.h13_c00115{height:36.860000pt;}
.h14_c00115{height:39.163750pt;}
.h9_c00115{height:41.467500pt;}
.h8_c00115{height:43.771250pt;}
.hc_c00115{height:46.075000pt;}
.h6_c00115{height:48.378750pt;}
.h2_c00115{height:50.682500pt;}
.hd_c00115{height:52.986250pt;}
.h7_c00115{height:55.290000pt;}
.h4_c00115{height:57.593750pt;}
.ha_c00115{height:59.897500pt;}
.h5_c00115{height:62.201250pt;}
.h3_c00115{height:64.505000pt;}
.h11_c00115{height:69.112500pt;}
.h10_c00115{height:82.935000pt;}
.h0_c00115{height:1024.640000pt;}
.h1_c00115{height:1024.666667pt;}
.w0_c00115{width:721.280000pt;}
.w1_c00115{width:721.333333pt;}
.x0_c00115{left:0.000000pt;}
.x1_c00115{left:74.880000pt;}
.x3_c00115{left:76.160000pt;}
.x9_c00115{left:104.320000pt;}
.x13_c00115{left:113.920000pt;}
.x14_c00115{left:120.960000pt;}
.x2_c00115{left:130.560000pt;}
.xe_c00115{left:132.480000pt;}
.x5_c00115{left:140.800000pt;}
.x4_c00115{left:142.080000pt;}
.xf_c00115{left:161.280000pt;}
.x10_c00115{left:198.400000pt;}
.x12_c00115{left:216.960000pt;}
.x15_c00115{left:226.560000pt;}
.x16_c00115{left:227.840000pt;}
.xc_c00115{left:236.800000pt;}
.x11_c00115{left:247.040000pt;}
.xa_c00115{left:256.000000pt;}
.x6_c00115{left:266.240000pt;}
.x17_c00115{left:323.840000pt;}
.xd_c00115{left:330.880000pt;}
.xb_c00115{left:332.160000pt;}
.x7_c00115{left:341.760000pt;}
.x18_c00115{left:371.200000pt;}
.x8_c00115{left:380.800000pt;}
.x19_c00115{left:506.880000pt;}
.x1a_c00115{left:554.880000pt;}
.x1c_c00115{left:564.480000pt;}
.x1e_c00115{left:576.000000pt;}
.x21_c00115{left:583.680000pt;}
.x20_c00115{left:584.960000pt;}
.x25_c00115{left:606.080000pt;}
.x1d_c00115{left:614.400000pt;}
.x24_c00115{left:622.080000pt;}
.x26_c00115{left:624.000000pt;}
.x22_c00115{left:643.200000pt;}
.x1b_c00115{left:652.160000pt;}
.x1f_c00115{left:670.080000pt;}
.x23_c00115{left:671.360000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7913fb8f9155215e71dbf38e.woff2')format("woff");}.ff1_c00116{font-family:ff1_c00116;line-height:1.109863;font-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_c00116{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m42_c00116{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00116{transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);}
.m4b_c00116{transform:matrix(0.191475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191475,0.000000,0.000000,0.250000,0,0);}
.m48_c00116{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00116{transform:matrix(0.210175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210175,0.000000,0.000000,0.250000,0,0);}
.m32_c00116{transform:matrix(0.213800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213800,0.000000,0.000000,0.250000,0,0);}
.m4a_c00116{transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);}
.m39_c00116{transform:matrix(0.227375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227375,0.000000,0.000000,0.250000,0,0);}
.m49_c00116{transform:matrix(0.228200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228200,0.000000,0.000000,0.250000,0,0);}
.m21_c00116{transform:matrix(0.228775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228775,0.000000,0.000000,0.250000,0,0);}
.m43_c00116{transform:matrix(0.230150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230150,0.000000,0.000000,0.250000,0,0);}
.m11_c00116{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mf_c00116{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00116{transform:matrix(0.234800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234800,0.000000,0.000000,0.250000,0,0);}
.m37_c00116{transform:matrix(0.236200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236200,0.000000,0.000000,0.250000,0,0);}
.md_c00116{transform:matrix(0.237875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237875,0.000000,0.000000,0.250000,0,0);}
.m3b_c00116{transform:matrix(0.239875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239875,0.000000,0.000000,0.250000,0,0);}
.m25_c00116{transform:matrix(0.240975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240975,0.000000,0.000000,0.250000,0,0);}
.m40_c00116{transform:matrix(0.242800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242800,0.000000,0.000000,0.250000,0,0);}
.m3f_c00116{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m33_c00116{transform:matrix(0.245625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245625,0.000000,0.000000,0.250000,0,0);}
.m3a_c00116{transform:matrix(0.245800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245800,0.000000,0.000000,0.250000,0,0);}
.m9_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);}
.m3d_c00116{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1_c00116{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00116{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m4_c00116{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m26_c00116{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m47_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);}
.m35_c00116{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00116{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m18_c00116{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m10_c00116{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.ma_c00116{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);}
.m4d_c00116{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m22_c00116{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mc_c00116{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m2_c00116{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);}
.m3c_c00116{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m45_c00116{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m29_c00116{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m46_c00116{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00116{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m16_c00116{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m6_c00116{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00116{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00116{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m5_c00116{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m8_c00116{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00116{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m44_c00116{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);}
.m36_c00116{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);}
.m41_c00116{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m31_c00116{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_c00116{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m20_c00116{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m19_c00116{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m28_c00116{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m24_c00116{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_c00116{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m0_c00116{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);}
.m2c_c00116{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00116{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);}
.m3_c00116{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);}
.m12_c00116{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);}
.m23_c00116{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00116{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m27_c00116{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00116{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m14_c00116{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m34_c00116{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m30_c00116{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00116{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00116{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00116{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m17_c00116{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m13_c00116{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m15_c00116{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.v1_c00116{vertical-align:-8.640000px;}
.v2_c00116{vertical-align:-2.880000px;}
.v0_c00116{vertical-align:0.000000px;}
.ls2_c00116{letter-spacing:0.000000px;}
.ls1_c00116{letter-spacing:87.974400px;}
.ls0_c00116{letter-spacing:96.879840px;}
.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;}
}
.ws2_c00116{word-spacing:0.000000px;}
.ws0_c00116{word-spacing:47.870162px;}
.ws1_c00116{word-spacing:190.286400px;}
.fc0_c00116{color:transparent;}
.fs10_c00116{font-size:2.880000px;}
.fsb_c00116{font-size:20.160000px;}
.fs3_c00116{font-size:34.560000px;}
.fsd_c00116{font-size:40.320000px;}
.fsa_c00116{font-size:43.200000px;}
.fs5_c00116{font-size:51.840000px;}
.fs9_c00116{font-size:54.720000px;}
.fs0_c00116{font-size:57.600000px;}
.fs6_c00116{font-size:60.480000px;}
.fs2_c00116{font-size:63.360000px;}
.fs4_c00116{font-size:66.240000px;}
.fs8_c00116{font-size:69.120000px;}
.fsc_c00116{font-size:72.000000px;}
.fse_c00116{font-size:74.880000px;}
.fs1_c00116{font-size:77.760000px;}
.fs7_c00116{font-size:80.640000px;}
.fsf_c00116{font-size:83.520000px;}
.y0_c00116{bottom:0.000000px;}
.y66_c00116{bottom:80.640000px;}
.y65_c00116{bottom:81.360000px;}
.y44_c00116{bottom:82.080000px;}
.y43_c00116{bottom:82.800000px;}
.y42_c00116{bottom:86.400000px;}
.y63_c00116{bottom:124.560000px;}
.y41_c00116{bottom:125.280000px;}
.y62_c00116{bottom:126.000000px;}
.y64_c00116{bottom:126.720000px;}
.y40_c00116{bottom:128.880000px;}
.y3f_c00116{bottom:136.800000px;}
.y61_c00116{bottom:167.760000px;}
.y3e_c00116{bottom:168.480000px;}
.y3d_c00116{bottom:169.200000px;}
.y3c_c00116{bottom:171.360000px;}
.y60_c00116{bottom:210.240000px;}
.y39_c00116{bottom:210.960000px;}
.y3b_c00116{bottom:211.680000px;}
.y5f_c00116{bottom:212.400000px;}
.y38_c00116{bottom:213.120000px;}
.y37_c00116{bottom:213.840000px;}
.y3a_c00116{bottom:215.280000px;}
.y34_c00116{bottom:254.160000px;}
.y35_c00116{bottom:255.600000px;}
.y5e_c00116{bottom:256.320000px;}
.y36_c00116{bottom:257.040000px;}
.y33_c00116{bottom:257.760000px;}
.y31_c00116{bottom:297.360000px;}
.y32_c00116{bottom:298.080000px;}
.y5c_c00116{bottom:298.800000px;}
.y5d_c00116{bottom:299.520000px;}
.y30_c00116{bottom:300.960000px;}
.y2f_c00116{bottom:340.560000px;}
.y5b_c00116{bottom:341.280000px;}
.y2e_c00116{bottom:342.000000px;}
.y2c_c00116{bottom:343.440000px;}
.y2d_c00116{bottom:344.160000px;}
.y29_c00116{bottom:383.760000px;}
.y2a_c00116{bottom:384.480000px;}
.y5a_c00116{bottom:385.200000px;}
.y28_c00116{bottom:385.920000px;}
.y2b_c00116{bottom:387.360000px;}
.y27_c00116{bottom:430.560000px;}
.y25_c00116{bottom:458.640000px;}
.y59_c00116{bottom:459.360000px;}
.y26_c00116{bottom:460.080000px;}
.y24_c00116{bottom:461.520000px;}
.y20_c00116{bottom:503.280000px;}
.y21_c00116{bottom:504.000000px;}
.y23_c00116{bottom:504.720000px;}
.y22_c00116{bottom:505.440000px;}
.y58_c00116{bottom:546.480000px;}
.y56_c00116{bottom:547.200000px;}
.y57_c00116{bottom:547.920000px;}
.y1e_c00116{bottom:587.520000px;}
.y1f_c00116{bottom:588.240000px;}
.y1d_c00116{bottom:588.960000px;}
.y55_c00116{bottom:589.680000px;}
.y1c_c00116{bottom:630.000000px;}
.y1b_c00116{bottom:631.440000px;}
.y15_c00116{bottom:662.400000px;}
.y16_c00116{bottom:663.840000px;}
.y14_c00116{bottom:664.560000px;}
.y54_c00116{bottom:665.280000px;}
.y17_c00116{bottom:666.000000px;}
.y18_c00116{bottom:666.720000px;}
.y1a_c00116{bottom:667.440000px;}
.y19_c00116{bottom:670.320000px;}
.y12_c00116{bottom:704.880000px;}
.y13_c00116{bottom:705.600000px;}
.y11_c00116{bottom:708.480000px;}
.y10_c00116{bottom:748.800000px;}
.yf_c00116{bottom:750.240000px;}
.y53_c00116{bottom:751.680000px;}
.ye_c00116{bottom:792.000000px;}
.yd_c00116{bottom:793.440000px;}
.y51_c00116{bottom:794.160000px;}
.y52_c00116{bottom:794.880000px;}
.yb_c00116{bottom:835.200000px;}
.yc_c00116{bottom:837.360000px;}
.y4f_c00116{bottom:838.080000px;}
.y50_c00116{bottom:838.800000px;}
.ya_c00116{bottom:877.680000px;}
.y9_c00116{bottom:878.400000px;}
.y4e_c00116{bottom:880.560000px;}
.y4d_c00116{bottom:881.280000px;}
.y7_c00116{bottom:921.600000px;}
.y6_c00116{bottom:922.320000px;}
.y4b_c00116{bottom:923.760000px;}
.y4c_c00116{bottom:924.480000px;}
.y8_c00116{bottom:925.200000px;}
.y5_c00116{bottom:963.360000px;}
.y3_c00116{bottom:964.080000px;}
.y4_c00116{bottom:966.960000px;}
.y48_c00116{bottom:967.680000px;}
.y49_c00116{bottom:969.840000px;}
.y4a_c00116{bottom:970.560000px;}
.y2_c00116{bottom:1006.560000px;}
.y1_c00116{bottom:1007.280000px;}
.y46_c00116{bottom:1010.880000px;}
.y47_c00116{bottom:1012.320000px;}
.y45_c00116{bottom:1087.200000px;}
.h12_c00116{height:2.591719px;}
.hd_c00116{height:18.142031px;}
.h5_c00116{height:31.100625px;}
.hf_c00116{height:36.284062px;}
.hc_c00116{height:38.875781px;}
.h7_c00116{height:46.650937px;}
.hb_c00116{height:49.242656px;}
.h2_c00116{height:51.834375px;}
.h8_c00116{height:54.426094px;}
.h4_c00116{height:57.017812px;}
.h6_c00116{height:59.609531px;}
.ha_c00116{height:62.201250px;}
.he_c00116{height:64.792969px;}
.h10_c00116{height:67.384687px;}
.h3_c00116{height:69.976406px;}
.h9_c00116{height:72.568125px;}
.h11_c00116{height:75.159844px;}
.h1_c00116{height:1150.500000px;}
.h0_c00116{height:1150.560000px;}
.w1_c00116{width:809.250000px;}
.w0_c00116{width:809.280000px;}
.x0_c00116{left:0.000000px;}
.x1d_c00116{left:74.160000px;}
.x7_c00116{left:82.800000px;}
.x1_c00116{left:84.240000px;}
.x18_c00116{left:115.920000px;}
.x3_c00116{left:126.720000px;}
.xf_c00116{left:144.720000px;}
.x8_c00116{left:146.160000px;}
.x14_c00116{left:147.600000px;}
.x2_c00116{left:157.680000px;}
.x1c_c00116{left:192.240000px;}
.x10_c00116{left:200.160000px;}
.x19_c00116{left:231.840000px;}
.x6_c00116{left:243.360000px;}
.x4_c00116{left:252.720000px;}
.x11_c00116{left:274.320000px;}
.x1a_c00116{left:285.840000px;}
.x9_c00116{left:295.920000px;}
.x5_c00116{left:297.360000px;}
.x12_c00116{left:329.760000px;}
.xa_c00116{left:340.560000px;}
.x15_c00116{left:349.920000px;}
.xb_c00116{left:371.520000px;}
.xc_c00116{left:384.480000px;}
.x16_c00116{left:405.360000px;}
.x13_c00116{left:416.160000px;}
.x1b_c00116{left:426.240000px;}
.x17_c00116{left:448.560000px;}
.xd_c00116{left:459.360000px;}
.xe_c00116{left:514.080000px;}
.x24_c00116{left:567.360000px;}
.x1f_c00116{left:568.800000px;}
.x20_c00116{left:601.920000px;}
.x22_c00116{left:622.800000px;}
.x23_c00116{left:656.640000px;}
.x28_c00116{left:679.680000px;}
.x27_c00116{left:689.040000px;}
.x1e_c00116{left:699.120000px;}
.x26_c00116{left:730.800000px;}
.x21_c00116{left:732.240000px;}
.x25_c00116{left:733.680000px;}
.x29_c00116{left:753.120000px;}
@media print{
.v1_c00116{vertical-align:-7.680000pt;}
.v2_c00116{vertical-align:-2.560000pt;}
.v0_c00116{vertical-align:0.000000pt;}
.ls2_c00116{letter-spacing:0.000000pt;}
.ls1_c00116{letter-spacing:78.199467pt;}
.ls0_c00116{letter-spacing:86.115413pt;}
.ws2_c00116{word-spacing:0.000000pt;}
.ws0_c00116{word-spacing:42.551255pt;}
.ws1_c00116{word-spacing:169.143467pt;}
.fs10_c00116{font-size:2.560000pt;}
.fsb_c00116{font-size:17.920000pt;}
.fs3_c00116{font-size:30.720000pt;}
.fsd_c00116{font-size:35.840000pt;}
.fsa_c00116{font-size:38.400000pt;}
.fs5_c00116{font-size:46.080000pt;}
.fs9_c00116{font-size:48.640000pt;}
.fs0_c00116{font-size:51.200000pt;}
.fs6_c00116{font-size:53.760000pt;}
.fs2_c00116{font-size:56.320000pt;}
.fs4_c00116{font-size:58.880000pt;}
.fs8_c00116{font-size:61.440000pt;}
.fsc_c00116{font-size:64.000000pt;}
.fse_c00116{font-size:66.560000pt;}
.fs1_c00116{font-size:69.120000pt;}
.fs7_c00116{font-size:71.680000pt;}
.fsf_c00116{font-size:74.240000pt;}
.y0_c00116{bottom:0.000000pt;}
.y66_c00116{bottom:71.680000pt;}
.y65_c00116{bottom:72.320000pt;}
.y44_c00116{bottom:72.960000pt;}
.y43_c00116{bottom:73.600000pt;}
.y42_c00116{bottom:76.800000pt;}
.y63_c00116{bottom:110.720000pt;}
.y41_c00116{bottom:111.360000pt;}
.y62_c00116{bottom:112.000000pt;}
.y64_c00116{bottom:112.640000pt;}
.y40_c00116{bottom:114.560000pt;}
.y3f_c00116{bottom:121.600000pt;}
.y61_c00116{bottom:149.120000pt;}
.y3e_c00116{bottom:149.760000pt;}
.y3d_c00116{bottom:150.400000pt;}
.y3c_c00116{bottom:152.320000pt;}
.y60_c00116{bottom:186.880000pt;}
.y39_c00116{bottom:187.520000pt;}
.y3b_c00116{bottom:188.160000pt;}
.y5f_c00116{bottom:188.800000pt;}
.y38_c00116{bottom:189.440000pt;}
.y37_c00116{bottom:190.080000pt;}
.y3a_c00116{bottom:191.360000pt;}
.y34_c00116{bottom:225.920000pt;}
.y35_c00116{bottom:227.200000pt;}
.y5e_c00116{bottom:227.840000pt;}
.y36_c00116{bottom:228.480000pt;}
.y33_c00116{bottom:229.120000pt;}
.y31_c00116{bottom:264.320000pt;}
.y32_c00116{bottom:264.960000pt;}
.y5c_c00116{bottom:265.600000pt;}
.y5d_c00116{bottom:266.240000pt;}
.y30_c00116{bottom:267.520000pt;}
.y2f_c00116{bottom:302.720000pt;}
.y5b_c00116{bottom:303.360000pt;}
.y2e_c00116{bottom:304.000000pt;}
.y2c_c00116{bottom:305.280000pt;}
.y2d_c00116{bottom:305.920000pt;}
.y29_c00116{bottom:341.120000pt;}
.y2a_c00116{bottom:341.760000pt;}
.y5a_c00116{bottom:342.400000pt;}
.y28_c00116{bottom:343.040000pt;}
.y2b_c00116{bottom:344.320000pt;}
.y27_c00116{bottom:382.720000pt;}
.y25_c00116{bottom:407.680000pt;}
.y59_c00116{bottom:408.320000pt;}
.y26_c00116{bottom:408.960000pt;}
.y24_c00116{bottom:410.240000pt;}
.y20_c00116{bottom:447.360000pt;}
.y21_c00116{bottom:448.000000pt;}
.y23_c00116{bottom:448.640000pt;}
.y22_c00116{bottom:449.280000pt;}
.y58_c00116{bottom:485.760000pt;}
.y56_c00116{bottom:486.400000pt;}
.y57_c00116{bottom:487.040000pt;}
.y1e_c00116{bottom:522.240000pt;}
.y1f_c00116{bottom:522.880000pt;}
.y1d_c00116{bottom:523.520000pt;}
.y55_c00116{bottom:524.160000pt;}
.y1c_c00116{bottom:560.000000pt;}
.y1b_c00116{bottom:561.280000pt;}
.y15_c00116{bottom:588.800000pt;}
.y16_c00116{bottom:590.080000pt;}
.y14_c00116{bottom:590.720000pt;}
.y54_c00116{bottom:591.360000pt;}
.y17_c00116{bottom:592.000000pt;}
.y18_c00116{bottom:592.640000pt;}
.y1a_c00116{bottom:593.280000pt;}
.y19_c00116{bottom:595.840000pt;}
.y12_c00116{bottom:626.560000pt;}
.y13_c00116{bottom:627.200000pt;}
.y11_c00116{bottom:629.760000pt;}
.y10_c00116{bottom:665.600000pt;}
.yf_c00116{bottom:666.880000pt;}
.y53_c00116{bottom:668.160000pt;}
.ye_c00116{bottom:704.000000pt;}
.yd_c00116{bottom:705.280000pt;}
.y51_c00116{bottom:705.920000pt;}
.y52_c00116{bottom:706.560000pt;}
.yb_c00116{bottom:742.400000pt;}
.yc_c00116{bottom:744.320000pt;}
.y4f_c00116{bottom:744.960000pt;}
.y50_c00116{bottom:745.600000pt;}
.ya_c00116{bottom:780.160000pt;}
.y9_c00116{bottom:780.800000pt;}
.y4e_c00116{bottom:782.720000pt;}
.y4d_c00116{bottom:783.360000pt;}
.y7_c00116{bottom:819.200000pt;}
.y6_c00116{bottom:819.840000pt;}
.y4b_c00116{bottom:821.120000pt;}
.y4c_c00116{bottom:821.760000pt;}
.y8_c00116{bottom:822.400000pt;}
.y5_c00116{bottom:856.320000pt;}
.y3_c00116{bottom:856.960000pt;}
.y4_c00116{bottom:859.520000pt;}
.y48_c00116{bottom:860.160000pt;}
.y49_c00116{bottom:862.080000pt;}
.y4a_c00116{bottom:862.720000pt;}
.y2_c00116{bottom:894.720000pt;}
.y1_c00116{bottom:895.360000pt;}
.y46_c00116{bottom:898.560000pt;}
.y47_c00116{bottom:899.840000pt;}
.y45_c00116{bottom:966.400000pt;}
.h12_c00116{height:2.303750pt;}
.hd_c00116{height:16.126250pt;}
.h5_c00116{height:27.645000pt;}
.hf_c00116{height:32.252500pt;}
.hc_c00116{height:34.556250pt;}
.h7_c00116{height:41.467500pt;}
.hb_c00116{height:43.771250pt;}
.h2_c00116{height:46.075000pt;}
.h8_c00116{height:48.378750pt;}
.h4_c00116{height:50.682500pt;}
.h6_c00116{height:52.986250pt;}
.ha_c00116{height:55.290000pt;}
.he_c00116{height:57.593750pt;}
.h10_c00116{height:59.897500pt;}
.h3_c00116{height:62.201250pt;}
.h9_c00116{height:64.505000pt;}
.h11_c00116{height:66.808750pt;}
.h1_c00116{height:1022.666667pt;}
.h0_c00116{height:1022.720000pt;}
.w1_c00116{width:719.333333pt;}
.w0_c00116{width:719.360000pt;}
.x0_c00116{left:0.000000pt;}
.x1d_c00116{left:65.920000pt;}
.x7_c00116{left:73.600000pt;}
.x1_c00116{left:74.880000pt;}
.x18_c00116{left:103.040000pt;}
.x3_c00116{left:112.640000pt;}
.xf_c00116{left:128.640000pt;}
.x8_c00116{left:129.920000pt;}
.x14_c00116{left:131.200000pt;}
.x2_c00116{left:140.160000pt;}
.x1c_c00116{left:170.880000pt;}
.x10_c00116{left:177.920000pt;}
.x19_c00116{left:206.080000pt;}
.x6_c00116{left:216.320000pt;}
.x4_c00116{left:224.640000pt;}
.x11_c00116{left:243.840000pt;}
.x1a_c00116{left:254.080000pt;}
.x9_c00116{left:263.040000pt;}
.x5_c00116{left:264.320000pt;}
.x12_c00116{left:293.120000pt;}
.xa_c00116{left:302.720000pt;}
.x15_c00116{left:311.040000pt;}
.xb_c00116{left:330.240000pt;}
.xc_c00116{left:341.760000pt;}
.x16_c00116{left:360.320000pt;}
.x13_c00116{left:369.920000pt;}
.x1b_c00116{left:378.880000pt;}
.x17_c00116{left:398.720000pt;}
.xd_c00116{left:408.320000pt;}
.xe_c00116{left:456.960000pt;}
.x24_c00116{left:504.320000pt;}
.x1f_c00116{left:505.600000pt;}
.x20_c00116{left:535.040000pt;}
.x22_c00116{left:553.600000pt;}
.x23_c00116{left:583.680000pt;}
.x28_c00116{left:604.160000pt;}
.x27_c00116{left:612.480000pt;}
.x1e_c00116{left:621.440000pt;}
.x26_c00116{left:649.600000pt;}
.x21_c00116{left:650.880000pt;}
.x25_c00116{left:652.160000pt;}
.x29_c00116{left:669.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d3154d97e33dcf774e5cd3b7.woff2')format("woff");}.ff1_c00117{font-family:ff1_c00117;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3d_c00117{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00117{transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);}
.m47_c00117{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.m6_c00117{transform:matrix(0.233875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233875,0.000000,0.000000,0.250000,0,0);}
.m1_c00117{transform:matrix(0.236950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236950,0.000000,0.000000,0.250000,0,0);}
.m42_c00117{transform:matrix(0.238375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238375,0.000000,0.000000,0.250000,0,0);}
.mf_c00117{transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);}
.m19_c00117{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m15_c00117{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m23_c00117{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m14_c00117{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m28_c00117{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m9_c00117{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_c00117{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m2_c00117{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m13_c00117{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.ma_c00117{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m4_c00117{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m11_c00117{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m20_c00117{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m8_c00117{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m3_c00117{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00117{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m17_c00117{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00117{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m26_c00117{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m29_c00117{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m22_c00117{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m0_c00117{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00117{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m7_c00117{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m34_c00117{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00117{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m12_c00117{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m30_c00117{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m21_c00117{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m40_c00117{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00117{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);}
.m2b_c00117{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.me_c00117{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m46_c00117{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m45_c00117{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.mc_c00117{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00117{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00117{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);}
.m1c_c00117{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m39_c00117{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m25_c00117{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);}
.m43_c00117{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);}
.m18_c00117{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m31_c00117{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);}
.m3c_c00117{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);}
.m2d_c00117{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00117{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m24_c00117{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);}
.md_c00117{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);}
.m48_c00117{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.mb_c00117{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m10_c00117{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m37_c00117{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00117{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00117{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m38_c00117{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m33_c00117{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m41_c00117{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m44_c00117{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00117{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m35_c00117{transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);}
.m49_c00117{transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);}
.m27_c00117{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m5_c00117{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.m32_c00117{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m16_c00117{transform:matrix(0.832500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832500,0.000000,0.000000,0.250000,0,0);}
.m36_c00117{transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);}
.v2_c00117{vertical-align:-2.880000px;}
.v0_c00117{vertical-align:0.000000px;}
.v3_c00117{vertical-align:2.880000px;}
.v1_c00117{vertical-align:20.160000px;}
.ls1_c00117{letter-spacing:0.000000px;}
.ls0_c00117{letter-spacing:1.696800px;}
.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;}
}
.ws2_c00117{word-spacing:0.000000px;}
.ws1_c00117{word-spacing:9.212400px;}
.ws0_c00117{word-spacing:818.087520px;}
.fc0_c00117{color:transparent;}
.fs12_c00117{font-size:5.760000px;}
.fs10_c00117{font-size:17.280000px;}
.fsf_c00117{font-size:25.920000px;}
.fs14_c00117{font-size:31.680000px;}
.fsa_c00117{font-size:34.560000px;}
.fs3_c00117{font-size:37.440000px;}
.fs8_c00117{font-size:43.200000px;}
.fs13_c00117{font-size:46.080000px;}
.fs11_c00117{font-size:48.960000px;}
.fsd_c00117{font-size:51.840000px;}
.fsc_c00117{font-size:54.720000px;}
.fs7_c00117{font-size:57.600000px;}
.fs0_c00117{font-size:60.480000px;}
.fs9_c00117{font-size:63.360000px;}
.fs2_c00117{font-size:66.240000px;}
.fs6_c00117{font-size:69.120000px;}
.fse_c00117{font-size:72.000000px;}
.fs5_c00117{font-size:74.880000px;}
.fs1_c00117{font-size:77.760000px;}
.fsb_c00117{font-size:80.640000px;}
.fs4_c00117{font-size:86.400000px;}
.y0_c00117{bottom:0.000000px;}
.y74_c00117{bottom:92.160000px;}
.y65_c00117{bottom:92.880000px;}
.y71_c00117{bottom:94.320000px;}
.y73_c00117{bottom:95.040000px;}
.y72_c00117{bottom:95.760000px;}
.y64_c00117{bottom:98.640000px;}
.y70_c00117{bottom:134.640000px;}
.y6f_c00117{bottom:135.360000px;}
.y62_c00117{bottom:136.080000px;}
.y61_c00117{bottom:136.800000px;}
.y6e_c00117{bottom:137.520000px;}
.y63_c00117{bottom:138.240000px;}
.y60_c00117{bottom:139.680000px;}
.y6d_c00117{bottom:177.840000px;}
.y5f_c00117{bottom:179.280000px;}
.y6a_c00117{bottom:180.720000px;}
.y6c_c00117{bottom:181.440000px;}
.y6b_c00117{bottom:182.160000px;}
.y5e_c00117{bottom:182.880000px;}
.y5d_c00117{bottom:221.760000px;}
.y68_c00117{bottom:222.480000px;}
.y69_c00117{bottom:223.200000px;}
.y5b_c00117{bottom:225.360000px;}
.y5c_c00117{bottom:226.080000px;}
.y5a_c00117{bottom:264.960000px;}
.y67_c00117{bottom:265.680000px;}
.y66_c00117{bottom:266.400000px;}
.y59_c00117{bottom:267.840000px;}
.y52_c00117{bottom:309.600000px;}
.y53_c00117{bottom:311.760000px;}
.y58_c00117{bottom:339.840000px;}
.y4e_c00117{bottom:341.280000px;}
.y50_c00117{bottom:342.000000px;}
.y51_c00117{bottom:342.720000px;}
.y4f_c00117{bottom:343.440000px;}
.y4c_c00117{bottom:344.160000px;}
.y57_c00117{bottom:345.600000px;}
.y4d_c00117{bottom:347.760000px;}
.y48_c00117{bottom:382.320000px;}
.y49_c00117{bottom:385.920000px;}
.y4b_c00117{bottom:386.640000px;}
.y4a_c00117{bottom:388.800000px;}
.y47_c00117{bottom:426.960000px;}
.y44_c00117{bottom:429.120000px;}
.y45_c00117{bottom:429.840000px;}
.y46_c00117{bottom:430.560000px;}
.y54_c00117{bottom:491.760000px;}
.y56_c00117{bottom:492.480000px;}
.y43_c00117{bottom:493.200000px;}
.y55_c00117{bottom:495.360000px;}
.y3e_c00117{bottom:533.520000px;}
.y3d_c00117{bottom:534.240000px;}
.y3c_c00117{bottom:534.960000px;}
.y40_c00117{bottom:535.680000px;}
.y3f_c00117{bottom:536.400000px;}
.y41_c00117{bottom:537.840000px;}
.y42_c00117{bottom:539.280000px;}
.y3a_c00117{bottom:581.040000px;}
.y3b_c00117{bottom:581.760000px;}
.y27_c00117{bottom:619.200000px;}
.y26_c00117{bottom:620.640000px;}
.y38_c00117{bottom:622.800000px;}
.y39_c00117{bottom:624.960000px;}
.y25_c00117{bottom:662.400000px;}
.y23_c00117{bottom:664.560000px;}
.y24_c00117{bottom:665.280000px;}
.y37_c00117{bottom:666.000000px;}
.y36_c00117{bottom:666.720000px;}
.y21_c00117{bottom:705.600000px;}
.y20_c00117{bottom:707.040000px;}
.y22_c00117{bottom:708.480000px;}
.y34_c00117{bottom:709.200000px;}
.y35_c00117{bottom:709.920000px;}
.y1d_c00117{bottom:747.360000px;}
.y1e_c00117{bottom:748.800000px;}
.y1b_c00117{bottom:750.240000px;}
.y1c_c00117{bottom:750.960000px;}
.y33_c00117{bottom:751.680000px;}
.y1f_c00117{bottom:752.400000px;}
.y32_c00117{bottom:754.560000px;}
.y19_c00117{bottom:792.000000px;}
.y18_c00117{bottom:793.440000px;}
.y1a_c00117{bottom:794.880000px;}
.y31_c00117{bottom:795.600000px;}
.y30_c00117{bottom:796.320000px;}
.y16_c00117{bottom:834.480000px;}
.y15_c00117{bottom:835.200000px;}
.y2d_c00117{bottom:837.360000px;}
.y17_c00117{bottom:838.080000px;}
.y2f_c00117{bottom:838.800000px;}
.y2e_c00117{bottom:840.960000px;}
.y12_c00117{bottom:876.960000px;}
.y13_c00117{bottom:878.400000px;}
.y11_c00117{bottom:879.840000px;}
.y14_c00117{bottom:882.000000px;}
.yc_c00117{bottom:919.440000px;}
.yb_c00117{bottom:921.600000px;}
.yd_c00117{bottom:923.760000px;}
.ye_c00117{bottom:924.480000px;}
.y10_c00117{bottom:925.200000px;}
.yf_c00117{bottom:925.920000px;}
.y7_c00117{bottom:961.920000px;}
.y5_c00117{bottom:963.360000px;}
.y9_c00117{bottom:964.800000px;}
.y6_c00117{bottom:965.520000px;}
.y8_c00117{bottom:966.240000px;}
.ya_c00117{bottom:967.680000px;}
.y2a_c00117{bottom:968.400000px;}
.y2b_c00117{bottom:969.120000px;}
.y2c_c00117{bottom:971.280000px;}
.y2_c00117{bottom:1005.840000px;}
.y1_c00117{bottom:1006.560000px;}
.y3_c00117{bottom:1007.280000px;}
.y4_c00117{bottom:1011.600000px;}
.y29_c00117{bottom:1012.320000px;}
.y28_c00117{bottom:1079.280000px;}
.h15_c00117{height:5.183438px;}
.h13_c00117{height:15.550313px;}
.h12_c00117{height:23.325469px;}
.h17_c00117{height:28.508906px;}
.hc_c00117{height:31.100625px;}
.h5_c00117{height:33.692344px;}
.ha_c00117{height:38.875781px;}
.h16_c00117{height:41.467500px;}
.h18_c00117{height:41.755781px;}
.h14_c00117{height:44.059219px;}
.h10_c00117{height:46.650937px;}
.hf_c00117{height:49.242656px;}
.h9_c00117{height:51.834375px;}
.h2_c00117{height:54.426094px;}
.hb_c00117{height:57.017812px;}
.h4_c00117{height:59.609531px;}
.h8_c00117{height:62.201250px;}
.h11_c00117{height:64.792969px;}
.h7_c00117{height:67.384687px;}
.h3_c00117{height:69.976406px;}
.he_c00117{height:71.994375px;}
.hd_c00117{height:72.568125px;}
.h6_c00117{height:77.751563px;}
.h1_c00117{height:1150.500000px;}
.h0_c00117{height:1150.560000px;}
.w1_c00117{width:803.250000px;}
.w0_c00117{width:803.520000px;}
.x0_c00117{left:0.000000px;}
.x1_c00117{left:82.800000px;}
.x7_c00117{left:84.240000px;}
.xd_c00117{left:115.200000px;}
.x5_c00117{left:116.640000px;}
.x2c_c00117{left:127.440000px;}
.x1e_c00117{left:136.800000px;}
.x2_c00117{left:146.880000px;}
.x2b_c00117{left:155.520000px;}
.xb_c00117{left:157.680000px;}
.x1f_c00117{left:210.240000px;}
.xf_c00117{left:220.320000px;}
.x23_c00117{left:222.480000px;}
.x2d_c00117{left:232.560000px;}
.x3_c00117{left:242.640000px;}
.x26_c00117{left:244.080000px;}
.xc_c00117{left:254.160000px;}
.xe_c00117{left:264.960000px;}
.x27_c00117{left:296.640000px;}
.x24_c00117{left:306.720000px;}
.x1c_c00117{left:318.960000px;}
.x6_c00117{left:328.320000px;}
.x25_c00117{left:330.480000px;}
.x8_c00117{left:351.360000px;}
.x20_c00117{left:360.720000px;}
.x2e_c00117{left:383.040000px;}
.x28_c00117{left:394.560000px;}
.x9_c00117{left:405.360000px;}
.x21_c00117{left:426.960000px;}
.x1d_c00117{left:437.760000px;}
.xa_c00117{left:448.560000px;}
.x22_c00117{left:460.080000px;}
.x29_c00117{left:481.680000px;}
.x4_c00117{left:568.080000px;}
.x11_c00117{left:622.080000px;}
.x2f_c00117{left:623.520000px;}
.x18_c00117{left:634.320000px;}
.x2a_c00117{left:646.560000px;}
.x31_c00117{left:648.000000px;}
.x16_c00117{left:655.200000px;}
.x14_c00117{left:656.640000px;}
.x32_c00117{left:658.800000px;}
.x19_c00117{left:688.320000px;}
.x1b_c00117{left:689.760000px;}
.x1a_c00117{left:691.200000px;}
.x12_c00117{left:698.400000px;}
.x15_c00117{left:699.840000px;}
.x10_c00117{left:708.480000px;}
.x13_c00117{left:732.240000px;}
.x30_c00117{left:734.400000px;}
.x17_c00117{left:753.840000px;}
@media print{
.v2_c00117{vertical-align:-2.560000pt;}
.v0_c00117{vertical-align:0.000000pt;}
.v3_c00117{vertical-align:2.560000pt;}
.v1_c00117{vertical-align:17.920000pt;}
.ls1_c00117{letter-spacing:0.000000pt;}
.ls0_c00117{letter-spacing:1.508267pt;}
.ws2_c00117{word-spacing:0.000000pt;}
.ws1_c00117{word-spacing:8.188800pt;}
.ws0_c00117{word-spacing:727.188907pt;}
.fs12_c00117{font-size:5.120000pt;}
.fs10_c00117{font-size:15.360000pt;}
.fsf_c00117{font-size:23.040000pt;}
.fs14_c00117{font-size:28.160000pt;}
.fsa_c00117{font-size:30.720000pt;}
.fs3_c00117{font-size:33.280000pt;}
.fs8_c00117{font-size:38.400000pt;}
.fs13_c00117{font-size:40.960000pt;}
.fs11_c00117{font-size:43.520000pt;}
.fsd_c00117{font-size:46.080000pt;}
.fsc_c00117{font-size:48.640000pt;}
.fs7_c00117{font-size:51.200000pt;}
.fs0_c00117{font-size:53.760000pt;}
.fs9_c00117{font-size:56.320000pt;}
.fs2_c00117{font-size:58.880000pt;}
.fs6_c00117{font-size:61.440000pt;}
.fse_c00117{font-size:64.000000pt;}
.fs5_c00117{font-size:66.560000pt;}
.fs1_c00117{font-size:69.120000pt;}
.fsb_c00117{font-size:71.680000pt;}
.fs4_c00117{font-size:76.800000pt;}
.y0_c00117{bottom:0.000000pt;}
.y74_c00117{bottom:81.920000pt;}
.y65_c00117{bottom:82.560000pt;}
.y71_c00117{bottom:83.840000pt;}
.y73_c00117{bottom:84.480000pt;}
.y72_c00117{bottom:85.120000pt;}
.y64_c00117{bottom:87.680000pt;}
.y70_c00117{bottom:119.680000pt;}
.y6f_c00117{bottom:120.320000pt;}
.y62_c00117{bottom:120.960000pt;}
.y61_c00117{bottom:121.600000pt;}
.y6e_c00117{bottom:122.240000pt;}
.y63_c00117{bottom:122.880000pt;}
.y60_c00117{bottom:124.160000pt;}
.y6d_c00117{bottom:158.080000pt;}
.y5f_c00117{bottom:159.360000pt;}
.y6a_c00117{bottom:160.640000pt;}
.y6c_c00117{bottom:161.280000pt;}
.y6b_c00117{bottom:161.920000pt;}
.y5e_c00117{bottom:162.560000pt;}
.y5d_c00117{bottom:197.120000pt;}
.y68_c00117{bottom:197.760000pt;}
.y69_c00117{bottom:198.400000pt;}
.y5b_c00117{bottom:200.320000pt;}
.y5c_c00117{bottom:200.960000pt;}
.y5a_c00117{bottom:235.520000pt;}
.y67_c00117{bottom:236.160000pt;}
.y66_c00117{bottom:236.800000pt;}
.y59_c00117{bottom:238.080000pt;}
.y52_c00117{bottom:275.200000pt;}
.y53_c00117{bottom:277.120000pt;}
.y58_c00117{bottom:302.080000pt;}
.y4e_c00117{bottom:303.360000pt;}
.y50_c00117{bottom:304.000000pt;}
.y51_c00117{bottom:304.640000pt;}
.y4f_c00117{bottom:305.280000pt;}
.y4c_c00117{bottom:305.920000pt;}
.y57_c00117{bottom:307.200000pt;}
.y4d_c00117{bottom:309.120000pt;}
.y48_c00117{bottom:339.840000pt;}
.y49_c00117{bottom:343.040000pt;}
.y4b_c00117{bottom:343.680000pt;}
.y4a_c00117{bottom:345.600000pt;}
.y47_c00117{bottom:379.520000pt;}
.y44_c00117{bottom:381.440000pt;}
.y45_c00117{bottom:382.080000pt;}
.y46_c00117{bottom:382.720000pt;}
.y54_c00117{bottom:437.120000pt;}
.y56_c00117{bottom:437.760000pt;}
.y43_c00117{bottom:438.400000pt;}
.y55_c00117{bottom:440.320000pt;}
.y3e_c00117{bottom:474.240000pt;}
.y3d_c00117{bottom:474.880000pt;}
.y3c_c00117{bottom:475.520000pt;}
.y40_c00117{bottom:476.160000pt;}
.y3f_c00117{bottom:476.800000pt;}
.y41_c00117{bottom:478.080000pt;}
.y42_c00117{bottom:479.360000pt;}
.y3a_c00117{bottom:516.480000pt;}
.y3b_c00117{bottom:517.120000pt;}
.y27_c00117{bottom:550.400000pt;}
.y26_c00117{bottom:551.680000pt;}
.y38_c00117{bottom:553.600000pt;}
.y39_c00117{bottom:555.520000pt;}
.y25_c00117{bottom:588.800000pt;}
.y23_c00117{bottom:590.720000pt;}
.y24_c00117{bottom:591.360000pt;}
.y37_c00117{bottom:592.000000pt;}
.y36_c00117{bottom:592.640000pt;}
.y21_c00117{bottom:627.200000pt;}
.y20_c00117{bottom:628.480000pt;}
.y22_c00117{bottom:629.760000pt;}
.y34_c00117{bottom:630.400000pt;}
.y35_c00117{bottom:631.040000pt;}
.y1d_c00117{bottom:664.320000pt;}
.y1e_c00117{bottom:665.600000pt;}
.y1b_c00117{bottom:666.880000pt;}
.y1c_c00117{bottom:667.520000pt;}
.y33_c00117{bottom:668.160000pt;}
.y1f_c00117{bottom:668.800000pt;}
.y32_c00117{bottom:670.720000pt;}
.y19_c00117{bottom:704.000000pt;}
.y18_c00117{bottom:705.280000pt;}
.y1a_c00117{bottom:706.560000pt;}
.y31_c00117{bottom:707.200000pt;}
.y30_c00117{bottom:707.840000pt;}
.y16_c00117{bottom:741.760000pt;}
.y15_c00117{bottom:742.400000pt;}
.y2d_c00117{bottom:744.320000pt;}
.y17_c00117{bottom:744.960000pt;}
.y2f_c00117{bottom:745.600000pt;}
.y2e_c00117{bottom:747.520000pt;}
.y12_c00117{bottom:779.520000pt;}
.y13_c00117{bottom:780.800000pt;}
.y11_c00117{bottom:782.080000pt;}
.y14_c00117{bottom:784.000000pt;}
.yc_c00117{bottom:817.280000pt;}
.yb_c00117{bottom:819.200000pt;}
.yd_c00117{bottom:821.120000pt;}
.ye_c00117{bottom:821.760000pt;}
.y10_c00117{bottom:822.400000pt;}
.yf_c00117{bottom:823.040000pt;}
.y7_c00117{bottom:855.040000pt;}
.y5_c00117{bottom:856.320000pt;}
.y9_c00117{bottom:857.600000pt;}
.y6_c00117{bottom:858.240000pt;}
.y8_c00117{bottom:858.880000pt;}
.ya_c00117{bottom:860.160000pt;}
.y2a_c00117{bottom:860.800000pt;}
.y2b_c00117{bottom:861.440000pt;}
.y2c_c00117{bottom:863.360000pt;}
.y2_c00117{bottom:894.080000pt;}
.y1_c00117{bottom:894.720000pt;}
.y3_c00117{bottom:895.360000pt;}
.y4_c00117{bottom:899.200000pt;}
.y29_c00117{bottom:899.840000pt;}
.y28_c00117{bottom:959.360000pt;}
.h15_c00117{height:4.607500pt;}
.h13_c00117{height:13.822500pt;}
.h12_c00117{height:20.733750pt;}
.h17_c00117{height:25.341250pt;}
.hc_c00117{height:27.645000pt;}
.h5_c00117{height:29.948750pt;}
.ha_c00117{height:34.556250pt;}
.h16_c00117{height:36.860000pt;}
.h18_c00117{height:37.116250pt;}
.h14_c00117{height:39.163750pt;}
.h10_c00117{height:41.467500pt;}
.hf_c00117{height:43.771250pt;}
.h9_c00117{height:46.075000pt;}
.h2_c00117{height:48.378750pt;}
.hb_c00117{height:50.682500pt;}
.h4_c00117{height:52.986250pt;}
.h8_c00117{height:55.290000pt;}
.h11_c00117{height:57.593750pt;}
.h7_c00117{height:59.897500pt;}
.h3_c00117{height:62.201250pt;}
.he_c00117{height:63.995000pt;}
.hd_c00117{height:64.505000pt;}
.h6_c00117{height:69.112500pt;}
.h1_c00117{height:1022.666667pt;}
.h0_c00117{height:1022.720000pt;}
.w1_c00117{width:714.000000pt;}
.w0_c00117{width:714.240000pt;}
.x0_c00117{left:0.000000pt;}
.x1_c00117{left:73.600000pt;}
.x7_c00117{left:74.880000pt;}
.xd_c00117{left:102.400000pt;}
.x5_c00117{left:103.680000pt;}
.x2c_c00117{left:113.280000pt;}
.x1e_c00117{left:121.600000pt;}
.x2_c00117{left:130.560000pt;}
.x2b_c00117{left:138.240000pt;}
.xb_c00117{left:140.160000pt;}
.x1f_c00117{left:186.880000pt;}
.xf_c00117{left:195.840000pt;}
.x23_c00117{left:197.760000pt;}
.x2d_c00117{left:206.720000pt;}
.x3_c00117{left:215.680000pt;}
.x26_c00117{left:216.960000pt;}
.xc_c00117{left:225.920000pt;}
.xe_c00117{left:235.520000pt;}
.x27_c00117{left:263.680000pt;}
.x24_c00117{left:272.640000pt;}
.x1c_c00117{left:283.520000pt;}
.x6_c00117{left:291.840000pt;}
.x25_c00117{left:293.760000pt;}
.x8_c00117{left:312.320000pt;}
.x20_c00117{left:320.640000pt;}
.x2e_c00117{left:340.480000pt;}
.x28_c00117{left:350.720000pt;}
.x9_c00117{left:360.320000pt;}
.x21_c00117{left:379.520000pt;}
.x1d_c00117{left:389.120000pt;}
.xa_c00117{left:398.720000pt;}
.x22_c00117{left:408.960000pt;}
.x29_c00117{left:428.160000pt;}
.x4_c00117{left:504.960000pt;}
.x11_c00117{left:552.960000pt;}
.x2f_c00117{left:554.240000pt;}
.x18_c00117{left:563.840000pt;}
.x2a_c00117{left:574.720000pt;}
.x31_c00117{left:576.000000pt;}
.x16_c00117{left:582.400000pt;}
.x14_c00117{left:583.680000pt;}
.x32_c00117{left:585.600000pt;}
.x19_c00117{left:611.840000pt;}
.x1b_c00117{left:613.120000pt;}
.x1a_c00117{left:614.400000pt;}
.x12_c00117{left:620.800000pt;}
.x15_c00117{left:622.080000pt;}
.x10_c00117{left:629.760000pt;}
.x13_c00117{left:650.880000pt;}
.x30_c00117{left:652.800000pt;}
.x17_c00117{left:670.080000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0d76406323281c1e387f1aab.woff2')format("woff");}.ff1_c00118{font-family:ff1_c00118;line-height:1.109863;font-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_c00118{transform:matrix(0.188600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188600,0.000000,0.000000,0.250000,0,0);}
.m29_c00118{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m1_c00118{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);}
.m22_c00118{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m47_c00118{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m48_c00118{transform:matrix(0.249050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249050,0.000000,0.000000,0.250000,0,0);}
.m10_c00118{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00118{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m3_c00118{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m43_c00118{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m6_c00118{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m42_c00118{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m37_c00118{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m32_c00118{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m14_c00118{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m4_c00118{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m7_c00118{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);}
.m2e_c00118{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m30_c00118{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mf_c00118{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m28_c00118{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m19_c00118{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00118{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m27_c00118{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2_c00118{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m11_c00118{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m31_c00118{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m39_c00118{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00118{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00118{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m40_c00118{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00118{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m9_c00118{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00118{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m17_c00118{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m45_c00118{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);}
.m35_c00118{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.mc_c00118{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m49_c00118{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m5_c00118{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);}
.m23_c00118{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00118{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m18_c00118{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m0_c00118{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00118{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00118{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m16_c00118{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);}
.m21_c00118{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.ma_c00118{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);}
.m36_c00118{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00118{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.me_c00118{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.md_c00118{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00118{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);}
.m1a_c00118{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m34_c00118{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);}
.m20_c00118{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m24_c00118{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m15_c00118{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m26_c00118{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);}
.m2d_c00118{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00118{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m8_c00118{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.mb_c00118{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);}
.m13_c00118{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00118{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00118{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);}
.m33_c00118{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);}
.m1b_c00118{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);}
.m12_c00118{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m41_c00118{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m38_c00118{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m46_c00118{transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00118{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m44_c00118{transform:matrix(0.887500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.887500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.887500,0.000000,0.000000,0.250000,0,0);}
.v0_c00118{vertical-align:0.000000px;}
.v1_c00118{vertical-align:8.640000px;}
.ls0_c00118{letter-spacing:0.000000px;}
.sc__c00118{text-shadow:none;}
.sc0_c00118{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00118{-webkit-text-stroke:0px transparent;}
.sc0_c00118{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00118{word-spacing:0.000000px;}
.ws0_c00118{word-spacing:9.212400px;}
.ws1_c00118{word-spacing:11.693143px;}
.fc0_c00118{color:transparent;}
.fse_c00118{font-size:34.560000px;}
.fsd_c00118{font-size:40.320000px;}
.fs8_c00118{font-size:43.200000px;}
.fsc_c00118{font-size:48.960000px;}
.fs4_c00118{font-size:51.840000px;}
.fs6_c00118{font-size:54.720000px;}
.fsa_c00118{font-size:57.600000px;}
.fs0_c00118{font-size:60.480000px;}
.fs5_c00118{font-size:63.360000px;}
.fs9_c00118{font-size:66.240000px;}
.fs2_c00118{font-size:69.120000px;}
.fs3_c00118{font-size:72.000000px;}
.fs7_c00118{font-size:74.880000px;}
.fs1_c00118{font-size:77.760000px;}
.fsf_c00118{font-size:80.640000px;}
.fsb_c00118{font-size:103.680000px;}
.y0_c00118{bottom:0.000000px;}
.y63_c00118{bottom:61.200000px;}
.y58_c00118{bottom:61.920000px;}
.y61_c00118{bottom:63.360000px;}
.y62_c00118{bottom:64.080000px;}
.y57_c00118{bottom:66.240000px;}
.y60_c00118{bottom:105.840000px;}
.y56_c00118{bottom:106.560000px;}
.y54_c00118{bottom:107.280000px;}
.y55_c00118{bottom:109.440000px;}
.y53_c00118{bottom:148.320000px;}
.y5f_c00118{bottom:149.040000px;}
.y52_c00118{bottom:152.640000px;}
.y50_c00118{bottom:191.520000px;}
.y5e_c00118{bottom:192.960000px;}
.y4f_c00118{bottom:193.680000px;}
.y51_c00118{bottom:195.120000px;}
.y4e_c00118{bottom:234.720000px;}
.y5d_c00118{bottom:235.440000px;}
.y4c_c00118{bottom:237.600000px;}
.y4d_c00118{bottom:238.320000px;}
.y4a_c00118{bottom:277.200000px;}
.y5c_c00118{bottom:277.920000px;}
.y4b_c00118{bottom:278.640000px;}
.y48_c00118{bottom:280.800000px;}
.y49_c00118{bottom:281.520000px;}
.y45_c00118{bottom:319.680000px;}
.y47_c00118{bottom:320.400000px;}
.y5b_c00118{bottom:321.120000px;}
.y46_c00118{bottom:321.840000px;}
.y44_c00118{bottom:324.000000px;}
.y41_c00118{bottom:362.880000px;}
.y5a_c00118{bottom:364.320000px;}
.y43_c00118{bottom:365.040000px;}
.y40_c00118{bottom:365.760000px;}
.y42_c00118{bottom:366.480000px;}
.y3d_c00118{bottom:405.360000px;}
.y3f_c00118{bottom:407.520000px;}
.y59_c00118{bottom:408.240000px;}
.y3c_c00118{bottom:409.680000px;}
.y3e_c00118{bottom:410.400000px;}
.y37_c00118{bottom:502.560000px;}
.y3b_c00118{bottom:504.000000px;}
.y36_c00118{bottom:504.720000px;}
.y38_c00118{bottom:505.440000px;}
.y39_c00118{bottom:506.160000px;}
.y3a_c00118{bottom:506.880000px;}
.y26_c00118{bottom:539.280000px;}
.y23_c00118{bottom:545.040000px;}
.y22_c00118{bottom:547.920000px;}
.y24_c00118{bottom:548.640000px;}
.y25_c00118{bottom:549.360000px;}
.y35_c00118{bottom:550.080000px;}
.y20_c00118{bottom:589.680000px;}
.y21_c00118{bottom:591.840000px;}
.y1d_c00118{bottom:642.960000px;}
.y1e_c00118{bottom:645.120000px;}
.y1f_c00118{bottom:645.840000px;}
.y34_c00118{bottom:647.280000px;}
.y1a_c00118{bottom:686.160000px;}
.y19_c00118{bottom:686.880000px;}
.y1c_c00118{bottom:688.320000px;}
.y1b_c00118{bottom:689.040000px;}
.y16_c00118{bottom:727.920000px;}
.y17_c00118{bottom:729.360000px;}
.y18_c00118{bottom:730.800000px;}
.y12_c00118{bottom:780.480000px;}
.y15_c00118{bottom:781.920000px;}
.y11_c00118{bottom:783.360000px;}
.y13_c00118{bottom:784.800000px;}
.y14_c00118{bottom:785.520000px;}
.y33_c00118{bottom:787.680000px;}
.y10_c00118{bottom:824.400000px;}
.ye_c00118{bottom:825.840000px;}
.yf_c00118{bottom:828.000000px;}
.y32_c00118{bottom:829.440000px;}
.yb_c00118{bottom:867.600000px;}
.yc_c00118{bottom:869.040000px;}
.yd_c00118{bottom:870.480000px;}
.y8_c00118{bottom:921.600000px;}
.y9_c00118{bottom:922.320000px;}
.ya_c00118{bottom:924.480000px;}
.y30_c00118{bottom:925.200000px;}
.y31_c00118{bottom:926.640000px;}
.y7_c00118{bottom:964.080000px;}
.y5_c00118{bottom:965.520000px;}
.y6_c00118{bottom:966.960000px;}
.y2c_c00118{bottom:967.680000px;}
.y2f_c00118{bottom:968.400000px;}
.y2d_c00118{bottom:969.120000px;}
.y2e_c00118{bottom:972.000000px;}
.y2_c00118{bottom:1005.840000px;}
.y1_c00118{bottom:1006.560000px;}
.y4_c00118{bottom:1008.720000px;}
.y3_c00118{bottom:1009.440000px;}
.y29_c00118{bottom:1010.880000px;}
.y28_c00118{bottom:1011.600000px;}
.y2b_c00118{bottom:1013.760000px;}
.y2a_c00118{bottom:1014.480000px;}
.y27_c00118{bottom:1078.560000px;}
.h11_c00118{height:31.100625px;}
.h10_c00118{height:36.284062px;}
.ha_c00118{height:38.875781px;}
.he_c00118{height:44.059219px;}
.h6_c00118{height:46.650937px;}
.h8_c00118{height:49.242656px;}
.hc_c00118{height:51.834375px;}
.h2_c00118{height:54.426094px;}
.h7_c00118{height:57.017812px;}
.hb_c00118{height:59.609531px;}
.h4_c00118{height:62.201250px;}
.hf_c00118{height:63.066094px;}
.h5_c00118{height:64.792969px;}
.h9_c00118{height:67.384687px;}
.h3_c00118{height:69.976406px;}
.h12_c00118{height:72.568125px;}
.hd_c00118{height:93.301875px;}
.h1_c00118{height:1150.500000px;}
.h0_c00118{height:1150.560000px;}
.w1_c00118{width:804.750000px;}
.w0_c00118{width:804.960000px;}
.x0_c00118{left:0.000000px;}
.x1_c00118{left:83.520000px;}
.x28_c00118{left:84.960000px;}
.x29_c00118{left:128.160000px;}
.x9_c00118{left:136.080000px;}
.x30_c00118{left:138.240000px;}
.x2_c00118{left:157.680000px;}
.x2f_c00118{left:159.120000px;}
.x31_c00118{left:169.920000px;}
.x5_c00118{left:221.760000px;}
.xb_c00118{left:231.840000px;}
.x2b_c00118{left:234.720000px;}
.x6_c00118{left:241.920000px;}
.xe_c00118{left:243.360000px;}
.x2a_c00118{left:244.800000px;}
.x3_c00118{left:253.440000px;}
.x27_c00118{left:254.880000px;}
.xa_c00118{left:285.120000px;}
.x7_c00118{left:286.560000px;}
.x23_c00118{left:298.080000px;}
.x11_c00118{left:306.720000px;}
.xf_c00118{left:308.160000px;}
.x2c_c00118{left:318.960000px;}
.x8_c00118{left:328.320000px;}
.x12_c00118{left:329.760000px;}
.xc_c00118{left:340.560000px;}
.x10_c00118{left:362.160000px;}
.x4_c00118{left:372.240000px;}
.x2d_c00118{left:373.680000px;}
.xd_c00118{left:383.040000px;}
.x24_c00118{left:425.520000px;}
.x2e_c00118{left:427.680000px;}
.x22_c00118{left:460.080000px;}
.x25_c00118{left:470.880000px;}
.x13_c00118{left:480.240000px;}
.x1f_c00118{left:481.680000px;}
.x26_c00118{left:514.080000px;}
.x20_c00118{left:524.880000px;}
.x15_c00118{left:568.800000px;}
.x32_c00118{left:570.240000px;}
.x1a_c00118{left:601.200000px;}
.x16_c00118{left:622.800000px;}
.x21_c00118{left:624.240000px;}
.x33_c00118{left:635.040000px;}
.x1b_c00118{left:656.640000px;}
.x34_c00118{left:658.080000px;}
.x17_c00118{left:689.040000px;}
.x35_c00118{left:691.200000px;}
.x14_c00118{left:706.320000px;}
.x1c_c00118{left:722.160000px;}
.x36_c00118{left:723.600000px;}
.x18_c00118{left:731.520000px;}
.x1d_c00118{left:733.680000px;}
.x19_c00118{left:752.400000px;}
.x1e_c00118{left:753.840000px;}
@media print{
.v0_c00118{vertical-align:0.000000pt;}
.v1_c00118{vertical-align:7.680000pt;}
.ls0_c00118{letter-spacing:0.000000pt;}
.ws2_c00118{word-spacing:0.000000pt;}
.ws0_c00118{word-spacing:8.188800pt;}
.ws1_c00118{word-spacing:10.393905pt;}
.fse_c00118{font-size:30.720000pt;}
.fsd_c00118{font-size:35.840000pt;}
.fs8_c00118{font-size:38.400000pt;}
.fsc_c00118{font-size:43.520000pt;}
.fs4_c00118{font-size:46.080000pt;}
.fs6_c00118{font-size:48.640000pt;}
.fsa_c00118{font-size:51.200000pt;}
.fs0_c00118{font-size:53.760000pt;}
.fs5_c00118{font-size:56.320000pt;}
.fs9_c00118{font-size:58.880000pt;}
.fs2_c00118{font-size:61.440000pt;}
.fs3_c00118{font-size:64.000000pt;}
.fs7_c00118{font-size:66.560000pt;}
.fs1_c00118{font-size:69.120000pt;}
.fsf_c00118{font-size:71.680000pt;}
.fsb_c00118{font-size:92.160000pt;}
.y0_c00118{bottom:0.000000pt;}
.y63_c00118{bottom:54.400000pt;}
.y58_c00118{bottom:55.040000pt;}
.y61_c00118{bottom:56.320000pt;}
.y62_c00118{bottom:56.960000pt;}
.y57_c00118{bottom:58.880000pt;}
.y60_c00118{bottom:94.080000pt;}
.y56_c00118{bottom:94.720000pt;}
.y54_c00118{bottom:95.360000pt;}
.y55_c00118{bottom:97.280000pt;}
.y53_c00118{bottom:131.840000pt;}
.y5f_c00118{bottom:132.480000pt;}
.y52_c00118{bottom:135.680000pt;}
.y50_c00118{bottom:170.240000pt;}
.y5e_c00118{bottom:171.520000pt;}
.y4f_c00118{bottom:172.160000pt;}
.y51_c00118{bottom:173.440000pt;}
.y4e_c00118{bottom:208.640000pt;}
.y5d_c00118{bottom:209.280000pt;}
.y4c_c00118{bottom:211.200000pt;}
.y4d_c00118{bottom:211.840000pt;}
.y4a_c00118{bottom:246.400000pt;}
.y5c_c00118{bottom:247.040000pt;}
.y4b_c00118{bottom:247.680000pt;}
.y48_c00118{bottom:249.600000pt;}
.y49_c00118{bottom:250.240000pt;}
.y45_c00118{bottom:284.160000pt;}
.y47_c00118{bottom:284.800000pt;}
.y5b_c00118{bottom:285.440000pt;}
.y46_c00118{bottom:286.080000pt;}
.y44_c00118{bottom:288.000000pt;}
.y41_c00118{bottom:322.560000pt;}
.y5a_c00118{bottom:323.840000pt;}
.y43_c00118{bottom:324.480000pt;}
.y40_c00118{bottom:325.120000pt;}
.y42_c00118{bottom:325.760000pt;}
.y3d_c00118{bottom:360.320000pt;}
.y3f_c00118{bottom:362.240000pt;}
.y59_c00118{bottom:362.880000pt;}
.y3c_c00118{bottom:364.160000pt;}
.y3e_c00118{bottom:364.800000pt;}
.y37_c00118{bottom:446.720000pt;}
.y3b_c00118{bottom:448.000000pt;}
.y36_c00118{bottom:448.640000pt;}
.y38_c00118{bottom:449.280000pt;}
.y39_c00118{bottom:449.920000pt;}
.y3a_c00118{bottom:450.560000pt;}
.y26_c00118{bottom:479.360000pt;}
.y23_c00118{bottom:484.480000pt;}
.y22_c00118{bottom:487.040000pt;}
.y24_c00118{bottom:487.680000pt;}
.y25_c00118{bottom:488.320000pt;}
.y35_c00118{bottom:488.960000pt;}
.y20_c00118{bottom:524.160000pt;}
.y21_c00118{bottom:526.080000pt;}
.y1d_c00118{bottom:571.520000pt;}
.y1e_c00118{bottom:573.440000pt;}
.y1f_c00118{bottom:574.080000pt;}
.y34_c00118{bottom:575.360000pt;}
.y1a_c00118{bottom:609.920000pt;}
.y19_c00118{bottom:610.560000pt;}
.y1c_c00118{bottom:611.840000pt;}
.y1b_c00118{bottom:612.480000pt;}
.y16_c00118{bottom:647.040000pt;}
.y17_c00118{bottom:648.320000pt;}
.y18_c00118{bottom:649.600000pt;}
.y12_c00118{bottom:693.760000pt;}
.y15_c00118{bottom:695.040000pt;}
.y11_c00118{bottom:696.320000pt;}
.y13_c00118{bottom:697.600000pt;}
.y14_c00118{bottom:698.240000pt;}
.y33_c00118{bottom:700.160000pt;}
.y10_c00118{bottom:732.800000pt;}
.ye_c00118{bottom:734.080000pt;}
.yf_c00118{bottom:736.000000pt;}
.y32_c00118{bottom:737.280000pt;}
.yb_c00118{bottom:771.200000pt;}
.yc_c00118{bottom:772.480000pt;}
.yd_c00118{bottom:773.760000pt;}
.y8_c00118{bottom:819.200000pt;}
.y9_c00118{bottom:819.840000pt;}
.ya_c00118{bottom:821.760000pt;}
.y30_c00118{bottom:822.400000pt;}
.y31_c00118{bottom:823.680000pt;}
.y7_c00118{bottom:856.960000pt;}
.y5_c00118{bottom:858.240000pt;}
.y6_c00118{bottom:859.520000pt;}
.y2c_c00118{bottom:860.160000pt;}
.y2f_c00118{bottom:860.800000pt;}
.y2d_c00118{bottom:861.440000pt;}
.y2e_c00118{bottom:864.000000pt;}
.y2_c00118{bottom:894.080000pt;}
.y1_c00118{bottom:894.720000pt;}
.y4_c00118{bottom:896.640000pt;}
.y3_c00118{bottom:897.280000pt;}
.y29_c00118{bottom:898.560000pt;}
.y28_c00118{bottom:899.200000pt;}
.y2b_c00118{bottom:901.120000pt;}
.y2a_c00118{bottom:901.760000pt;}
.y27_c00118{bottom:958.720000pt;}
.h11_c00118{height:27.645000pt;}
.h10_c00118{height:32.252500pt;}
.ha_c00118{height:34.556250pt;}
.he_c00118{height:39.163750pt;}
.h6_c00118{height:41.467500pt;}
.h8_c00118{height:43.771250pt;}
.hc_c00118{height:46.075000pt;}
.h2_c00118{height:48.378750pt;}
.h7_c00118{height:50.682500pt;}
.hb_c00118{height:52.986250pt;}
.h4_c00118{height:55.290000pt;}
.hf_c00118{height:56.058750pt;}
.h5_c00118{height:57.593750pt;}
.h9_c00118{height:59.897500pt;}
.h3_c00118{height:62.201250pt;}
.h12_c00118{height:64.505000pt;}
.hd_c00118{height:82.935000pt;}
.h1_c00118{height:1022.666667pt;}
.h0_c00118{height:1022.720000pt;}
.w1_c00118{width:715.333333pt;}
.w0_c00118{width:715.520000pt;}
.x0_c00118{left:0.000000pt;}
.x1_c00118{left:74.240000pt;}
.x28_c00118{left:75.520000pt;}
.x29_c00118{left:113.920000pt;}
.x9_c00118{left:120.960000pt;}
.x30_c00118{left:122.880000pt;}
.x2_c00118{left:140.160000pt;}
.x2f_c00118{left:141.440000pt;}
.x31_c00118{left:151.040000pt;}
.x5_c00118{left:197.120000pt;}
.xb_c00118{left:206.080000pt;}
.x2b_c00118{left:208.640000pt;}
.x6_c00118{left:215.040000pt;}
.xe_c00118{left:216.320000pt;}
.x2a_c00118{left:217.600000pt;}
.x3_c00118{left:225.280000pt;}
.x27_c00118{left:226.560000pt;}
.xa_c00118{left:253.440000pt;}
.x7_c00118{left:254.720000pt;}
.x23_c00118{left:264.960000pt;}
.x11_c00118{left:272.640000pt;}
.xf_c00118{left:273.920000pt;}
.x2c_c00118{left:283.520000pt;}
.x8_c00118{left:291.840000pt;}
.x12_c00118{left:293.120000pt;}
.xc_c00118{left:302.720000pt;}
.x10_c00118{left:321.920000pt;}
.x4_c00118{left:330.880000pt;}
.x2d_c00118{left:332.160000pt;}
.xd_c00118{left:340.480000pt;}
.x24_c00118{left:378.240000pt;}
.x2e_c00118{left:380.160000pt;}
.x22_c00118{left:408.960000pt;}
.x25_c00118{left:418.560000pt;}
.x13_c00118{left:426.880000pt;}
.x1f_c00118{left:428.160000pt;}
.x26_c00118{left:456.960000pt;}
.x20_c00118{left:466.560000pt;}
.x15_c00118{left:505.600000pt;}
.x32_c00118{left:506.880000pt;}
.x1a_c00118{left:534.400000pt;}
.x16_c00118{left:553.600000pt;}
.x21_c00118{left:554.880000pt;}
.x33_c00118{left:564.480000pt;}
.x1b_c00118{left:583.680000pt;}
.x34_c00118{left:584.960000pt;}
.x17_c00118{left:612.480000pt;}
.x35_c00118{left:614.400000pt;}
.x14_c00118{left:627.840000pt;}
.x1c_c00118{left:641.920000pt;}
.x36_c00118{left:643.200000pt;}
.x18_c00118{left:650.240000pt;}
.x1d_c00118{left:652.160000pt;}
.x19_c00118{left:668.800000pt;}
.x1e_c00118{left:670.080000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0ff1af7c6d63408d0c2b1ca7.woff2')format("woff");}.ff1_c00119{font-family:ff1_c00119;line-height:1.109863;font-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_c00119{transform:matrix(0.122550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122550,0.000000,0.000000,0.250000,0,0);}
.m12_c00119{transform:matrix(0.218875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218875,0.000000,0.000000,0.250000,0,0);}
.m8_c00119{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m2f_c00119{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.mb_c00119{transform:matrix(0.238675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238675,0.000000,0.000000,0.250000,0,0);}
.m3f_c00119{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);}
.m26_c00119{transform:matrix(0.243050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243050,0.000000,0.000000,0.250000,0,0);}
.m41_c00119{transform:matrix(0.246975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246975,0.000000,0.000000,0.250000,0,0);}
.m18_c00119{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);}
.m46_c00119{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m16_c00119{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.me_c00119{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m13_c00119{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m11_c00119{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m15_c00119{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m17_c00119{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m14_c00119{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m40_c00119{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mf_c00119{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m42_c00119{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m5_c00119{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);}
.m35_c00119{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m45_c00119{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m48_c00119{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mc_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);}
.m7_c00119{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m22_c00119{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m28_c00119{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m32_c00119{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2_c00119{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.md_c00119{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m6_c00119{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m24_c00119{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m29_c00119{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00119{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00119{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m36_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);}
.m31_c00119{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m20_c00119{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m21_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);}
.m23_c00119{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m33_c00119{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00119{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m9_c00119{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1_c00119{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);}
.m27_c00119{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m0_c00119{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1d_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);}
.m3c_c00119{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00119{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m3_c00119{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.ma_c00119{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m47_c00119{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00119{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);}
.m19_c00119{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);}
.m2e_c00119{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);}
.m2d_c00119{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m34_c00119{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00119{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m37_c00119{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00119{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);}
.m44_c00119{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m4_c00119{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m43_c00119{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m25_c00119{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00119{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);}
.m3b_c00119{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);}
.m1f_c00119{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00119{transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);}
.m49_c00119{transform:matrix(0.712500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.712500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.712500,0.000000,0.000000,0.250000,0,0);}
.m38_c00119{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.m30_c00119{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m10_c00119{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m39_c00119{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.v0_c00119{vertical-align:0.000000px;}
.v3_c00119{vertical-align:5.760000px;}
.v1_c00119{vertical-align:8.640000px;}
.v2_c00119{vertical-align:17.280000px;}
.ls0_c00119{letter-spacing:0.000000px;}
.sc__c00119{text-shadow:none;}
.sc0_c00119{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00119{-webkit-text-stroke:0px transparent;}
.sc0_c00119{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00119{word-spacing:-4.064160px;}
.ws5_c00119{word-spacing:0.000000px;}
.ws3_c00119{word-spacing:11.693143px;}
.ws2_c00119{word-spacing:16.838400px;}
.ws4_c00119{word-spacing:50.058000px;}
.ws1_c00119{word-spacing:1005.974880px;}
.fc0_c00119{color:transparent;}
.fsd_c00119{font-size:34.560000px;}
.fse_c00119{font-size:37.440000px;}
.fsb_c00119{font-size:40.320000px;}
.fsf_c00119{font-size:46.080000px;}
.fs8_c00119{font-size:48.960000px;}
.fs3_c00119{font-size:51.840000px;}
.fs4_c00119{font-size:54.720000px;}
.fs5_c00119{font-size:57.600000px;}
.fs1_c00119{font-size:60.480000px;}
.fs2_c00119{font-size:63.360000px;}
.fsa_c00119{font-size:66.240000px;}
.fs7_c00119{font-size:69.120000px;}
.fs0_c00119{font-size:72.000000px;}
.fs9_c00119{font-size:74.880000px;}
.fs6_c00119{font-size:77.760000px;}
.fsc_c00119{font-size:103.680000px;}
.y0_c00119{bottom:0.000000px;}
.y73_c00119{bottom:60.480000px;}
.y72_c00119{bottom:61.920000px;}
.y70_c00119{bottom:62.640000px;}
.y6f_c00119{bottom:65.520000px;}
.y71_c00119{bottom:66.240000px;}
.y6e_c00119{bottom:103.680000px;}
.y6d_c00119{bottom:104.400000px;}
.y6c_c00119{bottom:105.120000px;}
.y68_c00119{bottom:105.840000px;}
.y6b_c00119{bottom:107.280000px;}
.y6a_c00119{bottom:108.000000px;}
.y69_c00119{bottom:108.720000px;}
.y67_c00119{bottom:109.440000px;}
.y66_c00119{bottom:147.600000px;}
.y62_c00119{bottom:148.320000px;}
.y65_c00119{bottom:149.040000px;}
.y64_c00119{bottom:150.480000px;}
.y63_c00119{bottom:151.200000px;}
.y61_c00119{bottom:151.920000px;}
.y5f_c00119{bottom:190.800000px;}
.y60_c00119{bottom:191.520000px;}
.y5e_c00119{bottom:194.400000px;}
.y5b_c00119{bottom:233.280000px;}
.y5a_c00119{bottom:234.000000px;}
.y5c_c00119{bottom:234.720000px;}
.y59_c00119{bottom:236.160000px;}
.y5d_c00119{bottom:236.880000px;}
.y56_c00119{bottom:277.200000px;}
.y57_c00119{bottom:279.360000px;}
.y58_c00119{bottom:280.800000px;}
.y54_c00119{bottom:330.480000px;}
.y55_c00119{bottom:331.200000px;}
.y53_c00119{bottom:331.920000px;}
.y50_c00119{bottom:332.640000px;}
.y52_c00119{bottom:334.080000px;}
.y51_c00119{bottom:334.800000px;}
.y4d_c00119{bottom:372.960000px;}
.y4e_c00119{bottom:374.400000px;}
.y4b_c00119{bottom:375.120000px;}
.y4f_c00119{bottom:375.840000px;}
.y4c_c00119{bottom:378.000000px;}
.y4a_c00119{bottom:420.480000px;}
.y49_c00119{bottom:421.200000px;}
.y46_c00119{bottom:450.000000px;}
.y45_c00119{bottom:450.720000px;}
.y47_c00119{bottom:451.440000px;}
.y48_c00119{bottom:452.160000px;}
.y44_c00119{bottom:495.360000px;}
.y43_c00119{bottom:496.080000px;}
.y3e_c00119{bottom:524.160000px;}
.y41_c00119{bottom:524.880000px;}
.y3c_c00119{bottom:525.600000px;}
.y42_c00119{bottom:526.320000px;}
.y3d_c00119{bottom:527.040000px;}
.y3f_c00119{bottom:527.760000px;}
.y40_c00119{bottom:528.480000px;}
.y38_c00119{bottom:566.640000px;}
.y36_c00119{bottom:567.360000px;}
.y3a_c00119{bottom:568.080000px;}
.y39_c00119{bottom:569.520000px;}
.y37_c00119{bottom:570.240000px;}
.y3b_c00119{bottom:570.960000px;}
.y32_c00119{bottom:609.120000px;}
.y31_c00119{bottom:610.560000px;}
.y34_c00119{bottom:611.280000px;}
.y33_c00119{bottom:612.000000px;}
.y35_c00119{bottom:612.720000px;}
.y2e_c00119{bottom:653.760000px;}
.y2f_c00119{bottom:654.480000px;}
.y30_c00119{bottom:655.200000px;}
.y2b_c00119{bottom:704.880000px;}
.y2a_c00119{bottom:707.040000px;}
.y2c_c00119{bottom:709.200000px;}
.y2d_c00119{bottom:710.640000px;}
.y25_c00119{bottom:748.080000px;}
.y26_c00119{bottom:748.800000px;}
.y24_c00119{bottom:749.520000px;}
.y27_c00119{bottom:751.680000px;}
.y28_c00119{bottom:752.400000px;}
.y29_c00119{bottom:754.560000px;}
.y21_c00119{bottom:786.240000px;}
.y1d_c00119{bottom:790.560000px;}
.y1c_c00119{bottom:792.720000px;}
.y1e_c00119{bottom:794.880000px;}
.y1f_c00119{bottom:795.600000px;}
.y20_c00119{bottom:796.320000px;}
.y22_c00119{bottom:797.040000px;}
.y23_c00119{bottom:797.760000px;}
.y18_c00119{bottom:833.760000px;}
.y17_c00119{bottom:835.920000px;}
.y19_c00119{bottom:838.080000px;}
.y1a_c00119{bottom:838.800000px;}
.y1b_c00119{bottom:840.960000px;}
.y14_c00119{bottom:877.680000px;}
.y13_c00119{bottom:879.840000px;}
.y15_c00119{bottom:880.560000px;}
.y16_c00119{bottom:883.440000px;}
.ye_c00119{bottom:920.160000px;}
.yd_c00119{bottom:920.880000px;}
.y10_c00119{bottom:923.760000px;}
.yf_c00119{bottom:924.480000px;}
.y11_c00119{bottom:926.640000px;}
.y12_c00119{bottom:927.360000px;}
.ya_c00119{bottom:963.360000px;}
.y9_c00119{bottom:964.080000px;}
.yb_c00119{bottom:967.680000px;}
.yc_c00119{bottom:969.840000px;}
.y2_c00119{bottom:1006.560000px;}
.y3_c00119{bottom:1007.280000px;}
.y4_c00119{bottom:1008.720000px;}
.y6_c00119{bottom:1010.160000px;}
.y8_c00119{bottom:1010.880000px;}
.y5_c00119{bottom:1011.600000px;}
.y7_c00119{bottom:1013.040000px;}
.y1_c00119{bottom:1096.560000px;}
.hf_c00119{height:31.100625px;}
.h13_c00119{height:33.692344px;}
.hd_c00119{height:36.284062px;}
.h15_c00119{height:41.467500px;}
.ha_c00119{height:44.059219px;}
.h5_c00119{height:46.650937px;}
.h6_c00119{height:49.242656px;}
.h7_c00119{height:51.834375px;}
.h3_c00119{height:54.426094px;}
.hb_c00119{height:55.290937px;}
.h4_c00119{height:57.017812px;}
.h11_c00119{height:59.609531px;}
.h12_c00119{height:60.186094px;}
.h14_c00119{height:60.474375px;}
.h9_c00119{height:62.201250px;}
.h2_c00119{height:64.792969px;}
.h10_c00119{height:67.384687px;}
.h8_c00119{height:69.976406px;}
.hc_c00119{height:76.889531px;}
.he_c00119{height:93.301875px;}
.h1_c00119{height:1151.250000px;}
.h0_c00119{height:1151.280000px;}
.w1_c00119{width:804.750000px;}
.w0_c00119{width:804.960000px;}
.x0_c00119{left:0.000000px;}
.x2_c00119{left:86.400000px;}
.x18_c00119{left:138.960000px;}
.x1c_c00119{left:159.120000px;}
.x3_c00119{left:160.560000px;}
.x19_c00119{left:213.840000px;}
.x24_c00119{left:224.640000px;}
.xd_c00119{left:235.440000px;}
.x1d_c00119{left:244.080000px;}
.x4_c00119{left:245.520000px;}
.x17_c00119{left:256.320000px;}
.x10_c00119{left:287.280000px;}
.x1e_c00119{left:289.440000px;}
.x1a_c00119{left:298.080000px;}
.xa_c00119{left:300.240000px;}
.x5_c00119{left:310.320000px;}
.x29_c00119{left:342.720000px;}
.x25_c00119{left:365.040000px;}
.x23_c00119{left:375.120000px;}
.x11_c00119{left:385.920000px;}
.x1f_c00119{left:417.600000px;}
.x26_c00119{left:419.040000px;}
.x12_c00119{left:438.480000px;}
.x20_c00119{left:440.640000px;}
.x27_c00119{left:461.520000px;}
.x21_c00119{left:472.320000px;}
.x13_c00119{left:483.840000px;}
.x16_c00119{left:504.720000px;}
.x22_c00119{left:520.560000px;}
.x14_c00119{left:522.000000px;}
.xe_c00119{left:570.960000px;}
.x6_c00119{left:572.400000px;}
.x1b_c00119{left:604.080000px;}
.xb_c00119{left:626.400000px;}
.x15_c00119{left:657.360000px;}
.x7_c00119{left:658.800000px;}
.x8_c00119{left:691.920000px;}
.x1_c00119{left:695.520000px;}
.x28_c00119{left:702.000000px;}
.xc_c00119{left:725.040000px;}
.x9_c00119{left:735.120000px;}
.xf_c00119{left:756.000000px;}
@media print{
.v0_c00119{vertical-align:0.000000pt;}
.v3_c00119{vertical-align:5.120000pt;}
.v1_c00119{vertical-align:7.680000pt;}
.v2_c00119{vertical-align:15.360000pt;}
.ls0_c00119{letter-spacing:0.000000pt;}
.ws0_c00119{word-spacing:-3.612587pt;}
.ws5_c00119{word-spacing:0.000000pt;}
.ws3_c00119{word-spacing:10.393905pt;}
.ws2_c00119{word-spacing:14.967467pt;}
.ws4_c00119{word-spacing:44.496000pt;}
.ws1_c00119{word-spacing:894.199893pt;}
.fsd_c00119{font-size:30.720000pt;}
.fse_c00119{font-size:33.280000pt;}
.fsb_c00119{font-size:35.840000pt;}
.fsf_c00119{font-size:40.960000pt;}
.fs8_c00119{font-size:43.520000pt;}
.fs3_c00119{font-size:46.080000pt;}
.fs4_c00119{font-size:48.640000pt;}
.fs5_c00119{font-size:51.200000pt;}
.fs1_c00119{font-size:53.760000pt;}
.fs2_c00119{font-size:56.320000pt;}
.fsa_c00119{font-size:58.880000pt;}
.fs7_c00119{font-size:61.440000pt;}
.fs0_c00119{font-size:64.000000pt;}
.fs9_c00119{font-size:66.560000pt;}
.fs6_c00119{font-size:69.120000pt;}
.fsc_c00119{font-size:92.160000pt;}
.y0_c00119{bottom:0.000000pt;}
.y73_c00119{bottom:53.760000pt;}
.y72_c00119{bottom:55.040000pt;}
.y70_c00119{bottom:55.680000pt;}
.y6f_c00119{bottom:58.240000pt;}
.y71_c00119{bottom:58.880000pt;}
.y6e_c00119{bottom:92.160000pt;}
.y6d_c00119{bottom:92.800000pt;}
.y6c_c00119{bottom:93.440000pt;}
.y68_c00119{bottom:94.080000pt;}
.y6b_c00119{bottom:95.360000pt;}
.y6a_c00119{bottom:96.000000pt;}
.y69_c00119{bottom:96.640000pt;}
.y67_c00119{bottom:97.280000pt;}
.y66_c00119{bottom:131.200000pt;}
.y62_c00119{bottom:131.840000pt;}
.y65_c00119{bottom:132.480000pt;}
.y64_c00119{bottom:133.760000pt;}
.y63_c00119{bottom:134.400000pt;}
.y61_c00119{bottom:135.040000pt;}
.y5f_c00119{bottom:169.600000pt;}
.y60_c00119{bottom:170.240000pt;}
.y5e_c00119{bottom:172.800000pt;}
.y5b_c00119{bottom:207.360000pt;}
.y5a_c00119{bottom:208.000000pt;}
.y5c_c00119{bottom:208.640000pt;}
.y59_c00119{bottom:209.920000pt;}
.y5d_c00119{bottom:210.560000pt;}
.y56_c00119{bottom:246.400000pt;}
.y57_c00119{bottom:248.320000pt;}
.y58_c00119{bottom:249.600000pt;}
.y54_c00119{bottom:293.760000pt;}
.y55_c00119{bottom:294.400000pt;}
.y53_c00119{bottom:295.040000pt;}
.y50_c00119{bottom:295.680000pt;}
.y52_c00119{bottom:296.960000pt;}
.y51_c00119{bottom:297.600000pt;}
.y4d_c00119{bottom:331.520000pt;}
.y4e_c00119{bottom:332.800000pt;}
.y4b_c00119{bottom:333.440000pt;}
.y4f_c00119{bottom:334.080000pt;}
.y4c_c00119{bottom:336.000000pt;}
.y4a_c00119{bottom:373.760000pt;}
.y49_c00119{bottom:374.400000pt;}
.y46_c00119{bottom:400.000000pt;}
.y45_c00119{bottom:400.640000pt;}
.y47_c00119{bottom:401.280000pt;}
.y48_c00119{bottom:401.920000pt;}
.y44_c00119{bottom:440.320000pt;}
.y43_c00119{bottom:440.960000pt;}
.y3e_c00119{bottom:465.920000pt;}
.y41_c00119{bottom:466.560000pt;}
.y3c_c00119{bottom:467.200000pt;}
.y42_c00119{bottom:467.840000pt;}
.y3d_c00119{bottom:468.480000pt;}
.y3f_c00119{bottom:469.120000pt;}
.y40_c00119{bottom:469.760000pt;}
.y38_c00119{bottom:503.680000pt;}
.y36_c00119{bottom:504.320000pt;}
.y3a_c00119{bottom:504.960000pt;}
.y39_c00119{bottom:506.240000pt;}
.y37_c00119{bottom:506.880000pt;}
.y3b_c00119{bottom:507.520000pt;}
.y32_c00119{bottom:541.440000pt;}
.y31_c00119{bottom:542.720000pt;}
.y34_c00119{bottom:543.360000pt;}
.y33_c00119{bottom:544.000000pt;}
.y35_c00119{bottom:544.640000pt;}
.y2e_c00119{bottom:581.120000pt;}
.y2f_c00119{bottom:581.760000pt;}
.y30_c00119{bottom:582.400000pt;}
.y2b_c00119{bottom:626.560000pt;}
.y2a_c00119{bottom:628.480000pt;}
.y2c_c00119{bottom:630.400000pt;}
.y2d_c00119{bottom:631.680000pt;}
.y25_c00119{bottom:664.960000pt;}
.y26_c00119{bottom:665.600000pt;}
.y24_c00119{bottom:666.240000pt;}
.y27_c00119{bottom:668.160000pt;}
.y28_c00119{bottom:668.800000pt;}
.y29_c00119{bottom:670.720000pt;}
.y21_c00119{bottom:698.880000pt;}
.y1d_c00119{bottom:702.720000pt;}
.y1c_c00119{bottom:704.640000pt;}
.y1e_c00119{bottom:706.560000pt;}
.y1f_c00119{bottom:707.200000pt;}
.y20_c00119{bottom:707.840000pt;}
.y22_c00119{bottom:708.480000pt;}
.y23_c00119{bottom:709.120000pt;}
.y18_c00119{bottom:741.120000pt;}
.y17_c00119{bottom:743.040000pt;}
.y19_c00119{bottom:744.960000pt;}
.y1a_c00119{bottom:745.600000pt;}
.y1b_c00119{bottom:747.520000pt;}
.y14_c00119{bottom:780.160000pt;}
.y13_c00119{bottom:782.080000pt;}
.y15_c00119{bottom:782.720000pt;}
.y16_c00119{bottom:785.280000pt;}
.ye_c00119{bottom:817.920000pt;}
.yd_c00119{bottom:818.560000pt;}
.y10_c00119{bottom:821.120000pt;}
.yf_c00119{bottom:821.760000pt;}
.y11_c00119{bottom:823.680000pt;}
.y12_c00119{bottom:824.320000pt;}
.ya_c00119{bottom:856.320000pt;}
.y9_c00119{bottom:856.960000pt;}
.yb_c00119{bottom:860.160000pt;}
.yc_c00119{bottom:862.080000pt;}
.y2_c00119{bottom:894.720000pt;}
.y3_c00119{bottom:895.360000pt;}
.y4_c00119{bottom:896.640000pt;}
.y6_c00119{bottom:897.920000pt;}
.y8_c00119{bottom:898.560000pt;}
.y5_c00119{bottom:899.200000pt;}
.y7_c00119{bottom:900.480000pt;}
.y1_c00119{bottom:974.720000pt;}
.hf_c00119{height:27.645000pt;}
.h13_c00119{height:29.948750pt;}
.hd_c00119{height:32.252500pt;}
.h15_c00119{height:36.860000pt;}
.ha_c00119{height:39.163750pt;}
.h5_c00119{height:41.467500pt;}
.h6_c00119{height:43.771250pt;}
.h7_c00119{height:46.075000pt;}
.h3_c00119{height:48.378750pt;}
.hb_c00119{height:49.147500pt;}
.h4_c00119{height:50.682500pt;}
.h11_c00119{height:52.986250pt;}
.h12_c00119{height:53.498750pt;}
.h14_c00119{height:53.755000pt;}
.h9_c00119{height:55.290000pt;}
.h2_c00119{height:57.593750pt;}
.h10_c00119{height:59.897500pt;}
.h8_c00119{height:62.201250pt;}
.hc_c00119{height:68.346250pt;}
.he_c00119{height:82.935000pt;}
.h1_c00119{height:1023.333333pt;}
.h0_c00119{height:1023.360000pt;}
.w1_c00119{width:715.333333pt;}
.w0_c00119{width:715.520000pt;}
.x0_c00119{left:0.000000pt;}
.x2_c00119{left:76.800000pt;}
.x18_c00119{left:123.520000pt;}
.x1c_c00119{left:141.440000pt;}
.x3_c00119{left:142.720000pt;}
.x19_c00119{left:190.080000pt;}
.x24_c00119{left:199.680000pt;}
.xd_c00119{left:209.280000pt;}
.x1d_c00119{left:216.960000pt;}
.x4_c00119{left:218.240000pt;}
.x17_c00119{left:227.840000pt;}
.x10_c00119{left:255.360000pt;}
.x1e_c00119{left:257.280000pt;}
.x1a_c00119{left:264.960000pt;}
.xa_c00119{left:266.880000pt;}
.x5_c00119{left:275.840000pt;}
.x29_c00119{left:304.640000pt;}
.x25_c00119{left:324.480000pt;}
.x23_c00119{left:333.440000pt;}
.x11_c00119{left:343.040000pt;}
.x1f_c00119{left:371.200000pt;}
.x26_c00119{left:372.480000pt;}
.x12_c00119{left:389.760000pt;}
.x20_c00119{left:391.680000pt;}
.x27_c00119{left:410.240000pt;}
.x21_c00119{left:419.840000pt;}
.x13_c00119{left:430.080000pt;}
.x16_c00119{left:448.640000pt;}
.x22_c00119{left:462.720000pt;}
.x14_c00119{left:464.000000pt;}
.xe_c00119{left:507.520000pt;}
.x6_c00119{left:508.800000pt;}
.x1b_c00119{left:536.960000pt;}
.xb_c00119{left:556.800000pt;}
.x15_c00119{left:584.320000pt;}
.x7_c00119{left:585.600000pt;}
.x8_c00119{left:615.040000pt;}
.x1_c00119{left:618.240000pt;}
.x28_c00119{left:624.000000pt;}
.xc_c00119{left:644.480000pt;}
.x9_c00119{left:653.440000pt;}
.xf_c00119{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_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_744a0559962edb6b709f366f.woff2')format("woff");}.ff1_c00120{font-family:ff1_c00120;line-height:1.109863;font-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_c00120{transform:matrix(0.171300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171300,0.000000,0.000000,0.250000,0,0);}
.m46_c00120{transform:matrix(0.176175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176175,0.000000,0.000000,0.250000,0,0);}
.m4d_c00120{transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);}
.m4c_c00120{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m35_c00120{transform:matrix(0.233550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233550,0.000000,0.000000,0.250000,0,0);}
.m1d_c00120{transform:matrix(0.244450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244450,0.000000,0.000000,0.250000,0,0);}
.m1f_c00120{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m42_c00120{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m24_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);}
.m26_c00120{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00120{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m23_c00120{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m4_c00120{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m37_c00120{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.md_c00120{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m34_c00120{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m18_c00120{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00120{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m32_c00120{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m8_c00120{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);}
.m3b_c00120{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);}
.m27_c00120{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m12_c00120{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m7_c00120{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m19_c00120{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mc_c00120{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2_c00120{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00120{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00120{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3_c00120{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m36_c00120{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m25_c00120{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m5_c00120{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m47_c00120{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.me_c00120{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00120{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mf_c00120{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m14_c00120{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00120{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m6_c00120{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m31_c00120{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);}
.m2f_c00120{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m29_c00120{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m15_c00120{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m17_c00120{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1_c00120{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m13_c00120{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m0_c00120{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m21_c00120{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00120{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m38_c00120{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);}
.m45_c00120{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);}
.m2e_c00120{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m11_c00120{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);}
.m22_c00120{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);}
.m2c_c00120{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m33_c00120{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m39_c00120{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m30_c00120{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);}
.m16_c00120{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00120{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00120{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.mb_c00120{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00120{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m43_c00120{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m40_c00120{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);}
.m4a_c00120{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m48_c00120{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);}
.m9_c00120{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m28_c00120{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00120{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_c00120{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m49_c00120{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);}
.m3e_c00120{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.ma_c00120{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00120{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);}
.m41_c00120{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m20_c00120{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.v0_c00120{vertical-align:0.000000px;}
.ls0_c00120{letter-spacing:0.000000px;}
.sc__c00120{text-shadow:none;}
.sc0_c00120{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00120{-webkit-text-stroke:0px transparent;}
.sc0_c00120{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00120{word-spacing:0.000000px;}
.fc0_c00120{color:transparent;}
.fse_c00120{font-size:20.160000px;}
.fsa_c00120{font-size:37.440000px;}
.fsf_c00120{font-size:40.320000px;}
.fs7_c00120{font-size:43.200000px;}
.fsc_c00120{font-size:48.960000px;}
.fs6_c00120{font-size:51.840000px;}
.fs3_c00120{font-size:54.720000px;}
.fs8_c00120{font-size:57.600000px;}
.fs1_c00120{font-size:60.480000px;}
.fs9_c00120{font-size:63.360000px;}
.fs5_c00120{font-size:66.240000px;}
.fs4_c00120{font-size:69.120000px;}
.fsb_c00120{font-size:72.000000px;}
.fs0_c00120{font-size:74.880000px;}
.fs2_c00120{font-size:77.760000px;}
.fsd_c00120{font-size:80.640000px;}
.fs10_c00120{font-size:103.680000px;}
.y0_c00120{bottom:0.000000px;}
.y6a_c00120{bottom:51.840000px;}
.y69_c00120{bottom:53.280000px;}
.y66_c00120{bottom:55.440000px;}
.y68_c00120{bottom:57.600000px;}
.y67_c00120{bottom:58.320000px;}
.y65_c00120{bottom:60.480000px;}
.y64_c00120{bottom:95.760000px;}
.y63_c00120{bottom:96.480000px;}
.y61_c00120{bottom:97.920000px;}
.y5f_c00120{bottom:99.360000px;}
.y62_c00120{bottom:100.080000px;}
.y60_c00120{bottom:101.520000px;}
.y5e_c00120{bottom:102.240000px;}
.y5c_c00120{bottom:138.240000px;}
.y5a_c00120{bottom:139.680000px;}
.y5d_c00120{bottom:141.120000px;}
.y5b_c00120{bottom:141.840000px;}
.y58_c00120{bottom:144.720000px;}
.y59_c00120{bottom:145.440000px;}
.y55_c00120{bottom:174.960000px;}
.y57_c00120{bottom:181.440000px;}
.y56_c00120{bottom:182.880000px;}
.y52_c00120{bottom:183.600000px;}
.y54_c00120{bottom:184.320000px;}
.y53_c00120{bottom:185.040000px;}
.y51_c00120{bottom:187.200000px;}
.y50_c00120{bottom:224.640000px;}
.y4f_c00120{bottom:225.360000px;}
.y4c_c00120{bottom:226.080000px;}
.y4d_c00120{bottom:226.800000px;}
.y4e_c00120{bottom:228.240000px;}
.y4a_c00120{bottom:229.680000px;}
.y4b_c00120{bottom:230.400000px;}
.y47_c00120{bottom:269.280000px;}
.y48_c00120{bottom:271.440000px;}
.y49_c00120{bottom:275.040000px;}
.y46_c00120{bottom:321.840000px;}
.y44_c00120{bottom:322.560000px;}
.y43_c00120{bottom:323.280000px;}
.y45_c00120{bottom:324.000000px;}
.y42_c00120{bottom:326.160000px;}
.y3f_c00120{bottom:366.480000px;}
.y40_c00120{bottom:367.920000px;}
.y41_c00120{bottom:368.640000px;}
.y3e_c00120{bottom:419.760000px;}
.y3d_c00120{bottom:420.480000px;}
.y3a_c00120{bottom:421.200000px;}
.y39_c00120{bottom:421.920000px;}
.y3b_c00120{bottom:422.640000px;}
.y3c_c00120{bottom:423.360000px;}
.y36_c00120{bottom:462.240000px;}
.y38_c00120{bottom:462.960000px;}
.y37_c00120{bottom:463.680000px;}
.y35_c00120{bottom:465.840000px;}
.y33_c00120{bottom:506.160000px;}
.y34_c00120{bottom:508.320000px;}
.y30_c00120{bottom:558.720000px;}
.y32_c00120{bottom:559.440000px;}
.y31_c00120{bottom:560.160000px;}
.y2f_c00120{bottom:560.880000px;}
.y2e_c00120{bottom:602.640000px;}
.y2d_c00120{bottom:605.520000px;}
.y2b_c00120{bottom:656.640000px;}
.y29_c00120{bottom:657.360000px;}
.y28_c00120{bottom:658.080000px;}
.y2c_c00120{bottom:658.800000px;}
.y2a_c00120{bottom:659.520000px;}
.y25_c00120{bottom:699.120000px;}
.y26_c00120{bottom:699.840000px;}
.y27_c00120{bottom:701.280000px;}
.y20_c00120{bottom:751.680000px;}
.y1f_c00120{bottom:753.120000px;}
.y24_c00120{bottom:754.560000px;}
.y21_c00120{bottom:755.280000px;}
.y22_c00120{bottom:756.720000px;}
.y23_c00120{bottom:757.440000px;}
.y1c_c00120{bottom:794.880000px;}
.y1a_c00120{bottom:796.320000px;}
.y1d_c00120{bottom:797.760000px;}
.y1b_c00120{bottom:798.480000px;}
.y1e_c00120{bottom:800.640000px;}
.y14_c00120{bottom:837.360000px;}
.y13_c00120{bottom:838.800000px;}
.y15_c00120{bottom:839.520000px;}
.y17_c00120{bottom:840.240000px;}
.y18_c00120{bottom:840.960000px;}
.y16_c00120{bottom:842.400000px;}
.y19_c00120{bottom:843.840000px;}
.y12_c00120{bottom:880.560000px;}
.y10_c00120{bottom:882.000000px;}
.y11_c00120{bottom:884.160000px;}
.yc_c00120{bottom:924.480000px;}
.ye_c00120{bottom:927.360000px;}
.yd_c00120{bottom:928.080000px;}
.yf_c00120{bottom:929.520000px;}
.y8_c00120{bottom:966.960000px;}
.yb_c00120{bottom:969.840000px;}
.y9_c00120{bottom:970.560000px;}
.ya_c00120{bottom:971.280000px;}
.y2_c00120{bottom:1010.160000px;}
.y4_c00120{bottom:1010.880000px;}
.y3_c00120{bottom:1012.320000px;}
.y6_c00120{bottom:1013.040000px;}
.y7_c00120{bottom:1013.760000px;}
.y5_c00120{bottom:1015.920000px;}
.y1_c00120{bottom:1083.600000px;}
.h10_c00120{height:18.142031px;}
.hc_c00120{height:33.692344px;}
.h11_c00120{height:36.284062px;}
.h9_c00120{height:38.875781px;}
.he_c00120{height:44.059219px;}
.h8_c00120{height:46.650937px;}
.h5_c00120{height:49.242656px;}
.ha_c00120{height:51.834375px;}
.h3_c00120{height:54.426094px;}
.hb_c00120{height:57.017812px;}
.h7_c00120{height:59.609531px;}
.h6_c00120{height:62.201250px;}
.hd_c00120{height:64.792969px;}
.h2_c00120{height:67.384687px;}
.h4_c00120{height:69.976406px;}
.hf_c00120{height:72.568125px;}
.h12_c00120{height:93.301875px;}
.h0_c00120{height:1152.720000px;}
.h1_c00120{height:1152.750000px;}
.w1_c00120{width:807.750000px;}
.w0_c00120{width:807.840000px;}
.x0_c00120{left:0.000000px;}
.x17_c00120{left:86.400000px;}
.x2_c00120{left:88.560000px;}
.x29_c00120{left:138.240000px;}
.x1d_c00120{left:139.680000px;}
.x3_c00120{left:160.560000px;}
.xa_c00120{left:162.000000px;}
.x1e_c00120{left:214.560000px;}
.x18_c00120{left:224.640000px;}
.x22_c00120{left:226.080000px;}
.x30_c00120{left:234.720000px;}
.xd_c00120{left:236.160000px;}
.xb_c00120{left:246.960000px;}
.x2b_c00120{left:256.320000px;}
.x1f_c00120{left:277.200000px;}
.x11_c00120{left:279.360000px;}
.xe_c00120{left:289.440000px;}
.x28_c00120{left:291.600000px;}
.x27_c00120{left:298.080000px;}
.x31_c00120{left:299.520000px;}
.x4_c00120{left:300.960000px;}
.x2c_c00120{left:308.880000px;}
.x24_c00120{left:320.400000px;}
.x2d_c00120{left:331.920000px;}
.xf_c00120{left:333.360000px;}
.x12_c00120{left:354.240000px;}
.xc_c00120{left:355.680000px;}
.x5_c00120{left:388.080000px;}
.x13_c00120{left:398.880000px;}
.x20_c00120{left:451.440000px;}
.x2e_c00120{left:471.600000px;}
.x14_c00120{left:484.560000px;}
.x21_c00120{left:506.160000px;}
.x15_c00120{left:528.480000px;}
.x23_c00120{left:570.960000px;}
.x6_c00120{left:572.400000px;}
.x19_c00120{left:583.200000px;}
.x1a_c00120{left:604.800000px;}
.x2f_c00120{left:624.960000px;}
.x7_c00120{left:626.400000px;}
.x2a_c00120{left:636.480000px;}
.x25_c00120{left:658.080000px;}
.x1b_c00120{left:659.520000px;}
.x26_c00120{left:691.920000px;}
.x8_c00120{left:693.360000px;}
.x1_c00120{left:712.800000px;}
.x1c_c00120{left:725.760000px;}
.x10_c00120{left:735.120000px;}
.x9_c00120{left:736.560000px;}
.x16_c00120{left:756.000000px;}
@media print{
.v0_c00120{vertical-align:0.000000pt;}
.ls0_c00120{letter-spacing:0.000000pt;}
.ws0_c00120{word-spacing:0.000000pt;}
.fse_c00120{font-size:17.920000pt;}
.fsa_c00120{font-size:33.280000pt;}
.fsf_c00120{font-size:35.840000pt;}
.fs7_c00120{font-size:38.400000pt;}
.fsc_c00120{font-size:43.520000pt;}
.fs6_c00120{font-size:46.080000pt;}
.fs3_c00120{font-size:48.640000pt;}
.fs8_c00120{font-size:51.200000pt;}
.fs1_c00120{font-size:53.760000pt;}
.fs9_c00120{font-size:56.320000pt;}
.fs5_c00120{font-size:58.880000pt;}
.fs4_c00120{font-size:61.440000pt;}
.fsb_c00120{font-size:64.000000pt;}
.fs0_c00120{font-size:66.560000pt;}
.fs2_c00120{font-size:69.120000pt;}
.fsd_c00120{font-size:71.680000pt;}
.fs10_c00120{font-size:92.160000pt;}
.y0_c00120{bottom:0.000000pt;}
.y6a_c00120{bottom:46.080000pt;}
.y69_c00120{bottom:47.360000pt;}
.y66_c00120{bottom:49.280000pt;}
.y68_c00120{bottom:51.200000pt;}
.y67_c00120{bottom:51.840000pt;}
.y65_c00120{bottom:53.760000pt;}
.y64_c00120{bottom:85.120000pt;}
.y63_c00120{bottom:85.760000pt;}
.y61_c00120{bottom:87.040000pt;}
.y5f_c00120{bottom:88.320000pt;}
.y62_c00120{bottom:88.960000pt;}
.y60_c00120{bottom:90.240000pt;}
.y5e_c00120{bottom:90.880000pt;}
.y5c_c00120{bottom:122.880000pt;}
.y5a_c00120{bottom:124.160000pt;}
.y5d_c00120{bottom:125.440000pt;}
.y5b_c00120{bottom:126.080000pt;}
.y58_c00120{bottom:128.640000pt;}
.y59_c00120{bottom:129.280000pt;}
.y55_c00120{bottom:155.520000pt;}
.y57_c00120{bottom:161.280000pt;}
.y56_c00120{bottom:162.560000pt;}
.y52_c00120{bottom:163.200000pt;}
.y54_c00120{bottom:163.840000pt;}
.y53_c00120{bottom:164.480000pt;}
.y51_c00120{bottom:166.400000pt;}
.y50_c00120{bottom:199.680000pt;}
.y4f_c00120{bottom:200.320000pt;}
.y4c_c00120{bottom:200.960000pt;}
.y4d_c00120{bottom:201.600000pt;}
.y4e_c00120{bottom:202.880000pt;}
.y4a_c00120{bottom:204.160000pt;}
.y4b_c00120{bottom:204.800000pt;}
.y47_c00120{bottom:239.360000pt;}
.y48_c00120{bottom:241.280000pt;}
.y49_c00120{bottom:244.480000pt;}
.y46_c00120{bottom:286.080000pt;}
.y44_c00120{bottom:286.720000pt;}
.y43_c00120{bottom:287.360000pt;}
.y45_c00120{bottom:288.000000pt;}
.y42_c00120{bottom:289.920000pt;}
.y3f_c00120{bottom:325.760000pt;}
.y40_c00120{bottom:327.040000pt;}
.y41_c00120{bottom:327.680000pt;}
.y3e_c00120{bottom:373.120000pt;}
.y3d_c00120{bottom:373.760000pt;}
.y3a_c00120{bottom:374.400000pt;}
.y39_c00120{bottom:375.040000pt;}
.y3b_c00120{bottom:375.680000pt;}
.y3c_c00120{bottom:376.320000pt;}
.y36_c00120{bottom:410.880000pt;}
.y38_c00120{bottom:411.520000pt;}
.y37_c00120{bottom:412.160000pt;}
.y35_c00120{bottom:414.080000pt;}
.y33_c00120{bottom:449.920000pt;}
.y34_c00120{bottom:451.840000pt;}
.y30_c00120{bottom:496.640000pt;}
.y32_c00120{bottom:497.280000pt;}
.y31_c00120{bottom:497.920000pt;}
.y2f_c00120{bottom:498.560000pt;}
.y2e_c00120{bottom:535.680000pt;}
.y2d_c00120{bottom:538.240000pt;}
.y2b_c00120{bottom:583.680000pt;}
.y29_c00120{bottom:584.320000pt;}
.y28_c00120{bottom:584.960000pt;}
.y2c_c00120{bottom:585.600000pt;}
.y2a_c00120{bottom:586.240000pt;}
.y25_c00120{bottom:621.440000pt;}
.y26_c00120{bottom:622.080000pt;}
.y27_c00120{bottom:623.360000pt;}
.y20_c00120{bottom:668.160000pt;}
.y1f_c00120{bottom:669.440000pt;}
.y24_c00120{bottom:670.720000pt;}
.y21_c00120{bottom:671.360000pt;}
.y22_c00120{bottom:672.640000pt;}
.y23_c00120{bottom:673.280000pt;}
.y1c_c00120{bottom:706.560000pt;}
.y1a_c00120{bottom:707.840000pt;}
.y1d_c00120{bottom:709.120000pt;}
.y1b_c00120{bottom:709.760000pt;}
.y1e_c00120{bottom:711.680000pt;}
.y14_c00120{bottom:744.320000pt;}
.y13_c00120{bottom:745.600000pt;}
.y15_c00120{bottom:746.240000pt;}
.y17_c00120{bottom:746.880000pt;}
.y18_c00120{bottom:747.520000pt;}
.y16_c00120{bottom:748.800000pt;}
.y19_c00120{bottom:750.080000pt;}
.y12_c00120{bottom:782.720000pt;}
.y10_c00120{bottom:784.000000pt;}
.y11_c00120{bottom:785.920000pt;}
.yc_c00120{bottom:821.760000pt;}
.ye_c00120{bottom:824.320000pt;}
.yd_c00120{bottom:824.960000pt;}
.yf_c00120{bottom:826.240000pt;}
.y8_c00120{bottom:859.520000pt;}
.yb_c00120{bottom:862.080000pt;}
.y9_c00120{bottom:862.720000pt;}
.ya_c00120{bottom:863.360000pt;}
.y2_c00120{bottom:897.920000pt;}
.y4_c00120{bottom:898.560000pt;}
.y3_c00120{bottom:899.840000pt;}
.y6_c00120{bottom:900.480000pt;}
.y7_c00120{bottom:901.120000pt;}
.y5_c00120{bottom:903.040000pt;}
.y1_c00120{bottom:963.200000pt;}
.h10_c00120{height:16.126250pt;}
.hc_c00120{height:29.948750pt;}
.h11_c00120{height:32.252500pt;}
.h9_c00120{height:34.556250pt;}
.he_c00120{height:39.163750pt;}
.h8_c00120{height:41.467500pt;}
.h5_c00120{height:43.771250pt;}
.ha_c00120{height:46.075000pt;}
.h3_c00120{height:48.378750pt;}
.hb_c00120{height:50.682500pt;}
.h7_c00120{height:52.986250pt;}
.h6_c00120{height:55.290000pt;}
.hd_c00120{height:57.593750pt;}
.h2_c00120{height:59.897500pt;}
.h4_c00120{height:62.201250pt;}
.hf_c00120{height:64.505000pt;}
.h12_c00120{height:82.935000pt;}
.h0_c00120{height:1024.640000pt;}
.h1_c00120{height:1024.666667pt;}
.w1_c00120{width:718.000000pt;}
.w0_c00120{width:718.080000pt;}
.x0_c00120{left:0.000000pt;}
.x17_c00120{left:76.800000pt;}
.x2_c00120{left:78.720000pt;}
.x29_c00120{left:122.880000pt;}
.x1d_c00120{left:124.160000pt;}
.x3_c00120{left:142.720000pt;}
.xa_c00120{left:144.000000pt;}
.x1e_c00120{left:190.720000pt;}
.x18_c00120{left:199.680000pt;}
.x22_c00120{left:200.960000pt;}
.x30_c00120{left:208.640000pt;}
.xd_c00120{left:209.920000pt;}
.xb_c00120{left:219.520000pt;}
.x2b_c00120{left:227.840000pt;}
.x1f_c00120{left:246.400000pt;}
.x11_c00120{left:248.320000pt;}
.xe_c00120{left:257.280000pt;}
.x28_c00120{left:259.200000pt;}
.x27_c00120{left:264.960000pt;}
.x31_c00120{left:266.240000pt;}
.x4_c00120{left:267.520000pt;}
.x2c_c00120{left:274.560000pt;}
.x24_c00120{left:284.800000pt;}
.x2d_c00120{left:295.040000pt;}
.xf_c00120{left:296.320000pt;}
.x12_c00120{left:314.880000pt;}
.xc_c00120{left:316.160000pt;}
.x5_c00120{left:344.960000pt;}
.x13_c00120{left:354.560000pt;}
.x20_c00120{left:401.280000pt;}
.x2e_c00120{left:419.200000pt;}
.x14_c00120{left:430.720000pt;}
.x21_c00120{left:449.920000pt;}
.x15_c00120{left:469.760000pt;}
.x23_c00120{left:507.520000pt;}
.x6_c00120{left:508.800000pt;}
.x19_c00120{left:518.400000pt;}
.x1a_c00120{left:537.600000pt;}
.x2f_c00120{left:555.520000pt;}
.x7_c00120{left:556.800000pt;}
.x2a_c00120{left:565.760000pt;}
.x25_c00120{left:584.960000pt;}
.x1b_c00120{left:586.240000pt;}
.x26_c00120{left:615.040000pt;}
.x8_c00120{left:616.320000pt;}
.x1_c00120{left:633.600000pt;}
.x1c_c00120{left:645.120000pt;}
.x10_c00120{left:653.440000pt;}
.x9_c00120{left:654.720000pt;}
.x16_c00120{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_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_67313148888869f68ebe0a85.woff2')format("woff");}.ff1_c00121{font-family:ff1_c00121;line-height:1.109863;font-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_c00121{transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);}
.ma_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);}
.m21_c00121{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);}
.m3d_c00121{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mf_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);}
.m1b_c00121{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00121{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m43_c00121{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m12_c00121{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m10_c00121{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m8_c00121{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00121{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m15_c00121{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m44_c00121{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00121{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00121{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m18_c00121{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m24_c00121{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mc_c00121{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m27_c00121{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m19_c00121{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m49_c00121{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00121{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00121{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m23_c00121{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m48_c00121{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m20_c00121{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m11_c00121{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);}
.m39_c00121{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1_c00121{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m22_c00121{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m5_c00121{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00121{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);}
.m36_c00121{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m7_c00121{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m13_c00121{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m0_c00121{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);}
.m31_c00121{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m14_c00121{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);}
.m45_c00121{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);}
.m4c_c00121{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);}
.m32_c00121{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);}
.m47_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);}
.m25_c00121{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m6_c00121{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m42_c00121{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);}
.m3c_c00121{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00121{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);}
.m41_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);}
.m1e_c00121{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m35_c00121{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);}
.m33_c00121{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m28_c00121{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00121{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);}
.m4_c00121{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m29_c00121{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);}
.m26_c00121{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m3_c00121{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m9_c00121{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m2_c00121{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.me_c00121{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00121{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);}
.m3e_c00121{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m46_c00121{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);}
.m2e_c00121{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m17_c00121{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);}
.m16_c00121{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);}
.m37_c00121{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00121{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);}
.mb_c00121{transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);}
.m40_c00121{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.md_c00121{transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00121{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);}
.m30_c00121{transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00121{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.m34_c00121{transform:matrix(0.967500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.967500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.967500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00121{transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);}
.v1_c00121{vertical-align:-5.760000px;}
.v2_c00121{vertical-align:-2.880000px;}
.v0_c00121{vertical-align:0.000000px;}
.ls1_c00121{letter-spacing:0.000000px;}
.ls0_c00121{letter-spacing:92.199120px;}
.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;}
}
.ws1_c00121{word-spacing:0.000000px;}
.ws0_c00121{word-spacing:10.267200px;}
.fc0_c00121{color:transparent;}
.fs12_c00121{font-size:17.280000px;}
.fs10_c00121{font-size:20.160000px;}
.fs11_c00121{font-size:23.040000px;}
.fs9_c00121{font-size:31.680000px;}
.fsd_c00121{font-size:34.560000px;}
.fse_c00121{font-size:37.440000px;}
.fs8_c00121{font-size:40.320000px;}
.fsf_c00121{font-size:46.080000px;}
.fsa_c00121{font-size:48.960000px;}
.fs1_c00121{font-size:51.840000px;}
.fs6_c00121{font-size:54.720000px;}
.fs3_c00121{font-size:57.600000px;}
.fs0_c00121{font-size:60.480000px;}
.fs2_c00121{font-size:63.360000px;}
.fs4_c00121{font-size:66.240000px;}
.fs5_c00121{font-size:69.120000px;}
.fsc_c00121{font-size:72.000000px;}
.fsb_c00121{font-size:74.880000px;}
.fs7_c00121{font-size:77.760000px;}
.y0_c00121{bottom:0.000000px;}
.y5a_c00121{bottom:84.240000px;}
.y6f_c00121{bottom:84.960000px;}
.y57_c00121{bottom:85.680000px;}
.y6e_c00121{bottom:87.840000px;}
.y56_c00121{bottom:88.560000px;}
.y59_c00121{bottom:89.280000px;}
.y58_c00121{bottom:90.000000px;}
.y54_c00121{bottom:128.880000px;}
.y55_c00121{bottom:130.320000px;}
.y53_c00121{bottom:131.760000px;}
.y52_c00121{bottom:182.160000px;}
.y6d_c00121{bottom:183.600000px;}
.y4f_c00121{bottom:185.040000px;}
.y50_c00121{bottom:185.760000px;}
.y51_c00121{bottom:187.200000px;}
.y4d_c00121{bottom:224.640000px;}
.y4e_c00121{bottom:225.360000px;}
.y6c_c00121{bottom:226.080000px;}
.y6b_c00121{bottom:226.800000px;}
.y6a_c00121{bottom:227.520000px;}
.y4a_c00121{bottom:228.240000px;}
.y4b_c00121{bottom:228.960000px;}
.y4c_c00121{bottom:232.560000px;}
.y47_c00121{bottom:268.560000px;}
.y48_c00121{bottom:270.000000px;}
.y49_c00121{bottom:270.720000px;}
.y46_c00121{bottom:321.120000px;}
.y45_c00121{bottom:321.840000px;}
.y69_c00121{bottom:323.280000px;}
.y43_c00121{bottom:324.000000px;}
.y44_c00121{bottom:325.440000px;}
.y42_c00121{bottom:364.320000px;}
.y67_c00121{bottom:365.040000px;}
.y66_c00121{bottom:365.760000px;}
.y40_c00121{bottom:366.480000px;}
.y68_c00121{bottom:367.200000px;}
.y41_c00121{bottom:368.640000px;}
.y3f_c00121{bottom:407.520000px;}
.y65_c00121{bottom:408.240000px;}
.y63_c00121{bottom:408.960000px;}
.y3e_c00121{bottom:409.680000px;}
.y64_c00121{bottom:410.400000px;}
.y39_c00121{bottom:450.720000px;}
.y3d_c00121{bottom:452.160000px;}
.y3a_c00121{bottom:452.880000px;}
.y3c_c00121{bottom:454.320000px;}
.y3b_c00121{bottom:456.480000px;}
.y38_c00121{bottom:505.440000px;}
.y60_c00121{bottom:506.160000px;}
.y36_c00121{bottom:506.880000px;}
.y37_c00121{bottom:507.600000px;}
.y62_c00121{bottom:508.320000px;}
.y61_c00121{bottom:509.040000px;}
.y33_c00121{bottom:547.920000px;}
.y32_c00121{bottom:549.360000px;}
.y35_c00121{bottom:550.800000px;}
.y34_c00121{bottom:551.520000px;}
.y31_c00121{bottom:589.680000px;}
.y30_c00121{bottom:591.120000px;}
.y5f_c00121{bottom:591.840000px;}
.y5e_c00121{bottom:593.280000px;}
.y5b_c00121{bottom:594.000000px;}
.y5d_c00121{bottom:594.720000px;}
.y5c_c00121{bottom:595.440000px;}
.y2d_c00121{bottom:632.880000px;}
.y2f_c00121{bottom:635.760000px;}
.y2e_c00121{bottom:637.200000px;}
.y27_c00121{bottom:686.160000px;}
.y28_c00121{bottom:686.880000px;}
.y26_c00121{bottom:688.320000px;}
.y2b_c00121{bottom:689.040000px;}
.y29_c00121{bottom:689.760000px;}
.y2c_c00121{bottom:690.480000px;}
.y2a_c00121{bottom:691.200000px;}
.y14_c00121{bottom:729.360000px;}
.y13_c00121{bottom:730.080000px;}
.y23_c00121{bottom:732.240000px;}
.y24_c00121{bottom:733.680000px;}
.y25_c00121{bottom:735.840000px;}
.y12_c00121{bottom:771.840000px;}
.y11_c00121{bottom:773.280000px;}
.y21_c00121{bottom:775.440000px;}
.y22_c00121{bottom:778.320000px;}
.y10_c00121{bottom:815.040000px;}
.yd_c00121{bottom:815.760000px;}
.ye_c00121{bottom:817.200000px;}
.yf_c00121{bottom:818.640000px;}
.y1d_c00121{bottom:819.360000px;}
.y1e_c00121{bottom:821.520000px;}
.y20_c00121{bottom:822.240000px;}
.y1f_c00121{bottom:822.960000px;}
.ya_c00121{bottom:858.240000px;}
.yb_c00121{bottom:861.120000px;}
.yc_c00121{bottom:861.840000px;}
.y9_c00121{bottom:911.520000px;}
.y8_c00121{bottom:912.960000px;}
.y1b_c00121{bottom:915.840000px;}
.y18_c00121{bottom:916.560000px;}
.y1c_c00121{bottom:917.280000px;}
.y1a_c00121{bottom:918.720000px;}
.y19_c00121{bottom:919.440000px;}
.y5_c00121{bottom:954.720000px;}
.y6_c00121{bottom:956.160000px;}
.y7_c00121{bottom:958.320000px;}
.y1_c00121{bottom:1009.440000px;}
.y3_c00121{bottom:1010.160000px;}
.y2_c00121{bottom:1011.600000px;}
.y4_c00121{bottom:1012.320000px;}
.y16_c00121{bottom:1013.760000px;}
.y17_c00121{bottom:1016.640000px;}
.y15_c00121{bottom:1087.200000px;}
.h14_c00121{height:15.550313px;}
.h12_c00121{height:18.142031px;}
.h13_c00121{height:20.733750px;}
.hb_c00121{height:28.508906px;}
.hf_c00121{height:31.100625px;}
.h10_c00121{height:33.692344px;}
.ha_c00121{height:36.284062px;}
.h11_c00121{height:41.467500px;}
.hc_c00121{height:44.059219px;}
.h3_c00121{height:46.650937px;}
.h8_c00121{height:49.242656px;}
.h5_c00121{height:51.834375px;}
.h2_c00121{height:54.426094px;}
.h4_c00121{height:57.017812px;}
.h6_c00121{height:59.609531px;}
.h7_c00121{height:62.201250px;}
.he_c00121{height:64.792969px;}
.hd_c00121{height:67.384687px;}
.h9_c00121{height:69.976406px;}
.h0_c00121{height:1152.720000px;}
.h1_c00121{height:1152.750000px;}
.w1_c00121{width:807.000000px;}
.w0_c00121{width:807.120000px;}
.x0_c00121{left:0.000000px;}
.x1_c00121{left:79.200000px;}
.x2b_c00121{left:81.360000px;}
.x28_c00121{left:112.320000px;}
.xb_c00121{left:122.400000px;}
.x29_c00121{left:123.840000px;}
.x5_c00121{left:131.760000px;}
.x26_c00121{left:133.200000px;}
.x8_c00121{left:151.920000px;}
.x2_c00121{left:153.360000px;}
.x2c_c00121{left:155.520000px;}
.x2a_c00121{left:177.120000px;}
.x1f_c00121{left:218.880000px;}
.x6_c00121{left:228.960000px;}
.x27_c00121{left:230.400000px;}
.x3_c00121{left:237.600000px;}
.x20_c00121{left:239.760000px;}
.x2d_c00121{left:251.280000px;}
.x23_c00121{left:259.920000px;}
.x24_c00121{left:272.160000px;}
.xc_c00121{left:280.800000px;}
.x25_c00121{left:282.960000px;}
.x7_c00121{left:291.600000px;}
.x21_c00121{left:293.040000px;}
.x4_c00121{left:302.400000px;}
.x1c_c00121{left:303.840000px;}
.x9_c00121{left:313.200000px;}
.x2e_c00121{left:315.360000px;}
.xa_c00121{left:336.240000px;}
.xd_c00121{left:346.320000px;}
.x22_c00121{left:390.960000px;}
.x2f_c00121{left:413.280000px;}
.x30_c00121{left:455.760000px;}
.x1d_c00121{left:476.640000px;}
.xf_c00121{left:563.040000px;}
.x1b_c00121{left:564.480000px;}
.x31_c00121{left:576.000000px;}
.x1e_c00121{left:596.880000px;}
.x32_c00121{left:598.320000px;}
.x13_c00121{left:618.480000px;}
.x35_c00121{left:619.920000px;}
.x14_c00121{left:628.560000px;}
.x15_c00121{left:642.960000px;}
.x10_c00121{left:652.320000px;}
.x11_c00121{left:684.720000px;}
.x33_c00121{left:686.160000px;}
.xe_c00121{left:693.360000px;}
.x1a_c00121{left:695.520000px;}
.x12_c00121{left:717.120000px;}
.x16_c00121{left:727.200000px;}
.x18_c00121{left:728.640000px;}
.x36_c00121{left:730.080000px;}
.x19_c00121{left:748.080000px;}
.x17_c00121{left:749.520000px;}
.x34_c00121{left:750.960000px;}
@media print{
.v1_c00121{vertical-align:-5.120000pt;}
.v2_c00121{vertical-align:-2.560000pt;}
.v0_c00121{vertical-align:0.000000pt;}
.ls1_c00121{letter-spacing:0.000000pt;}
.ls0_c00121{letter-spacing:81.954773pt;}
.ws1_c00121{word-spacing:0.000000pt;}
.ws0_c00121{word-spacing:9.126400pt;}
.fs12_c00121{font-size:15.360000pt;}
.fs10_c00121{font-size:17.920000pt;}
.fs11_c00121{font-size:20.480000pt;}
.fs9_c00121{font-size:28.160000pt;}
.fsd_c00121{font-size:30.720000pt;}
.fse_c00121{font-size:33.280000pt;}
.fs8_c00121{font-size:35.840000pt;}
.fsf_c00121{font-size:40.960000pt;}
.fsa_c00121{font-size:43.520000pt;}
.fs1_c00121{font-size:46.080000pt;}
.fs6_c00121{font-size:48.640000pt;}
.fs3_c00121{font-size:51.200000pt;}
.fs0_c00121{font-size:53.760000pt;}
.fs2_c00121{font-size:56.320000pt;}
.fs4_c00121{font-size:58.880000pt;}
.fs5_c00121{font-size:61.440000pt;}
.fsc_c00121{font-size:64.000000pt;}
.fsb_c00121{font-size:66.560000pt;}
.fs7_c00121{font-size:69.120000pt;}
.y0_c00121{bottom:0.000000pt;}
.y5a_c00121{bottom:74.880000pt;}
.y6f_c00121{bottom:75.520000pt;}
.y57_c00121{bottom:76.160000pt;}
.y6e_c00121{bottom:78.080000pt;}
.y56_c00121{bottom:78.720000pt;}
.y59_c00121{bottom:79.360000pt;}
.y58_c00121{bottom:80.000000pt;}
.y54_c00121{bottom:114.560000pt;}
.y55_c00121{bottom:115.840000pt;}
.y53_c00121{bottom:117.120000pt;}
.y52_c00121{bottom:161.920000pt;}
.y6d_c00121{bottom:163.200000pt;}
.y4f_c00121{bottom:164.480000pt;}
.y50_c00121{bottom:165.120000pt;}
.y51_c00121{bottom:166.400000pt;}
.y4d_c00121{bottom:199.680000pt;}
.y4e_c00121{bottom:200.320000pt;}
.y6c_c00121{bottom:200.960000pt;}
.y6b_c00121{bottom:201.600000pt;}
.y6a_c00121{bottom:202.240000pt;}
.y4a_c00121{bottom:202.880000pt;}
.y4b_c00121{bottom:203.520000pt;}
.y4c_c00121{bottom:206.720000pt;}
.y47_c00121{bottom:238.720000pt;}
.y48_c00121{bottom:240.000000pt;}
.y49_c00121{bottom:240.640000pt;}
.y46_c00121{bottom:285.440000pt;}
.y45_c00121{bottom:286.080000pt;}
.y69_c00121{bottom:287.360000pt;}
.y43_c00121{bottom:288.000000pt;}
.y44_c00121{bottom:289.280000pt;}
.y42_c00121{bottom:323.840000pt;}
.y67_c00121{bottom:324.480000pt;}
.y66_c00121{bottom:325.120000pt;}
.y40_c00121{bottom:325.760000pt;}
.y68_c00121{bottom:326.400000pt;}
.y41_c00121{bottom:327.680000pt;}
.y3f_c00121{bottom:362.240000pt;}
.y65_c00121{bottom:362.880000pt;}
.y63_c00121{bottom:363.520000pt;}
.y3e_c00121{bottom:364.160000pt;}
.y64_c00121{bottom:364.800000pt;}
.y39_c00121{bottom:400.640000pt;}
.y3d_c00121{bottom:401.920000pt;}
.y3a_c00121{bottom:402.560000pt;}
.y3c_c00121{bottom:403.840000pt;}
.y3b_c00121{bottom:405.760000pt;}
.y38_c00121{bottom:449.280000pt;}
.y60_c00121{bottom:449.920000pt;}
.y36_c00121{bottom:450.560000pt;}
.y37_c00121{bottom:451.200000pt;}
.y62_c00121{bottom:451.840000pt;}
.y61_c00121{bottom:452.480000pt;}
.y33_c00121{bottom:487.040000pt;}
.y32_c00121{bottom:488.320000pt;}
.y35_c00121{bottom:489.600000pt;}
.y34_c00121{bottom:490.240000pt;}
.y31_c00121{bottom:524.160000pt;}
.y30_c00121{bottom:525.440000pt;}
.y5f_c00121{bottom:526.080000pt;}
.y5e_c00121{bottom:527.360000pt;}
.y5b_c00121{bottom:528.000000pt;}
.y5d_c00121{bottom:528.640000pt;}
.y5c_c00121{bottom:529.280000pt;}
.y2d_c00121{bottom:562.560000pt;}
.y2f_c00121{bottom:565.120000pt;}
.y2e_c00121{bottom:566.400000pt;}
.y27_c00121{bottom:609.920000pt;}
.y28_c00121{bottom:610.560000pt;}
.y26_c00121{bottom:611.840000pt;}
.y2b_c00121{bottom:612.480000pt;}
.y29_c00121{bottom:613.120000pt;}
.y2c_c00121{bottom:613.760000pt;}
.y2a_c00121{bottom:614.400000pt;}
.y14_c00121{bottom:648.320000pt;}
.y13_c00121{bottom:648.960000pt;}
.y23_c00121{bottom:650.880000pt;}
.y24_c00121{bottom:652.160000pt;}
.y25_c00121{bottom:654.080000pt;}
.y12_c00121{bottom:686.080000pt;}
.y11_c00121{bottom:687.360000pt;}
.y21_c00121{bottom:689.280000pt;}
.y22_c00121{bottom:691.840000pt;}
.y10_c00121{bottom:724.480000pt;}
.yd_c00121{bottom:725.120000pt;}
.ye_c00121{bottom:726.400000pt;}
.yf_c00121{bottom:727.680000pt;}
.y1d_c00121{bottom:728.320000pt;}
.y1e_c00121{bottom:730.240000pt;}
.y20_c00121{bottom:730.880000pt;}
.y1f_c00121{bottom:731.520000pt;}
.ya_c00121{bottom:762.880000pt;}
.yb_c00121{bottom:765.440000pt;}
.yc_c00121{bottom:766.080000pt;}
.y9_c00121{bottom:810.240000pt;}
.y8_c00121{bottom:811.520000pt;}
.y1b_c00121{bottom:814.080000pt;}
.y18_c00121{bottom:814.720000pt;}
.y1c_c00121{bottom:815.360000pt;}
.y1a_c00121{bottom:816.640000pt;}
.y19_c00121{bottom:817.280000pt;}
.y5_c00121{bottom:848.640000pt;}
.y6_c00121{bottom:849.920000pt;}
.y7_c00121{bottom:851.840000pt;}
.y1_c00121{bottom:897.280000pt;}
.y3_c00121{bottom:897.920000pt;}
.y2_c00121{bottom:899.200000pt;}
.y4_c00121{bottom:899.840000pt;}
.y16_c00121{bottom:901.120000pt;}
.y17_c00121{bottom:903.680000pt;}
.y15_c00121{bottom:966.400000pt;}
.h14_c00121{height:13.822500pt;}
.h12_c00121{height:16.126250pt;}
.h13_c00121{height:18.430000pt;}
.hb_c00121{height:25.341250pt;}
.hf_c00121{height:27.645000pt;}
.h10_c00121{height:29.948750pt;}
.ha_c00121{height:32.252500pt;}
.h11_c00121{height:36.860000pt;}
.hc_c00121{height:39.163750pt;}
.h3_c00121{height:41.467500pt;}
.h8_c00121{height:43.771250pt;}
.h5_c00121{height:46.075000pt;}
.h2_c00121{height:48.378750pt;}
.h4_c00121{height:50.682500pt;}
.h6_c00121{height:52.986250pt;}
.h7_c00121{height:55.290000pt;}
.he_c00121{height:57.593750pt;}
.hd_c00121{height:59.897500pt;}
.h9_c00121{height:62.201250pt;}
.h0_c00121{height:1024.640000pt;}
.h1_c00121{height:1024.666667pt;}
.w1_c00121{width:717.333333pt;}
.w0_c00121{width:717.440000pt;}
.x0_c00121{left:0.000000pt;}
.x1_c00121{left:70.400000pt;}
.x2b_c00121{left:72.320000pt;}
.x28_c00121{left:99.840000pt;}
.xb_c00121{left:108.800000pt;}
.x29_c00121{left:110.080000pt;}
.x5_c00121{left:117.120000pt;}
.x26_c00121{left:118.400000pt;}
.x8_c00121{left:135.040000pt;}
.x2_c00121{left:136.320000pt;}
.x2c_c00121{left:138.240000pt;}
.x2a_c00121{left:157.440000pt;}
.x1f_c00121{left:194.560000pt;}
.x6_c00121{left:203.520000pt;}
.x27_c00121{left:204.800000pt;}
.x3_c00121{left:211.200000pt;}
.x20_c00121{left:213.120000pt;}
.x2d_c00121{left:223.360000pt;}
.x23_c00121{left:231.040000pt;}
.x24_c00121{left:241.920000pt;}
.xc_c00121{left:249.600000pt;}
.x25_c00121{left:251.520000pt;}
.x7_c00121{left:259.200000pt;}
.x21_c00121{left:260.480000pt;}
.x4_c00121{left:268.800000pt;}
.x1c_c00121{left:270.080000pt;}
.x9_c00121{left:278.400000pt;}
.x2e_c00121{left:280.320000pt;}
.xa_c00121{left:298.880000pt;}
.xd_c00121{left:307.840000pt;}
.x22_c00121{left:347.520000pt;}
.x2f_c00121{left:367.360000pt;}
.x30_c00121{left:405.120000pt;}
.x1d_c00121{left:423.680000pt;}
.xf_c00121{left:500.480000pt;}
.x1b_c00121{left:501.760000pt;}
.x31_c00121{left:512.000000pt;}
.x1e_c00121{left:530.560000pt;}
.x32_c00121{left:531.840000pt;}
.x13_c00121{left:549.760000pt;}
.x35_c00121{left:551.040000pt;}
.x14_c00121{left:558.720000pt;}
.x15_c00121{left:571.520000pt;}
.x10_c00121{left:579.840000pt;}
.x11_c00121{left:608.640000pt;}
.x33_c00121{left:609.920000pt;}
.xe_c00121{left:616.320000pt;}
.x1a_c00121{left:618.240000pt;}
.x12_c00121{left:637.440000pt;}
.x16_c00121{left:646.400000pt;}
.x18_c00121{left:647.680000pt;}
.x36_c00121{left:648.960000pt;}
.x19_c00121{left:664.960000pt;}
.x17_c00121{left:666.240000pt;}
.x34_c00121{left:667.520000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_57d3185629734a7bdf2d3dd8.woff2')format("woff");}.ff1_c00122{font-family:ff1_c00122;line-height:1.109863;font-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_c00122{transform:matrix(0.197600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197600,0.000000,0.000000,0.250000,0,0);}
.md_c00122{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m24_c00122{transform:matrix(0.223575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223575,0.000000,0.000000,0.250000,0,0);}
.m2b_c00122{transform:matrix(0.225100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225100,0.000000,0.000000,0.250000,0,0);}
.m27_c00122{transform:matrix(0.233400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233400,0.000000,0.000000,0.250000,0,0);}
.m37_c00122{transform:matrix(0.235325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235325,0.000000,0.000000,0.250000,0,0);}
.m1a_c00122{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m3a_c00122{transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);}
.m1d_c00122{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m7_c00122{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.ma_c00122{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m6_c00122{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m42_c00122{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m16_c00122{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00122{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m29_c00122{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00122{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m33_c00122{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m19_c00122{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);}
.m34_c00122{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m13_c00122{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m10_c00122{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m15_c00122{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m12_c00122{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00122{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00122{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m21_c00122{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m8_c00122{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.mb_c00122{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m20_c00122{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mf_c00122{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m9_c00122{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m14_c00122{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m28_c00122{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00122{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00122{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m31_c00122{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m32_c00122{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m41_c00122{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00122{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m5_c00122{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);}
.m43_c00122{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.mc_c00122{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);}
.m48_c00122{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m2_c00122{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m26_c00122{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m0_c00122{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);}
.m30_c00122{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00122{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);}
.m3f_c00122{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);}
.m36_c00122{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);}
.m38_c00122{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m39_c00122{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00122{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);}
.m11_c00122{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m47_c00122{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);}
.m44_c00122{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m17_c00122{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m46_c00122{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m1_c00122{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m22_c00122{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m25_c00122{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.me_c00122{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00122{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00122{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);}
.m45_c00122{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m4_c00122{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00122{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m3_c00122{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m49_c00122{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00122{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.m40_c00122{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);}
.m35_c00122{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.m23_c00122{transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);}
.v1_c00122{vertical-align:-2.880000px;}
.v0_c00122{vertical-align:0.000000px;}
.ls1_c00122{letter-spacing:0.000000px;}
.ls0_c00122{letter-spacing:90.638400px;}
.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;}
}
.ws2_c00122{word-spacing:0.000000px;}
.ws0_c00122{word-spacing:6.760092px;}
.ws1_c00122{word-spacing:9.210378px;}
.fc0_c00122{color:transparent;}
.fsc_c00122{font-size:17.280000px;}
.fse_c00122{font-size:23.040000px;}
.fsb_c00122{font-size:25.920000px;}
.fs12_c00122{font-size:28.800000px;}
.fs10_c00122{font-size:40.320000px;}
.fs3_c00122{font-size:43.200000px;}
.fsd_c00122{font-size:48.960000px;}
.fs2_c00122{font-size:51.840000px;}
.fsa_c00122{font-size:54.720000px;}
.fs8_c00122{font-size:57.600000px;}
.fs6_c00122{font-size:60.480000px;}
.fs4_c00122{font-size:63.360000px;}
.fs1_c00122{font-size:66.240000px;}
.fs7_c00122{font-size:69.120000px;}
.fs11_c00122{font-size:72.000000px;}
.fs0_c00122{font-size:74.880000px;}
.fs5_c00122{font-size:77.760000px;}
.fsf_c00122{font-size:80.640000px;}
.fs9_c00122{font-size:103.680000px;}
.y0_c00122{bottom:0.000000px;}
.y5a_c00122{bottom:82.800000px;}
.y4d_c00122{bottom:84.240000px;}
.y4c_c00122{bottom:84.960000px;}
.y4b_c00122{bottom:89.280000px;}
.y59_c00122{bottom:126.720000px;}
.y4a_c00122{bottom:127.440000px;}
.y58_c00122{bottom:128.880000px;}
.y49_c00122{bottom:131.760000px;}
.y56_c00122{bottom:169.920000px;}
.y57_c00122{bottom:170.640000px;}
.y48_c00122{bottom:171.360000px;}
.y46_c00122{bottom:174.960000px;}
.y47_c00122{bottom:177.840000px;}
.y55_c00122{bottom:211.680000px;}
.y54_c00122{bottom:213.120000px;}
.y45_c00122{bottom:213.840000px;}
.y53_c00122{bottom:214.560000px;}
.y44_c00122{bottom:217.440000px;}
.y43_c00122{bottom:256.320000px;}
.y41_c00122{bottom:257.040000px;}
.y52_c00122{bottom:257.760000px;}
.y42_c00122{bottom:259.200000px;}
.y40_c00122{bottom:260.640000px;}
.y3f_c00122{bottom:299.520000px;}
.y50_c00122{bottom:300.240000px;}
.y51_c00122{bottom:302.400000px;}
.y3e_c00122{bottom:303.840000px;}
.y3d_c00122{bottom:342.720000px;}
.y4e_c00122{bottom:343.440000px;}
.y4f_c00122{bottom:344.160000px;}
.y3c_c00122{bottom:347.040000px;}
.y37_c00122{bottom:439.200000px;}
.y3a_c00122{bottom:440.640000px;}
.y39_c00122{bottom:441.360000px;}
.y36_c00122{bottom:442.080000px;}
.y3b_c00122{bottom:442.800000px;}
.y35_c00122{bottom:481.680000px;}
.y38_c00122{bottom:483.840000px;}
.y33_c00122{bottom:486.000000px;}
.y34_c00122{bottom:488.880000px;}
.y32_c00122{bottom:524.880000px;}
.y2e_c00122{bottom:527.040000px;}
.y2d_c00122{bottom:527.760000px;}
.y2f_c00122{bottom:529.920000px;}
.y30_c00122{bottom:568.080000px;}
.y31_c00122{bottom:568.800000px;}
.y2b_c00122{bottom:570.240000px;}
.y2c_c00122{bottom:570.960000px;}
.y29_c00122{bottom:612.000000px;}
.y27_c00122{bottom:612.720000px;}
.y2a_c00122{bottom:613.440000px;}
.y28_c00122{bottom:614.880000px;}
.y22_c00122{bottom:653.040000px;}
.y25_c00122{bottom:654.480000px;}
.y23_c00122{bottom:655.200000px;}
.y26_c00122{bottom:655.920000px;}
.y20_c00122{bottom:656.640000px;}
.y1f_c00122{bottom:657.360000px;}
.y24_c00122{bottom:658.800000px;}
.y21_c00122{bottom:660.240000px;}
.y1c_c00122{bottom:696.240000px;}
.y1a_c00122{bottom:698.400000px;}
.y19_c00122{bottom:699.120000px;}
.y1b_c00122{bottom:699.840000px;}
.y1d_c00122{bottom:700.560000px;}
.y1e_c00122{bottom:702.000000px;}
.y17_c00122{bottom:734.400000px;}
.y15_c00122{bottom:739.440000px;}
.y14_c00122{bottom:742.320000px;}
.y16_c00122{bottom:743.040000px;}
.y18_c00122{bottom:743.760000px;}
.y10_c00122{bottom:783.360000px;}
.ye_c00122{bottom:784.080000px;}
.yf_c00122{bottom:786.240000px;}
.y13_c00122{bottom:788.400000px;}
.yd_c00122{bottom:825.120000px;}
.yc_c00122{bottom:826.560000px;}
.y11_c00122{bottom:829.440000px;}
.y12_c00122{bottom:830.880000px;}
.y8_c00122{bottom:922.320000px;}
.ya_c00122{bottom:926.640000px;}
.yb_c00122{bottom:928.800000px;}
.y7_c00122{bottom:965.520000px;}
.y6_c00122{bottom:966.240000px;}
.y9_c00122{bottom:969.120000px;}
.y2_c00122{bottom:1008.720000px;}
.y3_c00122{bottom:1009.440000px;}
.y5_c00122{bottom:1011.600000px;}
.y4_c00122{bottom:1012.320000px;}
.y1_c00122{bottom:1094.400000px;}
.he_c00122{height:15.550313px;}
.h10_c00122{height:20.733750px;}
.hd_c00122{height:23.325469px;}
.h14_c00122{height:25.917187px;}
.h12_c00122{height:36.284062px;}
.h5_c00122{height:38.875781px;}
.hf_c00122{height:44.059219px;}
.h4_c00122{height:46.650937px;}
.hc_c00122{height:49.242656px;}
.ha_c00122{height:51.834375px;}
.h8_c00122{height:54.426094px;}
.h6_c00122{height:57.017812px;}
.h3_c00122{height:59.609531px;}
.h9_c00122{height:62.201250px;}
.h13_c00122{height:64.792969px;}
.h2_c00122{height:67.384687px;}
.h7_c00122{height:69.976406px;}
.h11_c00122{height:72.568125px;}
.hb_c00122{height:93.301875px;}
.h0_c00122{height:1153.440000px;}
.h1_c00122{height:1153.500000px;}
.w1_c00122{width:809.250000px;}
.w0_c00122{width:809.280000px;}
.x0_c00122{left:0.000000px;}
.x6_c00122{left:77.040000px;}
.x17_c00122{left:119.520000px;}
.x26_c00122{left:128.160000px;}
.x2_c00122{left:129.600000px;}
.xd_c00122{left:149.040000px;}
.x7_c00122{left:150.480000px;}
.x27_c00122{left:151.920000px;}
.x23_c00122{left:172.800000px;}
.x25_c00122{left:216.000000px;}
.xe_c00122{left:225.360000px;}
.x3_c00122{left:226.800000px;}
.x1d_c00122{left:236.160000px;}
.x18_c00122{left:246.960000px;}
.x14_c00122{left:267.840000px;}
.x10_c00122{left:269.280000px;}
.x21_c00122{left:280.080000px;}
.x4_c00122{left:289.440000px;}
.x11_c00122{left:311.040000px;}
.x5_c00122{left:312.480000px;}
.x28_c00122{left:334.080000px;}
.x1e_c00122{left:344.880000px;}
.x22_c00122{left:365.040000px;}
.x24_c00122{left:387.360000px;}
.x19_c00122{left:430.560000px;}
.x1a_c00122{left:516.960000px;}
.x8_c00122{left:561.600000px;}
.x12_c00122{left:572.400000px;}
.x1f_c00122{left:594.000000px;}
.x13_c00122{left:595.440000px;}
.x9_c00122{left:615.600000px;}
.x29_c00122{left:627.120000px;}
.x15_c00122{left:648.000000px;}
.xb_c00122{left:649.440000px;}
.x16_c00122{left:680.400000px;}
.x1b_c00122{left:681.840000px;}
.x20_c00122{left:692.640000px;}
.x1_c00122{left:695.520000px;}
.xf_c00122{left:714.960000px;}
.x1c_c00122{left:723.600000px;}
.xa_c00122{left:725.760000px;}
.xc_c00122{left:745.920000px;}
@media print{
.v1_c00122{vertical-align:-2.560000pt;}
.v0_c00122{vertical-align:0.000000pt;}
.ls1_c00122{letter-spacing:0.000000pt;}
.ls0_c00122{letter-spacing:80.567467pt;}
.ws2_c00122{word-spacing:0.000000pt;}
.ws0_c00122{word-spacing:6.008970pt;}
.ws1_c00122{word-spacing:8.187003pt;}
.fsc_c00122{font-size:15.360000pt;}
.fse_c00122{font-size:20.480000pt;}
.fsb_c00122{font-size:23.040000pt;}
.fs12_c00122{font-size:25.600000pt;}
.fs10_c00122{font-size:35.840000pt;}
.fs3_c00122{font-size:38.400000pt;}
.fsd_c00122{font-size:43.520000pt;}
.fs2_c00122{font-size:46.080000pt;}
.fsa_c00122{font-size:48.640000pt;}
.fs8_c00122{font-size:51.200000pt;}
.fs6_c00122{font-size:53.760000pt;}
.fs4_c00122{font-size:56.320000pt;}
.fs1_c00122{font-size:58.880000pt;}
.fs7_c00122{font-size:61.440000pt;}
.fs11_c00122{font-size:64.000000pt;}
.fs0_c00122{font-size:66.560000pt;}
.fs5_c00122{font-size:69.120000pt;}
.fsf_c00122{font-size:71.680000pt;}
.fs9_c00122{font-size:92.160000pt;}
.y0_c00122{bottom:0.000000pt;}
.y5a_c00122{bottom:73.600000pt;}
.y4d_c00122{bottom:74.880000pt;}
.y4c_c00122{bottom:75.520000pt;}
.y4b_c00122{bottom:79.360000pt;}
.y59_c00122{bottom:112.640000pt;}
.y4a_c00122{bottom:113.280000pt;}
.y58_c00122{bottom:114.560000pt;}
.y49_c00122{bottom:117.120000pt;}
.y56_c00122{bottom:151.040000pt;}
.y57_c00122{bottom:151.680000pt;}
.y48_c00122{bottom:152.320000pt;}
.y46_c00122{bottom:155.520000pt;}
.y47_c00122{bottom:158.080000pt;}
.y55_c00122{bottom:188.160000pt;}
.y54_c00122{bottom:189.440000pt;}
.y45_c00122{bottom:190.080000pt;}
.y53_c00122{bottom:190.720000pt;}
.y44_c00122{bottom:193.280000pt;}
.y43_c00122{bottom:227.840000pt;}
.y41_c00122{bottom:228.480000pt;}
.y52_c00122{bottom:229.120000pt;}
.y42_c00122{bottom:230.400000pt;}
.y40_c00122{bottom:231.680000pt;}
.y3f_c00122{bottom:266.240000pt;}
.y50_c00122{bottom:266.880000pt;}
.y51_c00122{bottom:268.800000pt;}
.y3e_c00122{bottom:270.080000pt;}
.y3d_c00122{bottom:304.640000pt;}
.y4e_c00122{bottom:305.280000pt;}
.y4f_c00122{bottom:305.920000pt;}
.y3c_c00122{bottom:308.480000pt;}
.y37_c00122{bottom:390.400000pt;}
.y3a_c00122{bottom:391.680000pt;}
.y39_c00122{bottom:392.320000pt;}
.y36_c00122{bottom:392.960000pt;}
.y3b_c00122{bottom:393.600000pt;}
.y35_c00122{bottom:428.160000pt;}
.y38_c00122{bottom:430.080000pt;}
.y33_c00122{bottom:432.000000pt;}
.y34_c00122{bottom:434.560000pt;}
.y32_c00122{bottom:466.560000pt;}
.y2e_c00122{bottom:468.480000pt;}
.y2d_c00122{bottom:469.120000pt;}
.y2f_c00122{bottom:471.040000pt;}
.y30_c00122{bottom:504.960000pt;}
.y31_c00122{bottom:505.600000pt;}
.y2b_c00122{bottom:506.880000pt;}
.y2c_c00122{bottom:507.520000pt;}
.y29_c00122{bottom:544.000000pt;}
.y27_c00122{bottom:544.640000pt;}
.y2a_c00122{bottom:545.280000pt;}
.y28_c00122{bottom:546.560000pt;}
.y22_c00122{bottom:580.480000pt;}
.y25_c00122{bottom:581.760000pt;}
.y23_c00122{bottom:582.400000pt;}
.y26_c00122{bottom:583.040000pt;}
.y20_c00122{bottom:583.680000pt;}
.y1f_c00122{bottom:584.320000pt;}
.y24_c00122{bottom:585.600000pt;}
.y21_c00122{bottom:586.880000pt;}
.y1c_c00122{bottom:618.880000pt;}
.y1a_c00122{bottom:620.800000pt;}
.y19_c00122{bottom:621.440000pt;}
.y1b_c00122{bottom:622.080000pt;}
.y1d_c00122{bottom:622.720000pt;}
.y1e_c00122{bottom:624.000000pt;}
.y17_c00122{bottom:652.800000pt;}
.y15_c00122{bottom:657.280000pt;}
.y14_c00122{bottom:659.840000pt;}
.y16_c00122{bottom:660.480000pt;}
.y18_c00122{bottom:661.120000pt;}
.y10_c00122{bottom:696.320000pt;}
.ye_c00122{bottom:696.960000pt;}
.yf_c00122{bottom:698.880000pt;}
.y13_c00122{bottom:700.800000pt;}
.yd_c00122{bottom:733.440000pt;}
.yc_c00122{bottom:734.720000pt;}
.y11_c00122{bottom:737.280000pt;}
.y12_c00122{bottom:738.560000pt;}
.y8_c00122{bottom:819.840000pt;}
.ya_c00122{bottom:823.680000pt;}
.yb_c00122{bottom:825.600000pt;}
.y7_c00122{bottom:858.240000pt;}
.y6_c00122{bottom:858.880000pt;}
.y9_c00122{bottom:861.440000pt;}
.y2_c00122{bottom:896.640000pt;}
.y3_c00122{bottom:897.280000pt;}
.y5_c00122{bottom:899.200000pt;}
.y4_c00122{bottom:899.840000pt;}
.y1_c00122{bottom:972.800000pt;}
.he_c00122{height:13.822500pt;}
.h10_c00122{height:18.430000pt;}
.hd_c00122{height:20.733750pt;}
.h14_c00122{height:23.037500pt;}
.h12_c00122{height:32.252500pt;}
.h5_c00122{height:34.556250pt;}
.hf_c00122{height:39.163750pt;}
.h4_c00122{height:41.467500pt;}
.hc_c00122{height:43.771250pt;}
.ha_c00122{height:46.075000pt;}
.h8_c00122{height:48.378750pt;}
.h6_c00122{height:50.682500pt;}
.h3_c00122{height:52.986250pt;}
.h9_c00122{height:55.290000pt;}
.h13_c00122{height:57.593750pt;}
.h2_c00122{height:59.897500pt;}
.h7_c00122{height:62.201250pt;}
.h11_c00122{height:64.505000pt;}
.hb_c00122{height:82.935000pt;}
.h0_c00122{height:1025.280000pt;}
.h1_c00122{height:1025.333333pt;}
.w1_c00122{width:719.333333pt;}
.w0_c00122{width:719.360000pt;}
.x0_c00122{left:0.000000pt;}
.x6_c00122{left:68.480000pt;}
.x17_c00122{left:106.240000pt;}
.x26_c00122{left:113.920000pt;}
.x2_c00122{left:115.200000pt;}
.xd_c00122{left:132.480000pt;}
.x7_c00122{left:133.760000pt;}
.x27_c00122{left:135.040000pt;}
.x23_c00122{left:153.600000pt;}
.x25_c00122{left:192.000000pt;}
.xe_c00122{left:200.320000pt;}
.x3_c00122{left:201.600000pt;}
.x1d_c00122{left:209.920000pt;}
.x18_c00122{left:219.520000pt;}
.x14_c00122{left:238.080000pt;}
.x10_c00122{left:239.360000pt;}
.x21_c00122{left:248.960000pt;}
.x4_c00122{left:257.280000pt;}
.x11_c00122{left:276.480000pt;}
.x5_c00122{left:277.760000pt;}
.x28_c00122{left:296.960000pt;}
.x1e_c00122{left:306.560000pt;}
.x22_c00122{left:324.480000pt;}
.x24_c00122{left:344.320000pt;}
.x19_c00122{left:382.720000pt;}
.x1a_c00122{left:459.520000pt;}
.x8_c00122{left:499.200000pt;}
.x12_c00122{left:508.800000pt;}
.x1f_c00122{left:528.000000pt;}
.x13_c00122{left:529.280000pt;}
.x9_c00122{left:547.200000pt;}
.x29_c00122{left:557.440000pt;}
.x15_c00122{left:576.000000pt;}
.xb_c00122{left:577.280000pt;}
.x16_c00122{left:604.800000pt;}
.x1b_c00122{left:606.080000pt;}
.x20_c00122{left:615.680000pt;}
.x1_c00122{left:618.240000pt;}
.xf_c00122{left:635.520000pt;}
.x1c_c00122{left:643.200000pt;}
.xa_c00122{left:645.120000pt;}
.xc_c00122{left:663.040000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9ec3ad1059138fec8f675398.woff2')format("woff");}.ff1_c00123{font-family:ff1_c00123;line-height:1.109863;font-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_c00123{transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);}
.m28_c00123{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m32_c00123{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);}
.m5a_c00123{transform:matrix(0.233425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233425,0.000000,0.000000,0.250000,0,0);}
.m4_c00123{transform:matrix(0.237700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237700,0.000000,0.000000,0.250000,0,0);}
.m29_c00123{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m37_c00123{transform:matrix(0.249050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249050,0.000000,0.000000,0.250000,0,0);}
.m1a_c00123{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_c00123{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m26_c00123{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m2_c00123{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m10_c00123{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.me_c00123{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m53_c00123{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.mc_c00123{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m9_c00123{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m23_c00123{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00123{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00123{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m34_c00123{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m1e_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);}
.m21_c00123{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m18_c00123{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m39_c00123{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m31_c00123{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00123{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00123{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m30_c00123{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m17_c00123{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m44_c00123{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00123{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m35_c00123{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m43_c00123{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m27_c00123{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m15_c00123{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);}
.m3c_c00123{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m7_c00123{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);}
.m2a_c00123{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m8_c00123{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);}
.m41_c00123{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00123{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_c00123{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.md_c00123{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_c00123{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m55_c00123{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m3_c00123{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);}
.m3d_c00123{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00123{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00123{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);}
.ma_c00123{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);}
.m0_c00123{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1_c00123{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);}
.m14_c00123{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m48_c00123{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);}
.m13_c00123{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);}
.m47_c00123{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m50_c00123{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00123{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m5_c00123{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);}
.m45_c00123{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m12_c00123{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00123{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m49_c00123{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m54_c00123{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00123{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m51_c00123{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m38_c00123{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);}
.m3a_c00123{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00123{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m56_c00123{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00123{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m57_c00123{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);}
.m59_c00123{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00123{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m16_c00123{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00123{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m46_c00123{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00123{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);}
.m3f_c00123{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m6_c00123{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);}
.m11_c00123{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m33_c00123{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);}
.m4c_c00123{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00123{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m58_c00123{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m22_c00123{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m40_c00123{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00123{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00123{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);}
.m5f_c00123{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m42_c00123{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);}
.m1f_c00123{transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);}
.m19_c00123{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.m36_c00123{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m52_c00123{transform:matrix(0.922500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.922500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.922500,0.000000,0.000000,0.250000,0,0);}
.mf_c00123{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.v0_c00123{vertical-align:0.000000px;}
.v1_c00123{vertical-align:14.400000px;}
.ls0_c00123{letter-spacing:0.000000px;}
.sc__c00123{text-shadow:none;}
.sc0_c00123{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00123{-webkit-text-stroke:0px transparent;}
.sc0_c00123{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00123{word-spacing:-10.115510px;}
.ws0_c00123{word-spacing:-6.485040px;}
.ws2_c00123{word-spacing:0.000000px;}
.fc0_c00123{color:transparent;}
.fsb_c00123{font-size:17.280000px;}
.fsd_c00123{font-size:31.680000px;}
.fsc_c00123{font-size:37.440000px;}
.fs6_c00123{font-size:40.320000px;}
.fsa_c00123{font-size:43.200000px;}
.fs11_c00123{font-size:46.080000px;}
.fs10_c00123{font-size:48.960000px;}
.fs9_c00123{font-size:51.840000px;}
.fs4_c00123{font-size:54.720000px;}
.fs1_c00123{font-size:57.600000px;}
.fs3_c00123{font-size:60.480000px;}
.fs7_c00123{font-size:63.360000px;}
.fse_c00123{font-size:66.240000px;}
.fsf_c00123{font-size:69.120000px;}
.fs0_c00123{font-size:72.000000px;}
.fs5_c00123{font-size:74.880000px;}
.fs2_c00123{font-size:77.760000px;}
.fs8_c00123{font-size:83.520000px;}
.y0_c00123{bottom:0.000000px;}
.y7c_c00123{bottom:51.120000px;}
.y78_c00123{bottom:53.280000px;}
.y7a_c00123{bottom:54.000000px;}
.y79_c00123{bottom:54.720000px;}
.y7b_c00123{bottom:55.440000px;}
.y77_c00123{bottom:56.160000px;}
.y76_c00123{bottom:93.600000px;}
.y74_c00123{bottom:94.320000px;}
.y75_c00123{bottom:95.040000px;}
.y73_c00123{bottom:96.480000px;}
.y72_c00123{bottom:97.200000px;}
.y71_c00123{bottom:97.920000px;}
.y70_c00123{bottom:100.080000px;}
.y6d_c00123{bottom:138.240000px;}
.y6c_c00123{bottom:138.960000px;}
.y6f_c00123{bottom:139.680000px;}
.y6e_c00123{bottom:140.400000px;}
.y6b_c00123{bottom:141.120000px;}
.y6a_c00123{bottom:141.840000px;}
.y67_c00123{bottom:180.000000px;}
.y66_c00123{bottom:180.720000px;}
.y65_c00123{bottom:182.160000px;}
.y68_c00123{bottom:182.880000px;}
.y69_c00123{bottom:183.600000px;}
.y64_c00123{bottom:185.040000px;}
.y62_c00123{bottom:224.640000px;}
.y63_c00123{bottom:225.360000px;}
.y61_c00123{bottom:226.800000px;}
.y57_c00123{bottom:287.280000px;}
.y55_c00123{bottom:290.160000px;}
.y56_c00123{bottom:290.880000px;}
.y60_c00123{bottom:291.600000px;}
.y53_c00123{bottom:331.200000px;}
.y52_c00123{bottom:331.920000px;}
.y5e_c00123{bottom:332.640000px;}
.y5f_c00123{bottom:333.360000px;}
.y54_c00123{bottom:334.080000px;}
.y5d_c00123{bottom:334.800000px;}
.y4d_c00123{bottom:373.680000px;}
.y50_c00123{bottom:375.120000px;}
.y4c_c00123{bottom:375.840000px;}
.y51_c00123{bottom:376.560000px;}
.y4e_c00123{bottom:378.000000px;}
.y4f_c00123{bottom:380.880000px;}
.y4a_c00123{bottom:427.680000px;}
.y49_c00123{bottom:429.120000px;}
.y5a_c00123{bottom:429.840000px;}
.y4b_c00123{bottom:430.560000px;}
.y5c_c00123{bottom:431.280000px;}
.y5b_c00123{bottom:432.000000px;}
.y46_c00123{bottom:470.880000px;}
.y47_c00123{bottom:471.600000px;}
.y48_c00123{bottom:473.760000px;}
.y44_c00123{bottom:523.440000px;}
.y45_c00123{bottom:524.160000px;}
.y42_c00123{bottom:524.880000px;}
.y43_c00123{bottom:526.320000px;}
.y58_c00123{bottom:527.040000px;}
.y59_c00123{bottom:530.640000px;}
.y40_c00123{bottom:567.360000px;}
.y41_c00123{bottom:569.520000px;}
.y23_c00123{bottom:620.640000px;}
.y20_c00123{bottom:621.360000px;}
.y21_c00123{bottom:622.080000px;}
.y22_c00123{bottom:623.520000px;}
.y24_c00123{bottom:624.240000px;}
.y3d_c00123{bottom:624.960000px;}
.y3f_c00123{bottom:625.680000px;}
.y3e_c00123{bottom:626.400000px;}
.y1c_c00123{bottom:662.400000px;}
.y1a_c00123{bottom:663.840000px;}
.y1f_c00123{bottom:664.560000px;}
.y1b_c00123{bottom:665.280000px;}
.y1e_c00123{bottom:666.000000px;}
.y1d_c00123{bottom:666.720000px;}
.y3b_c00123{bottom:667.440000px;}
.y3c_c00123{bottom:671.040000px;}
.y19_c00123{bottom:705.600000px;}
.y17_c00123{bottom:706.320000px;}
.y16_c00123{bottom:707.040000px;}
.y18_c00123{bottom:709.200000px;}
.y38_c00123{bottom:709.920000px;}
.y39_c00123{bottom:710.640000px;}
.y3a_c00123{bottom:713.520000px;}
.y13_c00123{bottom:749.520000px;}
.y14_c00123{bottom:751.680000px;}
.y15_c00123{bottom:753.120000px;}
.y36_c00123{bottom:753.840000px;}
.y37_c00123{bottom:757.440000px;}
.y12_c00123{bottom:790.560000px;}
.y10_c00123{bottom:792.720000px;}
.yf_c00123{bottom:794.160000px;}
.y11_c00123{bottom:796.320000px;}
.y35_c00123{bottom:797.040000px;}
.y34_c00123{bottom:798.480000px;}
.ye_c00123{bottom:834.480000px;}
.yc_c00123{bottom:835.200000px;}
.yd_c00123{bottom:837.360000px;}
.y31_c00123{bottom:838.800000px;}
.y30_c00123{bottom:839.520000px;}
.y32_c00123{bottom:841.680000px;}
.y33_c00123{bottom:843.120000px;}
.yb_c00123{bottom:876.960000px;}
.ya_c00123{bottom:878.400000px;}
.y2c_c00123{bottom:882.000000px;}
.y2d_c00123{bottom:882.720000px;}
.y2e_c00123{bottom:884.160000px;}
.y2f_c00123{bottom:886.320000px;}
.y7_c00123{bottom:919.440000px;}
.y6_c00123{bottom:920.880000px;}
.y9_c00123{bottom:921.600000px;}
.y8_c00123{bottom:923.760000px;}
.y29_c00123{bottom:925.920000px;}
.y2a_c00123{bottom:926.640000px;}
.y2b_c00123{bottom:928.800000px;}
.y5_c00123{bottom:963.360000px;}
.y4_c00123{bottom:964.080000px;}
.y27_c00123{bottom:969.120000px;}
.y28_c00123{bottom:972.720000px;}
.y3_c00123{bottom:1005.840000px;}
.y2_c00123{bottom:1006.560000px;}
.y25_c00123{bottom:1013.040000px;}
.y26_c00123{bottom:1013.760000px;}
.y1_c00123{bottom:1105.200000px;}
.hd_c00123{height:15.550313px;}
.h10_c00123{height:28.508906px;}
.hf_c00123{height:33.692344px;}
.h8_c00123{height:36.284062px;}
.hc_c00123{height:38.875781px;}
.h14_c00123{height:41.467500px;}
.h13_c00123{height:44.059219px;}
.hb_c00123{height:46.650937px;}
.h6_c00123{height:49.242656px;}
.h3_c00123{height:51.834375px;}
.h5_c00123{height:54.426094px;}
.h9_c00123{height:57.017812px;}
.h11_c00123{height:59.609531px;}
.he_c00123{height:61.050938px;}
.h12_c00123{height:62.201250px;}
.h2_c00123{height:64.792969px;}
.h7_c00123{height:67.384687px;}
.h4_c00123{height:69.976406px;}
.ha_c00123{height:75.159844px;}
.h0_c00123{height:1152.720000px;}
.h1_c00123{height:1152.750000px;}
.w1_c00123{width:807.000000px;}
.w0_c00123{width:807.120000px;}
.x0_c00123{left:0.000000px;}
.x2_c00123{left:75.600000px;}
.x11_c00123{left:77.040000px;}
.x2b_c00123{left:78.480000px;}
.x4a_c00123{left:81.360000px;}
.x6_c00123{left:118.800000px;}
.x3b_c00123{left:120.240000px;}
.x7_c00123{left:128.160000px;}
.x20_c00123{left:129.600000px;}
.x24_c00123{left:131.040000px;}
.x3_c00123{left:149.040000px;}
.x8_c00123{left:150.480000px;}
.x23_c00123{left:152.640000px;}
.x25_c00123{left:173.520000px;}
.x43_c00123{left:174.960000px;}
.x33_c00123{left:185.760000px;}
.x4b_c00123{left:196.560000px;}
.x44_c00123{left:207.360000px;}
.x4_c00123{left:224.640000px;}
.x21_c00123{left:226.800000px;}
.x26_c00123{left:228.240000px;}
.x9_c00123{left:235.440000px;}
.x12_c00123{left:236.880000px;}
.x27_c00123{left:239.760000px;}
.xe_c00123{left:246.240000px;}
.x28_c00123{left:249.120000px;}
.x51_c00123{left:250.560000px;}
.x5_c00123{left:267.120000px;}
.xc_c00123{left:278.640000px;}
.x29_c00123{left:282.960000px;}
.xa_c00123{left:289.440000px;}
.x34_c00123{left:292.320000px;}
.x52_c00123{left:293.760000px;}
.xf_c00123{left:299.520000px;}
.x13_c00123{left:300.960000px;}
.x2c_c00123{left:302.400000px;}
.x2a_c00123{left:311.760000px;}
.x3c_c00123{left:313.920000px;}
.xd_c00123{left:321.840000px;}
.xb_c00123{left:344.160000px;}
.x3d_c00123{left:345.600000px;}
.x22_c00123{left:354.960000px;}
.x35_c00123{left:367.920000px;}
.x53_c00123{left:378.720000px;}
.x4c_c00123{left:389.520000px;}
.x36_c00123{left:399.600000px;}
.x54_c00123{left:412.560000px;}
.x4d_c00123{left:421.200000px;}
.x3e_c00123{left:423.360000px;}
.x10_c00123{left:430.560000px;}
.x45_c00123{left:433.440000px;}
.x37_c00123{left:442.800000px;}
.x3f_c00123{left:464.400000px;}
.x46_c00123{left:465.840000px;}
.x4e_c00123{left:488.160000px;}
.x47_c00123{left:509.760000px;}
.x4f_c00123{left:521.280000px;}
.x55_c00123{left:531.360000px;}
.x38_c00123{left:540.720000px;}
.x14_c00123{left:559.440000px;}
.x19_c00123{left:561.600000px;}
.x30_c00123{left:563.760600px;}
.x1c_c00123{left:572.400000px;}
.x40_c00123{left:585.360000px;}
.x18_c00123{left:592.560000px;}
.x2d_c00123{left:594.720000px;}
.x56_c00123{left:606.960000px;}
.x39_c00123{left:608.400000px;}
.x1a_c00123{left:614.880000px;}
.x41_c00123{left:617.760000px;}
.x15_c00123{left:624.960000px;}
.x48_c00123{left:628.560000px;}
.x3a_c00123{left:639.360000px;}
.x1f_c00123{left:650.160000px;}
.x42_c00123{left:673.920000px;}
.x16_c00123{left:680.400000px;}
.x1d_c00123{left:681.840000px;}
.x2e_c00123{left:683.280000px;}
.x50_c00123{left:684.720000px;}
.x1_c00123{left:690.480000px;}
.x49_c00123{left:694.800000px;}
.x57_c00123{left:706.320000px;}
.x2f_c00123{left:715.680000px;}
.x31_c00123{left:717.120000px;}
.x17_c00123{left:723.600000px;}
.x1e_c00123{left:725.760000px;}
.x1b_c00123{left:745.200000px;}
.x32_c00123{left:748.080000px;}
@media print{
.v0_c00123{vertical-align:0.000000pt;}
.v1_c00123{vertical-align:12.800000pt;}
.ls0_c00123{letter-spacing:0.000000pt;}
.ws1_c00123{word-spacing:-8.991565pt;}
.ws0_c00123{word-spacing:-5.764480pt;}
.ws2_c00123{word-spacing:0.000000pt;}
.fsb_c00123{font-size:15.360000pt;}
.fsd_c00123{font-size:28.160000pt;}
.fsc_c00123{font-size:33.280000pt;}
.fs6_c00123{font-size:35.840000pt;}
.fsa_c00123{font-size:38.400000pt;}
.fs11_c00123{font-size:40.960000pt;}
.fs10_c00123{font-size:43.520000pt;}
.fs9_c00123{font-size:46.080000pt;}
.fs4_c00123{font-size:48.640000pt;}
.fs1_c00123{font-size:51.200000pt;}
.fs3_c00123{font-size:53.760000pt;}
.fs7_c00123{font-size:56.320000pt;}
.fse_c00123{font-size:58.880000pt;}
.fsf_c00123{font-size:61.440000pt;}
.fs0_c00123{font-size:64.000000pt;}
.fs5_c00123{font-size:66.560000pt;}
.fs2_c00123{font-size:69.120000pt;}
.fs8_c00123{font-size:74.240000pt;}
.y0_c00123{bottom:0.000000pt;}
.y7c_c00123{bottom:45.440000pt;}
.y78_c00123{bottom:47.360000pt;}
.y7a_c00123{bottom:48.000000pt;}
.y79_c00123{bottom:48.640000pt;}
.y7b_c00123{bottom:49.280000pt;}
.y77_c00123{bottom:49.920000pt;}
.y76_c00123{bottom:83.200000pt;}
.y74_c00123{bottom:83.840000pt;}
.y75_c00123{bottom:84.480000pt;}
.y73_c00123{bottom:85.760000pt;}
.y72_c00123{bottom:86.400000pt;}
.y71_c00123{bottom:87.040000pt;}
.y70_c00123{bottom:88.960000pt;}
.y6d_c00123{bottom:122.880000pt;}
.y6c_c00123{bottom:123.520000pt;}
.y6f_c00123{bottom:124.160000pt;}
.y6e_c00123{bottom:124.800000pt;}
.y6b_c00123{bottom:125.440000pt;}
.y6a_c00123{bottom:126.080000pt;}
.y67_c00123{bottom:160.000000pt;}
.y66_c00123{bottom:160.640000pt;}
.y65_c00123{bottom:161.920000pt;}
.y68_c00123{bottom:162.560000pt;}
.y69_c00123{bottom:163.200000pt;}
.y64_c00123{bottom:164.480000pt;}
.y62_c00123{bottom:199.680000pt;}
.y63_c00123{bottom:200.320000pt;}
.y61_c00123{bottom:201.600000pt;}
.y57_c00123{bottom:255.360000pt;}
.y55_c00123{bottom:257.920000pt;}
.y56_c00123{bottom:258.560000pt;}
.y60_c00123{bottom:259.200000pt;}
.y53_c00123{bottom:294.400000pt;}
.y52_c00123{bottom:295.040000pt;}
.y5e_c00123{bottom:295.680000pt;}
.y5f_c00123{bottom:296.320000pt;}
.y54_c00123{bottom:296.960000pt;}
.y5d_c00123{bottom:297.600000pt;}
.y4d_c00123{bottom:332.160000pt;}
.y50_c00123{bottom:333.440000pt;}
.y4c_c00123{bottom:334.080000pt;}
.y51_c00123{bottom:334.720000pt;}
.y4e_c00123{bottom:336.000000pt;}
.y4f_c00123{bottom:338.560000pt;}
.y4a_c00123{bottom:380.160000pt;}
.y49_c00123{bottom:381.440000pt;}
.y5a_c00123{bottom:382.080000pt;}
.y4b_c00123{bottom:382.720000pt;}
.y5c_c00123{bottom:383.360000pt;}
.y5b_c00123{bottom:384.000000pt;}
.y46_c00123{bottom:418.560000pt;}
.y47_c00123{bottom:419.200000pt;}
.y48_c00123{bottom:421.120000pt;}
.y44_c00123{bottom:465.280000pt;}
.y45_c00123{bottom:465.920000pt;}
.y42_c00123{bottom:466.560000pt;}
.y43_c00123{bottom:467.840000pt;}
.y58_c00123{bottom:468.480000pt;}
.y59_c00123{bottom:471.680000pt;}
.y40_c00123{bottom:504.320000pt;}
.y41_c00123{bottom:506.240000pt;}
.y23_c00123{bottom:551.680000pt;}
.y20_c00123{bottom:552.320000pt;}
.y21_c00123{bottom:552.960000pt;}
.y22_c00123{bottom:554.240000pt;}
.y24_c00123{bottom:554.880000pt;}
.y3d_c00123{bottom:555.520000pt;}
.y3f_c00123{bottom:556.160000pt;}
.y3e_c00123{bottom:556.800000pt;}
.y1c_c00123{bottom:588.800000pt;}
.y1a_c00123{bottom:590.080000pt;}
.y1f_c00123{bottom:590.720000pt;}
.y1b_c00123{bottom:591.360000pt;}
.y1e_c00123{bottom:592.000000pt;}
.y1d_c00123{bottom:592.640000pt;}
.y3b_c00123{bottom:593.280000pt;}
.y3c_c00123{bottom:596.480000pt;}
.y19_c00123{bottom:627.200000pt;}
.y17_c00123{bottom:627.840000pt;}
.y16_c00123{bottom:628.480000pt;}
.y18_c00123{bottom:630.400000pt;}
.y38_c00123{bottom:631.040000pt;}
.y39_c00123{bottom:631.680000pt;}
.y3a_c00123{bottom:634.240000pt;}
.y13_c00123{bottom:666.240000pt;}
.y14_c00123{bottom:668.160000pt;}
.y15_c00123{bottom:669.440000pt;}
.y36_c00123{bottom:670.080000pt;}
.y37_c00123{bottom:673.280000pt;}
.y12_c00123{bottom:702.720000pt;}
.y10_c00123{bottom:704.640000pt;}
.yf_c00123{bottom:705.920000pt;}
.y11_c00123{bottom:707.840000pt;}
.y35_c00123{bottom:708.480000pt;}
.y34_c00123{bottom:709.760000pt;}
.ye_c00123{bottom:741.760000pt;}
.yc_c00123{bottom:742.400000pt;}
.yd_c00123{bottom:744.320000pt;}
.y31_c00123{bottom:745.600000pt;}
.y30_c00123{bottom:746.240000pt;}
.y32_c00123{bottom:748.160000pt;}
.y33_c00123{bottom:749.440000pt;}
.yb_c00123{bottom:779.520000pt;}
.ya_c00123{bottom:780.800000pt;}
.y2c_c00123{bottom:784.000000pt;}
.y2d_c00123{bottom:784.640000pt;}
.y2e_c00123{bottom:785.920000pt;}
.y2f_c00123{bottom:787.840000pt;}
.y7_c00123{bottom:817.280000pt;}
.y6_c00123{bottom:818.560000pt;}
.y9_c00123{bottom:819.200000pt;}
.y8_c00123{bottom:821.120000pt;}
.y29_c00123{bottom:823.040000pt;}
.y2a_c00123{bottom:823.680000pt;}
.y2b_c00123{bottom:825.600000pt;}
.y5_c00123{bottom:856.320000pt;}
.y4_c00123{bottom:856.960000pt;}
.y27_c00123{bottom:861.440000pt;}
.y28_c00123{bottom:864.640000pt;}
.y3_c00123{bottom:894.080000pt;}
.y2_c00123{bottom:894.720000pt;}
.y25_c00123{bottom:900.480000pt;}
.y26_c00123{bottom:901.120000pt;}
.y1_c00123{bottom:982.400000pt;}
.hd_c00123{height:13.822500pt;}
.h10_c00123{height:25.341250pt;}
.hf_c00123{height:29.948750pt;}
.h8_c00123{height:32.252500pt;}
.hc_c00123{height:34.556250pt;}
.h14_c00123{height:36.860000pt;}
.h13_c00123{height:39.163750pt;}
.hb_c00123{height:41.467500pt;}
.h6_c00123{height:43.771250pt;}
.h3_c00123{height:46.075000pt;}
.h5_c00123{height:48.378750pt;}
.h9_c00123{height:50.682500pt;}
.h11_c00123{height:52.986250pt;}
.he_c00123{height:54.267500pt;}
.h12_c00123{height:55.290000pt;}
.h2_c00123{height:57.593750pt;}
.h7_c00123{height:59.897500pt;}
.h4_c00123{height:62.201250pt;}
.ha_c00123{height:66.808750pt;}
.h0_c00123{height:1024.640000pt;}
.h1_c00123{height:1024.666667pt;}
.w1_c00123{width:717.333333pt;}
.w0_c00123{width:717.440000pt;}
.x0_c00123{left:0.000000pt;}
.x2_c00123{left:67.200000pt;}
.x11_c00123{left:68.480000pt;}
.x2b_c00123{left:69.760000pt;}
.x4a_c00123{left:72.320000pt;}
.x6_c00123{left:105.600000pt;}
.x3b_c00123{left:106.880000pt;}
.x7_c00123{left:113.920000pt;}
.x20_c00123{left:115.200000pt;}
.x24_c00123{left:116.480000pt;}
.x3_c00123{left:132.480000pt;}
.x8_c00123{left:133.760000pt;}
.x23_c00123{left:135.680000pt;}
.x25_c00123{left:154.240000pt;}
.x43_c00123{left:155.520000pt;}
.x33_c00123{left:165.120000pt;}
.x4b_c00123{left:174.720000pt;}
.x44_c00123{left:184.320000pt;}
.x4_c00123{left:199.680000pt;}
.x21_c00123{left:201.600000pt;}
.x26_c00123{left:202.880000pt;}
.x9_c00123{left:209.280000pt;}
.x12_c00123{left:210.560000pt;}
.x27_c00123{left:213.120000pt;}
.xe_c00123{left:218.880000pt;}
.x28_c00123{left:221.440000pt;}
.x51_c00123{left:222.720000pt;}
.x5_c00123{left:237.440000pt;}
.xc_c00123{left:247.680000pt;}
.x29_c00123{left:251.520000pt;}
.xa_c00123{left:257.280000pt;}
.x34_c00123{left:259.840000pt;}
.x52_c00123{left:261.120000pt;}
.xf_c00123{left:266.240000pt;}
.x13_c00123{left:267.520000pt;}
.x2c_c00123{left:268.800000pt;}
.x2a_c00123{left:277.120000pt;}
.x3c_c00123{left:279.040000pt;}
.xd_c00123{left:286.080000pt;}
.xb_c00123{left:305.920000pt;}
.x3d_c00123{left:307.200000pt;}
.x22_c00123{left:315.520000pt;}
.x35_c00123{left:327.040000pt;}
.x53_c00123{left:336.640000pt;}
.x4c_c00123{left:346.240000pt;}
.x36_c00123{left:355.200000pt;}
.x54_c00123{left:366.720000pt;}
.x4d_c00123{left:374.400000pt;}
.x3e_c00123{left:376.320000pt;}
.x10_c00123{left:382.720000pt;}
.x45_c00123{left:385.280000pt;}
.x37_c00123{left:393.600000pt;}
.x3f_c00123{left:412.800000pt;}
.x46_c00123{left:414.080000pt;}
.x4e_c00123{left:433.920000pt;}
.x47_c00123{left:453.120000pt;}
.x4f_c00123{left:463.360000pt;}
.x55_c00123{left:472.320000pt;}
.x38_c00123{left:480.640000pt;}
.x14_c00123{left:497.280000pt;}
.x19_c00123{left:499.200000pt;}
.x30_c00123{left:501.120533pt;}
.x1c_c00123{left:508.800000pt;}
.x40_c00123{left:520.320000pt;}
.x18_c00123{left:526.720000pt;}
.x2d_c00123{left:528.640000pt;}
.x56_c00123{left:539.520000pt;}
.x39_c00123{left:540.800000pt;}
.x1a_c00123{left:546.560000pt;}
.x41_c00123{left:549.120000pt;}
.x15_c00123{left:555.520000pt;}
.x48_c00123{left:558.720000pt;}
.x3a_c00123{left:568.320000pt;}
.x1f_c00123{left:577.920000pt;}
.x42_c00123{left:599.040000pt;}
.x16_c00123{left:604.800000pt;}
.x1d_c00123{left:606.080000pt;}
.x2e_c00123{left:607.360000pt;}
.x50_c00123{left:608.640000pt;}
.x1_c00123{left:613.760000pt;}
.x49_c00123{left:617.600000pt;}
.x57_c00123{left:627.840000pt;}
.x2f_c00123{left:636.160000pt;}
.x31_c00123{left:637.440000pt;}
.x17_c00123{left:643.200000pt;}
.x1e_c00123{left:645.120000pt;}
.x1b_c00123{left:662.400000pt;}
.x32_c00123{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_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_e08baf0a68d2abe8d50634d1.woff2')format("woff");}.ff1_c00124{font-family:ff1_c00124;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m35_c00124{transform:matrix(0.232725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232725,0.000000,0.000000,0.250000,0,0);}
.m64_c00124{transform:matrix(0.237050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237050,0.000000,0.000000,0.250000,0,0);}
.m42_c00124{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m34_c00124{transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);}
.m57_c00124{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m3c_c00124{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m4b_c00124{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m51_c00124{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00124{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m9_c00124{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m31_c00124{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m55_c00124{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m46_c00124{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m53_c00124{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m41_c00124{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m59_c00124{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);}
.m36_c00124{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m3_c00124{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_c00124{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m22_c00124{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m6_c00124{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m38_c00124{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m27_c00124{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m39_c00124{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00124{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m33_c00124{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m32_c00124{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m40_c00124{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00124{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m47_c00124{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m48_c00124{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00124{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00124{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m26_c00124{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m29_c00124{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m16_c00124{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m58_c00124{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);}
.m3b_c00124{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00124{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);}
.m45_c00124{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00124{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00124{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.md_c00124{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);}
.m24_c00124{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m49_c00124{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);}
.m54_c00124{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.ma_c00124{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);}
.m5c_c00124{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);}
.m37_c00124{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.me_c00124{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00124{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);}
.m44_c00124{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00124{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);}
.m5_c00124{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00124{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);}
.mb_c00124{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m52_c00124{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);}
.m2b_c00124{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);}
.m4a_c00124{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);}
.m61_c00124{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m21_c00124{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00124{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00124{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m14_c00124{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);}
.mf_c00124{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);}
.m18_c00124{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);}
.m4_c00124{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m7_c00124{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m17_c00124{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00124{transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);}
.m20_c00124{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00124{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00124{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);}
.m30_c00124{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m63_c00124{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);}
.m8_c00124{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m13_c00124{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m65_c00124{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m23_c00124{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m10_c00124{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m43_c00124{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);}
.m2e_c00124{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m25_c00124{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00124{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00124{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);}
.m5b_c00124{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.mc_c00124{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00124{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);}
.m19_c00124{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m1_c00124{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m66_c00124{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m60_c00124{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m11_c00124{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m28_c00124{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);}
.m2_c00124{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);}
.m62_c00124{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00124{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m12_c00124{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m50_c00124{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00124{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.m56_c00124{transform:matrix(0.775000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.775000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.775000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00124{transform:matrix(0.785000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.785000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.785000,0.000000,0.000000,0.250000,0,0);}
.m15_c00124{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.v1_c00124{vertical-align:-8.640000px;}
.v0_c00124{vertical-align:0.000000px;}
.v2_c00124{vertical-align:2.880000px;}
.ls0_c00124{letter-spacing:0.000000px;}
.sc__c00124{text-shadow:none;}
.sc0_c00124{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00124{-webkit-text-stroke:0px transparent;}
.sc0_c00124{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00124{word-spacing:0.000000px;}
.ws3_c00124{word-spacing:31.813309px;}
.ws2_c00124{word-spacing:33.778080px;}
.ws1_c00124{word-spacing:47.556000px;}
.ws0_c00124{word-spacing:55.546525px;}
.fc0_c00124{color:transparent;}
.fsa_c00124{font-size:17.280000px;}
.fsd_c00124{font-size:34.560000px;}
.fs2_c00124{font-size:37.440000px;}
.fs9_c00124{font-size:43.200000px;}
.fsb_c00124{font-size:46.080000px;}
.fs7_c00124{font-size:48.960000px;}
.fs6_c00124{font-size:51.840000px;}
.fs1_c00124{font-size:54.720000px;}
.fs5_c00124{font-size:57.600000px;}
.fs4_c00124{font-size:60.480000px;}
.fs3_c00124{font-size:63.360000px;}
.fsc_c00124{font-size:66.240000px;}
.fs8_c00124{font-size:69.120000px;}
.fs10_c00124{font-size:72.000000px;}
.fs0_c00124{font-size:74.880000px;}
.fse_c00124{font-size:77.760000px;}
.fsf_c00124{font-size:80.640000px;}
.y0_c00124{bottom:0.000000px;}
.y9b_c00124{bottom:59.760000px;}
.y9a_c00124{bottom:60.480000px;}
.y98_c00124{bottom:61.200000px;}
.y96_c00124{bottom:61.920000px;}
.y99_c00124{bottom:63.360000px;}
.y94_c00124{bottom:64.080000px;}
.y97_c00124{bottom:64.800000px;}
.y93_c00124{bottom:65.520000px;}
.y95_c00124{bottom:66.240000px;}
.y90_c00124{bottom:102.240000px;}
.y92_c00124{bottom:103.680000px;}
.y91_c00124{bottom:104.400000px;}
.y8f_c00124{bottom:105.840000px;}
.y8e_c00124{bottom:106.560000px;}
.y8d_c00124{bottom:107.280000px;}
.y8c_c00124{bottom:108.000000px;}
.y8b_c00124{bottom:146.160000px;}
.y87_c00124{bottom:147.600000px;}
.y8a_c00124{bottom:148.320000px;}
.y89_c00124{bottom:149.040000px;}
.y88_c00124{bottom:149.760000px;}
.y86_c00124{bottom:151.920000px;}
.y85_c00124{bottom:187.920000px;}
.y82_c00124{bottom:190.080000px;}
.y84_c00124{bottom:190.800000px;}
.y83_c00124{bottom:191.520000px;}
.y81_c00124{bottom:192.240000px;}
.y80_c00124{bottom:192.960000px;}
.y7f_c00124{bottom:242.640000px;}
.y7e_c00124{bottom:244.080000px;}
.y7c_c00124{bottom:245.520000px;}
.y7d_c00124{bottom:246.240000px;}
.y7a_c00124{bottom:276.480000px;}
.y7b_c00124{bottom:280.080000px;}
.y79_c00124{bottom:295.920000px;}
.y78_c00124{bottom:296.640000px;}
.y75_c00124{bottom:298.080000px;}
.y76_c00124{bottom:298.800000px;}
.y77_c00124{bottom:300.240000px;}
.y74_c00124{bottom:317.520000px;}
.y72_c00124{bottom:318.240000px;}
.y70_c00124{bottom:318.960000px;}
.y73_c00124{bottom:319.680000px;}
.y6e_c00124{bottom:320.400000px;}
.y71_c00124{bottom:321.120000px;}
.y6f_c00124{bottom:321.840000px;}
.y6d_c00124{bottom:322.560000px;}
.y6c_c00124{bottom:339.120000px;}
.y6b_c00124{bottom:339.840000px;}
.y68_c00124{bottom:340.560000px;}
.y69_c00124{bottom:341.280000px;}
.y6a_c00124{bottom:343.440000px;}
.y67_c00124{bottom:360.720000px;}
.y64_c00124{bottom:361.440000px;}
.y66_c00124{bottom:362.160000px;}
.y65_c00124{bottom:363.600000px;}
.y63_c00124{bottom:364.320000px;}
.y61_c00124{bottom:382.320000px;}
.y60_c00124{bottom:383.040000px;}
.y62_c00124{bottom:383.760000px;}
.y5e_c00124{bottom:384.480000px;}
.y5f_c00124{bottom:385.200000px;}
.y5d_c00124{bottom:403.200000px;}
.y5c_c00124{bottom:403.920000px;}
.y5b_c00124{bottom:406.800000px;}
.y5a_c00124{bottom:424.800000px;}
.y59_c00124{bottom:425.520000px;}
.y57_c00124{bottom:426.240000px;}
.y56_c00124{bottom:426.960000px;}
.y58_c00124{bottom:428.400000px;}
.y52_c00124{bottom:447.120000px;}
.y53_c00124{bottom:447.840000px;}
.y54_c00124{bottom:448.560000px;}
.y55_c00124{bottom:449.280000px;}
.y51_c00124{bottom:450.000000px;}
.y4c_c00124{bottom:468.000000px;}
.y4f_c00124{bottom:468.720000px;}
.y50_c00124{bottom:469.440000px;}
.y4e_c00124{bottom:470.880000px;}
.y4d_c00124{bottom:471.600000px;}
.y49_c00124{bottom:489.600000px;}
.y4a_c00124{bottom:490.320000px;}
.y4b_c00124{bottom:491.760000px;}
.y45_c00124{bottom:510.480000px;}
.y47_c00124{bottom:511.200000px;}
.y48_c00124{bottom:512.640000px;}
.y46_c00124{bottom:514.080000px;}
.y3e_c00124{bottom:531.360000px;}
.y40_c00124{bottom:532.080000px;}
.y41_c00124{bottom:532.800000px;}
.y44_c00124{bottom:533.520000px;}
.y42_c00124{bottom:534.240000px;}
.y43_c00124{bottom:534.960000px;}
.y3f_c00124{bottom:535.680000px;}
.y3b_c00124{bottom:553.680000px;}
.y3d_c00124{bottom:554.400000px;}
.y3c_c00124{bottom:555.840000px;}
.y3a_c00124{bottom:556.560000px;}
.y37_c00124{bottom:574.560000px;}
.y39_c00124{bottom:575.280000px;}
.y38_c00124{bottom:576.000000px;}
.y36_c00124{bottom:576.720000px;}
.y31_c00124{bottom:603.360000px;}
.y33_c00124{bottom:604.080000px;}
.y35_c00124{bottom:604.800000px;}
.y30_c00124{bottom:607.680000px;}
.y2f_c00124{bottom:608.400000px;}
.y32_c00124{bottom:609.120000px;}
.y34_c00124{bottom:609.840000px;}
.y2e_c00124{bottom:662.400000px;}
.y28_c00124{bottom:701.280000px;}
.y2c_c00124{bottom:703.440000px;}
.y2a_c00124{bottom:704.160000px;}
.y29_c00124{bottom:704.880000px;}
.y2b_c00124{bottom:705.600000px;}
.y2d_c00124{bottom:706.320000px;}
.y24_c00124{bottom:747.360000px;}
.y25_c00124{bottom:748.080000px;}
.y26_c00124{bottom:748.800000px;}
.y27_c00124{bottom:749.520000px;}
.y23_c00124{bottom:798.480000px;}
.y1d_c00124{bottom:840.240000px;}
.y1f_c00124{bottom:841.680000px;}
.y20_c00124{bottom:842.400000px;}
.y1e_c00124{bottom:843.840000px;}
.y21_c00124{bottom:845.280000px;}
.y22_c00124{bottom:846.720000px;}
.y15_c00124{bottom:882.000000px;}
.y16_c00124{bottom:882.720000px;}
.y1a_c00124{bottom:884.160000px;}
.y17_c00124{bottom:885.600000px;}
.y18_c00124{bottom:886.320000px;}
.y19_c00124{bottom:887.040000px;}
.y1b_c00124{bottom:887.760000px;}
.y1c_c00124{bottom:888.480000px;}
.y10_c00124{bottom:926.640000px;}
.yd_c00124{bottom:927.360000px;}
.y12_c00124{bottom:928.080000px;}
.yf_c00124{bottom:928.800000px;}
.y11_c00124{bottom:929.520000px;}
.y14_c00124{bottom:930.240000px;}
.ye_c00124{bottom:930.960000px;}
.y13_c00124{bottom:931.680000px;}
.y7_c00124{bottom:969.840000px;}
.y8_c00124{bottom:970.560000px;}
.y9_c00124{bottom:972.000000px;}
.ya_c00124{bottom:972.720000px;}
.yb_c00124{bottom:974.160000px;}
.yc_c00124{bottom:974.880000px;}
.y4_c00124{bottom:1012.320000px;}
.y2_c00124{bottom:1013.040000px;}
.y3_c00124{bottom:1013.760000px;}
.y6_c00124{bottom:1015.200000px;}
.y5_c00124{bottom:1016.640000px;}
.y1_c00124{bottom:1098.000000px;}
.hc_c00124{height:15.550313px;}
.hf_c00124{height:31.100625px;}
.h4_c00124{height:33.692344px;}
.hb_c00124{height:38.875781px;}
.hd_c00124{height:41.467500px;}
.h9_c00124{height:44.059219px;}
.h8_c00124{height:46.650937px;}
.h3_c00124{height:49.242656px;}
.h7_c00124{height:51.834375px;}
.h6_c00124{height:54.426094px;}
.h5_c00124{height:57.017812px;}
.he_c00124{height:59.609531px;}
.ha_c00124{height:62.201250px;}
.h12_c00124{height:64.792969px;}
.h2_c00124{height:67.384687px;}
.h10_c00124{height:69.976406px;}
.h11_c00124{height:72.568125px;}
.h0_c00124{height:1153.440000px;}
.h1_c00124{height:1153.500000px;}
.w1_c00124{width:786.000000px;}
.w0_c00124{width:786.240000px;}
.x0_c00124{left:0.000000px;}
.x2_c00124{left:63.360000px;}
.xc_c00124{left:64.800000px;}
.x4e_c00124{left:66.960000px;}
.x30_c00124{left:75.600000px;}
.xd_c00124{left:95.760000px;}
.x4a_c00124{left:97.920000px;}
.x3e_c00124{left:108.000000px;}
.x31_c00124{left:117.360000px;}
.x3b_c00124{left:118.800000px;}
.x3_c00124{left:137.520000px;}
.x28_c00124{left:149.040000px;}
.x32_c00124{left:150.480000px;}
.x12_c00124{left:159.840000px;}
.x1e_c00124{left:170.640000px;}
.x36_c00124{left:172.080000px;}
.x4_c00124{left:181.440000px;}
.x44_c00124{left:182.880000px;}
.x29_c00124{left:192.240000px;}
.x51_c00124{left:203.040000px;}
.x2c_c00124{left:213.840000px;}
.x41_c00124{left:215.280000px;}
.x5_c00124{left:223.920000px;}
.x37_c00124{left:225.360000px;}
.x13_c00124{left:234.000000px;}
.x23_c00124{left:235.440000px;}
.x52_c00124{left:246.240000px;}
.xe_c00124{left:256.320000px;}
.x14_c00124{left:277.200000px;}
.x1f_c00124{left:278.640000px;}
.x6_c00124{left:288.000000px;}
.x2d_c00124{left:289.440000px;}
.x45_c00124{left:300.960000px;}
.x15_c00124{left:321.120000px;}
.x20_c00124{left:332.640000px;}
.x24_c00124{left:342.720000px;}
.x3c_c00124{left:344.880000px;}
.x2a_c00124{left:354.240000px;}
.x47_c00124{left:355.680000px;}
.xf_c00124{left:363.600000px;}
.x4f_c00124{left:365.760000px;}
.x33_c00124{left:375.840000px;}
.x40_c00124{left:377.280000px;}
.x25_c00124{left:386.640000px;}
.x2e_c00124{left:397.440000px;}
.x1b_c00124{left:406.800000px;}
.x7_c00124{left:408.960000px;}
.x53_c00124{left:410.400000px;}
.x16_c00124{left:417.600000px;}
.x21_c00124{left:429.120000px;}
.x8_c00124{left:440.640000px;}
.x38_c00124{left:442.080000px;}
.x17_c00124{left:462.240000px;}
.x42_c00124{left:474.480000px;}
.x10_c00124{left:483.840000px;}
.x2b_c00124{left:494.640000px;}
.x46_c00124{left:506.880000px;}
.x9_c00124{left:515.520000px;}
.x34_c00124{left:516.960000px;}
.x4b_c00124{left:518.400000px;}
.xa_c00124{left:537.840000px;}
.x2f_c00124{left:549.360000px;}
.x4c_c00124{left:550.800000px;}
.x18_c00124{left:559.440000px;}
.x3d_c00124{left:561.600000px;}
.x48_c00124{left:570.960000px;}
.x3f_c00124{left:572.400000px;}
.xb_c00124{left:580.320000px;}
.x11_c00124{left:583.200000px;}
.x26_c00124{left:592.560000px;}
.x35_c00124{left:594.000000px;}
.x19_c00124{left:602.640000px;}
.x39_c00124{left:604.800000px;}
.x49_c00124{left:615.600000px;}
.x27_c00124{left:626.400000px;}
.x22_c00124{left:635.040000px;}
.x1c_c00124{left:636.480000px;}
.x1a_c00124{left:646.560000px;}
.x43_c00124{left:660.240000px;}
.x1d_c00124{left:669.600000px;}
.x3a_c00124{left:671.040000px;}
.x1_c00124{left:677.520000px;}
.x4d_c00124{left:680.400000px;}
.x50_c00124{left:702.000000px;}
.x54_c00124{left:703.440000px;}
@media print{
.v1_c00124{vertical-align:-7.680000pt;}
.v0_c00124{vertical-align:0.000000pt;}
.v2_c00124{vertical-align:2.560000pt;}
.ls0_c00124{letter-spacing:0.000000pt;}
.ws4_c00124{word-spacing:0.000000pt;}
.ws3_c00124{word-spacing:28.278497pt;}
.ws2_c00124{word-spacing:30.024960pt;}
.ws1_c00124{word-spacing:42.272000pt;}
.ws0_c00124{word-spacing:49.374689pt;}
.fsa_c00124{font-size:15.360000pt;}
.fsd_c00124{font-size:30.720000pt;}
.fs2_c00124{font-size:33.280000pt;}
.fs9_c00124{font-size:38.400000pt;}
.fsb_c00124{font-size:40.960000pt;}
.fs7_c00124{font-size:43.520000pt;}
.fs6_c00124{font-size:46.080000pt;}
.fs1_c00124{font-size:48.640000pt;}
.fs5_c00124{font-size:51.200000pt;}
.fs4_c00124{font-size:53.760000pt;}
.fs3_c00124{font-size:56.320000pt;}
.fsc_c00124{font-size:58.880000pt;}
.fs8_c00124{font-size:61.440000pt;}
.fs10_c00124{font-size:64.000000pt;}
.fs0_c00124{font-size:66.560000pt;}
.fse_c00124{font-size:69.120000pt;}
.fsf_c00124{font-size:71.680000pt;}
.y0_c00124{bottom:0.000000pt;}
.y9b_c00124{bottom:53.120000pt;}
.y9a_c00124{bottom:53.760000pt;}
.y98_c00124{bottom:54.400000pt;}
.y96_c00124{bottom:55.040000pt;}
.y99_c00124{bottom:56.320000pt;}
.y94_c00124{bottom:56.960000pt;}
.y97_c00124{bottom:57.600000pt;}
.y93_c00124{bottom:58.240000pt;}
.y95_c00124{bottom:58.880000pt;}
.y90_c00124{bottom:90.880000pt;}
.y92_c00124{bottom:92.160000pt;}
.y91_c00124{bottom:92.800000pt;}
.y8f_c00124{bottom:94.080000pt;}
.y8e_c00124{bottom:94.720000pt;}
.y8d_c00124{bottom:95.360000pt;}
.y8c_c00124{bottom:96.000000pt;}
.y8b_c00124{bottom:129.920000pt;}
.y87_c00124{bottom:131.200000pt;}
.y8a_c00124{bottom:131.840000pt;}
.y89_c00124{bottom:132.480000pt;}
.y88_c00124{bottom:133.120000pt;}
.y86_c00124{bottom:135.040000pt;}
.y85_c00124{bottom:167.040000pt;}
.y82_c00124{bottom:168.960000pt;}
.y84_c00124{bottom:169.600000pt;}
.y83_c00124{bottom:170.240000pt;}
.y81_c00124{bottom:170.880000pt;}
.y80_c00124{bottom:171.520000pt;}
.y7f_c00124{bottom:215.680000pt;}
.y7e_c00124{bottom:216.960000pt;}
.y7c_c00124{bottom:218.240000pt;}
.y7d_c00124{bottom:218.880000pt;}
.y7a_c00124{bottom:245.760000pt;}
.y7b_c00124{bottom:248.960000pt;}
.y79_c00124{bottom:263.040000pt;}
.y78_c00124{bottom:263.680000pt;}
.y75_c00124{bottom:264.960000pt;}
.y76_c00124{bottom:265.600000pt;}
.y77_c00124{bottom:266.880000pt;}
.y74_c00124{bottom:282.240000pt;}
.y72_c00124{bottom:282.880000pt;}
.y70_c00124{bottom:283.520000pt;}
.y73_c00124{bottom:284.160000pt;}
.y6e_c00124{bottom:284.800000pt;}
.y71_c00124{bottom:285.440000pt;}
.y6f_c00124{bottom:286.080000pt;}
.y6d_c00124{bottom:286.720000pt;}
.y6c_c00124{bottom:301.440000pt;}
.y6b_c00124{bottom:302.080000pt;}
.y68_c00124{bottom:302.720000pt;}
.y69_c00124{bottom:303.360000pt;}
.y6a_c00124{bottom:305.280000pt;}
.y67_c00124{bottom:320.640000pt;}
.y64_c00124{bottom:321.280000pt;}
.y66_c00124{bottom:321.920000pt;}
.y65_c00124{bottom:323.200000pt;}
.y63_c00124{bottom:323.840000pt;}
.y61_c00124{bottom:339.840000pt;}
.y60_c00124{bottom:340.480000pt;}
.y62_c00124{bottom:341.120000pt;}
.y5e_c00124{bottom:341.760000pt;}
.y5f_c00124{bottom:342.400000pt;}
.y5d_c00124{bottom:358.400000pt;}
.y5c_c00124{bottom:359.040000pt;}
.y5b_c00124{bottom:361.600000pt;}
.y5a_c00124{bottom:377.600000pt;}
.y59_c00124{bottom:378.240000pt;}
.y57_c00124{bottom:378.880000pt;}
.y56_c00124{bottom:379.520000pt;}
.y58_c00124{bottom:380.800000pt;}
.y52_c00124{bottom:397.440000pt;}
.y53_c00124{bottom:398.080000pt;}
.y54_c00124{bottom:398.720000pt;}
.y55_c00124{bottom:399.360000pt;}
.y51_c00124{bottom:400.000000pt;}
.y4c_c00124{bottom:416.000000pt;}
.y4f_c00124{bottom:416.640000pt;}
.y50_c00124{bottom:417.280000pt;}
.y4e_c00124{bottom:418.560000pt;}
.y4d_c00124{bottom:419.200000pt;}
.y49_c00124{bottom:435.200000pt;}
.y4a_c00124{bottom:435.840000pt;}
.y4b_c00124{bottom:437.120000pt;}
.y45_c00124{bottom:453.760000pt;}
.y47_c00124{bottom:454.400000pt;}
.y48_c00124{bottom:455.680000pt;}
.y46_c00124{bottom:456.960000pt;}
.y3e_c00124{bottom:472.320000pt;}
.y40_c00124{bottom:472.960000pt;}
.y41_c00124{bottom:473.600000pt;}
.y44_c00124{bottom:474.240000pt;}
.y42_c00124{bottom:474.880000pt;}
.y43_c00124{bottom:475.520000pt;}
.y3f_c00124{bottom:476.160000pt;}
.y3b_c00124{bottom:492.160000pt;}
.y3d_c00124{bottom:492.800000pt;}
.y3c_c00124{bottom:494.080000pt;}
.y3a_c00124{bottom:494.720000pt;}
.y37_c00124{bottom:510.720000pt;}
.y39_c00124{bottom:511.360000pt;}
.y38_c00124{bottom:512.000000pt;}
.y36_c00124{bottom:512.640000pt;}
.y31_c00124{bottom:536.320000pt;}
.y33_c00124{bottom:536.960000pt;}
.y35_c00124{bottom:537.600000pt;}
.y30_c00124{bottom:540.160000pt;}
.y2f_c00124{bottom:540.800000pt;}
.y32_c00124{bottom:541.440000pt;}
.y34_c00124{bottom:542.080000pt;}
.y2e_c00124{bottom:588.800000pt;}
.y28_c00124{bottom:623.360000pt;}
.y2c_c00124{bottom:625.280000pt;}
.y2a_c00124{bottom:625.920000pt;}
.y29_c00124{bottom:626.560000pt;}
.y2b_c00124{bottom:627.200000pt;}
.y2d_c00124{bottom:627.840000pt;}
.y24_c00124{bottom:664.320000pt;}
.y25_c00124{bottom:664.960000pt;}
.y26_c00124{bottom:665.600000pt;}
.y27_c00124{bottom:666.240000pt;}
.y23_c00124{bottom:709.760000pt;}
.y1d_c00124{bottom:746.880000pt;}
.y1f_c00124{bottom:748.160000pt;}
.y20_c00124{bottom:748.800000pt;}
.y1e_c00124{bottom:750.080000pt;}
.y21_c00124{bottom:751.360000pt;}
.y22_c00124{bottom:752.640000pt;}
.y15_c00124{bottom:784.000000pt;}
.y16_c00124{bottom:784.640000pt;}
.y1a_c00124{bottom:785.920000pt;}
.y17_c00124{bottom:787.200000pt;}
.y18_c00124{bottom:787.840000pt;}
.y19_c00124{bottom:788.480000pt;}
.y1b_c00124{bottom:789.120000pt;}
.y1c_c00124{bottom:789.760000pt;}
.y10_c00124{bottom:823.680000pt;}
.yd_c00124{bottom:824.320000pt;}
.y12_c00124{bottom:824.960000pt;}
.yf_c00124{bottom:825.600000pt;}
.y11_c00124{bottom:826.240000pt;}
.y14_c00124{bottom:826.880000pt;}
.ye_c00124{bottom:827.520000pt;}
.y13_c00124{bottom:828.160000pt;}
.y7_c00124{bottom:862.080000pt;}
.y8_c00124{bottom:862.720000pt;}
.y9_c00124{bottom:864.000000pt;}
.ya_c00124{bottom:864.640000pt;}
.yb_c00124{bottom:865.920000pt;}
.yc_c00124{bottom:866.560000pt;}
.y4_c00124{bottom:899.840000pt;}
.y2_c00124{bottom:900.480000pt;}
.y3_c00124{bottom:901.120000pt;}
.y6_c00124{bottom:902.400000pt;}
.y5_c00124{bottom:903.680000pt;}
.y1_c00124{bottom:976.000000pt;}
.hc_c00124{height:13.822500pt;}
.hf_c00124{height:27.645000pt;}
.h4_c00124{height:29.948750pt;}
.hb_c00124{height:34.556250pt;}
.hd_c00124{height:36.860000pt;}
.h9_c00124{height:39.163750pt;}
.h8_c00124{height:41.467500pt;}
.h3_c00124{height:43.771250pt;}
.h7_c00124{height:46.075000pt;}
.h6_c00124{height:48.378750pt;}
.h5_c00124{height:50.682500pt;}
.he_c00124{height:52.986250pt;}
.ha_c00124{height:55.290000pt;}
.h12_c00124{height:57.593750pt;}
.h2_c00124{height:59.897500pt;}
.h10_c00124{height:62.201250pt;}
.h11_c00124{height:64.505000pt;}
.h0_c00124{height:1025.280000pt;}
.h1_c00124{height:1025.333333pt;}
.w1_c00124{width:698.666667pt;}
.w0_c00124{width:698.880000pt;}
.x0_c00124{left:0.000000pt;}
.x2_c00124{left:56.320000pt;}
.xc_c00124{left:57.600000pt;}
.x4e_c00124{left:59.520000pt;}
.x30_c00124{left:67.200000pt;}
.xd_c00124{left:85.120000pt;}
.x4a_c00124{left:87.040000pt;}
.x3e_c00124{left:96.000000pt;}
.x31_c00124{left:104.320000pt;}
.x3b_c00124{left:105.600000pt;}
.x3_c00124{left:122.240000pt;}
.x28_c00124{left:132.480000pt;}
.x32_c00124{left:133.760000pt;}
.x12_c00124{left:142.080000pt;}
.x1e_c00124{left:151.680000pt;}
.x36_c00124{left:152.960000pt;}
.x4_c00124{left:161.280000pt;}
.x44_c00124{left:162.560000pt;}
.x29_c00124{left:170.880000pt;}
.x51_c00124{left:180.480000pt;}
.x2c_c00124{left:190.080000pt;}
.x41_c00124{left:191.360000pt;}
.x5_c00124{left:199.040000pt;}
.x37_c00124{left:200.320000pt;}
.x13_c00124{left:208.000000pt;}
.x23_c00124{left:209.280000pt;}
.x52_c00124{left:218.880000pt;}
.xe_c00124{left:227.840000pt;}
.x14_c00124{left:246.400000pt;}
.x1f_c00124{left:247.680000pt;}
.x6_c00124{left:256.000000pt;}
.x2d_c00124{left:257.280000pt;}
.x45_c00124{left:267.520000pt;}
.x15_c00124{left:285.440000pt;}
.x20_c00124{left:295.680000pt;}
.x24_c00124{left:304.640000pt;}
.x3c_c00124{left:306.560000pt;}
.x2a_c00124{left:314.880000pt;}
.x47_c00124{left:316.160000pt;}
.xf_c00124{left:323.200000pt;}
.x4f_c00124{left:325.120000pt;}
.x33_c00124{left:334.080000pt;}
.x40_c00124{left:335.360000pt;}
.x25_c00124{left:343.680000pt;}
.x2e_c00124{left:353.280000pt;}
.x1b_c00124{left:361.600000pt;}
.x7_c00124{left:363.520000pt;}
.x53_c00124{left:364.800000pt;}
.x16_c00124{left:371.200000pt;}
.x21_c00124{left:381.440000pt;}
.x8_c00124{left:391.680000pt;}
.x38_c00124{left:392.960000pt;}
.x17_c00124{left:410.880000pt;}
.x42_c00124{left:421.760000pt;}
.x10_c00124{left:430.080000pt;}
.x2b_c00124{left:439.680000pt;}
.x46_c00124{left:450.560000pt;}
.x9_c00124{left:458.240000pt;}
.x34_c00124{left:459.520000pt;}
.x4b_c00124{left:460.800000pt;}
.xa_c00124{left:478.080000pt;}
.x2f_c00124{left:488.320000pt;}
.x4c_c00124{left:489.600000pt;}
.x18_c00124{left:497.280000pt;}
.x3d_c00124{left:499.200000pt;}
.x48_c00124{left:507.520000pt;}
.x3f_c00124{left:508.800000pt;}
.xb_c00124{left:515.840000pt;}
.x11_c00124{left:518.400000pt;}
.x26_c00124{left:526.720000pt;}
.x35_c00124{left:528.000000pt;}
.x19_c00124{left:535.680000pt;}
.x39_c00124{left:537.600000pt;}
.x49_c00124{left:547.200000pt;}
.x27_c00124{left:556.800000pt;}
.x22_c00124{left:564.480000pt;}
.x1c_c00124{left:565.760000pt;}
.x1a_c00124{left:574.720000pt;}
.x43_c00124{left:586.880000pt;}
.x1d_c00124{left:595.200000pt;}
.x3a_c00124{left:596.480000pt;}
.x1_c00124{left:602.240000pt;}
.x4d_c00124{left:604.800000pt;}
.x50_c00124{left:624.000000pt;}
.x54_c00124{left:625.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0f6def2b99145a78e9bea97f.woff2')format("woff");}.ff1_c00125{font-family:ff1_c00125;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4a_c00125{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m16_c00125{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00125{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m50_c00125{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m18_c00125{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);}
.m3f_c00125{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.md_c00125{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m51_c00125{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m29_c00125{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m25_c00125{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00125{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m17_c00125{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3_c00125{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00125{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00125{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m39_c00125{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m7_c00125{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m54_c00125{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00125{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m19_c00125{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);}
.m43_c00125{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m9_c00125{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m48_c00125{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m4_c00125{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);}
.m34_c00125{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);}
.m28_c00125{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m42_c00125{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);}
.m8_c00125{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);}
.m55_c00125{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m26_c00125{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);}
.m14_c00125{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m23_c00125{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);}
.m0_c00125{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m52_c00125{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);}
.m10_c00125{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00125{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);}
.m2a_c00125{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);}
.m2_c00125{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);}
.m2b_c00125{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m5_c00125{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m35_c00125{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);}
.m4b_c00125{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m31_c00125{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);}
.me_c00125{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);}
.m33_c00125{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m11_c00125{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m37_c00125{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.ma_c00125{transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);}
.m13_c00125{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00125{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00125{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);}
.m2f_c00125{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);}
.m1f_c00125{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m32_c00125{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m41_c00125{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m53_c00125{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);}
.m3b_c00125{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00125{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m47_c00125{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00125{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m21_c00125{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m30_c00125{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m6_c00125{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m56_c00125{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);}
.m22_c00125{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);}
.m40_c00125{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m12_c00125{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m15_c00125{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);}
.m1b_c00125{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.mf_c00125{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.mc_c00125{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);}
.m3a_c00125{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m38_c00125{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m36_c00125{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00125{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);}
.m4c_c00125{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);}
.m44_c00125{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00125{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m27_c00125{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m46_c00125{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m1_c00125{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.mb_c00125{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00125{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m49_c00125{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);}
.m45_c00125{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);}
.m3c_c00125{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m20_c00125{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.v2_c00125{vertical-align:-14.400000px;}
.v3_c00125{vertical-align:-8.640000px;}
.v0_c00125{vertical-align:0.000000px;}
.v1_c00125{vertical-align:2.880000px;}
.ls0_c00125{letter-spacing:0.000000px;}
.sc__c00125{text-shadow:none;}
.sc0_c00125{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00125{-webkit-text-stroke:0px transparent;}
.sc0_c00125{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00125{word-spacing:-9.780240px;}
.ws0_c00125{word-spacing:-8.310730px;}
.ws2_c00125{word-spacing:-1.116720px;}
.ws4_c00125{word-spacing:0.000000px;}
.ws1_c00125{word-spacing:1.701600px;}
.fc0_c00125{color:transparent;}
.fs1_c00125{font-size:34.560000px;}
.fs6_c00125{font-size:37.440000px;}
.fs8_c00125{font-size:40.320000px;}
.fsa_c00125{font-size:46.080000px;}
.fs2_c00125{font-size:48.960000px;}
.fs4_c00125{font-size:51.840000px;}
.fsc_c00125{font-size:54.720000px;}
.fsb_c00125{font-size:57.600000px;}
.fs5_c00125{font-size:60.480000px;}
.fs9_c00125{font-size:63.360000px;}
.fs7_c00125{font-size:66.240000px;}
.fs3_c00125{font-size:69.120000px;}
.fs0_c00125{font-size:72.000000px;}
.y0_c00125{bottom:0.000000px;}
.y7a_c00125{bottom:72.720000px;}
.y79_c00125{bottom:73.440000px;}
.y7c_c00125{bottom:74.160000px;}
.y7b_c00125{bottom:74.880000px;}
.y78_c00125{bottom:76.320000px;}
.y77_c00125{bottom:113.040000px;}
.y76_c00125{bottom:114.480000px;}
.y74_c00125{bottom:115.200000px;}
.y75_c00125{bottom:117.360000px;}
.y73_c00125{bottom:118.800000px;}
.y72_c00125{bottom:120.240000px;}
.y71_c00125{bottom:156.240000px;}
.y70_c00125{bottom:156.960000px;}
.y6c_c00125{bottom:158.400000px;}
.y6f_c00125{bottom:159.840000px;}
.y6e_c00125{bottom:160.560000px;}
.y6d_c00125{bottom:161.280000px;}
.y6b_c00125{bottom:162.000000px;}
.y68_c00125{bottom:210.960000px;}
.y6a_c00125{bottom:211.680000px;}
.y67_c00125{bottom:213.120000px;}
.y69_c00125{bottom:213.840000px;}
.y66_c00125{bottom:214.560000px;}
.y65_c00125{bottom:216.000000px;}
.y64_c00125{bottom:252.000000px;}
.y60_c00125{bottom:252.720000px;}
.y61_c00125{bottom:253.440000px;}
.y5f_c00125{bottom:254.160000px;}
.y63_c00125{bottom:255.600000px;}
.y62_c00125{bottom:256.320000px;}
.y5e_c00125{bottom:257.040000px;}
.y5d_c00125{bottom:257.760000px;}
.y5c_c00125{bottom:259.200000px;}
.y5b_c00125{bottom:294.480000px;}
.y5a_c00125{bottom:297.360000px;}
.y56_c00125{bottom:298.080000px;}
.y59_c00125{bottom:299.520000px;}
.y58_c00125{bottom:300.240000px;}
.y57_c00125{bottom:300.960000px;}
.y55_c00125{bottom:336.960000px;}
.y54_c00125{bottom:339.840000px;}
.y51_c00125{bottom:340.560000px;}
.y50_c00125{bottom:341.280000px;}
.y53_c00125{bottom:342.000000px;}
.y52_c00125{bottom:342.720000px;}
.y4f_c00125{bottom:343.440000px;}
.y4a_c00125{bottom:381.600000px;}
.y4b_c00125{bottom:382.320000px;}
.y4e_c00125{bottom:383.040000px;}
.y4d_c00125{bottom:383.760000px;}
.y49_c00125{bottom:384.480000px;}
.y4c_c00125{bottom:385.200000px;}
.y48_c00125{bottom:385.920000px;}
.y47_c00125{bottom:425.520000px;}
.y46_c00125{bottom:426.960000px;}
.y45_c00125{bottom:427.680000px;}
.y44_c00125{bottom:479.520000px;}
.y43_c00125{bottom:481.680000px;}
.y3f_c00125{bottom:520.560000px;}
.y3e_c00125{bottom:521.280000px;}
.y41_c00125{bottom:522.000000px;}
.y40_c00125{bottom:523.440000px;}
.y3d_c00125{bottom:524.160000px;}
.y42_c00125{bottom:524.880000px;}
.y3b_c00125{bottom:574.560000px;}
.y3a_c00125{bottom:576.720000px;}
.y3c_c00125{bottom:577.440000px;}
.y38_c00125{bottom:617.760000px;}
.y37_c00125{bottom:618.480000px;}
.y35_c00125{bottom:619.200000px;}
.y36_c00125{bottom:619.920000px;}
.y39_c00125{bottom:620.640000px;}
.y2f_c00125{bottom:659.520000px;}
.y31_c00125{bottom:660.240000px;}
.y33_c00125{bottom:660.960000px;}
.y30_c00125{bottom:662.400000px;}
.y32_c00125{bottom:663.120000px;}
.y34_c00125{bottom:663.840000px;}
.y2d_c00125{bottom:702.720000px;}
.y2b_c00125{bottom:704.160000px;}
.y2c_c00125{bottom:705.600000px;}
.y2e_c00125{bottom:706.320000px;}
.y2a_c00125{bottom:743.760000px;}
.y27_c00125{bottom:744.480000px;}
.y28_c00125{bottom:746.640000px;}
.y29_c00125{bottom:747.360000px;}
.y22_c00125{bottom:786.960000px;}
.y25_c00125{bottom:787.680000px;}
.y21_c00125{bottom:789.120000px;}
.y23_c00125{bottom:789.840000px;}
.y24_c00125{bottom:790.560000px;}
.y26_c00125{bottom:791.280000px;}
.y1b_c00125{bottom:830.160000px;}
.y1d_c00125{bottom:830.880000px;}
.y1a_c00125{bottom:831.600000px;}
.y1c_c00125{bottom:833.040000px;}
.y1e_c00125{bottom:834.480000px;}
.y1f_c00125{bottom:835.200000px;}
.y20_c00125{bottom:835.920000px;}
.y16_c00125{bottom:874.800000px;}
.y15_c00125{bottom:875.520000px;}
.y17_c00125{bottom:877.680000px;}
.y18_c00125{bottom:878.400000px;}
.y19_c00125{bottom:879.120000px;}
.y10_c00125{bottom:924.480000px;}
.y13_c00125{bottom:926.640000px;}
.y12_c00125{bottom:927.360000px;}
.y14_c00125{bottom:928.080000px;}
.y11_c00125{bottom:928.800000px;}
.y9_c00125{bottom:969.120000px;}
.ya_c00125{bottom:969.840000px;}
.yb_c00125{bottom:971.280000px;}
.yc_c00125{bottom:972.000000px;}
.yd_c00125{bottom:972.720000px;}
.ye_c00125{bottom:973.440000px;}
.yf_c00125{bottom:974.160000px;}
.y3_c00125{bottom:1010.160000px;}
.y4_c00125{bottom:1011.600000px;}
.y2_c00125{bottom:1013.040000px;}
.y7_c00125{bottom:1013.760000px;}
.y5_c00125{bottom:1014.480000px;}
.y8_c00125{bottom:1015.200000px;}
.y6_c00125{bottom:1016.640000px;}
.y1_c00125{bottom:1113.840000px;}
.h3_c00125{height:31.100625px;}
.h8_c00125{height:33.692344px;}
.ha_c00125{height:36.284062px;}
.hc_c00125{height:41.467500px;}
.h4_c00125{height:44.059219px;}
.h6_c00125{height:46.650937px;}
.hf_c00125{height:49.242656px;}
.hd_c00125{height:51.834375px;}
.h7_c00125{height:54.426094px;}
.hb_c00125{height:57.017812px;}
.h9_c00125{height:59.609531px;}
.h5_c00125{height:62.201250px;}
.h2_c00125{height:64.792969px;}
.he_c00125{height:65.081250px;}
.h0_c00125{height:1153.440000px;}
.h1_c00125{height:1153.500000px;}
.w1_c00125{width:786.000000px;}
.w0_c00125{width:786.240000px;}
.x0_c00125{left:0.000000px;}
.x2_c00125{left:69.840000px;}
.x26_c00125{left:71.280000px;}
.x2c_c00125{left:90.720000px;}
.x37_c00125{left:101.520000px;}
.x4c_c00125{left:102.960000px;}
.x3_c00125{left:110.880000px;}
.xb_c00125{left:112.320000px;}
.x47_c00125{left:114.480000px;}
.x2d_c00125{left:124.560000px;}
.x48_c00125{left:143.280000px;}
.x31_c00125{left:144.720000px;}
.x16_c00125{left:165.600000px;}
.xc_c00125{left:176.400000px;}
.x52_c00125{left:177.840000px;}
.x27_c00125{left:179.280000px;}
.x4_c00125{left:186.480000px;}
.x4d_c00125{left:198.720000px;}
.x3f_c00125{left:207.360000px;}
.xd_c00125{left:209.520000px;}
.x2e_c00125{left:219.600000px;}
.x1b_c00125{left:228.960000px;}
.x17_c00125{left:230.400000px;}
.x38_c00125{left:240.480000px;}
.x50_c00125{left:242.640000px;}
.x2f_c00125{left:251.280000px;}
.x18_c00125{left:253.440000px;}
.x5_c00125{left:262.080000px;}
.x3e_c00125{left:264.960000px;}
.xe_c00125{left:272.160000px;}
.x51_c00125{left:273.600000px;}
.x28_c00125{left:283.680000px;}
.x6_c00125{left:293.040000px;}
.x4a_c00125{left:294.480000px;}
.x40_c00125{left:305.280000px;}
.x29_c00125{left:315.360000px;}
.xf_c00125{left:316.800000px;}
.x39_c00125{left:326.880000px;}
.x20_c00125{left:337.680000px;}
.x10_c00125{left:348.480000px;}
.x19_c00125{left:349.920000px;}
.x1c_c00125{left:358.560000px;}
.x21_c00125{left:370.800000px;}
.x11_c00125{left:380.160000px;}
.x41_c00125{left:381.600000px;}
.x3a_c00125{left:391.680000px;}
.x45_c00125{left:403.200000px;}
.x1a_c00125{left:413.280000px;}
.x53_c00125{left:414.720000px;}
.x2a_c00125{left:424.800000px;}
.x7_c00125{left:434.160000px;}
.x12_c00125{left:435.600000px;}
.x55_c00125{left:445.680000px;}
.x1d_c00125{left:447.120000px;}
.x57_c00125{left:457.200000px;}
.x13_c00125{left:468.720000px;}
.x44_c00125{left:478.080000px;}
.x49_c00125{left:479.520000px;}
.x22_c00125{left:480.960000px;}
.x8_c00125{left:489.600000px;}
.x4b_c00125{left:500.400000px;}
.x34_c00125{left:510.480000px;}
.x2b_c00125{left:511.920000px;}
.x1e_c00125{left:521.280000px;}
.x4e_c00125{left:522.720000px;}
.x42_c00125{left:532.800000px;}
.x32_c00125{left:544.320000px;}
.x4f_c00125{left:555.120000px;}
.x43_c00125{left:565.920000px;}
.x9_c00125{left:576.720000px;}
.x23_c00125{left:587.520000px;}
.x14_c00125{left:588.960000px;}
.x35_c00125{left:599.040000px;}
.x30_c00125{left:601.200000px;}
.x1f_c00125{left:619.920000px;}
.x24_c00125{left:621.360000px;}
.x36_c00125{left:630.720000px;}
.x3b_c00125{left:632.880000px;}
.x33_c00125{left:653.040000px;}
.x54_c00125{left:663.120000px;}
.x3c_c00125{left:664.560000px;}
.xa_c00125{left:674.640000px;}
.x15_c00125{left:686.160000px;}
.x1_c00125{left:691.920000px;}
.x56_c00125{left:696.960000px;}
.x3d_c00125{left:699.840000px;}
.x25_c00125{left:707.040000px;}
.x46_c00125{left:708.480000px;}
@media print{
.v2_c00125{vertical-align:-12.800000pt;}
.v3_c00125{vertical-align:-7.680000pt;}
.v0_c00125{vertical-align:0.000000pt;}
.v1_c00125{vertical-align:2.560000pt;}
.ls0_c00125{letter-spacing:0.000000pt;}
.ws3_c00125{word-spacing:-8.693547pt;}
.ws0_c00125{word-spacing:-7.387315pt;}
.ws2_c00125{word-spacing:-0.992640pt;}
.ws4_c00125{word-spacing:0.000000pt;}
.ws1_c00125{word-spacing:1.512533pt;}
.fs1_c00125{font-size:30.720000pt;}
.fs6_c00125{font-size:33.280000pt;}
.fs8_c00125{font-size:35.840000pt;}
.fsa_c00125{font-size:40.960000pt;}
.fs2_c00125{font-size:43.520000pt;}
.fs4_c00125{font-size:46.080000pt;}
.fsc_c00125{font-size:48.640000pt;}
.fsb_c00125{font-size:51.200000pt;}
.fs5_c00125{font-size:53.760000pt;}
.fs9_c00125{font-size:56.320000pt;}
.fs7_c00125{font-size:58.880000pt;}
.fs3_c00125{font-size:61.440000pt;}
.fs0_c00125{font-size:64.000000pt;}
.y0_c00125{bottom:0.000000pt;}
.y7a_c00125{bottom:64.640000pt;}
.y79_c00125{bottom:65.280000pt;}
.y7c_c00125{bottom:65.920000pt;}
.y7b_c00125{bottom:66.560000pt;}
.y78_c00125{bottom:67.840000pt;}
.y77_c00125{bottom:100.480000pt;}
.y76_c00125{bottom:101.760000pt;}
.y74_c00125{bottom:102.400000pt;}
.y75_c00125{bottom:104.320000pt;}
.y73_c00125{bottom:105.600000pt;}
.y72_c00125{bottom:106.880000pt;}
.y71_c00125{bottom:138.880000pt;}
.y70_c00125{bottom:139.520000pt;}
.y6c_c00125{bottom:140.800000pt;}
.y6f_c00125{bottom:142.080000pt;}
.y6e_c00125{bottom:142.720000pt;}
.y6d_c00125{bottom:143.360000pt;}
.y6b_c00125{bottom:144.000000pt;}
.y68_c00125{bottom:187.520000pt;}
.y6a_c00125{bottom:188.160000pt;}
.y67_c00125{bottom:189.440000pt;}
.y69_c00125{bottom:190.080000pt;}
.y66_c00125{bottom:190.720000pt;}
.y65_c00125{bottom:192.000000pt;}
.y64_c00125{bottom:224.000000pt;}
.y60_c00125{bottom:224.640000pt;}
.y61_c00125{bottom:225.280000pt;}
.y5f_c00125{bottom:225.920000pt;}
.y63_c00125{bottom:227.200000pt;}
.y62_c00125{bottom:227.840000pt;}
.y5e_c00125{bottom:228.480000pt;}
.y5d_c00125{bottom:229.120000pt;}
.y5c_c00125{bottom:230.400000pt;}
.y5b_c00125{bottom:261.760000pt;}
.y5a_c00125{bottom:264.320000pt;}
.y56_c00125{bottom:264.960000pt;}
.y59_c00125{bottom:266.240000pt;}
.y58_c00125{bottom:266.880000pt;}
.y57_c00125{bottom:267.520000pt;}
.y55_c00125{bottom:299.520000pt;}
.y54_c00125{bottom:302.080000pt;}
.y51_c00125{bottom:302.720000pt;}
.y50_c00125{bottom:303.360000pt;}
.y53_c00125{bottom:304.000000pt;}
.y52_c00125{bottom:304.640000pt;}
.y4f_c00125{bottom:305.280000pt;}
.y4a_c00125{bottom:339.200000pt;}
.y4b_c00125{bottom:339.840000pt;}
.y4e_c00125{bottom:340.480000pt;}
.y4d_c00125{bottom:341.120000pt;}
.y49_c00125{bottom:341.760000pt;}
.y4c_c00125{bottom:342.400000pt;}
.y48_c00125{bottom:343.040000pt;}
.y47_c00125{bottom:378.240000pt;}
.y46_c00125{bottom:379.520000pt;}
.y45_c00125{bottom:380.160000pt;}
.y44_c00125{bottom:426.240000pt;}
.y43_c00125{bottom:428.160000pt;}
.y3f_c00125{bottom:462.720000pt;}
.y3e_c00125{bottom:463.360000pt;}
.y41_c00125{bottom:464.000000pt;}
.y40_c00125{bottom:465.280000pt;}
.y3d_c00125{bottom:465.920000pt;}
.y42_c00125{bottom:466.560000pt;}
.y3b_c00125{bottom:510.720000pt;}
.y3a_c00125{bottom:512.640000pt;}
.y3c_c00125{bottom:513.280000pt;}
.y38_c00125{bottom:549.120000pt;}
.y37_c00125{bottom:549.760000pt;}
.y35_c00125{bottom:550.400000pt;}
.y36_c00125{bottom:551.040000pt;}
.y39_c00125{bottom:551.680000pt;}
.y2f_c00125{bottom:586.240000pt;}
.y31_c00125{bottom:586.880000pt;}
.y33_c00125{bottom:587.520000pt;}
.y30_c00125{bottom:588.800000pt;}
.y32_c00125{bottom:589.440000pt;}
.y34_c00125{bottom:590.080000pt;}
.y2d_c00125{bottom:624.640000pt;}
.y2b_c00125{bottom:625.920000pt;}
.y2c_c00125{bottom:627.200000pt;}
.y2e_c00125{bottom:627.840000pt;}
.y2a_c00125{bottom:661.120000pt;}
.y27_c00125{bottom:661.760000pt;}
.y28_c00125{bottom:663.680000pt;}
.y29_c00125{bottom:664.320000pt;}
.y22_c00125{bottom:699.520000pt;}
.y25_c00125{bottom:700.160000pt;}
.y21_c00125{bottom:701.440000pt;}
.y23_c00125{bottom:702.080000pt;}
.y24_c00125{bottom:702.720000pt;}
.y26_c00125{bottom:703.360000pt;}
.y1b_c00125{bottom:737.920000pt;}
.y1d_c00125{bottom:738.560000pt;}
.y1a_c00125{bottom:739.200000pt;}
.y1c_c00125{bottom:740.480000pt;}
.y1e_c00125{bottom:741.760000pt;}
.y1f_c00125{bottom:742.400000pt;}
.y20_c00125{bottom:743.040000pt;}
.y16_c00125{bottom:777.600000pt;}
.y15_c00125{bottom:778.240000pt;}
.y17_c00125{bottom:780.160000pt;}
.y18_c00125{bottom:780.800000pt;}
.y19_c00125{bottom:781.440000pt;}
.y10_c00125{bottom:821.760000pt;}
.y13_c00125{bottom:823.680000pt;}
.y12_c00125{bottom:824.320000pt;}
.y14_c00125{bottom:824.960000pt;}
.y11_c00125{bottom:825.600000pt;}
.y9_c00125{bottom:861.440000pt;}
.ya_c00125{bottom:862.080000pt;}
.yb_c00125{bottom:863.360000pt;}
.yc_c00125{bottom:864.000000pt;}
.yd_c00125{bottom:864.640000pt;}
.ye_c00125{bottom:865.280000pt;}
.yf_c00125{bottom:865.920000pt;}
.y3_c00125{bottom:897.920000pt;}
.y4_c00125{bottom:899.200000pt;}
.y2_c00125{bottom:900.480000pt;}
.y7_c00125{bottom:901.120000pt;}
.y5_c00125{bottom:901.760000pt;}
.y8_c00125{bottom:902.400000pt;}
.y6_c00125{bottom:903.680000pt;}
.y1_c00125{bottom:990.080000pt;}
.h3_c00125{height:27.645000pt;}
.h8_c00125{height:29.948750pt;}
.ha_c00125{height:32.252500pt;}
.hc_c00125{height:36.860000pt;}
.h4_c00125{height:39.163750pt;}
.h6_c00125{height:41.467500pt;}
.hf_c00125{height:43.771250pt;}
.hd_c00125{height:46.075000pt;}
.h7_c00125{height:48.378750pt;}
.hb_c00125{height:50.682500pt;}
.h9_c00125{height:52.986250pt;}
.h5_c00125{height:55.290000pt;}
.h2_c00125{height:57.593750pt;}
.he_c00125{height:57.850000pt;}
.h0_c00125{height:1025.280000pt;}
.h1_c00125{height:1025.333333pt;}
.w1_c00125{width:698.666667pt;}
.w0_c00125{width:698.880000pt;}
.x0_c00125{left:0.000000pt;}
.x2_c00125{left:62.080000pt;}
.x26_c00125{left:63.360000pt;}
.x2c_c00125{left:80.640000pt;}
.x37_c00125{left:90.240000pt;}
.x4c_c00125{left:91.520000pt;}
.x3_c00125{left:98.560000pt;}
.xb_c00125{left:99.840000pt;}
.x47_c00125{left:101.760000pt;}
.x2d_c00125{left:110.720000pt;}
.x48_c00125{left:127.360000pt;}
.x31_c00125{left:128.640000pt;}
.x16_c00125{left:147.200000pt;}
.xc_c00125{left:156.800000pt;}
.x52_c00125{left:158.080000pt;}
.x27_c00125{left:159.360000pt;}
.x4_c00125{left:165.760000pt;}
.x4d_c00125{left:176.640000pt;}
.x3f_c00125{left:184.320000pt;}
.xd_c00125{left:186.240000pt;}
.x2e_c00125{left:195.200000pt;}
.x1b_c00125{left:203.520000pt;}
.x17_c00125{left:204.800000pt;}
.x38_c00125{left:213.760000pt;}
.x50_c00125{left:215.680000pt;}
.x2f_c00125{left:223.360000pt;}
.x18_c00125{left:225.280000pt;}
.x5_c00125{left:232.960000pt;}
.x3e_c00125{left:235.520000pt;}
.xe_c00125{left:241.920000pt;}
.x51_c00125{left:243.200000pt;}
.x28_c00125{left:252.160000pt;}
.x6_c00125{left:260.480000pt;}
.x4a_c00125{left:261.760000pt;}
.x40_c00125{left:271.360000pt;}
.x29_c00125{left:280.320000pt;}
.xf_c00125{left:281.600000pt;}
.x39_c00125{left:290.560000pt;}
.x20_c00125{left:300.160000pt;}
.x10_c00125{left:309.760000pt;}
.x19_c00125{left:311.040000pt;}
.x1c_c00125{left:318.720000pt;}
.x21_c00125{left:329.600000pt;}
.x11_c00125{left:337.920000pt;}
.x41_c00125{left:339.200000pt;}
.x3a_c00125{left:348.160000pt;}
.x45_c00125{left:358.400000pt;}
.x1a_c00125{left:367.360000pt;}
.x53_c00125{left:368.640000pt;}
.x2a_c00125{left:377.600000pt;}
.x7_c00125{left:385.920000pt;}
.x12_c00125{left:387.200000pt;}
.x55_c00125{left:396.160000pt;}
.x1d_c00125{left:397.440000pt;}
.x57_c00125{left:406.400000pt;}
.x13_c00125{left:416.640000pt;}
.x44_c00125{left:424.960000pt;}
.x49_c00125{left:426.240000pt;}
.x22_c00125{left:427.520000pt;}
.x8_c00125{left:435.200000pt;}
.x4b_c00125{left:444.800000pt;}
.x34_c00125{left:453.760000pt;}
.x2b_c00125{left:455.040000pt;}
.x1e_c00125{left:463.360000pt;}
.x4e_c00125{left:464.640000pt;}
.x42_c00125{left:473.600000pt;}
.x32_c00125{left:483.840000pt;}
.x4f_c00125{left:493.440000pt;}
.x43_c00125{left:503.040000pt;}
.x9_c00125{left:512.640000pt;}
.x23_c00125{left:522.240000pt;}
.x14_c00125{left:523.520000pt;}
.x35_c00125{left:532.480000pt;}
.x30_c00125{left:534.400000pt;}
.x1f_c00125{left:551.040000pt;}
.x24_c00125{left:552.320000pt;}
.x36_c00125{left:560.640000pt;}
.x3b_c00125{left:562.560000pt;}
.x33_c00125{left:580.480000pt;}
.x54_c00125{left:589.440000pt;}
.x3c_c00125{left:590.720000pt;}
.xa_c00125{left:599.680000pt;}
.x15_c00125{left:609.920000pt;}
.x1_c00125{left:615.040000pt;}
.x56_c00125{left:619.520000pt;}
.x3d_c00125{left:622.080000pt;}
.x25_c00125{left:628.480000pt;}
.x46_c00125{left:629.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1c240b3651796ce954fb0cce.woff2')format("woff");}.ff1_c00126{font-family:ff1_c00126;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5c_c00126{transform:matrix(0.218725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218725,0.000000,0.000000,0.250000,0,0);}
.m36_c00126{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m4_c00126{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);}
.m16_c00126{transform:matrix(0.234200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234200,0.000000,0.000000,0.250000,0,0);}
.m43_c00126{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m15_c00126{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m2b_c00126{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m5d_c00126{transform:matrix(0.240100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240100,0.000000,0.000000,0.250000,0,0);}
.m5b_c00126{transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);}
.m29_c00126{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m41_c00126{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00126{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.me_c00126{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00126{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mb_c00126{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m45_c00126{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m18_c00126{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m14_c00126{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m8_c00126{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m56_c00126{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m32_c00126{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00126{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m30_c00126{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m11_c00126{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1_c00126{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m5_c00126{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m40_c00126{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m50_c00126{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m9_c00126{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m42_c00126{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.ma_c00126{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00126{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00126{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);}
.m44_c00126{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m12_c00126{transform:matrix(0.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);}
.m54_c00126{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.mc_c00126{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m48_c00126{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);}
.m51_c00126{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m27_c00126{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);}
.m2f_c00126{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m52_c00126{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);}
.m53_c00126{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m25_c00126{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00126{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);}
.m23_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);}
.m3b_c00126{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m33_c00126{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m46_c00126{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00126{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);}
.m58_c00126{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);}
.m0_c00126{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m20_c00126{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m49_c00126{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m2_c00126{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m37_c00126{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);}
.m13_c00126{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m38_c00126{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);}
.mf_c00126{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m47_c00126{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00126{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m26_c00126{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m19_c00126{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00126{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00126{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m22_c00126{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);}
.m4e_c00126{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);}
.m34_c00126{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00126{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m57_c00126{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);}
.m24_c00126{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);}
.m4d_c00126{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00126{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m35_c00126{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00126{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);}
.m4b_c00126{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00126{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00126{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00126{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m21_c00126{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00126{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m39_c00126{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);}
.m1b_c00126{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m17_c00126{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m31_c00126{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m59_c00126{transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00126{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);}
.md_c00126{transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);}
.m6_c00126{transform:matrix(0.647500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.647500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.647500,0.000000,0.000000,0.250000,0,0);}
.m28_c00126{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);}
.m55_c00126{transform:matrix(1.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.502500,0.000000,0.000000,0.250000,0,0);}
.m3_c00126{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.m7_c00126{transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);}
.m10_c00126{transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);}
.v0_c00126{vertical-align:0.000000px;}
.v1_c00126{vertical-align:2.880000px;}
.v3_c00126{vertical-align:5.760000px;}
.v2_c00126{vertical-align:8.640000px;}
.ls1_c00126{letter-spacing:0.000000px;}
.ls0_c00126{letter-spacing:78.245760px;}
.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;}
}
.ws1_c00126{word-spacing:-1.411680px;}
.ws2_c00126{word-spacing:0.000000px;}
.ws0_c00126{word-spacing:1.613280px;}
.fc0_c00126{color:transparent;}
.fsa_c00126{font-size:14.400000px;}
.fs3_c00126{font-size:17.280000px;}
.fsf_c00126{font-size:23.040000px;}
.fsc_c00126{font-size:34.560000px;}
.fs6_c00126{font-size:37.440000px;}
.fsd_c00126{font-size:40.320000px;}
.fse_c00126{font-size:43.200000px;}
.fs1_c00126{font-size:46.080000px;}
.fs5_c00126{font-size:48.960000px;}
.fs2_c00126{font-size:51.840000px;}
.fs7_c00126{font-size:54.720000px;}
.fs4_c00126{font-size:57.600000px;}
.fs9_c00126{font-size:60.480000px;}
.fs8_c00126{font-size:63.360000px;}
.fsb_c00126{font-size:66.240000px;}
.fs0_c00126{font-size:69.120000px;}
.fs10_c00126{font-size:97.920000px;}
.fs12_c00126{font-size:100.800000px;}
.fs11_c00126{font-size:103.680000px;}
.y0_c00126{bottom:0.000000px;}
.y95_c00126{bottom:50.400000px;}
.y93_c00126{bottom:51.120000px;}
.y90_c00126{bottom:52.560000px;}
.y96_c00126{bottom:53.280000px;}
.y94_c00126{bottom:54.000000px;}
.y92_c00126{bottom:55.440000px;}
.y91_c00126{bottom:56.160000px;}
.y8f_c00126{bottom:56.880000px;}
.y8e_c00126{bottom:106.560000px;}
.y8d_c00126{bottom:108.000000px;}
.y8c_c00126{bottom:109.440000px;}
.y8a_c00126{bottom:146.880000px;}
.y89_c00126{bottom:147.600000px;}
.y8b_c00126{bottom:148.320000px;}
.y88_c00126{bottom:150.480000px;}
.y87_c00126{bottom:151.200000px;}
.y83_c00126{bottom:200.880000px;}
.y82_c00126{bottom:201.600000px;}
.y79_c00126{bottom:202.320000px;}
.y7b_c00126{bottom:203.040000px;}
.y7d_c00126{bottom:203.760000px;}
.y78_c00126{bottom:205.200000px;}
.y86_c00126{bottom:221.040000px;}
.y85_c00126{bottom:221.760000px;}
.y81_c00126{bottom:223.200000px;}
.y7f_c00126{bottom:223.920000px;}
.y77_c00126{bottom:224.640000px;}
.y7c_c00126{bottom:225.360000px;}
.y76_c00126{bottom:226.800000px;}
.y84_c00126{bottom:228.240000px;}
.y80_c00126{bottom:246.240000px;}
.y7e_c00126{bottom:246.960000px;}
.y75_c00126{bottom:247.680000px;}
.y7a_c00126{bottom:248.400000px;}
.y72_c00126{bottom:277.200000px;}
.y74_c00126{bottom:278.640000px;}
.y73_c00126{bottom:279.360000px;}
.y71_c00126{bottom:281.520000px;}
.y6e_c00126{bottom:317.520000px;}
.y70_c00126{bottom:318.240000px;}
.y6c_c00126{bottom:318.960000px;}
.y6d_c00126{bottom:321.120000px;}
.y6f_c00126{bottom:321.840000px;}
.y6b_c00126{bottom:322.560000px;}
.y6a_c00126{bottom:323.280000px;}
.y69_c00126{bottom:361.440000px;}
.y68_c00126{bottom:363.600000px;}
.y67_c00126{bottom:364.320000px;}
.y66_c00126{bottom:365.040000px;}
.y65_c00126{bottom:365.760000px;}
.y63_c00126{bottom:416.160000px;}
.y64_c00126{bottom:417.600000px;}
.y62_c00126{bottom:418.320000px;}
.y5e_c00126{bottom:458.640000px;}
.y5f_c00126{bottom:459.360000px;}
.y5d_c00126{bottom:460.080000px;}
.y61_c00126{bottom:460.800000px;}
.y5b_c00126{bottom:470.880000px;}
.y60_c00126{bottom:480.960000px;}
.y5c_c00126{bottom:482.400000px;}
.y5a_c00126{bottom:521.280000px;}
.y59_c00126{bottom:524.160000px;}
.y57_c00126{bottom:564.480000px;}
.y58_c00126{bottom:565.200000px;}
.y55_c00126{bottom:566.640000px;}
.y56_c00126{bottom:567.360000px;}
.y54_c00126{bottom:617.760000px;}
.y52_c00126{bottom:619.920000px;}
.y53_c00126{bottom:622.080000px;}
.y4e_c00126{bottom:639.360000px;}
.y4f_c00126{bottom:640.080000px;}
.y4c_c00126{bottom:641.520000px;}
.y4d_c00126{bottom:645.120000px;}
.y4b_c00126{bottom:650.160000px;}
.y51_c00126{bottom:651.600000px;}
.y49_c00126{bottom:653.040000px;}
.y50_c00126{bottom:653.760000px;}
.y4a_c00126{bottom:654.480000px;}
.y48_c00126{bottom:671.760000px;}
.y46_c00126{bottom:673.920000px;}
.y45_c00126{bottom:674.640000px;}
.y47_c00126{bottom:676.080000px;}
.y44_c00126{bottom:681.840000px;}
.y42_c00126{bottom:684.000000px;}
.y43_c00126{bottom:686.160000px;}
.y3f_c00126{bottom:704.880000px;}
.y40_c00126{bottom:705.600000px;}
.y3e_c00126{bottom:707.040000px;}
.y41_c00126{bottom:709.200000px;}
.y3b_c00126{bottom:714.240000px;}
.y3a_c00126{bottom:714.960000px;}
.y3d_c00126{bottom:717.120000px;}
.y3c_c00126{bottom:719.280000px;}
.y33_c00126{bottom:745.920000px;}
.y31_c00126{bottom:747.360000px;}
.y30_c00126{bottom:748.080000px;}
.y34_c00126{bottom:748.800000px;}
.y36_c00126{bottom:749.520000px;}
.y32_c00126{bottom:750.240000px;}
.y35_c00126{bottom:750.960000px;}
.y39_c00126{bottom:751.680000px;}
.y37_c00126{bottom:752.400000px;}
.y38_c00126{bottom:753.840000px;}
.y2e_c00126{bottom:786.240000px;}
.y2f_c00126{bottom:790.560000px;}
.y2a_c00126{bottom:833.760000px;}
.y2b_c00126{bottom:835.200000px;}
.y2c_c00126{bottom:835.920000px;}
.y2d_c00126{bottom:836.640000px;}
.y26_c00126{bottom:883.440000px;}
.y24_c00126{bottom:885.600000px;}
.y25_c00126{bottom:888.480000px;}
.y27_c00126{bottom:889.200000px;}
.y28_c00126{bottom:890.640000px;}
.y20_c00126{bottom:906.480000px;}
.y1e_c00126{bottom:908.640000px;}
.y21_c00126{bottom:910.080000px;}
.y1f_c00126{bottom:911.520000px;}
.y22_c00126{bottom:912.240000px;}
.y1d_c00126{bottom:916.560000px;}
.y1b_c00126{bottom:918.720000px;}
.y23_c00126{bottom:919.440000px;}
.y1c_c00126{bottom:920.160000px;}
.y15_c00126{bottom:938.880000px;}
.y19_c00126{bottom:941.040000px;}
.y1a_c00126{bottom:943.200000px;}
.y14_c00126{bottom:948.240000px;}
.y12_c00126{bottom:949.680000px;}
.y13_c00126{bottom:951.840000px;}
.y16_c00126{bottom:952.560000px;}
.y17_c00126{bottom:953.280000px;}
.y18_c00126{bottom:954.000000px;}
.yc_c00126{bottom:979.920000px;}
.yd_c00126{bottom:981.360000px;}
.yb_c00126{bottom:982.080000px;}
.y11_c00126{bottom:983.520000px;}
.yf_c00126{bottom:985.680000px;}
.ye_c00126{bottom:986.400000px;}
.y10_c00126{bottom:987.120000px;}
.y5_c00126{bottom:1011.600000px;}
.y3_c00126{bottom:1013.040000px;}
.y2_c00126{bottom:1013.760000px;}
.y8_c00126{bottom:1014.480000px;}
.y6_c00126{bottom:1015.200000px;}
.y4_c00126{bottom:1016.640000px;}
.y9_c00126{bottom:1017.360000px;}
.y7_c00126{bottom:1018.800000px;}
.ya_c00126{bottom:1019.520000px;}
.y29_c00126{bottom:1021.680000px;}
.y1_c00126{bottom:1100.880000px;}
.hc_c00126{height:12.958594px;}
.h5_c00126{height:15.550313px;}
.hf_c00126{height:18.430313px;}
.h13_c00126{height:20.733750px;}
.he_c00126{height:31.100625px;}
.h8_c00126{height:33.692344px;}
.h11_c00126{height:36.284062px;}
.h12_c00126{height:38.875781px;}
.h3_c00126{height:41.467500px;}
.h7_c00126{height:44.059219px;}
.h4_c00126{height:46.650937px;}
.h9_c00126{height:49.242656px;}
.h6_c00126{height:51.834375px;}
.hb_c00126{height:54.426094px;}
.h10_c00126{height:55.290937px;}
.ha_c00126{height:57.017812px;}
.hd_c00126{height:59.609531px;}
.h2_c00126{height:62.201250px;}
.h14_c00126{height:88.118437px;}
.h16_c00126{height:90.710156px;}
.h15_c00126{height:93.301875px;}
.h0_c00126{height:1152.720000px;}
.h1_c00126{height:1152.750000px;}
.w1_c00126{width:785.250000px;}
.w0_c00126{width:785.520000px;}
.x0_c00126{left:0.000000px;}
.x2_c00126{left:62.640000px;}
.x34_c00126{left:64.080000px;}
.x55_c00126{left:65.520000px;}
.x3_c00126{left:84.240000px;}
.x43_c00126{left:85.680000px;}
.xf_c00126{left:93.600000px;}
.x16_c00126{left:95.040000px;}
.x2d_c00126{left:105.840000px;}
.x3e_c00126{left:107.280000px;}
.x4_c00126{left:114.480000px;}
.x10_c00126{left:137.520000px;}
.x24_c00126{left:146.880000px;}
.x5_c00126{left:148.320000px;}
.x44_c00126{left:150.480000px;}
.x42_c00126{left:159.120000px;}
.x1e_c00126{left:169.200000px;}
.x2f_c00126{left:170.640000px;}
.x56_c00126{left:172.080000px;}
.x35_c00126{left:180.000000px;}
.x2e_c00126{left:181.440000px;}
.x15_c00126{left:190.800000px;}
.x4f_c00126{left:203.040000px;}
.x6_c00126{left:211.680000px;}
.x2a_c00126{left:213.840000px;}
.x17_c00126{left:222.480000px;}
.x45_c00126{left:224.640000px;}
.x7_c00126{left:233.280000px;}
.x57_c00126{left:236.160000px;}
.x30_c00126{left:244.800000px;}
.x36_c00126{left:246.240000px;}
.x1f_c00126{left:254.880000px;}
.x8_c00126{left:264.240000px;}
.x27_c00126{left:265.680000px;}
.x50_c00126{left:267.120000px;}
.x3f_c00126{left:276.480000px;}
.x54_c00126{left:277.920000px;}
.x11_c00126{left:286.560000px;}
.x14_c00126{left:288.000000px;}
.x9_c00126{left:298.080000px;}
.x47_c00126{left:300.240000px;}
.x31_c00126{left:309.600000px;}
.x37_c00126{left:311.040000px;}
.x20_c00126{left:318.960000px;}
.x46_c00126{left:321.120000px;}
.x58_c00126{left:331.920000px;}
.x39_c00126{left:342.000000px;}
.x21_c00126{left:352.080000px;}
.xa_c00126{left:363.600000px;}
.x59_c00126{left:365.040000px;}
.x3a_c00126{left:373.680000px;}
.x32_c00126{left:375.120000px;}
.x4a_c00126{left:376.560000px;}
.x28_c00126{left:384.480000px;}
.x33_c00126{left:385.920000px;}
.xb_c00126{left:394.560000px;}
.x12_c00126{left:396.000000px;}
.x48_c00126{left:397.440000px;}
.x29_c00126{left:406.080000px;}
.x49_c00126{left:408.240000px;}
.xc_c00126{left:416.160000px;}
.x5a_c00126{left:429.840000px;}
.x18_c00126{left:439.920000px;}
.xd_c00126{left:450.000000px;}
.x40_c00126{left:462.240000px;}
.x22_c00126{left:470.880000px;}
.x3b_c00126{left:483.120000px;}
.x5b_c00126{left:496.080000px;}
.x51_c00126{left:505.440000px;}
.xe_c00126{left:514.080000px;}
.x19_c00126{left:515.520000px;}
.x38_c00126{left:527.040000px;}
.x13_c00126{left:535.680000px;}
.x52_c00126{left:537.120000px;}
.x4c_c00126{left:539.280000px;}
.x25_c00126{left:557.280000px;}
.x41_c00126{left:558.720000px;}
.x4b_c00126{left:560.160000px;}
.x1a_c00126{left:569.520000px;}
.x23_c00126{left:578.880000px;}
.x26_c00126{left:591.840000px;}
.x3c_c00126{left:602.640000px;}
.x4d_c00126{left:613.440000px;}
.x2b_c00126{left:624.240000px;}
.x1b_c00126{left:635.040000px;}
.x4e_c00126{left:656.640000px;}
.x53_c00126{left:668.160000px;}
.x1c_c00126{left:677.520000px;}
.x3d_c00126{left:678.960000px;}
.x1_c00126{left:684.720000px;}
.x2c_c00126{left:689.760000px;}
.x1d_c00126{left:701.280000px;}
@media print{
.v0_c00126{vertical-align:0.000000pt;}
.v1_c00126{vertical-align:2.560000pt;}
.v3_c00126{vertical-align:5.120000pt;}
.v2_c00126{vertical-align:7.680000pt;}
.ls1_c00126{letter-spacing:0.000000pt;}
.ls0_c00126{letter-spacing:69.551787pt;}
.ws1_c00126{word-spacing:-1.254827pt;}
.ws2_c00126{word-spacing:0.000000pt;}
.ws0_c00126{word-spacing:1.434027pt;}
.fsa_c00126{font-size:12.800000pt;}
.fs3_c00126{font-size:15.360000pt;}
.fsf_c00126{font-size:20.480000pt;}
.fsc_c00126{font-size:30.720000pt;}
.fs6_c00126{font-size:33.280000pt;}
.fsd_c00126{font-size:35.840000pt;}
.fse_c00126{font-size:38.400000pt;}
.fs1_c00126{font-size:40.960000pt;}
.fs5_c00126{font-size:43.520000pt;}
.fs2_c00126{font-size:46.080000pt;}
.fs7_c00126{font-size:48.640000pt;}
.fs4_c00126{font-size:51.200000pt;}
.fs9_c00126{font-size:53.760000pt;}
.fs8_c00126{font-size:56.320000pt;}
.fsb_c00126{font-size:58.880000pt;}
.fs0_c00126{font-size:61.440000pt;}
.fs10_c00126{font-size:87.040000pt;}
.fs12_c00126{font-size:89.600000pt;}
.fs11_c00126{font-size:92.160000pt;}
.y0_c00126{bottom:0.000000pt;}
.y95_c00126{bottom:44.800000pt;}
.y93_c00126{bottom:45.440000pt;}
.y90_c00126{bottom:46.720000pt;}
.y96_c00126{bottom:47.360000pt;}
.y94_c00126{bottom:48.000000pt;}
.y92_c00126{bottom:49.280000pt;}
.y91_c00126{bottom:49.920000pt;}
.y8f_c00126{bottom:50.560000pt;}
.y8e_c00126{bottom:94.720000pt;}
.y8d_c00126{bottom:96.000000pt;}
.y8c_c00126{bottom:97.280000pt;}
.y8a_c00126{bottom:130.560000pt;}
.y89_c00126{bottom:131.200000pt;}
.y8b_c00126{bottom:131.840000pt;}
.y88_c00126{bottom:133.760000pt;}
.y87_c00126{bottom:134.400000pt;}
.y83_c00126{bottom:178.560000pt;}
.y82_c00126{bottom:179.200000pt;}
.y79_c00126{bottom:179.840000pt;}
.y7b_c00126{bottom:180.480000pt;}
.y7d_c00126{bottom:181.120000pt;}
.y78_c00126{bottom:182.400000pt;}
.y86_c00126{bottom:196.480000pt;}
.y85_c00126{bottom:197.120000pt;}
.y81_c00126{bottom:198.400000pt;}
.y7f_c00126{bottom:199.040000pt;}
.y77_c00126{bottom:199.680000pt;}
.y7c_c00126{bottom:200.320000pt;}
.y76_c00126{bottom:201.600000pt;}
.y84_c00126{bottom:202.880000pt;}
.y80_c00126{bottom:218.880000pt;}
.y7e_c00126{bottom:219.520000pt;}
.y75_c00126{bottom:220.160000pt;}
.y7a_c00126{bottom:220.800000pt;}
.y72_c00126{bottom:246.400000pt;}
.y74_c00126{bottom:247.680000pt;}
.y73_c00126{bottom:248.320000pt;}
.y71_c00126{bottom:250.240000pt;}
.y6e_c00126{bottom:282.240000pt;}
.y70_c00126{bottom:282.880000pt;}
.y6c_c00126{bottom:283.520000pt;}
.y6d_c00126{bottom:285.440000pt;}
.y6f_c00126{bottom:286.080000pt;}
.y6b_c00126{bottom:286.720000pt;}
.y6a_c00126{bottom:287.360000pt;}
.y69_c00126{bottom:321.280000pt;}
.y68_c00126{bottom:323.200000pt;}
.y67_c00126{bottom:323.840000pt;}
.y66_c00126{bottom:324.480000pt;}
.y65_c00126{bottom:325.120000pt;}
.y63_c00126{bottom:369.920000pt;}
.y64_c00126{bottom:371.200000pt;}
.y62_c00126{bottom:371.840000pt;}
.y5e_c00126{bottom:407.680000pt;}
.y5f_c00126{bottom:408.320000pt;}
.y5d_c00126{bottom:408.960000pt;}
.y61_c00126{bottom:409.600000pt;}
.y5b_c00126{bottom:418.560000pt;}
.y60_c00126{bottom:427.520000pt;}
.y5c_c00126{bottom:428.800000pt;}
.y5a_c00126{bottom:463.360000pt;}
.y59_c00126{bottom:465.920000pt;}
.y57_c00126{bottom:501.760000pt;}
.y58_c00126{bottom:502.400000pt;}
.y55_c00126{bottom:503.680000pt;}
.y56_c00126{bottom:504.320000pt;}
.y54_c00126{bottom:549.120000pt;}
.y52_c00126{bottom:551.040000pt;}
.y53_c00126{bottom:552.960000pt;}
.y4e_c00126{bottom:568.320000pt;}
.y4f_c00126{bottom:568.960000pt;}
.y4c_c00126{bottom:570.240000pt;}
.y4d_c00126{bottom:573.440000pt;}
.y4b_c00126{bottom:577.920000pt;}
.y51_c00126{bottom:579.200000pt;}
.y49_c00126{bottom:580.480000pt;}
.y50_c00126{bottom:581.120000pt;}
.y4a_c00126{bottom:581.760000pt;}
.y48_c00126{bottom:597.120000pt;}
.y46_c00126{bottom:599.040000pt;}
.y45_c00126{bottom:599.680000pt;}
.y47_c00126{bottom:600.960000pt;}
.y44_c00126{bottom:606.080000pt;}
.y42_c00126{bottom:608.000000pt;}
.y43_c00126{bottom:609.920000pt;}
.y3f_c00126{bottom:626.560000pt;}
.y40_c00126{bottom:627.200000pt;}
.y3e_c00126{bottom:628.480000pt;}
.y41_c00126{bottom:630.400000pt;}
.y3b_c00126{bottom:634.880000pt;}
.y3a_c00126{bottom:635.520000pt;}
.y3d_c00126{bottom:637.440000pt;}
.y3c_c00126{bottom:639.360000pt;}
.y33_c00126{bottom:663.040000pt;}
.y31_c00126{bottom:664.320000pt;}
.y30_c00126{bottom:664.960000pt;}
.y34_c00126{bottom:665.600000pt;}
.y36_c00126{bottom:666.240000pt;}
.y32_c00126{bottom:666.880000pt;}
.y35_c00126{bottom:667.520000pt;}
.y39_c00126{bottom:668.160000pt;}
.y37_c00126{bottom:668.800000pt;}
.y38_c00126{bottom:670.080000pt;}
.y2e_c00126{bottom:698.880000pt;}
.y2f_c00126{bottom:702.720000pt;}
.y2a_c00126{bottom:741.120000pt;}
.y2b_c00126{bottom:742.400000pt;}
.y2c_c00126{bottom:743.040000pt;}
.y2d_c00126{bottom:743.680000pt;}
.y26_c00126{bottom:785.280000pt;}
.y24_c00126{bottom:787.200000pt;}
.y25_c00126{bottom:789.760000pt;}
.y27_c00126{bottom:790.400000pt;}
.y28_c00126{bottom:791.680000pt;}
.y20_c00126{bottom:805.760000pt;}
.y1e_c00126{bottom:807.680000pt;}
.y21_c00126{bottom:808.960000pt;}
.y1f_c00126{bottom:810.240000pt;}
.y22_c00126{bottom:810.880000pt;}
.y1d_c00126{bottom:814.720000pt;}
.y1b_c00126{bottom:816.640000pt;}
.y23_c00126{bottom:817.280000pt;}
.y1c_c00126{bottom:817.920000pt;}
.y15_c00126{bottom:834.560000pt;}
.y19_c00126{bottom:836.480000pt;}
.y1a_c00126{bottom:838.400000pt;}
.y14_c00126{bottom:842.880000pt;}
.y12_c00126{bottom:844.160000pt;}
.y13_c00126{bottom:846.080000pt;}
.y16_c00126{bottom:846.720000pt;}
.y17_c00126{bottom:847.360000pt;}
.y18_c00126{bottom:848.000000pt;}
.yc_c00126{bottom:871.040000pt;}
.yd_c00126{bottom:872.320000pt;}
.yb_c00126{bottom:872.960000pt;}
.y11_c00126{bottom:874.240000pt;}
.yf_c00126{bottom:876.160000pt;}
.ye_c00126{bottom:876.800000pt;}
.y10_c00126{bottom:877.440000pt;}
.y5_c00126{bottom:899.200000pt;}
.y3_c00126{bottom:900.480000pt;}
.y2_c00126{bottom:901.120000pt;}
.y8_c00126{bottom:901.760000pt;}
.y6_c00126{bottom:902.400000pt;}
.y4_c00126{bottom:903.680000pt;}
.y9_c00126{bottom:904.320000pt;}
.y7_c00126{bottom:905.600000pt;}
.ya_c00126{bottom:906.240000pt;}
.y29_c00126{bottom:908.160000pt;}
.y1_c00126{bottom:978.560000pt;}
.hc_c00126{height:11.518750pt;}
.h5_c00126{height:13.822500pt;}
.hf_c00126{height:16.382500pt;}
.h13_c00126{height:18.430000pt;}
.he_c00126{height:27.645000pt;}
.h8_c00126{height:29.948750pt;}
.h11_c00126{height:32.252500pt;}
.h12_c00126{height:34.556250pt;}
.h3_c00126{height:36.860000pt;}
.h7_c00126{height:39.163750pt;}
.h4_c00126{height:41.467500pt;}
.h9_c00126{height:43.771250pt;}
.h6_c00126{height:46.075000pt;}
.hb_c00126{height:48.378750pt;}
.h10_c00126{height:49.147500pt;}
.ha_c00126{height:50.682500pt;}
.hd_c00126{height:52.986250pt;}
.h2_c00126{height:55.290000pt;}
.h14_c00126{height:78.327500pt;}
.h16_c00126{height:80.631250pt;}
.h15_c00126{height:82.935000pt;}
.h0_c00126{height:1024.640000pt;}
.h1_c00126{height:1024.666667pt;}
.w1_c00126{width:698.000000pt;}
.w0_c00126{width:698.240000pt;}
.x0_c00126{left:0.000000pt;}
.x2_c00126{left:55.680000pt;}
.x34_c00126{left:56.960000pt;}
.x55_c00126{left:58.240000pt;}
.x3_c00126{left:74.880000pt;}
.x43_c00126{left:76.160000pt;}
.xf_c00126{left:83.200000pt;}
.x16_c00126{left:84.480000pt;}
.x2d_c00126{left:94.080000pt;}
.x3e_c00126{left:95.360000pt;}
.x4_c00126{left:101.760000pt;}
.x10_c00126{left:122.240000pt;}
.x24_c00126{left:130.560000pt;}
.x5_c00126{left:131.840000pt;}
.x44_c00126{left:133.760000pt;}
.x42_c00126{left:141.440000pt;}
.x1e_c00126{left:150.400000pt;}
.x2f_c00126{left:151.680000pt;}
.x56_c00126{left:152.960000pt;}
.x35_c00126{left:160.000000pt;}
.x2e_c00126{left:161.280000pt;}
.x15_c00126{left:169.600000pt;}
.x4f_c00126{left:180.480000pt;}
.x6_c00126{left:188.160000pt;}
.x2a_c00126{left:190.080000pt;}
.x17_c00126{left:197.760000pt;}
.x45_c00126{left:199.680000pt;}
.x7_c00126{left:207.360000pt;}
.x57_c00126{left:209.920000pt;}
.x30_c00126{left:217.600000pt;}
.x36_c00126{left:218.880000pt;}
.x1f_c00126{left:226.560000pt;}
.x8_c00126{left:234.880000pt;}
.x27_c00126{left:236.160000pt;}
.x50_c00126{left:237.440000pt;}
.x3f_c00126{left:245.760000pt;}
.x54_c00126{left:247.040000pt;}
.x11_c00126{left:254.720000pt;}
.x14_c00126{left:256.000000pt;}
.x9_c00126{left:264.960000pt;}
.x47_c00126{left:266.880000pt;}
.x31_c00126{left:275.200000pt;}
.x37_c00126{left:276.480000pt;}
.x20_c00126{left:283.520000pt;}
.x46_c00126{left:285.440000pt;}
.x58_c00126{left:295.040000pt;}
.x39_c00126{left:304.000000pt;}
.x21_c00126{left:312.960000pt;}
.xa_c00126{left:323.200000pt;}
.x59_c00126{left:324.480000pt;}
.x3a_c00126{left:332.160000pt;}
.x32_c00126{left:333.440000pt;}
.x4a_c00126{left:334.720000pt;}
.x28_c00126{left:341.760000pt;}
.x33_c00126{left:343.040000pt;}
.xb_c00126{left:350.720000pt;}
.x12_c00126{left:352.000000pt;}
.x48_c00126{left:353.280000pt;}
.x29_c00126{left:360.960000pt;}
.x49_c00126{left:362.880000pt;}
.xc_c00126{left:369.920000pt;}
.x5a_c00126{left:382.080000pt;}
.x18_c00126{left:391.040000pt;}
.xd_c00126{left:400.000000pt;}
.x40_c00126{left:410.880000pt;}
.x22_c00126{left:418.560000pt;}
.x3b_c00126{left:429.440000pt;}
.x5b_c00126{left:440.960000pt;}
.x51_c00126{left:449.280000pt;}
.xe_c00126{left:456.960000pt;}
.x19_c00126{left:458.240000pt;}
.x38_c00126{left:468.480000pt;}
.x13_c00126{left:476.160000pt;}
.x52_c00126{left:477.440000pt;}
.x4c_c00126{left:479.360000pt;}
.x25_c00126{left:495.360000pt;}
.x41_c00126{left:496.640000pt;}
.x4b_c00126{left:497.920000pt;}
.x1a_c00126{left:506.240000pt;}
.x23_c00126{left:514.560000pt;}
.x26_c00126{left:526.080000pt;}
.x3c_c00126{left:535.680000pt;}
.x4d_c00126{left:545.280000pt;}
.x2b_c00126{left:554.880000pt;}
.x1b_c00126{left:564.480000pt;}
.x4e_c00126{left:583.680000pt;}
.x53_c00126{left:593.920000pt;}
.x1c_c00126{left:602.240000pt;}
.x3d_c00126{left:603.520000pt;}
.x1_c00126{left:608.640000pt;}
.x2c_c00126{left:613.120000pt;}
.x1d_c00126{left:623.360000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1de6c3e0926003ef00dde670.woff2')format("woff");}.ff1_c00127{font-family:ff1_c00127;line-height:1.109863;font-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_c00127{transform:matrix(0.218725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218725,0.000000,0.000000,0.250000,0,0);}
.m27_c00127{transform:matrix(0.225100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225100,0.000000,0.000000,0.250000,0,0);}
.m2a_c00127{transform:matrix(0.233425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233425,0.000000,0.000000,0.250000,0,0);}
.m31_c00127{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m61_c00127{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m26_c00127{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00127{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m54_c00127{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m44_c00127{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m4_c00127{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00127{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00127{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m8_c00127{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00127{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m30_c00127{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m10_c00127{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m33_c00127{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00127{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m57_c00127{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m29_c00127{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);}
.m25_c00127{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00127{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);}
.m36_c00127{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00127{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00127{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.me_c00127{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.md_c00127{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);}
.m4a_c00127{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00127{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1_c00127{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m22_c00127{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00127{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);}
.m0_c00127{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00127{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00127{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);}
.m23_c00127{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);}
.m4e_c00127{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);}
.m47_c00127{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m53_c00127{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);}
.m21_c00127{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m49_c00127{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);}
.m3b_c00127{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m11_c00127{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);}
.m13_c00127{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m39_c00127{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m5_c00127{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m7_c00127{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m50_c00127{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);}
.m45_c00127{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m9_c00127{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);}
.m5e_c00127{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m20_c00127{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m19_c00127{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00127{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);}
.m2_c00127{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m32_c00127{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m52_c00127{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);}
.m3e_c00127{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);}
.m34_c00127{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m51_c00127{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m46_c00127{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m59_c00127{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m55_c00127{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m12_c00127{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m60_c00127{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);}
.m3_c00127{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00127{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m48_c00127{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m41_c00127{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m6_c00127{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m38_c00127{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);}
.m56_c00127{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);}
.m2f_c00127{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00127{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00127{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);}
.mc_c00127{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m58_c00127{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.mb_c00127{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);}
.m62_c00127{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m24_c00127{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m14_c00127{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.mf_c00127{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);}
.ma_c00127{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);}
.m15_c00127{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00127{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00127{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m17_c00127{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m35_c00127{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m16_c00127{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00127{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m42_c00127{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);}
.m18_c00127{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m37_c00127{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);}
.m5c_c00127{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00127{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00127{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m43_c00127{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);}
.m5f_c00127{transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);}
.m40_c00127{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);}
.v1_c00127{vertical-align:-8.640000px;}
.v0_c00127{vertical-align:0.000000px;}
.ls0_c00127{letter-spacing:0.000000px;}
.sc__c00127{text-shadow:none;}
.sc0_c00127{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00127{-webkit-text-stroke:0px transparent;}
.sc0_c00127{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00127{word-spacing:-3.758160px;}
.ws1_c00127{word-spacing:0.000000px;}
.fc0_c00127{color:transparent;}
.fs8_c00127{font-size:34.560000px;}
.fs4_c00127{font-size:37.440000px;}
.fs7_c00127{font-size:40.320000px;}
.fs1_c00127{font-size:46.080000px;}
.fs9_c00127{font-size:48.960000px;}
.fs2_c00127{font-size:51.840000px;}
.fsa_c00127{font-size:54.720000px;}
.fs5_c00127{font-size:57.600000px;}
.fs3_c00127{font-size:60.480000px;}
.fs6_c00127{font-size:63.360000px;}
.fsc_c00127{font-size:66.240000px;}
.fsb_c00127{font-size:69.120000px;}
.fs0_c00127{font-size:72.000000px;}
.fsd_c00127{font-size:74.880000px;}
.fse_c00127{font-size:103.680000px;}
.y0_c00127{bottom:0.000000px;}
.y7e_c00127{bottom:67.680000px;}
.y81_c00127{bottom:69.840000px;}
.y80_c00127{bottom:70.560000px;}
.y7f_c00127{bottom:71.280000px;}
.y7d_c00127{bottom:72.000000px;}
.y7b_c00127{bottom:72.720000px;}
.y7c_c00127{bottom:73.440000px;}
.y7a_c00127{bottom:110.880000px;}
.y78_c00127{bottom:113.040000px;}
.y77_c00127{bottom:113.760000px;}
.y79_c00127{bottom:114.480000px;}
.y76_c00127{bottom:115.920000px;}
.y75_c00127{bottom:116.640000px;}
.y74_c00127{bottom:118.080000px;}
.y73_c00127{bottom:119.520000px;}
.y71_c00127{bottom:152.640000px;}
.y72_c00127{bottom:155.520000px;}
.y6e_c00127{bottom:156.960000px;}
.y70_c00127{bottom:157.680000px;}
.y6f_c00127{bottom:158.400000px;}
.y6d_c00127{bottom:159.120000px;}
.y6c_c00127{bottom:159.840000px;}
.y6b_c00127{bottom:195.840000px;}
.y6a_c00127{bottom:200.160000px;}
.y69_c00127{bottom:200.880000px;}
.y68_c00127{bottom:201.600000px;}
.y67_c00127{bottom:202.320000px;}
.y66_c00127{bottom:203.040000px;}
.y62_c00127{bottom:252.000000px;}
.y65_c00127{bottom:252.720000px;}
.y61_c00127{bottom:253.440000px;}
.y64_c00127{bottom:254.160000px;}
.y63_c00127{bottom:254.880000px;}
.y5f_c00127{bottom:255.600000px;}
.y60_c00127{bottom:256.320000px;}
.y5e_c00127{bottom:257.040000px;}
.y5d_c00127{bottom:293.040000px;}
.y58_c00127{bottom:293.760000px;}
.y5a_c00127{bottom:294.480000px;}
.y59_c00127{bottom:295.200000px;}
.y5b_c00127{bottom:295.920000px;}
.y5c_c00127{bottom:296.640000px;}
.y55_c00127{bottom:297.360000px;}
.y57_c00127{bottom:298.080000px;}
.y56_c00127{bottom:298.800000px;}
.y54_c00127{bottom:334.800000px;}
.y52_c00127{bottom:336.960000px;}
.y50_c00127{bottom:337.680000px;}
.y53_c00127{bottom:339.120000px;}
.y51_c00127{bottom:339.840000px;}
.y4f_c00127{bottom:340.560000px;}
.y4e_c00127{bottom:341.280000px;}
.y4d_c00127{bottom:342.000000px;}
.y4c_c00127{bottom:379.440000px;}
.y49_c00127{bottom:380.880000px;}
.y4b_c00127{bottom:381.600000px;}
.y47_c00127{bottom:382.320000px;}
.y4a_c00127{bottom:383.040000px;}
.y48_c00127{bottom:383.760000px;}
.y44_c00127{bottom:421.920000px;}
.y46_c00127{bottom:422.640000px;}
.y43_c00127{bottom:423.360000px;}
.y41_c00127{bottom:424.800000px;}
.y45_c00127{bottom:425.520000px;}
.y42_c00127{bottom:426.960000px;}
.y3f_c00127{bottom:465.840000px;}
.y3e_c00127{bottom:466.560000px;}
.y40_c00127{bottom:468.000000px;}
.y3d_c00127{bottom:468.720000px;}
.y3a_c00127{bottom:508.320000px;}
.y3c_c00127{bottom:509.040000px;}
.y3b_c00127{bottom:511.200000px;}
.y39_c00127{bottom:551.520000px;}
.y37_c00127{bottom:554.400000px;}
.y38_c00127{bottom:555.120000px;}
.y33_c00127{bottom:604.800000px;}
.y36_c00127{bottom:606.240000px;}
.y35_c00127{bottom:607.680000px;}
.y34_c00127{bottom:608.400000px;}
.y2f_c00127{bottom:646.560000px;}
.y30_c00127{bottom:647.280000px;}
.y31_c00127{bottom:648.000000px;}
.y2e_c00127{bottom:650.160000px;}
.y32_c00127{bottom:650.880000px;}
.y29_c00127{bottom:689.040000px;}
.y2b_c00127{bottom:690.480000px;}
.y2c_c00127{bottom:691.200000px;}
.y2a_c00127{bottom:692.640000px;}
.y2d_c00127{bottom:693.360000px;}
.y27_c00127{bottom:733.680000px;}
.y26_c00127{bottom:735.120000px;}
.y25_c00127{bottom:735.840000px;}
.y28_c00127{bottom:736.560000px;}
.y21_c00127{bottom:785.520000px;}
.y23_c00127{bottom:786.240000px;}
.y20_c00127{bottom:788.400000px;}
.y22_c00127{bottom:789.120000px;}
.y24_c00127{bottom:789.840000px;}
.y1a_c00127{bottom:838.080000px;}
.y1c_c00127{bottom:838.800000px;}
.y1e_c00127{bottom:840.240000px;}
.y1b_c00127{bottom:840.960000px;}
.y1d_c00127{bottom:842.400000px;}
.y1f_c00127{bottom:843.120000px;}
.y15_c00127{bottom:881.280000px;}
.y17_c00127{bottom:882.720000px;}
.y14_c00127{bottom:883.440000px;}
.y16_c00127{bottom:884.160000px;}
.y18_c00127{bottom:884.880000px;}
.y19_c00127{bottom:885.600000px;}
.y10_c00127{bottom:923.760000px;}
.ye_c00127{bottom:925.920000px;}
.yf_c00127{bottom:926.640000px;}
.y11_c00127{bottom:928.080000px;}
.y13_c00127{bottom:928.800000px;}
.y12_c00127{bottom:929.520000px;}
.yb_c00127{bottom:968.400000px;}
.y8_c00127{bottom:969.120000px;}
.y9_c00127{bottom:969.840000px;}
.ya_c00127{bottom:970.560000px;}
.yd_c00127{bottom:971.280000px;}
.yc_c00127{bottom:972.000000px;}
.y4_c00127{bottom:1010.880000px;}
.y2_c00127{bottom:1012.320000px;}
.y3_c00127{bottom:1013.040000px;}
.y5_c00127{bottom:1014.480000px;}
.y6_c00127{bottom:1015.200000px;}
.y7_c00127{bottom:1015.920000px;}
.y1_c00127{bottom:1100.880000px;}
.ha_c00127{height:31.100625px;}
.h6_c00127{height:33.692344px;}
.h9_c00127{height:36.284062px;}
.h3_c00127{height:41.467500px;}
.hb_c00127{height:44.059219px;}
.h4_c00127{height:46.650937px;}
.hc_c00127{height:49.242656px;}
.h7_c00127{height:51.834375px;}
.h5_c00127{height:54.426094px;}
.h8_c00127{height:57.017812px;}
.he_c00127{height:59.609531px;}
.hd_c00127{height:62.201250px;}
.h2_c00127{height:64.792969px;}
.hf_c00127{height:67.384687px;}
.h10_c00127{height:93.301875px;}
.h0_c00127{height:1153.440000px;}
.h1_c00127{height:1153.500000px;}
.w1_c00127{width:785.250000px;}
.w0_c00127{width:785.520000px;}
.x0_c00127{left:0.000000px;}
.x35_c00127{left:61.920000px;}
.xb_c00127{left:63.360000px;}
.x1d_c00127{left:95.040000px;}
.x31_c00127{left:105.120000px;}
.x45_c00127{left:115.200000px;}
.x25_c00127{left:116.640000px;}
.x2c_c00127{left:127.440000px;}
.x52_c00127{left:146.880000px;}
.x59_c00127{left:148.320000px;}
.x27_c00127{left:149.760000px;}
.x48_c00127{left:157.680000px;}
.x16_c00127{left:159.120000px;}
.x56_c00127{left:169.200000px;}
.x2_c00127{left:170.640000px;}
.xc_c00127{left:180.720000px;}
.x49_c00127{left:190.080000px;}
.x17_c00127{left:192.240000px;}
.x3b_c00127{left:200.880000px;}
.x3_c00127{left:202.320000px;}
.xd_c00127{left:213.840000px;}
.x1e_c00127{left:223.200000px;}
.x53_c00127{left:233.280000px;}
.x46_c00127{left:235.440000px;}
.x28_c00127{left:244.080000px;}
.x1f_c00127{left:254.880000px;}
.x4_c00127{left:257.040000px;}
.x2d_c00127{left:264.240000px;}
.x54_c00127{left:276.480000px;}
.x29_c00127{left:277.920000px;}
.x2b_c00127{left:287.280000px;}
.x36_c00127{left:288.720000px;}
.x55_c00127{left:298.080000px;}
.xe_c00127{left:299.520000px;}
.x41_c00127{left:308.880000px;}
.x57_c00127{left:318.960000px;}
.x5_c00127{left:320.400000px;}
.x4b_c00127{left:329.040000px;}
.xf_c00127{left:331.200000px;}
.x4e_c00127{left:341.280000px;}
.x2a_c00127{left:342.720000px;}
.x20_c00127{left:352.080000px;}
.x4f_c00127{left:362.880000px;}
.x10_c00127{left:374.400000px;}
.x37_c00127{left:384.480000px;}
.x18_c00127{left:395.280000px;}
.x3c_c00127{left:406.080000px;}
.x6_c00127{left:407.520000px;}
.x32_c00127{left:416.880000px;}
.x21_c00127{left:418.320000px;}
.x38_c00127{left:427.680000px;}
.x19_c00127{left:439.200000px;}
.x3d_c00127{left:447.840000px;}
.x2e_c00127{left:449.280000px;}
.x11_c00127{left:450.720000px;}
.x5a_c00127{left:459.360000px;}
.x39_c00127{left:460.800000px;}
.x12_c00127{left:471.600000px;}
.x1a_c00127{left:473.040000px;}
.x22_c00127{left:475.200000px;}
.x4c_c00127{left:482.400000px;}
.x33_c00127{left:492.480000px;}
.x7_c00127{left:493.920000px;}
.x13_c00127{left:505.440000px;}
.x42_c00127{left:514.800000px;}
.x26_c00127{left:524.880000px;}
.x50_c00127{left:535.680000px;}
.x1b_c00127{left:537.120000px;}
.x3a_c00127{left:547.200000px;}
.x8_c00127{left:548.640000px;}
.x47_c00127{left:558.720000px;}
.x3e_c00127{left:570.240000px;}
.x34_c00127{left:579.600000px;}
.x1c_c00127{left:581.040000px;}
.x14_c00127{left:591.840000px;}
.x5b_c00127{left:600.480000px;}
.x3f_c00127{left:601.920000px;}
.x23_c00127{left:603.360000px;}
.x4d_c00127{left:612.000000px;}
.x2f_c00127{left:624.240000px;}
.x43_c00127{left:635.040000px;}
.x9_c00127{left:645.120000px;}
.x51_c00127{left:646.560000px;}
.x4a_c00127{left:655.920000px;}
.x30_c00127{left:658.080000px;}
.x15_c00127{left:668.880000px;}
.x1_c00127{left:672.480000px;}
.x44_c00127{left:678.960000px;}
.x24_c00127{left:680.400000px;}
.x58_c00127{left:689.040000px;}
.xa_c00127{left:690.480000px;}
.x40_c00127{left:699.840000px;}
@media print{
.v1_c00127{vertical-align:-7.680000pt;}
.v0_c00127{vertical-align:0.000000pt;}
.ls0_c00127{letter-spacing:0.000000pt;}
.ws0_c00127{word-spacing:-3.340587pt;}
.ws1_c00127{word-spacing:0.000000pt;}
.fs8_c00127{font-size:30.720000pt;}
.fs4_c00127{font-size:33.280000pt;}
.fs7_c00127{font-size:35.840000pt;}
.fs1_c00127{font-size:40.960000pt;}
.fs9_c00127{font-size:43.520000pt;}
.fs2_c00127{font-size:46.080000pt;}
.fsa_c00127{font-size:48.640000pt;}
.fs5_c00127{font-size:51.200000pt;}
.fs3_c00127{font-size:53.760000pt;}
.fs6_c00127{font-size:56.320000pt;}
.fsc_c00127{font-size:58.880000pt;}
.fsb_c00127{font-size:61.440000pt;}
.fs0_c00127{font-size:64.000000pt;}
.fsd_c00127{font-size:66.560000pt;}
.fse_c00127{font-size:92.160000pt;}
.y0_c00127{bottom:0.000000pt;}
.y7e_c00127{bottom:60.160000pt;}
.y81_c00127{bottom:62.080000pt;}
.y80_c00127{bottom:62.720000pt;}
.y7f_c00127{bottom:63.360000pt;}
.y7d_c00127{bottom:64.000000pt;}
.y7b_c00127{bottom:64.640000pt;}
.y7c_c00127{bottom:65.280000pt;}
.y7a_c00127{bottom:98.560000pt;}
.y78_c00127{bottom:100.480000pt;}
.y77_c00127{bottom:101.120000pt;}
.y79_c00127{bottom:101.760000pt;}
.y76_c00127{bottom:103.040000pt;}
.y75_c00127{bottom:103.680000pt;}
.y74_c00127{bottom:104.960000pt;}
.y73_c00127{bottom:106.240000pt;}
.y71_c00127{bottom:135.680000pt;}
.y72_c00127{bottom:138.240000pt;}
.y6e_c00127{bottom:139.520000pt;}
.y70_c00127{bottom:140.160000pt;}
.y6f_c00127{bottom:140.800000pt;}
.y6d_c00127{bottom:141.440000pt;}
.y6c_c00127{bottom:142.080000pt;}
.y6b_c00127{bottom:174.080000pt;}
.y6a_c00127{bottom:177.920000pt;}
.y69_c00127{bottom:178.560000pt;}
.y68_c00127{bottom:179.200000pt;}
.y67_c00127{bottom:179.840000pt;}
.y66_c00127{bottom:180.480000pt;}
.y62_c00127{bottom:224.000000pt;}
.y65_c00127{bottom:224.640000pt;}
.y61_c00127{bottom:225.280000pt;}
.y64_c00127{bottom:225.920000pt;}
.y63_c00127{bottom:226.560000pt;}
.y5f_c00127{bottom:227.200000pt;}
.y60_c00127{bottom:227.840000pt;}
.y5e_c00127{bottom:228.480000pt;}
.y5d_c00127{bottom:260.480000pt;}
.y58_c00127{bottom:261.120000pt;}
.y5a_c00127{bottom:261.760000pt;}
.y59_c00127{bottom:262.400000pt;}
.y5b_c00127{bottom:263.040000pt;}
.y5c_c00127{bottom:263.680000pt;}
.y55_c00127{bottom:264.320000pt;}
.y57_c00127{bottom:264.960000pt;}
.y56_c00127{bottom:265.600000pt;}
.y54_c00127{bottom:297.600000pt;}
.y52_c00127{bottom:299.520000pt;}
.y50_c00127{bottom:300.160000pt;}
.y53_c00127{bottom:301.440000pt;}
.y51_c00127{bottom:302.080000pt;}
.y4f_c00127{bottom:302.720000pt;}
.y4e_c00127{bottom:303.360000pt;}
.y4d_c00127{bottom:304.000000pt;}
.y4c_c00127{bottom:337.280000pt;}
.y49_c00127{bottom:338.560000pt;}
.y4b_c00127{bottom:339.200000pt;}
.y47_c00127{bottom:339.840000pt;}
.y4a_c00127{bottom:340.480000pt;}
.y48_c00127{bottom:341.120000pt;}
.y44_c00127{bottom:375.040000pt;}
.y46_c00127{bottom:375.680000pt;}
.y43_c00127{bottom:376.320000pt;}
.y41_c00127{bottom:377.600000pt;}
.y45_c00127{bottom:378.240000pt;}
.y42_c00127{bottom:379.520000pt;}
.y3f_c00127{bottom:414.080000pt;}
.y3e_c00127{bottom:414.720000pt;}
.y40_c00127{bottom:416.000000pt;}
.y3d_c00127{bottom:416.640000pt;}
.y3a_c00127{bottom:451.840000pt;}
.y3c_c00127{bottom:452.480000pt;}
.y3b_c00127{bottom:454.400000pt;}
.y39_c00127{bottom:490.240000pt;}
.y37_c00127{bottom:492.800000pt;}
.y38_c00127{bottom:493.440000pt;}
.y33_c00127{bottom:537.600000pt;}
.y36_c00127{bottom:538.880000pt;}
.y35_c00127{bottom:540.160000pt;}
.y34_c00127{bottom:540.800000pt;}
.y2f_c00127{bottom:574.720000pt;}
.y30_c00127{bottom:575.360000pt;}
.y31_c00127{bottom:576.000000pt;}
.y2e_c00127{bottom:577.920000pt;}
.y32_c00127{bottom:578.560000pt;}
.y29_c00127{bottom:612.480000pt;}
.y2b_c00127{bottom:613.760000pt;}
.y2c_c00127{bottom:614.400000pt;}
.y2a_c00127{bottom:615.680000pt;}
.y2d_c00127{bottom:616.320000pt;}
.y27_c00127{bottom:652.160000pt;}
.y26_c00127{bottom:653.440000pt;}
.y25_c00127{bottom:654.080000pt;}
.y28_c00127{bottom:654.720000pt;}
.y21_c00127{bottom:698.240000pt;}
.y23_c00127{bottom:698.880000pt;}
.y20_c00127{bottom:700.800000pt;}
.y22_c00127{bottom:701.440000pt;}
.y24_c00127{bottom:702.080000pt;}
.y1a_c00127{bottom:744.960000pt;}
.y1c_c00127{bottom:745.600000pt;}
.y1e_c00127{bottom:746.880000pt;}
.y1b_c00127{bottom:747.520000pt;}
.y1d_c00127{bottom:748.800000pt;}
.y1f_c00127{bottom:749.440000pt;}
.y15_c00127{bottom:783.360000pt;}
.y17_c00127{bottom:784.640000pt;}
.y14_c00127{bottom:785.280000pt;}
.y16_c00127{bottom:785.920000pt;}
.y18_c00127{bottom:786.560000pt;}
.y19_c00127{bottom:787.200000pt;}
.y10_c00127{bottom:821.120000pt;}
.ye_c00127{bottom:823.040000pt;}
.yf_c00127{bottom:823.680000pt;}
.y11_c00127{bottom:824.960000pt;}
.y13_c00127{bottom:825.600000pt;}
.y12_c00127{bottom:826.240000pt;}
.yb_c00127{bottom:860.800000pt;}
.y8_c00127{bottom:861.440000pt;}
.y9_c00127{bottom:862.080000pt;}
.ya_c00127{bottom:862.720000pt;}
.yd_c00127{bottom:863.360000pt;}
.yc_c00127{bottom:864.000000pt;}
.y4_c00127{bottom:898.560000pt;}
.y2_c00127{bottom:899.840000pt;}
.y3_c00127{bottom:900.480000pt;}
.y5_c00127{bottom:901.760000pt;}
.y6_c00127{bottom:902.400000pt;}
.y7_c00127{bottom:903.040000pt;}
.y1_c00127{bottom:978.560000pt;}
.ha_c00127{height:27.645000pt;}
.h6_c00127{height:29.948750pt;}
.h9_c00127{height:32.252500pt;}
.h3_c00127{height:36.860000pt;}
.hb_c00127{height:39.163750pt;}
.h4_c00127{height:41.467500pt;}
.hc_c00127{height:43.771250pt;}
.h7_c00127{height:46.075000pt;}
.h5_c00127{height:48.378750pt;}
.h8_c00127{height:50.682500pt;}
.he_c00127{height:52.986250pt;}
.hd_c00127{height:55.290000pt;}
.h2_c00127{height:57.593750pt;}
.hf_c00127{height:59.897500pt;}
.h10_c00127{height:82.935000pt;}
.h0_c00127{height:1025.280000pt;}
.h1_c00127{height:1025.333333pt;}
.w1_c00127{width:698.000000pt;}
.w0_c00127{width:698.240000pt;}
.x0_c00127{left:0.000000pt;}
.x35_c00127{left:55.040000pt;}
.xb_c00127{left:56.320000pt;}
.x1d_c00127{left:84.480000pt;}
.x31_c00127{left:93.440000pt;}
.x45_c00127{left:102.400000pt;}
.x25_c00127{left:103.680000pt;}
.x2c_c00127{left:113.280000pt;}
.x52_c00127{left:130.560000pt;}
.x59_c00127{left:131.840000pt;}
.x27_c00127{left:133.120000pt;}
.x48_c00127{left:140.160000pt;}
.x16_c00127{left:141.440000pt;}
.x56_c00127{left:150.400000pt;}
.x2_c00127{left:151.680000pt;}
.xc_c00127{left:160.640000pt;}
.x49_c00127{left:168.960000pt;}
.x17_c00127{left:170.880000pt;}
.x3b_c00127{left:178.560000pt;}
.x3_c00127{left:179.840000pt;}
.xd_c00127{left:190.080000pt;}
.x1e_c00127{left:198.400000pt;}
.x53_c00127{left:207.360000pt;}
.x46_c00127{left:209.280000pt;}
.x28_c00127{left:216.960000pt;}
.x1f_c00127{left:226.560000pt;}
.x4_c00127{left:228.480000pt;}
.x2d_c00127{left:234.880000pt;}
.x54_c00127{left:245.760000pt;}
.x29_c00127{left:247.040000pt;}
.x2b_c00127{left:255.360000pt;}
.x36_c00127{left:256.640000pt;}
.x55_c00127{left:264.960000pt;}
.xe_c00127{left:266.240000pt;}
.x41_c00127{left:274.560000pt;}
.x57_c00127{left:283.520000pt;}
.x5_c00127{left:284.800000pt;}
.x4b_c00127{left:292.480000pt;}
.xf_c00127{left:294.400000pt;}
.x4e_c00127{left:303.360000pt;}
.x2a_c00127{left:304.640000pt;}
.x20_c00127{left:312.960000pt;}
.x4f_c00127{left:322.560000pt;}
.x10_c00127{left:332.800000pt;}
.x37_c00127{left:341.760000pt;}
.x18_c00127{left:351.360000pt;}
.x3c_c00127{left:360.960000pt;}
.x6_c00127{left:362.240000pt;}
.x32_c00127{left:370.560000pt;}
.x21_c00127{left:371.840000pt;}
.x38_c00127{left:380.160000pt;}
.x19_c00127{left:390.400000pt;}
.x3d_c00127{left:398.080000pt;}
.x2e_c00127{left:399.360000pt;}
.x11_c00127{left:400.640000pt;}
.x5a_c00127{left:408.320000pt;}
.x39_c00127{left:409.600000pt;}
.x12_c00127{left:419.200000pt;}
.x1a_c00127{left:420.480000pt;}
.x22_c00127{left:422.400000pt;}
.x4c_c00127{left:428.800000pt;}
.x33_c00127{left:437.760000pt;}
.x7_c00127{left:439.040000pt;}
.x13_c00127{left:449.280000pt;}
.x42_c00127{left:457.600000pt;}
.x26_c00127{left:466.560000pt;}
.x50_c00127{left:476.160000pt;}
.x1b_c00127{left:477.440000pt;}
.x3a_c00127{left:486.400000pt;}
.x8_c00127{left:487.680000pt;}
.x47_c00127{left:496.640000pt;}
.x3e_c00127{left:506.880000pt;}
.x34_c00127{left:515.200000pt;}
.x1c_c00127{left:516.480000pt;}
.x14_c00127{left:526.080000pt;}
.x5b_c00127{left:533.760000pt;}
.x3f_c00127{left:535.040000pt;}
.x23_c00127{left:536.320000pt;}
.x4d_c00127{left:544.000000pt;}
.x2f_c00127{left:554.880000pt;}
.x43_c00127{left:564.480000pt;}
.x9_c00127{left:573.440000pt;}
.x51_c00127{left:574.720000pt;}
.x4a_c00127{left:583.040000pt;}
.x30_c00127{left:584.960000pt;}
.x15_c00127{left:594.560000pt;}
.x1_c00127{left:597.760000pt;}
.x44_c00127{left:603.520000pt;}
.x24_c00127{left:604.800000pt;}
.x58_c00127{left:612.480000pt;}
.xa_c00127{left:613.760000pt;}
.x40_c00127{left:622.080000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_804d43ccbc3b266b8e48ca35.woff2')format("woff");}.ff1_c00128{font-family:ff1_c00128;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m45_c00128{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m17_c00128{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m51_c00128{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m59_c00128{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00128{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00128{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m40_c00128{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00128{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00128{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m23_c00128{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00128{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00128{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m10_c00128{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00128{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00128{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m24_c00128{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);}
.m53_c00128{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m39_c00128{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.ma_c00128{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00128{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m0_c00128{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m3_c00128{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00128{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m22_c00128{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);}
.m31_c00128{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m33_c00128{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.md_c00128{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m16_c00128{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);}
.m2e_c00128{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m49_c00128{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m29_c00128{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);}
.m48_c00128{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);}
.m14_c00128{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);}
.m4c_c00128{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m57_c00128{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);}
.m32_c00128{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m61_c00128{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.me_c00128{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);}
.m41_c00128{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);}
.m12_c00128{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m30_c00128{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.mb_c00128{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m54_c00128{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);}
.m42_c00128{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00128{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);}
.m37_c00128{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m2_c00128{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);}
.mf_c00128{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);}
.m4b_c00128{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m1_c00128{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m55_c00128{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m20_c00128{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00128{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);}
.m63_c00128{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m56_c00128{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);}
.m4d_c00128{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m21_c00128{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_c00128{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00128{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m19_c00128{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m5_c00128{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);}
.m3c_c00128{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m43_c00128{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00128{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m62_c00128{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m44_c00128{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m13_c00128{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m7_c00128{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);}
.m36_c00128{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);}
.m2d_c00128{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m34_c00128{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m38_c00128{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m46_c00128{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);}
.m11_c00128{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.mc_c00128{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);}
.m2b_c00128{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m4_c00128{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00128{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00128{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);}
.m6_c00128{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m9_c00128{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);}
.m8_c00128{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00128{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);}
.m5b_c00128{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m28_c00128{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00128{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m25_c00128{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m60_c00128{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m52_c00128{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00128{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);}
.m47_c00128{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);}
.m26_c00128{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);}
.m58_c00128{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m18_c00128{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m27_c00128{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00128{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00128{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00128{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m35_c00128{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);}
.m50_c00128{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.v0_c00128{vertical-align:0.000000px;}
.v1_c00128{vertical-align:2.880000px;}
.ls0_c00128{letter-spacing:0.000000px;}
.sc__c00128{text-shadow:none;}
.sc0_c00128{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00128{-webkit-text-stroke:0px transparent;}
.sc0_c00128{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00128{word-spacing:0.000000px;}
.ws0_c00128{word-spacing:6.757200px;}
.fc0_c00128{color:transparent;}
.fs8_c00128{font-size:34.560000px;}
.fs6_c00128{font-size:37.440000px;}
.fs4_c00128{font-size:40.320000px;}
.fsb_c00128{font-size:46.080000px;}
.fs1_c00128{font-size:48.960000px;}
.fs2_c00128{font-size:51.840000px;}
.fs5_c00128{font-size:54.720000px;}
.fsc_c00128{font-size:57.600000px;}
.fs3_c00128{font-size:60.480000px;}
.fs9_c00128{font-size:63.360000px;}
.fsa_c00128{font-size:66.240000px;}
.fs7_c00128{font-size:69.120000px;}
.fs0_c00128{font-size:72.000000px;}
.fsd_c00128{font-size:77.760000px;}
.y0_c00128{bottom:0.000000px;}
.y8f_c00128{bottom:47.520000px;}
.y91_c00128{bottom:48.960000px;}
.y8c_c00128{bottom:49.680000px;}
.y90_c00128{bottom:50.400000px;}
.y8e_c00128{bottom:51.120000px;}
.y8a_c00128{bottom:51.840000px;}
.y8d_c00128{bottom:52.560000px;}
.y8b_c00128{bottom:53.280000px;}
.y89_c00128{bottom:54.000000px;}
.y88_c00128{bottom:56.880000px;}
.y87_c00128{bottom:90.720000px;}
.y82_c00128{bottom:91.440000px;}
.y83_c00128{bottom:92.160000px;}
.y86_c00128{bottom:92.880000px;}
.y85_c00128{bottom:93.600000px;}
.y84_c00128{bottom:94.320000px;}
.y81_c00128{bottom:95.760000px;}
.y80_c00128{bottom:96.480000px;}
.y7f_c00128{bottom:99.360000px;}
.y7e_c00128{bottom:133.200000px;}
.y7d_c00128{bottom:133.920000px;}
.y7b_c00128{bottom:134.640000px;}
.y78_c00128{bottom:136.080000px;}
.y7c_c00128{bottom:136.800000px;}
.y7a_c00128{bottom:137.520000px;}
.y79_c00128{bottom:138.240000px;}
.y77_c00128{bottom:141.120000px;}
.y76_c00128{bottom:141.840000px;}
.y75_c00128{bottom:177.120000px;}
.y73_c00128{bottom:177.840000px;}
.y72_c00128{bottom:178.560000px;}
.y74_c00128{bottom:180.720000px;}
.y71_c00128{bottom:183.600000px;}
.y70_c00128{bottom:220.320000px;}
.y6f_c00128{bottom:221.040000px;}
.y6e_c00128{bottom:221.760000px;}
.y6d_c00128{bottom:223.200000px;}
.y6c_c00128{bottom:223.920000px;}
.y6a_c00128{bottom:224.640000px;}
.y6b_c00128{bottom:225.360000px;}
.y69_c00128{bottom:261.360000px;}
.y68_c00128{bottom:264.240000px;}
.y67_c00128{bottom:264.960000px;}
.y65_c00128{bottom:266.400000px;}
.y66_c00128{bottom:268.560000px;}
.y64_c00128{bottom:307.440000px;}
.y63_c00128{bottom:308.160000px;}
.y62_c00128{bottom:308.880000px;}
.y61_c00128{bottom:310.320000px;}
.y5f_c00128{bottom:359.280000px;}
.y5e_c00128{bottom:360.000000px;}
.y5b_c00128{bottom:360.720000px;}
.y60_c00128{bottom:362.160000px;}
.y5d_c00128{bottom:362.880000px;}
.y5c_c00128{bottom:363.600000px;}
.y5a_c00128{bottom:364.320000px;}
.y59_c00128{bottom:365.760000px;}
.y56_c00128{bottom:403.200000px;}
.y58_c00128{bottom:403.920000px;}
.y57_c00128{bottom:404.640000px;}
.y55_c00128{bottom:405.360000px;}
.y54_c00128{bottom:406.080000px;}
.y53_c00128{bottom:406.800000px;}
.y51_c00128{bottom:444.240000px;}
.y50_c00128{bottom:444.960000px;}
.y4f_c00128{bottom:445.680000px;}
.y4e_c00128{bottom:446.400000px;}
.y52_c00128{bottom:447.120000px;}
.y4d_c00128{bottom:447.840000px;}
.y4c_c00128{bottom:448.560000px;}
.y4b_c00128{bottom:487.440000px;}
.y48_c00128{bottom:488.880000px;}
.y4a_c00128{bottom:490.320000px;}
.y49_c00128{bottom:491.040000px;}
.y47_c00128{bottom:491.760000px;}
.y46_c00128{bottom:529.920000px;}
.y44_c00128{bottom:530.640000px;}
.y45_c00128{bottom:532.800000px;}
.y43_c00128{bottom:533.520000px;}
.y42_c00128{bottom:534.240000px;}
.y40_c00128{bottom:572.400000px;}
.y41_c00128{bottom:573.120000px;}
.y3f_c00128{bottom:576.000000px;}
.y3e_c00128{bottom:576.720000px;}
.y3d_c00128{bottom:577.440000px;}
.y39_c00128{bottom:627.120000px;}
.y3c_c00128{bottom:627.840000px;}
.y3b_c00128{bottom:629.280000px;}
.y3a_c00128{bottom:630.000000px;}
.y36_c00128{bottom:668.880000px;}
.y37_c00128{bottom:669.600000px;}
.y34_c00128{bottom:671.760000px;}
.y35_c00128{bottom:672.480000px;}
.y38_c00128{bottom:673.200000px;}
.y32_c00128{bottom:712.080000px;}
.y31_c00128{bottom:712.800000px;}
.y30_c00128{bottom:714.960000px;}
.y33_c00128{bottom:715.680000px;}
.y2a_c00128{bottom:753.840000px;}
.y2c_c00128{bottom:754.560000px;}
.y2e_c00128{bottom:755.280000px;}
.y2b_c00128{bottom:757.440000px;}
.y2d_c00128{bottom:758.160000px;}
.y2f_c00128{bottom:758.880000px;}
.y28_c00128{bottom:797.760000px;}
.y27_c00128{bottom:798.480000px;}
.y25_c00128{bottom:799.920000px;}
.y26_c00128{bottom:800.640000px;}
.y29_c00128{bottom:801.360000px;}
.y20_c00128{bottom:840.960000px;}
.y1f_c00128{bottom:841.680000px;}
.y1e_c00128{bottom:842.400000px;}
.y22_c00128{bottom:843.120000px;}
.y21_c00128{bottom:843.840000px;}
.y23_c00128{bottom:844.560000px;}
.y24_c00128{bottom:845.280000px;}
.y1c_c00128{bottom:883.440000px;}
.y17_c00128{bottom:884.160000px;}
.y18_c00128{bottom:884.880000px;}
.y1a_c00128{bottom:885.600000px;}
.y19_c00128{bottom:886.320000px;}
.y1b_c00128{bottom:887.760000px;}
.y1d_c00128{bottom:888.480000px;}
.y16_c00128{bottom:898.560000px;}
.y11_c00128{bottom:925.920000px;}
.y13_c00128{bottom:926.640000px;}
.y10_c00128{bottom:927.360000px;}
.y15_c00128{bottom:928.080000px;}
.y12_c00128{bottom:928.800000px;}
.y14_c00128{bottom:929.520000px;}
.yb_c00128{bottom:967.680000px;}
.ya_c00128{bottom:969.840000px;}
.yf_c00128{bottom:970.560000px;}
.yc_c00128{bottom:971.280000px;}
.yd_c00128{bottom:972.720000px;}
.ye_c00128{bottom:973.440000px;}
.y2_c00128{bottom:1009.440000px;}
.y3_c00128{bottom:1010.160000px;}
.y4_c00128{bottom:1011.600000px;}
.y6_c00128{bottom:1014.480000px;}
.y5_c00128{bottom:1015.200000px;}
.y7_c00128{bottom:1015.920000px;}
.y9_c00128{bottom:1016.640000px;}
.y8_c00128{bottom:1017.360000px;}
.y1_c00128{bottom:1098.720000px;}
.ha_c00128{height:31.100625px;}
.h8_c00128{height:33.692344px;}
.h6_c00128{height:36.284062px;}
.hd_c00128{height:41.467500px;}
.h3_c00128{height:44.059219px;}
.h4_c00128{height:46.650937px;}
.h7_c00128{height:49.242656px;}
.h10_c00128{height:49.530937px;}
.he_c00128{height:51.834375px;}
.h5_c00128{height:54.426094px;}
.hb_c00128{height:57.017812px;}
.hc_c00128{height:59.609531px;}
.h9_c00128{height:62.201250px;}
.h2_c00128{height:64.792969px;}
.hf_c00128{height:69.976406px;}
.h0_c00128{height:1152.720000px;}
.h1_c00128{height:1152.750000px;}
.w1_c00128{width:783.750000px;}
.w0_c00128{width:784.080000px;}
.x0_c00128{left:0.000000px;}
.x43_c00128{left:61.200000px;}
.xe_c00128{left:62.640000px;}
.x2_c00128{left:64.080000px;}
.x51_c00128{left:82.800000px;}
.x5d_c00128{left:88.560000px;}
.x30_c00128{left:92.880000px;}
.x5e_c00128{left:94.320000px;}
.x38_c00128{left:104.400000px;}
.x1b_c00128{left:105.840000px;}
.x58_c00128{left:107.280000px;}
.x3_c00128{left:115.920000px;}
.x2b_c00128{left:125.280000px;}
.x15_c00128{left:136.080000px;}
.x20_c00128{left:138.240000px;}
.x62_c00128{left:145.440000px;}
.x47_c00128{left:146.880000px;}
.x31_c00128{left:156.240000px;}
.x4d_c00128{left:157.680000px;}
.x3c_c00128{left:167.760000px;}
.x4_c00128{left:169.200000px;}
.x21_c00128{left:170.640000px;}
.x35_c00128{left:179.280000px;}
.x56_c00128{left:188.640000px;}
.x27_c00128{left:190.080000px;}
.x4e_c00128{left:199.440000px;}
.x3d_c00128{left:200.880000px;}
.xf_c00128{left:211.680000px;}
.x16_c00128{left:222.480000px;}
.x59_c00128{left:231.120000px;}
.x5_c00128{left:233.280000px;}
.x44_c00128{left:242.640000px;}
.x28_c00128{left:244.080000px;}
.x17_c00128{left:254.880000px;}
.x3e_c00128{left:264.960000px;}
.x5f_c00128{left:274.320000px;}
.x39_c00128{left:276.480000px;}
.x53_c00128{left:285.120000px;}
.x3f_c00128{left:297.360000px;}
.x3a_c00128{left:308.160000px;}
.x6_c00128{left:309.600000px;}
.x36_c00128{left:318.960000px;}
.x22_c00128{left:330.480000px;}
.x40_c00128{left:339.120000px;}
.x7_c00128{left:341.280000px;}
.x5a_c00128{left:351.360000px;}
.x45_c00128{left:361.440000px;}
.x23_c00128{left:362.880000px;}
.x4a_c00128{left:372.960000px;}
.x8_c00128{left:374.400000px;}
.x60_c00128{left:383.040000px;}
.x2c_c00128{left:384.480000px;}
.x24_c00128{left:395.280000px;}
.x48_c00128{left:404.640000px;}
.x29_c00128{left:406.080000px;}
.x4b_c00128{left:415.440000px;}
.x2d_c00128{left:426.240000px;}
.x10_c00128{left:427.680000px;}
.x41_c00128{left:437.040000px;}
.x9_c00128{left:438.480000px;}
.x4c_c00128{left:448.560000px;}
.x63_c00128{left:457.920000px;}
.x25_c00128{left:460.800000px;}
.x32_c00128{left:470.880000px;}
.x11_c00128{left:472.320000px;}
.x1c_c00128{left:481.680000px;}
.x5b_c00128{left:492.480000px;}
.x1a_c00128{left:494.640000px;}
.x61_c00128{left:501.840000px;}
.xa_c00128{left:503.280000px;}
.x42_c00128{left:514.080000px;}
.x12_c00128{left:516.240000px;}
.x37_c00128{left:524.880000px;}
.x52_c00128{left:534.960000px;}
.x2e_c00128{left:536.400000px;}
.x54_c00128{left:546.480000px;}
.xb_c00128{left:547.920000px;}
.x33_c00128{left:558.000000px;}
.x3b_c00128{left:569.520000px;}
.x49_c00128{left:578.880000px;}
.x18_c00128{left:581.040000px;}
.x2a_c00128{left:591.120000px;}
.x13_c00128{left:594.000000px;}
.x34_c00128{left:601.920000px;}
.x4f_c00128{left:611.280000px;}
.x19_c00128{left:613.440000px;}
.x46_c00128{left:622.800000px;}
.x2f_c00128{left:624.240000px;}
.x1d_c00128{left:635.040000px;}
.x50_c00128{left:643.680000px;}
.x26_c00128{left:645.840000px;}
.x55_c00128{left:655.200000px;}
.x5c_c00128{left:656.640000px;}
.xc_c00128{left:667.440000px;}
.x1e_c00128{left:678.240000px;}
.x57_c00128{left:689.040000px;}
.x1_c00128{left:691.200000px;}
.x14_c00128{left:699.840000px;}
.xd_c00128{left:701.280000px;}
.x1f_c00128{left:722.160000px;}
@media print{
.v0_c00128{vertical-align:0.000000pt;}
.v1_c00128{vertical-align:2.560000pt;}
.ls0_c00128{letter-spacing:0.000000pt;}
.ws1_c00128{word-spacing:0.000000pt;}
.ws0_c00128{word-spacing:6.006400pt;}
.fs8_c00128{font-size:30.720000pt;}
.fs6_c00128{font-size:33.280000pt;}
.fs4_c00128{font-size:35.840000pt;}
.fsb_c00128{font-size:40.960000pt;}
.fs1_c00128{font-size:43.520000pt;}
.fs2_c00128{font-size:46.080000pt;}
.fs5_c00128{font-size:48.640000pt;}
.fsc_c00128{font-size:51.200000pt;}
.fs3_c00128{font-size:53.760000pt;}
.fs9_c00128{font-size:56.320000pt;}
.fsa_c00128{font-size:58.880000pt;}
.fs7_c00128{font-size:61.440000pt;}
.fs0_c00128{font-size:64.000000pt;}
.fsd_c00128{font-size:69.120000pt;}
.y0_c00128{bottom:0.000000pt;}
.y8f_c00128{bottom:42.240000pt;}
.y91_c00128{bottom:43.520000pt;}
.y8c_c00128{bottom:44.160000pt;}
.y90_c00128{bottom:44.800000pt;}
.y8e_c00128{bottom:45.440000pt;}
.y8a_c00128{bottom:46.080000pt;}
.y8d_c00128{bottom:46.720000pt;}
.y8b_c00128{bottom:47.360000pt;}
.y89_c00128{bottom:48.000000pt;}
.y88_c00128{bottom:50.560000pt;}
.y87_c00128{bottom:80.640000pt;}
.y82_c00128{bottom:81.280000pt;}
.y83_c00128{bottom:81.920000pt;}
.y86_c00128{bottom:82.560000pt;}
.y85_c00128{bottom:83.200000pt;}
.y84_c00128{bottom:83.840000pt;}
.y81_c00128{bottom:85.120000pt;}
.y80_c00128{bottom:85.760000pt;}
.y7f_c00128{bottom:88.320000pt;}
.y7e_c00128{bottom:118.400000pt;}
.y7d_c00128{bottom:119.040000pt;}
.y7b_c00128{bottom:119.680000pt;}
.y78_c00128{bottom:120.960000pt;}
.y7c_c00128{bottom:121.600000pt;}
.y7a_c00128{bottom:122.240000pt;}
.y79_c00128{bottom:122.880000pt;}
.y77_c00128{bottom:125.440000pt;}
.y76_c00128{bottom:126.080000pt;}
.y75_c00128{bottom:157.440000pt;}
.y73_c00128{bottom:158.080000pt;}
.y72_c00128{bottom:158.720000pt;}
.y74_c00128{bottom:160.640000pt;}
.y71_c00128{bottom:163.200000pt;}
.y70_c00128{bottom:195.840000pt;}
.y6f_c00128{bottom:196.480000pt;}
.y6e_c00128{bottom:197.120000pt;}
.y6d_c00128{bottom:198.400000pt;}
.y6c_c00128{bottom:199.040000pt;}
.y6a_c00128{bottom:199.680000pt;}
.y6b_c00128{bottom:200.320000pt;}
.y69_c00128{bottom:232.320000pt;}
.y68_c00128{bottom:234.880000pt;}
.y67_c00128{bottom:235.520000pt;}
.y65_c00128{bottom:236.800000pt;}
.y66_c00128{bottom:238.720000pt;}
.y64_c00128{bottom:273.280000pt;}
.y63_c00128{bottom:273.920000pt;}
.y62_c00128{bottom:274.560000pt;}
.y61_c00128{bottom:275.840000pt;}
.y5f_c00128{bottom:319.360000pt;}
.y5e_c00128{bottom:320.000000pt;}
.y5b_c00128{bottom:320.640000pt;}
.y60_c00128{bottom:321.920000pt;}
.y5d_c00128{bottom:322.560000pt;}
.y5c_c00128{bottom:323.200000pt;}
.y5a_c00128{bottom:323.840000pt;}
.y59_c00128{bottom:325.120000pt;}
.y56_c00128{bottom:358.400000pt;}
.y58_c00128{bottom:359.040000pt;}
.y57_c00128{bottom:359.680000pt;}
.y55_c00128{bottom:360.320000pt;}
.y54_c00128{bottom:360.960000pt;}
.y53_c00128{bottom:361.600000pt;}
.y51_c00128{bottom:394.880000pt;}
.y50_c00128{bottom:395.520000pt;}
.y4f_c00128{bottom:396.160000pt;}
.y4e_c00128{bottom:396.800000pt;}
.y52_c00128{bottom:397.440000pt;}
.y4d_c00128{bottom:398.080000pt;}
.y4c_c00128{bottom:398.720000pt;}
.y4b_c00128{bottom:433.280000pt;}
.y48_c00128{bottom:434.560000pt;}
.y4a_c00128{bottom:435.840000pt;}
.y49_c00128{bottom:436.480000pt;}
.y47_c00128{bottom:437.120000pt;}
.y46_c00128{bottom:471.040000pt;}
.y44_c00128{bottom:471.680000pt;}
.y45_c00128{bottom:473.600000pt;}
.y43_c00128{bottom:474.240000pt;}
.y42_c00128{bottom:474.880000pt;}
.y40_c00128{bottom:508.800000pt;}
.y41_c00128{bottom:509.440000pt;}
.y3f_c00128{bottom:512.000000pt;}
.y3e_c00128{bottom:512.640000pt;}
.y3d_c00128{bottom:513.280000pt;}
.y39_c00128{bottom:557.440000pt;}
.y3c_c00128{bottom:558.080000pt;}
.y3b_c00128{bottom:559.360000pt;}
.y3a_c00128{bottom:560.000000pt;}
.y36_c00128{bottom:594.560000pt;}
.y37_c00128{bottom:595.200000pt;}
.y34_c00128{bottom:597.120000pt;}
.y35_c00128{bottom:597.760000pt;}
.y38_c00128{bottom:598.400000pt;}
.y32_c00128{bottom:632.960000pt;}
.y31_c00128{bottom:633.600000pt;}
.y30_c00128{bottom:635.520000pt;}
.y33_c00128{bottom:636.160000pt;}
.y2a_c00128{bottom:670.080000pt;}
.y2c_c00128{bottom:670.720000pt;}
.y2e_c00128{bottom:671.360000pt;}
.y2b_c00128{bottom:673.280000pt;}
.y2d_c00128{bottom:673.920000pt;}
.y2f_c00128{bottom:674.560000pt;}
.y28_c00128{bottom:709.120000pt;}
.y27_c00128{bottom:709.760000pt;}
.y25_c00128{bottom:711.040000pt;}
.y26_c00128{bottom:711.680000pt;}
.y29_c00128{bottom:712.320000pt;}
.y20_c00128{bottom:747.520000pt;}
.y1f_c00128{bottom:748.160000pt;}
.y1e_c00128{bottom:748.800000pt;}
.y22_c00128{bottom:749.440000pt;}
.y21_c00128{bottom:750.080000pt;}
.y23_c00128{bottom:750.720000pt;}
.y24_c00128{bottom:751.360000pt;}
.y1c_c00128{bottom:785.280000pt;}
.y17_c00128{bottom:785.920000pt;}
.y18_c00128{bottom:786.560000pt;}
.y1a_c00128{bottom:787.200000pt;}
.y19_c00128{bottom:787.840000pt;}
.y1b_c00128{bottom:789.120000pt;}
.y1d_c00128{bottom:789.760000pt;}
.y16_c00128{bottom:798.720000pt;}
.y11_c00128{bottom:823.040000pt;}
.y13_c00128{bottom:823.680000pt;}
.y10_c00128{bottom:824.320000pt;}
.y15_c00128{bottom:824.960000pt;}
.y12_c00128{bottom:825.600000pt;}
.y14_c00128{bottom:826.240000pt;}
.yb_c00128{bottom:860.160000pt;}
.ya_c00128{bottom:862.080000pt;}
.yf_c00128{bottom:862.720000pt;}
.yc_c00128{bottom:863.360000pt;}
.yd_c00128{bottom:864.640000pt;}
.ye_c00128{bottom:865.280000pt;}
.y2_c00128{bottom:897.280000pt;}
.y3_c00128{bottom:897.920000pt;}
.y4_c00128{bottom:899.200000pt;}
.y6_c00128{bottom:901.760000pt;}
.y5_c00128{bottom:902.400000pt;}
.y7_c00128{bottom:903.040000pt;}
.y9_c00128{bottom:903.680000pt;}
.y8_c00128{bottom:904.320000pt;}
.y1_c00128{bottom:976.640000pt;}
.ha_c00128{height:27.645000pt;}
.h8_c00128{height:29.948750pt;}
.h6_c00128{height:32.252500pt;}
.hd_c00128{height:36.860000pt;}
.h3_c00128{height:39.163750pt;}
.h4_c00128{height:41.467500pt;}
.h7_c00128{height:43.771250pt;}
.h10_c00128{height:44.027500pt;}
.he_c00128{height:46.075000pt;}
.h5_c00128{height:48.378750pt;}
.hb_c00128{height:50.682500pt;}
.hc_c00128{height:52.986250pt;}
.h9_c00128{height:55.290000pt;}
.h2_c00128{height:57.593750pt;}
.hf_c00128{height:62.201250pt;}
.h0_c00128{height:1024.640000pt;}
.h1_c00128{height:1024.666667pt;}
.w1_c00128{width:696.666667pt;}
.w0_c00128{width:696.960000pt;}
.x0_c00128{left:0.000000pt;}
.x43_c00128{left:54.400000pt;}
.xe_c00128{left:55.680000pt;}
.x2_c00128{left:56.960000pt;}
.x51_c00128{left:73.600000pt;}
.x5d_c00128{left:78.720000pt;}
.x30_c00128{left:82.560000pt;}
.x5e_c00128{left:83.840000pt;}
.x38_c00128{left:92.800000pt;}
.x1b_c00128{left:94.080000pt;}
.x58_c00128{left:95.360000pt;}
.x3_c00128{left:103.040000pt;}
.x2b_c00128{left:111.360000pt;}
.x15_c00128{left:120.960000pt;}
.x20_c00128{left:122.880000pt;}
.x62_c00128{left:129.280000pt;}
.x47_c00128{left:130.560000pt;}
.x31_c00128{left:138.880000pt;}
.x4d_c00128{left:140.160000pt;}
.x3c_c00128{left:149.120000pt;}
.x4_c00128{left:150.400000pt;}
.x21_c00128{left:151.680000pt;}
.x35_c00128{left:159.360000pt;}
.x56_c00128{left:167.680000pt;}
.x27_c00128{left:168.960000pt;}
.x4e_c00128{left:177.280000pt;}
.x3d_c00128{left:178.560000pt;}
.xf_c00128{left:188.160000pt;}
.x16_c00128{left:197.760000pt;}
.x59_c00128{left:205.440000pt;}
.x5_c00128{left:207.360000pt;}
.x44_c00128{left:215.680000pt;}
.x28_c00128{left:216.960000pt;}
.x17_c00128{left:226.560000pt;}
.x3e_c00128{left:235.520000pt;}
.x5f_c00128{left:243.840000pt;}
.x39_c00128{left:245.760000pt;}
.x53_c00128{left:253.440000pt;}
.x3f_c00128{left:264.320000pt;}
.x3a_c00128{left:273.920000pt;}
.x6_c00128{left:275.200000pt;}
.x36_c00128{left:283.520000pt;}
.x22_c00128{left:293.760000pt;}
.x40_c00128{left:301.440000pt;}
.x7_c00128{left:303.360000pt;}
.x5a_c00128{left:312.320000pt;}
.x45_c00128{left:321.280000pt;}
.x23_c00128{left:322.560000pt;}
.x4a_c00128{left:331.520000pt;}
.x8_c00128{left:332.800000pt;}
.x60_c00128{left:340.480000pt;}
.x2c_c00128{left:341.760000pt;}
.x24_c00128{left:351.360000pt;}
.x48_c00128{left:359.680000pt;}
.x29_c00128{left:360.960000pt;}
.x4b_c00128{left:369.280000pt;}
.x2d_c00128{left:378.880000pt;}
.x10_c00128{left:380.160000pt;}
.x41_c00128{left:388.480000pt;}
.x9_c00128{left:389.760000pt;}
.x4c_c00128{left:398.720000pt;}
.x63_c00128{left:407.040000pt;}
.x25_c00128{left:409.600000pt;}
.x32_c00128{left:418.560000pt;}
.x11_c00128{left:419.840000pt;}
.x1c_c00128{left:428.160000pt;}
.x5b_c00128{left:437.760000pt;}
.x1a_c00128{left:439.680000pt;}
.x61_c00128{left:446.080000pt;}
.xa_c00128{left:447.360000pt;}
.x42_c00128{left:456.960000pt;}
.x12_c00128{left:458.880000pt;}
.x37_c00128{left:466.560000pt;}
.x52_c00128{left:475.520000pt;}
.x2e_c00128{left:476.800000pt;}
.x54_c00128{left:485.760000pt;}
.xb_c00128{left:487.040000pt;}
.x33_c00128{left:496.000000pt;}
.x3b_c00128{left:506.240000pt;}
.x49_c00128{left:514.560000pt;}
.x18_c00128{left:516.480000pt;}
.x2a_c00128{left:525.440000pt;}
.x13_c00128{left:528.000000pt;}
.x34_c00128{left:535.040000pt;}
.x4f_c00128{left:543.360000pt;}
.x19_c00128{left:545.280000pt;}
.x46_c00128{left:553.600000pt;}
.x2f_c00128{left:554.880000pt;}
.x1d_c00128{left:564.480000pt;}
.x50_c00128{left:572.160000pt;}
.x26_c00128{left:574.080000pt;}
.x55_c00128{left:582.400000pt;}
.x5c_c00128{left:583.680000pt;}
.xc_c00128{left:593.280000pt;}
.x1e_c00128{left:602.880000pt;}
.x57_c00128{left:612.480000pt;}
.x1_c00128{left:614.400000pt;}
.x14_c00128{left:622.080000pt;}
.xd_c00128{left:623.360000pt;}
.x1f_c00128{left:641.920000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_56f270c1279639d1addf9ca1.woff2')format("woff");}.ff1_c00129{font-family:ff1_c00129;line-height:1.109863;font-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_c00129{transform:matrix(0.115375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115375,0.000000,0.000000,0.250000,0,0);}
.m3e_c00129{transform:matrix(0.225100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225100,0.000000,0.000000,0.250000,0,0);}
.m24_c00129{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m20_c00129{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m36_c00129{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m28_c00129{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m21_c00129{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m25_c00129{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m15_c00129{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m13_c00129{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00129{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m26_c00129{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m33_c00129{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m23_c00129{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00129{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00129{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00129{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00129{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m22_c00129{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m12_c00129{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m39_c00129{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m11_c00129{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.ma_c00129{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m19_c00129{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m35_c00129{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m10_c00129{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m31_c00129{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00129{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00129{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.md_c00129{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m40_c00129{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m37_c00129{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1_c00129{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00129{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);}
.m56_c00129{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);}
.m42_c00129{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m58_c00129{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);}
.m32_c00129{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00129{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_c00129{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.mf_c00129{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m38_c00129{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m5_c00129{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);}
.m30_c00129{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00129{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m18_c00129{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m8_c00129{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);}
.m9_c00129{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00129{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);}
.m34_c00129{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);}
.m2c_c00129{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);}
.m57_c00129{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);}
.m0_c00129{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m16_c00129{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m29_c00129{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m2_c00129{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);}
.m45_c00129{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.mb_c00129{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);}
.m59_c00129{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);}
.me_c00129{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);}
.m44_c00129{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00129{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m41_c00129{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m14_c00129{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m17_c00129{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);}
.m4c_c00129{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m47_c00129{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);}
.m2a_c00129{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m6_c00129{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m3_c00129{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);}
.m27_c00129{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m50_c00129{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m4_c00129{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00129{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m54_c00129{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00129{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);}
.m52_c00129{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00129{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);}
.m2d_c00129{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00129{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m49_c00129{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00129{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m43_c00129{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);}
.m2e_c00129{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00129{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00129{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00129{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m46_c00129{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00129{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m48_c00129{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);}
.m51_c00129{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m55_c00129{transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);}
.m53_c00129{transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);}
.v0_c00129{vertical-align:0.000000px;}
.v1_c00129{vertical-align:8.640000px;}
.ls0_c00129{letter-spacing:0.000000px;}
.sc__c00129{text-shadow:none;}
.sc0_c00129{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00129{-webkit-text-stroke:0px transparent;}
.sc0_c00129{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00129{word-spacing:0.000000px;}
.ws0_c00129{word-spacing:163.142400px;}
.fc0_c00129{color:transparent;}
.fse_c00129{font-size:34.560000px;}
.fsc_c00129{font-size:37.440000px;}
.fs3_c00129{font-size:40.320000px;}
.fsf_c00129{font-size:43.200000px;}
.fs7_c00129{font-size:46.080000px;}
.fs5_c00129{font-size:48.960000px;}
.fs4_c00129{font-size:51.840000px;}
.fsb_c00129{font-size:54.720000px;}
.fs2_c00129{font-size:57.600000px;}
.fs6_c00129{font-size:60.480000px;}
.fs1_c00129{font-size:63.360000px;}
.fs9_c00129{font-size:66.240000px;}
.fs0_c00129{font-size:69.120000px;}
.fs10_c00129{font-size:72.000000px;}
.fs8_c00129{font-size:74.880000px;}
.fsa_c00129{font-size:77.760000px;}
.fsd_c00129{font-size:103.680000px;}
.y0_c00129{bottom:0.000000px;}
.y80_c00129{bottom:77.760000px;}
.y82_c00129{bottom:79.200000px;}
.y81_c00129{bottom:79.920000px;}
.y7f_c00129{bottom:81.360000px;}
.y7e_c00129{bottom:82.080000px;}
.y7d_c00129{bottom:83.520000px;}
.y7c_c00129{bottom:84.240000px;}
.y7a_c00129{bottom:121.680000px;}
.y78_c00129{bottom:122.400000px;}
.y7b_c00129{bottom:123.120000px;}
.y76_c00129{bottom:123.840000px;}
.y79_c00129{bottom:125.280000px;}
.y77_c00129{bottom:126.000000px;}
.y75_c00129{bottom:128.160000px;}
.y73_c00129{bottom:162.720000px;}
.y72_c00129{bottom:164.160000px;}
.y74_c00129{bottom:165.600000px;}
.y6f_c00129{bottom:167.040000px;}
.y71_c00129{bottom:167.760000px;}
.y70_c00129{bottom:168.480000px;}
.y6e_c00129{bottom:208.080000px;}
.y69_c00129{bottom:208.800000px;}
.y6d_c00129{bottom:209.520000px;}
.y6c_c00129{bottom:210.240000px;}
.y6a_c00129{bottom:210.960000px;}
.y6b_c00129{bottom:211.680000px;}
.y68_c00129{bottom:213.120000px;}
.y66_c00129{bottom:249.120000px;}
.y63_c00129{bottom:250.560000px;}
.y62_c00129{bottom:251.280000px;}
.y67_c00129{bottom:252.000000px;}
.y65_c00129{bottom:252.720000px;}
.y64_c00129{bottom:253.440000px;}
.y61_c00129{bottom:254.160000px;}
.y60_c00129{bottom:292.320000px;}
.y5c_c00129{bottom:293.760000px;}
.y5b_c00129{bottom:294.480000px;}
.y5d_c00129{bottom:295.200000px;}
.y5f_c00129{bottom:295.920000px;}
.y5e_c00129{bottom:296.640000px;}
.y59_c00129{bottom:334.800000px;}
.y5a_c00129{bottom:337.680000px;}
.y58_c00129{bottom:338.400000px;}
.y57_c00129{bottom:339.120000px;}
.y56_c00129{bottom:339.840000px;}
.y55_c00129{bottom:340.560000px;}
.y53_c00129{bottom:377.280000px;}
.y52_c00129{bottom:378.000000px;}
.y50_c00129{bottom:378.720000px;}
.y54_c00129{bottom:380.880000px;}
.y51_c00129{bottom:381.600000px;}
.y4f_c00129{bottom:382.320000px;}
.y4c_c00129{bottom:432.000000px;}
.y4e_c00129{bottom:434.880000px;}
.y4b_c00129{bottom:435.600000px;}
.y4d_c00129{bottom:436.320000px;}
.y49_c00129{bottom:485.280000px;}
.y4a_c00129{bottom:488.160000px;}
.y48_c00129{bottom:488.880000px;}
.y41_c00129{bottom:539.280000px;}
.y46_c00129{bottom:540.000000px;}
.y43_c00129{bottom:540.720000px;}
.y44_c00129{bottom:560.880000px;}
.y40_c00129{bottom:561.600000px;}
.y47_c00129{bottom:564.480000px;}
.y3f_c00129{bottom:584.640000px;}
.y45_c00129{bottom:585.360000px;}
.y42_c00129{bottom:586.080000px;}
.y3c_c00129{bottom:635.040000px;}
.y3e_c00129{bottom:635.760000px;}
.y3d_c00129{bottom:636.480000px;}
.y3a_c00129{bottom:637.200000px;}
.y39_c00129{bottom:637.920000px;}
.y3b_c00129{bottom:638.640000px;}
.y35_c00129{bottom:689.040000px;}
.y36_c00129{bottom:690.480000px;}
.y37_c00129{bottom:691.200000px;}
.y38_c00129{bottom:732.240000px;}
.y1b_c00129{bottom:732.960000px;}
.y1a_c00129{bottom:733.680000px;}
.y34_c00129{bottom:734.400000px;}
.y2f_c00129{bottom:735.840000px;}
.y18_c00129{bottom:763.920000px;}
.y19_c00129{bottom:765.360000px;}
.y24_c00129{bottom:766.800000px;}
.y29_c00129{bottom:768.240000px;}
.y2e_c00129{bottom:768.960000px;}
.y16_c00129{bottom:795.600000px;}
.y17_c00129{bottom:796.320000px;}
.y2d_c00129{bottom:797.040000px;}
.y28_c00129{bottom:798.480000px;}
.y20_c00129{bottom:799.200000px;}
.y33_c00129{bottom:799.920000px;}
.y15_c00129{bottom:827.280000px;}
.y14_c00129{bottom:828.720000px;}
.y1f_c00129{bottom:829.440000px;}
.y2c_c00129{bottom:830.160000px;}
.y23_c00129{bottom:830.880000px;}
.y11_c00129{bottom:858.240000px;}
.y12_c00129{bottom:861.120000px;}
.y13_c00129{bottom:861.840000px;}
.y1e_c00129{bottom:862.560000px;}
.y22_c00129{bottom:864.000000px;}
.ye_c00129{bottom:891.360000px;}
.y1d_c00129{bottom:892.080000px;}
.yf_c00129{bottom:892.800000px;}
.y27_c00129{bottom:893.520000px;}
.y10_c00129{bottom:894.240000px;}
.y32_c00129{bottom:894.960000px;}
.y2b_c00129{bottom:896.400000px;}
.yd_c00129{bottom:922.320000px;}
.yc_c00129{bottom:923.760000px;}
.y21_c00129{bottom:924.480000px;}
.yb_c00129{bottom:925.200000px;}
.y2a_c00129{bottom:928.080000px;}
.y31_c00129{bottom:928.800000px;}
.y1c_c00129{bottom:954.000000px;}
.ya_c00129{bottom:958.320000px;}
.y25_c00129{bottom:959.760000px;}
.y26_c00129{bottom:960.480000px;}
.y30_c00129{bottom:961.200000px;}
.y2_c00129{bottom:1009.440000px;}
.y3_c00129{bottom:1010.160000px;}
.y4_c00129{bottom:1010.880000px;}
.y7_c00129{bottom:1011.600000px;}
.y5_c00129{bottom:1012.320000px;}
.y6_c00129{bottom:1013.040000px;}
.y8_c00129{bottom:1013.760000px;}
.y9_c00129{bottom:1014.480000px;}
.y1_c00129{bottom:1094.400000px;}
.h11_c00129{height:31.100625px;}
.hf_c00129{height:33.692344px;}
.h5_c00129{height:36.284062px;}
.h12_c00129{height:38.875781px;}
.h9_c00129{height:41.467500px;}
.h7_c00129{height:44.059219px;}
.h6_c00129{height:46.650937px;}
.hd_c00129{height:49.242656px;}
.h4_c00129{height:51.834375px;}
.h8_c00129{height:54.426094px;}
.h3_c00129{height:57.017812px;}
.hb_c00129{height:59.609531px;}
.h2_c00129{height:62.201250px;}
.he_c00129{height:63.066094px;}
.h13_c00129{height:64.792969px;}
.ha_c00129{height:67.384687px;}
.hc_c00129{height:69.976406px;}
.h10_c00129{height:93.301875px;}
.h1_c00129{height:1150.500000px;}
.h0_c00129{height:1150.560000px;}
.w0_c00129{width:781.200000px;}
.w1_c00129{width:781.500000px;}
.x0_c00129{left:0.000000px;}
.x2_c00129{left:60.480000px;}
.xe_c00129{left:61.920000px;}
.x48_c00129{left:82.800000px;}
.x10_c00129{left:102.960000px;}
.x3a_c00129{left:114.480000px;}
.xc_c00129{left:123.120000px;}
.x40_c00129{left:124.560000px;}
.x2a_c00129{left:126.000000px;}
.x29_c00129{left:136.080000px;}
.x3_c00129{left:144.720000px;}
.x28_c00129{left:147.600000px;}
.x3b_c00129{left:156.960000px;}
.x20_c00129{left:167.040000px;}
.x36_c00129{left:168.480000px;}
.x32_c00129{left:177.840000px;}
.x43_c00129{left:179.280000px;}
.x49_c00129{left:188.640000px;}
.x3c_c00129{left:190.080000px;}
.x37_c00129{left:199.440000px;}
.x1c_c00129{left:200.880540px;}
.x2e_c00129{left:210.240000px;}
.xf_c00129{left:211.680000px;}
.xd_c00129{left:221.040000px;}
.xb_c00129{left:222.480000px;}
.x33_c00129{left:242.640000px;}
.x4b_c00129{left:244.080000px;}
.x2f_c00129{left:253.440000px;}
.x21_c00129{left:263.520000px;}
.x4c_c00129{left:264.960000px;}
.x4_c00129{left:274.320000px;}
.x2b_c00129{left:276.480000px;}
.x11_c00129{left:286.560000px;}
.x4d_c00129{left:295.920000px;}
.x12_c00129{left:298.080000px;}
.x5_c00129{left:307.440000px;}
.x13_c00129{left:308.880000px;}
.x4a_c00129{left:318.960000px;}
.x22_c00129{left:328.320000px;}
.x3d_c00129{left:339.840000px;}
.x34_c00129{left:341.280000px;}
.x30_c00129{left:350.640000px;}
.x2c_c00129{left:352.080000px;}
.x23_c00129{left:372.240000px;}
.x6_c00129{left:382.320000px;}
.x16_c00129{left:383.760000px;}
.x14_c00129{left:393.120000px;}
.x15_c00129{left:395.280000px;}
.x24_c00129{left:404.640000px;}
.x35_c00129{left:406.080000px;}
.x44_c00129{left:416.160000px;}
.x41_c00129{left:426.240000px;}
.x2d_c00129{left:427.680000px;}
.x38_c00129{left:437.040000px;}
.x1f_c00129{left:447.840000px;}
.x18_c00129{left:449.280000px;}
.x17_c00129{left:459.360000px;}
.x4e_c00129{left:480.240000px;}
.x7_c00129{left:491.040000px;}
.x31_c00129{left:492.480000px;}
.x25_c00129{left:513.360000px;}
.x39_c00129{left:523.440000px;}
.x19_c00129{left:524.880000px;}
.x8_c00129{left:533.520000px;}
.x1a_c00129{left:535.680000px;}
.x26_c00129{left:545.760000px;}
.x45_c00129{left:556.560000px;}
.x3e_c00129{left:567.360000px;}
.x4f_c00129{left:568.800000px;}
.x27_c00129{left:578.880000px;}
.x1b_c00129{left:590.400000px;}
.x50_c00129{left:599.040000px;}
.x9_c00129{left:600.480000px;}
.x46_c00129{left:611.280000px;}
.xa_c00129{left:632.880000px;}
.x42_c00129{left:643.680000px;}
.x47_c00129{left:654.480000px;}
.x51_c00129{left:656.640000px;}
.x3f_c00129{left:676.800000px;}
.x1_c00129{left:678.240000px;}
.x1d_c00129{left:689.040000px;}
.x1e_c00129{left:730.080000px;}
@media print{
.v0_c00129{vertical-align:0.000000pt;}
.v1_c00129{vertical-align:7.680000pt;}
.ls0_c00129{letter-spacing:0.000000pt;}
.ws1_c00129{word-spacing:0.000000pt;}
.ws0_c00129{word-spacing:145.015467pt;}
.fse_c00129{font-size:30.720000pt;}
.fsc_c00129{font-size:33.280000pt;}
.fs3_c00129{font-size:35.840000pt;}
.fsf_c00129{font-size:38.400000pt;}
.fs7_c00129{font-size:40.960000pt;}
.fs5_c00129{font-size:43.520000pt;}
.fs4_c00129{font-size:46.080000pt;}
.fsb_c00129{font-size:48.640000pt;}
.fs2_c00129{font-size:51.200000pt;}
.fs6_c00129{font-size:53.760000pt;}
.fs1_c00129{font-size:56.320000pt;}
.fs9_c00129{font-size:58.880000pt;}
.fs0_c00129{font-size:61.440000pt;}
.fs10_c00129{font-size:64.000000pt;}
.fs8_c00129{font-size:66.560000pt;}
.fsa_c00129{font-size:69.120000pt;}
.fsd_c00129{font-size:92.160000pt;}
.y0_c00129{bottom:0.000000pt;}
.y80_c00129{bottom:69.120000pt;}
.y82_c00129{bottom:70.400000pt;}
.y81_c00129{bottom:71.040000pt;}
.y7f_c00129{bottom:72.320000pt;}
.y7e_c00129{bottom:72.960000pt;}
.y7d_c00129{bottom:74.240000pt;}
.y7c_c00129{bottom:74.880000pt;}
.y7a_c00129{bottom:108.160000pt;}
.y78_c00129{bottom:108.800000pt;}
.y7b_c00129{bottom:109.440000pt;}
.y76_c00129{bottom:110.080000pt;}
.y79_c00129{bottom:111.360000pt;}
.y77_c00129{bottom:112.000000pt;}
.y75_c00129{bottom:113.920000pt;}
.y73_c00129{bottom:144.640000pt;}
.y72_c00129{bottom:145.920000pt;}
.y74_c00129{bottom:147.200000pt;}
.y6f_c00129{bottom:148.480000pt;}
.y71_c00129{bottom:149.120000pt;}
.y70_c00129{bottom:149.760000pt;}
.y6e_c00129{bottom:184.960000pt;}
.y69_c00129{bottom:185.600000pt;}
.y6d_c00129{bottom:186.240000pt;}
.y6c_c00129{bottom:186.880000pt;}
.y6a_c00129{bottom:187.520000pt;}
.y6b_c00129{bottom:188.160000pt;}
.y68_c00129{bottom:189.440000pt;}
.y66_c00129{bottom:221.440000pt;}
.y63_c00129{bottom:222.720000pt;}
.y62_c00129{bottom:223.360000pt;}
.y67_c00129{bottom:224.000000pt;}
.y65_c00129{bottom:224.640000pt;}
.y64_c00129{bottom:225.280000pt;}
.y61_c00129{bottom:225.920000pt;}
.y60_c00129{bottom:259.840000pt;}
.y5c_c00129{bottom:261.120000pt;}
.y5b_c00129{bottom:261.760000pt;}
.y5d_c00129{bottom:262.400000pt;}
.y5f_c00129{bottom:263.040000pt;}
.y5e_c00129{bottom:263.680000pt;}
.y59_c00129{bottom:297.600000pt;}
.y5a_c00129{bottom:300.160000pt;}
.y58_c00129{bottom:300.800000pt;}
.y57_c00129{bottom:301.440000pt;}
.y56_c00129{bottom:302.080000pt;}
.y55_c00129{bottom:302.720000pt;}
.y53_c00129{bottom:335.360000pt;}
.y52_c00129{bottom:336.000000pt;}
.y50_c00129{bottom:336.640000pt;}
.y54_c00129{bottom:338.560000pt;}
.y51_c00129{bottom:339.200000pt;}
.y4f_c00129{bottom:339.840000pt;}
.y4c_c00129{bottom:384.000000pt;}
.y4e_c00129{bottom:386.560000pt;}
.y4b_c00129{bottom:387.200000pt;}
.y4d_c00129{bottom:387.840000pt;}
.y49_c00129{bottom:431.360000pt;}
.y4a_c00129{bottom:433.920000pt;}
.y48_c00129{bottom:434.560000pt;}
.y41_c00129{bottom:479.360000pt;}
.y46_c00129{bottom:480.000000pt;}
.y43_c00129{bottom:480.640000pt;}
.y44_c00129{bottom:498.560000pt;}
.y40_c00129{bottom:499.200000pt;}
.y47_c00129{bottom:501.760000pt;}
.y3f_c00129{bottom:519.680000pt;}
.y45_c00129{bottom:520.320000pt;}
.y42_c00129{bottom:520.960000pt;}
.y3c_c00129{bottom:564.480000pt;}
.y3e_c00129{bottom:565.120000pt;}
.y3d_c00129{bottom:565.760000pt;}
.y3a_c00129{bottom:566.400000pt;}
.y39_c00129{bottom:567.040000pt;}
.y3b_c00129{bottom:567.680000pt;}
.y35_c00129{bottom:612.480000pt;}
.y36_c00129{bottom:613.760000pt;}
.y37_c00129{bottom:614.400000pt;}
.y38_c00129{bottom:650.880000pt;}
.y1b_c00129{bottom:651.520000pt;}
.y1a_c00129{bottom:652.160000pt;}
.y34_c00129{bottom:652.800000pt;}
.y2f_c00129{bottom:654.080000pt;}
.y18_c00129{bottom:679.040000pt;}
.y19_c00129{bottom:680.320000pt;}
.y24_c00129{bottom:681.600000pt;}
.y29_c00129{bottom:682.880000pt;}
.y2e_c00129{bottom:683.520000pt;}
.y16_c00129{bottom:707.200000pt;}
.y17_c00129{bottom:707.840000pt;}
.y2d_c00129{bottom:708.480000pt;}
.y28_c00129{bottom:709.760000pt;}
.y20_c00129{bottom:710.400000pt;}
.y33_c00129{bottom:711.040000pt;}
.y15_c00129{bottom:735.360000pt;}
.y14_c00129{bottom:736.640000pt;}
.y1f_c00129{bottom:737.280000pt;}
.y2c_c00129{bottom:737.920000pt;}
.y23_c00129{bottom:738.560000pt;}
.y11_c00129{bottom:762.880000pt;}
.y12_c00129{bottom:765.440000pt;}
.y13_c00129{bottom:766.080000pt;}
.y1e_c00129{bottom:766.720000pt;}
.y22_c00129{bottom:768.000000pt;}
.ye_c00129{bottom:792.320000pt;}
.y1d_c00129{bottom:792.960000pt;}
.yf_c00129{bottom:793.600000pt;}
.y27_c00129{bottom:794.240000pt;}
.y10_c00129{bottom:794.880000pt;}
.y32_c00129{bottom:795.520000pt;}
.y2b_c00129{bottom:796.800000pt;}
.yd_c00129{bottom:819.840000pt;}
.yc_c00129{bottom:821.120000pt;}
.y21_c00129{bottom:821.760000pt;}
.yb_c00129{bottom:822.400000pt;}
.y2a_c00129{bottom:824.960000pt;}
.y31_c00129{bottom:825.600000pt;}
.y1c_c00129{bottom:848.000000pt;}
.ya_c00129{bottom:851.840000pt;}
.y25_c00129{bottom:853.120000pt;}
.y26_c00129{bottom:853.760000pt;}
.y30_c00129{bottom:854.400000pt;}
.y2_c00129{bottom:897.280000pt;}
.y3_c00129{bottom:897.920000pt;}
.y4_c00129{bottom:898.560000pt;}
.y7_c00129{bottom:899.200000pt;}
.y5_c00129{bottom:899.840000pt;}
.y6_c00129{bottom:900.480000pt;}
.y8_c00129{bottom:901.120000pt;}
.y9_c00129{bottom:901.760000pt;}
.y1_c00129{bottom:972.800000pt;}
.h11_c00129{height:27.645000pt;}
.hf_c00129{height:29.948750pt;}
.h5_c00129{height:32.252500pt;}
.h12_c00129{height:34.556250pt;}
.h9_c00129{height:36.860000pt;}
.h7_c00129{height:39.163750pt;}
.h6_c00129{height:41.467500pt;}
.hd_c00129{height:43.771250pt;}
.h4_c00129{height:46.075000pt;}
.h8_c00129{height:48.378750pt;}
.h3_c00129{height:50.682500pt;}
.hb_c00129{height:52.986250pt;}
.h2_c00129{height:55.290000pt;}
.he_c00129{height:56.058750pt;}
.h13_c00129{height:57.593750pt;}
.ha_c00129{height:59.897500pt;}
.hc_c00129{height:62.201250pt;}
.h10_c00129{height:82.935000pt;}
.h1_c00129{height:1022.666667pt;}
.h0_c00129{height:1022.720000pt;}
.w0_c00129{width:694.400000pt;}
.w1_c00129{width:694.666667pt;}
.x0_c00129{left:0.000000pt;}
.x2_c00129{left:53.760000pt;}
.xe_c00129{left:55.040000pt;}
.x48_c00129{left:73.600000pt;}
.x10_c00129{left:91.520000pt;}
.x3a_c00129{left:101.760000pt;}
.xc_c00129{left:109.440000pt;}
.x40_c00129{left:110.720000pt;}
.x2a_c00129{left:112.000000pt;}
.x29_c00129{left:120.960000pt;}
.x3_c00129{left:128.640000pt;}
.x28_c00129{left:131.200000pt;}
.x3b_c00129{left:139.520000pt;}
.x20_c00129{left:148.480000pt;}
.x36_c00129{left:149.760000pt;}
.x32_c00129{left:158.080000pt;}
.x43_c00129{left:159.360000pt;}
.x49_c00129{left:167.680000pt;}
.x3c_c00129{left:168.960000pt;}
.x37_c00129{left:177.280000pt;}
.x1c_c00129{left:178.560480pt;}
.x2e_c00129{left:186.880000pt;}
.xf_c00129{left:188.160000pt;}
.xd_c00129{left:196.480000pt;}
.xb_c00129{left:197.760000pt;}
.x33_c00129{left:215.680000pt;}
.x4b_c00129{left:216.960000pt;}
.x2f_c00129{left:225.280000pt;}
.x21_c00129{left:234.240000pt;}
.x4c_c00129{left:235.520000pt;}
.x4_c00129{left:243.840000pt;}
.x2b_c00129{left:245.760000pt;}
.x11_c00129{left:254.720000pt;}
.x4d_c00129{left:263.040000pt;}
.x12_c00129{left:264.960000pt;}
.x5_c00129{left:273.280000pt;}
.x13_c00129{left:274.560000pt;}
.x4a_c00129{left:283.520000pt;}
.x22_c00129{left:291.840000pt;}
.x3d_c00129{left:302.080000pt;}
.x34_c00129{left:303.360000pt;}
.x30_c00129{left:311.680000pt;}
.x2c_c00129{left:312.960000pt;}
.x23_c00129{left:330.880000pt;}
.x6_c00129{left:339.840000pt;}
.x16_c00129{left:341.120000pt;}
.x14_c00129{left:349.440000pt;}
.x15_c00129{left:351.360000pt;}
.x24_c00129{left:359.680000pt;}
.x35_c00129{left:360.960000pt;}
.x44_c00129{left:369.920000pt;}
.x41_c00129{left:378.880000pt;}
.x2d_c00129{left:380.160000pt;}
.x38_c00129{left:388.480000pt;}
.x1f_c00129{left:398.080000pt;}
.x18_c00129{left:399.360000pt;}
.x17_c00129{left:408.320000pt;}
.x4e_c00129{left:426.880000pt;}
.x7_c00129{left:436.480000pt;}
.x31_c00129{left:437.760000pt;}
.x25_c00129{left:456.320000pt;}
.x39_c00129{left:465.280000pt;}
.x19_c00129{left:466.560000pt;}
.x8_c00129{left:474.240000pt;}
.x1a_c00129{left:476.160000pt;}
.x26_c00129{left:485.120000pt;}
.x45_c00129{left:494.720000pt;}
.x3e_c00129{left:504.320000pt;}
.x4f_c00129{left:505.600000pt;}
.x27_c00129{left:514.560000pt;}
.x1b_c00129{left:524.800000pt;}
.x50_c00129{left:532.480000pt;}
.x9_c00129{left:533.760000pt;}
.x46_c00129{left:543.360000pt;}
.xa_c00129{left:562.560000pt;}
.x42_c00129{left:572.160000pt;}
.x47_c00129{left:581.760000pt;}
.x51_c00129{left:583.680000pt;}
.x3f_c00129{left:601.600000pt;}
.x1_c00129{left:602.880000pt;}
.x1d_c00129{left:612.480000pt;}
.x1e_c00129{left:648.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_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_306cbee57eebbdde8a50e6a1.woff2')format("woff");}.ff1_c00130{font-family:ff1_c00130;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3a_c00130{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m55_c00130{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);}
.m4e_c00130{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m2_c00130{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00130{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m31_c00130{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m42_c00130{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m16_c00130{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m49_c00130{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m38_c00130{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m4_c00130{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00130{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00130{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mc_c00130{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_c00130{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);}
.m28_c00130{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m11_c00130{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.md_c00130{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m56_c00130{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m35_c00130{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m17_c00130{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);}
.m5a_c00130{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m23_c00130{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m30_c00130{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);}
.m2a_c00130{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);}
.m43_c00130{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);}
.m0_c00130{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m25_c00130{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);}
.m53_c00130{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m33_c00130{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);}
.m5_c00130{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m6_c00130{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00130{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m50_c00130{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.ma_c00130{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);}
.me_c00130{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00130{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00130{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);}
.m3e_c00130{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);}
.m4d_c00130{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m21_c00130{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00130{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m51_c00130{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);}
.m15_c00130{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00130{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);}
.m48_c00130{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m1_c00130{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);}
.m2b_c00130{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m47_c00130{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m37_c00130{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);}
.m39_c00130{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m32_c00130{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m27_c00130{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);}
.m1f_c00130{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m44_c00130{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m20_c00130{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m12_c00130{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m13_c00130{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m29_c00130{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);}
.m22_c00130{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);}
.m7_c00130{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m24_c00130{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);}
.m18_c00130{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m54_c00130{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00130{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);}
.m52_c00130{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00130{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m3_c00130{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m26_c00130{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);}
.m34_c00130{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.mf_c00130{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);}
.m4b_c00130{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00130{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);}
.m4a_c00130{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m46_c00130{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m9_c00130{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m58_c00130{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00130{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m14_c00130{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m40_c00130{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00130{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);}
.m36_c00130{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);}
.m10_c00130{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m45_c00130{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m57_c00130{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00130{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00130{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.mb_c00130{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m8_c00130{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);}
.m59_c00130{transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);}
.m41_c00130{transform:matrix(0.700000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.700000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.700000,0.000000,0.000000,0.250000,0,0);}
.v0_c00130{vertical-align:0.000000px;}
.v1_c00130{vertical-align:2.880000px;}
.ls0_c00130{letter-spacing:0.000000px;}
.sc__c00130{text-shadow:none;}
.sc0_c00130{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00130{-webkit-text-stroke:0px transparent;}
.sc0_c00130{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00130{word-spacing:-9.996240px;}
.ws1_c00130{word-spacing:-6.871920px;}
.ws2_c00130{word-spacing:0.000000px;}
.fc0_c00130{color:transparent;}
.fs7_c00130{font-size:34.560000px;}
.fs3_c00130{font-size:37.440000px;}
.fsd_c00130{font-size:40.320000px;}
.fsc_c00130{font-size:43.200000px;}
.fsb_c00130{font-size:46.080000px;}
.fs4_c00130{font-size:48.960000px;}
.fs1_c00130{font-size:51.840000px;}
.fsa_c00130{font-size:54.720000px;}
.fs9_c00130{font-size:57.600000px;}
.fs5_c00130{font-size:60.480000px;}
.fs6_c00130{font-size:63.360000px;}
.fs2_c00130{font-size:66.240000px;}
.fs8_c00130{font-size:69.120000px;}
.fs0_c00130{font-size:72.000000px;}
.y0_c00130{bottom:0.000000px;}
.y73_c00130{bottom:69.120000px;}
.y75_c00130{bottom:69.840000px;}
.y74_c00130{bottom:71.280000px;}
.y72_c00130{bottom:73.440000px;}
.y71_c00130{bottom:74.160000px;}
.y70_c00130{bottom:77.040000px;}
.y6f_c00130{bottom:113.760000px;}
.y6b_c00130{bottom:114.480000px;}
.y6e_c00130{bottom:115.200000px;}
.y6d_c00130{bottom:115.920000px;}
.y6c_c00130{bottom:116.640000px;}
.y6a_c00130{bottom:117.360000px;}
.y69_c00130{bottom:118.080000px;}
.y68_c00130{bottom:169.920000px;}
.y67_c00130{bottom:173.520000px;}
.y66_c00130{bottom:208.080000px;}
.y63_c00130{bottom:208.800000px;}
.y64_c00130{bottom:209.520000px;}
.y65_c00130{bottom:211.680000px;}
.y62_c00130{bottom:213.120000px;}
.y61_c00130{bottom:213.840000px;}
.y60_c00130{bottom:214.560000px;}
.y5e_c00130{bottom:252.000000px;}
.y5b_c00130{bottom:252.720000px;}
.y5f_c00130{bottom:254.160000px;}
.y5d_c00130{bottom:254.880000px;}
.y5c_c00130{bottom:255.600000px;}
.y5a_c00130{bottom:257.760000px;}
.y59_c00130{bottom:258.480000px;}
.y58_c00130{bottom:294.480000px;}
.y54_c00130{bottom:295.200000px;}
.y55_c00130{bottom:295.920000px;}
.y57_c00130{bottom:296.640000px;}
.y51_c00130{bottom:298.080000px;}
.y56_c00130{bottom:298.800000px;}
.y52_c00130{bottom:299.520000px;}
.y53_c00130{bottom:300.240000px;}
.y4f_c00130{bottom:337.680000px;}
.y50_c00130{bottom:338.400000px;}
.y4c_c00130{bottom:339.120000px;}
.y49_c00130{bottom:339.840000px;}
.y4b_c00130{bottom:340.560000px;}
.y4d_c00130{bottom:341.280000px;}
.y4e_c00130{bottom:342.000000px;}
.y4a_c00130{bottom:342.720000px;}
.y48_c00130{bottom:380.160000px;}
.y45_c00130{bottom:383.040000px;}
.y47_c00130{bottom:383.760000px;}
.y46_c00130{bottom:384.480000px;}
.y44_c00130{bottom:385.200000px;}
.y42_c00130{bottom:436.320000px;}
.y43_c00130{bottom:437.040000px;}
.y41_c00130{bottom:477.360000px;}
.y40_c00130{bottom:478.080000px;}
.y3f_c00130{bottom:479.520000px;}
.y3e_c00130{bottom:480.240000px;}
.y3d_c00130{bottom:480.960000px;}
.y3c_c00130{bottom:481.680000px;}
.y38_c00130{bottom:520.560000px;}
.y3b_c00130{bottom:521.280000px;}
.y39_c00130{bottom:523.440000px;}
.y3a_c00130{bottom:524.160000px;}
.y37_c00130{bottom:563.760000px;}
.y36_c00130{bottom:565.920000px;}
.y35_c00130{bottom:566.640000px;}
.y34_c00130{bottom:606.240000px;}
.y33_c00130{bottom:606.960000px;}
.y32_c00130{bottom:609.120000px;}
.y30_c00130{bottom:648.720000px;}
.y2e_c00130{bottom:649.440000px;}
.y2d_c00130{bottom:650.880000px;}
.y31_c00130{bottom:651.600000px;}
.y2f_c00130{bottom:652.320000px;}
.y2a_c00130{bottom:691.920000px;}
.y29_c00130{bottom:694.080000px;}
.y2b_c00130{bottom:694.800000px;}
.y2c_c00130{bottom:695.520000px;}
.y28_c00130{bottom:743.760000px;}
.y27_c00130{bottom:746.640000px;}
.y23_c00130{bottom:786.240000px;}
.y24_c00130{bottom:786.960000px;}
.y25_c00130{bottom:790.560000px;}
.y26_c00130{bottom:792.000000px;}
.y1c_c00130{bottom:828.720000px;}
.y20_c00130{bottom:830.880000px;}
.y1d_c00130{bottom:832.320000px;}
.y1e_c00130{bottom:833.040000px;}
.y1f_c00130{bottom:833.760000px;}
.y21_c00130{bottom:834.480000px;}
.y22_c00130{bottom:835.200000px;}
.y15_c00130{bottom:871.200000px;}
.y17_c00130{bottom:873.360000px;}
.y16_c00130{bottom:874.800000px;}
.y19_c00130{bottom:876.240000px;}
.y18_c00130{bottom:876.960000px;}
.y1a_c00130{bottom:877.680000px;}
.y1b_c00130{bottom:879.120000px;}
.yf_c00130{bottom:915.840000px;}
.y11_c00130{bottom:916.560000px;}
.y10_c00130{bottom:918.720000px;}
.y12_c00130{bottom:919.440000px;}
.y14_c00130{bottom:920.160000px;}
.y13_c00130{bottom:920.880000px;}
.ya_c00130{bottom:967.680000px;}
.y9_c00130{bottom:969.840000px;}
.yb_c00130{bottom:971.280000px;}
.yc_c00130{bottom:972.000000px;}
.yd_c00130{bottom:973.440000px;}
.ye_c00130{bottom:974.160000px;}
.y3_c00130{bottom:1011.600000px;}
.y5_c00130{bottom:1012.320000px;}
.y2_c00130{bottom:1013.040000px;}
.y4_c00130{bottom:1014.480000px;}
.y8_c00130{bottom:1015.200000px;}
.y6_c00130{bottom:1016.640000px;}
.y7_c00130{bottom:1017.360000px;}
.y1_c00130{bottom:1099.440000px;}
.h9_c00130{height:31.100625px;}
.h5_c00130{height:33.692344px;}
.h10_c00130{height:36.284062px;}
.hf_c00130{height:38.875781px;}
.he_c00130{height:41.467500px;}
.h6_c00130{height:44.059219px;}
.h3_c00130{height:46.650937px;}
.hc_c00130{height:49.242656px;}
.hd_c00130{height:49.530938px;}
.hb_c00130{height:51.834375px;}
.h7_c00130{height:54.426094px;}
.h8_c00130{height:57.017812px;}
.h4_c00130{height:59.609531px;}
.ha_c00130{height:62.201250px;}
.h2_c00130{height:64.792969px;}
.h0_c00130{height:1153.440000px;}
.h1_c00130{height:1153.500000px;}
.w1_c00130{width:786.000000px;}
.w0_c00130{width:786.240000px;}
.x0_c00130{left:0.000000px;}
.x33_c00130{left:63.360000px;}
.x2_c00130{left:65.520000px;}
.x54_c00130{left:66.960000px;}
.xc_c00130{left:97.200000px;}
.x3_c00130{left:108.000000px;}
.x3f_c00130{left:118.080000px;}
.x27_c00130{left:127.440000px;}
.xd_c00130{left:128.880000px;}
.x45_c00130{left:139.680000px;}
.x20_c00130{left:149.040000px;}
.x2b_c00130{left:159.840000px;}
.x17_c00130{left:170.640000px;}
.x40_c00130{left:172.080000px;}
.x38_c00130{left:181.440000px;}
.x4_c00130{left:182.880000px;}
.x21_c00130{left:192.960000px;}
.x50_c00130{left:201.600000px;}
.xe_c00130{left:203.040000px;}
.x5_c00130{left:213.840000px;}
.x28_c00130{left:224.640000px;}
.x36_c00130{left:236.880000px;}
.x18_c00130{left:246.240000px;}
.x2c_c00130{left:257.040000px;}
.x4c_c00130{left:266.400000px;}
.xf_c00130{left:267.840000px;}
.x51_c00130{left:277.200000px;}
.x19_c00130{left:278.640000px;}
.x2d_c00130{left:288.720000px;}
.x10_c00130{left:298.080000px;}
.x22_c00130{left:300.240000px;}
.x46_c00130{left:309.600000px;}
.x6_c00130{left:311.040000px;}
.x29_c00130{left:321.840000px;}
.x52_c00130{left:331.200000px;}
.x41_c00130{left:342.000000px;}
.x11_c00130{left:343.440000px;}
.x3c_c00130{left:354.240000px;}
.x1d_c00130{left:364.320000px;}
.x4a_c00130{left:374.400000px;}
.x12_c00130{left:375.840000px;}
.x4d_c00130{left:386.640000px;}
.x42_c00130{left:396.720000px;}
.x34_c00130{left:408.240000px;}
.x23_c00130{left:417.600000px;}
.x1a_c00130{left:419.040000px;}
.x2e_c00130{left:429.840000px;}
.x2a_c00130{left:440.640000px;}
.x47_c00130{left:451.440000px;}
.x7_c00130{left:452.880000px;}
.x13_c00130{left:462.240000px;}
.x4e_c00130{left:472.320000px;}
.x24_c00130{left:483.840000px;}
.x2f_c00130{left:494.640000px;}
.x1b_c00130{left:505.440000px;}
.x14_c00130{left:516.960000px;}
.x37_c00130{left:527.040000px;}
.x39_c00130{left:528.480000px;}
.x30_c00130{left:538.560000px;}
.x8_c00130{left:540.000000px;}
.x15_c00130{left:549.360000px;}
.x48_c00130{left:560.160000px;}
.x3a_c00130{left:570.960000px;}
.x9_c00130{left:572.400000px;}
.x4f_c00130{left:581.040000px;}
.x16_c00130{left:582.480000px;}
.x1c_c00130{left:593.280000px;}
.x3b_c00130{left:604.080000px;}
.x43_c00130{left:613.440000px;}
.xa_c00130{left:614.880000px;}
.x3d_c00130{left:624.960000px;}
.x25_c00130{left:626.400000px;}
.x35_c00130{left:635.760000px;}
.x1e_c00130{left:637.200000px;}
.xb_c00130{left:648.000000px;}
.x3e_c00130{left:657.360000px;}
.x26_c00130{left:658.800000px;}
.x1_c00130{left:662.400000px;}
.x49_c00130{left:668.160000px;}
.x31_c00130{left:669.600000px;}
.x4b_c00130{left:679.680000px;}
.x44_c00130{left:690.480000px;}
.x1f_c00130{left:691.920000px;}
.x32_c00130{left:702.000000px;}
.x53_c00130{left:713.520000px;}
@media print{
.v0_c00130{vertical-align:0.000000pt;}
.v1_c00130{vertical-align:2.560000pt;}
.ls0_c00130{letter-spacing:0.000000pt;}
.ws0_c00130{word-spacing:-8.885547pt;}
.ws1_c00130{word-spacing:-6.108373pt;}
.ws2_c00130{word-spacing:0.000000pt;}
.fs7_c00130{font-size:30.720000pt;}
.fs3_c00130{font-size:33.280000pt;}
.fsd_c00130{font-size:35.840000pt;}
.fsc_c00130{font-size:38.400000pt;}
.fsb_c00130{font-size:40.960000pt;}
.fs4_c00130{font-size:43.520000pt;}
.fs1_c00130{font-size:46.080000pt;}
.fsa_c00130{font-size:48.640000pt;}
.fs9_c00130{font-size:51.200000pt;}
.fs5_c00130{font-size:53.760000pt;}
.fs6_c00130{font-size:56.320000pt;}
.fs2_c00130{font-size:58.880000pt;}
.fs8_c00130{font-size:61.440000pt;}
.fs0_c00130{font-size:64.000000pt;}
.y0_c00130{bottom:0.000000pt;}
.y73_c00130{bottom:61.440000pt;}
.y75_c00130{bottom:62.080000pt;}
.y74_c00130{bottom:63.360000pt;}
.y72_c00130{bottom:65.280000pt;}
.y71_c00130{bottom:65.920000pt;}
.y70_c00130{bottom:68.480000pt;}
.y6f_c00130{bottom:101.120000pt;}
.y6b_c00130{bottom:101.760000pt;}
.y6e_c00130{bottom:102.400000pt;}
.y6d_c00130{bottom:103.040000pt;}
.y6c_c00130{bottom:103.680000pt;}
.y6a_c00130{bottom:104.320000pt;}
.y69_c00130{bottom:104.960000pt;}
.y68_c00130{bottom:151.040000pt;}
.y67_c00130{bottom:154.240000pt;}
.y66_c00130{bottom:184.960000pt;}
.y63_c00130{bottom:185.600000pt;}
.y64_c00130{bottom:186.240000pt;}
.y65_c00130{bottom:188.160000pt;}
.y62_c00130{bottom:189.440000pt;}
.y61_c00130{bottom:190.080000pt;}
.y60_c00130{bottom:190.720000pt;}
.y5e_c00130{bottom:224.000000pt;}
.y5b_c00130{bottom:224.640000pt;}
.y5f_c00130{bottom:225.920000pt;}
.y5d_c00130{bottom:226.560000pt;}
.y5c_c00130{bottom:227.200000pt;}
.y5a_c00130{bottom:229.120000pt;}
.y59_c00130{bottom:229.760000pt;}
.y58_c00130{bottom:261.760000pt;}
.y54_c00130{bottom:262.400000pt;}
.y55_c00130{bottom:263.040000pt;}
.y57_c00130{bottom:263.680000pt;}
.y51_c00130{bottom:264.960000pt;}
.y56_c00130{bottom:265.600000pt;}
.y52_c00130{bottom:266.240000pt;}
.y53_c00130{bottom:266.880000pt;}
.y4f_c00130{bottom:300.160000pt;}
.y50_c00130{bottom:300.800000pt;}
.y4c_c00130{bottom:301.440000pt;}
.y49_c00130{bottom:302.080000pt;}
.y4b_c00130{bottom:302.720000pt;}
.y4d_c00130{bottom:303.360000pt;}
.y4e_c00130{bottom:304.000000pt;}
.y4a_c00130{bottom:304.640000pt;}
.y48_c00130{bottom:337.920000pt;}
.y45_c00130{bottom:340.480000pt;}
.y47_c00130{bottom:341.120000pt;}
.y46_c00130{bottom:341.760000pt;}
.y44_c00130{bottom:342.400000pt;}
.y42_c00130{bottom:387.840000pt;}
.y43_c00130{bottom:388.480000pt;}
.y41_c00130{bottom:424.320000pt;}
.y40_c00130{bottom:424.960000pt;}
.y3f_c00130{bottom:426.240000pt;}
.y3e_c00130{bottom:426.880000pt;}
.y3d_c00130{bottom:427.520000pt;}
.y3c_c00130{bottom:428.160000pt;}
.y38_c00130{bottom:462.720000pt;}
.y3b_c00130{bottom:463.360000pt;}
.y39_c00130{bottom:465.280000pt;}
.y3a_c00130{bottom:465.920000pt;}
.y37_c00130{bottom:501.120000pt;}
.y36_c00130{bottom:503.040000pt;}
.y35_c00130{bottom:503.680000pt;}
.y34_c00130{bottom:538.880000pt;}
.y33_c00130{bottom:539.520000pt;}
.y32_c00130{bottom:541.440000pt;}
.y30_c00130{bottom:576.640000pt;}
.y2e_c00130{bottom:577.280000pt;}
.y2d_c00130{bottom:578.560000pt;}
.y31_c00130{bottom:579.200000pt;}
.y2f_c00130{bottom:579.840000pt;}
.y2a_c00130{bottom:615.040000pt;}
.y29_c00130{bottom:616.960000pt;}
.y2b_c00130{bottom:617.600000pt;}
.y2c_c00130{bottom:618.240000pt;}
.y28_c00130{bottom:661.120000pt;}
.y27_c00130{bottom:663.680000pt;}
.y23_c00130{bottom:698.880000pt;}
.y24_c00130{bottom:699.520000pt;}
.y25_c00130{bottom:702.720000pt;}
.y26_c00130{bottom:704.000000pt;}
.y1c_c00130{bottom:736.640000pt;}
.y20_c00130{bottom:738.560000pt;}
.y1d_c00130{bottom:739.840000pt;}
.y1e_c00130{bottom:740.480000pt;}
.y1f_c00130{bottom:741.120000pt;}
.y21_c00130{bottom:741.760000pt;}
.y22_c00130{bottom:742.400000pt;}
.y15_c00130{bottom:774.400000pt;}
.y17_c00130{bottom:776.320000pt;}
.y16_c00130{bottom:777.600000pt;}
.y19_c00130{bottom:778.880000pt;}
.y18_c00130{bottom:779.520000pt;}
.y1a_c00130{bottom:780.160000pt;}
.y1b_c00130{bottom:781.440000pt;}
.yf_c00130{bottom:814.080000pt;}
.y11_c00130{bottom:814.720000pt;}
.y10_c00130{bottom:816.640000pt;}
.y12_c00130{bottom:817.280000pt;}
.y14_c00130{bottom:817.920000pt;}
.y13_c00130{bottom:818.560000pt;}
.ya_c00130{bottom:860.160000pt;}
.y9_c00130{bottom:862.080000pt;}
.yb_c00130{bottom:863.360000pt;}
.yc_c00130{bottom:864.000000pt;}
.yd_c00130{bottom:865.280000pt;}
.ye_c00130{bottom:865.920000pt;}
.y3_c00130{bottom:899.200000pt;}
.y5_c00130{bottom:899.840000pt;}
.y2_c00130{bottom:900.480000pt;}
.y4_c00130{bottom:901.760000pt;}
.y8_c00130{bottom:902.400000pt;}
.y6_c00130{bottom:903.680000pt;}
.y7_c00130{bottom:904.320000pt;}
.y1_c00130{bottom:977.280000pt;}
.h9_c00130{height:27.645000pt;}
.h5_c00130{height:29.948750pt;}
.h10_c00130{height:32.252500pt;}
.hf_c00130{height:34.556250pt;}
.he_c00130{height:36.860000pt;}
.h6_c00130{height:39.163750pt;}
.h3_c00130{height:41.467500pt;}
.hc_c00130{height:43.771250pt;}
.hd_c00130{height:44.027500pt;}
.hb_c00130{height:46.075000pt;}
.h7_c00130{height:48.378750pt;}
.h8_c00130{height:50.682500pt;}
.h4_c00130{height:52.986250pt;}
.ha_c00130{height:55.290000pt;}
.h2_c00130{height:57.593750pt;}
.h0_c00130{height:1025.280000pt;}
.h1_c00130{height:1025.333333pt;}
.w1_c00130{width:698.666667pt;}
.w0_c00130{width:698.880000pt;}
.x0_c00130{left:0.000000pt;}
.x33_c00130{left:56.320000pt;}
.x2_c00130{left:58.240000pt;}
.x54_c00130{left:59.520000pt;}
.xc_c00130{left:86.400000pt;}
.x3_c00130{left:96.000000pt;}
.x3f_c00130{left:104.960000pt;}
.x27_c00130{left:113.280000pt;}
.xd_c00130{left:114.560000pt;}
.x45_c00130{left:124.160000pt;}
.x20_c00130{left:132.480000pt;}
.x2b_c00130{left:142.080000pt;}
.x17_c00130{left:151.680000pt;}
.x40_c00130{left:152.960000pt;}
.x38_c00130{left:161.280000pt;}
.x4_c00130{left:162.560000pt;}
.x21_c00130{left:171.520000pt;}
.x50_c00130{left:179.200000pt;}
.xe_c00130{left:180.480000pt;}
.x5_c00130{left:190.080000pt;}
.x28_c00130{left:199.680000pt;}
.x36_c00130{left:210.560000pt;}
.x18_c00130{left:218.880000pt;}
.x2c_c00130{left:228.480000pt;}
.x4c_c00130{left:236.800000pt;}
.xf_c00130{left:238.080000pt;}
.x51_c00130{left:246.400000pt;}
.x19_c00130{left:247.680000pt;}
.x2d_c00130{left:256.640000pt;}
.x10_c00130{left:264.960000pt;}
.x22_c00130{left:266.880000pt;}
.x46_c00130{left:275.200000pt;}
.x6_c00130{left:276.480000pt;}
.x29_c00130{left:286.080000pt;}
.x52_c00130{left:294.400000pt;}
.x41_c00130{left:304.000000pt;}
.x11_c00130{left:305.280000pt;}
.x3c_c00130{left:314.880000pt;}
.x1d_c00130{left:323.840000pt;}
.x4a_c00130{left:332.800000pt;}
.x12_c00130{left:334.080000pt;}
.x4d_c00130{left:343.680000pt;}
.x42_c00130{left:352.640000pt;}
.x34_c00130{left:362.880000pt;}
.x23_c00130{left:371.200000pt;}
.x1a_c00130{left:372.480000pt;}
.x2e_c00130{left:382.080000pt;}
.x2a_c00130{left:391.680000pt;}
.x47_c00130{left:401.280000pt;}
.x7_c00130{left:402.560000pt;}
.x13_c00130{left:410.880000pt;}
.x4e_c00130{left:419.840000pt;}
.x24_c00130{left:430.080000pt;}
.x2f_c00130{left:439.680000pt;}
.x1b_c00130{left:449.280000pt;}
.x14_c00130{left:459.520000pt;}
.x37_c00130{left:468.480000pt;}
.x39_c00130{left:469.760000pt;}
.x30_c00130{left:478.720000pt;}
.x8_c00130{left:480.000000pt;}
.x15_c00130{left:488.320000pt;}
.x48_c00130{left:497.920000pt;}
.x3a_c00130{left:507.520000pt;}
.x9_c00130{left:508.800000pt;}
.x4f_c00130{left:516.480000pt;}
.x16_c00130{left:517.760000pt;}
.x1c_c00130{left:527.360000pt;}
.x3b_c00130{left:536.960000pt;}
.x43_c00130{left:545.280000pt;}
.xa_c00130{left:546.560000pt;}
.x3d_c00130{left:555.520000pt;}
.x25_c00130{left:556.800000pt;}
.x35_c00130{left:565.120000pt;}
.x1e_c00130{left:566.400000pt;}
.xb_c00130{left:576.000000pt;}
.x3e_c00130{left:584.320000pt;}
.x26_c00130{left:585.600000pt;}
.x1_c00130{left:588.800000pt;}
.x49_c00130{left:593.920000pt;}
.x31_c00130{left:595.200000pt;}
.x4b_c00130{left:604.160000pt;}
.x44_c00130{left:613.760000pt;}
.x1f_c00130{left:615.040000pt;}
.x32_c00130{left:624.000000pt;}
.x53_c00130{left:634.240000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_009ea0347944b9915b53d4ae.woff2')format("woff");}.ff1_c00131{font-family:ff1_c00131;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m37_c00131{transform:matrix(0.187350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187350,0.000000,0.000000,0.250000,0,0);}
.m31_c00131{transform:matrix(0.206075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206075,0.000000,0.000000,0.250000,0,0);}
.m51_c00131{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00131{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);}
.m61_c00131{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00131{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m53_c00131{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m49_c00131{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m36_c00131{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m26_c00131{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00131{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m40_c00131{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00131{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m13_c00131{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m44_c00131{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00131{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m34_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);}
.m29_c00131{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m15_c00131{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00131{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00131{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m3_c00131{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m0_c00131{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m9_c00131{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m23_c00131{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);}
.m35_c00131{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00131{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m21_c00131{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);}
.mf_c00131{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00131{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m4_c00131{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1_c00131{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);}
.m1a_c00131{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.md_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);}
.m60_c00131{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m27_c00131{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);}
.m39_c00131{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m16_c00131{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);}
.m20_c00131{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);}
.m41_c00131{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m22_c00131{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m14_c00131{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);}
.m3a_c00131{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m8_c00131{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);}
.m1c_c00131{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m19_c00131{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);}
.m10_c00131{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00131{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m25_c00131{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00131{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);}
.mb_c00131{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m38_c00131{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_c00131{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00131{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);}
.m6_c00131{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00131{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00131{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00131{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);}
.m30_c00131{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m46_c00131{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m42_c00131{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);}
.m59_c00131{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m58_c00131{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00131{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m7_c00131{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m55_c00131{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);}
.m18_c00131{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);}
.m54_c00131{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00131{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m47_c00131{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);}
.mc_c00131{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.me_c00131{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m57_c00131{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m17_c00131{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00131{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);}
.m56_c00131{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m2_c00131{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m50_c00131{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00131{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);}
.m45_c00131{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);}
.m5e_c00131{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00131{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m43_c00131{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m11_c00131{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00131{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);}
.m52_c00131{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00131{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);}
.m5_c00131{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00131{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.ma_c00131{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m33_c00131{transform:matrix(0.762500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.762500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.762500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00131{transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);}
.m32_c00131{transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);}
.m48_c00131{transform:matrix(0.872500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.872500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.872500,0.000000,0.000000,0.250000,0,0);}
.m28_c00131{transform:matrix(0.900000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.900000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.900000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00131{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.m24_c00131{transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00131{transform:matrix(1.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.715000,0.000000,0.000000,0.250000,0,0);}
.v2_c00131{vertical-align:-8.640000px;}
.v1_c00131{vertical-align:-2.880000px;}
.v0_c00131{vertical-align:0.000000px;}
.ls0_c00131{letter-spacing:0.000000px;}
.sc__c00131{text-shadow:none;}
.sc0_c00131{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00131{-webkit-text-stroke:0px transparent;}
.sc0_c00131{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00131{word-spacing:-2.234400px;}
.ws2_c00131{word-spacing:0.000000px;}
.ws0_c00131{word-spacing:42.043440px;}
.fc0_c00131{color:transparent;}
.fsc_c00131{font-size:11.520000px;}
.fsf_c00131{font-size:14.400000px;}
.fsd_c00131{font-size:17.280000px;}
.fs11_c00131{font-size:20.160000px;}
.fs10_c00131{font-size:23.040000px;}
.fs13_c00131{font-size:25.920000px;}
.fs6_c00131{font-size:34.560000px;}
.fs3_c00131{font-size:37.440000px;}
.fsa_c00131{font-size:40.320000px;}
.fsb_c00131{font-size:43.200000px;}
.fs7_c00131{font-size:46.080000px;}
.fs1_c00131{font-size:48.960000px;}
.fs2_c00131{font-size:51.840000px;}
.fs8_c00131{font-size:54.720000px;}
.fs5_c00131{font-size:57.600000px;}
.fs4_c00131{font-size:60.480000px;}
.fs12_c00131{font-size:63.360000px;}
.fs9_c00131{font-size:66.240000px;}
.fse_c00131{font-size:69.120000px;}
.fs14_c00131{font-size:72.000000px;}
.fs0_c00131{font-size:74.880000px;}
.fs15_c00131{font-size:77.760000px;}
.y0_c00131{bottom:0.000000px;}
.y7f_c00131{bottom:65.520000px;}
.y7e_c00131{bottom:66.240000px;}
.y7c_c00131{bottom:68.400000px;}
.y7b_c00131{bottom:69.120000px;}
.y7d_c00131{bottom:69.840000px;}
.y7a_c00131{bottom:73.440000px;}
.y79_c00131{bottom:74.880000px;}
.y78_c00131{bottom:107.280000px;}
.y77_c00131{bottom:110.160000px;}
.y75_c00131{bottom:110.880000px;}
.y76_c00131{bottom:112.320000px;}
.y74_c00131{bottom:113.040000px;}
.y73_c00131{bottom:114.480000px;}
.y72_c00131{bottom:115.200000px;}
.y70_c00131{bottom:151.920000px;}
.y6e_c00131{bottom:154.080000px;}
.y71_c00131{bottom:154.800000px;}
.y6f_c00131{bottom:155.520000px;}
.y6d_c00131{bottom:156.960000px;}
.y6b_c00131{bottom:196.560000px;}
.y6c_c00131{bottom:197.280000px;}
.y6a_c00131{bottom:198.720000px;}
.y69_c00131{bottom:199.440000px;}
.y65_c00131{bottom:248.400000px;}
.y67_c00131{bottom:251.280000px;}
.y68_c00131{bottom:252.000000px;}
.y66_c00131{bottom:252.720000px;}
.y64_c00131{bottom:253.440000px;}
.y63_c00131{bottom:254.880000px;}
.y62_c00131{bottom:290.880000px;}
.y5d_c00131{bottom:292.320000px;}
.y5f_c00131{bottom:293.040000px;}
.y60_c00131{bottom:294.480000px;}
.y61_c00131{bottom:295.200000px;}
.y5e_c00131{bottom:295.920000px;}
.y5c_c00131{bottom:297.360000px;}
.y5b_c00131{bottom:334.080000px;}
.y56_c00131{bottom:334.800000px;}
.y5a_c00131{bottom:336.960000px;}
.y59_c00131{bottom:337.680000px;}
.y58_c00131{bottom:338.400000px;}
.y57_c00131{bottom:339.120000px;}
.y53_c00131{bottom:376.560000px;}
.y52_c00131{bottom:378.000000px;}
.y54_c00131{bottom:380.160000px;}
.y51_c00131{bottom:380.880000px;}
.y50_c00131{bottom:381.600000px;}
.y55_c00131{bottom:382.320000px;}
.y4f_c00131{bottom:419.760000px;}
.y4d_c00131{bottom:421.200000px;}
.y4a_c00131{bottom:421.920000px;}
.y4e_c00131{bottom:422.640000px;}
.y4b_c00131{bottom:423.360000px;}
.y49_c00131{bottom:424.080000px;}
.y4c_c00131{bottom:424.800000px;}
.y46_c00131{bottom:462.960000px;}
.y47_c00131{bottom:463.680000px;}
.y42_c00131{bottom:464.400000px;}
.y48_c00131{bottom:465.120000px;}
.y44_c00131{bottom:465.840000px;}
.y43_c00131{bottom:466.560000px;}
.y45_c00131{bottom:467.280000px;}
.y3c_c00131{bottom:506.160000px;}
.y41_c00131{bottom:507.600000px;}
.y3f_c00131{bottom:508.320000px;}
.y3d_c00131{bottom:509.040000px;}
.y3e_c00131{bottom:509.760000px;}
.y40_c00131{bottom:510.480000px;}
.y3b_c00131{bottom:549.360000px;}
.y39_c00131{bottom:550.080000px;}
.y3a_c00131{bottom:551.520000px;}
.y38_c00131{bottom:552.240000px;}
.y36_c00131{bottom:613.440000px;}
.y2a_c00131{bottom:614.160000px;}
.y2c_c00131{bottom:615.600000px;}
.y2b_c00131{bottom:617.760000px;}
.y35_c00131{bottom:619.200000px;}
.y37_c00131{bottom:621.360000px;}
.y29_c00131{bottom:667.440000px;}
.y27_c00131{bottom:668.880000px;}
.y28_c00131{bottom:672.480000px;}
.y23_c00131{bottom:719.280000px;}
.y31_c00131{bottom:720.720000px;}
.y32_c00131{bottom:721.440000px;}
.y26_c00131{bottom:722.160000px;}
.y25_c00131{bottom:722.880000px;}
.y33_c00131{bottom:723.600000px;}
.y24_c00131{bottom:725.040000px;}
.y30_c00131{bottom:726.480000px;}
.y34_c00131{bottom:728.640000px;}
.y20_c00131{bottom:774.000000px;}
.y2f_c00131{bottom:774.720000px;}
.y22_c00131{bottom:775.440000px;}
.y21_c00131{bottom:778.320000px;}
.y2e_c00131{bottom:780.480000px;}
.y1e_c00131{bottom:828.000000px;}
.y1f_c00131{bottom:828.720000px;}
.y1c_c00131{bottom:830.160000px;}
.y1d_c00131{bottom:832.320000px;}
.y2d_c00131{bottom:833.760000px;}
.y18_c00131{bottom:879.120000px;}
.y19_c00131{bottom:879.840000px;}
.y17_c00131{bottom:881.280000px;}
.y1b_c00131{bottom:883.440000px;}
.y1a_c00131{bottom:884.160000px;}
.y11_c00131{bottom:920.880000px;}
.y14_c00131{bottom:924.480000px;}
.y12_c00131{bottom:925.200000px;}
.y13_c00131{bottom:926.640000px;}
.y16_c00131{bottom:928.080000px;}
.y15_c00131{bottom:928.800000px;}
.yb_c00131{bottom:966.240000px;}
.yd_c00131{bottom:968.400000px;}
.yc_c00131{bottom:969.120000px;}
.ye_c00131{bottom:969.840000px;}
.y10_c00131{bottom:970.560000px;}
.yf_c00131{bottom:971.280000px;}
.y2_c00131{bottom:1006.560000px;}
.y4_c00131{bottom:1008.000000px;}
.y5_c00131{bottom:1008.720000px;}
.y3_c00131{bottom:1010.160000px;}
.y8_c00131{bottom:1010.880000px;}
.y6_c00131{bottom:1012.320000px;}
.y9_c00131{bottom:1013.040000px;}
.y7_c00131{bottom:1013.760000px;}
.ya_c00131{bottom:1015.200000px;}
.y1_c00131{bottom:1098.720000px;}
.he_c00131{height:10.366875px;}
.h11_c00131{height:12.958594px;}
.hf_c00131{height:15.550313px;}
.h13_c00131{height:18.142031px;}
.h12_c00131{height:20.733750px;}
.h16_c00131{height:23.325469px;}
.h8_c00131{height:31.100625px;}
.h5_c00131{height:33.692344px;}
.hc_c00131{height:36.284062px;}
.hd_c00131{height:38.875781px;}
.h9_c00131{height:41.467500px;}
.h3_c00131{height:44.059219px;}
.h4_c00131{height:46.650937px;}
.ha_c00131{height:49.242656px;}
.h7_c00131{height:51.834375px;}
.h6_c00131{height:54.426094px;}
.h14_c00131{height:57.017812px;}
.hb_c00131{height:59.609531px;}
.h10_c00131{height:62.201250px;}
.h15_c00131{height:64.504687px;}
.h17_c00131{height:64.792969px;}
.h2_c00131{height:67.384687px;}
.h18_c00131{height:69.976406px;}
.h1_c00131{height:1151.250000px;}
.h0_c00131{height:1151.280000px;}
.w1_c00131{width:783.000000px;}
.w0_c00131{width:783.360000px;}
.x0_c00131{left:0.000000px;}
.x2_c00131{left:60.480000px;}
.x22_c00131{left:61.920000px;}
.x3d_c00131{left:92.160000px;}
.x53_c00131{left:93.600000px;}
.x3_c00131{left:103.680000px;}
.x1e_c00131{left:123.120000px;}
.x4f_c00131{left:124.560000px;}
.x1a_c00131{left:133.920000px;}
.x2f_c00131{left:144.000000px;}
.x1f_c00131{left:145.440000px;}
.x23_c00131{left:146.880000px;}
.x4_c00131{left:156.240000px;}
.x21_c00131{left:167.040000px;}
.x43_c00131{left:177.840000px;}
.x17_c00131{left:187.920000px;}
.xd_c00131{left:198.720000px;}
.x1b_c00131{left:208.800000px;}
.x3e_c00131{left:220.320000px;}
.x20_c00131{left:229.680000px;}
.x49_c00131{left:231.120000px;}
.x36_c00131{left:241.920000px;}
.xe_c00131{left:252.000000px;}
.x2c_c00131{left:262.800000px;}
.x37_c00131{left:275.040000px;}
.x5_c00131{left:284.400000px;}
.x3f_c00131{left:296.640000px;}
.xf_c00131{left:305.280000px;}
.x1c_c00131{left:307.440000px;}
.x40_c00131{left:318.240000px;}
.x30_c00131{left:326.880000px;}
.x6_c00131{left:328.320000px;}
.x41_c00131{left:348.480000px;}
.x18_c00131{left:349.920000px;}
.x26_c00131{left:351.360000px;}
.x24_c00131{left:360.720000px;}
.x47_c00131{left:371.520000px;}
.x7_c00131{left:380.880000px;}
.x2d_c00131{left:382.320000px;}
.x42_c00131{left:384.480000px;}
.x10_c00131{left:391.680000px;}
.x50_c00131{left:393.840000px;}
.x38_c00131{left:403.200000px;}
.x46_c00131{left:404.640000px;}
.x31_c00131{left:414.000000px;}
.x2e_c00131{left:425.520000px;}
.x44_c00131{left:436.320000px;}
.x4b_c00131{left:437.760000px;}
.x25_c00131{left:439.200000px;}
.x48_c00131{left:441.360000px;}
.x8_c00131{left:447.120000px;}
.x11_c00131{left:457.920000px;}
.x39_c00131{left:468.720000px;}
.x1d_c00131{left:470.160000px;}
.x3a_c00131{left:490.320000px;}
.x54_c00131{left:491.760000px;}
.x9_c00131{left:501.120000px;}
.x12_c00131{left:502.560000px;}
.x19_c00131{left:512.640000px;}
.x13_c00131{left:523.440000px;}
.x51_c00131{left:526.320000px;}
.xa_c00131{left:533.520000px;}
.x4c_c00131{left:535.680000px;}
.x32_c00131{left:545.760000px;}
.x28_c00131{left:556.560000px;}
.x14_c00131{left:565.920000px;}
.x4d_c00131{left:567.360000px;}
.x33_c00131{left:578.880000px;}
.x29_c00131{left:589.680000px;}
.x27_c00131{left:599.040000px;}
.xb_c00131{left:600.480000px;}
.x15_c00131{left:609.840000px;}
.x3b_c00131{left:611.280000px;}
.x34_c00131{left:622.080000px;}
.x4e_c00131{left:632.880000px;}
.x52_c00131{left:642.240000px;}
.x1_c00131{left:652.320000px;}
.x16_c00131{left:654.480000px;}
.x45_c00131{left:665.280000px;}
.x2b_c00131{left:667.440000px;}
.x35_c00131{left:675.360000px;}
.x2a_c00131{left:678.240000px;}
.x3c_c00131{left:686.880000px;}
.x4a_c00131{left:688.320000px;}
.xc_c00131{left:697.680000px;}
@media print{
.v2_c00131{vertical-align:-7.680000pt;}
.v1_c00131{vertical-align:-2.560000pt;}
.v0_c00131{vertical-align:0.000000pt;}
.ls0_c00131{letter-spacing:0.000000pt;}
.ws1_c00131{word-spacing:-1.986133pt;}
.ws2_c00131{word-spacing:0.000000pt;}
.ws0_c00131{word-spacing:37.371947pt;}
.fsc_c00131{font-size:10.240000pt;}
.fsf_c00131{font-size:12.800000pt;}
.fsd_c00131{font-size:15.360000pt;}
.fs11_c00131{font-size:17.920000pt;}
.fs10_c00131{font-size:20.480000pt;}
.fs13_c00131{font-size:23.040000pt;}
.fs6_c00131{font-size:30.720000pt;}
.fs3_c00131{font-size:33.280000pt;}
.fsa_c00131{font-size:35.840000pt;}
.fsb_c00131{font-size:38.400000pt;}
.fs7_c00131{font-size:40.960000pt;}
.fs1_c00131{font-size:43.520000pt;}
.fs2_c00131{font-size:46.080000pt;}
.fs8_c00131{font-size:48.640000pt;}
.fs5_c00131{font-size:51.200000pt;}
.fs4_c00131{font-size:53.760000pt;}
.fs12_c00131{font-size:56.320000pt;}
.fs9_c00131{font-size:58.880000pt;}
.fse_c00131{font-size:61.440000pt;}
.fs14_c00131{font-size:64.000000pt;}
.fs0_c00131{font-size:66.560000pt;}
.fs15_c00131{font-size:69.120000pt;}
.y0_c00131{bottom:0.000000pt;}
.y7f_c00131{bottom:58.240000pt;}
.y7e_c00131{bottom:58.880000pt;}
.y7c_c00131{bottom:60.800000pt;}
.y7b_c00131{bottom:61.440000pt;}
.y7d_c00131{bottom:62.080000pt;}
.y7a_c00131{bottom:65.280000pt;}
.y79_c00131{bottom:66.560000pt;}
.y78_c00131{bottom:95.360000pt;}
.y77_c00131{bottom:97.920000pt;}
.y75_c00131{bottom:98.560000pt;}
.y76_c00131{bottom:99.840000pt;}
.y74_c00131{bottom:100.480000pt;}
.y73_c00131{bottom:101.760000pt;}
.y72_c00131{bottom:102.400000pt;}
.y70_c00131{bottom:135.040000pt;}
.y6e_c00131{bottom:136.960000pt;}
.y71_c00131{bottom:137.600000pt;}
.y6f_c00131{bottom:138.240000pt;}
.y6d_c00131{bottom:139.520000pt;}
.y6b_c00131{bottom:174.720000pt;}
.y6c_c00131{bottom:175.360000pt;}
.y6a_c00131{bottom:176.640000pt;}
.y69_c00131{bottom:177.280000pt;}
.y65_c00131{bottom:220.800000pt;}
.y67_c00131{bottom:223.360000pt;}
.y68_c00131{bottom:224.000000pt;}
.y66_c00131{bottom:224.640000pt;}
.y64_c00131{bottom:225.280000pt;}
.y63_c00131{bottom:226.560000pt;}
.y62_c00131{bottom:258.560000pt;}
.y5d_c00131{bottom:259.840000pt;}
.y5f_c00131{bottom:260.480000pt;}
.y60_c00131{bottom:261.760000pt;}
.y61_c00131{bottom:262.400000pt;}
.y5e_c00131{bottom:263.040000pt;}
.y5c_c00131{bottom:264.320000pt;}
.y5b_c00131{bottom:296.960000pt;}
.y56_c00131{bottom:297.600000pt;}
.y5a_c00131{bottom:299.520000pt;}
.y59_c00131{bottom:300.160000pt;}
.y58_c00131{bottom:300.800000pt;}
.y57_c00131{bottom:301.440000pt;}
.y53_c00131{bottom:334.720000pt;}
.y52_c00131{bottom:336.000000pt;}
.y54_c00131{bottom:337.920000pt;}
.y51_c00131{bottom:338.560000pt;}
.y50_c00131{bottom:339.200000pt;}
.y55_c00131{bottom:339.840000pt;}
.y4f_c00131{bottom:373.120000pt;}
.y4d_c00131{bottom:374.400000pt;}
.y4a_c00131{bottom:375.040000pt;}
.y4e_c00131{bottom:375.680000pt;}
.y4b_c00131{bottom:376.320000pt;}
.y49_c00131{bottom:376.960000pt;}
.y4c_c00131{bottom:377.600000pt;}
.y46_c00131{bottom:411.520000pt;}
.y47_c00131{bottom:412.160000pt;}
.y42_c00131{bottom:412.800000pt;}
.y48_c00131{bottom:413.440000pt;}
.y44_c00131{bottom:414.080000pt;}
.y43_c00131{bottom:414.720000pt;}
.y45_c00131{bottom:415.360000pt;}
.y3c_c00131{bottom:449.920000pt;}
.y41_c00131{bottom:451.200000pt;}
.y3f_c00131{bottom:451.840000pt;}
.y3d_c00131{bottom:452.480000pt;}
.y3e_c00131{bottom:453.120000pt;}
.y40_c00131{bottom:453.760000pt;}
.y3b_c00131{bottom:488.320000pt;}
.y39_c00131{bottom:488.960000pt;}
.y3a_c00131{bottom:490.240000pt;}
.y38_c00131{bottom:490.880000pt;}
.y36_c00131{bottom:545.280000pt;}
.y2a_c00131{bottom:545.920000pt;}
.y2c_c00131{bottom:547.200000pt;}
.y2b_c00131{bottom:549.120000pt;}
.y35_c00131{bottom:550.400000pt;}
.y37_c00131{bottom:552.320000pt;}
.y29_c00131{bottom:593.280000pt;}
.y27_c00131{bottom:594.560000pt;}
.y28_c00131{bottom:597.760000pt;}
.y23_c00131{bottom:639.360000pt;}
.y31_c00131{bottom:640.640000pt;}
.y32_c00131{bottom:641.280000pt;}
.y26_c00131{bottom:641.920000pt;}
.y25_c00131{bottom:642.560000pt;}
.y33_c00131{bottom:643.200000pt;}
.y24_c00131{bottom:644.480000pt;}
.y30_c00131{bottom:645.760000pt;}
.y34_c00131{bottom:647.680000pt;}
.y20_c00131{bottom:688.000000pt;}
.y2f_c00131{bottom:688.640000pt;}
.y22_c00131{bottom:689.280000pt;}
.y21_c00131{bottom:691.840000pt;}
.y2e_c00131{bottom:693.760000pt;}
.y1e_c00131{bottom:736.000000pt;}
.y1f_c00131{bottom:736.640000pt;}
.y1c_c00131{bottom:737.920000pt;}
.y1d_c00131{bottom:739.840000pt;}
.y2d_c00131{bottom:741.120000pt;}
.y18_c00131{bottom:781.440000pt;}
.y19_c00131{bottom:782.080000pt;}
.y17_c00131{bottom:783.360000pt;}
.y1b_c00131{bottom:785.280000pt;}
.y1a_c00131{bottom:785.920000pt;}
.y11_c00131{bottom:818.560000pt;}
.y14_c00131{bottom:821.760000pt;}
.y12_c00131{bottom:822.400000pt;}
.y13_c00131{bottom:823.680000pt;}
.y16_c00131{bottom:824.960000pt;}
.y15_c00131{bottom:825.600000pt;}
.yb_c00131{bottom:858.880000pt;}
.yd_c00131{bottom:860.800000pt;}
.yc_c00131{bottom:861.440000pt;}
.ye_c00131{bottom:862.080000pt;}
.y10_c00131{bottom:862.720000pt;}
.yf_c00131{bottom:863.360000pt;}
.y2_c00131{bottom:894.720000pt;}
.y4_c00131{bottom:896.000000pt;}
.y5_c00131{bottom:896.640000pt;}
.y3_c00131{bottom:897.920000pt;}
.y8_c00131{bottom:898.560000pt;}
.y6_c00131{bottom:899.840000pt;}
.y9_c00131{bottom:900.480000pt;}
.y7_c00131{bottom:901.120000pt;}
.ya_c00131{bottom:902.400000pt;}
.y1_c00131{bottom:976.640000pt;}
.he_c00131{height:9.215000pt;}
.h11_c00131{height:11.518750pt;}
.hf_c00131{height:13.822500pt;}
.h13_c00131{height:16.126250pt;}
.h12_c00131{height:18.430000pt;}
.h16_c00131{height:20.733750pt;}
.h8_c00131{height:27.645000pt;}
.h5_c00131{height:29.948750pt;}
.hc_c00131{height:32.252500pt;}
.hd_c00131{height:34.556250pt;}
.h9_c00131{height:36.860000pt;}
.h3_c00131{height:39.163750pt;}
.h4_c00131{height:41.467500pt;}
.ha_c00131{height:43.771250pt;}
.h7_c00131{height:46.075000pt;}
.h6_c00131{height:48.378750pt;}
.h14_c00131{height:50.682500pt;}
.hb_c00131{height:52.986250pt;}
.h10_c00131{height:55.290000pt;}
.h15_c00131{height:57.337500pt;}
.h17_c00131{height:57.593750pt;}
.h2_c00131{height:59.897500pt;}
.h18_c00131{height:62.201250pt;}
.h1_c00131{height:1023.333333pt;}
.h0_c00131{height:1023.360000pt;}
.w1_c00131{width:696.000000pt;}
.w0_c00131{width:696.320000pt;}
.x0_c00131{left:0.000000pt;}
.x2_c00131{left:53.760000pt;}
.x22_c00131{left:55.040000pt;}
.x3d_c00131{left:81.920000pt;}
.x53_c00131{left:83.200000pt;}
.x3_c00131{left:92.160000pt;}
.x1e_c00131{left:109.440000pt;}
.x4f_c00131{left:110.720000pt;}
.x1a_c00131{left:119.040000pt;}
.x2f_c00131{left:128.000000pt;}
.x1f_c00131{left:129.280000pt;}
.x23_c00131{left:130.560000pt;}
.x4_c00131{left:138.880000pt;}
.x21_c00131{left:148.480000pt;}
.x43_c00131{left:158.080000pt;}
.x17_c00131{left:167.040000pt;}
.xd_c00131{left:176.640000pt;}
.x1b_c00131{left:185.600000pt;}
.x3e_c00131{left:195.840000pt;}
.x20_c00131{left:204.160000pt;}
.x49_c00131{left:205.440000pt;}
.x36_c00131{left:215.040000pt;}
.xe_c00131{left:224.000000pt;}
.x2c_c00131{left:233.600000pt;}
.x37_c00131{left:244.480000pt;}
.x5_c00131{left:252.800000pt;}
.x3f_c00131{left:263.680000pt;}
.xf_c00131{left:271.360000pt;}
.x1c_c00131{left:273.280000pt;}
.x40_c00131{left:282.880000pt;}
.x30_c00131{left:290.560000pt;}
.x6_c00131{left:291.840000pt;}
.x41_c00131{left:309.760000pt;}
.x18_c00131{left:311.040000pt;}
.x26_c00131{left:312.320000pt;}
.x24_c00131{left:320.640000pt;}
.x47_c00131{left:330.240000pt;}
.x7_c00131{left:338.560000pt;}
.x2d_c00131{left:339.840000pt;}
.x42_c00131{left:341.760000pt;}
.x10_c00131{left:348.160000pt;}
.x50_c00131{left:350.080000pt;}
.x38_c00131{left:358.400000pt;}
.x46_c00131{left:359.680000pt;}
.x31_c00131{left:368.000000pt;}
.x2e_c00131{left:378.240000pt;}
.x44_c00131{left:387.840000pt;}
.x4b_c00131{left:389.120000pt;}
.x25_c00131{left:390.400000pt;}
.x48_c00131{left:392.320000pt;}
.x8_c00131{left:397.440000pt;}
.x11_c00131{left:407.040000pt;}
.x39_c00131{left:416.640000pt;}
.x1d_c00131{left:417.920000pt;}
.x3a_c00131{left:435.840000pt;}
.x54_c00131{left:437.120000pt;}
.x9_c00131{left:445.440000pt;}
.x12_c00131{left:446.720000pt;}
.x19_c00131{left:455.680000pt;}
.x13_c00131{left:465.280000pt;}
.x51_c00131{left:467.840000pt;}
.xa_c00131{left:474.240000pt;}
.x4c_c00131{left:476.160000pt;}
.x32_c00131{left:485.120000pt;}
.x28_c00131{left:494.720000pt;}
.x14_c00131{left:503.040000pt;}
.x4d_c00131{left:504.320000pt;}
.x33_c00131{left:514.560000pt;}
.x29_c00131{left:524.160000pt;}
.x27_c00131{left:532.480000pt;}
.xb_c00131{left:533.760000pt;}
.x15_c00131{left:542.080000pt;}
.x3b_c00131{left:543.360000pt;}
.x34_c00131{left:552.960000pt;}
.x4e_c00131{left:562.560000pt;}
.x52_c00131{left:570.880000pt;}
.x1_c00131{left:579.840000pt;}
.x16_c00131{left:581.760000pt;}
.x45_c00131{left:591.360000pt;}
.x2b_c00131{left:593.280000pt;}
.x35_c00131{left:600.320000pt;}
.x2a_c00131{left:602.880000pt;}
.x3c_c00131{left:610.560000pt;}
.x4a_c00131{left:611.840000pt;}
.xc_c00131{left:620.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6c82b418a9fbd5d46f46496a.woff2')format("woff");}.ff1_c00132{font-family:ff1_c00132;line-height:1.109863;font-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_c00132{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m46_c00132{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m15_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);}
.m41_c00132{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00132{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);}
.m4a_c00132{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);}
.m4c_c00132{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m58_c00132{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m51_c00132{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m47_c00132{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m7_c00132{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m57_c00132{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1_c00132{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m23_c00132{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m54_c00132{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m39_c00132{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00132{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00132{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m34_c00132{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00132{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00132{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m8_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);}
.mf_c00132{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);}
.m37_c00132{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m0_c00132{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);}
.m3a_c00132{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.mb_c00132{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);}
.m5d_c00132{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m52_c00132{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m9_c00132{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m13_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);}
.m4f_c00132{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m24_c00132{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00132{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);}
.m26_c00132{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);}
.m3e_c00132{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_c00132{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m35_c00132{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);}
.m12_c00132{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.me_c00132{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);}
.m45_c00132{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);}
.m4_c00132{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m43_c00132{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m5_c00132{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);}
.md_c00132{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m22_c00132{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);}
.m44_c00132{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m56_c00132{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);}
.m16_c00132{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);}
.m32_c00132{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m31_c00132{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m25_c00132{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00132{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00132{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m59_c00132{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m21_c00132{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_c00132{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m48_c00132{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m11_c00132{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00132{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.ma_c00132{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);}
.m3_c00132{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m29_c00132{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00132{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00132{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);}
.m49_c00132{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00132{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00132{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m38_c00132{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m55_c00132{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);}
.m28_c00132{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m19_c00132{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m14_c00132{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);}
.m1c_c00132{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00132{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00132{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00132{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);}
.m2_c00132{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m36_c00132{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m30_c00132{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);}
.mc_c00132{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m18_c00132{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);}
.m33_c00132{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);}
.m40_c00132{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00132{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m53_c00132{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00132{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00132{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);}
.m50_c00132{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);}
.m5e_c00132{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m42_c00132{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);}
.m20_c00132{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m17_c00132{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00132{transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);}
.m6_c00132{transform:matrix(0.650000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.650000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.650000,0.000000,0.000000,0.250000,0,0);}
.v0_c00132{vertical-align:0.000000px;}
.v1_c00132{vertical-align:2.880000px;}
.ls0_c00132{letter-spacing:0.000000px;}
.sc__c00132{text-shadow:none;}
.sc0_c00132{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00132{-webkit-text-stroke:0px transparent;}
.sc0_c00132{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00132{word-spacing:-7.726800px;}
.ws1_c00132{word-spacing:0.000000px;}
.fc0_c00132{color:transparent;}
.fsa_c00132{font-size:34.560000px;}
.fs8_c00132{font-size:37.440000px;}
.fsd_c00132{font-size:40.320000px;}
.fse_c00132{font-size:43.200000px;}
.fs7_c00132{font-size:46.080000px;}
.fs6_c00132{font-size:48.960000px;}
.fs5_c00132{font-size:51.840000px;}
.fsc_c00132{font-size:54.720000px;}
.fs9_c00132{font-size:57.600000px;}
.fsb_c00132{font-size:60.480000px;}
.fs4_c00132{font-size:63.360000px;}
.fs3_c00132{font-size:66.240000px;}
.fs1_c00132{font-size:69.120000px;}
.fs2_c00132{font-size:72.000000px;}
.fs0_c00132{font-size:77.760000px;}
.y0_c00132{bottom:0.000000px;}
.y7c_c00132{bottom:57.600000px;}
.y7e_c00132{bottom:58.320000px;}
.y7d_c00132{bottom:59.040000px;}
.y79_c00132{bottom:59.760000px;}
.y7b_c00132{bottom:61.920000px;}
.y7a_c00132{bottom:62.640000px;}
.y75_c00132{bottom:100.080000px;}
.y73_c00132{bottom:100.800000px;}
.y78_c00132{bottom:101.520000px;}
.y77_c00132{bottom:102.240000px;}
.y76_c00132{bottom:102.960000px;}
.y74_c00132{bottom:103.680000px;}
.y72_c00132{bottom:105.120000px;}
.y71_c00132{bottom:143.280000px;}
.y6f_c00132{bottom:144.720000px;}
.y6e_c00132{bottom:145.440000px;}
.y70_c00132{bottom:146.160000px;}
.y6d_c00132{bottom:150.480000px;}
.y6c_c00132{bottom:185.760000px;}
.y6b_c00132{bottom:187.920000px;}
.y6a_c00132{bottom:188.640000px;}
.y68_c00132{bottom:189.360000px;}
.y69_c00132{bottom:190.080000px;}
.y66_c00132{bottom:228.240000px;}
.y62_c00132{bottom:230.400000px;}
.y67_c00132{bottom:231.120000px;}
.y64_c00132{bottom:231.840000px;}
.y63_c00132{bottom:232.560000px;}
.y61_c00132{bottom:233.280000px;}
.y65_c00132{bottom:236.160000px;}
.y60_c00132{bottom:270.720000px;}
.y5d_c00132{bottom:272.160000px;}
.y5f_c00132{bottom:273.600000px;}
.y5e_c00132{bottom:274.320000px;}
.y5b_c00132{bottom:275.040000px;}
.y5c_c00132{bottom:275.760000px;}
.y58_c00132{bottom:315.360000px;}
.y5a_c00132{bottom:316.800000px;}
.y59_c00132{bottom:317.520000px;}
.y57_c00132{bottom:318.240000px;}
.y55_c00132{bottom:356.400000px;}
.y56_c00132{bottom:357.120000px;}
.y53_c00132{bottom:360.000000px;}
.y54_c00132{bottom:360.720000px;}
.y52_c00132{bottom:361.440000px;}
.y51_c00132{bottom:401.040000px;}
.y50_c00132{bottom:403.200000px;}
.y4f_c00132{bottom:403.920000px;}
.y4e_c00132{bottom:404.640000px;}
.y4d_c00132{bottom:405.360000px;}
.y4c_c00132{bottom:442.080000px;}
.y4b_c00132{bottom:443.520000px;}
.y48_c00132{bottom:444.240000px;}
.y49_c00132{bottom:445.680000px;}
.y4a_c00132{bottom:446.400000px;}
.y47_c00132{bottom:447.120000px;}
.y46_c00132{bottom:485.280000px;}
.y44_c00132{bottom:486.000000px;}
.y42_c00132{bottom:486.720000px;}
.y43_c00132{bottom:488.880000px;}
.y45_c00132{bottom:489.600000px;}
.y40_c00132{bottom:530.640000px;}
.y41_c00132{bottom:531.360000px;}
.y3e_c00132{bottom:532.080000px;}
.y3f_c00132{bottom:532.800000px;}
.y3c_c00132{bottom:571.680000px;}
.y3d_c00132{bottom:572.400000px;}
.y3b_c00132{bottom:573.840000px;}
.y3a_c00132{bottom:574.560000px;}
.y37_c00132{bottom:614.880000px;}
.y38_c00132{bottom:615.600000px;}
.y36_c00132{bottom:617.040000px;}
.y39_c00132{bottom:617.760000px;}
.y35_c00132{bottom:668.880000px;}
.y30_c00132{bottom:709.920000px;}
.y31_c00132{bottom:710.640000px;}
.y34_c00132{bottom:711.360000px;}
.y32_c00132{bottom:713.520000px;}
.y33_c00132{bottom:714.240000px;}
.y2e_c00132{bottom:753.840000px;}
.y2b_c00132{bottom:754.560000px;}
.y2c_c00132{bottom:755.280000px;}
.y2d_c00132{bottom:756.000000px;}
.y2f_c00132{bottom:757.440000px;}
.y29_c00132{bottom:797.040000px;}
.y26_c00132{bottom:797.760000px;}
.y27_c00132{bottom:798.480000px;}
.y28_c00132{bottom:799.200000px;}
.y2a_c00132{bottom:800.640000px;}
.y23_c00132{bottom:838.800000px;}
.y20_c00132{bottom:839.520000px;}
.y21_c00132{bottom:840.240000px;}
.y22_c00132{bottom:840.960000px;}
.y24_c00132{bottom:841.680000px;}
.y25_c00132{bottom:843.840000px;}
.y19_c00132{bottom:879.840000px;}
.y1a_c00132{bottom:881.280000px;}
.y18_c00132{bottom:882.720000px;}
.y1c_c00132{bottom:883.440000px;}
.y1f_c00132{bottom:884.160000px;}
.y1b_c00132{bottom:884.880000px;}
.y1d_c00132{bottom:885.600000px;}
.y1e_c00132{bottom:886.320000px;}
.y11_c00132{bottom:923.040000px;}
.yf_c00132{bottom:923.760000px;}
.y14_c00132{bottom:925.200000px;}
.y12_c00132{bottom:925.920000px;}
.y10_c00132{bottom:926.640000px;}
.y13_c00132{bottom:927.360000px;}
.y15_c00132{bottom:928.080000px;}
.y16_c00132{bottom:928.800000px;}
.y17_c00132{bottom:929.520000px;}
.ya_c00132{bottom:966.960000px;}
.yb_c00132{bottom:967.680000px;}
.yc_c00132{bottom:969.120000px;}
.yd_c00132{bottom:971.280000px;}
.ye_c00132{bottom:972.000000px;}
.y2_c00132{bottom:1008.000000px;}
.y3_c00132{bottom:1009.440000px;}
.y4_c00132{bottom:1010.160000px;}
.y5_c00132{bottom:1010.880000px;}
.y7_c00132{bottom:1012.320000px;}
.y8_c00132{bottom:1013.040000px;}
.y6_c00132{bottom:1013.760000px;}
.y9_c00132{bottom:1015.920000px;}
.y1_c00132{bottom:1090.080000px;}
.hc_c00132{height:31.100625px;}
.ha_c00132{height:33.692344px;}
.hf_c00132{height:36.284062px;}
.h11_c00132{height:38.875781px;}
.h9_c00132{height:41.467500px;}
.h8_c00132{height:44.059219px;}
.h7_c00132{height:46.650937px;}
.he_c00132{height:49.242656px;}
.h10_c00132{height:49.530938px;}
.hb_c00132{height:51.834375px;}
.hd_c00132{height:54.426094px;}
.h6_c00132{height:57.017812px;}
.h5_c00132{height:59.609531px;}
.h3_c00132{height:62.201250px;}
.h4_c00132{height:64.792969px;}
.h2_c00132{height:69.976406px;}
.h0_c00132{height:1152.720000px;}
.h1_c00132{height:1152.750000px;}
.w1_c00132{width:783.750000px;}
.w0_c00132{width:784.080000px;}
.x0_c00132{left:0.000000px;}
.x36_c00132{left:57.599685px;}
.xc_c00132{left:59.040000px;}
.x42_c00132{left:60.480000px;}
.x2_c00132{left:61.920000px;}
.x59_c00132{left:64.080000px;}
.x1f_c00132{left:79.200000px;}
.x26_c00132{left:90.000000px;}
.x46_c00132{left:91.440000px;}
.x57_c00132{left:92.880000px;}
.x43_c00132{left:101.520000px;}
.x17_c00132{left:112.320000px;}
.xd_c00132{left:122.400000px;}
.x18_c00132{left:133.920000px;}
.x5a_c00132{left:135.360000px;}
.xe_c00132{left:154.080000px;}
.x37_c00132{left:165.600000px;}
.x3e_c00132{left:167.040000px;}
.x3_c00132{left:174.240000px;}
.x3c_c00132{left:176.400000px;}
.x19_c00132{left:185.760000px;}
.x39_c00132{left:187.200000px;}
.x2a_c00132{left:197.280000px;}
.xf_c00132{left:207.360000px;}
.x4f_c00132{left:208.800000px;}
.x44_c00132{left:210.960000px;}
.x20_c00132{left:218.160000px;}
.x2b_c00132{left:228.960000px;}
.x1a_c00132{left:239.760000px;}
.x52_c00132{left:241.920000px;}
.x4_c00132{left:250.560000px;}
.x5f_c00132{left:252.000000px;}
.x31_c00132{left:260.640000px;}
.x47_c00132{left:263.520000px;}
.x1b_c00132{left:272.160000px;}
.x5b_c00132{left:274.320000px;}
.x21_c00132{left:282.960000px;}
.x10_c00132{left:293.760000px;}
.x53_c00132{left:295.200000px;}
.x5_c00132{left:305.280000px;}
.x33_c00132{left:316.080000px;}
.x3a_c00132{left:326.880000px;}
.x11_c00132{left:336.960000px;}
.x4c_c00132{left:338.400000px;}
.x2c_c00132{left:348.480000px;}
.x27_c00132{left:358.560000px;}
.x48_c00132{left:360.000000px;}
.x6_c00132{left:369.360000px;}
.x5c_c00132{left:371.520000px;}
.x1c_c00132{left:380.880000px;}
.x49_c00132{left:393.120000px;}
.x7_c00132{left:401.760000px;}
.x45_c00132{left:403.200000px;}
.x2d_c00132{left:413.280000px;}
.x22_c00132{left:414.720000px;}
.x3f_c00132{left:424.800000px;}
.x55_c00132{left:427.680000px;}
.x34_c00132{left:434.160000px;}
.x56_c00132{left:436.320000px;}
.x3b_c00132{left:446.400000px;}
.x28_c00132{left:455.760000px;}
.x8_c00132{left:457.200000px;}
.x1d_c00132{left:466.560000px;}
.x4a_c00132{left:468.000000px;}
.x35_c00132{left:477.360000px;}
.x12_c00132{left:478.800000px;}
.x3d_c00132{left:490.320000px;}
.x60_c00132{left:501.120000px;}
.x13_c00132{left:511.200000px;}
.x32_c00132{left:522.720000px;}
.x38_c00132{left:532.800000px;}
.x9_c00132{left:534.960000px;}
.x23_c00132{left:542.880000px;}
.x4b_c00132{left:544.320000px;}
.x40_c00132{left:554.400000px;}
.x14_c00132{left:565.200000px;}
.x5d_c00132{left:568.080000px;}
.x2e_c00132{left:576.000000px;}
.x58_c00132{left:578.160000px;}
.x50_c00132{left:586.800000px;}
.x4d_c00132{left:588.240000px;}
.x2f_c00132{left:597.600000px;}
.x24_c00132{left:609.120000px;}
.xa_c00132{left:617.760000px;}
.x1e_c00132{left:619.920000px;}
.x61_c00132{left:622.080000px;}
.x15_c00132{left:630.000000px;}
.x4e_c00132{left:631.440000px;}
.x25_c00132{left:641.520000px;}
.x29_c00132{left:652.320000px;}
.x51_c00132{left:653.760000px;}
.x41_c00132{left:663.840000px;}
.x30_c00132{left:673.920000px;}
.x1_c00132{left:678.960000px;}
.xb_c00132{left:685.440000px;}
.x5e_c00132{left:686.880000px;}
.x16_c00132{left:696.240000px;}
.x54_c00132{left:697.680000px;}
@media print{
.v0_c00132{vertical-align:0.000000pt;}
.v1_c00132{vertical-align:2.560000pt;}
.ls0_c00132{letter-spacing:0.000000pt;}
.ws0_c00132{word-spacing:-6.868267pt;}
.ws1_c00132{word-spacing:0.000000pt;}
.fsa_c00132{font-size:30.720000pt;}
.fs8_c00132{font-size:33.280000pt;}
.fsd_c00132{font-size:35.840000pt;}
.fse_c00132{font-size:38.400000pt;}
.fs7_c00132{font-size:40.960000pt;}
.fs6_c00132{font-size:43.520000pt;}
.fs5_c00132{font-size:46.080000pt;}
.fsc_c00132{font-size:48.640000pt;}
.fs9_c00132{font-size:51.200000pt;}
.fsb_c00132{font-size:53.760000pt;}
.fs4_c00132{font-size:56.320000pt;}
.fs3_c00132{font-size:58.880000pt;}
.fs1_c00132{font-size:61.440000pt;}
.fs2_c00132{font-size:64.000000pt;}
.fs0_c00132{font-size:69.120000pt;}
.y0_c00132{bottom:0.000000pt;}
.y7c_c00132{bottom:51.200000pt;}
.y7e_c00132{bottom:51.840000pt;}
.y7d_c00132{bottom:52.480000pt;}
.y79_c00132{bottom:53.120000pt;}
.y7b_c00132{bottom:55.040000pt;}
.y7a_c00132{bottom:55.680000pt;}
.y75_c00132{bottom:88.960000pt;}
.y73_c00132{bottom:89.600000pt;}
.y78_c00132{bottom:90.240000pt;}
.y77_c00132{bottom:90.880000pt;}
.y76_c00132{bottom:91.520000pt;}
.y74_c00132{bottom:92.160000pt;}
.y72_c00132{bottom:93.440000pt;}
.y71_c00132{bottom:127.360000pt;}
.y6f_c00132{bottom:128.640000pt;}
.y6e_c00132{bottom:129.280000pt;}
.y70_c00132{bottom:129.920000pt;}
.y6d_c00132{bottom:133.760000pt;}
.y6c_c00132{bottom:165.120000pt;}
.y6b_c00132{bottom:167.040000pt;}
.y6a_c00132{bottom:167.680000pt;}
.y68_c00132{bottom:168.320000pt;}
.y69_c00132{bottom:168.960000pt;}
.y66_c00132{bottom:202.880000pt;}
.y62_c00132{bottom:204.800000pt;}
.y67_c00132{bottom:205.440000pt;}
.y64_c00132{bottom:206.080000pt;}
.y63_c00132{bottom:206.720000pt;}
.y61_c00132{bottom:207.360000pt;}
.y65_c00132{bottom:209.920000pt;}
.y60_c00132{bottom:240.640000pt;}
.y5d_c00132{bottom:241.920000pt;}
.y5f_c00132{bottom:243.200000pt;}
.y5e_c00132{bottom:243.840000pt;}
.y5b_c00132{bottom:244.480000pt;}
.y5c_c00132{bottom:245.120000pt;}
.y58_c00132{bottom:280.320000pt;}
.y5a_c00132{bottom:281.600000pt;}
.y59_c00132{bottom:282.240000pt;}
.y57_c00132{bottom:282.880000pt;}
.y55_c00132{bottom:316.800000pt;}
.y56_c00132{bottom:317.440000pt;}
.y53_c00132{bottom:320.000000pt;}
.y54_c00132{bottom:320.640000pt;}
.y52_c00132{bottom:321.280000pt;}
.y51_c00132{bottom:356.480000pt;}
.y50_c00132{bottom:358.400000pt;}
.y4f_c00132{bottom:359.040000pt;}
.y4e_c00132{bottom:359.680000pt;}
.y4d_c00132{bottom:360.320000pt;}
.y4c_c00132{bottom:392.960000pt;}
.y4b_c00132{bottom:394.240000pt;}
.y48_c00132{bottom:394.880000pt;}
.y49_c00132{bottom:396.160000pt;}
.y4a_c00132{bottom:396.800000pt;}
.y47_c00132{bottom:397.440000pt;}
.y46_c00132{bottom:431.360000pt;}
.y44_c00132{bottom:432.000000pt;}
.y42_c00132{bottom:432.640000pt;}
.y43_c00132{bottom:434.560000pt;}
.y45_c00132{bottom:435.200000pt;}
.y40_c00132{bottom:471.680000pt;}
.y41_c00132{bottom:472.320000pt;}
.y3e_c00132{bottom:472.960000pt;}
.y3f_c00132{bottom:473.600000pt;}
.y3c_c00132{bottom:508.160000pt;}
.y3d_c00132{bottom:508.800000pt;}
.y3b_c00132{bottom:510.080000pt;}
.y3a_c00132{bottom:510.720000pt;}
.y37_c00132{bottom:546.560000pt;}
.y38_c00132{bottom:547.200000pt;}
.y36_c00132{bottom:548.480000pt;}
.y39_c00132{bottom:549.120000pt;}
.y35_c00132{bottom:594.560000pt;}
.y30_c00132{bottom:631.040000pt;}
.y31_c00132{bottom:631.680000pt;}
.y34_c00132{bottom:632.320000pt;}
.y32_c00132{bottom:634.240000pt;}
.y33_c00132{bottom:634.880000pt;}
.y2e_c00132{bottom:670.080000pt;}
.y2b_c00132{bottom:670.720000pt;}
.y2c_c00132{bottom:671.360000pt;}
.y2d_c00132{bottom:672.000000pt;}
.y2f_c00132{bottom:673.280000pt;}
.y29_c00132{bottom:708.480000pt;}
.y26_c00132{bottom:709.120000pt;}
.y27_c00132{bottom:709.760000pt;}
.y28_c00132{bottom:710.400000pt;}
.y2a_c00132{bottom:711.680000pt;}
.y23_c00132{bottom:745.600000pt;}
.y20_c00132{bottom:746.240000pt;}
.y21_c00132{bottom:746.880000pt;}
.y22_c00132{bottom:747.520000pt;}
.y24_c00132{bottom:748.160000pt;}
.y25_c00132{bottom:750.080000pt;}
.y19_c00132{bottom:782.080000pt;}
.y1a_c00132{bottom:783.360000pt;}
.y18_c00132{bottom:784.640000pt;}
.y1c_c00132{bottom:785.280000pt;}
.y1f_c00132{bottom:785.920000pt;}
.y1b_c00132{bottom:786.560000pt;}
.y1d_c00132{bottom:787.200000pt;}
.y1e_c00132{bottom:787.840000pt;}
.y11_c00132{bottom:820.480000pt;}
.yf_c00132{bottom:821.120000pt;}
.y14_c00132{bottom:822.400000pt;}
.y12_c00132{bottom:823.040000pt;}
.y10_c00132{bottom:823.680000pt;}
.y13_c00132{bottom:824.320000pt;}
.y15_c00132{bottom:824.960000pt;}
.y16_c00132{bottom:825.600000pt;}
.y17_c00132{bottom:826.240000pt;}
.ya_c00132{bottom:859.520000pt;}
.yb_c00132{bottom:860.160000pt;}
.yc_c00132{bottom:861.440000pt;}
.yd_c00132{bottom:863.360000pt;}
.ye_c00132{bottom:864.000000pt;}
.y2_c00132{bottom:896.000000pt;}
.y3_c00132{bottom:897.280000pt;}
.y4_c00132{bottom:897.920000pt;}
.y5_c00132{bottom:898.560000pt;}
.y7_c00132{bottom:899.840000pt;}
.y8_c00132{bottom:900.480000pt;}
.y6_c00132{bottom:901.120000pt;}
.y9_c00132{bottom:903.040000pt;}
.y1_c00132{bottom:968.960000pt;}
.hc_c00132{height:27.645000pt;}
.ha_c00132{height:29.948750pt;}
.hf_c00132{height:32.252500pt;}
.h11_c00132{height:34.556250pt;}
.h9_c00132{height:36.860000pt;}
.h8_c00132{height:39.163750pt;}
.h7_c00132{height:41.467500pt;}
.he_c00132{height:43.771250pt;}
.h10_c00132{height:44.027500pt;}
.hb_c00132{height:46.075000pt;}
.hd_c00132{height:48.378750pt;}
.h6_c00132{height:50.682500pt;}
.h5_c00132{height:52.986250pt;}
.h3_c00132{height:55.290000pt;}
.h4_c00132{height:57.593750pt;}
.h2_c00132{height:62.201250pt;}
.h0_c00132{height:1024.640000pt;}
.h1_c00132{height:1024.666667pt;}
.w1_c00132{width:696.666667pt;}
.w0_c00132{width:696.960000pt;}
.x0_c00132{left:0.000000pt;}
.x36_c00132{left:51.199720pt;}
.xc_c00132{left:52.480000pt;}
.x42_c00132{left:53.760000pt;}
.x2_c00132{left:55.040000pt;}
.x59_c00132{left:56.960000pt;}
.x1f_c00132{left:70.400000pt;}
.x26_c00132{left:80.000000pt;}
.x46_c00132{left:81.280000pt;}
.x57_c00132{left:82.560000pt;}
.x43_c00132{left:90.240000pt;}
.x17_c00132{left:99.840000pt;}
.xd_c00132{left:108.800000pt;}
.x18_c00132{left:119.040000pt;}
.x5a_c00132{left:120.320000pt;}
.xe_c00132{left:136.960000pt;}
.x37_c00132{left:147.200000pt;}
.x3e_c00132{left:148.480000pt;}
.x3_c00132{left:154.880000pt;}
.x3c_c00132{left:156.800000pt;}
.x19_c00132{left:165.120000pt;}
.x39_c00132{left:166.400000pt;}
.x2a_c00132{left:175.360000pt;}
.xf_c00132{left:184.320000pt;}
.x4f_c00132{left:185.600000pt;}
.x44_c00132{left:187.520000pt;}
.x20_c00132{left:193.920000pt;}
.x2b_c00132{left:203.520000pt;}
.x1a_c00132{left:213.120000pt;}
.x52_c00132{left:215.040000pt;}
.x4_c00132{left:222.720000pt;}
.x5f_c00132{left:224.000000pt;}
.x31_c00132{left:231.680000pt;}
.x47_c00132{left:234.240000pt;}
.x1b_c00132{left:241.920000pt;}
.x5b_c00132{left:243.840000pt;}
.x21_c00132{left:251.520000pt;}
.x10_c00132{left:261.120000pt;}
.x53_c00132{left:262.400000pt;}
.x5_c00132{left:271.360000pt;}
.x33_c00132{left:280.960000pt;}
.x3a_c00132{left:290.560000pt;}
.x11_c00132{left:299.520000pt;}
.x4c_c00132{left:300.800000pt;}
.x2c_c00132{left:309.760000pt;}
.x27_c00132{left:318.720000pt;}
.x48_c00132{left:320.000000pt;}
.x6_c00132{left:328.320000pt;}
.x5c_c00132{left:330.240000pt;}
.x1c_c00132{left:338.560000pt;}
.x49_c00132{left:349.440000pt;}
.x7_c00132{left:357.120000pt;}
.x45_c00132{left:358.400000pt;}
.x2d_c00132{left:367.360000pt;}
.x22_c00132{left:368.640000pt;}
.x3f_c00132{left:377.600000pt;}
.x55_c00132{left:380.160000pt;}
.x34_c00132{left:385.920000pt;}
.x56_c00132{left:387.840000pt;}
.x3b_c00132{left:396.800000pt;}
.x28_c00132{left:405.120000pt;}
.x8_c00132{left:406.400000pt;}
.x1d_c00132{left:414.720000pt;}
.x4a_c00132{left:416.000000pt;}
.x35_c00132{left:424.320000pt;}
.x12_c00132{left:425.600000pt;}
.x3d_c00132{left:435.840000pt;}
.x60_c00132{left:445.440000pt;}
.x13_c00132{left:454.400000pt;}
.x32_c00132{left:464.640000pt;}
.x38_c00132{left:473.600000pt;}
.x9_c00132{left:475.520000pt;}
.x23_c00132{left:482.560000pt;}
.x4b_c00132{left:483.840000pt;}
.x40_c00132{left:492.800000pt;}
.x14_c00132{left:502.400000pt;}
.x5d_c00132{left:504.960000pt;}
.x2e_c00132{left:512.000000pt;}
.x58_c00132{left:513.920000pt;}
.x50_c00132{left:521.600000pt;}
.x4d_c00132{left:522.880000pt;}
.x2f_c00132{left:531.200000pt;}
.x24_c00132{left:541.440000pt;}
.xa_c00132{left:549.120000pt;}
.x1e_c00132{left:551.040000pt;}
.x61_c00132{left:552.960000pt;}
.x15_c00132{left:560.000000pt;}
.x4e_c00132{left:561.280000pt;}
.x25_c00132{left:570.240000pt;}
.x29_c00132{left:579.840000pt;}
.x51_c00132{left:581.120000pt;}
.x41_c00132{left:590.080000pt;}
.x30_c00132{left:599.040000pt;}
.x1_c00132{left:603.520000pt;}
.xb_c00132{left:609.280000pt;}
.x5e_c00132{left:610.560000pt;}
.x16_c00132{left:618.880000pt;}
.x54_c00132{left:620.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_70392b5be76b3bc91e33ca45.woff2')format("woff");}.ff1_c00133{font-family:ff1_c00133;line-height:1.109863;font-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_c00133{transform:matrix(0.246375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246375,0.000000,0.000000,0.250000,0,0);}
.m57_c00133{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m26_c00133{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00133{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00133{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00133{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m53_c00133{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m36_c00133{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00133{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m44_c00133{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m37_c00133{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m18_c00133{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m29_c00133{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00133{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00133{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m41_c00133{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00133{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00133{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m7_c00133{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m42_c00133{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m40_c00133{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m13_c00133{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);}
.m39_c00133{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);}
.m49_c00133{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00133{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);}
.m3d_c00133{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.mb_c00133{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);}
.m34_c00133{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m60_c00133{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m27_c00133{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m0_c00133{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00133{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m62_c00133{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00133{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);}
.m58_c00133{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m35_c00133{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m8_c00133{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);}
.mf_c00133{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m21_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);}
.m3b_c00133{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m25_c00133{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m11_c00133{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);}
.m52_c00133{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m46_c00133{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);}
.m61_c00133{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m9_c00133{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);}
.m47_c00133{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m3_c00133{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m30_c00133{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00133{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00133{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);}
.m2b_c00133{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m38_c00133{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);}
.m48_c00133{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m19_c00133{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);}
.mc_c00133{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.md_c00133{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m12_c00133{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m20_c00133{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m32_c00133{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);}
.m22_c00133{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m63_c00133{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m6_c00133{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m16_c00133{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);}
.m4a_c00133{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m24_c00133{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m10_c00133{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00133{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m4_c00133{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m33_c00133{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);}
.m2_c00133{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);}
.m1d_c00133{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m43_c00133{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00133{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);}
.m55_c00133{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m45_c00133{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m59_c00133{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m54_c00133{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);}
.m5_c00133{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00133{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m17_c00133{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00133{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);}
.m28_c00133{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m14_c00133{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);}
.m3e_c00133{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);}
.m1f_c00133{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m31_c00133{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.me_c00133{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m51_c00133{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);}
.m4c_c00133{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);}
.m23_c00133{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00133{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00133{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);}
.m15_c00133{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m50_c00133{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.ma_c00133{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00133{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00133{transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00133{transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);}
.m56_c00133{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_c00133{vertical-align:0.000000px;}
.ls0_c00133{letter-spacing:0.000000px;}
.sc__c00133{text-shadow:none;}
.sc0_c00133{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00133{-webkit-text-stroke:0px transparent;}
.sc0_c00133{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00133{word-spacing:0.000000px;}
.fc0_c00133{color:transparent;}
.fs8_c00133{font-size:34.560000px;}
.fs5_c00133{font-size:37.440000px;}
.fsb_c00133{font-size:40.320000px;}
.fse_c00133{font-size:43.200000px;}
.fsd_c00133{font-size:46.080000px;}
.fs3_c00133{font-size:48.960000px;}
.fs4_c00133{font-size:51.840000px;}
.fs6_c00133{font-size:54.720000px;}
.fs7_c00133{font-size:57.600000px;}
.fs9_c00133{font-size:60.480000px;}
.fs1_c00133{font-size:63.360000px;}
.fsc_c00133{font-size:66.240000px;}
.fs2_c00133{font-size:69.120000px;}
.fsa_c00133{font-size:72.000000px;}
.fs0_c00133{font-size:74.880000px;}
.y0_c00133{bottom:0.000000px;}
.y87_c00133{bottom:47.520000px;}
.y84_c00133{bottom:48.240000px;}
.y86_c00133{bottom:48.960000px;}
.y85_c00133{bottom:49.680000px;}
.y82_c00133{bottom:51.120000px;}
.y83_c00133{bottom:53.280000px;}
.y81_c00133{bottom:55.440000px;}
.y80_c00133{bottom:56.160000px;}
.y7f_c00133{bottom:56.880000px;}
.y7d_c00133{bottom:98.640000px;}
.y7c_c00133{bottom:99.360000px;}
.y7a_c00133{bottom:100.800000px;}
.y7e_c00133{bottom:101.520000px;}
.y79_c00133{bottom:102.240000px;}
.y7b_c00133{bottom:102.960000px;}
.y78_c00133{bottom:105.120000px;}
.y77_c00133{bottom:106.560000px;}
.y76_c00133{bottom:141.120000px;}
.y74_c00133{bottom:141.840000px;}
.y75_c00133{bottom:143.280000px;}
.y70_c00133{bottom:144.000000px;}
.y73_c00133{bottom:146.160000px;}
.y72_c00133{bottom:146.880000px;}
.y71_c00133{bottom:147.600000px;}
.y6f_c00133{bottom:149.760000px;}
.y6d_c00133{bottom:185.040000px;}
.y6c_c00133{bottom:185.760000px;}
.y6e_c00133{bottom:186.480000px;}
.y6a_c00133{bottom:187.920000px;}
.y6b_c00133{bottom:188.640000px;}
.y69_c00133{bottom:190.800000px;}
.y66_c00133{bottom:226.800000px;}
.y65_c00133{bottom:228.960000px;}
.y68_c00133{bottom:229.680000px;}
.y67_c00133{bottom:230.400000px;}
.y63_c00133{bottom:231.120000px;}
.y64_c00133{bottom:231.840000px;}
.y62_c00133{bottom:234.000000px;}
.y5d_c00133{bottom:270.720000px;}
.y5e_c00133{bottom:271.440000px;}
.y61_c00133{bottom:272.880000px;}
.y5f_c00133{bottom:273.600000px;}
.y60_c00133{bottom:274.320000px;}
.y5c_c00133{bottom:275.760000px;}
.y5b_c00133{bottom:276.480000px;}
.y5a_c00133{bottom:277.920000px;}
.y55_c00133{bottom:314.640000px;}
.y56_c00133{bottom:315.360000px;}
.y59_c00133{bottom:316.080000px;}
.y58_c00133{bottom:316.800000px;}
.y57_c00133{bottom:317.520000px;}
.y54_c00133{bottom:319.680000px;}
.y53_c00133{bottom:355.680000px;}
.y51_c00133{bottom:356.400000px;}
.y52_c00133{bottom:357.840000px;}
.y4f_c00133{bottom:358.560000px;}
.y4d_c00133{bottom:360.000000px;}
.y50_c00133{bottom:360.720000px;}
.y4e_c00133{bottom:362.160000px;}
.y49_c00133{bottom:400.320000px;}
.y4a_c00133{bottom:401.040000px;}
.y4c_c00133{bottom:401.760000px;}
.y4b_c00133{bottom:402.480000px;}
.y48_c00133{bottom:403.200000px;}
.y47_c00133{bottom:405.360000px;}
.y46_c00133{bottom:442.080000px;}
.y44_c00133{bottom:442.800000px;}
.y45_c00133{bottom:444.960000px;}
.y42_c00133{bottom:445.680000px;}
.y41_c00133{bottom:446.400000px;}
.y43_c00133{bottom:447.120000px;}
.y3d_c00133{bottom:484.560000px;}
.y3f_c00133{bottom:485.280000px;}
.y3e_c00133{bottom:486.000000px;}
.y3b_c00133{bottom:486.720000px;}
.y40_c00133{bottom:487.440000px;}
.y3c_c00133{bottom:488.160000px;}
.y3a_c00133{bottom:489.600000px;}
.y37_c00133{bottom:528.480000px;}
.y38_c00133{bottom:529.200000px;}
.y39_c00133{bottom:530.640000px;}
.y36_c00133{bottom:532.080000px;}
.y35_c00133{bottom:570.960000px;}
.y33_c00133{bottom:573.840000px;}
.y34_c00133{bottom:574.560000px;}
.y31_c00133{bottom:614.160000px;}
.y32_c00133{bottom:616.320000px;}
.y30_c00133{bottom:617.040000px;}
.y2d_c00133{bottom:655.920000px;}
.y2e_c00133{bottom:657.360000px;}
.y2b_c00133{bottom:658.800000px;}
.y2c_c00133{bottom:659.520000px;}
.y2f_c00133{bottom:660.240000px;}
.y28_c00133{bottom:699.840000px;}
.y2a_c00133{bottom:702.000000px;}
.y29_c00133{bottom:702.720000px;}
.y24_c00133{bottom:742.320000px;}
.y25_c00133{bottom:743.040000px;}
.y23_c00133{bottom:744.480000px;}
.y27_c00133{bottom:745.200000px;}
.y26_c00133{bottom:745.920000px;}
.y21_c00133{bottom:784.800000px;}
.y22_c00133{bottom:785.520000px;}
.y1f_c00133{bottom:787.680000px;}
.y20_c00133{bottom:788.400000px;}
.y1b_c00133{bottom:828.000000px;}
.y1d_c00133{bottom:828.720000px;}
.y1e_c00133{bottom:829.440000px;}
.y19_c00133{bottom:830.160000px;}
.y1a_c00133{bottom:830.880000px;}
.y1c_c00133{bottom:831.600000px;}
.y13_c00133{bottom:869.040000px;}
.y15_c00133{bottom:869.760000px;}
.y18_c00133{bottom:871.200000px;}
.y14_c00133{bottom:872.640000px;}
.y16_c00133{bottom:874.080000px;}
.y17_c00133{bottom:874.800000px;}
.ye_c00133{bottom:912.960000px;}
.yc_c00133{bottom:914.400000px;}
.y12_c00133{bottom:915.120000px;}
.yd_c00133{bottom:915.840000px;}
.yf_c00133{bottom:916.560000px;}
.y11_c00133{bottom:917.280000px;}
.y10_c00133{bottom:918.000000px;}
.y7_c00133{bottom:958.320000px;}
.y8_c00133{bottom:959.040000px;}
.y9_c00133{bottom:959.760000px;}
.yb_c00133{bottom:960.480000px;}
.ya_c00133{bottom:961.200000px;}
.y2_c00133{bottom:1008.000000px;}
.y3_c00133{bottom:1008.720000px;}
.y4_c00133{bottom:1012.320000px;}
.y5_c00133{bottom:1013.040000px;}
.y6_c00133{bottom:1013.760000px;}
.y1_c00133{bottom:1077.840000px;}
.ha_c00133{height:31.100625px;}
.h7_c00133{height:33.692344px;}
.hd_c00133{height:36.284062px;}
.h10_c00133{height:38.875781px;}
.hf_c00133{height:41.467500px;}
.h5_c00133{height:44.059219px;}
.h6_c00133{height:46.650937px;}
.h8_c00133{height:49.242656px;}
.h9_c00133{height:51.834375px;}
.hb_c00133{height:54.426094px;}
.h3_c00133{height:57.017812px;}
.he_c00133{height:59.609531px;}
.h4_c00133{height:62.201250px;}
.hc_c00133{height:64.792969px;}
.h2_c00133{height:67.384687px;}
.h0_c00133{height:1153.440000px;}
.h1_c00133{height:1153.500000px;}
.w1_c00133{width:785.250000px;}
.w0_c00133{width:785.520000px;}
.x0_c00133{left:0.000000px;}
.x20_c00133{left:61.200000px;}
.x2_c00133{left:62.640600px;}
.x30_c00133{left:64.800000px;}
.x41_c00133{left:92.880000px;}
.x1b_c00133{left:103.680000px;}
.x45_c00133{left:113.760000px;}
.x14_c00133{left:125.280000px;}
.x3_c00133{left:136.080000px;}
.x21_c00133{left:146.880000px;}
.x46_c00133{left:156.240000px;}
.x37_c00133{left:166.320000px;}
.xb_c00133{left:167.760000px;}
.x4a_c00133{left:178.560000px;}
.x31_c00133{left:180.000000px;}
.x5b_c00133{left:187.200000px;}
.x15_c00133{left:188.640000px;}
.x5d_c00133{left:190.080000px;}
.x3d_c00133{left:198.720000px;}
.x47_c00133{left:200.160000px;}
.x4b_c00133{left:209.520000px;}
.xc_c00133{left:210.960000px;}
.x4f_c00133{left:221.760000px;}
.x3e_c00133{left:231.120000px;}
.x27_c00133{left:232.560000px;}
.x4_c00133{left:242.640000px;}
.x16_c00133{left:244.080000px;}
.x43_c00133{left:252.720000px;}
.x32_c00133{left:254.160000px;}
.x2c_c00133{left:257.040000px;}
.x38_c00133{left:263.520000px;}
.x17_c00133{left:275.040000px;}
.x4c_c00133{left:285.120000px;}
.x5_c00133{left:286.560000px;}
.x58_c00133{left:295.200000px;}
.xd_c00133{left:297.360000px;}
.x22_c00133{left:300.240000px;}
.x28_c00133{left:308.160000px;}
.x39_c00133{left:317.520000px;}
.x44_c00133{left:328.320000px;}
.xe_c00133{left:329.760000px;}
.x29_c00133{left:339.120000px;}
.x1c_c00133{left:341.280000px;}
.x53_c00133{left:349.920000px;}
.x2d_c00133{left:352.080000px;}
.x5c_c00133{left:360.000000px;}
.x3f_c00133{left:361.440000px;}
.x1d_c00133{left:371.520000px;}
.x18_c00133{left:372.960000px;}
.xf_c00133{left:383.040000px;}
.x59_c00133{left:393.120000px;}
.x6_c00133{left:405.360000px;}
.x1e_c00133{left:414.720000px;}
.x2e_c00133{left:416.160000px;}
.x33_c00133{left:426.240000px;}
.x23_c00133{left:437.040000px;}
.x55_c00133{left:448.560000px;}
.x48_c00133{left:457.920000px;}
.x7_c00133{left:460.080000px;}
.x4d_c00133{left:468.720000px;}
.x2a_c00133{left:470.160000px;}
.x2f_c00133{left:480.960000px;}
.x54_c00133{left:491.040000px;}
.x8_c00133{left:492.480000px;}
.x19_c00133{left:501.120000px;}
.x34_c00133{left:503.280000px;}
.x3a_c00133{left:513.360000px;}
.x9_c00133{left:524.160000px;}
.x10_c00133{left:535.680000px;}
.x24_c00133{left:537.120000px;}
.x42_c00133{left:546.480000px;}
.x50_c00133{left:557.280000px;}
.x11_c00133{left:568.080000px;}
.x40_c00133{left:579.600000px;}
.x3b_c00133{left:589.680000px;}
.x2b_c00133{left:591.120000px;}
.x56_c00133{left:599.760000px;}
.xa_c00133{left:601.200000px;}
.x25_c00133{left:602.640000px;}
.x35_c00133{left:611.280000px;}
.x12_c00133{left:613.440000px;}
.x51_c00133{left:622.080000px;}
.x5a_c00133{left:632.880000px;}
.x1f_c00133{left:634.320000px;}
.x57_c00133{left:642.240000px;}
.x49_c00133{left:643.680000px;}
.x1a_c00133{left:645.120000px;}
.x4e_c00133{left:655.200000px;}
.x3c_c00133{left:666.000000px;}
.x13_c00133{left:667.440000px;}
.x1_c00133{left:673.920000px;}
.x52_c00133{left:676.080000px;}
.x26_c00133{left:677.520000px;}
.x36_c00133{left:689.040000px;}
@media print{
.v0_c00133{vertical-align:0.000000pt;}
.ls0_c00133{letter-spacing:0.000000pt;}
.ws0_c00133{word-spacing:0.000000pt;}
.fs8_c00133{font-size:30.720000pt;}
.fs5_c00133{font-size:33.280000pt;}
.fsb_c00133{font-size:35.840000pt;}
.fse_c00133{font-size:38.400000pt;}
.fsd_c00133{font-size:40.960000pt;}
.fs3_c00133{font-size:43.520000pt;}
.fs4_c00133{font-size:46.080000pt;}
.fs6_c00133{font-size:48.640000pt;}
.fs7_c00133{font-size:51.200000pt;}
.fs9_c00133{font-size:53.760000pt;}
.fs1_c00133{font-size:56.320000pt;}
.fsc_c00133{font-size:58.880000pt;}
.fs2_c00133{font-size:61.440000pt;}
.fsa_c00133{font-size:64.000000pt;}
.fs0_c00133{font-size:66.560000pt;}
.y0_c00133{bottom:0.000000pt;}
.y87_c00133{bottom:42.240000pt;}
.y84_c00133{bottom:42.880000pt;}
.y86_c00133{bottom:43.520000pt;}
.y85_c00133{bottom:44.160000pt;}
.y82_c00133{bottom:45.440000pt;}
.y83_c00133{bottom:47.360000pt;}
.y81_c00133{bottom:49.280000pt;}
.y80_c00133{bottom:49.920000pt;}
.y7f_c00133{bottom:50.560000pt;}
.y7d_c00133{bottom:87.680000pt;}
.y7c_c00133{bottom:88.320000pt;}
.y7a_c00133{bottom:89.600000pt;}
.y7e_c00133{bottom:90.240000pt;}
.y79_c00133{bottom:90.880000pt;}
.y7b_c00133{bottom:91.520000pt;}
.y78_c00133{bottom:93.440000pt;}
.y77_c00133{bottom:94.720000pt;}
.y76_c00133{bottom:125.440000pt;}
.y74_c00133{bottom:126.080000pt;}
.y75_c00133{bottom:127.360000pt;}
.y70_c00133{bottom:128.000000pt;}
.y73_c00133{bottom:129.920000pt;}
.y72_c00133{bottom:130.560000pt;}
.y71_c00133{bottom:131.200000pt;}
.y6f_c00133{bottom:133.120000pt;}
.y6d_c00133{bottom:164.480000pt;}
.y6c_c00133{bottom:165.120000pt;}
.y6e_c00133{bottom:165.760000pt;}
.y6a_c00133{bottom:167.040000pt;}
.y6b_c00133{bottom:167.680000pt;}
.y69_c00133{bottom:169.600000pt;}
.y66_c00133{bottom:201.600000pt;}
.y65_c00133{bottom:203.520000pt;}
.y68_c00133{bottom:204.160000pt;}
.y67_c00133{bottom:204.800000pt;}
.y63_c00133{bottom:205.440000pt;}
.y64_c00133{bottom:206.080000pt;}
.y62_c00133{bottom:208.000000pt;}
.y5d_c00133{bottom:240.640000pt;}
.y5e_c00133{bottom:241.280000pt;}
.y61_c00133{bottom:242.560000pt;}
.y5f_c00133{bottom:243.200000pt;}
.y60_c00133{bottom:243.840000pt;}
.y5c_c00133{bottom:245.120000pt;}
.y5b_c00133{bottom:245.760000pt;}
.y5a_c00133{bottom:247.040000pt;}
.y55_c00133{bottom:279.680000pt;}
.y56_c00133{bottom:280.320000pt;}
.y59_c00133{bottom:280.960000pt;}
.y58_c00133{bottom:281.600000pt;}
.y57_c00133{bottom:282.240000pt;}
.y54_c00133{bottom:284.160000pt;}
.y53_c00133{bottom:316.160000pt;}
.y51_c00133{bottom:316.800000pt;}
.y52_c00133{bottom:318.080000pt;}
.y4f_c00133{bottom:318.720000pt;}
.y4d_c00133{bottom:320.000000pt;}
.y50_c00133{bottom:320.640000pt;}
.y4e_c00133{bottom:321.920000pt;}
.y49_c00133{bottom:355.840000pt;}
.y4a_c00133{bottom:356.480000pt;}
.y4c_c00133{bottom:357.120000pt;}
.y4b_c00133{bottom:357.760000pt;}
.y48_c00133{bottom:358.400000pt;}
.y47_c00133{bottom:360.320000pt;}
.y46_c00133{bottom:392.960000pt;}
.y44_c00133{bottom:393.600000pt;}
.y45_c00133{bottom:395.520000pt;}
.y42_c00133{bottom:396.160000pt;}
.y41_c00133{bottom:396.800000pt;}
.y43_c00133{bottom:397.440000pt;}
.y3d_c00133{bottom:430.720000pt;}
.y3f_c00133{bottom:431.360000pt;}
.y3e_c00133{bottom:432.000000pt;}
.y3b_c00133{bottom:432.640000pt;}
.y40_c00133{bottom:433.280000pt;}
.y3c_c00133{bottom:433.920000pt;}
.y3a_c00133{bottom:435.200000pt;}
.y37_c00133{bottom:469.760000pt;}
.y38_c00133{bottom:470.400000pt;}
.y39_c00133{bottom:471.680000pt;}
.y36_c00133{bottom:472.960000pt;}
.y35_c00133{bottom:507.520000pt;}
.y33_c00133{bottom:510.080000pt;}
.y34_c00133{bottom:510.720000pt;}
.y31_c00133{bottom:545.920000pt;}
.y32_c00133{bottom:547.840000pt;}
.y30_c00133{bottom:548.480000pt;}
.y2d_c00133{bottom:583.040000pt;}
.y2e_c00133{bottom:584.320000pt;}
.y2b_c00133{bottom:585.600000pt;}
.y2c_c00133{bottom:586.240000pt;}
.y2f_c00133{bottom:586.880000pt;}
.y28_c00133{bottom:622.080000pt;}
.y2a_c00133{bottom:624.000000pt;}
.y29_c00133{bottom:624.640000pt;}
.y24_c00133{bottom:659.840000pt;}
.y25_c00133{bottom:660.480000pt;}
.y23_c00133{bottom:661.760000pt;}
.y27_c00133{bottom:662.400000pt;}
.y26_c00133{bottom:663.040000pt;}
.y21_c00133{bottom:697.600000pt;}
.y22_c00133{bottom:698.240000pt;}
.y1f_c00133{bottom:700.160000pt;}
.y20_c00133{bottom:700.800000pt;}
.y1b_c00133{bottom:736.000000pt;}
.y1d_c00133{bottom:736.640000pt;}
.y1e_c00133{bottom:737.280000pt;}
.y19_c00133{bottom:737.920000pt;}
.y1a_c00133{bottom:738.560000pt;}
.y1c_c00133{bottom:739.200000pt;}
.y13_c00133{bottom:772.480000pt;}
.y15_c00133{bottom:773.120000pt;}
.y18_c00133{bottom:774.400000pt;}
.y14_c00133{bottom:775.680000pt;}
.y16_c00133{bottom:776.960000pt;}
.y17_c00133{bottom:777.600000pt;}
.ye_c00133{bottom:811.520000pt;}
.yc_c00133{bottom:812.800000pt;}
.y12_c00133{bottom:813.440000pt;}
.yd_c00133{bottom:814.080000pt;}
.yf_c00133{bottom:814.720000pt;}
.y11_c00133{bottom:815.360000pt;}
.y10_c00133{bottom:816.000000pt;}
.y7_c00133{bottom:851.840000pt;}
.y8_c00133{bottom:852.480000pt;}
.y9_c00133{bottom:853.120000pt;}
.yb_c00133{bottom:853.760000pt;}
.ya_c00133{bottom:854.400000pt;}
.y2_c00133{bottom:896.000000pt;}
.y3_c00133{bottom:896.640000pt;}
.y4_c00133{bottom:899.840000pt;}
.y5_c00133{bottom:900.480000pt;}
.y6_c00133{bottom:901.120000pt;}
.y1_c00133{bottom:958.080000pt;}
.ha_c00133{height:27.645000pt;}
.h7_c00133{height:29.948750pt;}
.hd_c00133{height:32.252500pt;}
.h10_c00133{height:34.556250pt;}
.hf_c00133{height:36.860000pt;}
.h5_c00133{height:39.163750pt;}
.h6_c00133{height:41.467500pt;}
.h8_c00133{height:43.771250pt;}
.h9_c00133{height:46.075000pt;}
.hb_c00133{height:48.378750pt;}
.h3_c00133{height:50.682500pt;}
.he_c00133{height:52.986250pt;}
.h4_c00133{height:55.290000pt;}
.hc_c00133{height:57.593750pt;}
.h2_c00133{height:59.897500pt;}
.h0_c00133{height:1025.280000pt;}
.h1_c00133{height:1025.333333pt;}
.w1_c00133{width:698.000000pt;}
.w0_c00133{width:698.240000pt;}
.x0_c00133{left:0.000000pt;}
.x20_c00133{left:54.400000pt;}
.x2_c00133{left:55.680533pt;}
.x30_c00133{left:57.600000pt;}
.x41_c00133{left:82.560000pt;}
.x1b_c00133{left:92.160000pt;}
.x45_c00133{left:101.120000pt;}
.x14_c00133{left:111.360000pt;}
.x3_c00133{left:120.960000pt;}
.x21_c00133{left:130.560000pt;}
.x46_c00133{left:138.880000pt;}
.x37_c00133{left:147.840000pt;}
.xb_c00133{left:149.120000pt;}
.x4a_c00133{left:158.720000pt;}
.x31_c00133{left:160.000000pt;}
.x5b_c00133{left:166.400000pt;}
.x15_c00133{left:167.680000pt;}
.x5d_c00133{left:168.960000pt;}
.x3d_c00133{left:176.640000pt;}
.x47_c00133{left:177.920000pt;}
.x4b_c00133{left:186.240000pt;}
.xc_c00133{left:187.520000pt;}
.x4f_c00133{left:197.120000pt;}
.x3e_c00133{left:205.440000pt;}
.x27_c00133{left:206.720000pt;}
.x4_c00133{left:215.680000pt;}
.x16_c00133{left:216.960000pt;}
.x43_c00133{left:224.640000pt;}
.x32_c00133{left:225.920000pt;}
.x2c_c00133{left:228.480000pt;}
.x38_c00133{left:234.240000pt;}
.x17_c00133{left:244.480000pt;}
.x4c_c00133{left:253.440000pt;}
.x5_c00133{left:254.720000pt;}
.x58_c00133{left:262.400000pt;}
.xd_c00133{left:264.320000pt;}
.x22_c00133{left:266.880000pt;}
.x28_c00133{left:273.920000pt;}
.x39_c00133{left:282.240000pt;}
.x44_c00133{left:291.840000pt;}
.xe_c00133{left:293.120000pt;}
.x29_c00133{left:301.440000pt;}
.x1c_c00133{left:303.360000pt;}
.x53_c00133{left:311.040000pt;}
.x2d_c00133{left:312.960000pt;}
.x5c_c00133{left:320.000000pt;}
.x3f_c00133{left:321.280000pt;}
.x1d_c00133{left:330.240000pt;}
.x18_c00133{left:331.520000pt;}
.xf_c00133{left:340.480000pt;}
.x59_c00133{left:349.440000pt;}
.x6_c00133{left:360.320000pt;}
.x1e_c00133{left:368.640000pt;}
.x2e_c00133{left:369.920000pt;}
.x33_c00133{left:378.880000pt;}
.x23_c00133{left:388.480000pt;}
.x55_c00133{left:398.720000pt;}
.x48_c00133{left:407.040000pt;}
.x7_c00133{left:408.960000pt;}
.x4d_c00133{left:416.640000pt;}
.x2a_c00133{left:417.920000pt;}
.x2f_c00133{left:427.520000pt;}
.x54_c00133{left:436.480000pt;}
.x8_c00133{left:437.760000pt;}
.x19_c00133{left:445.440000pt;}
.x34_c00133{left:447.360000pt;}
.x3a_c00133{left:456.320000pt;}
.x9_c00133{left:465.920000pt;}
.x10_c00133{left:476.160000pt;}
.x24_c00133{left:477.440000pt;}
.x42_c00133{left:485.760000pt;}
.x50_c00133{left:495.360000pt;}
.x11_c00133{left:504.960000pt;}
.x40_c00133{left:515.200000pt;}
.x3b_c00133{left:524.160000pt;}
.x2b_c00133{left:525.440000pt;}
.x56_c00133{left:533.120000pt;}
.xa_c00133{left:534.400000pt;}
.x25_c00133{left:535.680000pt;}
.x35_c00133{left:543.360000pt;}
.x12_c00133{left:545.280000pt;}
.x51_c00133{left:552.960000pt;}
.x5a_c00133{left:562.560000pt;}
.x1f_c00133{left:563.840000pt;}
.x57_c00133{left:570.880000pt;}
.x49_c00133{left:572.160000pt;}
.x1a_c00133{left:573.440000pt;}
.x4e_c00133{left:582.400000pt;}
.x3c_c00133{left:592.000000pt;}
.x13_c00133{left:593.280000pt;}
.x1_c00133{left:599.040000pt;}
.x52_c00133{left:600.960000pt;}
.x26_c00133{left:602.240000pt;}
.x36_c00133{left:612.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_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_2559520d44cbd04b24356a29.woff2')format("woff");}.ff1_c00134{font-family:ff1_c00134;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma_c00134{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m21_c00134{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);}
.m38_c00134{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00134{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m22_c00134{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m44_c00134{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00134{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m23_c00134{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00134{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m43_c00134{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m42_c00134{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mb_c00134{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m20_c00134{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);}
.m41_c00134{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);}
.m40_c00134{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);}
.m50_c00134{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m11_c00134{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00134{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m9_c00134{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);}
.m2e_c00134{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.mf_c00134{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);}
.me_c00134{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2_c00134{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);}
.m6_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);}
.m3a_c00134{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m53_c00134{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m39_c00134{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m47_c00134{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);}
.m48_c00134{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00134{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);}
.m0_c00134{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m35_c00134{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m24_c00134{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m34_c00134{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);}
.m57_c00134{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m17_c00134{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m10_c00134{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00134{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);}
.m29_c00134{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m28_c00134{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_c00134{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);}
.m2a_c00134{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_c00134{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00134{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m31_c00134{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);}
.m8_c00134{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m16_c00134{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00134{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);}
.m36_c00134{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m7_c00134{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);}
.m1b_c00134{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m54_c00134{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00134{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m26_c00134{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);}
.m59_c00134{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m45_c00134{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00134{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m37_c00134{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m32_c00134{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00134{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00134{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m19_c00134{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);}
.m14_c00134{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m4_c00134{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m55_c00134{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m13_c00134{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);}
.m1d_c00134{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m5_c00134{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m12_c00134{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00134{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00134{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m3_c00134{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m51_c00134{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.md_c00134{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m46_c00134{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);}
.m2c_c00134{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);}
.m2f_c00134{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m25_c00134{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00134{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m27_c00134{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m52_c00134{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00134{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m49_c00134{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);}
.m58_c00134{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);}
.mc_c00134{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);}
.m56_c00134{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);}
.m5a_c00134{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m30_c00134{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m33_c00134{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.m1_c00134{transform:matrix(0.707500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.707500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.707500,0.000000,0.000000,0.250000,0,0);}
.m15_c00134{transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00134{transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);}
.v0_c00134{vertical-align:0.000000px;}
.ls0_c00134{letter-spacing:0.000000px;}
.sc__c00134{text-shadow:none;}
.sc0_c00134{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00134{-webkit-text-stroke:0px transparent;}
.sc0_c00134{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00134{word-spacing:-8.113200px;}
.ws1_c00134{word-spacing:0.000000px;}
.fc0_c00134{color:transparent;}
.fs10_c00134{font-size:17.280000px;}
.fs3_c00134{font-size:34.560000px;}
.fsc_c00134{font-size:37.440000px;}
.fs1_c00134{font-size:40.320000px;}
.fsd_c00134{font-size:43.200000px;}
.fsb_c00134{font-size:46.080000px;}
.fs2_c00134{font-size:48.960000px;}
.fs4_c00134{font-size:51.840000px;}
.fs5_c00134{font-size:54.720000px;}
.fs8_c00134{font-size:57.600000px;}
.fs9_c00134{font-size:60.480000px;}
.fs7_c00134{font-size:63.360000px;}
.fse_c00134{font-size:66.240000px;}
.fs0_c00134{font-size:69.120000px;}
.fs6_c00134{font-size:72.000000px;}
.fsa_c00134{font-size:74.880000px;}
.fsf_c00134{font-size:77.760000px;}
.y0_c00134{bottom:0.000000px;}
.y79_c00134{bottom:86.400000px;}
.y76_c00134{bottom:89.280000px;}
.y78_c00134{bottom:92.160000px;}
.y77_c00134{bottom:92.880000px;}
.y74_c00134{bottom:94.320000px;}
.y73_c00134{bottom:95.040000px;}
.y72_c00134{bottom:95.760000px;}
.y75_c00134{bottom:96.480000px;}
.y71_c00134{bottom:133.920000px;}
.y6d_c00134{bottom:134.640000px;}
.y70_c00134{bottom:135.360000px;}
.y6f_c00134{bottom:136.800000px;}
.y6e_c00134{bottom:137.520000px;}
.y6c_c00134{bottom:138.240000px;}
.y6a_c00134{bottom:174.960000px;}
.y6b_c00134{bottom:177.120000px;}
.y67_c00134{bottom:179.280000px;}
.y68_c00134{bottom:180.000000px;}
.y69_c00134{bottom:180.720000px;}
.y66_c00134{bottom:182.160000px;}
.y65_c00134{bottom:182.880000px;}
.y64_c00134{bottom:218.160000px;}
.y60_c00134{bottom:218.880000px;}
.y61_c00134{bottom:219.600000px;}
.y63_c00134{bottom:220.320000px;}
.y62_c00134{bottom:221.760000px;}
.y5f_c00134{bottom:223.920000px;}
.y5e_c00134{bottom:225.360000px;}
.y5b_c00134{bottom:260.640000px;}
.y5a_c00134{bottom:262.080000px;}
.y5d_c00134{bottom:262.800000px;}
.y5c_c00134{bottom:264.240000px;}
.y57_c00134{bottom:264.960000px;}
.y59_c00134{bottom:265.680000px;}
.y58_c00134{bottom:266.400000px;}
.y55_c00134{bottom:304.560000px;}
.y53_c00134{bottom:306.720000px;}
.y56_c00134{bottom:307.440000px;}
.y54_c00134{bottom:308.160000px;}
.y52_c00134{bottom:361.440000px;}
.y51_c00134{bottom:362.160000px;}
.y50_c00134{bottom:362.880000px;}
.y4b_c00134{bottom:401.760000px;}
.y4f_c00134{bottom:402.480000px;}
.y4e_c00134{bottom:403.200000px;}
.y4d_c00134{bottom:403.920000px;}
.y4c_c00134{bottom:405.360000px;}
.y4a_c00134{bottom:406.080000px;}
.y48_c00134{bottom:444.240000px;}
.y49_c00134{bottom:445.680000px;}
.y47_c00134{bottom:446.400000px;}
.y45_c00134{bottom:447.120000px;}
.y46_c00134{bottom:447.840000px;}
.y44_c00134{bottom:488.160000px;}
.y43_c00134{bottom:488.880000px;}
.y42_c00134{bottom:489.600000px;}
.y41_c00134{bottom:490.320000px;}
.y40_c00134{bottom:491.040000px;}
.y3d_c00134{bottom:529.920000px;}
.y3f_c00134{bottom:531.360000px;}
.y3e_c00134{bottom:532.080000px;}
.y3c_c00134{bottom:532.800000px;}
.y3b_c00134{bottom:533.520000px;}
.y39_c00134{bottom:572.400000px;}
.y38_c00134{bottom:573.120000px;}
.y3a_c00134{bottom:574.560000px;}
.y37_c00134{bottom:575.280000px;}
.y36_c00134{bottom:614.880000px;}
.y35_c00134{bottom:615.600000px;}
.y34_c00134{bottom:617.760000px;}
.y33_c00134{bottom:618.480000px;}
.y32_c00134{bottom:619.200000px;}
.y30_c00134{bottom:669.600000px;}
.y2f_c00134{bottom:671.040000px;}
.y31_c00134{bottom:671.760000px;}
.y2d_c00134{bottom:711.360000px;}
.y2b_c00134{bottom:713.520000px;}
.y2c_c00134{bottom:714.240000px;}
.y2e_c00134{bottom:714.960000px;}
.y29_c00134{bottom:754.560000px;}
.y2a_c00134{bottom:755.280000px;}
.y27_c00134{bottom:756.720000px;}
.y28_c00134{bottom:757.440000px;}
.y21_c00134{bottom:796.320000px;}
.y26_c00134{bottom:798.480000px;}
.y22_c00134{bottom:799.200000px;}
.y23_c00134{bottom:799.920000px;}
.y24_c00134{bottom:800.640000px;}
.y25_c00134{bottom:801.360000px;}
.y1a_c00134{bottom:838.080000px;}
.y1e_c00134{bottom:839.520000px;}
.y1f_c00134{bottom:840.960000px;}
.y1c_c00134{bottom:841.680000px;}
.y1b_c00134{bottom:842.400000px;}
.y1d_c00134{bottom:843.120000px;}
.y20_c00134{bottom:843.840000px;}
.y16_c00134{bottom:882.000000px;}
.y17_c00134{bottom:882.720000px;}
.y14_c00134{bottom:883.440000px;}
.y15_c00134{bottom:884.160000px;}
.y18_c00134{bottom:886.320000px;}
.y19_c00134{bottom:887.040000px;}
.ye_c00134{bottom:925.920000px;}
.yf_c00134{bottom:926.640000px;}
.y10_c00134{bottom:927.360000px;}
.y11_c00134{bottom:928.080000px;}
.y12_c00134{bottom:928.800000px;}
.y13_c00134{bottom:929.520000px;}
.y8_c00134{bottom:965.520000px;}
.ya_c00134{bottom:967.680000px;}
.yc_c00134{bottom:968.400000px;}
.y9_c00134{bottom:969.840000px;}
.yb_c00134{bottom:972.000000px;}
.yd_c00134{bottom:973.440000px;}
.y3_c00134{bottom:1011.600000px;}
.y4_c00134{bottom:1012.320000px;}
.y5_c00134{bottom:1013.040000px;}
.y6_c00134{bottom:1013.760000px;}
.y7_c00134{bottom:1014.480000px;}
.y2_c00134{bottom:1091.520000px;}
.y1_c00134{bottom:1092.960000px;}
.h12_c00134{height:15.550313px;}
.h5_c00134{height:31.100625px;}
.he_c00134{height:33.692344px;}
.h3_c00134{height:36.284062px;}
.hf_c00134{height:38.875781px;}
.hd_c00134{height:41.467500px;}
.h4_c00134{height:44.059219px;}
.h6_c00134{height:46.650937px;}
.h7_c00134{height:49.242656px;}
.ha_c00134{height:51.834375px;}
.hb_c00134{height:54.426094px;}
.h9_c00134{height:57.017812px;}
.h10_c00134{height:59.609531px;}
.h2_c00134{height:62.201250px;}
.h8_c00134{height:64.792969px;}
.hc_c00134{height:67.384687px;}
.h11_c00134{height:69.976406px;}
.h0_c00134{height:1153.440000px;}
.h1_c00134{height:1153.500000px;}
.w1_c00134{width:786.000000px;}
.w0_c00134{width:786.240000px;}
.x0_c00134{left:0.000000px;}
.x3e_c00134{left:63.360000px;}
.x3_c00134{left:64.800000px;}
.x53_c00134{left:67.680000px;}
.x22_c00134{left:74.880000px;}
.x40_c00134{left:84.960000px;}
.x1b_c00134{left:95.760000px;}
.x50_c00134{left:97.200000px;}
.x27_c00134{left:105.840000px;}
.x15_c00134{left:107.280000px;}
.x23_c00134{left:118.800000px;}
.x41_c00134{left:127.440000px;}
.x16_c00134{left:138.240000px;}
.x37_c00134{left:139.680000px;}
.x4a_c00134{left:149.040000px;}
.x4_c00134{left:150.480000px;}
.x2b_c00134{left:169.920000px;}
.x38_c00134{left:171.360000px;}
.x5_c00134{left:182.160000px;}
.x4e_c00134{left:191.520000px;}
.xc_c00134{left:203.040000px;}
.x6_c00134{left:213.840000px;}
.x42_c00134{left:224.640000px;}
.x4c_c00134{left:234.000000px;}
.xd_c00134{left:235.440000px;}
.x3f_c00134{left:244.080000px;}
.x43_c00134{left:246.240000px;}
.x1c_c00134{left:248.400000px;}
.x2c_c00134{left:256.320000px;}
.x49_c00134{left:266.400000px;}
.xe_c00134{left:267.840000px;}
.x7_c00134{left:277.200000px;}
.x4d_c00134{left:278.640000px;}
.x39_c00134{left:289.440000px;}
.x54_c00134{left:298.080000px;}
.x2d_c00134{left:299.520000px;}
.x46_c00134{left:309.600000px;}
.x24_c00134{left:311.040000px;}
.x32_c00134{left:321.840000px;}
.x17_c00134{left:332.640000px;}
.x8_c00134{left:343.440000px;}
.x33_c00134{left:352.800000px;}
.x3c_c00134{left:364.320000px;}
.x1d_c00134{left:375.120000px;}
.x2e_c00134{left:385.920000px;}
.x9_c00134{left:388.080000px;}
.xf_c00134{left:396.720000px;}
.x2f_c00134{left:408.240000px;}
.x3a_c00134{left:418.320000px;}
.x1e_c00134{left:419.760000px;}
.x3d_c00134{left:429.840000px;}
.x47_c00134{left:439.920000px;}
.x18_c00134{left:441.360000px;}
.x10_c00134{left:462.240000px;}
.x34_c00134{left:472.320000px;}
.x1f_c00134{left:483.840000px;}
.x28_c00134{left:494.640000px;}
.x11_c00134{left:505.440000px;}
.xa_c00134{left:508.320000px;}
.x19_c00134{left:516.240000px;}
.x48_c00134{left:527.040000px;}
.x30_c00134{left:537.840000px;}
.x29_c00134{left:548.640000px;}
.x4b_c00134{left:559.440000px;}
.x20_c00134{left:560.880000px;}
.x3b_c00134{left:570.240000px;}
.x25_c00134{left:581.760000px;}
.x2a_c00134{left:593.280000px;}
.x51_c00134{left:602.640000px;}
.x12_c00134{left:604.080000px;}
.x55_c00134{left:612.000000px;}
.x35_c00134{left:614.880000px;}
.xb_c00134{left:624.240000px;}
.x1a_c00134{left:626.400000px;}
.x21_c00134{left:635.760000px;}
.x44_c00134{left:647.280000px;}
.x31_c00134{left:658.080000px;}
.x36_c00134{left:659.520000px;}
.x4f_c00134{left:668.160000px;}
.x26_c00134{left:669.600000px;}
.x45_c00134{left:680.400000px;}
.x1_c00134{left:688.320000px;}
.x13_c00134{left:691.920000px;}
.x52_c00134{left:701.280000px;}
.x2_c00134{left:707.760000px;}
.x14_c00134{left:712.800000px;}
@media print{
.v0_c00134{vertical-align:0.000000pt;}
.ls0_c00134{letter-spacing:0.000000pt;}
.ws0_c00134{word-spacing:-7.211733pt;}
.ws1_c00134{word-spacing:0.000000pt;}
.fs10_c00134{font-size:15.360000pt;}
.fs3_c00134{font-size:30.720000pt;}
.fsc_c00134{font-size:33.280000pt;}
.fs1_c00134{font-size:35.840000pt;}
.fsd_c00134{font-size:38.400000pt;}
.fsb_c00134{font-size:40.960000pt;}
.fs2_c00134{font-size:43.520000pt;}
.fs4_c00134{font-size:46.080000pt;}
.fs5_c00134{font-size:48.640000pt;}
.fs8_c00134{font-size:51.200000pt;}
.fs9_c00134{font-size:53.760000pt;}
.fs7_c00134{font-size:56.320000pt;}
.fse_c00134{font-size:58.880000pt;}
.fs0_c00134{font-size:61.440000pt;}
.fs6_c00134{font-size:64.000000pt;}
.fsa_c00134{font-size:66.560000pt;}
.fsf_c00134{font-size:69.120000pt;}
.y0_c00134{bottom:0.000000pt;}
.y79_c00134{bottom:76.800000pt;}
.y76_c00134{bottom:79.360000pt;}
.y78_c00134{bottom:81.920000pt;}
.y77_c00134{bottom:82.560000pt;}
.y74_c00134{bottom:83.840000pt;}
.y73_c00134{bottom:84.480000pt;}
.y72_c00134{bottom:85.120000pt;}
.y75_c00134{bottom:85.760000pt;}
.y71_c00134{bottom:119.040000pt;}
.y6d_c00134{bottom:119.680000pt;}
.y70_c00134{bottom:120.320000pt;}
.y6f_c00134{bottom:121.600000pt;}
.y6e_c00134{bottom:122.240000pt;}
.y6c_c00134{bottom:122.880000pt;}
.y6a_c00134{bottom:155.520000pt;}
.y6b_c00134{bottom:157.440000pt;}
.y67_c00134{bottom:159.360000pt;}
.y68_c00134{bottom:160.000000pt;}
.y69_c00134{bottom:160.640000pt;}
.y66_c00134{bottom:161.920000pt;}
.y65_c00134{bottom:162.560000pt;}
.y64_c00134{bottom:193.920000pt;}
.y60_c00134{bottom:194.560000pt;}
.y61_c00134{bottom:195.200000pt;}
.y63_c00134{bottom:195.840000pt;}
.y62_c00134{bottom:197.120000pt;}
.y5f_c00134{bottom:199.040000pt;}
.y5e_c00134{bottom:200.320000pt;}
.y5b_c00134{bottom:231.680000pt;}
.y5a_c00134{bottom:232.960000pt;}
.y5d_c00134{bottom:233.600000pt;}
.y5c_c00134{bottom:234.880000pt;}
.y57_c00134{bottom:235.520000pt;}
.y59_c00134{bottom:236.160000pt;}
.y58_c00134{bottom:236.800000pt;}
.y55_c00134{bottom:270.720000pt;}
.y53_c00134{bottom:272.640000pt;}
.y56_c00134{bottom:273.280000pt;}
.y54_c00134{bottom:273.920000pt;}
.y52_c00134{bottom:321.280000pt;}
.y51_c00134{bottom:321.920000pt;}
.y50_c00134{bottom:322.560000pt;}
.y4b_c00134{bottom:357.120000pt;}
.y4f_c00134{bottom:357.760000pt;}
.y4e_c00134{bottom:358.400000pt;}
.y4d_c00134{bottom:359.040000pt;}
.y4c_c00134{bottom:360.320000pt;}
.y4a_c00134{bottom:360.960000pt;}
.y48_c00134{bottom:394.880000pt;}
.y49_c00134{bottom:396.160000pt;}
.y47_c00134{bottom:396.800000pt;}
.y45_c00134{bottom:397.440000pt;}
.y46_c00134{bottom:398.080000pt;}
.y44_c00134{bottom:433.920000pt;}
.y43_c00134{bottom:434.560000pt;}
.y42_c00134{bottom:435.200000pt;}
.y41_c00134{bottom:435.840000pt;}
.y40_c00134{bottom:436.480000pt;}
.y3d_c00134{bottom:471.040000pt;}
.y3f_c00134{bottom:472.320000pt;}
.y3e_c00134{bottom:472.960000pt;}
.y3c_c00134{bottom:473.600000pt;}
.y3b_c00134{bottom:474.240000pt;}
.y39_c00134{bottom:508.800000pt;}
.y38_c00134{bottom:509.440000pt;}
.y3a_c00134{bottom:510.720000pt;}
.y37_c00134{bottom:511.360000pt;}
.y36_c00134{bottom:546.560000pt;}
.y35_c00134{bottom:547.200000pt;}
.y34_c00134{bottom:549.120000pt;}
.y33_c00134{bottom:549.760000pt;}
.y32_c00134{bottom:550.400000pt;}
.y30_c00134{bottom:595.200000pt;}
.y2f_c00134{bottom:596.480000pt;}
.y31_c00134{bottom:597.120000pt;}
.y2d_c00134{bottom:632.320000pt;}
.y2b_c00134{bottom:634.240000pt;}
.y2c_c00134{bottom:634.880000pt;}
.y2e_c00134{bottom:635.520000pt;}
.y29_c00134{bottom:670.720000pt;}
.y2a_c00134{bottom:671.360000pt;}
.y27_c00134{bottom:672.640000pt;}
.y28_c00134{bottom:673.280000pt;}
.y21_c00134{bottom:707.840000pt;}
.y26_c00134{bottom:709.760000pt;}
.y22_c00134{bottom:710.400000pt;}
.y23_c00134{bottom:711.040000pt;}
.y24_c00134{bottom:711.680000pt;}
.y25_c00134{bottom:712.320000pt;}
.y1a_c00134{bottom:744.960000pt;}
.y1e_c00134{bottom:746.240000pt;}
.y1f_c00134{bottom:747.520000pt;}
.y1c_c00134{bottom:748.160000pt;}
.y1b_c00134{bottom:748.800000pt;}
.y1d_c00134{bottom:749.440000pt;}
.y20_c00134{bottom:750.080000pt;}
.y16_c00134{bottom:784.000000pt;}
.y17_c00134{bottom:784.640000pt;}
.y14_c00134{bottom:785.280000pt;}
.y15_c00134{bottom:785.920000pt;}
.y18_c00134{bottom:787.840000pt;}
.y19_c00134{bottom:788.480000pt;}
.ye_c00134{bottom:823.040000pt;}
.yf_c00134{bottom:823.680000pt;}
.y10_c00134{bottom:824.320000pt;}
.y11_c00134{bottom:824.960000pt;}
.y12_c00134{bottom:825.600000pt;}
.y13_c00134{bottom:826.240000pt;}
.y8_c00134{bottom:858.240000pt;}
.ya_c00134{bottom:860.160000pt;}
.yc_c00134{bottom:860.800000pt;}
.y9_c00134{bottom:862.080000pt;}
.yb_c00134{bottom:864.000000pt;}
.yd_c00134{bottom:865.280000pt;}
.y3_c00134{bottom:899.200000pt;}
.y4_c00134{bottom:899.840000pt;}
.y5_c00134{bottom:900.480000pt;}
.y6_c00134{bottom:901.120000pt;}
.y7_c00134{bottom:901.760000pt;}
.y2_c00134{bottom:970.240000pt;}
.y1_c00134{bottom:971.520000pt;}
.h12_c00134{height:13.822500pt;}
.h5_c00134{height:27.645000pt;}
.he_c00134{height:29.948750pt;}
.h3_c00134{height:32.252500pt;}
.hf_c00134{height:34.556250pt;}
.hd_c00134{height:36.860000pt;}
.h4_c00134{height:39.163750pt;}
.h6_c00134{height:41.467500pt;}
.h7_c00134{height:43.771250pt;}
.ha_c00134{height:46.075000pt;}
.hb_c00134{height:48.378750pt;}
.h9_c00134{height:50.682500pt;}
.h10_c00134{height:52.986250pt;}
.h2_c00134{height:55.290000pt;}
.h8_c00134{height:57.593750pt;}
.hc_c00134{height:59.897500pt;}
.h11_c00134{height:62.201250pt;}
.h0_c00134{height:1025.280000pt;}
.h1_c00134{height:1025.333333pt;}
.w1_c00134{width:698.666667pt;}
.w0_c00134{width:698.880000pt;}
.x0_c00134{left:0.000000pt;}
.x3e_c00134{left:56.320000pt;}
.x3_c00134{left:57.600000pt;}
.x53_c00134{left:60.160000pt;}
.x22_c00134{left:66.560000pt;}
.x40_c00134{left:75.520000pt;}
.x1b_c00134{left:85.120000pt;}
.x50_c00134{left:86.400000pt;}
.x27_c00134{left:94.080000pt;}
.x15_c00134{left:95.360000pt;}
.x23_c00134{left:105.600000pt;}
.x41_c00134{left:113.280000pt;}
.x16_c00134{left:122.880000pt;}
.x37_c00134{left:124.160000pt;}
.x4a_c00134{left:132.480000pt;}
.x4_c00134{left:133.760000pt;}
.x2b_c00134{left:151.040000pt;}
.x38_c00134{left:152.320000pt;}
.x5_c00134{left:161.920000pt;}
.x4e_c00134{left:170.240000pt;}
.xc_c00134{left:180.480000pt;}
.x6_c00134{left:190.080000pt;}
.x42_c00134{left:199.680000pt;}
.x4c_c00134{left:208.000000pt;}
.xd_c00134{left:209.280000pt;}
.x3f_c00134{left:216.960000pt;}
.x43_c00134{left:218.880000pt;}
.x1c_c00134{left:220.800000pt;}
.x2c_c00134{left:227.840000pt;}
.x49_c00134{left:236.800000pt;}
.xe_c00134{left:238.080000pt;}
.x7_c00134{left:246.400000pt;}
.x4d_c00134{left:247.680000pt;}
.x39_c00134{left:257.280000pt;}
.x54_c00134{left:264.960000pt;}
.x2d_c00134{left:266.240000pt;}
.x46_c00134{left:275.200000pt;}
.x24_c00134{left:276.480000pt;}
.x32_c00134{left:286.080000pt;}
.x17_c00134{left:295.680000pt;}
.x8_c00134{left:305.280000pt;}
.x33_c00134{left:313.600000pt;}
.x3c_c00134{left:323.840000pt;}
.x1d_c00134{left:333.440000pt;}
.x2e_c00134{left:343.040000pt;}
.x9_c00134{left:344.960000pt;}
.xf_c00134{left:352.640000pt;}
.x2f_c00134{left:362.880000pt;}
.x3a_c00134{left:371.840000pt;}
.x1e_c00134{left:373.120000pt;}
.x3d_c00134{left:382.080000pt;}
.x47_c00134{left:391.040000pt;}
.x18_c00134{left:392.320000pt;}
.x10_c00134{left:410.880000pt;}
.x34_c00134{left:419.840000pt;}
.x1f_c00134{left:430.080000pt;}
.x28_c00134{left:439.680000pt;}
.x11_c00134{left:449.280000pt;}
.xa_c00134{left:451.840000pt;}
.x19_c00134{left:458.880000pt;}
.x48_c00134{left:468.480000pt;}
.x30_c00134{left:478.080000pt;}
.x29_c00134{left:487.680000pt;}
.x4b_c00134{left:497.280000pt;}
.x20_c00134{left:498.560000pt;}
.x3b_c00134{left:506.880000pt;}
.x25_c00134{left:517.120000pt;}
.x2a_c00134{left:527.360000pt;}
.x51_c00134{left:535.680000pt;}
.x12_c00134{left:536.960000pt;}
.x55_c00134{left:544.000000pt;}
.x35_c00134{left:546.560000pt;}
.xb_c00134{left:554.880000pt;}
.x1a_c00134{left:556.800000pt;}
.x21_c00134{left:565.120000pt;}
.x44_c00134{left:575.360000pt;}
.x31_c00134{left:584.960000pt;}
.x36_c00134{left:586.240000pt;}
.x4f_c00134{left:593.920000pt;}
.x26_c00134{left:595.200000pt;}
.x45_c00134{left:604.800000pt;}
.x1_c00134{left:611.840000pt;}
.x13_c00134{left:615.040000pt;}
.x52_c00134{left:623.360000pt;}
.x2_c00134{left:629.120000pt;}
.x14_c00134{left:633.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_900f2537d733bb59d9b71e4f.woff2')format("woff");}.ff1_c00135{font-family:ff1_c00135;line-height:1.109863;font-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_c00135{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m10_c00135{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m20_c00135{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m16_c00135{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m13_c00135{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_c00135{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m7_c00135{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);}
.m2_c00135{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00135{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);}
.m30_c00135{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m24_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);}
.md_c00135{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m3_c00135{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);}
.m1a_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);}
.m12_c00135{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);}
.m17_c00135{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m0_c00135{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);}
.mc_c00135{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m9_c00135{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);}
.m1d_c00135{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.ma_c00135{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.mb_c00135{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00135{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);}
.m6_c00135{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.me_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);}
.m27_c00135{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00135{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m1_c00135{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00135{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00135{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m5_c00135{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m25_c00135{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m4_c00135{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);}
.m29_c00135{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m19_c00135{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00135{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00135{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m22_c00135{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m15_c00135{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m28_c00135{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m21_c00135{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m8_c00135{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);}
.m26_c00135{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);}
.m1b_c00135{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m23_c00135{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00135{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);}
.m11_c00135{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m14_c00135{transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);}
.mf_c00135{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);}
.v0_c00135{vertical-align:0.000000px;}
.ls0_c00135{letter-spacing:0.000000px;}
.sc__c00135{text-shadow:none;}
.sc0_c00135{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00135{-webkit-text-stroke:0px transparent;}
.sc0_c00135{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00135{word-spacing:0.000000px;}
.fc0_c00135{color:transparent;}
.fs9_c00135{font-size:34.560000px;}
.fs1_c00135{font-size:37.440000px;}
.fs4_c00135{font-size:46.080000px;}
.fs3_c00135{font-size:48.960000px;}
.fs2_c00135{font-size:51.840000px;}
.fs6_c00135{font-size:54.720000px;}
.fs7_c00135{font-size:57.600000px;}
.fs5_c00135{font-size:60.480000px;}
.fs8_c00135{font-size:63.360000px;}
.fs0_c00135{font-size:69.120000px;}
.fsa_c00135{font-size:72.000000px;}
.y0_c00135{bottom:0.000000px;}
.y1d_c00135{bottom:752.400000px;}
.y1c_c00135{bottom:794.880000px;}
.y1b_c00135{bottom:797.040000px;}
.y1a_c00135{bottom:797.760000px;}
.y19_c00135{bottom:837.360000px;}
.y18_c00135{bottom:840.240000px;}
.y17_c00135{bottom:840.960000px;}
.y15_c00135{bottom:880.560000px;}
.y16_c00135{bottom:881.280000px;}
.y13_c00135{bottom:882.720000px;}
.y14_c00135{bottom:883.440000px;}
.yf_c00135{bottom:923.040000px;}
.y10_c00135{bottom:923.760000px;}
.ye_c00135{bottom:925.200000px;}
.y12_c00135{bottom:925.920000px;}
.y11_c00135{bottom:926.640000px;}
.y9_c00135{bottom:965.520000px;}
.yb_c00135{bottom:966.240000px;}
.yd_c00135{bottom:966.960000px;}
.y8_c00135{bottom:968.400000px;}
.yc_c00135{bottom:969.120000px;}
.ya_c00135{bottom:969.840000px;}
.y4_c00135{bottom:1008.720000px;}
.y5_c00135{bottom:1010.160000px;}
.y2_c00135{bottom:1010.880000px;}
.y3_c00135{bottom:1011.600000px;}
.y6_c00135{bottom:1012.320000px;}
.y7_c00135{bottom:1013.040000px;}
.y1_c00135{bottom:1092.240000px;}
.hb_c00135{height:31.100625px;}
.h3_c00135{height:33.692344px;}
.h6_c00135{height:41.467500px;}
.h5_c00135{height:44.059219px;}
.h4_c00135{height:46.650937px;}
.h8_c00135{height:49.242656px;}
.h9_c00135{height:51.834375px;}
.h7_c00135{height:54.426094px;}
.ha_c00135{height:57.017812px;}
.h2_c00135{height:62.201250px;}
.hc_c00135{height:64.792969px;}
.h1_c00135{height:1149.000000px;}
.h0_c00135{height:1149.120000px;}
.w0_c00135{width:781.200000px;}
.w1_c00135{width:781.500000px;}
.x0_c00135{left:0.000000px;}
.x2c_c00135{left:59.040000px;}
.x1a_c00135{left:60.480000px;}
.x2_c00135{left:61.920000px;}
.x23_c00135{left:92.160000px;}
.x12_c00135{left:93.600000px;}
.x3_c00135{left:114.480000px;}
.x24_c00135{left:124.560000px;}
.xd_c00135{left:136.080000px;}
.x1b_c00135{left:156.240000px;}
.x25_c00135{left:167.040000px;}
.x2d_c00135{left:177.120000px;}
.x1c_c00135{left:198.000000px;}
.x4_c00135{left:210.960000px;}
.x13_c00135{left:220.320000px;}
.x5_c00135{left:241.200000px;}
.x14_c00135{left:252.720000px;}
.x1d_c00135{left:262.800000px;}
.xe_c00135{left:264.240000px;}
.x26_c00135{left:274.320000px;}
.x6_c00135{left:295.920000px;}
.xf_c00135{left:306.720000px;}
.x1e_c00135{left:326.160000px;}
.x27_c00135{left:328.320000px;}
.x10_c00135{left:340.560000px;}
.x7_c00135{left:350.640000px;}
.x2e_c00135{left:360.720000px;}
.x15_c00135{left:373.680000px;}
.x28_c00135{left:382.320000px;}
.x29_c00135{left:403.920000px;}
.x1f_c00135{left:414.000000px;}
.x16_c00135{left:415.440000px;}
.x8_c00135{left:426.960000px;}
.x2a_c00135{left:447.120000px;}
.x9_c00135{left:458.640000px;}
.x2f_c00135{left:468.720000px;}
.xa_c00135{left:502.560000px;}
.x20_c00135{left:512.640000px;}
.x21_c00135{left:545.760000px;}
.x17_c00135{left:555.840000px;}
.x30_c00135{left:557.280000px;}
.x2b_c00135{left:566.640000px;}
.xb_c00135{left:568.080000px;}
.x18_c00135{left:599.760000px;}
.x11_c00135{left:644.400000px;}
.x22_c00135{left:666.000000px;}
.xc_c00135{left:677.520000px;}
.x19_c00135{left:688.320000px;}
.x1_c00135{left:693.360000px;}
@media print{
.v0_c00135{vertical-align:0.000000pt;}
.ls0_c00135{letter-spacing:0.000000pt;}
.ws0_c00135{word-spacing:0.000000pt;}
.fs9_c00135{font-size:30.720000pt;}
.fs1_c00135{font-size:33.280000pt;}
.fs4_c00135{font-size:40.960000pt;}
.fs3_c00135{font-size:43.520000pt;}
.fs2_c00135{font-size:46.080000pt;}
.fs6_c00135{font-size:48.640000pt;}
.fs7_c00135{font-size:51.200000pt;}
.fs5_c00135{font-size:53.760000pt;}
.fs8_c00135{font-size:56.320000pt;}
.fs0_c00135{font-size:61.440000pt;}
.fsa_c00135{font-size:64.000000pt;}
.y0_c00135{bottom:0.000000pt;}
.y1d_c00135{bottom:668.800000pt;}
.y1c_c00135{bottom:706.560000pt;}
.y1b_c00135{bottom:708.480000pt;}
.y1a_c00135{bottom:709.120000pt;}
.y19_c00135{bottom:744.320000pt;}
.y18_c00135{bottom:746.880000pt;}
.y17_c00135{bottom:747.520000pt;}
.y15_c00135{bottom:782.720000pt;}
.y16_c00135{bottom:783.360000pt;}
.y13_c00135{bottom:784.640000pt;}
.y14_c00135{bottom:785.280000pt;}
.yf_c00135{bottom:820.480000pt;}
.y10_c00135{bottom:821.120000pt;}
.ye_c00135{bottom:822.400000pt;}
.y12_c00135{bottom:823.040000pt;}
.y11_c00135{bottom:823.680000pt;}
.y9_c00135{bottom:858.240000pt;}
.yb_c00135{bottom:858.880000pt;}
.yd_c00135{bottom:859.520000pt;}
.y8_c00135{bottom:860.800000pt;}
.yc_c00135{bottom:861.440000pt;}
.ya_c00135{bottom:862.080000pt;}
.y4_c00135{bottom:896.640000pt;}
.y5_c00135{bottom:897.920000pt;}
.y2_c00135{bottom:898.560000pt;}
.y3_c00135{bottom:899.200000pt;}
.y6_c00135{bottom:899.840000pt;}
.y7_c00135{bottom:900.480000pt;}
.y1_c00135{bottom:970.880000pt;}
.hb_c00135{height:27.645000pt;}
.h3_c00135{height:29.948750pt;}
.h6_c00135{height:36.860000pt;}
.h5_c00135{height:39.163750pt;}
.h4_c00135{height:41.467500pt;}
.h8_c00135{height:43.771250pt;}
.h9_c00135{height:46.075000pt;}
.h7_c00135{height:48.378750pt;}
.ha_c00135{height:50.682500pt;}
.h2_c00135{height:55.290000pt;}
.hc_c00135{height:57.593750pt;}
.h1_c00135{height:1021.333333pt;}
.h0_c00135{height:1021.440000pt;}
.w0_c00135{width:694.400000pt;}
.w1_c00135{width:694.666667pt;}
.x0_c00135{left:0.000000pt;}
.x2c_c00135{left:52.480000pt;}
.x1a_c00135{left:53.760000pt;}
.x2_c00135{left:55.040000pt;}
.x23_c00135{left:81.920000pt;}
.x12_c00135{left:83.200000pt;}
.x3_c00135{left:101.760000pt;}
.x24_c00135{left:110.720000pt;}
.xd_c00135{left:120.960000pt;}
.x1b_c00135{left:138.880000pt;}
.x25_c00135{left:148.480000pt;}
.x2d_c00135{left:157.440000pt;}
.x1c_c00135{left:176.000000pt;}
.x4_c00135{left:187.520000pt;}
.x13_c00135{left:195.840000pt;}
.x5_c00135{left:214.400000pt;}
.x14_c00135{left:224.640000pt;}
.x1d_c00135{left:233.600000pt;}
.xe_c00135{left:234.880000pt;}
.x26_c00135{left:243.840000pt;}
.x6_c00135{left:263.040000pt;}
.xf_c00135{left:272.640000pt;}
.x1e_c00135{left:289.920000pt;}
.x27_c00135{left:291.840000pt;}
.x10_c00135{left:302.720000pt;}
.x7_c00135{left:311.680000pt;}
.x2e_c00135{left:320.640000pt;}
.x15_c00135{left:332.160000pt;}
.x28_c00135{left:339.840000pt;}
.x29_c00135{left:359.040000pt;}
.x1f_c00135{left:368.000000pt;}
.x16_c00135{left:369.280000pt;}
.x8_c00135{left:379.520000pt;}
.x2a_c00135{left:397.440000pt;}
.x9_c00135{left:407.680000pt;}
.x2f_c00135{left:416.640000pt;}
.xa_c00135{left:446.720000pt;}
.x20_c00135{left:455.680000pt;}
.x21_c00135{left:485.120000pt;}
.x17_c00135{left:494.080000pt;}
.x30_c00135{left:495.360000pt;}
.x2b_c00135{left:503.680000pt;}
.xb_c00135{left:504.960000pt;}
.x18_c00135{left:533.120000pt;}
.x11_c00135{left:572.800000pt;}
.x22_c00135{left:592.000000pt;}
.xc_c00135{left:602.240000pt;}
.x19_c00135{left:611.840000pt;}
.x1_c00135{left:616.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f2fe643b7e29b74399959dee.woff2')format("woff");}.ff1_c00136{font-family:ff1_c00136;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m51_c00136{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);}
.m56_c00136{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);}
.m54_c00136{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m5_c00136{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m2_c00136{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);}
.m53_c00136{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m24_c00136{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m49_c00136{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00136{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00136{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m50_c00136{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m34_c00136{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3_c00136{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m39_c00136{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m33_c00136{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1_c00136{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00136{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m4_c00136{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);}
.m40_c00136{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m23_c00136{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.ma_c00136{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00136{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);}
.m3c_c00136{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m6_c00136{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);}
.m41_c00136{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.md_c00136{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m17_c00136{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m10_c00136{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m22_c00136{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.mc_c00136{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);}
.m8_c00136{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00136{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00136{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m0_c00136{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);}
.m3e_c00136{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);}
.m16_c00136{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_c00136{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00136{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00136{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);}
.m2f_c00136{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00136{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m35_c00136{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m7_c00136{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m26_c00136{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);}
.m48_c00136{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m11_c00136{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);}
.m15_c00136{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);}
.m1b_c00136{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m30_c00136{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00136{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00136{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m55_c00136{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00136{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m37_c00136{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.mb_c00136{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);}
.m3f_c00136{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m42_c00136{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00136{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m38_c00136{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);}
.m9_c00136{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m31_c00136{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00136{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);}
.m47_c00136{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m46_c00136{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m27_c00136{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m18_c00136{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m36_c00136{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);}
.m29_c00136{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);}
.m14_c00136{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00136{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m20_c00136{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);}
.me_c00136{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m52_c00136{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00136{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);}
.m45_c00136{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00136{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m12_c00136{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);}
.m32_c00136{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m28_c00136{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);}
.m4d_c00136{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m21_c00136{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m25_c00136{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00136{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00136{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);}
.m44_c00136{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);}
.m13_c00136{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m43_c00136{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);}
.v1_c00136{vertical-align:-8.640000px;}
.v0_c00136{vertical-align:0.000000px;}
.v2_c00136{vertical-align:2.880000px;}
.ls0_c00136{letter-spacing:0.000000px;}
.sc__c00136{text-shadow:none;}
.sc0_c00136{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00136{-webkit-text-stroke:0px transparent;}
.sc0_c00136{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00136{word-spacing:-3.655920px;}
.ws2_c00136{word-spacing:-2.247108px;}
.ws3_c00136{word-spacing:0.000000px;}
.ws1_c00136{word-spacing:0.297600px;}
.fc0_c00136{color:transparent;}
.fs7_c00136{font-size:34.560000px;}
.fsb_c00136{font-size:37.440000px;}
.fsc_c00136{font-size:40.320000px;}
.fs3_c00136{font-size:46.080000px;}
.fs1_c00136{font-size:48.960000px;}
.fs2_c00136{font-size:51.840000px;}
.fs9_c00136{font-size:54.720000px;}
.fsa_c00136{font-size:57.600000px;}
.fs4_c00136{font-size:60.480000px;}
.fs5_c00136{font-size:63.360000px;}
.fs6_c00136{font-size:66.240000px;}
.fs8_c00136{font-size:69.120000px;}
.fsd_c00136{font-size:72.000000px;}
.fs0_c00136{font-size:74.880000px;}
.y0_c00136{bottom:0.000000px;}
.y7a_c00136{bottom:56.160000px;}
.y7b_c00136{bottom:56.880000px;}
.y77_c00136{bottom:58.320000px;}
.y79_c00136{bottom:60.480000px;}
.y78_c00136{bottom:61.200000px;}
.y75_c00136{bottom:61.920000px;}
.y76_c00136{bottom:63.360000px;}
.y74_c00136{bottom:66.240000px;}
.y73_c00136{bottom:98.640000px;}
.y72_c00136{bottom:102.960000px;}
.y70_c00136{bottom:103.680000px;}
.y71_c00136{bottom:104.400000px;}
.y6f_c00136{bottom:108.000000px;}
.y6e_c00136{bottom:109.440000px;}
.y6c_c00136{bottom:142.560000px;}
.y6b_c00136{bottom:144.000000px;}
.y6d_c00136{bottom:144.720000px;}
.y69_c00136{bottom:146.160000px;}
.y6a_c00136{bottom:146.880000px;}
.y68_c00136{bottom:147.600000px;}
.y67_c00136{bottom:149.040000px;}
.y66_c00136{bottom:200.880000px;}
.y65_c00136{bottom:203.040000px;}
.y63_c00136{bottom:239.760000px;}
.y64_c00136{bottom:241.200000px;}
.y60_c00136{bottom:241.920000px;}
.y62_c00136{bottom:243.360000px;}
.y5f_c00136{bottom:244.080000px;}
.y61_c00136{bottom:244.800000px;}
.y5d_c00136{bottom:282.240000px;}
.y5e_c00136{bottom:284.400000px;}
.y5c_c00136{bottom:285.120000px;}
.y5b_c00136{bottom:285.840000px;}
.y59_c00136{bottom:287.280000px;}
.y5a_c00136{bottom:288.000000px;}
.y55_c00136{bottom:326.880000px;}
.y58_c00136{bottom:327.600000px;}
.y57_c00136{bottom:328.320000px;}
.y56_c00136{bottom:329.040000px;}
.y54_c00136{bottom:331.200000px;}
.y51_c00136{bottom:367.200000px;}
.y53_c00136{bottom:367.920000px;}
.y50_c00136{bottom:369.360000px;}
.y4e_c00136{bottom:370.080000px;}
.y52_c00136{bottom:370.800000px;}
.y4f_c00136{bottom:371.520000px;}
.y4c_c00136{bottom:372.240000px;}
.y4d_c00136{bottom:372.960000px;}
.y4a_c00136{bottom:412.560000px;}
.y4b_c00136{bottom:413.280000px;}
.y49_c00136{bottom:414.000000px;}
.y47_c00136{bottom:414.720000px;}
.y48_c00136{bottom:415.440000px;}
.y46_c00136{bottom:416.160000px;}
.y45_c00136{bottom:464.400000px;}
.y43_c00136{bottom:465.120000px;}
.y42_c00136{bottom:465.840000px;}
.y41_c00136{bottom:466.560000px;}
.y44_c00136{bottom:468.000000px;}
.y40_c00136{bottom:468.720000px;}
.y3f_c00136{bottom:507.600000px;}
.y3c_c00136{bottom:509.040000px;}
.y3d_c00136{bottom:510.480000px;}
.y3e_c00136{bottom:511.200000px;}
.y38_c00136{bottom:550.080000px;}
.y3b_c00136{bottom:550.800000px;}
.y3a_c00136{bottom:552.960000px;}
.y39_c00136{bottom:553.680000px;}
.y37_c00136{bottom:554.400000px;}
.y36_c00136{bottom:555.120000px;}
.y35_c00136{bottom:555.840000px;}
.y32_c00136{bottom:593.280000px;}
.y34_c00136{bottom:594.000000px;}
.y31_c00136{bottom:594.720000px;}
.y33_c00136{bottom:596.160000px;}
.y30_c00136{bottom:596.880000px;}
.y2c_c00136{bottom:635.760000px;}
.y2d_c00136{bottom:636.480000px;}
.y2a_c00136{bottom:637.200000px;}
.y2f_c00136{bottom:638.640000px;}
.y2e_c00136{bottom:639.360000px;}
.y2b_c00136{bottom:640.080000px;}
.y29_c00136{bottom:678.960000px;}
.y27_c00136{bottom:679.680000px;}
.y28_c00136{bottom:681.120000px;}
.y24_c00136{bottom:681.840000px;}
.y26_c00136{bottom:682.560000px;}
.y25_c00136{bottom:683.280000px;}
.y22_c00136{bottom:722.160000px;}
.y21_c00136{bottom:722.880000px;}
.y23_c00136{bottom:725.040000px;}
.y20_c00136{bottom:725.760000px;}
.y1d_c00136{bottom:775.440000px;}
.y1c_c00136{bottom:776.160000px;}
.y1f_c00136{bottom:776.880000px;}
.y1b_c00136{bottom:778.320000px;}
.y1e_c00136{bottom:779.040000px;}
.y1a_c00136{bottom:819.360000px;}
.y17_c00136{bottom:820.080000px;}
.y16_c00136{bottom:820.800000px;}
.y18_c00136{bottom:821.520000px;}
.y19_c00136{bottom:822.240000px;}
.y11_c00136{bottom:861.120000px;}
.y12_c00136{bottom:861.840000px;}
.y10_c00136{bottom:863.280000px;}
.y14_c00136{bottom:864.000000px;}
.y13_c00136{bottom:864.720000px;}
.y15_c00136{bottom:865.440000px;}
.yd_c00136{bottom:903.600000px;}
.yb_c00136{bottom:905.040000px;}
.yc_c00136{bottom:906.480000px;}
.ye_c00136{bottom:907.200000px;}
.yf_c00136{bottom:907.920000px;}
.y6_c00136{bottom:946.080000px;}
.ya_c00136{bottom:947.520000px;}
.y9_c00136{bottom:948.240000px;}
.y5_c00136{bottom:949.680000px;}
.y7_c00136{bottom:950.400000px;}
.y8_c00136{bottom:951.120000px;}
.y2_c00136{bottom:1013.760000px;}
.y3_c00136{bottom:1014.480000px;}
.y4_c00136{bottom:1015.200000px;}
.y1_c00136{bottom:1095.120000px;}
.h9_c00136{height:31.100625px;}
.hd_c00136{height:33.692344px;}
.he_c00136{height:36.284062px;}
.h5_c00136{height:41.467500px;}
.h3_c00136{height:44.059219px;}
.h4_c00136{height:46.650937px;}
.hb_c00136{height:49.242656px;}
.h10_c00136{height:49.530938px;}
.hc_c00136{height:51.834375px;}
.h6_c00136{height:54.426094px;}
.h7_c00136{height:57.017812px;}
.h8_c00136{height:59.609531px;}
.ha_c00136{height:62.201250px;}
.hf_c00136{height:64.792969px;}
.h2_c00136{height:67.384687px;}
.h0_c00136{height:1152.720000px;}
.h1_c00136{height:1152.750000px;}
.w1_c00136{width:785.250000px;}
.w0_c00136{width:785.520000px;}
.x0_c00136{left:0.000000px;}
.x13_c00136{left:51.120000px;}
.x1a_c00136{left:52.560000px;}
.x14_c00136{left:83.520000px;}
.x31_c00136{left:92.880000px;}
.x4a_c00136{left:94.320000px;}
.x2c_c00136{left:105.120000px;}
.x27_c00136{left:115.200000px;}
.x15_c00136{left:126.000000px;}
.x3a_c00136{left:135.360000px;}
.x21_c00136{left:136.800000px;}
.x4d_c00136{left:144.720000px;}
.x3b_c00136{left:146.880000px;}
.x38_c00136{left:156.960000px;}
.xb_c00136{left:158.400000px;}
.x1b_c00136{left:168.480000px;}
.x2_c00136{left:169.920000px;}
.x4e_c00136{left:180.000000px;}
.x47_c00136{left:187.920000px;}
.x32_c00136{left:190.080000px;}
.x46_c00136{left:200.160000px;}
.x3_c00136{left:201.600000px;}
.xc_c00136{left:211.680000px;}
.x22_c00136{left:232.560000px;}
.x3c_c00136{left:235.440000px;}
.x43_c00136{left:242.640000px;}
.x4_c00136{left:244.080000px;}
.x2d_c00136{left:254.880000px;}
.x23_c00136{left:265.680000px;}
.x5_c00136{left:275.760000px;}
.x48_c00136{left:287.280000px;}
.x16_c00136{left:298.080000px;}
.x3f_c00136{left:307.440000px;}
.x44_c00136{left:308.880000px;}
.x6_c00136{left:318.960000px;}
.xd_c00136{left:330.480000px;}
.x3d_c00136{left:339.840000px;}
.x1c_c00136{left:341.280000px;}
.x24_c00136{left:352.080000px;}
.x3e_c00136{left:360.720000px;}
.x4b_c00136{left:362.160000px;}
.x34_c00136{left:372.240000px;}
.xe_c00136{left:373.680000px;}
.x28_c00136{left:384.480000px;}
.x7_c00136{left:388.080000px;}
.x2e_c00136{left:394.560000px;}
.x25_c00136{left:406.080000px;}
.x45_c00136{left:415.440000px;}
.xf_c00136{left:417.600000px;}
.x40_c00136{left:427.680000px;}
.x17_c00136{left:438.480000px;}
.x8_c00136{left:449.280000px;}
.x41_c00136{left:458.640000px;}
.x18_c00136{left:470.880000px;}
.x1d_c00136{left:472.320000px;}
.x29_c00136{left:481.680000px;}
.x10_c00136{left:492.480000px;}
.x35_c00136{left:504.000000px;}
.x9_c00136{left:514.800000px;}
.x42_c00136{left:524.880000px;}
.x1e_c00136{left:526.320000px;}
.x39_c00136{left:535.680000px;}
.xa_c00136{left:547.200000px;}
.x11_c00136{left:558.000000px;}
.x33_c00136{left:580.320000px;}
.x49_c00136{left:589.680000px;}
.x36_c00136{left:591.120000px;}
.x26_c00136{left:601.200000px;}
.x2a_c00136{left:602.640000px;}
.x4c_c00136{left:612.000000px;}
.x1f_c00136{left:613.440000px;}
.x2f_c00136{left:623.520000px;}
.x20_c00136{left:634.320000px;}
.x4f_c00136{left:644.400000px;}
.x30_c00136{left:645.840000px;}
.x19_c00136{left:656.640000px;}
.x37_c00136{left:666.720000px;}
.x1_c00136{left:676.800000px;}
.x2b_c00136{left:678.240000px;}
.x12_c00136{left:689.040000px;}
@media print{
.v1_c00136{vertical-align:-7.680000pt;}
.v0_c00136{vertical-align:0.000000pt;}
.v2_c00136{vertical-align:2.560000pt;}
.ls0_c00136{letter-spacing:0.000000pt;}
.ws0_c00136{word-spacing:-3.249707pt;}
.ws2_c00136{word-spacing:-1.997430pt;}
.ws3_c00136{word-spacing:0.000000pt;}
.ws1_c00136{word-spacing:0.264533pt;}
.fs7_c00136{font-size:30.720000pt;}
.fsb_c00136{font-size:33.280000pt;}
.fsc_c00136{font-size:35.840000pt;}
.fs3_c00136{font-size:40.960000pt;}
.fs1_c00136{font-size:43.520000pt;}
.fs2_c00136{font-size:46.080000pt;}
.fs9_c00136{font-size:48.640000pt;}
.fsa_c00136{font-size:51.200000pt;}
.fs4_c00136{font-size:53.760000pt;}
.fs5_c00136{font-size:56.320000pt;}
.fs6_c00136{font-size:58.880000pt;}
.fs8_c00136{font-size:61.440000pt;}
.fsd_c00136{font-size:64.000000pt;}
.fs0_c00136{font-size:66.560000pt;}
.y0_c00136{bottom:0.000000pt;}
.y7a_c00136{bottom:49.920000pt;}
.y7b_c00136{bottom:50.560000pt;}
.y77_c00136{bottom:51.840000pt;}
.y79_c00136{bottom:53.760000pt;}
.y78_c00136{bottom:54.400000pt;}
.y75_c00136{bottom:55.040000pt;}
.y76_c00136{bottom:56.320000pt;}
.y74_c00136{bottom:58.880000pt;}
.y73_c00136{bottom:87.680000pt;}
.y72_c00136{bottom:91.520000pt;}
.y70_c00136{bottom:92.160000pt;}
.y71_c00136{bottom:92.800000pt;}
.y6f_c00136{bottom:96.000000pt;}
.y6e_c00136{bottom:97.280000pt;}
.y6c_c00136{bottom:126.720000pt;}
.y6b_c00136{bottom:128.000000pt;}
.y6d_c00136{bottom:128.640000pt;}
.y69_c00136{bottom:129.920000pt;}
.y6a_c00136{bottom:130.560000pt;}
.y68_c00136{bottom:131.200000pt;}
.y67_c00136{bottom:132.480000pt;}
.y66_c00136{bottom:178.560000pt;}
.y65_c00136{bottom:180.480000pt;}
.y63_c00136{bottom:213.120000pt;}
.y64_c00136{bottom:214.400000pt;}
.y60_c00136{bottom:215.040000pt;}
.y62_c00136{bottom:216.320000pt;}
.y5f_c00136{bottom:216.960000pt;}
.y61_c00136{bottom:217.600000pt;}
.y5d_c00136{bottom:250.880000pt;}
.y5e_c00136{bottom:252.800000pt;}
.y5c_c00136{bottom:253.440000pt;}
.y5b_c00136{bottom:254.080000pt;}
.y59_c00136{bottom:255.360000pt;}
.y5a_c00136{bottom:256.000000pt;}
.y55_c00136{bottom:290.560000pt;}
.y58_c00136{bottom:291.200000pt;}
.y57_c00136{bottom:291.840000pt;}
.y56_c00136{bottom:292.480000pt;}
.y54_c00136{bottom:294.400000pt;}
.y51_c00136{bottom:326.400000pt;}
.y53_c00136{bottom:327.040000pt;}
.y50_c00136{bottom:328.320000pt;}
.y4e_c00136{bottom:328.960000pt;}
.y52_c00136{bottom:329.600000pt;}
.y4f_c00136{bottom:330.240000pt;}
.y4c_c00136{bottom:330.880000pt;}
.y4d_c00136{bottom:331.520000pt;}
.y4a_c00136{bottom:366.720000pt;}
.y4b_c00136{bottom:367.360000pt;}
.y49_c00136{bottom:368.000000pt;}
.y47_c00136{bottom:368.640000pt;}
.y48_c00136{bottom:369.280000pt;}
.y46_c00136{bottom:369.920000pt;}
.y45_c00136{bottom:412.800000pt;}
.y43_c00136{bottom:413.440000pt;}
.y42_c00136{bottom:414.080000pt;}
.y41_c00136{bottom:414.720000pt;}
.y44_c00136{bottom:416.000000pt;}
.y40_c00136{bottom:416.640000pt;}
.y3f_c00136{bottom:451.200000pt;}
.y3c_c00136{bottom:452.480000pt;}
.y3d_c00136{bottom:453.760000pt;}
.y3e_c00136{bottom:454.400000pt;}
.y38_c00136{bottom:488.960000pt;}
.y3b_c00136{bottom:489.600000pt;}
.y3a_c00136{bottom:491.520000pt;}
.y39_c00136{bottom:492.160000pt;}
.y37_c00136{bottom:492.800000pt;}
.y36_c00136{bottom:493.440000pt;}
.y35_c00136{bottom:494.080000pt;}
.y32_c00136{bottom:527.360000pt;}
.y34_c00136{bottom:528.000000pt;}
.y31_c00136{bottom:528.640000pt;}
.y33_c00136{bottom:529.920000pt;}
.y30_c00136{bottom:530.560000pt;}
.y2c_c00136{bottom:565.120000pt;}
.y2d_c00136{bottom:565.760000pt;}
.y2a_c00136{bottom:566.400000pt;}
.y2f_c00136{bottom:567.680000pt;}
.y2e_c00136{bottom:568.320000pt;}
.y2b_c00136{bottom:568.960000pt;}
.y29_c00136{bottom:603.520000pt;}
.y27_c00136{bottom:604.160000pt;}
.y28_c00136{bottom:605.440000pt;}
.y24_c00136{bottom:606.080000pt;}
.y26_c00136{bottom:606.720000pt;}
.y25_c00136{bottom:607.360000pt;}
.y22_c00136{bottom:641.920000pt;}
.y21_c00136{bottom:642.560000pt;}
.y23_c00136{bottom:644.480000pt;}
.y20_c00136{bottom:645.120000pt;}
.y1d_c00136{bottom:689.280000pt;}
.y1c_c00136{bottom:689.920000pt;}
.y1f_c00136{bottom:690.560000pt;}
.y1b_c00136{bottom:691.840000pt;}
.y1e_c00136{bottom:692.480000pt;}
.y1a_c00136{bottom:728.320000pt;}
.y17_c00136{bottom:728.960000pt;}
.y16_c00136{bottom:729.600000pt;}
.y18_c00136{bottom:730.240000pt;}
.y19_c00136{bottom:730.880000pt;}
.y11_c00136{bottom:765.440000pt;}
.y12_c00136{bottom:766.080000pt;}
.y10_c00136{bottom:767.360000pt;}
.y14_c00136{bottom:768.000000pt;}
.y13_c00136{bottom:768.640000pt;}
.y15_c00136{bottom:769.280000pt;}
.yd_c00136{bottom:803.200000pt;}
.yb_c00136{bottom:804.480000pt;}
.yc_c00136{bottom:805.760000pt;}
.ye_c00136{bottom:806.400000pt;}
.yf_c00136{bottom:807.040000pt;}
.y6_c00136{bottom:840.960000pt;}
.ya_c00136{bottom:842.240000pt;}
.y9_c00136{bottom:842.880000pt;}
.y5_c00136{bottom:844.160000pt;}
.y7_c00136{bottom:844.800000pt;}
.y8_c00136{bottom:845.440000pt;}
.y2_c00136{bottom:901.120000pt;}
.y3_c00136{bottom:901.760000pt;}
.y4_c00136{bottom:902.400000pt;}
.y1_c00136{bottom:973.440000pt;}
.h9_c00136{height:27.645000pt;}
.hd_c00136{height:29.948750pt;}
.he_c00136{height:32.252500pt;}
.h5_c00136{height:36.860000pt;}
.h3_c00136{height:39.163750pt;}
.h4_c00136{height:41.467500pt;}
.hb_c00136{height:43.771250pt;}
.h10_c00136{height:44.027500pt;}
.hc_c00136{height:46.075000pt;}
.h6_c00136{height:48.378750pt;}
.h7_c00136{height:50.682500pt;}
.h8_c00136{height:52.986250pt;}
.ha_c00136{height:55.290000pt;}
.hf_c00136{height:57.593750pt;}
.h2_c00136{height:59.897500pt;}
.h0_c00136{height:1024.640000pt;}
.h1_c00136{height:1024.666667pt;}
.w1_c00136{width:698.000000pt;}
.w0_c00136{width:698.240000pt;}
.x0_c00136{left:0.000000pt;}
.x13_c00136{left:45.440000pt;}
.x1a_c00136{left:46.720000pt;}
.x14_c00136{left:74.240000pt;}
.x31_c00136{left:82.560000pt;}
.x4a_c00136{left:83.840000pt;}
.x2c_c00136{left:93.440000pt;}
.x27_c00136{left:102.400000pt;}
.x15_c00136{left:112.000000pt;}
.x3a_c00136{left:120.320000pt;}
.x21_c00136{left:121.600000pt;}
.x4d_c00136{left:128.640000pt;}
.x3b_c00136{left:130.560000pt;}
.x38_c00136{left:139.520000pt;}
.xb_c00136{left:140.800000pt;}
.x1b_c00136{left:149.760000pt;}
.x2_c00136{left:151.040000pt;}
.x4e_c00136{left:160.000000pt;}
.x47_c00136{left:167.040000pt;}
.x32_c00136{left:168.960000pt;}
.x46_c00136{left:177.920000pt;}
.x3_c00136{left:179.200000pt;}
.xc_c00136{left:188.160000pt;}
.x22_c00136{left:206.720000pt;}
.x3c_c00136{left:209.280000pt;}
.x43_c00136{left:215.680000pt;}
.x4_c00136{left:216.960000pt;}
.x2d_c00136{left:226.560000pt;}
.x23_c00136{left:236.160000pt;}
.x5_c00136{left:245.120000pt;}
.x48_c00136{left:255.360000pt;}
.x16_c00136{left:264.960000pt;}
.x3f_c00136{left:273.280000pt;}
.x44_c00136{left:274.560000pt;}
.x6_c00136{left:283.520000pt;}
.xd_c00136{left:293.760000pt;}
.x3d_c00136{left:302.080000pt;}
.x1c_c00136{left:303.360000pt;}
.x24_c00136{left:312.960000pt;}
.x3e_c00136{left:320.640000pt;}
.x4b_c00136{left:321.920000pt;}
.x34_c00136{left:330.880000pt;}
.xe_c00136{left:332.160000pt;}
.x28_c00136{left:341.760000pt;}
.x7_c00136{left:344.960000pt;}
.x2e_c00136{left:350.720000pt;}
.x25_c00136{left:360.960000pt;}
.x45_c00136{left:369.280000pt;}
.xf_c00136{left:371.200000pt;}
.x40_c00136{left:380.160000pt;}
.x17_c00136{left:389.760000pt;}
.x8_c00136{left:399.360000pt;}
.x41_c00136{left:407.680000pt;}
.x18_c00136{left:418.560000pt;}
.x1d_c00136{left:419.840000pt;}
.x29_c00136{left:428.160000pt;}
.x10_c00136{left:437.760000pt;}
.x35_c00136{left:448.000000pt;}
.x9_c00136{left:457.600000pt;}
.x42_c00136{left:466.560000pt;}
.x1e_c00136{left:467.840000pt;}
.x39_c00136{left:476.160000pt;}
.xa_c00136{left:486.400000pt;}
.x11_c00136{left:496.000000pt;}
.x33_c00136{left:515.840000pt;}
.x49_c00136{left:524.160000pt;}
.x36_c00136{left:525.440000pt;}
.x26_c00136{left:534.400000pt;}
.x2a_c00136{left:535.680000pt;}
.x4c_c00136{left:544.000000pt;}
.x1f_c00136{left:545.280000pt;}
.x2f_c00136{left:554.240000pt;}
.x20_c00136{left:563.840000pt;}
.x4f_c00136{left:572.800000pt;}
.x30_c00136{left:574.080000pt;}
.x19_c00136{left:583.680000pt;}
.x37_c00136{left:592.640000pt;}
.x1_c00136{left:601.600000pt;}
.x2b_c00136{left:602.880000pt;}
.x12_c00136{left:612.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_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_b89830a91b830e055ae3350c.woff2')format("woff");}.ff1_c00137{font-family:ff1_c00137;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m59_c00137{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m1_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);}
.m51_c00137{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mc_c00137{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00137{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m14_c00137{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mb_c00137{transform:matrix(0.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);}
.m2f_c00137{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);}
.m2b_c00137{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m34_c00137{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.me_c00137{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m53_c00137{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m52_c00137{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m11_c00137{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m25_c00137{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);}
.m4b_c00137{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00137{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m15_c00137{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);}
.m30_c00137{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m3_c00137{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.md_c00137{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);}
.m40_c00137{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m43_c00137{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m6_c00137{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m48_c00137{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);}
.m36_c00137{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);}
.m13_c00137{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00137{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m32_c00137{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m0_c00137{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);}
.m3c_c00137{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);}
.m44_c00137{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00137{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);}
.m55_c00137{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m12_c00137{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m56_c00137{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);}
.m8_c00137{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m2_c00137{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00137{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m9_c00137{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m45_c00137{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);}
.m41_c00137{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m46_c00137{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);}
.m4f_c00137{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00137{transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00137{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);}
.m31_c00137{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00137{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m35_c00137{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m16_c00137{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m5_c00137{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);}
.m3a_c00137{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00137{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);}
.m5e_c00137{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00137{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_c00137{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m27_c00137{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00137{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m54_c00137{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);}
.ma_c00137{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00137{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m7_c00137{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m47_c00137{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);}
.m2e_c00137{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m33_c00137{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00137{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m22_c00137{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);}
.m42_c00137{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);}
.m24_c00137{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m21_c00137{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m50_c00137{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);}
.m23_c00137{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00137{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00137{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00137{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00137{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m10_c00137{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);}
.m28_c00137{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00137{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);}
.m4c_c00137{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.mf_c00137{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);}
.m26_c00137{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m17_c00137{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m18_c00137{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00137{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m57_c00137{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00137{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);}
.m38_c00137{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);}
.m37_c00137{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);}
.m19_c00137{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m4_c00137{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m39_c00137{transform:matrix(0.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680000,0.000000,0.000000,0.250000,0,0);}
.m29_c00137{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m49_c00137{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m58_c00137{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.v1_c00137{vertical-align:-11.520000px;}
.v3_c00137{vertical-align:-8.640000px;}
.v0_c00137{vertical-align:0.000000px;}
.v2_c00137{vertical-align:2.880000px;}
.ls0_c00137{letter-spacing:0.000000px;}
.sc__c00137{text-shadow:none;}
.sc0_c00137{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00137{-webkit-text-stroke:0px transparent;}
.sc0_c00137{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00137{word-spacing:-5.290320px;}
.ws0_c00137{word-spacing:-4.821840px;}
.ws3_c00137{word-spacing:0.000000px;}
.ws1_c00137{word-spacing:2.093040px;}
.fc0_c00137{color:transparent;}
.fse_c00137{font-size:14.400000px;}
.fs4_c00137{font-size:34.560000px;}
.fs1_c00137{font-size:37.440000px;}
.fsb_c00137{font-size:46.080000px;}
.fs2_c00137{font-size:48.960000px;}
.fs5_c00137{font-size:51.840000px;}
.fs6_c00137{font-size:54.720000px;}
.fs9_c00137{font-size:57.600000px;}
.fsa_c00137{font-size:60.480000px;}
.fs3_c00137{font-size:63.360000px;}
.fsc_c00137{font-size:66.240000px;}
.fs8_c00137{font-size:69.120000px;}
.fs0_c00137{font-size:72.000000px;}
.fs7_c00137{font-size:74.880000px;}
.fsd_c00137{font-size:77.760000px;}
.y0_c00137{bottom:0.000000px;}
.y80_c00137{bottom:20.880000px;}
.y7e_c00137{bottom:21.600000px;}
.y7d_c00137{bottom:22.320000px;}
.y82_c00137{bottom:23.040000px;}
.y81_c00137{bottom:24.480000px;}
.y7f_c00137{bottom:25.200000px;}
.y7c_c00137{bottom:27.360000px;}
.y7b_c00137{bottom:28.800000px;}
.y7a_c00137{bottom:30.240000px;}
.y77_c00137{bottom:64.080000px;}
.y76_c00137{bottom:64.800000px;}
.y79_c00137{bottom:65.520000px;}
.y78_c00137{bottom:66.240000px;}
.y75_c00137{bottom:66.960000px;}
.y73_c00137{bottom:67.680000px;}
.y71_c00137{bottom:69.120000px;}
.y72_c00137{bottom:70.560000px;}
.y74_c00137{bottom:72.000000px;}
.y6c_c00137{bottom:108.720000px;}
.y70_c00137{bottom:109.440000px;}
.y6f_c00137{bottom:110.160000px;}
.y6e_c00137{bottom:110.880000px;}
.y6d_c00137{bottom:111.600000px;}
.y6b_c00137{bottom:113.040000px;}
.y69_c00137{bottom:161.280000px;}
.y67_c00137{bottom:162.000000px;}
.y6a_c00137{bottom:163.440000px;}
.y68_c00137{bottom:164.160000px;}
.y66_c00137{bottom:165.600000px;}
.y65_c00137{bottom:166.320000px;}
.y61_c00137{bottom:203.040000px;}
.y64_c00137{bottom:203.760000px;}
.y63_c00137{bottom:205.920000px;}
.y62_c00137{bottom:206.640000px;}
.y60_c00137{bottom:208.080000px;}
.y5f_c00137{bottom:210.240000px;}
.y5e_c00137{bottom:244.800000px;}
.y5a_c00137{bottom:245.520000px;}
.y5c_c00137{bottom:247.680000px;}
.y59_c00137{bottom:248.400000px;}
.y5d_c00137{bottom:249.120000px;}
.y5b_c00137{bottom:249.840000px;}
.y58_c00137{bottom:250.560000px;}
.y57_c00137{bottom:289.440000px;}
.y55_c00137{bottom:290.160000px;}
.y56_c00137{bottom:292.320000px;}
.y54_c00137{bottom:293.040000px;}
.y53_c00137{bottom:293.760000px;}
.y52_c00137{bottom:294.480000px;}
.y51_c00137{bottom:295.200000px;}
.y4f_c00137{bottom:332.640000px;}
.y4e_c00137{bottom:334.080000px;}
.y50_c00137{bottom:334.800000px;}
.y4c_c00137{bottom:336.240000px;}
.y4d_c00137{bottom:336.960000px;}
.y4a_c00137{bottom:375.840000px;}
.y49_c00137{bottom:376.560000px;}
.y4b_c00137{bottom:378.000000px;}
.y48_c00137{bottom:379.440000px;}
.y47_c00137{bottom:380.160000px;}
.y46_c00137{bottom:431.280000px;}
.y45_c00137{bottom:473.040000px;}
.y41_c00137{bottom:474.480000px;}
.y44_c00137{bottom:475.200000px;}
.y42_c00137{bottom:475.920000px;}
.y43_c00137{bottom:476.640000px;}
.y40_c00137{bottom:514.800000px;}
.y3b_c00137{bottom:515.520000px;}
.y3d_c00137{bottom:516.240000px;}
.y3c_c00137{bottom:516.960000px;}
.y3e_c00137{bottom:517.680000px;}
.y3f_c00137{bottom:518.400000px;}
.y3a_c00137{bottom:558.720000px;}
.y39_c00137{bottom:560.880000px;}
.y38_c00137{bottom:561.600000px;}
.y37_c00137{bottom:599.760000px;}
.y34_c00137{bottom:600.480000px;}
.y35_c00137{bottom:601.200000px;}
.y36_c00137{bottom:603.360000px;}
.y33_c00137{bottom:604.080000px;}
.y32_c00137{bottom:604.800000px;}
.y30_c00137{bottom:644.400000px;}
.y31_c00137{bottom:646.560000px;}
.y2f_c00137{bottom:647.280000px;}
.y2a_c00137{bottom:697.680000px;}
.y2c_c00137{bottom:698.400000px;}
.y29_c00137{bottom:699.120000px;}
.y2b_c00137{bottom:699.840000px;}
.y2e_c00137{bottom:700.560000px;}
.y2d_c00137{bottom:701.280000px;}
.y23_c00137{bottom:738.720000px;}
.y24_c00137{bottom:740.880000px;}
.y27_c00137{bottom:741.600000px;}
.y22_c00137{bottom:742.320000px;}
.y26_c00137{bottom:743.040000px;}
.y25_c00137{bottom:743.760000px;}
.y28_c00137{bottom:744.480000px;}
.y1f_c00137{bottom:783.360000px;}
.y1c_c00137{bottom:784.800000px;}
.y1d_c00137{bottom:785.520000px;}
.y1e_c00137{bottom:786.240000px;}
.y20_c00137{bottom:786.960000px;}
.y21_c00137{bottom:787.680000px;}
.y17_c00137{bottom:824.400000px;}
.y18_c00137{bottom:825.840000px;}
.y19_c00137{bottom:828.720000px;}
.y1a_c00137{bottom:829.440000px;}
.y1b_c00137{bottom:830.160000px;}
.y16_c00137{bottom:869.760000px;}
.y13_c00137{bottom:871.200000px;}
.y12_c00137{bottom:871.920000px;}
.y14_c00137{bottom:872.640000px;}
.y15_c00137{bottom:873.360000px;}
.y10_c00137{bottom:922.320000px;}
.ye_c00137{bottom:923.040000px;}
.y11_c00137{bottom:923.760000px;}
.yf_c00137{bottom:925.200000px;}
.yb_c00137{bottom:964.800000px;}
.y8_c00137{bottom:965.520000px;}
.y9_c00137{bottom:966.240000px;}
.ya_c00137{bottom:966.960000px;}
.yc_c00137{bottom:968.400000px;}
.yd_c00137{bottom:969.840000px;}
.y4_c00137{bottom:1007.280000px;}
.y2_c00137{bottom:1008.000000px;}
.y3_c00137{bottom:1008.720000px;}
.y6_c00137{bottom:1009.440000px;}
.y5_c00137{bottom:1010.880000px;}
.y7_c00137{bottom:1012.320000px;}
.y1_c00137{bottom:1092.960000px;}
.h11_c00137{height:12.958594px;}
.h6_c00137{height:31.100625px;}
.h3_c00137{height:33.692344px;}
.hd_c00137{height:41.467500px;}
.h4_c00137{height:44.059219px;}
.h7_c00137{height:46.650937px;}
.h8_c00137{height:49.242656px;}
.he_c00137{height:49.530938px;}
.hb_c00137{height:51.834375px;}
.hc_c00137{height:54.426094px;}
.h5_c00137{height:57.017812px;}
.hf_c00137{height:59.609531px;}
.ha_c00137{height:62.201250px;}
.h2_c00137{height:64.792969px;}
.h9_c00137{height:67.384687px;}
.h10_c00137{height:69.976406px;}
.h0_c00137{height:1152.720000px;}
.h1_c00137{height:1152.750000px;}
.w1_c00137{width:785.250000px;}
.w0_c00137{width:785.520000px;}
.x0_c00137{left:0.000000px;}
.x2_c00137{left:51.840000px;}
.xb_c00137{left:53.280000px;}
.x3_c00137{left:84.240000px;}
.xc_c00137{left:95.040000px;}
.x41_c00137{left:103.680000px;}
.x21_c00137{left:105.840000px;}
.x45_c00137{left:115.920000px;}
.x53_c00137{left:125.280000px;}
.x1d_c00137{left:126.720000px;}
.x4_c00137{left:137.520000px;}
.x22_c00137{left:147.600000px;}
.x50_c00137{left:149.040000px;}
.x16_c00137{left:158.400000px;}
.x4e_c00137{left:159.840000px;}
.x4c_c00137{left:168.480000px;}
.xd_c00137{left:169.920000px;}
.x38_c00137{left:179.280000px;}
.x17_c00137{left:190.800000px;}
.x4d_c00137{left:200.880000px;}
.x1e_c00137{left:202.320000px;}
.xe_c00137{left:211.680000px;}
.x51_c00137{left:213.120000px;}
.x2d_c00137{left:223.200000px;}
.x47_c00137{left:233.280000px;}
.x33_c00137{left:234.720000px;}
.x5_c00137{left:244.800000px;}
.x42_c00137{left:254.880000px;}
.x13_c00137{left:256.320000px;}
.x2e_c00137{left:265.680000px;}
.x34_c00137{left:267.120000px;}
.x29_c00137{left:276.480000px;}
.xf_c00137{left:277.920000px;}
.x3f_c00137{left:298.080000px;}
.x6_c00137{left:299.520000px;}
.x23_c00137{left:308.160000px;}
.x3c_c00137{left:309.600000px;}
.x48_c00137{left:318.240000px;}
.x2a_c00137{left:320.400000px;}
.x4f_c00137{left:330.480000px;}
.x14_c00137{left:334.800000px;}
.x3d_c00137{left:341.280000px;}
.x31_c00137{left:352.080000px;}
.x1f_c00137{left:353.520000px;}
.x49_c00137{left:364.320000px;}
.x4b_c00137{left:374.400000px;}
.x18_c00137{left:385.200000px;}
.x35_c00137{left:386.640000px;}
.x24_c00137{left:396.000000px;}
.x54_c00137{left:406.080000px;}
.x7_c00137{left:407.520000px;}
.x3a_c00137{left:416.880000px;}
.x10_c00137{left:418.320000px;}
.x2f_c00137{left:427.680000px;}
.x25_c00137{left:439.200000px;}
.x4a_c00137{left:440.640000px;}
.x20_c00137{left:449.280000px;}
.x11_c00137{left:451.440000px;}
.x39_c00137{left:460.800000px;}
.x36_c00137{left:472.320000px;}
.x15_c00137{left:483.120000px;}
.x2b_c00137{left:493.200000px;}
.x43_c00137{left:503.280000px;}
.x37_c00137{left:504.720000px;}
.x30_c00137{left:514.080000px;}
.x19_c00137{left:516.240000px;}
.x8_c00137{left:527.040000px;}
.x26_c00137{left:537.840000px;}
.x40_c00137{left:547.200000px;}
.x1a_c00137{left:548.640000px;}
.x3b_c00137{left:558.720000px;}
.x9_c00137{left:570.960000px;}
.x44_c00137{left:591.840000px;}
.x12_c00137{left:602.640000px;}
.x2c_c00137{left:612.720000px;}
.x46_c00137{left:624.240000px;}
.x27_c00137{left:635.040000px;}
.x1b_c00137{left:645.840000px;}
.x52_c00137{left:656.640000px;}
.x3e_c00137{left:658.080000px;}
.x32_c00137{left:667.440000px;}
.xa_c00137{left:669.600000px;}
.x28_c00137{left:678.960000px;}
.x1_c00137{left:686.160000px;}
.x1c_c00137{left:689.040000px;}
@media print{
.v1_c00137{vertical-align:-10.240000pt;}
.v3_c00137{vertical-align:-7.680000pt;}
.v0_c00137{vertical-align:0.000000pt;}
.v2_c00137{vertical-align:2.560000pt;}
.ls0_c00137{letter-spacing:0.000000pt;}
.ws2_c00137{word-spacing:-4.702507pt;}
.ws0_c00137{word-spacing:-4.286080pt;}
.ws3_c00137{word-spacing:0.000000pt;}
.ws1_c00137{word-spacing:1.860480pt;}
.fse_c00137{font-size:12.800000pt;}
.fs4_c00137{font-size:30.720000pt;}
.fs1_c00137{font-size:33.280000pt;}
.fsb_c00137{font-size:40.960000pt;}
.fs2_c00137{font-size:43.520000pt;}
.fs5_c00137{font-size:46.080000pt;}
.fs6_c00137{font-size:48.640000pt;}
.fs9_c00137{font-size:51.200000pt;}
.fsa_c00137{font-size:53.760000pt;}
.fs3_c00137{font-size:56.320000pt;}
.fsc_c00137{font-size:58.880000pt;}
.fs8_c00137{font-size:61.440000pt;}
.fs0_c00137{font-size:64.000000pt;}
.fs7_c00137{font-size:66.560000pt;}
.fsd_c00137{font-size:69.120000pt;}
.y0_c00137{bottom:0.000000pt;}
.y80_c00137{bottom:18.560000pt;}
.y7e_c00137{bottom:19.200000pt;}
.y7d_c00137{bottom:19.840000pt;}
.y82_c00137{bottom:20.480000pt;}
.y81_c00137{bottom:21.760000pt;}
.y7f_c00137{bottom:22.400000pt;}
.y7c_c00137{bottom:24.320000pt;}
.y7b_c00137{bottom:25.600000pt;}
.y7a_c00137{bottom:26.880000pt;}
.y77_c00137{bottom:56.960000pt;}
.y76_c00137{bottom:57.600000pt;}
.y79_c00137{bottom:58.240000pt;}
.y78_c00137{bottom:58.880000pt;}
.y75_c00137{bottom:59.520000pt;}
.y73_c00137{bottom:60.160000pt;}
.y71_c00137{bottom:61.440000pt;}
.y72_c00137{bottom:62.720000pt;}
.y74_c00137{bottom:64.000000pt;}
.y6c_c00137{bottom:96.640000pt;}
.y70_c00137{bottom:97.280000pt;}
.y6f_c00137{bottom:97.920000pt;}
.y6e_c00137{bottom:98.560000pt;}
.y6d_c00137{bottom:99.200000pt;}
.y6b_c00137{bottom:100.480000pt;}
.y69_c00137{bottom:143.360000pt;}
.y67_c00137{bottom:144.000000pt;}
.y6a_c00137{bottom:145.280000pt;}
.y68_c00137{bottom:145.920000pt;}
.y66_c00137{bottom:147.200000pt;}
.y65_c00137{bottom:147.840000pt;}
.y61_c00137{bottom:180.480000pt;}
.y64_c00137{bottom:181.120000pt;}
.y63_c00137{bottom:183.040000pt;}
.y62_c00137{bottom:183.680000pt;}
.y60_c00137{bottom:184.960000pt;}
.y5f_c00137{bottom:186.880000pt;}
.y5e_c00137{bottom:217.600000pt;}
.y5a_c00137{bottom:218.240000pt;}
.y5c_c00137{bottom:220.160000pt;}
.y59_c00137{bottom:220.800000pt;}
.y5d_c00137{bottom:221.440000pt;}
.y5b_c00137{bottom:222.080000pt;}
.y58_c00137{bottom:222.720000pt;}
.y57_c00137{bottom:257.280000pt;}
.y55_c00137{bottom:257.920000pt;}
.y56_c00137{bottom:259.840000pt;}
.y54_c00137{bottom:260.480000pt;}
.y53_c00137{bottom:261.120000pt;}
.y52_c00137{bottom:261.760000pt;}
.y51_c00137{bottom:262.400000pt;}
.y4f_c00137{bottom:295.680000pt;}
.y4e_c00137{bottom:296.960000pt;}
.y50_c00137{bottom:297.600000pt;}
.y4c_c00137{bottom:298.880000pt;}
.y4d_c00137{bottom:299.520000pt;}
.y4a_c00137{bottom:334.080000pt;}
.y49_c00137{bottom:334.720000pt;}
.y4b_c00137{bottom:336.000000pt;}
.y48_c00137{bottom:337.280000pt;}
.y47_c00137{bottom:337.920000pt;}
.y46_c00137{bottom:383.360000pt;}
.y45_c00137{bottom:420.480000pt;}
.y41_c00137{bottom:421.760000pt;}
.y44_c00137{bottom:422.400000pt;}
.y42_c00137{bottom:423.040000pt;}
.y43_c00137{bottom:423.680000pt;}
.y40_c00137{bottom:457.600000pt;}
.y3b_c00137{bottom:458.240000pt;}
.y3d_c00137{bottom:458.880000pt;}
.y3c_c00137{bottom:459.520000pt;}
.y3e_c00137{bottom:460.160000pt;}
.y3f_c00137{bottom:460.800000pt;}
.y3a_c00137{bottom:496.640000pt;}
.y39_c00137{bottom:498.560000pt;}
.y38_c00137{bottom:499.200000pt;}
.y37_c00137{bottom:533.120000pt;}
.y34_c00137{bottom:533.760000pt;}
.y35_c00137{bottom:534.400000pt;}
.y36_c00137{bottom:536.320000pt;}
.y33_c00137{bottom:536.960000pt;}
.y32_c00137{bottom:537.600000pt;}
.y30_c00137{bottom:572.800000pt;}
.y31_c00137{bottom:574.720000pt;}
.y2f_c00137{bottom:575.360000pt;}
.y2a_c00137{bottom:620.160000pt;}
.y2c_c00137{bottom:620.800000pt;}
.y29_c00137{bottom:621.440000pt;}
.y2b_c00137{bottom:622.080000pt;}
.y2e_c00137{bottom:622.720000pt;}
.y2d_c00137{bottom:623.360000pt;}
.y23_c00137{bottom:656.640000pt;}
.y24_c00137{bottom:658.560000pt;}
.y27_c00137{bottom:659.200000pt;}
.y22_c00137{bottom:659.840000pt;}
.y26_c00137{bottom:660.480000pt;}
.y25_c00137{bottom:661.120000pt;}
.y28_c00137{bottom:661.760000pt;}
.y1f_c00137{bottom:696.320000pt;}
.y1c_c00137{bottom:697.600000pt;}
.y1d_c00137{bottom:698.240000pt;}
.y1e_c00137{bottom:698.880000pt;}
.y20_c00137{bottom:699.520000pt;}
.y21_c00137{bottom:700.160000pt;}
.y17_c00137{bottom:732.800000pt;}
.y18_c00137{bottom:734.080000pt;}
.y19_c00137{bottom:736.640000pt;}
.y1a_c00137{bottom:737.280000pt;}
.y1b_c00137{bottom:737.920000pt;}
.y16_c00137{bottom:773.120000pt;}
.y13_c00137{bottom:774.400000pt;}
.y12_c00137{bottom:775.040000pt;}
.y14_c00137{bottom:775.680000pt;}
.y15_c00137{bottom:776.320000pt;}
.y10_c00137{bottom:819.840000pt;}
.ye_c00137{bottom:820.480000pt;}
.y11_c00137{bottom:821.120000pt;}
.yf_c00137{bottom:822.400000pt;}
.yb_c00137{bottom:857.600000pt;}
.y8_c00137{bottom:858.240000pt;}
.y9_c00137{bottom:858.880000pt;}
.ya_c00137{bottom:859.520000pt;}
.yc_c00137{bottom:860.800000pt;}
.yd_c00137{bottom:862.080000pt;}
.y4_c00137{bottom:895.360000pt;}
.y2_c00137{bottom:896.000000pt;}
.y3_c00137{bottom:896.640000pt;}
.y6_c00137{bottom:897.280000pt;}
.y5_c00137{bottom:898.560000pt;}
.y7_c00137{bottom:899.840000pt;}
.y1_c00137{bottom:971.520000pt;}
.h11_c00137{height:11.518750pt;}
.h6_c00137{height:27.645000pt;}
.h3_c00137{height:29.948750pt;}
.hd_c00137{height:36.860000pt;}
.h4_c00137{height:39.163750pt;}
.h7_c00137{height:41.467500pt;}
.h8_c00137{height:43.771250pt;}
.he_c00137{height:44.027500pt;}
.hb_c00137{height:46.075000pt;}
.hc_c00137{height:48.378750pt;}
.h5_c00137{height:50.682500pt;}
.hf_c00137{height:52.986250pt;}
.ha_c00137{height:55.290000pt;}
.h2_c00137{height:57.593750pt;}
.h9_c00137{height:59.897500pt;}
.h10_c00137{height:62.201250pt;}
.h0_c00137{height:1024.640000pt;}
.h1_c00137{height:1024.666667pt;}
.w1_c00137{width:698.000000pt;}
.w0_c00137{width:698.240000pt;}
.x0_c00137{left:0.000000pt;}
.x2_c00137{left:46.080000pt;}
.xb_c00137{left:47.360000pt;}
.x3_c00137{left:74.880000pt;}
.xc_c00137{left:84.480000pt;}
.x41_c00137{left:92.160000pt;}
.x21_c00137{left:94.080000pt;}
.x45_c00137{left:103.040000pt;}
.x53_c00137{left:111.360000pt;}
.x1d_c00137{left:112.640000pt;}
.x4_c00137{left:122.240000pt;}
.x22_c00137{left:131.200000pt;}
.x50_c00137{left:132.480000pt;}
.x16_c00137{left:140.800000pt;}
.x4e_c00137{left:142.080000pt;}
.x4c_c00137{left:149.760000pt;}
.xd_c00137{left:151.040000pt;}
.x38_c00137{left:159.360000pt;}
.x17_c00137{left:169.600000pt;}
.x4d_c00137{left:178.560000pt;}
.x1e_c00137{left:179.840000pt;}
.xe_c00137{left:188.160000pt;}
.x51_c00137{left:189.440000pt;}
.x2d_c00137{left:198.400000pt;}
.x47_c00137{left:207.360000pt;}
.x33_c00137{left:208.640000pt;}
.x5_c00137{left:217.600000pt;}
.x42_c00137{left:226.560000pt;}
.x13_c00137{left:227.840000pt;}
.x2e_c00137{left:236.160000pt;}
.x34_c00137{left:237.440000pt;}
.x29_c00137{left:245.760000pt;}
.xf_c00137{left:247.040000pt;}
.x3f_c00137{left:264.960000pt;}
.x6_c00137{left:266.240000pt;}
.x23_c00137{left:273.920000pt;}
.x3c_c00137{left:275.200000pt;}
.x48_c00137{left:282.880000pt;}
.x2a_c00137{left:284.800000pt;}
.x4f_c00137{left:293.760000pt;}
.x14_c00137{left:297.600000pt;}
.x3d_c00137{left:303.360000pt;}
.x31_c00137{left:312.960000pt;}
.x1f_c00137{left:314.240000pt;}
.x49_c00137{left:323.840000pt;}
.x4b_c00137{left:332.800000pt;}
.x18_c00137{left:342.400000pt;}
.x35_c00137{left:343.680000pt;}
.x24_c00137{left:352.000000pt;}
.x54_c00137{left:360.960000pt;}
.x7_c00137{left:362.240000pt;}
.x3a_c00137{left:370.560000pt;}
.x10_c00137{left:371.840000pt;}
.x2f_c00137{left:380.160000pt;}
.x25_c00137{left:390.400000pt;}
.x4a_c00137{left:391.680000pt;}
.x20_c00137{left:399.360000pt;}
.x11_c00137{left:401.280000pt;}
.x39_c00137{left:409.600000pt;}
.x36_c00137{left:419.840000pt;}
.x15_c00137{left:429.440000pt;}
.x2b_c00137{left:438.400000pt;}
.x43_c00137{left:447.360000pt;}
.x37_c00137{left:448.640000pt;}
.x30_c00137{left:456.960000pt;}
.x19_c00137{left:458.880000pt;}
.x8_c00137{left:468.480000pt;}
.x26_c00137{left:478.080000pt;}
.x40_c00137{left:486.400000pt;}
.x1a_c00137{left:487.680000pt;}
.x3b_c00137{left:496.640000pt;}
.x9_c00137{left:507.520000pt;}
.x44_c00137{left:526.080000pt;}
.x12_c00137{left:535.680000pt;}
.x2c_c00137{left:544.640000pt;}
.x46_c00137{left:554.880000pt;}
.x27_c00137{left:564.480000pt;}
.x1b_c00137{left:574.080000pt;}
.x52_c00137{left:583.680000pt;}
.x3e_c00137{left:584.960000pt;}
.x32_c00137{left:593.280000pt;}
.xa_c00137{left:595.200000pt;}
.x28_c00137{left:603.520000pt;}
.x1_c00137{left:609.920000pt;}
.x1c_c00137{left:612.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_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_dc120440f740af265ca5b81a.woff2')format("woff");}.ff1_c00138{font-family:ff1_c00138;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3f_c00138{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);}
.m52_c00138{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.ma_c00138{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m51_c00138{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m31_c00138{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m49_c00138{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m37_c00138{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00138{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m47_c00138{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m39_c00138{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00138{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m0_c00138{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m4_c00138{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m22_c00138{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m29_c00138{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_c00138{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m26_c00138{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);}
.me_c00138{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m48_c00138{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);}
.m38_c00138{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);}
.m41_c00138{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m13_c00138{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m53_c00138{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);}
.m2e_c00138{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);}
.m24_c00138{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m35_c00138{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m6_c00138{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);}
.m21_c00138{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);}
.m12_c00138{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);}
.m32_c00138{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00138{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00138{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m14_c00138{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);}
.m4a_c00138{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);}
.m3c_c00138{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);}
.mc_c00138{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00138{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m17_c00138{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m45_c00138{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m44_c00138{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);}
.md_c00138{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m42_c00138{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m20_c00138{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);}
.m5_c00138{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m18_c00138{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m3_c00138{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m40_c00138{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);}
.m8_c00138{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m33_c00138{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00138{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m2_c00138{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);}
.mb_c00138{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m11_c00138{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00138{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);}
.m50_c00138{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);}
.mf_c00138{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m23_c00138{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m16_c00138{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);}
.m9_c00138{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m19_c00138{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00138{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m10_c00138{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);}
.m4e_c00138{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00138{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m1_c00138{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00138{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);}
.m34_c00138{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00138{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);}
.m25_c00138{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00138{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00138{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00138{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m30_c00138{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00138{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);}
.m7_c00138{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);}
.m46_c00138{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m43_c00138{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00138{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);}
.m36_c00138{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00138{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00138{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00138{transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);}
.m15_c00138{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.m27_c00138{transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);}
.v0_c00138{vertical-align:0.000000px;}
.ls0_c00138{letter-spacing:0.000000px;}
.sc__c00138{text-shadow:none;}
.sc0_c00138{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00138{-webkit-text-stroke:0px transparent;}
.sc0_c00138{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00138{word-spacing:0.000000px;}
.fc0_c00138{color:transparent;}
.fs5_c00138{font-size:34.560000px;}
.fsb_c00138{font-size:37.440000px;}
.fsc_c00138{font-size:40.320000px;}
.fse_c00138{font-size:43.200000px;}
.fs7_c00138{font-size:46.080000px;}
.fs4_c00138{font-size:48.960000px;}
.fs1_c00138{font-size:51.840000px;}
.fs2_c00138{font-size:54.720000px;}
.fs8_c00138{font-size:57.600000px;}
.fsa_c00138{font-size:60.480000px;}
.fs9_c00138{font-size:63.360000px;}
.fs3_c00138{font-size:66.240000px;}
.fsd_c00138{font-size:69.120000px;}
.fs0_c00138{font-size:72.000000px;}
.fs6_c00138{font-size:74.880000px;}
.y0_c00138{bottom:0.000000px;}
.y75_c00138{bottom:79.200000px;}
.y74_c00138{bottom:79.920000px;}
.y72_c00138{bottom:81.360000px;}
.y73_c00138{bottom:82.800000px;}
.y70_c00138{bottom:118.800000px;}
.y71_c00138{bottom:119.520000px;}
.y6f_c00138{bottom:120.240000px;}
.y6e_c00138{bottom:120.960000px;}
.y6d_c00138{bottom:123.840000px;}
.y6c_c00138{bottom:127.440000px;}
.y6b_c00138{bottom:165.600000px;}
.y69_c00138{bottom:166.320000px;}
.y6a_c00138{bottom:167.040000px;}
.y68_c00138{bottom:167.760000px;}
.y66_c00138{bottom:204.480000px;}
.y67_c00138{bottom:205.200000px;}
.y65_c00138{bottom:205.920000px;}
.y62_c00138{bottom:208.080000px;}
.y64_c00138{bottom:209.520000px;}
.y63_c00138{bottom:210.240000px;}
.y61_c00138{bottom:211.680000px;}
.y60_c00138{bottom:212.400000px;}
.y5f_c00138{bottom:247.680000px;}
.y5d_c00138{bottom:248.400000px;}
.y5e_c00138{bottom:249.840000px;}
.y5b_c00138{bottom:250.560000px;}
.y5a_c00138{bottom:251.280000px;}
.y5c_c00138{bottom:252.000000px;}
.y59_c00138{bottom:252.720000px;}
.y58_c00138{bottom:255.600000px;}
.y57_c00138{bottom:292.320000px;}
.y53_c00138{bottom:293.040000px;}
.y54_c00138{bottom:293.760000px;}
.y52_c00138{bottom:294.480000px;}
.y55_c00138{bottom:295.200000px;}
.y56_c00138{bottom:295.920000px;}
.y51_c00138{bottom:334.800000px;}
.y50_c00138{bottom:336.960000px;}
.y4f_c00138{bottom:337.680000px;}
.y4e_c00138{bottom:338.400000px;}
.y4c_c00138{bottom:377.280000px;}
.y4d_c00138{bottom:378.000000px;}
.y49_c00138{bottom:378.720000px;}
.y48_c00138{bottom:379.440000px;}
.y4b_c00138{bottom:380.880000px;}
.y4a_c00138{bottom:381.600000px;}
.y47_c00138{bottom:382.320000px;}
.y46_c00138{bottom:383.760000px;}
.y43_c00138{bottom:421.200000px;}
.y42_c00138{bottom:421.920000px;}
.y45_c00138{bottom:423.360000px;}
.y44_c00138{bottom:424.080000px;}
.y40_c00138{bottom:424.800000px;}
.y41_c00138{bottom:425.520000px;}
.y3f_c00138{bottom:466.560000px;}
.y3e_c00138{bottom:467.280000px;}
.y3b_c00138{bottom:519.120000px;}
.y3d_c00138{bottom:519.840000px;}
.y3c_c00138{bottom:521.280000px;}
.y3a_c00138{bottom:522.000000px;}
.y36_c00138{bottom:560.160000px;}
.y38_c00138{bottom:560.880000px;}
.y37_c00138{bottom:563.040000px;}
.y35_c00138{bottom:563.760000px;}
.y39_c00138{bottom:564.480000px;}
.y34_c00138{bottom:603.360000px;}
.y33_c00138{bottom:604.080000px;}
.y31_c00138{bottom:606.240000px;}
.y32_c00138{bottom:606.960000px;}
.y30_c00138{bottom:645.840000px;}
.y2e_c00138{bottom:647.280000px;}
.y2f_c00138{bottom:648.720000px;}
.y2c_c00138{bottom:649.440000px;}
.y2d_c00138{bottom:650.160000px;}
.y2a_c00138{bottom:702.000000px;}
.y2b_c00138{bottom:703.440000px;}
.y27_c00138{bottom:742.320000px;}
.y28_c00138{bottom:743.040000px;}
.y25_c00138{bottom:744.480000px;}
.y26_c00138{bottom:745.200000px;}
.y29_c00138{bottom:745.920000px;}
.y20_c00138{bottom:784.080000px;}
.y22_c00138{bottom:785.520000px;}
.y21_c00138{bottom:786.240000px;}
.y1e_c00138{bottom:786.960000px;}
.y1f_c00138{bottom:787.680000px;}
.y24_c00138{bottom:788.400000px;}
.y23_c00138{bottom:789.120000px;}
.y1b_c00138{bottom:828.000000px;}
.y19_c00138{bottom:828.720000px;}
.y1a_c00138{bottom:830.160000px;}
.y1c_c00138{bottom:830.880000px;}
.y1d_c00138{bottom:832.320000px;}
.y12_c00138{bottom:869.040000px;}
.y14_c00138{bottom:869.760000px;}
.y15_c00138{bottom:870.480000px;}
.y17_c00138{bottom:871.200000px;}
.y13_c00138{bottom:872.640000px;}
.y16_c00138{bottom:874.080000px;}
.y18_c00138{bottom:874.800000px;}
.y10_c00138{bottom:914.400000px;}
.yd_c00138{bottom:915.840000px;}
.ye_c00138{bottom:916.560000px;}
.yf_c00138{bottom:917.280000px;}
.y11_c00138{bottom:918.000000px;}
.y9_c00138{bottom:964.800000px;}
.ya_c00138{bottom:968.400000px;}
.yb_c00138{bottom:969.120000px;}
.yc_c00138{bottom:969.840000px;}
.y5_c00138{bottom:1009.440000px;}
.y2_c00138{bottom:1010.160000px;}
.y7_c00138{bottom:1010.880000px;}
.y3_c00138{bottom:1011.600000px;}
.y4_c00138{bottom:1012.320000px;}
.y6_c00138{bottom:1013.040000px;}
.y8_c00138{bottom:1014.480000px;}
.y1_c00138{bottom:1095.840000px;}
.h7_c00138{height:31.100625px;}
.hd_c00138{height:33.692344px;}
.he_c00138{height:36.284062px;}
.h10_c00138{height:38.875781px;}
.h9_c00138{height:41.467500px;}
.h6_c00138{height:44.059219px;}
.h3_c00138{height:46.650937px;}
.h4_c00138{height:49.242656px;}
.ha_c00138{height:51.834375px;}
.hc_c00138{height:54.426094px;}
.hb_c00138{height:57.017812px;}
.h5_c00138{height:59.609531px;}
.hf_c00138{height:62.201250px;}
.h2_c00138{height:64.792969px;}
.h8_c00138{height:67.384687px;}
.h0_c00138{height:1152.720000px;}
.h1_c00138{height:1152.750000px;}
.w1_c00138{width:783.750000px;}
.w0_c00138{width:784.080000px;}
.x0_c00138{left:0.000000px;}
.x25_c00138{left:48.960000px;}
.x2_c00138{left:50.400000px;}
.x4d_c00138{left:51.840000px;}
.x3_c00138{left:82.800000px;}
.x3e_c00138{left:91.440000px;}
.x45_c00138{left:92.880000px;}
.x1e_c00138{left:103.680000px;}
.x37_c00138{left:114.480000px;}
.x15_c00138{left:125.280000px;}
.x30_c00138{left:133.920000px;}
.x4a_c00138{left:135.360000px;}
.x57_c00138{left:137.520000px;}
.x2c_c00138{left:144.720000px;}
.xc_c00138{left:146.160000px;}
.x26_c00138{left:156.240000px;}
.xf_c00138{left:157.680000px;}
.x3f_c00138{left:166.320000px;}
.x4f_c00138{left:177.120000px;}
.x31_c00138{left:178.560000px;}
.x2d_c00138{left:187.920000px;}
.x4_c00138{left:189.360000px;}
.x46_c00138{left:198.720000px;}
.x27_c00138{left:209.520000px;}
.x42_c00138{left:210.960000px;}
.x10_c00138{left:220.320000px;}
.x5_c00138{left:231.840000px;}
.x58_c00138{left:234.000000px;}
.x32_c00138{left:241.920000px;}
.x16_c00138{left:252.720000px;}
.xd_c00138{left:254.880000px;}
.x4b_c00138{left:262.080000px;}
.x33_c00138{left:263.520000px;}
.x17_c00138{left:274.320000px;}
.x50_c00138{left:275.760000px;}
.x38_c00138{left:285.120000px;}
.x11_c00138{left:286.560000px;}
.x1f_c00138{left:295.920000px;}
.x51_c00138{left:306.720000px;}
.x43_c00138{left:308.160000px;}
.xe_c00138{left:318.960000px;}
.x18_c00138{left:328.320000px;}
.x39_c00138{left:339.120000px;}
.x47_c00138{left:340.560000px;}
.x54_c00138{left:342.000000px;}
.x28_c00138{left:349.920000px;}
.x20_c00138{left:360.720000px;}
.x6_c00138{left:362.160000px;}
.x19_c00138{left:372.240000px;}
.x3a_c00138{left:382.320000px;}
.x12_c00138{left:394.560000px;}
.x7_c00138{left:415.440000px;}
.x44_c00138{left:425.520000px;}
.x48_c00138{left:426.960000px;}
.x52_c00138{left:436.320000px;}
.x40_c00138{left:437.760000px;}
.x55_c00138{left:439.200000px;}
.x1a_c00138{left:447.840000px;}
.x21_c00138{left:449.280000px;}
.x34_c00138{left:458.640000px;}
.x22_c00138{left:469.440000px;}
.x8_c00138{left:470.880000px;}
.x1b_c00138{left:480.240000px;}
.x4e_c00138{left:483.120000px;}
.x2e_c00138{left:490.320000px;}
.x35_c00138{left:492.480000px;}
.x29_c00138{left:501.120000px;}
.x9_c00138{left:503.280000px;}
.x23_c00138{left:523.440000px;}
.x2a_c00138{left:535.680000px;}
.x13_c00138{left:546.480000px;}
.x49_c00138{left:547.920000px;}
.x3b_c00138{left:556.560000px;}
.x24_c00138{left:567.360000px;}
.x4c_c00138{left:568.800000px;}
.x2f_c00138{left:578.880000px;}
.x14_c00138{left:589.680000px;}
.x2b_c00138{left:600.480000px;}
.x36_c00138{left:609.120000px;}
.x1c_c00138{left:611.280000px;}
.xa_c00138{left:622.800000px;}
.x53_c00138{left:632.880000px;}
.x3c_c00138{left:643.680000px;}
.x41_c00138{left:645.120000px;}
.x1d_c00138{left:654.480000px;}
.x56_c00138{left:658.080000px;}
.xb_c00138{left:666.000000px;}
.x1_c00138{left:667.440000px;}
.x3d_c00138{left:678.240000px;}
@media print{
.v0_c00138{vertical-align:0.000000pt;}
.ls0_c00138{letter-spacing:0.000000pt;}
.ws0_c00138{word-spacing:0.000000pt;}
.fs5_c00138{font-size:30.720000pt;}
.fsb_c00138{font-size:33.280000pt;}
.fsc_c00138{font-size:35.840000pt;}
.fse_c00138{font-size:38.400000pt;}
.fs7_c00138{font-size:40.960000pt;}
.fs4_c00138{font-size:43.520000pt;}
.fs1_c00138{font-size:46.080000pt;}
.fs2_c00138{font-size:48.640000pt;}
.fs8_c00138{font-size:51.200000pt;}
.fsa_c00138{font-size:53.760000pt;}
.fs9_c00138{font-size:56.320000pt;}
.fs3_c00138{font-size:58.880000pt;}
.fsd_c00138{font-size:61.440000pt;}
.fs0_c00138{font-size:64.000000pt;}
.fs6_c00138{font-size:66.560000pt;}
.y0_c00138{bottom:0.000000pt;}
.y75_c00138{bottom:70.400000pt;}
.y74_c00138{bottom:71.040000pt;}
.y72_c00138{bottom:72.320000pt;}
.y73_c00138{bottom:73.600000pt;}
.y70_c00138{bottom:105.600000pt;}
.y71_c00138{bottom:106.240000pt;}
.y6f_c00138{bottom:106.880000pt;}
.y6e_c00138{bottom:107.520000pt;}
.y6d_c00138{bottom:110.080000pt;}
.y6c_c00138{bottom:113.280000pt;}
.y6b_c00138{bottom:147.200000pt;}
.y69_c00138{bottom:147.840000pt;}
.y6a_c00138{bottom:148.480000pt;}
.y68_c00138{bottom:149.120000pt;}
.y66_c00138{bottom:181.760000pt;}
.y67_c00138{bottom:182.400000pt;}
.y65_c00138{bottom:183.040000pt;}
.y62_c00138{bottom:184.960000pt;}
.y64_c00138{bottom:186.240000pt;}
.y63_c00138{bottom:186.880000pt;}
.y61_c00138{bottom:188.160000pt;}
.y60_c00138{bottom:188.800000pt;}
.y5f_c00138{bottom:220.160000pt;}
.y5d_c00138{bottom:220.800000pt;}
.y5e_c00138{bottom:222.080000pt;}
.y5b_c00138{bottom:222.720000pt;}
.y5a_c00138{bottom:223.360000pt;}
.y5c_c00138{bottom:224.000000pt;}
.y59_c00138{bottom:224.640000pt;}
.y58_c00138{bottom:227.200000pt;}
.y57_c00138{bottom:259.840000pt;}
.y53_c00138{bottom:260.480000pt;}
.y54_c00138{bottom:261.120000pt;}
.y52_c00138{bottom:261.760000pt;}
.y55_c00138{bottom:262.400000pt;}
.y56_c00138{bottom:263.040000pt;}
.y51_c00138{bottom:297.600000pt;}
.y50_c00138{bottom:299.520000pt;}
.y4f_c00138{bottom:300.160000pt;}
.y4e_c00138{bottom:300.800000pt;}
.y4c_c00138{bottom:335.360000pt;}
.y4d_c00138{bottom:336.000000pt;}
.y49_c00138{bottom:336.640000pt;}
.y48_c00138{bottom:337.280000pt;}
.y4b_c00138{bottom:338.560000pt;}
.y4a_c00138{bottom:339.200000pt;}
.y47_c00138{bottom:339.840000pt;}
.y46_c00138{bottom:341.120000pt;}
.y43_c00138{bottom:374.400000pt;}
.y42_c00138{bottom:375.040000pt;}
.y45_c00138{bottom:376.320000pt;}
.y44_c00138{bottom:376.960000pt;}
.y40_c00138{bottom:377.600000pt;}
.y41_c00138{bottom:378.240000pt;}
.y3f_c00138{bottom:414.720000pt;}
.y3e_c00138{bottom:415.360000pt;}
.y3b_c00138{bottom:461.440000pt;}
.y3d_c00138{bottom:462.080000pt;}
.y3c_c00138{bottom:463.360000pt;}
.y3a_c00138{bottom:464.000000pt;}
.y36_c00138{bottom:497.920000pt;}
.y38_c00138{bottom:498.560000pt;}
.y37_c00138{bottom:500.480000pt;}
.y35_c00138{bottom:501.120000pt;}
.y39_c00138{bottom:501.760000pt;}
.y34_c00138{bottom:536.320000pt;}
.y33_c00138{bottom:536.960000pt;}
.y31_c00138{bottom:538.880000pt;}
.y32_c00138{bottom:539.520000pt;}
.y30_c00138{bottom:574.080000pt;}
.y2e_c00138{bottom:575.360000pt;}
.y2f_c00138{bottom:576.640000pt;}
.y2c_c00138{bottom:577.280000pt;}
.y2d_c00138{bottom:577.920000pt;}
.y2a_c00138{bottom:624.000000pt;}
.y2b_c00138{bottom:625.280000pt;}
.y27_c00138{bottom:659.840000pt;}
.y28_c00138{bottom:660.480000pt;}
.y25_c00138{bottom:661.760000pt;}
.y26_c00138{bottom:662.400000pt;}
.y29_c00138{bottom:663.040000pt;}
.y20_c00138{bottom:696.960000pt;}
.y22_c00138{bottom:698.240000pt;}
.y21_c00138{bottom:698.880000pt;}
.y1e_c00138{bottom:699.520000pt;}
.y1f_c00138{bottom:700.160000pt;}
.y24_c00138{bottom:700.800000pt;}
.y23_c00138{bottom:701.440000pt;}
.y1b_c00138{bottom:736.000000pt;}
.y19_c00138{bottom:736.640000pt;}
.y1a_c00138{bottom:737.920000pt;}
.y1c_c00138{bottom:738.560000pt;}
.y1d_c00138{bottom:739.840000pt;}
.y12_c00138{bottom:772.480000pt;}
.y14_c00138{bottom:773.120000pt;}
.y15_c00138{bottom:773.760000pt;}
.y17_c00138{bottom:774.400000pt;}
.y13_c00138{bottom:775.680000pt;}
.y16_c00138{bottom:776.960000pt;}
.y18_c00138{bottom:777.600000pt;}
.y10_c00138{bottom:812.800000pt;}
.yd_c00138{bottom:814.080000pt;}
.ye_c00138{bottom:814.720000pt;}
.yf_c00138{bottom:815.360000pt;}
.y11_c00138{bottom:816.000000pt;}
.y9_c00138{bottom:857.600000pt;}
.ya_c00138{bottom:860.800000pt;}
.yb_c00138{bottom:861.440000pt;}
.yc_c00138{bottom:862.080000pt;}
.y5_c00138{bottom:897.280000pt;}
.y2_c00138{bottom:897.920000pt;}
.y7_c00138{bottom:898.560000pt;}
.y3_c00138{bottom:899.200000pt;}
.y4_c00138{bottom:899.840000pt;}
.y6_c00138{bottom:900.480000pt;}
.y8_c00138{bottom:901.760000pt;}
.y1_c00138{bottom:974.080000pt;}
.h7_c00138{height:27.645000pt;}
.hd_c00138{height:29.948750pt;}
.he_c00138{height:32.252500pt;}
.h10_c00138{height:34.556250pt;}
.h9_c00138{height:36.860000pt;}
.h6_c00138{height:39.163750pt;}
.h3_c00138{height:41.467500pt;}
.h4_c00138{height:43.771250pt;}
.ha_c00138{height:46.075000pt;}
.hc_c00138{height:48.378750pt;}
.hb_c00138{height:50.682500pt;}
.h5_c00138{height:52.986250pt;}
.hf_c00138{height:55.290000pt;}
.h2_c00138{height:57.593750pt;}
.h8_c00138{height:59.897500pt;}
.h0_c00138{height:1024.640000pt;}
.h1_c00138{height:1024.666667pt;}
.w1_c00138{width:696.666667pt;}
.w0_c00138{width:696.960000pt;}
.x0_c00138{left:0.000000pt;}
.x25_c00138{left:43.520000pt;}
.x2_c00138{left:44.800000pt;}
.x4d_c00138{left:46.080000pt;}
.x3_c00138{left:73.600000pt;}
.x3e_c00138{left:81.280000pt;}
.x45_c00138{left:82.560000pt;}
.x1e_c00138{left:92.160000pt;}
.x37_c00138{left:101.760000pt;}
.x15_c00138{left:111.360000pt;}
.x30_c00138{left:119.040000pt;}
.x4a_c00138{left:120.320000pt;}
.x57_c00138{left:122.240000pt;}
.x2c_c00138{left:128.640000pt;}
.xc_c00138{left:129.920000pt;}
.x26_c00138{left:138.880000pt;}
.xf_c00138{left:140.160000pt;}
.x3f_c00138{left:147.840000pt;}
.x4f_c00138{left:157.440000pt;}
.x31_c00138{left:158.720000pt;}
.x2d_c00138{left:167.040000pt;}
.x4_c00138{left:168.320000pt;}
.x46_c00138{left:176.640000pt;}
.x27_c00138{left:186.240000pt;}
.x42_c00138{left:187.520000pt;}
.x10_c00138{left:195.840000pt;}
.x5_c00138{left:206.080000pt;}
.x58_c00138{left:208.000000pt;}
.x32_c00138{left:215.040000pt;}
.x16_c00138{left:224.640000pt;}
.xd_c00138{left:226.560000pt;}
.x4b_c00138{left:232.960000pt;}
.x33_c00138{left:234.240000pt;}
.x17_c00138{left:243.840000pt;}
.x50_c00138{left:245.120000pt;}
.x38_c00138{left:253.440000pt;}
.x11_c00138{left:254.720000pt;}
.x1f_c00138{left:263.040000pt;}
.x51_c00138{left:272.640000pt;}
.x43_c00138{left:273.920000pt;}
.xe_c00138{left:283.520000pt;}
.x18_c00138{left:291.840000pt;}
.x39_c00138{left:301.440000pt;}
.x47_c00138{left:302.720000pt;}
.x54_c00138{left:304.000000pt;}
.x28_c00138{left:311.040000pt;}
.x20_c00138{left:320.640000pt;}
.x6_c00138{left:321.920000pt;}
.x19_c00138{left:330.880000pt;}
.x3a_c00138{left:339.840000pt;}
.x12_c00138{left:350.720000pt;}
.x7_c00138{left:369.280000pt;}
.x44_c00138{left:378.240000pt;}
.x48_c00138{left:379.520000pt;}
.x52_c00138{left:387.840000pt;}
.x40_c00138{left:389.120000pt;}
.x55_c00138{left:390.400000pt;}
.x1a_c00138{left:398.080000pt;}
.x21_c00138{left:399.360000pt;}
.x34_c00138{left:407.680000pt;}
.x22_c00138{left:417.280000pt;}
.x8_c00138{left:418.560000pt;}
.x1b_c00138{left:426.880000pt;}
.x4e_c00138{left:429.440000pt;}
.x2e_c00138{left:435.840000pt;}
.x35_c00138{left:437.760000pt;}
.x29_c00138{left:445.440000pt;}
.x9_c00138{left:447.360000pt;}
.x23_c00138{left:465.280000pt;}
.x2a_c00138{left:476.160000pt;}
.x13_c00138{left:485.760000pt;}
.x49_c00138{left:487.040000pt;}
.x3b_c00138{left:494.720000pt;}
.x24_c00138{left:504.320000pt;}
.x4c_c00138{left:505.600000pt;}
.x2f_c00138{left:514.560000pt;}
.x14_c00138{left:524.160000pt;}
.x2b_c00138{left:533.760000pt;}
.x36_c00138{left:541.440000pt;}
.x1c_c00138{left:543.360000pt;}
.xa_c00138{left:553.600000pt;}
.x53_c00138{left:562.560000pt;}
.x3c_c00138{left:572.160000pt;}
.x41_c00138{left:573.440000pt;}
.x1d_c00138{left:581.760000pt;}
.x56_c00138{left:584.960000pt;}
.xb_c00138{left:592.000000pt;}
.x1_c00138{left:593.280000pt;}
.x3d_c00138{left:602.880000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d8b551bad9cff6de61e72618.woff2')format("woff");}.ff1_c00139{font-family:ff1_c00139;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5f_c00139{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m0_c00139{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m3_c00139{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m48_c00139{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00139{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m58_c00139{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00139{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2_c00139{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m4_c00139{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00139{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m11_c00139{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m47_c00139{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m45_c00139{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00139{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m38_c00139{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m24_c00139{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m1_c00139{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00139{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m26_c00139{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m20_c00139{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);}
.m4d_c00139{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m31_c00139{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);}
.m34_c00139{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);}
.m23_c00139{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);}
.m2d_c00139{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m18_c00139{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);}
.mc_c00139{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m13_c00139{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);}
.m51_c00139{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);}
.m41_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.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);}
.m36_c00139{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);}
.m1b_c00139{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.md_c00139{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);}
.m4b_c00139{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m9_c00139{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m57_c00139{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00139{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);}
.m3c_c00139{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m54_c00139{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00139{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);}
.m42_c00139{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);}
.m15_c00139{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m14_c00139{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m10_c00139{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m56_c00139{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m25_c00139{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);}
.m46_c00139{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m33_c00139{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.mf_c00139{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);}
.m35_c00139{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00139{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);}
.me_c00139{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00139{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m29_c00139{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m52_c00139{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);}
.m39_c00139{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00139{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m53_c00139{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);}
.m49_c00139{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m43_c00139{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00139{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m16_c00139{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m7_c00139{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m5_c00139{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);}
.m3d_c00139{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);}
.m1a_c00139{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m12_c00139{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.ma_c00139{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);}
.m27_c00139{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m6_c00139{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m17_c00139{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m40_c00139{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);}
.m37_c00139{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00139{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m44_c00139{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m22_c00139{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00139{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);}
.m3f_c00139{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);}
.m50_c00139{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m30_c00139{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00139{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00139{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m32_c00139{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00139{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.mb_c00139{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);}
.m55_c00139{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);}
.m3b_c00139{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m19_c00139{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);}
.m8_c00139{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m28_c00139{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00139{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m59_c00139{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m21_c00139{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00139{transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00139{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.v2_c00139{vertical-align:-14.400000px;}
.v1_c00139{vertical-align:-2.880000px;}
.v0_c00139{vertical-align:0.000000px;}
.ls1_c00139{letter-spacing:0.000000px;}
.ls0_c00139{letter-spacing:27.182640px;}
.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;}
}
.ws3_c00139{word-spacing:0.000000px;}
.ws2_c00139{word-spacing:2.632800px;}
.ws1_c00139{word-spacing:5.438640px;}
.ws0_c00139{word-spacing:8.977920px;}
.fc0_c00139{color:transparent;}
.fs7_c00139{font-size:34.560000px;}
.fs5_c00139{font-size:37.440000px;}
.fsb_c00139{font-size:43.200000px;}
.fs1_c00139{font-size:46.080000px;}
.fs6_c00139{font-size:48.960000px;}
.fs3_c00139{font-size:51.840000px;}
.fs9_c00139{font-size:54.720000px;}
.fs8_c00139{font-size:57.600000px;}
.fs4_c00139{font-size:60.480000px;}
.fsa_c00139{font-size:63.360000px;}
.fsd_c00139{font-size:66.240000px;}
.fs2_c00139{font-size:69.120000px;}
.fsc_c00139{font-size:72.000000px;}
.fs0_c00139{font-size:74.880000px;}
.fse_c00139{font-size:77.760000px;}
.y0_c00139{bottom:0.000000px;}
.y79_c00139{bottom:34.560000px;}
.y78_c00139{bottom:36.000000px;}
.y72_c00139{bottom:36.720000px;}
.y76_c00139{bottom:37.440000px;}
.y77_c00139{bottom:38.160000px;}
.y70_c00139{bottom:40.320000px;}
.y71_c00139{bottom:41.760000px;}
.y75_c00139{bottom:79.920000px;}
.y74_c00139{bottom:80.640000px;}
.y6f_c00139{bottom:81.360000px;}
.y73_c00139{bottom:82.080000px;}
.y6e_c00139{bottom:84.960000px;}
.y6d_c00139{bottom:85.680000px;}
.y6c_c00139{bottom:138.240000px;}
.y68_c00139{bottom:175.680000px;}
.y69_c00139{bottom:176.400000px;}
.y6a_c00139{bottom:177.120000px;}
.y6b_c00139{bottom:177.840000px;}
.y67_c00139{bottom:179.280000px;}
.y65_c00139{bottom:180.000000px;}
.y66_c00139{bottom:180.720000px;}
.y64_c00139{bottom:217.440000px;}
.y5f_c00139{bottom:218.160000px;}
.y63_c00139{bottom:219.600000px;}
.y62_c00139{bottom:220.320000px;}
.y61_c00139{bottom:221.040000px;}
.y60_c00139{bottom:221.760000px;}
.y5e_c00139{bottom:223.200000px;}
.y5d_c00139{bottom:223.920000px;}
.y5a_c00139{bottom:261.360000px;}
.y58_c00139{bottom:262.080000px;}
.y5c_c00139{bottom:262.800000px;}
.y5b_c00139{bottom:263.520000px;}
.y59_c00139{bottom:264.240000px;}
.y57_c00139{bottom:264.960000px;}
.y56_c00139{bottom:265.680000px;}
.y55_c00139{bottom:268.560000px;}
.y54_c00139{bottom:303.840000px;}
.y50_c00139{bottom:304.560000px;}
.y4f_c00139{bottom:305.280000px;}
.y53_c00139{bottom:306.000000px;}
.y51_c00139{bottom:306.720000px;}
.y52_c00139{bottom:307.440000px;}
.y4e_c00139{bottom:308.160000px;}
.y4d_c00139{bottom:308.880000px;}
.y4c_c00139{bottom:311.040000px;}
.y48_c00139{bottom:347.040000px;}
.y49_c00139{bottom:347.760000px;}
.y4b_c00139{bottom:349.200000px;}
.y4a_c00139{bottom:349.920000px;}
.y46_c00139{bottom:350.640000px;}
.y47_c00139{bottom:351.360000px;}
.y43_c00139{bottom:390.960000px;}
.y45_c00139{bottom:391.680000px;}
.y40_c00139{bottom:392.400000px;}
.y44_c00139{bottom:393.120000px;}
.y42_c00139{bottom:393.840000px;}
.y41_c00139{bottom:394.560000px;}
.y3f_c00139{bottom:395.280000px;}
.y3e_c00139{bottom:430.560000px;}
.y3a_c00139{bottom:433.440000px;}
.y3c_c00139{bottom:434.880000px;}
.y3d_c00139{bottom:436.320000px;}
.y3b_c00139{bottom:437.040000px;}
.y39_c00139{bottom:437.760000px;}
.y36_c00139{bottom:475.200000px;}
.y38_c00139{bottom:475.920000px;}
.y35_c00139{bottom:477.360000px;}
.y37_c00139{bottom:478.080000px;}
.y34_c00139{bottom:478.800000px;}
.y33_c00139{bottom:480.240000px;}
.y32_c00139{bottom:532.800000px;}
.y31_c00139{bottom:571.680000px;}
.y2f_c00139{bottom:572.400000px;}
.y30_c00139{bottom:573.120000px;}
.y2d_c00139{bottom:574.560000px;}
.y2e_c00139{bottom:575.280000px;}
.y2c_c00139{bottom:614.880000px;}
.y2b_c00139{bottom:615.600000px;}
.y29_c00139{bottom:616.320000px;}
.y28_c00139{bottom:617.760000px;}
.y2a_c00139{bottom:618.480000px;}
.y27_c00139{bottom:656.640000px;}
.y24_c00139{bottom:658.080000px;}
.y25_c00139{bottom:660.240000px;}
.y26_c00139{bottom:660.960000px;}
.y1f_c00139{bottom:699.840000px;}
.y20_c00139{bottom:701.280000px;}
.y22_c00139{bottom:702.720000px;}
.y21_c00139{bottom:703.440000px;}
.y23_c00139{bottom:704.160000px;}
.y1c_c00139{bottom:743.040000px;}
.y1e_c00139{bottom:743.760000px;}
.y1b_c00139{bottom:745.200000px;}
.y1a_c00139{bottom:745.920000px;}
.y1d_c00139{bottom:746.640000px;}
.y19_c00139{bottom:788.400000px;}
.y18_c00139{bottom:789.120000px;}
.y17_c00139{bottom:839.520000px;}
.y16_c00139{bottom:840.960000px;}
.y13_c00139{bottom:882.000000px;}
.y15_c00139{bottom:882.720000px;}
.y12_c00139{bottom:884.160000px;}
.y14_c00139{bottom:884.880000px;}
.yc_c00139{bottom:923.040000px;}
.yf_c00139{bottom:925.200000px;}
.yd_c00139{bottom:926.640000px;}
.ye_c00139{bottom:927.360000px;}
.y10_c00139{bottom:928.080000px;}
.y11_c00139{bottom:928.800000px;}
.y9_c00139{bottom:967.680000px;}
.y7_c00139{bottom:968.400000px;}
.y8_c00139{bottom:969.840000px;}
.ya_c00139{bottom:971.280000px;}
.yb_c00139{bottom:972.000000px;}
.y3_c00139{bottom:1010.160000px;}
.y4_c00139{bottom:1012.320000px;}
.y2_c00139{bottom:1013.760000px;}
.y5_c00139{bottom:1014.480000px;}
.y6_c00139{bottom:1015.200000px;}
.y1_c00139{bottom:1092.240000px;}
.h9_c00139{height:31.100625px;}
.h7_c00139{height:33.692344px;}
.hd_c00139{height:38.875781px;}
.h10_c00139{height:40.026094px;}
.h3_c00139{height:41.467500px;}
.h8_c00139{height:44.059219px;}
.h5_c00139{height:46.650937px;}
.hb_c00139{height:49.242656px;}
.ha_c00139{height:51.834375px;}
.h6_c00139{height:54.426094px;}
.hc_c00139{height:57.017812px;}
.hf_c00139{height:59.609531px;}
.h4_c00139{height:62.201250px;}
.he_c00139{height:64.792969px;}
.h2_c00139{height:67.384687px;}
.h11_c00139{height:69.976406px;}
.h0_c00139{height:1152.720000px;}
.h1_c00139{height:1152.750000px;}
.w1_c00139{width:783.750000px;}
.w0_c00139{width:784.080000px;}
.x0_c00139{left:0.000000px;}
.x17_c00139{left:50.400000px;}
.xb_c00139{left:51.840000px;}
.x48_c00139{left:61.200000px;}
.x44_c00139{left:81.360000px;}
.x18_c00139{left:82.800000px;}
.x45_c00139{left:102.960000px;}
.x34_c00139{left:113.040000px;}
.x19_c00139{left:114.480000px;}
.x42_c00139{left:123.120000px;}
.x26_c00139{left:124.560000px;}
.x46_c00139{left:135.360000px;}
.xc_c00139{left:146.160000px;}
.x39_c00139{left:155.520000px;}
.x2_c00139{left:157.680000px;}
.x27_c00139{left:166.320000px;}
.x1e_c00139{left:170.640000px;}
.x4f_c00139{left:177.120000px;}
.x3_c00139{left:178.560000px;}
.x20_c00139{left:188.640000px;}
.xd_c00139{left:190.080000px;}
.x4d_c00139{left:198.720000px;}
.x1a_c00139{left:203.040000px;}
.x2d_c00139{left:210.240000px;}
.x49_c00139{left:220.320000px;}
.x54_c00139{left:221.760000px;}
.x28_c00139{left:231.840000px;}
.x35_c00139{left:241.200000px;}
.x11_c00139{left:242.640000px;}
.x4a_c00139{left:252.720000px;}
.x29_c00139{left:263.520000px;}
.x1f_c00139{left:265.680000px;}
.x30_c00139{left:274.320000px;}
.x12_c00139{left:275.760000px;}
.x3f_c00139{left:285.120000px;}
.x4_c00139{left:286.560000px;}
.x21_c00139{left:296.640000px;}
.x3a_c00139{left:306.720000px;}
.x31_c00139{left:317.520000px;}
.x52_c00139{left:318.960000px;}
.x1b_c00139{left:328.320000px;}
.x5_c00139{left:330.480000px;}
.x13_c00139{left:339.840000px;}
.x36_c00139{left:349.920000px;}
.xe_c00139{left:351.360000px;}
.x2e_c00139{left:361.440000px;}
.x1c_c00139{left:372.240000px;}
.x4b_c00139{left:382.320000px;}
.x4e_c00139{left:393.120000px;}
.x2a_c00139{left:403.920000px;}
.x6_c00139{left:405.360000px;}
.x40_c00139{left:415.440000px;}
.x47_c00139{left:425.520000px;}
.x14_c00139{left:426.960000px;}
.x3b_c00139{left:436.320000px;}
.x41_c00139{left:448.560000px;}
.x22_c00139{left:458.640000px;}
.xf_c00139{left:460.080000px;}
.x53_c00139{left:468.720000px;}
.x2b_c00139{left:470.160000px;}
.x43_c00139{left:479.520000px;}
.x37_c00139{left:480.960000px;}
.x23_c00139{left:492.480000px;}
.x1d_c00139{left:493.920000px;}
.x4c_c00139{left:501.120000px;}
.x51_c00139{left:502.560000px;}
.x7_c00139{left:514.080000px;}
.x24_c00139{left:524.160000px;}
.x50_c00139{left:534.240000px;}
.x10_c00139{left:535.680000px;}
.x8_c00139{left:546.480000px;}
.x3c_c00139{left:557.280000px;}
.x38_c00139{left:567.360000px;}
.x3d_c00139{left:588.960000px;}
.x25_c00139{left:590.400000px;}
.x9_c00139{left:600.480000px;}
.x2c_c00139{left:611.280000px;}
.x32_c00139{left:622.080000px;}
.x15_c00139{left:633.600000px;}
.x55_c00139{left:642.960000px;}
.xa_c00139{left:644.400000px;}
.x33_c00139{left:654.480000px;}
.x1_c00139{left:664.560000px;}
.x16_c00139{left:666.720000px;}
.x3e_c00139{left:676.800000px;}
.x2f_c00139{left:688.320000px;}
.x56_c00139{left:709.200000px;}
.x57_c00139{left:741.600000px;}
@media print{
.v2_c00139{vertical-align:-12.800000pt;}
.v1_c00139{vertical-align:-2.560000pt;}
.v0_c00139{vertical-align:0.000000pt;}
.ls1_c00139{letter-spacing:0.000000pt;}
.ls0_c00139{letter-spacing:24.162347pt;}
.ws3_c00139{word-spacing:0.000000pt;}
.ws2_c00139{word-spacing:2.340267pt;}
.ws1_c00139{word-spacing:4.834347pt;}
.ws0_c00139{word-spacing:7.980373pt;}
.fs7_c00139{font-size:30.720000pt;}
.fs5_c00139{font-size:33.280000pt;}
.fsb_c00139{font-size:38.400000pt;}
.fs1_c00139{font-size:40.960000pt;}
.fs6_c00139{font-size:43.520000pt;}
.fs3_c00139{font-size:46.080000pt;}
.fs9_c00139{font-size:48.640000pt;}
.fs8_c00139{font-size:51.200000pt;}
.fs4_c00139{font-size:53.760000pt;}
.fsa_c00139{font-size:56.320000pt;}
.fsd_c00139{font-size:58.880000pt;}
.fs2_c00139{font-size:61.440000pt;}
.fsc_c00139{font-size:64.000000pt;}
.fs0_c00139{font-size:66.560000pt;}
.fse_c00139{font-size:69.120000pt;}
.y0_c00139{bottom:0.000000pt;}
.y79_c00139{bottom:30.720000pt;}
.y78_c00139{bottom:32.000000pt;}
.y72_c00139{bottom:32.640000pt;}
.y76_c00139{bottom:33.280000pt;}
.y77_c00139{bottom:33.920000pt;}
.y70_c00139{bottom:35.840000pt;}
.y71_c00139{bottom:37.120000pt;}
.y75_c00139{bottom:71.040000pt;}
.y74_c00139{bottom:71.680000pt;}
.y6f_c00139{bottom:72.320000pt;}
.y73_c00139{bottom:72.960000pt;}
.y6e_c00139{bottom:75.520000pt;}
.y6d_c00139{bottom:76.160000pt;}
.y6c_c00139{bottom:122.880000pt;}
.y68_c00139{bottom:156.160000pt;}
.y69_c00139{bottom:156.800000pt;}
.y6a_c00139{bottom:157.440000pt;}
.y6b_c00139{bottom:158.080000pt;}
.y67_c00139{bottom:159.360000pt;}
.y65_c00139{bottom:160.000000pt;}
.y66_c00139{bottom:160.640000pt;}
.y64_c00139{bottom:193.280000pt;}
.y5f_c00139{bottom:193.920000pt;}
.y63_c00139{bottom:195.200000pt;}
.y62_c00139{bottom:195.840000pt;}
.y61_c00139{bottom:196.480000pt;}
.y60_c00139{bottom:197.120000pt;}
.y5e_c00139{bottom:198.400000pt;}
.y5d_c00139{bottom:199.040000pt;}
.y5a_c00139{bottom:232.320000pt;}
.y58_c00139{bottom:232.960000pt;}
.y5c_c00139{bottom:233.600000pt;}
.y5b_c00139{bottom:234.240000pt;}
.y59_c00139{bottom:234.880000pt;}
.y57_c00139{bottom:235.520000pt;}
.y56_c00139{bottom:236.160000pt;}
.y55_c00139{bottom:238.720000pt;}
.y54_c00139{bottom:270.080000pt;}
.y50_c00139{bottom:270.720000pt;}
.y4f_c00139{bottom:271.360000pt;}
.y53_c00139{bottom:272.000000pt;}
.y51_c00139{bottom:272.640000pt;}
.y52_c00139{bottom:273.280000pt;}
.y4e_c00139{bottom:273.920000pt;}
.y4d_c00139{bottom:274.560000pt;}
.y4c_c00139{bottom:276.480000pt;}
.y48_c00139{bottom:308.480000pt;}
.y49_c00139{bottom:309.120000pt;}
.y4b_c00139{bottom:310.400000pt;}
.y4a_c00139{bottom:311.040000pt;}
.y46_c00139{bottom:311.680000pt;}
.y47_c00139{bottom:312.320000pt;}
.y43_c00139{bottom:347.520000pt;}
.y45_c00139{bottom:348.160000pt;}
.y40_c00139{bottom:348.800000pt;}
.y44_c00139{bottom:349.440000pt;}
.y42_c00139{bottom:350.080000pt;}
.y41_c00139{bottom:350.720000pt;}
.y3f_c00139{bottom:351.360000pt;}
.y3e_c00139{bottom:382.720000pt;}
.y3a_c00139{bottom:385.280000pt;}
.y3c_c00139{bottom:386.560000pt;}
.y3d_c00139{bottom:387.840000pt;}
.y3b_c00139{bottom:388.480000pt;}
.y39_c00139{bottom:389.120000pt;}
.y36_c00139{bottom:422.400000pt;}
.y38_c00139{bottom:423.040000pt;}
.y35_c00139{bottom:424.320000pt;}
.y37_c00139{bottom:424.960000pt;}
.y34_c00139{bottom:425.600000pt;}
.y33_c00139{bottom:426.880000pt;}
.y32_c00139{bottom:473.600000pt;}
.y31_c00139{bottom:508.160000pt;}
.y2f_c00139{bottom:508.800000pt;}
.y30_c00139{bottom:509.440000pt;}
.y2d_c00139{bottom:510.720000pt;}
.y2e_c00139{bottom:511.360000pt;}
.y2c_c00139{bottom:546.560000pt;}
.y2b_c00139{bottom:547.200000pt;}
.y29_c00139{bottom:547.840000pt;}
.y28_c00139{bottom:549.120000pt;}
.y2a_c00139{bottom:549.760000pt;}
.y27_c00139{bottom:583.680000pt;}
.y24_c00139{bottom:584.960000pt;}
.y25_c00139{bottom:586.880000pt;}
.y26_c00139{bottom:587.520000pt;}
.y1f_c00139{bottom:622.080000pt;}
.y20_c00139{bottom:623.360000pt;}
.y22_c00139{bottom:624.640000pt;}
.y21_c00139{bottom:625.280000pt;}
.y23_c00139{bottom:625.920000pt;}
.y1c_c00139{bottom:660.480000pt;}
.y1e_c00139{bottom:661.120000pt;}
.y1b_c00139{bottom:662.400000pt;}
.y1a_c00139{bottom:663.040000pt;}
.y1d_c00139{bottom:663.680000pt;}
.y19_c00139{bottom:700.800000pt;}
.y18_c00139{bottom:701.440000pt;}
.y17_c00139{bottom:746.240000pt;}
.y16_c00139{bottom:747.520000pt;}
.y13_c00139{bottom:784.000000pt;}
.y15_c00139{bottom:784.640000pt;}
.y12_c00139{bottom:785.920000pt;}
.y14_c00139{bottom:786.560000pt;}
.yc_c00139{bottom:820.480000pt;}
.yf_c00139{bottom:822.400000pt;}
.yd_c00139{bottom:823.680000pt;}
.ye_c00139{bottom:824.320000pt;}
.y10_c00139{bottom:824.960000pt;}
.y11_c00139{bottom:825.600000pt;}
.y9_c00139{bottom:860.160000pt;}
.y7_c00139{bottom:860.800000pt;}
.y8_c00139{bottom:862.080000pt;}
.ya_c00139{bottom:863.360000pt;}
.yb_c00139{bottom:864.000000pt;}
.y3_c00139{bottom:897.920000pt;}
.y4_c00139{bottom:899.840000pt;}
.y2_c00139{bottom:901.120000pt;}
.y5_c00139{bottom:901.760000pt;}
.y6_c00139{bottom:902.400000pt;}
.y1_c00139{bottom:970.880000pt;}
.h9_c00139{height:27.645000pt;}
.h7_c00139{height:29.948750pt;}
.hd_c00139{height:34.556250pt;}
.h10_c00139{height:35.578750pt;}
.h3_c00139{height:36.860000pt;}
.h8_c00139{height:39.163750pt;}
.h5_c00139{height:41.467500pt;}
.hb_c00139{height:43.771250pt;}
.ha_c00139{height:46.075000pt;}
.h6_c00139{height:48.378750pt;}
.hc_c00139{height:50.682500pt;}
.hf_c00139{height:52.986250pt;}
.h4_c00139{height:55.290000pt;}
.he_c00139{height:57.593750pt;}
.h2_c00139{height:59.897500pt;}
.h11_c00139{height:62.201250pt;}
.h0_c00139{height:1024.640000pt;}
.h1_c00139{height:1024.666667pt;}
.w1_c00139{width:696.666667pt;}
.w0_c00139{width:696.960000pt;}
.x0_c00139{left:0.000000pt;}
.x17_c00139{left:44.800000pt;}
.xb_c00139{left:46.080000pt;}
.x48_c00139{left:54.400000pt;}
.x44_c00139{left:72.320000pt;}
.x18_c00139{left:73.600000pt;}
.x45_c00139{left:91.520000pt;}
.x34_c00139{left:100.480000pt;}
.x19_c00139{left:101.760000pt;}
.x42_c00139{left:109.440000pt;}
.x26_c00139{left:110.720000pt;}
.x46_c00139{left:120.320000pt;}
.xc_c00139{left:129.920000pt;}
.x39_c00139{left:138.240000pt;}
.x2_c00139{left:140.160000pt;}
.x27_c00139{left:147.840000pt;}
.x1e_c00139{left:151.680000pt;}
.x4f_c00139{left:157.440000pt;}
.x3_c00139{left:158.720000pt;}
.x20_c00139{left:167.680000pt;}
.xd_c00139{left:168.960000pt;}
.x4d_c00139{left:176.640000pt;}
.x1a_c00139{left:180.480000pt;}
.x2d_c00139{left:186.880000pt;}
.x49_c00139{left:195.840000pt;}
.x54_c00139{left:197.120000pt;}
.x28_c00139{left:206.080000pt;}
.x35_c00139{left:214.400000pt;}
.x11_c00139{left:215.680000pt;}
.x4a_c00139{left:224.640000pt;}
.x29_c00139{left:234.240000pt;}
.x1f_c00139{left:236.160000pt;}
.x30_c00139{left:243.840000pt;}
.x12_c00139{left:245.120000pt;}
.x3f_c00139{left:253.440000pt;}
.x4_c00139{left:254.720000pt;}
.x21_c00139{left:263.680000pt;}
.x3a_c00139{left:272.640000pt;}
.x31_c00139{left:282.240000pt;}
.x52_c00139{left:283.520000pt;}
.x1b_c00139{left:291.840000pt;}
.x5_c00139{left:293.760000pt;}
.x13_c00139{left:302.080000pt;}
.x36_c00139{left:311.040000pt;}
.xe_c00139{left:312.320000pt;}
.x2e_c00139{left:321.280000pt;}
.x1c_c00139{left:330.880000pt;}
.x4b_c00139{left:339.840000pt;}
.x4e_c00139{left:349.440000pt;}
.x2a_c00139{left:359.040000pt;}
.x6_c00139{left:360.320000pt;}
.x40_c00139{left:369.280000pt;}
.x47_c00139{left:378.240000pt;}
.x14_c00139{left:379.520000pt;}
.x3b_c00139{left:387.840000pt;}
.x41_c00139{left:398.720000pt;}
.x22_c00139{left:407.680000pt;}
.xf_c00139{left:408.960000pt;}
.x53_c00139{left:416.640000pt;}
.x2b_c00139{left:417.920000pt;}
.x43_c00139{left:426.240000pt;}
.x37_c00139{left:427.520000pt;}
.x23_c00139{left:437.760000pt;}
.x1d_c00139{left:439.040000pt;}
.x4c_c00139{left:445.440000pt;}
.x51_c00139{left:446.720000pt;}
.x7_c00139{left:456.960000pt;}
.x24_c00139{left:465.920000pt;}
.x50_c00139{left:474.880000pt;}
.x10_c00139{left:476.160000pt;}
.x8_c00139{left:485.760000pt;}
.x3c_c00139{left:495.360000pt;}
.x38_c00139{left:504.320000pt;}
.x3d_c00139{left:523.520000pt;}
.x25_c00139{left:524.800000pt;}
.x9_c00139{left:533.760000pt;}
.x2c_c00139{left:543.360000pt;}
.x32_c00139{left:552.960000pt;}
.x15_c00139{left:563.200000pt;}
.x55_c00139{left:571.520000pt;}
.xa_c00139{left:572.800000pt;}
.x33_c00139{left:581.760000pt;}
.x1_c00139{left:590.720000pt;}
.x16_c00139{left:592.640000pt;}
.x3e_c00139{left:601.600000pt;}
.x2f_c00139{left:611.840000pt;}
.x56_c00139{left:630.400000pt;}
.x57_c00139{left:659.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_dc6eeb70eb3beb70759326fa.woff2')format("woff");}.ff1_c00140{font-family:ff1_c00140;line-height:1.109863;font-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_c00140{transform:matrix(0.201075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201075,0.000000,0.000000,0.250000,0,0);}
.m23_c00140{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);}
.m1d_c00140{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mf_c00140{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m47_c00140{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m24_c00140{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m1c_c00140{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m42_c00140{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);}
.m4c_c00140{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m0_c00140{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m49_c00140{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m2_c00140{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m28_c00140{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m17_c00140{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00140{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m18_c00140{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00140{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m4_c00140{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);}
.m2e_c00140{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);}
.m2a_c00140{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);}
.m3e_c00140{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00140{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mc_c00140{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m16_c00140{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m9_c00140{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m5_c00140{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00140{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m7_c00140{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m20_c00140{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m22_c00140{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m27_c00140{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.me_c00140{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mb_c00140{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m21_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);}
.m3_c00140{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00140{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m29_c00140{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00140{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00140{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m19_c00140{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m13_c00140{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m31_c00140{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);}
.m39_c00140{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00140{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m46_c00140{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);}
.m35_c00140{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.ma_c00140{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m15_c00140{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);}
.m11_c00140{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m12_c00140{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);}
.m4a_c00140{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m37_c00140{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m1_c00140{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m10_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);}
.m3c_c00140{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);}
.m2d_c00140{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m40_c00140{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m8_c00140{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.md_c00140{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m41_c00140{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);}
.m32_c00140{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m14_c00140{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m30_c00140{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m34_c00140{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);}
.m43_c00140{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);}
.m3d_c00140{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.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);}
.m6_c00140{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00140{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);}
.m36_c00140{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m33_c00140{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m45_c00140{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m38_c00140{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m44_c00140{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m48_c00140{transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);}
.m26_c00140{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00140{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.v0_c00140{vertical-align:0.000000px;}
.v1_c00140{vertical-align:5.760000px;}
.ls0_c00140{letter-spacing:0.000000px;}
.sc__c00140{text-shadow:none;}
.sc0_c00140{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00140{-webkit-text-stroke:0px transparent;}
.sc0_c00140{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00140{word-spacing:-4.903680px;}
.ws4_c00140{word-spacing:0.000000px;}
.ws2_c00140{word-spacing:45.393600px;}
.ws3_c00140{word-spacing:53.754503px;}
.ws0_c00140{word-spacing:54.393523px;}
.fc0_c00140{color:transparent;}
.fsc_c00140{font-size:34.560000px;}
.fsd_c00140{font-size:43.200000px;}
.fsa_c00140{font-size:46.080000px;}
.fs6_c00140{font-size:48.960000px;}
.fs4_c00140{font-size:51.840000px;}
.fs3_c00140{font-size:54.720000px;}
.fs5_c00140{font-size:57.600000px;}
.fs9_c00140{font-size:60.480000px;}
.fs8_c00140{font-size:63.360000px;}
.fs2_c00140{font-size:66.240000px;}
.fs1_c00140{font-size:69.120000px;}
.fsb_c00140{font-size:72.000000px;}
.fs7_c00140{font-size:74.880000px;}
.fs0_c00140{font-size:77.760000px;}
.y0_c00140{bottom:0.000000px;}
.y53_c00140{bottom:19.440000px;}
.y52_c00140{bottom:21.600000px;}
.y51_c00140{bottom:22.320000px;}
.y72_c00140{bottom:47.520000px;}
.y71_c00140{bottom:48.960000px;}
.y73_c00140{bottom:49.680000px;}
.y4f_c00140{bottom:50.400000px;}
.y50_c00140{bottom:51.840000px;}
.y4e_c00140{bottom:54.000000px;}
.y4d_c00140{bottom:54.720000px;}
.y70_c00140{bottom:90.000000px;}
.y6f_c00140{bottom:90.720000px;}
.y6e_c00140{bottom:92.880000px;}
.y4c_c00140{bottom:93.600000px;}
.y6c_c00140{bottom:134.640000px;}
.y4b_c00140{bottom:135.360000px;}
.y6b_c00140{bottom:136.080000px;}
.y6d_c00140{bottom:136.800000px;}
.y49_c00140{bottom:137.520000px;}
.y4a_c00140{bottom:138.960000px;}
.y69_c00140{bottom:177.840000px;}
.y6a_c00140{bottom:178.560000px;}
.y48_c00140{bottom:179.280000px;}
.y68_c00140{bottom:221.040000px;}
.y67_c00140{bottom:222.480000px;}
.y47_c00140{bottom:223.200000px;}
.y66_c00140{bottom:264.240000px;}
.y46_c00140{bottom:264.960000px;}
.y65_c00140{bottom:265.680000px;}
.y45_c00140{bottom:267.120000px;}
.y44_c00140{bottom:307.440000px;}
.y62_c00140{bottom:308.160000px;}
.y64_c00140{bottom:308.880000px;}
.y42_c00140{bottom:309.600000px;}
.y63_c00140{bottom:310.320000px;}
.y61_c00140{bottom:311.040000px;}
.y43_c00140{bottom:311.760000px;}
.y60_c00140{bottom:350.640000px;}
.y41_c00140{bottom:351.360000px;}
.y40_c00140{bottom:352.080000px;}
.y5f_c00140{bottom:393.120000px;}
.y5d_c00140{bottom:393.840000px;}
.y3f_c00140{bottom:394.560000px;}
.y5e_c00140{bottom:396.000000px;}
.y5c_c00140{bottom:396.720000px;}
.y3e_c00140{bottom:435.600000px;}
.y5b_c00140{bottom:436.320000px;}
.y3c_c00140{bottom:437.040000px;}
.y3d_c00140{bottom:438.480000px;}
.y5a_c00140{bottom:439.200000px;}
.y3b_c00140{bottom:479.520000px;}
.y57_c00140{bottom:480.240000px;}
.y56_c00140{bottom:480.960000px;}
.y59_c00140{bottom:481.680000px;}
.y58_c00140{bottom:482.400000px;}
.y3a_c00140{bottom:483.840000px;}
.y54_c00140{bottom:522.720000px;}
.y55_c00140{bottom:523.440000px;}
.y37_c00140{bottom:524.880000px;}
.y39_c00140{bottom:525.600000px;}
.y38_c00140{bottom:526.320000px;}
.y35_c00140{bottom:565.920000px;}
.y34_c00140{bottom:566.640000px;}
.y36_c00140{bottom:568.080000px;}
.y33_c00140{bottom:568.800000px;}
.y32_c00140{bottom:600.480000px;}
.y2d_c00140{bottom:608.400000px;}
.y2f_c00140{bottom:609.120000px;}
.y31_c00140{bottom:609.840000px;}
.y2e_c00140{bottom:611.280000px;}
.y30_c00140{bottom:612.000000px;}
.y20_c00140{bottom:650.880000px;}
.y21_c00140{bottom:651.600000px;}
.y2b_c00140{bottom:653.040000px;}
.y2c_c00140{bottom:654.480000px;}
.y1f_c00140{bottom:655.200000px;}
.y1d_c00140{bottom:695.520000px;}
.y1e_c00140{bottom:696.240000px;}
.y1c_c00140{bottom:697.680000px;}
.y1b_c00140{bottom:747.360000px;}
.y28_c00140{bottom:749.520000px;}
.y27_c00140{bottom:750.240000px;}
.y29_c00140{bottom:752.400000px;}
.y2a_c00140{bottom:753.120000px;}
.y18_c00140{bottom:789.120000px;}
.y1a_c00140{bottom:790.560000px;}
.y19_c00140{bottom:792.000000px;}
.y25_c00140{bottom:792.720000px;}
.y24_c00140{bottom:793.440000px;}
.y26_c00140{bottom:794.880000px;}
.y17_c00140{bottom:835.920000px;}
.y15_c00140{bottom:836.640000px;}
.y16_c00140{bottom:837.360000px;}
.y11_c00140{bottom:885.600000px;}
.y10_c00140{bottom:887.040000px;}
.y13_c00140{bottom:888.480000px;}
.y23_c00140{bottom:889.200000px;}
.y12_c00140{bottom:889.920000px;}
.y14_c00140{bottom:890.640000px;}
.y22_c00140{bottom:892.080000px;}
.yf_c00140{bottom:930.240000px;}
.yd_c00140{bottom:930.960000px;}
.ye_c00140{bottom:931.680000px;}
.yc_c00140{bottom:932.400000px;}
.y6_c00140{bottom:960.480000px;}
.y8_c00140{bottom:963.360000px;}
.ya_c00140{bottom:964.800000px;}
.y7_c00140{bottom:965.520000px;}
.y9_c00140{bottom:966.240000px;}
.yb_c00140{bottom:966.960000px;}
.y1_c00140{bottom:1003.680000px;}
.y4_c00140{bottom:1007.280000px;}
.y3_c00140{bottom:1008.000000px;}
.y5_c00140{bottom:1008.720000px;}
.y2_c00140{bottom:1084.320000px;}
.he_c00140{height:31.100625px;}
.hf_c00140{height:38.875781px;}
.hc_c00140{height:41.467500px;}
.h8_c00140{height:44.059219px;}
.h6_c00140{height:46.650937px;}
.h5_c00140{height:49.242656px;}
.h7_c00140{height:51.834375px;}
.hb_c00140{height:54.426094px;}
.h10_c00140{height:55.002656px;}
.ha_c00140{height:57.017812px;}
.h4_c00140{height:59.609531px;}
.h3_c00140{height:62.201250px;}
.hd_c00140{height:64.792969px;}
.h9_c00140{height:67.384687px;}
.h2_c00140{height:69.976406px;}
.h1_c00140{height:1149.000000px;}
.h0_c00140{height:1149.120000px;}
.w0_c00140{width:779.760000px;}
.w1_c00140{width:780.000000px;}
.x0_c00140{left:0.000000px;}
.x13_c00140{left:56.880000px;}
.x6_c00140{left:58.320000px;}
.x1_c00140{left:59.760000px;}
.x17_c00140{left:88.560000px;}
.x11_c00140{left:110.880000px;}
.x35_c00140{left:130.320000px;}
.x18_c00140{left:132.480000px;}
.x29_c00140{left:140.400000px;}
.xc_c00140{left:142.560000px;}
.x2e_c00140{left:162.000000px;}
.x1f_c00140{left:163.440000px;}
.x36_c00140{left:173.520000px;}
.x2c_c00140{left:183.600000px;}
.xd_c00140{left:185.760000px;}
.x25_c00140{left:195.120000px;}
.x7_c00140{left:196.560000px;}
.x14_c00140{left:207.360000px;}
.x37_c00140{left:216.000000px;}
.x20_c00140{left:217.440000px;}
.x12_c00140{left:229.680000px;}
.x2d_c00140{left:238.320000px;}
.x2f_c00140{left:246.240000px;}
.x32_c00140{left:248.400000px;}
.x26_c00140{left:249.840000px;}
.x8_c00140{left:251.280000px;}
.x16_c00140{left:272.160000px;}
.x30_c00140{left:291.600000px;}
.x27_c00140{left:324.000000px;}
.x21_c00140{left:334.800000px;}
.x15_c00140{left:336.960000px;}
.x31_c00140{left:345.600000px;}
.xe_c00140{left:347.760000px;}
.x9_c00140{left:369.360000px;}
.x28_c00140{left:378.720000px;}
.x10_c00140{left:390.960000px;}
.x33_c00140{left:399.600000px;}
.xf_c00140{left:401.760000px;}
.x2a_c00140{left:411.120000px;}
.xa_c00140{left:423.360000px;}
.x34_c00140{left:453.600000px;}
.x2b_c00140{left:455.760000px;}
.x22_c00140{left:487.440000px;}
.x24_c00140{left:498.960000px;}
.x3d_c00140{left:541.440000px;}
.x1e_c00140{left:542.880000px;}
.x3_c00140{left:544.320000px;}
.x3e_c00140{left:552.960000px;}
.x1b_c00140{left:555.120000px;}
.x3a_c00140{left:574.560000px;}
.xb_c00140{left:576.000000px;}
.x23_c00140{left:596.160000px;}
.x4_c00140{left:597.600000px;}
.x19_c00140{left:609.120000px;}
.x39_c00140{left:628.560000px;}
.x1a_c00140{left:630.720000px;}
.x3b_c00140{left:661.680000px;}
.x1c_c00140{left:663.120000px;}
.x3f_c00140{left:671.760000px;}
.x2_c00140{left:673.200000px;}
.x3c_c00140{left:704.880000px;}
.x5_c00140{left:706.320000px;}
.x38_c00140{left:726.480000px;}
.x1d_c00140{left:727.920000px;}
@media print{
.v0_c00140{vertical-align:0.000000pt;}
.v1_c00140{vertical-align:5.120000pt;}
.ls0_c00140{letter-spacing:0.000000pt;}
.ws1_c00140{word-spacing:-4.358827pt;}
.ws4_c00140{word-spacing:0.000000pt;}
.ws2_c00140{word-spacing:40.349867pt;}
.ws3_c00140{word-spacing:47.781780pt;}
.ws0_c00140{word-spacing:48.349798pt;}
.fsc_c00140{font-size:30.720000pt;}
.fsd_c00140{font-size:38.400000pt;}
.fsa_c00140{font-size:40.960000pt;}
.fs6_c00140{font-size:43.520000pt;}
.fs4_c00140{font-size:46.080000pt;}
.fs3_c00140{font-size:48.640000pt;}
.fs5_c00140{font-size:51.200000pt;}
.fs9_c00140{font-size:53.760000pt;}
.fs8_c00140{font-size:56.320000pt;}
.fs2_c00140{font-size:58.880000pt;}
.fs1_c00140{font-size:61.440000pt;}
.fsb_c00140{font-size:64.000000pt;}
.fs7_c00140{font-size:66.560000pt;}
.fs0_c00140{font-size:69.120000pt;}
.y0_c00140{bottom:0.000000pt;}
.y53_c00140{bottom:17.280000pt;}
.y52_c00140{bottom:19.200000pt;}
.y51_c00140{bottom:19.840000pt;}
.y72_c00140{bottom:42.240000pt;}
.y71_c00140{bottom:43.520000pt;}
.y73_c00140{bottom:44.160000pt;}
.y4f_c00140{bottom:44.800000pt;}
.y50_c00140{bottom:46.080000pt;}
.y4e_c00140{bottom:48.000000pt;}
.y4d_c00140{bottom:48.640000pt;}
.y70_c00140{bottom:80.000000pt;}
.y6f_c00140{bottom:80.640000pt;}
.y6e_c00140{bottom:82.560000pt;}
.y4c_c00140{bottom:83.200000pt;}
.y6c_c00140{bottom:119.680000pt;}
.y4b_c00140{bottom:120.320000pt;}
.y6b_c00140{bottom:120.960000pt;}
.y6d_c00140{bottom:121.600000pt;}
.y49_c00140{bottom:122.240000pt;}
.y4a_c00140{bottom:123.520000pt;}
.y69_c00140{bottom:158.080000pt;}
.y6a_c00140{bottom:158.720000pt;}
.y48_c00140{bottom:159.360000pt;}
.y68_c00140{bottom:196.480000pt;}
.y67_c00140{bottom:197.760000pt;}
.y47_c00140{bottom:198.400000pt;}
.y66_c00140{bottom:234.880000pt;}
.y46_c00140{bottom:235.520000pt;}
.y65_c00140{bottom:236.160000pt;}
.y45_c00140{bottom:237.440000pt;}
.y44_c00140{bottom:273.280000pt;}
.y62_c00140{bottom:273.920000pt;}
.y64_c00140{bottom:274.560000pt;}
.y42_c00140{bottom:275.200000pt;}
.y63_c00140{bottom:275.840000pt;}
.y61_c00140{bottom:276.480000pt;}
.y43_c00140{bottom:277.120000pt;}
.y60_c00140{bottom:311.680000pt;}
.y41_c00140{bottom:312.320000pt;}
.y40_c00140{bottom:312.960000pt;}
.y5f_c00140{bottom:349.440000pt;}
.y5d_c00140{bottom:350.080000pt;}
.y3f_c00140{bottom:350.720000pt;}
.y5e_c00140{bottom:352.000000pt;}
.y5c_c00140{bottom:352.640000pt;}
.y3e_c00140{bottom:387.200000pt;}
.y5b_c00140{bottom:387.840000pt;}
.y3c_c00140{bottom:388.480000pt;}
.y3d_c00140{bottom:389.760000pt;}
.y5a_c00140{bottom:390.400000pt;}
.y3b_c00140{bottom:426.240000pt;}
.y57_c00140{bottom:426.880000pt;}
.y56_c00140{bottom:427.520000pt;}
.y59_c00140{bottom:428.160000pt;}
.y58_c00140{bottom:428.800000pt;}
.y3a_c00140{bottom:430.080000pt;}
.y54_c00140{bottom:464.640000pt;}
.y55_c00140{bottom:465.280000pt;}
.y37_c00140{bottom:466.560000pt;}
.y39_c00140{bottom:467.200000pt;}
.y38_c00140{bottom:467.840000pt;}
.y35_c00140{bottom:503.040000pt;}
.y34_c00140{bottom:503.680000pt;}
.y36_c00140{bottom:504.960000pt;}
.y33_c00140{bottom:505.600000pt;}
.y32_c00140{bottom:533.760000pt;}
.y2d_c00140{bottom:540.800000pt;}
.y2f_c00140{bottom:541.440000pt;}
.y31_c00140{bottom:542.080000pt;}
.y2e_c00140{bottom:543.360000pt;}
.y30_c00140{bottom:544.000000pt;}
.y20_c00140{bottom:578.560000pt;}
.y21_c00140{bottom:579.200000pt;}
.y2b_c00140{bottom:580.480000pt;}
.y2c_c00140{bottom:581.760000pt;}
.y1f_c00140{bottom:582.400000pt;}
.y1d_c00140{bottom:618.240000pt;}
.y1e_c00140{bottom:618.880000pt;}
.y1c_c00140{bottom:620.160000pt;}
.y1b_c00140{bottom:664.320000pt;}
.y28_c00140{bottom:666.240000pt;}
.y27_c00140{bottom:666.880000pt;}
.y29_c00140{bottom:668.800000pt;}
.y2a_c00140{bottom:669.440000pt;}
.y18_c00140{bottom:701.440000pt;}
.y1a_c00140{bottom:702.720000pt;}
.y19_c00140{bottom:704.000000pt;}
.y25_c00140{bottom:704.640000pt;}
.y24_c00140{bottom:705.280000pt;}
.y26_c00140{bottom:706.560000pt;}
.y17_c00140{bottom:743.040000pt;}
.y15_c00140{bottom:743.680000pt;}
.y16_c00140{bottom:744.320000pt;}
.y11_c00140{bottom:787.200000pt;}
.y10_c00140{bottom:788.480000pt;}
.y13_c00140{bottom:789.760000pt;}
.y23_c00140{bottom:790.400000pt;}
.y12_c00140{bottom:791.040000pt;}
.y14_c00140{bottom:791.680000pt;}
.y22_c00140{bottom:792.960000pt;}
.yf_c00140{bottom:826.880000pt;}
.yd_c00140{bottom:827.520000pt;}
.ye_c00140{bottom:828.160000pt;}
.yc_c00140{bottom:828.800000pt;}
.y6_c00140{bottom:853.760000pt;}
.y8_c00140{bottom:856.320000pt;}
.ya_c00140{bottom:857.600000pt;}
.y7_c00140{bottom:858.240000pt;}
.y9_c00140{bottom:858.880000pt;}
.yb_c00140{bottom:859.520000pt;}
.y1_c00140{bottom:892.160000pt;}
.y4_c00140{bottom:895.360000pt;}
.y3_c00140{bottom:896.000000pt;}
.y5_c00140{bottom:896.640000pt;}
.y2_c00140{bottom:963.840000pt;}
.he_c00140{height:27.645000pt;}
.hf_c00140{height:34.556250pt;}
.hc_c00140{height:36.860000pt;}
.h8_c00140{height:39.163750pt;}
.h6_c00140{height:41.467500pt;}
.h5_c00140{height:43.771250pt;}
.h7_c00140{height:46.075000pt;}
.hb_c00140{height:48.378750pt;}
.h10_c00140{height:48.891250pt;}
.ha_c00140{height:50.682500pt;}
.h4_c00140{height:52.986250pt;}
.h3_c00140{height:55.290000pt;}
.hd_c00140{height:57.593750pt;}
.h9_c00140{height:59.897500pt;}
.h2_c00140{height:62.201250pt;}
.h1_c00140{height:1021.333333pt;}
.h0_c00140{height:1021.440000pt;}
.w0_c00140{width:693.120000pt;}
.w1_c00140{width:693.333333pt;}
.x0_c00140{left:0.000000pt;}
.x13_c00140{left:50.560000pt;}
.x6_c00140{left:51.840000pt;}
.x1_c00140{left:53.120000pt;}
.x17_c00140{left:78.720000pt;}
.x11_c00140{left:98.560000pt;}
.x35_c00140{left:115.840000pt;}
.x18_c00140{left:117.760000pt;}
.x29_c00140{left:124.800000pt;}
.xc_c00140{left:126.720000pt;}
.x2e_c00140{left:144.000000pt;}
.x1f_c00140{left:145.280000pt;}
.x36_c00140{left:154.240000pt;}
.x2c_c00140{left:163.200000pt;}
.xd_c00140{left:165.120000pt;}
.x25_c00140{left:173.440000pt;}
.x7_c00140{left:174.720000pt;}
.x14_c00140{left:184.320000pt;}
.x37_c00140{left:192.000000pt;}
.x20_c00140{left:193.280000pt;}
.x12_c00140{left:204.160000pt;}
.x2d_c00140{left:211.840000pt;}
.x2f_c00140{left:218.880000pt;}
.x32_c00140{left:220.800000pt;}
.x26_c00140{left:222.080000pt;}
.x8_c00140{left:223.360000pt;}
.x16_c00140{left:241.920000pt;}
.x30_c00140{left:259.200000pt;}
.x27_c00140{left:288.000000pt;}
.x21_c00140{left:297.600000pt;}
.x15_c00140{left:299.520000pt;}
.x31_c00140{left:307.200000pt;}
.xe_c00140{left:309.120000pt;}
.x9_c00140{left:328.320000pt;}
.x28_c00140{left:336.640000pt;}
.x10_c00140{left:347.520000pt;}
.x33_c00140{left:355.200000pt;}
.xf_c00140{left:357.120000pt;}
.x2a_c00140{left:365.440000pt;}
.xa_c00140{left:376.320000pt;}
.x34_c00140{left:403.200000pt;}
.x2b_c00140{left:405.120000pt;}
.x22_c00140{left:433.280000pt;}
.x24_c00140{left:443.520000pt;}
.x3d_c00140{left:481.280000pt;}
.x1e_c00140{left:482.560000pt;}
.x3_c00140{left:483.840000pt;}
.x3e_c00140{left:491.520000pt;}
.x1b_c00140{left:493.440000pt;}
.x3a_c00140{left:510.720000pt;}
.xb_c00140{left:512.000000pt;}
.x23_c00140{left:529.920000pt;}
.x4_c00140{left:531.200000pt;}
.x19_c00140{left:541.440000pt;}
.x39_c00140{left:558.720000pt;}
.x1a_c00140{left:560.640000pt;}
.x3b_c00140{left:588.160000pt;}
.x1c_c00140{left:589.440000pt;}
.x3f_c00140{left:597.120000pt;}
.x2_c00140{left:598.400000pt;}
.x3c_c00140{left:626.560000pt;}
.x5_c00140{left:627.840000pt;}
.x38_c00140{left:645.760000pt;}
.x1d_c00140{left:647.040000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2d16e29499c5bea144cccf93.woff2')format("woff");}.ff1_c00141{font-family:ff1_c00141;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5e_c00141{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m56_c00141{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);}
.m59_c00141{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00141{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m54_c00141{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);}
.m4a_c00141{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00141{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m58_c00141{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m55_c00141{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);}
.m57_c00141{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m13_c00141{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m18_c00141{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00141{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1_c00141{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00141{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00141{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00141{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m44_c00141{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m17_c00141{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00141{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m47_c00141{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m9_c00141{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00141{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m21_c00141{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m0_c00141{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m24_c00141{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m10_c00141{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00141{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.ma_c00141{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m32_c00141{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);}
.m2d_c00141{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);}
.m36_c00141{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m39_c00141{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.md_c00141{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);}
.m5a_c00141{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);}
.m31_c00141{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);}
.m25_c00141{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m19_c00141{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m11_c00141{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m2_c00141{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);}
.m28_c00141{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);}
.m49_c00141{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m42_c00141{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);}
.m38_c00141{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.mc_c00141{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m20_c00141{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m7_c00141{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);}
.m40_c00141{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00141{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m3_c00141{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m46_c00141{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);}
.m2e_c00141{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m41_c00141{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m35_c00141{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);}
.m22_c00141{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.mf_c00141{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);}
.m34_c00141{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m6_c00141{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00141{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m4_c00141{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);}
.m37_c00141{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.me_c00141{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00141{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00141{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m29_c00141{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m33_c00141{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);}
.m12_c00141{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);}
.m5c_c00141{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00141{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m23_c00141{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m26_c00141{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);}
.m1f_c00141{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m27_c00141{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m15_c00141{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m30_c00141{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);}
.m4e_c00141{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m14_c00141{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m5_c00141{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00141{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00141{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00141{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);}
.m1e_c00141{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);}
.m16_c00141{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.mb_c00141{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m8_c00141{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00141{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m43_c00141{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m48_c00141{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m45_c00141{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00141{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);}
.m2f_c00141{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00141{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m52_c00141{transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);}
.m50_c00141{transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);}
.m51_c00141{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m53_c00141{transform:matrix(0.907500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.907500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.907500,0.000000,0.000000,0.250000,0,0);}
.v2_c00141{vertical-align:-8.640000px;}
.v0_c00141{vertical-align:0.000000px;}
.v1_c00141{vertical-align:8.640000px;}
.ls1_c00141{letter-spacing:0.000000px;}
.ls0_c00141{letter-spacing:83.257680px;}
.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;}
}
.ws1_c00141{word-spacing:0.000000px;}
.ws0_c00141{word-spacing:1.422960px;}
.fc0_c00141{color:transparent;}
.fsf_c00141{font-size:31.680000px;}
.fs4_c00141{font-size:34.560000px;}
.fs8_c00141{font-size:37.440000px;}
.fsc_c00141{font-size:43.200000px;}
.fs3_c00141{font-size:46.080000px;}
.fs1_c00141{font-size:48.960000px;}
.fs6_c00141{font-size:51.840000px;}
.fs9_c00141{font-size:54.720000px;}
.fs2_c00141{font-size:57.600000px;}
.fs5_c00141{font-size:60.480000px;}
.fsb_c00141{font-size:63.360000px;}
.fsd_c00141{font-size:66.240000px;}
.fs7_c00141{font-size:69.120000px;}
.fsa_c00141{font-size:72.000000px;}
.fs0_c00141{font-size:74.880000px;}
.fs10_c00141{font-size:77.760000px;}
.fse_c00141{font-size:100.800000px;}
.y0_c00141{bottom:0.000000px;}
.y71_c00141{bottom:39.600000px;}
.y70_c00141{bottom:44.640000px;}
.y74_c00141{bottom:68.400000px;}
.y73_c00141{bottom:69.840000px;}
.y6d_c00141{bottom:72.000000px;}
.y6f_c00141{bottom:73.440000px;}
.y6e_c00141{bottom:74.160000px;}
.y6c_c00141{bottom:77.040000px;}
.y6a_c00141{bottom:111.600000px;}
.y72_c00141{bottom:112.320000px;}
.y6b_c00141{bottom:113.760000px;}
.y67_c00141{bottom:115.200000px;}
.y69_c00141{bottom:115.920000px;}
.y68_c00141{bottom:117.360000px;}
.y66_c00141{bottom:119.520000px;}
.y65_c00141{bottom:156.960000px;}
.y64_c00141{bottom:161.280000px;}
.y62_c00141{bottom:187.200000px;}
.y63_c00141{bottom:187.920000px;}
.y5f_c00141{bottom:189.360000px;}
.y61_c00141{bottom:190.080000px;}
.y60_c00141{bottom:192.960000px;}
.y5e_c00141{bottom:193.680000px;}
.y5d_c00141{bottom:229.680000px;}
.y5b_c00141{bottom:230.400000px;}
.y58_c00141{bottom:231.120000px;}
.y5c_c00141{bottom:232.560000px;}
.y57_c00141{bottom:236.160000px;}
.y56_c00141{bottom:273.600000px;}
.y59_c00141{bottom:274.320000px;}
.y55_c00141{bottom:275.040000px;}
.y5a_c00141{bottom:275.760000px;}
.y54_c00141{bottom:278.640000px;}
.y53_c00141{bottom:288.720000px;}
.y52_c00141{bottom:329.040000px;}
.y51_c00141{bottom:329.760000px;}
.y50_c00141{bottom:380.880000px;}
.y4f_c00141{bottom:381.600000px;}
.y4e_c00141{bottom:383.760000px;}
.y4d_c00141{bottom:384.480000px;}
.y49_c00141{bottom:416.880000px;}
.y4a_c00141{bottom:424.080000px;}
.y4b_c00141{bottom:425.520000px;}
.y4c_c00141{bottom:426.240000px;}
.y48_c00141{bottom:427.680000px;}
.y47_c00141{bottom:428.400000px;}
.y46_c00141{bottom:429.120000px;}
.y44_c00141{bottom:478.080000px;}
.y42_c00141{bottom:479.520000px;}
.y45_c00141{bottom:480.960000px;}
.y43_c00141{bottom:481.680000px;}
.y41_c00141{bottom:482.400000px;}
.y40_c00141{bottom:519.840000px;}
.y3e_c00141{bottom:521.280000px;}
.y3f_c00141{bottom:523.440000px;}
.y3d_c00141{bottom:524.160000px;}
.y3c_c00141{bottom:524.880000px;}
.y3b_c00141{bottom:525.600000px;}
.y3a_c00141{bottom:563.040000px;}
.y39_c00141{bottom:563.760000px;}
.y36_c00141{bottom:565.200000px;}
.y38_c00141{bottom:565.920000px;}
.y37_c00141{bottom:566.640000px;}
.y35_c00141{bottom:567.360000px;}
.y34_c00141{bottom:605.520000px;}
.y33_c00141{bottom:606.240000px;}
.y32_c00141{bottom:606.960000px;}
.y31_c00141{bottom:609.120000px;}
.y30_c00141{bottom:609.840000px;}
.y2e_c00141{bottom:649.440000px;}
.y2f_c00141{bottom:650.160000px;}
.y2d_c00141{bottom:652.320000px;}
.y2c_c00141{bottom:653.040000px;}
.y2a_c00141{bottom:702.720000px;}
.y2b_c00141{bottom:703.440000px;}
.y28_c00141{bottom:704.880000px;}
.y29_c00141{bottom:705.600000px;}
.y25_c00141{bottom:745.200000px;}
.y27_c00141{bottom:745.920000px;}
.y23_c00141{bottom:746.640000px;}
.y22_c00141{bottom:747.360000px;}
.y24_c00141{bottom:748.080000px;}
.y26_c00141{bottom:748.800000px;}
.y1c_c00141{bottom:786.960000px;}
.y1f_c00141{bottom:788.400000px;}
.y21_c00141{bottom:789.120000px;}
.y1e_c00141{bottom:790.560000px;}
.y1d_c00141{bottom:791.280000px;}
.y20_c00141{bottom:792.000000px;}
.y17_c00141{bottom:829.440000px;}
.y18_c00141{bottom:830.880000px;}
.y19_c00141{bottom:831.600000px;}
.y1a_c00141{bottom:833.760000px;}
.y1b_c00141{bottom:834.480000px;}
.y14_c00141{bottom:872.640000px;}
.y12_c00141{bottom:874.800000px;}
.y13_c00141{bottom:876.240000px;}
.y15_c00141{bottom:876.960000px;}
.y16_c00141{bottom:877.680000px;}
.yd_c00141{bottom:915.120000px;}
.y10_c00141{bottom:917.280000px;}
.ye_c00141{bottom:918.720000px;}
.yf_c00141{bottom:919.440000px;}
.y11_c00141{bottom:920.160000px;}
.y8_c00141{bottom:957.600000px;}
.yc_c00141{bottom:959.760000px;}
.y9_c00141{bottom:961.200000px;}
.ya_c00141{bottom:961.920000px;}
.yb_c00141{bottom:962.640000px;}
.y4_c00141{bottom:1002.960000px;}
.y7_c00141{bottom:1003.680000px;}
.y2_c00141{bottom:1004.400000px;}
.y3_c00141{bottom:1005.120000px;}
.y6_c00141{bottom:1005.840000px;}
.y5_c00141{bottom:1006.560000px;}
.y1_c00141{bottom:1084.320000px;}
.h11_c00141{height:28.508906px;}
.h6_c00141{height:31.100625px;}
.ha_c00141{height:33.692344px;}
.he_c00141{height:38.875781px;}
.h5_c00141{height:41.467500px;}
.h3_c00141{height:44.059219px;}
.h8_c00141{height:46.650937px;}
.hb_c00141{height:49.242656px;}
.h4_c00141{height:51.834375px;}
.h7_c00141{height:54.426094px;}
.hd_c00141{height:57.017812px;}
.hf_c00141{height:59.609531px;}
.h9_c00141{height:62.201250px;}
.hc_c00141{height:64.792969px;}
.h2_c00141{height:67.384687px;}
.h12_c00141{height:69.976406px;}
.h10_c00141{height:90.710156px;}
.h0_c00141{height:1153.440000px;}
.h1_c00141{height:1153.500000px;}
.w1_c00141{width:786.000000px;}
.w0_c00141{width:786.240000px;}
.x0_c00141{left:0.000000px;}
.xb_c00141{left:52.560000px;}
.x4a_c00141{left:54.000000px;}
.x25_c00141{left:83.520000px;}
.x29_c00141{left:84.960000px;}
.x1a_c00141{left:95.040000px;}
.x3c_c00141{left:103.680000px;}
.x26_c00141{left:115.200000px;}
.x2f_c00141{left:126.000000px;}
.x20_c00141{left:127.440000px;}
.x4b_c00141{left:134.640000px;}
.x1b_c00141{left:136.800000px;}
.x30_c00141{left:157.680000px;}
.x2_c00141{left:159.840000px;}
.x2a_c00141{left:168.480000px;}
.xc_c00141{left:169.920000px;}
.x53_c00141{left:177.840000px;}
.x3_c00141{left:180.720000px;}
.x3d_c00141{left:187.920000px;}
.x15_c00141{left:190.800000px;}
.xd_c00141{left:201.600000px;}
.x4e_c00141{left:210.240000px;}
.x21_c00141{left:212.400000px;}
.x49_c00141{left:221.760000px;}
.x16_c00141{left:232.560000px;}
.xe_c00141{left:234.720000px;}
.x34_c00141{left:243.360000px;}
.x4f_c00141{left:252.000000px;}
.x27_c00141{left:255.600000px;}
.x3e_c00141{left:265.680000px;}
.x4d_c00141{left:285.840000px;}
.x1c_c00141{left:287.280000px;}
.x50_c00141{left:296.640000px;}
.x3f_c00141{left:298.080000px;}
.x32_c00141{left:308.160000px;}
.x4_c00141{left:320.400000px;}
.x51_c00141{left:329.040000px;}
.xf_c00141{left:331.200000px;}
.x38_c00141{left:341.280000px;}
.x1d_c00141{left:352.800000px;}
.x10_c00141{left:362.880000px;}
.x17_c00141{left:373.680000px;}
.x41_c00141{left:383.040000px;}
.x1e_c00141{left:384.480000px;}
.x2b_c00141{left:395.280000px;}
.x22_c00141{left:406.800000px;}
.x42_c00141{left:416.160000px;}
.x52_c00141{left:426.960000px;}
.x23_c00141{left:428.400000px;}
.x5_c00141{left:429.840000px;}
.x2c_c00141{left:438.480000px;}
.x18_c00141{left:439.920000px;}
.x35_c00141{left:449.280000px;}
.x6_c00141{left:450.720000px;}
.x33_c00141{left:460.080000px;}
.x40_c00141{left:470.880000px;}
.x31_c00141{left:482.400000px;}
.x11_c00141{left:483.840000px;}
.x2d_c00141{left:493.920000px;}
.x43_c00141{left:503.280000px;}
.x1f_c00141{left:504.720000px;}
.x24_c00141{left:514.800000px;}
.x12_c00141{left:527.040000px;}
.x39_c00141{left:536.400000px;}
.x7_c00141{left:537.840000px;}
.x36_c00141{left:559.440000px;}
.x45_c00141{left:568.800000px;}
.x13_c00141{left:570.240000px;}
.x8_c00141{left:581.040000px;}
.x14_c00141{left:602.640000px;}
.x28_c00141{left:613.440000px;}
.x19_c00141{left:614.880000px;}
.x54_c00141{left:622.800000px;}
.x3a_c00141{left:624.240000px;}
.x37_c00141{left:635.040000px;}
.x9_c00141{left:645.840000px;}
.x3b_c00141{left:657.360000px;}
.x2e_c00141{left:668.160000px;}
.x46_c00141{left:677.520000px;}
.x44_c00141{left:680.400000px;}
.x1_c00141{left:686.880000px;}
.xa_c00141{left:690.480000px;}
.x55_c00141{left:699.840000px;}
.x4c_c00141{left:701.280000px;}
.x47_c00141{left:710.640000px;}
.x48_c00141{left:743.040000px;}
@media print{
.v2_c00141{vertical-align:-7.680000pt;}
.v0_c00141{vertical-align:0.000000pt;}
.v1_c00141{vertical-align:7.680000pt;}
.ls1_c00141{letter-spacing:0.000000pt;}
.ls0_c00141{letter-spacing:74.006827pt;}
.ws1_c00141{word-spacing:0.000000pt;}
.ws0_c00141{word-spacing:1.264853pt;}
.fsf_c00141{font-size:28.160000pt;}
.fs4_c00141{font-size:30.720000pt;}
.fs8_c00141{font-size:33.280000pt;}
.fsc_c00141{font-size:38.400000pt;}
.fs3_c00141{font-size:40.960000pt;}
.fs1_c00141{font-size:43.520000pt;}
.fs6_c00141{font-size:46.080000pt;}
.fs9_c00141{font-size:48.640000pt;}
.fs2_c00141{font-size:51.200000pt;}
.fs5_c00141{font-size:53.760000pt;}
.fsb_c00141{font-size:56.320000pt;}
.fsd_c00141{font-size:58.880000pt;}
.fs7_c00141{font-size:61.440000pt;}
.fsa_c00141{font-size:64.000000pt;}
.fs0_c00141{font-size:66.560000pt;}
.fs10_c00141{font-size:69.120000pt;}
.fse_c00141{font-size:89.600000pt;}
.y0_c00141{bottom:0.000000pt;}
.y71_c00141{bottom:35.200000pt;}
.y70_c00141{bottom:39.680000pt;}
.y74_c00141{bottom:60.800000pt;}
.y73_c00141{bottom:62.080000pt;}
.y6d_c00141{bottom:64.000000pt;}
.y6f_c00141{bottom:65.280000pt;}
.y6e_c00141{bottom:65.920000pt;}
.y6c_c00141{bottom:68.480000pt;}
.y6a_c00141{bottom:99.200000pt;}
.y72_c00141{bottom:99.840000pt;}
.y6b_c00141{bottom:101.120000pt;}
.y67_c00141{bottom:102.400000pt;}
.y69_c00141{bottom:103.040000pt;}
.y68_c00141{bottom:104.320000pt;}
.y66_c00141{bottom:106.240000pt;}
.y65_c00141{bottom:139.520000pt;}
.y64_c00141{bottom:143.360000pt;}
.y62_c00141{bottom:166.400000pt;}
.y63_c00141{bottom:167.040000pt;}
.y5f_c00141{bottom:168.320000pt;}
.y61_c00141{bottom:168.960000pt;}
.y60_c00141{bottom:171.520000pt;}
.y5e_c00141{bottom:172.160000pt;}
.y5d_c00141{bottom:204.160000pt;}
.y5b_c00141{bottom:204.800000pt;}
.y58_c00141{bottom:205.440000pt;}
.y5c_c00141{bottom:206.720000pt;}
.y57_c00141{bottom:209.920000pt;}
.y56_c00141{bottom:243.200000pt;}
.y59_c00141{bottom:243.840000pt;}
.y55_c00141{bottom:244.480000pt;}
.y5a_c00141{bottom:245.120000pt;}
.y54_c00141{bottom:247.680000pt;}
.y53_c00141{bottom:256.640000pt;}
.y52_c00141{bottom:292.480000pt;}
.y51_c00141{bottom:293.120000pt;}
.y50_c00141{bottom:338.560000pt;}
.y4f_c00141{bottom:339.200000pt;}
.y4e_c00141{bottom:341.120000pt;}
.y4d_c00141{bottom:341.760000pt;}
.y49_c00141{bottom:370.560000pt;}
.y4a_c00141{bottom:376.960000pt;}
.y4b_c00141{bottom:378.240000pt;}
.y4c_c00141{bottom:378.880000pt;}
.y48_c00141{bottom:380.160000pt;}
.y47_c00141{bottom:380.800000pt;}
.y46_c00141{bottom:381.440000pt;}
.y44_c00141{bottom:424.960000pt;}
.y42_c00141{bottom:426.240000pt;}
.y45_c00141{bottom:427.520000pt;}
.y43_c00141{bottom:428.160000pt;}
.y41_c00141{bottom:428.800000pt;}
.y40_c00141{bottom:462.080000pt;}
.y3e_c00141{bottom:463.360000pt;}
.y3f_c00141{bottom:465.280000pt;}
.y3d_c00141{bottom:465.920000pt;}
.y3c_c00141{bottom:466.560000pt;}
.y3b_c00141{bottom:467.200000pt;}
.y3a_c00141{bottom:500.480000pt;}
.y39_c00141{bottom:501.120000pt;}
.y36_c00141{bottom:502.400000pt;}
.y38_c00141{bottom:503.040000pt;}
.y37_c00141{bottom:503.680000pt;}
.y35_c00141{bottom:504.320000pt;}
.y34_c00141{bottom:538.240000pt;}
.y33_c00141{bottom:538.880000pt;}
.y32_c00141{bottom:539.520000pt;}
.y31_c00141{bottom:541.440000pt;}
.y30_c00141{bottom:542.080000pt;}
.y2e_c00141{bottom:577.280000pt;}
.y2f_c00141{bottom:577.920000pt;}
.y2d_c00141{bottom:579.840000pt;}
.y2c_c00141{bottom:580.480000pt;}
.y2a_c00141{bottom:624.640000pt;}
.y2b_c00141{bottom:625.280000pt;}
.y28_c00141{bottom:626.560000pt;}
.y29_c00141{bottom:627.200000pt;}
.y25_c00141{bottom:662.400000pt;}
.y27_c00141{bottom:663.040000pt;}
.y23_c00141{bottom:663.680000pt;}
.y22_c00141{bottom:664.320000pt;}
.y24_c00141{bottom:664.960000pt;}
.y26_c00141{bottom:665.600000pt;}
.y1c_c00141{bottom:699.520000pt;}
.y1f_c00141{bottom:700.800000pt;}
.y21_c00141{bottom:701.440000pt;}
.y1e_c00141{bottom:702.720000pt;}
.y1d_c00141{bottom:703.360000pt;}
.y20_c00141{bottom:704.000000pt;}
.y17_c00141{bottom:737.280000pt;}
.y18_c00141{bottom:738.560000pt;}
.y19_c00141{bottom:739.200000pt;}
.y1a_c00141{bottom:741.120000pt;}
.y1b_c00141{bottom:741.760000pt;}
.y14_c00141{bottom:775.680000pt;}
.y12_c00141{bottom:777.600000pt;}
.y13_c00141{bottom:778.880000pt;}
.y15_c00141{bottom:779.520000pt;}
.y16_c00141{bottom:780.160000pt;}
.yd_c00141{bottom:813.440000pt;}
.y10_c00141{bottom:815.360000pt;}
.ye_c00141{bottom:816.640000pt;}
.yf_c00141{bottom:817.280000pt;}
.y11_c00141{bottom:817.920000pt;}
.y8_c00141{bottom:851.200000pt;}
.yc_c00141{bottom:853.120000pt;}
.y9_c00141{bottom:854.400000pt;}
.ya_c00141{bottom:855.040000pt;}
.yb_c00141{bottom:855.680000pt;}
.y4_c00141{bottom:891.520000pt;}
.y7_c00141{bottom:892.160000pt;}
.y2_c00141{bottom:892.800000pt;}
.y3_c00141{bottom:893.440000pt;}
.y6_c00141{bottom:894.080000pt;}
.y5_c00141{bottom:894.720000pt;}
.y1_c00141{bottom:963.840000pt;}
.h11_c00141{height:25.341250pt;}
.h6_c00141{height:27.645000pt;}
.ha_c00141{height:29.948750pt;}
.he_c00141{height:34.556250pt;}
.h5_c00141{height:36.860000pt;}
.h3_c00141{height:39.163750pt;}
.h8_c00141{height:41.467500pt;}
.hb_c00141{height:43.771250pt;}
.h4_c00141{height:46.075000pt;}
.h7_c00141{height:48.378750pt;}
.hd_c00141{height:50.682500pt;}
.hf_c00141{height:52.986250pt;}
.h9_c00141{height:55.290000pt;}
.hc_c00141{height:57.593750pt;}
.h2_c00141{height:59.897500pt;}
.h12_c00141{height:62.201250pt;}
.h10_c00141{height:80.631250pt;}
.h0_c00141{height:1025.280000pt;}
.h1_c00141{height:1025.333333pt;}
.w1_c00141{width:698.666667pt;}
.w0_c00141{width:698.880000pt;}
.x0_c00141{left:0.000000pt;}
.xb_c00141{left:46.720000pt;}
.x4a_c00141{left:48.000000pt;}
.x25_c00141{left:74.240000pt;}
.x29_c00141{left:75.520000pt;}
.x1a_c00141{left:84.480000pt;}
.x3c_c00141{left:92.160000pt;}
.x26_c00141{left:102.400000pt;}
.x2f_c00141{left:112.000000pt;}
.x20_c00141{left:113.280000pt;}
.x4b_c00141{left:119.680000pt;}
.x1b_c00141{left:121.600000pt;}
.x30_c00141{left:140.160000pt;}
.x2_c00141{left:142.080000pt;}
.x2a_c00141{left:149.760000pt;}
.xc_c00141{left:151.040000pt;}
.x53_c00141{left:158.080000pt;}
.x3_c00141{left:160.640000pt;}
.x3d_c00141{left:167.040000pt;}
.x15_c00141{left:169.600000pt;}
.xd_c00141{left:179.200000pt;}
.x4e_c00141{left:186.880000pt;}
.x21_c00141{left:188.800000pt;}
.x49_c00141{left:197.120000pt;}
.x16_c00141{left:206.720000pt;}
.xe_c00141{left:208.640000pt;}
.x34_c00141{left:216.320000pt;}
.x4f_c00141{left:224.000000pt;}
.x27_c00141{left:227.200000pt;}
.x3e_c00141{left:236.160000pt;}
.x4d_c00141{left:254.080000pt;}
.x1c_c00141{left:255.360000pt;}
.x50_c00141{left:263.680000pt;}
.x3f_c00141{left:264.960000pt;}
.x32_c00141{left:273.920000pt;}
.x4_c00141{left:284.800000pt;}
.x51_c00141{left:292.480000pt;}
.xf_c00141{left:294.400000pt;}
.x38_c00141{left:303.360000pt;}
.x1d_c00141{left:313.600000pt;}
.x10_c00141{left:322.560000pt;}
.x17_c00141{left:332.160000pt;}
.x41_c00141{left:340.480000pt;}
.x1e_c00141{left:341.760000pt;}
.x2b_c00141{left:351.360000pt;}
.x22_c00141{left:361.600000pt;}
.x42_c00141{left:369.920000pt;}
.x52_c00141{left:379.520000pt;}
.x23_c00141{left:380.800000pt;}
.x5_c00141{left:382.080000pt;}
.x2c_c00141{left:389.760000pt;}
.x18_c00141{left:391.040000pt;}
.x35_c00141{left:399.360000pt;}
.x6_c00141{left:400.640000pt;}
.x33_c00141{left:408.960000pt;}
.x40_c00141{left:418.560000pt;}
.x31_c00141{left:428.800000pt;}
.x11_c00141{left:430.080000pt;}
.x2d_c00141{left:439.040000pt;}
.x43_c00141{left:447.360000pt;}
.x1f_c00141{left:448.640000pt;}
.x24_c00141{left:457.600000pt;}
.x12_c00141{left:468.480000pt;}
.x39_c00141{left:476.800000pt;}
.x7_c00141{left:478.080000pt;}
.x36_c00141{left:497.280000pt;}
.x45_c00141{left:505.600000pt;}
.x13_c00141{left:506.880000pt;}
.x8_c00141{left:516.480000pt;}
.x14_c00141{left:535.680000pt;}
.x28_c00141{left:545.280000pt;}
.x19_c00141{left:546.560000pt;}
.x54_c00141{left:553.600000pt;}
.x3a_c00141{left:554.880000pt;}
.x37_c00141{left:564.480000pt;}
.x9_c00141{left:574.080000pt;}
.x3b_c00141{left:584.320000pt;}
.x2e_c00141{left:593.920000pt;}
.x46_c00141{left:602.240000pt;}
.x44_c00141{left:604.800000pt;}
.x1_c00141{left:610.560000pt;}
.xa_c00141{left:613.760000pt;}
.x55_c00141{left:622.080000pt;}
.x4c_c00141{left:623.360000pt;}
.x47_c00141{left:631.680000pt;}
.x48_c00141{left:660.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_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_6ac64b15232e65690552a1a9.woff2')format("woff");}.ff1_c00142{font-family:ff1_c00142;line-height:1.109863;font-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_c00142{transform:matrix(0.158525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158525,0.000000,0.000000,0.250000,0,0);}
.m35_c00142{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.m12_c00142{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);}
.m4e_c00142{transform:matrix(0.231900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231900,0.000000,0.000000,0.250000,0,0);}
.m47_c00142{transform:matrix(0.232125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232125,0.000000,0.000000,0.250000,0,0);}
.m31_c00142{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m33_c00142{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m4d_c00142{transform:matrix(0.236950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236950,0.000000,0.000000,0.250000,0,0);}
.m15_c00142{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m1d_c00142{transform:matrix(0.240325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240325,0.000000,0.000000,0.250000,0,0);}
.m34_c00142{transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);}
.m41_c00142{transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);}
.m4a_c00142{transform:matrix(0.248725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248725,0.000000,0.000000,0.250000,0,0);}
.m50_c00142{transform:matrix(0.249175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249175,0.000000,0.000000,0.250000,0,0);}
.m37_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);}
.m25_c00142{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m9_c00142{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m23_c00142{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m1_c00142{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m3_c00142{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m48_c00142{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m38_c00142{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m13_c00142{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m10_c00142{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m24_c00142{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m42_c00142{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m7_c00142{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);}
.m2d_c00142{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m29_c00142{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.me_c00142{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m32_c00142{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m40_c00142{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mb_c00142{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00142{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m39_c00142{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m16_c00142{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m36_c00142{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00142{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m14_c00142{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m11_c00142{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.md_c00142{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m43_c00142{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m0_c00142{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m30_c00142{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m6_c00142{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);}
.m51_c00142{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m5_c00142{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m17_c00142{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_c00142{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00142{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m20_c00142{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m18_c00142{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m46_c00142{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.mf_c00142{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00142{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m8_c00142{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);}
.ma_c00142{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m2_c00142{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00142{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00142{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m26_c00142{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m22_c00142{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m4_c00142{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m49_c00142{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m27_c00142{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00142{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m21_c00142{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00142{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);}
.m2a_c00142{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00142{transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);}
.m19_c00142{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00142{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);}
.m4b_c00142{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00142{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);}
.m4c_c00142{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m28_c00142{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00142{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.mc_c00142{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m45_c00142{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);}
.m52_c00142{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00142{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m53_c00142{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00142{transform:matrix(0.935000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.935000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.935000,0.000000,0.000000,0.250000,0,0);}
.m44_c00142{transform:matrix(1.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.110000,0.000000,0.000000,0.250000,0,0);}
.v1_c00142{vertical-align:-11.520000px;}
.v0_c00142{vertical-align:0.000000px;}
.ls1_c00142{letter-spacing:0.000000px;}
.ls0_c00142{letter-spacing:79.176960px;}
.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;}
}
.ws1_c00142{word-spacing:0.000000px;}
.ws0_c00142{word-spacing:1014.162960px;}
.fc0_c00142{color:transparent;}
.fs10_c00142{font-size:28.800000px;}
.fse_c00142{font-size:34.560000px;}
.fs2_c00142{font-size:37.440000px;}
.fsd_c00142{font-size:40.320000px;}
.fsf_c00142{font-size:46.080000px;}
.fs5_c00142{font-size:48.960000px;}
.fs4_c00142{font-size:51.840000px;}
.fs7_c00142{font-size:54.720000px;}
.fs9_c00142{font-size:57.600000px;}
.fsb_c00142{font-size:60.480000px;}
.fs0_c00142{font-size:63.360000px;}
.fs3_c00142{font-size:66.240000px;}
.fsa_c00142{font-size:69.120000px;}
.fsc_c00142{font-size:72.000000px;}
.fs6_c00142{font-size:74.880000px;}
.fs1_c00142{font-size:77.760000px;}
.fs8_c00142{font-size:80.640000px;}
.fs11_c00142{font-size:83.520000px;}
.y0_c00142{bottom:0.000000px;}
.y86_c00142{bottom:70.560000px;}
.y85_c00142{bottom:71.280000px;}
.y78_c00142{bottom:72.000000px;}
.y84_c00142{bottom:72.720000px;}
.y77_c00142{bottom:79.920000px;}
.y83_c00142{bottom:114.480000px;}
.y76_c00142{bottom:115.920000px;}
.y74_c00142{bottom:116.640000px;}
.y75_c00142{bottom:118.080000px;}
.y73_c00142{bottom:120.960000px;}
.y82_c00142{bottom:156.960000px;}
.y81_c00142{bottom:158.400000px;}
.y72_c00142{bottom:159.120000px;}
.y6f_c00142{bottom:159.840000px;}
.y71_c00142{bottom:160.560000px;}
.y6e_c00142{bottom:163.440000px;}
.y70_c00142{bottom:164.160000px;}
.y6d_c00142{bottom:202.320000px;}
.y6c_c00142{bottom:206.640000px;}
.y6b_c00142{bottom:207.360000px;}
.y80_c00142{bottom:232.560000px;}
.y79_c00142{bottom:234.000000px;}
.y69_c00142{bottom:235.440000px;}
.y6a_c00142{bottom:236.160000px;}
.y68_c00142{bottom:238.320000px;}
.y67_c00142{bottom:240.480000px;}
.y7d_c00142{bottom:276.480000px;}
.y66_c00142{bottom:277.200000px;}
.y65_c00142{bottom:277.920000px;}
.y7f_c00142{bottom:278.640000px;}
.y7e_c00142{bottom:280.080000px;}
.y64_c00142{bottom:281.520000px;}
.y63_c00142{bottom:321.120000px;}
.y62_c00142{bottom:324.000000px;}
.y61_c00142{bottom:325.440000px;}
.y5f_c00142{bottom:352.080000px;}
.y5c_c00142{bottom:352.800000px;}
.y60_c00142{bottom:353.520000px;}
.y7c_c00142{bottom:354.240000px;}
.y7b_c00142{bottom:354.960000px;}
.y5d_c00142{bottom:355.680000px;}
.y5e_c00142{bottom:356.400000px;}
.y5b_c00142{bottom:357.840000px;}
.y59_c00142{bottom:395.280000px;}
.y58_c00142{bottom:396.000000px;}
.y5a_c00142{bottom:396.720000px;}
.y7a_c00142{bottom:397.440000px;}
.y57_c00142{bottom:398.880000px;}
.y55_c00142{bottom:437.760000px;}
.y54_c00142{bottom:438.480000px;}
.y56_c00142{bottom:439.200000px;}
.y53_c00142{bottom:441.360000px;}
.y50_c00142{bottom:480.960000px;}
.y52_c00142{bottom:481.680000px;}
.y51_c00142{bottom:482.400000px;}
.y4f_c00142{bottom:483.840000px;}
.y49_c00142{bottom:523.440000px;}
.y4c_c00142{bottom:524.160000px;}
.y4d_c00142{bottom:524.880000px;}
.y4b_c00142{bottom:525.600000px;}
.y48_c00142{bottom:526.320000px;}
.y4a_c00142{bottom:527.040000px;}
.y4e_c00142{bottom:528.480000px;}
.y45_c00142{bottom:565.920000px;}
.y42_c00142{bottom:567.360000px;}
.y46_c00142{bottom:568.080000px;}
.y47_c00142{bottom:568.800000px;}
.y41_c00142{bottom:569.520000px;}
.y43_c00142{bottom:570.240000px;}
.y44_c00142{bottom:570.960000px;}
.y3e_c00142{bottom:609.120000px;}
.y40_c00142{bottom:609.840000px;}
.y3d_c00142{bottom:610.560000px;}
.y3f_c00142{bottom:611.280000px;}
.y3c_c00142{bottom:612.000000px;}
.y32_c00142{bottom:652.320000px;}
.y30_c00142{bottom:653.760000px;}
.y31_c00142{bottom:655.920000px;}
.y2c_c00142{bottom:683.280000px;}
.y2d_c00142{bottom:684.720000px;}
.y2b_c00142{bottom:686.160000px;}
.y33_c00142{bottom:686.880000px;}
.y3b_c00142{bottom:687.600000px;}
.y2e_c00142{bottom:688.320000px;}
.y2f_c00142{bottom:689.040000px;}
.y2a_c00142{bottom:721.440000px;}
.y24_c00142{bottom:727.200000px;}
.y23_c00142{bottom:728.640000px;}
.y26_c00142{bottom:729.360000px;}
.y29_c00142{bottom:730.080000px;}
.y25_c00142{bottom:730.800000px;}
.y28_c00142{bottom:731.520000px;}
.y27_c00142{bottom:732.240000px;}
.y3a_c00142{bottom:732.960000px;}
.y20_c00142{bottom:768.960000px;}
.y21_c00142{bottom:769.680000px;}
.y1f_c00142{bottom:772.560000px;}
.y37_c00142{bottom:773.280000px;}
.y22_c00142{bottom:774.000000px;}
.y39_c00142{bottom:774.720000px;}
.y38_c00142{bottom:775.440000px;}
.y1e_c00142{bottom:813.600000px;}
.y1c_c00142{bottom:816.480000px;}
.y1d_c00142{bottom:817.920000px;}
.y18_c00142{bottom:845.280000px;}
.y17_c00142{bottom:846.000000px;}
.y1a_c00142{bottom:848.160000px;}
.y19_c00142{bottom:848.880000px;}
.y34_c00142{bottom:849.600000px;}
.y1b_c00142{bottom:850.320000px;}
.y36_c00142{bottom:851.040000px;}
.y35_c00142{bottom:851.760000px;}
.yb_c00142{bottom:887.760000px;}
.yc_c00142{bottom:889.200000px;}
.ya_c00142{bottom:890.640000px;}
.y14_c00142{bottom:891.360000px;}
.y15_c00142{bottom:892.080000px;}
.yd_c00142{bottom:892.800000px;}
.y16_c00142{bottom:893.520000px;}
.y9_c00142{bottom:930.240000px;}
.y8_c00142{bottom:932.400000px;}
.y12_c00142{bottom:934.560000px;}
.y11_c00142{bottom:935.280000px;}
.y13_c00142{bottom:936.000000px;}
.y7_c00142{bottom:974.880000px;}
.y6_c00142{bottom:977.040000px;}
.y2_c00142{bottom:1005.840000px;}
.y1_c00142{bottom:1007.280000px;}
.y4_c00142{bottom:1009.440000px;}
.y3_c00142{bottom:1010.160000px;}
.ye_c00142{bottom:1010.880000px;}
.y5_c00142{bottom:1011.600000px;}
.y10_c00142{bottom:1012.320000px;}
.yf_c00142{bottom:1080.720000px;}
.h12_c00142{height:25.917187px;}
.h10_c00142{height:31.100625px;}
.h4_c00142{height:33.692344px;}
.hf_c00142{height:36.284062px;}
.h11_c00142{height:41.467500px;}
.h7_c00142{height:44.059219px;}
.h6_c00142{height:46.650937px;}
.h9_c00142{height:49.242656px;}
.hb_c00142{height:51.834375px;}
.hd_c00142{height:54.426094px;}
.h2_c00142{height:57.017812px;}
.h5_c00142{height:59.609531px;}
.hc_c00142{height:62.201250px;}
.he_c00142{height:64.792969px;}
.h8_c00142{height:67.384687px;}
.h3_c00142{height:69.976406px;}
.ha_c00142{height:72.568125px;}
.h13_c00142{height:75.159844px;}
.h1_c00142{height:1149.000000px;}
.h0_c00142{height:1149.120000px;}
.w0_c00142{width:779.760000px;}
.w1_c00142{width:780.000000px;}
.x0_c00142{left:0.000000px;}
.x2b_c00142{left:69.840000px;}
.x24_c00142{left:71.280000px;}
.x1_c00142{left:72.720000px;}
.x30_c00142{left:113.760000px;}
.x6_c00142{left:155.520000px;}
.x2_c00142{left:156.960000px;}
.x17_c00142{left:167.760000px;}
.x7_c00142{left:198.720000px;}
.x2e_c00142{left:207.360000px;}
.x8_c00142{left:240.480000px;}
.x19_c00142{left:241.920000px;}
.x16_c00142{left:251.280000px;}
.x18_c00142{left:252.720000px;}
.x31_c00142{left:254.160000px;}
.x1e_c00142{left:263.520000px;}
.x3_c00142{left:274.320000px;}
.x12_c00142{left:284.400000px;}
.x9_c00142{left:287.280000px;}
.x2f_c00142{left:293.760000px;}
.x21_c00142{left:295.200000px;}
.x33_c00142{left:306.720000px;}
.x4_c00142{left:316.080000px;}
.x1f_c00142{left:317.520000px;}
.xa_c00142{left:327.600000px;}
.x35_c00142{left:337.680000px;}
.x13_c00142{left:339.120000px;}
.x2c_c00142{left:347.760000px;}
.x2d_c00142{left:369.360000px;}
.x14_c00142{left:380.880000px;}
.x27_c00142{left:402.480000px;}
.xb_c00142{left:403.920000px;}
.x32_c00142{left:413.280000px;}
.x1a_c00142{left:414.720000px;}
.x15_c00142{left:424.800000px;}
.x20_c00142{left:436.320000px;}
.x34_c00142{left:446.400000px;}
.x5_c00142{left:457.920000px;}
.x1b_c00142{left:467.280000px;}
.x28_c00142{left:478.800000px;}
.x1d_c00142{left:501.120000px;}
.x1c_c00142{left:511.920000px;}
.x36_c00142{left:554.400000px;}
.xc_c00142{left:555.840000px;}
.x29_c00142{left:609.120000px;}
.x11_c00142{left:610.560000px;}
.x2a_c00142{left:620.640000px;}
.x22_c00142{left:642.240000px;}
.xe_c00142{left:643.680000px;}
.xd_c00142{left:674.640000px;}
.xf_c00142{left:676.800000px;}
.x25_c00142{left:686.880000px;}
.x26_c00142{left:718.560000px;}
.x10_c00142{left:720.000000px;}
.x23_c00142{left:740.160000px;}
@media print{
.v1_c00142{vertical-align:-10.240000pt;}
.v0_c00142{vertical-align:0.000000pt;}
.ls1_c00142{letter-spacing:0.000000pt;}
.ls0_c00142{letter-spacing:70.379520pt;}
.ws1_c00142{word-spacing:0.000000pt;}
.ws0_c00142{word-spacing:901.478187pt;}
.fs10_c00142{font-size:25.600000pt;}
.fse_c00142{font-size:30.720000pt;}
.fs2_c00142{font-size:33.280000pt;}
.fsd_c00142{font-size:35.840000pt;}
.fsf_c00142{font-size:40.960000pt;}
.fs5_c00142{font-size:43.520000pt;}
.fs4_c00142{font-size:46.080000pt;}
.fs7_c00142{font-size:48.640000pt;}
.fs9_c00142{font-size:51.200000pt;}
.fsb_c00142{font-size:53.760000pt;}
.fs0_c00142{font-size:56.320000pt;}
.fs3_c00142{font-size:58.880000pt;}
.fsa_c00142{font-size:61.440000pt;}
.fsc_c00142{font-size:64.000000pt;}
.fs6_c00142{font-size:66.560000pt;}
.fs1_c00142{font-size:69.120000pt;}
.fs8_c00142{font-size:71.680000pt;}
.fs11_c00142{font-size:74.240000pt;}
.y0_c00142{bottom:0.000000pt;}
.y86_c00142{bottom:62.720000pt;}
.y85_c00142{bottom:63.360000pt;}
.y78_c00142{bottom:64.000000pt;}
.y84_c00142{bottom:64.640000pt;}
.y77_c00142{bottom:71.040000pt;}
.y83_c00142{bottom:101.760000pt;}
.y76_c00142{bottom:103.040000pt;}
.y74_c00142{bottom:103.680000pt;}
.y75_c00142{bottom:104.960000pt;}
.y73_c00142{bottom:107.520000pt;}
.y82_c00142{bottom:139.520000pt;}
.y81_c00142{bottom:140.800000pt;}
.y72_c00142{bottom:141.440000pt;}
.y6f_c00142{bottom:142.080000pt;}
.y71_c00142{bottom:142.720000pt;}
.y6e_c00142{bottom:145.280000pt;}
.y70_c00142{bottom:145.920000pt;}
.y6d_c00142{bottom:179.840000pt;}
.y6c_c00142{bottom:183.680000pt;}
.y6b_c00142{bottom:184.320000pt;}
.y80_c00142{bottom:206.720000pt;}
.y79_c00142{bottom:208.000000pt;}
.y69_c00142{bottom:209.280000pt;}
.y6a_c00142{bottom:209.920000pt;}
.y68_c00142{bottom:211.840000pt;}
.y67_c00142{bottom:213.760000pt;}
.y7d_c00142{bottom:245.760000pt;}
.y66_c00142{bottom:246.400000pt;}
.y65_c00142{bottom:247.040000pt;}
.y7f_c00142{bottom:247.680000pt;}
.y7e_c00142{bottom:248.960000pt;}
.y64_c00142{bottom:250.240000pt;}
.y63_c00142{bottom:285.440000pt;}
.y62_c00142{bottom:288.000000pt;}
.y61_c00142{bottom:289.280000pt;}
.y5f_c00142{bottom:312.960000pt;}
.y5c_c00142{bottom:313.600000pt;}
.y60_c00142{bottom:314.240000pt;}
.y7c_c00142{bottom:314.880000pt;}
.y7b_c00142{bottom:315.520000pt;}
.y5d_c00142{bottom:316.160000pt;}
.y5e_c00142{bottom:316.800000pt;}
.y5b_c00142{bottom:318.080000pt;}
.y59_c00142{bottom:351.360000pt;}
.y58_c00142{bottom:352.000000pt;}
.y5a_c00142{bottom:352.640000pt;}
.y7a_c00142{bottom:353.280000pt;}
.y57_c00142{bottom:354.560000pt;}
.y55_c00142{bottom:389.120000pt;}
.y54_c00142{bottom:389.760000pt;}
.y56_c00142{bottom:390.400000pt;}
.y53_c00142{bottom:392.320000pt;}
.y50_c00142{bottom:427.520000pt;}
.y52_c00142{bottom:428.160000pt;}
.y51_c00142{bottom:428.800000pt;}
.y4f_c00142{bottom:430.080000pt;}
.y49_c00142{bottom:465.280000pt;}
.y4c_c00142{bottom:465.920000pt;}
.y4d_c00142{bottom:466.560000pt;}
.y4b_c00142{bottom:467.200000pt;}
.y48_c00142{bottom:467.840000pt;}
.y4a_c00142{bottom:468.480000pt;}
.y4e_c00142{bottom:469.760000pt;}
.y45_c00142{bottom:503.040000pt;}
.y42_c00142{bottom:504.320000pt;}
.y46_c00142{bottom:504.960000pt;}
.y47_c00142{bottom:505.600000pt;}
.y41_c00142{bottom:506.240000pt;}
.y43_c00142{bottom:506.880000pt;}
.y44_c00142{bottom:507.520000pt;}
.y3e_c00142{bottom:541.440000pt;}
.y40_c00142{bottom:542.080000pt;}
.y3d_c00142{bottom:542.720000pt;}
.y3f_c00142{bottom:543.360000pt;}
.y3c_c00142{bottom:544.000000pt;}
.y32_c00142{bottom:579.840000pt;}
.y30_c00142{bottom:581.120000pt;}
.y31_c00142{bottom:583.040000pt;}
.y2c_c00142{bottom:607.360000pt;}
.y2d_c00142{bottom:608.640000pt;}
.y2b_c00142{bottom:609.920000pt;}
.y33_c00142{bottom:610.560000pt;}
.y3b_c00142{bottom:611.200000pt;}
.y2e_c00142{bottom:611.840000pt;}
.y2f_c00142{bottom:612.480000pt;}
.y2a_c00142{bottom:641.280000pt;}
.y24_c00142{bottom:646.400000pt;}
.y23_c00142{bottom:647.680000pt;}
.y26_c00142{bottom:648.320000pt;}
.y29_c00142{bottom:648.960000pt;}
.y25_c00142{bottom:649.600000pt;}
.y28_c00142{bottom:650.240000pt;}
.y27_c00142{bottom:650.880000pt;}
.y3a_c00142{bottom:651.520000pt;}
.y20_c00142{bottom:683.520000pt;}
.y21_c00142{bottom:684.160000pt;}
.y1f_c00142{bottom:686.720000pt;}
.y37_c00142{bottom:687.360000pt;}
.y22_c00142{bottom:688.000000pt;}
.y39_c00142{bottom:688.640000pt;}
.y38_c00142{bottom:689.280000pt;}
.y1e_c00142{bottom:723.200000pt;}
.y1c_c00142{bottom:725.760000pt;}
.y1d_c00142{bottom:727.040000pt;}
.y18_c00142{bottom:751.360000pt;}
.y17_c00142{bottom:752.000000pt;}
.y1a_c00142{bottom:753.920000pt;}
.y19_c00142{bottom:754.560000pt;}
.y34_c00142{bottom:755.200000pt;}
.y1b_c00142{bottom:755.840000pt;}
.y36_c00142{bottom:756.480000pt;}
.y35_c00142{bottom:757.120000pt;}
.yb_c00142{bottom:789.120000pt;}
.yc_c00142{bottom:790.400000pt;}
.ya_c00142{bottom:791.680000pt;}
.y14_c00142{bottom:792.320000pt;}
.y15_c00142{bottom:792.960000pt;}
.yd_c00142{bottom:793.600000pt;}
.y16_c00142{bottom:794.240000pt;}
.y9_c00142{bottom:826.880000pt;}
.y8_c00142{bottom:828.800000pt;}
.y12_c00142{bottom:830.720000pt;}
.y11_c00142{bottom:831.360000pt;}
.y13_c00142{bottom:832.000000pt;}
.y7_c00142{bottom:866.560000pt;}
.y6_c00142{bottom:868.480000pt;}
.y2_c00142{bottom:894.080000pt;}
.y1_c00142{bottom:895.360000pt;}
.y4_c00142{bottom:897.280000pt;}
.y3_c00142{bottom:897.920000pt;}
.ye_c00142{bottom:898.560000pt;}
.y5_c00142{bottom:899.200000pt;}
.y10_c00142{bottom:899.840000pt;}
.yf_c00142{bottom:960.640000pt;}
.h12_c00142{height:23.037500pt;}
.h10_c00142{height:27.645000pt;}
.h4_c00142{height:29.948750pt;}
.hf_c00142{height:32.252500pt;}
.h11_c00142{height:36.860000pt;}
.h7_c00142{height:39.163750pt;}
.h6_c00142{height:41.467500pt;}
.h9_c00142{height:43.771250pt;}
.hb_c00142{height:46.075000pt;}
.hd_c00142{height:48.378750pt;}
.h2_c00142{height:50.682500pt;}
.h5_c00142{height:52.986250pt;}
.hc_c00142{height:55.290000pt;}
.he_c00142{height:57.593750pt;}
.h8_c00142{height:59.897500pt;}
.h3_c00142{height:62.201250pt;}
.ha_c00142{height:64.505000pt;}
.h13_c00142{height:66.808750pt;}
.h1_c00142{height:1021.333333pt;}
.h0_c00142{height:1021.440000pt;}
.w0_c00142{width:693.120000pt;}
.w1_c00142{width:693.333333pt;}
.x0_c00142{left:0.000000pt;}
.x2b_c00142{left:62.080000pt;}
.x24_c00142{left:63.360000pt;}
.x1_c00142{left:64.640000pt;}
.x30_c00142{left:101.120000pt;}
.x6_c00142{left:138.240000pt;}
.x2_c00142{left:139.520000pt;}
.x17_c00142{left:149.120000pt;}
.x7_c00142{left:176.640000pt;}
.x2e_c00142{left:184.320000pt;}
.x8_c00142{left:213.760000pt;}
.x19_c00142{left:215.040000pt;}
.x16_c00142{left:223.360000pt;}
.x18_c00142{left:224.640000pt;}
.x31_c00142{left:225.920000pt;}
.x1e_c00142{left:234.240000pt;}
.x3_c00142{left:243.840000pt;}
.x12_c00142{left:252.800000pt;}
.x9_c00142{left:255.360000pt;}
.x2f_c00142{left:261.120000pt;}
.x21_c00142{left:262.400000pt;}
.x33_c00142{left:272.640000pt;}
.x4_c00142{left:280.960000pt;}
.x1f_c00142{left:282.240000pt;}
.xa_c00142{left:291.200000pt;}
.x35_c00142{left:300.160000pt;}
.x13_c00142{left:301.440000pt;}
.x2c_c00142{left:309.120000pt;}
.x2d_c00142{left:328.320000pt;}
.x14_c00142{left:338.560000pt;}
.x27_c00142{left:357.760000pt;}
.xb_c00142{left:359.040000pt;}
.x32_c00142{left:367.360000pt;}
.x1a_c00142{left:368.640000pt;}
.x15_c00142{left:377.600000pt;}
.x20_c00142{left:387.840000pt;}
.x34_c00142{left:396.800000pt;}
.x5_c00142{left:407.040000pt;}
.x1b_c00142{left:415.360000pt;}
.x28_c00142{left:425.600000pt;}
.x1d_c00142{left:445.440000pt;}
.x1c_c00142{left:455.040000pt;}
.x36_c00142{left:492.800000pt;}
.xc_c00142{left:494.080000pt;}
.x29_c00142{left:541.440000pt;}
.x11_c00142{left:542.720000pt;}
.x2a_c00142{left:551.680000pt;}
.x22_c00142{left:570.880000pt;}
.xe_c00142{left:572.160000pt;}
.xd_c00142{left:599.680000pt;}
.xf_c00142{left:601.600000pt;}
.x25_c00142{left:610.560000pt;}
.x26_c00142{left:638.720000pt;}
.x10_c00142{left:640.000000pt;}
.x23_c00142{left:657.920000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b4dc1bc6e9602d6a77cff753.woff2')format("woff");}.ff1_c00143{font-family:ff1_c00143;line-height:1.109863;font-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_c00143{transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);}
.m3d_c00143{transform:matrix(0.176475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176475,0.000000,0.000000,0.250000,0,0);}
.m1e_c00143{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.m4e_c00143{transform:matrix(0.238675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238675,0.000000,0.000000,0.250000,0,0);}
.m30_c00143{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m3_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);}
.m46_c00143{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m28_c00143{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);}
.m4b_c00143{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00143{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00143{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m8_c00143{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m19_c00143{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00143{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m42_c00143{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m24_c00143{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m2_c00143{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m18_c00143{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00143{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m4_c00143{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00143{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m17_c00143{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mf_c00143{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m29_c00143{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00143{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m5_c00143{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m10_c00143{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00143{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m6_c00143{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m38_c00143{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m13_c00143{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mc_c00143{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.md_c00143{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m33_c00143{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00143{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.ma_c00143{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m14_c00143{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m7_c00143{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.mb_c00143{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.me_c00143{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m26_c00143{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m1_c00143{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m34_c00143{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m21_c00143{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);}
.m3e_c00143{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m0_c00143{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_c00143{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00143{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m43_c00143{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);}
.m49_c00143{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);}
.m32_c00143{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m11_c00143{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m36_c00143{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m20_c00143{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00143{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m25_c00143{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m31_c00143{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00143{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m15_c00143{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);}
.m35_c00143{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m45_c00143{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m47_c00143{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m27_c00143{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m23_c00143{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m22_c00143{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);}
.m41_c00143{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);}
.m3a_c00143{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00143{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00143{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m40_c00143{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00143{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);}
.m9_c00143{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m12_c00143{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);}
.m44_c00143{transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00143{transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);}
.m48_c00143{transform:matrix(0.952500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.952500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.952500,0.000000,0.000000,0.250000,0,0);}
.m37_c00143{transform:matrix(1.095000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.095000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.095000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00143{transform:matrix(1.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.120000,0.000000,0.000000,0.250000,0,0);}
.m39_c00143{transform:matrix(2.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.252500,0.000000,0.000000,0.250000,0,0);}
.v2_c00143{vertical-align:-14.400000px;}
.v0_c00143{vertical-align:0.000000px;}
.v1_c00143{vertical-align:8.640000px;}
.ls1_c00143{letter-spacing:0.000000px;}
.ls0_c00143{letter-spacing:90.841680px;}
.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:-1.996800px;}
.ws1_c00143{word-spacing:0.000000px;}
.fc0_c00143{color:transparent;}
.fs8_c00143{font-size:17.280000px;}
.fs13_c00143{font-size:25.920000px;}
.fsd_c00143{font-size:28.800000px;}
.fsf_c00143{font-size:31.680000px;}
.fse_c00143{font-size:34.560000px;}
.fs12_c00143{font-size:37.440000px;}
.fs10_c00143{font-size:43.200000px;}
.fsc_c00143{font-size:46.080000px;}
.fsb_c00143{font-size:48.960000px;}
.fs6_c00143{font-size:51.840000px;}
.fs2_c00143{font-size:54.720000px;}
.fs5_c00143{font-size:57.600000px;}
.fs1_c00143{font-size:60.480000px;}
.fs7_c00143{font-size:63.360000px;}
.fs4_c00143{font-size:66.240000px;}
.fs3_c00143{font-size:69.120000px;}
.fs9_c00143{font-size:72.000000px;}
.fs0_c00143{font-size:74.880000px;}
.fsa_c00143{font-size:77.760000px;}
.fs11_c00143{font-size:103.680000px;}
.y0_c00143{bottom:0.000000px;}
.y72_c00143{bottom:88.560000px;}
.y71_c00143{bottom:89.280000px;}
.y73_c00143{bottom:90.720000px;}
.y70_c00143{bottom:92.880000px;}
.y6e_c00143{bottom:131.040000px;}
.y6d_c00143{bottom:131.760000px;}
.y6b_c00143{bottom:132.480000px;}
.y6c_c00143{bottom:133.200000px;}
.y6f_c00143{bottom:133.920000px;}
.y6a_c00143{bottom:135.360000px;}
.y69_c00143{bottom:172.800000px;}
.y67_c00143{bottom:174.240000px;}
.y68_c00143{bottom:175.680000px;}
.y66_c00143{bottom:178.560000px;}
.y63_c00143{bottom:217.440000px;}
.y64_c00143{bottom:218.160000px;}
.y65_c00143{bottom:218.880000px;}
.y62_c00143{bottom:221.760000px;}
.y60_c00143{bottom:259.200000px;}
.y61_c00143{bottom:259.920000px;}
.y5e_c00143{bottom:261.360000px;}
.y5f_c00143{bottom:263.520000px;}
.y5d_c00143{bottom:264.960000px;}
.y5c_c00143{bottom:265.680000px;}
.y59_c00143{bottom:301.680000px;}
.y5b_c00143{bottom:303.840000px;}
.y5a_c00143{bottom:304.560000px;}
.y56_c00143{bottom:306.000000px;}
.y58_c00143{bottom:306.720000px;}
.y57_c00143{bottom:307.440000px;}
.y53_c00143{bottom:346.320000px;}
.y55_c00143{bottom:347.040000px;}
.y54_c00143{bottom:347.760000px;}
.y52_c00143{bottom:349.200000px;}
.y4e_c00143{bottom:388.800000px;}
.y4f_c00143{bottom:390.240000px;}
.y51_c00143{bottom:390.960000px;}
.y4b_c00143{bottom:391.680000px;}
.y4c_c00143{bottom:392.400000px;}
.y50_c00143{bottom:393.120000px;}
.y4d_c00143{bottom:393.840000px;}
.y49_c00143{bottom:424.800000px;}
.y47_c00143{bottom:432.720000px;}
.y46_c00143{bottom:434.880000px;}
.y4a_c00143{bottom:435.600000px;}
.y48_c00143{bottom:436.320000px;}
.y45_c00143{bottom:438.480000px;}
.y42_c00143{bottom:474.480000px;}
.y41_c00143{bottom:475.200000px;}
.y44_c00143{bottom:476.640000px;}
.y40_c00143{bottom:477.360000px;}
.y43_c00143{bottom:478.080000px;}
.y3f_c00143{bottom:519.120000px;}
.y3e_c00143{bottom:519.840000px;}
.y3d_c00143{bottom:522.000000px;}
.y38_c00143{bottom:550.080000px;}
.y39_c00143{bottom:550.800000px;}
.y3c_c00143{bottom:552.240000px;}
.y37_c00143{bottom:552.960000px;}
.y3a_c00143{bottom:553.680000px;}
.y3b_c00143{bottom:554.400000px;}
.y32_c00143{bottom:593.280000px;}
.y34_c00143{bottom:594.720000px;}
.y33_c00143{bottom:596.160000px;}
.y30_c00143{bottom:624.960000px;}
.y2e_c00143{bottom:626.400000px;}
.y35_c00143{bottom:627.120000px;}
.y31_c00143{bottom:627.840000px;}
.y2f_c00143{bottom:628.560000px;}
.y36_c00143{bottom:630.720000px;}
.y29_c00143{bottom:666.720000px;}
.y2a_c00143{bottom:668.160000px;}
.y28_c00143{bottom:668.880000px;}
.y2c_c00143{bottom:671.040000px;}
.y2b_c00143{bottom:671.760000px;}
.y2d_c00143{bottom:673.200000px;}
.y23_c00143{bottom:710.640000px;}
.y25_c00143{bottom:711.360000px;}
.y22_c00143{bottom:712.080000px;}
.y26_c00143{bottom:713.520000px;}
.y27_c00143{bottom:714.240000px;}
.y24_c00143{bottom:714.960000px;}
.y21_c00143{bottom:753.120000px;}
.y20_c00143{bottom:753.840000px;}
.y15_c00143{bottom:756.720000px;}
.y14_c00143{bottom:757.440000px;}
.y16_c00143{bottom:758.880000px;}
.y1f_c00143{bottom:794.880000px;}
.y1e_c00143{bottom:797.760000px;}
.y11_c00143{bottom:799.200000px;}
.y12_c00143{bottom:799.920000px;}
.y13_c00143{bottom:810.720000px;}
.y1d_c00143{bottom:837.360000px;}
.y1c_c00143{bottom:838.800000px;}
.yf_c00143{bottom:842.400000px;}
.ye_c00143{bottom:843.120000px;}
.y10_c00143{bottom:843.840000px;}
.y3_c00143{bottom:881.280000px;}
.y2_c00143{bottom:882.000000px;}
.yc_c00143{bottom:885.600000px;}
.yd_c00143{bottom:889.200000px;}
.y1b_c00143{bottom:924.480000px;}
.y1a_c00143{bottom:925.920000px;}
.ya_c00143{bottom:928.800000px;}
.y9_c00143{bottom:929.520000px;}
.yb_c00143{bottom:930.960000px;}
.y19_c00143{bottom:967.680000px;}
.y7_c00143{bottom:972.000000px;}
.y8_c00143{bottom:974.880000px;}
.y18_c00143{bottom:1010.160000px;}
.y17_c00143{bottom:1010.880000px;}
.y5_c00143{bottom:1014.480000px;}
.y6_c00143{bottom:1015.200000px;}
.y4_c00143{bottom:1015.920000px;}
.y1_c00143{bottom:1092.960000px;}
.ha_c00143{height:15.550313px;}
.h16_c00143{height:23.325469px;}
.h10_c00143{height:25.917187px;}
.h12_c00143{height:28.508906px;}
.h11_c00143{height:31.100625px;}
.h15_c00143{height:33.692344px;}
.h13_c00143{height:38.875781px;}
.hf_c00143{height:41.467500px;}
.he_c00143{height:44.059219px;}
.h8_c00143{height:46.650937px;}
.h4_c00143{height:49.242656px;}
.h7_c00143{height:51.834375px;}
.h3_c00143{height:54.426094px;}
.hd_c00143{height:55.290937px;}
.h9_c00143{height:57.017812px;}
.h6_c00143{height:59.609531px;}
.h5_c00143{height:62.201250px;}
.hb_c00143{height:64.792969px;}
.h2_c00143{height:67.384687px;}
.hc_c00143{height:69.976406px;}
.h14_c00143{height:93.301875px;}
.h1_c00143{height:1150.500000px;}
.h0_c00143{height:1150.560000px;}
.w0_c00143{width:781.200000px;}
.w1_c00143{width:781.500000px;}
.x0_c00143{left:0.000000px;}
.x2_c00143{left:59.040000px;}
.x13_c00143{left:60.480000px;}
.x32_c00143{left:61.920000px;}
.x28_c00143{left:113.760000px;}
.x2f_c00143{left:115.200000px;}
.x3_c00143{left:143.280000px;}
.x14_c00143{left:144.720000px;}
.x33_c00143{left:146.160000px;}
.x29_c00143{left:155.520000px;}
.xe_c00143{left:218.160000px;}
.x23_c00143{left:219.600000px;}
.x17_c00143{left:229.680000px;}
.x39_c00143{left:241.920000px;}
.x15_c00143{left:261.360000px;}
.x2a_c00143{left:262.800000px;}
.x1d_c00143{left:272.880000px;}
.x37_c00143{left:274.320000px;}
.x18_c00143{left:282.960000px;}
.x30_c00143{left:285.120000px;}
.xf_c00143{left:293.760000px;}
.x1b_c00143{left:304.560000px;}
.x24_c00143{left:315.360000px;}
.x26_c00143{left:326.880000px;}
.x1e_c00143{left:328.320000px;}
.x19_c00143{left:338.400000px;}
.x10_c00143{left:347.760000px;}
.x1c_c00143{left:359.280000px;}
.x38_c00143{left:360.720000px;}
.x1f_c00143{left:370.080000px;}
.x2b_c00143{left:380.160000px;}
.x11_c00143{left:390.960000px;}
.x2c_c00143{left:435.600000px;}
.x25_c00143{left:445.680000px;}
.x20_c00143{left:456.480000px;}
.x1a_c00143{left:478.080000px;}
.x21_c00143{left:501.120000px;}
.x4_c00143{left:542.160000px;}
.x12_c00143{left:543.600000px;}
.x34_c00143{left:545.040000px;}
.xa_c00143{left:576.000000px;}
.x5_c00143{left:596.880000px;}
.xc_c00143{left:598.320000px;}
.x36_c00143{left:599.760000px;}
.x16_c00143{left:630.720000px;}
.x22_c00143{left:632.160000px;}
.x3a_c00143{left:633.600000px;}
.x2e_c00143{left:643.680000px;}
.x6_c00143{left:663.120000px;}
.xb_c00143{left:664.560000px;}
.x31_c00143{left:666.000000px;}
.x1_c00143{left:676.080000px;}
.x7_c00143{left:704.880000px;}
.x8_c00143{left:707.040000px;}
.x27_c00143{left:708.480000px;}
.x35_c00143{left:709.920000px;}
.x9_c00143{left:726.480000px;}
.xd_c00143{left:727.920000px;}
.x2d_c00143{left:729.360000px;}
@media print{
.v2_c00143{vertical-align:-12.800000pt;}
.v0_c00143{vertical-align:0.000000pt;}
.v1_c00143{vertical-align:7.680000pt;}
.ls1_c00143{letter-spacing:0.000000pt;}
.ls0_c00143{letter-spacing:80.748160pt;}
.ws0_c00143{word-spacing:-1.774933pt;}
.ws1_c00143{word-spacing:0.000000pt;}
.fs8_c00143{font-size:15.360000pt;}
.fs13_c00143{font-size:23.040000pt;}
.fsd_c00143{font-size:25.600000pt;}
.fsf_c00143{font-size:28.160000pt;}
.fse_c00143{font-size:30.720000pt;}
.fs12_c00143{font-size:33.280000pt;}
.fs10_c00143{font-size:38.400000pt;}
.fsc_c00143{font-size:40.960000pt;}
.fsb_c00143{font-size:43.520000pt;}
.fs6_c00143{font-size:46.080000pt;}
.fs2_c00143{font-size:48.640000pt;}
.fs5_c00143{font-size:51.200000pt;}
.fs1_c00143{font-size:53.760000pt;}
.fs7_c00143{font-size:56.320000pt;}
.fs4_c00143{font-size:58.880000pt;}
.fs3_c00143{font-size:61.440000pt;}
.fs9_c00143{font-size:64.000000pt;}
.fs0_c00143{font-size:66.560000pt;}
.fsa_c00143{font-size:69.120000pt;}
.fs11_c00143{font-size:92.160000pt;}
.y0_c00143{bottom:0.000000pt;}
.y72_c00143{bottom:78.720000pt;}
.y71_c00143{bottom:79.360000pt;}
.y73_c00143{bottom:80.640000pt;}
.y70_c00143{bottom:82.560000pt;}
.y6e_c00143{bottom:116.480000pt;}
.y6d_c00143{bottom:117.120000pt;}
.y6b_c00143{bottom:117.760000pt;}
.y6c_c00143{bottom:118.400000pt;}
.y6f_c00143{bottom:119.040000pt;}
.y6a_c00143{bottom:120.320000pt;}
.y69_c00143{bottom:153.600000pt;}
.y67_c00143{bottom:154.880000pt;}
.y68_c00143{bottom:156.160000pt;}
.y66_c00143{bottom:158.720000pt;}
.y63_c00143{bottom:193.280000pt;}
.y64_c00143{bottom:193.920000pt;}
.y65_c00143{bottom:194.560000pt;}
.y62_c00143{bottom:197.120000pt;}
.y60_c00143{bottom:230.400000pt;}
.y61_c00143{bottom:231.040000pt;}
.y5e_c00143{bottom:232.320000pt;}
.y5f_c00143{bottom:234.240000pt;}
.y5d_c00143{bottom:235.520000pt;}
.y5c_c00143{bottom:236.160000pt;}
.y59_c00143{bottom:268.160000pt;}
.y5b_c00143{bottom:270.080000pt;}
.y5a_c00143{bottom:270.720000pt;}
.y56_c00143{bottom:272.000000pt;}
.y58_c00143{bottom:272.640000pt;}
.y57_c00143{bottom:273.280000pt;}
.y53_c00143{bottom:307.840000pt;}
.y55_c00143{bottom:308.480000pt;}
.y54_c00143{bottom:309.120000pt;}
.y52_c00143{bottom:310.400000pt;}
.y4e_c00143{bottom:345.600000pt;}
.y4f_c00143{bottom:346.880000pt;}
.y51_c00143{bottom:347.520000pt;}
.y4b_c00143{bottom:348.160000pt;}
.y4c_c00143{bottom:348.800000pt;}
.y50_c00143{bottom:349.440000pt;}
.y4d_c00143{bottom:350.080000pt;}
.y49_c00143{bottom:377.600000pt;}
.y47_c00143{bottom:384.640000pt;}
.y46_c00143{bottom:386.560000pt;}
.y4a_c00143{bottom:387.200000pt;}
.y48_c00143{bottom:387.840000pt;}
.y45_c00143{bottom:389.760000pt;}
.y42_c00143{bottom:421.760000pt;}
.y41_c00143{bottom:422.400000pt;}
.y44_c00143{bottom:423.680000pt;}
.y40_c00143{bottom:424.320000pt;}
.y43_c00143{bottom:424.960000pt;}
.y3f_c00143{bottom:461.440000pt;}
.y3e_c00143{bottom:462.080000pt;}
.y3d_c00143{bottom:464.000000pt;}
.y38_c00143{bottom:488.960000pt;}
.y39_c00143{bottom:489.600000pt;}
.y3c_c00143{bottom:490.880000pt;}
.y37_c00143{bottom:491.520000pt;}
.y3a_c00143{bottom:492.160000pt;}
.y3b_c00143{bottom:492.800000pt;}
.y32_c00143{bottom:527.360000pt;}
.y34_c00143{bottom:528.640000pt;}
.y33_c00143{bottom:529.920000pt;}
.y30_c00143{bottom:555.520000pt;}
.y2e_c00143{bottom:556.800000pt;}
.y35_c00143{bottom:557.440000pt;}
.y31_c00143{bottom:558.080000pt;}
.y2f_c00143{bottom:558.720000pt;}
.y36_c00143{bottom:560.640000pt;}
.y29_c00143{bottom:592.640000pt;}
.y2a_c00143{bottom:593.920000pt;}
.y28_c00143{bottom:594.560000pt;}
.y2c_c00143{bottom:596.480000pt;}
.y2b_c00143{bottom:597.120000pt;}
.y2d_c00143{bottom:598.400000pt;}
.y23_c00143{bottom:631.680000pt;}
.y25_c00143{bottom:632.320000pt;}
.y22_c00143{bottom:632.960000pt;}
.y26_c00143{bottom:634.240000pt;}
.y27_c00143{bottom:634.880000pt;}
.y24_c00143{bottom:635.520000pt;}
.y21_c00143{bottom:669.440000pt;}
.y20_c00143{bottom:670.080000pt;}
.y15_c00143{bottom:672.640000pt;}
.y14_c00143{bottom:673.280000pt;}
.y16_c00143{bottom:674.560000pt;}
.y1f_c00143{bottom:706.560000pt;}
.y1e_c00143{bottom:709.120000pt;}
.y11_c00143{bottom:710.400000pt;}
.y12_c00143{bottom:711.040000pt;}
.y13_c00143{bottom:720.640000pt;}
.y1d_c00143{bottom:744.320000pt;}
.y1c_c00143{bottom:745.600000pt;}
.yf_c00143{bottom:748.800000pt;}
.ye_c00143{bottom:749.440000pt;}
.y10_c00143{bottom:750.080000pt;}
.y3_c00143{bottom:783.360000pt;}
.y2_c00143{bottom:784.000000pt;}
.yc_c00143{bottom:787.200000pt;}
.yd_c00143{bottom:790.400000pt;}
.y1b_c00143{bottom:821.760000pt;}
.y1a_c00143{bottom:823.040000pt;}
.ya_c00143{bottom:825.600000pt;}
.y9_c00143{bottom:826.240000pt;}
.yb_c00143{bottom:827.520000pt;}
.y19_c00143{bottom:860.160000pt;}
.y7_c00143{bottom:864.000000pt;}
.y8_c00143{bottom:866.560000pt;}
.y18_c00143{bottom:897.920000pt;}
.y17_c00143{bottom:898.560000pt;}
.y5_c00143{bottom:901.760000pt;}
.y6_c00143{bottom:902.400000pt;}
.y4_c00143{bottom:903.040000pt;}
.y1_c00143{bottom:971.520000pt;}
.ha_c00143{height:13.822500pt;}
.h16_c00143{height:20.733750pt;}
.h10_c00143{height:23.037500pt;}
.h12_c00143{height:25.341250pt;}
.h11_c00143{height:27.645000pt;}
.h15_c00143{height:29.948750pt;}
.h13_c00143{height:34.556250pt;}
.hf_c00143{height:36.860000pt;}
.he_c00143{height:39.163750pt;}
.h8_c00143{height:41.467500pt;}
.h4_c00143{height:43.771250pt;}
.h7_c00143{height:46.075000pt;}
.h3_c00143{height:48.378750pt;}
.hd_c00143{height:49.147500pt;}
.h9_c00143{height:50.682500pt;}
.h6_c00143{height:52.986250pt;}
.h5_c00143{height:55.290000pt;}
.hb_c00143{height:57.593750pt;}
.h2_c00143{height:59.897500pt;}
.hc_c00143{height:62.201250pt;}
.h14_c00143{height:82.935000pt;}
.h1_c00143{height:1022.666667pt;}
.h0_c00143{height:1022.720000pt;}
.w0_c00143{width:694.400000pt;}
.w1_c00143{width:694.666667pt;}
.x0_c00143{left:0.000000pt;}
.x2_c00143{left:52.480000pt;}
.x13_c00143{left:53.760000pt;}
.x32_c00143{left:55.040000pt;}
.x28_c00143{left:101.120000pt;}
.x2f_c00143{left:102.400000pt;}
.x3_c00143{left:127.360000pt;}
.x14_c00143{left:128.640000pt;}
.x33_c00143{left:129.920000pt;}
.x29_c00143{left:138.240000pt;}
.xe_c00143{left:193.920000pt;}
.x23_c00143{left:195.200000pt;}
.x17_c00143{left:204.160000pt;}
.x39_c00143{left:215.040000pt;}
.x15_c00143{left:232.320000pt;}
.x2a_c00143{left:233.600000pt;}
.x1d_c00143{left:242.560000pt;}
.x37_c00143{left:243.840000pt;}
.x18_c00143{left:251.520000pt;}
.x30_c00143{left:253.440000pt;}
.xf_c00143{left:261.120000pt;}
.x1b_c00143{left:270.720000pt;}
.x24_c00143{left:280.320000pt;}
.x26_c00143{left:290.560000pt;}
.x1e_c00143{left:291.840000pt;}
.x19_c00143{left:300.800000pt;}
.x10_c00143{left:309.120000pt;}
.x1c_c00143{left:319.360000pt;}
.x38_c00143{left:320.640000pt;}
.x1f_c00143{left:328.960000pt;}
.x2b_c00143{left:337.920000pt;}
.x11_c00143{left:347.520000pt;}
.x2c_c00143{left:387.200000pt;}
.x25_c00143{left:396.160000pt;}
.x20_c00143{left:405.760000pt;}
.x1a_c00143{left:424.960000pt;}
.x21_c00143{left:445.440000pt;}
.x4_c00143{left:481.920000pt;}
.x12_c00143{left:483.200000pt;}
.x34_c00143{left:484.480000pt;}
.xa_c00143{left:512.000000pt;}
.x5_c00143{left:530.560000pt;}
.xc_c00143{left:531.840000pt;}
.x36_c00143{left:533.120000pt;}
.x16_c00143{left:560.640000pt;}
.x22_c00143{left:561.920000pt;}
.x3a_c00143{left:563.200000pt;}
.x2e_c00143{left:572.160000pt;}
.x6_c00143{left:589.440000pt;}
.xb_c00143{left:590.720000pt;}
.x31_c00143{left:592.000000pt;}
.x1_c00143{left:600.960000pt;}
.x7_c00143{left:626.560000pt;}
.x8_c00143{left:628.480000pt;}
.x27_c00143{left:629.760000pt;}
.x35_c00143{left:631.040000pt;}
.x9_c00143{left:645.760000pt;}
.xd_c00143{left:647.040000pt;}
.x2d_c00143{left:648.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2e6e98f0da2d26716095ada1.woff2')format("woff");}.ff1_c00144{font-family:ff1_c00144;line-height:1.109863;font-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_c00144{transform:matrix(0.209625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209625,0.000000,0.000000,0.250000,0,0);}
.m50_c00144{transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);}
.m4a_c00144{transform:matrix(0.232050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232050,0.000000,0.000000,0.250000,0,0);}
.m4b_c00144{transform:matrix(0.235625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235625,0.000000,0.000000,0.250000,0,0);}
.m25_c00144{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m16_c00144{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);}
.m27_c00144{transform:matrix(0.240150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240150,0.000000,0.000000,0.250000,0,0);}
.m8_c00144{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m2b_c00144{transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);}
.m34_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);}
.m1d_c00144{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m29_c00144{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.mc_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);}
.m4d_c00144{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m23_c00144{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m12_c00144{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m20_c00144{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m17_c00144{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m31_c00144{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);}
.m3e_c00144{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00144{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m13_c00144{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m3_c00144{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00144{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00144{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.ma_c00144{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m42_c00144{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00144{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m6_c00144{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00144{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m7_c00144{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m2_c00144{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m35_c00144{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m11_c00144{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00144{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00144{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00144{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00144{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1_c00144{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00144{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);}
.m24_c00144{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);}
.m47_c00144{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00144{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00144{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m15_c00144{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m33_c00144{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);}
.m30_c00144{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.mf_c00144{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);}
.m21_c00144{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m37_c00144{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);}
.m2c_c00144{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);}
.m43_c00144{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m5_c00144{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);}
.m46_c00144{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m49_c00144{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00144{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m28_c00144{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.md_c00144{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);}
.m41_c00144{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m9_c00144{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);}
.m26_c00144{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m40_c00144{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m4_c00144{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00144{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.me_c00144{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m22_c00144{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m51_c00144{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m52_c00144{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m38_c00144{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m18_c00144{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m19_c00144{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);}
.m3c_c00144{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m32_c00144{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00144{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00144{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);}
.m2e_c00144{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m36_c00144{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m44_c00144{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m39_c00144{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);}
.m45_c00144{transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);}
.m48_c00144{transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);}
.m14_c00144{transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);}
.mb_c00144{transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);}
.v2_c00144{vertical-align:-8.640000px;}
.v0_c00144{vertical-align:0.000000px;}
.v1_c00144{vertical-align:2.880000px;}
.ls0_c00144{letter-spacing:0.000000px;}
.sc__c00144{text-shadow:none;}
.sc0_c00144{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00144{-webkit-text-stroke:0px transparent;}
.sc0_c00144{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00144{word-spacing:0.000000px;}
.ws1_c00144{word-spacing:11.856000px;}
.ws0_c00144{word-spacing:192.750000px;}
.fc0_c00144{color:transparent;}
.fs8_c00144{font-size:34.560000px;}
.fse_c00144{font-size:37.440000px;}
.fs9_c00144{font-size:40.320000px;}
.fsb_c00144{font-size:43.200000px;}
.fs10_c00144{font-size:46.080000px;}
.fs4_c00144{font-size:48.960000px;}
.fs5_c00144{font-size:51.840000px;}
.fs2_c00144{font-size:54.720000px;}
.fs6_c00144{font-size:57.600000px;}
.fs7_c00144{font-size:60.480000px;}
.fs1_c00144{font-size:63.360000px;}
.fsd_c00144{font-size:66.240000px;}
.fsc_c00144{font-size:69.120000px;}
.fsf_c00144{font-size:72.000000px;}
.fs0_c00144{font-size:74.880000px;}
.fs3_c00144{font-size:77.760000px;}
.fsa_c00144{font-size:100.800000px;}
.y0_c00144{bottom:0.000000px;}
.y7d_c00144{bottom:59.760000px;}
.y7b_c00144{bottom:60.480000px;}
.y7a_c00144{bottom:61.920000px;}
.y7c_c00144{bottom:62.640000px;}
.y77_c00144{bottom:92.160000px;}
.y79_c00144{bottom:92.880000px;}
.y78_c00144{bottom:94.320000px;}
.y76_c00144{bottom:97.200000px;}
.y73_c00144{bottom:123.840000px;}
.y74_c00144{bottom:124.560000px;}
.y75_c00144{bottom:125.280000px;}
.y72_c00144{bottom:128.160000px;}
.y6f_c00144{bottom:167.040000px;}
.y71_c00144{bottom:167.760000px;}
.y6d_c00144{bottom:168.480000px;}
.y70_c00144{bottom:169.920000px;}
.y6e_c00144{bottom:170.640000px;}
.y6c_c00144{bottom:172.080000px;}
.y6a_c00144{bottom:210.240000px;}
.y6b_c00144{bottom:210.960000px;}
.y69_c00144{bottom:213.120000px;}
.y68_c00144{bottom:252.720000px;}
.y66_c00144{bottom:253.440000px;}
.y67_c00144{bottom:254.880000px;}
.y64_c00144{bottom:257.040000px;}
.y65_c00144{bottom:257.760000px;}
.y5f_c00144{bottom:295.920000px;}
.y61_c00144{bottom:296.640000px;}
.y62_c00144{bottom:298.080000px;}
.y63_c00144{bottom:298.800000px;}
.y5e_c00144{bottom:299.520000px;}
.y60_c00144{bottom:300.240000px;}
.y5b_c00144{bottom:339.840000px;}
.y5a_c00144{bottom:340.560000px;}
.y5c_c00144{bottom:341.280000px;}
.y5d_c00144{bottom:342.000000px;}
.y59_c00144{bottom:342.720000px;}
.y55_c00144{bottom:382.320000px;}
.y57_c00144{bottom:383.040000px;}
.y58_c00144{bottom:383.760000px;}
.y54_c00144{bottom:385.200000px;}
.y56_c00144{bottom:385.920000px;}
.y4f_c00144{bottom:424.800000px;}
.y52_c00144{bottom:425.520000px;}
.y50_c00144{bottom:426.240000px;}
.y4e_c00144{bottom:426.960000px;}
.y53_c00144{bottom:427.680000px;}
.y51_c00144{bottom:428.400000px;}
.y4b_c00144{bottom:468.000000px;}
.y4d_c00144{bottom:469.440000px;}
.y4c_c00144{bottom:470.160000px;}
.y49_c00144{bottom:470.880000px;}
.y4a_c00144{bottom:471.600000px;}
.y46_c00144{bottom:510.480000px;}
.y47_c00144{bottom:512.640000px;}
.y43_c00144{bottom:513.360000px;}
.y45_c00144{bottom:514.080000px;}
.y44_c00144{bottom:514.800000px;}
.y48_c00144{bottom:515.520000px;}
.y3f_c00144{bottom:555.120000px;}
.y3e_c00144{bottom:555.840000px;}
.y41_c00144{bottom:557.280000px;}
.y40_c00144{bottom:558.000000px;}
.y42_c00144{bottom:559.440000px;}
.y3d_c00144{bottom:597.600000px;}
.y3b_c00144{bottom:598.320000px;}
.y3a_c00144{bottom:599.760000px;}
.y3c_c00144{bottom:601.200000px;}
.y35_c00144{bottom:628.560000px;}
.y34_c00144{bottom:630.720000px;}
.y37_c00144{bottom:631.440000px;}
.y38_c00144{bottom:632.160000px;}
.y36_c00144{bottom:632.880000px;}
.y39_c00144{bottom:633.600000px;}
.y30_c00144{bottom:671.760000px;}
.y32_c00144{bottom:673.200000px;}
.y2f_c00144{bottom:673.920000px;}
.y31_c00144{bottom:675.360000px;}
.y33_c00144{bottom:676.080000px;}
.y2d_c00144{bottom:715.680000px;}
.y2e_c00144{bottom:718.560000px;}
.y27_c00144{bottom:745.920000px;}
.y29_c00144{bottom:747.360000px;}
.y26_c00144{bottom:748.080000px;}
.y2c_c00144{bottom:749.520000px;}
.y28_c00144{bottom:750.240000px;}
.y2b_c00144{bottom:750.960000px;}
.y2a_c00144{bottom:751.680000px;}
.y23_c00144{bottom:789.120000px;}
.y22_c00144{bottom:791.280000px;}
.y24_c00144{bottom:793.440000px;}
.y25_c00144{bottom:794.880000px;}
.y1e_c00144{bottom:832.320000px;}
.y1c_c00144{bottom:833.760000px;}
.y1d_c00144{bottom:835.920000px;}
.y21_c00144{bottom:836.640000px;}
.y20_c00144{bottom:837.360000px;}
.y1f_c00144{bottom:838.080000px;}
.y17_c00144{bottom:874.800000px;}
.y16_c00144{bottom:876.240000px;}
.y18_c00144{bottom:879.120000px;}
.y19_c00144{bottom:879.840000px;}
.y1b_c00144{bottom:881.280000px;}
.y1a_c00144{bottom:882.000000px;}
.y11_c00144{bottom:917.280000px;}
.y12_c00144{bottom:918.720000px;}
.y10_c00144{bottom:919.440000px;}
.y14_c00144{bottom:922.320000px;}
.y13_c00144{bottom:923.040000px;}
.y15_c00144{bottom:924.480000px;}
.yd_c00144{bottom:956.880000px;}
.ya_c00144{bottom:961.200000px;}
.y9_c00144{bottom:963.360000px;}
.yb_c00144{bottom:965.520000px;}
.yc_c00144{bottom:966.240000px;}
.ye_c00144{bottom:966.960000px;}
.yf_c00144{bottom:967.680000px;}
.y2_c00144{bottom:1004.400000px;}
.y4_c00144{bottom:1007.280000px;}
.y3_c00144{bottom:1008.000000px;}
.y7_c00144{bottom:1008.720000px;}
.y5_c00144{bottom:1009.440000px;}
.y6_c00144{bottom:1010.160000px;}
.y8_c00144{bottom:1010.880000px;}
.y1_c00144{bottom:1088.640000px;}
.hb_c00144{height:31.100625px;}
.h11_c00144{height:33.692344px;}
.hc_c00144{height:36.284062px;}
.he_c00144{height:38.875781px;}
.h13_c00144{height:41.467500px;}
.h6_c00144{height:44.059219px;}
.h7_c00144{height:46.650937px;}
.h4_c00144{height:49.242656px;}
.h9_c00144{height:51.834375px;}
.ha_c00144{height:54.426094px;}
.h8_c00144{height:54.714375px;}
.h3_c00144{height:57.017812px;}
.h10_c00144{height:59.609531px;}
.hf_c00144{height:62.201250px;}
.h12_c00144{height:64.792969px;}
.h2_c00144{height:67.384687px;}
.h5_c00144{height:69.976406px;}
.hd_c00144{height:90.710156px;}
.h0_c00144{height:1153.440000px;}
.h1_c00144{height:1153.500000px;}
.w1_c00144{width:786.000000px;}
.w0_c00144{width:786.240000px;}
.x0_c00144{left:0.000000px;}
.x2_c00144{left:64.800000px;}
.xb_c00144{left:117.360000px;}
.x17_c00144{left:147.600000px;}
.x3_c00144{left:149.040000px;}
.x29_c00144{left:159.840000px;}
.x22_c00144{left:202.320000px;}
.x4_c00144{left:223.920000px;}
.x24_c00144{left:232.560000px;}
.xc_c00144{left:234.000000px;}
.x2a_c00144{left:235.440000px;}
.x12_c00144{left:244.800000px;}
.x2e_c00144{left:255.600000px;}
.x15_c00144{left:267.120000px;}
.x1e_c00144{left:277.200000px;}
.x1d_c00144{left:288.000000px;}
.xd_c00144{left:289.440000px;}
.x23_c00144{left:298.080000px;}
.x19_c00144{left:299.520000px;}
.x16_c00144{left:308.880000px;}
.x2f_c00144{left:310.320000px;}
.x2b_c00144{left:319.680000px;}
.xe_c00144{left:330.480000px;}
.x27_c00144{left:331.920000px;}
.x1a_c00144{left:342.000000px;}
.x30_c00144{left:364.320000px;}
.x25_c00144{left:375.120000px;}
.x13_c00144{left:385.920000px;}
.x5_c00144{left:408.240000px;}
.x26_c00144{left:417.600000px;}
.xf_c00144{left:429.120000px;}
.x1b_c00144{left:450.720000px;}
.x21_c00144{left:460.080000px;}
.x6_c00144{left:461.520000px;}
.x1c_c00144{left:505.440000px;}
.x14_c00144{left:547.920000px;}
.x7_c00144{left:549.360000px;}
.x1f_c00144{left:560.160000px;}
.x20_c00144{left:581.760000px;}
.x18_c00144{left:602.640000px;}
.x28_c00144{left:635.040000px;}
.x10_c00144{left:637.200000px;}
.x2d_c00144{left:668.160000px;}
.x8_c00144{left:669.600000px;}
.x1_c00144{left:677.520000px;}
.x11_c00144{left:680.400000px;}
.x2c_c00144{left:702.000000px;}
.x9_c00144{left:712.800000px;}
.xa_c00144{left:732.960000px;}
@media print{
.v2_c00144{vertical-align:-7.680000pt;}
.v0_c00144{vertical-align:0.000000pt;}
.v1_c00144{vertical-align:2.560000pt;}
.ls0_c00144{letter-spacing:0.000000pt;}
.ws2_c00144{word-spacing:0.000000pt;}
.ws1_c00144{word-spacing:10.538667pt;}
.ws0_c00144{word-spacing:171.333333pt;}
.fs8_c00144{font-size:30.720000pt;}
.fse_c00144{font-size:33.280000pt;}
.fs9_c00144{font-size:35.840000pt;}
.fsb_c00144{font-size:38.400000pt;}
.fs10_c00144{font-size:40.960000pt;}
.fs4_c00144{font-size:43.520000pt;}
.fs5_c00144{font-size:46.080000pt;}
.fs2_c00144{font-size:48.640000pt;}
.fs6_c00144{font-size:51.200000pt;}
.fs7_c00144{font-size:53.760000pt;}
.fs1_c00144{font-size:56.320000pt;}
.fsd_c00144{font-size:58.880000pt;}
.fsc_c00144{font-size:61.440000pt;}
.fsf_c00144{font-size:64.000000pt;}
.fs0_c00144{font-size:66.560000pt;}
.fs3_c00144{font-size:69.120000pt;}
.fsa_c00144{font-size:89.600000pt;}
.y0_c00144{bottom:0.000000pt;}
.y7d_c00144{bottom:53.120000pt;}
.y7b_c00144{bottom:53.760000pt;}
.y7a_c00144{bottom:55.040000pt;}
.y7c_c00144{bottom:55.680000pt;}
.y77_c00144{bottom:81.920000pt;}
.y79_c00144{bottom:82.560000pt;}
.y78_c00144{bottom:83.840000pt;}
.y76_c00144{bottom:86.400000pt;}
.y73_c00144{bottom:110.080000pt;}
.y74_c00144{bottom:110.720000pt;}
.y75_c00144{bottom:111.360000pt;}
.y72_c00144{bottom:113.920000pt;}
.y6f_c00144{bottom:148.480000pt;}
.y71_c00144{bottom:149.120000pt;}
.y6d_c00144{bottom:149.760000pt;}
.y70_c00144{bottom:151.040000pt;}
.y6e_c00144{bottom:151.680000pt;}
.y6c_c00144{bottom:152.960000pt;}
.y6a_c00144{bottom:186.880000pt;}
.y6b_c00144{bottom:187.520000pt;}
.y69_c00144{bottom:189.440000pt;}
.y68_c00144{bottom:224.640000pt;}
.y66_c00144{bottom:225.280000pt;}
.y67_c00144{bottom:226.560000pt;}
.y64_c00144{bottom:228.480000pt;}
.y65_c00144{bottom:229.120000pt;}
.y5f_c00144{bottom:263.040000pt;}
.y61_c00144{bottom:263.680000pt;}
.y62_c00144{bottom:264.960000pt;}
.y63_c00144{bottom:265.600000pt;}
.y5e_c00144{bottom:266.240000pt;}
.y60_c00144{bottom:266.880000pt;}
.y5b_c00144{bottom:302.080000pt;}
.y5a_c00144{bottom:302.720000pt;}
.y5c_c00144{bottom:303.360000pt;}
.y5d_c00144{bottom:304.000000pt;}
.y59_c00144{bottom:304.640000pt;}
.y55_c00144{bottom:339.840000pt;}
.y57_c00144{bottom:340.480000pt;}
.y58_c00144{bottom:341.120000pt;}
.y54_c00144{bottom:342.400000pt;}
.y56_c00144{bottom:343.040000pt;}
.y4f_c00144{bottom:377.600000pt;}
.y52_c00144{bottom:378.240000pt;}
.y50_c00144{bottom:378.880000pt;}
.y4e_c00144{bottom:379.520000pt;}
.y53_c00144{bottom:380.160000pt;}
.y51_c00144{bottom:380.800000pt;}
.y4b_c00144{bottom:416.000000pt;}
.y4d_c00144{bottom:417.280000pt;}
.y4c_c00144{bottom:417.920000pt;}
.y49_c00144{bottom:418.560000pt;}
.y4a_c00144{bottom:419.200000pt;}
.y46_c00144{bottom:453.760000pt;}
.y47_c00144{bottom:455.680000pt;}
.y43_c00144{bottom:456.320000pt;}
.y45_c00144{bottom:456.960000pt;}
.y44_c00144{bottom:457.600000pt;}
.y48_c00144{bottom:458.240000pt;}
.y3f_c00144{bottom:493.440000pt;}
.y3e_c00144{bottom:494.080000pt;}
.y41_c00144{bottom:495.360000pt;}
.y40_c00144{bottom:496.000000pt;}
.y42_c00144{bottom:497.280000pt;}
.y3d_c00144{bottom:531.200000pt;}
.y3b_c00144{bottom:531.840000pt;}
.y3a_c00144{bottom:533.120000pt;}
.y3c_c00144{bottom:534.400000pt;}
.y35_c00144{bottom:558.720000pt;}
.y34_c00144{bottom:560.640000pt;}
.y37_c00144{bottom:561.280000pt;}
.y38_c00144{bottom:561.920000pt;}
.y36_c00144{bottom:562.560000pt;}
.y39_c00144{bottom:563.200000pt;}
.y30_c00144{bottom:597.120000pt;}
.y32_c00144{bottom:598.400000pt;}
.y2f_c00144{bottom:599.040000pt;}
.y31_c00144{bottom:600.320000pt;}
.y33_c00144{bottom:600.960000pt;}
.y2d_c00144{bottom:636.160000pt;}
.y2e_c00144{bottom:638.720000pt;}
.y27_c00144{bottom:663.040000pt;}
.y29_c00144{bottom:664.320000pt;}
.y26_c00144{bottom:664.960000pt;}
.y2c_c00144{bottom:666.240000pt;}
.y28_c00144{bottom:666.880000pt;}
.y2b_c00144{bottom:667.520000pt;}
.y2a_c00144{bottom:668.160000pt;}
.y23_c00144{bottom:701.440000pt;}
.y22_c00144{bottom:703.360000pt;}
.y24_c00144{bottom:705.280000pt;}
.y25_c00144{bottom:706.560000pt;}
.y1e_c00144{bottom:739.840000pt;}
.y1c_c00144{bottom:741.120000pt;}
.y1d_c00144{bottom:743.040000pt;}
.y21_c00144{bottom:743.680000pt;}
.y20_c00144{bottom:744.320000pt;}
.y1f_c00144{bottom:744.960000pt;}
.y17_c00144{bottom:777.600000pt;}
.y16_c00144{bottom:778.880000pt;}
.y18_c00144{bottom:781.440000pt;}
.y19_c00144{bottom:782.080000pt;}
.y1b_c00144{bottom:783.360000pt;}
.y1a_c00144{bottom:784.000000pt;}
.y11_c00144{bottom:815.360000pt;}
.y12_c00144{bottom:816.640000pt;}
.y10_c00144{bottom:817.280000pt;}
.y14_c00144{bottom:819.840000pt;}
.y13_c00144{bottom:820.480000pt;}
.y15_c00144{bottom:821.760000pt;}
.yd_c00144{bottom:850.560000pt;}
.ya_c00144{bottom:854.400000pt;}
.y9_c00144{bottom:856.320000pt;}
.yb_c00144{bottom:858.240000pt;}
.yc_c00144{bottom:858.880000pt;}
.ye_c00144{bottom:859.520000pt;}
.yf_c00144{bottom:860.160000pt;}
.y2_c00144{bottom:892.800000pt;}
.y4_c00144{bottom:895.360000pt;}
.y3_c00144{bottom:896.000000pt;}
.y7_c00144{bottom:896.640000pt;}
.y5_c00144{bottom:897.280000pt;}
.y6_c00144{bottom:897.920000pt;}
.y8_c00144{bottom:898.560000pt;}
.y1_c00144{bottom:967.680000pt;}
.hb_c00144{height:27.645000pt;}
.h11_c00144{height:29.948750pt;}
.hc_c00144{height:32.252500pt;}
.he_c00144{height:34.556250pt;}
.h13_c00144{height:36.860000pt;}
.h6_c00144{height:39.163750pt;}
.h7_c00144{height:41.467500pt;}
.h4_c00144{height:43.771250pt;}
.h9_c00144{height:46.075000pt;}
.ha_c00144{height:48.378750pt;}
.h8_c00144{height:48.635000pt;}
.h3_c00144{height:50.682500pt;}
.h10_c00144{height:52.986250pt;}
.hf_c00144{height:55.290000pt;}
.h12_c00144{height:57.593750pt;}
.h2_c00144{height:59.897500pt;}
.h5_c00144{height:62.201250pt;}
.hd_c00144{height:80.631250pt;}
.h0_c00144{height:1025.280000pt;}
.h1_c00144{height:1025.333333pt;}
.w1_c00144{width:698.666667pt;}
.w0_c00144{width:698.880000pt;}
.x0_c00144{left:0.000000pt;}
.x2_c00144{left:57.600000pt;}
.xb_c00144{left:104.320000pt;}
.x17_c00144{left:131.200000pt;}
.x3_c00144{left:132.480000pt;}
.x29_c00144{left:142.080000pt;}
.x22_c00144{left:179.840000pt;}
.x4_c00144{left:199.040000pt;}
.x24_c00144{left:206.720000pt;}
.xc_c00144{left:208.000000pt;}
.x2a_c00144{left:209.280000pt;}
.x12_c00144{left:217.600000pt;}
.x2e_c00144{left:227.200000pt;}
.x15_c00144{left:237.440000pt;}
.x1e_c00144{left:246.400000pt;}
.x1d_c00144{left:256.000000pt;}
.xd_c00144{left:257.280000pt;}
.x23_c00144{left:264.960000pt;}
.x19_c00144{left:266.240000pt;}
.x16_c00144{left:274.560000pt;}
.x2f_c00144{left:275.840000pt;}
.x2b_c00144{left:284.160000pt;}
.xe_c00144{left:293.760000pt;}
.x27_c00144{left:295.040000pt;}
.x1a_c00144{left:304.000000pt;}
.x30_c00144{left:323.840000pt;}
.x25_c00144{left:333.440000pt;}
.x13_c00144{left:343.040000pt;}
.x5_c00144{left:362.880000pt;}
.x26_c00144{left:371.200000pt;}
.xf_c00144{left:381.440000pt;}
.x1b_c00144{left:400.640000pt;}
.x21_c00144{left:408.960000pt;}
.x6_c00144{left:410.240000pt;}
.x1c_c00144{left:449.280000pt;}
.x14_c00144{left:487.040000pt;}
.x7_c00144{left:488.320000pt;}
.x1f_c00144{left:497.920000pt;}
.x20_c00144{left:517.120000pt;}
.x18_c00144{left:535.680000pt;}
.x28_c00144{left:564.480000pt;}
.x10_c00144{left:566.400000pt;}
.x2d_c00144{left:593.920000pt;}
.x8_c00144{left:595.200000pt;}
.x1_c00144{left:602.240000pt;}
.x11_c00144{left:604.800000pt;}
.x2c_c00144{left:624.000000pt;}
.x9_c00144{left:633.600000pt;}
.xa_c00144{left:651.520000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_072eeaa36a6151f021ec0833.woff2')format("woff");}.ff1_c00145{font-family:ff1_c00145;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m34_c00145{transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);}
.m51_c00145{transform:matrix(0.205350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205350,0.000000,0.000000,0.250000,0,0);}
.m3a_c00145{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);}
.m49_c00145{transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);}
.m2c_c00145{transform:matrix(0.239100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239100,0.000000,0.000000,0.250000,0,0);}
.m16_c00145{transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);}
.m44_c00145{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m46_c00145{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m48_c00145{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m8_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);}
.m1a_c00145{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);}
.m4e_c00145{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00145{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m25_c00145{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00145{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m36_c00145{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m3_c00145{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m12_c00145{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);}
.m29_c00145{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m15_c00145{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m21_c00145{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m28_c00145{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m38_c00145{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m9_c00145{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m19_c00145{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m2_c00145{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m22_c00145{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m32_c00145{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m47_c00145{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00145{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m11_c00145{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mf_c00145{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m10_c00145{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m0_c00145{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m23_c00145{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m4_c00145{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m55_c00145{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m6_c00145{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00145{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00145{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mc_c00145{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.me_c00145{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m45_c00145{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m53_c00145{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m26_c00145{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00145{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m18_c00145{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m13_c00145{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);}
.m31_c00145{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00145{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m39_c00145{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);}
.m33_c00145{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00145{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m41_c00145{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);}
.m1d_c00145{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);}
.m37_c00145{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.ma_c00145{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m7_c00145{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);}
.m3c_c00145{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);}
.m20_c00145{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);}
.m40_c00145{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m14_c00145{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00145{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00145{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);}
.m35_c00145{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00145{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m1_c00145{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00145{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m30_c00145{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m56_c00145{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.md_c00145{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m43_c00145{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);}
.m5_c00145{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m54_c00145{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.mb_c00145{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);}
.m4c_c00145{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);}
.m24_c00145{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m17_c00145{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);}
.m2b_c00145{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00145{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m27_c00145{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00145{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);}
.m42_c00145{transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00145{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);}
.m3f_c00145{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.m52_c00145{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m50_c00145{transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);}
.v1_c00145{vertical-align:-2.880000px;}
.v0_c00145{vertical-align:0.000000px;}
.ls1_c00145{letter-spacing:0.000000px;}
.ls0_c00145{letter-spacing:87.974400px;}
.sc__c00145{text-shadow:none;}
.sc0_c00145{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00145{-webkit-text-stroke:0px transparent;}
.sc0_c00145{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00145{word-spacing:0.000000px;}
.fc0_c00145{color:transparent;}
.fs11_c00145{font-size:17.280000px;}
.fsb_c00145{font-size:25.920000px;}
.fs10_c00145{font-size:34.560000px;}
.fse_c00145{font-size:37.440000px;}
.fsf_c00145{font-size:43.200000px;}
.fsa_c00145{font-size:46.080000px;}
.fs7_c00145{font-size:48.960000px;}
.fs1_c00145{font-size:51.840000px;}
.fs4_c00145{font-size:54.720000px;}
.fs8_c00145{font-size:57.600000px;}
.fs3_c00145{font-size:60.480000px;}
.fs6_c00145{font-size:63.360000px;}
.fs0_c00145{font-size:66.240000px;}
.fsc_c00145{font-size:69.120000px;}
.fs2_c00145{font-size:72.000000px;}
.fs9_c00145{font-size:74.880000px;}
.fs5_c00145{font-size:77.760000px;}
.fsd_c00145{font-size:103.680000px;}
.y0_c00145{bottom:0.000000px;}
.y80_c00145{bottom:32.400000px;}
.y7f_c00145{bottom:33.840000px;}
.y7d_c00145{bottom:60.480000px;}
.y7b_c00145{bottom:61.200000px;}
.y7c_c00145{bottom:61.920000px;}
.y7e_c00145{bottom:92.160000px;}
.y77_c00145{bottom:92.880000px;}
.y78_c00145{bottom:93.600000px;}
.y79_c00145{bottom:94.320000px;}
.y7a_c00145{bottom:95.760000px;}
.y76_c00145{bottom:97.200000px;}
.y72_c00145{bottom:133.920000px;}
.y73_c00145{bottom:134.640000px;}
.y74_c00145{bottom:135.360000px;}
.y6f_c00145{bottom:136.080000px;}
.y75_c00145{bottom:136.800000px;}
.y71_c00145{bottom:138.240000px;}
.y70_c00145{bottom:138.960000px;}
.y6e_c00145{bottom:139.680000px;}
.y3_c00145{bottom:177.840000px;}
.y4_c00145{bottom:178.560000px;}
.y1_c00145{bottom:179.280000px;}
.y5_c00145{bottom:180.000000px;}
.y2_c00145{bottom:180.720000px;}
.y6b_c00145{bottom:182.880000px;}
.y6c_c00145{bottom:221.040000px;}
.y6a_c00145{bottom:221.760000px;}
.y6d_c00145{bottom:223.920000px;}
.y69_c00145{bottom:225.360000px;}
.y63_c00145{bottom:264.240000px;}
.y66_c00145{bottom:264.960000px;}
.y67_c00145{bottom:265.680000px;}
.y68_c00145{bottom:266.400000px;}
.y65_c00145{bottom:267.120000px;}
.y64_c00145{bottom:267.840000px;}
.y62_c00145{bottom:268.560000px;}
.y5f_c00145{bottom:306.720000px;}
.y61_c00145{bottom:308.160000px;}
.y60_c00145{bottom:308.880000px;}
.y5e_c00145{bottom:311.040000px;}
.y57_c00145{bottom:349.920000px;}
.y59_c00145{bottom:350.640000px;}
.y58_c00145{bottom:351.360000px;}
.y56_c00145{bottom:353.520000px;}
.y5d_c00145{bottom:354.240000px;}
.y55_c00145{bottom:392.400000px;}
.y5b_c00145{bottom:394.560000px;}
.y5a_c00145{bottom:395.280000px;}
.y54_c00145{bottom:396.720000px;}
.y5c_c00145{bottom:397.440000px;}
.y4f_c00145{bottom:435.600000px;}
.y50_c00145{bottom:439.920000px;}
.y51_c00145{bottom:440.640000px;}
.y4c_c00145{bottom:468.000000px;}
.y52_c00145{bottom:469.440000px;}
.y4e_c00145{bottom:470.160000px;}
.y4b_c00145{bottom:471.600000px;}
.y4d_c00145{bottom:472.320000px;}
.y53_c00145{bottom:473.040000px;}
.y4a_c00145{bottom:512.640000px;}
.y49_c00145{bottom:515.520000px;}
.y45_c00145{bottom:543.600000px;}
.y48_c00145{bottom:545.040000px;}
.y44_c00145{bottom:545.760000px;}
.y47_c00145{bottom:546.480000px;}
.y46_c00145{bottom:547.920000px;}
.y42_c00145{bottom:580.320000px;}
.y3f_c00145{bottom:586.080000px;}
.y40_c00145{bottom:588.240000px;}
.y3e_c00145{bottom:588.960000px;}
.y43_c00145{bottom:589.680000px;}
.y41_c00145{bottom:591.120000px;}
.y3c_c00145{bottom:623.520000px;}
.y39_c00145{bottom:628.560000px;}
.y38_c00145{bottom:631.440000px;}
.y3d_c00145{bottom:632.160000px;}
.y3a_c00145{bottom:632.880000px;}
.y3b_c00145{bottom:633.600000px;}
.y36_c00145{bottom:666.000000px;}
.y33_c00145{bottom:671.040000px;}
.y32_c00145{bottom:673.920000px;}
.y37_c00145{bottom:674.640000px;}
.y34_c00145{bottom:676.080000px;}
.y35_c00145{bottom:676.800000px;}
.y2d_c00145{bottom:714.960000px;}
.y2c_c00145{bottom:716.400000px;}
.y30_c00145{bottom:718.560000px;}
.y31_c00145{bottom:719.280000px;}
.y2b_c00145{bottom:758.160000px;}
.y2a_c00145{bottom:761.040000px;}
.y2e_c00145{bottom:761.760000px;}
.y2f_c00145{bottom:763.200000px;}
.y29_c00145{bottom:801.360000px;}
.y27_c00145{bottom:802.080000px;}
.y28_c00145{bottom:804.240000px;}
.y22_c00145{bottom:832.320000px;}
.y21_c00145{bottom:834.480000px;}
.y25_c00145{bottom:836.640000px;}
.y23_c00145{bottom:837.360000px;}
.y26_c00145{bottom:838.080000px;}
.y24_c00145{bottom:838.800000px;}
.y1c_c00145{bottom:875.520000px;}
.y1b_c00145{bottom:876.960000px;}
.y1e_c00145{bottom:879.840000px;}
.y1f_c00145{bottom:881.280000px;}
.y1d_c00145{bottom:882.000000px;}
.y20_c00145{bottom:882.720000px;}
.y17_c00145{bottom:918.720000px;}
.y15_c00145{bottom:919.440000px;}
.y16_c00145{bottom:922.320000px;}
.y18_c00145{bottom:923.040000px;}
.y19_c00145{bottom:924.480000px;}
.y1a_c00145{bottom:925.920000px;}
.ye_c00145{bottom:961.920000px;}
.y11_c00145{bottom:962.640000px;}
.yf_c00145{bottom:964.800000px;}
.y10_c00145{bottom:965.520000px;}
.y12_c00145{bottom:966.240000px;}
.y13_c00145{bottom:966.960000px;}
.y14_c00145{bottom:967.680000px;}
.y8_c00145{bottom:1005.120000px;}
.y7_c00145{bottom:1005.840000px;}
.y9_c00145{bottom:1009.440000px;}
.ya_c00145{bottom:1010.160000px;}
.yd_c00145{bottom:1012.320000px;}
.yb_c00145{bottom:1013.040000px;}
.yc_c00145{bottom:1013.760000px;}
.y6_c00145{bottom:1110.240000px;}
.h13_c00145{height:15.550313px;}
.hd_c00145{height:23.325469px;}
.h12_c00145{height:31.100625px;}
.h10_c00145{height:33.692344px;}
.h11_c00145{height:38.875781px;}
.hc_c00145{height:41.467500px;}
.h9_c00145{height:44.059219px;}
.h3_c00145{height:46.650937px;}
.h6_c00145{height:49.242656px;}
.ha_c00145{height:51.834375px;}
.h5_c00145{height:54.426094px;}
.h8_c00145{height:57.017812px;}
.h2_c00145{height:59.609531px;}
.he_c00145{height:62.201250px;}
.h4_c00145{height:64.792969px;}
.hb_c00145{height:67.384687px;}
.h7_c00145{height:69.976406px;}
.hf_c00145{height:93.301875px;}
.h0_c00145{height:1152.720000px;}
.h1_c00145{height:1152.750000px;}
.w1_c00145{width:783.750000px;}
.w0_c00145{width:784.080000px;}
.x0_c00145{left:0.000000px;}
.x9_c00145{left:59.040000px;}
.x34_c00145{left:60.480000px;}
.x1f_c00145{left:112.320000px;}
.x10_c00145{left:141.840000px;}
.x14_c00145{left:143.280000px;}
.x2c_c00145{left:144.720000px;}
.x38_c00145{left:147.600000px;}
.xa_c00145{left:153.360000px;}
.x1d_c00145{left:185.040000px;}
.x3d_c00145{left:186.480000px;}
.x15_c00145{left:218.160000px;}
.x11_c00145{left:226.800000px;}
.x20_c00145{left:228.240000px;}
.x19_c00145{left:239.760000px;}
.x22_c00145{left:249.840000px;}
.x35_c00145{left:262.080000px;}
.x12_c00145{left:271.440000px;}
.x39_c00145{left:273.600000px;}
.x2f_c00145{left:282.960000px;}
.x3b_c00145{left:293.760000px;}
.x1_c00145{left:304.560000px;}
.x27_c00145{left:314.640000px;}
.x1e_c00145{left:324.720000px;}
.x2d_c00145{left:326.160000px;}
.x1a_c00145{left:336.240000px;}
.x30_c00145{left:345.600000px;}
.x36_c00145{left:347.760000px;}
.x3c_c00145{left:349.200000px;}
.x23_c00145{left:357.840000px;}
.x2e_c00145{left:368.640000px;}
.x1b_c00145{left:378.720000px;}
.x31_c00145{left:390.960000px;}
.x28_c00145{left:401.040000px;}
.x24_c00145{left:412.560000px;}
.x2_c00145{left:423.360000px;}
.x2b_c00145{left:432.000000px;}
.x32_c00145{left:433.440000px;}
.x29_c00145{left:453.600000px;}
.x3a_c00145{left:457.200000px;}
.x1c_c00145{left:466.560000px;}
.x3_c00145{left:478.080000px;}
.x2a_c00145{left:498.960000px;}
.x33_c00145{left:520.560000px;}
.xb_c00145{left:542.160000px;}
.x4_c00145{left:543.600000px;}
.x17_c00145{left:554.400000px;}
.x18_c00145{left:576.000000px;}
.x25_c00145{left:597.600000px;}
.x21_c00145{left:608.400000px;}
.x13_c00145{left:628.560000px;}
.xc_c00145{left:630.720000px;}
.x5_c00145{left:632.160000px;}
.xd_c00145{left:663.120000px;}
.x6_c00145{left:665.280000px;}
.x16_c00145{left:673.920000px;}
.x8_c00145{left:682.560000px;}
.x37_c00145{left:697.680000px;}
.xe_c00145{left:706.320000px;}
.x26_c00145{left:707.760000px;}
.xf_c00145{left:726.480000px;}
.x7_c00145{left:728.640000px;}
@media print{
.v1_c00145{vertical-align:-2.560000pt;}
.v0_c00145{vertical-align:0.000000pt;}
.ls1_c00145{letter-spacing:0.000000pt;}
.ls0_c00145{letter-spacing:78.199467pt;}
.ws0_c00145{word-spacing:0.000000pt;}
.fs11_c00145{font-size:15.360000pt;}
.fsb_c00145{font-size:23.040000pt;}
.fs10_c00145{font-size:30.720000pt;}
.fse_c00145{font-size:33.280000pt;}
.fsf_c00145{font-size:38.400000pt;}
.fsa_c00145{font-size:40.960000pt;}
.fs7_c00145{font-size:43.520000pt;}
.fs1_c00145{font-size:46.080000pt;}
.fs4_c00145{font-size:48.640000pt;}
.fs8_c00145{font-size:51.200000pt;}
.fs3_c00145{font-size:53.760000pt;}
.fs6_c00145{font-size:56.320000pt;}
.fs0_c00145{font-size:58.880000pt;}
.fsc_c00145{font-size:61.440000pt;}
.fs2_c00145{font-size:64.000000pt;}
.fs9_c00145{font-size:66.560000pt;}
.fs5_c00145{font-size:69.120000pt;}
.fsd_c00145{font-size:92.160000pt;}
.y0_c00145{bottom:0.000000pt;}
.y80_c00145{bottom:28.800000pt;}
.y7f_c00145{bottom:30.080000pt;}
.y7d_c00145{bottom:53.760000pt;}
.y7b_c00145{bottom:54.400000pt;}
.y7c_c00145{bottom:55.040000pt;}
.y7e_c00145{bottom:81.920000pt;}
.y77_c00145{bottom:82.560000pt;}
.y78_c00145{bottom:83.200000pt;}
.y79_c00145{bottom:83.840000pt;}
.y7a_c00145{bottom:85.120000pt;}
.y76_c00145{bottom:86.400000pt;}
.y72_c00145{bottom:119.040000pt;}
.y73_c00145{bottom:119.680000pt;}
.y74_c00145{bottom:120.320000pt;}
.y6f_c00145{bottom:120.960000pt;}
.y75_c00145{bottom:121.600000pt;}
.y71_c00145{bottom:122.880000pt;}
.y70_c00145{bottom:123.520000pt;}
.y6e_c00145{bottom:124.160000pt;}
.y3_c00145{bottom:158.080000pt;}
.y4_c00145{bottom:158.720000pt;}
.y1_c00145{bottom:159.360000pt;}
.y5_c00145{bottom:160.000000pt;}
.y2_c00145{bottom:160.640000pt;}
.y6b_c00145{bottom:162.560000pt;}
.y6c_c00145{bottom:196.480000pt;}
.y6a_c00145{bottom:197.120000pt;}
.y6d_c00145{bottom:199.040000pt;}
.y69_c00145{bottom:200.320000pt;}
.y63_c00145{bottom:234.880000pt;}
.y66_c00145{bottom:235.520000pt;}
.y67_c00145{bottom:236.160000pt;}
.y68_c00145{bottom:236.800000pt;}
.y65_c00145{bottom:237.440000pt;}
.y64_c00145{bottom:238.080000pt;}
.y62_c00145{bottom:238.720000pt;}
.y5f_c00145{bottom:272.640000pt;}
.y61_c00145{bottom:273.920000pt;}
.y60_c00145{bottom:274.560000pt;}
.y5e_c00145{bottom:276.480000pt;}
.y57_c00145{bottom:311.040000pt;}
.y59_c00145{bottom:311.680000pt;}
.y58_c00145{bottom:312.320000pt;}
.y56_c00145{bottom:314.240000pt;}
.y5d_c00145{bottom:314.880000pt;}
.y55_c00145{bottom:348.800000pt;}
.y5b_c00145{bottom:350.720000pt;}
.y5a_c00145{bottom:351.360000pt;}
.y54_c00145{bottom:352.640000pt;}
.y5c_c00145{bottom:353.280000pt;}
.y4f_c00145{bottom:387.200000pt;}
.y50_c00145{bottom:391.040000pt;}
.y51_c00145{bottom:391.680000pt;}
.y4c_c00145{bottom:416.000000pt;}
.y52_c00145{bottom:417.280000pt;}
.y4e_c00145{bottom:417.920000pt;}
.y4b_c00145{bottom:419.200000pt;}
.y4d_c00145{bottom:419.840000pt;}
.y53_c00145{bottom:420.480000pt;}
.y4a_c00145{bottom:455.680000pt;}
.y49_c00145{bottom:458.240000pt;}
.y45_c00145{bottom:483.200000pt;}
.y48_c00145{bottom:484.480000pt;}
.y44_c00145{bottom:485.120000pt;}
.y47_c00145{bottom:485.760000pt;}
.y46_c00145{bottom:487.040000pt;}
.y42_c00145{bottom:515.840000pt;}
.y3f_c00145{bottom:520.960000pt;}
.y40_c00145{bottom:522.880000pt;}
.y3e_c00145{bottom:523.520000pt;}
.y43_c00145{bottom:524.160000pt;}
.y41_c00145{bottom:525.440000pt;}
.y3c_c00145{bottom:554.240000pt;}
.y39_c00145{bottom:558.720000pt;}
.y38_c00145{bottom:561.280000pt;}
.y3d_c00145{bottom:561.920000pt;}
.y3a_c00145{bottom:562.560000pt;}
.y3b_c00145{bottom:563.200000pt;}
.y36_c00145{bottom:592.000000pt;}
.y33_c00145{bottom:596.480000pt;}
.y32_c00145{bottom:599.040000pt;}
.y37_c00145{bottom:599.680000pt;}
.y34_c00145{bottom:600.960000pt;}
.y35_c00145{bottom:601.600000pt;}
.y2d_c00145{bottom:635.520000pt;}
.y2c_c00145{bottom:636.800000pt;}
.y30_c00145{bottom:638.720000pt;}
.y31_c00145{bottom:639.360000pt;}
.y2b_c00145{bottom:673.920000pt;}
.y2a_c00145{bottom:676.480000pt;}
.y2e_c00145{bottom:677.120000pt;}
.y2f_c00145{bottom:678.400000pt;}
.y29_c00145{bottom:712.320000pt;}
.y27_c00145{bottom:712.960000pt;}
.y28_c00145{bottom:714.880000pt;}
.y22_c00145{bottom:739.840000pt;}
.y21_c00145{bottom:741.760000pt;}
.y25_c00145{bottom:743.680000pt;}
.y23_c00145{bottom:744.320000pt;}
.y26_c00145{bottom:744.960000pt;}
.y24_c00145{bottom:745.600000pt;}
.y1c_c00145{bottom:778.240000pt;}
.y1b_c00145{bottom:779.520000pt;}
.y1e_c00145{bottom:782.080000pt;}
.y1f_c00145{bottom:783.360000pt;}
.y1d_c00145{bottom:784.000000pt;}
.y20_c00145{bottom:784.640000pt;}
.y17_c00145{bottom:816.640000pt;}
.y15_c00145{bottom:817.280000pt;}
.y16_c00145{bottom:819.840000pt;}
.y18_c00145{bottom:820.480000pt;}
.y19_c00145{bottom:821.760000pt;}
.y1a_c00145{bottom:823.040000pt;}
.ye_c00145{bottom:855.040000pt;}
.y11_c00145{bottom:855.680000pt;}
.yf_c00145{bottom:857.600000pt;}
.y10_c00145{bottom:858.240000pt;}
.y12_c00145{bottom:858.880000pt;}
.y13_c00145{bottom:859.520000pt;}
.y14_c00145{bottom:860.160000pt;}
.y8_c00145{bottom:893.440000pt;}
.y7_c00145{bottom:894.080000pt;}
.y9_c00145{bottom:897.280000pt;}
.ya_c00145{bottom:897.920000pt;}
.yd_c00145{bottom:899.840000pt;}
.yb_c00145{bottom:900.480000pt;}
.yc_c00145{bottom:901.120000pt;}
.y6_c00145{bottom:986.880000pt;}
.h13_c00145{height:13.822500pt;}
.hd_c00145{height:20.733750pt;}
.h12_c00145{height:27.645000pt;}
.h10_c00145{height:29.948750pt;}
.h11_c00145{height:34.556250pt;}
.hc_c00145{height:36.860000pt;}
.h9_c00145{height:39.163750pt;}
.h3_c00145{height:41.467500pt;}
.h6_c00145{height:43.771250pt;}
.ha_c00145{height:46.075000pt;}
.h5_c00145{height:48.378750pt;}
.h8_c00145{height:50.682500pt;}
.h2_c00145{height:52.986250pt;}
.he_c00145{height:55.290000pt;}
.h4_c00145{height:57.593750pt;}
.hb_c00145{height:59.897500pt;}
.h7_c00145{height:62.201250pt;}
.hf_c00145{height:82.935000pt;}
.h0_c00145{height:1024.640000pt;}
.h1_c00145{height:1024.666667pt;}
.w1_c00145{width:696.666667pt;}
.w0_c00145{width:696.960000pt;}
.x0_c00145{left:0.000000pt;}
.x9_c00145{left:52.480000pt;}
.x34_c00145{left:53.760000pt;}
.x1f_c00145{left:99.840000pt;}
.x10_c00145{left:126.080000pt;}
.x14_c00145{left:127.360000pt;}
.x2c_c00145{left:128.640000pt;}
.x38_c00145{left:131.200000pt;}
.xa_c00145{left:136.320000pt;}
.x1d_c00145{left:164.480000pt;}
.x3d_c00145{left:165.760000pt;}
.x15_c00145{left:193.920000pt;}
.x11_c00145{left:201.600000pt;}
.x20_c00145{left:202.880000pt;}
.x19_c00145{left:213.120000pt;}
.x22_c00145{left:222.080000pt;}
.x35_c00145{left:232.960000pt;}
.x12_c00145{left:241.280000pt;}
.x39_c00145{left:243.200000pt;}
.x2f_c00145{left:251.520000pt;}
.x3b_c00145{left:261.120000pt;}
.x1_c00145{left:270.720000pt;}
.x27_c00145{left:279.680000pt;}
.x1e_c00145{left:288.640000pt;}
.x2d_c00145{left:289.920000pt;}
.x1a_c00145{left:298.880000pt;}
.x30_c00145{left:307.200000pt;}
.x36_c00145{left:309.120000pt;}
.x3c_c00145{left:310.400000pt;}
.x23_c00145{left:318.080000pt;}
.x2e_c00145{left:327.680000pt;}
.x1b_c00145{left:336.640000pt;}
.x31_c00145{left:347.520000pt;}
.x28_c00145{left:356.480000pt;}
.x24_c00145{left:366.720000pt;}
.x2_c00145{left:376.320000pt;}
.x2b_c00145{left:384.000000pt;}
.x32_c00145{left:385.280000pt;}
.x29_c00145{left:403.200000pt;}
.x3a_c00145{left:406.400000pt;}
.x1c_c00145{left:414.720000pt;}
.x3_c00145{left:424.960000pt;}
.x2a_c00145{left:443.520000pt;}
.x33_c00145{left:462.720000pt;}
.xb_c00145{left:481.920000pt;}
.x4_c00145{left:483.200000pt;}
.x17_c00145{left:492.800000pt;}
.x18_c00145{left:512.000000pt;}
.x25_c00145{left:531.200000pt;}
.x21_c00145{left:540.800000pt;}
.x13_c00145{left:558.720000pt;}
.xc_c00145{left:560.640000pt;}
.x5_c00145{left:561.920000pt;}
.xd_c00145{left:589.440000pt;}
.x6_c00145{left:591.360000pt;}
.x16_c00145{left:599.040000pt;}
.x8_c00145{left:606.720000pt;}
.x37_c00145{left:620.160000pt;}
.xe_c00145{left:627.840000pt;}
.x26_c00145{left:629.120000pt;}
.xf_c00145{left:645.760000pt;}
.x7_c00145{left:647.680000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cc2abe40a28a8a3d113b92ab.woff2')format("woff");}.ff1_c00146{font-family:ff1_c00146;line-height:1.109863;font-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_c00146{transform:matrix(0.205875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205875,0.000000,0.000000,0.250000,0,0);}
.m4c_c00146{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m4_c00146{transform:matrix(0.237200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237200,0.000000,0.000000,0.250000,0,0);}
.m4e_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);}
.m2d_c00146{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1_c00146{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m35_c00146{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);}
.m3e_c00146{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m32_c00146{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m16_c00146{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m18_c00146{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00146{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m22_c00146{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m46_c00146{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_c00146{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m6_c00146{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m13_c00146{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m19_c00146{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m14_c00146{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m42_c00146{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m3_c00146{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m27_c00146{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00146{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m48_c00146{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m5_c00146{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m44_c00146{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m21_c00146{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m43_c00146{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00146{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m10_c00146{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00146{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m38_c00146{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m20_c00146{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m12_c00146{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m24_c00146{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m15_c00146{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00146{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.md_c00146{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m0_c00146{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m30_c00146{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);}
.m39_c00146{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);}
.m41_c00146{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.mb_c00146{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);}
.m3f_c00146{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m26_c00146{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m11_c00146{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);}
.ma_c00146{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00146{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m7_c00146{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);}
.m3c_c00146{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m8_c00146{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);}
.m3d_c00146{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00146{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);}
.m9_c00146{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00146{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m40_c00146{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.mf_c00146{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);}
.m2_c00146{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m37_c00146{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m28_c00146{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);}
.m23_c00146{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00146{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00146{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);}
.m2a_c00146{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00146{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);}
.m3a_c00146{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m34_c00146{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m33_c00146{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);}
.m1d_c00146{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m25_c00146{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);}
.m49_c00146{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m31_c00146{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m45_c00146{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m36_c00146{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.mc_c00146{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);}
.m4a_c00146{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00146{transform:matrix(0.712500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.712500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.712500,0.000000,0.000000,0.250000,0,0);}
.m17_c00146{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m47_c00146{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00146{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);}
.v1_c00146{vertical-align:-2.880000px;}
.v0_c00146{vertical-align:0.000000px;}
.ls0_c00146{letter-spacing:0.000000px;}
.sc__c00146{text-shadow:none;}
.sc0_c00146{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00146{-webkit-text-stroke:0px transparent;}
.sc0_c00146{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00146{word-spacing:0.000000px;}
.ws0_c00146{word-spacing:16.658400px;}
.fc0_c00146{color:transparent;}
.fs7_c00146{font-size:34.560000px;}
.fsd_c00146{font-size:37.440000px;}
.fsf_c00146{font-size:40.320000px;}
.fs2_c00146{font-size:43.200000px;}
.fse_c00146{font-size:46.080000px;}
.fs9_c00146{font-size:48.960000px;}
.fs6_c00146{font-size:51.840000px;}
.fsa_c00146{font-size:54.720000px;}
.fs8_c00146{font-size:57.600000px;}
.fs0_c00146{font-size:60.480000px;}
.fs5_c00146{font-size:63.360000px;}
.fs4_c00146{font-size:66.240000px;}
.fsc_c00146{font-size:69.120000px;}
.fs3_c00146{font-size:72.000000px;}
.fsb_c00146{font-size:74.880000px;}
.fs1_c00146{font-size:77.760000px;}
.fs10_c00146{font-size:83.520000px;}
.y0_c00146{bottom:0.000000px;}
.y84_c00146{bottom:40.320000px;}
.y85_c00146{bottom:41.040000px;}
.y80_c00146{bottom:42.480000px;}
.y7f_c00146{bottom:43.200000px;}
.y66_c00146{bottom:43.920000px;}
.y82_c00146{bottom:82.800000px;}
.y81_c00146{bottom:83.520000px;}
.y83_c00146{bottom:84.240000px;}
.y65_c00146{bottom:84.960000px;}
.y63_c00146{bottom:85.680000px;}
.y62_c00146{bottom:87.840000px;}
.y64_c00146{bottom:88.560000px;}
.y61_c00146{bottom:90.720000px;}
.y7e_c00146{bottom:126.000000px;}
.y7d_c00146{bottom:126.720000px;}
.y60_c00146{bottom:128.160000px;}
.y5f_c00146{bottom:133.920000px;}
.y7b_c00146{bottom:169.200000px;}
.y7c_c00146{bottom:169.920000px;}
.y5e_c00146{bottom:172.080000px;}
.y5d_c00146{bottom:177.120000px;}
.y79_c00146{bottom:212.400000px;}
.y78_c00146{bottom:213.120000px;}
.y5c_c00146{bottom:213.840000px;}
.y7a_c00146{bottom:214.560000px;}
.y5b_c00146{bottom:218.160000px;}
.y59_c00146{bottom:218.880000px;}
.y5a_c00146{bottom:219.600000px;}
.y76_c00146{bottom:256.320000px;}
.y75_c00146{bottom:257.040000px;}
.y58_c00146{bottom:257.760000px;}
.y77_c00146{bottom:258.480000px;}
.y57_c00146{bottom:262.800000px;}
.y72_c00146{bottom:298.800000px;}
.y56_c00146{bottom:300.240000px;}
.y74_c00146{bottom:300.960000px;}
.y73_c00146{bottom:302.400000px;}
.y55_c00146{bottom:305.280000px;}
.y54_c00146{bottom:342.720000px;}
.y52_c00146{bottom:343.440000px;}
.y70_c00146{bottom:344.160000px;}
.y71_c00146{bottom:344.880000px;}
.y53_c00146{bottom:346.320000px;}
.y51_c00146{bottom:347.760000px;}
.y50_c00146{bottom:385.920000px;}
.y6e_c00146{bottom:386.640000px;}
.y4e_c00146{bottom:387.360000px;}
.y6f_c00146{bottom:388.080000px;}
.y4f_c00146{bottom:389.520000px;}
.y4d_c00146{bottom:390.240000px;}
.y6d_c00146{bottom:427.680000px;}
.y4a_c00146{bottom:429.120000px;}
.y6c_c00146{bottom:429.840000px;}
.y4b_c00146{bottom:430.560000px;}
.y49_c00146{bottom:431.280000px;}
.y4c_c00146{bottom:432.000000px;}
.y48_c00146{bottom:432.720000px;}
.y47_c00146{bottom:472.320000px;}
.y6a_c00146{bottom:473.040000px;}
.y6b_c00146{bottom:473.760000px;}
.y46_c00146{bottom:475.920000px;}
.y45_c00146{bottom:514.080000px;}
.y68_c00146{bottom:514.800000px;}
.y43_c00146{bottom:515.520000px;}
.y67_c00146{bottom:516.240000px;}
.y69_c00146{bottom:516.960000px;}
.y42_c00146{bottom:517.680000px;}
.y44_c00146{bottom:518.400000px;}
.y41_c00146{bottom:558.000000px;}
.y3d_c00146{bottom:590.400000px;}
.y3e_c00146{bottom:591.120000px;}
.y40_c00146{bottom:591.840000px;}
.y3f_c00146{bottom:593.280000px;}
.y3c_c00146{bottom:594.000000px;}
.y36_c00146{bottom:632.160000px;}
.y38_c00146{bottom:632.880000px;}
.y39_c00146{bottom:634.320000px;}
.y3a_c00146{bottom:635.040000px;}
.y35_c00146{bottom:635.760000px;}
.y3b_c00146{bottom:636.480000px;}
.y37_c00146{bottom:637.200000px;}
.y32_c00146{bottom:675.360000px;}
.y33_c00146{bottom:676.800000px;}
.y31_c00146{bottom:677.520000px;}
.y34_c00146{bottom:679.680000px;}
.y2f_c00146{bottom:718.560000px;}
.y2e_c00146{bottom:720.000000px;}
.y2d_c00146{bottom:720.720000px;}
.y30_c00146{bottom:721.440000px;}
.y27_c00146{bottom:760.320000px;}
.y2c_c00146{bottom:761.760000px;}
.y29_c00146{bottom:762.480000px;}
.y2b_c00146{bottom:763.200000px;}
.y26_c00146{bottom:763.920000px;}
.y28_c00146{bottom:764.640000px;}
.y2a_c00146{bottom:766.080000px;}
.y20_c00146{bottom:804.240000px;}
.y23_c00146{bottom:804.960000px;}
.y1f_c00146{bottom:805.680000px;}
.y25_c00146{bottom:806.400000px;}
.y21_c00146{bottom:807.840000px;}
.y22_c00146{bottom:808.560000px;}
.y24_c00146{bottom:810.000000px;}
.y1a_c00146{bottom:846.720000px;}
.y1c_c00146{bottom:847.440000px;}
.y19_c00146{bottom:848.160000px;}
.y1e_c00146{bottom:849.600000px;}
.y1d_c00146{bottom:850.320000px;}
.y1b_c00146{bottom:851.040000px;}
.yf_c00146{bottom:890.640000px;}
.y10_c00146{bottom:893.520000px;}
.ya_c00146{bottom:923.040000px;}
.y9_c00146{bottom:923.760000px;}
.y17_c00146{bottom:924.480000px;}
.ye_c00146{bottom:925.200000px;}
.yb_c00146{bottom:925.920000px;}
.yc_c00146{bottom:926.640000px;}
.yd_c00146{bottom:927.360000px;}
.y18_c00146{bottom:928.080000px;}
.y6_c00146{bottom:964.800000px;}
.y5_c00146{bottom:966.960000px;}
.y8_c00146{bottom:968.400000px;}
.y14_c00146{bottom:970.560000px;}
.y16_c00146{bottom:971.280000px;}
.y15_c00146{bottom:972.000000px;}
.y2_c00146{bottom:1007.280000px;}
.y1_c00146{bottom:1008.720000px;}
.y4_c00146{bottom:1009.440000px;}
.y3_c00146{bottom:1010.880000px;}
.y7_c00146{bottom:1012.320000px;}
.y12_c00146{bottom:1013.040000px;}
.y13_c00146{bottom:1013.760000px;}
.y11_c00146{bottom:1096.560000px;}
.h9_c00146{height:31.100625px;}
.hf_c00146{height:33.692344px;}
.h11_c00146{height:36.284062px;}
.h4_c00146{height:38.875781px;}
.h10_c00146{height:41.467500px;}
.hb_c00146{height:44.059219px;}
.h8_c00146{height:46.650937px;}
.hc_c00146{height:49.242656px;}
.ha_c00146{height:51.834375px;}
.h2_c00146{height:54.426094px;}
.h7_c00146{height:57.017812px;}
.h6_c00146{height:59.609531px;}
.he_c00146{height:62.201250px;}
.h5_c00146{height:64.792969px;}
.hd_c00146{height:67.384687px;}
.h3_c00146{height:69.976406px;}
.h12_c00146{height:75.159844px;}
.h0_c00146{height:1153.440000px;}
.h1_c00146{height:1153.500000px;}
.w1_c00146{width:786.000000px;}
.w0_c00146{width:786.240000px;}
.x0_c00146{left:0.000000px;}
.x2b_c00146{left:66.960000px;}
.x21_c00146{left:68.400900px;}
.x1_c00146{left:69.840000px;}
.x27_c00146{left:151.200000px;}
.x5_c00146{left:152.640000px;}
.x2_c00146{left:154.080000px;}
.x15_c00146{left:164.160000px;}
.x31_c00146{left:194.400000px;}
.xd_c00146{left:205.920000px;}
.x30_c00146{left:216.000000px;}
.x28_c00146{left:226.800000px;}
.x7_c00146{left:237.600000px;}
.x26_c00146{left:239.040000px;}
.x2e_c00146{left:246.960000px;}
.x1c_c00146{left:248.400000px;}
.x2f_c00146{left:258.480000px;}
.x29_c00146{left:270.000000px;}
.x19_c00146{left:280.800000px;}
.x22_c00146{left:283.680000px;}
.x16_c00146{left:291.600000px;}
.x3_c00146{left:293.760000px;}
.x8_c00146{left:303.120000px;}
.x2a_c00146{left:312.480000px;}
.x23_c00146{left:323.280000px;}
.x1a_c00146{left:333.360000px;}
.x4_c00146{left:335.520000px;}
.x24_c00146{left:344.880000px;}
.x9_c00146{left:357.120000px;}
.x32_c00146{left:365.760000px;}
.x2c_c00146{left:375.840000px;}
.xa_c00146{left:378.000000px;}
.x1b_c00146{left:379.440000px;}
.x1d_c00146{left:399.600000px;}
.x33_c00146{left:408.960000px;}
.x17_c00146{left:420.480000px;}
.x1e_c00146{left:453.600000px;}
.xb_c00146{left:465.120000px;}
.x2d_c00146{left:475.200000px;}
.xc_c00146{left:487.440000px;}
.x3c_c00146{left:550.080000px;}
.x25_c00146{left:551.520000px;}
.x6_c00146{left:552.960000px;}
.x35_c00146{left:563.040000px;}
.x37_c00146{left:583.200000px;}
.x3a_c00146{left:604.800000px;}
.x18_c00146{left:606.960000px;}
.x36_c00146{left:637.920000px;}
.xf_c00146{left:639.360000px;}
.x14_c00146{left:641.520000px;}
.x3d_c00146{left:669.600000px;}
.x3b_c00146{left:671.040000px;}
.x1f_c00146{left:672.480000px;}
.x12_c00146{left:673.920000px;}
.xe_c00146{left:677.520000px;}
.x10_c00146{left:684.720000px;}
.x38_c00146{left:704.880000px;}
.x20_c00146{left:706.320000px;}
.x34_c00146{left:714.960000px;}
.x11_c00146{left:716.400000px;}
.x39_c00146{left:735.840000px;}
.x13_c00146{left:737.280000px;}
@media print{
.v1_c00146{vertical-align:-2.560000pt;}
.v0_c00146{vertical-align:0.000000pt;}
.ls0_c00146{letter-spacing:0.000000pt;}
.ws1_c00146{word-spacing:0.000000pt;}
.ws0_c00146{word-spacing:14.807467pt;}
.fs7_c00146{font-size:30.720000pt;}
.fsd_c00146{font-size:33.280000pt;}
.fsf_c00146{font-size:35.840000pt;}
.fs2_c00146{font-size:38.400000pt;}
.fse_c00146{font-size:40.960000pt;}
.fs9_c00146{font-size:43.520000pt;}
.fs6_c00146{font-size:46.080000pt;}
.fsa_c00146{font-size:48.640000pt;}
.fs8_c00146{font-size:51.200000pt;}
.fs0_c00146{font-size:53.760000pt;}
.fs5_c00146{font-size:56.320000pt;}
.fs4_c00146{font-size:58.880000pt;}
.fsc_c00146{font-size:61.440000pt;}
.fs3_c00146{font-size:64.000000pt;}
.fsb_c00146{font-size:66.560000pt;}
.fs1_c00146{font-size:69.120000pt;}
.fs10_c00146{font-size:74.240000pt;}
.y0_c00146{bottom:0.000000pt;}
.y84_c00146{bottom:35.840000pt;}
.y85_c00146{bottom:36.480000pt;}
.y80_c00146{bottom:37.760000pt;}
.y7f_c00146{bottom:38.400000pt;}
.y66_c00146{bottom:39.040000pt;}
.y82_c00146{bottom:73.600000pt;}
.y81_c00146{bottom:74.240000pt;}
.y83_c00146{bottom:74.880000pt;}
.y65_c00146{bottom:75.520000pt;}
.y63_c00146{bottom:76.160000pt;}
.y62_c00146{bottom:78.080000pt;}
.y64_c00146{bottom:78.720000pt;}
.y61_c00146{bottom:80.640000pt;}
.y7e_c00146{bottom:112.000000pt;}
.y7d_c00146{bottom:112.640000pt;}
.y60_c00146{bottom:113.920000pt;}
.y5f_c00146{bottom:119.040000pt;}
.y7b_c00146{bottom:150.400000pt;}
.y7c_c00146{bottom:151.040000pt;}
.y5e_c00146{bottom:152.960000pt;}
.y5d_c00146{bottom:157.440000pt;}
.y79_c00146{bottom:188.800000pt;}
.y78_c00146{bottom:189.440000pt;}
.y5c_c00146{bottom:190.080000pt;}
.y7a_c00146{bottom:190.720000pt;}
.y5b_c00146{bottom:193.920000pt;}
.y59_c00146{bottom:194.560000pt;}
.y5a_c00146{bottom:195.200000pt;}
.y76_c00146{bottom:227.840000pt;}
.y75_c00146{bottom:228.480000pt;}
.y58_c00146{bottom:229.120000pt;}
.y77_c00146{bottom:229.760000pt;}
.y57_c00146{bottom:233.600000pt;}
.y72_c00146{bottom:265.600000pt;}
.y56_c00146{bottom:266.880000pt;}
.y74_c00146{bottom:267.520000pt;}
.y73_c00146{bottom:268.800000pt;}
.y55_c00146{bottom:271.360000pt;}
.y54_c00146{bottom:304.640000pt;}
.y52_c00146{bottom:305.280000pt;}
.y70_c00146{bottom:305.920000pt;}
.y71_c00146{bottom:306.560000pt;}
.y53_c00146{bottom:307.840000pt;}
.y51_c00146{bottom:309.120000pt;}
.y50_c00146{bottom:343.040000pt;}
.y6e_c00146{bottom:343.680000pt;}
.y4e_c00146{bottom:344.320000pt;}
.y6f_c00146{bottom:344.960000pt;}
.y4f_c00146{bottom:346.240000pt;}
.y4d_c00146{bottom:346.880000pt;}
.y6d_c00146{bottom:380.160000pt;}
.y4a_c00146{bottom:381.440000pt;}
.y6c_c00146{bottom:382.080000pt;}
.y4b_c00146{bottom:382.720000pt;}
.y49_c00146{bottom:383.360000pt;}
.y4c_c00146{bottom:384.000000pt;}
.y48_c00146{bottom:384.640000pt;}
.y47_c00146{bottom:419.840000pt;}
.y6a_c00146{bottom:420.480000pt;}
.y6b_c00146{bottom:421.120000pt;}
.y46_c00146{bottom:423.040000pt;}
.y45_c00146{bottom:456.960000pt;}
.y68_c00146{bottom:457.600000pt;}
.y43_c00146{bottom:458.240000pt;}
.y67_c00146{bottom:458.880000pt;}
.y69_c00146{bottom:459.520000pt;}
.y42_c00146{bottom:460.160000pt;}
.y44_c00146{bottom:460.800000pt;}
.y41_c00146{bottom:496.000000pt;}
.y3d_c00146{bottom:524.800000pt;}
.y3e_c00146{bottom:525.440000pt;}
.y40_c00146{bottom:526.080000pt;}
.y3f_c00146{bottom:527.360000pt;}
.y3c_c00146{bottom:528.000000pt;}
.y36_c00146{bottom:561.920000pt;}
.y38_c00146{bottom:562.560000pt;}
.y39_c00146{bottom:563.840000pt;}
.y3a_c00146{bottom:564.480000pt;}
.y35_c00146{bottom:565.120000pt;}
.y3b_c00146{bottom:565.760000pt;}
.y37_c00146{bottom:566.400000pt;}
.y32_c00146{bottom:600.320000pt;}
.y33_c00146{bottom:601.600000pt;}
.y31_c00146{bottom:602.240000pt;}
.y34_c00146{bottom:604.160000pt;}
.y2f_c00146{bottom:638.720000pt;}
.y2e_c00146{bottom:640.000000pt;}
.y2d_c00146{bottom:640.640000pt;}
.y30_c00146{bottom:641.280000pt;}
.y27_c00146{bottom:675.840000pt;}
.y2c_c00146{bottom:677.120000pt;}
.y29_c00146{bottom:677.760000pt;}
.y2b_c00146{bottom:678.400000pt;}
.y26_c00146{bottom:679.040000pt;}
.y28_c00146{bottom:679.680000pt;}
.y2a_c00146{bottom:680.960000pt;}
.y20_c00146{bottom:714.880000pt;}
.y23_c00146{bottom:715.520000pt;}
.y1f_c00146{bottom:716.160000pt;}
.y25_c00146{bottom:716.800000pt;}
.y21_c00146{bottom:718.080000pt;}
.y22_c00146{bottom:718.720000pt;}
.y24_c00146{bottom:720.000000pt;}
.y1a_c00146{bottom:752.640000pt;}
.y1c_c00146{bottom:753.280000pt;}
.y19_c00146{bottom:753.920000pt;}
.y1e_c00146{bottom:755.200000pt;}
.y1d_c00146{bottom:755.840000pt;}
.y1b_c00146{bottom:756.480000pt;}
.yf_c00146{bottom:791.680000pt;}
.y10_c00146{bottom:794.240000pt;}
.ya_c00146{bottom:820.480000pt;}
.y9_c00146{bottom:821.120000pt;}
.y17_c00146{bottom:821.760000pt;}
.ye_c00146{bottom:822.400000pt;}
.yb_c00146{bottom:823.040000pt;}
.yc_c00146{bottom:823.680000pt;}
.yd_c00146{bottom:824.320000pt;}
.y18_c00146{bottom:824.960000pt;}
.y6_c00146{bottom:857.600000pt;}
.y5_c00146{bottom:859.520000pt;}
.y8_c00146{bottom:860.800000pt;}
.y14_c00146{bottom:862.720000pt;}
.y16_c00146{bottom:863.360000pt;}
.y15_c00146{bottom:864.000000pt;}
.y2_c00146{bottom:895.360000pt;}
.y1_c00146{bottom:896.640000pt;}
.y4_c00146{bottom:897.280000pt;}
.y3_c00146{bottom:898.560000pt;}
.y7_c00146{bottom:899.840000pt;}
.y12_c00146{bottom:900.480000pt;}
.y13_c00146{bottom:901.120000pt;}
.y11_c00146{bottom:974.720000pt;}
.h9_c00146{height:27.645000pt;}
.hf_c00146{height:29.948750pt;}
.h11_c00146{height:32.252500pt;}
.h4_c00146{height:34.556250pt;}
.h10_c00146{height:36.860000pt;}
.hb_c00146{height:39.163750pt;}
.h8_c00146{height:41.467500pt;}
.hc_c00146{height:43.771250pt;}
.ha_c00146{height:46.075000pt;}
.h2_c00146{height:48.378750pt;}
.h7_c00146{height:50.682500pt;}
.h6_c00146{height:52.986250pt;}
.he_c00146{height:55.290000pt;}
.h5_c00146{height:57.593750pt;}
.hd_c00146{height:59.897500pt;}
.h3_c00146{height:62.201250pt;}
.h12_c00146{height:66.808750pt;}
.h0_c00146{height:1025.280000pt;}
.h1_c00146{height:1025.333333pt;}
.w1_c00146{width:698.666667pt;}
.w0_c00146{width:698.880000pt;}
.x0_c00146{left:0.000000pt;}
.x2b_c00146{left:59.520000pt;}
.x21_c00146{left:60.800800pt;}
.x1_c00146{left:62.080000pt;}
.x27_c00146{left:134.400000pt;}
.x5_c00146{left:135.680000pt;}
.x2_c00146{left:136.960000pt;}
.x15_c00146{left:145.920000pt;}
.x31_c00146{left:172.800000pt;}
.xd_c00146{left:183.040000pt;}
.x30_c00146{left:192.000000pt;}
.x28_c00146{left:201.600000pt;}
.x7_c00146{left:211.200000pt;}
.x26_c00146{left:212.480000pt;}
.x2e_c00146{left:219.520000pt;}
.x1c_c00146{left:220.800000pt;}
.x2f_c00146{left:229.760000pt;}
.x29_c00146{left:240.000000pt;}
.x19_c00146{left:249.600000pt;}
.x22_c00146{left:252.160000pt;}
.x16_c00146{left:259.200000pt;}
.x3_c00146{left:261.120000pt;}
.x8_c00146{left:269.440000pt;}
.x2a_c00146{left:277.760000pt;}
.x23_c00146{left:287.360000pt;}
.x1a_c00146{left:296.320000pt;}
.x4_c00146{left:298.240000pt;}
.x24_c00146{left:306.560000pt;}
.x9_c00146{left:317.440000pt;}
.x32_c00146{left:325.120000pt;}
.x2c_c00146{left:334.080000pt;}
.xa_c00146{left:336.000000pt;}
.x1b_c00146{left:337.280000pt;}
.x1d_c00146{left:355.200000pt;}
.x33_c00146{left:363.520000pt;}
.x17_c00146{left:373.760000pt;}
.x1e_c00146{left:403.200000pt;}
.xb_c00146{left:413.440000pt;}
.x2d_c00146{left:422.400000pt;}
.xc_c00146{left:433.280000pt;}
.x3c_c00146{left:488.960000pt;}
.x25_c00146{left:490.240000pt;}
.x6_c00146{left:491.520000pt;}
.x35_c00146{left:500.480000pt;}
.x37_c00146{left:518.400000pt;}
.x3a_c00146{left:537.600000pt;}
.x18_c00146{left:539.520000pt;}
.x36_c00146{left:567.040000pt;}
.xf_c00146{left:568.320000pt;}
.x14_c00146{left:570.240000pt;}
.x3d_c00146{left:595.200000pt;}
.x3b_c00146{left:596.480000pt;}
.x1f_c00146{left:597.760000pt;}
.x12_c00146{left:599.040000pt;}
.xe_c00146{left:602.240000pt;}
.x10_c00146{left:608.640000pt;}
.x38_c00146{left:626.560000pt;}
.x20_c00146{left:627.840000pt;}
.x34_c00146{left:635.520000pt;}
.x11_c00146{left:636.800000pt;}
.x39_c00146{left:654.080000pt;}
.x13_c00146{left:655.360000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_451554f030da97e20a7fa351.woff2')format("woff");}.ff1_c00147{font-family:ff1_c00147;line-height:1.109863;font-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_c00147{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m15_c00147{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m19_c00147{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m5_c00147{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_c00147{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00147{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m36_c00147{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m23_c00147{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.ma_c00147{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.me_c00147{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m12_c00147{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m10_c00147{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m2_c00147{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m3_c00147{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00147{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m24_c00147{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m13_c00147{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m22_c00147{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m18_c00147{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00147{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mf_c00147{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00147{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mc_c00147{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00147{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m14_c00147{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m4_c00147{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m20_c00147{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mb_c00147{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m9_c00147{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00147{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m27_c00147{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m1_c00147{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m26_c00147{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m29_c00147{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m0_c00147{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00147{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00147{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m55_c00147{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00147{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);}
.m3f_c00147{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_c00147{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);}
.m21_c00147{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m7_c00147{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);}
.m50_c00147{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);}
.m56_c00147{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00147{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m28_c00147{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);}
.m51_c00147{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m41_c00147{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);}
.m25_c00147{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);}
.m52_c00147{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m8_c00147{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m48_c00147{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00147{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00147{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);}
.m37_c00147{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m33_c00147{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00147{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m34_c00147{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m30_c00147{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);}
.m46_c00147{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00147{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m53_c00147{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m32_c00147{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m11_c00147{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00147{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m45_c00147{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);}
.m49_c00147{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m40_c00147{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);}
.m47_c00147{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m44_c00147{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00147{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m54_c00147{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m43_c00147{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00147{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);}
.m42_c00147{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00147{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m16_c00147{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m39_c00147{transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00147{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);}
.m38_c00147{transform:matrix(0.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680000,0.000000,0.000000,0.250000,0,0);}
.m6_c00147{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m31_c00147{transform:matrix(0.805000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.805000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.805000,0.000000,0.000000,0.250000,0,0);}
.md_c00147{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00147{transform:matrix(1.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.167500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00147{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.m35_c00147{transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);}
.v2_c00147{vertical-align:-5.760000px;}
.v0_c00147{vertical-align:0.000000px;}
.v1_c00147{vertical-align:2.880000px;}
.v3_c00147{vertical-align:8.640000px;}
.ls0_c00147{letter-spacing:0.000000px;}
.sc__c00147{text-shadow:none;}
.sc0_c00147{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00147{-webkit-text-stroke:0px transparent;}
.sc0_c00147{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00147{word-spacing:0.000000px;}
.ws2_c00147{word-spacing:3.612240px;}
.ws0_c00147{word-spacing:10.749600px;}
.ws3_c00147{word-spacing:20.652000px;}
.ws1_c00147{word-spacing:179.499600px;}
.fc0_c00147{color:transparent;}
.fsf_c00147{font-size:11.520000px;}
.fsd_c00147{font-size:17.280000px;}
.fse_c00147{font-size:23.040000px;}
.fsb_c00147{font-size:34.560000px;}
.fs12_c00147{font-size:37.440000px;}
.fs11_c00147{font-size:40.320000px;}
.fs10_c00147{font-size:43.200000px;}
.fsa_c00147{font-size:46.080000px;}
.fs7_c00147{font-size:48.960000px;}
.fs4_c00147{font-size:51.840000px;}
.fs3_c00147{font-size:54.720000px;}
.fs9_c00147{font-size:57.600000px;}
.fs1_c00147{font-size:60.480000px;}
.fs8_c00147{font-size:63.360000px;}
.fsc_c00147{font-size:66.240000px;}
.fs6_c00147{font-size:69.120000px;}
.fs2_c00147{font-size:72.000000px;}
.fs0_c00147{font-size:74.880000px;}
.fs5_c00147{font-size:77.760000px;}
.y0_c00147{bottom:0.000000px;}
.y7c_c00147{bottom:100.800000px;}
.y79_c00147{bottom:102.240000px;}
.y78_c00147{bottom:102.960000px;}
.y7b_c00147{bottom:103.680000px;}
.y7a_c00147{bottom:124.560000px;}
.y77_c00147{bottom:126.000000px;}
.y76_c00147{bottom:174.960000px;}
.y75_c00147{bottom:178.560000px;}
.y74_c00147{bottom:179.280000px;}
.y73_c00147{bottom:228.960000px;}
.y72_c00147{bottom:229.680000px;}
.y70_c00147{bottom:231.120000px;}
.y6f_c00147{bottom:231.840000px;}
.y71_c00147{bottom:232.560000px;}
.y6e_c00147{bottom:270.000000px;}
.y69_c00147{bottom:271.440000px;}
.y6d_c00147{bottom:272.160000px;}
.y6b_c00147{bottom:272.880000px;}
.y6c_c00147{bottom:274.320000px;}
.y6a_c00147{bottom:275.040000px;}
.y68_c00147{bottom:313.920000px;}
.y65_c00147{bottom:314.640000px;}
.y67_c00147{bottom:315.360000px;}
.y66_c00147{bottom:316.800000px;}
.y64_c00147{bottom:317.520000px;}
.y63_c00147{bottom:318.240000px;}
.y62_c00147{bottom:357.120000px;}
.y61_c00147{bottom:357.840000px;}
.y60_c00147{bottom:359.280000px;}
.y5f_c00147{bottom:360.000000px;}
.y5e_c00147{bottom:360.720000px;}
.y5b_c00147{bottom:399.600000px;}
.y5d_c00147{bottom:400.320000px;}
.y5a_c00147{bottom:402.480000px;}
.y5c_c00147{bottom:403.200000px;}
.y57_c00147{bottom:465.120000px;}
.y59_c00147{bottom:465.840000px;}
.y58_c00147{bottom:467.280000px;}
.y50_c00147{bottom:473.760000px;}
.y4d_c00147{bottom:475.200000px;}
.y4e_c00147{bottom:475.920000px;}
.y4f_c00147{bottom:480.240000px;}
.y52_c00147{bottom:485.280000px;}
.y51_c00147{bottom:487.440000px;}
.y54_c00147{bottom:488.160000px;}
.y53_c00147{bottom:488.880000px;}
.y55_c00147{bottom:489.600000px;}
.y56_c00147{bottom:490.320000px;}
.y4b_c00147{bottom:519.120000px;}
.y4c_c00147{bottom:520.560000px;}
.y4a_c00147{bottom:529.920000px;}
.y48_c00147{bottom:532.080000px;}
.y49_c00147{bottom:533.520000px;}
.y46_c00147{bottom:540.000000px;}
.y45_c00147{bottom:549.360000px;}
.y47_c00147{bottom:550.080000px;}
.y44_c00147{bottom:551.520000px;}
.y43_c00147{bottom:562.320000px;}
.y41_c00147{bottom:564.480000px;}
.y42_c00147{bottom:567.360000px;}
.y3e_c00147{bottom:570.960000px;}
.y3d_c00147{bottom:573.840000px;}
.y40_c00147{bottom:574.560000px;}
.y3c_c00147{bottom:581.760000px;}
.y3f_c00147{bottom:583.200000px;}
.y3b_c00147{bottom:584.640000px;}
.y36_c00147{bottom:613.440000px;}
.y33_c00147{bottom:614.880000px;}
.y34_c00147{bottom:615.600000px;}
.y35_c00147{bottom:616.320000px;}
.y37_c00147{bottom:617.040000px;}
.y39_c00147{bottom:617.760000px;}
.y3a_c00147{bottom:618.480000px;}
.y38_c00147{bottom:619.200000px;}
.y32_c00147{bottom:655.920000px;}
.y31_c00147{bottom:657.360000px;}
.y2c_c00147{bottom:707.040000px;}
.y2b_c00147{bottom:709.200000px;}
.y2e_c00147{bottom:710.640000px;}
.y2d_c00147{bottom:712.080000px;}
.y2f_c00147{bottom:712.800000px;}
.y30_c00147{bottom:715.680000px;}
.y27_c00147{bottom:749.520000px;}
.y26_c00147{bottom:751.680000px;}
.y25_c00147{bottom:752.400000px;}
.y28_c00147{bottom:754.560000px;}
.y29_c00147{bottom:755.280000px;}
.y2a_c00147{bottom:757.440000px;}
.y1f_c00147{bottom:792.000000px;}
.y1e_c00147{bottom:794.160000px;}
.y20_c00147{bottom:794.880000px;}
.y21_c00147{bottom:797.040000px;}
.y23_c00147{bottom:797.760000px;}
.y22_c00147{bottom:798.480000px;}
.y24_c00147{bottom:800.640000px;}
.y19_c00147{bottom:835.920000px;}
.y1a_c00147{bottom:836.640000px;}
.y1b_c00147{bottom:840.240000px;}
.y1c_c00147{bottom:840.960000px;}
.y1d_c00147{bottom:843.840000px;}
.y14_c00147{bottom:878.400000px;}
.y12_c00147{bottom:880.560000px;}
.y13_c00147{bottom:881.280000px;}
.y15_c00147{bottom:882.720000px;}
.y16_c00147{bottom:883.440000px;}
.y17_c00147{bottom:886.320000px;}
.y18_c00147{bottom:887.040000px;}
.yf_c00147{bottom:920.160000px;}
.ye_c00147{bottom:920.880000px;}
.y10_c00147{bottom:928.080000px;}
.y11_c00147{bottom:928.800000px;}
.ya_c00147{bottom:964.080000px;}
.y7_c00147{bottom:964.800000px;}
.y8_c00147{bottom:966.240000px;}
.y9_c00147{bottom:967.680000px;}
.yc_c00147{bottom:969.120000px;}
.yb_c00147{bottom:969.840000px;}
.yd_c00147{bottom:972.000000px;}
.y2_c00147{bottom:1006.560000px;}
.y3_c00147{bottom:1012.320000px;}
.y4_c00147{bottom:1013.040000px;}
.y5_c00147{bottom:1013.760000px;}
.y6_c00147{bottom:1015.200000px;}
.y1_c00147{bottom:1110.960000px;}
.h14_c00147{height:10.366875px;}
.h12_c00147{height:15.550313px;}
.h13_c00147{height:20.733750px;}
.h10_c00147{height:31.100625px;}
.h17_c00147{height:33.692344px;}
.h16_c00147{height:36.284062px;}
.h15_c00147{height:38.875781px;}
.hd_c00147{height:41.467500px;}
.ha_c00147{height:44.059219px;}
.h7_c00147{height:46.650937px;}
.h6_c00147{height:49.242656px;}
.hc_c00147{height:51.834375px;}
.h5_c00147{height:52.122656px;}
.h3_c00147{height:54.426094px;}
.hb_c00147{height:57.017812px;}
.h11_c00147{height:59.609531px;}
.hf_c00147{height:60.474375px;}
.h9_c00147{height:62.201250px;}
.he_c00147{height:64.216406px;}
.h4_c00147{height:64.792969px;}
.h2_c00147{height:67.384687px;}
.h8_c00147{height:69.976406px;}
.h1_c00147{height:1149.000000px;}
.h0_c00147{height:1149.120000px;}
.w0_c00147{width:779.760000px;}
.w1_c00147{width:780.000000px;}
.x0_c00147{left:0.000000px;}
.x2_c00147{left:49.680000px;}
.x1a_c00147{left:51.120000px;}
.x4e_c00147{left:52.560000px;}
.x1b_c00147{left:69.840000px;}
.x23_c00147{left:71.280000px;}
.x43_c00147{left:82.080000px;}
.x2f_c00147{left:92.880000px;}
.x18_c00147{left:101.520000px;}
.x24_c00147{left:103.680000px;}
.x55_c00147{left:115.200000px;}
.x54_c00147{left:116.640000px;}
.x3f_c00147{left:125.280000px;}
.x3_c00147{left:133.920000px;}
.x14_c00147{left:135.360000px;}
.x25_c00147{left:146.160000px;}
.x30_c00147{left:157.680000px;}
.x1c_c00147{left:167.040000px;}
.x49_c00147{left:169.200000px;}
.x2b_c00147{left:177.120000px;}
.x13_c00147{left:178.560000px;}
.x56_c00147{left:180.720000px;}
.x1d_c00147{left:188.640000px;}
.x51_c00147{left:190.800000px;}
.x31_c00147{left:198.720000px;}
.xd_c00147{left:208.800000px;}
.x8_c00147{left:218.160000px;}
.xf_c00147{left:220.320000px;}
.x4f_c00147{left:221.760000px;}
.x1e_c00147{left:232.560000px;}
.x44_c00147{left:241.920000px;}
.x4a_c00147{left:244.080000px;}
.xe_c00147{left:252.720000px;}
.x32_c00147{left:254.160000px;}
.x9_c00147{left:262.080000px;}
.x39_c00147{left:275.040000px;}
.x19_c00147{left:283.680000px;}
.x50_c00147{left:285.120000px;}
.x33_c00147{left:295.200000px;}
.x1f_c00147{left:296.640000px;}
.x10_c00147{left:306.000000px;}
.x57_c00147{left:308.880000px;}
.x15_c00147{left:315.360000px;}
.x40_c00147{left:317.520000px;}
.x4b_c00147{left:318.960000px;}
.x58_c00147{left:320.400000px;}
.x2c_c00147{left:328.320000px;}
.x20_c00147{left:338.400000px;}
.x52_c00147{left:340.560000px;}
.x11_c00147{left:348.480000px;}
.x3b_c00147{left:350.640000px;}
.x16_c00147{left:360.720000px;}
.x2e_c00147{left:362.160000px;}
.x53_c00147{left:372.960000px;}
.x3c_c00147{left:383.040000px;}
.x59_c00147{left:384.480000px;}
.x12_c00147{left:391.680000px;}
.x41_c00147{left:393.120000px;}
.x34_c00147{left:405.360000px;}
.x26_c00147{left:416.160000px;}
.x21_c00147{left:425.520000px;}
.x3d_c00147{left:437.040000px;}
.x27_c00147{left:447.120000px;}
.x4c_c00147{left:449.280000px;}
.x2d_c00147{left:457.920000px;}
.x45_c00147{left:459.360000px;}
.x35_c00147{left:469.440000px;}
.x22_c00147{left:480.240000px;}
.x28_c00147{left:481.680000px;}
.x46_c00147{left:492.480000px;}
.x29_c00147{left:523.440000px;}
.x4_c00147{left:532.800000px;}
.x17_c00147{left:534.240000px;}
.x3a_c00147{left:535.680000px;}
.x4d_c00147{left:557.280000px;}
.x42_c00147{left:566.640000px;}
.x3e_c00147{left:568.080000px;}
.xa_c00147{left:588.240000px;}
.x36_c00147{left:600.480000px;}
.x2a_c00147{left:611.280000px;}
.x5_c00147{left:620.640000px;}
.x47_c00147{left:624.240000px;}
.xc_c00147{left:654.480000px;}
.x48_c00147{left:667.440000px;}
.x1_c00147{left:673.920000px;}
.x37_c00147{left:677.520000px;}
.xb_c00147{left:686.880000px;}
.x6_c00147{left:697.680000px;}
.x7_c00147{left:717.120000px;}
.x38_c00147{left:743.040000px;}
@media print{
.v2_c00147{vertical-align:-5.120000pt;}
.v0_c00147{vertical-align:0.000000pt;}
.v1_c00147{vertical-align:2.560000pt;}
.v3_c00147{vertical-align:7.680000pt;}
.ls0_c00147{letter-spacing:0.000000pt;}
.ws4_c00147{word-spacing:0.000000pt;}
.ws2_c00147{word-spacing:3.210880pt;}
.ws0_c00147{word-spacing:9.555200pt;}
.ws3_c00147{word-spacing:18.357333pt;}
.ws1_c00147{word-spacing:159.555200pt;}
.fsf_c00147{font-size:10.240000pt;}
.fsd_c00147{font-size:15.360000pt;}
.fse_c00147{font-size:20.480000pt;}
.fsb_c00147{font-size:30.720000pt;}
.fs12_c00147{font-size:33.280000pt;}
.fs11_c00147{font-size:35.840000pt;}
.fs10_c00147{font-size:38.400000pt;}
.fsa_c00147{font-size:40.960000pt;}
.fs7_c00147{font-size:43.520000pt;}
.fs4_c00147{font-size:46.080000pt;}
.fs3_c00147{font-size:48.640000pt;}
.fs9_c00147{font-size:51.200000pt;}
.fs1_c00147{font-size:53.760000pt;}
.fs8_c00147{font-size:56.320000pt;}
.fsc_c00147{font-size:58.880000pt;}
.fs6_c00147{font-size:61.440000pt;}
.fs2_c00147{font-size:64.000000pt;}
.fs0_c00147{font-size:66.560000pt;}
.fs5_c00147{font-size:69.120000pt;}
.y0_c00147{bottom:0.000000pt;}
.y7c_c00147{bottom:89.600000pt;}
.y79_c00147{bottom:90.880000pt;}
.y78_c00147{bottom:91.520000pt;}
.y7b_c00147{bottom:92.160000pt;}
.y7a_c00147{bottom:110.720000pt;}
.y77_c00147{bottom:112.000000pt;}
.y76_c00147{bottom:155.520000pt;}
.y75_c00147{bottom:158.720000pt;}
.y74_c00147{bottom:159.360000pt;}
.y73_c00147{bottom:203.520000pt;}
.y72_c00147{bottom:204.160000pt;}
.y70_c00147{bottom:205.440000pt;}
.y6f_c00147{bottom:206.080000pt;}
.y71_c00147{bottom:206.720000pt;}
.y6e_c00147{bottom:240.000000pt;}
.y69_c00147{bottom:241.280000pt;}
.y6d_c00147{bottom:241.920000pt;}
.y6b_c00147{bottom:242.560000pt;}
.y6c_c00147{bottom:243.840000pt;}
.y6a_c00147{bottom:244.480000pt;}
.y68_c00147{bottom:279.040000pt;}
.y65_c00147{bottom:279.680000pt;}
.y67_c00147{bottom:280.320000pt;}
.y66_c00147{bottom:281.600000pt;}
.y64_c00147{bottom:282.240000pt;}
.y63_c00147{bottom:282.880000pt;}
.y62_c00147{bottom:317.440000pt;}
.y61_c00147{bottom:318.080000pt;}
.y60_c00147{bottom:319.360000pt;}
.y5f_c00147{bottom:320.000000pt;}
.y5e_c00147{bottom:320.640000pt;}
.y5b_c00147{bottom:355.200000pt;}
.y5d_c00147{bottom:355.840000pt;}
.y5a_c00147{bottom:357.760000pt;}
.y5c_c00147{bottom:358.400000pt;}
.y57_c00147{bottom:413.440000pt;}
.y59_c00147{bottom:414.080000pt;}
.y58_c00147{bottom:415.360000pt;}
.y50_c00147{bottom:421.120000pt;}
.y4d_c00147{bottom:422.400000pt;}
.y4e_c00147{bottom:423.040000pt;}
.y4f_c00147{bottom:426.880000pt;}
.y52_c00147{bottom:431.360000pt;}
.y51_c00147{bottom:433.280000pt;}
.y54_c00147{bottom:433.920000pt;}
.y53_c00147{bottom:434.560000pt;}
.y55_c00147{bottom:435.200000pt;}
.y56_c00147{bottom:435.840000pt;}
.y4b_c00147{bottom:461.440000pt;}
.y4c_c00147{bottom:462.720000pt;}
.y4a_c00147{bottom:471.040000pt;}
.y48_c00147{bottom:472.960000pt;}
.y49_c00147{bottom:474.240000pt;}
.y46_c00147{bottom:480.000000pt;}
.y45_c00147{bottom:488.320000pt;}
.y47_c00147{bottom:488.960000pt;}
.y44_c00147{bottom:490.240000pt;}
.y43_c00147{bottom:499.840000pt;}
.y41_c00147{bottom:501.760000pt;}
.y42_c00147{bottom:504.320000pt;}
.y3e_c00147{bottom:507.520000pt;}
.y3d_c00147{bottom:510.080000pt;}
.y40_c00147{bottom:510.720000pt;}
.y3c_c00147{bottom:517.120000pt;}
.y3f_c00147{bottom:518.400000pt;}
.y3b_c00147{bottom:519.680000pt;}
.y36_c00147{bottom:545.280000pt;}
.y33_c00147{bottom:546.560000pt;}
.y34_c00147{bottom:547.200000pt;}
.y35_c00147{bottom:547.840000pt;}
.y37_c00147{bottom:548.480000pt;}
.y39_c00147{bottom:549.120000pt;}
.y3a_c00147{bottom:549.760000pt;}
.y38_c00147{bottom:550.400000pt;}
.y32_c00147{bottom:583.040000pt;}
.y31_c00147{bottom:584.320000pt;}
.y2c_c00147{bottom:628.480000pt;}
.y2b_c00147{bottom:630.400000pt;}
.y2e_c00147{bottom:631.680000pt;}
.y2d_c00147{bottom:632.960000pt;}
.y2f_c00147{bottom:633.600000pt;}
.y30_c00147{bottom:636.160000pt;}
.y27_c00147{bottom:666.240000pt;}
.y26_c00147{bottom:668.160000pt;}
.y25_c00147{bottom:668.800000pt;}
.y28_c00147{bottom:670.720000pt;}
.y29_c00147{bottom:671.360000pt;}
.y2a_c00147{bottom:673.280000pt;}
.y1f_c00147{bottom:704.000000pt;}
.y1e_c00147{bottom:705.920000pt;}
.y20_c00147{bottom:706.560000pt;}
.y21_c00147{bottom:708.480000pt;}
.y23_c00147{bottom:709.120000pt;}
.y22_c00147{bottom:709.760000pt;}
.y24_c00147{bottom:711.680000pt;}
.y19_c00147{bottom:743.040000pt;}
.y1a_c00147{bottom:743.680000pt;}
.y1b_c00147{bottom:746.880000pt;}
.y1c_c00147{bottom:747.520000pt;}
.y1d_c00147{bottom:750.080000pt;}
.y14_c00147{bottom:780.800000pt;}
.y12_c00147{bottom:782.720000pt;}
.y13_c00147{bottom:783.360000pt;}
.y15_c00147{bottom:784.640000pt;}
.y16_c00147{bottom:785.280000pt;}
.y17_c00147{bottom:787.840000pt;}
.y18_c00147{bottom:788.480000pt;}
.yf_c00147{bottom:817.920000pt;}
.ye_c00147{bottom:818.560000pt;}
.y10_c00147{bottom:824.960000pt;}
.y11_c00147{bottom:825.600000pt;}
.ya_c00147{bottom:856.960000pt;}
.y7_c00147{bottom:857.600000pt;}
.y8_c00147{bottom:858.880000pt;}
.y9_c00147{bottom:860.160000pt;}
.yc_c00147{bottom:861.440000pt;}
.yb_c00147{bottom:862.080000pt;}
.yd_c00147{bottom:864.000000pt;}
.y2_c00147{bottom:894.720000pt;}
.y3_c00147{bottom:899.840000pt;}
.y4_c00147{bottom:900.480000pt;}
.y5_c00147{bottom:901.120000pt;}
.y6_c00147{bottom:902.400000pt;}
.y1_c00147{bottom:987.520000pt;}
.h14_c00147{height:9.215000pt;}
.h12_c00147{height:13.822500pt;}
.h13_c00147{height:18.430000pt;}
.h10_c00147{height:27.645000pt;}
.h17_c00147{height:29.948750pt;}
.h16_c00147{height:32.252500pt;}
.h15_c00147{height:34.556250pt;}
.hd_c00147{height:36.860000pt;}
.ha_c00147{height:39.163750pt;}
.h7_c00147{height:41.467500pt;}
.h6_c00147{height:43.771250pt;}
.hc_c00147{height:46.075000pt;}
.h5_c00147{height:46.331250pt;}
.h3_c00147{height:48.378750pt;}
.hb_c00147{height:50.682500pt;}
.h11_c00147{height:52.986250pt;}
.hf_c00147{height:53.755000pt;}
.h9_c00147{height:55.290000pt;}
.he_c00147{height:57.081250pt;}
.h4_c00147{height:57.593750pt;}
.h2_c00147{height:59.897500pt;}
.h8_c00147{height:62.201250pt;}
.h1_c00147{height:1021.333333pt;}
.h0_c00147{height:1021.440000pt;}
.w0_c00147{width:693.120000pt;}
.w1_c00147{width:693.333333pt;}
.x0_c00147{left:0.000000pt;}
.x2_c00147{left:44.160000pt;}
.x1a_c00147{left:45.440000pt;}
.x4e_c00147{left:46.720000pt;}
.x1b_c00147{left:62.080000pt;}
.x23_c00147{left:63.360000pt;}
.x43_c00147{left:72.960000pt;}
.x2f_c00147{left:82.560000pt;}
.x18_c00147{left:90.240000pt;}
.x24_c00147{left:92.160000pt;}
.x55_c00147{left:102.400000pt;}
.x54_c00147{left:103.680000pt;}
.x3f_c00147{left:111.360000pt;}
.x3_c00147{left:119.040000pt;}
.x14_c00147{left:120.320000pt;}
.x25_c00147{left:129.920000pt;}
.x30_c00147{left:140.160000pt;}
.x1c_c00147{left:148.480000pt;}
.x49_c00147{left:150.400000pt;}
.x2b_c00147{left:157.440000pt;}
.x13_c00147{left:158.720000pt;}
.x56_c00147{left:160.640000pt;}
.x1d_c00147{left:167.680000pt;}
.x51_c00147{left:169.600000pt;}
.x31_c00147{left:176.640000pt;}
.xd_c00147{left:185.600000pt;}
.x8_c00147{left:193.920000pt;}
.xf_c00147{left:195.840000pt;}
.x4f_c00147{left:197.120000pt;}
.x1e_c00147{left:206.720000pt;}
.x44_c00147{left:215.040000pt;}
.x4a_c00147{left:216.960000pt;}
.xe_c00147{left:224.640000pt;}
.x32_c00147{left:225.920000pt;}
.x9_c00147{left:232.960000pt;}
.x39_c00147{left:244.480000pt;}
.x19_c00147{left:252.160000pt;}
.x50_c00147{left:253.440000pt;}
.x33_c00147{left:262.400000pt;}
.x1f_c00147{left:263.680000pt;}
.x10_c00147{left:272.000000pt;}
.x57_c00147{left:274.560000pt;}
.x15_c00147{left:280.320000pt;}
.x40_c00147{left:282.240000pt;}
.x4b_c00147{left:283.520000pt;}
.x58_c00147{left:284.800000pt;}
.x2c_c00147{left:291.840000pt;}
.x20_c00147{left:300.800000pt;}
.x52_c00147{left:302.720000pt;}
.x11_c00147{left:309.760000pt;}
.x3b_c00147{left:311.680000pt;}
.x16_c00147{left:320.640000pt;}
.x2e_c00147{left:321.920000pt;}
.x53_c00147{left:331.520000pt;}
.x3c_c00147{left:340.480000pt;}
.x59_c00147{left:341.760000pt;}
.x12_c00147{left:348.160000pt;}
.x41_c00147{left:349.440000pt;}
.x34_c00147{left:360.320000pt;}
.x26_c00147{left:369.920000pt;}
.x21_c00147{left:378.240000pt;}
.x3d_c00147{left:388.480000pt;}
.x27_c00147{left:397.440000pt;}
.x4c_c00147{left:399.360000pt;}
.x2d_c00147{left:407.040000pt;}
.x45_c00147{left:408.320000pt;}
.x35_c00147{left:417.280000pt;}
.x22_c00147{left:426.880000pt;}
.x28_c00147{left:428.160000pt;}
.x46_c00147{left:437.760000pt;}
.x29_c00147{left:465.280000pt;}
.x4_c00147{left:473.600000pt;}
.x17_c00147{left:474.880000pt;}
.x3a_c00147{left:476.160000pt;}
.x4d_c00147{left:495.360000pt;}
.x42_c00147{left:503.680000pt;}
.x3e_c00147{left:504.960000pt;}
.xa_c00147{left:522.880000pt;}
.x36_c00147{left:533.760000pt;}
.x2a_c00147{left:543.360000pt;}
.x5_c00147{left:551.680000pt;}
.x47_c00147{left:554.880000pt;}
.xc_c00147{left:581.760000pt;}
.x48_c00147{left:593.280000pt;}
.x1_c00147{left:599.040000pt;}
.x37_c00147{left:602.240000pt;}
.xb_c00147{left:610.560000pt;}
.x6_c00147{left:620.160000pt;}
.x7_c00147{left:637.440000pt;}
.x38_c00147{left:660.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_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_6eef4909239d501aaeec225f.woff2')format("woff");}.ff1_c00148{font-family:ff1_c00148;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m34_c00148{transform:matrix(0.153400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153400,0.000000,0.000000,0.250000,0,0);}
.m30_c00148{transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);}
.m31_c00148{transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);}
.m56_c00148{transform:matrix(0.225100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225100,0.000000,0.000000,0.250000,0,0);}
.m57_c00148{transform:matrix(0.233425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233425,0.000000,0.000000,0.250000,0,0);}
.m17_c00148{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m66_c00148{transform:matrix(0.239825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239825,0.000000,0.000000,0.250000,0,0);}
.m49_c00148{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m1f_c00148{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m15_c00148{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);}
.m48_c00148{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);}
.m3c_c00148{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mb_c00148{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);}
.m4a_c00148{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00148{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);}
.m2a_c00148{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_c00148{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m47_c00148{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m13_c00148{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m20_c00148{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m58_c00148{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);}
.m33_c00148{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00148{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00148{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00148{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00148{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m40_c00148{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m32_c00148{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m27_c00148{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m25_c00148{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m18_c00148{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m22_c00148{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m0_c00148{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00148{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00148{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m55_c00148{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m43_c00148{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);}
.m3b_c00148{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m45_c00148{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m19_c00148{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);}
.m3e_c00148{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);}
.m4b_c00148{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m35_c00148{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);}
.m44_c00148{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m39_c00148{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);}
.m36_c00148{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m38_c00148{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);}
.m3d_c00148{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m5_c00148{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m41_c00148{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);}
.m37_c00148{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m11_c00148{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m3_c00148{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);}
.m61_c00148{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m1_c00148{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);}
.m46_c00148{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.md_c00148{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);}
.m42_c00148{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00148{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);}
.m69_c00148{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);}
.m54_c00148{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.ma_c00148{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m12_c00148{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);}
.m62_c00148{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00148{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);}
.m29_c00148{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m7_c00148{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);}
.m59_c00148{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);}
.m5d_c00148{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m68_c00148{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m23_c00148{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00148{transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);}
.m14_c00148{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m24_c00148{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m10_c00148{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);}
.m60_c00148{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m28_c00148{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);}
.m51_c00148{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00148{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.mf_c00148{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);}
.m6_c00148{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00148{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m8_c00148{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m9_c00148{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00148{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m63_c00148{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);}
.m52_c00148{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m64_c00148{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);}
.m65_c00148{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00148{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m4_c00148{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m26_c00148{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00148{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);}
.m2_c00148{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m67_c00148{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m16_c00148{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00148{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);}
.m2b_c00148{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m50_c00148{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.mc_c00148{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m53_c00148{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00148{transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00148{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00148{transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);}
.m21_c00148{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);}
.me_c00148{transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);}
.v1_c00148{vertical-align:-11.520000px;}
.v0_c00148{vertical-align:0.000000px;}
.v2_c00148{vertical-align:5.760000px;}
.ls1_c00148{letter-spacing:0.000000px;}
.ls0_c00148{letter-spacing:84.504240px;}
.sc__c00148{text-shadow:none;}
.sc0_c00148{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00148{-webkit-text-stroke:0px transparent;}
.sc0_c00148{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00148{word-spacing:0.000000px;}
.ws0_c00148{word-spacing:8.427840px;}
.fc0_c00148{color:transparent;}
.fsa_c00148{font-size:17.280000px;}
.fsc_c00148{font-size:23.040000px;}
.fse_c00148{font-size:34.560000px;}
.fs2_c00148{font-size:37.440000px;}
.fs10_c00148{font-size:40.320000px;}
.fs11_c00148{font-size:43.200000px;}
.fs6_c00148{font-size:46.080000px;}
.fs5_c00148{font-size:48.960000px;}
.fs1_c00148{font-size:51.840000px;}
.fs7_c00148{font-size:54.720000px;}
.fsb_c00148{font-size:57.600000px;}
.fs9_c00148{font-size:60.480000px;}
.fs3_c00148{font-size:63.360000px;}
.fsd_c00148{font-size:66.240000px;}
.fs4_c00148{font-size:69.120000px;}
.fs8_c00148{font-size:72.000000px;}
.fs0_c00148{font-size:77.760000px;}
.fsf_c00148{font-size:103.680000px;}
.y0_c00148{bottom:0.000000px;}
.ya3_c00148{bottom:56.160000px;}
.ya8_c00148{bottom:56.880000px;}
.ya4_c00148{bottom:57.600000px;}
.ya7_c00148{bottom:58.320000px;}
.ya6_c00148{bottom:59.040000px;}
.ya5_c00148{bottom:59.760000px;}
.ya2_c00148{bottom:61.200000px;}
.ya0_c00148{bottom:97.920000px;}
.ya1_c00148{bottom:98.640000px;}
.y9f_c00148{bottom:100.080000px;}
.y9d_c00148{bottom:101.520000px;}
.y9e_c00148{bottom:102.960000px;}
.y9c_c00148{bottom:104.400000px;}
.y9b_c00148{bottom:105.840000px;}
.y97_c00148{bottom:141.120000px;}
.y95_c00148{bottom:141.840000px;}
.y98_c00148{bottom:142.560000px;}
.y9a_c00148{bottom:143.280000px;}
.y99_c00148{bottom:144.000000px;}
.y96_c00148{bottom:144.720000px;}
.y94_c00148{bottom:146.160000px;}
.y93_c00148{bottom:146.880000px;}
.y92_c00148{bottom:184.320000px;}
.y8d_c00148{bottom:185.760000px;}
.y90_c00148{bottom:186.480000px;}
.y91_c00148{bottom:187.200000px;}
.y8f_c00148{bottom:187.920000px;}
.y8e_c00148{bottom:188.640000px;}
.y8b_c00148{bottom:226.800000px;}
.y89_c00148{bottom:227.520000px;}
.y8c_c00148{bottom:229.680000px;}
.y8a_c00148{bottom:230.400000px;}
.y88_c00148{bottom:231.120000px;}
.y87_c00148{bottom:231.840000px;}
.y86_c00148{bottom:232.560000px;}
.y85_c00148{bottom:270.000000px;}
.y82_c00148{bottom:270.720000px;}
.y83_c00148{bottom:272.160000px;}
.y84_c00148{bottom:272.880000px;}
.y81_c00148{bottom:273.600000px;}
.y7e_c00148{bottom:324.000000px;}
.y80_c00148{bottom:326.160000px;}
.y7f_c00148{bottom:326.880000px;}
.y7d_c00148{bottom:327.600000px;}
.y7c_c00148{bottom:378.000000px;}
.y7b_c00148{bottom:379.440000px;}
.y7a_c00148{bottom:380.160000px;}
.y79_c00148{bottom:421.920000px;}
.y78_c00148{bottom:422.640000px;}
.y77_c00148{bottom:423.360000px;}
.y75_c00148{bottom:473.760000px;}
.y73_c00148{bottom:474.480000px;}
.y76_c00148{bottom:475.200000px;}
.y74_c00148{bottom:476.640000px;}
.y6d_c00148{bottom:495.360000px;}
.y6f_c00148{bottom:496.080000px;}
.y70_c00148{bottom:496.800000px;}
.y6e_c00148{bottom:497.520000px;}
.y71_c00148{bottom:498.240000px;}
.y72_c00148{bottom:498.960000px;}
.y68_c00148{bottom:516.240000px;}
.y6a_c00148{bottom:516.960000px;}
.y6b_c00148{bottom:517.680000px;}
.y6c_c00148{bottom:518.400000px;}
.y69_c00148{bottom:519.120000px;}
.y61_c00148{bottom:537.120000px;}
.y63_c00148{bottom:537.840000px;}
.y66_c00148{bottom:538.560000px;}
.y62_c00148{bottom:539.280000px;}
.y64_c00148{bottom:540.000000px;}
.y65_c00148{bottom:540.720000px;}
.y67_c00148{bottom:542.160000px;}
.y5b_c00148{bottom:558.720000px;}
.y5d_c00148{bottom:559.440000px;}
.y60_c00148{bottom:560.160000px;}
.y5c_c00148{bottom:560.880000px;}
.y5e_c00148{bottom:561.600000px;}
.y5f_c00148{bottom:562.320000px;}
.y54_c00148{bottom:579.600000px;}
.y55_c00148{bottom:580.320000px;}
.y56_c00148{bottom:581.040000px;}
.y58_c00148{bottom:581.760000px;}
.y5a_c00148{bottom:582.480000px;}
.y57_c00148{bottom:583.920000px;}
.y59_c00148{bottom:584.640000px;}
.y51_c00148{bottom:600.480000px;}
.y50_c00148{bottom:601.200000px;}
.y4e_c00148{bottom:601.920000px;}
.y52_c00148{bottom:602.640000px;}
.y4f_c00148{bottom:603.360000px;}
.y53_c00148{bottom:604.080000px;}
.y47_c00148{bottom:622.080000px;}
.y49_c00148{bottom:622.800000px;}
.y4a_c00148{bottom:623.520000px;}
.y48_c00148{bottom:624.240000px;}
.y4c_c00148{bottom:624.960000px;}
.y4b_c00148{bottom:626.400000px;}
.y4d_c00148{bottom:627.120000px;}
.y43_c00148{bottom:643.680000px;}
.y42_c00148{bottom:645.120000px;}
.y45_c00148{bottom:645.840000px;}
.y41_c00148{bottom:646.560000px;}
.y44_c00148{bottom:647.280000px;}
.y46_c00148{bottom:649.440000px;}
.y3d_c00148{bottom:665.280000px;}
.y3b_c00148{bottom:666.720000px;}
.y3c_c00148{bottom:667.440000px;}
.y40_c00148{bottom:668.160000px;}
.y3e_c00148{bottom:668.880000px;}
.y3f_c00148{bottom:669.600000px;}
.y36_c00148{bottom:694.080000px;}
.y35_c00148{bottom:697.680000px;}
.y34_c00148{bottom:698.400000px;}
.y38_c00148{bottom:699.840000px;}
.y37_c00148{bottom:700.560000px;}
.y39_c00148{bottom:701.280000px;}
.y3a_c00148{bottom:702.000000px;}
.y33_c00148{bottom:750.240000px;}
.y32_c00148{bottom:764.640000px;}
.y30_c00148{bottom:766.080000px;}
.y31_c00148{bottom:768.960000px;}
.y2e_c00148{bottom:774.720000px;}
.y2d_c00148{bottom:781.920000px;}
.y2c_c00148{bottom:783.360000px;}
.y2f_c00148{bottom:786.960000px;}
.y27_c00148{bottom:804.960000px;}
.y26_c00148{bottom:806.400000px;}
.y29_c00148{bottom:808.560000px;}
.y2b_c00148{bottom:809.280000px;}
.y2a_c00148{bottom:810.000000px;}
.y25_c00148{bottom:813.600000px;}
.y24_c00148{bottom:815.760000px;}
.y28_c00148{bottom:816.480000px;}
.y22_c00148{bottom:840.960000px;}
.y21_c00148{bottom:842.400000px;}
.y23_c00148{bottom:843.120000px;}
.y1b_c00148{bottom:845.280000px;}
.y1c_c00148{bottom:846.720000px;}
.y1d_c00148{bottom:847.440000px;}
.y1a_c00148{bottom:848.160000px;}
.y1e_c00148{bottom:850.320000px;}
.y1f_c00148{bottom:851.040000px;}
.y20_c00148{bottom:852.480000px;}
.y13_c00148{bottom:878.400000px;}
.y14_c00148{bottom:879.840000px;}
.y18_c00148{bottom:881.280000px;}
.y15_c00148{bottom:882.000000px;}
.y16_c00148{bottom:882.720000px;}
.y19_c00148{bottom:884.880000px;}
.y17_c00148{bottom:885.600000px;}
.y11_c00148{bottom:920.160000px;}
.y12_c00148{bottom:921.600000px;}
.ya_c00148{bottom:963.360000px;}
.yb_c00148{bottom:964.080000px;}
.yc_c00148{bottom:966.960000px;}
.yd_c00148{bottom:967.680000px;}
.ye_c00148{bottom:969.120000px;}
.y10_c00148{bottom:971.280000px;}
.yf_c00148{bottom:973.440000px;}
.y4_c00148{bottom:1006.560000px;}
.y2_c00148{bottom:1008.000000px;}
.y3_c00148{bottom:1008.720000px;}
.y6_c00148{bottom:1010.160000px;}
.y5_c00148{bottom:1010.880000px;}
.y7_c00148{bottom:1011.600000px;}
.y9_c00148{bottom:1012.320000px;}
.y8_c00148{bottom:1014.480000px;}
.y1_c00148{bottom:1092.960000px;}
.hc_c00148{height:15.550313px;}
.he_c00148{height:20.733750px;}
.h10_c00148{height:31.100625px;}
.h4_c00148{height:33.692344px;}
.h12_c00148{height:36.284062px;}
.h13_c00148{height:38.875781px;}
.h8_c00148{height:41.467500px;}
.h7_c00148{height:44.059219px;}
.h3_c00148{height:46.650937px;}
.h9_c00148{height:49.242656px;}
.hd_c00148{height:51.834375px;}
.hb_c00148{height:54.426094px;}
.h5_c00148{height:57.017812px;}
.hf_c00148{height:59.609531px;}
.h6_c00148{height:62.201250px;}
.ha_c00148{height:64.792969px;}
.h2_c00148{height:69.976406px;}
.h11_c00148{height:93.301875px;}
.h1_c00148{height:1146.750000px;}
.h0_c00148{height:1146.960000px;}
.w0_c00148{width:797.760000px;}
.w1_c00148{width:798.000000px;}
.x0_c00148{left:0.000000px;}
.xc_c00148{left:71.280000px;}
.x14_c00148{left:73.440000px;}
.x61_c00148{left:74.880000px;}
.x6c_c00148{left:77.040000px;}
.x32_c00148{left:84.240000px;}
.x15_c00148{left:93.600000px;}
.x6d_c00148{left:97.200000px;}
.x1d_c00148{left:103.680000px;}
.xd_c00148{left:113.760000px;}
.x5a_c00148{left:116.640000px;}
.x33_c00148{left:126.000000px;}
.x3d_c00148{left:127.440000px;}
.x1e_c00148{left:136.080000px;}
.x6e_c00148{left:139.680000px;}
.x16_c00148{left:146.880000px;}
.x4f_c00148{left:149.040000px;}
.x34_c00148{left:158.400000px;}
.x62_c00148{left:159.840000px;}
.x4c_c00148{left:169.920000px;}
.x2_c00148{left:177.840000px;}
.x45_c00148{left:179.280000px;}
.x56_c00148{left:180.720000px;}
.x26_c00148{left:188.640000px;}
.x63_c00148{left:190.800000px;}
.x4d_c00148{left:200.880000px;}
.x17_c00148{left:210.240000px;}
.x46_c00148{left:212.400000px;}
.x50_c00148{left:213.840000px;}
.x3_c00148{left:220.320000px;}
.x41_c00148{left:223.200000px;}
.x68_c00148{left:224.640000px;}
.x1f_c00148{left:231.840000px;}
.x35_c00148{left:233.280000px;}
.x51_c00148{left:244.800000px;}
.x4_c00148{left:252.000000px;}
.x5b_c00148{left:265.680000px;}
.x27_c00148{left:275.040000px;}
.x47_c00148{left:276.480000px;}
.xe_c00148{left:284.400000px;}
.x18_c00148{left:286.560000px;}
.x6f_c00148{left:288.000000px;}
.x3a_c00148{left:295.920000px;}
.x2b_c00148{left:297.360000px;}
.x5c_c00148{left:300.240000px;}
.x52_c00148{left:308.880000px;}
.x5_c00148{left:316.800000px;}
.x4e_c00148{left:319.680000px;}
.x72_c00148{left:321.120000px;}
.x2c_c00148{left:329.760000px;}
.x42_c00148{left:341.280000px;}
.x69_c00148{left:342.720000px;}
.x6_c00148{left:349.200000px;}
.x36_c00148{left:352.080000px;}
.x20_c00148{left:360.720000px;}
.x48_c00148{left:362.160000px;}
.x73_c00148{left:363.600000px;}
.x43_c00148{left:373.680000px;}
.x64_c00148{left:375.840000px;}
.xf_c00148{left:383.040000px;}
.x3e_c00148{left:384.480000px;}
.x19_c00148{left:392.400000px;}
.x2d_c00148{left:403.920000px;}
.x49_c00148{left:406.080000px;}
.x53_c00148{left:407.520000px;}
.x1a_c00148{left:415.440000px;}
.x57_c00148{left:416.880000px;}
.x5d_c00148{left:427.680000px;}
.x54_c00148{left:438.480000px;}
.x2e_c00148{left:447.840000px;}
.x37_c00148{left:449.280000px;}
.x6a_c00148{left:450.720000px;}
.x4a_c00148{left:460.080000px;}
.x65_c00148{left:470.880000px;}
.x55_c00148{left:472.320000px;}
.x28_c00148{left:481.680000px;}
.x7_c00148{left:489.600000px;}
.x1b_c00148{left:491.040000px;}
.x4b_c00148{left:493.920000px;}
.x10_c00148{left:501.120000px;}
.x74_c00148{left:506.160000px;}
.x29_c00148{left:511.920000px;}
.x5e_c00148{left:514.800000px;}
.x66_c00148{left:516.240000px;}
.x2a_c00148{left:522.720000px;}
.x2f_c00148{left:524.880000px;}
.x8_c00148{left:532.800000px;}
.x70_c00148{left:537.120000px;}
.x1c_c00148{left:545.760000px;}
.x58_c00148{left:547.920000px;}
.x30_c00148{left:557.280000px;}
.x75_c00148{left:559.440000px;}
.x38_c00148{left:568.080000px;}
.x11_c00148{left:576.720000px;}
.x3b_c00148{left:578.880000px;}
.x3f_c00148{left:580.320000px;}
.x21_c00148{left:588.960000px;}
.x5f_c00148{left:591.840000px;}
.x76_c00148{left:594.000000px;}
.x9_c00148{left:598.320000px;}
.x12_c00148{left:599.760000px;}
.x39_c00148{left:601.920000px;}
.x71_c00148{left:604.080000px;}
.x3c_c00148{left:612.720000px;}
.xa_c00148{left:619.920000px;}
.x40_c00148{left:624.960000px;}
.x31_c00148{left:633.600000px;}
.x6b_c00148{left:635.040000px;}
.x22_c00148{left:654.480000px;}
.x44_c00148{left:668.160000px;}
.x13_c00148{left:674.640000px;}
.x23_c00148{left:677.520000px;}
.x67_c00148{left:679.680000px;}
.x1_c00148{left:685.440000px;}
.x59_c00148{left:689.040000px;}
.xb_c00148{left:696.960000px;}
.x60_c00148{left:702.000000px;}
.x77_c00148{left:712.080000px;}
.x24_c00148{left:719.280000px;}
.x25_c00148{left:742.320000px;}
@media print{
.v1_c00148{vertical-align:-10.240000pt;}
.v0_c00148{vertical-align:0.000000pt;}
.v2_c00148{vertical-align:5.120000pt;}
.ls1_c00148{letter-spacing:0.000000pt;}
.ls0_c00148{letter-spacing:75.114880pt;}
.ws1_c00148{word-spacing:0.000000pt;}
.ws0_c00148{word-spacing:7.491413pt;}
.fsa_c00148{font-size:15.360000pt;}
.fsc_c00148{font-size:20.480000pt;}
.fse_c00148{font-size:30.720000pt;}
.fs2_c00148{font-size:33.280000pt;}
.fs10_c00148{font-size:35.840000pt;}
.fs11_c00148{font-size:38.400000pt;}
.fs6_c00148{font-size:40.960000pt;}
.fs5_c00148{font-size:43.520000pt;}
.fs1_c00148{font-size:46.080000pt;}
.fs7_c00148{font-size:48.640000pt;}
.fsb_c00148{font-size:51.200000pt;}
.fs9_c00148{font-size:53.760000pt;}
.fs3_c00148{font-size:56.320000pt;}
.fsd_c00148{font-size:58.880000pt;}
.fs4_c00148{font-size:61.440000pt;}
.fs8_c00148{font-size:64.000000pt;}
.fs0_c00148{font-size:69.120000pt;}
.fsf_c00148{font-size:92.160000pt;}
.y0_c00148{bottom:0.000000pt;}
.ya3_c00148{bottom:49.920000pt;}
.ya8_c00148{bottom:50.560000pt;}
.ya4_c00148{bottom:51.200000pt;}
.ya7_c00148{bottom:51.840000pt;}
.ya6_c00148{bottom:52.480000pt;}
.ya5_c00148{bottom:53.120000pt;}
.ya2_c00148{bottom:54.400000pt;}
.ya0_c00148{bottom:87.040000pt;}
.ya1_c00148{bottom:87.680000pt;}
.y9f_c00148{bottom:88.960000pt;}
.y9d_c00148{bottom:90.240000pt;}
.y9e_c00148{bottom:91.520000pt;}
.y9c_c00148{bottom:92.800000pt;}
.y9b_c00148{bottom:94.080000pt;}
.y97_c00148{bottom:125.440000pt;}
.y95_c00148{bottom:126.080000pt;}
.y98_c00148{bottom:126.720000pt;}
.y9a_c00148{bottom:127.360000pt;}
.y99_c00148{bottom:128.000000pt;}
.y96_c00148{bottom:128.640000pt;}
.y94_c00148{bottom:129.920000pt;}
.y93_c00148{bottom:130.560000pt;}
.y92_c00148{bottom:163.840000pt;}
.y8d_c00148{bottom:165.120000pt;}
.y90_c00148{bottom:165.760000pt;}
.y91_c00148{bottom:166.400000pt;}
.y8f_c00148{bottom:167.040000pt;}
.y8e_c00148{bottom:167.680000pt;}
.y8b_c00148{bottom:201.600000pt;}
.y89_c00148{bottom:202.240000pt;}
.y8c_c00148{bottom:204.160000pt;}
.y8a_c00148{bottom:204.800000pt;}
.y88_c00148{bottom:205.440000pt;}
.y87_c00148{bottom:206.080000pt;}
.y86_c00148{bottom:206.720000pt;}
.y85_c00148{bottom:240.000000pt;}
.y82_c00148{bottom:240.640000pt;}
.y83_c00148{bottom:241.920000pt;}
.y84_c00148{bottom:242.560000pt;}
.y81_c00148{bottom:243.200000pt;}
.y7e_c00148{bottom:288.000000pt;}
.y80_c00148{bottom:289.920000pt;}
.y7f_c00148{bottom:290.560000pt;}
.y7d_c00148{bottom:291.200000pt;}
.y7c_c00148{bottom:336.000000pt;}
.y7b_c00148{bottom:337.280000pt;}
.y7a_c00148{bottom:337.920000pt;}
.y79_c00148{bottom:375.040000pt;}
.y78_c00148{bottom:375.680000pt;}
.y77_c00148{bottom:376.320000pt;}
.y75_c00148{bottom:421.120000pt;}
.y73_c00148{bottom:421.760000pt;}
.y76_c00148{bottom:422.400000pt;}
.y74_c00148{bottom:423.680000pt;}
.y6d_c00148{bottom:440.320000pt;}
.y6f_c00148{bottom:440.960000pt;}
.y70_c00148{bottom:441.600000pt;}
.y6e_c00148{bottom:442.240000pt;}
.y71_c00148{bottom:442.880000pt;}
.y72_c00148{bottom:443.520000pt;}
.y68_c00148{bottom:458.880000pt;}
.y6a_c00148{bottom:459.520000pt;}
.y6b_c00148{bottom:460.160000pt;}
.y6c_c00148{bottom:460.800000pt;}
.y69_c00148{bottom:461.440000pt;}
.y61_c00148{bottom:477.440000pt;}
.y63_c00148{bottom:478.080000pt;}
.y66_c00148{bottom:478.720000pt;}
.y62_c00148{bottom:479.360000pt;}
.y64_c00148{bottom:480.000000pt;}
.y65_c00148{bottom:480.640000pt;}
.y67_c00148{bottom:481.920000pt;}
.y5b_c00148{bottom:496.640000pt;}
.y5d_c00148{bottom:497.280000pt;}
.y60_c00148{bottom:497.920000pt;}
.y5c_c00148{bottom:498.560000pt;}
.y5e_c00148{bottom:499.200000pt;}
.y5f_c00148{bottom:499.840000pt;}
.y54_c00148{bottom:515.200000pt;}
.y55_c00148{bottom:515.840000pt;}
.y56_c00148{bottom:516.480000pt;}
.y58_c00148{bottom:517.120000pt;}
.y5a_c00148{bottom:517.760000pt;}
.y57_c00148{bottom:519.040000pt;}
.y59_c00148{bottom:519.680000pt;}
.y51_c00148{bottom:533.760000pt;}
.y50_c00148{bottom:534.400000pt;}
.y4e_c00148{bottom:535.040000pt;}
.y52_c00148{bottom:535.680000pt;}
.y4f_c00148{bottom:536.320000pt;}
.y53_c00148{bottom:536.960000pt;}
.y47_c00148{bottom:552.960000pt;}
.y49_c00148{bottom:553.600000pt;}
.y4a_c00148{bottom:554.240000pt;}
.y48_c00148{bottom:554.880000pt;}
.y4c_c00148{bottom:555.520000pt;}
.y4b_c00148{bottom:556.800000pt;}
.y4d_c00148{bottom:557.440000pt;}
.y43_c00148{bottom:572.160000pt;}
.y42_c00148{bottom:573.440000pt;}
.y45_c00148{bottom:574.080000pt;}
.y41_c00148{bottom:574.720000pt;}
.y44_c00148{bottom:575.360000pt;}
.y46_c00148{bottom:577.280000pt;}
.y3d_c00148{bottom:591.360000pt;}
.y3b_c00148{bottom:592.640000pt;}
.y3c_c00148{bottom:593.280000pt;}
.y40_c00148{bottom:593.920000pt;}
.y3e_c00148{bottom:594.560000pt;}
.y3f_c00148{bottom:595.200000pt;}
.y36_c00148{bottom:616.960000pt;}
.y35_c00148{bottom:620.160000pt;}
.y34_c00148{bottom:620.800000pt;}
.y38_c00148{bottom:622.080000pt;}
.y37_c00148{bottom:622.720000pt;}
.y39_c00148{bottom:623.360000pt;}
.y3a_c00148{bottom:624.000000pt;}
.y33_c00148{bottom:666.880000pt;}
.y32_c00148{bottom:679.680000pt;}
.y30_c00148{bottom:680.960000pt;}
.y31_c00148{bottom:683.520000pt;}
.y2e_c00148{bottom:688.640000pt;}
.y2d_c00148{bottom:695.040000pt;}
.y2c_c00148{bottom:696.320000pt;}
.y2f_c00148{bottom:699.520000pt;}
.y27_c00148{bottom:715.520000pt;}
.y26_c00148{bottom:716.800000pt;}
.y29_c00148{bottom:718.720000pt;}
.y2b_c00148{bottom:719.360000pt;}
.y2a_c00148{bottom:720.000000pt;}
.y25_c00148{bottom:723.200000pt;}
.y24_c00148{bottom:725.120000pt;}
.y28_c00148{bottom:725.760000pt;}
.y22_c00148{bottom:747.520000pt;}
.y21_c00148{bottom:748.800000pt;}
.y23_c00148{bottom:749.440000pt;}
.y1b_c00148{bottom:751.360000pt;}
.y1c_c00148{bottom:752.640000pt;}
.y1d_c00148{bottom:753.280000pt;}
.y1a_c00148{bottom:753.920000pt;}
.y1e_c00148{bottom:755.840000pt;}
.y1f_c00148{bottom:756.480000pt;}
.y20_c00148{bottom:757.760000pt;}
.y13_c00148{bottom:780.800000pt;}
.y14_c00148{bottom:782.080000pt;}
.y18_c00148{bottom:783.360000pt;}
.y15_c00148{bottom:784.000000pt;}
.y16_c00148{bottom:784.640000pt;}
.y19_c00148{bottom:786.560000pt;}
.y17_c00148{bottom:787.200000pt;}
.y11_c00148{bottom:817.920000pt;}
.y12_c00148{bottom:819.200000pt;}
.ya_c00148{bottom:856.320000pt;}
.yb_c00148{bottom:856.960000pt;}
.yc_c00148{bottom:859.520000pt;}
.yd_c00148{bottom:860.160000pt;}
.ye_c00148{bottom:861.440000pt;}
.y10_c00148{bottom:863.360000pt;}
.yf_c00148{bottom:865.280000pt;}
.y4_c00148{bottom:894.720000pt;}
.y2_c00148{bottom:896.000000pt;}
.y3_c00148{bottom:896.640000pt;}
.y6_c00148{bottom:897.920000pt;}
.y5_c00148{bottom:898.560000pt;}
.y7_c00148{bottom:899.200000pt;}
.y9_c00148{bottom:899.840000pt;}
.y8_c00148{bottom:901.760000pt;}
.y1_c00148{bottom:971.520000pt;}
.hc_c00148{height:13.822500pt;}
.he_c00148{height:18.430000pt;}
.h10_c00148{height:27.645000pt;}
.h4_c00148{height:29.948750pt;}
.h12_c00148{height:32.252500pt;}
.h13_c00148{height:34.556250pt;}
.h8_c00148{height:36.860000pt;}
.h7_c00148{height:39.163750pt;}
.h3_c00148{height:41.467500pt;}
.h9_c00148{height:43.771250pt;}
.hd_c00148{height:46.075000pt;}
.hb_c00148{height:48.378750pt;}
.h5_c00148{height:50.682500pt;}
.hf_c00148{height:52.986250pt;}
.h6_c00148{height:55.290000pt;}
.ha_c00148{height:57.593750pt;}
.h2_c00148{height:62.201250pt;}
.h11_c00148{height:82.935000pt;}
.h1_c00148{height:1019.333333pt;}
.h0_c00148{height:1019.520000pt;}
.w0_c00148{width:709.120000pt;}
.w1_c00148{width:709.333333pt;}
.x0_c00148{left:0.000000pt;}
.xc_c00148{left:63.360000pt;}
.x14_c00148{left:65.280000pt;}
.x61_c00148{left:66.560000pt;}
.x6c_c00148{left:68.480000pt;}
.x32_c00148{left:74.880000pt;}
.x15_c00148{left:83.200000pt;}
.x6d_c00148{left:86.400000pt;}
.x1d_c00148{left:92.160000pt;}
.xd_c00148{left:101.120000pt;}
.x5a_c00148{left:103.680000pt;}
.x33_c00148{left:112.000000pt;}
.x3d_c00148{left:113.280000pt;}
.x1e_c00148{left:120.960000pt;}
.x6e_c00148{left:124.160000pt;}
.x16_c00148{left:130.560000pt;}
.x4f_c00148{left:132.480000pt;}
.x34_c00148{left:140.800000pt;}
.x62_c00148{left:142.080000pt;}
.x4c_c00148{left:151.040000pt;}
.x2_c00148{left:158.080000pt;}
.x45_c00148{left:159.360000pt;}
.x56_c00148{left:160.640000pt;}
.x26_c00148{left:167.680000pt;}
.x63_c00148{left:169.600000pt;}
.x4d_c00148{left:178.560000pt;}
.x17_c00148{left:186.880000pt;}
.x46_c00148{left:188.800000pt;}
.x50_c00148{left:190.080000pt;}
.x3_c00148{left:195.840000pt;}
.x41_c00148{left:198.400000pt;}
.x68_c00148{left:199.680000pt;}
.x1f_c00148{left:206.080000pt;}
.x35_c00148{left:207.360000pt;}
.x51_c00148{left:217.600000pt;}
.x4_c00148{left:224.000000pt;}
.x5b_c00148{left:236.160000pt;}
.x27_c00148{left:244.480000pt;}
.x47_c00148{left:245.760000pt;}
.xe_c00148{left:252.800000pt;}
.x18_c00148{left:254.720000pt;}
.x6f_c00148{left:256.000000pt;}
.x3a_c00148{left:263.040000pt;}
.x2b_c00148{left:264.320000pt;}
.x5c_c00148{left:266.880000pt;}
.x52_c00148{left:274.560000pt;}
.x5_c00148{left:281.600000pt;}
.x4e_c00148{left:284.160000pt;}
.x72_c00148{left:285.440000pt;}
.x2c_c00148{left:293.120000pt;}
.x42_c00148{left:303.360000pt;}
.x69_c00148{left:304.640000pt;}
.x6_c00148{left:310.400000pt;}
.x36_c00148{left:312.960000pt;}
.x20_c00148{left:320.640000pt;}
.x48_c00148{left:321.920000pt;}
.x73_c00148{left:323.200000pt;}
.x43_c00148{left:332.160000pt;}
.x64_c00148{left:334.080000pt;}
.xf_c00148{left:340.480000pt;}
.x3e_c00148{left:341.760000pt;}
.x19_c00148{left:348.800000pt;}
.x2d_c00148{left:359.040000pt;}
.x49_c00148{left:360.960000pt;}
.x53_c00148{left:362.240000pt;}
.x1a_c00148{left:369.280000pt;}
.x57_c00148{left:370.560000pt;}
.x5d_c00148{left:380.160000pt;}
.x54_c00148{left:389.760000pt;}
.x2e_c00148{left:398.080000pt;}
.x37_c00148{left:399.360000pt;}
.x6a_c00148{left:400.640000pt;}
.x4a_c00148{left:408.960000pt;}
.x65_c00148{left:418.560000pt;}
.x55_c00148{left:419.840000pt;}
.x28_c00148{left:428.160000pt;}
.x7_c00148{left:435.200000pt;}
.x1b_c00148{left:436.480000pt;}
.x4b_c00148{left:439.040000pt;}
.x10_c00148{left:445.440000pt;}
.x74_c00148{left:449.920000pt;}
.x29_c00148{left:455.040000pt;}
.x5e_c00148{left:457.600000pt;}
.x66_c00148{left:458.880000pt;}
.x2a_c00148{left:464.640000pt;}
.x2f_c00148{left:466.560000pt;}
.x8_c00148{left:473.600000pt;}
.x70_c00148{left:477.440000pt;}
.x1c_c00148{left:485.120000pt;}
.x58_c00148{left:487.040000pt;}
.x30_c00148{left:495.360000pt;}
.x75_c00148{left:497.280000pt;}
.x38_c00148{left:504.960000pt;}
.x11_c00148{left:512.640000pt;}
.x3b_c00148{left:514.560000pt;}
.x3f_c00148{left:515.840000pt;}
.x21_c00148{left:523.520000pt;}
.x5f_c00148{left:526.080000pt;}
.x76_c00148{left:528.000000pt;}
.x9_c00148{left:531.840000pt;}
.x12_c00148{left:533.120000pt;}
.x39_c00148{left:535.040000pt;}
.x71_c00148{left:536.960000pt;}
.x3c_c00148{left:544.640000pt;}
.xa_c00148{left:551.040000pt;}
.x40_c00148{left:555.520000pt;}
.x31_c00148{left:563.200000pt;}
.x6b_c00148{left:564.480000pt;}
.x22_c00148{left:581.760000pt;}
.x44_c00148{left:593.920000pt;}
.x13_c00148{left:599.680000pt;}
.x23_c00148{left:602.240000pt;}
.x67_c00148{left:604.160000pt;}
.x1_c00148{left:609.280000pt;}
.x59_c00148{left:612.480000pt;}
.xb_c00148{left:619.520000pt;}
.x60_c00148{left:624.000000pt;}
.x77_c00148{left:632.960000pt;}
.x24_c00148{left:639.360000pt;}
.x25_c00148{left:659.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5c568cdc6a0b87d6ec5a490c.woff2')format("woff");}.ff1_c00149{font-family:ff1_c00149;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m62_c00149{transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);}
.m58_c00149{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m5a_c00149{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m5c_c00149{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m53_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);}
.m66_c00149{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);}
.m5e_c00149{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m63_c00149{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00149{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m19_c00149{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m60_c00149{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00149{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00149{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m51_c00149{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00149{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m55_c00149{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m64_c00149{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00149{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m61_c00149{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m40_c00149{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00149{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mb_c00149{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00149{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mf_c00149{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m3_c00149{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);}
.m29_c00149{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m33_c00149{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_c00149{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m12_c00149{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00149{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m11_c00149{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);}
.m20_c00149{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m8_c00149{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m15_c00149{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);}
.m4f_c00149{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);}
.m7_c00149{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);}
.m0_c00149{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00149{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);}
.m38_c00149{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m50_c00149{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);}
.m2d_c00149{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);}
.m56_c00149{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00149{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00149{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m37_c00149{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);}
.m13_c00149{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m27_c00149{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00149{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);}
.m5_c00149{transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);}
.m59_c00149{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m39_c00149{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m4_c00149{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m14_c00149{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m45_c00149{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);}
.m49_c00149{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m31_c00149{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m30_c00149{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);}
.m34_c00149{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m48_c00149{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);}
.m1b_c00149{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00149{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m46_c00149{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);}
.m1e_c00149{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m1_c00149{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m21_c00149{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00149{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m18_c00149{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00149{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m16_c00149{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);}
.m24_c00149{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);}
.m54_c00149{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00149{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m47_c00149{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);}
.m23_c00149{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00149{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00149{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m43_c00149{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);}
.m32_c00149{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m17_c00149{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m41_c00149{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.mc_c00149{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.md_c00149{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);}
.m26_c00149{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m6_c00149{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);}
.m25_c00149{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);}
.m5d_c00149{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m10_c00149{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m28_c00149{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.me_c00149{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m22_c00149{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m35_c00149{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m57_c00149{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m9_c00149{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);}
.m1f_c00149{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m36_c00149{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00149{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);}
.m52_c00149{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00149{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);}
.m5b_c00149{transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);}
.m42_c00149{transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);}
.m44_c00149{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m65_c00149{transform:matrix(0.700000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.700000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.700000,0.000000,0.000000,0.250000,0,0);}
.m2_c00149{transform:matrix(1.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.167500,0.000000,0.000000,0.250000,0,0);}
.v0_c00149{vertical-align:0.000000px;}
.ls0_c00149{letter-spacing:0.000000px;}
.sc__c00149{text-shadow:none;}
.sc0_c00149{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00149{-webkit-text-stroke:0px transparent;}
.sc0_c00149{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00149{word-spacing:-5.650301px;}
.ws1_c00149{word-spacing:0.000000px;}
.fc0_c00149{color:transparent;}
.fs2_c00149{font-size:17.280000px;}
.fs7_c00149{font-size:34.560000px;}
.fs5_c00149{font-size:37.440000px;}
.fsb_c00149{font-size:40.320000px;}
.fsf_c00149{font-size:43.200000px;}
.fs4_c00149{font-size:46.080000px;}
.fs1_c00149{font-size:48.960000px;}
.fs6_c00149{font-size:51.840000px;}
.fsd_c00149{font-size:54.720000px;}
.fsc_c00149{font-size:57.600000px;}
.fs8_c00149{font-size:60.480000px;}
.fs3_c00149{font-size:63.360000px;}
.fsa_c00149{font-size:66.240000px;}
.fs9_c00149{font-size:69.120000px;}
.fs0_c00149{font-size:72.000000px;}
.fs10_c00149{font-size:74.880000px;}
.fse_c00149{font-size:86.400000px;}
.y0_c00149{bottom:0.000000px;}
.y77_c00149{bottom:56.880000px;}
.y78_c00149{bottom:57.600000px;}
.y74_c00149{bottom:58.320000px;}
.y76_c00149{bottom:59.760000px;}
.y73_c00149{bottom:60.480000px;}
.y70_c00149{bottom:61.200000px;}
.y6f_c00149{bottom:61.920000px;}
.y6d_c00149{bottom:62.640000px;}
.y6c_c00149{bottom:64.800000px;}
.y79_c00149{bottom:87.840000px;}
.y72_c00149{bottom:90.000000px;}
.y6e_c00149{bottom:90.720000px;}
.y75_c00149{bottom:91.440000px;}
.y6b_c00149{bottom:92.880000px;}
.y71_c00149{bottom:94.320000px;}
.y6a_c00149{bottom:95.760000px;}
.y69_c00149{bottom:132.480000px;}
.y67_c00149{bottom:133.920000px;}
.y68_c00149{bottom:136.080000px;}
.y66_c00149{bottom:138.240000px;}
.y65_c00149{bottom:174.240000px;}
.y64_c00149{bottom:174.960000px;}
.y63_c00149{bottom:177.120000px;}
.y62_c00149{bottom:178.560000px;}
.y61_c00149{bottom:179.280000px;}
.y60_c00149{bottom:180.000000px;}
.y5f_c00149{bottom:214.560000px;}
.y5e_c00149{bottom:216.000000px;}
.y5d_c00149{bottom:218.160000px;}
.y5c_c00149{bottom:219.600000px;}
.y5b_c00149{bottom:220.320000px;}
.y5a_c00149{bottom:221.040000px;}
.y59_c00149{bottom:222.480000px;}
.y58_c00149{bottom:272.160000px;}
.y57_c00149{bottom:274.320000px;}
.y56_c00149{bottom:275.760000px;}
.y55_c00149{bottom:311.760000px;}
.y52_c00149{bottom:313.200000px;}
.y53_c00149{bottom:313.920000px;}
.y54_c00149{bottom:315.360000px;}
.y51_c00149{bottom:317.520000px;}
.y4f_c00149{bottom:354.960000px;}
.y50_c00149{bottom:357.120000px;}
.y4c_c00149{bottom:357.840000px;}
.y4e_c00149{bottom:358.560000px;}
.y4d_c00149{bottom:359.280000px;}
.y4b_c00149{bottom:398.160000px;}
.y49_c00149{bottom:399.600000px;}
.y4a_c00149{bottom:401.760000px;}
.y48_c00149{bottom:402.480000px;}
.y47_c00149{bottom:403.920000px;}
.y44_c00149{bottom:440.640000px;}
.y43_c00149{bottom:442.080000px;}
.y46_c00149{bottom:442.800000px;}
.y45_c00149{bottom:444.240000px;}
.y42_c00149{bottom:444.960000px;}
.y41_c00149{bottom:495.360000px;}
.y3f_c00149{bottom:496.080000px;}
.y40_c00149{bottom:498.240000px;}
.y3d_c00149{bottom:537.840000px;}
.y3e_c00149{bottom:540.000000px;}
.y3c_c00149{bottom:540.720000px;}
.y3b_c00149{bottom:541.440000px;}
.y39_c00149{bottom:581.040000px;}
.y38_c00149{bottom:582.480000px;}
.y37_c00149{bottom:583.200000px;}
.y3a_c00149{bottom:583.920000px;}
.y36_c00149{bottom:622.080000px;}
.y35_c00149{bottom:623.520000px;}
.y34_c00149{bottom:625.680000px;}
.y33_c00149{bottom:626.400000px;}
.y32_c00149{bottom:666.720000px;}
.y30_c00149{bottom:668.160000px;}
.y31_c00149{bottom:668.880000px;}
.y2e_c00149{bottom:708.480000px;}
.y2d_c00149{bottom:709.200000px;}
.y2b_c00149{bottom:710.640000px;}
.y2c_c00149{bottom:711.360000px;}
.y2f_c00149{bottom:712.080000px;}
.y2a_c00149{bottom:752.400000px;}
.y27_c00149{bottom:753.840000px;}
.y28_c00149{bottom:754.560000px;}
.y29_c00149{bottom:755.280000px;}
.y21_c00149{bottom:793.440000px;}
.y23_c00149{bottom:794.160000px;}
.y26_c00149{bottom:795.600000px;}
.y22_c00149{bottom:796.320000px;}
.y24_c00149{bottom:797.040000px;}
.y25_c00149{bottom:797.760000px;}
.y1d_c00149{bottom:836.640000px;}
.y20_c00149{bottom:837.360000px;}
.y1c_c00149{bottom:838.080000px;}
.y1e_c00149{bottom:839.520000px;}
.y1f_c00149{bottom:840.240000px;}
.y19_c00149{bottom:878.400000px;}
.y17_c00149{bottom:880.560000px;}
.y18_c00149{bottom:882.000000px;}
.y1a_c00149{bottom:882.720000px;}
.y1b_c00149{bottom:883.440000px;}
.y12_c00149{bottom:920.880000px;}
.y13_c00149{bottom:921.600000px;}
.y16_c00149{bottom:922.320000px;}
.y11_c00149{bottom:923.760000px;}
.y15_c00149{bottom:924.480000px;}
.y14_c00149{bottom:925.200000px;}
.yb_c00149{bottom:966.240000px;}
.yd_c00149{bottom:966.960000px;}
.yc_c00149{bottom:967.680000px;}
.ye_c00149{bottom:968.400000px;}
.yf_c00149{bottom:969.120000px;}
.y10_c00149{bottom:969.840000px;}
.y4_c00149{bottom:1006.560000px;}
.y5_c00149{bottom:1007.280000px;}
.y6_c00149{bottom:1008.000000px;}
.y2_c00149{bottom:1008.720000px;}
.y9_c00149{bottom:1010.160000px;}
.y3_c00149{bottom:1010.880000px;}
.y8_c00149{bottom:1011.600000px;}
.y7_c00149{bottom:1012.320000px;}
.ya_c00149{bottom:1013.040000px;}
.y1_c00149{bottom:1095.840000px;}
.h4_c00149{height:15.550313px;}
.h9_c00149{height:31.100625px;}
.h7_c00149{height:33.692344px;}
.hd_c00149{height:36.284062px;}
.h11_c00149{height:38.875781px;}
.h6_c00149{height:41.467500px;}
.h3_c00149{height:44.059219px;}
.h8_c00149{height:46.650937px;}
.hf_c00149{height:49.242656px;}
.he_c00149{height:51.834375px;}
.ha_c00149{height:54.426094px;}
.h5_c00149{height:57.017812px;}
.hc_c00149{height:59.609531px;}
.hb_c00149{height:62.201250px;}
.h2_c00149{height:64.792969px;}
.h12_c00149{height:67.384687px;}
.h10_c00149{height:77.751563px;}
.h0_c00149{height:1153.440000px;}
.h1_c00149{height:1153.500000px;}
.w0_c00149{width:794.880000px;}
.w1_c00149{width:795.000000px;}
.x0_c00149{left:0.000000px;}
.x34_c00149{left:64.080000px;}
.x2_c00149{left:66.240000px;}
.x51_c00149{left:67.680000px;}
.x43_c00149{left:86.400000px;}
.x52_c00149{left:87.840000px;}
.x3e_c00149{left:95.760000px;}
.x1e_c00149{left:97.200000px;}
.x3_c00149{left:107.280000px;}
.xf_c00149{left:108.720000px;}
.x3a_c00149{left:115.920000px;}
.x28_c00149{left:118.800000px;}
.x4d_c00149{left:128.160000px;}
.x15_c00149{left:129.600000px;}
.x4_c00149{left:131.040000px;}
.x46_c00149{left:138.960000px;}
.x35_c00149{left:149.040000px;}
.x49_c00149{left:151.920000px;}
.x31_c00149{left:160.560000px;}
.x29_c00149{left:171.360000px;}
.x10_c00149{left:172.800000px;}
.x1f_c00149{left:182.160000px;}
.x32_c00149{left:192.960000px;}
.x19_c00149{left:203.760000px;}
.x11_c00149{left:205.200000px;}
.x36_c00149{left:214.560000px;}
.x20_c00149{left:225.360000px;}
.x5_c00149{left:236.160000px;}
.x3b_c00149{left:246.960000px;}
.x21_c00149{left:257.040000px;}
.x2a_c00149{left:267.840000px;}
.x16_c00149{left:279.360000px;}
.x6_c00149{left:289.440000px;}
.x2b_c00149{left:299.520000px;}
.x26_c00149{left:311.040000px;}
.x4b_c00149{left:321.840000px;}
.x7_c00149{left:332.640000px;}
.x41_c00149{left:334.080000px;}
.x2c_c00149{left:343.440000px;}
.x47_c00149{left:353.520000px;}
.x53_c00149{left:354.960000px;}
.x12_c00149{left:356.400000px;}
.x8_c00149{left:365.040000px;}
.x4e_c00149{left:375.840000px;}
.x1a_c00149{left:386.640000px;}
.x9_c00149{left:398.160000px;}
.x4f_c00149{left:407.520000px;}
.x13_c00149{left:408.960000px;}
.x22_c00149{left:419.040000px;}
.x2d_c00149{left:430.560000px;}
.x27_c00149{left:440.640000px;}
.x14_c00149{left:450.720000px;}
.x23_c00149{left:452.160000px;}
.x3f_c00149{left:462.240000px;}
.x17_c00149{left:463.680000px;}
.x4c_c00149{left:473.760000px;}
.x54_c00149{left:475.200000px;}
.xa_c00149{left:483.840000px;}
.x2e_c00149{left:496.080000px;}
.x44_c00149{left:508.320000px;}
.xb_c00149{left:516.240000px;}
.x1b_c00149{left:517.680000px;}
.x18_c00149{left:528.480000px;}
.x3c_c00149{left:537.840000px;}
.x33_c00149{left:548.640000px;}
.x1c_c00149{left:550.080000px;}
.x37_c00149{left:551.520000px;}
.x40_c00149{left:570.960000px;}
.xc_c00149{left:572.400000px;}
.x48_c00149{left:581.040000px;}
.x24_c00149{left:582.480000px;}
.x50_c00149{left:591.840000px;}
.x1d_c00149{left:594.000000px;}
.x42_c00149{left:602.640000px;}
.x38_c00149{left:604.080000px;}
.x3d_c00149{left:614.880000px;}
.x25_c00149{left:624.240000px;}
.x45_c00149{left:635.040000px;}
.x39_c00149{left:637.200000px;}
.x4a_c00149{left:646.560000px;}
.xd_c00149{left:648.720000px;}
.x2f_c00149{left:669.600000px;}
.xe_c00149{left:681.120000px;}
.x1_c00149{left:691.920000px;}
.x30_c00149{left:702.720000px;}
@media print{
.v0_c00149{vertical-align:0.000000pt;}
.ls0_c00149{letter-spacing:0.000000pt;}
.ws0_c00149{word-spacing:-5.022490pt;}
.ws1_c00149{word-spacing:0.000000pt;}
.fs2_c00149{font-size:15.360000pt;}
.fs7_c00149{font-size:30.720000pt;}
.fs5_c00149{font-size:33.280000pt;}
.fsb_c00149{font-size:35.840000pt;}
.fsf_c00149{font-size:38.400000pt;}
.fs4_c00149{font-size:40.960000pt;}
.fs1_c00149{font-size:43.520000pt;}
.fs6_c00149{font-size:46.080000pt;}
.fsd_c00149{font-size:48.640000pt;}
.fsc_c00149{font-size:51.200000pt;}
.fs8_c00149{font-size:53.760000pt;}
.fs3_c00149{font-size:56.320000pt;}
.fsa_c00149{font-size:58.880000pt;}
.fs9_c00149{font-size:61.440000pt;}
.fs0_c00149{font-size:64.000000pt;}
.fs10_c00149{font-size:66.560000pt;}
.fse_c00149{font-size:76.800000pt;}
.y0_c00149{bottom:0.000000pt;}
.y77_c00149{bottom:50.560000pt;}
.y78_c00149{bottom:51.200000pt;}
.y74_c00149{bottom:51.840000pt;}
.y76_c00149{bottom:53.120000pt;}
.y73_c00149{bottom:53.760000pt;}
.y70_c00149{bottom:54.400000pt;}
.y6f_c00149{bottom:55.040000pt;}
.y6d_c00149{bottom:55.680000pt;}
.y6c_c00149{bottom:57.600000pt;}
.y79_c00149{bottom:78.080000pt;}
.y72_c00149{bottom:80.000000pt;}
.y6e_c00149{bottom:80.640000pt;}
.y75_c00149{bottom:81.280000pt;}
.y6b_c00149{bottom:82.560000pt;}
.y71_c00149{bottom:83.840000pt;}
.y6a_c00149{bottom:85.120000pt;}
.y69_c00149{bottom:117.760000pt;}
.y67_c00149{bottom:119.040000pt;}
.y68_c00149{bottom:120.960000pt;}
.y66_c00149{bottom:122.880000pt;}
.y65_c00149{bottom:154.880000pt;}
.y64_c00149{bottom:155.520000pt;}
.y63_c00149{bottom:157.440000pt;}
.y62_c00149{bottom:158.720000pt;}
.y61_c00149{bottom:159.360000pt;}
.y60_c00149{bottom:160.000000pt;}
.y5f_c00149{bottom:190.720000pt;}
.y5e_c00149{bottom:192.000000pt;}
.y5d_c00149{bottom:193.920000pt;}
.y5c_c00149{bottom:195.200000pt;}
.y5b_c00149{bottom:195.840000pt;}
.y5a_c00149{bottom:196.480000pt;}
.y59_c00149{bottom:197.760000pt;}
.y58_c00149{bottom:241.920000pt;}
.y57_c00149{bottom:243.840000pt;}
.y56_c00149{bottom:245.120000pt;}
.y55_c00149{bottom:277.120000pt;}
.y52_c00149{bottom:278.400000pt;}
.y53_c00149{bottom:279.040000pt;}
.y54_c00149{bottom:280.320000pt;}
.y51_c00149{bottom:282.240000pt;}
.y4f_c00149{bottom:315.520000pt;}
.y50_c00149{bottom:317.440000pt;}
.y4c_c00149{bottom:318.080000pt;}
.y4e_c00149{bottom:318.720000pt;}
.y4d_c00149{bottom:319.360000pt;}
.y4b_c00149{bottom:353.920000pt;}
.y49_c00149{bottom:355.200000pt;}
.y4a_c00149{bottom:357.120000pt;}
.y48_c00149{bottom:357.760000pt;}
.y47_c00149{bottom:359.040000pt;}
.y44_c00149{bottom:391.680000pt;}
.y43_c00149{bottom:392.960000pt;}
.y46_c00149{bottom:393.600000pt;}
.y45_c00149{bottom:394.880000pt;}
.y42_c00149{bottom:395.520000pt;}
.y41_c00149{bottom:440.320000pt;}
.y3f_c00149{bottom:440.960000pt;}
.y40_c00149{bottom:442.880000pt;}
.y3d_c00149{bottom:478.080000pt;}
.y3e_c00149{bottom:480.000000pt;}
.y3c_c00149{bottom:480.640000pt;}
.y3b_c00149{bottom:481.280000pt;}
.y39_c00149{bottom:516.480000pt;}
.y38_c00149{bottom:517.760000pt;}
.y37_c00149{bottom:518.400000pt;}
.y3a_c00149{bottom:519.040000pt;}
.y36_c00149{bottom:552.960000pt;}
.y35_c00149{bottom:554.240000pt;}
.y34_c00149{bottom:556.160000pt;}
.y33_c00149{bottom:556.800000pt;}
.y32_c00149{bottom:592.640000pt;}
.y30_c00149{bottom:593.920000pt;}
.y31_c00149{bottom:594.560000pt;}
.y2e_c00149{bottom:629.760000pt;}
.y2d_c00149{bottom:630.400000pt;}
.y2b_c00149{bottom:631.680000pt;}
.y2c_c00149{bottom:632.320000pt;}
.y2f_c00149{bottom:632.960000pt;}
.y2a_c00149{bottom:668.800000pt;}
.y27_c00149{bottom:670.080000pt;}
.y28_c00149{bottom:670.720000pt;}
.y29_c00149{bottom:671.360000pt;}
.y21_c00149{bottom:705.280000pt;}
.y23_c00149{bottom:705.920000pt;}
.y26_c00149{bottom:707.200000pt;}
.y22_c00149{bottom:707.840000pt;}
.y24_c00149{bottom:708.480000pt;}
.y25_c00149{bottom:709.120000pt;}
.y1d_c00149{bottom:743.680000pt;}
.y20_c00149{bottom:744.320000pt;}
.y1c_c00149{bottom:744.960000pt;}
.y1e_c00149{bottom:746.240000pt;}
.y1f_c00149{bottom:746.880000pt;}
.y19_c00149{bottom:780.800000pt;}
.y17_c00149{bottom:782.720000pt;}
.y18_c00149{bottom:784.000000pt;}
.y1a_c00149{bottom:784.640000pt;}
.y1b_c00149{bottom:785.280000pt;}
.y12_c00149{bottom:818.560000pt;}
.y13_c00149{bottom:819.200000pt;}
.y16_c00149{bottom:819.840000pt;}
.y11_c00149{bottom:821.120000pt;}
.y15_c00149{bottom:821.760000pt;}
.y14_c00149{bottom:822.400000pt;}
.yb_c00149{bottom:858.880000pt;}
.yd_c00149{bottom:859.520000pt;}
.yc_c00149{bottom:860.160000pt;}
.ye_c00149{bottom:860.800000pt;}
.yf_c00149{bottom:861.440000pt;}
.y10_c00149{bottom:862.080000pt;}
.y4_c00149{bottom:894.720000pt;}
.y5_c00149{bottom:895.360000pt;}
.y6_c00149{bottom:896.000000pt;}
.y2_c00149{bottom:896.640000pt;}
.y9_c00149{bottom:897.920000pt;}
.y3_c00149{bottom:898.560000pt;}
.y8_c00149{bottom:899.200000pt;}
.y7_c00149{bottom:899.840000pt;}
.ya_c00149{bottom:900.480000pt;}
.y1_c00149{bottom:974.080000pt;}
.h4_c00149{height:13.822500pt;}
.h9_c00149{height:27.645000pt;}
.h7_c00149{height:29.948750pt;}
.hd_c00149{height:32.252500pt;}
.h11_c00149{height:34.556250pt;}
.h6_c00149{height:36.860000pt;}
.h3_c00149{height:39.163750pt;}
.h8_c00149{height:41.467500pt;}
.hf_c00149{height:43.771250pt;}
.he_c00149{height:46.075000pt;}
.ha_c00149{height:48.378750pt;}
.h5_c00149{height:50.682500pt;}
.hc_c00149{height:52.986250pt;}
.hb_c00149{height:55.290000pt;}
.h2_c00149{height:57.593750pt;}
.h12_c00149{height:59.897500pt;}
.h10_c00149{height:69.112500pt;}
.h0_c00149{height:1025.280000pt;}
.h1_c00149{height:1025.333333pt;}
.w0_c00149{width:706.560000pt;}
.w1_c00149{width:706.666667pt;}
.x0_c00149{left:0.000000pt;}
.x34_c00149{left:56.960000pt;}
.x2_c00149{left:58.880000pt;}
.x51_c00149{left:60.160000pt;}
.x43_c00149{left:76.800000pt;}
.x52_c00149{left:78.080000pt;}
.x3e_c00149{left:85.120000pt;}
.x1e_c00149{left:86.400000pt;}
.x3_c00149{left:95.360000pt;}
.xf_c00149{left:96.640000pt;}
.x3a_c00149{left:103.040000pt;}
.x28_c00149{left:105.600000pt;}
.x4d_c00149{left:113.920000pt;}
.x15_c00149{left:115.200000pt;}
.x4_c00149{left:116.480000pt;}
.x46_c00149{left:123.520000pt;}
.x35_c00149{left:132.480000pt;}
.x49_c00149{left:135.040000pt;}
.x31_c00149{left:142.720000pt;}
.x29_c00149{left:152.320000pt;}
.x10_c00149{left:153.600000pt;}
.x1f_c00149{left:161.920000pt;}
.x32_c00149{left:171.520000pt;}
.x19_c00149{left:181.120000pt;}
.x11_c00149{left:182.400000pt;}
.x36_c00149{left:190.720000pt;}
.x20_c00149{left:200.320000pt;}
.x5_c00149{left:209.920000pt;}
.x3b_c00149{left:219.520000pt;}
.x21_c00149{left:228.480000pt;}
.x2a_c00149{left:238.080000pt;}
.x16_c00149{left:248.320000pt;}
.x6_c00149{left:257.280000pt;}
.x2b_c00149{left:266.240000pt;}
.x26_c00149{left:276.480000pt;}
.x4b_c00149{left:286.080000pt;}
.x7_c00149{left:295.680000pt;}
.x41_c00149{left:296.960000pt;}
.x2c_c00149{left:305.280000pt;}
.x47_c00149{left:314.240000pt;}
.x53_c00149{left:315.520000pt;}
.x12_c00149{left:316.800000pt;}
.x8_c00149{left:324.480000pt;}
.x4e_c00149{left:334.080000pt;}
.x1a_c00149{left:343.680000pt;}
.x9_c00149{left:353.920000pt;}
.x4f_c00149{left:362.240000pt;}
.x13_c00149{left:363.520000pt;}
.x22_c00149{left:372.480000pt;}
.x2d_c00149{left:382.720000pt;}
.x27_c00149{left:391.680000pt;}
.x14_c00149{left:400.640000pt;}
.x23_c00149{left:401.920000pt;}
.x3f_c00149{left:410.880000pt;}
.x17_c00149{left:412.160000pt;}
.x4c_c00149{left:421.120000pt;}
.x54_c00149{left:422.400000pt;}
.xa_c00149{left:430.080000pt;}
.x2e_c00149{left:440.960000pt;}
.x44_c00149{left:451.840000pt;}
.xb_c00149{left:458.880000pt;}
.x1b_c00149{left:460.160000pt;}
.x18_c00149{left:469.760000pt;}
.x3c_c00149{left:478.080000pt;}
.x33_c00149{left:487.680000pt;}
.x1c_c00149{left:488.960000pt;}
.x37_c00149{left:490.240000pt;}
.x40_c00149{left:507.520000pt;}
.xc_c00149{left:508.800000pt;}
.x48_c00149{left:516.480000pt;}
.x24_c00149{left:517.760000pt;}
.x50_c00149{left:526.080000pt;}
.x1d_c00149{left:528.000000pt;}
.x42_c00149{left:535.680000pt;}
.x38_c00149{left:536.960000pt;}
.x3d_c00149{left:546.560000pt;}
.x25_c00149{left:554.880000pt;}
.x45_c00149{left:564.480000pt;}
.x39_c00149{left:566.400000pt;}
.x4a_c00149{left:574.720000pt;}
.xd_c00149{left:576.640000pt;}
.x2f_c00149{left:595.200000pt;}
.xe_c00149{left:605.440000pt;}
.x1_c00149{left:615.040000pt;}
.x30_c00149{left:624.640000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8d4f575173555d27f81d1979.woff2')format("woff");}.ff1_c00150{font-family:ff1_c00150;line-height:1.109863;font-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_c00150{transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);}
.m67_c00150{transform:matrix(0.223650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223650,0.000000,0.000000,0.250000,0,0);}
.m29_c00150{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m2c_c00150{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m7_c00150{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m2b_c00150{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m25_c00150{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1_c00150{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m3_c00150{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00150{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m64_c00150{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m50_c00150{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00150{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00150{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);}
.m2e_c00150{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m30_c00150{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00150{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m42_c00150{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m17_c00150{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m41_c00150{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m31_c00150{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00150{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m47_c00150{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m2_c00150{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m27_c00150{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m9_c00150{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00150{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m44_c00150{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m11_c00150{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m54_c00150{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m6_c00150{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m60_c00150{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m52_c00150{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m49_c00150{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m56_c00150{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m19_c00150{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.mf_c00150{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m45_c00150{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m4_c00150{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);}
.m4c_c00150{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m38_c00150{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.mb_c00150{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m53_c00150{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);}
.m65_c00150{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m16_c00150{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00150{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);}
.m26_c00150{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);}
.m5e_c00150{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m40_c00150{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);}
.m36_c00150{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m61_c00150{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);}
.m5_c00150{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00150{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m46_c00150{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m35_c00150{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00150{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);}
.m0_c00150{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m62_c00150{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);}
.m15_c00150{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);}
.m34_c00150{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00150{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m18_c00150{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m59_c00150{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);}
.m5d_c00150{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m22_c00150{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00150{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);}
.m10_c00150{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m20_c00150{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.md_c00150{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00150{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);}
.ma_c00150{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m14_c00150{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m21_c00150{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m39_c00150{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);}
.m5b_c00150{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m13_c00150{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00150{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m63_c00150{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m24_c00150{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m55_c00150{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);}
.mc_c00150{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00150{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m33_c00150{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);}
.m12_c00150{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00150{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);}
.m32_c00150{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m66_c00150{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00150{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m37_c00150{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m48_c00150{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);}
.m4e_c00150{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m28_c00150{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m58_c00150{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00150{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00150{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00150{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);}
.m57_c00150{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00150{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m43_c00150{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00150{transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);}
.m23_c00150{transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);}
.m51_c00150{transform:matrix(0.700000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.700000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.700000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00150{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);}
.m8_c00150{transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);}
.v0_c00150{vertical-align:0.000000px;}
.ls0_c00150{letter-spacing:0.000000px;}
.sc__c00150{text-shadow:none;}
.sc0_c00150{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00150{-webkit-text-stroke:0px transparent;}
.sc0_c00150{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00150{word-spacing:0.000000px;}
.fc0_c00150{color:transparent;}
.fs5_c00150{font-size:23.040000px;}
.fsa_c00150{font-size:34.560000px;}
.fsd_c00150{font-size:37.440000px;}
.fsb_c00150{font-size:43.200000px;}
.fs0_c00150{font-size:46.080000px;}
.fs2_c00150{font-size:48.960000px;}
.fs6_c00150{font-size:51.840000px;}
.fsc_c00150{font-size:54.720000px;}
.fs3_c00150{font-size:57.600000px;}
.fs1_c00150{font-size:60.480000px;}
.fs7_c00150{font-size:63.360000px;}
.fs9_c00150{font-size:66.240000px;}
.fs8_c00150{font-size:69.120000px;}
.fse_c00150{font-size:72.000000px;}
.fs4_c00150{font-size:77.760000px;}
.fsf_c00150{font-size:103.680000px;}
.y0_c00150{bottom:0.000000px;}
.y7b_c00150{bottom:38.880000px;}
.y7a_c00150{bottom:48.240000px;}
.y79_c00150{bottom:50.400000px;}
.y77_c00150{bottom:51.840000px;}
.y73_c00150{bottom:52.560000px;}
.y74_c00150{bottom:53.280000px;}
.y78_c00150{bottom:54.000000px;}
.y76_c00150{bottom:54.720000px;}
.y75_c00150{bottom:55.440000px;}
.y72_c00150{bottom:58.320000px;}
.y6e_c00150{bottom:92.880000px;}
.y71_c00150{bottom:94.320000px;}
.y6f_c00150{bottom:95.040000px;}
.y70_c00150{bottom:95.760000px;}
.y6d_c00150{bottom:96.480000px;}
.y6c_c00150{bottom:97.200000px;}
.y6b_c00150{bottom:97.920000px;}
.y6a_c00150{bottom:99.360000px;}
.y67_c00150{bottom:135.360000px;}
.y66_c00150{bottom:136.800000px;}
.y69_c00150{bottom:137.520000px;}
.y64_c00150{bottom:138.240000px;}
.y68_c00150{bottom:138.960000px;}
.y63_c00150{bottom:139.680000px;}
.y65_c00150{bottom:140.400000px;}
.y61_c00150{bottom:189.360000px;}
.y62_c00150{bottom:191.520000px;}
.y60_c00150{bottom:192.240000px;}
.y5f_c00150{bottom:192.960000px;}
.y5e_c00150{bottom:193.680000px;}
.y5d_c00150{bottom:194.400000px;}
.y5c_c00150{bottom:231.120000px;}
.y59_c00150{bottom:233.280000px;}
.y5b_c00150{bottom:234.000000px;}
.y5a_c00150{bottom:234.720000px;}
.y58_c00150{bottom:235.440000px;}
.y57_c00150{bottom:236.160000px;}
.y55_c00150{bottom:275.040000px;}
.y56_c00150{bottom:277.200000px;}
.y53_c00150{bottom:277.920000px;}
.y54_c00150{bottom:278.640000px;}
.y51_c00150{bottom:329.760000px;}
.y49_c00150{bottom:330.480000px;}
.y52_c00150{bottom:331.920000px;}
.y50_c00150{bottom:352.800000px;}
.y48_c00150{bottom:353.520000px;}
.y4a_c00150{bottom:354.240000px;}
.y46_c00150{bottom:395.280000px;}
.y45_c00150{bottom:396.000000px;}
.y4f_c00150{bottom:396.720000px;}
.y47_c00150{bottom:425.520000px;}
.y44_c00150{bottom:426.240000px;}
.y4e_c00150{bottom:427.680000px;}
.y43_c00150{bottom:429.840000px;}
.y4d_c00150{bottom:457.920000px;}
.y4c_c00150{bottom:458.640000px;}
.y41_c00150{bottom:460.080000px;}
.y42_c00150{bottom:460.800000px;}
.y4b_c00150{bottom:461.520000px;}
.y3e_c00150{bottom:499.680000px;}
.y3f_c00150{bottom:500.400000px;}
.y40_c00150{bottom:502.560000px;}
.y39_c00150{bottom:541.440000px;}
.y3a_c00150{bottom:542.160000px;}
.y3d_c00150{bottom:542.880000px;}
.y3c_c00150{bottom:543.600000px;}
.y38_c00150{bottom:544.320000px;}
.y3b_c00150{bottom:545.040000px;}
.y37_c00150{bottom:545.760000px;}
.y34_c00150{bottom:586.800000px;}
.y33_c00150{bottom:587.520000px;}
.y35_c00150{bottom:588.240000px;}
.y36_c00150{bottom:588.960000px;}
.y32_c00150{bottom:628.560000px;}
.y2e_c00150{bottom:629.280000px;}
.y30_c00150{bottom:630.000000px;}
.y2f_c00150{bottom:630.720000px;}
.y31_c00150{bottom:631.440000px;}
.y23_c00150{bottom:681.120000px;}
.y24_c00150{bottom:681.840000px;}
.y2a_c00150{bottom:683.280000px;}
.y2c_c00150{bottom:684.720000px;}
.y2d_c00150{bottom:686.880000px;}
.y22_c00150{bottom:704.160000px;}
.y29_c00150{bottom:704.880000px;}
.y2b_c00150{bottom:705.600000px;}
.y1d_c00150{bottom:743.760000px;}
.y28_c00150{bottom:749.520000px;}
.y20_c00150{bottom:776.880000px;}
.y1c_c00150{bottom:777.600000px;}
.y27_c00150{bottom:778.320000px;}
.y1b_c00150{bottom:779.040000px;}
.y21_c00150{bottom:779.760000px;}
.y1a_c00150{bottom:809.280000px;}
.y18_c00150{bottom:810.000000px;}
.y19_c00150{bottom:810.720000px;}
.y1e_c00150{bottom:811.440000px;}
.y26_c00150{bottom:812.160000px;}
.y1f_c00150{bottom:812.880000px;}
.y25_c00150{bottom:813.600000px;}
.y15_c00150{bottom:850.320000px;}
.y16_c00150{bottom:851.040000px;}
.y17_c00150{bottom:851.760000px;}
.y10_c00150{bottom:892.080000px;}
.y11_c00150{bottom:895.680000px;}
.y13_c00150{bottom:896.400000px;}
.y12_c00150{bottom:897.840000px;}
.y14_c00150{bottom:900.720000px;}
.yb_c00150{bottom:936.720000px;}
.y9_c00150{bottom:938.880000px;}
.ya_c00150{bottom:939.600000px;}
.yd_c00150{bottom:940.320000px;}
.yc_c00150{bottom:941.040000px;}
.ye_c00150{bottom:941.760000px;}
.yf_c00150{bottom:943.200000px;}
.y2_c00150{bottom:991.440000px;}
.y4_c00150{bottom:992.880000px;}
.y7_c00150{bottom:994.320000px;}
.y8_c00150{bottom:997.920000px;}
.y1_c00150{bottom:1013.040000px;}
.y3_c00150{bottom:1014.480000px;}
.y6_c00150{bottom:1015.920000px;}
.y5_c00150{bottom:1082.160000px;}
.h7_c00150{height:20.733750px;}
.hc_c00150{height:31.100625px;}
.hf_c00150{height:33.692344px;}
.hd_c00150{height:38.875781px;}
.h2_c00150{height:41.467500px;}
.h4_c00150{height:44.059219px;}
.h8_c00150{height:46.650937px;}
.he_c00150{height:49.242656px;}
.h5_c00150{height:51.834375px;}
.h3_c00150{height:54.426094px;}
.h9_c00150{height:57.017812px;}
.hb_c00150{height:59.609531px;}
.ha_c00150{height:62.201250px;}
.h10_c00150{height:64.792969px;}
.h6_c00150{height:69.976406px;}
.h11_c00150{height:93.301875px;}
.h0_c00150{height:1153.440000px;}
.h1_c00150{height:1153.500000px;}
.w0_c00150{width:794.880000px;}
.w1_c00150{width:795.000000px;}
.x0_c00150{left:0.000000px;}
.x13_c00150{left:67.680000px;}
.x1c_c00150{left:69.840000px;}
.x39_c00150{left:71.280000px;}
.x1d_c00150{left:88.560000px;}
.x1f_c00150{left:90.000000px;}
.x33_c00150{left:99.360000px;}
.x56_c00150{left:101.520000px;}
.x59_c00150{left:103.680000px;}
.x31_c00150{left:110.160000px;}
.x4e_c00150{left:111.600000px;}
.x1e_c00150{left:120.960000px;}
.x3b_c00150{left:123.120000px;}
.x34_c00150{left:131.760000px;}
.x1_c00150{left:143.280000px;}
.x3d_c00150{left:144.720000px;}
.x1a_c00150{left:152.640000px;}
.x9_c00150{left:174.960000px;}
.x2b_c00150{left:176.400000px;}
.x14_c00150{left:185.040000px;}
.x1b_c00150{left:196.560000px;}
.xa_c00150{left:205.920000px;}
.x20_c00150{left:207.360000px;}
.x2_c00150{left:218.160000px;}
.x3e_c00150{left:219.600000px;}
.x2c_c00150{left:228.960000px;}
.xb_c00150{left:237.600000px;}
.x46_c00150{left:239.760000px;}
.x21_c00150{left:250.560000px;}
.x35_c00150{left:259.920000px;}
.x3c_c00150{left:261.360000px;}
.x3a_c00150{left:272.160000px;}
.x5a_c00150{left:282.960000px;}
.x4_c00150{left:293.040000px;}
.xc_c00150{left:303.840000px;}
.x22_c00150{left:314.640000px;}
.x3f_c00150{left:326.160000px;}
.xd_c00150{left:335.520000px;}
.x4a_c00150{left:336.960000px;}
.x15_c00150{left:345.600000px;}
.x4f_c00150{left:347.760000px;}
.x36_c00150{left:357.840000px;}
.x4b_c00150{left:359.280000px;}
.x5_c00150{left:368.640000px;}
.x40_c00150{left:380.160000px;}
.x57_c00150{left:381.600000px;}
.x37_c00150{left:390.960000px;}
.x23_c00150{left:400.320000px;}
.x53_c00150{left:401.760000px;}
.x29_c00150{left:411.120000px;}
.x45_c00150{left:413.280000px;}
.x6_c00150{left:421.920000px;}
.x41_c00150{left:423.360000px;}
.x16_c00150{left:432.000000px;}
.x47_c00150{left:434.160000px;}
.xe_c00150{left:443.520000px;}
.x2d_c00150{left:444.960000px;}
.x2a_c00150{left:455.040000px;}
.x50_c00150{left:456.480000px;}
.x7_c00150{left:465.120000px;}
.x24_c00150{left:466.560000px;}
.x5b_c00150{left:479.520000px;}
.x25_c00150{left:486.720000px;}
.x27_c00150{left:488.160000px;}
.x8_c00150{left:497.520000px;}
.x54_c00150{left:498.960000px;}
.x5c_c00150{left:500.400000px;}
.x28_c00150{left:509.040000px;}
.x51_c00150{left:510.480000px;}
.xf_c00150{left:519.120000px;}
.x42_c00150{left:520.560000px;}
.x17_c00150{left:530.640000px;}
.x26_c00150{left:542.160000px;}
.x52_c00150{left:543.600000px;}
.x10_c00150{left:551.520000px;}
.x4c_c00150{left:552.960000px;}
.x5d_c00150{left:555.120000px;}
.x32_c00150{left:563.760000px;}
.x2e_c00150{left:574.560000px;}
.x43_c00150{left:576.720000px;}
.x55_c00150{left:585.360000px;}
.x44_c00150{left:587.520000px;}
.x11_c00150{left:594.720000px;}
.x38_c00150{left:596.160000px;}
.x2f_c00150{left:606.960000px;}
.x48_c00150{left:619.200000px;}
.x58_c00150{left:630.720000px;}
.x4d_c00150{left:640.800000px;}
.x18_c00150{left:642.240000px;}
.x30_c00150{left:650.880000px;}
.x12_c00150{left:671.760000px;}
.x3_c00150{left:673.200000px;}
.x19_c00150{left:681.840000px;}
.x49_c00150{left:684.000000px;}
.x5e_c00150{left:697.680000px;}
@media print{
.v0_c00150{vertical-align:0.000000pt;}
.ls0_c00150{letter-spacing:0.000000pt;}
.ws0_c00150{word-spacing:0.000000pt;}
.fs5_c00150{font-size:20.480000pt;}
.fsa_c00150{font-size:30.720000pt;}
.fsd_c00150{font-size:33.280000pt;}
.fsb_c00150{font-size:38.400000pt;}
.fs0_c00150{font-size:40.960000pt;}
.fs2_c00150{font-size:43.520000pt;}
.fs6_c00150{font-size:46.080000pt;}
.fsc_c00150{font-size:48.640000pt;}
.fs3_c00150{font-size:51.200000pt;}
.fs1_c00150{font-size:53.760000pt;}
.fs7_c00150{font-size:56.320000pt;}
.fs9_c00150{font-size:58.880000pt;}
.fs8_c00150{font-size:61.440000pt;}
.fse_c00150{font-size:64.000000pt;}
.fs4_c00150{font-size:69.120000pt;}
.fsf_c00150{font-size:92.160000pt;}
.y0_c00150{bottom:0.000000pt;}
.y7b_c00150{bottom:34.560000pt;}
.y7a_c00150{bottom:42.880000pt;}
.y79_c00150{bottom:44.800000pt;}
.y77_c00150{bottom:46.080000pt;}
.y73_c00150{bottom:46.720000pt;}
.y74_c00150{bottom:47.360000pt;}
.y78_c00150{bottom:48.000000pt;}
.y76_c00150{bottom:48.640000pt;}
.y75_c00150{bottom:49.280000pt;}
.y72_c00150{bottom:51.840000pt;}
.y6e_c00150{bottom:82.560000pt;}
.y71_c00150{bottom:83.840000pt;}
.y6f_c00150{bottom:84.480000pt;}
.y70_c00150{bottom:85.120000pt;}
.y6d_c00150{bottom:85.760000pt;}
.y6c_c00150{bottom:86.400000pt;}
.y6b_c00150{bottom:87.040000pt;}
.y6a_c00150{bottom:88.320000pt;}
.y67_c00150{bottom:120.320000pt;}
.y66_c00150{bottom:121.600000pt;}
.y69_c00150{bottom:122.240000pt;}
.y64_c00150{bottom:122.880000pt;}
.y68_c00150{bottom:123.520000pt;}
.y63_c00150{bottom:124.160000pt;}
.y65_c00150{bottom:124.800000pt;}
.y61_c00150{bottom:168.320000pt;}
.y62_c00150{bottom:170.240000pt;}
.y60_c00150{bottom:170.880000pt;}
.y5f_c00150{bottom:171.520000pt;}
.y5e_c00150{bottom:172.160000pt;}
.y5d_c00150{bottom:172.800000pt;}
.y5c_c00150{bottom:205.440000pt;}
.y59_c00150{bottom:207.360000pt;}
.y5b_c00150{bottom:208.000000pt;}
.y5a_c00150{bottom:208.640000pt;}
.y58_c00150{bottom:209.280000pt;}
.y57_c00150{bottom:209.920000pt;}
.y55_c00150{bottom:244.480000pt;}
.y56_c00150{bottom:246.400000pt;}
.y53_c00150{bottom:247.040000pt;}
.y54_c00150{bottom:247.680000pt;}
.y51_c00150{bottom:293.120000pt;}
.y49_c00150{bottom:293.760000pt;}
.y52_c00150{bottom:295.040000pt;}
.y50_c00150{bottom:313.600000pt;}
.y48_c00150{bottom:314.240000pt;}
.y4a_c00150{bottom:314.880000pt;}
.y46_c00150{bottom:351.360000pt;}
.y45_c00150{bottom:352.000000pt;}
.y4f_c00150{bottom:352.640000pt;}
.y47_c00150{bottom:378.240000pt;}
.y44_c00150{bottom:378.880000pt;}
.y4e_c00150{bottom:380.160000pt;}
.y43_c00150{bottom:382.080000pt;}
.y4d_c00150{bottom:407.040000pt;}
.y4c_c00150{bottom:407.680000pt;}
.y41_c00150{bottom:408.960000pt;}
.y42_c00150{bottom:409.600000pt;}
.y4b_c00150{bottom:410.240000pt;}
.y3e_c00150{bottom:444.160000pt;}
.y3f_c00150{bottom:444.800000pt;}
.y40_c00150{bottom:446.720000pt;}
.y39_c00150{bottom:481.280000pt;}
.y3a_c00150{bottom:481.920000pt;}
.y3d_c00150{bottom:482.560000pt;}
.y3c_c00150{bottom:483.200000pt;}
.y38_c00150{bottom:483.840000pt;}
.y3b_c00150{bottom:484.480000pt;}
.y37_c00150{bottom:485.120000pt;}
.y34_c00150{bottom:521.600000pt;}
.y33_c00150{bottom:522.240000pt;}
.y35_c00150{bottom:522.880000pt;}
.y36_c00150{bottom:523.520000pt;}
.y32_c00150{bottom:558.720000pt;}
.y2e_c00150{bottom:559.360000pt;}
.y30_c00150{bottom:560.000000pt;}
.y2f_c00150{bottom:560.640000pt;}
.y31_c00150{bottom:561.280000pt;}
.y23_c00150{bottom:605.440000pt;}
.y24_c00150{bottom:606.080000pt;}
.y2a_c00150{bottom:607.360000pt;}
.y2c_c00150{bottom:608.640000pt;}
.y2d_c00150{bottom:610.560000pt;}
.y22_c00150{bottom:625.920000pt;}
.y29_c00150{bottom:626.560000pt;}
.y2b_c00150{bottom:627.200000pt;}
.y1d_c00150{bottom:661.120000pt;}
.y28_c00150{bottom:666.240000pt;}
.y20_c00150{bottom:690.560000pt;}
.y1c_c00150{bottom:691.200000pt;}
.y27_c00150{bottom:691.840000pt;}
.y1b_c00150{bottom:692.480000pt;}
.y21_c00150{bottom:693.120000pt;}
.y1a_c00150{bottom:719.360000pt;}
.y18_c00150{bottom:720.000000pt;}
.y19_c00150{bottom:720.640000pt;}
.y1e_c00150{bottom:721.280000pt;}
.y26_c00150{bottom:721.920000pt;}
.y1f_c00150{bottom:722.560000pt;}
.y25_c00150{bottom:723.200000pt;}
.y15_c00150{bottom:755.840000pt;}
.y16_c00150{bottom:756.480000pt;}
.y17_c00150{bottom:757.120000pt;}
.y10_c00150{bottom:792.960000pt;}
.y11_c00150{bottom:796.160000pt;}
.y13_c00150{bottom:796.800000pt;}
.y12_c00150{bottom:798.080000pt;}
.y14_c00150{bottom:800.640000pt;}
.yb_c00150{bottom:832.640000pt;}
.y9_c00150{bottom:834.560000pt;}
.ya_c00150{bottom:835.200000pt;}
.yd_c00150{bottom:835.840000pt;}
.yc_c00150{bottom:836.480000pt;}
.ye_c00150{bottom:837.120000pt;}
.yf_c00150{bottom:838.400000pt;}
.y2_c00150{bottom:881.280000pt;}
.y4_c00150{bottom:882.560000pt;}
.y7_c00150{bottom:883.840000pt;}
.y8_c00150{bottom:887.040000pt;}
.y1_c00150{bottom:900.480000pt;}
.y3_c00150{bottom:901.760000pt;}
.y6_c00150{bottom:903.040000pt;}
.y5_c00150{bottom:961.920000pt;}
.h7_c00150{height:18.430000pt;}
.hc_c00150{height:27.645000pt;}
.hf_c00150{height:29.948750pt;}
.hd_c00150{height:34.556250pt;}
.h2_c00150{height:36.860000pt;}
.h4_c00150{height:39.163750pt;}
.h8_c00150{height:41.467500pt;}
.he_c00150{height:43.771250pt;}
.h5_c00150{height:46.075000pt;}
.h3_c00150{height:48.378750pt;}
.h9_c00150{height:50.682500pt;}
.hb_c00150{height:52.986250pt;}
.ha_c00150{height:55.290000pt;}
.h10_c00150{height:57.593750pt;}
.h6_c00150{height:62.201250pt;}
.h11_c00150{height:82.935000pt;}
.h0_c00150{height:1025.280000pt;}
.h1_c00150{height:1025.333333pt;}
.w0_c00150{width:706.560000pt;}
.w1_c00150{width:706.666667pt;}
.x0_c00150{left:0.000000pt;}
.x13_c00150{left:60.160000pt;}
.x1c_c00150{left:62.080000pt;}
.x39_c00150{left:63.360000pt;}
.x1d_c00150{left:78.720000pt;}
.x1f_c00150{left:80.000000pt;}
.x33_c00150{left:88.320000pt;}
.x56_c00150{left:90.240000pt;}
.x59_c00150{left:92.160000pt;}
.x31_c00150{left:97.920000pt;}
.x4e_c00150{left:99.200000pt;}
.x1e_c00150{left:107.520000pt;}
.x3b_c00150{left:109.440000pt;}
.x34_c00150{left:117.120000pt;}
.x1_c00150{left:127.360000pt;}
.x3d_c00150{left:128.640000pt;}
.x1a_c00150{left:135.680000pt;}
.x9_c00150{left:155.520000pt;}
.x2b_c00150{left:156.800000pt;}
.x14_c00150{left:164.480000pt;}
.x1b_c00150{left:174.720000pt;}
.xa_c00150{left:183.040000pt;}
.x20_c00150{left:184.320000pt;}
.x2_c00150{left:193.920000pt;}
.x3e_c00150{left:195.200000pt;}
.x2c_c00150{left:203.520000pt;}
.xb_c00150{left:211.200000pt;}
.x46_c00150{left:213.120000pt;}
.x21_c00150{left:222.720000pt;}
.x35_c00150{left:231.040000pt;}
.x3c_c00150{left:232.320000pt;}
.x3a_c00150{left:241.920000pt;}
.x5a_c00150{left:251.520000pt;}
.x4_c00150{left:260.480000pt;}
.xc_c00150{left:270.080000pt;}
.x22_c00150{left:279.680000pt;}
.x3f_c00150{left:289.920000pt;}
.xd_c00150{left:298.240000pt;}
.x4a_c00150{left:299.520000pt;}
.x15_c00150{left:307.200000pt;}
.x4f_c00150{left:309.120000pt;}
.x36_c00150{left:318.080000pt;}
.x4b_c00150{left:319.360000pt;}
.x5_c00150{left:327.680000pt;}
.x40_c00150{left:337.920000pt;}
.x57_c00150{left:339.200000pt;}
.x37_c00150{left:347.520000pt;}
.x23_c00150{left:355.840000pt;}
.x53_c00150{left:357.120000pt;}
.x29_c00150{left:365.440000pt;}
.x45_c00150{left:367.360000pt;}
.x6_c00150{left:375.040000pt;}
.x41_c00150{left:376.320000pt;}
.x16_c00150{left:384.000000pt;}
.x47_c00150{left:385.920000pt;}
.xe_c00150{left:394.240000pt;}
.x2d_c00150{left:395.520000pt;}
.x2a_c00150{left:404.480000pt;}
.x50_c00150{left:405.760000pt;}
.x7_c00150{left:413.440000pt;}
.x24_c00150{left:414.720000pt;}
.x5b_c00150{left:426.240000pt;}
.x25_c00150{left:432.640000pt;}
.x27_c00150{left:433.920000pt;}
.x8_c00150{left:442.240000pt;}
.x54_c00150{left:443.520000pt;}
.x5c_c00150{left:444.800000pt;}
.x28_c00150{left:452.480000pt;}
.x51_c00150{left:453.760000pt;}
.xf_c00150{left:461.440000pt;}
.x42_c00150{left:462.720000pt;}
.x17_c00150{left:471.680000pt;}
.x26_c00150{left:481.920000pt;}
.x52_c00150{left:483.200000pt;}
.x10_c00150{left:490.240000pt;}
.x4c_c00150{left:491.520000pt;}
.x5d_c00150{left:493.440000pt;}
.x32_c00150{left:501.120000pt;}
.x2e_c00150{left:510.720000pt;}
.x43_c00150{left:512.640000pt;}
.x55_c00150{left:520.320000pt;}
.x44_c00150{left:522.240000pt;}
.x11_c00150{left:528.640000pt;}
.x38_c00150{left:529.920000pt;}
.x2f_c00150{left:539.520000pt;}
.x48_c00150{left:550.400000pt;}
.x58_c00150{left:560.640000pt;}
.x4d_c00150{left:569.600000pt;}
.x18_c00150{left:570.880000pt;}
.x30_c00150{left:578.560000pt;}
.x12_c00150{left:597.120000pt;}
.x3_c00150{left:598.400000pt;}
.x19_c00150{left:606.080000pt;}
.x49_c00150{left:608.000000pt;}
.x5e_c00150{left:620.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8363241fc6d6656f8735afa1.woff2')format("woff");}.ff1_c00151{font-family:ff1_c00151;line-height:1.109863;font-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_c00151{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.ma_c00151{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m46_c00151{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00151{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m40_c00151{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m37_c00151{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m38_c00151{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m45_c00151{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m59_c00151{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00151{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m53_c00151{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00151{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00151{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m0_c00151{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00151{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00151{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m56_c00151{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m20_c00151{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m4_c00151{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00151{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m8_c00151{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);}
.m1e_c00151{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00151{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);}
.m3f_c00151{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00151{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);}
.m27_c00151{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);}
.m3d_c00151{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m41_c00151{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.md_c00151{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m2_c00151{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);}
.m22_c00151{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);}
.m50_c00151{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.me_c00151{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00151{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);}
.m2c_c00151{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);}
.m36_c00151{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00151{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m30_c00151{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m3_c00151{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00151{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);}
.m14_c00151{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m29_c00151{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m6_c00151{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);}
.m23_c00151{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m24_c00151{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00151{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00151{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m15_c00151{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);}
.m21_c00151{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m16_c00151{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);}
.m60_c00151{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00151{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);}
.m43_c00151{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m61_c00151{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m55_c00151{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m58_c00151{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);}
.m39_c00151{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m57_c00151{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m5_c00151{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);}
.m48_c00151{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m25_c00151{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00151{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00151{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m9_c00151{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m10_c00151{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);}
.mc_c00151{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);}
.m5b_c00151{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m12_c00151{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m19_c00151{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m49_c00151{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);}
.m44_c00151{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m26_c00151{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m28_c00151{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);}
.m54_c00151{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.mb_c00151{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m11_c00151{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00151{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00151{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00151{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);}
.m13_c00151{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);}
.m4f_c00151{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m1_c00151{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m17_c00151{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00151{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00151{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.mf_c00151{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00151{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m7_c00151{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);}
.m33_c00151{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);}
.m51_c00151{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m31_c00151{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m42_c00151{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m32_c00151{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m35_c00151{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00151{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m47_c00151{transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);}
.m52_c00151{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m34_c00151{transform:matrix(0.695000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.695000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.695000,0.000000,0.000000,0.250000,0,0);}
.v0_c00151{vertical-align:0.000000px;}
.v1_c00151{vertical-align:14.400000px;}
.ls0_c00151{letter-spacing:0.000000px;}
.sc__c00151{text-shadow:none;}
.sc0_c00151{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00151{-webkit-text-stroke:0px transparent;}
.sc0_c00151{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00151{word-spacing:0.000000px;}
.ws0_c00151{word-spacing:0.982560px;}
.fc0_c00151{color:transparent;}
.fs1_c00151{font-size:34.560000px;}
.fs6_c00151{font-size:37.440000px;}
.fsc_c00151{font-size:40.320000px;}
.fs8_c00151{font-size:43.200000px;}
.fsa_c00151{font-size:46.080000px;}
.fs3_c00151{font-size:48.960000px;}
.fs4_c00151{font-size:51.840000px;}
.fsb_c00151{font-size:54.720000px;}
.fsd_c00151{font-size:57.600000px;}
.fs9_c00151{font-size:60.480000px;}
.fs5_c00151{font-size:63.360000px;}
.fs2_c00151{font-size:66.240000px;}
.fs7_c00151{font-size:69.120000px;}
.fse_c00151{font-size:72.000000px;}
.fsf_c00151{font-size:74.880000px;}
.fs0_c00151{font-size:77.760000px;}
.y0_c00151{bottom:0.000000px;}
.y90_c00151{bottom:56.880000px;}
.y8d_c00151{bottom:58.320000px;}
.y8f_c00151{bottom:59.040000px;}
.y8e_c00151{bottom:59.760000px;}
.y8c_c00151{bottom:60.480000px;}
.y8a_c00151{bottom:61.200000px;}
.y8b_c00151{bottom:61.920000px;}
.y89_c00151{bottom:64.080000px;}
.y88_c00151{bottom:64.800000px;}
.y87_c00151{bottom:65.520000px;}
.y86_c00151{bottom:66.960000px;}
.y85_c00151{bottom:100.800000px;}
.y81_c00151{bottom:101.520000px;}
.y82_c00151{bottom:102.240000px;}
.y84_c00151{bottom:103.680000px;}
.y83_c00151{bottom:104.400000px;}
.y80_c00151{bottom:105.840000px;}
.y7e_c00151{bottom:106.560000px;}
.y7f_c00151{bottom:107.280000px;}
.y7c_c00151{bottom:144.720000px;}
.y7d_c00151{bottom:146.160000px;}
.y77_c00151{bottom:147.600000px;}
.y7a_c00151{bottom:148.320000px;}
.y7b_c00151{bottom:149.040000px;}
.y79_c00151{bottom:149.760000px;}
.y78_c00151{bottom:150.480000px;}
.y76_c00151{bottom:186.480000px;}
.y72_c00151{bottom:188.640000px;}
.y75_c00151{bottom:189.360000px;}
.y74_c00151{bottom:190.080000px;}
.y6e_c00151{bottom:190.800000px;}
.y73_c00151{bottom:191.520000px;}
.y71_c00151{bottom:192.240000px;}
.y70_c00151{bottom:192.960000px;}
.y6f_c00151{bottom:193.680000px;}
.y6b_c00151{bottom:230.400000px;}
.y6d_c00151{bottom:231.120000px;}
.y69_c00151{bottom:231.840000px;}
.y6c_c00151{bottom:232.560000px;}
.y6a_c00151{bottom:233.280000px;}
.y68_c00151{bottom:234.720000px;}
.y67_c00151{bottom:235.440000px;}
.y66_c00151{bottom:236.880000px;}
.y65_c00151{bottom:271.440000px;}
.y63_c00151{bottom:274.320000px;}
.y64_c00151{bottom:275.040000px;}
.y61_c00151{bottom:275.760000px;}
.y62_c00151{bottom:276.480000px;}
.y60_c00151{bottom:280.080000px;}
.y5f_c00151{bottom:280.800000px;}
.y5e_c00151{bottom:315.360000px;}
.y5d_c00151{bottom:316.080000px;}
.y5c_c00151{bottom:316.800000px;}
.y5b_c00151{bottom:317.520000px;}
.y59_c00151{bottom:318.240000px;}
.y5a_c00151{bottom:318.960000px;}
.y57_c00151{bottom:320.400000px;}
.y58_c00151{bottom:321.120000px;}
.y53_c00151{bottom:360.000000px;}
.y56_c00151{bottom:361.440000px;}
.y55_c00151{bottom:362.160000px;}
.y54_c00151{bottom:362.880000px;}
.y52_c00151{bottom:364.320000px;}
.y50_c00151{bottom:401.760000px;}
.y51_c00151{bottom:403.920000px;}
.y4f_c00151{bottom:404.640000px;}
.y4d_c00151{bottom:405.360000px;}
.y4e_c00151{bottom:406.080000px;}
.y4a_c00151{bottom:445.680000px;}
.y4c_c00151{bottom:447.120000px;}
.y4b_c00151{bottom:447.840000px;}
.y49_c00151{bottom:448.560000px;}
.y48_c00151{bottom:501.120000px;}
.y46_c00151{bottom:541.440000px;}
.y44_c00151{bottom:542.160000px;}
.y47_c00151{bottom:543.600000px;}
.y45_c00151{bottom:544.320000px;}
.y43_c00151{bottom:545.040000px;}
.y3f_c00151{bottom:583.200000px;}
.y3d_c00151{bottom:583.920000px;}
.y40_c00151{bottom:584.640000px;}
.y3e_c00151{bottom:585.360000px;}
.y42_c00151{bottom:586.080000px;}
.y41_c00151{bottom:586.800000px;}
.y3c_c00151{bottom:587.520000px;}
.y3a_c00151{bottom:626.400000px;}
.y3b_c00151{bottom:627.120000px;}
.y39_c00151{bottom:629.280000px;}
.y38_c00151{bottom:630.000000px;}
.y34_c00151{bottom:669.600000px;}
.y36_c00151{bottom:670.320000px;}
.y35_c00151{bottom:671.760000px;}
.y33_c00151{bottom:672.480000px;}
.y37_c00151{bottom:673.200000px;}
.y2c_c00151{bottom:712.080000px;}
.y2f_c00151{bottom:712.800000px;}
.y31_c00151{bottom:713.520000px;}
.y2e_c00151{bottom:714.240000px;}
.y2d_c00151{bottom:714.960000px;}
.y30_c00151{bottom:715.680000px;}
.y32_c00151{bottom:716.400000px;}
.y2a_c00151{bottom:754.560000px;}
.y27_c00151{bottom:755.280000px;}
.y26_c00151{bottom:756.720000px;}
.y28_c00151{bottom:757.440000px;}
.y29_c00151{bottom:758.160000px;}
.y2b_c00151{bottom:758.880000px;}
.y25_c00151{bottom:797.760000px;}
.y23_c00151{bottom:798.480000px;}
.y21_c00151{bottom:799.200000px;}
.y22_c00151{bottom:799.920000px;}
.y24_c00151{bottom:800.640000px;}
.y1d_c00151{bottom:839.520000px;}
.y1e_c00151{bottom:840.960000px;}
.y1b_c00151{bottom:842.400000px;}
.y1c_c00151{bottom:843.120000px;}
.y1f_c00151{bottom:843.840000px;}
.y20_c00151{bottom:844.560000px;}
.y18_c00151{bottom:882.720000px;}
.y16_c00151{bottom:884.160000px;}
.y17_c00151{bottom:884.880000px;}
.y1a_c00151{bottom:886.320000px;}
.y19_c00151{bottom:887.040000px;}
.y11_c00151{bottom:925.200000px;}
.y10_c00151{bottom:926.640000px;}
.y12_c00151{bottom:928.080000px;}
.y14_c00151{bottom:928.800000px;}
.y13_c00151{bottom:929.520000px;}
.y15_c00151{bottom:930.240000px;}
.yb_c00151{bottom:968.400000px;}
.y9_c00151{bottom:969.840000px;}
.ya_c00151{bottom:970.560000px;}
.yc_c00151{bottom:971.280000px;}
.yd_c00151{bottom:972.000000px;}
.ye_c00151{bottom:972.720000px;}
.yf_c00151{bottom:973.440000px;}
.y3_c00151{bottom:1009.440000px;}
.y4_c00151{bottom:1010.880000px;}
.y2_c00151{bottom:1012.320000px;}
.y7_c00151{bottom:1013.040000px;}
.y5_c00151{bottom:1014.480000px;}
.y6_c00151{bottom:1015.200000px;}
.y8_c00151{bottom:1015.920000px;}
.y1_c00151{bottom:1092.960000px;}
.h3_c00151{height:31.100625px;}
.h8_c00151{height:33.692344px;}
.he_c00151{height:36.284062px;}
.ha_c00151{height:38.875781px;}
.hc_c00151{height:41.467500px;}
.h5_c00151{height:44.059219px;}
.h6_c00151{height:46.650937px;}
.hd_c00151{height:49.242656px;}
.hf_c00151{height:51.834375px;}
.hb_c00151{height:54.426094px;}
.h7_c00151{height:57.017812px;}
.h4_c00151{height:59.609531px;}
.h10_c00151{height:61.050938px;}
.h9_c00151{height:62.201250px;}
.h11_c00151{height:64.792969px;}
.h12_c00151{height:67.384687px;}
.h2_c00151{height:69.976406px;}
.h0_c00151{height:1152.720000px;}
.h1_c00151{height:1152.750000px;}
.w0_c00151{width:793.440000px;}
.w1_c00151{width:793.500000px;}
.x0_c00151{left:0.000000px;}
.x16_c00151{left:66.240000px;}
.x2_c00151{left:67.680000px;}
.x4b_c00151{left:87.120000px;}
.x24_c00151{left:97.920000px;}
.x3_c00151{left:99.360000px;}
.x1f_c00151{left:109.440000px;}
.x4c_c00151{left:117.360000px;}
.xc_c00151{left:119.520000px;}
.x3b_c00151{left:129.600000px;}
.x28_c00151{left:131.040000px;}
.x17_c00151{left:141.120000px;}
.x55_c00151{left:150.480000px;}
.x44_c00151{left:161.280000px;}
.xd_c00151{left:162.720000px;}
.x4_c00151{left:172.800000px;}
.x4d_c00151{left:182.880000px;}
.x18_c00151{left:184.320000px;}
.x3d_c00151{left:193.680000px;}
.xe_c00151{left:205.200000px;}
.x30_c00151{left:214.560000px;}
.x5_c00151{left:216.000000px;}
.x56_c00151{left:226.080000px;}
.x47_c00151{left:236.160000px;}
.x52_c00151{left:245.520000px;}
.x57_c00151{left:246.960000px;}
.x29_c00151{left:248.400000px;}
.x3e_c00151{left:257.760000px;}
.x25_c00151{left:259.200000px;}
.x31_c00151{left:279.360000px;}
.x3c_c00151{left:290.160000px;}
.xf_c00151{left:291.600000px;}
.x53_c00151{left:300.240000px;}
.x6_c00151{left:302.400000px;}
.x4e_c00151{left:312.480000px;}
.x3f_c00151{left:322.560000px;}
.x40_c00151{left:324.000000px;}
.x10_c00151{left:334.800000px;}
.x5a_c00151{left:343.440000px;}
.x20_c00151{left:344.880000px;}
.x45_c00151{left:354.240000px;}
.x7_c00151{left:355.680000px;}
.x32_c00151{left:365.040000px;}
.x1d_c00151{left:367.200000px;}
.x41_c00151{left:376.560000px;}
.x19_c00151{left:378.000000px;}
.x38_c00151{left:387.360000px;}
.x8_c00151{left:398.880000px;}
.x4a_c00151{left:408.960000px;}
.x2a_c00151{left:410.400000px;}
.x39_c00151{left:419.040000px;}
.x35_c00151{left:420.480000px;}
.x4f_c00151{left:429.840000px;}
.x1e_c00151{left:432.000000px;}
.x26_c00151{left:433.440000px;}
.x2b_c00151{left:442.080000px;}
.x54_c00151{left:452.160000px;}
.x58_c00151{left:462.960000px;}
.x9_c00151{left:465.120000px;}
.x5b_c00151{left:484.560000px;}
.x21_c00151{left:486.000000px;}
.x59_c00151{left:496.080000px;}
.x11_c00151{left:497.520000px;}
.x36_c00151{left:507.600000px;}
.x50_c00151{left:516.960000px;}
.x2c_c00151{left:519.120000px;}
.x1a_c00151{left:529.200000px;}
.x48_c00151{left:539.280000px;}
.x42_c00151{left:550.080000px;}
.x2d_c00151{left:551.520000px;}
.x27_c00151{left:561.600000px;}
.x12_c00151{left:563.040000px;}
.xa_c00151{left:572.400000px;}
.x3a_c00151{left:582.480000px;}
.x2e_c00151{left:583.920000px;}
.x43_c00151{left:594.000000px;}
.x13_c00151{left:595.440000px;}
.x22_c00151{left:605.520000px;}
.x33_c00151{left:616.320000px;}
.x5c_c00151{left:625.680000px;}
.xb_c00151{left:627.120000px;}
.x46_c00151{left:637.200000px;}
.x23_c00151{left:638.640000px;}
.x1b_c00151{left:650.160000px;}
.x51_c00151{left:658.800000px;}
.x14_c00151{left:660.240000px;}
.x49_c00151{left:670.320000px;}
.x37_c00151{left:671.760000px;}
.x1c_c00151{left:681.840000px;}
.x1_c00151{left:686.160000px;}
.x15_c00151{left:693.360000px;}
.x34_c00151{left:715.680000px;}
.x2f_c00151{left:725.760000px;}
@media print{
.v0_c00151{vertical-align:0.000000pt;}
.v1_c00151{vertical-align:12.800000pt;}
.ls0_c00151{letter-spacing:0.000000pt;}
.ws1_c00151{word-spacing:0.000000pt;}
.ws0_c00151{word-spacing:0.873387pt;}
.fs1_c00151{font-size:30.720000pt;}
.fs6_c00151{font-size:33.280000pt;}
.fsc_c00151{font-size:35.840000pt;}
.fs8_c00151{font-size:38.400000pt;}
.fsa_c00151{font-size:40.960000pt;}
.fs3_c00151{font-size:43.520000pt;}
.fs4_c00151{font-size:46.080000pt;}
.fsb_c00151{font-size:48.640000pt;}
.fsd_c00151{font-size:51.200000pt;}
.fs9_c00151{font-size:53.760000pt;}
.fs5_c00151{font-size:56.320000pt;}
.fs2_c00151{font-size:58.880000pt;}
.fs7_c00151{font-size:61.440000pt;}
.fse_c00151{font-size:64.000000pt;}
.fsf_c00151{font-size:66.560000pt;}
.fs0_c00151{font-size:69.120000pt;}
.y0_c00151{bottom:0.000000pt;}
.y90_c00151{bottom:50.560000pt;}
.y8d_c00151{bottom:51.840000pt;}
.y8f_c00151{bottom:52.480000pt;}
.y8e_c00151{bottom:53.120000pt;}
.y8c_c00151{bottom:53.760000pt;}
.y8a_c00151{bottom:54.400000pt;}
.y8b_c00151{bottom:55.040000pt;}
.y89_c00151{bottom:56.960000pt;}
.y88_c00151{bottom:57.600000pt;}
.y87_c00151{bottom:58.240000pt;}
.y86_c00151{bottom:59.520000pt;}
.y85_c00151{bottom:89.600000pt;}
.y81_c00151{bottom:90.240000pt;}
.y82_c00151{bottom:90.880000pt;}
.y84_c00151{bottom:92.160000pt;}
.y83_c00151{bottom:92.800000pt;}
.y80_c00151{bottom:94.080000pt;}
.y7e_c00151{bottom:94.720000pt;}
.y7f_c00151{bottom:95.360000pt;}
.y7c_c00151{bottom:128.640000pt;}
.y7d_c00151{bottom:129.920000pt;}
.y77_c00151{bottom:131.200000pt;}
.y7a_c00151{bottom:131.840000pt;}
.y7b_c00151{bottom:132.480000pt;}
.y79_c00151{bottom:133.120000pt;}
.y78_c00151{bottom:133.760000pt;}
.y76_c00151{bottom:165.760000pt;}
.y72_c00151{bottom:167.680000pt;}
.y75_c00151{bottom:168.320000pt;}
.y74_c00151{bottom:168.960000pt;}
.y6e_c00151{bottom:169.600000pt;}
.y73_c00151{bottom:170.240000pt;}
.y71_c00151{bottom:170.880000pt;}
.y70_c00151{bottom:171.520000pt;}
.y6f_c00151{bottom:172.160000pt;}
.y6b_c00151{bottom:204.800000pt;}
.y6d_c00151{bottom:205.440000pt;}
.y69_c00151{bottom:206.080000pt;}
.y6c_c00151{bottom:206.720000pt;}
.y6a_c00151{bottom:207.360000pt;}
.y68_c00151{bottom:208.640000pt;}
.y67_c00151{bottom:209.280000pt;}
.y66_c00151{bottom:210.560000pt;}
.y65_c00151{bottom:241.280000pt;}
.y63_c00151{bottom:243.840000pt;}
.y64_c00151{bottom:244.480000pt;}
.y61_c00151{bottom:245.120000pt;}
.y62_c00151{bottom:245.760000pt;}
.y60_c00151{bottom:248.960000pt;}
.y5f_c00151{bottom:249.600000pt;}
.y5e_c00151{bottom:280.320000pt;}
.y5d_c00151{bottom:280.960000pt;}
.y5c_c00151{bottom:281.600000pt;}
.y5b_c00151{bottom:282.240000pt;}
.y59_c00151{bottom:282.880000pt;}
.y5a_c00151{bottom:283.520000pt;}
.y57_c00151{bottom:284.800000pt;}
.y58_c00151{bottom:285.440000pt;}
.y53_c00151{bottom:320.000000pt;}
.y56_c00151{bottom:321.280000pt;}
.y55_c00151{bottom:321.920000pt;}
.y54_c00151{bottom:322.560000pt;}
.y52_c00151{bottom:323.840000pt;}
.y50_c00151{bottom:357.120000pt;}
.y51_c00151{bottom:359.040000pt;}
.y4f_c00151{bottom:359.680000pt;}
.y4d_c00151{bottom:360.320000pt;}
.y4e_c00151{bottom:360.960000pt;}
.y4a_c00151{bottom:396.160000pt;}
.y4c_c00151{bottom:397.440000pt;}
.y4b_c00151{bottom:398.080000pt;}
.y49_c00151{bottom:398.720000pt;}
.y48_c00151{bottom:445.440000pt;}
.y46_c00151{bottom:481.280000pt;}
.y44_c00151{bottom:481.920000pt;}
.y47_c00151{bottom:483.200000pt;}
.y45_c00151{bottom:483.840000pt;}
.y43_c00151{bottom:484.480000pt;}
.y3f_c00151{bottom:518.400000pt;}
.y3d_c00151{bottom:519.040000pt;}
.y40_c00151{bottom:519.680000pt;}
.y3e_c00151{bottom:520.320000pt;}
.y42_c00151{bottom:520.960000pt;}
.y41_c00151{bottom:521.600000pt;}
.y3c_c00151{bottom:522.240000pt;}
.y3a_c00151{bottom:556.800000pt;}
.y3b_c00151{bottom:557.440000pt;}
.y39_c00151{bottom:559.360000pt;}
.y38_c00151{bottom:560.000000pt;}
.y34_c00151{bottom:595.200000pt;}
.y36_c00151{bottom:595.840000pt;}
.y35_c00151{bottom:597.120000pt;}
.y33_c00151{bottom:597.760000pt;}
.y37_c00151{bottom:598.400000pt;}
.y2c_c00151{bottom:632.960000pt;}
.y2f_c00151{bottom:633.600000pt;}
.y31_c00151{bottom:634.240000pt;}
.y2e_c00151{bottom:634.880000pt;}
.y2d_c00151{bottom:635.520000pt;}
.y30_c00151{bottom:636.160000pt;}
.y32_c00151{bottom:636.800000pt;}
.y2a_c00151{bottom:670.720000pt;}
.y27_c00151{bottom:671.360000pt;}
.y26_c00151{bottom:672.640000pt;}
.y28_c00151{bottom:673.280000pt;}
.y29_c00151{bottom:673.920000pt;}
.y2b_c00151{bottom:674.560000pt;}
.y25_c00151{bottom:709.120000pt;}
.y23_c00151{bottom:709.760000pt;}
.y21_c00151{bottom:710.400000pt;}
.y22_c00151{bottom:711.040000pt;}
.y24_c00151{bottom:711.680000pt;}
.y1d_c00151{bottom:746.240000pt;}
.y1e_c00151{bottom:747.520000pt;}
.y1b_c00151{bottom:748.800000pt;}
.y1c_c00151{bottom:749.440000pt;}
.y1f_c00151{bottom:750.080000pt;}
.y20_c00151{bottom:750.720000pt;}
.y18_c00151{bottom:784.640000pt;}
.y16_c00151{bottom:785.920000pt;}
.y17_c00151{bottom:786.560000pt;}
.y1a_c00151{bottom:787.840000pt;}
.y19_c00151{bottom:788.480000pt;}
.y11_c00151{bottom:822.400000pt;}
.y10_c00151{bottom:823.680000pt;}
.y12_c00151{bottom:824.960000pt;}
.y14_c00151{bottom:825.600000pt;}
.y13_c00151{bottom:826.240000pt;}
.y15_c00151{bottom:826.880000pt;}
.yb_c00151{bottom:860.800000pt;}
.y9_c00151{bottom:862.080000pt;}
.ya_c00151{bottom:862.720000pt;}
.yc_c00151{bottom:863.360000pt;}
.yd_c00151{bottom:864.000000pt;}
.ye_c00151{bottom:864.640000pt;}
.yf_c00151{bottom:865.280000pt;}
.y3_c00151{bottom:897.280000pt;}
.y4_c00151{bottom:898.560000pt;}
.y2_c00151{bottom:899.840000pt;}
.y7_c00151{bottom:900.480000pt;}
.y5_c00151{bottom:901.760000pt;}
.y6_c00151{bottom:902.400000pt;}
.y8_c00151{bottom:903.040000pt;}
.y1_c00151{bottom:971.520000pt;}
.h3_c00151{height:27.645000pt;}
.h8_c00151{height:29.948750pt;}
.he_c00151{height:32.252500pt;}
.ha_c00151{height:34.556250pt;}
.hc_c00151{height:36.860000pt;}
.h5_c00151{height:39.163750pt;}
.h6_c00151{height:41.467500pt;}
.hd_c00151{height:43.771250pt;}
.hf_c00151{height:46.075000pt;}
.hb_c00151{height:48.378750pt;}
.h7_c00151{height:50.682500pt;}
.h4_c00151{height:52.986250pt;}
.h10_c00151{height:54.267500pt;}
.h9_c00151{height:55.290000pt;}
.h11_c00151{height:57.593750pt;}
.h12_c00151{height:59.897500pt;}
.h2_c00151{height:62.201250pt;}
.h0_c00151{height:1024.640000pt;}
.h1_c00151{height:1024.666667pt;}
.w0_c00151{width:705.280000pt;}
.w1_c00151{width:705.333333pt;}
.x0_c00151{left:0.000000pt;}
.x16_c00151{left:58.880000pt;}
.x2_c00151{left:60.160000pt;}
.x4b_c00151{left:77.440000pt;}
.x24_c00151{left:87.040000pt;}
.x3_c00151{left:88.320000pt;}
.x1f_c00151{left:97.280000pt;}
.x4c_c00151{left:104.320000pt;}
.xc_c00151{left:106.240000pt;}
.x3b_c00151{left:115.200000pt;}
.x28_c00151{left:116.480000pt;}
.x17_c00151{left:125.440000pt;}
.x55_c00151{left:133.760000pt;}
.x44_c00151{left:143.360000pt;}
.xd_c00151{left:144.640000pt;}
.x4_c00151{left:153.600000pt;}
.x4d_c00151{left:162.560000pt;}
.x18_c00151{left:163.840000pt;}
.x3d_c00151{left:172.160000pt;}
.xe_c00151{left:182.400000pt;}
.x30_c00151{left:190.720000pt;}
.x5_c00151{left:192.000000pt;}
.x56_c00151{left:200.960000pt;}
.x47_c00151{left:209.920000pt;}
.x52_c00151{left:218.240000pt;}
.x57_c00151{left:219.520000pt;}
.x29_c00151{left:220.800000pt;}
.x3e_c00151{left:229.120000pt;}
.x25_c00151{left:230.400000pt;}
.x31_c00151{left:248.320000pt;}
.x3c_c00151{left:257.920000pt;}
.xf_c00151{left:259.200000pt;}
.x53_c00151{left:266.880000pt;}
.x6_c00151{left:268.800000pt;}
.x4e_c00151{left:277.760000pt;}
.x3f_c00151{left:286.720000pt;}
.x40_c00151{left:288.000000pt;}
.x10_c00151{left:297.600000pt;}
.x5a_c00151{left:305.280000pt;}
.x20_c00151{left:306.560000pt;}
.x45_c00151{left:314.880000pt;}
.x7_c00151{left:316.160000pt;}
.x32_c00151{left:324.480000pt;}
.x1d_c00151{left:326.400000pt;}
.x41_c00151{left:334.720000pt;}
.x19_c00151{left:336.000000pt;}
.x38_c00151{left:344.320000pt;}
.x8_c00151{left:354.560000pt;}
.x4a_c00151{left:363.520000pt;}
.x2a_c00151{left:364.800000pt;}
.x39_c00151{left:372.480000pt;}
.x35_c00151{left:373.760000pt;}
.x4f_c00151{left:382.080000pt;}
.x1e_c00151{left:384.000000pt;}
.x26_c00151{left:385.280000pt;}
.x2b_c00151{left:392.960000pt;}
.x54_c00151{left:401.920000pt;}
.x58_c00151{left:411.520000pt;}
.x9_c00151{left:413.440000pt;}
.x5b_c00151{left:430.720000pt;}
.x21_c00151{left:432.000000pt;}
.x59_c00151{left:440.960000pt;}
.x11_c00151{left:442.240000pt;}
.x36_c00151{left:451.200000pt;}
.x50_c00151{left:459.520000pt;}
.x2c_c00151{left:461.440000pt;}
.x1a_c00151{left:470.400000pt;}
.x48_c00151{left:479.360000pt;}
.x42_c00151{left:488.960000pt;}
.x2d_c00151{left:490.240000pt;}
.x27_c00151{left:499.200000pt;}
.x12_c00151{left:500.480000pt;}
.xa_c00151{left:508.800000pt;}
.x3a_c00151{left:517.760000pt;}
.x2e_c00151{left:519.040000pt;}
.x43_c00151{left:528.000000pt;}
.x13_c00151{left:529.280000pt;}
.x22_c00151{left:538.240000pt;}
.x33_c00151{left:547.840000pt;}
.x5c_c00151{left:556.160000pt;}
.xb_c00151{left:557.440000pt;}
.x46_c00151{left:566.400000pt;}
.x23_c00151{left:567.680000pt;}
.x1b_c00151{left:577.920000pt;}
.x51_c00151{left:585.600000pt;}
.x14_c00151{left:586.880000pt;}
.x49_c00151{left:595.840000pt;}
.x37_c00151{left:597.120000pt;}
.x1c_c00151{left:606.080000pt;}
.x1_c00151{left:609.920000pt;}
.x15_c00151{left:616.320000pt;}
.x34_c00151{left:636.160000pt;}
.x2f_c00151{left:645.120000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_bed42beebbadaa84e9fbbbef.woff2')format("woff");}.ff1_c00152{font-family:ff1_c00152;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m53_c00152{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m69_c00152{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m58_c00152{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);}
.m51_c00152{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);}
.m60_c00152{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mb_c00152{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);}
.m65_c00152{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00152{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);}
.m4b_c00152{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m59_c00152{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m8_c00152{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00152{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m10_c00152{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m56_c00152{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m30_c00152{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m17_c00152{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m5_c00152{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00152{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00152{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m46_c00152{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m62_c00152{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m29_c00152{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m27_c00152{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00152{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m67_c00152{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m0_c00152{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);}
.m5f_c00152{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m16_c00152{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_c00152{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00152{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00152{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00152{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m37_c00152{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);}
.m61_c00152{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m13_c00152{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m6_c00152{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);}
.m40_c00152{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);}
.m48_c00152{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_c00152{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m24_c00152{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);}
.m2d_c00152{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);}
.md_c00152{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);}
.m42_c00152{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);}
.m63_c00152{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00152{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.ma_c00152{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m4_c00152{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);}
.m44_c00152{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m43_c00152{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);}
.m33_c00152{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m35_c00152{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);}
.m3_c00152{transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);}
.m1_c00152{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m11_c00152{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m32_c00152{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m18_c00152{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m38_c00152{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);}
.m4e_c00152{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m36_c00152{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m23_c00152{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);}
.m20_c00152{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m26_c00152{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);}
.m47_c00152{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m12_c00152{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00152{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00152{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);}
.m3e_c00152{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m41_c00152{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m14_c00152{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00152{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00152{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00152{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m50_c00152{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m22_c00152{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);}
.m2f_c00152{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);}
.m45_c00152{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m9_c00152{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00152{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);}
.m7_c00152{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00152{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00152{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);}
.m31_c00152{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m21_c00152{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m15_c00152{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m39_c00152{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);}
.m57_c00152{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.mc_c00152{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);}
.m64_c00152{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m52_c00152{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);}
.m55_c00152{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00152{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m25_c00152{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m54_c00152{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.me_c00152{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00152{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m28_c00152{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);}
.m19_c00152{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);}
.m2e_c00152{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m2_c00152{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);}
.mf_c00152{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00152{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00152{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m49_c00152{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);}
.m6a_c00152{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m34_c00152{transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);}
.m68_c00152{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m66_c00152{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.v0_c00152{vertical-align:0.000000px;}
.ls0_c00152{letter-spacing:0.000000px;}
.sc__c00152{text-shadow:none;}
.sc0_c00152{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00152{-webkit-text-stroke:0px transparent;}
.sc0_c00152{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00152{word-spacing:-0.979050px;}
.ws1_c00152{word-spacing:0.000000px;}
.fc0_c00152{color:transparent;}
.fs10_c00152{font-size:2.880000px;}
.fs12_c00152{font-size:17.280000px;}
.fs13_c00152{font-size:20.160000px;}
.fsf_c00152{font-size:23.040000px;}
.fs2_c00152{font-size:34.560000px;}
.fs8_c00152{font-size:37.440000px;}
.fse_c00152{font-size:40.320000px;}
.fs11_c00152{font-size:43.200000px;}
.fs7_c00152{font-size:46.080000px;}
.fs1_c00152{font-size:48.960000px;}
.fs3_c00152{font-size:51.840000px;}
.fs4_c00152{font-size:54.720000px;}
.fsd_c00152{font-size:57.600000px;}
.fs5_c00152{font-size:60.480000px;}
.fsa_c00152{font-size:63.360000px;}
.fsc_c00152{font-size:66.240000px;}
.fsb_c00152{font-size:69.120000px;}
.fs6_c00152{font-size:72.000000px;}
.fs9_c00152{font-size:74.880000px;}
.fs0_c00152{font-size:77.760000px;}
.y0_c00152{bottom:0.000000px;}
.y86_c00152{bottom:16.560000px;}
.y85_c00152{bottom:18.720000px;}
.y84_c00152{bottom:45.360000px;}
.y82_c00152{bottom:46.800000px;}
.y83_c00152{bottom:48.240000px;}
.y7f_c00152{bottom:49.680000px;}
.y80_c00152{bottom:51.840000px;}
.y7e_c00152{bottom:52.560000px;}
.y81_c00152{bottom:53.280000px;}
.y7d_c00152{bottom:54.000000px;}
.y7b_c00152{bottom:82.080000px;}
.y77_c00152{bottom:82.800000px;}
.y78_c00152{bottom:83.520000px;}
.y7c_c00152{bottom:84.240000px;}
.y7a_c00152{bottom:84.960000px;}
.y79_c00152{bottom:85.680000px;}
.y76_c00152{bottom:86.400000px;}
.y75_c00152{bottom:87.840000px;}
.y74_c00152{bottom:88.560000px;}
.y73_c00152{bottom:123.120000px;}
.y71_c00152{bottom:123.840000px;}
.y70_c00152{bottom:124.560000px;}
.y6e_c00152{bottom:125.280000px;}
.y72_c00152{bottom:126.000000px;}
.y6f_c00152{bottom:126.720000px;}
.y6d_c00152{bottom:128.880000px;}
.y6c_c00152{bottom:180.000000px;}
.y6b_c00152{bottom:181.440000px;}
.y6a_c00152{bottom:182.880000px;}
.y69_c00152{bottom:183.600000px;}
.y66_c00152{bottom:220.320000px;}
.y68_c00152{bottom:221.040000px;}
.y64_c00152{bottom:221.760000px;}
.y67_c00152{bottom:222.480000px;}
.y65_c00152{bottom:223.920000px;}
.y63_c00152{bottom:226.080000px;}
.y62_c00152{bottom:262.080000px;}
.y61_c00152{bottom:262.800000px;}
.y60_c00152{bottom:263.520000px;}
.y5f_c00152{bottom:264.240000px;}
.y5d_c00152{bottom:264.960000px;}
.y5e_c00152{bottom:266.400000px;}
.y5b_c00152{bottom:304.560000px;}
.y5c_c00152{bottom:305.280000px;}
.y59_c00152{bottom:307.440000px;}
.y58_c00152{bottom:308.160000px;}
.y5a_c00152{bottom:308.880000px;}
.y57_c00152{bottom:347.040000px;}
.y56_c00152{bottom:347.760000px;}
.y54_c00152{bottom:348.480000px;}
.y53_c00152{bottom:350.640000px;}
.y55_c00152{bottom:351.360000px;}
.y52_c00152{bottom:352.080000px;}
.y51_c00152{bottom:360.720000px;}
.y50_c00152{bottom:368.640000px;}
.y4d_c00152{bottom:390.960000px;}
.y4f_c00152{bottom:392.400000px;}
.y4c_c00152{bottom:393.120000px;}
.y4e_c00152{bottom:393.840000px;}
.y4b_c00152{bottom:394.560000px;}
.y4a_c00152{bottom:396.000000px;}
.y49_c00152{bottom:443.520000px;}
.y48_c00152{bottom:444.240000px;}
.y43_c00152{bottom:446.400000px;}
.y47_c00152{bottom:447.120000px;}
.y46_c00152{bottom:447.840000px;}
.y44_c00152{bottom:448.560000px;}
.y45_c00152{bottom:449.280000px;}
.y3e_c00152{bottom:487.440000px;}
.y40_c00152{bottom:488.160000px;}
.y42_c00152{bottom:489.600000px;}
.y41_c00152{bottom:490.320000px;}
.y3f_c00152{bottom:491.040000px;}
.y3d_c00152{bottom:530.640000px;}
.y3c_c00152{bottom:532.800000px;}
.y3b_c00152{bottom:533.520000px;}
.y39_c00152{bottom:573.120000px;}
.y36_c00152{bottom:573.840000px;}
.y3a_c00152{bottom:575.280000px;}
.y37_c00152{bottom:576.000000px;}
.y38_c00152{bottom:576.720000px;}
.y35_c00152{bottom:618.480000px;}
.y34_c00152{bottom:619.200000px;}
.y33_c00152{bottom:671.040000px;}
.y32_c00152{bottom:671.760000px;}
.y2d_c00152{bottom:710.640000px;}
.y2e_c00152{bottom:711.360000px;}
.y31_c00152{bottom:712.800000px;}
.y2f_c00152{bottom:714.240000px;}
.y30_c00152{bottom:714.960000px;}
.y2a_c00152{bottom:754.560000px;}
.y27_c00152{bottom:756.000000px;}
.y28_c00152{bottom:756.720000px;}
.y29_c00152{bottom:757.440000px;}
.y2b_c00152{bottom:758.160000px;}
.y2c_c00152{bottom:758.880000px;}
.y24_c00152{bottom:797.040000px;}
.y23_c00152{bottom:799.200000px;}
.y25_c00152{bottom:799.920000px;}
.y26_c00152{bottom:800.640000px;}
.y20_c00152{bottom:840.240000px;}
.y22_c00152{bottom:840.960000px;}
.y1e_c00152{bottom:841.680000px;}
.y1f_c00152{bottom:843.120000px;}
.y21_c00152{bottom:843.840000px;}
.y17_c00152{bottom:880.560000px;}
.y18_c00152{bottom:882.000000px;}
.y16_c00152{bottom:883.440000px;}
.y1b_c00152{bottom:884.160000px;}
.y19_c00152{bottom:884.880000px;}
.y1a_c00152{bottom:885.600000px;}
.y1c_c00152{bottom:886.320000px;}
.y1d_c00152{bottom:887.040000px;}
.y13_c00152{bottom:925.200000px;}
.y11_c00152{bottom:926.640000px;}
.y12_c00152{bottom:927.360000px;}
.y14_c00152{bottom:928.080000px;}
.y15_c00152{bottom:930.240000px;}
.y8_c00152{bottom:966.240000px;}
.yc_c00152{bottom:967.680000px;}
.y9_c00152{bottom:968.400000px;}
.ye_c00152{bottom:969.120000px;}
.ya_c00152{bottom:970.560000px;}
.yb_c00152{bottom:971.280000px;}
.yd_c00152{bottom:972.000000px;}
.yf_c00152{bottom:972.720000px;}
.y10_c00152{bottom:973.440000px;}
.y2_c00152{bottom:1011.600000px;}
.y3_c00152{bottom:1013.760000px;}
.y4_c00152{bottom:1014.480000px;}
.y5_c00152{bottom:1015.200000px;}
.y6_c00152{bottom:1015.920000px;}
.y7_c00152{bottom:1016.640000px;}
.y1_c00152{bottom:1082.160000px;}
.h12_c00152{height:2.591719px;}
.h14_c00152{height:15.550313px;}
.h15_c00152{height:18.142031px;}
.h11_c00152{height:20.733750px;}
.h4_c00152{height:31.100625px;}
.ha_c00152{height:33.692344px;}
.h10_c00152{height:36.284062px;}
.h13_c00152{height:38.875781px;}
.h9_c00152{height:41.467500px;}
.h3_c00152{height:44.059219px;}
.h5_c00152{height:46.650937px;}
.h6_c00152{height:49.242656px;}
.hf_c00152{height:51.834375px;}
.h7_c00152{height:54.426094px;}
.hc_c00152{height:57.017812px;}
.he_c00152{height:59.609531px;}
.hd_c00152{height:62.201250px;}
.h8_c00152{height:64.792969px;}
.hb_c00152{height:67.384687px;}
.h2_c00152{height:69.976406px;}
.h0_c00152{height:1152.720000px;}
.h1_c00152{height:1152.750000px;}
.w0_c00152{width:793.440000px;}
.w1_c00152{width:793.500000px;}
.x0_c00152{left:0.000000px;}
.x34_c00152{left:65.520000px;}
.x2_c00152{left:66.960000px;}
.x9_c00152{left:69.120000px;}
.x52_c00152{left:87.120000px;}
.x1c_c00152{left:99.360000px;}
.x23_c00152{left:108.720000px;}
.x4f_c00152{left:118.080000px;}
.x36_c00152{left:140.400000px;}
.x28_c00152{left:141.840000px;}
.x13_c00152{left:151.920000px;}
.x30_c00152{left:161.280000px;}
.x1d_c00152{left:172.080000px;}
.x44_c00152{left:173.520000px;}
.x48_c00152{left:182.160000px;}
.x3_c00152{left:183.600000px;}
.x47_c00152{left:185.760000px;}
.x53_c00152{left:194.400000px;}
.xa_c00152{left:203.760000px;}
.x14_c00152{left:215.280000px;}
.x50_c00152{left:224.640000px;}
.x4_c00152{left:226.080000px;}
.x40_c00152{left:236.160000px;}
.x4d_c00152{left:245.520000px;}
.x1e_c00152{left:246.960000px;}
.xb_c00152{left:248.400000px;}
.x24_c00152{left:257.760000px;}
.x29_c00152{left:269.280000px;}
.xc_c00152{left:279.360000px;}
.x37_c00152{left:290.160000px;}
.x15_c00152{left:291.600000px;}
.x2b_c00152{left:300.240000px;}
.x4a_c00152{left:311.040000px;}
.x1f_c00152{left:312.480000px;}
.x16_c00152{left:322.560000px;}
.x45_c00152{left:324.000000px;}
.x51_c00152{left:332.640000px;}
.x41_c00152{left:334.080000px;}
.xd_c00152{left:344.160000px;}
.x46_c00152{left:354.240000px;}
.x3c_c00152{left:365.040000px;}
.x5_c00152{left:367.200000px;}
.x31_c00152{left:375.840000px;}
.x17_c00152{left:377.280000px;}
.x2c_c00152{left:387.360000px;}
.x25_c00152{left:398.160000px;}
.x49_c00152{left:408.240000px;}
.x18_c00152{left:409.680000px;}
.xe_c00152{left:419.760000px;}
.x20_c00152{left:430.560000px;}
.x3d_c00152{left:432.000000px;}
.x42_c00152{left:433.440000px;}
.x2d_c00152{left:442.080000px;}
.xf_c00152{left:453.600000px;}
.x4e_c00152{left:462.240000px;}
.x26_c00152{left:463.680000px;}
.x2e_c00152{left:473.760000px;}
.x32_c00152{left:486.000000px;}
.x4b_c00152{left:495.360000px;}
.x38_c00152{left:496.800000px;}
.x3a_c00152{left:506.880000px;}
.x21_c00152{left:518.400000px;}
.x6_c00152{left:528.480000px;}
.x10_c00152{left:540.000000px;}
.x19_c00152{left:550.800000px;}
.x3e_c00152{left:561.600000px;}
.x11_c00152{left:572.400000px;}
.x43_c00152{left:582.480000px;}
.x22_c00152{left:594.720000px;}
.x12_c00152{left:605.520000px;}
.x7_c00152{left:616.320000px;}
.x1a_c00152{left:626.400000px;}
.x27_c00152{left:637.920000px;}
.x8_c00152{left:648.000000px;}
.x33_c00152{left:649.440000px;}
.x35_c00152{left:660.240000px;}
.x1b_c00152{left:669.600000px;}
.x39_c00152{left:671.760000px;}
.x1_c00152{left:679.680000px;}
.x2a_c00152{left:681.840000px;}
.x3b_c00152{left:691.920000px;}
.x2f_c00152{left:703.440000px;}
.x3f_c00152{left:704.880000px;}
.x54_c00152{left:713.520000px;}
.x4c_c00152{left:725.760000px;}
.x55_c00152{left:736.560000px;}
@media print{
.v0_c00152{vertical-align:0.000000pt;}
.ls0_c00152{letter-spacing:0.000000pt;}
.ws0_c00152{word-spacing:-0.870267pt;}
.ws1_c00152{word-spacing:0.000000pt;}
.fs10_c00152{font-size:2.560000pt;}
.fs12_c00152{font-size:15.360000pt;}
.fs13_c00152{font-size:17.920000pt;}
.fsf_c00152{font-size:20.480000pt;}
.fs2_c00152{font-size:30.720000pt;}
.fs8_c00152{font-size:33.280000pt;}
.fse_c00152{font-size:35.840000pt;}
.fs11_c00152{font-size:38.400000pt;}
.fs7_c00152{font-size:40.960000pt;}
.fs1_c00152{font-size:43.520000pt;}
.fs3_c00152{font-size:46.080000pt;}
.fs4_c00152{font-size:48.640000pt;}
.fsd_c00152{font-size:51.200000pt;}
.fs5_c00152{font-size:53.760000pt;}
.fsa_c00152{font-size:56.320000pt;}
.fsc_c00152{font-size:58.880000pt;}
.fsb_c00152{font-size:61.440000pt;}
.fs6_c00152{font-size:64.000000pt;}
.fs9_c00152{font-size:66.560000pt;}
.fs0_c00152{font-size:69.120000pt;}
.y0_c00152{bottom:0.000000pt;}
.y86_c00152{bottom:14.720000pt;}
.y85_c00152{bottom:16.640000pt;}
.y84_c00152{bottom:40.320000pt;}
.y82_c00152{bottom:41.600000pt;}
.y83_c00152{bottom:42.880000pt;}
.y7f_c00152{bottom:44.160000pt;}
.y80_c00152{bottom:46.080000pt;}
.y7e_c00152{bottom:46.720000pt;}
.y81_c00152{bottom:47.360000pt;}
.y7d_c00152{bottom:48.000000pt;}
.y7b_c00152{bottom:72.960000pt;}
.y77_c00152{bottom:73.600000pt;}
.y78_c00152{bottom:74.240000pt;}
.y7c_c00152{bottom:74.880000pt;}
.y7a_c00152{bottom:75.520000pt;}
.y79_c00152{bottom:76.160000pt;}
.y76_c00152{bottom:76.800000pt;}
.y75_c00152{bottom:78.080000pt;}
.y74_c00152{bottom:78.720000pt;}
.y73_c00152{bottom:109.440000pt;}
.y71_c00152{bottom:110.080000pt;}
.y70_c00152{bottom:110.720000pt;}
.y6e_c00152{bottom:111.360000pt;}
.y72_c00152{bottom:112.000000pt;}
.y6f_c00152{bottom:112.640000pt;}
.y6d_c00152{bottom:114.560000pt;}
.y6c_c00152{bottom:160.000000pt;}
.y6b_c00152{bottom:161.280000pt;}
.y6a_c00152{bottom:162.560000pt;}
.y69_c00152{bottom:163.200000pt;}
.y66_c00152{bottom:195.840000pt;}
.y68_c00152{bottom:196.480000pt;}
.y64_c00152{bottom:197.120000pt;}
.y67_c00152{bottom:197.760000pt;}
.y65_c00152{bottom:199.040000pt;}
.y63_c00152{bottom:200.960000pt;}
.y62_c00152{bottom:232.960000pt;}
.y61_c00152{bottom:233.600000pt;}
.y60_c00152{bottom:234.240000pt;}
.y5f_c00152{bottom:234.880000pt;}
.y5d_c00152{bottom:235.520000pt;}
.y5e_c00152{bottom:236.800000pt;}
.y5b_c00152{bottom:270.720000pt;}
.y5c_c00152{bottom:271.360000pt;}
.y59_c00152{bottom:273.280000pt;}
.y58_c00152{bottom:273.920000pt;}
.y5a_c00152{bottom:274.560000pt;}
.y57_c00152{bottom:308.480000pt;}
.y56_c00152{bottom:309.120000pt;}
.y54_c00152{bottom:309.760000pt;}
.y53_c00152{bottom:311.680000pt;}
.y55_c00152{bottom:312.320000pt;}
.y52_c00152{bottom:312.960000pt;}
.y51_c00152{bottom:320.640000pt;}
.y50_c00152{bottom:327.680000pt;}
.y4d_c00152{bottom:347.520000pt;}
.y4f_c00152{bottom:348.800000pt;}
.y4c_c00152{bottom:349.440000pt;}
.y4e_c00152{bottom:350.080000pt;}
.y4b_c00152{bottom:350.720000pt;}
.y4a_c00152{bottom:352.000000pt;}
.y49_c00152{bottom:394.240000pt;}
.y48_c00152{bottom:394.880000pt;}
.y43_c00152{bottom:396.800000pt;}
.y47_c00152{bottom:397.440000pt;}
.y46_c00152{bottom:398.080000pt;}
.y44_c00152{bottom:398.720000pt;}
.y45_c00152{bottom:399.360000pt;}
.y3e_c00152{bottom:433.280000pt;}
.y40_c00152{bottom:433.920000pt;}
.y42_c00152{bottom:435.200000pt;}
.y41_c00152{bottom:435.840000pt;}
.y3f_c00152{bottom:436.480000pt;}
.y3d_c00152{bottom:471.680000pt;}
.y3c_c00152{bottom:473.600000pt;}
.y3b_c00152{bottom:474.240000pt;}
.y39_c00152{bottom:509.440000pt;}
.y36_c00152{bottom:510.080000pt;}
.y3a_c00152{bottom:511.360000pt;}
.y37_c00152{bottom:512.000000pt;}
.y38_c00152{bottom:512.640000pt;}
.y35_c00152{bottom:549.760000pt;}
.y34_c00152{bottom:550.400000pt;}
.y33_c00152{bottom:596.480000pt;}
.y32_c00152{bottom:597.120000pt;}
.y2d_c00152{bottom:631.680000pt;}
.y2e_c00152{bottom:632.320000pt;}
.y31_c00152{bottom:633.600000pt;}
.y2f_c00152{bottom:634.880000pt;}
.y30_c00152{bottom:635.520000pt;}
.y2a_c00152{bottom:670.720000pt;}
.y27_c00152{bottom:672.000000pt;}
.y28_c00152{bottom:672.640000pt;}
.y29_c00152{bottom:673.280000pt;}
.y2b_c00152{bottom:673.920000pt;}
.y2c_c00152{bottom:674.560000pt;}
.y24_c00152{bottom:708.480000pt;}
.y23_c00152{bottom:710.400000pt;}
.y25_c00152{bottom:711.040000pt;}
.y26_c00152{bottom:711.680000pt;}
.y20_c00152{bottom:746.880000pt;}
.y22_c00152{bottom:747.520000pt;}
.y1e_c00152{bottom:748.160000pt;}
.y1f_c00152{bottom:749.440000pt;}
.y21_c00152{bottom:750.080000pt;}
.y17_c00152{bottom:782.720000pt;}
.y18_c00152{bottom:784.000000pt;}
.y16_c00152{bottom:785.280000pt;}
.y1b_c00152{bottom:785.920000pt;}
.y19_c00152{bottom:786.560000pt;}
.y1a_c00152{bottom:787.200000pt;}
.y1c_c00152{bottom:787.840000pt;}
.y1d_c00152{bottom:788.480000pt;}
.y13_c00152{bottom:822.400000pt;}
.y11_c00152{bottom:823.680000pt;}
.y12_c00152{bottom:824.320000pt;}
.y14_c00152{bottom:824.960000pt;}
.y15_c00152{bottom:826.880000pt;}
.y8_c00152{bottom:858.880000pt;}
.yc_c00152{bottom:860.160000pt;}
.y9_c00152{bottom:860.800000pt;}
.ye_c00152{bottom:861.440000pt;}
.ya_c00152{bottom:862.720000pt;}
.yb_c00152{bottom:863.360000pt;}
.yd_c00152{bottom:864.000000pt;}
.yf_c00152{bottom:864.640000pt;}
.y10_c00152{bottom:865.280000pt;}
.y2_c00152{bottom:899.200000pt;}
.y3_c00152{bottom:901.120000pt;}
.y4_c00152{bottom:901.760000pt;}
.y5_c00152{bottom:902.400000pt;}
.y6_c00152{bottom:903.040000pt;}
.y7_c00152{bottom:903.680000pt;}
.y1_c00152{bottom:961.920000pt;}
.h12_c00152{height:2.303750pt;}
.h14_c00152{height:13.822500pt;}
.h15_c00152{height:16.126250pt;}
.h11_c00152{height:18.430000pt;}
.h4_c00152{height:27.645000pt;}
.ha_c00152{height:29.948750pt;}
.h10_c00152{height:32.252500pt;}
.h13_c00152{height:34.556250pt;}
.h9_c00152{height:36.860000pt;}
.h3_c00152{height:39.163750pt;}
.h5_c00152{height:41.467500pt;}
.h6_c00152{height:43.771250pt;}
.hf_c00152{height:46.075000pt;}
.h7_c00152{height:48.378750pt;}
.hc_c00152{height:50.682500pt;}
.he_c00152{height:52.986250pt;}
.hd_c00152{height:55.290000pt;}
.h8_c00152{height:57.593750pt;}
.hb_c00152{height:59.897500pt;}
.h2_c00152{height:62.201250pt;}
.h0_c00152{height:1024.640000pt;}
.h1_c00152{height:1024.666667pt;}
.w0_c00152{width:705.280000pt;}
.w1_c00152{width:705.333333pt;}
.x0_c00152{left:0.000000pt;}
.x34_c00152{left:58.240000pt;}
.x2_c00152{left:59.520000pt;}
.x9_c00152{left:61.440000pt;}
.x52_c00152{left:77.440000pt;}
.x1c_c00152{left:88.320000pt;}
.x23_c00152{left:96.640000pt;}
.x4f_c00152{left:104.960000pt;}
.x36_c00152{left:124.800000pt;}
.x28_c00152{left:126.080000pt;}
.x13_c00152{left:135.040000pt;}
.x30_c00152{left:143.360000pt;}
.x1d_c00152{left:152.960000pt;}
.x44_c00152{left:154.240000pt;}
.x48_c00152{left:161.920000pt;}
.x3_c00152{left:163.200000pt;}
.x47_c00152{left:165.120000pt;}
.x53_c00152{left:172.800000pt;}
.xa_c00152{left:181.120000pt;}
.x14_c00152{left:191.360000pt;}
.x50_c00152{left:199.680000pt;}
.x4_c00152{left:200.960000pt;}
.x40_c00152{left:209.920000pt;}
.x4d_c00152{left:218.240000pt;}
.x1e_c00152{left:219.520000pt;}
.xb_c00152{left:220.800000pt;}
.x24_c00152{left:229.120000pt;}
.x29_c00152{left:239.360000pt;}
.xc_c00152{left:248.320000pt;}
.x37_c00152{left:257.920000pt;}
.x15_c00152{left:259.200000pt;}
.x2b_c00152{left:266.880000pt;}
.x4a_c00152{left:276.480000pt;}
.x1f_c00152{left:277.760000pt;}
.x16_c00152{left:286.720000pt;}
.x45_c00152{left:288.000000pt;}
.x51_c00152{left:295.680000pt;}
.x41_c00152{left:296.960000pt;}
.xd_c00152{left:305.920000pt;}
.x46_c00152{left:314.880000pt;}
.x3c_c00152{left:324.480000pt;}
.x5_c00152{left:326.400000pt;}
.x31_c00152{left:334.080000pt;}
.x17_c00152{left:335.360000pt;}
.x2c_c00152{left:344.320000pt;}
.x25_c00152{left:353.920000pt;}
.x49_c00152{left:362.880000pt;}
.x18_c00152{left:364.160000pt;}
.xe_c00152{left:373.120000pt;}
.x20_c00152{left:382.720000pt;}
.x3d_c00152{left:384.000000pt;}
.x42_c00152{left:385.280000pt;}
.x2d_c00152{left:392.960000pt;}
.xf_c00152{left:403.200000pt;}
.x4e_c00152{left:410.880000pt;}
.x26_c00152{left:412.160000pt;}
.x2e_c00152{left:421.120000pt;}
.x32_c00152{left:432.000000pt;}
.x4b_c00152{left:440.320000pt;}
.x38_c00152{left:441.600000pt;}
.x3a_c00152{left:450.560000pt;}
.x21_c00152{left:460.800000pt;}
.x6_c00152{left:469.760000pt;}
.x10_c00152{left:480.000000pt;}
.x19_c00152{left:489.600000pt;}
.x3e_c00152{left:499.200000pt;}
.x11_c00152{left:508.800000pt;}
.x43_c00152{left:517.760000pt;}
.x22_c00152{left:528.640000pt;}
.x12_c00152{left:538.240000pt;}
.x7_c00152{left:547.840000pt;}
.x1a_c00152{left:556.800000pt;}
.x27_c00152{left:567.040000pt;}
.x8_c00152{left:576.000000pt;}
.x33_c00152{left:577.280000pt;}
.x35_c00152{left:586.880000pt;}
.x1b_c00152{left:595.200000pt;}
.x39_c00152{left:597.120000pt;}
.x1_c00152{left:604.160000pt;}
.x2a_c00152{left:606.080000pt;}
.x3b_c00152{left:615.040000pt;}
.x2f_c00152{left:625.280000pt;}
.x3f_c00152{left:626.560000pt;}
.x54_c00152{left:634.240000pt;}
.x4c_c00152{left:645.120000pt;}
.x55_c00152{left:654.720000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a3e9d91037941e07de73b867.woff2')format("woff");}.ff1_c00153{font-family:ff1_c00153;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m45_c00153{transform:matrix(0.246925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246925,0.000000,0.000000,0.250000,0,0);}
.me_c00153{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m36_c00153{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.ma_c00153{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mf_c00153{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m55_c00153{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00153{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00153{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mc_c00153{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.mb_c00153{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m25_c00153{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00153{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m7_c00153{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m40_c00153{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m43_c00153{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.md_c00153{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m22_c00153{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00153{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);}
.m32_c00153{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00153{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);}
.m59_c00153{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m44_c00153{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00153{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m14_c00153{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);}
.m27_c00153{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m33_c00153{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m0_c00153{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);}
.m3a_c00153{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m12_c00153{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00153{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);}
.m6_c00153{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);}
.m10_c00153{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m20_c00153{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00153{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);}
.m9_c00153{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m52_c00153{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);}
.m4_c00153{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);}
.m24_c00153{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);}
.m34_c00153{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m3_c00153{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m1_c00153{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m8_c00153{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);}
.m53_c00153{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m58_c00153{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);}
.m2e_c00153{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00153{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);}
.m54_c00153{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);}
.m4d_c00153{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00153{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m15_c00153{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m47_c00153{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);}
.m21_c00153{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m29_c00153{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m51_c00153{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m30_c00153{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);}
.m13_c00153{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m56_c00153{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m46_c00153{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m26_c00153{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);}
.m1c_c00153{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m2_c00153{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00153{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00153{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m17_c00153{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m31_c00153{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m18_c00153{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00153{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00153{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);}
.m28_c00153{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m49_c00153{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);}
.m38_c00153{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m5_c00153{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00153{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00153{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);}
.m2c_c00153{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00153{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);}
.m35_c00153{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m41_c00153{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.m37_c00153{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);}
.m2f_c00153{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m16_c00153{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m11_c00153{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00153{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m50_c00153{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m23_c00153{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m57_c00153{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);}
.m42_c00153{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);}
.m3e_c00153{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);}
.m48_c00153{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00153{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m19_c00153{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m39_c00153{transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);}
.v1_c00153{vertical-align:-2.880000px;}
.v0_c00153{vertical-align:0.000000px;}
.v2_c00153{vertical-align:5.760000px;}
.ls0_c00153{letter-spacing:0.000000px;}
.sc__c00153{text-shadow:none;}
.sc0_c00153{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00153{-webkit-text-stroke:0px transparent;}
.sc0_c00153{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00153{word-spacing:-8.063760px;}
.ws0_c00153{word-spacing:-5.322240px;}
.ws2_c00153{word-spacing:0.000000px;}
.fc0_c00153{color:transparent;}
.fs8_c00153{font-size:34.560000px;}
.fs4_c00153{font-size:37.440000px;}
.fsc_c00153{font-size:40.320000px;}
.fse_c00153{font-size:43.200000px;}
.fs6_c00153{font-size:46.080000px;}
.fs1_c00153{font-size:48.960000px;}
.fs2_c00153{font-size:51.840000px;}
.fs3_c00153{font-size:54.720000px;}
.fs7_c00153{font-size:57.600000px;}
.fs5_c00153{font-size:60.480000px;}
.fsb_c00153{font-size:63.360000px;}
.fs9_c00153{font-size:66.240000px;}
.fsa_c00153{font-size:69.120000px;}
.fsd_c00153{font-size:72.000000px;}
.fs0_c00153{font-size:74.880000px;}
.y0_c00153{bottom:0.000000px;}
.y7d_c00153{bottom:46.800000px;}
.y7e_c00153{bottom:47.520000px;}
.y7c_c00153{bottom:49.680000px;}
.y7b_c00153{bottom:50.400000px;}
.y7a_c00153{bottom:51.120000px;}
.y79_c00153{bottom:54.000000px;}
.y76_c00153{bottom:90.000000px;}
.y78_c00153{bottom:90.720000px;}
.y77_c00153{bottom:92.160000px;}
.y75_c00153{bottom:92.880000px;}
.y74_c00153{bottom:93.600000px;}
.y73_c00153{bottom:96.480000px;}
.y72_c00153{bottom:130.320000px;}
.y71_c00153{bottom:131.760000px;}
.y6f_c00153{bottom:132.480000px;}
.y6d_c00153{bottom:133.920000px;}
.y70_c00153{bottom:134.640000px;}
.y6e_c00153{bottom:135.360000px;}
.y6c_c00153{bottom:136.800000px;}
.y68_c00153{bottom:174.960000px;}
.y69_c00153{bottom:175.680000px;}
.y67_c00153{bottom:176.400000px;}
.y6b_c00153{bottom:177.120000px;}
.y6a_c00153{bottom:177.840000px;}
.y66_c00153{bottom:179.280000px;}
.y61_c00153{bottom:219.600000px;}
.y65_c00153{bottom:220.320000px;}
.y64_c00153{bottom:221.040000px;}
.y63_c00153{bottom:221.760000px;}
.y62_c00153{bottom:222.480000px;}
.y60_c00153{bottom:223.920000px;}
.y5f_c00153{bottom:259.200000px;}
.y5c_c00153{bottom:261.360000px;}
.y5d_c00153{bottom:262.800000px;}
.y5e_c00153{bottom:263.520000px;}
.y5b_c00153{bottom:264.240000px;}
.y5a_c00153{bottom:264.960000px;}
.y58_c00153{bottom:314.640000px;}
.y59_c00153{bottom:315.360000px;}
.y56_c00153{bottom:316.080000px;}
.y57_c00153{bottom:317.520000px;}
.y52_c00153{bottom:357.120000px;}
.y54_c00153{bottom:358.560000px;}
.y55_c00153{bottom:359.280000px;}
.y53_c00153{bottom:360.000000px;}
.y51_c00153{bottom:360.720000px;}
.y50_c00153{bottom:399.600000px;}
.y4c_c00153{bottom:400.320000px;}
.y4f_c00153{bottom:401.760000px;}
.y4e_c00153{bottom:402.480000px;}
.y4d_c00153{bottom:403.200000px;}
.y4b_c00153{bottom:403.920000px;}
.y48_c00153{bottom:441.360000px;}
.y4a_c00153{bottom:442.080000px;}
.y47_c00153{bottom:442.800000px;}
.y46_c00153{bottom:444.240000px;}
.y45_c00153{bottom:444.960000px;}
.y49_c00153{bottom:445.680000px;}
.y43_c00153{bottom:484.560000px;}
.y41_c00153{bottom:485.280000px;}
.y44_c00153{bottom:486.000000px;}
.y42_c00153{bottom:488.160000px;}
.y40_c00153{bottom:527.760000px;}
.y3d_c00153{bottom:528.480000px;}
.y3f_c00153{bottom:530.640000px;}
.y3e_c00153{bottom:531.360000px;}
.y39_c00153{bottom:570.240000px;}
.y3b_c00153{bottom:570.960000px;}
.y38_c00153{bottom:573.120000px;}
.y3a_c00153{bottom:573.840000px;}
.y3c_c00153{bottom:574.560000px;}
.y33_c00153{bottom:613.440000px;}
.y36_c00153{bottom:614.160000px;}
.y34_c00153{bottom:615.600000px;}
.y32_c00153{bottom:616.320000px;}
.y35_c00153{bottom:617.040000px;}
.y37_c00153{bottom:617.760000px;}
.y2e_c00153{bottom:666.720000px;}
.y31_c00153{bottom:668.160000px;}
.y2f_c00153{bottom:668.880000px;}
.y30_c00153{bottom:669.600000px;}
.y2a_c00153{bottom:709.200000px;}
.y29_c00153{bottom:709.920000px;}
.y2b_c00153{bottom:710.640000px;}
.y27_c00153{bottom:711.360000px;}
.y28_c00153{bottom:712.080000px;}
.y2c_c00153{bottom:713.520000px;}
.y2d_c00153{bottom:714.240000px;}
.y22_c00153{bottom:750.240000px;}
.y23_c00153{bottom:753.840000px;}
.y24_c00153{bottom:754.560000px;}
.y25_c00153{bottom:755.280000px;}
.y26_c00153{bottom:756.000000px;}
.y1a_c00153{bottom:793.440000px;}
.y1c_c00153{bottom:794.160000px;}
.y19_c00153{bottom:795.600000px;}
.y1f_c00153{bottom:796.320000px;}
.y1b_c00153{bottom:797.040000px;}
.y1d_c00153{bottom:797.760000px;}
.y1e_c00153{bottom:798.480000px;}
.y21_c00153{bottom:799.200000px;}
.y20_c00153{bottom:799.920000px;}
.y13_c00153{bottom:837.360000px;}
.y12_c00153{bottom:838.800000px;}
.y16_c00153{bottom:839.520000px;}
.y14_c00153{bottom:840.240000px;}
.y15_c00153{bottom:841.680000px;}
.y17_c00153{bottom:842.400000px;}
.y18_c00153{bottom:843.120000px;}
.ye_c00153{bottom:882.720000px;}
.yf_c00153{bottom:883.440000px;}
.y10_c00153{bottom:884.160000px;}
.y11_c00153{bottom:885.600000px;}
.y9_c00153{bottom:933.120000px;}
.yb_c00153{bottom:934.560000px;}
.yd_c00153{bottom:936.000000px;}
.y8_c00153{bottom:956.880000px;}
.ya_c00153{bottom:958.320000px;}
.yc_c00153{bottom:959.040000px;}
.y4_c00153{bottom:1009.440000px;}
.y2_c00153{bottom:1010.880000px;}
.y6_c00153{bottom:1011.600000px;}
.y3_c00153{bottom:1012.320000px;}
.y5_c00153{bottom:1013.040000px;}
.y7_c00153{bottom:1013.760000px;}
.y1_c00153{bottom:1096.560000px;}
.ha_c00153{height:31.100625px;}
.h6_c00153{height:33.692344px;}
.he_c00153{height:36.284062px;}
.h10_c00153{height:38.875781px;}
.h8_c00153{height:41.467500px;}
.h3_c00153{height:44.059219px;}
.h4_c00153{height:46.650937px;}
.h5_c00153{height:49.242656px;}
.h9_c00153{height:51.834375px;}
.h7_c00153{height:54.426094px;}
.hd_c00153{height:57.017812px;}
.hb_c00153{height:59.609531px;}
.hc_c00153{height:62.201250px;}
.hf_c00153{height:64.792969px;}
.h2_c00153{height:67.384687px;}
.h1_c00153{height:1149.000000px;}
.h0_c00153{height:1149.120000px;}
.w1_c00153{width:788.250000px;}
.w0_c00153{width:788.400000px;}
.x0_c00153{left:0.000000px;}
.x14_c00153{left:60.480000px;}
.x37_c00153{left:61.920000px;}
.x58_c00153{left:64.080000px;}
.x3b_c00153{left:82.080000px;}
.x1c_c00153{left:92.160000px;}
.x5c_c00153{left:95.040000px;}
.x31_c00153{left:103.680000px;}
.x38_c00153{left:113.040000px;}
.x5d_c00153{left:116.640000px;}
.x41_c00153{left:125.280000px;}
.x2c_c00153{left:133.920000px;}
.xa_c00153{left:136.080000px;}
.x1d_c00153{left:144.720000px;}
.x54_c00153{left:146.880000px;}
.x27_c00153{left:155.520000px;}
.x47_c00153{left:157.680000px;}
.x2_c00153{left:166.320000px;}
.xe_c00153{left:167.760000px;}
.x1e_c00153{left:177.120000px;}
.x55_c00153{left:179.280000px;}
.x48_c00153{left:188.640000px;}
.x5a_c00153{left:190.080000px;}
.x3_c00153{left:199.440000px;}
.x4f_c00153{left:200.880000px;}
.xb_c00153{left:210.240000px;}
.x5e_c00153{left:211.680000px;}
.x15_c00153{left:218.880000px;}
.x28_c00153{left:221.040000px;}
.x49_c00153{left:231.120000px;}
.x50_c00153{left:233.280000px;}
.x32_c00153{left:241.920000px;}
.x3c_c00153{left:243.360000px;}
.x5f_c00153{left:245.520000px;}
.x2d_c00153{left:252.720000px;}
.x4_c00153{left:262.080000px;}
.x16_c00153{left:263.520000px;}
.x4a_c00153{left:273.600000px;}
.x56_c00153{left:275.760000px;}
.xc_c00153{left:285.120000px;}
.x34_c00153{left:296.640000px;}
.x1f_c00153{left:306.720000px;}
.x51_c00153{left:318.240000px;}
.xf_c00153{left:328.320000px;}
.x20_c00153{left:339.840000px;}
.x5_c00153{left:349.200000px;}
.x42_c00153{left:350.640000px;}
.x3d_c00153{left:359.280000px;}
.xd_c00153{left:360.720000px;}
.x60_c00153{left:364.320000px;}
.x39_c00153{left:371.520000px;}
.x33_c00153{left:382.320000px;}
.x6_c00153{left:393.120000px;}
.x17_c00153{left:403.920000px;}
.x4d_c00153{left:406.080000px;}
.x3e_c00153{left:414.720000px;}
.x7_c00153{left:425.520000px;}
.x21_c00153{left:436.320000px;}
.x4e_c00153{left:438.480000px;}
.x18_c00153{left:446.400000px;}
.x52_c00153{left:448.560000px;}
.x22_c00153{left:456.480000px;}
.x43_c00153{left:457.920000px;}
.x61_c00153{left:460.080000px;}
.x10_c00153{left:468.720000px;}
.x2e_c00153{left:479.520000px;}
.x57_c00153{left:481.680000px;}
.x19_c00153{left:490.320000px;}
.x8_c00153{left:501.120000px;}
.x4b_c00153{left:502.560000px;}
.x3f_c00153{left:514.080000px;}
.x29_c00153{left:534.240000px;}
.x3a_c00153{left:535.680000px;}
.x11_c00153{left:544.320000px;}
.x4c_c00153{left:545.760000px;}
.x62_c00153{left:547.200000px;}
.x1a_c00153{left:555.120000px;}
.x23_c00153{left:556.560000px;}
.x2f_c00153{left:565.920000px;}
.x9_c00153{left:567.360000px;}
.x12_c00153{left:578.880000px;}
.x24_c00153{left:587.520000px;}
.x40_c00153{left:588.960000px;}
.x5b_c00153{left:590.400000px;}
.x59_c00153{left:601.200000px;}
.x2a_c00153{left:609.840000px;}
.x35_c00153{left:620.640000px;}
.x45_c00153{left:622.080000px;}
.x30_c00153{left:632.880000px;}
.x13_c00153{left:642.240000px;}
.x25_c00153{left:643.680000px;}
.x46_c00153{left:645.120000px;}
.x2b_c00153{left:654.480000px;}
.x53_c00153{left:655.920000px;}
.x44_c00153{left:666.000000px;}
.x26_c00153{left:675.360000px;}
.x36_c00153{left:676.800000px;}
.x1_c00153{left:678.240000px;}
.x1b_c00153{left:687.600000px;}
@media print{
.v1_c00153{vertical-align:-2.560000pt;}
.v0_c00153{vertical-align:0.000000pt;}
.v2_c00153{vertical-align:5.120000pt;}
.ls0_c00153{letter-spacing:0.000000pt;}
.ws1_c00153{word-spacing:-7.167787pt;}
.ws0_c00153{word-spacing:-4.730880pt;}
.ws2_c00153{word-spacing:0.000000pt;}
.fs8_c00153{font-size:30.720000pt;}
.fs4_c00153{font-size:33.280000pt;}
.fsc_c00153{font-size:35.840000pt;}
.fse_c00153{font-size:38.400000pt;}
.fs6_c00153{font-size:40.960000pt;}
.fs1_c00153{font-size:43.520000pt;}
.fs2_c00153{font-size:46.080000pt;}
.fs3_c00153{font-size:48.640000pt;}
.fs7_c00153{font-size:51.200000pt;}
.fs5_c00153{font-size:53.760000pt;}
.fsb_c00153{font-size:56.320000pt;}
.fs9_c00153{font-size:58.880000pt;}
.fsa_c00153{font-size:61.440000pt;}
.fsd_c00153{font-size:64.000000pt;}
.fs0_c00153{font-size:66.560000pt;}
.y0_c00153{bottom:0.000000pt;}
.y7d_c00153{bottom:41.600000pt;}
.y7e_c00153{bottom:42.240000pt;}
.y7c_c00153{bottom:44.160000pt;}
.y7b_c00153{bottom:44.800000pt;}
.y7a_c00153{bottom:45.440000pt;}
.y79_c00153{bottom:48.000000pt;}
.y76_c00153{bottom:80.000000pt;}
.y78_c00153{bottom:80.640000pt;}
.y77_c00153{bottom:81.920000pt;}
.y75_c00153{bottom:82.560000pt;}
.y74_c00153{bottom:83.200000pt;}
.y73_c00153{bottom:85.760000pt;}
.y72_c00153{bottom:115.840000pt;}
.y71_c00153{bottom:117.120000pt;}
.y6f_c00153{bottom:117.760000pt;}
.y6d_c00153{bottom:119.040000pt;}
.y70_c00153{bottom:119.680000pt;}
.y6e_c00153{bottom:120.320000pt;}
.y6c_c00153{bottom:121.600000pt;}
.y68_c00153{bottom:155.520000pt;}
.y69_c00153{bottom:156.160000pt;}
.y67_c00153{bottom:156.800000pt;}
.y6b_c00153{bottom:157.440000pt;}
.y6a_c00153{bottom:158.080000pt;}
.y66_c00153{bottom:159.360000pt;}
.y61_c00153{bottom:195.200000pt;}
.y65_c00153{bottom:195.840000pt;}
.y64_c00153{bottom:196.480000pt;}
.y63_c00153{bottom:197.120000pt;}
.y62_c00153{bottom:197.760000pt;}
.y60_c00153{bottom:199.040000pt;}
.y5f_c00153{bottom:230.400000pt;}
.y5c_c00153{bottom:232.320000pt;}
.y5d_c00153{bottom:233.600000pt;}
.y5e_c00153{bottom:234.240000pt;}
.y5b_c00153{bottom:234.880000pt;}
.y5a_c00153{bottom:235.520000pt;}
.y58_c00153{bottom:279.680000pt;}
.y59_c00153{bottom:280.320000pt;}
.y56_c00153{bottom:280.960000pt;}
.y57_c00153{bottom:282.240000pt;}
.y52_c00153{bottom:317.440000pt;}
.y54_c00153{bottom:318.720000pt;}
.y55_c00153{bottom:319.360000pt;}
.y53_c00153{bottom:320.000000pt;}
.y51_c00153{bottom:320.640000pt;}
.y50_c00153{bottom:355.200000pt;}
.y4c_c00153{bottom:355.840000pt;}
.y4f_c00153{bottom:357.120000pt;}
.y4e_c00153{bottom:357.760000pt;}
.y4d_c00153{bottom:358.400000pt;}
.y4b_c00153{bottom:359.040000pt;}
.y48_c00153{bottom:392.320000pt;}
.y4a_c00153{bottom:392.960000pt;}
.y47_c00153{bottom:393.600000pt;}
.y46_c00153{bottom:394.880000pt;}
.y45_c00153{bottom:395.520000pt;}
.y49_c00153{bottom:396.160000pt;}
.y43_c00153{bottom:430.720000pt;}
.y41_c00153{bottom:431.360000pt;}
.y44_c00153{bottom:432.000000pt;}
.y42_c00153{bottom:433.920000pt;}
.y40_c00153{bottom:469.120000pt;}
.y3d_c00153{bottom:469.760000pt;}
.y3f_c00153{bottom:471.680000pt;}
.y3e_c00153{bottom:472.320000pt;}
.y39_c00153{bottom:506.880000pt;}
.y3b_c00153{bottom:507.520000pt;}
.y38_c00153{bottom:509.440000pt;}
.y3a_c00153{bottom:510.080000pt;}
.y3c_c00153{bottom:510.720000pt;}
.y33_c00153{bottom:545.280000pt;}
.y36_c00153{bottom:545.920000pt;}
.y34_c00153{bottom:547.200000pt;}
.y32_c00153{bottom:547.840000pt;}
.y35_c00153{bottom:548.480000pt;}
.y37_c00153{bottom:549.120000pt;}
.y2e_c00153{bottom:592.640000pt;}
.y31_c00153{bottom:593.920000pt;}
.y2f_c00153{bottom:594.560000pt;}
.y30_c00153{bottom:595.200000pt;}
.y2a_c00153{bottom:630.400000pt;}
.y29_c00153{bottom:631.040000pt;}
.y2b_c00153{bottom:631.680000pt;}
.y27_c00153{bottom:632.320000pt;}
.y28_c00153{bottom:632.960000pt;}
.y2c_c00153{bottom:634.240000pt;}
.y2d_c00153{bottom:634.880000pt;}
.y22_c00153{bottom:666.880000pt;}
.y23_c00153{bottom:670.080000pt;}
.y24_c00153{bottom:670.720000pt;}
.y25_c00153{bottom:671.360000pt;}
.y26_c00153{bottom:672.000000pt;}
.y1a_c00153{bottom:705.280000pt;}
.y1c_c00153{bottom:705.920000pt;}
.y19_c00153{bottom:707.200000pt;}
.y1f_c00153{bottom:707.840000pt;}
.y1b_c00153{bottom:708.480000pt;}
.y1d_c00153{bottom:709.120000pt;}
.y1e_c00153{bottom:709.760000pt;}
.y21_c00153{bottom:710.400000pt;}
.y20_c00153{bottom:711.040000pt;}
.y13_c00153{bottom:744.320000pt;}
.y12_c00153{bottom:745.600000pt;}
.y16_c00153{bottom:746.240000pt;}
.y14_c00153{bottom:746.880000pt;}
.y15_c00153{bottom:748.160000pt;}
.y17_c00153{bottom:748.800000pt;}
.y18_c00153{bottom:749.440000pt;}
.ye_c00153{bottom:784.640000pt;}
.yf_c00153{bottom:785.280000pt;}
.y10_c00153{bottom:785.920000pt;}
.y11_c00153{bottom:787.200000pt;}
.y9_c00153{bottom:829.440000pt;}
.yb_c00153{bottom:830.720000pt;}
.yd_c00153{bottom:832.000000pt;}
.y8_c00153{bottom:850.560000pt;}
.ya_c00153{bottom:851.840000pt;}
.yc_c00153{bottom:852.480000pt;}
.y4_c00153{bottom:897.280000pt;}
.y2_c00153{bottom:898.560000pt;}
.y6_c00153{bottom:899.200000pt;}
.y3_c00153{bottom:899.840000pt;}
.y5_c00153{bottom:900.480000pt;}
.y7_c00153{bottom:901.120000pt;}
.y1_c00153{bottom:974.720000pt;}
.ha_c00153{height:27.645000pt;}
.h6_c00153{height:29.948750pt;}
.he_c00153{height:32.252500pt;}
.h10_c00153{height:34.556250pt;}
.h8_c00153{height:36.860000pt;}
.h3_c00153{height:39.163750pt;}
.h4_c00153{height:41.467500pt;}
.h5_c00153{height:43.771250pt;}
.h9_c00153{height:46.075000pt;}
.h7_c00153{height:48.378750pt;}
.hd_c00153{height:50.682500pt;}
.hb_c00153{height:52.986250pt;}
.hc_c00153{height:55.290000pt;}
.hf_c00153{height:57.593750pt;}
.h2_c00153{height:59.897500pt;}
.h1_c00153{height:1021.333333pt;}
.h0_c00153{height:1021.440000pt;}
.w1_c00153{width:700.666667pt;}
.w0_c00153{width:700.800000pt;}
.x0_c00153{left:0.000000pt;}
.x14_c00153{left:53.760000pt;}
.x37_c00153{left:55.040000pt;}
.x58_c00153{left:56.960000pt;}
.x3b_c00153{left:72.960000pt;}
.x1c_c00153{left:81.920000pt;}
.x5c_c00153{left:84.480000pt;}
.x31_c00153{left:92.160000pt;}
.x38_c00153{left:100.480000pt;}
.x5d_c00153{left:103.680000pt;}
.x41_c00153{left:111.360000pt;}
.x2c_c00153{left:119.040000pt;}
.xa_c00153{left:120.960000pt;}
.x1d_c00153{left:128.640000pt;}
.x54_c00153{left:130.560000pt;}
.x27_c00153{left:138.240000pt;}
.x47_c00153{left:140.160000pt;}
.x2_c00153{left:147.840000pt;}
.xe_c00153{left:149.120000pt;}
.x1e_c00153{left:157.440000pt;}
.x55_c00153{left:159.360000pt;}
.x48_c00153{left:167.680000pt;}
.x5a_c00153{left:168.960000pt;}
.x3_c00153{left:177.280000pt;}
.x4f_c00153{left:178.560000pt;}
.xb_c00153{left:186.880000pt;}
.x5e_c00153{left:188.160000pt;}
.x15_c00153{left:194.560000pt;}
.x28_c00153{left:196.480000pt;}
.x49_c00153{left:205.440000pt;}
.x50_c00153{left:207.360000pt;}
.x32_c00153{left:215.040000pt;}
.x3c_c00153{left:216.320000pt;}
.x5f_c00153{left:218.240000pt;}
.x2d_c00153{left:224.640000pt;}
.x4_c00153{left:232.960000pt;}
.x16_c00153{left:234.240000pt;}
.x4a_c00153{left:243.200000pt;}
.x56_c00153{left:245.120000pt;}
.xc_c00153{left:253.440000pt;}
.x34_c00153{left:263.680000pt;}
.x1f_c00153{left:272.640000pt;}
.x51_c00153{left:282.880000pt;}
.xf_c00153{left:291.840000pt;}
.x20_c00153{left:302.080000pt;}
.x5_c00153{left:310.400000pt;}
.x42_c00153{left:311.680000pt;}
.x3d_c00153{left:319.360000pt;}
.xd_c00153{left:320.640000pt;}
.x60_c00153{left:323.840000pt;}
.x39_c00153{left:330.240000pt;}
.x33_c00153{left:339.840000pt;}
.x6_c00153{left:349.440000pt;}
.x17_c00153{left:359.040000pt;}
.x4d_c00153{left:360.960000pt;}
.x3e_c00153{left:368.640000pt;}
.x7_c00153{left:378.240000pt;}
.x21_c00153{left:387.840000pt;}
.x4e_c00153{left:389.760000pt;}
.x18_c00153{left:396.800000pt;}
.x52_c00153{left:398.720000pt;}
.x22_c00153{left:405.760000pt;}
.x43_c00153{left:407.040000pt;}
.x61_c00153{left:408.960000pt;}
.x10_c00153{left:416.640000pt;}
.x2e_c00153{left:426.240000pt;}
.x57_c00153{left:428.160000pt;}
.x19_c00153{left:435.840000pt;}
.x8_c00153{left:445.440000pt;}
.x4b_c00153{left:446.720000pt;}
.x3f_c00153{left:456.960000pt;}
.x29_c00153{left:474.880000pt;}
.x3a_c00153{left:476.160000pt;}
.x11_c00153{left:483.840000pt;}
.x4c_c00153{left:485.120000pt;}
.x62_c00153{left:486.400000pt;}
.x1a_c00153{left:493.440000pt;}
.x23_c00153{left:494.720000pt;}
.x2f_c00153{left:503.040000pt;}
.x9_c00153{left:504.320000pt;}
.x12_c00153{left:514.560000pt;}
.x24_c00153{left:522.240000pt;}
.x40_c00153{left:523.520000pt;}
.x5b_c00153{left:524.800000pt;}
.x59_c00153{left:534.400000pt;}
.x2a_c00153{left:542.080000pt;}
.x35_c00153{left:551.680000pt;}
.x45_c00153{left:552.960000pt;}
.x30_c00153{left:562.560000pt;}
.x13_c00153{left:570.880000pt;}
.x25_c00153{left:572.160000pt;}
.x46_c00153{left:573.440000pt;}
.x2b_c00153{left:581.760000pt;}
.x53_c00153{left:583.040000pt;}
.x44_c00153{left:592.000000pt;}
.x26_c00153{left:600.320000pt;}
.x36_c00153{left:601.600000pt;}
.x1_c00153{left:602.880000pt;}
.x1b_c00153{left:611.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d524fab1972404970e13c85e.woff2')format("woff");}.ff1_c00154{font-family:ff1_c00154;line-height:1.109863;font-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_c00154{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m0_c00154{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00154{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m21_c00154{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m29_c00154{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00154{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00154{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m8_c00154{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m46_c00154{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m38_c00154{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m56_c00154{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m20_c00154{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m11_c00154{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);}
.m4d_c00154{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00154{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m15_c00154{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m5_c00154{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m40_c00154{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.me_c00154{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_c00154{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);}
.m31_c00154{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m34_c00154{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);}
.m6_c00154{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);}
.m52_c00154{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m48_c00154{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m45_c00154{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);}
.m36_c00154{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);}
.m3c_c00154{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);}
.m2_c00154{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m35_c00154{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);}
.m53_c00154{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);}
.m37_c00154{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);}
.m50_c00154{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m1_c00154{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m23_c00154{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00154{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m22_c00154{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00154{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);}
.mb_c00154{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);}
.m12_c00154{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.md_c00154{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00154{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m41_c00154{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m18_c00154{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);}
.m32_c00154{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.mc_c00154{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m28_c00154{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);}
.m2e_c00154{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m57_c00154{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);}
.m1a_c00154{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m17_c00154{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00154{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00154{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m47_c00154{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);}
.m49_c00154{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m19_c00154{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00154{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);}
.m7_c00154{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m16_c00154{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m27_c00154{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00154{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00154{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m39_c00154{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);}
.m25_c00154{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m4_c00154{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m14_c00154{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.mf_c00154{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m51_c00154{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m9_c00154{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);}
.m3_c00154{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m30_c00154{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00154{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00154{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);}
.m58_c00154{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m44_c00154{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m42_c00154{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);}
.m33_c00154{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);}
.m2c_c00154{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m55_c00154{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00154{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m54_c00154{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m13_c00154{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m26_c00154{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00154{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);}
.m2b_c00154{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);}
.m59_c00154{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00154{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m24_c00154{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00154{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m43_c00154{transform:matrix(0.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680000,0.000000,0.000000,0.250000,0,0);}
.v0_c00154{vertical-align:0.000000px;}
.ls0_c00154{letter-spacing:0.000000px;}
.sc__c00154{text-shadow:none;}
.sc0_c00154{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00154{-webkit-text-stroke:0px transparent;}
.sc0_c00154{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00154{word-spacing:0.000000px;}
.fc0_c00154{color:transparent;}
.fsb_c00154{font-size:34.560000px;}
.fs3_c00154{font-size:37.440000px;}
.fsd_c00154{font-size:40.320000px;}
.fse_c00154{font-size:43.200000px;}
.fs1_c00154{font-size:46.080000px;}
.fs5_c00154{font-size:48.960000px;}
.fs4_c00154{font-size:51.840000px;}
.fs2_c00154{font-size:54.720000px;}
.fs9_c00154{font-size:57.600000px;}
.fs6_c00154{font-size:60.480000px;}
.fs8_c00154{font-size:63.360000px;}
.fsa_c00154{font-size:66.240000px;}
.fsc_c00154{font-size:69.120000px;}
.fs7_c00154{font-size:72.000000px;}
.fs0_c00154{font-size:80.640000px;}
.y0_c00154{bottom:0.000000px;}
.y7a_c00154{bottom:93.600000px;}
.y78_c00154{bottom:95.040000px;}
.y79_c00154{bottom:95.760000px;}
.y77_c00154{bottom:132.480000px;}
.y74_c00154{bottom:133.920000px;}
.y76_c00154{bottom:135.360000px;}
.y71_c00154{bottom:136.080000px;}
.y75_c00154{bottom:136.800000px;}
.y73_c00154{bottom:137.520000px;}
.y72_c00154{bottom:138.240000px;}
.y70_c00154{bottom:138.960000px;}
.y6f_c00154{bottom:174.960000px;}
.y6d_c00154{bottom:177.120000px;}
.y6c_c00154{bottom:177.840000px;}
.y6e_c00154{bottom:179.280000px;}
.y6b_c00154{bottom:181.440000px;}
.y6a_c00154{bottom:182.160000px;}
.y66_c00154{bottom:218.880000px;}
.y67_c00154{bottom:219.600000px;}
.y69_c00154{bottom:220.320000px;}
.y68_c00154{bottom:221.040000px;}
.y65_c00154{bottom:222.480000px;}
.y64_c00154{bottom:223.200000px;}
.y63_c00154{bottom:224.640000px;}
.y62_c00154{bottom:260.640000px;}
.y60_c00154{bottom:261.360000px;}
.y61_c00154{bottom:264.240000px;}
.y5f_c00154{bottom:265.680000px;}
.y5e_c00154{bottom:314.640000px;}
.y5a_c00154{bottom:316.080000px;}
.y5d_c00154{bottom:317.520000px;}
.y5c_c00154{bottom:318.240000px;}
.y5b_c00154{bottom:318.960000px;}
.y59_c00154{bottom:319.680000px;}
.y54_c00154{bottom:357.840000px;}
.y58_c00154{bottom:358.560000px;}
.y57_c00154{bottom:360.000000px;}
.y56_c00154{bottom:360.720000px;}
.y55_c00154{bottom:361.440000px;}
.y53_c00154{bottom:362.160000px;}
.y52_c00154{bottom:362.880000px;}
.y50_c00154{bottom:399.600000px;}
.y51_c00154{bottom:403.200000px;}
.y4f_c00154{bottom:403.920000px;}
.y4e_c00154{bottom:404.640000px;}
.y4d_c00154{bottom:405.360000px;}
.y4c_c00154{bottom:443.520000px;}
.y4b_c00154{bottom:446.400000px;}
.y4a_c00154{bottom:447.120000px;}
.y49_c00154{bottom:486.000000px;}
.y45_c00154{bottom:486.720000px;}
.y46_c00154{bottom:487.440000px;}
.y48_c00154{bottom:488.880000px;}
.y47_c00154{bottom:490.320000px;}
.y41_c00154{bottom:529.200000px;}
.y43_c00154{bottom:529.920000px;}
.y40_c00154{bottom:530.640000px;}
.y42_c00154{bottom:532.080000px;}
.y3f_c00154{bottom:532.800000px;}
.y44_c00154{bottom:533.520000px;}
.y3c_c00154{bottom:572.400000px;}
.y3e_c00154{bottom:574.560000px;}
.y3b_c00154{bottom:575.280000px;}
.y3d_c00154{bottom:576.000000px;}
.y3a_c00154{bottom:616.320000px;}
.y38_c00154{bottom:617.760000px;}
.y37_c00154{bottom:618.480000px;}
.y39_c00154{bottom:619.200000px;}
.y35_c00154{bottom:658.080000px;}
.y34_c00154{bottom:660.960000px;}
.y36_c00154{bottom:661.680000px;}
.y33_c00154{bottom:712.800000px;}
.y32_c00154{bottom:713.520000px;}
.y2d_c00154{bottom:753.840000px;}
.y2e_c00154{bottom:754.560000px;}
.y31_c00154{bottom:755.280000px;}
.y2c_c00154{bottom:756.000000px;}
.y2f_c00154{bottom:757.440000px;}
.y30_c00154{bottom:758.160000px;}
.y24_c00154{bottom:795.600000px;}
.y26_c00154{bottom:796.320000px;}
.y25_c00154{bottom:797.040000px;}
.y2a_c00154{bottom:797.760000px;}
.y28_c00154{bottom:799.200000px;}
.y27_c00154{bottom:799.920000px;}
.y29_c00154{bottom:800.640000px;}
.y2b_c00154{bottom:801.360000px;}
.y1f_c00154{bottom:840.960000px;}
.y20_c00154{bottom:841.680000px;}
.y21_c00154{bottom:842.400000px;}
.y22_c00154{bottom:843.120000px;}
.y23_c00154{bottom:843.840000px;}
.y18_c00154{bottom:882.000000px;}
.y17_c00154{bottom:883.440000px;}
.y1d_c00154{bottom:884.160000px;}
.y1c_c00154{bottom:884.880000px;}
.y19_c00154{bottom:885.600000px;}
.y1a_c00154{bottom:886.320000px;}
.y1b_c00154{bottom:887.040000px;}
.y1e_c00154{bottom:887.760000px;}
.yf_c00154{bottom:923.760000px;}
.y11_c00154{bottom:925.920000px;}
.y15_c00154{bottom:927.360000px;}
.y10_c00154{bottom:928.080000px;}
.y12_c00154{bottom:928.800000px;}
.y13_c00154{bottom:929.520000px;}
.y14_c00154{bottom:930.240000px;}
.y16_c00154{bottom:930.960000px;}
.y8_c00154{bottom:965.520000px;}
.yc_c00154{bottom:968.400000px;}
.y9_c00154{bottom:969.120000px;}
.ya_c00154{bottom:969.840000px;}
.yb_c00154{bottom:971.280000px;}
.yd_c00154{bottom:972.720000px;}
.ye_c00154{bottom:973.440000px;}
.y2_c00154{bottom:1009.440000px;}
.y3_c00154{bottom:1012.320000px;}
.y6_c00154{bottom:1013.040000px;}
.y4_c00154{bottom:1013.760000px;}
.y5_c00154{bottom:1014.480000px;}
.y7_c00154{bottom:1015.920000px;}
.y1_c00154{bottom:1096.560000px;}
.hd_c00154{height:31.100625px;}
.h5_c00154{height:33.692344px;}
.hf_c00154{height:36.284062px;}
.h10_c00154{height:38.875781px;}
.h3_c00154{height:41.467500px;}
.h7_c00154{height:44.059219px;}
.h6_c00154{height:46.650937px;}
.h4_c00154{height:49.242656px;}
.hb_c00154{height:51.834375px;}
.h8_c00154{height:54.426094px;}
.ha_c00154{height:57.017812px;}
.hc_c00154{height:59.609531px;}
.he_c00154{height:62.201250px;}
.h9_c00154{height:64.792969px;}
.h2_c00154{height:72.568125px;}
.h0_c00154{height:1153.440000px;}
.h1_c00154{height:1153.500000px;}
.w0_c00154{width:793.440000px;}
.w1_c00154{width:793.500000px;}
.x0_c00154{left:0.000000px;}
.x2_c00154{left:61.200000px;}
.x20_c00154{left:62.640000px;}
.x46_c00154{left:92.160000px;}
.x4a_c00154{left:93.600000px;}
.x2c_c00154{left:102.240000px;}
.x3_c00154{left:103.680000px;}
.x3c_c00154{left:113.760000px;}
.x24_c00154{left:115.200000px;}
.x37_c00154{left:123.840000px;}
.x31_c00154{left:125.280000px;}
.x45_c00154{left:135.360000px;}
.x50_c00154{left:146.160000px;}
.x47_c00154{left:155.520000px;}
.x38_c00154{left:156.960000px;}
.x12_c00154{left:167.040000px;}
.x21_c00154{left:168.480000px;}
.x25_c00154{left:177.120000px;}
.x42_c00154{left:178.560000px;}
.x39_c00154{left:189.360000px;}
.x26_c00154{left:199.440000px;}
.x32_c00154{left:209.520000px;}
.x4b_c00154{left:210.960000px;}
.x4_c00154{left:221.040000px;}
.x27_c00154{left:231.840000px;}
.x43_c00154{left:241.200000px;}
.x3d_c00154{left:242.640000px;}
.x5_c00154{left:253.440000px;}
.x13_c00154{left:263.520000px;}
.x19_c00154{left:274.320000px;}
.x6_c00154{left:285.840000px;}
.xd_c00154{left:295.920000px;}
.x2d_c00154{left:298.080000px;}
.x33_c00154{left:306.720000px;}
.x1a_c00154{left:318.240000px;}
.x7_c00154{left:328.320000px;}
.x14_c00154{left:340.560000px;}
.x35_c00154{left:349.920000px;}
.x4f_c00154{left:351.360000px;}
.x8_c00154{left:360.720000px;}
.xe_c00154{left:372.240000px;}
.x22_c00154{left:382.320000px;}
.x28_c00154{left:392.400000px;}
.x1b_c00154{left:393.840000px;}
.x9_c00154{left:403.920000px;}
.x2e_c00154{left:414.720000px;}
.x34_c00154{left:426.240000px;}
.x29_c00154{left:436.320000px;}
.x48_c00154{left:448.560000px;}
.x23_c00154{left:458.640000px;}
.x15_c00154{left:470.160000px;}
.x3e_c00154{left:479.520000px;}
.xa_c00154{left:480.960000px;}
.x44_c00154{left:491.040000px;}
.x3a_c00154{left:501.120000px;}
.x1c_c00154{left:502.560000px;}
.xb_c00154{left:512.640000px;}
.x2a_c00154{left:533.520000px;}
.x41_c00154{left:534.960000px;}
.x1d_c00154{left:546.480000px;}
.x36_c00154{left:556.560000px;}
.xf_c00154{left:568.080000px;}
.x2f_c00154{left:578.160000px;}
.x49_c00154{left:579.600000px;}
.x16_c00154{left:589.680000px;}
.x10_c00154{left:600.480000px;}
.x3b_c00154{left:611.280000px;}
.xc_c00154{left:622.080000px;}
.x11_c00154{left:633.600000px;}
.x1e_c00154{left:644.400000px;}
.x17_c00154{left:654.480000px;}
.x4e_c00154{left:656.640000px;}
.x4c_c00154{left:665.280000px;}
.x3f_c00154{left:666.720000px;}
.x18_c00154{left:677.520000px;}
.x1_c00154{left:681.120000px;}
.x2b_c00154{left:686.880000px;}
.x30_c00154{left:688.320000px;}
.x1f_c00154{left:697.680000px;}
.x40_c00154{left:699.120000px;}
.x4d_c00154{left:710.640000px;}
@media print{
.v0_c00154{vertical-align:0.000000pt;}
.ls0_c00154{letter-spacing:0.000000pt;}
.ws0_c00154{word-spacing:0.000000pt;}
.fsb_c00154{font-size:30.720000pt;}
.fs3_c00154{font-size:33.280000pt;}
.fsd_c00154{font-size:35.840000pt;}
.fse_c00154{font-size:38.400000pt;}
.fs1_c00154{font-size:40.960000pt;}
.fs5_c00154{font-size:43.520000pt;}
.fs4_c00154{font-size:46.080000pt;}
.fs2_c00154{font-size:48.640000pt;}
.fs9_c00154{font-size:51.200000pt;}
.fs6_c00154{font-size:53.760000pt;}
.fs8_c00154{font-size:56.320000pt;}
.fsa_c00154{font-size:58.880000pt;}
.fsc_c00154{font-size:61.440000pt;}
.fs7_c00154{font-size:64.000000pt;}
.fs0_c00154{font-size:71.680000pt;}
.y0_c00154{bottom:0.000000pt;}
.y7a_c00154{bottom:83.200000pt;}
.y78_c00154{bottom:84.480000pt;}
.y79_c00154{bottom:85.120000pt;}
.y77_c00154{bottom:117.760000pt;}
.y74_c00154{bottom:119.040000pt;}
.y76_c00154{bottom:120.320000pt;}
.y71_c00154{bottom:120.960000pt;}
.y75_c00154{bottom:121.600000pt;}
.y73_c00154{bottom:122.240000pt;}
.y72_c00154{bottom:122.880000pt;}
.y70_c00154{bottom:123.520000pt;}
.y6f_c00154{bottom:155.520000pt;}
.y6d_c00154{bottom:157.440000pt;}
.y6c_c00154{bottom:158.080000pt;}
.y6e_c00154{bottom:159.360000pt;}
.y6b_c00154{bottom:161.280000pt;}
.y6a_c00154{bottom:161.920000pt;}
.y66_c00154{bottom:194.560000pt;}
.y67_c00154{bottom:195.200000pt;}
.y69_c00154{bottom:195.840000pt;}
.y68_c00154{bottom:196.480000pt;}
.y65_c00154{bottom:197.760000pt;}
.y64_c00154{bottom:198.400000pt;}
.y63_c00154{bottom:199.680000pt;}
.y62_c00154{bottom:231.680000pt;}
.y60_c00154{bottom:232.320000pt;}
.y61_c00154{bottom:234.880000pt;}
.y5f_c00154{bottom:236.160000pt;}
.y5e_c00154{bottom:279.680000pt;}
.y5a_c00154{bottom:280.960000pt;}
.y5d_c00154{bottom:282.240000pt;}
.y5c_c00154{bottom:282.880000pt;}
.y5b_c00154{bottom:283.520000pt;}
.y59_c00154{bottom:284.160000pt;}
.y54_c00154{bottom:318.080000pt;}
.y58_c00154{bottom:318.720000pt;}
.y57_c00154{bottom:320.000000pt;}
.y56_c00154{bottom:320.640000pt;}
.y55_c00154{bottom:321.280000pt;}
.y53_c00154{bottom:321.920000pt;}
.y52_c00154{bottom:322.560000pt;}
.y50_c00154{bottom:355.200000pt;}
.y51_c00154{bottom:358.400000pt;}
.y4f_c00154{bottom:359.040000pt;}
.y4e_c00154{bottom:359.680000pt;}
.y4d_c00154{bottom:360.320000pt;}
.y4c_c00154{bottom:394.240000pt;}
.y4b_c00154{bottom:396.800000pt;}
.y4a_c00154{bottom:397.440000pt;}
.y49_c00154{bottom:432.000000pt;}
.y45_c00154{bottom:432.640000pt;}
.y46_c00154{bottom:433.280000pt;}
.y48_c00154{bottom:434.560000pt;}
.y47_c00154{bottom:435.840000pt;}
.y41_c00154{bottom:470.400000pt;}
.y43_c00154{bottom:471.040000pt;}
.y40_c00154{bottom:471.680000pt;}
.y42_c00154{bottom:472.960000pt;}
.y3f_c00154{bottom:473.600000pt;}
.y44_c00154{bottom:474.240000pt;}
.y3c_c00154{bottom:508.800000pt;}
.y3e_c00154{bottom:510.720000pt;}
.y3b_c00154{bottom:511.360000pt;}
.y3d_c00154{bottom:512.000000pt;}
.y3a_c00154{bottom:547.840000pt;}
.y38_c00154{bottom:549.120000pt;}
.y37_c00154{bottom:549.760000pt;}
.y39_c00154{bottom:550.400000pt;}
.y35_c00154{bottom:584.960000pt;}
.y34_c00154{bottom:587.520000pt;}
.y36_c00154{bottom:588.160000pt;}
.y33_c00154{bottom:633.600000pt;}
.y32_c00154{bottom:634.240000pt;}
.y2d_c00154{bottom:670.080000pt;}
.y2e_c00154{bottom:670.720000pt;}
.y31_c00154{bottom:671.360000pt;}
.y2c_c00154{bottom:672.000000pt;}
.y2f_c00154{bottom:673.280000pt;}
.y30_c00154{bottom:673.920000pt;}
.y24_c00154{bottom:707.200000pt;}
.y26_c00154{bottom:707.840000pt;}
.y25_c00154{bottom:708.480000pt;}
.y2a_c00154{bottom:709.120000pt;}
.y28_c00154{bottom:710.400000pt;}
.y27_c00154{bottom:711.040000pt;}
.y29_c00154{bottom:711.680000pt;}
.y2b_c00154{bottom:712.320000pt;}
.y1f_c00154{bottom:747.520000pt;}
.y20_c00154{bottom:748.160000pt;}
.y21_c00154{bottom:748.800000pt;}
.y22_c00154{bottom:749.440000pt;}
.y23_c00154{bottom:750.080000pt;}
.y18_c00154{bottom:784.000000pt;}
.y17_c00154{bottom:785.280000pt;}
.y1d_c00154{bottom:785.920000pt;}
.y1c_c00154{bottom:786.560000pt;}
.y19_c00154{bottom:787.200000pt;}
.y1a_c00154{bottom:787.840000pt;}
.y1b_c00154{bottom:788.480000pt;}
.y1e_c00154{bottom:789.120000pt;}
.yf_c00154{bottom:821.120000pt;}
.y11_c00154{bottom:823.040000pt;}
.y15_c00154{bottom:824.320000pt;}
.y10_c00154{bottom:824.960000pt;}
.y12_c00154{bottom:825.600000pt;}
.y13_c00154{bottom:826.240000pt;}
.y14_c00154{bottom:826.880000pt;}
.y16_c00154{bottom:827.520000pt;}
.y8_c00154{bottom:858.240000pt;}
.yc_c00154{bottom:860.800000pt;}
.y9_c00154{bottom:861.440000pt;}
.ya_c00154{bottom:862.080000pt;}
.yb_c00154{bottom:863.360000pt;}
.yd_c00154{bottom:864.640000pt;}
.ye_c00154{bottom:865.280000pt;}
.y2_c00154{bottom:897.280000pt;}
.y3_c00154{bottom:899.840000pt;}
.y6_c00154{bottom:900.480000pt;}
.y4_c00154{bottom:901.120000pt;}
.y5_c00154{bottom:901.760000pt;}
.y7_c00154{bottom:903.040000pt;}
.y1_c00154{bottom:974.720000pt;}
.hd_c00154{height:27.645000pt;}
.h5_c00154{height:29.948750pt;}
.hf_c00154{height:32.252500pt;}
.h10_c00154{height:34.556250pt;}
.h3_c00154{height:36.860000pt;}
.h7_c00154{height:39.163750pt;}
.h6_c00154{height:41.467500pt;}
.h4_c00154{height:43.771250pt;}
.hb_c00154{height:46.075000pt;}
.h8_c00154{height:48.378750pt;}
.ha_c00154{height:50.682500pt;}
.hc_c00154{height:52.986250pt;}
.he_c00154{height:55.290000pt;}
.h9_c00154{height:57.593750pt;}
.h2_c00154{height:64.505000pt;}
.h0_c00154{height:1025.280000pt;}
.h1_c00154{height:1025.333333pt;}
.w0_c00154{width:705.280000pt;}
.w1_c00154{width:705.333333pt;}
.x0_c00154{left:0.000000pt;}
.x2_c00154{left:54.400000pt;}
.x20_c00154{left:55.680000pt;}
.x46_c00154{left:81.920000pt;}
.x4a_c00154{left:83.200000pt;}
.x2c_c00154{left:90.880000pt;}
.x3_c00154{left:92.160000pt;}
.x3c_c00154{left:101.120000pt;}
.x24_c00154{left:102.400000pt;}
.x37_c00154{left:110.080000pt;}
.x31_c00154{left:111.360000pt;}
.x45_c00154{left:120.320000pt;}
.x50_c00154{left:129.920000pt;}
.x47_c00154{left:138.240000pt;}
.x38_c00154{left:139.520000pt;}
.x12_c00154{left:148.480000pt;}
.x21_c00154{left:149.760000pt;}
.x25_c00154{left:157.440000pt;}
.x42_c00154{left:158.720000pt;}
.x39_c00154{left:168.320000pt;}
.x26_c00154{left:177.280000pt;}
.x32_c00154{left:186.240000pt;}
.x4b_c00154{left:187.520000pt;}
.x4_c00154{left:196.480000pt;}
.x27_c00154{left:206.080000pt;}
.x43_c00154{left:214.400000pt;}
.x3d_c00154{left:215.680000pt;}
.x5_c00154{left:225.280000pt;}
.x13_c00154{left:234.240000pt;}
.x19_c00154{left:243.840000pt;}
.x6_c00154{left:254.080000pt;}
.xd_c00154{left:263.040000pt;}
.x2d_c00154{left:264.960000pt;}
.x33_c00154{left:272.640000pt;}
.x1a_c00154{left:282.880000pt;}
.x7_c00154{left:291.840000pt;}
.x14_c00154{left:302.720000pt;}
.x35_c00154{left:311.040000pt;}
.x4f_c00154{left:312.320000pt;}
.x8_c00154{left:320.640000pt;}
.xe_c00154{left:330.880000pt;}
.x22_c00154{left:339.840000pt;}
.x28_c00154{left:348.800000pt;}
.x1b_c00154{left:350.080000pt;}
.x9_c00154{left:359.040000pt;}
.x2e_c00154{left:368.640000pt;}
.x34_c00154{left:378.880000pt;}
.x29_c00154{left:387.840000pt;}
.x48_c00154{left:398.720000pt;}
.x23_c00154{left:407.680000pt;}
.x15_c00154{left:417.920000pt;}
.x3e_c00154{left:426.240000pt;}
.xa_c00154{left:427.520000pt;}
.x44_c00154{left:436.480000pt;}
.x3a_c00154{left:445.440000pt;}
.x1c_c00154{left:446.720000pt;}
.xb_c00154{left:455.680000pt;}
.x2a_c00154{left:474.240000pt;}
.x41_c00154{left:475.520000pt;}
.x1d_c00154{left:485.760000pt;}
.x36_c00154{left:494.720000pt;}
.xf_c00154{left:504.960000pt;}
.x2f_c00154{left:513.920000pt;}
.x49_c00154{left:515.200000pt;}
.x16_c00154{left:524.160000pt;}
.x10_c00154{left:533.760000pt;}
.x3b_c00154{left:543.360000pt;}
.xc_c00154{left:552.960000pt;}
.x11_c00154{left:563.200000pt;}
.x1e_c00154{left:572.800000pt;}
.x17_c00154{left:581.760000pt;}
.x4e_c00154{left:583.680000pt;}
.x4c_c00154{left:591.360000pt;}
.x3f_c00154{left:592.640000pt;}
.x18_c00154{left:602.240000pt;}
.x1_c00154{left:605.440000pt;}
.x2b_c00154{left:610.560000pt;}
.x30_c00154{left:611.840000pt;}
.x1f_c00154{left:620.160000pt;}
.x40_c00154{left:621.440000pt;}
.x4d_c00154{left:631.680000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8d818678b2c1b2fa08d04688.woff2')format("woff");}.ff1_c00155{font-family:ff1_c00155;line-height:1.109863;font-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_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);}
.m3_c00155{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m2_c00155{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m9_c00155{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m8_c00155{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m0_c00155{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m1_c00155{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m18_c00155{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);}
.m14_c00155{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_c00155{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00155{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m12_c00155{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);}
.m16_c00155{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);}
.m6_c00155{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.mc_c00155{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m15_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);}
.m4_c00155{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m7_c00155{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);}
.mb_c00155{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m17_c00155{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m13_c00155{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.ma_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);}
.md_c00155{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.me_c00155{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m5_c00155{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);}
.m11_c00155{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m10_c00155{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.v0_c00155{vertical-align:0.000000px;}
.ls0_c00155{letter-spacing:0.000000px;}
.sc__c00155{text-shadow:none;}
.sc0_c00155{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00155{-webkit-text-stroke:0px transparent;}
.sc0_c00155{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00155{word-spacing:0.000000px;}
.fc0_c00155{color:transparent;}
.fs5_c00155{font-size:34.560000px;}
.fs9_c00155{font-size:37.440000px;}
.fs8_c00155{font-size:40.320000px;}
.fs1_c00155{font-size:46.080000px;}
.fs7_c00155{font-size:48.960000px;}
.fs6_c00155{font-size:51.840000px;}
.fs4_c00155{font-size:54.720000px;}
.fs3_c00155{font-size:60.480000px;}
.fsb_c00155{font-size:63.360000px;}
.fs2_c00155{font-size:66.240000px;}
.fsa_c00155{font-size:74.880000px;}
.fs0_c00155{font-size:77.760000px;}
.y0_c00155{bottom:0.000000px;}
.y10_c00155{bottom:880.560000px;}
.y11_c00155{bottom:882.720000px;}
.y12_c00155{bottom:883.440000px;}
.yd_c00155{bottom:923.040000px;}
.yf_c00155{bottom:923.760000px;}
.yc_c00155{bottom:925.200000px;}
.ye_c00155{bottom:926.640000px;}
.y7_c00155{bottom:964.800000px;}
.ya_c00155{bottom:965.520000px;}
.y9_c00155{bottom:968.400000px;}
.y8_c00155{bottom:969.120000px;}
.yb_c00155{bottom:969.840000px;}
.y3_c00155{bottom:1008.720000px;}
.y4_c00155{bottom:1009.440000px;}
.y2_c00155{bottom:1011.600000px;}
.y5_c00155{bottom:1012.320000px;}
.y6_c00155{bottom:1013.040000px;}
.y1_c00155{bottom:1089.360000px;}
.h7_c00155{height:31.100625px;}
.hb_c00155{height:33.692344px;}
.ha_c00155{height:36.284062px;}
.h3_c00155{height:41.467500px;}
.h9_c00155{height:44.059219px;}
.h8_c00155{height:46.650937px;}
.h6_c00155{height:49.242656px;}
.h5_c00155{height:54.426094px;}
.hd_c00155{height:57.017812px;}
.h4_c00155{height:59.609531px;}
.hc_c00155{height:67.384687px;}
.h2_c00155{height:69.976406px;}
.h1_c00155{height:1150.500000px;}
.h0_c00155{height:1150.560000px;}
.w1_c00155{width:790.500000px;}
.w0_c00155{width:790.560000px;}
.x0_c00155{left:0.000000px;}
.xa_c00155{left:46.800000px;}
.x1a_c00155{left:99.360000px;}
.x14_c00155{left:120.240000px;}
.x1b_c00155{left:131.040000px;}
.x2_c00155{left:153.360000px;}
.x3_c00155{left:185.040000px;}
.xb_c00155{left:207.360000px;}
.x15_c00155{left:226.080000px;}
.xc_c00155{left:237.600000px;}
.x4_c00155{left:271.440000px;}
.xd_c00155{left:302.400000px;}
.x16_c00155{left:313.920000px;}
.xe_c00155{left:347.040000px;}
.x5_c00155{left:358.560000px;}
.x17_c00155{left:390.960000px;}
.xf_c00155{left:401.760000px;}
.x18_c00155{left:411.840000px;}
.x6_c00155{left:444.240000px;}
.x19_c00155{left:455.760000px;}
.x7_c00155{left:477.360000px;}
.x10_c00155{left:487.440000px;}
.x11_c00155{left:563.760000px;}
.x8_c00155{left:575.280000px;}
.x12_c00155{left:606.960000px;}
.x13_c00155{left:640.080000px;}
.x9_c00155{left:641.520000px;}
.x1_c00155{left:670.320000px;}
@media print{
.v0_c00155{vertical-align:0.000000pt;}
.ls0_c00155{letter-spacing:0.000000pt;}
.ws0_c00155{word-spacing:0.000000pt;}
.fs5_c00155{font-size:30.720000pt;}
.fs9_c00155{font-size:33.280000pt;}
.fs8_c00155{font-size:35.840000pt;}
.fs1_c00155{font-size:40.960000pt;}
.fs7_c00155{font-size:43.520000pt;}
.fs6_c00155{font-size:46.080000pt;}
.fs4_c00155{font-size:48.640000pt;}
.fs3_c00155{font-size:53.760000pt;}
.fsb_c00155{font-size:56.320000pt;}
.fs2_c00155{font-size:58.880000pt;}
.fsa_c00155{font-size:66.560000pt;}
.fs0_c00155{font-size:69.120000pt;}
.y0_c00155{bottom:0.000000pt;}
.y10_c00155{bottom:782.720000pt;}
.y11_c00155{bottom:784.640000pt;}
.y12_c00155{bottom:785.280000pt;}
.yd_c00155{bottom:820.480000pt;}
.yf_c00155{bottom:821.120000pt;}
.yc_c00155{bottom:822.400000pt;}
.ye_c00155{bottom:823.680000pt;}
.y7_c00155{bottom:857.600000pt;}
.ya_c00155{bottom:858.240000pt;}
.y9_c00155{bottom:860.800000pt;}
.y8_c00155{bottom:861.440000pt;}
.yb_c00155{bottom:862.080000pt;}
.y3_c00155{bottom:896.640000pt;}
.y4_c00155{bottom:897.280000pt;}
.y2_c00155{bottom:899.200000pt;}
.y5_c00155{bottom:899.840000pt;}
.y6_c00155{bottom:900.480000pt;}
.y1_c00155{bottom:968.320000pt;}
.h7_c00155{height:27.645000pt;}
.hb_c00155{height:29.948750pt;}
.ha_c00155{height:32.252500pt;}
.h3_c00155{height:36.860000pt;}
.h9_c00155{height:39.163750pt;}
.h8_c00155{height:41.467500pt;}
.h6_c00155{height:43.771250pt;}
.h5_c00155{height:48.378750pt;}
.hd_c00155{height:50.682500pt;}
.h4_c00155{height:52.986250pt;}
.hc_c00155{height:59.897500pt;}
.h2_c00155{height:62.201250pt;}
.h1_c00155{height:1022.666667pt;}
.h0_c00155{height:1022.720000pt;}
.w1_c00155{width:702.666667pt;}
.w0_c00155{width:702.720000pt;}
.x0_c00155{left:0.000000pt;}
.xa_c00155{left:41.600000pt;}
.x1a_c00155{left:88.320000pt;}
.x14_c00155{left:106.880000pt;}
.x1b_c00155{left:116.480000pt;}
.x2_c00155{left:136.320000pt;}
.x3_c00155{left:164.480000pt;}
.xb_c00155{left:184.320000pt;}
.x15_c00155{left:200.960000pt;}
.xc_c00155{left:211.200000pt;}
.x4_c00155{left:241.280000pt;}
.xd_c00155{left:268.800000pt;}
.x16_c00155{left:279.040000pt;}
.xe_c00155{left:308.480000pt;}
.x5_c00155{left:318.720000pt;}
.x17_c00155{left:347.520000pt;}
.xf_c00155{left:357.120000pt;}
.x18_c00155{left:366.080000pt;}
.x6_c00155{left:394.880000pt;}
.x19_c00155{left:405.120000pt;}
.x7_c00155{left:424.320000pt;}
.x10_c00155{left:433.280000pt;}
.x11_c00155{left:501.120000pt;}
.x8_c00155{left:511.360000pt;}
.x12_c00155{left:539.520000pt;}
.x13_c00155{left:568.960000pt;}
.x9_c00155{left:570.240000pt;}
.x1_c00155{left:595.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_249465672c4ca31da53ac147.woff2')format("woff");}.ff1_c00156{font-family:ff1_c00156;line-height:1.109863;font-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_c00156{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);}
.m29_c00156{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m45_c00156{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m37_c00156{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00156{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m20_c00156{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00156{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00156{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00156{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00156{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m11_c00156{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m5_c00156{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m36_c00156{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m25_c00156{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.ma_c00156{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m18_c00156{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m52_c00156{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.md_c00156{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m35_c00156{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);}
.m40_c00156{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m19_c00156{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m30_c00156{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m34_c00156{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00156{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_c00156{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.mc_c00156{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);}
.m23_c00156{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00156{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);}
.m44_c00156{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);}
.m3b_c00156{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);}
.m24_c00156{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m12_c00156{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m1_c00156{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);}
.m31_c00156{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m54_c00156{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);}
.m2b_c00156{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m42_c00156{transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00156{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);}
.me_c00156{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00156{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00156{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00156{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m9_c00156{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);}
.mf_c00156{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m38_c00156{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m33_c00156{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);}
.m4f_c00156{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m22_c00156{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);}
.m0_c00156{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m7_c00156{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00156{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);}
.m17_c00156{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m46_c00156{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m53_c00156{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);}
.m4b_c00156{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00156{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m49_c00156{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m43_c00156{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m27_c00156{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00156{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);}
.m2f_c00156{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00156{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m26_c00156{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);}
.mb_c00156{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00156{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00156{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m8_c00156{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);}
.m2_c00156{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00156{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m4_c00156{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m28_c00156{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m21_c00156{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);}
.m15_c00156{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);}
.m6_c00156{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m47_c00156{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m3_c00156{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m14_c00156{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m10_c00156{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m13_c00156{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);}
.m51_c00156{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m50_c00156{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m55_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);}
.m32_c00156{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m39_c00156{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m48_c00156{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00156{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);}
.v0_c00156{vertical-align:0.000000px;}
.ls0_c00156{letter-spacing:0.000000px;}
.sc__c00156{text-shadow:none;}
.sc0_c00156{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00156{-webkit-text-stroke:0px transparent;}
.sc0_c00156{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00156{word-spacing:0.000000px;}
.ws0_c00156{word-spacing:1.497840px;}
.fc0_c00156{color:transparent;}
.fs7_c00156{font-size:34.560000px;}
.fs2_c00156{font-size:37.440000px;}
.fs4_c00156{font-size:40.320000px;}
.fsc_c00156{font-size:43.200000px;}
.fsd_c00156{font-size:46.080000px;}
.fs0_c00156{font-size:48.960000px;}
.fs3_c00156{font-size:51.840000px;}
.fs5_c00156{font-size:54.720000px;}
.fs1_c00156{font-size:57.600000px;}
.fs8_c00156{font-size:60.480000px;}
.fs6_c00156{font-size:63.360000px;}
.fse_c00156{font-size:66.240000px;}
.fsa_c00156{font-size:69.120000px;}
.fs9_c00156{font-size:72.000000px;}
.fsb_c00156{font-size:74.880000px;}
.y0_c00156{bottom:0.000000px;}
.y71_c00156{bottom:82.800000px;}
.y70_c00156{bottom:83.520000px;}
.y74_c00156{bottom:84.240000px;}
.y73_c00156{bottom:84.960000px;}
.y72_c00156{bottom:85.680000px;}
.y6f_c00156{bottom:87.120000px;}
.y6e_c00156{bottom:90.000000px;}
.y6d_c00156{bottom:123.840000px;}
.y6b_c00156{bottom:126.720000px;}
.y6c_c00156{bottom:127.440000px;}
.y6a_c00156{bottom:128.160000px;}
.y67_c00156{bottom:128.880000px;}
.y69_c00156{bottom:129.600000px;}
.y68_c00156{bottom:131.040000px;}
.y63_c00156{bottom:169.200000px;}
.y66_c00156{bottom:169.920000px;}
.y65_c00156{bottom:170.640000px;}
.y64_c00156{bottom:171.360000px;}
.y60_c00156{bottom:172.080000px;}
.y62_c00156{bottom:173.520000px;}
.y61_c00156{bottom:174.240000px;}
.y5f_c00156{bottom:175.680000px;}
.y5e_c00156{bottom:209.520000px;}
.y5c_c00156{bottom:213.120000px;}
.y5b_c00156{bottom:213.840000px;}
.y5d_c00156{bottom:214.560000px;}
.y5a_c00156{bottom:216.720000px;}
.y58_c00156{bottom:252.720000px;}
.y56_c00156{bottom:253.440000px;}
.y54_c00156{bottom:255.600000px;}
.y59_c00156{bottom:256.320000px;}
.y57_c00156{bottom:257.040000px;}
.y55_c00156{bottom:257.760000px;}
.y53_c00156{bottom:258.480000px;}
.y52_c00156{bottom:310.320000px;}
.y51_c00156{bottom:312.480000px;}
.y50_c00156{bottom:313.200000px;}
.y4e_c00156{bottom:350.640000px;}
.y4f_c00156{bottom:352.800000px;}
.y4d_c00156{bottom:353.520000px;}
.y4c_c00156{bottom:354.960000px;}
.y4b_c00156{bottom:393.120000px;}
.y48_c00156{bottom:393.840000px;}
.y47_c00156{bottom:395.280000px;}
.y4a_c00156{bottom:396.000000px;}
.y49_c00156{bottom:396.720000px;}
.y46_c00156{bottom:397.440000px;}
.y45_c00156{bottom:398.160000px;}
.y42_c00156{bottom:436.320000px;}
.y43_c00156{bottom:437.040000px;}
.y44_c00156{bottom:438.480000px;}
.y41_c00156{bottom:439.200000px;}
.y40_c00156{bottom:439.920000px;}
.y3f_c00156{bottom:440.640000px;}
.y3e_c00156{bottom:441.360000px;}
.y3d_c00156{bottom:479.520000px;}
.y3b_c00156{bottom:480.240000px;}
.y3c_c00156{bottom:482.400000px;}
.y3a_c00156{bottom:483.120000px;}
.y37_c00156{bottom:522.720000px;}
.y38_c00156{bottom:524.160000px;}
.y39_c00156{bottom:524.880000px;}
.y35_c00156{bottom:525.600000px;}
.y36_c00156{bottom:526.320000px;}
.y32_c00156{bottom:565.200000px;}
.y34_c00156{bottom:565.920000px;}
.y33_c00156{bottom:568.080000px;}
.y31_c00156{bottom:568.800000px;}
.y2e_c00156{bottom:607.680000px;}
.y2d_c00156{bottom:610.560000px;}
.y2f_c00156{bottom:611.280000px;}
.y30_c00156{bottom:612.000000px;}
.y2b_c00156{bottom:651.600000px;}
.y2a_c00156{bottom:653.760000px;}
.y2c_c00156{bottom:654.480000px;}
.y26_c00156{bottom:693.360000px;}
.y28_c00156{bottom:694.080000px;}
.y29_c00156{bottom:694.800000px;}
.y25_c00156{bottom:696.960000px;}
.y27_c00156{bottom:697.680000px;}
.y23_c00156{bottom:747.360000px;}
.y22_c00156{bottom:749.520000px;}
.y24_c00156{bottom:750.240000px;}
.y20_c00156{bottom:790.560000px;}
.y1d_c00156{bottom:792.000000px;}
.y1e_c00156{bottom:792.720000px;}
.y1f_c00156{bottom:793.440000px;}
.y21_c00156{bottom:794.160000px;}
.y18_c00156{bottom:833.040000px;}
.y1b_c00156{bottom:833.760000px;}
.y17_c00156{bottom:835.200000px;}
.y19_c00156{bottom:835.920000px;}
.y1a_c00156{bottom:836.640000px;}
.y1c_c00156{bottom:837.360000px;}
.y10_c00156{bottom:874.080000px;}
.y13_c00156{bottom:876.240000px;}
.y11_c00156{bottom:877.680000px;}
.y12_c00156{bottom:878.400000px;}
.y14_c00156{bottom:879.120000px;}
.y15_c00156{bottom:879.840000px;}
.y16_c00156{bottom:880.560000px;}
.yd_c00156{bottom:919.440000px;}
.y9_c00156{bottom:920.160000px;}
.ya_c00156{bottom:920.880000px;}
.yb_c00156{bottom:921.600000px;}
.yc_c00156{bottom:922.320000px;}
.yf_c00156{bottom:923.040000px;}
.ye_c00156{bottom:923.760000px;}
.y5_c00156{bottom:962.640000px;}
.y6_c00156{bottom:963.360000px;}
.y7_c00156{bottom:964.800000px;}
.y8_c00156{bottom:965.520000px;}
.y1_c00156{bottom:1017.360000px;}
.y2_c00156{bottom:1018.080000px;}
.y3_c00156{bottom:1018.800000px;}
.y4_c00156{bottom:1019.520000px;}
.h9_c00156{height:31.100625px;}
.h4_c00156{height:33.692344px;}
.h6_c00156{height:36.284062px;}
.he_c00156{height:38.875781px;}
.hf_c00156{height:41.467500px;}
.h2_c00156{height:44.059219px;}
.h5_c00156{height:46.650937px;}
.h7_c00156{height:49.242656px;}
.h3_c00156{height:51.834375px;}
.ha_c00156{height:54.426094px;}
.h8_c00156{height:57.017812px;}
.h10_c00156{height:59.609531px;}
.hc_c00156{height:62.201250px;}
.hb_c00156{height:64.792969px;}
.hd_c00156{height:67.384687px;}
.h0_c00156{height:1152.720000px;}
.h1_c00156{height:1152.750000px;}
.w0_c00156{width:792.720000px;}
.w1_c00156{width:792.750000px;}
.x0_c00156{left:0.000000px;}
.x36_c00156{left:69.120000px;}
.x10_c00156{left:70.560000px;}
.x4e_c00156{left:72.720000px;}
.x3b_c00156{left:101.520000px;}
.x25_c00156{left:102.960000px;}
.x18_c00156{left:113.040000px;}
.x51_c00156{left:114.480000px;}
.x1e_c00156{left:123.120000px;}
.x37_c00156{left:133.200000px;}
.x3c_c00156{left:143.280000px;}
.x1f_c00156{left:144.720000px;}
.x43_c00156{left:154.800000px;}
.x48_c00156{left:164.160000px;}
.x11_c00156{left:166.320000px;}
.x4c_c00156{left:175.680000px;}
.x7_c00156{left:177.120000px;}
.x26_c00156{left:187.200000px;}
.x19_c00156{left:197.280000px;}
.x2c_c00156{left:198.720000px;}
.x2f_c00156{left:208.080000px;}
.x1_c00156{left:209.520000px;}
.x8_c00156{left:218.160000px;}
.x27_c00156{left:219.600000px;}
.x47_c00156{left:221.760000px;}
.x1a_c00156{left:241.200000px;}
.x2d_c00156{left:250.560000px;}
.x28_c00156{left:252.000000px;}
.x9_c00156{left:262.080000px;}
.x33_c00156{left:263.520000px;}
.x2_c00156{left:273.600000px;}
.x20_c00156{left:283.680000px;}
.x4f_c00156{left:293.040000px;}
.x2e_c00156{left:295.200000px;}
.x40_c00156{left:304.560000px;}
.x21_c00156{left:316.080000px;}
.x1b_c00156{left:317.520000px;}
.x4a_c00156{left:326.880000px;}
.x12_c00156{left:328.320000px;}
.x45_c00156{left:336.960000px;}
.x30_c00156{left:348.480000px;}
.x41_c00156{left:349.920000px;}
.x34_c00156{left:359.280000px;}
.xa_c00156{left:360.720000px;}
.x38_c00156{left:369.360000px;}
.x50_c00156{left:380.880000px;}
.x3_c00156{left:382.320000px;}
.x31_c00156{left:391.680000px;}
.xb_c00156{left:393.120000px;}
.x39_c00156{left:401.760000px;}
.x22_c00156{left:403.200000px;}
.x52_c00156{left:412.560000px;}
.x4_c00156{left:414.000000px;}
.x29_c00156{left:425.520000px;}
.x5_c00156{left:447.120000px;}
.x1c_c00156{left:457.920000px;}
.x13_c00156{left:468.000000px;}
.xc_c00156{left:479.520000px;}
.x46_c00156{left:499.680000px;}
.x6_c00156{left:501.120000px;}
.xd_c00156{left:511.920000px;}
.x3d_c00156{left:522.720000px;}
.x14_c00156{left:533.520000px;}
.x35_c00156{left:544.320000px;}
.xe_c00156{left:555.840000px;}
.x23_c00156{left:565.920000px;}
.x15_c00156{left:576.720000px;}
.x2a_c00156{left:587.520000px;}
.xf_c00156{left:599.040000px;}
.x44_c00156{left:609.840000px;}
.x3a_c00156{left:620.640000px;}
.x3e_c00156{left:622.080000px;}
.x42_c00156{left:631.440000px;}
.x4d_c00156{left:632.880000px;}
.x16_c00156{left:642.240000px;}
.x3f_c00156{left:652.320000px;}
.x1d_c00156{left:654.480000px;}
.x32_c00156{left:663.840000px;}
.x24_c00156{left:665.280000px;}
.x4b_c00156{left:674.640000px;}
.x17_c00156{left:686.880000px;}
.x49_c00156{left:696.960000px;}
.x2b_c00156{left:707.760000px;}
@media print{
.v0_c00156{vertical-align:0.000000pt;}
.ls0_c00156{letter-spacing:0.000000pt;}
.ws1_c00156{word-spacing:0.000000pt;}
.ws0_c00156{word-spacing:1.331413pt;}
.fs7_c00156{font-size:30.720000pt;}
.fs2_c00156{font-size:33.280000pt;}
.fs4_c00156{font-size:35.840000pt;}
.fsc_c00156{font-size:38.400000pt;}
.fsd_c00156{font-size:40.960000pt;}
.fs0_c00156{font-size:43.520000pt;}
.fs3_c00156{font-size:46.080000pt;}
.fs5_c00156{font-size:48.640000pt;}
.fs1_c00156{font-size:51.200000pt;}
.fs8_c00156{font-size:53.760000pt;}
.fs6_c00156{font-size:56.320000pt;}
.fse_c00156{font-size:58.880000pt;}
.fsa_c00156{font-size:61.440000pt;}
.fs9_c00156{font-size:64.000000pt;}
.fsb_c00156{font-size:66.560000pt;}
.y0_c00156{bottom:0.000000pt;}
.y71_c00156{bottom:73.600000pt;}
.y70_c00156{bottom:74.240000pt;}
.y74_c00156{bottom:74.880000pt;}
.y73_c00156{bottom:75.520000pt;}
.y72_c00156{bottom:76.160000pt;}
.y6f_c00156{bottom:77.440000pt;}
.y6e_c00156{bottom:80.000000pt;}
.y6d_c00156{bottom:110.080000pt;}
.y6b_c00156{bottom:112.640000pt;}
.y6c_c00156{bottom:113.280000pt;}
.y6a_c00156{bottom:113.920000pt;}
.y67_c00156{bottom:114.560000pt;}
.y69_c00156{bottom:115.200000pt;}
.y68_c00156{bottom:116.480000pt;}
.y63_c00156{bottom:150.400000pt;}
.y66_c00156{bottom:151.040000pt;}
.y65_c00156{bottom:151.680000pt;}
.y64_c00156{bottom:152.320000pt;}
.y60_c00156{bottom:152.960000pt;}
.y62_c00156{bottom:154.240000pt;}
.y61_c00156{bottom:154.880000pt;}
.y5f_c00156{bottom:156.160000pt;}
.y5e_c00156{bottom:186.240000pt;}
.y5c_c00156{bottom:189.440000pt;}
.y5b_c00156{bottom:190.080000pt;}
.y5d_c00156{bottom:190.720000pt;}
.y5a_c00156{bottom:192.640000pt;}
.y58_c00156{bottom:224.640000pt;}
.y56_c00156{bottom:225.280000pt;}
.y54_c00156{bottom:227.200000pt;}
.y59_c00156{bottom:227.840000pt;}
.y57_c00156{bottom:228.480000pt;}
.y55_c00156{bottom:229.120000pt;}
.y53_c00156{bottom:229.760000pt;}
.y52_c00156{bottom:275.840000pt;}
.y51_c00156{bottom:277.760000pt;}
.y50_c00156{bottom:278.400000pt;}
.y4e_c00156{bottom:311.680000pt;}
.y4f_c00156{bottom:313.600000pt;}
.y4d_c00156{bottom:314.240000pt;}
.y4c_c00156{bottom:315.520000pt;}
.y4b_c00156{bottom:349.440000pt;}
.y48_c00156{bottom:350.080000pt;}
.y47_c00156{bottom:351.360000pt;}
.y4a_c00156{bottom:352.000000pt;}
.y49_c00156{bottom:352.640000pt;}
.y46_c00156{bottom:353.280000pt;}
.y45_c00156{bottom:353.920000pt;}
.y42_c00156{bottom:387.840000pt;}
.y43_c00156{bottom:388.480000pt;}
.y44_c00156{bottom:389.760000pt;}
.y41_c00156{bottom:390.400000pt;}
.y40_c00156{bottom:391.040000pt;}
.y3f_c00156{bottom:391.680000pt;}
.y3e_c00156{bottom:392.320000pt;}
.y3d_c00156{bottom:426.240000pt;}
.y3b_c00156{bottom:426.880000pt;}
.y3c_c00156{bottom:428.800000pt;}
.y3a_c00156{bottom:429.440000pt;}
.y37_c00156{bottom:464.640000pt;}
.y38_c00156{bottom:465.920000pt;}
.y39_c00156{bottom:466.560000pt;}
.y35_c00156{bottom:467.200000pt;}
.y36_c00156{bottom:467.840000pt;}
.y32_c00156{bottom:502.400000pt;}
.y34_c00156{bottom:503.040000pt;}
.y33_c00156{bottom:504.960000pt;}
.y31_c00156{bottom:505.600000pt;}
.y2e_c00156{bottom:540.160000pt;}
.y2d_c00156{bottom:542.720000pt;}
.y2f_c00156{bottom:543.360000pt;}
.y30_c00156{bottom:544.000000pt;}
.y2b_c00156{bottom:579.200000pt;}
.y2a_c00156{bottom:581.120000pt;}
.y2c_c00156{bottom:581.760000pt;}
.y26_c00156{bottom:616.320000pt;}
.y28_c00156{bottom:616.960000pt;}
.y29_c00156{bottom:617.600000pt;}
.y25_c00156{bottom:619.520000pt;}
.y27_c00156{bottom:620.160000pt;}
.y23_c00156{bottom:664.320000pt;}
.y22_c00156{bottom:666.240000pt;}
.y24_c00156{bottom:666.880000pt;}
.y20_c00156{bottom:702.720000pt;}
.y1d_c00156{bottom:704.000000pt;}
.y1e_c00156{bottom:704.640000pt;}
.y1f_c00156{bottom:705.280000pt;}
.y21_c00156{bottom:705.920000pt;}
.y18_c00156{bottom:740.480000pt;}
.y1b_c00156{bottom:741.120000pt;}
.y17_c00156{bottom:742.400000pt;}
.y19_c00156{bottom:743.040000pt;}
.y1a_c00156{bottom:743.680000pt;}
.y1c_c00156{bottom:744.320000pt;}
.y10_c00156{bottom:776.960000pt;}
.y13_c00156{bottom:778.880000pt;}
.y11_c00156{bottom:780.160000pt;}
.y12_c00156{bottom:780.800000pt;}
.y14_c00156{bottom:781.440000pt;}
.y15_c00156{bottom:782.080000pt;}
.y16_c00156{bottom:782.720000pt;}
.yd_c00156{bottom:817.280000pt;}
.y9_c00156{bottom:817.920000pt;}
.ya_c00156{bottom:818.560000pt;}
.yb_c00156{bottom:819.200000pt;}
.yc_c00156{bottom:819.840000pt;}
.yf_c00156{bottom:820.480000pt;}
.ye_c00156{bottom:821.120000pt;}
.y5_c00156{bottom:855.680000pt;}
.y6_c00156{bottom:856.320000pt;}
.y7_c00156{bottom:857.600000pt;}
.y8_c00156{bottom:858.240000pt;}
.y1_c00156{bottom:904.320000pt;}
.y2_c00156{bottom:904.960000pt;}
.y3_c00156{bottom:905.600000pt;}
.y4_c00156{bottom:906.240000pt;}
.h9_c00156{height:27.645000pt;}
.h4_c00156{height:29.948750pt;}
.h6_c00156{height:32.252500pt;}
.he_c00156{height:34.556250pt;}
.hf_c00156{height:36.860000pt;}
.h2_c00156{height:39.163750pt;}
.h5_c00156{height:41.467500pt;}
.h7_c00156{height:43.771250pt;}
.h3_c00156{height:46.075000pt;}
.ha_c00156{height:48.378750pt;}
.h8_c00156{height:50.682500pt;}
.h10_c00156{height:52.986250pt;}
.hc_c00156{height:55.290000pt;}
.hb_c00156{height:57.593750pt;}
.hd_c00156{height:59.897500pt;}
.h0_c00156{height:1024.640000pt;}
.h1_c00156{height:1024.666667pt;}
.w0_c00156{width:704.640000pt;}
.w1_c00156{width:704.666667pt;}
.x0_c00156{left:0.000000pt;}
.x36_c00156{left:61.440000pt;}
.x10_c00156{left:62.720000pt;}
.x4e_c00156{left:64.640000pt;}
.x3b_c00156{left:90.240000pt;}
.x25_c00156{left:91.520000pt;}
.x18_c00156{left:100.480000pt;}
.x51_c00156{left:101.760000pt;}
.x1e_c00156{left:109.440000pt;}
.x37_c00156{left:118.400000pt;}
.x3c_c00156{left:127.360000pt;}
.x1f_c00156{left:128.640000pt;}
.x43_c00156{left:137.600000pt;}
.x48_c00156{left:145.920000pt;}
.x11_c00156{left:147.840000pt;}
.x4c_c00156{left:156.160000pt;}
.x7_c00156{left:157.440000pt;}
.x26_c00156{left:166.400000pt;}
.x19_c00156{left:175.360000pt;}
.x2c_c00156{left:176.640000pt;}
.x2f_c00156{left:184.960000pt;}
.x1_c00156{left:186.240000pt;}
.x8_c00156{left:193.920000pt;}
.x27_c00156{left:195.200000pt;}
.x47_c00156{left:197.120000pt;}
.x1a_c00156{left:214.400000pt;}
.x2d_c00156{left:222.720000pt;}
.x28_c00156{left:224.000000pt;}
.x9_c00156{left:232.960000pt;}
.x33_c00156{left:234.240000pt;}
.x2_c00156{left:243.200000pt;}
.x20_c00156{left:252.160000pt;}
.x4f_c00156{left:260.480000pt;}
.x2e_c00156{left:262.400000pt;}
.x40_c00156{left:270.720000pt;}
.x21_c00156{left:280.960000pt;}
.x1b_c00156{left:282.240000pt;}
.x4a_c00156{left:290.560000pt;}
.x12_c00156{left:291.840000pt;}
.x45_c00156{left:299.520000pt;}
.x30_c00156{left:309.760000pt;}
.x41_c00156{left:311.040000pt;}
.x34_c00156{left:319.360000pt;}
.xa_c00156{left:320.640000pt;}
.x38_c00156{left:328.320000pt;}
.x50_c00156{left:338.560000pt;}
.x3_c00156{left:339.840000pt;}
.x31_c00156{left:348.160000pt;}
.xb_c00156{left:349.440000pt;}
.x39_c00156{left:357.120000pt;}
.x22_c00156{left:358.400000pt;}
.x52_c00156{left:366.720000pt;}
.x4_c00156{left:368.000000pt;}
.x29_c00156{left:378.240000pt;}
.x5_c00156{left:397.440000pt;}
.x1c_c00156{left:407.040000pt;}
.x13_c00156{left:416.000000pt;}
.xc_c00156{left:426.240000pt;}
.x46_c00156{left:444.160000pt;}
.x6_c00156{left:445.440000pt;}
.xd_c00156{left:455.040000pt;}
.x3d_c00156{left:464.640000pt;}
.x14_c00156{left:474.240000pt;}
.x35_c00156{left:483.840000pt;}
.xe_c00156{left:494.080000pt;}
.x23_c00156{left:503.040000pt;}
.x15_c00156{left:512.640000pt;}
.x2a_c00156{left:522.240000pt;}
.xf_c00156{left:532.480000pt;}
.x44_c00156{left:542.080000pt;}
.x3a_c00156{left:551.680000pt;}
.x3e_c00156{left:552.960000pt;}
.x42_c00156{left:561.280000pt;}
.x4d_c00156{left:562.560000pt;}
.x16_c00156{left:570.880000pt;}
.x3f_c00156{left:579.840000pt;}
.x1d_c00156{left:581.760000pt;}
.x32_c00156{left:590.080000pt;}
.x24_c00156{left:591.360000pt;}
.x4b_c00156{left:599.680000pt;}
.x17_c00156{left:610.560000pt;}
.x49_c00156{left:619.520000pt;}
.x2b_c00156{left:629.120000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_bf26afb1090f3fd63bd40108.woff2')format("woff");}.ff1_c00157{font-family:ff1_c00157;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5a_c00157{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m50_c00157{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m56_c00157{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m52_c00157{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m59_c00157{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m31_c00157{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m11_c00157{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00157{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m35_c00157{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m54_c00157{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m33_c00157{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00157{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m26_c00157{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00157{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m28_c00157{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m47_c00157{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00157{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1_c00157{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);}
.m1d_c00157{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00157{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m0_c00157{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m36_c00157{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.mf_c00157{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00157{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m25_c00157{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);}
.m39_c00157{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m14_c00157{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);}
.m4a_c00157{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);}
.m3d_c00157{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_c00157{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m34_c00157{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);}
.m27_c00157{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m13_c00157{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_c00157{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m15_c00157{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);}
.m17_c00157{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m9_c00157{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00157{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);}
.m1e_c00157{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m19_c00157{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m3_c00157{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m5_c00157{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);}
.m3e_c00157{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);}
.m2d_c00157{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m21_c00157{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m8_c00157{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00157{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m51_c00157{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);}
.m58_c00157{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00157{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m48_c00157{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);}
.m29_c00157{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m49_c00157{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);}
.me_c00157{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00157{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00157{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m6_c00157{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);}
.m32_c00157{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m57_c00157{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m20_c00157{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m55_c00157{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);}
.m22_c00157{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.mb_c00157{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m37_c00157{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m18_c00157{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);}
.m1f_c00157{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);}
.m2_c00157{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00157{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m42_c00157{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);}
.m40_c00157{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00157{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m45_c00157{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00157{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);}
.m4d_c00157{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00157{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m53_c00157{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00157{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);}
.m5f_c00157{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m44_c00157{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m4_c00157{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);}
.ma_c00157{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m16_c00157{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00157{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m23_c00157{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.md_c00157{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.mc_c00157{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00157{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);}
.m12_c00157{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m38_c00157{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m30_c00157{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);}
.m41_c00157{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m24_c00157{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m7_c00157{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00157{transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);}
.m43_c00157{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.m46_c00157{transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);}
.v0_c00157{vertical-align:0.000000px;}
.ls0_c00157{letter-spacing:0.000000px;}
.sc__c00157{text-shadow:none;}
.sc0_c00157{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00157{-webkit-text-stroke:0px transparent;}
.sc0_c00157{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00157{word-spacing:0.000000px;}
.fc0_c00157{color:transparent;}
.fs5_c00157{font-size:31.680000px;}
.fs3_c00157{font-size:34.560000px;}
.fsd_c00157{font-size:37.440000px;}
.fse_c00157{font-size:40.320000px;}
.fs6_c00157{font-size:43.200000px;}
.fs7_c00157{font-size:46.080000px;}
.fs1_c00157{font-size:48.960000px;}
.fs2_c00157{font-size:51.840000px;}
.fsa_c00157{font-size:54.720000px;}
.fs8_c00157{font-size:57.600000px;}
.fs4_c00157{font-size:60.480000px;}
.fs9_c00157{font-size:63.360000px;}
.fsc_c00157{font-size:66.240000px;}
.fsb_c00157{font-size:69.120000px;}
.fs0_c00157{font-size:74.880000px;}
.y0_c00157{bottom:0.000000px;}
.y8b_c00157{bottom:23.760000px;}
.y8d_c00157{bottom:24.480000px;}
.y8a_c00157{bottom:25.200000px;}
.y8c_c00157{bottom:25.920000px;}
.y89_c00157{bottom:26.640000px;}
.y87_c00157{bottom:29.520000px;}
.y88_c00157{bottom:31.680000px;}
.y86_c00157{bottom:63.360000px;}
.y84_c00157{bottom:65.520000px;}
.y83_c00157{bottom:66.960000px;}
.y85_c00157{bottom:67.680000px;}
.y82_c00157{bottom:69.120000px;}
.y81_c00157{bottom:69.840000px;}
.y80_c00157{bottom:73.440000px;}
.y7d_c00157{bottom:107.280000px;}
.y7f_c00157{bottom:108.000000px;}
.y7e_c00157{bottom:108.720000px;}
.y7c_c00157{bottom:110.160000px;}
.y7b_c00157{bottom:110.880000px;}
.y7a_c00157{bottom:111.600000px;}
.y79_c00157{bottom:112.320000px;}
.y78_c00157{bottom:113.040000px;}
.y77_c00157{bottom:115.920000px;}
.y75_c00157{bottom:149.760000px;}
.y76_c00157{bottom:150.480000px;}
.y74_c00157{bottom:151.200000px;}
.y72_c00157{bottom:154.800000px;}
.y73_c00157{bottom:155.520000px;}
.y71_c00157{bottom:157.680000px;}
.y6f_c00157{bottom:192.960000px;}
.y70_c00157{bottom:194.400000px;}
.y6d_c00157{bottom:195.120000px;}
.y6e_c00157{bottom:196.560000px;}
.y6c_c00157{bottom:198.000000px;}
.y6a_c00157{bottom:246.960000px;}
.y6b_c00157{bottom:247.680000px;}
.y69_c00157{bottom:248.400000px;}
.y68_c00157{bottom:249.120000px;}
.y67_c00157{bottom:250.560000px;}
.y66_c00157{bottom:253.440000px;}
.y65_c00157{bottom:289.440000px;}
.y63_c00157{bottom:290.880000px;}
.y62_c00157{bottom:291.600000px;}
.y61_c00157{bottom:292.320000px;}
.y64_c00157{bottom:293.040000px;}
.y60_c00157{bottom:293.760000px;}
.y5d_c00157{bottom:332.640000px;}
.y5b_c00157{bottom:333.360000px;}
.y5e_c00157{bottom:334.800000px;}
.y5f_c00157{bottom:335.520000px;}
.y5c_c00157{bottom:336.240000px;}
.y5a_c00157{bottom:336.960000px;}
.y59_c00157{bottom:337.680000px;}
.y55_c00157{bottom:375.120000px;}
.y56_c00157{bottom:375.840000px;}
.y54_c00157{bottom:376.560000px;}
.y58_c00157{bottom:377.280000px;}
.y57_c00157{bottom:378.720000px;}
.y53_c00157{bottom:380.880000px;}
.y51_c00157{bottom:418.320000px;}
.y4f_c00157{bottom:419.040000px;}
.y4e_c00157{bottom:420.480000px;}
.y52_c00157{bottom:421.200000px;}
.y50_c00157{bottom:421.920000px;}
.y4d_c00157{bottom:460.080000px;}
.y4b_c00157{bottom:460.800000px;}
.y4c_c00157{bottom:461.520000px;}
.y4a_c00157{bottom:462.240000px;}
.y48_c00157{bottom:463.680000px;}
.y49_c00157{bottom:465.120000px;}
.y47_c00157{bottom:465.840000px;}
.y44_c00157{bottom:504.000000px;}
.y43_c00157{bottom:504.720000px;}
.y46_c00157{bottom:506.160000px;}
.y45_c00157{bottom:506.880000px;}
.y42_c00157{bottom:507.600000px;}
.y41_c00157{bottom:508.320000px;}
.y3f_c00157{bottom:546.480000px;}
.y40_c00157{bottom:550.080000px;}
.y3e_c00157{bottom:550.800000px;}
.y3d_c00157{bottom:602.640000px;}
.y37_c00157{bottom:643.680000px;}
.y38_c00157{bottom:644.400000px;}
.y3b_c00157{bottom:645.120000px;}
.y3a_c00157{bottom:645.840000px;}
.y39_c00157{bottom:646.560000px;}
.y3c_c00157{bottom:647.280000px;}
.y33_c00157{bottom:686.160000px;}
.y36_c00157{bottom:687.600000px;}
.y32_c00157{bottom:689.040000px;}
.y34_c00157{bottom:689.760000px;}
.y35_c00157{bottom:690.480000px;}
.y30_c00157{bottom:729.360000px;}
.y2d_c00157{bottom:730.800000px;}
.y2e_c00157{bottom:731.520000px;}
.y2f_c00157{bottom:732.240000px;}
.y31_c00157{bottom:732.960000px;}
.y29_c00157{bottom:771.840000px;}
.y2c_c00157{bottom:773.280000px;}
.y28_c00157{bottom:774.000000px;}
.y2a_c00157{bottom:774.720000px;}
.y2b_c00157{bottom:775.440000px;}
.y23_c00157{bottom:813.600000px;}
.y25_c00157{bottom:815.040000px;}
.y22_c00157{bottom:815.760000px;}
.y24_c00157{bottom:816.480000px;}
.y26_c00157{bottom:817.920000px;}
.y27_c00157{bottom:818.640000px;}
.y1e_c00157{bottom:857.520000px;}
.y1c_c00157{bottom:858.240000px;}
.y1d_c00157{bottom:859.680000px;}
.y1f_c00157{bottom:860.400000px;}
.y20_c00157{bottom:861.120000px;}
.y21_c00157{bottom:861.840000px;}
.y18_c00157{bottom:899.280000px;}
.y1a_c00157{bottom:900.720000px;}
.y17_c00157{bottom:901.440000px;}
.y19_c00157{bottom:902.880000px;}
.y1b_c00157{bottom:903.600000px;}
.y11_c00157{bottom:942.480000px;}
.y12_c00157{bottom:943.200000px;}
.y10_c00157{bottom:943.920000px;}
.y14_c00157{bottom:944.640000px;}
.y13_c00157{bottom:946.080000px;}
.y15_c00157{bottom:946.800000px;}
.y16_c00157{bottom:947.520000px;}
.ye_c00157{bottom:986.400000px;}
.ya_c00157{bottom:987.120000px;}
.yb_c00157{bottom:987.840000px;}
.yd_c00157{bottom:988.560000px;}
.yc_c00157{bottom:989.280000px;}
.yf_c00157{bottom:990.000000px;}
.y2_c00157{bottom:1028.880000px;}
.y5_c00157{bottom:1029.600000px;}
.y3_c00157{bottom:1030.320000px;}
.y4_c00157{bottom:1031.040000px;}
.y8_c00157{bottom:1031.760000px;}
.y6_c00157{bottom:1032.480000px;}
.y7_c00157{bottom:1033.200000px;}
.y9_c00157{bottom:1033.920000px;}
.y1_c00157{bottom:1121.760000px;}
.h7_c00157{height:28.508906px;}
.h5_c00157{height:31.100625px;}
.hf_c00157{height:33.692344px;}
.h10_c00157{height:36.284062px;}
.h8_c00157{height:38.875781px;}
.h9_c00157{height:41.467500px;}
.h3_c00157{height:44.059219px;}
.h4_c00157{height:46.650937px;}
.hc_c00157{height:49.242656px;}
.ha_c00157{height:51.834375px;}
.h6_c00157{height:54.426094px;}
.hb_c00157{height:57.017812px;}
.he_c00157{height:59.609531px;}
.hd_c00157{height:62.201250px;}
.h2_c00157{height:67.384687px;}
.h1_c00157{height:1166.250000px;}
.h0_c00157{height:1166.400000px;}
.w0_c00157{width:794.880000px;}
.w1_c00157{width:795.000000px;}
.x0_c00157{left:0.000000px;}
.x2b_c00157{left:62.640000px;}
.x2_c00157{left:64.080000px;}
.x50_c00157{left:66.240000px;}
.x3_c00157{left:95.040000px;}
.x47_c00157{left:97.200000px;}
.x3d_c00157{left:104.400000px;}
.xd_c00157{left:105.840000px;}
.x44_c00157{left:115.200000px;}
.x1d_c00157{left:116.640000px;}
.x29_c00157{left:126.720000px;}
.x4_c00157{left:137.520000px;}
.x1e_c00157{left:148.320000px;}
.x51_c00157{left:150.480000px;}
.xe_c00157{left:159.120000px;}
.x2c_c00157{left:169.200000px;}
.x48_c00157{left:170.640000px;}
.x32_c00157{left:180.000000px;}
.x2a_c00157{left:190.080000px;}
.x23_c00157{left:191.520000px;}
.x2d_c00157{left:201.600000px;}
.xf_c00157{left:211.680000px;}
.x4a_c00157{left:213.120000px;}
.x3a_c00157{left:221.040000px;}
.x5_c00157{left:223.200000px;}
.x16_c00157{left:234.000000px;}
.x3e_c00157{left:244.080000px;}
.x49_c00157{left:245.520000px;}
.x4e_c00157{left:254.880000px;}
.x6_c00157{left:256.320000px;}
.x1f_c00157{left:265.680000px;}
.x26_c00157{left:276.480000px;}
.x4d_c00157{left:287.280000px;}
.x36_c00157{left:288.720000px;}
.x10_c00157{left:299.520000px;}
.x45_c00157{left:309.600000px;}
.x2e_c00157{left:319.680000px;}
.x17_c00157{left:321.120000px;}
.x4b_c00157{left:329.760000px;}
.x11_c00157{left:331.200000px;}
.x2f_c00157{left:342.000000px;}
.x46_c00157{left:364.320000px;}
.x7_c00157{left:374.400000px;}
.x37_c00157{left:385.200000px;}
.x53_c00157{left:396.720000px;}
.x18_c00157{left:406.800000px;}
.x20_c00157{left:416.880000px;}
.x40_c00157{left:428.400000px;}
.x8_c00157{left:439.200000px;}
.x52_c00157{left:440.640000px;}
.x27_c00157{left:450.720000px;}
.x3f_c00157{left:460.080000px;}
.x30_c00157{left:461.520000px;}
.x9_c00157{left:472.320000px;}
.x38_c00157{left:481.680000px;}
.x12_c00157{left:483.120000px;}
.x4c_c00157{left:492.480000px;}
.x24_c00157{left:493.920000px;}
.x41_c00157{left:514.800000px;}
.x13_c00157{left:516.240000px;}
.x3b_c00157{left:524.880000px;}
.x19_c00157{left:527.040000px;}
.x28_c00157{left:537.840000px;}
.x42_c00157{left:547.920000px;}
.x21_c00157{left:560.160000px;}
.x14_c00157{left:570.240000px;}
.x43_c00157{left:581.040000px;}
.x1a_c00157{left:591.840000px;}
.xa_c00157{left:601.920000px;}
.x15_c00157{left:604.080000px;}
.x33_c00157{left:613.440000px;}
.x1b_c00157{left:624.240000px;}
.x39_c00157{left:625.680000px;}
.x34_c00157{left:635.040000px;}
.xb_c00157{left:646.560000px;}
.x31_c00157{left:656.640000px;}
.x1c_c00157{left:658.800000px;}
.x25_c00157{left:667.440000px;}
.x22_c00157{left:668.880000px;}
.x1_c00157{left:674.640000px;}
.x35_c00157{left:679.680000px;}
.x3c_c00157{left:689.040000px;}
.x4f_c00157{left:690.480000px;}
.xc_c00157{left:700.560000px;}
.x54_c00157{left:734.400000px;}
@media print{
.v0_c00157{vertical-align:0.000000pt;}
.ls0_c00157{letter-spacing:0.000000pt;}
.ws0_c00157{word-spacing:0.000000pt;}
.fs5_c00157{font-size:28.160000pt;}
.fs3_c00157{font-size:30.720000pt;}
.fsd_c00157{font-size:33.280000pt;}
.fse_c00157{font-size:35.840000pt;}
.fs6_c00157{font-size:38.400000pt;}
.fs7_c00157{font-size:40.960000pt;}
.fs1_c00157{font-size:43.520000pt;}
.fs2_c00157{font-size:46.080000pt;}
.fsa_c00157{font-size:48.640000pt;}
.fs8_c00157{font-size:51.200000pt;}
.fs4_c00157{font-size:53.760000pt;}
.fs9_c00157{font-size:56.320000pt;}
.fsc_c00157{font-size:58.880000pt;}
.fsb_c00157{font-size:61.440000pt;}
.fs0_c00157{font-size:66.560000pt;}
.y0_c00157{bottom:0.000000pt;}
.y8b_c00157{bottom:21.120000pt;}
.y8d_c00157{bottom:21.760000pt;}
.y8a_c00157{bottom:22.400000pt;}
.y8c_c00157{bottom:23.040000pt;}
.y89_c00157{bottom:23.680000pt;}
.y87_c00157{bottom:26.240000pt;}
.y88_c00157{bottom:28.160000pt;}
.y86_c00157{bottom:56.320000pt;}
.y84_c00157{bottom:58.240000pt;}
.y83_c00157{bottom:59.520000pt;}
.y85_c00157{bottom:60.160000pt;}
.y82_c00157{bottom:61.440000pt;}
.y81_c00157{bottom:62.080000pt;}
.y80_c00157{bottom:65.280000pt;}
.y7d_c00157{bottom:95.360000pt;}
.y7f_c00157{bottom:96.000000pt;}
.y7e_c00157{bottom:96.640000pt;}
.y7c_c00157{bottom:97.920000pt;}
.y7b_c00157{bottom:98.560000pt;}
.y7a_c00157{bottom:99.200000pt;}
.y79_c00157{bottom:99.840000pt;}
.y78_c00157{bottom:100.480000pt;}
.y77_c00157{bottom:103.040000pt;}
.y75_c00157{bottom:133.120000pt;}
.y76_c00157{bottom:133.760000pt;}
.y74_c00157{bottom:134.400000pt;}
.y72_c00157{bottom:137.600000pt;}
.y73_c00157{bottom:138.240000pt;}
.y71_c00157{bottom:140.160000pt;}
.y6f_c00157{bottom:171.520000pt;}
.y70_c00157{bottom:172.800000pt;}
.y6d_c00157{bottom:173.440000pt;}
.y6e_c00157{bottom:174.720000pt;}
.y6c_c00157{bottom:176.000000pt;}
.y6a_c00157{bottom:219.520000pt;}
.y6b_c00157{bottom:220.160000pt;}
.y69_c00157{bottom:220.800000pt;}
.y68_c00157{bottom:221.440000pt;}
.y67_c00157{bottom:222.720000pt;}
.y66_c00157{bottom:225.280000pt;}
.y65_c00157{bottom:257.280000pt;}
.y63_c00157{bottom:258.560000pt;}
.y62_c00157{bottom:259.200000pt;}
.y61_c00157{bottom:259.840000pt;}
.y64_c00157{bottom:260.480000pt;}
.y60_c00157{bottom:261.120000pt;}
.y5d_c00157{bottom:295.680000pt;}
.y5b_c00157{bottom:296.320000pt;}
.y5e_c00157{bottom:297.600000pt;}
.y5f_c00157{bottom:298.240000pt;}
.y5c_c00157{bottom:298.880000pt;}
.y5a_c00157{bottom:299.520000pt;}
.y59_c00157{bottom:300.160000pt;}
.y55_c00157{bottom:333.440000pt;}
.y56_c00157{bottom:334.080000pt;}
.y54_c00157{bottom:334.720000pt;}
.y58_c00157{bottom:335.360000pt;}
.y57_c00157{bottom:336.640000pt;}
.y53_c00157{bottom:338.560000pt;}
.y51_c00157{bottom:371.840000pt;}
.y4f_c00157{bottom:372.480000pt;}
.y4e_c00157{bottom:373.760000pt;}
.y52_c00157{bottom:374.400000pt;}
.y50_c00157{bottom:375.040000pt;}
.y4d_c00157{bottom:408.960000pt;}
.y4b_c00157{bottom:409.600000pt;}
.y4c_c00157{bottom:410.240000pt;}
.y4a_c00157{bottom:410.880000pt;}
.y48_c00157{bottom:412.160000pt;}
.y49_c00157{bottom:413.440000pt;}
.y47_c00157{bottom:414.080000pt;}
.y44_c00157{bottom:448.000000pt;}
.y43_c00157{bottom:448.640000pt;}
.y46_c00157{bottom:449.920000pt;}
.y45_c00157{bottom:450.560000pt;}
.y42_c00157{bottom:451.200000pt;}
.y41_c00157{bottom:451.840000pt;}
.y3f_c00157{bottom:485.760000pt;}
.y40_c00157{bottom:488.960000pt;}
.y3e_c00157{bottom:489.600000pt;}
.y3d_c00157{bottom:535.680000pt;}
.y37_c00157{bottom:572.160000pt;}
.y38_c00157{bottom:572.800000pt;}
.y3b_c00157{bottom:573.440000pt;}
.y3a_c00157{bottom:574.080000pt;}
.y39_c00157{bottom:574.720000pt;}
.y3c_c00157{bottom:575.360000pt;}
.y33_c00157{bottom:609.920000pt;}
.y36_c00157{bottom:611.200000pt;}
.y32_c00157{bottom:612.480000pt;}
.y34_c00157{bottom:613.120000pt;}
.y35_c00157{bottom:613.760000pt;}
.y30_c00157{bottom:648.320000pt;}
.y2d_c00157{bottom:649.600000pt;}
.y2e_c00157{bottom:650.240000pt;}
.y2f_c00157{bottom:650.880000pt;}
.y31_c00157{bottom:651.520000pt;}
.y29_c00157{bottom:686.080000pt;}
.y2c_c00157{bottom:687.360000pt;}
.y28_c00157{bottom:688.000000pt;}
.y2a_c00157{bottom:688.640000pt;}
.y2b_c00157{bottom:689.280000pt;}
.y23_c00157{bottom:723.200000pt;}
.y25_c00157{bottom:724.480000pt;}
.y22_c00157{bottom:725.120000pt;}
.y24_c00157{bottom:725.760000pt;}
.y26_c00157{bottom:727.040000pt;}
.y27_c00157{bottom:727.680000pt;}
.y1e_c00157{bottom:762.240000pt;}
.y1c_c00157{bottom:762.880000pt;}
.y1d_c00157{bottom:764.160000pt;}
.y1f_c00157{bottom:764.800000pt;}
.y20_c00157{bottom:765.440000pt;}
.y21_c00157{bottom:766.080000pt;}
.y18_c00157{bottom:799.360000pt;}
.y1a_c00157{bottom:800.640000pt;}
.y17_c00157{bottom:801.280000pt;}
.y19_c00157{bottom:802.560000pt;}
.y1b_c00157{bottom:803.200000pt;}
.y11_c00157{bottom:837.760000pt;}
.y12_c00157{bottom:838.400000pt;}
.y10_c00157{bottom:839.040000pt;}
.y14_c00157{bottom:839.680000pt;}
.y13_c00157{bottom:840.960000pt;}
.y15_c00157{bottom:841.600000pt;}
.y16_c00157{bottom:842.240000pt;}
.ye_c00157{bottom:876.800000pt;}
.ya_c00157{bottom:877.440000pt;}
.yb_c00157{bottom:878.080000pt;}
.yd_c00157{bottom:878.720000pt;}
.yc_c00157{bottom:879.360000pt;}
.yf_c00157{bottom:880.000000pt;}
.y2_c00157{bottom:914.560000pt;}
.y5_c00157{bottom:915.200000pt;}
.y3_c00157{bottom:915.840000pt;}
.y4_c00157{bottom:916.480000pt;}
.y8_c00157{bottom:917.120000pt;}
.y6_c00157{bottom:917.760000pt;}
.y7_c00157{bottom:918.400000pt;}
.y9_c00157{bottom:919.040000pt;}
.y1_c00157{bottom:997.120000pt;}
.h7_c00157{height:25.341250pt;}
.h5_c00157{height:27.645000pt;}
.hf_c00157{height:29.948750pt;}
.h10_c00157{height:32.252500pt;}
.h8_c00157{height:34.556250pt;}
.h9_c00157{height:36.860000pt;}
.h3_c00157{height:39.163750pt;}
.h4_c00157{height:41.467500pt;}
.hc_c00157{height:43.771250pt;}
.ha_c00157{height:46.075000pt;}
.h6_c00157{height:48.378750pt;}
.hb_c00157{height:50.682500pt;}
.he_c00157{height:52.986250pt;}
.hd_c00157{height:55.290000pt;}
.h2_c00157{height:59.897500pt;}
.h1_c00157{height:1036.666667pt;}
.h0_c00157{height:1036.800000pt;}
.w0_c00157{width:706.560000pt;}
.w1_c00157{width:706.666667pt;}
.x0_c00157{left:0.000000pt;}
.x2b_c00157{left:55.680000pt;}
.x2_c00157{left:56.960000pt;}
.x50_c00157{left:58.880000pt;}
.x3_c00157{left:84.480000pt;}
.x47_c00157{left:86.400000pt;}
.x3d_c00157{left:92.800000pt;}
.xd_c00157{left:94.080000pt;}
.x44_c00157{left:102.400000pt;}
.x1d_c00157{left:103.680000pt;}
.x29_c00157{left:112.640000pt;}
.x4_c00157{left:122.240000pt;}
.x1e_c00157{left:131.840000pt;}
.x51_c00157{left:133.760000pt;}
.xe_c00157{left:141.440000pt;}
.x2c_c00157{left:150.400000pt;}
.x48_c00157{left:151.680000pt;}
.x32_c00157{left:160.000000pt;}
.x2a_c00157{left:168.960000pt;}
.x23_c00157{left:170.240000pt;}
.x2d_c00157{left:179.200000pt;}
.xf_c00157{left:188.160000pt;}
.x4a_c00157{left:189.440000pt;}
.x3a_c00157{left:196.480000pt;}
.x5_c00157{left:198.400000pt;}
.x16_c00157{left:208.000000pt;}
.x3e_c00157{left:216.960000pt;}
.x49_c00157{left:218.240000pt;}
.x4e_c00157{left:226.560000pt;}
.x6_c00157{left:227.840000pt;}
.x1f_c00157{left:236.160000pt;}
.x26_c00157{left:245.760000pt;}
.x4d_c00157{left:255.360000pt;}
.x36_c00157{left:256.640000pt;}
.x10_c00157{left:266.240000pt;}
.x45_c00157{left:275.200000pt;}
.x2e_c00157{left:284.160000pt;}
.x17_c00157{left:285.440000pt;}
.x4b_c00157{left:293.120000pt;}
.x11_c00157{left:294.400000pt;}
.x2f_c00157{left:304.000000pt;}
.x46_c00157{left:323.840000pt;}
.x7_c00157{left:332.800000pt;}
.x37_c00157{left:342.400000pt;}
.x53_c00157{left:352.640000pt;}
.x18_c00157{left:361.600000pt;}
.x20_c00157{left:370.560000pt;}
.x40_c00157{left:380.800000pt;}
.x8_c00157{left:390.400000pt;}
.x52_c00157{left:391.680000pt;}
.x27_c00157{left:400.640000pt;}
.x3f_c00157{left:408.960000pt;}
.x30_c00157{left:410.240000pt;}
.x9_c00157{left:419.840000pt;}
.x38_c00157{left:428.160000pt;}
.x12_c00157{left:429.440000pt;}
.x4c_c00157{left:437.760000pt;}
.x24_c00157{left:439.040000pt;}
.x41_c00157{left:457.600000pt;}
.x13_c00157{left:458.880000pt;}
.x3b_c00157{left:466.560000pt;}
.x19_c00157{left:468.480000pt;}
.x28_c00157{left:478.080000pt;}
.x42_c00157{left:487.040000pt;}
.x21_c00157{left:497.920000pt;}
.x14_c00157{left:506.880000pt;}
.x43_c00157{left:516.480000pt;}
.x1a_c00157{left:526.080000pt;}
.xa_c00157{left:535.040000pt;}
.x15_c00157{left:536.960000pt;}
.x33_c00157{left:545.280000pt;}
.x1b_c00157{left:554.880000pt;}
.x39_c00157{left:556.160000pt;}
.x34_c00157{left:564.480000pt;}
.xb_c00157{left:574.720000pt;}
.x31_c00157{left:583.680000pt;}
.x1c_c00157{left:585.600000pt;}
.x25_c00157{left:593.280000pt;}
.x22_c00157{left:594.560000pt;}
.x1_c00157{left:599.680000pt;}
.x35_c00157{left:604.160000pt;}
.x3c_c00157{left:612.480000pt;}
.x4f_c00157{left:613.760000pt;}
.xc_c00157{left:622.720000pt;}
.x54_c00157{left:652.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_46e30c92d760166842327361.woff2')format("woff");}.ff1_c00158{font-family:ff1_c00158;line-height:1.109863;font-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_c00158{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.me_c00158{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m21_c00158{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00158{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);}
.m2c_c00158{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m43_c00158{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m57_c00158{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00158{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m22_c00158{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00158{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m52_c00158{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m46_c00158{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m0_c00158{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00158{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mb_c00158{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m48_c00158{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m45_c00158{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m31_c00158{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);}
.m44_c00158{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m20_c00158{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);}
.m32_c00158{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m14_c00158{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m12_c00158{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);}
.m19_c00158{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m24_c00158{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);}
.m29_c00158{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.ma_c00158{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);}
.m3a_c00158{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);}
.m54_c00158{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m6_c00158{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00158{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);}
.m2f_c00158{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);}
.m38_c00158{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00158{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);}
.m26_c00158{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m8_c00158{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);}
.m23_c00158{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);}
.m49_c00158{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);}
.m51_c00158{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m13_c00158{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m40_c00158{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m3_c00158{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00158{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);}
.m50_c00158{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00158{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);}
.m15_c00158{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);}
.m33_c00158{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m18_c00158{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00158{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m7_c00158{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m36_c00158{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m37_c00158{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00158{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);}
.m5a_c00158{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m1_c00158{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_c00158{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m35_c00158{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m10_c00158{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00158{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);}
.m41_c00158{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00158{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m5_c00158{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m34_c00158{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m2_c00158{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00158{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);}
.m2d_c00158{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m16_c00158{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);}
.m4_c00158{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m56_c00158{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m39_c00158{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);}
.m2b_c00158{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m58_c00158{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.md_c00158{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m27_c00158{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);}
.m59_c00158{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m30_c00158{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m28_c00158{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);}
.m25_c00158{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);}
.m3d_c00158{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00158{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m42_c00158{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m17_c00158{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00158{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00158{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m47_c00158{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);}
.mc_c00158{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);}
.m53_c00158{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m11_c00158{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);}
.m9_c00158{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m55_c00158{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);}
.m2a_c00158{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.v1_c00158{vertical-align:-11.520000px;}
.v3_c00158{vertical-align:-2.880000px;}
.v0_c00158{vertical-align:0.000000px;}
.v2_c00158{vertical-align:11.520000px;}
.ls0_c00158{letter-spacing:0.000000px;}
.sc__c00158{text-shadow:none;}
.sc0_c00158{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00158{-webkit-text-stroke:0px transparent;}
.sc0_c00158{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00158{word-spacing:-9.270480px;}
.ws1_c00158{word-spacing:-2.993040px;}
.ws3_c00158{word-spacing:-1.804320px;}
.ws2_c00158{word-spacing:-0.562464px;}
.ws5_c00158{word-spacing:0.000000px;}
.ws0_c00158{word-spacing:6.757200px;}
.fc0_c00158{color:transparent;}
.fs6_c00158{font-size:34.560000px;}
.fsb_c00158{font-size:37.440000px;}
.fs4_c00158{font-size:40.320000px;}
.fs2_c00158{font-size:46.080000px;}
.fs1_c00158{font-size:48.960000px;}
.fs3_c00158{font-size:51.840000px;}
.fs5_c00158{font-size:54.720000px;}
.fse_c00158{font-size:57.600000px;}
.fs8_c00158{font-size:60.480000px;}
.fs7_c00158{font-size:63.360000px;}
.fsd_c00158{font-size:66.240000px;}
.fsa_c00158{font-size:69.120000px;}
.fs9_c00158{font-size:72.000000px;}
.fsc_c00158{font-size:74.880000px;}
.fs0_c00158{font-size:77.760000px;}
.y0_c00158{bottom:0.000000px;}
.y7f_c00158{bottom:51.840000px;}
.y7d_c00158{bottom:52.560000px;}
.y7c_c00158{bottom:53.280000px;}
.y7e_c00158{bottom:54.720000px;}
.y7a_c00158{bottom:55.440000px;}
.y7b_c00158{bottom:56.880000px;}
.y79_c00158{bottom:59.040000px;}
.y78_c00158{bottom:97.200000px;}
.y75_c00158{bottom:97.920000px;}
.y77_c00158{bottom:98.640000px;}
.y76_c00158{bottom:99.360000px;}
.y73_c00158{bottom:100.800000px;}
.y74_c00158{bottom:101.520000px;}
.y70_c00158{bottom:138.240000px;}
.y6f_c00158{bottom:139.680000px;}
.y72_c00158{bottom:141.120000px;}
.y71_c00158{bottom:141.840000px;}
.y6e_c00158{bottom:142.560000px;}
.y6d_c00158{bottom:143.280000px;}
.y6c_c00158{bottom:144.000000px;}
.y6a_c00158{bottom:180.000000px;}
.y67_c00158{bottom:182.160000px;}
.y68_c00158{bottom:182.880000px;}
.y6b_c00158{bottom:183.600000px;}
.y69_c00158{bottom:184.320000px;}
.y66_c00158{bottom:185.040000px;}
.y65_c00158{bottom:185.760000px;}
.y64_c00158{bottom:186.480000px;}
.y63_c00158{bottom:223.200000px;}
.y5e_c00158{bottom:226.080000px;}
.y62_c00158{bottom:226.800000px;}
.y61_c00158{bottom:227.520000px;}
.y5f_c00158{bottom:228.240000px;}
.y60_c00158{bottom:228.960000px;}
.y5d_c00158{bottom:229.680000px;}
.y5c_c00158{bottom:266.400000px;}
.y59_c00158{bottom:268.560000px;}
.y5a_c00158{bottom:270.000000px;}
.y5b_c00158{bottom:271.440000px;}
.y58_c00158{bottom:311.040000px;}
.y55_c00158{bottom:312.480000px;}
.y57_c00158{bottom:313.200000px;}
.y56_c00158{bottom:313.920000px;}
.y54_c00158{bottom:352.800000px;}
.y52_c00158{bottom:353.520000px;}
.y51_c00158{bottom:354.240000px;}
.y53_c00158{bottom:356.400000px;}
.y50_c00158{bottom:408.960000px;}
.y4f_c00158{bottom:409.680000px;}
.y4e_c00158{bottom:410.400000px;}
.y4d_c00158{bottom:449.280000px;}
.y4c_c00158{bottom:450.000000px;}
.y4b_c00158{bottom:452.160000px;}
.y4a_c00158{bottom:452.880000px;}
.y49_c00158{bottom:453.600000px;}
.y45_c00158{bottom:492.480000px;}
.y47_c00158{bottom:493.200000px;}
.y48_c00158{bottom:494.640000px;}
.y46_c00158{bottom:495.360000px;}
.y42_c00158{bottom:535.680000px;}
.y44_c00158{bottom:537.840000px;}
.y43_c00158{bottom:538.560000px;}
.y3f_c00158{bottom:577.440000px;}
.y3d_c00158{bottom:578.160000px;}
.y40_c00158{bottom:578.880000px;}
.y3e_c00158{bottom:581.040000px;}
.y41_c00158{bottom:581.760000px;}
.y3b_c00158{bottom:619.920000px;}
.y3a_c00158{bottom:621.360000px;}
.y3c_c00158{bottom:622.080000px;}
.y38_c00158{bottom:623.520000px;}
.y39_c00158{bottom:624.240000px;}
.y37_c00158{bottom:665.280000px;}
.y34_c00158{bottom:666.720000px;}
.y35_c00158{bottom:667.440000px;}
.y36_c00158{bottom:668.160000px;}
.y32_c00158{bottom:707.040000px;}
.y33_c00158{bottom:707.760000px;}
.y2f_c00158{bottom:708.480000px;}
.y30_c00158{bottom:709.920000px;}
.y31_c00158{bottom:710.640000px;}
.y2e_c00158{bottom:750.240000px;}
.y2b_c00158{bottom:750.960000px;}
.y2a_c00158{bottom:752.400000px;}
.y2c_c00158{bottom:753.120000px;}
.y2d_c00158{bottom:753.840000px;}
.y24_c00158{bottom:802.080000px;}
.y26_c00158{bottom:802.800000px;}
.y25_c00158{bottom:803.520000px;}
.y29_c00158{bottom:804.240000px;}
.y23_c00158{bottom:804.960000px;}
.y28_c00158{bottom:805.680000px;}
.y27_c00158{bottom:806.400000px;}
.y1c_c00158{bottom:844.560000px;}
.y1d_c00158{bottom:846.000000px;}
.y22_c00158{bottom:847.440000px;}
.y1e_c00158{bottom:848.160000px;}
.y1f_c00158{bottom:848.880000px;}
.y20_c00158{bottom:849.600000px;}
.y21_c00158{bottom:850.320000px;}
.y18_c00158{bottom:886.320000px;}
.y19_c00158{bottom:889.920000px;}
.y1a_c00158{bottom:890.640000px;}
.y1b_c00158{bottom:892.080000px;}
.y15_c00158{bottom:931.680000px;}
.y11_c00158{bottom:932.400000px;}
.y17_c00158{bottom:933.120000px;}
.y12_c00158{bottom:933.840000px;}
.y14_c00158{bottom:934.560000px;}
.y13_c00158{bottom:935.280000px;}
.y16_c00158{bottom:936.000000px;}
.ya_c00158{bottom:971.280000px;}
.yf_c00158{bottom:974.880000px;}
.yb_c00158{bottom:975.600000px;}
.yc_c00158{bottom:976.320000px;}
.yd_c00158{bottom:977.040000px;}
.ye_c00158{bottom:977.760000px;}
.y10_c00158{bottom:978.480000px;}
.y3_c00158{bottom:1015.920000px;}
.y4_c00158{bottom:1016.640000px;}
.y2_c00158{bottom:1017.360000px;}
.y5_c00158{bottom:1019.520000px;}
.y6_c00158{bottom:1020.240000px;}
.y7_c00158{bottom:1020.960000px;}
.y8_c00158{bottom:1021.680000px;}
.y9_c00158{bottom:1022.400000px;}
.y1_c00158{bottom:1096.560000px;}
.h8_c00158{height:31.100625px;}
.hd_c00158{height:33.692344px;}
.h6_c00158{height:36.284062px;}
.h4_c00158{height:41.467500px;}
.h3_c00158{height:44.059219px;}
.h5_c00158{height:46.650937px;}
.h7_c00158{height:49.242656px;}
.h10_c00158{height:51.834375px;}
.ha_c00158{height:54.426094px;}
.h9_c00158{height:57.017812px;}
.h11_c00158{height:58.170937px;}
.hf_c00158{height:59.609531px;}
.hc_c00158{height:62.201250px;}
.hb_c00158{height:64.792969px;}
.he_c00158{height:67.384687px;}
.h2_c00158{height:69.976406px;}
.h0_c00158{height:1153.440000px;}
.h1_c00158{height:1153.500000px;}
.w0_c00158{width:794.880000px;}
.w1_c00158{width:795.000000px;}
.x0_c00158{left:0.000000px;}
.x2_c00158{left:66.960000px;}
.x1f_c00158{left:69.120000px;}
.x39_c00158{left:87.840000px;}
.x36_c00158{left:98.640000px;}
.x2a_c00158{left:100.080000px;}
.x1a_c00158{left:108.720000px;}
.x3a_c00158{left:118.800000px;}
.xc_c00158{left:128.880000px;}
.x4e_c00158{left:131.040000px;}
.x20_c00158{left:141.840000px;}
.x3b_c00158{left:151.200000px;}
.x3_c00158{left:161.280000px;}
.x1b_c00158{left:171.360000px;}
.x2e_c00158{left:172.800000px;}
.x4_c00158{left:182.880000px;}
.xd_c00158{left:194.400000px;}
.x2f_c00158{left:204.480000px;}
.x21_c00158{left:214.560000px;}
.x42_c00158{left:216.000000px;}
.x5_c00158{left:225.360000px;}
.x30_c00158{left:235.440000px;}
.x2b_c00158{left:237.600000px;}
.x1c_c00158{left:246.960000px;}
.x22_c00158{left:257.760000px;}
.x14_c00158{left:259.200000px;}
.x6_c00158{left:269.280000px;}
.x15_c00158{left:279.360000px;}
.x2c_c00158{left:290.160000px;}
.x49_c00158{left:291.600000px;}
.x31_c00158{left:300.960000px;}
.x52_c00158{left:302.400000px;}
.xe_c00158{left:311.040000px;}
.x45_c00158{left:312.480000px;}
.x3d_c00158{left:323.280000px;}
.x23_c00158{left:334.080000px;}
.x46_c00158{left:344.160000px;}
.x7_c00158{left:355.680000px;}
.x16_c00158{left:365.760000px;}
.x43_c00158{left:367.200000px;}
.x41_c00158{left:376.560000px;}
.x47_c00158{left:388.800000px;}
.x8_c00158{left:398.160000px;}
.xf_c00158{left:409.680000px;}
.x3e_c00158{left:420.480000px;}
.x4f_c00158{left:432.000000px;}
.x3c_c00158{left:441.360000px;}
.x2d_c00158{left:442.800000px;}
.x10_c00158{left:452.160000px;}
.x9_c00158{left:453.600000px;}
.x24_c00158{left:464.400000px;}
.x1d_c00158{left:475.200000px;}
.x11_c00158{left:484.560000px;}
.x17_c00158{left:486.000000px;}
.x3f_c00158{left:495.360000px;}
.x40_c00158{left:496.800000px;}
.x25_c00158{left:506.880000px;}
.x50_c00158{left:518.400000px;}
.x18_c00158{left:528.480000px;}
.x4a_c00158{left:529.920000px;}
.x37_c00158{left:540.000000px;}
.x34_c00158{left:541.440000px;}
.x26_c00158{left:550.800000px;}
.x51_c00158{left:552.240000px;}
.x4d_c00158{left:561.600000px;}
.x4b_c00158{left:563.760000px;}
.x12_c00158{left:572.400000px;}
.x32_c00158{left:583.920000px;}
.x13_c00158{left:604.800000px;}
.x53_c00158{left:606.240000px;}
.x27_c00158{left:617.040000px;}
.x33_c00158{left:626.400000px;}
.x4c_c00158{left:628.560000px;}
.x1e_c00158{left:638.640000px;}
.x38_c00158{left:640.800000px;}
.x28_c00158{left:648.720000px;}
.xa_c00158{left:650.160000px;}
.x19_c00158{left:670.320000px;}
.x44_c00158{left:671.760000px;}
.x48_c00158{left:673.920000px;}
.xb_c00158{left:693.360000px;}
.x29_c00158{left:703.440000px;}
.x1_c00158{left:707.040000px;}
.x35_c00158{left:714.960000px;}
@media print{
.v1_c00158{vertical-align:-10.240000pt;}
.v3_c00158{vertical-align:-2.560000pt;}
.v0_c00158{vertical-align:0.000000pt;}
.v2_c00158{vertical-align:10.240000pt;}
.ls0_c00158{letter-spacing:0.000000pt;}
.ws4_c00158{word-spacing:-8.240427pt;}
.ws1_c00158{word-spacing:-2.660480pt;}
.ws3_c00158{word-spacing:-1.603840pt;}
.ws2_c00158{word-spacing:-0.499968pt;}
.ws5_c00158{word-spacing:0.000000pt;}
.ws0_c00158{word-spacing:6.006400pt;}
.fs6_c00158{font-size:30.720000pt;}
.fsb_c00158{font-size:33.280000pt;}
.fs4_c00158{font-size:35.840000pt;}
.fs2_c00158{font-size:40.960000pt;}
.fs1_c00158{font-size:43.520000pt;}
.fs3_c00158{font-size:46.080000pt;}
.fs5_c00158{font-size:48.640000pt;}
.fse_c00158{font-size:51.200000pt;}
.fs8_c00158{font-size:53.760000pt;}
.fs7_c00158{font-size:56.320000pt;}
.fsd_c00158{font-size:58.880000pt;}
.fsa_c00158{font-size:61.440000pt;}
.fs9_c00158{font-size:64.000000pt;}
.fsc_c00158{font-size:66.560000pt;}
.fs0_c00158{font-size:69.120000pt;}
.y0_c00158{bottom:0.000000pt;}
.y7f_c00158{bottom:46.080000pt;}
.y7d_c00158{bottom:46.720000pt;}
.y7c_c00158{bottom:47.360000pt;}
.y7e_c00158{bottom:48.640000pt;}
.y7a_c00158{bottom:49.280000pt;}
.y7b_c00158{bottom:50.560000pt;}
.y79_c00158{bottom:52.480000pt;}
.y78_c00158{bottom:86.400000pt;}
.y75_c00158{bottom:87.040000pt;}
.y77_c00158{bottom:87.680000pt;}
.y76_c00158{bottom:88.320000pt;}
.y73_c00158{bottom:89.600000pt;}
.y74_c00158{bottom:90.240000pt;}
.y70_c00158{bottom:122.880000pt;}
.y6f_c00158{bottom:124.160000pt;}
.y72_c00158{bottom:125.440000pt;}
.y71_c00158{bottom:126.080000pt;}
.y6e_c00158{bottom:126.720000pt;}
.y6d_c00158{bottom:127.360000pt;}
.y6c_c00158{bottom:128.000000pt;}
.y6a_c00158{bottom:160.000000pt;}
.y67_c00158{bottom:161.920000pt;}
.y68_c00158{bottom:162.560000pt;}
.y6b_c00158{bottom:163.200000pt;}
.y69_c00158{bottom:163.840000pt;}
.y66_c00158{bottom:164.480000pt;}
.y65_c00158{bottom:165.120000pt;}
.y64_c00158{bottom:165.760000pt;}
.y63_c00158{bottom:198.400000pt;}
.y5e_c00158{bottom:200.960000pt;}
.y62_c00158{bottom:201.600000pt;}
.y61_c00158{bottom:202.240000pt;}
.y5f_c00158{bottom:202.880000pt;}
.y60_c00158{bottom:203.520000pt;}
.y5d_c00158{bottom:204.160000pt;}
.y5c_c00158{bottom:236.800000pt;}
.y59_c00158{bottom:238.720000pt;}
.y5a_c00158{bottom:240.000000pt;}
.y5b_c00158{bottom:241.280000pt;}
.y58_c00158{bottom:276.480000pt;}
.y55_c00158{bottom:277.760000pt;}
.y57_c00158{bottom:278.400000pt;}
.y56_c00158{bottom:279.040000pt;}
.y54_c00158{bottom:313.600000pt;}
.y52_c00158{bottom:314.240000pt;}
.y51_c00158{bottom:314.880000pt;}
.y53_c00158{bottom:316.800000pt;}
.y50_c00158{bottom:363.520000pt;}
.y4f_c00158{bottom:364.160000pt;}
.y4e_c00158{bottom:364.800000pt;}
.y4d_c00158{bottom:399.360000pt;}
.y4c_c00158{bottom:400.000000pt;}
.y4b_c00158{bottom:401.920000pt;}
.y4a_c00158{bottom:402.560000pt;}
.y49_c00158{bottom:403.200000pt;}
.y45_c00158{bottom:437.760000pt;}
.y47_c00158{bottom:438.400000pt;}
.y48_c00158{bottom:439.680000pt;}
.y46_c00158{bottom:440.320000pt;}
.y42_c00158{bottom:476.160000pt;}
.y44_c00158{bottom:478.080000pt;}
.y43_c00158{bottom:478.720000pt;}
.y3f_c00158{bottom:513.280000pt;}
.y3d_c00158{bottom:513.920000pt;}
.y40_c00158{bottom:514.560000pt;}
.y3e_c00158{bottom:516.480000pt;}
.y41_c00158{bottom:517.120000pt;}
.y3b_c00158{bottom:551.040000pt;}
.y3a_c00158{bottom:552.320000pt;}
.y3c_c00158{bottom:552.960000pt;}
.y38_c00158{bottom:554.240000pt;}
.y39_c00158{bottom:554.880000pt;}
.y37_c00158{bottom:591.360000pt;}
.y34_c00158{bottom:592.640000pt;}
.y35_c00158{bottom:593.280000pt;}
.y36_c00158{bottom:593.920000pt;}
.y32_c00158{bottom:628.480000pt;}
.y33_c00158{bottom:629.120000pt;}
.y2f_c00158{bottom:629.760000pt;}
.y30_c00158{bottom:631.040000pt;}
.y31_c00158{bottom:631.680000pt;}
.y2e_c00158{bottom:666.880000pt;}
.y2b_c00158{bottom:667.520000pt;}
.y2a_c00158{bottom:668.800000pt;}
.y2c_c00158{bottom:669.440000pt;}
.y2d_c00158{bottom:670.080000pt;}
.y24_c00158{bottom:712.960000pt;}
.y26_c00158{bottom:713.600000pt;}
.y25_c00158{bottom:714.240000pt;}
.y29_c00158{bottom:714.880000pt;}
.y23_c00158{bottom:715.520000pt;}
.y28_c00158{bottom:716.160000pt;}
.y27_c00158{bottom:716.800000pt;}
.y1c_c00158{bottom:750.720000pt;}
.y1d_c00158{bottom:752.000000pt;}
.y22_c00158{bottom:753.280000pt;}
.y1e_c00158{bottom:753.920000pt;}
.y1f_c00158{bottom:754.560000pt;}
.y20_c00158{bottom:755.200000pt;}
.y21_c00158{bottom:755.840000pt;}
.y18_c00158{bottom:787.840000pt;}
.y19_c00158{bottom:791.040000pt;}
.y1a_c00158{bottom:791.680000pt;}
.y1b_c00158{bottom:792.960000pt;}
.y15_c00158{bottom:828.160000pt;}
.y11_c00158{bottom:828.800000pt;}
.y17_c00158{bottom:829.440000pt;}
.y12_c00158{bottom:830.080000pt;}
.y14_c00158{bottom:830.720000pt;}
.y13_c00158{bottom:831.360000pt;}
.y16_c00158{bottom:832.000000pt;}
.ya_c00158{bottom:863.360000pt;}
.yf_c00158{bottom:866.560000pt;}
.yb_c00158{bottom:867.200000pt;}
.yc_c00158{bottom:867.840000pt;}
.yd_c00158{bottom:868.480000pt;}
.ye_c00158{bottom:869.120000pt;}
.y10_c00158{bottom:869.760000pt;}
.y3_c00158{bottom:903.040000pt;}
.y4_c00158{bottom:903.680000pt;}
.y2_c00158{bottom:904.320000pt;}
.y5_c00158{bottom:906.240000pt;}
.y6_c00158{bottom:906.880000pt;}
.y7_c00158{bottom:907.520000pt;}
.y8_c00158{bottom:908.160000pt;}
.y9_c00158{bottom:908.800000pt;}
.y1_c00158{bottom:974.720000pt;}
.h8_c00158{height:27.645000pt;}
.hd_c00158{height:29.948750pt;}
.h6_c00158{height:32.252500pt;}
.h4_c00158{height:36.860000pt;}
.h3_c00158{height:39.163750pt;}
.h5_c00158{height:41.467500pt;}
.h7_c00158{height:43.771250pt;}
.h10_c00158{height:46.075000pt;}
.ha_c00158{height:48.378750pt;}
.h9_c00158{height:50.682500pt;}
.h11_c00158{height:51.707500pt;}
.hf_c00158{height:52.986250pt;}
.hc_c00158{height:55.290000pt;}
.hb_c00158{height:57.593750pt;}
.he_c00158{height:59.897500pt;}
.h2_c00158{height:62.201250pt;}
.h0_c00158{height:1025.280000pt;}
.h1_c00158{height:1025.333333pt;}
.w0_c00158{width:706.560000pt;}
.w1_c00158{width:706.666667pt;}
.x0_c00158{left:0.000000pt;}
.x2_c00158{left:59.520000pt;}
.x1f_c00158{left:61.440000pt;}
.x39_c00158{left:78.080000pt;}
.x36_c00158{left:87.680000pt;}
.x2a_c00158{left:88.960000pt;}
.x1a_c00158{left:96.640000pt;}
.x3a_c00158{left:105.600000pt;}
.xc_c00158{left:114.560000pt;}
.x4e_c00158{left:116.480000pt;}
.x20_c00158{left:126.080000pt;}
.x3b_c00158{left:134.400000pt;}
.x3_c00158{left:143.360000pt;}
.x1b_c00158{left:152.320000pt;}
.x2e_c00158{left:153.600000pt;}
.x4_c00158{left:162.560000pt;}
.xd_c00158{left:172.800000pt;}
.x2f_c00158{left:181.760000pt;}
.x21_c00158{left:190.720000pt;}
.x42_c00158{left:192.000000pt;}
.x5_c00158{left:200.320000pt;}
.x30_c00158{left:209.280000pt;}
.x2b_c00158{left:211.200000pt;}
.x1c_c00158{left:219.520000pt;}
.x22_c00158{left:229.120000pt;}
.x14_c00158{left:230.400000pt;}
.x6_c00158{left:239.360000pt;}
.x15_c00158{left:248.320000pt;}
.x2c_c00158{left:257.920000pt;}
.x49_c00158{left:259.200000pt;}
.x31_c00158{left:267.520000pt;}
.x52_c00158{left:268.800000pt;}
.xe_c00158{left:276.480000pt;}
.x45_c00158{left:277.760000pt;}
.x3d_c00158{left:287.360000pt;}
.x23_c00158{left:296.960000pt;}
.x46_c00158{left:305.920000pt;}
.x7_c00158{left:316.160000pt;}
.x16_c00158{left:325.120000pt;}
.x43_c00158{left:326.400000pt;}
.x41_c00158{left:334.720000pt;}
.x47_c00158{left:345.600000pt;}
.x8_c00158{left:353.920000pt;}
.xf_c00158{left:364.160000pt;}
.x3e_c00158{left:373.760000pt;}
.x4f_c00158{left:384.000000pt;}
.x3c_c00158{left:392.320000pt;}
.x2d_c00158{left:393.600000pt;}
.x10_c00158{left:401.920000pt;}
.x9_c00158{left:403.200000pt;}
.x24_c00158{left:412.800000pt;}
.x1d_c00158{left:422.400000pt;}
.x11_c00158{left:430.720000pt;}
.x17_c00158{left:432.000000pt;}
.x3f_c00158{left:440.320000pt;}
.x40_c00158{left:441.600000pt;}
.x25_c00158{left:450.560000pt;}
.x50_c00158{left:460.800000pt;}
.x18_c00158{left:469.760000pt;}
.x4a_c00158{left:471.040000pt;}
.x37_c00158{left:480.000000pt;}
.x34_c00158{left:481.280000pt;}
.x26_c00158{left:489.600000pt;}
.x51_c00158{left:490.880000pt;}
.x4d_c00158{left:499.200000pt;}
.x4b_c00158{left:501.120000pt;}
.x12_c00158{left:508.800000pt;}
.x32_c00158{left:519.040000pt;}
.x13_c00158{left:537.600000pt;}
.x53_c00158{left:538.880000pt;}
.x27_c00158{left:548.480000pt;}
.x33_c00158{left:556.800000pt;}
.x4c_c00158{left:558.720000pt;}
.x1e_c00158{left:567.680000pt;}
.x38_c00158{left:569.600000pt;}
.x28_c00158{left:576.640000pt;}
.xa_c00158{left:577.920000pt;}
.x19_c00158{left:595.840000pt;}
.x44_c00158{left:597.120000pt;}
.x48_c00158{left:599.040000pt;}
.xb_c00158{left:616.320000pt;}
.x29_c00158{left:625.280000pt;}
.x1_c00158{left:628.480000pt;}
.x35_c00158{left:635.520000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d991973f1f766504d584d52f.woff2')format("woff");}.ff1_c00159{font-family:ff1_c00159;line-height:1.109863;font-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_c00159{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.ma_c00159{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m0_c00159{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mb_c00159{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);}
.m30_c00159{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.mc_c00159{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m9_c00159{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m22_c00159{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m6_c00159{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m15_c00159{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00159{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00159{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m14_c00159{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m3_c00159{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);}
.m21_c00159{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m13_c00159{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);}
.m18_c00159{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);}
.m28_c00159{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);}
.m2c_c00159{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m29_c00159{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.mf_c00159{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m34_c00159{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);}
.m36_c00159{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m31_c00159{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);}
.m33_c00159{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);}
.m2a_c00159{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m20_c00159{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m2_c00159{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m19_c00159{transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);}
.m1_c00159{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m16_c00159{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m11_c00159{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);}
.m4_c00159{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m26_c00159{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);}
.m7_c00159{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m35_c00159{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00159{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);}
.m8_c00159{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m32_c00159{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00159{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);}
.m10_c00159{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m5_c00159{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00159{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);}
.m1d_c00159{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m27_c00159{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);}
.m25_c00159{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00159{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m12_c00159{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);}
.m17_c00159{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);}
.m2e_c00159{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m24_c00159{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.me_c00159{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00159{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.md_c00159{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00159{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.v0_c00159{vertical-align:0.000000px;}
.ls0_c00159{letter-spacing:0.000000px;}
.sc__c00159{text-shadow:none;}
.sc0_c00159{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00159{-webkit-text-stroke:0px transparent;}
.sc0_c00159{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00159{word-spacing:0.000000px;}
.fc0_c00159{color:transparent;}
.fs5_c00159{font-size:34.560000px;}
.fs6_c00159{font-size:37.440000px;}
.fsa_c00159{font-size:40.320000px;}
.fsc_c00159{font-size:43.200000px;}
.fs7_c00159{font-size:46.080000px;}
.fs3_c00159{font-size:48.960000px;}
.fs1_c00159{font-size:51.840000px;}
.fs9_c00159{font-size:54.720000px;}
.fs2_c00159{font-size:60.480000px;}
.fs8_c00159{font-size:63.360000px;}
.fsb_c00159{font-size:66.240000px;}
.fs4_c00159{font-size:69.120000px;}
.fs0_c00159{font-size:80.640000px;}
.y0_c00159{bottom:0.000000px;}
.y26_c00159{bottom:663.120000px;}
.y25_c00159{bottom:664.560000px;}
.y24_c00159{bottom:702.720000px;}
.y22_c00159{bottom:703.440000px;}
.y21_c00159{bottom:704.160000px;}
.y23_c00159{bottom:705.600000px;}
.y20_c00159{bottom:706.320000px;}
.y1f_c00159{bottom:745.200000px;}
.y1c_c00159{bottom:745.920000px;}
.y1d_c00159{bottom:746.640000px;}
.y1e_c00159{bottom:748.080000px;}
.y1b_c00159{bottom:748.800000px;}
.y17_c00159{bottom:788.400000px;}
.y19_c00159{bottom:790.560000px;}
.y1a_c00159{bottom:791.280000px;}
.y18_c00159{bottom:792.000000px;}
.y16_c00159{bottom:831.600000px;}
.y14_c00159{bottom:832.320000px;}
.y13_c00159{bottom:833.760000px;}
.y15_c00159{bottom:834.480000px;}
.y11_c00159{bottom:873.360000px;}
.y12_c00159{bottom:874.800000px;}
.y10_c00159{bottom:876.960000px;}
.yf_c00159{bottom:877.680000px;}
.yc_c00159{bottom:917.280000px;}
.ya_c00159{bottom:918.720000px;}
.yb_c00159{bottom:919.440000px;}
.yd_c00159{bottom:920.160000px;}
.ye_c00159{bottom:920.880000px;}
.y8_c00159{bottom:960.480000px;}
.y7_c00159{bottom:962.640000px;}
.y6_c00159{bottom:963.360000px;}
.y9_c00159{bottom:964.080000px;}
.y5_c00159{bottom:1014.480000px;}
.y2_c00159{bottom:1015.200000px;}
.y3_c00159{bottom:1016.640000px;}
.y4_c00159{bottom:1017.360000px;}
.y1_c00159{bottom:1078.560000px;}
.h7_c00159{height:31.100625px;}
.h8_c00159{height:33.692344px;}
.hc_c00159{height:36.284062px;}
.he_c00159{height:38.875781px;}
.h9_c00159{height:41.467500px;}
.h5_c00159{height:44.059219px;}
.h3_c00159{height:46.650937px;}
.hb_c00159{height:49.242656px;}
.h4_c00159{height:54.426094px;}
.ha_c00159{height:57.017812px;}
.hd_c00159{height:59.609531px;}
.h6_c00159{height:62.201250px;}
.h2_c00159{height:72.568125px;}
.h0_c00159{height:1141.920000px;}
.h1_c00159{height:1142.250000px;}
.w0_c00159{width:777.600000px;}
.w1_c00159{width:777.750000px;}
.x0_c00159{left:0.000000px;}
.x27_c00159{left:59.760000px;}
.x2_c00159{left:61.200000px;}
.x1b_c00159{left:82.800000px;}
.x13_c00159{left:90.720000px;}
.x28_c00159{left:101.520000px;}
.x3_c00159{left:104.400000px;}
.x30_c00159{left:113.040000px;}
.x14_c00159{left:122.400000px;}
.x29_c00159{left:133.920000px;}
.x1c_c00159{left:144.720000px;}
.x36_c00159{left:164.880000px;}
.xc_c00159{left:167.040000px;}
.x1d_c00159{left:178.560000px;}
.xd_c00159{left:198.720000px;}
.x37_c00159{left:207.360000px;}
.x31_c00159{left:208.800000px;}
.x4_c00159{left:220.320000px;}
.x32_c00159{left:240.480000px;}
.x1e_c00159{left:241.920000px;}
.x15_c00159{left:251.280000px;}
.xe_c00159{left:263.520000px;}
.x23_c00159{left:273.600000px;}
.x38_c00159{left:284.400000px;}
.x2a_c00159{left:294.480000px;}
.x5_c00159{left:306.720000px;}
.x1f_c00159{left:317.520000px;}
.x33_c00159{left:326.880000px;}
.x16_c00159{left:349.920000px;}
.xf_c00159{left:360.720000px;}
.x6_c00159{left:371.520000px;}
.x39_c00159{left:380.880000px;}
.x17_c00159{left:382.320000px;}
.x2b_c00159{left:391.680000px;}
.x10_c00159{left:393.120000px;}
.x20_c00159{left:403.920000px;}
.x7_c00159{left:406.080000px;}
.x2c_c00159{left:413.280000px;}
.x3a_c00159{left:424.080000px;}
.x11_c00159{left:425.520000px;}
.x8_c00159{left:447.120000px;}
.x34_c00159{left:456.480000px;}
.x9_c00159{left:468.000000px;}
.x3b_c00159{left:478.800000px;}
.x2d_c00159{left:490.320000px;}
.x18_c00159{left:501.840000px;}
.x3c_c00159{left:522.720000px;}
.x24_c00159{left:545.040000px;}
.x21_c00159{left:555.840000px;}
.x12_c00159{left:565.920000px;}
.xa_c00159{left:581.040000px;}
.x25_c00159{left:609.120000px;}
.x19_c00159{left:610.560000px;}
.x35_c00159{left:620.640000px;}
.x26_c00159{left:641.520000px;}
.x1a_c00159{left:642.960000px;}
.x2e_c00159{left:653.040000px;}
.xb_c00159{left:655.200000px;}
.x22_c00159{left:675.360000px;}
.x1_c00159{left:681.840000px;}
.x2f_c00159{left:686.880000px;}
@media print{
.v0_c00159{vertical-align:0.000000pt;}
.ls0_c00159{letter-spacing:0.000000pt;}
.ws0_c00159{word-spacing:0.000000pt;}
.fs5_c00159{font-size:30.720000pt;}
.fs6_c00159{font-size:33.280000pt;}
.fsa_c00159{font-size:35.840000pt;}
.fsc_c00159{font-size:38.400000pt;}
.fs7_c00159{font-size:40.960000pt;}
.fs3_c00159{font-size:43.520000pt;}
.fs1_c00159{font-size:46.080000pt;}
.fs9_c00159{font-size:48.640000pt;}
.fs2_c00159{font-size:53.760000pt;}
.fs8_c00159{font-size:56.320000pt;}
.fsb_c00159{font-size:58.880000pt;}
.fs4_c00159{font-size:61.440000pt;}
.fs0_c00159{font-size:71.680000pt;}
.y0_c00159{bottom:0.000000pt;}
.y26_c00159{bottom:589.440000pt;}
.y25_c00159{bottom:590.720000pt;}
.y24_c00159{bottom:624.640000pt;}
.y22_c00159{bottom:625.280000pt;}
.y21_c00159{bottom:625.920000pt;}
.y23_c00159{bottom:627.200000pt;}
.y20_c00159{bottom:627.840000pt;}
.y1f_c00159{bottom:662.400000pt;}
.y1c_c00159{bottom:663.040000pt;}
.y1d_c00159{bottom:663.680000pt;}
.y1e_c00159{bottom:664.960000pt;}
.y1b_c00159{bottom:665.600000pt;}
.y17_c00159{bottom:700.800000pt;}
.y19_c00159{bottom:702.720000pt;}
.y1a_c00159{bottom:703.360000pt;}
.y18_c00159{bottom:704.000000pt;}
.y16_c00159{bottom:739.200000pt;}
.y14_c00159{bottom:739.840000pt;}
.y13_c00159{bottom:741.120000pt;}
.y15_c00159{bottom:741.760000pt;}
.y11_c00159{bottom:776.320000pt;}
.y12_c00159{bottom:777.600000pt;}
.y10_c00159{bottom:779.520000pt;}
.yf_c00159{bottom:780.160000pt;}
.yc_c00159{bottom:815.360000pt;}
.ya_c00159{bottom:816.640000pt;}
.yb_c00159{bottom:817.280000pt;}
.yd_c00159{bottom:817.920000pt;}
.ye_c00159{bottom:818.560000pt;}
.y8_c00159{bottom:853.760000pt;}
.y7_c00159{bottom:855.680000pt;}
.y6_c00159{bottom:856.320000pt;}
.y9_c00159{bottom:856.960000pt;}
.y5_c00159{bottom:901.760000pt;}
.y2_c00159{bottom:902.400000pt;}
.y3_c00159{bottom:903.680000pt;}
.y4_c00159{bottom:904.320000pt;}
.y1_c00159{bottom:958.720000pt;}
.h7_c00159{height:27.645000pt;}
.h8_c00159{height:29.948750pt;}
.hc_c00159{height:32.252500pt;}
.he_c00159{height:34.556250pt;}
.h9_c00159{height:36.860000pt;}
.h5_c00159{height:39.163750pt;}
.h3_c00159{height:41.467500pt;}
.hb_c00159{height:43.771250pt;}
.h4_c00159{height:48.378750pt;}
.ha_c00159{height:50.682500pt;}
.hd_c00159{height:52.986250pt;}
.h6_c00159{height:55.290000pt;}
.h2_c00159{height:64.505000pt;}
.h0_c00159{height:1015.040000pt;}
.h1_c00159{height:1015.333333pt;}
.w0_c00159{width:691.200000pt;}
.w1_c00159{width:691.333333pt;}
.x0_c00159{left:0.000000pt;}
.x27_c00159{left:53.120000pt;}
.x2_c00159{left:54.400000pt;}
.x1b_c00159{left:73.600000pt;}
.x13_c00159{left:80.640000pt;}
.x28_c00159{left:90.240000pt;}
.x3_c00159{left:92.800000pt;}
.x30_c00159{left:100.480000pt;}
.x14_c00159{left:108.800000pt;}
.x29_c00159{left:119.040000pt;}
.x1c_c00159{left:128.640000pt;}
.x36_c00159{left:146.560000pt;}
.xc_c00159{left:148.480000pt;}
.x1d_c00159{left:158.720000pt;}
.xd_c00159{left:176.640000pt;}
.x37_c00159{left:184.320000pt;}
.x31_c00159{left:185.600000pt;}
.x4_c00159{left:195.840000pt;}
.x32_c00159{left:213.760000pt;}
.x1e_c00159{left:215.040000pt;}
.x15_c00159{left:223.360000pt;}
.xe_c00159{left:234.240000pt;}
.x23_c00159{left:243.200000pt;}
.x38_c00159{left:252.800000pt;}
.x2a_c00159{left:261.760000pt;}
.x5_c00159{left:272.640000pt;}
.x1f_c00159{left:282.240000pt;}
.x33_c00159{left:290.560000pt;}
.x16_c00159{left:311.040000pt;}
.xf_c00159{left:320.640000pt;}
.x6_c00159{left:330.240000pt;}
.x39_c00159{left:338.560000pt;}
.x17_c00159{left:339.840000pt;}
.x2b_c00159{left:348.160000pt;}
.x10_c00159{left:349.440000pt;}
.x20_c00159{left:359.040000pt;}
.x7_c00159{left:360.960000pt;}
.x2c_c00159{left:367.360000pt;}
.x3a_c00159{left:376.960000pt;}
.x11_c00159{left:378.240000pt;}
.x8_c00159{left:397.440000pt;}
.x34_c00159{left:405.760000pt;}
.x9_c00159{left:416.000000pt;}
.x3b_c00159{left:425.600000pt;}
.x2d_c00159{left:435.840000pt;}
.x18_c00159{left:446.080000pt;}
.x3c_c00159{left:464.640000pt;}
.x24_c00159{left:484.480000pt;}
.x21_c00159{left:494.080000pt;}
.x12_c00159{left:503.040000pt;}
.xa_c00159{left:516.480000pt;}
.x25_c00159{left:541.440000pt;}
.x19_c00159{left:542.720000pt;}
.x35_c00159{left:551.680000pt;}
.x26_c00159{left:570.240000pt;}
.x1a_c00159{left:571.520000pt;}
.x2e_c00159{left:580.480000pt;}
.xb_c00159{left:582.400000pt;}
.x22_c00159{left:600.320000pt;}
.x1_c00159{left:606.080000pt;}
.x2f_c00159{left:610.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7f9298ac0740e23c437add4c.woff2')format("woff");}.ff1_c00160{font-family:ff1_c00160;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m51_c00160{transform:matrix(0.210850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210850,0.000000,0.000000,0.250000,0,0);}
.m45_c00160{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m34_c00160{transform:matrix(0.247325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247325,0.000000,0.000000,0.250000,0,0);}
.m5b_c00160{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m59_c00160{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m31_c00160{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m15_c00160{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m58_c00160{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00160{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00160{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m54_c00160{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m32_c00160{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m9_c00160{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00160{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m46_c00160{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m36_c00160{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m6_c00160{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);}
.m2d_c00160{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);}
.m37_c00160{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);}
.m4a_c00160{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m27_c00160{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m24_c00160{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);}
.m2e_c00160{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00160{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);}
.m3b_c00160{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m11_c00160{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m0_c00160{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);}
.m1d_c00160{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00160{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m57_c00160{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);}
.m56_c00160{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.mf_c00160{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);}
.m48_c00160{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m12_c00160{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);}
.m10_c00160{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00160{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m1_c00160{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00160{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m18_c00160{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00160{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m2_c00160{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);}
.m19_c00160{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m55_c00160{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);}
.m14_c00160{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);}
.m33_c00160{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m20_c00160{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00160{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.md_c00160{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m16_c00160{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);}
.m7_c00160{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m23_c00160{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m30_c00160{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);}
.m41_c00160{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m26_c00160{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);}
.m5_c00160{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m25_c00160{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.mb_c00160{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);}
.m4b_c00160{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m28_c00160{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00160{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);}
.m1c_c00160{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m49_c00160{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00160{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00160{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);}
.m39_c00160{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.mc_c00160{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m43_c00160{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);}
.m35_c00160{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m21_c00160{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m4_c00160{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00160{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_c00160{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00160{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m13_c00160{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m44_c00160{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m17_c00160{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m22_c00160{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);}
.m38_c00160{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);}
.ma_c00160{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m53_c00160{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m3_c00160{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00160{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m8_c00160{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m52_c00160{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00160{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);}
.m42_c00160{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m50_c00160{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);}
.m40_c00160{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.me_c00160{transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00160{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.m47_c00160{transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);}
.m29_c00160{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_c00160{vertical-align:0.000000px;}
.ls0_c00160{letter-spacing:0.000000px;}
.sc__c00160{text-shadow:none;}
.sc0_c00160{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00160{-webkit-text-stroke:0px transparent;}
.sc0_c00160{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00160{word-spacing:-1.416240px;}
.ws1_c00160{word-spacing:0.000000px;}
.fc0_c00160{color:transparent;}
.fs4_c00160{font-size:34.560000px;}
.fs6_c00160{font-size:37.440000px;}
.fs3_c00160{font-size:40.320000px;}
.fs7_c00160{font-size:43.200000px;}
.fs8_c00160{font-size:46.080000px;}
.fs9_c00160{font-size:48.960000px;}
.fs2_c00160{font-size:51.840000px;}
.fs1_c00160{font-size:54.720000px;}
.fse_c00160{font-size:57.600000px;}
.fsd_c00160{font-size:60.480000px;}
.fsc_c00160{font-size:63.360000px;}
.fs5_c00160{font-size:66.240000px;}
.fsb_c00160{font-size:69.120000px;}
.fsa_c00160{font-size:72.000000px;}
.fs0_c00160{font-size:74.880000px;}
.y0_c00160{bottom:0.000000px;}
.y7f_c00160{bottom:36.720000px;}
.y7c_c00160{bottom:39.600000px;}
.y7a_c00160{bottom:41.760000px;}
.y7e_c00160{bottom:42.480000px;}
.y7d_c00160{bottom:43.200000px;}
.y78_c00160{bottom:43.920000px;}
.y7b_c00160{bottom:44.640000px;}
.y79_c00160{bottom:45.360000px;}
.y76_c00160{bottom:82.080000px;}
.y75_c00160{bottom:84.240000px;}
.y77_c00160{bottom:84.960000px;}
.y74_c00160{bottom:87.120000px;}
.y73_c00160{bottom:90.720000px;}
.y71_c00160{bottom:123.840000px;}
.y6d_c00160{bottom:126.000000px;}
.y72_c00160{bottom:127.440000px;}
.y70_c00160{bottom:128.160000px;}
.y6f_c00160{bottom:128.880000px;}
.y6e_c00160{bottom:129.600000px;}
.y6c_c00160{bottom:131.040000px;}
.y6a_c00160{bottom:167.040000px;}
.y6b_c00160{bottom:167.760000px;}
.y68_c00160{bottom:169.920000px;}
.y66_c00160{bottom:170.640000px;}
.y63_c00160{bottom:171.360000px;}
.y69_c00160{bottom:172.080000px;}
.y67_c00160{bottom:172.800000px;}
.y65_c00160{bottom:173.520000px;}
.y64_c00160{bottom:174.240000px;}
.y5f_c00160{bottom:210.960000px;}
.y5c_c00160{bottom:212.400000px;}
.y62_c00160{bottom:213.120000px;}
.y61_c00160{bottom:213.840000px;}
.y5e_c00160{bottom:214.560000px;}
.y60_c00160{bottom:215.280000px;}
.y5d_c00160{bottom:216.000000px;}
.y5a_c00160{bottom:254.160000px;}
.y54_c00160{bottom:254.880000px;}
.y56_c00160{bottom:255.600000px;}
.y5b_c00160{bottom:256.320000px;}
.y59_c00160{bottom:257.040000px;}
.y58_c00160{bottom:257.760000px;}
.y55_c00160{bottom:258.480000px;}
.y57_c00160{bottom:259.200000px;}
.y53_c00160{bottom:259.920000px;}
.y50_c00160{bottom:298.080000px;}
.y52_c00160{bottom:299.520000px;}
.y4f_c00160{bottom:300.240000px;}
.y51_c00160{bottom:300.960000px;}
.y4e_c00160{bottom:301.680000px;}
.y4d_c00160{bottom:352.080000px;}
.y4c_c00160{bottom:353.520000px;}
.y4b_c00160{bottom:354.240000px;}
.y49_c00160{bottom:354.960000px;}
.y4a_c00160{bottom:355.680000px;}
.y48_c00160{bottom:393.840000px;}
.y45_c00160{bottom:396.000000px;}
.y46_c00160{bottom:397.440000px;}
.y47_c00160{bottom:398.160000px;}
.y43_c00160{bottom:436.320000px;}
.y44_c00160{bottom:437.040000px;}
.y41_c00160{bottom:437.760000px;}
.y42_c00160{bottom:439.920000px;}
.y40_c00160{bottom:440.640000px;}
.y3f_c00160{bottom:480.240000px;}
.y3c_c00160{bottom:480.960000px;}
.y3d_c00160{bottom:482.400000px;}
.y3e_c00160{bottom:483.120000px;}
.y3b_c00160{bottom:483.840000px;}
.y3a_c00160{bottom:522.000000px;}
.y38_c00160{bottom:525.600000px;}
.y39_c00160{bottom:526.320000px;}
.y37_c00160{bottom:565.200000px;}
.y35_c00160{bottom:566.640000px;}
.y34_c00160{bottom:568.080000px;}
.y36_c00160{bottom:568.800000px;}
.y2f_c00160{bottom:607.680000px;}
.y30_c00160{bottom:608.400000px;}
.y33_c00160{bottom:609.120000px;}
.y31_c00160{bottom:611.280000px;}
.y32_c00160{bottom:612.000000px;}
.y2c_c00160{bottom:650.880000px;}
.y2b_c00160{bottom:651.600000px;}
.y2a_c00160{bottom:653.760000px;}
.y2d_c00160{bottom:654.480000px;}
.y2e_c00160{bottom:655.200000px;}
.y26_c00160{bottom:694.800000px;}
.y25_c00160{bottom:696.240000px;}
.y28_c00160{bottom:696.960000px;}
.y27_c00160{bottom:697.680000px;}
.y29_c00160{bottom:698.400000px;}
.y24_c00160{bottom:748.800000px;}
.y1f_c00160{bottom:792.000000px;}
.y20_c00160{bottom:792.720000px;}
.y21_c00160{bottom:793.440000px;}
.y22_c00160{bottom:794.160000px;}
.y23_c00160{bottom:794.880000px;}
.y1b_c00160{bottom:832.320000px;}
.y1a_c00160{bottom:833.760000px;}
.y1d_c00160{bottom:835.200000px;}
.y1e_c00160{bottom:837.360000px;}
.y1c_c00160{bottom:838.080000px;}
.y15_c00160{bottom:876.960000px;}
.y16_c00160{bottom:878.400000px;}
.y17_c00160{bottom:879.120000px;}
.y18_c00160{bottom:879.840000px;}
.y19_c00160{bottom:880.560000px;}
.yc_c00160{bottom:916.560000px;}
.yd_c00160{bottom:917.280000px;}
.yf_c00160{bottom:918.720000px;}
.y11_c00160{bottom:919.440000px;}
.ye_c00160{bottom:920.160000px;}
.y14_c00160{bottom:920.880000px;}
.y10_c00160{bottom:921.600000px;}
.y12_c00160{bottom:922.320000px;}
.y13_c00160{bottom:923.760000px;}
.y9_c00160{bottom:961.920000px;}
.y6_c00160{bottom:963.360000px;}
.y7_c00160{bottom:964.080000px;}
.y8_c00160{bottom:965.520000px;}
.ya_c00160{bottom:966.240000px;}
.yb_c00160{bottom:966.960000px;}
.y2_c00160{bottom:1018.080000px;}
.y3_c00160{bottom:1018.800000px;}
.y4_c00160{bottom:1019.520000px;}
.y5_c00160{bottom:1020.240000px;}
.y1_c00160{bottom:1095.120000px;}
.h6_c00160{height:31.100625px;}
.h8_c00160{height:33.692344px;}
.h5_c00160{height:36.284062px;}
.h9_c00160{height:38.875781px;}
.ha_c00160{height:41.467500px;}
.hb_c00160{height:44.059219px;}
.h4_c00160{height:46.650937px;}
.h3_c00160{height:49.242656px;}
.h10_c00160{height:51.834375px;}
.hf_c00160{height:54.426094px;}
.he_c00160{height:57.017812px;}
.h7_c00160{height:59.609531px;}
.hd_c00160{height:62.201250px;}
.hc_c00160{height:64.792969px;}
.h2_c00160{height:67.384687px;}
.h1_c00160{height:1151.250000px;}
.h0_c00160{height:1151.280000px;}
.w1_c00160{width:791.250000px;}
.w0_c00160{width:791.280000px;}
.x0_c00160{left:0.000000px;}
.xf_c00160{left:62.640000px;}
.x1b_c00160{left:64.080000px;}
.x51_c00160{left:65.520000px;}
.x10_c00160{left:93.600000px;}
.x26_c00160{left:95.040000px;}
.x40_c00160{left:105.840000px;}
.x1c_c00160{left:115.200000px;}
.x36_c00160{left:116.640000px;}
.x11_c00160{left:126.720000px;}
.x50_c00160{left:138.240000px;}
.x22_c00160{left:146.880000px;}
.x30_c00160{left:158.400000px;}
.x7_c00160{left:168.480000px;}
.x45_c00160{left:169.920000px;}
.x41_c00160{left:179.280000px;}
.x1d_c00160{left:191.520000px;}
.x2_c00160{left:200.880000px;}
.x8_c00160{left:202.320000px;}
.x37_c00160{left:210.240000px;}
.x12_c00160{left:211.680000px;}
.x4c_c00160{left:213.120000px;}
.x42_c00160{left:223.920000px;}
.x13_c00160{left:233.280000px;}
.x3c_c00160{left:254.880000px;}
.x33_c00160{left:265.680000px;}
.x14_c00160{left:276.480000px;}
.x2c_c00160{left:287.280000px;}
.x3d_c00160{left:297.360000px;}
.x4e_c00160{left:298.800000px;}
.x1e_c00160{left:307.440000px;}
.x15_c00160{left:308.880000px;}
.x9_c00160{left:319.680000px;}
.x27_c00160{left:330.480000px;}
.x3_c00160{left:341.280000px;}
.xa_c00160{left:352.080000px;}
.x28_c00160{left:362.160000px;}
.x4b_c00160{left:364.320000px;}
.x1f_c00160{left:374.400000px;}
.x2d_c00160{left:385.200000px;}
.x23_c00160{left:395.280000px;}
.x4_c00160{left:406.080000px;}
.x34_c00160{left:407.520000px;}
.x16_c00160{left:417.600000px;}
.x52_c00160{left:419.040000px;}
.x31_c00160{left:426.960000px;}
.x48_c00160{left:428.400000px;}
.x5_c00160{left:439.200000px;}
.x53_c00160{left:449.280000px;}
.x29_c00160{left:450.720000px;}
.xb_c00160{left:460.800000px;}
.x17_c00160{left:471.600000px;}
.x4f_c00160{left:483.840000px;}
.x6_c00160{left:492.480000px;}
.x38_c00160{left:493.920000px;}
.x2e_c00160{left:502.560000px;}
.x3e_c00160{left:504.000000px;}
.x20_c00160{left:514.800000px;}
.x46_c00160{left:516.240000px;}
.x3f_c00160{left:524.880000px;}
.x24_c00160{left:526.320000px;}
.xc_c00160{left:536.400000px;}
.x43_c00160{left:537.840000px;}
.x39_c00160{left:546.480000px;}
.x47_c00160{left:548.640000px;}
.x18_c00160{left:558.000000px;}
.x35_c00160{left:559.440000px;}
.x2a_c00160{left:569.520000px;}
.x44_c00160{left:571.680000px;}
.x21_c00160{left:579.600000px;}
.x49_c00160{left:581.040000px;}
.x19_c00160{left:591.120000px;}
.x25_c00160{left:602.640000px;}
.xd_c00160{left:623.520000px;}
.x32_c00160{left:624.960000px;}
.x1a_c00160{left:634.320000px;}
.x4a_c00160{left:635.760000px;}
.x3a_c00160{left:646.560000px;}
.xe_c00160{left:667.440000px;}
.x3b_c00160{left:678.240000px;}
.x1_c00160{left:681.120000px;}
.x2b_c00160{left:689.040000px;}
.x2f_c00160{left:690.480000px;}
.x4d_c00160{left:701.280000px;}
@media print{
.v0_c00160{vertical-align:0.000000pt;}
.ls0_c00160{letter-spacing:0.000000pt;}
.ws0_c00160{word-spacing:-1.258880pt;}
.ws1_c00160{word-spacing:0.000000pt;}
.fs4_c00160{font-size:30.720000pt;}
.fs6_c00160{font-size:33.280000pt;}
.fs3_c00160{font-size:35.840000pt;}
.fs7_c00160{font-size:38.400000pt;}
.fs8_c00160{font-size:40.960000pt;}
.fs9_c00160{font-size:43.520000pt;}
.fs2_c00160{font-size:46.080000pt;}
.fs1_c00160{font-size:48.640000pt;}
.fse_c00160{font-size:51.200000pt;}
.fsd_c00160{font-size:53.760000pt;}
.fsc_c00160{font-size:56.320000pt;}
.fs5_c00160{font-size:58.880000pt;}
.fsb_c00160{font-size:61.440000pt;}
.fsa_c00160{font-size:64.000000pt;}
.fs0_c00160{font-size:66.560000pt;}
.y0_c00160{bottom:0.000000pt;}
.y7f_c00160{bottom:32.640000pt;}
.y7c_c00160{bottom:35.200000pt;}
.y7a_c00160{bottom:37.120000pt;}
.y7e_c00160{bottom:37.760000pt;}
.y7d_c00160{bottom:38.400000pt;}
.y78_c00160{bottom:39.040000pt;}
.y7b_c00160{bottom:39.680000pt;}
.y79_c00160{bottom:40.320000pt;}
.y76_c00160{bottom:72.960000pt;}
.y75_c00160{bottom:74.880000pt;}
.y77_c00160{bottom:75.520000pt;}
.y74_c00160{bottom:77.440000pt;}
.y73_c00160{bottom:80.640000pt;}
.y71_c00160{bottom:110.080000pt;}
.y6d_c00160{bottom:112.000000pt;}
.y72_c00160{bottom:113.280000pt;}
.y70_c00160{bottom:113.920000pt;}
.y6f_c00160{bottom:114.560000pt;}
.y6e_c00160{bottom:115.200000pt;}
.y6c_c00160{bottom:116.480000pt;}
.y6a_c00160{bottom:148.480000pt;}
.y6b_c00160{bottom:149.120000pt;}
.y68_c00160{bottom:151.040000pt;}
.y66_c00160{bottom:151.680000pt;}
.y63_c00160{bottom:152.320000pt;}
.y69_c00160{bottom:152.960000pt;}
.y67_c00160{bottom:153.600000pt;}
.y65_c00160{bottom:154.240000pt;}
.y64_c00160{bottom:154.880000pt;}
.y5f_c00160{bottom:187.520000pt;}
.y5c_c00160{bottom:188.800000pt;}
.y62_c00160{bottom:189.440000pt;}
.y61_c00160{bottom:190.080000pt;}
.y5e_c00160{bottom:190.720000pt;}
.y60_c00160{bottom:191.360000pt;}
.y5d_c00160{bottom:192.000000pt;}
.y5a_c00160{bottom:225.920000pt;}
.y54_c00160{bottom:226.560000pt;}
.y56_c00160{bottom:227.200000pt;}
.y5b_c00160{bottom:227.840000pt;}
.y59_c00160{bottom:228.480000pt;}
.y58_c00160{bottom:229.120000pt;}
.y55_c00160{bottom:229.760000pt;}
.y57_c00160{bottom:230.400000pt;}
.y53_c00160{bottom:231.040000pt;}
.y50_c00160{bottom:264.960000pt;}
.y52_c00160{bottom:266.240000pt;}
.y4f_c00160{bottom:266.880000pt;}
.y51_c00160{bottom:267.520000pt;}
.y4e_c00160{bottom:268.160000pt;}
.y4d_c00160{bottom:312.960000pt;}
.y4c_c00160{bottom:314.240000pt;}
.y4b_c00160{bottom:314.880000pt;}
.y49_c00160{bottom:315.520000pt;}
.y4a_c00160{bottom:316.160000pt;}
.y48_c00160{bottom:350.080000pt;}
.y45_c00160{bottom:352.000000pt;}
.y46_c00160{bottom:353.280000pt;}
.y47_c00160{bottom:353.920000pt;}
.y43_c00160{bottom:387.840000pt;}
.y44_c00160{bottom:388.480000pt;}
.y41_c00160{bottom:389.120000pt;}
.y42_c00160{bottom:391.040000pt;}
.y40_c00160{bottom:391.680000pt;}
.y3f_c00160{bottom:426.880000pt;}
.y3c_c00160{bottom:427.520000pt;}
.y3d_c00160{bottom:428.800000pt;}
.y3e_c00160{bottom:429.440000pt;}
.y3b_c00160{bottom:430.080000pt;}
.y3a_c00160{bottom:464.000000pt;}
.y38_c00160{bottom:467.200000pt;}
.y39_c00160{bottom:467.840000pt;}
.y37_c00160{bottom:502.400000pt;}
.y35_c00160{bottom:503.680000pt;}
.y34_c00160{bottom:504.960000pt;}
.y36_c00160{bottom:505.600000pt;}
.y2f_c00160{bottom:540.160000pt;}
.y30_c00160{bottom:540.800000pt;}
.y33_c00160{bottom:541.440000pt;}
.y31_c00160{bottom:543.360000pt;}
.y32_c00160{bottom:544.000000pt;}
.y2c_c00160{bottom:578.560000pt;}
.y2b_c00160{bottom:579.200000pt;}
.y2a_c00160{bottom:581.120000pt;}
.y2d_c00160{bottom:581.760000pt;}
.y2e_c00160{bottom:582.400000pt;}
.y26_c00160{bottom:617.600000pt;}
.y25_c00160{bottom:618.880000pt;}
.y28_c00160{bottom:619.520000pt;}
.y27_c00160{bottom:620.160000pt;}
.y29_c00160{bottom:620.800000pt;}
.y24_c00160{bottom:665.600000pt;}
.y1f_c00160{bottom:704.000000pt;}
.y20_c00160{bottom:704.640000pt;}
.y21_c00160{bottom:705.280000pt;}
.y22_c00160{bottom:705.920000pt;}
.y23_c00160{bottom:706.560000pt;}
.y1b_c00160{bottom:739.840000pt;}
.y1a_c00160{bottom:741.120000pt;}
.y1d_c00160{bottom:742.400000pt;}
.y1e_c00160{bottom:744.320000pt;}
.y1c_c00160{bottom:744.960000pt;}
.y15_c00160{bottom:779.520000pt;}
.y16_c00160{bottom:780.800000pt;}
.y17_c00160{bottom:781.440000pt;}
.y18_c00160{bottom:782.080000pt;}
.y19_c00160{bottom:782.720000pt;}
.yc_c00160{bottom:814.720000pt;}
.yd_c00160{bottom:815.360000pt;}
.yf_c00160{bottom:816.640000pt;}
.y11_c00160{bottom:817.280000pt;}
.ye_c00160{bottom:817.920000pt;}
.y14_c00160{bottom:818.560000pt;}
.y10_c00160{bottom:819.200000pt;}
.y12_c00160{bottom:819.840000pt;}
.y13_c00160{bottom:821.120000pt;}
.y9_c00160{bottom:855.040000pt;}
.y6_c00160{bottom:856.320000pt;}
.y7_c00160{bottom:856.960000pt;}
.y8_c00160{bottom:858.240000pt;}
.ya_c00160{bottom:858.880000pt;}
.yb_c00160{bottom:859.520000pt;}
.y2_c00160{bottom:904.960000pt;}
.y3_c00160{bottom:905.600000pt;}
.y4_c00160{bottom:906.240000pt;}
.y5_c00160{bottom:906.880000pt;}
.y1_c00160{bottom:973.440000pt;}
.h6_c00160{height:27.645000pt;}
.h8_c00160{height:29.948750pt;}
.h5_c00160{height:32.252500pt;}
.h9_c00160{height:34.556250pt;}
.ha_c00160{height:36.860000pt;}
.hb_c00160{height:39.163750pt;}
.h4_c00160{height:41.467500pt;}
.h3_c00160{height:43.771250pt;}
.h10_c00160{height:46.075000pt;}
.hf_c00160{height:48.378750pt;}
.he_c00160{height:50.682500pt;}
.h7_c00160{height:52.986250pt;}
.hd_c00160{height:55.290000pt;}
.hc_c00160{height:57.593750pt;}
.h2_c00160{height:59.897500pt;}
.h1_c00160{height:1023.333333pt;}
.h0_c00160{height:1023.360000pt;}
.w1_c00160{width:703.333333pt;}
.w0_c00160{width:703.360000pt;}
.x0_c00160{left:0.000000pt;}
.xf_c00160{left:55.680000pt;}
.x1b_c00160{left:56.960000pt;}
.x51_c00160{left:58.240000pt;}
.x10_c00160{left:83.200000pt;}
.x26_c00160{left:84.480000pt;}
.x40_c00160{left:94.080000pt;}
.x1c_c00160{left:102.400000pt;}
.x36_c00160{left:103.680000pt;}
.x11_c00160{left:112.640000pt;}
.x50_c00160{left:122.880000pt;}
.x22_c00160{left:130.560000pt;}
.x30_c00160{left:140.800000pt;}
.x7_c00160{left:149.760000pt;}
.x45_c00160{left:151.040000pt;}
.x41_c00160{left:159.360000pt;}
.x1d_c00160{left:170.240000pt;}
.x2_c00160{left:178.560000pt;}
.x8_c00160{left:179.840000pt;}
.x37_c00160{left:186.880000pt;}
.x12_c00160{left:188.160000pt;}
.x4c_c00160{left:189.440000pt;}
.x42_c00160{left:199.040000pt;}
.x13_c00160{left:207.360000pt;}
.x3c_c00160{left:226.560000pt;}
.x33_c00160{left:236.160000pt;}
.x14_c00160{left:245.760000pt;}
.x2c_c00160{left:255.360000pt;}
.x3d_c00160{left:264.320000pt;}
.x4e_c00160{left:265.600000pt;}
.x1e_c00160{left:273.280000pt;}
.x15_c00160{left:274.560000pt;}
.x9_c00160{left:284.160000pt;}
.x27_c00160{left:293.760000pt;}
.x3_c00160{left:303.360000pt;}
.xa_c00160{left:312.960000pt;}
.x28_c00160{left:321.920000pt;}
.x4b_c00160{left:323.840000pt;}
.x1f_c00160{left:332.800000pt;}
.x2d_c00160{left:342.400000pt;}
.x23_c00160{left:351.360000pt;}
.x4_c00160{left:360.960000pt;}
.x34_c00160{left:362.240000pt;}
.x16_c00160{left:371.200000pt;}
.x52_c00160{left:372.480000pt;}
.x31_c00160{left:379.520000pt;}
.x48_c00160{left:380.800000pt;}
.x5_c00160{left:390.400000pt;}
.x53_c00160{left:399.360000pt;}
.x29_c00160{left:400.640000pt;}
.xb_c00160{left:409.600000pt;}
.x17_c00160{left:419.200000pt;}
.x4f_c00160{left:430.080000pt;}
.x6_c00160{left:437.760000pt;}
.x38_c00160{left:439.040000pt;}
.x2e_c00160{left:446.720000pt;}
.x3e_c00160{left:448.000000pt;}
.x20_c00160{left:457.600000pt;}
.x46_c00160{left:458.880000pt;}
.x3f_c00160{left:466.560000pt;}
.x24_c00160{left:467.840000pt;}
.xc_c00160{left:476.800000pt;}
.x43_c00160{left:478.080000pt;}
.x39_c00160{left:485.760000pt;}
.x47_c00160{left:487.680000pt;}
.x18_c00160{left:496.000000pt;}
.x35_c00160{left:497.280000pt;}
.x2a_c00160{left:506.240000pt;}
.x44_c00160{left:508.160000pt;}
.x21_c00160{left:515.200000pt;}
.x49_c00160{left:516.480000pt;}
.x19_c00160{left:525.440000pt;}
.x25_c00160{left:535.680000pt;}
.xd_c00160{left:554.240000pt;}
.x32_c00160{left:555.520000pt;}
.x1a_c00160{left:563.840000pt;}
.x4a_c00160{left:565.120000pt;}
.x3a_c00160{left:574.720000pt;}
.xe_c00160{left:593.280000pt;}
.x3b_c00160{left:602.880000pt;}
.x1_c00160{left:605.440000pt;}
.x2b_c00160{left:612.480000pt;}
.x2f_c00160{left:613.760000pt;}
.x4d_c00160{left:623.360000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_af91541e9cd5f712b22759b6.woff2')format("woff");}.ff1_c00161{font-family:ff1_c00161;line-height:1.109863;font-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_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);}
.m14_c00161{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00161{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);}
.m58_c00161{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m55_c00161{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m32_c00161{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00161{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m40_c00161{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m51_c00161{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00161{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m49_c00161{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m44_c00161{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m41_c00161{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m0_c00161{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00161{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);}
.m5e_c00161{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m10_c00161{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);}
.m24_c00161{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m20_c00161{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00161{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m6_c00161{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.mf_c00161{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m1_c00161{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m57_c00161{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00161{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00161{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);}
.m2c_c00161{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);}
.ma_c00161{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m25_c00161{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m21_c00161{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);}
.m4c_c00161{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);}
.m27_c00161{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m18_c00161{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00161{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);}
.m53_c00161{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m4_c00161{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00161{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.md_c00161{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m31_c00161{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00161{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00161{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);}
.mb_c00161{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00161{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);}
.m36_c00161{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);}
.m8_c00161{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m22_c00161{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m43_c00161{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00161{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m60_c00161{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);}
.m29_c00161{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m45_c00161{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m11_c00161{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00161{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);}
.m30_c00161{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00161{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m48_c00161{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m33_c00161{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);}
.m4a_c00161{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00161{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00161{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);}
.m1f_c00161{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m35_c00161{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m2_c00161{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.mc_c00161{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m19_c00161{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m9_c00161{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);}
.m4e_c00161{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);}
.m3_c00161{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m16_c00161{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m28_c00161{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m13_c00161{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);}
.m12_c00161{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.me_c00161{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00161{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m38_c00161{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m54_c00161{transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);}
.m5_c00161{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00161{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m59_c00161{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00161{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m56_c00161{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);}
.m42_c00161{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m23_c00161{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00161{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);}
.m1c_c00161{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);}
.m15_c00161{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00161{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m46_c00161{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00161{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m7_c00161{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);}
.m26_c00161{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);}
.m34_c00161{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m50_c00161{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m47_c00161{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m37_c00161{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m52_c00161{transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);}
.m39_c00161{transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);}
.v0_c00161{vertical-align:0.000000px;}
.ls0_c00161{letter-spacing:0.000000px;}
.sc__c00161{text-shadow:none;}
.sc0_c00161{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00161{-webkit-text-stroke:0px transparent;}
.sc0_c00161{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00161{word-spacing:0.000000px;}
.fc0_c00161{color:transparent;}
.fs7_c00161{font-size:34.560000px;}
.fs5_c00161{font-size:37.440000px;}
.fs9_c00161{font-size:40.320000px;}
.fsf_c00161{font-size:43.200000px;}
.fs2_c00161{font-size:46.080000px;}
.fs4_c00161{font-size:48.960000px;}
.fs3_c00161{font-size:51.840000px;}
.fsc_c00161{font-size:54.720000px;}
.fsd_c00161{font-size:57.600000px;}
.fs8_c00161{font-size:60.480000px;}
.fsa_c00161{font-size:63.360000px;}
.fs1_c00161{font-size:66.240000px;}
.fs6_c00161{font-size:69.120000px;}
.fse_c00161{font-size:72.000000px;}
.fsb_c00161{font-size:74.880000px;}
.fs0_c00161{font-size:77.760000px;}
.y0_c00161{bottom:0.000000px;}
.y8b_c00161{bottom:58.320000px;}
.y88_c00161{bottom:61.920000px;}
.y8a_c00161{bottom:62.640000px;}
.y86_c00161{bottom:63.360000px;}
.y89_c00161{bottom:64.080000px;}
.y87_c00161{bottom:64.800000px;}
.y85_c00161{bottom:65.520000px;}
.y84_c00161{bottom:69.120000px;}
.y82_c00161{bottom:103.680000px;}
.y81_c00161{bottom:104.400000px;}
.y7f_c00161{bottom:105.120000px;}
.y83_c00161{bottom:105.840000px;}
.y7d_c00161{bottom:106.560000px;}
.y80_c00161{bottom:107.280000px;}
.y7e_c00161{bottom:108.720000px;}
.y7c_c00161{bottom:110.880000px;}
.y7b_c00161{bottom:146.160000px;}
.y79_c00161{bottom:147.600000px;}
.y78_c00161{bottom:148.320000px;}
.y77_c00161{bottom:149.040000px;}
.y7a_c00161{bottom:151.200000px;}
.y76_c00161{bottom:153.360000px;}
.y75_c00161{bottom:155.520000px;}
.y74_c00161{bottom:189.360000px;}
.y71_c00161{bottom:190.800000px;}
.y73_c00161{bottom:191.520000px;}
.y70_c00161{bottom:192.240000px;}
.y72_c00161{bottom:192.960000px;}
.y6f_c00161{bottom:194.400000px;}
.y6e_c00161{bottom:195.120000px;}
.y6d_c00161{bottom:197.280000px;}
.y6c_c00161{bottom:234.000000px;}
.y6b_c00161{bottom:235.440000px;}
.y69_c00161{bottom:236.160000px;}
.y6a_c00161{bottom:238.320000px;}
.y68_c00161{bottom:275.760000px;}
.y66_c00161{bottom:276.480000px;}
.y64_c00161{bottom:277.920000px;}
.y67_c00161{bottom:278.640000px;}
.y65_c00161{bottom:279.360000px;}
.y63_c00161{bottom:280.800000px;}
.y62_c00161{bottom:282.240000px;}
.y5f_c00161{bottom:317.520000px;}
.y60_c00161{bottom:318.240000px;}
.y5d_c00161{bottom:318.960000px;}
.y61_c00161{bottom:320.400000px;}
.y5e_c00161{bottom:321.120000px;}
.y5c_c00161{bottom:321.840000px;}
.y5b_c00161{bottom:322.560000px;}
.y5a_c00161{bottom:324.000000px;}
.y56_c00161{bottom:360.720000px;}
.y54_c00161{bottom:361.440000px;}
.y57_c00161{bottom:362.160000px;}
.y59_c00161{bottom:363.600000px;}
.y58_c00161{bottom:364.320000px;}
.y55_c00161{bottom:365.040000px;}
.y53_c00161{bottom:365.760000px;}
.y52_c00161{bottom:366.480000px;}
.y51_c00161{bottom:403.200000px;}
.y4e_c00161{bottom:404.640000px;}
.y50_c00161{bottom:406.800000px;}
.y4f_c00161{bottom:407.520000px;}
.y4d_c00161{bottom:408.240000px;}
.y4c_c00161{bottom:408.960000px;}
.y4b_c00161{bottom:449.280000px;}
.y48_c00161{bottom:450.000000px;}
.y4a_c00161{bottom:450.720000px;}
.y49_c00161{bottom:451.440000px;}
.y46_c00161{bottom:490.320000px;}
.y43_c00161{bottom:491.040000px;}
.y47_c00161{bottom:492.480000px;}
.y44_c00161{bottom:493.200000px;}
.y45_c00161{bottom:493.920000px;}
.y40_c00161{bottom:532.800000px;}
.y42_c00161{bottom:533.520000px;}
.y41_c00161{bottom:536.400000px;}
.y3f_c00161{bottom:537.120000px;}
.y3e_c00161{bottom:537.840000px;}
.y3a_c00161{bottom:586.080000px;}
.y39_c00161{bottom:587.520000px;}
.y3d_c00161{bottom:588.960000px;}
.y3c_c00161{bottom:589.680000px;}
.y3b_c00161{bottom:590.400000px;}
.y38_c00161{bottom:629.280000px;}
.y35_c00161{bottom:630.720000px;}
.y37_c00161{bottom:632.160000px;}
.y36_c00161{bottom:632.880000px;}
.y31_c00161{bottom:672.480000px;}
.y32_c00161{bottom:673.200000px;}
.y30_c00161{bottom:674.640000px;}
.y33_c00161{bottom:675.360000px;}
.y34_c00161{bottom:676.080000px;}
.y2f_c00161{bottom:715.680000px;}
.y2b_c00161{bottom:717.120000px;}
.y2c_c00161{bottom:717.840000px;}
.y2d_c00161{bottom:718.560000px;}
.y2e_c00161{bottom:719.280000px;}
.y27_c00161{bottom:757.440000px;}
.y28_c00161{bottom:758.160000px;}
.y25_c00161{bottom:760.320000px;}
.y26_c00161{bottom:761.040000px;}
.y29_c00161{bottom:761.760000px;}
.y2a_c00161{bottom:762.480000px;}
.y20_c00161{bottom:800.640000px;}
.y23_c00161{bottom:801.360000px;}
.y24_c00161{bottom:802.080000px;}
.y1e_c00161{bottom:802.800000px;}
.y1f_c00161{bottom:803.520000px;}
.y21_c00161{bottom:804.240000px;}
.y22_c00161{bottom:804.960000px;}
.y17_c00161{bottom:842.400000px;}
.y1a_c00161{bottom:843.840000px;}
.y1b_c00161{bottom:844.560000px;}
.y18_c00161{bottom:846.000000px;}
.y19_c00161{bottom:846.720000px;}
.y1d_c00161{bottom:847.440000px;}
.y1c_c00161{bottom:848.160000px;}
.y13_c00161{bottom:885.600000px;}
.y15_c00161{bottom:887.040000px;}
.y12_c00161{bottom:887.760000px;}
.y14_c00161{bottom:889.920000px;}
.y16_c00161{bottom:890.640000px;}
.yd_c00161{bottom:928.080000px;}
.y10_c00161{bottom:929.520000px;}
.ye_c00161{bottom:931.680000px;}
.yf_c00161{bottom:932.400000px;}
.y11_c00161{bottom:933.120000px;}
.yb_c00161{bottom:972.000000px;}
.y9_c00161{bottom:972.720000px;}
.ya_c00161{bottom:974.160000px;}
.yc_c00161{bottom:976.320000px;}
.y2_c00161{bottom:1013.040000px;}
.y3_c00161{bottom:1014.480000px;}
.y5_c00161{bottom:1015.200000px;}
.y7_c00161{bottom:1016.640000px;}
.y4_c00161{bottom:1017.360000px;}
.y6_c00161{bottom:1018.800000px;}
.y8_c00161{bottom:1019.520000px;}
.y1_c00161{bottom:1080.000000px;}
.h9_c00161{height:31.100625px;}
.h7_c00161{height:33.692344px;}
.hb_c00161{height:36.284062px;}
.h11_c00161{height:38.875781px;}
.h4_c00161{height:41.467500px;}
.h6_c00161{height:44.059219px;}
.h5_c00161{height:46.650937px;}
.he_c00161{height:49.242656px;}
.hf_c00161{height:51.834375px;}
.ha_c00161{height:54.426094px;}
.hc_c00161{height:57.017812px;}
.h3_c00161{height:59.609531px;}
.h8_c00161{height:62.201250px;}
.h10_c00161{height:64.792969px;}
.hd_c00161{height:67.384687px;}
.h2_c00161{height:69.976406px;}
.h0_c00161{height:1153.440000px;}
.h1_c00161{height:1153.500000px;}
.w0_c00161{width:794.880000px;}
.w1_c00161{width:795.000000px;}
.x0_c00161{left:0.000000px;}
.xc_c00161{left:62.640000px;}
.x2_c00161{left:64.800000px;}
.x57_c00161{left:66.960000px;}
.x1b_c00161{left:85.680000px;}
.x3f_c00161{left:95.040000px;}
.x53_c00161{left:96.480000px;}
.x28_c00161{left:105.840000px;}
.x1c_c00161{left:116.640000px;}
.xd_c00161{left:126.720000px;}
.x54_c00161{left:128.160000px;}
.x13_c00161{left:137.520000px;}
.x29_c00161{left:148.320000px;}
.x39_c00161{left:158.400000px;}
.x34_c00161{left:159.840000px;}
.x48_c00161{left:164.160000px;}
.x2e_c00161{left:169.200000px;}
.x22_c00161{left:171.360000px;}
.x35_c00161{left:180.720000px;}
.x52_c00161{left:190.080000px;}
.x3_c00161{left:191.520000px;}
.x1d_c00161{left:201.600000px;}
.x4_c00161{left:212.400000px;}
.x14_c00161{left:213.840000px;}
.x23_c00161{left:222.480000px;}
.x2a_c00161{left:234.000000px;}
.x15_c00161{left:244.800000px;}
.x49_c00161{left:255.600000px;}
.x2b_c00161{left:265.680000px;}
.x42_c00161{left:267.120000px;}
.x4f_c00161{left:277.200000px;}
.x1e_c00161{left:288.000000px;}
.x16_c00161{left:289.440000px;}
.xe_c00161{left:298.800000px;}
.x5_c00161{left:309.600000px;}
.xf_c00161{left:320.400000px;}
.x40_c00161{left:331.200000px;}
.x2f_c00161{left:342.720000px;}
.x17_c00161{left:352.080000px;}
.x6_c00161{left:353.520000px;}
.x36_c00161{left:362.880000px;}
.x3a_c00161{left:364.320000px;}
.x30_c00161{left:374.400000px;}
.x10_c00161{left:375.840000px;}
.x24_c00161{left:385.200000px;}
.x7_c00161{left:387.360000px;}
.x18_c00161{left:395.280000px;}
.x3b_c00161{left:396.720000px;}
.x43_c00161{left:406.080000px;}
.x51_c00161{left:408.240000px;}
.x50_c00161{left:417.600000px;}
.x37_c00161{left:419.040000px;}
.x4a_c00161{left:427.680000px;}
.x25_c00161{left:429.120000px;}
.x58_c00161{left:440.640000px;}
.x2c_c00161{left:450.000000px;}
.x41_c00161{left:451.440000px;}
.x3c_c00161{left:461.520000px;}
.x31_c00161{left:470.880000px;}
.x8_c00161{left:473.040000px;}
.x1f_c00161{left:483.840000px;}
.x11_c00161{left:493.920000px;}
.x9_c00161{left:505.440000px;}
.x4d_c00161{left:514.800000px;}
.x20_c00161{left:516.240000px;}
.x55_c00161{left:536.400000px;}
.x4e_c00161{left:547.200000px;}
.x19_c00161{left:548.640000px;}
.x12_c00161{left:559.440000px;}
.x44_c00161{left:569.520000px;}
.x1a_c00161{left:581.760000px;}
.x26_c00161{left:591.840000px;}
.x4c_c00161{left:593.280000px;}
.x38_c00161{left:601.920000px;}
.x3d_c00161{left:604.800000px;}
.x4b_c00161{left:612.000000px;}
.xa_c00161{left:614.160000px;}
.x3e_c00161{left:635.040000px;}
.x56_c00161{left:636.480000px;}
.x32_c00161{left:645.840000px;}
.x27_c00161{left:647.280000px;}
.x46_c00161{left:657.360000px;}
.xb_c00161{left:668.880000px;}
.x1_c00161{left:678.240000px;}
.x33_c00161{left:679.680000px;}
.x47_c00161{left:689.040000px;}
.x2d_c00161{left:690.480000px;}
.x21_c00161{left:700.560000px;}
.x45_c00161{left:711.360000px;}
@media print{
.v0_c00161{vertical-align:0.000000pt;}
.ls0_c00161{letter-spacing:0.000000pt;}
.ws0_c00161{word-spacing:0.000000pt;}
.fs7_c00161{font-size:30.720000pt;}
.fs5_c00161{font-size:33.280000pt;}
.fs9_c00161{font-size:35.840000pt;}
.fsf_c00161{font-size:38.400000pt;}
.fs2_c00161{font-size:40.960000pt;}
.fs4_c00161{font-size:43.520000pt;}
.fs3_c00161{font-size:46.080000pt;}
.fsc_c00161{font-size:48.640000pt;}
.fsd_c00161{font-size:51.200000pt;}
.fs8_c00161{font-size:53.760000pt;}
.fsa_c00161{font-size:56.320000pt;}
.fs1_c00161{font-size:58.880000pt;}
.fs6_c00161{font-size:61.440000pt;}
.fse_c00161{font-size:64.000000pt;}
.fsb_c00161{font-size:66.560000pt;}
.fs0_c00161{font-size:69.120000pt;}
.y0_c00161{bottom:0.000000pt;}
.y8b_c00161{bottom:51.840000pt;}
.y88_c00161{bottom:55.040000pt;}
.y8a_c00161{bottom:55.680000pt;}
.y86_c00161{bottom:56.320000pt;}
.y89_c00161{bottom:56.960000pt;}
.y87_c00161{bottom:57.600000pt;}
.y85_c00161{bottom:58.240000pt;}
.y84_c00161{bottom:61.440000pt;}
.y82_c00161{bottom:92.160000pt;}
.y81_c00161{bottom:92.800000pt;}
.y7f_c00161{bottom:93.440000pt;}
.y83_c00161{bottom:94.080000pt;}
.y7d_c00161{bottom:94.720000pt;}
.y80_c00161{bottom:95.360000pt;}
.y7e_c00161{bottom:96.640000pt;}
.y7c_c00161{bottom:98.560000pt;}
.y7b_c00161{bottom:129.920000pt;}
.y79_c00161{bottom:131.200000pt;}
.y78_c00161{bottom:131.840000pt;}
.y77_c00161{bottom:132.480000pt;}
.y7a_c00161{bottom:134.400000pt;}
.y76_c00161{bottom:136.320000pt;}
.y75_c00161{bottom:138.240000pt;}
.y74_c00161{bottom:168.320000pt;}
.y71_c00161{bottom:169.600000pt;}
.y73_c00161{bottom:170.240000pt;}
.y70_c00161{bottom:170.880000pt;}
.y72_c00161{bottom:171.520000pt;}
.y6f_c00161{bottom:172.800000pt;}
.y6e_c00161{bottom:173.440000pt;}
.y6d_c00161{bottom:175.360000pt;}
.y6c_c00161{bottom:208.000000pt;}
.y6b_c00161{bottom:209.280000pt;}
.y69_c00161{bottom:209.920000pt;}
.y6a_c00161{bottom:211.840000pt;}
.y68_c00161{bottom:245.120000pt;}
.y66_c00161{bottom:245.760000pt;}
.y64_c00161{bottom:247.040000pt;}
.y67_c00161{bottom:247.680000pt;}
.y65_c00161{bottom:248.320000pt;}
.y63_c00161{bottom:249.600000pt;}
.y62_c00161{bottom:250.880000pt;}
.y5f_c00161{bottom:282.240000pt;}
.y60_c00161{bottom:282.880000pt;}
.y5d_c00161{bottom:283.520000pt;}
.y61_c00161{bottom:284.800000pt;}
.y5e_c00161{bottom:285.440000pt;}
.y5c_c00161{bottom:286.080000pt;}
.y5b_c00161{bottom:286.720000pt;}
.y5a_c00161{bottom:288.000000pt;}
.y56_c00161{bottom:320.640000pt;}
.y54_c00161{bottom:321.280000pt;}
.y57_c00161{bottom:321.920000pt;}
.y59_c00161{bottom:323.200000pt;}
.y58_c00161{bottom:323.840000pt;}
.y55_c00161{bottom:324.480000pt;}
.y53_c00161{bottom:325.120000pt;}
.y52_c00161{bottom:325.760000pt;}
.y51_c00161{bottom:358.400000pt;}
.y4e_c00161{bottom:359.680000pt;}
.y50_c00161{bottom:361.600000pt;}
.y4f_c00161{bottom:362.240000pt;}
.y4d_c00161{bottom:362.880000pt;}
.y4c_c00161{bottom:363.520000pt;}
.y4b_c00161{bottom:399.360000pt;}
.y48_c00161{bottom:400.000000pt;}
.y4a_c00161{bottom:400.640000pt;}
.y49_c00161{bottom:401.280000pt;}
.y46_c00161{bottom:435.840000pt;}
.y43_c00161{bottom:436.480000pt;}
.y47_c00161{bottom:437.760000pt;}
.y44_c00161{bottom:438.400000pt;}
.y45_c00161{bottom:439.040000pt;}
.y40_c00161{bottom:473.600000pt;}
.y42_c00161{bottom:474.240000pt;}
.y41_c00161{bottom:476.800000pt;}
.y3f_c00161{bottom:477.440000pt;}
.y3e_c00161{bottom:478.080000pt;}
.y3a_c00161{bottom:520.960000pt;}
.y39_c00161{bottom:522.240000pt;}
.y3d_c00161{bottom:523.520000pt;}
.y3c_c00161{bottom:524.160000pt;}
.y3b_c00161{bottom:524.800000pt;}
.y38_c00161{bottom:559.360000pt;}
.y35_c00161{bottom:560.640000pt;}
.y37_c00161{bottom:561.920000pt;}
.y36_c00161{bottom:562.560000pt;}
.y31_c00161{bottom:597.760000pt;}
.y32_c00161{bottom:598.400000pt;}
.y30_c00161{bottom:599.680000pt;}
.y33_c00161{bottom:600.320000pt;}
.y34_c00161{bottom:600.960000pt;}
.y2f_c00161{bottom:636.160000pt;}
.y2b_c00161{bottom:637.440000pt;}
.y2c_c00161{bottom:638.080000pt;}
.y2d_c00161{bottom:638.720000pt;}
.y2e_c00161{bottom:639.360000pt;}
.y27_c00161{bottom:673.280000pt;}
.y28_c00161{bottom:673.920000pt;}
.y25_c00161{bottom:675.840000pt;}
.y26_c00161{bottom:676.480000pt;}
.y29_c00161{bottom:677.120000pt;}
.y2a_c00161{bottom:677.760000pt;}
.y20_c00161{bottom:711.680000pt;}
.y23_c00161{bottom:712.320000pt;}
.y24_c00161{bottom:712.960000pt;}
.y1e_c00161{bottom:713.600000pt;}
.y1f_c00161{bottom:714.240000pt;}
.y21_c00161{bottom:714.880000pt;}
.y22_c00161{bottom:715.520000pt;}
.y17_c00161{bottom:748.800000pt;}
.y1a_c00161{bottom:750.080000pt;}
.y1b_c00161{bottom:750.720000pt;}
.y18_c00161{bottom:752.000000pt;}
.y19_c00161{bottom:752.640000pt;}
.y1d_c00161{bottom:753.280000pt;}
.y1c_c00161{bottom:753.920000pt;}
.y13_c00161{bottom:787.200000pt;}
.y15_c00161{bottom:788.480000pt;}
.y12_c00161{bottom:789.120000pt;}
.y14_c00161{bottom:791.040000pt;}
.y16_c00161{bottom:791.680000pt;}
.yd_c00161{bottom:824.960000pt;}
.y10_c00161{bottom:826.240000pt;}
.ye_c00161{bottom:828.160000pt;}
.yf_c00161{bottom:828.800000pt;}
.y11_c00161{bottom:829.440000pt;}
.yb_c00161{bottom:864.000000pt;}
.y9_c00161{bottom:864.640000pt;}
.ya_c00161{bottom:865.920000pt;}
.yc_c00161{bottom:867.840000pt;}
.y2_c00161{bottom:900.480000pt;}
.y3_c00161{bottom:901.760000pt;}
.y5_c00161{bottom:902.400000pt;}
.y7_c00161{bottom:903.680000pt;}
.y4_c00161{bottom:904.320000pt;}
.y6_c00161{bottom:905.600000pt;}
.y8_c00161{bottom:906.240000pt;}
.y1_c00161{bottom:960.000000pt;}
.h9_c00161{height:27.645000pt;}
.h7_c00161{height:29.948750pt;}
.hb_c00161{height:32.252500pt;}
.h11_c00161{height:34.556250pt;}
.h4_c00161{height:36.860000pt;}
.h6_c00161{height:39.163750pt;}
.h5_c00161{height:41.467500pt;}
.he_c00161{height:43.771250pt;}
.hf_c00161{height:46.075000pt;}
.ha_c00161{height:48.378750pt;}
.hc_c00161{height:50.682500pt;}
.h3_c00161{height:52.986250pt;}
.h8_c00161{height:55.290000pt;}
.h10_c00161{height:57.593750pt;}
.hd_c00161{height:59.897500pt;}
.h2_c00161{height:62.201250pt;}
.h0_c00161{height:1025.280000pt;}
.h1_c00161{height:1025.333333pt;}
.w0_c00161{width:706.560000pt;}
.w1_c00161{width:706.666667pt;}
.x0_c00161{left:0.000000pt;}
.xc_c00161{left:55.680000pt;}
.x2_c00161{left:57.600000pt;}
.x57_c00161{left:59.520000pt;}
.x1b_c00161{left:76.160000pt;}
.x3f_c00161{left:84.480000pt;}
.x53_c00161{left:85.760000pt;}
.x28_c00161{left:94.080000pt;}
.x1c_c00161{left:103.680000pt;}
.xd_c00161{left:112.640000pt;}
.x54_c00161{left:113.920000pt;}
.x13_c00161{left:122.240000pt;}
.x29_c00161{left:131.840000pt;}
.x39_c00161{left:140.800000pt;}
.x34_c00161{left:142.080000pt;}
.x48_c00161{left:145.920000pt;}
.x2e_c00161{left:150.400000pt;}
.x22_c00161{left:152.320000pt;}
.x35_c00161{left:160.640000pt;}
.x52_c00161{left:168.960000pt;}
.x3_c00161{left:170.240000pt;}
.x1d_c00161{left:179.200000pt;}
.x4_c00161{left:188.800000pt;}
.x14_c00161{left:190.080000pt;}
.x23_c00161{left:197.760000pt;}
.x2a_c00161{left:208.000000pt;}
.x15_c00161{left:217.600000pt;}
.x49_c00161{left:227.200000pt;}
.x2b_c00161{left:236.160000pt;}
.x42_c00161{left:237.440000pt;}
.x4f_c00161{left:246.400000pt;}
.x1e_c00161{left:256.000000pt;}
.x16_c00161{left:257.280000pt;}
.xe_c00161{left:265.600000pt;}
.x5_c00161{left:275.200000pt;}
.xf_c00161{left:284.800000pt;}
.x40_c00161{left:294.400000pt;}
.x2f_c00161{left:304.640000pt;}
.x17_c00161{left:312.960000pt;}
.x6_c00161{left:314.240000pt;}
.x36_c00161{left:322.560000pt;}
.x3a_c00161{left:323.840000pt;}
.x30_c00161{left:332.800000pt;}
.x10_c00161{left:334.080000pt;}
.x24_c00161{left:342.400000pt;}
.x7_c00161{left:344.320000pt;}
.x18_c00161{left:351.360000pt;}
.x3b_c00161{left:352.640000pt;}
.x43_c00161{left:360.960000pt;}
.x51_c00161{left:362.880000pt;}
.x50_c00161{left:371.200000pt;}
.x37_c00161{left:372.480000pt;}
.x4a_c00161{left:380.160000pt;}
.x25_c00161{left:381.440000pt;}
.x58_c00161{left:391.680000pt;}
.x2c_c00161{left:400.000000pt;}
.x41_c00161{left:401.280000pt;}
.x3c_c00161{left:410.240000pt;}
.x31_c00161{left:418.560000pt;}
.x8_c00161{left:420.480000pt;}
.x1f_c00161{left:430.080000pt;}
.x11_c00161{left:439.040000pt;}
.x9_c00161{left:449.280000pt;}
.x4d_c00161{left:457.600000pt;}
.x20_c00161{left:458.880000pt;}
.x55_c00161{left:476.800000pt;}
.x4e_c00161{left:486.400000pt;}
.x19_c00161{left:487.680000pt;}
.x12_c00161{left:497.280000pt;}
.x44_c00161{left:506.240000pt;}
.x1a_c00161{left:517.120000pt;}
.x26_c00161{left:526.080000pt;}
.x4c_c00161{left:527.360000pt;}
.x38_c00161{left:535.040000pt;}
.x3d_c00161{left:537.600000pt;}
.x4b_c00161{left:544.000000pt;}
.xa_c00161{left:545.920000pt;}
.x3e_c00161{left:564.480000pt;}
.x56_c00161{left:565.760000pt;}
.x32_c00161{left:574.080000pt;}
.x27_c00161{left:575.360000pt;}
.x46_c00161{left:584.320000pt;}
.xb_c00161{left:594.560000pt;}
.x1_c00161{left:602.880000pt;}
.x33_c00161{left:604.160000pt;}
.x47_c00161{left:612.480000pt;}
.x2d_c00161{left:613.760000pt;}
.x21_c00161{left:622.720000pt;}
.x45_c00161{left:632.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1c93e1ce609d1baf4a388d00.woff2')format("woff");}.ff1_c00162{font-family:ff1_c00162;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m52_c00162{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m55_c00162{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m11_c00162{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m27_c00162{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m7_c00162{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m49_c00162{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);}
.m60_c00162{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m47_c00162{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m46_c00162{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00162{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00162{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00162{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00162{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m21_c00162{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m56_c00162{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m40_c00162{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m61_c00162{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m36_c00162{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m53_c00162{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);}
.m4d_c00162{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00162{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m29_c00162{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m24_c00162{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m5_c00162{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m0_c00162{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);}
.m2f_c00162{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m20_c00162{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_c00162{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00162{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m17_c00162{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00162{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);}
.m2d_c00162{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);}
.m3_c00162{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m26_c00162{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00162{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m4_c00162{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.mc_c00162{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);}
.m2c_c00162{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m39_c00162{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00162{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.me_c00162{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m1_c00162{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);}
.m51_c00162{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m34_c00162{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m10_c00162{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00162{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00162{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m31_c00162{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);}
.m3c_c00162{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);}
.m13_c00162{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m58_c00162{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m15_c00162{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m25_c00162{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00162{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);}
.m3b_c00162{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00162{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);}
.m22_c00162{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m48_c00162{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);}
.m44_c00162{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m59_c00162{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00162{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m18_c00162{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00162{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);}
.m1c_c00162{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00162{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.mb_c00162{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);}
.m30_c00162{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00162{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m41_c00162{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m32_c00162{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m63_c00162{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);}
.m2a_c00162{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_c00162{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00162{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m2_c00162{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);}
.m16_c00162{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m23_c00162{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m50_c00162{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.mf_c00162{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);}
.m43_c00162{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.md_c00162{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m19_c00162{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00162{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00162{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m57_c00162{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);}
.m14_c00162{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);}
.m37_c00162{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m33_c00162{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m45_c00162{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00162{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m38_c00162{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m65_c00162{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00162{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m54_c00162{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);}
.m6_c00162{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);}
.m62_c00162{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.ma_c00162{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m8_c00162{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m64_c00162{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m42_c00162{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_c00162{transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);}
.m35_c00162{transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);}
.v1_c00162{vertical-align:-2.880000px;}
.v0_c00162{vertical-align:0.000000px;}
.v2_c00162{vertical-align:5.760000px;}
.v3_c00162{vertical-align:11.520000px;}
.ls0_c00162{letter-spacing:0.000000px;}
.sc__c00162{text-shadow:none;}
.sc0_c00162{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00162{-webkit-text-stroke:0px transparent;}
.sc0_c00162{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00162{word-spacing:-6.204240px;}
.ws1_c00162{word-spacing:-3.091200px;}
.ws3_c00162{word-spacing:0.000000px;}
.ws0_c00162{word-spacing:0.014160px;}
.fc0_c00162{color:transparent;}
.fs2_c00162{font-size:34.560000px;}
.fs7_c00162{font-size:37.440000px;}
.fsa_c00162{font-size:40.320000px;}
.fsf_c00162{font-size:43.200000px;}
.fs4_c00162{font-size:46.080000px;}
.fs9_c00162{font-size:48.960000px;}
.fs3_c00162{font-size:51.840000px;}
.fs8_c00162{font-size:54.720000px;}
.fsb_c00162{font-size:57.600000px;}
.fs1_c00162{font-size:60.480000px;}
.fs5_c00162{font-size:63.360000px;}
.fsd_c00162{font-size:66.240000px;}
.fs6_c00162{font-size:69.120000px;}
.fsc_c00162{font-size:72.000000px;}
.fse_c00162{font-size:74.880000px;}
.fs0_c00162{font-size:77.760000px;}
.y0_c00162{bottom:0.000000px;}
.y85_c00162{bottom:40.320000px;}
.y87_c00162{bottom:41.760000px;}
.y86_c00162{bottom:42.480000px;}
.y82_c00162{bottom:43.200000px;}
.y84_c00162{bottom:43.920000px;}
.y83_c00162{bottom:44.640000px;}
.y81_c00162{bottom:45.360000px;}
.y80_c00162{bottom:46.080000px;}
.y7d_c00162{bottom:82.800000px;}
.y7f_c00162{bottom:84.240000px;}
.y7e_c00162{bottom:84.960000px;}
.y7c_c00162{bottom:85.680000px;}
.y7b_c00162{bottom:86.400000px;}
.y7a_c00162{bottom:87.120000px;}
.y79_c00162{bottom:87.840000px;}
.y78_c00162{bottom:89.280000px;}
.y77_c00162{bottom:90.000000px;}
.y74_c00162{bottom:126.000000px;}
.y73_c00162{bottom:126.720000px;}
.y75_c00162{bottom:127.440000px;}
.y76_c00162{bottom:128.160000px;}
.y71_c00162{bottom:128.880000px;}
.y72_c00162{bottom:129.600000px;}
.y70_c00162{bottom:130.320000px;}
.y6e_c00162{bottom:167.040000px;}
.y6a_c00162{bottom:169.200000px;}
.y6f_c00162{bottom:170.640000px;}
.y6c_c00162{bottom:171.360000px;}
.y6d_c00162{bottom:172.080000px;}
.y6b_c00162{bottom:172.800000px;}
.y69_c00162{bottom:173.520000px;}
.y68_c00162{bottom:174.960000px;}
.y67_c00162{bottom:210.240000px;}
.y65_c00162{bottom:211.680000px;}
.y64_c00162{bottom:214.560000px;}
.y66_c00162{bottom:215.280000px;}
.y63_c00162{bottom:216.000000px;}
.y62_c00162{bottom:265.680000px;}
.y5e_c00162{bottom:266.400000px;}
.y60_c00162{bottom:267.840000px;}
.y61_c00162{bottom:268.560000px;}
.y5f_c00162{bottom:269.280000px;}
.y5c_c00162{bottom:308.160000px;}
.y5d_c00162{bottom:309.600000px;}
.y5a_c00162{bottom:311.040000px;}
.y5b_c00162{bottom:311.760000px;}
.y59_c00162{bottom:312.480000px;}
.y58_c00162{bottom:349.920000px;}
.y56_c00162{bottom:351.360000px;}
.y57_c00162{bottom:353.520000px;}
.y55_c00162{bottom:354.240000px;}
.y54_c00162{bottom:354.960000px;}
.y51_c00162{bottom:393.840000px;}
.y4f_c00162{bottom:394.560000px;}
.y4e_c00162{bottom:395.280000px;}
.y53_c00162{bottom:396.000000px;}
.y52_c00162{bottom:396.720000px;}
.y50_c00162{bottom:397.440000px;}
.y4b_c00162{bottom:437.040000px;}
.y4c_c00162{bottom:437.760000px;}
.y4d_c00162{bottom:439.200000px;}
.y4a_c00162{bottom:439.920000px;}
.y49_c00162{bottom:440.640000px;}
.y43_c00162{bottom:478.800000px;}
.y44_c00162{bottom:479.520000px;}
.y45_c00162{bottom:480.240000px;}
.y48_c00162{bottom:481.680000px;}
.y47_c00162{bottom:482.400000px;}
.y46_c00162{bottom:483.120000px;}
.y42_c00162{bottom:483.840000px;}
.y40_c00162{bottom:522.000000px;}
.y3e_c00162{bottom:523.440000px;}
.y41_c00162{bottom:524.880000px;}
.y3f_c00162{bottom:525.600000px;}
.y3d_c00162{bottom:526.320000px;}
.y3a_c00162{bottom:565.200000px;}
.y39_c00162{bottom:568.080000px;}
.y3b_c00162{bottom:568.800000px;}
.y3c_c00162{bottom:569.520000px;}
.y38_c00162{bottom:607.680000px;}
.y37_c00162{bottom:609.120000px;}
.y35_c00162{bottom:610.560000px;}
.y34_c00162{bottom:611.280000px;}
.y36_c00162{bottom:612.000000px;}
.y31_c00162{bottom:653.760000px;}
.y32_c00162{bottom:654.480000px;}
.y33_c00162{bottom:655.200000px;}
.y2f_c00162{bottom:704.160000px;}
.y30_c00162{bottom:704.880000px;}
.y2e_c00162{bottom:706.320000px;}
.y28_c00162{bottom:746.640000px;}
.y2b_c00162{bottom:748.080000px;}
.y29_c00162{bottom:749.520000px;}
.y2a_c00162{bottom:750.240000px;}
.y2c_c00162{bottom:750.960000px;}
.y2d_c00162{bottom:751.680000px;}
.y24_c00162{bottom:789.840000px;}
.y27_c00162{bottom:790.560000px;}
.y22_c00162{bottom:791.280000px;}
.y23_c00162{bottom:792.000000px;}
.y25_c00162{bottom:792.720000px;}
.y26_c00162{bottom:794.160000px;}
.y1c_c00162{bottom:832.320000px;}
.y1e_c00162{bottom:833.040000px;}
.y1f_c00162{bottom:833.760000px;}
.y1b_c00162{bottom:834.480000px;}
.y1d_c00162{bottom:835.200000px;}
.y20_c00162{bottom:837.360000px;}
.y21_c00162{bottom:838.080000px;}
.y17_c00162{bottom:876.240000px;}
.y14_c00162{bottom:876.960000px;}
.y15_c00162{bottom:877.680000px;}
.y16_c00162{bottom:878.400000px;}
.y18_c00162{bottom:879.120000px;}
.y1a_c00162{bottom:879.840000px;}
.y19_c00162{bottom:880.560000px;}
.y11_c00162{bottom:919.440000px;}
.ye_c00162{bottom:920.160000px;}
.y10_c00162{bottom:920.880000px;}
.yf_c00162{bottom:921.600000px;}
.y12_c00162{bottom:922.320000px;}
.y13_c00162{bottom:923.040000px;}
.ya_c00162{bottom:961.920000px;}
.y8_c00162{bottom:963.360000px;}
.y9_c00162{bottom:964.080000px;}
.yb_c00162{bottom:964.800000px;}
.yc_c00162{bottom:965.520000px;}
.yd_c00162{bottom:966.960000px;}
.y2_c00162{bottom:1013.760000px;}
.y4_c00162{bottom:1015.200000px;}
.y5_c00162{bottom:1015.920000px;}
.y3_c00162{bottom:1017.360000px;}
.y6_c00162{bottom:1019.520000px;}
.y7_c00162{bottom:1020.240000px;}
.y1_c00162{bottom:1086.480000px;}
.h4_c00162{height:31.100625px;}
.h9_c00162{height:33.692344px;}
.hc_c00162{height:36.284062px;}
.h12_c00162{height:38.875781px;}
.h6_c00162{height:41.467500px;}
.hb_c00162{height:44.059219px;}
.h5_c00162{height:46.650937px;}
.ha_c00162{height:49.242656px;}
.hd_c00162{height:51.834375px;}
.h11_c00162{height:52.410937px;}
.h3_c00162{height:54.426094px;}
.h7_c00162{height:57.017812px;}
.hf_c00162{height:59.609531px;}
.h8_c00162{height:62.201250px;}
.he_c00162{height:64.792969px;}
.h10_c00162{height:67.384687px;}
.h2_c00162{height:69.976406px;}
.h0_c00162{height:1153.440000px;}
.h1_c00162{height:1153.500000px;}
.w0_c00162{width:793.440000px;}
.w1_c00162{width:793.500000px;}
.x0_c00162{left:0.000000px;}
.x2_c00162{left:61.200000px;}
.x1b_c00162{left:62.640000px;}
.x4a_c00162{left:64.080000px;}
.x23_c00162{left:92.880000px;}
.x54_c00162{left:94.320000px;}
.x1c_c00162{left:103.680000px;}
.x58_c00162{left:115.920000px;}
.x3_c00162{left:126.000000px;}
.x2b_c00162{left:135.360000px;}
.x36_c00162{left:137.520000px;}
.x4_c00162{left:146.880000px;}
.x1d_c00162{left:157.680000px;}
.x38_c00162{left:167.040000px;}
.xd_c00162{left:168.480000px;}
.x24_c00162{left:177.840000px;}
.x4f_c00162{left:179.280000px;}
.x3c_c00162{left:187.920000px;}
.x1e_c00162{left:189.360000px;}
.x15_c00162{left:199.440000px;}
.x4b_c00162{left:200.880000px;}
.x5_c00162{left:209.520000px;}
.xe_c00162{left:210.960000px;}
.x37_c00162{left:213.120000px;}
.x40_c00162{left:220.320000px;}
.x32_c00162{left:222.480000px;}
.x48_c00162{left:231.840000px;}
.x2c_c00162{left:233.280000px;}
.x45_c00162{left:241.920000px;}
.x25_c00162{left:243.360000px;}
.x6_c00162{left:254.160000px;}
.xf_c00162{left:264.240000px;}
.x52_c00162{left:274.320000px;}
.x2d_c00162{left:285.120000px;}
.x39_c00162{left:287.280000px;}
.x16_c00162{left:306.720000px;}
.x4c_c00162{left:308.160000px;}
.x3d_c00162{left:318.960000px;}
.x1f_c00162{left:328.320000px;}
.x10_c00162{left:329.760000px;}
.x3e_c00162{left:339.840000px;}
.x56_c00162{left:341.280000px;}
.x2e_c00162{left:350.640000px;}
.x41_c00162{left:361.440000px;}
.x11_c00162{left:362.880000px;}
.x20_c00162{left:372.240000px;}
.x26_c00162{left:373.680000px;}
.x2f_c00162{left:383.040000px;}
.x59_c00162{left:384.480000px;}
.x7_c00162{left:393.840000px;}
.x55_c00162{left:395.280000px;}
.x33_c00162{left:405.360000px;}
.x3a_c00162{left:416.160000px;}
.x8_c00162{left:426.240000px;}
.x12_c00162{left:437.040000px;}
.x17_c00162{left:438.480000px;}
.x34_c00162{left:449.280000px;}
.x30_c00162{left:460.080000px;}
.x21_c00162{left:468.720000px;}
.x5a_c00162{left:472.320000px;}
.x13_c00162{left:480.240000px;}
.x5c_c00162{left:481.680000px;}
.x9_c00162{left:491.760000px;}
.x31_c00162{left:493.920000px;}
.x3f_c00162{left:502.560000px;}
.x46_c00162{left:513.360000px;}
.x42_c00162{left:514.800000px;}
.x14_c00162{left:525.600000px;}
.x5b_c00162{left:527.040000px;}
.x53_c00162{left:535.680000px;}
.x27_c00162{left:545.760000px;}
.x57_c00162{left:547.200000px;}
.xa_c00162{left:557.280000px;}
.x18_c00162{left:568.080000px;}
.xb_c00162{left:589.680000px;}
.x4d_c00162{left:591.120000px;}
.x19_c00162{left:600.480000px;}
.x35_c00162{left:610.560000px;}
.x22_c00162{left:612.000000px;}
.x28_c00162{left:622.080000px;}
.x4e_c00162{left:623.520000px;}
.x1a_c00162{left:632.880000px;}
.xc_c00162{left:642.960000px;}
.x43_c00162{left:645.120000px;}
.x29_c00162{left:655.920000px;}
.x3b_c00162{left:657.360000px;}
.x47_c00162{left:664.560000px;}
.x50_c00162{left:667.440000px;}
.x49_c00162{left:677.520000px;}
.x2a_c00162{left:687.600000px;}
.x1_c00162{left:689.040000px;}
.x51_c00162{left:699.120000px;}
.x44_c00162{left:709.920000px;}
@media print{
.v1_c00162{vertical-align:-2.560000pt;}
.v0_c00162{vertical-align:0.000000pt;}
.v2_c00162{vertical-align:5.120000pt;}
.v3_c00162{vertical-align:10.240000pt;}
.ls0_c00162{letter-spacing:0.000000pt;}
.ws2_c00162{word-spacing:-5.514880pt;}
.ws1_c00162{word-spacing:-2.747733pt;}
.ws3_c00162{word-spacing:0.000000pt;}
.ws0_c00162{word-spacing:0.012587pt;}
.fs2_c00162{font-size:30.720000pt;}
.fs7_c00162{font-size:33.280000pt;}
.fsa_c00162{font-size:35.840000pt;}
.fsf_c00162{font-size:38.400000pt;}
.fs4_c00162{font-size:40.960000pt;}
.fs9_c00162{font-size:43.520000pt;}
.fs3_c00162{font-size:46.080000pt;}
.fs8_c00162{font-size:48.640000pt;}
.fsb_c00162{font-size:51.200000pt;}
.fs1_c00162{font-size:53.760000pt;}
.fs5_c00162{font-size:56.320000pt;}
.fsd_c00162{font-size:58.880000pt;}
.fs6_c00162{font-size:61.440000pt;}
.fsc_c00162{font-size:64.000000pt;}
.fse_c00162{font-size:66.560000pt;}
.fs0_c00162{font-size:69.120000pt;}
.y0_c00162{bottom:0.000000pt;}
.y85_c00162{bottom:35.840000pt;}
.y87_c00162{bottom:37.120000pt;}
.y86_c00162{bottom:37.760000pt;}
.y82_c00162{bottom:38.400000pt;}
.y84_c00162{bottom:39.040000pt;}
.y83_c00162{bottom:39.680000pt;}
.y81_c00162{bottom:40.320000pt;}
.y80_c00162{bottom:40.960000pt;}
.y7d_c00162{bottom:73.600000pt;}
.y7f_c00162{bottom:74.880000pt;}
.y7e_c00162{bottom:75.520000pt;}
.y7c_c00162{bottom:76.160000pt;}
.y7b_c00162{bottom:76.800000pt;}
.y7a_c00162{bottom:77.440000pt;}
.y79_c00162{bottom:78.080000pt;}
.y78_c00162{bottom:79.360000pt;}
.y77_c00162{bottom:80.000000pt;}
.y74_c00162{bottom:112.000000pt;}
.y73_c00162{bottom:112.640000pt;}
.y75_c00162{bottom:113.280000pt;}
.y76_c00162{bottom:113.920000pt;}
.y71_c00162{bottom:114.560000pt;}
.y72_c00162{bottom:115.200000pt;}
.y70_c00162{bottom:115.840000pt;}
.y6e_c00162{bottom:148.480000pt;}
.y6a_c00162{bottom:150.400000pt;}
.y6f_c00162{bottom:151.680000pt;}
.y6c_c00162{bottom:152.320000pt;}
.y6d_c00162{bottom:152.960000pt;}
.y6b_c00162{bottom:153.600000pt;}
.y69_c00162{bottom:154.240000pt;}
.y68_c00162{bottom:155.520000pt;}
.y67_c00162{bottom:186.880000pt;}
.y65_c00162{bottom:188.160000pt;}
.y64_c00162{bottom:190.720000pt;}
.y66_c00162{bottom:191.360000pt;}
.y63_c00162{bottom:192.000000pt;}
.y62_c00162{bottom:236.160000pt;}
.y5e_c00162{bottom:236.800000pt;}
.y60_c00162{bottom:238.080000pt;}
.y61_c00162{bottom:238.720000pt;}
.y5f_c00162{bottom:239.360000pt;}
.y5c_c00162{bottom:273.920000pt;}
.y5d_c00162{bottom:275.200000pt;}
.y5a_c00162{bottom:276.480000pt;}
.y5b_c00162{bottom:277.120000pt;}
.y59_c00162{bottom:277.760000pt;}
.y58_c00162{bottom:311.040000pt;}
.y56_c00162{bottom:312.320000pt;}
.y57_c00162{bottom:314.240000pt;}
.y55_c00162{bottom:314.880000pt;}
.y54_c00162{bottom:315.520000pt;}
.y51_c00162{bottom:350.080000pt;}
.y4f_c00162{bottom:350.720000pt;}
.y4e_c00162{bottom:351.360000pt;}
.y53_c00162{bottom:352.000000pt;}
.y52_c00162{bottom:352.640000pt;}
.y50_c00162{bottom:353.280000pt;}
.y4b_c00162{bottom:388.480000pt;}
.y4c_c00162{bottom:389.120000pt;}
.y4d_c00162{bottom:390.400000pt;}
.y4a_c00162{bottom:391.040000pt;}
.y49_c00162{bottom:391.680000pt;}
.y43_c00162{bottom:425.600000pt;}
.y44_c00162{bottom:426.240000pt;}
.y45_c00162{bottom:426.880000pt;}
.y48_c00162{bottom:428.160000pt;}
.y47_c00162{bottom:428.800000pt;}
.y46_c00162{bottom:429.440000pt;}
.y42_c00162{bottom:430.080000pt;}
.y40_c00162{bottom:464.000000pt;}
.y3e_c00162{bottom:465.280000pt;}
.y41_c00162{bottom:466.560000pt;}
.y3f_c00162{bottom:467.200000pt;}
.y3d_c00162{bottom:467.840000pt;}
.y3a_c00162{bottom:502.400000pt;}
.y39_c00162{bottom:504.960000pt;}
.y3b_c00162{bottom:505.600000pt;}
.y3c_c00162{bottom:506.240000pt;}
.y38_c00162{bottom:540.160000pt;}
.y37_c00162{bottom:541.440000pt;}
.y35_c00162{bottom:542.720000pt;}
.y34_c00162{bottom:543.360000pt;}
.y36_c00162{bottom:544.000000pt;}
.y31_c00162{bottom:581.120000pt;}
.y32_c00162{bottom:581.760000pt;}
.y33_c00162{bottom:582.400000pt;}
.y2f_c00162{bottom:625.920000pt;}
.y30_c00162{bottom:626.560000pt;}
.y2e_c00162{bottom:627.840000pt;}
.y28_c00162{bottom:663.680000pt;}
.y2b_c00162{bottom:664.960000pt;}
.y29_c00162{bottom:666.240000pt;}
.y2a_c00162{bottom:666.880000pt;}
.y2c_c00162{bottom:667.520000pt;}
.y2d_c00162{bottom:668.160000pt;}
.y24_c00162{bottom:702.080000pt;}
.y27_c00162{bottom:702.720000pt;}
.y22_c00162{bottom:703.360000pt;}
.y23_c00162{bottom:704.000000pt;}
.y25_c00162{bottom:704.640000pt;}
.y26_c00162{bottom:705.920000pt;}
.y1c_c00162{bottom:739.840000pt;}
.y1e_c00162{bottom:740.480000pt;}
.y1f_c00162{bottom:741.120000pt;}
.y1b_c00162{bottom:741.760000pt;}
.y1d_c00162{bottom:742.400000pt;}
.y20_c00162{bottom:744.320000pt;}
.y21_c00162{bottom:744.960000pt;}
.y17_c00162{bottom:778.880000pt;}
.y14_c00162{bottom:779.520000pt;}
.y15_c00162{bottom:780.160000pt;}
.y16_c00162{bottom:780.800000pt;}
.y18_c00162{bottom:781.440000pt;}
.y1a_c00162{bottom:782.080000pt;}
.y19_c00162{bottom:782.720000pt;}
.y11_c00162{bottom:817.280000pt;}
.ye_c00162{bottom:817.920000pt;}
.y10_c00162{bottom:818.560000pt;}
.yf_c00162{bottom:819.200000pt;}
.y12_c00162{bottom:819.840000pt;}
.y13_c00162{bottom:820.480000pt;}
.ya_c00162{bottom:855.040000pt;}
.y8_c00162{bottom:856.320000pt;}
.y9_c00162{bottom:856.960000pt;}
.yb_c00162{bottom:857.600000pt;}
.yc_c00162{bottom:858.240000pt;}
.yd_c00162{bottom:859.520000pt;}
.y2_c00162{bottom:901.120000pt;}
.y4_c00162{bottom:902.400000pt;}
.y5_c00162{bottom:903.040000pt;}
.y3_c00162{bottom:904.320000pt;}
.y6_c00162{bottom:906.240000pt;}
.y7_c00162{bottom:906.880000pt;}
.y1_c00162{bottom:965.760000pt;}
.h4_c00162{height:27.645000pt;}
.h9_c00162{height:29.948750pt;}
.hc_c00162{height:32.252500pt;}
.h12_c00162{height:34.556250pt;}
.h6_c00162{height:36.860000pt;}
.hb_c00162{height:39.163750pt;}
.h5_c00162{height:41.467500pt;}
.ha_c00162{height:43.771250pt;}
.hd_c00162{height:46.075000pt;}
.h11_c00162{height:46.587500pt;}
.h3_c00162{height:48.378750pt;}
.h7_c00162{height:50.682500pt;}
.hf_c00162{height:52.986250pt;}
.h8_c00162{height:55.290000pt;}
.he_c00162{height:57.593750pt;}
.h10_c00162{height:59.897500pt;}
.h2_c00162{height:62.201250pt;}
.h0_c00162{height:1025.280000pt;}
.h1_c00162{height:1025.333333pt;}
.w0_c00162{width:705.280000pt;}
.w1_c00162{width:705.333333pt;}
.x0_c00162{left:0.000000pt;}
.x2_c00162{left:54.400000pt;}
.x1b_c00162{left:55.680000pt;}
.x4a_c00162{left:56.960000pt;}
.x23_c00162{left:82.560000pt;}
.x54_c00162{left:83.840000pt;}
.x1c_c00162{left:92.160000pt;}
.x58_c00162{left:103.040000pt;}
.x3_c00162{left:112.000000pt;}
.x2b_c00162{left:120.320000pt;}
.x36_c00162{left:122.240000pt;}
.x4_c00162{left:130.560000pt;}
.x1d_c00162{left:140.160000pt;}
.x38_c00162{left:148.480000pt;}
.xd_c00162{left:149.760000pt;}
.x24_c00162{left:158.080000pt;}
.x4f_c00162{left:159.360000pt;}
.x3c_c00162{left:167.040000pt;}
.x1e_c00162{left:168.320000pt;}
.x15_c00162{left:177.280000pt;}
.x4b_c00162{left:178.560000pt;}
.x5_c00162{left:186.240000pt;}
.xe_c00162{left:187.520000pt;}
.x37_c00162{left:189.440000pt;}
.x40_c00162{left:195.840000pt;}
.x32_c00162{left:197.760000pt;}
.x48_c00162{left:206.080000pt;}
.x2c_c00162{left:207.360000pt;}
.x45_c00162{left:215.040000pt;}
.x25_c00162{left:216.320000pt;}
.x6_c00162{left:225.920000pt;}
.xf_c00162{left:234.880000pt;}
.x52_c00162{left:243.840000pt;}
.x2d_c00162{left:253.440000pt;}
.x39_c00162{left:255.360000pt;}
.x16_c00162{left:272.640000pt;}
.x4c_c00162{left:273.920000pt;}
.x3d_c00162{left:283.520000pt;}
.x1f_c00162{left:291.840000pt;}
.x10_c00162{left:293.120000pt;}
.x3e_c00162{left:302.080000pt;}
.x56_c00162{left:303.360000pt;}
.x2e_c00162{left:311.680000pt;}
.x41_c00162{left:321.280000pt;}
.x11_c00162{left:322.560000pt;}
.x20_c00162{left:330.880000pt;}
.x26_c00162{left:332.160000pt;}
.x2f_c00162{left:340.480000pt;}
.x59_c00162{left:341.760000pt;}
.x7_c00162{left:350.080000pt;}
.x55_c00162{left:351.360000pt;}
.x33_c00162{left:360.320000pt;}
.x3a_c00162{left:369.920000pt;}
.x8_c00162{left:378.880000pt;}
.x12_c00162{left:388.480000pt;}
.x17_c00162{left:389.760000pt;}
.x34_c00162{left:399.360000pt;}
.x30_c00162{left:408.960000pt;}
.x21_c00162{left:416.640000pt;}
.x5a_c00162{left:419.840000pt;}
.x13_c00162{left:426.880000pt;}
.x5c_c00162{left:428.160000pt;}
.x9_c00162{left:437.120000pt;}
.x31_c00162{left:439.040000pt;}
.x3f_c00162{left:446.720000pt;}
.x46_c00162{left:456.320000pt;}
.x42_c00162{left:457.600000pt;}
.x14_c00162{left:467.200000pt;}
.x5b_c00162{left:468.480000pt;}
.x53_c00162{left:476.160000pt;}
.x27_c00162{left:485.120000pt;}
.x57_c00162{left:486.400000pt;}
.xa_c00162{left:495.360000pt;}
.x18_c00162{left:504.960000pt;}
.xb_c00162{left:524.160000pt;}
.x4d_c00162{left:525.440000pt;}
.x19_c00162{left:533.760000pt;}
.x35_c00162{left:542.720000pt;}
.x22_c00162{left:544.000000pt;}
.x28_c00162{left:552.960000pt;}
.x4e_c00162{left:554.240000pt;}
.x1a_c00162{left:562.560000pt;}
.xc_c00162{left:571.520000pt;}
.x43_c00162{left:573.440000pt;}
.x29_c00162{left:583.040000pt;}
.x3b_c00162{left:584.320000pt;}
.x47_c00162{left:590.720000pt;}
.x50_c00162{left:593.280000pt;}
.x49_c00162{left:602.240000pt;}
.x2a_c00162{left:611.200000pt;}
.x1_c00162{left:612.480000pt;}
.x51_c00162{left:621.440000pt;}
.x44_c00162{left:631.040000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e5e86b95c50a5a80e09d8dc2.woff2')format("woff");}.ff1_c00163{font-family:ff1_c00163;line-height:1.109863;font-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_c00163{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00163{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00163{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m47_c00163{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mf_c00163{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00163{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m32_c00163{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m50_c00163{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00163{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m46_c00163{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00163{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m43_c00163{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m7_c00163{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00163{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);}
.m31_c00163{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m20_c00163{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m0_c00163{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_c00163{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m19_c00163{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);}
.m41_c00163{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m12_c00163{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);}
.m4a_c00163{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m3_c00163{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00163{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);}
.m37_c00163{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);}
.m42_c00163{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_c00163{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);}
.m35_c00163{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.md_c00163{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m16_c00163{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);}
.m4b_c00163{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m14_c00163{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00163{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.mb_c00163{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m36_c00163{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00163{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);}
.m2a_c00163{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);}
.me_c00163{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m48_c00163{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m6_c00163{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m2_c00163{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m53_c00163{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);}
.m3f_c00163{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m25_c00163{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m17_c00163{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);}
.m39_c00163{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m30_c00163{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);}
.m10_c00163{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m28_c00163{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m24_c00163{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m51_c00163{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m8_c00163{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m13_c00163{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00163{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);}
.m49_c00163{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m5_c00163{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m26_c00163{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m21_c00163{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);}
.m29_c00163{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00163{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00163{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m18_c00163{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);}
.m27_c00163{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m44_c00163{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m22_c00163{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m15_c00163{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);}
.m33_c00163{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m52_c00163{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00163{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00163{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);}
.m4_c00163{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);}
.ma_c00163{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);}
.m38_c00163{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.mc_c00163{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00163{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m23_c00163{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00163{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m40_c00163{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);}
.m1a_c00163{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);}
.m4f_c00163{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m34_c00163{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m45_c00163{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m54_c00163{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.m9_c00163{transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00163{transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);}
.v1_c00163{vertical-align:-11.520000px;}
.v0_c00163{vertical-align:0.000000px;}
.ls0_c00163{letter-spacing:0.000000px;}
.sc__c00163{text-shadow:none;}
.sc0_c00163{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00163{-webkit-text-stroke:0px transparent;}
.sc0_c00163{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00163{word-spacing:0.000000px;}
.ws0_c00163{word-spacing:1.720800px;}
.fc0_c00163{color:transparent;}
.fsa_c00163{font-size:34.560000px;}
.fs4_c00163{font-size:37.440000px;}
.fsb_c00163{font-size:40.320000px;}
.fs9_c00163{font-size:43.200000px;}
.fs2_c00163{font-size:46.080000px;}
.fs7_c00163{font-size:48.960000px;}
.fs5_c00163{font-size:51.840000px;}
.fs6_c00163{font-size:54.720000px;}
.fsf_c00163{font-size:57.600000px;}
.fs3_c00163{font-size:60.480000px;}
.fs8_c00163{font-size:63.360000px;}
.fsd_c00163{font-size:66.240000px;}
.fsc_c00163{font-size:69.120000px;}
.fs1_c00163{font-size:72.000000px;}
.fse_c00163{font-size:74.880000px;}
.fs0_c00163{font-size:77.760000px;}
.y0_c00163{bottom:0.000000px;}
.y7b_c00163{bottom:102.960000px;}
.y7a_c00163{bottom:106.560000px;}
.y79_c00163{bottom:108.000000px;}
.y76_c00163{bottom:142.560000px;}
.y75_c00163{bottom:144.000000px;}
.y78_c00163{bottom:144.720000px;}
.y77_c00163{bottom:145.440000px;}
.y74_c00163{bottom:146.160000px;}
.y73_c00163{bottom:147.600000px;}
.y72_c00163{bottom:148.320000px;}
.y71_c00163{bottom:149.760000px;}
.y70_c00163{bottom:185.040000px;}
.y6d_c00163{bottom:185.760000px;}
.y6f_c00163{bottom:187.920000px;}
.y6e_c00163{bottom:189.360000px;}
.y6c_c00163{bottom:190.080000px;}
.y6b_c00163{bottom:190.800000px;}
.y6a_c00163{bottom:192.960000px;}
.y67_c00163{bottom:228.960000px;}
.y69_c00163{bottom:230.400000px;}
.y68_c00163{bottom:232.560000px;}
.y66_c00163{bottom:233.280000px;}
.y65_c00163{bottom:234.000000px;}
.y64_c00163{bottom:270.720000px;}
.y62_c00163{bottom:272.160000px;}
.y60_c00163{bottom:272.880000px;}
.y63_c00163{bottom:274.320000px;}
.y61_c00163{bottom:275.040000px;}
.y5f_c00163{bottom:276.480000px;}
.y5d_c00163{bottom:313.920000px;}
.y5b_c00163{bottom:315.360000px;}
.y59_c00163{bottom:316.080000px;}
.y5e_c00163{bottom:316.800000px;}
.y5c_c00163{bottom:317.520000px;}
.y5a_c00163{bottom:318.960000px;}
.y58_c00163{bottom:357.120000px;}
.y56_c00163{bottom:357.840000px;}
.y54_c00163{bottom:358.560000px;}
.y57_c00163{bottom:360.000000px;}
.y55_c00163{bottom:360.720000px;}
.y53_c00163{bottom:362.160000px;}
.y52_c00163{bottom:400.320000px;}
.y51_c00163{bottom:401.040000px;}
.y50_c00163{bottom:402.480000px;}
.y4f_c00163{bottom:403.200000px;}
.y4e_c00163{bottom:403.920000px;}
.y4d_c00163{bottom:442.800000px;}
.y4a_c00163{bottom:443.520000px;}
.y4b_c00163{bottom:444.240000px;}
.y4c_c00163{bottom:446.400000px;}
.y48_c00163{bottom:486.000000px;}
.y47_c00163{bottom:488.880000px;}
.y49_c00163{bottom:489.600000px;}
.y43_c00163{bottom:528.480000px;}
.y41_c00163{bottom:529.200000px;}
.y44_c00163{bottom:530.640000px;}
.y45_c00163{bottom:531.360000px;}
.y46_c00163{bottom:532.080000px;}
.y42_c00163{bottom:532.800000px;}
.y3f_c00163{bottom:570.960000px;}
.y3d_c00163{bottom:572.400000px;}
.y3c_c00163{bottom:574.560000px;}
.y3e_c00163{bottom:575.280000px;}
.y40_c00163{bottom:576.000000px;}
.y37_c00163{bottom:614.160000px;}
.y39_c00163{bottom:614.880000px;}
.y3a_c00163{bottom:615.600000px;}
.y38_c00163{bottom:617.760000px;}
.y3b_c00163{bottom:618.480000px;}
.y33_c00163{bottom:656.640000px;}
.y35_c00163{bottom:657.360000px;}
.y34_c00163{bottom:660.240000px;}
.y36_c00163{bottom:660.960000px;}
.y30_c00163{bottom:699.840000px;}
.y2e_c00163{bottom:700.560000px;}
.y32_c00163{bottom:701.280000px;}
.y2f_c00163{bottom:703.440000px;}
.y31_c00163{bottom:704.160000px;}
.y2b_c00163{bottom:753.840000px;}
.y2d_c00163{bottom:754.560000px;}
.y2a_c00163{bottom:756.000000px;}
.y2c_c00163{bottom:756.720000px;}
.y27_c00163{bottom:796.320000px;}
.y28_c00163{bottom:797.040000px;}
.y26_c00163{bottom:797.760000px;}
.y29_c00163{bottom:800.640000px;}
.y21_c00163{bottom:838.800000px;}
.y1f_c00163{bottom:839.520000px;}
.y25_c00163{bottom:840.240000px;}
.y20_c00163{bottom:841.680000px;}
.y22_c00163{bottom:842.400000px;}
.y23_c00163{bottom:843.120000px;}
.y24_c00163{bottom:843.840000px;}
.y17_c00163{bottom:879.840000px;}
.y18_c00163{bottom:881.280000px;}
.y19_c00163{bottom:882.720000px;}
.y1e_c00163{bottom:884.160000px;}
.y1a_c00163{bottom:884.880000px;}
.y1b_c00163{bottom:885.600000px;}
.y1d_c00163{bottom:886.320000px;}
.y1c_c00163{bottom:887.040000px;}
.y13_c00163{bottom:924.480000px;}
.y11_c00163{bottom:925.200000px;}
.y12_c00163{bottom:927.360000px;}
.y14_c00163{bottom:928.080000px;}
.y15_c00163{bottom:928.800000px;}
.y16_c00163{bottom:929.520000px;}
.ya_c00163{bottom:966.240000px;}
.y9_c00163{bottom:968.400000px;}
.yb_c00163{bottom:969.120000px;}
.yc_c00163{bottom:969.840000px;}
.yd_c00163{bottom:970.560000px;}
.ye_c00163{bottom:971.280000px;}
.yf_c00163{bottom:972.000000px;}
.y10_c00163{bottom:972.720000px;}
.y2_c00163{bottom:1008.720000px;}
.y3_c00163{bottom:1009.440000px;}
.y4_c00163{bottom:1013.040000px;}
.y5_c00163{bottom:1013.760000px;}
.y6_c00163{bottom:1014.480000px;}
.y7_c00163{bottom:1015.200000px;}
.y8_c00163{bottom:1015.920000px;}
.y1_c00163{bottom:1092.240000px;}
.hc_c00163{height:31.100625px;}
.h6_c00163{height:33.692344px;}
.hd_c00163{height:36.284062px;}
.hb_c00163{height:38.875781px;}
.h4_c00163{height:41.467500px;}
.h9_c00163{height:44.059219px;}
.h7_c00163{height:46.650937px;}
.h8_c00163{height:49.242656px;}
.h11_c00163{height:51.834375px;}
.h5_c00163{height:54.426094px;}
.ha_c00163{height:57.017812px;}
.hf_c00163{height:59.609531px;}
.he_c00163{height:62.201250px;}
.h3_c00163{height:64.792969px;}
.h10_c00163{height:67.384687px;}
.h2_c00163{height:69.976406px;}
.h1_c00163{height:1150.500000px;}
.h0_c00163{height:1150.560000px;}
.w1_c00163{width:790.500000px;}
.w0_c00163{width:790.560000px;}
.x0_c00163{left:0.000000px;}
.x2_c00163{left:54.000000px;}
.xc_c00163{left:56.160000px;}
.x51_c00163{left:58.320000px;}
.x20_c00163{left:86.400000px;}
.x54_c00163{left:88.560000px;}
.xd_c00163{left:97.200000px;}
.x4f_c00163{left:108.000000px;}
.x14_c00163{left:118.800000px;}
.x2d_c00163{left:129.600000px;}
.x3_c00163{left:139.680000px;}
.xe_c00163{left:150.480000px;}
.x30_c00163{left:162.000000px;}
.x46_c00163{left:163.440000px;}
.x43_c00163{left:170.640000px;}
.x2e_c00163{left:172.800000px;}
.x1a_c00163{left:181.440000px;}
.x4_c00163{left:182.880000px;}
.x34_c00163{left:192.240000px;}
.x25_c00163{left:193.680000px;}
.x3a_c00163{left:204.480000px;}
.x15_c00163{left:225.360000px;}
.x3f_c00163{left:235.440000px;}
.x21_c00163{left:236.880000px;}
.x35_c00163{left:246.960000px;}
.x3b_c00163{left:248.400000px;}
.x42_c00163{left:257.040000px;}
.x4b_c00163{left:259.200000px;}
.x2f_c00163{left:268.560000px;}
.x1b_c00163{left:278.640000px;}
.x5_c00163{left:289.440000px;}
.xf_c00163{left:290.880000px;}
.x38_c00163{left:300.960000px;}
.x47_c00163{left:302.400000px;}
.x52_c00163{left:313.200000px;}
.x3c_c00163{left:322.560000px;}
.x40_c00163{left:324.000000px;}
.x48_c00163{left:333.360000px;}
.x6_c00163{left:334.800000px;}
.x1c_c00163{left:343.440000px;}
.x53_c00163{left:344.880000px;}
.x16_c00163{left:355.680000px;}
.x26_c00163{left:366.480000px;}
.x36_c00163{left:377.280000px;}
.x1d_c00163{left:388.080000px;}
.x27_c00163{left:398.160000px;}
.x7_c00163{left:399.600000px;}
.x37_c00163{left:408.960000px;}
.x4c_c00163{left:410.400000px;}
.x41_c00163{left:421.200000px;}
.x8_c00163{left:432.000000px;}
.x28_c00163{left:442.800000px;}
.x44_c00163{left:453.600000px;}
.x10_c00163{left:462.960000px;}
.x55_c00163{left:464.400000px;}
.x17_c00163{left:474.480000px;}
.x31_c00163{left:484.560000px;}
.x29_c00163{left:486.000000px;}
.x50_c00163{left:487.440000px;}
.x9_c00163{left:496.800000px;}
.x18_c00163{left:506.880000px;}
.x49_c00163{left:508.320000px;}
.x22_c00163{left:518.400000px;}
.xa_c00163{left:529.200000px;}
.x39_c00163{left:540.000000px;}
.x23_c00163{left:550.800000px;}
.x11_c00163{left:552.240000px;}
.x4d_c00163{left:562.320000px;}
.x2a_c00163{left:572.400000px;}
.x24_c00163{left:583.920000px;}
.x19_c00163{left:594.000000px;}
.x4a_c00163{left:604.800000px;}
.x3d_c00163{left:606.240000px;}
.x32_c00163{left:614.880000px;}
.x1e_c00163{left:616.320000px;}
.x45_c00163{left:626.400000px;}
.x3e_c00163{left:637.200000px;}
.x2b_c00163{left:638.640000px;}
.x12_c00163{left:648.720000px;}
.xb_c00163{left:658.080000px;}
.x1f_c00163{left:659.520000px;}
.x2c_c00163{left:671.760000px;}
.x1_c00163{left:678.240000px;}
.x13_c00163{left:681.120000px;}
.x4e_c00163{left:682.560000px;}
.x33_c00163{left:693.360000px;}
@media print{
.v1_c00163{vertical-align:-10.240000pt;}
.v0_c00163{vertical-align:0.000000pt;}
.ls0_c00163{letter-spacing:0.000000pt;}
.ws1_c00163{word-spacing:0.000000pt;}
.ws0_c00163{word-spacing:1.529600pt;}
.fsa_c00163{font-size:30.720000pt;}
.fs4_c00163{font-size:33.280000pt;}
.fsb_c00163{font-size:35.840000pt;}
.fs9_c00163{font-size:38.400000pt;}
.fs2_c00163{font-size:40.960000pt;}
.fs7_c00163{font-size:43.520000pt;}
.fs5_c00163{font-size:46.080000pt;}
.fs6_c00163{font-size:48.640000pt;}
.fsf_c00163{font-size:51.200000pt;}
.fs3_c00163{font-size:53.760000pt;}
.fs8_c00163{font-size:56.320000pt;}
.fsd_c00163{font-size:58.880000pt;}
.fsc_c00163{font-size:61.440000pt;}
.fs1_c00163{font-size:64.000000pt;}
.fse_c00163{font-size:66.560000pt;}
.fs0_c00163{font-size:69.120000pt;}
.y0_c00163{bottom:0.000000pt;}
.y7b_c00163{bottom:91.520000pt;}
.y7a_c00163{bottom:94.720000pt;}
.y79_c00163{bottom:96.000000pt;}
.y76_c00163{bottom:126.720000pt;}
.y75_c00163{bottom:128.000000pt;}
.y78_c00163{bottom:128.640000pt;}
.y77_c00163{bottom:129.280000pt;}
.y74_c00163{bottom:129.920000pt;}
.y73_c00163{bottom:131.200000pt;}
.y72_c00163{bottom:131.840000pt;}
.y71_c00163{bottom:133.120000pt;}
.y70_c00163{bottom:164.480000pt;}
.y6d_c00163{bottom:165.120000pt;}
.y6f_c00163{bottom:167.040000pt;}
.y6e_c00163{bottom:168.320000pt;}
.y6c_c00163{bottom:168.960000pt;}
.y6b_c00163{bottom:169.600000pt;}
.y6a_c00163{bottom:171.520000pt;}
.y67_c00163{bottom:203.520000pt;}
.y69_c00163{bottom:204.800000pt;}
.y68_c00163{bottom:206.720000pt;}
.y66_c00163{bottom:207.360000pt;}
.y65_c00163{bottom:208.000000pt;}
.y64_c00163{bottom:240.640000pt;}
.y62_c00163{bottom:241.920000pt;}
.y60_c00163{bottom:242.560000pt;}
.y63_c00163{bottom:243.840000pt;}
.y61_c00163{bottom:244.480000pt;}
.y5f_c00163{bottom:245.760000pt;}
.y5d_c00163{bottom:279.040000pt;}
.y5b_c00163{bottom:280.320000pt;}
.y59_c00163{bottom:280.960000pt;}
.y5e_c00163{bottom:281.600000pt;}
.y5c_c00163{bottom:282.240000pt;}
.y5a_c00163{bottom:283.520000pt;}
.y58_c00163{bottom:317.440000pt;}
.y56_c00163{bottom:318.080000pt;}
.y54_c00163{bottom:318.720000pt;}
.y57_c00163{bottom:320.000000pt;}
.y55_c00163{bottom:320.640000pt;}
.y53_c00163{bottom:321.920000pt;}
.y52_c00163{bottom:355.840000pt;}
.y51_c00163{bottom:356.480000pt;}
.y50_c00163{bottom:357.760000pt;}
.y4f_c00163{bottom:358.400000pt;}
.y4e_c00163{bottom:359.040000pt;}
.y4d_c00163{bottom:393.600000pt;}
.y4a_c00163{bottom:394.240000pt;}
.y4b_c00163{bottom:394.880000pt;}
.y4c_c00163{bottom:396.800000pt;}
.y48_c00163{bottom:432.000000pt;}
.y47_c00163{bottom:434.560000pt;}
.y49_c00163{bottom:435.200000pt;}
.y43_c00163{bottom:469.760000pt;}
.y41_c00163{bottom:470.400000pt;}
.y44_c00163{bottom:471.680000pt;}
.y45_c00163{bottom:472.320000pt;}
.y46_c00163{bottom:472.960000pt;}
.y42_c00163{bottom:473.600000pt;}
.y3f_c00163{bottom:507.520000pt;}
.y3d_c00163{bottom:508.800000pt;}
.y3c_c00163{bottom:510.720000pt;}
.y3e_c00163{bottom:511.360000pt;}
.y40_c00163{bottom:512.000000pt;}
.y37_c00163{bottom:545.920000pt;}
.y39_c00163{bottom:546.560000pt;}
.y3a_c00163{bottom:547.200000pt;}
.y38_c00163{bottom:549.120000pt;}
.y3b_c00163{bottom:549.760000pt;}
.y33_c00163{bottom:583.680000pt;}
.y35_c00163{bottom:584.320000pt;}
.y34_c00163{bottom:586.880000pt;}
.y36_c00163{bottom:587.520000pt;}
.y30_c00163{bottom:622.080000pt;}
.y2e_c00163{bottom:622.720000pt;}
.y32_c00163{bottom:623.360000pt;}
.y2f_c00163{bottom:625.280000pt;}
.y31_c00163{bottom:625.920000pt;}
.y2b_c00163{bottom:670.080000pt;}
.y2d_c00163{bottom:670.720000pt;}
.y2a_c00163{bottom:672.000000pt;}
.y2c_c00163{bottom:672.640000pt;}
.y27_c00163{bottom:707.840000pt;}
.y28_c00163{bottom:708.480000pt;}
.y26_c00163{bottom:709.120000pt;}
.y29_c00163{bottom:711.680000pt;}
.y21_c00163{bottom:745.600000pt;}
.y1f_c00163{bottom:746.240000pt;}
.y25_c00163{bottom:746.880000pt;}
.y20_c00163{bottom:748.160000pt;}
.y22_c00163{bottom:748.800000pt;}
.y23_c00163{bottom:749.440000pt;}
.y24_c00163{bottom:750.080000pt;}
.y17_c00163{bottom:782.080000pt;}
.y18_c00163{bottom:783.360000pt;}
.y19_c00163{bottom:784.640000pt;}
.y1e_c00163{bottom:785.920000pt;}
.y1a_c00163{bottom:786.560000pt;}
.y1b_c00163{bottom:787.200000pt;}
.y1d_c00163{bottom:787.840000pt;}
.y1c_c00163{bottom:788.480000pt;}
.y13_c00163{bottom:821.760000pt;}
.y11_c00163{bottom:822.400000pt;}
.y12_c00163{bottom:824.320000pt;}
.y14_c00163{bottom:824.960000pt;}
.y15_c00163{bottom:825.600000pt;}
.y16_c00163{bottom:826.240000pt;}
.ya_c00163{bottom:858.880000pt;}
.y9_c00163{bottom:860.800000pt;}
.yb_c00163{bottom:861.440000pt;}
.yc_c00163{bottom:862.080000pt;}
.yd_c00163{bottom:862.720000pt;}
.ye_c00163{bottom:863.360000pt;}
.yf_c00163{bottom:864.000000pt;}
.y10_c00163{bottom:864.640000pt;}
.y2_c00163{bottom:896.640000pt;}
.y3_c00163{bottom:897.280000pt;}
.y4_c00163{bottom:900.480000pt;}
.y5_c00163{bottom:901.120000pt;}
.y6_c00163{bottom:901.760000pt;}
.y7_c00163{bottom:902.400000pt;}
.y8_c00163{bottom:903.040000pt;}
.y1_c00163{bottom:970.880000pt;}
.hc_c00163{height:27.645000pt;}
.h6_c00163{height:29.948750pt;}
.hd_c00163{height:32.252500pt;}
.hb_c00163{height:34.556250pt;}
.h4_c00163{height:36.860000pt;}
.h9_c00163{height:39.163750pt;}
.h7_c00163{height:41.467500pt;}
.h8_c00163{height:43.771250pt;}
.h11_c00163{height:46.075000pt;}
.h5_c00163{height:48.378750pt;}
.ha_c00163{height:50.682500pt;}
.hf_c00163{height:52.986250pt;}
.he_c00163{height:55.290000pt;}
.h3_c00163{height:57.593750pt;}
.h10_c00163{height:59.897500pt;}
.h2_c00163{height:62.201250pt;}
.h1_c00163{height:1022.666667pt;}
.h0_c00163{height:1022.720000pt;}
.w1_c00163{width:702.666667pt;}
.w0_c00163{width:702.720000pt;}
.x0_c00163{left:0.000000pt;}
.x2_c00163{left:48.000000pt;}
.xc_c00163{left:49.920000pt;}
.x51_c00163{left:51.840000pt;}
.x20_c00163{left:76.800000pt;}
.x54_c00163{left:78.720000pt;}
.xd_c00163{left:86.400000pt;}
.x4f_c00163{left:96.000000pt;}
.x14_c00163{left:105.600000pt;}
.x2d_c00163{left:115.200000pt;}
.x3_c00163{left:124.160000pt;}
.xe_c00163{left:133.760000pt;}
.x30_c00163{left:144.000000pt;}
.x46_c00163{left:145.280000pt;}
.x43_c00163{left:151.680000pt;}
.x2e_c00163{left:153.600000pt;}
.x1a_c00163{left:161.280000pt;}
.x4_c00163{left:162.560000pt;}
.x34_c00163{left:170.880000pt;}
.x25_c00163{left:172.160000pt;}
.x3a_c00163{left:181.760000pt;}
.x15_c00163{left:200.320000pt;}
.x3f_c00163{left:209.280000pt;}
.x21_c00163{left:210.560000pt;}
.x35_c00163{left:219.520000pt;}
.x3b_c00163{left:220.800000pt;}
.x42_c00163{left:228.480000pt;}
.x4b_c00163{left:230.400000pt;}
.x2f_c00163{left:238.720000pt;}
.x1b_c00163{left:247.680000pt;}
.x5_c00163{left:257.280000pt;}
.xf_c00163{left:258.560000pt;}
.x38_c00163{left:267.520000pt;}
.x47_c00163{left:268.800000pt;}
.x52_c00163{left:278.400000pt;}
.x3c_c00163{left:286.720000pt;}
.x40_c00163{left:288.000000pt;}
.x48_c00163{left:296.320000pt;}
.x6_c00163{left:297.600000pt;}
.x1c_c00163{left:305.280000pt;}
.x53_c00163{left:306.560000pt;}
.x16_c00163{left:316.160000pt;}
.x26_c00163{left:325.760000pt;}
.x36_c00163{left:335.360000pt;}
.x1d_c00163{left:344.960000pt;}
.x27_c00163{left:353.920000pt;}
.x7_c00163{left:355.200000pt;}
.x37_c00163{left:363.520000pt;}
.x4c_c00163{left:364.800000pt;}
.x41_c00163{left:374.400000pt;}
.x8_c00163{left:384.000000pt;}
.x28_c00163{left:393.600000pt;}
.x44_c00163{left:403.200000pt;}
.x10_c00163{left:411.520000pt;}
.x55_c00163{left:412.800000pt;}
.x17_c00163{left:421.760000pt;}
.x31_c00163{left:430.720000pt;}
.x29_c00163{left:432.000000pt;}
.x50_c00163{left:433.280000pt;}
.x9_c00163{left:441.600000pt;}
.x18_c00163{left:450.560000pt;}
.x49_c00163{left:451.840000pt;}
.x22_c00163{left:460.800000pt;}
.xa_c00163{left:470.400000pt;}
.x39_c00163{left:480.000000pt;}
.x23_c00163{left:489.600000pt;}
.x11_c00163{left:490.880000pt;}
.x4d_c00163{left:499.840000pt;}
.x2a_c00163{left:508.800000pt;}
.x24_c00163{left:519.040000pt;}
.x19_c00163{left:528.000000pt;}
.x4a_c00163{left:537.600000pt;}
.x3d_c00163{left:538.880000pt;}
.x32_c00163{left:546.560000pt;}
.x1e_c00163{left:547.840000pt;}
.x45_c00163{left:556.800000pt;}
.x3e_c00163{left:566.400000pt;}
.x2b_c00163{left:567.680000pt;}
.x12_c00163{left:576.640000pt;}
.xb_c00163{left:584.960000pt;}
.x1f_c00163{left:586.240000pt;}
.x2c_c00163{left:597.120000pt;}
.x1_c00163{left:602.880000pt;}
.x13_c00163{left:605.440000pt;}
.x4e_c00163{left:606.720000pt;}
.x33_c00163{left:616.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7bcc992ab61b332e36f1baba.woff2')format("woff");}.ff1_c00164{font-family:ff1_c00164;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m57_c00164{transform:matrix(0.131575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131575,0.000000,0.000000,0.250000,0,0);}
.m0_c00164{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_c00164{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);}
.m33_c00164{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);}
.m4b_c00164{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m12_c00164{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m11_c00164{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m2_c00164{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m26_c00164{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m49_c00164{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m43_c00164{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m3_c00164{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00164{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m13_c00164{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);}
.m53_c00164{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);}
.m21_c00164{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m5_c00164{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m59_c00164{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m55_c00164{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);}
.me_c00164{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m4_c00164{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00164{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);}
.m4d_c00164{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m58_c00164{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.mf_c00164{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);}
.m2d_c00164{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m20_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);}
.m28_c00164{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00164{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m16_c00164{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00164{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);}
.m4c_c00164{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00164{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m37_c00164{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00164{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m48_c00164{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m6_c00164{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m27_c00164{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);}
.m56_c00164{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m35_c00164{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m38_c00164{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00164{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00164{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);}
.m30_c00164{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m45_c00164{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m22_c00164{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);}
.m8_c00164{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m29_c00164{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);}
.m3a_c00164{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m36_c00164{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.ma_c00164{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00164{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00164{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);}
.m41_c00164{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m31_c00164{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m52_c00164{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m19_c00164{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00164{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00164{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m42_c00164{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);}
.mc_c00164{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);}
.m25_c00164{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m17_c00164{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m40_c00164{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.mb_c00164{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);}
.m2b_c00164{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m23_c00164{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.md_c00164{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_c00164{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m50_c00164{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m34_c00164{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00164{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m14_c00164{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);}
.m2c_c00164{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);}
.m46_c00164{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00164{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m47_c00164{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m9_c00164{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m18_c00164{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m44_c00164{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m7_c00164{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00164{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);}
.m2f_c00164{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);}
.m10_c00164{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m39_c00164{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00164{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);}
.m15_c00164{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m24_c00164{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m54_c00164{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m1_c00164{transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);}
.m32_c00164{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);}
.v1_c00164{vertical-align:-2.880000px;}
.v0_c00164{vertical-align:0.000000px;}
.ls0_c00164{letter-spacing:0.000000px;}
.sc__c00164{text-shadow:none;}
.sc0_c00164{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00164{-webkit-text-stroke:0px transparent;}
.sc0_c00164{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00164{word-spacing:-2.843280px;}
.ws1_c00164{word-spacing:0.000000px;}
.fc0_c00164{color:transparent;}
.fs1_c00164{font-size:31.680000px;}
.fs6_c00164{font-size:34.560000px;}
.fs7_c00164{font-size:37.440000px;}
.fsc_c00164{font-size:40.320000px;}
.fs10_c00164{font-size:43.200000px;}
.fs5_c00164{font-size:46.080000px;}
.fs8_c00164{font-size:48.960000px;}
.fs2_c00164{font-size:51.840000px;}
.fs11_c00164{font-size:54.720000px;}
.fsa_c00164{font-size:57.600000px;}
.fs3_c00164{font-size:60.480000px;}
.fs4_c00164{font-size:63.360000px;}
.fse_c00164{font-size:66.240000px;}
.fsb_c00164{font-size:69.120000px;}
.fs9_c00164{font-size:72.000000px;}
.fsf_c00164{font-size:74.880000px;}
.fsd_c00164{font-size:77.760000px;}
.fs0_c00164{font-size:83.520000px;}
.y0_c00164{bottom:0.000000px;}
.y67_c00164{bottom:38.880000px;}
.y68_c00164{bottom:41.040000px;}
.y65_c00164{bottom:41.760000px;}
.y66_c00164{bottom:42.480000px;}
.y63_c00164{bottom:43.200000px;}
.y64_c00164{bottom:44.640000px;}
.y62_c00164{bottom:46.800000px;}
.y61_c00164{bottom:58.320000px;}
.y5f_c00164{bottom:79.200000px;}
.y5e_c00164{bottom:83.520000px;}
.y60_c00164{bottom:84.240000px;}
.y5d_c00164{bottom:84.960000px;}
.y5c_c00164{bottom:85.680000px;}
.y5b_c00164{bottom:86.400000px;}
.y5a_c00164{bottom:137.520000px;}
.y59_c00164{bottom:138.960000px;}
.y58_c00164{bottom:139.680000px;}
.y57_c00164{bottom:177.120000px;}
.y55_c00164{bottom:177.840000px;}
.y56_c00164{bottom:180.720000px;}
.y53_c00164{bottom:182.880000px;}
.y54_c00164{bottom:185.040000px;}
.y52_c00164{bottom:218.880000px;}
.y4e_c00164{bottom:221.040000px;}
.y51_c00164{bottom:223.200000px;}
.y50_c00164{bottom:223.920000px;}
.y4f_c00164{bottom:224.640000px;}
.y4d_c00164{bottom:226.800000px;}
.y4b_c00164{bottom:262.800000px;}
.y49_c00164{bottom:263.520000px;}
.y48_c00164{bottom:264.960000px;}
.y4c_c00164{bottom:265.680000px;}
.y4a_c00164{bottom:266.400000px;}
.y45_c00164{bottom:307.440000px;}
.y47_c00164{bottom:308.160000px;}
.y46_c00164{bottom:308.880000px;}
.y43_c00164{bottom:309.600000px;}
.y44_c00164{bottom:311.040000px;}
.y42_c00164{bottom:348.480000px;}
.y40_c00164{bottom:349.920000px;}
.y3f_c00164{bottom:351.360000px;}
.y41_c00164{bottom:352.080000px;}
.y3e_c00164{bottom:353.520000px;}
.y3b_c00164{bottom:392.400000px;}
.y3c_c00164{bottom:393.840000px;}
.y3d_c00164{bottom:394.560000px;}
.y3a_c00164{bottom:395.280000px;}
.y39_c00164{bottom:396.720000px;}
.y37_c00164{bottom:435.600000px;}
.y36_c00164{bottom:437.760000px;}
.y38_c00164{bottom:438.480000px;}
.y35_c00164{bottom:439.200000px;}
.y33_c00164{bottom:489.600000px;}
.y34_c00164{bottom:491.760000px;}
.y32_c00164{bottom:534.240000px;}
.y30_c00164{bottom:534.960000px;}
.y31_c00164{bottom:535.680000px;}
.y2c_c00164{bottom:573.840000px;}
.y2f_c00164{bottom:574.560000px;}
.y2d_c00164{bottom:575.280000px;}
.y2b_c00164{bottom:576.720000px;}
.y2a_c00164{bottom:577.440000px;}
.y2e_c00164{bottom:578.160000px;}
.y25_c00164{bottom:616.320000px;}
.y27_c00164{bottom:617.760000px;}
.y26_c00164{bottom:619.200000px;}
.y29_c00164{bottom:619.920000px;}
.y28_c00164{bottom:620.640000px;}
.y21_c00164{bottom:660.240000px;}
.y23_c00164{bottom:662.400000px;}
.y22_c00164{bottom:663.120000px;}
.y24_c00164{bottom:663.840000px;}
.y1e_c00164{bottom:703.440000px;}
.y1b_c00164{bottom:704.160000px;}
.y1c_c00164{bottom:704.880000px;}
.y1d_c00164{bottom:705.600000px;}
.y20_c00164{bottom:706.320000px;}
.y1f_c00164{bottom:707.040000px;}
.y1a_c00164{bottom:746.640000px;}
.y18_c00164{bottom:747.360000px;}
.y17_c00164{bottom:748.080000px;}
.y19_c00164{bottom:748.800000px;}
.y16_c00164{bottom:799.200000px;}
.y13_c00164{bottom:800.640000px;}
.y14_c00164{bottom:801.360000px;}
.y15_c00164{bottom:802.080000px;}
.yd_c00164{bottom:840.960000px;}
.yf_c00164{bottom:841.680000px;}
.y12_c00164{bottom:843.120000px;}
.ye_c00164{bottom:844.560000px;}
.y10_c00164{bottom:845.280000px;}
.y11_c00164{bottom:846.000000px;}
.yb_c00164{bottom:885.600000px;}
.ya_c00164{bottom:886.320000px;}
.y7_c00164{bottom:887.040000px;}
.y8_c00164{bottom:887.760000px;}
.yc_c00164{bottom:888.480000px;}
.y9_c00164{bottom:889.200000px;}
.y6_c00164{bottom:938.160000px;}
.y5_c00164{bottom:941.040000px;}
.y2_c00164{bottom:1002.960000px;}
.y3_c00164{bottom:1005.120000px;}
.y4_c00164{bottom:1005.840000px;}
.y1_c00164{bottom:1077.120000px;}
.h3_c00164{height:28.508906px;}
.h8_c00164{height:31.100625px;}
.h9_c00164{height:33.692344px;}
.he_c00164{height:36.284062px;}
.h12_c00164{height:38.875781px;}
.h7_c00164{height:41.467500px;}
.ha_c00164{height:44.059219px;}
.h4_c00164{height:46.650937px;}
.h13_c00164{height:49.242656px;}
.hc_c00164{height:51.834375px;}
.h5_c00164{height:54.426094px;}
.h6_c00164{height:57.017812px;}
.h10_c00164{height:59.609531px;}
.hd_c00164{height:62.201250px;}
.hb_c00164{height:64.792969px;}
.h11_c00164{height:67.384687px;}
.hf_c00164{height:69.976406px;}
.h2_c00164{height:75.159844px;}
.h1_c00164{height:1146.000000px;}
.h0_c00164{height:1146.240000px;}
.w1_c00164{width:783.750000px;}
.w0_c00164{width:784.080000px;}
.x0_c00164{left:0.000000px;}
.x12_c00164{left:53.280000px;}
.x2_c00164{left:54.720000px;}
.x35_c00164{left:56.160000px;}
.x47_c00164{left:57.600000px;}
.x46_c00164{left:77.040000px;}
.x1b_c00164{left:86.400000px;}
.x31_c00164{left:108.000000px;}
.x24_c00164{left:118.080000px;}
.x43_c00164{left:129.600000px;}
.x1c_c00164{left:139.680000px;}
.x25_c00164{left:151.200000px;}
.x7_c00164{left:159.840000px;}
.x40_c00164{left:161.280000px;}
.x32_c00164{left:170.640000px;}
.x3c_c00164{left:172.080000px;}
.x13_c00164{left:181.440000px;}
.x2b_c00164{left:192.240000px;}
.x8_c00164{left:193.680000px;}
.x26_c00164{left:203.040000px;}
.x5_c00164{left:215.280000px;}
.x14_c00164{left:225.360000px;}
.x2c_c00164{left:235.440000px;}
.x9_c00164{left:244.800000px;}
.x1f_c00164{left:246.240000px;}
.x48_c00164{left:247.680000px;}
.x1d_c00164{left:256.320000px;}
.x3_c00164{left:268.560000px;}
.x20_c00164{left:278.640000px;}
.x39_c00164{left:300.240000px;}
.x27_c00164{left:312.480000px;}
.x4_c00164{left:321.840000px;}
.x42_c00164{left:332.640000px;}
.x36_c00164{left:343.440000px;}
.x2d_c00164{left:352.800000px;}
.x6_c00164{left:354.240000px;}
.xa_c00164{left:365.040000px;}
.x3f_c00164{left:375.840000px;}
.x15_c00164{left:386.640000px;}
.x49_c00164{left:388.800000px;}
.x38_c00164{left:397.440000px;}
.xb_c00164{left:408.240000px;}
.x21_c00164{left:419.040000px;}
.x16_c00164{left:429.840000px;}
.x1e_c00164{left:440.640000px;}
.x2e_c00164{left:451.440000px;}
.x3a_c00164{left:452.880000px;}
.x17_c00164{left:463.680000px;}
.x4a_c00164{left:475.200000px;}
.xc_c00164{left:485.280000px;}
.x37_c00164{left:496.080000px;}
.x4b_c00164{left:504.000000px;}
.xd_c00164{left:506.160000px;}
.x3d_c00164{left:516.960000px;}
.x33_c00164{left:518.400000px;}
.x44_c00164{left:527.040000px;}
.x18_c00164{left:528.480000px;}
.x22_c00164{left:539.280000px;}
.x2f_c00164{left:548.640000px;}
.x3e_c00164{left:550.800000px;}
.x19_c00164{left:560.160000px;}
.x4c_c00164{left:562.320000px;}
.x23_c00164{left:571.680000px;}
.xe_c00164{left:582.480000px;}
.x45_c00164{left:594.000000px;}
.x1a_c00164{left:604.080000px;}
.xf_c00164{left:615.600000px;}
.x28_c00164{left:626.400000px;}
.x3b_c00164{left:637.200000px;}
.x29_c00164{left:648.000000px;}
.x4d_c00164{left:649.440000px;}
.x34_c00164{left:658.800000px;}
.x41_c00164{left:660.240000px;}
.x1_c00164{left:665.280000px;}
.x30_c00164{left:669.600000px;}
.x10_c00164{left:680.400000px;}
.x2a_c00164{left:691.920000px;}
.x11_c00164{left:713.520000px;}
@media print{
.v1_c00164{vertical-align:-2.560000pt;}
.v0_c00164{vertical-align:0.000000pt;}
.ls0_c00164{letter-spacing:0.000000pt;}
.ws0_c00164{word-spacing:-2.527360pt;}
.ws1_c00164{word-spacing:0.000000pt;}
.fs1_c00164{font-size:28.160000pt;}
.fs6_c00164{font-size:30.720000pt;}
.fs7_c00164{font-size:33.280000pt;}
.fsc_c00164{font-size:35.840000pt;}
.fs10_c00164{font-size:38.400000pt;}
.fs5_c00164{font-size:40.960000pt;}
.fs8_c00164{font-size:43.520000pt;}
.fs2_c00164{font-size:46.080000pt;}
.fs11_c00164{font-size:48.640000pt;}
.fsa_c00164{font-size:51.200000pt;}
.fs3_c00164{font-size:53.760000pt;}
.fs4_c00164{font-size:56.320000pt;}
.fse_c00164{font-size:58.880000pt;}
.fsb_c00164{font-size:61.440000pt;}
.fs9_c00164{font-size:64.000000pt;}
.fsf_c00164{font-size:66.560000pt;}
.fsd_c00164{font-size:69.120000pt;}
.fs0_c00164{font-size:74.240000pt;}
.y0_c00164{bottom:0.000000pt;}
.y67_c00164{bottom:34.560000pt;}
.y68_c00164{bottom:36.480000pt;}
.y65_c00164{bottom:37.120000pt;}
.y66_c00164{bottom:37.760000pt;}
.y63_c00164{bottom:38.400000pt;}
.y64_c00164{bottom:39.680000pt;}
.y62_c00164{bottom:41.600000pt;}
.y61_c00164{bottom:51.840000pt;}
.y5f_c00164{bottom:70.400000pt;}
.y5e_c00164{bottom:74.240000pt;}
.y60_c00164{bottom:74.880000pt;}
.y5d_c00164{bottom:75.520000pt;}
.y5c_c00164{bottom:76.160000pt;}
.y5b_c00164{bottom:76.800000pt;}
.y5a_c00164{bottom:122.240000pt;}
.y59_c00164{bottom:123.520000pt;}
.y58_c00164{bottom:124.160000pt;}
.y57_c00164{bottom:157.440000pt;}
.y55_c00164{bottom:158.080000pt;}
.y56_c00164{bottom:160.640000pt;}
.y53_c00164{bottom:162.560000pt;}
.y54_c00164{bottom:164.480000pt;}
.y52_c00164{bottom:194.560000pt;}
.y4e_c00164{bottom:196.480000pt;}
.y51_c00164{bottom:198.400000pt;}
.y50_c00164{bottom:199.040000pt;}
.y4f_c00164{bottom:199.680000pt;}
.y4d_c00164{bottom:201.600000pt;}
.y4b_c00164{bottom:233.600000pt;}
.y49_c00164{bottom:234.240000pt;}
.y48_c00164{bottom:235.520000pt;}
.y4c_c00164{bottom:236.160000pt;}
.y4a_c00164{bottom:236.800000pt;}
.y45_c00164{bottom:273.280000pt;}
.y47_c00164{bottom:273.920000pt;}
.y46_c00164{bottom:274.560000pt;}
.y43_c00164{bottom:275.200000pt;}
.y44_c00164{bottom:276.480000pt;}
.y42_c00164{bottom:309.760000pt;}
.y40_c00164{bottom:311.040000pt;}
.y3f_c00164{bottom:312.320000pt;}
.y41_c00164{bottom:312.960000pt;}
.y3e_c00164{bottom:314.240000pt;}
.y3b_c00164{bottom:348.800000pt;}
.y3c_c00164{bottom:350.080000pt;}
.y3d_c00164{bottom:350.720000pt;}
.y3a_c00164{bottom:351.360000pt;}
.y39_c00164{bottom:352.640000pt;}
.y37_c00164{bottom:387.200000pt;}
.y36_c00164{bottom:389.120000pt;}
.y38_c00164{bottom:389.760000pt;}
.y35_c00164{bottom:390.400000pt;}
.y33_c00164{bottom:435.200000pt;}
.y34_c00164{bottom:437.120000pt;}
.y32_c00164{bottom:474.880000pt;}
.y30_c00164{bottom:475.520000pt;}
.y31_c00164{bottom:476.160000pt;}
.y2c_c00164{bottom:510.080000pt;}
.y2f_c00164{bottom:510.720000pt;}
.y2d_c00164{bottom:511.360000pt;}
.y2b_c00164{bottom:512.640000pt;}
.y2a_c00164{bottom:513.280000pt;}
.y2e_c00164{bottom:513.920000pt;}
.y25_c00164{bottom:547.840000pt;}
.y27_c00164{bottom:549.120000pt;}
.y26_c00164{bottom:550.400000pt;}
.y29_c00164{bottom:551.040000pt;}
.y28_c00164{bottom:551.680000pt;}
.y21_c00164{bottom:586.880000pt;}
.y23_c00164{bottom:588.800000pt;}
.y22_c00164{bottom:589.440000pt;}
.y24_c00164{bottom:590.080000pt;}
.y1e_c00164{bottom:625.280000pt;}
.y1b_c00164{bottom:625.920000pt;}
.y1c_c00164{bottom:626.560000pt;}
.y1d_c00164{bottom:627.200000pt;}
.y20_c00164{bottom:627.840000pt;}
.y1f_c00164{bottom:628.480000pt;}
.y1a_c00164{bottom:663.680000pt;}
.y18_c00164{bottom:664.320000pt;}
.y17_c00164{bottom:664.960000pt;}
.y19_c00164{bottom:665.600000pt;}
.y16_c00164{bottom:710.400000pt;}
.y13_c00164{bottom:711.680000pt;}
.y14_c00164{bottom:712.320000pt;}
.y15_c00164{bottom:712.960000pt;}
.yd_c00164{bottom:747.520000pt;}
.yf_c00164{bottom:748.160000pt;}
.y12_c00164{bottom:749.440000pt;}
.ye_c00164{bottom:750.720000pt;}
.y10_c00164{bottom:751.360000pt;}
.y11_c00164{bottom:752.000000pt;}
.yb_c00164{bottom:787.200000pt;}
.ya_c00164{bottom:787.840000pt;}
.y7_c00164{bottom:788.480000pt;}
.y8_c00164{bottom:789.120000pt;}
.yc_c00164{bottom:789.760000pt;}
.y9_c00164{bottom:790.400000pt;}
.y6_c00164{bottom:833.920000pt;}
.y5_c00164{bottom:836.480000pt;}
.y2_c00164{bottom:891.520000pt;}
.y3_c00164{bottom:893.440000pt;}
.y4_c00164{bottom:894.080000pt;}
.y1_c00164{bottom:957.440000pt;}
.h3_c00164{height:25.341250pt;}
.h8_c00164{height:27.645000pt;}
.h9_c00164{height:29.948750pt;}
.he_c00164{height:32.252500pt;}
.h12_c00164{height:34.556250pt;}
.h7_c00164{height:36.860000pt;}
.ha_c00164{height:39.163750pt;}
.h4_c00164{height:41.467500pt;}
.h13_c00164{height:43.771250pt;}
.hc_c00164{height:46.075000pt;}
.h5_c00164{height:48.378750pt;}
.h6_c00164{height:50.682500pt;}
.h10_c00164{height:52.986250pt;}
.hd_c00164{height:55.290000pt;}
.hb_c00164{height:57.593750pt;}
.h11_c00164{height:59.897500pt;}
.hf_c00164{height:62.201250pt;}
.h2_c00164{height:66.808750pt;}
.h1_c00164{height:1018.666667pt;}
.h0_c00164{height:1018.880000pt;}
.w1_c00164{width:696.666667pt;}
.w0_c00164{width:696.960000pt;}
.x0_c00164{left:0.000000pt;}
.x12_c00164{left:47.360000pt;}
.x2_c00164{left:48.640000pt;}
.x35_c00164{left:49.920000pt;}
.x47_c00164{left:51.200000pt;}
.x46_c00164{left:68.480000pt;}
.x1b_c00164{left:76.800000pt;}
.x31_c00164{left:96.000000pt;}
.x24_c00164{left:104.960000pt;}
.x43_c00164{left:115.200000pt;}
.x1c_c00164{left:124.160000pt;}
.x25_c00164{left:134.400000pt;}
.x7_c00164{left:142.080000pt;}
.x40_c00164{left:143.360000pt;}
.x32_c00164{left:151.680000pt;}
.x3c_c00164{left:152.960000pt;}
.x13_c00164{left:161.280000pt;}
.x2b_c00164{left:170.880000pt;}
.x8_c00164{left:172.160000pt;}
.x26_c00164{left:180.480000pt;}
.x5_c00164{left:191.360000pt;}
.x14_c00164{left:200.320000pt;}
.x2c_c00164{left:209.280000pt;}
.x9_c00164{left:217.600000pt;}
.x1f_c00164{left:218.880000pt;}
.x48_c00164{left:220.160000pt;}
.x1d_c00164{left:227.840000pt;}
.x3_c00164{left:238.720000pt;}
.x20_c00164{left:247.680000pt;}
.x39_c00164{left:266.880000pt;}
.x27_c00164{left:277.760000pt;}
.x4_c00164{left:286.080000pt;}
.x42_c00164{left:295.680000pt;}
.x36_c00164{left:305.280000pt;}
.x2d_c00164{left:313.600000pt;}
.x6_c00164{left:314.880000pt;}
.xa_c00164{left:324.480000pt;}
.x3f_c00164{left:334.080000pt;}
.x15_c00164{left:343.680000pt;}
.x49_c00164{left:345.600000pt;}
.x38_c00164{left:353.280000pt;}
.xb_c00164{left:362.880000pt;}
.x21_c00164{left:372.480000pt;}
.x16_c00164{left:382.080000pt;}
.x1e_c00164{left:391.680000pt;}
.x2e_c00164{left:401.280000pt;}
.x3a_c00164{left:402.560000pt;}
.x17_c00164{left:412.160000pt;}
.x4a_c00164{left:422.400000pt;}
.xc_c00164{left:431.360000pt;}
.x37_c00164{left:440.960000pt;}
.x4b_c00164{left:448.000000pt;}
.xd_c00164{left:449.920000pt;}
.x3d_c00164{left:459.520000pt;}
.x33_c00164{left:460.800000pt;}
.x44_c00164{left:468.480000pt;}
.x18_c00164{left:469.760000pt;}
.x22_c00164{left:479.360000pt;}
.x2f_c00164{left:487.680000pt;}
.x3e_c00164{left:489.600000pt;}
.x19_c00164{left:497.920000pt;}
.x4c_c00164{left:499.840000pt;}
.x23_c00164{left:508.160000pt;}
.xe_c00164{left:517.760000pt;}
.x45_c00164{left:528.000000pt;}
.x1a_c00164{left:536.960000pt;}
.xf_c00164{left:547.200000pt;}
.x28_c00164{left:556.800000pt;}
.x3b_c00164{left:566.400000pt;}
.x29_c00164{left:576.000000pt;}
.x4d_c00164{left:577.280000pt;}
.x34_c00164{left:585.600000pt;}
.x41_c00164{left:586.880000pt;}
.x1_c00164{left:591.360000pt;}
.x30_c00164{left:595.200000pt;}
.x10_c00164{left:604.800000pt;}
.x2a_c00164{left:615.040000pt;}
.x11_c00164{left:634.240000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a04cae47d7f465957a9237b5.woff2')format("woff");}.ff1_c00165{font-family:ff1_c00165;line-height:1.109863;font-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_c00165{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m58_c00165{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m15_c00165{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m12_c00165{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_c00165{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m9_c00165{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00165{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);}
.m4a_c00165{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00165{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00165{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m19_c00165{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.mb_c00165{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m62_c00165{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m61_c00165{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m51_c00165{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m13_c00165{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m64_c00165{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);}
.m47_c00165{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m54_c00165{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m21_c00165{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1_c00165{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_c00165{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m35_c00165{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m18_c00165{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);}
.m2b_c00165{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00165{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m0_c00165{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);}
.m5d_c00165{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m60_c00165{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m46_c00165{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);}
.m1e_c00165{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);}
.m22_c00165{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m53_c00165{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);}
.m5_c00165{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m57_c00165{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);}
.m4e_c00165{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_c00165{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);}
.m6_c00165{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00165{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m26_c00165{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m33_c00165{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);}
.m2f_c00165{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m50_c00165{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);}
.m2d_c00165{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m66_c00165{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);}
.m1f_c00165{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);}
.m3d_c00165{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m10_c00165{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00165{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m23_c00165{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);}
.m42_c00165{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m38_c00165{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m39_c00165{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);}
.m1c_c00165{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m8_c00165{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);}
.m27_c00165{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m28_c00165{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00165{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m65_c00165{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m31_c00165{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);}
.me_c00165{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00165{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00165{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m32_c00165{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);}
.m2c_c00165{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.ma_c00165{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.mc_c00165{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m29_c00165{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);}
.m56_c00165{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);}
.m14_c00165{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m63_c00165{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m7_c00165{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);}
.m16_c00165{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00165{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m37_c00165{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m17_c00165{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);}
.m3a_c00165{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00165{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m25_c00165{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00165{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m4_c00165{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m20_c00165{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);}
.m2e_c00165{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m45_c00165{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);}
.m52_c00165{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m49_c00165{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00165{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00165{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m34_c00165{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m36_c00165{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m48_c00165{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);}
.m2_c00165{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);}
.m3_c00165{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);}
.m30_c00165{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00165{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m43_c00165{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.mf_c00165{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m24_c00165{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);}
.m44_c00165{transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);}
.m55_c00165{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m41_c00165{transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);}
.m59_c00165{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.md_c00165{transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);}
.v0_c00165{vertical-align:0.000000px;}
.ls0_c00165{letter-spacing:0.000000px;}
.sc__c00165{text-shadow:none;}
.sc0_c00165{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00165{-webkit-text-stroke:0px transparent;}
.sc0_c00165{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00165{word-spacing:0.000000px;}
.fc0_c00165{color:transparent;}
.fs3_c00165{font-size:34.560000px;}
.fs8_c00165{font-size:37.440000px;}
.fs2_c00165{font-size:40.320000px;}
.fse_c00165{font-size:43.200000px;}
.fsb_c00165{font-size:46.080000px;}
.fs4_c00165{font-size:48.960000px;}
.fs5_c00165{font-size:51.840000px;}
.fsf_c00165{font-size:54.720000px;}
.fsa_c00165{font-size:57.600000px;}
.fs1_c00165{font-size:60.480000px;}
.fsc_c00165{font-size:63.360000px;}
.fs7_c00165{font-size:66.240000px;}
.fs9_c00165{font-size:69.120000px;}
.fs6_c00165{font-size:72.000000px;}
.fs0_c00165{font-size:74.880000px;}
.fsd_c00165{font-size:95.040000px;}
.y0_c00165{bottom:0.000000px;}
.y82_c00165{bottom:83.520000px;}
.y81_c00165{bottom:85.680000px;}
.y7f_c00165{bottom:86.400000px;}
.y80_c00165{bottom:87.120000px;}
.y7e_c00165{bottom:89.280000px;}
.y7d_c00165{bottom:92.880000px;}
.y7c_c00165{bottom:123.840000px;}
.y77_c00165{bottom:127.440000px;}
.y7b_c00165{bottom:128.160000px;}
.y7a_c00165{bottom:128.880000px;}
.y79_c00165{bottom:129.600000px;}
.y78_c00165{bottom:130.320000px;}
.y76_c00165{bottom:131.760000px;}
.y75_c00165{bottom:133.920000px;}
.y73_c00165{bottom:167.760000px;}
.y72_c00165{bottom:168.480000px;}
.y6e_c00165{bottom:169.200000px;}
.y74_c00165{bottom:170.640000px;}
.y71_c00165{bottom:171.360000px;}
.y70_c00165{bottom:172.080000px;}
.y6f_c00165{bottom:172.800000px;}
.y6d_c00165{bottom:173.520000px;}
.y6c_c00165{bottom:174.960000px;}
.y6b_c00165{bottom:177.120000px;}
.y69_c00165{bottom:210.960000px;}
.y6a_c00165{bottom:212.400000px;}
.y68_c00165{bottom:213.840000px;}
.y67_c00165{bottom:214.560000px;}
.y66_c00165{bottom:216.000000px;}
.y65_c00165{bottom:217.440000px;}
.y64_c00165{bottom:218.880000px;}
.y63_c00165{bottom:252.720000px;}
.y61_c00165{bottom:255.600000px;}
.y5f_c00165{bottom:256.320000px;}
.y5e_c00165{bottom:257.040000px;}
.y62_c00165{bottom:257.760000px;}
.y60_c00165{bottom:258.480000px;}
.y5d_c00165{bottom:260.640000px;}
.y5c_c00165{bottom:297.360000px;}
.y5b_c00165{bottom:298.080000px;}
.y59_c00165{bottom:298.800000px;}
.y58_c00165{bottom:299.520000px;}
.y57_c00165{bottom:300.240000px;}
.y5a_c00165{bottom:300.960000px;}
.y56_c00165{bottom:303.840000px;}
.y53_c00165{bottom:341.280000px;}
.y50_c00165{bottom:342.000000px;}
.y55_c00165{bottom:342.720000px;}
.y54_c00165{bottom:343.440000px;}
.y52_c00165{bottom:344.160000px;}
.y51_c00165{bottom:344.880000px;}
.y4f_c00165{bottom:345.600000px;}
.y4e_c00165{bottom:346.320000px;}
.y4b_c00165{bottom:382.320000px;}
.y4a_c00165{bottom:383.760000px;}
.y49_c00165{bottom:384.480000px;}
.y4c_c00165{bottom:385.200000px;}
.y48_c00165{bottom:385.920000px;}
.y4d_c00165{bottom:386.640000px;}
.y47_c00165{bottom:388.080000px;}
.y43_c00165{bottom:426.960000px;}
.y45_c00165{bottom:428.400000px;}
.y46_c00165{bottom:429.120000px;}
.y44_c00165{bottom:429.840000px;}
.y42_c00165{bottom:430.560000px;}
.y41_c00165{bottom:431.280000px;}
.y3e_c00165{bottom:468.720000px;}
.y3f_c00165{bottom:469.440000px;}
.y3a_c00165{bottom:470.160000px;}
.y40_c00165{bottom:470.880000px;}
.y3c_c00165{bottom:472.320000px;}
.y3d_c00165{bottom:473.040000px;}
.y3b_c00165{bottom:473.760000px;}
.y37_c00165{bottom:511.920000px;}
.y39_c00165{bottom:514.080000px;}
.y36_c00165{bottom:514.800000px;}
.y38_c00165{bottom:515.520000px;}
.y35_c00165{bottom:516.240000px;}
.y32_c00165{bottom:555.120000px;}
.y33_c00165{bottom:555.840000px;}
.y34_c00165{bottom:557.280000px;}
.y31_c00165{bottom:558.000000px;}
.y30_c00165{bottom:558.720000px;}
.y2f_c00165{bottom:610.560000px;}
.y2e_c00165{bottom:611.280000px;}
.y2c_c00165{bottom:650.880000px;}
.y2b_c00165{bottom:651.600000px;}
.y2a_c00165{bottom:653.760000px;}
.y2d_c00165{bottom:654.480000px;}
.y27_c00165{bottom:693.360000px;}
.y28_c00165{bottom:694.800000px;}
.y26_c00165{bottom:695.520000px;}
.y24_c00165{bottom:696.240000px;}
.y25_c00165{bottom:696.960000px;}
.y29_c00165{bottom:697.680000px;}
.y22_c00165{bottom:736.560000px;}
.y23_c00165{bottom:738.720000px;}
.y21_c00165{bottom:739.440000px;}
.y20_c00165{bottom:740.160000px;}
.y1f_c00165{bottom:791.280000px;}
.y1d_c00165{bottom:792.000000px;}
.y1e_c00165{bottom:792.720000px;}
.y19_c00165{bottom:833.040000px;}
.y18_c00165{bottom:834.480000px;}
.y1b_c00165{bottom:835.200000px;}
.y1a_c00165{bottom:835.920000px;}
.y1c_c00165{bottom:836.640000px;}
.y12_c00165{bottom:874.080000px;}
.y14_c00165{bottom:874.800000px;}
.y15_c00165{bottom:875.520000px;}
.y13_c00165{bottom:877.680000px;}
.y16_c00165{bottom:878.400000px;}
.y17_c00165{bottom:879.120000px;}
.ye_c00165{bottom:918.000000px;}
.y10_c00165{bottom:918.720000px;}
.yc_c00165{bottom:919.440000px;}
.yd_c00165{bottom:920.160000px;}
.yf_c00165{bottom:921.600000px;}
.y11_c00165{bottom:922.320000px;}
.y8_c00165{bottom:960.480000px;}
.y6_c00165{bottom:961.200000px;}
.yb_c00165{bottom:961.920000px;}
.y7_c00165{bottom:962.640000px;}
.y9_c00165{bottom:964.080000px;}
.ya_c00165{bottom:964.800000px;}
.y2_c00165{bottom:1004.400000px;}
.y3_c00165{bottom:1005.840000px;}
.y4_c00165{bottom:1007.280000px;}
.y5_c00165{bottom:1008.000000px;}
.y1_c00165{bottom:1095.120000px;}
.h5_c00165{height:31.100625px;}
.ha_c00165{height:33.692344px;}
.h4_c00165{height:36.284062px;}
.h10_c00165{height:38.875781px;}
.hd_c00165{height:41.467500px;}
.h6_c00165{height:44.059219px;}
.h7_c00165{height:46.650937px;}
.h11_c00165{height:49.242656px;}
.hc_c00165{height:51.834375px;}
.h3_c00165{height:54.426094px;}
.he_c00165{height:57.017812px;}
.h9_c00165{height:59.609531px;}
.hb_c00165{height:62.201250px;}
.h8_c00165{height:64.792969px;}
.h2_c00165{height:67.384687px;}
.hf_c00165{height:85.526719px;}
.h1_c00165{height:1151.250000px;}
.h0_c00165{height:1151.280000px;}
.w1_c00165{width:791.250000px;}
.w0_c00165{width:791.280000px;}
.x0_c00165{left:0.000000px;}
.x38_c00165{left:55.440000px;}
.x2_c00165{left:56.880000px;}
.x45_c00165{left:58.320000px;}
.xd_c00165{left:88.560000px;}
.x29_c00165{left:97.920000px;}
.x47_c00165{left:99.360000px;}
.x34_c00165{left:108.000000px;}
.x25_c00165{left:118.800000px;}
.x3_c00165{left:120.240000px;}
.x1e_c00165{left:128.880000px;}
.xe_c00165{left:130.320000px;}
.x39_c00165{left:138.960000px;}
.x41_c00165{left:140.400000px;}
.x2e_c00165{left:150.480000px;}
.x4_c00165{left:161.280000px;}
.x2a_c00165{left:162.720000px;}
.x1f_c00165{left:172.800000px;}
.x2f_c00165{left:183.600000px;}
.x5_c00165{left:194.400000px;}
.x42_c00165{left:204.480000px;}
.x30_c00165{left:215.280000px;}
.x44_c00165{left:225.360000px;}
.xf_c00165{left:226.800000px;}
.x48_c00165{left:236.880000px;}
.x26_c00165{left:247.680000px;}
.x46_c00165{left:257.760000px;}
.x31_c00165{left:259.200000px;}
.x6_c00165{left:270.000000px;}
.x27_c00165{left:279.360000px;}
.x3e_c00165{left:280.800000px;}
.x4a_c00165{left:289.440000px;}
.x10_c00165{left:291.600000px;}
.x20_c00165{left:301.680000px;}
.x19_c00165{left:313.200000px;}
.x2b_c00165{left:321.840000px;}
.x3a_c00165{left:323.280000px;}
.x11_c00165{left:334.080000px;}
.x1a_c00165{left:344.880000px;}
.x4b_c00165{left:354.960000px;}
.x12_c00165{left:356.400000px;}
.x28_c00165{left:367.200000px;}
.x2c_c00165{left:377.280000px;}
.x13_c00165{left:388.080000px;}
.x7_c00165{left:399.600000px;}
.x21_c00165{left:409.680000px;}
.x32_c00165{left:420.480000px;}
.x14_c00165{left:432.000000px;}
.x36_c00165{left:442.800000px;}
.x8_c00165{left:454.320000px;}
.x15_c00165{left:465.120000px;}
.x9_c00165{left:475.200000px;}
.x3b_c00165{left:476.640000px;}
.x4c_c00165{left:486.000000px;}
.xa_c00165{left:507.600000px;}
.x16_c00165{left:519.120000px;}
.x49_c00165{left:529.920000px;}
.x3f_c00165{left:540.720000px;}
.x3c_c00165{left:542.160000px;}
.x22_c00165{left:551.520000px;}
.x2d_c00165{left:562.320000px;}
.x17_c00165{left:572.400000px;}
.x37_c00165{left:583.920000px;}
.x33_c00165{left:594.720000px;}
.x18_c00165{left:616.320000px;}
.x3d_c00165{left:617.760000px;}
.xb_c00165{left:627.840000px;}
.x40_c00165{left:637.920000px;}
.x35_c00165{left:639.360000px;}
.x23_c00165{left:650.160000px;}
.x1b_c00165{left:660.240000px;}
.xc_c00165{left:669.600000px;}
.x43_c00165{left:671.040000px;}
.x1c_c00165{left:681.840000px;}
.x24_c00165{left:693.360000px;}
.x1_c00165{left:694.800000px;}
.x1d_c00165{left:714.960000px;}
@media print{
.v0_c00165{vertical-align:0.000000pt;}
.ls0_c00165{letter-spacing:0.000000pt;}
.ws0_c00165{word-spacing:0.000000pt;}
.fs3_c00165{font-size:30.720000pt;}
.fs8_c00165{font-size:33.280000pt;}
.fs2_c00165{font-size:35.840000pt;}
.fse_c00165{font-size:38.400000pt;}
.fsb_c00165{font-size:40.960000pt;}
.fs4_c00165{font-size:43.520000pt;}
.fs5_c00165{font-size:46.080000pt;}
.fsf_c00165{font-size:48.640000pt;}
.fsa_c00165{font-size:51.200000pt;}
.fs1_c00165{font-size:53.760000pt;}
.fsc_c00165{font-size:56.320000pt;}
.fs7_c00165{font-size:58.880000pt;}
.fs9_c00165{font-size:61.440000pt;}
.fs6_c00165{font-size:64.000000pt;}
.fs0_c00165{font-size:66.560000pt;}
.fsd_c00165{font-size:84.480000pt;}
.y0_c00165{bottom:0.000000pt;}
.y82_c00165{bottom:74.240000pt;}
.y81_c00165{bottom:76.160000pt;}
.y7f_c00165{bottom:76.800000pt;}
.y80_c00165{bottom:77.440000pt;}
.y7e_c00165{bottom:79.360000pt;}
.y7d_c00165{bottom:82.560000pt;}
.y7c_c00165{bottom:110.080000pt;}
.y77_c00165{bottom:113.280000pt;}
.y7b_c00165{bottom:113.920000pt;}
.y7a_c00165{bottom:114.560000pt;}
.y79_c00165{bottom:115.200000pt;}
.y78_c00165{bottom:115.840000pt;}
.y76_c00165{bottom:117.120000pt;}
.y75_c00165{bottom:119.040000pt;}
.y73_c00165{bottom:149.120000pt;}
.y72_c00165{bottom:149.760000pt;}
.y6e_c00165{bottom:150.400000pt;}
.y74_c00165{bottom:151.680000pt;}
.y71_c00165{bottom:152.320000pt;}
.y70_c00165{bottom:152.960000pt;}
.y6f_c00165{bottom:153.600000pt;}
.y6d_c00165{bottom:154.240000pt;}
.y6c_c00165{bottom:155.520000pt;}
.y6b_c00165{bottom:157.440000pt;}
.y69_c00165{bottom:187.520000pt;}
.y6a_c00165{bottom:188.800000pt;}
.y68_c00165{bottom:190.080000pt;}
.y67_c00165{bottom:190.720000pt;}
.y66_c00165{bottom:192.000000pt;}
.y65_c00165{bottom:193.280000pt;}
.y64_c00165{bottom:194.560000pt;}
.y63_c00165{bottom:224.640000pt;}
.y61_c00165{bottom:227.200000pt;}
.y5f_c00165{bottom:227.840000pt;}
.y5e_c00165{bottom:228.480000pt;}
.y62_c00165{bottom:229.120000pt;}
.y60_c00165{bottom:229.760000pt;}
.y5d_c00165{bottom:231.680000pt;}
.y5c_c00165{bottom:264.320000pt;}
.y5b_c00165{bottom:264.960000pt;}
.y59_c00165{bottom:265.600000pt;}
.y58_c00165{bottom:266.240000pt;}
.y57_c00165{bottom:266.880000pt;}
.y5a_c00165{bottom:267.520000pt;}
.y56_c00165{bottom:270.080000pt;}
.y53_c00165{bottom:303.360000pt;}
.y50_c00165{bottom:304.000000pt;}
.y55_c00165{bottom:304.640000pt;}
.y54_c00165{bottom:305.280000pt;}
.y52_c00165{bottom:305.920000pt;}
.y51_c00165{bottom:306.560000pt;}
.y4f_c00165{bottom:307.200000pt;}
.y4e_c00165{bottom:307.840000pt;}
.y4b_c00165{bottom:339.840000pt;}
.y4a_c00165{bottom:341.120000pt;}
.y49_c00165{bottom:341.760000pt;}
.y4c_c00165{bottom:342.400000pt;}
.y48_c00165{bottom:343.040000pt;}
.y4d_c00165{bottom:343.680000pt;}
.y47_c00165{bottom:344.960000pt;}
.y43_c00165{bottom:379.520000pt;}
.y45_c00165{bottom:380.800000pt;}
.y46_c00165{bottom:381.440000pt;}
.y44_c00165{bottom:382.080000pt;}
.y42_c00165{bottom:382.720000pt;}
.y41_c00165{bottom:383.360000pt;}
.y3e_c00165{bottom:416.640000pt;}
.y3f_c00165{bottom:417.280000pt;}
.y3a_c00165{bottom:417.920000pt;}
.y40_c00165{bottom:418.560000pt;}
.y3c_c00165{bottom:419.840000pt;}
.y3d_c00165{bottom:420.480000pt;}
.y3b_c00165{bottom:421.120000pt;}
.y37_c00165{bottom:455.040000pt;}
.y39_c00165{bottom:456.960000pt;}
.y36_c00165{bottom:457.600000pt;}
.y38_c00165{bottom:458.240000pt;}
.y35_c00165{bottom:458.880000pt;}
.y32_c00165{bottom:493.440000pt;}
.y33_c00165{bottom:494.080000pt;}
.y34_c00165{bottom:495.360000pt;}
.y31_c00165{bottom:496.000000pt;}
.y30_c00165{bottom:496.640000pt;}
.y2f_c00165{bottom:542.720000pt;}
.y2e_c00165{bottom:543.360000pt;}
.y2c_c00165{bottom:578.560000pt;}
.y2b_c00165{bottom:579.200000pt;}
.y2a_c00165{bottom:581.120000pt;}
.y2d_c00165{bottom:581.760000pt;}
.y27_c00165{bottom:616.320000pt;}
.y28_c00165{bottom:617.600000pt;}
.y26_c00165{bottom:618.240000pt;}
.y24_c00165{bottom:618.880000pt;}
.y25_c00165{bottom:619.520000pt;}
.y29_c00165{bottom:620.160000pt;}
.y22_c00165{bottom:654.720000pt;}
.y23_c00165{bottom:656.640000pt;}
.y21_c00165{bottom:657.280000pt;}
.y20_c00165{bottom:657.920000pt;}
.y1f_c00165{bottom:703.360000pt;}
.y1d_c00165{bottom:704.000000pt;}
.y1e_c00165{bottom:704.640000pt;}
.y19_c00165{bottom:740.480000pt;}
.y18_c00165{bottom:741.760000pt;}
.y1b_c00165{bottom:742.400000pt;}
.y1a_c00165{bottom:743.040000pt;}
.y1c_c00165{bottom:743.680000pt;}
.y12_c00165{bottom:776.960000pt;}
.y14_c00165{bottom:777.600000pt;}
.y15_c00165{bottom:778.240000pt;}
.y13_c00165{bottom:780.160000pt;}
.y16_c00165{bottom:780.800000pt;}
.y17_c00165{bottom:781.440000pt;}
.ye_c00165{bottom:816.000000pt;}
.y10_c00165{bottom:816.640000pt;}
.yc_c00165{bottom:817.280000pt;}
.yd_c00165{bottom:817.920000pt;}
.yf_c00165{bottom:819.200000pt;}
.y11_c00165{bottom:819.840000pt;}
.y8_c00165{bottom:853.760000pt;}
.y6_c00165{bottom:854.400000pt;}
.yb_c00165{bottom:855.040000pt;}
.y7_c00165{bottom:855.680000pt;}
.y9_c00165{bottom:856.960000pt;}
.ya_c00165{bottom:857.600000pt;}
.y2_c00165{bottom:892.800000pt;}
.y3_c00165{bottom:894.080000pt;}
.y4_c00165{bottom:895.360000pt;}
.y5_c00165{bottom:896.000000pt;}
.y1_c00165{bottom:973.440000pt;}
.h5_c00165{height:27.645000pt;}
.ha_c00165{height:29.948750pt;}
.h4_c00165{height:32.252500pt;}
.h10_c00165{height:34.556250pt;}
.hd_c00165{height:36.860000pt;}
.h6_c00165{height:39.163750pt;}
.h7_c00165{height:41.467500pt;}
.h11_c00165{height:43.771250pt;}
.hc_c00165{height:46.075000pt;}
.h3_c00165{height:48.378750pt;}
.he_c00165{height:50.682500pt;}
.h9_c00165{height:52.986250pt;}
.hb_c00165{height:55.290000pt;}
.h8_c00165{height:57.593750pt;}
.h2_c00165{height:59.897500pt;}
.hf_c00165{height:76.023750pt;}
.h1_c00165{height:1023.333333pt;}
.h0_c00165{height:1023.360000pt;}
.w1_c00165{width:703.333333pt;}
.w0_c00165{width:703.360000pt;}
.x0_c00165{left:0.000000pt;}
.x38_c00165{left:49.280000pt;}
.x2_c00165{left:50.560000pt;}
.x45_c00165{left:51.840000pt;}
.xd_c00165{left:78.720000pt;}
.x29_c00165{left:87.040000pt;}
.x47_c00165{left:88.320000pt;}
.x34_c00165{left:96.000000pt;}
.x25_c00165{left:105.600000pt;}
.x3_c00165{left:106.880000pt;}
.x1e_c00165{left:114.560000pt;}
.xe_c00165{left:115.840000pt;}
.x39_c00165{left:123.520000pt;}
.x41_c00165{left:124.800000pt;}
.x2e_c00165{left:133.760000pt;}
.x4_c00165{left:143.360000pt;}
.x2a_c00165{left:144.640000pt;}
.x1f_c00165{left:153.600000pt;}
.x2f_c00165{left:163.200000pt;}
.x5_c00165{left:172.800000pt;}
.x42_c00165{left:181.760000pt;}
.x30_c00165{left:191.360000pt;}
.x44_c00165{left:200.320000pt;}
.xf_c00165{left:201.600000pt;}
.x48_c00165{left:210.560000pt;}
.x26_c00165{left:220.160000pt;}
.x46_c00165{left:229.120000pt;}
.x31_c00165{left:230.400000pt;}
.x6_c00165{left:240.000000pt;}
.x27_c00165{left:248.320000pt;}
.x3e_c00165{left:249.600000pt;}
.x4a_c00165{left:257.280000pt;}
.x10_c00165{left:259.200000pt;}
.x20_c00165{left:268.160000pt;}
.x19_c00165{left:278.400000pt;}
.x2b_c00165{left:286.080000pt;}
.x3a_c00165{left:287.360000pt;}
.x11_c00165{left:296.960000pt;}
.x1a_c00165{left:306.560000pt;}
.x4b_c00165{left:315.520000pt;}
.x12_c00165{left:316.800000pt;}
.x28_c00165{left:326.400000pt;}
.x2c_c00165{left:335.360000pt;}
.x13_c00165{left:344.960000pt;}
.x7_c00165{left:355.200000pt;}
.x21_c00165{left:364.160000pt;}
.x32_c00165{left:373.760000pt;}
.x14_c00165{left:384.000000pt;}
.x36_c00165{left:393.600000pt;}
.x8_c00165{left:403.840000pt;}
.x15_c00165{left:413.440000pt;}
.x9_c00165{left:422.400000pt;}
.x3b_c00165{left:423.680000pt;}
.x4c_c00165{left:432.000000pt;}
.xa_c00165{left:451.200000pt;}
.x16_c00165{left:461.440000pt;}
.x49_c00165{left:471.040000pt;}
.x3f_c00165{left:480.640000pt;}
.x3c_c00165{left:481.920000pt;}
.x22_c00165{left:490.240000pt;}
.x2d_c00165{left:499.840000pt;}
.x17_c00165{left:508.800000pt;}
.x37_c00165{left:519.040000pt;}
.x33_c00165{left:528.640000pt;}
.x18_c00165{left:547.840000pt;}
.x3d_c00165{left:549.120000pt;}
.xb_c00165{left:558.080000pt;}
.x40_c00165{left:567.040000pt;}
.x35_c00165{left:568.320000pt;}
.x23_c00165{left:577.920000pt;}
.x1b_c00165{left:586.880000pt;}
.xc_c00165{left:595.200000pt;}
.x43_c00165{left:596.480000pt;}
.x1c_c00165{left:606.080000pt;}
.x24_c00165{left:616.320000pt;}
.x1_c00165{left:617.600000pt;}
.x1d_c00165{left:635.520000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0c22c2ce14f87ce7117c1cf6.woff2')format("woff");}.ff1_c00166{font-family:ff1_c00166;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m45_c00166{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);}
.m56_c00166{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m57_c00166{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m34_c00166{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00166{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m46_c00166{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m21_c00166{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m38_c00166{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m25_c00166{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00166{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00166{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m1_c00166{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00166{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);}
.m3e_c00166{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m8_c00166{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00166{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_c00166{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00166{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);}
.m40_c00166{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m12_c00166{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m4_c00166{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m2_c00166{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m32_c00166{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);}
.m2f_c00166{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m18_c00166{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m23_c00166{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00166{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.ma_c00166{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);}
.m4f_c00166{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m33_c00166{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00166{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);}
.m35_c00166{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m22_c00166{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m15_c00166{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00166{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00166{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m54_c00166{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);}
.m5_c00166{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m0_c00166{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);}
.m14_c00166{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00166{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);}
.m3f_c00166{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m29_c00166{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m55_c00166{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m7_c00166{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00166{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);}
.m3a_c00166{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m36_c00166{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00166{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);}
.m51_c00166{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.md_c00166{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);}
.mb_c00166{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m59_c00166{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m52_c00166{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00166{transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);}
.m28_c00166{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00166{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.me_c00166{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);}
.m4c_c00166{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m24_c00166{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m19_c00166{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.mc_c00166{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m43_c00166{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m10_c00166{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);}
.m13_c00166{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m26_c00166{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m6_c00166{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);}
.m9_c00166{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m11_c00166{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00166{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m20_c00166{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);}
.m48_c00166{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m53_c00166{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m41_c00166{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m50_c00166{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.mf_c00166{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);}
.m27_c00166{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m3_c00166{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m17_c00166{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m44_c00166{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00166{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m47_c00166{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m16_c00166{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m31_c00166{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);}
.m49_c00166{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m39_c00166{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m42_c00166{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m58_c00166{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.m30_c00166{transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);}
.m37_c00166{transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);}
.v2_c00166{vertical-align:-11.520000px;}
.v1_c00166{vertical-align:-2.880000px;}
.v0_c00166{vertical-align:0.000000px;}
.ls0_c00166{letter-spacing:0.000000px;}
.sc__c00166{text-shadow:none;}
.sc0_c00166{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00166{-webkit-text-stroke:0px transparent;}
.sc0_c00166{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00166{word-spacing:-5.471040px;}
.ws0_c00166{word-spacing:-4.800125px;}
.ws4_c00166{word-spacing:0.000000px;}
.ws2_c00166{word-spacing:4.337297px;}
.ws1_c00166{word-spacing:8.470800px;}
.fc0_c00166{color:transparent;}
.fs6_c00166{font-size:34.560000px;}
.fs8_c00166{font-size:37.440000px;}
.fsa_c00166{font-size:43.200000px;}
.fs7_c00166{font-size:46.080000px;}
.fs2_c00166{font-size:48.960000px;}
.fs3_c00166{font-size:51.840000px;}
.fsc_c00166{font-size:54.720000px;}
.fs9_c00166{font-size:57.600000px;}
.fs4_c00166{font-size:60.480000px;}
.fs1_c00166{font-size:63.360000px;}
.fs5_c00166{font-size:66.240000px;}
.fsb_c00166{font-size:69.120000px;}
.fs0_c00166{font-size:72.000000px;}
.fsd_c00166{font-size:74.880000px;}
.y0_c00166{bottom:0.000000px;}
.y7a_c00166{bottom:71.280000px;}
.y76_c00166{bottom:74.160000px;}
.y79_c00166{bottom:75.600000px;}
.y78_c00166{bottom:76.320000px;}
.y77_c00166{bottom:77.040000px;}
.y75_c00166{bottom:77.760000px;}
.y74_c00166{bottom:78.480000px;}
.y73_c00166{bottom:79.920000px;}
.y72_c00166{bottom:113.040000px;}
.y71_c00166{bottom:115.200000px;}
.y6d_c00166{bottom:117.360000px;}
.y70_c00166{bottom:118.080000px;}
.y6f_c00166{bottom:118.800000px;}
.y6e_c00166{bottom:119.520000px;}
.y6c_c00166{bottom:120.240000px;}
.y6a_c00166{bottom:157.680000px;}
.y6b_c00166{bottom:159.840000px;}
.y69_c00166{bottom:161.280000px;}
.y68_c00166{bottom:162.000000px;}
.y67_c00166{bottom:162.720000px;}
.y66_c00166{bottom:163.440000px;}
.y65_c00166{bottom:214.560000px;}
.y64_c00166{bottom:216.000000px;}
.y63_c00166{bottom:216.720000px;}
.y62_c00166{bottom:217.440000px;}
.y61_c00166{bottom:253.440000px;}
.y5f_c00166{bottom:254.160000px;}
.y5e_c00166{bottom:254.880000px;}
.y5c_c00166{bottom:255.600000px;}
.y5d_c00166{bottom:256.320000px;}
.y60_c00166{bottom:257.040000px;}
.y5b_c00166{bottom:259.200000px;}
.y5a_c00166{bottom:260.640000px;}
.y59_c00166{bottom:296.640000px;}
.y56_c00166{bottom:298.800000px;}
.y55_c00166{bottom:299.520000px;}
.y58_c00166{bottom:300.240000px;}
.y57_c00166{bottom:300.960000px;}
.y54_c00166{bottom:302.400000px;}
.y53_c00166{bottom:303.120000px;}
.y52_c00166{bottom:303.840000px;}
.y51_c00166{bottom:339.120000px;}
.y50_c00166{bottom:340.560000px;}
.y4c_c00166{bottom:342.000000px;}
.y4f_c00166{bottom:342.720000px;}
.y4e_c00166{bottom:343.440000px;}
.y4d_c00166{bottom:344.160000px;}
.y4b_c00166{bottom:344.880000px;}
.y4a_c00166{bottom:345.600000px;}
.y46_c00166{bottom:394.560000px;}
.y48_c00166{bottom:395.280000px;}
.y49_c00166{bottom:396.720000px;}
.y47_c00166{bottom:397.440000px;}
.y45_c00166{bottom:398.880000px;}
.y44_c00166{bottom:437.040000px;}
.y41_c00166{bottom:437.760000px;}
.y43_c00166{bottom:439.200000px;}
.y42_c00166{bottom:439.920000px;}
.y40_c00166{bottom:440.640000px;}
.y3f_c00166{bottom:442.080000px;}
.y3e_c00166{bottom:479.520000px;}
.y3b_c00166{bottom:480.240000px;}
.y3d_c00166{bottom:482.400000px;}
.y3c_c00166{bottom:483.120000px;}
.y3a_c00166{bottom:483.840000px;}
.y36_c00166{bottom:522.720000px;}
.y38_c00166{bottom:523.440000px;}
.y33_c00166{bottom:524.160000px;}
.y39_c00166{bottom:524.880000px;}
.y37_c00166{bottom:525.600000px;}
.y35_c00166{bottom:526.320000px;}
.y34_c00166{bottom:527.040000px;}
.y32_c00166{bottom:564.480000px;}
.y30_c00166{bottom:565.920000px;}
.y31_c00166{bottom:568.080000px;}
.y2f_c00166{bottom:568.800000px;}
.y2c_c00166{bottom:609.120000px;}
.y2d_c00166{bottom:611.280000px;}
.y2e_c00166{bottom:612.000000px;}
.y2a_c00166{bottom:651.600000px;}
.y2b_c00166{bottom:653.040000px;}
.y28_c00166{bottom:653.760000px;}
.y29_c00166{bottom:654.480000px;}
.y26_c00166{bottom:694.080000px;}
.y25_c00166{bottom:694.800000px;}
.y23_c00166{bottom:696.240000px;}
.y24_c00166{bottom:696.960000px;}
.y27_c00166{bottom:697.680000px;}
.y21_c00166{bottom:736.560000px;}
.y1f_c00166{bottom:738.720000px;}
.y20_c00166{bottom:739.440000px;}
.y22_c00166{bottom:740.160000px;}
.y1a_c00166{bottom:778.320000px;}
.y1b_c00166{bottom:779.040000px;}
.y1e_c00166{bottom:779.760000px;}
.y19_c00166{bottom:780.480000px;}
.y1c_c00166{bottom:781.920000px;}
.y1d_c00166{bottom:782.640000px;}
.y17_c00166{bottom:822.960000px;}
.y15_c00166{bottom:824.400000px;}
.y16_c00166{bottom:825.120000px;}
.y18_c00166{bottom:825.840000px;}
.y14_c00166{bottom:876.960000px;}
.y11_c00166{bottom:917.280000px;}
.yd_c00166{bottom:918.720000px;}
.ye_c00166{bottom:919.440000px;}
.yf_c00166{bottom:920.160000px;}
.y10_c00166{bottom:920.880000px;}
.y12_c00166{bottom:921.600000px;}
.y13_c00166{bottom:922.320000px;}
.ya_c00166{bottom:960.480000px;}
.y8_c00166{bottom:961.920000px;}
.y9_c00166{bottom:963.360000px;}
.yb_c00166{bottom:964.080000px;}
.yc_c00166{bottom:964.800000px;}
.y2_c00166{bottom:1002.240000px;}
.y5_c00166{bottom:1003.680000px;}
.y3_c00166{bottom:1005.120000px;}
.y4_c00166{bottom:1006.560000px;}
.y7_c00166{bottom:1007.280000px;}
.y6_c00166{bottom:1008.000000px;}
.y1_c00166{bottom:1078.560000px;}
.h8_c00166{height:31.100625px;}
.ha_c00166{height:33.692344px;}
.hc_c00166{height:38.875781px;}
.h9_c00166{height:41.467500px;}
.h4_c00166{height:44.059219px;}
.h5_c00166{height:46.650937px;}
.he_c00166{height:49.242656px;}
.hb_c00166{height:51.834375px;}
.h6_c00166{height:54.426094px;}
.h3_c00166{height:57.017812px;}
.h7_c00166{height:59.609531px;}
.hd_c00166{height:62.201250px;}
.h2_c00166{height:64.792969px;}
.hf_c00166{height:67.384687px;}
.h1_c00166{height:1146.750000px;}
.h0_c00166{height:1146.960000px;}
.w1_c00166{width:784.500000px;}
.w0_c00166{width:784.800000px;}
.x0_c00166{left:0.000000px;}
.x2_c00166{left:51.840000px;}
.x42_c00166{left:53.280000px;}
.x4d_c00166{left:55.440000px;}
.x1f_c00166{left:82.080000px;}
.x2b_c00166{left:84.240000px;}
.x13_c00166{left:92.880000px;}
.x30_c00166{left:94.320000px;}
.xb_c00166{left:103.680000px;}
.x25_c00166{left:115.200000px;}
.x49_c00166{left:126.720000px;}
.x37_c00166{left:136.080000px;}
.x40_c00166{left:137.520000px;}
.x26_c00166{left:146.880000px;}
.x1a_c00166{left:157.680000px;}
.x4b_c00166{left:159.840000px;}
.x3b_c00166{left:168.480000px;}
.x3_c00166{left:179.280000px;}
.x1b_c00166{left:190.080000px;}
.x38_c00166{left:200.880000px;}
.x4_c00166{left:210.960000px;}
.x4c_c00166{left:212.400000px;}
.xc_c00166{left:222.480000px;}
.x3c_c00166{left:233.280000px;}
.x5_c00166{left:243.360000px;}
.x47_c00166{left:244.800000px;}
.x44_c00166{left:254.160000px;}
.x20_c00166{left:265.680000px;}
.x31_c00166{left:275.040000px;}
.x27_c00166{left:276.480000px;}
.xd_c00166{left:285.840000px;}
.x4a_c00166{left:287.280000px;}
.x14_c00166{left:298.080000px;}
.x28_c00166{left:308.160000px;}
.x4e_c00166{left:309.600000px;}
.x21_c00166{left:318.960000px;}
.x15_c00166{left:329.760000px;}
.xe_c00166{left:341.280000px;}
.x32_c00166{left:350.640000px;}
.x46_c00166{left:352.080000px;}
.x6_c00166{left:362.160000px;}
.x3d_c00166{left:375.120000px;}
.x22_c00166{left:384.480000px;}
.x2c_c00166{left:396.000000px;}
.x33_c00166{left:417.600000px;}
.x16_c00166{left:427.680000px;}
.x1c_c00166{left:437.760000px;}
.x4f_c00166{left:439.200000px;}
.x29_c00166{left:460.800000px;}
.x7_c00166{left:470.880000px;}
.x48_c00166{left:472.320000px;}
.xf_c00166{left:482.400000px;}
.x8_c00166{left:492.480000px;}
.x23_c00166{left:503.280000px;}
.x45_c00166{left:505.440000px;}
.x2d_c00166{left:514.800000px;}
.x34_c00166{left:516.240000px;}
.x10_c00166{left:524.880000px;}
.x39_c00166{left:526.320000px;}
.x17_c00166{left:536.400000px;}
.x2e_c00166{left:547.200000px;}
.x1d_c00166{left:557.280000px;}
.x43_c00166{left:558.720000px;}
.x11_c00166{left:568.080000px;}
.x3e_c00166{left:569.520000px;}
.x24_c00166{left:590.400000px;}
.x3a_c00166{left:591.840000px;}
.x2a_c00166{left:602.640000px;}
.x9_c00166{left:612.000000px;}
.x41_c00166{left:613.440000px;}
.x35_c00166{left:624.240000px;}
.x18_c00166{left:632.880000px;}
.x1e_c00166{left:634.320000px;}
.xa_c00166{left:644.400000px;}
.x3f_c00166{left:645.840000px;}
.x2f_c00166{left:656.640000px;}
.x12_c00166{left:667.440000px;}
.x19_c00166{left:676.800000px;}
.x1_c00166{left:678.960000px;}
.x36_c00166{left:689.040000px;}
@media print{
.v2_c00166{vertical-align:-10.240000pt;}
.v1_c00166{vertical-align:-2.560000pt;}
.v0_c00166{vertical-align:0.000000pt;}
.ls0_c00166{letter-spacing:0.000000pt;}
.ws3_c00166{word-spacing:-4.863147pt;}
.ws0_c00166{word-spacing:-4.266778pt;}
.ws4_c00166{word-spacing:0.000000pt;}
.ws2_c00166{word-spacing:3.855375pt;}
.ws1_c00166{word-spacing:7.529600pt;}
.fs6_c00166{font-size:30.720000pt;}
.fs8_c00166{font-size:33.280000pt;}
.fsa_c00166{font-size:38.400000pt;}
.fs7_c00166{font-size:40.960000pt;}
.fs2_c00166{font-size:43.520000pt;}
.fs3_c00166{font-size:46.080000pt;}
.fsc_c00166{font-size:48.640000pt;}
.fs9_c00166{font-size:51.200000pt;}
.fs4_c00166{font-size:53.760000pt;}
.fs1_c00166{font-size:56.320000pt;}
.fs5_c00166{font-size:58.880000pt;}
.fsb_c00166{font-size:61.440000pt;}
.fs0_c00166{font-size:64.000000pt;}
.fsd_c00166{font-size:66.560000pt;}
.y0_c00166{bottom:0.000000pt;}
.y7a_c00166{bottom:63.360000pt;}
.y76_c00166{bottom:65.920000pt;}
.y79_c00166{bottom:67.200000pt;}
.y78_c00166{bottom:67.840000pt;}
.y77_c00166{bottom:68.480000pt;}
.y75_c00166{bottom:69.120000pt;}
.y74_c00166{bottom:69.760000pt;}
.y73_c00166{bottom:71.040000pt;}
.y72_c00166{bottom:100.480000pt;}
.y71_c00166{bottom:102.400000pt;}
.y6d_c00166{bottom:104.320000pt;}
.y70_c00166{bottom:104.960000pt;}
.y6f_c00166{bottom:105.600000pt;}
.y6e_c00166{bottom:106.240000pt;}
.y6c_c00166{bottom:106.880000pt;}
.y6a_c00166{bottom:140.160000pt;}
.y6b_c00166{bottom:142.080000pt;}
.y69_c00166{bottom:143.360000pt;}
.y68_c00166{bottom:144.000000pt;}
.y67_c00166{bottom:144.640000pt;}
.y66_c00166{bottom:145.280000pt;}
.y65_c00166{bottom:190.720000pt;}
.y64_c00166{bottom:192.000000pt;}
.y63_c00166{bottom:192.640000pt;}
.y62_c00166{bottom:193.280000pt;}
.y61_c00166{bottom:225.280000pt;}
.y5f_c00166{bottom:225.920000pt;}
.y5e_c00166{bottom:226.560000pt;}
.y5c_c00166{bottom:227.200000pt;}
.y5d_c00166{bottom:227.840000pt;}
.y60_c00166{bottom:228.480000pt;}
.y5b_c00166{bottom:230.400000pt;}
.y5a_c00166{bottom:231.680000pt;}
.y59_c00166{bottom:263.680000pt;}
.y56_c00166{bottom:265.600000pt;}
.y55_c00166{bottom:266.240000pt;}
.y58_c00166{bottom:266.880000pt;}
.y57_c00166{bottom:267.520000pt;}
.y54_c00166{bottom:268.800000pt;}
.y53_c00166{bottom:269.440000pt;}
.y52_c00166{bottom:270.080000pt;}
.y51_c00166{bottom:301.440000pt;}
.y50_c00166{bottom:302.720000pt;}
.y4c_c00166{bottom:304.000000pt;}
.y4f_c00166{bottom:304.640000pt;}
.y4e_c00166{bottom:305.280000pt;}
.y4d_c00166{bottom:305.920000pt;}
.y4b_c00166{bottom:306.560000pt;}
.y4a_c00166{bottom:307.200000pt;}
.y46_c00166{bottom:350.720000pt;}
.y48_c00166{bottom:351.360000pt;}
.y49_c00166{bottom:352.640000pt;}
.y47_c00166{bottom:353.280000pt;}
.y45_c00166{bottom:354.560000pt;}
.y44_c00166{bottom:388.480000pt;}
.y41_c00166{bottom:389.120000pt;}
.y43_c00166{bottom:390.400000pt;}
.y42_c00166{bottom:391.040000pt;}
.y40_c00166{bottom:391.680000pt;}
.y3f_c00166{bottom:392.960000pt;}
.y3e_c00166{bottom:426.240000pt;}
.y3b_c00166{bottom:426.880000pt;}
.y3d_c00166{bottom:428.800000pt;}
.y3c_c00166{bottom:429.440000pt;}
.y3a_c00166{bottom:430.080000pt;}
.y36_c00166{bottom:464.640000pt;}
.y38_c00166{bottom:465.280000pt;}
.y33_c00166{bottom:465.920000pt;}
.y39_c00166{bottom:466.560000pt;}
.y37_c00166{bottom:467.200000pt;}
.y35_c00166{bottom:467.840000pt;}
.y34_c00166{bottom:468.480000pt;}
.y32_c00166{bottom:501.760000pt;}
.y30_c00166{bottom:503.040000pt;}
.y31_c00166{bottom:504.960000pt;}
.y2f_c00166{bottom:505.600000pt;}
.y2c_c00166{bottom:541.440000pt;}
.y2d_c00166{bottom:543.360000pt;}
.y2e_c00166{bottom:544.000000pt;}
.y2a_c00166{bottom:579.200000pt;}
.y2b_c00166{bottom:580.480000pt;}
.y28_c00166{bottom:581.120000pt;}
.y29_c00166{bottom:581.760000pt;}
.y26_c00166{bottom:616.960000pt;}
.y25_c00166{bottom:617.600000pt;}
.y23_c00166{bottom:618.880000pt;}
.y24_c00166{bottom:619.520000pt;}
.y27_c00166{bottom:620.160000pt;}
.y21_c00166{bottom:654.720000pt;}
.y1f_c00166{bottom:656.640000pt;}
.y20_c00166{bottom:657.280000pt;}
.y22_c00166{bottom:657.920000pt;}
.y1a_c00166{bottom:691.840000pt;}
.y1b_c00166{bottom:692.480000pt;}
.y1e_c00166{bottom:693.120000pt;}
.y19_c00166{bottom:693.760000pt;}
.y1c_c00166{bottom:695.040000pt;}
.y1d_c00166{bottom:695.680000pt;}
.y17_c00166{bottom:731.520000pt;}
.y15_c00166{bottom:732.800000pt;}
.y16_c00166{bottom:733.440000pt;}
.y18_c00166{bottom:734.080000pt;}
.y14_c00166{bottom:779.520000pt;}
.y11_c00166{bottom:815.360000pt;}
.yd_c00166{bottom:816.640000pt;}
.ye_c00166{bottom:817.280000pt;}
.yf_c00166{bottom:817.920000pt;}
.y10_c00166{bottom:818.560000pt;}
.y12_c00166{bottom:819.200000pt;}
.y13_c00166{bottom:819.840000pt;}
.ya_c00166{bottom:853.760000pt;}
.y8_c00166{bottom:855.040000pt;}
.y9_c00166{bottom:856.320000pt;}
.yb_c00166{bottom:856.960000pt;}
.yc_c00166{bottom:857.600000pt;}
.y2_c00166{bottom:890.880000pt;}
.y5_c00166{bottom:892.160000pt;}
.y3_c00166{bottom:893.440000pt;}
.y4_c00166{bottom:894.720000pt;}
.y7_c00166{bottom:895.360000pt;}
.y6_c00166{bottom:896.000000pt;}
.y1_c00166{bottom:958.720000pt;}
.h8_c00166{height:27.645000pt;}
.ha_c00166{height:29.948750pt;}
.hc_c00166{height:34.556250pt;}
.h9_c00166{height:36.860000pt;}
.h4_c00166{height:39.163750pt;}
.h5_c00166{height:41.467500pt;}
.he_c00166{height:43.771250pt;}
.hb_c00166{height:46.075000pt;}
.h6_c00166{height:48.378750pt;}
.h3_c00166{height:50.682500pt;}
.h7_c00166{height:52.986250pt;}
.hd_c00166{height:55.290000pt;}
.h2_c00166{height:57.593750pt;}
.hf_c00166{height:59.897500pt;}
.h1_c00166{height:1019.333333pt;}
.h0_c00166{height:1019.520000pt;}
.w1_c00166{width:697.333333pt;}
.w0_c00166{width:697.600000pt;}
.x0_c00166{left:0.000000pt;}
.x2_c00166{left:46.080000pt;}
.x42_c00166{left:47.360000pt;}
.x4d_c00166{left:49.280000pt;}
.x1f_c00166{left:72.960000pt;}
.x2b_c00166{left:74.880000pt;}
.x13_c00166{left:82.560000pt;}
.x30_c00166{left:83.840000pt;}
.xb_c00166{left:92.160000pt;}
.x25_c00166{left:102.400000pt;}
.x49_c00166{left:112.640000pt;}
.x37_c00166{left:120.960000pt;}
.x40_c00166{left:122.240000pt;}
.x26_c00166{left:130.560000pt;}
.x1a_c00166{left:140.160000pt;}
.x4b_c00166{left:142.080000pt;}
.x3b_c00166{left:149.760000pt;}
.x3_c00166{left:159.360000pt;}
.x1b_c00166{left:168.960000pt;}
.x38_c00166{left:178.560000pt;}
.x4_c00166{left:187.520000pt;}
.x4c_c00166{left:188.800000pt;}
.xc_c00166{left:197.760000pt;}
.x3c_c00166{left:207.360000pt;}
.x5_c00166{left:216.320000pt;}
.x47_c00166{left:217.600000pt;}
.x44_c00166{left:225.920000pt;}
.x20_c00166{left:236.160000pt;}
.x31_c00166{left:244.480000pt;}
.x27_c00166{left:245.760000pt;}
.xd_c00166{left:254.080000pt;}
.x4a_c00166{left:255.360000pt;}
.x14_c00166{left:264.960000pt;}
.x28_c00166{left:273.920000pt;}
.x4e_c00166{left:275.200000pt;}
.x21_c00166{left:283.520000pt;}
.x15_c00166{left:293.120000pt;}
.xe_c00166{left:303.360000pt;}
.x32_c00166{left:311.680000pt;}
.x46_c00166{left:312.960000pt;}
.x6_c00166{left:321.920000pt;}
.x3d_c00166{left:333.440000pt;}
.x22_c00166{left:341.760000pt;}
.x2c_c00166{left:352.000000pt;}
.x33_c00166{left:371.200000pt;}
.x16_c00166{left:380.160000pt;}
.x1c_c00166{left:389.120000pt;}
.x4f_c00166{left:390.400000pt;}
.x29_c00166{left:409.600000pt;}
.x7_c00166{left:418.560000pt;}
.x48_c00166{left:419.840000pt;}
.xf_c00166{left:428.800000pt;}
.x8_c00166{left:437.760000pt;}
.x23_c00166{left:447.360000pt;}
.x45_c00166{left:449.280000pt;}
.x2d_c00166{left:457.600000pt;}
.x34_c00166{left:458.880000pt;}
.x10_c00166{left:466.560000pt;}
.x39_c00166{left:467.840000pt;}
.x17_c00166{left:476.800000pt;}
.x2e_c00166{left:486.400000pt;}
.x1d_c00166{left:495.360000pt;}
.x43_c00166{left:496.640000pt;}
.x11_c00166{left:504.960000pt;}
.x3e_c00166{left:506.240000pt;}
.x24_c00166{left:524.800000pt;}
.x3a_c00166{left:526.080000pt;}
.x2a_c00166{left:535.680000pt;}
.x9_c00166{left:544.000000pt;}
.x41_c00166{left:545.280000pt;}
.x35_c00166{left:554.880000pt;}
.x18_c00166{left:562.560000pt;}
.x1e_c00166{left:563.840000pt;}
.xa_c00166{left:572.800000pt;}
.x3f_c00166{left:574.080000pt;}
.x2f_c00166{left:583.680000pt;}
.x12_c00166{left:593.280000pt;}
.x19_c00166{left:601.600000pt;}
.x1_c00166{left:603.520000pt;}
.x36_c00166{left:612.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_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_0600458231e45f26b266d181.woff2')format("woff");}.ff1_c00167{font-family:ff1_c00167;line-height:1.109863;font-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_c00167{transform:matrix(0.195850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195850,0.000000,0.000000,0.250000,0,0);}
.m0_c00167{transform:matrix(0.215825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215825,0.000000,0.000000,0.250000,0,0);}
.m2_c00167{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m19_c00167{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);}
.m58_c00167{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);}
.m27_c00167{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m47_c00167{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m3_c00167{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m40_c00167{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00167{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00167{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00167{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m41_c00167{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.md_c00167{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00167{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);}
.m5a_c00167{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00167{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m26_c00167{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_c00167{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00167{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);}
.m3b_c00167{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m15_c00167{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);}
.m34_c00167{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m5_c00167{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);}
.m3f_c00167{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);}
.m4_c00167{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_c00167{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00167{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.ma_c00167{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m37_c00167{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);}
.m28_c00167{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m49_c00167{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m14_c00167{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m30_c00167{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m12_c00167{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m7_c00167{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);}
.m2c_c00167{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00167{transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);}
.m6_c00167{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);}
.m35_c00167{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m23_c00167{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m10_c00167{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m11_c00167{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);}
.me_c00167{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m22_c00167{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);}
.m42_c00167{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);}
.m4e_c00167{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m48_c00167{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m44_c00167{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00167{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m24_c00167{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);}
.m8_c00167{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m39_c00167{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m16_c00167{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);}
.m2e_c00167{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m33_c00167{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m32_c00167{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m18_c00167{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m52_c00167{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m50_c00167{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);}
.m2f_c00167{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00167{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m17_c00167{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);}
.m31_c00167{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00167{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00167{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.mc_c00167{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_c00167{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m29_c00167{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00167{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m54_c00167{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m45_c00167{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.mf_c00167{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00167{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);}
.m56_c00167{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00167{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00167{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m20_c00167{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m43_c00167{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m57_c00167{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m46_c00167{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m59_c00167{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);}
.m13_c00167{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);}
.m25_c00167{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);}
.mb_c00167{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m36_c00167{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m21_c00167{transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);}
.m53_c00167{transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);}
.m51_c00167{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m38_c00167{transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);}
.m55_c00167{transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);}
.v0_c00167{vertical-align:0.000000px;}
.v1_c00167{vertical-align:2.880000px;}
.ls0_c00167{letter-spacing:0.000000px;}
.sc__c00167{text-shadow:none;}
.sc0_c00167{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00167{-webkit-text-stroke:0px transparent;}
.sc0_c00167{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00167{word-spacing:0.000000px;}
.ws0_c00167{word-spacing:3.167040px;}
.fc0_c00167{color:transparent;}
.fs8_c00167{font-size:34.560000px;}
.fs7_c00167{font-size:37.440000px;}
.fsa_c00167{font-size:40.320000px;}
.fs9_c00167{font-size:43.200000px;}
.fs6_c00167{font-size:46.080000px;}
.fs3_c00167{font-size:48.960000px;}
.fs4_c00167{font-size:51.840000px;}
.fsc_c00167{font-size:54.720000px;}
.fsd_c00167{font-size:57.600000px;}
.fs5_c00167{font-size:60.480000px;}
.fs2_c00167{font-size:63.360000px;}
.fs1_c00167{font-size:66.240000px;}
.fsb_c00167{font-size:69.120000px;}
.fs0_c00167{font-size:72.000000px;}
.y0_c00167{bottom:0.000000px;}
.y19_c00167{bottom:72.000000px;}
.y1a_c00167{bottom:72.720000px;}
.y15_c00167{bottom:74.160000px;}
.y1b_c00167{bottom:74.880000px;}
.y18_c00167{bottom:76.320000px;}
.y17_c00167{bottom:77.040000px;}
.y16_c00167{bottom:77.760000px;}
.y14_c00167{bottom:115.200000px;}
.y13_c00167{bottom:116.640000px;}
.y11_c00167{bottom:118.080000px;}
.y12_c00167{bottom:120.240000px;}
.y10_c00167{bottom:121.680000px;}
.yf_c00167{bottom:123.840000px;}
.yc_c00167{bottom:159.840000px;}
.ye_c00167{bottom:160.560000px;}
.yd_c00167{bottom:161.280000px;}
.yb_c00167{bottom:162.720000px;}
.ya_c00167{bottom:164.160000px;}
.y9_c00167{bottom:165.600000px;}
.y6_c00167{bottom:202.320000px;}
.y5_c00167{bottom:203.040000px;}
.y7_c00167{bottom:203.760000px;}
.y8_c00167{bottom:204.480000px;}
.y4_c00167{bottom:205.200000px;}
.y3_c00167{bottom:206.640000px;}
.y73_c00167{bottom:257.760000px;}
.y72_c00167{bottom:259.200000px;}
.y71_c00167{bottom:298.080000px;}
.y6e_c00167{bottom:298.800000px;}
.y70_c00167{bottom:300.240000px;}
.y6f_c00167{bottom:300.960000px;}
.y6d_c00167{bottom:301.680000px;}
.y6c_c00167{bottom:302.400000px;}
.y6a_c00167{bottom:303.120000px;}
.y6b_c00167{bottom:303.840000px;}
.y67_c00167{bottom:340.560000px;}
.y68_c00167{bottom:342.000000px;}
.y69_c00167{bottom:343.440000px;}
.y66_c00167{bottom:344.160000px;}
.y65_c00167{bottom:344.880000px;}
.y64_c00167{bottom:345.600000px;}
.y62_c00167{bottom:384.480000px;}
.y63_c00167{bottom:386.640000px;}
.y60_c00167{bottom:387.360000px;}
.y61_c00167{bottom:388.080000px;}
.y5e_c00167{bottom:427.680000px;}
.y5f_c00167{bottom:429.120000px;}
.y5d_c00167{bottom:429.840000px;}
.y5c_c00167{bottom:430.560000px;}
.y5b_c00167{bottom:431.280000px;}
.y5a_c00167{bottom:469.440000px;}
.y59_c00167{bottom:472.320000px;}
.y58_c00167{bottom:473.040000px;}
.y57_c00167{bottom:523.440000px;}
.y55_c00167{bottom:526.320000px;}
.y56_c00167{bottom:527.040000px;}
.y53_c00167{bottom:565.920000px;}
.y54_c00167{bottom:566.640000px;}
.y51_c00167{bottom:568.800000px;}
.y52_c00167{bottom:569.520000px;}
.y4f_c00167{bottom:608.400000px;}
.y50_c00167{bottom:609.120000px;}
.y4c_c00167{bottom:609.840000px;}
.y4d_c00167{bottom:611.280000px;}
.y4e_c00167{bottom:612.000000px;}
.y4a_c00167{bottom:651.600000px;}
.y4b_c00167{bottom:652.320000px;}
.y46_c00167{bottom:653.040000px;}
.y48_c00167{bottom:653.760000px;}
.y49_c00167{bottom:654.480000px;}
.y47_c00167{bottom:655.200000px;}
.y42_c00167{bottom:694.800000px;}
.y45_c00167{bottom:695.520000px;}
.y41_c00167{bottom:696.960000px;}
.y43_c00167{bottom:697.680000px;}
.y44_c00167{bottom:698.400000px;}
.y3c_c00167{bottom:736.560000px;}
.y3d_c00167{bottom:737.280000px;}
.y3f_c00167{bottom:738.000000px;}
.y3e_c00167{bottom:740.160000px;}
.y40_c00167{bottom:740.880000px;}
.y37_c00167{bottom:779.760000px;}
.y38_c00167{bottom:781.200000px;}
.y35_c00167{bottom:781.920000px;}
.y36_c00167{bottom:782.640000px;}
.y39_c00167{bottom:783.360000px;}
.y3b_c00167{bottom:784.080000px;}
.y3a_c00167{bottom:784.800000px;}
.y33_c00167{bottom:824.400000px;}
.y30_c00167{bottom:825.120000px;}
.y31_c00167{bottom:825.840000px;}
.y32_c00167{bottom:826.560000px;}
.y34_c00167{bottom:827.280000px;}
.y2e_c00167{bottom:877.680000px;}
.y2f_c00167{bottom:878.400000px;}
.y28_c00167{bottom:918.000000px;}
.y27_c00167{bottom:919.440000px;}
.y2a_c00167{bottom:920.160000px;}
.y2d_c00167{bottom:920.880000px;}
.y29_c00167{bottom:922.320000px;}
.y2b_c00167{bottom:923.040000px;}
.y2c_c00167{bottom:923.760000px;}
.y23_c00167{bottom:961.920000px;}
.y21_c00167{bottom:962.640000px;}
.y22_c00167{bottom:964.080000px;}
.y26_c00167{bottom:964.800000px;}
.y24_c00167{bottom:965.520000px;}
.y25_c00167{bottom:966.240000px;}
.y1c_c00167{bottom:1003.680000px;}
.y20_c00167{bottom:1006.560000px;}
.y1d_c00167{bottom:1007.280000px;}
.y1f_c00167{bottom:1008.000000px;}
.y1e_c00167{bottom:1008.720000px;}
.y2_c00167{bottom:1088.640000px;}
.y1_c00167{bottom:1089.360000px;}
.ha_c00167{height:31.100625px;}
.h9_c00167{height:33.692344px;}
.hd_c00167{height:33.980625px;}
.hc_c00167{height:36.284062px;}
.hb_c00167{height:38.875781px;}
.h8_c00167{height:41.467500px;}
.h5_c00167{height:44.059219px;}
.h6_c00167{height:46.650937px;}
.hf_c00167{height:49.242656px;}
.h10_c00167{height:51.834375px;}
.h7_c00167{height:54.426094px;}
.h4_c00167{height:57.017812px;}
.h3_c00167{height:59.609531px;}
.he_c00167{height:62.201250px;}
.h2_c00167{height:64.792969px;}
.h0_c00167{height:1152.720000px;}
.h1_c00167{height:1152.750000px;}
.w0_c00167{width:792.720000px;}
.w1_c00167{width:792.750000px;}
.x0_c00167{left:0.000000px;}
.x3f_c00167{left:57.600000px;}
.xe_c00167{left:59.040000px;}
.x21_c00167{left:79.920000px;}
.xf_c00167{left:89.280000px;}
.x43_c00167{left:100.080000px;}
.x16_c00167{left:109.440000px;}
.x25_c00167{left:110.880000px;}
.x10_c00167{left:121.680000px;}
.x33_c00167{left:131.760000px;}
.x26_c00167{left:142.560000px;}
.x3a_c00167{left:152.640000px;}
.x34_c00167{left:162.720000px;}
.x4_c00167{left:164.160000px;}
.x27_c00167{left:174.240000px;}
.x17_c00167{left:184.320000px;}
.x5_c00167{left:194.400000px;}
.x49_c00167{left:195.840000px;}
.x35_c00167{left:205.200000px;}
.x4b_c00167{left:216.720000px;}
.x4c_c00167{left:218.160000px;}
.x11_c00167{left:227.520000px;}
.x18_c00167{left:238.320000px;}
.x6_c00167{left:249.840000px;}
.x2f_c00167{left:259.200000px;}
.x1b_c00167{left:260.640000px;}
.x47_c00167{left:271.440000px;}
.x22_c00167{left:282.240000px;}
.x1c_c00167{left:291.600000px;}
.x19_c00167{left:293.760000px;}
.x3b_c00167{left:303.120000px;}
.x44_c00167{left:313.200000px;}
.x40_c00167{left:314.640000px;}
.x36_c00167{left:324.720000px;}
.x23_c00167{left:335.520000px;}
.x48_c00167{left:346.320000px;}
.x12_c00167{left:356.400000px;}
.x7_c00167{left:367.920000px;}
.x37_c00167{left:369.360000px;}
.x1d_c00167{left:378.720000px;}
.x28_c00167{left:390.240000px;}
.x13_c00167{left:400.320000px;}
.x3c_c00167{left:401.760000px;}
.x8_c00167{left:411.120000px;}
.x30_c00167{left:421.920000px;}
.x1e_c00167{left:434.160000px;}
.x41_c00167{left:455.040000px;}
.x4e_c00167{left:465.120000px;}
.x9_c00167{left:466.560000px;}
.x45_c00167{left:475.200000px;}
.x2c_c00167{left:477.360000px;}
.x3d_c00167{left:486.720000px;}
.x4a_c00167{left:488.160000px;}
.x38_c00167{left:498.240000px;}
.x29_c00167{left:509.760000px;}
.x46_c00167{left:520.560000px;}
.xa_c00167{left:531.360000px;}
.x4f_c00167{left:542.160000px;}
.x2a_c00167{left:553.680000px;}
.xb_c00167{left:563.760000px;}
.x3e_c00167{left:574.560000px;}
.x31_c00167{left:583.920000px;}
.x1f_c00167{left:585.360000px;}
.x39_c00167{left:586.800000px;}
.x14_c00167{left:595.440000px;}
.x24_c00167{left:607.680000px;}
.x2b_c00167{left:618.480000px;}
.x20_c00167{left:629.280000px;}
.x2d_c00167{left:639.360000px;}
.x1a_c00167{left:641.520000px;}
.x42_c00167{left:650.160000px;}
.x4d_c00167{left:651.600000px;}
.xc_c00167{left:662.400000px;}
.x32_c00167{left:671.760000px;}
.x15_c00167{left:673.920000px;}
.x2e_c00167{left:683.280000px;}
.x1_c00167{left:688.320000px;}
.xd_c00167{left:694.800000px;}
.x2_c00167{left:706.320000px;}
.x3_c00167{left:724.320000px;}
@media print{
.v0_c00167{vertical-align:0.000000pt;}
.v1_c00167{vertical-align:2.560000pt;}
.ls0_c00167{letter-spacing:0.000000pt;}
.ws1_c00167{word-spacing:0.000000pt;}
.ws0_c00167{word-spacing:2.815147pt;}
.fs8_c00167{font-size:30.720000pt;}
.fs7_c00167{font-size:33.280000pt;}
.fsa_c00167{font-size:35.840000pt;}
.fs9_c00167{font-size:38.400000pt;}
.fs6_c00167{font-size:40.960000pt;}
.fs3_c00167{font-size:43.520000pt;}
.fs4_c00167{font-size:46.080000pt;}
.fsc_c00167{font-size:48.640000pt;}
.fsd_c00167{font-size:51.200000pt;}
.fs5_c00167{font-size:53.760000pt;}
.fs2_c00167{font-size:56.320000pt;}
.fs1_c00167{font-size:58.880000pt;}
.fsb_c00167{font-size:61.440000pt;}
.fs0_c00167{font-size:64.000000pt;}
.y0_c00167{bottom:0.000000pt;}
.y19_c00167{bottom:64.000000pt;}
.y1a_c00167{bottom:64.640000pt;}
.y15_c00167{bottom:65.920000pt;}
.y1b_c00167{bottom:66.560000pt;}
.y18_c00167{bottom:67.840000pt;}
.y17_c00167{bottom:68.480000pt;}
.y16_c00167{bottom:69.120000pt;}
.y14_c00167{bottom:102.400000pt;}
.y13_c00167{bottom:103.680000pt;}
.y11_c00167{bottom:104.960000pt;}
.y12_c00167{bottom:106.880000pt;}
.y10_c00167{bottom:108.160000pt;}
.yf_c00167{bottom:110.080000pt;}
.yc_c00167{bottom:142.080000pt;}
.ye_c00167{bottom:142.720000pt;}
.yd_c00167{bottom:143.360000pt;}
.yb_c00167{bottom:144.640000pt;}
.ya_c00167{bottom:145.920000pt;}
.y9_c00167{bottom:147.200000pt;}
.y6_c00167{bottom:179.840000pt;}
.y5_c00167{bottom:180.480000pt;}
.y7_c00167{bottom:181.120000pt;}
.y8_c00167{bottom:181.760000pt;}
.y4_c00167{bottom:182.400000pt;}
.y3_c00167{bottom:183.680000pt;}
.y73_c00167{bottom:229.120000pt;}
.y72_c00167{bottom:230.400000pt;}
.y71_c00167{bottom:264.960000pt;}
.y6e_c00167{bottom:265.600000pt;}
.y70_c00167{bottom:266.880000pt;}
.y6f_c00167{bottom:267.520000pt;}
.y6d_c00167{bottom:268.160000pt;}
.y6c_c00167{bottom:268.800000pt;}
.y6a_c00167{bottom:269.440000pt;}
.y6b_c00167{bottom:270.080000pt;}
.y67_c00167{bottom:302.720000pt;}
.y68_c00167{bottom:304.000000pt;}
.y69_c00167{bottom:305.280000pt;}
.y66_c00167{bottom:305.920000pt;}
.y65_c00167{bottom:306.560000pt;}
.y64_c00167{bottom:307.200000pt;}
.y62_c00167{bottom:341.760000pt;}
.y63_c00167{bottom:343.680000pt;}
.y60_c00167{bottom:344.320000pt;}
.y61_c00167{bottom:344.960000pt;}
.y5e_c00167{bottom:380.160000pt;}
.y5f_c00167{bottom:381.440000pt;}
.y5d_c00167{bottom:382.080000pt;}
.y5c_c00167{bottom:382.720000pt;}
.y5b_c00167{bottom:383.360000pt;}
.y5a_c00167{bottom:417.280000pt;}
.y59_c00167{bottom:419.840000pt;}
.y58_c00167{bottom:420.480000pt;}
.y57_c00167{bottom:465.280000pt;}
.y55_c00167{bottom:467.840000pt;}
.y56_c00167{bottom:468.480000pt;}
.y53_c00167{bottom:503.040000pt;}
.y54_c00167{bottom:503.680000pt;}
.y51_c00167{bottom:505.600000pt;}
.y52_c00167{bottom:506.240000pt;}
.y4f_c00167{bottom:540.800000pt;}
.y50_c00167{bottom:541.440000pt;}
.y4c_c00167{bottom:542.080000pt;}
.y4d_c00167{bottom:543.360000pt;}
.y4e_c00167{bottom:544.000000pt;}
.y4a_c00167{bottom:579.200000pt;}
.y4b_c00167{bottom:579.840000pt;}
.y46_c00167{bottom:580.480000pt;}
.y48_c00167{bottom:581.120000pt;}
.y49_c00167{bottom:581.760000pt;}
.y47_c00167{bottom:582.400000pt;}
.y42_c00167{bottom:617.600000pt;}
.y45_c00167{bottom:618.240000pt;}
.y41_c00167{bottom:619.520000pt;}
.y43_c00167{bottom:620.160000pt;}
.y44_c00167{bottom:620.800000pt;}
.y3c_c00167{bottom:654.720000pt;}
.y3d_c00167{bottom:655.360000pt;}
.y3f_c00167{bottom:656.000000pt;}
.y3e_c00167{bottom:657.920000pt;}
.y40_c00167{bottom:658.560000pt;}
.y37_c00167{bottom:693.120000pt;}
.y38_c00167{bottom:694.400000pt;}
.y35_c00167{bottom:695.040000pt;}
.y36_c00167{bottom:695.680000pt;}
.y39_c00167{bottom:696.320000pt;}
.y3b_c00167{bottom:696.960000pt;}
.y3a_c00167{bottom:697.600000pt;}
.y33_c00167{bottom:732.800000pt;}
.y30_c00167{bottom:733.440000pt;}
.y31_c00167{bottom:734.080000pt;}
.y32_c00167{bottom:734.720000pt;}
.y34_c00167{bottom:735.360000pt;}
.y2e_c00167{bottom:780.160000pt;}
.y2f_c00167{bottom:780.800000pt;}
.y28_c00167{bottom:816.000000pt;}
.y27_c00167{bottom:817.280000pt;}
.y2a_c00167{bottom:817.920000pt;}
.y2d_c00167{bottom:818.560000pt;}
.y29_c00167{bottom:819.840000pt;}
.y2b_c00167{bottom:820.480000pt;}
.y2c_c00167{bottom:821.120000pt;}
.y23_c00167{bottom:855.040000pt;}
.y21_c00167{bottom:855.680000pt;}
.y22_c00167{bottom:856.960000pt;}
.y26_c00167{bottom:857.600000pt;}
.y24_c00167{bottom:858.240000pt;}
.y25_c00167{bottom:858.880000pt;}
.y1c_c00167{bottom:892.160000pt;}
.y20_c00167{bottom:894.720000pt;}
.y1d_c00167{bottom:895.360000pt;}
.y1f_c00167{bottom:896.000000pt;}
.y1e_c00167{bottom:896.640000pt;}
.y2_c00167{bottom:967.680000pt;}
.y1_c00167{bottom:968.320000pt;}
.ha_c00167{height:27.645000pt;}
.h9_c00167{height:29.948750pt;}
.hd_c00167{height:30.205000pt;}
.hc_c00167{height:32.252500pt;}
.hb_c00167{height:34.556250pt;}
.h8_c00167{height:36.860000pt;}
.h5_c00167{height:39.163750pt;}
.h6_c00167{height:41.467500pt;}
.hf_c00167{height:43.771250pt;}
.h10_c00167{height:46.075000pt;}
.h7_c00167{height:48.378750pt;}
.h4_c00167{height:50.682500pt;}
.h3_c00167{height:52.986250pt;}
.he_c00167{height:55.290000pt;}
.h2_c00167{height:57.593750pt;}
.h0_c00167{height:1024.640000pt;}
.h1_c00167{height:1024.666667pt;}
.w0_c00167{width:704.640000pt;}
.w1_c00167{width:704.666667pt;}
.x0_c00167{left:0.000000pt;}
.x3f_c00167{left:51.200000pt;}
.xe_c00167{left:52.480000pt;}
.x21_c00167{left:71.040000pt;}
.xf_c00167{left:79.360000pt;}
.x43_c00167{left:88.960000pt;}
.x16_c00167{left:97.280000pt;}
.x25_c00167{left:98.560000pt;}
.x10_c00167{left:108.160000pt;}
.x33_c00167{left:117.120000pt;}
.x26_c00167{left:126.720000pt;}
.x3a_c00167{left:135.680000pt;}
.x34_c00167{left:144.640000pt;}
.x4_c00167{left:145.920000pt;}
.x27_c00167{left:154.880000pt;}
.x17_c00167{left:163.840000pt;}
.x5_c00167{left:172.800000pt;}
.x49_c00167{left:174.080000pt;}
.x35_c00167{left:182.400000pt;}
.x4b_c00167{left:192.640000pt;}
.x4c_c00167{left:193.920000pt;}
.x11_c00167{left:202.240000pt;}
.x18_c00167{left:211.840000pt;}
.x6_c00167{left:222.080000pt;}
.x2f_c00167{left:230.400000pt;}
.x1b_c00167{left:231.680000pt;}
.x47_c00167{left:241.280000pt;}
.x22_c00167{left:250.880000pt;}
.x1c_c00167{left:259.200000pt;}
.x19_c00167{left:261.120000pt;}
.x3b_c00167{left:269.440000pt;}
.x44_c00167{left:278.400000pt;}
.x40_c00167{left:279.680000pt;}
.x36_c00167{left:288.640000pt;}
.x23_c00167{left:298.240000pt;}
.x48_c00167{left:307.840000pt;}
.x12_c00167{left:316.800000pt;}
.x7_c00167{left:327.040000pt;}
.x37_c00167{left:328.320000pt;}
.x1d_c00167{left:336.640000pt;}
.x28_c00167{left:346.880000pt;}
.x13_c00167{left:355.840000pt;}
.x3c_c00167{left:357.120000pt;}
.x8_c00167{left:365.440000pt;}
.x30_c00167{left:375.040000pt;}
.x1e_c00167{left:385.920000pt;}
.x41_c00167{left:404.480000pt;}
.x4e_c00167{left:413.440000pt;}
.x9_c00167{left:414.720000pt;}
.x45_c00167{left:422.400000pt;}
.x2c_c00167{left:424.320000pt;}
.x3d_c00167{left:432.640000pt;}
.x4a_c00167{left:433.920000pt;}
.x38_c00167{left:442.880000pt;}
.x29_c00167{left:453.120000pt;}
.x46_c00167{left:462.720000pt;}
.xa_c00167{left:472.320000pt;}
.x4f_c00167{left:481.920000pt;}
.x2a_c00167{left:492.160000pt;}
.xb_c00167{left:501.120000pt;}
.x3e_c00167{left:510.720000pt;}
.x31_c00167{left:519.040000pt;}
.x1f_c00167{left:520.320000pt;}
.x39_c00167{left:521.600000pt;}
.x14_c00167{left:529.280000pt;}
.x24_c00167{left:540.160000pt;}
.x2b_c00167{left:549.760000pt;}
.x20_c00167{left:559.360000pt;}
.x2d_c00167{left:568.320000pt;}
.x1a_c00167{left:570.240000pt;}
.x42_c00167{left:577.920000pt;}
.x4d_c00167{left:579.200000pt;}
.xc_c00167{left:588.800000pt;}
.x32_c00167{left:597.120000pt;}
.x15_c00167{left:599.040000pt;}
.x2e_c00167{left:607.360000pt;}
.x1_c00167{left:611.840000pt;}
.xd_c00167{left:617.600000pt;}
.x2_c00167{left:627.840000pt;}
.x3_c00167{left:643.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4afcdf4a6b72390b044bdb86.woff2')format("woff");}.ff1_c00168{font-family:ff1_c00168;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m46_c00168{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);}
.m27_c00168{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m32_c00168{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m3_c00168{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m51_c00168{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m7_c00168{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m43_c00168{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m31_c00168{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mf_c00168{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m23_c00168{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m8_c00168{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m48_c00168{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);}
.m2b_c00168{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m12_c00168{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.mc_c00168{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m18_c00168{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);}
.m42_c00168{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00168{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);}
.m1a_c00168{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00168{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);}
.m50_c00168{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m21_c00168{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m11_c00168{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00168{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);}
.m4e_c00168{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_c00168{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m52_c00168{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m4_c00168{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.ma_c00168{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);}
.m10_c00168{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m17_c00168{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00168{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m20_c00168{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m55_c00168{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m38_c00168{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.md_c00168{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m13_c00168{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);}
.m4a_c00168{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m33_c00168{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m39_c00168{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00168{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m36_c00168{transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);}
.m14_c00168{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m47_c00168{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00168{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);}
.m1e_c00168{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00168{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);}
.m26_c00168{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00168{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m37_c00168{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m1_c00168{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);}
.me_c00168{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m45_c00168{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m44_c00168{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m40_c00168{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00168{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m30_c00168{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m15_c00168{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m24_c00168{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);}
.m29_c00168{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);}
.m49_c00168{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m19_c00168{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m9_c00168{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);}
.m35_c00168{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m2_c00168{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m25_c00168{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);}
.m3b_c00168{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m28_c00168{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00168{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00168{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);}
.m3c_c00168{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m22_c00168{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m5_c00168{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);}
.mb_c00168{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m6_c00168{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m53_c00168{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00168{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00168{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00168{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);}
.m16_c00168{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_c00168{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00168{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00168{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m56_c00168{transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);}
.m34_c00168{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.m41_c00168{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00168{transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);}
.v0_c00168{vertical-align:0.000000px;}
.v1_c00168{vertical-align:8.640000px;}
.ls1_c00168{letter-spacing:0.000000px;}
.ls0_c00168{letter-spacing:24.450000px;}
.sc__c00168{text-shadow:none;}
.sc0_c00168{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00168{-webkit-text-stroke:0px transparent;}
.sc0_c00168{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00168{word-spacing:0.000000px;}
.fc0_c00168{color:transparent;}
.fs0_c00168{font-size:34.560000px;}
.fsd_c00168{font-size:37.440000px;}
.fsa_c00168{font-size:40.320000px;}
.fs9_c00168{font-size:43.200000px;}
.fs4_c00168{font-size:46.080000px;}
.fs6_c00168{font-size:48.960000px;}
.fs1_c00168{font-size:51.840000px;}
.fs8_c00168{font-size:54.720000px;}
.fs5_c00168{font-size:57.600000px;}
.fs3_c00168{font-size:60.480000px;}
.fs7_c00168{font-size:63.360000px;}
.fsc_c00168{font-size:66.240000px;}
.fs2_c00168{font-size:69.120000px;}
.fsb_c00168{font-size:72.000000px;}
.fse_c00168{font-size:74.880000px;}
.fsf_c00168{font-size:77.760000px;}
.y0_c00168{bottom:0.000000px;}
.y77_c00168{bottom:42.480000px;}
.y79_c00168{bottom:43.200000px;}
.y78_c00168{bottom:43.920000px;}
.y75_c00168{bottom:44.640000px;}
.y76_c00168{bottom:45.360000px;}
.y73_c00168{bottom:84.240000px;}
.y74_c00168{bottom:85.680000px;}
.y71_c00168{bottom:87.120000px;}
.y72_c00168{bottom:87.840000px;}
.y70_c00168{bottom:90.720000px;}
.y6f_c00168{bottom:126.000000px;}
.y6d_c00168{bottom:126.720000px;}
.y6a_c00168{bottom:128.160000px;}
.y6e_c00168{bottom:128.880000px;}
.y6c_c00168{bottom:129.600000px;}
.y6b_c00168{bottom:130.320000px;}
.y69_c00168{bottom:131.040000px;}
.y68_c00168{bottom:132.480000px;}
.y67_c00168{bottom:133.200000px;}
.y64_c00168{bottom:169.920000px;}
.y63_c00168{bottom:171.360000px;}
.y66_c00168{bottom:172.080000px;}
.y65_c00168{bottom:172.800000px;}
.y62_c00168{bottom:173.520000px;}
.y61_c00168{bottom:177.840000px;}
.y5f_c00168{bottom:211.680000px;}
.y60_c00168{bottom:214.560000px;}
.y5e_c00168{bottom:216.000000px;}
.y5d_c00168{bottom:216.720000px;}
.y5c_c00168{bottom:267.120000px;}
.y5b_c00168{bottom:270.720000px;}
.y5a_c00168{bottom:271.440000px;}
.y59_c00168{bottom:272.880000px;}
.y55_c00168{bottom:309.600000px;}
.y53_c00168{bottom:310.320000px;}
.y58_c00168{bottom:311.040000px;}
.y57_c00168{bottom:311.760000px;}
.y56_c00168{bottom:312.480000px;}
.y54_c00168{bottom:313.200000px;}
.y52_c00168{bottom:351.360000px;}
.y4e_c00168{bottom:352.080000px;}
.y50_c00168{bottom:352.800000px;}
.y51_c00168{bottom:354.240000px;}
.y4f_c00168{bottom:354.960000px;}
.y4d_c00168{bottom:356.400000px;}
.y4c_c00168{bottom:357.120000px;}
.y4b_c00168{bottom:357.840000px;}
.y4a_c00168{bottom:394.560000px;}
.y49_c00168{bottom:395.280000px;}
.y45_c00168{bottom:396.720000px;}
.y48_c00168{bottom:397.440000px;}
.y47_c00168{bottom:398.880000px;}
.y46_c00168{bottom:399.600000px;}
.y44_c00168{bottom:437.760000px;}
.y43_c00168{bottom:439.920000px;}
.y42_c00168{bottom:440.640000px;}
.y41_c00168{bottom:441.360000px;}
.y3c_c00168{bottom:480.960000px;}
.y3d_c00168{bottom:481.680000px;}
.y40_c00168{bottom:482.400000px;}
.y3e_c00168{bottom:483.120000px;}
.y3f_c00168{bottom:483.840000px;}
.y3a_c00168{bottom:524.160000px;}
.y3b_c00168{bottom:526.320000px;}
.y39_c00168{bottom:527.040000px;}
.y35_c00168{bottom:566.640000px;}
.y38_c00168{bottom:568.080000px;}
.y37_c00168{bottom:568.800000px;}
.y36_c00168{bottom:569.520000px;}
.y33_c00168{bottom:612.000000px;}
.y34_c00168{bottom:612.720000px;}
.y2e_c00168{bottom:650.880000px;}
.y2d_c00168{bottom:651.600000px;}
.y31_c00168{bottom:652.320000px;}
.y32_c00168{bottom:653.040000px;}
.y30_c00168{bottom:654.480000px;}
.y2f_c00168{bottom:655.200000px;}
.y2b_c00168{bottom:694.800000px;}
.y2a_c00168{bottom:695.520000px;}
.y29_c00168{bottom:696.240000px;}
.y27_c00168{bottom:696.960000px;}
.y28_c00168{bottom:697.680000px;}
.y2c_c00168{bottom:698.400000px;}
.y25_c00168{bottom:738.000000px;}
.y22_c00168{bottom:739.440000px;}
.y23_c00168{bottom:740.160000px;}
.y24_c00168{bottom:740.880000px;}
.y26_c00168{bottom:741.600000px;}
.y1c_c00168{bottom:779.760000px;}
.y1e_c00168{bottom:780.480000px;}
.y21_c00168{bottom:781.200000px;}
.y1d_c00168{bottom:782.640000px;}
.y1f_c00168{bottom:783.360000px;}
.y20_c00168{bottom:784.080000px;}
.y19_c00168{bottom:823.680000px;}
.y1a_c00168{bottom:824.400000px;}
.y17_c00168{bottom:825.840000px;}
.y18_c00168{bottom:826.560000px;}
.y1b_c00168{bottom:827.280000px;}
.y13_c00168{bottom:877.680000px;}
.y14_c00168{bottom:878.400000px;}
.y15_c00168{bottom:879.120000px;}
.y16_c00168{bottom:879.840000px;}
.yd_c00168{bottom:917.280000px;}
.y12_c00168{bottom:920.160000px;}
.yf_c00168{bottom:920.880000px;}
.ye_c00168{bottom:921.600000px;}
.y10_c00168{bottom:922.320000px;}
.y11_c00168{bottom:923.040000px;}
.y8_c00168{bottom:960.480000px;}
.yb_c00168{bottom:963.360000px;}
.y9_c00168{bottom:964.080000px;}
.ya_c00168{bottom:964.800000px;}
.yc_c00168{bottom:966.240000px;}
.y3_c00168{bottom:1004.400000px;}
.y1_c00168{bottom:1005.840000px;}
.y2_c00168{bottom:1006.560000px;}
.y6_c00168{bottom:1007.280000px;}
.y4_c00168{bottom:1008.000000px;}
.y5_c00168{bottom:1008.720000px;}
.y7_c00168{bottom:1009.440000px;}
.h2_c00168{height:31.100625px;}
.hf_c00168{height:33.692344px;}
.hc_c00168{height:36.284062px;}
.hb_c00168{height:38.875781px;}
.h6_c00168{height:41.467500px;}
.h8_c00168{height:44.059219px;}
.h3_c00168{height:46.650937px;}
.ha_c00168{height:49.242656px;}
.h7_c00168{height:51.834375px;}
.h5_c00168{height:54.426094px;}
.h10_c00168{height:55.290938px;}
.h9_c00168{height:57.017812px;}
.he_c00168{height:59.609531px;}
.h4_c00168{height:62.201250px;}
.hd_c00168{height:64.792969px;}
.h11_c00168{height:67.384687px;}
.h12_c00168{height:69.976406px;}
.h0_c00168{height:1153.440000px;}
.h1_c00168{height:1153.500000px;}
.w0_c00168{width:793.440000px;}
.w1_c00168{width:793.500000px;}
.x0_c00168{left:0.000000px;}
.x1_c00168{left:58.320000px;}
.xd_c00168{left:60.480000px;}
.x45_c00168{left:80.640000px;}
.x1e_c00168{left:90.720000px;}
.x33_c00168{left:100.080000px;}
.x2_c00168{left:101.520000px;}
.x15_c00168{left:111.600000px;}
.x2d_c00168{left:121.680000px;}
.x3_c00168{left:123.120000px;}
.x4f_c00168{left:131.760000px;}
.x3d_c00168{left:133.200000px;}
.x34_c00168{left:142.560000px;}
.xe_c00168{left:144.000000px;}
.x43_c00168{left:153.360000px;}
.x16_c00168{left:154.800000px;}
.x23_c00168{left:166.320000px;}
.x1f_c00168{left:174.960000px;}
.x2a_c00168{left:185.760000px;}
.xf_c00168{left:196.560000px;}
.x24_c00168{left:207.360000px;}
.x17_c00168{left:218.880000px;}
.x2b_c00168{left:228.960000px;}
.x30_c00168{left:239.760000px;}
.x4_c00168{left:241.200000px;}
.x4b_c00168{left:249.120000px;}
.x3f_c00168{left:250.560000px;}
.x48_c00168{left:261.360000px;}
.x4a_c00168{left:262.800000px;}
.x46_c00168{left:272.160000px;}
.x25_c00168{left:282.960000px;}
.x20_c00168{left:284.400000px;}
.x35_c00168{left:294.480000px;}
.x3e_c00168{left:295.920000px;}
.x5_c00168{left:304.560000px;}
.x31_c00168{left:306.000000px;}
.x2c_c00168{left:313.920000px;}
.x26_c00168{left:315.360000px;}
.x10_c00168{left:327.600000px;}
.x37_c00168{left:336.960000px;}
.x2e_c00168{left:347.760000px;}
.x40_c00168{left:358.560000px;}
.x18_c00168{left:360.000000px;}
.x4c_c00168{left:368.640000px;}
.x38_c00168{left:370.080000px;}
.x6_c00168{left:380.880000px;}
.x50_c00168{left:383.040000px;}
.x11_c00168{left:390.960000px;}
.x7_c00168{left:413.280000px;}
.x21_c00168{left:414.720000px;}
.x19_c00168{left:444.960000px;}
.x8_c00168{left:447.120000px;}
.x32_c00168{left:455.760000px;}
.x41_c00168{left:466.560000px;}
.x12_c00168{left:468.720000px;}
.x49_c00168{left:477.360000px;}
.x1a_c00168{left:478.800000px;}
.x39_c00168{left:488.880000px;}
.x51_c00168{left:490.320000px;}
.x2f_c00168{left:499.680000px;}
.x22_c00168{left:511.200000px;}
.x36_c00168{left:520.560000px;}
.x13_c00168{left:522.720000px;}
.x1b_c00168{left:531.360000px;}
.x9_c00168{left:543.600000px;}
.x14_c00168{left:554.400000px;}
.x4d_c00168{left:565.920000px;}
.x1c_c00168{left:576.720000px;}
.x47_c00168{left:586.080000px;}
.xa_c00168{left:587.520000px;}
.x27_c00168{left:598.320000px;}
.x1d_c00168{left:609.120000px;}
.x3a_c00168{left:619.920000px;}
.x44_c00168{left:621.360000px;}
.xb_c00168{left:630.720000px;}
.x28_c00168{left:641.520000px;}
.x3b_c00168{left:652.320000px;}
.x42_c00168{left:663.840000px;}
.x29_c00168{left:673.920000px;}
.xc_c00168{left:675.360000px;}
.x3c_c00168{left:684.720000px;}
.x4e_c00168{left:686.160000px;}
@media print{
.v0_c00168{vertical-align:0.000000pt;}
.v1_c00168{vertical-align:7.680000pt;}
.ls1_c00168{letter-spacing:0.000000pt;}
.ls0_c00168{letter-spacing:21.733333pt;}
.ws0_c00168{word-spacing:0.000000pt;}
.fs0_c00168{font-size:30.720000pt;}
.fsd_c00168{font-size:33.280000pt;}
.fsa_c00168{font-size:35.840000pt;}
.fs9_c00168{font-size:38.400000pt;}
.fs4_c00168{font-size:40.960000pt;}
.fs6_c00168{font-size:43.520000pt;}
.fs1_c00168{font-size:46.080000pt;}
.fs8_c00168{font-size:48.640000pt;}
.fs5_c00168{font-size:51.200000pt;}
.fs3_c00168{font-size:53.760000pt;}
.fs7_c00168{font-size:56.320000pt;}
.fsc_c00168{font-size:58.880000pt;}
.fs2_c00168{font-size:61.440000pt;}
.fsb_c00168{font-size:64.000000pt;}
.fse_c00168{font-size:66.560000pt;}
.fsf_c00168{font-size:69.120000pt;}
.y0_c00168{bottom:0.000000pt;}
.y77_c00168{bottom:37.760000pt;}
.y79_c00168{bottom:38.400000pt;}
.y78_c00168{bottom:39.040000pt;}
.y75_c00168{bottom:39.680000pt;}
.y76_c00168{bottom:40.320000pt;}
.y73_c00168{bottom:74.880000pt;}
.y74_c00168{bottom:76.160000pt;}
.y71_c00168{bottom:77.440000pt;}
.y72_c00168{bottom:78.080000pt;}
.y70_c00168{bottom:80.640000pt;}
.y6f_c00168{bottom:112.000000pt;}
.y6d_c00168{bottom:112.640000pt;}
.y6a_c00168{bottom:113.920000pt;}
.y6e_c00168{bottom:114.560000pt;}
.y6c_c00168{bottom:115.200000pt;}
.y6b_c00168{bottom:115.840000pt;}
.y69_c00168{bottom:116.480000pt;}
.y68_c00168{bottom:117.760000pt;}
.y67_c00168{bottom:118.400000pt;}
.y64_c00168{bottom:151.040000pt;}
.y63_c00168{bottom:152.320000pt;}
.y66_c00168{bottom:152.960000pt;}
.y65_c00168{bottom:153.600000pt;}
.y62_c00168{bottom:154.240000pt;}
.y61_c00168{bottom:158.080000pt;}
.y5f_c00168{bottom:188.160000pt;}
.y60_c00168{bottom:190.720000pt;}
.y5e_c00168{bottom:192.000000pt;}
.y5d_c00168{bottom:192.640000pt;}
.y5c_c00168{bottom:237.440000pt;}
.y5b_c00168{bottom:240.640000pt;}
.y5a_c00168{bottom:241.280000pt;}
.y59_c00168{bottom:242.560000pt;}
.y55_c00168{bottom:275.200000pt;}
.y53_c00168{bottom:275.840000pt;}
.y58_c00168{bottom:276.480000pt;}
.y57_c00168{bottom:277.120000pt;}
.y56_c00168{bottom:277.760000pt;}
.y54_c00168{bottom:278.400000pt;}
.y52_c00168{bottom:312.320000pt;}
.y4e_c00168{bottom:312.960000pt;}
.y50_c00168{bottom:313.600000pt;}
.y51_c00168{bottom:314.880000pt;}
.y4f_c00168{bottom:315.520000pt;}
.y4d_c00168{bottom:316.800000pt;}
.y4c_c00168{bottom:317.440000pt;}
.y4b_c00168{bottom:318.080000pt;}
.y4a_c00168{bottom:350.720000pt;}
.y49_c00168{bottom:351.360000pt;}
.y45_c00168{bottom:352.640000pt;}
.y48_c00168{bottom:353.280000pt;}
.y47_c00168{bottom:354.560000pt;}
.y46_c00168{bottom:355.200000pt;}
.y44_c00168{bottom:389.120000pt;}
.y43_c00168{bottom:391.040000pt;}
.y42_c00168{bottom:391.680000pt;}
.y41_c00168{bottom:392.320000pt;}
.y3c_c00168{bottom:427.520000pt;}
.y3d_c00168{bottom:428.160000pt;}
.y40_c00168{bottom:428.800000pt;}
.y3e_c00168{bottom:429.440000pt;}
.y3f_c00168{bottom:430.080000pt;}
.y3a_c00168{bottom:465.920000pt;}
.y3b_c00168{bottom:467.840000pt;}
.y39_c00168{bottom:468.480000pt;}
.y35_c00168{bottom:503.680000pt;}
.y38_c00168{bottom:504.960000pt;}
.y37_c00168{bottom:505.600000pt;}
.y36_c00168{bottom:506.240000pt;}
.y33_c00168{bottom:544.000000pt;}
.y34_c00168{bottom:544.640000pt;}
.y2e_c00168{bottom:578.560000pt;}
.y2d_c00168{bottom:579.200000pt;}
.y31_c00168{bottom:579.840000pt;}
.y32_c00168{bottom:580.480000pt;}
.y30_c00168{bottom:581.760000pt;}
.y2f_c00168{bottom:582.400000pt;}
.y2b_c00168{bottom:617.600000pt;}
.y2a_c00168{bottom:618.240000pt;}
.y29_c00168{bottom:618.880000pt;}
.y27_c00168{bottom:619.520000pt;}
.y28_c00168{bottom:620.160000pt;}
.y2c_c00168{bottom:620.800000pt;}
.y25_c00168{bottom:656.000000pt;}
.y22_c00168{bottom:657.280000pt;}
.y23_c00168{bottom:657.920000pt;}
.y24_c00168{bottom:658.560000pt;}
.y26_c00168{bottom:659.200000pt;}
.y1c_c00168{bottom:693.120000pt;}
.y1e_c00168{bottom:693.760000pt;}
.y21_c00168{bottom:694.400000pt;}
.y1d_c00168{bottom:695.680000pt;}
.y1f_c00168{bottom:696.320000pt;}
.y20_c00168{bottom:696.960000pt;}
.y19_c00168{bottom:732.160000pt;}
.y1a_c00168{bottom:732.800000pt;}
.y17_c00168{bottom:734.080000pt;}
.y18_c00168{bottom:734.720000pt;}
.y1b_c00168{bottom:735.360000pt;}
.y13_c00168{bottom:780.160000pt;}
.y14_c00168{bottom:780.800000pt;}
.y15_c00168{bottom:781.440000pt;}
.y16_c00168{bottom:782.080000pt;}
.yd_c00168{bottom:815.360000pt;}
.y12_c00168{bottom:817.920000pt;}
.yf_c00168{bottom:818.560000pt;}
.ye_c00168{bottom:819.200000pt;}
.y10_c00168{bottom:819.840000pt;}
.y11_c00168{bottom:820.480000pt;}
.y8_c00168{bottom:853.760000pt;}
.yb_c00168{bottom:856.320000pt;}
.y9_c00168{bottom:856.960000pt;}
.ya_c00168{bottom:857.600000pt;}
.yc_c00168{bottom:858.880000pt;}
.y3_c00168{bottom:892.800000pt;}
.y1_c00168{bottom:894.080000pt;}
.y2_c00168{bottom:894.720000pt;}
.y6_c00168{bottom:895.360000pt;}
.y4_c00168{bottom:896.000000pt;}
.y5_c00168{bottom:896.640000pt;}
.y7_c00168{bottom:897.280000pt;}
.h2_c00168{height:27.645000pt;}
.hf_c00168{height:29.948750pt;}
.hc_c00168{height:32.252500pt;}
.hb_c00168{height:34.556250pt;}
.h6_c00168{height:36.860000pt;}
.h8_c00168{height:39.163750pt;}
.h3_c00168{height:41.467500pt;}
.ha_c00168{height:43.771250pt;}
.h7_c00168{height:46.075000pt;}
.h5_c00168{height:48.378750pt;}
.h10_c00168{height:49.147500pt;}
.h9_c00168{height:50.682500pt;}
.he_c00168{height:52.986250pt;}
.h4_c00168{height:55.290000pt;}
.hd_c00168{height:57.593750pt;}
.h11_c00168{height:59.897500pt;}
.h12_c00168{height:62.201250pt;}
.h0_c00168{height:1025.280000pt;}
.h1_c00168{height:1025.333333pt;}
.w0_c00168{width:705.280000pt;}
.w1_c00168{width:705.333333pt;}
.x0_c00168{left:0.000000pt;}
.x1_c00168{left:51.840000pt;}
.xd_c00168{left:53.760000pt;}
.x45_c00168{left:71.680000pt;}
.x1e_c00168{left:80.640000pt;}
.x33_c00168{left:88.960000pt;}
.x2_c00168{left:90.240000pt;}
.x15_c00168{left:99.200000pt;}
.x2d_c00168{left:108.160000pt;}
.x3_c00168{left:109.440000pt;}
.x4f_c00168{left:117.120000pt;}
.x3d_c00168{left:118.400000pt;}
.x34_c00168{left:126.720000pt;}
.xe_c00168{left:128.000000pt;}
.x43_c00168{left:136.320000pt;}
.x16_c00168{left:137.600000pt;}
.x23_c00168{left:147.840000pt;}
.x1f_c00168{left:155.520000pt;}
.x2a_c00168{left:165.120000pt;}
.xf_c00168{left:174.720000pt;}
.x24_c00168{left:184.320000pt;}
.x17_c00168{left:194.560000pt;}
.x2b_c00168{left:203.520000pt;}
.x30_c00168{left:213.120000pt;}
.x4_c00168{left:214.400000pt;}
.x4b_c00168{left:221.440000pt;}
.x3f_c00168{left:222.720000pt;}
.x48_c00168{left:232.320000pt;}
.x4a_c00168{left:233.600000pt;}
.x46_c00168{left:241.920000pt;}
.x25_c00168{left:251.520000pt;}
.x20_c00168{left:252.800000pt;}
.x35_c00168{left:261.760000pt;}
.x3e_c00168{left:263.040000pt;}
.x5_c00168{left:270.720000pt;}
.x31_c00168{left:272.000000pt;}
.x2c_c00168{left:279.040000pt;}
.x26_c00168{left:280.320000pt;}
.x10_c00168{left:291.200000pt;}
.x37_c00168{left:299.520000pt;}
.x2e_c00168{left:309.120000pt;}
.x40_c00168{left:318.720000pt;}
.x18_c00168{left:320.000000pt;}
.x4c_c00168{left:327.680000pt;}
.x38_c00168{left:328.960000pt;}
.x6_c00168{left:338.560000pt;}
.x50_c00168{left:340.480000pt;}
.x11_c00168{left:347.520000pt;}
.x7_c00168{left:367.360000pt;}
.x21_c00168{left:368.640000pt;}
.x19_c00168{left:395.520000pt;}
.x8_c00168{left:397.440000pt;}
.x32_c00168{left:405.120000pt;}
.x41_c00168{left:414.720000pt;}
.x12_c00168{left:416.640000pt;}
.x49_c00168{left:424.320000pt;}
.x1a_c00168{left:425.600000pt;}
.x39_c00168{left:434.560000pt;}
.x51_c00168{left:435.840000pt;}
.x2f_c00168{left:444.160000pt;}
.x22_c00168{left:454.400000pt;}
.x36_c00168{left:462.720000pt;}
.x13_c00168{left:464.640000pt;}
.x1b_c00168{left:472.320000pt;}
.x9_c00168{left:483.200000pt;}
.x14_c00168{left:492.800000pt;}
.x4d_c00168{left:503.040000pt;}
.x1c_c00168{left:512.640000pt;}
.x47_c00168{left:520.960000pt;}
.xa_c00168{left:522.240000pt;}
.x27_c00168{left:531.840000pt;}
.x1d_c00168{left:541.440000pt;}
.x3a_c00168{left:551.040000pt;}
.x44_c00168{left:552.320000pt;}
.xb_c00168{left:560.640000pt;}
.x28_c00168{left:570.240000pt;}
.x3b_c00168{left:579.840000pt;}
.x42_c00168{left:590.080000pt;}
.x29_c00168{left:599.040000pt;}
.xc_c00168{left:600.320000pt;}
.x3c_c00168{left:608.640000pt;}
.x4e_c00168{left:609.920000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8c9305c64312b14cc2df0502.woff2')format("woff");}.ff1_c00169{font-family:ff1_c00169;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00169{transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);}
.m1_c00169{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);}
.m5e_c00169{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m32_c00169{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);}
.m24_c00169{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00169{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00169{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m28_c00169{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00169{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m42_c00169{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00169{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m54_c00169{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m57_c00169{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m49_c00169{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.md_c00169{transform:matrix(0.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);}
.m39_c00169{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m3_c00169{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.mb_c00169{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);}
.m34_c00169{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1a_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);}
.m3b_c00169{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00169{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);}
.me_c00169{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m10_c00169{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m11_c00169{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);}
.m29_c00169{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00169{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m6_c00169{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00169{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);}
.m53_c00169{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);}
.m4b_c00169{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m25_c00169{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);}
.m40_c00169{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m2_c00169{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);}
.m1c_c00169{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);}
.m33_c00169{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m18_c00169{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m9_c00169{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m44_c00169{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);}
.m31_c00169{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m22_c00169{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);}
.m4a_c00169{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m8_c00169{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);}
.m21_c00169{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);}
.m4e_c00169{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m55_c00169{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m38_c00169{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m43_c00169{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m56_c00169{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);}
.m30_c00169{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00169{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00169{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);}
.m3d_c00169{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m23_c00169{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);}
.m13_c00169{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00169{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m17_c00169{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);}
.m26_c00169{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m15_c00169{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00169{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m51_c00169{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);}
.m41_c00169{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m46_c00169{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m19_c00169{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00169{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m52_c00169{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);}
.m16_c00169{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);}
.m14_c00169{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m20_c00169{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m36_c00169{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);}
.m59_c00169{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00169{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m35_c00169{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m37_c00169{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00169{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);}
.m7_c00169{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m48_c00169{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m58_c00169{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m45_c00169{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.ma_c00169{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00169{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);}
.m4_c00169{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);}
.m5_c00169{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00169{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00169{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m27_c00169{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.mf_c00169{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00169{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);}
.m47_c00169{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);}
.m12_c00169{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00169{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00169{transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);}
.mc_c00169{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.m50_c00169{transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00169{transform:matrix(0.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00169{transform:matrix(1.042500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.042500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.042500,0.000000,0.000000,0.250000,0,0);}
.v2_c00169{vertical-align:-2.880000px;}
.v0_c00169{vertical-align:0.000000px;}
.v1_c00169{vertical-align:2.880000px;}
.ls0_c00169{letter-spacing:0.000000px;}
.sc__c00169{text-shadow:none;}
.sc0_c00169{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00169{-webkit-text-stroke:0px transparent;}
.sc0_c00169{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00169{word-spacing:-8.770560px;}
.ws0_c00169{word-spacing:-3.923280px;}
.ws3_c00169{word-spacing:0.000000px;}
.ws2_c00169{word-spacing:3.798732px;}
.fc0_c00169{color:transparent;}
.fs4_c00169{font-size:34.560000px;}
.fsc_c00169{font-size:37.440000px;}
.fs2_c00169{font-size:40.320000px;}
.fsa_c00169{font-size:43.200000px;}
.fs8_c00169{font-size:46.080000px;}
.fs5_c00169{font-size:48.960000px;}
.fs1_c00169{font-size:51.840000px;}
.fsb_c00169{font-size:54.720000px;}
.fsd_c00169{font-size:57.600000px;}
.fs7_c00169{font-size:60.480000px;}
.fs3_c00169{font-size:63.360000px;}
.fs6_c00169{font-size:66.240000px;}
.fs0_c00169{font-size:69.120000px;}
.fs9_c00169{font-size:72.000000px;}
.fse_c00169{font-size:74.880000px;}
.y0_c00169{bottom:0.000000px;}
.y8b_c00169{bottom:51.120000px;}
.y8a_c00169{bottom:51.840000px;}
.y8d_c00169{bottom:53.280000px;}
.y8c_c00169{bottom:54.000000px;}
.y89_c00169{bottom:54.720000px;}
.y86_c00169{bottom:92.160000px;}
.y87_c00169{bottom:92.880000px;}
.y84_c00169{bottom:94.320000px;}
.y88_c00169{bottom:95.040000px;}
.y85_c00169{bottom:96.480000px;}
.y82_c00169{bottom:97.200000px;}
.y83_c00169{bottom:97.920000px;}
.y81_c00169{bottom:100.800000px;}
.y80_c00169{bottom:102.240000px;}
.y7e_c00169{bottom:136.080000px;}
.y7f_c00169{bottom:137.520000px;}
.y7d_c00169{bottom:138.960000px;}
.y7c_c00169{bottom:139.680000px;}
.y7b_c00169{bottom:140.400000px;}
.y7a_c00169{bottom:141.120000px;}
.y79_c00169{bottom:142.560000px;}
.y78_c00169{bottom:144.000000px;}
.y76_c00169{bottom:179.280000px;}
.y77_c00169{bottom:181.440000px;}
.y75_c00169{bottom:182.160000px;}
.y73_c00169{bottom:182.880000px;}
.y74_c00169{bottom:183.600000px;}
.y72_c00169{bottom:185.040000px;}
.y70_c00169{bottom:221.760000px;}
.y6d_c00169{bottom:223.200000px;}
.y6f_c00169{bottom:223.920000px;}
.y71_c00169{bottom:224.640000px;}
.y6e_c00169{bottom:225.360000px;}
.y6b_c00169{bottom:226.080000px;}
.y6c_c00169{bottom:226.800000px;}
.y6a_c00169{bottom:228.240000px;}
.y69_c00169{bottom:229.680000px;}
.y68_c00169{bottom:263.520000px;}
.y66_c00169{bottom:264.960000px;}
.y65_c00169{bottom:265.680000px;}
.y67_c00169{bottom:268.560000px;}
.y64_c00169{bottom:269.280000px;}
.y63_c00169{bottom:270.000000px;}
.y62_c00169{bottom:271.440000px;}
.y60_c00169{bottom:308.880000px;}
.y5e_c00169{bottom:310.320000px;}
.y5f_c00169{bottom:311.040000px;}
.y61_c00169{bottom:311.760000px;}
.y5d_c00169{bottom:313.200000px;}
.y59_c00169{bottom:352.080000px;}
.y5a_c00169{bottom:352.800000px;}
.y5c_c00169{bottom:353.520000px;}
.y5b_c00169{bottom:354.960000px;}
.y55_c00169{bottom:393.120000px;}
.y56_c00169{bottom:393.840000px;}
.y53_c00169{bottom:394.560000px;}
.y54_c00169{bottom:395.280000px;}
.y58_c00169{bottom:396.000000px;}
.y57_c00169{bottom:396.720000px;}
.y52_c00169{bottom:397.440000px;}
.y51_c00169{bottom:398.880000px;}
.y4f_c00169{bottom:436.320000px;}
.y4e_c00169{bottom:437.040000px;}
.y4c_c00169{bottom:438.480000px;}
.y50_c00169{bottom:439.200000px;}
.y4d_c00169{bottom:439.920000px;}
.y4b_c00169{bottom:440.640000px;}
.y4a_c00169{bottom:442.080000px;}
.y49_c00169{bottom:480.240000px;}
.y46_c00169{bottom:480.960000px;}
.y48_c00169{bottom:482.400000px;}
.y47_c00169{bottom:483.120000px;}
.y43_c00169{bottom:532.800000px;}
.y44_c00169{bottom:534.240000px;}
.y45_c00169{bottom:535.680000px;}
.y42_c00169{bottom:536.400000px;}
.y41_c00169{bottom:537.120000px;}
.y3e_c00169{bottom:576.720000px;}
.y3d_c00169{bottom:577.440000px;}
.y40_c00169{bottom:579.600000px;}
.y3f_c00169{bottom:580.320000px;}
.y3c_c00169{bottom:618.480000px;}
.y38_c00169{bottom:619.200000px;}
.y3b_c00169{bottom:619.920000px;}
.y3a_c00169{bottom:621.360000px;}
.y39_c00169{bottom:622.800000px;}
.y35_c00169{bottom:660.960000px;}
.y36_c00169{bottom:661.680000px;}
.y33_c00169{bottom:662.400000px;}
.y37_c00169{bottom:663.120000px;}
.y34_c00169{bottom:664.560000px;}
.y32_c00169{bottom:665.280000px;}
.y2f_c00169{bottom:704.880000px;}
.y31_c00169{bottom:705.600000px;}
.y2e_c00169{bottom:707.760000px;}
.y30_c00169{bottom:708.480000px;}
.y2a_c00169{bottom:747.360000px;}
.y2b_c00169{bottom:748.080000px;}
.y2d_c00169{bottom:748.800000px;}
.y29_c00169{bottom:750.240000px;}
.y2c_c00169{bottom:750.960000px;}
.y27_c00169{bottom:791.280000px;}
.y28_c00169{bottom:792.000000px;}
.y24_c00169{bottom:792.720000px;}
.y25_c00169{bottom:793.440000px;}
.y26_c00169{bottom:794.160000px;}
.y1f_c00169{bottom:833.760000px;}
.y23_c00169{bottom:834.480000px;}
.y1e_c00169{bottom:835.200000px;}
.y20_c00169{bottom:835.920000px;}
.y21_c00169{bottom:836.640000px;}
.y22_c00169{bottom:837.360000px;}
.y1b_c00169{bottom:876.240000px;}
.y1d_c00169{bottom:877.680000px;}
.y18_c00169{bottom:878.400000px;}
.y1a_c00169{bottom:879.120000px;}
.y19_c00169{bottom:879.840000px;}
.y1c_c00169{bottom:880.560000px;}
.y13_c00169{bottom:918.720000px;}
.y15_c00169{bottom:919.440000px;}
.y11_c00169{bottom:920.160000px;}
.y17_c00169{bottom:920.880000px;}
.y12_c00169{bottom:921.600000px;}
.y14_c00169{bottom:922.320000px;}
.y16_c00169{bottom:923.040000px;}
.ya_c00169{bottom:959.760000px;}
.yd_c00169{bottom:961.920000px;}
.yf_c00169{bottom:962.640000px;}
.yb_c00169{bottom:963.360000px;}
.yc_c00169{bottom:964.800000px;}
.ye_c00169{bottom:965.520000px;}
.y10_c00169{bottom:966.240000px;}
.y4_c00169{bottom:1002.960000px;}
.y6_c00169{bottom:1005.120000px;}
.y5_c00169{bottom:1007.280000px;}
.y7_c00169{bottom:1008.000000px;}
.y8_c00169{bottom:1008.720000px;}
.y9_c00169{bottom:1009.440000px;}
.y1_c00169{bottom:1098.720000px;}
.y2_c00169{bottom:1101.600000px;}
.y3_c00169{bottom:1103.760000px;}
.h6_c00169{height:31.100625px;}
.hf_c00169{height:33.692344px;}
.h4_c00169{height:36.284062px;}
.hc_c00169{height:38.875781px;}
.ha_c00169{height:41.467500px;}
.h7_c00169{height:44.059219px;}
.h3_c00169{height:46.650937px;}
.hd_c00169{height:49.242656px;}
.he_c00169{height:49.530938px;}
.h10_c00169{height:51.834375px;}
.h9_c00169{height:54.426094px;}
.h5_c00169{height:57.017812px;}
.h8_c00169{height:59.609531px;}
.h2_c00169{height:62.201250px;}
.hb_c00169{height:64.792969px;}
.h11_c00169{height:67.384687px;}
.h0_c00169{height:1152.720000px;}
.h1_c00169{height:1152.750000px;}
.w0_c00169{width:792.720000px;}
.w1_c00169{width:792.750000px;}
.x0_c00169{left:0.000000px;}
.x4_c00169{left:56.160000px;}
.x58_c00169{left:57.600000px;}
.x48_c00169{left:86.400000px;}
.x15_c00169{left:87.840000px;}
.x3d_c00169{left:97.200000px;}
.x16_c00169{left:108.000000px;}
.x5_c00169{left:118.800000px;}
.x2e_c00169{left:129.600000px;}
.x38_c00169{left:138.960000px;}
.x22_c00169{left:141.120000px;}
.x41_c00169{left:149.760000px;}
.x6_c00169{left:151.920000px;}
.x4c_c00169{left:159.840000px;}
.x29_c00169{left:161.280000px;}
.x59_c00169{left:170.640000px;}
.x39_c00169{left:172.080000px;}
.x2f_c00169{left:182.160000px;}
.x7_c00169{left:183.600000px;}
.x34_c00169{left:192.960000px;}
.x5a_c00169{left:203.040000px;}
.x17_c00169{left:204.480000px;}
.x51_c00169{left:223.200000px;}
.x5f_c00169{left:224.640000px;}
.x23_c00169{left:236.160000px;}
.x2a_c00169{left:246.960000px;}
.x3a_c00169{left:257.040000px;}
.xf_c00169{left:259.200000px;}
.x30_c00169{left:268.560000px;}
.x4d_c00169{left:278.640000px;}
.x8_c00169{left:280.800000px;}
.x3e_c00169{left:282.240000px;}
.x49_c00169{left:289.440000px;}
.x1e_c00169{left:290.880000px;}
.x5b_c00169{left:300.240000px;}
.x18_c00169{left:301.680000px;}
.x31_c00169{left:311.040000px;}
.x9_c00169{left:313.200000px;}
.x42_c00169{left:321.840000px;}
.x10_c00169{left:323.280000px;}
.x24_c00169{left:332.640000px;}
.x45_c00169{left:343.440000px;}
.xa_c00169{left:344.880000px;}
.x5e_c00169{left:353.520000px;}
.x43_c00169{left:365.040000px;}
.x4a_c00169{left:366.480000px;}
.x61_c00169{left:375.840000px;}
.x5c_c00169{left:386.640000px;}
.x46_c00169{left:388.080000px;}
.x32_c00169{left:390.240000px;}
.x4f_c00169{left:398.160000px;}
.xb_c00169{left:399.600000px;}
.x28_c00169{left:409.680000px;}
.x2b_c00169{left:411.840000px;}
.x5d_c00169{left:419.040000px;}
.x11_c00169{left:420.480000px;}
.x3f_c00169{left:430.560000px;}
.x19_c00169{left:432.000000px;}
.x60_c00169{left:440.640000px;}
.x25_c00169{left:442.080000px;}
.x35_c00169{left:452.160000px;}
.x62_c00169{left:462.240000px;}
.x12_c00169{left:463.680000px;}
.x4b_c00169{left:473.760000px;}
.xc_c00169{left:475.200000px;}
.x53_c00169{left:485.280000px;}
.x44_c00169{left:495.360000px;}
.x1a_c00169{left:496.800000px;}
.x2c_c00169{left:507.600000px;}
.x54_c00169{left:516.960000px;}
.x13_c00169{left:518.400000px;}
.x4e_c00169{left:527.760000px;}
.x33_c00169{left:529.200000px;}
.x52_c00169{left:538.560000px;}
.x1f_c00169{left:540.000000px;}
.x3b_c00169{left:550.800000px;}
.x55_c00169{left:559.440000px;}
.x36_c00169{left:560.880000px;}
.x1b_c00169{left:573.120000px;}
.xd_c00169{left:583.200000px;}
.x3c_c00169{left:594.000000px;}
.x1c_c00169{left:605.520000px;}
.xe_c00169{left:615.600000px;}
.x47_c00169{left:626.400000px;}
.x20_c00169{left:627.840000px;}
.x14_c00169{left:638.640000px;}
.x40_c00169{left:648.000000px;}
.x56_c00169{left:658.800000px;}
.x21_c00169{left:660.240000px;}
.x37_c00169{left:670.320000px;}
.x57_c00169{left:680.400000px;}
.x26_c00169{left:681.840000px;}
.x1d_c00169{left:691.920000px;}
.x2d_c00169{left:693.360000px;}
.x50_c00169{left:702.720000px;}
.x1_c00169{left:704.160000px;}
.x27_c00169{left:714.240000px;}
.x2_c00169{left:722.160000px;}
.x3_c00169{left:740.160000px;}
@media print{
.v2_c00169{vertical-align:-2.560000pt;}
.v0_c00169{vertical-align:0.000000pt;}
.v1_c00169{vertical-align:2.560000pt;}
.ls0_c00169{letter-spacing:0.000000pt;}
.ws1_c00169{word-spacing:-7.796053pt;}
.ws0_c00169{word-spacing:-3.487360pt;}
.ws3_c00169{word-spacing:0.000000pt;}
.ws2_c00169{word-spacing:3.376650pt;}
.fs4_c00169{font-size:30.720000pt;}
.fsc_c00169{font-size:33.280000pt;}
.fs2_c00169{font-size:35.840000pt;}
.fsa_c00169{font-size:38.400000pt;}
.fs8_c00169{font-size:40.960000pt;}
.fs5_c00169{font-size:43.520000pt;}
.fs1_c00169{font-size:46.080000pt;}
.fsb_c00169{font-size:48.640000pt;}
.fsd_c00169{font-size:51.200000pt;}
.fs7_c00169{font-size:53.760000pt;}
.fs3_c00169{font-size:56.320000pt;}
.fs6_c00169{font-size:58.880000pt;}
.fs0_c00169{font-size:61.440000pt;}
.fs9_c00169{font-size:64.000000pt;}
.fse_c00169{font-size:66.560000pt;}
.y0_c00169{bottom:0.000000pt;}
.y8b_c00169{bottom:45.440000pt;}
.y8a_c00169{bottom:46.080000pt;}
.y8d_c00169{bottom:47.360000pt;}
.y8c_c00169{bottom:48.000000pt;}
.y89_c00169{bottom:48.640000pt;}
.y86_c00169{bottom:81.920000pt;}
.y87_c00169{bottom:82.560000pt;}
.y84_c00169{bottom:83.840000pt;}
.y88_c00169{bottom:84.480000pt;}
.y85_c00169{bottom:85.760000pt;}
.y82_c00169{bottom:86.400000pt;}
.y83_c00169{bottom:87.040000pt;}
.y81_c00169{bottom:89.600000pt;}
.y80_c00169{bottom:90.880000pt;}
.y7e_c00169{bottom:120.960000pt;}
.y7f_c00169{bottom:122.240000pt;}
.y7d_c00169{bottom:123.520000pt;}
.y7c_c00169{bottom:124.160000pt;}
.y7b_c00169{bottom:124.800000pt;}
.y7a_c00169{bottom:125.440000pt;}
.y79_c00169{bottom:126.720000pt;}
.y78_c00169{bottom:128.000000pt;}
.y76_c00169{bottom:159.360000pt;}
.y77_c00169{bottom:161.280000pt;}
.y75_c00169{bottom:161.920000pt;}
.y73_c00169{bottom:162.560000pt;}
.y74_c00169{bottom:163.200000pt;}
.y72_c00169{bottom:164.480000pt;}
.y70_c00169{bottom:197.120000pt;}
.y6d_c00169{bottom:198.400000pt;}
.y6f_c00169{bottom:199.040000pt;}
.y71_c00169{bottom:199.680000pt;}
.y6e_c00169{bottom:200.320000pt;}
.y6b_c00169{bottom:200.960000pt;}
.y6c_c00169{bottom:201.600000pt;}
.y6a_c00169{bottom:202.880000pt;}
.y69_c00169{bottom:204.160000pt;}
.y68_c00169{bottom:234.240000pt;}
.y66_c00169{bottom:235.520000pt;}
.y65_c00169{bottom:236.160000pt;}
.y67_c00169{bottom:238.720000pt;}
.y64_c00169{bottom:239.360000pt;}
.y63_c00169{bottom:240.000000pt;}
.y62_c00169{bottom:241.280000pt;}
.y60_c00169{bottom:274.560000pt;}
.y5e_c00169{bottom:275.840000pt;}
.y5f_c00169{bottom:276.480000pt;}
.y61_c00169{bottom:277.120000pt;}
.y5d_c00169{bottom:278.400000pt;}
.y59_c00169{bottom:312.960000pt;}
.y5a_c00169{bottom:313.600000pt;}
.y5c_c00169{bottom:314.240000pt;}
.y5b_c00169{bottom:315.520000pt;}
.y55_c00169{bottom:349.440000pt;}
.y56_c00169{bottom:350.080000pt;}
.y53_c00169{bottom:350.720000pt;}
.y54_c00169{bottom:351.360000pt;}
.y58_c00169{bottom:352.000000pt;}
.y57_c00169{bottom:352.640000pt;}
.y52_c00169{bottom:353.280000pt;}
.y51_c00169{bottom:354.560000pt;}
.y4f_c00169{bottom:387.840000pt;}
.y4e_c00169{bottom:388.480000pt;}
.y4c_c00169{bottom:389.760000pt;}
.y50_c00169{bottom:390.400000pt;}
.y4d_c00169{bottom:391.040000pt;}
.y4b_c00169{bottom:391.680000pt;}
.y4a_c00169{bottom:392.960000pt;}
.y49_c00169{bottom:426.880000pt;}
.y46_c00169{bottom:427.520000pt;}
.y48_c00169{bottom:428.800000pt;}
.y47_c00169{bottom:429.440000pt;}
.y43_c00169{bottom:473.600000pt;}
.y44_c00169{bottom:474.880000pt;}
.y45_c00169{bottom:476.160000pt;}
.y42_c00169{bottom:476.800000pt;}
.y41_c00169{bottom:477.440000pt;}
.y3e_c00169{bottom:512.640000pt;}
.y3d_c00169{bottom:513.280000pt;}
.y40_c00169{bottom:515.200000pt;}
.y3f_c00169{bottom:515.840000pt;}
.y3c_c00169{bottom:549.760000pt;}
.y38_c00169{bottom:550.400000pt;}
.y3b_c00169{bottom:551.040000pt;}
.y3a_c00169{bottom:552.320000pt;}
.y39_c00169{bottom:553.600000pt;}
.y35_c00169{bottom:587.520000pt;}
.y36_c00169{bottom:588.160000pt;}
.y33_c00169{bottom:588.800000pt;}
.y37_c00169{bottom:589.440000pt;}
.y34_c00169{bottom:590.720000pt;}
.y32_c00169{bottom:591.360000pt;}
.y2f_c00169{bottom:626.560000pt;}
.y31_c00169{bottom:627.200000pt;}
.y2e_c00169{bottom:629.120000pt;}
.y30_c00169{bottom:629.760000pt;}
.y2a_c00169{bottom:664.320000pt;}
.y2b_c00169{bottom:664.960000pt;}
.y2d_c00169{bottom:665.600000pt;}
.y29_c00169{bottom:666.880000pt;}
.y2c_c00169{bottom:667.520000pt;}
.y27_c00169{bottom:703.360000pt;}
.y28_c00169{bottom:704.000000pt;}
.y24_c00169{bottom:704.640000pt;}
.y25_c00169{bottom:705.280000pt;}
.y26_c00169{bottom:705.920000pt;}
.y1f_c00169{bottom:741.120000pt;}
.y23_c00169{bottom:741.760000pt;}
.y1e_c00169{bottom:742.400000pt;}
.y20_c00169{bottom:743.040000pt;}
.y21_c00169{bottom:743.680000pt;}
.y22_c00169{bottom:744.320000pt;}
.y1b_c00169{bottom:778.880000pt;}
.y1d_c00169{bottom:780.160000pt;}
.y18_c00169{bottom:780.800000pt;}
.y1a_c00169{bottom:781.440000pt;}
.y19_c00169{bottom:782.080000pt;}
.y1c_c00169{bottom:782.720000pt;}
.y13_c00169{bottom:816.640000pt;}
.y15_c00169{bottom:817.280000pt;}
.y11_c00169{bottom:817.920000pt;}
.y17_c00169{bottom:818.560000pt;}
.y12_c00169{bottom:819.200000pt;}
.y14_c00169{bottom:819.840000pt;}
.y16_c00169{bottom:820.480000pt;}
.ya_c00169{bottom:853.120000pt;}
.yd_c00169{bottom:855.040000pt;}
.yf_c00169{bottom:855.680000pt;}
.yb_c00169{bottom:856.320000pt;}
.yc_c00169{bottom:857.600000pt;}
.ye_c00169{bottom:858.240000pt;}
.y10_c00169{bottom:858.880000pt;}
.y4_c00169{bottom:891.520000pt;}
.y6_c00169{bottom:893.440000pt;}
.y5_c00169{bottom:895.360000pt;}
.y7_c00169{bottom:896.000000pt;}
.y8_c00169{bottom:896.640000pt;}
.y9_c00169{bottom:897.280000pt;}
.y1_c00169{bottom:976.640000pt;}
.y2_c00169{bottom:979.200000pt;}
.y3_c00169{bottom:981.120000pt;}
.h6_c00169{height:27.645000pt;}
.hf_c00169{height:29.948750pt;}
.h4_c00169{height:32.252500pt;}
.hc_c00169{height:34.556250pt;}
.ha_c00169{height:36.860000pt;}
.h7_c00169{height:39.163750pt;}
.h3_c00169{height:41.467500pt;}
.hd_c00169{height:43.771250pt;}
.he_c00169{height:44.027500pt;}
.h10_c00169{height:46.075000pt;}
.h9_c00169{height:48.378750pt;}
.h5_c00169{height:50.682500pt;}
.h8_c00169{height:52.986250pt;}
.h2_c00169{height:55.290000pt;}
.hb_c00169{height:57.593750pt;}
.h11_c00169{height:59.897500pt;}
.h0_c00169{height:1024.640000pt;}
.h1_c00169{height:1024.666667pt;}
.w0_c00169{width:704.640000pt;}
.w1_c00169{width:704.666667pt;}
.x0_c00169{left:0.000000pt;}
.x4_c00169{left:49.920000pt;}
.x58_c00169{left:51.200000pt;}
.x48_c00169{left:76.800000pt;}
.x15_c00169{left:78.080000pt;}
.x3d_c00169{left:86.400000pt;}
.x16_c00169{left:96.000000pt;}
.x5_c00169{left:105.600000pt;}
.x2e_c00169{left:115.200000pt;}
.x38_c00169{left:123.520000pt;}
.x22_c00169{left:125.440000pt;}
.x41_c00169{left:133.120000pt;}
.x6_c00169{left:135.040000pt;}
.x4c_c00169{left:142.080000pt;}
.x29_c00169{left:143.360000pt;}
.x59_c00169{left:151.680000pt;}
.x39_c00169{left:152.960000pt;}
.x2f_c00169{left:161.920000pt;}
.x7_c00169{left:163.200000pt;}
.x34_c00169{left:171.520000pt;}
.x5a_c00169{left:180.480000pt;}
.x17_c00169{left:181.760000pt;}
.x51_c00169{left:198.400000pt;}
.x5f_c00169{left:199.680000pt;}
.x23_c00169{left:209.920000pt;}
.x2a_c00169{left:219.520000pt;}
.x3a_c00169{left:228.480000pt;}
.xf_c00169{left:230.400000pt;}
.x30_c00169{left:238.720000pt;}
.x4d_c00169{left:247.680000pt;}
.x8_c00169{left:249.600000pt;}
.x3e_c00169{left:250.880000pt;}
.x49_c00169{left:257.280000pt;}
.x1e_c00169{left:258.560000pt;}
.x5b_c00169{left:266.880000pt;}
.x18_c00169{left:268.160000pt;}
.x31_c00169{left:276.480000pt;}
.x9_c00169{left:278.400000pt;}
.x42_c00169{left:286.080000pt;}
.x10_c00169{left:287.360000pt;}
.x24_c00169{left:295.680000pt;}
.x45_c00169{left:305.280000pt;}
.xa_c00169{left:306.560000pt;}
.x5e_c00169{left:314.240000pt;}
.x43_c00169{left:324.480000pt;}
.x4a_c00169{left:325.760000pt;}
.x61_c00169{left:334.080000pt;}
.x5c_c00169{left:343.680000pt;}
.x46_c00169{left:344.960000pt;}
.x32_c00169{left:346.880000pt;}
.x4f_c00169{left:353.920000pt;}
.xb_c00169{left:355.200000pt;}
.x28_c00169{left:364.160000pt;}
.x2b_c00169{left:366.080000pt;}
.x5d_c00169{left:372.480000pt;}
.x11_c00169{left:373.760000pt;}
.x3f_c00169{left:382.720000pt;}
.x19_c00169{left:384.000000pt;}
.x60_c00169{left:391.680000pt;}
.x25_c00169{left:392.960000pt;}
.x35_c00169{left:401.920000pt;}
.x62_c00169{left:410.880000pt;}
.x12_c00169{left:412.160000pt;}
.x4b_c00169{left:421.120000pt;}
.xc_c00169{left:422.400000pt;}
.x53_c00169{left:431.360000pt;}
.x44_c00169{left:440.320000pt;}
.x1a_c00169{left:441.600000pt;}
.x2c_c00169{left:451.200000pt;}
.x54_c00169{left:459.520000pt;}
.x13_c00169{left:460.800000pt;}
.x4e_c00169{left:469.120000pt;}
.x33_c00169{left:470.400000pt;}
.x52_c00169{left:478.720000pt;}
.x1f_c00169{left:480.000000pt;}
.x3b_c00169{left:489.600000pt;}
.x55_c00169{left:497.280000pt;}
.x36_c00169{left:498.560000pt;}
.x1b_c00169{left:509.440000pt;}
.xd_c00169{left:518.400000pt;}
.x3c_c00169{left:528.000000pt;}
.x1c_c00169{left:538.240000pt;}
.xe_c00169{left:547.200000pt;}
.x47_c00169{left:556.800000pt;}
.x20_c00169{left:558.080000pt;}
.x14_c00169{left:567.680000pt;}
.x40_c00169{left:576.000000pt;}
.x56_c00169{left:585.600000pt;}
.x21_c00169{left:586.880000pt;}
.x37_c00169{left:595.840000pt;}
.x57_c00169{left:604.800000pt;}
.x26_c00169{left:606.080000pt;}
.x1d_c00169{left:615.040000pt;}
.x2d_c00169{left:616.320000pt;}
.x50_c00169{left:624.640000pt;}
.x1_c00169{left:625.920000pt;}
.x27_c00169{left:634.880000pt;}
.x2_c00169{left:641.920000pt;}
.x3_c00169{left:657.920000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_05d8a5845733f04d41ad4580.woff2')format("woff");}.ff1_c00170{font-family:ff1_c00170;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5c_c00170{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m30_c00170{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00170{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m23_c00170{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00170{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m0_c00170{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.ma_c00170{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00170{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m2_c00170{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m51_c00170{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m42_c00170{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00170{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m43_c00170{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00170{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m49_c00170{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m55_c00170{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);}
.m3d_c00170{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m46_c00170{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);}
.m58_c00170{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m59_c00170{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m12_c00170{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);}
.m20_c00170{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m7_c00170{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);}
.m4a_c00170{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m1_c00170{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m18_c00170{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m35_c00170{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);}
.mb_c00170{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m45_c00170{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m13_c00170{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);}
.me_c00170{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);}
.m3a_c00170{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m24_c00170{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00170{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);}
.m6_c00170{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m3_c00170{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);}
.m3b_c00170{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.md_c00170{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00170{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m44_c00170{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);}
.m2e_c00170{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00170{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);}
.m54_c00170{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m29_c00170{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);}
.m2b_c00170{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);}
.m5f_c00170{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00170{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m36_c00170{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m21_c00170{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00170{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);}
.m5d_c00170{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m33_c00170{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);}
.m39_c00170{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m47_c00170{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);}
.m28_c00170{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m57_c00170{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m56_c00170{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00170{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m17_c00170{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);}
.m1c_c00170{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m15_c00170{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m9_c00170{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.mf_c00170{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);}
.m52_c00170{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m32_c00170{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m10_c00170{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m37_c00170{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00170{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m38_c00170{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);}
.m31_c00170{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);}
.m41_c00170{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m26_c00170{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m14_c00170{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00170{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);}
.m5a_c00170{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00170{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00170{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m34_c00170{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);}
.m27_c00170{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m25_c00170{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m5_c00170{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m16_c00170{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00170{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);}
.m4_c00170{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);}
.m1d_c00170{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m19_c00170{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m40_c00170{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m8_c00170{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m60_c00170{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m11_c00170{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00170{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);}
.mc_c00170{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00170{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m22_c00170{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m48_c00170{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m50_c00170{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m53_c00170{transform:matrix(0.735000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735000,0.000000,0.000000,0.250000,0,0);}
.v0_c00170{vertical-align:0.000000px;}
.ls0_c00170{letter-spacing:0.000000px;}
.sc__c00170{text-shadow:none;}
.sc0_c00170{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00170{-webkit-text-stroke:0px transparent;}
.sc0_c00170{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00170{word-spacing:-2.258876px;}
.ws1_c00170{word-spacing:0.000000px;}
.fc0_c00170{color:transparent;}
.fs3_c00170{font-size:34.560000px;}
.fs4_c00170{font-size:37.440000px;}
.fsc_c00170{font-size:40.320000px;}
.fs8_c00170{font-size:46.080000px;}
.fs2_c00170{font-size:48.960000px;}
.fs7_c00170{font-size:51.840000px;}
.fs5_c00170{font-size:54.720000px;}
.fsb_c00170{font-size:57.600000px;}
.fs1_c00170{font-size:60.480000px;}
.fsa_c00170{font-size:63.360000px;}
.fsd_c00170{font-size:66.240000px;}
.fs9_c00170{font-size:69.120000px;}
.fs6_c00170{font-size:72.000000px;}
.fs0_c00170{font-size:77.760000px;}
.y0_c00170{bottom:0.000000px;}
.y85_c00170{bottom:53.280000px;}
.y84_c00170{bottom:57.600000px;}
.y81_c00170{bottom:90.720000px;}
.y83_c00170{bottom:92.880000px;}
.y82_c00170{bottom:93.600000px;}
.y7d_c00170{bottom:94.320000px;}
.y80_c00170{bottom:95.040000px;}
.y7f_c00170{bottom:96.480000px;}
.y7e_c00170{bottom:97.200000px;}
.y7c_c00170{bottom:100.080000px;}
.y7a_c00170{bottom:134.640000px;}
.y77_c00170{bottom:135.360000px;}
.y7b_c00170{bottom:136.080000px;}
.y79_c00170{bottom:136.800000px;}
.y78_c00170{bottom:137.520000px;}
.y76_c00170{bottom:138.960000px;}
.y75_c00170{bottom:141.120000px;}
.y74_c00170{bottom:142.560000px;}
.y73_c00170{bottom:177.120000px;}
.y70_c00170{bottom:180.720000px;}
.y72_c00170{bottom:181.440000px;}
.y71_c00170{bottom:182.160000px;}
.y6f_c00170{bottom:184.320000px;}
.y6d_c00170{bottom:221.040000px;}
.y6e_c00170{bottom:221.760000px;}
.y6b_c00170{bottom:222.480000px;}
.y6c_c00170{bottom:223.920000px;}
.y6a_c00170{bottom:225.360000px;}
.y69_c00170{bottom:226.080000px;}
.y68_c00170{bottom:227.520000px;}
.y66_c00170{bottom:262.800000px;}
.y65_c00170{bottom:263.520000px;}
.y67_c00170{bottom:264.960000px;}
.y63_c00170{bottom:265.680000px;}
.y64_c00170{bottom:266.400000px;}
.y62_c00170{bottom:268.560000px;}
.y61_c00170{bottom:270.000000px;}
.y5f_c00170{bottom:306.000000px;}
.y5e_c00170{bottom:306.720000px;}
.y5c_c00170{bottom:307.440000px;}
.y59_c00170{bottom:308.160000px;}
.y60_c00170{bottom:308.880000px;}
.y5d_c00170{bottom:309.600000px;}
.y5b_c00170{bottom:310.320000px;}
.y5a_c00170{bottom:311.760000px;}
.y58_c00170{bottom:348.480000px;}
.y56_c00170{bottom:349.200000px;}
.y53_c00170{bottom:350.640000px;}
.y57_c00170{bottom:351.360000px;}
.y55_c00170{bottom:352.080000px;}
.y54_c00170{bottom:352.800000px;}
.y52_c00170{bottom:353.520000px;}
.y51_c00170{bottom:354.960000px;}
.y4e_c00170{bottom:391.680000px;}
.y4f_c00170{bottom:392.400000px;}
.y4d_c00170{bottom:393.120000px;}
.y4b_c00170{bottom:393.840000px;}
.y50_c00170{bottom:394.560000px;}
.y4c_c00170{bottom:395.280000px;}
.y4a_c00170{bottom:397.440000px;}
.y49_c00170{bottom:434.160000px;}
.y46_c00170{bottom:435.600000px;}
.y48_c00170{bottom:437.040000px;}
.y47_c00170{bottom:437.760000px;}
.y45_c00170{bottom:438.480000px;}
.y44_c00170{bottom:489.600000px;}
.y43_c00170{bottom:492.480000px;}
.y41_c00170{bottom:530.640000px;}
.y42_c00170{bottom:531.360000px;}
.y3f_c00170{bottom:532.080000px;}
.y40_c00170{bottom:534.240000px;}
.y3e_c00170{bottom:534.960000px;}
.y3c_c00170{bottom:573.840000px;}
.y39_c00170{bottom:574.560000px;}
.y38_c00170{bottom:576.000000px;}
.y3d_c00170{bottom:576.720000px;}
.y3a_c00170{bottom:577.440000px;}
.y3b_c00170{bottom:578.160000px;}
.y35_c00170{bottom:617.760000px;}
.y36_c00170{bottom:618.480000px;}
.y37_c00170{bottom:619.920000px;}
.y34_c00170{bottom:620.640000px;}
.y33_c00170{bottom:621.360000px;}
.y31_c00170{bottom:660.960000px;}
.y32_c00170{bottom:662.400000px;}
.y2e_c00170{bottom:663.120000px;}
.y2f_c00170{bottom:663.840000px;}
.y30_c00170{bottom:664.560000px;}
.y2b_c00170{bottom:703.440000px;}
.y2c_c00170{bottom:704.160000px;}
.y2a_c00170{bottom:705.600000px;}
.y2d_c00170{bottom:706.320000px;}
.y25_c00170{bottom:745.200000px;}
.y27_c00170{bottom:746.640000px;}
.y29_c00170{bottom:747.360000px;}
.y24_c00170{bottom:748.080000px;}
.y26_c00170{bottom:748.800000px;}
.y28_c00170{bottom:749.520000px;}
.y21_c00170{bottom:789.120000px;}
.y1f_c00170{bottom:789.840000px;}
.y20_c00170{bottom:791.280000px;}
.y23_c00170{bottom:792.000000px;}
.y22_c00170{bottom:792.720000px;}
.y19_c00170{bottom:830.880000px;}
.y1b_c00170{bottom:831.600000px;}
.y1e_c00170{bottom:833.040000px;}
.y1a_c00170{bottom:834.480000px;}
.y1c_c00170{bottom:835.200000px;}
.y1d_c00170{bottom:835.920000px;}
.y14_c00170{bottom:873.360000px;}
.y16_c00170{bottom:874.800000px;}
.y17_c00170{bottom:875.520000px;}
.y15_c00170{bottom:876.960000px;}
.y18_c00170{bottom:878.400000px;}
.yf_c00170{bottom:918.000000px;}
.y10_c00170{bottom:919.440000px;}
.y11_c00170{bottom:920.160000px;}
.y12_c00170{bottom:920.880000px;}
.y13_c00170{bottom:921.600000px;}
.yc_c00170{bottom:960.480000px;}
.y9_c00170{bottom:961.200000px;}
.ya_c00170{bottom:961.920000px;}
.yb_c00170{bottom:962.640000px;}
.yd_c00170{bottom:964.080000px;}
.ye_c00170{bottom:964.800000px;}
.y2_c00170{bottom:1000.800000px;}
.y4_c00170{bottom:1002.240000px;}
.y7_c00170{bottom:1003.680000px;}
.y3_c00170{bottom:1004.400000px;}
.y5_c00170{bottom:1005.840000px;}
.y6_c00170{bottom:1006.560000px;}
.y8_c00170{bottom:1007.280000px;}
.y1_c00170{bottom:1090.800000px;}
.h5_c00170{height:31.100625px;}
.h6_c00170{height:33.692344px;}
.he_c00170{height:36.284062px;}
.ha_c00170{height:41.467500px;}
.h4_c00170{height:44.059219px;}
.h9_c00170{height:46.650937px;}
.h7_c00170{height:49.242656px;}
.hd_c00170{height:51.834375px;}
.h3_c00170{height:54.426094px;}
.hc_c00170{height:57.017812px;}
.hf_c00170{height:59.609531px;}
.hb_c00170{height:62.201250px;}
.h8_c00170{height:64.792969px;}
.h2_c00170{height:69.976406px;}
.h1_c00170{height:1150.500000px;}
.h0_c00170{height:1150.560000px;}
.w1_c00170{width:789.000000px;}
.w0_c00170{width:789.120000px;}
.x0_c00170{left:0.000000px;}
.x2_c00170{left:51.840000px;}
.xe_c00170{left:54.000000px;}
.x4f_c00170{left:55.440000px;}
.x37_c00170{left:83.520000px;}
.x50_c00170{left:84.960000px;}
.x46_c00170{left:93.600000px;}
.x55_c00170{left:95.040000px;}
.x49_c00170{left:104.400000px;}
.x4c_c00170{left:105.840000px;}
.x51_c00170{left:114.480000px;}
.x17_c00170{left:115.920000px;}
.xf_c00170{left:125.280000px;}
.x3_c00170{left:126.720000px;}
.x29_c00170{left:136.080000px;}
.x32_c00170{left:146.880000px;}
.x40_c00170{left:157.680000px;}
.x2a_c00170{left:167.760000px;}
.x18_c00170{left:169.200000px;}
.x2f_c00170{left:179.280000px;}
.x53_c00170{left:188.640000px;}
.x41_c00170{left:190.080000px;}
.x3f_c00170{left:192.240000px;}
.x3b_c00170{left:199.440000px;}
.x1e_c00170{left:200.880000px;}
.x10_c00170{left:211.680000px;}
.x4_c00170{left:222.480000px;}
.x1f_c00170{left:233.280000px;}
.x34_c00170{left:254.160000px;}
.x19_c00170{left:255.600000px;}
.x5_c00170{left:265.680000px;}
.x2b_c00170{left:275.760000px;}
.x48_c00170{left:285.120000px;}
.x11_c00170{left:287.280000px;}
.x6_c00170{left:298.080000px;}
.x20_c00170{left:308.880000px;}
.x2c_c00170{left:318.960000px;}
.x1a_c00170{left:320.400000px;}
.x42_c00170{left:329.040000px;}
.x7_c00170{left:330.480000px;}
.x12_c00170{left:342.000000px;}
.x1b_c00170{left:352.080000px;}
.x4a_c00170{left:362.160000px;}
.x8_c00170{left:363.600000px;}
.x30_c00170{left:372.240000px;}
.x13_c00170{left:384.480000px;}
.x25_c00170{left:393.840000px;}
.x2d_c00170{left:395.280000px;}
.x3c_c00170{left:406.080000px;}
.x4d_c00170{left:415.440000px;}
.x14_c00170{left:416.880000px;}
.x47_c00170{left:426.960000px;}
.x9_c00170{left:428.400000px;}
.x3d_c00170{left:438.480000px;}
.x33_c00170{left:449.280000px;}
.xa_c00170{left:460.800000px;}
.x26_c00170{left:470.880000px;}
.x43_c00170{left:481.680000px;}
.x21_c00170{left:492.480000px;}
.xb_c00170{left:493.920000px;}
.x27_c00170{left:504.000000px;}
.x35_c00170{left:514.800000px;}
.x1c_c00170{left:526.320000px;}
.x38_c00170{left:535.680000px;}
.x22_c00170{left:537.120000px;}
.x36_c00170{left:546.480000px;}
.x4e_c00170{left:548.640000px;}
.x54_c00170{left:557.280000px;}
.x2e_c00170{left:559.440000px;}
.x39_c00170{left:568.080000px;}
.x23_c00170{left:569.520000px;}
.x28_c00170{left:590.400000px;}
.x15_c00170{left:591.840000px;}
.x52_c00170{left:601.200000px;}
.xc_c00170{left:602.640000px;}
.x16_c00170{left:623.520000px;}
.x3e_c00170{left:632.880000px;}
.x44_c00170{left:634.320000px;}
.x3a_c00170{left:637.200000px;}
.x4b_c00170{left:645.120000px;}
.x1d_c00170{left:656.640000px;}
.xd_c00170{left:667.440000px;}
.x24_c00170{left:678.240000px;}
.x31_c00170{left:689.040000px;}
.x1_c00170{left:693.360000px;}
.x45_c00170{left:699.840000px;}
@media print{
.v0_c00170{vertical-align:0.000000pt;}
.ls0_c00170{letter-spacing:0.000000pt;}
.ws0_c00170{word-spacing:-2.007890pt;}
.ws1_c00170{word-spacing:0.000000pt;}
.fs3_c00170{font-size:30.720000pt;}
.fs4_c00170{font-size:33.280000pt;}
.fsc_c00170{font-size:35.840000pt;}
.fs8_c00170{font-size:40.960000pt;}
.fs2_c00170{font-size:43.520000pt;}
.fs7_c00170{font-size:46.080000pt;}
.fs5_c00170{font-size:48.640000pt;}
.fsb_c00170{font-size:51.200000pt;}
.fs1_c00170{font-size:53.760000pt;}
.fsa_c00170{font-size:56.320000pt;}
.fsd_c00170{font-size:58.880000pt;}
.fs9_c00170{font-size:61.440000pt;}
.fs6_c00170{font-size:64.000000pt;}
.fs0_c00170{font-size:69.120000pt;}
.y0_c00170{bottom:0.000000pt;}
.y85_c00170{bottom:47.360000pt;}
.y84_c00170{bottom:51.200000pt;}
.y81_c00170{bottom:80.640000pt;}
.y83_c00170{bottom:82.560000pt;}
.y82_c00170{bottom:83.200000pt;}
.y7d_c00170{bottom:83.840000pt;}
.y80_c00170{bottom:84.480000pt;}
.y7f_c00170{bottom:85.760000pt;}
.y7e_c00170{bottom:86.400000pt;}
.y7c_c00170{bottom:88.960000pt;}
.y7a_c00170{bottom:119.680000pt;}
.y77_c00170{bottom:120.320000pt;}
.y7b_c00170{bottom:120.960000pt;}
.y79_c00170{bottom:121.600000pt;}
.y78_c00170{bottom:122.240000pt;}
.y76_c00170{bottom:123.520000pt;}
.y75_c00170{bottom:125.440000pt;}
.y74_c00170{bottom:126.720000pt;}
.y73_c00170{bottom:157.440000pt;}
.y70_c00170{bottom:160.640000pt;}
.y72_c00170{bottom:161.280000pt;}
.y71_c00170{bottom:161.920000pt;}
.y6f_c00170{bottom:163.840000pt;}
.y6d_c00170{bottom:196.480000pt;}
.y6e_c00170{bottom:197.120000pt;}
.y6b_c00170{bottom:197.760000pt;}
.y6c_c00170{bottom:199.040000pt;}
.y6a_c00170{bottom:200.320000pt;}
.y69_c00170{bottom:200.960000pt;}
.y68_c00170{bottom:202.240000pt;}
.y66_c00170{bottom:233.600000pt;}
.y65_c00170{bottom:234.240000pt;}
.y67_c00170{bottom:235.520000pt;}
.y63_c00170{bottom:236.160000pt;}
.y64_c00170{bottom:236.800000pt;}
.y62_c00170{bottom:238.720000pt;}
.y61_c00170{bottom:240.000000pt;}
.y5f_c00170{bottom:272.000000pt;}
.y5e_c00170{bottom:272.640000pt;}
.y5c_c00170{bottom:273.280000pt;}
.y59_c00170{bottom:273.920000pt;}
.y60_c00170{bottom:274.560000pt;}
.y5d_c00170{bottom:275.200000pt;}
.y5b_c00170{bottom:275.840000pt;}
.y5a_c00170{bottom:277.120000pt;}
.y58_c00170{bottom:309.760000pt;}
.y56_c00170{bottom:310.400000pt;}
.y53_c00170{bottom:311.680000pt;}
.y57_c00170{bottom:312.320000pt;}
.y55_c00170{bottom:312.960000pt;}
.y54_c00170{bottom:313.600000pt;}
.y52_c00170{bottom:314.240000pt;}
.y51_c00170{bottom:315.520000pt;}
.y4e_c00170{bottom:348.160000pt;}
.y4f_c00170{bottom:348.800000pt;}
.y4d_c00170{bottom:349.440000pt;}
.y4b_c00170{bottom:350.080000pt;}
.y50_c00170{bottom:350.720000pt;}
.y4c_c00170{bottom:351.360000pt;}
.y4a_c00170{bottom:353.280000pt;}
.y49_c00170{bottom:385.920000pt;}
.y46_c00170{bottom:387.200000pt;}
.y48_c00170{bottom:388.480000pt;}
.y47_c00170{bottom:389.120000pt;}
.y45_c00170{bottom:389.760000pt;}
.y44_c00170{bottom:435.200000pt;}
.y43_c00170{bottom:437.760000pt;}
.y41_c00170{bottom:471.680000pt;}
.y42_c00170{bottom:472.320000pt;}
.y3f_c00170{bottom:472.960000pt;}
.y40_c00170{bottom:474.880000pt;}
.y3e_c00170{bottom:475.520000pt;}
.y3c_c00170{bottom:510.080000pt;}
.y39_c00170{bottom:510.720000pt;}
.y38_c00170{bottom:512.000000pt;}
.y3d_c00170{bottom:512.640000pt;}
.y3a_c00170{bottom:513.280000pt;}
.y3b_c00170{bottom:513.920000pt;}
.y35_c00170{bottom:549.120000pt;}
.y36_c00170{bottom:549.760000pt;}
.y37_c00170{bottom:551.040000pt;}
.y34_c00170{bottom:551.680000pt;}
.y33_c00170{bottom:552.320000pt;}
.y31_c00170{bottom:587.520000pt;}
.y32_c00170{bottom:588.800000pt;}
.y2e_c00170{bottom:589.440000pt;}
.y2f_c00170{bottom:590.080000pt;}
.y30_c00170{bottom:590.720000pt;}
.y2b_c00170{bottom:625.280000pt;}
.y2c_c00170{bottom:625.920000pt;}
.y2a_c00170{bottom:627.200000pt;}
.y2d_c00170{bottom:627.840000pt;}
.y25_c00170{bottom:662.400000pt;}
.y27_c00170{bottom:663.680000pt;}
.y29_c00170{bottom:664.320000pt;}
.y24_c00170{bottom:664.960000pt;}
.y26_c00170{bottom:665.600000pt;}
.y28_c00170{bottom:666.240000pt;}
.y21_c00170{bottom:701.440000pt;}
.y1f_c00170{bottom:702.080000pt;}
.y20_c00170{bottom:703.360000pt;}
.y23_c00170{bottom:704.000000pt;}
.y22_c00170{bottom:704.640000pt;}
.y19_c00170{bottom:738.560000pt;}
.y1b_c00170{bottom:739.200000pt;}
.y1e_c00170{bottom:740.480000pt;}
.y1a_c00170{bottom:741.760000pt;}
.y1c_c00170{bottom:742.400000pt;}
.y1d_c00170{bottom:743.040000pt;}
.y14_c00170{bottom:776.320000pt;}
.y16_c00170{bottom:777.600000pt;}
.y17_c00170{bottom:778.240000pt;}
.y15_c00170{bottom:779.520000pt;}
.y18_c00170{bottom:780.800000pt;}
.yf_c00170{bottom:816.000000pt;}
.y10_c00170{bottom:817.280000pt;}
.y11_c00170{bottom:817.920000pt;}
.y12_c00170{bottom:818.560000pt;}
.y13_c00170{bottom:819.200000pt;}
.yc_c00170{bottom:853.760000pt;}
.y9_c00170{bottom:854.400000pt;}
.ya_c00170{bottom:855.040000pt;}
.yb_c00170{bottom:855.680000pt;}
.yd_c00170{bottom:856.960000pt;}
.ye_c00170{bottom:857.600000pt;}
.y2_c00170{bottom:889.600000pt;}
.y4_c00170{bottom:890.880000pt;}
.y7_c00170{bottom:892.160000pt;}
.y3_c00170{bottom:892.800000pt;}
.y5_c00170{bottom:894.080000pt;}
.y6_c00170{bottom:894.720000pt;}
.y8_c00170{bottom:895.360000pt;}
.y1_c00170{bottom:969.600000pt;}
.h5_c00170{height:27.645000pt;}
.h6_c00170{height:29.948750pt;}
.he_c00170{height:32.252500pt;}
.ha_c00170{height:36.860000pt;}
.h4_c00170{height:39.163750pt;}
.h9_c00170{height:41.467500pt;}
.h7_c00170{height:43.771250pt;}
.hd_c00170{height:46.075000pt;}
.h3_c00170{height:48.378750pt;}
.hc_c00170{height:50.682500pt;}
.hf_c00170{height:52.986250pt;}
.hb_c00170{height:55.290000pt;}
.h8_c00170{height:57.593750pt;}
.h2_c00170{height:62.201250pt;}
.h1_c00170{height:1022.666667pt;}
.h0_c00170{height:1022.720000pt;}
.w1_c00170{width:701.333333pt;}
.w0_c00170{width:701.440000pt;}
.x0_c00170{left:0.000000pt;}
.x2_c00170{left:46.080000pt;}
.xe_c00170{left:48.000000pt;}
.x4f_c00170{left:49.280000pt;}
.x37_c00170{left:74.240000pt;}
.x50_c00170{left:75.520000pt;}
.x46_c00170{left:83.200000pt;}
.x55_c00170{left:84.480000pt;}
.x49_c00170{left:92.800000pt;}
.x4c_c00170{left:94.080000pt;}
.x51_c00170{left:101.760000pt;}
.x17_c00170{left:103.040000pt;}
.xf_c00170{left:111.360000pt;}
.x3_c00170{left:112.640000pt;}
.x29_c00170{left:120.960000pt;}
.x32_c00170{left:130.560000pt;}
.x40_c00170{left:140.160000pt;}
.x2a_c00170{left:149.120000pt;}
.x18_c00170{left:150.400000pt;}
.x2f_c00170{left:159.360000pt;}
.x53_c00170{left:167.680000pt;}
.x41_c00170{left:168.960000pt;}
.x3f_c00170{left:170.880000pt;}
.x3b_c00170{left:177.280000pt;}
.x1e_c00170{left:178.560000pt;}
.x10_c00170{left:188.160000pt;}
.x4_c00170{left:197.760000pt;}
.x1f_c00170{left:207.360000pt;}
.x34_c00170{left:225.920000pt;}
.x19_c00170{left:227.200000pt;}
.x5_c00170{left:236.160000pt;}
.x2b_c00170{left:245.120000pt;}
.x48_c00170{left:253.440000pt;}
.x11_c00170{left:255.360000pt;}
.x6_c00170{left:264.960000pt;}
.x20_c00170{left:274.560000pt;}
.x2c_c00170{left:283.520000pt;}
.x1a_c00170{left:284.800000pt;}
.x42_c00170{left:292.480000pt;}
.x7_c00170{left:293.760000pt;}
.x12_c00170{left:304.000000pt;}
.x1b_c00170{left:312.960000pt;}
.x4a_c00170{left:321.920000pt;}
.x8_c00170{left:323.200000pt;}
.x30_c00170{left:330.880000pt;}
.x13_c00170{left:341.760000pt;}
.x25_c00170{left:350.080000pt;}
.x2d_c00170{left:351.360000pt;}
.x3c_c00170{left:360.960000pt;}
.x4d_c00170{left:369.280000pt;}
.x14_c00170{left:370.560000pt;}
.x47_c00170{left:379.520000pt;}
.x9_c00170{left:380.800000pt;}
.x3d_c00170{left:389.760000pt;}
.x33_c00170{left:399.360000pt;}
.xa_c00170{left:409.600000pt;}
.x26_c00170{left:418.560000pt;}
.x43_c00170{left:428.160000pt;}
.x21_c00170{left:437.760000pt;}
.xb_c00170{left:439.040000pt;}
.x27_c00170{left:448.000000pt;}
.x35_c00170{left:457.600000pt;}
.x1c_c00170{left:467.840000pt;}
.x38_c00170{left:476.160000pt;}
.x22_c00170{left:477.440000pt;}
.x36_c00170{left:485.760000pt;}
.x4e_c00170{left:487.680000pt;}
.x54_c00170{left:495.360000pt;}
.x2e_c00170{left:497.280000pt;}
.x39_c00170{left:504.960000pt;}
.x23_c00170{left:506.240000pt;}
.x28_c00170{left:524.800000pt;}
.x15_c00170{left:526.080000pt;}
.x52_c00170{left:534.400000pt;}
.xc_c00170{left:535.680000pt;}
.x16_c00170{left:554.240000pt;}
.x3e_c00170{left:562.560000pt;}
.x44_c00170{left:563.840000pt;}
.x3a_c00170{left:566.400000pt;}
.x4b_c00170{left:573.440000pt;}
.x1d_c00170{left:583.680000pt;}
.xd_c00170{left:593.280000pt;}
.x24_c00170{left:602.880000pt;}
.x31_c00170{left:612.480000pt;}
.x1_c00170{left:616.320000pt;}
.x45_c00170{left:622.080000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6bfa9c0c379814eeeab30280.woff2')format("woff");}.ff1_c00171{font-family:ff1_c00171;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m46_c00171{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m52_c00171{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m54_c00171{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00171{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00171{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00171{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m16_c00171{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1_c00171{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m13_c00171{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m47_c00171{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00171{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3_c00171{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m0_c00171{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m39_c00171{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mc_c00171{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m7_c00171{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);}
.m4d_c00171{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m22_c00171{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.me_c00171{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m23_c00171{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);}
.m41_c00171{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m21_c00171{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);}
.m36_c00171{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2_c00171{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);}
.m9_c00171{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);}
.m37_c00171{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m27_c00171{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00171{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m5_c00171{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);}
.m51_c00171{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m35_c00171{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);}
.ma_c00171{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m34_c00171{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m4_c00171{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m19_c00171{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m43_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);}
.mf_c00171{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00171{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);}
.m25_c00171{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m45_c00171{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);}
.m29_c00171{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);}
.m2d_c00171{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m30_c00171{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00171{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m6_c00171{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m20_c00171{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m48_c00171{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m12_c00171{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);}
.m28_c00171{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00171{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);}
.m14_c00171{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00171{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00171{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00171{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);}
.m32_c00171{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m55_c00171{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.mb_c00171{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);}
.m26_c00171{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00171{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m31_c00171{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00171{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);}
.md_c00171{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);}
.m18_c00171{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m10_c00171{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00171{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);}
.m2b_c00171{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m50_c00171{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00171{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m42_c00171{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00171{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m15_c00171{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);}
.m38_c00171{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m8_c00171{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);}
.m17_c00171{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);}
.m40_c00171{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m11_c00171{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m33_c00171{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00171{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00171{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00171{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m49_c00171{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);}
.m53_c00171{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_c00171{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00171{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m24_c00171{transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00171{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.v1_c00171{vertical-align:-14.400000px;}
.v0_c00171{vertical-align:0.000000px;}
.v2_c00171{vertical-align:11.520000px;}
.ls0_c00171{letter-spacing:0.000000px;}
.sc__c00171{text-shadow:none;}
.sc0_c00171{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00171{-webkit-text-stroke:0px transparent;}
.sc0_c00171{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00171{word-spacing:-2.556960px;}
.ws0_c00171{word-spacing:-0.370800px;}
.ws2_c00171{word-spacing:0.000000px;}
.fc0_c00171{color:transparent;}
.fsb_c00171{font-size:34.560000px;}
.fs6_c00171{font-size:37.440000px;}
.fs8_c00171{font-size:40.320000px;}
.fsc_c00171{font-size:43.200000px;}
.fse_c00171{font-size:46.080000px;}
.fs3_c00171{font-size:48.960000px;}
.fs1_c00171{font-size:51.840000px;}
.fs4_c00171{font-size:54.720000px;}
.fsa_c00171{font-size:57.600000px;}
.fs5_c00171{font-size:60.480000px;}
.fs2_c00171{font-size:63.360000px;}
.fs9_c00171{font-size:66.240000px;}
.fs7_c00171{font-size:69.120000px;}
.fsd_c00171{font-size:72.000000px;}
.fs0_c00171{font-size:77.760000px;}
.y0_c00171{bottom:0.000000px;}
.y71_c00171{bottom:47.520000px;}
.y6e_c00171{bottom:48.960000px;}
.y70_c00171{bottom:49.680000px;}
.y6c_c00171{bottom:50.400000px;}
.y6f_c00171{bottom:51.120000px;}
.y6b_c00171{bottom:51.840000px;}
.y6d_c00171{bottom:53.280000px;}
.y6a_c00171{bottom:56.160000px;}
.y69_c00171{bottom:90.720000px;}
.y66_c00171{bottom:92.160000px;}
.y68_c00171{bottom:92.880000px;}
.y65_c00171{bottom:93.600000px;}
.y67_c00171{bottom:94.320000px;}
.y64_c00171{bottom:95.760000px;}
.y63_c00171{bottom:97.920000px;}
.y62_c00171{bottom:133.920000px;}
.y5f_c00171{bottom:134.640000px;}
.y5e_c00171{bottom:135.360000px;}
.y61_c00171{bottom:136.080000px;}
.y60_c00171{bottom:136.800000px;}
.y5d_c00171{bottom:138.960000px;}
.y5c_c00171{bottom:189.360000px;}
.y5a_c00171{bottom:190.080000px;}
.y5b_c00171{bottom:190.800000px;}
.y59_c00171{bottom:191.520000px;}
.y58_c00171{bottom:192.240000px;}
.y57_c00171{bottom:192.960000px;}
.y55_c00171{bottom:231.120000px;}
.y52_c00171{bottom:232.560000px;}
.y56_c00171{bottom:233.280000px;}
.y54_c00171{bottom:234.000000px;}
.y53_c00171{bottom:234.720000px;}
.y51_c00171{bottom:235.440000px;}
.y50_c00171{bottom:274.320000px;}
.y4e_c00171{bottom:275.040000px;}
.y4d_c00171{bottom:276.480000px;}
.y4f_c00171{bottom:277.200000px;}
.y4c_c00171{bottom:278.640000px;}
.y48_c00171{bottom:317.520000px;}
.y4a_c00171{bottom:318.240000px;}
.y46_c00171{bottom:319.680000px;}
.y4b_c00171{bottom:320.400000px;}
.y49_c00171{bottom:321.120000px;}
.y47_c00171{bottom:321.840000px;}
.y42_c00171{bottom:360.720000px;}
.y43_c00171{bottom:361.440000px;}
.y41_c00171{bottom:362.880000px;}
.y45_c00171{bottom:363.600000px;}
.y44_c00171{bottom:364.320000px;}
.y40_c00171{bottom:365.040000px;}
.y3b_c00171{bottom:403.920000px;}
.y3e_c00171{bottom:404.640000px;}
.y3f_c00171{bottom:406.080000px;}
.y3d_c00171{bottom:406.800000px;}
.y3c_c00171{bottom:407.520000px;}
.y3a_c00171{bottom:447.840000px;}
.y37_c00171{bottom:448.560000px;}
.y35_c00171{bottom:449.280000px;}
.y38_c00171{bottom:450.000000px;}
.y39_c00171{bottom:450.720000px;}
.y36_c00171{bottom:451.440000px;}
.y34_c00171{bottom:490.320000px;}
.y33_c00171{bottom:491.040000px;}
.y31_c00171{bottom:491.760000px;}
.y32_c00171{bottom:493.200000px;}
.y30_c00171{bottom:493.920000px;}
.y2f_c00171{bottom:494.640000px;}
.y2c_c00171{bottom:533.520000px;}
.y2b_c00171{bottom:534.240000px;}
.y2a_c00171{bottom:535.680000px;}
.y2d_c00171{bottom:536.400000px;}
.y2e_c00171{bottom:537.120000px;}
.y29_c00171{bottom:576.720000px;}
.y26_c00171{bottom:578.160000px;}
.y28_c00171{bottom:578.880000px;}
.y27_c00171{bottom:579.600000px;}
.y21_c00171{bottom:619.200000px;}
.y25_c00171{bottom:619.920000px;}
.y23_c00171{bottom:621.360000px;}
.y22_c00171{bottom:622.080000px;}
.y24_c00171{bottom:622.800000px;}
.y1e_c00171{bottom:664.560000px;}
.y1f_c00171{bottom:665.280000px;}
.y20_c00171{bottom:666.000000px;}
.y19_c00171{bottom:704.880000px;}
.y1b_c00171{bottom:705.600000px;}
.y1d_c00171{bottom:706.320000px;}
.y1a_c00171{bottom:707.760000px;}
.y1c_c00171{bottom:708.480000px;}
.y18_c00171{bottom:748.800000px;}
.y16_c00171{bottom:750.960000px;}
.y17_c00171{bottom:751.680000px;}
.y15_c00171{bottom:802.080000px;}
.y14_c00171{bottom:803.520000px;}
.y12_c00171{bottom:845.280000px;}
.y10_c00171{bottom:846.000000px;}
.yf_c00171{bottom:846.720000px;}
.y11_c00171{bottom:848.880000px;}
.y13_c00171{bottom:849.600000px;}
.yc_c00171{bottom:888.480000px;}
.y9_c00171{bottom:889.200000px;}
.ya_c00171{bottom:889.920000px;}
.yb_c00171{bottom:890.640000px;}
.yd_c00171{bottom:891.360000px;}
.ye_c00171{bottom:892.080000px;}
.y5_c00171{bottom:930.960000px;}
.y7_c00171{bottom:933.120000px;}
.y4_c00171{bottom:933.840000px;}
.y6_c00171{bottom:934.560000px;}
.y8_c00171{bottom:935.280000px;}
.y3_c00171{bottom:987.840000px;}
.y2_c00171{bottom:1042.560000px;}
.y1_c00171{bottom:1095.120000px;}
.hd_c00171{height:31.100625px;}
.h8_c00171{height:33.692344px;}
.ha_c00171{height:36.284062px;}
.he_c00171{height:38.875781px;}
.h11_c00171{height:41.467500px;}
.h5_c00171{height:44.059219px;}
.h10_c00171{height:45.209531px;}
.h3_c00171{height:46.650937px;}
.h6_c00171{height:49.242656px;}
.hc_c00171{height:51.834375px;}
.h7_c00171{height:54.426094px;}
.h4_c00171{height:57.017812px;}
.hb_c00171{height:59.609531px;}
.h9_c00171{height:62.201250px;}
.hf_c00171{height:64.792969px;}
.h2_c00171{height:69.976406px;}
.h1_c00171{height:1144.500000px;}
.h0_c00171{height:1144.800000px;}
.w0_c00171{width:781.920000px;}
.w1_c00171{width:782.250000px;}
.x0_c00171{left:0.000000px;}
.xc_c00171{left:57.600000px;}
.x22_c00171{left:59.760000px;}
.x4a_c00171{left:62.640000px;}
.x32_c00171{left:90.000000px;}
.xd_c00171{left:100.080000px;}
.x23_c00171{left:120.960000px;}
.xe_c00171{left:131.760000px;}
.x37_c00171{left:142.560000px;}
.x24_c00171{left:153.360000px;}
.x4_c00171{left:163.440000px;}
.x47_c00171{left:164.880000px;}
.xf_c00171{left:174.240000px;}
.x33_c00171{left:185.040000px;}
.x3f_c00171{left:197.280000px;}
.x28_c00171{left:205.200000px;}
.x43_c00171{left:207.360000px;}
.x5_c00171{left:216.720000px;}
.x3_c00171{left:218.160000px;}
.x38_c00171{left:228.960000px;}
.x16_c00171{left:239.040000px;}
.x6_c00171{left:249.120000px;}
.x44_c00171{left:250.560000px;}
.x17_c00171{left:260.640000px;}
.x2_c00171{left:272.160000px;}
.x7_c00171{left:281.520000px;}
.x1e_c00171{left:292.320000px;}
.x10_c00171{left:302.400000px;}
.x2b_c00171{left:303.840000px;}
.x29_c00171{left:314.640000px;}
.x40_c00171{left:317.520000px;}
.x18_c00171{left:324.720000px;}
.x2d_c00171{left:334.800000px;}
.x8_c00171{left:336.240000px;}
.x34_c00171{left:347.040000px;}
.x4c_c00171{left:348.480000px;}
.x39_c00171{left:357.840000px;}
.x19_c00171{left:368.640000px;}
.x3d_c00171{left:378.000000px;}
.x11_c00171{left:379.440000px;}
.x45_c00171{left:390.240000px;}
.x46_c00171{left:401.760000px;}
.x41_c00171{left:403.200000px;}
.x12_c00171{left:411.840000px;}
.x1f_c00171{left:422.640000px;}
.x9_c00171{left:433.440000px;}
.x4b_c00171{left:434.880000px;}
.x13_c00171{left:445.680000px;}
.x1a_c00171{left:455.040000px;}
.x3e_c00171{left:456.480000px;}
.xa_c00171{left:465.840000px;}
.x48_c00171{left:468.000000px;}
.x1b_c00171{left:476.640000px;}
.x2a_c00171{left:487.440000px;}
.x31_c00171{left:497.520000px;}
.x25_c00171{left:498.960000px;}
.x35_c00171{left:501.120000px;}
.x20_c00171{left:509.760000px;}
.x26_c00171{left:531.360000px;}
.x3a_c00171{left:542.880000px;}
.x3c_c00171{left:553.680000px;}
.x49_c00171{left:565.200000px;}
.x14_c00171{left:574.560000px;}
.xb_c00171{left:576.000000px;}
.x27_c00171{left:585.360000px;}
.x4d_c00171{left:587.520000px;}
.x2e_c00171{left:596.880000px;}
.x36_c00171{left:598.320000px;}
.x1c_c00171{left:607.680000px;}
.x2c_c00171{left:618.480000px;}
.x2f_c00171{left:630.000000px;}
.x1d_c00171{left:640.080000px;}
.x3b_c00171{left:641.520000px;}
.x42_c00171{left:652.320000px;}
.x21_c00171{left:662.400000px;}
.x30_c00171{left:673.920000px;}
.x15_c00171{left:684.000000px;}
.x1_c00171{left:693.360000px;}
@media print{
.v1_c00171{vertical-align:-12.800000pt;}
.v0_c00171{vertical-align:0.000000pt;}
.v2_c00171{vertical-align:10.240000pt;}
.ls0_c00171{letter-spacing:0.000000pt;}
.ws1_c00171{word-spacing:-2.272853pt;}
.ws0_c00171{word-spacing:-0.329600pt;}
.ws2_c00171{word-spacing:0.000000pt;}
.fsb_c00171{font-size:30.720000pt;}
.fs6_c00171{font-size:33.280000pt;}
.fs8_c00171{font-size:35.840000pt;}
.fsc_c00171{font-size:38.400000pt;}
.fse_c00171{font-size:40.960000pt;}
.fs3_c00171{font-size:43.520000pt;}
.fs1_c00171{font-size:46.080000pt;}
.fs4_c00171{font-size:48.640000pt;}
.fsa_c00171{font-size:51.200000pt;}
.fs5_c00171{font-size:53.760000pt;}
.fs2_c00171{font-size:56.320000pt;}
.fs9_c00171{font-size:58.880000pt;}
.fs7_c00171{font-size:61.440000pt;}
.fsd_c00171{font-size:64.000000pt;}
.fs0_c00171{font-size:69.120000pt;}
.y0_c00171{bottom:0.000000pt;}
.y71_c00171{bottom:42.240000pt;}
.y6e_c00171{bottom:43.520000pt;}
.y70_c00171{bottom:44.160000pt;}
.y6c_c00171{bottom:44.800000pt;}
.y6f_c00171{bottom:45.440000pt;}
.y6b_c00171{bottom:46.080000pt;}
.y6d_c00171{bottom:47.360000pt;}
.y6a_c00171{bottom:49.920000pt;}
.y69_c00171{bottom:80.640000pt;}
.y66_c00171{bottom:81.920000pt;}
.y68_c00171{bottom:82.560000pt;}
.y65_c00171{bottom:83.200000pt;}
.y67_c00171{bottom:83.840000pt;}
.y64_c00171{bottom:85.120000pt;}
.y63_c00171{bottom:87.040000pt;}
.y62_c00171{bottom:119.040000pt;}
.y5f_c00171{bottom:119.680000pt;}
.y5e_c00171{bottom:120.320000pt;}
.y61_c00171{bottom:120.960000pt;}
.y60_c00171{bottom:121.600000pt;}
.y5d_c00171{bottom:123.520000pt;}
.y5c_c00171{bottom:168.320000pt;}
.y5a_c00171{bottom:168.960000pt;}
.y5b_c00171{bottom:169.600000pt;}
.y59_c00171{bottom:170.240000pt;}
.y58_c00171{bottom:170.880000pt;}
.y57_c00171{bottom:171.520000pt;}
.y55_c00171{bottom:205.440000pt;}
.y52_c00171{bottom:206.720000pt;}
.y56_c00171{bottom:207.360000pt;}
.y54_c00171{bottom:208.000000pt;}
.y53_c00171{bottom:208.640000pt;}
.y51_c00171{bottom:209.280000pt;}
.y50_c00171{bottom:243.840000pt;}
.y4e_c00171{bottom:244.480000pt;}
.y4d_c00171{bottom:245.760000pt;}
.y4f_c00171{bottom:246.400000pt;}
.y4c_c00171{bottom:247.680000pt;}
.y48_c00171{bottom:282.240000pt;}
.y4a_c00171{bottom:282.880000pt;}
.y46_c00171{bottom:284.160000pt;}
.y4b_c00171{bottom:284.800000pt;}
.y49_c00171{bottom:285.440000pt;}
.y47_c00171{bottom:286.080000pt;}
.y42_c00171{bottom:320.640000pt;}
.y43_c00171{bottom:321.280000pt;}
.y41_c00171{bottom:322.560000pt;}
.y45_c00171{bottom:323.200000pt;}
.y44_c00171{bottom:323.840000pt;}
.y40_c00171{bottom:324.480000pt;}
.y3b_c00171{bottom:359.040000pt;}
.y3e_c00171{bottom:359.680000pt;}
.y3f_c00171{bottom:360.960000pt;}
.y3d_c00171{bottom:361.600000pt;}
.y3c_c00171{bottom:362.240000pt;}
.y3a_c00171{bottom:398.080000pt;}
.y37_c00171{bottom:398.720000pt;}
.y35_c00171{bottom:399.360000pt;}
.y38_c00171{bottom:400.000000pt;}
.y39_c00171{bottom:400.640000pt;}
.y36_c00171{bottom:401.280000pt;}
.y34_c00171{bottom:435.840000pt;}
.y33_c00171{bottom:436.480000pt;}
.y31_c00171{bottom:437.120000pt;}
.y32_c00171{bottom:438.400000pt;}
.y30_c00171{bottom:439.040000pt;}
.y2f_c00171{bottom:439.680000pt;}
.y2c_c00171{bottom:474.240000pt;}
.y2b_c00171{bottom:474.880000pt;}
.y2a_c00171{bottom:476.160000pt;}
.y2d_c00171{bottom:476.800000pt;}
.y2e_c00171{bottom:477.440000pt;}
.y29_c00171{bottom:512.640000pt;}
.y26_c00171{bottom:513.920000pt;}
.y28_c00171{bottom:514.560000pt;}
.y27_c00171{bottom:515.200000pt;}
.y21_c00171{bottom:550.400000pt;}
.y25_c00171{bottom:551.040000pt;}
.y23_c00171{bottom:552.320000pt;}
.y22_c00171{bottom:552.960000pt;}
.y24_c00171{bottom:553.600000pt;}
.y1e_c00171{bottom:590.720000pt;}
.y1f_c00171{bottom:591.360000pt;}
.y20_c00171{bottom:592.000000pt;}
.y19_c00171{bottom:626.560000pt;}
.y1b_c00171{bottom:627.200000pt;}
.y1d_c00171{bottom:627.840000pt;}
.y1a_c00171{bottom:629.120000pt;}
.y1c_c00171{bottom:629.760000pt;}
.y18_c00171{bottom:665.600000pt;}
.y16_c00171{bottom:667.520000pt;}
.y17_c00171{bottom:668.160000pt;}
.y15_c00171{bottom:712.960000pt;}
.y14_c00171{bottom:714.240000pt;}
.y12_c00171{bottom:751.360000pt;}
.y10_c00171{bottom:752.000000pt;}
.yf_c00171{bottom:752.640000pt;}
.y11_c00171{bottom:754.560000pt;}
.y13_c00171{bottom:755.200000pt;}
.yc_c00171{bottom:789.760000pt;}
.y9_c00171{bottom:790.400000pt;}
.ya_c00171{bottom:791.040000pt;}
.yb_c00171{bottom:791.680000pt;}
.yd_c00171{bottom:792.320000pt;}
.ye_c00171{bottom:792.960000pt;}
.y5_c00171{bottom:827.520000pt;}
.y7_c00171{bottom:829.440000pt;}
.y4_c00171{bottom:830.080000pt;}
.y6_c00171{bottom:830.720000pt;}
.y8_c00171{bottom:831.360000pt;}
.y3_c00171{bottom:878.080000pt;}
.y2_c00171{bottom:926.720000pt;}
.y1_c00171{bottom:973.440000pt;}
.hd_c00171{height:27.645000pt;}
.h8_c00171{height:29.948750pt;}
.ha_c00171{height:32.252500pt;}
.he_c00171{height:34.556250pt;}
.h11_c00171{height:36.860000pt;}
.h5_c00171{height:39.163750pt;}
.h10_c00171{height:40.186250pt;}
.h3_c00171{height:41.467500pt;}
.h6_c00171{height:43.771250pt;}
.hc_c00171{height:46.075000pt;}
.h7_c00171{height:48.378750pt;}
.h4_c00171{height:50.682500pt;}
.hb_c00171{height:52.986250pt;}
.h9_c00171{height:55.290000pt;}
.hf_c00171{height:57.593750pt;}
.h2_c00171{height:62.201250pt;}
.h1_c00171{height:1017.333333pt;}
.h0_c00171{height:1017.600000pt;}
.w0_c00171{width:695.040000pt;}
.w1_c00171{width:695.333333pt;}
.x0_c00171{left:0.000000pt;}
.xc_c00171{left:51.200000pt;}
.x22_c00171{left:53.120000pt;}
.x4a_c00171{left:55.680000pt;}
.x32_c00171{left:80.000000pt;}
.xd_c00171{left:88.960000pt;}
.x23_c00171{left:107.520000pt;}
.xe_c00171{left:117.120000pt;}
.x37_c00171{left:126.720000pt;}
.x24_c00171{left:136.320000pt;}
.x4_c00171{left:145.280000pt;}
.x47_c00171{left:146.560000pt;}
.xf_c00171{left:154.880000pt;}
.x33_c00171{left:164.480000pt;}
.x3f_c00171{left:175.360000pt;}
.x28_c00171{left:182.400000pt;}
.x43_c00171{left:184.320000pt;}
.x5_c00171{left:192.640000pt;}
.x3_c00171{left:193.920000pt;}
.x38_c00171{left:203.520000pt;}
.x16_c00171{left:212.480000pt;}
.x6_c00171{left:221.440000pt;}
.x44_c00171{left:222.720000pt;}
.x17_c00171{left:231.680000pt;}
.x2_c00171{left:241.920000pt;}
.x7_c00171{left:250.240000pt;}
.x1e_c00171{left:259.840000pt;}
.x10_c00171{left:268.800000pt;}
.x2b_c00171{left:270.080000pt;}
.x29_c00171{left:279.680000pt;}
.x40_c00171{left:282.240000pt;}
.x18_c00171{left:288.640000pt;}
.x2d_c00171{left:297.600000pt;}
.x8_c00171{left:298.880000pt;}
.x34_c00171{left:308.480000pt;}
.x4c_c00171{left:309.760000pt;}
.x39_c00171{left:318.080000pt;}
.x19_c00171{left:327.680000pt;}
.x3d_c00171{left:336.000000pt;}
.x11_c00171{left:337.280000pt;}
.x45_c00171{left:346.880000pt;}
.x46_c00171{left:357.120000pt;}
.x41_c00171{left:358.400000pt;}
.x12_c00171{left:366.080000pt;}
.x1f_c00171{left:375.680000pt;}
.x9_c00171{left:385.280000pt;}
.x4b_c00171{left:386.560000pt;}
.x13_c00171{left:396.160000pt;}
.x1a_c00171{left:404.480000pt;}
.x3e_c00171{left:405.760000pt;}
.xa_c00171{left:414.080000pt;}
.x48_c00171{left:416.000000pt;}
.x1b_c00171{left:423.680000pt;}
.x2a_c00171{left:433.280000pt;}
.x31_c00171{left:442.240000pt;}
.x25_c00171{left:443.520000pt;}
.x35_c00171{left:445.440000pt;}
.x20_c00171{left:453.120000pt;}
.x26_c00171{left:472.320000pt;}
.x3a_c00171{left:482.560000pt;}
.x3c_c00171{left:492.160000pt;}
.x49_c00171{left:502.400000pt;}
.x14_c00171{left:510.720000pt;}
.xb_c00171{left:512.000000pt;}
.x27_c00171{left:520.320000pt;}
.x4d_c00171{left:522.240000pt;}
.x2e_c00171{left:530.560000pt;}
.x36_c00171{left:531.840000pt;}
.x1c_c00171{left:540.160000pt;}
.x2c_c00171{left:549.760000pt;}
.x2f_c00171{left:560.000000pt;}
.x1d_c00171{left:568.960000pt;}
.x3b_c00171{left:570.240000pt;}
.x42_c00171{left:579.840000pt;}
.x21_c00171{left:588.800000pt;}
.x30_c00171{left:599.040000pt;}
.x15_c00171{left:608.000000pt;}
.x1_c00171{left:616.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9ead8471bcf3efb69686c132.woff2')format("woff");}.ff1_c00172{font-family:ff1_c00172;line-height:1.109863;font-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_c00172{transform:matrix(0.214225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214225,0.000000,0.000000,0.250000,0,0);}
.m2a_c00172{transform:matrix(0.233875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233875,0.000000,0.000000,0.250000,0,0);}
.m48_c00172{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m56_c00172{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00172{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m47_c00172{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m5_c00172{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m30_c00172{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m42_c00172{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m43_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);}
.m1_c00172{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m25_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);}
.m1f_c00172{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m26_c00172{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);}
.m27_c00172{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m53_c00172{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);}
.m46_c00172{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);}
.m41_c00172{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m7_c00172{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m13_c00172{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);}
.m2f_c00172{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00172{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m9_c00172{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m36_c00172{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m0_c00172{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);}
.m2c_c00172{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m17_c00172{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.mc_c00172{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.mf_c00172{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);}
.m35_c00172{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);}
.m2e_c00172{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m51_c00172{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);}
.m24_c00172{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m38_c00172{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);}
.m1c_c00172{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);}
.m50_c00172{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);}
.m4d_c00172{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m19_c00172{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00172{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m49_c00172{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00172{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m15_c00172{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);}
.m16_c00172{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m20_c00172{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);}
.m3a_c00172{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_c00172{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m4_c00172{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.mb_c00172{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00172{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.md_c00172{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);}
.m52_c00172{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m29_c00172{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);}
.me_c00172{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);}
.m28_c00172{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m45_c00172{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m12_c00172{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00172{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);}
.m3b_c00172{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m32_c00172{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00172{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00172{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m23_c00172{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00172{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m14_c00172{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);}
.m3c_c00172{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m40_c00172{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m33_c00172{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m54_c00172{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);}
.m1e_c00172{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00172{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00172{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m22_c00172{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m34_c00172{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00172{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m18_c00172{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.ma_c00172{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);}
.m55_c00172{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00172{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);}
.m37_c00172{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m11_c00172{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m6_c00172{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m8_c00172{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m31_c00172{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);}
.m3_c00172{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);}
.m21_c00172{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m44_c00172{transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);}
.m39_c00172{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.v1_c00172{vertical-align:-5.760000px;}
.v0_c00172{vertical-align:0.000000px;}
.ls0_c00172{letter-spacing:0.000000px;}
.sc__c00172{text-shadow:none;}
.sc0_c00172{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00172{-webkit-text-stroke:0px transparent;}
.sc0_c00172{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00172{word-spacing:-2.200320px;}
.ws1_c00172{word-spacing:0.000000px;}
.fc0_c00172{color:transparent;}
.fsc_c00172{font-size:34.560000px;}
.fs5_c00172{font-size:37.440000px;}
.fs3_c00172{font-size:40.320000px;}
.fsd_c00172{font-size:43.200000px;}
.fsb_c00172{font-size:46.080000px;}
.fs6_c00172{font-size:48.960000px;}
.fs2_c00172{font-size:51.840000px;}
.fs8_c00172{font-size:54.720000px;}
.fs9_c00172{font-size:57.600000px;}
.fs4_c00172{font-size:60.480000px;}
.fs7_c00172{font-size:63.360000px;}
.fsa_c00172{font-size:66.240000px;}
.fs1_c00172{font-size:69.120000px;}
.fs0_c00172{font-size:74.880000px;}
.y0_c00172{bottom:0.000000px;}
.y6c_c00172{bottom:84.240000px;}
.y6f_c00172{bottom:85.680000px;}
.y6e_c00172{bottom:86.400000px;}
.y6d_c00172{bottom:87.840000px;}
.y6b_c00172{bottom:88.560000px;}
.y6a_c00172{bottom:90.000000px;}
.y69_c00172{bottom:91.440000px;}
.y68_c00172{bottom:92.160000px;}
.y65_c00172{bottom:129.600000px;}
.y67_c00172{bottom:130.320000px;}
.y66_c00172{bottom:131.040000px;}
.y64_c00172{bottom:131.760000px;}
.y63_c00172{bottom:135.360000px;}
.y61_c00172{bottom:170.640000px;}
.y62_c00172{bottom:172.800000px;}
.y60_c00172{bottom:173.520000px;}
.y5f_c00172{bottom:174.960000px;}
.y2_c00172{bottom:226.080000px;}
.y4_c00172{bottom:227.520000px;}
.y3_c00172{bottom:228.240000px;}
.y5c_c00172{bottom:290.880000px;}
.y5b_c00172{bottom:291.600000px;}
.y5e_c00172{bottom:292.320000px;}
.y5d_c00172{bottom:293.040000px;}
.y5a_c00172{bottom:293.760000px;}
.y58_c00172{bottom:332.640000px;}
.y59_c00172{bottom:334.800000px;}
.y56_c00172{bottom:335.520000px;}
.y57_c00172{bottom:336.240000px;}
.y55_c00172{bottom:337.680000px;}
.y54_c00172{bottom:375.120000px;}
.y51_c00172{bottom:376.560000px;}
.y53_c00172{bottom:378.000000px;}
.y52_c00172{bottom:378.720000px;}
.y50_c00172{bottom:380.160000px;}
.y4f_c00172{bottom:380.880000px;}
.y4e_c00172{bottom:381.600000px;}
.y4d_c00172{bottom:419.040000px;}
.y4a_c00172{bottom:420.480000px;}
.y4c_c00172{bottom:421.200000px;}
.y4b_c00172{bottom:421.920000px;}
.y49_c00172{bottom:461.520000px;}
.y47_c00172{bottom:462.240000px;}
.y44_c00172{bottom:462.960000px;}
.y48_c00172{bottom:463.680000px;}
.y46_c00172{bottom:464.400000px;}
.y45_c00172{bottom:465.120000px;}
.y43_c00172{bottom:465.840000px;}
.y40_c00172{bottom:504.720000px;}
.y41_c00172{bottom:505.440000px;}
.y42_c00172{bottom:507.600000px;}
.y3f_c00172{bottom:509.040000px;}
.y3a_c00172{bottom:547.920000px;}
.y3e_c00172{bottom:548.640000px;}
.y3d_c00172{bottom:550.800000px;}
.y3c_c00172{bottom:551.520000px;}
.y3b_c00172{bottom:552.240000px;}
.y39_c00172{bottom:590.400000px;}
.y38_c00172{bottom:594.000000px;}
.y37_c00172{bottom:594.720000px;}
.y32_c00172{bottom:634.320000px;}
.y34_c00172{bottom:635.040000px;}
.y36_c00172{bottom:635.760000px;}
.y35_c00172{bottom:636.480000px;}
.y33_c00172{bottom:637.200000px;}
.y31_c00172{bottom:637.920000px;}
.y2c_c00172{bottom:677.520000px;}
.y2e_c00172{bottom:678.240000px;}
.y2f_c00172{bottom:679.680000px;}
.y30_c00172{bottom:680.400000px;}
.y2d_c00172{bottom:681.120000px;}
.y2b_c00172{bottom:721.440000px;}
.y2a_c00172{bottom:722.160000px;}
.y27_c00172{bottom:722.880000px;}
.y28_c00172{bottom:723.600000px;}
.y29_c00172{bottom:724.320000px;}
.y24_c00172{bottom:764.640000px;}
.y26_c00172{bottom:765.360000px;}
.y25_c00172{bottom:766.800000px;}
.y23_c00172{bottom:767.520000px;}
.y20_c00172{bottom:817.200000px;}
.y1f_c00172{bottom:818.640000px;}
.y22_c00172{bottom:820.080000px;}
.y21_c00172{bottom:821.520000px;}
.y1e_c00172{bottom:861.120000px;}
.y1a_c00172{bottom:861.840000px;}
.y1b_c00172{bottom:863.280000px;}
.y1d_c00172{bottom:864.000000px;}
.y1c_c00172{bottom:864.720000px;}
.y14_c00172{bottom:902.160000px;}
.y17_c00172{bottom:904.320000px;}
.y18_c00172{bottom:905.040000px;}
.y15_c00172{bottom:905.760000px;}
.y16_c00172{bottom:906.480000px;}
.y19_c00172{bottom:907.920000px;}
.y10_c00172{bottom:947.520000px;}
.y11_c00172{bottom:948.960000px;}
.y12_c00172{bottom:949.680000px;}
.y13_c00172{bottom:950.400000px;}
.yc_c00172{bottom:989.280000px;}
.yb_c00172{bottom:990.000000px;}
.yd_c00172{bottom:992.160000px;}
.ye_c00172{bottom:992.880000px;}
.yf_c00172{bottom:993.600000px;}
.y5_c00172{bottom:1032.480000px;}
.y8_c00172{bottom:1033.200000px;}
.ya_c00172{bottom:1033.920000px;}
.y6_c00172{bottom:1035.360000px;}
.y7_c00172{bottom:1036.800000px;}
.y9_c00172{bottom:1037.520000px;}
.y1_c00172{bottom:1095.120000px;}
.he_c00172{height:31.100625px;}
.h7_c00172{height:33.692344px;}
.h5_c00172{height:36.284062px;}
.hf_c00172{height:38.875781px;}
.hd_c00172{height:41.467500px;}
.h8_c00172{height:44.059219px;}
.h4_c00172{height:46.650937px;}
.ha_c00172{height:49.242656px;}
.hb_c00172{height:51.834375px;}
.h6_c00172{height:54.426094px;}
.h9_c00172{height:57.017812px;}
.hc_c00172{height:59.609531px;}
.h3_c00172{height:62.201250px;}
.h2_c00172{height:67.384687px;}
.h1_c00172{height:1150.500000px;}
.h0_c00172{height:1150.560000px;}
.w1_c00172{width:789.000000px;}
.w0_c00172{width:789.120000px;}
.x0_c00172{left:0.000000px;}
.x6_c00172{left:53.280000px;}
.x4d_c00172{left:54.720000px;}
.x50_c00172{left:56.160000px;}
.x43_c00172{left:85.680000px;}
.x1a_c00172{left:95.760000px;}
.x25_c00172{left:105.120000px;}
.x7_c00172{left:115.920000px;}
.x26_c00172{left:126.000000px;}
.x20_c00172{left:127.440000px;}
.xe_c00172{left:137.520000px;}
.x27_c00172{left:146.880000px;}
.x13_c00172{left:148.320000px;}
.x32_c00172{left:157.680000px;}
.x2b_c00172{left:159.840000px;}
.x3f_c00172{left:168.480000px;}
.x28_c00172{left:170.640000px;}
.x14_c00172{left:180.000000px;}
.x1b_c00172{left:181.440000px;}
.x2c_c00172{left:190.080000px;}
.x29_c00172{left:192.240000px;}
.x2_c00172{left:211.680000px;}
.x15_c00172{left:222.480000px;}
.x40_c00172{left:231.120000px;}
.x2f_c00172{left:234.000000px;}
.x8_c00172{left:254.880000px;}
.x35_c00172{left:265.680000px;}
.x51_c00172{left:275.040000px;}
.x2a_c00172{left:277.200000px;}
.x16_c00172{left:288.000000px;}
.x9_c00172{left:298.080000px;}
.x33_c00172{left:308.880000px;}
.x41_c00172{left:318.960000px;}
.x4b_c00172{left:331.200000px;}
.x3_c00172{left:341.280000px;}
.xf_c00172{left:343.440000px;}
.x44_c00172{left:352.080000px;}
.xa_c00172{left:362.160000px;}
.x4_c00172{left:373.680000px;}
.x49_c00172{left:383.040000px;}
.x21_c00172{left:384.480000px;}
.x36_c00172{left:385.920000px;}
.x45_c00172{left:395.280000px;}
.x5_c00172{left:406.080000px;}
.x39_c00172{left:416.880000px;}
.x1c_c00172{left:418.320000px;}
.xb_c00172{left:428.400000px;}
.x4e_c00172{left:429.840000px;}
.x2d_c00172{left:438.480000px;}
.x4c_c00172{left:450.000000px;}
.x17_c00172{left:451.440000px;}
.x4f_c00172{left:454.320000px;}
.x2e_c00172{left:460.080000px;}
.x10_c00172{left:470.880000px;}
.x42_c00172{left:473.040000px;}
.x46_c00172{left:482.400000px;}
.x30_c00172{left:483.840000px;}
.x3b_c00172{left:492.480000px;}
.x1d_c00172{left:493.920000px;}
.x31_c00172{left:503.280000px;}
.x3d_c00172{left:505.440000px;}
.x1e_c00172{left:515.520000px;}
.x3a_c00172{left:524.880000px;}
.x37_c00172{left:527.040000px;}
.xc_c00172{left:537.840000px;}
.x52_c00172{left:546.480000px;}
.x22_c00172{left:548.640000px;}
.x11_c00172{left:559.440000px;}
.x4a_c00172{left:568.080000px;}
.xd_c00172{left:570.240000px;}
.x3e_c00172{left:579.600000px;}
.x18_c00172{left:581.040000px;}
.x12_c00172{left:591.840000px;}
.x47_c00172{left:600.480000px;}
.x1f_c00172{left:601.920000px;}
.x19_c00172{left:613.440000px;}
.x34_c00172{left:624.240000px;}
.x38_c00172{left:634.320000px;}
.x3c_c00172{left:645.840000px;}
.x48_c00172{left:655.200000px;}
.x23_c00172{left:657.360000px;}
.x24_c00172{left:678.240000px;}
.x1_c00172{left:690.480000px;}
@media print{
.v1_c00172{vertical-align:-5.120000pt;}
.v0_c00172{vertical-align:0.000000pt;}
.ls0_c00172{letter-spacing:0.000000pt;}
.ws0_c00172{word-spacing:-1.955840pt;}
.ws1_c00172{word-spacing:0.000000pt;}
.fsc_c00172{font-size:30.720000pt;}
.fs5_c00172{font-size:33.280000pt;}
.fs3_c00172{font-size:35.840000pt;}
.fsd_c00172{font-size:38.400000pt;}
.fsb_c00172{font-size:40.960000pt;}
.fs6_c00172{font-size:43.520000pt;}
.fs2_c00172{font-size:46.080000pt;}
.fs8_c00172{font-size:48.640000pt;}
.fs9_c00172{font-size:51.200000pt;}
.fs4_c00172{font-size:53.760000pt;}
.fs7_c00172{font-size:56.320000pt;}
.fsa_c00172{font-size:58.880000pt;}
.fs1_c00172{font-size:61.440000pt;}
.fs0_c00172{font-size:66.560000pt;}
.y0_c00172{bottom:0.000000pt;}
.y6c_c00172{bottom:74.880000pt;}
.y6f_c00172{bottom:76.160000pt;}
.y6e_c00172{bottom:76.800000pt;}
.y6d_c00172{bottom:78.080000pt;}
.y6b_c00172{bottom:78.720000pt;}
.y6a_c00172{bottom:80.000000pt;}
.y69_c00172{bottom:81.280000pt;}
.y68_c00172{bottom:81.920000pt;}
.y65_c00172{bottom:115.200000pt;}
.y67_c00172{bottom:115.840000pt;}
.y66_c00172{bottom:116.480000pt;}
.y64_c00172{bottom:117.120000pt;}
.y63_c00172{bottom:120.320000pt;}
.y61_c00172{bottom:151.680000pt;}
.y62_c00172{bottom:153.600000pt;}
.y60_c00172{bottom:154.240000pt;}
.y5f_c00172{bottom:155.520000pt;}
.y2_c00172{bottom:200.960000pt;}
.y4_c00172{bottom:202.240000pt;}
.y3_c00172{bottom:202.880000pt;}
.y5c_c00172{bottom:258.560000pt;}
.y5b_c00172{bottom:259.200000pt;}
.y5e_c00172{bottom:259.840000pt;}
.y5d_c00172{bottom:260.480000pt;}
.y5a_c00172{bottom:261.120000pt;}
.y58_c00172{bottom:295.680000pt;}
.y59_c00172{bottom:297.600000pt;}
.y56_c00172{bottom:298.240000pt;}
.y57_c00172{bottom:298.880000pt;}
.y55_c00172{bottom:300.160000pt;}
.y54_c00172{bottom:333.440000pt;}
.y51_c00172{bottom:334.720000pt;}
.y53_c00172{bottom:336.000000pt;}
.y52_c00172{bottom:336.640000pt;}
.y50_c00172{bottom:337.920000pt;}
.y4f_c00172{bottom:338.560000pt;}
.y4e_c00172{bottom:339.200000pt;}
.y4d_c00172{bottom:372.480000pt;}
.y4a_c00172{bottom:373.760000pt;}
.y4c_c00172{bottom:374.400000pt;}
.y4b_c00172{bottom:375.040000pt;}
.y49_c00172{bottom:410.240000pt;}
.y47_c00172{bottom:410.880000pt;}
.y44_c00172{bottom:411.520000pt;}
.y48_c00172{bottom:412.160000pt;}
.y46_c00172{bottom:412.800000pt;}
.y45_c00172{bottom:413.440000pt;}
.y43_c00172{bottom:414.080000pt;}
.y40_c00172{bottom:448.640000pt;}
.y41_c00172{bottom:449.280000pt;}
.y42_c00172{bottom:451.200000pt;}
.y3f_c00172{bottom:452.480000pt;}
.y3a_c00172{bottom:487.040000pt;}
.y3e_c00172{bottom:487.680000pt;}
.y3d_c00172{bottom:489.600000pt;}
.y3c_c00172{bottom:490.240000pt;}
.y3b_c00172{bottom:490.880000pt;}
.y39_c00172{bottom:524.800000pt;}
.y38_c00172{bottom:528.000000pt;}
.y37_c00172{bottom:528.640000pt;}
.y32_c00172{bottom:563.840000pt;}
.y34_c00172{bottom:564.480000pt;}
.y36_c00172{bottom:565.120000pt;}
.y35_c00172{bottom:565.760000pt;}
.y33_c00172{bottom:566.400000pt;}
.y31_c00172{bottom:567.040000pt;}
.y2c_c00172{bottom:602.240000pt;}
.y2e_c00172{bottom:602.880000pt;}
.y2f_c00172{bottom:604.160000pt;}
.y30_c00172{bottom:604.800000pt;}
.y2d_c00172{bottom:605.440000pt;}
.y2b_c00172{bottom:641.280000pt;}
.y2a_c00172{bottom:641.920000pt;}
.y27_c00172{bottom:642.560000pt;}
.y28_c00172{bottom:643.200000pt;}
.y29_c00172{bottom:643.840000pt;}
.y24_c00172{bottom:679.680000pt;}
.y26_c00172{bottom:680.320000pt;}
.y25_c00172{bottom:681.600000pt;}
.y23_c00172{bottom:682.240000pt;}
.y20_c00172{bottom:726.400000pt;}
.y1f_c00172{bottom:727.680000pt;}
.y22_c00172{bottom:728.960000pt;}
.y21_c00172{bottom:730.240000pt;}
.y1e_c00172{bottom:765.440000pt;}
.y1a_c00172{bottom:766.080000pt;}
.y1b_c00172{bottom:767.360000pt;}
.y1d_c00172{bottom:768.000000pt;}
.y1c_c00172{bottom:768.640000pt;}
.y14_c00172{bottom:801.920000pt;}
.y17_c00172{bottom:803.840000pt;}
.y18_c00172{bottom:804.480000pt;}
.y15_c00172{bottom:805.120000pt;}
.y16_c00172{bottom:805.760000pt;}
.y19_c00172{bottom:807.040000pt;}
.y10_c00172{bottom:842.240000pt;}
.y11_c00172{bottom:843.520000pt;}
.y12_c00172{bottom:844.160000pt;}
.y13_c00172{bottom:844.800000pt;}
.yc_c00172{bottom:879.360000pt;}
.yb_c00172{bottom:880.000000pt;}
.yd_c00172{bottom:881.920000pt;}
.ye_c00172{bottom:882.560000pt;}
.yf_c00172{bottom:883.200000pt;}
.y5_c00172{bottom:917.760000pt;}
.y8_c00172{bottom:918.400000pt;}
.ya_c00172{bottom:919.040000pt;}
.y6_c00172{bottom:920.320000pt;}
.y7_c00172{bottom:921.600000pt;}
.y9_c00172{bottom:922.240000pt;}
.y1_c00172{bottom:973.440000pt;}
.he_c00172{height:27.645000pt;}
.h7_c00172{height:29.948750pt;}
.h5_c00172{height:32.252500pt;}
.hf_c00172{height:34.556250pt;}
.hd_c00172{height:36.860000pt;}
.h8_c00172{height:39.163750pt;}
.h4_c00172{height:41.467500pt;}
.ha_c00172{height:43.771250pt;}
.hb_c00172{height:46.075000pt;}
.h6_c00172{height:48.378750pt;}
.h9_c00172{height:50.682500pt;}
.hc_c00172{height:52.986250pt;}
.h3_c00172{height:55.290000pt;}
.h2_c00172{height:59.897500pt;}
.h1_c00172{height:1022.666667pt;}
.h0_c00172{height:1022.720000pt;}
.w1_c00172{width:701.333333pt;}
.w0_c00172{width:701.440000pt;}
.x0_c00172{left:0.000000pt;}
.x6_c00172{left:47.360000pt;}
.x4d_c00172{left:48.640000pt;}
.x50_c00172{left:49.920000pt;}
.x43_c00172{left:76.160000pt;}
.x1a_c00172{left:85.120000pt;}
.x25_c00172{left:93.440000pt;}
.x7_c00172{left:103.040000pt;}
.x26_c00172{left:112.000000pt;}
.x20_c00172{left:113.280000pt;}
.xe_c00172{left:122.240000pt;}
.x27_c00172{left:130.560000pt;}
.x13_c00172{left:131.840000pt;}
.x32_c00172{left:140.160000pt;}
.x2b_c00172{left:142.080000pt;}
.x3f_c00172{left:149.760000pt;}
.x28_c00172{left:151.680000pt;}
.x14_c00172{left:160.000000pt;}
.x1b_c00172{left:161.280000pt;}
.x2c_c00172{left:168.960000pt;}
.x29_c00172{left:170.880000pt;}
.x2_c00172{left:188.160000pt;}
.x15_c00172{left:197.760000pt;}
.x40_c00172{left:205.440000pt;}
.x2f_c00172{left:208.000000pt;}
.x8_c00172{left:226.560000pt;}
.x35_c00172{left:236.160000pt;}
.x51_c00172{left:244.480000pt;}
.x2a_c00172{left:246.400000pt;}
.x16_c00172{left:256.000000pt;}
.x9_c00172{left:264.960000pt;}
.x33_c00172{left:274.560000pt;}
.x41_c00172{left:283.520000pt;}
.x4b_c00172{left:294.400000pt;}
.x3_c00172{left:303.360000pt;}
.xf_c00172{left:305.280000pt;}
.x44_c00172{left:312.960000pt;}
.xa_c00172{left:321.920000pt;}
.x4_c00172{left:332.160000pt;}
.x49_c00172{left:340.480000pt;}
.x21_c00172{left:341.760000pt;}
.x36_c00172{left:343.040000pt;}
.x45_c00172{left:351.360000pt;}
.x5_c00172{left:360.960000pt;}
.x39_c00172{left:370.560000pt;}
.x1c_c00172{left:371.840000pt;}
.xb_c00172{left:380.800000pt;}
.x4e_c00172{left:382.080000pt;}
.x2d_c00172{left:389.760000pt;}
.x4c_c00172{left:400.000000pt;}
.x17_c00172{left:401.280000pt;}
.x4f_c00172{left:403.840000pt;}
.x2e_c00172{left:408.960000pt;}
.x10_c00172{left:418.560000pt;}
.x42_c00172{left:420.480000pt;}
.x46_c00172{left:428.800000pt;}
.x30_c00172{left:430.080000pt;}
.x3b_c00172{left:437.760000pt;}
.x1d_c00172{left:439.040000pt;}
.x31_c00172{left:447.360000pt;}
.x3d_c00172{left:449.280000pt;}
.x1e_c00172{left:458.240000pt;}
.x3a_c00172{left:466.560000pt;}
.x37_c00172{left:468.480000pt;}
.xc_c00172{left:478.080000pt;}
.x52_c00172{left:485.760000pt;}
.x22_c00172{left:487.680000pt;}
.x11_c00172{left:497.280000pt;}
.x4a_c00172{left:504.960000pt;}
.xd_c00172{left:506.880000pt;}
.x3e_c00172{left:515.200000pt;}
.x18_c00172{left:516.480000pt;}
.x12_c00172{left:526.080000pt;}
.x47_c00172{left:533.760000pt;}
.x1f_c00172{left:535.040000pt;}
.x19_c00172{left:545.280000pt;}
.x34_c00172{left:554.880000pt;}
.x38_c00172{left:563.840000pt;}
.x3c_c00172{left:574.080000pt;}
.x48_c00172{left:582.400000pt;}
.x23_c00172{left:584.320000pt;}
.x24_c00172{left:602.880000pt;}
.x1_c00172{left:613.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_37a28900f96a35017872ec8f.woff2')format("woff");}.ff1_c00173{font-family:ff1_c00173;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m30_c00173{transform:matrix(0.228875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228875,0.000000,0.000000,0.250000,0,0);}
.m65_c00173{transform:matrix(0.235950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235950,0.000000,0.000000,0.250000,0,0);}
.m60_c00173{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);}
.m4b_c00173{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m19_c00173{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m63_c00173{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m11_c00173{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m43_c00173{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m36_c00173{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00173{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m38_c00173{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);}
.m4c_c00173{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00173{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00173{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00173{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m7_c00173{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m66_c00173{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m57_c00173{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m31_c00173{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00173{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m6_c00173{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m27_c00173{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00173{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m64_c00173{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m22_c00173{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00173{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m47_c00173{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00173{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);}
.m62_c00173{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00173{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m8_c00173{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);}
.m2b_c00173{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m46_c00173{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);}
.m50_c00173{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00173{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);}
.m44_c00173{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m59_c00173{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m0_c00173{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);}
.m49_c00173{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m37_c00173{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m33_c00173{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);}
.m2f_c00173{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);}
.m25_c00173{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);}
.m3b_c00173{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m21_c00173{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);}
.m4f_c00173{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m55_c00173{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);}
.m3_c00173{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m16_c00173{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);}
.m39_c00173{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m20_c00173{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.mc_c00173{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.mf_c00173{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_c00173{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m13_c00173{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);}
.m40_c00173{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m29_c00173{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);}
.m17_c00173{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);}
.me_c00173{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m23_c00173{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m24_c00173{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m61_c00173{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m10_c00173{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);}
.m53_c00173{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00173{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m9_c00173{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m14_c00173{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);}
.m2e_c00173{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.md_c00173{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m26_c00173{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m5_c00173{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);}
.m18_c00173{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00173{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.mb_c00173{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m45_c00173{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);}
.m54_c00173{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m1_c00173{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m48_c00173{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00173{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m4_c00173{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m42_c00173{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);}
.m2_c00173{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);}
.m3e_c00173{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00173{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00173{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);}
.m34_c00173{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00173{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m41_c00173{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m32_c00173{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);}
.m15_c00173{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m58_c00173{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m35_c00173{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00173{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00173{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);}
.m51_c00173{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);}
.ma_c00173{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00173{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00173{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m28_c00173{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00173{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);}
.m12_c00173{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00173{transform:matrix(0.745000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.745000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.745000,0.000000,0.000000,0.250000,0,0);}
.m56_c00173{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);}
.v1_c00173{vertical-align:-5.760000px;}
.v0_c00173{vertical-align:0.000000px;}
.ls0_c00173{letter-spacing:0.000000px;}
.sc__c00173{text-shadow:none;}
.sc0_c00173{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00173{-webkit-text-stroke:0px transparent;}
.sc0_c00173{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00173{word-spacing:-3.388936px;}
.ws0_c00173{word-spacing:-0.602400px;}
.ws2_c00173{word-spacing:0.000000px;}
.fc0_c00173{color:transparent;}
.fsd_c00173{font-size:34.560000px;}
.fs4_c00173{font-size:37.440000px;}
.fs1_c00173{font-size:40.320000px;}
.fse_c00173{font-size:43.200000px;}
.fsc_c00173{font-size:46.080000px;}
.fs3_c00173{font-size:48.960000px;}
.fs2_c00173{font-size:51.840000px;}
.fs7_c00173{font-size:54.720000px;}
.fs6_c00173{font-size:57.600000px;}
.fsb_c00173{font-size:60.480000px;}
.fs5_c00173{font-size:63.360000px;}
.fs8_c00173{font-size:66.240000px;}
.fs9_c00173{font-size:69.120000px;}
.fsa_c00173{font-size:72.000000px;}
.fs0_c00173{font-size:74.880000px;}
.fsf_c00173{font-size:77.760000px;}
.y0_c00173{bottom:0.000000px;}
.y7c_c00173{bottom:28.800000px;}
.y7e_c00173{bottom:30.240000px;}
.y7b_c00173{bottom:31.680000px;}
.y7d_c00173{bottom:32.400000px;}
.y7f_c00173{bottom:33.840000px;}
.y7a_c00173{bottom:34.560000px;}
.y79_c00173{bottom:36.720000px;}
.y76_c00173{bottom:72.000000px;}
.y74_c00173{bottom:72.720000px;}
.y77_c00173{bottom:74.160000px;}
.y75_c00173{bottom:74.880000px;}
.y78_c00173{bottom:75.600000px;}
.y73_c00173{bottom:76.320000px;}
.y72_c00173{bottom:77.040000px;}
.y71_c00173{bottom:78.480000px;}
.y70_c00173{bottom:114.480000px;}
.y6d_c00173{bottom:116.640000px;}
.y6e_c00173{bottom:117.360000px;}
.y6f_c00173{bottom:118.080000px;}
.y6a_c00173{bottom:157.680000px;}
.y68_c00173{bottom:158.400000px;}
.y69_c00173{bottom:159.120000px;}
.y6b_c00173{bottom:160.560000px;}
.y66_c00173{bottom:161.280000px;}
.y67_c00173{bottom:162.000000px;}
.y6c_c00173{bottom:162.720000px;}
.y63_c00173{bottom:200.880000px;}
.y64_c00173{bottom:201.600000px;}
.y62_c00173{bottom:203.040000px;}
.y60_c00173{bottom:203.760000px;}
.y61_c00173{bottom:204.480000px;}
.y65_c00173{bottom:205.200000px;}
.y5d_c00173{bottom:244.800000px;}
.y5a_c00173{bottom:246.240000px;}
.y5c_c00173{bottom:246.960000px;}
.y5b_c00173{bottom:247.680000px;}
.y5e_c00173{bottom:248.400000px;}
.y5f_c00173{bottom:249.120000px;}
.y59_c00173{bottom:288.000000px;}
.y56_c00173{bottom:290.160000px;}
.y58_c00173{bottom:290.880000px;}
.y57_c00173{bottom:291.600000px;}
.y54_c00173{bottom:331.920000px;}
.y51_c00173{bottom:333.360000px;}
.y52_c00173{bottom:334.080000px;}
.y53_c00173{bottom:334.800000px;}
.y55_c00173{bottom:335.520000px;}
.y4e_c00173{bottom:374.400000px;}
.y50_c00173{bottom:375.120000px;}
.y4f_c00173{bottom:377.280000px;}
.y4d_c00173{bottom:378.000000px;}
.y4c_c00173{bottom:378.720000px;}
.y4b_c00173{bottom:419.040000px;}
.y49_c00173{bottom:420.480000px;}
.y48_c00173{bottom:421.200000px;}
.y4a_c00173{bottom:421.920000px;}
.y44_c00173{bottom:460.800000px;}
.y46_c00173{bottom:461.520000px;}
.y45_c00173{bottom:462.240000px;}
.y47_c00173{bottom:464.400000px;}
.y43_c00173{bottom:465.120000px;}
.y41_c00173{bottom:504.720000px;}
.y42_c00173{bottom:505.440000px;}
.y40_c00173{bottom:507.600000px;}
.y3f_c00173{bottom:508.320000px;}
.y3c_c00173{bottom:548.640000px;}
.y3e_c00173{bottom:549.360000px;}
.y3d_c00173{bottom:550.800000px;}
.y3b_c00173{bottom:551.520000px;}
.y3a_c00173{bottom:591.120000px;}
.y37_c00173{bottom:591.840000px;}
.y39_c00173{bottom:593.280000px;}
.y36_c00173{bottom:594.000000px;}
.y38_c00173{bottom:594.720000px;}
.y32_c00173{bottom:634.320000px;}
.y34_c00173{bottom:635.040000px;}
.y33_c00173{bottom:637.200000px;}
.y35_c00173{bottom:637.920000px;}
.y30_c00173{bottom:677.520000px;}
.y31_c00173{bottom:678.960000px;}
.y2e_c00173{bottom:679.680000px;}
.y2f_c00173{bottom:680.400000px;}
.y2d_c00173{bottom:732.240000px;}
.y2c_c00173{bottom:733.680000px;}
.y2b_c00173{bottom:734.400000px;}
.y2a_c00173{bottom:773.280000px;}
.y27_c00173{bottom:774.000000px;}
.y29_c00173{bottom:774.720000px;}
.y26_c00173{bottom:776.880000px;}
.y28_c00173{bottom:777.600000px;}
.y21_c00173{bottom:817.920000px;}
.y25_c00173{bottom:819.360000px;}
.y24_c00173{bottom:820.080000px;}
.y22_c00173{bottom:820.800000px;}
.y23_c00173{bottom:821.520000px;}
.y1c_c00173{bottom:861.120000px;}
.y1e_c00173{bottom:861.840000px;}
.y20_c00173{bottom:863.280000px;}
.y1f_c00173{bottom:864.000000px;}
.y1d_c00173{bottom:864.720000px;}
.y1b_c00173{bottom:902.880000px;}
.y17_c00173{bottom:903.600000px;}
.y1a_c00173{bottom:904.320000px;}
.y19_c00173{bottom:905.040000px;}
.y16_c00173{bottom:905.760000px;}
.y18_c00173{bottom:906.480000px;}
.y15_c00173{bottom:907.200000px;}
.y14_c00173{bottom:946.800000px;}
.y13_c00173{bottom:947.520000px;}
.y12_c00173{bottom:948.240000px;}
.y11_c00173{bottom:948.960000px;}
.ye_c00173{bottom:949.680000px;}
.yd_c00173{bottom:950.400000px;}
.yf_c00173{bottom:951.120000px;}
.y10_c00173{bottom:951.840000px;}
.yc_c00173{bottom:992.160000px;}
.yb_c00173{bottom:992.880000px;}
.y8_c00173{bottom:993.600000px;}
.y9_c00173{bottom:994.320000px;}
.ya_c00173{bottom:995.040000px;}
.y7_c00173{bottom:1033.920000px;}
.y4_c00173{bottom:1034.640000px;}
.y2_c00173{bottom:1036.080000px;}
.y6_c00173{bottom:1036.800000px;}
.y3_c00173{bottom:1037.520000px;}
.y5_c00173{bottom:1038.240000px;}
.y1_c00173{bottom:1092.240000px;}
.hf_c00173{height:31.100625px;}
.h6_c00173{height:33.692344px;}
.h3_c00173{height:36.284062px;}
.h10_c00173{height:38.875781px;}
.he_c00173{height:41.467500px;}
.h5_c00173{height:44.059219px;}
.h4_c00173{height:46.650937px;}
.h9_c00173{height:49.242656px;}
.h8_c00173{height:51.834375px;}
.hd_c00173{height:54.426094px;}
.h7_c00173{height:57.017812px;}
.ha_c00173{height:59.609531px;}
.hb_c00173{height:62.201250px;}
.hc_c00173{height:64.792969px;}
.h2_c00173{height:67.384687px;}
.h11_c00173{height:69.976406px;}
.h1_c00173{height:1146.750000px;}
.h0_c00173{height:1146.960000px;}
.w1_c00173{width:789.000000px;}
.w0_c00173{width:789.120000px;}
.x0_c00173{left:0.000000px;}
.x2_c00173{left:90.000000px;}
.x48_c00173{left:91.440000px;}
.x51_c00173{left:92.880000px;}
.x32_c00173{left:120.960000px;}
.x3_c00173{left:122.400000px;}
.xd_c00173{left:132.480000px;}
.x21_c00173{left:143.280000px;}
.x15_c00173{left:154.080000px;}
.x26_c00173{left:164.160000px;}
.x4_c00173{left:165.600000px;}
.x52_c00173{left:174.240000px;}
.x33_c00173{left:175.680000px;}
.x16_c00173{left:186.480000px;}
.x5a_c00173{left:188.640000px;}
.x35_c00173{left:196.560000px;}
.x30_c00173{left:208.080000px;}
.x5_c00173{left:209.520000px;}
.x3d_c00173{left:218.880000px;}
.x39_c00173{left:229.680000px;}
.xe_c00173{left:231.120000px;}
.x34_c00173{left:239.760000px;}
.x6_c00173{left:241.200000px;}
.x3e_c00173{left:250.560000px;}
.x17_c00173{left:252.720000px;}
.x2b_c00173{left:262.080000px;}
.xf_c00173{left:263.520000px;}
.x22_c00173{left:273.600000px;}
.x5b_c00173{left:275.040000px;}
.x41_c00173{left:283.680000px;}
.x31_c00173{left:285.120000px;}
.x18_c00173{left:294.480000px;}
.x2c_c00173{left:306.000000px;}
.x23_c00173{left:316.800000px;}
.x3a_c00173{left:327.600000px;}
.x27_c00173{left:337.680000px;}
.x2d_c00173{left:339.120000px;}
.x19_c00173{left:341.280000px;}
.x7_c00173{left:349.200000px;}
.x3f_c00173{left:350.640000px;}
.x57_c00173{left:360.720000px;}
.x3b_c00173{left:371.520000px;}
.x28_c00173{left:381.600000px;}
.x4c_c00173{left:391.680000px;}
.x47_c00173{left:393.120000px;}
.x4b_c00173{left:402.480000px;}
.x8_c00173{left:403.920000px;}
.x24_c00173{left:414.720000px;}
.x53_c00173{left:416.160000px;}
.x49_c00173{left:423.360000px;}
.x10_c00173{left:425.520000px;}
.x36_c00173{left:436.320000px;}
.x50_c00173{left:445.680000px;}
.x1a_c00173{left:447.120000px;}
.x11_c00173{left:457.920000px;}
.x58_c00173{left:467.280000px;}
.x1b_c00173{left:469.440000px;}
.x9_c00173{left:478.800000px;}
.x54_c00173{left:488.880000px;}
.x29_c00173{left:490.320000px;}
.x1c_c00173{left:501.120000px;}
.x42_c00173{left:511.200000px;}
.x1d_c00173{left:512.640000px;}
.xa_c00173{left:523.440000px;}
.x4a_c00173{left:532.080000px;}
.x4d_c00173{left:533.520000px;}
.x1e_c00173{left:535.680000px;}
.x2e_c00173{left:543.600000px;}
.x25_c00173{left:554.400000px;}
.x2a_c00173{left:564.480000px;}
.x45_c00173{left:565.920000px;}
.x40_c00173{left:576.000000px;}
.x46_c00173{left:585.360000px;}
.x12_c00173{left:587.520000px;}
.x4e_c00173{left:596.880000px;}
.x1f_c00173{left:598.320000px;}
.x37_c00173{left:606.960000px;}
.x2f_c00173{left:618.480000px;}
.x59_c00173{left:628.560000px;}
.x3c_c00173{left:630.000000px;}
.x13_c00173{left:631.440000px;}
.xb_c00173{left:641.520000px;}
.x43_c00173{left:651.600000px;}
.x55_c00173{left:660.960000px;}
.x44_c00173{left:662.400000px;}
.x14_c00173{left:672.480000px;}
.xc_c00173{left:673.920000px;}
.x38_c00173{left:684.000000px;}
.x56_c00173{left:692.640000px;}
.x20_c00173{left:695.520000px;}
.x4f_c00173{left:704.880000px;}
.x1_c00173{left:709.200000px;}
@media print{
.v1_c00173{vertical-align:-5.120000pt;}
.v0_c00173{vertical-align:0.000000pt;}
.ls0_c00173{letter-spacing:0.000000pt;}
.ws1_c00173{word-spacing:-3.012388pt;}
.ws0_c00173{word-spacing:-0.535467pt;}
.ws2_c00173{word-spacing:0.000000pt;}
.fsd_c00173{font-size:30.720000pt;}
.fs4_c00173{font-size:33.280000pt;}
.fs1_c00173{font-size:35.840000pt;}
.fse_c00173{font-size:38.400000pt;}
.fsc_c00173{font-size:40.960000pt;}
.fs3_c00173{font-size:43.520000pt;}
.fs2_c00173{font-size:46.080000pt;}
.fs7_c00173{font-size:48.640000pt;}
.fs6_c00173{font-size:51.200000pt;}
.fsb_c00173{font-size:53.760000pt;}
.fs5_c00173{font-size:56.320000pt;}
.fs8_c00173{font-size:58.880000pt;}
.fs9_c00173{font-size:61.440000pt;}
.fsa_c00173{font-size:64.000000pt;}
.fs0_c00173{font-size:66.560000pt;}
.fsf_c00173{font-size:69.120000pt;}
.y0_c00173{bottom:0.000000pt;}
.y7c_c00173{bottom:25.600000pt;}
.y7e_c00173{bottom:26.880000pt;}
.y7b_c00173{bottom:28.160000pt;}
.y7d_c00173{bottom:28.800000pt;}
.y7f_c00173{bottom:30.080000pt;}
.y7a_c00173{bottom:30.720000pt;}
.y79_c00173{bottom:32.640000pt;}
.y76_c00173{bottom:64.000000pt;}
.y74_c00173{bottom:64.640000pt;}
.y77_c00173{bottom:65.920000pt;}
.y75_c00173{bottom:66.560000pt;}
.y78_c00173{bottom:67.200000pt;}
.y73_c00173{bottom:67.840000pt;}
.y72_c00173{bottom:68.480000pt;}
.y71_c00173{bottom:69.760000pt;}
.y70_c00173{bottom:101.760000pt;}
.y6d_c00173{bottom:103.680000pt;}
.y6e_c00173{bottom:104.320000pt;}
.y6f_c00173{bottom:104.960000pt;}
.y6a_c00173{bottom:140.160000pt;}
.y68_c00173{bottom:140.800000pt;}
.y69_c00173{bottom:141.440000pt;}
.y6b_c00173{bottom:142.720000pt;}
.y66_c00173{bottom:143.360000pt;}
.y67_c00173{bottom:144.000000pt;}
.y6c_c00173{bottom:144.640000pt;}
.y63_c00173{bottom:178.560000pt;}
.y64_c00173{bottom:179.200000pt;}
.y62_c00173{bottom:180.480000pt;}
.y60_c00173{bottom:181.120000pt;}
.y61_c00173{bottom:181.760000pt;}
.y65_c00173{bottom:182.400000pt;}
.y5d_c00173{bottom:217.600000pt;}
.y5a_c00173{bottom:218.880000pt;}
.y5c_c00173{bottom:219.520000pt;}
.y5b_c00173{bottom:220.160000pt;}
.y5e_c00173{bottom:220.800000pt;}
.y5f_c00173{bottom:221.440000pt;}
.y59_c00173{bottom:256.000000pt;}
.y56_c00173{bottom:257.920000pt;}
.y58_c00173{bottom:258.560000pt;}
.y57_c00173{bottom:259.200000pt;}
.y54_c00173{bottom:295.040000pt;}
.y51_c00173{bottom:296.320000pt;}
.y52_c00173{bottom:296.960000pt;}
.y53_c00173{bottom:297.600000pt;}
.y55_c00173{bottom:298.240000pt;}
.y4e_c00173{bottom:332.800000pt;}
.y50_c00173{bottom:333.440000pt;}
.y4f_c00173{bottom:335.360000pt;}
.y4d_c00173{bottom:336.000000pt;}
.y4c_c00173{bottom:336.640000pt;}
.y4b_c00173{bottom:372.480000pt;}
.y49_c00173{bottom:373.760000pt;}
.y48_c00173{bottom:374.400000pt;}
.y4a_c00173{bottom:375.040000pt;}
.y44_c00173{bottom:409.600000pt;}
.y46_c00173{bottom:410.240000pt;}
.y45_c00173{bottom:410.880000pt;}
.y47_c00173{bottom:412.800000pt;}
.y43_c00173{bottom:413.440000pt;}
.y41_c00173{bottom:448.640000pt;}
.y42_c00173{bottom:449.280000pt;}
.y40_c00173{bottom:451.200000pt;}
.y3f_c00173{bottom:451.840000pt;}
.y3c_c00173{bottom:487.680000pt;}
.y3e_c00173{bottom:488.320000pt;}
.y3d_c00173{bottom:489.600000pt;}
.y3b_c00173{bottom:490.240000pt;}
.y3a_c00173{bottom:525.440000pt;}
.y37_c00173{bottom:526.080000pt;}
.y39_c00173{bottom:527.360000pt;}
.y36_c00173{bottom:528.000000pt;}
.y38_c00173{bottom:528.640000pt;}
.y32_c00173{bottom:563.840000pt;}
.y34_c00173{bottom:564.480000pt;}
.y33_c00173{bottom:566.400000pt;}
.y35_c00173{bottom:567.040000pt;}
.y30_c00173{bottom:602.240000pt;}
.y31_c00173{bottom:603.520000pt;}
.y2e_c00173{bottom:604.160000pt;}
.y2f_c00173{bottom:604.800000pt;}
.y2d_c00173{bottom:650.880000pt;}
.y2c_c00173{bottom:652.160000pt;}
.y2b_c00173{bottom:652.800000pt;}
.y2a_c00173{bottom:687.360000pt;}
.y27_c00173{bottom:688.000000pt;}
.y29_c00173{bottom:688.640000pt;}
.y26_c00173{bottom:690.560000pt;}
.y28_c00173{bottom:691.200000pt;}
.y21_c00173{bottom:727.040000pt;}
.y25_c00173{bottom:728.320000pt;}
.y24_c00173{bottom:728.960000pt;}
.y22_c00173{bottom:729.600000pt;}
.y23_c00173{bottom:730.240000pt;}
.y1c_c00173{bottom:765.440000pt;}
.y1e_c00173{bottom:766.080000pt;}
.y20_c00173{bottom:767.360000pt;}
.y1f_c00173{bottom:768.000000pt;}
.y1d_c00173{bottom:768.640000pt;}
.y1b_c00173{bottom:802.560000pt;}
.y17_c00173{bottom:803.200000pt;}
.y1a_c00173{bottom:803.840000pt;}
.y19_c00173{bottom:804.480000pt;}
.y16_c00173{bottom:805.120000pt;}
.y18_c00173{bottom:805.760000pt;}
.y15_c00173{bottom:806.400000pt;}
.y14_c00173{bottom:841.600000pt;}
.y13_c00173{bottom:842.240000pt;}
.y12_c00173{bottom:842.880000pt;}
.y11_c00173{bottom:843.520000pt;}
.ye_c00173{bottom:844.160000pt;}
.yd_c00173{bottom:844.800000pt;}
.yf_c00173{bottom:845.440000pt;}
.y10_c00173{bottom:846.080000pt;}
.yc_c00173{bottom:881.920000pt;}
.yb_c00173{bottom:882.560000pt;}
.y8_c00173{bottom:883.200000pt;}
.y9_c00173{bottom:883.840000pt;}
.ya_c00173{bottom:884.480000pt;}
.y7_c00173{bottom:919.040000pt;}
.y4_c00173{bottom:919.680000pt;}
.y2_c00173{bottom:920.960000pt;}
.y6_c00173{bottom:921.600000pt;}
.y3_c00173{bottom:922.240000pt;}
.y5_c00173{bottom:922.880000pt;}
.y1_c00173{bottom:970.880000pt;}
.hf_c00173{height:27.645000pt;}
.h6_c00173{height:29.948750pt;}
.h3_c00173{height:32.252500pt;}
.h10_c00173{height:34.556250pt;}
.he_c00173{height:36.860000pt;}
.h5_c00173{height:39.163750pt;}
.h4_c00173{height:41.467500pt;}
.h9_c00173{height:43.771250pt;}
.h8_c00173{height:46.075000pt;}
.hd_c00173{height:48.378750pt;}
.h7_c00173{height:50.682500pt;}
.ha_c00173{height:52.986250pt;}
.hb_c00173{height:55.290000pt;}
.hc_c00173{height:57.593750pt;}
.h2_c00173{height:59.897500pt;}
.h11_c00173{height:62.201250pt;}
.h1_c00173{height:1019.333333pt;}
.h0_c00173{height:1019.520000pt;}
.w1_c00173{width:701.333333pt;}
.w0_c00173{width:701.440000pt;}
.x0_c00173{left:0.000000pt;}
.x2_c00173{left:80.000000pt;}
.x48_c00173{left:81.280000pt;}
.x51_c00173{left:82.560000pt;}
.x32_c00173{left:107.520000pt;}
.x3_c00173{left:108.800000pt;}
.xd_c00173{left:117.760000pt;}
.x21_c00173{left:127.360000pt;}
.x15_c00173{left:136.960000pt;}
.x26_c00173{left:145.920000pt;}
.x4_c00173{left:147.200000pt;}
.x52_c00173{left:154.880000pt;}
.x33_c00173{left:156.160000pt;}
.x16_c00173{left:165.760000pt;}
.x5a_c00173{left:167.680000pt;}
.x35_c00173{left:174.720000pt;}
.x30_c00173{left:184.960000pt;}
.x5_c00173{left:186.240000pt;}
.x3d_c00173{left:194.560000pt;}
.x39_c00173{left:204.160000pt;}
.xe_c00173{left:205.440000pt;}
.x34_c00173{left:213.120000pt;}
.x6_c00173{left:214.400000pt;}
.x3e_c00173{left:222.720000pt;}
.x17_c00173{left:224.640000pt;}
.x2b_c00173{left:232.960000pt;}
.xf_c00173{left:234.240000pt;}
.x22_c00173{left:243.200000pt;}
.x5b_c00173{left:244.480000pt;}
.x41_c00173{left:252.160000pt;}
.x31_c00173{left:253.440000pt;}
.x18_c00173{left:261.760000pt;}
.x2c_c00173{left:272.000000pt;}
.x23_c00173{left:281.600000pt;}
.x3a_c00173{left:291.200000pt;}
.x27_c00173{left:300.160000pt;}
.x2d_c00173{left:301.440000pt;}
.x19_c00173{left:303.360000pt;}
.x7_c00173{left:310.400000pt;}
.x3f_c00173{left:311.680000pt;}
.x57_c00173{left:320.640000pt;}
.x3b_c00173{left:330.240000pt;}
.x28_c00173{left:339.200000pt;}
.x4c_c00173{left:348.160000pt;}
.x47_c00173{left:349.440000pt;}
.x4b_c00173{left:357.760000pt;}
.x8_c00173{left:359.040000pt;}
.x24_c00173{left:368.640000pt;}
.x53_c00173{left:369.920000pt;}
.x49_c00173{left:376.320000pt;}
.x10_c00173{left:378.240000pt;}
.x36_c00173{left:387.840000pt;}
.x50_c00173{left:396.160000pt;}
.x1a_c00173{left:397.440000pt;}
.x11_c00173{left:407.040000pt;}
.x58_c00173{left:415.360000pt;}
.x1b_c00173{left:417.280000pt;}
.x9_c00173{left:425.600000pt;}
.x54_c00173{left:434.560000pt;}
.x29_c00173{left:435.840000pt;}
.x1c_c00173{left:445.440000pt;}
.x42_c00173{left:454.400000pt;}
.x1d_c00173{left:455.680000pt;}
.xa_c00173{left:465.280000pt;}
.x4a_c00173{left:472.960000pt;}
.x4d_c00173{left:474.240000pt;}
.x1e_c00173{left:476.160000pt;}
.x2e_c00173{left:483.200000pt;}
.x25_c00173{left:492.800000pt;}
.x2a_c00173{left:501.760000pt;}
.x45_c00173{left:503.040000pt;}
.x40_c00173{left:512.000000pt;}
.x46_c00173{left:520.320000pt;}
.x12_c00173{left:522.240000pt;}
.x4e_c00173{left:530.560000pt;}
.x1f_c00173{left:531.840000pt;}
.x37_c00173{left:539.520000pt;}
.x2f_c00173{left:549.760000pt;}
.x59_c00173{left:558.720000pt;}
.x3c_c00173{left:560.000000pt;}
.x13_c00173{left:561.280000pt;}
.xb_c00173{left:570.240000pt;}
.x43_c00173{left:579.200000pt;}
.x55_c00173{left:587.520000pt;}
.x44_c00173{left:588.800000pt;}
.x14_c00173{left:597.760000pt;}
.xc_c00173{left:599.040000pt;}
.x38_c00173{left:608.000000pt;}
.x56_c00173{left:615.680000pt;}
.x20_c00173{left:618.240000pt;}
.x4f_c00173{left:626.560000pt;}
.x1_c00173{left:630.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e6e2421d011df3b160100c64.woff2')format("woff");}.ff1_c00174{font-family:ff1_c00174;line-height:1.109863;font-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_c00174{transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);}
.m58_c00174{transform:matrix(0.239725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239725,0.000000,0.000000,0.250000,0,0);}
.m41_c00174{transform:matrix(0.245225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245225,0.000000,0.000000,0.250000,0,0);}
.m4a_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.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);}
.m60_c00174{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00174{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);}
.m53_c00174{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m56_c00174{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m24_c00174{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m64_c00174{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);}
.m52_c00174{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00174{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00174{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00174{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00174{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00174{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m14_c00174{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m51_c00174{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m46_c00174{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mc_c00174{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m9_c00174{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m31_c00174{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m12_c00174{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00174{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m59_c00174{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);}
.m42_c00174{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);}
.m37_c00174{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);}
.m30_c00174{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00174{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);}
.m39_c00174{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m27_c00174{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);}
.m38_c00174{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m19_c00174{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);}
.m20_c00174{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00174{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);}
.m10_c00174{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);}
.m5a_c00174{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m35_c00174{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);}
.ma_c00174{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m11_c00174{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m33_c00174{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);}
.m45_c00174{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m28_c00174{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m6_c00174{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);}
.m44_c00174{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);}
.m2d_c00174{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m43_c00174{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00174{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m4_c00174{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);}
.mf_c00174{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m40_c00174{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);}
.m49_c00174{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m25_c00174{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);}
.m4d_c00174{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);}
.m3_c00174{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00174{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m63_c00174{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m32_c00174{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00174{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);}
.m1b_c00174{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m22_c00174{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m18_c00174{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);}
.m55_c00174{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00174{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);}
.m8_c00174{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00174{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m5_c00174{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);}
.m62_c00174{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m1_c00174{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00174{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m34_c00174{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m23_c00174{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m13_c00174{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m16_c00174{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00174{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.me_c00174{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.md_c00174{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m47_c00174{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m29_c00174{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);}
.m3e_c00174{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00174{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m50_c00174{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);}
.m2_c00174{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m17_c00174{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m61_c00174{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00174{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m7_c00174{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.mb_c00174{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);}
.m5c_c00174{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);}
.m36_c00174{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m15_c00174{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m54_c00174{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00174{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m26_c00174{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);}
.m1d_c00174{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);}
.m57_c00174{transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);}
.m48_c00174{transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00174{transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);}
.m21_c00174{transform:matrix(0.952500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.952500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.952500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00174{transform:matrix(1.115000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.115000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.115000,0.000000,0.000000,0.250000,0,0);}
.v2_c00174{vertical-align:-2.880000px;}
.v0_c00174{vertical-align:0.000000px;}
.v1_c00174{vertical-align:11.520000px;}
.ls0_c00174{letter-spacing:0.000000px;}
.sc__c00174{text-shadow:none;}
.sc0_c00174{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00174{-webkit-text-stroke:0px transparent;}
.sc0_c00174{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00174{word-spacing:0.000000px;}
.ws1_c00174{word-spacing:0.451200px;}
.ws0_c00174{word-spacing:9.943680px;}
.fc0_c00174{color:transparent;}
.fs10_c00174{font-size:20.160000px;}
.fsd_c00174{font-size:25.920000px;}
.fsc_c00174{font-size:34.560000px;}
.fs2_c00174{font-size:37.440000px;}
.fs4_c00174{font-size:40.320000px;}
.fs9_c00174{font-size:43.200000px;}
.fsb_c00174{font-size:46.080000px;}
.fs3_c00174{font-size:48.960000px;}
.fs1_c00174{font-size:51.840000px;}
.fs5_c00174{font-size:54.720000px;}
.fs7_c00174{font-size:57.600000px;}
.fsa_c00174{font-size:60.480000px;}
.fse_c00174{font-size:63.360000px;}
.fs6_c00174{font-size:66.240000px;}
.fs8_c00174{font-size:69.120000px;}
.fsf_c00174{font-size:72.000000px;}
.fs12_c00174{font-size:74.880000px;}
.fs11_c00174{font-size:77.760000px;}
.fs0_c00174{font-size:80.640000px;}
.y0_c00174{bottom:0.000000px;}
.y74_c00174{bottom:29.520000px;}
.y77_c00174{bottom:31.680000px;}
.y75_c00174{bottom:32.400000px;}
.y76_c00174{bottom:33.120000px;}
.y73_c00174{bottom:33.840000px;}
.y72_c00174{bottom:34.560000px;}
.y71_c00174{bottom:35.280000px;}
.y6e_c00174{bottom:72.720000px;}
.y70_c00174{bottom:74.160000px;}
.y6d_c00174{bottom:74.880000px;}
.y6c_c00174{bottom:76.320000px;}
.y6f_c00174{bottom:77.760000px;}
.y6a_c00174{bottom:115.920000px;}
.y68_c00174{bottom:116.640000px;}
.y6b_c00174{bottom:117.360000px;}
.y69_c00174{bottom:118.800000px;}
.y67_c00174{bottom:119.520000px;}
.y63_c00174{bottom:159.120000px;}
.y61_c00174{bottom:159.840000px;}
.y64_c00174{bottom:160.560000px;}
.y62_c00174{bottom:162.000000px;}
.y60_c00174{bottom:162.720000px;}
.y65_c00174{bottom:163.440000px;}
.y66_c00174{bottom:166.320000px;}
.y5e_c00174{bottom:203.040000px;}
.y5c_c00174{bottom:203.760000px;}
.y5f_c00174{bottom:204.480000px;}
.y5b_c00174{bottom:205.200000px;}
.y5d_c00174{bottom:205.920000px;}
.y5a_c00174{bottom:259.200000px;}
.y56_c00174{bottom:299.520000px;}
.y59_c00174{bottom:300.240000px;}
.y57_c00174{bottom:301.680000px;}
.y55_c00174{bottom:302.400000px;}
.y58_c00174{bottom:303.120000px;}
.y54_c00174{bottom:303.840000px;}
.y50_c00174{bottom:342.000000px;}
.y52_c00174{bottom:342.720000px;}
.y51_c00174{bottom:343.440000px;}
.y53_c00174{bottom:346.320000px;}
.y4e_c00174{bottom:385.200000px;}
.y4d_c00174{bottom:385.920000px;}
.y4f_c00174{bottom:386.640000px;}
.y4c_c00174{bottom:388.800000px;}
.y4b_c00174{bottom:389.520000px;}
.y4a_c00174{bottom:429.120000px;}
.y49_c00174{bottom:429.840000px;}
.y48_c00174{bottom:430.560000px;}
.y47_c00174{bottom:431.280000px;}
.y46_c00174{bottom:432.000000px;}
.y42_c00174{bottom:471.600000px;}
.y45_c00174{bottom:472.320000px;}
.y43_c00174{bottom:473.760000px;}
.y44_c00174{bottom:474.480000px;}
.y41_c00174{bottom:475.200000px;}
.y40_c00174{bottom:514.080000px;}
.y3c_c00174{bottom:514.800000px;}
.y3f_c00174{bottom:516.960000px;}
.y3e_c00174{bottom:517.680000px;}
.y3d_c00174{bottom:518.400000px;}
.y3b_c00174{bottom:558.000000px;}
.y39_c00174{bottom:559.440000px;}
.y3a_c00174{bottom:560.160000px;}
.y38_c00174{bottom:599.760000px;}
.y35_c00174{bottom:600.480000px;}
.y36_c00174{bottom:602.640000px;}
.y37_c00174{bottom:603.360000px;}
.y34_c00174{bottom:642.960000px;}
.y31_c00174{bottom:643.680000px;}
.y33_c00174{bottom:645.120000px;}
.y32_c00174{bottom:645.840000px;}
.y30_c00174{bottom:646.560000px;}
.y2c_c00174{bottom:686.160000px;}
.y2d_c00174{bottom:686.880000px;}
.y2e_c00174{bottom:687.600000px;}
.y2f_c00174{bottom:689.040000px;}
.y2b_c00174{bottom:689.760000px;}
.y25_c00174{bottom:729.360000px;}
.y26_c00174{bottom:730.080000px;}
.y29_c00174{bottom:730.800000px;}
.y28_c00174{bottom:731.520000px;}
.y27_c00174{bottom:732.240000px;}
.y2a_c00174{bottom:732.960000px;}
.y21_c00174{bottom:772.560000px;}
.y23_c00174{bottom:773.280000px;}
.y22_c00174{bottom:774.000000px;}
.y24_c00174{bottom:775.440000px;}
.y20_c00174{bottom:776.160000px;}
.y1c_c00174{bottom:815.760000px;}
.y1e_c00174{bottom:817.200000px;}
.y1f_c00174{bottom:817.920000px;}
.y1d_c00174{bottom:818.640000px;}
.y16_c00174{bottom:858.240000px;}
.y1a_c00174{bottom:858.960000px;}
.y19_c00174{bottom:859.680000px;}
.y1b_c00174{bottom:861.120000px;}
.y17_c00174{bottom:861.840000px;}
.y18_c00174{bottom:862.560000px;}
.y12_c00174{bottom:902.160000px;}
.y11_c00174{bottom:903.600000px;}
.y14_c00174{bottom:904.320000px;}
.y13_c00174{bottom:905.040000px;}
.y15_c00174{bottom:905.760000px;}
.yd_c00174{bottom:944.640000px;}
.y10_c00174{bottom:947.520000px;}
.ye_c00174{bottom:948.240000px;}
.yf_c00174{bottom:948.960000px;}
.yc_c00174{bottom:987.120000px;}
.ya_c00174{bottom:987.840000px;}
.y9_c00174{bottom:988.560000px;}
.y7_c00174{bottom:990.000000px;}
.yb_c00174{bottom:990.720000px;}
.y8_c00174{bottom:991.440000px;}
.y6_c00174{bottom:1029.600000px;}
.y4_c00174{bottom:1031.760000px;}
.y2_c00174{bottom:1033.200000px;}
.y5_c00174{bottom:1033.920000px;}
.y3_c00174{bottom:1034.640000px;}
.y1_c00174{bottom:1080.000000px;}
.h14_c00174{height:18.142031px;}
.hf_c00174{height:23.325469px;}
.he_c00174{height:31.100625px;}
.h4_c00174{height:33.692344px;}
.h6_c00174{height:36.284062px;}
.hb_c00174{height:38.875781px;}
.hd_c00174{height:41.467500px;}
.h5_c00174{height:44.059219px;}
.h3_c00174{height:46.650937px;}
.h7_c00174{height:49.242656px;}
.h9_c00174{height:51.834375px;}
.h13_c00174{height:54.137812px;}
.hc_c00174{height:54.426094px;}
.h12_c00174{height:55.579219px;}
.h10_c00174{height:57.017812px;}
.h8_c00174{height:59.609531px;}
.ha_c00174{height:62.201250px;}
.h11_c00174{height:64.792969px;}
.h16_c00174{height:67.384687px;}
.h15_c00174{height:69.976406px;}
.h2_c00174{height:72.568125px;}
.h1_c00174{height:1149.750000px;}
.h0_c00174{height:1149.840000px;}
.w0_c00174{width:793.440000px;}
.w1_c00174{width:793.500000px;}
.x0_c00174{left:0.000000px;}
.x2_c00174{left:92.880000px;}
.x35_c00174{left:94.320000px;}
.x41_c00174{left:113.040000px;}
.x1d_c00174{left:124.560000px;}
.x44_c00174{left:133.920000px;}
.x2f_c00174{left:135.360000px;}
.x3a_c00174{left:145.440000px;}
.x54_c00174{left:156.240000px;}
.x1e_c00174{left:157.680000px;}
.x5c_c00174{left:166.320000px;}
.xc_c00174{left:167.760000px;}
.x58_c00174{left:177.120000px;}
.x27_c00174{left:178.560000px;}
.x22_c00174{left:188.640000px;}
.x3_c00174{left:190.080000px;}
.xd_c00174{left:199.440000px;}
.x3d_c00174{left:209.520000px;}
.x15_c00174{left:211.680000px;}
.x30_c00174{left:220.320000px;}
.x4_c00174{left:221.760000px;}
.x4b_c00174{left:231.120000px;}
.x16_c00174{left:233.280000px;}
.x23_c00174{left:244.080000px;}
.x34_c00174{left:254.160000px;}
.x36_c00174{left:264.240000px;}
.xe_c00174{left:265.680000px;}
.x55_c00174{left:285.840000px;}
.x45_c00174{left:288.000000px;}
.x59_c00174{left:295.200000px;}
.xf_c00174{left:298.080000px;}
.x3e_c00174{left:307.440000px;}
.x3b_c00174{left:318.240000px;}
.x5_c00174{left:319.680000px;}
.x5d_c00174{left:328.320000px;}
.x10_c00174{left:329.760000px;}
.x56_c00174{left:339.120000px;}
.x24_c00174{left:341.280000px;}
.x5a_c00174{left:349.920000px;}
.x28_c00174{left:351.360000px;}
.x4c_c00174{left:360.720000px;}
.x17_c00174{left:362.880000px;}
.x37_c00174{left:372.240000px;}
.x6_c00174{left:373.680000px;}
.x29_c00174{left:384.480000px;}
.x4f_c00174{left:393.840000px;}
.x7_c00174{left:395.280000px;}
.x38_c00174{left:404.640000px;}
.x11_c00174{left:406.080000px;}
.x3c_c00174{left:415.440000px;}
.x50_c00174{left:425.520000px;}
.x18_c00174{left:427.680000px;}
.x31_c00174{left:436.320000px;}
.x8_c00174{left:438.480000px;}
.x5e_c00174{left:447.120000px;}
.x19_c00174{left:448.560000px;}
.x51_c00174{left:457.920000px;}
.x25_c00174{left:459.360000px;}
.x5f_c00174{left:468.720000px;}
.x9_c00174{left:470.880000px;}
.x12_c00174{left:481.680000px;}
.x42_c00174{left:490.320000px;}
.x2a_c00174{left:501.120000px;}
.x46_c00174{left:511.920000px;}
.xa_c00174{left:513.360000px;}
.x52_c00174{left:522.000000px;}
.x26_c00174{left:523.440000px;}
.x1a_c00174{left:524.880000px;}
.x57_c00174{left:532.080000px;}
.x39_c00174{left:534.240000px;}
.x60_c00174{left:543.600000px;}
.x32_c00174{left:545.040000px;}
.x2b_c00174{left:555.120000px;}
.x40_c00174{left:557.280000px;}
.x48_c00174{left:564.480000px;}
.x3f_c00174{left:565.920000px;}
.x4d_c00174{left:576.000000px;}
.x1b_c00174{left:577.440000px;}
.x13_c00174{left:578.880000px;}
.x61_c00174{left:586.080000px;}
.x2c_c00174{left:587.520000px;}
.x5b_c00174{left:596.160000px;}
.x1f_c00174{left:598.320000px;}
.x49_c00174{left:607.680000px;}
.x14_c00174{left:609.840000px;}
.x33_c00174{left:611.280000px;}
.xb_c00174{left:621.360000px;}
.x43_c00174{left:629.280000px;}
.x4e_c00174{left:639.360000px;}
.x20_c00174{left:653.040000px;}
.x2e_c00174{left:662.400000px;}
.x62_c00174{left:672.480000px;}
.x4a_c00174{left:683.280000px;}
.x21_c00174{left:685.440000px;}
.x47_c00174{left:694.080000px;}
.x2d_c00174{left:695.520000px;}
.x1c_c00174{left:696.960000px;}
.x53_c00174{left:704.160000px;}
.x1_c00174{left:719.280000px;}
@media print{
.v2_c00174{vertical-align:-2.560000pt;}
.v0_c00174{vertical-align:0.000000pt;}
.v1_c00174{vertical-align:10.240000pt;}
.ls0_c00174{letter-spacing:0.000000pt;}
.ws2_c00174{word-spacing:0.000000pt;}
.ws1_c00174{word-spacing:0.401067pt;}
.ws0_c00174{word-spacing:8.838827pt;}
.fs10_c00174{font-size:17.920000pt;}
.fsd_c00174{font-size:23.040000pt;}
.fsc_c00174{font-size:30.720000pt;}
.fs2_c00174{font-size:33.280000pt;}
.fs4_c00174{font-size:35.840000pt;}
.fs9_c00174{font-size:38.400000pt;}
.fsb_c00174{font-size:40.960000pt;}
.fs3_c00174{font-size:43.520000pt;}
.fs1_c00174{font-size:46.080000pt;}
.fs5_c00174{font-size:48.640000pt;}
.fs7_c00174{font-size:51.200000pt;}
.fsa_c00174{font-size:53.760000pt;}
.fse_c00174{font-size:56.320000pt;}
.fs6_c00174{font-size:58.880000pt;}
.fs8_c00174{font-size:61.440000pt;}
.fsf_c00174{font-size:64.000000pt;}
.fs12_c00174{font-size:66.560000pt;}
.fs11_c00174{font-size:69.120000pt;}
.fs0_c00174{font-size:71.680000pt;}
.y0_c00174{bottom:0.000000pt;}
.y74_c00174{bottom:26.240000pt;}
.y77_c00174{bottom:28.160000pt;}
.y75_c00174{bottom:28.800000pt;}
.y76_c00174{bottom:29.440000pt;}
.y73_c00174{bottom:30.080000pt;}
.y72_c00174{bottom:30.720000pt;}
.y71_c00174{bottom:31.360000pt;}
.y6e_c00174{bottom:64.640000pt;}
.y70_c00174{bottom:65.920000pt;}
.y6d_c00174{bottom:66.560000pt;}
.y6c_c00174{bottom:67.840000pt;}
.y6f_c00174{bottom:69.120000pt;}
.y6a_c00174{bottom:103.040000pt;}
.y68_c00174{bottom:103.680000pt;}
.y6b_c00174{bottom:104.320000pt;}
.y69_c00174{bottom:105.600000pt;}
.y67_c00174{bottom:106.240000pt;}
.y63_c00174{bottom:141.440000pt;}
.y61_c00174{bottom:142.080000pt;}
.y64_c00174{bottom:142.720000pt;}
.y62_c00174{bottom:144.000000pt;}
.y60_c00174{bottom:144.640000pt;}
.y65_c00174{bottom:145.280000pt;}
.y66_c00174{bottom:147.840000pt;}
.y5e_c00174{bottom:180.480000pt;}
.y5c_c00174{bottom:181.120000pt;}
.y5f_c00174{bottom:181.760000pt;}
.y5b_c00174{bottom:182.400000pt;}
.y5d_c00174{bottom:183.040000pt;}
.y5a_c00174{bottom:230.400000pt;}
.y56_c00174{bottom:266.240000pt;}
.y59_c00174{bottom:266.880000pt;}
.y57_c00174{bottom:268.160000pt;}
.y55_c00174{bottom:268.800000pt;}
.y58_c00174{bottom:269.440000pt;}
.y54_c00174{bottom:270.080000pt;}
.y50_c00174{bottom:304.000000pt;}
.y52_c00174{bottom:304.640000pt;}
.y51_c00174{bottom:305.280000pt;}
.y53_c00174{bottom:307.840000pt;}
.y4e_c00174{bottom:342.400000pt;}
.y4d_c00174{bottom:343.040000pt;}
.y4f_c00174{bottom:343.680000pt;}
.y4c_c00174{bottom:345.600000pt;}
.y4b_c00174{bottom:346.240000pt;}
.y4a_c00174{bottom:381.440000pt;}
.y49_c00174{bottom:382.080000pt;}
.y48_c00174{bottom:382.720000pt;}
.y47_c00174{bottom:383.360000pt;}
.y46_c00174{bottom:384.000000pt;}
.y42_c00174{bottom:419.200000pt;}
.y45_c00174{bottom:419.840000pt;}
.y43_c00174{bottom:421.120000pt;}
.y44_c00174{bottom:421.760000pt;}
.y41_c00174{bottom:422.400000pt;}
.y40_c00174{bottom:456.960000pt;}
.y3c_c00174{bottom:457.600000pt;}
.y3f_c00174{bottom:459.520000pt;}
.y3e_c00174{bottom:460.160000pt;}
.y3d_c00174{bottom:460.800000pt;}
.y3b_c00174{bottom:496.000000pt;}
.y39_c00174{bottom:497.280000pt;}
.y3a_c00174{bottom:497.920000pt;}
.y38_c00174{bottom:533.120000pt;}
.y35_c00174{bottom:533.760000pt;}
.y36_c00174{bottom:535.680000pt;}
.y37_c00174{bottom:536.320000pt;}
.y34_c00174{bottom:571.520000pt;}
.y31_c00174{bottom:572.160000pt;}
.y33_c00174{bottom:573.440000pt;}
.y32_c00174{bottom:574.080000pt;}
.y30_c00174{bottom:574.720000pt;}
.y2c_c00174{bottom:609.920000pt;}
.y2d_c00174{bottom:610.560000pt;}
.y2e_c00174{bottom:611.200000pt;}
.y2f_c00174{bottom:612.480000pt;}
.y2b_c00174{bottom:613.120000pt;}
.y25_c00174{bottom:648.320000pt;}
.y26_c00174{bottom:648.960000pt;}
.y29_c00174{bottom:649.600000pt;}
.y28_c00174{bottom:650.240000pt;}
.y27_c00174{bottom:650.880000pt;}
.y2a_c00174{bottom:651.520000pt;}
.y21_c00174{bottom:686.720000pt;}
.y23_c00174{bottom:687.360000pt;}
.y22_c00174{bottom:688.000000pt;}
.y24_c00174{bottom:689.280000pt;}
.y20_c00174{bottom:689.920000pt;}
.y1c_c00174{bottom:725.120000pt;}
.y1e_c00174{bottom:726.400000pt;}
.y1f_c00174{bottom:727.040000pt;}
.y1d_c00174{bottom:727.680000pt;}
.y16_c00174{bottom:762.880000pt;}
.y1a_c00174{bottom:763.520000pt;}
.y19_c00174{bottom:764.160000pt;}
.y1b_c00174{bottom:765.440000pt;}
.y17_c00174{bottom:766.080000pt;}
.y18_c00174{bottom:766.720000pt;}
.y12_c00174{bottom:801.920000pt;}
.y11_c00174{bottom:803.200000pt;}
.y14_c00174{bottom:803.840000pt;}
.y13_c00174{bottom:804.480000pt;}
.y15_c00174{bottom:805.120000pt;}
.yd_c00174{bottom:839.680000pt;}
.y10_c00174{bottom:842.240000pt;}
.ye_c00174{bottom:842.880000pt;}
.yf_c00174{bottom:843.520000pt;}
.yc_c00174{bottom:877.440000pt;}
.ya_c00174{bottom:878.080000pt;}
.y9_c00174{bottom:878.720000pt;}
.y7_c00174{bottom:880.000000pt;}
.yb_c00174{bottom:880.640000pt;}
.y8_c00174{bottom:881.280000pt;}
.y6_c00174{bottom:915.200000pt;}
.y4_c00174{bottom:917.120000pt;}
.y2_c00174{bottom:918.400000pt;}
.y5_c00174{bottom:919.040000pt;}
.y3_c00174{bottom:919.680000pt;}
.y1_c00174{bottom:960.000000pt;}
.h14_c00174{height:16.126250pt;}
.hf_c00174{height:20.733750pt;}
.he_c00174{height:27.645000pt;}
.h4_c00174{height:29.948750pt;}
.h6_c00174{height:32.252500pt;}
.hb_c00174{height:34.556250pt;}
.hd_c00174{height:36.860000pt;}
.h5_c00174{height:39.163750pt;}
.h3_c00174{height:41.467500pt;}
.h7_c00174{height:43.771250pt;}
.h9_c00174{height:46.075000pt;}
.h13_c00174{height:48.122500pt;}
.hc_c00174{height:48.378750pt;}
.h12_c00174{height:49.403750pt;}
.h10_c00174{height:50.682500pt;}
.h8_c00174{height:52.986250pt;}
.ha_c00174{height:55.290000pt;}
.h11_c00174{height:57.593750pt;}
.h16_c00174{height:59.897500pt;}
.h15_c00174{height:62.201250pt;}
.h2_c00174{height:64.505000pt;}
.h1_c00174{height:1022.000000pt;}
.h0_c00174{height:1022.080000pt;}
.w0_c00174{width:705.280000pt;}
.w1_c00174{width:705.333333pt;}
.x0_c00174{left:0.000000pt;}
.x2_c00174{left:82.560000pt;}
.x35_c00174{left:83.840000pt;}
.x41_c00174{left:100.480000pt;}
.x1d_c00174{left:110.720000pt;}
.x44_c00174{left:119.040000pt;}
.x2f_c00174{left:120.320000pt;}
.x3a_c00174{left:129.280000pt;}
.x54_c00174{left:138.880000pt;}
.x1e_c00174{left:140.160000pt;}
.x5c_c00174{left:147.840000pt;}
.xc_c00174{left:149.120000pt;}
.x58_c00174{left:157.440000pt;}
.x27_c00174{left:158.720000pt;}
.x22_c00174{left:167.680000pt;}
.x3_c00174{left:168.960000pt;}
.xd_c00174{left:177.280000pt;}
.x3d_c00174{left:186.240000pt;}
.x15_c00174{left:188.160000pt;}
.x30_c00174{left:195.840000pt;}
.x4_c00174{left:197.120000pt;}
.x4b_c00174{left:205.440000pt;}
.x16_c00174{left:207.360000pt;}
.x23_c00174{left:216.960000pt;}
.x34_c00174{left:225.920000pt;}
.x36_c00174{left:234.880000pt;}
.xe_c00174{left:236.160000pt;}
.x55_c00174{left:254.080000pt;}
.x45_c00174{left:256.000000pt;}
.x59_c00174{left:262.400000pt;}
.xf_c00174{left:264.960000pt;}
.x3e_c00174{left:273.280000pt;}
.x3b_c00174{left:282.880000pt;}
.x5_c00174{left:284.160000pt;}
.x5d_c00174{left:291.840000pt;}
.x10_c00174{left:293.120000pt;}
.x56_c00174{left:301.440000pt;}
.x24_c00174{left:303.360000pt;}
.x5a_c00174{left:311.040000pt;}
.x28_c00174{left:312.320000pt;}
.x4c_c00174{left:320.640000pt;}
.x17_c00174{left:322.560000pt;}
.x37_c00174{left:330.880000pt;}
.x6_c00174{left:332.160000pt;}
.x29_c00174{left:341.760000pt;}
.x4f_c00174{left:350.080000pt;}
.x7_c00174{left:351.360000pt;}
.x38_c00174{left:359.680000pt;}
.x11_c00174{left:360.960000pt;}
.x3c_c00174{left:369.280000pt;}
.x50_c00174{left:378.240000pt;}
.x18_c00174{left:380.160000pt;}
.x31_c00174{left:387.840000pt;}
.x8_c00174{left:389.760000pt;}
.x5e_c00174{left:397.440000pt;}
.x19_c00174{left:398.720000pt;}
.x51_c00174{left:407.040000pt;}
.x25_c00174{left:408.320000pt;}
.x5f_c00174{left:416.640000pt;}
.x9_c00174{left:418.560000pt;}
.x12_c00174{left:428.160000pt;}
.x42_c00174{left:435.840000pt;}
.x2a_c00174{left:445.440000pt;}
.x46_c00174{left:455.040000pt;}
.xa_c00174{left:456.320000pt;}
.x52_c00174{left:464.000000pt;}
.x26_c00174{left:465.280000pt;}
.x1a_c00174{left:466.560000pt;}
.x57_c00174{left:472.960000pt;}
.x39_c00174{left:474.880000pt;}
.x60_c00174{left:483.200000pt;}
.x32_c00174{left:484.480000pt;}
.x2b_c00174{left:493.440000pt;}
.x40_c00174{left:495.360000pt;}
.x48_c00174{left:501.760000pt;}
.x3f_c00174{left:503.040000pt;}
.x4d_c00174{left:512.000000pt;}
.x1b_c00174{left:513.280000pt;}
.x13_c00174{left:514.560000pt;}
.x61_c00174{left:520.960000pt;}
.x2c_c00174{left:522.240000pt;}
.x5b_c00174{left:529.920000pt;}
.x1f_c00174{left:531.840000pt;}
.x49_c00174{left:540.160000pt;}
.x14_c00174{left:542.080000pt;}
.x33_c00174{left:543.360000pt;}
.xb_c00174{left:552.320000pt;}
.x43_c00174{left:559.360000pt;}
.x4e_c00174{left:568.320000pt;}
.x20_c00174{left:580.480000pt;}
.x2e_c00174{left:588.800000pt;}
.x62_c00174{left:597.760000pt;}
.x4a_c00174{left:607.360000pt;}
.x21_c00174{left:609.280000pt;}
.x47_c00174{left:616.960000pt;}
.x2d_c00174{left:618.240000pt;}
.x1c_c00174{left:619.520000pt;}
.x53_c00174{left:625.920000pt;}
.x1_c00174{left:639.360000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_418ca28ea9b088f10fa7d506.woff2')format("woff");}.ff1_c00175{font-family:ff1_c00175;line-height:1.109863;font-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_c00175{transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);}
.m25_c00175{transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);}
.m7_c00175{transform:matrix(0.240475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240475,0.000000,0.000000,0.250000,0,0);}
.m39_c00175{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3_c00175{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.me_c00175{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m4_c00175{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00175{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);}
.m37_c00175{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00175{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m13_c00175{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m6_c00175{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00175{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m46_c00175{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00175{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00175{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m62_c00175{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m9_c00175{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m59_c00175{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00175{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m15_c00175{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m38_c00175{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m11_c00175{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m8_c00175{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00175{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m52_c00175{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m22_c00175{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m43_c00175{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_c00175{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_c00175{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m24_c00175{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_c00175{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m2_c00175{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m29_c00175{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m36_c00175{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m0_c00175{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);}
.m12_c00175{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);}
.ma_c00175{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00175{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00175{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);}
.m66_c00175{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m1_c00175{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);}
.m42_c00175{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00175{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);}
.m3b_c00175{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m54_c00175{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);}
.m44_c00175{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m10_c00175{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);}
.m68_c00175{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m65_c00175{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00175{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m30_c00175{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00175{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m41_c00175{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);}
.m53_c00175{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);}
.m1f_c00175{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m47_c00175{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00175{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.mc_c00175{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);}
.m4d_c00175{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m63_c00175{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00175{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);}
.m17_c00175{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);}
.md_c00175{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.mf_c00175{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m35_c00175{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00175{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m5_c00175{transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);}
.m28_c00175{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m58_c00175{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m33_c00175{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m4c_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);}
.m56_c00175{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00175{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m18_c00175{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00175{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);}
.m4b_c00175{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);}
.m14_c00175{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m27_c00175{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m32_c00175{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00175{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m60_c00175{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00175{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m61_c00175{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m49_c00175{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00175{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);}
.m50_c00175{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00175{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);}
.m40_c00175{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.mb_c00175{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m55_c00175{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);}
.m67_c00175{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m45_c00175{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m64_c00175{transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);}
.m20_c00175{transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);}
.m57_c00175{transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);}
.m16_c00175{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m21_c00175{transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00175{transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);}
.m48_c00175{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m51_c00175{transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);}
.m26_c00175{transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);}
.m34_c00175{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m23_c00175{transform:matrix(0.842500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.842500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.842500,0.000000,0.000000,0.250000,0,0);}
.m31_c00175{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);}
.v0_c00175{vertical-align:0.000000px;}
.v1_c00175{vertical-align:8.640000px;}
.ls0_c00175{letter-spacing:0.000000px;}
.sc__c00175{text-shadow:none;}
.sc0_c00175{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00175{-webkit-text-stroke:0px transparent;}
.sc0_c00175{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00175{word-spacing:-10.287840px;}
.ws1_c00175{word-spacing:-1.743840px;}
.ws2_c00175{word-spacing:0.000000px;}
.fc0_c00175{color:transparent;}
.fse_c00175{font-size:23.040000px;}
.fs10_c00175{font-size:28.800000px;}
.fsd_c00175{font-size:31.680000px;}
.fsf_c00175{font-size:34.560000px;}
.fsb_c00175{font-size:37.440000px;}
.fsc_c00175{font-size:40.320000px;}
.fs9_c00175{font-size:43.200000px;}
.fsa_c00175{font-size:46.080000px;}
.fs8_c00175{font-size:48.960000px;}
.fs4_c00175{font-size:51.840000px;}
.fs7_c00175{font-size:54.720000px;}
.fs1_c00175{font-size:57.600000px;}
.fs2_c00175{font-size:60.480000px;}
.fs3_c00175{font-size:63.360000px;}
.fs6_c00175{font-size:66.240000px;}
.fs5_c00175{font-size:69.120000px;}
.fs0_c00175{font-size:72.000000px;}
.fs11_c00175{font-size:74.880000px;}
.y0_c00175{bottom:0.000000px;}
.y7f_c00175{bottom:43.920000px;}
.y7e_c00175{bottom:44.640000px;}
.y80_c00175{bottom:45.360000px;}
.y81_c00175{bottom:46.080000px;}
.y7d_c00175{bottom:46.800000px;}
.y7c_c00175{bottom:48.240000px;}
.y7a_c00175{bottom:87.120000px;}
.y79_c00175{bottom:87.840000px;}
.y7b_c00175{bottom:88.560000px;}
.y78_c00175{bottom:90.000000px;}
.y77_c00175{bottom:90.720000px;}
.y76_c00175{bottom:91.440000px;}
.y70_c00175{bottom:130.320000px;}
.y71_c00175{bottom:131.040000px;}
.y74_c00175{bottom:131.760000px;}
.y72_c00175{bottom:132.480000px;}
.y6f_c00175{bottom:133.200000px;}
.y73_c00175{bottom:133.920000px;}
.y75_c00175{bottom:134.640000px;}
.y6c_c00175{bottom:173.520000px;}
.y6d_c00175{bottom:174.240000px;}
.y6b_c00175{bottom:175.680000px;}
.y6e_c00175{bottom:176.400000px;}
.y6a_c00175{bottom:177.120000px;}
.y67_c00175{bottom:216.000000px;}
.y65_c00175{bottom:216.720000px;}
.y69_c00175{bottom:217.440000px;}
.y66_c00175{bottom:218.160000px;}
.y68_c00175{bottom:218.880000px;}
.y64_c00175{bottom:220.320000px;}
.y63_c00175{bottom:221.040000px;}
.y60_c00175{bottom:258.480000px;}
.y62_c00175{bottom:259.200000px;}
.y5e_c00175{bottom:259.920000px;}
.y5f_c00175{bottom:260.640000px;}
.y61_c00175{bottom:262.080000px;}
.y5d_c00175{bottom:263.520000px;}
.y5a_c00175{bottom:302.400000px;}
.y5c_c00175{bottom:303.840000px;}
.y5b_c00175{bottom:304.560000px;}
.y59_c00175{bottom:305.280000px;}
.y58_c00175{bottom:306.720000px;}
.y53_c00175{bottom:344.880000px;}
.y56_c00175{bottom:345.600000px;}
.y57_c00175{bottom:346.320000px;}
.y55_c00175{bottom:347.040000px;}
.y54_c00175{bottom:347.760000px;}
.y52_c00175{bottom:348.480000px;}
.y4c_c00175{bottom:387.360000px;}
.y4e_c00175{bottom:388.080000px;}
.y4f_c00175{bottom:388.800000px;}
.y4d_c00175{bottom:390.240000px;}
.y50_c00175{bottom:390.960000px;}
.y51_c00175{bottom:391.680000px;}
.y48_c00175{bottom:430.560000px;}
.y4a_c00175{bottom:432.000000px;}
.y49_c00175{bottom:432.720000px;}
.y47_c00175{bottom:433.440000px;}
.y46_c00175{bottom:434.160000px;}
.y4b_c00175{bottom:434.880000px;}
.y43_c00175{bottom:474.480000px;}
.y41_c00175{bottom:475.200000px;}
.y44_c00175{bottom:476.640000px;}
.y42_c00175{bottom:477.360000px;}
.y45_c00175{bottom:478.080000px;}
.y3d_c00175{bottom:517.680000px;}
.y3e_c00175{bottom:519.120000px;}
.y3f_c00175{bottom:519.840000px;}
.y40_c00175{bottom:520.560000px;}
.y3b_c00175{bottom:560.160000px;}
.y3a_c00175{bottom:560.880000px;}
.y3c_c00175{bottom:561.600000px;}
.y38_c00175{bottom:563.040000px;}
.y39_c00175{bottom:563.760000px;}
.y35_c00175{bottom:603.360000px;}
.y34_c00175{bottom:606.240000px;}
.y36_c00175{bottom:606.960000px;}
.y37_c00175{bottom:607.680000px;}
.y33_c00175{bottom:646.560000px;}
.y31_c00175{bottom:648.720000px;}
.y30_c00175{bottom:649.440000px;}
.y32_c00175{bottom:650.160000px;}
.y2d_c00175{bottom:688.320000px;}
.y2f_c00175{bottom:689.760000px;}
.y2c_c00175{bottom:690.480000px;}
.y2a_c00175{bottom:691.920000px;}
.y2b_c00175{bottom:692.640000px;}
.y2e_c00175{bottom:693.360000px;}
.y25_c00175{bottom:731.520000px;}
.y27_c00175{bottom:732.240000px;}
.y26_c00175{bottom:732.960000px;}
.y24_c00175{bottom:734.400000px;}
.y29_c00175{bottom:735.120000px;}
.y28_c00175{bottom:735.840000px;}
.y21_c00175{bottom:774.720000px;}
.y20_c00175{bottom:775.440000px;}
.y1f_c00175{bottom:776.160000px;}
.y22_c00175{bottom:777.600000px;}
.y23_c00175{bottom:778.320000px;}
.y1a_c00175{bottom:817.200000px;}
.y1d_c00175{bottom:817.920000px;}
.y1c_c00175{bottom:820.080000px;}
.y1b_c00175{bottom:820.800000px;}
.y1e_c00175{bottom:822.240000px;}
.y19_c00175{bottom:861.840000px;}
.y18_c00175{bottom:862.560000px;}
.y16_c00175{bottom:863.280000px;}
.y17_c00175{bottom:864.000000px;}
.y14_c00175{bottom:904.320000px;}
.y11_c00175{bottom:905.040000px;}
.y15_c00175{bottom:905.760000px;}
.y13_c00175{bottom:906.480000px;}
.y12_c00175{bottom:907.200000px;}
.y10_c00175{bottom:946.800000px;}
.yc_c00175{bottom:947.520000px;}
.yd_c00175{bottom:948.960000px;}
.yf_c00175{bottom:950.400000px;}
.ye_c00175{bottom:951.120000px;}
.y9_c00175{bottom:990.000000px;}
.y8_c00175{bottom:990.720000px;}
.y7_c00175{bottom:992.160000px;}
.yb_c00175{bottom:992.880000px;}
.ya_c00175{bottom:993.600000px;}
.y5_c00175{bottom:1033.200000px;}
.y3_c00175{bottom:1034.640000px;}
.y2_c00175{bottom:1035.360000px;}
.y6_c00175{bottom:1036.080000px;}
.y4_c00175{bottom:1036.800000px;}
.y1_c00175{bottom:1100.160000px;}
.h10_c00175{height:20.733750px;}
.h12_c00175{height:25.917187px;}
.hf_c00175{height:28.508906px;}
.h11_c00175{height:31.100625px;}
.hd_c00175{height:33.692344px;}
.he_c00175{height:36.284062px;}
.hb_c00175{height:38.875781px;}
.hc_c00175{height:41.467500px;}
.ha_c00175{height:44.059219px;}
.h6_c00175{height:46.650937px;}
.h9_c00175{height:49.242656px;}
.h3_c00175{height:51.834375px;}
.h4_c00175{height:54.426094px;}
.h15_c00175{height:55.290938px;}
.h5_c00175{height:57.017812px;}
.h8_c00175{height:59.609531px;}
.h7_c00175{height:62.201250px;}
.h14_c00175{height:63.066094px;}
.h2_c00175{height:64.792969px;}
.h13_c00175{height:67.384687px;}
.h1_c00175{height:1149.750000px;}
.h0_c00175{height:1149.840000px;}
.w0_c00175{width:794.880000px;}
.w1_c00175{width:795.000000px;}
.x0_c00175{left:0.000000px;}
.xc_c00175{left:95.040000px;}
.x2_c00175{left:96.480000px;}
.x52_c00175{left:107.280000px;}
.x25_c00175{left:126.720000px;}
.x1e_c00175{left:128.160000px;}
.x34_c00175{left:136.800000px;}
.x53_c00175{left:138.240000px;}
.x15_c00175{left:149.040000px;}
.x3e_c00175{left:150.480000px;}
.x58_c00175{left:157.680000px;}
.xd_c00175{left:159.840000px;}
.x4f_c00175{left:169.200000px;}
.x42_c00175{left:170.640000px;}
.x16_c00175{left:172.800000px;}
.x5d_c00175{left:180.720000px;}
.x3_c00175{left:182.160000px;}
.x45_c00175{left:190.080000px;}
.x1f_c00175{left:192.240000px;}
.x28_c00175{left:203.040000px;}
.x46_c00175{left:204.480000px;}
.x61_c00175{left:213.120000px;}
.xe_c00175{left:214.560000px;}
.x54_c00175{left:223.200000px;}
.x17_c00175{left:224.640000px;}
.x35_c00175{left:235.440000px;}
.x31_c00175{left:245.520000px;}
.x38_c00175{left:246.960000px;}
.x4c_c00175{left:255.600000px;}
.x59_c00175{left:257.040000px;}
.x4_c00175{left:258.480000px;}
.x3f_c00175{left:267.840000px;}
.x18_c00175{left:269.280000px;}
.x55_c00175{left:277.920000px;}
.x39_c00175{left:289.440000px;}
.x5a_c00175{left:298.080000px;}
.x29_c00175{left:300.240000px;}
.x5_c00175{left:301.680000px;}
.x2f_c00175{left:311.040000px;}
.x32_c00175{left:321.840000px;}
.xf_c00175{left:323.280000px;}
.x5e_c00175{left:331.200000px;}
.x2a_c00175{left:332.640000px;}
.x6_c00175{left:344.160000px;}
.x10_c00175{left:354.960000px;}
.x19_c00175{left:356.400000px;}
.x56_c00175{left:362.880000px;}
.x20_c00175{left:365.040000px;}
.x5b_c00175{left:375.120000px;}
.x47_c00175{left:385.920000px;}
.x40_c00175{left:396.720000px;}
.x43_c00175{left:408.240000px;}
.x7_c00175{left:416.160000px;}
.x33_c00175{left:419.040000px;}
.x50_c00175{left:428.400000px;}
.x2b_c00175{left:429.840000px;}
.x62_c00175{left:438.480000px;}
.x3a_c00175{left:439.920000px;}
.x1a_c00175{left:441.360000px;}
.x21_c00175{left:452.160000px;}
.x57_c00175{left:460.800000px;}
.x2c_c00175{left:462.240000px;}
.x11_c00175{left:463.680000px;}
.x1b_c00175{left:473.760000px;}
.x8_c00175{left:484.560000px;}
.x5f_c00175{left:492.480000px;}
.x22_c00175{left:494.640000px;}
.x48_c00175{left:503.280000px;}
.x1c_c00175{left:505.440000px;}
.x5c_c00175{left:514.080000px;}
.x26_c00175{left:515.520000px;}
.x63_c00175{left:524.880000px;}
.x9_c00175{left:527.040000px;}
.x60_c00175{left:535.680000px;}
.x3b_c00175{left:537.840000px;}
.x12_c00175{left:549.360000px;}
.x4d_c00175{left:558.000000px;}
.x64_c00175{left:567.360000px;}
.x3c_c00175{left:568.800000px;}
.x4a_c00175{left:579.600000px;}
.x23_c00175{left:581.040000px;}
.x49_c00175{left:590.400000px;}
.x13_c00175{left:591.840000px;}
.x44_c00175{left:601.200000px;}
.xa_c00175{left:603.360000px;}
.x24_c00175{left:613.440000px;}
.x4b_c00175{left:622.080000px;}
.x51_c00175{left:632.880000px;}
.x1d_c00175{left:634.320000px;}
.x65_c00175{left:643.680000px;}
.x2d_c00175{left:645.120000px;}
.x36_c00175{left:655.200000px;}
.x27_c00175{left:657.360000px;}
.x41_c00175{left:665.280000px;}
.xb_c00175{left:667.440000px;}
.x37_c00175{left:676.080000px;}
.x30_c00175{left:678.240000px;}
.x3d_c00175{left:686.880000px;}
.x14_c00175{left:689.040000px;}
.x1_c00175{left:699.840000px;}
.x4e_c00175{left:708.480000px;}
.x2e_c00175{left:720.000000px;}
@media print{
.v0_c00175{vertical-align:0.000000pt;}
.v1_c00175{vertical-align:7.680000pt;}
.ls0_c00175{letter-spacing:0.000000pt;}
.ws0_c00175{word-spacing:-9.144747pt;}
.ws1_c00175{word-spacing:-1.550080pt;}
.ws2_c00175{word-spacing:0.000000pt;}
.fse_c00175{font-size:20.480000pt;}
.fs10_c00175{font-size:25.600000pt;}
.fsd_c00175{font-size:28.160000pt;}
.fsf_c00175{font-size:30.720000pt;}
.fsb_c00175{font-size:33.280000pt;}
.fsc_c00175{font-size:35.840000pt;}
.fs9_c00175{font-size:38.400000pt;}
.fsa_c00175{font-size:40.960000pt;}
.fs8_c00175{font-size:43.520000pt;}
.fs4_c00175{font-size:46.080000pt;}
.fs7_c00175{font-size:48.640000pt;}
.fs1_c00175{font-size:51.200000pt;}
.fs2_c00175{font-size:53.760000pt;}
.fs3_c00175{font-size:56.320000pt;}
.fs6_c00175{font-size:58.880000pt;}
.fs5_c00175{font-size:61.440000pt;}
.fs0_c00175{font-size:64.000000pt;}
.fs11_c00175{font-size:66.560000pt;}
.y0_c00175{bottom:0.000000pt;}
.y7f_c00175{bottom:39.040000pt;}
.y7e_c00175{bottom:39.680000pt;}
.y80_c00175{bottom:40.320000pt;}
.y81_c00175{bottom:40.960000pt;}
.y7d_c00175{bottom:41.600000pt;}
.y7c_c00175{bottom:42.880000pt;}
.y7a_c00175{bottom:77.440000pt;}
.y79_c00175{bottom:78.080000pt;}
.y7b_c00175{bottom:78.720000pt;}
.y78_c00175{bottom:80.000000pt;}
.y77_c00175{bottom:80.640000pt;}
.y76_c00175{bottom:81.280000pt;}
.y70_c00175{bottom:115.840000pt;}
.y71_c00175{bottom:116.480000pt;}
.y74_c00175{bottom:117.120000pt;}
.y72_c00175{bottom:117.760000pt;}
.y6f_c00175{bottom:118.400000pt;}
.y73_c00175{bottom:119.040000pt;}
.y75_c00175{bottom:119.680000pt;}
.y6c_c00175{bottom:154.240000pt;}
.y6d_c00175{bottom:154.880000pt;}
.y6b_c00175{bottom:156.160000pt;}
.y6e_c00175{bottom:156.800000pt;}
.y6a_c00175{bottom:157.440000pt;}
.y67_c00175{bottom:192.000000pt;}
.y65_c00175{bottom:192.640000pt;}
.y69_c00175{bottom:193.280000pt;}
.y66_c00175{bottom:193.920000pt;}
.y68_c00175{bottom:194.560000pt;}
.y64_c00175{bottom:195.840000pt;}
.y63_c00175{bottom:196.480000pt;}
.y60_c00175{bottom:229.760000pt;}
.y62_c00175{bottom:230.400000pt;}
.y5e_c00175{bottom:231.040000pt;}
.y5f_c00175{bottom:231.680000pt;}
.y61_c00175{bottom:232.960000pt;}
.y5d_c00175{bottom:234.240000pt;}
.y5a_c00175{bottom:268.800000pt;}
.y5c_c00175{bottom:270.080000pt;}
.y5b_c00175{bottom:270.720000pt;}
.y59_c00175{bottom:271.360000pt;}
.y58_c00175{bottom:272.640000pt;}
.y53_c00175{bottom:306.560000pt;}
.y56_c00175{bottom:307.200000pt;}
.y57_c00175{bottom:307.840000pt;}
.y55_c00175{bottom:308.480000pt;}
.y54_c00175{bottom:309.120000pt;}
.y52_c00175{bottom:309.760000pt;}
.y4c_c00175{bottom:344.320000pt;}
.y4e_c00175{bottom:344.960000pt;}
.y4f_c00175{bottom:345.600000pt;}
.y4d_c00175{bottom:346.880000pt;}
.y50_c00175{bottom:347.520000pt;}
.y51_c00175{bottom:348.160000pt;}
.y48_c00175{bottom:382.720000pt;}
.y4a_c00175{bottom:384.000000pt;}
.y49_c00175{bottom:384.640000pt;}
.y47_c00175{bottom:385.280000pt;}
.y46_c00175{bottom:385.920000pt;}
.y4b_c00175{bottom:386.560000pt;}
.y43_c00175{bottom:421.760000pt;}
.y41_c00175{bottom:422.400000pt;}
.y44_c00175{bottom:423.680000pt;}
.y42_c00175{bottom:424.320000pt;}
.y45_c00175{bottom:424.960000pt;}
.y3d_c00175{bottom:460.160000pt;}
.y3e_c00175{bottom:461.440000pt;}
.y3f_c00175{bottom:462.080000pt;}
.y40_c00175{bottom:462.720000pt;}
.y3b_c00175{bottom:497.920000pt;}
.y3a_c00175{bottom:498.560000pt;}
.y3c_c00175{bottom:499.200000pt;}
.y38_c00175{bottom:500.480000pt;}
.y39_c00175{bottom:501.120000pt;}
.y35_c00175{bottom:536.320000pt;}
.y34_c00175{bottom:538.880000pt;}
.y36_c00175{bottom:539.520000pt;}
.y37_c00175{bottom:540.160000pt;}
.y33_c00175{bottom:574.720000pt;}
.y31_c00175{bottom:576.640000pt;}
.y30_c00175{bottom:577.280000pt;}
.y32_c00175{bottom:577.920000pt;}
.y2d_c00175{bottom:611.840000pt;}
.y2f_c00175{bottom:613.120000pt;}
.y2c_c00175{bottom:613.760000pt;}
.y2a_c00175{bottom:615.040000pt;}
.y2b_c00175{bottom:615.680000pt;}
.y2e_c00175{bottom:616.320000pt;}
.y25_c00175{bottom:650.240000pt;}
.y27_c00175{bottom:650.880000pt;}
.y26_c00175{bottom:651.520000pt;}
.y24_c00175{bottom:652.800000pt;}
.y29_c00175{bottom:653.440000pt;}
.y28_c00175{bottom:654.080000pt;}
.y21_c00175{bottom:688.640000pt;}
.y20_c00175{bottom:689.280000pt;}
.y1f_c00175{bottom:689.920000pt;}
.y22_c00175{bottom:691.200000pt;}
.y23_c00175{bottom:691.840000pt;}
.y1a_c00175{bottom:726.400000pt;}
.y1d_c00175{bottom:727.040000pt;}
.y1c_c00175{bottom:728.960000pt;}
.y1b_c00175{bottom:729.600000pt;}
.y1e_c00175{bottom:730.880000pt;}
.y19_c00175{bottom:766.080000pt;}
.y18_c00175{bottom:766.720000pt;}
.y16_c00175{bottom:767.360000pt;}
.y17_c00175{bottom:768.000000pt;}
.y14_c00175{bottom:803.840000pt;}
.y11_c00175{bottom:804.480000pt;}
.y15_c00175{bottom:805.120000pt;}
.y13_c00175{bottom:805.760000pt;}
.y12_c00175{bottom:806.400000pt;}
.y10_c00175{bottom:841.600000pt;}
.yc_c00175{bottom:842.240000pt;}
.yd_c00175{bottom:843.520000pt;}
.yf_c00175{bottom:844.800000pt;}
.ye_c00175{bottom:845.440000pt;}
.y9_c00175{bottom:880.000000pt;}
.y8_c00175{bottom:880.640000pt;}
.y7_c00175{bottom:881.920000pt;}
.yb_c00175{bottom:882.560000pt;}
.ya_c00175{bottom:883.200000pt;}
.y5_c00175{bottom:918.400000pt;}
.y3_c00175{bottom:919.680000pt;}
.y2_c00175{bottom:920.320000pt;}
.y6_c00175{bottom:920.960000pt;}
.y4_c00175{bottom:921.600000pt;}
.y1_c00175{bottom:977.920000pt;}
.h10_c00175{height:18.430000pt;}
.h12_c00175{height:23.037500pt;}
.hf_c00175{height:25.341250pt;}
.h11_c00175{height:27.645000pt;}
.hd_c00175{height:29.948750pt;}
.he_c00175{height:32.252500pt;}
.hb_c00175{height:34.556250pt;}
.hc_c00175{height:36.860000pt;}
.ha_c00175{height:39.163750pt;}
.h6_c00175{height:41.467500pt;}
.h9_c00175{height:43.771250pt;}
.h3_c00175{height:46.075000pt;}
.h4_c00175{height:48.378750pt;}
.h15_c00175{height:49.147500pt;}
.h5_c00175{height:50.682500pt;}
.h8_c00175{height:52.986250pt;}
.h7_c00175{height:55.290000pt;}
.h14_c00175{height:56.058750pt;}
.h2_c00175{height:57.593750pt;}
.h13_c00175{height:59.897500pt;}
.h1_c00175{height:1022.000000pt;}
.h0_c00175{height:1022.080000pt;}
.w0_c00175{width:706.560000pt;}
.w1_c00175{width:706.666667pt;}
.x0_c00175{left:0.000000pt;}
.xc_c00175{left:84.480000pt;}
.x2_c00175{left:85.760000pt;}
.x52_c00175{left:95.360000pt;}
.x25_c00175{left:112.640000pt;}
.x1e_c00175{left:113.920000pt;}
.x34_c00175{left:121.600000pt;}
.x53_c00175{left:122.880000pt;}
.x15_c00175{left:132.480000pt;}
.x3e_c00175{left:133.760000pt;}
.x58_c00175{left:140.160000pt;}
.xd_c00175{left:142.080000pt;}
.x4f_c00175{left:150.400000pt;}
.x42_c00175{left:151.680000pt;}
.x16_c00175{left:153.600000pt;}
.x5d_c00175{left:160.640000pt;}
.x3_c00175{left:161.920000pt;}
.x45_c00175{left:168.960000pt;}
.x1f_c00175{left:170.880000pt;}
.x28_c00175{left:180.480000pt;}
.x46_c00175{left:181.760000pt;}
.x61_c00175{left:189.440000pt;}
.xe_c00175{left:190.720000pt;}
.x54_c00175{left:198.400000pt;}
.x17_c00175{left:199.680000pt;}
.x35_c00175{left:209.280000pt;}
.x31_c00175{left:218.240000pt;}
.x38_c00175{left:219.520000pt;}
.x4c_c00175{left:227.200000pt;}
.x59_c00175{left:228.480000pt;}
.x4_c00175{left:229.760000pt;}
.x3f_c00175{left:238.080000pt;}
.x18_c00175{left:239.360000pt;}
.x55_c00175{left:247.040000pt;}
.x39_c00175{left:257.280000pt;}
.x5a_c00175{left:264.960000pt;}
.x29_c00175{left:266.880000pt;}
.x5_c00175{left:268.160000pt;}
.x2f_c00175{left:276.480000pt;}
.x32_c00175{left:286.080000pt;}
.xf_c00175{left:287.360000pt;}
.x5e_c00175{left:294.400000pt;}
.x2a_c00175{left:295.680000pt;}
.x6_c00175{left:305.920000pt;}
.x10_c00175{left:315.520000pt;}
.x19_c00175{left:316.800000pt;}
.x56_c00175{left:322.560000pt;}
.x20_c00175{left:324.480000pt;}
.x5b_c00175{left:333.440000pt;}
.x47_c00175{left:343.040000pt;}
.x40_c00175{left:352.640000pt;}
.x43_c00175{left:362.880000pt;}
.x7_c00175{left:369.920000pt;}
.x33_c00175{left:372.480000pt;}
.x50_c00175{left:380.800000pt;}
.x2b_c00175{left:382.080000pt;}
.x62_c00175{left:389.760000pt;}
.x3a_c00175{left:391.040000pt;}
.x1a_c00175{left:392.320000pt;}
.x21_c00175{left:401.920000pt;}
.x57_c00175{left:409.600000pt;}
.x2c_c00175{left:410.880000pt;}
.x11_c00175{left:412.160000pt;}
.x1b_c00175{left:421.120000pt;}
.x8_c00175{left:430.720000pt;}
.x5f_c00175{left:437.760000pt;}
.x22_c00175{left:439.680000pt;}
.x48_c00175{left:447.360000pt;}
.x1c_c00175{left:449.280000pt;}
.x5c_c00175{left:456.960000pt;}
.x26_c00175{left:458.240000pt;}
.x63_c00175{left:466.560000pt;}
.x9_c00175{left:468.480000pt;}
.x60_c00175{left:476.160000pt;}
.x3b_c00175{left:478.080000pt;}
.x12_c00175{left:488.320000pt;}
.x4d_c00175{left:496.000000pt;}
.x64_c00175{left:504.320000pt;}
.x3c_c00175{left:505.600000pt;}
.x4a_c00175{left:515.200000pt;}
.x23_c00175{left:516.480000pt;}
.x49_c00175{left:524.800000pt;}
.x13_c00175{left:526.080000pt;}
.x44_c00175{left:534.400000pt;}
.xa_c00175{left:536.320000pt;}
.x24_c00175{left:545.280000pt;}
.x4b_c00175{left:552.960000pt;}
.x51_c00175{left:562.560000pt;}
.x1d_c00175{left:563.840000pt;}
.x65_c00175{left:572.160000pt;}
.x2d_c00175{left:573.440000pt;}
.x36_c00175{left:582.400000pt;}
.x27_c00175{left:584.320000pt;}
.x41_c00175{left:591.360000pt;}
.xb_c00175{left:593.280000pt;}
.x37_c00175{left:600.960000pt;}
.x30_c00175{left:602.880000pt;}
.x3d_c00175{left:610.560000pt;}
.x14_c00175{left:612.480000pt;}
.x1_c00175{left:622.080000pt;}
.x4e_c00175{left:629.760000pt;}
.x2e_c00175{left:640.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_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_1184729bd4b4f4f0f4e73813.woff2')format("woff");}.ff1_c00176{font-family:ff1_c00176;line-height:1.109863;font-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_c00176{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m57_c00176{transform:matrix(0.248725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248725,0.000000,0.000000,0.250000,0,0);}
.m2c_c00176{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m40_c00176{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);}
.m5b_c00176{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m34_c00176{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);}
.m4a_c00176{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m39_c00176{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);}
.m42_c00176{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00176{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m36_c00176{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m33_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);}
.m27_c00176{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m58_c00176{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m26_c00176{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m23_c00176{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m22_c00176{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m45_c00176{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m25_c00176{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m47_c00176{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m9_c00176{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);}
.m52_c00176{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m38_c00176{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00176{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m0_c00176{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);}
.m4d_c00176{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m21_c00176{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);}
.m5c_c00176{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m19_c00176{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_c00176{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00176{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);}
.m37_c00176{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00176{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);}
.m29_c00176{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);}
.m4b_c00176{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.ma_c00176{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00176{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);}
.m7_c00176{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m12_c00176{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);}
.m3_c00176{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m10_c00176{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);}
.m43_c00176{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m11_c00176{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);}
.m3a_c00176{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);}
.m3b_c00176{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m18_c00176{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m1_c00176{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m6_c00176{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00176{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);}
.m48_c00176{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m14_c00176{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);}
.mf_c00176{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);}
.m3c_c00176{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);}
.m35_c00176{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.md_c00176{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00176{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m50_c00176{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m2_c00176{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);}
.m17_c00176{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00176{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m20_c00176{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);}
.m30_c00176{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m32_c00176{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m5_c00176{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);}
.m16_c00176{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m55_c00176{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m28_c00176{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00176{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);}
.m49_c00176{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.mc_c00176{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m53_c00176{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00176{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m54_c00176{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);}
.m31_c00176{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);}
.m4c_c00176{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.me_c00176{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00176{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00176{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m13_c00176{transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);}
.m4_c00176{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.mb_c00176{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m44_c00176{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m59_c00176{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m8_c00176{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m51_c00176{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);}
.m2b_c00176{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00176{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m15_c00176{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);}
.m56_c00176{transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00176{transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00176{transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);}
.m46_c00176{transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);}
.m41_c00176{transform:matrix(0.872500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.872500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.872500,0.000000,0.000000,0.250000,0,0);}
.v0_c00176{vertical-align:0.000000px;}
.v1_c00176{vertical-align:2.880000px;}
.v2_c00176{vertical-align:8.640000px;}
.ls0_c00176{letter-spacing:0.000000px;}
.sc__c00176{text-shadow:none;}
.sc0_c00176{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00176{-webkit-text-stroke:0px transparent;}
.sc0_c00176{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00176{word-spacing:-6.065280px;}
.ws1_c00176{word-spacing:-3.821040px;}
.ws2_c00176{word-spacing:0.000000px;}
.fc0_c00176{color:transparent;}
.fsc_c00176{font-size:23.040000px;}
.fs10_c00176{font-size:25.920000px;}
.fsa_c00176{font-size:34.560000px;}
.fs4_c00176{font-size:37.440000px;}
.fs7_c00176{font-size:40.320000px;}
.fsb_c00176{font-size:43.200000px;}
.fsf_c00176{font-size:46.080000px;}
.fs5_c00176{font-size:48.960000px;}
.fs6_c00176{font-size:51.840000px;}
.fs2_c00176{font-size:54.720000px;}
.fs9_c00176{font-size:57.600000px;}
.fs8_c00176{font-size:60.480000px;}
.fs3_c00176{font-size:63.360000px;}
.fs1_c00176{font-size:66.240000px;}
.fsd_c00176{font-size:69.120000px;}
.fs11_c00176{font-size:72.000000px;}
.fse_c00176{font-size:74.880000px;}
.fs0_c00176{font-size:77.760000px;}
.y0_c00176{bottom:0.000000px;}
.y69_c00176{bottom:77.760000px;}
.y6a_c00176{bottom:78.480000px;}
.y6c_c00176{bottom:79.920000px;}
.y68_c00176{bottom:81.360000px;}
.y6b_c00176{bottom:82.080000px;}
.y67_c00176{bottom:82.800000px;}
.y64_c00176{bottom:121.680000px;}
.y63_c00176{bottom:123.120000px;}
.y65_c00176{bottom:123.840000px;}
.y62_c00176{bottom:124.560000px;}
.y66_c00176{bottom:125.280000px;}
.y5f_c00176{bottom:164.160000px;}
.y5e_c00176{bottom:164.880000px;}
.y60_c00176{bottom:166.320000px;}
.y61_c00176{bottom:167.760000px;}
.y5d_c00176{bottom:168.480000px;}
.y5c_c00176{bottom:169.920000px;}
.y5a_c00176{bottom:207.360000px;}
.y58_c00176{bottom:208.080000px;}
.y59_c00176{bottom:210.240000px;}
.y5b_c00176{bottom:210.960000px;}
.y57_c00176{bottom:211.680000px;}
.y54_c00176{bottom:251.280000px;}
.y56_c00176{bottom:252.000000px;}
.y55_c00176{bottom:253.440000px;}
.y53_c00176{bottom:254.160000px;}
.y50_c00176{bottom:305.280000px;}
.y52_c00176{bottom:306.720000px;}
.y51_c00176{bottom:307.440000px;}
.y4e_c00176{bottom:308.160000px;}
.y4f_c00176{bottom:308.880000px;}
.y4a_c00176{bottom:348.480000px;}
.y4c_c00176{bottom:349.200000px;}
.y49_c00176{bottom:350.640000px;}
.y4b_c00176{bottom:351.360000px;}
.y4d_c00176{bottom:352.080000px;}
.y48_c00176{bottom:390.960000px;}
.y47_c00176{bottom:391.680000px;}
.y46_c00176{bottom:393.120000px;}
.y45_c00176{bottom:393.840000px;}
.y44_c00176{bottom:394.560000px;}
.y41_c00176{bottom:434.160000px;}
.y43_c00176{bottom:434.880000px;}
.y40_c00176{bottom:436.320000px;}
.y3f_c00176{bottom:437.040000px;}
.y42_c00176{bottom:437.760000px;}
.y3b_c00176{bottom:488.160000px;}
.y3e_c00176{bottom:490.320000px;}
.y3c_c00176{bottom:491.040000px;}
.y3d_c00176{bottom:491.760000px;}
.y3a_c00176{bottom:554.400000px;}
.y39_c00176{bottom:555.120000px;}
.y38_c00176{bottom:555.840000px;}
.y36_c00176{bottom:595.440000px;}
.y34_c00176{bottom:596.160000px;}
.y37_c00176{bottom:597.600000px;}
.y35_c00176{bottom:598.320000px;}
.y30_c00176{bottom:637.200000px;}
.y2f_c00176{bottom:637.920000px;}
.y33_c00176{bottom:639.360000px;}
.y32_c00176{bottom:640.080000px;}
.y31_c00176{bottom:640.800000px;}
.y2e_c00176{bottom:641.520000px;}
.y2c_c00176{bottom:681.120000px;}
.y29_c00176{bottom:681.840000px;}
.y2a_c00176{bottom:682.560000px;}
.y2d_c00176{bottom:683.280000px;}
.y2b_c00176{bottom:684.720000px;}
.y26_c00176{bottom:725.040000px;}
.y27_c00176{bottom:725.760000px;}
.y28_c00176{bottom:726.480000px;}
.y25_c00176{bottom:727.200000px;}
.y24_c00176{bottom:767.520000px;}
.y22_c00176{bottom:769.680000px;}
.y23_c00176{bottom:770.400000px;}
.y1c_c00176{bottom:810.000000px;}
.y20_c00176{bottom:810.720000px;}
.y1f_c00176{bottom:812.880000px;}
.y1e_c00176{bottom:813.600000px;}
.y1d_c00176{bottom:814.320000px;}
.y21_c00176{bottom:815.040000px;}
.y1b_c00176{bottom:853.200000px;}
.y16_c00176{bottom:853.920000px;}
.y17_c00176{bottom:854.640000px;}
.y1a_c00176{bottom:855.360000px;}
.y15_c00176{bottom:856.080000px;}
.y18_c00176{bottom:856.800000px;}
.y19_c00176{bottom:857.520000px;}
.y14_c00176{bottom:897.120000px;}
.y13_c00176{bottom:899.280000px;}
.y11_c00176{bottom:900.000000px;}
.y12_c00176{bottom:900.720000px;}
.yf_c00176{bottom:951.840000px;}
.ye_c00176{bottom:952.560000px;}
.yd_c00176{bottom:953.280000px;}
.y10_c00176{bottom:954.000000px;}
.y8_c00176{bottom:993.600000px;}
.ya_c00176{bottom:994.320000px;}
.yc_c00176{bottom:995.760000px;}
.yb_c00176{bottom:996.480000px;}
.y9_c00176{bottom:997.200000px;}
.y2_c00176{bottom:1036.080000px;}
.y6_c00176{bottom:1036.800000px;}
.y4_c00176{bottom:1037.520000px;}
.y7_c00176{bottom:1038.960000px;}
.y3_c00176{bottom:1039.680000px;}
.y5_c00176{bottom:1040.400000px;}
.y1_c00176{bottom:1099.440000px;}
.he_c00176{height:20.733750px;}
.h12_c00176{height:23.325469px;}
.hc_c00176{height:31.100625px;}
.h6_c00176{height:33.692344px;}
.h9_c00176{height:36.284062px;}
.hd_c00176{height:38.875781px;}
.h11_c00176{height:41.467500px;}
.h7_c00176{height:44.059219px;}
.h8_c00176{height:46.650937px;}
.h4_c00176{height:49.242656px;}
.hb_c00176{height:51.834375px;}
.ha_c00176{height:54.426094px;}
.h5_c00176{height:57.017812px;}
.h3_c00176{height:59.609531px;}
.hf_c00176{height:62.201250px;}
.h13_c00176{height:64.792969px;}
.h10_c00176{height:67.384687px;}
.h2_c00176{height:69.976406px;}
.h1_c00176{height:1149.000000px;}
.h0_c00176{height:1149.120000px;}
.w0_c00176{width:792.720000px;}
.w1_c00176{width:792.750000px;}
.x0_c00176{left:0.000000px;}
.x2_c00176{left:90.720000px;}
.x2d_c00176{left:92.160000px;}
.x1f_c00176{left:123.120000px;}
.x39_c00176{left:144.000000px;}
.x3_c00176{left:165.600000px;}
.x3a_c00176{left:174.960000px;}
.xe_c00176{left:177.120000px;}
.x57_c00176{left:185.040000px;}
.x2e_c00176{left:186.480000px;}
.xf_c00176{left:197.280000px;}
.x1c_c00176{left:198.720000px;}
.x4_c00176{left:208.080000px;}
.x44_c00176{left:218.160000px;}
.x2f_c00176{left:219.600000px;}
.x47_c00176{left:229.680000px;}
.x51_c00176{left:239.760000px;}
.x3b_c00176{left:241.200000px;}
.x1d_c00176{left:250.560000px;}
.x36_c00176{left:252.000000px;}
.x27_c00176{left:262.800000px;}
.x30_c00176{left:272.160000px;}
.x10_c00176{left:273.600000px;}
.x48_c00176{left:283.680000px;}
.x19_c00176{left:285.120000px;}
.x20_c00176{left:295.920000px;}
.x11_c00176{left:305.280000px;}
.x5_c00176{left:306.720000px;}
.x1a_c00176{left:317.520000px;}
.x3e_c00176{left:327.600000px;}
.x52_c00176{left:336.960000px;}
.x6_c00176{left:339.120000px;}
.x37_c00176{left:347.760000px;}
.x1b_c00176{left:349.920000px;}
.x12_c00176{left:359.280000px;}
.x3f_c00176{left:360.720000px;}
.x45_c00176{left:369.360000px;}
.x1e_c00176{left:370.800000px;}
.x3c_c00176{left:380.160000px;}
.x21_c00176{left:381.600000px;}
.x40_c00176{left:390.960000px;}
.x7_c00176{left:392.400000px;}
.x13_c00176{left:402.480000px;}
.x46_c00176{left:404.640000px;}
.x33_c00176{left:413.280000px;}
.x5a_c00176{left:423.360000px;}
.x22_c00176{left:425.520000px;}
.x8_c00176{left:434.880000px;}
.x31_c00176{left:436.320000px;}
.x53_c00176{left:444.240000px;}
.x49_c00176{left:445.680000px;}
.x14_c00176{left:447.120000px;}
.x28_c00176{left:455.040000px;}
.x32_c00176{left:456.480000px;}
.x41_c00176{left:466.560000px;}
.x34_c00176{left:468.000000px;}
.x23_c00176{left:477.360000px;}
.x15_c00176{left:479.520000px;}
.x54_c00176{left:488.160000px;}
.x9_c00176{left:489.600000px;}
.x4d_c00176{left:498.960000px;}
.x4a_c00176{left:509.760000px;}
.x16_c00176{left:511.200000px;}
.x42_c00176{left:520.560000px;}
.xa_c00176{left:522.000000px;}
.x58_c00176{left:530.640000px;}
.x29_c00176{left:532.080000px;}
.x24_c00176{left:542.880000px;}
.x5c_c00176{left:551.520000px;}
.x4b_c00176{left:552.960000px;}
.x38_c00176{left:563.760000px;}
.x2a_c00176{left:565.920000px;}
.x59_c00176{left:573.120000px;}
.x25_c00176{left:575.280000px;}
.x5b_c00176{left:583.920000px;}
.x17_c00176{left:586.080000px;}
.x55_c00176{left:594.000000px;}
.x43_c00176{left:595.440000px;}
.xb_c00176{left:607.680000px;}
.x4c_c00176{left:617.040000px;}
.x56_c00176{left:625.680000px;}
.x2b_c00176{left:628.560000px;}
.x50_c00176{left:637.920000px;}
.xc_c00176{left:650.160000px;}
.x26_c00176{left:661.680000px;}
.x4e_c00176{left:671.760000px;}
.x3d_c00176{left:682.560000px;}
.xd_c00176{left:684.000000px;}
.x4f_c00176{left:691.920000px;}
.x18_c00176{left:693.360000px;}
.x1_c00176{left:699.840000px;}
.x35_c00176{left:704.160000px;}
.x2c_c00176{left:714.960000px;}
@media print{
.v0_c00176{vertical-align:0.000000pt;}
.v1_c00176{vertical-align:2.560000pt;}
.v2_c00176{vertical-align:7.680000pt;}
.ls0_c00176{letter-spacing:0.000000pt;}
.ws0_c00176{word-spacing:-5.391360pt;}
.ws1_c00176{word-spacing:-3.396480pt;}
.ws2_c00176{word-spacing:0.000000pt;}
.fsc_c00176{font-size:20.480000pt;}
.fs10_c00176{font-size:23.040000pt;}
.fsa_c00176{font-size:30.720000pt;}
.fs4_c00176{font-size:33.280000pt;}
.fs7_c00176{font-size:35.840000pt;}
.fsb_c00176{font-size:38.400000pt;}
.fsf_c00176{font-size:40.960000pt;}
.fs5_c00176{font-size:43.520000pt;}
.fs6_c00176{font-size:46.080000pt;}
.fs2_c00176{font-size:48.640000pt;}
.fs9_c00176{font-size:51.200000pt;}
.fs8_c00176{font-size:53.760000pt;}
.fs3_c00176{font-size:56.320000pt;}
.fs1_c00176{font-size:58.880000pt;}
.fsd_c00176{font-size:61.440000pt;}
.fs11_c00176{font-size:64.000000pt;}
.fse_c00176{font-size:66.560000pt;}
.fs0_c00176{font-size:69.120000pt;}
.y0_c00176{bottom:0.000000pt;}
.y69_c00176{bottom:69.120000pt;}
.y6a_c00176{bottom:69.760000pt;}
.y6c_c00176{bottom:71.040000pt;}
.y68_c00176{bottom:72.320000pt;}
.y6b_c00176{bottom:72.960000pt;}
.y67_c00176{bottom:73.600000pt;}
.y64_c00176{bottom:108.160000pt;}
.y63_c00176{bottom:109.440000pt;}
.y65_c00176{bottom:110.080000pt;}
.y62_c00176{bottom:110.720000pt;}
.y66_c00176{bottom:111.360000pt;}
.y5f_c00176{bottom:145.920000pt;}
.y5e_c00176{bottom:146.560000pt;}
.y60_c00176{bottom:147.840000pt;}
.y61_c00176{bottom:149.120000pt;}
.y5d_c00176{bottom:149.760000pt;}
.y5c_c00176{bottom:151.040000pt;}
.y5a_c00176{bottom:184.320000pt;}
.y58_c00176{bottom:184.960000pt;}
.y59_c00176{bottom:186.880000pt;}
.y5b_c00176{bottom:187.520000pt;}
.y57_c00176{bottom:188.160000pt;}
.y54_c00176{bottom:223.360000pt;}
.y56_c00176{bottom:224.000000pt;}
.y55_c00176{bottom:225.280000pt;}
.y53_c00176{bottom:225.920000pt;}
.y50_c00176{bottom:271.360000pt;}
.y52_c00176{bottom:272.640000pt;}
.y51_c00176{bottom:273.280000pt;}
.y4e_c00176{bottom:273.920000pt;}
.y4f_c00176{bottom:274.560000pt;}
.y4a_c00176{bottom:309.760000pt;}
.y4c_c00176{bottom:310.400000pt;}
.y49_c00176{bottom:311.680000pt;}
.y4b_c00176{bottom:312.320000pt;}
.y4d_c00176{bottom:312.960000pt;}
.y48_c00176{bottom:347.520000pt;}
.y47_c00176{bottom:348.160000pt;}
.y46_c00176{bottom:349.440000pt;}
.y45_c00176{bottom:350.080000pt;}
.y44_c00176{bottom:350.720000pt;}
.y41_c00176{bottom:385.920000pt;}
.y43_c00176{bottom:386.560000pt;}
.y40_c00176{bottom:387.840000pt;}
.y3f_c00176{bottom:388.480000pt;}
.y42_c00176{bottom:389.120000pt;}
.y3b_c00176{bottom:433.920000pt;}
.y3e_c00176{bottom:435.840000pt;}
.y3c_c00176{bottom:436.480000pt;}
.y3d_c00176{bottom:437.120000pt;}
.y3a_c00176{bottom:492.800000pt;}
.y39_c00176{bottom:493.440000pt;}
.y38_c00176{bottom:494.080000pt;}
.y36_c00176{bottom:529.280000pt;}
.y34_c00176{bottom:529.920000pt;}
.y37_c00176{bottom:531.200000pt;}
.y35_c00176{bottom:531.840000pt;}
.y30_c00176{bottom:566.400000pt;}
.y2f_c00176{bottom:567.040000pt;}
.y33_c00176{bottom:568.320000pt;}
.y32_c00176{bottom:568.960000pt;}
.y31_c00176{bottom:569.600000pt;}
.y2e_c00176{bottom:570.240000pt;}
.y2c_c00176{bottom:605.440000pt;}
.y29_c00176{bottom:606.080000pt;}
.y2a_c00176{bottom:606.720000pt;}
.y2d_c00176{bottom:607.360000pt;}
.y2b_c00176{bottom:608.640000pt;}
.y26_c00176{bottom:644.480000pt;}
.y27_c00176{bottom:645.120000pt;}
.y28_c00176{bottom:645.760000pt;}
.y25_c00176{bottom:646.400000pt;}
.y24_c00176{bottom:682.240000pt;}
.y22_c00176{bottom:684.160000pt;}
.y23_c00176{bottom:684.800000pt;}
.y1c_c00176{bottom:720.000000pt;}
.y20_c00176{bottom:720.640000pt;}
.y1f_c00176{bottom:722.560000pt;}
.y1e_c00176{bottom:723.200000pt;}
.y1d_c00176{bottom:723.840000pt;}
.y21_c00176{bottom:724.480000pt;}
.y1b_c00176{bottom:758.400000pt;}
.y16_c00176{bottom:759.040000pt;}
.y17_c00176{bottom:759.680000pt;}
.y1a_c00176{bottom:760.320000pt;}
.y15_c00176{bottom:760.960000pt;}
.y18_c00176{bottom:761.600000pt;}
.y19_c00176{bottom:762.240000pt;}
.y14_c00176{bottom:797.440000pt;}
.y13_c00176{bottom:799.360000pt;}
.y11_c00176{bottom:800.000000pt;}
.y12_c00176{bottom:800.640000pt;}
.yf_c00176{bottom:846.080000pt;}
.ye_c00176{bottom:846.720000pt;}
.yd_c00176{bottom:847.360000pt;}
.y10_c00176{bottom:848.000000pt;}
.y8_c00176{bottom:883.200000pt;}
.ya_c00176{bottom:883.840000pt;}
.yc_c00176{bottom:885.120000pt;}
.yb_c00176{bottom:885.760000pt;}
.y9_c00176{bottom:886.400000pt;}
.y2_c00176{bottom:920.960000pt;}
.y6_c00176{bottom:921.600000pt;}
.y4_c00176{bottom:922.240000pt;}
.y7_c00176{bottom:923.520000pt;}
.y3_c00176{bottom:924.160000pt;}
.y5_c00176{bottom:924.800000pt;}
.y1_c00176{bottom:977.280000pt;}
.he_c00176{height:18.430000pt;}
.h12_c00176{height:20.733750pt;}
.hc_c00176{height:27.645000pt;}
.h6_c00176{height:29.948750pt;}
.h9_c00176{height:32.252500pt;}
.hd_c00176{height:34.556250pt;}
.h11_c00176{height:36.860000pt;}
.h7_c00176{height:39.163750pt;}
.h8_c00176{height:41.467500pt;}
.h4_c00176{height:43.771250pt;}
.hb_c00176{height:46.075000pt;}
.ha_c00176{height:48.378750pt;}
.h5_c00176{height:50.682500pt;}
.h3_c00176{height:52.986250pt;}
.hf_c00176{height:55.290000pt;}
.h13_c00176{height:57.593750pt;}
.h10_c00176{height:59.897500pt;}
.h2_c00176{height:62.201250pt;}
.h1_c00176{height:1021.333333pt;}
.h0_c00176{height:1021.440000pt;}
.w0_c00176{width:704.640000pt;}
.w1_c00176{width:704.666667pt;}
.x0_c00176{left:0.000000pt;}
.x2_c00176{left:80.640000pt;}
.x2d_c00176{left:81.920000pt;}
.x1f_c00176{left:109.440000pt;}
.x39_c00176{left:128.000000pt;}
.x3_c00176{left:147.200000pt;}
.x3a_c00176{left:155.520000pt;}
.xe_c00176{left:157.440000pt;}
.x57_c00176{left:164.480000pt;}
.x2e_c00176{left:165.760000pt;}
.xf_c00176{left:175.360000pt;}
.x1c_c00176{left:176.640000pt;}
.x4_c00176{left:184.960000pt;}
.x44_c00176{left:193.920000pt;}
.x2f_c00176{left:195.200000pt;}
.x47_c00176{left:204.160000pt;}
.x51_c00176{left:213.120000pt;}
.x3b_c00176{left:214.400000pt;}
.x1d_c00176{left:222.720000pt;}
.x36_c00176{left:224.000000pt;}
.x27_c00176{left:233.600000pt;}
.x30_c00176{left:241.920000pt;}
.x10_c00176{left:243.200000pt;}
.x48_c00176{left:252.160000pt;}
.x19_c00176{left:253.440000pt;}
.x20_c00176{left:263.040000pt;}
.x11_c00176{left:271.360000pt;}
.x5_c00176{left:272.640000pt;}
.x1a_c00176{left:282.240000pt;}
.x3e_c00176{left:291.200000pt;}
.x52_c00176{left:299.520000pt;}
.x6_c00176{left:301.440000pt;}
.x37_c00176{left:309.120000pt;}
.x1b_c00176{left:311.040000pt;}
.x12_c00176{left:319.360000pt;}
.x3f_c00176{left:320.640000pt;}
.x45_c00176{left:328.320000pt;}
.x1e_c00176{left:329.600000pt;}
.x3c_c00176{left:337.920000pt;}
.x21_c00176{left:339.200000pt;}
.x40_c00176{left:347.520000pt;}
.x7_c00176{left:348.800000pt;}
.x13_c00176{left:357.760000pt;}
.x46_c00176{left:359.680000pt;}
.x33_c00176{left:367.360000pt;}
.x5a_c00176{left:376.320000pt;}
.x22_c00176{left:378.240000pt;}
.x8_c00176{left:386.560000pt;}
.x31_c00176{left:387.840000pt;}
.x53_c00176{left:394.880000pt;}
.x49_c00176{left:396.160000pt;}
.x14_c00176{left:397.440000pt;}
.x28_c00176{left:404.480000pt;}
.x32_c00176{left:405.760000pt;}
.x41_c00176{left:414.720000pt;}
.x34_c00176{left:416.000000pt;}
.x23_c00176{left:424.320000pt;}
.x15_c00176{left:426.240000pt;}
.x54_c00176{left:433.920000pt;}
.x9_c00176{left:435.200000pt;}
.x4d_c00176{left:443.520000pt;}
.x4a_c00176{left:453.120000pt;}
.x16_c00176{left:454.400000pt;}
.x42_c00176{left:462.720000pt;}
.xa_c00176{left:464.000000pt;}
.x58_c00176{left:471.680000pt;}
.x29_c00176{left:472.960000pt;}
.x24_c00176{left:482.560000pt;}
.x5c_c00176{left:490.240000pt;}
.x4b_c00176{left:491.520000pt;}
.x38_c00176{left:501.120000pt;}
.x2a_c00176{left:503.040000pt;}
.x59_c00176{left:509.440000pt;}
.x25_c00176{left:511.360000pt;}
.x5b_c00176{left:519.040000pt;}
.x17_c00176{left:520.960000pt;}
.x55_c00176{left:528.000000pt;}
.x43_c00176{left:529.280000pt;}
.xb_c00176{left:540.160000pt;}
.x4c_c00176{left:548.480000pt;}
.x56_c00176{left:556.160000pt;}
.x2b_c00176{left:558.720000pt;}
.x50_c00176{left:567.040000pt;}
.xc_c00176{left:577.920000pt;}
.x26_c00176{left:588.160000pt;}
.x4e_c00176{left:597.120000pt;}
.x3d_c00176{left:606.720000pt;}
.xd_c00176{left:608.000000pt;}
.x4f_c00176{left:615.040000pt;}
.x18_c00176{left:616.320000pt;}
.x1_c00176{left:622.080000pt;}
.x35_c00176{left:625.920000pt;}
.x2c_c00176{left:635.520000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c0d7faab40f44c3e7b062f56.woff2')format("woff");}.ff1_c00177{font-family:ff1_c00177;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5a_c00177{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00177{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m55_c00177{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m48_c00177{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);}
.m2b_c00177{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00177{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);}
.m57_c00177{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1_c00177{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m10_c00177{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00177{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m58_c00177{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m27_c00177{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.me_c00177{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m7_c00177{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00177{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m54_c00177{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00177{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m2_c00177{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00177{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mf_c00177{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mb_c00177{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m22_c00177{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m19_c00177{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m0_c00177{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m41_c00177{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00177{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);}
.m2f_c00177{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m47_c00177{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m60_c00177{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m11_c00177{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m39_c00177{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00177{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m30_c00177{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m51_c00177{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);}
.m8_c00177{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);}
.m9_c00177{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m45_c00177{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);}
.m34_c00177{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);}
.m3a_c00177{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m18_c00177{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m21_c00177{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m20_c00177{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m6_c00177{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);}
.m4e_c00177{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m46_c00177{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00177{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);}
.m53_c00177{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);}
.m17_c00177{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.md_c00177{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m38_c00177{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.mc_c00177{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00177{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);}
.m25_c00177{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00177{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m13_c00177{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);}
.m36_c00177{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m31_c00177{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);}
.m2d_c00177{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00177{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m52_c00177{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);}
.m12_c00177{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m23_c00177{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m42_c00177{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00177{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m37_c00177{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m15_c00177{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m4_c00177{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m50_c00177{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m24_c00177{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);}
.m29_c00177{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m28_c00177{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m40_c00177{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00177{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m14_c00177{transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00177{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m56_c00177{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m16_c00177{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m49_c00177{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00177{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m3_c00177{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m26_c00177{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);}
.m5e_c00177{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);}
.m4f_c00177{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00177{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.ma_c00177{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m35_c00177{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00177{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00177{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);}
.m5_c00177{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00177{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);}
.m3c_c00177{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m44_c00177{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);}
.m3e_c00177{transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);}
.m61_c00177{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.m33_c00177{transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);}
.m43_c00177{transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);}
.m59_c00177{transform:matrix(0.827500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.827500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.827500,0.000000,0.000000,0.250000,0,0);}
.m32_c00177{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.v1_c00177{vertical-align:-8.640000px;}
.v0_c00177{vertical-align:0.000000px;}
.ls0_c00177{letter-spacing:0.000000px;}
.sc__c00177{text-shadow:none;}
.sc0_c00177{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00177{-webkit-text-stroke:0px transparent;}
.sc0_c00177{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00177{word-spacing:-0.732240px;}
.ws2_c00177{word-spacing:0.000000px;}
.ws1_c00177{word-spacing:8.174880px;}
.fc0_c00177{color:transparent;}
.fse_c00177{font-size:34.560000px;}
.fsb_c00177{font-size:37.440000px;}
.fsa_c00177{font-size:40.320000px;}
.fs1_c00177{font-size:43.200000px;}
.fs3_c00177{font-size:46.080000px;}
.fsd_c00177{font-size:48.960000px;}
.fs6_c00177{font-size:51.840000px;}
.fs2_c00177{font-size:54.720000px;}
.fs5_c00177{font-size:57.600000px;}
.fs9_c00177{font-size:60.480000px;}
.fs8_c00177{font-size:63.360000px;}
.fs7_c00177{font-size:66.240000px;}
.fs4_c00177{font-size:69.120000px;}
.fsc_c00177{font-size:72.000000px;}
.fs0_c00177{font-size:74.880000px;}
.fsf_c00177{font-size:77.760000px;}
.fs10_c00177{font-size:83.520000px;}
.y0_c00177{bottom:0.000000px;}
.y7d_c00177{bottom:51.120000px;}
.y7b_c00177{bottom:51.840000px;}
.y7f_c00177{bottom:53.280000px;}
.y7a_c00177{bottom:54.000000px;}
.y7c_c00177{bottom:54.720000px;}
.y7e_c00177{bottom:55.440000px;}
.y79_c00177{bottom:57.600000px;}
.y75_c00177{bottom:94.320000px;}
.y73_c00177{bottom:95.040000px;}
.y72_c00177{bottom:95.760000px;}
.y76_c00177{bottom:96.480000px;}
.y74_c00177{bottom:97.200000px;}
.y77_c00177{bottom:98.640000px;}
.y78_c00177{bottom:99.360000px;}
.y6f_c00177{bottom:137.520000px;}
.y71_c00177{bottom:138.240000px;}
.y70_c00177{bottom:138.960000px;}
.y6e_c00177{bottom:140.400000px;}
.y6a_c00177{bottom:181.440000px;}
.y6b_c00177{bottom:182.160000px;}
.y6d_c00177{bottom:182.880000px;}
.y68_c00177{bottom:183.600000px;}
.y69_c00177{bottom:184.320000px;}
.y6c_c00177{bottom:185.040000px;}
.y65_c00177{bottom:224.640000px;}
.y62_c00177{bottom:225.360000px;}
.y64_c00177{bottom:226.800000px;}
.y63_c00177{bottom:227.520000px;}
.y67_c00177{bottom:228.240000px;}
.y66_c00177{bottom:228.960000px;}
.y61_c00177{bottom:229.680000px;}
.y60_c00177{bottom:267.840000px;}
.y5f_c00177{bottom:270.720000px;}
.y5e_c00177{bottom:271.440000px;}
.y5b_c00177{bottom:310.320000px;}
.y5a_c00177{bottom:312.480000px;}
.y5c_c00177{bottom:313.200000px;}
.y5d_c00177{bottom:313.920000px;}
.y58_c00177{bottom:353.520000px;}
.y56_c00177{bottom:354.240000px;}
.y57_c00177{bottom:356.400000px;}
.y55_c00177{bottom:357.120000px;}
.y59_c00177{bottom:357.840000px;}
.y52_c00177{bottom:396.720000px;}
.y54_c00177{bottom:397.440000px;}
.y51_c00177{bottom:398.880000px;}
.y53_c00177{bottom:399.600000px;}
.y50_c00177{bottom:401.040000px;}
.y4c_c00177{bottom:438.480000px;}
.y4e_c00177{bottom:439.200000px;}
.y4f_c00177{bottom:441.360000px;}
.y4d_c00177{bottom:442.080000px;}
.y4b_c00177{bottom:442.800000px;}
.y4a_c00177{bottom:443.520000px;}
.y49_c00177{bottom:482.400000px;}
.y45_c00177{bottom:483.120000px;}
.y48_c00177{bottom:484.560000px;}
.y46_c00177{bottom:485.280000px;}
.y47_c00177{bottom:486.000000px;}
.y44_c00177{bottom:524.160000px;}
.y41_c00177{bottom:524.880000px;}
.y43_c00177{bottom:525.600000px;}
.y42_c00177{bottom:527.760000px;}
.y40_c00177{bottom:528.480000px;}
.y3e_c00177{bottom:567.360000px;}
.y3c_c00177{bottom:568.080000px;}
.y3f_c00177{bottom:568.800000px;}
.y3d_c00177{bottom:570.240000px;}
.y3b_c00177{bottom:570.960000px;}
.y3a_c00177{bottom:571.680000px;}
.y38_c00177{bottom:610.560000px;}
.y37_c00177{bottom:611.280000px;}
.y39_c00177{bottom:613.440000px;}
.y35_c00177{bottom:614.160000px;}
.y36_c00177{bottom:614.880000px;}
.y30_c00177{bottom:653.760000px;}
.y34_c00177{bottom:655.920000px;}
.y32_c00177{bottom:656.640000px;}
.y31_c00177{bottom:657.360000px;}
.y33_c00177{bottom:658.080000px;}
.y2b_c00177{bottom:696.960000px;}
.y2d_c00177{bottom:697.680000px;}
.y2f_c00177{bottom:698.400000px;}
.y2e_c00177{bottom:699.840000px;}
.y2c_c00177{bottom:700.560000px;}
.y29_c00177{bottom:740.880000px;}
.y2a_c00177{bottom:741.600000px;}
.y27_c00177{bottom:743.040000px;}
.y28_c00177{bottom:743.760000px;}
.y26_c00177{bottom:753.120000px;}
.y21_c00177{bottom:783.360000px;}
.y22_c00177{bottom:784.080000px;}
.y23_c00177{bottom:784.800000px;}
.y25_c00177{bottom:786.240000px;}
.y24_c00177{bottom:787.680000px;}
.y1f_c00177{bottom:826.560000px;}
.y20_c00177{bottom:827.280000px;}
.y1d_c00177{bottom:829.440000px;}
.y1e_c00177{bottom:830.160000px;}
.y19_c00177{bottom:869.040000px;}
.y1a_c00177{bottom:870.480000px;}
.y18_c00177{bottom:871.920000px;}
.y1c_c00177{bottom:872.640000px;}
.y1b_c00177{bottom:873.360000px;}
.y16_c00177{bottom:913.680000px;}
.y17_c00177{bottom:914.400000px;}
.y14_c00177{bottom:915.120000px;}
.y15_c00177{bottom:916.560000px;}
.y13_c00177{bottom:954.720000px;}
.y10_c00177{bottom:956.160000px;}
.y11_c00177{bottom:956.880000px;}
.ye_c00177{bottom:957.600000px;}
.y12_c00177{bottom:958.320000px;}
.yf_c00177{bottom:959.040000px;}
.y7_c00177{bottom:997.920000px;}
.y8_c00177{bottom:998.640000px;}
.y9_c00177{bottom:999.360000px;}
.yd_c00177{bottom:1000.080000px;}
.yc_c00177{bottom:1000.800000px;}
.yb_c00177{bottom:1001.520000px;}
.ya_c00177{bottom:1002.240000px;}
.y3_c00177{bottom:1041.120000px;}
.y2_c00177{bottom:1041.840000px;}
.y5_c00177{bottom:1042.560000px;}
.y6_c00177{bottom:1043.280000px;}
.y4_c00177{bottom:1044.720000px;}
.y1_c00177{bottom:1095.840000px;}
.h10_c00177{height:31.100625px;}
.hd_c00177{height:33.692344px;}
.hc_c00177{height:36.284062px;}
.h3_c00177{height:38.875781px;}
.h5_c00177{height:41.467500px;}
.hf_c00177{height:44.059219px;}
.h8_c00177{height:46.650937px;}
.h4_c00177{height:49.242656px;}
.h7_c00177{height:51.834375px;}
.hb_c00177{height:54.426094px;}
.ha_c00177{height:57.017812px;}
.h9_c00177{height:59.609531px;}
.h6_c00177{height:62.201250px;}
.he_c00177{height:64.792969px;}
.h2_c00177{height:67.384687px;}
.h11_c00177{height:69.976406px;}
.h12_c00177{height:75.159844px;}
.h1_c00177{height:1149.000000px;}
.h0_c00177{height:1149.120000px;}
.w0_c00177{width:792.720000px;}
.w1_c00177{width:792.750000px;}
.x0_c00177{left:0.000000px;}
.x13_c00177{left:90.000000px;}
.x2_c00177{left:91.440000px;}
.x3_c00177{left:123.120000px;}
.x24_c00177{left:131.760000px;}
.x14_c00177{left:133.200000px;}
.xb_c00177{left:142.560000px;}
.x34_c00177{left:154.080000px;}
.x29_c00177{left:155.520000px;}
.x48_c00177{left:163.440000px;}
.x15_c00177{left:164.880000px;}
.x5f_c00177{left:174.960000px;}
.x39_c00177{left:186.480000px;}
.x40_c00177{left:196.560000px;}
.x31_c00177{left:198.000000px;}
.x35_c00177{left:207.360000px;}
.x1e_c00177{left:218.880000px;}
.x4_c00177{left:220.320000px;}
.x30_c00177{left:228.960000px;}
.x41_c00177{left:239.760000px;}
.x32_c00177{left:241.200000px;}
.x1b_c00177{left:250.560000px;}
.x1f_c00177{left:262.080000px;}
.x49_c00177{left:272.160000px;}
.xc_c00177{left:274.320000px;}
.x43_c00177{left:282.960000px;}
.x5_c00177{left:284.400000px;}
.x5a_c00177{left:293.040000px;}
.x20_c00177{left:294.480000px;}
.x3d_c00177{left:305.280000px;}
.x6_c00177{left:306.720000px;}
.x16_c00177{left:316.080000px;}
.x52_c00177{left:326.160000px;}
.x4b_c00177{left:335.520000px;}
.x4f_c00177{left:336.960000px;}
.xd_c00177{left:338.400000px;}
.x44_c00177{left:347.760000px;}
.x7_c00177{left:349.200000px;}
.x21_c00177{left:359.280000px;}
.x60_c00177{left:367.200000px;}
.x2a_c00177{left:370.080000px;}
.x17_c00177{left:371.520000px;}
.x4a_c00177{left:379.440000px;}
.x33_c00177{left:380.880000px;}
.x2b_c00177{left:391.680000px;}
.x25_c00177{left:393.120000px;}
.x3e_c00177{left:401.760000px;}
.xe_c00177{left:403.920000px;}
.x4c_c00177{left:412.560000px;}
.x50_c00177{left:414.720000px;}
.x3a_c00177{left:422.640000px;}
.x2c_c00177{left:424.080000px;}
.x58_c00177{left:433.440000px;}
.x3f_c00177{left:444.240000px;}
.x18_c00177{left:447.120000px;}
.x8_c00177{left:457.920000px;}
.x53_c00177{left:466.560000px;}
.x22_c00177{left:468.720000px;}
.xf_c00177{left:479.520000px;}
.x19_c00177{left:488.880000px;}
.x54_c00177{left:498.240000px;}
.x26_c00177{left:499.680000px;}
.x57_c00177{left:508.320000px;}
.x36_c00177{left:509.760000px;}
.x10_c00177{left:511.200000px;}
.x61_c00177{left:529.920000px;}
.x2d_c00177{left:532.080000px;}
.x3b_c00177{left:542.160000px;}
.x42_c00177{left:552.960000px;}
.x62_c00177{left:562.320000px;}
.x51_c00177{left:563.760000px;}
.x27_c00177{left:565.200000px;}
.x55_c00177{left:573.120000px;}
.x45_c00177{left:574.560000px;}
.x37_c00177{left:576.000000px;}
.x4d_c00177{left:585.360000px;}
.x2e_c00177{left:596.160000px;}
.x1c_c00177{left:597.600000px;}
.x59_c00177{left:604.800000px;}
.x46_c00177{left:606.960000px;}
.x11_c00177{left:608.400000px;}
.x9_c00177{left:617.760000px;}
.x23_c00177{left:619.920000px;}
.x5b_c00177{left:627.120000px;}
.x2f_c00177{left:628.560000px;}
.x5e_c00177{left:637.200000px;}
.x3c_c00177{left:638.640000px;}
.x12_c00177{left:640.080000px;}
.x1d_c00177{left:650.160000px;}
.x5c_c00177{left:658.800000px;}
.x38_c00177{left:660.960000px;}
.x4e_c00177{left:670.320000px;}
.x56_c00177{left:681.120000px;}
.x1a_c00177{left:684.720000px;}
.x1_c00177{left:689.040000px;}
.x5d_c00177{left:690.480000px;}
.x47_c00177{left:692.640000px;}
.xa_c00177{left:694.080000px;}
.x28_c00177{left:695.520000px;}
@media print{
.v1_c00177{vertical-align:-7.680000pt;}
.v0_c00177{vertical-align:0.000000pt;}
.ls0_c00177{letter-spacing:0.000000pt;}
.ws0_c00177{word-spacing:-0.650880pt;}
.ws2_c00177{word-spacing:0.000000pt;}
.ws1_c00177{word-spacing:7.266560pt;}
.fse_c00177{font-size:30.720000pt;}
.fsb_c00177{font-size:33.280000pt;}
.fsa_c00177{font-size:35.840000pt;}
.fs1_c00177{font-size:38.400000pt;}
.fs3_c00177{font-size:40.960000pt;}
.fsd_c00177{font-size:43.520000pt;}
.fs6_c00177{font-size:46.080000pt;}
.fs2_c00177{font-size:48.640000pt;}
.fs5_c00177{font-size:51.200000pt;}
.fs9_c00177{font-size:53.760000pt;}
.fs8_c00177{font-size:56.320000pt;}
.fs7_c00177{font-size:58.880000pt;}
.fs4_c00177{font-size:61.440000pt;}
.fsc_c00177{font-size:64.000000pt;}
.fs0_c00177{font-size:66.560000pt;}
.fsf_c00177{font-size:69.120000pt;}
.fs10_c00177{font-size:74.240000pt;}
.y0_c00177{bottom:0.000000pt;}
.y7d_c00177{bottom:45.440000pt;}
.y7b_c00177{bottom:46.080000pt;}
.y7f_c00177{bottom:47.360000pt;}
.y7a_c00177{bottom:48.000000pt;}
.y7c_c00177{bottom:48.640000pt;}
.y7e_c00177{bottom:49.280000pt;}
.y79_c00177{bottom:51.200000pt;}
.y75_c00177{bottom:83.840000pt;}
.y73_c00177{bottom:84.480000pt;}
.y72_c00177{bottom:85.120000pt;}
.y76_c00177{bottom:85.760000pt;}
.y74_c00177{bottom:86.400000pt;}
.y77_c00177{bottom:87.680000pt;}
.y78_c00177{bottom:88.320000pt;}
.y6f_c00177{bottom:122.240000pt;}
.y71_c00177{bottom:122.880000pt;}
.y70_c00177{bottom:123.520000pt;}
.y6e_c00177{bottom:124.800000pt;}
.y6a_c00177{bottom:161.280000pt;}
.y6b_c00177{bottom:161.920000pt;}
.y6d_c00177{bottom:162.560000pt;}
.y68_c00177{bottom:163.200000pt;}
.y69_c00177{bottom:163.840000pt;}
.y6c_c00177{bottom:164.480000pt;}
.y65_c00177{bottom:199.680000pt;}
.y62_c00177{bottom:200.320000pt;}
.y64_c00177{bottom:201.600000pt;}
.y63_c00177{bottom:202.240000pt;}
.y67_c00177{bottom:202.880000pt;}
.y66_c00177{bottom:203.520000pt;}
.y61_c00177{bottom:204.160000pt;}
.y60_c00177{bottom:238.080000pt;}
.y5f_c00177{bottom:240.640000pt;}
.y5e_c00177{bottom:241.280000pt;}
.y5b_c00177{bottom:275.840000pt;}
.y5a_c00177{bottom:277.760000pt;}
.y5c_c00177{bottom:278.400000pt;}
.y5d_c00177{bottom:279.040000pt;}
.y58_c00177{bottom:314.240000pt;}
.y56_c00177{bottom:314.880000pt;}
.y57_c00177{bottom:316.800000pt;}
.y55_c00177{bottom:317.440000pt;}
.y59_c00177{bottom:318.080000pt;}
.y52_c00177{bottom:352.640000pt;}
.y54_c00177{bottom:353.280000pt;}
.y51_c00177{bottom:354.560000pt;}
.y53_c00177{bottom:355.200000pt;}
.y50_c00177{bottom:356.480000pt;}
.y4c_c00177{bottom:389.760000pt;}
.y4e_c00177{bottom:390.400000pt;}
.y4f_c00177{bottom:392.320000pt;}
.y4d_c00177{bottom:392.960000pt;}
.y4b_c00177{bottom:393.600000pt;}
.y4a_c00177{bottom:394.240000pt;}
.y49_c00177{bottom:428.800000pt;}
.y45_c00177{bottom:429.440000pt;}
.y48_c00177{bottom:430.720000pt;}
.y46_c00177{bottom:431.360000pt;}
.y47_c00177{bottom:432.000000pt;}
.y44_c00177{bottom:465.920000pt;}
.y41_c00177{bottom:466.560000pt;}
.y43_c00177{bottom:467.200000pt;}
.y42_c00177{bottom:469.120000pt;}
.y40_c00177{bottom:469.760000pt;}
.y3e_c00177{bottom:504.320000pt;}
.y3c_c00177{bottom:504.960000pt;}
.y3f_c00177{bottom:505.600000pt;}
.y3d_c00177{bottom:506.880000pt;}
.y3b_c00177{bottom:507.520000pt;}
.y3a_c00177{bottom:508.160000pt;}
.y38_c00177{bottom:542.720000pt;}
.y37_c00177{bottom:543.360000pt;}
.y39_c00177{bottom:545.280000pt;}
.y35_c00177{bottom:545.920000pt;}
.y36_c00177{bottom:546.560000pt;}
.y30_c00177{bottom:581.120000pt;}
.y34_c00177{bottom:583.040000pt;}
.y32_c00177{bottom:583.680000pt;}
.y31_c00177{bottom:584.320000pt;}
.y33_c00177{bottom:584.960000pt;}
.y2b_c00177{bottom:619.520000pt;}
.y2d_c00177{bottom:620.160000pt;}
.y2f_c00177{bottom:620.800000pt;}
.y2e_c00177{bottom:622.080000pt;}
.y2c_c00177{bottom:622.720000pt;}
.y29_c00177{bottom:658.560000pt;}
.y2a_c00177{bottom:659.200000pt;}
.y27_c00177{bottom:660.480000pt;}
.y28_c00177{bottom:661.120000pt;}
.y26_c00177{bottom:669.440000pt;}
.y21_c00177{bottom:696.320000pt;}
.y22_c00177{bottom:696.960000pt;}
.y23_c00177{bottom:697.600000pt;}
.y25_c00177{bottom:698.880000pt;}
.y24_c00177{bottom:700.160000pt;}
.y1f_c00177{bottom:734.720000pt;}
.y20_c00177{bottom:735.360000pt;}
.y1d_c00177{bottom:737.280000pt;}
.y1e_c00177{bottom:737.920000pt;}
.y19_c00177{bottom:772.480000pt;}
.y1a_c00177{bottom:773.760000pt;}
.y18_c00177{bottom:775.040000pt;}
.y1c_c00177{bottom:775.680000pt;}
.y1b_c00177{bottom:776.320000pt;}
.y16_c00177{bottom:812.160000pt;}
.y17_c00177{bottom:812.800000pt;}
.y14_c00177{bottom:813.440000pt;}
.y15_c00177{bottom:814.720000pt;}
.y13_c00177{bottom:848.640000pt;}
.y10_c00177{bottom:849.920000pt;}
.y11_c00177{bottom:850.560000pt;}
.ye_c00177{bottom:851.200000pt;}
.y12_c00177{bottom:851.840000pt;}
.yf_c00177{bottom:852.480000pt;}
.y7_c00177{bottom:887.040000pt;}
.y8_c00177{bottom:887.680000pt;}
.y9_c00177{bottom:888.320000pt;}
.yd_c00177{bottom:888.960000pt;}
.yc_c00177{bottom:889.600000pt;}
.yb_c00177{bottom:890.240000pt;}
.ya_c00177{bottom:890.880000pt;}
.y3_c00177{bottom:925.440000pt;}
.y2_c00177{bottom:926.080000pt;}
.y5_c00177{bottom:926.720000pt;}
.y6_c00177{bottom:927.360000pt;}
.y4_c00177{bottom:928.640000pt;}
.y1_c00177{bottom:974.080000pt;}
.h10_c00177{height:27.645000pt;}
.hd_c00177{height:29.948750pt;}
.hc_c00177{height:32.252500pt;}
.h3_c00177{height:34.556250pt;}
.h5_c00177{height:36.860000pt;}
.hf_c00177{height:39.163750pt;}
.h8_c00177{height:41.467500pt;}
.h4_c00177{height:43.771250pt;}
.h7_c00177{height:46.075000pt;}
.hb_c00177{height:48.378750pt;}
.ha_c00177{height:50.682500pt;}
.h9_c00177{height:52.986250pt;}
.h6_c00177{height:55.290000pt;}
.he_c00177{height:57.593750pt;}
.h2_c00177{height:59.897500pt;}
.h11_c00177{height:62.201250pt;}
.h12_c00177{height:66.808750pt;}
.h1_c00177{height:1021.333333pt;}
.h0_c00177{height:1021.440000pt;}
.w0_c00177{width:704.640000pt;}
.w1_c00177{width:704.666667pt;}
.x0_c00177{left:0.000000pt;}
.x13_c00177{left:80.000000pt;}
.x2_c00177{left:81.280000pt;}
.x3_c00177{left:109.440000pt;}
.x24_c00177{left:117.120000pt;}
.x14_c00177{left:118.400000pt;}
.xb_c00177{left:126.720000pt;}
.x34_c00177{left:136.960000pt;}
.x29_c00177{left:138.240000pt;}
.x48_c00177{left:145.280000pt;}
.x15_c00177{left:146.560000pt;}
.x5f_c00177{left:155.520000pt;}
.x39_c00177{left:165.760000pt;}
.x40_c00177{left:174.720000pt;}
.x31_c00177{left:176.000000pt;}
.x35_c00177{left:184.320000pt;}
.x1e_c00177{left:194.560000pt;}
.x4_c00177{left:195.840000pt;}
.x30_c00177{left:203.520000pt;}
.x41_c00177{left:213.120000pt;}
.x32_c00177{left:214.400000pt;}
.x1b_c00177{left:222.720000pt;}
.x1f_c00177{left:232.960000pt;}
.x49_c00177{left:241.920000pt;}
.xc_c00177{left:243.840000pt;}
.x43_c00177{left:251.520000pt;}
.x5_c00177{left:252.800000pt;}
.x5a_c00177{left:260.480000pt;}
.x20_c00177{left:261.760000pt;}
.x3d_c00177{left:271.360000pt;}
.x6_c00177{left:272.640000pt;}
.x16_c00177{left:280.960000pt;}
.x52_c00177{left:289.920000pt;}
.x4b_c00177{left:298.240000pt;}
.x4f_c00177{left:299.520000pt;}
.xd_c00177{left:300.800000pt;}
.x44_c00177{left:309.120000pt;}
.x7_c00177{left:310.400000pt;}
.x21_c00177{left:319.360000pt;}
.x60_c00177{left:326.400000pt;}
.x2a_c00177{left:328.960000pt;}
.x17_c00177{left:330.240000pt;}
.x4a_c00177{left:337.280000pt;}
.x33_c00177{left:338.560000pt;}
.x2b_c00177{left:348.160000pt;}
.x25_c00177{left:349.440000pt;}
.x3e_c00177{left:357.120000pt;}
.xe_c00177{left:359.040000pt;}
.x4c_c00177{left:366.720000pt;}
.x50_c00177{left:368.640000pt;}
.x3a_c00177{left:375.680000pt;}
.x2c_c00177{left:376.960000pt;}
.x58_c00177{left:385.280000pt;}
.x3f_c00177{left:394.880000pt;}
.x18_c00177{left:397.440000pt;}
.x8_c00177{left:407.040000pt;}
.x53_c00177{left:414.720000pt;}
.x22_c00177{left:416.640000pt;}
.xf_c00177{left:426.240000pt;}
.x19_c00177{left:434.560000pt;}
.x54_c00177{left:442.880000pt;}
.x26_c00177{left:444.160000pt;}
.x57_c00177{left:451.840000pt;}
.x36_c00177{left:453.120000pt;}
.x10_c00177{left:454.400000pt;}
.x61_c00177{left:471.040000pt;}
.x2d_c00177{left:472.960000pt;}
.x3b_c00177{left:481.920000pt;}
.x42_c00177{left:491.520000pt;}
.x62_c00177{left:499.840000pt;}
.x51_c00177{left:501.120000pt;}
.x27_c00177{left:502.400000pt;}
.x55_c00177{left:509.440000pt;}
.x45_c00177{left:510.720000pt;}
.x37_c00177{left:512.000000pt;}
.x4d_c00177{left:520.320000pt;}
.x2e_c00177{left:529.920000pt;}
.x1c_c00177{left:531.200000pt;}
.x59_c00177{left:537.600000pt;}
.x46_c00177{left:539.520000pt;}
.x11_c00177{left:540.800000pt;}
.x9_c00177{left:549.120000pt;}
.x23_c00177{left:551.040000pt;}
.x5b_c00177{left:557.440000pt;}
.x2f_c00177{left:558.720000pt;}
.x5e_c00177{left:566.400000pt;}
.x3c_c00177{left:567.680000pt;}
.x12_c00177{left:568.960000pt;}
.x1d_c00177{left:577.920000pt;}
.x5c_c00177{left:585.600000pt;}
.x38_c00177{left:587.520000pt;}
.x4e_c00177{left:595.840000pt;}
.x56_c00177{left:605.440000pt;}
.x1a_c00177{left:608.640000pt;}
.x1_c00177{left:612.480000pt;}
.x5d_c00177{left:613.760000pt;}
.x47_c00177{left:615.680000pt;}
.xa_c00177{left:616.960000pt;}
.x28_c00177{left:618.240000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_839134e8ebb4c4c9acb77e62.woff2')format("woff");}.ff1_c00178{font-family:ff1_c00178;line-height:1.109863;font-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_c00178{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m29_c00178{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m52_c00178{transform:matrix(0.248225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248225,0.000000,0.000000,0.250000,0,0);}
.m46_c00178{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);}
.m55_c00178{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);}
.m45_c00178{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m58_c00178{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);}
.m3c_c00178{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m8_c00178{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00178{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m31_c00178{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00178{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m7_c00178{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m9_c00178{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m23_c00178{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m12_c00178{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m0_c00178{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m17_c00178{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00178{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m39_c00178{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00178{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m10_c00178{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m34_c00178{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);}
.m37_c00178{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);}
.m42_c00178{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m59_c00178{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m2_c00178{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);}
.m41_c00178{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m38_c00178{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);}
.m35_c00178{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00178{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m28_c00178{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);}
.m3a_c00178{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00178{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.mf_c00178{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);}
.m4f_c00178{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);}
.m15_c00178{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);}
.m26_c00178{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m19_c00178{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);}
.m3f_c00178{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00178{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);}
.m4_c00178{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);}
.m2d_c00178{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);}
.m25_c00178{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m13_c00178{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m6_c00178{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00178{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);}
.m49_c00178{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00178{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m11_c00178{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.md_c00178{transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);}
.m1_c00178{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);}
.m3d_c00178{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m40_c00178{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m30_c00178{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00178{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00178{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m27_c00178{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m16_c00178{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);}
.m4b_c00178{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m53_c00178{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.mb_c00178{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m44_c00178{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m21_c00178{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);}
.m1c_c00178{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m43_c00178{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.mc_c00178{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m50_c00178{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);}
.m54_c00178{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00178{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00178{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00178{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00178{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);}
.m36_c00178{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);}
.m56_c00178{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.ma_c00178{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m5_c00178{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00178{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);}
.m20_c00178{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m57_c00178{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m22_c00178{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);}
.m51_c00178{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m3_c00178{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m48_c00178{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00178{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);}
.m24_c00178{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m14_c00178{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m18_c00178{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00178{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);}
.m2b_c00178{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);}
.m47_c00178{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00178{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00178{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m32_c00178{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00178{transform:matrix(1.077500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.077500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.077500,0.000000,0.000000,0.250000,0,0);}
.m33_c00178{transform:matrix(1.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.297500,0.000000,0.000000,0.250000,0,0);}
.v1_c00178{vertical-align:-2.880000px;}
.v0_c00178{vertical-align:0.000000px;}
.ls2_c00178{letter-spacing:0.000000px;}
.ls0_c00178{letter-spacing:20.721360px;}
.ls1_c00178{letter-spacing:22.383360px;}
.sc__c00178{text-shadow:none;}
.sc0_c00178{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00178{-webkit-text-stroke:0px transparent;}
.sc0_c00178{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00178{word-spacing:0.000000px;}
.ws0_c00178{word-spacing:1.616247px;}
.fc0_c00178{color:transparent;}
.fsd_c00178{font-size:23.040000px;}
.fs9_c00178{font-size:34.560000px;}
.fs4_c00178{font-size:37.440000px;}
.fs8_c00178{font-size:40.320000px;}
.fsb_c00178{font-size:43.200000px;}
.fsf_c00178{font-size:46.080000px;}
.fs1_c00178{font-size:48.960000px;}
.fs5_c00178{font-size:51.840000px;}
.fs3_c00178{font-size:54.720000px;}
.fsc_c00178{font-size:57.600000px;}
.fs7_c00178{font-size:60.480000px;}
.fs2_c00178{font-size:63.360000px;}
.fsa_c00178{font-size:66.240000px;}
.fs6_c00178{font-size:69.120000px;}
.fse_c00178{font-size:72.000000px;}
.fs0_c00178{font-size:74.880000px;}
.fs10_c00178{font-size:77.760000px;}
.y0_c00178{bottom:0.000000px;}
.y73_c00178{bottom:74.160000px;}
.y74_c00178{bottom:74.880000px;}
.y70_c00178{bottom:77.040000px;}
.y72_c00178{bottom:77.760000px;}
.y71_c00178{bottom:78.480000px;}
.y75_c00178{bottom:79.200000px;}
.y6f_c00178{bottom:118.080000px;}
.y6d_c00178{bottom:119.520000px;}
.y6c_c00178{bottom:120.240000px;}
.y6e_c00178{bottom:120.960000px;}
.y6b_c00178{bottom:121.680000px;}
.y69_c00178{bottom:160.560000px;}
.y66_c00178{bottom:161.280000px;}
.y6a_c00178{bottom:162.000000px;}
.y67_c00178{bottom:162.720000px;}
.y68_c00178{bottom:163.440000px;}
.y65_c00178{bottom:164.880000px;}
.y64_c00178{bottom:165.600000px;}
.y60_c00178{bottom:203.760000px;}
.y61_c00178{bottom:204.480000px;}
.y63_c00178{bottom:205.200000px;}
.y5f_c00178{bottom:205.920000px;}
.y5e_c00178{bottom:206.640000px;}
.y5d_c00178{bottom:207.360000px;}
.y62_c00178{bottom:208.080000px;}
.y5b_c00178{bottom:246.960000px;}
.y5c_c00178{bottom:249.120000px;}
.y59_c00178{bottom:249.840000px;}
.y5a_c00178{bottom:250.560000px;}
.y56_c00178{bottom:290.160000px;}
.y57_c00178{bottom:290.880000px;}
.y55_c00178{bottom:292.320000px;}
.y58_c00178{bottom:293.040000px;}
.y54_c00178{bottom:332.640000px;}
.y50_c00178{bottom:333.360000px;}
.y51_c00178{bottom:334.080000px;}
.y52_c00178{bottom:334.800000px;}
.y53_c00178{bottom:335.520000px;}
.y4f_c00178{bottom:336.240000px;}
.y4e_c00178{bottom:336.960000px;}
.y4c_c00178{bottom:375.840000px;}
.y4d_c00178{bottom:376.560000px;}
.y49_c00178{bottom:377.280000px;}
.y4a_c00178{bottom:378.000000px;}
.y4b_c00178{bottom:378.720000px;}
.y48_c00178{bottom:379.440000px;}
.y44_c00178{bottom:418.320000px;}
.y45_c00178{bottom:419.040000px;}
.y47_c00178{bottom:420.480000px;}
.y46_c00178{bottom:421.200000px;}
.y40_c00178{bottom:462.240000px;}
.y43_c00178{bottom:462.960000px;}
.y41_c00178{bottom:463.680000px;}
.y42_c00178{bottom:464.400000px;}
.y3f_c00178{bottom:465.120000px;}
.y3d_c00178{bottom:504.720000px;}
.y3b_c00178{bottom:505.440000px;}
.y3e_c00178{bottom:506.880000px;}
.y3c_c00178{bottom:507.600000px;}
.y3a_c00178{bottom:508.320000px;}
.y37_c00178{bottom:547.920000px;}
.y39_c00178{bottom:550.080000px;}
.y38_c00178{bottom:550.800000px;}
.y36_c00178{bottom:551.520000px;}
.y32_c00178{bottom:591.840000px;}
.y35_c00178{bottom:592.560000px;}
.y34_c00178{bottom:594.000000px;}
.y33_c00178{bottom:594.720000px;}
.y30_c00178{bottom:633.600000px;}
.y31_c00178{bottom:634.320000px;}
.y2f_c00178{bottom:636.480000px;}
.y2e_c00178{bottom:637.200000px;}
.y2c_c00178{bottom:676.080000px;}
.y2d_c00178{bottom:676.800000px;}
.y2a_c00178{bottom:678.240000px;}
.y28_c00178{bottom:678.960000px;}
.y29_c00178{bottom:679.680000px;}
.y2b_c00178{bottom:680.400000px;}
.y27_c00178{bottom:681.120000px;}
.y26_c00178{bottom:720.720000px;}
.y23_c00178{bottom:721.440000px;}
.y25_c00178{bottom:722.880000px;}
.y24_c00178{bottom:723.600000px;}
.y1e_c00178{bottom:763.200000px;}
.y21_c00178{bottom:763.920000px;}
.y20_c00178{bottom:765.360000px;}
.y1f_c00178{bottom:766.080000px;}
.y22_c00178{bottom:766.800000px;}
.y1a_c00178{bottom:806.400000px;}
.y1b_c00178{bottom:807.120000px;}
.y1d_c00178{bottom:808.560000px;}
.y19_c00178{bottom:809.280000px;}
.y1c_c00178{bottom:810.000000px;}
.y16_c00178{bottom:849.600000px;}
.y18_c00178{bottom:851.040000px;}
.y17_c00178{bottom:852.480000px;}
.y15_c00178{bottom:853.200000px;}
.y14_c00178{bottom:902.160000px;}
.y12_c00178{bottom:904.320000px;}
.y13_c00178{bottom:905.760000px;}
.yc_c00178{bottom:944.640000px;}
.y11_c00178{bottom:945.360000px;}
.y10_c00178{bottom:946.080000px;}
.yd_c00178{bottom:946.800000px;}
.yf_c00178{bottom:948.960000px;}
.ye_c00178{bottom:949.680000px;}
.yb_c00178{bottom:988.560000px;}
.y9_c00178{bottom:989.280000px;}
.ya_c00178{bottom:990.000000px;}
.y6_c00178{bottom:990.720000px;}
.y8_c00178{bottom:991.440000px;}
.y7_c00178{bottom:992.160000px;}
.y2_c00178{bottom:1031.760000px;}
.y3_c00178{bottom:1032.480000px;}
.y5_c00178{bottom:1034.640000px;}
.y4_c00178{bottom:1035.360000px;}
.y1_c00178{bottom:1094.400000px;}
.hf_c00178{height:20.733750px;}
.hb_c00178{height:31.100625px;}
.h6_c00178{height:33.692344px;}
.h13_c00178{height:35.995781px;}
.ha_c00178{height:36.284062px;}
.hd_c00178{height:38.875781px;}
.h11_c00178{height:41.467500px;}
.h3_c00178{height:44.059219px;}
.h7_c00178{height:46.650937px;}
.h5_c00178{height:49.242656px;}
.he_c00178{height:51.834375px;}
.h9_c00178{height:54.426094px;}
.h4_c00178{height:57.017812px;}
.hc_c00178{height:59.609531px;}
.h8_c00178{height:62.201250px;}
.h10_c00178{height:64.792969px;}
.h2_c00178{height:67.384687px;}
.h12_c00178{height:69.976406px;}
.h1_c00178{height:1149.750000px;}
.h0_c00178{height:1149.840000px;}
.w0_c00178{width:793.440000px;}
.w1_c00178{width:793.500000px;}
.x0_c00178{left:0.000000px;}
.x15_c00178{left:92.880285px;}
.x2_c00178{left:94.320000px;}
.xa_c00178{left:95.760000px;}
.x3_c00178{left:115.200000px;}
.x22_c00178{left:124.560000px;}
.xb_c00178{left:126.000000px;}
.x37_c00178{left:135.360000px;}
.x31_c00178{left:145.440000px;}
.x44_c00178{left:146.880000px;}
.x64_c00178{left:155.520000px;}
.xc_c00178{left:156.960000px;}
.x38_c00178{left:168.480000px;}
.x6c_c00178{left:177.120000px;}
.x28_c00178{left:178.560000px;}
.x32_c00178{left:180.000000px;}
.x4_c00178{left:188.640000px;}
.x41_c00178{left:199.440000px;}
.x16_c00178{left:201.600000px;}
.x29_c00178{left:212.400000px;}
.x4b_c00178{left:221.040000px;}
.x2a_c00178{left:223.920000px;}
.x45_c00178{left:231.840000px;}
.x20_c00178{left:234.000000px;}
.x3f_c00178{left:241.920000px;}
.xd_c00178{left:244.800000px;}
.x5f_c00178{left:252.000000px;}
.x2b_c00178{left:263.520000px;}
.x1e_c00178{left:265.680000px;}
.x39_c00178{left:275.760000px;}
.xe_c00178{left:277.920000px;}
.x53_c00178{left:285.840000px;}
.x17_c00178{left:287.280000px;}
.x5_c00178{left:288.720000px;}
.x50_c00178{left:295.920000px;}
.x42_c00178{left:297.360000px;}
.x3c_c00178{left:308.880000px;}
.x18_c00178{left:319.680000px;}
.x6d_c00178{left:327.600000px;}
.x65_c00178{left:329.040000px;}
.x23_c00178{left:330.480000px;}
.x3d_c00178{left:339.840000px;}
.xf_c00178{left:342.000000px;}
.x5a_c00178{left:349.920000px;}
.x54_c00178{left:351.360000px;}
.x2c_c00178{left:362.880000px;}
.x46_c00178{left:372.240000px;}
.x24_c00178{left:373.680000px;}
.x60_c00178{left:382.320000px;}
.x55_c00178{left:384.480000px;}
.x10_c00178{left:385.920000px;}
.x5b_c00178{left:393.120000px;}
.x19_c00178{left:406.800000px;}
.x4c_c00178{left:414.720000px;}
.x33_c00178{left:416.160000px;}
.x3a_c00178{left:426.960000px;}
.x11_c00178{left:438.480000px;}
.x58_c00178{left:447.120000px;}
.x1a_c00178{left:449.280000px;}
.x68_c00178{left:457.200000px;}
.x47_c00178{left:458.640000px;}
.x6_c00178{left:460.800000px;}
.x25_c00178{left:469.440000px;}
.x61_c00178{left:479.520000px;}
.x34_c00178{left:480.960000px;}
.x7_c00178{left:483.120000px;}
.x1f_c00178{left:491.040000px;}
.x48_c00178{left:492.480000px;}
.x5c_c00178{left:501.120000px;}
.x2d_c00178{left:503.280000px;}
.x51_c00178{left:511.920000px;}
.x26_c00178{left:513.360000px;}
.x3b_c00178{left:524.880000px;}
.x43_c00178{left:534.240000px;}
.x1b_c00178{left:535.680000px;}
.x62_c00178{left:544.320000px;}
.x12_c00178{left:546.480000px;}
.x49_c00178{left:555.120000px;}
.x69_c00178{left:564.480000px;}
.x52_c00178{left:565.920000px;}
.x1c_c00178{left:568.080000px;}
.x8_c00178{left:569.520000px;}
.x56_c00178{left:575.280000px;}
.x2e_c00178{left:578.160000px;}
.x3e_c00178{left:588.240000px;}
.x21_c00178{left:590.400000px;}
.x35_c00178{left:598.320000px;}
.x13_c00178{left:601.200000px;}
.x5d_c00178{left:608.400000px;}
.x27_c00178{left:610.560000px;}
.x2f_c00178{left:631.440000px;}
.x9_c00178{left:634.320000px;}
.x6a_c00178{left:640.080000px;}
.x63_c00178{left:641.520000px;}
.x66_c00178{left:650.160000px;}
.x4d_c00178{left:651.600000px;}
.x40_c00178{left:653.040000px;}
.x14_c00178{left:654.480000px;}
.x59_c00178{left:660.960000px;}
.x57_c00178{left:662.400000px;}
.x6b_c00178{left:671.760000px;}
.x36_c00178{left:674.640000px;}
.x1d_c00178{left:676.080000px;}
.x5e_c00178{left:682.560000px;}
.x4a_c00178{left:684.000000px;}
.x67_c00178{left:693.360000px;}
.x4e_c00178{left:694.800000px;}
.x30_c00178{left:696.240000px;}
.x1_c00178{left:707.040000px;}
.x4f_c00178{left:717.120000px;}
@media print{
.v1_c00178{vertical-align:-2.560000pt;}
.v0_c00178{vertical-align:0.000000pt;}
.ls2_c00178{letter-spacing:0.000000pt;}
.ls0_c00178{letter-spacing:18.418987pt;}
.ls1_c00178{letter-spacing:19.896320pt;}
.ws1_c00178{word-spacing:0.000000pt;}
.ws0_c00178{word-spacing:1.436664pt;}
.fsd_c00178{font-size:20.480000pt;}
.fs9_c00178{font-size:30.720000pt;}
.fs4_c00178{font-size:33.280000pt;}
.fs8_c00178{font-size:35.840000pt;}
.fsb_c00178{font-size:38.400000pt;}
.fsf_c00178{font-size:40.960000pt;}
.fs1_c00178{font-size:43.520000pt;}
.fs5_c00178{font-size:46.080000pt;}
.fs3_c00178{font-size:48.640000pt;}
.fsc_c00178{font-size:51.200000pt;}
.fs7_c00178{font-size:53.760000pt;}
.fs2_c00178{font-size:56.320000pt;}
.fsa_c00178{font-size:58.880000pt;}
.fs6_c00178{font-size:61.440000pt;}
.fse_c00178{font-size:64.000000pt;}
.fs0_c00178{font-size:66.560000pt;}
.fs10_c00178{font-size:69.120000pt;}
.y0_c00178{bottom:0.000000pt;}
.y73_c00178{bottom:65.920000pt;}
.y74_c00178{bottom:66.560000pt;}
.y70_c00178{bottom:68.480000pt;}
.y72_c00178{bottom:69.120000pt;}
.y71_c00178{bottom:69.760000pt;}
.y75_c00178{bottom:70.400000pt;}
.y6f_c00178{bottom:104.960000pt;}
.y6d_c00178{bottom:106.240000pt;}
.y6c_c00178{bottom:106.880000pt;}
.y6e_c00178{bottom:107.520000pt;}
.y6b_c00178{bottom:108.160000pt;}
.y69_c00178{bottom:142.720000pt;}
.y66_c00178{bottom:143.360000pt;}
.y6a_c00178{bottom:144.000000pt;}
.y67_c00178{bottom:144.640000pt;}
.y68_c00178{bottom:145.280000pt;}
.y65_c00178{bottom:146.560000pt;}
.y64_c00178{bottom:147.200000pt;}
.y60_c00178{bottom:181.120000pt;}
.y61_c00178{bottom:181.760000pt;}
.y63_c00178{bottom:182.400000pt;}
.y5f_c00178{bottom:183.040000pt;}
.y5e_c00178{bottom:183.680000pt;}
.y5d_c00178{bottom:184.320000pt;}
.y62_c00178{bottom:184.960000pt;}
.y5b_c00178{bottom:219.520000pt;}
.y5c_c00178{bottom:221.440000pt;}
.y59_c00178{bottom:222.080000pt;}
.y5a_c00178{bottom:222.720000pt;}
.y56_c00178{bottom:257.920000pt;}
.y57_c00178{bottom:258.560000pt;}
.y55_c00178{bottom:259.840000pt;}
.y58_c00178{bottom:260.480000pt;}
.y54_c00178{bottom:295.680000pt;}
.y50_c00178{bottom:296.320000pt;}
.y51_c00178{bottom:296.960000pt;}
.y52_c00178{bottom:297.600000pt;}
.y53_c00178{bottom:298.240000pt;}
.y4f_c00178{bottom:298.880000pt;}
.y4e_c00178{bottom:299.520000pt;}
.y4c_c00178{bottom:334.080000pt;}
.y4d_c00178{bottom:334.720000pt;}
.y49_c00178{bottom:335.360000pt;}
.y4a_c00178{bottom:336.000000pt;}
.y4b_c00178{bottom:336.640000pt;}
.y48_c00178{bottom:337.280000pt;}
.y44_c00178{bottom:371.840000pt;}
.y45_c00178{bottom:372.480000pt;}
.y47_c00178{bottom:373.760000pt;}
.y46_c00178{bottom:374.400000pt;}
.y40_c00178{bottom:410.880000pt;}
.y43_c00178{bottom:411.520000pt;}
.y41_c00178{bottom:412.160000pt;}
.y42_c00178{bottom:412.800000pt;}
.y3f_c00178{bottom:413.440000pt;}
.y3d_c00178{bottom:448.640000pt;}
.y3b_c00178{bottom:449.280000pt;}
.y3e_c00178{bottom:450.560000pt;}
.y3c_c00178{bottom:451.200000pt;}
.y3a_c00178{bottom:451.840000pt;}
.y37_c00178{bottom:487.040000pt;}
.y39_c00178{bottom:488.960000pt;}
.y38_c00178{bottom:489.600000pt;}
.y36_c00178{bottom:490.240000pt;}
.y32_c00178{bottom:526.080000pt;}
.y35_c00178{bottom:526.720000pt;}
.y34_c00178{bottom:528.000000pt;}
.y33_c00178{bottom:528.640000pt;}
.y30_c00178{bottom:563.200000pt;}
.y31_c00178{bottom:563.840000pt;}
.y2f_c00178{bottom:565.760000pt;}
.y2e_c00178{bottom:566.400000pt;}
.y2c_c00178{bottom:600.960000pt;}
.y2d_c00178{bottom:601.600000pt;}
.y2a_c00178{bottom:602.880000pt;}
.y28_c00178{bottom:603.520000pt;}
.y29_c00178{bottom:604.160000pt;}
.y2b_c00178{bottom:604.800000pt;}
.y27_c00178{bottom:605.440000pt;}
.y26_c00178{bottom:640.640000pt;}
.y23_c00178{bottom:641.280000pt;}
.y25_c00178{bottom:642.560000pt;}
.y24_c00178{bottom:643.200000pt;}
.y1e_c00178{bottom:678.400000pt;}
.y21_c00178{bottom:679.040000pt;}
.y20_c00178{bottom:680.320000pt;}
.y1f_c00178{bottom:680.960000pt;}
.y22_c00178{bottom:681.600000pt;}
.y1a_c00178{bottom:716.800000pt;}
.y1b_c00178{bottom:717.440000pt;}
.y1d_c00178{bottom:718.720000pt;}
.y19_c00178{bottom:719.360000pt;}
.y1c_c00178{bottom:720.000000pt;}
.y16_c00178{bottom:755.200000pt;}
.y18_c00178{bottom:756.480000pt;}
.y17_c00178{bottom:757.760000pt;}
.y15_c00178{bottom:758.400000pt;}
.y14_c00178{bottom:801.920000pt;}
.y12_c00178{bottom:803.840000pt;}
.y13_c00178{bottom:805.120000pt;}
.yc_c00178{bottom:839.680000pt;}
.y11_c00178{bottom:840.320000pt;}
.y10_c00178{bottom:840.960000pt;}
.yd_c00178{bottom:841.600000pt;}
.yf_c00178{bottom:843.520000pt;}
.ye_c00178{bottom:844.160000pt;}
.yb_c00178{bottom:878.720000pt;}
.y9_c00178{bottom:879.360000pt;}
.ya_c00178{bottom:880.000000pt;}
.y6_c00178{bottom:880.640000pt;}
.y8_c00178{bottom:881.280000pt;}
.y7_c00178{bottom:881.920000pt;}
.y2_c00178{bottom:917.120000pt;}
.y3_c00178{bottom:917.760000pt;}
.y5_c00178{bottom:919.680000pt;}
.y4_c00178{bottom:920.320000pt;}
.y1_c00178{bottom:972.800000pt;}
.hf_c00178{height:18.430000pt;}
.hb_c00178{height:27.645000pt;}
.h6_c00178{height:29.948750pt;}
.h13_c00178{height:31.996250pt;}
.ha_c00178{height:32.252500pt;}
.hd_c00178{height:34.556250pt;}
.h11_c00178{height:36.860000pt;}
.h3_c00178{height:39.163750pt;}
.h7_c00178{height:41.467500pt;}
.h5_c00178{height:43.771250pt;}
.he_c00178{height:46.075000pt;}
.h9_c00178{height:48.378750pt;}
.h4_c00178{height:50.682500pt;}
.hc_c00178{height:52.986250pt;}
.h8_c00178{height:55.290000pt;}
.h10_c00178{height:57.593750pt;}
.h2_c00178{height:59.897500pt;}
.h12_c00178{height:62.201250pt;}
.h1_c00178{height:1022.000000pt;}
.h0_c00178{height:1022.080000pt;}
.w0_c00178{width:705.280000pt;}
.w1_c00178{width:705.333333pt;}
.x0_c00178{left:0.000000pt;}
.x15_c00178{left:82.560253pt;}
.x2_c00178{left:83.840000pt;}
.xa_c00178{left:85.120000pt;}
.x3_c00178{left:102.400000pt;}
.x22_c00178{left:110.720000pt;}
.xb_c00178{left:112.000000pt;}
.x37_c00178{left:120.320000pt;}
.x31_c00178{left:129.280000pt;}
.x44_c00178{left:130.560000pt;}
.x64_c00178{left:138.240000pt;}
.xc_c00178{left:139.520000pt;}
.x38_c00178{left:149.760000pt;}
.x6c_c00178{left:157.440000pt;}
.x28_c00178{left:158.720000pt;}
.x32_c00178{left:160.000000pt;}
.x4_c00178{left:167.680000pt;}
.x41_c00178{left:177.280000pt;}
.x16_c00178{left:179.200000pt;}
.x29_c00178{left:188.800000pt;}
.x4b_c00178{left:196.480000pt;}
.x2a_c00178{left:199.040000pt;}
.x45_c00178{left:206.080000pt;}
.x20_c00178{left:208.000000pt;}
.x3f_c00178{left:215.040000pt;}
.xd_c00178{left:217.600000pt;}
.x5f_c00178{left:224.000000pt;}
.x2b_c00178{left:234.240000pt;}
.x1e_c00178{left:236.160000pt;}
.x39_c00178{left:245.120000pt;}
.xe_c00178{left:247.040000pt;}
.x53_c00178{left:254.080000pt;}
.x17_c00178{left:255.360000pt;}
.x5_c00178{left:256.640000pt;}
.x50_c00178{left:263.040000pt;}
.x42_c00178{left:264.320000pt;}
.x3c_c00178{left:274.560000pt;}
.x18_c00178{left:284.160000pt;}
.x6d_c00178{left:291.200000pt;}
.x65_c00178{left:292.480000pt;}
.x23_c00178{left:293.760000pt;}
.x3d_c00178{left:302.080000pt;}
.xf_c00178{left:304.000000pt;}
.x5a_c00178{left:311.040000pt;}
.x54_c00178{left:312.320000pt;}
.x2c_c00178{left:322.560000pt;}
.x46_c00178{left:330.880000pt;}
.x24_c00178{left:332.160000pt;}
.x60_c00178{left:339.840000pt;}
.x55_c00178{left:341.760000pt;}
.x10_c00178{left:343.040000pt;}
.x5b_c00178{left:349.440000pt;}
.x19_c00178{left:361.600000pt;}
.x4c_c00178{left:368.640000pt;}
.x33_c00178{left:369.920000pt;}
.x3a_c00178{left:379.520000pt;}
.x11_c00178{left:389.760000pt;}
.x58_c00178{left:397.440000pt;}
.x1a_c00178{left:399.360000pt;}
.x68_c00178{left:406.400000pt;}
.x47_c00178{left:407.680000pt;}
.x6_c00178{left:409.600000pt;}
.x25_c00178{left:417.280000pt;}
.x61_c00178{left:426.240000pt;}
.x34_c00178{left:427.520000pt;}
.x7_c00178{left:429.440000pt;}
.x1f_c00178{left:436.480000pt;}
.x48_c00178{left:437.760000pt;}
.x5c_c00178{left:445.440000pt;}
.x2d_c00178{left:447.360000pt;}
.x51_c00178{left:455.040000pt;}
.x26_c00178{left:456.320000pt;}
.x3b_c00178{left:466.560000pt;}
.x43_c00178{left:474.880000pt;}
.x1b_c00178{left:476.160000pt;}
.x62_c00178{left:483.840000pt;}
.x12_c00178{left:485.760000pt;}
.x49_c00178{left:493.440000pt;}
.x69_c00178{left:501.760000pt;}
.x52_c00178{left:503.040000pt;}
.x1c_c00178{left:504.960000pt;}
.x8_c00178{left:506.240000pt;}
.x56_c00178{left:511.360000pt;}
.x2e_c00178{left:513.920000pt;}
.x3e_c00178{left:522.880000pt;}
.x21_c00178{left:524.800000pt;}
.x35_c00178{left:531.840000pt;}
.x13_c00178{left:534.400000pt;}
.x5d_c00178{left:540.800000pt;}
.x27_c00178{left:542.720000pt;}
.x2f_c00178{left:561.280000pt;}
.x9_c00178{left:563.840000pt;}
.x6a_c00178{left:568.960000pt;}
.x63_c00178{left:570.240000pt;}
.x66_c00178{left:577.920000pt;}
.x4d_c00178{left:579.200000pt;}
.x40_c00178{left:580.480000pt;}
.x14_c00178{left:581.760000pt;}
.x59_c00178{left:587.520000pt;}
.x57_c00178{left:588.800000pt;}
.x6b_c00178{left:597.120000pt;}
.x36_c00178{left:599.680000pt;}
.x1d_c00178{left:600.960000pt;}
.x5e_c00178{left:606.720000pt;}
.x4a_c00178{left:608.000000pt;}
.x67_c00178{left:616.320000pt;}
.x4e_c00178{left:617.600000pt;}
.x30_c00178{left:618.880000pt;}
.x1_c00178{left:628.480000pt;}
.x4f_c00178{left:637.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ceb678d6ae9e90c34985c28e.woff2')format("woff");}.ff1_c00179{font-family:ff1_c00179;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5b_c00179{transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);}
.m52_c00179{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);}
.m58_c00179{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);}
.m3e_c00179{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00179{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);}
.m51_c00179{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);}
.m53_c00179{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m29_c00179{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);}
.m5f_c00179{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00179{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_c00179{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m6_c00179{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00179{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m36_c00179{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.md_c00179{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m61_c00179{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m34_c00179{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mb_c00179{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m56_c00179{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m11_c00179{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00179{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.me_c00179{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m33_c00179{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1_c00179{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);}
.m49_c00179{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m8_c00179{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00179{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);}
.m35_c00179{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.ma_c00179{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);}
.m0_c00179{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00179{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m21_c00179{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m48_c00179{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);}
.m16_c00179{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);}
.m5a_c00179{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m23_c00179{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m13_c00179{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);}
.m26_c00179{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.mc_c00179{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);}
.m14_c00179{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m43_c00179{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);}
.m63_c00179{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);}
.m38_c00179{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);}
.m54_c00179{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);}
.m4c_c00179{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00179{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00179{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00179{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);}
.m4b_c00179{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m22_c00179{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);}
.m57_c00179{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m32_c00179{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);}
.m15_c00179{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);}
.m20_c00179{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m39_c00179{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m46_c00179{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.mf_c00179{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m18_c00179{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);}
.m5d_c00179{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m19_c00179{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m47_c00179{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);}
.m17_c00179{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m28_c00179{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00179{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00179{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_c00179{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00179{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00179{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);}
.m27_c00179{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m55_c00179{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m31_c00179{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m42_c00179{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m24_c00179{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);}
.m1e_c00179{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m12_c00179{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m60_c00179{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);}
.m40_c00179{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m7_c00179{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);}
.m3d_c00179{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00179{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m44_c00179{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00179{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);}
.m1f_c00179{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m5_c00179{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);}
.m4d_c00179{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m37_c00179{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m4_c00179{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m30_c00179{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00179{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m41_c00179{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);}
.m50_c00179{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);}
.m59_c00179{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m3_c00179{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00179{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m45_c00179{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m9_c00179{transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00179{transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00179{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.m62_c00179{transform:matrix(0.872500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.872500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.872500,0.000000,0.000000,0.250000,0,0);}
.m10_c00179{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);}
.v1_c00179{vertical-align:-5.760000px;}
.v4_c00179{vertical-align:-2.880000px;}
.v0_c00179{vertical-align:0.000000px;}
.v2_c00179{vertical-align:5.760000px;}
.v3_c00179{vertical-align:11.520000px;}
.ls0_c00179{letter-spacing:0.000000px;}
.sc__c00179{text-shadow:none;}
.sc0_c00179{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00179{-webkit-text-stroke:0px transparent;}
.sc0_c00179{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00179{word-spacing:-5.754240px;}
.ws3_c00179{word-spacing:-5.373600px;}
.ws2_c00179{word-spacing:-2.198400px;}
.ws4_c00179{word-spacing:0.000000px;}
.ws1_c00179{word-spacing:11.576160px;}
.fc0_c00179{color:transparent;}
.fsb_c00179{font-size:20.160000px;}
.fsf_c00179{font-size:28.800000px;}
.fs11_c00179{font-size:31.680000px;}
.fs4_c00179{font-size:34.560000px;}
.fsc_c00179{font-size:37.440000px;}
.fs7_c00179{font-size:40.320000px;}
.fsa_c00179{font-size:43.200000px;}
.fse_c00179{font-size:46.080000px;}
.fsd_c00179{font-size:48.960000px;}
.fs2_c00179{font-size:51.840000px;}
.fs6_c00179{font-size:54.720000px;}
.fs8_c00179{font-size:57.600000px;}
.fs3_c00179{font-size:60.480000px;}
.fs1_c00179{font-size:63.360000px;}
.fs9_c00179{font-size:66.240000px;}
.fs5_c00179{font-size:69.120000px;}
.fs10_c00179{font-size:72.000000px;}
.fs0_c00179{font-size:74.880000px;}
.y0_c00179{bottom:0.000000px;}
.y73_c00179{bottom:87.840000px;}
.y74_c00179{bottom:90.000000px;}
.y71_c00179{bottom:90.720000px;}
.y75_c00179{bottom:91.440000px;}
.y72_c00179{bottom:92.160000px;}
.y76_c00179{bottom:92.880000px;}
.y6e_c00179{bottom:132.480000px;}
.y70_c00179{bottom:133.920000px;}
.y6f_c00179{bottom:134.640000px;}
.y6c_c00179{bottom:135.360000px;}
.y6d_c00179{bottom:136.800000px;}
.y69_c00179{bottom:174.240000px;}
.y6a_c00179{bottom:176.400000px;}
.y68_c00179{bottom:177.120000px;}
.y6b_c00179{bottom:178.560000px;}
.y66_c00179{bottom:217.440000px;}
.y64_c00179{bottom:218.160000px;}
.y67_c00179{bottom:218.880000px;}
.y65_c00179{bottom:220.320000px;}
.y63_c00179{bottom:221.040000px;}
.y62_c00179{bottom:222.480000px;}
.y5d_c00179{bottom:260.640000px;}
.y61_c00179{bottom:261.360000px;}
.y5e_c00179{bottom:262.080000px;}
.y5f_c00179{bottom:262.800000px;}
.y60_c00179{bottom:263.520000px;}
.y5c_c00179{bottom:264.240000px;}
.y5a_c00179{bottom:303.120000px;}
.y58_c00179{bottom:306.000000px;}
.y5b_c00179{bottom:306.720000px;}
.y59_c00179{bottom:307.440000px;}
.y51_c00179{bottom:346.320000px;}
.y57_c00179{bottom:347.040000px;}
.y56_c00179{bottom:347.760000px;}
.y54_c00179{bottom:348.480000px;}
.y55_c00179{bottom:349.200000px;}
.y52_c00179{bottom:349.920000px;}
.y53_c00179{bottom:350.640000px;}
.y50_c00179{bottom:352.080000px;}
.y4f_c00179{bottom:389.520000px;}
.y4c_c00179{bottom:390.960000px;}
.y4e_c00179{bottom:391.680000px;}
.y4d_c00179{bottom:392.400000px;}
.y4b_c00179{bottom:393.840000px;}
.y49_c00179{bottom:433.440000px;}
.y48_c00179{bottom:434.160000px;}
.y46_c00179{bottom:434.880000px;}
.y47_c00179{bottom:435.600000px;}
.y4a_c00179{bottom:436.320000px;}
.y45_c00179{bottom:437.040000px;}
.y43_c00179{bottom:476.640000px;}
.y42_c00179{bottom:478.800000px;}
.y44_c00179{bottom:479.520000px;}
.y41_c00179{bottom:480.240000px;}
.y3d_c00179{bottom:519.840000px;}
.y3c_c00179{bottom:520.560000px;}
.y3f_c00179{bottom:521.280000px;}
.y3e_c00179{bottom:522.000000px;}
.y3b_c00179{bottom:522.720000px;}
.y40_c00179{bottom:523.440000px;}
.y39_c00179{bottom:562.320000px;}
.y38_c00179{bottom:563.040000px;}
.y3a_c00179{bottom:564.480000px;}
.y37_c00179{bottom:565.200000px;}
.y36_c00179{bottom:565.920000px;}
.y34_c00179{bottom:605.520000px;}
.y35_c00179{bottom:607.680000px;}
.y33_c00179{bottom:608.400000px;}
.y32_c00179{bottom:609.120000px;}
.y30_c00179{bottom:647.280000px;}
.y31_c00179{bottom:648.000000px;}
.y2d_c00179{bottom:650.880000px;}
.y2f_c00179{bottom:651.600000px;}
.y2e_c00179{bottom:652.320000px;}
.y28_c00179{bottom:701.280000px;}
.y2c_c00179{bottom:702.000000px;}
.y29_c00179{bottom:702.720000px;}
.y2a_c00179{bottom:704.160000px;}
.y2b_c00179{bottom:704.880000px;}
.y26_c00179{bottom:743.760000px;}
.y27_c00179{bottom:744.480000px;}
.y24_c00179{bottom:745.200000px;}
.y23_c00179{bottom:747.360000px;}
.y25_c00179{bottom:748.080000px;}
.y1d_c00179{bottom:786.960000px;}
.y21_c00179{bottom:787.680000px;}
.y1e_c00179{bottom:788.400000px;}
.y22_c00179{bottom:789.120000px;}
.y1f_c00179{bottom:789.840000px;}
.y20_c00179{bottom:790.560000px;}
.y1c_c00179{bottom:830.880000px;}
.y1a_c00179{bottom:833.040000px;}
.y1b_c00179{bottom:833.760000px;}
.y18_c00179{bottom:874.080000px;}
.y19_c00179{bottom:874.800000px;}
.y15_c00179{bottom:875.520000px;}
.y16_c00179{bottom:876.240000px;}
.y17_c00179{bottom:876.960000px;}
.y14_c00179{bottom:916.560000px;}
.y13_c00179{bottom:918.000000px;}
.y11_c00179{bottom:918.720000px;}
.y12_c00179{bottom:920.160000px;}
.yd_c00179{bottom:959.760000px;}
.yf_c00179{bottom:960.480000px;}
.y10_c00179{bottom:962.640000px;}
.ye_c00179{bottom:963.360000px;}
.yb_c00179{bottom:1002.960000px;}
.y9_c00179{bottom:1003.680000px;}
.yc_c00179{bottom:1004.400000px;}
.y7_c00179{bottom:1005.120000px;}
.y8_c00179{bottom:1005.840000px;}
.ya_c00179{bottom:1006.560000px;}
.y5_c00179{bottom:1046.880000px;}
.y2_c00179{bottom:1048.320000px;}
.y6_c00179{bottom:1049.040000px;}
.y4_c00179{bottom:1049.760000px;}
.y3_c00179{bottom:1050.480000px;}
.y1_c00179{bottom:1094.400000px;}
.hc_c00179{height:18.142031px;}
.h11_c00179{height:25.917187px;}
.h13_c00179{height:28.508906px;}
.h6_c00179{height:31.100625px;}
.hd_c00179{height:33.692344px;}
.he_c00179{height:36.284062px;}
.hb_c00179{height:38.875781px;}
.h10_c00179{height:41.467500px;}
.hf_c00179{height:44.059219px;}
.h4_c00179{height:46.650937px;}
.h8_c00179{height:49.242656px;}
.h9_c00179{height:51.834375px;}
.h5_c00179{height:54.426094px;}
.h3_c00179{height:57.017812px;}
.ha_c00179{height:59.609531px;}
.h7_c00179{height:62.201250px;}
.h12_c00179{height:64.792969px;}
.h2_c00179{height:67.384687px;}
.h1_c00179{height:1147.500000px;}
.h0_c00179{height:1147.680000px;}
.w0_c00179{width:792.720000px;}
.w1_c00179{width:792.750000px;}
.x0_c00179{left:0.000000px;}
.x2_c00179{left:90.720000px;}
.x1e_c00179{left:92.160000px;}
.x24_c00179{left:123.120000px;}
.x2e_c00179{left:133.920000px;}
.x58_c00179{left:144.000000px;}
.x5d_c00179{left:154.080000px;}
.xd_c00179{left:155.520000px;}
.x3_c00179{left:166.320000px;}
.x59_c00179{left:175.680000px;}
.x16_c00179{left:177.120000px;}
.x3b_c00179{left:185.760000px;}
.xe_c00179{left:187.920000px;}
.x4_c00179{left:198.000000px;}
.x40_c00179{left:208.080000px;}
.x17_c00179{left:209.520000px;}
.x30_c00179{left:219.600000px;}
.x25_c00179{left:229.680000px;}
.x53_c00179{left:239.760000px;}
.x5_c00179{left:241.200000px;}
.x31_c00179{left:251.280000px;}
.x41_c00179{left:252.720000px;}
.x54_c00179{left:262.080000px;}
.x2a_c00179{left:263.520000px;}
.x36_c00179{left:272.880000px;}
.x1b_c00179{left:274.320000px;}
.x46_c00179{left:283.680000px;}
.x42_c00179{left:285.120000px;}
.x6_c00179{left:295.920000px;}
.x3d_c00179{left:306.000000px;}
.x1f_c00179{left:307.440000px;}
.x7_c00179{left:317.520000px;}
.x18_c00179{left:328.320000px;}
.x2f_c00179{left:339.120000px;}
.x49_c00179{left:347.760000px;}
.x26_c00179{left:349.200000px;}
.x2b_c00179{left:351.360000px;}
.x5e_c00179{left:370.080000px;}
.x20_c00179{left:371.520000px;}
.xf_c00179{left:382.320000px;}
.x27_c00179{left:393.120000px;}
.x8_c00179{left:403.920000px;}
.x10_c00179{left:414.720000px;}
.x4e_c00179{left:424.080000px;}
.x37_c00179{left:425.520000px;}
.x50_c00179{left:434.880000px;}
.x32_c00179{left:436.320000px;}
.x55_c00179{left:445.680000px;}
.x1c_c00179{left:447.840000px;}
.x5f_c00179{left:456.480000px;}
.x3f_c00179{left:457.920000px;}
.x38_c00179{left:468.720000px;}
.x5a_c00179{left:478.080000px;}
.x9_c00179{left:479.520000px;}
.x51_c00179{left:489.600000px;}
.x11_c00179{left:491.040000px;}
.x4a_c00179{left:498.960000px;}
.x39_c00179{left:500.400000px;}
.x47_c00179{left:510.480000px;}
.x19_c00179{left:511.920000px;}
.x43_c00179{left:520.560000px;}
.x33_c00179{left:522.000000px;}
.x12_c00179{left:523.440000px;}
.x52_c00179{left:531.360000px;}
.x21_c00179{left:533.520000px;}
.x48_c00179{left:542.880000px;}
.xa_c00179{left:544.320000px;}
.x34_c00179{left:553.680000px;}
.x1a_c00179{left:555.840000px;}
.x56_c00179{left:565.200000px;}
.x60_c00179{left:574.560000px;}
.x2c_c00179{left:576.000000px;}
.x1d_c00179{left:585.360000px;}
.x35_c00179{left:596.880000px;}
.x44_c00179{left:598.320000px;}
.x4b_c00179{left:606.960000px;}
.x22_c00179{left:608.400000px;}
.x5b_c00179{left:617.040000px;}
.x3a_c00179{left:618.480000px;}
.x13_c00179{left:619.920000px;}
.x57_c00179{left:628.560000px;}
.xb_c00179{left:630.720000px;}
.x4c_c00179{left:638.640000px;}
.x3c_c00179{left:640.080000px;}
.x28_c00179{left:641.520000px;}
.x45_c00179{left:649.440000px;}
.x3e_c00179{left:650.880000px;}
.x29_c00179{left:652.320000px;}
.x5c_c00179{left:659.520000px;}
.x4f_c00179{left:671.040000px;}
.x2d_c00179{left:673.920000px;}
.x4d_c00179{left:682.560000px;}
.xc_c00179{left:684.000000px;}
.x14_c00179{left:695.520000px;}
.x23_c00179{left:706.320000px;}
.x1_c00179{left:710.640000px;}
.x15_c00179{left:715.680000px;}
@media print{
.v1_c00179{vertical-align:-5.120000pt;}
.v4_c00179{vertical-align:-2.560000pt;}
.v0_c00179{vertical-align:0.000000pt;}
.v2_c00179{vertical-align:5.120000pt;}
.v3_c00179{vertical-align:10.240000pt;}
.ls0_c00179{letter-spacing:0.000000pt;}
.ws0_c00179{word-spacing:-5.114880pt;}
.ws3_c00179{word-spacing:-4.776533pt;}
.ws2_c00179{word-spacing:-1.954133pt;}
.ws4_c00179{word-spacing:0.000000pt;}
.ws1_c00179{word-spacing:10.289920pt;}
.fsb_c00179{font-size:17.920000pt;}
.fsf_c00179{font-size:25.600000pt;}
.fs11_c00179{font-size:28.160000pt;}
.fs4_c00179{font-size:30.720000pt;}
.fsc_c00179{font-size:33.280000pt;}
.fs7_c00179{font-size:35.840000pt;}
.fsa_c00179{font-size:38.400000pt;}
.fse_c00179{font-size:40.960000pt;}
.fsd_c00179{font-size:43.520000pt;}
.fs2_c00179{font-size:46.080000pt;}
.fs6_c00179{font-size:48.640000pt;}
.fs8_c00179{font-size:51.200000pt;}
.fs3_c00179{font-size:53.760000pt;}
.fs1_c00179{font-size:56.320000pt;}
.fs9_c00179{font-size:58.880000pt;}
.fs5_c00179{font-size:61.440000pt;}
.fs10_c00179{font-size:64.000000pt;}
.fs0_c00179{font-size:66.560000pt;}
.y0_c00179{bottom:0.000000pt;}
.y73_c00179{bottom:78.080000pt;}
.y74_c00179{bottom:80.000000pt;}
.y71_c00179{bottom:80.640000pt;}
.y75_c00179{bottom:81.280000pt;}
.y72_c00179{bottom:81.920000pt;}
.y76_c00179{bottom:82.560000pt;}
.y6e_c00179{bottom:117.760000pt;}
.y70_c00179{bottom:119.040000pt;}
.y6f_c00179{bottom:119.680000pt;}
.y6c_c00179{bottom:120.320000pt;}
.y6d_c00179{bottom:121.600000pt;}
.y69_c00179{bottom:154.880000pt;}
.y6a_c00179{bottom:156.800000pt;}
.y68_c00179{bottom:157.440000pt;}
.y6b_c00179{bottom:158.720000pt;}
.y66_c00179{bottom:193.280000pt;}
.y64_c00179{bottom:193.920000pt;}
.y67_c00179{bottom:194.560000pt;}
.y65_c00179{bottom:195.840000pt;}
.y63_c00179{bottom:196.480000pt;}
.y62_c00179{bottom:197.760000pt;}
.y5d_c00179{bottom:231.680000pt;}
.y61_c00179{bottom:232.320000pt;}
.y5e_c00179{bottom:232.960000pt;}
.y5f_c00179{bottom:233.600000pt;}
.y60_c00179{bottom:234.240000pt;}
.y5c_c00179{bottom:234.880000pt;}
.y5a_c00179{bottom:269.440000pt;}
.y58_c00179{bottom:272.000000pt;}
.y5b_c00179{bottom:272.640000pt;}
.y59_c00179{bottom:273.280000pt;}
.y51_c00179{bottom:307.840000pt;}
.y57_c00179{bottom:308.480000pt;}
.y56_c00179{bottom:309.120000pt;}
.y54_c00179{bottom:309.760000pt;}
.y55_c00179{bottom:310.400000pt;}
.y52_c00179{bottom:311.040000pt;}
.y53_c00179{bottom:311.680000pt;}
.y50_c00179{bottom:312.960000pt;}
.y4f_c00179{bottom:346.240000pt;}
.y4c_c00179{bottom:347.520000pt;}
.y4e_c00179{bottom:348.160000pt;}
.y4d_c00179{bottom:348.800000pt;}
.y4b_c00179{bottom:350.080000pt;}
.y49_c00179{bottom:385.280000pt;}
.y48_c00179{bottom:385.920000pt;}
.y46_c00179{bottom:386.560000pt;}
.y47_c00179{bottom:387.200000pt;}
.y4a_c00179{bottom:387.840000pt;}
.y45_c00179{bottom:388.480000pt;}
.y43_c00179{bottom:423.680000pt;}
.y42_c00179{bottom:425.600000pt;}
.y44_c00179{bottom:426.240000pt;}
.y41_c00179{bottom:426.880000pt;}
.y3d_c00179{bottom:462.080000pt;}
.y3c_c00179{bottom:462.720000pt;}
.y3f_c00179{bottom:463.360000pt;}
.y3e_c00179{bottom:464.000000pt;}
.y3b_c00179{bottom:464.640000pt;}
.y40_c00179{bottom:465.280000pt;}
.y39_c00179{bottom:499.840000pt;}
.y38_c00179{bottom:500.480000pt;}
.y3a_c00179{bottom:501.760000pt;}
.y37_c00179{bottom:502.400000pt;}
.y36_c00179{bottom:503.040000pt;}
.y34_c00179{bottom:538.240000pt;}
.y35_c00179{bottom:540.160000pt;}
.y33_c00179{bottom:540.800000pt;}
.y32_c00179{bottom:541.440000pt;}
.y30_c00179{bottom:575.360000pt;}
.y31_c00179{bottom:576.000000pt;}
.y2d_c00179{bottom:578.560000pt;}
.y2f_c00179{bottom:579.200000pt;}
.y2e_c00179{bottom:579.840000pt;}
.y28_c00179{bottom:623.360000pt;}
.y2c_c00179{bottom:624.000000pt;}
.y29_c00179{bottom:624.640000pt;}
.y2a_c00179{bottom:625.920000pt;}
.y2b_c00179{bottom:626.560000pt;}
.y26_c00179{bottom:661.120000pt;}
.y27_c00179{bottom:661.760000pt;}
.y24_c00179{bottom:662.400000pt;}
.y23_c00179{bottom:664.320000pt;}
.y25_c00179{bottom:664.960000pt;}
.y1d_c00179{bottom:699.520000pt;}
.y21_c00179{bottom:700.160000pt;}
.y1e_c00179{bottom:700.800000pt;}
.y22_c00179{bottom:701.440000pt;}
.y1f_c00179{bottom:702.080000pt;}
.y20_c00179{bottom:702.720000pt;}
.y1c_c00179{bottom:738.560000pt;}
.y1a_c00179{bottom:740.480000pt;}
.y1b_c00179{bottom:741.120000pt;}
.y18_c00179{bottom:776.960000pt;}
.y19_c00179{bottom:777.600000pt;}
.y15_c00179{bottom:778.240000pt;}
.y16_c00179{bottom:778.880000pt;}
.y17_c00179{bottom:779.520000pt;}
.y14_c00179{bottom:814.720000pt;}
.y13_c00179{bottom:816.000000pt;}
.y11_c00179{bottom:816.640000pt;}
.y12_c00179{bottom:817.920000pt;}
.yd_c00179{bottom:853.120000pt;}
.yf_c00179{bottom:853.760000pt;}
.y10_c00179{bottom:855.680000pt;}
.ye_c00179{bottom:856.320000pt;}
.yb_c00179{bottom:891.520000pt;}
.y9_c00179{bottom:892.160000pt;}
.yc_c00179{bottom:892.800000pt;}
.y7_c00179{bottom:893.440000pt;}
.y8_c00179{bottom:894.080000pt;}
.ya_c00179{bottom:894.720000pt;}
.y5_c00179{bottom:930.560000pt;}
.y2_c00179{bottom:931.840000pt;}
.y6_c00179{bottom:932.480000pt;}
.y4_c00179{bottom:933.120000pt;}
.y3_c00179{bottom:933.760000pt;}
.y1_c00179{bottom:972.800000pt;}
.hc_c00179{height:16.126250pt;}
.h11_c00179{height:23.037500pt;}
.h13_c00179{height:25.341250pt;}
.h6_c00179{height:27.645000pt;}
.hd_c00179{height:29.948750pt;}
.he_c00179{height:32.252500pt;}
.hb_c00179{height:34.556250pt;}
.h10_c00179{height:36.860000pt;}
.hf_c00179{height:39.163750pt;}
.h4_c00179{height:41.467500pt;}
.h8_c00179{height:43.771250pt;}
.h9_c00179{height:46.075000pt;}
.h5_c00179{height:48.378750pt;}
.h3_c00179{height:50.682500pt;}
.ha_c00179{height:52.986250pt;}
.h7_c00179{height:55.290000pt;}
.h12_c00179{height:57.593750pt;}
.h2_c00179{height:59.897500pt;}
.h1_c00179{height:1020.000000pt;}
.h0_c00179{height:1020.160000pt;}
.w0_c00179{width:704.640000pt;}
.w1_c00179{width:704.666667pt;}
.x0_c00179{left:0.000000pt;}
.x2_c00179{left:80.640000pt;}
.x1e_c00179{left:81.920000pt;}
.x24_c00179{left:109.440000pt;}
.x2e_c00179{left:119.040000pt;}
.x58_c00179{left:128.000000pt;}
.x5d_c00179{left:136.960000pt;}
.xd_c00179{left:138.240000pt;}
.x3_c00179{left:147.840000pt;}
.x59_c00179{left:156.160000pt;}
.x16_c00179{left:157.440000pt;}
.x3b_c00179{left:165.120000pt;}
.xe_c00179{left:167.040000pt;}
.x4_c00179{left:176.000000pt;}
.x40_c00179{left:184.960000pt;}
.x17_c00179{left:186.240000pt;}
.x30_c00179{left:195.200000pt;}
.x25_c00179{left:204.160000pt;}
.x53_c00179{left:213.120000pt;}
.x5_c00179{left:214.400000pt;}
.x31_c00179{left:223.360000pt;}
.x41_c00179{left:224.640000pt;}
.x54_c00179{left:232.960000pt;}
.x2a_c00179{left:234.240000pt;}
.x36_c00179{left:242.560000pt;}
.x1b_c00179{left:243.840000pt;}
.x46_c00179{left:252.160000pt;}
.x42_c00179{left:253.440000pt;}
.x6_c00179{left:263.040000pt;}
.x3d_c00179{left:272.000000pt;}
.x1f_c00179{left:273.280000pt;}
.x7_c00179{left:282.240000pt;}
.x18_c00179{left:291.840000pt;}
.x2f_c00179{left:301.440000pt;}
.x49_c00179{left:309.120000pt;}
.x26_c00179{left:310.400000pt;}
.x2b_c00179{left:312.320000pt;}
.x5e_c00179{left:328.960000pt;}
.x20_c00179{left:330.240000pt;}
.xf_c00179{left:339.840000pt;}
.x27_c00179{left:349.440000pt;}
.x8_c00179{left:359.040000pt;}
.x10_c00179{left:368.640000pt;}
.x4e_c00179{left:376.960000pt;}
.x37_c00179{left:378.240000pt;}
.x50_c00179{left:386.560000pt;}
.x32_c00179{left:387.840000pt;}
.x55_c00179{left:396.160000pt;}
.x1c_c00179{left:398.080000pt;}
.x5f_c00179{left:405.760000pt;}
.x3f_c00179{left:407.040000pt;}
.x38_c00179{left:416.640000pt;}
.x5a_c00179{left:424.960000pt;}
.x9_c00179{left:426.240000pt;}
.x51_c00179{left:435.200000pt;}
.x11_c00179{left:436.480000pt;}
.x4a_c00179{left:443.520000pt;}
.x39_c00179{left:444.800000pt;}
.x47_c00179{left:453.760000pt;}
.x19_c00179{left:455.040000pt;}
.x43_c00179{left:462.720000pt;}
.x33_c00179{left:464.000000pt;}
.x12_c00179{left:465.280000pt;}
.x52_c00179{left:472.320000pt;}
.x21_c00179{left:474.240000pt;}
.x48_c00179{left:482.560000pt;}
.xa_c00179{left:483.840000pt;}
.x34_c00179{left:492.160000pt;}
.x1a_c00179{left:494.080000pt;}
.x56_c00179{left:502.400000pt;}
.x60_c00179{left:510.720000pt;}
.x2c_c00179{left:512.000000pt;}
.x1d_c00179{left:520.320000pt;}
.x35_c00179{left:530.560000pt;}
.x44_c00179{left:531.840000pt;}
.x4b_c00179{left:539.520000pt;}
.x22_c00179{left:540.800000pt;}
.x5b_c00179{left:548.480000pt;}
.x3a_c00179{left:549.760000pt;}
.x13_c00179{left:551.040000pt;}
.x57_c00179{left:558.720000pt;}
.xb_c00179{left:560.640000pt;}
.x4c_c00179{left:567.680000pt;}
.x3c_c00179{left:568.960000pt;}
.x28_c00179{left:570.240000pt;}
.x45_c00179{left:577.280000pt;}
.x3e_c00179{left:578.560000pt;}
.x29_c00179{left:579.840000pt;}
.x5c_c00179{left:586.240000pt;}
.x4f_c00179{left:596.480000pt;}
.x2d_c00179{left:599.040000pt;}
.x4d_c00179{left:606.720000pt;}
.xc_c00179{left:608.000000pt;}
.x14_c00179{left:618.240000pt;}
.x23_c00179{left:627.840000pt;}
.x1_c00179{left:631.680000pt;}
.x15_c00179{left:636.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_09d7b6847022c1e13866721d.woff2')format("woff");}.ff1_c00180{font-family:ff1_c00180;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m41_c00180{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00180{transform:matrix(0.239700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239700,0.000000,0.000000,0.250000,0,0);}
.m4a_c00180{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m51_c00180{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m7_c00180{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);}
.m57_c00180{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m10_c00180{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00180{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00180{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m53_c00180{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00180{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00180{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m32_c00180{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m45_c00180{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.ma_c00180{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m52_c00180{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m42_c00180{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m11_c00180{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m29_c00180{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);}
.m2a_c00180{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.md_c00180{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m16_c00180{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);}
.m3b_c00180{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m6_c00180{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);}
.m28_c00180{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m12_c00180{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);}
.m0_c00180{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m18_c00180{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);}
.m2f_c00180{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m26_c00180{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);}
.m20_c00180{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m40_c00180{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00180{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m21_c00180{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00180{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);}
.m38_c00180{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m49_c00180{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);}
.mb_c00180{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m15_c00180{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);}
.m55_c00180{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m1_c00180{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);}
.m44_c00180{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.mf_c00180{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m35_c00180{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00180{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.mc_c00180{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);}
.m3e_c00180{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m47_c00180{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);}
.m48_c00180{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);}
.m46_c00180{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m3_c00180{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00180{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m31_c00180{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);}
.m5e_c00180{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00180{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m34_c00180{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);}
.m4c_c00180{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);}
.m56_c00180{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00180{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m8_c00180{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m4_c00180{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m37_c00180{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);}
.m36_c00180{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m25_c00180{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00180{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00180{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m19_c00180{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m13_c00180{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00180{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m30_c00180{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);}
.m23_c00180{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);}
.me_c00180{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m39_c00180{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00180{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m54_c00180{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00180{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m14_c00180{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);}
.m2_c00180{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m17_c00180{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m33_c00180{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00180{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);}
.m1c_c00180{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m5_c00180{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m22_c00180{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00180{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m27_c00180{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00180{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);}
.m4f_c00180{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);}
.m24_c00180{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m59_c00180{transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);}
.m58_c00180{transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);}
.m43_c00180{transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00180{transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);}
.m50_c00180{transform:matrix(0.700000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.700000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.700000,0.000000,0.000000,0.250000,0,0);}
.m9_c00180{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);}
.m5a_c00180{transform:matrix(0.987500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.987500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.987500,0.000000,0.000000,0.250000,0,0);}
.m60_c00180{transform:matrix(1.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.427500,0.000000,0.000000,0.250000,0,0);}
.v1_c00180{vertical-align:-8.640000px;}
.v0_c00180{vertical-align:0.000000px;}
.v2_c00180{vertical-align:11.520000px;}
.ls0_c00180{letter-spacing:0.000000px;}
.sc__c00180{text-shadow:none;}
.sc0_c00180{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00180{-webkit-text-stroke:0px transparent;}
.sc0_c00180{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00180{word-spacing:-8.534640px;}
.ws2_c00180{word-spacing:0.000000px;}
.ws1_c00180{word-spacing:3.811440px;}
.fc0_c00180{color:transparent;}
.fsb_c00180{font-size:23.040000px;}
.fsf_c00180{font-size:25.920000px;}
.fs11_c00180{font-size:28.800000px;}
.fse_c00180{font-size:34.560000px;}
.fs2_c00180{font-size:37.440000px;}
.fs9_c00180{font-size:40.320000px;}
.fs4_c00180{font-size:43.200000px;}
.fsc_c00180{font-size:46.080000px;}
.fs8_c00180{font-size:48.960000px;}
.fs3_c00180{font-size:51.840000px;}
.fs1_c00180{font-size:54.720000px;}
.fs5_c00180{font-size:57.600000px;}
.fsa_c00180{font-size:60.480000px;}
.fs6_c00180{font-size:63.360000px;}
.fs7_c00180{font-size:66.240000px;}
.fsd_c00180{font-size:69.120000px;}
.fs10_c00180{font-size:72.000000px;}
.fs0_c00180{font-size:74.880000px;}
.fs12_c00180{font-size:77.760000px;}
.y0_c00180{bottom:0.000000px;}
.y88_c00180{bottom:0.720000px;}
.y83_c00180{bottom:9.360000px;}
.y87_c00180{bottom:10.080000px;}
.y86_c00180{bottom:10.800000px;}
.y84_c00180{bottom:11.520000px;}
.y85_c00180{bottom:12.240000px;}
.y82_c00180{bottom:12.960000px;}
.y81_c00180{bottom:14.400000px;}
.y7f_c00180{bottom:48.960000px;}
.y7e_c00180{bottom:50.400000px;}
.y7d_c00180{bottom:51.120000px;}
.y7c_c00180{bottom:51.840000px;}
.y80_c00180{bottom:52.560000px;}
.y7b_c00180{bottom:53.280000px;}
.y75_c00180{bottom:91.440000px;}
.y77_c00180{bottom:92.160000px;}
.y79_c00180{bottom:92.880000px;}
.y76_c00180{bottom:93.600000px;}
.y78_c00180{bottom:94.320000px;}
.y7a_c00180{bottom:95.040000px;}
.y74_c00180{bottom:97.200000px;}
.y71_c00180{bottom:133.920000px;}
.y72_c00180{bottom:134.640000px;}
.y6f_c00180{bottom:135.360000px;}
.y70_c00180{bottom:136.800000px;}
.y73_c00180{bottom:137.520000px;}
.y6e_c00180{bottom:140.400000px;}
.y6c_c00180{bottom:177.840000px;}
.y6b_c00180{bottom:179.280000px;}
.y6a_c00180{bottom:180.000000px;}
.y6d_c00180{bottom:180.720000px;}
.y69_c00180{bottom:181.440000px;}
.y68_c00180{bottom:182.880000px;}
.y67_c00180{bottom:221.760000px;}
.y66_c00180{bottom:223.200000px;}
.y62_c00180{bottom:264.960000px;}
.y61_c00180{bottom:267.120000px;}
.y63_c00180{bottom:267.840000px;}
.y60_c00180{bottom:268.560000px;}
.y64_c00180{bottom:269.280000px;}
.y65_c00180{bottom:270.000000px;}
.y5f_c00180{bottom:308.880000px;}
.y5c_c00180{bottom:309.600000px;}
.y5e_c00180{bottom:310.320000px;}
.y5d_c00180{bottom:311.040000px;}
.y5b_c00180{bottom:312.480000px;}
.y57_c00180{bottom:351.360000px;}
.y58_c00180{bottom:352.080000px;}
.y56_c00180{bottom:353.520000px;}
.y55_c00180{bottom:354.240000px;}
.y59_c00180{bottom:354.960000px;}
.y5a_c00180{bottom:355.680000px;}
.y54_c00180{bottom:356.400000px;}
.y50_c00180{bottom:395.280000px;}
.y4f_c00180{bottom:396.000000px;}
.y52_c00180{bottom:396.720000px;}
.y51_c00180{bottom:397.440000px;}
.y53_c00180{bottom:398.160000px;}
.y4e_c00180{bottom:398.880000px;}
.y48_c00180{bottom:436.320000px;}
.y4a_c00180{bottom:437.040000px;}
.y49_c00180{bottom:437.760000px;}
.y47_c00180{bottom:438.480000px;}
.y4b_c00180{bottom:439.920000px;}
.y4c_c00180{bottom:441.360000px;}
.y4d_c00180{bottom:442.080000px;}
.y45_c00180{bottom:483.120000px;}
.y46_c00180{bottom:483.840000px;}
.y42_c00180{bottom:523.440000px;}
.y43_c00180{bottom:524.160000px;}
.y44_c00180{bottom:525.600000px;}
.y41_c00180{bottom:526.320000px;}
.y40_c00180{bottom:527.040000px;}
.y3f_c00180{bottom:565.920000px;}
.y3c_c00180{bottom:566.640000px;}
.y3b_c00180{bottom:567.360000px;}
.y3e_c00180{bottom:568.800000px;}
.y3d_c00180{bottom:569.520000px;}
.y39_c00180{bottom:608.400000px;}
.y38_c00180{bottom:609.120000px;}
.y36_c00180{bottom:610.560000px;}
.y3a_c00180{bottom:612.000000px;}
.y37_c00180{bottom:612.720000px;}
.y33_c00180{bottom:651.600000px;}
.y32_c00180{bottom:652.320000px;}
.y2f_c00180{bottom:653.040000px;}
.y34_c00180{bottom:653.760000px;}
.y35_c00180{bottom:654.480000px;}
.y30_c00180{bottom:655.200000px;}
.y31_c00180{bottom:655.920000px;}
.y2c_c00180{bottom:695.520000px;}
.y2d_c00180{bottom:696.960000px;}
.y2e_c00180{bottom:697.680000px;}
.y2a_c00180{bottom:698.400000px;}
.y2b_c00180{bottom:699.120000px;}
.y26_c00180{bottom:738.720000px;}
.y29_c00180{bottom:740.880000px;}
.y28_c00180{bottom:741.600000px;}
.y27_c00180{bottom:742.320000px;}
.y24_c00180{bottom:792.000000px;}
.y22_c00180{bottom:792.720000px;}
.y20_c00180{bottom:793.440000px;}
.y25_c00180{bottom:794.160000px;}
.y1f_c00180{bottom:794.880000px;}
.y23_c00180{bottom:795.600000px;}
.y21_c00180{bottom:796.320000px;}
.y1e_c00180{bottom:835.200000px;}
.y1b_c00180{bottom:835.920000px;}
.y1d_c00180{bottom:838.080000px;}
.y1c_c00180{bottom:839.520000px;}
.y19_c00180{bottom:879.120000px;}
.y18_c00180{bottom:879.840000px;}
.y17_c00180{bottom:880.560000px;}
.y1a_c00180{bottom:881.280000px;}
.y13_c00180{bottom:921.600000px;}
.y14_c00180{bottom:922.320000px;}
.y15_c00180{bottom:923.040000px;}
.y16_c00180{bottom:923.760000px;}
.y11_c00180{bottom:924.480000px;}
.y12_c00180{bottom:925.200000px;}
.y10_c00180{bottom:966.240000px;}
.yd_c00180{bottom:966.960000px;}
.ye_c00180{bottom:967.680000px;}
.yf_c00180{bottom:968.400000px;}
.ya_c00180{bottom:1008.000000px;}
.yb_c00180{bottom:1008.720000px;}
.y8_c00180{bottom:1009.440000px;}
.yc_c00180{bottom:1010.160000px;}
.y9_c00180{bottom:1010.880000px;}
.y7_c00180{bottom:1049.760000px;}
.y6_c00180{bottom:1051.200000px;}
.y4_c00180{bottom:1051.920000px;}
.y2_c00180{bottom:1052.640000px;}
.y5_c00180{bottom:1053.360000px;}
.y3_c00180{bottom:1054.080000px;}
.y1_c00180{bottom:1095.120000px;}
.hd_c00180{height:20.733750px;}
.h11_c00180{height:23.325469px;}
.h13_c00180{height:25.917187px;}
.h10_c00180{height:31.100625px;}
.h4_c00180{height:33.692344px;}
.hb_c00180{height:36.284062px;}
.h6_c00180{height:38.875781px;}
.he_c00180{height:41.467500px;}
.ha_c00180{height:44.059219px;}
.h5_c00180{height:46.650937px;}
.h3_c00180{height:49.242656px;}
.h7_c00180{height:51.834375px;}
.hc_c00180{height:54.426094px;}
.h8_c00180{height:57.017812px;}
.h9_c00180{height:59.609531px;}
.hf_c00180{height:62.201250px;}
.h12_c00180{height:64.792969px;}
.h2_c00180{height:67.384687px;}
.h14_c00180{height:69.976406px;}
.h1_c00180{height:1168.500000px;}
.h0_c00180{height:1168.560000px;}
.w0_c00180{width:792.720000px;}
.w1_c00180{width:792.750000px;}
.x0_c00180{left:0.000000px;}
.xc_c00180{left:88.560000px;}
.x3d_c00180{left:93.600000px;}
.x2_c00180{left:95.040000px;}
.x45_c00180{left:114.480000px;}
.x70_c00180{left:123.840000px;}
.x36_c00180{left:125.280000px;}
.xd_c00180{left:126.720000px;}
.x74_c00180{left:133.920000px;}
.x15_c00180{left:136.080000px;}
.x27_c00180{left:146.880000px;}
.x46_c00180{left:156.960000px;}
.xe_c00180{left:158.400000px;}
.x16_c00180{left:169.920000px;}
.x6b_c00180{left:177.840000px;}
.x2c_c00180{left:179.280000px;}
.x3_c00180{left:180.720000px;}
.x55_c00180{left:188.640000px;}
.x28_c00180{left:190.080000px;}
.x7a_c00180{left:200.160000px;}
.x32_c00180{left:202.320000px;}
.x66_c00180{left:209.520000px;}
.x4a_c00180{left:210.960000px;}
.x4_c00180{left:212.400000px;}
.x75_c00180{left:220.320000px;}
.x17_c00180{left:223.200000px;}
.x60_c00180{left:231.840000px;}
.xf_c00180{left:234.000000px;}
.x5e_c00180{left:241.920000px;}
.x1d_c00180{left:244.800000px;}
.x67_c00180{left:252.720000px;}
.x23_c00180{left:256.320000px;}
.x47_c00180{left:264.240000px;}
.x5_c00180{left:265.680000px;}
.x42_c00180{left:275.760000px;}
.x59_c00180{left:285.840000px;}
.x37_c00180{left:287.280000px;}
.x1e_c00180{left:288.720000px;}
.x4c_c00180{left:296.640000px;}
.x3e_c00180{left:298.080000px;}
.x61_c00180{left:307.440000px;}
.x29_c00180{left:308.880000px;}
.x68_c00180{left:318.960000px;}
.x2d_c00180{left:320.400000px;}
.x50_c00180{left:329.040000px;}
.x38_c00180{left:331.200000px;}
.x24_c00180{left:341.280000px;}
.x6_c00180{left:343.440000px;}
.x4b_c00180{left:351.360000px;}
.x10_c00180{left:353.520000px;}
.x4d_c00180{left:361.440000px;}
.x71_c00180{left:362.880000px;}
.x1f_c00180{left:364.320000px;}
.x51_c00180{left:373.680000px;}
.x2e_c00180{left:375.120000px;}
.x5a_c00180{left:383.760000px;}
.x7b_c00180{left:393.840000px;}
.x11_c00180{left:396.000000px;}
.x7_c00180{left:397.440000px;}
.x56_c00180{left:404.640000px;}
.x76_c00180{left:414.720000px;}
.x48_c00180{left:416.880000px;}
.x33_c00180{left:427.680000px;}
.x12_c00180{left:429.120000px;}
.x57_c00180{left:436.320000px;}
.x52_c00180{left:437.760000px;}
.x2f_c00180{left:439.200000px;}
.x6c_c00180{left:447.120000px;}
.x39_c00180{left:449.280000px;}
.x69_c00180{left:458.640000px;}
.x4e_c00180{left:460.080000px;}
.x30_c00180{left:470.160000px;}
.x13_c00180{left:472.320000px;}
.x20_c00180{left:481.680000px;}
.x18_c00180{left:483.840000px;}
.x6a_c00180{left:490.320000px;}
.x2a_c00180{left:492.480000px;}
.x3a_c00180{left:514.080000px;}
.x14_c00180{left:516.240000px;}
.x43_c00180{left:523.440000px;}
.x8_c00180{left:525.600000px;}
.x62_c00180{left:533.520000px;}
.x3f_c00180{left:536.400000px;}
.x49_c00180{left:545.760000px;}
.x25_c00180{left:547.200000px;}
.x72_c00180{left:554.400000px;}
.x5b_c00180{left:555.840000px;}
.x34_c00180{left:557.280000px;}
.x63_c00180{left:565.920000px;}
.x44_c00180{left:567.360000px;}
.x31_c00180{left:568.800000px;}
.x6d_c00180{left:576.000000px;}
.x3b_c00180{left:577.440000px;}
.x19_c00180{left:579.600000px;}
.x77_c00180{left:586.080000px;}
.x5c_c00180{left:587.520000px;}
.x40_c00180{left:588.960000px;}
.x73_c00180{left:596.880000px;}
.x58_c00180{left:598.320000px;}
.x2b_c00180{left:601.200000px;}
.x41_c00180{left:609.120000px;}
.x9_c00180{left:611.280000px;}
.x1a_c00180{left:612.720000px;}
.x5d_c00180{left:620.640000px;}
.x21_c00180{left:622.080000px;}
.x64_c00180{left:630.720000px;}
.x3c_c00180{left:641.520000px;}
.x1b_c00180{left:643.680000px;}
.x79_c00180{left:650.880000px;}
.x5f_c00180{left:653.040000px;}
.x22_c00180{left:655.920000px;}
.x6e_c00180{left:661.680000px;}
.x35_c00180{left:664.560000px;}
.xa_c00180{left:666.000000px;}
.x53_c00180{left:673.920000px;}
.x26_c00180{left:675.360000px;}
.x78_c00180{left:683.280000px;}
.x4f_c00180{left:696.240000px;}
.xb_c00180{left:697.680000px;}
.x54_c00180{left:702.000000px;}
.x65_c00180{left:704.880000px;}
.x1c_c00180{left:708.480000px;}
.x6f_c00180{left:715.680000px;}
.x1_c00180{left:719.280000px;}
@media print{
.v1_c00180{vertical-align:-7.680000pt;}
.v0_c00180{vertical-align:0.000000pt;}
.v2_c00180{vertical-align:10.240000pt;}
.ls0_c00180{letter-spacing:0.000000pt;}
.ws0_c00180{word-spacing:-7.586347pt;}
.ws2_c00180{word-spacing:0.000000pt;}
.ws1_c00180{word-spacing:3.387947pt;}
.fsb_c00180{font-size:20.480000pt;}
.fsf_c00180{font-size:23.040000pt;}
.fs11_c00180{font-size:25.600000pt;}
.fse_c00180{font-size:30.720000pt;}
.fs2_c00180{font-size:33.280000pt;}
.fs9_c00180{font-size:35.840000pt;}
.fs4_c00180{font-size:38.400000pt;}
.fsc_c00180{font-size:40.960000pt;}
.fs8_c00180{font-size:43.520000pt;}
.fs3_c00180{font-size:46.080000pt;}
.fs1_c00180{font-size:48.640000pt;}
.fs5_c00180{font-size:51.200000pt;}
.fsa_c00180{font-size:53.760000pt;}
.fs6_c00180{font-size:56.320000pt;}
.fs7_c00180{font-size:58.880000pt;}
.fsd_c00180{font-size:61.440000pt;}
.fs10_c00180{font-size:64.000000pt;}
.fs0_c00180{font-size:66.560000pt;}
.fs12_c00180{font-size:69.120000pt;}
.y0_c00180{bottom:0.000000pt;}
.y88_c00180{bottom:0.640000pt;}
.y83_c00180{bottom:8.320000pt;}
.y87_c00180{bottom:8.960000pt;}
.y86_c00180{bottom:9.600000pt;}
.y84_c00180{bottom:10.240000pt;}
.y85_c00180{bottom:10.880000pt;}
.y82_c00180{bottom:11.520000pt;}
.y81_c00180{bottom:12.800000pt;}
.y7f_c00180{bottom:43.520000pt;}
.y7e_c00180{bottom:44.800000pt;}
.y7d_c00180{bottom:45.440000pt;}
.y7c_c00180{bottom:46.080000pt;}
.y80_c00180{bottom:46.720000pt;}
.y7b_c00180{bottom:47.360000pt;}
.y75_c00180{bottom:81.280000pt;}
.y77_c00180{bottom:81.920000pt;}
.y79_c00180{bottom:82.560000pt;}
.y76_c00180{bottom:83.200000pt;}
.y78_c00180{bottom:83.840000pt;}
.y7a_c00180{bottom:84.480000pt;}
.y74_c00180{bottom:86.400000pt;}
.y71_c00180{bottom:119.040000pt;}
.y72_c00180{bottom:119.680000pt;}
.y6f_c00180{bottom:120.320000pt;}
.y70_c00180{bottom:121.600000pt;}
.y73_c00180{bottom:122.240000pt;}
.y6e_c00180{bottom:124.800000pt;}
.y6c_c00180{bottom:158.080000pt;}
.y6b_c00180{bottom:159.360000pt;}
.y6a_c00180{bottom:160.000000pt;}
.y6d_c00180{bottom:160.640000pt;}
.y69_c00180{bottom:161.280000pt;}
.y68_c00180{bottom:162.560000pt;}
.y67_c00180{bottom:197.120000pt;}
.y66_c00180{bottom:198.400000pt;}
.y62_c00180{bottom:235.520000pt;}
.y61_c00180{bottom:237.440000pt;}
.y63_c00180{bottom:238.080000pt;}
.y60_c00180{bottom:238.720000pt;}
.y64_c00180{bottom:239.360000pt;}
.y65_c00180{bottom:240.000000pt;}
.y5f_c00180{bottom:274.560000pt;}
.y5c_c00180{bottom:275.200000pt;}
.y5e_c00180{bottom:275.840000pt;}
.y5d_c00180{bottom:276.480000pt;}
.y5b_c00180{bottom:277.760000pt;}
.y57_c00180{bottom:312.320000pt;}
.y58_c00180{bottom:312.960000pt;}
.y56_c00180{bottom:314.240000pt;}
.y55_c00180{bottom:314.880000pt;}
.y59_c00180{bottom:315.520000pt;}
.y5a_c00180{bottom:316.160000pt;}
.y54_c00180{bottom:316.800000pt;}
.y50_c00180{bottom:351.360000pt;}
.y4f_c00180{bottom:352.000000pt;}
.y52_c00180{bottom:352.640000pt;}
.y51_c00180{bottom:353.280000pt;}
.y53_c00180{bottom:353.920000pt;}
.y4e_c00180{bottom:354.560000pt;}
.y48_c00180{bottom:387.840000pt;}
.y4a_c00180{bottom:388.480000pt;}
.y49_c00180{bottom:389.120000pt;}
.y47_c00180{bottom:389.760000pt;}
.y4b_c00180{bottom:391.040000pt;}
.y4c_c00180{bottom:392.320000pt;}
.y4d_c00180{bottom:392.960000pt;}
.y45_c00180{bottom:429.440000pt;}
.y46_c00180{bottom:430.080000pt;}
.y42_c00180{bottom:465.280000pt;}
.y43_c00180{bottom:465.920000pt;}
.y44_c00180{bottom:467.200000pt;}
.y41_c00180{bottom:467.840000pt;}
.y40_c00180{bottom:468.480000pt;}
.y3f_c00180{bottom:503.040000pt;}
.y3c_c00180{bottom:503.680000pt;}
.y3b_c00180{bottom:504.320000pt;}
.y3e_c00180{bottom:505.600000pt;}
.y3d_c00180{bottom:506.240000pt;}
.y39_c00180{bottom:540.800000pt;}
.y38_c00180{bottom:541.440000pt;}
.y36_c00180{bottom:542.720000pt;}
.y3a_c00180{bottom:544.000000pt;}
.y37_c00180{bottom:544.640000pt;}
.y33_c00180{bottom:579.200000pt;}
.y32_c00180{bottom:579.840000pt;}
.y2f_c00180{bottom:580.480000pt;}
.y34_c00180{bottom:581.120000pt;}
.y35_c00180{bottom:581.760000pt;}
.y30_c00180{bottom:582.400000pt;}
.y31_c00180{bottom:583.040000pt;}
.y2c_c00180{bottom:618.240000pt;}
.y2d_c00180{bottom:619.520000pt;}
.y2e_c00180{bottom:620.160000pt;}
.y2a_c00180{bottom:620.800000pt;}
.y2b_c00180{bottom:621.440000pt;}
.y26_c00180{bottom:656.640000pt;}
.y29_c00180{bottom:658.560000pt;}
.y28_c00180{bottom:659.200000pt;}
.y27_c00180{bottom:659.840000pt;}
.y24_c00180{bottom:704.000000pt;}
.y22_c00180{bottom:704.640000pt;}
.y20_c00180{bottom:705.280000pt;}
.y25_c00180{bottom:705.920000pt;}
.y1f_c00180{bottom:706.560000pt;}
.y23_c00180{bottom:707.200000pt;}
.y21_c00180{bottom:707.840000pt;}
.y1e_c00180{bottom:742.400000pt;}
.y1b_c00180{bottom:743.040000pt;}
.y1d_c00180{bottom:744.960000pt;}
.y1c_c00180{bottom:746.240000pt;}
.y19_c00180{bottom:781.440000pt;}
.y18_c00180{bottom:782.080000pt;}
.y17_c00180{bottom:782.720000pt;}
.y1a_c00180{bottom:783.360000pt;}
.y13_c00180{bottom:819.200000pt;}
.y14_c00180{bottom:819.840000pt;}
.y15_c00180{bottom:820.480000pt;}
.y16_c00180{bottom:821.120000pt;}
.y11_c00180{bottom:821.760000pt;}
.y12_c00180{bottom:822.400000pt;}
.y10_c00180{bottom:858.880000pt;}
.yd_c00180{bottom:859.520000pt;}
.ye_c00180{bottom:860.160000pt;}
.yf_c00180{bottom:860.800000pt;}
.ya_c00180{bottom:896.000000pt;}
.yb_c00180{bottom:896.640000pt;}
.y8_c00180{bottom:897.280000pt;}
.yc_c00180{bottom:897.920000pt;}
.y9_c00180{bottom:898.560000pt;}
.y7_c00180{bottom:933.120000pt;}
.y6_c00180{bottom:934.400000pt;}
.y4_c00180{bottom:935.040000pt;}
.y2_c00180{bottom:935.680000pt;}
.y5_c00180{bottom:936.320000pt;}
.y3_c00180{bottom:936.960000pt;}
.y1_c00180{bottom:973.440000pt;}
.hd_c00180{height:18.430000pt;}
.h11_c00180{height:20.733750pt;}
.h13_c00180{height:23.037500pt;}
.h10_c00180{height:27.645000pt;}
.h4_c00180{height:29.948750pt;}
.hb_c00180{height:32.252500pt;}
.h6_c00180{height:34.556250pt;}
.he_c00180{height:36.860000pt;}
.ha_c00180{height:39.163750pt;}
.h5_c00180{height:41.467500pt;}
.h3_c00180{height:43.771250pt;}
.h7_c00180{height:46.075000pt;}
.hc_c00180{height:48.378750pt;}
.h8_c00180{height:50.682500pt;}
.h9_c00180{height:52.986250pt;}
.hf_c00180{height:55.290000pt;}
.h12_c00180{height:57.593750pt;}
.h2_c00180{height:59.897500pt;}
.h14_c00180{height:62.201250pt;}
.h1_c00180{height:1038.666667pt;}
.h0_c00180{height:1038.720000pt;}
.w0_c00180{width:704.640000pt;}
.w1_c00180{width:704.666667pt;}
.x0_c00180{left:0.000000pt;}
.xc_c00180{left:78.720000pt;}
.x3d_c00180{left:83.200000pt;}
.x2_c00180{left:84.480000pt;}
.x45_c00180{left:101.760000pt;}
.x70_c00180{left:110.080000pt;}
.x36_c00180{left:111.360000pt;}
.xd_c00180{left:112.640000pt;}
.x74_c00180{left:119.040000pt;}
.x15_c00180{left:120.960000pt;}
.x27_c00180{left:130.560000pt;}
.x46_c00180{left:139.520000pt;}
.xe_c00180{left:140.800000pt;}
.x16_c00180{left:151.040000pt;}
.x6b_c00180{left:158.080000pt;}
.x2c_c00180{left:159.360000pt;}
.x3_c00180{left:160.640000pt;}
.x55_c00180{left:167.680000pt;}
.x28_c00180{left:168.960000pt;}
.x7a_c00180{left:177.920000pt;}
.x32_c00180{left:179.840000pt;}
.x66_c00180{left:186.240000pt;}
.x4a_c00180{left:187.520000pt;}
.x4_c00180{left:188.800000pt;}
.x75_c00180{left:195.840000pt;}
.x17_c00180{left:198.400000pt;}
.x60_c00180{left:206.080000pt;}
.xf_c00180{left:208.000000pt;}
.x5e_c00180{left:215.040000pt;}
.x1d_c00180{left:217.600000pt;}
.x67_c00180{left:224.640000pt;}
.x23_c00180{left:227.840000pt;}
.x47_c00180{left:234.880000pt;}
.x5_c00180{left:236.160000pt;}
.x42_c00180{left:245.120000pt;}
.x59_c00180{left:254.080000pt;}
.x37_c00180{left:255.360000pt;}
.x1e_c00180{left:256.640000pt;}
.x4c_c00180{left:263.680000pt;}
.x3e_c00180{left:264.960000pt;}
.x61_c00180{left:273.280000pt;}
.x29_c00180{left:274.560000pt;}
.x68_c00180{left:283.520000pt;}
.x2d_c00180{left:284.800000pt;}
.x50_c00180{left:292.480000pt;}
.x38_c00180{left:294.400000pt;}
.x24_c00180{left:303.360000pt;}
.x6_c00180{left:305.280000pt;}
.x4b_c00180{left:312.320000pt;}
.x10_c00180{left:314.240000pt;}
.x4d_c00180{left:321.280000pt;}
.x71_c00180{left:322.560000pt;}
.x1f_c00180{left:323.840000pt;}
.x51_c00180{left:332.160000pt;}
.x2e_c00180{left:333.440000pt;}
.x5a_c00180{left:341.120000pt;}
.x7b_c00180{left:350.080000pt;}
.x11_c00180{left:352.000000pt;}
.x7_c00180{left:353.280000pt;}
.x56_c00180{left:359.680000pt;}
.x76_c00180{left:368.640000pt;}
.x48_c00180{left:370.560000pt;}
.x33_c00180{left:380.160000pt;}
.x12_c00180{left:381.440000pt;}
.x57_c00180{left:387.840000pt;}
.x52_c00180{left:389.120000pt;}
.x2f_c00180{left:390.400000pt;}
.x6c_c00180{left:397.440000pt;}
.x39_c00180{left:399.360000pt;}
.x69_c00180{left:407.680000pt;}
.x4e_c00180{left:408.960000pt;}
.x30_c00180{left:417.920000pt;}
.x13_c00180{left:419.840000pt;}
.x20_c00180{left:428.160000pt;}
.x18_c00180{left:430.080000pt;}
.x6a_c00180{left:435.840000pt;}
.x2a_c00180{left:437.760000pt;}
.x3a_c00180{left:456.960000pt;}
.x14_c00180{left:458.880000pt;}
.x43_c00180{left:465.280000pt;}
.x8_c00180{left:467.200000pt;}
.x62_c00180{left:474.240000pt;}
.x3f_c00180{left:476.800000pt;}
.x49_c00180{left:485.120000pt;}
.x25_c00180{left:486.400000pt;}
.x72_c00180{left:492.800000pt;}
.x5b_c00180{left:494.080000pt;}
.x34_c00180{left:495.360000pt;}
.x63_c00180{left:503.040000pt;}
.x44_c00180{left:504.320000pt;}
.x31_c00180{left:505.600000pt;}
.x6d_c00180{left:512.000000pt;}
.x3b_c00180{left:513.280000pt;}
.x19_c00180{left:515.200000pt;}
.x77_c00180{left:520.960000pt;}
.x5c_c00180{left:522.240000pt;}
.x40_c00180{left:523.520000pt;}
.x73_c00180{left:530.560000pt;}
.x58_c00180{left:531.840000pt;}
.x2b_c00180{left:534.400000pt;}
.x41_c00180{left:541.440000pt;}
.x9_c00180{left:543.360000pt;}
.x1a_c00180{left:544.640000pt;}
.x5d_c00180{left:551.680000pt;}
.x21_c00180{left:552.960000pt;}
.x64_c00180{left:560.640000pt;}
.x3c_c00180{left:570.240000pt;}
.x1b_c00180{left:572.160000pt;}
.x79_c00180{left:578.560000pt;}
.x5f_c00180{left:580.480000pt;}
.x22_c00180{left:583.040000pt;}
.x6e_c00180{left:588.160000pt;}
.x35_c00180{left:590.720000pt;}
.xa_c00180{left:592.000000pt;}
.x53_c00180{left:599.040000pt;}
.x26_c00180{left:600.320000pt;}
.x78_c00180{left:607.360000pt;}
.x4f_c00180{left:618.880000pt;}
.xb_c00180{left:620.160000pt;}
.x54_c00180{left:624.000000pt;}
.x65_c00180{left:626.560000pt;}
.x1c_c00180{left:629.760000pt;}
.x6f_c00180{left:636.160000pt;}
.x1_c00180{left:639.360000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1be5054c17235be4e767cfe7.woff2')format("woff");}.ff1_c00181{font-family:ff1_c00181;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m57_c00181{transform:matrix(0.224375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224375,0.000000,0.000000,0.250000,0,0);}
.m5c_c00181{transform:matrix(0.229450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229450,0.000000,0.000000,0.250000,0,0);}
.m68_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);}
.m67_c00181{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);}
.m56_c00181{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);}
.m42_c00181{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m59_c00181{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);}
.m31_c00181{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);}
.m5e_c00181{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00181{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);}
.m25_c00181{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00181{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m20_c00181{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);}
.m2d_c00181{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m40_c00181{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m35_c00181{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m65_c00181{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mf_c00181{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2_c00181{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m66_c00181{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m34_c00181{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m44_c00181{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mc_c00181{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m18_c00181{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00181{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m10_c00181{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m0_c00181{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);}
.m48_c00181{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m28_c00181{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);}
.m23_c00181{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m36_c00181{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);}
.m63_c00181{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m7_c00181{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);}
.m4c_c00181{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00181{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);}
.m46_c00181{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m26_c00181{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m15_c00181{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);}
.m4d_c00181{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m54_c00181{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m69_c00181{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m4_c00181{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.md_c00181{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);}
.mb_c00181{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m50_c00181{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);}
.m2e_c00181{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00181{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);}
.m3c_c00181{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);}
.m62_c00181{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);}
.m52_c00181{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m55_c00181{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m21_c00181{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00181{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);}
.m43_c00181{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m12_c00181{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);}
.m1d_c00181{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m22_c00181{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);}
.m3e_c00181{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);}
.m33_c00181{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m51_c00181{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m19_c00181{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m13_c00181{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00181{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m30_c00181{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m14_c00181{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m1_c00181{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m3_c00181{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);}
.me_c00181{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m45_c00181{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m6_c00181{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m11_c00181{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);}
.m49_c00181{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00181{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m24_c00181{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);}
.m17_c00181{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m53_c00181{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00181{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m9_c00181{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00181{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m41_c00181{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);}
.m16_c00181{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00181{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m58_c00181{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m47_c00181{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00181{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);}
.m32_c00181{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00181{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00181{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.ma_c00181{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);}
.m5_c00181{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);}
.m3d_c00181{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m60_c00181{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m38_c00181{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m27_c00181{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m29_c00181{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m61_c00181{transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00181{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00181{transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);}
.m39_c00181{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);}
.m4f_c00181{transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00181{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);}
.m6a_c00181{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m64_c00181{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00181{transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00181{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m8_c00181{transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);}
.m37_c00181{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00181{transform:matrix(0.872500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.872500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.872500,0.000000,0.000000,0.250000,0,0);}
.v2_c00181{vertical-align:-14.400000px;}
.v3_c00181{vertical-align:-2.880000px;}
.v0_c00181{vertical-align:0.000000px;}
.v1_c00181{vertical-align:5.760000px;}
.v4_c00181{vertical-align:8.640000px;}
.ls0_c00181{letter-spacing:0.000000px;}
.sc__c00181{text-shadow:none;}
.sc0_c00181{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00181{-webkit-text-stroke:0px transparent;}
.sc0_c00181{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00181{word-spacing:-6.107280px;}
.ws2_c00181{word-spacing:-0.694560px;}
.ws5_c00181{word-spacing:0.000000px;}
.ws1_c00181{word-spacing:0.451200px;}
.ws0_c00181{word-spacing:1.176000px;}
.ws4_c00181{word-spacing:2.094480px;}
.fc0_c00181{color:transparent;}
.fse_c00181{font-size:23.040000px;}
.fsf_c00181{font-size:31.680000px;}
.fs6_c00181{font-size:34.560000px;}
.fsb_c00181{font-size:37.440000px;}
.fs8_c00181{font-size:40.320000px;}
.fs1_c00181{font-size:43.200000px;}
.fs7_c00181{font-size:46.080000px;}
.fsc_c00181{font-size:48.960000px;}
.fs9_c00181{font-size:51.840000px;}
.fs2_c00181{font-size:54.720000px;}
.fs4_c00181{font-size:57.600000px;}
.fs3_c00181{font-size:60.480000px;}
.fsd_c00181{font-size:63.360000px;}
.fs5_c00181{font-size:66.240000px;}
.fsa_c00181{font-size:69.120000px;}
.fs0_c00181{font-size:74.880000px;}
.y0_c00181{bottom:0.000000px;}
.y77_c00181{bottom:82.800000px;}
.y76_c00181{bottom:83.520000px;}
.y7a_c00181{bottom:84.960000px;}
.y78_c00181{bottom:85.680000px;}
.y75_c00181{bottom:86.400000px;}
.y79_c00181{bottom:87.120000px;}
.y7b_c00181{bottom:87.840000px;}
.y74_c00181{bottom:89.280000px;}
.y71_c00181{bottom:126.720000px;}
.y72_c00181{bottom:128.160000px;}
.y70_c00181{bottom:128.880000px;}
.y73_c00181{bottom:129.600000px;}
.y6f_c00181{bottom:130.320000px;}
.y6e_c00181{bottom:132.480000px;}
.y6c_c00181{bottom:170.640000px;}
.y6b_c00181{bottom:171.360000px;}
.y6d_c00181{bottom:172.080000px;}
.y6a_c00181{bottom:172.800000px;}
.y69_c00181{bottom:174.240000px;}
.y67_c00181{bottom:211.680000px;}
.y66_c00181{bottom:214.560000px;}
.y65_c00181{bottom:215.280000px;}
.y68_c00181{bottom:216.000000px;}
.y64_c00181{bottom:216.720000px;}
.y60_c00181{bottom:255.600000px;}
.y62_c00181{bottom:256.320000px;}
.y63_c00181{bottom:257.040000px;}
.y5f_c00181{bottom:257.760000px;}
.y5d_c00181{bottom:258.480000px;}
.y5e_c00181{bottom:259.200000px;}
.y61_c00181{bottom:259.920000px;}
.y58_c00181{bottom:298.800000px;}
.y5a_c00181{bottom:299.520000px;}
.y5b_c00181{bottom:300.240000px;}
.y57_c00181{bottom:300.960000px;}
.y59_c00181{bottom:301.680000px;}
.y5c_c00181{bottom:302.400000px;}
.y56_c00181{bottom:303.120000px;}
.y55_c00181{bottom:342.720000px;}
.y53_c00181{bottom:344.160000px;}
.y54_c00181{bottom:344.880000px;}
.y52_c00181{bottom:345.600000px;}
.y51_c00181{bottom:346.320000px;}
.y4e_c00181{bottom:385.200000px;}
.y50_c00181{bottom:385.920000px;}
.y4d_c00181{bottom:386.640000px;}
.y4c_c00181{bottom:388.080000px;}
.y4f_c00181{bottom:388.800000px;}
.y4a_c00181{bottom:429.120000px;}
.y4b_c00181{bottom:429.840000px;}
.y48_c00181{bottom:430.560000px;}
.y47_c00181{bottom:431.280000px;}
.y49_c00181{bottom:432.000000px;}
.y43_c00181{bottom:473.040000px;}
.y45_c00181{bottom:473.760000px;}
.y44_c00181{bottom:474.480000px;}
.y46_c00181{bottom:475.200000px;}
.y42_c00181{bottom:475.920000px;}
.y41_c00181{bottom:514.800000px;}
.y40_c00181{bottom:515.520000px;}
.y3f_c00181{bottom:517.680000px;}
.y3e_c00181{bottom:518.400000px;}
.y3c_c00181{bottom:558.000000px;}
.y3b_c00181{bottom:558.720000px;}
.y3d_c00181{bottom:559.440000px;}
.y3a_c00181{bottom:560.160000px;}
.y39_c00181{bottom:560.880000px;}
.y35_c00181{bottom:601.920000px;}
.y38_c00181{bottom:602.640000px;}
.y36_c00181{bottom:603.360000px;}
.y37_c00181{bottom:604.080000px;}
.y34_c00181{bottom:642.960000px;}
.y33_c00181{bottom:643.680000px;}
.y31_c00181{bottom:645.840000px;}
.y32_c00181{bottom:646.560000px;}
.y2e_c00181{bottom:687.600000px;}
.y2d_c00181{bottom:689.040000px;}
.y2c_c00181{bottom:689.760000px;}
.y2f_c00181{bottom:690.480000px;}
.y30_c00181{bottom:692.640000px;}
.y2a_c00181{bottom:729.360000px;}
.y29_c00181{bottom:730.080000px;}
.y27_c00181{bottom:730.800000px;}
.y2b_c00181{bottom:731.520000px;}
.y26_c00181{bottom:732.240000px;}
.y28_c00181{bottom:732.960000px;}
.y22_c00181{bottom:772.560000px;}
.y25_c00181{bottom:774.000000px;}
.y24_c00181{bottom:774.720000px;}
.y21_c00181{bottom:775.440000px;}
.y23_c00181{bottom:776.160000px;}
.y1d_c00181{bottom:816.480000px;}
.y1c_c00181{bottom:817.200000px;}
.y1f_c00181{bottom:817.920000px;}
.y20_c00181{bottom:818.640000px;}
.y1e_c00181{bottom:819.360000px;}
.y1b_c00181{bottom:858.240000px;}
.y18_c00181{bottom:859.680000px;}
.y17_c00181{bottom:861.120000px;}
.y1a_c00181{bottom:861.840000px;}
.y19_c00181{bottom:862.560000px;}
.y13_c00181{bottom:902.160000px;}
.y12_c00181{bottom:902.880000px;}
.y16_c00181{bottom:904.320000px;}
.y11_c00181{bottom:905.040000px;}
.y15_c00181{bottom:905.760000px;}
.y14_c00181{bottom:906.480000px;}
.y10_c00181{bottom:946.800000px;}
.yd_c00181{bottom:947.520000px;}
.ye_c00181{bottom:948.240000px;}
.yf_c00181{bottom:948.960000px;}
.yc_c00181{bottom:988.560000px;}
.y9_c00181{bottom:989.280000px;}
.y8_c00181{bottom:990.720000px;}
.yb_c00181{bottom:991.440000px;}
.ya_c00181{bottom:992.160000px;}
.y4_c00181{bottom:1031.760000px;}
.y6_c00181{bottom:1032.480000px;}
.y2_c00181{bottom:1033.200000px;}
.y7_c00181{bottom:1033.920000px;}
.y3_c00181{bottom:1034.640000px;}
.y5_c00181{bottom:1036.080000px;}
.y1_c00181{bottom:1090.080000px;}
.h11_c00181{height:20.733750px;}
.h12_c00181{height:28.508906px;}
.h7_c00181{height:31.100625px;}
.he_c00181{height:33.692344px;}
.hb_c00181{height:36.284062px;}
.h9_c00181{height:38.875781px;}
.ha_c00181{height:41.467500px;}
.hf_c00181{height:44.059219px;}
.hc_c00181{height:46.650937px;}
.h8_c00181{height:49.242656px;}
.h5_c00181{height:51.834375px;}
.h13_c00181{height:52.410937px;}
.h4_c00181{height:54.426094px;}
.h3_c00181{height:55.002656px;}
.h10_c00181{height:57.017812px;}
.h6_c00181{height:59.609531px;}
.hd_c00181{height:62.201250px;}
.h2_c00181{height:67.384687px;}
.h1_c00181{height:1149.750000px;}
.h0_c00181{height:1149.840000px;}
.w1_c00181{width:791.250000px;}
.w0_c00181{width:791.280000px;}
.x0_c00181{left:0.000000px;}
.x52_c00181{left:86.400000px;}
.xc_c00181{left:90.720000px;}
.x2_c00181{left:92.160000px;}
.x25_c00181{left:123.120000px;}
.x53_c00181{left:131.760000px;}
.x49_c00181{left:133.200000px;}
.x43_c00181{left:135.360000px;}
.x5a_c00181{left:144.000000px;}
.x3f_c00181{left:153.360000px;}
.xd_c00181{left:154.800000px;}
.x4c_c00181{left:164.160000px;}
.x15_c00181{left:166.320000px;}
.x48_c00181{left:175.680000px;}
.x3_c00181{left:177.120000px;}
.x2d_c00181{left:187.920000px;}
.x5c_c00181{left:196.560000px;}
.x16_c00181{left:198.720000px;}
.x58_c00181{left:207.360000px;}
.x26_c00181{left:208.800000px;}
.x54_c00181{left:218.880000px;}
.x34_c00181{left:231.120000px;}
.x2e_c00181{left:240.480000px;}
.xe_c00181{left:241.920000px;}
.x50_c00181{left:251.280000px;}
.x35_c00181{left:253.440000px;}
.x4_c00181{left:262.800000px;}
.x1d_c00181{left:272.880000px;}
.xf_c00181{left:274.320000px;}
.x60_c00181{left:283.680000px;}
.x1e_c00181{left:294.480000px;}
.x17_c00181{left:295.920000px;}
.x1f_c00181{left:306.720000px;}
.x2f_c00181{left:316.080000px;}
.x10_c00181{left:317.520000px;}
.x4a_c00181{left:326.880000px;}
.x28_c00181{left:328.320000px;}
.x18_c00181{left:339.120000px;}
.x3c_c00181{left:348.480000px;}
.x5b_c00181{left:349.920000px;}
.x55_c00181{left:358.560000px;}
.x29_c00181{left:360.720000px;}
.x30_c00181{left:362.160000px;}
.x31_c00181{left:370.800000px;}
.x40_c00181{left:380.880000px;}
.x20_c00181{left:382.320000px;}
.x56_c00181{left:390.960000px;}
.x36_c00181{left:392.400000px;}
.x5_c00181{left:403.920000px;}
.x23_c00181{left:414.000000px;}
.x3d_c00181{left:424.080000px;}
.x11_c00181{left:425.520000px;}
.x59_c00181{left:434.880000px;}
.x2a_c00181{left:445.680000px;}
.x12_c00181{left:457.920000px;}
.x39_c00181{left:467.280000px;}
.x4d_c00181{left:478.800000px;}
.x19_c00181{left:480.960000px;}
.x21_c00181{left:490.320000px;}
.x57_c00181{left:493.920000px;}
.x5d_c00181{left:498.960000px;}
.x3e_c00181{left:500.400000px;}
.x6_c00181{left:501.840000px;}
.x4e_c00181{left:509.760000px;}
.x3a_c00181{left:511.920000px;}
.x44_c00181{left:521.280000px;}
.x7_c00181{left:522.720000px;}
.x37_c00181{left:532.080000px;}
.x1a_c00181{left:533.520000px;}
.x41_c00181{left:542.880000px;}
.x13_c00181{left:544.320000px;}
.x45_c00181{left:552.960000px;}
.x2b_c00181{left:555.120000px;}
.x38_c00181{left:563.760000px;}
.x8_c00181{left:565.920000px;}
.x32_c00181{left:574.560000px;}
.x22_c00181{left:576.720000px;}
.x4b_c00181{left:585.360000px;}
.x1b_c00181{left:587.520000px;}
.x42_c00181{left:596.880000px;}
.x2c_c00181{left:606.960000px;}
.x27_c00181{left:608.400000px;}
.x46_c00181{left:617.760000px;}
.x9_c00181{left:619.200000px;}
.x5e_c00181{left:627.120000px;}
.x1c_c00181{left:630.000000px;}
.x51_c00181{left:637.920000px;}
.x24_c00181{left:640.080000px;}
.xa_c00181{left:650.880000px;}
.x3b_c00181{left:660.240000px;}
.x14_c00181{left:661.680000px;}
.x5f_c00181{left:669.600000px;}
.x4f_c00181{left:671.040000px;}
.xb_c00181{left:673.920000px;}
.x47_c00181{left:681.840000px;}
.x61_c00181{left:692.640000px;}
.x33_c00181{left:704.160000px;}
.x1_c00181{left:714.960000px;}
@media print{
.v2_c00181{vertical-align:-12.800000pt;}
.v3_c00181{vertical-align:-2.560000pt;}
.v0_c00181{vertical-align:0.000000pt;}
.v1_c00181{vertical-align:5.120000pt;}
.v4_c00181{vertical-align:7.680000pt;}
.ls0_c00181{letter-spacing:0.000000pt;}
.ws3_c00181{word-spacing:-5.428693pt;}
.ws2_c00181{word-spacing:-0.617387pt;}
.ws5_c00181{word-spacing:0.000000pt;}
.ws1_c00181{word-spacing:0.401067pt;}
.ws0_c00181{word-spacing:1.045333pt;}
.ws4_c00181{word-spacing:1.861760pt;}
.fse_c00181{font-size:20.480000pt;}
.fsf_c00181{font-size:28.160000pt;}
.fs6_c00181{font-size:30.720000pt;}
.fsb_c00181{font-size:33.280000pt;}
.fs8_c00181{font-size:35.840000pt;}
.fs1_c00181{font-size:38.400000pt;}
.fs7_c00181{font-size:40.960000pt;}
.fsc_c00181{font-size:43.520000pt;}
.fs9_c00181{font-size:46.080000pt;}
.fs2_c00181{font-size:48.640000pt;}
.fs4_c00181{font-size:51.200000pt;}
.fs3_c00181{font-size:53.760000pt;}
.fsd_c00181{font-size:56.320000pt;}
.fs5_c00181{font-size:58.880000pt;}
.fsa_c00181{font-size:61.440000pt;}
.fs0_c00181{font-size:66.560000pt;}
.y0_c00181{bottom:0.000000pt;}
.y77_c00181{bottom:73.600000pt;}
.y76_c00181{bottom:74.240000pt;}
.y7a_c00181{bottom:75.520000pt;}
.y78_c00181{bottom:76.160000pt;}
.y75_c00181{bottom:76.800000pt;}
.y79_c00181{bottom:77.440000pt;}
.y7b_c00181{bottom:78.080000pt;}
.y74_c00181{bottom:79.360000pt;}
.y71_c00181{bottom:112.640000pt;}
.y72_c00181{bottom:113.920000pt;}
.y70_c00181{bottom:114.560000pt;}
.y73_c00181{bottom:115.200000pt;}
.y6f_c00181{bottom:115.840000pt;}
.y6e_c00181{bottom:117.760000pt;}
.y6c_c00181{bottom:151.680000pt;}
.y6b_c00181{bottom:152.320000pt;}
.y6d_c00181{bottom:152.960000pt;}
.y6a_c00181{bottom:153.600000pt;}
.y69_c00181{bottom:154.880000pt;}
.y67_c00181{bottom:188.160000pt;}
.y66_c00181{bottom:190.720000pt;}
.y65_c00181{bottom:191.360000pt;}
.y68_c00181{bottom:192.000000pt;}
.y64_c00181{bottom:192.640000pt;}
.y60_c00181{bottom:227.200000pt;}
.y62_c00181{bottom:227.840000pt;}
.y63_c00181{bottom:228.480000pt;}
.y5f_c00181{bottom:229.120000pt;}
.y5d_c00181{bottom:229.760000pt;}
.y5e_c00181{bottom:230.400000pt;}
.y61_c00181{bottom:231.040000pt;}
.y58_c00181{bottom:265.600000pt;}
.y5a_c00181{bottom:266.240000pt;}
.y5b_c00181{bottom:266.880000pt;}
.y57_c00181{bottom:267.520000pt;}
.y59_c00181{bottom:268.160000pt;}
.y5c_c00181{bottom:268.800000pt;}
.y56_c00181{bottom:269.440000pt;}
.y55_c00181{bottom:304.640000pt;}
.y53_c00181{bottom:305.920000pt;}
.y54_c00181{bottom:306.560000pt;}
.y52_c00181{bottom:307.200000pt;}
.y51_c00181{bottom:307.840000pt;}
.y4e_c00181{bottom:342.400000pt;}
.y50_c00181{bottom:343.040000pt;}
.y4d_c00181{bottom:343.680000pt;}
.y4c_c00181{bottom:344.960000pt;}
.y4f_c00181{bottom:345.600000pt;}
.y4a_c00181{bottom:381.440000pt;}
.y4b_c00181{bottom:382.080000pt;}
.y48_c00181{bottom:382.720000pt;}
.y47_c00181{bottom:383.360000pt;}
.y49_c00181{bottom:384.000000pt;}
.y43_c00181{bottom:420.480000pt;}
.y45_c00181{bottom:421.120000pt;}
.y44_c00181{bottom:421.760000pt;}
.y46_c00181{bottom:422.400000pt;}
.y42_c00181{bottom:423.040000pt;}
.y41_c00181{bottom:457.600000pt;}
.y40_c00181{bottom:458.240000pt;}
.y3f_c00181{bottom:460.160000pt;}
.y3e_c00181{bottom:460.800000pt;}
.y3c_c00181{bottom:496.000000pt;}
.y3b_c00181{bottom:496.640000pt;}
.y3d_c00181{bottom:497.280000pt;}
.y3a_c00181{bottom:497.920000pt;}
.y39_c00181{bottom:498.560000pt;}
.y35_c00181{bottom:535.040000pt;}
.y38_c00181{bottom:535.680000pt;}
.y36_c00181{bottom:536.320000pt;}
.y37_c00181{bottom:536.960000pt;}
.y34_c00181{bottom:571.520000pt;}
.y33_c00181{bottom:572.160000pt;}
.y31_c00181{bottom:574.080000pt;}
.y32_c00181{bottom:574.720000pt;}
.y2e_c00181{bottom:611.200000pt;}
.y2d_c00181{bottom:612.480000pt;}
.y2c_c00181{bottom:613.120000pt;}
.y2f_c00181{bottom:613.760000pt;}
.y30_c00181{bottom:615.680000pt;}
.y2a_c00181{bottom:648.320000pt;}
.y29_c00181{bottom:648.960000pt;}
.y27_c00181{bottom:649.600000pt;}
.y2b_c00181{bottom:650.240000pt;}
.y26_c00181{bottom:650.880000pt;}
.y28_c00181{bottom:651.520000pt;}
.y22_c00181{bottom:686.720000pt;}
.y25_c00181{bottom:688.000000pt;}
.y24_c00181{bottom:688.640000pt;}
.y21_c00181{bottom:689.280000pt;}
.y23_c00181{bottom:689.920000pt;}
.y1d_c00181{bottom:725.760000pt;}
.y1c_c00181{bottom:726.400000pt;}
.y1f_c00181{bottom:727.040000pt;}
.y20_c00181{bottom:727.680000pt;}
.y1e_c00181{bottom:728.320000pt;}
.y1b_c00181{bottom:762.880000pt;}
.y18_c00181{bottom:764.160000pt;}
.y17_c00181{bottom:765.440000pt;}
.y1a_c00181{bottom:766.080000pt;}
.y19_c00181{bottom:766.720000pt;}
.y13_c00181{bottom:801.920000pt;}
.y12_c00181{bottom:802.560000pt;}
.y16_c00181{bottom:803.840000pt;}
.y11_c00181{bottom:804.480000pt;}
.y15_c00181{bottom:805.120000pt;}
.y14_c00181{bottom:805.760000pt;}
.y10_c00181{bottom:841.600000pt;}
.yd_c00181{bottom:842.240000pt;}
.ye_c00181{bottom:842.880000pt;}
.yf_c00181{bottom:843.520000pt;}
.yc_c00181{bottom:878.720000pt;}
.y9_c00181{bottom:879.360000pt;}
.y8_c00181{bottom:880.640000pt;}
.yb_c00181{bottom:881.280000pt;}
.ya_c00181{bottom:881.920000pt;}
.y4_c00181{bottom:917.120000pt;}
.y6_c00181{bottom:917.760000pt;}
.y2_c00181{bottom:918.400000pt;}
.y7_c00181{bottom:919.040000pt;}
.y3_c00181{bottom:919.680000pt;}
.y5_c00181{bottom:920.960000pt;}
.y1_c00181{bottom:968.960000pt;}
.h11_c00181{height:18.430000pt;}
.h12_c00181{height:25.341250pt;}
.h7_c00181{height:27.645000pt;}
.he_c00181{height:29.948750pt;}
.hb_c00181{height:32.252500pt;}
.h9_c00181{height:34.556250pt;}
.ha_c00181{height:36.860000pt;}
.hf_c00181{height:39.163750pt;}
.hc_c00181{height:41.467500pt;}
.h8_c00181{height:43.771250pt;}
.h5_c00181{height:46.075000pt;}
.h13_c00181{height:46.587500pt;}
.h4_c00181{height:48.378750pt;}
.h3_c00181{height:48.891250pt;}
.h10_c00181{height:50.682500pt;}
.h6_c00181{height:52.986250pt;}
.hd_c00181{height:55.290000pt;}
.h2_c00181{height:59.897500pt;}
.h1_c00181{height:1022.000000pt;}
.h0_c00181{height:1022.080000pt;}
.w1_c00181{width:703.333333pt;}
.w0_c00181{width:703.360000pt;}
.x0_c00181{left:0.000000pt;}
.x52_c00181{left:76.800000pt;}
.xc_c00181{left:80.640000pt;}
.x2_c00181{left:81.920000pt;}
.x25_c00181{left:109.440000pt;}
.x53_c00181{left:117.120000pt;}
.x49_c00181{left:118.400000pt;}
.x43_c00181{left:120.320000pt;}
.x5a_c00181{left:128.000000pt;}
.x3f_c00181{left:136.320000pt;}
.xd_c00181{left:137.600000pt;}
.x4c_c00181{left:145.920000pt;}
.x15_c00181{left:147.840000pt;}
.x48_c00181{left:156.160000pt;}
.x3_c00181{left:157.440000pt;}
.x2d_c00181{left:167.040000pt;}
.x5c_c00181{left:174.720000pt;}
.x16_c00181{left:176.640000pt;}
.x58_c00181{left:184.320000pt;}
.x26_c00181{left:185.600000pt;}
.x54_c00181{left:194.560000pt;}
.x34_c00181{left:205.440000pt;}
.x2e_c00181{left:213.760000pt;}
.xe_c00181{left:215.040000pt;}
.x50_c00181{left:223.360000pt;}
.x35_c00181{left:225.280000pt;}
.x4_c00181{left:233.600000pt;}
.x1d_c00181{left:242.560000pt;}
.xf_c00181{left:243.840000pt;}
.x60_c00181{left:252.160000pt;}
.x1e_c00181{left:261.760000pt;}
.x17_c00181{left:263.040000pt;}
.x1f_c00181{left:272.640000pt;}
.x2f_c00181{left:280.960000pt;}
.x10_c00181{left:282.240000pt;}
.x4a_c00181{left:290.560000pt;}
.x28_c00181{left:291.840000pt;}
.x18_c00181{left:301.440000pt;}
.x3c_c00181{left:309.760000pt;}
.x5b_c00181{left:311.040000pt;}
.x55_c00181{left:318.720000pt;}
.x29_c00181{left:320.640000pt;}
.x30_c00181{left:321.920000pt;}
.x31_c00181{left:329.600000pt;}
.x40_c00181{left:338.560000pt;}
.x20_c00181{left:339.840000pt;}
.x56_c00181{left:347.520000pt;}
.x36_c00181{left:348.800000pt;}
.x5_c00181{left:359.040000pt;}
.x23_c00181{left:368.000000pt;}
.x3d_c00181{left:376.960000pt;}
.x11_c00181{left:378.240000pt;}
.x59_c00181{left:386.560000pt;}
.x2a_c00181{left:396.160000pt;}
.x12_c00181{left:407.040000pt;}
.x39_c00181{left:415.360000pt;}
.x4d_c00181{left:425.600000pt;}
.x19_c00181{left:427.520000pt;}
.x21_c00181{left:435.840000pt;}
.x57_c00181{left:439.040000pt;}
.x5d_c00181{left:443.520000pt;}
.x3e_c00181{left:444.800000pt;}
.x6_c00181{left:446.080000pt;}
.x4e_c00181{left:453.120000pt;}
.x3a_c00181{left:455.040000pt;}
.x44_c00181{left:463.360000pt;}
.x7_c00181{left:464.640000pt;}
.x37_c00181{left:472.960000pt;}
.x1a_c00181{left:474.240000pt;}
.x41_c00181{left:482.560000pt;}
.x13_c00181{left:483.840000pt;}
.x45_c00181{left:491.520000pt;}
.x2b_c00181{left:493.440000pt;}
.x38_c00181{left:501.120000pt;}
.x8_c00181{left:503.040000pt;}
.x32_c00181{left:510.720000pt;}
.x22_c00181{left:512.640000pt;}
.x4b_c00181{left:520.320000pt;}
.x1b_c00181{left:522.240000pt;}
.x42_c00181{left:530.560000pt;}
.x2c_c00181{left:539.520000pt;}
.x27_c00181{left:540.800000pt;}
.x46_c00181{left:549.120000pt;}
.x9_c00181{left:550.400000pt;}
.x5e_c00181{left:557.440000pt;}
.x1c_c00181{left:560.000000pt;}
.x51_c00181{left:567.040000pt;}
.x24_c00181{left:568.960000pt;}
.xa_c00181{left:578.560000pt;}
.x3b_c00181{left:586.880000pt;}
.x14_c00181{left:588.160000pt;}
.x5f_c00181{left:595.200000pt;}
.x4f_c00181{left:596.480000pt;}
.xb_c00181{left:599.040000pt;}
.x47_c00181{left:606.080000pt;}
.x61_c00181{left:615.680000pt;}
.x33_c00181{left:625.920000pt;}
.x1_c00181{left:635.520000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d233eca970cea651db76e209.woff2')format("woff");}.ff1_c00182{font-family:ff1_c00182;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m53_c00182{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00182{transform:matrix(0.242775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242775,0.000000,0.000000,0.250000,0,0);}
.m3c_c00182{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);}
.m52_c00182{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_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);}
.m1f_c00182{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m35_c00182{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m19_c00182{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);}
.m3a_c00182{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00182{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m36_c00182{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00182{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m50_c00182{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mf_c00182{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00182{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m39_c00182{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m24_c00182{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m4_c00182{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m48_c00182{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m22_c00182{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00182{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mc_c00182{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m57_c00182{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m34_c00182{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00182{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m0_c00182{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);}
.m45_c00182{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m12_c00182{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00182{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m11_c00182{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00182{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);}
.m4b_c00182{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m43_c00182{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m7_c00182{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m9_c00182{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);}
.m37_c00182{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m33_c00182{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.md_c00182{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);}
.m6_c00182{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m1_c00182{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m15_c00182{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);}
.m1a_c00182{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m10_c00182{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);}
.m51_c00182{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m2_c00182{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00182{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m27_c00182{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m3e_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);}
.m18_c00182{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m21_c00182{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);}
.m49_c00182{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);}
.m56_c00182{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);}
.m31_c00182{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00182{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00182{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m5_c00182{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m3_c00182{transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);}
.m14_c00182{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m25_c00182{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);}
.m4e_c00182{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m59_c00182{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);}
.m5a_c00182{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m16_c00182{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);}
.m47_c00182{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m8_c00182{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00182{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m46_c00182{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m23_c00182{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00182{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m30_c00182{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);}
.me_c00182{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m17_c00182{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m28_c00182{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.mb_c00182{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m44_c00182{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00182{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);}
.m42_c00182{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00182{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m55_c00182{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);}
.m41_c00182{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m26_c00182{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m32_c00182{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00182{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m40_c00182{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m29_c00182{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);}
.m20_c00182{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m58_c00182{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);}
.m1d_c00182{transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);}
.m38_c00182{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);}
.m54_c00182{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.ma_c00182{transform:matrix(1.115000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.115000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.115000,0.000000,0.000000,0.250000,0,0);}
.v0_c00182{vertical-align:0.000000px;}
.v1_c00182{vertical-align:2.880000px;}
.ls0_c00182{letter-spacing:0.000000px;}
.sc__c00182{text-shadow:none;}
.sc0_c00182{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00182{-webkit-text-stroke:0px transparent;}
.sc0_c00182{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00182{word-spacing:-1.224000px;}
.ws1_c00182{word-spacing:0.000000px;}
.fc0_c00182{color:transparent;}
.fs10_c00182{font-size:2.880000px;}
.fsf_c00182{font-size:20.160000px;}
.fse_c00182{font-size:34.560000px;}
.fs5_c00182{font-size:37.440000px;}
.fs6_c00182{font-size:40.320000px;}
.fsb_c00182{font-size:43.200000px;}
.fsd_c00182{font-size:46.080000px;}
.fs8_c00182{font-size:48.960000px;}
.fs1_c00182{font-size:51.840000px;}
.fs2_c00182{font-size:54.720000px;}
.fs7_c00182{font-size:57.600000px;}
.fs9_c00182{font-size:60.480000px;}
.fs3_c00182{font-size:63.360000px;}
.fs4_c00182{font-size:66.240000px;}
.fsa_c00182{font-size:69.120000px;}
.fsc_c00182{font-size:72.000000px;}
.fs11_c00182{font-size:74.880000px;}
.fs0_c00182{font-size:77.760000px;}
.y0_c00182{bottom:0.000000px;}
.y6b_c00182{bottom:60.480000px;}
.y6e_c00182{bottom:61.200000px;}
.y6d_c00182{bottom:62.640000px;}
.y6c_c00182{bottom:63.360000px;}
.y6a_c00182{bottom:64.080000px;}
.y66_c00182{bottom:105.120000px;}
.y67_c00182{bottom:106.560000px;}
.y68_c00182{bottom:107.280000px;}
.y69_c00182{bottom:108.000000px;}
.y65_c00182{bottom:108.720000px;}
.y64_c00182{bottom:110.880000px;}
.y60_c00182{bottom:148.320000px;}
.y61_c00182{bottom:150.480000px;}
.y62_c00182{bottom:151.920000px;}
.y63_c00182{bottom:152.640000px;}
.y5f_c00182{bottom:203.760000px;}
.y5e_c00182{bottom:205.920000px;}
.y5b_c00182{bottom:244.800000px;}
.y59_c00182{bottom:245.520000px;}
.y5c_c00182{bottom:246.240000px;}
.y5a_c00182{bottom:247.680000px;}
.y58_c00182{bottom:248.400000px;}
.y5d_c00182{bottom:249.120000px;}
.y55_c00182{bottom:288.000000px;}
.y56_c00182{bottom:288.720000px;}
.y52_c00182{bottom:289.440000px;}
.y54_c00182{bottom:290.880000px;}
.y53_c00182{bottom:291.600000px;}
.y57_c00182{bottom:292.320000px;}
.y4e_c00182{bottom:330.480000px;}
.y50_c00182{bottom:331.920000px;}
.y51_c00182{bottom:332.640000px;}
.y4f_c00182{bottom:333.360000px;}
.y4d_c00182{bottom:334.080000px;}
.y4c_c00182{bottom:334.800000px;}
.y4b_c00182{bottom:388.800000px;}
.y47_c00182{bottom:427.680000px;}
.y49_c00182{bottom:428.400000px;}
.y45_c00182{bottom:429.120000px;}
.y48_c00182{bottom:430.560000px;}
.y46_c00182{bottom:431.280000px;}
.y4a_c00182{bottom:432.000000px;}
.y44_c00182{bottom:471.600000px;}
.y42_c00182{bottom:472.320000px;}
.y43_c00182{bottom:473.760000px;}
.y41_c00182{bottom:474.480000px;}
.y3e_c00182{bottom:514.800000px;}
.y3f_c00182{bottom:515.520000px;}
.y40_c00182{bottom:516.240000px;}
.y3d_c00182{bottom:516.960000px;}
.y3c_c00182{bottom:517.680000px;}
.y3a_c00182{bottom:557.280000px;}
.y39_c00182{bottom:559.440000px;}
.y3b_c00182{bottom:560.160000px;}
.y38_c00182{bottom:560.880000px;}
.y37_c00182{bottom:561.600000px;}
.y36_c00182{bottom:600.480000px;}
.y35_c00182{bottom:603.360000px;}
.y34_c00182{bottom:604.080000px;}
.y33_c00182{bottom:604.800000px;}
.y2f_c00182{bottom:643.680000px;}
.y31_c00182{bottom:645.840000px;}
.y30_c00182{bottom:646.560000px;}
.y32_c00182{bottom:649.440000px;}
.y2d_c00182{bottom:686.880000px;}
.y2b_c00182{bottom:687.600000px;}
.y2e_c00182{bottom:688.320000px;}
.y2c_c00182{bottom:689.040000px;}
.y2a_c00182{bottom:689.760000px;}
.y27_c00182{bottom:730.080000px;}
.y26_c00182{bottom:730.800000px;}
.y29_c00182{bottom:731.520000px;}
.y25_c00182{bottom:732.960000px;}
.y28_c00182{bottom:733.680000px;}
.y23_c00182{bottom:775.440000px;}
.y22_c00182{bottom:776.160000px;}
.y24_c00182{bottom:776.880000px;}
.y1d_c00182{bottom:817.200000px;}
.y21_c00182{bottom:817.920000px;}
.y1f_c00182{bottom:819.360000px;}
.y20_c00182{bottom:820.080000px;}
.y1e_c00182{bottom:820.800000px;}
.y19_c00182{bottom:859.680000px;}
.y1a_c00182{bottom:860.400000px;}
.y1b_c00182{bottom:861.120000px;}
.y1c_c00182{bottom:861.840000px;}
.y18_c00182{bottom:862.560000px;}
.y12_c00182{bottom:902.160000px;}
.y16_c00182{bottom:902.880000px;}
.y14_c00182{bottom:904.320000px;}
.y17_c00182{bottom:905.040000px;}
.y13_c00182{bottom:905.760000px;}
.y15_c00182{bottom:906.480000px;}
.y11_c00182{bottom:943.920000px;}
.yd_c00182{bottom:947.520000px;}
.y10_c00182{bottom:948.240000px;}
.ye_c00182{bottom:948.960000px;}
.yf_c00182{bottom:949.680000px;}
.ya_c00182{bottom:989.280000px;}
.yc_c00182{bottom:990.000000px;}
.y8_c00182{bottom:991.440000px;}
.y9_c00182{bottom:992.160000px;}
.yb_c00182{bottom:992.880000px;}
.y2_c00182{bottom:1031.040000px;}
.y7_c00182{bottom:1031.760000px;}
.y3_c00182{bottom:1032.480000px;}
.y6_c00182{bottom:1033.200000px;}
.y5_c00182{bottom:1034.640000px;}
.y4_c00182{bottom:1035.360000px;}
.y1_c00182{bottom:1090.800000px;}
.h13_c00182{height:2.591719px;}
.h12_c00182{height:18.142031px;}
.h10_c00182{height:31.100625px;}
.h7_c00182{height:33.692344px;}
.h8_c00182{height:36.284062px;}
.hd_c00182{height:38.875781px;}
.hf_c00182{height:41.467500px;}
.ha_c00182{height:44.059219px;}
.h3_c00182{height:46.650937px;}
.h4_c00182{height:49.242656px;}
.h9_c00182{height:51.834375px;}
.hb_c00182{height:54.426094px;}
.h11_c00182{height:54.714375px;}
.h5_c00182{height:57.017812px;}
.h6_c00182{height:59.609531px;}
.hc_c00182{height:62.201250px;}
.he_c00182{height:64.792969px;}
.h14_c00182{height:67.384687px;}
.h2_c00182{height:69.976406px;}
.h1_c00182{height:1151.250000px;}
.h0_c00182{height:1151.280000px;}
.w0_c00182{width:792.720000px;}
.w1_c00182{width:792.750000px;}
.x0_c00182{left:0.000000px;}
.x2_c00182{left:95.040000px;}
.x3c_c00182{left:105.840000px;}
.x57_c00182{left:125.280000px;}
.x1d_c00182{left:127.440000px;}
.x3d_c00182{left:136.800000px;}
.x23_c00182{left:138.240000px;}
.xb_c00182{left:146.880000px;}
.x2d_c00182{left:158.400000px;}
.x3_c00182{left:159.840000px;}
.x3e_c00182{left:169.920000px;}
.x51_c00182{left:179.280000px;}
.x14_c00182{left:180.720000px;}
.xc_c00182{left:190.080000px;}
.x48_c00182{left:200.880000px;}
.x31_c00182{left:203.040000px;}
.x2e_c00182{left:211.680000px;}
.x2b_c00182{left:223.200000px;}
.x15_c00182{left:234.000000px;}
.x4b_c00182{left:244.080000px;}
.x3f_c00182{left:254.880000px;}
.x4_c00182{left:256.320000px;}
.xd_c00182{left:267.120000px;}
.x1e_c00182{left:269.280000px;}
.x41_c00182{left:276.480000px;}
.x59_c00182{left:288.000000px;}
.x32_c00182{left:289.440000px;}
.x5_c00182{left:298.080000px;}
.x16_c00182{left:299.520000px;}
.x1f_c00182{left:310.320000px;}
.x37_c00182{left:320.400000px;}
.x24_c00182{left:331.200000px;}
.x45_c00182{left:341.280000px;}
.x17_c00182{left:343.440000px;}
.x25_c00182{left:353.520000px;}
.x6_c00182{left:363.600000px;}
.x18_c00182{left:365.040000px;}
.x52_c00182{left:372.960000px;}
.x35_c00182{left:374.400000px;}
.xe_c00182{left:375.840000px;}
.x26_c00182{left:385.200000px;}
.x4c_c00182{left:395.280000px;}
.x19_c00182{left:397.440000px;}
.xf_c00182{left:406.800000px;}
.x40_c00182{left:408.240000px;}
.x53_c00182{left:416.160000px;}
.x7_c00182{left:418.320000px;}
.x36_c00182{left:427.680000px;}
.x8_c00182{left:440.640000px;}
.x4d_c00182{left:448.560000px;}
.x20_c00182{left:450.000000px;}
.x1a_c00182{left:451.440000px;}
.x2f_c00182{left:460.080000px;}
.x4e_c00182{left:470.880000px;}
.x46_c00182{left:481.680000px;}
.x9_c00182{left:483.840000px;}
.x4f_c00182{left:491.040000px;}
.x54_c00182{left:492.480000px;}
.x38_c00182{left:493.920000px;}
.x3b_c00182{left:502.560000px;}
.x10_c00182{left:504.720000px;}
.x50_c00182{left:522.720000px;}
.x30_c00182{left:525.600000px;}
.x1b_c00182{left:527.040000px;}
.x33_c00182{left:535.680000px;}
.x5a_c00182{left:545.760000px;}
.x11_c00182{left:547.200000px;}
.x27_c00182{left:558.000000px;}
.x56_c00182{left:565.920000px;}
.x49_c00182{left:567.360000px;}
.xa_c00182{left:569.520000px;}
.x39_c00182{left:578.880000px;}
.x3a_c00182{left:589.680000px;}
.x28_c00182{left:600.480000px;}
.x58_c00182{left:611.280000px;}
.x12_c00182{left:612.720000px;}
.x42_c00182{left:621.360000px;}
.x44_c00182{left:631.440000px;}
.x29_c00182{left:632.880000px;}
.x21_c00182{left:643.680000px;}
.x1c_c00182{left:645.120000px;}
.x2c_c00182{left:655.200000px;}
.x4a_c00182{left:663.120000px;}
.x34_c00182{left:664.560000px;}
.x2a_c00182{left:676.800000px;}
.x43_c00182{left:685.440000px;}
.x55_c00182{left:694.800000px;}
.x47_c00182{left:696.240000px;}
.x22_c00182{left:697.680000px;}
.x13_c00182{left:707.760000px;}
.x1_c00182{left:714.960000px;}
@media print{
.v0_c00182{vertical-align:0.000000pt;}
.v1_c00182{vertical-align:2.560000pt;}
.ls0_c00182{letter-spacing:0.000000pt;}
.ws0_c00182{word-spacing:-1.088000pt;}
.ws1_c00182{word-spacing:0.000000pt;}
.fs10_c00182{font-size:2.560000pt;}
.fsf_c00182{font-size:17.920000pt;}
.fse_c00182{font-size:30.720000pt;}
.fs5_c00182{font-size:33.280000pt;}
.fs6_c00182{font-size:35.840000pt;}
.fsb_c00182{font-size:38.400000pt;}
.fsd_c00182{font-size:40.960000pt;}
.fs8_c00182{font-size:43.520000pt;}
.fs1_c00182{font-size:46.080000pt;}
.fs2_c00182{font-size:48.640000pt;}
.fs7_c00182{font-size:51.200000pt;}
.fs9_c00182{font-size:53.760000pt;}
.fs3_c00182{font-size:56.320000pt;}
.fs4_c00182{font-size:58.880000pt;}
.fsa_c00182{font-size:61.440000pt;}
.fsc_c00182{font-size:64.000000pt;}
.fs11_c00182{font-size:66.560000pt;}
.fs0_c00182{font-size:69.120000pt;}
.y0_c00182{bottom:0.000000pt;}
.y6b_c00182{bottom:53.760000pt;}
.y6e_c00182{bottom:54.400000pt;}
.y6d_c00182{bottom:55.680000pt;}
.y6c_c00182{bottom:56.320000pt;}
.y6a_c00182{bottom:56.960000pt;}
.y66_c00182{bottom:93.440000pt;}
.y67_c00182{bottom:94.720000pt;}
.y68_c00182{bottom:95.360000pt;}
.y69_c00182{bottom:96.000000pt;}
.y65_c00182{bottom:96.640000pt;}
.y64_c00182{bottom:98.560000pt;}
.y60_c00182{bottom:131.840000pt;}
.y61_c00182{bottom:133.760000pt;}
.y62_c00182{bottom:135.040000pt;}
.y63_c00182{bottom:135.680000pt;}
.y5f_c00182{bottom:181.120000pt;}
.y5e_c00182{bottom:183.040000pt;}
.y5b_c00182{bottom:217.600000pt;}
.y59_c00182{bottom:218.240000pt;}
.y5c_c00182{bottom:218.880000pt;}
.y5a_c00182{bottom:220.160000pt;}
.y58_c00182{bottom:220.800000pt;}
.y5d_c00182{bottom:221.440000pt;}
.y55_c00182{bottom:256.000000pt;}
.y56_c00182{bottom:256.640000pt;}
.y52_c00182{bottom:257.280000pt;}
.y54_c00182{bottom:258.560000pt;}
.y53_c00182{bottom:259.200000pt;}
.y57_c00182{bottom:259.840000pt;}
.y4e_c00182{bottom:293.760000pt;}
.y50_c00182{bottom:295.040000pt;}
.y51_c00182{bottom:295.680000pt;}
.y4f_c00182{bottom:296.320000pt;}
.y4d_c00182{bottom:296.960000pt;}
.y4c_c00182{bottom:297.600000pt;}
.y4b_c00182{bottom:345.600000pt;}
.y47_c00182{bottom:380.160000pt;}
.y49_c00182{bottom:380.800000pt;}
.y45_c00182{bottom:381.440000pt;}
.y48_c00182{bottom:382.720000pt;}
.y46_c00182{bottom:383.360000pt;}
.y4a_c00182{bottom:384.000000pt;}
.y44_c00182{bottom:419.200000pt;}
.y42_c00182{bottom:419.840000pt;}
.y43_c00182{bottom:421.120000pt;}
.y41_c00182{bottom:421.760000pt;}
.y3e_c00182{bottom:457.600000pt;}
.y3f_c00182{bottom:458.240000pt;}
.y40_c00182{bottom:458.880000pt;}
.y3d_c00182{bottom:459.520000pt;}
.y3c_c00182{bottom:460.160000pt;}
.y3a_c00182{bottom:495.360000pt;}
.y39_c00182{bottom:497.280000pt;}
.y3b_c00182{bottom:497.920000pt;}
.y38_c00182{bottom:498.560000pt;}
.y37_c00182{bottom:499.200000pt;}
.y36_c00182{bottom:533.760000pt;}
.y35_c00182{bottom:536.320000pt;}
.y34_c00182{bottom:536.960000pt;}
.y33_c00182{bottom:537.600000pt;}
.y2f_c00182{bottom:572.160000pt;}
.y31_c00182{bottom:574.080000pt;}
.y30_c00182{bottom:574.720000pt;}
.y32_c00182{bottom:577.280000pt;}
.y2d_c00182{bottom:610.560000pt;}
.y2b_c00182{bottom:611.200000pt;}
.y2e_c00182{bottom:611.840000pt;}
.y2c_c00182{bottom:612.480000pt;}
.y2a_c00182{bottom:613.120000pt;}
.y27_c00182{bottom:648.960000pt;}
.y26_c00182{bottom:649.600000pt;}
.y29_c00182{bottom:650.240000pt;}
.y25_c00182{bottom:651.520000pt;}
.y28_c00182{bottom:652.160000pt;}
.y23_c00182{bottom:689.280000pt;}
.y22_c00182{bottom:689.920000pt;}
.y24_c00182{bottom:690.560000pt;}
.y1d_c00182{bottom:726.400000pt;}
.y21_c00182{bottom:727.040000pt;}
.y1f_c00182{bottom:728.320000pt;}
.y20_c00182{bottom:728.960000pt;}
.y1e_c00182{bottom:729.600000pt;}
.y19_c00182{bottom:764.160000pt;}
.y1a_c00182{bottom:764.800000pt;}
.y1b_c00182{bottom:765.440000pt;}
.y1c_c00182{bottom:766.080000pt;}
.y18_c00182{bottom:766.720000pt;}
.y12_c00182{bottom:801.920000pt;}
.y16_c00182{bottom:802.560000pt;}
.y14_c00182{bottom:803.840000pt;}
.y17_c00182{bottom:804.480000pt;}
.y13_c00182{bottom:805.120000pt;}
.y15_c00182{bottom:805.760000pt;}
.y11_c00182{bottom:839.040000pt;}
.yd_c00182{bottom:842.240000pt;}
.y10_c00182{bottom:842.880000pt;}
.ye_c00182{bottom:843.520000pt;}
.yf_c00182{bottom:844.160000pt;}
.ya_c00182{bottom:879.360000pt;}
.yc_c00182{bottom:880.000000pt;}
.y8_c00182{bottom:881.280000pt;}
.y9_c00182{bottom:881.920000pt;}
.yb_c00182{bottom:882.560000pt;}
.y2_c00182{bottom:916.480000pt;}
.y7_c00182{bottom:917.120000pt;}
.y3_c00182{bottom:917.760000pt;}
.y6_c00182{bottom:918.400000pt;}
.y5_c00182{bottom:919.680000pt;}
.y4_c00182{bottom:920.320000pt;}
.y1_c00182{bottom:969.600000pt;}
.h13_c00182{height:2.303750pt;}
.h12_c00182{height:16.126250pt;}
.h10_c00182{height:27.645000pt;}
.h7_c00182{height:29.948750pt;}
.h8_c00182{height:32.252500pt;}
.hd_c00182{height:34.556250pt;}
.hf_c00182{height:36.860000pt;}
.ha_c00182{height:39.163750pt;}
.h3_c00182{height:41.467500pt;}
.h4_c00182{height:43.771250pt;}
.h9_c00182{height:46.075000pt;}
.hb_c00182{height:48.378750pt;}
.h11_c00182{height:48.635000pt;}
.h5_c00182{height:50.682500pt;}
.h6_c00182{height:52.986250pt;}
.hc_c00182{height:55.290000pt;}
.he_c00182{height:57.593750pt;}
.h14_c00182{height:59.897500pt;}
.h2_c00182{height:62.201250pt;}
.h1_c00182{height:1023.333333pt;}
.h0_c00182{height:1023.360000pt;}
.w0_c00182{width:704.640000pt;}
.w1_c00182{width:704.666667pt;}
.x0_c00182{left:0.000000pt;}
.x2_c00182{left:84.480000pt;}
.x3c_c00182{left:94.080000pt;}
.x57_c00182{left:111.360000pt;}
.x1d_c00182{left:113.280000pt;}
.x3d_c00182{left:121.600000pt;}
.x23_c00182{left:122.880000pt;}
.xb_c00182{left:130.560000pt;}
.x2d_c00182{left:140.800000pt;}
.x3_c00182{left:142.080000pt;}
.x3e_c00182{left:151.040000pt;}
.x51_c00182{left:159.360000pt;}
.x14_c00182{left:160.640000pt;}
.xc_c00182{left:168.960000pt;}
.x48_c00182{left:178.560000pt;}
.x31_c00182{left:180.480000pt;}
.x2e_c00182{left:188.160000pt;}
.x2b_c00182{left:198.400000pt;}
.x15_c00182{left:208.000000pt;}
.x4b_c00182{left:216.960000pt;}
.x3f_c00182{left:226.560000pt;}
.x4_c00182{left:227.840000pt;}
.xd_c00182{left:237.440000pt;}
.x1e_c00182{left:239.360000pt;}
.x41_c00182{left:245.760000pt;}
.x59_c00182{left:256.000000pt;}
.x32_c00182{left:257.280000pt;}
.x5_c00182{left:264.960000pt;}
.x16_c00182{left:266.240000pt;}
.x1f_c00182{left:275.840000pt;}
.x37_c00182{left:284.800000pt;}
.x24_c00182{left:294.400000pt;}
.x45_c00182{left:303.360000pt;}
.x17_c00182{left:305.280000pt;}
.x25_c00182{left:314.240000pt;}
.x6_c00182{left:323.200000pt;}
.x18_c00182{left:324.480000pt;}
.x52_c00182{left:331.520000pt;}
.x35_c00182{left:332.800000pt;}
.xe_c00182{left:334.080000pt;}
.x26_c00182{left:342.400000pt;}
.x4c_c00182{left:351.360000pt;}
.x19_c00182{left:353.280000pt;}
.xf_c00182{left:361.600000pt;}
.x40_c00182{left:362.880000pt;}
.x53_c00182{left:369.920000pt;}
.x7_c00182{left:371.840000pt;}
.x36_c00182{left:380.160000pt;}
.x8_c00182{left:391.680000pt;}
.x4d_c00182{left:398.720000pt;}
.x20_c00182{left:400.000000pt;}
.x1a_c00182{left:401.280000pt;}
.x2f_c00182{left:408.960000pt;}
.x4e_c00182{left:418.560000pt;}
.x46_c00182{left:428.160000pt;}
.x9_c00182{left:430.080000pt;}
.x4f_c00182{left:436.480000pt;}
.x54_c00182{left:437.760000pt;}
.x38_c00182{left:439.040000pt;}
.x3b_c00182{left:446.720000pt;}
.x10_c00182{left:448.640000pt;}
.x50_c00182{left:464.640000pt;}
.x30_c00182{left:467.200000pt;}
.x1b_c00182{left:468.480000pt;}
.x33_c00182{left:476.160000pt;}
.x5a_c00182{left:485.120000pt;}
.x11_c00182{left:486.400000pt;}
.x27_c00182{left:496.000000pt;}
.x56_c00182{left:503.040000pt;}
.x49_c00182{left:504.320000pt;}
.xa_c00182{left:506.240000pt;}
.x39_c00182{left:514.560000pt;}
.x3a_c00182{left:524.160000pt;}
.x28_c00182{left:533.760000pt;}
.x58_c00182{left:543.360000pt;}
.x12_c00182{left:544.640000pt;}
.x42_c00182{left:552.320000pt;}
.x44_c00182{left:561.280000pt;}
.x29_c00182{left:562.560000pt;}
.x21_c00182{left:572.160000pt;}
.x1c_c00182{left:573.440000pt;}
.x2c_c00182{left:582.400000pt;}
.x4a_c00182{left:589.440000pt;}
.x34_c00182{left:590.720000pt;}
.x2a_c00182{left:601.600000pt;}
.x43_c00182{left:609.280000pt;}
.x55_c00182{left:617.600000pt;}
.x47_c00182{left:618.880000pt;}
.x22_c00182{left:620.160000pt;}
.x13_c00182{left:629.120000pt;}
.x1_c00182{left:635.520000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f8f1ae747e316cb4bc1e3561.woff2')format("woff");}.ff1_c00183{font-family:ff1_c00183;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m42_c00183{transform:matrix(0.138625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138625,0.000000,0.000000,0.250000,0,0);}
.m1d_c00183{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00183{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);}
.m2b_c00183{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m12_c00183{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m26_c00183{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);}
.m31_c00183{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mc_c00183{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m58_c00183{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00183{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m35_c00183{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00183{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00183{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m36_c00183{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00183{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00183{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00183{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00183{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m32_c00183{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00183{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m20_c00183{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00183{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);}
.m38_c00183{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);}
.m47_c00183{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);}
.m29_c00183{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m56_c00183{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m8_c00183{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);}
.m0_c00183{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m34_c00183{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m14_c00183{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.me_c00183{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m24_c00183{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m7_c00183{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m15_c00183{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);}
.m44_c00183{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m13_c00183{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);}
.m50_c00183{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m49_c00183{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);}
.m6_c00183{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m55_c00183{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);}
.m21_c00183{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);}
.m45_c00183{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.ma_c00183{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m22_c00183{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.md_c00183{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00183{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00183{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);}
.m9_c00183{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m37_c00183{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);}
.m5c_c00183{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);}
.m43_c00183{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00183{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m19_c00183{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00183{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m51_c00183{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.mf_c00183{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m39_c00183{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);}
.m27_c00183{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m4_c00183{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m3_c00183{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m48_c00183{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m46_c00183{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m28_c00183{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);}
.m2_c00183{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m18_c00183{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);}
.m11_c00183{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m17_c00183{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m30_c00183{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00183{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m40_c00183{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m41_c00183{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);}
.m57_c00183{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);}
.m5_c00183{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m10_c00183{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00183{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);}
.m16_c00183{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00183{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m53_c00183{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m52_c00183{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_c00183{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m23_c00183{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.mb_c00183{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00183{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);}
.m1a_c00183{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00183{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);}
.m25_c00183{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m33_c00183{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00183{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);}
.m4b_c00183{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00183{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m54_c00183{transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);}
.m1_c00183{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.m59_c00183{transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);}
.v1_c00183{vertical-align:-2.880000px;}
.v0_c00183{vertical-align:0.000000px;}
.ls0_c00183{letter-spacing:0.000000px;}
.sc__c00183{text-shadow:none;}
.sc0_c00183{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00183{-webkit-text-stroke:0px transparent;}
.sc0_c00183{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00183{word-spacing:-11.577600px;}
.ws2_c00183{word-spacing:0.000000px;}
.ws1_c00183{word-spacing:2.816160px;}
.fc0_c00183{color:transparent;}
.fsf_c00183{font-size:23.040000px;}
.fs10_c00183{font-size:31.680000px;}
.fsa_c00183{font-size:34.560000px;}
.fs2_c00183{font-size:37.440000px;}
.fs7_c00183{font-size:40.320000px;}
.fs3_c00183{font-size:43.200000px;}
.fse_c00183{font-size:46.080000px;}
.fs1_c00183{font-size:48.960000px;}
.fs6_c00183{font-size:51.840000px;}
.fs4_c00183{font-size:54.720000px;}
.fs8_c00183{font-size:57.600000px;}
.fs9_c00183{font-size:60.480000px;}
.fsc_c00183{font-size:63.360000px;}
.fs5_c00183{font-size:66.240000px;}
.fsd_c00183{font-size:69.120000px;}
.fsb_c00183{font-size:72.000000px;}
.fs0_c00183{font-size:74.880000px;}
.y0_c00183{bottom:0.000000px;}
.y71_c00183{bottom:118.800000px;}
.y73_c00183{bottom:120.960000px;}
.y70_c00183{bottom:121.680000px;}
.y72_c00183{bottom:122.400000px;}
.y6f_c00183{bottom:123.120000px;}
.y6b_c00183{bottom:161.280000px;}
.y6c_c00183{bottom:162.000000px;}
.y69_c00183{bottom:162.720000px;}
.y6d_c00183{bottom:164.880000px;}
.y6a_c00183{bottom:165.600000px;}
.y6e_c00183{bottom:166.320000px;}
.y65_c00183{bottom:204.480000px;}
.y67_c00183{bottom:205.200000px;}
.y64_c00183{bottom:205.920000px;}
.y66_c00183{bottom:207.360000px;}
.y63_c00183{bottom:208.080000px;}
.y68_c00183{bottom:208.800000px;}
.y62_c00183{bottom:209.520000px;}
.y5d_c00183{bottom:248.400000px;}
.y5f_c00183{bottom:249.840000px;}
.y5e_c00183{bottom:250.560000px;}
.y60_c00183{bottom:251.280000px;}
.y61_c00183{bottom:252.000000px;}
.y5c_c00183{bottom:252.720000px;}
.y58_c00183{bottom:291.600000px;}
.y5b_c00183{bottom:292.320000px;}
.y5a_c00183{bottom:293.040000px;}
.y59_c00183{bottom:293.760000px;}
.y57_c00183{bottom:294.480000px;}
.y55_c00183{bottom:334.080000px;}
.y54_c00183{bottom:336.240000px;}
.y53_c00183{bottom:336.960000px;}
.y56_c00183{bottom:337.680000px;}
.y4f_c00183{bottom:376.560000px;}
.y50_c00183{bottom:377.280000px;}
.y52_c00183{bottom:378.720000px;}
.y4e_c00183{bottom:379.440000px;}
.y51_c00183{bottom:380.160000px;}
.y4d_c00183{bottom:381.600000px;}
.y4c_c00183{bottom:419.760000px;}
.y49_c00183{bottom:420.480000px;}
.y4b_c00183{bottom:421.920000px;}
.y4a_c00183{bottom:422.640000px;}
.y48_c00183{bottom:423.360000px;}
.y47_c00183{bottom:462.240000px;}
.y45_c00183{bottom:462.960000px;}
.y44_c00183{bottom:463.680000px;}
.y46_c00183{bottom:465.840000px;}
.y40_c00183{bottom:506.160000px;}
.y41_c00183{bottom:506.880000px;}
.y3f_c00183{bottom:508.320000px;}
.y43_c00183{bottom:509.040000px;}
.y42_c00183{bottom:509.760000px;}
.y3e_c00183{bottom:510.480000px;}
.y3b_c00183{bottom:549.360000px;}
.y3a_c00183{bottom:550.080000px;}
.y3d_c00183{bottom:550.800000px;}
.y3c_c00183{bottom:552.240000px;}
.y39_c00183{bottom:552.960000px;}
.y38_c00183{bottom:606.240000px;}
.y33_c00183{bottom:645.840000px;}
.y32_c00183{bottom:646.560000px;}
.y36_c00183{bottom:647.280000px;}
.y37_c00183{bottom:648.000000px;}
.y35_c00183{bottom:648.720000px;}
.y34_c00183{bottom:649.440000px;}
.y2d_c00183{bottom:689.760000px;}
.y2e_c00183{bottom:690.480000px;}
.y31_c00183{bottom:691.200000px;}
.y2c_c00183{bottom:691.920000px;}
.y2f_c00183{bottom:692.640000px;}
.y30_c00183{bottom:693.360000px;}
.y2b_c00183{bottom:732.240000px;}
.y28_c00183{bottom:732.960000px;}
.y29_c00183{bottom:733.680000px;}
.y2a_c00183{bottom:734.400000px;}
.y27_c00183{bottom:735.120000px;}
.y26_c00183{bottom:735.840000px;}
.y25_c00183{bottom:775.440000px;}
.y22_c00183{bottom:776.160000px;}
.y21_c00183{bottom:777.600000px;}
.y23_c00183{bottom:778.320000px;}
.y24_c00183{bottom:779.040000px;}
.y1e_c00183{bottom:818.640000px;}
.y20_c00183{bottom:819.360000px;}
.y1d_c00183{bottom:820.800000px;}
.y1f_c00183{bottom:821.520000px;}
.y1a_c00183{bottom:861.840000px;}
.y1c_c00183{bottom:862.560000px;}
.y19_c00183{bottom:864.000000px;}
.y1b_c00183{bottom:864.720000px;}
.y18_c00183{bottom:903.600000px;}
.y17_c00183{bottom:904.320000px;}
.y14_c00183{bottom:905.040000px;}
.y15_c00183{bottom:906.480000px;}
.y13_c00183{bottom:907.200000px;}
.y16_c00183{bottom:907.920000px;}
.yc_c00183{bottom:946.080000px;}
.y10_c00183{bottom:946.800000px;}
.yd_c00183{bottom:947.520000px;}
.y12_c00183{bottom:948.960000px;}
.y11_c00183{bottom:949.680000px;}
.ye_c00183{bottom:950.400000px;}
.yf_c00183{bottom:951.120000px;}
.ya_c00183{bottom:991.440000px;}
.y8_c00183{bottom:992.160000px;}
.yb_c00183{bottom:992.880000px;}
.y9_c00183{bottom:993.600000px;}
.y6_c00183{bottom:1033.920000px;}
.y4_c00183{bottom:1034.640000px;}
.y2_c00183{bottom:1035.360000px;}
.y3_c00183{bottom:1036.080000px;}
.y5_c00183{bottom:1036.800000px;}
.y7_c00183{bottom:1037.520000px;}
.y1_c00183{bottom:1098.000000px;}
.h12_c00183{height:20.733750px;}
.h13_c00183{height:28.508906px;}
.hc_c00183{height:31.100625px;}
.h4_c00183{height:33.692344px;}
.h9_c00183{height:36.284062px;}
.h5_c00183{height:38.875781px;}
.h10_c00183{height:41.467500px;}
.h3_c00183{height:44.059219px;}
.h8_c00183{height:46.650937px;}
.h6_c00183{height:49.242656px;}
.h11_c00183{height:51.546094px;}
.ha_c00183{height:51.834375px;}
.hb_c00183{height:54.426094px;}
.he_c00183{height:57.017812px;}
.h7_c00183{height:59.609531px;}
.hf_c00183{height:62.201250px;}
.hd_c00183{height:64.792969px;}
.h2_c00183{height:67.384687px;}
.h1_c00183{height:1146.750000px;}
.h0_c00183{height:1146.960000px;}
.w1_c00183{width:786.000000px;}
.w0_c00183{width:786.240000px;}
.x0_c00183{left:0.000000px;}
.x2_c00183{left:87.840000px;}
.x33_c00183{left:89.280000px;}
.x41_c00183{left:90.720000px;}
.x3_c00183{left:99.360000px;}
.x4_c00183{left:109.440000px;}
.xe_c00183{left:120.960000px;}
.x18_c00183{left:130.320000px;}
.x42_c00183{left:131.760000px;}
.x4e_c00183{left:142.560000px;}
.x2b_c00183{left:151.920000px;}
.xf_c00183{left:153.360000px;}
.x43_c00183{left:162.000000px;}
.x5_c00183{left:163.440000px;}
.x52_c00183{left:164.880000px;}
.x31_c00183{left:174.240000px;}
.x59_c00183{left:185.040000px;}
.x19_c00183{left:195.840000px;}
.x46_c00183{left:205.200000px;}
.x34_c00183{left:206.640000px;}
.x3b_c00183{left:216.000000px;}
.x54_c00183{left:217.440000px;}
.x2c_c00183{left:218.880000px;}
.x3f_c00183{left:227.520000px;}
.x44_c00183{left:228.960000px;}
.x22_c00183{left:238.320000px;}
.x56_c00183{left:239.760000px;}
.x53_c00183{left:248.400000px;}
.x27_c00183{left:259.200000px;}
.x10_c00183{left:260.640000px;}
.x4c_c00183{left:270.720000px;}
.x6_c00183{left:272.160000px;}
.x11_c00183{left:282.960000px;}
.x1a_c00183{left:293.040000px;}
.x23_c00183{left:304.560000px;}
.x24_c00183{left:314.640000px;}
.x45_c00183{left:324.000000px;}
.x47_c00183{left:325.440000px;}
.x1b_c00183{left:335.520000px;}
.x2d_c00183{left:336.960000px;}
.x7_c00183{left:347.040000px;}
.x36_c00183{left:357.840000px;}
.x48_c00183{left:369.360000px;}
.x8_c00183{left:379.440000px;}
.x37_c00183{left:390.240000px;}
.x49_c00183{left:401.040000px;}
.x28_c00183{left:402.480000px;}
.x12_c00183{left:411.840000px;}
.x38_c00183{left:422.640000px;}
.x2e_c00183{left:432.000000px;}
.x9_c00183{left:434.160000px;}
.x5b_c00183{left:443.520000px;}
.x13_c00183{left:444.960000px;}
.x57_c00183{left:453.600000px;}
.x1c_c00183{left:455.040000px;}
.x4f_c00183{left:464.400000px;}
.x35_c00183{left:475.920000px;}
.x14_c00183{left:477.360000px;}
.x55_c00183{left:478.800000px;}
.xa_c00183{left:486.720000px;}
.x39_c00183{left:488.880000px;}
.x1d_c00183{left:498.240000px;}
.x3c_c00183{left:508.320000px;}
.x4a_c00183{left:511.200000px;}
.x29_c00183{left:519.840000px;}
.x4d_c00183{left:529.200000px;}
.xb_c00183{left:530.640000px;}
.x15_c00183{left:541.440000px;}
.x32_c00183{left:551.520000px;}
.x16_c00183{left:552.960000px;}
.x2f_c00183{left:561.600000px;}
.x3d_c00183{left:573.120000px;}
.x50_c00183{left:583.200000px;}
.x1e_c00183{left:585.360000px;}
.xc_c00183{left:596.160000px;}
.x5c_c00183{left:604.080000px;}
.x30_c00183{left:606.240000px;}
.x25_c00183{left:616.320000px;}
.x17_c00183{left:626.400000px;}
.x58_c00183{left:627.840000px;}
.x1f_c00183{left:637.200000px;}
.x3e_c00183{left:638.640000px;}
.xd_c00183{left:648.000000px;}
.x40_c00183{left:658.800000px;}
.x26_c00183{left:660.240000px;}
.x2a_c00183{left:661.680000px;}
.x4b_c00183{left:669.600000px;}
.x3a_c00183{left:671.760000px;}
.x5a_c00183{left:678.960000px;}
.x51_c00183{left:680.400000px;}
.x20_c00183{left:691.920000px;}
.x21_c00183{left:712.800000px;}
.x1_c00183{left:714.960000px;}
@media print{
.v1_c00183{vertical-align:-2.560000pt;}
.v0_c00183{vertical-align:0.000000pt;}
.ls0_c00183{letter-spacing:0.000000pt;}
.ws0_c00183{word-spacing:-10.291200pt;}
.ws2_c00183{word-spacing:0.000000pt;}
.ws1_c00183{word-spacing:2.503253pt;}
.fsf_c00183{font-size:20.480000pt;}
.fs10_c00183{font-size:28.160000pt;}
.fsa_c00183{font-size:30.720000pt;}
.fs2_c00183{font-size:33.280000pt;}
.fs7_c00183{font-size:35.840000pt;}
.fs3_c00183{font-size:38.400000pt;}
.fse_c00183{font-size:40.960000pt;}
.fs1_c00183{font-size:43.520000pt;}
.fs6_c00183{font-size:46.080000pt;}
.fs4_c00183{font-size:48.640000pt;}
.fs8_c00183{font-size:51.200000pt;}
.fs9_c00183{font-size:53.760000pt;}
.fsc_c00183{font-size:56.320000pt;}
.fs5_c00183{font-size:58.880000pt;}
.fsd_c00183{font-size:61.440000pt;}
.fsb_c00183{font-size:64.000000pt;}
.fs0_c00183{font-size:66.560000pt;}
.y0_c00183{bottom:0.000000pt;}
.y71_c00183{bottom:105.600000pt;}
.y73_c00183{bottom:107.520000pt;}
.y70_c00183{bottom:108.160000pt;}
.y72_c00183{bottom:108.800000pt;}
.y6f_c00183{bottom:109.440000pt;}
.y6b_c00183{bottom:143.360000pt;}
.y6c_c00183{bottom:144.000000pt;}
.y69_c00183{bottom:144.640000pt;}
.y6d_c00183{bottom:146.560000pt;}
.y6a_c00183{bottom:147.200000pt;}
.y6e_c00183{bottom:147.840000pt;}
.y65_c00183{bottom:181.760000pt;}
.y67_c00183{bottom:182.400000pt;}
.y64_c00183{bottom:183.040000pt;}
.y66_c00183{bottom:184.320000pt;}
.y63_c00183{bottom:184.960000pt;}
.y68_c00183{bottom:185.600000pt;}
.y62_c00183{bottom:186.240000pt;}
.y5d_c00183{bottom:220.800000pt;}
.y5f_c00183{bottom:222.080000pt;}
.y5e_c00183{bottom:222.720000pt;}
.y60_c00183{bottom:223.360000pt;}
.y61_c00183{bottom:224.000000pt;}
.y5c_c00183{bottom:224.640000pt;}
.y58_c00183{bottom:259.200000pt;}
.y5b_c00183{bottom:259.840000pt;}
.y5a_c00183{bottom:260.480000pt;}
.y59_c00183{bottom:261.120000pt;}
.y57_c00183{bottom:261.760000pt;}
.y55_c00183{bottom:296.960000pt;}
.y54_c00183{bottom:298.880000pt;}
.y53_c00183{bottom:299.520000pt;}
.y56_c00183{bottom:300.160000pt;}
.y4f_c00183{bottom:334.720000pt;}
.y50_c00183{bottom:335.360000pt;}
.y52_c00183{bottom:336.640000pt;}
.y4e_c00183{bottom:337.280000pt;}
.y51_c00183{bottom:337.920000pt;}
.y4d_c00183{bottom:339.200000pt;}
.y4c_c00183{bottom:373.120000pt;}
.y49_c00183{bottom:373.760000pt;}
.y4b_c00183{bottom:375.040000pt;}
.y4a_c00183{bottom:375.680000pt;}
.y48_c00183{bottom:376.320000pt;}
.y47_c00183{bottom:410.880000pt;}
.y45_c00183{bottom:411.520000pt;}
.y44_c00183{bottom:412.160000pt;}
.y46_c00183{bottom:414.080000pt;}
.y40_c00183{bottom:449.920000pt;}
.y41_c00183{bottom:450.560000pt;}
.y3f_c00183{bottom:451.840000pt;}
.y43_c00183{bottom:452.480000pt;}
.y42_c00183{bottom:453.120000pt;}
.y3e_c00183{bottom:453.760000pt;}
.y3b_c00183{bottom:488.320000pt;}
.y3a_c00183{bottom:488.960000pt;}
.y3d_c00183{bottom:489.600000pt;}
.y3c_c00183{bottom:490.880000pt;}
.y39_c00183{bottom:491.520000pt;}
.y38_c00183{bottom:538.880000pt;}
.y33_c00183{bottom:574.080000pt;}
.y32_c00183{bottom:574.720000pt;}
.y36_c00183{bottom:575.360000pt;}
.y37_c00183{bottom:576.000000pt;}
.y35_c00183{bottom:576.640000pt;}
.y34_c00183{bottom:577.280000pt;}
.y2d_c00183{bottom:613.120000pt;}
.y2e_c00183{bottom:613.760000pt;}
.y31_c00183{bottom:614.400000pt;}
.y2c_c00183{bottom:615.040000pt;}
.y2f_c00183{bottom:615.680000pt;}
.y30_c00183{bottom:616.320000pt;}
.y2b_c00183{bottom:650.880000pt;}
.y28_c00183{bottom:651.520000pt;}
.y29_c00183{bottom:652.160000pt;}
.y2a_c00183{bottom:652.800000pt;}
.y27_c00183{bottom:653.440000pt;}
.y26_c00183{bottom:654.080000pt;}
.y25_c00183{bottom:689.280000pt;}
.y22_c00183{bottom:689.920000pt;}
.y21_c00183{bottom:691.200000pt;}
.y23_c00183{bottom:691.840000pt;}
.y24_c00183{bottom:692.480000pt;}
.y1e_c00183{bottom:727.680000pt;}
.y20_c00183{bottom:728.320000pt;}
.y1d_c00183{bottom:729.600000pt;}
.y1f_c00183{bottom:730.240000pt;}
.y1a_c00183{bottom:766.080000pt;}
.y1c_c00183{bottom:766.720000pt;}
.y19_c00183{bottom:768.000000pt;}
.y1b_c00183{bottom:768.640000pt;}
.y18_c00183{bottom:803.200000pt;}
.y17_c00183{bottom:803.840000pt;}
.y14_c00183{bottom:804.480000pt;}
.y15_c00183{bottom:805.760000pt;}
.y13_c00183{bottom:806.400000pt;}
.y16_c00183{bottom:807.040000pt;}
.yc_c00183{bottom:840.960000pt;}
.y10_c00183{bottom:841.600000pt;}
.yd_c00183{bottom:842.240000pt;}
.y12_c00183{bottom:843.520000pt;}
.y11_c00183{bottom:844.160000pt;}
.ye_c00183{bottom:844.800000pt;}
.yf_c00183{bottom:845.440000pt;}
.ya_c00183{bottom:881.280000pt;}
.y8_c00183{bottom:881.920000pt;}
.yb_c00183{bottom:882.560000pt;}
.y9_c00183{bottom:883.200000pt;}
.y6_c00183{bottom:919.040000pt;}
.y4_c00183{bottom:919.680000pt;}
.y2_c00183{bottom:920.320000pt;}
.y3_c00183{bottom:920.960000pt;}
.y5_c00183{bottom:921.600000pt;}
.y7_c00183{bottom:922.240000pt;}
.y1_c00183{bottom:976.000000pt;}
.h12_c00183{height:18.430000pt;}
.h13_c00183{height:25.341250pt;}
.hc_c00183{height:27.645000pt;}
.h4_c00183{height:29.948750pt;}
.h9_c00183{height:32.252500pt;}
.h5_c00183{height:34.556250pt;}
.h10_c00183{height:36.860000pt;}
.h3_c00183{height:39.163750pt;}
.h8_c00183{height:41.467500pt;}
.h6_c00183{height:43.771250pt;}
.h11_c00183{height:45.818750pt;}
.ha_c00183{height:46.075000pt;}
.hb_c00183{height:48.378750pt;}
.he_c00183{height:50.682500pt;}
.h7_c00183{height:52.986250pt;}
.hf_c00183{height:55.290000pt;}
.hd_c00183{height:57.593750pt;}
.h2_c00183{height:59.897500pt;}
.h1_c00183{height:1019.333333pt;}
.h0_c00183{height:1019.520000pt;}
.w1_c00183{width:698.666667pt;}
.w0_c00183{width:698.880000pt;}
.x0_c00183{left:0.000000pt;}
.x2_c00183{left:78.080000pt;}
.x33_c00183{left:79.360000pt;}
.x41_c00183{left:80.640000pt;}
.x3_c00183{left:88.320000pt;}
.x4_c00183{left:97.280000pt;}
.xe_c00183{left:107.520000pt;}
.x18_c00183{left:115.840000pt;}
.x42_c00183{left:117.120000pt;}
.x4e_c00183{left:126.720000pt;}
.x2b_c00183{left:135.040000pt;}
.xf_c00183{left:136.320000pt;}
.x43_c00183{left:144.000000pt;}
.x5_c00183{left:145.280000pt;}
.x52_c00183{left:146.560000pt;}
.x31_c00183{left:154.880000pt;}
.x59_c00183{left:164.480000pt;}
.x19_c00183{left:174.080000pt;}
.x46_c00183{left:182.400000pt;}
.x34_c00183{left:183.680000pt;}
.x3b_c00183{left:192.000000pt;}
.x54_c00183{left:193.280000pt;}
.x2c_c00183{left:194.560000pt;}
.x3f_c00183{left:202.240000pt;}
.x44_c00183{left:203.520000pt;}
.x22_c00183{left:211.840000pt;}
.x56_c00183{left:213.120000pt;}
.x53_c00183{left:220.800000pt;}
.x27_c00183{left:230.400000pt;}
.x10_c00183{left:231.680000pt;}
.x4c_c00183{left:240.640000pt;}
.x6_c00183{left:241.920000pt;}
.x11_c00183{left:251.520000pt;}
.x1a_c00183{left:260.480000pt;}
.x23_c00183{left:270.720000pt;}
.x24_c00183{left:279.680000pt;}
.x45_c00183{left:288.000000pt;}
.x47_c00183{left:289.280000pt;}
.x1b_c00183{left:298.240000pt;}
.x2d_c00183{left:299.520000pt;}
.x7_c00183{left:308.480000pt;}
.x36_c00183{left:318.080000pt;}
.x48_c00183{left:328.320000pt;}
.x8_c00183{left:337.280000pt;}
.x37_c00183{left:346.880000pt;}
.x49_c00183{left:356.480000pt;}
.x28_c00183{left:357.760000pt;}
.x12_c00183{left:366.080000pt;}
.x38_c00183{left:375.680000pt;}
.x2e_c00183{left:384.000000pt;}
.x9_c00183{left:385.920000pt;}
.x5b_c00183{left:394.240000pt;}
.x13_c00183{left:395.520000pt;}
.x57_c00183{left:403.200000pt;}
.x1c_c00183{left:404.480000pt;}
.x4f_c00183{left:412.800000pt;}
.x35_c00183{left:423.040000pt;}
.x14_c00183{left:424.320000pt;}
.x55_c00183{left:425.600000pt;}
.xa_c00183{left:432.640000pt;}
.x39_c00183{left:434.560000pt;}
.x1d_c00183{left:442.880000pt;}
.x3c_c00183{left:451.840000pt;}
.x4a_c00183{left:454.400000pt;}
.x29_c00183{left:462.080000pt;}
.x4d_c00183{left:470.400000pt;}
.xb_c00183{left:471.680000pt;}
.x15_c00183{left:481.280000pt;}
.x32_c00183{left:490.240000pt;}
.x16_c00183{left:491.520000pt;}
.x2f_c00183{left:499.200000pt;}
.x3d_c00183{left:509.440000pt;}
.x50_c00183{left:518.400000pt;}
.x1e_c00183{left:520.320000pt;}
.xc_c00183{left:529.920000pt;}
.x5c_c00183{left:536.960000pt;}
.x30_c00183{left:538.880000pt;}
.x25_c00183{left:547.840000pt;}
.x17_c00183{left:556.800000pt;}
.x58_c00183{left:558.080000pt;}
.x1f_c00183{left:566.400000pt;}
.x3e_c00183{left:567.680000pt;}
.xd_c00183{left:576.000000pt;}
.x40_c00183{left:585.600000pt;}
.x26_c00183{left:586.880000pt;}
.x2a_c00183{left:588.160000pt;}
.x4b_c00183{left:595.200000pt;}
.x3a_c00183{left:597.120000pt;}
.x5a_c00183{left:603.520000pt;}
.x51_c00183{left:604.800000pt;}
.x20_c00183{left:615.040000pt;}
.x21_c00183{left:633.600000pt;}
.x1_c00183{left:635.520000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d49cb7c47b68803a77896c71.woff2')format("woff");}.ff1_c00184{font-family:ff1_c00184;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5c_c00184{transform:matrix(0.230675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230675,0.000000,0.000000,0.250000,0,0);}
.m60_c00184{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m0_c00184{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);}
.m54_c00184{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m56_c00184{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);}
.m58_c00184{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m50_c00184{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m53_c00184{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m59_c00184{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m3_c00184{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1_c00184{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00184{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00184{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m18_c00184{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00184{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.md_c00184{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00184{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m31_c00184{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m23_c00184{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m39_c00184{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00184{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m22_c00184{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);}
.m45_c00184{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00184{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);}
.m2b_c00184{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);}
.m3c_c00184{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_c00184{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m10_c00184{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m5_c00184{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00184{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);}
.m4b_c00184{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m29_c00184{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_c00184{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m62_c00184{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m17_c00184{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);}
.m1d_c00184{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00184{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m40_c00184{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);}
.m38_c00184{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);}
.m2_c00184{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);}
.m26_c00184{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00184{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m7_c00184{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m47_c00184{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);}
.mc_c00184{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);}
.m28_c00184{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);}
.m61_c00184{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00184{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m9_c00184{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00184{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);}
.m41_c00184{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.mf_c00184{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);}
.m33_c00184{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);}
.m32_c00184{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);}
.m30_c00184{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00184{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.ma_c00184{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00184{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00184{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);}
.m4e_c00184{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00184{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m51_c00184{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);}
.m57_c00184{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00184{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);}
.m24_c00184{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m44_c00184{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m12_c00184{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m35_c00184{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);}
.m34_c00184{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m49_c00184{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m25_c00184{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00184{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);}
.m15_c00184{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00184{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00184{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m13_c00184{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m8_c00184{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.me_c00184{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m16_c00184{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m19_c00184{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);}
.m36_c00184{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m43_c00184{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00184{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00184{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m14_c00184{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);}
.m52_c00184{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m20_c00184{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m27_c00184{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m4_c00184{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m6_c00184{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m37_c00184{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00184{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m55_c00184{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m42_c00184{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m46_c00184{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);}
.m21_c00184{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m63_c00184{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m64_c00184{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00184{transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);}
.m48_c00184{transform:matrix(0.912500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.912500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.912500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00184{transform:matrix(1.027500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.027500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.027500,0.000000,0.000000,0.250000,0,0);}
.v2_c00184{vertical-align:-23.040000px;}
.v1_c00184{vertical-align:-11.520000px;}
.v0_c00184{vertical-align:0.000000px;}
.ls1_c00184{letter-spacing:0.000000px;}
.ls0_c00184{letter-spacing:14.718000px;}
.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;}
}
.ws1_c00184{word-spacing:0.000000px;}
.ws0_c00184{word-spacing:0.860160px;}
.fc0_c00184{color:transparent;}
.fsb_c00184{font-size:23.040000px;}
.fs10_c00184{font-size:25.920000px;}
.fsa_c00184{font-size:34.560000px;}
.fs5_c00184{font-size:37.440000px;}
.fse_c00184{font-size:40.320000px;}
.fs2_c00184{font-size:43.200000px;}
.fsf_c00184{font-size:46.080000px;}
.fs9_c00184{font-size:48.960000px;}
.fs3_c00184{font-size:51.840000px;}
.fs7_c00184{font-size:54.720000px;}
.fsc_c00184{font-size:57.600000px;}
.fs1_c00184{font-size:60.480000px;}
.fs4_c00184{font-size:63.360000px;}
.fs6_c00184{font-size:66.240000px;}
.fs8_c00184{font-size:69.120000px;}
.fs11_c00184{font-size:72.000000px;}
.fsd_c00184{font-size:74.880000px;}
.fs0_c00184{font-size:77.760000px;}
.y0_c00184{bottom:0.000000px;}
.y7d_c00184{bottom:120.960000px;}
.y7e_c00184{bottom:123.120000px;}
.y7c_c00184{bottom:123.840000px;}
.y7b_c00184{bottom:124.560000px;}
.y7a_c00184{bottom:126.000000px;}
.y76_c00184{bottom:164.880000px;}
.y78_c00184{bottom:166.320000px;}
.y77_c00184{bottom:167.040000px;}
.y74_c00184{bottom:167.760000px;}
.y75_c00184{bottom:168.480000px;}
.y79_c00184{bottom:169.200000px;}
.y73_c00184{bottom:169.920000px;}
.y6e_c00184{bottom:207.360000px;}
.y70_c00184{bottom:208.800000px;}
.y6f_c00184{bottom:209.520000px;}
.y6c_c00184{bottom:210.240000px;}
.y71_c00184{bottom:210.960000px;}
.y6d_c00184{bottom:211.680000px;}
.y72_c00184{bottom:212.400000px;}
.y6a_c00184{bottom:251.280000px;}
.y69_c00184{bottom:252.000000px;}
.y6b_c00184{bottom:253.440000px;}
.y68_c00184{bottom:254.160000px;}
.y64_c00184{bottom:294.480000px;}
.y61_c00184{bottom:295.200000px;}
.y67_c00184{bottom:295.920000px;}
.y66_c00184{bottom:296.640000px;}
.y62_c00184{bottom:297.360000px;}
.y63_c00184{bottom:298.080000px;}
.y60_c00184{bottom:298.800000px;}
.y5f_c00184{bottom:299.520000px;}
.y65_c00184{bottom:301.680000px;}
.y5a_c00184{bottom:337.680000px;}
.y5e_c00184{bottom:338.400000px;}
.y57_c00184{bottom:339.120000px;}
.y5c_c00184{bottom:339.840000px;}
.y59_c00184{bottom:340.560000px;}
.y58_c00184{bottom:341.280000px;}
.y56_c00184{bottom:343.440000px;}
.y5b_c00184{bottom:345.600000px;}
.y5d_c00184{bottom:346.320000px;}
.y53_c00184{bottom:380.880000px;}
.y55_c00184{bottom:381.600000px;}
.y54_c00184{bottom:382.320000px;}
.y52_c00184{bottom:383.760000px;}
.y51_c00184{bottom:384.480000px;}
.y50_c00184{bottom:424.080000px;}
.y4e_c00184{bottom:424.800000px;}
.y4f_c00184{bottom:425.520000px;}
.y4d_c00184{bottom:426.960000px;}
.y4c_c00184{bottom:427.680000px;}
.y4a_c00184{bottom:428.400000px;}
.y4b_c00184{bottom:429.120000px;}
.y48_c00184{bottom:465.840000px;}
.y47_c00184{bottom:467.280000px;}
.y49_c00184{bottom:468.720000px;}
.y46_c00184{bottom:469.440000px;}
.y45_c00184{bottom:470.160000px;}
.y44_c00184{bottom:470.880000px;}
.y40_c00184{bottom:510.480000px;}
.y43_c00184{bottom:511.920000px;}
.y41_c00184{bottom:512.640000px;}
.y42_c00184{bottom:513.360000px;}
.y3f_c00184{bottom:514.080000px;}
.y3e_c00184{bottom:552.960000px;}
.y3d_c00184{bottom:553.680000px;}
.y39_c00184{bottom:554.400000px;}
.y3b_c00184{bottom:555.120000px;}
.y3c_c00184{bottom:555.840000px;}
.y3a_c00184{bottom:557.280000px;}
.y35_c00184{bottom:595.440000px;}
.y37_c00184{bottom:596.160000px;}
.y38_c00184{bottom:596.880000px;}
.y34_c00184{bottom:597.600000px;}
.y36_c00184{bottom:598.320000px;}
.y33_c00184{bottom:599.040000px;}
.y32_c00184{bottom:599.760000px;}
.y31_c00184{bottom:638.640000px;}
.y2f_c00184{bottom:639.360000px;}
.y2e_c00184{bottom:641.520000px;}
.y30_c00184{bottom:642.240000px;}
.y2a_c00184{bottom:682.560000px;}
.y2b_c00184{bottom:683.280000px;}
.y2d_c00184{bottom:684.000000px;}
.y2c_c00184{bottom:684.720000px;}
.y27_c00184{bottom:725.760000px;}
.y29_c00184{bottom:727.200000px;}
.y26_c00184{bottom:727.920000px;}
.y28_c00184{bottom:728.640000px;}
.y24_c00184{bottom:770.400000px;}
.y25_c00184{bottom:771.120000px;}
.y23_c00184{bottom:771.840000px;}
.y22_c00184{bottom:810.720000px;}
.y20_c00184{bottom:812.160000px;}
.y21_c00184{bottom:813.600000px;}
.y1f_c00184{bottom:814.320000px;}
.y18_c00184{bottom:853.920000px;}
.y1c_c00184{bottom:855.360000px;}
.y19_c00184{bottom:856.080000px;}
.y1e_c00184{bottom:856.800000px;}
.y1d_c00184{bottom:857.520000px;}
.y1b_c00184{bottom:858.240000px;}
.y1a_c00184{bottom:862.560000px;}
.y15_c00184{bottom:899.280000px;}
.y17_c00184{bottom:900.000000px;}
.y14_c00184{bottom:900.720000px;}
.y16_c00184{bottom:901.440000px;}
.y12_c00184{bottom:953.280000px;}
.ye_c00184{bottom:954.000000px;}
.y13_c00184{bottom:954.720000px;}
.yf_c00184{bottom:955.440000px;}
.y10_c00184{bottom:956.160000px;}
.y11_c00184{bottom:959.760000px;}
.yb_c00184{bottom:995.040000px;}
.y8_c00184{bottom:995.760000px;}
.yc_c00184{bottom:996.480000px;}
.yd_c00184{bottom:997.200000px;}
.ya_c00184{bottom:997.920000px;}
.y9_c00184{bottom:998.640000px;}
.y7_c00184{bottom:1037.520000px;}
.y2_c00184{bottom:1038.240000px;}
.y6_c00184{bottom:1038.960000px;}
.y3_c00184{bottom:1039.680000px;}
.y4_c00184{bottom:1041.120000px;}
.y5_c00184{bottom:1041.840000px;}
.y1_c00184{bottom:1100.160000px;}
.hd_c00184{height:20.733750px;}
.h12_c00184{height:23.325469px;}
.hc_c00184{height:31.100625px;}
.h7_c00184{height:33.692344px;}
.h13_c00184{height:33.977813px;}
.h10_c00184{height:36.284062px;}
.h4_c00184{height:38.875781px;}
.h11_c00184{height:41.467500px;}
.hb_c00184{height:44.059219px;}
.h5_c00184{height:46.650937px;}
.h9_c00184{height:49.242656px;}
.he_c00184{height:51.834375px;}
.h3_c00184{height:54.426094px;}
.h6_c00184{height:57.017812px;}
.h8_c00184{height:59.609531px;}
.ha_c00184{height:62.201250px;}
.h14_c00184{height:64.792969px;}
.hf_c00184{height:67.384687px;}
.h2_c00184{height:69.976406px;}
.h1_c00184{height:1147.500000px;}
.h0_c00184{height:1147.680000px;}
.w1_c00184{width:788.250000px;}
.w0_c00184{width:788.400000px;}
.x0_c00184{left:0.000000px;}
.x46_c00184{left:87.840000px;}
.x2_c00184{left:89.280000px;}
.x3_c00184{left:120.240000px;}
.x2b_c00184{left:130.320000px;}
.x4a_c00184{left:140.400000px;}
.x68_c00184{left:151.200000px;}
.x59_c00184{left:152.640000px;}
.x21_c00184{left:154.800000px;}
.x27_c00184{left:162.720000px;}
.x5e_c00184{left:171.360000px;}
.x4_c00184{left:172.800000px;}
.x4b_c00184{left:183.600000px;}
.xe_c00184{left:185.760000px;}
.x1b_c00184{left:195.120000px;}
.x22_c00184{left:197.280000px;}
.x69_c00184{left:203.040000px;}
.x53_c00184{left:205.200000px;}
.x23_c00184{left:207.360000px;}
.x41_c00184{left:216.000000px;}
.x5_c00184{left:217.440000px;}
.xf_c00184{left:218.880000px;}
.x3e_c00184{left:225.360000px;}
.x50_c00184{left:226.800000px;}
.x2f_c00184{left:238.320000px;}
.x64_c00184{left:246.960000px;}
.x28_c00184{left:248.400000px;}
.x6_c00184{left:250.560000px;}
.x24_c00184{left:259.200000px;}
.x4c_c00184{left:270.000000px;}
.x15_c00184{left:271.440000px;}
.x34_c00184{left:280.800000px;}
.x30_c00184{left:282.960000px;}
.x3f_c00184{left:292.320000px;}
.x51_c00184{left:301.680000px;}
.x16_c00184{left:303.840000px;}
.x3a_c00184{left:313.200000px;}
.x1c_c00184{left:324.000000px;}
.x7_c00184{left:326.160000px;}
.x29_c00184{left:334.800000px;}
.x10_c00184{left:337.680000px;}
.x6a_c00184{left:345.600000px;}
.x17_c00184{left:347.040000px;}
.x65_c00184{left:354.960000px;}
.x47_c00184{left:356.400000px;}
.x8_c00184{left:357.840000px;}
.x18_c00184{left:360.720000px;}
.x1d_c00184{left:367.920000px;}
.x19_c00184{left:369.360000px;}
.x5a_c00184{left:376.560000px;}
.x37_c00184{left:378.000000px;}
.x54_c00184{left:388.080000px;}
.x25_c00184{left:389.520000px;}
.x66_c00184{left:397.440000px;}
.x1a_c00184{left:399.600000px;}
.x55_c00184{left:408.960000px;}
.x2c_c00184{left:411.120000px;}
.x5f_c00184{left:423.360000px;}
.x40_c00184{left:432.000000px;}
.x9_c00184{left:434.160000px;}
.x42_c00184{left:442.800000px;}
.x11_c00184{left:444.960000px;}
.x3b_c00184{left:453.600000px;}
.x56_c00184{left:462.960000px;}
.x2d_c00184{left:464.400000px;}
.xa_c00184{left:465.840000px;}
.x38_c00184{left:475.200000px;}
.x26_c00184{left:477.360000px;}
.x5b_c00184{left:486.000000px;}
.x1e_c00184{left:487.440000px;}
.x60_c00184{left:506.160000px;}
.x35_c00184{left:507.600000px;}
.x31_c00184{left:509.040000px;}
.x48_c00184{left:518.400000px;}
.x1f_c00184{left:519.840000px;}
.x67_c00184{left:527.760000px;}
.x32_c00184{left:529.200000px;}
.x3c_c00184{left:539.280000px;}
.xb_c00184{left:541.440000px;}
.x61_c00184{left:549.360000px;}
.x43_c00184{left:550.800000px;}
.x4e_c00184{left:560.160000px;}
.x57_c00184{left:570.240000px;}
.x33_c00184{left:572.400000px;}
.x12_c00184{left:573.840000px;}
.x62_c00184{left:581.760000px;}
.x3d_c00184{left:583.200000px;}
.x52_c00184{left:591.840000px;}
.x39_c00184{left:594.000000px;}
.x2a_c00184{left:596.160000px;}
.xc_c00184{left:606.240000px;}
.x5c_c00184{left:613.440000px;}
.x13_c00184{left:615.600000px;}
.x63_c00184{left:624.240000px;}
.x2e_c00184{left:627.120000px;}
.x58_c00184{left:635.040000px;}
.x49_c00184{left:636.480000px;}
.x5d_c00184{left:645.840000px;}
.x44_c00184{left:647.280000px;}
.xd_c00184{left:649.440000px;}
.x4f_c00184{left:657.360000px;}
.x20_c00184{left:658.800000px;}
.x36_c00184{left:669.600000px;}
.x4d_c00184{left:678.960000px;}
.x14_c00184{left:680.400000px;}
.x45_c00184{left:691.920000px;}
.x1_c00184{left:712.800000px;}
@media print{
.v2_c00184{vertical-align:-20.480000pt;}
.v1_c00184{vertical-align:-10.240000pt;}
.v0_c00184{vertical-align:0.000000pt;}
.ls1_c00184{letter-spacing:0.000000pt;}
.ls0_c00184{letter-spacing:13.082667pt;}
.ws1_c00184{word-spacing:0.000000pt;}
.ws0_c00184{word-spacing:0.764587pt;}
.fsb_c00184{font-size:20.480000pt;}
.fs10_c00184{font-size:23.040000pt;}
.fsa_c00184{font-size:30.720000pt;}
.fs5_c00184{font-size:33.280000pt;}
.fse_c00184{font-size:35.840000pt;}
.fs2_c00184{font-size:38.400000pt;}
.fsf_c00184{font-size:40.960000pt;}
.fs9_c00184{font-size:43.520000pt;}
.fs3_c00184{font-size:46.080000pt;}
.fs7_c00184{font-size:48.640000pt;}
.fsc_c00184{font-size:51.200000pt;}
.fs1_c00184{font-size:53.760000pt;}
.fs4_c00184{font-size:56.320000pt;}
.fs6_c00184{font-size:58.880000pt;}
.fs8_c00184{font-size:61.440000pt;}
.fs11_c00184{font-size:64.000000pt;}
.fsd_c00184{font-size:66.560000pt;}
.fs0_c00184{font-size:69.120000pt;}
.y0_c00184{bottom:0.000000pt;}
.y7d_c00184{bottom:107.520000pt;}
.y7e_c00184{bottom:109.440000pt;}
.y7c_c00184{bottom:110.080000pt;}
.y7b_c00184{bottom:110.720000pt;}
.y7a_c00184{bottom:112.000000pt;}
.y76_c00184{bottom:146.560000pt;}
.y78_c00184{bottom:147.840000pt;}
.y77_c00184{bottom:148.480000pt;}
.y74_c00184{bottom:149.120000pt;}
.y75_c00184{bottom:149.760000pt;}
.y79_c00184{bottom:150.400000pt;}
.y73_c00184{bottom:151.040000pt;}
.y6e_c00184{bottom:184.320000pt;}
.y70_c00184{bottom:185.600000pt;}
.y6f_c00184{bottom:186.240000pt;}
.y6c_c00184{bottom:186.880000pt;}
.y71_c00184{bottom:187.520000pt;}
.y6d_c00184{bottom:188.160000pt;}
.y72_c00184{bottom:188.800000pt;}
.y6a_c00184{bottom:223.360000pt;}
.y69_c00184{bottom:224.000000pt;}
.y6b_c00184{bottom:225.280000pt;}
.y68_c00184{bottom:225.920000pt;}
.y64_c00184{bottom:261.760000pt;}
.y61_c00184{bottom:262.400000pt;}
.y67_c00184{bottom:263.040000pt;}
.y66_c00184{bottom:263.680000pt;}
.y62_c00184{bottom:264.320000pt;}
.y63_c00184{bottom:264.960000pt;}
.y60_c00184{bottom:265.600000pt;}
.y5f_c00184{bottom:266.240000pt;}
.y65_c00184{bottom:268.160000pt;}
.y5a_c00184{bottom:300.160000pt;}
.y5e_c00184{bottom:300.800000pt;}
.y57_c00184{bottom:301.440000pt;}
.y5c_c00184{bottom:302.080000pt;}
.y59_c00184{bottom:302.720000pt;}
.y58_c00184{bottom:303.360000pt;}
.y56_c00184{bottom:305.280000pt;}
.y5b_c00184{bottom:307.200000pt;}
.y5d_c00184{bottom:307.840000pt;}
.y53_c00184{bottom:338.560000pt;}
.y55_c00184{bottom:339.200000pt;}
.y54_c00184{bottom:339.840000pt;}
.y52_c00184{bottom:341.120000pt;}
.y51_c00184{bottom:341.760000pt;}
.y50_c00184{bottom:376.960000pt;}
.y4e_c00184{bottom:377.600000pt;}
.y4f_c00184{bottom:378.240000pt;}
.y4d_c00184{bottom:379.520000pt;}
.y4c_c00184{bottom:380.160000pt;}
.y4a_c00184{bottom:380.800000pt;}
.y4b_c00184{bottom:381.440000pt;}
.y48_c00184{bottom:414.080000pt;}
.y47_c00184{bottom:415.360000pt;}
.y49_c00184{bottom:416.640000pt;}
.y46_c00184{bottom:417.280000pt;}
.y45_c00184{bottom:417.920000pt;}
.y44_c00184{bottom:418.560000pt;}
.y40_c00184{bottom:453.760000pt;}
.y43_c00184{bottom:455.040000pt;}
.y41_c00184{bottom:455.680000pt;}
.y42_c00184{bottom:456.320000pt;}
.y3f_c00184{bottom:456.960000pt;}
.y3e_c00184{bottom:491.520000pt;}
.y3d_c00184{bottom:492.160000pt;}
.y39_c00184{bottom:492.800000pt;}
.y3b_c00184{bottom:493.440000pt;}
.y3c_c00184{bottom:494.080000pt;}
.y3a_c00184{bottom:495.360000pt;}
.y35_c00184{bottom:529.280000pt;}
.y37_c00184{bottom:529.920000pt;}
.y38_c00184{bottom:530.560000pt;}
.y34_c00184{bottom:531.200000pt;}
.y36_c00184{bottom:531.840000pt;}
.y33_c00184{bottom:532.480000pt;}
.y32_c00184{bottom:533.120000pt;}
.y31_c00184{bottom:567.680000pt;}
.y2f_c00184{bottom:568.320000pt;}
.y2e_c00184{bottom:570.240000pt;}
.y30_c00184{bottom:570.880000pt;}
.y2a_c00184{bottom:606.720000pt;}
.y2b_c00184{bottom:607.360000pt;}
.y2d_c00184{bottom:608.000000pt;}
.y2c_c00184{bottom:608.640000pt;}
.y27_c00184{bottom:645.120000pt;}
.y29_c00184{bottom:646.400000pt;}
.y26_c00184{bottom:647.040000pt;}
.y28_c00184{bottom:647.680000pt;}
.y24_c00184{bottom:684.800000pt;}
.y25_c00184{bottom:685.440000pt;}
.y23_c00184{bottom:686.080000pt;}
.y22_c00184{bottom:720.640000pt;}
.y20_c00184{bottom:721.920000pt;}
.y21_c00184{bottom:723.200000pt;}
.y1f_c00184{bottom:723.840000pt;}
.y18_c00184{bottom:759.040000pt;}
.y1c_c00184{bottom:760.320000pt;}
.y19_c00184{bottom:760.960000pt;}
.y1e_c00184{bottom:761.600000pt;}
.y1d_c00184{bottom:762.240000pt;}
.y1b_c00184{bottom:762.880000pt;}
.y1a_c00184{bottom:766.720000pt;}
.y15_c00184{bottom:799.360000pt;}
.y17_c00184{bottom:800.000000pt;}
.y14_c00184{bottom:800.640000pt;}
.y16_c00184{bottom:801.280000pt;}
.y12_c00184{bottom:847.360000pt;}
.ye_c00184{bottom:848.000000pt;}
.y13_c00184{bottom:848.640000pt;}
.yf_c00184{bottom:849.280000pt;}
.y10_c00184{bottom:849.920000pt;}
.y11_c00184{bottom:853.120000pt;}
.yb_c00184{bottom:884.480000pt;}
.y8_c00184{bottom:885.120000pt;}
.yc_c00184{bottom:885.760000pt;}
.yd_c00184{bottom:886.400000pt;}
.ya_c00184{bottom:887.040000pt;}
.y9_c00184{bottom:887.680000pt;}
.y7_c00184{bottom:922.240000pt;}
.y2_c00184{bottom:922.880000pt;}
.y6_c00184{bottom:923.520000pt;}
.y3_c00184{bottom:924.160000pt;}
.y4_c00184{bottom:925.440000pt;}
.y5_c00184{bottom:926.080000pt;}
.y1_c00184{bottom:977.920000pt;}
.hd_c00184{height:18.430000pt;}
.h12_c00184{height:20.733750pt;}
.hc_c00184{height:27.645000pt;}
.h7_c00184{height:29.948750pt;}
.h13_c00184{height:30.202500pt;}
.h10_c00184{height:32.252500pt;}
.h4_c00184{height:34.556250pt;}
.h11_c00184{height:36.860000pt;}
.hb_c00184{height:39.163750pt;}
.h5_c00184{height:41.467500pt;}
.h9_c00184{height:43.771250pt;}
.he_c00184{height:46.075000pt;}
.h3_c00184{height:48.378750pt;}
.h6_c00184{height:50.682500pt;}
.h8_c00184{height:52.986250pt;}
.ha_c00184{height:55.290000pt;}
.h14_c00184{height:57.593750pt;}
.hf_c00184{height:59.897500pt;}
.h2_c00184{height:62.201250pt;}
.h1_c00184{height:1020.000000pt;}
.h0_c00184{height:1020.160000pt;}
.w1_c00184{width:700.666667pt;}
.w0_c00184{width:700.800000pt;}
.x0_c00184{left:0.000000pt;}
.x46_c00184{left:78.080000pt;}
.x2_c00184{left:79.360000pt;}
.x3_c00184{left:106.880000pt;}
.x2b_c00184{left:115.840000pt;}
.x4a_c00184{left:124.800000pt;}
.x68_c00184{left:134.400000pt;}
.x59_c00184{left:135.680000pt;}
.x21_c00184{left:137.600000pt;}
.x27_c00184{left:144.640000pt;}
.x5e_c00184{left:152.320000pt;}
.x4_c00184{left:153.600000pt;}
.x4b_c00184{left:163.200000pt;}
.xe_c00184{left:165.120000pt;}
.x1b_c00184{left:173.440000pt;}
.x22_c00184{left:175.360000pt;}
.x69_c00184{left:180.480000pt;}
.x53_c00184{left:182.400000pt;}
.x23_c00184{left:184.320000pt;}
.x41_c00184{left:192.000000pt;}
.x5_c00184{left:193.280000pt;}
.xf_c00184{left:194.560000pt;}
.x3e_c00184{left:200.320000pt;}
.x50_c00184{left:201.600000pt;}
.x2f_c00184{left:211.840000pt;}
.x64_c00184{left:219.520000pt;}
.x28_c00184{left:220.800000pt;}
.x6_c00184{left:222.720000pt;}
.x24_c00184{left:230.400000pt;}
.x4c_c00184{left:240.000000pt;}
.x15_c00184{left:241.280000pt;}
.x34_c00184{left:249.600000pt;}
.x30_c00184{left:251.520000pt;}
.x3f_c00184{left:259.840000pt;}
.x51_c00184{left:268.160000pt;}
.x16_c00184{left:270.080000pt;}
.x3a_c00184{left:278.400000pt;}
.x1c_c00184{left:288.000000pt;}
.x7_c00184{left:289.920000pt;}
.x29_c00184{left:297.600000pt;}
.x10_c00184{left:300.160000pt;}
.x6a_c00184{left:307.200000pt;}
.x17_c00184{left:308.480000pt;}
.x65_c00184{left:315.520000pt;}
.x47_c00184{left:316.800000pt;}
.x8_c00184{left:318.080000pt;}
.x18_c00184{left:320.640000pt;}
.x1d_c00184{left:327.040000pt;}
.x19_c00184{left:328.320000pt;}
.x5a_c00184{left:334.720000pt;}
.x37_c00184{left:336.000000pt;}
.x54_c00184{left:344.960000pt;}
.x25_c00184{left:346.240000pt;}
.x66_c00184{left:353.280000pt;}
.x1a_c00184{left:355.200000pt;}
.x55_c00184{left:363.520000pt;}
.x2c_c00184{left:365.440000pt;}
.x5f_c00184{left:376.320000pt;}
.x40_c00184{left:384.000000pt;}
.x9_c00184{left:385.920000pt;}
.x42_c00184{left:393.600000pt;}
.x11_c00184{left:395.520000pt;}
.x3b_c00184{left:403.200000pt;}
.x56_c00184{left:411.520000pt;}
.x2d_c00184{left:412.800000pt;}
.xa_c00184{left:414.080000pt;}
.x38_c00184{left:422.400000pt;}
.x26_c00184{left:424.320000pt;}
.x5b_c00184{left:432.000000pt;}
.x1e_c00184{left:433.280000pt;}
.x60_c00184{left:449.920000pt;}
.x35_c00184{left:451.200000pt;}
.x31_c00184{left:452.480000pt;}
.x48_c00184{left:460.800000pt;}
.x1f_c00184{left:462.080000pt;}
.x67_c00184{left:469.120000pt;}
.x32_c00184{left:470.400000pt;}
.x3c_c00184{left:479.360000pt;}
.xb_c00184{left:481.280000pt;}
.x61_c00184{left:488.320000pt;}
.x43_c00184{left:489.600000pt;}
.x4e_c00184{left:497.920000pt;}
.x57_c00184{left:506.880000pt;}
.x33_c00184{left:508.800000pt;}
.x12_c00184{left:510.080000pt;}
.x62_c00184{left:517.120000pt;}
.x3d_c00184{left:518.400000pt;}
.x52_c00184{left:526.080000pt;}
.x39_c00184{left:528.000000pt;}
.x2a_c00184{left:529.920000pt;}
.xc_c00184{left:538.880000pt;}
.x5c_c00184{left:545.280000pt;}
.x13_c00184{left:547.200000pt;}
.x63_c00184{left:554.880000pt;}
.x2e_c00184{left:557.440000pt;}
.x58_c00184{left:564.480000pt;}
.x49_c00184{left:565.760000pt;}
.x5d_c00184{left:574.080000pt;}
.x44_c00184{left:575.360000pt;}
.xd_c00184{left:577.280000pt;}
.x4f_c00184{left:584.320000pt;}
.x20_c00184{left:585.600000pt;}
.x36_c00184{left:595.200000pt;}
.x4d_c00184{left:603.520000pt;}
.x14_c00184{left:604.800000pt;}
.x45_c00184{left:615.040000pt;}
.x1_c00184{left:633.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9f8beee144cce845ee2f2ab3.woff2')format("woff");}.ff1_c00185{font-family:ff1_c00185;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m54_c00185{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m5f_c00185{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m0_c00185{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_c00185{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);}
.m4c_c00185{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);}
.m50_c00185{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);}
.m40_c00185{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);}
.m52_c00185{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);}
.m59_c00185{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m24_c00185{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00185{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m16_c00185{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m15_c00185{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m4_c00185{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m21_c00185{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m11_c00185{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m33_c00185{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m36_c00185{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m38_c00185{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00185{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mf_c00185{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);}
.m43_c00185{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);}
.m31_c00185{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00185{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);}
.m3f_c00185{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m44_c00185{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_c00185{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.ma_c00185{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m2_c00185{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m39_c00185{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);}
.mc_c00185{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);}
.m4b_c00185{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00185{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1_c00185{transform:matrix(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);}
.m3b_c00185{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m13_c00185{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);}
.m2e_c00185{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m23_c00185{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00185{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00185{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);}
.m2b_c00185{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);}
.m2d_c00185{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m12_c00185{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m32_c00185{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m19_c00185{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);}
.m3e_c00185{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m49_c00185{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00185{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);}
.m5_c00185{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);}
.m37_c00185{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m17_c00185{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00185{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m35_c00185{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m6_c00185{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m10_c00185{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);}
.m51_c00185{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m46_c00185{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);}
.m1b_c00185{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.mb_c00185{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m7_c00185{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m27_c00185{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m25_c00185{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_c00185{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m48_c00185{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00185{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);}
.m3a_c00185{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m41_c00185{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m3_c00185{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m28_c00185{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m30_c00185{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);}
.m8_c00185{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00185{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00185{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);}
.m58_c00185{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00185{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00185{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m14_c00185{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);}
.m22_c00185{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m57_c00185{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m18_c00185{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);}
.m1f_c00185{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);}
.m53_c00185{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00185{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m42_c00185{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00185{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m9_c00185{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);}
.m60_c00185{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);}
.m20_c00185{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m29_c00185{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m55_c00185{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);}
.m34_c00185{transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00185{transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);}
.m47_c00185{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00185{transform:matrix(0.647500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.647500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.647500,0.000000,0.000000,0.250000,0,0);}
.me_c00185{transform:matrix(0.747500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.747500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.747500,0.000000,0.000000,0.250000,0,0);}
.m56_c00185{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);}
.m4e_c00185{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.v1_c00185{vertical-align:-2.880000px;}
.v0_c00185{vertical-align:0.000000px;}
.ls0_c00185{letter-spacing:0.000000px;}
.sc__c00185{text-shadow:none;}
.sc0_c00185{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00185{-webkit-text-stroke:0px transparent;}
.sc0_c00185{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00185{word-spacing:0.000000px;}
.ws0_c00185{word-spacing:2.443680px;}
.fc0_c00185{color:transparent;}
.fs11_c00185{font-size:23.040000px;}
.fs10_c00185{font-size:28.800000px;}
.fs9_c00185{font-size:31.680000px;}
.fsf_c00185{font-size:34.560000px;}
.fsc_c00185{font-size:37.440000px;}
.fs6_c00185{font-size:40.320000px;}
.fsa_c00185{font-size:43.200000px;}
.fs3_c00185{font-size:46.080000px;}
.fs1_c00185{font-size:48.960000px;}
.fs7_c00185{font-size:51.840000px;}
.fs8_c00185{font-size:54.720000px;}
.fs2_c00185{font-size:57.600000px;}
.fsb_c00185{font-size:60.480000px;}
.fs5_c00185{font-size:63.360000px;}
.fse_c00185{font-size:66.240000px;}
.fs4_c00185{font-size:69.120000px;}
.fsd_c00185{font-size:72.000000px;}
.fs0_c00185{font-size:77.760000px;}
.fs12_c00185{font-size:83.520000px;}
.y0_c00185{bottom:0.000000px;}
.y6f_c00185{bottom:109.440000px;}
.y72_c00185{bottom:110.880000px;}
.y6d_c00185{bottom:111.600000px;}
.y6e_c00185{bottom:112.320000px;}
.y70_c00185{bottom:113.040000px;}
.y71_c00185{bottom:113.760000px;}
.y6b_c00185{bottom:152.640000px;}
.y6c_c00185{bottom:154.800000px;}
.y69_c00185{bottom:155.520000px;}
.y6a_c00185{bottom:156.240000px;}
.y65_c00185{bottom:195.120000px;}
.y63_c00185{bottom:196.560000px;}
.y66_c00185{bottom:197.280000px;}
.y67_c00185{bottom:198.000000px;}
.y64_c00185{bottom:198.720000px;}
.y68_c00185{bottom:199.440000px;}
.y5f_c00185{bottom:239.040000px;}
.y61_c00185{bottom:239.760000px;}
.y5e_c00185{bottom:240.480000px;}
.y60_c00185{bottom:241.200000px;}
.y62_c00185{bottom:241.920000px;}
.y5d_c00185{bottom:242.640000px;}
.y5a_c00185{bottom:281.520000px;}
.y5b_c00185{bottom:282.960000px;}
.y57_c00185{bottom:284.400000px;}
.y59_c00185{bottom:285.120000px;}
.y55_c00185{bottom:285.840000px;}
.y5c_c00185{bottom:286.560000px;}
.y58_c00185{bottom:290.880000px;}
.y56_c00185{bottom:292.320000px;}
.y52_c00185{bottom:324.720000px;}
.y53_c00185{bottom:325.440000px;}
.y4f_c00185{bottom:326.160000px;}
.y51_c00185{bottom:327.600000px;}
.y54_c00185{bottom:328.320000px;}
.y50_c00185{bottom:329.040000px;}
.y4b_c00185{bottom:368.640000px;}
.y49_c00185{bottom:369.360000px;}
.y4a_c00185{bottom:370.080000px;}
.y4c_c00185{bottom:371.520000px;}
.y4d_c00185{bottom:372.240000px;}
.y48_c00185{bottom:372.960000px;}
.y4e_c00185{bottom:374.400000px;}
.y45_c00185{bottom:411.840000px;}
.y44_c00185{bottom:412.560000px;}
.y47_c00185{bottom:414.000000px;}
.y46_c00185{bottom:414.720000px;}
.y43_c00185{bottom:415.440000px;}
.y42_c00185{bottom:416.160000px;}
.y3f_c00185{bottom:455.040000px;}
.y3e_c00185{bottom:455.760000px;}
.y41_c00185{bottom:457.920000px;}
.y40_c00185{bottom:458.640000px;}
.y3b_c00185{bottom:497.520000px;}
.y3c_c00185{bottom:498.240000px;}
.y39_c00185{bottom:498.960000px;}
.y3d_c00185{bottom:501.120000px;}
.y3a_c00185{bottom:501.840000px;}
.y37_c00185{bottom:542.880000px;}
.y38_c00185{bottom:543.600000px;}
.y36_c00185{bottom:544.320000px;}
.y35_c00185{bottom:545.040000px;}
.y34_c00185{bottom:595.440000px;}
.y31_c00185{bottom:596.160000px;}
.y33_c00185{bottom:596.880000px;}
.y32_c00185{bottom:598.320000px;}
.y2f_c00185{bottom:638.640000px;}
.y30_c00185{bottom:639.360000px;}
.y2c_c00185{bottom:640.800000px;}
.y2d_c00185{bottom:641.520000px;}
.y2e_c00185{bottom:642.240000px;}
.y29_c00185{bottom:681.840000px;}
.y2a_c00185{bottom:682.560000px;}
.y2b_c00185{bottom:684.000000px;}
.y27_c00185{bottom:684.720000px;}
.y28_c00185{bottom:685.440000px;}
.y23_c00185{bottom:735.120000px;}
.y24_c00185{bottom:735.840000px;}
.y25_c00185{bottom:737.280000px;}
.y26_c00185{bottom:738.000000px;}
.y1e_c00185{bottom:777.600000px;}
.y1f_c00185{bottom:778.320000px;}
.y22_c00185{bottom:779.760000px;}
.y21_c00185{bottom:780.480000px;}
.y20_c00185{bottom:781.200000px;}
.y1d_c00185{bottom:821.520000px;}
.y1c_c00185{bottom:822.240000px;}
.y1a_c00185{bottom:823.680000px;}
.y1b_c00185{bottom:824.400000px;}
.y14_c00185{bottom:864.000000px;}
.y16_c00185{bottom:864.720000px;}
.y19_c00185{bottom:865.440000px;}
.y18_c00185{bottom:866.160000px;}
.y17_c00185{bottom:866.880000px;}
.y15_c00185{bottom:867.600000px;}
.y11_c00185{bottom:907.920000px;}
.y10_c00185{bottom:909.360000px;}
.y12_c00185{bottom:910.080000px;}
.y13_c00185{bottom:910.800000px;}
.yf_c00185{bottom:949.680000px;}
.yc_c00185{bottom:950.400000px;}
.ye_c00185{bottom:951.120000px;}
.yd_c00185{bottom:951.840000px;}
.yb_c00185{bottom:953.280000px;}
.ya_c00185{bottom:954.000000px;}
.y8_c00185{bottom:1004.400000px;}
.y6_c00185{bottom:1005.840000px;}
.y9_c00185{bottom:1006.560000px;}
.y7_c00185{bottom:1007.280000px;}
.y3_c00185{bottom:1049.040000px;}
.y2_c00185{bottom:1049.760000px;}
.y5_c00185{bottom:1050.480000px;}
.y4_c00185{bottom:1051.200000px;}
.y1_c00185{bottom:1115.280000px;}
.h14_c00185{height:20.733750px;}
.h13_c00185{height:25.917187px;}
.hb_c00185{height:28.508906px;}
.h11_c00185{height:31.100625px;}
.he_c00185{height:33.692344px;}
.h12_c00185{height:35.995781px;}
.h8_c00185{height:36.284062px;}
.hc_c00185{height:38.875781px;}
.h5_c00185{height:41.467500px;}
.h3_c00185{height:44.059219px;}
.h9_c00185{height:46.650937px;}
.ha_c00185{height:49.242656px;}
.h4_c00185{height:51.834375px;}
.hd_c00185{height:54.426094px;}
.h7_c00185{height:57.017812px;}
.h10_c00185{height:59.609531px;}
.h6_c00185{height:62.201250px;}
.hf_c00185{height:64.792969px;}
.h2_c00185{height:69.976406px;}
.h15_c00185{height:75.159844px;}
.h1_c00185{height:1149.750000px;}
.h0_c00185{height:1149.840000px;}
.w1_c00185{width:791.250000px;}
.w0_c00185{width:791.280000px;}
.x0_c00185{left:0.000000px;}
.x3e_c00185{left:90.000000px;}
.x2_c00185{left:91.440000px;}
.x52_c00185{left:103.680000px;}
.x44_c00185{left:110.160000px;}
.x53_c00185{left:113.040000px;}
.x3_c00185{left:122.400000px;}
.x45_c00185{left:123.840000px;}
.x38_c00185{left:132.480000px;}
.xb_c00185{left:133.920000px;}
.x46_c00185{left:144.000000px;}
.x3f_c00185{left:154.800000px;}
.x69_c00185{left:164.160000px;}
.x22_c00185{left:165.600000px;}
.x2c_c00185{left:175.680000px;}
.x54_c00185{left:177.120000px;}
.x60_c00185{left:185.760000px;}
.x55_c00185{left:195.840000px;}
.x2d_c00185{left:197.280000px;}
.xf_c00185{left:199.440000px;}
.x23_c00185{left:208.080000px;}
.x39_c00185{left:218.880000px;}
.x18_c00185{left:220.320000px;}
.x61_c00185{left:228.960000px;}
.x10_c00185{left:230.400000px;}
.x31_c00185{left:239.760000px;}
.x29_c00185{left:241.920000px;}
.x56_c00185{left:249.840000px;}
.x19_c00185{left:252.720000px;}
.x3a_c00185{left:261.360000px;}
.x4_c00185{left:263.520000px;}
.x24_c00185{left:273.600000px;}
.x32_c00185{left:283.680000px;}
.x5_c00185{left:285.840000px;}
.x4d_c00185{left:293.760000px;}
.x25_c00185{left:295.920000px;}
.x40_c00185{left:304.560000px;}
.x62_c00185{left:306.000000px;}
.x11_c00185{left:307.440000px;}
.x5b_c00185{left:314.640000px;}
.x1f_c00185{left:316.800000px;}
.x3b_c00185{left:325.440000px;}
.x1a_c00185{left:328.320000px;}
.x57_c00185{left:336.960000px;}
.x12_c00185{left:338.400000px;}
.x64_c00185{left:347.760000px;}
.x2e_c00185{left:349.920000px;}
.x5c_c00185{left:358.560000px;}
.x6_c00185{left:360.720000px;}
.x4a_c00185{left:370.800000px;}
.x65_c00185{left:379.440000px;}
.x36_c00185{left:380.880000px;}
.x26_c00185{left:391.680000px;}
.x6a_c00185{left:401.760000px;}
.x2a_c00185{left:403.200000px;}
.x41_c00185{left:413.280000px;}
.x58_c00185{left:414.720000px;}
.xc_c00185{left:416.160000px;}
.x47_c00185{left:422.640000px;}
.x1b_c00185{left:425.520000px;}
.x59_c00185{left:434.160000px;}
.x2f_c00185{left:435.600000px;}
.xd_c00185{left:437.040000px;}
.x35_c00185{left:445.680000px;}
.x13_c00185{left:447.120000px;}
.x4e_c00185{left:455.760000px;}
.x63_c00185{left:467.280000px;}
.x1c_c00185{left:468.720000px;}
.x42_c00185{left:477.360000px;}
.x7_c00185{left:479.520000px;}
.xe_c00185{left:481.680000px;}
.x48_c00185{left:499.680000px;}
.x33_c00185{left:510.480000px;}
.x14_c00185{left:511.920000px;}
.x66_c00185{left:530.640000px;}
.x49_c00185{left:542.160000px;}
.x3c_c00185{left:553.680000px;}
.x37_c00185{left:564.480000px;}
.x27_c00185{left:565.920000px;}
.x4f_c00185{left:573.840000px;}
.x30_c00185{left:575.280000px;}
.x8_c00185{left:577.440000px;}
.x5d_c00185{left:584.640000px;}
.x4b_c00185{left:586.080000px;}
.x15_c00185{left:587.520000px;}
.x67_c00185{left:595.440000px;}
.x20_c00185{left:596.880000px;}
.x2b_c00185{left:607.680000px;}
.x50_c00185{left:617.040000px;}
.x16_c00185{left:621.360000px;}
.x68_c00185{left:628.560000px;}
.x9_c00185{left:630.000000px;}
.x5a_c00185{left:637.920000px;}
.x28_c00185{left:640.080000px;}
.x21_c00185{left:641.520000px;}
.x51_c00185{left:648.720000px;}
.x1d_c00185{left:650.880000px;}
.x5e_c00185{left:659.520000px;}
.x17_c00185{left:662.400000px;}
.x3d_c00185{left:670.320000px;}
.xa_c00185{left:672.480000px;}
.x43_c00185{left:681.120000px;}
.x34_c00185{left:682.560000px;}
.x5f_c00185{left:691.200000px;}
.x1e_c00185{left:694.080000px;}
.x4c_c00185{left:712.800000px;}
.x1_c00185{left:724.320000px;}
@media print{
.v1_c00185{vertical-align:-2.560000pt;}
.v0_c00185{vertical-align:0.000000pt;}
.ls0_c00185{letter-spacing:0.000000pt;}
.ws1_c00185{word-spacing:0.000000pt;}
.ws0_c00185{word-spacing:2.172160pt;}
.fs11_c00185{font-size:20.480000pt;}
.fs10_c00185{font-size:25.600000pt;}
.fs9_c00185{font-size:28.160000pt;}
.fsf_c00185{font-size:30.720000pt;}
.fsc_c00185{font-size:33.280000pt;}
.fs6_c00185{font-size:35.840000pt;}
.fsa_c00185{font-size:38.400000pt;}
.fs3_c00185{font-size:40.960000pt;}
.fs1_c00185{font-size:43.520000pt;}
.fs7_c00185{font-size:46.080000pt;}
.fs8_c00185{font-size:48.640000pt;}
.fs2_c00185{font-size:51.200000pt;}
.fsb_c00185{font-size:53.760000pt;}
.fs5_c00185{font-size:56.320000pt;}
.fse_c00185{font-size:58.880000pt;}
.fs4_c00185{font-size:61.440000pt;}
.fsd_c00185{font-size:64.000000pt;}
.fs0_c00185{font-size:69.120000pt;}
.fs12_c00185{font-size:74.240000pt;}
.y0_c00185{bottom:0.000000pt;}
.y6f_c00185{bottom:97.280000pt;}
.y72_c00185{bottom:98.560000pt;}
.y6d_c00185{bottom:99.200000pt;}
.y6e_c00185{bottom:99.840000pt;}
.y70_c00185{bottom:100.480000pt;}
.y71_c00185{bottom:101.120000pt;}
.y6b_c00185{bottom:135.680000pt;}
.y6c_c00185{bottom:137.600000pt;}
.y69_c00185{bottom:138.240000pt;}
.y6a_c00185{bottom:138.880000pt;}
.y65_c00185{bottom:173.440000pt;}
.y63_c00185{bottom:174.720000pt;}
.y66_c00185{bottom:175.360000pt;}
.y67_c00185{bottom:176.000000pt;}
.y64_c00185{bottom:176.640000pt;}
.y68_c00185{bottom:177.280000pt;}
.y5f_c00185{bottom:212.480000pt;}
.y61_c00185{bottom:213.120000pt;}
.y5e_c00185{bottom:213.760000pt;}
.y60_c00185{bottom:214.400000pt;}
.y62_c00185{bottom:215.040000pt;}
.y5d_c00185{bottom:215.680000pt;}
.y5a_c00185{bottom:250.240000pt;}
.y5b_c00185{bottom:251.520000pt;}
.y57_c00185{bottom:252.800000pt;}
.y59_c00185{bottom:253.440000pt;}
.y55_c00185{bottom:254.080000pt;}
.y5c_c00185{bottom:254.720000pt;}
.y58_c00185{bottom:258.560000pt;}
.y56_c00185{bottom:259.840000pt;}
.y52_c00185{bottom:288.640000pt;}
.y53_c00185{bottom:289.280000pt;}
.y4f_c00185{bottom:289.920000pt;}
.y51_c00185{bottom:291.200000pt;}
.y54_c00185{bottom:291.840000pt;}
.y50_c00185{bottom:292.480000pt;}
.y4b_c00185{bottom:327.680000pt;}
.y49_c00185{bottom:328.320000pt;}
.y4a_c00185{bottom:328.960000pt;}
.y4c_c00185{bottom:330.240000pt;}
.y4d_c00185{bottom:330.880000pt;}
.y48_c00185{bottom:331.520000pt;}
.y4e_c00185{bottom:332.800000pt;}
.y45_c00185{bottom:366.080000pt;}
.y44_c00185{bottom:366.720000pt;}
.y47_c00185{bottom:368.000000pt;}
.y46_c00185{bottom:368.640000pt;}
.y43_c00185{bottom:369.280000pt;}
.y42_c00185{bottom:369.920000pt;}
.y3f_c00185{bottom:404.480000pt;}
.y3e_c00185{bottom:405.120000pt;}
.y41_c00185{bottom:407.040000pt;}
.y40_c00185{bottom:407.680000pt;}
.y3b_c00185{bottom:442.240000pt;}
.y3c_c00185{bottom:442.880000pt;}
.y39_c00185{bottom:443.520000pt;}
.y3d_c00185{bottom:445.440000pt;}
.y3a_c00185{bottom:446.080000pt;}
.y37_c00185{bottom:482.560000pt;}
.y38_c00185{bottom:483.200000pt;}
.y36_c00185{bottom:483.840000pt;}
.y35_c00185{bottom:484.480000pt;}
.y34_c00185{bottom:529.280000pt;}
.y31_c00185{bottom:529.920000pt;}
.y33_c00185{bottom:530.560000pt;}
.y32_c00185{bottom:531.840000pt;}
.y2f_c00185{bottom:567.680000pt;}
.y30_c00185{bottom:568.320000pt;}
.y2c_c00185{bottom:569.600000pt;}
.y2d_c00185{bottom:570.240000pt;}
.y2e_c00185{bottom:570.880000pt;}
.y29_c00185{bottom:606.080000pt;}
.y2a_c00185{bottom:606.720000pt;}
.y2b_c00185{bottom:608.000000pt;}
.y27_c00185{bottom:608.640000pt;}
.y28_c00185{bottom:609.280000pt;}
.y23_c00185{bottom:653.440000pt;}
.y24_c00185{bottom:654.080000pt;}
.y25_c00185{bottom:655.360000pt;}
.y26_c00185{bottom:656.000000pt;}
.y1e_c00185{bottom:691.200000pt;}
.y1f_c00185{bottom:691.840000pt;}
.y22_c00185{bottom:693.120000pt;}
.y21_c00185{bottom:693.760000pt;}
.y20_c00185{bottom:694.400000pt;}
.y1d_c00185{bottom:730.240000pt;}
.y1c_c00185{bottom:730.880000pt;}
.y1a_c00185{bottom:732.160000pt;}
.y1b_c00185{bottom:732.800000pt;}
.y14_c00185{bottom:768.000000pt;}
.y16_c00185{bottom:768.640000pt;}
.y19_c00185{bottom:769.280000pt;}
.y18_c00185{bottom:769.920000pt;}
.y17_c00185{bottom:770.560000pt;}
.y15_c00185{bottom:771.200000pt;}
.y11_c00185{bottom:807.040000pt;}
.y10_c00185{bottom:808.320000pt;}
.y12_c00185{bottom:808.960000pt;}
.y13_c00185{bottom:809.600000pt;}
.yf_c00185{bottom:844.160000pt;}
.yc_c00185{bottom:844.800000pt;}
.ye_c00185{bottom:845.440000pt;}
.yd_c00185{bottom:846.080000pt;}
.yb_c00185{bottom:847.360000pt;}
.ya_c00185{bottom:848.000000pt;}
.y8_c00185{bottom:892.800000pt;}
.y6_c00185{bottom:894.080000pt;}
.y9_c00185{bottom:894.720000pt;}
.y7_c00185{bottom:895.360000pt;}
.y3_c00185{bottom:932.480000pt;}
.y2_c00185{bottom:933.120000pt;}
.y5_c00185{bottom:933.760000pt;}
.y4_c00185{bottom:934.400000pt;}
.y1_c00185{bottom:991.360000pt;}
.h14_c00185{height:18.430000pt;}
.h13_c00185{height:23.037500pt;}
.hb_c00185{height:25.341250pt;}
.h11_c00185{height:27.645000pt;}
.he_c00185{height:29.948750pt;}
.h12_c00185{height:31.996250pt;}
.h8_c00185{height:32.252500pt;}
.hc_c00185{height:34.556250pt;}
.h5_c00185{height:36.860000pt;}
.h3_c00185{height:39.163750pt;}
.h9_c00185{height:41.467500pt;}
.ha_c00185{height:43.771250pt;}
.h4_c00185{height:46.075000pt;}
.hd_c00185{height:48.378750pt;}
.h7_c00185{height:50.682500pt;}
.h10_c00185{height:52.986250pt;}
.h6_c00185{height:55.290000pt;}
.hf_c00185{height:57.593750pt;}
.h2_c00185{height:62.201250pt;}
.h15_c00185{height:66.808750pt;}
.h1_c00185{height:1022.000000pt;}
.h0_c00185{height:1022.080000pt;}
.w1_c00185{width:703.333333pt;}
.w0_c00185{width:703.360000pt;}
.x0_c00185{left:0.000000pt;}
.x3e_c00185{left:80.000000pt;}
.x2_c00185{left:81.280000pt;}
.x52_c00185{left:92.160000pt;}
.x44_c00185{left:97.920000pt;}
.x53_c00185{left:100.480000pt;}
.x3_c00185{left:108.800000pt;}
.x45_c00185{left:110.080000pt;}
.x38_c00185{left:117.760000pt;}
.xb_c00185{left:119.040000pt;}
.x46_c00185{left:128.000000pt;}
.x3f_c00185{left:137.600000pt;}
.x69_c00185{left:145.920000pt;}
.x22_c00185{left:147.200000pt;}
.x2c_c00185{left:156.160000pt;}
.x54_c00185{left:157.440000pt;}
.x60_c00185{left:165.120000pt;}
.x55_c00185{left:174.080000pt;}
.x2d_c00185{left:175.360000pt;}
.xf_c00185{left:177.280000pt;}
.x23_c00185{left:184.960000pt;}
.x39_c00185{left:194.560000pt;}
.x18_c00185{left:195.840000pt;}
.x61_c00185{left:203.520000pt;}
.x10_c00185{left:204.800000pt;}
.x31_c00185{left:213.120000pt;}
.x29_c00185{left:215.040000pt;}
.x56_c00185{left:222.080000pt;}
.x19_c00185{left:224.640000pt;}
.x3a_c00185{left:232.320000pt;}
.x4_c00185{left:234.240000pt;}
.x24_c00185{left:243.200000pt;}
.x32_c00185{left:252.160000pt;}
.x5_c00185{left:254.080000pt;}
.x4d_c00185{left:261.120000pt;}
.x25_c00185{left:263.040000pt;}
.x40_c00185{left:270.720000pt;}
.x62_c00185{left:272.000000pt;}
.x11_c00185{left:273.280000pt;}
.x5b_c00185{left:279.680000pt;}
.x1f_c00185{left:281.600000pt;}
.x3b_c00185{left:289.280000pt;}
.x1a_c00185{left:291.840000pt;}
.x57_c00185{left:299.520000pt;}
.x12_c00185{left:300.800000pt;}
.x64_c00185{left:309.120000pt;}
.x2e_c00185{left:311.040000pt;}
.x5c_c00185{left:318.720000pt;}
.x6_c00185{left:320.640000pt;}
.x4a_c00185{left:329.600000pt;}
.x65_c00185{left:337.280000pt;}
.x36_c00185{left:338.560000pt;}
.x26_c00185{left:348.160000pt;}
.x6a_c00185{left:357.120000pt;}
.x2a_c00185{left:358.400000pt;}
.x41_c00185{left:367.360000pt;}
.x58_c00185{left:368.640000pt;}
.xc_c00185{left:369.920000pt;}
.x47_c00185{left:375.680000pt;}
.x1b_c00185{left:378.240000pt;}
.x59_c00185{left:385.920000pt;}
.x2f_c00185{left:387.200000pt;}
.xd_c00185{left:388.480000pt;}
.x35_c00185{left:396.160000pt;}
.x13_c00185{left:397.440000pt;}
.x4e_c00185{left:405.120000pt;}
.x63_c00185{left:415.360000pt;}
.x1c_c00185{left:416.640000pt;}
.x42_c00185{left:424.320000pt;}
.x7_c00185{left:426.240000pt;}
.xe_c00185{left:428.160000pt;}
.x48_c00185{left:444.160000pt;}
.x33_c00185{left:453.760000pt;}
.x14_c00185{left:455.040000pt;}
.x66_c00185{left:471.680000pt;}
.x49_c00185{left:481.920000pt;}
.x3c_c00185{left:492.160000pt;}
.x37_c00185{left:501.760000pt;}
.x27_c00185{left:503.040000pt;}
.x4f_c00185{left:510.080000pt;}
.x30_c00185{left:511.360000pt;}
.x8_c00185{left:513.280000pt;}
.x5d_c00185{left:519.680000pt;}
.x4b_c00185{left:520.960000pt;}
.x15_c00185{left:522.240000pt;}
.x67_c00185{left:529.280000pt;}
.x20_c00185{left:530.560000pt;}
.x2b_c00185{left:540.160000pt;}
.x50_c00185{left:548.480000pt;}
.x16_c00185{left:552.320000pt;}
.x68_c00185{left:558.720000pt;}
.x9_c00185{left:560.000000pt;}
.x5a_c00185{left:567.040000pt;}
.x28_c00185{left:568.960000pt;}
.x21_c00185{left:570.240000pt;}
.x51_c00185{left:576.640000pt;}
.x1d_c00185{left:578.560000pt;}
.x5e_c00185{left:586.240000pt;}
.x17_c00185{left:588.800000pt;}
.x3d_c00185{left:595.840000pt;}
.xa_c00185{left:597.760000pt;}
.x43_c00185{left:605.440000pt;}
.x34_c00185{left:606.720000pt;}
.x5f_c00185{left:614.400000pt;}
.x1e_c00185{left:616.960000pt;}
.x4c_c00185{left:633.600000pt;}
.x1_c00185{left:643.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d77236be7c41d0ae958e579b.woff2')format("woff");}.ff1_c00186{font-family:ff1_c00186;line-height:1.109863;font-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_c00186{transform:matrix(0.185150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185150,0.000000,0.000000,0.250000,0,0);}
.m4e_c00186{transform:matrix(0.223975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223975,0.000000,0.000000,0.250000,0,0);}
.m59_c00186{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);}
.m54_c00186{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);}
.m53_c00186{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m11_c00186{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m8_c00186{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m49_c00186{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m15_c00186{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00186{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m22_c00186{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m50_c00186{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m45_c00186{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00186{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m20_c00186{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m56_c00186{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00186{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.ma_c00186{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m5_c00186{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m3_c00186{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m30_c00186{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m38_c00186{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.me_c00186{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m35_c00186{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);}
.m55_c00186{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00186{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m0_c00186{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);}
.m4d_c00186{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m19_c00186{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);}
.m46_c00186{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.mb_c00186{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00186{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00186{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);}
.m2_c00186{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1_c00186{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m10_c00186{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m18_c00186{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);}
.m7_c00186{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);}
.m1e_c00186{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);}
.m51_c00186{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m52_c00186{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);}
.m2d_c00186{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m13_c00186{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m48_c00186{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);}
.m16_c00186{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m23_c00186{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00186{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00186{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);}
.m57_c00186{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m41_c00186{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);}
.m3a_c00186{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);}
.m9_c00186{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);}
.md_c00186{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m58_c00186{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m34_c00186{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m31_c00186{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00186{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);}
.mc_c00186{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00186{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m40_c00186{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);}
.m1a_c00186{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00186{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m37_c00186{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m39_c00186{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00186{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);}
.m3d_c00186{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m21_c00186{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.mf_c00186{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);}
.m17_c00186{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m26_c00186{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m4_c00186{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m33_c00186{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m24_c00186{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00186{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);}
.m14_c00186{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);}
.m29_c00186{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m44_c00186{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m12_c00186{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00186{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);}
.m4f_c00186{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m36_c00186{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m32_c00186{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m43_c00186{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);}
.m6_c00186{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m25_c00186{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00186{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m27_c00186{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m42_c00186{transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);}
.m28_c00186{transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);}
.m47_c00186{transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);}
.v0_c00186{vertical-align:0.000000px;}
.ls0_c00186{letter-spacing:0.000000px;}
.sc__c00186{text-shadow:none;}
.sc0_c00186{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00186{-webkit-text-stroke:0px transparent;}
.sc0_c00186{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00186{word-spacing:0.000000px;}
.ws0_c00186{word-spacing:0.504000px;}
.fc0_c00186{color:transparent;}
.fse_c00186{font-size:23.040000px;}
.fsb_c00186{font-size:34.560000px;}
.fsf_c00186{font-size:37.440000px;}
.fs6_c00186{font-size:40.320000px;}
.fsa_c00186{font-size:43.200000px;}
.fsc_c00186{font-size:46.080000px;}
.fs8_c00186{font-size:48.960000px;}
.fs2_c00186{font-size:51.840000px;}
.fs1_c00186{font-size:54.720000px;}
.fs7_c00186{font-size:57.600000px;}
.fs4_c00186{font-size:60.480000px;}
.fs5_c00186{font-size:63.360000px;}
.fs3_c00186{font-size:66.240000px;}
.fsd_c00186{font-size:69.120000px;}
.fs9_c00186{font-size:72.000000px;}
.fs0_c00186{font-size:74.880000px;}
.y0_c00186{bottom:0.000000px;}
.y70_c00186{bottom:77.040000px;}
.y6f_c00186{bottom:81.360000px;}
.y6c_c00186{bottom:118.800000px;}
.y6d_c00186{bottom:119.520000px;}
.y6b_c00186{bottom:120.240000px;}
.y6e_c00186{bottom:120.960000px;}
.y6a_c00186{bottom:121.680000px;}
.y69_c00186{bottom:123.120000px;}
.y66_c00186{bottom:161.280000px;}
.y65_c00186{bottom:163.440000px;}
.y67_c00186{bottom:164.160000px;}
.y64_c00186{bottom:164.880000px;}
.y68_c00186{bottom:166.320000px;}
.y63_c00186{bottom:167.760000px;}
.y60_c00186{bottom:205.920000px;}
.y5f_c00186{bottom:207.360000px;}
.y61_c00186{bottom:208.080000px;}
.y62_c00186{bottom:208.800000px;}
.y5c_c00186{bottom:249.120000px;}
.y5e_c00186{bottom:249.840000px;}
.y5d_c00186{bottom:250.560000px;}
.y5b_c00186{bottom:251.280000px;}
.y5a_c00186{bottom:252.720000px;}
.y56_c00186{bottom:291.600000px;}
.y58_c00186{bottom:292.320000px;}
.y54_c00186{bottom:293.040000px;}
.y57_c00186{bottom:293.760000px;}
.y55_c00186{bottom:294.480000px;}
.y59_c00186{bottom:295.920000px;}
.y52_c00186{bottom:334.080000px;}
.y51_c00186{bottom:336.240000px;}
.y50_c00186{bottom:336.960000px;}
.y4f_c00186{bottom:337.680000px;}
.y4e_c00186{bottom:338.400000px;}
.y53_c00186{bottom:339.120000px;}
.y4c_c00186{bottom:377.280000px;}
.y49_c00186{bottom:378.000000px;}
.y48_c00186{bottom:378.720000px;}
.y4b_c00186{bottom:379.440000px;}
.y4d_c00186{bottom:380.160000px;}
.y4a_c00186{bottom:380.880000px;}
.y45_c00186{bottom:419.760000px;}
.y44_c00186{bottom:420.480000px;}
.y47_c00186{bottom:421.920000px;}
.y46_c00186{bottom:422.640000px;}
.y43_c00186{bottom:423.360000px;}
.y42_c00186{bottom:424.080000px;}
.y3e_c00186{bottom:462.240000px;}
.y41_c00186{bottom:463.680000px;}
.y40_c00186{bottom:465.120000px;}
.y3f_c00186{bottom:465.840000px;}
.y3d_c00186{bottom:466.560000px;}
.y3b_c00186{bottom:506.160000px;}
.y3c_c00186{bottom:507.600000px;}
.y39_c00186{bottom:509.040000px;}
.y3a_c00186{bottom:509.760000px;}
.y37_c00186{bottom:560.880000px;}
.y38_c00186{bottom:562.320000px;}
.y36_c00186{bottom:563.040000px;}
.y35_c00186{bottom:563.760000px;}
.y34_c00186{bottom:603.360000px;}
.y33_c00186{bottom:604.080000px;}
.y32_c00186{bottom:606.240000px;}
.y30_c00186{bottom:646.560000px;}
.y2f_c00186{bottom:647.280000px;}
.y2e_c00186{bottom:648.000000px;}
.y2d_c00186{bottom:648.720000px;}
.y31_c00186{bottom:649.440000px;}
.y2a_c00186{bottom:690.480000px;}
.y2c_c00186{bottom:691.920000px;}
.y29_c00186{bottom:692.640000px;}
.y2b_c00186{bottom:693.360000px;}
.y23_c00186{bottom:732.960000px;}
.y24_c00186{bottom:733.680000px;}
.y26_c00186{bottom:734.400000px;}
.y25_c00186{bottom:735.840000px;}
.y27_c00186{bottom:736.560000px;}
.y28_c00186{bottom:738.000000px;}
.y1f_c00186{bottom:776.160000px;}
.y21_c00186{bottom:776.880000px;}
.y20_c00186{bottom:779.040000px;}
.y22_c00186{bottom:779.760000px;}
.y1e_c00186{bottom:820.080000px;}
.y1b_c00186{bottom:821.520000px;}
.y1c_c00186{bottom:822.240000px;}
.y1d_c00186{bottom:822.960000px;}
.y1a_c00186{bottom:861.840000px;}
.y17_c00186{bottom:862.560000px;}
.y18_c00186{bottom:863.280000px;}
.y16_c00186{bottom:864.720000px;}
.y19_c00186{bottom:865.440000px;}
.y15_c00186{bottom:904.320000px;}
.y11_c00186{bottom:905.040000px;}
.y14_c00186{bottom:906.480000px;}
.y13_c00186{bottom:907.920000px;}
.y12_c00186{bottom:908.640000px;}
.yc_c00186{bottom:948.240000px;}
.yf_c00186{bottom:948.960000px;}
.y10_c00186{bottom:950.400000px;}
.yd_c00186{bottom:951.120000px;}
.ye_c00186{bottom:951.840000px;}
.y6_c00186{bottom:990.000000px;}
.y7_c00186{bottom:991.440000px;}
.y8_c00186{bottom:992.160000px;}
.yb_c00186{bottom:992.880000px;}
.y9_c00186{bottom:993.600000px;}
.ya_c00186{bottom:994.320000px;}
.y5_c00186{bottom:1032.480000px;}
.y4_c00186{bottom:1033.920000px;}
.y2_c00186{bottom:1036.080000px;}
.y3_c00186{bottom:1037.520000px;}
.y1_c00186{bottom:1096.560000px;}
.hf_c00186{height:20.733750px;}
.hc_c00186{height:31.100625px;}
.h10_c00186{height:33.692344px;}
.h7_c00186{height:36.284062px;}
.hb_c00186{height:38.875781px;}
.hd_c00186{height:41.467500px;}
.h9_c00186{height:44.059219px;}
.h3_c00186{height:46.650937px;}
.h2_c00186{height:49.242656px;}
.h8_c00186{height:51.834375px;}
.h5_c00186{height:54.426094px;}
.h6_c00186{height:57.017812px;}
.h4_c00186{height:59.609531px;}
.he_c00186{height:62.201250px;}
.ha_c00186{height:64.792969px;}
.h1_c00186{height:67.384687px;}
.h0_c00186{height:1152.000000px;}
.w0_c00186{width:794.880000px;}
.w1_c00186{width:795.000000px;}
.x0_c00186{left:0.000000px;}
.x23_c00186{left:91.440000px;}
.x2_c00186{left:92.880000px;}
.x19_c00186{left:94.320000px;}
.x48_c00186{left:113.040000px;}
.x53_c00186{left:123.120000px;}
.x43_c00186{left:132.480000px;}
.x4c_c00186{left:133.920000px;}
.xb_c00186{left:135.360000px;}
.x24_c00186{left:144.000000px;}
.x5f_c00186{left:154.080000px;}
.x3e_c00186{left:164.880000px;}
.x1e_c00186{left:166.320000px;}
.x4f_c00186{left:175.680000px;}
.x25_c00186{left:177.120000px;}
.x35_c00186{left:187.200000px;}
.x3b_c00186{left:196.560000px;}
.x32_c00186{left:198.720000px;}
.x26_c00186{left:208.080000px;}
.x3_c00186{left:209.520000px;}
.x54_c00186{left:218.160000px;}
.x2a_c00186{left:220.320000px;}
.x33_c00186{left:229.680000px;}
.x12_c00186{left:231.120000px;}
.x3c_c00186{left:240.480000px;}
.x4_c00186{left:241.920000px;}
.x27_c00186{left:252.000000px;}
.x44_c00186{left:262.800000px;}
.x58_c00186{left:272.160000px;}
.x1f_c00186{left:295.920000px;}
.x5a_c00186{left:305.280000px;}
.x1a_c00186{left:306.720000px;}
.x13_c00186{left:316.800000px;}
.x28_c00186{left:328.320000px;}
.x5b_c00186{left:337.680000px;}
.x2b_c00186{left:339.840000px;}
.x3a_c00186{left:349.200000px;}
.xc_c00186{left:350.640000px;}
.x38_c00186{left:359.280000px;}
.x14_c00186{left:360.720000px;}
.x5_c00186{left:371.520000px;}
.x55_c00186{left:381.600000px;}
.x36_c00186{left:391.680000px;}
.x2f_c00186{left:393.120000px;}
.x15_c00186{left:404.640000px;}
.x50_c00186{left:412.560000px;}
.x3f_c00186{left:414.720000px;}
.x49_c00186{left:424.080000px;}
.x6_c00186{left:425.520000px;}
.x20_c00186{left:436.320000px;}
.x5c_c00186{left:444.240000px;}
.x59_c00186{left:445.680000px;}
.x39_c00186{left:447.120000px;}
.x2c_c00186{left:448.560000px;}
.x51_c00186{left:457.200000px;}
.x1b_c00186{left:458.640000px;}
.x4a_c00186{left:465.840000px;}
.xd_c00186{left:469.440000px;}
.x45_c00186{left:478.080000px;}
.x2d_c00186{left:479.520000px;}
.x56_c00186{left:488.880000px;}
.x16_c00186{left:490.320000px;}
.x40_c00186{left:499.680000px;}
.xe_c00186{left:501.120000px;}
.x4d_c00186{left:510.480000px;}
.x7_c00186{left:512.640000px;}
.x30_c00186{left:522.000000px;}
.x1c_c00186{left:533.520000px;}
.x3d_c00186{left:542.880000px;}
.x8_c00186{left:544.320000px;}
.x5d_c00186{left:552.960000px;}
.xf_c00186{left:555.120000px;}
.x60_c00186{left:563.760000px;}
.x37_c00186{left:565.920000px;}
.x34_c00186{left:574.560000px;}
.x29_c00186{left:576.720000px;}
.x41_c00186{left:586.080000px;}
.x17_c00186{left:587.520000px;}
.x9_c00186{left:598.320000px;}
.x4e_c00186{left:605.520000px;}
.x10_c00186{left:609.120000px;}
.x46_c00186{left:617.760000px;}
.x61_c00186{left:627.840000px;}
.x18_c00186{left:630.000000px;}
.x21_c00186{left:631.440000px;}
.x4b_c00186{left:639.360000px;}
.x11_c00186{left:640.800000px;}
.x5e_c00186{left:648.720000px;}
.x47_c00186{left:650.160000px;}
.x22_c00186{left:662.400000px;}
.x57_c00186{left:669.600000px;}
.x1d_c00186{left:671.760000px;}
.x42_c00186{left:683.280000px;}
.x52_c00186{left:692.640000px;}
.xa_c00186{left:694.800000px;}
.x2e_c00186{left:705.600000px;}
.x1_c00186{left:710.640000px;}
.x31_c00186{left:725.760000px;}
@media print{
.v0_c00186{vertical-align:0.000000pt;}
.ls0_c00186{letter-spacing:0.000000pt;}
.ws1_c00186{word-spacing:0.000000pt;}
.ws0_c00186{word-spacing:0.448000pt;}
.fse_c00186{font-size:20.480000pt;}
.fsb_c00186{font-size:30.720000pt;}
.fsf_c00186{font-size:33.280000pt;}
.fs6_c00186{font-size:35.840000pt;}
.fsa_c00186{font-size:38.400000pt;}
.fsc_c00186{font-size:40.960000pt;}
.fs8_c00186{font-size:43.520000pt;}
.fs2_c00186{font-size:46.080000pt;}
.fs1_c00186{font-size:48.640000pt;}
.fs7_c00186{font-size:51.200000pt;}
.fs4_c00186{font-size:53.760000pt;}
.fs5_c00186{font-size:56.320000pt;}
.fs3_c00186{font-size:58.880000pt;}
.fsd_c00186{font-size:61.440000pt;}
.fs9_c00186{font-size:64.000000pt;}
.fs0_c00186{font-size:66.560000pt;}
.y0_c00186{bottom:0.000000pt;}
.y70_c00186{bottom:68.480000pt;}
.y6f_c00186{bottom:72.320000pt;}
.y6c_c00186{bottom:105.600000pt;}
.y6d_c00186{bottom:106.240000pt;}
.y6b_c00186{bottom:106.880000pt;}
.y6e_c00186{bottom:107.520000pt;}
.y6a_c00186{bottom:108.160000pt;}
.y69_c00186{bottom:109.440000pt;}
.y66_c00186{bottom:143.360000pt;}
.y65_c00186{bottom:145.280000pt;}
.y67_c00186{bottom:145.920000pt;}
.y64_c00186{bottom:146.560000pt;}
.y68_c00186{bottom:147.840000pt;}
.y63_c00186{bottom:149.120000pt;}
.y60_c00186{bottom:183.040000pt;}
.y5f_c00186{bottom:184.320000pt;}
.y61_c00186{bottom:184.960000pt;}
.y62_c00186{bottom:185.600000pt;}
.y5c_c00186{bottom:221.440000pt;}
.y5e_c00186{bottom:222.080000pt;}
.y5d_c00186{bottom:222.720000pt;}
.y5b_c00186{bottom:223.360000pt;}
.y5a_c00186{bottom:224.640000pt;}
.y56_c00186{bottom:259.200000pt;}
.y58_c00186{bottom:259.840000pt;}
.y54_c00186{bottom:260.480000pt;}
.y57_c00186{bottom:261.120000pt;}
.y55_c00186{bottom:261.760000pt;}
.y59_c00186{bottom:263.040000pt;}
.y52_c00186{bottom:296.960000pt;}
.y51_c00186{bottom:298.880000pt;}
.y50_c00186{bottom:299.520000pt;}
.y4f_c00186{bottom:300.160000pt;}
.y4e_c00186{bottom:300.800000pt;}
.y53_c00186{bottom:301.440000pt;}
.y4c_c00186{bottom:335.360000pt;}
.y49_c00186{bottom:336.000000pt;}
.y48_c00186{bottom:336.640000pt;}
.y4b_c00186{bottom:337.280000pt;}
.y4d_c00186{bottom:337.920000pt;}
.y4a_c00186{bottom:338.560000pt;}
.y45_c00186{bottom:373.120000pt;}
.y44_c00186{bottom:373.760000pt;}
.y47_c00186{bottom:375.040000pt;}
.y46_c00186{bottom:375.680000pt;}
.y43_c00186{bottom:376.320000pt;}
.y42_c00186{bottom:376.960000pt;}
.y3e_c00186{bottom:410.880000pt;}
.y41_c00186{bottom:412.160000pt;}
.y40_c00186{bottom:413.440000pt;}
.y3f_c00186{bottom:414.080000pt;}
.y3d_c00186{bottom:414.720000pt;}
.y3b_c00186{bottom:449.920000pt;}
.y3c_c00186{bottom:451.200000pt;}
.y39_c00186{bottom:452.480000pt;}
.y3a_c00186{bottom:453.120000pt;}
.y37_c00186{bottom:498.560000pt;}
.y38_c00186{bottom:499.840000pt;}
.y36_c00186{bottom:500.480000pt;}
.y35_c00186{bottom:501.120000pt;}
.y34_c00186{bottom:536.320000pt;}
.y33_c00186{bottom:536.960000pt;}
.y32_c00186{bottom:538.880000pt;}
.y30_c00186{bottom:574.720000pt;}
.y2f_c00186{bottom:575.360000pt;}
.y2e_c00186{bottom:576.000000pt;}
.y2d_c00186{bottom:576.640000pt;}
.y31_c00186{bottom:577.280000pt;}
.y2a_c00186{bottom:613.760000pt;}
.y2c_c00186{bottom:615.040000pt;}
.y29_c00186{bottom:615.680000pt;}
.y2b_c00186{bottom:616.320000pt;}
.y23_c00186{bottom:651.520000pt;}
.y24_c00186{bottom:652.160000pt;}
.y26_c00186{bottom:652.800000pt;}
.y25_c00186{bottom:654.080000pt;}
.y27_c00186{bottom:654.720000pt;}
.y28_c00186{bottom:656.000000pt;}
.y1f_c00186{bottom:689.920000pt;}
.y21_c00186{bottom:690.560000pt;}
.y20_c00186{bottom:692.480000pt;}
.y22_c00186{bottom:693.120000pt;}
.y1e_c00186{bottom:728.960000pt;}
.y1b_c00186{bottom:730.240000pt;}
.y1c_c00186{bottom:730.880000pt;}
.y1d_c00186{bottom:731.520000pt;}
.y1a_c00186{bottom:766.080000pt;}
.y17_c00186{bottom:766.720000pt;}
.y18_c00186{bottom:767.360000pt;}
.y16_c00186{bottom:768.640000pt;}
.y19_c00186{bottom:769.280000pt;}
.y15_c00186{bottom:803.840000pt;}
.y11_c00186{bottom:804.480000pt;}
.y14_c00186{bottom:805.760000pt;}
.y13_c00186{bottom:807.040000pt;}
.y12_c00186{bottom:807.680000pt;}
.yc_c00186{bottom:842.880000pt;}
.yf_c00186{bottom:843.520000pt;}
.y10_c00186{bottom:844.800000pt;}
.yd_c00186{bottom:845.440000pt;}
.ye_c00186{bottom:846.080000pt;}
.y6_c00186{bottom:880.000000pt;}
.y7_c00186{bottom:881.280000pt;}
.y8_c00186{bottom:881.920000pt;}
.yb_c00186{bottom:882.560000pt;}
.y9_c00186{bottom:883.200000pt;}
.ya_c00186{bottom:883.840000pt;}
.y5_c00186{bottom:917.760000pt;}
.y4_c00186{bottom:919.040000pt;}
.y2_c00186{bottom:920.960000pt;}
.y3_c00186{bottom:922.240000pt;}
.y1_c00186{bottom:974.720000pt;}
.hf_c00186{height:18.430000pt;}
.hc_c00186{height:27.645000pt;}
.h10_c00186{height:29.948750pt;}
.h7_c00186{height:32.252500pt;}
.hb_c00186{height:34.556250pt;}
.hd_c00186{height:36.860000pt;}
.h9_c00186{height:39.163750pt;}
.h3_c00186{height:41.467500pt;}
.h2_c00186{height:43.771250pt;}
.h8_c00186{height:46.075000pt;}
.h5_c00186{height:48.378750pt;}
.h6_c00186{height:50.682500pt;}
.h4_c00186{height:52.986250pt;}
.he_c00186{height:55.290000pt;}
.ha_c00186{height:57.593750pt;}
.h1_c00186{height:59.897500pt;}
.h0_c00186{height:1024.000000pt;}
.w0_c00186{width:706.560000pt;}
.w1_c00186{width:706.666667pt;}
.x0_c00186{left:0.000000pt;}
.x23_c00186{left:81.280000pt;}
.x2_c00186{left:82.560000pt;}
.x19_c00186{left:83.840000pt;}
.x48_c00186{left:100.480000pt;}
.x53_c00186{left:109.440000pt;}
.x43_c00186{left:117.760000pt;}
.x4c_c00186{left:119.040000pt;}
.xb_c00186{left:120.320000pt;}
.x24_c00186{left:128.000000pt;}
.x5f_c00186{left:136.960000pt;}
.x3e_c00186{left:146.560000pt;}
.x1e_c00186{left:147.840000pt;}
.x4f_c00186{left:156.160000pt;}
.x25_c00186{left:157.440000pt;}
.x35_c00186{left:166.400000pt;}
.x3b_c00186{left:174.720000pt;}
.x32_c00186{left:176.640000pt;}
.x26_c00186{left:184.960000pt;}
.x3_c00186{left:186.240000pt;}
.x54_c00186{left:193.920000pt;}
.x2a_c00186{left:195.840000pt;}
.x33_c00186{left:204.160000pt;}
.x12_c00186{left:205.440000pt;}
.x3c_c00186{left:213.760000pt;}
.x4_c00186{left:215.040000pt;}
.x27_c00186{left:224.000000pt;}
.x44_c00186{left:233.600000pt;}
.x58_c00186{left:241.920000pt;}
.x1f_c00186{left:263.040000pt;}
.x5a_c00186{left:271.360000pt;}
.x1a_c00186{left:272.640000pt;}
.x13_c00186{left:281.600000pt;}
.x28_c00186{left:291.840000pt;}
.x5b_c00186{left:300.160000pt;}
.x2b_c00186{left:302.080000pt;}
.x3a_c00186{left:310.400000pt;}
.xc_c00186{left:311.680000pt;}
.x38_c00186{left:319.360000pt;}
.x14_c00186{left:320.640000pt;}
.x5_c00186{left:330.240000pt;}
.x55_c00186{left:339.200000pt;}
.x36_c00186{left:348.160000pt;}
.x2f_c00186{left:349.440000pt;}
.x15_c00186{left:359.680000pt;}
.x50_c00186{left:366.720000pt;}
.x3f_c00186{left:368.640000pt;}
.x49_c00186{left:376.960000pt;}
.x6_c00186{left:378.240000pt;}
.x20_c00186{left:387.840000pt;}
.x5c_c00186{left:394.880000pt;}
.x59_c00186{left:396.160000pt;}
.x39_c00186{left:397.440000pt;}
.x2c_c00186{left:398.720000pt;}
.x51_c00186{left:406.400000pt;}
.x1b_c00186{left:407.680000pt;}
.x4a_c00186{left:414.080000pt;}
.xd_c00186{left:417.280000pt;}
.x45_c00186{left:424.960000pt;}
.x2d_c00186{left:426.240000pt;}
.x56_c00186{left:434.560000pt;}
.x16_c00186{left:435.840000pt;}
.x40_c00186{left:444.160000pt;}
.xe_c00186{left:445.440000pt;}
.x4d_c00186{left:453.760000pt;}
.x7_c00186{left:455.680000pt;}
.x30_c00186{left:464.000000pt;}
.x1c_c00186{left:474.240000pt;}
.x3d_c00186{left:482.560000pt;}
.x8_c00186{left:483.840000pt;}
.x5d_c00186{left:491.520000pt;}
.xf_c00186{left:493.440000pt;}
.x60_c00186{left:501.120000pt;}
.x37_c00186{left:503.040000pt;}
.x34_c00186{left:510.720000pt;}
.x29_c00186{left:512.640000pt;}
.x41_c00186{left:520.960000pt;}
.x17_c00186{left:522.240000pt;}
.x9_c00186{left:531.840000pt;}
.x4e_c00186{left:538.240000pt;}
.x10_c00186{left:541.440000pt;}
.x46_c00186{left:549.120000pt;}
.x61_c00186{left:558.080000pt;}
.x18_c00186{left:560.000000pt;}
.x21_c00186{left:561.280000pt;}
.x4b_c00186{left:568.320000pt;}
.x11_c00186{left:569.600000pt;}
.x5e_c00186{left:576.640000pt;}
.x47_c00186{left:577.920000pt;}
.x22_c00186{left:588.800000pt;}
.x57_c00186{left:595.200000pt;}
.x1d_c00186{left:597.120000pt;}
.x42_c00186{left:607.360000pt;}
.x52_c00186{left:615.680000pt;}
.xa_c00186{left:617.600000pt;}
.x2e_c00186{left:627.200000pt;}
.x1_c00186{left:631.680000pt;}
.x31_c00186{left:645.120000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c979f040d28bcef4bb211058.woff2')format("woff");}.ff1_c00187{font-family:ff1_c00187;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m55_c00187{transform:matrix(0.216800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216800,0.000000,0.000000,0.250000,0,0);}
.m4f_c00187{transform:matrix(0.247725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247725,0.000000,0.000000,0.250000,0,0);}
.m33_c00187{transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);}
.m31_c00187{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);}
.m36_c00187{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);}
.m48_c00187{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);}
.m5a_c00187{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_c00187{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);}
.m47_c00187{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);}
.m44_c00187{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);}
.m29_c00187{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mb_c00187{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m38_c00187{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m30_c00187{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m45_c00187{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m40_c00187{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00187{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.md_c00187{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m12_c00187{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00187{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);}
.m3d_c00187{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00187{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);}
.m42_c00187{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);}
.m52_c00187{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m4_c00187{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m0_c00187{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);}
.m32_c00187{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00187{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_c00187{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m22_c00187{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1_c00187{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.mf_c00187{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00187{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);}
.m1a_c00187{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m15_c00187{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00187{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m5_c00187{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);}
.m1c_c00187{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m20_c00187{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);}
.m57_c00187{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);}
.m7_c00187{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);}
.m4c_c00187{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m46_c00187{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m27_c00187{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00187{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);}
.m1e_c00187{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m35_c00187{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m2_c00187{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);}
.m11_c00187{transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);}
.m9_c00187{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00187{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m39_c00187{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m23_c00187{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m3_c00187{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m43_c00187{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);}
.m8_c00187{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m50_c00187{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);}
.m1f_c00187{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m24_c00187{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00187{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00187{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m10_c00187{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);}
.m54_c00187{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m56_c00187{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m19_c00187{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m51_c00187{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m37_c00187{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m16_c00187{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.ma_c00187{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00187{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);}
.m14_c00187{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00187{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m53_c00187{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);}
.mc_c00187{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m34_c00187{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m28_c00187{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);}
.m58_c00187{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m59_c00187{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m6_c00187{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00187{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00187{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.me_c00187{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);}
.m2a_c00187{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m17_c00187{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m21_c00187{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);}
.m2e_c00187{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m41_c00187{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m18_c00187{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00187{transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);}
.m49_c00187{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00187{transform:matrix(0.872500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.872500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.872500,0.000000,0.000000,0.250000,0,0);}
.m25_c00187{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);}
.v1_c00187{vertical-align:-2.880000px;}
.v0_c00187{vertical-align:0.000000px;}
.ls0_c00187{letter-spacing:0.000000px;}
.sc__c00187{text-shadow:none;}
.sc0_c00187{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00187{-webkit-text-stroke:0px transparent;}
.sc0_c00187{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00187{word-spacing:-3.179280px;}
.ws1_c00187{word-spacing:0.000000px;}
.fc0_c00187{color:transparent;}
.fs10_c00187{font-size:23.040000px;}
.fse_c00187{font-size:25.920000px;}
.fsb_c00187{font-size:34.560000px;}
.fs9_c00187{font-size:37.440000px;}
.fsc_c00187{font-size:40.320000px;}
.fs8_c00187{font-size:43.200000px;}
.fs1_c00187{font-size:46.080000px;}
.fsd_c00187{font-size:48.960000px;}
.fs5_c00187{font-size:51.840000px;}
.fs6_c00187{font-size:54.720000px;}
.fs3_c00187{font-size:57.600000px;}
.fs2_c00187{font-size:60.480000px;}
.fs7_c00187{font-size:63.360000px;}
.fs4_c00187{font-size:66.240000px;}
.fsa_c00187{font-size:69.120000px;}
.fs11_c00187{font-size:72.000000px;}
.fs0_c00187{font-size:74.880000px;}
.fsf_c00187{font-size:77.760000px;}
.y0_c00187{bottom:0.000000px;}
.y7a_c00187{bottom:111.600000px;}
.y78_c00187{bottom:112.320000px;}
.y7b_c00187{bottom:114.480000px;}
.y79_c00187{bottom:115.920000px;}
.y7c_c00187{bottom:116.640000px;}
.y77_c00187{bottom:118.080000px;}
.y74_c00187{bottom:154.800000px;}
.y76_c00187{bottom:155.520000px;}
.y75_c00187{bottom:157.680000px;}
.y73_c00187{bottom:158.400000px;}
.y72_c00187{bottom:159.120000px;}
.y71_c00187{bottom:159.840000px;}
.y6f_c00187{bottom:198.000000px;}
.y70_c00187{bottom:199.440000px;}
.y6c_c00187{bottom:200.160000px;}
.y6e_c00187{bottom:200.880000px;}
.y6d_c00187{bottom:201.600000px;}
.y6b_c00187{bottom:203.760000px;}
.y65_c00187{bottom:240.480000px;}
.y66_c00187{bottom:241.200000px;}
.y68_c00187{bottom:241.920000px;}
.y69_c00187{bottom:242.640000px;}
.y67_c00187{bottom:243.360000px;}
.y64_c00187{bottom:244.080000px;}
.y63_c00187{bottom:244.800000px;}
.y62_c00187{bottom:245.520000px;}
.y6a_c00187{bottom:246.240000px;}
.y61_c00187{bottom:247.680000px;}
.y5e_c00187{bottom:285.120000px;}
.y60_c00187{bottom:285.840000px;}
.y5d_c00187{bottom:287.280000px;}
.y5c_c00187{bottom:288.000000px;}
.y5f_c00187{bottom:288.720000px;}
.y5b_c00187{bottom:289.440000px;}
.y57_c00187{bottom:328.320000px;}
.y56_c00187{bottom:329.040000px;}
.y55_c00187{bottom:329.760000px;}
.y58_c00187{bottom:330.480000px;}
.y5a_c00187{bottom:331.200000px;}
.y59_c00187{bottom:331.920000px;}
.y54_c00187{bottom:332.640000px;}
.y51_c00187{bottom:371.520000px;}
.y50_c00187{bottom:372.960000px;}
.y52_c00187{bottom:373.680000px;}
.y53_c00187{bottom:374.400000px;}
.y4f_c00187{bottom:375.120000px;}
.y4b_c00187{bottom:414.000000px;}
.y4c_c00187{bottom:414.720000px;}
.y4a_c00187{bottom:415.440000px;}
.y4e_c00187{bottom:416.160000px;}
.y4d_c00187{bottom:416.880000px;}
.y49_c00187{bottom:418.320000px;}
.y46_c00187{bottom:457.200000px;}
.y47_c00187{bottom:457.920000px;}
.y45_c00187{bottom:460.080000px;}
.y44_c00187{bottom:460.800000px;}
.y48_c00187{bottom:462.960000px;}
.y41_c00187{bottom:499.680000px;}
.y3f_c00187{bottom:501.840000px;}
.y43_c00187{bottom:502.560000px;}
.y42_c00187{bottom:503.280000px;}
.y40_c00187{bottom:504.000000px;}
.y3e_c00187{bottom:504.720000px;}
.y3d_c00187{bottom:544.320000px;}
.y3c_c00187{bottom:545.760000px;}
.y3a_c00187{bottom:546.480000px;}
.y3b_c00187{bottom:547.200000px;}
.y37_c00187{bottom:597.600000px;}
.y38_c00187{bottom:598.320000px;}
.y36_c00187{bottom:600.480000px;}
.y39_c00187{bottom:601.200000px;}
.y34_c00187{bottom:640.800000px;}
.y32_c00187{bottom:641.520000px;}
.y35_c00187{bottom:642.960000px;}
.y31_c00187{bottom:643.680000px;}
.y33_c00187{bottom:644.400000px;}
.y2e_c00187{bottom:684.000000px;}
.y2f_c00187{bottom:684.720000px;}
.y30_c00187{bottom:685.440000px;}
.y2d_c00187{bottom:686.160000px;}
.y2c_c00187{bottom:686.880000px;}
.y2a_c00187{bottom:727.200000px;}
.y29_c00187{bottom:727.920000px;}
.y2b_c00187{bottom:728.640000px;}
.y28_c00187{bottom:729.360000px;}
.y27_c00187{bottom:730.080000px;}
.y26_c00187{bottom:781.200000px;}
.y25_c00187{bottom:782.640000px;}
.y1f_c00187{bottom:822.960000px;}
.y20_c00187{bottom:824.400000px;}
.y22_c00187{bottom:825.120000px;}
.y24_c00187{bottom:825.840000px;}
.y23_c00187{bottom:826.560000px;}
.y21_c00187{bottom:827.280000px;}
.y19_c00187{bottom:866.880000px;}
.y1d_c00187{bottom:867.600000px;}
.y1b_c00187{bottom:868.320000px;}
.y1c_c00187{bottom:869.040000px;}
.y1a_c00187{bottom:870.480000px;}
.y1e_c00187{bottom:871.200000px;}
.y18_c00187{bottom:910.080000px;}
.y14_c00187{bottom:910.800000px;}
.y16_c00187{bottom:912.240000px;}
.y17_c00187{bottom:912.960000px;}
.y15_c00187{bottom:913.680000px;}
.yd_c00187{bottom:953.280000px;}
.yf_c00187{bottom:954.000000px;}
.y10_c00187{bottom:954.720000px;}
.y13_c00187{bottom:955.440000px;}
.y12_c00187{bottom:956.160000px;}
.y11_c00187{bottom:956.880000px;}
.ye_c00187{bottom:957.600000px;}
.yc_c00187{bottom:996.480000px;}
.y8_c00187{bottom:997.200000px;}
.ya_c00187{bottom:997.920000px;}
.y7_c00187{bottom:998.640000px;}
.yb_c00187{bottom:999.360000px;}
.y9_c00187{bottom:1000.800000px;}
.y5_c00187{bottom:1040.400000px;}
.y3_c00187{bottom:1041.120000px;}
.y6_c00187{bottom:1041.840000px;}
.y4_c00187{bottom:1043.280000px;}
.y2_c00187{bottom:1044.000000px;}
.y1_c00187{bottom:1097.280000px;}
.h12_c00187{height:20.733750px;}
.h10_c00187{height:23.325469px;}
.hd_c00187{height:31.100625px;}
.hb_c00187{height:33.692344px;}
.he_c00187{height:36.284062px;}
.ha_c00187{height:38.875781px;}
.h3_c00187{height:41.467500px;}
.hf_c00187{height:44.059219px;}
.h7_c00187{height:46.650937px;}
.h8_c00187{height:49.242656px;}
.h5_c00187{height:51.834375px;}
.h4_c00187{height:54.426094px;}
.h9_c00187{height:57.017812px;}
.h6_c00187{height:59.609531px;}
.hc_c00187{height:62.201250px;}
.h13_c00187{height:64.792969px;}
.h2_c00187{height:67.384687px;}
.h11_c00187{height:69.976406px;}
.h1_c00187{height:1144.500000px;}
.h0_c00187{height:1144.800000px;}
.w1_c00187{width:783.750000px;}
.w0_c00187{width:784.080000px;}
.x0_c00187{left:0.000000px;}
.xb_c00187{left:82.080000px;}
.x40_c00187{left:83.520000px;}
.x28_c00187{left:113.760000px;}
.x1d_c00187{left:123.120000px;}
.xc_c00187{left:125.280000px;}
.x3c_c00187{left:134.640000px;}
.x41_c00187{left:145.440000px;}
.x2e_c00187{left:156.240000px;}
.x1e_c00187{left:166.320000px;}
.xd_c00187{left:177.120000px;}
.x19_c00187{left:187.920000px;}
.x2_c00187{left:190.080000px;}
.x23_c00187{left:198.720000px;}
.x35_c00187{left:207.360000px;}
.x33_c00187{left:209.520000px;}
.x3_c00187{left:222.480000px;}
.x54_c00187{left:231.120000px;}
.x3d_c00187{left:241.200000px;}
.x14_c00187{left:243.360000px;}
.x4e_c00187{left:252.720000px;}
.x36_c00187{left:263.520000px;}
.x49_c00187{left:265.680000px;}
.xe_c00187{left:275.040000px;}
.x4_c00187{left:286.560000px;}
.x34_c00187{left:296.640000px;}
.x50_c00187{left:298.080000px;}
.x46_c00187{left:306.000000px;}
.xf_c00187{left:307.440000px;}
.x39_c00187{left:318.240000px;}
.x2f_c00187{left:319.680000px;}
.x1f_c00187{left:329.760000px;}
.x29_c00187{left:339.120000px;}
.x1a_c00187{left:340.560000px;}
.x15_c00187{left:350.640000px;}
.x55_c00187{left:361.440000px;}
.x16_c00187{left:372.960000px;}
.x4a_c00187{left:382.320000px;}
.x37_c00187{left:383.760000px;}
.x3a_c00187{left:392.400000px;}
.x10_c00187{left:393.840000px;}
.x56_c00187{left:395.280000px;}
.x5_c00187{left:404.640000px;}
.x2a_c00187{left:407.520000px;}
.x24_c00187{left:415.440000px;}
.x11_c00187{left:426.960000px;}
.x2b_c00187{left:436.320000px;}
.x25_c00187{left:447.840000px;}
.x4b_c00187{left:457.920000px;}
.x1b_c00187{left:459.360000px;}
.x58_c00187{left:468.720000px;}
.x57_c00187{left:479.520000px;}
.x17_c00187{left:480.960000px;}
.x47_c00187{left:490.320000px;}
.x6_c00187{left:491.760000px;}
.x4c_c00187{left:501.120000px;}
.x51_c00187{left:510.480000px;}
.x26_c00187{left:511.920000px;}
.x30_c00187{left:514.080000px;}
.x38_c00187{left:522.720000px;}
.x7_c00187{left:524.160000px;}
.x44_c00187{left:534.960000px;}
.x42_c00187{left:544.320000px;}
.x12_c00187{left:546.480000px;}
.x48_c00187{left:554.400000px;}
.x8_c00187{left:555.840000px;}
.x3e_c00187{left:557.280000px;}
.x20_c00187{left:566.640000px;}
.x27_c00187{left:576.720000px;}
.x18_c00187{left:578.160000px;}
.x1c_c00187{left:587.520000px;}
.x2c_c00187{left:588.960000px;}
.x4d_c00187{left:598.320000px;}
.x13_c00187{left:599.760000px;}
.x21_c00187{left:609.840000px;}
.x3f_c00187{left:619.920000px;}
.x52_c00187{left:629.280000px;}
.x31_c00187{left:640.800000px;}
.x9_c00187{left:642.240000px;}
.x3b_c00187{left:650.880000px;}
.x45_c00187{left:661.680000px;}
.x2d_c00187{left:663.840000px;}
.x59_c00187{left:671.760000px;}
.xa_c00187{left:673.920000px;}
.x32_c00187{left:676.080000px;}
.x4f_c00187{left:681.840000px;}
.x43_c00187{left:683.280000px;}
.x22_c00187{left:684.720000px;}
.x1_c00187{left:691.200000px;}
.x53_c00187{left:694.080000px;}
@media print{
.v1_c00187{vertical-align:-2.560000pt;}
.v0_c00187{vertical-align:0.000000pt;}
.ls0_c00187{letter-spacing:0.000000pt;}
.ws0_c00187{word-spacing:-2.826027pt;}
.ws1_c00187{word-spacing:0.000000pt;}
.fs10_c00187{font-size:20.480000pt;}
.fse_c00187{font-size:23.040000pt;}
.fsb_c00187{font-size:30.720000pt;}
.fs9_c00187{font-size:33.280000pt;}
.fsc_c00187{font-size:35.840000pt;}
.fs8_c00187{font-size:38.400000pt;}
.fs1_c00187{font-size:40.960000pt;}
.fsd_c00187{font-size:43.520000pt;}
.fs5_c00187{font-size:46.080000pt;}
.fs6_c00187{font-size:48.640000pt;}
.fs3_c00187{font-size:51.200000pt;}
.fs2_c00187{font-size:53.760000pt;}
.fs7_c00187{font-size:56.320000pt;}
.fs4_c00187{font-size:58.880000pt;}
.fsa_c00187{font-size:61.440000pt;}
.fs11_c00187{font-size:64.000000pt;}
.fs0_c00187{font-size:66.560000pt;}
.fsf_c00187{font-size:69.120000pt;}
.y0_c00187{bottom:0.000000pt;}
.y7a_c00187{bottom:99.200000pt;}
.y78_c00187{bottom:99.840000pt;}
.y7b_c00187{bottom:101.760000pt;}
.y79_c00187{bottom:103.040000pt;}
.y7c_c00187{bottom:103.680000pt;}
.y77_c00187{bottom:104.960000pt;}
.y74_c00187{bottom:137.600000pt;}
.y76_c00187{bottom:138.240000pt;}
.y75_c00187{bottom:140.160000pt;}
.y73_c00187{bottom:140.800000pt;}
.y72_c00187{bottom:141.440000pt;}
.y71_c00187{bottom:142.080000pt;}
.y6f_c00187{bottom:176.000000pt;}
.y70_c00187{bottom:177.280000pt;}
.y6c_c00187{bottom:177.920000pt;}
.y6e_c00187{bottom:178.560000pt;}
.y6d_c00187{bottom:179.200000pt;}
.y6b_c00187{bottom:181.120000pt;}
.y65_c00187{bottom:213.760000pt;}
.y66_c00187{bottom:214.400000pt;}
.y68_c00187{bottom:215.040000pt;}
.y69_c00187{bottom:215.680000pt;}
.y67_c00187{bottom:216.320000pt;}
.y64_c00187{bottom:216.960000pt;}
.y63_c00187{bottom:217.600000pt;}
.y62_c00187{bottom:218.240000pt;}
.y6a_c00187{bottom:218.880000pt;}
.y61_c00187{bottom:220.160000pt;}
.y5e_c00187{bottom:253.440000pt;}
.y60_c00187{bottom:254.080000pt;}
.y5d_c00187{bottom:255.360000pt;}
.y5c_c00187{bottom:256.000000pt;}
.y5f_c00187{bottom:256.640000pt;}
.y5b_c00187{bottom:257.280000pt;}
.y57_c00187{bottom:291.840000pt;}
.y56_c00187{bottom:292.480000pt;}
.y55_c00187{bottom:293.120000pt;}
.y58_c00187{bottom:293.760000pt;}
.y5a_c00187{bottom:294.400000pt;}
.y59_c00187{bottom:295.040000pt;}
.y54_c00187{bottom:295.680000pt;}
.y51_c00187{bottom:330.240000pt;}
.y50_c00187{bottom:331.520000pt;}
.y52_c00187{bottom:332.160000pt;}
.y53_c00187{bottom:332.800000pt;}
.y4f_c00187{bottom:333.440000pt;}
.y4b_c00187{bottom:368.000000pt;}
.y4c_c00187{bottom:368.640000pt;}
.y4a_c00187{bottom:369.280000pt;}
.y4e_c00187{bottom:369.920000pt;}
.y4d_c00187{bottom:370.560000pt;}
.y49_c00187{bottom:371.840000pt;}
.y46_c00187{bottom:406.400000pt;}
.y47_c00187{bottom:407.040000pt;}
.y45_c00187{bottom:408.960000pt;}
.y44_c00187{bottom:409.600000pt;}
.y48_c00187{bottom:411.520000pt;}
.y41_c00187{bottom:444.160000pt;}
.y3f_c00187{bottom:446.080000pt;}
.y43_c00187{bottom:446.720000pt;}
.y42_c00187{bottom:447.360000pt;}
.y40_c00187{bottom:448.000000pt;}
.y3e_c00187{bottom:448.640000pt;}
.y3d_c00187{bottom:483.840000pt;}
.y3c_c00187{bottom:485.120000pt;}
.y3a_c00187{bottom:485.760000pt;}
.y3b_c00187{bottom:486.400000pt;}
.y37_c00187{bottom:531.200000pt;}
.y38_c00187{bottom:531.840000pt;}
.y36_c00187{bottom:533.760000pt;}
.y39_c00187{bottom:534.400000pt;}
.y34_c00187{bottom:569.600000pt;}
.y32_c00187{bottom:570.240000pt;}
.y35_c00187{bottom:571.520000pt;}
.y31_c00187{bottom:572.160000pt;}
.y33_c00187{bottom:572.800000pt;}
.y2e_c00187{bottom:608.000000pt;}
.y2f_c00187{bottom:608.640000pt;}
.y30_c00187{bottom:609.280000pt;}
.y2d_c00187{bottom:609.920000pt;}
.y2c_c00187{bottom:610.560000pt;}
.y2a_c00187{bottom:646.400000pt;}
.y29_c00187{bottom:647.040000pt;}
.y2b_c00187{bottom:647.680000pt;}
.y28_c00187{bottom:648.320000pt;}
.y27_c00187{bottom:648.960000pt;}
.y26_c00187{bottom:694.400000pt;}
.y25_c00187{bottom:695.680000pt;}
.y1f_c00187{bottom:731.520000pt;}
.y20_c00187{bottom:732.800000pt;}
.y22_c00187{bottom:733.440000pt;}
.y24_c00187{bottom:734.080000pt;}
.y23_c00187{bottom:734.720000pt;}
.y21_c00187{bottom:735.360000pt;}
.y19_c00187{bottom:770.560000pt;}
.y1d_c00187{bottom:771.200000pt;}
.y1b_c00187{bottom:771.840000pt;}
.y1c_c00187{bottom:772.480000pt;}
.y1a_c00187{bottom:773.760000pt;}
.y1e_c00187{bottom:774.400000pt;}
.y18_c00187{bottom:808.960000pt;}
.y14_c00187{bottom:809.600000pt;}
.y16_c00187{bottom:810.880000pt;}
.y17_c00187{bottom:811.520000pt;}
.y15_c00187{bottom:812.160000pt;}
.yd_c00187{bottom:847.360000pt;}
.yf_c00187{bottom:848.000000pt;}
.y10_c00187{bottom:848.640000pt;}
.y13_c00187{bottom:849.280000pt;}
.y12_c00187{bottom:849.920000pt;}
.y11_c00187{bottom:850.560000pt;}
.ye_c00187{bottom:851.200000pt;}
.yc_c00187{bottom:885.760000pt;}
.y8_c00187{bottom:886.400000pt;}
.ya_c00187{bottom:887.040000pt;}
.y7_c00187{bottom:887.680000pt;}
.yb_c00187{bottom:888.320000pt;}
.y9_c00187{bottom:889.600000pt;}
.y5_c00187{bottom:924.800000pt;}
.y3_c00187{bottom:925.440000pt;}
.y6_c00187{bottom:926.080000pt;}
.y4_c00187{bottom:927.360000pt;}
.y2_c00187{bottom:928.000000pt;}
.y1_c00187{bottom:975.360000pt;}
.h12_c00187{height:18.430000pt;}
.h10_c00187{height:20.733750pt;}
.hd_c00187{height:27.645000pt;}
.hb_c00187{height:29.948750pt;}
.he_c00187{height:32.252500pt;}
.ha_c00187{height:34.556250pt;}
.h3_c00187{height:36.860000pt;}
.hf_c00187{height:39.163750pt;}
.h7_c00187{height:41.467500pt;}
.h8_c00187{height:43.771250pt;}
.h5_c00187{height:46.075000pt;}
.h4_c00187{height:48.378750pt;}
.h9_c00187{height:50.682500pt;}
.h6_c00187{height:52.986250pt;}
.hc_c00187{height:55.290000pt;}
.h13_c00187{height:57.593750pt;}
.h2_c00187{height:59.897500pt;}
.h11_c00187{height:62.201250pt;}
.h1_c00187{height:1017.333333pt;}
.h0_c00187{height:1017.600000pt;}
.w1_c00187{width:696.666667pt;}
.w0_c00187{width:696.960000pt;}
.x0_c00187{left:0.000000pt;}
.xb_c00187{left:72.960000pt;}
.x40_c00187{left:74.240000pt;}
.x28_c00187{left:101.120000pt;}
.x1d_c00187{left:109.440000pt;}
.xc_c00187{left:111.360000pt;}
.x3c_c00187{left:119.680000pt;}
.x41_c00187{left:129.280000pt;}
.x2e_c00187{left:138.880000pt;}
.x1e_c00187{left:147.840000pt;}
.xd_c00187{left:157.440000pt;}
.x19_c00187{left:167.040000pt;}
.x2_c00187{left:168.960000pt;}
.x23_c00187{left:176.640000pt;}
.x35_c00187{left:184.320000pt;}
.x33_c00187{left:186.240000pt;}
.x3_c00187{left:197.760000pt;}
.x54_c00187{left:205.440000pt;}
.x3d_c00187{left:214.400000pt;}
.x14_c00187{left:216.320000pt;}
.x4e_c00187{left:224.640000pt;}
.x36_c00187{left:234.240000pt;}
.x49_c00187{left:236.160000pt;}
.xe_c00187{left:244.480000pt;}
.x4_c00187{left:254.720000pt;}
.x34_c00187{left:263.680000pt;}
.x50_c00187{left:264.960000pt;}
.x46_c00187{left:272.000000pt;}
.xf_c00187{left:273.280000pt;}
.x39_c00187{left:282.880000pt;}
.x2f_c00187{left:284.160000pt;}
.x1f_c00187{left:293.120000pt;}
.x29_c00187{left:301.440000pt;}
.x1a_c00187{left:302.720000pt;}
.x15_c00187{left:311.680000pt;}
.x55_c00187{left:321.280000pt;}
.x16_c00187{left:331.520000pt;}
.x4a_c00187{left:339.840000pt;}
.x37_c00187{left:341.120000pt;}
.x3a_c00187{left:348.800000pt;}
.x10_c00187{left:350.080000pt;}
.x56_c00187{left:351.360000pt;}
.x5_c00187{left:359.680000pt;}
.x2a_c00187{left:362.240000pt;}
.x24_c00187{left:369.280000pt;}
.x11_c00187{left:379.520000pt;}
.x2b_c00187{left:387.840000pt;}
.x25_c00187{left:398.080000pt;}
.x4b_c00187{left:407.040000pt;}
.x1b_c00187{left:408.320000pt;}
.x58_c00187{left:416.640000pt;}
.x57_c00187{left:426.240000pt;}
.x17_c00187{left:427.520000pt;}
.x47_c00187{left:435.840000pt;}
.x6_c00187{left:437.120000pt;}
.x4c_c00187{left:445.440000pt;}
.x51_c00187{left:453.760000pt;}
.x26_c00187{left:455.040000pt;}
.x30_c00187{left:456.960000pt;}
.x38_c00187{left:464.640000pt;}
.x7_c00187{left:465.920000pt;}
.x44_c00187{left:475.520000pt;}
.x42_c00187{left:483.840000pt;}
.x12_c00187{left:485.760000pt;}
.x48_c00187{left:492.800000pt;}
.x8_c00187{left:494.080000pt;}
.x3e_c00187{left:495.360000pt;}
.x20_c00187{left:503.680000pt;}
.x27_c00187{left:512.640000pt;}
.x18_c00187{left:513.920000pt;}
.x1c_c00187{left:522.240000pt;}
.x2c_c00187{left:523.520000pt;}
.x4d_c00187{left:531.840000pt;}
.x13_c00187{left:533.120000pt;}
.x21_c00187{left:542.080000pt;}
.x3f_c00187{left:551.040000pt;}
.x52_c00187{left:559.360000pt;}
.x31_c00187{left:569.600000pt;}
.x9_c00187{left:570.880000pt;}
.x3b_c00187{left:578.560000pt;}
.x45_c00187{left:588.160000pt;}
.x2d_c00187{left:590.080000pt;}
.x59_c00187{left:597.120000pt;}
.xa_c00187{left:599.040000pt;}
.x32_c00187{left:600.960000pt;}
.x4f_c00187{left:606.080000pt;}
.x43_c00187{left:607.360000pt;}
.x22_c00187{left:608.640000pt;}
.x1_c00187{left:614.400000pt;}
.x53_c00187{left:616.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_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_40a146bfb8116c115395a01e.woff2')format("woff");}.ff1_c00188{font-family:ff1_c00188;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5c_c00188{transform:matrix(0.215200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215200,0.000000,0.000000,0.250000,0,0);}
.m5e_c00188{transform:matrix(0.224900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224900,0.000000,0.000000,0.250000,0,0);}
.m4c_c00188{transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);}
.m56_c00188{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_c00188{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00188{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m27_c00188{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00188{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m29_c00188{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m53_c00188{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00188{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.ma_c00188{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m57_c00188{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m0_c00188{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m11_c00188{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00188{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00188{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00188{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2_c00188{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mc_c00188{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m8_c00188{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00188{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);}
.m49_c00188{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00188{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m14_c00188{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m52_c00188{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);}
.m48_c00188{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m19_c00188{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);}
.m4a_c00188{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.md_c00188{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m9_c00188{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00188{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00188{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);}
.m51_c00188{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m13_c00188{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m1_c00188{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);}
.m34_c00188{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m16_c00188{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);}
.m17_c00188{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m43_c00188{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);}
.m15_c00188{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);}
.m31_c00188{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);}
.m33_c00188{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00188{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00188{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00188{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);}
.m23_c00188{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00188{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);}
.m39_c00188{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00188{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);}
.m21_c00188{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00188{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m47_c00188{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m3_c00188{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m10_c00188{transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);}
.m20_c00188{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m32_c00188{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m38_c00188{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m40_c00188{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);}
.m36_c00188{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m24_c00188{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m30_c00188{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m6_c00188{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);}
.mb_c00188{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m35_c00188{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00188{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);}
.m5b_c00188{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m7_c00188{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m37_c00188{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m59_c00188{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m5_c00188{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00188{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);}
.me_c00188{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m58_c00188{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00188{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00188{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);}
.m42_c00188{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m54_c00188{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m44_c00188{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00188{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m18_c00188{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);}
.m28_c00188{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m25_c00188{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);}
.m4_c00188{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);}
.m2f_c00188{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m12_c00188{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.mf_c00188{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m55_c00188{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m26_c00188{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m41_c00188{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m45_c00188{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);}
.m46_c00188{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00188{transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);}
.m50_c00188{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00188{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.v1_c00188{vertical-align:-2.880000px;}
.v0_c00188{vertical-align:0.000000px;}
.v2_c00188{vertical-align:11.520000px;}
.ls1_c00188{letter-spacing:0.000000px;}
.ls0_c00188{letter-spacing:23.985360px;}
.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:-12.195600px;}
.ws1_c00188{word-spacing:0.000000px;}
.fc0_c00188{color:transparent;}
.fsf_c00188{font-size:23.040000px;}
.fs5_c00188{font-size:34.560000px;}
.fs4_c00188{font-size:37.440000px;}
.fsa_c00188{font-size:40.320000px;}
.fs9_c00188{font-size:43.200000px;}
.fse_c00188{font-size:46.080000px;}
.fsb_c00188{font-size:48.960000px;}
.fs3_c00188{font-size:51.840000px;}
.fs8_c00188{font-size:54.720000px;}
.fs1_c00188{font-size:57.600000px;}
.fs6_c00188{font-size:60.480000px;}
.fs2_c00188{font-size:63.360000px;}
.fs7_c00188{font-size:66.240000px;}
.fsd_c00188{font-size:69.120000px;}
.fsc_c00188{font-size:72.000000px;}
.fs0_c00188{font-size:77.760000px;}
.y0_c00188{bottom:0.000000px;}
.y6e_c00188{bottom:84.240000px;}
.y70_c00188{bottom:85.680000px;}
.y6c_c00188{bottom:87.120000px;}
.y6f_c00188{bottom:87.840000px;}
.y6d_c00188{bottom:88.560000px;}
.y71_c00188{bottom:90.000000px;}
.y6b_c00188{bottom:90.720000px;}
.y6a_c00188{bottom:92.160000px;}
.y68_c00188{bottom:128.880000px;}
.y66_c00188{bottom:129.600000px;}
.y65_c00188{bottom:131.040000px;}
.y67_c00188{bottom:131.760000px;}
.y64_c00188{bottom:132.480000px;}
.y69_c00188{bottom:133.200000px;}
.y63_c00188{bottom:134.640000px;}
.y5e_c00188{bottom:172.800000px;}
.y60_c00188{bottom:174.240000px;}
.y61_c00188{bottom:174.960000px;}
.y5f_c00188{bottom:175.680000px;}
.y62_c00188{bottom:176.400000px;}
.y5d_c00188{bottom:177.840000px;}
.y5b_c00188{bottom:214.560000px;}
.y5a_c00188{bottom:217.440000px;}
.y5c_c00188{bottom:218.160000px;}
.y59_c00188{bottom:218.880000px;}
.y58_c00188{bottom:270.720000px;}
.y54_c00188{bottom:312.480000px;}
.y53_c00188{bottom:313.200000px;}
.y52_c00188{bottom:313.920000px;}
.y57_c00188{bottom:314.640000px;}
.y55_c00188{bottom:315.360000px;}
.y56_c00188{bottom:316.080000px;}
.y4f_c00188{bottom:354.960000px;}
.y50_c00188{bottom:357.120000px;}
.y51_c00188{bottom:357.840000px;}
.y4e_c00188{bottom:358.560000px;}
.y4d_c00188{bottom:360.000000px;}
.y49_c00188{bottom:397.440000px;}
.y48_c00188{bottom:398.160000px;}
.y47_c00188{bottom:398.880000px;}
.y46_c00188{bottom:399.600000px;}
.y4b_c00188{bottom:400.320000px;}
.y4a_c00188{bottom:401.040000px;}
.y4c_c00188{bottom:403.920000px;}
.y44_c00188{bottom:440.640000px;}
.y45_c00188{bottom:442.800000px;}
.y43_c00188{bottom:443.520000px;}
.y42_c00188{bottom:444.240000px;}
.y41_c00188{bottom:444.960000px;}
.y40_c00188{bottom:484.560000px;}
.y3f_c00188{bottom:486.720000px;}
.y3e_c00188{bottom:487.440000px;}
.y3b_c00188{bottom:527.760000px;}
.y3d_c00188{bottom:529.920000px;}
.y3c_c00188{bottom:530.640000px;}
.y3a_c00188{bottom:531.360000px;}
.y39_c00188{bottom:570.960000px;}
.y37_c00188{bottom:573.120000px;}
.y38_c00188{bottom:573.840000px;}
.y35_c00188{bottom:614.160000px;}
.y32_c00188{bottom:614.880000px;}
.y34_c00188{bottom:616.320000px;}
.y36_c00188{bottom:617.040000px;}
.y33_c00188{bottom:617.760000px;}
.y30_c00188{bottom:659.520000px;}
.y31_c00188{bottom:660.240000px;}
.y2e_c00188{bottom:700.560000px;}
.y2f_c00188{bottom:702.000000px;}
.y2c_c00188{bottom:703.440000px;}
.y2d_c00188{bottom:704.160000px;}
.y26_c00188{bottom:743.040000px;}
.y27_c00188{bottom:743.760000px;}
.y2b_c00188{bottom:744.480000px;}
.y28_c00188{bottom:745.920000px;}
.y2a_c00188{bottom:746.640000px;}
.y29_c00188{bottom:747.360000px;}
.y25_c00188{bottom:786.240000px;}
.y24_c00188{bottom:787.680000px;}
.y21_c00188{bottom:789.120000px;}
.y23_c00188{bottom:789.840000px;}
.y22_c00188{bottom:790.560000px;}
.y20_c00188{bottom:828.720000px;}
.y1d_c00188{bottom:830.880000px;}
.y1e_c00188{bottom:832.320000px;}
.y1f_c00188{bottom:833.040000px;}
.y18_c00188{bottom:871.920000px;}
.y1b_c00188{bottom:872.640000px;}
.y1c_c00188{bottom:874.080000px;}
.y19_c00188{bottom:874.800000px;}
.y1a_c00188{bottom:875.520000px;}
.y17_c00188{bottom:915.120000px;}
.y16_c00188{bottom:915.840000px;}
.y14_c00188{bottom:916.560000px;}
.y12_c00188{bottom:917.280000px;}
.y13_c00188{bottom:918.000000px;}
.y15_c00188{bottom:918.720000px;}
.yf_c00188{bottom:959.040000px;}
.yd_c00188{bottom:959.760000px;}
.ye_c00188{bottom:960.480000px;}
.y11_c00188{bottom:961.200000px;}
.y10_c00188{bottom:962.640000px;}
.y7_c00188{bottom:1000.080000px;}
.y8_c00188{bottom:1000.800000px;}
.ya_c00188{bottom:1002.240000px;}
.yb_c00188{bottom:1002.960000px;}
.yc_c00188{bottom:1003.680000px;}
.y9_c00188{bottom:1004.400000px;}
.y2_c00188{bottom:1044.000000px;}
.y3_c00188{bottom:1045.440000px;}
.y5_c00188{bottom:1046.880000px;}
.y6_c00188{bottom:1047.600000px;}
.y4_c00188{bottom:1048.320000px;}
.y1_c00188{bottom:1100.160000px;}
.h12_c00188{height:20.733750px;}
.h7_c00188{height:31.100625px;}
.h6_c00188{height:33.692344px;}
.hb_c00188{height:35.995781px;}
.hc_c00188{height:36.284062px;}
.h13_c00188{height:38.875781px;}
.h10_c00188{height:41.467500px;}
.hd_c00188{height:44.059219px;}
.h5_c00188{height:46.650937px;}
.ha_c00188{height:49.242656px;}
.h3_c00188{height:51.834375px;}
.h8_c00188{height:54.426094px;}
.h4_c00188{height:57.017812px;}
.h9_c00188{height:59.609531px;}
.hf_c00188{height:62.201250px;}
.h11_c00188{height:63.354375px;}
.he_c00188{height:64.792969px;}
.h2_c00188{height:69.976406px;}
.h1_c00188{height:1151.250000px;}
.h0_c00188{height:1151.280000px;}
.w0_c00188{width:792.720000px;}
.w1_c00188{width:792.750000px;}
.x0_c00188{left:0.000000px;}
.x2_c00188{left:89.280000px;}
.x3a_c00188{left:90.720000px;}
.x51_c00188{left:99.360000px;}
.x2d_c00188{left:110.160000px;}
.x5c_c00188{left:118.800000px;}
.xf_c00188{left:120.960000px;}
.x21_c00188{left:130.320000px;}
.xa_c00188{left:131.760000px;}
.x1c_c00188{left:141.840000px;}
.x17_c00188{left:151.920000px;}
.x10_c00188{left:162.720000px;}
.x2e_c00188{left:172.800000px;}
.x3_c00188{left:176.400000px;}
.x26_c00188{left:183.600000px;}
.x1d_c00188{left:185.760000px;}
.x41_c00188{left:194.400000px;}
.xb_c00188{left:196.560000px;}
.x34_c00188{left:205.920000px;}
.x27_c00188{left:207.360000px;}
.x22_c00188{left:216.000000px;}
.x43_c00188{left:226.800000px;}
.x2f_c00188{left:228.240000px;}
.x42_c00188{left:239.040000px;}
.x5e_c00188{left:248.400000px;}
.x11_c00188{left:249.840000px;}
.x30_c00188{left:259.920000px;}
.x18_c00188{left:271.440000px;}
.x35_c00188{left:281.520000px;}
.x4c_c00188{left:291.600000px;}
.x12_c00188{left:293.040000px;}
.x19_c00188{left:303.840000px;}
.x5d_c00188{left:313.200000px;}
.x31_c00188{left:314.640000px;}
.x3b_c00188{left:324.720000px;}
.x1e_c00188{left:326.880000px;}
.x58_c00188{left:334.080000px;}
.x4d_c00188{left:335.520000px;}
.x4_c00188{left:338.400000px;}
.x32_c00188{left:347.040000px;}
.x44_c00188{left:357.120000px;}
.xc_c00188{left:358.560000px;}
.x4e_c00188{left:367.920000px;}
.x28_c00188{left:378.720000px;}
.x13_c00188{left:390.960000px;}
.x59_c00188{left:400.320000px;}
.x3c_c00188{left:401.760000px;}
.x55_c00188{left:410.400000px;}
.x23_c00188{left:411.840000px;}
.x29_c00188{left:413.280000px;}
.x45_c00188{left:421.200000px;}
.x48_c00188{left:423.360000px;}
.x5f_c00188{left:432.000000px;}
.x37_c00188{left:443.520000px;}
.x5_c00188{left:445.680000px;}
.x2a_c00188{left:455.040000px;}
.xd_c00188{left:456.480000px;}
.x46_c00188{left:465.120000px;}
.x14_c00188{left:466.560000px;}
.x60_c00188{left:475.200000px;}
.x36_c00188{left:477.360000px;}
.x1f_c00188{left:486.720000px;}
.x6_c00188{left:488.160000px;}
.x38_c00188{left:508.320000px;}
.x15_c00188{left:509.760000px;}
.x1a_c00188{left:511.920000px;}
.x3d_c00188{left:519.120000px;}
.x24_c00188{left:522.000000px;}
.x49_c00188{left:529.200000px;}
.x5a_c00188{left:540.000000px;}
.x47_c00188{left:542.160000px;}
.x7_c00188{left:543.600000px;}
.x52_c00188{left:550.080000px;}
.x3e_c00188{left:551.520000px;}
.x20_c00188{left:552.960000px;}
.x4a_c00188{left:561.600000px;}
.x8_c00188{left:563.760000px;}
.x2b_c00188{left:565.200000px;}
.x5b_c00188{left:572.400000px;}
.x53_c00188{left:583.200000px;}
.x3f_c00188{left:594.000000px;}
.x9_c00188{left:596.160000px;}
.x39_c00188{left:604.800000px;}
.x61_c00188{left:613.440000px;}
.x16_c00188{left:617.760000px;}
.x4f_c00188{left:626.400000px;}
.x4b_c00188{left:628.560000px;}
.x56_c00188{left:635.760000px;}
.x2c_c00188{left:639.360000px;}
.x33_c00188{left:648.720000px;}
.xe_c00188{left:659.520000px;}
.x57_c00188{left:668.160000px;}
.x25_c00188{left:670.320000px;}
.x40_c00188{left:680.400000px;}
.x54_c00188{left:690.480000px;}
.x1b_c00188{left:691.920000px;}
.x1_c00188{left:702.720000px;}
.x50_c00188{left:711.360000px;}
@media print{
.v1_c00188{vertical-align:-2.560000pt;}
.v0_c00188{vertical-align:0.000000pt;}
.v2_c00188{vertical-align:10.240000pt;}
.ls1_c00188{letter-spacing:0.000000pt;}
.ls0_c00188{letter-spacing:21.320320pt;}
.ws0_c00188{word-spacing:-10.840533pt;}
.ws1_c00188{word-spacing:0.000000pt;}
.fsf_c00188{font-size:20.480000pt;}
.fs5_c00188{font-size:30.720000pt;}
.fs4_c00188{font-size:33.280000pt;}
.fsa_c00188{font-size:35.840000pt;}
.fs9_c00188{font-size:38.400000pt;}
.fse_c00188{font-size:40.960000pt;}
.fsb_c00188{font-size:43.520000pt;}
.fs3_c00188{font-size:46.080000pt;}
.fs8_c00188{font-size:48.640000pt;}
.fs1_c00188{font-size:51.200000pt;}
.fs6_c00188{font-size:53.760000pt;}
.fs2_c00188{font-size:56.320000pt;}
.fs7_c00188{font-size:58.880000pt;}
.fsd_c00188{font-size:61.440000pt;}
.fsc_c00188{font-size:64.000000pt;}
.fs0_c00188{font-size:69.120000pt;}
.y0_c00188{bottom:0.000000pt;}
.y6e_c00188{bottom:74.880000pt;}
.y70_c00188{bottom:76.160000pt;}
.y6c_c00188{bottom:77.440000pt;}
.y6f_c00188{bottom:78.080000pt;}
.y6d_c00188{bottom:78.720000pt;}
.y71_c00188{bottom:80.000000pt;}
.y6b_c00188{bottom:80.640000pt;}
.y6a_c00188{bottom:81.920000pt;}
.y68_c00188{bottom:114.560000pt;}
.y66_c00188{bottom:115.200000pt;}
.y65_c00188{bottom:116.480000pt;}
.y67_c00188{bottom:117.120000pt;}
.y64_c00188{bottom:117.760000pt;}
.y69_c00188{bottom:118.400000pt;}
.y63_c00188{bottom:119.680000pt;}
.y5e_c00188{bottom:153.600000pt;}
.y60_c00188{bottom:154.880000pt;}
.y61_c00188{bottom:155.520000pt;}
.y5f_c00188{bottom:156.160000pt;}
.y62_c00188{bottom:156.800000pt;}
.y5d_c00188{bottom:158.080000pt;}
.y5b_c00188{bottom:190.720000pt;}
.y5a_c00188{bottom:193.280000pt;}
.y5c_c00188{bottom:193.920000pt;}
.y59_c00188{bottom:194.560000pt;}
.y58_c00188{bottom:240.640000pt;}
.y54_c00188{bottom:277.760000pt;}
.y53_c00188{bottom:278.400000pt;}
.y52_c00188{bottom:279.040000pt;}
.y57_c00188{bottom:279.680000pt;}
.y55_c00188{bottom:280.320000pt;}
.y56_c00188{bottom:280.960000pt;}
.y4f_c00188{bottom:315.520000pt;}
.y50_c00188{bottom:317.440000pt;}
.y51_c00188{bottom:318.080000pt;}
.y4e_c00188{bottom:318.720000pt;}
.y4d_c00188{bottom:320.000000pt;}
.y49_c00188{bottom:353.280000pt;}
.y48_c00188{bottom:353.920000pt;}
.y47_c00188{bottom:354.560000pt;}
.y46_c00188{bottom:355.200000pt;}
.y4b_c00188{bottom:355.840000pt;}
.y4a_c00188{bottom:356.480000pt;}
.y4c_c00188{bottom:359.040000pt;}
.y44_c00188{bottom:391.680000pt;}
.y45_c00188{bottom:393.600000pt;}
.y43_c00188{bottom:394.240000pt;}
.y42_c00188{bottom:394.880000pt;}
.y41_c00188{bottom:395.520000pt;}
.y40_c00188{bottom:430.720000pt;}
.y3f_c00188{bottom:432.640000pt;}
.y3e_c00188{bottom:433.280000pt;}
.y3b_c00188{bottom:469.120000pt;}
.y3d_c00188{bottom:471.040000pt;}
.y3c_c00188{bottom:471.680000pt;}
.y3a_c00188{bottom:472.320000pt;}
.y39_c00188{bottom:507.520000pt;}
.y37_c00188{bottom:509.440000pt;}
.y38_c00188{bottom:510.080000pt;}
.y35_c00188{bottom:545.920000pt;}
.y32_c00188{bottom:546.560000pt;}
.y34_c00188{bottom:547.840000pt;}
.y36_c00188{bottom:548.480000pt;}
.y33_c00188{bottom:549.120000pt;}
.y30_c00188{bottom:586.240000pt;}
.y31_c00188{bottom:586.880000pt;}
.y2e_c00188{bottom:622.720000pt;}
.y2f_c00188{bottom:624.000000pt;}
.y2c_c00188{bottom:625.280000pt;}
.y2d_c00188{bottom:625.920000pt;}
.y26_c00188{bottom:660.480000pt;}
.y27_c00188{bottom:661.120000pt;}
.y2b_c00188{bottom:661.760000pt;}
.y28_c00188{bottom:663.040000pt;}
.y2a_c00188{bottom:663.680000pt;}
.y29_c00188{bottom:664.320000pt;}
.y25_c00188{bottom:698.880000pt;}
.y24_c00188{bottom:700.160000pt;}
.y21_c00188{bottom:701.440000pt;}
.y23_c00188{bottom:702.080000pt;}
.y22_c00188{bottom:702.720000pt;}
.y20_c00188{bottom:736.640000pt;}
.y1d_c00188{bottom:738.560000pt;}
.y1e_c00188{bottom:739.840000pt;}
.y1f_c00188{bottom:740.480000pt;}
.y18_c00188{bottom:775.040000pt;}
.y1b_c00188{bottom:775.680000pt;}
.y1c_c00188{bottom:776.960000pt;}
.y19_c00188{bottom:777.600000pt;}
.y1a_c00188{bottom:778.240000pt;}
.y17_c00188{bottom:813.440000pt;}
.y16_c00188{bottom:814.080000pt;}
.y14_c00188{bottom:814.720000pt;}
.y12_c00188{bottom:815.360000pt;}
.y13_c00188{bottom:816.000000pt;}
.y15_c00188{bottom:816.640000pt;}
.yf_c00188{bottom:852.480000pt;}
.yd_c00188{bottom:853.120000pt;}
.ye_c00188{bottom:853.760000pt;}
.y11_c00188{bottom:854.400000pt;}
.y10_c00188{bottom:855.680000pt;}
.y7_c00188{bottom:888.960000pt;}
.y8_c00188{bottom:889.600000pt;}
.ya_c00188{bottom:890.880000pt;}
.yb_c00188{bottom:891.520000pt;}
.yc_c00188{bottom:892.160000pt;}
.y9_c00188{bottom:892.800000pt;}
.y2_c00188{bottom:928.000000pt;}
.y3_c00188{bottom:929.280000pt;}
.y5_c00188{bottom:930.560000pt;}
.y6_c00188{bottom:931.200000pt;}
.y4_c00188{bottom:931.840000pt;}
.y1_c00188{bottom:977.920000pt;}
.h12_c00188{height:18.430000pt;}
.h7_c00188{height:27.645000pt;}
.h6_c00188{height:29.948750pt;}
.hb_c00188{height:31.996250pt;}
.hc_c00188{height:32.252500pt;}
.h13_c00188{height:34.556250pt;}
.h10_c00188{height:36.860000pt;}
.hd_c00188{height:39.163750pt;}
.h5_c00188{height:41.467500pt;}
.ha_c00188{height:43.771250pt;}
.h3_c00188{height:46.075000pt;}
.h8_c00188{height:48.378750pt;}
.h4_c00188{height:50.682500pt;}
.h9_c00188{height:52.986250pt;}
.hf_c00188{height:55.290000pt;}
.h11_c00188{height:56.315000pt;}
.he_c00188{height:57.593750pt;}
.h2_c00188{height:62.201250pt;}
.h1_c00188{height:1023.333333pt;}
.h0_c00188{height:1023.360000pt;}
.w0_c00188{width:704.640000pt;}
.w1_c00188{width:704.666667pt;}
.x0_c00188{left:0.000000pt;}
.x2_c00188{left:79.360000pt;}
.x3a_c00188{left:80.640000pt;}
.x51_c00188{left:88.320000pt;}
.x2d_c00188{left:97.920000pt;}
.x5c_c00188{left:105.600000pt;}
.xf_c00188{left:107.520000pt;}
.x21_c00188{left:115.840000pt;}
.xa_c00188{left:117.120000pt;}
.x1c_c00188{left:126.080000pt;}
.x17_c00188{left:135.040000pt;}
.x10_c00188{left:144.640000pt;}
.x2e_c00188{left:153.600000pt;}
.x3_c00188{left:156.800000pt;}
.x26_c00188{left:163.200000pt;}
.x1d_c00188{left:165.120000pt;}
.x41_c00188{left:172.800000pt;}
.xb_c00188{left:174.720000pt;}
.x34_c00188{left:183.040000pt;}
.x27_c00188{left:184.320000pt;}
.x22_c00188{left:192.000000pt;}
.x43_c00188{left:201.600000pt;}
.x2f_c00188{left:202.880000pt;}
.x42_c00188{left:212.480000pt;}
.x5e_c00188{left:220.800000pt;}
.x11_c00188{left:222.080000pt;}
.x30_c00188{left:231.040000pt;}
.x18_c00188{left:241.280000pt;}
.x35_c00188{left:250.240000pt;}
.x4c_c00188{left:259.200000pt;}
.x12_c00188{left:260.480000pt;}
.x19_c00188{left:270.080000pt;}
.x5d_c00188{left:278.400000pt;}
.x31_c00188{left:279.680000pt;}
.x3b_c00188{left:288.640000pt;}
.x1e_c00188{left:290.560000pt;}
.x58_c00188{left:296.960000pt;}
.x4d_c00188{left:298.240000pt;}
.x4_c00188{left:300.800000pt;}
.x32_c00188{left:308.480000pt;}
.x44_c00188{left:317.440000pt;}
.xc_c00188{left:318.720000pt;}
.x4e_c00188{left:327.040000pt;}
.x28_c00188{left:336.640000pt;}
.x13_c00188{left:347.520000pt;}
.x59_c00188{left:355.840000pt;}
.x3c_c00188{left:357.120000pt;}
.x55_c00188{left:364.800000pt;}
.x23_c00188{left:366.080000pt;}
.x29_c00188{left:367.360000pt;}
.x45_c00188{left:374.400000pt;}
.x48_c00188{left:376.320000pt;}
.x5f_c00188{left:384.000000pt;}
.x37_c00188{left:394.240000pt;}
.x5_c00188{left:396.160000pt;}
.x2a_c00188{left:404.480000pt;}
.xd_c00188{left:405.760000pt;}
.x46_c00188{left:413.440000pt;}
.x14_c00188{left:414.720000pt;}
.x60_c00188{left:422.400000pt;}
.x36_c00188{left:424.320000pt;}
.x1f_c00188{left:432.640000pt;}
.x6_c00188{left:433.920000pt;}
.x38_c00188{left:451.840000pt;}
.x15_c00188{left:453.120000pt;}
.x1a_c00188{left:455.040000pt;}
.x3d_c00188{left:461.440000pt;}
.x24_c00188{left:464.000000pt;}
.x49_c00188{left:470.400000pt;}
.x5a_c00188{left:480.000000pt;}
.x47_c00188{left:481.920000pt;}
.x7_c00188{left:483.200000pt;}
.x52_c00188{left:488.960000pt;}
.x3e_c00188{left:490.240000pt;}
.x20_c00188{left:491.520000pt;}
.x4a_c00188{left:499.200000pt;}
.x8_c00188{left:501.120000pt;}
.x2b_c00188{left:502.400000pt;}
.x5b_c00188{left:508.800000pt;}
.x53_c00188{left:518.400000pt;}
.x3f_c00188{left:528.000000pt;}
.x9_c00188{left:529.920000pt;}
.x39_c00188{left:537.600000pt;}
.x61_c00188{left:545.280000pt;}
.x16_c00188{left:549.120000pt;}
.x4f_c00188{left:556.800000pt;}
.x4b_c00188{left:558.720000pt;}
.x56_c00188{left:565.120000pt;}
.x2c_c00188{left:568.320000pt;}
.x33_c00188{left:576.640000pt;}
.xe_c00188{left:586.240000pt;}
.x57_c00188{left:593.920000pt;}
.x25_c00188{left:595.840000pt;}
.x40_c00188{left:604.800000pt;}
.x54_c00188{left:613.760000pt;}
.x1b_c00188{left:615.040000pt;}
.x1_c00188{left:624.640000pt;}
.x50_c00188{left:632.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_be4a0e7e848347b6f4aa5ea1.woff2')format("woff");}.ff1_c00189{font-family:ff1_c00189;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m61_c00189{transform:matrix(0.192025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192025,0.000000,0.000000,0.250000,0,0);}
.m52_c00189{transform:matrix(0.240150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240150,0.000000,0.000000,0.250000,0,0);}
.m55_c00189{transform:matrix(0.244925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244925,0.000000,0.000000,0.250000,0,0);}
.m5e_c00189{transform:matrix(0.246375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246375,0.000000,0.000000,0.250000,0,0);}
.m64_c00189{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m58_c00189{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);}
.m4f_c00189{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_c00189{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m59_c00189{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m12_c00189{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.mc_c00189{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);}
.m53_c00189{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00189{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m9_c00189{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m10_c00189{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);}
.m26_c00189{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m13_c00189{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00189{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m35_c00189{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00189{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m15_c00189{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00189{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m31_c00189{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00189{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m36_c00189{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m43_c00189{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00189{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m4_c00189{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00189{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.me_c00189{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1_c00189{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);}
.m27_c00189{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);}
.m29_c00189{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m22_c00189{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);}
.m39_c00189{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m41_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);}
.m1d_c00189{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00189{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);}
.m32_c00189{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m20_c00189{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);}
.m2_c00189{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);}
.m46_c00189{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m5_c00189{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m42_c00189{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);}
.m14_c00189{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.mf_c00189{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);}
.m4a_c00189{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m54_c00189{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);}
.m23_c00189{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m60_c00189{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);}
.m24_c00189{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);}
.m2c_c00189{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m11_c00189{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00189{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m17_c00189{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00189{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.mb_c00189{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);}
.m51_c00189{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00189{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);}
.m45_c00189{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);}
.m2a_c00189{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00189{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m44_c00189{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m40_c00189{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);}
.m3d_c00189{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m25_c00189{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00189{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);}
.m38_c00189{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m48_c00189{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);}
.m63_c00189{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m34_c00189{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m21_c00189{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m30_c00189{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);}
.m62_c00189{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m19_c00189{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m28_c00189{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);}
.m56_c00189{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m37_c00189{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m33_c00189{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.ma_c00189{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m57_c00189{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00189{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00189{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m7_c00189{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00189{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m50_c00189{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m8_c00189{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00189{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);}
.m3a_c00189{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00189{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m6_c00189{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);}
.m3b_c00189{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);}
.md_c00189{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m47_c00189{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00189{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m49_c00189{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m16_c00189{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m3_c00189{transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00189{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m65_c00189{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00189{transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);}
.m18_c00189{transform:matrix(1.077500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.077500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.077500,0.000000,0.000000,0.250000,0,0);}
.v0_c00189{vertical-align:0.000000px;}
.ls0_c00189{letter-spacing:0.000000px;}
.sc__c00189{text-shadow:none;}
.sc0_c00189{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00189{-webkit-text-stroke:0px transparent;}
.sc0_c00189{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00189{word-spacing:0.000000px;}
.fc0_c00189{color:transparent;}
.fsc_c00189{font-size:20.160000px;}
.fsd_c00189{font-size:23.040000px;}
.fs10_c00189{font-size:34.560000px;}
.fsb_c00189{font-size:37.440000px;}
.fs5_c00189{font-size:40.320000px;}
.fs3_c00189{font-size:43.200000px;}
.fse_c00189{font-size:46.080000px;}
.fsf_c00189{font-size:48.960000px;}
.fs2_c00189{font-size:51.840000px;}
.fs6_c00189{font-size:54.720000px;}
.fs7_c00189{font-size:57.600000px;}
.fs4_c00189{font-size:60.480000px;}
.fs1_c00189{font-size:63.360000px;}
.fs8_c00189{font-size:66.240000px;}
.fs9_c00189{font-size:69.120000px;}
.fsa_c00189{font-size:72.000000px;}
.fs11_c00189{font-size:74.880000px;}
.fs0_c00189{font-size:77.760000px;}
.y0_c00189{bottom:0.000000px;}
.y6d_c00189{bottom:87.120000px;}
.y6e_c00189{bottom:87.840000px;}
.y6f_c00189{bottom:89.280000px;}
.y6c_c00189{bottom:90.000000px;}
.y6b_c00189{bottom:90.720000px;}
.y6a_c00189{bottom:91.440000px;}
.y69_c00189{bottom:92.160000px;}
.y70_c00189{bottom:92.880000px;}
.y65_c00189{bottom:129.600000px;}
.y67_c00189{bottom:132.480000px;}
.y66_c00189{bottom:133.200000px;}
.y64_c00189{bottom:133.920000px;}
.y68_c00189{bottom:134.640000px;}
.y63_c00189{bottom:136.080000px;}
.y60_c00189{bottom:174.960000px;}
.y5d_c00189{bottom:175.680000px;}
.y5e_c00189{bottom:176.400000px;}
.y5f_c00189{bottom:177.120000px;}
.y5c_c00189{bottom:177.840000px;}
.y61_c00189{bottom:178.560000px;}
.y62_c00189{bottom:179.280000px;}
.y58_c00189{bottom:228.240000px;}
.y5b_c00189{bottom:229.680000px;}
.y59_c00189{bottom:230.400000px;}
.y57_c00189{bottom:231.120000px;}
.y5a_c00189{bottom:231.840000px;}
.y56_c00189{bottom:232.560000px;}
.y53_c00189{bottom:272.160000px;}
.y52_c00189{bottom:272.880000px;}
.y51_c00189{bottom:273.600000px;}
.y54_c00189{bottom:274.320000px;}
.y55_c00189{bottom:276.480000px;}
.y50_c00189{bottom:316.080000px;}
.y4e_c00189{bottom:316.800000px;}
.y4d_c00189{bottom:318.240000px;}
.y4f_c00189{bottom:318.960000px;}
.y4c_c00189{bottom:319.680000px;}
.y49_c00189{bottom:358.560000px;}
.y45_c00189{bottom:359.280000px;}
.y4b_c00189{bottom:360.000000px;}
.y48_c00189{bottom:360.720000px;}
.y47_c00189{bottom:361.440000px;}
.y46_c00189{bottom:362.160000px;}
.y4a_c00189{bottom:362.880000px;}
.y43_c00189{bottom:403.200000px;}
.y42_c00189{bottom:404.640000px;}
.y44_c00189{bottom:405.360000px;}
.y3f_c00189{bottom:444.960000px;}
.y3c_c00189{bottom:445.680000px;}
.y41_c00189{bottom:446.400000px;}
.y3e_c00189{bottom:447.120000px;}
.y3d_c00189{bottom:448.560000px;}
.y40_c00189{bottom:449.280000px;}
.y38_c00189{bottom:488.160000px;}
.y3a_c00189{bottom:490.320000px;}
.y37_c00189{bottom:491.040000px;}
.y39_c00189{bottom:491.760000px;}
.y3b_c00189{bottom:492.480000px;}
.y35_c00189{bottom:540.720000px;}
.y34_c00189{bottom:542.160000px;}
.y36_c00189{bottom:543.600000px;}
.y33_c00189{bottom:544.320000px;}
.y30_c00189{bottom:584.640000px;}
.y32_c00189{bottom:585.360000px;}
.y2f_c00189{bottom:586.080000px;}
.y2e_c00189{bottom:587.520000px;}
.y31_c00189{bottom:588.240000px;}
.y2b_c00189{bottom:627.120000px;}
.y2c_c00189{bottom:628.560000px;}
.y29_c00189{bottom:629.280000px;}
.y2a_c00189{bottom:630.720000px;}
.y2d_c00189{bottom:631.440000px;}
.y26_c00189{bottom:670.320000px;}
.y24_c00189{bottom:671.040000px;}
.y27_c00189{bottom:671.760000px;}
.y25_c00189{bottom:673.200000px;}
.y28_c00189{bottom:673.920000px;}
.y23_c00189{bottom:714.240000px;}
.y22_c00189{bottom:716.400000px;}
.y21_c00189{bottom:717.120000px;}
.y20_c00189{bottom:767.520000px;}
.y1f_c00189{bottom:812.160000px;}
.y1d_c00189{bottom:813.600000px;}
.y1e_c00189{bottom:814.320000px;}
.y1c_c00189{bottom:854.640000px;}
.y1b_c00189{bottom:855.360000px;}
.y1a_c00189{bottom:856.800000px;}
.y19_c00189{bottom:857.520000px;}
.y18_c00189{bottom:858.240000px;}
.y17_c00189{bottom:909.360000px;}
.y15_c00189{bottom:910.080000px;}
.y13_c00189{bottom:910.800000px;}
.y14_c00189{bottom:911.520000px;}
.y16_c00189{bottom:914.400000px;}
.yd_c00189{bottom:951.120000px;}
.y10_c00189{bottom:951.840000px;}
.yf_c00189{bottom:952.560000px;}
.y12_c00189{bottom:954.000000px;}
.ye_c00189{bottom:954.720000px;}
.y11_c00189{bottom:955.440000px;}
.y9_c00189{bottom:995.760000px;}
.y8_c00189{bottom:996.480000px;}
.yc_c00189{bottom:997.200000px;}
.yb_c00189{bottom:997.920000px;}
.ya_c00189{bottom:998.640000px;}
.y2_c00189{bottom:1036.800000px;}
.y5_c00189{bottom:1038.960000px;}
.y4_c00189{bottom:1039.680000px;}
.y7_c00189{bottom:1040.400000px;}
.y3_c00189{bottom:1041.120000px;}
.y6_c00189{bottom:1041.840000px;}
.y1_c00189{bottom:1097.280000px;}
.he_c00189{height:18.142031px;}
.hf_c00189{height:20.733750px;}
.h12_c00189{height:31.100625px;}
.hd_c00189{height:33.692344px;}
.h7_c00189{height:36.284062px;}
.h5_c00189{height:38.875781px;}
.h10_c00189{height:41.467500px;}
.h11_c00189{height:44.059219px;}
.h4_c00189{height:46.650937px;}
.h8_c00189{height:49.242656px;}
.h9_c00189{height:51.834375px;}
.h6_c00189{height:54.426094px;}
.h3_c00189{height:57.017812px;}
.ha_c00189{height:59.609531px;}
.hb_c00189{height:62.201250px;}
.hc_c00189{height:64.792969px;}
.h13_c00189{height:67.384687px;}
.h2_c00189{height:69.976406px;}
.h0_c00189{height:1142.640000px;}
.h1_c00189{height:1143.000000px;}
.w0_c00189{width:780.480000px;}
.w1_c00189{width:780.750000px;}
.x0_c00189{left:0.000000px;}
.x2_c00189{left:77.040000px;}
.xd_c00189{left:78.480000px;}
.x45_c00189{left:79.920000px;}
.x1b_c00189{left:109.440000px;}
.x2a_c00189{left:119.520000px;}
.x47_c00189{left:120.960000px;}
.x3c_c00189{left:129.600000px;}
.x36_c00189{left:131.040000px;}
.x1c_c00189{left:140.400000px;}
.x50_c00189{left:141.840000px;}
.x54_c00189{left:143.280000px;}
.x3_c00189{left:151.920000px;}
.x4c_c00189{left:153.360000px;}
.x34_c00189{left:162.000000px;}
.x37_c00189{left:163.440000px;}
.x14_c00189{left:172.800000px;}
.x43_c00189{left:174.240000px;}
.x4_c00189{left:183.600000px;}
.xe_c00189{left:185.760000px;}
.x2b_c00189{left:194.400000px;}
.x3d_c00189{left:195.840000px;}
.x1d_c00189{left:206.640000px;}
.x24_c00189{left:216.000000px;}
.x48_c00189{left:226.800000px;}
.x3e_c00189{left:228.240000px;}
.x5_c00189{left:238.320000px;}
.x15_c00189{left:240.480000px;}
.x1e_c00189{left:249.840000px;}
.x1f_c00189{left:260.640000px;}
.x2c_c00189{left:271.440000px;}
.x4b_c00189{left:280.800000px;}
.x25_c00189{left:282.960000px;}
.x38_c00189{left:292.320000px;}
.xf_c00189{left:293.760000px;}
.x6_c00189{left:303.840000px;}
.x20_c00189{left:306.000000px;}
.x3f_c00189{left:314.640000px;}
.x2d_c00189{left:325.440000px;}
.x16_c00189{left:337.680000px;}
.x7_c00189{left:347.760000px;}
.x10_c00189{left:357.840000px;}
.x21_c00189{left:369.360000px;}
.x4e_c00189{left:380.160000px;}
.x11_c00189{left:390.960000px;}
.x39_c00189{left:401.760000px;}
.x8_c00189{left:411.840000px;}
.x22_c00189{left:421.200000px;}
.x31_c00189{left:423.360000px;}
.x2e_c00189{left:434.160000px;}
.x51_c00189{left:435.600000px;}
.x4f_c00189{left:442.800000px;}
.x9_c00189{left:444.240000px;}
.x17_c00189{left:455.760000px;}
.x44_c00189{left:465.840000px;}
.x23_c00189{left:468.720000px;}
.x3a_c00189{left:475.920000px;}
.x52_c00189{left:478.080000px;}
.x26_c00189{left:486.720000px;}
.x49_c00189{left:488.160000px;}
.xa_c00189{left:497.520000px;}
.x35_c00189{left:508.320000px;}
.x2f_c00189{left:518.400000px;}
.x46_c00189{left:519.840000px;}
.x4d_c00189{left:529.920000px;}
.xb_c00189{left:541.440000px;}
.x3b_c00189{left:551.520000px;}
.x40_c00189{left:563.040000px;}
.x27_c00189{left:573.120000px;}
.x18_c00189{left:574.560000px;}
.x32_c00189{left:583.200000px;}
.x12_c00189{left:585.360000px;}
.x41_c00189{left:594.720000px;}
.x30_c00189{left:604.800000px;}
.x19_c00189{left:606.240000px;}
.x28_c00189{left:617.040000px;}
.x42_c00189{left:627.120000px;}
.x33_c00189{left:628.560000px;}
.x1a_c00189{left:637.200000px;}
.x29_c00189{left:648.720000px;}
.x53_c00189{left:657.360000px;}
.x4a_c00189{left:658.800000px;}
.xc_c00189{left:669.600000px;}
.x13_c00189{left:680.400000px;}
.x1_c00189{left:695.520000px;}
@media print{
.v0_c00189{vertical-align:0.000000pt;}
.ls0_c00189{letter-spacing:0.000000pt;}
.ws0_c00189{word-spacing:0.000000pt;}
.fsc_c00189{font-size:17.920000pt;}
.fsd_c00189{font-size:20.480000pt;}
.fs10_c00189{font-size:30.720000pt;}
.fsb_c00189{font-size:33.280000pt;}
.fs5_c00189{font-size:35.840000pt;}
.fs3_c00189{font-size:38.400000pt;}
.fse_c00189{font-size:40.960000pt;}
.fsf_c00189{font-size:43.520000pt;}
.fs2_c00189{font-size:46.080000pt;}
.fs6_c00189{font-size:48.640000pt;}
.fs7_c00189{font-size:51.200000pt;}
.fs4_c00189{font-size:53.760000pt;}
.fs1_c00189{font-size:56.320000pt;}
.fs8_c00189{font-size:58.880000pt;}
.fs9_c00189{font-size:61.440000pt;}
.fsa_c00189{font-size:64.000000pt;}
.fs11_c00189{font-size:66.560000pt;}
.fs0_c00189{font-size:69.120000pt;}
.y0_c00189{bottom:0.000000pt;}
.y6d_c00189{bottom:77.440000pt;}
.y6e_c00189{bottom:78.080000pt;}
.y6f_c00189{bottom:79.360000pt;}
.y6c_c00189{bottom:80.000000pt;}
.y6b_c00189{bottom:80.640000pt;}
.y6a_c00189{bottom:81.280000pt;}
.y69_c00189{bottom:81.920000pt;}
.y70_c00189{bottom:82.560000pt;}
.y65_c00189{bottom:115.200000pt;}
.y67_c00189{bottom:117.760000pt;}
.y66_c00189{bottom:118.400000pt;}
.y64_c00189{bottom:119.040000pt;}
.y68_c00189{bottom:119.680000pt;}
.y63_c00189{bottom:120.960000pt;}
.y60_c00189{bottom:155.520000pt;}
.y5d_c00189{bottom:156.160000pt;}
.y5e_c00189{bottom:156.800000pt;}
.y5f_c00189{bottom:157.440000pt;}
.y5c_c00189{bottom:158.080000pt;}
.y61_c00189{bottom:158.720000pt;}
.y62_c00189{bottom:159.360000pt;}
.y58_c00189{bottom:202.880000pt;}
.y5b_c00189{bottom:204.160000pt;}
.y59_c00189{bottom:204.800000pt;}
.y57_c00189{bottom:205.440000pt;}
.y5a_c00189{bottom:206.080000pt;}
.y56_c00189{bottom:206.720000pt;}
.y53_c00189{bottom:241.920000pt;}
.y52_c00189{bottom:242.560000pt;}
.y51_c00189{bottom:243.200000pt;}
.y54_c00189{bottom:243.840000pt;}
.y55_c00189{bottom:245.760000pt;}
.y50_c00189{bottom:280.960000pt;}
.y4e_c00189{bottom:281.600000pt;}
.y4d_c00189{bottom:282.880000pt;}
.y4f_c00189{bottom:283.520000pt;}
.y4c_c00189{bottom:284.160000pt;}
.y49_c00189{bottom:318.720000pt;}
.y45_c00189{bottom:319.360000pt;}
.y4b_c00189{bottom:320.000000pt;}
.y48_c00189{bottom:320.640000pt;}
.y47_c00189{bottom:321.280000pt;}
.y46_c00189{bottom:321.920000pt;}
.y4a_c00189{bottom:322.560000pt;}
.y43_c00189{bottom:358.400000pt;}
.y42_c00189{bottom:359.680000pt;}
.y44_c00189{bottom:360.320000pt;}
.y3f_c00189{bottom:395.520000pt;}
.y3c_c00189{bottom:396.160000pt;}
.y41_c00189{bottom:396.800000pt;}
.y3e_c00189{bottom:397.440000pt;}
.y3d_c00189{bottom:398.720000pt;}
.y40_c00189{bottom:399.360000pt;}
.y38_c00189{bottom:433.920000pt;}
.y3a_c00189{bottom:435.840000pt;}
.y37_c00189{bottom:436.480000pt;}
.y39_c00189{bottom:437.120000pt;}
.y3b_c00189{bottom:437.760000pt;}
.y35_c00189{bottom:480.640000pt;}
.y34_c00189{bottom:481.920000pt;}
.y36_c00189{bottom:483.200000pt;}
.y33_c00189{bottom:483.840000pt;}
.y30_c00189{bottom:519.680000pt;}
.y32_c00189{bottom:520.320000pt;}
.y2f_c00189{bottom:520.960000pt;}
.y2e_c00189{bottom:522.240000pt;}
.y31_c00189{bottom:522.880000pt;}
.y2b_c00189{bottom:557.440000pt;}
.y2c_c00189{bottom:558.720000pt;}
.y29_c00189{bottom:559.360000pt;}
.y2a_c00189{bottom:560.640000pt;}
.y2d_c00189{bottom:561.280000pt;}
.y26_c00189{bottom:595.840000pt;}
.y24_c00189{bottom:596.480000pt;}
.y27_c00189{bottom:597.120000pt;}
.y25_c00189{bottom:598.400000pt;}
.y28_c00189{bottom:599.040000pt;}
.y23_c00189{bottom:634.880000pt;}
.y22_c00189{bottom:636.800000pt;}
.y21_c00189{bottom:637.440000pt;}
.y20_c00189{bottom:682.240000pt;}
.y1f_c00189{bottom:721.920000pt;}
.y1d_c00189{bottom:723.200000pt;}
.y1e_c00189{bottom:723.840000pt;}
.y1c_c00189{bottom:759.680000pt;}
.y1b_c00189{bottom:760.320000pt;}
.y1a_c00189{bottom:761.600000pt;}
.y19_c00189{bottom:762.240000pt;}
.y18_c00189{bottom:762.880000pt;}
.y17_c00189{bottom:808.320000pt;}
.y15_c00189{bottom:808.960000pt;}
.y13_c00189{bottom:809.600000pt;}
.y14_c00189{bottom:810.240000pt;}
.y16_c00189{bottom:812.800000pt;}
.yd_c00189{bottom:845.440000pt;}
.y10_c00189{bottom:846.080000pt;}
.yf_c00189{bottom:846.720000pt;}
.y12_c00189{bottom:848.000000pt;}
.ye_c00189{bottom:848.640000pt;}
.y11_c00189{bottom:849.280000pt;}
.y9_c00189{bottom:885.120000pt;}
.y8_c00189{bottom:885.760000pt;}
.yc_c00189{bottom:886.400000pt;}
.yb_c00189{bottom:887.040000pt;}
.ya_c00189{bottom:887.680000pt;}
.y2_c00189{bottom:921.600000pt;}
.y5_c00189{bottom:923.520000pt;}
.y4_c00189{bottom:924.160000pt;}
.y7_c00189{bottom:924.800000pt;}
.y3_c00189{bottom:925.440000pt;}
.y6_c00189{bottom:926.080000pt;}
.y1_c00189{bottom:975.360000pt;}
.he_c00189{height:16.126250pt;}
.hf_c00189{height:18.430000pt;}
.h12_c00189{height:27.645000pt;}
.hd_c00189{height:29.948750pt;}
.h7_c00189{height:32.252500pt;}
.h5_c00189{height:34.556250pt;}
.h10_c00189{height:36.860000pt;}
.h11_c00189{height:39.163750pt;}
.h4_c00189{height:41.467500pt;}
.h8_c00189{height:43.771250pt;}
.h9_c00189{height:46.075000pt;}
.h6_c00189{height:48.378750pt;}
.h3_c00189{height:50.682500pt;}
.ha_c00189{height:52.986250pt;}
.hb_c00189{height:55.290000pt;}
.hc_c00189{height:57.593750pt;}
.h13_c00189{height:59.897500pt;}
.h2_c00189{height:62.201250pt;}
.h0_c00189{height:1015.680000pt;}
.h1_c00189{height:1016.000000pt;}
.w0_c00189{width:693.760000pt;}
.w1_c00189{width:694.000000pt;}
.x0_c00189{left:0.000000pt;}
.x2_c00189{left:68.480000pt;}
.xd_c00189{left:69.760000pt;}
.x45_c00189{left:71.040000pt;}
.x1b_c00189{left:97.280000pt;}
.x2a_c00189{left:106.240000pt;}
.x47_c00189{left:107.520000pt;}
.x3c_c00189{left:115.200000pt;}
.x36_c00189{left:116.480000pt;}
.x1c_c00189{left:124.800000pt;}
.x50_c00189{left:126.080000pt;}
.x54_c00189{left:127.360000pt;}
.x3_c00189{left:135.040000pt;}
.x4c_c00189{left:136.320000pt;}
.x34_c00189{left:144.000000pt;}
.x37_c00189{left:145.280000pt;}
.x14_c00189{left:153.600000pt;}
.x43_c00189{left:154.880000pt;}
.x4_c00189{left:163.200000pt;}
.xe_c00189{left:165.120000pt;}
.x2b_c00189{left:172.800000pt;}
.x3d_c00189{left:174.080000pt;}
.x1d_c00189{left:183.680000pt;}
.x24_c00189{left:192.000000pt;}
.x48_c00189{left:201.600000pt;}
.x3e_c00189{left:202.880000pt;}
.x5_c00189{left:211.840000pt;}
.x15_c00189{left:213.760000pt;}
.x1e_c00189{left:222.080000pt;}
.x1f_c00189{left:231.680000pt;}
.x2c_c00189{left:241.280000pt;}
.x4b_c00189{left:249.600000pt;}
.x25_c00189{left:251.520000pt;}
.x38_c00189{left:259.840000pt;}
.xf_c00189{left:261.120000pt;}
.x6_c00189{left:270.080000pt;}
.x20_c00189{left:272.000000pt;}
.x3f_c00189{left:279.680000pt;}
.x2d_c00189{left:289.280000pt;}
.x16_c00189{left:300.160000pt;}
.x7_c00189{left:309.120000pt;}
.x10_c00189{left:318.080000pt;}
.x21_c00189{left:328.320000pt;}
.x4e_c00189{left:337.920000pt;}
.x11_c00189{left:347.520000pt;}
.x39_c00189{left:357.120000pt;}
.x8_c00189{left:366.080000pt;}
.x22_c00189{left:374.400000pt;}
.x31_c00189{left:376.320000pt;}
.x2e_c00189{left:385.920000pt;}
.x51_c00189{left:387.200000pt;}
.x4f_c00189{left:393.600000pt;}
.x9_c00189{left:394.880000pt;}
.x17_c00189{left:405.120000pt;}
.x44_c00189{left:414.080000pt;}
.x23_c00189{left:416.640000pt;}
.x3a_c00189{left:423.040000pt;}
.x52_c00189{left:424.960000pt;}
.x26_c00189{left:432.640000pt;}
.x49_c00189{left:433.920000pt;}
.xa_c00189{left:442.240000pt;}
.x35_c00189{left:451.840000pt;}
.x2f_c00189{left:460.800000pt;}
.x46_c00189{left:462.080000pt;}
.x4d_c00189{left:471.040000pt;}
.xb_c00189{left:481.280000pt;}
.x3b_c00189{left:490.240000pt;}
.x40_c00189{left:500.480000pt;}
.x27_c00189{left:509.440000pt;}
.x18_c00189{left:510.720000pt;}
.x32_c00189{left:518.400000pt;}
.x12_c00189{left:520.320000pt;}
.x41_c00189{left:528.640000pt;}
.x30_c00189{left:537.600000pt;}
.x19_c00189{left:538.880000pt;}
.x28_c00189{left:548.480000pt;}
.x42_c00189{left:557.440000pt;}
.x33_c00189{left:558.720000pt;}
.x1a_c00189{left:566.400000pt;}
.x29_c00189{left:576.640000pt;}
.x53_c00189{left:584.320000pt;}
.x4a_c00189{left:585.600000pt;}
.xc_c00189{left:595.200000pt;}
.x13_c00189{left:604.800000pt;}
.x1_c00189{left:618.240000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_29629a760d2c2658987777e9.woff2')format("woff");}.ff1_c00190{font-family:ff1_c00190;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5a_c00190{transform:matrix(0.216050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216050,0.000000,0.000000,0.250000,0,0);}
.m5c_c00190{transform:matrix(0.221950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221950,0.000000,0.000000,0.250000,0,0);}
.m54_c00190{transform:matrix(0.249050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249050,0.000000,0.000000,0.250000,0,0);}
.m38_c00190{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m36_c00190{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);}
.m45_c00190{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);}
.m33_c00190{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m62_c00190{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m5_c00190{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m49_c00190{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);}
.m44_c00190{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00190{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00190{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m51_c00190{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00190{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.md_c00190{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m22_c00190{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00190{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00190{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m27_c00190{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.me_c00190{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00190{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00190{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00190{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m0_c00190{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m18_c00190{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);}
.m3d_c00190{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m16_c00190{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m2_c00190{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_c00190{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00190{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);}
.m64_c00190{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);}
.m6_c00190{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m8_c00190{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m4_c00190{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00190{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);}
.m23_c00190{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);}
.m2e_c00190{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_c00190{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00190{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);}
.m2d_c00190{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m1_c00190{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);}
.m31_c00190{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);}
.m42_c00190{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);}
.mf_c00190{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m20_c00190{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m61_c00190{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);}
.m34_c00190{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m24_c00190{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);}
.m48_c00190{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m21_c00190{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);}
.m55_c00190{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);}
.m4e_c00190{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m12_c00190{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m3_c00190{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m58_c00190{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00190{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);}
.mc_c00190{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);}
.m41_c00190{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m39_c00190{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_c00190{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m35_c00190{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m10_c00190{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m13_c00190{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m15_c00190{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_c00190{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m28_c00190{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m14_c00190{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00190{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);}
.m4c_c00190{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00190{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00190{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00190{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m46_c00190{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00190{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);}
.m29_c00190{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m32_c00190{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.ma_c00190{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);}
.m5f_c00190{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m57_c00190{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m47_c00190{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00190{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);}
.m56_c00190{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m43_c00190{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00190{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m50_c00190{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);}
.m11_c00190{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);}
.m59_c00190{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m40_c00190{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00190{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00190{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m60_c00190{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.mb_c00190{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m52_c00190{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m17_c00190{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);}
.m37_c00190{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m7_c00190{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m53_c00190{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m63_c00190{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);}
.m30_c00190{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00190{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.v1_c00190{vertical-align:-8.640000px;}
.v2_c00190{vertical-align:-5.760000px;}
.v0_c00190{vertical-align:0.000000px;}
.ls0_c00190{letter-spacing:0.000000px;}
.sc__c00190{text-shadow:none;}
.sc0_c00190{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00190{-webkit-text-stroke:0px transparent;}
.sc0_c00190{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00190{word-spacing:-2.898480px;}
.ws3_c00190{word-spacing:-1.468800px;}
.ws1_c00190{word-spacing:-1.234800px;}
.ws4_c00190{word-spacing:0.000000px;}
.ws2_c00190{word-spacing:6.426000px;}
.fc0_c00190{color:transparent;}
.fse_c00190{font-size:20.160000px;}
.fs11_c00190{font-size:25.920000px;}
.fs6_c00190{font-size:34.560000px;}
.fs5_c00190{font-size:37.440000px;}
.fsa_c00190{font-size:40.320000px;}
.fs9_c00190{font-size:43.200000px;}
.fsd_c00190{font-size:46.080000px;}
.fs2_c00190{font-size:48.960000px;}
.fs1_c00190{font-size:51.840000px;}
.fs8_c00190{font-size:54.720000px;}
.fsb_c00190{font-size:57.600000px;}
.fs3_c00190{font-size:60.480000px;}
.fs4_c00190{font-size:63.360000px;}
.fs7_c00190{font-size:66.240000px;}
.fsc_c00190{font-size:69.120000px;}
.fs10_c00190{font-size:72.000000px;}
.fsf_c00190{font-size:74.880000px;}
.fs0_c00190{font-size:77.760000px;}
.y0_c00190{bottom:0.000000px;}
.y76_c00190{bottom:33.840000px;}
.y77_c00190{bottom:34.560000px;}
.y7b_c00190{bottom:35.280000px;}
.y78_c00190{bottom:36.000000px;}
.y79_c00190{bottom:36.720000px;}
.y7a_c00190{bottom:37.440000px;}
.y75_c00190{bottom:38.160000px;}
.y7c_c00190{bottom:38.880000px;}
.y74_c00190{bottom:90.720000px;}
.y73_c00190{bottom:93.600000px;}
.y72_c00190{bottom:95.040000px;}
.y6f_c00190{bottom:132.480000px;}
.y6d_c00190{bottom:133.200000px;}
.y70_c00190{bottom:133.920000px;}
.y6e_c00190{bottom:134.640000px;}
.y71_c00190{bottom:136.080000px;}
.y6c_c00190{bottom:136.800000px;}
.y6b_c00190{bottom:174.960000px;}
.y6a_c00190{bottom:176.400000px;}
.y69_c00190{bottom:177.120000px;}
.y68_c00190{bottom:178.560000px;}
.y64_c00190{bottom:217.440000px;}
.y63_c00190{bottom:218.880000px;}
.y67_c00190{bottom:219.600000px;}
.y65_c00190{bottom:220.320000px;}
.y66_c00190{bottom:221.040000px;}
.y62_c00190{bottom:222.480000px;}
.y5f_c00190{bottom:260.640000px;}
.y5d_c00190{bottom:261.360000px;}
.y5b_c00190{bottom:262.080000px;}
.y60_c00190{bottom:262.800000px;}
.y5e_c00190{bottom:263.520000px;}
.y61_c00190{bottom:264.240000px;}
.y5c_c00190{bottom:264.960000px;}
.y57_c00190{bottom:303.120000px;}
.y58_c00190{bottom:303.840000px;}
.y56_c00190{bottom:306.000000px;}
.y59_c00190{bottom:306.720000px;}
.y5a_c00190{bottom:309.600000px;}
.y54_c00190{bottom:347.040000px;}
.y51_c00190{bottom:348.480000px;}
.y53_c00190{bottom:349.200000px;}
.y55_c00190{bottom:349.920000px;}
.y52_c00190{bottom:350.640000px;}
.y50_c00190{bottom:351.360000px;}
.y49_c00190{bottom:390.240000px;}
.y4d_c00190{bottom:390.960000px;}
.y4c_c00190{bottom:391.680000px;}
.y4b_c00190{bottom:392.400000px;}
.y4a_c00190{bottom:393.120000px;}
.y4e_c00190{bottom:393.840000px;}
.y4f_c00190{bottom:395.280000px;}
.y46_c00190{bottom:433.440000px;}
.y48_c00190{bottom:434.160000px;}
.y47_c00190{bottom:436.320000px;}
.y45_c00190{bottom:437.760000px;}
.y40_c00190{bottom:476.640000px;}
.y44_c00190{bottom:477.360000px;}
.y42_c00190{bottom:478.080000px;}
.y41_c00190{bottom:478.800000px;}
.y3f_c00190{bottom:479.520000px;}
.y43_c00190{bottom:480.240000px;}
.y3d_c00190{bottom:519.840000px;}
.y3e_c00190{bottom:522.000000px;}
.y3c_c00190{bottom:522.720000px;}
.y3b_c00190{bottom:523.440000px;}
.y37_c00190{bottom:573.120000px;}
.y3a_c00190{bottom:573.840000px;}
.y39_c00190{bottom:576.000000px;}
.y36_c00190{bottom:576.720000px;}
.y38_c00190{bottom:577.440000px;}
.y35_c00190{bottom:617.760000px;}
.y34_c00190{bottom:619.200000px;}
.y32_c00190{bottom:619.920000px;}
.y33_c00190{bottom:620.640000px;}
.y31_c00190{bottom:660.240000px;}
.y2f_c00190{bottom:662.400000px;}
.y30_c00190{bottom:663.120000px;}
.y2a_c00190{bottom:703.440000px;}
.y2c_c00190{bottom:704.160000px;}
.y29_c00190{bottom:704.880000px;}
.y2e_c00190{bottom:705.600000px;}
.y2d_c00190{bottom:706.320000px;}
.y2b_c00190{bottom:707.040000px;}
.y26_c00190{bottom:745.920000px;}
.y25_c00190{bottom:746.640000px;}
.y27_c00190{bottom:747.360000px;}
.y24_c00190{bottom:748.080000px;}
.y23_c00190{bottom:748.800000px;}
.y28_c00190{bottom:750.960000px;}
.y1d_c00190{bottom:788.400000px;}
.y20_c00190{bottom:789.120000px;}
.y1e_c00190{bottom:789.840000px;}
.y21_c00190{bottom:791.280000px;}
.y22_c00190{bottom:792.000000px;}
.y1f_c00190{bottom:792.720000px;}
.y1c_c00190{bottom:831.600000px;}
.y19_c00190{bottom:832.320000px;}
.y1a_c00190{bottom:833.040000px;}
.y18_c00190{bottom:834.480000px;}
.y1b_c00190{bottom:835.200000px;}
.y17_c00190{bottom:873.360000px;}
.y16_c00190{bottom:874.800000px;}
.y14_c00190{bottom:876.960000px;}
.y15_c00190{bottom:877.680000px;}
.y13_c00190{bottom:878.400000px;}
.y10_c00190{bottom:928.800000px;}
.y12_c00190{bottom:930.240000px;}
.ye_c00190{bottom:930.960000px;}
.y11_c00190{bottom:931.680000px;}
.yf_c00190{bottom:932.400000px;}
.yc_c00190{bottom:969.840000px;}
.y8_c00190{bottom:970.560000px;}
.yd_c00190{bottom:971.280000px;}
.ya_c00190{bottom:972.000000px;}
.yb_c00190{bottom:974.160000px;}
.y9_c00190{bottom:974.880000px;}
.y2_c00190{bottom:1013.760000px;}
.y3_c00190{bottom:1015.200000px;}
.y4_c00190{bottom:1015.920000px;}
.y5_c00190{bottom:1016.640000px;}
.y7_c00190{bottom:1017.360000px;}
.y6_c00190{bottom:1018.800000px;}
.y1_c00190{bottom:1097.280000px;}
.h10_c00190{height:18.142031px;}
.h14_c00190{height:23.325469px;}
.h8_c00190{height:31.100625px;}
.h7_c00190{height:33.692344px;}
.hc_c00190{height:36.284062px;}
.hb_c00190{height:38.875781px;}
.hf_c00190{height:41.467500px;}
.h4_c00190{height:44.059219px;}
.h3_c00190{height:46.650937px;}
.ha_c00190{height:49.242656px;}
.hd_c00190{height:51.834375px;}
.h5_c00190{height:54.426094px;}
.h6_c00190{height:57.017812px;}
.h13_c00190{height:59.032969px;}
.h9_c00190{height:59.609531px;}
.he_c00190{height:62.201250px;}
.h12_c00190{height:64.792969px;}
.h11_c00190{height:67.384687px;}
.h2_c00190{height:69.976406px;}
.h0_c00190{height:1142.640000px;}
.h1_c00190{height:1143.000000px;}
.w0_c00190{width:780.480000px;}
.w1_c00190{width:780.750000px;}
.x0_c00190{left:0.000000px;}
.x2_c00190{left:77.760000px;}
.x46_c00190{left:79.200000px;}
.x59_c00190{left:80.640000px;}
.x27_c00190{left:110.160000px;}
.x2d_c00190{left:119.520000px;}
.xd_c00190{left:120.960000px;}
.x3_c00190{left:131.040000px;}
.x20_c00190{left:140.400000px;}
.x35_c00190{left:141.840000px;}
.x3b_c00190{left:151.200000px;}
.xe_c00190{left:153.360000px;}
.x2e_c00190{left:162.720000px;}
.x53_c00190{left:172.800000px;}
.x4_c00190{left:174.240000px;}
.x4b_c00190{left:183.600000px;}
.x13_c00190{left:185.040000px;}
.x4f_c00190{left:194.400000px;}
.x2f_c00190{left:196.560000px;}
.x5a_c00190{left:205.200000px;}
.x47_c00190{left:208.080000px;}
.x1a_c00190{left:217.440000px;}
.x57_c00190{left:226.800000px;}
.x14_c00190{left:238.320000px;}
.x5_c00190{left:240.480000px;}
.x3c_c00190{left:249.120000px;}
.x21_c00190{left:260.640000px;}
.x36_c00190{left:270.720000px;}
.xf_c00190{left:272.160000px;}
.x16_c00190{left:281.520000px;}
.x50_c00190{left:282.960000px;}
.x3d_c00190{left:292.320000px;}
.x30_c00190{left:298.080000px;}
.x5b_c00190{left:302.400000px;}
.x4c_c00190{left:303.840000px;}
.x40_c00190{left:313.920000px;}
.x15_c00190{left:315.360000px;}
.x10_c00190{left:316.800000px;}
.x28_c00190{left:326.160000px;}
.x4d_c00190{left:335.520000px;}
.x37_c00190{left:336.960000px;}
.x6_c00190{left:347.760000px;}
.x31_c00190{left:356.400000px;}
.x3e_c00190{left:357.840000px;}
.x38_c00190{left:368.640000px;}
.x51_c00190{left:379.440000px;}
.x7_c00190{left:390.960000px;}
.x22_c00190{left:401.040000px;}
.x11_c00190{left:402.480000px;}
.x17_c00190{left:411.120000px;}
.x44_c00190{left:421.920000px;}
.x1b_c00190{left:424.080000px;}
.x32_c00190{left:433.440000px;}
.x23_c00190{left:444.240000px;}
.x54_c00190{left:464.400000px;}
.x48_c00190{left:465.840000px;}
.x8_c00190{left:467.280000px;}
.x29_c00190{left:477.360000px;}
.x5c_c00190{left:486.720000px;}
.x1c_c00190{left:488.160000px;}
.x41_c00190{left:498.240000px;}
.x9_c00190{left:499.680000px;}
.x55_c00190{left:508.320000px;}
.x24_c00190{left:509.760000px;}
.x5d_c00190{left:518.400000px;}
.x39_c00190{left:519.840000px;}
.x1d_c00190{left:530.640000px;}
.x18_c00190{left:532.080000px;}
.x52_c00190{left:540.000000px;}
.x25_c00190{left:541.440000px;}
.x3f_c00190{left:551.520000px;}
.xa_c00190{left:552.960000px;}
.x2a_c00190{left:563.040000px;}
.x43_c00190{left:573.120000px;}
.x42_c00190{left:583.200000px;}
.x33_c00190{left:584.640000px;}
.x19_c00190{left:586.080000px;}
.x3a_c00190{left:594.720000px;}
.x26_c00190{left:596.160000px;}
.x45_c00190{left:615.600000px;}
.xb_c00190{left:617.760000px;}
.x58_c00190{left:625.680000px;}
.x1e_c00190{left:627.840000px;}
.x56_c00190{left:637.200000px;}
.xc_c00190{left:639.360000px;}
.x34_c00190{left:649.440000px;}
.x2b_c00190{left:659.520000px;}
.x12_c00190{left:660.960000px;}
.x49_c00190{left:668.880000px;}
.x1f_c00190{left:671.040000px;}
.x2c_c00190{left:681.120000px;}
.x1_c00190{left:684.720000px;}
.x4a_c00190{left:699.840000px;}
.x4e_c00190{left:702.000000px;}
@media print{
.v1_c00190{vertical-align:-7.680000pt;}
.v2_c00190{vertical-align:-5.120000pt;}
.v0_c00190{vertical-align:0.000000pt;}
.ls0_c00190{letter-spacing:0.000000pt;}
.ws0_c00190{word-spacing:-2.576427pt;}
.ws3_c00190{word-spacing:-1.305600pt;}
.ws1_c00190{word-spacing:-1.097600pt;}
.ws4_c00190{word-spacing:0.000000pt;}
.ws2_c00190{word-spacing:5.712000pt;}
.fse_c00190{font-size:17.920000pt;}
.fs11_c00190{font-size:23.040000pt;}
.fs6_c00190{font-size:30.720000pt;}
.fs5_c00190{font-size:33.280000pt;}
.fsa_c00190{font-size:35.840000pt;}
.fs9_c00190{font-size:38.400000pt;}
.fsd_c00190{font-size:40.960000pt;}
.fs2_c00190{font-size:43.520000pt;}
.fs1_c00190{font-size:46.080000pt;}
.fs8_c00190{font-size:48.640000pt;}
.fsb_c00190{font-size:51.200000pt;}
.fs3_c00190{font-size:53.760000pt;}
.fs4_c00190{font-size:56.320000pt;}
.fs7_c00190{font-size:58.880000pt;}
.fsc_c00190{font-size:61.440000pt;}
.fs10_c00190{font-size:64.000000pt;}
.fsf_c00190{font-size:66.560000pt;}
.fs0_c00190{font-size:69.120000pt;}
.y0_c00190{bottom:0.000000pt;}
.y76_c00190{bottom:30.080000pt;}
.y77_c00190{bottom:30.720000pt;}
.y7b_c00190{bottom:31.360000pt;}
.y78_c00190{bottom:32.000000pt;}
.y79_c00190{bottom:32.640000pt;}
.y7a_c00190{bottom:33.280000pt;}
.y75_c00190{bottom:33.920000pt;}
.y7c_c00190{bottom:34.560000pt;}
.y74_c00190{bottom:80.640000pt;}
.y73_c00190{bottom:83.200000pt;}
.y72_c00190{bottom:84.480000pt;}
.y6f_c00190{bottom:117.760000pt;}
.y6d_c00190{bottom:118.400000pt;}
.y70_c00190{bottom:119.040000pt;}
.y6e_c00190{bottom:119.680000pt;}
.y71_c00190{bottom:120.960000pt;}
.y6c_c00190{bottom:121.600000pt;}
.y6b_c00190{bottom:155.520000pt;}
.y6a_c00190{bottom:156.800000pt;}
.y69_c00190{bottom:157.440000pt;}
.y68_c00190{bottom:158.720000pt;}
.y64_c00190{bottom:193.280000pt;}
.y63_c00190{bottom:194.560000pt;}
.y67_c00190{bottom:195.200000pt;}
.y65_c00190{bottom:195.840000pt;}
.y66_c00190{bottom:196.480000pt;}
.y62_c00190{bottom:197.760000pt;}
.y5f_c00190{bottom:231.680000pt;}
.y5d_c00190{bottom:232.320000pt;}
.y5b_c00190{bottom:232.960000pt;}
.y60_c00190{bottom:233.600000pt;}
.y5e_c00190{bottom:234.240000pt;}
.y61_c00190{bottom:234.880000pt;}
.y5c_c00190{bottom:235.520000pt;}
.y57_c00190{bottom:269.440000pt;}
.y58_c00190{bottom:270.080000pt;}
.y56_c00190{bottom:272.000000pt;}
.y59_c00190{bottom:272.640000pt;}
.y5a_c00190{bottom:275.200000pt;}
.y54_c00190{bottom:308.480000pt;}
.y51_c00190{bottom:309.760000pt;}
.y53_c00190{bottom:310.400000pt;}
.y55_c00190{bottom:311.040000pt;}
.y52_c00190{bottom:311.680000pt;}
.y50_c00190{bottom:312.320000pt;}
.y49_c00190{bottom:346.880000pt;}
.y4d_c00190{bottom:347.520000pt;}
.y4c_c00190{bottom:348.160000pt;}
.y4b_c00190{bottom:348.800000pt;}
.y4a_c00190{bottom:349.440000pt;}
.y4e_c00190{bottom:350.080000pt;}
.y4f_c00190{bottom:351.360000pt;}
.y46_c00190{bottom:385.280000pt;}
.y48_c00190{bottom:385.920000pt;}
.y47_c00190{bottom:387.840000pt;}
.y45_c00190{bottom:389.120000pt;}
.y40_c00190{bottom:423.680000pt;}
.y44_c00190{bottom:424.320000pt;}
.y42_c00190{bottom:424.960000pt;}
.y41_c00190{bottom:425.600000pt;}
.y3f_c00190{bottom:426.240000pt;}
.y43_c00190{bottom:426.880000pt;}
.y3d_c00190{bottom:462.080000pt;}
.y3e_c00190{bottom:464.000000pt;}
.y3c_c00190{bottom:464.640000pt;}
.y3b_c00190{bottom:465.280000pt;}
.y37_c00190{bottom:509.440000pt;}
.y3a_c00190{bottom:510.080000pt;}
.y39_c00190{bottom:512.000000pt;}
.y36_c00190{bottom:512.640000pt;}
.y38_c00190{bottom:513.280000pt;}
.y35_c00190{bottom:549.120000pt;}
.y34_c00190{bottom:550.400000pt;}
.y32_c00190{bottom:551.040000pt;}
.y33_c00190{bottom:551.680000pt;}
.y31_c00190{bottom:586.880000pt;}
.y2f_c00190{bottom:588.800000pt;}
.y30_c00190{bottom:589.440000pt;}
.y2a_c00190{bottom:625.280000pt;}
.y2c_c00190{bottom:625.920000pt;}
.y29_c00190{bottom:626.560000pt;}
.y2e_c00190{bottom:627.200000pt;}
.y2d_c00190{bottom:627.840000pt;}
.y2b_c00190{bottom:628.480000pt;}
.y26_c00190{bottom:663.040000pt;}
.y25_c00190{bottom:663.680000pt;}
.y27_c00190{bottom:664.320000pt;}
.y24_c00190{bottom:664.960000pt;}
.y23_c00190{bottom:665.600000pt;}
.y28_c00190{bottom:667.520000pt;}
.y1d_c00190{bottom:700.800000pt;}
.y20_c00190{bottom:701.440000pt;}
.y1e_c00190{bottom:702.080000pt;}
.y21_c00190{bottom:703.360000pt;}
.y22_c00190{bottom:704.000000pt;}
.y1f_c00190{bottom:704.640000pt;}
.y1c_c00190{bottom:739.200000pt;}
.y19_c00190{bottom:739.840000pt;}
.y1a_c00190{bottom:740.480000pt;}
.y18_c00190{bottom:741.760000pt;}
.y1b_c00190{bottom:742.400000pt;}
.y17_c00190{bottom:776.320000pt;}
.y16_c00190{bottom:777.600000pt;}
.y14_c00190{bottom:779.520000pt;}
.y15_c00190{bottom:780.160000pt;}
.y13_c00190{bottom:780.800000pt;}
.y10_c00190{bottom:825.600000pt;}
.y12_c00190{bottom:826.880000pt;}
.ye_c00190{bottom:827.520000pt;}
.y11_c00190{bottom:828.160000pt;}
.yf_c00190{bottom:828.800000pt;}
.yc_c00190{bottom:862.080000pt;}
.y8_c00190{bottom:862.720000pt;}
.yd_c00190{bottom:863.360000pt;}
.ya_c00190{bottom:864.000000pt;}
.yb_c00190{bottom:865.920000pt;}
.y9_c00190{bottom:866.560000pt;}
.y2_c00190{bottom:901.120000pt;}
.y3_c00190{bottom:902.400000pt;}
.y4_c00190{bottom:903.040000pt;}
.y5_c00190{bottom:903.680000pt;}
.y7_c00190{bottom:904.320000pt;}
.y6_c00190{bottom:905.600000pt;}
.y1_c00190{bottom:975.360000pt;}
.h10_c00190{height:16.126250pt;}
.h14_c00190{height:20.733750pt;}
.h8_c00190{height:27.645000pt;}
.h7_c00190{height:29.948750pt;}
.hc_c00190{height:32.252500pt;}
.hb_c00190{height:34.556250pt;}
.hf_c00190{height:36.860000pt;}
.h4_c00190{height:39.163750pt;}
.h3_c00190{height:41.467500pt;}
.ha_c00190{height:43.771250pt;}
.hd_c00190{height:46.075000pt;}
.h5_c00190{height:48.378750pt;}
.h6_c00190{height:50.682500pt;}
.h13_c00190{height:52.473750pt;}
.h9_c00190{height:52.986250pt;}
.he_c00190{height:55.290000pt;}
.h12_c00190{height:57.593750pt;}
.h11_c00190{height:59.897500pt;}
.h2_c00190{height:62.201250pt;}
.h0_c00190{height:1015.680000pt;}
.h1_c00190{height:1016.000000pt;}
.w0_c00190{width:693.760000pt;}
.w1_c00190{width:694.000000pt;}
.x0_c00190{left:0.000000pt;}
.x2_c00190{left:69.120000pt;}
.x46_c00190{left:70.400000pt;}
.x59_c00190{left:71.680000pt;}
.x27_c00190{left:97.920000pt;}
.x2d_c00190{left:106.240000pt;}
.xd_c00190{left:107.520000pt;}
.x3_c00190{left:116.480000pt;}
.x20_c00190{left:124.800000pt;}
.x35_c00190{left:126.080000pt;}
.x3b_c00190{left:134.400000pt;}
.xe_c00190{left:136.320000pt;}
.x2e_c00190{left:144.640000pt;}
.x53_c00190{left:153.600000pt;}
.x4_c00190{left:154.880000pt;}
.x4b_c00190{left:163.200000pt;}
.x13_c00190{left:164.480000pt;}
.x4f_c00190{left:172.800000pt;}
.x2f_c00190{left:174.720000pt;}
.x5a_c00190{left:182.400000pt;}
.x47_c00190{left:184.960000pt;}
.x1a_c00190{left:193.280000pt;}
.x57_c00190{left:201.600000pt;}
.x14_c00190{left:211.840000pt;}
.x5_c00190{left:213.760000pt;}
.x3c_c00190{left:221.440000pt;}
.x21_c00190{left:231.680000pt;}
.x36_c00190{left:240.640000pt;}
.xf_c00190{left:241.920000pt;}
.x16_c00190{left:250.240000pt;}
.x50_c00190{left:251.520000pt;}
.x3d_c00190{left:259.840000pt;}
.x30_c00190{left:264.960000pt;}
.x5b_c00190{left:268.800000pt;}
.x4c_c00190{left:270.080000pt;}
.x40_c00190{left:279.040000pt;}
.x15_c00190{left:280.320000pt;}
.x10_c00190{left:281.600000pt;}
.x28_c00190{left:289.920000pt;}
.x4d_c00190{left:298.240000pt;}
.x37_c00190{left:299.520000pt;}
.x6_c00190{left:309.120000pt;}
.x31_c00190{left:316.800000pt;}
.x3e_c00190{left:318.080000pt;}
.x38_c00190{left:327.680000pt;}
.x51_c00190{left:337.280000pt;}
.x7_c00190{left:347.520000pt;}
.x22_c00190{left:356.480000pt;}
.x11_c00190{left:357.760000pt;}
.x17_c00190{left:365.440000pt;}
.x44_c00190{left:375.040000pt;}
.x1b_c00190{left:376.960000pt;}
.x32_c00190{left:385.280000pt;}
.x23_c00190{left:394.880000pt;}
.x54_c00190{left:412.800000pt;}
.x48_c00190{left:414.080000pt;}
.x8_c00190{left:415.360000pt;}
.x29_c00190{left:424.320000pt;}
.x5c_c00190{left:432.640000pt;}
.x1c_c00190{left:433.920000pt;}
.x41_c00190{left:442.880000pt;}
.x9_c00190{left:444.160000pt;}
.x55_c00190{left:451.840000pt;}
.x24_c00190{left:453.120000pt;}
.x5d_c00190{left:460.800000pt;}
.x39_c00190{left:462.080000pt;}
.x1d_c00190{left:471.680000pt;}
.x18_c00190{left:472.960000pt;}
.x52_c00190{left:480.000000pt;}
.x25_c00190{left:481.280000pt;}
.x3f_c00190{left:490.240000pt;}
.xa_c00190{left:491.520000pt;}
.x2a_c00190{left:500.480000pt;}
.x43_c00190{left:509.440000pt;}
.x42_c00190{left:518.400000pt;}
.x33_c00190{left:519.680000pt;}
.x19_c00190{left:520.960000pt;}
.x3a_c00190{left:528.640000pt;}
.x26_c00190{left:529.920000pt;}
.x45_c00190{left:547.200000pt;}
.xb_c00190{left:549.120000pt;}
.x58_c00190{left:556.160000pt;}
.x1e_c00190{left:558.080000pt;}
.x56_c00190{left:566.400000pt;}
.xc_c00190{left:568.320000pt;}
.x34_c00190{left:577.280000pt;}
.x2b_c00190{left:586.240000pt;}
.x12_c00190{left:587.520000pt;}
.x49_c00190{left:594.560000pt;}
.x1f_c00190{left:596.480000pt;}
.x2c_c00190{left:605.440000pt;}
.x1_c00190{left:608.640000pt;}
.x4a_c00190{left:622.080000pt;}
.x4e_c00190{left:624.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_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_cdad13bfea1f480b046ad7f1.woff2')format("woff");}.ff1_c00191{font-family:ff1_c00191;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4e_c00191{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m19_c00191{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m47_c00191{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00191{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m57_c00191{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m45_c00191{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mf_c00191{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m0_c00191{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00191{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);}
.m46_c00191{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00191{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00191{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);}
.m54_c00191{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_c00191{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m10_c00191{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m25_c00191{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m24_c00191{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);}
.m33_c00191{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m2b_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);}
.m32_c00191{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m5_c00191{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m3_c00191{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m8_c00191{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00191{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m28_c00191{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);}
.m40_c00191{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);}
.m26_c00191{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);}
.m30_c00191{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m15_c00191{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);}
.m43_c00191{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m9_c00191{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);}
.m1f_c00191{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);}
.m35_c00191{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);}
.m20_c00191{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m41_c00191{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00191{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);}
.m36_c00191{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m53_c00191{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);}
.m42_c00191{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m11_c00191{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);}
.m4_c00191{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);}
.m39_c00191{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m22_c00191{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.mb_c00191{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00191{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00191{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);}
.m4a_c00191{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m48_c00191{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m18_c00191{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);}
.m2_c00191{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);}
.m2d_c00191{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m37_c00191{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.md_c00191{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00191{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m6_c00191{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);}
.m1b_c00191{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m14_c00191{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m21_c00191{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);}
.m17_c00191{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00191{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m38_c00191{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m50_c00191{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00191{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);}
.m7_c00191{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);}
.m58_c00191{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.mc_c00191{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00191{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00191{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);}
.m5d_c00191{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m27_c00191{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00191{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m31_c00191{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);}
.m2c_c00191{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m52_c00191{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m34_c00191{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00191{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);}
.m49_c00191{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m51_c00191{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);}
.m16_c00191{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);}
.m23_c00191{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00191{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m55_c00191{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m1_c00191{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00191{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00191{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m56_c00191{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.ma_c00191{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);}
.m29_c00191{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00191{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m44_c00191{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m59_c00191{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00191{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);}
.me_c00191{transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);}
.m12_c00191{transform:matrix(0.982500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.982500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.982500,0.000000,0.000000,0.250000,0,0);}
.v0_c00191{vertical-align:0.000000px;}
.ls0_c00191{letter-spacing:0.000000px;}
.sc__c00191{text-shadow:none;}
.sc0_c00191{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00191{-webkit-text-stroke:0px transparent;}
.sc0_c00191{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00191{word-spacing:-6.879600px;}
.ws1_c00191{word-spacing:0.000000px;}
.fc0_c00191{color:transparent;}
.fsa_c00191{font-size:23.040000px;}
.fs8_c00191{font-size:34.560000px;}
.fsc_c00191{font-size:37.440000px;}
.fse_c00191{font-size:40.320000px;}
.fsf_c00191{font-size:43.200000px;}
.fs3_c00191{font-size:46.080000px;}
.fs5_c00191{font-size:48.960000px;}
.fs1_c00191{font-size:51.840000px;}
.fsd_c00191{font-size:54.720000px;}
.fs7_c00191{font-size:57.600000px;}
.fs6_c00191{font-size:60.480000px;}
.fs2_c00191{font-size:63.360000px;}
.fs9_c00191{font-size:66.240000px;}
.fs4_c00191{font-size:69.120000px;}
.fsb_c00191{font-size:72.000000px;}
.fs0_c00191{font-size:74.880000px;}
.y0_c00191{bottom:0.000000px;}
.y6e_c00191{bottom:36.000000px;}
.y6c_c00191{bottom:72.720000px;}
.y69_c00191{bottom:74.880000px;}
.y6b_c00191{bottom:75.600000px;}
.y6d_c00191{bottom:76.320000px;}
.y6a_c00191{bottom:77.040000px;}
.y68_c00191{bottom:79.200000px;}
.y67_c00191{bottom:117.360000px;}
.y64_c00191{bottom:118.080000px;}
.y66_c00191{bottom:118.800000px;}
.y65_c00191{bottom:120.240000px;}
.y63_c00191{bottom:121.680000px;}
.y61_c00191{bottom:159.840000px;}
.y60_c00191{bottom:160.560000px;}
.y62_c00191{bottom:162.000000px;}
.y5f_c00191{bottom:164.160000px;}
.y5c_c00191{bottom:203.040000px;}
.y5b_c00191{bottom:205.200000px;}
.y5a_c00191{bottom:205.920000px;}
.y5d_c00191{bottom:206.640000px;}
.y59_c00191{bottom:207.360000px;}
.y5e_c00191{bottom:208.080000px;}
.y58_c00191{bottom:208.800000px;}
.y57_c00191{bottom:248.400000px;}
.y56_c00191{bottom:249.120000px;}
.y55_c00191{bottom:249.840000px;}
.y54_c00191{bottom:250.560000px;}
.y53_c00191{bottom:251.280000px;}
.y50_c00191{bottom:290.160000px;}
.y4f_c00191{bottom:290.880000px;}
.y4e_c00191{bottom:292.320000px;}
.y51_c00191{bottom:293.040000px;}
.y52_c00191{bottom:293.760000px;}
.y4a_c00191{bottom:331.920000px;}
.y48_c00191{bottom:333.360000px;}
.y49_c00191{bottom:334.080000px;}
.y47_c00191{bottom:334.800000px;}
.y4b_c00191{bottom:335.520000px;}
.y4c_c00191{bottom:336.240000px;}
.y46_c00191{bottom:336.960000px;}
.y4d_c00191{bottom:337.680000px;}
.y43_c00191{bottom:376.560000px;}
.y40_c00191{bottom:377.280000px;}
.y45_c00191{bottom:378.000000px;}
.y42_c00191{bottom:378.720000px;}
.y41_c00191{bottom:379.440000px;}
.y44_c00191{bottom:380.160000px;}
.y3f_c00191{bottom:380.880000px;}
.y3e_c00191{bottom:421.920000px;}
.y3d_c00191{bottom:422.640000px;}
.y3c_c00191{bottom:423.360000px;}
.y39_c00191{bottom:472.320000px;}
.y3b_c00191{bottom:473.760000px;}
.y3a_c00191{bottom:475.920000px;}
.y38_c00191{bottom:476.640000px;}
.y37_c00191{bottom:478.080000px;}
.y35_c00191{bottom:516.240000px;}
.y36_c00191{bottom:517.680000px;}
.y34_c00191{bottom:519.120000px;}
.y33_c00191{bottom:519.840000px;}
.y32_c00191{bottom:570.960000px;}
.y30_c00191{bottom:573.120000px;}
.y31_c00191{bottom:573.840000px;}
.y2e_c00191{bottom:613.440000px;}
.y2f_c00191{bottom:614.160000px;}
.y2d_c00191{bottom:617.040000px;}
.y2c_c00191{bottom:617.760000px;}
.y2a_c00191{bottom:657.360000px;}
.y2b_c00191{bottom:658.080000px;}
.y28_c00191{bottom:659.520000px;}
.y29_c00191{bottom:660.240000px;}
.y26_c00191{bottom:700.560000px;}
.y25_c00191{bottom:701.280000px;}
.y27_c00191{bottom:702.720000px;}
.y23_c00191{bottom:703.440000px;}
.y24_c00191{bottom:704.160000px;}
.y20_c00191{bottom:744.480000px;}
.y22_c00191{bottom:746.640000px;}
.y21_c00191{bottom:747.360000px;}
.y1f_c00191{bottom:787.680000px;}
.y1d_c00191{bottom:789.840000px;}
.y1e_c00191{bottom:790.560000px;}
.y1a_c00191{bottom:830.880000px;}
.y1c_c00191{bottom:831.600000px;}
.y19_c00191{bottom:833.040000px;}
.y1b_c00191{bottom:833.760000px;}
.y15_c00191{bottom:873.360000px;}
.y16_c00191{bottom:874.080000px;}
.y18_c00191{bottom:876.240000px;}
.y17_c00191{bottom:876.960000px;}
.y12_c00191{bottom:918.000000px;}
.y14_c00191{bottom:918.720000px;}
.y11_c00191{bottom:919.440000px;}
.y13_c00191{bottom:920.160000px;}
.y10_c00191{bottom:959.760000px;}
.yf_c00191{bottom:960.480000px;}
.ye_c00191{bottom:961.200000px;}
.yc_c00191{bottom:962.640000px;}
.yd_c00191{bottom:963.360000px;}
.ya_c00191{bottom:1003.680000px;}
.y7_c00191{bottom:1004.400000px;}
.yb_c00191{bottom:1005.120000px;}
.y8_c00191{bottom:1005.840000px;}
.y9_c00191{bottom:1006.560000px;}
.y5_c00191{bottom:1045.440000px;}
.y4_c00191{bottom:1046.880000px;}
.y2_c00191{bottom:1047.600000px;}
.y6_c00191{bottom:1048.320000px;}
.y3_c00191{bottom:1049.040000px;}
.y1_c00191{bottom:1089.360000px;}
.hc_c00191{height:20.733750px;}
.ha_c00191{height:31.100625px;}
.he_c00191{height:33.692344px;}
.h10_c00191{height:36.284062px;}
.h11_c00191{height:38.875781px;}
.h5_c00191{height:41.467500px;}
.h7_c00191{height:44.059219px;}
.h3_c00191{height:46.650937px;}
.hf_c00191{height:49.242656px;}
.h9_c00191{height:51.834375px;}
.h8_c00191{height:54.426094px;}
.h4_c00191{height:57.017812px;}
.hb_c00191{height:59.609531px;}
.h6_c00191{height:62.201250px;}
.hd_c00191{height:64.792969px;}
.h2_c00191{height:67.384687px;}
.h1_c00191{height:1151.250000px;}
.h0_c00191{height:1151.280000px;}
.w0_c00191{width:793.440000px;}
.w1_c00191{width:793.500000px;}
.x0_c00191{left:0.000000px;}
.x2_c00191{left:87.120000px;}
.x54_c00191{left:88.560000px;}
.x36_c00191{left:116.640000px;}
.x15_c00191{left:118.800000px;}
.x2b_c00191{left:128.160000px;}
.x42_c00191{left:129.600000px;}
.x5b_c00191{left:138.960000px;}
.xc_c00191{left:140.400000px;}
.x3_c00191{left:151.200000px;}
.x1f_c00191{left:171.360000px;}
.xd_c00191{left:172.800000px;}
.x33_c00191{left:181.440000px;}
.x4f_c00191{left:192.240000px;}
.x4_c00191{left:193.680000px;}
.x2f_c00191{left:203.040000px;}
.x25_c00191{left:204.480000px;}
.x5c_c00191{left:213.840000px;}
.x20_c00191{left:225.360000px;}
.xe_c00191{left:235.440000px;}
.x16_c00191{left:237.600000px;}
.x34_c00191{left:246.960000px;}
.x21_c00191{left:259.200000px;}
.x3b_c00191{left:267.840000px;}
.xf_c00191{left:270.720000px;}
.x4b_c00191{left:278.640000px;}
.x2c_c00191{left:280.080000px;}
.x37_c00191{left:290.160000px;}
.x22_c00191{left:291.600000px;}
.x56_c00191{left:300.960000px;}
.x44_c00191{left:311.760000px;}
.x50_c00191{left:313.200000px;}
.x3c_c00191{left:322.560000px;}
.x5_c00191{left:324.000000px;}
.x30_c00191{left:334.080000px;}
.x17_c00191{left:335.520000px;}
.x38_c00191{left:343.440000px;}
.x26_c00191{left:356.400000px;}
.x6_c00191{left:367.200000px;}
.x18_c00191{left:378.720000px;}
.x45_c00191{left:387.360000px;}
.x10_c00191{left:388.800000px;}
.x3d_c00191{left:398.160000px;}
.x23_c00191{left:399.600000px;}
.x5d_c00191{left:408.240000px;}
.x35_c00191{left:409.680000px;}
.x57_c00191{left:419.760000px;}
.x1c_c00191{left:421.200000px;}
.x52_c00191{left:430.560000px;}
.x7_c00191{left:432.000000px;}
.x46_c00191{left:441.360000px;}
.x3e_c00191{left:451.440000px;}
.x19_c00191{left:453.600000px;}
.x43_c00191{left:462.960000px;}
.x29_c00191{left:475.200000px;}
.x5e_c00191{left:483.840000px;}
.x11_c00191{left:485.280000px;}
.x3f_c00191{left:494.640000px;}
.x8_c00191{left:496.800000px;}
.x2a_c00191{left:506.880000px;}
.x1d_c00191{left:509.040000px;}
.x31_c00191{left:517.680000px;}
.x12_c00191{left:520.560000px;}
.x4c_c00191{left:527.040000px;}
.x1a_c00191{left:529.200000px;}
.x47_c00191{left:538.560000px;}
.x2d_c00191{left:540.000000px;}
.x9_c00191{left:541.440000px;}
.x58_c00191{left:549.360000px;}
.x13_c00191{left:550.800000px;}
.x32_c00191{left:559.440000px;}
.x48_c00191{left:570.240000px;}
.x2e_c00191{left:572.400000px;}
.x59_c00191{left:581.040000px;}
.x51_c00191{left:591.840000px;}
.xa_c00191{left:593.280000px;}
.x39_c00191{left:603.360000px;}
.x40_c00191{left:604.800000px;}
.x4d_c00191{left:612.720000px;}
.x24_c00191{left:614.160000px;}
.x14_c00191{left:615.600000px;}
.x49_c00191{left:624.240000px;}
.x27_c00191{left:625.680000px;}
.x41_c00191{left:635.040000px;}
.x1b_c00191{left:636.480000px;}
.x3a_c00191{left:646.560000px;}
.x53_c00191{left:655.920000px;}
.x4a_c00191{left:657.360000px;}
.xb_c00191{left:659.520000px;}
.x28_c00191{left:667.440000px;}
.x5a_c00191{left:676.080000px;}
.x4e_c00191{left:677.520000px;}
.x1e_c00191{left:680.400000px;}
.x55_c00191{left:687.600000px;}
.x1_c00191{left:710.640000px;}
@media print{
.v0_c00191{vertical-align:0.000000pt;}
.ls0_c00191{letter-spacing:0.000000pt;}
.ws0_c00191{word-spacing:-6.115200pt;}
.ws1_c00191{word-spacing:0.000000pt;}
.fsa_c00191{font-size:20.480000pt;}
.fs8_c00191{font-size:30.720000pt;}
.fsc_c00191{font-size:33.280000pt;}
.fse_c00191{font-size:35.840000pt;}
.fsf_c00191{font-size:38.400000pt;}
.fs3_c00191{font-size:40.960000pt;}
.fs5_c00191{font-size:43.520000pt;}
.fs1_c00191{font-size:46.080000pt;}
.fsd_c00191{font-size:48.640000pt;}
.fs7_c00191{font-size:51.200000pt;}
.fs6_c00191{font-size:53.760000pt;}
.fs2_c00191{font-size:56.320000pt;}
.fs9_c00191{font-size:58.880000pt;}
.fs4_c00191{font-size:61.440000pt;}
.fsb_c00191{font-size:64.000000pt;}
.fs0_c00191{font-size:66.560000pt;}
.y0_c00191{bottom:0.000000pt;}
.y6e_c00191{bottom:32.000000pt;}
.y6c_c00191{bottom:64.640000pt;}
.y69_c00191{bottom:66.560000pt;}
.y6b_c00191{bottom:67.200000pt;}
.y6d_c00191{bottom:67.840000pt;}
.y6a_c00191{bottom:68.480000pt;}
.y68_c00191{bottom:70.400000pt;}
.y67_c00191{bottom:104.320000pt;}
.y64_c00191{bottom:104.960000pt;}
.y66_c00191{bottom:105.600000pt;}
.y65_c00191{bottom:106.880000pt;}
.y63_c00191{bottom:108.160000pt;}
.y61_c00191{bottom:142.080000pt;}
.y60_c00191{bottom:142.720000pt;}
.y62_c00191{bottom:144.000000pt;}
.y5f_c00191{bottom:145.920000pt;}
.y5c_c00191{bottom:180.480000pt;}
.y5b_c00191{bottom:182.400000pt;}
.y5a_c00191{bottom:183.040000pt;}
.y5d_c00191{bottom:183.680000pt;}
.y59_c00191{bottom:184.320000pt;}
.y5e_c00191{bottom:184.960000pt;}
.y58_c00191{bottom:185.600000pt;}
.y57_c00191{bottom:220.800000pt;}
.y56_c00191{bottom:221.440000pt;}
.y55_c00191{bottom:222.080000pt;}
.y54_c00191{bottom:222.720000pt;}
.y53_c00191{bottom:223.360000pt;}
.y50_c00191{bottom:257.920000pt;}
.y4f_c00191{bottom:258.560000pt;}
.y4e_c00191{bottom:259.840000pt;}
.y51_c00191{bottom:260.480000pt;}
.y52_c00191{bottom:261.120000pt;}
.y4a_c00191{bottom:295.040000pt;}
.y48_c00191{bottom:296.320000pt;}
.y49_c00191{bottom:296.960000pt;}
.y47_c00191{bottom:297.600000pt;}
.y4b_c00191{bottom:298.240000pt;}
.y4c_c00191{bottom:298.880000pt;}
.y46_c00191{bottom:299.520000pt;}
.y4d_c00191{bottom:300.160000pt;}
.y43_c00191{bottom:334.720000pt;}
.y40_c00191{bottom:335.360000pt;}
.y45_c00191{bottom:336.000000pt;}
.y42_c00191{bottom:336.640000pt;}
.y41_c00191{bottom:337.280000pt;}
.y44_c00191{bottom:337.920000pt;}
.y3f_c00191{bottom:338.560000pt;}
.y3e_c00191{bottom:375.040000pt;}
.y3d_c00191{bottom:375.680000pt;}
.y3c_c00191{bottom:376.320000pt;}
.y39_c00191{bottom:419.840000pt;}
.y3b_c00191{bottom:421.120000pt;}
.y3a_c00191{bottom:423.040000pt;}
.y38_c00191{bottom:423.680000pt;}
.y37_c00191{bottom:424.960000pt;}
.y35_c00191{bottom:458.880000pt;}
.y36_c00191{bottom:460.160000pt;}
.y34_c00191{bottom:461.440000pt;}
.y33_c00191{bottom:462.080000pt;}
.y32_c00191{bottom:507.520000pt;}
.y30_c00191{bottom:509.440000pt;}
.y31_c00191{bottom:510.080000pt;}
.y2e_c00191{bottom:545.280000pt;}
.y2f_c00191{bottom:545.920000pt;}
.y2d_c00191{bottom:548.480000pt;}
.y2c_c00191{bottom:549.120000pt;}
.y2a_c00191{bottom:584.320000pt;}
.y2b_c00191{bottom:584.960000pt;}
.y28_c00191{bottom:586.240000pt;}
.y29_c00191{bottom:586.880000pt;}
.y26_c00191{bottom:622.720000pt;}
.y25_c00191{bottom:623.360000pt;}
.y27_c00191{bottom:624.640000pt;}
.y23_c00191{bottom:625.280000pt;}
.y24_c00191{bottom:625.920000pt;}
.y20_c00191{bottom:661.760000pt;}
.y22_c00191{bottom:663.680000pt;}
.y21_c00191{bottom:664.320000pt;}
.y1f_c00191{bottom:700.160000pt;}
.y1d_c00191{bottom:702.080000pt;}
.y1e_c00191{bottom:702.720000pt;}
.y1a_c00191{bottom:738.560000pt;}
.y1c_c00191{bottom:739.200000pt;}
.y19_c00191{bottom:740.480000pt;}
.y1b_c00191{bottom:741.120000pt;}
.y15_c00191{bottom:776.320000pt;}
.y16_c00191{bottom:776.960000pt;}
.y18_c00191{bottom:778.880000pt;}
.y17_c00191{bottom:779.520000pt;}
.y12_c00191{bottom:816.000000pt;}
.y14_c00191{bottom:816.640000pt;}
.y11_c00191{bottom:817.280000pt;}
.y13_c00191{bottom:817.920000pt;}
.y10_c00191{bottom:853.120000pt;}
.yf_c00191{bottom:853.760000pt;}
.ye_c00191{bottom:854.400000pt;}
.yc_c00191{bottom:855.680000pt;}
.yd_c00191{bottom:856.320000pt;}
.ya_c00191{bottom:892.160000pt;}
.y7_c00191{bottom:892.800000pt;}
.yb_c00191{bottom:893.440000pt;}
.y8_c00191{bottom:894.080000pt;}
.y9_c00191{bottom:894.720000pt;}
.y5_c00191{bottom:929.280000pt;}
.y4_c00191{bottom:930.560000pt;}
.y2_c00191{bottom:931.200000pt;}
.y6_c00191{bottom:931.840000pt;}
.y3_c00191{bottom:932.480000pt;}
.y1_c00191{bottom:968.320000pt;}
.hc_c00191{height:18.430000pt;}
.ha_c00191{height:27.645000pt;}
.he_c00191{height:29.948750pt;}
.h10_c00191{height:32.252500pt;}
.h11_c00191{height:34.556250pt;}
.h5_c00191{height:36.860000pt;}
.h7_c00191{height:39.163750pt;}
.h3_c00191{height:41.467500pt;}
.hf_c00191{height:43.771250pt;}
.h9_c00191{height:46.075000pt;}
.h8_c00191{height:48.378750pt;}
.h4_c00191{height:50.682500pt;}
.hb_c00191{height:52.986250pt;}
.h6_c00191{height:55.290000pt;}
.hd_c00191{height:57.593750pt;}
.h2_c00191{height:59.897500pt;}
.h1_c00191{height:1023.333333pt;}
.h0_c00191{height:1023.360000pt;}
.w0_c00191{width:705.280000pt;}
.w1_c00191{width:705.333333pt;}
.x0_c00191{left:0.000000pt;}
.x2_c00191{left:77.440000pt;}
.x54_c00191{left:78.720000pt;}
.x36_c00191{left:103.680000pt;}
.x15_c00191{left:105.600000pt;}
.x2b_c00191{left:113.920000pt;}
.x42_c00191{left:115.200000pt;}
.x5b_c00191{left:123.520000pt;}
.xc_c00191{left:124.800000pt;}
.x3_c00191{left:134.400000pt;}
.x1f_c00191{left:152.320000pt;}
.xd_c00191{left:153.600000pt;}
.x33_c00191{left:161.280000pt;}
.x4f_c00191{left:170.880000pt;}
.x4_c00191{left:172.160000pt;}
.x2f_c00191{left:180.480000pt;}
.x25_c00191{left:181.760000pt;}
.x5c_c00191{left:190.080000pt;}
.x20_c00191{left:200.320000pt;}
.xe_c00191{left:209.280000pt;}
.x16_c00191{left:211.200000pt;}
.x34_c00191{left:219.520000pt;}
.x21_c00191{left:230.400000pt;}
.x3b_c00191{left:238.080000pt;}
.xf_c00191{left:240.640000pt;}
.x4b_c00191{left:247.680000pt;}
.x2c_c00191{left:248.960000pt;}
.x37_c00191{left:257.920000pt;}
.x22_c00191{left:259.200000pt;}
.x56_c00191{left:267.520000pt;}
.x44_c00191{left:277.120000pt;}
.x50_c00191{left:278.400000pt;}
.x3c_c00191{left:286.720000pt;}
.x5_c00191{left:288.000000pt;}
.x30_c00191{left:296.960000pt;}
.x17_c00191{left:298.240000pt;}
.x38_c00191{left:305.280000pt;}
.x26_c00191{left:316.800000pt;}
.x6_c00191{left:326.400000pt;}
.x18_c00191{left:336.640000pt;}
.x45_c00191{left:344.320000pt;}
.x10_c00191{left:345.600000pt;}
.x3d_c00191{left:353.920000pt;}
.x23_c00191{left:355.200000pt;}
.x5d_c00191{left:362.880000pt;}
.x35_c00191{left:364.160000pt;}
.x57_c00191{left:373.120000pt;}
.x1c_c00191{left:374.400000pt;}
.x52_c00191{left:382.720000pt;}
.x7_c00191{left:384.000000pt;}
.x46_c00191{left:392.320000pt;}
.x3e_c00191{left:401.280000pt;}
.x19_c00191{left:403.200000pt;}
.x43_c00191{left:411.520000pt;}
.x29_c00191{left:422.400000pt;}
.x5e_c00191{left:430.080000pt;}
.x11_c00191{left:431.360000pt;}
.x3f_c00191{left:439.680000pt;}
.x8_c00191{left:441.600000pt;}
.x2a_c00191{left:450.560000pt;}
.x1d_c00191{left:452.480000pt;}
.x31_c00191{left:460.160000pt;}
.x12_c00191{left:462.720000pt;}
.x4c_c00191{left:468.480000pt;}
.x1a_c00191{left:470.400000pt;}
.x47_c00191{left:478.720000pt;}
.x2d_c00191{left:480.000000pt;}
.x9_c00191{left:481.280000pt;}
.x58_c00191{left:488.320000pt;}
.x13_c00191{left:489.600000pt;}
.x32_c00191{left:497.280000pt;}
.x48_c00191{left:506.880000pt;}
.x2e_c00191{left:508.800000pt;}
.x59_c00191{left:516.480000pt;}
.x51_c00191{left:526.080000pt;}
.xa_c00191{left:527.360000pt;}
.x39_c00191{left:536.320000pt;}
.x40_c00191{left:537.600000pt;}
.x4d_c00191{left:544.640000pt;}
.x24_c00191{left:545.920000pt;}
.x14_c00191{left:547.200000pt;}
.x49_c00191{left:554.880000pt;}
.x27_c00191{left:556.160000pt;}
.x41_c00191{left:564.480000pt;}
.x1b_c00191{left:565.760000pt;}
.x3a_c00191{left:574.720000pt;}
.x53_c00191{left:583.040000pt;}
.x4a_c00191{left:584.320000pt;}
.xb_c00191{left:586.240000pt;}
.x28_c00191{left:593.280000pt;}
.x5a_c00191{left:600.960000pt;}
.x4e_c00191{left:602.240000pt;}
.x1e_c00191{left:604.800000pt;}
.x55_c00191{left:611.200000pt;}
.x1_c00191{left:631.680000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9afed9abf0ab412310493c95.woff2')format("woff");}.ff1_c00192{font-family:ff1_c00192;line-height:1.109863;font-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_c00192{transform:matrix(0.227625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227625,0.000000,0.000000,0.250000,0,0);}
.m4d_c00192{transform:matrix(0.246050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246050,0.000000,0.000000,0.250000,0,0);}
.m22_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);}
.m2e_c00192{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);}
.m4c_c00192{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m50_c00192{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m13_c00192{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m26_c00192{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m56_c00192{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00192{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m53_c00192{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m38_c00192{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m45_c00192{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00192{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m23_c00192{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m11_c00192{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m20_c00192{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m25_c00192{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m35_c00192{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00192{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m52_c00192{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m0_c00192{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.mb_c00192{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);}
.m32_c00192{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00192{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00192{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);}
.m49_c00192{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m2_c00192{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);}
.m3a_c00192{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m17_c00192{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m15_c00192{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);}
.m39_c00192{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m33_c00192{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00192{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m5_c00192{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m6_c00192{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.me_c00192{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);}
.mf_c00192{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00192{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);}
.m2a_c00192{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);}
.m55_c00192{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m10_c00192{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m43_c00192{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);}
.m2d_c00192{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m12_c00192{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);}
.m1_c00192{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m4_c00192{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);}
.m3_c00192{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00192{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m44_c00192{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m48_c00192{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m46_c00192{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);}
.m37_c00192{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);}
.m2f_c00192{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.md_c00192{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m42_c00192{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);}
.m24_c00192{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m27_c00192{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00192{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m31_c00192{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);}
.m3b_c00192{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m28_c00192{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m36_c00192{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00192{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m21_c00192{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);}
.m41_c00192{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);}
.m14_c00192{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m29_c00192{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00192{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m8_c00192{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);}
.m19_c00192{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m30_c00192{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.mc_c00192{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m40_c00192{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);}
.m51_c00192{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00192{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m9_c00192{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00192{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m16_c00192{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);}
.m3e_c00192{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);}
.ma_c00192{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m54_c00192{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m47_c00192{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);}
.m34_c00192{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);}
.m4b_c00192{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);}
.m7_c00192{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00192{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);}
.v3_c00192{vertical-align:-2.880000px;}
.v0_c00192{vertical-align:0.000000px;}
.v1_c00192{vertical-align:2.880000px;}
.v2_c00192{vertical-align:8.640000px;}
.ls0_c00192{letter-spacing:0.000000px;}
.sc__c00192{text-shadow:none;}
.sc0_c00192{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00192{-webkit-text-stroke:0px transparent;}
.sc0_c00192{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00192{word-spacing:-10.620000px;}
.ws0_c00192{word-spacing:-1.484400px;}
.ws3_c00192{word-spacing:0.000000px;}
.ws1_c00192{word-spacing:10.778160px;}
.fc0_c00192{color:transparent;}
.fs7_c00192{font-size:34.560000px;}
.fs6_c00192{font-size:37.440000px;}
.fsc_c00192{font-size:40.320000px;}
.fs8_c00192{font-size:43.200000px;}
.fsf_c00192{font-size:46.080000px;}
.fsa_c00192{font-size:48.960000px;}
.fs4_c00192{font-size:51.840000px;}
.fs2_c00192{font-size:54.720000px;}
.fs3_c00192{font-size:57.600000px;}
.fs1_c00192{font-size:60.480000px;}
.fs5_c00192{font-size:63.360000px;}
.fsb_c00192{font-size:66.240000px;}
.fs9_c00192{font-size:69.120000px;}
.fsd_c00192{font-size:72.000000px;}
.fse_c00192{font-size:74.880000px;}
.fs0_c00192{font-size:77.760000px;}
.y0_c00192{bottom:0.000000px;}
.y67_c00192{bottom:112.320000px;}
.y66_c00192{bottom:115.200000px;}
.y64_c00192{bottom:153.360000px;}
.y63_c00192{bottom:156.240000px;}
.y62_c00192{bottom:156.960000px;}
.y65_c00192{bottom:157.680000px;}
.y61_c00192{bottom:158.400000px;}
.y5e_c00192{bottom:196.560000px;}
.y5f_c00192{bottom:197.280000px;}
.y5c_c00192{bottom:198.720000px;}
.y5d_c00192{bottom:199.440000px;}
.y5b_c00192{bottom:200.160000px;}
.y5a_c00192{bottom:200.880000px;}
.y60_c00192{bottom:201.600000px;}
.y55_c00192{bottom:239.760000px;}
.y58_c00192{bottom:240.480000px;}
.y57_c00192{bottom:242.640000px;}
.y56_c00192{bottom:243.360000px;}
.y54_c00192{bottom:244.080000px;}
.y59_c00192{bottom:244.800000px;}
.y50_c00192{bottom:281.520000px;}
.y51_c00192{bottom:282.960000px;}
.y52_c00192{bottom:285.120000px;}
.y53_c00192{bottom:285.840000px;}
.y4f_c00192{bottom:286.560000px;}
.y4e_c00192{bottom:287.280000px;}
.y4c_c00192{bottom:326.160000px;}
.y4d_c00192{bottom:328.320000px;}
.y4b_c00192{bottom:329.040000px;}
.y4a_c00192{bottom:329.760000px;}
.y47_c00192{bottom:368.640000px;}
.y46_c00192{bottom:369.360000px;}
.y49_c00192{bottom:370.080000px;}
.y45_c00192{bottom:372.240000px;}
.y48_c00192{bottom:372.960000px;}
.y44_c00192{bottom:426.240000px;}
.y3f_c00192{bottom:466.560000px;}
.y43_c00192{bottom:467.280000px;}
.y40_c00192{bottom:468.000000px;}
.y42_c00192{bottom:468.720000px;}
.y41_c00192{bottom:469.440000px;}
.y3e_c00192{bottom:511.920000px;}
.y3d_c00192{bottom:512.640000px;}
.y3c_c00192{bottom:513.360000px;}
.y3a_c00192{bottom:552.960000px;}
.y39_c00192{bottom:553.680000px;}
.y3b_c00192{bottom:555.120000px;}
.y38_c00192{bottom:555.840000px;}
.y34_c00192{bottom:596.160000px;}
.y35_c00192{bottom:596.880000px;}
.y37_c00192{bottom:599.040000px;}
.y36_c00192{bottom:599.760000px;}
.y31_c00192{bottom:640.080000px;}
.y32_c00192{bottom:642.240000px;}
.y33_c00192{bottom:642.960000px;}
.y30_c00192{bottom:681.120000px;}
.y2f_c00192{bottom:682.560000px;}
.y2e_c00192{bottom:684.720000px;}
.y2d_c00192{bottom:685.440000px;}
.y2c_c00192{bottom:725.040000px;}
.y27_c00192{bottom:725.760000px;}
.y28_c00192{bottom:726.480000px;}
.y2b_c00192{bottom:727.200000px;}
.y2a_c00192{bottom:727.920000px;}
.y29_c00192{bottom:728.640000px;}
.y22_c00192{bottom:767.520000px;}
.y26_c00192{bottom:769.680000px;}
.y25_c00192{bottom:770.400000px;}
.y24_c00192{bottom:771.120000px;}
.y23_c00192{bottom:771.840000px;}
.y1f_c00192{bottom:810.720000px;}
.y1d_c00192{bottom:811.440000px;}
.y20_c00192{bottom:812.160000px;}
.y1c_c00192{bottom:812.880000px;}
.y21_c00192{bottom:813.600000px;}
.y1e_c00192{bottom:814.320000px;}
.y18_c00192{bottom:853.200000px;}
.y1b_c00192{bottom:853.920000px;}
.y19_c00192{bottom:854.640000px;}
.y17_c00192{bottom:856.800000px;}
.y1a_c00192{bottom:858.240000px;}
.y15_c00192{bottom:897.120000px;}
.y14_c00192{bottom:897.840000px;}
.y16_c00192{bottom:898.560000px;}
.y11_c00192{bottom:899.280000px;}
.y12_c00192{bottom:900.000000px;}
.y13_c00192{bottom:900.720000px;}
.yd_c00192{bottom:939.600000px;}
.yf_c00192{bottom:940.320000px;}
.yc_c00192{bottom:941.040000px;}
.y10_c00192{bottom:941.760000px;}
.yb_c00192{bottom:942.480000px;}
.ye_c00192{bottom:943.200000px;}
.ya_c00192{bottom:982.800000px;}
.y6_c00192{bottom:984.240000px;}
.y9_c00192{bottom:985.680000px;}
.y5_c00192{bottom:986.400000px;}
.y7_c00192{bottom:987.120000px;}
.y8_c00192{bottom:987.840000px;}
.y4_c00192{bottom:1050.480000px;}
.y3_c00192{bottom:1051.200000px;}
.y2_c00192{bottom:1051.920000px;}
.y1_c00192{bottom:1097.280000px;}
.h9_c00192{height:31.100625px;}
.h8_c00192{height:33.692344px;}
.hf_c00192{height:36.284062px;}
.ha_c00192{height:38.875781px;}
.h13_c00192{height:41.467500px;}
.hc_c00192{height:44.059219px;}
.h6_c00192{height:46.650937px;}
.h4_c00192{height:49.242656px;}
.h5_c00192{height:51.834375px;}
.hd_c00192{height:52.122656px;}
.h3_c00192{height:54.426094px;}
.h7_c00192{height:57.017812px;}
.he_c00192{height:59.609531px;}
.hb_c00192{height:62.201250px;}
.h12_c00192{height:63.066094px;}
.h10_c00192{height:64.792969px;}
.h11_c00192{height:67.384687px;}
.h2_c00192{height:69.976406px;}
.h1_c00192{height:1149.750000px;}
.h0_c00192{height:1149.840000px;}
.w1_c00192{width:790.500000px;}
.w0_c00192{width:790.560000px;}
.x0_c00192{left:0.000000px;}
.x38_c00192{left:77.760000px;}
.xe_c00192{left:82.800000px;}
.x16_c00192{left:84.240000px;}
.x1f_c00192{left:114.480000px;}
.x48_c00192{left:115.920000px;}
.xf_c00192{left:125.280000px;}
.x30_c00192{left:136.080000px;}
.x3c_c00192{left:157.680000px;}
.x10_c00192{left:168.480000px;}
.x35_c00192{left:180.000000px;}
.x6_c00192{left:190.080000px;}
.x20_c00192{left:200.160000px;}
.x24_c00192{left:211.680000px;}
.x42_c00192{left:221.760000px;}
.x1b_c00192{left:223.200000px;}
.x4a_c00192{left:232.560000px;}
.x11_c00192{left:234.000000px;}
.x4c_c00192{left:242.640000px;}
.x2_c00192{left:244.800000px;}
.x1c_c00192{left:254.880000px;}
.x39_c00192{left:265.680000px;}
.x36_c00192{left:276.480000px;}
.x7_c00192{left:278.640000px;}
.x21_c00192{left:287.280000px;}
.x3b_c00192{left:298.080000px;}
.x12_c00192{left:309.600000px;}
.x25_c00192{left:311.040000px;}
.x4d_c00192{left:319.680000px;}
.x17_c00192{left:331.200000px;}
.x22_c00192{left:332.640000px;}
.x3_c00192{left:342.000000px;}
.x23_c00192{left:352.800000px;}
.x18_c00192{left:363.600000px;}
.x2c_c00192{left:373.680000px;}
.x4_c00192{left:375.120000px;}
.x8_c00192{left:385.200000px;}
.x13_c00192{left:396.000000px;}
.x43_c00192{left:408.240000px;}
.x5_c00192{left:416.880000px;}
.x26_c00192{left:427.680000px;}
.x31_c00192{left:429.120000px;}
.x9_c00192{left:438.480000px;}
.x14_c00192{left:439.920000px;}
.x32_c00192{left:460.080000px;}
.xa_c00192{left:473.040000px;}
.x27_c00192{left:481.680000px;}
.x3d_c00192{left:483.120000px;}
.x4b_c00192{left:493.200000px;}
.xb_c00192{left:494.640000px;}
.x19_c00192{left:504.000000px;}
.x2d_c00192{left:514.080000px;}
.x37_c00192{left:516.960000px;}
.x28_c00192{left:525.600000px;}
.x40_c00192{left:535.680000px;}
.xc_c00192{left:537.120000px;}
.x1a_c00192{left:547.200000px;}
.x33_c00192{left:555.120000px;}
.x29_c00192{left:557.280000px;}
.x4e_c00192{left:566.640000px;}
.xd_c00192{left:569.520000px;}
.x1d_c00192{left:579.600000px;}
.x46_c00192{left:588.960000px;}
.x2a_c00192{left:600.480000px;}
.x4f_c00192{left:609.120000px;}
.x1e_c00192{left:611.280000px;}
.x3e_c00192{left:622.080000px;}
.x44_c00192{left:630.720000px;}
.x3a_c00192{left:632.880000px;}
.x47_c00192{left:651.600000px;}
.x3f_c00192{left:653.040000px;}
.x15_c00192{left:654.480000px;}
.x41_c00192{left:663.840000px;}
.x2e_c00192{left:665.280000px;}
.x45_c00192{left:673.920000px;}
.x2b_c00192{left:676.800000px;}
.x2f_c00192{left:686.880000px;}
.x49_c00192{left:695.520000px;}
.x34_c00192{left:696.960000px;}
.x1_c00192{left:707.760000px;}
@media print{
.v3_c00192{vertical-align:-2.560000pt;}
.v0_c00192{vertical-align:0.000000pt;}
.v1_c00192{vertical-align:2.560000pt;}
.v2_c00192{vertical-align:7.680000pt;}
.ls0_c00192{letter-spacing:0.000000pt;}
.ws2_c00192{word-spacing:-9.440000pt;}
.ws0_c00192{word-spacing:-1.319467pt;}
.ws3_c00192{word-spacing:0.000000pt;}
.ws1_c00192{word-spacing:9.580587pt;}
.fs7_c00192{font-size:30.720000pt;}
.fs6_c00192{font-size:33.280000pt;}
.fsc_c00192{font-size:35.840000pt;}
.fs8_c00192{font-size:38.400000pt;}
.fsf_c00192{font-size:40.960000pt;}
.fsa_c00192{font-size:43.520000pt;}
.fs4_c00192{font-size:46.080000pt;}
.fs2_c00192{font-size:48.640000pt;}
.fs3_c00192{font-size:51.200000pt;}
.fs1_c00192{font-size:53.760000pt;}
.fs5_c00192{font-size:56.320000pt;}
.fsb_c00192{font-size:58.880000pt;}
.fs9_c00192{font-size:61.440000pt;}
.fsd_c00192{font-size:64.000000pt;}
.fse_c00192{font-size:66.560000pt;}
.fs0_c00192{font-size:69.120000pt;}
.y0_c00192{bottom:0.000000pt;}
.y67_c00192{bottom:99.840000pt;}
.y66_c00192{bottom:102.400000pt;}
.y64_c00192{bottom:136.320000pt;}
.y63_c00192{bottom:138.880000pt;}
.y62_c00192{bottom:139.520000pt;}
.y65_c00192{bottom:140.160000pt;}
.y61_c00192{bottom:140.800000pt;}
.y5e_c00192{bottom:174.720000pt;}
.y5f_c00192{bottom:175.360000pt;}
.y5c_c00192{bottom:176.640000pt;}
.y5d_c00192{bottom:177.280000pt;}
.y5b_c00192{bottom:177.920000pt;}
.y5a_c00192{bottom:178.560000pt;}
.y60_c00192{bottom:179.200000pt;}
.y55_c00192{bottom:213.120000pt;}
.y58_c00192{bottom:213.760000pt;}
.y57_c00192{bottom:215.680000pt;}
.y56_c00192{bottom:216.320000pt;}
.y54_c00192{bottom:216.960000pt;}
.y59_c00192{bottom:217.600000pt;}
.y50_c00192{bottom:250.240000pt;}
.y51_c00192{bottom:251.520000pt;}
.y52_c00192{bottom:253.440000pt;}
.y53_c00192{bottom:254.080000pt;}
.y4f_c00192{bottom:254.720000pt;}
.y4e_c00192{bottom:255.360000pt;}
.y4c_c00192{bottom:289.920000pt;}
.y4d_c00192{bottom:291.840000pt;}
.y4b_c00192{bottom:292.480000pt;}
.y4a_c00192{bottom:293.120000pt;}
.y47_c00192{bottom:327.680000pt;}
.y46_c00192{bottom:328.320000pt;}
.y49_c00192{bottom:328.960000pt;}
.y45_c00192{bottom:330.880000pt;}
.y48_c00192{bottom:331.520000pt;}
.y44_c00192{bottom:378.880000pt;}
.y3f_c00192{bottom:414.720000pt;}
.y43_c00192{bottom:415.360000pt;}
.y40_c00192{bottom:416.000000pt;}
.y42_c00192{bottom:416.640000pt;}
.y41_c00192{bottom:417.280000pt;}
.y3e_c00192{bottom:455.040000pt;}
.y3d_c00192{bottom:455.680000pt;}
.y3c_c00192{bottom:456.320000pt;}
.y3a_c00192{bottom:491.520000pt;}
.y39_c00192{bottom:492.160000pt;}
.y3b_c00192{bottom:493.440000pt;}
.y38_c00192{bottom:494.080000pt;}
.y34_c00192{bottom:529.920000pt;}
.y35_c00192{bottom:530.560000pt;}
.y37_c00192{bottom:532.480000pt;}
.y36_c00192{bottom:533.120000pt;}
.y31_c00192{bottom:568.960000pt;}
.y32_c00192{bottom:570.880000pt;}
.y33_c00192{bottom:571.520000pt;}
.y30_c00192{bottom:605.440000pt;}
.y2f_c00192{bottom:606.720000pt;}
.y2e_c00192{bottom:608.640000pt;}
.y2d_c00192{bottom:609.280000pt;}
.y2c_c00192{bottom:644.480000pt;}
.y27_c00192{bottom:645.120000pt;}
.y28_c00192{bottom:645.760000pt;}
.y2b_c00192{bottom:646.400000pt;}
.y2a_c00192{bottom:647.040000pt;}
.y29_c00192{bottom:647.680000pt;}
.y22_c00192{bottom:682.240000pt;}
.y26_c00192{bottom:684.160000pt;}
.y25_c00192{bottom:684.800000pt;}
.y24_c00192{bottom:685.440000pt;}
.y23_c00192{bottom:686.080000pt;}
.y1f_c00192{bottom:720.640000pt;}
.y1d_c00192{bottom:721.280000pt;}
.y20_c00192{bottom:721.920000pt;}
.y1c_c00192{bottom:722.560000pt;}
.y21_c00192{bottom:723.200000pt;}
.y1e_c00192{bottom:723.840000pt;}
.y18_c00192{bottom:758.400000pt;}
.y1b_c00192{bottom:759.040000pt;}
.y19_c00192{bottom:759.680000pt;}
.y17_c00192{bottom:761.600000pt;}
.y1a_c00192{bottom:762.880000pt;}
.y15_c00192{bottom:797.440000pt;}
.y14_c00192{bottom:798.080000pt;}
.y16_c00192{bottom:798.720000pt;}
.y11_c00192{bottom:799.360000pt;}
.y12_c00192{bottom:800.000000pt;}
.y13_c00192{bottom:800.640000pt;}
.yd_c00192{bottom:835.200000pt;}
.yf_c00192{bottom:835.840000pt;}
.yc_c00192{bottom:836.480000pt;}
.y10_c00192{bottom:837.120000pt;}
.yb_c00192{bottom:837.760000pt;}
.ye_c00192{bottom:838.400000pt;}
.ya_c00192{bottom:873.600000pt;}
.y6_c00192{bottom:874.880000pt;}
.y9_c00192{bottom:876.160000pt;}
.y5_c00192{bottom:876.800000pt;}
.y7_c00192{bottom:877.440000pt;}
.y8_c00192{bottom:878.080000pt;}
.y4_c00192{bottom:933.760000pt;}
.y3_c00192{bottom:934.400000pt;}
.y2_c00192{bottom:935.040000pt;}
.y1_c00192{bottom:975.360000pt;}
.h9_c00192{height:27.645000pt;}
.h8_c00192{height:29.948750pt;}
.hf_c00192{height:32.252500pt;}
.ha_c00192{height:34.556250pt;}
.h13_c00192{height:36.860000pt;}
.hc_c00192{height:39.163750pt;}
.h6_c00192{height:41.467500pt;}
.h4_c00192{height:43.771250pt;}
.h5_c00192{height:46.075000pt;}
.hd_c00192{height:46.331250pt;}
.h3_c00192{height:48.378750pt;}
.h7_c00192{height:50.682500pt;}
.he_c00192{height:52.986250pt;}
.hb_c00192{height:55.290000pt;}
.h12_c00192{height:56.058750pt;}
.h10_c00192{height:57.593750pt;}
.h11_c00192{height:59.897500pt;}
.h2_c00192{height:62.201250pt;}
.h1_c00192{height:1022.000000pt;}
.h0_c00192{height:1022.080000pt;}
.w1_c00192{width:702.666667pt;}
.w0_c00192{width:702.720000pt;}
.x0_c00192{left:0.000000pt;}
.x38_c00192{left:69.120000pt;}
.xe_c00192{left:73.600000pt;}
.x16_c00192{left:74.880000pt;}
.x1f_c00192{left:101.760000pt;}
.x48_c00192{left:103.040000pt;}
.xf_c00192{left:111.360000pt;}
.x30_c00192{left:120.960000pt;}
.x3c_c00192{left:140.160000pt;}
.x10_c00192{left:149.760000pt;}
.x35_c00192{left:160.000000pt;}
.x6_c00192{left:168.960000pt;}
.x20_c00192{left:177.920000pt;}
.x24_c00192{left:188.160000pt;}
.x42_c00192{left:197.120000pt;}
.x1b_c00192{left:198.400000pt;}
.x4a_c00192{left:206.720000pt;}
.x11_c00192{left:208.000000pt;}
.x4c_c00192{left:215.680000pt;}
.x2_c00192{left:217.600000pt;}
.x1c_c00192{left:226.560000pt;}
.x39_c00192{left:236.160000pt;}
.x36_c00192{left:245.760000pt;}
.x7_c00192{left:247.680000pt;}
.x21_c00192{left:255.360000pt;}
.x3b_c00192{left:264.960000pt;}
.x12_c00192{left:275.200000pt;}
.x25_c00192{left:276.480000pt;}
.x4d_c00192{left:284.160000pt;}
.x17_c00192{left:294.400000pt;}
.x22_c00192{left:295.680000pt;}
.x3_c00192{left:304.000000pt;}
.x23_c00192{left:313.600000pt;}
.x18_c00192{left:323.200000pt;}
.x2c_c00192{left:332.160000pt;}
.x4_c00192{left:333.440000pt;}
.x8_c00192{left:342.400000pt;}
.x13_c00192{left:352.000000pt;}
.x43_c00192{left:362.880000pt;}
.x5_c00192{left:370.560000pt;}
.x26_c00192{left:380.160000pt;}
.x31_c00192{left:381.440000pt;}
.x9_c00192{left:389.760000pt;}
.x14_c00192{left:391.040000pt;}
.x32_c00192{left:408.960000pt;}
.xa_c00192{left:420.480000pt;}
.x27_c00192{left:428.160000pt;}
.x3d_c00192{left:429.440000pt;}
.x4b_c00192{left:438.400000pt;}
.xb_c00192{left:439.680000pt;}
.x19_c00192{left:448.000000pt;}
.x2d_c00192{left:456.960000pt;}
.x37_c00192{left:459.520000pt;}
.x28_c00192{left:467.200000pt;}
.x40_c00192{left:476.160000pt;}
.xc_c00192{left:477.440000pt;}
.x1a_c00192{left:486.400000pt;}
.x33_c00192{left:493.440000pt;}
.x29_c00192{left:495.360000pt;}
.x4e_c00192{left:503.680000pt;}
.xd_c00192{left:506.240000pt;}
.x1d_c00192{left:515.200000pt;}
.x46_c00192{left:523.520000pt;}
.x2a_c00192{left:533.760000pt;}
.x4f_c00192{left:541.440000pt;}
.x1e_c00192{left:543.360000pt;}
.x3e_c00192{left:552.960000pt;}
.x44_c00192{left:560.640000pt;}
.x3a_c00192{left:562.560000pt;}
.x47_c00192{left:579.200000pt;}
.x3f_c00192{left:580.480000pt;}
.x15_c00192{left:581.760000pt;}
.x41_c00192{left:590.080000pt;}
.x2e_c00192{left:591.360000pt;}
.x45_c00192{left:599.040000pt;}
.x2b_c00192{left:601.600000pt;}
.x2f_c00192{left:610.560000pt;}
.x49_c00192{left:618.240000pt;}
.x34_c00192{left:619.520000pt;}
.x1_c00192{left:629.120000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b046ded0ff6b42de9840ebad.woff2')format("woff");}.ff1_c00193{font-family:ff1_c00193;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5a_c00193{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m44_c00193{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);}
.m5f_c00193{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);}
.m5d_c00193{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m25_c00193{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m59_c00193{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m55_c00193{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m42_c00193{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m52_c00193{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m49_c00193{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m12_c00193{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m17_c00193{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m30_c00193{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00193{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00193{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m29_c00193{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m6_c00193{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);}
.m36_c00193{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.ma_c00193{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m0_c00193{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);}
.m56_c00193{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);}
.m43_c00193{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00193{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);}
.m39_c00193{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.mb_c00193{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);}
.m5c_c00193{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m41_c00193{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00193{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);}
.m3a_c00193{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m22_c00193{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m10_c00193{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);}
.mc_c00193{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);}
.m1f_c00193{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);}
.m14_c00193{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m37_c00193{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);}
.m47_c00193{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m7_c00193{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m16_c00193{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);}
.m24_c00193{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);}
.m4e_c00193{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m1_c00193{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m54_c00193{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m15_c00193{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);}
.m21_c00193{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m28_c00193{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);}
.m38_c00193{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.mf_c00193{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);}
.m3_c00193{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);}
.m31_c00193{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m26_c00193{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m45_c00193{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00193{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m46_c00193{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);}
.m4d_c00193{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m2_c00193{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00193{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);}
.m34_c00193{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m5_c00193{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);}
.m2d_c00193{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m60_c00193{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00193{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00193{transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);}
.m57_c00193{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m58_c00193{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m35_c00193{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00193{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);}
.m2b_c00193{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00193{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m13_c00193{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m33_c00193{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00193{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);}
.m4_c00193{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);}
.m2c_c00193{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m19_c00193{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.md_c00193{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00193{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);}
.m23_c00193{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m48_c00193{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00193{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);}
.m40_c00193{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.me_c00193{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m32_c00193{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m9_c00193{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);}
.m18_c00193{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);}
.m20_c00193{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m11_c00193{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00193{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00193{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m27_c00193{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m8_c00193{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00193{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);}
.m1e_c00193{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m53_c00193{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00193{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);}
.m50_c00193{transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00193{transform:matrix(0.735000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735000,0.000000,0.000000,0.250000,0,0);}
.m51_c00193{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);}
.v2_c00193{vertical-align:-11.520000px;}
.v0_c00193{vertical-align:0.000000px;}
.v1_c00193{vertical-align:2.880000px;}
.ls0_c00193{letter-spacing:0.000000px;}
.sc__c00193{text-shadow:none;}
.sc0_c00193{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00193{-webkit-text-stroke:0px transparent;}
.sc0_c00193{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00193{word-spacing:-9.290400px;}
.ws2_c00193{word-spacing:-4.640400px;}
.ws3_c00193{word-spacing:0.000000px;}
.ws1_c00193{word-spacing:2.529600px;}
.fc0_c00193{color:transparent;}
.fs9_c00193{font-size:34.560000px;}
.fs6_c00193{font-size:37.440000px;}
.fsa_c00193{font-size:40.320000px;}
.fsb_c00193{font-size:43.200000px;}
.fs8_c00193{font-size:46.080000px;}
.fs2_c00193{font-size:48.960000px;}
.fs4_c00193{font-size:51.840000px;}
.fs3_c00193{font-size:54.720000px;}
.fsc_c00193{font-size:57.600000px;}
.fs5_c00193{font-size:60.480000px;}
.fs7_c00193{font-size:63.360000px;}
.fsd_c00193{font-size:66.240000px;}
.fs1_c00193{font-size:69.120000px;}
.fs0_c00193{font-size:77.760000px;}
.y0_c00193{bottom:0.000000px;}
.y6f_c00193{bottom:136.800000px;}
.y70_c00193{bottom:138.240000px;}
.y6e_c00193{bottom:138.960000px;}
.y6d_c00193{bottom:139.680000px;}
.y6c_c00193{bottom:140.400000px;}
.y6a_c00193{bottom:179.280000px;}
.y67_c00193{bottom:180.000000px;}
.y69_c00193{bottom:181.440000px;}
.y68_c00193{bottom:182.160000px;}
.y6b_c00193{bottom:182.880000px;}
.y66_c00193{bottom:185.760000px;}
.y63_c00193{bottom:222.480000px;}
.y61_c00193{bottom:224.640000px;}
.y62_c00193{bottom:225.360000px;}
.y60_c00193{bottom:226.080000px;}
.y64_c00193{bottom:226.800000px;}
.y65_c00193{bottom:227.520000px;}
.y5e_c00193{bottom:265.680000px;}
.y5b_c00193{bottom:268.560000px;}
.y5d_c00193{bottom:269.280000px;}
.y5c_c00193{bottom:270.000000px;}
.y5f_c00193{bottom:270.720000px;}
.y55_c00193{bottom:308.160000px;}
.y57_c00193{bottom:309.600000px;}
.y54_c00193{bottom:310.320000px;}
.y5a_c00193{bottom:311.040000px;}
.y56_c00193{bottom:311.760000px;}
.y58_c00193{bottom:312.480000px;}
.y53_c00193{bottom:313.200000px;}
.y59_c00193{bottom:313.920000px;}
.y4f_c00193{bottom:352.080000px;}
.y51_c00193{bottom:352.800000px;}
.y4e_c00193{bottom:353.520000px;}
.y50_c00193{bottom:354.960000px;}
.y52_c00193{bottom:355.680000px;}
.y4d_c00193{bottom:357.120000px;}
.y4b_c00193{bottom:395.280000px;}
.y4c_c00193{bottom:396.000000px;}
.y48_c00193{bottom:396.720000px;}
.y49_c00193{bottom:398.160000px;}
.y4a_c00193{bottom:398.880000px;}
.y47_c00193{bottom:438.480000px;}
.y45_c00193{bottom:440.640000px;}
.y46_c00193{bottom:441.360000px;}
.y43_c00193{bottom:442.080000px;}
.y44_c00193{bottom:442.800000px;}
.y41_c00193{bottom:481.680000px;}
.y42_c00193{bottom:483.120000px;}
.y40_c00193{bottom:484.560000px;}
.y3e_c00193{bottom:525.600000px;}
.y3d_c00193{bottom:527.760000px;}
.y3f_c00193{bottom:528.480000px;}
.y3c_c00193{bottom:568.080000px;}
.y3a_c00193{bottom:570.240000px;}
.y3b_c00193{bottom:570.960000px;}
.y38_c00193{bottom:611.280000px;}
.y39_c00193{bottom:612.720000px;}
.y36_c00193{bottom:613.440000px;}
.y37_c00193{bottom:614.160000px;}
.y35_c00193{bottom:653.760000px;}
.y32_c00193{bottom:655.920000px;}
.y33_c00193{bottom:656.640000px;}
.y34_c00193{bottom:657.360000px;}
.y2d_c00193{bottom:696.960000px;}
.y2f_c00193{bottom:697.680000px;}
.y30_c00193{bottom:699.120000px;}
.y2e_c00193{bottom:699.840000px;}
.y31_c00193{bottom:700.560000px;}
.y29_c00193{bottom:740.160000px;}
.y2a_c00193{bottom:740.880000px;}
.y28_c00193{bottom:742.320000px;}
.y2c_c00193{bottom:743.040000px;}
.y2b_c00193{bottom:743.760000px;}
.y27_c00193{bottom:782.640000px;}
.y23_c00193{bottom:784.080000px;}
.y22_c00193{bottom:784.800000px;}
.y26_c00193{bottom:785.520000px;}
.y24_c00193{bottom:786.240000px;}
.y25_c00193{bottom:786.960000px;}
.y20_c00193{bottom:825.840000px;}
.y21_c00193{bottom:826.560000px;}
.y1d_c00193{bottom:828.000000px;}
.y1e_c00193{bottom:828.720000px;}
.y1f_c00193{bottom:829.440000px;}
.y1c_c00193{bottom:869.040000px;}
.y1b_c00193{bottom:870.480000px;}
.y1a_c00193{bottom:871.200000px;}
.y17_c00193{bottom:871.920000px;}
.y18_c00193{bottom:872.640000px;}
.y19_c00193{bottom:873.360000px;}
.y13_c00193{bottom:912.240000px;}
.y15_c00193{bottom:912.960000px;}
.y12_c00193{bottom:914.400000px;}
.y16_c00193{bottom:915.120000px;}
.y14_c00193{bottom:915.840000px;}
.yb_c00193{bottom:954.720000px;}
.y11_c00193{bottom:955.440000px;}
.yd_c00193{bottom:956.160000px;}
.yc_c00193{bottom:957.600000px;}
.y10_c00193{bottom:958.320000px;}
.ye_c00193{bottom:959.040000px;}
.yf_c00193{bottom:959.760000px;}
.ya_c00193{bottom:997.920000px;}
.y7_c00193{bottom:999.360000px;}
.y8_c00193{bottom:1000.080000px;}
.y5_c00193{bottom:1000.800000px;}
.y6_c00193{bottom:1001.520000px;}
.y9_c00193{bottom:1002.240000px;}
.y4_c00193{bottom:1041.840000px;}
.y2_c00193{bottom:1042.560000px;}
.y3_c00193{bottom:1044.720000px;}
.y1_c00193{bottom:1095.840000px;}
.hb_c00193{height:31.100625px;}
.h8_c00193{height:33.692344px;}
.hc_c00193{height:36.284062px;}
.hd_c00193{height:38.875781px;}
.ha_c00193{height:41.467500px;}
.h4_c00193{height:44.059219px;}
.h6_c00193{height:46.650937px;}
.h5_c00193{height:49.242656px;}
.he_c00193{height:51.834375px;}
.h7_c00193{height:54.426094px;}
.h9_c00193{height:57.017812px;}
.hf_c00193{height:59.609531px;}
.h3_c00193{height:62.201250px;}
.h2_c00193{height:69.976406px;}
.h0_c00193{height:1141.200000px;}
.h1_c00193{height:1141.500000px;}
.w0_c00193{width:779.760000px;}
.w1_c00193{width:780.000000px;}
.x0_c00193{left:0.000000px;}
.x1d_c00193{left:72.000000px;}
.x9_c00193{left:73.440000px;}
.x4b_c00193{left:74.880000px;}
.x13_c00193{left:93.600000px;}
.x4e_c00193{left:105.840000px;}
.xa_c00193{left:114.480000px;}
.x39_c00193{left:115.920000px;}
.x26_c00193{left:126.720000px;}
.x35_c00193{left:136.800000px;}
.xb_c00193{left:147.600000px;}
.x27_c00193{left:157.680000px;}
.x46_c00193{left:159.120000px;}
.x2f_c00193{left:168.480000px;}
.x3f_c00193{left:180.000000px;}
.x42_c00193{left:190.800000px;}
.x2_c00193{left:202.320000px;}
.xc_c00193{left:211.680000px;}
.x43_c00193{left:223.200000px;}
.x14_c00193{left:234.000000px;}
.x56_c00193{left:235.440000px;}
.x28_c00193{left:245.520000px;}
.x52_c00193{left:255.600000px;}
.x3_c00193{left:257.040000px;}
.x4c_c00193{left:265.680000px;}
.x3b_c00193{left:267.840000px;}
.x15_c00193{left:277.200000px;}
.x54_c00193{left:278.640000px;}
.x1e_c00193{left:288.000000px;}
.x53_c00193{left:298.800000px;}
.x30_c00193{left:300.240000px;}
.x3c_c00193{left:308.880000px;}
.x29_c00193{left:311.040000px;}
.x4_c00193{left:320.400000px;}
.x31_c00193{left:321.840000px;}
.x44_c00193{left:331.200000px;}
.x4f_c00193{left:332.640000px;}
.x4a_c00193{left:342.720000px;}
.x48_c00193{left:352.800000px;}
.x45_c00193{left:354.240000px;}
.x16_c00193{left:365.040000px;}
.x32_c00193{left:373.680000px;}
.xd_c00193{left:375.840000px;}
.x5_c00193{left:385.920000px;}
.x17_c00193{left:397.440000px;}
.x1f_c00193{left:406.800000px;}
.xe_c00193{left:408.240000px;}
.x33_c00193{left:409.680000px;}
.x2a_c00193{left:417.600000px;}
.x40_c00193{left:419.040000px;}
.x18_c00193{left:429.840000px;}
.xf_c00193{left:438.480000px;}
.x34_c00193{left:439.920000px;}
.x49_c00193{left:450.000000px;}
.x20_c00193{left:451.440000px;}
.x4d_c00193{left:460.080000px;}
.x19_c00193{left:461.520000px;}
.x6_c00193{left:473.040000px;}
.x3a_c00193{left:483.120000px;}
.x2b_c00193{left:484.560000px;}
.x1a_c00193{left:493.920000px;}
.x2c_c00193{left:505.440000px;}
.x7_c00193{left:515.520000px;}
.x3d_c00193{left:525.600000px;}
.x10_c00193{left:527.040000px;}
.x2d_c00193{left:536.400000px;}
.x36_c00193{left:548.640000px;}
.x11_c00193{left:558.720000px;}
.x50_c00193{left:567.360000px;}
.x21_c00193{left:569.520000px;}
.x37_c00193{left:579.600000px;}
.x51_c00193{left:581.040000px;}
.x22_c00193{left:590.400000px;}
.x12_c00193{left:591.840000px;}
.x47_c00193{left:600.480000px;}
.x3e_c00193{left:601.920000px;}
.x23_c00193{left:612.000000px;}
.x55_c00193{left:621.360000px;}
.x1b_c00193{left:623.520000px;}
.x41_c00193{left:632.880000px;}
.x8_c00193{left:634.320000px;}
.x2e_c00193{left:644.400000px;}
.x24_c00193{left:645.840000px;}
.x38_c00193{left:655.200000px;}
.x1c_c00193{left:666.000000px;}
.x25_c00193{left:676.800000px;}
.x1_c00193{left:694.800000px;}
@media print{
.v2_c00193{vertical-align:-10.240000pt;}
.v0_c00193{vertical-align:0.000000pt;}
.v1_c00193{vertical-align:2.560000pt;}
.ls0_c00193{letter-spacing:0.000000pt;}
.ws0_c00193{word-spacing:-8.258133pt;}
.ws2_c00193{word-spacing:-4.124800pt;}
.ws3_c00193{word-spacing:0.000000pt;}
.ws1_c00193{word-spacing:2.248533pt;}
.fs9_c00193{font-size:30.720000pt;}
.fs6_c00193{font-size:33.280000pt;}
.fsa_c00193{font-size:35.840000pt;}
.fsb_c00193{font-size:38.400000pt;}
.fs8_c00193{font-size:40.960000pt;}
.fs2_c00193{font-size:43.520000pt;}
.fs4_c00193{font-size:46.080000pt;}
.fs3_c00193{font-size:48.640000pt;}
.fsc_c00193{font-size:51.200000pt;}
.fs5_c00193{font-size:53.760000pt;}
.fs7_c00193{font-size:56.320000pt;}
.fsd_c00193{font-size:58.880000pt;}
.fs1_c00193{font-size:61.440000pt;}
.fs0_c00193{font-size:69.120000pt;}
.y0_c00193{bottom:0.000000pt;}
.y6f_c00193{bottom:121.600000pt;}
.y70_c00193{bottom:122.880000pt;}
.y6e_c00193{bottom:123.520000pt;}
.y6d_c00193{bottom:124.160000pt;}
.y6c_c00193{bottom:124.800000pt;}
.y6a_c00193{bottom:159.360000pt;}
.y67_c00193{bottom:160.000000pt;}
.y69_c00193{bottom:161.280000pt;}
.y68_c00193{bottom:161.920000pt;}
.y6b_c00193{bottom:162.560000pt;}
.y66_c00193{bottom:165.120000pt;}
.y63_c00193{bottom:197.760000pt;}
.y61_c00193{bottom:199.680000pt;}
.y62_c00193{bottom:200.320000pt;}
.y60_c00193{bottom:200.960000pt;}
.y64_c00193{bottom:201.600000pt;}
.y65_c00193{bottom:202.240000pt;}
.y5e_c00193{bottom:236.160000pt;}
.y5b_c00193{bottom:238.720000pt;}
.y5d_c00193{bottom:239.360000pt;}
.y5c_c00193{bottom:240.000000pt;}
.y5f_c00193{bottom:240.640000pt;}
.y55_c00193{bottom:273.920000pt;}
.y57_c00193{bottom:275.200000pt;}
.y54_c00193{bottom:275.840000pt;}
.y5a_c00193{bottom:276.480000pt;}
.y56_c00193{bottom:277.120000pt;}
.y58_c00193{bottom:277.760000pt;}
.y53_c00193{bottom:278.400000pt;}
.y59_c00193{bottom:279.040000pt;}
.y4f_c00193{bottom:312.960000pt;}
.y51_c00193{bottom:313.600000pt;}
.y4e_c00193{bottom:314.240000pt;}
.y50_c00193{bottom:315.520000pt;}
.y52_c00193{bottom:316.160000pt;}
.y4d_c00193{bottom:317.440000pt;}
.y4b_c00193{bottom:351.360000pt;}
.y4c_c00193{bottom:352.000000pt;}
.y48_c00193{bottom:352.640000pt;}
.y49_c00193{bottom:353.920000pt;}
.y4a_c00193{bottom:354.560000pt;}
.y47_c00193{bottom:389.760000pt;}
.y45_c00193{bottom:391.680000pt;}
.y46_c00193{bottom:392.320000pt;}
.y43_c00193{bottom:392.960000pt;}
.y44_c00193{bottom:393.600000pt;}
.y41_c00193{bottom:428.160000pt;}
.y42_c00193{bottom:429.440000pt;}
.y40_c00193{bottom:430.720000pt;}
.y3e_c00193{bottom:467.200000pt;}
.y3d_c00193{bottom:469.120000pt;}
.y3f_c00193{bottom:469.760000pt;}
.y3c_c00193{bottom:504.960000pt;}
.y3a_c00193{bottom:506.880000pt;}
.y3b_c00193{bottom:507.520000pt;}
.y38_c00193{bottom:543.360000pt;}
.y39_c00193{bottom:544.640000pt;}
.y36_c00193{bottom:545.280000pt;}
.y37_c00193{bottom:545.920000pt;}
.y35_c00193{bottom:581.120000pt;}
.y32_c00193{bottom:583.040000pt;}
.y33_c00193{bottom:583.680000pt;}
.y34_c00193{bottom:584.320000pt;}
.y2d_c00193{bottom:619.520000pt;}
.y2f_c00193{bottom:620.160000pt;}
.y30_c00193{bottom:621.440000pt;}
.y2e_c00193{bottom:622.080000pt;}
.y31_c00193{bottom:622.720000pt;}
.y29_c00193{bottom:657.920000pt;}
.y2a_c00193{bottom:658.560000pt;}
.y28_c00193{bottom:659.840000pt;}
.y2c_c00193{bottom:660.480000pt;}
.y2b_c00193{bottom:661.120000pt;}
.y27_c00193{bottom:695.680000pt;}
.y23_c00193{bottom:696.960000pt;}
.y22_c00193{bottom:697.600000pt;}
.y26_c00193{bottom:698.240000pt;}
.y24_c00193{bottom:698.880000pt;}
.y25_c00193{bottom:699.520000pt;}
.y20_c00193{bottom:734.080000pt;}
.y21_c00193{bottom:734.720000pt;}
.y1d_c00193{bottom:736.000000pt;}
.y1e_c00193{bottom:736.640000pt;}
.y1f_c00193{bottom:737.280000pt;}
.y1c_c00193{bottom:772.480000pt;}
.y1b_c00193{bottom:773.760000pt;}
.y1a_c00193{bottom:774.400000pt;}
.y17_c00193{bottom:775.040000pt;}
.y18_c00193{bottom:775.680000pt;}
.y19_c00193{bottom:776.320000pt;}
.y13_c00193{bottom:810.880000pt;}
.y15_c00193{bottom:811.520000pt;}
.y12_c00193{bottom:812.800000pt;}
.y16_c00193{bottom:813.440000pt;}
.y14_c00193{bottom:814.080000pt;}
.yb_c00193{bottom:848.640000pt;}
.y11_c00193{bottom:849.280000pt;}
.yd_c00193{bottom:849.920000pt;}
.yc_c00193{bottom:851.200000pt;}
.y10_c00193{bottom:851.840000pt;}
.ye_c00193{bottom:852.480000pt;}
.yf_c00193{bottom:853.120000pt;}
.ya_c00193{bottom:887.040000pt;}
.y7_c00193{bottom:888.320000pt;}
.y8_c00193{bottom:888.960000pt;}
.y5_c00193{bottom:889.600000pt;}
.y6_c00193{bottom:890.240000pt;}
.y9_c00193{bottom:890.880000pt;}
.y4_c00193{bottom:926.080000pt;}
.y2_c00193{bottom:926.720000pt;}
.y3_c00193{bottom:928.640000pt;}
.y1_c00193{bottom:974.080000pt;}
.hb_c00193{height:27.645000pt;}
.h8_c00193{height:29.948750pt;}
.hc_c00193{height:32.252500pt;}
.hd_c00193{height:34.556250pt;}
.ha_c00193{height:36.860000pt;}
.h4_c00193{height:39.163750pt;}
.h6_c00193{height:41.467500pt;}
.h5_c00193{height:43.771250pt;}
.he_c00193{height:46.075000pt;}
.h7_c00193{height:48.378750pt;}
.h9_c00193{height:50.682500pt;}
.hf_c00193{height:52.986250pt;}
.h3_c00193{height:55.290000pt;}
.h2_c00193{height:62.201250pt;}
.h0_c00193{height:1014.400000pt;}
.h1_c00193{height:1014.666667pt;}
.w0_c00193{width:693.120000pt;}
.w1_c00193{width:693.333333pt;}
.x0_c00193{left:0.000000pt;}
.x1d_c00193{left:64.000000pt;}
.x9_c00193{left:65.280000pt;}
.x4b_c00193{left:66.560000pt;}
.x13_c00193{left:83.200000pt;}
.x4e_c00193{left:94.080000pt;}
.xa_c00193{left:101.760000pt;}
.x39_c00193{left:103.040000pt;}
.x26_c00193{left:112.640000pt;}
.x35_c00193{left:121.600000pt;}
.xb_c00193{left:131.200000pt;}
.x27_c00193{left:140.160000pt;}
.x46_c00193{left:141.440000pt;}
.x2f_c00193{left:149.760000pt;}
.x3f_c00193{left:160.000000pt;}
.x42_c00193{left:169.600000pt;}
.x2_c00193{left:179.840000pt;}
.xc_c00193{left:188.160000pt;}
.x43_c00193{left:198.400000pt;}
.x14_c00193{left:208.000000pt;}
.x56_c00193{left:209.280000pt;}
.x28_c00193{left:218.240000pt;}
.x52_c00193{left:227.200000pt;}
.x3_c00193{left:228.480000pt;}
.x4c_c00193{left:236.160000pt;}
.x3b_c00193{left:238.080000pt;}
.x15_c00193{left:246.400000pt;}
.x54_c00193{left:247.680000pt;}
.x1e_c00193{left:256.000000pt;}
.x53_c00193{left:265.600000pt;}
.x30_c00193{left:266.880000pt;}
.x3c_c00193{left:274.560000pt;}
.x29_c00193{left:276.480000pt;}
.x4_c00193{left:284.800000pt;}
.x31_c00193{left:286.080000pt;}
.x44_c00193{left:294.400000pt;}
.x4f_c00193{left:295.680000pt;}
.x4a_c00193{left:304.640000pt;}
.x48_c00193{left:313.600000pt;}
.x45_c00193{left:314.880000pt;}
.x16_c00193{left:324.480000pt;}
.x32_c00193{left:332.160000pt;}
.xd_c00193{left:334.080000pt;}
.x5_c00193{left:343.040000pt;}
.x17_c00193{left:353.280000pt;}
.x1f_c00193{left:361.600000pt;}
.xe_c00193{left:362.880000pt;}
.x33_c00193{left:364.160000pt;}
.x2a_c00193{left:371.200000pt;}
.x40_c00193{left:372.480000pt;}
.x18_c00193{left:382.080000pt;}
.xf_c00193{left:389.760000pt;}
.x34_c00193{left:391.040000pt;}
.x49_c00193{left:400.000000pt;}
.x20_c00193{left:401.280000pt;}
.x4d_c00193{left:408.960000pt;}
.x19_c00193{left:410.240000pt;}
.x6_c00193{left:420.480000pt;}
.x3a_c00193{left:429.440000pt;}
.x2b_c00193{left:430.720000pt;}
.x1a_c00193{left:439.040000pt;}
.x2c_c00193{left:449.280000pt;}
.x7_c00193{left:458.240000pt;}
.x3d_c00193{left:467.200000pt;}
.x10_c00193{left:468.480000pt;}
.x2d_c00193{left:476.800000pt;}
.x36_c00193{left:487.680000pt;}
.x11_c00193{left:496.640000pt;}
.x50_c00193{left:504.320000pt;}
.x21_c00193{left:506.240000pt;}
.x37_c00193{left:515.200000pt;}
.x51_c00193{left:516.480000pt;}
.x22_c00193{left:524.800000pt;}
.x12_c00193{left:526.080000pt;}
.x47_c00193{left:533.760000pt;}
.x3e_c00193{left:535.040000pt;}
.x23_c00193{left:544.000000pt;}
.x55_c00193{left:552.320000pt;}
.x1b_c00193{left:554.240000pt;}
.x41_c00193{left:562.560000pt;}
.x8_c00193{left:563.840000pt;}
.x2e_c00193{left:572.800000pt;}
.x24_c00193{left:574.080000pt;}
.x38_c00193{left:582.400000pt;}
.x1c_c00193{left:592.000000pt;}
.x25_c00193{left:601.600000pt;}
.x1_c00193{left:617.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_83e611ebb542c723d5ad2978.woff2')format("woff");}.ff1_c00194{font-family:ff1_c00194;line-height:1.109863;font-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_c00194{transform:matrix(0.244450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244450,0.000000,0.000000,0.250000,0,0);}
.m0_c00194{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);}
.m21_c00194{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m11_c00194{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m49_c00194{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m12_c00194{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00194{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m34_c00194{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.ma_c00194{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00194{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00194{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00194{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00194{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m47_c00194{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00194{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m13_c00194{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00194{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m45_c00194{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00194{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m64_c00194{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);}
.m35_c00194{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m20_c00194{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);}
.m2e_c00194{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);}
.m55_c00194{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);}
.m38_c00194{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00194{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);}
.m54_c00194{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m24_c00194{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);}
.m33_c00194{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.mb_c00194{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);}
.m32_c00194{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2_c00194{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);}
.m8_c00194{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);}
.m29_c00194{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m59_c00194{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m37_c00194{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m1_c00194{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_c00194{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);}
.m1c_c00194{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);}
.m56_c00194{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m46_c00194{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);}
.m25_c00194{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);}
.m5e_c00194{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);}
.m14_c00194{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m15_c00194{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.mf_c00194{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);}
.m9_c00194{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m53_c00194{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);}
.m4_c00194{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00194{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);}
.m18_c00194{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00194{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m39_c00194{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m28_c00194{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.mc_c00194{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);}
.m31_c00194{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m51_c00194{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m61_c00194{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m19_c00194{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);}
.m3e_c00194{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m60_c00194{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m62_c00194{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m48_c00194{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m6_c00194{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);}
.m63_c00194{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m22_c00194{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00194{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m52_c00194{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);}
.me_c00194{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00194{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m7_c00194{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m36_c00194{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);}
.m3a_c00194{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);}
.m23_c00194{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00194{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m44_c00194{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);}
.m2a_c00194{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m58_c00194{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00194{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);}
.m42_c00194{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00194{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00194{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.md_c00194{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00194{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);}
.m1b_c00194{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00194{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);}
.m2b_c00194{transform:matrix(0.525000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525000,0.000000,0.000000,0.250000,0,0);}
.m17_c00194{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m40_c00194{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m27_c00194{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00194{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m26_c00194{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m5_c00194{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m16_c00194{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);}
.m3_c00194{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);}
.m10_c00194{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);}
.m4a_c00194{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m43_c00194{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m50_c00194{transform:matrix(0.810000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.810000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.810000,0.000000,0.000000,0.250000,0,0);}
.m41_c00194{transform:matrix(0.917500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.917500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.917500,0.000000,0.000000,0.250000,0,0);}
.m57_c00194{transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);}
.v1_c00194{vertical-align:-11.520000px;}
.v0_c00194{vertical-align:0.000000px;}
.ls0_c00194{letter-spacing:0.000000px;}
.sc__c00194{text-shadow:none;}
.sc0_c00194{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00194{-webkit-text-stroke:0px transparent;}
.sc0_c00194{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00194{word-spacing:-2.967360px;}
.ws0_c00194{word-spacing:-0.922800px;}
.ws2_c00194{word-spacing:0.000000px;}
.fc0_c00194{color:transparent;}
.fsf_c00194{font-size:17.280000px;}
.fs3_c00194{font-size:34.560000px;}
.fs5_c00194{font-size:37.440000px;}
.fsa_c00194{font-size:40.320000px;}
.fse_c00194{font-size:43.200000px;}
.fs9_c00194{font-size:46.080000px;}
.fs4_c00194{font-size:48.960000px;}
.fs1_c00194{font-size:51.840000px;}
.fs8_c00194{font-size:54.720000px;}
.fs7_c00194{font-size:57.600000px;}
.fs6_c00194{font-size:60.480000px;}
.fs2_c00194{font-size:63.360000px;}
.fsb_c00194{font-size:66.240000px;}
.fsd_c00194{font-size:69.120000px;}
.fsc_c00194{font-size:72.000000px;}
.fs10_c00194{font-size:74.880000px;}
.fs0_c00194{font-size:80.640000px;}
.y0_c00194{bottom:0.000000px;}
.y6b_c00194{bottom:67.680000px;}
.y6c_c00194{bottom:69.120000px;}
.y6a_c00194{bottom:69.840000px;}
.y69_c00194{bottom:70.560000px;}
.y68_c00194{bottom:72.720000px;}
.y65_c00194{bottom:111.600000px;}
.y66_c00194{bottom:112.320000px;}
.y64_c00194{bottom:113.760000px;}
.y62_c00194{bottom:114.480000px;}
.y63_c00194{bottom:115.920000px;}
.y67_c00194{bottom:116.640000px;}
.y5e_c00194{bottom:155.520000px;}
.y5d_c00194{bottom:156.240000px;}
.y60_c00194{bottom:156.960000px;}
.y5f_c00194{bottom:157.680000px;}
.y61_c00194{bottom:159.120000px;}
.y5b_c00194{bottom:198.000000px;}
.y5c_c00194{bottom:198.720000px;}
.y5a_c00194{bottom:200.880000px;}
.y59_c00194{bottom:202.320000px;}
.y58_c00194{bottom:203.040000px;}
.y44_c00194{bottom:241.920000px;}
.y46_c00194{bottom:242.640000px;}
.y47_c00194{bottom:243.360000px;}
.y43_c00194{bottom:244.080000px;}
.y45_c00194{bottom:244.800000px;}
.y48_c00194{bottom:245.520000px;}
.y49_c00194{bottom:249.120000px;}
.y57_c00194{bottom:295.920000px;}
.y53_c00194{bottom:337.680000px;}
.y54_c00194{bottom:338.400000px;}
.y56_c00194{bottom:339.840000px;}
.y55_c00194{bottom:341.280000px;}
.y52_c00194{bottom:342.000000px;}
.y51_c00194{bottom:343.440000px;}
.y4b_c00194{bottom:380.880000px;}
.y4e_c00194{bottom:381.600000px;}
.y4f_c00194{bottom:382.320000px;}
.y50_c00194{bottom:383.040000px;}
.y4c_c00194{bottom:383.760000px;}
.y4d_c00194{bottom:384.480000px;}
.y4a_c00194{bottom:385.920000px;}
.y40_c00194{bottom:424.800000px;}
.y3e_c00194{bottom:426.240000px;}
.y41_c00194{bottom:426.960000px;}
.y3f_c00194{bottom:427.680000px;}
.y42_c00194{bottom:428.400000px;}
.y3c_c00194{bottom:468.000000px;}
.y3d_c00194{bottom:470.160000px;}
.y3b_c00194{bottom:470.880000px;}
.y38_c00194{bottom:511.200000px;}
.y3a_c00194{bottom:513.360000px;}
.y39_c00194{bottom:514.080000px;}
.y37_c00194{bottom:514.800000px;}
.y30_c00194{bottom:554.400000px;}
.y2f_c00194{bottom:556.560000px;}
.y2e_c00194{bottom:557.280000px;}
.y31_c00194{bottom:558.000000px;}
.y2d_c00194{bottom:567.360000px;}
.y36_c00194{bottom:596.160000px;}
.y35_c00194{bottom:597.600000px;}
.y33_c00194{bottom:598.320000px;}
.y32_c00194{bottom:599.760000px;}
.y34_c00194{bottom:600.480000px;}
.y2c_c00194{bottom:640.800000px;}
.y2a_c00194{bottom:641.520000px;}
.y2b_c00194{bottom:643.680000px;}
.y25_c00194{bottom:683.280000px;}
.y28_c00194{bottom:684.000000px;}
.y29_c00194{bottom:684.720000px;}
.y26_c00194{bottom:686.880000px;}
.y27_c00194{bottom:687.600000px;}
.y21_c00194{bottom:727.920000px;}
.y23_c00194{bottom:728.640000px;}
.y24_c00194{bottom:730.080000px;}
.y22_c00194{bottom:730.800000px;}
.y20_c00194{bottom:770.400000px;}
.y1d_c00194{bottom:771.120000px;}
.y1f_c00194{bottom:773.280000px;}
.y1e_c00194{bottom:774.000000px;}
.y1c_c00194{bottom:824.400000px;}
.y1b_c00194{bottom:827.280000px;}
.y19_c00194{bottom:867.600000px;}
.y17_c00194{bottom:869.760000px;}
.y18_c00194{bottom:870.480000px;}
.y1a_c00194{bottom:871.200000px;}
.y14_c00194{bottom:910.080000px;}
.y16_c00194{bottom:910.800000px;}
.y12_c00194{bottom:911.520000px;}
.y10_c00194{bottom:912.240000px;}
.y15_c00194{bottom:912.960000px;}
.y11_c00194{bottom:913.680000px;}
.y13_c00194{bottom:914.400000px;}
.ye_c00194{bottom:952.560000px;}
.yf_c00194{bottom:953.280000px;}
.yc_c00194{bottom:954.000000px;}
.yd_c00194{bottom:956.160000px;}
.yb_c00194{bottom:956.880000px;}
.ya_c00194{bottom:957.600000px;}
.y9_c00194{bottom:1007.280000px;}
.y6_c00194{bottom:1009.440000px;}
.y7_c00194{bottom:1010.160000px;}
.y8_c00194{bottom:1010.880000px;}
.y3_c00194{bottom:1051.200000px;}
.y2_c00194{bottom:1051.920000px;}
.y5_c00194{bottom:1052.640000px;}
.y4_c00194{bottom:1054.080000px;}
.y1_c00194{bottom:1100.880000px;}
.h11_c00194{height:15.550313px;}
.h5_c00194{height:31.100625px;}
.h7_c00194{height:33.692344px;}
.hc_c00194{height:36.284062px;}
.h10_c00194{height:38.875781px;}
.hb_c00194{height:41.467500px;}
.h6_c00194{height:44.059219px;}
.h3_c00194{height:46.650937px;}
.ha_c00194{height:49.242656px;}
.h9_c00194{height:51.834375px;}
.h8_c00194{height:54.426094px;}
.h4_c00194{height:57.017812px;}
.hd_c00194{height:59.609531px;}
.hf_c00194{height:62.201250px;}
.he_c00194{height:64.792969px;}
.h12_c00194{height:67.384687px;}
.h2_c00194{height:72.568125px;}
.h1_c00194{height:1149.000000px;}
.h0_c00194{height:1149.120000px;}
.w1_c00194{width:790.500000px;}
.w0_c00194{width:790.560000px;}
.x0_c00194{left:0.000000px;}
.x2_c00194{left:75.600000px;}
.x1e_c00194{left:77.040000px;}
.x50_c00194{left:78.480000px;}
.x42_c00194{left:107.280000px;}
.x4c_c00194{left:108.720000px;}
.x4e_c00194{left:110.160000px;}
.x32_c00194{left:118.800000px;}
.x41_c00194{left:128.880000px;}
.x53_c00194{left:131.040000px;}
.x3_c00194{left:138.960000px;}
.x25_c00194{left:140.400000px;}
.xf_c00194{left:151.200000px;}
.x39_c00194{left:162.000000px;}
.x26_c00194{left:172.800000px;}
.x1f_c00194{left:182.160000px;}
.x10_c00194{left:183.600000px;}
.x3a_c00194{left:194.400000px;}
.x27_c00194{left:204.480000px;}
.x17_c00194{left:215.280000px;}
.x3e_c00194{left:216.720000px;}
.x43_c00194{left:226.080000px;}
.x33_c00194{left:236.880000px;}
.x2e_c00194{left:242.640000px;}
.x4_c00194{left:248.400000px;}
.x28_c00194{left:259.200000px;}
.x51_c00194{left:260.640000px;}
.x2f_c00194{left:270.000000px;}
.x5_c00194{left:280.800000px;}
.x3b_c00194{left:282.960000px;}
.x18_c00194{left:291.600000px;}
.x47_c00194{left:303.120000px;}
.x4f_c00194{left:313.200000px;}
.x2b_c00194{left:314.640000px;}
.x19_c00194{left:324.720000px;}
.x6_c00194{left:334.800000px;}
.x3d_c00194{left:336.960000px;}
.x2c_c00194{left:345.600000px;}
.x44_c00194{left:347.760000px;}
.x11_c00194{left:356.400000px;}
.x34_c00194{left:369.360000px;}
.x29_c00194{left:378.000000px;}
.x3c_c00194{left:380.160000px;}
.x12_c00194{left:388.800000px;}
.x35_c00194{left:399.600000px;}
.x7_c00194{left:401.040000px;}
.x23_c00194{left:411.120000px;}
.x8_c00194{left:421.200000px;}
.x13_c00194{left:432.000000px;}
.x4a_c00194{left:433.440000px;}
.x24_c00194{left:442.800000px;}
.x3f_c00194{left:452.880000px;}
.x4d_c00194{left:454.320000px;}
.x45_c00194{left:455.760000px;}
.x46_c00194{left:465.120000px;}
.x36_c00194{left:475.200000px;}
.x14_c00194{left:476.640000px;}
.x2a_c00194{left:486.000000px;}
.x4b_c00194{left:488.880000px;}
.x9_c00194{left:496.800000px;}
.x15_c00194{left:498.960000px;}
.x37_c00194{left:508.320000px;}
.x1a_c00194{left:518.400000px;}
.x16_c00194{left:529.200000px;}
.xa_c00194{left:530.640000px;}
.x1b_c00194{left:540.720000px;}
.x40_c00194{left:550.800000px;}
.xb_c00194{left:552.960000px;}
.x52_c00194{left:562.320000px;}
.x30_c00194{left:572.400000px;}
.xc_c00194{left:582.480000px;}
.x38_c00194{left:594.000000px;}
.x20_c00194{left:604.800000px;}
.x31_c00194{left:615.600000px;}
.xd_c00194{left:626.400000px;}
.x1c_c00194{left:637.200000px;}
.x21_c00194{left:648.000000px;}
.x2d_c00194{left:658.080000px;}
.x1d_c00194{left:669.600000px;}
.x22_c00194{left:679.680000px;}
.xe_c00194{left:690.480000px;}
.x1_c00194{left:698.400000px;}
.x48_c00194{left:700.560000px;}
.x49_c00194{left:710.640000px;}
@media print{
.v1_c00194{vertical-align:-10.240000pt;}
.v0_c00194{vertical-align:0.000000pt;}
.ls0_c00194{letter-spacing:0.000000pt;}
.ws1_c00194{word-spacing:-2.637653pt;}
.ws0_c00194{word-spacing:-0.820267pt;}
.ws2_c00194{word-spacing:0.000000pt;}
.fsf_c00194{font-size:15.360000pt;}
.fs3_c00194{font-size:30.720000pt;}
.fs5_c00194{font-size:33.280000pt;}
.fsa_c00194{font-size:35.840000pt;}
.fse_c00194{font-size:38.400000pt;}
.fs9_c00194{font-size:40.960000pt;}
.fs4_c00194{font-size:43.520000pt;}
.fs1_c00194{font-size:46.080000pt;}
.fs8_c00194{font-size:48.640000pt;}
.fs7_c00194{font-size:51.200000pt;}
.fs6_c00194{font-size:53.760000pt;}
.fs2_c00194{font-size:56.320000pt;}
.fsb_c00194{font-size:58.880000pt;}
.fsd_c00194{font-size:61.440000pt;}
.fsc_c00194{font-size:64.000000pt;}
.fs10_c00194{font-size:66.560000pt;}
.fs0_c00194{font-size:71.680000pt;}
.y0_c00194{bottom:0.000000pt;}
.y6b_c00194{bottom:60.160000pt;}
.y6c_c00194{bottom:61.440000pt;}
.y6a_c00194{bottom:62.080000pt;}
.y69_c00194{bottom:62.720000pt;}
.y68_c00194{bottom:64.640000pt;}
.y65_c00194{bottom:99.200000pt;}
.y66_c00194{bottom:99.840000pt;}
.y64_c00194{bottom:101.120000pt;}
.y62_c00194{bottom:101.760000pt;}
.y63_c00194{bottom:103.040000pt;}
.y67_c00194{bottom:103.680000pt;}
.y5e_c00194{bottom:138.240000pt;}
.y5d_c00194{bottom:138.880000pt;}
.y60_c00194{bottom:139.520000pt;}
.y5f_c00194{bottom:140.160000pt;}
.y61_c00194{bottom:141.440000pt;}
.y5b_c00194{bottom:176.000000pt;}
.y5c_c00194{bottom:176.640000pt;}
.y5a_c00194{bottom:178.560000pt;}
.y59_c00194{bottom:179.840000pt;}
.y58_c00194{bottom:180.480000pt;}
.y44_c00194{bottom:215.040000pt;}
.y46_c00194{bottom:215.680000pt;}
.y47_c00194{bottom:216.320000pt;}
.y43_c00194{bottom:216.960000pt;}
.y45_c00194{bottom:217.600000pt;}
.y48_c00194{bottom:218.240000pt;}
.y49_c00194{bottom:221.440000pt;}
.y57_c00194{bottom:263.040000pt;}
.y53_c00194{bottom:300.160000pt;}
.y54_c00194{bottom:300.800000pt;}
.y56_c00194{bottom:302.080000pt;}
.y55_c00194{bottom:303.360000pt;}
.y52_c00194{bottom:304.000000pt;}
.y51_c00194{bottom:305.280000pt;}
.y4b_c00194{bottom:338.560000pt;}
.y4e_c00194{bottom:339.200000pt;}
.y4f_c00194{bottom:339.840000pt;}
.y50_c00194{bottom:340.480000pt;}
.y4c_c00194{bottom:341.120000pt;}
.y4d_c00194{bottom:341.760000pt;}
.y4a_c00194{bottom:343.040000pt;}
.y40_c00194{bottom:377.600000pt;}
.y3e_c00194{bottom:378.880000pt;}
.y41_c00194{bottom:379.520000pt;}
.y3f_c00194{bottom:380.160000pt;}
.y42_c00194{bottom:380.800000pt;}
.y3c_c00194{bottom:416.000000pt;}
.y3d_c00194{bottom:417.920000pt;}
.y3b_c00194{bottom:418.560000pt;}
.y38_c00194{bottom:454.400000pt;}
.y3a_c00194{bottom:456.320000pt;}
.y39_c00194{bottom:456.960000pt;}
.y37_c00194{bottom:457.600000pt;}
.y30_c00194{bottom:492.800000pt;}
.y2f_c00194{bottom:494.720000pt;}
.y2e_c00194{bottom:495.360000pt;}
.y31_c00194{bottom:496.000000pt;}
.y2d_c00194{bottom:504.320000pt;}
.y36_c00194{bottom:529.920000pt;}
.y35_c00194{bottom:531.200000pt;}
.y33_c00194{bottom:531.840000pt;}
.y32_c00194{bottom:533.120000pt;}
.y34_c00194{bottom:533.760000pt;}
.y2c_c00194{bottom:569.600000pt;}
.y2a_c00194{bottom:570.240000pt;}
.y2b_c00194{bottom:572.160000pt;}
.y25_c00194{bottom:607.360000pt;}
.y28_c00194{bottom:608.000000pt;}
.y29_c00194{bottom:608.640000pt;}
.y26_c00194{bottom:610.560000pt;}
.y27_c00194{bottom:611.200000pt;}
.y21_c00194{bottom:647.040000pt;}
.y23_c00194{bottom:647.680000pt;}
.y24_c00194{bottom:648.960000pt;}
.y22_c00194{bottom:649.600000pt;}
.y20_c00194{bottom:684.800000pt;}
.y1d_c00194{bottom:685.440000pt;}
.y1f_c00194{bottom:687.360000pt;}
.y1e_c00194{bottom:688.000000pt;}
.y1c_c00194{bottom:732.800000pt;}
.y1b_c00194{bottom:735.360000pt;}
.y19_c00194{bottom:771.200000pt;}
.y17_c00194{bottom:773.120000pt;}
.y18_c00194{bottom:773.760000pt;}
.y1a_c00194{bottom:774.400000pt;}
.y14_c00194{bottom:808.960000pt;}
.y16_c00194{bottom:809.600000pt;}
.y12_c00194{bottom:810.240000pt;}
.y10_c00194{bottom:810.880000pt;}
.y15_c00194{bottom:811.520000pt;}
.y11_c00194{bottom:812.160000pt;}
.y13_c00194{bottom:812.800000pt;}
.ye_c00194{bottom:846.720000pt;}
.yf_c00194{bottom:847.360000pt;}
.yc_c00194{bottom:848.000000pt;}
.yd_c00194{bottom:849.920000pt;}
.yb_c00194{bottom:850.560000pt;}
.ya_c00194{bottom:851.200000pt;}
.y9_c00194{bottom:895.360000pt;}
.y6_c00194{bottom:897.280000pt;}
.y7_c00194{bottom:897.920000pt;}
.y8_c00194{bottom:898.560000pt;}
.y3_c00194{bottom:934.400000pt;}
.y2_c00194{bottom:935.040000pt;}
.y5_c00194{bottom:935.680000pt;}
.y4_c00194{bottom:936.960000pt;}
.y1_c00194{bottom:978.560000pt;}
.h11_c00194{height:13.822500pt;}
.h5_c00194{height:27.645000pt;}
.h7_c00194{height:29.948750pt;}
.hc_c00194{height:32.252500pt;}
.h10_c00194{height:34.556250pt;}
.hb_c00194{height:36.860000pt;}
.h6_c00194{height:39.163750pt;}
.h3_c00194{height:41.467500pt;}
.ha_c00194{height:43.771250pt;}
.h9_c00194{height:46.075000pt;}
.h8_c00194{height:48.378750pt;}
.h4_c00194{height:50.682500pt;}
.hd_c00194{height:52.986250pt;}
.hf_c00194{height:55.290000pt;}
.he_c00194{height:57.593750pt;}
.h12_c00194{height:59.897500pt;}
.h2_c00194{height:64.505000pt;}
.h1_c00194{height:1021.333333pt;}
.h0_c00194{height:1021.440000pt;}
.w1_c00194{width:702.666667pt;}
.w0_c00194{width:702.720000pt;}
.x0_c00194{left:0.000000pt;}
.x2_c00194{left:67.200000pt;}
.x1e_c00194{left:68.480000pt;}
.x50_c00194{left:69.760000pt;}
.x42_c00194{left:95.360000pt;}
.x4c_c00194{left:96.640000pt;}
.x4e_c00194{left:97.920000pt;}
.x32_c00194{left:105.600000pt;}
.x41_c00194{left:114.560000pt;}
.x53_c00194{left:116.480000pt;}
.x3_c00194{left:123.520000pt;}
.x25_c00194{left:124.800000pt;}
.xf_c00194{left:134.400000pt;}
.x39_c00194{left:144.000000pt;}
.x26_c00194{left:153.600000pt;}
.x1f_c00194{left:161.920000pt;}
.x10_c00194{left:163.200000pt;}
.x3a_c00194{left:172.800000pt;}
.x27_c00194{left:181.760000pt;}
.x17_c00194{left:191.360000pt;}
.x3e_c00194{left:192.640000pt;}
.x43_c00194{left:200.960000pt;}
.x33_c00194{left:210.560000pt;}
.x2e_c00194{left:215.680000pt;}
.x4_c00194{left:220.800000pt;}
.x28_c00194{left:230.400000pt;}
.x51_c00194{left:231.680000pt;}
.x2f_c00194{left:240.000000pt;}
.x5_c00194{left:249.600000pt;}
.x3b_c00194{left:251.520000pt;}
.x18_c00194{left:259.200000pt;}
.x47_c00194{left:269.440000pt;}
.x4f_c00194{left:278.400000pt;}
.x2b_c00194{left:279.680000pt;}
.x19_c00194{left:288.640000pt;}
.x6_c00194{left:297.600000pt;}
.x3d_c00194{left:299.520000pt;}
.x2c_c00194{left:307.200000pt;}
.x44_c00194{left:309.120000pt;}
.x11_c00194{left:316.800000pt;}
.x34_c00194{left:328.320000pt;}
.x29_c00194{left:336.000000pt;}
.x3c_c00194{left:337.920000pt;}
.x12_c00194{left:345.600000pt;}
.x35_c00194{left:355.200000pt;}
.x7_c00194{left:356.480000pt;}
.x23_c00194{left:365.440000pt;}
.x8_c00194{left:374.400000pt;}
.x13_c00194{left:384.000000pt;}
.x4a_c00194{left:385.280000pt;}
.x24_c00194{left:393.600000pt;}
.x3f_c00194{left:402.560000pt;}
.x4d_c00194{left:403.840000pt;}
.x45_c00194{left:405.120000pt;}
.x46_c00194{left:413.440000pt;}
.x36_c00194{left:422.400000pt;}
.x14_c00194{left:423.680000pt;}
.x2a_c00194{left:432.000000pt;}
.x4b_c00194{left:434.560000pt;}
.x9_c00194{left:441.600000pt;}
.x15_c00194{left:443.520000pt;}
.x37_c00194{left:451.840000pt;}
.x1a_c00194{left:460.800000pt;}
.x16_c00194{left:470.400000pt;}
.xa_c00194{left:471.680000pt;}
.x1b_c00194{left:480.640000pt;}
.x40_c00194{left:489.600000pt;}
.xb_c00194{left:491.520000pt;}
.x52_c00194{left:499.840000pt;}
.x30_c00194{left:508.800000pt;}
.xc_c00194{left:517.760000pt;}
.x38_c00194{left:528.000000pt;}
.x20_c00194{left:537.600000pt;}
.x31_c00194{left:547.200000pt;}
.xd_c00194{left:556.800000pt;}
.x1c_c00194{left:566.400000pt;}
.x21_c00194{left:576.000000pt;}
.x2d_c00194{left:584.960000pt;}
.x1d_c00194{left:595.200000pt;}
.x22_c00194{left:604.160000pt;}
.xe_c00194{left:613.760000pt;}
.x1_c00194{left:620.800000pt;}
.x48_c00194{left:622.720000pt;}
.x49_c00194{left:631.680000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_90cbeee3d4794b6037a2343f.woff2')format("woff");}.ff1_c00195{font-family:ff1_c00195;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m57_c00195{transform:matrix(0.200600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200600,0.000000,0.000000,0.250000,0,0);}
.m47_c00195{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);}
.m58_c00195{transform:matrix(0.234625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234625,0.000000,0.000000,0.250000,0,0);}
.m46_c00195{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.mc_c00195{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m4e_c00195{transform:matrix(0.240450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240450,0.000000,0.000000,0.250000,0,0);}
.m5a_c00195{transform:matrix(0.244875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244875,0.000000,0.000000,0.250000,0,0);}
.m35_c00195{transform:matrix(0.244925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244925,0.000000,0.000000,0.250000,0,0);}
.m44_c00195{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m18_c00195{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m55_c00195{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m59_c00195{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m43_c00195{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00195{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m32_c00195{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m31_c00195{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00195{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m30_c00195{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00195{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);}
.m4a_c00195{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00195{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00195{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m33_c00195{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m1_c00195{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00195{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m29_c00195{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00195{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mb_c00195{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m37_c00195{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m17_c00195{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00195{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00195{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m49_c00195{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m0_c00195{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m22_c00195{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m27_c00195{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00195{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);}
.m36_c00195{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m53_c00195{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m8_c00195{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);}
.m50_c00195{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m7_c00195{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m52_c00195{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00195{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.mf_c00195{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m2_c00195{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);}
.m3e_c00195{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00195{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m56_c00195{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);}
.m9_c00195{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);}
.m41_c00195{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);}
.m54_c00195{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m40_c00195{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00195{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);}
.m39_c00195{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m25_c00195{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m12_c00195{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);}
.m10_c00195{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);}
.m1e_c00195{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00195{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00195{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);}
.m1a_c00195{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00195{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m11_c00195{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);}
.m4_c00195{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);}
.me_c00195{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m38_c00195{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m15_c00195{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m14_c00195{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m16_c00195{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.ma_c00195{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m28_c00195{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m23_c00195{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);}
.m3f_c00195{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m13_c00195{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m20_c00195{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m19_c00195{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m42_c00195{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m5_c00195{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.md_c00195{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m3_c00195{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);}
.m6_c00195{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m26_c00195{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00195{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m21_c00195{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m48_c00195{transform:matrix(0.712500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.712500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.712500,0.000000,0.000000,0.250000,0,0);}
.m24_c00195{transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);}
.m45_c00195{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m34_c00195{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00195{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m51_c00195{transform:matrix(0.822500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.822500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.822500,0.000000,0.000000,0.250000,0,0);}
.v1_c00195{vertical-align:-2.880000px;}
.v0_c00195{vertical-align:0.000000px;}
.v2_c00195{vertical-align:11.520000px;}
.ls0_c00195{letter-spacing:0.000000px;}
.sc__c00195{text-shadow:none;}
.sc0_c00195{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00195{-webkit-text-stroke:0px transparent;}
.sc0_c00195{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00195{word-spacing:0.000000px;}
.ws0_c00195{word-spacing:159.331200px;}
.ws1_c00195{word-spacing:799.828800px;}
.fc0_c00195{color:transparent;}
.fsa_c00195{font-size:34.560000px;}
.fs2_c00195{font-size:37.440000px;}
.fs10_c00195{font-size:40.320000px;}
.fs9_c00195{font-size:43.200000px;}
.fsb_c00195{font-size:46.080000px;}
.fs6_c00195{font-size:48.960000px;}
.fs1_c00195{font-size:51.840000px;}
.fs3_c00195{font-size:54.720000px;}
.fs7_c00195{font-size:57.600000px;}
.fs5_c00195{font-size:60.480000px;}
.fs4_c00195{font-size:63.360000px;}
.fs8_c00195{font-size:69.120000px;}
.fsc_c00195{font-size:72.000000px;}
.fsd_c00195{font-size:74.880000px;}
.fs0_c00195{font-size:77.760000px;}
.fse_c00195{font-size:103.680000px;}
.fsf_c00195{font-size:112.320000px;}
.y0_c00195{bottom:0.000000px;}
.y74_c00195{bottom:84.960000px;}
.y6d_c00195{bottom:116.640000px;}
.y6e_c00195{bottom:118.800000px;}
.y6c_c00195{bottom:120.960000px;}
.y6f_c00195{bottom:121.680000px;}
.y70_c00195{bottom:122.400000px;}
.y71_c00195{bottom:123.120000px;}
.y72_c00195{bottom:123.840000px;}
.y73_c00195{bottom:126.000000px;}
.y68_c00195{bottom:161.280000px;}
.y69_c00195{bottom:162.000000px;}
.y6b_c00195{bottom:164.160000px;}
.y6a_c00195{bottom:164.880000px;}
.y67_c00195{bottom:165.600000px;}
.y62_c00195{bottom:197.280000px;}
.y61_c00195{bottom:203.040000px;}
.y63_c00195{bottom:205.920000px;}
.y64_c00195{bottom:207.360000px;}
.y60_c00195{bottom:208.080000px;}
.y65_c00195{bottom:208.800000px;}
.y66_c00195{bottom:209.520000px;}
.y5e_c00195{bottom:240.480000px;}
.y5c_c00195{bottom:246.960000px;}
.y5d_c00195{bottom:247.680000px;}
.y5f_c00195{bottom:249.120000px;}
.y5b_c00195{bottom:250.560000px;}
.y57_c00195{bottom:290.880000px;}
.y58_c00195{bottom:291.600000px;}
.y59_c00195{bottom:293.760000px;}
.y5a_c00195{bottom:294.480000px;}
.y53_c00195{bottom:322.560000px;}
.y52_c00195{bottom:326.160000px;}
.y55_c00195{bottom:327.600000px;}
.y54_c00195{bottom:328.320000px;}
.y56_c00195{bottom:329.040000px;}
.y4d_c00195{bottom:365.040000px;}
.y4b_c00195{bottom:366.480000px;}
.y4c_c00195{bottom:367.200000px;}
.y4e_c00195{bottom:367.920000px;}
.y4f_c00195{bottom:368.640000px;}
.y50_c00195{bottom:369.360000px;}
.y4a_c00195{bottom:370.080000px;}
.y51_c00195{bottom:370.800000px;}
.y47_c00195{bottom:408.960000px;}
.y48_c00195{bottom:411.840000px;}
.y46_c00195{bottom:413.280000px;}
.y49_c00195{bottom:414.000000px;}
.y42_c00195{bottom:452.160000px;}
.y43_c00195{bottom:454.320000px;}
.y40_c00195{bottom:455.040000px;}
.y41_c00195{bottom:456.480000px;}
.y45_c00195{bottom:457.200000px;}
.y44_c00195{bottom:457.920000px;}
.y3c_c00195{bottom:495.360000px;}
.y3e_c00195{bottom:498.960000px;}
.y3b_c00195{bottom:499.680000px;}
.y3d_c00195{bottom:500.400000px;}
.y3f_c00195{bottom:501.120000px;}
.y3a_c00195{bottom:539.280000px;}
.y39_c00195{bottom:540.720000px;}
.y35_c00195{bottom:571.680000px;}
.y33_c00195{bottom:572.400000px;}
.y34_c00195{bottom:573.120000px;}
.y37_c00195{bottom:573.840000px;}
.y38_c00195{bottom:574.560000px;}
.y36_c00195{bottom:575.280000px;}
.y30_c00195{bottom:613.440000px;}
.y31_c00195{bottom:615.600000px;}
.y2e_c00195{bottom:616.320000px;}
.y2f_c00195{bottom:617.760000px;}
.y32_c00195{bottom:618.480000px;}
.y2b_c00195{bottom:657.360000px;}
.y2d_c00195{bottom:658.080000px;}
.y2c_c00195{bottom:658.800000px;}
.y29_c00195{bottom:659.520000px;}
.y2a_c00195{bottom:660.960000px;}
.y26_c00195{bottom:700.560000px;}
.y28_c00195{bottom:702.000000px;}
.y24_c00195{bottom:702.720000px;}
.y27_c00195{bottom:703.440000px;}
.y25_c00195{bottom:704.160000px;}
.y23_c00195{bottom:743.040000px;}
.y20_c00195{bottom:743.760000px;}
.y21_c00195{bottom:745.200000px;}
.y1e_c00195{bottom:745.920000px;}
.y1f_c00195{bottom:746.640000px;}
.y22_c00195{bottom:747.360000px;}
.y1b_c00195{bottom:799.920000px;}
.y1c_c00195{bottom:800.640000px;}
.y1d_c00195{bottom:801.360000px;}
.y19_c00195{bottom:803.520000px;}
.y1a_c00195{bottom:804.960000px;}
.y18_c00195{bottom:805.680000px;}
.y17_c00195{bottom:872.640000px;}
.y14_c00195{bottom:874.800000px;}
.y16_c00195{bottom:875.520000px;}
.y15_c00195{bottom:876.240000px;}
.y12_c00195{bottom:916.560000px;}
.yf_c00195{bottom:917.280000px;}
.ye_c00195{bottom:918.000000px;}
.y13_c00195{bottom:918.720000px;}
.y11_c00195{bottom:919.440000px;}
.y10_c00195{bottom:920.160000px;}
.yd_c00195{bottom:960.480000px;}
.yc_c00195{bottom:961.200000px;}
.y9_c00195{bottom:961.920000px;}
.ya_c00195{bottom:962.640000px;}
.yb_c00195{bottom:963.360000px;}
.y2_c00195{bottom:1001.520000px;}
.y7_c00195{bottom:1002.240000px;}
.y6_c00195{bottom:1002.960000px;}
.y8_c00195{bottom:1005.120000px;}
.y3_c00195{bottom:1005.840000px;}
.y4_c00195{bottom:1006.560000px;}
.y5_c00195{bottom:1007.280000px;}
.y1_c00195{bottom:1105.920000px;}
.hc_c00195{height:31.100625px;}
.h4_c00195{height:33.692344px;}
.h12_c00195{height:36.284062px;}
.hb_c00195{height:38.875781px;}
.hd_c00195{height:41.467500px;}
.h8_c00195{height:44.059219px;}
.h3_c00195{height:46.650937px;}
.h5_c00195{height:49.242656px;}
.h9_c00195{height:51.834375px;}
.h7_c00195{height:54.426094px;}
.h6_c00195{height:57.017812px;}
.ha_c00195{height:62.201250px;}
.he_c00195{height:64.792969px;}
.hf_c00195{height:67.384687px;}
.h2_c00195{height:69.976406px;}
.h10_c00195{height:93.301875px;}
.h11_c00195{height:101.077031px;}
.h1_c00195{height:1151.250000px;}
.h0_c00195{height:1151.280000px;}
.w0_c00195{width:793.440000px;}
.w1_c00195{width:793.500000px;}
.x0_c00195{left:0.000000px;}
.x2_c00195{left:84.960000px;}
.x3c_c00195{left:86.400000px;}
.x46_c00195{left:89.280000px;}
.x13_c00195{left:117.360000px;}
.x2a_c00195{left:136.800000px;}
.x21_c00195{left:141.120000px;}
.x3d_c00195{left:146.880000px;}
.x40_c00195{left:149.040000px;}
.x47_c00195{left:151.200000px;}
.xd_c00195{left:160.560000px;}
.x1a_c00195{left:169.920000px;}
.x3_c00195{left:180.720000px;}
.x3a_c00195{left:182.160000px;}
.x22_c00195{left:183.600000px;}
.x37_c00195{left:190.800000px;}
.x33_c00195{left:192.960000px;}
.x1b_c00195{left:203.040000px;}
.x4_c00195{left:212.400000px;}
.x41_c00195{left:222.480000px;}
.x14_c00195{left:223.920000px;}
.x30_c00195{left:234.720000px;}
.x48_c00195{left:236.880000px;}
.x5_c00195{left:246.240000px;}
.x6_c00195{left:267.840000px;}
.x3e_c00195{left:277.200000px;}
.xe_c00195{left:278.640000px;}
.x34_c00195{left:287.280000px;}
.x7_c00195{left:289.440000px;}
.x49_c00195{left:290.880000px;}
.x1c_c00195{left:300.240000px;}
.xf_c00195{left:310.320000px;}
.x8_c00195{left:321.120000px;}
.x35_c00195{left:331.200000px;}
.x4a_c00195{left:334.800000px;}
.x45_c00195{left:342.000000px;}
.x2b_c00195{left:344.160000px;}
.x23_c00195{left:356.400000px;}
.x1d_c00195{left:364.320000px;}
.x3f_c00195{left:374.400000px;}
.x9_c00195{left:385.920000px;}
.x10_c00195{left:397.440000px;}
.x42_c00195{left:406.800000px;}
.x44_c00195{left:417.600000px;}
.x15_c00195{left:419.040000px;}
.x4b_c00195{left:421.200000px;}
.x1e_c00195{left:451.440000px;}
.x24_c00195{left:454.320000px;}
.x43_c00195{left:460.800000px;}
.x11_c00195{left:462.240000px;}
.x16_c00195{left:463.680000px;}
.x31_c00195{left:471.600000px;}
.x2f_c00195{left:473.040000px;}
.x4c_c00195{left:475.200000px;}
.x32_c00195{left:504.000000px;}
.x4d_c00195{left:506.160000px;}
.x25_c00195{left:516.240000px;}
.x17_c00195{left:526.320000px;}
.x1f_c00195{left:548.640000px;}
.x4e_c00195{left:552.240000px;}
.x36_c00195{left:558.000000px;}
.x2c_c00195{left:559.440000px;}
.x26_c00195{left:568.800000px;}
.xa_c00195{left:570.240000px;}
.x20_c00195{left:591.120000px;}
.x18_c00195{left:602.640000px;}
.x12_c00195{left:614.160000px;}
.x38_c00195{left:622.800000px;}
.x2d_c00195{left:624.240000px;}
.x4f_c00195{left:626.400000px;}
.x27_c00195{left:634.320000px;}
.xb_c00195{left:645.120000px;}
.x19_c00195{left:676.800000px;}
.xc_c00195{left:688.320000px;}
.x3b_c00195{left:696.960000px;}
.x28_c00195{left:698.400000px;}
.x50_c00195{left:701.280000px;}
.x1_c00195{left:703.440000px;}
.x39_c00195{left:727.920000px;}
.x2e_c00195{left:729.360000px;}
.x29_c00195{left:740.880000px;}
@media print{
.v1_c00195{vertical-align:-2.560000pt;}
.v0_c00195{vertical-align:0.000000pt;}
.v2_c00195{vertical-align:10.240000pt;}
.ls0_c00195{letter-spacing:0.000000pt;}
.ws2_c00195{word-spacing:0.000000pt;}
.ws0_c00195{word-spacing:141.627733pt;}
.ws1_c00195{word-spacing:710.958933pt;}
.fsa_c00195{font-size:30.720000pt;}
.fs2_c00195{font-size:33.280000pt;}
.fs10_c00195{font-size:35.840000pt;}
.fs9_c00195{font-size:38.400000pt;}
.fsb_c00195{font-size:40.960000pt;}
.fs6_c00195{font-size:43.520000pt;}
.fs1_c00195{font-size:46.080000pt;}
.fs3_c00195{font-size:48.640000pt;}
.fs7_c00195{font-size:51.200000pt;}
.fs5_c00195{font-size:53.760000pt;}
.fs4_c00195{font-size:56.320000pt;}
.fs8_c00195{font-size:61.440000pt;}
.fsc_c00195{font-size:64.000000pt;}
.fsd_c00195{font-size:66.560000pt;}
.fs0_c00195{font-size:69.120000pt;}
.fse_c00195{font-size:92.160000pt;}
.fsf_c00195{font-size:99.840000pt;}
.y0_c00195{bottom:0.000000pt;}
.y74_c00195{bottom:75.520000pt;}
.y6d_c00195{bottom:103.680000pt;}
.y6e_c00195{bottom:105.600000pt;}
.y6c_c00195{bottom:107.520000pt;}
.y6f_c00195{bottom:108.160000pt;}
.y70_c00195{bottom:108.800000pt;}
.y71_c00195{bottom:109.440000pt;}
.y72_c00195{bottom:110.080000pt;}
.y73_c00195{bottom:112.000000pt;}
.y68_c00195{bottom:143.360000pt;}
.y69_c00195{bottom:144.000000pt;}
.y6b_c00195{bottom:145.920000pt;}
.y6a_c00195{bottom:146.560000pt;}
.y67_c00195{bottom:147.200000pt;}
.y62_c00195{bottom:175.360000pt;}
.y61_c00195{bottom:180.480000pt;}
.y63_c00195{bottom:183.040000pt;}
.y64_c00195{bottom:184.320000pt;}
.y60_c00195{bottom:184.960000pt;}
.y65_c00195{bottom:185.600000pt;}
.y66_c00195{bottom:186.240000pt;}
.y5e_c00195{bottom:213.760000pt;}
.y5c_c00195{bottom:219.520000pt;}
.y5d_c00195{bottom:220.160000pt;}
.y5f_c00195{bottom:221.440000pt;}
.y5b_c00195{bottom:222.720000pt;}
.y57_c00195{bottom:258.560000pt;}
.y58_c00195{bottom:259.200000pt;}
.y59_c00195{bottom:261.120000pt;}
.y5a_c00195{bottom:261.760000pt;}
.y53_c00195{bottom:286.720000pt;}
.y52_c00195{bottom:289.920000pt;}
.y55_c00195{bottom:291.200000pt;}
.y54_c00195{bottom:291.840000pt;}
.y56_c00195{bottom:292.480000pt;}
.y4d_c00195{bottom:324.480000pt;}
.y4b_c00195{bottom:325.760000pt;}
.y4c_c00195{bottom:326.400000pt;}
.y4e_c00195{bottom:327.040000pt;}
.y4f_c00195{bottom:327.680000pt;}
.y50_c00195{bottom:328.320000pt;}
.y4a_c00195{bottom:328.960000pt;}
.y51_c00195{bottom:329.600000pt;}
.y47_c00195{bottom:363.520000pt;}
.y48_c00195{bottom:366.080000pt;}
.y46_c00195{bottom:367.360000pt;}
.y49_c00195{bottom:368.000000pt;}
.y42_c00195{bottom:401.920000pt;}
.y43_c00195{bottom:403.840000pt;}
.y40_c00195{bottom:404.480000pt;}
.y41_c00195{bottom:405.760000pt;}
.y45_c00195{bottom:406.400000pt;}
.y44_c00195{bottom:407.040000pt;}
.y3c_c00195{bottom:440.320000pt;}
.y3e_c00195{bottom:443.520000pt;}
.y3b_c00195{bottom:444.160000pt;}
.y3d_c00195{bottom:444.800000pt;}
.y3f_c00195{bottom:445.440000pt;}
.y3a_c00195{bottom:479.360000pt;}
.y39_c00195{bottom:480.640000pt;}
.y35_c00195{bottom:508.160000pt;}
.y33_c00195{bottom:508.800000pt;}
.y34_c00195{bottom:509.440000pt;}
.y37_c00195{bottom:510.080000pt;}
.y38_c00195{bottom:510.720000pt;}
.y36_c00195{bottom:511.360000pt;}
.y30_c00195{bottom:545.280000pt;}
.y31_c00195{bottom:547.200000pt;}
.y2e_c00195{bottom:547.840000pt;}
.y2f_c00195{bottom:549.120000pt;}
.y32_c00195{bottom:549.760000pt;}
.y2b_c00195{bottom:584.320000pt;}
.y2d_c00195{bottom:584.960000pt;}
.y2c_c00195{bottom:585.600000pt;}
.y29_c00195{bottom:586.240000pt;}
.y2a_c00195{bottom:587.520000pt;}
.y26_c00195{bottom:622.720000pt;}
.y28_c00195{bottom:624.000000pt;}
.y24_c00195{bottom:624.640000pt;}
.y27_c00195{bottom:625.280000pt;}
.y25_c00195{bottom:625.920000pt;}
.y23_c00195{bottom:660.480000pt;}
.y20_c00195{bottom:661.120000pt;}
.y21_c00195{bottom:662.400000pt;}
.y1e_c00195{bottom:663.040000pt;}
.y1f_c00195{bottom:663.680000pt;}
.y22_c00195{bottom:664.320000pt;}
.y1b_c00195{bottom:711.040000pt;}
.y1c_c00195{bottom:711.680000pt;}
.y1d_c00195{bottom:712.320000pt;}
.y19_c00195{bottom:714.240000pt;}
.y1a_c00195{bottom:715.520000pt;}
.y18_c00195{bottom:716.160000pt;}
.y17_c00195{bottom:775.680000pt;}
.y14_c00195{bottom:777.600000pt;}
.y16_c00195{bottom:778.240000pt;}
.y15_c00195{bottom:778.880000pt;}
.y12_c00195{bottom:814.720000pt;}
.yf_c00195{bottom:815.360000pt;}
.ye_c00195{bottom:816.000000pt;}
.y13_c00195{bottom:816.640000pt;}
.y11_c00195{bottom:817.280000pt;}
.y10_c00195{bottom:817.920000pt;}
.yd_c00195{bottom:853.760000pt;}
.yc_c00195{bottom:854.400000pt;}
.y9_c00195{bottom:855.040000pt;}
.ya_c00195{bottom:855.680000pt;}
.yb_c00195{bottom:856.320000pt;}
.y2_c00195{bottom:890.240000pt;}
.y7_c00195{bottom:890.880000pt;}
.y6_c00195{bottom:891.520000pt;}
.y8_c00195{bottom:893.440000pt;}
.y3_c00195{bottom:894.080000pt;}
.y4_c00195{bottom:894.720000pt;}
.y5_c00195{bottom:895.360000pt;}
.y1_c00195{bottom:983.040000pt;}
.hc_c00195{height:27.645000pt;}
.h4_c00195{height:29.948750pt;}
.h12_c00195{height:32.252500pt;}
.hb_c00195{height:34.556250pt;}
.hd_c00195{height:36.860000pt;}
.h8_c00195{height:39.163750pt;}
.h3_c00195{height:41.467500pt;}
.h5_c00195{height:43.771250pt;}
.h9_c00195{height:46.075000pt;}
.h7_c00195{height:48.378750pt;}
.h6_c00195{height:50.682500pt;}
.ha_c00195{height:55.290000pt;}
.he_c00195{height:57.593750pt;}
.hf_c00195{height:59.897500pt;}
.h2_c00195{height:62.201250pt;}
.h10_c00195{height:82.935000pt;}
.h11_c00195{height:89.846250pt;}
.h1_c00195{height:1023.333333pt;}
.h0_c00195{height:1023.360000pt;}
.w0_c00195{width:705.280000pt;}
.w1_c00195{width:705.333333pt;}
.x0_c00195{left:0.000000pt;}
.x2_c00195{left:75.520000pt;}
.x3c_c00195{left:76.800000pt;}
.x46_c00195{left:79.360000pt;}
.x13_c00195{left:104.320000pt;}
.x2a_c00195{left:121.600000pt;}
.x21_c00195{left:125.440000pt;}
.x3d_c00195{left:130.560000pt;}
.x40_c00195{left:132.480000pt;}
.x47_c00195{left:134.400000pt;}
.xd_c00195{left:142.720000pt;}
.x1a_c00195{left:151.040000pt;}
.x3_c00195{left:160.640000pt;}
.x3a_c00195{left:161.920000pt;}
.x22_c00195{left:163.200000pt;}
.x37_c00195{left:169.600000pt;}
.x33_c00195{left:171.520000pt;}
.x1b_c00195{left:180.480000pt;}
.x4_c00195{left:188.800000pt;}
.x41_c00195{left:197.760000pt;}
.x14_c00195{left:199.040000pt;}
.x30_c00195{left:208.640000pt;}
.x48_c00195{left:210.560000pt;}
.x5_c00195{left:218.880000pt;}
.x6_c00195{left:238.080000pt;}
.x3e_c00195{left:246.400000pt;}
.xe_c00195{left:247.680000pt;}
.x34_c00195{left:255.360000pt;}
.x7_c00195{left:257.280000pt;}
.x49_c00195{left:258.560000pt;}
.x1c_c00195{left:266.880000pt;}
.xf_c00195{left:275.840000pt;}
.x8_c00195{left:285.440000pt;}
.x35_c00195{left:294.400000pt;}
.x4a_c00195{left:297.600000pt;}
.x45_c00195{left:304.000000pt;}
.x2b_c00195{left:305.920000pt;}
.x23_c00195{left:316.800000pt;}
.x1d_c00195{left:323.840000pt;}
.x3f_c00195{left:332.800000pt;}
.x9_c00195{left:343.040000pt;}
.x10_c00195{left:353.280000pt;}
.x42_c00195{left:361.600000pt;}
.x44_c00195{left:371.200000pt;}
.x15_c00195{left:372.480000pt;}
.x4b_c00195{left:374.400000pt;}
.x1e_c00195{left:401.280000pt;}
.x24_c00195{left:403.840000pt;}
.x43_c00195{left:409.600000pt;}
.x11_c00195{left:410.880000pt;}
.x16_c00195{left:412.160000pt;}
.x31_c00195{left:419.200000pt;}
.x2f_c00195{left:420.480000pt;}
.x4c_c00195{left:422.400000pt;}
.x32_c00195{left:448.000000pt;}
.x4d_c00195{left:449.920000pt;}
.x25_c00195{left:458.880000pt;}
.x17_c00195{left:467.840000pt;}
.x1f_c00195{left:487.680000pt;}
.x4e_c00195{left:490.880000pt;}
.x36_c00195{left:496.000000pt;}
.x2c_c00195{left:497.280000pt;}
.x26_c00195{left:505.600000pt;}
.xa_c00195{left:506.880000pt;}
.x20_c00195{left:525.440000pt;}
.x18_c00195{left:535.680000pt;}
.x12_c00195{left:545.920000pt;}
.x38_c00195{left:553.600000pt;}
.x2d_c00195{left:554.880000pt;}
.x4f_c00195{left:556.800000pt;}
.x27_c00195{left:563.840000pt;}
.xb_c00195{left:573.440000pt;}
.x19_c00195{left:601.600000pt;}
.xc_c00195{left:611.840000pt;}
.x3b_c00195{left:619.520000pt;}
.x28_c00195{left:620.800000pt;}
.x50_c00195{left:623.360000pt;}
.x1_c00195{left:625.280000pt;}
.x39_c00195{left:647.040000pt;}
.x2e_c00195{left:648.320000pt;}
.x29_c00195{left:658.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3eab38f44ff378f7cc961284.woff2')format("woff");}.ff1_c00196{font-family:ff1_c00196;line-height:1.109863;font-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_c00196{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);}
.m3e_c00196{transform:matrix(0.240100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240100,0.000000,0.000000,0.250000,0,0);}
.m31_c00196{transform:matrix(0.243300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243300,0.000000,0.000000,0.250000,0,0);}
.m41_c00196{transform:matrix(0.246600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246600,0.000000,0.000000,0.250000,0,0);}
.m36_c00196{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m45_c00196{transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);}
.m3d_c00196{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00196{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m11_c00196{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00196{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00196{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_c00196{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m39_c00196{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m33_c00196{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_c00196{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00196{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m34_c00196{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m14_c00196{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m16_c00196{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m15_c00196{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m12_c00196{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.ma_c00196{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00196{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m49_c00196{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00196{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m26_c00196{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m46_c00196{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m47_c00196{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m20_c00196{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m10_c00196{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m18_c00196{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m22_c00196{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.md_c00196{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m43_c00196{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m25_c00196{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00196{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00196{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m5_c00196{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m6_c00196{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.me_c00196{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m35_c00196{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2_c00196{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m28_c00196{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m3_c00196{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m1_c00196{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);}
.m0_c00196{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00196{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);}
.m1b_c00196{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.mc_c00196{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);}
.mf_c00196{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);}
.m24_c00196{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);}
.m9_c00196{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m23_c00196{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00196{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_c00196{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00196{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);}
.m2b_c00196{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m7_c00196{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m19_c00196{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.mb_c00196{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);}
.m32_c00196{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m4_c00196{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m38_c00196{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m30_c00196{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m48_c00196{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m8_c00196{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00196{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);}
.m29_c00196{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);}
.m40_c00196{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);}
.m37_c00196{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m44_c00196{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);}
.m3a_c00196{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m21_c00196{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m42_c00196{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00196{transform:matrix(1.675000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.675000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.675000,0.000000,0.000000,0.250000,0,0);}
.v0_c00196{vertical-align:0.000000px;}
.v1_c00196{vertical-align:5.760000px;}
.ls0_c00196{letter-spacing:0.000000px;}
.sc__c00196{text-shadow:none;}
.sc0_c00196{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00196{-webkit-text-stroke:0px transparent;}
.sc0_c00196{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00196{word-spacing:0.000000px;}
.ws0_c00196{word-spacing:78.498000px;}
.fc0_c00196{color:transparent;}
.fsc_c00196{font-size:23.040000px;}
.fse_c00196{font-size:34.560000px;}
.fsb_c00196{font-size:37.440000px;}
.fs6_c00196{font-size:40.320000px;}
.fs7_c00196{font-size:48.960000px;}
.fs5_c00196{font-size:51.840000px;}
.fs1_c00196{font-size:54.720000px;}
.fs4_c00196{font-size:57.600000px;}
.fs0_c00196{font-size:60.480000px;}
.fsa_c00196{font-size:63.360000px;}
.fs2_c00196{font-size:66.240000px;}
.fs3_c00196{font-size:69.120000px;}
.fsd_c00196{font-size:72.000000px;}
.fs8_c00196{font-size:74.880000px;}
.fs9_c00196{font-size:77.760000px;}
.y0_c00196{bottom:0.000000px;}
.y66_c00196{bottom:92.880000px;}
.y67_c00196{bottom:95.760000px;}
.y68_c00196{bottom:96.480000px;}
.y65_c00196{bottom:97.200000px;}
.y64_c00196{bottom:98.640000px;}
.y61_c00196{bottom:136.080000px;}
.y63_c00196{bottom:138.960000px;}
.y62_c00196{bottom:139.680000px;}
.y60_c00196{bottom:141.120000px;}
.y5b_c00196{bottom:179.280000px;}
.y5d_c00196{bottom:181.440000px;}
.y5c_c00196{bottom:182.160000px;}
.y5e_c00196{bottom:182.880000px;}
.y5a_c00196{bottom:184.320000px;}
.y5f_c00196{bottom:185.040000px;}
.y57_c00196{bottom:222.480000px;}
.y55_c00196{bottom:223.200000px;}
.y56_c00196{bottom:223.920000px;}
.y58_c00196{bottom:225.360000px;}
.y54_c00196{bottom:226.800000px;}
.y59_c00196{bottom:228.240000px;}
.y51_c00196{bottom:264.960000px;}
.y4f_c00196{bottom:265.680000px;}
.y52_c00196{bottom:267.840000px;}
.y50_c00196{bottom:268.560000px;}
.y4e_c00196{bottom:270.000000px;}
.y53_c00196{bottom:270.720000px;}
.y49_c00196{bottom:308.880000px;}
.y4b_c00196{bottom:311.040000px;}
.y4d_c00196{bottom:311.760000px;}
.y48_c00196{bottom:312.480000px;}
.y4a_c00196{bottom:313.200000px;}
.y4c_c00196{bottom:313.920000px;}
.y47_c00196{bottom:351.360000px;}
.y46_c00196{bottom:355.680000px;}
.y43_c00196{bottom:385.200000px;}
.y45_c00196{bottom:385.920000px;}
.y44_c00196{bottom:386.640000px;}
.y41_c00196{bottom:387.360000px;}
.y42_c00196{bottom:388.080000px;}
.y3c_c00196{bottom:426.960000px;}
.y3f_c00196{bottom:429.120000px;}
.y3b_c00196{bottom:429.840000px;}
.y3d_c00196{bottom:430.560000px;}
.y3e_c00196{bottom:431.280000px;}
.y40_c00196{bottom:432.000000px;}
.y39_c00196{bottom:472.320000px;}
.y3a_c00196{bottom:473.040000px;}
.y38_c00196{bottom:474.480000px;}
.y35_c00196{bottom:524.160000px;}
.y36_c00196{bottom:526.320000px;}
.y34_c00196{bottom:527.760000px;}
.y37_c00196{bottom:528.480000px;}
.y32_c00196{bottom:569.520000px;}
.y33_c00196{bottom:570.240000px;}
.y31_c00196{bottom:572.400000px;}
.y2e_c00196{bottom:622.080000px;}
.y2f_c00196{bottom:623.520000px;}
.y2c_c00196{bottom:624.240000px;}
.y30_c00196{bottom:625.680000px;}
.y2d_c00196{bottom:626.400000px;}
.y2a_c00196{bottom:666.720000px;}
.y2b_c00196{bottom:668.160000px;}
.y29_c00196{bottom:669.600000px;}
.y24_c00196{bottom:718.560000px;}
.y27_c00196{bottom:719.280000px;}
.y25_c00196{bottom:720.720000px;}
.y23_c00196{bottom:721.440000px;}
.y26_c00196{bottom:722.880000px;}
.y28_c00196{bottom:723.600000px;}
.y21_c00196{bottom:763.920000px;}
.y22_c00196{bottom:765.360000px;}
.y1e_c00196{bottom:766.800000px;}
.y1f_c00196{bottom:767.520000px;}
.y20_c00196{bottom:768.240000px;}
.y19_c00196{bottom:815.040000px;}
.y1a_c00196{bottom:815.760000px;}
.y1d_c00196{bottom:816.480000px;}
.y1c_c00196{bottom:817.200000px;}
.y18_c00196{bottom:817.920000px;}
.y1b_c00196{bottom:820.080000px;}
.y17_c00196{bottom:859.680000px;}
.y16_c00196{bottom:891.360000px;}
.y13_c00196{bottom:892.800000px;}
.y14_c00196{bottom:894.960000px;}
.y15_c00196{bottom:895.680000px;}
.yf_c00196{bottom:933.840000px;}
.ye_c00196{bottom:936.000000px;}
.yb_c00196{bottom:937.440000px;}
.yd_c00196{bottom:938.160000px;}
.yc_c00196{bottom:938.880000px;}
.y8_c00196{bottom:967.680000px;}
.y12_c00196{bottom:968.400000px;}
.y9_c00196{bottom:969.840000px;}
.ya_c00196{bottom:970.560000px;}
.y4_c00196{bottom:1010.880000px;}
.y6_c00196{bottom:1011.600000px;}
.y11_c00196{bottom:1012.320000px;}
.y5_c00196{bottom:1013.040000px;}
.y7_c00196{bottom:1013.760000px;}
.y1_c00196{bottom:1054.080000px;}
.y2_c00196{bottom:1055.520000px;}
.y3_c00196{bottom:1056.960000px;}
.y10_c00196{bottom:1110.240000px;}
.hf_c00196{height:20.733750px;}
.h11_c00196{height:31.100625px;}
.he_c00196{height:33.692344px;}
.h8_c00196{height:36.284062px;}
.h9_c00196{height:44.059219px;}
.h7_c00196{height:46.650937px;}
.h3_c00196{height:49.242656px;}
.h6_c00196{height:51.834375px;}
.h2_c00196{height:54.426094px;}
.hd_c00196{height:57.017812px;}
.hc_c00196{height:57.594375px;}
.h4_c00196{height:59.609531px;}
.h5_c00196{height:62.201250px;}
.h10_c00196{height:64.792969px;}
.ha_c00196{height:67.384687px;}
.hb_c00196{height:69.976406px;}
.h1_c00196{height:1151.250000px;}
.h0_c00196{height:1151.280000px;}
.w0_c00196{width:792.720000px;}
.w1_c00196{width:792.750000px;}
.x0_c00196{left:0.000000px;}
.x1_c00196{left:84.240000px;}
.x30_c00196{left:116.640000px;}
.x2f_c00196{left:145.440000px;}
.x2_c00196{left:146.880000px;}
.x29_c00196{left:188.640000px;}
.x3_c00196{left:190.080000px;}
.xf_c00196{left:200.880000px;}
.x1c_c00196{left:211.680000px;}
.x17_c00196{left:222.480000px;}
.x12_c00196{left:233.280000px;}
.x4_c00196{left:244.080000px;}
.x10_c00196{left:253.440000px;}
.x1d_c00196{left:275.760000px;}
.x23_c00196{left:277.200000px;}
.x11_c00196{left:298.080000px;}
.x21_c00196{left:307.440000px;}
.x5_c00196{left:308.880000px;}
.x24_c00196{left:318.960000px;}
.x13_c00196{left:330.480000px;}
.x7_c00196{left:352.080000px;}
.x18_c00196{left:361.440000px;}
.x2e_c00196{left:362.880000px;}
.x8_c00196{left:406.080000px;}
.x25_c00196{left:447.840000px;}
.x6_c00196{left:450.000000px;}
.x19_c00196{left:460.080000px;}
.x2a_c00196{left:503.280000px;}
.x2c_c00196{left:512.640000px;}
.x1e_c00196{left:514.080000px;}
.x1a_c00196{left:524.880000px;}
.x1f_c00196{left:534.240000px;}
.x14_c00196{left:535.680000px;}
.x20_c00196{left:568.800000px;}
.x15_c00196{left:570.240000px;}
.x26_c00196{left:577.440000px;}
.xc_c00196{left:578.880000px;}
.xa_c00196{left:580.320000px;}
.x22_c00196{left:601.920000px;}
.x2b_c00196{left:632.160000px;}
.xd_c00196{left:633.600000px;}
.x1b_c00196{left:643.680000px;}
.xb_c00196{left:686.880000px;}
.x2d_c00196{left:695.520000px;}
.xe_c00196{left:697.680000px;}
.x9_c00196{left:704.160000px;}
.x27_c00196{left:706.320000px;}
.x28_c00196{left:725.760000px;}
.x16_c00196{left:727.920000px;}
@media print{
.v0_c00196{vertical-align:0.000000pt;}
.v1_c00196{vertical-align:5.120000pt;}
.ls0_c00196{letter-spacing:0.000000pt;}
.ws1_c00196{word-spacing:0.000000pt;}
.ws0_c00196{word-spacing:69.776000pt;}
.fsc_c00196{font-size:20.480000pt;}
.fse_c00196{font-size:30.720000pt;}
.fsb_c00196{font-size:33.280000pt;}
.fs6_c00196{font-size:35.840000pt;}
.fs7_c00196{font-size:43.520000pt;}
.fs5_c00196{font-size:46.080000pt;}
.fs1_c00196{font-size:48.640000pt;}
.fs4_c00196{font-size:51.200000pt;}
.fs0_c00196{font-size:53.760000pt;}
.fsa_c00196{font-size:56.320000pt;}
.fs2_c00196{font-size:58.880000pt;}
.fs3_c00196{font-size:61.440000pt;}
.fsd_c00196{font-size:64.000000pt;}
.fs8_c00196{font-size:66.560000pt;}
.fs9_c00196{font-size:69.120000pt;}
.y0_c00196{bottom:0.000000pt;}
.y66_c00196{bottom:82.560000pt;}
.y67_c00196{bottom:85.120000pt;}
.y68_c00196{bottom:85.760000pt;}
.y65_c00196{bottom:86.400000pt;}
.y64_c00196{bottom:87.680000pt;}
.y61_c00196{bottom:120.960000pt;}
.y63_c00196{bottom:123.520000pt;}
.y62_c00196{bottom:124.160000pt;}
.y60_c00196{bottom:125.440000pt;}
.y5b_c00196{bottom:159.360000pt;}
.y5d_c00196{bottom:161.280000pt;}
.y5c_c00196{bottom:161.920000pt;}
.y5e_c00196{bottom:162.560000pt;}
.y5a_c00196{bottom:163.840000pt;}
.y5f_c00196{bottom:164.480000pt;}
.y57_c00196{bottom:197.760000pt;}
.y55_c00196{bottom:198.400000pt;}
.y56_c00196{bottom:199.040000pt;}
.y58_c00196{bottom:200.320000pt;}
.y54_c00196{bottom:201.600000pt;}
.y59_c00196{bottom:202.880000pt;}
.y51_c00196{bottom:235.520000pt;}
.y4f_c00196{bottom:236.160000pt;}
.y52_c00196{bottom:238.080000pt;}
.y50_c00196{bottom:238.720000pt;}
.y4e_c00196{bottom:240.000000pt;}
.y53_c00196{bottom:240.640000pt;}
.y49_c00196{bottom:274.560000pt;}
.y4b_c00196{bottom:276.480000pt;}
.y4d_c00196{bottom:277.120000pt;}
.y48_c00196{bottom:277.760000pt;}
.y4a_c00196{bottom:278.400000pt;}
.y4c_c00196{bottom:279.040000pt;}
.y47_c00196{bottom:312.320000pt;}
.y46_c00196{bottom:316.160000pt;}
.y43_c00196{bottom:342.400000pt;}
.y45_c00196{bottom:343.040000pt;}
.y44_c00196{bottom:343.680000pt;}
.y41_c00196{bottom:344.320000pt;}
.y42_c00196{bottom:344.960000pt;}
.y3c_c00196{bottom:379.520000pt;}
.y3f_c00196{bottom:381.440000pt;}
.y3b_c00196{bottom:382.080000pt;}
.y3d_c00196{bottom:382.720000pt;}
.y3e_c00196{bottom:383.360000pt;}
.y40_c00196{bottom:384.000000pt;}
.y39_c00196{bottom:419.840000pt;}
.y3a_c00196{bottom:420.480000pt;}
.y38_c00196{bottom:421.760000pt;}
.y35_c00196{bottom:465.920000pt;}
.y36_c00196{bottom:467.840000pt;}
.y34_c00196{bottom:469.120000pt;}
.y37_c00196{bottom:469.760000pt;}
.y32_c00196{bottom:506.240000pt;}
.y33_c00196{bottom:506.880000pt;}
.y31_c00196{bottom:508.800000pt;}
.y2e_c00196{bottom:552.960000pt;}
.y2f_c00196{bottom:554.240000pt;}
.y2c_c00196{bottom:554.880000pt;}
.y30_c00196{bottom:556.160000pt;}
.y2d_c00196{bottom:556.800000pt;}
.y2a_c00196{bottom:592.640000pt;}
.y2b_c00196{bottom:593.920000pt;}
.y29_c00196{bottom:595.200000pt;}
.y24_c00196{bottom:638.720000pt;}
.y27_c00196{bottom:639.360000pt;}
.y25_c00196{bottom:640.640000pt;}
.y23_c00196{bottom:641.280000pt;}
.y26_c00196{bottom:642.560000pt;}
.y28_c00196{bottom:643.200000pt;}
.y21_c00196{bottom:679.040000pt;}
.y22_c00196{bottom:680.320000pt;}
.y1e_c00196{bottom:681.600000pt;}
.y1f_c00196{bottom:682.240000pt;}
.y20_c00196{bottom:682.880000pt;}
.y19_c00196{bottom:724.480000pt;}
.y1a_c00196{bottom:725.120000pt;}
.y1d_c00196{bottom:725.760000pt;}
.y1c_c00196{bottom:726.400000pt;}
.y18_c00196{bottom:727.040000pt;}
.y1b_c00196{bottom:728.960000pt;}
.y17_c00196{bottom:764.160000pt;}
.y16_c00196{bottom:792.320000pt;}
.y13_c00196{bottom:793.600000pt;}
.y14_c00196{bottom:795.520000pt;}
.y15_c00196{bottom:796.160000pt;}
.yf_c00196{bottom:830.080000pt;}
.ye_c00196{bottom:832.000000pt;}
.yb_c00196{bottom:833.280000pt;}
.yd_c00196{bottom:833.920000pt;}
.yc_c00196{bottom:834.560000pt;}
.y8_c00196{bottom:860.160000pt;}
.y12_c00196{bottom:860.800000pt;}
.y9_c00196{bottom:862.080000pt;}
.ya_c00196{bottom:862.720000pt;}
.y4_c00196{bottom:898.560000pt;}
.y6_c00196{bottom:899.200000pt;}
.y11_c00196{bottom:899.840000pt;}
.y5_c00196{bottom:900.480000pt;}
.y7_c00196{bottom:901.120000pt;}
.y1_c00196{bottom:936.960000pt;}
.y2_c00196{bottom:938.240000pt;}
.y3_c00196{bottom:939.520000pt;}
.y10_c00196{bottom:986.880000pt;}
.hf_c00196{height:18.430000pt;}
.h11_c00196{height:27.645000pt;}
.he_c00196{height:29.948750pt;}
.h8_c00196{height:32.252500pt;}
.h9_c00196{height:39.163750pt;}
.h7_c00196{height:41.467500pt;}
.h3_c00196{height:43.771250pt;}
.h6_c00196{height:46.075000pt;}
.h2_c00196{height:48.378750pt;}
.hd_c00196{height:50.682500pt;}
.hc_c00196{height:51.195000pt;}
.h4_c00196{height:52.986250pt;}
.h5_c00196{height:55.290000pt;}
.h10_c00196{height:57.593750pt;}
.ha_c00196{height:59.897500pt;}
.hb_c00196{height:62.201250pt;}
.h1_c00196{height:1023.333333pt;}
.h0_c00196{height:1023.360000pt;}
.w0_c00196{width:704.640000pt;}
.w1_c00196{width:704.666667pt;}
.x0_c00196{left:0.000000pt;}
.x1_c00196{left:74.880000pt;}
.x30_c00196{left:103.680000pt;}
.x2f_c00196{left:129.280000pt;}
.x2_c00196{left:130.560000pt;}
.x29_c00196{left:167.680000pt;}
.x3_c00196{left:168.960000pt;}
.xf_c00196{left:178.560000pt;}
.x1c_c00196{left:188.160000pt;}
.x17_c00196{left:197.760000pt;}
.x12_c00196{left:207.360000pt;}
.x4_c00196{left:216.960000pt;}
.x10_c00196{left:225.280000pt;}
.x1d_c00196{left:245.120000pt;}
.x23_c00196{left:246.400000pt;}
.x11_c00196{left:264.960000pt;}
.x21_c00196{left:273.280000pt;}
.x5_c00196{left:274.560000pt;}
.x24_c00196{left:283.520000pt;}
.x13_c00196{left:293.760000pt;}
.x7_c00196{left:312.960000pt;}
.x18_c00196{left:321.280000pt;}
.x2e_c00196{left:322.560000pt;}
.x8_c00196{left:360.960000pt;}
.x25_c00196{left:398.080000pt;}
.x6_c00196{left:400.000000pt;}
.x19_c00196{left:408.960000pt;}
.x2a_c00196{left:447.360000pt;}
.x2c_c00196{left:455.680000pt;}
.x1e_c00196{left:456.960000pt;}
.x1a_c00196{left:466.560000pt;}
.x1f_c00196{left:474.880000pt;}
.x14_c00196{left:476.160000pt;}
.x20_c00196{left:505.600000pt;}
.x15_c00196{left:506.880000pt;}
.x26_c00196{left:513.280000pt;}
.xc_c00196{left:514.560000pt;}
.xa_c00196{left:515.840000pt;}
.x22_c00196{left:535.040000pt;}
.x2b_c00196{left:561.920000pt;}
.xd_c00196{left:563.200000pt;}
.x1b_c00196{left:572.160000pt;}
.xb_c00196{left:610.560000pt;}
.x2d_c00196{left:618.240000pt;}
.xe_c00196{left:620.160000pt;}
.x9_c00196{left:625.920000pt;}
.x27_c00196{left:627.840000pt;}
.x28_c00196{left:645.120000pt;}
.x16_c00196{left:647.040000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2bc41a6ede027a8dd9b92da4.woff2')format("woff");}.ff1_c00197{font-family:ff1_c00197;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3d_c00197{transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);}
.m19_c00197{transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);}
.m3b_c00197{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);}
.m37_c00197{transform:matrix(0.230325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230325,0.000000,0.000000,0.250000,0,0);}
.m3a_c00197{transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);}
.m33_c00197{transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);}
.m40_c00197{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m3_c00197{transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);}
.m2a_c00197{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m4_c00197{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mc_c00197{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m11_c00197{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m38_c00197{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);}
.m48_c00197{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m6_c00197{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00197{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m10_c00197{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m16_c00197{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00197{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m13_c00197{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m21_c00197{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00197{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1_c00197{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m18_c00197{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m14_c00197{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m49_c00197{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m25_c00197{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m9_c00197{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m5_c00197{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m44_c00197{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m34_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);}
.m42_c00197{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m46_c00197{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mf_c00197{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.me_c00197{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00197{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m31_c00197{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m20_c00197{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m26_c00197{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m0_c00197{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_c00197{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00197{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_c00197{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.ma_c00197{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00197{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);}
.m43_c00197{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m23_c00197{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00197{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m28_c00197{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m15_c00197{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);}
.m2f_c00197{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m7_c00197{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m27_c00197{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);}
.m2e_c00197{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m39_c00197{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m47_c00197{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00197{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m29_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);}
.m22_c00197{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);}
.m32_c00197{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m2_c00197{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m45_c00197{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.mb_c00197{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);}
.m35_c00197{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);}
.m1f_c00197{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);}
.m24_c00197{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);}
.md_c00197{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m17_c00197{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);}
.m30_c00197{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00197{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m8_c00197{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);}
.m41_c00197{transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);}
.m36_c00197{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00197{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.v1_c00197{vertical-align:-11.520000px;}
.v2_c00197{vertical-align:-2.880000px;}
.v0_c00197{vertical-align:0.000000px;}
.ls1_c00197{letter-spacing:0.000000px;}
.ls0_c00197{letter-spacing:177.265680px;}
.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:-1.539360px;}
.ws2_c00197{word-spacing:0.000000px;}
.ws1_c00197{word-spacing:83.693131px;}
.fc0_c00197{color:transparent;}
.fs7_c00197{font-size:34.560000px;}
.fsd_c00197{font-size:37.440000px;}
.fse_c00197{font-size:40.320000px;}
.fsc_c00197{font-size:46.080000px;}
.fsb_c00197{font-size:48.960000px;}
.fs2_c00197{font-size:51.840000px;}
.fs5_c00197{font-size:54.720000px;}
.fs6_c00197{font-size:57.600000px;}
.fs1_c00197{font-size:60.480000px;}
.fs4_c00197{font-size:63.360000px;}
.fsa_c00197{font-size:66.240000px;}
.fs8_c00197{font-size:69.120000px;}
.fs9_c00197{font-size:72.000000px;}
.fs0_c00197{font-size:74.880000px;}
.fs3_c00197{font-size:77.760000px;}
.y0_c00197{bottom:0.000000px;}
.y6a_c00197{bottom:48.960000px;}
.y6b_c00197{bottom:51.840000px;}
.y69_c00197{bottom:53.280000px;}
.y68_c00197{bottom:54.000000px;}
.y6c_c00197{bottom:54.720000px;}
.y6d_c00197{bottom:55.440000px;}
.y65_c00197{bottom:91.440000px;}
.y66_c00197{bottom:95.040000px;}
.y63_c00197{bottom:95.760000px;}
.y67_c00197{bottom:96.480000px;}
.y64_c00197{bottom:97.200000px;}
.y61_c00197{bottom:137.520000px;}
.y62_c00197{bottom:138.240000px;}
.y60_c00197{bottom:140.400000px;}
.y5d_c00197{bottom:190.800000px;}
.y5c_c00197{bottom:191.520000px;}
.y5e_c00197{bottom:192.240000px;}
.y5f_c00197{bottom:192.960000px;}
.y5b_c00197{bottom:193.680000px;}
.y5a_c00197{bottom:194.400000px;}
.y56_c00197{bottom:232.560000px;}
.y57_c00197{bottom:234.720000px;}
.y58_c00197{bottom:235.440000px;}
.y55_c00197{bottom:236.880000px;}
.y59_c00197{bottom:237.600000px;}
.y52_c00197{bottom:275.760000px;}
.y51_c00197{bottom:277.200000px;}
.y53_c00197{bottom:278.640000px;}
.y54_c00197{bottom:279.360000px;}
.y4f_c00197{bottom:280.080000px;}
.y50_c00197{bottom:280.800000px;}
.y4c_c00197{bottom:319.680000px;}
.y4d_c00197{bottom:321.840000px;}
.y4e_c00197{bottom:322.560000px;}
.y4b_c00197{bottom:323.280000px;}
.y47_c00197{bottom:362.880000px;}
.y48_c00197{bottom:365.040000px;}
.y46_c00197{bottom:365.760000px;}
.y49_c00197{bottom:366.480000px;}
.y4a_c00197{bottom:367.200000px;}
.y41_c00197{bottom:405.360000px;}
.y42_c00197{bottom:406.080000px;}
.y43_c00197{bottom:406.800000px;}
.y45_c00197{bottom:407.520000px;}
.y40_c00197{bottom:408.960000px;}
.y44_c00197{bottom:409.680000px;}
.y3d_c00197{bottom:449.280000px;}
.y3b_c00197{bottom:451.440000px;}
.y3e_c00197{bottom:452.160000px;}
.y3f_c00197{bottom:452.880000px;}
.y3c_c00197{bottom:453.600000px;}
.y39_c00197{bottom:492.480000px;}
.y37_c00197{bottom:494.640000px;}
.y3a_c00197{bottom:496.080000px;}
.y38_c00197{bottom:496.800000px;}
.y33_c00197{bottom:537.120000px;}
.y35_c00197{bottom:537.840000px;}
.y36_c00197{bottom:539.280000px;}
.y32_c00197{bottom:540.720000px;}
.y34_c00197{bottom:544.320000px;}
.y2d_c00197{bottom:588.960000px;}
.y2b_c00197{bottom:589.680000px;}
.y31_c00197{bottom:590.400000px;}
.y2a_c00197{bottom:591.120000px;}
.y2f_c00197{bottom:591.840000px;}
.y2e_c00197{bottom:592.560000px;}
.y2c_c00197{bottom:593.280000px;}
.y30_c00197{bottom:594.000000px;}
.y27_c00197{bottom:632.880000px;}
.y26_c00197{bottom:634.320000px;}
.y28_c00197{bottom:635.760000px;}
.y29_c00197{bottom:636.480000px;}
.y24_c00197{bottom:676.080000px;}
.y23_c00197{bottom:677.520000px;}
.y25_c00197{bottom:678.960000px;}
.y1f_c00197{bottom:730.080000px;}
.y22_c00197{bottom:730.800000px;}
.y1d_c00197{bottom:731.520000px;}
.y21_c00197{bottom:732.240000px;}
.y20_c00197{bottom:732.960000px;}
.y1e_c00197{bottom:733.680000px;}
.y1a_c00197{bottom:772.560000px;}
.y18_c00197{bottom:773.280000px;}
.y1c_c00197{bottom:774.000000px;}
.y1b_c00197{bottom:776.160000px;}
.y19_c00197{bottom:776.880000px;}
.y17_c00197{bottom:816.480000px;}
.y15_c00197{bottom:817.200000px;}
.y16_c00197{bottom:820.080000px;}
.y14_c00197{bottom:859.680000px;}
.y12_c00197{bottom:860.400000px;}
.y13_c00197{bottom:863.280000px;}
.y11_c00197{bottom:903.600000px;}
.yf_c00197{bottom:936.000000px;}
.y10_c00197{bottom:936.720000px;}
.yb_c00197{bottom:968.400000px;}
.yd_c00197{bottom:969.120000px;}
.ye_c00197{bottom:970.560000px;}
.yc_c00197{bottom:971.280000px;}
.y8_c00197{bottom:1010.880000px;}
.ya_c00197{bottom:1012.320000px;}
.y9_c00197{bottom:1015.200000px;}
.y4_c00197{bottom:1043.280000px;}
.y2_c00197{bottom:1044.000000px;}
.y6_c00197{bottom:1044.720000px;}
.y5_c00197{bottom:1045.440000px;}
.y7_c00197{bottom:1046.160000px;}
.y3_c00197{bottom:1046.880000px;}
.y1_c00197{bottom:1082.880000px;}
.h9_c00197{height:31.100625px;}
.hf_c00197{height:33.692344px;}
.h10_c00197{height:36.284062px;}
.he_c00197{height:41.467500px;}
.hd_c00197{height:44.059219px;}
.h4_c00197{height:46.650937px;}
.h7_c00197{height:49.242656px;}
.h8_c00197{height:51.834375px;}
.h3_c00197{height:54.426094px;}
.h6_c00197{height:57.017812px;}
.hc_c00197{height:59.609531px;}
.ha_c00197{height:62.201250px;}
.hb_c00197{height:64.792969px;}
.h2_c00197{height:67.384687px;}
.h5_c00197{height:69.976406px;}
.h1_c00197{height:1151.250000px;}
.h0_c00197{height:1151.280000px;}
.w0_c00197{width:792.720000px;}
.w1_c00197{width:792.750000px;}
.x0_c00197{left:0.000000px;}
.x2_c00197{left:81.360000px;}
.x33_c00197{left:113.040000px;}
.x1b_c00197{left:143.280000px;}
.x3_c00197{left:144.720000px;}
.xa_c00197{left:177.120000px;}
.x24_c00197{left:185.760000px;}
.x4_c00197{left:187.920000px;}
.xb_c00197{left:199.440000px;}
.x25_c00197{left:208.800000px;}
.x36_c00197{left:218.880000px;}
.x26_c00197{left:220.320000px;}
.x2b_c00197{left:229.680000px;}
.x18_c00197{left:231.120000px;}
.x15_c00197{left:232.560000px;}
.x34_c00197{left:239.760000px;}
.xf_c00197{left:241.920000px;}
.x1c_c00197{left:273.600000px;}
.x27_c00197{left:275.040000px;}
.x28_c00197{left:285.120000px;}
.xc_c00197{left:287.280000px;}
.x37_c00197{left:295.200000px;}
.x22_c00197{left:296.640000px;}
.x35_c00197{left:304.560000px;}
.x29_c00197{left:315.360000px;}
.x38_c00197{left:326.160000px;}
.x5_c00197{left:339.840000px;}
.x19_c00197{left:360.720000px;}
.x16_c00197{left:382.320000px;}
.x23_c00197{left:392.400000px;}
.x10_c00197{left:393.840000px;}
.xd_c00197{left:415.440000px;}
.x17_c00197{left:435.600000px;}
.x6_c00197{left:491.040000px;}
.x2f_c00197{left:499.680000px;}
.x1d_c00197{left:501.120000px;}
.x39_c00197{left:520.560000px;}
.x2e_c00197{left:531.360000px;}
.x12_c00197{left:533.520000px;}
.x11_c00197{left:534.960000px;}
.x1a_c00197{left:542.160000px;}
.x3a_c00197{left:555.120000px;}
.x30_c00197{left:563.760000px;}
.x1e_c00197{left:565.200000px;}
.xe_c00197{left:566.640000px;}
.x7_c00197{left:568.080000px;}
.x31_c00197{left:617.040000px;}
.x2c_c00197{left:618.480000px;}
.x1f_c00197{left:619.920000px;}
.x8_c00197{left:622.080000px;}
.x13_c00197{left:630.720000px;}
.x32_c00197{left:671.760000px;}
.x20_c00197{left:673.920000px;}
.x2a_c00197{left:682.560000px;}
.x9_c00197{left:684.720000px;}
.x1_c00197{left:693.360000px;}
.x2d_c00197{left:712.800000px;}
.x21_c00197{left:714.240000px;}
.x14_c00197{left:715.680000px;}
@media print{
.v1_c00197{vertical-align:-10.240000pt;}
.v2_c00197{vertical-align:-2.560000pt;}
.v0_c00197{vertical-align:0.000000pt;}
.ls1_c00197{letter-spacing:0.000000pt;}
.ls0_c00197{letter-spacing:157.569493pt;}
.ws0_c00197{word-spacing:-1.368320pt;}
.ws2_c00197{word-spacing:0.000000pt;}
.ws1_c00197{word-spacing:74.393894pt;}
.fs7_c00197{font-size:30.720000pt;}
.fsd_c00197{font-size:33.280000pt;}
.fse_c00197{font-size:35.840000pt;}
.fsc_c00197{font-size:40.960000pt;}
.fsb_c00197{font-size:43.520000pt;}
.fs2_c00197{font-size:46.080000pt;}
.fs5_c00197{font-size:48.640000pt;}
.fs6_c00197{font-size:51.200000pt;}
.fs1_c00197{font-size:53.760000pt;}
.fs4_c00197{font-size:56.320000pt;}
.fsa_c00197{font-size:58.880000pt;}
.fs8_c00197{font-size:61.440000pt;}
.fs9_c00197{font-size:64.000000pt;}
.fs0_c00197{font-size:66.560000pt;}
.fs3_c00197{font-size:69.120000pt;}
.y0_c00197{bottom:0.000000pt;}
.y6a_c00197{bottom:43.520000pt;}
.y6b_c00197{bottom:46.080000pt;}
.y69_c00197{bottom:47.360000pt;}
.y68_c00197{bottom:48.000000pt;}
.y6c_c00197{bottom:48.640000pt;}
.y6d_c00197{bottom:49.280000pt;}
.y65_c00197{bottom:81.280000pt;}
.y66_c00197{bottom:84.480000pt;}
.y63_c00197{bottom:85.120000pt;}
.y67_c00197{bottom:85.760000pt;}
.y64_c00197{bottom:86.400000pt;}
.y61_c00197{bottom:122.240000pt;}
.y62_c00197{bottom:122.880000pt;}
.y60_c00197{bottom:124.800000pt;}
.y5d_c00197{bottom:169.600000pt;}
.y5c_c00197{bottom:170.240000pt;}
.y5e_c00197{bottom:170.880000pt;}
.y5f_c00197{bottom:171.520000pt;}
.y5b_c00197{bottom:172.160000pt;}
.y5a_c00197{bottom:172.800000pt;}
.y56_c00197{bottom:206.720000pt;}
.y57_c00197{bottom:208.640000pt;}
.y58_c00197{bottom:209.280000pt;}
.y55_c00197{bottom:210.560000pt;}
.y59_c00197{bottom:211.200000pt;}
.y52_c00197{bottom:245.120000pt;}
.y51_c00197{bottom:246.400000pt;}
.y53_c00197{bottom:247.680000pt;}
.y54_c00197{bottom:248.320000pt;}
.y4f_c00197{bottom:248.960000pt;}
.y50_c00197{bottom:249.600000pt;}
.y4c_c00197{bottom:284.160000pt;}
.y4d_c00197{bottom:286.080000pt;}
.y4e_c00197{bottom:286.720000pt;}
.y4b_c00197{bottom:287.360000pt;}
.y47_c00197{bottom:322.560000pt;}
.y48_c00197{bottom:324.480000pt;}
.y46_c00197{bottom:325.120000pt;}
.y49_c00197{bottom:325.760000pt;}
.y4a_c00197{bottom:326.400000pt;}
.y41_c00197{bottom:360.320000pt;}
.y42_c00197{bottom:360.960000pt;}
.y43_c00197{bottom:361.600000pt;}
.y45_c00197{bottom:362.240000pt;}
.y40_c00197{bottom:363.520000pt;}
.y44_c00197{bottom:364.160000pt;}
.y3d_c00197{bottom:399.360000pt;}
.y3b_c00197{bottom:401.280000pt;}
.y3e_c00197{bottom:401.920000pt;}
.y3f_c00197{bottom:402.560000pt;}
.y3c_c00197{bottom:403.200000pt;}
.y39_c00197{bottom:437.760000pt;}
.y37_c00197{bottom:439.680000pt;}
.y3a_c00197{bottom:440.960000pt;}
.y38_c00197{bottom:441.600000pt;}
.y33_c00197{bottom:477.440000pt;}
.y35_c00197{bottom:478.080000pt;}
.y36_c00197{bottom:479.360000pt;}
.y32_c00197{bottom:480.640000pt;}
.y34_c00197{bottom:483.840000pt;}
.y2d_c00197{bottom:523.520000pt;}
.y2b_c00197{bottom:524.160000pt;}
.y31_c00197{bottom:524.800000pt;}
.y2a_c00197{bottom:525.440000pt;}
.y2f_c00197{bottom:526.080000pt;}
.y2e_c00197{bottom:526.720000pt;}
.y2c_c00197{bottom:527.360000pt;}
.y30_c00197{bottom:528.000000pt;}
.y27_c00197{bottom:562.560000pt;}
.y26_c00197{bottom:563.840000pt;}
.y28_c00197{bottom:565.120000pt;}
.y29_c00197{bottom:565.760000pt;}
.y24_c00197{bottom:600.960000pt;}
.y23_c00197{bottom:602.240000pt;}
.y25_c00197{bottom:603.520000pt;}
.y1f_c00197{bottom:648.960000pt;}
.y22_c00197{bottom:649.600000pt;}
.y1d_c00197{bottom:650.240000pt;}
.y21_c00197{bottom:650.880000pt;}
.y20_c00197{bottom:651.520000pt;}
.y1e_c00197{bottom:652.160000pt;}
.y1a_c00197{bottom:686.720000pt;}
.y18_c00197{bottom:687.360000pt;}
.y1c_c00197{bottom:688.000000pt;}
.y1b_c00197{bottom:689.920000pt;}
.y19_c00197{bottom:690.560000pt;}
.y17_c00197{bottom:725.760000pt;}
.y15_c00197{bottom:726.400000pt;}
.y16_c00197{bottom:728.960000pt;}
.y14_c00197{bottom:764.160000pt;}
.y12_c00197{bottom:764.800000pt;}
.y13_c00197{bottom:767.360000pt;}
.y11_c00197{bottom:803.200000pt;}
.yf_c00197{bottom:832.000000pt;}
.y10_c00197{bottom:832.640000pt;}
.yb_c00197{bottom:860.800000pt;}
.yd_c00197{bottom:861.440000pt;}
.ye_c00197{bottom:862.720000pt;}
.yc_c00197{bottom:863.360000pt;}
.y8_c00197{bottom:898.560000pt;}
.ya_c00197{bottom:899.840000pt;}
.y9_c00197{bottom:902.400000pt;}
.y4_c00197{bottom:927.360000pt;}
.y2_c00197{bottom:928.000000pt;}
.y6_c00197{bottom:928.640000pt;}
.y5_c00197{bottom:929.280000pt;}
.y7_c00197{bottom:929.920000pt;}
.y3_c00197{bottom:930.560000pt;}
.y1_c00197{bottom:962.560000pt;}
.h9_c00197{height:27.645000pt;}
.hf_c00197{height:29.948750pt;}
.h10_c00197{height:32.252500pt;}
.he_c00197{height:36.860000pt;}
.hd_c00197{height:39.163750pt;}
.h4_c00197{height:41.467500pt;}
.h7_c00197{height:43.771250pt;}
.h8_c00197{height:46.075000pt;}
.h3_c00197{height:48.378750pt;}
.h6_c00197{height:50.682500pt;}
.hc_c00197{height:52.986250pt;}
.ha_c00197{height:55.290000pt;}
.hb_c00197{height:57.593750pt;}
.h2_c00197{height:59.897500pt;}
.h5_c00197{height:62.201250pt;}
.h1_c00197{height:1023.333333pt;}
.h0_c00197{height:1023.360000pt;}
.w0_c00197{width:704.640000pt;}
.w1_c00197{width:704.666667pt;}
.x0_c00197{left:0.000000pt;}
.x2_c00197{left:72.320000pt;}
.x33_c00197{left:100.480000pt;}
.x1b_c00197{left:127.360000pt;}
.x3_c00197{left:128.640000pt;}
.xa_c00197{left:157.440000pt;}
.x24_c00197{left:165.120000pt;}
.x4_c00197{left:167.040000pt;}
.xb_c00197{left:177.280000pt;}
.x25_c00197{left:185.600000pt;}
.x36_c00197{left:194.560000pt;}
.x26_c00197{left:195.840000pt;}
.x2b_c00197{left:204.160000pt;}
.x18_c00197{left:205.440000pt;}
.x15_c00197{left:206.720000pt;}
.x34_c00197{left:213.120000pt;}
.xf_c00197{left:215.040000pt;}
.x1c_c00197{left:243.200000pt;}
.x27_c00197{left:244.480000pt;}
.x28_c00197{left:253.440000pt;}
.xc_c00197{left:255.360000pt;}
.x37_c00197{left:262.400000pt;}
.x22_c00197{left:263.680000pt;}
.x35_c00197{left:270.720000pt;}
.x29_c00197{left:280.320000pt;}
.x38_c00197{left:289.920000pt;}
.x5_c00197{left:302.080000pt;}
.x19_c00197{left:320.640000pt;}
.x16_c00197{left:339.840000pt;}
.x23_c00197{left:348.800000pt;}
.x10_c00197{left:350.080000pt;}
.xd_c00197{left:369.280000pt;}
.x17_c00197{left:387.200000pt;}
.x6_c00197{left:436.480000pt;}
.x2f_c00197{left:444.160000pt;}
.x1d_c00197{left:445.440000pt;}
.x39_c00197{left:462.720000pt;}
.x2e_c00197{left:472.320000pt;}
.x12_c00197{left:474.240000pt;}
.x11_c00197{left:475.520000pt;}
.x1a_c00197{left:481.920000pt;}
.x3a_c00197{left:493.440000pt;}
.x30_c00197{left:501.120000pt;}
.x1e_c00197{left:502.400000pt;}
.xe_c00197{left:503.680000pt;}
.x7_c00197{left:504.960000pt;}
.x31_c00197{left:548.480000pt;}
.x2c_c00197{left:549.760000pt;}
.x1f_c00197{left:551.040000pt;}
.x8_c00197{left:552.960000pt;}
.x13_c00197{left:560.640000pt;}
.x32_c00197{left:597.120000pt;}
.x20_c00197{left:599.040000pt;}
.x2a_c00197{left:606.720000pt;}
.x9_c00197{left:608.640000pt;}
.x1_c00197{left:616.320000pt;}
.x2d_c00197{left:633.600000pt;}
.x21_c00197{left:634.880000pt;}
.x14_c00197{left:636.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a51c3dab0117dc7170ed4b5c.woff2')format("woff");}.ff1_c00198{font-family:ff1_c00198;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m34_c00198{transform:matrix(0.177600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177600,0.000000,0.000000,0.250000,0,0);}
.m36_c00198{transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);}
.m2f_c00198{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m7_c00198{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);}
.m46_c00198{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m5_c00198{transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);}
.m3e_c00198{transform:matrix(0.245700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245700,0.000000,0.000000,0.250000,0,0);}
.m43_c00198{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m39_c00198{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m31_c00198{transform:matrix(0.249675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249675,0.000000,0.000000,0.250000,0,0);}
.m47_c00198{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_c00198{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m10_c00198{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m24_c00198{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m42_c00198{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00198{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);}
.m40_c00198{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);}
.m2c_c00198{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m38_c00198{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_c00198{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00198{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m14_c00198{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m12_c00198{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m19_c00198{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m15_c00198{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.md_c00198{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m33_c00198{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m4_c00198{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.me_c00198{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00198{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m26_c00198{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m48_c00198{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m0_c00198{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m35_c00198{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m27_c00198{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m28_c00198{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mb_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);}
.m2e_c00198{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00198{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m2_c00198{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m6_c00198{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.mc_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);}
.m17_c00198{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00198{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m13_c00198{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_c00198{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);}
.m2b_c00198{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);}
.m3b_c00198{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m23_c00198{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m9_c00198{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m3_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);}
.m1_c00198{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m32_c00198{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00198{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);}
.m45_c00198{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);}
.m49_c00198{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);}
.m30_c00198{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00198{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00198{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);}
.m2d_c00198{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00198{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);}
.m2a_c00198{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00198{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m8_c00198{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m41_c00198{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.ma_c00198{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);}
.m44_c00198{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m20_c00198{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00198{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m37_c00198{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);}
.m25_c00198{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m18_c00198{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m22_c00198{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m16_c00198{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00198{transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00198{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m29_c00198{transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);}
.v1_c00198{vertical-align:-8.640000px;}
.v0_c00198{vertical-align:0.000000px;}
.v2_c00198{vertical-align:2.880000px;}
.ls1_c00198{letter-spacing:0.000000px;}
.ls0_c00198{letter-spacing:157.514400px;}
.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;}
}
.ws1_c00198{word-spacing:0.000000px;}
.ws0_c00198{word-spacing:52.524000px;}
.fc0_c00198{color:transparent;}
.fsa_c00198{font-size:34.560000px;}
.fsc_c00198{font-size:43.200000px;}
.fs8_c00198{font-size:48.960000px;}
.fs2_c00198{font-size:51.840000px;}
.fs3_c00198{font-size:54.720000px;}
.fs5_c00198{font-size:57.600000px;}
.fs1_c00198{font-size:60.480000px;}
.fs7_c00198{font-size:63.360000px;}
.fs4_c00198{font-size:66.240000px;}
.fsb_c00198{font-size:69.120000px;}
.fs9_c00198{font-size:72.000000px;}
.fs6_c00198{font-size:74.880000px;}
.fs0_c00198{font-size:77.760000px;}
.y0_c00198{bottom:0.000000px;}
.y6c_c00198{bottom:148.320000px;}
.y6d_c00198{bottom:150.480000px;}
.y6e_c00198{bottom:151.200000px;}
.y6f_c00198{bottom:151.920000px;}
.y6b_c00198{bottom:152.640000px;}
.y6a_c00198{bottom:190.800000px;}
.y68_c00198{bottom:193.680000px;}
.y69_c00198{bottom:194.400000px;}
.y65_c00198{bottom:223.200000px;}
.y64_c00198{bottom:224.640000px;}
.y67_c00198{bottom:226.080000px;}
.y66_c00198{bottom:226.800000px;}
.y5f_c00198{bottom:255.600000px;}
.y60_c00198{bottom:257.040000px;}
.y62_c00198{bottom:258.480000px;}
.y61_c00198{bottom:259.200000px;}
.y63_c00198{bottom:259.920000px;}
.y5e_c00198{bottom:261.360000px;}
.y5c_c00198{bottom:298.800000px;}
.y5a_c00198{bottom:302.400000px;}
.y5b_c00198{bottom:303.120000px;}
.y5d_c00198{bottom:303.840000px;}
.y56_c00198{bottom:342.000000px;}
.y58_c00198{bottom:344.160000px;}
.y55_c00198{bottom:344.880000px;}
.y57_c00198{bottom:345.600000px;}
.y59_c00198{bottom:347.760000px;}
.y51_c00198{bottom:384.480000px;}
.y4f_c00198{bottom:385.200000px;}
.y4e_c00198{bottom:387.360000px;}
.y50_c00198{bottom:388.080000px;}
.y52_c00198{bottom:388.800000px;}
.y54_c00198{bottom:389.520000px;}
.y53_c00198{bottom:390.240000px;}
.y4b_c00198{bottom:428.400000px;}
.y4c_c00198{bottom:430.560000px;}
.y4a_c00198{bottom:431.280000px;}
.y4d_c00198{bottom:432.000000px;}
.y47_c00198{bottom:471.600000px;}
.y49_c00198{bottom:473.760000px;}
.y46_c00198{bottom:475.200000px;}
.y48_c00198{bottom:475.920000px;}
.y42_c00198{bottom:514.800000px;}
.y44_c00198{bottom:516.240000px;}
.y41_c00198{bottom:517.680000px;}
.y43_c00198{bottom:518.400000px;}
.y45_c00198{bottom:519.120000px;}
.y3f_c00198{bottom:557.280000px;}
.y3e_c00198{bottom:560.160000px;}
.y40_c00198{bottom:562.320000px;}
.y3a_c00198{bottom:601.200000px;}
.y39_c00198{bottom:602.640000px;}
.y3b_c00198{bottom:604.080000px;}
.y3c_c00198{bottom:604.800000px;}
.y3d_c00198{bottom:605.520000px;}
.y35_c00198{bottom:644.400000px;}
.y38_c00198{bottom:645.120000px;}
.y34_c00198{bottom:646.560000px;}
.y37_c00198{bottom:648.000000px;}
.y36_c00198{bottom:648.720000px;}
.y33_c00198{bottom:680.400000px;}
.y2f_c00198{bottom:687.600000px;}
.y2e_c00198{bottom:689.040000px;}
.y31_c00198{bottom:689.760000px;}
.y30_c00198{bottom:691.920000px;}
.y32_c00198{bottom:692.640000px;}
.y2c_c00198{bottom:732.240000px;}
.y2d_c00198{bottom:734.400000px;}
.y2b_c00198{bottom:735.120000px;}
.y25_c00198{bottom:762.480000px;}
.y27_c00198{bottom:763.920000px;}
.y24_c00198{bottom:764.640000px;}
.y29_c00198{bottom:765.360000px;}
.y28_c00198{bottom:766.080000px;}
.y26_c00198{bottom:766.800000px;}
.y2a_c00198{bottom:767.520000px;}
.y20_c00198{bottom:806.400000px;}
.y1f_c00198{bottom:807.840000px;}
.y22_c00198{bottom:808.560000px;}
.y23_c00198{bottom:810.000000px;}
.y21_c00198{bottom:810.720000px;}
.y1b_c00198{bottom:848.880000px;}
.y1a_c00198{bottom:850.320000px;}
.y1d_c00198{bottom:851.040000px;}
.y1c_c00198{bottom:851.760000px;}
.y1e_c00198{bottom:853.920000px;}
.y18_c00198{bottom:893.520000px;}
.y19_c00198{bottom:896.400000px;}
.y15_c00198{bottom:924.480000px;}
.y17_c00198{bottom:925.200000px;}
.y12_c00198{bottom:925.920000px;}
.y16_c00198{bottom:926.640000px;}
.y13_c00198{bottom:927.360000px;}
.y14_c00198{bottom:928.800000px;}
.yd_c00198{bottom:968.400000px;}
.y10_c00198{bottom:969.120000px;}
.ye_c00198{bottom:969.840000px;}
.y11_c00198{bottom:971.280000px;}
.yf_c00198{bottom:972.000000px;}
.y7_c00198{bottom:1010.880000px;}
.y9_c00198{bottom:1011.600000px;}
.yc_c00198{bottom:1012.320000px;}
.ya_c00198{bottom:1013.040000px;}
.yb_c00198{bottom:1013.760000px;}
.y8_c00198{bottom:1014.480000px;}
.y2_c00198{bottom:1054.080000px;}
.y5_c00198{bottom:1055.520000px;}
.y4_c00198{bottom:1056.240000px;}
.y6_c00198{bottom:1056.960000px;}
.y3_c00198{bottom:1057.680000px;}
.y1_c00198{bottom:1105.920000px;}
.hc_c00198{height:31.100625px;}
.he_c00198{height:38.875781px;}
.ha_c00198{height:44.059219px;}
.h4_c00198{height:46.650937px;}
.h5_c00198{height:49.242656px;}
.h7_c00198{height:51.834375px;}
.h3_c00198{height:54.426094px;}
.hf_c00198{height:54.714375px;}
.h9_c00198{height:57.017812px;}
.h6_c00198{height:59.609531px;}
.hd_c00198{height:62.201250px;}
.hb_c00198{height:64.792969px;}
.h8_c00198{height:67.384687px;}
.h2_c00198{height:69.976406px;}
.h1_c00198{height:1151.250000px;}
.h0_c00198{height:1151.280000px;}
.w0_c00198{width:793.440000px;}
.w1_c00198{width:793.500000px;}
.x0_c00198{left:0.000000px;}
.x2_c00198{left:82.080000px;}
.x2b_c00198{left:83.520000px;}
.xf_c00198{left:114.480000px;}
.x1f_c00198{left:143.280000px;}
.x3_c00198{left:144.720000px;}
.x30_c00198{left:146.160000px;}
.x19_c00198{left:166.320000px;}
.x4_c00198{left:187.920000px;}
.x11_c00198{left:198.720000px;}
.x1a_c00198{left:221.760000px;}
.x2c_c00198{left:231.120000px;}
.x5_c00198{left:232.560000px;}
.xc_c00198{left:242.640000px;}
.x13_c00198{left:264.240000px;}
.x1b_c00198{left:275.040000px;}
.x2d_c00198{left:284.400000px;}
.x28_c00198{left:295.920000px;}
.x26_c00198{left:306.720000px;}
.x16_c00198{left:318.960000px;}
.x20_c00198{left:327.600000px;}
.x2e_c00198{left:329.040000px;}
.xa_c00198{left:330.480000px;}
.x29_c00198{left:339.120000px;}
.x27_c00198{left:360.720000px;}
.x21_c00198{left:371.520000px;}
.x1c_c00198{left:382.320000px;}
.x14_c00198{left:393.840000px;}
.xb_c00198{left:415.440000px;}
.x10_c00198{left:425.520000px;}
.x1d_c00198{left:435.600000px;}
.x15_c00198{left:447.840000px;}
.x2f_c00198{left:470.160000px;}
.x24_c00198{left:491.760000px;}
.x17_c00198{left:501.120000px;}
.x12_c00198{left:503.280000px;}
.xd_c00198{left:523.440000px;}
.x1e_c00198{left:555.840000px;}
.x6_c00198{left:557.280000px;}
.x18_c00198{left:579.600000px;}
.x22_c00198{left:599.040000px;}
.x7_c00198{left:600.480000px;}
.x25_c00198{left:653.040000px;}
.x2a_c00198{left:661.680000px;}
.xe_c00198{left:663.840000px;}
.x8_c00198{left:665.280000px;}
.x23_c00198{left:704.160000px;}
.x9_c00198{left:705.600000px;}
.x1_c00198{left:721.440000px;}
@media print{
.v1_c00198{vertical-align:-7.680000pt;}
.v0_c00198{vertical-align:0.000000pt;}
.v2_c00198{vertical-align:2.560000pt;}
.ls1_c00198{letter-spacing:0.000000pt;}
.ls0_c00198{letter-spacing:140.012800pt;}
.ws1_c00198{word-spacing:0.000000pt;}
.ws0_c00198{word-spacing:46.688000pt;}
.fsa_c00198{font-size:30.720000pt;}
.fsc_c00198{font-size:38.400000pt;}
.fs8_c00198{font-size:43.520000pt;}
.fs2_c00198{font-size:46.080000pt;}
.fs3_c00198{font-size:48.640000pt;}
.fs5_c00198{font-size:51.200000pt;}
.fs1_c00198{font-size:53.760000pt;}
.fs7_c00198{font-size:56.320000pt;}
.fs4_c00198{font-size:58.880000pt;}
.fsb_c00198{font-size:61.440000pt;}
.fs9_c00198{font-size:64.000000pt;}
.fs6_c00198{font-size:66.560000pt;}
.fs0_c00198{font-size:69.120000pt;}
.y0_c00198{bottom:0.000000pt;}
.y6c_c00198{bottom:131.840000pt;}
.y6d_c00198{bottom:133.760000pt;}
.y6e_c00198{bottom:134.400000pt;}
.y6f_c00198{bottom:135.040000pt;}
.y6b_c00198{bottom:135.680000pt;}
.y6a_c00198{bottom:169.600000pt;}
.y68_c00198{bottom:172.160000pt;}
.y69_c00198{bottom:172.800000pt;}
.y65_c00198{bottom:198.400000pt;}
.y64_c00198{bottom:199.680000pt;}
.y67_c00198{bottom:200.960000pt;}
.y66_c00198{bottom:201.600000pt;}
.y5f_c00198{bottom:227.200000pt;}
.y60_c00198{bottom:228.480000pt;}
.y62_c00198{bottom:229.760000pt;}
.y61_c00198{bottom:230.400000pt;}
.y63_c00198{bottom:231.040000pt;}
.y5e_c00198{bottom:232.320000pt;}
.y5c_c00198{bottom:265.600000pt;}
.y5a_c00198{bottom:268.800000pt;}
.y5b_c00198{bottom:269.440000pt;}
.y5d_c00198{bottom:270.080000pt;}
.y56_c00198{bottom:304.000000pt;}
.y58_c00198{bottom:305.920000pt;}
.y55_c00198{bottom:306.560000pt;}
.y57_c00198{bottom:307.200000pt;}
.y59_c00198{bottom:309.120000pt;}
.y51_c00198{bottom:341.760000pt;}
.y4f_c00198{bottom:342.400000pt;}
.y4e_c00198{bottom:344.320000pt;}
.y50_c00198{bottom:344.960000pt;}
.y52_c00198{bottom:345.600000pt;}
.y54_c00198{bottom:346.240000pt;}
.y53_c00198{bottom:346.880000pt;}
.y4b_c00198{bottom:380.800000pt;}
.y4c_c00198{bottom:382.720000pt;}
.y4a_c00198{bottom:383.360000pt;}
.y4d_c00198{bottom:384.000000pt;}
.y47_c00198{bottom:419.200000pt;}
.y49_c00198{bottom:421.120000pt;}
.y46_c00198{bottom:422.400000pt;}
.y48_c00198{bottom:423.040000pt;}
.y42_c00198{bottom:457.600000pt;}
.y44_c00198{bottom:458.880000pt;}
.y41_c00198{bottom:460.160000pt;}
.y43_c00198{bottom:460.800000pt;}
.y45_c00198{bottom:461.440000pt;}
.y3f_c00198{bottom:495.360000pt;}
.y3e_c00198{bottom:497.920000pt;}
.y40_c00198{bottom:499.840000pt;}
.y3a_c00198{bottom:534.400000pt;}
.y39_c00198{bottom:535.680000pt;}
.y3b_c00198{bottom:536.960000pt;}
.y3c_c00198{bottom:537.600000pt;}
.y3d_c00198{bottom:538.240000pt;}
.y35_c00198{bottom:572.800000pt;}
.y38_c00198{bottom:573.440000pt;}
.y34_c00198{bottom:574.720000pt;}
.y37_c00198{bottom:576.000000pt;}
.y36_c00198{bottom:576.640000pt;}
.y33_c00198{bottom:604.800000pt;}
.y2f_c00198{bottom:611.200000pt;}
.y2e_c00198{bottom:612.480000pt;}
.y31_c00198{bottom:613.120000pt;}
.y30_c00198{bottom:615.040000pt;}
.y32_c00198{bottom:615.680000pt;}
.y2c_c00198{bottom:650.880000pt;}
.y2d_c00198{bottom:652.800000pt;}
.y2b_c00198{bottom:653.440000pt;}
.y25_c00198{bottom:677.760000pt;}
.y27_c00198{bottom:679.040000pt;}
.y24_c00198{bottom:679.680000pt;}
.y29_c00198{bottom:680.320000pt;}
.y28_c00198{bottom:680.960000pt;}
.y26_c00198{bottom:681.600000pt;}
.y2a_c00198{bottom:682.240000pt;}
.y20_c00198{bottom:716.800000pt;}
.y1f_c00198{bottom:718.080000pt;}
.y22_c00198{bottom:718.720000pt;}
.y23_c00198{bottom:720.000000pt;}
.y21_c00198{bottom:720.640000pt;}
.y1b_c00198{bottom:754.560000pt;}
.y1a_c00198{bottom:755.840000pt;}
.y1d_c00198{bottom:756.480000pt;}
.y1c_c00198{bottom:757.120000pt;}
.y1e_c00198{bottom:759.040000pt;}
.y18_c00198{bottom:794.240000pt;}
.y19_c00198{bottom:796.800000pt;}
.y15_c00198{bottom:821.760000pt;}
.y17_c00198{bottom:822.400000pt;}
.y12_c00198{bottom:823.040000pt;}
.y16_c00198{bottom:823.680000pt;}
.y13_c00198{bottom:824.320000pt;}
.y14_c00198{bottom:825.600000pt;}
.yd_c00198{bottom:860.800000pt;}
.y10_c00198{bottom:861.440000pt;}
.ye_c00198{bottom:862.080000pt;}
.y11_c00198{bottom:863.360000pt;}
.yf_c00198{bottom:864.000000pt;}
.y7_c00198{bottom:898.560000pt;}
.y9_c00198{bottom:899.200000pt;}
.yc_c00198{bottom:899.840000pt;}
.ya_c00198{bottom:900.480000pt;}
.yb_c00198{bottom:901.120000pt;}
.y8_c00198{bottom:901.760000pt;}
.y2_c00198{bottom:936.960000pt;}
.y5_c00198{bottom:938.240000pt;}
.y4_c00198{bottom:938.880000pt;}
.y6_c00198{bottom:939.520000pt;}
.y3_c00198{bottom:940.160000pt;}
.y1_c00198{bottom:983.040000pt;}
.hc_c00198{height:27.645000pt;}
.he_c00198{height:34.556250pt;}
.ha_c00198{height:39.163750pt;}
.h4_c00198{height:41.467500pt;}
.h5_c00198{height:43.771250pt;}
.h7_c00198{height:46.075000pt;}
.h3_c00198{height:48.378750pt;}
.hf_c00198{height:48.635000pt;}
.h9_c00198{height:50.682500pt;}
.h6_c00198{height:52.986250pt;}
.hd_c00198{height:55.290000pt;}
.hb_c00198{height:57.593750pt;}
.h8_c00198{height:59.897500pt;}
.h2_c00198{height:62.201250pt;}
.h1_c00198{height:1023.333333pt;}
.h0_c00198{height:1023.360000pt;}
.w0_c00198{width:705.280000pt;}
.w1_c00198{width:705.333333pt;}
.x0_c00198{left:0.000000pt;}
.x2_c00198{left:72.960000pt;}
.x2b_c00198{left:74.240000pt;}
.xf_c00198{left:101.760000pt;}
.x1f_c00198{left:127.360000pt;}
.x3_c00198{left:128.640000pt;}
.x30_c00198{left:129.920000pt;}
.x19_c00198{left:147.840000pt;}
.x4_c00198{left:167.040000pt;}
.x11_c00198{left:176.640000pt;}
.x1a_c00198{left:197.120000pt;}
.x2c_c00198{left:205.440000pt;}
.x5_c00198{left:206.720000pt;}
.xc_c00198{left:215.680000pt;}
.x13_c00198{left:234.880000pt;}
.x1b_c00198{left:244.480000pt;}
.x2d_c00198{left:252.800000pt;}
.x28_c00198{left:263.040000pt;}
.x26_c00198{left:272.640000pt;}
.x16_c00198{left:283.520000pt;}
.x20_c00198{left:291.200000pt;}
.x2e_c00198{left:292.480000pt;}
.xa_c00198{left:293.760000pt;}
.x29_c00198{left:301.440000pt;}
.x27_c00198{left:320.640000pt;}
.x21_c00198{left:330.240000pt;}
.x1c_c00198{left:339.840000pt;}
.x14_c00198{left:350.080000pt;}
.xb_c00198{left:369.280000pt;}
.x10_c00198{left:378.240000pt;}
.x1d_c00198{left:387.200000pt;}
.x15_c00198{left:398.080000pt;}
.x2f_c00198{left:417.920000pt;}
.x24_c00198{left:437.120000pt;}
.x17_c00198{left:445.440000pt;}
.x12_c00198{left:447.360000pt;}
.xd_c00198{left:465.280000pt;}
.x1e_c00198{left:494.080000pt;}
.x6_c00198{left:495.360000pt;}
.x18_c00198{left:515.200000pt;}
.x22_c00198{left:532.480000pt;}
.x7_c00198{left:533.760000pt;}
.x25_c00198{left:580.480000pt;}
.x2a_c00198{left:588.160000pt;}
.xe_c00198{left:590.080000pt;}
.x8_c00198{left:591.360000pt;}
.x23_c00198{left:625.920000pt;}
.x9_c00198{left:627.200000pt;}
.x1_c00198{left:641.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_96c17ff55070fb109974f716.woff2')format("woff");}.ff1_c00199{font-family:ff1_c00199;line-height:1.109863;font-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_c00199{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m58_c00199{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00199{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m13_c00199{transform:matrix(0.236600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236600,0.000000,0.000000,0.250000,0,0);}
.m30_c00199{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m35_c00199{transform:matrix(0.249075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249075,0.000000,0.000000,0.250000,0,0);}
.m52_c00199{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m15_c00199{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m2_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);}
.md_c00199{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);}
.m29_c00199{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);}
.m4e_c00199{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m57_c00199{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m36_c00199{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mc_c00199{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);}
.m5e_c00199{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m7_c00199{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00199{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m3_c00199{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.me_c00199{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m6_c00199{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m17_c00199{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m9_c00199{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m5_c00199{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00199{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00199{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m34_c00199{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mf_c00199{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m24_c00199{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m28_c00199{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00199{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m31_c00199{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1_c00199{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00199{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m12_c00199{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m61_c00199{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m19_c00199{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_c00199{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m21_c00199{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m25_c00199{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_c00199{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m4_c00199{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m45_c00199{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00199{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m0_c00199{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m32_c00199{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);}
.m20_c00199{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);}
.m11_c00199{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m38_c00199{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m18_c00199{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m10_c00199{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);}
.m3b_c00199{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m27_c00199{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);}
.m4d_c00199{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00199{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);}
.m47_c00199{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00199{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00199{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);}
.m3f_c00199{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m54_c00199{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m50_c00199{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);}
.m43_c00199{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);}
.m5f_c00199{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00199{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m60_c00199{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00199{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m48_c00199{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m56_c00199{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);}
.m41_c00199{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m23_c00199{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m22_c00199{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m55_c00199{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m40_c00199{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);}
.ma_c00199{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m46_c00199{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m33_c00199{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00199{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);}
.m4a_c00199{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m63_c00199{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m37_c00199{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00199{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00199{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m51_c00199{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);}
.m3c_c00199{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m26_c00199{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m44_c00199{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00199{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);}
.m5a_c00199{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m14_c00199{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00199{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);}
.m39_c00199{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m16_c00199{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m42_c00199{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m49_c00199{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m62_c00199{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00199{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m59_c00199{transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);}
.m8_c00199{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m53_c00199{transform:matrix(1.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.080000,0.000000,0.000000,0.250000,0,0);}
.mb_c00199{transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);}
.v1_c00199{vertical-align:-5.760000px;}
.v0_c00199{vertical-align:0.000000px;}
.ls0_c00199{letter-spacing:0.000000px;}
.sc__c00199{text-shadow:none;}
.sc0_c00199{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00199{-webkit-text-stroke:0px transparent;}
.sc0_c00199{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00199{word-spacing:0.000000px;}
.ws0_c00199{word-spacing:6.227760px;}
.fc0_c00199{color:transparent;}
.fs12_c00199{font-size:2.880000px;}
.fsc_c00199{font-size:8.640000px;}
.fs6_c00199{font-size:17.280000px;}
.fs13_c00199{font-size:23.040000px;}
.fs5_c00199{font-size:25.920000px;}
.fs14_c00199{font-size:31.680000px;}
.fsb_c00199{font-size:34.560000px;}
.fs15_c00199{font-size:37.440000px;}
.fsd_c00199{font-size:40.320000px;}
.fsf_c00199{font-size:43.200000px;}
.fs16_c00199{font-size:46.080000px;}
.fs10_c00199{font-size:48.960000px;}
.fs2_c00199{font-size:51.840000px;}
.fs9_c00199{font-size:54.720000px;}
.fs3_c00199{font-size:57.600000px;}
.fs4_c00199{font-size:60.480000px;}
.fsa_c00199{font-size:63.360000px;}
.fs11_c00199{font-size:66.240000px;}
.fs1_c00199{font-size:69.120000px;}
.fse_c00199{font-size:72.000000px;}
.fs0_c00199{font-size:74.880000px;}
.fs8_c00199{font-size:77.760000px;}
.fs7_c00199{font-size:80.640000px;}
.y0_c00199{bottom:0.000000px;}
.y7f_c00199{bottom:128.160000px;}
.y7d_c00199{bottom:128.880000px;}
.y7b_c00199{bottom:129.600000px;}
.y7e_c00199{bottom:130.320000px;}
.y7c_c00199{bottom:131.040000px;}
.y7a_c00199{bottom:132.480000px;}
.y78_c00199{bottom:171.360000px;}
.y79_c00199{bottom:172.080000px;}
.y74_c00199{bottom:172.800000px;}
.y77_c00199{bottom:173.520000px;}
.y76_c00199{bottom:174.240000px;}
.y75_c00199{bottom:174.960000px;}
.y73_c00199{bottom:177.840000px;}
.y71_c00199{bottom:214.560000px;}
.y6f_c00199{bottom:215.280000px;}
.y6e_c00199{bottom:216.000000px;}
.y70_c00199{bottom:216.720000px;}
.y72_c00199{bottom:217.440000px;}
.y6d_c00199{bottom:218.160000px;}
.y69_c00199{bottom:256.320000px;}
.y6b_c00199{bottom:257.040000px;}
.y6c_c00199{bottom:257.760000px;}
.y68_c00199{bottom:259.200000px;}
.y6a_c00199{bottom:259.920000px;}
.y67_c00199{bottom:261.360000px;}
.y64_c00199{bottom:300.240000px;}
.y63_c00199{bottom:301.680000px;}
.y62_c00199{bottom:302.400000px;}
.y65_c00199{bottom:303.120000px;}
.y66_c00199{bottom:303.840000px;}
.y60_c00199{bottom:344.160000px;}
.y61_c00199{bottom:346.320000px;}
.y5f_c00199{bottom:347.040000px;}
.y5e_c00199{bottom:347.760000px;}
.y5b_c00199{bottom:377.280000px;}
.y5d_c00199{bottom:378.000000px;}
.y5c_c00199{bottom:378.720000px;}
.y5a_c00199{bottom:379.440000px;}
.y59_c00199{bottom:380.160000px;}
.y57_c00199{bottom:398.160000px;}
.y58_c00199{bottom:399.600000px;}
.y50_c00199{bottom:408.240000px;}
.y51_c00199{bottom:409.680000px;}
.y52_c00199{bottom:410.400000px;}
.y53_c00199{bottom:411.120000px;}
.y4f_c00199{bottom:411.840000px;}
.y54_c00199{bottom:420.480000px;}
.y55_c00199{bottom:421.200000px;}
.y56_c00199{bottom:421.920000px;}
.y4c_c00199{bottom:441.360000px;}
.y4d_c00199{bottom:442.080000px;}
.y4b_c00199{bottom:442.800000px;}
.y49_c00199{bottom:443.520000px;}
.y4a_c00199{bottom:444.240000px;}
.y48_c00199{bottom:444.960000px;}
.y4e_c00199{bottom:445.680000px;}
.y47_c00199{bottom:483.120000px;}
.y45_c00199{bottom:485.280000px;}
.y46_c00199{bottom:486.720000px;}
.y42_c00199{bottom:527.760000px;}
.y44_c00199{bottom:529.200000px;}
.y43_c00199{bottom:529.920000px;}
.y41_c00199{bottom:568.800000px;}
.y3f_c00199{bottom:569.520000px;}
.y3d_c00199{bottom:570.960000px;}
.y40_c00199{bottom:572.400000px;}
.y3e_c00199{bottom:573.120000px;}
.y3c_c00199{bottom:612.720000px;}
.y38_c00199{bottom:613.440000px;}
.y37_c00199{bottom:614.160000px;}
.y3b_c00199{bottom:614.880000px;}
.y3a_c00199{bottom:615.600000px;}
.y39_c00199{bottom:616.320000px;}
.y33_c00199{bottom:655.920000px;}
.y34_c00199{bottom:656.640000px;}
.y32_c00199{bottom:657.360000px;}
.y36_c00199{bottom:658.080000px;}
.y35_c00199{bottom:658.800000px;}
.y31_c00199{bottom:659.520000px;}
.y2e_c00199{bottom:711.360000px;}
.y30_c00199{bottom:712.800000px;}
.y2f_c00199{bottom:714.240000px;}
.y2b_c00199{bottom:741.600000px;}
.y2d_c00199{bottom:743.040000px;}
.y27_c00199{bottom:743.760000px;}
.y2c_c00199{bottom:744.480000px;}
.y2a_c00199{bottom:745.200000px;}
.y29_c00199{bottom:745.920000px;}
.y28_c00199{bottom:746.640000px;}
.y26_c00199{bottom:784.800000px;}
.y24_c00199{bottom:785.520000px;}
.y25_c00199{bottom:786.240000px;}
.y22_c00199{bottom:786.960000px;}
.y23_c00199{bottom:789.120000px;}
.y1f_c00199{bottom:828.720000px;}
.y20_c00199{bottom:829.440000px;}
.y1d_c00199{bottom:830.160000px;}
.y21_c00199{bottom:831.600000px;}
.y1e_c00199{bottom:832.320000px;}
.y1c_c00199{bottom:863.280000px;}
.y1b_c00199{bottom:871.920000px;}
.y15_c00199{bottom:872.640000px;}
.y1a_c00199{bottom:873.360000px;}
.y16_c00199{bottom:874.080000px;}
.y19_c00199{bottom:874.800000px;}
.y18_c00199{bottom:875.520000px;}
.y17_c00199{bottom:879.120000px;}
.y14_c00199{bottom:914.400000px;}
.y10_c00199{bottom:915.120000px;}
.y12_c00199{bottom:915.840000px;}
.y11_c00199{bottom:917.280000px;}
.y13_c00199{bottom:918.000000px;}
.yd_c00199{bottom:957.600000px;}
.yb_c00199{bottom:958.320000px;}
.yf_c00199{bottom:960.480000px;}
.yc_c00199{bottom:961.200000px;}
.ye_c00199{bottom:961.920000px;}
.y9_c00199{bottom:1000.080000px;}
.ya_c00199{bottom:1001.520000px;}
.y6_c00199{bottom:1002.240000px;}
.y7_c00199{bottom:1002.960000px;}
.y8_c00199{bottom:1006.560000px;}
.y3_c00199{bottom:1044.720000px;}
.y2_c00199{bottom:1045.440000px;}
.y5_c00199{bottom:1046.160000px;}
.y4_c00199{bottom:1048.320000px;}
.y1_c00199{bottom:1094.400000px;}
.h13_c00199{height:2.591719px;}
.hd_c00199{height:7.775156px;}
.h7_c00199{height:15.550313px;}
.h14_c00199{height:20.733750px;}
.h6_c00199{height:23.325469px;}
.h15_c00199{height:28.508906px;}
.hc_c00199{height:31.100625px;}
.h16_c00199{height:33.692344px;}
.he_c00199{height:36.284062px;}
.h10_c00199{height:38.875781px;}
.h17_c00199{height:41.467500px;}
.h11_c00199{height:44.059219px;}
.h3_c00199{height:46.650937px;}
.ha_c00199{height:49.242656px;}
.h4_c00199{height:51.834375px;}
.h5_c00199{height:54.426094px;}
.hb_c00199{height:57.017812px;}
.h12_c00199{height:59.609531px;}
.h2_c00199{height:62.201250px;}
.hf_c00199{height:64.792969px;}
.h1_c00199{height:67.384687px;}
.h9_c00199{height:69.976406px;}
.h8_c00199{height:72.568125px;}
.h0_c00199{height:1152.000000px;}
.w0_c00199{width:794.880000px;}
.w1_c00199{width:795.000000px;}
.x0_c00199{left:0.000000px;}
.x32_c00199{left:82.080000px;}
.x2_c00199{left:84.240000px;}
.x5d_c00199{left:85.680000px;}
.x5a_c00199{left:113.040000px;}
.x41_c00199{left:114.480000px;}
.xa_c00199{left:116.640000px;}
.x52_c00199{left:123.840000px;}
.xb_c00199{left:125.280000px;}
.x49_c00199{left:126.720000px;}
.x4a_c00199{left:134.640000px;}
.x19_c00199{left:136.080000px;}
.x33_c00199{left:145.440000px;}
.x3_c00199{left:146.880000px;}
.x5b_c00199{left:155.520000px;}
.x2d_c00199{left:168.480000px;}
.x56_c00199{left:177.120000px;}
.x3c_c00199{left:178.560000px;}
.xe_c00199{left:181.440000px;}
.x4c_c00199{left:187.920000px;}
.x15_c00199{left:190.080000px;}
.x5c_c00199{left:198.720000px;}
.x1e_c00199{left:200.880000px;}
.x2e_c00199{left:210.240000px;}
.x34_c00199{left:221.040000px;}
.x27_c00199{left:231.120000px;}
.x42_c00199{left:233.280000px;}
.x16_c00199{left:244.080000px;}
.x23_c00199{left:253.440000px;}
.x35_c00199{left:265.680000px;}
.xf_c00199{left:277.200000px;}
.x4d_c00199{left:285.120000px;}
.x43_c00199{left:287.280000px;}
.x1a_c00199{left:298.080000px;}
.x4_c00199{left:299.520000px;}
.x17_c00199{left:308.880000px;}
.x3d_c00199{left:319.680000px;}
.x10_c00199{left:331.200000px;}
.x5e_c00199{left:338.400000px;}
.x24_c00199{left:341.280000px;}
.x53_c00199{left:351.360000px;}
.xc_c00199{left:352.800000px;}
.x36_c00199{left:372.960000px;}
.x5f_c00199{left:383.040000px;}
.x21_c00199{left:385.200000px;}
.x25_c00199{left:394.560000px;}
.x1b_c00199{left:407.520000px;}
.x54_c00199{left:414.720000px;}
.x44_c00199{left:417.600000px;}
.x28_c00199{left:438.480000px;}
.x22_c00199{left:439.920000px;}
.x4e_c00199{left:448.560000px;}
.x1c_c00199{left:450.000000px;}
.x60_c00199{left:458.640000px;}
.x37_c00199{left:460.080000px;}
.x57_c00199{left:469.440000px;}
.x4f_c00199{left:480.240000px;}
.x3e_c00199{left:481.680000px;}
.x38_c00199{left:491.760000px;}
.xd_c00199{left:493.920000px;}
.x55_c00199{left:501.840000px;}
.x5_c00199{left:506.160000px;}
.x47_c00199{left:511.920000px;}
.x11_c00199{left:515.520000px;}
.x3f_c00199{left:524.880000px;}
.x26_c00199{left:535.680000px;}
.x12_c00199{left:537.120000px;}
.x58_c00199{left:544.320000px;}
.x29_c00199{left:545.760000px;}
.x50_c00199{left:555.120000px;}
.x39_c00199{left:556.560000px;}
.x13_c00199{left:570.960000px;}
.x2f_c00199{left:577.440000px;}
.x1d_c00199{left:578.880000px;}
.x6_c00199{left:581.040000px;}
.x3a_c00199{left:588.960000px;}
.x51_c00199{left:597.600000px;}
.x48_c00199{left:619.920000px;}
.x7_c00199{left:624.240000px;}
.x3b_c00199{left:631.440000px;}
.x1f_c00199{left:633.600000px;}
.x59_c00199{left:640.800000px;}
.x40_c00199{left:645.120000px;}
.x30_c00199{left:653.040000px;}
.x2a_c00199{left:654.480000px;}
.x45_c00199{left:663.840000px;}
.x18_c00199{left:666.000000px;}
.x8_c00199{left:667.440000px;}
.x4b_c00199{left:673.920000px;}
.x31_c00199{left:675.360000px;}
.x14_c00199{left:676.800000px;}
.x2b_c00199{left:686.160000px;}
.x46_c00199{left:695.520000px;}
.x2c_c00199{left:696.960000px;}
.x20_c00199{left:707.040000px;}
.x9_c00199{left:708.480000px;}
.x1_c00199{left:717.840000px;}
@media print{
.v1_c00199{vertical-align:-5.120000pt;}
.v0_c00199{vertical-align:0.000000pt;}
.ls0_c00199{letter-spacing:0.000000pt;}
.ws1_c00199{word-spacing:0.000000pt;}
.ws0_c00199{word-spacing:5.535787pt;}
.fs12_c00199{font-size:2.560000pt;}
.fsc_c00199{font-size:7.680000pt;}
.fs6_c00199{font-size:15.360000pt;}
.fs13_c00199{font-size:20.480000pt;}
.fs5_c00199{font-size:23.040000pt;}
.fs14_c00199{font-size:28.160000pt;}
.fsb_c00199{font-size:30.720000pt;}
.fs15_c00199{font-size:33.280000pt;}
.fsd_c00199{font-size:35.840000pt;}
.fsf_c00199{font-size:38.400000pt;}
.fs16_c00199{font-size:40.960000pt;}
.fs10_c00199{font-size:43.520000pt;}
.fs2_c00199{font-size:46.080000pt;}
.fs9_c00199{font-size:48.640000pt;}
.fs3_c00199{font-size:51.200000pt;}
.fs4_c00199{font-size:53.760000pt;}
.fsa_c00199{font-size:56.320000pt;}
.fs11_c00199{font-size:58.880000pt;}
.fs1_c00199{font-size:61.440000pt;}
.fse_c00199{font-size:64.000000pt;}
.fs0_c00199{font-size:66.560000pt;}
.fs8_c00199{font-size:69.120000pt;}
.fs7_c00199{font-size:71.680000pt;}
.y0_c00199{bottom:0.000000pt;}
.y7f_c00199{bottom:113.920000pt;}
.y7d_c00199{bottom:114.560000pt;}
.y7b_c00199{bottom:115.200000pt;}
.y7e_c00199{bottom:115.840000pt;}
.y7c_c00199{bottom:116.480000pt;}
.y7a_c00199{bottom:117.760000pt;}
.y78_c00199{bottom:152.320000pt;}
.y79_c00199{bottom:152.960000pt;}
.y74_c00199{bottom:153.600000pt;}
.y77_c00199{bottom:154.240000pt;}
.y76_c00199{bottom:154.880000pt;}
.y75_c00199{bottom:155.520000pt;}
.y73_c00199{bottom:158.080000pt;}
.y71_c00199{bottom:190.720000pt;}
.y6f_c00199{bottom:191.360000pt;}
.y6e_c00199{bottom:192.000000pt;}
.y70_c00199{bottom:192.640000pt;}
.y72_c00199{bottom:193.280000pt;}
.y6d_c00199{bottom:193.920000pt;}
.y69_c00199{bottom:227.840000pt;}
.y6b_c00199{bottom:228.480000pt;}
.y6c_c00199{bottom:229.120000pt;}
.y68_c00199{bottom:230.400000pt;}
.y6a_c00199{bottom:231.040000pt;}
.y67_c00199{bottom:232.320000pt;}
.y64_c00199{bottom:266.880000pt;}
.y63_c00199{bottom:268.160000pt;}
.y62_c00199{bottom:268.800000pt;}
.y65_c00199{bottom:269.440000pt;}
.y66_c00199{bottom:270.080000pt;}
.y60_c00199{bottom:305.920000pt;}
.y61_c00199{bottom:307.840000pt;}
.y5f_c00199{bottom:308.480000pt;}
.y5e_c00199{bottom:309.120000pt;}
.y5b_c00199{bottom:335.360000pt;}
.y5d_c00199{bottom:336.000000pt;}
.y5c_c00199{bottom:336.640000pt;}
.y5a_c00199{bottom:337.280000pt;}
.y59_c00199{bottom:337.920000pt;}
.y57_c00199{bottom:353.920000pt;}
.y58_c00199{bottom:355.200000pt;}
.y50_c00199{bottom:362.880000pt;}
.y51_c00199{bottom:364.160000pt;}
.y52_c00199{bottom:364.800000pt;}
.y53_c00199{bottom:365.440000pt;}
.y4f_c00199{bottom:366.080000pt;}
.y54_c00199{bottom:373.760000pt;}
.y55_c00199{bottom:374.400000pt;}
.y56_c00199{bottom:375.040000pt;}
.y4c_c00199{bottom:392.320000pt;}
.y4d_c00199{bottom:392.960000pt;}
.y4b_c00199{bottom:393.600000pt;}
.y49_c00199{bottom:394.240000pt;}
.y4a_c00199{bottom:394.880000pt;}
.y48_c00199{bottom:395.520000pt;}
.y4e_c00199{bottom:396.160000pt;}
.y47_c00199{bottom:429.440000pt;}
.y45_c00199{bottom:431.360000pt;}
.y46_c00199{bottom:432.640000pt;}
.y42_c00199{bottom:469.120000pt;}
.y44_c00199{bottom:470.400000pt;}
.y43_c00199{bottom:471.040000pt;}
.y41_c00199{bottom:505.600000pt;}
.y3f_c00199{bottom:506.240000pt;}
.y3d_c00199{bottom:507.520000pt;}
.y40_c00199{bottom:508.800000pt;}
.y3e_c00199{bottom:509.440000pt;}
.y3c_c00199{bottom:544.640000pt;}
.y38_c00199{bottom:545.280000pt;}
.y37_c00199{bottom:545.920000pt;}
.y3b_c00199{bottom:546.560000pt;}
.y3a_c00199{bottom:547.200000pt;}
.y39_c00199{bottom:547.840000pt;}
.y33_c00199{bottom:583.040000pt;}
.y34_c00199{bottom:583.680000pt;}
.y32_c00199{bottom:584.320000pt;}
.y36_c00199{bottom:584.960000pt;}
.y35_c00199{bottom:585.600000pt;}
.y31_c00199{bottom:586.240000pt;}
.y2e_c00199{bottom:632.320000pt;}
.y30_c00199{bottom:633.600000pt;}
.y2f_c00199{bottom:634.880000pt;}
.y2b_c00199{bottom:659.200000pt;}
.y2d_c00199{bottom:660.480000pt;}
.y27_c00199{bottom:661.120000pt;}
.y2c_c00199{bottom:661.760000pt;}
.y2a_c00199{bottom:662.400000pt;}
.y29_c00199{bottom:663.040000pt;}
.y28_c00199{bottom:663.680000pt;}
.y26_c00199{bottom:697.600000pt;}
.y24_c00199{bottom:698.240000pt;}
.y25_c00199{bottom:698.880000pt;}
.y22_c00199{bottom:699.520000pt;}
.y23_c00199{bottom:701.440000pt;}
.y1f_c00199{bottom:736.640000pt;}
.y20_c00199{bottom:737.280000pt;}
.y1d_c00199{bottom:737.920000pt;}
.y21_c00199{bottom:739.200000pt;}
.y1e_c00199{bottom:739.840000pt;}
.y1c_c00199{bottom:767.360000pt;}
.y1b_c00199{bottom:775.040000pt;}
.y15_c00199{bottom:775.680000pt;}
.y1a_c00199{bottom:776.320000pt;}
.y16_c00199{bottom:776.960000pt;}
.y19_c00199{bottom:777.600000pt;}
.y18_c00199{bottom:778.240000pt;}
.y17_c00199{bottom:781.440000pt;}
.y14_c00199{bottom:812.800000pt;}
.y10_c00199{bottom:813.440000pt;}
.y12_c00199{bottom:814.080000pt;}
.y11_c00199{bottom:815.360000pt;}
.y13_c00199{bottom:816.000000pt;}
.yd_c00199{bottom:851.200000pt;}
.yb_c00199{bottom:851.840000pt;}
.yf_c00199{bottom:853.760000pt;}
.yc_c00199{bottom:854.400000pt;}
.ye_c00199{bottom:855.040000pt;}
.y9_c00199{bottom:888.960000pt;}
.ya_c00199{bottom:890.240000pt;}
.y6_c00199{bottom:890.880000pt;}
.y7_c00199{bottom:891.520000pt;}
.y8_c00199{bottom:894.720000pt;}
.y3_c00199{bottom:928.640000pt;}
.y2_c00199{bottom:929.280000pt;}
.y5_c00199{bottom:929.920000pt;}
.y4_c00199{bottom:931.840000pt;}
.y1_c00199{bottom:972.800000pt;}
.h13_c00199{height:2.303750pt;}
.hd_c00199{height:6.911250pt;}
.h7_c00199{height:13.822500pt;}
.h14_c00199{height:18.430000pt;}
.h6_c00199{height:20.733750pt;}
.h15_c00199{height:25.341250pt;}
.hc_c00199{height:27.645000pt;}
.h16_c00199{height:29.948750pt;}
.he_c00199{height:32.252500pt;}
.h10_c00199{height:34.556250pt;}
.h17_c00199{height:36.860000pt;}
.h11_c00199{height:39.163750pt;}
.h3_c00199{height:41.467500pt;}
.ha_c00199{height:43.771250pt;}
.h4_c00199{height:46.075000pt;}
.h5_c00199{height:48.378750pt;}
.hb_c00199{height:50.682500pt;}
.h12_c00199{height:52.986250pt;}
.h2_c00199{height:55.290000pt;}
.hf_c00199{height:57.593750pt;}
.h1_c00199{height:59.897500pt;}
.h9_c00199{height:62.201250pt;}
.h8_c00199{height:64.505000pt;}
.h0_c00199{height:1024.000000pt;}
.w0_c00199{width:706.560000pt;}
.w1_c00199{width:706.666667pt;}
.x0_c00199{left:0.000000pt;}
.x32_c00199{left:72.960000pt;}
.x2_c00199{left:74.880000pt;}
.x5d_c00199{left:76.160000pt;}
.x5a_c00199{left:100.480000pt;}
.x41_c00199{left:101.760000pt;}
.xa_c00199{left:103.680000pt;}
.x52_c00199{left:110.080000pt;}
.xb_c00199{left:111.360000pt;}
.x49_c00199{left:112.640000pt;}
.x4a_c00199{left:119.680000pt;}
.x19_c00199{left:120.960000pt;}
.x33_c00199{left:129.280000pt;}
.x3_c00199{left:130.560000pt;}
.x5b_c00199{left:138.240000pt;}
.x2d_c00199{left:149.760000pt;}
.x56_c00199{left:157.440000pt;}
.x3c_c00199{left:158.720000pt;}
.xe_c00199{left:161.280000pt;}
.x4c_c00199{left:167.040000pt;}
.x15_c00199{left:168.960000pt;}
.x5c_c00199{left:176.640000pt;}
.x1e_c00199{left:178.560000pt;}
.x2e_c00199{left:186.880000pt;}
.x34_c00199{left:196.480000pt;}
.x27_c00199{left:205.440000pt;}
.x42_c00199{left:207.360000pt;}
.x16_c00199{left:216.960000pt;}
.x23_c00199{left:225.280000pt;}
.x35_c00199{left:236.160000pt;}
.xf_c00199{left:246.400000pt;}
.x4d_c00199{left:253.440000pt;}
.x43_c00199{left:255.360000pt;}
.x1a_c00199{left:264.960000pt;}
.x4_c00199{left:266.240000pt;}
.x17_c00199{left:274.560000pt;}
.x3d_c00199{left:284.160000pt;}
.x10_c00199{left:294.400000pt;}
.x5e_c00199{left:300.800000pt;}
.x24_c00199{left:303.360000pt;}
.x53_c00199{left:312.320000pt;}
.xc_c00199{left:313.600000pt;}
.x36_c00199{left:331.520000pt;}
.x5f_c00199{left:340.480000pt;}
.x21_c00199{left:342.400000pt;}
.x25_c00199{left:350.720000pt;}
.x1b_c00199{left:362.240000pt;}
.x54_c00199{left:368.640000pt;}
.x44_c00199{left:371.200000pt;}
.x28_c00199{left:389.760000pt;}
.x22_c00199{left:391.040000pt;}
.x4e_c00199{left:398.720000pt;}
.x1c_c00199{left:400.000000pt;}
.x60_c00199{left:407.680000pt;}
.x37_c00199{left:408.960000pt;}
.x57_c00199{left:417.280000pt;}
.x4f_c00199{left:426.880000pt;}
.x3e_c00199{left:428.160000pt;}
.x38_c00199{left:437.120000pt;}
.xd_c00199{left:439.040000pt;}
.x55_c00199{left:446.080000pt;}
.x5_c00199{left:449.920000pt;}
.x47_c00199{left:455.040000pt;}
.x11_c00199{left:458.240000pt;}
.x3f_c00199{left:466.560000pt;}
.x26_c00199{left:476.160000pt;}
.x12_c00199{left:477.440000pt;}
.x58_c00199{left:483.840000pt;}
.x29_c00199{left:485.120000pt;}
.x50_c00199{left:493.440000pt;}
.x39_c00199{left:494.720000pt;}
.x13_c00199{left:507.520000pt;}
.x2f_c00199{left:513.280000pt;}
.x1d_c00199{left:514.560000pt;}
.x6_c00199{left:516.480000pt;}
.x3a_c00199{left:523.520000pt;}
.x51_c00199{left:531.200000pt;}
.x48_c00199{left:551.040000pt;}
.x7_c00199{left:554.880000pt;}
.x3b_c00199{left:561.280000pt;}
.x1f_c00199{left:563.200000pt;}
.x59_c00199{left:569.600000pt;}
.x40_c00199{left:573.440000pt;}
.x30_c00199{left:580.480000pt;}
.x2a_c00199{left:581.760000pt;}
.x45_c00199{left:590.080000pt;}
.x18_c00199{left:592.000000pt;}
.x8_c00199{left:593.280000pt;}
.x4b_c00199{left:599.040000pt;}
.x31_c00199{left:600.320000pt;}
.x14_c00199{left:601.600000pt;}
.x2b_c00199{left:609.920000pt;}
.x46_c00199{left:618.240000pt;}
.x2c_c00199{left:619.520000pt;}
.x20_c00199{left:628.480000pt;}
.x9_c00199{left:629.760000pt;}
.x1_c00199{left:638.080000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5126af0ab64b630a9ceafcd6.woff2')format("woff");}.ff1_c00200{font-family:ff1_c00200;line-height:1.109863;font-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_c00200{transform:matrix(0.202950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202950,0.000000,0.000000,0.250000,0,0);}
.m4b_c00200{transform:matrix(0.215200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215200,0.000000,0.000000,0.250000,0,0);}
.m1e_c00200{transform:matrix(0.221675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221675,0.000000,0.000000,0.250000,0,0);}
.m53_c00200{transform:matrix(0.234400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234400,0.000000,0.000000,0.250000,0,0);}
.m55_c00200{transform:matrix(0.247025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247025,0.000000,0.000000,0.250000,0,0);}
.m50_c00200{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m52_c00200{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);}
.m49_c00200{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00200{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);}
.m51_c00200{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m9_c00200{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);}
.m57_c00200{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m47_c00200{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m30_c00200{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00200{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m15_c00200{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);}
.m2e_c00200{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m6_c00200{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m33_c00200{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00200{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m42_c00200{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m38_c00200{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m29_c00200{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m32_c00200{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m34_c00200{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m8_c00200{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00200{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mf_c00200{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m45_c00200{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00200{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00200{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);}
.m25_c00200{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m35_c00200{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);}
.m43_c00200{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m31_c00200{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m11_c00200{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.md_c00200{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m1_c00200{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m0_c00200{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m18_c00200{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00200{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);}
.m2a_c00200{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);}
.me_c00200{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m40_c00200{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m20_c00200{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);}
.m37_c00200{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);}
.m14_c00200{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.ma_c00200{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);}
.m2f_c00200{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m4_c00200{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);}
.m4f_c00200{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);}
.m2d_c00200{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m19_c00200{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m5_c00200{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m26_c00200{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);}
.m22_c00200{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m2_c00200{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);}
.m1d_c00200{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);}
.m1f_c00200{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00200{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m24_c00200{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.mb_c00200{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);}
.m58_c00200{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m36_c00200{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m21_c00200{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m27_c00200{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m56_c00200{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);}
.m2b_c00200{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.mc_c00200{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m39_c00200{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);}
.m12_c00200{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m16_c00200{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m7_c00200{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m41_c00200{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m13_c00200{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);}
.m44_c00200{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m10_c00200{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m3_c00200{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00200{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00200{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m54_c00200{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);}
.m3e_c00200{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);}
.m48_c00200{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00200{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);}
.m4c_c00200{transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00200{transform:matrix(0.647500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.647500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.647500,0.000000,0.000000,0.250000,0,0);}
.m23_c00200{transform:matrix(0.685000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00200{transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);}
.m46_c00200{transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);}
.v1_c00200{vertical-align:-20.160000px;}
.v0_c00200{vertical-align:0.000000px;}
.ls1_c00200{letter-spacing:0.000000px;}
.ls0_c00200{letter-spacing:29.124240px;}
.sc__c00200{text-shadow:none;}
.sc0_c00200{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00200{-webkit-text-stroke:0px transparent;}
.sc0_c00200{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00200{word-spacing:0.000000px;}
.fc0_c00200{color:transparent;}
.fse_c00200{font-size:20.160000px;}
.fsc_c00200{font-size:34.560000px;}
.fsd_c00200{font-size:37.440000px;}
.fs5_c00200{font-size:40.320000px;}
.fs8_c00200{font-size:43.200000px;}
.fsb_c00200{font-size:46.080000px;}
.fs9_c00200{font-size:48.960000px;}
.fs2_c00200{font-size:51.840000px;}
.fs3_c00200{font-size:54.720000px;}
.fsa_c00200{font-size:57.600000px;}
.fs7_c00200{font-size:60.480000px;}
.fs1_c00200{font-size:63.360000px;}
.fs4_c00200{font-size:66.240000px;}
.fs6_c00200{font-size:69.120000px;}
.fs0_c00200{font-size:77.760000px;}
.y0_c00200{bottom:0.000000px;}
.y61_c00200{bottom:30.960000px;}
.y5f_c00200{bottom:32.400000px;}
.y5e_c00200{bottom:33.840000px;}
.y5d_c00200{bottom:36.720000px;}
.y60_c00200{bottom:37.440000px;}
.y5b_c00200{bottom:73.440000px;}
.y5c_c00200{bottom:74.880000px;}
.y5a_c00200{bottom:79.920000px;}
.y58_c00200{bottom:114.480000px;}
.y57_c00200{bottom:115.920000px;}
.y55_c00200{bottom:116.640000px;}
.y59_c00200{bottom:117.360000px;}
.y56_c00200{bottom:118.080000px;}
.y54_c00200{bottom:121.680000px;}
.y4f_c00200{bottom:159.840000px;}
.y4d_c00200{bottom:160.560000px;}
.y4c_c00200{bottom:162.720000px;}
.y4b_c00200{bottom:165.600000px;}
.y4e_c00200{bottom:166.320000px;}
.y4a_c00200{bottom:203.760000px;}
.y53_c00200{bottom:205.200000px;}
.y49_c00200{bottom:208.080000px;}
.y47_c00200{bottom:247.680000px;}
.y48_c00200{bottom:248.400000px;}
.y52_c00200{bottom:249.120000px;}
.y46_c00200{bottom:252.000000px;}
.y51_c00200{bottom:290.160000px;}
.y45_c00200{bottom:290.880000px;}
.y44_c00200{bottom:291.600000px;}
.y43_c00200{bottom:294.480000px;}
.y41_c00200{bottom:333.360000px;}
.y42_c00200{bottom:334.800000px;}
.y40_c00200{bottom:336.240000px;}
.y3f_c00200{bottom:336.960000px;}
.y3d_c00200{bottom:375.120000px;}
.y50_c00200{bottom:375.840000px;}
.y3e_c00200{bottom:376.560000px;}
.y3c_c00200{bottom:377.280000px;}
.y3b_c00200{bottom:380.160000px;}
.y39_c00200{bottom:419.760000px;}
.y3a_c00200{bottom:421.200000px;}
.y38_c00200{bottom:421.920000px;}
.y37_c00200{bottom:461.520000px;}
.y36_c00200{bottom:560.160000px;}
.y33_c00200{bottom:601.920000px;}
.y31_c00200{bottom:603.360000px;}
.y32_c00200{bottom:604.080000px;}
.y34_c00200{bottom:604.800000px;}
.y35_c00200{bottom:606.240000px;}
.y2c_c00200{bottom:643.680000px;}
.y30_c00200{bottom:644.400000px;}
.y2d_c00200{bottom:645.120000px;}
.y2f_c00200{bottom:645.840000px;}
.y2e_c00200{bottom:646.560000px;}
.y2b_c00200{bottom:647.280000px;}
.y2a_c00200{bottom:648.000000px;}
.y27_c00200{bottom:685.440000px;}
.y26_c00200{bottom:686.880000px;}
.y25_c00200{bottom:687.600000px;}
.y24_c00200{bottom:689.040000px;}
.y29_c00200{bottom:689.760000px;}
.y28_c00200{bottom:690.480000px;}
.y23_c00200{bottom:731.520000px;}
.y22_c00200{bottom:732.240000px;}
.y21_c00200{bottom:732.960000px;}
.y20_c00200{bottom:734.400000px;}
.y1d_c00200{bottom:784.800000px;}
.y1f_c00200{bottom:785.520000px;}
.y1c_c00200{bottom:786.960000px;}
.y1e_c00200{bottom:787.680000px;}
.y17_c00200{bottom:828.000000px;}
.y19_c00200{bottom:828.720000px;}
.y15_c00200{bottom:829.440000px;}
.y1b_c00200{bottom:830.160000px;}
.y16_c00200{bottom:830.880000px;}
.y18_c00200{bottom:831.600000px;}
.y1a_c00200{bottom:832.320000px;}
.y12_c00200{bottom:871.920000px;}
.y13_c00200{bottom:873.360000px;}
.y14_c00200{bottom:874.080000px;}
.yd_c00200{bottom:913.680000px;}
.ye_c00200{bottom:915.840000px;}
.y11_c00200{bottom:916.560000px;}
.yf_c00200{bottom:917.280000px;}
.y10_c00200{bottom:918.000000px;}
.ya_c00200{bottom:957.600000px;}
.y9_c00200{bottom:959.040000px;}
.yb_c00200{bottom:960.480000px;}
.yc_c00200{bottom:961.200000px;}
.y2_c00200{bottom:999.360000px;}
.y3_c00200{bottom:1000.080000px;}
.y6_c00200{bottom:1000.800000px;}
.y8_c00200{bottom:1002.240000px;}
.y7_c00200{bottom:1002.960000px;}
.y5_c00200{bottom:1003.680000px;}
.y4_c00200{bottom:1004.400000px;}
.y1_c00200{bottom:1087.920000px;}
.h10_c00200{height:18.142031px;}
.he_c00200{height:31.100625px;}
.hf_c00200{height:33.692344px;}
.h7_c00200{height:36.284062px;}
.ha_c00200{height:38.875781px;}
.hd_c00200{height:41.467500px;}
.hb_c00200{height:44.059219px;}
.h4_c00200{height:46.650937px;}
.h5_c00200{height:49.242656px;}
.hc_c00200{height:51.834375px;}
.h9_c00200{height:54.426094px;}
.h3_c00200{height:57.017812px;}
.h6_c00200{height:59.609531px;}
.h8_c00200{height:62.201250px;}
.h2_c00200{height:69.976406px;}
.h1_c00200{height:1149.000000px;}
.h0_c00200{height:1149.120000px;}
.w1_c00200{width:789.000000px;}
.w0_c00200{width:789.120000px;}
.x0_c00200{left:0.000000px;}
.x2_c00200{left:78.480000px;}
.x24_c00200{left:79.920000px;}
.x3f_c00200{left:82.080000px;}
.x3e_c00200{left:102.240000px;}
.x44_c00200{left:103.680000px;}
.xc_c00200{left:110.160000px;}
.x34_c00200{left:111.600000px;}
.x47_c00200{left:113.040000px;}
.x3_c00200{left:120.960000px;}
.x2f_c00200{left:122.400000px;}
.x3d_c00200{left:133.920000px;}
.x35_c00200{left:143.280000px;}
.xd_c00200{left:153.360000px;}
.x25_c00200{left:164.160000px;}
.x40_c00200{left:166.320000px;}
.x4_c00200{left:174.240000px;}
.x41_c00200{left:175.680000px;}
.x48_c00200{left:177.120000px;}
.x19_c00200{left:185.760000px;}
.x20_c00200{left:196.560000px;}
.x45_c00200{left:202.320000px;}
.x5_c00200{left:206.640000px;}
.x26_c00200{left:208.800000px;}
.xe_c00200{left:227.520000px;}
.x3b_c00200{left:228.960000px;}
.x1a_c00200{left:240.480000px;}
.x29_c00200{left:251.280000px;}
.x14_c00200{left:261.360000px;}
.x6_c00200{left:272.160000px;}
.x36_c00200{left:273.600000px;}
.x2a_c00200{left:282.240000px;}
.x3c_c00200{left:303.840000px;}
.x27_c00200{left:306.000000px;}
.x46_c00200{left:317.520000px;}
.xf_c00200{left:337.680000px;}
.x30_c00200{left:349.200000px;}
.x7_c00200{left:358.560000px;}
.x37_c00200{left:369.360000px;}
.x15_c00200{left:380.160000px;}
.x21_c00200{left:381.600000px;}
.x10_c00200{left:390.960000px;}
.x1b_c00200{left:401.760000px;}
.x38_c00200{left:424.080000px;}
.x16_c00200{left:434.160000px;}
.x1c_c00200{left:444.960000px;}
.x43_c00200{left:447.120000px;}
.x8_c00200{left:455.760000px;}
.x42_c00200{left:457.920000px;}
.x2b_c00200{left:465.840000px;}
.x17_c00200{left:478.080000px;}
.x9_c00200{left:488.160000px;}
.x33_c00200{left:489.600000px;}
.x1d_c00200{left:509.760000px;}
.x28_c00200{left:511.200000px;}
.x31_c00200{left:520.560000px;}
.x11_c00200{left:531.360000px;}
.x2c_c00200{left:532.800000px;}
.x22_c00200{left:542.160000px;}
.x1e_c00200{left:562.320000px;}
.x32_c00200{left:563.760000px;}
.x2d_c00200{left:565.200000px;}
.xa_c00200{left:575.280000px;}
.x39_c00200{left:585.360000px;}
.x12_c00200{left:606.240000px;}
.x3a_c00200{left:617.760000px;}
.x1f_c00200{left:639.360000px;}
.x13_c00200{left:648.720000px;}
.xb_c00200{left:660.960000px;}
.x18_c00200{left:682.560000px;}
.x23_c00200{left:693.360000px;}
.x2e_c00200{left:704.160000px;}
.x1_c00200{left:719.280000px;}
@media print{
.v1_c00200{vertical-align:-17.920000pt;}
.v0_c00200{vertical-align:0.000000pt;}
.ls1_c00200{letter-spacing:0.000000pt;}
.ls0_c00200{letter-spacing:25.888213pt;}
.ws0_c00200{word-spacing:0.000000pt;}
.fse_c00200{font-size:17.920000pt;}
.fsc_c00200{font-size:30.720000pt;}
.fsd_c00200{font-size:33.280000pt;}
.fs5_c00200{font-size:35.840000pt;}
.fs8_c00200{font-size:38.400000pt;}
.fsb_c00200{font-size:40.960000pt;}
.fs9_c00200{font-size:43.520000pt;}
.fs2_c00200{font-size:46.080000pt;}
.fs3_c00200{font-size:48.640000pt;}
.fsa_c00200{font-size:51.200000pt;}
.fs7_c00200{font-size:53.760000pt;}
.fs1_c00200{font-size:56.320000pt;}
.fs4_c00200{font-size:58.880000pt;}
.fs6_c00200{font-size:61.440000pt;}
.fs0_c00200{font-size:69.120000pt;}
.y0_c00200{bottom:0.000000pt;}
.y61_c00200{bottom:27.520000pt;}
.y5f_c00200{bottom:28.800000pt;}
.y5e_c00200{bottom:30.080000pt;}
.y5d_c00200{bottom:32.640000pt;}
.y60_c00200{bottom:33.280000pt;}
.y5b_c00200{bottom:65.280000pt;}
.y5c_c00200{bottom:66.560000pt;}
.y5a_c00200{bottom:71.040000pt;}
.y58_c00200{bottom:101.760000pt;}
.y57_c00200{bottom:103.040000pt;}
.y55_c00200{bottom:103.680000pt;}
.y59_c00200{bottom:104.320000pt;}
.y56_c00200{bottom:104.960000pt;}
.y54_c00200{bottom:108.160000pt;}
.y4f_c00200{bottom:142.080000pt;}
.y4d_c00200{bottom:142.720000pt;}
.y4c_c00200{bottom:144.640000pt;}
.y4b_c00200{bottom:147.200000pt;}
.y4e_c00200{bottom:147.840000pt;}
.y4a_c00200{bottom:181.120000pt;}
.y53_c00200{bottom:182.400000pt;}
.y49_c00200{bottom:184.960000pt;}
.y47_c00200{bottom:220.160000pt;}
.y48_c00200{bottom:220.800000pt;}
.y52_c00200{bottom:221.440000pt;}
.y46_c00200{bottom:224.000000pt;}
.y51_c00200{bottom:257.920000pt;}
.y45_c00200{bottom:258.560000pt;}
.y44_c00200{bottom:259.200000pt;}
.y43_c00200{bottom:261.760000pt;}
.y41_c00200{bottom:296.320000pt;}
.y42_c00200{bottom:297.600000pt;}
.y40_c00200{bottom:298.880000pt;}
.y3f_c00200{bottom:299.520000pt;}
.y3d_c00200{bottom:333.440000pt;}
.y50_c00200{bottom:334.080000pt;}
.y3e_c00200{bottom:334.720000pt;}
.y3c_c00200{bottom:335.360000pt;}
.y3b_c00200{bottom:337.920000pt;}
.y39_c00200{bottom:373.120000pt;}
.y3a_c00200{bottom:374.400000pt;}
.y38_c00200{bottom:375.040000pt;}
.y37_c00200{bottom:410.240000pt;}
.y36_c00200{bottom:497.920000pt;}
.y33_c00200{bottom:535.040000pt;}
.y31_c00200{bottom:536.320000pt;}
.y32_c00200{bottom:536.960000pt;}
.y34_c00200{bottom:537.600000pt;}
.y35_c00200{bottom:538.880000pt;}
.y2c_c00200{bottom:572.160000pt;}
.y30_c00200{bottom:572.800000pt;}
.y2d_c00200{bottom:573.440000pt;}
.y2f_c00200{bottom:574.080000pt;}
.y2e_c00200{bottom:574.720000pt;}
.y2b_c00200{bottom:575.360000pt;}
.y2a_c00200{bottom:576.000000pt;}
.y27_c00200{bottom:609.280000pt;}
.y26_c00200{bottom:610.560000pt;}
.y25_c00200{bottom:611.200000pt;}
.y24_c00200{bottom:612.480000pt;}
.y29_c00200{bottom:613.120000pt;}
.y28_c00200{bottom:613.760000pt;}
.y23_c00200{bottom:650.240000pt;}
.y22_c00200{bottom:650.880000pt;}
.y21_c00200{bottom:651.520000pt;}
.y20_c00200{bottom:652.800000pt;}
.y1d_c00200{bottom:697.600000pt;}
.y1f_c00200{bottom:698.240000pt;}
.y1c_c00200{bottom:699.520000pt;}
.y1e_c00200{bottom:700.160000pt;}
.y17_c00200{bottom:736.000000pt;}
.y19_c00200{bottom:736.640000pt;}
.y15_c00200{bottom:737.280000pt;}
.y1b_c00200{bottom:737.920000pt;}
.y16_c00200{bottom:738.560000pt;}
.y18_c00200{bottom:739.200000pt;}
.y1a_c00200{bottom:739.840000pt;}
.y12_c00200{bottom:775.040000pt;}
.y13_c00200{bottom:776.320000pt;}
.y14_c00200{bottom:776.960000pt;}
.yd_c00200{bottom:812.160000pt;}
.ye_c00200{bottom:814.080000pt;}
.y11_c00200{bottom:814.720000pt;}
.yf_c00200{bottom:815.360000pt;}
.y10_c00200{bottom:816.000000pt;}
.ya_c00200{bottom:851.200000pt;}
.y9_c00200{bottom:852.480000pt;}
.yb_c00200{bottom:853.760000pt;}
.yc_c00200{bottom:854.400000pt;}
.y2_c00200{bottom:888.320000pt;}
.y3_c00200{bottom:888.960000pt;}
.y6_c00200{bottom:889.600000pt;}
.y8_c00200{bottom:890.880000pt;}
.y7_c00200{bottom:891.520000pt;}
.y5_c00200{bottom:892.160000pt;}
.y4_c00200{bottom:892.800000pt;}
.y1_c00200{bottom:967.040000pt;}
.h10_c00200{height:16.126250pt;}
.he_c00200{height:27.645000pt;}
.hf_c00200{height:29.948750pt;}
.h7_c00200{height:32.252500pt;}
.ha_c00200{height:34.556250pt;}
.hd_c00200{height:36.860000pt;}
.hb_c00200{height:39.163750pt;}
.h4_c00200{height:41.467500pt;}
.h5_c00200{height:43.771250pt;}
.hc_c00200{height:46.075000pt;}
.h9_c00200{height:48.378750pt;}
.h3_c00200{height:50.682500pt;}
.h6_c00200{height:52.986250pt;}
.h8_c00200{height:55.290000pt;}
.h2_c00200{height:62.201250pt;}
.h1_c00200{height:1021.333333pt;}
.h0_c00200{height:1021.440000pt;}
.w1_c00200{width:701.333333pt;}
.w0_c00200{width:701.440000pt;}
.x0_c00200{left:0.000000pt;}
.x2_c00200{left:69.760000pt;}
.x24_c00200{left:71.040000pt;}
.x3f_c00200{left:72.960000pt;}
.x3e_c00200{left:90.880000pt;}
.x44_c00200{left:92.160000pt;}
.xc_c00200{left:97.920000pt;}
.x34_c00200{left:99.200000pt;}
.x47_c00200{left:100.480000pt;}
.x3_c00200{left:107.520000pt;}
.x2f_c00200{left:108.800000pt;}
.x3d_c00200{left:119.040000pt;}
.x35_c00200{left:127.360000pt;}
.xd_c00200{left:136.320000pt;}
.x25_c00200{left:145.920000pt;}
.x40_c00200{left:147.840000pt;}
.x4_c00200{left:154.880000pt;}
.x41_c00200{left:156.160000pt;}
.x48_c00200{left:157.440000pt;}
.x19_c00200{left:165.120000pt;}
.x20_c00200{left:174.720000pt;}
.x45_c00200{left:179.840000pt;}
.x5_c00200{left:183.680000pt;}
.x26_c00200{left:185.600000pt;}
.xe_c00200{left:202.240000pt;}
.x3b_c00200{left:203.520000pt;}
.x1a_c00200{left:213.760000pt;}
.x29_c00200{left:223.360000pt;}
.x14_c00200{left:232.320000pt;}
.x6_c00200{left:241.920000pt;}
.x36_c00200{left:243.200000pt;}
.x2a_c00200{left:250.880000pt;}
.x3c_c00200{left:270.080000pt;}
.x27_c00200{left:272.000000pt;}
.x46_c00200{left:282.240000pt;}
.xf_c00200{left:300.160000pt;}
.x30_c00200{left:310.400000pt;}
.x7_c00200{left:318.720000pt;}
.x37_c00200{left:328.320000pt;}
.x15_c00200{left:337.920000pt;}
.x21_c00200{left:339.200000pt;}
.x10_c00200{left:347.520000pt;}
.x1b_c00200{left:357.120000pt;}
.x38_c00200{left:376.960000pt;}
.x16_c00200{left:385.920000pt;}
.x1c_c00200{left:395.520000pt;}
.x43_c00200{left:397.440000pt;}
.x8_c00200{left:405.120000pt;}
.x42_c00200{left:407.040000pt;}
.x2b_c00200{left:414.080000pt;}
.x17_c00200{left:424.960000pt;}
.x9_c00200{left:433.920000pt;}
.x33_c00200{left:435.200000pt;}
.x1d_c00200{left:453.120000pt;}
.x28_c00200{left:454.400000pt;}
.x31_c00200{left:462.720000pt;}
.x11_c00200{left:472.320000pt;}
.x2c_c00200{left:473.600000pt;}
.x22_c00200{left:481.920000pt;}
.x1e_c00200{left:499.840000pt;}
.x32_c00200{left:501.120000pt;}
.x2d_c00200{left:502.400000pt;}
.xa_c00200{left:511.360000pt;}
.x39_c00200{left:520.320000pt;}
.x12_c00200{left:538.880000pt;}
.x3a_c00200{left:549.120000pt;}
.x1f_c00200{left:568.320000pt;}
.x13_c00200{left:576.640000pt;}
.xb_c00200{left:587.520000pt;}
.x18_c00200{left:606.720000pt;}
.x23_c00200{left:616.320000pt;}
.x2e_c00200{left:625.920000pt;}
.x1_c00200{left:639.360000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ace3a9f2c727f7c591b2b7a7.woff2')format("woff");}.ff1_c00201{font-family:ff1_c00201;line-height:1.109863;font-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_c00201{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m42_c00201{transform:matrix(0.243475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243475,0.000000,0.000000,0.250000,0,0);}
.m55_c00201{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m34_c00201{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m26_c00201{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m36_c00201{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m27_c00201{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m40_c00201{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.md_c00201{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m23_c00201{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m10_c00201{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m37_c00201{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m50_c00201{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m24_c00201{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m15_c00201{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00201{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m0_c00201{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00201{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m25_c00201{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00201{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);}
.m52_c00201{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00201{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m14_c00201{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m16_c00201{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);}
.m28_c00201{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m35_c00201{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00201{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m39_c00201{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);}
.m4f_c00201{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m4_c00201{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);}
.m29_c00201{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m22_c00201{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.mb_c00201{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_c00201{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m17_c00201{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m20_c00201{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);}
.m3a_c00201{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);}
.m1f_c00201{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);}
.m47_c00201{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.me_c00201{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);}
.m2d_c00201{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);}
.m54_c00201{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);}
.m3c_c00201{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);}
.m3d_c00201{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m45_c00201{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m1_c00201{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);}
.m33_c00201{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m2_c00201{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);}
.m43_c00201{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);}
.m3b_c00201{transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);}
.m46_c00201{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m11_c00201{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m6_c00201{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m13_c00201{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m32_c00201{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00201{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);}
.m5_c00201{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00201{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);}
.m41_c00201{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00201{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m19_c00201{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);}
.m1e_c00201{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00201{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);}
.m3_c00201{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m58_c00201{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00201{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.mc_c00201{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m8_c00201{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m18_c00201{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m49_c00201{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m44_c00201{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m48_c00201{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);}
.m4e_c00201{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00201{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m12_c00201{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m56_c00201{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00201{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);}
.mf_c00201{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m31_c00201{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);}
.m53_c00201{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m38_c00201{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m21_c00201{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00201{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m51_c00201{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00201{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m30_c00201{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);}
.m7_c00201{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m57_c00201{transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);}
.m9_c00201{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m59_c00201{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.v2_c00201{vertical-align:-11.520000px;}
.v1_c00201{vertical-align:-5.760000px;}
.v0_c00201{vertical-align:0.000000px;}
.v3_c00201{vertical-align:8.640000px;}
.ls0_c00201{letter-spacing:0.000000px;}
.sc__c00201{text-shadow:none;}
.sc0_c00201{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00201{-webkit-text-stroke:0px transparent;}
.sc0_c00201{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00201{word-spacing:-11.070720px;}
.ws2_c00201{word-spacing:-2.641440px;}
.ws0_c00201{word-spacing:-1.417920px;}
.ws3_c00201{word-spacing:0.000000px;}
.fc0_c00201{color:transparent;}
.fs6_c00201{font-size:25.920000px;}
.fs4_c00201{font-size:34.560000px;}
.fsc_c00201{font-size:37.440000px;}
.fsd_c00201{font-size:40.320000px;}
.fs8_c00201{font-size:43.200000px;}
.fse_c00201{font-size:46.080000px;}
.fsb_c00201{font-size:48.960000px;}
.fs2_c00201{font-size:51.840000px;}
.fs1_c00201{font-size:54.720000px;}
.fs5_c00201{font-size:57.600000px;}
.fs3_c00201{font-size:60.480000px;}
.fs7_c00201{font-size:63.360000px;}
.fsf_c00201{font-size:66.240000px;}
.fsa_c00201{font-size:69.120000px;}
.fs9_c00201{font-size:72.000000px;}
.fs0_c00201{font-size:77.760000px;}
.fs10_c00201{font-size:95.040000px;}
.y0_c00201{bottom:0.000000px;}
.y77_c00201{bottom:2.160000px;}
.y73_c00201{bottom:23.040000px;}
.y74_c00201{bottom:25.200000px;}
.y72_c00201{bottom:25.920000px;}
.y75_c00201{bottom:26.640000px;}
.y76_c00201{bottom:27.360000px;}
.y6f_c00201{bottom:60.480000px;}
.y6c_c00201{bottom:64.800000px;}
.y6d_c00201{bottom:66.960000px;}
.y6e_c00201{bottom:67.680000px;}
.y6b_c00201{bottom:68.400000px;}
.y71_c00201{bottom:69.840000px;}
.y70_c00201{bottom:70.560000px;}
.y6a_c00201{bottom:71.280000px;}
.y63_c00201{bottom:108.720000px;}
.y65_c00201{bottom:109.440000px;}
.y64_c00201{bottom:110.880000px;}
.y67_c00201{bottom:111.600000px;}
.y66_c00201{bottom:112.320000px;}
.y68_c00201{bottom:113.040000px;}
.y69_c00201{bottom:113.760000px;}
.y62_c00201{bottom:114.480000px;}
.y60_c00201{bottom:151.920000px;}
.y5f_c00201{bottom:152.640000px;}
.y5e_c00201{bottom:154.080000px;}
.y61_c00201{bottom:155.520000px;}
.y5d_c00201{bottom:156.960000px;}
.y5c_c00201{bottom:195.840000px;}
.y5b_c00201{bottom:197.280000px;}
.y5a_c00201{bottom:198.000000px;}
.y59_c00201{bottom:198.720000px;}
.y58_c00201{bottom:199.440000px;}
.y55_c00201{bottom:249.120000px;}
.y54_c00201{bottom:250.560000px;}
.y52_c00201{bottom:251.280000px;}
.y56_c00201{bottom:252.000000px;}
.y57_c00201{bottom:252.720000px;}
.y53_c00201{bottom:254.160000px;}
.y4d_c00201{bottom:292.320000px;}
.y4c_c00201{bottom:293.040000px;}
.y4f_c00201{bottom:293.760000px;}
.y4b_c00201{bottom:295.200000px;}
.y4e_c00201{bottom:295.920000px;}
.y50_c00201{bottom:296.640000px;}
.y51_c00201{bottom:297.360000px;}
.y48_c00201{bottom:334.800000px;}
.y49_c00201{bottom:336.960000px;}
.y46_c00201{bottom:337.680000px;}
.y47_c00201{bottom:338.400000px;}
.y45_c00201{bottom:339.120000px;}
.y4a_c00201{bottom:339.840000px;}
.y44_c00201{bottom:421.200000px;}
.y3f_c00201{bottom:421.920000px;}
.y40_c00201{bottom:422.640000px;}
.y41_c00201{bottom:423.360000px;}
.y43_c00201{bottom:424.080000px;}
.y42_c00201{bottom:424.800000px;}
.y3e_c00201{bottom:425.520000px;}
.y3b_c00201{bottom:508.320000px;}
.y39_c00201{bottom:509.040000px;}
.y3c_c00201{bottom:510.480000px;}
.y3a_c00201{bottom:511.200000px;}
.y3d_c00201{bottom:511.920000px;}
.y35_c00201{bottom:551.520000px;}
.y36_c00201{bottom:552.240000px;}
.y38_c00201{bottom:553.680000px;}
.y37_c00201{bottom:554.400000px;}
.y34_c00201{bottom:555.120000px;}
.y2f_c00201{bottom:594.720000px;}
.y32_c00201{bottom:595.440000px;}
.y30_c00201{bottom:596.880000px;}
.y31_c00201{bottom:597.600000px;}
.y33_c00201{bottom:598.320000px;}
.y2e_c00201{bottom:637.200000px;}
.y2c_c00201{bottom:637.920000px;}
.y2d_c00201{bottom:638.640000px;}
.y2b_c00201{bottom:640.800000px;}
.y2a_c00201{bottom:680.400000px;}
.y27_c00201{bottom:681.120000px;}
.y29_c00201{bottom:683.280000px;}
.y26_c00201{bottom:684.000000px;}
.y28_c00201{bottom:685.440000px;}
.y21_c00201{bottom:723.600000px;}
.y24_c00201{bottom:724.320000px;}
.y25_c00201{bottom:725.760000px;}
.y22_c00201{bottom:726.480000px;}
.y23_c00201{bottom:727.200000px;}
.y1e_c00201{bottom:766.800000px;}
.y20_c00201{bottom:767.520000px;}
.y1f_c00201{bottom:769.680000px;}
.y1d_c00201{bottom:810.000000px;}
.y1c_c00201{bottom:810.720000px;}
.y19_c00201{bottom:812.160000px;}
.y1a_c00201{bottom:812.880000px;}
.y1b_c00201{bottom:813.600000px;}
.y17_c00201{bottom:851.760000px;}
.y14_c00201{bottom:853.200000px;}
.y18_c00201{bottom:854.640000px;}
.y16_c00201{bottom:855.360000px;}
.y15_c00201{bottom:856.080000px;}
.y11_c00201{bottom:895.680000px;}
.ye_c00201{bottom:896.400000px;}
.y13_c00201{bottom:897.120000px;}
.y12_c00201{bottom:897.840000px;}
.y10_c00201{bottom:898.560000px;}
.yf_c00201{bottom:899.280000px;}
.yc_c00201{bottom:981.360000px;}
.yd_c00201{bottom:982.080000px;}
.y9_c00201{bottom:982.800000px;}
.y7_c00201{bottom:983.520000px;}
.y8_c00201{bottom:984.240000px;}
.yb_c00201{bottom:984.960000px;}
.ya_c00201{bottom:985.680000px;}
.y3_c00201{bottom:1026.720000px;}
.y6_c00201{bottom:1027.440000px;}
.y5_c00201{bottom:1028.160000px;}
.y4_c00201{bottom:1028.880000px;}
.y2_c00201{bottom:1029.600000px;}
.y1_c00201{bottom:1092.240000px;}
.h8_c00201{height:23.325469px;}
.h6_c00201{height:31.100625px;}
.he_c00201{height:33.692344px;}
.hf_c00201{height:36.284062px;}
.ha_c00201{height:38.875781px;}
.h10_c00201{height:41.467500px;}
.hd_c00201{height:44.059219px;}
.h4_c00201{height:46.650937px;}
.h3_c00201{height:49.242656px;}
.h7_c00201{height:51.834375px;}
.h5_c00201{height:54.426094px;}
.h9_c00201{height:57.017812px;}
.h12_c00201{height:57.882656px;}
.h11_c00201{height:59.609531px;}
.hc_c00201{height:62.201250px;}
.hb_c00201{height:64.792969px;}
.h2_c00201{height:69.976406px;}
.h13_c00201{height:85.526719px;}
.h1_c00201{height:1149.750000px;}
.h0_c00201{height:1149.840000px;}
.w0_c00201{width:792.720000px;}
.w1_c00201{width:792.750000px;}
.x0_c00201{left:0.000000px;}
.xb_c00201{left:70.560000px;}
.x26_c00201{left:72.000000px;}
.x14_c00201{left:73.440000px;}
.x3f_c00201{left:75.600000px;}
.x35_c00201{left:95.040000px;}
.x30_c00201{left:103.680000px;}
.x27_c00201{left:114.480000px;}
.x4a_c00201{left:115.920000px;}
.x3e_c00201{left:124.560000px;}
.x4b_c00201{left:136.080000px;}
.x2b_c00201{left:146.160000px;}
.xc_c00201{left:156.960000px;}
.x40_c00201{left:169.200000px;}
.x1a_c00201{left:177.840000px;}
.x2_c00201{left:179.280000px;}
.xd_c00201{left:188.640000px;}
.x21_c00201{left:190.080000px;}
.x31_c00201{left:198.720000px;}
.x28_c00201{left:201.600000px;}
.x3_c00201{left:210.960000px;}
.x47_c00201{left:221.760000px;}
.x2c_c00201{left:232.560000px;}
.x15_c00201{left:242.640000px;}
.x41_c00201{left:252.720000px;}
.x48_c00201{left:254.880000px;}
.x1b_c00201{left:264.960000px;}
.x39_c00201{left:275.040000px;}
.x4_c00201{left:276.480000px;}
.x32_c00201{left:287.280000px;}
.xe_c00201{left:298.080000px;}
.x22_c00201{left:308.880000px;}
.x52_c00201{left:317.520000px;}
.x42_c00201{left:321.840000px;}
.xf_c00201{left:330.480000px;}
.x3a_c00201{left:341.280000px;}
.x46_c00201{left:352.080000px;}
.x1c_c00201{left:361.440000px;}
.x50_c00201{left:362.880000px;}
.x29_c00201{left:373.680000px;}
.x10_c00201{left:383.040000px;}
.x5_c00201{left:384.480000px;}
.x23_c00201{left:395.280000px;}
.x1d_c00201{left:406.080000px;}
.x43_c00201{left:407.520000px;}
.x6_c00201{left:416.880000px;}
.x3b_c00201{left:426.960000px;}
.x24_c00201{left:438.480000px;}
.x51_c00201{left:447.120000px;}
.x4e_c00201{left:448.560000px;}
.x1e_c00201{left:460.080000px;}
.x3c_c00201{left:470.160000px;}
.x7_c00201{left:471.600000px;}
.x44_c00201{left:481.680000px;}
.x33_c00201{left:491.760000px;}
.x16_c00201{left:501.840000px;}
.x11_c00201{left:503.280000px;}
.x53_c00201{left:513.360000px;}
.x36_c00201{left:523.440000px;}
.x1f_c00201{left:524.880000px;}
.x4c_c00201{left:526.320000px;}
.x34_c00201{left:534.960000px;}
.x2a_c00201{left:536.400000px;}
.x17_c00201{left:546.480000px;}
.x2d_c00201{left:556.560000px;}
.x8_c00201{left:578.880000px;}
.x3d_c00201{left:588.240000px;}
.x4d_c00201{left:600.480000px;}
.x9_c00201{left:609.840000px;}
.x37_c00201{left:611.280000px;}
.x56_c00201{left:615.600000px;}
.x4f_c00201{left:619.920000px;}
.x12_c00201{left:621.360000px;}
.x20_c00201{left:632.880000px;}
.x49_c00201{left:641.520000px;}
.x18_c00201{left:643.680000px;}
.x2e_c00201{left:652.320000px;}
.x57_c00201{left:653.760000px;}
.x13_c00201{left:663.840000px;}
.x25_c00201{left:665.280000px;}
.x19_c00201{left:674.640000px;}
.x58_c00201{left:679.680000px;}
.x45_c00201{left:684.720000px;}
.x38_c00201{left:686.160000px;}
.x2f_c00201{left:695.520000px;}
.xa_c00201{left:706.320000px;}
.x54_c00201{left:707.760000px;}
.x1_c00201{left:714.240000px;}
.x55_c00201{left:730.080000px;}
@media print{
.v2_c00201{vertical-align:-10.240000pt;}
.v1_c00201{vertical-align:-5.120000pt;}
.v0_c00201{vertical-align:0.000000pt;}
.v3_c00201{vertical-align:7.680000pt;}
.ls0_c00201{letter-spacing:0.000000pt;}
.ws1_c00201{word-spacing:-9.840640pt;}
.ws2_c00201{word-spacing:-2.347947pt;}
.ws0_c00201{word-spacing:-1.260373pt;}
.ws3_c00201{word-spacing:0.000000pt;}
.fs6_c00201{font-size:23.040000pt;}
.fs4_c00201{font-size:30.720000pt;}
.fsc_c00201{font-size:33.280000pt;}
.fsd_c00201{font-size:35.840000pt;}
.fs8_c00201{font-size:38.400000pt;}
.fse_c00201{font-size:40.960000pt;}
.fsb_c00201{font-size:43.520000pt;}
.fs2_c00201{font-size:46.080000pt;}
.fs1_c00201{font-size:48.640000pt;}
.fs5_c00201{font-size:51.200000pt;}
.fs3_c00201{font-size:53.760000pt;}
.fs7_c00201{font-size:56.320000pt;}
.fsf_c00201{font-size:58.880000pt;}
.fsa_c00201{font-size:61.440000pt;}
.fs9_c00201{font-size:64.000000pt;}
.fs0_c00201{font-size:69.120000pt;}
.fs10_c00201{font-size:84.480000pt;}
.y0_c00201{bottom:0.000000pt;}
.y77_c00201{bottom:1.920000pt;}
.y73_c00201{bottom:20.480000pt;}
.y74_c00201{bottom:22.400000pt;}
.y72_c00201{bottom:23.040000pt;}
.y75_c00201{bottom:23.680000pt;}
.y76_c00201{bottom:24.320000pt;}
.y6f_c00201{bottom:53.760000pt;}
.y6c_c00201{bottom:57.600000pt;}
.y6d_c00201{bottom:59.520000pt;}
.y6e_c00201{bottom:60.160000pt;}
.y6b_c00201{bottom:60.800000pt;}
.y71_c00201{bottom:62.080000pt;}
.y70_c00201{bottom:62.720000pt;}
.y6a_c00201{bottom:63.360000pt;}
.y63_c00201{bottom:96.640000pt;}
.y65_c00201{bottom:97.280000pt;}
.y64_c00201{bottom:98.560000pt;}
.y67_c00201{bottom:99.200000pt;}
.y66_c00201{bottom:99.840000pt;}
.y68_c00201{bottom:100.480000pt;}
.y69_c00201{bottom:101.120000pt;}
.y62_c00201{bottom:101.760000pt;}
.y60_c00201{bottom:135.040000pt;}
.y5f_c00201{bottom:135.680000pt;}
.y5e_c00201{bottom:136.960000pt;}
.y61_c00201{bottom:138.240000pt;}
.y5d_c00201{bottom:139.520000pt;}
.y5c_c00201{bottom:174.080000pt;}
.y5b_c00201{bottom:175.360000pt;}
.y5a_c00201{bottom:176.000000pt;}
.y59_c00201{bottom:176.640000pt;}
.y58_c00201{bottom:177.280000pt;}
.y55_c00201{bottom:221.440000pt;}
.y54_c00201{bottom:222.720000pt;}
.y52_c00201{bottom:223.360000pt;}
.y56_c00201{bottom:224.000000pt;}
.y57_c00201{bottom:224.640000pt;}
.y53_c00201{bottom:225.920000pt;}
.y4d_c00201{bottom:259.840000pt;}
.y4c_c00201{bottom:260.480000pt;}
.y4f_c00201{bottom:261.120000pt;}
.y4b_c00201{bottom:262.400000pt;}
.y4e_c00201{bottom:263.040000pt;}
.y50_c00201{bottom:263.680000pt;}
.y51_c00201{bottom:264.320000pt;}
.y48_c00201{bottom:297.600000pt;}
.y49_c00201{bottom:299.520000pt;}
.y46_c00201{bottom:300.160000pt;}
.y47_c00201{bottom:300.800000pt;}
.y45_c00201{bottom:301.440000pt;}
.y4a_c00201{bottom:302.080000pt;}
.y44_c00201{bottom:374.400000pt;}
.y3f_c00201{bottom:375.040000pt;}
.y40_c00201{bottom:375.680000pt;}
.y41_c00201{bottom:376.320000pt;}
.y43_c00201{bottom:376.960000pt;}
.y42_c00201{bottom:377.600000pt;}
.y3e_c00201{bottom:378.240000pt;}
.y3b_c00201{bottom:451.840000pt;}
.y39_c00201{bottom:452.480000pt;}
.y3c_c00201{bottom:453.760000pt;}
.y3a_c00201{bottom:454.400000pt;}
.y3d_c00201{bottom:455.040000pt;}
.y35_c00201{bottom:490.240000pt;}
.y36_c00201{bottom:490.880000pt;}
.y38_c00201{bottom:492.160000pt;}
.y37_c00201{bottom:492.800000pt;}
.y34_c00201{bottom:493.440000pt;}
.y2f_c00201{bottom:528.640000pt;}
.y32_c00201{bottom:529.280000pt;}
.y30_c00201{bottom:530.560000pt;}
.y31_c00201{bottom:531.200000pt;}
.y33_c00201{bottom:531.840000pt;}
.y2e_c00201{bottom:566.400000pt;}
.y2c_c00201{bottom:567.040000pt;}
.y2d_c00201{bottom:567.680000pt;}
.y2b_c00201{bottom:569.600000pt;}
.y2a_c00201{bottom:604.800000pt;}
.y27_c00201{bottom:605.440000pt;}
.y29_c00201{bottom:607.360000pt;}
.y26_c00201{bottom:608.000000pt;}
.y28_c00201{bottom:609.280000pt;}
.y21_c00201{bottom:643.200000pt;}
.y24_c00201{bottom:643.840000pt;}
.y25_c00201{bottom:645.120000pt;}
.y22_c00201{bottom:645.760000pt;}
.y23_c00201{bottom:646.400000pt;}
.y1e_c00201{bottom:681.600000pt;}
.y20_c00201{bottom:682.240000pt;}
.y1f_c00201{bottom:684.160000pt;}
.y1d_c00201{bottom:720.000000pt;}
.y1c_c00201{bottom:720.640000pt;}
.y19_c00201{bottom:721.920000pt;}
.y1a_c00201{bottom:722.560000pt;}
.y1b_c00201{bottom:723.200000pt;}
.y17_c00201{bottom:757.120000pt;}
.y14_c00201{bottom:758.400000pt;}
.y18_c00201{bottom:759.680000pt;}
.y16_c00201{bottom:760.320000pt;}
.y15_c00201{bottom:760.960000pt;}
.y11_c00201{bottom:796.160000pt;}
.ye_c00201{bottom:796.800000pt;}
.y13_c00201{bottom:797.440000pt;}
.y12_c00201{bottom:798.080000pt;}
.y10_c00201{bottom:798.720000pt;}
.yf_c00201{bottom:799.360000pt;}
.yc_c00201{bottom:872.320000pt;}
.yd_c00201{bottom:872.960000pt;}
.y9_c00201{bottom:873.600000pt;}
.y7_c00201{bottom:874.240000pt;}
.y8_c00201{bottom:874.880000pt;}
.yb_c00201{bottom:875.520000pt;}
.ya_c00201{bottom:876.160000pt;}
.y3_c00201{bottom:912.640000pt;}
.y6_c00201{bottom:913.280000pt;}
.y5_c00201{bottom:913.920000pt;}
.y4_c00201{bottom:914.560000pt;}
.y2_c00201{bottom:915.200000pt;}
.y1_c00201{bottom:970.880000pt;}
.h8_c00201{height:20.733750pt;}
.h6_c00201{height:27.645000pt;}
.he_c00201{height:29.948750pt;}
.hf_c00201{height:32.252500pt;}
.ha_c00201{height:34.556250pt;}
.h10_c00201{height:36.860000pt;}
.hd_c00201{height:39.163750pt;}
.h4_c00201{height:41.467500pt;}
.h3_c00201{height:43.771250pt;}
.h7_c00201{height:46.075000pt;}
.h5_c00201{height:48.378750pt;}
.h9_c00201{height:50.682500pt;}
.h12_c00201{height:51.451250pt;}
.h11_c00201{height:52.986250pt;}
.hc_c00201{height:55.290000pt;}
.hb_c00201{height:57.593750pt;}
.h2_c00201{height:62.201250pt;}
.h13_c00201{height:76.023750pt;}
.h1_c00201{height:1022.000000pt;}
.h0_c00201{height:1022.080000pt;}
.w0_c00201{width:704.640000pt;}
.w1_c00201{width:704.666667pt;}
.x0_c00201{left:0.000000pt;}
.xb_c00201{left:62.720000pt;}
.x26_c00201{left:64.000000pt;}
.x14_c00201{left:65.280000pt;}
.x3f_c00201{left:67.200000pt;}
.x35_c00201{left:84.480000pt;}
.x30_c00201{left:92.160000pt;}
.x27_c00201{left:101.760000pt;}
.x4a_c00201{left:103.040000pt;}
.x3e_c00201{left:110.720000pt;}
.x4b_c00201{left:120.960000pt;}
.x2b_c00201{left:129.920000pt;}
.xc_c00201{left:139.520000pt;}
.x40_c00201{left:150.400000pt;}
.x1a_c00201{left:158.080000pt;}
.x2_c00201{left:159.360000pt;}
.xd_c00201{left:167.680000pt;}
.x21_c00201{left:168.960000pt;}
.x31_c00201{left:176.640000pt;}
.x28_c00201{left:179.200000pt;}
.x3_c00201{left:187.520000pt;}
.x47_c00201{left:197.120000pt;}
.x2c_c00201{left:206.720000pt;}
.x15_c00201{left:215.680000pt;}
.x41_c00201{left:224.640000pt;}
.x48_c00201{left:226.560000pt;}
.x1b_c00201{left:235.520000pt;}
.x39_c00201{left:244.480000pt;}
.x4_c00201{left:245.760000pt;}
.x32_c00201{left:255.360000pt;}
.xe_c00201{left:264.960000pt;}
.x22_c00201{left:274.560000pt;}
.x52_c00201{left:282.240000pt;}
.x42_c00201{left:286.080000pt;}
.xf_c00201{left:293.760000pt;}
.x3a_c00201{left:303.360000pt;}
.x46_c00201{left:312.960000pt;}
.x1c_c00201{left:321.280000pt;}
.x50_c00201{left:322.560000pt;}
.x29_c00201{left:332.160000pt;}
.x10_c00201{left:340.480000pt;}
.x5_c00201{left:341.760000pt;}
.x23_c00201{left:351.360000pt;}
.x1d_c00201{left:360.960000pt;}
.x43_c00201{left:362.240000pt;}
.x6_c00201{left:370.560000pt;}
.x3b_c00201{left:379.520000pt;}
.x24_c00201{left:389.760000pt;}
.x51_c00201{left:397.440000pt;}
.x4e_c00201{left:398.720000pt;}
.x1e_c00201{left:408.960000pt;}
.x3c_c00201{left:417.920000pt;}
.x7_c00201{left:419.200000pt;}
.x44_c00201{left:428.160000pt;}
.x33_c00201{left:437.120000pt;}
.x16_c00201{left:446.080000pt;}
.x11_c00201{left:447.360000pt;}
.x53_c00201{left:456.320000pt;}
.x36_c00201{left:465.280000pt;}
.x1f_c00201{left:466.560000pt;}
.x4c_c00201{left:467.840000pt;}
.x34_c00201{left:475.520000pt;}
.x2a_c00201{left:476.800000pt;}
.x17_c00201{left:485.760000pt;}
.x2d_c00201{left:494.720000pt;}
.x8_c00201{left:514.560000pt;}
.x3d_c00201{left:522.880000pt;}
.x4d_c00201{left:533.760000pt;}
.x9_c00201{left:542.080000pt;}
.x37_c00201{left:543.360000pt;}
.x56_c00201{left:547.200000pt;}
.x4f_c00201{left:551.040000pt;}
.x12_c00201{left:552.320000pt;}
.x20_c00201{left:562.560000pt;}
.x49_c00201{left:570.240000pt;}
.x18_c00201{left:572.160000pt;}
.x2e_c00201{left:579.840000pt;}
.x57_c00201{left:581.120000pt;}
.x13_c00201{left:590.080000pt;}
.x25_c00201{left:591.360000pt;}
.x19_c00201{left:599.680000pt;}
.x58_c00201{left:604.160000pt;}
.x45_c00201{left:608.640000pt;}
.x38_c00201{left:609.920000pt;}
.x2f_c00201{left:618.240000pt;}
.xa_c00201{left:627.840000pt;}
.x54_c00201{left:629.120000pt;}
.x1_c00201{left:634.880000pt;}
.x55_c00201{left:648.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_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_ade499005e659146eb4bcbda.woff2')format("woff");}.ff1_c00202{font-family:ff1_c00202;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m42_c00202{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m44_c00202{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m40_c00202{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);}
.m3c_c00202{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m43_c00202{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m35_c00202{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m51_c00202{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);}
.m53_c00202{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m2_c00202{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m31_c00202{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00202{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m37_c00202{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00202{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00202{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m41_c00202{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m50_c00202{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m57_c00202{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m13_c00202{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m23_c00202{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00202{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00202{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00202{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mf_c00202{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m52_c00202{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m10_c00202{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m16_c00202{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m0_c00202{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);}
.m4c_c00202{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m24_c00202{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);}
.m49_c00202{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m59_c00202{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);}
.m5f_c00202{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);}
.m8_c00202{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);}
.m54_c00202{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m38_c00202{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.ma_c00202{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);}
.m25_c00202{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);}
.m39_c00202{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m21_c00202{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);}
.m2f_c00202{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m6_c00202{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);}
.m1b_c00202{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);}
.m33_c00202{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);}
.m1c_c00202{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m12_c00202{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m4_c00202{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m48_c00202{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);}
.m32_c00202{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m34_c00202{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);}
.m3a_c00202{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00202{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);}
.m36_c00202{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m46_c00202{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m27_c00202{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m47_c00202{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);}
.m56_c00202{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00202{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);}
.me_c00202{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00202{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);}
.m17_c00202{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m26_c00202{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m28_c00202{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m18_c00202{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00202{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);}
.m5_c00202{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00202{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m11_c00202{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.mb_c00202{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m7_c00202{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m58_c00202{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.mc_c00202{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00202{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m15_c00202{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);}
.m5b_c00202{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);}
.m2a_c00202{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00202{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m3_c00202{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);}
.m22_c00202{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m29_c00202{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m60_c00202{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00202{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);}
.m5c_c00202{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m55_c00202{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00202{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);}
.m1_c00202{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00202{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00202{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);}
.m20_c00202{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.md_c00202{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m19_c00202{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00202{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00202{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m14_c00202{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);}
.m30_c00202{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m9_c00202{transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);}
.m45_c00202{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00202{transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);}
.v2_c00202{vertical-align:-8.640000px;}
.v1_c00202{vertical-align:-2.880000px;}
.v0_c00202{vertical-align:0.000000px;}
.ls0_c00202{letter-spacing:0.000000px;}
.sc__c00202{text-shadow:none;}
.sc0_c00202{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00202{-webkit-text-stroke:0px transparent;}
.sc0_c00202{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00202{word-spacing:-4.429680px;}
.ws2_c00202{word-spacing:0.000000px;}
.ws1_c00202{word-spacing:104.131200px;}
.fc0_c00202{color:transparent;}
.fsf_c00202{font-size:23.040000px;}
.fs3_c00202{font-size:34.560000px;}
.fs8_c00202{font-size:37.440000px;}
.fsd_c00202{font-size:40.320000px;}
.fs1_c00202{font-size:43.200000px;}
.fsa_c00202{font-size:46.080000px;}
.fs9_c00202{font-size:48.960000px;}
.fs7_c00202{font-size:51.840000px;}
.fs5_c00202{font-size:54.720000px;}
.fse_c00202{font-size:57.600000px;}
.fsc_c00202{font-size:60.480000px;}
.fs6_c00202{font-size:63.360000px;}
.fs4_c00202{font-size:66.240000px;}
.fsb_c00202{font-size:69.120000px;}
.fs2_c00202{font-size:72.000000px;}
.fs0_c00202{font-size:77.760000px;}
.y0_c00202{bottom:0.000000px;}
.y78_c00202{bottom:23.760000px;}
.y77_c00202{bottom:25.200000px;}
.y79_c00202{bottom:25.920000px;}
.y76_c00202{bottom:26.640000px;}
.y75_c00202{bottom:30.240000px;}
.y73_c00202{bottom:64.080000px;}
.y74_c00202{bottom:65.520000px;}
.y71_c00202{bottom:66.240000px;}
.y72_c00202{bottom:66.960000px;}
.y70_c00202{bottom:72.000000px;}
.y6f_c00202{bottom:106.560000px;}
.y6e_c00202{bottom:107.280000px;}
.y6d_c00202{bottom:109.440000px;}
.y6c_c00202{bottom:110.880000px;}
.y6b_c00202{bottom:111.600000px;}
.y69_c00202{bottom:151.200000px;}
.y67_c00202{bottom:151.920000px;}
.y68_c00202{bottom:153.360000px;}
.y66_c00202{bottom:154.080000px;}
.y6a_c00202{bottom:154.800000px;}
.y64_c00202{bottom:194.400000px;}
.y65_c00202{bottom:195.120000px;}
.y63_c00202{bottom:195.840000px;}
.y62_c00202{bottom:197.280000px;}
.y5f_c00202{bottom:237.600000px;}
.y5d_c00202{bottom:239.040000px;}
.y60_c00202{bottom:239.760000px;}
.y5e_c00202{bottom:240.480000px;}
.y61_c00202{bottom:241.200000px;}
.y5b_c00202{bottom:292.320000px;}
.y5c_c00202{bottom:293.040000px;}
.y5a_c00202{bottom:293.760000px;}
.y58_c00202{bottom:316.080000px;}
.y59_c00202{bottom:316.800000px;}
.y57_c00202{bottom:318.240000px;}
.y56_c00202{bottom:347.760000px;}
.y55_c00202{bottom:348.480000px;}
.y54_c00202{bottom:349.200000px;}
.y53_c00202{bottom:349.920000px;}
.y50_c00202{bottom:389.520000px;}
.y51_c00202{bottom:390.240000px;}
.y52_c00202{bottom:391.680000px;}
.y4e_c00202{bottom:431.280000px;}
.y4d_c00202{bottom:432.720000px;}
.y4f_c00202{bottom:434.160000px;}
.y4c_c00202{bottom:434.880000px;}
.y4b_c00202{bottom:437.760000px;}
.y49_c00202{bottom:475.200000px;}
.y4a_c00202{bottom:477.360000px;}
.y48_c00202{bottom:478.080000px;}
.y47_c00202{bottom:478.800000px;}
.y46_c00202{bottom:479.520000px;}
.y43_c00202{bottom:518.400000px;}
.y42_c00202{bottom:519.120000px;}
.y44_c00202{bottom:519.840000px;}
.y45_c00202{bottom:520.560000px;}
.y40_c00202{bottom:573.840000px;}
.y3a_c00202{bottom:574.560000px;}
.y3c_c00202{bottom:575.280000px;}
.y3d_c00202{bottom:576.000000px;}
.y41_c00202{bottom:577.440000px;}
.y3f_c00202{bottom:606.240000px;}
.y3e_c00202{bottom:606.960000px;}
.y39_c00202{bottom:607.680000px;}
.y3b_c00202{bottom:608.400000px;}
.y38_c00202{bottom:648.000000px;}
.y36_c00202{bottom:650.160000px;}
.y37_c00202{bottom:650.880000px;}
.y33_c00202{bottom:691.920000px;}
.y35_c00202{bottom:692.640000px;}
.y34_c00202{bottom:693.360000px;}
.y32_c00202{bottom:694.800000px;}
.y31_c00202{bottom:745.920000px;}
.y30_c00202{bottom:746.640000px;}
.y2f_c00202{bottom:747.360000px;}
.y2e_c00202{bottom:748.080000px;}
.y2c_c00202{bottom:786.960000px;}
.y27_c00202{bottom:787.680000px;}
.y29_c00202{bottom:788.400000px;}
.y2b_c00202{bottom:789.120000px;}
.y2d_c00202{bottom:789.840000px;}
.y28_c00202{bottom:790.560000px;}
.y2a_c00202{bottom:791.280000px;}
.y24_c00202{bottom:830.880000px;}
.y21_c00202{bottom:831.600000px;}
.y23_c00202{bottom:832.320000px;}
.y25_c00202{bottom:833.040000px;}
.y26_c00202{bottom:833.760000px;}
.y22_c00202{bottom:834.480000px;}
.y20_c00202{bottom:872.640000px;}
.y1f_c00202{bottom:874.080000px;}
.y1d_c00202{bottom:874.800000px;}
.y1c_c00202{bottom:876.960000px;}
.y1e_c00202{bottom:877.680000px;}
.y1b_c00202{bottom:915.840000px;}
.y17_c00202{bottom:917.280000px;}
.y19_c00202{bottom:918.720000px;}
.y16_c00202{bottom:919.440000px;}
.y1a_c00202{bottom:920.160000px;}
.y18_c00202{bottom:920.880000px;}
.y14_c00202{bottom:959.040000px;}
.yf_c00202{bottom:960.480000px;}
.y12_c00202{bottom:961.200000px;}
.y15_c00202{bottom:961.920000px;}
.y13_c00202{bottom:962.640000px;}
.y11_c00202{bottom:963.360000px;}
.y10_c00202{bottom:964.080000px;}
.ye_c00202{bottom:1001.520000px;}
.yc_c00202{bottom:1003.680000px;}
.ya_c00202{bottom:1004.400000px;}
.yd_c00202{bottom:1005.120000px;}
.y8_c00202{bottom:1005.840000px;}
.y9_c00202{bottom:1006.560000px;}
.yb_c00202{bottom:1007.280000px;}
.y3_c00202{bottom:1046.160000px;}
.y5_c00202{bottom:1046.880000px;}
.y2_c00202{bottom:1047.600000px;}
.y7_c00202{bottom:1048.320000px;}
.y6_c00202{bottom:1049.760000px;}
.y4_c00202{bottom:1050.480000px;}
.y1_c00202{bottom:1094.400000px;}
.h11_c00202{height:20.733750px;}
.h5_c00202{height:31.100625px;}
.ha_c00202{height:33.692344px;}
.hf_c00202{height:36.284062px;}
.h3_c00202{height:38.875781px;}
.hc_c00202{height:41.467500px;}
.hb_c00202{height:44.059219px;}
.h9_c00202{height:46.650937px;}
.h7_c00202{height:49.242656px;}
.h10_c00202{height:51.834375px;}
.he_c00202{height:54.426094px;}
.h8_c00202{height:57.017812px;}
.h6_c00202{height:59.609531px;}
.hd_c00202{height:62.201250px;}
.h4_c00202{height:64.792969px;}
.h2_c00202{height:69.976406px;}
.h1_c00202{height:1164.750000px;}
.h0_c00202{height:1164.960000px;}
.w0_c00202{width:795.600000px;}
.w1_c00202{width:795.750000px;}
.x0_c00202{left:0.000000px;}
.x49_c00202{left:81.360000px;}
.x2_c00202{left:82.800000px;}
.xb_c00202{left:84.240000px;}
.x54_c00202{left:102.960000px;}
.x4a_c00202{left:113.760000px;}
.xc_c00202{left:115.200000px;}
.x42_c00202{left:123.840000px;}
.x3_c00202{left:125.280000px;}
.x36_c00202{left:135.360000px;}
.x37_c00202{left:136.800000px;}
.x2f_c00202{left:146.160000px;}
.x43_c00202{left:155.520000px;}
.x29_c00202{left:167.760000px;}
.x24_c00202{left:177.840000px;}
.x19_c00202{left:179.280000px;}
.x56_c00202{left:187.920000px;}
.x15_c00202{left:190.080000px;}
.x63_c00202{left:198.000000px;}
.x52_c00202{left:199.440000px;}
.x38_c00202{left:200.880000px;}
.x5c_c00202{left:208.800000px;}
.x25_c00202{left:210.960000px;}
.x4_c00202{left:212.400000px;}
.x32_c00202{left:221.040000px;}
.xd_c00202{left:222.480000px;}
.x5f_c00202{left:230.400000px;}
.x5_c00202{left:233.280000px;}
.x44_c00202{left:241.200000px;}
.xe_c00202{left:244.080000px;}
.x20_c00202{left:254.880000px;}
.x64_c00202{left:262.800000px;}
.x53_c00202{left:264.240000px;}
.x39_c00202{left:265.680000px;}
.x6a_c00202{left:274.320000px;}
.x1a_c00202{left:276.480000px;}
.x4b_c00202{left:285.120000px;}
.xf_c00202{left:288.000000px;}
.x57_c00202{left:296.640000px;}
.x2a_c00202{left:298.080000px;}
.x21_c00202{left:299.520000px;}
.x67_c00202{left:306.000000px;}
.x4c_c00202{left:318.240000px;}
.x55_c00202{left:319.680000px;}
.x5d_c00202{left:327.600000px;}
.x3b_c00202{left:329.040000px;}
.x6_c00202{left:331.200000px;}
.x45_c00202{left:339.840000px;}
.x10_c00202{left:342.000000px;}
.x65_c00202{left:350.640000px;}
.x58_c00202{left:360.720000px;}
.x30_c00202{left:362.880000px;}
.x6b_c00202{left:370.080000px;}
.x46_c00202{left:372.960000px;}
.x7_c00202{left:374.400000px;}
.x3c_c00202{left:383.040000px;}
.x1b_c00202{left:385.200000px;}
.x4d_c00202{left:393.120000px;}
.x22_c00202{left:395.280000px;}
.x16_c00202{left:406.800000px;}
.x3d_c00202{left:415.440000px;}
.x1c_c00202{left:417.600000px;}
.x31_c00202{left:437.040000px;}
.x26_c00202{left:438.480000px;}
.x1d_c00202{left:444.960000px;}
.x4e_c00202{left:447.120000px;}
.x2b_c00202{left:449.280000px;}
.x11_c00202{left:450.720000px;}
.x33_c00202{left:459.360000px;}
.x4f_c00202{left:468.720000px;}
.x27_c00202{left:470.880000px;}
.x2c_c00202{left:480.240000px;}
.x34_c00202{left:492.480000px;}
.x68_c00202{left:499.680000px;}
.x59_c00202{left:501.120000px;}
.x3e_c00202{left:502.560000px;}
.x66_c00202{left:511.200000px;}
.x3a_c00202{left:512.640000px;}
.x2d_c00202{left:523.440000px;}
.x28_c00202{left:524.880000px;}
.x6c_c00202{left:532.800000px;}
.x3f_c00202{left:534.240000px;}
.x23_c00202{left:536.400000px;}
.x5a_c00202{left:543.600000px;}
.x50_c00202{left:545.760000px;}
.x1e_c00202{left:547.200000px;}
.x69_c00202{left:552.960000px;}
.x8_c00202{left:558.000000px;}
.x6d_c00202{left:563.760000px;}
.x40_c00202{left:566.640000px;}
.x12_c00202{left:568.800000px;}
.x60_c00202{left:574.560000px;}
.x47_c00202{left:576.720000px;}
.x17_c00202{left:590.400000px;}
.x13_c00202{left:611.280000px;}
.x35_c00202{left:620.640000px;}
.x18_c00202{left:622.800000px;}
.x5e_c00202{left:631.440000px;}
.x41_c00202{left:641.520000px;}
.x2e_c00202{left:648.000000px;}
.x51_c00202{left:652.320000px;}
.x9_c00202{left:654.480000px;}
.x61_c00202{left:661.680000px;}
.x5b_c00202{left:671.760000px;}
.x48_c00202{left:673.920000px;}
.x1f_c00202{left:676.080000px;}
.xa_c00202{left:686.880000px;}
.x62_c00202{left:693.360000px;}
.x14_c00202{left:696.960000px;}
.x1_c00202{left:712.800000px;}
@media print{
.v2_c00202{vertical-align:-7.680000pt;}
.v1_c00202{vertical-align:-2.560000pt;}
.v0_c00202{vertical-align:0.000000pt;}
.ls0_c00202{letter-spacing:0.000000pt;}
.ws0_c00202{word-spacing:-3.937493pt;}
.ws2_c00202{word-spacing:0.000000pt;}
.ws1_c00202{word-spacing:92.561067pt;}
.fsf_c00202{font-size:20.480000pt;}
.fs3_c00202{font-size:30.720000pt;}
.fs8_c00202{font-size:33.280000pt;}
.fsd_c00202{font-size:35.840000pt;}
.fs1_c00202{font-size:38.400000pt;}
.fsa_c00202{font-size:40.960000pt;}
.fs9_c00202{font-size:43.520000pt;}
.fs7_c00202{font-size:46.080000pt;}
.fs5_c00202{font-size:48.640000pt;}
.fse_c00202{font-size:51.200000pt;}
.fsc_c00202{font-size:53.760000pt;}
.fs6_c00202{font-size:56.320000pt;}
.fs4_c00202{font-size:58.880000pt;}
.fsb_c00202{font-size:61.440000pt;}
.fs2_c00202{font-size:64.000000pt;}
.fs0_c00202{font-size:69.120000pt;}
.y0_c00202{bottom:0.000000pt;}
.y78_c00202{bottom:21.120000pt;}
.y77_c00202{bottom:22.400000pt;}
.y79_c00202{bottom:23.040000pt;}
.y76_c00202{bottom:23.680000pt;}
.y75_c00202{bottom:26.880000pt;}
.y73_c00202{bottom:56.960000pt;}
.y74_c00202{bottom:58.240000pt;}
.y71_c00202{bottom:58.880000pt;}
.y72_c00202{bottom:59.520000pt;}
.y70_c00202{bottom:64.000000pt;}
.y6f_c00202{bottom:94.720000pt;}
.y6e_c00202{bottom:95.360000pt;}
.y6d_c00202{bottom:97.280000pt;}
.y6c_c00202{bottom:98.560000pt;}
.y6b_c00202{bottom:99.200000pt;}
.y69_c00202{bottom:134.400000pt;}
.y67_c00202{bottom:135.040000pt;}
.y68_c00202{bottom:136.320000pt;}
.y66_c00202{bottom:136.960000pt;}
.y6a_c00202{bottom:137.600000pt;}
.y64_c00202{bottom:172.800000pt;}
.y65_c00202{bottom:173.440000pt;}
.y63_c00202{bottom:174.080000pt;}
.y62_c00202{bottom:175.360000pt;}
.y5f_c00202{bottom:211.200000pt;}
.y5d_c00202{bottom:212.480000pt;}
.y60_c00202{bottom:213.120000pt;}
.y5e_c00202{bottom:213.760000pt;}
.y61_c00202{bottom:214.400000pt;}
.y5b_c00202{bottom:259.840000pt;}
.y5c_c00202{bottom:260.480000pt;}
.y5a_c00202{bottom:261.120000pt;}
.y58_c00202{bottom:280.960000pt;}
.y59_c00202{bottom:281.600000pt;}
.y57_c00202{bottom:282.880000pt;}
.y56_c00202{bottom:309.120000pt;}
.y55_c00202{bottom:309.760000pt;}
.y54_c00202{bottom:310.400000pt;}
.y53_c00202{bottom:311.040000pt;}
.y50_c00202{bottom:346.240000pt;}
.y51_c00202{bottom:346.880000pt;}
.y52_c00202{bottom:348.160000pt;}
.y4e_c00202{bottom:383.360000pt;}
.y4d_c00202{bottom:384.640000pt;}
.y4f_c00202{bottom:385.920000pt;}
.y4c_c00202{bottom:386.560000pt;}
.y4b_c00202{bottom:389.120000pt;}
.y49_c00202{bottom:422.400000pt;}
.y4a_c00202{bottom:424.320000pt;}
.y48_c00202{bottom:424.960000pt;}
.y47_c00202{bottom:425.600000pt;}
.y46_c00202{bottom:426.240000pt;}
.y43_c00202{bottom:460.800000pt;}
.y42_c00202{bottom:461.440000pt;}
.y44_c00202{bottom:462.080000pt;}
.y45_c00202{bottom:462.720000pt;}
.y40_c00202{bottom:510.080000pt;}
.y3a_c00202{bottom:510.720000pt;}
.y3c_c00202{bottom:511.360000pt;}
.y3d_c00202{bottom:512.000000pt;}
.y41_c00202{bottom:513.280000pt;}
.y3f_c00202{bottom:538.880000pt;}
.y3e_c00202{bottom:539.520000pt;}
.y39_c00202{bottom:540.160000pt;}
.y3b_c00202{bottom:540.800000pt;}
.y38_c00202{bottom:576.000000pt;}
.y36_c00202{bottom:577.920000pt;}
.y37_c00202{bottom:578.560000pt;}
.y33_c00202{bottom:615.040000pt;}
.y35_c00202{bottom:615.680000pt;}
.y34_c00202{bottom:616.320000pt;}
.y32_c00202{bottom:617.600000pt;}
.y31_c00202{bottom:663.040000pt;}
.y30_c00202{bottom:663.680000pt;}
.y2f_c00202{bottom:664.320000pt;}
.y2e_c00202{bottom:664.960000pt;}
.y2c_c00202{bottom:699.520000pt;}
.y27_c00202{bottom:700.160000pt;}
.y29_c00202{bottom:700.800000pt;}
.y2b_c00202{bottom:701.440000pt;}
.y2d_c00202{bottom:702.080000pt;}
.y28_c00202{bottom:702.720000pt;}
.y2a_c00202{bottom:703.360000pt;}
.y24_c00202{bottom:738.560000pt;}
.y21_c00202{bottom:739.200000pt;}
.y23_c00202{bottom:739.840000pt;}
.y25_c00202{bottom:740.480000pt;}
.y26_c00202{bottom:741.120000pt;}
.y22_c00202{bottom:741.760000pt;}
.y20_c00202{bottom:775.680000pt;}
.y1f_c00202{bottom:776.960000pt;}
.y1d_c00202{bottom:777.600000pt;}
.y1c_c00202{bottom:779.520000pt;}
.y1e_c00202{bottom:780.160000pt;}
.y1b_c00202{bottom:814.080000pt;}
.y17_c00202{bottom:815.360000pt;}
.y19_c00202{bottom:816.640000pt;}
.y16_c00202{bottom:817.280000pt;}
.y1a_c00202{bottom:817.920000pt;}
.y18_c00202{bottom:818.560000pt;}
.y14_c00202{bottom:852.480000pt;}
.yf_c00202{bottom:853.760000pt;}
.y12_c00202{bottom:854.400000pt;}
.y15_c00202{bottom:855.040000pt;}
.y13_c00202{bottom:855.680000pt;}
.y11_c00202{bottom:856.320000pt;}
.y10_c00202{bottom:856.960000pt;}
.ye_c00202{bottom:890.240000pt;}
.yc_c00202{bottom:892.160000pt;}
.ya_c00202{bottom:892.800000pt;}
.yd_c00202{bottom:893.440000pt;}
.y8_c00202{bottom:894.080000pt;}
.y9_c00202{bottom:894.720000pt;}
.yb_c00202{bottom:895.360000pt;}
.y3_c00202{bottom:929.920000pt;}
.y5_c00202{bottom:930.560000pt;}
.y2_c00202{bottom:931.200000pt;}
.y7_c00202{bottom:931.840000pt;}
.y6_c00202{bottom:933.120000pt;}
.y4_c00202{bottom:933.760000pt;}
.y1_c00202{bottom:972.800000pt;}
.h11_c00202{height:18.430000pt;}
.h5_c00202{height:27.645000pt;}
.ha_c00202{height:29.948750pt;}
.hf_c00202{height:32.252500pt;}
.h3_c00202{height:34.556250pt;}
.hc_c00202{height:36.860000pt;}
.hb_c00202{height:39.163750pt;}
.h9_c00202{height:41.467500pt;}
.h7_c00202{height:43.771250pt;}
.h10_c00202{height:46.075000pt;}
.he_c00202{height:48.378750pt;}
.h8_c00202{height:50.682500pt;}
.h6_c00202{height:52.986250pt;}
.hd_c00202{height:55.290000pt;}
.h4_c00202{height:57.593750pt;}
.h2_c00202{height:62.201250pt;}
.h1_c00202{height:1035.333333pt;}
.h0_c00202{height:1035.520000pt;}
.w0_c00202{width:707.200000pt;}
.w1_c00202{width:707.333333pt;}
.x0_c00202{left:0.000000pt;}
.x49_c00202{left:72.320000pt;}
.x2_c00202{left:73.600000pt;}
.xb_c00202{left:74.880000pt;}
.x54_c00202{left:91.520000pt;}
.x4a_c00202{left:101.120000pt;}
.xc_c00202{left:102.400000pt;}
.x42_c00202{left:110.080000pt;}
.x3_c00202{left:111.360000pt;}
.x36_c00202{left:120.320000pt;}
.x37_c00202{left:121.600000pt;}
.x2f_c00202{left:129.920000pt;}
.x43_c00202{left:138.240000pt;}
.x29_c00202{left:149.120000pt;}
.x24_c00202{left:158.080000pt;}
.x19_c00202{left:159.360000pt;}
.x56_c00202{left:167.040000pt;}
.x15_c00202{left:168.960000pt;}
.x63_c00202{left:176.000000pt;}
.x52_c00202{left:177.280000pt;}
.x38_c00202{left:178.560000pt;}
.x5c_c00202{left:185.600000pt;}
.x25_c00202{left:187.520000pt;}
.x4_c00202{left:188.800000pt;}
.x32_c00202{left:196.480000pt;}
.xd_c00202{left:197.760000pt;}
.x5f_c00202{left:204.800000pt;}
.x5_c00202{left:207.360000pt;}
.x44_c00202{left:214.400000pt;}
.xe_c00202{left:216.960000pt;}
.x20_c00202{left:226.560000pt;}
.x64_c00202{left:233.600000pt;}
.x53_c00202{left:234.880000pt;}
.x39_c00202{left:236.160000pt;}
.x6a_c00202{left:243.840000pt;}
.x1a_c00202{left:245.760000pt;}
.x4b_c00202{left:253.440000pt;}
.xf_c00202{left:256.000000pt;}
.x57_c00202{left:263.680000pt;}
.x2a_c00202{left:264.960000pt;}
.x21_c00202{left:266.240000pt;}
.x67_c00202{left:272.000000pt;}
.x4c_c00202{left:282.880000pt;}
.x55_c00202{left:284.160000pt;}
.x5d_c00202{left:291.200000pt;}
.x3b_c00202{left:292.480000pt;}
.x6_c00202{left:294.400000pt;}
.x45_c00202{left:302.080000pt;}
.x10_c00202{left:304.000000pt;}
.x65_c00202{left:311.680000pt;}
.x58_c00202{left:320.640000pt;}
.x30_c00202{left:322.560000pt;}
.x6b_c00202{left:328.960000pt;}
.x46_c00202{left:331.520000pt;}
.x7_c00202{left:332.800000pt;}
.x3c_c00202{left:340.480000pt;}
.x1b_c00202{left:342.400000pt;}
.x4d_c00202{left:349.440000pt;}
.x22_c00202{left:351.360000pt;}
.x16_c00202{left:361.600000pt;}
.x3d_c00202{left:369.280000pt;}
.x1c_c00202{left:371.200000pt;}
.x31_c00202{left:388.480000pt;}
.x26_c00202{left:389.760000pt;}
.x1d_c00202{left:395.520000pt;}
.x4e_c00202{left:397.440000pt;}
.x2b_c00202{left:399.360000pt;}
.x11_c00202{left:400.640000pt;}
.x33_c00202{left:408.320000pt;}
.x4f_c00202{left:416.640000pt;}
.x27_c00202{left:418.560000pt;}
.x2c_c00202{left:426.880000pt;}
.x34_c00202{left:437.760000pt;}
.x68_c00202{left:444.160000pt;}
.x59_c00202{left:445.440000pt;}
.x3e_c00202{left:446.720000pt;}
.x66_c00202{left:454.400000pt;}
.x3a_c00202{left:455.680000pt;}
.x2d_c00202{left:465.280000pt;}
.x28_c00202{left:466.560000pt;}
.x6c_c00202{left:473.600000pt;}
.x3f_c00202{left:474.880000pt;}
.x23_c00202{left:476.800000pt;}
.x5a_c00202{left:483.200000pt;}
.x50_c00202{left:485.120000pt;}
.x1e_c00202{left:486.400000pt;}
.x69_c00202{left:491.520000pt;}
.x8_c00202{left:496.000000pt;}
.x6d_c00202{left:501.120000pt;}
.x40_c00202{left:503.680000pt;}
.x12_c00202{left:505.600000pt;}
.x60_c00202{left:510.720000pt;}
.x47_c00202{left:512.640000pt;}
.x17_c00202{left:524.800000pt;}
.x13_c00202{left:543.360000pt;}
.x35_c00202{left:551.680000pt;}
.x18_c00202{left:553.600000pt;}
.x5e_c00202{left:561.280000pt;}
.x41_c00202{left:570.240000pt;}
.x2e_c00202{left:576.000000pt;}
.x51_c00202{left:579.840000pt;}
.x9_c00202{left:581.760000pt;}
.x61_c00202{left:588.160000pt;}
.x5b_c00202{left:597.120000pt;}
.x48_c00202{left:599.040000pt;}
.x1f_c00202{left:600.960000pt;}
.xa_c00202{left:610.560000pt;}
.x62_c00202{left:616.320000pt;}
.x14_c00202{left:619.520000pt;}
.x1_c00202{left:633.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_fb66b0d25d4d6ef068ddb968.woff2')format("woff");}.ff1_c00203{font-family:ff1_c00203;line-height:1.109863;font-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_c00203{transform:matrix(0.209450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209450,0.000000,0.000000,0.250000,0,0);}
.m2e_c00203{transform:matrix(0.209675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209675,0.000000,0.000000,0.250000,0,0);}
.m5_c00203{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m6_c00203{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m2d_c00203{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);}
.m35_c00203{transform:matrix(0.247075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247075,0.000000,0.000000,0.250000,0,0);}
.m3a_c00203{transform:matrix(0.249550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249550,0.000000,0.000000,0.250000,0,0);}
.me_c00203{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.ma_c00203{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m29_c00203{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);}
.m30_c00203{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mb_c00203{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mf_c00203{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m25_c00203{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m4_c00203{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m39_c00203{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00203{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m33_c00203{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m46_c00203{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00203{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00203{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m44_c00203{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00203{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m9_c00203{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m38_c00203{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m24_c00203{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00203{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1_c00203{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m27_c00203{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m36_c00203{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m2_c00203{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mc_c00203{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m47_c00203{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m37_c00203{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m48_c00203{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);}
.m32_c00203{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m8_c00203{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_c00203{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m0_c00203{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m53_c00203{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);}
.m16_c00203{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);}
.m1a_c00203{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m3_c00203{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);}
.m14_c00203{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00203{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m20_c00203{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);}
.m1e_c00203{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m31_c00203{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);}
.m19_c00203{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);}
.m49_c00203{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.md_c00203{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m26_c00203{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m28_c00203{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00203{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m50_c00203{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);}
.m2a_c00203{transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);}
.m21_c00203{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m52_c00203{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00203{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m18_c00203{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m51_c00203{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00203{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00203{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00203{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00203{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m17_c00203{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m10_c00203{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m12_c00203{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m13_c00203{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00203{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);}
.m45_c00203{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00203{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m15_c00203{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);}
.m4a_c00203{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m40_c00203{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m11_c00203{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m22_c00203{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m41_c00203{transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00203{transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);}
.m43_c00203{transform:matrix(1.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.075000,0.000000,0.000000,0.250000,0,0);}
.m42_c00203{transform:matrix(1.127500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.127500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.127500,0.000000,0.000000,0.250000,0,0);}
.m7_c00203{transform:matrix(1.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.145000,0.000000,0.000000,0.250000,0,0);}
.m34_c00203{transform:matrix(2.627500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.627500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.627500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00203{transform:matrix(5.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.255000,0.000000,0.000000,0.250000,0,0);}
.v1_c00203{vertical-align:-51.840000px;}
.v2_c00203{vertical-align:-43.200000px;}
.v4_c00203{vertical-align:-40.320000px;}
.v3_c00203{vertical-align:-2.880000px;}
.v0_c00203{vertical-align:0.000000px;}
.v5_c00203{vertical-align:2.880000px;}
.ls2_c00203{letter-spacing:0.000000px;}
.ls1_c00203{letter-spacing:151.230240px;}
.ls0_c00203{letter-spacing:154.254240px;}
.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;}
}
.ws9_c00203{word-spacing:0.000000px;}
.ws6_c00203{word-spacing:13.140240px;}
.ws3_c00203{word-spacing:15.489956px;}
.ws4_c00203{word-spacing:36.303600px;}
.ws7_c00203{word-spacing:38.845440px;}
.ws2_c00203{word-spacing:41.333520px;}
.ws1_c00203{word-spacing:101.800673px;}
.ws8_c00203{word-spacing:125.712634px;}
.ws5_c00203{word-spacing:127.315440px;}
.ws0_c00203{word-spacing:133.103690px;}
.fc0_c00203{color:transparent;}
.fsf_c00203{font-size:25.920000px;}
.fs7_c00203{font-size:37.440000px;}
.fs13_c00203{font-size:40.320000px;}
.fsd_c00203{font-size:43.200000px;}
.fs4_c00203{font-size:46.080000px;}
.fs2_c00203{font-size:48.960000px;}
.fs3_c00203{font-size:51.840000px;}
.fs1_c00203{font-size:54.720000px;}
.fs5_c00203{font-size:57.600000px;}
.fs8_c00203{font-size:60.480000px;}
.fs6_c00203{font-size:63.360000px;}
.fs10_c00203{font-size:66.240000px;}
.fs9_c00203{font-size:69.120000px;}
.fs14_c00203{font-size:72.000000px;}
.fs0_c00203{font-size:74.880000px;}
.fsa_c00203{font-size:77.760000px;}
.fs12_c00203{font-size:80.640000px;}
.fse_c00203{font-size:83.520000px;}
.fs11_c00203{font-size:95.040000px;}
.fsc_c00203{font-size:97.920000px;}
.fsb_c00203{font-size:100.800000px;}
.y0_c00203{bottom:0.000000px;}
.y81_c00203{bottom:83.520000px;}
.y80_c00203{bottom:84.960000px;}
.y7f_c00203{bottom:85.680000px;}
.y7e_c00203{bottom:86.400000px;}
.y7d_c00203{bottom:87.120000px;}
.y7c_c00203{bottom:90.000000px;}
.y79_c00203{bottom:126.720000px;}
.y7b_c00203{bottom:127.440000px;}
.y7a_c00203{bottom:128.880000px;}
.y78_c00203{bottom:129.600000px;}
.y77_c00203{bottom:131.040000px;}
.y76_c00203{bottom:170.640000px;}
.y75_c00203{bottom:172.080000px;}
.y74_c00203{bottom:172.800000px;}
.y73_c00203{bottom:173.520000px;}
.y72_c00203{bottom:223.920000px;}
.y71_c00203{bottom:226.080000px;}
.y69_c00203{bottom:226.800000px;}
.y6f_c00203{bottom:227.520000px;}
.y6e_c00203{bottom:228.240000px;}
.y6d_c00203{bottom:230.400000px;}
.y6b_c00203{bottom:257.760000px;}
.y70_c00203{bottom:258.480000px;}
.y68_c00203{bottom:259.200000px;}
.y6c_c00203{bottom:259.920000px;}
.y6a_c00203{bottom:260.640000px;}
.y64_c00203{bottom:290.160000px;}
.y67_c00203{bottom:290.880000px;}
.y66_c00203{bottom:291.600000px;}
.y65_c00203{bottom:292.320000px;}
.y63_c00203{bottom:293.040000px;}
.y61_c00203{bottom:320.400000px;}
.y60_c00203{bottom:322.560000px;}
.y62_c00203{bottom:323.280000px;}
.y5d_c00203{bottom:364.320000px;}
.y5f_c00203{bottom:365.760000px;}
.y5e_c00203{bottom:366.480000px;}
.y5c_c00203{bottom:409.680000px;}
.y5b_c00203{bottom:414.720000px;}
.y58_c00203{bottom:416.880000px;}
.y56_c00203{bottom:417.600000px;}
.y57_c00203{bottom:418.320000px;}
.y59_c00203{bottom:420.480000px;}
.y5a_c00203{bottom:431.280000px;}
.y55_c00203{bottom:452.160000px;}
.y54_c00203{bottom:453.600000px;}
.y4f_c00203{bottom:460.800000px;}
.y4e_c00203{bottom:461.520000px;}
.y50_c00203{bottom:462.960000px;}
.y53_c00203{bottom:464.400000px;}
.y51_c00203{bottom:473.760000px;}
.y52_c00203{bottom:474.480000px;}
.y4d_c00203{bottom:495.360000px;}
.y4c_c00203{bottom:496.080000px;}
.y47_c00203{bottom:504.000000px;}
.y48_c00203{bottom:504.720000px;}
.y4b_c00203{bottom:506.880000px;}
.y49_c00203{bottom:507.600000px;}
.y4a_c00203{bottom:516.960000px;}
.y46_c00203{bottom:539.280000px;}
.y44_c00203{bottom:540.720000px;}
.y3f_c00203{bottom:547.200000px;}
.y40_c00203{bottom:547.920000px;}
.y43_c00203{bottom:550.080000px;}
.y41_c00203{bottom:550.800000px;}
.y45_c00203{bottom:553.680000px;}
.y42_c00203{bottom:560.880000px;}
.y3e_c00203{bottom:582.480000px;}
.y3d_c00203{bottom:583.200000px;}
.y38_c00203{bottom:590.400000px;}
.y39_c00203{bottom:591.120000px;}
.y3c_c00203{bottom:592.560000px;}
.y3b_c00203{bottom:593.280000px;}
.y3a_c00203{bottom:594.000000px;}
.y37_c00203{bottom:604.080000px;}
.y35_c00203{bottom:619.920000px;}
.y32_c00203{bottom:633.600000px;}
.y31_c00203{bottom:634.320000px;}
.y34_c00203{bottom:635.760000px;}
.y36_c00203{bottom:636.480000px;}
.y33_c00203{bottom:637.200000px;}
.y30_c00203{bottom:668.880000px;}
.y2b_c00203{bottom:677.520000px;}
.y2c_c00203{bottom:679.680000px;}
.y2e_c00203{bottom:680.400000px;}
.y2f_c00203{bottom:683.280000px;}
.y2d_c00203{bottom:690.480000px;}
.y28_c00203{bottom:712.080000px;}
.y26_c00203{bottom:720.000000px;}
.y2a_c00203{bottom:722.880000px;}
.y29_c00203{bottom:723.600000px;}
.y27_c00203{bottom:724.320000px;}
.y25_c00203{bottom:732.960000px;}
.y24_c00203{bottom:733.680000px;}
.y23_c00203{bottom:748.080000px;}
.y22_c00203{bottom:756.000000px;}
.y1f_c00203{bottom:763.200000px;}
.y21_c00203{bottom:765.360000px;}
.y20_c00203{bottom:766.800000px;}
.y1e_c00203{bottom:797.040000px;}
.y1d_c00203{bottom:798.480000px;}
.y1b_c00203{bottom:802.800000px;}
.y18_c00203{bottom:806.400000px;}
.y17_c00203{bottom:808.560000px;}
.y19_c00203{bottom:809.280000px;}
.y1c_c00203{bottom:817.920000px;}
.y1a_c00203{bottom:819.360000px;}
.y16_c00203{bottom:850.320000px;}
.y15_c00203{bottom:851.040000px;}
.y11_c00203{bottom:892.800000px;}
.y14_c00203{bottom:893.520000px;}
.y13_c00203{bottom:894.240000px;}
.y12_c00203{bottom:894.960000px;}
.y10_c00203{bottom:947.520000px;}
.yd_c00203{bottom:948.240000px;}
.ye_c00203{bottom:948.960000px;}
.yf_c00203{bottom:950.400000px;}
.yc_c00203{bottom:979.200000px;}
.yb_c00203{bottom:979.920000px;}
.ya_c00203{bottom:980.640000px;}
.y8_c00203{bottom:981.360000px;}
.y9_c00203{bottom:982.080000px;}
.y7_c00203{bottom:1012.320000px;}
.y6_c00203{bottom:1013.040000px;}
.y2_c00203{bottom:1013.760000px;}
.y4_c00203{bottom:1014.480000px;}
.y3_c00203{bottom:1046.160000px;}
.y5_c00203{bottom:1046.880000px;}
.y1_c00203{bottom:1096.560000px;}
.h11_c00203{height:23.325469px;}
.h9_c00203{height:33.692344px;}
.h15_c00203{height:36.284062px;}
.hf_c00203{height:38.875781px;}
.h6_c00203{height:41.467500px;}
.h4_c00203{height:44.059219px;}
.h5_c00203{height:46.650937px;}
.h17_c00203{height:46.939219px;}
.h3_c00203{height:49.242656px;}
.h7_c00203{height:51.834375px;}
.ha_c00203{height:54.426094px;}
.h8_c00203{height:57.017812px;}
.h12_c00203{height:59.609531px;}
.hb_c00203{height:62.201250px;}
.h16_c00203{height:64.792969px;}
.h2_c00203{height:67.384687px;}
.hc_c00203{height:69.976406px;}
.h14_c00203{height:72.568125px;}
.h10_c00203{height:75.159844px;}
.h13_c00203{height:85.526719px;}
.he_c00203{height:88.118437px;}
.hd_c00203{height:90.710156px;}
.h0_c00203{height:1154.160000px;}
.h1_c00203{height:1154.250000px;}
.w0_c00203{width:780.480000px;}
.w1_c00203{width:780.750000px;}
.x0_c00203{left:0.000000px;}
.x1a_c00203{left:68.400000px;}
.x55_c00203{left:88.560000px;}
.xe_c00203{left:100.080000px;}
.x66_c00203{left:108.720000px;}
.x2c_c00203{left:120.960000px;}
.x1b_c00203{left:122.400000px;}
.x50_c00203{left:130.320000px;}
.x2_c00203{left:132.480000px;}
.x62_c00203{left:140.400000px;}
.x2b_c00203{left:142.560000px;}
.x3e_c00203{left:153.360000px;}
.xf_c00203{left:154.800000px;}
.x51_c00203{left:162.720000px;}
.x32_c00203{left:164.160000px;}
.x2d_c00203{left:165.600000px;}
.x47_c00203{left:172.800000px;}
.x1c_c00203{left:175.680000px;}
.x67_c00203{left:183.600000px;}
.x52_c00203{left:185.760000px;}
.x4_c00203{left:187.200000px;}
.x56_c00203{left:195.120000px;}
.x33_c00203{left:197.280000px;}
.x42_c00203{left:206.640000px;}
.x10_c00203{left:208.080000px;}
.x5b_c00203{left:216.000000px;}
.x3f_c00203{left:218.160000px;}
.x4e_c00203{left:228.240000px;}
.x3_c00203{left:229.680000px;}
.x63_c00203{left:237.600000px;}
.x53_c00203{left:239.040000px;}
.x5_c00203{left:240.480000px;}
.x11_c00203{left:252.720000px;}
.x4f_c00203{left:259.920000px;}
.x44_c00203{left:262.080000px;}
.x5c_c00203{left:270.000000px;}
.x43_c00203{left:272.880000px;}
.x23_c00203{left:282.960000px;}
.x6_c00203{left:285.120000px;}
.x58_c00203{left:293.040000px;}
.x1d_c00203{left:295.200000px;}
.x45_c00203{left:304.560000px;}
.x24_c00203{left:315.360000px;}
.x12_c00203{left:317.520000px;}
.x48_c00203{left:324.000000px;}
.x8_c00203{left:328.320000px;}
.x7_c00203{left:337.680000px;}
.x1e_c00203{left:339.120000px;}
.x57_c00203{left:357.840000px;}
.x37_c00203{left:367.200000px;}
.x13_c00203{left:370.080000px;}
.x30_c00203{left:371.520000px;}
.x5d_c00203{left:378.000000px;}
.x3d_c00203{left:380.160000px;}
.x9_c00203{left:382.320000px;}
.x49_c00203{left:390.240000px;}
.xa_c00203{left:393.120000px;}
.x59_c00203{left:401.040000px;}
.x1f_c00203{left:402.480000px;}
.x25_c00203{left:412.560000px;}
.x14_c00203{left:414.720000px;}
.x5e_c00203{left:421.200000px;}
.x38_c00203{left:423.360000px;}
.x2e_c00203{left:432.720000px;}
.x3b_c00203{left:434.160000px;}
.x34_c00203{left:435.600000px;}
.x54_c00203{left:443.520000px;}
.xb_c00203{left:445.680000px;}
.x20_c00203{left:447.120000px;}
.x15_c00203{left:457.920000px;}
.x68_c00203{left:475.920000px;}
.x4a_c00203{left:487.440000px;}
.xc_c00203{left:490.320000px;}
.x64_c00203{left:496.800000px;}
.x26_c00203{left:500.400000px;}
.x5a_c00203{left:508.320000px;}
.x27_c00203{left:520.560000px;}
.x16_c00203{left:522.000000px;}
.x31_c00203{left:532.080000px;}
.x5f_c00203{left:540.000000px;}
.x46_c00203{left:541.440000px;}
.x2f_c00203{left:542.880000px;}
.x35_c00203{left:544.320000px;}
.x41_c00203{left:550.080000px;}
.x40_c00203{left:552.960000px;}
.x21_c00203{left:555.120000px;}
.x4b_c00203{left:562.320000px;}
.x17_c00203{left:565.920000px;}
.x4c_c00203{left:572.400000px;}
.x28_c00203{left:574.560000px;}
.xd_c00203{left:576.720000px;}
.x69_c00203{left:593.280000px;}
.x3a_c00203{left:596.160000px;}
.x39_c00203{left:597.600000px;}
.x36_c00203{left:604.800000px;}
.x3c_c00203{left:607.680000px;}
.x18_c00203{left:609.120000px;}
.x4d_c00203{left:615.600000px;}
.x29_c00203{left:618.480000px;}
.x60_c00203{left:636.480000px;}
.x22_c00203{left:641.520000px;}
.x2a_c00203{left:650.880000px;}
.x19_c00203{left:652.320000px;}
.x61_c00203{left:668.160000px;}
.x65_c00203{left:679.680000px;}
.x1_c00203{left:696.240000px;}
@media print{
.v1_c00203{vertical-align:-46.080000pt;}
.v2_c00203{vertical-align:-38.400000pt;}
.v4_c00203{vertical-align:-35.840000pt;}
.v3_c00203{vertical-align:-2.560000pt;}
.v0_c00203{vertical-align:0.000000pt;}
.v5_c00203{vertical-align:2.560000pt;}
.ls2_c00203{letter-spacing:0.000000pt;}
.ls1_c00203{letter-spacing:134.426880pt;}
.ls0_c00203{letter-spacing:137.114880pt;}
.ws9_c00203{word-spacing:0.000000pt;}
.ws6_c00203{word-spacing:11.680213pt;}
.ws3_c00203{word-spacing:13.768850pt;}
.ws4_c00203{word-spacing:32.269867pt;}
.ws7_c00203{word-spacing:34.529280pt;}
.ws2_c00203{word-spacing:36.740907pt;}
.ws1_c00203{word-spacing:90.489487pt;}
.ws8_c00203{word-spacing:111.744563pt;}
.ws5_c00203{word-spacing:113.169280pt;}
.ws0_c00203{word-spacing:118.314391pt;}
.fsf_c00203{font-size:23.040000pt;}
.fs7_c00203{font-size:33.280000pt;}
.fs13_c00203{font-size:35.840000pt;}
.fsd_c00203{font-size:38.400000pt;}
.fs4_c00203{font-size:40.960000pt;}
.fs2_c00203{font-size:43.520000pt;}
.fs3_c00203{font-size:46.080000pt;}
.fs1_c00203{font-size:48.640000pt;}
.fs5_c00203{font-size:51.200000pt;}
.fs8_c00203{font-size:53.760000pt;}
.fs6_c00203{font-size:56.320000pt;}
.fs10_c00203{font-size:58.880000pt;}
.fs9_c00203{font-size:61.440000pt;}
.fs14_c00203{font-size:64.000000pt;}
.fs0_c00203{font-size:66.560000pt;}
.fsa_c00203{font-size:69.120000pt;}
.fs12_c00203{font-size:71.680000pt;}
.fse_c00203{font-size:74.240000pt;}
.fs11_c00203{font-size:84.480000pt;}
.fsc_c00203{font-size:87.040000pt;}
.fsb_c00203{font-size:89.600000pt;}
.y0_c00203{bottom:0.000000pt;}
.y81_c00203{bottom:74.240000pt;}
.y80_c00203{bottom:75.520000pt;}
.y7f_c00203{bottom:76.160000pt;}
.y7e_c00203{bottom:76.800000pt;}
.y7d_c00203{bottom:77.440000pt;}
.y7c_c00203{bottom:80.000000pt;}
.y79_c00203{bottom:112.640000pt;}
.y7b_c00203{bottom:113.280000pt;}
.y7a_c00203{bottom:114.560000pt;}
.y78_c00203{bottom:115.200000pt;}
.y77_c00203{bottom:116.480000pt;}
.y76_c00203{bottom:151.680000pt;}
.y75_c00203{bottom:152.960000pt;}
.y74_c00203{bottom:153.600000pt;}
.y73_c00203{bottom:154.240000pt;}
.y72_c00203{bottom:199.040000pt;}
.y71_c00203{bottom:200.960000pt;}
.y69_c00203{bottom:201.600000pt;}
.y6f_c00203{bottom:202.240000pt;}
.y6e_c00203{bottom:202.880000pt;}
.y6d_c00203{bottom:204.800000pt;}
.y6b_c00203{bottom:229.120000pt;}
.y70_c00203{bottom:229.760000pt;}
.y68_c00203{bottom:230.400000pt;}
.y6c_c00203{bottom:231.040000pt;}
.y6a_c00203{bottom:231.680000pt;}
.y64_c00203{bottom:257.920000pt;}
.y67_c00203{bottom:258.560000pt;}
.y66_c00203{bottom:259.200000pt;}
.y65_c00203{bottom:259.840000pt;}
.y63_c00203{bottom:260.480000pt;}
.y61_c00203{bottom:284.800000pt;}
.y60_c00203{bottom:286.720000pt;}
.y62_c00203{bottom:287.360000pt;}
.y5d_c00203{bottom:323.840000pt;}
.y5f_c00203{bottom:325.120000pt;}
.y5e_c00203{bottom:325.760000pt;}
.y5c_c00203{bottom:364.160000pt;}
.y5b_c00203{bottom:368.640000pt;}
.y58_c00203{bottom:370.560000pt;}
.y56_c00203{bottom:371.200000pt;}
.y57_c00203{bottom:371.840000pt;}
.y59_c00203{bottom:373.760000pt;}
.y5a_c00203{bottom:383.360000pt;}
.y55_c00203{bottom:401.920000pt;}
.y54_c00203{bottom:403.200000pt;}
.y4f_c00203{bottom:409.600000pt;}
.y4e_c00203{bottom:410.240000pt;}
.y50_c00203{bottom:411.520000pt;}
.y53_c00203{bottom:412.800000pt;}
.y51_c00203{bottom:421.120000pt;}
.y52_c00203{bottom:421.760000pt;}
.y4d_c00203{bottom:440.320000pt;}
.y4c_c00203{bottom:440.960000pt;}
.y47_c00203{bottom:448.000000pt;}
.y48_c00203{bottom:448.640000pt;}
.y4b_c00203{bottom:450.560000pt;}
.y49_c00203{bottom:451.200000pt;}
.y4a_c00203{bottom:459.520000pt;}
.y46_c00203{bottom:479.360000pt;}
.y44_c00203{bottom:480.640000pt;}
.y3f_c00203{bottom:486.400000pt;}
.y40_c00203{bottom:487.040000pt;}
.y43_c00203{bottom:488.960000pt;}
.y41_c00203{bottom:489.600000pt;}
.y45_c00203{bottom:492.160000pt;}
.y42_c00203{bottom:498.560000pt;}
.y3e_c00203{bottom:517.760000pt;}
.y3d_c00203{bottom:518.400000pt;}
.y38_c00203{bottom:524.800000pt;}
.y39_c00203{bottom:525.440000pt;}
.y3c_c00203{bottom:526.720000pt;}
.y3b_c00203{bottom:527.360000pt;}
.y3a_c00203{bottom:528.000000pt;}
.y37_c00203{bottom:536.960000pt;}
.y35_c00203{bottom:551.040000pt;}
.y32_c00203{bottom:563.200000pt;}
.y31_c00203{bottom:563.840000pt;}
.y34_c00203{bottom:565.120000pt;}
.y36_c00203{bottom:565.760000pt;}
.y33_c00203{bottom:566.400000pt;}
.y30_c00203{bottom:594.560000pt;}
.y2b_c00203{bottom:602.240000pt;}
.y2c_c00203{bottom:604.160000pt;}
.y2e_c00203{bottom:604.800000pt;}
.y2f_c00203{bottom:607.360000pt;}
.y2d_c00203{bottom:613.760000pt;}
.y28_c00203{bottom:632.960000pt;}
.y26_c00203{bottom:640.000000pt;}
.y2a_c00203{bottom:642.560000pt;}
.y29_c00203{bottom:643.200000pt;}
.y27_c00203{bottom:643.840000pt;}
.y25_c00203{bottom:651.520000pt;}
.y24_c00203{bottom:652.160000pt;}
.y23_c00203{bottom:664.960000pt;}
.y22_c00203{bottom:672.000000pt;}
.y1f_c00203{bottom:678.400000pt;}
.y21_c00203{bottom:680.320000pt;}
.y20_c00203{bottom:681.600000pt;}
.y1e_c00203{bottom:708.480000pt;}
.y1d_c00203{bottom:709.760000pt;}
.y1b_c00203{bottom:713.600000pt;}
.y18_c00203{bottom:716.800000pt;}
.y17_c00203{bottom:718.720000pt;}
.y19_c00203{bottom:719.360000pt;}
.y1c_c00203{bottom:727.040000pt;}
.y1a_c00203{bottom:728.320000pt;}
.y16_c00203{bottom:755.840000pt;}
.y15_c00203{bottom:756.480000pt;}
.y11_c00203{bottom:793.600000pt;}
.y14_c00203{bottom:794.240000pt;}
.y13_c00203{bottom:794.880000pt;}
.y12_c00203{bottom:795.520000pt;}
.y10_c00203{bottom:842.240000pt;}
.yd_c00203{bottom:842.880000pt;}
.ye_c00203{bottom:843.520000pt;}
.yf_c00203{bottom:844.800000pt;}
.yc_c00203{bottom:870.400000pt;}
.yb_c00203{bottom:871.040000pt;}
.ya_c00203{bottom:871.680000pt;}
.y8_c00203{bottom:872.320000pt;}
.y9_c00203{bottom:872.960000pt;}
.y7_c00203{bottom:899.840000pt;}
.y6_c00203{bottom:900.480000pt;}
.y2_c00203{bottom:901.120000pt;}
.y4_c00203{bottom:901.760000pt;}
.y3_c00203{bottom:929.920000pt;}
.y5_c00203{bottom:930.560000pt;}
.y1_c00203{bottom:974.720000pt;}
.h11_c00203{height:20.733750pt;}
.h9_c00203{height:29.948750pt;}
.h15_c00203{height:32.252500pt;}
.hf_c00203{height:34.556250pt;}
.h6_c00203{height:36.860000pt;}
.h4_c00203{height:39.163750pt;}
.h5_c00203{height:41.467500pt;}
.h17_c00203{height:41.723750pt;}
.h3_c00203{height:43.771250pt;}
.h7_c00203{height:46.075000pt;}
.ha_c00203{height:48.378750pt;}
.h8_c00203{height:50.682500pt;}
.h12_c00203{height:52.986250pt;}
.hb_c00203{height:55.290000pt;}
.h16_c00203{height:57.593750pt;}
.h2_c00203{height:59.897500pt;}
.hc_c00203{height:62.201250pt;}
.h14_c00203{height:64.505000pt;}
.h10_c00203{height:66.808750pt;}
.h13_c00203{height:76.023750pt;}
.he_c00203{height:78.327500pt;}
.hd_c00203{height:80.631250pt;}
.h0_c00203{height:1025.920000pt;}
.h1_c00203{height:1026.000000pt;}
.w0_c00203{width:693.760000pt;}
.w1_c00203{width:694.000000pt;}
.x0_c00203{left:0.000000pt;}
.x1a_c00203{left:60.800000pt;}
.x55_c00203{left:78.720000pt;}
.xe_c00203{left:88.960000pt;}
.x66_c00203{left:96.640000pt;}
.x2c_c00203{left:107.520000pt;}
.x1b_c00203{left:108.800000pt;}
.x50_c00203{left:115.840000pt;}
.x2_c00203{left:117.760000pt;}
.x62_c00203{left:124.800000pt;}
.x2b_c00203{left:126.720000pt;}
.x3e_c00203{left:136.320000pt;}
.xf_c00203{left:137.600000pt;}
.x51_c00203{left:144.640000pt;}
.x32_c00203{left:145.920000pt;}
.x2d_c00203{left:147.200000pt;}
.x47_c00203{left:153.600000pt;}
.x1c_c00203{left:156.160000pt;}
.x67_c00203{left:163.200000pt;}
.x52_c00203{left:165.120000pt;}
.x4_c00203{left:166.400000pt;}
.x56_c00203{left:173.440000pt;}
.x33_c00203{left:175.360000pt;}
.x42_c00203{left:183.680000pt;}
.x10_c00203{left:184.960000pt;}
.x5b_c00203{left:192.000000pt;}
.x3f_c00203{left:193.920000pt;}
.x4e_c00203{left:202.880000pt;}
.x3_c00203{left:204.160000pt;}
.x63_c00203{left:211.200000pt;}
.x53_c00203{left:212.480000pt;}
.x5_c00203{left:213.760000pt;}
.x11_c00203{left:224.640000pt;}
.x4f_c00203{left:231.040000pt;}
.x44_c00203{left:232.960000pt;}
.x5c_c00203{left:240.000000pt;}
.x43_c00203{left:242.560000pt;}
.x23_c00203{left:251.520000pt;}
.x6_c00203{left:253.440000pt;}
.x58_c00203{left:260.480000pt;}
.x1d_c00203{left:262.400000pt;}
.x45_c00203{left:270.720000pt;}
.x24_c00203{left:280.320000pt;}
.x12_c00203{left:282.240000pt;}
.x48_c00203{left:288.000000pt;}
.x8_c00203{left:291.840000pt;}
.x7_c00203{left:300.160000pt;}
.x1e_c00203{left:301.440000pt;}
.x57_c00203{left:318.080000pt;}
.x37_c00203{left:326.400000pt;}
.x13_c00203{left:328.960000pt;}
.x30_c00203{left:330.240000pt;}
.x5d_c00203{left:336.000000pt;}
.x3d_c00203{left:337.920000pt;}
.x9_c00203{left:339.840000pt;}
.x49_c00203{left:346.880000pt;}
.xa_c00203{left:349.440000pt;}
.x59_c00203{left:356.480000pt;}
.x1f_c00203{left:357.760000pt;}
.x25_c00203{left:366.720000pt;}
.x14_c00203{left:368.640000pt;}
.x5e_c00203{left:374.400000pt;}
.x38_c00203{left:376.320000pt;}
.x2e_c00203{left:384.640000pt;}
.x3b_c00203{left:385.920000pt;}
.x34_c00203{left:387.200000pt;}
.x54_c00203{left:394.240000pt;}
.xb_c00203{left:396.160000pt;}
.x20_c00203{left:397.440000pt;}
.x15_c00203{left:407.040000pt;}
.x68_c00203{left:423.040000pt;}
.x4a_c00203{left:433.280000pt;}
.xc_c00203{left:435.840000pt;}
.x64_c00203{left:441.600000pt;}
.x26_c00203{left:444.800000pt;}
.x5a_c00203{left:451.840000pt;}
.x27_c00203{left:462.720000pt;}
.x16_c00203{left:464.000000pt;}
.x31_c00203{left:472.960000pt;}
.x5f_c00203{left:480.000000pt;}
.x46_c00203{left:481.280000pt;}
.x2f_c00203{left:482.560000pt;}
.x35_c00203{left:483.840000pt;}
.x41_c00203{left:488.960000pt;}
.x40_c00203{left:491.520000pt;}
.x21_c00203{left:493.440000pt;}
.x4b_c00203{left:499.840000pt;}
.x17_c00203{left:503.040000pt;}
.x4c_c00203{left:508.800000pt;}
.x28_c00203{left:510.720000pt;}
.xd_c00203{left:512.640000pt;}
.x69_c00203{left:527.360000pt;}
.x3a_c00203{left:529.920000pt;}
.x39_c00203{left:531.200000pt;}
.x36_c00203{left:537.600000pt;}
.x3c_c00203{left:540.160000pt;}
.x18_c00203{left:541.440000pt;}
.x4d_c00203{left:547.200000pt;}
.x29_c00203{left:549.760000pt;}
.x60_c00203{left:565.760000pt;}
.x22_c00203{left:570.240000pt;}
.x2a_c00203{left:578.560000pt;}
.x19_c00203{left:579.840000pt;}
.x61_c00203{left:593.920000pt;}
.x65_c00203{left:604.160000pt;}
.x1_c00203{left:618.880000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4d2293c163ab5e02b15ab838.woff2')format("woff");}.ff1_c00204{font-family:ff1_c00204;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m54_c00204{transform:matrix(0.187450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187450,0.000000,0.000000,0.250000,0,0);}
.m48_c00204{transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);}
.m14_c00204{transform:matrix(0.210900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210900,0.000000,0.000000,0.250000,0,0);}
.m47_c00204{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m42_c00204{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);}
.m17_c00204{transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);}
.m45_c00204{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m35_c00204{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m40_c00204{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m0_c00204{transform:matrix(0.244900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244900,0.000000,0.000000,0.250000,0,0);}
.m46_c00204{transform:matrix(0.246050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246050,0.000000,0.000000,0.250000,0,0);}
.m43_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);}
.m34_c00204{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);}
.m3f_c00204{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_c00204{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.md_c00204{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);}
.m32_c00204{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);}
.m3a_c00204{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m37_c00204{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mb_c00204{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00204{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);}
.m38_c00204{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m15_c00204{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m44_c00204{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00204{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m36_c00204{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m26_c00204{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.me_c00204{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00204{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00204{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m39_c00204{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00204{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m49_c00204{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m13_c00204{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);}
.m33_c00204{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);}
.m27_c00204{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);}
.m61_c00204{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m19_c00204{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00204{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m22_c00204{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00204{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00204{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00204{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);}
.m4_c00204{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m21_c00204{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m28_c00204{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);}
.m8_c00204{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);}
.m51_c00204{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);}
.m59_c00204{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);}
.m53_c00204{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m3_c00204{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);}
.m5f_c00204{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);}
.m30_c00204{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);}
.m1c_c00204{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.mf_c00204{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m6_c00204{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00204{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);}
.m1d_c00204{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00204{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);}
.m2_c00204{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);}
.m4b_c00204{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00204{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00204{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00204{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m57_c00204{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);}
.m16_c00204{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m29_c00204{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m58_c00204{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);}
.m52_c00204{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m5_c00204{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m1_c00204{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m50_c00204{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m60_c00204{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m9_c00204{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.ma_c00204{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00204{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.mc_c00204{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m56_c00204{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);}
.m2d_c00204{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);}
.m1e_c00204{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00204{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);}
.m12_c00204{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00204{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m62_c00204{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m7_c00204{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m11_c00204{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);}
.m23_c00204{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);}
.m2e_c00204{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m55_c00204{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00204{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);}
.m25_c00204{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m10_c00204{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);}
.m20_c00204{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00204{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m24_c00204{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00204{transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);}
.m63_c00204{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.m64_c00204{transform:matrix(2.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.252500,0.000000,0.000000,0.250000,0,0);}
.m41_c00204{transform:matrix(5.880000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.880000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.880000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00204{transform:matrix(6.757500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(6.757500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(6.757500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00204{transform:matrix(7.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(7.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(7.560000,0.000000,0.000000,0.250000,0,0);}
.v2_c00204{vertical-align:-2.880000px;}
.v0_c00204{vertical-align:0.000000px;}
.v1_c00204{vertical-align:2.880000px;}
.ls2_c00204{letter-spacing:0.000000px;}
.ls0_c00204{letter-spacing:202.350720px;}
.ls1_c00204{letter-spacing:211.262640px;}
.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;}
}
.ws2_c00204{word-spacing:-7.279091px;}
.ws1_c00204{word-spacing:-5.733245px;}
.ws5_c00204{word-spacing:0.000000px;}
.ws3_c00204{word-spacing:200.411179px;}
.ws4_c00204{word-spacing:284.570400px;}
.ws0_c00204{word-spacing:289.694880px;}
._0_c00204{width:272.733728px;}
.fc0_c00204{color:transparent;}
.fs11_c00204{font-size:17.280000px;}
.fs12_c00204{font-size:20.160000px;}
.fsa_c00204{font-size:23.040000px;}
.fsb_c00204{font-size:25.920000px;}
.fs6_c00204{font-size:34.560000px;}
.fs7_c00204{font-size:37.440000px;}
.fsc_c00204{font-size:40.320000px;}
.fs10_c00204{font-size:43.200000px;}
.fs2_c00204{font-size:46.080000px;}
.fs3_c00204{font-size:48.960000px;}
.fs1_c00204{font-size:51.840000px;}
.fs4_c00204{font-size:54.720000px;}
.fse_c00204{font-size:57.600000px;}
.fs5_c00204{font-size:60.480000px;}
.fs8_c00204{font-size:63.360000px;}
.fsd_c00204{font-size:66.240000px;}
.fsf_c00204{font-size:69.120000px;}
.fs13_c00204{font-size:72.000000px;}
.fs14_c00204{font-size:77.760000px;}
.fs0_c00204{font-size:83.520000px;}
.fs9_c00204{font-size:103.680000px;}
.y0_c00204{bottom:0.000000px;}
.y6f_c00204{bottom:0.720000px;}
.y6b_c00204{bottom:66.240000px;}
.y6c_c00204{bottom:66.960000px;}
.y6e_c00204{bottom:68.400000px;}
.y6a_c00204{bottom:69.120000px;}
.y6d_c00204{bottom:69.840000px;}
.y69_c00204{bottom:70.560000px;}
.y68_c00204{bottom:123.120000px;}
.y67_c00204{bottom:125.280000px;}
.y65_c00204{bottom:164.160000px;}
.y64_c00204{bottom:165.600000px;}
.y63_c00204{bottom:167.040000px;}
.y66_c00204{bottom:167.760000px;}
.y62_c00204{bottom:169.920000px;}
.y5d_c00204{bottom:208.800000px;}
.y60_c00204{bottom:209.520000px;}
.y5f_c00204{bottom:210.240000px;}
.y5e_c00204{bottom:210.960000px;}
.y61_c00204{bottom:212.400000px;}
.y5c_c00204{bottom:213.120000px;}
.y59_c00204{bottom:250.560000px;}
.y5a_c00204{bottom:252.000000px;}
.y5b_c00204{bottom:252.720000px;}
.y58_c00204{bottom:253.440000px;}
.y57_c00204{bottom:257.040000px;}
.y53_c00204{bottom:293.760000px;}
.y54_c00204{bottom:295.200000px;}
.y55_c00204{bottom:297.360000px;}
.y56_c00204{bottom:298.080000px;}
.y51_c00204{bottom:337.680000px;}
.y4f_c00204{bottom:339.840000px;}
.y50_c00204{bottom:340.560000px;}
.y52_c00204{bottom:341.280000px;}
.y4d_c00204{bottom:380.880000px;}
.y4c_c00204{bottom:383.040000px;}
.y4b_c00204{bottom:383.760000px;}
.y4e_c00204{bottom:384.480000px;}
.y44_c00204{bottom:435.600000px;}
.y43_c00204{bottom:436.320000px;}
.y45_c00204{bottom:437.760000px;}
.y42_c00204{bottom:438.480000px;}
.y41_c00204{bottom:440.640000px;}
.y3f_c00204{bottom:479.520000px;}
.y40_c00204{bottom:480.960000px;}
.y3d_c00204{bottom:481.680000px;}
.y3e_c00204{bottom:482.400000px;}
.y3c_c00204{bottom:522.000000px;}
.y3b_c00204{bottom:522.720000px;}
.y3a_c00204{bottom:524.160000px;}
.y39_c00204{bottom:524.880000px;}
.y38_c00204{bottom:550.800000px;}
.y36_c00204{bottom:565.200000px;}
.y37_c00204{bottom:565.920000px;}
.y35_c00204{bottom:567.360000px;}
.y34_c00204{bottom:568.080000px;}
.y32_c00204{bottom:608.400000px;}
.y33_c00204{bottom:609.120000px;}
.y31_c00204{bottom:610.560000px;}
.y30_c00204{bottom:611.280000px;}
.y48_c00204{bottom:629.280000px;}
.y47_c00204{bottom:630.000000px;}
.y49_c00204{bottom:630.720000px;}
.y4a_c00204{bottom:631.440000px;}
.y2f_c00204{bottom:636.480000px;}
.y2e_c00204{bottom:637.200000px;}
.y46_c00204{bottom:642.240000px;}
.y2d_c00204{bottom:650.880000px;}
.y2c_c00204{bottom:651.600000px;}
.y2a_c00204{bottom:653.040000px;}
.y2b_c00204{bottom:653.760000px;}
.y29_c00204{bottom:696.240000px;}
.y28_c00204{bottom:696.960000px;}
.y27_c00204{bottom:727.920000px;}
.y26_c00204{bottom:729.360000px;}
.y22_c00204{bottom:768.960000px;}
.y25_c00204{bottom:771.120000px;}
.y24_c00204{bottom:771.840000px;}
.y23_c00204{bottom:772.560000px;}
.y1c_c00204{bottom:812.160000px;}
.y20_c00204{bottom:812.880000px;}
.y1d_c00204{bottom:813.600000px;}
.y1f_c00204{bottom:814.320000px;}
.y1e_c00204{bottom:815.040000px;}
.y21_c00204{bottom:815.760000px;}
.y19_c00204{bottom:855.360000px;}
.y1a_c00204{bottom:856.080000px;}
.y17_c00204{bottom:857.520000px;}
.y18_c00204{bottom:858.240000px;}
.y1b_c00204{bottom:858.960000px;}
.y14_c00204{bottom:899.280000px;}
.y13_c00204{bottom:900.000000px;}
.y15_c00204{bottom:900.720000px;}
.y16_c00204{bottom:901.440000px;}
.y12_c00204{bottom:902.160000px;}
.yd_c00204{bottom:953.280000px;}
.y11_c00204{bottom:955.440000px;}
.ye_c00204{bottom:956.160000px;}
.yc_c00204{bottom:956.880000px;}
.y10_c00204{bottom:959.040000px;}
.yf_c00204{bottom:959.760000px;}
.y9_c00204{bottom:1007.280000px;}
.y7_c00204{bottom:1008.720000px;}
.yb_c00204{bottom:1009.440000px;}
.y8_c00204{bottom:1010.160000px;}
.ya_c00204{bottom:1010.880000px;}
.y6_c00204{bottom:1049.760000px;}
.y3_c00204{bottom:1051.200000px;}
.y2_c00204{bottom:1051.920000px;}
.y5_c00204{bottom:1052.640000px;}
.y4_c00204{bottom:1053.360000px;}
.y1_c00204{bottom:1095.840000px;}
.h14_c00204{height:15.550313px;}
.h15_c00204{height:18.142031px;}
.hc_c00204{height:20.733750px;}
.hd_c00204{height:23.325469px;}
.h8_c00204{height:31.100625px;}
.h9_c00204{height:33.692344px;}
.he_c00204{height:36.284062px;}
.h12_c00204{height:38.875781px;}
.h4_c00204{height:41.467500px;}
.h5_c00204{height:44.059219px;}
.h13_c00204{height:44.347500px;}
.h3_c00204{height:46.650937px;}
.h6_c00204{height:49.242656px;}
.h10_c00204{height:51.834375px;}
.h7_c00204{height:54.426094px;}
.ha_c00204{height:57.017812px;}
.hf_c00204{height:59.609531px;}
.h11_c00204{height:62.201250px;}
.h16_c00204{height:64.792969px;}
.h17_c00204{height:69.976406px;}
.h2_c00204{height:75.159844px;}
.hb_c00204{height:93.301875px;}
.h1_c00204{height:1164.000000px;}
.h0_c00204{height:1164.240000px;}
.w0_c00204{width:794.880000px;}
.w1_c00204{width:795.000000px;}
.x0_c00204{left:0.000000px;}
.x2_c00204{left:79.200000px;}
.x25_c00204{left:80.640000px;}
.x37_c00204{left:82.080000px;}
.x30_c00204{left:112.320000px;}
.x50_c00204{left:113.760000px;}
.x54_c00204{left:121.680000px;}
.x33_c00204{left:123.120000px;}
.x57_c00204{left:131.760000px;}
.x1f_c00204{left:133.920000px;}
.xb_c00204{left:144.720000px;}
.x2e_c00204{left:154.799775px;}
.xc_c00204{left:164.880000px;}
.x42_c00204{left:174.960000px;}
.x3_c00204{left:176.400000px;}
.x3e_c00204{left:186.480000px;}
.xd_c00204{left:187.920000px;}
.x26_c00204{left:196.560000px;}
.x4c_c00204{left:207.360000px;}
.x4_c00204{left:218.880000px;}
.xe_c00204{left:220.320000px;}
.x36_c00204{left:227.520000px;}
.x18_c00204{left:228.960000px;}
.x2f_c00204{left:231.120000px;}
.x34_c00204{left:239.760000px;}
.x32_c00204{left:241.200000px;}
.x4d_c00204{left:250.560000px;}
.x27_c00204{left:252.000000px;}
.x43_c00204{left:262.080000px;}
.xf_c00204{left:274.320000px;}
.x14_c00204{left:285.120000px;}
.x19_c00204{left:293.760000px;}
.x20_c00204{left:295.920000px;}
.x2d_c00204{left:306.720000px;}
.x3f_c00204{left:316.080000px;}
.x15_c00204{left:317.520000px;}
.x59_c00204{left:326.880000px;}
.x44_c00204{left:348.480000px;}
.x28_c00204{left:349.920000px;}
.x10_c00204{left:360.000000px;}
.x1a_c00204{left:370.800000px;}
.x45_c00204{left:380.160000px;}
.x5_c00204{left:382.320000px;}
.x11_c00204{left:392.400000px;}
.x21_c00204{left:403.200000px;}
.x6_c00204{left:414.000000px;}
.x46_c00204{left:423.360000px;}
.x12_c00204{left:425.520000px;}
.x1b_c00204{left:436.320000px;}
.x22_c00204{left:445.680000px;}
.x31_c00204{left:455.040000px;}
.x51_c00204{left:466.560000px;}
.x16_c00204{left:468.720000px;}
.x23_c00204{left:478.080000px;}
.x35_c00204{left:479.520000px;}
.x47_c00204{left:488.160000px;}
.x7_c00204{left:490.320000px;}
.x17_c00204{left:501.840000px;}
.x4e_c00204{left:510.480000px;}
.x29_c00204{left:512.640000px;}
.x48_c00204{left:520.560000px;}
.x13_c00204{left:523.440000px;}
.x1c_c00204{left:542.880000px;}
.x2a_c00204{left:544.320000px;}
.x55_c00204{left:551.520000px;}
.x4f_c00204{left:553.680000px;}
.x8_c00204{left:555.120000px;}
.x40_c00204{left:563.760000px;}
.x52_c00204{left:574.560000px;}
.x2b_c00204{left:576.000000px;}
.x24_c00204{left:586.080000px;}
.x9_c00204{left:587.520000px;}
.x49_c00204{left:595.440000px;}
.x39_c00204{left:607.680000px;}
.x5a_c00204{left:616.320000px;}
.x53_c00204{left:627.840000px;}
.x3a_c00204{left:629.280000px;}
.xa_c00204{left:630.720000px;}
.x4a_c00204{left:637.920000px;}
.x1d_c00204{left:640.080000px;}
.x41_c00204{left:649.440000px;}
.x4b_c00204{left:650.880000px;}
.x58_c00204{left:660.240000px;}
.x2c_c00204{left:672.480000px;}
.x3b_c00204{left:673.920000px;}
.x56_c00204{left:681.120000px;}
.x1e_c00204{left:682.560000px;}
.x3c_c00204{left:694.800000px;}
.x1_c00204{left:702.000000px;}
.x38_c00204{left:704.160000px;}
.x3d_c00204{left:736.560000px;}
@media print{
.v2_c00204{vertical-align:-2.560000pt;}
.v0_c00204{vertical-align:0.000000pt;}
.v1_c00204{vertical-align:2.560000pt;}
.ls2_c00204{letter-spacing:0.000000pt;}
.ls0_c00204{letter-spacing:179.867307pt;}
.ls1_c00204{letter-spacing:187.789013pt;}
.ws2_c00204{word-spacing:-6.470303pt;}
.ws1_c00204{word-spacing:-5.096218pt;}
.ws5_c00204{word-spacing:0.000000pt;}
.ws3_c00204{word-spacing:178.143270pt;}
.ws4_c00204{word-spacing:252.951467pt;}
.ws0_c00204{word-spacing:257.506560pt;}
._0_c00204{width:242.429980pt;}
.fs11_c00204{font-size:15.360000pt;}
.fs12_c00204{font-size:17.920000pt;}
.fsa_c00204{font-size:20.480000pt;}
.fsb_c00204{font-size:23.040000pt;}
.fs6_c00204{font-size:30.720000pt;}
.fs7_c00204{font-size:33.280000pt;}
.fsc_c00204{font-size:35.840000pt;}
.fs10_c00204{font-size:38.400000pt;}
.fs2_c00204{font-size:40.960000pt;}
.fs3_c00204{font-size:43.520000pt;}
.fs1_c00204{font-size:46.080000pt;}
.fs4_c00204{font-size:48.640000pt;}
.fse_c00204{font-size:51.200000pt;}
.fs5_c00204{font-size:53.760000pt;}
.fs8_c00204{font-size:56.320000pt;}
.fsd_c00204{font-size:58.880000pt;}
.fsf_c00204{font-size:61.440000pt;}
.fs13_c00204{font-size:64.000000pt;}
.fs14_c00204{font-size:69.120000pt;}
.fs0_c00204{font-size:74.240000pt;}
.fs9_c00204{font-size:92.160000pt;}
.y0_c00204{bottom:0.000000pt;}
.y6f_c00204{bottom:0.640000pt;}
.y6b_c00204{bottom:58.880000pt;}
.y6c_c00204{bottom:59.520000pt;}
.y6e_c00204{bottom:60.800000pt;}
.y6a_c00204{bottom:61.440000pt;}
.y6d_c00204{bottom:62.080000pt;}
.y69_c00204{bottom:62.720000pt;}
.y68_c00204{bottom:109.440000pt;}
.y67_c00204{bottom:111.360000pt;}
.y65_c00204{bottom:145.920000pt;}
.y64_c00204{bottom:147.200000pt;}
.y63_c00204{bottom:148.480000pt;}
.y66_c00204{bottom:149.120000pt;}
.y62_c00204{bottom:151.040000pt;}
.y5d_c00204{bottom:185.600000pt;}
.y60_c00204{bottom:186.240000pt;}
.y5f_c00204{bottom:186.880000pt;}
.y5e_c00204{bottom:187.520000pt;}
.y61_c00204{bottom:188.800000pt;}
.y5c_c00204{bottom:189.440000pt;}
.y59_c00204{bottom:222.720000pt;}
.y5a_c00204{bottom:224.000000pt;}
.y5b_c00204{bottom:224.640000pt;}
.y58_c00204{bottom:225.280000pt;}
.y57_c00204{bottom:228.480000pt;}
.y53_c00204{bottom:261.120000pt;}
.y54_c00204{bottom:262.400000pt;}
.y55_c00204{bottom:264.320000pt;}
.y56_c00204{bottom:264.960000pt;}
.y51_c00204{bottom:300.160000pt;}
.y4f_c00204{bottom:302.080000pt;}
.y50_c00204{bottom:302.720000pt;}
.y52_c00204{bottom:303.360000pt;}
.y4d_c00204{bottom:338.560000pt;}
.y4c_c00204{bottom:340.480000pt;}
.y4b_c00204{bottom:341.120000pt;}
.y4e_c00204{bottom:341.760000pt;}
.y44_c00204{bottom:387.200000pt;}
.y43_c00204{bottom:387.840000pt;}
.y45_c00204{bottom:389.120000pt;}
.y42_c00204{bottom:389.760000pt;}
.y41_c00204{bottom:391.680000pt;}
.y3f_c00204{bottom:426.240000pt;}
.y40_c00204{bottom:427.520000pt;}
.y3d_c00204{bottom:428.160000pt;}
.y3e_c00204{bottom:428.800000pt;}
.y3c_c00204{bottom:464.000000pt;}
.y3b_c00204{bottom:464.640000pt;}
.y3a_c00204{bottom:465.920000pt;}
.y39_c00204{bottom:466.560000pt;}
.y38_c00204{bottom:489.600000pt;}
.y36_c00204{bottom:502.400000pt;}
.y37_c00204{bottom:503.040000pt;}
.y35_c00204{bottom:504.320000pt;}
.y34_c00204{bottom:504.960000pt;}
.y32_c00204{bottom:540.800000pt;}
.y33_c00204{bottom:541.440000pt;}
.y31_c00204{bottom:542.720000pt;}
.y30_c00204{bottom:543.360000pt;}
.y48_c00204{bottom:559.360000pt;}
.y47_c00204{bottom:560.000000pt;}
.y49_c00204{bottom:560.640000pt;}
.y4a_c00204{bottom:561.280000pt;}
.y2f_c00204{bottom:565.760000pt;}
.y2e_c00204{bottom:566.400000pt;}
.y46_c00204{bottom:570.880000pt;}
.y2d_c00204{bottom:578.560000pt;}
.y2c_c00204{bottom:579.200000pt;}
.y2a_c00204{bottom:580.480000pt;}
.y2b_c00204{bottom:581.120000pt;}
.y29_c00204{bottom:618.880000pt;}
.y28_c00204{bottom:619.520000pt;}
.y27_c00204{bottom:647.040000pt;}
.y26_c00204{bottom:648.320000pt;}
.y22_c00204{bottom:683.520000pt;}
.y25_c00204{bottom:685.440000pt;}
.y24_c00204{bottom:686.080000pt;}
.y23_c00204{bottom:686.720000pt;}
.y1c_c00204{bottom:721.920000pt;}
.y20_c00204{bottom:722.560000pt;}
.y1d_c00204{bottom:723.200000pt;}
.y1f_c00204{bottom:723.840000pt;}
.y1e_c00204{bottom:724.480000pt;}
.y21_c00204{bottom:725.120000pt;}
.y19_c00204{bottom:760.320000pt;}
.y1a_c00204{bottom:760.960000pt;}
.y17_c00204{bottom:762.240000pt;}
.y18_c00204{bottom:762.880000pt;}
.y1b_c00204{bottom:763.520000pt;}
.y14_c00204{bottom:799.360000pt;}
.y13_c00204{bottom:800.000000pt;}
.y15_c00204{bottom:800.640000pt;}
.y16_c00204{bottom:801.280000pt;}
.y12_c00204{bottom:801.920000pt;}
.yd_c00204{bottom:847.360000pt;}
.y11_c00204{bottom:849.280000pt;}
.ye_c00204{bottom:849.920000pt;}
.yc_c00204{bottom:850.560000pt;}
.y10_c00204{bottom:852.480000pt;}
.yf_c00204{bottom:853.120000pt;}
.y9_c00204{bottom:895.360000pt;}
.y7_c00204{bottom:896.640000pt;}
.yb_c00204{bottom:897.280000pt;}
.y8_c00204{bottom:897.920000pt;}
.ya_c00204{bottom:898.560000pt;}
.y6_c00204{bottom:933.120000pt;}
.y3_c00204{bottom:934.400000pt;}
.y2_c00204{bottom:935.040000pt;}
.y5_c00204{bottom:935.680000pt;}
.y4_c00204{bottom:936.320000pt;}
.y1_c00204{bottom:974.080000pt;}
.h14_c00204{height:13.822500pt;}
.h15_c00204{height:16.126250pt;}
.hc_c00204{height:18.430000pt;}
.hd_c00204{height:20.733750pt;}
.h8_c00204{height:27.645000pt;}
.h9_c00204{height:29.948750pt;}
.he_c00204{height:32.252500pt;}
.h12_c00204{height:34.556250pt;}
.h4_c00204{height:36.860000pt;}
.h5_c00204{height:39.163750pt;}
.h13_c00204{height:39.420000pt;}
.h3_c00204{height:41.467500pt;}
.h6_c00204{height:43.771250pt;}
.h10_c00204{height:46.075000pt;}
.h7_c00204{height:48.378750pt;}
.ha_c00204{height:50.682500pt;}
.hf_c00204{height:52.986250pt;}
.h11_c00204{height:55.290000pt;}
.h16_c00204{height:57.593750pt;}
.h17_c00204{height:62.201250pt;}
.h2_c00204{height:66.808750pt;}
.hb_c00204{height:82.935000pt;}
.h1_c00204{height:1034.666667pt;}
.h0_c00204{height:1034.880000pt;}
.w0_c00204{width:706.560000pt;}
.w1_c00204{width:706.666667pt;}
.x0_c00204{left:0.000000pt;}
.x2_c00204{left:70.400000pt;}
.x25_c00204{left:71.680000pt;}
.x37_c00204{left:72.960000pt;}
.x30_c00204{left:99.840000pt;}
.x50_c00204{left:101.120000pt;}
.x54_c00204{left:108.160000pt;}
.x33_c00204{left:109.440000pt;}
.x57_c00204{left:117.120000pt;}
.x1f_c00204{left:119.040000pt;}
.xb_c00204{left:128.640000pt;}
.x2e_c00204{left:137.599800pt;}
.xc_c00204{left:146.560000pt;}
.x42_c00204{left:155.520000pt;}
.x3_c00204{left:156.800000pt;}
.x3e_c00204{left:165.760000pt;}
.xd_c00204{left:167.040000pt;}
.x26_c00204{left:174.720000pt;}
.x4c_c00204{left:184.320000pt;}
.x4_c00204{left:194.560000pt;}
.xe_c00204{left:195.840000pt;}
.x36_c00204{left:202.240000pt;}
.x18_c00204{left:203.520000pt;}
.x2f_c00204{left:205.440000pt;}
.x34_c00204{left:213.120000pt;}
.x32_c00204{left:214.400000pt;}
.x4d_c00204{left:222.720000pt;}
.x27_c00204{left:224.000000pt;}
.x43_c00204{left:232.960000pt;}
.xf_c00204{left:243.840000pt;}
.x14_c00204{left:253.440000pt;}
.x19_c00204{left:261.120000pt;}
.x20_c00204{left:263.040000pt;}
.x2d_c00204{left:272.640000pt;}
.x3f_c00204{left:280.960000pt;}
.x15_c00204{left:282.240000pt;}
.x59_c00204{left:290.560000pt;}
.x44_c00204{left:309.760000pt;}
.x28_c00204{left:311.040000pt;}
.x10_c00204{left:320.000000pt;}
.x1a_c00204{left:329.600000pt;}
.x45_c00204{left:337.920000pt;}
.x5_c00204{left:339.840000pt;}
.x11_c00204{left:348.800000pt;}
.x21_c00204{left:358.400000pt;}
.x6_c00204{left:368.000000pt;}
.x46_c00204{left:376.320000pt;}
.x12_c00204{left:378.240000pt;}
.x1b_c00204{left:387.840000pt;}
.x22_c00204{left:396.160000pt;}
.x31_c00204{left:404.480000pt;}
.x51_c00204{left:414.720000pt;}
.x16_c00204{left:416.640000pt;}
.x23_c00204{left:424.960000pt;}
.x35_c00204{left:426.240000pt;}
.x47_c00204{left:433.920000pt;}
.x7_c00204{left:435.840000pt;}
.x17_c00204{left:446.080000pt;}
.x4e_c00204{left:453.760000pt;}
.x29_c00204{left:455.680000pt;}
.x48_c00204{left:462.720000pt;}
.x13_c00204{left:465.280000pt;}
.x1c_c00204{left:482.560000pt;}
.x2a_c00204{left:483.840000pt;}
.x55_c00204{left:490.240000pt;}
.x4f_c00204{left:492.160000pt;}
.x8_c00204{left:493.440000pt;}
.x40_c00204{left:501.120000pt;}
.x52_c00204{left:510.720000pt;}
.x2b_c00204{left:512.000000pt;}
.x24_c00204{left:520.960000pt;}
.x9_c00204{left:522.240000pt;}
.x49_c00204{left:529.280000pt;}
.x39_c00204{left:540.160000pt;}
.x5a_c00204{left:547.840000pt;}
.x53_c00204{left:558.080000pt;}
.x3a_c00204{left:559.360000pt;}
.xa_c00204{left:560.640000pt;}
.x4a_c00204{left:567.040000pt;}
.x1d_c00204{left:568.960000pt;}
.x41_c00204{left:577.280000pt;}
.x4b_c00204{left:578.560000pt;}
.x58_c00204{left:586.880000pt;}
.x2c_c00204{left:597.760000pt;}
.x3b_c00204{left:599.040000pt;}
.x56_c00204{left:605.440000pt;}
.x1e_c00204{left:606.720000pt;}
.x3c_c00204{left:617.600000pt;}
.x1_c00204{left:624.000000pt;}
.x38_c00204{left:625.920000pt;}
.x3d_c00204{left:654.720000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7740ccdcdda564df23f7dac2.woff2')format("woff");}.ff1_c00205{font-family:ff1_c00205;line-height:1.109863;font-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_c00205{transform:matrix(0.210425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210425,0.000000,0.000000,0.250000,0,0);}
.m36_c00205{transform:matrix(0.236675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236675,0.000000,0.000000,0.250000,0,0);}
.m5a_c00205{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m3_c00205{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00205{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00205{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m32_c00205{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00205{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m21_c00205{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m29_c00205{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m44_c00205{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m52_c00205{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m41_c00205{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m58_c00205{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mb_c00205{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1_c00205{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_c00205{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m0_c00205{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);}
.m4e_c00205{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m27_c00205{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00205{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);}
.m1d_c00205{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m43_c00205{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m25_c00205{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m31_c00205{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m50_c00205{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.mc_c00205{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);}
.m40_c00205{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);}
.m18_c00205{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00205{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_c00205{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m53_c00205{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);}
.m1f_c00205{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);}
.m23_c00205{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m9_c00205{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m4_c00205{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00205{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_c00205{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00205{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);}
.ma_c00205{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m6_c00205{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);}
.m3f_c00205{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);}
.m4a_c00205{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00205{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.md_c00205{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m13_c00205{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00205{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);}
.m3c_c00205{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00205{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m11_c00205{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00205{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);}
.m4d_c00205{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00205{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m49_c00205{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m20_c00205{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);}
.m47_c00205{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m19_c00205{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00205{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);}
.m46_c00205{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m38_c00205{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m59_c00205{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m10_c00205{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m28_c00205{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m2_c00205{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);}
.m57_c00205{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m17_c00205{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m55_c00205{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m8_c00205{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m30_c00205{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m56_c00205{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m35_c00205{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);}
.m54_c00205{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m16_c00205{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m24_c00205{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00205{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00205{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m14_c00205{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.m37_c00205{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);}
.m5_c00205{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00205{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m42_c00205{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m26_c00205{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m7_c00205{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m22_c00205{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00205{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m39_c00205{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);}
.mf_c00205{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m51_c00205{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m45_c00205{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m33_c00205{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00205{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m34_c00205{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m48_c00205{transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00205{transform:matrix(4.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.080000,0.000000,0.000000,0.250000,0,0);}
.v0_c00205{vertical-align:0.000000px;}
.v1_c00205{vertical-align:14.400000px;}
.ls0_c00205{letter-spacing:0.000000px;}
.sc__c00205{text-shadow:none;}
.sc0_c00205{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00205{-webkit-text-stroke:0px transparent;}
.sc0_c00205{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00205{word-spacing:-9.780134px;}
.ws3_c00205{word-spacing:0.000000px;}
.ws2_c00205{word-spacing:0.817440px;}
.ws1_c00205{word-spacing:4.816560px;}
.fc0_c00205{color:transparent;}
.fs10_c00205{font-size:17.280000px;}
.fs7_c00205{font-size:34.560000px;}
.fs5_c00205{font-size:37.440000px;}
.fs9_c00205{font-size:40.320000px;}
.fse_c00205{font-size:43.200000px;}
.fs8_c00205{font-size:46.080000px;}
.fs4_c00205{font-size:48.960000px;}
.fs2_c00205{font-size:51.840000px;}
.fsa_c00205{font-size:54.720000px;}
.fs3_c00205{font-size:57.600000px;}
.fs1_c00205{font-size:60.480000px;}
.fs6_c00205{font-size:63.360000px;}
.fsb_c00205{font-size:66.240000px;}
.fsc_c00205{font-size:69.120000px;}
.fsd_c00205{font-size:72.000000px;}
.fsf_c00205{font-size:74.880000px;}
.fs0_c00205{font-size:77.760000px;}
.y0_c00205{bottom:0.000000px;}
.y77_c00205{bottom:83.520000px;}
.y79_c00205{bottom:84.960000px;}
.y7a_c00205{bottom:85.680000px;}
.y76_c00205{bottom:86.400000px;}
.y78_c00205{bottom:87.840000px;}
.y7b_c00205{bottom:89.280000px;}
.y75_c00205{bottom:90.000000px;}
.y6f_c00205{bottom:126.000000px;}
.y70_c00205{bottom:126.720000px;}
.y71_c00205{bottom:127.440000px;}
.y6d_c00205{bottom:128.160000px;}
.y74_c00205{bottom:128.880000px;}
.y6e_c00205{bottom:129.600000px;}
.y72_c00205{bottom:130.320000px;}
.y6c_c00205{bottom:131.040000px;}
.y73_c00205{bottom:131.760000px;}
.y69_c00205{bottom:171.360000px;}
.y6a_c00205{bottom:172.080000px;}
.y68_c00205{bottom:173.520000px;}
.y67_c00205{bottom:174.960000px;}
.y6b_c00205{bottom:175.680000px;}
.y62_c00205{bottom:213.120000px;}
.y63_c00205{bottom:213.840000px;}
.y66_c00205{bottom:216.000000px;}
.y64_c00205{bottom:216.720000px;}
.y65_c00205{bottom:217.440000px;}
.y61_c00205{bottom:218.160000px;}
.y5e_c00205{bottom:255.600000px;}
.y5f_c00205{bottom:256.320000px;}
.y5d_c00205{bottom:259.200000px;}
.y5c_c00205{bottom:259.920000px;}
.y60_c00205{bottom:260.640000px;}
.y5b_c00205{bottom:261.360000px;}
.y54_c00205{bottom:299.520000px;}
.y56_c00205{bottom:300.240000px;}
.y57_c00205{bottom:300.960000px;}
.y5a_c00205{bottom:301.680000px;}
.y53_c00205{bottom:302.400000px;}
.y55_c00205{bottom:303.120000px;}
.y58_c00205{bottom:303.840000px;}
.y59_c00205{bottom:304.560000px;}
.y52_c00205{bottom:343.440000px;}
.y51_c00205{bottom:344.880000px;}
.y50_c00205{bottom:345.600000px;}
.y4f_c00205{bottom:346.320000px;}
.y4c_c00205{bottom:385.200000px;}
.y4d_c00205{bottom:385.920000px;}
.y4e_c00205{bottom:386.640000px;}
.y4b_c00205{bottom:388.800000px;}
.y4a_c00205{bottom:389.520000px;}
.y45_c00205{bottom:428.400000px;}
.y44_c00205{bottom:429.120000px;}
.y46_c00205{bottom:429.840000px;}
.y48_c00205{bottom:431.280000px;}
.y49_c00205{bottom:432.000000px;}
.y47_c00205{bottom:432.720000px;}
.y43_c00205{bottom:433.440000px;}
.y3f_c00205{bottom:471.600000px;}
.y40_c00205{bottom:472.320000px;}
.y42_c00205{bottom:474.480000px;}
.y41_c00205{bottom:475.920000px;}
.y3d_c00205{bottom:515.520000px;}
.y3e_c00205{bottom:518.400000px;}
.y3a_c00205{bottom:558.720000px;}
.y39_c00205{bottom:559.440000px;}
.y3c_c00205{bottom:561.600000px;}
.y3b_c00205{bottom:562.320000px;}
.y37_c00205{bottom:602.640000px;}
.y35_c00205{bottom:604.080000px;}
.y38_c00205{bottom:604.800000px;}
.y36_c00205{bottom:605.520000px;}
.y30_c00205{bottom:645.120000px;}
.y33_c00205{bottom:645.840000px;}
.y34_c00205{bottom:646.560000px;}
.y32_c00205{bottom:648.000000px;}
.y31_c00205{bottom:648.720000px;}
.y2f_c00205{bottom:687.600000px;}
.y2e_c00205{bottom:688.320000px;}
.y2c_c00205{bottom:689.040000px;}
.y2b_c00205{bottom:691.200000px;}
.y2d_c00205{bottom:691.920000px;}
.y28_c00205{bottom:731.520000px;}
.y2a_c00205{bottom:732.240000px;}
.y26_c00205{bottom:733.680000px;}
.y29_c00205{bottom:734.400000px;}
.y27_c00205{bottom:735.120000px;}
.y24_c00205{bottom:774.720000px;}
.y23_c00205{bottom:777.600000px;}
.y25_c00205{bottom:778.320000px;}
.y1f_c00205{bottom:828.000000px;}
.y20_c00205{bottom:828.720000px;}
.y22_c00205{bottom:830.160000px;}
.y1e_c00205{bottom:830.880000px;}
.y21_c00205{bottom:831.600000px;}
.y1c_c00205{bottom:871.920000px;}
.y1d_c00205{bottom:873.360000px;}
.y1b_c00205{bottom:874.080000px;}
.y1a_c00205{bottom:874.800000px;}
.y16_c00205{bottom:925.200000px;}
.y18_c00205{bottom:925.920000px;}
.y15_c00205{bottom:927.360000px;}
.y19_c00205{bottom:928.080000px;}
.y17_c00205{bottom:928.800000px;}
.y14_c00205{bottom:966.960000px;}
.y12_c00205{bottom:969.120000px;}
.y13_c00205{bottom:969.840000px;}
.y10_c00205{bottom:970.560000px;}
.y11_c00205{bottom:971.280000px;}
.y9_c00205{bottom:1010.160000px;}
.yb_c00205{bottom:1011.600000px;}
.yc_c00205{bottom:1012.320000px;}
.yf_c00205{bottom:1013.040000px;}
.ya_c00205{bottom:1013.760000px;}
.ye_c00205{bottom:1014.480000px;}
.yd_c00205{bottom:1015.200000px;}
.y8_c00205{bottom:1054.080000px;}
.y2_c00205{bottom:1054.800000px;}
.y6_c00205{bottom:1055.520000px;}
.y5_c00205{bottom:1056.240000px;}
.y3_c00205{bottom:1056.960000px;}
.y7_c00205{bottom:1057.680000px;}
.y4_c00205{bottom:1058.400000px;}
.y1_c00205{bottom:1104.480000px;}
.h13_c00205{height:15.550313px;}
.h9_c00205{height:31.100625px;}
.h7_c00205{height:33.692344px;}
.hb_c00205{height:36.284062px;}
.h10_c00205{height:38.875781px;}
.ha_c00205{height:41.467500px;}
.h6_c00205{height:44.059219px;}
.h4_c00205{height:46.650937px;}
.hc_c00205{height:49.242656px;}
.h5_c00205{height:51.834375px;}
.h3_c00205{height:54.426094px;}
.h8_c00205{height:57.017812px;}
.h11_c00205{height:58.459219px;}
.hd_c00205{height:59.609531px;}
.he_c00205{height:62.201250px;}
.hf_c00205{height:64.792969px;}
.h12_c00205{height:67.384687px;}
.h2_c00205{height:69.976406px;}
.h1_c00205{height:1162.500000px;}
.h0_c00205{height:1162.800000px;}
.w0_c00205{width:792.720000px;}
.w1_c00205{width:792.750000px;}
.x0_c00205{left:0.000000px;}
.x2_c00205{left:76.319460px;}
.xe_c00205{left:77.760000px;}
.x1e_c00205{left:79.920000px;}
.x19_c00205{left:110.160000px;}
.x50_c00205{left:119.520000px;}
.xf_c00205{left:120.960000px;}
.x38_c00205{left:131.760000px;}
.x36_c00205{left:140.400000px;}
.x3_c00205{left:142.560000px;}
.x3b_c00205{left:151.200000px;}
.x39_c00205{left:152.640000px;}
.x59_c00205{left:162.000000px;}
.x48_c00205{left:163.440000px;}
.x4b_c00205{left:172.800000px;}
.x4_c00205{left:174.240000px;}
.x2b_c00205{left:184.320000px;}
.x22_c00205{left:185.760000px;}
.x28_c00205{left:195.120000px;}
.x31_c00205{left:205.920000px;}
.x1f_c00205{left:207.360000px;}
.x3a_c00205{left:216.720000px;}
.x5_c00205{left:218.160000px;}
.x3c_c00205{left:227.520000px;}
.x10_c00205{left:229.680000px;}
.x44_c00205{left:237.600000px;}
.x1a_c00205{left:239.040000px;}
.x6_c00205{left:249.840000px;}
.x11_c00205{left:260.640000px;}
.x20_c00205{left:271.440000px;}
.x2c_c00205{left:281.520000px;}
.x3f_c00205{left:282.960000px;}
.x29_c00205{left:292.320000px;}
.x7_c00205{left:293.760000px;}
.x54_c00205{left:303.120000px;}
.x12_c00205{left:304.560000px;}
.x2d_c00205{left:314.640000px;}
.x5a_c00205{left:324.000000px;}
.x8_c00205{left:326.160000px;}
.x32_c00205{left:334.800000px;}
.x21_c00205{left:336.960000px;}
.x13_c00205{left:347.760000px;}
.x45_c00205{left:358.560000px;}
.x49_c00205{left:367.920000px;}
.x40_c00205{left:369.360000px;}
.x23_c00205{left:379.440000px;}
.x2e_c00205{left:380.880000px;}
.x51_c00205{left:390.960000px;}
.x33_c00205{left:400.320000px;}
.x1b_c00205{left:401.760000px;}
.x52_c00205{left:412.560000px;}
.x4c_c00205{left:421.920000px;}
.x9_c00205{left:423.360000px;}
.x2a_c00205{left:434.160000px;}
.x14_c00205{left:444.240000px;}
.x24_c00205{left:447.120000px;}
.x4d_c00205{left:454.320000px;}
.xa_c00205{left:455.760000px;}
.x55_c00205{left:464.400000px;}
.x4a_c00205{left:465.840000px;}
.x34_c00205{left:476.640000px;}
.x46_c00205{left:486.720000px;}
.xb_c00205{left:498.240000px;}
.x1c_c00205{left:500.400000px;}
.x3e_c00205{left:509.760000px;}
.x35_c00205{left:519.120000px;}
.x25_c00205{left:530.640000px;}
.x15_c00205{left:532.080000px;}
.x41_c00205{left:541.440000px;}
.x56_c00205{left:551.520000px;}
.x4f_c00205{left:561.600000px;}
.x2f_c00205{left:563.040000px;}
.x42_c00205{left:573.840000px;}
.x47_c00205{left:583.200000px;}
.x16_c00205{left:584.640000px;}
.x53_c00205{left:594.000000px;}
.xc_c00205{left:595.440000px;}
.x30_c00205{left:604.800000px;}
.x43_c00205{left:614.880000px;}
.x26_c00205{left:617.040000px;}
.x57_c00205{left:636.480000px;}
.x17_c00205{left:637.920000px;}
.x1d_c00205{left:639.360000px;}
.x27_c00205{left:648.000000px;}
.x4e_c00205{left:658.080000px;}
.x37_c00205{left:659.520000px;}
.x3d_c00205{left:669.600000px;}
.x18_c00205{left:671.040000px;}
.xd_c00205{left:680.400000px;}
.x58_c00205{left:691.920000px;}
.x1_c00205{left:714.960000px;}
@media print{
.v0_c00205{vertical-align:0.000000pt;}
.v1_c00205{vertical-align:12.800000pt;}
.ls0_c00205{letter-spacing:0.000000pt;}
.ws0_c00205{word-spacing:-8.693453pt;}
.ws3_c00205{word-spacing:0.000000pt;}
.ws2_c00205{word-spacing:0.726613pt;}
.ws1_c00205{word-spacing:4.281387pt;}
.fs10_c00205{font-size:15.360000pt;}
.fs7_c00205{font-size:30.720000pt;}
.fs5_c00205{font-size:33.280000pt;}
.fs9_c00205{font-size:35.840000pt;}
.fse_c00205{font-size:38.400000pt;}
.fs8_c00205{font-size:40.960000pt;}
.fs4_c00205{font-size:43.520000pt;}
.fs2_c00205{font-size:46.080000pt;}
.fsa_c00205{font-size:48.640000pt;}
.fs3_c00205{font-size:51.200000pt;}
.fs1_c00205{font-size:53.760000pt;}
.fs6_c00205{font-size:56.320000pt;}
.fsb_c00205{font-size:58.880000pt;}
.fsc_c00205{font-size:61.440000pt;}
.fsd_c00205{font-size:64.000000pt;}
.fsf_c00205{font-size:66.560000pt;}
.fs0_c00205{font-size:69.120000pt;}
.y0_c00205{bottom:0.000000pt;}
.y77_c00205{bottom:74.240000pt;}
.y79_c00205{bottom:75.520000pt;}
.y7a_c00205{bottom:76.160000pt;}
.y76_c00205{bottom:76.800000pt;}
.y78_c00205{bottom:78.080000pt;}
.y7b_c00205{bottom:79.360000pt;}
.y75_c00205{bottom:80.000000pt;}
.y6f_c00205{bottom:112.000000pt;}
.y70_c00205{bottom:112.640000pt;}
.y71_c00205{bottom:113.280000pt;}
.y6d_c00205{bottom:113.920000pt;}
.y74_c00205{bottom:114.560000pt;}
.y6e_c00205{bottom:115.200000pt;}
.y72_c00205{bottom:115.840000pt;}
.y6c_c00205{bottom:116.480000pt;}
.y73_c00205{bottom:117.120000pt;}
.y69_c00205{bottom:152.320000pt;}
.y6a_c00205{bottom:152.960000pt;}
.y68_c00205{bottom:154.240000pt;}
.y67_c00205{bottom:155.520000pt;}
.y6b_c00205{bottom:156.160000pt;}
.y62_c00205{bottom:189.440000pt;}
.y63_c00205{bottom:190.080000pt;}
.y66_c00205{bottom:192.000000pt;}
.y64_c00205{bottom:192.640000pt;}
.y65_c00205{bottom:193.280000pt;}
.y61_c00205{bottom:193.920000pt;}
.y5e_c00205{bottom:227.200000pt;}
.y5f_c00205{bottom:227.840000pt;}
.y5d_c00205{bottom:230.400000pt;}
.y5c_c00205{bottom:231.040000pt;}
.y60_c00205{bottom:231.680000pt;}
.y5b_c00205{bottom:232.320000pt;}
.y54_c00205{bottom:266.240000pt;}
.y56_c00205{bottom:266.880000pt;}
.y57_c00205{bottom:267.520000pt;}
.y5a_c00205{bottom:268.160000pt;}
.y53_c00205{bottom:268.800000pt;}
.y55_c00205{bottom:269.440000pt;}
.y58_c00205{bottom:270.080000pt;}
.y59_c00205{bottom:270.720000pt;}
.y52_c00205{bottom:305.280000pt;}
.y51_c00205{bottom:306.560000pt;}
.y50_c00205{bottom:307.200000pt;}
.y4f_c00205{bottom:307.840000pt;}
.y4c_c00205{bottom:342.400000pt;}
.y4d_c00205{bottom:343.040000pt;}
.y4e_c00205{bottom:343.680000pt;}
.y4b_c00205{bottom:345.600000pt;}
.y4a_c00205{bottom:346.240000pt;}
.y45_c00205{bottom:380.800000pt;}
.y44_c00205{bottom:381.440000pt;}
.y46_c00205{bottom:382.080000pt;}
.y48_c00205{bottom:383.360000pt;}
.y49_c00205{bottom:384.000000pt;}
.y47_c00205{bottom:384.640000pt;}
.y43_c00205{bottom:385.280000pt;}
.y3f_c00205{bottom:419.200000pt;}
.y40_c00205{bottom:419.840000pt;}
.y42_c00205{bottom:421.760000pt;}
.y41_c00205{bottom:423.040000pt;}
.y3d_c00205{bottom:458.240000pt;}
.y3e_c00205{bottom:460.800000pt;}
.y3a_c00205{bottom:496.640000pt;}
.y39_c00205{bottom:497.280000pt;}
.y3c_c00205{bottom:499.200000pt;}
.y3b_c00205{bottom:499.840000pt;}
.y37_c00205{bottom:535.680000pt;}
.y35_c00205{bottom:536.960000pt;}
.y38_c00205{bottom:537.600000pt;}
.y36_c00205{bottom:538.240000pt;}
.y30_c00205{bottom:573.440000pt;}
.y33_c00205{bottom:574.080000pt;}
.y34_c00205{bottom:574.720000pt;}
.y32_c00205{bottom:576.000000pt;}
.y31_c00205{bottom:576.640000pt;}
.y2f_c00205{bottom:611.200000pt;}
.y2e_c00205{bottom:611.840000pt;}
.y2c_c00205{bottom:612.480000pt;}
.y2b_c00205{bottom:614.400000pt;}
.y2d_c00205{bottom:615.040000pt;}
.y28_c00205{bottom:650.240000pt;}
.y2a_c00205{bottom:650.880000pt;}
.y26_c00205{bottom:652.160000pt;}
.y29_c00205{bottom:652.800000pt;}
.y27_c00205{bottom:653.440000pt;}
.y24_c00205{bottom:688.640000pt;}
.y23_c00205{bottom:691.200000pt;}
.y25_c00205{bottom:691.840000pt;}
.y1f_c00205{bottom:736.000000pt;}
.y20_c00205{bottom:736.640000pt;}
.y22_c00205{bottom:737.920000pt;}
.y1e_c00205{bottom:738.560000pt;}
.y21_c00205{bottom:739.200000pt;}
.y1c_c00205{bottom:775.040000pt;}
.y1d_c00205{bottom:776.320000pt;}
.y1b_c00205{bottom:776.960000pt;}
.y1a_c00205{bottom:777.600000pt;}
.y16_c00205{bottom:822.400000pt;}
.y18_c00205{bottom:823.040000pt;}
.y15_c00205{bottom:824.320000pt;}
.y19_c00205{bottom:824.960000pt;}
.y17_c00205{bottom:825.600000pt;}
.y14_c00205{bottom:859.520000pt;}
.y12_c00205{bottom:861.440000pt;}
.y13_c00205{bottom:862.080000pt;}
.y10_c00205{bottom:862.720000pt;}
.y11_c00205{bottom:863.360000pt;}
.y9_c00205{bottom:897.920000pt;}
.yb_c00205{bottom:899.200000pt;}
.yc_c00205{bottom:899.840000pt;}
.yf_c00205{bottom:900.480000pt;}
.ya_c00205{bottom:901.120000pt;}
.ye_c00205{bottom:901.760000pt;}
.yd_c00205{bottom:902.400000pt;}
.y8_c00205{bottom:936.960000pt;}
.y2_c00205{bottom:937.600000pt;}
.y6_c00205{bottom:938.240000pt;}
.y5_c00205{bottom:938.880000pt;}
.y3_c00205{bottom:939.520000pt;}
.y7_c00205{bottom:940.160000pt;}
.y4_c00205{bottom:940.800000pt;}
.y1_c00205{bottom:981.760000pt;}
.h13_c00205{height:13.822500pt;}
.h9_c00205{height:27.645000pt;}
.h7_c00205{height:29.948750pt;}
.hb_c00205{height:32.252500pt;}
.h10_c00205{height:34.556250pt;}
.ha_c00205{height:36.860000pt;}
.h6_c00205{height:39.163750pt;}
.h4_c00205{height:41.467500pt;}
.hc_c00205{height:43.771250pt;}
.h5_c00205{height:46.075000pt;}
.h3_c00205{height:48.378750pt;}
.h8_c00205{height:50.682500pt;}
.h11_c00205{height:51.963750pt;}
.hd_c00205{height:52.986250pt;}
.he_c00205{height:55.290000pt;}
.hf_c00205{height:57.593750pt;}
.h12_c00205{height:59.897500pt;}
.h2_c00205{height:62.201250pt;}
.h1_c00205{height:1033.333333pt;}
.h0_c00205{height:1033.600000pt;}
.w0_c00205{width:704.640000pt;}
.w1_c00205{width:704.666667pt;}
.x0_c00205{left:0.000000pt;}
.x2_c00205{left:67.839520pt;}
.xe_c00205{left:69.120000pt;}
.x1e_c00205{left:71.040000pt;}
.x19_c00205{left:97.920000pt;}
.x50_c00205{left:106.240000pt;}
.xf_c00205{left:107.520000pt;}
.x38_c00205{left:117.120000pt;}
.x36_c00205{left:124.800000pt;}
.x3_c00205{left:126.720000pt;}
.x3b_c00205{left:134.400000pt;}
.x39_c00205{left:135.680000pt;}
.x59_c00205{left:144.000000pt;}
.x48_c00205{left:145.280000pt;}
.x4b_c00205{left:153.600000pt;}
.x4_c00205{left:154.880000pt;}
.x2b_c00205{left:163.840000pt;}
.x22_c00205{left:165.120000pt;}
.x28_c00205{left:173.440000pt;}
.x31_c00205{left:183.040000pt;}
.x1f_c00205{left:184.320000pt;}
.x3a_c00205{left:192.640000pt;}
.x5_c00205{left:193.920000pt;}
.x3c_c00205{left:202.240000pt;}
.x10_c00205{left:204.160000pt;}
.x44_c00205{left:211.200000pt;}
.x1a_c00205{left:212.480000pt;}
.x6_c00205{left:222.080000pt;}
.x11_c00205{left:231.680000pt;}
.x20_c00205{left:241.280000pt;}
.x2c_c00205{left:250.240000pt;}
.x3f_c00205{left:251.520000pt;}
.x29_c00205{left:259.840000pt;}
.x7_c00205{left:261.120000pt;}
.x54_c00205{left:269.440000pt;}
.x12_c00205{left:270.720000pt;}
.x2d_c00205{left:279.680000pt;}
.x5a_c00205{left:288.000000pt;}
.x8_c00205{left:289.920000pt;}
.x32_c00205{left:297.600000pt;}
.x21_c00205{left:299.520000pt;}
.x13_c00205{left:309.120000pt;}
.x45_c00205{left:318.720000pt;}
.x49_c00205{left:327.040000pt;}
.x40_c00205{left:328.320000pt;}
.x23_c00205{left:337.280000pt;}
.x2e_c00205{left:338.560000pt;}
.x51_c00205{left:347.520000pt;}
.x33_c00205{left:355.840000pt;}
.x1b_c00205{left:357.120000pt;}
.x52_c00205{left:366.720000pt;}
.x4c_c00205{left:375.040000pt;}
.x9_c00205{left:376.320000pt;}
.x2a_c00205{left:385.920000pt;}
.x14_c00205{left:394.880000pt;}
.x24_c00205{left:397.440000pt;}
.x4d_c00205{left:403.840000pt;}
.xa_c00205{left:405.120000pt;}
.x55_c00205{left:412.800000pt;}
.x4a_c00205{left:414.080000pt;}
.x34_c00205{left:423.680000pt;}
.x46_c00205{left:432.640000pt;}
.xb_c00205{left:442.880000pt;}
.x1c_c00205{left:444.800000pt;}
.x3e_c00205{left:453.120000pt;}
.x35_c00205{left:461.440000pt;}
.x25_c00205{left:471.680000pt;}
.x15_c00205{left:472.960000pt;}
.x41_c00205{left:481.280000pt;}
.x56_c00205{left:490.240000pt;}
.x4f_c00205{left:499.200000pt;}
.x2f_c00205{left:500.480000pt;}
.x42_c00205{left:510.080000pt;}
.x47_c00205{left:518.400000pt;}
.x16_c00205{left:519.680000pt;}
.x53_c00205{left:528.000000pt;}
.xc_c00205{left:529.280000pt;}
.x30_c00205{left:537.600000pt;}
.x43_c00205{left:546.560000pt;}
.x26_c00205{left:548.480000pt;}
.x57_c00205{left:565.760000pt;}
.x17_c00205{left:567.040000pt;}
.x1d_c00205{left:568.320000pt;}
.x27_c00205{left:576.000000pt;}
.x4e_c00205{left:584.960000pt;}
.x37_c00205{left:586.240000pt;}
.x3d_c00205{left:595.200000pt;}
.x18_c00205{left:596.480000pt;}
.xd_c00205{left:604.800000pt;}
.x58_c00205{left:615.040000pt;}
.x1_c00205{left:635.520000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_51665caaa9efaed9cf0e6d5a.woff2')format("woff");}.ff1_c00206{font-family:ff1_c00206;line-height:1.109863;font-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_c00206{transform:matrix(0.227075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227075,0.000000,0.000000,0.250000,0,0);}
.m3f_c00206{transform:matrix(0.230925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230925,0.000000,0.000000,0.250000,0,0);}
.m51_c00206{transform:matrix(0.238525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238525,0.000000,0.000000,0.250000,0,0);}
.m13_c00206{transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);}
.m52_c00206{transform:matrix(0.246050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246050,0.000000,0.000000,0.250000,0,0);}
.m59_c00206{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00206{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m57_c00206{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);}
.m20_c00206{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);}
.m4e_c00206{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00206{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);}
.m61_c00206{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00206{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00206{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m26_c00206{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m64_c00206{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m34_c00206{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00206{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m14_c00206{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m46_c00206{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);}
.m35_c00206{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m60_c00206{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);}
.m4a_c00206{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m0_c00206{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);}
.m47_c00206{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m21_c00206{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00206{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m18_c00206{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_c00206{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00206{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);}
.m40_c00206{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m42_c00206{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);}
.m16_c00206{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);}
.m3c_c00206{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m3_c00206{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m6_c00206{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);}
.m3d_c00206{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m8_c00206{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);}
.m4d_c00206{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m65_c00206{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);}
.mf_c00206{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m22_c00206{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);}
.m5c_c00206{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);}
.me_c00206{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m63_c00206{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00206{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m48_c00206{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);}
.m28_c00206{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m36_c00206{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);}
.m45_c00206{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m54_c00206{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);}
.m3e_c00206{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);}
.m3b_c00206{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m27_c00206{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m23_c00206{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m12_c00206{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.md_c00206{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);}
.m7_c00206{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m39_c00206{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00206{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m9_c00206{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m11_c00206{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);}
.m50_c00206{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m4_c00206{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00206{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m55_c00206{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);}
.m17_c00206{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m62_c00206{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m29_c00206{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);}
.m37_c00206{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m41_c00206{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m5_c00206{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m49_c00206{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.ma_c00206{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);}
.m56_c00206{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);}
.mc_c00206{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m53_c00206{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00206{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);}
.m38_c00206{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00206{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00206{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m25_c00206{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);}
.m2c_c00206{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m58_c00206{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m32_c00206{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m19_c00206{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);}
.m43_c00206{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m44_c00206{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);}
.m2e_c00206{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);}
.m5f_c00206{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m31_c00206{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m15_c00206{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00206{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m24_c00206{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m1_c00206{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m2_c00206{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);}
.m5d_c00206{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00206{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.mb_c00206{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00206{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m33_c00206{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00206{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.v1_c00206{vertical-align:-25.920000px;}
.v0_c00206{vertical-align:0.000000px;}
.ls0_c00206{letter-spacing:0.000000px;}
.sc__c00206{text-shadow:none;}
.sc0_c00206{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00206{-webkit-text-stroke:0px transparent;}
.sc0_c00206{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00206{word-spacing:-3.388936px;}
.ws2_c00206{word-spacing:0.000000px;}
.ws1_c00206{word-spacing:7.988400px;}
.fc0_c00206{color:transparent;}
.fs2_c00206{font-size:34.560000px;}
.fs8_c00206{font-size:37.440000px;}
.fsc_c00206{font-size:40.320000px;}
.fsd_c00206{font-size:43.200000px;}
.fs7_c00206{font-size:46.080000px;}
.fs4_c00206{font-size:48.960000px;}
.fs1_c00206{font-size:51.840000px;}
.fsa_c00206{font-size:54.720000px;}
.fsb_c00206{font-size:57.600000px;}
.fs5_c00206{font-size:60.480000px;}
.fs3_c00206{font-size:63.360000px;}
.fs9_c00206{font-size:66.240000px;}
.fs6_c00206{font-size:69.120000px;}
.fse_c00206{font-size:72.000000px;}
.fs0_c00206{font-size:77.760000px;}
.y0_c00206{bottom:0.000000px;}
.y7c_c00206{bottom:12.960000px;}
.y7a_c00206{bottom:13.680000px;}
.y7b_c00206{bottom:15.120000px;}
.y79_c00206{bottom:16.560000px;}
.y7d_c00206{bottom:17.280000px;}
.y7e_c00206{bottom:18.000000px;}
.y78_c00206{bottom:19.440000px;}
.y75_c00206{bottom:52.560000px;}
.y76_c00206{bottom:54.000000px;}
.y74_c00206{bottom:54.720000px;}
.y77_c00206{bottom:56.160000px;}
.y73_c00206{bottom:59.760000px;}
.y70_c00206{bottom:95.040000px;}
.y71_c00206{bottom:96.480000px;}
.y6f_c00206{bottom:97.200000px;}
.y6d_c00206{bottom:97.920000px;}
.y6e_c00206{bottom:98.640000px;}
.y72_c00206{bottom:99.360000px;}
.y68_c00206{bottom:138.960000px;}
.y6a_c00206{bottom:139.680000px;}
.y69_c00206{bottom:141.120000px;}
.y6b_c00206{bottom:141.840000px;}
.y67_c00206{bottom:142.560000px;}
.y6c_c00206{bottom:143.280000px;}
.y64_c00206{bottom:181.440000px;}
.y63_c00206{bottom:183.600000px;}
.y62_c00206{bottom:184.320000px;}
.y65_c00206{bottom:185.040000px;}
.y66_c00206{bottom:185.760000px;}
.y61_c00206{bottom:187.920000px;}
.y5f_c00206{bottom:226.080000px;}
.y5d_c00206{bottom:226.800000px;}
.y5c_c00206{bottom:227.520000px;}
.y5e_c00206{bottom:228.240000px;}
.y60_c00206{bottom:229.680000px;}
.y5b_c00206{bottom:280.800000px;}
.y5a_c00206{bottom:281.520000px;}
.y59_c00206{bottom:282.240000px;}
.y55_c00206{bottom:321.840000px;}
.y56_c00206{bottom:322.560000px;}
.y54_c00206{bottom:323.280000px;}
.y57_c00206{bottom:324.720000px;}
.y58_c00206{bottom:325.440000px;}
.y53_c00206{bottom:326.160000px;}
.y52_c00206{bottom:327.600000px;}
.y50_c00206{bottom:365.760000px;}
.y51_c00206{bottom:367.200000px;}
.y4f_c00206{bottom:367.920000px;}
.y4d_c00206{bottom:368.640000px;}
.y4e_c00206{bottom:369.360000px;}
.y4a_c00206{bottom:408.240000px;}
.y48_c00206{bottom:408.960000px;}
.y4b_c00206{bottom:409.680000px;}
.y4c_c00206{bottom:410.400000px;}
.y46_c00206{bottom:411.120000px;}
.y49_c00206{bottom:411.840000px;}
.y47_c00206{bottom:412.560000px;}
.y43_c00206{bottom:452.160000px;}
.y42_c00206{bottom:452.880000px;}
.y44_c00206{bottom:454.320000px;}
.y41_c00206{bottom:455.040000px;}
.y45_c00206{bottom:455.760000px;}
.y3f_c00206{bottom:495.360000px;}
.y40_c00206{bottom:497.520000px;}
.y3e_c00206{bottom:498.240000px;}
.y3b_c00206{bottom:537.840000px;}
.y3c_c00206{bottom:538.560000px;}
.y3a_c00206{bottom:540.720000px;}
.y3d_c00206{bottom:541.440000px;}
.y38_c00206{bottom:581.040000px;}
.y39_c00206{bottom:581.760000px;}
.y36_c00206{bottom:583.200000px;}
.y37_c00206{bottom:583.920000px;}
.y32_c00206{bottom:624.240000px;}
.y34_c00206{bottom:624.960000px;}
.y35_c00206{bottom:626.400000px;}
.y31_c00206{bottom:627.120000px;}
.y33_c00206{bottom:627.840000px;}
.y2e_c00206{bottom:667.440000px;}
.y30_c00206{bottom:669.600000px;}
.y2f_c00206{bottom:670.320000px;}
.y29_c00206{bottom:709.920000px;}
.y2c_c00206{bottom:710.640000px;}
.y2d_c00206{bottom:712.080000px;}
.y2a_c00206{bottom:712.800000px;}
.y2b_c00206{bottom:713.520000px;}
.y26_c00206{bottom:753.840000px;}
.y27_c00206{bottom:754.560000px;}
.y28_c00206{bottom:755.280000px;}
.y24_c00206{bottom:756.000000px;}
.y25_c00206{bottom:756.720000px;}
.y21_c00206{bottom:796.320000px;}
.y23_c00206{bottom:798.480000px;}
.y20_c00206{bottom:799.200000px;}
.y22_c00206{bottom:799.920000px;}
.y1f_c00206{bottom:838.080000px;}
.y1b_c00206{bottom:840.240000px;}
.y1e_c00206{bottom:842.400000px;}
.y1c_c00206{bottom:843.120000px;}
.y1d_c00206{bottom:843.840000px;}
.y17_c00206{bottom:882.720000px;}
.y19_c00206{bottom:883.440000px;}
.y1a_c00206{bottom:884.880000px;}
.y18_c00206{bottom:886.320000px;}
.y16_c00206{bottom:925.920000px;}
.y14_c00206{bottom:927.360000px;}
.y11_c00206{bottom:928.080000px;}
.y12_c00206{bottom:928.800000px;}
.y13_c00206{bottom:929.520000px;}
.y15_c00206{bottom:930.240000px;}
.y10_c00206{bottom:968.400000px;}
.yf_c00206{bottom:969.120000px;}
.yc_c00206{bottom:969.840000px;}
.yb_c00206{bottom:971.280000px;}
.ye_c00206{bottom:972.000000px;}
.yd_c00206{bottom:972.720000px;}
.y9_c00206{bottom:1012.320000px;}
.y8_c00206{bottom:1013.040000px;}
.y6_c00206{bottom:1014.480000px;}
.ya_c00206{bottom:1015.200000px;}
.y7_c00206{bottom:1015.920000px;}
.y4_c00206{bottom:1056.240000px;}
.y2_c00206{bottom:1057.680000px;}
.y3_c00206{bottom:1058.400000px;}
.y5_c00206{bottom:1059.120000px;}
.y1_c00206{bottom:1113.840000px;}
.h4_c00206{height:31.100625px;}
.ha_c00206{height:33.692344px;}
.he_c00206{height:36.284062px;}
.hf_c00206{height:38.875781px;}
.h9_c00206{height:41.467500px;}
.h6_c00206{height:44.059219px;}
.h3_c00206{height:46.650937px;}
.hc_c00206{height:49.242656px;}
.hd_c00206{height:51.834375px;}
.h7_c00206{height:54.426094px;}
.h5_c00206{height:57.017812px;}
.hb_c00206{height:59.609531px;}
.h8_c00206{height:62.201250px;}
.h10_c00206{height:64.792969px;}
.h2_c00206{height:69.976406px;}
.h1_c00206{height:1161.750000px;}
.h0_c00206{height:1162.080000px;}
.w1_c00206{width:791.250000px;}
.w0_c00206{width:791.280000px;}
.x0_c00206{left:0.000000px;}
.x2_c00206{left:76.320000px;}
.x22_c00206{left:77.760000px;}
.x54_c00206{left:79.200000px;}
.x14_c00206{left:108.000000px;}
.x4b_c00206{left:109.440000px;}
.x1a_c00206{left:118.800000px;}
.x3_c00206{left:129.600000px;}
.xb_c00206{left:140.400000px;}
.x2c_c00206{left:150.480000px;}
.x47_c00206{left:152.640000px;}
.x4_c00206{left:162.000000px;}
.x41_c00206{left:172.800000px;}
.xc_c00206{left:183.600000px;}
.x15_c00206{left:194.400000px;}
.x34_c00206{left:203.760000px;}
.x1b_c00206{left:205.200000px;}
.x3e_c00206{left:215.280000px;}
.xd_c00206{left:216.720000px;}
.x31_c00206{left:226.080000px;}
.x2d_c00206{left:236.880000px;}
.x26_c00206{left:238.320000px;}
.x16_c00206{left:248.400000px;}
.x3c_c00206{left:259.200000px;}
.x56_c00206{left:269.280000px;}
.x1c_c00206{left:270.720000px;}
.x2e_c00206{left:281.520000px;}
.x42_c00206{left:282.960000px;}
.x3f_c00206{left:291.600000px;}
.x5_c00206{left:293.040000px;}
.x4f_c00206{left:302.400000px;}
.x46_c00206{left:303.840000px;}
.x1d_c00206{left:314.640000px;}
.x43_c00206{left:324.720000px;}
.x35_c00206{left:334.800000px;}
.x23_c00206{left:346.320000px;}
.x44_c00206{left:355.680000px;}
.x6_c00206{left:357.120000px;}
.x32_c00206{left:367.920000px;}
.x24_c00206{left:378.000000px;}
.x17_c00206{left:388.800000px;}
.x3d_c00206{left:399.600000px;}
.x4e_c00206{left:401.760000px;}
.x3a_c00206{left:409.680000px;}
.x1e_c00206{left:411.120000px;}
.x7_c00206{left:412.560000px;}
.x38_c00206{left:420.480000px;}
.x57_c00206{left:421.920000px;}
.x33_c00206{left:431.280000px;}
.xe_c00206{left:432.720000px;}
.x18_c00206{left:443.520000px;}
.x58_c00206{left:452.880000px;}
.x27_c00206{left:454.320000px;}
.xf_c00206{left:465.120000px;}
.x48_c00206{left:475.200000px;}
.x19_c00206{left:476.640000px;}
.x28_c00206{left:486.000000px;}
.x49_c00206{left:494.640000px;}
.x25_c00206{left:496.800000px;}
.x1f_c00206{left:498.240000px;}
.x2f_c00206{left:507.600000px;}
.x4a_c00206{left:516.960000px;}
.x20_c00206{left:520.560000px;}
.x40_c00206{left:528.480000px;}
.x10_c00206{left:529.920000px;}
.x5b_c00206{left:539.280000px;}
.x30_c00206{left:540.720000px;}
.x52_c00206{left:550.080000px;}
.x11_c00206{left:551.520000px;}
.x59_c00206{left:560.160000px;}
.x4c_c00206{left:561.600000px;}
.x8_c00206{left:563.760000px;}
.x21_c00206{left:572.400000px;}
.x53_c00206{left:581.760000px;}
.x29_c00206{left:583.200000px;}
.x9_c00206{left:594.720000px;}
.x39_c00206{left:604.080000px;}
.x4d_c00206{left:613.440000px;}
.x2a_c00206{left:616.320000px;}
.x36_c00206{left:624.960000px;}
.x12_c00206{left:627.120000px;}
.x50_c00206{left:635.040000px;}
.x3b_c00206{left:637.200000px;}
.x55_c00206{left:649.440000px;}
.x5a_c00206{left:657.360000px;}
.xa_c00206{left:658.800000px;}
.x51_c00206{left:667.440000px;}
.x13_c00206{left:669.600000px;}
.x37_c00206{left:680.400000px;}
.x45_c00206{left:689.040000px;}
.x2b_c00206{left:691.200000px;}
.x1_c00206{left:699.840000px;}
@media print{
.v1_c00206{vertical-align:-23.040000pt;}
.v0_c00206{vertical-align:0.000000pt;}
.ls0_c00206{letter-spacing:0.000000pt;}
.ws0_c00206{word-spacing:-3.012388pt;}
.ws2_c00206{word-spacing:0.000000pt;}
.ws1_c00206{word-spacing:7.100800pt;}
.fs2_c00206{font-size:30.720000pt;}
.fs8_c00206{font-size:33.280000pt;}
.fsc_c00206{font-size:35.840000pt;}
.fsd_c00206{font-size:38.400000pt;}
.fs7_c00206{font-size:40.960000pt;}
.fs4_c00206{font-size:43.520000pt;}
.fs1_c00206{font-size:46.080000pt;}
.fsa_c00206{font-size:48.640000pt;}
.fsb_c00206{font-size:51.200000pt;}
.fs5_c00206{font-size:53.760000pt;}
.fs3_c00206{font-size:56.320000pt;}
.fs9_c00206{font-size:58.880000pt;}
.fs6_c00206{font-size:61.440000pt;}
.fse_c00206{font-size:64.000000pt;}
.fs0_c00206{font-size:69.120000pt;}
.y0_c00206{bottom:0.000000pt;}
.y7c_c00206{bottom:11.520000pt;}
.y7a_c00206{bottom:12.160000pt;}
.y7b_c00206{bottom:13.440000pt;}
.y79_c00206{bottom:14.720000pt;}
.y7d_c00206{bottom:15.360000pt;}
.y7e_c00206{bottom:16.000000pt;}
.y78_c00206{bottom:17.280000pt;}
.y75_c00206{bottom:46.720000pt;}
.y76_c00206{bottom:48.000000pt;}
.y74_c00206{bottom:48.640000pt;}
.y77_c00206{bottom:49.920000pt;}
.y73_c00206{bottom:53.120000pt;}
.y70_c00206{bottom:84.480000pt;}
.y71_c00206{bottom:85.760000pt;}
.y6f_c00206{bottom:86.400000pt;}
.y6d_c00206{bottom:87.040000pt;}
.y6e_c00206{bottom:87.680000pt;}
.y72_c00206{bottom:88.320000pt;}
.y68_c00206{bottom:123.520000pt;}
.y6a_c00206{bottom:124.160000pt;}
.y69_c00206{bottom:125.440000pt;}
.y6b_c00206{bottom:126.080000pt;}
.y67_c00206{bottom:126.720000pt;}
.y6c_c00206{bottom:127.360000pt;}
.y64_c00206{bottom:161.280000pt;}
.y63_c00206{bottom:163.200000pt;}
.y62_c00206{bottom:163.840000pt;}
.y65_c00206{bottom:164.480000pt;}
.y66_c00206{bottom:165.120000pt;}
.y61_c00206{bottom:167.040000pt;}
.y5f_c00206{bottom:200.960000pt;}
.y5d_c00206{bottom:201.600000pt;}
.y5c_c00206{bottom:202.240000pt;}
.y5e_c00206{bottom:202.880000pt;}
.y60_c00206{bottom:204.160000pt;}
.y5b_c00206{bottom:249.600000pt;}
.y5a_c00206{bottom:250.240000pt;}
.y59_c00206{bottom:250.880000pt;}
.y55_c00206{bottom:286.080000pt;}
.y56_c00206{bottom:286.720000pt;}
.y54_c00206{bottom:287.360000pt;}
.y57_c00206{bottom:288.640000pt;}
.y58_c00206{bottom:289.280000pt;}
.y53_c00206{bottom:289.920000pt;}
.y52_c00206{bottom:291.200000pt;}
.y50_c00206{bottom:325.120000pt;}
.y51_c00206{bottom:326.400000pt;}
.y4f_c00206{bottom:327.040000pt;}
.y4d_c00206{bottom:327.680000pt;}
.y4e_c00206{bottom:328.320000pt;}
.y4a_c00206{bottom:362.880000pt;}
.y48_c00206{bottom:363.520000pt;}
.y4b_c00206{bottom:364.160000pt;}
.y4c_c00206{bottom:364.800000pt;}
.y46_c00206{bottom:365.440000pt;}
.y49_c00206{bottom:366.080000pt;}
.y47_c00206{bottom:366.720000pt;}
.y43_c00206{bottom:401.920000pt;}
.y42_c00206{bottom:402.560000pt;}
.y44_c00206{bottom:403.840000pt;}
.y41_c00206{bottom:404.480000pt;}
.y45_c00206{bottom:405.120000pt;}
.y3f_c00206{bottom:440.320000pt;}
.y40_c00206{bottom:442.240000pt;}
.y3e_c00206{bottom:442.880000pt;}
.y3b_c00206{bottom:478.080000pt;}
.y3c_c00206{bottom:478.720000pt;}
.y3a_c00206{bottom:480.640000pt;}
.y3d_c00206{bottom:481.280000pt;}
.y38_c00206{bottom:516.480000pt;}
.y39_c00206{bottom:517.120000pt;}
.y36_c00206{bottom:518.400000pt;}
.y37_c00206{bottom:519.040000pt;}
.y32_c00206{bottom:554.880000pt;}
.y34_c00206{bottom:555.520000pt;}
.y35_c00206{bottom:556.800000pt;}
.y31_c00206{bottom:557.440000pt;}
.y33_c00206{bottom:558.080000pt;}
.y2e_c00206{bottom:593.280000pt;}
.y30_c00206{bottom:595.200000pt;}
.y2f_c00206{bottom:595.840000pt;}
.y29_c00206{bottom:631.040000pt;}
.y2c_c00206{bottom:631.680000pt;}
.y2d_c00206{bottom:632.960000pt;}
.y2a_c00206{bottom:633.600000pt;}
.y2b_c00206{bottom:634.240000pt;}
.y26_c00206{bottom:670.080000pt;}
.y27_c00206{bottom:670.720000pt;}
.y28_c00206{bottom:671.360000pt;}
.y24_c00206{bottom:672.000000pt;}
.y25_c00206{bottom:672.640000pt;}
.y21_c00206{bottom:707.840000pt;}
.y23_c00206{bottom:709.760000pt;}
.y20_c00206{bottom:710.400000pt;}
.y22_c00206{bottom:711.040000pt;}
.y1f_c00206{bottom:744.960000pt;}
.y1b_c00206{bottom:746.880000pt;}
.y1e_c00206{bottom:748.800000pt;}
.y1c_c00206{bottom:749.440000pt;}
.y1d_c00206{bottom:750.080000pt;}
.y17_c00206{bottom:784.640000pt;}
.y19_c00206{bottom:785.280000pt;}
.y1a_c00206{bottom:786.560000pt;}
.y18_c00206{bottom:787.840000pt;}
.y16_c00206{bottom:823.040000pt;}
.y14_c00206{bottom:824.320000pt;}
.y11_c00206{bottom:824.960000pt;}
.y12_c00206{bottom:825.600000pt;}
.y13_c00206{bottom:826.240000pt;}
.y15_c00206{bottom:826.880000pt;}
.y10_c00206{bottom:860.800000pt;}
.yf_c00206{bottom:861.440000pt;}
.yc_c00206{bottom:862.080000pt;}
.yb_c00206{bottom:863.360000pt;}
.ye_c00206{bottom:864.000000pt;}
.yd_c00206{bottom:864.640000pt;}
.y9_c00206{bottom:899.840000pt;}
.y8_c00206{bottom:900.480000pt;}
.y6_c00206{bottom:901.760000pt;}
.ya_c00206{bottom:902.400000pt;}
.y7_c00206{bottom:903.040000pt;}
.y4_c00206{bottom:938.880000pt;}
.y2_c00206{bottom:940.160000pt;}
.y3_c00206{bottom:940.800000pt;}
.y5_c00206{bottom:941.440000pt;}
.y1_c00206{bottom:990.080000pt;}
.h4_c00206{height:27.645000pt;}
.ha_c00206{height:29.948750pt;}
.he_c00206{height:32.252500pt;}
.hf_c00206{height:34.556250pt;}
.h9_c00206{height:36.860000pt;}
.h6_c00206{height:39.163750pt;}
.h3_c00206{height:41.467500pt;}
.hc_c00206{height:43.771250pt;}
.hd_c00206{height:46.075000pt;}
.h7_c00206{height:48.378750pt;}
.h5_c00206{height:50.682500pt;}
.hb_c00206{height:52.986250pt;}
.h8_c00206{height:55.290000pt;}
.h10_c00206{height:57.593750pt;}
.h2_c00206{height:62.201250pt;}
.h1_c00206{height:1032.666667pt;}
.h0_c00206{height:1032.960000pt;}
.w1_c00206{width:703.333333pt;}
.w0_c00206{width:703.360000pt;}
.x0_c00206{left:0.000000pt;}
.x2_c00206{left:67.840000pt;}
.x22_c00206{left:69.120000pt;}
.x54_c00206{left:70.400000pt;}
.x14_c00206{left:96.000000pt;}
.x4b_c00206{left:97.280000pt;}
.x1a_c00206{left:105.600000pt;}
.x3_c00206{left:115.200000pt;}
.xb_c00206{left:124.800000pt;}
.x2c_c00206{left:133.760000pt;}
.x47_c00206{left:135.680000pt;}
.x4_c00206{left:144.000000pt;}
.x41_c00206{left:153.600000pt;}
.xc_c00206{left:163.200000pt;}
.x15_c00206{left:172.800000pt;}
.x34_c00206{left:181.120000pt;}
.x1b_c00206{left:182.400000pt;}
.x3e_c00206{left:191.360000pt;}
.xd_c00206{left:192.640000pt;}
.x31_c00206{left:200.960000pt;}
.x2d_c00206{left:210.560000pt;}
.x26_c00206{left:211.840000pt;}
.x16_c00206{left:220.800000pt;}
.x3c_c00206{left:230.400000pt;}
.x56_c00206{left:239.360000pt;}
.x1c_c00206{left:240.640000pt;}
.x2e_c00206{left:250.240000pt;}
.x42_c00206{left:251.520000pt;}
.x3f_c00206{left:259.200000pt;}
.x5_c00206{left:260.480000pt;}
.x4f_c00206{left:268.800000pt;}
.x46_c00206{left:270.080000pt;}
.x1d_c00206{left:279.680000pt;}
.x43_c00206{left:288.640000pt;}
.x35_c00206{left:297.600000pt;}
.x23_c00206{left:307.840000pt;}
.x44_c00206{left:316.160000pt;}
.x6_c00206{left:317.440000pt;}
.x32_c00206{left:327.040000pt;}
.x24_c00206{left:336.000000pt;}
.x17_c00206{left:345.600000pt;}
.x3d_c00206{left:355.200000pt;}
.x4e_c00206{left:357.120000pt;}
.x3a_c00206{left:364.160000pt;}
.x1e_c00206{left:365.440000pt;}
.x7_c00206{left:366.720000pt;}
.x38_c00206{left:373.760000pt;}
.x57_c00206{left:375.040000pt;}
.x33_c00206{left:383.360000pt;}
.xe_c00206{left:384.640000pt;}
.x18_c00206{left:394.240000pt;}
.x58_c00206{left:402.560000pt;}
.x27_c00206{left:403.840000pt;}
.xf_c00206{left:413.440000pt;}
.x48_c00206{left:422.400000pt;}
.x19_c00206{left:423.680000pt;}
.x28_c00206{left:432.000000pt;}
.x49_c00206{left:439.680000pt;}
.x25_c00206{left:441.600000pt;}
.x1f_c00206{left:442.880000pt;}
.x2f_c00206{left:451.200000pt;}
.x4a_c00206{left:459.520000pt;}
.x20_c00206{left:462.720000pt;}
.x40_c00206{left:469.760000pt;}
.x10_c00206{left:471.040000pt;}
.x5b_c00206{left:479.360000pt;}
.x30_c00206{left:480.640000pt;}
.x52_c00206{left:488.960000pt;}
.x11_c00206{left:490.240000pt;}
.x59_c00206{left:497.920000pt;}
.x4c_c00206{left:499.200000pt;}
.x8_c00206{left:501.120000pt;}
.x21_c00206{left:508.800000pt;}
.x53_c00206{left:517.120000pt;}
.x29_c00206{left:518.400000pt;}
.x9_c00206{left:528.640000pt;}
.x39_c00206{left:536.960000pt;}
.x4d_c00206{left:545.280000pt;}
.x2a_c00206{left:547.840000pt;}
.x36_c00206{left:555.520000pt;}
.x12_c00206{left:557.440000pt;}
.x50_c00206{left:564.480000pt;}
.x3b_c00206{left:566.400000pt;}
.x55_c00206{left:577.280000pt;}
.x5a_c00206{left:584.320000pt;}
.xa_c00206{left:585.600000pt;}
.x51_c00206{left:593.280000pt;}
.x13_c00206{left:595.200000pt;}
.x37_c00206{left:604.800000pt;}
.x45_c00206{left:612.480000pt;}
.x2b_c00206{left:614.400000pt;}
.x1_c00206{left:622.080000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_43df39f6c1e9d270c7f7ec5b.woff2')format("woff");}.ff1_c00207{font-family:ff1_c00207;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m43_c00207{transform:matrix(0.233725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233725,0.000000,0.000000,0.250000,0,0);}
.m50_c00207{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m60_c00207{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);}
.m52_c00207{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m56_c00207{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);}
.m54_c00207{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);}
.m31_c00207{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m13_c00207{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m44_c00207{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m22_c00207{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m63_c00207{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m7_c00207{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m57_c00207{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00207{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m27_c00207{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m10_c00207{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m28_c00207{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00207{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m29_c00207{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m35_c00207{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m0_c00207{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00207{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m20_c00207{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m38_c00207{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00207{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00207{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.mb_c00207{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00207{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);}
.m3c_c00207{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m15_c00207{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m51_c00207{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);}
.m8_c00207{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);}
.m48_c00207{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.me_c00207{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.mc_c00207{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);}
.m32_c00207{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);}
.m41_c00207{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);}
.m34_c00207{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m53_c00207{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);}
.m45_c00207{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m16_c00207{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);}
.m30_c00207{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);}
.m40_c00207{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00207{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m39_c00207{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m11_c00207{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);}
.m5f_c00207{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m23_c00207{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);}
.ma_c00207{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m18_c00207{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);}
.m5e_c00207{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);}
.m49_c00207{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00207{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m19_c00207{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00207{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m14_c00207{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00207{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00207{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);}
.m2b_c00207{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00207{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);}
.m1b_c00207{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m4_c00207{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.md_c00207{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00207{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);}
.m24_c00207{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00207{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00207{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m47_c00207{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);}
.m2_c00207{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m42_c00207{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m3_c00207{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00207{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);}
.m2f_c00207{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m21_c00207{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m12_c00207{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);}
.m33_c00207{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m61_c00207{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m17_c00207{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m1_c00207{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);}
.m46_c00207{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00207{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00207{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00207{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m62_c00207{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);}
.m9_c00207{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m5_c00207{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);}
.m5c_c00207{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00207{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m25_c00207{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m37_c00207{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m58_c00207{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m26_c00207{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m64_c00207{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);}
.m6_c00207{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);}
.m2a_c00207{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00207{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m55_c00207{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00207{transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);}
.m36_c00207{transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);}
.m59_c00207{transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);}
.mf_c00207{transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);}
.v1_c00207{vertical-align:-2.880000px;}
.v0_c00207{vertical-align:0.000000px;}
.ls1_c00207{letter-spacing:0.000000px;}
.ls0_c00207{letter-spacing:353.234400px;}
.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:-4.422842px;}
.ws1_c00207{word-spacing:0.000000px;}
.fc0_c00207{color:transparent;}
.fs5_c00207{font-size:34.560000px;}
.fs4_c00207{font-size:37.440000px;}
.fsc_c00207{font-size:40.320000px;}
.fs6_c00207{font-size:43.200000px;}
.fse_c00207{font-size:46.080000px;}
.fs8_c00207{font-size:48.960000px;}
.fs1_c00207{font-size:51.840000px;}
.fs3_c00207{font-size:54.720000px;}
.fs2_c00207{font-size:57.600000px;}
.fsa_c00207{font-size:60.480000px;}
.fs7_c00207{font-size:63.360000px;}
.fsb_c00207{font-size:66.240000px;}
.fs9_c00207{font-size:69.120000px;}
.fsf_c00207{font-size:72.000000px;}
.fs0_c00207{font-size:77.760000px;}
.fsd_c00207{font-size:95.040000px;}
.y0_c00207{bottom:0.000000px;}
.y73_c00207{bottom:14.400000px;}
.y75_c00207{bottom:15.120000px;}
.y74_c00207{bottom:15.840000px;}
.y72_c00207{bottom:19.440000px;}
.y6f_c00207{bottom:51.840000px;}
.y71_c00207{bottom:52.560000px;}
.y6d_c00207{bottom:53.280000px;}
.y6c_c00207{bottom:54.000000px;}
.y70_c00207{bottom:54.720000px;}
.y6b_c00207{bottom:56.160000px;}
.y6a_c00207{bottom:56.880000px;}
.y6e_c00207{bottom:59.040000px;}
.y67_c00207{bottom:94.320000px;}
.y69_c00207{bottom:95.040000px;}
.y68_c00207{bottom:96.480000px;}
.y66_c00207{bottom:98.640000px;}
.y65_c00207{bottom:110.160000px;}
.y63_c00207{bottom:137.520000px;}
.y64_c00207{bottom:139.680000px;}
.y62_c00207{bottom:140.400000px;}
.y61_c00207{bottom:143.280000px;}
.y5f_c00207{bottom:180.720000px;}
.y5c_c00207{bottom:182.160000px;}
.y5d_c00207{bottom:182.880000px;}
.y5e_c00207{bottom:183.600000px;}
.y5b_c00207{bottom:184.320000px;}
.y60_c00207{bottom:185.040000px;}
.y59_c00207{bottom:223.200000px;}
.y5a_c00207{bottom:224.640000px;}
.y57_c00207{bottom:225.360000px;}
.y58_c00207{bottom:226.800000px;}
.y56_c00207{bottom:228.960000px;}
.y52_c00207{bottom:266.400000px;}
.y50_c00207{bottom:267.120000px;}
.y53_c00207{bottom:267.840000px;}
.y4f_c00207{bottom:269.280000px;}
.y51_c00207{bottom:270.000000px;}
.y54_c00207{bottom:270.720000px;}
.y55_c00207{bottom:271.440000px;}
.y4e_c00207{bottom:272.160000px;}
.y4d_c00207{bottom:311.040000px;}
.y4b_c00207{bottom:312.480000px;}
.y4c_c00207{bottom:313.200000px;}
.y4a_c00207{bottom:313.920000px;}
.y49_c00207{bottom:363.600000px;}
.y48_c00207{bottom:366.480000px;}
.y47_c00207{bottom:368.640000px;}
.y44_c00207{bottom:407.520000px;}
.y45_c00207{bottom:408.240000px;}
.y42_c00207{bottom:409.680000px;}
.y43_c00207{bottom:410.400000px;}
.y46_c00207{bottom:411.120000px;}
.y41_c00207{bottom:450.720000px;}
.y40_c00207{bottom:452.880000px;}
.y3f_c00207{bottom:453.600000px;}
.y3e_c00207{bottom:454.320000px;}
.y3a_c00207{bottom:493.200000px;}
.y3b_c00207{bottom:493.920000px;}
.y39_c00207{bottom:494.640000px;}
.y3d_c00207{bottom:496.080000px;}
.y3c_c00207{bottom:496.800000px;}
.y38_c00207{bottom:536.400000px;}
.y37_c00207{bottom:537.120000px;}
.y36_c00207{bottom:537.840000px;}
.y35_c00207{bottom:540.000000px;}
.y34_c00207{bottom:580.320000px;}
.y32_c00207{bottom:581.040000px;}
.y33_c00207{bottom:583.200000px;}
.y31_c00207{bottom:623.520000px;}
.y30_c00207{bottom:624.240000px;}
.y2e_c00207{bottom:626.400000px;}
.y2f_c00207{bottom:627.120000px;}
.y2d_c00207{bottom:666.720000px;}
.y2c_c00207{bottom:668.880000px;}
.y2b_c00207{bottom:669.600000px;}
.y28_c00207{bottom:709.920000px;}
.y29_c00207{bottom:712.080000px;}
.y2a_c00207{bottom:712.800000px;}
.y26_c00207{bottom:752.400000px;}
.y25_c00207{bottom:753.120000px;}
.y27_c00207{bottom:755.280000px;}
.y24_c00207{bottom:756.000000px;}
.y22_c00207{bottom:807.120000px;}
.y21_c00207{bottom:807.840000px;}
.y23_c00207{bottom:809.280000px;}
.y20_c00207{bottom:848.880000px;}
.y1f_c00207{bottom:849.600000px;}
.y1b_c00207{bottom:851.040000px;}
.y1c_c00207{bottom:851.760000px;}
.y1d_c00207{bottom:852.480000px;}
.y1e_c00207{bottom:853.200000px;}
.y18_c00207{bottom:892.800000px;}
.y16_c00207{bottom:894.240000px;}
.y19_c00207{bottom:894.960000px;}
.y1a_c00207{bottom:895.680000px;}
.y17_c00207{bottom:896.400000px;}
.y14_c00207{bottom:935.280000px;}
.y15_c00207{bottom:936.720000px;}
.y11_c00207{bottom:937.440000px;}
.y13_c00207{bottom:938.160000px;}
.y12_c00207{bottom:938.880000px;}
.yb_c00207{bottom:978.480000px;}
.ye_c00207{bottom:979.920000px;}
.yf_c00207{bottom:980.640000px;}
.y10_c00207{bottom:981.360000px;}
.yd_c00207{bottom:982.080000px;}
.yc_c00207{bottom:982.800000px;}
.y7_c00207{bottom:1023.120000px;}
.ya_c00207{bottom:1023.840000px;}
.y8_c00207{bottom:1024.560000px;}
.y9_c00207{bottom:1025.280000px;}
.y6_c00207{bottom:1066.320000px;}
.y2_c00207{bottom:1067.040000px;}
.y3_c00207{bottom:1067.760000px;}
.y5_c00207{bottom:1068.480000px;}
.y4_c00207{bottom:1069.200000px;}
.y1_c00207{bottom:1110.240000px;}
.h7_c00207{height:31.100625px;}
.h6_c00207{height:33.692344px;}
.he_c00207{height:36.284062px;}
.h8_c00207{height:38.875781px;}
.h10_c00207{height:41.467500px;}
.ha_c00207{height:44.059219px;}
.h3_c00207{height:46.650937px;}
.h5_c00207{height:49.242656px;}
.h4_c00207{height:51.834375px;}
.hc_c00207{height:54.426094px;}
.h9_c00207{height:57.017812px;}
.hd_c00207{height:59.609531px;}
.hb_c00207{height:62.201250px;}
.h11_c00207{height:64.792969px;}
.h2_c00207{height:69.976406px;}
.hf_c00207{height:85.526719px;}
.h1_c00207{height:1168.500000px;}
.h0_c00207{height:1168.560000px;}
.w1_c00207{width:786.000000px;}
.w0_c00207{width:786.240000px;}
.x0_c00207{left:0.000000px;}
.x2_c00207{left:75.600000px;}
.x52_c00207{left:77.760000px;}
.x1a_c00207{left:95.760000px;}
.x3_c00207{left:105.840000px;}
.x33_c00207{left:107.280000px;}
.x4b_c00207{left:112.320000px;}
.x20_c00207{left:116.640000px;}
.x42_c00207{left:118.080000px;}
.x59_c00207{left:128.160000px;}
.xd_c00207{left:138.960000px;}
.x61_c00207{left:149.760000px;}
.x3f_c00207{left:159.840000px;}
.x4_c00207{left:161.280000px;}
.x26_c00207{left:170.640000px;}
.x62_c00207{left:180.000000px;}
.x2a_c00207{left:182.160000px;}
.x14_c00207{left:192.960000px;}
.x34_c00207{left:203.760000px;}
.x21_c00207{left:205.200000px;}
.x2b_c00207{left:213.840000px;}
.x5_c00207{left:215.280000px;}
.x5c_c00207{left:223.200000px;}
.x29_c00207{left:226.080000px;}
.x36_c00207{left:234.720000px;}
.x22_c00207{left:236.160000px;}
.x15_c00207{left:246.240000px;}
.x3c_c00207{left:247.680000px;}
.xe_c00207{left:258.480000px;}
.x43_c00207{left:267.840000px;}
.x1b_c00207{left:269.280000px;}
.x4d_c00207{left:278.640000px;}
.x47_c00207{left:280.800000px;}
.x37_c00207{left:289.440000px;}
.xf_c00207{left:290.880000px;}
.x4e_c00207{left:300.960000px;}
.x16_c00207{left:313.200000px;}
.x5b_c00207{left:321.120000px;}
.x6_c00207{left:323.280000px;}
.x48_c00207{left:334.080000px;}
.x44_c00207{left:344.880000px;}
.x30_c00207{left:346.320000px;}
.x7_c00207{left:354.960000px;}
.x1c_c00207{left:366.480000px;}
.x53_c00207{left:375.840000px;}
.x31_c00207{left:378.000000px;}
.x8_c00207{left:386.640000px;}
.x3d_c00207{left:388.080000px;}
.x38_c00207{left:397.440000px;}
.x10_c00207{left:400.320000px;}
.x54_c00207{left:419.040000px;}
.x58_c00207{left:422.640000px;}
.x27_c00207{left:430.560000px;}
.x17_c00207{left:432.000000px;}
.x49_c00207{left:441.360000px;}
.x40_c00207{left:451.440000px;}
.x55_c00207{left:453.600000px;}
.x18_c00207{left:463.680000px;}
.x28_c00207{left:473.760000px;}
.x9_c00207{left:475.200000px;}
.x41_c00207{left:483.840000px;}
.x5f_c00207{left:486.720000px;}
.x2c_c00207{left:494.640000px;}
.x23_c00207{left:496.080000px;}
.x39_c00207{left:506.160000px;}
.x4f_c00207{left:516.240000px;}
.x1d_c00207{left:517.680000px;}
.x24_c00207{left:527.040000px;}
.xa_c00207{left:528.480000px;}
.x3e_c00207{left:539.280000px;}
.x4a_c00207{left:548.640000px;}
.xb_c00207{left:550.800000px;}
.x5a_c00207{left:559.440000px;}
.x11_c00207{left:560.880000px;}
.x35_c00207{left:570.240000px;}
.x1e_c00207{left:572.400000px;}
.x60_c00207{left:579.600000px;}
.x45_c00207{left:581.040000px;}
.x19_c00207{left:582.480000px;}
.x5d_c00207{left:590.400000px;}
.x3a_c00207{left:591.840000px;}
.x12_c00207{left:594.000000px;}
.x2d_c00207{left:602.640000px;}
.x1f_c00207{left:604.080000px;}
.x50_c00207{left:613.440000px;}
.x56_c00207{left:622.800000px;}
.x46_c00207{left:624.240000px;}
.x3b_c00207{left:626.400000px;}
.x32_c00207{left:635.760000px;}
.x51_c00207{left:643.680000px;}
.x2e_c00207{left:645.840000px;}
.x25_c00207{left:647.280000px;}
.x57_c00207{left:654.480000px;}
.x13_c00207{left:657.360000px;}
.x4c_c00207{left:666.720000px;}
.xc_c00207{left:668.160000px;}
.x5e_c00207{left:676.800000px;}
.x2f_c00207{left:678.240000px;}
.x1_c00207{left:704.160000px;}
@media print{
.v1_c00207{vertical-align:-2.560000pt;}
.v0_c00207{vertical-align:0.000000pt;}
.ls1_c00207{letter-spacing:0.000000pt;}
.ls0_c00207{letter-spacing:313.986133pt;}
.ws0_c00207{word-spacing:-3.931415pt;}
.ws1_c00207{word-spacing:0.000000pt;}
.fs5_c00207{font-size:30.720000pt;}
.fs4_c00207{font-size:33.280000pt;}
.fsc_c00207{font-size:35.840000pt;}
.fs6_c00207{font-size:38.400000pt;}
.fse_c00207{font-size:40.960000pt;}
.fs8_c00207{font-size:43.520000pt;}
.fs1_c00207{font-size:46.080000pt;}
.fs3_c00207{font-size:48.640000pt;}
.fs2_c00207{font-size:51.200000pt;}
.fsa_c00207{font-size:53.760000pt;}
.fs7_c00207{font-size:56.320000pt;}
.fsb_c00207{font-size:58.880000pt;}
.fs9_c00207{font-size:61.440000pt;}
.fsf_c00207{font-size:64.000000pt;}
.fs0_c00207{font-size:69.120000pt;}
.fsd_c00207{font-size:84.480000pt;}
.y0_c00207{bottom:0.000000pt;}
.y73_c00207{bottom:12.800000pt;}
.y75_c00207{bottom:13.440000pt;}
.y74_c00207{bottom:14.080000pt;}
.y72_c00207{bottom:17.280000pt;}
.y6f_c00207{bottom:46.080000pt;}
.y71_c00207{bottom:46.720000pt;}
.y6d_c00207{bottom:47.360000pt;}
.y6c_c00207{bottom:48.000000pt;}
.y70_c00207{bottom:48.640000pt;}
.y6b_c00207{bottom:49.920000pt;}
.y6a_c00207{bottom:50.560000pt;}
.y6e_c00207{bottom:52.480000pt;}
.y67_c00207{bottom:83.840000pt;}
.y69_c00207{bottom:84.480000pt;}
.y68_c00207{bottom:85.760000pt;}
.y66_c00207{bottom:87.680000pt;}
.y65_c00207{bottom:97.920000pt;}
.y63_c00207{bottom:122.240000pt;}
.y64_c00207{bottom:124.160000pt;}
.y62_c00207{bottom:124.800000pt;}
.y61_c00207{bottom:127.360000pt;}
.y5f_c00207{bottom:160.640000pt;}
.y5c_c00207{bottom:161.920000pt;}
.y5d_c00207{bottom:162.560000pt;}
.y5e_c00207{bottom:163.200000pt;}
.y5b_c00207{bottom:163.840000pt;}
.y60_c00207{bottom:164.480000pt;}
.y59_c00207{bottom:198.400000pt;}
.y5a_c00207{bottom:199.680000pt;}
.y57_c00207{bottom:200.320000pt;}
.y58_c00207{bottom:201.600000pt;}
.y56_c00207{bottom:203.520000pt;}
.y52_c00207{bottom:236.800000pt;}
.y50_c00207{bottom:237.440000pt;}
.y53_c00207{bottom:238.080000pt;}
.y4f_c00207{bottom:239.360000pt;}
.y51_c00207{bottom:240.000000pt;}
.y54_c00207{bottom:240.640000pt;}
.y55_c00207{bottom:241.280000pt;}
.y4e_c00207{bottom:241.920000pt;}
.y4d_c00207{bottom:276.480000pt;}
.y4b_c00207{bottom:277.760000pt;}
.y4c_c00207{bottom:278.400000pt;}
.y4a_c00207{bottom:279.040000pt;}
.y49_c00207{bottom:323.200000pt;}
.y48_c00207{bottom:325.760000pt;}
.y47_c00207{bottom:327.680000pt;}
.y44_c00207{bottom:362.240000pt;}
.y45_c00207{bottom:362.880000pt;}
.y42_c00207{bottom:364.160000pt;}
.y43_c00207{bottom:364.800000pt;}
.y46_c00207{bottom:365.440000pt;}
.y41_c00207{bottom:400.640000pt;}
.y40_c00207{bottom:402.560000pt;}
.y3f_c00207{bottom:403.200000pt;}
.y3e_c00207{bottom:403.840000pt;}
.y3a_c00207{bottom:438.400000pt;}
.y3b_c00207{bottom:439.040000pt;}
.y39_c00207{bottom:439.680000pt;}
.y3d_c00207{bottom:440.960000pt;}
.y3c_c00207{bottom:441.600000pt;}
.y38_c00207{bottom:476.800000pt;}
.y37_c00207{bottom:477.440000pt;}
.y36_c00207{bottom:478.080000pt;}
.y35_c00207{bottom:480.000000pt;}
.y34_c00207{bottom:515.840000pt;}
.y32_c00207{bottom:516.480000pt;}
.y33_c00207{bottom:518.400000pt;}
.y31_c00207{bottom:554.240000pt;}
.y30_c00207{bottom:554.880000pt;}
.y2e_c00207{bottom:556.800000pt;}
.y2f_c00207{bottom:557.440000pt;}
.y2d_c00207{bottom:592.640000pt;}
.y2c_c00207{bottom:594.560000pt;}
.y2b_c00207{bottom:595.200000pt;}
.y28_c00207{bottom:631.040000pt;}
.y29_c00207{bottom:632.960000pt;}
.y2a_c00207{bottom:633.600000pt;}
.y26_c00207{bottom:668.800000pt;}
.y25_c00207{bottom:669.440000pt;}
.y27_c00207{bottom:671.360000pt;}
.y24_c00207{bottom:672.000000pt;}
.y22_c00207{bottom:717.440000pt;}
.y21_c00207{bottom:718.080000pt;}
.y23_c00207{bottom:719.360000pt;}
.y20_c00207{bottom:754.560000pt;}
.y1f_c00207{bottom:755.200000pt;}
.y1b_c00207{bottom:756.480000pt;}
.y1c_c00207{bottom:757.120000pt;}
.y1d_c00207{bottom:757.760000pt;}
.y1e_c00207{bottom:758.400000pt;}
.y18_c00207{bottom:793.600000pt;}
.y16_c00207{bottom:794.880000pt;}
.y19_c00207{bottom:795.520000pt;}
.y1a_c00207{bottom:796.160000pt;}
.y17_c00207{bottom:796.800000pt;}
.y14_c00207{bottom:831.360000pt;}
.y15_c00207{bottom:832.640000pt;}
.y11_c00207{bottom:833.280000pt;}
.y13_c00207{bottom:833.920000pt;}
.y12_c00207{bottom:834.560000pt;}
.yb_c00207{bottom:869.760000pt;}
.ye_c00207{bottom:871.040000pt;}
.yf_c00207{bottom:871.680000pt;}
.y10_c00207{bottom:872.320000pt;}
.yd_c00207{bottom:872.960000pt;}
.yc_c00207{bottom:873.600000pt;}
.y7_c00207{bottom:909.440000pt;}
.ya_c00207{bottom:910.080000pt;}
.y8_c00207{bottom:910.720000pt;}
.y9_c00207{bottom:911.360000pt;}
.y6_c00207{bottom:947.840000pt;}
.y2_c00207{bottom:948.480000pt;}
.y3_c00207{bottom:949.120000pt;}
.y5_c00207{bottom:949.760000pt;}
.y4_c00207{bottom:950.400000pt;}
.y1_c00207{bottom:986.880000pt;}
.h7_c00207{height:27.645000pt;}
.h6_c00207{height:29.948750pt;}
.he_c00207{height:32.252500pt;}
.h8_c00207{height:34.556250pt;}
.h10_c00207{height:36.860000pt;}
.ha_c00207{height:39.163750pt;}
.h3_c00207{height:41.467500pt;}
.h5_c00207{height:43.771250pt;}
.h4_c00207{height:46.075000pt;}
.hc_c00207{height:48.378750pt;}
.h9_c00207{height:50.682500pt;}
.hd_c00207{height:52.986250pt;}
.hb_c00207{height:55.290000pt;}
.h11_c00207{height:57.593750pt;}
.h2_c00207{height:62.201250pt;}
.hf_c00207{height:76.023750pt;}
.h1_c00207{height:1038.666667pt;}
.h0_c00207{height:1038.720000pt;}
.w1_c00207{width:698.666667pt;}
.w0_c00207{width:698.880000pt;}
.x0_c00207{left:0.000000pt;}
.x2_c00207{left:67.200000pt;}
.x52_c00207{left:69.120000pt;}
.x1a_c00207{left:85.120000pt;}
.x3_c00207{left:94.080000pt;}
.x33_c00207{left:95.360000pt;}
.x4b_c00207{left:99.840000pt;}
.x20_c00207{left:103.680000pt;}
.x42_c00207{left:104.960000pt;}
.x59_c00207{left:113.920000pt;}
.xd_c00207{left:123.520000pt;}
.x61_c00207{left:133.120000pt;}
.x3f_c00207{left:142.080000pt;}
.x4_c00207{left:143.360000pt;}
.x26_c00207{left:151.680000pt;}
.x62_c00207{left:160.000000pt;}
.x2a_c00207{left:161.920000pt;}
.x14_c00207{left:171.520000pt;}
.x34_c00207{left:181.120000pt;}
.x21_c00207{left:182.400000pt;}
.x2b_c00207{left:190.080000pt;}
.x5_c00207{left:191.360000pt;}
.x5c_c00207{left:198.400000pt;}
.x29_c00207{left:200.960000pt;}
.x36_c00207{left:208.640000pt;}
.x22_c00207{left:209.920000pt;}
.x15_c00207{left:218.880000pt;}
.x3c_c00207{left:220.160000pt;}
.xe_c00207{left:229.760000pt;}
.x43_c00207{left:238.080000pt;}
.x1b_c00207{left:239.360000pt;}
.x4d_c00207{left:247.680000pt;}
.x47_c00207{left:249.600000pt;}
.x37_c00207{left:257.280000pt;}
.xf_c00207{left:258.560000pt;}
.x4e_c00207{left:267.520000pt;}
.x16_c00207{left:278.400000pt;}
.x5b_c00207{left:285.440000pt;}
.x6_c00207{left:287.360000pt;}
.x48_c00207{left:296.960000pt;}
.x44_c00207{left:306.560000pt;}
.x30_c00207{left:307.840000pt;}
.x7_c00207{left:315.520000pt;}
.x1c_c00207{left:325.760000pt;}
.x53_c00207{left:334.080000pt;}
.x31_c00207{left:336.000000pt;}
.x8_c00207{left:343.680000pt;}
.x3d_c00207{left:344.960000pt;}
.x38_c00207{left:353.280000pt;}
.x10_c00207{left:355.840000pt;}
.x54_c00207{left:372.480000pt;}
.x58_c00207{left:375.680000pt;}
.x27_c00207{left:382.720000pt;}
.x17_c00207{left:384.000000pt;}
.x49_c00207{left:392.320000pt;}
.x40_c00207{left:401.280000pt;}
.x55_c00207{left:403.200000pt;}
.x18_c00207{left:412.160000pt;}
.x28_c00207{left:421.120000pt;}
.x9_c00207{left:422.400000pt;}
.x41_c00207{left:430.080000pt;}
.x5f_c00207{left:432.640000pt;}
.x2c_c00207{left:439.680000pt;}
.x23_c00207{left:440.960000pt;}
.x39_c00207{left:449.920000pt;}
.x4f_c00207{left:458.880000pt;}
.x1d_c00207{left:460.160000pt;}
.x24_c00207{left:468.480000pt;}
.xa_c00207{left:469.760000pt;}
.x3e_c00207{left:479.360000pt;}
.x4a_c00207{left:487.680000pt;}
.xb_c00207{left:489.600000pt;}
.x5a_c00207{left:497.280000pt;}
.x11_c00207{left:498.560000pt;}
.x35_c00207{left:506.880000pt;}
.x1e_c00207{left:508.800000pt;}
.x60_c00207{left:515.200000pt;}
.x45_c00207{left:516.480000pt;}
.x19_c00207{left:517.760000pt;}
.x5d_c00207{left:524.800000pt;}
.x3a_c00207{left:526.080000pt;}
.x12_c00207{left:528.000000pt;}
.x2d_c00207{left:535.680000pt;}
.x1f_c00207{left:536.960000pt;}
.x50_c00207{left:545.280000pt;}
.x56_c00207{left:553.600000pt;}
.x46_c00207{left:554.880000pt;}
.x3b_c00207{left:556.800000pt;}
.x32_c00207{left:565.120000pt;}
.x51_c00207{left:572.160000pt;}
.x2e_c00207{left:574.080000pt;}
.x25_c00207{left:575.360000pt;}
.x57_c00207{left:581.760000pt;}
.x13_c00207{left:584.320000pt;}
.x4c_c00207{left:592.640000pt;}
.xc_c00207{left:593.920000pt;}
.x5e_c00207{left:601.600000pt;}
.x2f_c00207{left:602.880000pt;}
.x1_c00207{left:625.920000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b8ca2e068f75617fe61c8863.woff2')format("woff");}.ff1_c00208{font-family:ff1_c00208;line-height:1.109863;font-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_c00208{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m15_c00208{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);}
.m53_c00208{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00208{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);}
.m42_c00208{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);}
.m5a_c00208{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00208{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m34_c00208{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m22_c00208{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m59_c00208{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m51_c00208{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m19_c00208{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m50_c00208{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m44_c00208{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m13_c00208{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m26_c00208{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mb_c00208{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00208{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);}
.m49_c00208{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_c00208{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.md_c00208{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m0_c00208{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);}
.m28_c00208{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00208{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);}
.m3a_c00208{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m1_c00208{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);}
.m30_c00208{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m17_c00208{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);}
.m4f_c00208{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.ma_c00208{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m57_c00208{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);}
.m31_c00208{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m14_c00208{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_c00208{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m58_c00208{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);}
.m32_c00208{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m24_c00208{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);}
.m3b_c00208{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);}
.m35_c00208{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);}
.m39_c00208{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00208{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.mf_c00208{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m23_c00208{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);}
.m10_c00208{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00208{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);}
.m6_c00208{transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00208{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);}
.m4b_c00208{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m4_c00208{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m3_c00208{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00208{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00208{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);}
.m48_c00208{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m12_c00208{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m36_c00208{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);}
.m5b_c00208{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m8_c00208{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);}
.m21_c00208{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m47_c00208{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m52_c00208{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m56_c00208{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m9_c00208{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);}
.m54_c00208{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00208{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m40_c00208{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00208{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m27_c00208{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.mc_c00208{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m25_c00208{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m2_c00208{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);}
.m7_c00208{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m11_c00208{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00208{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m46_c00208{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);}
.m2c_c00208{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m16_c00208{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m55_c00208{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00208{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m5_c00208{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);}
.m41_c00208{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m38_c00208{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m20_c00208{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m37_c00208{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m43_c00208{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);}
.m29_c00208{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);}
.m45_c00208{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00208{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00208{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);}
.m4e_c00208{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00208{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_c00208{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00208{transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);}
.v1_c00208{vertical-align:-5.760000px;}
.v0_c00208{vertical-align:0.000000px;}
.ls1_c00208{letter-spacing:0.000000px;}
.ls0_c00208{letter-spacing:22.383360px;}
.sc__c00208{text-shadow:none;}
.sc0_c00208{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00208{-webkit-text-stroke:0px transparent;}
.sc0_c00208{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00208{word-spacing:0.000000px;}
.fc0_c00208{color:transparent;}
.fsd_c00208{font-size:28.800000px;}
.fsc_c00208{font-size:34.560000px;}
.fs9_c00208{font-size:37.440000px;}
.fsb_c00208{font-size:40.320000px;}
.fsa_c00208{font-size:43.200000px;}
.fs0_c00208{font-size:46.080000px;}
.fs6_c00208{font-size:48.960000px;}
.fs2_c00208{font-size:51.840000px;}
.fs4_c00208{font-size:54.720000px;}
.fs3_c00208{font-size:57.600000px;}
.fs5_c00208{font-size:60.480000px;}
.fs1_c00208{font-size:63.360000px;}
.fs8_c00208{font-size:66.240000px;}
.fs7_c00208{font-size:69.120000px;}
.fsf_c00208{font-size:72.000000px;}
.fse_c00208{font-size:74.880000px;}
.fs10_c00208{font-size:77.760000px;}
.y0_c00208{bottom:0.000000px;}
.y72_c00208{bottom:69.840000px;}
.y73_c00208{bottom:71.280000px;}
.y74_c00208{bottom:72.000000px;}
.y71_c00208{bottom:72.720000px;}
.y75_c00208{bottom:73.440000px;}
.y70_c00208{bottom:76.320000px;}
.y6f_c00208{bottom:77.040000px;}
.y6b_c00208{bottom:113.040000px;}
.y6d_c00208{bottom:113.760000px;}
.y6a_c00208{bottom:114.480000px;}
.y6c_c00208{bottom:115.200000px;}
.y69_c00208{bottom:116.640000px;}
.y68_c00208{bottom:117.360000px;}
.y6e_c00208{bottom:118.080000px;}
.y65_c00208{bottom:156.960000px;}
.y67_c00208{bottom:158.400000px;}
.y64_c00208{bottom:159.120000px;}
.y63_c00208{bottom:159.840000px;}
.y66_c00208{bottom:160.560000px;}
.y62_c00208{bottom:213.120000px;}
.y61_c00208{bottom:216.000000px;}
.y5e_c00208{bottom:256.320000px;}
.y5d_c00208{bottom:257.040000px;}
.y60_c00208{bottom:257.760000px;}
.y5f_c00208{bottom:258.480000px;}
.y5c_c00208{bottom:259.200000px;}
.y5b_c00208{bottom:259.920000px;}
.y57_c00208{bottom:298.080000px;}
.y5a_c00208{bottom:299.520000px;}
.y56_c00208{bottom:300.240000px;}
.y58_c00208{bottom:300.960000px;}
.y59_c00208{bottom:301.680000px;}
.y55_c00208{bottom:341.280000px;}
.y52_c00208{bottom:342.000000px;}
.y54_c00208{bottom:342.720000px;}
.y53_c00208{bottom:343.440000px;}
.y51_c00208{bottom:345.600000px;}
.y4e_c00208{bottom:383.760000px;}
.y4d_c00208{bottom:384.480000px;}
.y50_c00208{bottom:385.200000px;}
.y4f_c00208{bottom:386.640000px;}
.y4c_c00208{bottom:387.360000px;}
.y4b_c00208{bottom:388.080000px;}
.y48_c00208{bottom:427.680000px;}
.y49_c00208{bottom:428.400000px;}
.y45_c00208{bottom:429.120000px;}
.y46_c00208{bottom:429.840000px;}
.y47_c00208{bottom:430.560000px;}
.y4a_c00208{bottom:432.000000px;}
.y43_c00208{bottom:470.160000px;}
.y42_c00208{bottom:470.880000px;}
.y44_c00208{bottom:471.600000px;}
.y41_c00208{bottom:473.040000px;}
.y40_c00208{bottom:473.760000px;}
.y3f_c00208{bottom:474.480000px;}
.y3d_c00208{bottom:513.360000px;}
.y3c_c00208{bottom:514.080000px;}
.y3e_c00208{bottom:514.800000px;}
.y3b_c00208{bottom:516.240000px;}
.y3a_c00208{bottom:516.960000px;}
.y38_c00208{bottom:556.560000px;}
.y37_c00208{bottom:559.440000px;}
.y39_c00208{bottom:560.160000px;}
.y34_c00208{bottom:599.040000px;}
.y36_c00208{bottom:599.760000px;}
.y31_c00208{bottom:600.480000px;}
.y33_c00208{bottom:601.920000px;}
.y32_c00208{bottom:602.640000px;}
.y35_c00208{bottom:603.360000px;}
.y2f_c00208{bottom:642.240000px;}
.y2e_c00208{bottom:642.960000px;}
.y2d_c00208{bottom:645.120000px;}
.y30_c00208{bottom:645.840000px;}
.y2c_c00208{bottom:686.160000px;}
.y2a_c00208{bottom:686.880000px;}
.y28_c00208{bottom:687.600000px;}
.y29_c00208{bottom:688.320000px;}
.y2b_c00208{bottom:689.040000px;}
.y25_c00208{bottom:730.800000px;}
.y27_c00208{bottom:731.520000px;}
.y26_c00208{bottom:732.240000px;}
.y24_c00208{bottom:771.840000px;}
.y22_c00208{bottom:772.560000px;}
.y20_c00208{bottom:773.280000px;}
.y23_c00208{bottom:774.720000px;}
.y21_c00208{bottom:775.440000px;}
.y1d_c00208{bottom:825.840000px;}
.y1f_c00208{bottom:827.280000px;}
.y1c_c00208{bottom:828.720000px;}
.y1e_c00208{bottom:829.440000px;}
.y19_c00208{bottom:869.040000px;}
.y18_c00208{bottom:870.480000px;}
.y1b_c00208{bottom:871.200000px;}
.y17_c00208{bottom:871.920000px;}
.y1a_c00208{bottom:872.640000px;}
.y15_c00208{bottom:912.240000px;}
.y14_c00208{bottom:912.960000px;}
.y11_c00208{bottom:914.400000px;}
.y12_c00208{bottom:915.120000px;}
.y16_c00208{bottom:915.840000px;}
.y13_c00208{bottom:916.560000px;}
.y10_c00208{bottom:956.160000px;}
.ye_c00208{bottom:957.600000px;}
.yf_c00208{bottom:958.320000px;}
.yd_c00208{bottom:997.200000px;}
.yc_c00208{bottom:997.920000px;}
.yb_c00208{bottom:998.640000px;}
.ya_c00208{bottom:999.360000px;}
.y9_c00208{bottom:1000.080000px;}
.y7_c00208{bottom:1000.800000px;}
.y8_c00208{bottom:1002.240000px;}
.y4_c00208{bottom:1041.840000px;}
.y2_c00208{bottom:1043.280000px;}
.y6_c00208{bottom:1044.000000px;}
.y5_c00208{bottom:1044.720000px;}
.y1_c00208{bottom:1045.440000px;}
.y3_c00208{bottom:1046.160000px;}
.y76_c00208{bottom:1093.680000px;}
.hf_c00208{height:25.917187px;}
.hd_c00208{height:31.100625px;}
.hb_c00208{height:33.692344px;}
.hc_c00208{height:36.284062px;}
.he_c00208{height:38.875781px;}
.h2_c00208{height:41.467500px;}
.h8_c00208{height:44.059219px;}
.h4_c00208{height:46.650937px;}
.h6_c00208{height:49.242656px;}
.h5_c00208{height:51.834375px;}
.h7_c00208{height:54.426094px;}
.h3_c00208{height:57.017812px;}
.ha_c00208{height:59.609531px;}
.h9_c00208{height:62.201250px;}
.h11_c00208{height:64.792969px;}
.h10_c00208{height:67.384687px;}
.h12_c00208{height:69.976406px;}
.h1_c00208{height:1143.000000px;}
.h0_c00208{height:1143.360000px;}
.w1_c00208{width:786.000000px;}
.w0_c00208{width:786.240000px;}
.x0_c00208{left:0.000000px;}
.x9_c00208{left:67.680000px;}
.x46_c00208{left:69.120000px;}
.x12_c00208{left:99.360000px;}
.xa_c00208{left:108.720000px;}
.x54_c00208{left:110.160000px;}
.x47_c00208{left:118.800000px;}
.x33_c00208{left:129.600000px;}
.x40_c00208{left:141.840000px;}
.x34_c00208{left:151.200000px;}
.x28_c00208{left:152.640000px;}
.x2d_c00208{left:162.720000px;}
.x56_c00208{left:171.360000px;}
.x38_c00208{left:173.520000px;}
.x1_c00208{left:174.960000px;}
.x41_c00208{left:183.600000px;}
.x19_c00208{left:185.040000px;}
.x24_c00208{left:194.400000px;}
.x20_c00208{left:196.560000px;}
.x2_c00208{left:205.920000px;}
.x42_c00208{left:216.000000px;}
.xb_c00208{left:218.160000px;}
.x29_c00208{left:228.960000px;}
.x35_c00208{left:237.600000px;}
.x25_c00208{left:239.040000px;}
.x39_c00208{left:249.120000px;}
.x13_c00208{left:259.920000px;}
.x1a_c00208{left:261.360000px;}
.x57_c00208{left:270.000000px;}
.x2e_c00208{left:271.440000px;}
.x4a_c00208{left:281.520000px;}
.x3a_c00208{left:292.320000px;}
.x3_c00208{left:293.760000px;}
.x58_c00208{left:313.200000px;}
.xc_c00208{left:315.360000px;}
.x2f_c00208{left:324.000000px;}
.x4e_c00208{left:334.800000px;}
.x4_c00208{left:336.960000px;}
.x21_c00208{left:346.320000px;}
.x2a_c00208{left:347.760000px;}
.x1b_c00208{left:357.840000px;}
.xd_c00208{left:359.280000px;}
.x3b_c00208{left:367.920000px;}
.x30_c00208{left:378.720000px;}
.x3c_c00208{left:389.520000px;}
.x14_c00208{left:390.960000px;}
.x5b_c00208{left:398.880000px;}
.x1c_c00208{left:401.040000px;}
.x3d_c00208{left:411.120000px;}
.x5_c00208{left:412.560000px;}
.x22_c00208{left:421.920000px;}
.x15_c00208{left:423.360000px;}
.x43_c00208{left:432.720000px;}
.xe_c00208{left:434.160000px;}
.x5c_c00208{left:442.080000px;}
.x2b_c00208{left:443.520000px;}
.x1d_c00208{left:444.960000px;}
.x4f_c00208{left:453.600000px;}
.x51_c00208{left:455.760000px;}
.x36_c00208{left:465.120000px;}
.x6_c00208{left:466.560000px;}
.x1e_c00208{left:475.920000px;}
.x23_c00208{left:486.720000px;}
.x26_c00208{left:488.160000px;}
.x4b_c00208{left:496.800000px;}
.x7_c00208{left:498.240000px;}
.x16_c00208{left:499.680000px;}
.x3e_c00208{left:508.320000px;}
.x37_c00208{left:519.120000px;}
.x55_c00208{left:520.560000px;}
.x17_c00208{left:531.360000px;}
.x31_c00208{left:540.000000px;}
.xf_c00208{left:541.440000px;}
.x44_c00208{left:550.800000px;}
.x50_c00208{left:552.240000px;}
.x4c_c00208{left:561.600000px;}
.x3f_c00208{left:572.400000px;}
.x52_c00208{left:583.200000px;}
.x10_c00208{left:584.640000px;}
.x5a_c00208{left:593.280000px;}
.x1f_c00208{left:594.720000px;}
.x59_c00208{left:604.800000px;}
.x45_c00208{left:615.600000px;}
.x48_c00208{left:617.040000px;}
.x32_c00208{left:626.400000px;}
.x8_c00208{left:627.840000px;}
.x49_c00208{left:637.200000px;}
.x18_c00208{left:648.720000px;}
.x2c_c00208{left:650.160000px;}
.x4d_c00208{left:658.080000px;}
.x27_c00208{left:659.520000px;}
.x53_c00208{left:668.160000px;}
.x11_c00208{left:670.320000px;}
.x5d_c00208{left:699.840000px;}
@media print{
.v1_c00208{vertical-align:-5.120000pt;}
.v0_c00208{vertical-align:0.000000pt;}
.ls1_c00208{letter-spacing:0.000000pt;}
.ls0_c00208{letter-spacing:19.896320pt;}
.ws0_c00208{word-spacing:0.000000pt;}
.fsd_c00208{font-size:25.600000pt;}
.fsc_c00208{font-size:30.720000pt;}
.fs9_c00208{font-size:33.280000pt;}
.fsb_c00208{font-size:35.840000pt;}
.fsa_c00208{font-size:38.400000pt;}
.fs0_c00208{font-size:40.960000pt;}
.fs6_c00208{font-size:43.520000pt;}
.fs2_c00208{font-size:46.080000pt;}
.fs4_c00208{font-size:48.640000pt;}
.fs3_c00208{font-size:51.200000pt;}
.fs5_c00208{font-size:53.760000pt;}
.fs1_c00208{font-size:56.320000pt;}
.fs8_c00208{font-size:58.880000pt;}
.fs7_c00208{font-size:61.440000pt;}
.fsf_c00208{font-size:64.000000pt;}
.fse_c00208{font-size:66.560000pt;}
.fs10_c00208{font-size:69.120000pt;}
.y0_c00208{bottom:0.000000pt;}
.y72_c00208{bottom:62.080000pt;}
.y73_c00208{bottom:63.360000pt;}
.y74_c00208{bottom:64.000000pt;}
.y71_c00208{bottom:64.640000pt;}
.y75_c00208{bottom:65.280000pt;}
.y70_c00208{bottom:67.840000pt;}
.y6f_c00208{bottom:68.480000pt;}
.y6b_c00208{bottom:100.480000pt;}
.y6d_c00208{bottom:101.120000pt;}
.y6a_c00208{bottom:101.760000pt;}
.y6c_c00208{bottom:102.400000pt;}
.y69_c00208{bottom:103.680000pt;}
.y68_c00208{bottom:104.320000pt;}
.y6e_c00208{bottom:104.960000pt;}
.y65_c00208{bottom:139.520000pt;}
.y67_c00208{bottom:140.800000pt;}
.y64_c00208{bottom:141.440000pt;}
.y63_c00208{bottom:142.080000pt;}
.y66_c00208{bottom:142.720000pt;}
.y62_c00208{bottom:189.440000pt;}
.y61_c00208{bottom:192.000000pt;}
.y5e_c00208{bottom:227.840000pt;}
.y5d_c00208{bottom:228.480000pt;}
.y60_c00208{bottom:229.120000pt;}
.y5f_c00208{bottom:229.760000pt;}
.y5c_c00208{bottom:230.400000pt;}
.y5b_c00208{bottom:231.040000pt;}
.y57_c00208{bottom:264.960000pt;}
.y5a_c00208{bottom:266.240000pt;}
.y56_c00208{bottom:266.880000pt;}
.y58_c00208{bottom:267.520000pt;}
.y59_c00208{bottom:268.160000pt;}
.y55_c00208{bottom:303.360000pt;}
.y52_c00208{bottom:304.000000pt;}
.y54_c00208{bottom:304.640000pt;}
.y53_c00208{bottom:305.280000pt;}
.y51_c00208{bottom:307.200000pt;}
.y4e_c00208{bottom:341.120000pt;}
.y4d_c00208{bottom:341.760000pt;}
.y50_c00208{bottom:342.400000pt;}
.y4f_c00208{bottom:343.680000pt;}
.y4c_c00208{bottom:344.320000pt;}
.y4b_c00208{bottom:344.960000pt;}
.y48_c00208{bottom:380.160000pt;}
.y49_c00208{bottom:380.800000pt;}
.y45_c00208{bottom:381.440000pt;}
.y46_c00208{bottom:382.080000pt;}
.y47_c00208{bottom:382.720000pt;}
.y4a_c00208{bottom:384.000000pt;}
.y43_c00208{bottom:417.920000pt;}
.y42_c00208{bottom:418.560000pt;}
.y44_c00208{bottom:419.200000pt;}
.y41_c00208{bottom:420.480000pt;}
.y40_c00208{bottom:421.120000pt;}
.y3f_c00208{bottom:421.760000pt;}
.y3d_c00208{bottom:456.320000pt;}
.y3c_c00208{bottom:456.960000pt;}
.y3e_c00208{bottom:457.600000pt;}
.y3b_c00208{bottom:458.880000pt;}
.y3a_c00208{bottom:459.520000pt;}
.y38_c00208{bottom:494.720000pt;}
.y37_c00208{bottom:497.280000pt;}
.y39_c00208{bottom:497.920000pt;}
.y34_c00208{bottom:532.480000pt;}
.y36_c00208{bottom:533.120000pt;}
.y31_c00208{bottom:533.760000pt;}
.y33_c00208{bottom:535.040000pt;}
.y32_c00208{bottom:535.680000pt;}
.y35_c00208{bottom:536.320000pt;}
.y2f_c00208{bottom:570.880000pt;}
.y2e_c00208{bottom:571.520000pt;}
.y2d_c00208{bottom:573.440000pt;}
.y30_c00208{bottom:574.080000pt;}
.y2c_c00208{bottom:609.920000pt;}
.y2a_c00208{bottom:610.560000pt;}
.y28_c00208{bottom:611.200000pt;}
.y29_c00208{bottom:611.840000pt;}
.y2b_c00208{bottom:612.480000pt;}
.y25_c00208{bottom:649.600000pt;}
.y27_c00208{bottom:650.240000pt;}
.y26_c00208{bottom:650.880000pt;}
.y24_c00208{bottom:686.080000pt;}
.y22_c00208{bottom:686.720000pt;}
.y20_c00208{bottom:687.360000pt;}
.y23_c00208{bottom:688.640000pt;}
.y21_c00208{bottom:689.280000pt;}
.y1d_c00208{bottom:734.080000pt;}
.y1f_c00208{bottom:735.360000pt;}
.y1c_c00208{bottom:736.640000pt;}
.y1e_c00208{bottom:737.280000pt;}
.y19_c00208{bottom:772.480000pt;}
.y18_c00208{bottom:773.760000pt;}
.y1b_c00208{bottom:774.400000pt;}
.y17_c00208{bottom:775.040000pt;}
.y1a_c00208{bottom:775.680000pt;}
.y15_c00208{bottom:810.880000pt;}
.y14_c00208{bottom:811.520000pt;}
.y11_c00208{bottom:812.800000pt;}
.y12_c00208{bottom:813.440000pt;}
.y16_c00208{bottom:814.080000pt;}
.y13_c00208{bottom:814.720000pt;}
.y10_c00208{bottom:849.920000pt;}
.ye_c00208{bottom:851.200000pt;}
.yf_c00208{bottom:851.840000pt;}
.yd_c00208{bottom:886.400000pt;}
.yc_c00208{bottom:887.040000pt;}
.yb_c00208{bottom:887.680000pt;}
.ya_c00208{bottom:888.320000pt;}
.y9_c00208{bottom:888.960000pt;}
.y7_c00208{bottom:889.600000pt;}
.y8_c00208{bottom:890.880000pt;}
.y4_c00208{bottom:926.080000pt;}
.y2_c00208{bottom:927.360000pt;}
.y6_c00208{bottom:928.000000pt;}
.y5_c00208{bottom:928.640000pt;}
.y1_c00208{bottom:929.280000pt;}
.y3_c00208{bottom:929.920000pt;}
.y76_c00208{bottom:972.160000pt;}
.hf_c00208{height:23.037500pt;}
.hd_c00208{height:27.645000pt;}
.hb_c00208{height:29.948750pt;}
.hc_c00208{height:32.252500pt;}
.he_c00208{height:34.556250pt;}
.h2_c00208{height:36.860000pt;}
.h8_c00208{height:39.163750pt;}
.h4_c00208{height:41.467500pt;}
.h6_c00208{height:43.771250pt;}
.h5_c00208{height:46.075000pt;}
.h7_c00208{height:48.378750pt;}
.h3_c00208{height:50.682500pt;}
.ha_c00208{height:52.986250pt;}
.h9_c00208{height:55.290000pt;}
.h11_c00208{height:57.593750pt;}
.h10_c00208{height:59.897500pt;}
.h12_c00208{height:62.201250pt;}
.h1_c00208{height:1016.000000pt;}
.h0_c00208{height:1016.320000pt;}
.w1_c00208{width:698.666667pt;}
.w0_c00208{width:698.880000pt;}
.x0_c00208{left:0.000000pt;}
.x9_c00208{left:60.160000pt;}
.x46_c00208{left:61.440000pt;}
.x12_c00208{left:88.320000pt;}
.xa_c00208{left:96.640000pt;}
.x54_c00208{left:97.920000pt;}
.x47_c00208{left:105.600000pt;}
.x33_c00208{left:115.200000pt;}
.x40_c00208{left:126.080000pt;}
.x34_c00208{left:134.400000pt;}
.x28_c00208{left:135.680000pt;}
.x2d_c00208{left:144.640000pt;}
.x56_c00208{left:152.320000pt;}
.x38_c00208{left:154.240000pt;}
.x1_c00208{left:155.520000pt;}
.x41_c00208{left:163.200000pt;}
.x19_c00208{left:164.480000pt;}
.x24_c00208{left:172.800000pt;}
.x20_c00208{left:174.720000pt;}
.x2_c00208{left:183.040000pt;}
.x42_c00208{left:192.000000pt;}
.xb_c00208{left:193.920000pt;}
.x29_c00208{left:203.520000pt;}
.x35_c00208{left:211.200000pt;}
.x25_c00208{left:212.480000pt;}
.x39_c00208{left:221.440000pt;}
.x13_c00208{left:231.040000pt;}
.x1a_c00208{left:232.320000pt;}
.x57_c00208{left:240.000000pt;}
.x2e_c00208{left:241.280000pt;}
.x4a_c00208{left:250.240000pt;}
.x3a_c00208{left:259.840000pt;}
.x3_c00208{left:261.120000pt;}
.x58_c00208{left:278.400000pt;}
.xc_c00208{left:280.320000pt;}
.x2f_c00208{left:288.000000pt;}
.x4e_c00208{left:297.600000pt;}
.x4_c00208{left:299.520000pt;}
.x21_c00208{left:307.840000pt;}
.x2a_c00208{left:309.120000pt;}
.x1b_c00208{left:318.080000pt;}
.xd_c00208{left:319.360000pt;}
.x3b_c00208{left:327.040000pt;}
.x30_c00208{left:336.640000pt;}
.x3c_c00208{left:346.240000pt;}
.x14_c00208{left:347.520000pt;}
.x5b_c00208{left:354.560000pt;}
.x1c_c00208{left:356.480000pt;}
.x3d_c00208{left:365.440000pt;}
.x5_c00208{left:366.720000pt;}
.x22_c00208{left:375.040000pt;}
.x15_c00208{left:376.320000pt;}
.x43_c00208{left:384.640000pt;}
.xe_c00208{left:385.920000pt;}
.x5c_c00208{left:392.960000pt;}
.x2b_c00208{left:394.240000pt;}
.x1d_c00208{left:395.520000pt;}
.x4f_c00208{left:403.200000pt;}
.x51_c00208{left:405.120000pt;}
.x36_c00208{left:413.440000pt;}
.x6_c00208{left:414.720000pt;}
.x1e_c00208{left:423.040000pt;}
.x23_c00208{left:432.640000pt;}
.x26_c00208{left:433.920000pt;}
.x4b_c00208{left:441.600000pt;}
.x7_c00208{left:442.880000pt;}
.x16_c00208{left:444.160000pt;}
.x3e_c00208{left:451.840000pt;}
.x37_c00208{left:461.440000pt;}
.x55_c00208{left:462.720000pt;}
.x17_c00208{left:472.320000pt;}
.x31_c00208{left:480.000000pt;}
.xf_c00208{left:481.280000pt;}
.x44_c00208{left:489.600000pt;}
.x50_c00208{left:490.880000pt;}
.x4c_c00208{left:499.200000pt;}
.x3f_c00208{left:508.800000pt;}
.x52_c00208{left:518.400000pt;}
.x10_c00208{left:519.680000pt;}
.x5a_c00208{left:527.360000pt;}
.x1f_c00208{left:528.640000pt;}
.x59_c00208{left:537.600000pt;}
.x45_c00208{left:547.200000pt;}
.x48_c00208{left:548.480000pt;}
.x32_c00208{left:556.800000pt;}
.x8_c00208{left:558.080000pt;}
.x49_c00208{left:566.400000pt;}
.x18_c00208{left:576.640000pt;}
.x2c_c00208{left:577.920000pt;}
.x4d_c00208{left:584.960000pt;}
.x27_c00208{left:586.240000pt;}
.x53_c00208{left:593.920000pt;}
.x11_c00208{left:595.840000pt;}
.x5d_c00208{left:622.080000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ee2c0fdf89bd11747e6b8da4.woff2')format("woff");}.ff1_c00209{font-family:ff1_c00209;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3d_c00209{transform:matrix(0.200725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200725,0.000000,0.000000,0.250000,0,0);}
.m51_c00209{transform:matrix(0.241975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241975,0.000000,0.000000,0.250000,0,0);}
.m57_c00209{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);}
.m5c_c00209{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m11_c00209{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m65_c00209{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m0_c00209{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);}
.m55_c00209{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00209{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00209{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m17_c00209{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m67_c00209{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m61_c00209{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m66_c00209{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m44_c00209{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m62_c00209{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00209{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m42_c00209{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00209{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m40_c00209{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00209{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m29_c00209{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m63_c00209{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mc_c00209{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m45_c00209{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m9_c00209{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m6_c00209{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m31_c00209{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);}
.m41_c00209{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);}
.m38_c00209{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.ma_c00209{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m15_c00209{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m2_c00209{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);}
.m2f_c00209{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m7_c00209{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);}
.m32_c00209{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00209{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);}
.m10_c00209{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);}
.m48_c00209{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00209{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m8_c00209{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);}
.m2c_c00209{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m12_c00209{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m47_c00209{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m3_c00209{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00209{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);}
.md_c00209{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m1_c00209{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);}
.m64_c00209{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00209{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m60_c00209{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m13_c00209{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00209{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m35_c00209{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);}
.mf_c00209{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m23_c00209{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);}
.m18_c00209{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);}
.m16_c00209{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m56_c00209{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m27_c00209{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m50_c00209{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);}
.m4b_c00209{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m53_c00209{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00209{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);}
.m54_c00209{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m14_c00209{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);}
.m24_c00209{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00209{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m22_c00209{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00209{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.me_c00209{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);}
.m52_c00209{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m25_c00209{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00209{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m28_c00209{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00209{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m49_c00209{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00209{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m39_c00209{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);}
.m1b_c00209{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);}
.mb_c00209{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m19_c00209{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00209{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00209{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m5_c00209{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);}
.m1c_c00209{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00209{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m59_c00209{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00209{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m21_c00209{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);}
.m5b_c00209{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);}
.m20_c00209{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00209{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m37_c00209{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m30_c00209{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m46_c00209{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m34_c00209{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m26_c00209{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);}
.m3e_c00209{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m58_c00209{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m4_c00209{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m36_c00209{transform:matrix(0.785000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.785000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.785000,0.000000,0.000000,0.250000,0,0);}
.m33_c00209{transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);}
.m43_c00209{transform:matrix(0.982500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.982500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.982500,0.000000,0.000000,0.250000,0,0);}
.v0_c00209{vertical-align:0.000000px;}
.v1_c00209{vertical-align:2.880000px;}
.v2_c00209{vertical-align:5.760000px;}
.v3_c00209{vertical-align:8.640000px;}
.ls1_c00209{letter-spacing:0.000000px;}
.ls0_c00209{letter-spacing:23.040000px;}
.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;}
}
.ws2_c00209{word-spacing:0.000000px;}
.ws0_c00209{word-spacing:2.647200px;}
.ws1_c00209{word-spacing:6.726720px;}
.fc0_c00209{color:transparent;}
.fsf_c00209{font-size:23.040000px;}
.fsd_c00209{font-size:28.800000px;}
.fs2_c00209{font-size:34.560000px;}
.fsa_c00209{font-size:37.440000px;}
.fs6_c00209{font-size:40.320000px;}
.fsc_c00209{font-size:43.200000px;}
.fs9_c00209{font-size:46.080000px;}
.fs5_c00209{font-size:48.960000px;}
.fs1_c00209{font-size:51.840000px;}
.fs7_c00209{font-size:54.720000px;}
.fsb_c00209{font-size:57.600000px;}
.fs4_c00209{font-size:60.480000px;}
.fs3_c00209{font-size:63.360000px;}
.fs8_c00209{font-size:66.240000px;}
.fse_c00209{font-size:69.120000px;}
.fs0_c00209{font-size:74.880000px;}
.fs10_c00209{font-size:77.760000px;}
.y0_c00209{bottom:0.000000px;}
.y7c_c00209{bottom:43.200000px;}
.y7b_c00209{bottom:43.920000px;}
.y7a_c00209{bottom:44.640000px;}
.y7d_c00209{bottom:46.080000px;}
.y79_c00209{bottom:47.520000px;}
.y78_c00209{bottom:48.960000px;}
.y75_c00209{bottom:84.960000px;}
.y72_c00209{bottom:86.400000px;}
.y76_c00209{bottom:87.120000px;}
.y74_c00209{bottom:87.840000px;}
.y73_c00209{bottom:88.560000px;}
.y77_c00209{bottom:89.280000px;}
.y6e_c00209{bottom:130.320000px;}
.y6f_c00209{bottom:131.040000px;}
.y70_c00209{bottom:132.480000px;}
.y6d_c00209{bottom:133.200000px;}
.y71_c00209{bottom:133.920000px;}
.y6c_c00209{bottom:134.640000px;}
.y68_c00209{bottom:172.080000px;}
.y6a_c00209{bottom:172.800000px;}
.y69_c00209{bottom:174.240000px;}
.y67_c00209{bottom:174.960000px;}
.y66_c00209{bottom:175.680000px;}
.y6b_c00209{bottom:176.400000px;}
.y65_c00209{bottom:215.280000px;}
.y63_c00209{bottom:216.720000px;}
.y64_c00209{bottom:218.160000px;}
.y62_c00209{bottom:219.600000px;}
.y5e_c00209{bottom:258.480000px;}
.y61_c00209{bottom:259.920000px;}
.y5d_c00209{bottom:260.640000px;}
.y5f_c00209{bottom:261.360000px;}
.y60_c00209{bottom:262.080000px;}
.y5a_c00209{bottom:300.960000px;}
.y59_c00209{bottom:301.680000px;}
.y5b_c00209{bottom:303.840000px;}
.y58_c00209{bottom:304.560000px;}
.y5c_c00209{bottom:306.000000px;}
.y56_c00209{bottom:344.160000px;}
.y57_c00209{bottom:346.320000px;}
.y55_c00209{bottom:347.760000px;}
.y54_c00209{bottom:348.480000px;}
.y53_c00209{bottom:349.200000px;}
.y51_c00209{bottom:387.360000px;}
.y52_c00209{bottom:388.080000px;}
.y4e_c00209{bottom:389.520000px;}
.y4f_c00209{bottom:390.240000px;}
.y50_c00209{bottom:390.960000px;}
.y4b_c00209{bottom:431.280000px;}
.y4c_c00209{bottom:432.720000px;}
.y4a_c00209{bottom:433.440000px;}
.y4d_c00209{bottom:434.160000px;}
.y49_c00209{bottom:434.880000px;}
.y46_c00209{bottom:473.760000px;}
.y44_c00209{bottom:474.480000px;}
.y45_c00209{bottom:475.200000px;}
.y47_c00209{bottom:476.640000px;}
.y48_c00209{bottom:477.360000px;}
.y43_c00209{bottom:519.840000px;}
.y42_c00209{bottom:520.560000px;}
.y41_c00209{bottom:521.280000px;}
.y3e_c00209{bottom:571.680000px;}
.y3d_c00209{bottom:572.400000px;}
.y3f_c00209{bottom:574.560000px;}
.y3c_c00209{bottom:575.280000px;}
.y40_c00209{bottom:576.000000px;}
.y3b_c00209{bottom:614.880000px;}
.y3a_c00209{bottom:615.600000px;}
.y36_c00209{bottom:616.320000px;}
.y38_c00209{bottom:617.040000px;}
.y37_c00209{bottom:617.760000px;}
.y39_c00209{bottom:618.480000px;}
.y34_c00209{bottom:658.080000px;}
.y30_c00209{bottom:658.800000px;}
.y33_c00209{bottom:659.520000px;}
.y32_c00209{bottom:660.960000px;}
.y31_c00209{bottom:661.680000px;}
.y35_c00209{bottom:662.400000px;}
.y2f_c00209{bottom:701.280000px;}
.y2d_c00209{bottom:702.000000px;}
.y2c_c00209{bottom:703.440000px;}
.y2b_c00209{bottom:704.160000px;}
.y2e_c00209{bottom:704.880000px;}
.y28_c00209{bottom:744.480000px;}
.y2a_c00209{bottom:745.200000px;}
.y27_c00209{bottom:747.360000px;}
.y29_c00209{bottom:748.080000px;}
.y22_c00209{bottom:787.680000px;}
.y25_c00209{bottom:789.120000px;}
.y26_c00209{bottom:789.840000px;}
.y23_c00209{bottom:790.560000px;}
.y24_c00209{bottom:791.280000px;}
.y1d_c00209{bottom:830.880000px;}
.y20_c00209{bottom:831.600000px;}
.y21_c00209{bottom:833.040000px;}
.y1f_c00209{bottom:833.760000px;}
.y1e_c00209{bottom:834.480000px;}
.y1c_c00209{bottom:873.360000px;}
.y1a_c00209{bottom:874.080000px;}
.y18_c00209{bottom:876.240000px;}
.y1b_c00209{bottom:876.960000px;}
.y19_c00209{bottom:877.680000px;}
.y12_c00209{bottom:915.840000px;}
.y14_c00209{bottom:917.280000px;}
.y16_c00209{bottom:918.000000px;}
.y17_c00209{bottom:918.720000px;}
.y15_c00209{bottom:919.440000px;}
.y13_c00209{bottom:920.160000px;}
.y11_c00209{bottom:959.040000px;}
.yd_c00209{bottom:959.760000px;}
.ye_c00209{bottom:960.480000px;}
.yf_c00209{bottom:961.200000px;}
.yc_c00209{bottom:961.920000px;}
.y10_c00209{bottom:962.640000px;}
.yb_c00209{bottom:1002.240000px;}
.y9_c00209{bottom:1002.960000px;}
.y8_c00209{bottom:1005.120000px;}
.ya_c00209{bottom:1005.840000px;}
.y6_c00209{bottom:1045.440000px;}
.y2_c00209{bottom:1047.600000px;}
.y7_c00209{bottom:1048.320000px;}
.y3_c00209{bottom:1049.040000px;}
.y4_c00209{bottom:1049.760000px;}
.y5_c00209{bottom:1050.480000px;}
.y1_c00209{bottom:1102.320000px;}
.h14_c00209{height:20.733750px;}
.h11_c00209{height:25.917187px;}
.h5_c00209{height:31.100625px;}
.hd_c00209{height:33.692344px;}
.h9_c00209{height:36.284062px;}
.hf_c00209{height:38.875781px;}
.hc_c00209{height:41.467500px;}
.h8_c00209{height:44.059219px;}
.h3_c00209{height:46.650937px;}
.ha_c00209{height:49.242656px;}
.h4_c00209{height:49.530938px;}
.he_c00209{height:51.834375px;}
.h7_c00209{height:54.426094px;}
.h13_c00209{height:55.290937px;}
.h6_c00209{height:57.017812px;}
.hb_c00209{height:59.609531px;}
.h12_c00209{height:62.201250px;}
.h10_c00209{height:62.777813px;}
.h2_c00209{height:67.384687px;}
.h15_c00209{height:69.976406px;}
.h1_c00209{height:1149.750000px;}
.h0_c00209{height:1149.840000px;}
.w0_c00209{width:794.880000px;}
.w1_c00209{width:795.000000px;}
.x0_c00209{left:0.000000px;}
.x2_c00209{left:75.600000px;}
.x1b_c00209{left:77.760000px;}
.x55_c00209{left:79.200000px;}
.x59_c00209{left:80.640000px;}
.x47_c00209{left:97.200000px;}
.xc_c00209{left:108.000000px;}
.x45_c00209{left:110.160000px;}
.x3_c00209{left:118.800000px;}
.x56_c00209{left:120.240000px;}
.x3e_c00209{left:128.880000px;}
.x53_c00209{left:131.040000px;}
.x4a_c00209{left:139.680000px;}
.x3a_c00209{left:141.120000px;}
.xd_c00209{left:151.200000px;}
.x29_c00209{left:162.000000px;}
.x3f_c00209{left:163.440000px;}
.x57_c00209{left:171.360000px;}
.x36_c00209{left:172.800000px;}
.x2a_c00209{left:183.600000px;}
.xe_c00209{left:194.400000px;}
.x41_c00209{left:203.040000px;}
.x37_c00209{left:205.920000px;}
.x44_c00209{left:214.560000px;}
.x4_c00209{left:216.000000px;}
.x23_c00209{left:226.080000px;}
.x3b_c00209{left:228.240000px;}
.x32_c00209{left:236.160000px;}
.x38_c00209{left:237.600000px;}
.x24_c00209{left:249.120000px;}
.x2e_c00209{left:259.200000px;}
.x16_c00209{left:270.000000px;}
.x33_c00209{left:272.160000px;}
.xf_c00209{left:280.800000px;}
.x5_c00209{left:291.600000px;}
.x1c_c00209{left:302.400000px;}
.x34_c00209{left:303.840000px;}
.x25_c00209{left:313.200000px;}
.x58_c00209{left:323.280000px;}
.x10_c00209{left:324.720000px;}
.x6_c00209{left:334.800000px;}
.x17_c00209{left:344.880000px;}
.x46_c00209{left:356.400000px;}
.x1d_c00209{left:357.840000px;}
.x7_c00209{left:367.920000px;}
.x4b_c00209{left:378.000000px;}
.x3c_c00209{left:380.160000px;}
.x11_c00209{left:388.800000px;}
.x4f_c00209{left:390.240000px;}
.x40_c00209{left:398.160000px;}
.x18_c00209{left:399.600000px;}
.x2b_c00209{left:411.120000px;}
.x12_c00209{left:421.200000px;}
.x39_c00209{left:432.000000px;}
.x1e_c00209{left:442.800000px;}
.x19_c00209{left:454.320000px;}
.x4c_c00209{left:464.400000px;}
.x8_c00209{left:465.840000px;}
.x26_c00209{left:475.200000px;}
.x48_c00209{left:486.000000px;}
.x1f_c00209{left:496.800000px;}
.x2f_c00209{left:508.320000px;}
.x5a_c00209{left:509.760000px;}
.x13_c00209{left:519.120000px;}
.x4d_c00209{left:528.480000px;}
.x9_c00209{left:540.000000px;}
.x3d_c00209{left:541.440000px;}
.x20_c00209{left:550.800000px;}
.x42_c00209{left:552.240000px;}
.x43_c00209{left:560.880000px;}
.x1a_c00209{left:562.320000px;}
.x50_c00209{left:570.960000px;}
.x14_c00209{left:572.400000px;}
.x21_c00209{left:583.920000px;}
.x27_c00209{left:594.000000px;}
.xa_c00209{left:605.520000px;}
.x51_c00209{left:609.120000px;}
.x49_c00209{left:614.880000px;}
.x2c_c00209{left:624.960000px;}
.x35_c00209{left:626.400000px;}
.x28_c00209{left:637.200000px;}
.x30_c00209{left:638.640000px;}
.x15_c00209{left:648.000000px;}
.x5b_c00209{left:658.800000px;}
.xb_c00209{left:669.600000px;}
.x52_c00209{left:671.040000px;}
.x4e_c00209{left:678.240000px;}
.x22_c00209{left:679.680000px;}
.x31_c00209{left:681.120000px;}
.x54_c00209{left:689.760000px;}
.x2d_c00209{left:691.200000px;}
.x1_c00209{left:704.880000px;}
@media print{
.v0_c00209{vertical-align:0.000000pt;}
.v1_c00209{vertical-align:2.560000pt;}
.v2_c00209{vertical-align:5.120000pt;}
.v3_c00209{vertical-align:7.680000pt;}
.ls1_c00209{letter-spacing:0.000000pt;}
.ls0_c00209{letter-spacing:20.480000pt;}
.ws2_c00209{word-spacing:0.000000pt;}
.ws0_c00209{word-spacing:2.353067pt;}
.ws1_c00209{word-spacing:5.979307pt;}
.fsf_c00209{font-size:20.480000pt;}
.fsd_c00209{font-size:25.600000pt;}
.fs2_c00209{font-size:30.720000pt;}
.fsa_c00209{font-size:33.280000pt;}
.fs6_c00209{font-size:35.840000pt;}
.fsc_c00209{font-size:38.400000pt;}
.fs9_c00209{font-size:40.960000pt;}
.fs5_c00209{font-size:43.520000pt;}
.fs1_c00209{font-size:46.080000pt;}
.fs7_c00209{font-size:48.640000pt;}
.fsb_c00209{font-size:51.200000pt;}
.fs4_c00209{font-size:53.760000pt;}
.fs3_c00209{font-size:56.320000pt;}
.fs8_c00209{font-size:58.880000pt;}
.fse_c00209{font-size:61.440000pt;}
.fs0_c00209{font-size:66.560000pt;}
.fs10_c00209{font-size:69.120000pt;}
.y0_c00209{bottom:0.000000pt;}
.y7c_c00209{bottom:38.400000pt;}
.y7b_c00209{bottom:39.040000pt;}
.y7a_c00209{bottom:39.680000pt;}
.y7d_c00209{bottom:40.960000pt;}
.y79_c00209{bottom:42.240000pt;}
.y78_c00209{bottom:43.520000pt;}
.y75_c00209{bottom:75.520000pt;}
.y72_c00209{bottom:76.800000pt;}
.y76_c00209{bottom:77.440000pt;}
.y74_c00209{bottom:78.080000pt;}
.y73_c00209{bottom:78.720000pt;}
.y77_c00209{bottom:79.360000pt;}
.y6e_c00209{bottom:115.840000pt;}
.y6f_c00209{bottom:116.480000pt;}
.y70_c00209{bottom:117.760000pt;}
.y6d_c00209{bottom:118.400000pt;}
.y71_c00209{bottom:119.040000pt;}
.y6c_c00209{bottom:119.680000pt;}
.y68_c00209{bottom:152.960000pt;}
.y6a_c00209{bottom:153.600000pt;}
.y69_c00209{bottom:154.880000pt;}
.y67_c00209{bottom:155.520000pt;}
.y66_c00209{bottom:156.160000pt;}
.y6b_c00209{bottom:156.800000pt;}
.y65_c00209{bottom:191.360000pt;}
.y63_c00209{bottom:192.640000pt;}
.y64_c00209{bottom:193.920000pt;}
.y62_c00209{bottom:195.200000pt;}
.y5e_c00209{bottom:229.760000pt;}
.y61_c00209{bottom:231.040000pt;}
.y5d_c00209{bottom:231.680000pt;}
.y5f_c00209{bottom:232.320000pt;}
.y60_c00209{bottom:232.960000pt;}
.y5a_c00209{bottom:267.520000pt;}
.y59_c00209{bottom:268.160000pt;}
.y5b_c00209{bottom:270.080000pt;}
.y58_c00209{bottom:270.720000pt;}
.y5c_c00209{bottom:272.000000pt;}
.y56_c00209{bottom:305.920000pt;}
.y57_c00209{bottom:307.840000pt;}
.y55_c00209{bottom:309.120000pt;}
.y54_c00209{bottom:309.760000pt;}
.y53_c00209{bottom:310.400000pt;}
.y51_c00209{bottom:344.320000pt;}
.y52_c00209{bottom:344.960000pt;}
.y4e_c00209{bottom:346.240000pt;}
.y4f_c00209{bottom:346.880000pt;}
.y50_c00209{bottom:347.520000pt;}
.y4b_c00209{bottom:383.360000pt;}
.y4c_c00209{bottom:384.640000pt;}
.y4a_c00209{bottom:385.280000pt;}
.y4d_c00209{bottom:385.920000pt;}
.y49_c00209{bottom:386.560000pt;}
.y46_c00209{bottom:421.120000pt;}
.y44_c00209{bottom:421.760000pt;}
.y45_c00209{bottom:422.400000pt;}
.y47_c00209{bottom:423.680000pt;}
.y48_c00209{bottom:424.320000pt;}
.y43_c00209{bottom:462.080000pt;}
.y42_c00209{bottom:462.720000pt;}
.y41_c00209{bottom:463.360000pt;}
.y3e_c00209{bottom:508.160000pt;}
.y3d_c00209{bottom:508.800000pt;}
.y3f_c00209{bottom:510.720000pt;}
.y3c_c00209{bottom:511.360000pt;}
.y40_c00209{bottom:512.000000pt;}
.y3b_c00209{bottom:546.560000pt;}
.y3a_c00209{bottom:547.200000pt;}
.y36_c00209{bottom:547.840000pt;}
.y38_c00209{bottom:548.480000pt;}
.y37_c00209{bottom:549.120000pt;}
.y39_c00209{bottom:549.760000pt;}
.y34_c00209{bottom:584.960000pt;}
.y30_c00209{bottom:585.600000pt;}
.y33_c00209{bottom:586.240000pt;}
.y32_c00209{bottom:587.520000pt;}
.y31_c00209{bottom:588.160000pt;}
.y35_c00209{bottom:588.800000pt;}
.y2f_c00209{bottom:623.360000pt;}
.y2d_c00209{bottom:624.000000pt;}
.y2c_c00209{bottom:625.280000pt;}
.y2b_c00209{bottom:625.920000pt;}
.y2e_c00209{bottom:626.560000pt;}
.y28_c00209{bottom:661.760000pt;}
.y2a_c00209{bottom:662.400000pt;}
.y27_c00209{bottom:664.320000pt;}
.y29_c00209{bottom:664.960000pt;}
.y22_c00209{bottom:700.160000pt;}
.y25_c00209{bottom:701.440000pt;}
.y26_c00209{bottom:702.080000pt;}
.y23_c00209{bottom:702.720000pt;}
.y24_c00209{bottom:703.360000pt;}
.y1d_c00209{bottom:738.560000pt;}
.y20_c00209{bottom:739.200000pt;}
.y21_c00209{bottom:740.480000pt;}
.y1f_c00209{bottom:741.120000pt;}
.y1e_c00209{bottom:741.760000pt;}
.y1c_c00209{bottom:776.320000pt;}
.y1a_c00209{bottom:776.960000pt;}
.y18_c00209{bottom:778.880000pt;}
.y1b_c00209{bottom:779.520000pt;}
.y19_c00209{bottom:780.160000pt;}
.y12_c00209{bottom:814.080000pt;}
.y14_c00209{bottom:815.360000pt;}
.y16_c00209{bottom:816.000000pt;}
.y17_c00209{bottom:816.640000pt;}
.y15_c00209{bottom:817.280000pt;}
.y13_c00209{bottom:817.920000pt;}
.y11_c00209{bottom:852.480000pt;}
.yd_c00209{bottom:853.120000pt;}
.ye_c00209{bottom:853.760000pt;}
.yf_c00209{bottom:854.400000pt;}
.yc_c00209{bottom:855.040000pt;}
.y10_c00209{bottom:855.680000pt;}
.yb_c00209{bottom:890.880000pt;}
.y9_c00209{bottom:891.520000pt;}
.y8_c00209{bottom:893.440000pt;}
.ya_c00209{bottom:894.080000pt;}
.y6_c00209{bottom:929.280000pt;}
.y2_c00209{bottom:931.200000pt;}
.y7_c00209{bottom:931.840000pt;}
.y3_c00209{bottom:932.480000pt;}
.y4_c00209{bottom:933.120000pt;}
.y5_c00209{bottom:933.760000pt;}
.y1_c00209{bottom:979.840000pt;}
.h14_c00209{height:18.430000pt;}
.h11_c00209{height:23.037500pt;}
.h5_c00209{height:27.645000pt;}
.hd_c00209{height:29.948750pt;}
.h9_c00209{height:32.252500pt;}
.hf_c00209{height:34.556250pt;}
.hc_c00209{height:36.860000pt;}
.h8_c00209{height:39.163750pt;}
.h3_c00209{height:41.467500pt;}
.ha_c00209{height:43.771250pt;}
.h4_c00209{height:44.027500pt;}
.he_c00209{height:46.075000pt;}
.h7_c00209{height:48.378750pt;}
.h13_c00209{height:49.147500pt;}
.h6_c00209{height:50.682500pt;}
.hb_c00209{height:52.986250pt;}
.h12_c00209{height:55.290000pt;}
.h10_c00209{height:55.802500pt;}
.h2_c00209{height:59.897500pt;}
.h15_c00209{height:62.201250pt;}
.h1_c00209{height:1022.000000pt;}
.h0_c00209{height:1022.080000pt;}
.w0_c00209{width:706.560000pt;}
.w1_c00209{width:706.666667pt;}
.x0_c00209{left:0.000000pt;}
.x2_c00209{left:67.200000pt;}
.x1b_c00209{left:69.120000pt;}
.x55_c00209{left:70.400000pt;}
.x59_c00209{left:71.680000pt;}
.x47_c00209{left:86.400000pt;}
.xc_c00209{left:96.000000pt;}
.x45_c00209{left:97.920000pt;}
.x3_c00209{left:105.600000pt;}
.x56_c00209{left:106.880000pt;}
.x3e_c00209{left:114.560000pt;}
.x53_c00209{left:116.480000pt;}
.x4a_c00209{left:124.160000pt;}
.x3a_c00209{left:125.440000pt;}
.xd_c00209{left:134.400000pt;}
.x29_c00209{left:144.000000pt;}
.x3f_c00209{left:145.280000pt;}
.x57_c00209{left:152.320000pt;}
.x36_c00209{left:153.600000pt;}
.x2a_c00209{left:163.200000pt;}
.xe_c00209{left:172.800000pt;}
.x41_c00209{left:180.480000pt;}
.x37_c00209{left:183.040000pt;}
.x44_c00209{left:190.720000pt;}
.x4_c00209{left:192.000000pt;}
.x23_c00209{left:200.960000pt;}
.x3b_c00209{left:202.880000pt;}
.x32_c00209{left:209.920000pt;}
.x38_c00209{left:211.200000pt;}
.x24_c00209{left:221.440000pt;}
.x2e_c00209{left:230.400000pt;}
.x16_c00209{left:240.000000pt;}
.x33_c00209{left:241.920000pt;}
.xf_c00209{left:249.600000pt;}
.x5_c00209{left:259.200000pt;}
.x1c_c00209{left:268.800000pt;}
.x34_c00209{left:270.080000pt;}
.x25_c00209{left:278.400000pt;}
.x58_c00209{left:287.360000pt;}
.x10_c00209{left:288.640000pt;}
.x6_c00209{left:297.600000pt;}
.x17_c00209{left:306.560000pt;}
.x46_c00209{left:316.800000pt;}
.x1d_c00209{left:318.080000pt;}
.x7_c00209{left:327.040000pt;}
.x4b_c00209{left:336.000000pt;}
.x3c_c00209{left:337.920000pt;}
.x11_c00209{left:345.600000pt;}
.x4f_c00209{left:346.880000pt;}
.x40_c00209{left:353.920000pt;}
.x18_c00209{left:355.200000pt;}
.x2b_c00209{left:365.440000pt;}
.x12_c00209{left:374.400000pt;}
.x39_c00209{left:384.000000pt;}
.x1e_c00209{left:393.600000pt;}
.x19_c00209{left:403.840000pt;}
.x4c_c00209{left:412.800000pt;}
.x8_c00209{left:414.080000pt;}
.x26_c00209{left:422.400000pt;}
.x48_c00209{left:432.000000pt;}
.x1f_c00209{left:441.600000pt;}
.x2f_c00209{left:451.840000pt;}
.x5a_c00209{left:453.120000pt;}
.x13_c00209{left:461.440000pt;}
.x4d_c00209{left:469.760000pt;}
.x9_c00209{left:480.000000pt;}
.x3d_c00209{left:481.280000pt;}
.x20_c00209{left:489.600000pt;}
.x42_c00209{left:490.880000pt;}
.x43_c00209{left:498.560000pt;}
.x1a_c00209{left:499.840000pt;}
.x50_c00209{left:507.520000pt;}
.x14_c00209{left:508.800000pt;}
.x21_c00209{left:519.040000pt;}
.x27_c00209{left:528.000000pt;}
.xa_c00209{left:538.240000pt;}
.x51_c00209{left:541.440000pt;}
.x49_c00209{left:546.560000pt;}
.x2c_c00209{left:555.520000pt;}
.x35_c00209{left:556.800000pt;}
.x28_c00209{left:566.400000pt;}
.x30_c00209{left:567.680000pt;}
.x15_c00209{left:576.000000pt;}
.x5b_c00209{left:585.600000pt;}
.xb_c00209{left:595.200000pt;}
.x52_c00209{left:596.480000pt;}
.x4e_c00209{left:602.880000pt;}
.x22_c00209{left:604.160000pt;}
.x31_c00209{left:605.440000pt;}
.x54_c00209{left:613.120000pt;}
.x2d_c00209{left:614.400000pt;}
.x1_c00209{left:626.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_dc3c10c3f82545a05b39957a.woff2')format("woff");}.ff1_c00210{font-family:ff1_c00210;line-height:1.109863;font-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_c00210{transform:matrix(0.179725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179725,0.000000,0.000000,0.250000,0,0);}
.m1f_c00210{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);}
.m57_c00210{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00210{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);}
.m40_c00210{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00210{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m47_c00210{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m45_c00210{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m54_c00210{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m48_c00210{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00210{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00210{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00210{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m12_c00210{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m39_c00210{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00210{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m52_c00210{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mb_c00210{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);}
.m42_c00210{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.md_c00210{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m4_c00210{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);}
.m0_c00210{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m5_c00210{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);}
.m28_c00210{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m53_c00210{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m14_c00210{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);}
.m36_c00210{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00210{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);}
.m50_c00210{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);}
.m2e_c00210{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);}
.m3_c00210{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m7_c00210{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m11_c00210{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m38_c00210{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);}
.m33_c00210{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);}
.m37_c00210{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);}
.m3a_c00210{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m59_c00210{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m20_c00210{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00210{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);}
.m3b_c00210{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.ma_c00210{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);}
.m30_c00210{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m6_c00210{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);}
.m17_c00210{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.mf_c00210{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m21_c00210{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m44_c00210{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);}
.m25_c00210{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00210{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);}
.m32_c00210{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m24_c00210{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_c00210{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m55_c00210{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m26_c00210{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.mc_c00210{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m19_c00210{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);}
.m51_c00210{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m43_c00210{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00210{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m27_c00210{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);}
.m4a_c00210{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m46_c00210{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m23_c00210{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00210{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m35_c00210{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);}
.m2a_c00210{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m2_c00210{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m18_c00210{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m41_c00210{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00210{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m1_c00210{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00210{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);}
.m3c_c00210{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m34_c00210{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m22_c00210{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m15_c00210{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00210{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);}
.m16_c00210{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);}
.m56_c00210{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00210{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m10_c00210{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.me_c00210{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00210{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m29_c00210{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m13_c00210{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);}
.m4d_c00210{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m31_c00210{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m58_c00210{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);}
.m49_c00210{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.v0_c00210{vertical-align:0.000000px;}
.ls0_c00210{letter-spacing:0.000000px;}
.sc__c00210{text-shadow:none;}
.sc0_c00210{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00210{-webkit-text-stroke:0px transparent;}
.sc0_c00210{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00210{word-spacing:0.000000px;}
.fc0_c00210{color:transparent;}
.fsd_c00210{font-size:34.560000px;}
.fsa_c00210{font-size:37.440000px;}
.fs2_c00210{font-size:40.320000px;}
.fs7_c00210{font-size:43.200000px;}
.fs1_c00210{font-size:46.080000px;}
.fsc_c00210{font-size:48.960000px;}
.fs4_c00210{font-size:51.840000px;}
.fse_c00210{font-size:54.720000px;}
.fs3_c00210{font-size:57.600000px;}
.fs5_c00210{font-size:60.480000px;}
.fs8_c00210{font-size:63.360000px;}
.fsf_c00210{font-size:66.240000px;}
.fs9_c00210{font-size:69.120000px;}
.fsb_c00210{font-size:72.000000px;}
.fs0_c00210{font-size:74.880000px;}
.fs6_c00210{font-size:103.680000px;}
.y0_c00210{bottom:0.000000px;}
.y64_c00210{bottom:64.080000px;}
.y61_c00210{bottom:65.520000px;}
.y63_c00210{bottom:66.240000px;}
.y62_c00210{bottom:66.960000px;}
.y65_c00210{bottom:67.680000px;}
.y60_c00210{bottom:69.120000px;}
.y5f_c00210{bottom:69.840000px;}
.y5b_c00210{bottom:108.000000px;}
.y5e_c00210{bottom:108.720000px;}
.y5d_c00210{bottom:109.440000px;}
.y5c_c00210{bottom:110.160000px;}
.y58_c00210{bottom:151.200000px;}
.y59_c00210{bottom:152.640000px;}
.y57_c00210{bottom:153.360000px;}
.y56_c00210{bottom:154.080000px;}
.y5a_c00210{bottom:154.800000px;}
.y53_c00210{bottom:194.400000px;}
.y54_c00210{bottom:195.840000px;}
.y52_c00210{bottom:196.560000px;}
.y55_c00210{bottom:197.280000px;}
.y51_c00210{bottom:252.000000px;}
.y4f_c00210{bottom:290.880000px;}
.y4e_c00210{bottom:293.040000px;}
.y4d_c00210{bottom:293.760000px;}
.y50_c00210{bottom:294.480000px;}
.y4c_c00210{bottom:295.200000px;}
.y49_c00210{bottom:333.360000px;}
.y48_c00210{bottom:334.800000px;}
.y4a_c00210{bottom:336.960000px;}
.y4b_c00210{bottom:337.680000px;}
.y47_c00210{bottom:338.400000px;}
.y45_c00210{bottom:377.280000px;}
.y46_c00210{bottom:378.000000px;}
.y44_c00210{bottom:380.160000px;}
.y43_c00210{bottom:380.880000px;}
.y41_c00210{bottom:420.480000px;}
.y3f_c00210{bottom:421.200000px;}
.y40_c00210{bottom:421.920000px;}
.y3e_c00210{bottom:422.640000px;}
.y3d_c00210{bottom:423.360000px;}
.y42_c00210{bottom:424.080000px;}
.y3c_c00210{bottom:424.800000px;}
.y39_c00210{bottom:464.400000px;}
.y3b_c00210{bottom:466.560000px;}
.y3a_c00210{bottom:467.280000px;}
.y36_c00210{bottom:507.600000px;}
.y38_c00210{bottom:509.760000px;}
.y37_c00210{bottom:510.480000px;}
.y35_c00210{bottom:550.080000px;}
.y32_c00210{bottom:550.800000px;}
.y33_c00210{bottom:552.960000px;}
.y34_c00210{bottom:553.680000px;}
.y30_c00210{bottom:593.280000px;}
.y31_c00210{bottom:594.000000px;}
.y2f_c00210{bottom:596.160000px;}
.y2b_c00210{bottom:636.480000px;}
.y2c_c00210{bottom:637.200000px;}
.y2a_c00210{bottom:638.640000px;}
.y2e_c00210{bottom:639.360000px;}
.y2d_c00210{bottom:640.080000px;}
.y29_c00210{bottom:679.680000px;}
.y28_c00210{bottom:681.840000px;}
.y27_c00210{bottom:682.560000px;}
.y25_c00210{bottom:735.120000px;}
.y26_c00210{bottom:735.840000px;}
.y21_c00210{bottom:776.160000px;}
.y1f_c00210{bottom:776.880000px;}
.y24_c00210{bottom:777.600000px;}
.y23_c00210{bottom:779.040000px;}
.y20_c00210{bottom:779.760000px;}
.y22_c00210{bottom:780.480000px;}
.y1e_c00210{bottom:819.360000px;}
.y1d_c00210{bottom:820.080000px;}
.y1c_c00210{bottom:820.800000px;}
.y19_c00210{bottom:821.520000px;}
.y1a_c00210{bottom:822.240000px;}
.y1b_c00210{bottom:822.960000px;}
.y18_c00210{bottom:862.560000px;}
.y17_c00210{bottom:863.280000px;}
.y14_c00210{bottom:864.720000px;}
.y15_c00210{bottom:865.440000px;}
.y16_c00210{bottom:866.160000px;}
.y12_c00210{bottom:905.760000px;}
.y10_c00210{bottom:907.200000px;}
.y11_c00210{bottom:908.640000px;}
.y13_c00210{bottom:909.360000px;}
.yd_c00210{bottom:948.960000px;}
.yf_c00210{bottom:951.840000px;}
.ye_c00210{bottom:952.560000px;}
.y9_c00210{bottom:992.880000px;}
.y8_c00210{bottom:993.600000px;}
.yc_c00210{bottom:994.320000px;}
.yb_c00210{bottom:995.040000px;}
.ya_c00210{bottom:995.760000px;}
.y7_c00210{bottom:1034.640000px;}
.y5_c00210{bottom:1035.360000px;}
.y6_c00210{bottom:1036.080000px;}
.y4_c00210{bottom:1036.800000px;}
.y2_c00210{bottom:1037.520000px;}
.y3_c00210{bottom:1038.960000px;}
.y1_c00210{bottom:1081.440000px;}
.hf_c00210{height:31.100625px;}
.hc_c00210{height:33.692344px;}
.h4_c00210{height:36.284062px;}
.h9_c00210{height:38.875781px;}
.h3_c00210{height:41.467500px;}
.he_c00210{height:44.059219px;}
.h6_c00210{height:46.650937px;}
.h10_c00210{height:49.242656px;}
.h5_c00210{height:51.834375px;}
.h7_c00210{height:54.426094px;}
.ha_c00210{height:57.017812px;}
.h11_c00210{height:59.609531px;}
.hb_c00210{height:62.201250px;}
.hd_c00210{height:64.792969px;}
.h2_c00210{height:67.384687px;}
.h8_c00210{height:93.301875px;}
.h1_c00210{height:1149.000000px;}
.h0_c00210{height:1149.120000px;}
.w0_c00210{width:793.440000px;}
.w1_c00210{width:793.500000px;}
.x0_c00210{left:0.000000px;}
.x2_c00210{left:75.600000px;}
.x11_c00210{left:77.760000px;}
.x52_c00210{left:79.200000px;}
.x17_c00210{left:108.000000px;}
.x3_c00210{left:118.800000px;}
.x2f_c00210{left:120.960000px;}
.x34_c00210{left:129.600000px;}
.x40_c00210{left:138.960000px;}
.x23_c00210{left:140.400000px;}
.x2b_c00210{left:151.920000px;}
.x4_c00210{left:161.280000px;}
.x24_c00210{left:173.520000px;}
.x4f_c00210{left:182.160000px;}
.x18_c00210{left:183.600000px;}
.xa_c00210{left:205.200000px;}
.x2c_c00210{left:216.000000px;}
.x53_c00210{left:225.360000px;}
.x46_c00210{left:226.800000px;}
.x30_c00210{left:228.240000px;}
.x1d_c00210{left:237.600000px;}
.x12_c00210{left:248.400000px;}
.x5_c00210{left:259.920000px;}
.x54_c00210{left:268.560000px;}
.x13_c00210{left:270.000000px;}
.x3a_c00210{left:281.520000px;}
.x6_c00210{left:291.600000px;}
.x1e_c00210{left:303.120000px;}
.x25_c00210{left:304.560000px;}
.x14_c00210{left:313.920000px;}
.x44_c00210{left:324.000000px;}
.x2d_c00210{left:325.440000px;}
.xb_c00210{left:335.520000px;}
.x3e_c00210{left:345.600000px;}
.x4a_c00210{left:356.400000px;}
.x28_c00210{left:357.840000px;}
.xc_c00210{left:378.720000px;}
.x1f_c00210{left:380.160000px;}
.x3c_c00210{left:388.800000px;}
.x19_c00210{left:390.960000px;}
.x7_c00210{left:399.600000px;}
.x37_c00210{left:410.400000px;}
.x31_c00210{left:411.840000px;}
.x4b_c00210{left:421.200000px;}
.x20_c00210{left:423.360000px;}
.x41_c00210{left:432.000000px;}
.x15_c00210{left:433.440000px;}
.x38_c00210{left:441.360000px;}
.x1a_c00210{left:443.520000px;}
.x50_c00210{left:452.160000px;}
.xd_c00210{left:453.600000px;}
.x21_c00210{left:455.040000px;}
.x26_c00210{left:465.120000px;}
.x29_c00210{left:475.200000px;}
.x1b_c00210{left:478.080000px;}
.x2e_c00210{left:486.000000px;}
.x45_c00210{left:487.440000px;}
.x4c_c00210{left:496.080000px;}
.xe_c00210{left:497.520000px;}
.x35_c00210{left:507.600000px;}
.x8_c00210{left:509.760000px;}
.x51_c00210{left:516.960000px;}
.x3f_c00210{left:529.200000px;}
.x16_c00210{left:530.640000px;}
.x3d_c00210{left:538.560000px;}
.x27_c00210{left:540.720000px;}
.x36_c00210{left:550.800000px;}
.x49_c00210{left:560.880000px;}
.xf_c00210{left:562.320000px;}
.x32_c00210{left:572.400000px;}
.x42_c00210{left:581.760000px;}
.x22_c00210{left:583.200000px;}
.x10_c00210{left:604.800000px;}
.x43_c00210{left:614.160000px;}
.x1c_c00210{left:627.120000px;}
.x4d_c00210{left:635.760000px;}
.x9_c00210{left:637.200000px;}
.x47_c00210{left:645.840000px;}
.x39_c00210{left:648.000000px;}
.x3b_c00210{left:656.640000px;}
.x33_c00210{left:658.800000px;}
.x4e_c00210{left:667.440000px;}
.x48_c00210{left:678.240000px;}
.x2a_c00210{left:680.400000px;}
.x1_c00210{left:694.080000px;}
@media print{
.v0_c00210{vertical-align:0.000000pt;}
.ls0_c00210{letter-spacing:0.000000pt;}
.ws0_c00210{word-spacing:0.000000pt;}
.fsd_c00210{font-size:30.720000pt;}
.fsa_c00210{font-size:33.280000pt;}
.fs2_c00210{font-size:35.840000pt;}
.fs7_c00210{font-size:38.400000pt;}
.fs1_c00210{font-size:40.960000pt;}
.fsc_c00210{font-size:43.520000pt;}
.fs4_c00210{font-size:46.080000pt;}
.fse_c00210{font-size:48.640000pt;}
.fs3_c00210{font-size:51.200000pt;}
.fs5_c00210{font-size:53.760000pt;}
.fs8_c00210{font-size:56.320000pt;}
.fsf_c00210{font-size:58.880000pt;}
.fs9_c00210{font-size:61.440000pt;}
.fsb_c00210{font-size:64.000000pt;}
.fs0_c00210{font-size:66.560000pt;}
.fs6_c00210{font-size:92.160000pt;}
.y0_c00210{bottom:0.000000pt;}
.y64_c00210{bottom:56.960000pt;}
.y61_c00210{bottom:58.240000pt;}
.y63_c00210{bottom:58.880000pt;}
.y62_c00210{bottom:59.520000pt;}
.y65_c00210{bottom:60.160000pt;}
.y60_c00210{bottom:61.440000pt;}
.y5f_c00210{bottom:62.080000pt;}
.y5b_c00210{bottom:96.000000pt;}
.y5e_c00210{bottom:96.640000pt;}
.y5d_c00210{bottom:97.280000pt;}
.y5c_c00210{bottom:97.920000pt;}
.y58_c00210{bottom:134.400000pt;}
.y59_c00210{bottom:135.680000pt;}
.y57_c00210{bottom:136.320000pt;}
.y56_c00210{bottom:136.960000pt;}
.y5a_c00210{bottom:137.600000pt;}
.y53_c00210{bottom:172.800000pt;}
.y54_c00210{bottom:174.080000pt;}
.y52_c00210{bottom:174.720000pt;}
.y55_c00210{bottom:175.360000pt;}
.y51_c00210{bottom:224.000000pt;}
.y4f_c00210{bottom:258.560000pt;}
.y4e_c00210{bottom:260.480000pt;}
.y4d_c00210{bottom:261.120000pt;}
.y50_c00210{bottom:261.760000pt;}
.y4c_c00210{bottom:262.400000pt;}
.y49_c00210{bottom:296.320000pt;}
.y48_c00210{bottom:297.600000pt;}
.y4a_c00210{bottom:299.520000pt;}
.y4b_c00210{bottom:300.160000pt;}
.y47_c00210{bottom:300.800000pt;}
.y45_c00210{bottom:335.360000pt;}
.y46_c00210{bottom:336.000000pt;}
.y44_c00210{bottom:337.920000pt;}
.y43_c00210{bottom:338.560000pt;}
.y41_c00210{bottom:373.760000pt;}
.y3f_c00210{bottom:374.400000pt;}
.y40_c00210{bottom:375.040000pt;}
.y3e_c00210{bottom:375.680000pt;}
.y3d_c00210{bottom:376.320000pt;}
.y42_c00210{bottom:376.960000pt;}
.y3c_c00210{bottom:377.600000pt;}
.y39_c00210{bottom:412.800000pt;}
.y3b_c00210{bottom:414.720000pt;}
.y3a_c00210{bottom:415.360000pt;}
.y36_c00210{bottom:451.200000pt;}
.y38_c00210{bottom:453.120000pt;}
.y37_c00210{bottom:453.760000pt;}
.y35_c00210{bottom:488.960000pt;}
.y32_c00210{bottom:489.600000pt;}
.y33_c00210{bottom:491.520000pt;}
.y34_c00210{bottom:492.160000pt;}
.y30_c00210{bottom:527.360000pt;}
.y31_c00210{bottom:528.000000pt;}
.y2f_c00210{bottom:529.920000pt;}
.y2b_c00210{bottom:565.760000pt;}
.y2c_c00210{bottom:566.400000pt;}
.y2a_c00210{bottom:567.680000pt;}
.y2e_c00210{bottom:568.320000pt;}
.y2d_c00210{bottom:568.960000pt;}
.y29_c00210{bottom:604.160000pt;}
.y28_c00210{bottom:606.080000pt;}
.y27_c00210{bottom:606.720000pt;}
.y25_c00210{bottom:653.440000pt;}
.y26_c00210{bottom:654.080000pt;}
.y21_c00210{bottom:689.920000pt;}
.y1f_c00210{bottom:690.560000pt;}
.y24_c00210{bottom:691.200000pt;}
.y23_c00210{bottom:692.480000pt;}
.y20_c00210{bottom:693.120000pt;}
.y22_c00210{bottom:693.760000pt;}
.y1e_c00210{bottom:728.320000pt;}
.y1d_c00210{bottom:728.960000pt;}
.y1c_c00210{bottom:729.600000pt;}
.y19_c00210{bottom:730.240000pt;}
.y1a_c00210{bottom:730.880000pt;}
.y1b_c00210{bottom:731.520000pt;}
.y18_c00210{bottom:766.720000pt;}
.y17_c00210{bottom:767.360000pt;}
.y14_c00210{bottom:768.640000pt;}
.y15_c00210{bottom:769.280000pt;}
.y16_c00210{bottom:769.920000pt;}
.y12_c00210{bottom:805.120000pt;}
.y10_c00210{bottom:806.400000pt;}
.y11_c00210{bottom:807.680000pt;}
.y13_c00210{bottom:808.320000pt;}
.yd_c00210{bottom:843.520000pt;}
.yf_c00210{bottom:846.080000pt;}
.ye_c00210{bottom:846.720000pt;}
.y9_c00210{bottom:882.560000pt;}
.y8_c00210{bottom:883.200000pt;}
.yc_c00210{bottom:883.840000pt;}
.yb_c00210{bottom:884.480000pt;}
.ya_c00210{bottom:885.120000pt;}
.y7_c00210{bottom:919.680000pt;}
.y5_c00210{bottom:920.320000pt;}
.y6_c00210{bottom:920.960000pt;}
.y4_c00210{bottom:921.600000pt;}
.y2_c00210{bottom:922.240000pt;}
.y3_c00210{bottom:923.520000pt;}
.y1_c00210{bottom:961.280000pt;}
.hf_c00210{height:27.645000pt;}
.hc_c00210{height:29.948750pt;}
.h4_c00210{height:32.252500pt;}
.h9_c00210{height:34.556250pt;}
.h3_c00210{height:36.860000pt;}
.he_c00210{height:39.163750pt;}
.h6_c00210{height:41.467500pt;}
.h10_c00210{height:43.771250pt;}
.h5_c00210{height:46.075000pt;}
.h7_c00210{height:48.378750pt;}
.ha_c00210{height:50.682500pt;}
.h11_c00210{height:52.986250pt;}
.hb_c00210{height:55.290000pt;}
.hd_c00210{height:57.593750pt;}
.h2_c00210{height:59.897500pt;}
.h8_c00210{height:82.935000pt;}
.h1_c00210{height:1021.333333pt;}
.h0_c00210{height:1021.440000pt;}
.w0_c00210{width:705.280000pt;}
.w1_c00210{width:705.333333pt;}
.x0_c00210{left:0.000000pt;}
.x2_c00210{left:67.200000pt;}
.x11_c00210{left:69.120000pt;}
.x52_c00210{left:70.400000pt;}
.x17_c00210{left:96.000000pt;}
.x3_c00210{left:105.600000pt;}
.x2f_c00210{left:107.520000pt;}
.x34_c00210{left:115.200000pt;}
.x40_c00210{left:123.520000pt;}
.x23_c00210{left:124.800000pt;}
.x2b_c00210{left:135.040000pt;}
.x4_c00210{left:143.360000pt;}
.x24_c00210{left:154.240000pt;}
.x4f_c00210{left:161.920000pt;}
.x18_c00210{left:163.200000pt;}
.xa_c00210{left:182.400000pt;}
.x2c_c00210{left:192.000000pt;}
.x53_c00210{left:200.320000pt;}
.x46_c00210{left:201.600000pt;}
.x30_c00210{left:202.880000pt;}
.x1d_c00210{left:211.200000pt;}
.x12_c00210{left:220.800000pt;}
.x5_c00210{left:231.040000pt;}
.x54_c00210{left:238.720000pt;}
.x13_c00210{left:240.000000pt;}
.x3a_c00210{left:250.240000pt;}
.x6_c00210{left:259.200000pt;}
.x1e_c00210{left:269.440000pt;}
.x25_c00210{left:270.720000pt;}
.x14_c00210{left:279.040000pt;}
.x44_c00210{left:288.000000pt;}
.x2d_c00210{left:289.280000pt;}
.xb_c00210{left:298.240000pt;}
.x3e_c00210{left:307.200000pt;}
.x4a_c00210{left:316.800000pt;}
.x28_c00210{left:318.080000pt;}
.xc_c00210{left:336.640000pt;}
.x1f_c00210{left:337.920000pt;}
.x3c_c00210{left:345.600000pt;}
.x19_c00210{left:347.520000pt;}
.x7_c00210{left:355.200000pt;}
.x37_c00210{left:364.800000pt;}
.x31_c00210{left:366.080000pt;}
.x4b_c00210{left:374.400000pt;}
.x20_c00210{left:376.320000pt;}
.x41_c00210{left:384.000000pt;}
.x15_c00210{left:385.280000pt;}
.x38_c00210{left:392.320000pt;}
.x1a_c00210{left:394.240000pt;}
.x50_c00210{left:401.920000pt;}
.xd_c00210{left:403.200000pt;}
.x21_c00210{left:404.480000pt;}
.x26_c00210{left:413.440000pt;}
.x29_c00210{left:422.400000pt;}
.x1b_c00210{left:424.960000pt;}
.x2e_c00210{left:432.000000pt;}
.x45_c00210{left:433.280000pt;}
.x4c_c00210{left:440.960000pt;}
.xe_c00210{left:442.240000pt;}
.x35_c00210{left:451.200000pt;}
.x8_c00210{left:453.120000pt;}
.x51_c00210{left:459.520000pt;}
.x3f_c00210{left:470.400000pt;}
.x16_c00210{left:471.680000pt;}
.x3d_c00210{left:478.720000pt;}
.x27_c00210{left:480.640000pt;}
.x36_c00210{left:489.600000pt;}
.x49_c00210{left:498.560000pt;}
.xf_c00210{left:499.840000pt;}
.x32_c00210{left:508.800000pt;}
.x42_c00210{left:517.120000pt;}
.x22_c00210{left:518.400000pt;}
.x10_c00210{left:537.600000pt;}
.x43_c00210{left:545.920000pt;}
.x1c_c00210{left:557.440000pt;}
.x4d_c00210{left:565.120000pt;}
.x9_c00210{left:566.400000pt;}
.x47_c00210{left:574.080000pt;}
.x39_c00210{left:576.000000pt;}
.x3b_c00210{left:583.680000pt;}
.x33_c00210{left:585.600000pt;}
.x4e_c00210{left:593.280000pt;}
.x48_c00210{left:602.880000pt;}
.x2a_c00210{left:604.800000pt;}
.x1_c00210{left:616.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_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_e4469bb5847de0673629b77f.woff2')format("woff");}.ff1_c00211{font-family:ff1_c00211;line-height:1.109863;font-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_c00211{transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);}
.m1d_c00211{transform:matrix(0.209600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209600,0.000000,0.000000,0.250000,0,0);}
.m13_c00211{transform:matrix(0.243725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243725,0.000000,0.000000,0.250000,0,0);}
.m2a_c00211{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m23_c00211{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m60_c00211{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m16_c00211{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00211{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);}
.m27_c00211{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m12_c00211{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m29_c00211{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m19_c00211{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m51_c00211{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m20_c00211{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00211{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00211{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00211{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m24_c00211{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00211{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00211{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00211{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m58_c00211{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m45_c00211{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m49_c00211{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m15_c00211{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m46_c00211{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m30_c00211{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m26_c00211{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00211{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);}
.m3d_c00211{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m17_c00211{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);}
.m2c_c00211{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m55_c00211{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m11_c00211{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m5_c00211{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00211{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m53_c00211{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m28_c00211{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m50_c00211{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);}
.m2_c00211{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);}
.me_c00211{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m62_c00211{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m32_c00211{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);}
.m5d_c00211{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);}
.m59_c00211{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.ma_c00211{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m18_c00211{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);}
.m31_c00211{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m22_c00211{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);}
.m1e_c00211{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);}
.m21_c00211{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00211{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00211{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m7_c00211{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m4_c00211{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);}
.m3f_c00211{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00211{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);}
.m3a_c00211{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);}
.m48_c00211{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00211{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00211{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m0_c00211{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m39_c00211{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m64_c00211{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m33_c00211{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);}
.m2b_c00211{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m36_c00211{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);}
.m34_c00211{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00211{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m52_c00211{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00211{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m41_c00211{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m14_c00211{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m38_c00211{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.mb_c00211{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m6_c00211{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.md_c00211{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00211{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m1_c00211{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m44_c00211{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m8_c00211{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m40_c00211{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m56_c00211{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m42_c00211{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);}
.m57_c00211{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m37_c00211{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m63_c00211{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m9_c00211{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m10_c00211{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m54_c00211{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.mc_c00211{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);}
.m61_c00211{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m47_c00211{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00211{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m66_c00211{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m35_c00211{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m3_c00211{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m43_c00211{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m67_c00211{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);}
.m5e_c00211{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00211{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m68_c00211{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.mf_c00211{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00211{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m65_c00211{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.m69_c00211{transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);}
.v0_c00211{vertical-align:0.000000px;}
.v1_c00211{vertical-align:8.640000px;}
.ls0_c00211{letter-spacing:0.000000px;}
.sc__c00211{text-shadow:none;}
.sc0_c00211{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00211{-webkit-text-stroke:0px transparent;}
.sc0_c00211{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00211{word-spacing:-2.114400px;}
.ws1_c00211{word-spacing:0.000000px;}
.fc0_c00211{color:transparent;}
.fs12_c00211{font-size:20.160000px;}
.fsc_c00211{font-size:34.560000px;}
.fs4_c00211{font-size:37.440000px;}
.fs10_c00211{font-size:40.320000px;}
.fs11_c00211{font-size:43.200000px;}
.fs0_c00211{font-size:46.080000px;}
.fs2_c00211{font-size:48.960000px;}
.fs1_c00211{font-size:51.840000px;}
.fs9_c00211{font-size:54.720000px;}
.fsb_c00211{font-size:57.600000px;}
.fs3_c00211{font-size:60.480000px;}
.fs8_c00211{font-size:63.360000px;}
.fs5_c00211{font-size:66.240000px;}
.fse_c00211{font-size:69.120000px;}
.fsd_c00211{font-size:72.000000px;}
.fsf_c00211{font-size:74.880000px;}
.fs7_c00211{font-size:77.760000px;}
.fs6_c00211{font-size:80.640000px;}
.fsa_c00211{font-size:100.800000px;}
.y0_c00211{bottom:0.000000px;}
.y74_c00211{bottom:108.000000px;}
.y73_c00211{bottom:110.160000px;}
.y6e_c00211{bottom:147.600000px;}
.y70_c00211{bottom:148.320000px;}
.y6c_c00211{bottom:149.760000px;}
.y6f_c00211{bottom:150.480000px;}
.y6d_c00211{bottom:151.200000px;}
.y71_c00211{bottom:151.920000px;}
.y72_c00211{bottom:154.800000px;}
.y6b_c00211{bottom:155.520000px;}
.y69_c00211{bottom:190.800000px;}
.y67_c00211{bottom:191.520000px;}
.y66_c00211{bottom:192.960000px;}
.y68_c00211{bottom:193.680000px;}
.y6a_c00211{bottom:194.400000px;}
.y65_c00211{bottom:195.120000px;}
.y64_c00211{bottom:195.840000px;}
.y63_c00211{bottom:198.000000px;}
.y5f_c00211{bottom:234.720000px;}
.y61_c00211{bottom:235.440000px;}
.y5c_c00211{bottom:236.160000px;}
.y5e_c00211{bottom:236.880000px;}
.y60_c00211{bottom:237.600000px;}
.y5d_c00211{bottom:238.320000px;}
.y62_c00211{bottom:241.920000px;}
.y5a_c00211{bottom:276.480000px;}
.y58_c00211{bottom:277.200000px;}
.y5b_c00211{bottom:277.920000px;}
.y57_c00211{bottom:278.640000px;}
.y56_c00211{bottom:280.080000px;}
.y59_c00211{bottom:280.800000px;}
.y54_c00211{bottom:320.400000px;}
.y55_c00211{bottom:321.120000px;}
.y53_c00211{bottom:323.280000px;}
.y52_c00211{bottom:324.000000px;}
.y51_c00211{bottom:324.720000px;}
.y50_c00211{bottom:325.440000px;}
.y4d_c00211{bottom:363.600000px;}
.y4e_c00211{bottom:364.320000px;}
.y4f_c00211{bottom:365.760000px;}
.y4c_c00211{bottom:367.200000px;}
.y4b_c00211{bottom:368.640000px;}
.y47_c00211{bottom:406.080000px;}
.y49_c00211{bottom:406.800000px;}
.y4a_c00211{bottom:408.240000px;}
.y48_c00211{bottom:408.960000px;}
.y46_c00211{bottom:409.680000px;}
.y45_c00211{bottom:450.000000px;}
.y42_c00211{bottom:450.720000px;}
.y41_c00211{bottom:451.440000px;}
.y43_c00211{bottom:452.160000px;}
.y44_c00211{bottom:452.880000px;}
.y3d_c00211{bottom:492.480000px;}
.y3e_c00211{bottom:493.200000px;}
.y3f_c00211{bottom:493.920000px;}
.y40_c00211{bottom:495.360000px;}
.y3c_c00211{bottom:496.080000px;}
.y3b_c00211{bottom:497.520000px;}
.y39_c00211{bottom:536.400000px;}
.y3a_c00211{bottom:538.560000px;}
.y38_c00211{bottom:539.280000px;}
.y37_c00211{bottom:540.000000px;}
.y35_c00211{bottom:578.880000px;}
.y36_c00211{bottom:579.600000px;}
.y32_c00211{bottom:580.320000px;}
.y34_c00211{bottom:582.480000px;}
.y33_c00211{bottom:583.200000px;}
.y31_c00211{bottom:622.800000px;}
.y2e_c00211{bottom:623.520000px;}
.y30_c00211{bottom:624.960000px;}
.y2f_c00211{bottom:625.680000px;}
.y2d_c00211{bottom:626.400000px;}
.y2c_c00211{bottom:666.000000px;}
.y28_c00211{bottom:666.720000px;}
.y2b_c00211{bottom:668.160000px;}
.y2a_c00211{bottom:668.880000px;}
.y29_c00211{bottom:669.600000px;}
.y27_c00211{bottom:720.000000px;}
.y25_c00211{bottom:763.200000px;}
.y24_c00211{bottom:763.920000px;}
.y26_c00211{bottom:766.080000px;}
.y23_c00211{bottom:795.600000px;}
.y22_c00211{bottom:796.320000px;}
.y21_c00211{bottom:806.400000px;}
.y20_c00211{bottom:807.120000px;}
.y1d_c00211{bottom:808.560000px;}
.y1e_c00211{bottom:809.280000px;}
.y1f_c00211{bottom:810.000000px;}
.y1b_c00211{bottom:838.800000px;}
.y1a_c00211{bottom:839.520000px;}
.y1c_c00211{bottom:840.960000px;}
.y19_c00211{bottom:848.880000px;}
.y15_c00211{bottom:849.600000px;}
.y17_c00211{bottom:850.320000px;}
.y14_c00211{bottom:851.040000px;}
.y18_c00211{bottom:851.760000px;}
.y16_c00211{bottom:852.480000px;}
.y13_c00211{bottom:880.560000px;}
.ye_c00211{bottom:892.080000px;}
.y11_c00211{bottom:892.800000px;}
.y12_c00211{bottom:893.520000px;}
.yd_c00211{bottom:894.240000px;}
.y10_c00211{bottom:894.960000px;}
.yf_c00211{bottom:895.680000px;}
.yc_c00211{bottom:931.680000px;}
.yb_c00211{bottom:936.000000px;}
.ya_c00211{bottom:987.840000px;}
.y7_c00211{bottom:989.280000px;}
.y6_c00211{bottom:990.000000px;}
.y8_c00211{bottom:991.440000px;}
.y9_c00211{bottom:992.160000px;}
.y4_c00211{bottom:1031.760000px;}
.y5_c00211{bottom:1033.200000px;}
.y3_c00211{bottom:1033.920000px;}
.y2_c00211{bottom:1035.360000px;}
.y1_c00211{bottom:1036.080000px;}
.y75_c00211{bottom:1082.880000px;}
.h15_c00211{height:18.142031px;}
.he_c00211{height:31.100625px;}
.h6_c00211{height:33.692344px;}
.h13_c00211{height:36.284062px;}
.h14_c00211{height:38.875781px;}
.h2_c00211{height:41.467500px;}
.h4_c00211{height:44.059219px;}
.h3_c00211{height:46.650937px;}
.hb_c00211{height:49.242656px;}
.hd_c00211{height:51.834375px;}
.hf_c00211{height:52.699219px;}
.h5_c00211{height:54.426094px;}
.ha_c00211{height:57.017812px;}
.h7_c00211{height:59.609531px;}
.h11_c00211{height:62.201250px;}
.h10_c00211{height:64.792969px;}
.h12_c00211{height:67.384687px;}
.h9_c00211{height:69.976406px;}
.h8_c00211{height:72.568125px;}
.hc_c00211{height:90.710156px;}
.h1_c00211{height:1147.500000px;}
.h0_c00211{height:1147.680000px;}
.w1_c00211{width:791.250000px;}
.w0_c00211{width:791.280000px;}
.x0_c00211{left:0.000000px;}
.xb_c00211{left:74.160000px;}
.x13_c00211{left:75.600000px;}
.x61_c00211{left:77.040000px;}
.x36_c00211{left:105.840000px;}
.x2c_c00211{left:116.640000px;}
.x17_c00211{left:118.800000px;}
.x23_c00211{left:128.160000px;}
.x62_c00211{left:136.800000px;}
.xc_c00211{left:138.240000px;}
.x3c_c00211{left:149.040000px;}
.x49_c00211{left:158.400000px;}
.x2d_c00211{left:159.840000px;}
.x56_c00211{left:169.200000px;}
.x2f_c00211{left:170.640000px;}
.x1_c00211{left:181.440000px;}
.xd_c00211{left:182.880000px;}
.x4c_c00211{left:190.800000px;}
.x18_c00211{left:192.240000px;}
.x14_c00211{left:193.680000px;}
.x4a_c00211{left:200.880000px;}
.x45_c00211{left:202.320000px;}
.x57_c00211{left:212.400000px;}
.x2_c00211{left:213.840000px;}
.x37_c00211{left:215.280000px;}
.x5c_c00211{left:223.200000px;}
.x30_c00211{left:224.640000px;}
.x19_c00211{left:226.080000px;}
.x24_c00211{left:237.600000px;}
.x38_c00211{left:245.520000px;}
.xe_c00211{left:246.960000px;}
.x44_c00211{left:256.320000px;}
.x3d_c00211{left:258.480000px;}
.x58_c00211{left:266.400000px;}
.x28_c00211{left:267.840000px;}
.xf_c00211{left:269.280000px;}
.x3f_c00211{left:277.920000px;}
.x3_c00211{left:279.360000px;}
.x51_c00211{left:288.000000px;}
.x59_c00211{left:289.440000px;}
.x29_c00211{left:300.240000px;}
.x4_c00211{left:311.760000px;}
.x1a_c00211{left:321.840000px;}
.x5d_c00211{left:331.920000px;}
.x46_c00211{left:334.080000px;}
.x4d_c00211{left:342.720000px;}
.x5_c00211{left:344.160000px;}
.x3e_c00211{left:354.240000px;}
.x5e_c00211{left:365.760000px;}
.x1b_c00211{left:367.200000px;}
.x10_c00211{left:376.560000px;}
.x31_c00211{left:386.640000px;}
.x1f_c00211{left:388.080000px;}
.x52_c00211{left:407.520000px;}
.x40_c00211{left:408.960000px;}
.x5a_c00211{left:417.600000px;}
.x11_c00211{left:419.760000px;}
.x32_c00211{left:429.840000px;}
.x15_c00211{left:452.160000px;}
.x12_c00211{left:453.600000px;}
.x5f_c00211{left:460.080000px;}
.x20_c00211{left:462.240000px;}
.x1c_c00211{left:463.680000px;}
.x41_c00211{left:473.040000px;}
.x39_c00211{left:483.120000px;}
.x6_c00211{left:485.280000px;}
.x47_c00211{left:494.640000px;}
.x60_c00211{left:503.280000px;}
.x2a_c00211{left:505.440000px;}
.x27_c00211{left:516.240000px;}
.x7_c00211{left:517.680000px;}
.x25_c00211{left:527.760000px;}
.x4e_c00211{left:536.400000px;}
.x33_c00211{left:537.840000px;}
.x53_c00211{left:547.200000px;}
.x42_c00211{left:548.640000px;}
.x4b_c00211{left:558.720000px;}
.x8_c00211{left:560.160000px;}
.x4f_c00211{left:568.080000px;}
.x3a_c00211{left:570.240000px;}
.x2b_c00211{left:580.320000px;}
.x1d_c00211{left:581.760000px;}
.x34_c00211{left:591.840000px;}
.x16_c00211{left:593.280000px;}
.x43_c00211{left:600.480000px;}
.x3b_c00211{left:602.640000px;}
.x54_c00211{left:612.000000px;}
.x2e_c00211{left:623.520000px;}
.x9_c00211{left:635.760000px;}
.x55_c00211{left:644.400000px;}
.x21_c00211{left:645.840000px;}
.x1e_c00211{left:648.000000px;}
.x50_c00211{left:653.040000px;}
.x5b_c00211{left:654.480000px;}
.x35_c00211{left:666.720000px;}
.xa_c00211{left:668.160000px;}
.x48_c00211{left:676.800000px;}
.x26_c00211{left:679.680000px;}
.x22_c00211{left:689.760000px;}
.x63_c00211{left:693.360000px;}
@media print{
.v0_c00211{vertical-align:0.000000pt;}
.v1_c00211{vertical-align:7.680000pt;}
.ls0_c00211{letter-spacing:0.000000pt;}
.ws0_c00211{word-spacing:-1.879467pt;}
.ws1_c00211{word-spacing:0.000000pt;}
.fs12_c00211{font-size:17.920000pt;}
.fsc_c00211{font-size:30.720000pt;}
.fs4_c00211{font-size:33.280000pt;}
.fs10_c00211{font-size:35.840000pt;}
.fs11_c00211{font-size:38.400000pt;}
.fs0_c00211{font-size:40.960000pt;}
.fs2_c00211{font-size:43.520000pt;}
.fs1_c00211{font-size:46.080000pt;}
.fs9_c00211{font-size:48.640000pt;}
.fsb_c00211{font-size:51.200000pt;}
.fs3_c00211{font-size:53.760000pt;}
.fs8_c00211{font-size:56.320000pt;}
.fs5_c00211{font-size:58.880000pt;}
.fse_c00211{font-size:61.440000pt;}
.fsd_c00211{font-size:64.000000pt;}
.fsf_c00211{font-size:66.560000pt;}
.fs7_c00211{font-size:69.120000pt;}
.fs6_c00211{font-size:71.680000pt;}
.fsa_c00211{font-size:89.600000pt;}
.y0_c00211{bottom:0.000000pt;}
.y74_c00211{bottom:96.000000pt;}
.y73_c00211{bottom:97.920000pt;}
.y6e_c00211{bottom:131.200000pt;}
.y70_c00211{bottom:131.840000pt;}
.y6c_c00211{bottom:133.120000pt;}
.y6f_c00211{bottom:133.760000pt;}
.y6d_c00211{bottom:134.400000pt;}
.y71_c00211{bottom:135.040000pt;}
.y72_c00211{bottom:137.600000pt;}
.y6b_c00211{bottom:138.240000pt;}
.y69_c00211{bottom:169.600000pt;}
.y67_c00211{bottom:170.240000pt;}
.y66_c00211{bottom:171.520000pt;}
.y68_c00211{bottom:172.160000pt;}
.y6a_c00211{bottom:172.800000pt;}
.y65_c00211{bottom:173.440000pt;}
.y64_c00211{bottom:174.080000pt;}
.y63_c00211{bottom:176.000000pt;}
.y5f_c00211{bottom:208.640000pt;}
.y61_c00211{bottom:209.280000pt;}
.y5c_c00211{bottom:209.920000pt;}
.y5e_c00211{bottom:210.560000pt;}
.y60_c00211{bottom:211.200000pt;}
.y5d_c00211{bottom:211.840000pt;}
.y62_c00211{bottom:215.040000pt;}
.y5a_c00211{bottom:245.760000pt;}
.y58_c00211{bottom:246.400000pt;}
.y5b_c00211{bottom:247.040000pt;}
.y57_c00211{bottom:247.680000pt;}
.y56_c00211{bottom:248.960000pt;}
.y59_c00211{bottom:249.600000pt;}
.y54_c00211{bottom:284.800000pt;}
.y55_c00211{bottom:285.440000pt;}
.y53_c00211{bottom:287.360000pt;}
.y52_c00211{bottom:288.000000pt;}
.y51_c00211{bottom:288.640000pt;}
.y50_c00211{bottom:289.280000pt;}
.y4d_c00211{bottom:323.200000pt;}
.y4e_c00211{bottom:323.840000pt;}
.y4f_c00211{bottom:325.120000pt;}
.y4c_c00211{bottom:326.400000pt;}
.y4b_c00211{bottom:327.680000pt;}
.y47_c00211{bottom:360.960000pt;}
.y49_c00211{bottom:361.600000pt;}
.y4a_c00211{bottom:362.880000pt;}
.y48_c00211{bottom:363.520000pt;}
.y46_c00211{bottom:364.160000pt;}
.y45_c00211{bottom:400.000000pt;}
.y42_c00211{bottom:400.640000pt;}
.y41_c00211{bottom:401.280000pt;}
.y43_c00211{bottom:401.920000pt;}
.y44_c00211{bottom:402.560000pt;}
.y3d_c00211{bottom:437.760000pt;}
.y3e_c00211{bottom:438.400000pt;}
.y3f_c00211{bottom:439.040000pt;}
.y40_c00211{bottom:440.320000pt;}
.y3c_c00211{bottom:440.960000pt;}
.y3b_c00211{bottom:442.240000pt;}
.y39_c00211{bottom:476.800000pt;}
.y3a_c00211{bottom:478.720000pt;}
.y38_c00211{bottom:479.360000pt;}
.y37_c00211{bottom:480.000000pt;}
.y35_c00211{bottom:514.560000pt;}
.y36_c00211{bottom:515.200000pt;}
.y32_c00211{bottom:515.840000pt;}
.y34_c00211{bottom:517.760000pt;}
.y33_c00211{bottom:518.400000pt;}
.y31_c00211{bottom:553.600000pt;}
.y2e_c00211{bottom:554.240000pt;}
.y30_c00211{bottom:555.520000pt;}
.y2f_c00211{bottom:556.160000pt;}
.y2d_c00211{bottom:556.800000pt;}
.y2c_c00211{bottom:592.000000pt;}
.y28_c00211{bottom:592.640000pt;}
.y2b_c00211{bottom:593.920000pt;}
.y2a_c00211{bottom:594.560000pt;}
.y29_c00211{bottom:595.200000pt;}
.y27_c00211{bottom:640.000000pt;}
.y25_c00211{bottom:678.400000pt;}
.y24_c00211{bottom:679.040000pt;}
.y26_c00211{bottom:680.960000pt;}
.y23_c00211{bottom:707.200000pt;}
.y22_c00211{bottom:707.840000pt;}
.y21_c00211{bottom:716.800000pt;}
.y20_c00211{bottom:717.440000pt;}
.y1d_c00211{bottom:718.720000pt;}
.y1e_c00211{bottom:719.360000pt;}
.y1f_c00211{bottom:720.000000pt;}
.y1b_c00211{bottom:745.600000pt;}
.y1a_c00211{bottom:746.240000pt;}
.y1c_c00211{bottom:747.520000pt;}
.y19_c00211{bottom:754.560000pt;}
.y15_c00211{bottom:755.200000pt;}
.y17_c00211{bottom:755.840000pt;}
.y14_c00211{bottom:756.480000pt;}
.y18_c00211{bottom:757.120000pt;}
.y16_c00211{bottom:757.760000pt;}
.y13_c00211{bottom:782.720000pt;}
.ye_c00211{bottom:792.960000pt;}
.y11_c00211{bottom:793.600000pt;}
.y12_c00211{bottom:794.240000pt;}
.yd_c00211{bottom:794.880000pt;}
.y10_c00211{bottom:795.520000pt;}
.yf_c00211{bottom:796.160000pt;}
.yc_c00211{bottom:828.160000pt;}
.yb_c00211{bottom:832.000000pt;}
.ya_c00211{bottom:878.080000pt;}
.y7_c00211{bottom:879.360000pt;}
.y6_c00211{bottom:880.000000pt;}
.y8_c00211{bottom:881.280000pt;}
.y9_c00211{bottom:881.920000pt;}
.y4_c00211{bottom:917.120000pt;}
.y5_c00211{bottom:918.400000pt;}
.y3_c00211{bottom:919.040000pt;}
.y2_c00211{bottom:920.320000pt;}
.y1_c00211{bottom:920.960000pt;}
.y75_c00211{bottom:962.560000pt;}
.h15_c00211{height:16.126250pt;}
.he_c00211{height:27.645000pt;}
.h6_c00211{height:29.948750pt;}
.h13_c00211{height:32.252500pt;}
.h14_c00211{height:34.556250pt;}
.h2_c00211{height:36.860000pt;}
.h4_c00211{height:39.163750pt;}
.h3_c00211{height:41.467500pt;}
.hb_c00211{height:43.771250pt;}
.hd_c00211{height:46.075000pt;}
.hf_c00211{height:46.843750pt;}
.h5_c00211{height:48.378750pt;}
.ha_c00211{height:50.682500pt;}
.h7_c00211{height:52.986250pt;}
.h11_c00211{height:55.290000pt;}
.h10_c00211{height:57.593750pt;}
.h12_c00211{height:59.897500pt;}
.h9_c00211{height:62.201250pt;}
.h8_c00211{height:64.505000pt;}
.hc_c00211{height:80.631250pt;}
.h1_c00211{height:1020.000000pt;}
.h0_c00211{height:1020.160000pt;}
.w1_c00211{width:703.333333pt;}
.w0_c00211{width:703.360000pt;}
.x0_c00211{left:0.000000pt;}
.xb_c00211{left:65.920000pt;}
.x13_c00211{left:67.200000pt;}
.x61_c00211{left:68.480000pt;}
.x36_c00211{left:94.080000pt;}
.x2c_c00211{left:103.680000pt;}
.x17_c00211{left:105.600000pt;}
.x23_c00211{left:113.920000pt;}
.x62_c00211{left:121.600000pt;}
.xc_c00211{left:122.880000pt;}
.x3c_c00211{left:132.480000pt;}
.x49_c00211{left:140.800000pt;}
.x2d_c00211{left:142.080000pt;}
.x56_c00211{left:150.400000pt;}
.x2f_c00211{left:151.680000pt;}
.x1_c00211{left:161.280000pt;}
.xd_c00211{left:162.560000pt;}
.x4c_c00211{left:169.600000pt;}
.x18_c00211{left:170.880000pt;}
.x14_c00211{left:172.160000pt;}
.x4a_c00211{left:178.560000pt;}
.x45_c00211{left:179.840000pt;}
.x57_c00211{left:188.800000pt;}
.x2_c00211{left:190.080000pt;}
.x37_c00211{left:191.360000pt;}
.x5c_c00211{left:198.400000pt;}
.x30_c00211{left:199.680000pt;}
.x19_c00211{left:200.960000pt;}
.x24_c00211{left:211.200000pt;}
.x38_c00211{left:218.240000pt;}
.xe_c00211{left:219.520000pt;}
.x44_c00211{left:227.840000pt;}
.x3d_c00211{left:229.760000pt;}
.x58_c00211{left:236.800000pt;}
.x28_c00211{left:238.080000pt;}
.xf_c00211{left:239.360000pt;}
.x3f_c00211{left:247.040000pt;}
.x3_c00211{left:248.320000pt;}
.x51_c00211{left:256.000000pt;}
.x59_c00211{left:257.280000pt;}
.x29_c00211{left:266.880000pt;}
.x4_c00211{left:277.120000pt;}
.x1a_c00211{left:286.080000pt;}
.x5d_c00211{left:295.040000pt;}
.x46_c00211{left:296.960000pt;}
.x4d_c00211{left:304.640000pt;}
.x5_c00211{left:305.920000pt;}
.x3e_c00211{left:314.880000pt;}
.x5e_c00211{left:325.120000pt;}
.x1b_c00211{left:326.400000pt;}
.x10_c00211{left:334.720000pt;}
.x31_c00211{left:343.680000pt;}
.x1f_c00211{left:344.960000pt;}
.x52_c00211{left:362.240000pt;}
.x40_c00211{left:363.520000pt;}
.x5a_c00211{left:371.200000pt;}
.x11_c00211{left:373.120000pt;}
.x32_c00211{left:382.080000pt;}
.x15_c00211{left:401.920000pt;}
.x12_c00211{left:403.200000pt;}
.x5f_c00211{left:408.960000pt;}
.x20_c00211{left:410.880000pt;}
.x1c_c00211{left:412.160000pt;}
.x41_c00211{left:420.480000pt;}
.x39_c00211{left:429.440000pt;}
.x6_c00211{left:431.360000pt;}
.x47_c00211{left:439.680000pt;}
.x60_c00211{left:447.360000pt;}
.x2a_c00211{left:449.280000pt;}
.x27_c00211{left:458.880000pt;}
.x7_c00211{left:460.160000pt;}
.x25_c00211{left:469.120000pt;}
.x4e_c00211{left:476.800000pt;}
.x33_c00211{left:478.080000pt;}
.x53_c00211{left:486.400000pt;}
.x42_c00211{left:487.680000pt;}
.x4b_c00211{left:496.640000pt;}
.x8_c00211{left:497.920000pt;}
.x4f_c00211{left:504.960000pt;}
.x3a_c00211{left:506.880000pt;}
.x2b_c00211{left:515.840000pt;}
.x1d_c00211{left:517.120000pt;}
.x34_c00211{left:526.080000pt;}
.x16_c00211{left:527.360000pt;}
.x43_c00211{left:533.760000pt;}
.x3b_c00211{left:535.680000pt;}
.x54_c00211{left:544.000000pt;}
.x2e_c00211{left:554.240000pt;}
.x9_c00211{left:565.120000pt;}
.x55_c00211{left:572.800000pt;}
.x21_c00211{left:574.080000pt;}
.x1e_c00211{left:576.000000pt;}
.x50_c00211{left:580.480000pt;}
.x5b_c00211{left:581.760000pt;}
.x35_c00211{left:592.640000pt;}
.xa_c00211{left:593.920000pt;}
.x48_c00211{left:601.600000pt;}
.x26_c00211{left:604.160000pt;}
.x22_c00211{left:613.120000pt;}
.x63_c00211{left:616.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2b39844d11341402727317fa.woff2')format("woff");}.ff1_c00212{font-family:ff1_c00212;line-height:1.109863;font-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_c00212{transform:matrix(0.192225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192225,0.000000,0.000000,0.250000,0,0);}
.m48_c00212{transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);}
.m19_c00212{transform:matrix(0.241675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241675,0.000000,0.000000,0.250000,0,0);}
.m3b_c00212{transform:matrix(0.244425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244425,0.000000,0.000000,0.250000,0,0);}
.m12_c00212{transform:matrix(0.247900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247900,0.000000,0.000000,0.250000,0,0);}
.m26_c00212{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m38_c00212{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m30_c00212{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00212{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m25_c00212{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);}
.m1b_c00212{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mf_c00212{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.ma_c00212{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m27_c00212{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m35_c00212{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m16_c00212{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m39_c00212{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m10_c00212{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m29_c00212{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mb_c00212{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m13_c00212{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m17_c00212{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00212{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m47_c00212{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00212{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m22_c00212{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m6_c00212{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m44_c00212{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.me_c00212{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00212{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00212{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m42_c00212{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m20_c00212{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m5_c00212{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);}
.m45_c00212{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);}
.m40_c00212{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m31_c00212{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m0_c00212{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);}
.m36_c00212{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);}
.m3e_c00212{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00212{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);}
.m18_c00212{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m33_c00212{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);}
.m28_c00212{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);}
.m3a_c00212{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);}
.m32_c00212{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m2_c00212{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00212{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m43_c00212{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);}
.m14_c00212{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m1_c00212{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);}
.m41_c00212{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m23_c00212{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);}
.m2d_c00212{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m34_c00212{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m24_c00212{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00212{transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00212{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m11_c00212{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.md_c00212{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m3_c00212{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);}
.m9_c00212{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);}
.m49_c00212{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00212{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);}
.m2f_c00212{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m7_c00212{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);}
.m46_c00212{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00212{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);}
.mc_c00212{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00212{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m21_c00212{transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);}
.m4_c00212{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.m8_c00212{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.m37_c00212{transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);}
.v0_c00212{vertical-align:0.000000px;}
.ls0_c00212{letter-spacing:0.000000px;}
.sc__c00212{text-shadow:none;}
.sc0_c00212{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00212{-webkit-text-stroke:0px transparent;}
.sc0_c00212{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00212{word-spacing:0.000000px;}
.fc0_c00212{color:transparent;}
.fs4_c00212{font-size:34.560000px;}
.fsb_c00212{font-size:37.440000px;}
.fs9_c00212{font-size:40.320000px;}
.fs6_c00212{font-size:46.080000px;}
.fs3_c00212{font-size:48.960000px;}
.fs1_c00212{font-size:51.840000px;}
.fs8_c00212{font-size:54.720000px;}
.fs7_c00212{font-size:57.600000px;}
.fs2_c00212{font-size:60.480000px;}
.fsa_c00212{font-size:63.360000px;}
.fsd_c00212{font-size:66.240000px;}
.fsc_c00212{font-size:69.120000px;}
.fs0_c00212{font-size:72.000000px;}
.fs5_c00212{font-size:74.880000px;}
.fsf_c00212{font-size:77.760000px;}
.fse_c00212{font-size:103.680000px;}
.y0_c00212{bottom:0.000000px;}
.y71_c00212{bottom:112.320000px;}
.y70_c00212{bottom:115.200000px;}
.y72_c00212{bottom:117.360000px;}
.y6f_c00212{bottom:118.080000px;}
.y69_c00212{bottom:156.240000px;}
.y6c_c00212{bottom:157.680000px;}
.y6b_c00212{bottom:158.400000px;}
.y6a_c00212{bottom:159.840000px;}
.y68_c00212{bottom:160.560000px;}
.y67_c00212{bottom:161.280000px;}
.y6e_c00212{bottom:162.000000px;}
.y6d_c00212{bottom:162.720000px;}
.y63_c00212{bottom:198.720000px;}
.y64_c00212{bottom:202.320000px;}
.y65_c00212{bottom:203.040000px;}
.y61_c00212{bottom:203.760000px;}
.y62_c00212{bottom:204.480000px;}
.y66_c00212{bottom:205.920000px;}
.y5e_c00212{bottom:242.640000px;}
.y5f_c00212{bottom:245.520000px;}
.y60_c00212{bottom:246.240000px;}
.y5c_c00212{bottom:246.960000px;}
.y5d_c00212{bottom:247.680000px;}
.y57_c00212{bottom:286.560000px;}
.y56_c00212{bottom:288.720000px;}
.y58_c00212{bottom:289.440000px;}
.y5b_c00212{bottom:290.160000px;}
.y5a_c00212{bottom:290.880000px;}
.y59_c00212{bottom:291.600000px;}
.y55_c00212{bottom:329.040000px;}
.y52_c00212{bottom:331.200000px;}
.y54_c00212{bottom:332.640000px;}
.y53_c00212{bottom:333.360000px;}
.y50_c00212{bottom:374.400000px;}
.y51_c00212{bottom:375.840000px;}
.y4f_c00212{bottom:377.280000px;}
.y4c_c00212{bottom:426.960000px;}
.y4a_c00212{bottom:429.120000px;}
.y4b_c00212{bottom:430.560000px;}
.y4e_c00212{bottom:431.280000px;}
.y4d_c00212{bottom:432.000000px;}
.y46_c00212{bottom:470.160000px;}
.y45_c00212{bottom:471.600000px;}
.y48_c00212{bottom:472.320000px;}
.y47_c00212{bottom:473.040000px;}
.y44_c00212{bottom:473.760000px;}
.y49_c00212{bottom:475.200000px;}
.y42_c00212{bottom:514.800000px;}
.y43_c00212{bottom:515.520000px;}
.y41_c00212{bottom:517.680000px;}
.y3f_c00212{bottom:567.360000px;}
.y3e_c00212{bottom:570.240000px;}
.y40_c00212{bottom:572.400000px;}
.y3a_c00212{bottom:610.560000px;}
.y39_c00212{bottom:611.280000px;}
.y3b_c00212{bottom:612.720000px;}
.y3c_c00212{bottom:613.440000px;}
.y3d_c00212{bottom:614.880000px;}
.y36_c00212{bottom:653.040000px;}
.y34_c00212{bottom:654.480000px;}
.y35_c00212{bottom:656.640000px;}
.y38_c00212{bottom:657.360000px;}
.y37_c00212{bottom:658.080000px;}
.y30_c00212{bottom:695.520000px;}
.y2f_c00212{bottom:698.400000px;}
.y32_c00212{bottom:699.120000px;}
.y31_c00212{bottom:700.560000px;}
.y33_c00212{bottom:702.000000px;}
.y2b_c00212{bottom:738.720000px;}
.y2a_c00212{bottom:739.440000px;}
.y2c_c00212{bottom:742.320000px;}
.y2e_c00212{bottom:743.040000px;}
.y2d_c00212{bottom:744.480000px;}
.y25_c00212{bottom:781.920000px;}
.y27_c00212{bottom:783.360000px;}
.y24_c00212{bottom:784.080000px;}
.y28_c00212{bottom:784.800000px;}
.y29_c00212{bottom:785.520000px;}
.y26_c00212{bottom:786.240000px;}
.y20_c00212{bottom:825.120000px;}
.y1f_c00212{bottom:825.840000px;}
.y21_c00212{bottom:828.000000px;}
.y22_c00212{bottom:830.880000px;}
.y23_c00212{bottom:831.600000px;}
.y1e_c00212{bottom:860.400000px;}
.y19_c00212{bottom:868.320000px;}
.y1b_c00212{bottom:869.040000px;}
.y1d_c00212{bottom:871.920000px;}
.y1a_c00212{bottom:872.640000px;}
.y1c_c00212{bottom:874.080000px;}
.y13_c00212{bottom:911.520000px;}
.y12_c00212{bottom:912.240000px;}
.y15_c00212{bottom:912.960000px;}
.y18_c00212{bottom:914.400000px;}
.y16_c00212{bottom:915.120000px;}
.y14_c00212{bottom:915.840000px;}
.y17_c00212{bottom:916.560000px;}
.yc_c00212{bottom:954.720000px;}
.yb_c00212{bottom:956.160000px;}
.ye_c00212{bottom:956.880000px;}
.yf_c00212{bottom:957.600000px;}
.yd_c00212{bottom:958.320000px;}
.y10_c00212{bottom:959.760000px;}
.y11_c00212{bottom:960.480000px;}
.y7_c00212{bottom:997.920000px;}
.y6_c00212{bottom:999.360000px;}
.y8_c00212{bottom:1000.800000px;}
.ya_c00212{bottom:1002.240000px;}
.y9_c00212{bottom:1002.960000px;}
.y2_c00212{bottom:1044.000000px;}
.y3_c00212{bottom:1044.720000px;}
.y4_c00212{bottom:1046.160000px;}
.y5_c00212{bottom:1046.880000px;}
.y1_c00212{bottom:1088.640000px;}
.h6_c00212{height:31.100625px;}
.hd_c00212{height:33.692344px;}
.hb_c00212{height:36.284062px;}
.h8_c00212{height:41.467500px;}
.h5_c00212{height:44.059219px;}
.h3_c00212{height:46.650937px;}
.ha_c00212{height:49.242656px;}
.h9_c00212{height:51.834375px;}
.h4_c00212{height:54.426094px;}
.hc_c00212{height:57.017812px;}
.hf_c00212{height:59.609531px;}
.he_c00212{height:62.201250px;}
.h2_c00212{height:64.792969px;}
.h7_c00212{height:67.384687px;}
.h11_c00212{height:69.976406px;}
.h10_c00212{height:93.301875px;}
.h1_c00212{height:1147.500000px;}
.h0_c00212{height:1147.680000px;}
.w1_c00212{width:790.500000px;}
.w0_c00212{width:790.560000px;}
.x0_c00212{left:0.000000px;}
.x2_c00212{left:72.720000px;}
.x1f_c00212{left:74.160000px;}
.x22_c00212{left:75.600000px;}
.x2c_c00212{left:77.040000px;}
.xa_c00212{left:114.480000px;}
.x21_c00212{left:125.280000px;}
.x24_c00212{left:126.720000px;}
.x2e_c00212{left:128.880000px;}
.x3_c00212{left:136.800000px;}
.x2a_c00212{left:149.040000px;}
.x20_c00212{left:158.400000px;}
.x2d_c00212{left:159.840000px;}
.x26_c00212{left:169.200000px;}
.x33_c00212{left:170.640000px;}
.x12_c00212{left:202.320000px;}
.x18_c00212{left:213.120000px;}
.x29_c00212{left:214.560000px;}
.x2b_c00212{left:222.480000px;}
.x34_c00212{left:224.640000px;}
.x25_c00212{left:233.280000px;}
.x4_c00212{left:243.360000px;}
.x1c_c00212{left:244.800000px;}
.xb_c00212{left:267.120000px;}
.x2f_c00212{left:278.640000px;}
.x1d_c00212{left:288.000000px;}
.x27_c00212{left:300.240000px;}
.x19_c00212{left:309.600000px;}
.x30_c00212{left:333.360000px;}
.x13_c00212{left:342.720000px;}
.xc_c00212{left:408.240000px;}
.xd_c00212{left:450.000000px;}
.x31_c00212{left:451.440000px;}
.xe_c00212{left:483.120000px;}
.x23_c00212{left:493.920000px;}
.x14_c00212{left:524.880000px;}
.x5_c00212{left:568.080000px;}
.xf_c00212{left:569.520000px;}
.x28_c00212{left:570.960000px;}
.x1a_c00212{left:591.120000px;}
.x16_c00212{left:601.920000px;}
.x17_c00212{left:624.960000px;}
.x6_c00212{left:632.880000px;}
.x1b_c00212{left:635.040000px;}
.x7_c00212{left:665.280000px;}
.x10_c00212{left:666.720000px;}
.x1_c00212{left:677.520000px;}
.x8_c00212{left:697.680000px;}
.x11_c00212{left:699.120000px;}
.x15_c00212{left:708.480000px;}
.x1e_c00212{left:709.920000px;}
.x32_c00212{left:724.320000px;}
.x9_c00212{left:728.640000px;}
@media print{
.v0_c00212{vertical-align:0.000000pt;}
.ls0_c00212{letter-spacing:0.000000pt;}
.ws0_c00212{word-spacing:0.000000pt;}
.fs4_c00212{font-size:30.720000pt;}
.fsb_c00212{font-size:33.280000pt;}
.fs9_c00212{font-size:35.840000pt;}
.fs6_c00212{font-size:40.960000pt;}
.fs3_c00212{font-size:43.520000pt;}
.fs1_c00212{font-size:46.080000pt;}
.fs8_c00212{font-size:48.640000pt;}
.fs7_c00212{font-size:51.200000pt;}
.fs2_c00212{font-size:53.760000pt;}
.fsa_c00212{font-size:56.320000pt;}
.fsd_c00212{font-size:58.880000pt;}
.fsc_c00212{font-size:61.440000pt;}
.fs0_c00212{font-size:64.000000pt;}
.fs5_c00212{font-size:66.560000pt;}
.fsf_c00212{font-size:69.120000pt;}
.fse_c00212{font-size:92.160000pt;}
.y0_c00212{bottom:0.000000pt;}
.y71_c00212{bottom:99.840000pt;}
.y70_c00212{bottom:102.400000pt;}
.y72_c00212{bottom:104.320000pt;}
.y6f_c00212{bottom:104.960000pt;}
.y69_c00212{bottom:138.880000pt;}
.y6c_c00212{bottom:140.160000pt;}
.y6b_c00212{bottom:140.800000pt;}
.y6a_c00212{bottom:142.080000pt;}
.y68_c00212{bottom:142.720000pt;}
.y67_c00212{bottom:143.360000pt;}
.y6e_c00212{bottom:144.000000pt;}
.y6d_c00212{bottom:144.640000pt;}
.y63_c00212{bottom:176.640000pt;}
.y64_c00212{bottom:179.840000pt;}
.y65_c00212{bottom:180.480000pt;}
.y61_c00212{bottom:181.120000pt;}
.y62_c00212{bottom:181.760000pt;}
.y66_c00212{bottom:183.040000pt;}
.y5e_c00212{bottom:215.680000pt;}
.y5f_c00212{bottom:218.240000pt;}
.y60_c00212{bottom:218.880000pt;}
.y5c_c00212{bottom:219.520000pt;}
.y5d_c00212{bottom:220.160000pt;}
.y57_c00212{bottom:254.720000pt;}
.y56_c00212{bottom:256.640000pt;}
.y58_c00212{bottom:257.280000pt;}
.y5b_c00212{bottom:257.920000pt;}
.y5a_c00212{bottom:258.560000pt;}
.y59_c00212{bottom:259.200000pt;}
.y55_c00212{bottom:292.480000pt;}
.y52_c00212{bottom:294.400000pt;}
.y54_c00212{bottom:295.680000pt;}
.y53_c00212{bottom:296.320000pt;}
.y50_c00212{bottom:332.800000pt;}
.y51_c00212{bottom:334.080000pt;}
.y4f_c00212{bottom:335.360000pt;}
.y4c_c00212{bottom:379.520000pt;}
.y4a_c00212{bottom:381.440000pt;}
.y4b_c00212{bottom:382.720000pt;}
.y4e_c00212{bottom:383.360000pt;}
.y4d_c00212{bottom:384.000000pt;}
.y46_c00212{bottom:417.920000pt;}
.y45_c00212{bottom:419.200000pt;}
.y48_c00212{bottom:419.840000pt;}
.y47_c00212{bottom:420.480000pt;}
.y44_c00212{bottom:421.120000pt;}
.y49_c00212{bottom:422.400000pt;}
.y42_c00212{bottom:457.600000pt;}
.y43_c00212{bottom:458.240000pt;}
.y41_c00212{bottom:460.160000pt;}
.y3f_c00212{bottom:504.320000pt;}
.y3e_c00212{bottom:506.880000pt;}
.y40_c00212{bottom:508.800000pt;}
.y3a_c00212{bottom:542.720000pt;}
.y39_c00212{bottom:543.360000pt;}
.y3b_c00212{bottom:544.640000pt;}
.y3c_c00212{bottom:545.280000pt;}
.y3d_c00212{bottom:546.560000pt;}
.y36_c00212{bottom:580.480000pt;}
.y34_c00212{bottom:581.760000pt;}
.y35_c00212{bottom:583.680000pt;}
.y38_c00212{bottom:584.320000pt;}
.y37_c00212{bottom:584.960000pt;}
.y30_c00212{bottom:618.240000pt;}
.y2f_c00212{bottom:620.800000pt;}
.y32_c00212{bottom:621.440000pt;}
.y31_c00212{bottom:622.720000pt;}
.y33_c00212{bottom:624.000000pt;}
.y2b_c00212{bottom:656.640000pt;}
.y2a_c00212{bottom:657.280000pt;}
.y2c_c00212{bottom:659.840000pt;}
.y2e_c00212{bottom:660.480000pt;}
.y2d_c00212{bottom:661.760000pt;}
.y25_c00212{bottom:695.040000pt;}
.y27_c00212{bottom:696.320000pt;}
.y24_c00212{bottom:696.960000pt;}
.y28_c00212{bottom:697.600000pt;}
.y29_c00212{bottom:698.240000pt;}
.y26_c00212{bottom:698.880000pt;}
.y20_c00212{bottom:733.440000pt;}
.y1f_c00212{bottom:734.080000pt;}
.y21_c00212{bottom:736.000000pt;}
.y22_c00212{bottom:738.560000pt;}
.y23_c00212{bottom:739.200000pt;}
.y1e_c00212{bottom:764.800000pt;}
.y19_c00212{bottom:771.840000pt;}
.y1b_c00212{bottom:772.480000pt;}
.y1d_c00212{bottom:775.040000pt;}
.y1a_c00212{bottom:775.680000pt;}
.y1c_c00212{bottom:776.960000pt;}
.y13_c00212{bottom:810.240000pt;}
.y12_c00212{bottom:810.880000pt;}
.y15_c00212{bottom:811.520000pt;}
.y18_c00212{bottom:812.800000pt;}
.y16_c00212{bottom:813.440000pt;}
.y14_c00212{bottom:814.080000pt;}
.y17_c00212{bottom:814.720000pt;}
.yc_c00212{bottom:848.640000pt;}
.yb_c00212{bottom:849.920000pt;}
.ye_c00212{bottom:850.560000pt;}
.yf_c00212{bottom:851.200000pt;}
.yd_c00212{bottom:851.840000pt;}
.y10_c00212{bottom:853.120000pt;}
.y11_c00212{bottom:853.760000pt;}
.y7_c00212{bottom:887.040000pt;}
.y6_c00212{bottom:888.320000pt;}
.y8_c00212{bottom:889.600000pt;}
.ya_c00212{bottom:890.880000pt;}
.y9_c00212{bottom:891.520000pt;}
.y2_c00212{bottom:928.000000pt;}
.y3_c00212{bottom:928.640000pt;}
.y4_c00212{bottom:929.920000pt;}
.y5_c00212{bottom:930.560000pt;}
.y1_c00212{bottom:967.680000pt;}
.h6_c00212{height:27.645000pt;}
.hd_c00212{height:29.948750pt;}
.hb_c00212{height:32.252500pt;}
.h8_c00212{height:36.860000pt;}
.h5_c00212{height:39.163750pt;}
.h3_c00212{height:41.467500pt;}
.ha_c00212{height:43.771250pt;}
.h9_c00212{height:46.075000pt;}
.h4_c00212{height:48.378750pt;}
.hc_c00212{height:50.682500pt;}
.hf_c00212{height:52.986250pt;}
.he_c00212{height:55.290000pt;}
.h2_c00212{height:57.593750pt;}
.h7_c00212{height:59.897500pt;}
.h11_c00212{height:62.201250pt;}
.h10_c00212{height:82.935000pt;}
.h1_c00212{height:1020.000000pt;}
.h0_c00212{height:1020.160000pt;}
.w1_c00212{width:702.666667pt;}
.w0_c00212{width:702.720000pt;}
.x0_c00212{left:0.000000pt;}
.x2_c00212{left:64.640000pt;}
.x1f_c00212{left:65.920000pt;}
.x22_c00212{left:67.200000pt;}
.x2c_c00212{left:68.480000pt;}
.xa_c00212{left:101.760000pt;}
.x21_c00212{left:111.360000pt;}
.x24_c00212{left:112.640000pt;}
.x2e_c00212{left:114.560000pt;}
.x3_c00212{left:121.600000pt;}
.x2a_c00212{left:132.480000pt;}
.x20_c00212{left:140.800000pt;}
.x2d_c00212{left:142.080000pt;}
.x26_c00212{left:150.400000pt;}
.x33_c00212{left:151.680000pt;}
.x12_c00212{left:179.840000pt;}
.x18_c00212{left:189.440000pt;}
.x29_c00212{left:190.720000pt;}
.x2b_c00212{left:197.760000pt;}
.x34_c00212{left:199.680000pt;}
.x25_c00212{left:207.360000pt;}
.x4_c00212{left:216.320000pt;}
.x1c_c00212{left:217.600000pt;}
.xb_c00212{left:237.440000pt;}
.x2f_c00212{left:247.680000pt;}
.x1d_c00212{left:256.000000pt;}
.x27_c00212{left:266.880000pt;}
.x19_c00212{left:275.200000pt;}
.x30_c00212{left:296.320000pt;}
.x13_c00212{left:304.640000pt;}
.xc_c00212{left:362.880000pt;}
.xd_c00212{left:400.000000pt;}
.x31_c00212{left:401.280000pt;}
.xe_c00212{left:429.440000pt;}
.x23_c00212{left:439.040000pt;}
.x14_c00212{left:466.560000pt;}
.x5_c00212{left:504.960000pt;}
.xf_c00212{left:506.240000pt;}
.x28_c00212{left:507.520000pt;}
.x1a_c00212{left:525.440000pt;}
.x16_c00212{left:535.040000pt;}
.x17_c00212{left:555.520000pt;}
.x6_c00212{left:562.560000pt;}
.x1b_c00212{left:564.480000pt;}
.x7_c00212{left:591.360000pt;}
.x10_c00212{left:592.640000pt;}
.x1_c00212{left:602.240000pt;}
.x8_c00212{left:620.160000pt;}
.x11_c00212{left:621.440000pt;}
.x15_c00212{left:629.760000pt;}
.x1e_c00212{left:631.040000pt;}
.x32_c00212{left:643.840000pt;}
.x9_c00212{left:647.680000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_785fd983d830c5c73b97f125.woff2')format("woff");}.ff1_c00213{font-family:ff1_c00213;line-height:1.109863;font-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_c00213{transform:matrix(0.181350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181350,0.000000,0.000000,0.250000,0,0);}
.m4c_c00213{transform:matrix(0.214275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214275,0.000000,0.000000,0.250000,0,0);}
.m4a_c00213{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);}
.m31_c00213{transform:matrix(0.243825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243825,0.000000,0.000000,0.250000,0,0);}
.m21_c00213{transform:matrix(0.246450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246450,0.000000,0.000000,0.250000,0,0);}
.m55_c00213{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m45_c00213{transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);}
.mc_c00213{transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);}
.m42_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);}
.m52_c00213{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);}
.m46_c00213{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.ma_c00213{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_c00213{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_c00213{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m7_c00213{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m12_c00213{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00213{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m41_c00213{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00213{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m8_c00213{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m15_c00213{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00213{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00213{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00213{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m18_c00213{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m39_c00213{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m34_c00213{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m9_c00213{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m43_c00213{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m20_c00213{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m13_c00213{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m11_c00213{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1_c00213{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00213{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m16_c00213{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00213{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m17_c00213{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m38_c00213{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m53_c00213{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);}
.m3e_c00213{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00213{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);}
.m2e_c00213{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_c00213{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.md_c00213{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);}
.m44_c00213{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m24_c00213{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_c00213{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m26_c00213{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);}
.m28_c00213{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m54_c00213{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);}
.m0_c00213{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);}
.m2a_c00213{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);}
.m27_c00213{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);}
.m3_c00213{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00213{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m25_c00213{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);}
.m37_c00213{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);}
.m14_c00213{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);}
.m2b_c00213{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00213{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m2_c00213{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);}
.m29_c00213{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m23_c00213{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);}
.m5_c00213{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);}
.m4d_c00213{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m51_c00213{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.mb_c00213{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00213{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);}
.m19_c00213{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m4_c00213{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m32_c00213{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00213{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);}
.m22_c00213{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00213{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);}
.m36_c00213{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.me_c00213{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m6_c00213{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);}
.m1c_c00213{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m30_c00213{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00213{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m35_c00213{transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);}
.m49_c00213{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00213{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.m48_c00213{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m50_c00213{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m47_c00213{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);}
.v1_c00213{vertical-align:-2.880000px;}
.v0_c00213{vertical-align:0.000000px;}
.ls0_c00213{letter-spacing:0.000000px;}
.sc__c00213{text-shadow:none;}
.sc0_c00213{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00213{-webkit-text-stroke:0px transparent;}
.sc0_c00213{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00213{word-spacing:0.000000px;}
.ws0_c00213{word-spacing:18.608400px;}
.fc0_c00213{color:transparent;}
.fs10_c00213{font-size:5.760000px;}
.fs11_c00213{font-size:17.280000px;}
.fse_c00213{font-size:34.560000px;}
.fs4_c00213{font-size:37.440000px;}
.fsc_c00213{font-size:46.080000px;}
.fs0_c00213{font-size:48.960000px;}
.fs2_c00213{font-size:51.840000px;}
.fs7_c00213{font-size:54.720000px;}
.fs6_c00213{font-size:57.600000px;}
.fsa_c00213{font-size:60.480000px;}
.fs1_c00213{font-size:63.360000px;}
.fsd_c00213{font-size:66.240000px;}
.fs9_c00213{font-size:69.120000px;}
.fs3_c00213{font-size:72.000000px;}
.fs5_c00213{font-size:74.880000px;}
.fsb_c00213{font-size:77.760000px;}
.fsf_c00213{font-size:80.640000px;}
.fs12_c00213{font-size:100.800000px;}
.fs8_c00213{font-size:103.680000px;}
.y0_c00213{bottom:0.000000px;}
.y59_c00213{bottom:38.880000px;}
.y79_c00213{bottom:41.040000px;}
.y7a_c00213{bottom:43.200000px;}
.y76_c00213{bottom:43.920000px;}
.y58_c00213{bottom:45.360000px;}
.y57_c00213{bottom:81.360000px;}
.y75_c00213{bottom:83.520000px;}
.y77_c00213{bottom:84.960000px;}
.y78_c00213{bottom:86.400000px;}
.y56_c00213{bottom:87.120000px;}
.y54_c00213{bottom:126.720000px;}
.y52_c00213{bottom:127.440000px;}
.y55_c00213{bottom:128.160000px;}
.y50_c00213{bottom:128.880000px;}
.y4f_c00213{bottom:130.320000px;}
.y51_c00213{bottom:133.200000px;}
.y53_c00213{bottom:133.920000px;}
.y4e_c00213{bottom:178.560000px;}
.y73_c00213{bottom:182.160000px;}
.y4d_c00213{bottom:183.600000px;}
.y4c_c00213{bottom:184.320000px;}
.y74_c00213{bottom:185.040000px;}
.y49_c00213{bottom:223.200000px;}
.y4b_c00213{bottom:223.920000px;}
.y72_c00213{bottom:225.360000px;}
.y48_c00213{bottom:226.080000px;}
.y4a_c00213{bottom:226.800000px;}
.y47_c00213{bottom:265.680000px;}
.y71_c00213{bottom:267.840000px;}
.y45_c00213{bottom:269.280000px;}
.y46_c00213{bottom:270.720000px;}
.y43_c00213{bottom:311.040000px;}
.y44_c00213{bottom:311.760000px;}
.y42_c00213{bottom:314.640000px;}
.y41_c00213{bottom:363.600000px;}
.y40_c00213{bottom:365.040000px;}
.y70_c00213{bottom:365.760000px;}
.y3e_c00213{bottom:366.480000px;}
.y3f_c00213{bottom:367.920000px;}
.y3d_c00213{bottom:406.800000px;}
.y6e_c00213{bottom:408.960000px;}
.y3c_c00213{bottom:409.680000px;}
.y6f_c00213{bottom:410.400000px;}
.y3b_c00213{bottom:449.280000px;}
.y6c_c00213{bottom:451.440000px;}
.y39_c00213{bottom:452.160000px;}
.y38_c00213{bottom:452.880000px;}
.y3a_c00213{bottom:453.600000px;}
.y6d_c00213{bottom:454.320000px;}
.y37_c00213{bottom:492.480000px;}
.y6a_c00213{bottom:493.920000px;}
.y34_c00213{bottom:495.360000px;}
.y36_c00213{bottom:496.080000px;}
.y35_c00213{bottom:496.800000px;}
.y6b_c00213{bottom:497.520000px;}
.y33_c00213{bottom:538.560000px;}
.y31_c00213{bottom:539.280000px;}
.y30_c00213{bottom:540.000000px;}
.y32_c00213{bottom:544.320000px;}
.y2f_c00213{bottom:589.680000px;}
.y68_c00213{bottom:591.120000px;}
.y69_c00213{bottom:591.840000px;}
.y2d_c00213{bottom:592.560000px;}
.y2e_c00213{bottom:593.280000px;}
.y66_c00213{bottom:624.240000px;}
.y2c_c00213{bottom:632.880000px;}
.y67_c00213{bottom:633.600000px;}
.y65_c00213{bottom:634.320000px;}
.y2a_c00213{bottom:635.760000px;}
.y2b_c00213{bottom:636.480000px;}
.y29_c00213{bottom:675.360000px;}
.y28_c00213{bottom:677.520000px;}
.y64_c00213{bottom:685.440000px;}
.y63_c00213{bottom:690.480000px;}
.y25_c00213{bottom:707.760000px;}
.y27_c00213{bottom:708.480000px;}
.y23_c00213{bottom:709.920000px;}
.y26_c00213{bottom:711.360000px;}
.y24_c00213{bottom:712.080000px;}
.y62_c00213{bottom:750.240000px;}
.y21_c00213{bottom:750.960000px;}
.y22_c00213{bottom:751.680000px;}
.y60_c00213{bottom:753.120000px;}
.y20_c00213{bottom:753.840000px;}
.y61_c00213{bottom:754.560000px;}
.y5f_c00213{bottom:756.000000px;}
.y1e_c00213{bottom:795.600000px;}
.y1c_c00213{bottom:796.320000px;}
.y1f_c00213{bottom:797.040000px;}
.y5e_c00213{bottom:797.760000px;}
.y1d_c00213{bottom:798.480000px;}
.y5d_c00213{bottom:830.880000px;}
.y19_c00213{bottom:838.080000px;}
.y5b_c00213{bottom:838.800000px;}
.y18_c00213{bottom:839.520000px;}
.y1a_c00213{bottom:840.240000px;}
.y5c_c00213{bottom:840.960000px;}
.y1b_c00213{bottom:841.680000px;}
.y5a_c00213{bottom:842.400000px;}
.y16_c00213{bottom:881.280000px;}
.y15_c00213{bottom:882.000000px;}
.y17_c00213{bottom:884.880000px;}
.y14_c00213{bottom:924.480000px;}
.y13_c00213{bottom:925.920000px;}
.y11_c00213{bottom:926.640000px;}
.y12_c00213{bottom:928.080000px;}
.yf_c00213{bottom:960.480000px;}
.yb_c00213{bottom:967.680000px;}
.y10_c00213{bottom:968.400000px;}
.ya_c00213{bottom:969.840000px;}
.ye_c00213{bottom:970.560000px;}
.yc_c00213{bottom:971.280000px;}
.yd_c00213{bottom:972.000000px;}
.y7_c00213{bottom:1010.880000px;}
.y8_c00213{bottom:1011.600000px;}
.y9_c00213{bottom:1012.320000px;}
.y5_c00213{bottom:1013.760000px;}
.y6_c00213{bottom:1014.480000px;}
.y2_c00213{bottom:1056.240000px;}
.y3_c00213{bottom:1056.960000px;}
.y1_c00213{bottom:1057.680000px;}
.y4_c00213{bottom:1095.840000px;}
.h12_c00213{height:5.183438px;}
.h13_c00213{height:15.550313px;}
.h10_c00213{height:31.100625px;}
.h6_c00213{height:33.692344px;}
.he_c00213{height:41.467500px;}
.h2_c00213{height:44.059219px;}
.h4_c00213{height:46.650937px;}
.h9_c00213{height:49.242656px;}
.h8_c00213{height:51.834375px;}
.hc_c00213{height:54.426094px;}
.h3_c00213{height:57.017812px;}
.hf_c00213{height:59.609531px;}
.hb_c00213{height:62.201250px;}
.h5_c00213{height:64.792969px;}
.h7_c00213{height:67.384687px;}
.hd_c00213{height:69.976406px;}
.h11_c00213{height:72.568125px;}
.h14_c00213{height:90.710156px;}
.ha_c00213{height:93.301875px;}
.h1_c00213{height:1149.750000px;}
.h0_c00213{height:1149.840000px;}
.w0_c00213{width:794.880000px;}
.w1_c00213{width:795.000000px;}
.x0_c00213{left:0.000000px;}
.x5_c00213{left:73.440000px;}
.x1c_c00213{left:74.880000px;}
.x26_c00213{left:76.320000px;}
.x32_c00213{left:77.760000px;}
.x1_c00213{left:125.280000px;}
.x18_c00213{left:126.720000px;}
.x2a_c00213{left:128.160000px;}
.x2_c00213{left:148.320000px;}
.x2e_c00213{left:159.840000px;}
.x22_c00213{left:161.280000px;}
.x6_c00213{left:169.920000px;}
.x2f_c00213{left:172.800000px;}
.x25_c00213{left:179.280000px;}
.x21_c00213{left:180.720000px;}
.x7_c00213{left:213.120000px;}
.x3_c00213{left:222.480000px;}
.xb_c00213{left:224.640000px;}
.x30_c00213{left:226.080000px;}
.x19_c00213{left:234.000000px;}
.x31_c00213{left:236.160000px;}
.x29_c00213{left:244.800000px;}
.x23_c00213{left:246.240000px;}
.x12_c00213{left:255.600000px;}
.x27_c00213{left:265.680000px;}
.x24_c00213{left:267.840000px;}
.x16_c00213{left:277.200000px;}
.x1a_c00213{left:288.000000px;}
.x13_c00213{left:311.040000px;}
.x1e_c00213{left:312.480000px;}
.xc_c00213{left:321.120000px;}
.x17_c00213{left:331.920000px;}
.x2d_c00213{left:354.240000px;}
.x1f_c00213{left:365.040000px;}
.xd_c00213{left:375.840000px;}
.x1d_c00213{left:396.000000px;}
.x2b_c00213{left:408.240000px;}
.x20_c00213{left:419.040000px;}
.x1b_c00213{left:429.120000px;}
.x2c_c00213{left:462.240000px;}
.x28_c00213{left:473.760000px;}
.xe_c00213{left:483.120000px;}
.x14_c00213{left:559.440000px;}
.x33_c00213{left:570.240000px;}
.xf_c00213{left:590.400000px;}
.x15_c00213{left:591.840000px;}
.x36_c00213{left:602.640000px;}
.x8_c00213{left:624.240000px;}
.x9_c00213{left:655.200000px;}
.x34_c00213{left:656.640000px;}
.x11_c00213{left:689.040000px;}
.x35_c00213{left:691.200000px;}
.x4_c00213{left:697.680000px;}
.x10_c00213{left:699.120000px;}
.xa_c00213{left:719.280000px;}
.x37_c00213{left:730.800000px;}
.x38_c00213{left:740.160000px;}
@media print{
.v1_c00213{vertical-align:-2.560000pt;}
.v0_c00213{vertical-align:0.000000pt;}
.ls0_c00213{letter-spacing:0.000000pt;}
.ws1_c00213{word-spacing:0.000000pt;}
.ws0_c00213{word-spacing:16.540800pt;}
.fs10_c00213{font-size:5.120000pt;}
.fs11_c00213{font-size:15.360000pt;}
.fse_c00213{font-size:30.720000pt;}
.fs4_c00213{font-size:33.280000pt;}
.fsc_c00213{font-size:40.960000pt;}
.fs0_c00213{font-size:43.520000pt;}
.fs2_c00213{font-size:46.080000pt;}
.fs7_c00213{font-size:48.640000pt;}
.fs6_c00213{font-size:51.200000pt;}
.fsa_c00213{font-size:53.760000pt;}
.fs1_c00213{font-size:56.320000pt;}
.fsd_c00213{font-size:58.880000pt;}
.fs9_c00213{font-size:61.440000pt;}
.fs3_c00213{font-size:64.000000pt;}
.fs5_c00213{font-size:66.560000pt;}
.fsb_c00213{font-size:69.120000pt;}
.fsf_c00213{font-size:71.680000pt;}
.fs12_c00213{font-size:89.600000pt;}
.fs8_c00213{font-size:92.160000pt;}
.y0_c00213{bottom:0.000000pt;}
.y59_c00213{bottom:34.560000pt;}
.y79_c00213{bottom:36.480000pt;}
.y7a_c00213{bottom:38.400000pt;}
.y76_c00213{bottom:39.040000pt;}
.y58_c00213{bottom:40.320000pt;}
.y57_c00213{bottom:72.320000pt;}
.y75_c00213{bottom:74.240000pt;}
.y77_c00213{bottom:75.520000pt;}
.y78_c00213{bottom:76.800000pt;}
.y56_c00213{bottom:77.440000pt;}
.y54_c00213{bottom:112.640000pt;}
.y52_c00213{bottom:113.280000pt;}
.y55_c00213{bottom:113.920000pt;}
.y50_c00213{bottom:114.560000pt;}
.y4f_c00213{bottom:115.840000pt;}
.y51_c00213{bottom:118.400000pt;}
.y53_c00213{bottom:119.040000pt;}
.y4e_c00213{bottom:158.720000pt;}
.y73_c00213{bottom:161.920000pt;}
.y4d_c00213{bottom:163.200000pt;}
.y4c_c00213{bottom:163.840000pt;}
.y74_c00213{bottom:164.480000pt;}
.y49_c00213{bottom:198.400000pt;}
.y4b_c00213{bottom:199.040000pt;}
.y72_c00213{bottom:200.320000pt;}
.y48_c00213{bottom:200.960000pt;}
.y4a_c00213{bottom:201.600000pt;}
.y47_c00213{bottom:236.160000pt;}
.y71_c00213{bottom:238.080000pt;}
.y45_c00213{bottom:239.360000pt;}
.y46_c00213{bottom:240.640000pt;}
.y43_c00213{bottom:276.480000pt;}
.y44_c00213{bottom:277.120000pt;}
.y42_c00213{bottom:279.680000pt;}
.y41_c00213{bottom:323.200000pt;}
.y40_c00213{bottom:324.480000pt;}
.y70_c00213{bottom:325.120000pt;}
.y3e_c00213{bottom:325.760000pt;}
.y3f_c00213{bottom:327.040000pt;}
.y3d_c00213{bottom:361.600000pt;}
.y6e_c00213{bottom:363.520000pt;}
.y3c_c00213{bottom:364.160000pt;}
.y6f_c00213{bottom:364.800000pt;}
.y3b_c00213{bottom:399.360000pt;}
.y6c_c00213{bottom:401.280000pt;}
.y39_c00213{bottom:401.920000pt;}
.y38_c00213{bottom:402.560000pt;}
.y3a_c00213{bottom:403.200000pt;}
.y6d_c00213{bottom:403.840000pt;}
.y37_c00213{bottom:437.760000pt;}
.y6a_c00213{bottom:439.040000pt;}
.y34_c00213{bottom:440.320000pt;}
.y36_c00213{bottom:440.960000pt;}
.y35_c00213{bottom:441.600000pt;}
.y6b_c00213{bottom:442.240000pt;}
.y33_c00213{bottom:478.720000pt;}
.y31_c00213{bottom:479.360000pt;}
.y30_c00213{bottom:480.000000pt;}
.y32_c00213{bottom:483.840000pt;}
.y2f_c00213{bottom:524.160000pt;}
.y68_c00213{bottom:525.440000pt;}
.y69_c00213{bottom:526.080000pt;}
.y2d_c00213{bottom:526.720000pt;}
.y2e_c00213{bottom:527.360000pt;}
.y66_c00213{bottom:554.880000pt;}
.y2c_c00213{bottom:562.560000pt;}
.y67_c00213{bottom:563.200000pt;}
.y65_c00213{bottom:563.840000pt;}
.y2a_c00213{bottom:565.120000pt;}
.y2b_c00213{bottom:565.760000pt;}
.y29_c00213{bottom:600.320000pt;}
.y28_c00213{bottom:602.240000pt;}
.y64_c00213{bottom:609.280000pt;}
.y63_c00213{bottom:613.760000pt;}
.y25_c00213{bottom:629.120000pt;}
.y27_c00213{bottom:629.760000pt;}
.y23_c00213{bottom:631.040000pt;}
.y26_c00213{bottom:632.320000pt;}
.y24_c00213{bottom:632.960000pt;}
.y62_c00213{bottom:666.880000pt;}
.y21_c00213{bottom:667.520000pt;}
.y22_c00213{bottom:668.160000pt;}
.y60_c00213{bottom:669.440000pt;}
.y20_c00213{bottom:670.080000pt;}
.y61_c00213{bottom:670.720000pt;}
.y5f_c00213{bottom:672.000000pt;}
.y1e_c00213{bottom:707.200000pt;}
.y1c_c00213{bottom:707.840000pt;}
.y1f_c00213{bottom:708.480000pt;}
.y5e_c00213{bottom:709.120000pt;}
.y1d_c00213{bottom:709.760000pt;}
.y5d_c00213{bottom:738.560000pt;}
.y19_c00213{bottom:744.960000pt;}
.y5b_c00213{bottom:745.600000pt;}
.y18_c00213{bottom:746.240000pt;}
.y1a_c00213{bottom:746.880000pt;}
.y5c_c00213{bottom:747.520000pt;}
.y1b_c00213{bottom:748.160000pt;}
.y5a_c00213{bottom:748.800000pt;}
.y16_c00213{bottom:783.360000pt;}
.y15_c00213{bottom:784.000000pt;}
.y17_c00213{bottom:786.560000pt;}
.y14_c00213{bottom:821.760000pt;}
.y13_c00213{bottom:823.040000pt;}
.y11_c00213{bottom:823.680000pt;}
.y12_c00213{bottom:824.960000pt;}
.yf_c00213{bottom:853.760000pt;}
.yb_c00213{bottom:860.160000pt;}
.y10_c00213{bottom:860.800000pt;}
.ya_c00213{bottom:862.080000pt;}
.ye_c00213{bottom:862.720000pt;}
.yc_c00213{bottom:863.360000pt;}
.yd_c00213{bottom:864.000000pt;}
.y7_c00213{bottom:898.560000pt;}
.y8_c00213{bottom:899.200000pt;}
.y9_c00213{bottom:899.840000pt;}
.y5_c00213{bottom:901.120000pt;}
.y6_c00213{bottom:901.760000pt;}
.y2_c00213{bottom:938.880000pt;}
.y3_c00213{bottom:939.520000pt;}
.y1_c00213{bottom:940.160000pt;}
.y4_c00213{bottom:974.080000pt;}
.h12_c00213{height:4.607500pt;}
.h13_c00213{height:13.822500pt;}
.h10_c00213{height:27.645000pt;}
.h6_c00213{height:29.948750pt;}
.he_c00213{height:36.860000pt;}
.h2_c00213{height:39.163750pt;}
.h4_c00213{height:41.467500pt;}
.h9_c00213{height:43.771250pt;}
.h8_c00213{height:46.075000pt;}
.hc_c00213{height:48.378750pt;}
.h3_c00213{height:50.682500pt;}
.hf_c00213{height:52.986250pt;}
.hb_c00213{height:55.290000pt;}
.h5_c00213{height:57.593750pt;}
.h7_c00213{height:59.897500pt;}
.hd_c00213{height:62.201250pt;}
.h11_c00213{height:64.505000pt;}
.h14_c00213{height:80.631250pt;}
.ha_c00213{height:82.935000pt;}
.h1_c00213{height:1022.000000pt;}
.h0_c00213{height:1022.080000pt;}
.w0_c00213{width:706.560000pt;}
.w1_c00213{width:706.666667pt;}
.x0_c00213{left:0.000000pt;}
.x5_c00213{left:65.280000pt;}
.x1c_c00213{left:66.560000pt;}
.x26_c00213{left:67.840000pt;}
.x32_c00213{left:69.120000pt;}
.x1_c00213{left:111.360000pt;}
.x18_c00213{left:112.640000pt;}
.x2a_c00213{left:113.920000pt;}
.x2_c00213{left:131.840000pt;}
.x2e_c00213{left:142.080000pt;}
.x22_c00213{left:143.360000pt;}
.x6_c00213{left:151.040000pt;}
.x2f_c00213{left:153.600000pt;}
.x25_c00213{left:159.360000pt;}
.x21_c00213{left:160.640000pt;}
.x7_c00213{left:189.440000pt;}
.x3_c00213{left:197.760000pt;}
.xb_c00213{left:199.680000pt;}
.x30_c00213{left:200.960000pt;}
.x19_c00213{left:208.000000pt;}
.x31_c00213{left:209.920000pt;}
.x29_c00213{left:217.600000pt;}
.x23_c00213{left:218.880000pt;}
.x12_c00213{left:227.200000pt;}
.x27_c00213{left:236.160000pt;}
.x24_c00213{left:238.080000pt;}
.x16_c00213{left:246.400000pt;}
.x1a_c00213{left:256.000000pt;}
.x13_c00213{left:276.480000pt;}
.x1e_c00213{left:277.760000pt;}
.xc_c00213{left:285.440000pt;}
.x17_c00213{left:295.040000pt;}
.x2d_c00213{left:314.880000pt;}
.x1f_c00213{left:324.480000pt;}
.xd_c00213{left:334.080000pt;}
.x1d_c00213{left:352.000000pt;}
.x2b_c00213{left:362.880000pt;}
.x20_c00213{left:372.480000pt;}
.x1b_c00213{left:381.440000pt;}
.x2c_c00213{left:410.880000pt;}
.x28_c00213{left:421.120000pt;}
.xe_c00213{left:429.440000pt;}
.x14_c00213{left:497.280000pt;}
.x33_c00213{left:506.880000pt;}
.xf_c00213{left:524.800000pt;}
.x15_c00213{left:526.080000pt;}
.x36_c00213{left:535.680000pt;}
.x8_c00213{left:554.880000pt;}
.x9_c00213{left:582.400000pt;}
.x34_c00213{left:583.680000pt;}
.x11_c00213{left:612.480000pt;}
.x35_c00213{left:614.400000pt;}
.x4_c00213{left:620.160000pt;}
.x10_c00213{left:621.440000pt;}
.xa_c00213{left:639.360000pt;}
.x37_c00213{left:649.600000pt;}
.x38_c00213{left:657.920000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ec459615e82ff8eec5be1a08.woff2')format("woff");}.ff1_c00214{font-family:ff1_c00214;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4e_c00214{transform:matrix(0.192225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192225,0.000000,0.000000,0.250000,0,0);}
.m48_c00214{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m20_c00214{transform:matrix(0.214625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214625,0.000000,0.000000,0.250000,0,0);}
.m4b_c00214{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_c00214{transform:matrix(0.229475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229475,0.000000,0.000000,0.250000,0,0);}
.ma_c00214{transform:matrix(0.230325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230325,0.000000,0.000000,0.250000,0,0);}
.m6_c00214{transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);}
.m4c_c00214{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m3c_c00214{transform:matrix(0.237450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237450,0.000000,0.000000,0.250000,0,0);}
.m1_c00214{transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);}
.m2e_c00214{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);}
.m4d_c00214{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m2f_c00214{transform:matrix(0.247675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247675,0.000000,0.000000,0.250000,0,0);}
.m46_c00214{transform:matrix(0.248025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248025,0.000000,0.000000,0.250000,0,0);}
.m23_c00214{transform:matrix(0.248650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248650,0.000000,0.000000,0.250000,0,0);}
.m25_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);}
.m50_c00214{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);}
.m42_c00214{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);}
.m28_c00214{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);}
.m47_c00214{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_c00214{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);}
.m34_c00214{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m5_c00214{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_c00214{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m14_c00214{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m7_c00214{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m44_c00214{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00214{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00214{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m24_c00214{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m10_c00214{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m17_c00214{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m12_c00214{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00214{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m8_c00214{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m30_c00214{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mb_c00214{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00214{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m15_c00214{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m49_c00214{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m45_c00214{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00214{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m18_c00214{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m2_c00214{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);}
.m52_c00214{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);}
.m43_c00214{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);}
.m21_c00214{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00214{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);}
.m33_c00214{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00214{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);}
.m41_c00214{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);}
.m3f_c00214{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m3_c00214{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);}
.m35_c00214{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m31_c00214{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.md_c00214{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00214{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);}
.m9_c00214{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);}
.m38_c00214{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);}
.m37_c00214{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00214{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00214{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);}
.m13_c00214{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m32_c00214{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);}
.m0_c00214{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m29_c00214{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m36_c00214{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);}
.m26_c00214{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00214{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m51_c00214{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);}
.m3a_c00214{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00214{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m16_c00214{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);}
.m19_c00214{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);}
.m3e_c00214{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m40_c00214{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m53_c00214{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);}
.m11_c00214{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.mf_c00214{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);}
.m4_c00214{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00214{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);}
.m27_c00214{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m22_c00214{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m39_c00214{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.v0_c00214{vertical-align:0.000000px;}
.ls0_c00214{letter-spacing:0.000000px;}
.sc__c00214{text-shadow:none;}
.sc0_c00214{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00214{-webkit-text-stroke:0px transparent;}
.sc0_c00214{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00214{word-spacing:0.000000px;}
.fc0_c00214{color:transparent;}
.fsd_c00214{font-size:6.000000px;}
.fsf_c00214{font-size:28.800000px;}
.fs8_c00214{font-size:37.440000px;}
.fsc_c00214{font-size:40.320000px;}
.fs11_c00214{font-size:43.200000px;}
.fsa_c00214{font-size:46.080000px;}
.fs9_c00214{font-size:48.960000px;}
.fs2_c00214{font-size:51.840000px;}
.fsb_c00214{font-size:54.720000px;}
.fs0_c00214{font-size:57.600000px;}
.fs6_c00214{font-size:60.480000px;}
.fs5_c00214{font-size:63.360000px;}
.fs10_c00214{font-size:66.240000px;}
.fs7_c00214{font-size:69.120000px;}
.fs3_c00214{font-size:72.000000px;}
.fs1_c00214{font-size:74.880000px;}
.fs4_c00214{font-size:77.760000px;}
.fse_c00214{font-size:89.280000px;}
.y0_c00214{bottom:0.000000px;}
.y51_c00214{bottom:59.760000px;}
.y50_c00214{bottom:61.200000px;}
.y4f_c00214{bottom:61.920000px;}
.y7f_c00214{bottom:63.360000px;}
.y80_c00214{bottom:66.240000px;}
.y4e_c00214{bottom:66.960000px;}
.y4c_c00214{bottom:104.400000px;}
.y4d_c00214{bottom:105.120000px;}
.y4b_c00214{bottom:108.000000px;}
.y7e_c00214{bottom:108.720000px;}
.y4a_c00214{bottom:110.880000px;}
.y48_c00214{bottom:148.320000px;}
.y49_c00214{bottom:150.480000px;}
.y7b_c00214{bottom:151.200000px;}
.y7d_c00214{bottom:151.920000px;}
.y47_c00214{bottom:152.640000px;}
.y7c_c00214{bottom:153.360000px;}
.y45_c00214{bottom:191.520000px;}
.y44_c00214{bottom:192.240000px;}
.y79_c00214{bottom:194.400000px;}
.y46_c00214{bottom:195.120000px;}
.y43_c00214{bottom:195.840000px;}
.y7a_c00214{bottom:196.560000px;}
.y42_c00214{bottom:197.280000px;}
.y41_c00214{bottom:234.720000px;}
.y40_c00214{bottom:236.880000px;}
.y77_c00214{bottom:237.600000px;}
.y3f_c00214{bottom:238.320000px;}
.y3e_c00214{bottom:239.760000px;}
.y78_c00214{bottom:240.480000px;}
.y3d_c00214{bottom:277.200000px;}
.y74_c00214{bottom:280.080000px;}
.y73_c00214{bottom:280.800000px;}
.y3c_c00214{bottom:281.520000px;}
.y3b_c00214{bottom:282.240000px;}
.y76_c00214{bottom:282.960000px;}
.y75_c00214{bottom:283.680000px;}
.y3a_c00214{bottom:320.400000px;}
.y38_c00214{bottom:321.840000px;}
.y71_c00214{bottom:323.280000px;}
.y39_c00214{bottom:324.000000px;}
.y36_c00214{bottom:324.720000px;}
.y37_c00214{bottom:325.440000px;}
.y72_c00214{bottom:326.160000px;}
.y35_c00214{bottom:363.600000px;}
.y6f_c00214{bottom:366.480000px;}
.y33_c00214{bottom:367.200000px;}
.y34_c00214{bottom:367.920000px;}
.y70_c00214{bottom:368.640000px;}
.y32_c00214{bottom:406.800000px;}
.y6e_c00214{bottom:408.960000px;}
.y2f_c00214{bottom:409.680000px;}
.y31_c00214{bottom:411.120000px;}
.y30_c00214{bottom:411.840000px;}
.y2e_c00214{bottom:450.000000px;}
.y6c_c00214{bottom:452.160000px;}
.y2c_c00214{bottom:452.880000px;}
.y6d_c00214{bottom:453.600000px;}
.y2d_c00214{bottom:454.320000px;}
.y29_c00214{bottom:483.840000px;}
.y27_c00214{bottom:493.200000px;}
.y2b_c00214{bottom:493.920000px;}
.y26_c00214{bottom:495.360000px;}
.y2a_c00214{bottom:496.800000px;}
.y6b_c00214{bottom:497.520000px;}
.y28_c00214{bottom:507.600000px;}
.y24_c00214{bottom:537.120000px;}
.y25_c00214{bottom:538.560000px;}
.y23_c00214{bottom:539.280000px;}
.y6a_c00214{bottom:540.000000px;}
.y69_c00214{bottom:540.720000px;}
.y22_c00214{bottom:580.320000px;}
.y21_c00214{bottom:582.480000px;}
.y68_c00214{bottom:583.200000px;}
.y67_c00214{bottom:583.920000px;}
.y66_c00214{bottom:584.640000px;}
.y14_c00214{bottom:622.800000px;}
.y13_c00214{bottom:623.520000px;}
.y11_c00214{bottom:624.240000px;}
.y16_c00214{bottom:624.960000px;}
.y15_c00214{bottom:625.680000px;}
.y12_c00214{bottom:627.120000px;}
.y10_c00214{bottom:666.720000px;}
.yf_c00214{bottom:668.160000px;}
.yd_c00214{bottom:699.120000px;}
.ye_c00214{bottom:699.840000px;}
.yc_c00214{bottom:700.560000px;}
.y64_c00214{bottom:701.280000px;}
.y65_c00214{bottom:703.440000px;}
.y9_c00214{bottom:741.600000px;}
.yb_c00214{bottom:743.040000px;}
.y8_c00214{bottom:743.760000px;}
.y62_c00214{bottom:744.480000px;}
.y63_c00214{bottom:745.200000px;}
.ya_c00214{bottom:745.920000px;}
.y6_c00214{bottom:784.800000px;}
.y5_c00214{bottom:786.240000px;}
.y7_c00214{bottom:786.960000px;}
.y61_c00214{bottom:787.680000px;}
.y4_c00214{bottom:828.000000px;}
.y3_c00214{bottom:829.440000px;}
.y5f_c00214{bottom:830.160000px;}
.y5e_c00214{bottom:830.880000px;}
.y60_c00214{bottom:831.600000px;}
.y1_c00214{bottom:871.920000px;}
.y5d_c00214{bottom:872.640000px;}
.y5b_c00214{bottom:873.360000px;}
.y5c_c00214{bottom:874.080000px;}
.y5a_c00214{bottom:874.800000px;}
.y2_c00214{bottom:875.520000px;}
.y1e_c00214{bottom:914.400000px;}
.y1d_c00214{bottom:915.120000px;}
.y59_c00214{bottom:915.840000px;}
.y1f_c00214{bottom:918.000000px;}
.y20_c00214{bottom:918.720000px;}
.y58_c00214{bottom:956.880000px;}
.y1c_c00214{bottom:957.600000px;}
.y56_c00214{bottom:958.320000px;}
.y57_c00214{bottom:959.760000px;}
.y19_c00214{bottom:1000.080000px;}
.y18_c00214{bottom:1000.800000px;}
.y55_c00214{bottom:1001.520000px;}
.y1b_c00214{bottom:1002.240000px;}
.y54_c00214{bottom:1002.960000px;}
.y1a_c00214{bottom:1004.400000px;}
.y17_c00214{bottom:1044.000000px;}
.y53_c00214{bottom:1044.720000px;}
.y52_c00214{bottom:1108.800000px;}
.hf_c00214{height:5.399414px;}
.h11_c00214{height:25.917187px;}
.ha_c00214{height:33.692344px;}
.he_c00214{height:36.284062px;}
.h13_c00214{height:38.875781px;}
.hc_c00214{height:41.467500px;}
.hb_c00214{height:44.059219px;}
.h4_c00214{height:46.650937px;}
.hd_c00214{height:49.242656px;}
.h2_c00214{height:51.834375px;}
.h8_c00214{height:54.426094px;}
.h7_c00214{height:57.017812px;}
.h12_c00214{height:59.609531px;}
.h9_c00214{height:62.201250px;}
.h5_c00214{height:64.792969px;}
.h3_c00214{height:67.384687px;}
.h6_c00214{height:69.976406px;}
.h10_c00214{height:80.343281px;}
.h1_c00214{height:1149.750000px;}
.h0_c00214{height:1149.840000px;}
.w0_c00214{width:794.880000px;}
.w1_c00214{width:795.000000px;}
.x0_c00214{left:0.000000px;}
.x1_c00214{left:72.000000px;}
.xf_c00214{left:73.440000px;}
.x1c_c00214{left:74.880000px;}
.x24_c00214{left:95.040000px;}
.x7_c00214{left:123.840000px;}
.x2_c00214{left:125.280000px;}
.x28_c00214{left:126.720000px;}
.x23_c00214{left:167.040000px;}
.x10_c00214{left:168.480000px;}
.xe_c00214{left:179.280000px;}
.x1f_c00214{left:203.040000px;}
.x3_c00214{left:209.520000px;}
.x8_c00214{left:211.680000px;}
.x20_c00214{left:213.120000px;}
.x17_c00214{left:220.320000px;}
.x1d_c00214{left:222.480000px;}
.x25_c00214{left:233.280000px;}
.xc_c00214{left:244.080000px;}
.x4_c00214{left:254.880000px;}
.x21_c00214{left:264.960000px;}
.x18_c00214{left:266.400000px;}
.x2a_c00214{left:277.200000px;}
.x1b_c00214{left:288.000000px;}
.x11_c00214{left:319.680000px;}
.x26_c00214{left:330.480000px;}
.x29_c00214{left:331.920000px;}
.x5_c00214{left:341.280000px;}
.x9_c00214{left:352.080000px;}
.x22_c00214{left:363.600000px;}
.x27_c00214{left:384.480000px;}
.x6_c00214{left:396.000000px;}
.x1a_c00214{left:406.800000px;}
.xa_c00214{left:416.880000px;}
.x1e_c00214{left:439.200000px;}
.x19_c00214{left:449.280000px;}
.xb_c00214{left:470.880000px;}
.xd_c00214{left:504.000000px;}
.x12_c00214{left:514.800000px;}
.x13_c00214{left:558.000000px;}
.x2f_c00214{left:568.080000px;}
.x2c_c00214{left:569.520000px;}
.x2d_c00214{left:590.400000px;}
.x14_c00214{left:622.080000px;}
.x30_c00214{left:623.520000px;}
.x15_c00214{left:655.200000px;}
.x31_c00214{left:686.880000px;}
.x32_c00214{left:696.240000px;}
.x16_c00214{left:697.680000px;}
.x2b_c00214{left:707.040000px;}
.x2e_c00214{left:717.120000px;}
@media print{
.v0_c00214{vertical-align:0.000000pt;}
.ls0_c00214{letter-spacing:0.000000pt;}
.ws0_c00214{word-spacing:0.000000pt;}
.fsd_c00214{font-size:5.333333pt;}
.fsf_c00214{font-size:25.600000pt;}
.fs8_c00214{font-size:33.280000pt;}
.fsc_c00214{font-size:35.840000pt;}
.fs11_c00214{font-size:38.400000pt;}
.fsa_c00214{font-size:40.960000pt;}
.fs9_c00214{font-size:43.520000pt;}
.fs2_c00214{font-size:46.080000pt;}
.fsb_c00214{font-size:48.640000pt;}
.fs0_c00214{font-size:51.200000pt;}
.fs6_c00214{font-size:53.760000pt;}
.fs5_c00214{font-size:56.320000pt;}
.fs10_c00214{font-size:58.880000pt;}
.fs7_c00214{font-size:61.440000pt;}
.fs3_c00214{font-size:64.000000pt;}
.fs1_c00214{font-size:66.560000pt;}
.fs4_c00214{font-size:69.120000pt;}
.fse_c00214{font-size:79.360000pt;}
.y0_c00214{bottom:0.000000pt;}
.y51_c00214{bottom:53.120000pt;}
.y50_c00214{bottom:54.400000pt;}
.y4f_c00214{bottom:55.040000pt;}
.y7f_c00214{bottom:56.320000pt;}
.y80_c00214{bottom:58.880000pt;}
.y4e_c00214{bottom:59.520000pt;}
.y4c_c00214{bottom:92.800000pt;}
.y4d_c00214{bottom:93.440000pt;}
.y4b_c00214{bottom:96.000000pt;}
.y7e_c00214{bottom:96.640000pt;}
.y4a_c00214{bottom:98.560000pt;}
.y48_c00214{bottom:131.840000pt;}
.y49_c00214{bottom:133.760000pt;}
.y7b_c00214{bottom:134.400000pt;}
.y7d_c00214{bottom:135.040000pt;}
.y47_c00214{bottom:135.680000pt;}
.y7c_c00214{bottom:136.320000pt;}
.y45_c00214{bottom:170.240000pt;}
.y44_c00214{bottom:170.880000pt;}
.y79_c00214{bottom:172.800000pt;}
.y46_c00214{bottom:173.440000pt;}
.y43_c00214{bottom:174.080000pt;}
.y7a_c00214{bottom:174.720000pt;}
.y42_c00214{bottom:175.360000pt;}
.y41_c00214{bottom:208.640000pt;}
.y40_c00214{bottom:210.560000pt;}
.y77_c00214{bottom:211.200000pt;}
.y3f_c00214{bottom:211.840000pt;}
.y3e_c00214{bottom:213.120000pt;}
.y78_c00214{bottom:213.760000pt;}
.y3d_c00214{bottom:246.400000pt;}
.y74_c00214{bottom:248.960000pt;}
.y73_c00214{bottom:249.600000pt;}
.y3c_c00214{bottom:250.240000pt;}
.y3b_c00214{bottom:250.880000pt;}
.y76_c00214{bottom:251.520000pt;}
.y75_c00214{bottom:252.160000pt;}
.y3a_c00214{bottom:284.800000pt;}
.y38_c00214{bottom:286.080000pt;}
.y71_c00214{bottom:287.360000pt;}
.y39_c00214{bottom:288.000000pt;}
.y36_c00214{bottom:288.640000pt;}
.y37_c00214{bottom:289.280000pt;}
.y72_c00214{bottom:289.920000pt;}
.y35_c00214{bottom:323.200000pt;}
.y6f_c00214{bottom:325.760000pt;}
.y33_c00214{bottom:326.400000pt;}
.y34_c00214{bottom:327.040000pt;}
.y70_c00214{bottom:327.680000pt;}
.y32_c00214{bottom:361.600000pt;}
.y6e_c00214{bottom:363.520000pt;}
.y2f_c00214{bottom:364.160000pt;}
.y31_c00214{bottom:365.440000pt;}
.y30_c00214{bottom:366.080000pt;}
.y2e_c00214{bottom:400.000000pt;}
.y6c_c00214{bottom:401.920000pt;}
.y2c_c00214{bottom:402.560000pt;}
.y6d_c00214{bottom:403.200000pt;}
.y2d_c00214{bottom:403.840000pt;}
.y29_c00214{bottom:430.080000pt;}
.y27_c00214{bottom:438.400000pt;}
.y2b_c00214{bottom:439.040000pt;}
.y26_c00214{bottom:440.320000pt;}
.y2a_c00214{bottom:441.600000pt;}
.y6b_c00214{bottom:442.240000pt;}
.y28_c00214{bottom:451.200000pt;}
.y24_c00214{bottom:477.440000pt;}
.y25_c00214{bottom:478.720000pt;}
.y23_c00214{bottom:479.360000pt;}
.y6a_c00214{bottom:480.000000pt;}
.y69_c00214{bottom:480.640000pt;}
.y22_c00214{bottom:515.840000pt;}
.y21_c00214{bottom:517.760000pt;}
.y68_c00214{bottom:518.400000pt;}
.y67_c00214{bottom:519.040000pt;}
.y66_c00214{bottom:519.680000pt;}
.y14_c00214{bottom:553.600000pt;}
.y13_c00214{bottom:554.240000pt;}
.y11_c00214{bottom:554.880000pt;}
.y16_c00214{bottom:555.520000pt;}
.y15_c00214{bottom:556.160000pt;}
.y12_c00214{bottom:557.440000pt;}
.y10_c00214{bottom:592.640000pt;}
.yf_c00214{bottom:593.920000pt;}
.yd_c00214{bottom:621.440000pt;}
.ye_c00214{bottom:622.080000pt;}
.yc_c00214{bottom:622.720000pt;}
.y64_c00214{bottom:623.360000pt;}
.y65_c00214{bottom:625.280000pt;}
.y9_c00214{bottom:659.200000pt;}
.yb_c00214{bottom:660.480000pt;}
.y8_c00214{bottom:661.120000pt;}
.y62_c00214{bottom:661.760000pt;}
.y63_c00214{bottom:662.400000pt;}
.ya_c00214{bottom:663.040000pt;}
.y6_c00214{bottom:697.600000pt;}
.y5_c00214{bottom:698.880000pt;}
.y7_c00214{bottom:699.520000pt;}
.y61_c00214{bottom:700.160000pt;}
.y4_c00214{bottom:736.000000pt;}
.y3_c00214{bottom:737.280000pt;}
.y5f_c00214{bottom:737.920000pt;}
.y5e_c00214{bottom:738.560000pt;}
.y60_c00214{bottom:739.200000pt;}
.y1_c00214{bottom:775.040000pt;}
.y5d_c00214{bottom:775.680000pt;}
.y5b_c00214{bottom:776.320000pt;}
.y5c_c00214{bottom:776.960000pt;}
.y5a_c00214{bottom:777.600000pt;}
.y2_c00214{bottom:778.240000pt;}
.y1e_c00214{bottom:812.800000pt;}
.y1d_c00214{bottom:813.440000pt;}
.y59_c00214{bottom:814.080000pt;}
.y1f_c00214{bottom:816.000000pt;}
.y20_c00214{bottom:816.640000pt;}
.y58_c00214{bottom:850.560000pt;}
.y1c_c00214{bottom:851.200000pt;}
.y56_c00214{bottom:851.840000pt;}
.y57_c00214{bottom:853.120000pt;}
.y19_c00214{bottom:888.960000pt;}
.y18_c00214{bottom:889.600000pt;}
.y55_c00214{bottom:890.240000pt;}
.y1b_c00214{bottom:890.880000pt;}
.y54_c00214{bottom:891.520000pt;}
.y1a_c00214{bottom:892.800000pt;}
.y17_c00214{bottom:928.000000pt;}
.y53_c00214{bottom:928.640000pt;}
.y52_c00214{bottom:985.600000pt;}
.hf_c00214{height:4.799479pt;}
.h11_c00214{height:23.037500pt;}
.ha_c00214{height:29.948750pt;}
.he_c00214{height:32.252500pt;}
.h13_c00214{height:34.556250pt;}
.hc_c00214{height:36.860000pt;}
.hb_c00214{height:39.163750pt;}
.h4_c00214{height:41.467500pt;}
.hd_c00214{height:43.771250pt;}
.h2_c00214{height:46.075000pt;}
.h8_c00214{height:48.378750pt;}
.h7_c00214{height:50.682500pt;}
.h12_c00214{height:52.986250pt;}
.h9_c00214{height:55.290000pt;}
.h5_c00214{height:57.593750pt;}
.h3_c00214{height:59.897500pt;}
.h6_c00214{height:62.201250pt;}
.h10_c00214{height:71.416250pt;}
.h1_c00214{height:1022.000000pt;}
.h0_c00214{height:1022.080000pt;}
.w0_c00214{width:706.560000pt;}
.w1_c00214{width:706.666667pt;}
.x0_c00214{left:0.000000pt;}
.x1_c00214{left:64.000000pt;}
.xf_c00214{left:65.280000pt;}
.x1c_c00214{left:66.560000pt;}
.x24_c00214{left:84.480000pt;}
.x7_c00214{left:110.080000pt;}
.x2_c00214{left:111.360000pt;}
.x28_c00214{left:112.640000pt;}
.x23_c00214{left:148.480000pt;}
.x10_c00214{left:149.760000pt;}
.xe_c00214{left:159.360000pt;}
.x1f_c00214{left:180.480000pt;}
.x3_c00214{left:186.240000pt;}
.x8_c00214{left:188.160000pt;}
.x20_c00214{left:189.440000pt;}
.x17_c00214{left:195.840000pt;}
.x1d_c00214{left:197.760000pt;}
.x25_c00214{left:207.360000pt;}
.xc_c00214{left:216.960000pt;}
.x4_c00214{left:226.560000pt;}
.x21_c00214{left:235.520000pt;}
.x18_c00214{left:236.800000pt;}
.x2a_c00214{left:246.400000pt;}
.x1b_c00214{left:256.000000pt;}
.x11_c00214{left:284.160000pt;}
.x26_c00214{left:293.760000pt;}
.x29_c00214{left:295.040000pt;}
.x5_c00214{left:303.360000pt;}
.x9_c00214{left:312.960000pt;}
.x22_c00214{left:323.200000pt;}
.x27_c00214{left:341.760000pt;}
.x6_c00214{left:352.000000pt;}
.x1a_c00214{left:361.600000pt;}
.xa_c00214{left:370.560000pt;}
.x1e_c00214{left:390.400000pt;}
.x19_c00214{left:399.360000pt;}
.xb_c00214{left:418.560000pt;}
.xd_c00214{left:448.000000pt;}
.x12_c00214{left:457.600000pt;}
.x13_c00214{left:496.000000pt;}
.x2f_c00214{left:504.960000pt;}
.x2c_c00214{left:506.240000pt;}
.x2d_c00214{left:524.800000pt;}
.x14_c00214{left:552.960000pt;}
.x30_c00214{left:554.240000pt;}
.x15_c00214{left:582.400000pt;}
.x31_c00214{left:610.560000pt;}
.x32_c00214{left:618.880000pt;}
.x16_c00214{left:620.160000pt;}
.x2b_c00214{left:628.480000pt;}
.x2e_c00214{left:637.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_39a815b4be0849fb3c50d174.woff2')format("woff");}.ff1_c00215{font-family:ff1_c00215;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3d_c00215{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m22_c00215{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);}
.m40_c00215{transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);}
.mf_c00215{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);}
.m44_c00215{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.mc_c00215{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m7_c00215{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);}
.m2d_c00215{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m19_c00215{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.ma_c00215{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);}
.m39_c00215{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);}
.m3b_c00215{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00215{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m15_c00215{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00215{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m2_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);}
.m3a_c00215{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00215{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00215{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m4_c00215{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m0_c00215{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m10_c00215{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m47_c00215{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m9_c00215{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m38_c00215{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00215{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m42_c00215{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m6_c00215{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00215{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m36_c00215{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);}
.m41_c00215{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m18_c00215{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);}
.m2a_c00215{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00215{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m25_c00215{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.md_c00215{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);}
.m35_c00215{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m31_c00215{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m17_c00215{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);}
.m2c_c00215{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m1_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);}
.m16_c00215{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.mb_c00215{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);}
.m8_c00215{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);}
.m2f_c00215{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m27_c00215{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);}
.m30_c00215{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00215{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);}
.m3_c00215{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m37_c00215{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m28_c00215{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m20_c00215{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m13_c00215{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);}
.m12_c00215{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.me_c00215{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m14_c00215{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m29_c00215{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m33_c00215{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m23_c00215{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m34_c00215{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);}
.m32_c00215{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00215{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m11_c00215{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m24_c00215{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00215{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m26_c00215{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m5_c00215{transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);}
.m46_c00215{transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00215{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m45_c00215{transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00215{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m48_c00215{transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);}
.m43_c00215{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.v0_c00215{vertical-align:0.000000px;}
.ls0_c00215{letter-spacing:0.000000px;}
.sc__c00215{text-shadow:none;}
.sc0_c00215{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00215{-webkit-text-stroke:0px transparent;}
.sc0_c00215{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00215{word-spacing:0.000000px;}
.ws0_c00215{word-spacing:20.653747px;}
.fc0_c00215{color:transparent;}
.fs9_c00215{font-size:34.560000px;}
.fs5_c00215{font-size:40.320000px;}
.fsb_c00215{font-size:46.080000px;}
.fs0_c00215{font-size:48.960000px;}
.fs3_c00215{font-size:51.840000px;}
.fs8_c00215{font-size:54.720000px;}
.fs4_c00215{font-size:57.600000px;}
.fs2_c00215{font-size:60.480000px;}
.fs1_c00215{font-size:63.360000px;}
.fsd_c00215{font-size:66.240000px;}
.fsc_c00215{font-size:69.120000px;}
.fsa_c00215{font-size:72.000000px;}
.fs6_c00215{font-size:74.880000px;}
.fs7_c00215{font-size:77.760000px;}
.y0_c00215{bottom:0.000000px;}
.y52_c00215{bottom:48.240000px;}
.y6b_c00215{bottom:51.840000px;}
.y6c_c00215{bottom:52.560000px;}
.y51_c00215{bottom:54.000000px;}
.y50_c00215{bottom:54.720000px;}
.y4f_c00215{bottom:93.600000px;}
.y4e_c00215{bottom:94.320000px;}
.y4d_c00215{bottom:97.200000px;}
.y4c_c00215{bottom:146.880000px;}
.y69_c00215{bottom:149.760000px;}
.y6a_c00215{bottom:150.480000px;}
.y4b_c00215{bottom:152.640000px;}
.y49_c00215{bottom:192.960000px;}
.y4a_c00215{bottom:193.680000px;}
.y48_c00215{bottom:195.120000px;}
.y46_c00215{bottom:234.720000px;}
.y47_c00215{bottom:236.160000px;}
.y45_c00215{bottom:239.040000px;}
.y44_c00215{bottom:289.440000px;}
.y43_c00215{bottom:292.320000px;}
.y42_c00215{bottom:321.120000px;}
.y40_c00215{bottom:321.840000px;}
.y41_c00215{bottom:323.280000px;}
.y3f_c00215{bottom:324.720000px;}
.y68_c00215{bottom:325.440000px;}
.y3d_c00215{bottom:364.320000px;}
.y3b_c00215{bottom:365.040000px;}
.y3c_c00215{bottom:365.760000px;}
.y3a_c00215{bottom:366.480000px;}
.y3e_c00215{bottom:367.200000px;}
.y39_c00215{bottom:407.520000px;}
.y67_c00215{bottom:408.960000px;}
.y37_c00215{bottom:410.400000px;}
.y38_c00215{bottom:411.120000px;}
.y34_c00215{bottom:450.000000px;}
.y33_c00215{bottom:451.440000px;}
.y66_c00215{bottom:452.160000px;}
.y36_c00215{bottom:452.880000px;}
.y35_c00215{bottom:453.600000px;}
.y32_c00215{bottom:493.200000px;}
.y65_c00215{bottom:494.640000px;}
.y31_c00215{bottom:496.080000px;}
.y64_c00215{bottom:497.520000px;}
.y2e_c00215{bottom:537.120000px;}
.y2f_c00215{bottom:538.560000px;}
.y30_c00215{bottom:540.000000px;}
.y29_c00215{bottom:567.360000px;}
.y2b_c00215{bottom:568.080000px;}
.y2c_c00215{bottom:569.520000px;}
.y28_c00215{bottom:570.240000px;}
.y2a_c00215{bottom:571.680000px;}
.y2d_c00215{bottom:572.400000px;}
.y27_c00215{bottom:611.280000px;}
.y25_c00215{bottom:613.440000px;}
.y26_c00215{bottom:614.880000px;}
.y63_c00215{bottom:615.600000px;}
.y24_c00215{bottom:654.480000px;}
.y22_c00215{bottom:655.920000px;}
.y21_c00215{bottom:656.640000px;}
.y62_c00215{bottom:657.360000px;}
.y23_c00215{bottom:658.080000px;}
.y20_c00215{bottom:697.680000px;}
.y5f_c00215{bottom:698.400000px;}
.y60_c00215{bottom:699.120000px;}
.y1e_c00215{bottom:699.840000px;}
.y1f_c00215{bottom:701.280000px;}
.y61_c00215{bottom:702.000000px;}
.y1d_c00215{bottom:740.880000px;}
.y5e_c00215{bottom:741.600000px;}
.y1b_c00215{bottom:742.320000px;}
.y5d_c00215{bottom:743.040000px;}
.y1c_c00215{bottom:745.200000px;}
.y19_c00215{bottom:786.240000px;}
.y1a_c00215{bottom:786.960000px;}
.y18_c00215{bottom:788.400000px;}
.y14_c00215{bottom:838.800000px;}
.y5c_c00215{bottom:839.520000px;}
.y13_c00215{bottom:840.240000px;}
.y15_c00215{bottom:840.960000px;}
.y16_c00215{bottom:841.680000px;}
.y17_c00215{bottom:842.400000px;}
.y10_c00215{bottom:881.280000px;}
.yf_c00215{bottom:882.000000px;}
.y5b_c00215{bottom:882.720000px;}
.y5a_c00215{bottom:884.160000px;}
.y11_c00215{bottom:884.880000px;}
.y12_c00215{bottom:885.600000px;}
.yd_c00215{bottom:924.480000px;}
.yc_c00215{bottom:925.920000px;}
.y58_c00215{bottom:926.640000px;}
.y59_c00215{bottom:927.360000px;}
.ye_c00215{bottom:928.080000px;}
.yb_c00215{bottom:967.680000px;}
.y9_c00215{bottom:969.120000px;}
.y55_c00215{bottom:969.840000px;}
.y56_c00215{bottom:970.560000px;}
.y57_c00215{bottom:971.280000px;}
.ya_c00215{bottom:972.000000px;}
.y8_c00215{bottom:1010.880000px;}
.y54_c00215{bottom:1012.320000px;}
.y5_c00215{bottom:1013.040000px;}
.y6_c00215{bottom:1013.760000px;}
.y7_c00215{bottom:1014.480000px;}
.y3_c00215{bottom:1055.520000px;}
.y2_c00215{bottom:1056.240000px;}
.y4_c00215{bottom:1056.960000px;}
.y1_c00215{bottom:1057.680000px;}
.y53_c00215{bottom:1077.120000px;}
.hb_c00215{height:31.100625px;}
.h7_c00215{height:36.284062px;}
.hd_c00215{height:41.467500px;}
.h2_c00215{height:44.059219px;}
.h5_c00215{height:46.650937px;}
.ha_c00215{height:49.242656px;}
.h6_c00215{height:51.834375px;}
.h4_c00215{height:54.426094px;}
.h3_c00215{height:57.017812px;}
.hf_c00215{height:59.609531px;}
.he_c00215{height:62.201250px;}
.hc_c00215{height:64.792969px;}
.h8_c00215{height:67.384687px;}
.h9_c00215{height:69.976406px;}
.h1_c00215{height:1149.750000px;}
.h0_c00215{height:1149.840000px;}
.w0_c00215{width:794.880000px;}
.w1_c00215{width:795.000000px;}
.x0_c00215{left:0.000000px;}
.x5_c00215{left:68.400000px;}
.x15_c00215{left:69.840000px;}
.x1e_c00215{left:71.280000px;}
.x24_c00215{left:73.440000px;}
.x6_c00215{left:90.720000px;}
.x1_c00215{left:120.960000px;}
.x8_c00215{left:122.400000px;}
.x2_c00215{left:153.360000px;}
.x7_c00215{left:164.880000px;}
.x22_c00215{left:186.480000px;}
.x3_c00215{left:197.280000px;}
.x9_c00215{left:208.080000px;}
.x10_c00215{left:218.160000px;}
.x4_c00215{left:227.520000px;}
.x12_c00215{left:228.960000px;}
.x23_c00215{left:239.760000px;}
.xa_c00215{left:250.560000px;}
.x17_c00215{left:262.080000px;}
.x13_c00215{left:263.520000px;}
.x11_c00215{left:272.160000px;}
.x1b_c00215{left:273.600000px;}
.x1c_c00215{left:294.480000px;}
.x16_c00215{left:316.800000px;}
.xb_c00215{left:337.680000px;}
.x1f_c00215{left:339.120000px;}
.xe_c00215{left:358.560000px;}
.x1d_c00215{left:360.000000px;}
.xc_c00215{left:391.680000px;}
.xf_c00215{left:403.920000px;}
.x18_c00215{left:414.720000px;}
.xd_c00215{left:434.160000px;}
.x20_c00215{left:436.320000px;}
.x14_c00215{left:457.200000px;}
.x19_c00215{left:467.280000px;}
.x21_c00215{left:488.880000px;}
.x2e_c00215{left:543.600000px;}
.x2b_c00215{left:555.120000px;}
.x1a_c00215{left:565.200000px;}
.x30_c00215{left:586.800000px;}
.x2d_c00215{left:597.600000px;}
.x26_c00215{left:618.480000px;}
.x29_c00215{left:619.920000px;}
.x2a_c00215{left:650.880000px;}
.x27_c00215{left:652.320000px;}
.x31_c00215{left:684.720000px;}
.x28_c00215{left:693.360000px;}
.x2f_c00215{left:694.800000px;}
.x25_c00215{left:704.160000px;}
.x2c_c00215{left:714.240000px;}
@media print{
.v0_c00215{vertical-align:0.000000pt;}
.ls0_c00215{letter-spacing:0.000000pt;}
.ws1_c00215{word-spacing:0.000000pt;}
.ws0_c00215{word-spacing:18.358886pt;}
.fs9_c00215{font-size:30.720000pt;}
.fs5_c00215{font-size:35.840000pt;}
.fsb_c00215{font-size:40.960000pt;}
.fs0_c00215{font-size:43.520000pt;}
.fs3_c00215{font-size:46.080000pt;}
.fs8_c00215{font-size:48.640000pt;}
.fs4_c00215{font-size:51.200000pt;}
.fs2_c00215{font-size:53.760000pt;}
.fs1_c00215{font-size:56.320000pt;}
.fsd_c00215{font-size:58.880000pt;}
.fsc_c00215{font-size:61.440000pt;}
.fsa_c00215{font-size:64.000000pt;}
.fs6_c00215{font-size:66.560000pt;}
.fs7_c00215{font-size:69.120000pt;}
.y0_c00215{bottom:0.000000pt;}
.y52_c00215{bottom:42.880000pt;}
.y6b_c00215{bottom:46.080000pt;}
.y6c_c00215{bottom:46.720000pt;}
.y51_c00215{bottom:48.000000pt;}
.y50_c00215{bottom:48.640000pt;}
.y4f_c00215{bottom:83.200000pt;}
.y4e_c00215{bottom:83.840000pt;}
.y4d_c00215{bottom:86.400000pt;}
.y4c_c00215{bottom:130.560000pt;}
.y69_c00215{bottom:133.120000pt;}
.y6a_c00215{bottom:133.760000pt;}
.y4b_c00215{bottom:135.680000pt;}
.y49_c00215{bottom:171.520000pt;}
.y4a_c00215{bottom:172.160000pt;}
.y48_c00215{bottom:173.440000pt;}
.y46_c00215{bottom:208.640000pt;}
.y47_c00215{bottom:209.920000pt;}
.y45_c00215{bottom:212.480000pt;}
.y44_c00215{bottom:257.280000pt;}
.y43_c00215{bottom:259.840000pt;}
.y42_c00215{bottom:285.440000pt;}
.y40_c00215{bottom:286.080000pt;}
.y41_c00215{bottom:287.360000pt;}
.y3f_c00215{bottom:288.640000pt;}
.y68_c00215{bottom:289.280000pt;}
.y3d_c00215{bottom:323.840000pt;}
.y3b_c00215{bottom:324.480000pt;}
.y3c_c00215{bottom:325.120000pt;}
.y3a_c00215{bottom:325.760000pt;}
.y3e_c00215{bottom:326.400000pt;}
.y39_c00215{bottom:362.240000pt;}
.y67_c00215{bottom:363.520000pt;}
.y37_c00215{bottom:364.800000pt;}
.y38_c00215{bottom:365.440000pt;}
.y34_c00215{bottom:400.000000pt;}
.y33_c00215{bottom:401.280000pt;}
.y66_c00215{bottom:401.920000pt;}
.y36_c00215{bottom:402.560000pt;}
.y35_c00215{bottom:403.200000pt;}
.y32_c00215{bottom:438.400000pt;}
.y65_c00215{bottom:439.680000pt;}
.y31_c00215{bottom:440.960000pt;}
.y64_c00215{bottom:442.240000pt;}
.y2e_c00215{bottom:477.440000pt;}
.y2f_c00215{bottom:478.720000pt;}
.y30_c00215{bottom:480.000000pt;}
.y29_c00215{bottom:504.320000pt;}
.y2b_c00215{bottom:504.960000pt;}
.y2c_c00215{bottom:506.240000pt;}
.y28_c00215{bottom:506.880000pt;}
.y2a_c00215{bottom:508.160000pt;}
.y2d_c00215{bottom:508.800000pt;}
.y27_c00215{bottom:543.360000pt;}
.y25_c00215{bottom:545.280000pt;}
.y26_c00215{bottom:546.560000pt;}
.y63_c00215{bottom:547.200000pt;}
.y24_c00215{bottom:581.760000pt;}
.y22_c00215{bottom:583.040000pt;}
.y21_c00215{bottom:583.680000pt;}
.y62_c00215{bottom:584.320000pt;}
.y23_c00215{bottom:584.960000pt;}
.y20_c00215{bottom:620.160000pt;}
.y5f_c00215{bottom:620.800000pt;}
.y60_c00215{bottom:621.440000pt;}
.y1e_c00215{bottom:622.080000pt;}
.y1f_c00215{bottom:623.360000pt;}
.y61_c00215{bottom:624.000000pt;}
.y1d_c00215{bottom:658.560000pt;}
.y5e_c00215{bottom:659.200000pt;}
.y1b_c00215{bottom:659.840000pt;}
.y5d_c00215{bottom:660.480000pt;}
.y1c_c00215{bottom:662.400000pt;}
.y19_c00215{bottom:698.880000pt;}
.y1a_c00215{bottom:699.520000pt;}
.y18_c00215{bottom:700.800000pt;}
.y14_c00215{bottom:745.600000pt;}
.y5c_c00215{bottom:746.240000pt;}
.y13_c00215{bottom:746.880000pt;}
.y15_c00215{bottom:747.520000pt;}
.y16_c00215{bottom:748.160000pt;}
.y17_c00215{bottom:748.800000pt;}
.y10_c00215{bottom:783.360000pt;}
.yf_c00215{bottom:784.000000pt;}
.y5b_c00215{bottom:784.640000pt;}
.y5a_c00215{bottom:785.920000pt;}
.y11_c00215{bottom:786.560000pt;}
.y12_c00215{bottom:787.200000pt;}
.yd_c00215{bottom:821.760000pt;}
.yc_c00215{bottom:823.040000pt;}
.y58_c00215{bottom:823.680000pt;}
.y59_c00215{bottom:824.320000pt;}
.ye_c00215{bottom:824.960000pt;}
.yb_c00215{bottom:860.160000pt;}
.y9_c00215{bottom:861.440000pt;}
.y55_c00215{bottom:862.080000pt;}
.y56_c00215{bottom:862.720000pt;}
.y57_c00215{bottom:863.360000pt;}
.ya_c00215{bottom:864.000000pt;}
.y8_c00215{bottom:898.560000pt;}
.y54_c00215{bottom:899.840000pt;}
.y5_c00215{bottom:900.480000pt;}
.y6_c00215{bottom:901.120000pt;}
.y7_c00215{bottom:901.760000pt;}
.y3_c00215{bottom:938.240000pt;}
.y2_c00215{bottom:938.880000pt;}
.y4_c00215{bottom:939.520000pt;}
.y1_c00215{bottom:940.160000pt;}
.y53_c00215{bottom:957.440000pt;}
.hb_c00215{height:27.645000pt;}
.h7_c00215{height:32.252500pt;}
.hd_c00215{height:36.860000pt;}
.h2_c00215{height:39.163750pt;}
.h5_c00215{height:41.467500pt;}
.ha_c00215{height:43.771250pt;}
.h6_c00215{height:46.075000pt;}
.h4_c00215{height:48.378750pt;}
.h3_c00215{height:50.682500pt;}
.hf_c00215{height:52.986250pt;}
.he_c00215{height:55.290000pt;}
.hc_c00215{height:57.593750pt;}
.h8_c00215{height:59.897500pt;}
.h9_c00215{height:62.201250pt;}
.h1_c00215{height:1022.000000pt;}
.h0_c00215{height:1022.080000pt;}
.w0_c00215{width:706.560000pt;}
.w1_c00215{width:706.666667pt;}
.x0_c00215{left:0.000000pt;}
.x5_c00215{left:60.800000pt;}
.x15_c00215{left:62.080000pt;}
.x1e_c00215{left:63.360000pt;}
.x24_c00215{left:65.280000pt;}
.x6_c00215{left:80.640000pt;}
.x1_c00215{left:107.520000pt;}
.x8_c00215{left:108.800000pt;}
.x2_c00215{left:136.320000pt;}
.x7_c00215{left:146.560000pt;}
.x22_c00215{left:165.760000pt;}
.x3_c00215{left:175.360000pt;}
.x9_c00215{left:184.960000pt;}
.x10_c00215{left:193.920000pt;}
.x4_c00215{left:202.240000pt;}
.x12_c00215{left:203.520000pt;}
.x23_c00215{left:213.120000pt;}
.xa_c00215{left:222.720000pt;}
.x17_c00215{left:232.960000pt;}
.x13_c00215{left:234.240000pt;}
.x11_c00215{left:241.920000pt;}
.x1b_c00215{left:243.200000pt;}
.x1c_c00215{left:261.760000pt;}
.x16_c00215{left:281.600000pt;}
.xb_c00215{left:300.160000pt;}
.x1f_c00215{left:301.440000pt;}
.xe_c00215{left:318.720000pt;}
.x1d_c00215{left:320.000000pt;}
.xc_c00215{left:348.160000pt;}
.xf_c00215{left:359.040000pt;}
.x18_c00215{left:368.640000pt;}
.xd_c00215{left:385.920000pt;}
.x20_c00215{left:387.840000pt;}
.x14_c00215{left:406.400000pt;}
.x19_c00215{left:415.360000pt;}
.x21_c00215{left:434.560000pt;}
.x2e_c00215{left:483.200000pt;}
.x2b_c00215{left:493.440000pt;}
.x1a_c00215{left:502.400000pt;}
.x30_c00215{left:521.600000pt;}
.x2d_c00215{left:531.200000pt;}
.x26_c00215{left:549.760000pt;}
.x29_c00215{left:551.040000pt;}
.x2a_c00215{left:578.560000pt;}
.x27_c00215{left:579.840000pt;}
.x31_c00215{left:608.640000pt;}
.x28_c00215{left:616.320000pt;}
.x2f_c00215{left:617.600000pt;}
.x25_c00215{left:625.920000pt;}
.x2c_c00215{left:634.880000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_416e9ce38cf5f3f1753915e8.woff2')format("woff");}.ff1_c00216{font-family:ff1_c00216;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4a_c00216{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m4f_c00216{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00216{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m39_c00216{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00216{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m2_c00216{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00216{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00216{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m25_c00216{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00216{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m20_c00216{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);}
.m3c_c00216{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m24_c00216{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m9_c00216{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m28_c00216{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m3_c00216{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mc_c00216{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m17_c00216{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m19_c00216{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m22_c00216{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m41_c00216{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m36_c00216{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m32_c00216{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00216{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m15_c00216{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m43_c00216{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00216{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.me_c00216{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m50_c00216{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m16_c00216{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m38_c00216{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mf_c00216{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m27_c00216{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);}
.m26_c00216{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00216{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);}
.m37_c00216{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m14_c00216{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);}
.m40_c00216{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.ma_c00216{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);}
.m48_c00216{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00216{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_c00216{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m18_c00216{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m34_c00216{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m21_c00216{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00216{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m12_c00216{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00216{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);}
.m31_c00216{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);}
.m45_c00216{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m23_c00216{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);}
.m1a_c00216{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m8_c00216{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m0_c00216{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);}
.m1d_c00216{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);}
.m2f_c00216{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.mb_c00216{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);}
.m2b_c00216{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00216{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m29_c00216{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m13_c00216{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);}
.m51_c00216{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m49_c00216{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m5_c00216{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m35_c00216{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m6_c00216{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m33_c00216{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);}
.m7_c00216{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m46_c00216{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m1_c00216{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);}
.m30_c00216{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m4_c00216{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);}
.m2c_c00216{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m10_c00216{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00216{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);}
.m2d_c00216{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00216{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m47_c00216{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m44_c00216{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.md_c00216{transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);}
.m42_c00216{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00216{transform:matrix(2.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.467500,0.000000,0.000000,0.250000,0,0);}
.v1_c00216{vertical-align:-2.880000px;}
.v0_c00216{vertical-align:0.000000px;}
.v2_c00216{vertical-align:2.880000px;}
.v4_c00216{vertical-align:5.760000px;}
.v3_c00216{vertical-align:25.920000px;}
.ls0_c00216{letter-spacing:0.000000px;}
.sc__c00216{text-shadow:none;}
.sc0_c00216{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00216{-webkit-text-stroke:0px transparent;}
.sc0_c00216{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00216{word-spacing:0.000000px;}
.ws1_c00216{word-spacing:1.394880px;}
.ws0_c00216{word-spacing:3.404880px;}
.ws3_c00216{word-spacing:13.140000px;}
.ws2_c00216{word-spacing:798.414960px;}
.fc0_c00216{color:transparent;}
.fsf_c00216{font-size:20.160000px;}
.fs8_c00216{font-size:34.560000px;}
.fsd_c00216{font-size:40.320000px;}
.fs5_c00216{font-size:43.200000px;}
.fs6_c00216{font-size:46.080000px;}
.fs4_c00216{font-size:48.960000px;}
.fs1_c00216{font-size:51.840000px;}
.fsc_c00216{font-size:54.720000px;}
.fs3_c00216{font-size:57.600000px;}
.fs0_c00216{font-size:60.480000px;}
.fs7_c00216{font-size:63.360000px;}
.fsa_c00216{font-size:66.240000px;}
.fsb_c00216{font-size:69.120000px;}
.fse_c00216{font-size:72.000000px;}
.fs9_c00216{font-size:74.880000px;}
.fs2_c00216{font-size:77.760000px;}
.y0_c00216{bottom:0.000000px;}
.y6a_c00216{bottom:1.440000px;}
.y71_c00216{bottom:2.160000px;}
.y6f_c00216{bottom:4.320000px;}
.y70_c00216{bottom:5.040000px;}
.y6e_c00216{bottom:6.480000px;}
.y6c_c00216{bottom:43.920000px;}
.y6d_c00216{bottom:45.360000px;}
.y6b_c00216{bottom:48.240000px;}
.y67_c00216{bottom:95.760000px;}
.y69_c00216{bottom:97.200000px;}
.y68_c00216{bottom:99.360000px;}
.y78_c00216{bottom:100.080000px;}
.y66_c00216{bottom:102.240000px;}
.y62_c00216{bottom:139.680000px;}
.y64_c00216{bottom:141.120000px;}
.y77_c00216{bottom:142.560000px;}
.y63_c00216{bottom:143.280000px;}
.y65_c00216{bottom:144.000000px;}
.y61_c00216{bottom:146.160000px;}
.y60_c00216{bottom:182.880000px;}
.y75_c00216{bottom:186.480000px;}
.y76_c00216{bottom:187.200000px;}
.y5f_c00216{bottom:187.920000px;}
.y5e_c00216{bottom:225.360000px;}
.y5c_c00216{bottom:226.800000px;}
.y74_c00216{bottom:228.240000px;}
.y5d_c00216{bottom:228.960000px;}
.y73_c00216{bottom:229.680000px;}
.y5b_c00216{bottom:231.120000px;}
.y58_c00216{bottom:268.560000px;}
.y59_c00216{bottom:270.000000px;}
.y72_c00216{bottom:271.440000px;}
.y5a_c00216{bottom:272.160000px;}
.y57_c00216{bottom:273.600000px;}
.y50_c00216{bottom:311.760000px;}
.y52_c00216{bottom:312.480000px;}
.y51_c00216{bottom:313.200000px;}
.y53_c00216{bottom:313.920000px;}
.y54_c00216{bottom:315.360000px;}
.y4f_c00216{bottom:316.080000px;}
.y56_c00216{bottom:316.800000px;}
.y55_c00216{bottom:317.520000px;}
.y3a_c00216{bottom:354.960000px;}
.y4e_c00216{bottom:357.120000px;}
.y4d_c00216{bottom:357.840000px;}
.y39_c00216{bottom:358.560000px;}
.y37_c00216{bottom:398.880000px;}
.y36_c00216{bottom:399.600000px;}
.y38_c00216{bottom:401.760000px;}
.y33_c00216{bottom:430.560000px;}
.y35_c00216{bottom:431.280000px;}
.y32_c00216{bottom:432.720000px;}
.y4b_c00216{bottom:433.440000px;}
.y34_c00216{bottom:434.160000px;}
.y31_c00216{bottom:434.880000px;}
.y4c_c00216{bottom:435.600000px;}
.y2f_c00216{bottom:475.920000px;}
.y30_c00216{bottom:477.360000px;}
.y2e_c00216{bottom:478.080000px;}
.y2d_c00216{bottom:516.960000px;}
.y4a_c00216{bottom:519.840000px;}
.y2c_c00216{bottom:520.560000px;}
.y2b_c00216{bottom:521.280000px;}
.y2a_c00216{bottom:560.160000px;}
.y48_c00216{bottom:562.320000px;}
.y27_c00216{bottom:563.040000px;}
.y29_c00216{bottom:563.760000px;}
.y28_c00216{bottom:564.480000px;}
.y49_c00216{bottom:565.200000px;}
.y26_c00216{bottom:603.360000px;}
.y24_c00216{bottom:605.520000px;}
.y47_c00216{bottom:606.240000px;}
.y25_c00216{bottom:606.960000px;}
.y23_c00216{bottom:607.680000px;}
.y22_c00216{bottom:646.560000px;}
.y21_c00216{bottom:648.720000px;}
.y1e_c00216{bottom:649.440000px;}
.y20_c00216{bottom:650.160000px;}
.y1f_c00216{bottom:650.880000px;}
.y1d_c00216{bottom:689.760000px;}
.y1b_c00216{bottom:690.480000px;}
.y46_c00216{bottom:691.200000px;}
.y1c_c00216{bottom:691.920000px;}
.y19_c00216{bottom:693.360000px;}
.y1a_c00216{bottom:694.080000px;}
.y18_c00216{bottom:732.960000px;}
.y44_c00216{bottom:734.400000px;}
.y45_c00216{bottom:735.120000px;}
.y16_c00216{bottom:735.840000px;}
.y17_c00216{bottom:736.560000px;}
.y14_c00216{bottom:776.160000px;}
.y43_c00216{bottom:777.600000px;}
.y12_c00216{bottom:778.320000px;}
.y13_c00216{bottom:779.760000px;}
.y15_c00216{bottom:780.480000px;}
.y10_c00216{bottom:822.240000px;}
.yf_c00216{bottom:823.680000px;}
.y11_c00216{bottom:824.400000px;}
.ye_c00216{bottom:873.360000px;}
.yd_c00216{bottom:874.080000px;}
.y41_c00216{bottom:874.800000px;}
.y3e_c00216{bottom:875.520000px;}
.y42_c00216{bottom:876.960000px;}
.yc_c00216{bottom:916.560000px;}
.y3f_c00216{bottom:918.000000px;}
.ya_c00216{bottom:918.720000px;}
.y40_c00216{bottom:919.440000px;}
.yb_c00216{bottom:920.160000px;}
.y9_c00216{bottom:961.920000px;}
.y7_c00216{bottom:963.360000px;}
.y8_c00216{bottom:964.800000px;}
.y3d_c00216{bottom:1014.480000px;}
.y4_c00216{bottom:1015.200000px;}
.y6_c00216{bottom:1016.640000px;}
.y5_c00216{bottom:1017.360000px;}
.y3_c00216{bottom:1056.960000px;}
.y1_c00216{bottom:1058.400000px;}
.y3c_c00216{bottom:1059.120000px;}
.y2_c00216{bottom:1060.560000px;}
.y3b_c00216{bottom:1112.400000px;}
.h12_c00216{height:18.142031px;}
.ha_c00216{height:31.100625px;}
.hf_c00216{height:36.284062px;}
.h7_c00216{height:38.875781px;}
.h8_c00216{height:41.467500px;}
.h6_c00216{height:44.059219px;}
.h3_c00216{height:46.650937px;}
.he_c00216{height:49.242656px;}
.h5_c00216{height:51.834375px;}
.h2_c00216{height:54.426094px;}
.h9_c00216{height:57.017812px;}
.h13_c00216{height:57.594375px;}
.hc_c00216{height:59.609531px;}
.hd_c00216{height:62.201250px;}
.h10_c00216{height:64.792969px;}
.hb_c00216{height:67.384687px;}
.h4_c00216{height:69.976406px;}
.h11_c00216{height:75.162656px;}
.h1_c00216{height:1164.000000px;}
.h0_c00216{height:1164.240000px;}
.w1_c00216{width:801.750000px;}
.w0_c00216{width:802.080000px;}
.x0_c00216{left:0.000000px;}
.x1_c00216{left:80.640000px;}
.x1d_c00216{left:82.080000px;}
.xb_c00216{left:102.960000px;}
.x2_c00216{left:132.480000px;}
.x7_c00216{left:133.920000px;}
.x32_c00216{left:143.280000px;}
.xe_c00216{left:154.080000px;}
.x30_c00216{left:164.880000px;}
.xc_c00216{left:174.960000px;}
.x3_c00216{left:176.400000px;}
.x14_c00216{left:186.480000px;}
.x8_c00216{left:198.720000px;}
.x2b_c00216{left:217.440000px;}
.x12_c00216{left:218.880000px;}
.x9_c00216{left:220.320000px;}
.x16_c00216{left:227.520000px;}
.x4_c00216{left:229.680000px;}
.x15_c00216{left:239.760000px;}
.x31_c00216{left:259.920000px;}
.xf_c00216{left:272.160000px;}
.xd_c00216{left:274.320000px;}
.x17_c00216{left:282.960000px;}
.x5_c00216{left:285.120000px;}
.x2a_c00216{left:293.760000px;}
.xa_c00216{left:316.080000px;}
.x19_c00216{left:326.880000px;}
.x33_c00216{left:336.960000px;}
.x18_c00216{left:347.760000px;}
.x6_c00216{left:349.920000px;}
.x13_c00216{left:370.800000px;}
.x34_c00216{left:379.440000px;}
.x29_c00216{left:380.880000px;}
.x1a_c00216{left:391.680000px;}
.x2f_c00216{left:401.760000px;}
.x2c_c00216{left:411.840000px;}
.x1b_c00216{left:424.080000px;}
.x2d_c00216{left:455.760000px;}
.x10_c00216{left:467.280000px;}
.x2e_c00216{left:509.040000px;}
.x11_c00216{left:521.280000px;}
.x1c_c00216{left:575.280000px;}
.x23_c00216{left:576.720000px;}
.x28_c00216{left:595.440000px;}
.x24_c00216{left:597.600000px;}
.x35_c00216{left:627.840000px;}
.x22_c00216{left:629.280000px;}
.x1f_c00216{left:630.720000px;}
.x26_c00216{left:661.680000px;}
.x20_c00216{left:663.120000px;}
.x27_c00216{left:694.080000px;}
.x21_c00216{left:695.520000px;}
.x36_c00216{left:702.720000px;}
.x1e_c00216{left:704.160000px;}
.x37_c00216{left:723.600000px;}
.x25_c00216{left:725.040000px;}
@media print{
.v1_c00216{vertical-align:-2.560000pt;}
.v0_c00216{vertical-align:0.000000pt;}
.v2_c00216{vertical-align:2.560000pt;}
.v4_c00216{vertical-align:5.120000pt;}
.v3_c00216{vertical-align:23.040000pt;}
.ls0_c00216{letter-spacing:0.000000pt;}
.ws4_c00216{word-spacing:0.000000pt;}
.ws1_c00216{word-spacing:1.239893pt;}
.ws0_c00216{word-spacing:3.026560pt;}
.ws3_c00216{word-spacing:11.680000pt;}
.ws2_c00216{word-spacing:709.702187pt;}
.fsf_c00216{font-size:17.920000pt;}
.fs8_c00216{font-size:30.720000pt;}
.fsd_c00216{font-size:35.840000pt;}
.fs5_c00216{font-size:38.400000pt;}
.fs6_c00216{font-size:40.960000pt;}
.fs4_c00216{font-size:43.520000pt;}
.fs1_c00216{font-size:46.080000pt;}
.fsc_c00216{font-size:48.640000pt;}
.fs3_c00216{font-size:51.200000pt;}
.fs0_c00216{font-size:53.760000pt;}
.fs7_c00216{font-size:56.320000pt;}
.fsa_c00216{font-size:58.880000pt;}
.fsb_c00216{font-size:61.440000pt;}
.fse_c00216{font-size:64.000000pt;}
.fs9_c00216{font-size:66.560000pt;}
.fs2_c00216{font-size:69.120000pt;}
.y0_c00216{bottom:0.000000pt;}
.y6a_c00216{bottom:1.280000pt;}
.y71_c00216{bottom:1.920000pt;}
.y6f_c00216{bottom:3.840000pt;}
.y70_c00216{bottom:4.480000pt;}
.y6e_c00216{bottom:5.760000pt;}
.y6c_c00216{bottom:39.040000pt;}
.y6d_c00216{bottom:40.320000pt;}
.y6b_c00216{bottom:42.880000pt;}
.y67_c00216{bottom:85.120000pt;}
.y69_c00216{bottom:86.400000pt;}
.y68_c00216{bottom:88.320000pt;}
.y78_c00216{bottom:88.960000pt;}
.y66_c00216{bottom:90.880000pt;}
.y62_c00216{bottom:124.160000pt;}
.y64_c00216{bottom:125.440000pt;}
.y77_c00216{bottom:126.720000pt;}
.y63_c00216{bottom:127.360000pt;}
.y65_c00216{bottom:128.000000pt;}
.y61_c00216{bottom:129.920000pt;}
.y60_c00216{bottom:162.560000pt;}
.y75_c00216{bottom:165.760000pt;}
.y76_c00216{bottom:166.400000pt;}
.y5f_c00216{bottom:167.040000pt;}
.y5e_c00216{bottom:200.320000pt;}
.y5c_c00216{bottom:201.600000pt;}
.y74_c00216{bottom:202.880000pt;}
.y5d_c00216{bottom:203.520000pt;}
.y73_c00216{bottom:204.160000pt;}
.y5b_c00216{bottom:205.440000pt;}
.y58_c00216{bottom:238.720000pt;}
.y59_c00216{bottom:240.000000pt;}
.y72_c00216{bottom:241.280000pt;}
.y5a_c00216{bottom:241.920000pt;}
.y57_c00216{bottom:243.200000pt;}
.y50_c00216{bottom:277.120000pt;}
.y52_c00216{bottom:277.760000pt;}
.y51_c00216{bottom:278.400000pt;}
.y53_c00216{bottom:279.040000pt;}
.y54_c00216{bottom:280.320000pt;}
.y4f_c00216{bottom:280.960000pt;}
.y56_c00216{bottom:281.600000pt;}
.y55_c00216{bottom:282.240000pt;}
.y3a_c00216{bottom:315.520000pt;}
.y4e_c00216{bottom:317.440000pt;}
.y4d_c00216{bottom:318.080000pt;}
.y39_c00216{bottom:318.720000pt;}
.y37_c00216{bottom:354.560000pt;}
.y36_c00216{bottom:355.200000pt;}
.y38_c00216{bottom:357.120000pt;}
.y33_c00216{bottom:382.720000pt;}
.y35_c00216{bottom:383.360000pt;}
.y32_c00216{bottom:384.640000pt;}
.y4b_c00216{bottom:385.280000pt;}
.y34_c00216{bottom:385.920000pt;}
.y31_c00216{bottom:386.560000pt;}
.y4c_c00216{bottom:387.200000pt;}
.y2f_c00216{bottom:423.040000pt;}
.y30_c00216{bottom:424.320000pt;}
.y2e_c00216{bottom:424.960000pt;}
.y2d_c00216{bottom:459.520000pt;}
.y4a_c00216{bottom:462.080000pt;}
.y2c_c00216{bottom:462.720000pt;}
.y2b_c00216{bottom:463.360000pt;}
.y2a_c00216{bottom:497.920000pt;}
.y48_c00216{bottom:499.840000pt;}
.y27_c00216{bottom:500.480000pt;}
.y29_c00216{bottom:501.120000pt;}
.y28_c00216{bottom:501.760000pt;}
.y49_c00216{bottom:502.400000pt;}
.y26_c00216{bottom:536.320000pt;}
.y24_c00216{bottom:538.240000pt;}
.y47_c00216{bottom:538.880000pt;}
.y25_c00216{bottom:539.520000pt;}
.y23_c00216{bottom:540.160000pt;}
.y22_c00216{bottom:574.720000pt;}
.y21_c00216{bottom:576.640000pt;}
.y1e_c00216{bottom:577.280000pt;}
.y20_c00216{bottom:577.920000pt;}
.y1f_c00216{bottom:578.560000pt;}
.y1d_c00216{bottom:613.120000pt;}
.y1b_c00216{bottom:613.760000pt;}
.y46_c00216{bottom:614.400000pt;}
.y1c_c00216{bottom:615.040000pt;}
.y19_c00216{bottom:616.320000pt;}
.y1a_c00216{bottom:616.960000pt;}
.y18_c00216{bottom:651.520000pt;}
.y44_c00216{bottom:652.800000pt;}
.y45_c00216{bottom:653.440000pt;}
.y16_c00216{bottom:654.080000pt;}
.y17_c00216{bottom:654.720000pt;}
.y14_c00216{bottom:689.920000pt;}
.y43_c00216{bottom:691.200000pt;}
.y12_c00216{bottom:691.840000pt;}
.y13_c00216{bottom:693.120000pt;}
.y15_c00216{bottom:693.760000pt;}
.y10_c00216{bottom:730.880000pt;}
.yf_c00216{bottom:732.160000pt;}
.y11_c00216{bottom:732.800000pt;}
.ye_c00216{bottom:776.320000pt;}
.yd_c00216{bottom:776.960000pt;}
.y41_c00216{bottom:777.600000pt;}
.y3e_c00216{bottom:778.240000pt;}
.y42_c00216{bottom:779.520000pt;}
.yc_c00216{bottom:814.720000pt;}
.y3f_c00216{bottom:816.000000pt;}
.ya_c00216{bottom:816.640000pt;}
.y40_c00216{bottom:817.280000pt;}
.yb_c00216{bottom:817.920000pt;}
.y9_c00216{bottom:855.040000pt;}
.y7_c00216{bottom:856.320000pt;}
.y8_c00216{bottom:857.600000pt;}
.y3d_c00216{bottom:901.760000pt;}
.y4_c00216{bottom:902.400000pt;}
.y6_c00216{bottom:903.680000pt;}
.y5_c00216{bottom:904.320000pt;}
.y3_c00216{bottom:939.520000pt;}
.y1_c00216{bottom:940.800000pt;}
.y3c_c00216{bottom:941.440000pt;}
.y2_c00216{bottom:942.720000pt;}
.y3b_c00216{bottom:988.800000pt;}
.h12_c00216{height:16.126250pt;}
.ha_c00216{height:27.645000pt;}
.hf_c00216{height:32.252500pt;}
.h7_c00216{height:34.556250pt;}
.h8_c00216{height:36.860000pt;}
.h6_c00216{height:39.163750pt;}
.h3_c00216{height:41.467500pt;}
.he_c00216{height:43.771250pt;}
.h5_c00216{height:46.075000pt;}
.h2_c00216{height:48.378750pt;}
.h9_c00216{height:50.682500pt;}
.h13_c00216{height:51.195000pt;}
.hc_c00216{height:52.986250pt;}
.hd_c00216{height:55.290000pt;}
.h10_c00216{height:57.593750pt;}
.hb_c00216{height:59.897500pt;}
.h4_c00216{height:62.201250pt;}
.h11_c00216{height:66.811250pt;}
.h1_c00216{height:1034.666667pt;}
.h0_c00216{height:1034.880000pt;}
.w1_c00216{width:712.666667pt;}
.w0_c00216{width:712.960000pt;}
.x0_c00216{left:0.000000pt;}
.x1_c00216{left:71.680000pt;}
.x1d_c00216{left:72.960000pt;}
.xb_c00216{left:91.520000pt;}
.x2_c00216{left:117.760000pt;}
.x7_c00216{left:119.040000pt;}
.x32_c00216{left:127.360000pt;}
.xe_c00216{left:136.960000pt;}
.x30_c00216{left:146.560000pt;}
.xc_c00216{left:155.520000pt;}
.x3_c00216{left:156.800000pt;}
.x14_c00216{left:165.760000pt;}
.x8_c00216{left:176.640000pt;}
.x2b_c00216{left:193.280000pt;}
.x12_c00216{left:194.560000pt;}
.x9_c00216{left:195.840000pt;}
.x16_c00216{left:202.240000pt;}
.x4_c00216{left:204.160000pt;}
.x15_c00216{left:213.120000pt;}
.x31_c00216{left:231.040000pt;}
.xf_c00216{left:241.920000pt;}
.xd_c00216{left:243.840000pt;}
.x17_c00216{left:251.520000pt;}
.x5_c00216{left:253.440000pt;}
.x2a_c00216{left:261.120000pt;}
.xa_c00216{left:280.960000pt;}
.x19_c00216{left:290.560000pt;}
.x33_c00216{left:299.520000pt;}
.x18_c00216{left:309.120000pt;}
.x6_c00216{left:311.040000pt;}
.x13_c00216{left:329.600000pt;}
.x34_c00216{left:337.280000pt;}
.x29_c00216{left:338.560000pt;}
.x1a_c00216{left:348.160000pt;}
.x2f_c00216{left:357.120000pt;}
.x2c_c00216{left:366.080000pt;}
.x1b_c00216{left:376.960000pt;}
.x2d_c00216{left:405.120000pt;}
.x10_c00216{left:415.360000pt;}
.x2e_c00216{left:452.480000pt;}
.x11_c00216{left:463.360000pt;}
.x1c_c00216{left:511.360000pt;}
.x23_c00216{left:512.640000pt;}
.x28_c00216{left:529.280000pt;}
.x24_c00216{left:531.200000pt;}
.x35_c00216{left:558.080000pt;}
.x22_c00216{left:559.360000pt;}
.x1f_c00216{left:560.640000pt;}
.x26_c00216{left:588.160000pt;}
.x20_c00216{left:589.440000pt;}
.x27_c00216{left:616.960000pt;}
.x21_c00216{left:618.240000pt;}
.x36_c00216{left:624.640000pt;}
.x1e_c00216{left:625.920000pt;}
.x37_c00216{left:643.200000pt;}
.x25_c00216{left:644.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_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_d23c74f809a818d51c053e17.woff2')format("woff");}.ff1_c00217{font-family:ff1_c00217;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3d_c00217{transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);}
.m45_c00217{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m29_c00217{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m4d_c00217{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m2e_c00217{transform:matrix(0.246925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246925,0.000000,0.000000,0.250000,0,0);}
.m3b_c00217{transform:matrix(0.246975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246975,0.000000,0.000000,0.250000,0,0);}
.m46_c00217{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m16_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);}
.m11_c00217{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);}
.m4b_c00217{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m13_c00217{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);}
.m3e_c00217{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00217{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m2_c00217{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m17_c00217{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_c00217{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.me_c00217{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m3_c00217{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m12_c00217{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00217{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);}
.m42_c00217{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m35_c00217{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m7_c00217{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m41_c00217{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m22_c00217{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mc_c00217{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m47_c00217{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00217{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m30_c00217{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1_c00217{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m40_c00217{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m44_c00217{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00217{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m18_c00217{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m24_c00217{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);}
.m48_c00217{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.ma_c00217{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m15_c00217{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);}
.m25_c00217{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);}
.m2d_c00217{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m19_c00217{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m36_c00217{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_c00217{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m9_c00217{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.mf_c00217{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);}
.m1e_c00217{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m34_c00217{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00217{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m4_c00217{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.mb_c00217{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00217{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);}
.md_c00217{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);}
.m28_c00217{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);}
.m0_c00217{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00217{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);}
.m1b_c00217{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m27_c00217{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);}
.m2c_c00217{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m23_c00217{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m49_c00217{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m39_c00217{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);}
.m1d_c00217{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);}
.m26_c00217{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);}
.m37_c00217{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00217{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m43_c00217{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);}
.m33_c00217{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m8_c00217{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m38_c00217{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);}
.m2a_c00217{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m21_c00217{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m6_c00217{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);}
.m32_c00217{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);}
.m5_c00217{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00217{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);}
.m31_c00217{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m14_c00217{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00217{transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00217{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.v1_c00217{vertical-align:-8.640000px;}
.v0_c00217{vertical-align:0.000000px;}
.ls0_c00217{letter-spacing:0.000000px;}
.sc__c00217{text-shadow:none;}
.sc0_c00217{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00217{-webkit-text-stroke:0px transparent;}
.sc0_c00217{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00217{word-spacing:0.000000px;}
.ws0_c00217{word-spacing:5.117760px;}
.ws1_c00217{word-spacing:43.054462px;}
.fc0_c00217{color:transparent;}
.fsc_c00217{font-size:37.440000px;}
.fs5_c00217{font-size:40.320000px;}
.fsb_c00217{font-size:46.080000px;}
.fs9_c00217{font-size:48.960000px;}
.fs1_c00217{font-size:51.840000px;}
.fs0_c00217{font-size:54.720000px;}
.fs8_c00217{font-size:57.600000px;}
.fs3_c00217{font-size:60.480000px;}
.fsa_c00217{font-size:63.360000px;}
.fs6_c00217{font-size:69.120000px;}
.fs7_c00217{font-size:72.000000px;}
.fs4_c00217{font-size:74.880000px;}
.fs2_c00217{font-size:77.760000px;}
.fsd_c00217{font-size:109.440000px;}
.y0_c00217{bottom:0.000000px;}
.y56_c00217{bottom:26.640000px;}
.y54_c00217{bottom:36.000000px;}
.y53_c00217{bottom:39.600000px;}
.y52_c00217{bottom:40.320000px;}
.y55_c00217{bottom:41.040000px;}
.y51_c00217{bottom:42.480000px;}
.y50_c00217{bottom:79.200000px;}
.y4f_c00217{bottom:80.640000px;}
.y4b_c00217{bottom:133.200000px;}
.y4c_c00217{bottom:133.920000px;}
.y4d_c00217{bottom:136.080000px;}
.y4e_c00217{bottom:136.800000px;}
.y6c_c00217{bottom:137.520000px;}
.y4a_c00217{bottom:138.960000px;}
.y49_c00217{bottom:177.120000px;}
.y48_c00217{bottom:181.440000px;}
.y45_c00217{bottom:208.800000px;}
.y47_c00217{bottom:210.960000px;}
.y6a_c00217{bottom:211.680000px;}
.y46_c00217{bottom:212.400000px;}
.y6b_c00217{bottom:213.840000px;}
.y44_c00217{bottom:214.560000px;}
.y3f_c00217{bottom:252.000000px;}
.y43_c00217{bottom:252.720000px;}
.y41_c00217{bottom:254.160000px;}
.y68_c00217{bottom:254.880000px;}
.y40_c00217{bottom:255.600000px;}
.y42_c00217{bottom:256.320000px;}
.y3e_c00217{bottom:257.040000px;}
.y69_c00217{bottom:257.760000px;}
.y3d_c00217{bottom:298.800000px;}
.y3c_c00217{bottom:301.680000px;}
.y3a_c00217{bottom:349.200000px;}
.y3b_c00217{bottom:349.920000px;}
.y39_c00217{bottom:352.800000px;}
.y37_c00217{bottom:353.520000px;}
.y38_c00217{bottom:354.240000px;}
.y36_c00217{bottom:354.960000px;}
.y34_c00217{bottom:381.600000px;}
.y35_c00217{bottom:383.760000px;}
.y67_c00217{bottom:384.480000px;}
.y33_c00217{bottom:385.920000px;}
.y32_c00217{bottom:386.640000px;}
.y31_c00217{bottom:387.360000px;}
.y30_c00217{bottom:426.240000px;}
.y2f_c00217{bottom:426.960000px;}
.y2e_c00217{bottom:429.120000px;}
.y2d_c00217{bottom:429.840000px;}
.y2a_c00217{bottom:457.920000px;}
.y2c_c00217{bottom:458.640000px;}
.y2b_c00217{bottom:459.360000px;}
.y66_c00217{bottom:460.080000px;}
.y29_c00217{bottom:461.520000px;}
.y28_c00217{bottom:501.840000px;}
.y27_c00217{bottom:503.280000px;}
.y22_c00217{bottom:533.520000px;}
.y26_c00217{bottom:534.240000px;}
.y23_c00217{bottom:534.960000px;}
.y65_c00217{bottom:535.680000px;}
.y25_c00217{bottom:536.400000px;}
.y24_c00217{bottom:537.120000px;}
.y21_c00217{bottom:537.840000px;}
.y1f_c00217{bottom:578.160000px;}
.y20_c00217{bottom:579.600000px;}
.y1e_c00217{bottom:580.320000px;}
.y1c_c00217{bottom:622.800000px;}
.y1d_c00217{bottom:623.520000px;}
.y1a_c00217{bottom:673.200000px;}
.y1b_c00217{bottom:674.640000px;}
.y18_c00217{bottom:675.360000px;}
.y64_c00217{bottom:676.080000px;}
.y19_c00217{bottom:676.800000px;}
.y15_c00217{bottom:716.400000px;}
.y17_c00217{bottom:717.120000px;}
.y14_c00217{bottom:718.560000px;}
.y16_c00217{bottom:720.000000px;}
.y13_c00217{bottom:759.600000px;}
.y63_c00217{bottom:760.320000px;}
.y61_c00217{bottom:761.040000px;}
.y62_c00217{bottom:762.480000px;}
.y12_c00217{bottom:763.200000px;}
.y60_c00217{bottom:763.920000px;}
.y11_c00217{bottom:802.800000px;}
.y10_c00217{bottom:804.240000px;}
.y5f_c00217{bottom:804.960000px;}
.y5e_c00217{bottom:805.680000px;}
.y5d_c00217{bottom:806.400000px;}
.yf_c00217{bottom:846.000000px;}
.ye_c00217{bottom:847.440000px;}
.yd_c00217{bottom:889.200000px;}
.yc_c00217{bottom:890.640000px;}
.y5c_c00217{bottom:891.360000px;}
.y5b_c00217{bottom:892.080000px;}
.y5a_c00217{bottom:892.800000px;}
.yb_c00217{bottom:933.840000px;}
.y9_c00217{bottom:936.000000px;}
.ya_c00217{bottom:936.720000px;}
.y59_c00217{bottom:964.800000px;}
.y7_c00217{bottom:965.520000px;}
.y6_c00217{bottom:966.960000px;}
.y4_c00217{bottom:967.680000px;}
.y5_c00217{bottom:968.400000px;}
.y8_c00217{bottom:969.120000px;}
.y3_c00217{bottom:1008.000000px;}
.y58_c00217{bottom:1008.720000px;}
.y1_c00217{bottom:1010.160000px;}
.y2_c00217{bottom:1012.320000px;}
.y57_c00217{bottom:1097.280000px;}
.he_c00217{height:33.692344px;}
.h7_c00217{height:36.284062px;}
.hd_c00217{height:41.467500px;}
.hb_c00217{height:44.059219px;}
.h3_c00217{height:46.650937px;}
.h2_c00217{height:49.242656px;}
.ha_c00217{height:51.834375px;}
.h5_c00217{height:54.426094px;}
.hc_c00217{height:57.017812px;}
.h8_c00217{height:62.201250px;}
.h9_c00217{height:64.792969px;}
.h6_c00217{height:67.384687px;}
.h4_c00217{height:69.976406px;}
.hf_c00217{height:98.485312px;}
.h1_c00217{height:1150.500000px;}
.h0_c00217{height:1150.560000px;}
.w1_c00217{width:785.250000px;}
.w0_c00217{width:785.520000px;}
.x0_c00217{left:0.000000px;}
.x1_c00217{left:79.200000px;}
.x2d_c00217{left:80.640000px;}
.xf_c00217{left:118.800000px;}
.x12_c00217{left:130.320000px;}
.x2e_c00217{left:138.960000px;}
.x2_c00217{left:140.400000px;}
.x4_c00217{left:141.840000px;}
.x25_c00217{left:151.200000px;}
.x15_c00217{left:162.000000px;}
.x9_c00217{left:164.160000px;}
.x2f_c00217{left:181.440000px;}
.x10_c00217{left:182.880000px;}
.x3_c00217{left:185.040000px;}
.xa_c00217{left:194.400000px;}
.x13_c00217{left:204.480000px;}
.xd_c00217{left:226.080000px;}
.x5_c00217{left:228.960000px;}
.x16_c00217{left:236.880000px;}
.xb_c00217{left:239.040000px;}
.x30_c00217{left:246.240000px;}
.x1b_c00217{left:258.480000px;}
.xc_c00217{left:270.720000px;}
.x2a_c00217{left:272.160000px;}
.x22_c00217{left:279.360000px;}
.xe_c00217{left:281.520000px;}
.x17_c00217{left:291.600000px;}
.x14_c00217{left:302.400000px;}
.x6_c00217{left:314.640000px;}
.x23_c00217{left:324.000000px;}
.x2b_c00217{left:334.800000px;}
.x1f_c00217{left:345.600000px;}
.x18_c00217{left:347.040000px;}
.x2c_c00217{left:356.400000px;}
.x1c_c00217{left:357.840000px;}
.x27_c00217{left:367.920000px;}
.x7_c00217{left:369.360000px;}
.x29_c00217{left:388.800000px;}
.x20_c00217{left:400.320000px;}
.x8_c00217{left:411.120000px;}
.x11_c00217{left:432.720000px;}
.x19_c00217{left:441.360000px;}
.x1d_c00217{left:443.520000px;}
.x21_c00217{left:453.600000px;}
.x26_c00217{left:464.400000px;}
.x31_c00217{left:483.840000px;}
.x1a_c00217{left:486.000000px;}
.x1e_c00217{left:496.800000px;}
.x28_c00217{left:506.880000px;}
.x24_c00217{left:523.440000px;}
.x41_c00217{left:562.320000px;}
.x3b_c00217{left:572.400000px;}
.x39_c00217{left:573.840000px;}
.x3a_c00217{left:594.000000px;}
.x3d_c00217{left:616.320000px;}
.x42_c00217{left:625.680000px;}
.x36_c00217{left:627.120000px;}
.x33_c00217{left:628.560000px;}
.x3e_c00217{left:658.080000px;}
.x34_c00217{left:660.960000px;}
.x3f_c00217{left:691.200000px;}
.x37_c00217{left:693.360000px;}
.x40_c00217{left:699.840000px;}
.x35_c00217{left:702.000000px;}
.x32_c00217{left:703.440000px;}
.x3c_c00217{left:721.440000px;}
.x38_c00217{left:722.880000px;}
@media print{
.v1_c00217{vertical-align:-7.680000pt;}
.v0_c00217{vertical-align:0.000000pt;}
.ls0_c00217{letter-spacing:0.000000pt;}
.ws2_c00217{word-spacing:0.000000pt;}
.ws0_c00217{word-spacing:4.549120pt;}
.ws1_c00217{word-spacing:38.270633pt;}
.fsc_c00217{font-size:33.280000pt;}
.fs5_c00217{font-size:35.840000pt;}
.fsb_c00217{font-size:40.960000pt;}
.fs9_c00217{font-size:43.520000pt;}
.fs1_c00217{font-size:46.080000pt;}
.fs0_c00217{font-size:48.640000pt;}
.fs8_c00217{font-size:51.200000pt;}
.fs3_c00217{font-size:53.760000pt;}
.fsa_c00217{font-size:56.320000pt;}
.fs6_c00217{font-size:61.440000pt;}
.fs7_c00217{font-size:64.000000pt;}
.fs4_c00217{font-size:66.560000pt;}
.fs2_c00217{font-size:69.120000pt;}
.fsd_c00217{font-size:97.280000pt;}
.y0_c00217{bottom:0.000000pt;}
.y56_c00217{bottom:23.680000pt;}
.y54_c00217{bottom:32.000000pt;}
.y53_c00217{bottom:35.200000pt;}
.y52_c00217{bottom:35.840000pt;}
.y55_c00217{bottom:36.480000pt;}
.y51_c00217{bottom:37.760000pt;}
.y50_c00217{bottom:70.400000pt;}
.y4f_c00217{bottom:71.680000pt;}
.y4b_c00217{bottom:118.400000pt;}
.y4c_c00217{bottom:119.040000pt;}
.y4d_c00217{bottom:120.960000pt;}
.y4e_c00217{bottom:121.600000pt;}
.y6c_c00217{bottom:122.240000pt;}
.y4a_c00217{bottom:123.520000pt;}
.y49_c00217{bottom:157.440000pt;}
.y48_c00217{bottom:161.280000pt;}
.y45_c00217{bottom:185.600000pt;}
.y47_c00217{bottom:187.520000pt;}
.y6a_c00217{bottom:188.160000pt;}
.y46_c00217{bottom:188.800000pt;}
.y6b_c00217{bottom:190.080000pt;}
.y44_c00217{bottom:190.720000pt;}
.y3f_c00217{bottom:224.000000pt;}
.y43_c00217{bottom:224.640000pt;}
.y41_c00217{bottom:225.920000pt;}
.y68_c00217{bottom:226.560000pt;}
.y40_c00217{bottom:227.200000pt;}
.y42_c00217{bottom:227.840000pt;}
.y3e_c00217{bottom:228.480000pt;}
.y69_c00217{bottom:229.120000pt;}
.y3d_c00217{bottom:265.600000pt;}
.y3c_c00217{bottom:268.160000pt;}
.y3a_c00217{bottom:310.400000pt;}
.y3b_c00217{bottom:311.040000pt;}
.y39_c00217{bottom:313.600000pt;}
.y37_c00217{bottom:314.240000pt;}
.y38_c00217{bottom:314.880000pt;}
.y36_c00217{bottom:315.520000pt;}
.y34_c00217{bottom:339.200000pt;}
.y35_c00217{bottom:341.120000pt;}
.y67_c00217{bottom:341.760000pt;}
.y33_c00217{bottom:343.040000pt;}
.y32_c00217{bottom:343.680000pt;}
.y31_c00217{bottom:344.320000pt;}
.y30_c00217{bottom:378.880000pt;}
.y2f_c00217{bottom:379.520000pt;}
.y2e_c00217{bottom:381.440000pt;}
.y2d_c00217{bottom:382.080000pt;}
.y2a_c00217{bottom:407.040000pt;}
.y2c_c00217{bottom:407.680000pt;}
.y2b_c00217{bottom:408.320000pt;}
.y66_c00217{bottom:408.960000pt;}
.y29_c00217{bottom:410.240000pt;}
.y28_c00217{bottom:446.080000pt;}
.y27_c00217{bottom:447.360000pt;}
.y22_c00217{bottom:474.240000pt;}
.y26_c00217{bottom:474.880000pt;}
.y23_c00217{bottom:475.520000pt;}
.y65_c00217{bottom:476.160000pt;}
.y25_c00217{bottom:476.800000pt;}
.y24_c00217{bottom:477.440000pt;}
.y21_c00217{bottom:478.080000pt;}
.y1f_c00217{bottom:513.920000pt;}
.y20_c00217{bottom:515.200000pt;}
.y1e_c00217{bottom:515.840000pt;}
.y1c_c00217{bottom:553.600000pt;}
.y1d_c00217{bottom:554.240000pt;}
.y1a_c00217{bottom:598.400000pt;}
.y1b_c00217{bottom:599.680000pt;}
.y18_c00217{bottom:600.320000pt;}
.y64_c00217{bottom:600.960000pt;}
.y19_c00217{bottom:601.600000pt;}
.y15_c00217{bottom:636.800000pt;}
.y17_c00217{bottom:637.440000pt;}
.y14_c00217{bottom:638.720000pt;}
.y16_c00217{bottom:640.000000pt;}
.y13_c00217{bottom:675.200000pt;}
.y63_c00217{bottom:675.840000pt;}
.y61_c00217{bottom:676.480000pt;}
.y62_c00217{bottom:677.760000pt;}
.y12_c00217{bottom:678.400000pt;}
.y60_c00217{bottom:679.040000pt;}
.y11_c00217{bottom:713.600000pt;}
.y10_c00217{bottom:714.880000pt;}
.y5f_c00217{bottom:715.520000pt;}
.y5e_c00217{bottom:716.160000pt;}
.y5d_c00217{bottom:716.800000pt;}
.yf_c00217{bottom:752.000000pt;}
.ye_c00217{bottom:753.280000pt;}
.yd_c00217{bottom:790.400000pt;}
.yc_c00217{bottom:791.680000pt;}
.y5c_c00217{bottom:792.320000pt;}
.y5b_c00217{bottom:792.960000pt;}
.y5a_c00217{bottom:793.600000pt;}
.yb_c00217{bottom:830.080000pt;}
.y9_c00217{bottom:832.000000pt;}
.ya_c00217{bottom:832.640000pt;}
.y59_c00217{bottom:857.600000pt;}
.y7_c00217{bottom:858.240000pt;}
.y6_c00217{bottom:859.520000pt;}
.y4_c00217{bottom:860.160000pt;}
.y5_c00217{bottom:860.800000pt;}
.y8_c00217{bottom:861.440000pt;}
.y3_c00217{bottom:896.000000pt;}
.y58_c00217{bottom:896.640000pt;}
.y1_c00217{bottom:897.920000pt;}
.y2_c00217{bottom:899.840000pt;}
.y57_c00217{bottom:975.360000pt;}
.he_c00217{height:29.948750pt;}
.h7_c00217{height:32.252500pt;}
.hd_c00217{height:36.860000pt;}
.hb_c00217{height:39.163750pt;}
.h3_c00217{height:41.467500pt;}
.h2_c00217{height:43.771250pt;}
.ha_c00217{height:46.075000pt;}
.h5_c00217{height:48.378750pt;}
.hc_c00217{height:50.682500pt;}
.h8_c00217{height:55.290000pt;}
.h9_c00217{height:57.593750pt;}
.h6_c00217{height:59.897500pt;}
.h4_c00217{height:62.201250pt;}
.hf_c00217{height:87.542500pt;}
.h1_c00217{height:1022.666667pt;}
.h0_c00217{height:1022.720000pt;}
.w1_c00217{width:698.000000pt;}
.w0_c00217{width:698.240000pt;}
.x0_c00217{left:0.000000pt;}
.x1_c00217{left:70.400000pt;}
.x2d_c00217{left:71.680000pt;}
.xf_c00217{left:105.600000pt;}
.x12_c00217{left:115.840000pt;}
.x2e_c00217{left:123.520000pt;}
.x2_c00217{left:124.800000pt;}
.x4_c00217{left:126.080000pt;}
.x25_c00217{left:134.400000pt;}
.x15_c00217{left:144.000000pt;}
.x9_c00217{left:145.920000pt;}
.x2f_c00217{left:161.280000pt;}
.x10_c00217{left:162.560000pt;}
.x3_c00217{left:164.480000pt;}
.xa_c00217{left:172.800000pt;}
.x13_c00217{left:181.760000pt;}
.xd_c00217{left:200.960000pt;}
.x5_c00217{left:203.520000pt;}
.x16_c00217{left:210.560000pt;}
.xb_c00217{left:212.480000pt;}
.x30_c00217{left:218.880000pt;}
.x1b_c00217{left:229.760000pt;}
.xc_c00217{left:240.640000pt;}
.x2a_c00217{left:241.920000pt;}
.x22_c00217{left:248.320000pt;}
.xe_c00217{left:250.240000pt;}
.x17_c00217{left:259.200000pt;}
.x14_c00217{left:268.800000pt;}
.x6_c00217{left:279.680000pt;}
.x23_c00217{left:288.000000pt;}
.x2b_c00217{left:297.600000pt;}
.x1f_c00217{left:307.200000pt;}
.x18_c00217{left:308.480000pt;}
.x2c_c00217{left:316.800000pt;}
.x1c_c00217{left:318.080000pt;}
.x27_c00217{left:327.040000pt;}
.x7_c00217{left:328.320000pt;}
.x29_c00217{left:345.600000pt;}
.x20_c00217{left:355.840000pt;}
.x8_c00217{left:365.440000pt;}
.x11_c00217{left:384.640000pt;}
.x19_c00217{left:392.320000pt;}
.x1d_c00217{left:394.240000pt;}
.x21_c00217{left:403.200000pt;}
.x26_c00217{left:412.800000pt;}
.x31_c00217{left:430.080000pt;}
.x1a_c00217{left:432.000000pt;}
.x1e_c00217{left:441.600000pt;}
.x28_c00217{left:450.560000pt;}
.x24_c00217{left:465.280000pt;}
.x41_c00217{left:499.840000pt;}
.x3b_c00217{left:508.800000pt;}
.x39_c00217{left:510.080000pt;}
.x3a_c00217{left:528.000000pt;}
.x3d_c00217{left:547.840000pt;}
.x42_c00217{left:556.160000pt;}
.x36_c00217{left:557.440000pt;}
.x33_c00217{left:558.720000pt;}
.x3e_c00217{left:584.960000pt;}
.x34_c00217{left:587.520000pt;}
.x3f_c00217{left:614.400000pt;}
.x37_c00217{left:616.320000pt;}
.x40_c00217{left:622.080000pt;}
.x35_c00217{left:624.000000pt;}
.x32_c00217{left:625.280000pt;}
.x3c_c00217{left:641.280000pt;}
.x38_c00217{left:642.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_06bbe5602540030313568279.woff2')format("woff");}.ff1_c00218{font-family:ff1_c00218;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4a_c00218{transform:matrix(0.175550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175550,0.000000,0.000000,0.250000,0,0);}
.m38_c00218{transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);}
.m21_c00218{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00218{transform:matrix(0.219800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219800,0.000000,0.000000,0.250000,0,0);}
.m4c_c00218{transform:matrix(0.222050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222050,0.000000,0.000000,0.250000,0,0);}
.m48_c00218{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);}
.m4d_c00218{transform:matrix(0.234200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234200,0.000000,0.000000,0.250000,0,0);}
.m8_c00218{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m3c_c00218{transform:matrix(0.239150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239150,0.000000,0.000000,0.250000,0,0);}
.m54_c00218{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m4b_c00218{transform:matrix(0.248025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248025,0.000000,0.000000,0.250000,0,0);}
.ma_c00218{transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);}
.m11_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);}
.m2_c00218{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);}
.m3f_c00218{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m14_c00218{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m12_c00218{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.me_c00218{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m9_c00218{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00218{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);}
.m4f_c00218{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m27_c00218{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_c00218{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m35_c00218{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);}
.m3d_c00218{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m13_c00218{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);}
.m37_c00218{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m20_c00218{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m51_c00218{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00218{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m5_c00218{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m17_c00218{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m58_c00218{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00218{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m57_c00218{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.md_c00218{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m0_c00218{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00218{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m23_c00218{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m47_c00218{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m41_c00218{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m52_c00218{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m15_c00218{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m7_c00218{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m24_c00218{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m4_c00218{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m16_c00218{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);}
.m45_c00218{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m31_c00218{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);}
.m50_c00218{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00218{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00218{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1_c00218{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00218{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m53_c00218{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00218{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00218{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m34_c00218{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_c00218{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m44_c00218{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);}
.m19_c00218{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m28_c00218{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);}
.mc_c00218{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);}
.m1e_c00218{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m30_c00218{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);}
.m42_c00218{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00218{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);}
.m40_c00218{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);}
.m39_c00218{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m59_c00218{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00218{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);}
.m2d_c00218{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00218{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);}
.m43_c00218{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m18_c00218{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m56_c00218{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m29_c00218{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.mb_c00218{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m32_c00218{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m46_c00218{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);}
.m36_c00218{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m3b_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);}
.m5d_c00218{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m26_c00218{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);}
.m22_c00218{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m3_c00218{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);}
.m1d_c00218{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00218{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);}
.m33_c00218{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m25_c00218{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m55_c00218{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m6_c00218{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00218{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);}
.m1a_c00218{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m49_c00218{transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00218{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.v1_c00218{vertical-align:-8.640000px;}
.v0_c00218{vertical-align:0.000000px;}
.ls0_c00218{letter-spacing:0.000000px;}
.sc__c00218{text-shadow:none;}
.sc0_c00218{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00218{-webkit-text-stroke:0px transparent;}
.sc0_c00218{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00218{word-spacing:0.000000px;}
.ws0_c00218{word-spacing:14.240400px;}
.fc0_c00218{color:transparent;}
.fs3_c00218{font-size:37.440000px;}
.fs9_c00218{font-size:40.320000px;}
.fse_c00218{font-size:43.200000px;}
.fsd_c00218{font-size:46.080000px;}
.fs8_c00218{font-size:48.960000px;}
.fs4_c00218{font-size:51.840000px;}
.fs6_c00218{font-size:54.720000px;}
.fs7_c00218{font-size:57.600000px;}
.fs1_c00218{font-size:60.480000px;}
.fsb_c00218{font-size:63.360000px;}
.fsc_c00218{font-size:66.240000px;}
.fs5_c00218{font-size:69.120000px;}
.fsa_c00218{font-size:72.000000px;}
.fs2_c00218{font-size:74.880000px;}
.fs0_c00218{font-size:77.760000px;}
.y0_c00218{bottom:0.000000px;}
.y7b_c00218{bottom:43.200000px;}
.y7a_c00218{bottom:44.640000px;}
.y79_c00218{bottom:46.080000px;}
.y7d_c00218{bottom:63.360000px;}
.y7c_c00218{bottom:64.080000px;}
.y75_c00218{bottom:72.000000px;}
.y78_c00218{bottom:72.720000px;}
.y77_c00218{bottom:73.440000px;}
.y76_c00218{bottom:75.600000px;}
.y74_c00218{bottom:77.760000px;}
.y73_c00218{bottom:78.480000px;}
.y70_c00218{bottom:115.920000px;}
.y6c_c00218{bottom:116.640000px;}
.y6d_c00218{bottom:117.360000px;}
.y6e_c00218{bottom:118.800000px;}
.y6f_c00218{bottom:119.520000px;}
.y71_c00218{bottom:120.240000px;}
.y72_c00218{bottom:120.960000px;}
.y6b_c00218{bottom:121.680000px;}
.y69_c00218{bottom:159.120000px;}
.y6a_c00218{bottom:162.720000px;}
.y68_c00218{bottom:164.160000px;}
.y67_c00218{bottom:165.600000px;}
.y63_c00218{bottom:201.600000px;}
.y66_c00218{bottom:202.320000px;}
.y64_c00218{bottom:203.040000px;}
.y65_c00218{bottom:205.200000px;}
.y62_c00218{bottom:207.360000px;}
.y5d_c00218{bottom:234.000000px;}
.y61_c00218{bottom:236.160000px;}
.y5f_c00218{bottom:236.880000px;}
.y5e_c00218{bottom:237.600000px;}
.y60_c00218{bottom:238.320000px;}
.y5c_c00218{bottom:239.040000px;}
.y46_c00218{bottom:277.920000px;}
.y47_c00218{bottom:279.360000px;}
.y49_c00218{bottom:280.800000px;}
.y48_c00218{bottom:281.520000px;}
.y43_c00218{bottom:308.880000px;}
.y44_c00218{bottom:311.760000px;}
.y55_c00218{bottom:312.480000px;}
.y45_c00218{bottom:313.200000px;}
.y42_c00218{bottom:314.640000px;}
.y41_c00218{bottom:352.080000px;}
.y53_c00218{bottom:352.800000px;}
.y52_c00218{bottom:354.240000px;}
.y54_c00218{bottom:354.960000px;}
.y3f_c00218{bottom:356.400000px;}
.y40_c00218{bottom:357.840000px;}
.y3e_c00218{bottom:396.000000px;}
.y3d_c00218{bottom:398.160000px;}
.y3c_c00218{bottom:398.880000px;}
.y3b_c00218{bottom:399.600000px;}
.y5a_c00218{bottom:439.920000px;}
.y5b_c00218{bottom:440.640000px;}
.y4f_c00218{bottom:441.360000px;}
.y50_c00218{bottom:442.800000px;}
.y51_c00218{bottom:443.520000px;}
.y59_c00218{bottom:482.400000px;}
.y4d_c00218{bottom:483.840000px;}
.y4c_c00218{bottom:484.560000px;}
.y56_c00218{bottom:486.000000px;}
.y4e_c00218{bottom:486.720000px;}
.y58_c00218{bottom:487.440000px;}
.y57_c00218{bottom:488.160000px;}
.y3a_c00218{bottom:526.320000px;}
.y4b_c00218{bottom:527.040000px;}
.y4a_c00218{bottom:528.480000px;}
.y37_c00218{bottom:529.920000px;}
.y38_c00218{bottom:530.640000px;}
.y39_c00218{bottom:531.360000px;}
.y32_c00218{bottom:571.680000px;}
.y34_c00218{bottom:573.120000px;}
.y33_c00218{bottom:573.840000px;}
.y31_c00218{bottom:601.200000px;}
.y36_c00218{bottom:602.640000px;}
.y35_c00218{bottom:603.360000px;}
.y30_c00218{bottom:604.080000px;}
.y2f_c00218{bottom:605.520000px;}
.y2e_c00218{bottom:606.240000px;}
.y2c_c00218{bottom:648.000000px;}
.y2d_c00218{bottom:648.720000px;}
.y2b_c00218{bottom:649.440000px;}
.y2a_c00218{bottom:650.880000px;}
.y27_c00218{bottom:700.560000px;}
.y29_c00218{bottom:701.280000px;}
.y26_c00218{bottom:702.720000px;}
.y28_c00218{bottom:703.440000px;}
.y24_c00218{bottom:754.560000px;}
.y23_c00218{bottom:757.440000px;}
.y21_c00218{bottom:784.800000px;}
.y1e_c00218{bottom:785.520000px;}
.y22_c00218{bottom:786.240000px;}
.y1d_c00218{bottom:786.960000px;}
.y25_c00218{bottom:787.680000px;}
.y20_c00218{bottom:788.400000px;}
.y1f_c00218{bottom:789.120000px;}
.y1b_c00218{bottom:828.720000px;}
.y19_c00218{bottom:831.600000px;}
.y1a_c00218{bottom:832.320000px;}
.y15_c00218{bottom:860.400000px;}
.y1c_c00218{bottom:861.120000px;}
.y17_c00218{bottom:861.840000px;}
.y16_c00218{bottom:862.560000px;}
.y14_c00218{bottom:863.280000px;}
.y18_c00218{bottom:864.000000px;}
.y10_c00218{bottom:903.600000px;}
.y13_c00218{bottom:904.320000px;}
.y12_c00218{bottom:905.040000px;}
.yf_c00218{bottom:905.760000px;}
.y11_c00218{bottom:908.640000px;}
.ya_c00218{bottom:1000.800000px;}
.ye_c00218{bottom:1001.520000px;}
.yc_c00218{bottom:1002.240000px;}
.y9_c00218{bottom:1003.680000px;}
.yd_c00218{bottom:1004.400000px;}
.yb_c00218{bottom:1005.120000px;}
.y8_c00218{bottom:1035.360000px;}
.y6_c00218{bottom:1044.720000px;}
.y3_c00218{bottom:1045.440000px;}
.y2_c00218{bottom:1046.160000px;}
.y5_c00218{bottom:1046.880000px;}
.y7_c00218{bottom:1048.320000px;}
.y4_c00218{bottom:1049.040000px;}
.y1_c00218{bottom:1103.040000px;}
.h5_c00218{height:33.692344px;}
.hb_c00218{height:36.284062px;}
.h10_c00218{height:38.875781px;}
.hf_c00218{height:41.467500px;}
.ha_c00218{height:44.059219px;}
.h6_c00218{height:46.650937px;}
.h8_c00218{height:49.242656px;}
.h9_c00218{height:51.834375px;}
.h3_c00218{height:54.426094px;}
.hd_c00218{height:57.017812px;}
.he_c00218{height:59.609531px;}
.h7_c00218{height:62.201250px;}
.hc_c00218{height:64.792969px;}
.h4_c00218{height:67.384687px;}
.h2_c00218{height:69.976406px;}
.h0_c00218{height:1153.440000px;}
.h1_c00218{height:1153.500000px;}
.w1_c00218{width:789.750000px;}
.w0_c00218{width:789.840000px;}
.x0_c00218{left:0.000000px;}
.x2_c00218{left:78.480000px;}
.x30_c00218{left:79.920000px;}
.x21_c00218{left:130.320000px;}
.x31_c00218{left:139.680000px;}
.x3_c00218{left:141.120000px;}
.x26_c00218{left:151.920000px;}
.x2e_c00218{left:171.360000px;}
.x3f_c00218{left:172.800000px;}
.x27_c00218{left:174.240000px;}
.x32_c00218{left:182.160000px;}
.x28_c00218{left:183.600000px;}
.x1e_c00218{left:194.400000px;}
.x19_c00218{left:216.000000px;}
.x33_c00218{left:226.080000px;}
.x22_c00218{left:227.520000px;}
.x29_c00218{left:237.600000px;}
.x4_c00218{left:239.040000px;}
.x15_c00218{left:248.400000px;}
.x1f_c00218{left:259.200000px;}
.x3b_c00218{left:268.560000px;}
.x1a_c00218{left:270.000000px;}
.x10_c00218{left:271.440000px;}
.x3c_c00218{left:279.360000px;}
.x5_c00218{left:280.800000px;}
.x2a_c00218{left:291.600000px;}
.x16_c00218{left:303.120000px;}
.x36_c00218{left:311.760000px;}
.x11_c00218{left:313.200000px;}
.x1b_c00218{left:324.000000px;}
.x2c_c00218{left:334.800000px;}
.x2b_c00218{left:356.400000px;}
.x1c_c00218{left:367.920000px;}
.x6_c00218{left:378.720000px;}
.x2f_c00218{left:388.800000px;}
.x23_c00218{left:400.320000px;}
.x12_c00218{left:411.120000px;}
.xc_c00218{left:421.920000px;}
.x24_c00218{left:442.800000px;}
.x17_c00218{left:454.320000px;}
.x1d_c00218{left:464.400000px;}
.x34_c00218{left:475.200000px;}
.x18_c00218{left:497.520000px;}
.x7_c00218{left:509.040000px;}
.x3d_c00218{left:518.400000px;}
.xb_c00218{left:519.840000px;}
.x35_c00218{left:529.200000px;}
.x25_c00218{left:540.000000px;}
.x20_c00218{left:563.760000px;}
.x3a_c00218{left:593.280000px;}
.x8_c00218{left:595.440000px;}
.x39_c00218{left:625.680000px;}
.xd_c00218{left:627.120000px;}
.x13_c00218{left:628.560000px;}
.x3e_c00218{left:648.000000px;}
.x40_c00218{left:658.080000px;}
.x37_c00218{left:659.520000px;}
.xe_c00218{left:660.960000px;}
.x9_c00218{left:671.760000px;}
.x41_c00218{left:691.200000px;}
.xf_c00218{left:693.360000px;}
.x38_c00218{left:700.560000px;}
.x14_c00218{left:702.000000px;}
.xa_c00218{left:703.440000px;}
.x1_c00218{left:721.440000px;}
.x2d_c00218{left:722.880000px;}
@media print{
.v1_c00218{vertical-align:-7.680000pt;}
.v0_c00218{vertical-align:0.000000pt;}
.ls0_c00218{letter-spacing:0.000000pt;}
.ws1_c00218{word-spacing:0.000000pt;}
.ws0_c00218{word-spacing:12.658133pt;}
.fs3_c00218{font-size:33.280000pt;}
.fs9_c00218{font-size:35.840000pt;}
.fse_c00218{font-size:38.400000pt;}
.fsd_c00218{font-size:40.960000pt;}
.fs8_c00218{font-size:43.520000pt;}
.fs4_c00218{font-size:46.080000pt;}
.fs6_c00218{font-size:48.640000pt;}
.fs7_c00218{font-size:51.200000pt;}
.fs1_c00218{font-size:53.760000pt;}
.fsb_c00218{font-size:56.320000pt;}
.fsc_c00218{font-size:58.880000pt;}
.fs5_c00218{font-size:61.440000pt;}
.fsa_c00218{font-size:64.000000pt;}
.fs2_c00218{font-size:66.560000pt;}
.fs0_c00218{font-size:69.120000pt;}
.y0_c00218{bottom:0.000000pt;}
.y7b_c00218{bottom:38.400000pt;}
.y7a_c00218{bottom:39.680000pt;}
.y79_c00218{bottom:40.960000pt;}
.y7d_c00218{bottom:56.320000pt;}
.y7c_c00218{bottom:56.960000pt;}
.y75_c00218{bottom:64.000000pt;}
.y78_c00218{bottom:64.640000pt;}
.y77_c00218{bottom:65.280000pt;}
.y76_c00218{bottom:67.200000pt;}
.y74_c00218{bottom:69.120000pt;}
.y73_c00218{bottom:69.760000pt;}
.y70_c00218{bottom:103.040000pt;}
.y6c_c00218{bottom:103.680000pt;}
.y6d_c00218{bottom:104.320000pt;}
.y6e_c00218{bottom:105.600000pt;}
.y6f_c00218{bottom:106.240000pt;}
.y71_c00218{bottom:106.880000pt;}
.y72_c00218{bottom:107.520000pt;}
.y6b_c00218{bottom:108.160000pt;}
.y69_c00218{bottom:141.440000pt;}
.y6a_c00218{bottom:144.640000pt;}
.y68_c00218{bottom:145.920000pt;}
.y67_c00218{bottom:147.200000pt;}
.y63_c00218{bottom:179.200000pt;}
.y66_c00218{bottom:179.840000pt;}
.y64_c00218{bottom:180.480000pt;}
.y65_c00218{bottom:182.400000pt;}
.y62_c00218{bottom:184.320000pt;}
.y5d_c00218{bottom:208.000000pt;}
.y61_c00218{bottom:209.920000pt;}
.y5f_c00218{bottom:210.560000pt;}
.y5e_c00218{bottom:211.200000pt;}
.y60_c00218{bottom:211.840000pt;}
.y5c_c00218{bottom:212.480000pt;}
.y46_c00218{bottom:247.040000pt;}
.y47_c00218{bottom:248.320000pt;}
.y49_c00218{bottom:249.600000pt;}
.y48_c00218{bottom:250.240000pt;}
.y43_c00218{bottom:274.560000pt;}
.y44_c00218{bottom:277.120000pt;}
.y55_c00218{bottom:277.760000pt;}
.y45_c00218{bottom:278.400000pt;}
.y42_c00218{bottom:279.680000pt;}
.y41_c00218{bottom:312.960000pt;}
.y53_c00218{bottom:313.600000pt;}
.y52_c00218{bottom:314.880000pt;}
.y54_c00218{bottom:315.520000pt;}
.y3f_c00218{bottom:316.800000pt;}
.y40_c00218{bottom:318.080000pt;}
.y3e_c00218{bottom:352.000000pt;}
.y3d_c00218{bottom:353.920000pt;}
.y3c_c00218{bottom:354.560000pt;}
.y3b_c00218{bottom:355.200000pt;}
.y5a_c00218{bottom:391.040000pt;}
.y5b_c00218{bottom:391.680000pt;}
.y4f_c00218{bottom:392.320000pt;}
.y50_c00218{bottom:393.600000pt;}
.y51_c00218{bottom:394.240000pt;}
.y59_c00218{bottom:428.800000pt;}
.y4d_c00218{bottom:430.080000pt;}
.y4c_c00218{bottom:430.720000pt;}
.y56_c00218{bottom:432.000000pt;}
.y4e_c00218{bottom:432.640000pt;}
.y58_c00218{bottom:433.280000pt;}
.y57_c00218{bottom:433.920000pt;}
.y3a_c00218{bottom:467.840000pt;}
.y4b_c00218{bottom:468.480000pt;}
.y4a_c00218{bottom:469.760000pt;}
.y37_c00218{bottom:471.040000pt;}
.y38_c00218{bottom:471.680000pt;}
.y39_c00218{bottom:472.320000pt;}
.y32_c00218{bottom:508.160000pt;}
.y34_c00218{bottom:509.440000pt;}
.y33_c00218{bottom:510.080000pt;}
.y31_c00218{bottom:534.400000pt;}
.y36_c00218{bottom:535.680000pt;}
.y35_c00218{bottom:536.320000pt;}
.y30_c00218{bottom:536.960000pt;}
.y2f_c00218{bottom:538.240000pt;}
.y2e_c00218{bottom:538.880000pt;}
.y2c_c00218{bottom:576.000000pt;}
.y2d_c00218{bottom:576.640000pt;}
.y2b_c00218{bottom:577.280000pt;}
.y2a_c00218{bottom:578.560000pt;}
.y27_c00218{bottom:622.720000pt;}
.y29_c00218{bottom:623.360000pt;}
.y26_c00218{bottom:624.640000pt;}
.y28_c00218{bottom:625.280000pt;}
.y24_c00218{bottom:670.720000pt;}
.y23_c00218{bottom:673.280000pt;}
.y21_c00218{bottom:697.600000pt;}
.y1e_c00218{bottom:698.240000pt;}
.y22_c00218{bottom:698.880000pt;}
.y1d_c00218{bottom:699.520000pt;}
.y25_c00218{bottom:700.160000pt;}
.y20_c00218{bottom:700.800000pt;}
.y1f_c00218{bottom:701.440000pt;}
.y1b_c00218{bottom:736.640000pt;}
.y19_c00218{bottom:739.200000pt;}
.y1a_c00218{bottom:739.840000pt;}
.y15_c00218{bottom:764.800000pt;}
.y1c_c00218{bottom:765.440000pt;}
.y17_c00218{bottom:766.080000pt;}
.y16_c00218{bottom:766.720000pt;}
.y14_c00218{bottom:767.360000pt;}
.y18_c00218{bottom:768.000000pt;}
.y10_c00218{bottom:803.200000pt;}
.y13_c00218{bottom:803.840000pt;}
.y12_c00218{bottom:804.480000pt;}
.yf_c00218{bottom:805.120000pt;}
.y11_c00218{bottom:807.680000pt;}
.ya_c00218{bottom:889.600000pt;}
.ye_c00218{bottom:890.240000pt;}
.yc_c00218{bottom:890.880000pt;}
.y9_c00218{bottom:892.160000pt;}
.yd_c00218{bottom:892.800000pt;}
.yb_c00218{bottom:893.440000pt;}
.y8_c00218{bottom:920.320000pt;}
.y6_c00218{bottom:928.640000pt;}
.y3_c00218{bottom:929.280000pt;}
.y2_c00218{bottom:929.920000pt;}
.y5_c00218{bottom:930.560000pt;}
.y7_c00218{bottom:931.840000pt;}
.y4_c00218{bottom:932.480000pt;}
.y1_c00218{bottom:980.480000pt;}
.h5_c00218{height:29.948750pt;}
.hb_c00218{height:32.252500pt;}
.h10_c00218{height:34.556250pt;}
.hf_c00218{height:36.860000pt;}
.ha_c00218{height:39.163750pt;}
.h6_c00218{height:41.467500pt;}
.h8_c00218{height:43.771250pt;}
.h9_c00218{height:46.075000pt;}
.h3_c00218{height:48.378750pt;}
.hd_c00218{height:50.682500pt;}
.he_c00218{height:52.986250pt;}
.h7_c00218{height:55.290000pt;}
.hc_c00218{height:57.593750pt;}
.h4_c00218{height:59.897500pt;}
.h2_c00218{height:62.201250pt;}
.h0_c00218{height:1025.280000pt;}
.h1_c00218{height:1025.333333pt;}
.w1_c00218{width:702.000000pt;}
.w0_c00218{width:702.080000pt;}
.x0_c00218{left:0.000000pt;}
.x2_c00218{left:69.760000pt;}
.x30_c00218{left:71.040000pt;}
.x21_c00218{left:115.840000pt;}
.x31_c00218{left:124.160000pt;}
.x3_c00218{left:125.440000pt;}
.x26_c00218{left:135.040000pt;}
.x2e_c00218{left:152.320000pt;}
.x3f_c00218{left:153.600000pt;}
.x27_c00218{left:154.880000pt;}
.x32_c00218{left:161.920000pt;}
.x28_c00218{left:163.200000pt;}
.x1e_c00218{left:172.800000pt;}
.x19_c00218{left:192.000000pt;}
.x33_c00218{left:200.960000pt;}
.x22_c00218{left:202.240000pt;}
.x29_c00218{left:211.200000pt;}
.x4_c00218{left:212.480000pt;}
.x15_c00218{left:220.800000pt;}
.x1f_c00218{left:230.400000pt;}
.x3b_c00218{left:238.720000pt;}
.x1a_c00218{left:240.000000pt;}
.x10_c00218{left:241.280000pt;}
.x3c_c00218{left:248.320000pt;}
.x5_c00218{left:249.600000pt;}
.x2a_c00218{left:259.200000pt;}
.x16_c00218{left:269.440000pt;}
.x36_c00218{left:277.120000pt;}
.x11_c00218{left:278.400000pt;}
.x1b_c00218{left:288.000000pt;}
.x2c_c00218{left:297.600000pt;}
.x2b_c00218{left:316.800000pt;}
.x1c_c00218{left:327.040000pt;}
.x6_c00218{left:336.640000pt;}
.x2f_c00218{left:345.600000pt;}
.x23_c00218{left:355.840000pt;}
.x12_c00218{left:365.440000pt;}
.xc_c00218{left:375.040000pt;}
.x24_c00218{left:393.600000pt;}
.x17_c00218{left:403.840000pt;}
.x1d_c00218{left:412.800000pt;}
.x34_c00218{left:422.400000pt;}
.x18_c00218{left:442.240000pt;}
.x7_c00218{left:452.480000pt;}
.x3d_c00218{left:460.800000pt;}
.xb_c00218{left:462.080000pt;}
.x35_c00218{left:470.400000pt;}
.x25_c00218{left:480.000000pt;}
.x20_c00218{left:501.120000pt;}
.x3a_c00218{left:527.360000pt;}
.x8_c00218{left:529.280000pt;}
.x39_c00218{left:556.160000pt;}
.xd_c00218{left:557.440000pt;}
.x13_c00218{left:558.720000pt;}
.x3e_c00218{left:576.000000pt;}
.x40_c00218{left:584.960000pt;}
.x37_c00218{left:586.240000pt;}
.xe_c00218{left:587.520000pt;}
.x9_c00218{left:597.120000pt;}
.x41_c00218{left:614.400000pt;}
.xf_c00218{left:616.320000pt;}
.x38_c00218{left:622.720000pt;}
.x14_c00218{left:624.000000pt;}
.xa_c00218{left:625.280000pt;}
.x1_c00218{left:641.280000pt;}
.x2d_c00218{left:642.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_db0ddefdde6f40d7fdcb4a0b.woff2')format("woff");}.ff1_c00219{font-family:ff1_c00219;line-height:1.109863;font-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_c00219{transform:matrix(0.165075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165075,0.000000,0.000000,0.250000,0,0);}
.m1b_c00219{transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);}
.m10_c00219{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);}
.m26_c00219{transform:matrix(0.234825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234825,0.000000,0.000000,0.250000,0,0);}
.m23_c00219{transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);}
.m29_c00219{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m2a_c00219{transform:matrix(0.249200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249200,0.000000,0.000000,0.250000,0,0);}
.m2f_c00219{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m7_c00219{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);}
.m4b_c00219{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00219{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);}
.m35_c00219{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m14_c00219{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.me_c00219{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00219{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);}
.m25_c00219{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m6_c00219{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1_c00219{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);}
.m37_c00219{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m5_c00219{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m13_c00219{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m45_c00219{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m0_c00219{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m31_c00219{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m15_c00219{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00219{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mb_c00219{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m43_c00219{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m4_c00219{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mf_c00219{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m50_c00219{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00219{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m40_c00219{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m49_c00219{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m16_c00219{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00219{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m21_c00219{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.mc_c00219{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m3_c00219{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m20_c00219{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.md_c00219{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00219{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_c00219{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m36_c00219{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00219{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m9_c00219{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);}
.m3c_c00219{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00219{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m44_c00219{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m30_c00219{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);}
.m2_c00219{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m24_c00219{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);}
.m33_c00219{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);}
.m12_c00219{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);}
.m34_c00219{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m11_c00219{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m38_c00219{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.ma_c00219{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m28_c00219{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);}
.m46_c00219{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00219{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);}
.m3b_c00219{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m47_c00219{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m42_c00219{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00219{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m39_c00219{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);}
.m17_c00219{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m41_c00219{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);}
.m18_c00219{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m19_c00219{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00219{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00219{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m27_c00219{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00219{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m48_c00219{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00219{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m22_c00219{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);}
.m1d_c00219{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00219{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m8_c00219{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00219{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.v0_c00219{vertical-align:0.000000px;}
.ls0_c00219{letter-spacing:0.000000px;}
.sc__c00219{text-shadow:none;}
.sc0_c00219{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00219{-webkit-text-stroke:0px transparent;}
.sc0_c00219{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00219{word-spacing:0.000000px;}
.ws0_c00219{word-spacing:22.531064px;}
.fc0_c00219{color:transparent;}
.fse_c00219{font-size:34.560000px;}
.fs8_c00219{font-size:37.440000px;}
.fsd_c00219{font-size:40.320000px;}
.fsa_c00219{font-size:46.080000px;}
.fs3_c00219{font-size:48.960000px;}
.fs6_c00219{font-size:51.840000px;}
.fs1_c00219{font-size:54.720000px;}
.fs2_c00219{font-size:57.600000px;}
.fs5_c00219{font-size:60.480000px;}
.fsb_c00219{font-size:63.360000px;}
.fs7_c00219{font-size:66.240000px;}
.fs9_c00219{font-size:69.120000px;}
.fs0_c00219{font-size:72.000000px;}
.fs4_c00219{font-size:74.880000px;}
.fsc_c00219{font-size:77.760000px;}
.fsf_c00219{font-size:89.280000px;}
.fs11_c00219{font-size:92.160000px;}
.fs10_c00219{font-size:103.680000px;}
.y0_c00219{bottom:0.000000px;}
.y6c_c00219{bottom:71.280000px;}
.y6e_c00219{bottom:72.000000px;}
.y6d_c00219{bottom:74.160000px;}
.y75_c00219{bottom:74.880000px;}
.y6b_c00219{bottom:77.040000px;}
.y6a_c00219{bottom:114.480000px;}
.y72_c00219{bottom:117.360000px;}
.y71_c00219{bottom:118.080000px;}
.y69_c00219{bottom:119.520000px;}
.y73_c00219{bottom:120.240000px;}
.y74_c00219{bottom:120.960000px;}
.y68_c00219{bottom:157.680000px;}
.y6f_c00219{bottom:161.280000px;}
.y67_c00219{bottom:162.000000px;}
.y66_c00219{bottom:162.720000px;}
.y70_c00219{bottom:164.880000px;}
.y61_c00219{bottom:200.880000px;}
.y62_c00219{bottom:201.600000px;}
.y63_c00219{bottom:203.760000px;}
.y64_c00219{bottom:204.480000px;}
.y60_c00219{bottom:205.200000px;}
.y65_c00219{bottom:206.640000px;}
.y5d_c00219{bottom:244.080000px;}
.y5e_c00219{bottom:246.960000px;}
.y5f_c00219{bottom:247.680000px;}
.y5c_c00219{bottom:248.400000px;}
.y59_c00219{bottom:286.560000px;}
.y5a_c00219{bottom:290.160000px;}
.y57_c00219{bottom:290.880000px;}
.y58_c00219{bottom:291.600000px;}
.y5b_c00219{bottom:293.040000px;}
.y54_c00219{bottom:329.040000px;}
.y55_c00219{bottom:330.480000px;}
.y56_c00219{bottom:332.640000px;}
.y52_c00219{bottom:333.360000px;}
.y53_c00219{bottom:334.080000px;}
.y51_c00219{bottom:365.760000px;}
.y4e_c00219{bottom:406.080000px;}
.y4f_c00219{bottom:406.800000px;}
.y4c_c00219{bottom:407.520000px;}
.y4d_c00219{bottom:408.240000px;}
.y50_c00219{bottom:410.400000px;}
.y48_c00219{bottom:450.000000px;}
.y47_c00219{bottom:450.720000px;}
.y4a_c00219{bottom:451.440000px;}
.y49_c00219{bottom:452.160000px;}
.y4b_c00219{bottom:452.880000px;}
.y45_c00219{bottom:493.200000px;}
.y42_c00219{bottom:493.920000px;}
.y43_c00219{bottom:494.640000px;}
.y44_c00219{bottom:495.360000px;}
.y46_c00219{bottom:496.080000px;}
.y3f_c00219{bottom:534.240000px;}
.y41_c00219{bottom:536.400000px;}
.y3e_c00219{bottom:537.120000px;}
.y40_c00219{bottom:537.840000px;}
.y3b_c00219{bottom:577.440000px;}
.y3d_c00219{bottom:578.880000px;}
.y3a_c00219{bottom:579.600000px;}
.y3c_c00219{bottom:581.760000px;}
.y37_c00219{bottom:620.640000px;}
.y36_c00219{bottom:622.800000px;}
.y39_c00219{bottom:623.520000px;}
.y38_c00219{bottom:625.680000px;}
.y32_c00219{bottom:663.840000px;}
.y31_c00219{bottom:665.280000px;}
.y35_c00219{bottom:666.000000px;}
.y34_c00219{bottom:666.720000px;}
.y33_c00219{bottom:668.160000px;}
.y2f_c00219{bottom:707.040000px;}
.y2e_c00219{bottom:707.760000px;}
.y30_c00219{bottom:709.200000px;}
.y2d_c00219{bottom:743.040000px;}
.y2a_c00219{bottom:744.480000px;}
.y27_c00219{bottom:749.520000px;}
.y29_c00219{bottom:750.240000px;}
.y26_c00219{bottom:750.960000px;}
.y2b_c00219{bottom:752.400000px;}
.y28_c00219{bottom:753.840000px;}
.y2c_c00219{bottom:754.560000px;}
.y21_c00219{bottom:792.720000px;}
.y23_c00219{bottom:793.440000px;}
.y20_c00219{bottom:794.160000px;}
.y25_c00219{bottom:794.880000px;}
.y24_c00219{bottom:795.600000px;}
.y22_c00219{bottom:797.040000px;}
.y1f_c00219{bottom:835.920000px;}
.y1e_c00219{bottom:836.640000px;}
.y18_c00219{bottom:868.320000px;}
.y1b_c00219{bottom:869.040000px;}
.y1a_c00219{bottom:869.760000px;}
.y1d_c00219{bottom:870.480000px;}
.y19_c00219{bottom:871.920000px;}
.y1c_c00219{bottom:872.640000px;}
.y15_c00219{bottom:910.800000px;}
.y11_c00219{bottom:911.520000px;}
.y16_c00219{bottom:912.240000px;}
.y17_c00219{bottom:912.960000px;}
.y12_c00219{bottom:913.680000px;}
.y13_c00219{bottom:914.400000px;}
.y14_c00219{bottom:915.120000px;}
.ye_c00219{bottom:954.000000px;}
.yc_c00219{bottom:954.720000px;}
.yf_c00219{bottom:955.440000px;}
.y10_c00219{bottom:956.160000px;}
.yd_c00219{bottom:956.880000px;}
.y7_c00219{bottom:997.200000px;}
.y9_c00219{bottom:997.920000px;}
.yb_c00219{bottom:998.640000px;}
.y8_c00219{bottom:1000.080000px;}
.ya_c00219{bottom:1000.800000px;}
.y3_c00219{bottom:1040.400000px;}
.y5_c00219{bottom:1041.120000px;}
.y6_c00219{bottom:1042.560000px;}
.y4_c00219{bottom:1044.000000px;}
.y1_c00219{bottom:1090.800000px;}
.y2_c00219{bottom:1092.240000px;}
.h10_c00219{height:31.100625px;}
.ha_c00219{height:33.692344px;}
.hf_c00219{height:36.284062px;}
.hc_c00219{height:41.467500px;}
.h5_c00219{height:44.059219px;}
.h8_c00219{height:46.650937px;}
.h3_c00219{height:49.242656px;}
.h4_c00219{height:51.834375px;}
.h7_c00219{height:54.426094px;}
.hd_c00219{height:57.017812px;}
.h9_c00219{height:59.609531px;}
.hb_c00219{height:62.201250px;}
.h2_c00219{height:64.792969px;}
.h6_c00219{height:67.384687px;}
.he_c00219{height:69.976406px;}
.h11_c00219{height:80.343281px;}
.h13_c00219{height:82.935000px;}
.h12_c00219{height:93.301875px;}
.h1_c00219{height:1148.250000px;}
.h0_c00219{height:1148.400000px;}
.w0_c00219{width:781.920000px;}
.w1_c00219{width:782.250000px;}
.x0_c00219{left:0.000000px;}
.x3_c00219{left:72.720000px;}
.x19_c00219{left:74.160000px;}
.x25_c00219{left:75.600000px;}
.x2f_c00219{left:77.040000px;}
.x4_c00219{left:136.080000px;}
.x29_c00219{left:137.520000px;}
.x2d_c00219{left:169.920000px;}
.x5_c00219{left:178.560000px;}
.x2b_c00219{left:180.000000px;}
.x18_c00219{left:189.360000px;}
.x2c_c00219{left:222.480000px;}
.x10_c00219{left:231.840000px;}
.x1a_c00219{left:233.280000px;}
.x1f_c00219{left:243.360000px;}
.x1b_c00219{left:285.840000px;}
.xa_c00219{left:287.280000px;}
.x20_c00219{left:298.080000px;}
.x1c_c00219{left:319.680000px;}
.x14_c00219{left:330.480000px;}
.x22_c00219{left:339.840000px;}
.x11_c00219{left:352.080000px;}
.xb_c00219{left:372.240000px;}
.x15_c00219{left:373.680000px;}
.x23_c00219{left:384.480000px;}
.x21_c00219{left:395.280000px;}
.x2a_c00219{left:406.080000px;}
.xc_c00219{left:416.880000px;}
.x26_c00219{left:426.240000px;}
.x16_c00219{left:427.680000px;}
.x27_c00219{left:471.600000px;}
.x12_c00219{left:503.280000px;}
.x17_c00219{left:512.640000px;}
.x28_c00219{left:514.080000px;}
.x1d_c00219{left:524.160000px;}
.x1e_c00219{left:546.480000px;}
.x31_c00219{left:558.000000px;}
.x2e_c00219{left:568.080000px;}
.x13_c00219{left:588.240000px;}
.x24_c00219{left:589.680000px;}
.xd_c00219{left:619.920000px;}
.x6_c00219{left:621.360000px;}
.x7_c00219{left:654.480000px;}
.xe_c00219{left:663.840000px;}
.x30_c00219{left:686.880000px;}
.xf_c00219{left:695.520000px;}
.x8_c00219{left:696.960000px;}
.x1_c00219{left:709.920000px;}
.x9_c00219{left:716.400000px;}
.x2_c00219{left:745.200000px;}
@media print{
.v0_c00219{vertical-align:0.000000pt;}
.ls0_c00219{letter-spacing:0.000000pt;}
.ws1_c00219{word-spacing:0.000000pt;}
.ws0_c00219{word-spacing:20.027612pt;}
.fse_c00219{font-size:30.720000pt;}
.fs8_c00219{font-size:33.280000pt;}
.fsd_c00219{font-size:35.840000pt;}
.fsa_c00219{font-size:40.960000pt;}
.fs3_c00219{font-size:43.520000pt;}
.fs6_c00219{font-size:46.080000pt;}
.fs1_c00219{font-size:48.640000pt;}
.fs2_c00219{font-size:51.200000pt;}
.fs5_c00219{font-size:53.760000pt;}
.fsb_c00219{font-size:56.320000pt;}
.fs7_c00219{font-size:58.880000pt;}
.fs9_c00219{font-size:61.440000pt;}
.fs0_c00219{font-size:64.000000pt;}
.fs4_c00219{font-size:66.560000pt;}
.fsc_c00219{font-size:69.120000pt;}
.fsf_c00219{font-size:79.360000pt;}
.fs11_c00219{font-size:81.920000pt;}
.fs10_c00219{font-size:92.160000pt;}
.y0_c00219{bottom:0.000000pt;}
.y6c_c00219{bottom:63.360000pt;}
.y6e_c00219{bottom:64.000000pt;}
.y6d_c00219{bottom:65.920000pt;}
.y75_c00219{bottom:66.560000pt;}
.y6b_c00219{bottom:68.480000pt;}
.y6a_c00219{bottom:101.760000pt;}
.y72_c00219{bottom:104.320000pt;}
.y71_c00219{bottom:104.960000pt;}
.y69_c00219{bottom:106.240000pt;}
.y73_c00219{bottom:106.880000pt;}
.y74_c00219{bottom:107.520000pt;}
.y68_c00219{bottom:140.160000pt;}
.y6f_c00219{bottom:143.360000pt;}
.y67_c00219{bottom:144.000000pt;}
.y66_c00219{bottom:144.640000pt;}
.y70_c00219{bottom:146.560000pt;}
.y61_c00219{bottom:178.560000pt;}
.y62_c00219{bottom:179.200000pt;}
.y63_c00219{bottom:181.120000pt;}
.y64_c00219{bottom:181.760000pt;}
.y60_c00219{bottom:182.400000pt;}
.y65_c00219{bottom:183.680000pt;}
.y5d_c00219{bottom:216.960000pt;}
.y5e_c00219{bottom:219.520000pt;}
.y5f_c00219{bottom:220.160000pt;}
.y5c_c00219{bottom:220.800000pt;}
.y59_c00219{bottom:254.720000pt;}
.y5a_c00219{bottom:257.920000pt;}
.y57_c00219{bottom:258.560000pt;}
.y58_c00219{bottom:259.200000pt;}
.y5b_c00219{bottom:260.480000pt;}
.y54_c00219{bottom:292.480000pt;}
.y55_c00219{bottom:293.760000pt;}
.y56_c00219{bottom:295.680000pt;}
.y52_c00219{bottom:296.320000pt;}
.y53_c00219{bottom:296.960000pt;}
.y51_c00219{bottom:325.120000pt;}
.y4e_c00219{bottom:360.960000pt;}
.y4f_c00219{bottom:361.600000pt;}
.y4c_c00219{bottom:362.240000pt;}
.y4d_c00219{bottom:362.880000pt;}
.y50_c00219{bottom:364.800000pt;}
.y48_c00219{bottom:400.000000pt;}
.y47_c00219{bottom:400.640000pt;}
.y4a_c00219{bottom:401.280000pt;}
.y49_c00219{bottom:401.920000pt;}
.y4b_c00219{bottom:402.560000pt;}
.y45_c00219{bottom:438.400000pt;}
.y42_c00219{bottom:439.040000pt;}
.y43_c00219{bottom:439.680000pt;}
.y44_c00219{bottom:440.320000pt;}
.y46_c00219{bottom:440.960000pt;}
.y3f_c00219{bottom:474.880000pt;}
.y41_c00219{bottom:476.800000pt;}
.y3e_c00219{bottom:477.440000pt;}
.y40_c00219{bottom:478.080000pt;}
.y3b_c00219{bottom:513.280000pt;}
.y3d_c00219{bottom:514.560000pt;}
.y3a_c00219{bottom:515.200000pt;}
.y3c_c00219{bottom:517.120000pt;}
.y37_c00219{bottom:551.680000pt;}
.y36_c00219{bottom:553.600000pt;}
.y39_c00219{bottom:554.240000pt;}
.y38_c00219{bottom:556.160000pt;}
.y32_c00219{bottom:590.080000pt;}
.y31_c00219{bottom:591.360000pt;}
.y35_c00219{bottom:592.000000pt;}
.y34_c00219{bottom:592.640000pt;}
.y33_c00219{bottom:593.920000pt;}
.y2f_c00219{bottom:628.480000pt;}
.y2e_c00219{bottom:629.120000pt;}
.y30_c00219{bottom:630.400000pt;}
.y2d_c00219{bottom:660.480000pt;}
.y2a_c00219{bottom:661.760000pt;}
.y27_c00219{bottom:666.240000pt;}
.y29_c00219{bottom:666.880000pt;}
.y26_c00219{bottom:667.520000pt;}
.y2b_c00219{bottom:668.800000pt;}
.y28_c00219{bottom:670.080000pt;}
.y2c_c00219{bottom:670.720000pt;}
.y21_c00219{bottom:704.640000pt;}
.y23_c00219{bottom:705.280000pt;}
.y20_c00219{bottom:705.920000pt;}
.y25_c00219{bottom:706.560000pt;}
.y24_c00219{bottom:707.200000pt;}
.y22_c00219{bottom:708.480000pt;}
.y1f_c00219{bottom:743.040000pt;}
.y1e_c00219{bottom:743.680000pt;}
.y18_c00219{bottom:771.840000pt;}
.y1b_c00219{bottom:772.480000pt;}
.y1a_c00219{bottom:773.120000pt;}
.y1d_c00219{bottom:773.760000pt;}
.y19_c00219{bottom:775.040000pt;}
.y1c_c00219{bottom:775.680000pt;}
.y15_c00219{bottom:809.600000pt;}
.y11_c00219{bottom:810.240000pt;}
.y16_c00219{bottom:810.880000pt;}
.y17_c00219{bottom:811.520000pt;}
.y12_c00219{bottom:812.160000pt;}
.y13_c00219{bottom:812.800000pt;}
.y14_c00219{bottom:813.440000pt;}
.ye_c00219{bottom:848.000000pt;}
.yc_c00219{bottom:848.640000pt;}
.yf_c00219{bottom:849.280000pt;}
.y10_c00219{bottom:849.920000pt;}
.yd_c00219{bottom:850.560000pt;}
.y7_c00219{bottom:886.400000pt;}
.y9_c00219{bottom:887.040000pt;}
.yb_c00219{bottom:887.680000pt;}
.y8_c00219{bottom:888.960000pt;}
.ya_c00219{bottom:889.600000pt;}
.y3_c00219{bottom:924.800000pt;}
.y5_c00219{bottom:925.440000pt;}
.y6_c00219{bottom:926.720000pt;}
.y4_c00219{bottom:928.000000pt;}
.y1_c00219{bottom:969.600000pt;}
.y2_c00219{bottom:970.880000pt;}
.h10_c00219{height:27.645000pt;}
.ha_c00219{height:29.948750pt;}
.hf_c00219{height:32.252500pt;}
.hc_c00219{height:36.860000pt;}
.h5_c00219{height:39.163750pt;}
.h8_c00219{height:41.467500pt;}
.h3_c00219{height:43.771250pt;}
.h4_c00219{height:46.075000pt;}
.h7_c00219{height:48.378750pt;}
.hd_c00219{height:50.682500pt;}
.h9_c00219{height:52.986250pt;}
.hb_c00219{height:55.290000pt;}
.h2_c00219{height:57.593750pt;}
.h6_c00219{height:59.897500pt;}
.he_c00219{height:62.201250pt;}
.h11_c00219{height:71.416250pt;}
.h13_c00219{height:73.720000pt;}
.h12_c00219{height:82.935000pt;}
.h1_c00219{height:1020.666667pt;}
.h0_c00219{height:1020.800000pt;}
.w0_c00219{width:695.040000pt;}
.w1_c00219{width:695.333333pt;}
.x0_c00219{left:0.000000pt;}
.x3_c00219{left:64.640000pt;}
.x19_c00219{left:65.920000pt;}
.x25_c00219{left:67.200000pt;}
.x2f_c00219{left:68.480000pt;}
.x4_c00219{left:120.960000pt;}
.x29_c00219{left:122.240000pt;}
.x2d_c00219{left:151.040000pt;}
.x5_c00219{left:158.720000pt;}
.x2b_c00219{left:160.000000pt;}
.x18_c00219{left:168.320000pt;}
.x2c_c00219{left:197.760000pt;}
.x10_c00219{left:206.080000pt;}
.x1a_c00219{left:207.360000pt;}
.x1f_c00219{left:216.320000pt;}
.x1b_c00219{left:254.080000pt;}
.xa_c00219{left:255.360000pt;}
.x20_c00219{left:264.960000pt;}
.x1c_c00219{left:284.160000pt;}
.x14_c00219{left:293.760000pt;}
.x22_c00219{left:302.080000pt;}
.x11_c00219{left:312.960000pt;}
.xb_c00219{left:330.880000pt;}
.x15_c00219{left:332.160000pt;}
.x23_c00219{left:341.760000pt;}
.x21_c00219{left:351.360000pt;}
.x2a_c00219{left:360.960000pt;}
.xc_c00219{left:370.560000pt;}
.x26_c00219{left:378.880000pt;}
.x16_c00219{left:380.160000pt;}
.x27_c00219{left:419.200000pt;}
.x12_c00219{left:447.360000pt;}
.x17_c00219{left:455.680000pt;}
.x28_c00219{left:456.960000pt;}
.x1d_c00219{left:465.920000pt;}
.x1e_c00219{left:485.760000pt;}
.x31_c00219{left:496.000000pt;}
.x2e_c00219{left:504.960000pt;}
.x13_c00219{left:522.880000pt;}
.x24_c00219{left:524.160000pt;}
.xd_c00219{left:551.040000pt;}
.x6_c00219{left:552.320000pt;}
.x7_c00219{left:581.760000pt;}
.xe_c00219{left:590.080000pt;}
.x30_c00219{left:610.560000pt;}
.xf_c00219{left:618.240000pt;}
.x8_c00219{left:619.520000pt;}
.x1_c00219{left:631.040000pt;}
.x9_c00219{left:636.800000pt;}
.x2_c00219{left:662.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4787436ffb3a5e3116f96eb4.woff2')format("woff");}.ff1_c00220{font-family:ff1_c00220;line-height:1.109863;font-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_c00220{transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);}
.m31_c00220{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00220{transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);}
.m37_c00220{transform:matrix(0.234200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234200,0.000000,0.000000,0.250000,0,0);}
.m2e_c00220{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m36_c00220{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m39_c00220{transform:matrix(0.237425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237425,0.000000,0.000000,0.250000,0,0);}
.m43_c00220{transform:matrix(0.246375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246375,0.000000,0.000000,0.250000,0,0);}
.m34_c00220{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m26_c00220{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00220{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00220{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m14_c00220{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);}
.m3b_c00220{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m15_c00220{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);}
.m2d_c00220{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m8_c00220{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m22_c00220{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);}
.m3a_c00220{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m2_c00220{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m21_c00220{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m44_c00220{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m5_c00220{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m19_c00220{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m9_c00220{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m10_c00220{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m12_c00220{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m23_c00220{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m25_c00220{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m6_c00220{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m28_c00220{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00220{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m7_c00220{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m17_c00220{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00220{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m32_c00220{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00220{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m41_c00220{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m33_c00220{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m18_c00220{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m29_c00220{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m0_c00220{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);}
.m20_c00220{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m13_c00220{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);}
.m1d_c00220{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);}
.me_c00220{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1_c00220{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);}
.m3f_c00220{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_c00220{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00220{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00220{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);}
.mb_c00220{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.md_c00220{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_c00220{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m30_c00220{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);}
.m38_c00220{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);}
.m24_c00220{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m3_c00220{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00220{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);}
.m40_c00220{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.mf_c00220{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m42_c00220{transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);}
.m4_c00220{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m27_c00220{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.mc_c00220{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);}
.ma_c00220{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00220{transform:matrix(0.745000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.745000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.745000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00220{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.m35_c00220{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.v0_c00220{vertical-align:0.000000px;}
.ls0_c00220{letter-spacing:0.000000px;}
.sc__c00220{text-shadow:none;}
.sc0_c00220{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00220{-webkit-text-stroke:0px transparent;}
.sc0_c00220{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00220{word-spacing:0.000000px;}
.fc0_c00220{color:transparent;}
.fsd_c00220{font-size:37.440000px;}
.fsc_c00220{font-size:43.200000px;}
.fs9_c00220{font-size:46.080000px;}
.fs4_c00220{font-size:48.960000px;}
.fs7_c00220{font-size:51.840000px;}
.fs3_c00220{font-size:54.720000px;}
.fs6_c00220{font-size:57.600000px;}
.fs1_c00220{font-size:60.480000px;}
.fs8_c00220{font-size:63.360000px;}
.fsb_c00220{font-size:66.240000px;}
.fsa_c00220{font-size:69.120000px;}
.fs2_c00220{font-size:72.000000px;}
.fs5_c00220{font-size:74.880000px;}
.fs0_c00220{font-size:77.760000px;}
.y0_c00220{bottom:0.000000px;}
.y64_c00220{bottom:150.480000px;}
.y4b_c00220{bottom:153.360000px;}
.y49_c00220{bottom:154.080000px;}
.y4a_c00220{bottom:154.800000px;}
.y63_c00220{bottom:193.680000px;}
.y47_c00220{bottom:195.840000px;}
.y46_c00220{bottom:196.560000px;}
.y62_c00220{bottom:198.000000px;}
.y48_c00220{bottom:198.720000px;}
.y61_c00220{bottom:236.160000px;}
.y60_c00220{bottom:236.880000px;}
.y44_c00220{bottom:239.040000px;}
.y45_c00220{bottom:240.480000px;}
.y5f_c00220{bottom:241.200000px;}
.y5c_c00220{bottom:279.360000px;}
.y5d_c00220{bottom:280.080000px;}
.y5e_c00220{bottom:282.240000px;}
.y41_c00220{bottom:282.960000px;}
.y42_c00220{bottom:283.680000px;}
.y43_c00220{bottom:284.400000px;}
.y2d_c00220{bottom:321.840000px;}
.y3f_c00220{bottom:325.440000px;}
.y2c_c00220{bottom:326.880000px;}
.y40_c00220{bottom:327.600000px;}
.y5a_c00220{bottom:365.760000px;}
.y5b_c00220{bottom:366.480000px;}
.y3e_c00220{bottom:368.640000px;}
.y3d_c00220{bottom:370.080000px;}
.y59_c00220{bottom:408.960000px;}
.y3c_c00220{bottom:411.840000px;}
.y58_c00220{bottom:412.560000px;}
.y56_c00220{bottom:452.160000px;}
.y57_c00220{bottom:452.880000px;}
.y3a_c00220{bottom:454.320000px;}
.y55_c00220{bottom:455.760000px;}
.y3b_c00220{bottom:456.480000px;}
.y54_c00220{bottom:495.360000px;}
.y52_c00220{bottom:496.080000px;}
.y37_c00220{bottom:497.520000px;}
.y51_c00220{bottom:498.240000px;}
.y53_c00220{bottom:498.960000px;}
.y36_c00220{bottom:499.680000px;}
.y39_c00220{bottom:500.400000px;}
.y38_c00220{bottom:501.120000px;}
.y4e_c00220{bottom:538.560000px;}
.y50_c00220{bottom:539.280000px;}
.y4f_c00220{bottom:540.000000px;}
.y35_c00220{bottom:541.440000px;}
.y4c_c00220{bottom:581.040000px;}
.y34_c00220{bottom:583.200000px;}
.y32_c00220{bottom:583.920000px;}
.y33_c00220{bottom:584.640000px;}
.y4d_c00220{bottom:585.360000px;}
.y31_c00220{bottom:586.080000px;}
.y2b_c00220{bottom:624.240000px;}
.y2f_c00220{bottom:626.400000px;}
.y2a_c00220{bottom:627.840000px;}
.y30_c00220{bottom:628.560000px;}
.y2e_c00220{bottom:629.280000px;}
.y26_c00220{bottom:668.160000px;}
.y27_c00220{bottom:669.600000px;}
.y29_c00220{bottom:670.320000px;}
.y25_c00220{bottom:671.040000px;}
.y28_c00220{bottom:671.760000px;}
.y21_c00220{bottom:709.920000px;}
.y24_c00220{bottom:712.080000px;}
.y23_c00220{bottom:712.800000px;}
.y20_c00220{bottom:713.520000px;}
.y1f_c00220{bottom:754.560000px;}
.y1e_c00220{bottom:755.280000px;}
.y22_c00220{bottom:757.440000px;}
.y1d_c00220{bottom:797.040000px;}
.y1a_c00220{bottom:797.760000px;}
.y1b_c00220{bottom:798.480000px;}
.y1c_c00220{bottom:801.360000px;}
.y16_c00220{bottom:828.720000px;}
.y15_c00220{bottom:829.440000px;}
.y17_c00220{bottom:830.160000px;}
.y18_c00220{bottom:830.880000px;}
.y19_c00220{bottom:832.320000px;}
.y12_c00220{bottom:871.920000px;}
.y11_c00220{bottom:872.640000px;}
.y14_c00220{bottom:876.240000px;}
.y10_c00220{bottom:915.120000px;}
.y13_c00220{bottom:915.840000px;}
.yf_c00220{bottom:916.560000px;}
.yd_c00220{bottom:957.600000px;}
.ya_c00220{bottom:959.040000px;}
.yc_c00220{bottom:959.760000px;}
.ye_c00220{bottom:961.200000px;}
.yb_c00220{bottom:961.920000px;}
.y6_c00220{bottom:1001.520000px;}
.y4_c00220{bottom:1002.240000px;}
.y9_c00220{bottom:1003.680000px;}
.y5_c00220{bottom:1005.120000px;}
.y2_c00220{bottom:1044.720000px;}
.y3_c00220{bottom:1045.440000px;}
.y8_c00220{bottom:1047.600000px;}
.y7_c00220{bottom:1048.320000px;}
.y1_c00220{bottom:1100.880000px;}
.hf_c00220{height:33.692344px;}
.he_c00220{height:38.875781px;}
.hb_c00220{height:41.467500px;}
.h6_c00220{height:44.059219px;}
.h9_c00220{height:46.650937px;}
.h5_c00220{height:49.242656px;}
.h8_c00220{height:51.834375px;}
.h3_c00220{height:54.426094px;}
.ha_c00220{height:57.017812px;}
.hd_c00220{height:59.609531px;}
.hc_c00220{height:62.201250px;}
.h4_c00220{height:64.792969px;}
.h7_c00220{height:67.384687px;}
.h2_c00220{height:69.976406px;}
.h0_c00220{height:1152.720000px;}
.h1_c00220{height:1152.750000px;}
.w1_c00220{width:787.500000px;}
.w0_c00220{width:787.680000px;}
.x0_c00220{left:0.000000px;}
.x2_c00220{left:72.720000px;}
.x1d_c00220{left:74.880000px;}
.x3_c00220{left:133.920000px;}
.xa_c00220{left:135.360000px;}
.x4_c00220{left:168.480000px;}
.xb_c00220{left:177.840000px;}
.x1a_c00220{left:221.040000px;}
.xc_c00220{left:231.120000px;}
.x24_c00220{left:262.800000px;}
.x13_c00220{left:264.240000px;}
.x18_c00220{left:275.760000px;}
.xd_c00220{left:285.840000px;}
.x27_c00220{left:296.640000px;}
.x21_c00220{left:306.720000px;}
.x25_c00220{left:308.160000px;}
.xe_c00220{left:329.760000px;}
.x28_c00220{left:349.920000px;}
.x22_c00220{left:361.440000px;}
.xf_c00220{left:372.240000px;}
.x26_c00220{left:383.040000px;}
.x23_c00220{left:393.840000px;}
.x14_c00220{left:403.920000px;}
.x10_c00220{left:426.960000px;}
.x1b_c00220{left:457.200000px;}
.x15_c00220{left:490.320000px;}
.x1c_c00220{left:501.840000px;}
.x16_c00220{left:557.280000px;}
.x19_c00220{left:565.920000px;}
.x5_c00220{left:567.359730px;}
.x11_c00220{left:587.520000px;}
.x12_c00220{left:588.960000px;}
.x1e_c00220{left:620.640000px;}
.x6_c00220{left:622.080000px;}
.x1f_c00220{left:652.320000px;}
.x7_c00220{left:653.760000px;}
.x17_c00220{left:685.440000px;}
.x20_c00220{left:694.800000px;}
.x8_c00220{left:696.240000px;}
.x1_c00220{left:708.480000px;}
.x9_c00220{left:715.680000px;}
@media print{
.v0_c00220{vertical-align:0.000000pt;}
.ls0_c00220{letter-spacing:0.000000pt;}
.ws0_c00220{word-spacing:0.000000pt;}
.fsd_c00220{font-size:33.280000pt;}
.fsc_c00220{font-size:38.400000pt;}
.fs9_c00220{font-size:40.960000pt;}
.fs4_c00220{font-size:43.520000pt;}
.fs7_c00220{font-size:46.080000pt;}
.fs3_c00220{font-size:48.640000pt;}
.fs6_c00220{font-size:51.200000pt;}
.fs1_c00220{font-size:53.760000pt;}
.fs8_c00220{font-size:56.320000pt;}
.fsb_c00220{font-size:58.880000pt;}
.fsa_c00220{font-size:61.440000pt;}
.fs2_c00220{font-size:64.000000pt;}
.fs5_c00220{font-size:66.560000pt;}
.fs0_c00220{font-size:69.120000pt;}
.y0_c00220{bottom:0.000000pt;}
.y64_c00220{bottom:133.760000pt;}
.y4b_c00220{bottom:136.320000pt;}
.y49_c00220{bottom:136.960000pt;}
.y4a_c00220{bottom:137.600000pt;}
.y63_c00220{bottom:172.160000pt;}
.y47_c00220{bottom:174.080000pt;}
.y46_c00220{bottom:174.720000pt;}
.y62_c00220{bottom:176.000000pt;}
.y48_c00220{bottom:176.640000pt;}
.y61_c00220{bottom:209.920000pt;}
.y60_c00220{bottom:210.560000pt;}
.y44_c00220{bottom:212.480000pt;}
.y45_c00220{bottom:213.760000pt;}
.y5f_c00220{bottom:214.400000pt;}
.y5c_c00220{bottom:248.320000pt;}
.y5d_c00220{bottom:248.960000pt;}
.y5e_c00220{bottom:250.880000pt;}
.y41_c00220{bottom:251.520000pt;}
.y42_c00220{bottom:252.160000pt;}
.y43_c00220{bottom:252.800000pt;}
.y2d_c00220{bottom:286.080000pt;}
.y3f_c00220{bottom:289.280000pt;}
.y2c_c00220{bottom:290.560000pt;}
.y40_c00220{bottom:291.200000pt;}
.y5a_c00220{bottom:325.120000pt;}
.y5b_c00220{bottom:325.760000pt;}
.y3e_c00220{bottom:327.680000pt;}
.y3d_c00220{bottom:328.960000pt;}
.y59_c00220{bottom:363.520000pt;}
.y3c_c00220{bottom:366.080000pt;}
.y58_c00220{bottom:366.720000pt;}
.y56_c00220{bottom:401.920000pt;}
.y57_c00220{bottom:402.560000pt;}
.y3a_c00220{bottom:403.840000pt;}
.y55_c00220{bottom:405.120000pt;}
.y3b_c00220{bottom:405.760000pt;}
.y54_c00220{bottom:440.320000pt;}
.y52_c00220{bottom:440.960000pt;}
.y37_c00220{bottom:442.240000pt;}
.y51_c00220{bottom:442.880000pt;}
.y53_c00220{bottom:443.520000pt;}
.y36_c00220{bottom:444.160000pt;}
.y39_c00220{bottom:444.800000pt;}
.y38_c00220{bottom:445.440000pt;}
.y4e_c00220{bottom:478.720000pt;}
.y50_c00220{bottom:479.360000pt;}
.y4f_c00220{bottom:480.000000pt;}
.y35_c00220{bottom:481.280000pt;}
.y4c_c00220{bottom:516.480000pt;}
.y34_c00220{bottom:518.400000pt;}
.y32_c00220{bottom:519.040000pt;}
.y33_c00220{bottom:519.680000pt;}
.y4d_c00220{bottom:520.320000pt;}
.y31_c00220{bottom:520.960000pt;}
.y2b_c00220{bottom:554.880000pt;}
.y2f_c00220{bottom:556.800000pt;}
.y2a_c00220{bottom:558.080000pt;}
.y30_c00220{bottom:558.720000pt;}
.y2e_c00220{bottom:559.360000pt;}
.y26_c00220{bottom:593.920000pt;}
.y27_c00220{bottom:595.200000pt;}
.y29_c00220{bottom:595.840000pt;}
.y25_c00220{bottom:596.480000pt;}
.y28_c00220{bottom:597.120000pt;}
.y21_c00220{bottom:631.040000pt;}
.y24_c00220{bottom:632.960000pt;}
.y23_c00220{bottom:633.600000pt;}
.y20_c00220{bottom:634.240000pt;}
.y1f_c00220{bottom:670.720000pt;}
.y1e_c00220{bottom:671.360000pt;}
.y22_c00220{bottom:673.280000pt;}
.y1d_c00220{bottom:708.480000pt;}
.y1a_c00220{bottom:709.120000pt;}
.y1b_c00220{bottom:709.760000pt;}
.y1c_c00220{bottom:712.320000pt;}
.y16_c00220{bottom:736.640000pt;}
.y15_c00220{bottom:737.280000pt;}
.y17_c00220{bottom:737.920000pt;}
.y18_c00220{bottom:738.560000pt;}
.y19_c00220{bottom:739.840000pt;}
.y12_c00220{bottom:775.040000pt;}
.y11_c00220{bottom:775.680000pt;}
.y14_c00220{bottom:778.880000pt;}
.y10_c00220{bottom:813.440000pt;}
.y13_c00220{bottom:814.080000pt;}
.yf_c00220{bottom:814.720000pt;}
.yd_c00220{bottom:851.200000pt;}
.ya_c00220{bottom:852.480000pt;}
.yc_c00220{bottom:853.120000pt;}
.ye_c00220{bottom:854.400000pt;}
.yb_c00220{bottom:855.040000pt;}
.y6_c00220{bottom:890.240000pt;}
.y4_c00220{bottom:890.880000pt;}
.y9_c00220{bottom:892.160000pt;}
.y5_c00220{bottom:893.440000pt;}
.y2_c00220{bottom:928.640000pt;}
.y3_c00220{bottom:929.280000pt;}
.y8_c00220{bottom:931.200000pt;}
.y7_c00220{bottom:931.840000pt;}
.y1_c00220{bottom:978.560000pt;}
.hf_c00220{height:29.948750pt;}
.he_c00220{height:34.556250pt;}
.hb_c00220{height:36.860000pt;}
.h6_c00220{height:39.163750pt;}
.h9_c00220{height:41.467500pt;}
.h5_c00220{height:43.771250pt;}
.h8_c00220{height:46.075000pt;}
.h3_c00220{height:48.378750pt;}
.ha_c00220{height:50.682500pt;}
.hd_c00220{height:52.986250pt;}
.hc_c00220{height:55.290000pt;}
.h4_c00220{height:57.593750pt;}
.h7_c00220{height:59.897500pt;}
.h2_c00220{height:62.201250pt;}
.h0_c00220{height:1024.640000pt;}
.h1_c00220{height:1024.666667pt;}
.w1_c00220{width:700.000000pt;}
.w0_c00220{width:700.160000pt;}
.x0_c00220{left:0.000000pt;}
.x2_c00220{left:64.640000pt;}
.x1d_c00220{left:66.560000pt;}
.x3_c00220{left:119.040000pt;}
.xa_c00220{left:120.320000pt;}
.x4_c00220{left:149.760000pt;}
.xb_c00220{left:158.080000pt;}
.x1a_c00220{left:196.480000pt;}
.xc_c00220{left:205.440000pt;}
.x24_c00220{left:233.600000pt;}
.x13_c00220{left:234.880000pt;}
.x18_c00220{left:245.120000pt;}
.xd_c00220{left:254.080000pt;}
.x27_c00220{left:263.680000pt;}
.x21_c00220{left:272.640000pt;}
.x25_c00220{left:273.920000pt;}
.xe_c00220{left:293.120000pt;}
.x28_c00220{left:311.040000pt;}
.x22_c00220{left:321.280000pt;}
.xf_c00220{left:330.880000pt;}
.x26_c00220{left:340.480000pt;}
.x23_c00220{left:350.080000pt;}
.x14_c00220{left:359.040000pt;}
.x10_c00220{left:379.520000pt;}
.x1b_c00220{left:406.400000pt;}
.x15_c00220{left:435.840000pt;}
.x1c_c00220{left:446.080000pt;}
.x16_c00220{left:495.360000pt;}
.x19_c00220{left:503.040000pt;}
.x5_c00220{left:504.319760pt;}
.x11_c00220{left:522.240000pt;}
.x12_c00220{left:523.520000pt;}
.x1e_c00220{left:551.680000pt;}
.x6_c00220{left:552.960000pt;}
.x1f_c00220{left:579.840000pt;}
.x7_c00220{left:581.120000pt;}
.x17_c00220{left:609.280000pt;}
.x20_c00220{left:617.600000pt;}
.x8_c00220{left:618.880000pt;}
.x1_c00220{left:629.760000pt;}
.x9_c00220{left:636.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b104752581fb9f8063b2561c.woff2')format("woff");}.ff1_c00221{font-family:ff1_c00221;line-height:1.109863;font-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_c00221{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);}
.m2c_c00221{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m29_c00221{transform:matrix(0.235200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235200,0.000000,0.000000,0.250000,0,0);}
.m4f_c00221{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m26_c00221{transform:matrix(0.241125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241125,0.000000,0.000000,0.250000,0,0);}
.m34_c00221{transform:matrix(0.241650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241650,0.000000,0.000000,0.250000,0,0);}
.m28_c00221{transform:matrix(0.244600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244600,0.000000,0.000000,0.250000,0,0);}
.m18_c00221{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m37_c00221{transform:matrix(0.248875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248875,0.000000,0.000000,0.250000,0,0);}
.m2e_c00221{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);}
.m33_c00221{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);}
.m2b_c00221{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m21_c00221{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_c00221{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m52_c00221{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m16_c00221{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00221{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m15_c00221{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m11_c00221{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00221{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00221{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00221{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00221{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00221{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m8_c00221{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m32_c00221{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00221{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.me_c00221{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m54_c00221{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m4_c00221{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00221{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m12_c00221{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m51_c00221{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m30_c00221{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m48_c00221{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00221{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m22_c00221{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m3_c00221{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m31_c00221{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m1_c00221{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m2_c00221{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m44_c00221{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m19_c00221{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m20_c00221{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.ma_c00221{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m47_c00221{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);}
.mb_c00221{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00221{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m39_c00221{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_c00221{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.mc_c00221{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);}
.m3c_c00221{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m7_c00221{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);}
.m24_c00221{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);}
.m41_c00221{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m5_c00221{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);}
.m42_c00221{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m35_c00221{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m0_c00221{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00221{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);}
.m36_c00221{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);}
.m6_c00221{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00221{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00221{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);}
.m2f_c00221{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m45_c00221{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_c00221{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m38_c00221{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00221{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);}
.m23_c00221{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m40_c00221{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);}
.m2d_c00221{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00221{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.md_c00221{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m27_c00221{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00221{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);}
.m4d_c00221{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m13_c00221{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);}
.m49_c00221{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m9_c00221{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);}
.m10_c00221{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);}
.m43_c00221{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m46_c00221{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m50_c00221{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.m53_c00221{transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);}
.v1_c00221{vertical-align:-8.640000px;}
.v0_c00221{vertical-align:0.000000px;}
.v2_c00221{vertical-align:8.640000px;}
.ls0_c00221{letter-spacing:0.000000px;}
.sc__c00221{text-shadow:none;}
.sc0_c00221{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00221{-webkit-text-stroke:0px transparent;}
.sc0_c00221{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00221{word-spacing:0.000000px;}
.ws0_c00221{word-spacing:1.164000px;}
.ws1_c00221{word-spacing:174.722400px;}
.fc0_c00221{color:transparent;}
.fs11_c00221{font-size:17.280000px;}
.fsf_c00221{font-size:34.560000px;}
.fs7_c00221{font-size:37.440000px;}
.fse_c00221{font-size:40.320000px;}
.fs10_c00221{font-size:43.200000px;}
.fs4_c00221{font-size:46.080000px;}
.fs2_c00221{font-size:48.960000px;}
.fs0_c00221{font-size:51.840000px;}
.fs9_c00221{font-size:54.720000px;}
.fs1_c00221{font-size:57.600000px;}
.fs3_c00221{font-size:60.480000px;}
.fs5_c00221{font-size:63.360000px;}
.fsa_c00221{font-size:66.240000px;}
.fs8_c00221{font-size:69.120000px;}
.fs6_c00221{font-size:72.000000px;}
.fsc_c00221{font-size:74.880000px;}
.fsb_c00221{font-size:77.760000px;}
.fsd_c00221{font-size:95.040000px;}
.y0_c00221{bottom:0.000000px;}
.y76_c00221{bottom:26.640000px;}
.y72_c00221{bottom:27.360000px;}
.y73_c00221{bottom:28.080000px;}
.y75_c00221{bottom:28.800000px;}
.y74_c00221{bottom:30.960000px;}
.y70_c00221{bottom:59.040000px;}
.y6e_c00221{bottom:60.480000px;}
.y6f_c00221{bottom:61.200000px;}
.y71_c00221{bottom:64.800000px;}
.y6a_c00221{bottom:81.360000px;}
.y69_c00221{bottom:82.080000px;}
.y6c_c00221{bottom:82.800000px;}
.y68_c00221{bottom:83.520000px;}
.y6b_c00221{bottom:84.240000px;}
.y6d_c00221{bottom:87.120000px;}
.y65_c00221{bottom:102.960000px;}
.y64_c00221{bottom:105.120000px;}
.y63_c00221{bottom:105.840000px;}
.y66_c00221{bottom:106.560000px;}
.y67_c00221{bottom:108.720000px;}
.y60_c00221{bottom:124.560000px;}
.y61_c00221{bottom:126.000000px;}
.y5f_c00221{bottom:127.440000px;}
.y62_c00221{bottom:128.160000px;}
.y5e_c00221{bottom:146.880000px;}
.y5a_c00221{bottom:147.600000px;}
.y5b_c00221{bottom:148.320000px;}
.y5c_c00221{bottom:149.040000px;}
.y5d_c00221{bottom:151.200000px;}
.y59_c00221{bottom:190.800000px;}
.y56_c00221{bottom:191.520000px;}
.y57_c00221{bottom:192.240000px;}
.y58_c00221{bottom:192.960000px;}
.y53_c00221{bottom:231.840000px;}
.y55_c00221{bottom:233.280000px;}
.y54_c00221{bottom:234.000000px;}
.y52_c00221{bottom:234.720000px;}
.y51_c00221{bottom:235.440000px;}
.y4f_c00221{bottom:236.880000px;}
.y50_c00221{bottom:237.600000px;}
.y4d_c00221{bottom:275.760000px;}
.y4c_c00221{bottom:277.920000px;}
.y4b_c00221{bottom:278.640000px;}
.y4e_c00221{bottom:279.360000px;}
.y4a_c00221{bottom:329.760000px;}
.y49_c00221{bottom:330.480000px;}
.y48_c00221{bottom:332.640000px;}
.y47_c00221{bottom:372.240000px;}
.y44_c00221{bottom:372.960000px;}
.y46_c00221{bottom:374.400000px;}
.y45_c00221{bottom:375.120000px;}
.y43_c00221{bottom:375.840000px;}
.y42_c00221{bottom:376.560000px;}
.y41_c00221{bottom:377.280000px;}
.y40_c00221{bottom:417.600000px;}
.y3f_c00221{bottom:418.320000px;}
.y3e_c00221{bottom:419.040000px;}
.y3c_c00221{bottom:479.520000px;}
.y3d_c00221{bottom:480.240000px;}
.y3a_c00221{bottom:482.400000px;}
.y3b_c00221{bottom:483.120000px;}
.y36_c00221{bottom:522.720000px;}
.y38_c00221{bottom:524.160000px;}
.y39_c00221{bottom:524.880000px;}
.y35_c00221{bottom:526.320000px;}
.y37_c00221{bottom:527.040000px;}
.y33_c00221{bottom:567.360000px;}
.y32_c00221{bottom:568.080000px;}
.y34_c00221{bottom:568.800000px;}
.y31_c00221{bottom:570.240000px;}
.y2c_c00221{bottom:612.720000px;}
.y2a_c00221{bottom:620.640000px;}
.y2b_c00221{bottom:621.360000px;}
.y2e_c00221{bottom:622.080000px;}
.y30_c00221{bottom:622.800000px;}
.y29_c00221{bottom:623.520000px;}
.y2f_c00221{bottom:624.240000px;}
.y27_c00221{bottom:663.840000px;}
.y2d_c00221{bottom:664.560000px;}
.y28_c00221{bottom:665.280000px;}
.y26_c00221{bottom:666.000000px;}
.y25_c00221{bottom:708.480000px;}
.y24_c00221{bottom:709.920000px;}
.y22_c00221{bottom:752.400000px;}
.y21_c00221{bottom:759.600000px;}
.y20_c00221{bottom:760.320000px;}
.y1f_c00221{bottom:761.040000px;}
.y1d_c00221{bottom:761.760000px;}
.y1e_c00221{bottom:763.920000px;}
.y23_c00221{bottom:764.640000px;}
.y19_c00221{bottom:803.520000px;}
.y18_c00221{bottom:804.240000px;}
.y1a_c00221{bottom:804.960000px;}
.y1c_c00221{bottom:806.400000px;}
.y1b_c00221{bottom:807.120000px;}
.y14_c00221{bottom:846.000000px;}
.y13_c00221{bottom:848.160000px;}
.y16_c00221{bottom:848.880000px;}
.y15_c00221{bottom:849.600000px;}
.y17_c00221{bottom:850.320000px;}
.yf_c00221{bottom:889.200000px;}
.ye_c00221{bottom:889.920000px;}
.y11_c00221{bottom:890.640000px;}
.y12_c00221{bottom:892.080000px;}
.y10_c00221{bottom:893.520000px;}
.yc_c00221{bottom:933.120000px;}
.yb_c00221{bottom:935.280000px;}
.yd_c00221{bottom:936.000000px;}
.y6_c00221{bottom:964.800000px;}
.y9_c00221{bottom:965.520000px;}
.y7_c00221{bottom:966.240000px;}
.ya_c00221{bottom:967.680000px;}
.y8_c00221{bottom:968.400000px;}
.y4_c00221{bottom:1009.440000px;}
.y5_c00221{bottom:1010.160000px;}
.y3_c00221{bottom:1010.880000px;}
.y1_c00221{bottom:1053.360000px;}
.y2_c00221{bottom:1054.080000px;}
.y77_c00221{bottom:1118.880000px;}
.h13_c00221{height:15.550313px;}
.h11_c00221{height:31.100625px;}
.h9_c00221{height:33.692344px;}
.h10_c00221{height:36.284062px;}
.h12_c00221{height:38.875781px;}
.h6_c00221{height:41.467500px;}
.h4_c00221{height:44.059219px;}
.h2_c00221{height:46.650937px;}
.hb_c00221{height:49.242656px;}
.h3_c00221{height:51.834375px;}
.h5_c00221{height:54.426094px;}
.h14_c00221{height:55.290937px;}
.h7_c00221{height:57.017812px;}
.hc_c00221{height:59.609531px;}
.ha_c00221{height:62.201250px;}
.h8_c00221{height:64.792969px;}
.he_c00221{height:67.384687px;}
.hd_c00221{height:69.976406px;}
.hf_c00221{height:85.526719px;}
.h0_c00221{height:1154.880000px;}
.h1_c00221{height:1155.000000px;}
.w0_c00221{width:792.000000px;}
.x0_c00221{left:0.000000px;}
.x1b_c00221{left:78.480000px;}
.x7_c00221{left:79.920000px;}
.x3e_c00221{left:110.160000px;}
.x34_c00221{left:129.600000px;}
.x1_c00221{left:131.760000px;}
.x15_c00221{left:141.120000px;}
.x8_c00221{left:142.560000px;}
.x46_c00221{left:149.760000px;}
.x1c_c00221{left:151.200000px;}
.x2a_c00221{left:153.360000px;}
.x5_c00221{left:164.160000px;}
.x47_c00221{left:171.360000px;}
.x2c_c00221{left:182.880000px;}
.x9_c00221{left:185.040000px;}
.x10_c00221{left:186.480000px;}
.x1d_c00221{left:195.840000px;}
.x2b_c00221{left:198.000000px;}
.x2_c00221{left:205.920000px;}
.x43_c00221{left:214.560000px;}
.x2d_c00221{left:216.720000px;}
.x4a_c00221{left:224.640000px;}
.x11_c00221{left:227.520000px;}
.x21_c00221{left:237.600000px;}
.xa_c00221{left:239.040000px;}
.x35_c00221{left:248.400000px;}
.x6_c00221{left:259.200000px;}
.x4c_c00221{left:270.000000px;}
.x3_c00221{left:272.160000px;}
.x36_c00221{left:280.800000px;}
.x44_c00221{left:282.240000px;}
.xb_c00221{left:293.760000px;}
.x4_c00221{left:303.840000px;}
.x2e_c00221{left:313.920000px;}
.x16_c00221{left:326.160000px;}
.xc_c00221{left:336.960000px;}
.x2f_c00221{left:345.600000px;}
.x22_c00221{left:347.760000px;}
.x37_c00221{left:356.400000px;}
.x45_c00221{left:357.840000px;}
.xd_c00221{left:380.160000px;}
.x38_c00221{left:401.040000px;}
.x30_c00221{left:411.840000px;}
.x1a_c00221{left:422.640000px;}
.xe_c00221{left:434.160000px;}
.x24_c00221{left:442.800000px;}
.x3f_c00221{left:452.880000px;}
.x3a_c00221{left:464.400000px;}
.x25_c00221{left:486.720000px;}
.x17_c00221{left:488.160000px;}
.x26_c00221{left:497.520000px;}
.x31_c00221{left:507.600000px;}
.x40_c00221{left:519.120000px;}
.xf_c00221{left:520.560000px;}
.x1e_c00221{left:535.680000px;}
.x32_c00221{left:550.800000px;}
.x4b_c00221{left:559.440000px;}
.x3b_c00221{left:560.880000px;}
.x23_c00221{left:563.760000px;}
.x18_c00221{left:573.840000px;}
.x33_c00221{left:582.480000px;}
.x19_c00221{left:595.440000px;}
.x3c_c00221{left:603.360000px;}
.x48_c00221{left:624.240000px;}
.x41_c00221{left:625.680000px;}
.x1f_c00221{left:627.120000px;}
.x12_c00221{left:628.560000px;}
.x3d_c00221{left:647.280000px;}
.x20_c00221{left:658.800000px;}
.x13_c00221{left:660.960000px;}
.x39_c00221{left:678.960000px;}
.x42_c00221{left:689.040000px;}
.x49_c00221{left:691.200000px;}
.x27_c00221{left:692.640000px;}
.x28_c00221{left:702.000000px;}
.x14_c00221{left:703.440000px;}
.x4d_c00221{left:718.560000px;}
.x29_c00221{left:722.880000px;}
@media print{
.v1_c00221{vertical-align:-7.680000pt;}
.v0_c00221{vertical-align:0.000000pt;}
.v2_c00221{vertical-align:7.680000pt;}
.ls0_c00221{letter-spacing:0.000000pt;}
.ws2_c00221{word-spacing:0.000000pt;}
.ws0_c00221{word-spacing:1.034667pt;}
.ws1_c00221{word-spacing:155.308800pt;}
.fs11_c00221{font-size:15.360000pt;}
.fsf_c00221{font-size:30.720000pt;}
.fs7_c00221{font-size:33.280000pt;}
.fse_c00221{font-size:35.840000pt;}
.fs10_c00221{font-size:38.400000pt;}
.fs4_c00221{font-size:40.960000pt;}
.fs2_c00221{font-size:43.520000pt;}
.fs0_c00221{font-size:46.080000pt;}
.fs9_c00221{font-size:48.640000pt;}
.fs1_c00221{font-size:51.200000pt;}
.fs3_c00221{font-size:53.760000pt;}
.fs5_c00221{font-size:56.320000pt;}
.fsa_c00221{font-size:58.880000pt;}
.fs8_c00221{font-size:61.440000pt;}
.fs6_c00221{font-size:64.000000pt;}
.fsc_c00221{font-size:66.560000pt;}
.fsb_c00221{font-size:69.120000pt;}
.fsd_c00221{font-size:84.480000pt;}
.y0_c00221{bottom:0.000000pt;}
.y76_c00221{bottom:23.680000pt;}
.y72_c00221{bottom:24.320000pt;}
.y73_c00221{bottom:24.960000pt;}
.y75_c00221{bottom:25.600000pt;}
.y74_c00221{bottom:27.520000pt;}
.y70_c00221{bottom:52.480000pt;}
.y6e_c00221{bottom:53.760000pt;}
.y6f_c00221{bottom:54.400000pt;}
.y71_c00221{bottom:57.600000pt;}
.y6a_c00221{bottom:72.320000pt;}
.y69_c00221{bottom:72.960000pt;}
.y6c_c00221{bottom:73.600000pt;}
.y68_c00221{bottom:74.240000pt;}
.y6b_c00221{bottom:74.880000pt;}
.y6d_c00221{bottom:77.440000pt;}
.y65_c00221{bottom:91.520000pt;}
.y64_c00221{bottom:93.440000pt;}
.y63_c00221{bottom:94.080000pt;}
.y66_c00221{bottom:94.720000pt;}
.y67_c00221{bottom:96.640000pt;}
.y60_c00221{bottom:110.720000pt;}
.y61_c00221{bottom:112.000000pt;}
.y5f_c00221{bottom:113.280000pt;}
.y62_c00221{bottom:113.920000pt;}
.y5e_c00221{bottom:130.560000pt;}
.y5a_c00221{bottom:131.200000pt;}
.y5b_c00221{bottom:131.840000pt;}
.y5c_c00221{bottom:132.480000pt;}
.y5d_c00221{bottom:134.400000pt;}
.y59_c00221{bottom:169.600000pt;}
.y56_c00221{bottom:170.240000pt;}
.y57_c00221{bottom:170.880000pt;}
.y58_c00221{bottom:171.520000pt;}
.y53_c00221{bottom:206.080000pt;}
.y55_c00221{bottom:207.360000pt;}
.y54_c00221{bottom:208.000000pt;}
.y52_c00221{bottom:208.640000pt;}
.y51_c00221{bottom:209.280000pt;}
.y4f_c00221{bottom:210.560000pt;}
.y50_c00221{bottom:211.200000pt;}
.y4d_c00221{bottom:245.120000pt;}
.y4c_c00221{bottom:247.040000pt;}
.y4b_c00221{bottom:247.680000pt;}
.y4e_c00221{bottom:248.320000pt;}
.y4a_c00221{bottom:293.120000pt;}
.y49_c00221{bottom:293.760000pt;}
.y48_c00221{bottom:295.680000pt;}
.y47_c00221{bottom:330.880000pt;}
.y44_c00221{bottom:331.520000pt;}
.y46_c00221{bottom:332.800000pt;}
.y45_c00221{bottom:333.440000pt;}
.y43_c00221{bottom:334.080000pt;}
.y42_c00221{bottom:334.720000pt;}
.y41_c00221{bottom:335.360000pt;}
.y40_c00221{bottom:371.200000pt;}
.y3f_c00221{bottom:371.840000pt;}
.y3e_c00221{bottom:372.480000pt;}
.y3c_c00221{bottom:426.240000pt;}
.y3d_c00221{bottom:426.880000pt;}
.y3a_c00221{bottom:428.800000pt;}
.y3b_c00221{bottom:429.440000pt;}
.y36_c00221{bottom:464.640000pt;}
.y38_c00221{bottom:465.920000pt;}
.y39_c00221{bottom:466.560000pt;}
.y35_c00221{bottom:467.840000pt;}
.y37_c00221{bottom:468.480000pt;}
.y33_c00221{bottom:504.320000pt;}
.y32_c00221{bottom:504.960000pt;}
.y34_c00221{bottom:505.600000pt;}
.y31_c00221{bottom:506.880000pt;}
.y2c_c00221{bottom:544.640000pt;}
.y2a_c00221{bottom:551.680000pt;}
.y2b_c00221{bottom:552.320000pt;}
.y2e_c00221{bottom:552.960000pt;}
.y30_c00221{bottom:553.600000pt;}
.y29_c00221{bottom:554.240000pt;}
.y2f_c00221{bottom:554.880000pt;}
.y27_c00221{bottom:590.080000pt;}
.y2d_c00221{bottom:590.720000pt;}
.y28_c00221{bottom:591.360000pt;}
.y26_c00221{bottom:592.000000pt;}
.y25_c00221{bottom:629.760000pt;}
.y24_c00221{bottom:631.040000pt;}
.y22_c00221{bottom:668.800000pt;}
.y21_c00221{bottom:675.200000pt;}
.y20_c00221{bottom:675.840000pt;}
.y1f_c00221{bottom:676.480000pt;}
.y1d_c00221{bottom:677.120000pt;}
.y1e_c00221{bottom:679.040000pt;}
.y23_c00221{bottom:679.680000pt;}
.y19_c00221{bottom:714.240000pt;}
.y18_c00221{bottom:714.880000pt;}
.y1a_c00221{bottom:715.520000pt;}
.y1c_c00221{bottom:716.800000pt;}
.y1b_c00221{bottom:717.440000pt;}
.y14_c00221{bottom:752.000000pt;}
.y13_c00221{bottom:753.920000pt;}
.y16_c00221{bottom:754.560000pt;}
.y15_c00221{bottom:755.200000pt;}
.y17_c00221{bottom:755.840000pt;}
.yf_c00221{bottom:790.400000pt;}
.ye_c00221{bottom:791.040000pt;}
.y11_c00221{bottom:791.680000pt;}
.y12_c00221{bottom:792.960000pt;}
.y10_c00221{bottom:794.240000pt;}
.yc_c00221{bottom:829.440000pt;}
.yb_c00221{bottom:831.360000pt;}
.yd_c00221{bottom:832.000000pt;}
.y6_c00221{bottom:857.600000pt;}
.y9_c00221{bottom:858.240000pt;}
.y7_c00221{bottom:858.880000pt;}
.ya_c00221{bottom:860.160000pt;}
.y8_c00221{bottom:860.800000pt;}
.y4_c00221{bottom:897.280000pt;}
.y5_c00221{bottom:897.920000pt;}
.y3_c00221{bottom:898.560000pt;}
.y1_c00221{bottom:936.320000pt;}
.y2_c00221{bottom:936.960000pt;}
.y77_c00221{bottom:994.560000pt;}
.h13_c00221{height:13.822500pt;}
.h11_c00221{height:27.645000pt;}
.h9_c00221{height:29.948750pt;}
.h10_c00221{height:32.252500pt;}
.h12_c00221{height:34.556250pt;}
.h6_c00221{height:36.860000pt;}
.h4_c00221{height:39.163750pt;}
.h2_c00221{height:41.467500pt;}
.hb_c00221{height:43.771250pt;}
.h3_c00221{height:46.075000pt;}
.h5_c00221{height:48.378750pt;}
.h14_c00221{height:49.147500pt;}
.h7_c00221{height:50.682500pt;}
.hc_c00221{height:52.986250pt;}
.ha_c00221{height:55.290000pt;}
.h8_c00221{height:57.593750pt;}
.he_c00221{height:59.897500pt;}
.hd_c00221{height:62.201250pt;}
.hf_c00221{height:76.023750pt;}
.h0_c00221{height:1026.560000pt;}
.h1_c00221{height:1026.666667pt;}
.w0_c00221{width:704.000000pt;}
.x0_c00221{left:0.000000pt;}
.x1b_c00221{left:69.760000pt;}
.x7_c00221{left:71.040000pt;}
.x3e_c00221{left:97.920000pt;}
.x34_c00221{left:115.200000pt;}
.x1_c00221{left:117.120000pt;}
.x15_c00221{left:125.440000pt;}
.x8_c00221{left:126.720000pt;}
.x46_c00221{left:133.120000pt;}
.x1c_c00221{left:134.400000pt;}
.x2a_c00221{left:136.320000pt;}
.x5_c00221{left:145.920000pt;}
.x47_c00221{left:152.320000pt;}
.x2c_c00221{left:162.560000pt;}
.x9_c00221{left:164.480000pt;}
.x10_c00221{left:165.760000pt;}
.x1d_c00221{left:174.080000pt;}
.x2b_c00221{left:176.000000pt;}
.x2_c00221{left:183.040000pt;}
.x43_c00221{left:190.720000pt;}
.x2d_c00221{left:192.640000pt;}
.x4a_c00221{left:199.680000pt;}
.x11_c00221{left:202.240000pt;}
.x21_c00221{left:211.200000pt;}
.xa_c00221{left:212.480000pt;}
.x35_c00221{left:220.800000pt;}
.x6_c00221{left:230.400000pt;}
.x4c_c00221{left:240.000000pt;}
.x3_c00221{left:241.920000pt;}
.x36_c00221{left:249.600000pt;}
.x44_c00221{left:250.880000pt;}
.xb_c00221{left:261.120000pt;}
.x4_c00221{left:270.080000pt;}
.x2e_c00221{left:279.040000pt;}
.x16_c00221{left:289.920000pt;}
.xc_c00221{left:299.520000pt;}
.x2f_c00221{left:307.200000pt;}
.x22_c00221{left:309.120000pt;}
.x37_c00221{left:316.800000pt;}
.x45_c00221{left:318.080000pt;}
.xd_c00221{left:337.920000pt;}
.x38_c00221{left:356.480000pt;}
.x30_c00221{left:366.080000pt;}
.x1a_c00221{left:375.680000pt;}
.xe_c00221{left:385.920000pt;}
.x24_c00221{left:393.600000pt;}
.x3f_c00221{left:402.560000pt;}
.x3a_c00221{left:412.800000pt;}
.x25_c00221{left:432.640000pt;}
.x17_c00221{left:433.920000pt;}
.x26_c00221{left:442.240000pt;}
.x31_c00221{left:451.200000pt;}
.x40_c00221{left:461.440000pt;}
.xf_c00221{left:462.720000pt;}
.x1e_c00221{left:476.160000pt;}
.x32_c00221{left:489.600000pt;}
.x4b_c00221{left:497.280000pt;}
.x3b_c00221{left:498.560000pt;}
.x23_c00221{left:501.120000pt;}
.x18_c00221{left:510.080000pt;}
.x33_c00221{left:517.760000pt;}
.x19_c00221{left:529.280000pt;}
.x3c_c00221{left:536.320000pt;}
.x48_c00221{left:554.880000pt;}
.x41_c00221{left:556.160000pt;}
.x1f_c00221{left:557.440000pt;}
.x12_c00221{left:558.720000pt;}
.x3d_c00221{left:575.360000pt;}
.x20_c00221{left:585.600000pt;}
.x13_c00221{left:587.520000pt;}
.x39_c00221{left:603.520000pt;}
.x42_c00221{left:612.480000pt;}
.x49_c00221{left:614.400000pt;}
.x27_c00221{left:615.680000pt;}
.x28_c00221{left:624.000000pt;}
.x14_c00221{left:625.280000pt;}
.x4d_c00221{left:638.720000pt;}
.x29_c00221{left:642.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e23244c339e145cecc3e9fd2.woff2')format("woff");}.ff1_c00222{font-family:ff1_c00222;line-height:1.109863;font-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_c00222{transform:matrix(0.165075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165075,0.000000,0.000000,0.250000,0,0);}
.m31_c00222{transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);}
.md_c00222{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00222{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.me_c00222{transform:matrix(0.225100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225100,0.000000,0.000000,0.250000,0,0);}
.m24_c00222{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m21_c00222{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m1d_c00222{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.mf_c00222{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_c00222{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m32_c00222{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m20_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);}
.m1a_c00222{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m8_c00222{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00222{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m17_c00222{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m22_c00222{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m11_c00222{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00222{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m23_c00222{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00222{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m7_c00222{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m27_c00222{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m14_c00222{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m15_c00222{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m5_c00222{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m39_c00222{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00222{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1_c00222{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m0_c00222{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m16_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);}
.m18_c00222{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m9_c00222{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_c00222{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);}
.m2_c00222{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);}
.m2a_c00222{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m34_c00222{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.mb_c00222{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m19_c00222{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);}
.ma_c00222{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);}
.m36_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);}
.m6_c00222{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);}
.m26_c00222{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);}
.m12_c00222{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00222{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m29_c00222{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);}
.m3_c00222{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);}
.m4_c00222{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00222{transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);}
.m25_c00222{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);}
.m30_c00222{transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);}
.m35_c00222{transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);}
.m33_c00222{transform:matrix(0.977500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.977500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.977500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00222{transform:matrix(1.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.395000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00222{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.m13_c00222{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.m28_c00222{transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);}
.m37_c00222{transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);}
.m10_c00222{transform:matrix(2.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.160000,0.000000,0.000000,0.250000,0,0);}
.v1_c00222{vertical-align:-5.760000px;}
.v0_c00222{vertical-align:0.000000px;}
.v2_c00222{vertical-align:2.880000px;}
.ls3_c00222{letter-spacing:0.000000px;}
.ls2_c00222{letter-spacing:21.935760px;}
.ls0_c00222{letter-spacing:152.555760px;}
.ls1_c00222{letter-spacing:386.419680px;}
.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:-418.321440px;}
.ws2_c00222{word-spacing:0.000000px;}
.ws1_c00222{word-spacing:156.173520px;}
._0_c00222{margin-left:-386.419680px;}
.fc0_c00222{color:transparent;}
.fsd_c00222{font-size:8.640000px;}
.fse_c00222{font-size:17.280000px;}
.fsf_c00222{font-size:20.160000px;}
.fs10_c00222{font-size:23.040000px;}
.fs3_c00222{font-size:34.560000px;}
.fsb_c00222{font-size:46.080000px;}
.fs4_c00222{font-size:48.960000px;}
.fs8_c00222{font-size:51.840000px;}
.fs7_c00222{font-size:54.720000px;}
.fs9_c00222{font-size:57.600000px;}
.fs2_c00222{font-size:60.480000px;}
.fs1_c00222{font-size:66.240000px;}
.fs5_c00222{font-size:69.120000px;}
.fs6_c00222{font-size:72.000000px;}
.fs0_c00222{font-size:80.640000px;}
.fsc_c00222{font-size:92.160000px;}
.fsa_c00222{font-size:100.800000px;}
.y0_c00222{bottom:0.000000px;}
.y54_c00222{bottom:234.000000px;}
.y57_c00222{bottom:234.720000px;}
.y55_c00222{bottom:235.440000px;}
.y56_c00222{bottom:236.160000px;}
.y52_c00222{bottom:281.520000px;}
.y53_c00222{bottom:282.240000px;}
.y4f_c00222{bottom:320.400000px;}
.y4d_c00222{bottom:321.120000px;}
.y4e_c00222{bottom:322.560000px;}
.y51_c00222{bottom:323.280000px;}
.y50_c00222{bottom:325.440000px;}
.y4b_c00222{bottom:352.800000px;}
.y49_c00222{bottom:355.680000px;}
.y4a_c00222{bottom:356.400000px;}
.y4c_c00222{bottom:357.840000px;}
.y44_c00222{bottom:385.200000px;}
.y46_c00222{bottom:387.360000px;}
.y48_c00222{bottom:388.080000px;}
.y45_c00222{bottom:388.800000px;}
.y47_c00222{bottom:390.240000px;}
.y41_c00222{bottom:419.760000px;}
.y42_c00222{bottom:420.480000px;}
.y43_c00222{bottom:422.640000px;}
.y3f_c00222{bottom:450.000000px;}
.y3e_c00222{bottom:452.160000px;}
.y3d_c00222{bottom:453.600000px;}
.y40_c00222{bottom:455.040000px;}
.y3b_c00222{bottom:495.360000px;}
.y3c_c00222{bottom:496.800000px;}
.y39_c00222{bottom:528.480000px;}
.y3a_c00222{bottom:529.200000px;}
.y37_c00222{bottom:559.440000px;}
.y36_c00222{bottom:560.160000px;}
.y38_c00222{bottom:561.600000px;}
.y34_c00222{bottom:592.560000px;}
.y35_c00222{bottom:594.000000px;}
.y31_c00222{bottom:623.520000px;}
.y32_c00222{bottom:624.960000px;}
.y33_c00222{bottom:626.400000px;}
.y30_c00222{bottom:663.840000px;}
.y2d_c00222{bottom:666.000000px;}
.y2e_c00222{bottom:666.720000px;}
.y2c_c00222{bottom:667.440000px;}
.y2f_c00222{bottom:668.880000px;}
.y29_c00222{bottom:697.680000px;}
.y2b_c00222{bottom:698.400000px;}
.y28_c00222{bottom:699.120000px;}
.y27_c00222{bottom:699.840000px;}
.y2a_c00222{bottom:702.000000px;}
.y23_c00222{bottom:740.160000px;}
.y24_c00222{bottom:740.880000px;}
.y26_c00222{bottom:742.320000px;}
.y25_c00222{bottom:744.480000px;}
.y22_c00222{bottom:774.000000px;}
.y1f_c00222{bottom:774.720000px;}
.y20_c00222{bottom:775.440000px;}
.y21_c00222{bottom:776.880000px;}
.y1e_c00222{bottom:815.040000px;}
.y1d_c00222{bottom:815.760000px;}
.y19_c00222{bottom:816.480000px;}
.y1b_c00222{bottom:817.200000px;}
.y1a_c00222{bottom:817.920000px;}
.y1c_c00222{bottom:818.640000px;}
.y17_c00222{bottom:848.880000px;}
.y18_c00222{bottom:849.600000px;}
.y16_c00222{bottom:851.040000px;}
.y15_c00222{bottom:881.280000px;}
.y13_c00222{bottom:883.440000px;}
.y14_c00222{bottom:885.600000px;}
.y12_c00222{bottom:912.240000px;}
.y10_c00222{bottom:914.400000px;}
.yf_c00222{bottom:915.120000px;}
.y11_c00222{bottom:915.840000px;}
.yc_c00222{bottom:946.800000px;}
.yd_c00222{bottom:947.520000px;}
.ye_c00222{bottom:950.400000px;}
.y9_c00222{bottom:966.240000px;}
.yb_c00222{bottom:973.440000px;}
.ya_c00222{bottom:974.160000px;}
.y5_c00222{bottom:975.600000px;}
.y8_c00222{bottom:978.480000px;}
.y7_c00222{bottom:979.200000px;}
.y6_c00222{bottom:979.920000px;}
.y2_c00222{bottom:1031.040000px;}
.y3_c00222{bottom:1032.480000px;}
.y4_c00222{bottom:1034.640000px;}
.y1_c00222{bottom:1109.520000px;}
.hf_c00222{height:7.775156px;}
.h10_c00222{height:15.550313px;}
.h11_c00222{height:18.142031px;}
.h13_c00222{height:18.430313px;}
.h12_c00222{height:20.733750px;}
.h5_c00222{height:31.100625px;}
.hd_c00222{height:41.467500px;}
.h6_c00222{height:44.059219px;}
.ha_c00222{height:46.650937px;}
.h9_c00222{height:49.242656px;}
.hb_c00222{height:51.834375px;}
.h4_c00222{height:54.426094px;}
.h3_c00222{height:59.609531px;}
.h7_c00222{height:62.201250px;}
.h8_c00222{height:64.792969px;}
.h2_c00222{height:72.568125px;}
.he_c00222{height:82.935000px;}
.hc_c00222{height:90.710156px;}
.h0_c00222{height:1155.600000px;}
.h1_c00222{height:1155.750000px;}
.w0_c00222{width:792.720000px;}
.w1_c00222{width:792.750000px;}
.x0_c00222{left:0.000000px;}
.x1f_c00222{left:76.320000px;}
.x2_c00222{left:77.760000px;}
.x28_c00222{left:86.400000px;}
.x2a_c00222{left:88.560000px;}
.x23_c00222{left:97.200000px;}
.x24_c00222{left:107.280000px;}
.x13_c00222{left:118.080000px;}
.x15_c00222{left:127.440000px;}
.x1a_c00222{left:128.880000px;}
.x3_c00222{left:161.280000px;}
.x8_c00222{left:172.800000px;}
.x2b_c00222{left:193.680000px;}
.x26_c00222{left:203.040000px;}
.x16_c00222{left:204.480000px;}
.x9_c00222{left:291.600000px;}
.xa_c00222{left:304.560000px;}
.x17_c00222{left:313.920000px;}
.x1b_c00222{left:323.280000px;}
.xb_c00222{left:326.160000px;}
.x4_c00222{left:334.800000px;}
.x5_c00222{left:356.400000px;}
.x6_c00222{left:388.800000px;}
.xc_c00222{left:410.400000px;}
.x2c_c00222{left:421.200000px;}
.x20_c00222{left:432.720000px;}
.x25_c00222{left:440.640000px;}
.x14_c00222{left:442.080000px;}
.x1c_c00222{left:443.520000px;}
.x27_c00222{left:452.160000px;}
.x7_c00222{left:464.400000px;}
.xd_c00222{left:550.800000px;}
.x2d_c00222{left:560.880000px;}
.x18_c00222{left:572.400000px;}
.x1d_c00222{left:581.760000px;}
.x1e_c00222{left:583.200000px;}
.x10_c00222{left:668.160000px;}
.xe_c00222{left:671.760000px;}
.x2e_c00222{left:678.240000px;}
.x29_c00222{left:687.600000px;}
.x21_c00222{left:689.040000px;}
.x19_c00222{left:690.480000px;}
.x11_c00222{left:704.160000px;}
.x2f_c00222{left:710.640000px;}
.x1_c00222{left:721.440000px;}
.x22_c00222{left:722.880000px;}
.x12_c00222{left:730.800000px;}
.xf_c00222{left:732.960000px;}
@media print{
.v1_c00222{vertical-align:-5.120000pt;}
.v0_c00222{vertical-align:0.000000pt;}
.v2_c00222{vertical-align:2.560000pt;}
.ls3_c00222{letter-spacing:0.000000pt;}
.ls2_c00222{letter-spacing:19.498453pt;}
.ls0_c00222{letter-spacing:135.605120pt;}
.ls1_c00222{letter-spacing:343.484160pt;}
.ws0_c00222{word-spacing:-371.841280pt;}
.ws2_c00222{word-spacing:0.000000pt;}
.ws1_c00222{word-spacing:138.820907pt;}
._0_c00222{margin-left:-343.484160pt;}
.fsd_c00222{font-size:7.680000pt;}
.fse_c00222{font-size:15.360000pt;}
.fsf_c00222{font-size:17.920000pt;}
.fs10_c00222{font-size:20.480000pt;}
.fs3_c00222{font-size:30.720000pt;}
.fsb_c00222{font-size:40.960000pt;}
.fs4_c00222{font-size:43.520000pt;}
.fs8_c00222{font-size:46.080000pt;}
.fs7_c00222{font-size:48.640000pt;}
.fs9_c00222{font-size:51.200000pt;}
.fs2_c00222{font-size:53.760000pt;}
.fs1_c00222{font-size:58.880000pt;}
.fs5_c00222{font-size:61.440000pt;}
.fs6_c00222{font-size:64.000000pt;}
.fs0_c00222{font-size:71.680000pt;}
.fsc_c00222{font-size:81.920000pt;}
.fsa_c00222{font-size:89.600000pt;}
.y0_c00222{bottom:0.000000pt;}
.y54_c00222{bottom:208.000000pt;}
.y57_c00222{bottom:208.640000pt;}
.y55_c00222{bottom:209.280000pt;}
.y56_c00222{bottom:209.920000pt;}
.y52_c00222{bottom:250.240000pt;}
.y53_c00222{bottom:250.880000pt;}
.y4f_c00222{bottom:284.800000pt;}
.y4d_c00222{bottom:285.440000pt;}
.y4e_c00222{bottom:286.720000pt;}
.y51_c00222{bottom:287.360000pt;}
.y50_c00222{bottom:289.280000pt;}
.y4b_c00222{bottom:313.600000pt;}
.y49_c00222{bottom:316.160000pt;}
.y4a_c00222{bottom:316.800000pt;}
.y4c_c00222{bottom:318.080000pt;}
.y44_c00222{bottom:342.400000pt;}
.y46_c00222{bottom:344.320000pt;}
.y48_c00222{bottom:344.960000pt;}
.y45_c00222{bottom:345.600000pt;}
.y47_c00222{bottom:346.880000pt;}
.y41_c00222{bottom:373.120000pt;}
.y42_c00222{bottom:373.760000pt;}
.y43_c00222{bottom:375.680000pt;}
.y3f_c00222{bottom:400.000000pt;}
.y3e_c00222{bottom:401.920000pt;}
.y3d_c00222{bottom:403.200000pt;}
.y40_c00222{bottom:404.480000pt;}
.y3b_c00222{bottom:440.320000pt;}
.y3c_c00222{bottom:441.600000pt;}
.y39_c00222{bottom:469.760000pt;}
.y3a_c00222{bottom:470.400000pt;}
.y37_c00222{bottom:497.280000pt;}
.y36_c00222{bottom:497.920000pt;}
.y38_c00222{bottom:499.200000pt;}
.y34_c00222{bottom:526.720000pt;}
.y35_c00222{bottom:528.000000pt;}
.y31_c00222{bottom:554.240000pt;}
.y32_c00222{bottom:555.520000pt;}
.y33_c00222{bottom:556.800000pt;}
.y30_c00222{bottom:590.080000pt;}
.y2d_c00222{bottom:592.000000pt;}
.y2e_c00222{bottom:592.640000pt;}
.y2c_c00222{bottom:593.280000pt;}
.y2f_c00222{bottom:594.560000pt;}
.y29_c00222{bottom:620.160000pt;}
.y2b_c00222{bottom:620.800000pt;}
.y28_c00222{bottom:621.440000pt;}
.y27_c00222{bottom:622.080000pt;}
.y2a_c00222{bottom:624.000000pt;}
.y23_c00222{bottom:657.920000pt;}
.y24_c00222{bottom:658.560000pt;}
.y26_c00222{bottom:659.840000pt;}
.y25_c00222{bottom:661.760000pt;}
.y22_c00222{bottom:688.000000pt;}
.y1f_c00222{bottom:688.640000pt;}
.y20_c00222{bottom:689.280000pt;}
.y21_c00222{bottom:690.560000pt;}
.y1e_c00222{bottom:724.480000pt;}
.y1d_c00222{bottom:725.120000pt;}
.y19_c00222{bottom:725.760000pt;}
.y1b_c00222{bottom:726.400000pt;}
.y1a_c00222{bottom:727.040000pt;}
.y1c_c00222{bottom:727.680000pt;}
.y17_c00222{bottom:754.560000pt;}
.y18_c00222{bottom:755.200000pt;}
.y16_c00222{bottom:756.480000pt;}
.y15_c00222{bottom:783.360000pt;}
.y13_c00222{bottom:785.280000pt;}
.y14_c00222{bottom:787.200000pt;}
.y12_c00222{bottom:810.880000pt;}
.y10_c00222{bottom:812.800000pt;}
.yf_c00222{bottom:813.440000pt;}
.y11_c00222{bottom:814.080000pt;}
.yc_c00222{bottom:841.600000pt;}
.yd_c00222{bottom:842.240000pt;}
.ye_c00222{bottom:844.800000pt;}
.y9_c00222{bottom:858.880000pt;}
.yb_c00222{bottom:865.280000pt;}
.ya_c00222{bottom:865.920000pt;}
.y5_c00222{bottom:867.200000pt;}
.y8_c00222{bottom:869.760000pt;}
.y7_c00222{bottom:870.400000pt;}
.y6_c00222{bottom:871.040000pt;}
.y2_c00222{bottom:916.480000pt;}
.y3_c00222{bottom:917.760000pt;}
.y4_c00222{bottom:919.680000pt;}
.y1_c00222{bottom:986.240000pt;}
.hf_c00222{height:6.911250pt;}
.h10_c00222{height:13.822500pt;}
.h11_c00222{height:16.126250pt;}
.h13_c00222{height:16.382500pt;}
.h12_c00222{height:18.430000pt;}
.h5_c00222{height:27.645000pt;}
.hd_c00222{height:36.860000pt;}
.h6_c00222{height:39.163750pt;}
.ha_c00222{height:41.467500pt;}
.h9_c00222{height:43.771250pt;}
.hb_c00222{height:46.075000pt;}
.h4_c00222{height:48.378750pt;}
.h3_c00222{height:52.986250pt;}
.h7_c00222{height:55.290000pt;}
.h8_c00222{height:57.593750pt;}
.h2_c00222{height:64.505000pt;}
.he_c00222{height:73.720000pt;}
.hc_c00222{height:80.631250pt;}
.h0_c00222{height:1027.200000pt;}
.h1_c00222{height:1027.333333pt;}
.w0_c00222{width:704.640000pt;}
.w1_c00222{width:704.666667pt;}
.x0_c00222{left:0.000000pt;}
.x1f_c00222{left:67.840000pt;}
.x2_c00222{left:69.120000pt;}
.x28_c00222{left:76.800000pt;}
.x2a_c00222{left:78.720000pt;}
.x23_c00222{left:86.400000pt;}
.x24_c00222{left:95.360000pt;}
.x13_c00222{left:104.960000pt;}
.x15_c00222{left:113.280000pt;}
.x1a_c00222{left:114.560000pt;}
.x3_c00222{left:143.360000pt;}
.x8_c00222{left:153.600000pt;}
.x2b_c00222{left:172.160000pt;}
.x26_c00222{left:180.480000pt;}
.x16_c00222{left:181.760000pt;}
.x9_c00222{left:259.200000pt;}
.xa_c00222{left:270.720000pt;}
.x17_c00222{left:279.040000pt;}
.x1b_c00222{left:287.360000pt;}
.xb_c00222{left:289.920000pt;}
.x4_c00222{left:297.600000pt;}
.x5_c00222{left:316.800000pt;}
.x6_c00222{left:345.600000pt;}
.xc_c00222{left:364.800000pt;}
.x2c_c00222{left:374.400000pt;}
.x20_c00222{left:384.640000pt;}
.x25_c00222{left:391.680000pt;}
.x14_c00222{left:392.960000pt;}
.x1c_c00222{left:394.240000pt;}
.x27_c00222{left:401.920000pt;}
.x7_c00222{left:412.800000pt;}
.xd_c00222{left:489.600000pt;}
.x2d_c00222{left:498.560000pt;}
.x18_c00222{left:508.800000pt;}
.x1d_c00222{left:517.120000pt;}
.x1e_c00222{left:518.400000pt;}
.x10_c00222{left:593.920000pt;}
.xe_c00222{left:597.120000pt;}
.x2e_c00222{left:602.880000pt;}
.x29_c00222{left:611.200000pt;}
.x21_c00222{left:612.480000pt;}
.x19_c00222{left:613.760000pt;}
.x11_c00222{left:625.920000pt;}
.x2f_c00222{left:631.680000pt;}
.x1_c00222{left:641.280000pt;}
.x22_c00222{left:642.560000pt;}
.x12_c00222{left:649.600000pt;}
.xf_c00222{left:651.520000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_be808df656bce267815795bd.woff2')format("woff");}.ff1_c00223{font-family:ff1_c00223;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m41_c00223{transform:matrix(0.210900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210900,0.000000,0.000000,0.250000,0,0);}
.m32_c00223{transform:matrix(0.246050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246050,0.000000,0.000000,0.250000,0,0);}
.m2_c00223{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m19_c00223{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00223{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m31_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);}
.m2f_c00223{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m5_c00223{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00223{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00223{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m26_c00223{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00223{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m30_c00223{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m15_c00223{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00223{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00223{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m46_c00223{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00223{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);}
.m4a_c00223{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00223{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m0_c00223{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.mb_c00223{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m8_c00223{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.ma_c00223{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m34_c00223{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);}
.m54_c00223{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);}
.m42_c00223{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m12_c00223{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);}
.m3c_c00223{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);}
.m22_c00223{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_c00223{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m55_c00223{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m1_c00223{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);}
.m53_c00223{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);}
.m17_c00223{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00223{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m21_c00223{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00223{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m3_c00223{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m18_c00223{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);}
.m3e_c00223{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00223{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);}
.m29_c00223{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);}
.m35_c00223{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m23_c00223{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00223{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m6_c00223{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m38_c00223{transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);}
.m13_c00223{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m33_c00223{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m4_c00223{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);}
.m20_c00223{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m36_c00223{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);}
.m44_c00223{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m47_c00223{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m10_c00223{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m27_c00223{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);}
.m48_c00223{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00223{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m52_c00223{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00223{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m50_c00223{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m7_c00223{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m9_c00223{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m28_c00223{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);}
.m49_c00223{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m24_c00223{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);}
.m4e_c00223{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.me_c00223{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00223{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);}
.m51_c00223{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m25_c00223{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m16_c00223{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);}
.m45_c00223{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m43_c00223{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m40_c00223{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);}
.m1c_c00223{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m14_c00223{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m37_c00223{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m39_c00223{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.mf_c00223{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00223{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00223{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00223{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);}
.m11_c00223{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.mc_c00223{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);}
.v1_c00223{vertical-align:-11.520000px;}
.v0_c00223{vertical-align:0.000000px;}
.ls0_c00223{letter-spacing:0.000000px;}
.sc__c00223{text-shadow:none;}
.sc0_c00223{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00223{-webkit-text-stroke:0px transparent;}
.sc0_c00223{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00223{word-spacing:0.000000px;}
.ws0_c00223{word-spacing:2.859600px;}
.fc0_c00223{color:transparent;}
.fse_c00223{font-size:20.160000px;}
.fs7_c00223{font-size:34.560000px;}
.fs4_c00223{font-size:37.440000px;}
.fs5_c00223{font-size:40.320000px;}
.fsd_c00223{font-size:43.200000px;}
.fsa_c00223{font-size:46.080000px;}
.fs6_c00223{font-size:48.960000px;}
.fs1_c00223{font-size:51.840000px;}
.fs9_c00223{font-size:54.720000px;}
.fsc_c00223{font-size:57.600000px;}
.fs3_c00223{font-size:60.480000px;}
.fs8_c00223{font-size:63.360000px;}
.fsb_c00223{font-size:66.240000px;}
.fs2_c00223{font-size:69.120000px;}
.fs10_c00223{font-size:72.000000px;}
.fs0_c00223{font-size:77.760000px;}
.fsf_c00223{font-size:103.680000px;}
.y0_c00223{bottom:0.000000px;}
.y61_c00223{bottom:111.600000px;}
.y60_c00223{bottom:113.040000px;}
.y5f_c00223{bottom:113.760000px;}
.y62_c00223{bottom:114.480000px;}
.y5e_c00223{bottom:115.920000px;}
.y5d_c00223{bottom:117.360000px;}
.y59_c00223{bottom:154.800000px;}
.y5a_c00223{bottom:155.520000px;}
.y58_c00223{bottom:157.680000px;}
.y5b_c00223{bottom:158.400000px;}
.y5c_c00223{bottom:159.120000px;}
.y57_c00223{bottom:207.360000px;}
.y56_c00223{bottom:208.080000px;}
.y55_c00223{bottom:210.960000px;}
.y51_c00223{bottom:251.280000px;}
.y54_c00223{bottom:252.720000px;}
.y52_c00223{bottom:253.440000px;}
.y53_c00223{bottom:254.160000px;}
.y50_c00223{bottom:254.880000px;}
.y4f_c00223{bottom:255.600000px;}
.y4c_c00223{bottom:294.480000px;}
.y4e_c00223{bottom:295.920000px;}
.y4b_c00223{bottom:296.640000px;}
.y4a_c00223{bottom:297.360000px;}
.y48_c00223{bottom:298.080000px;}
.y49_c00223{bottom:298.800000px;}
.y4d_c00223{bottom:299.520000px;}
.y45_c00223{bottom:337.680000px;}
.y47_c00223{bottom:338.400000px;}
.y44_c00223{bottom:339.120000px;}
.y43_c00223{bottom:340.560000px;}
.y46_c00223{bottom:341.280000px;}
.y41_c00223{bottom:380.160000px;}
.y3f_c00223{bottom:383.040000px;}
.y40_c00223{bottom:383.760000px;}
.y42_c00223{bottom:384.480000px;}
.y3d_c00223{bottom:424.080000px;}
.y3b_c00223{bottom:424.800000px;}
.y3e_c00223{bottom:426.240000px;}
.y3c_c00223{bottom:426.960000px;}
.y37_c00223{bottom:466.560000px;}
.y38_c00223{bottom:467.280000px;}
.y3a_c00223{bottom:468.000000px;}
.y35_c00223{bottom:470.160000px;}
.y36_c00223{bottom:470.880000px;}
.y39_c00223{bottom:471.600000px;}
.y34_c00223{bottom:511.200000px;}
.y33_c00223{bottom:513.360000px;}
.y32_c00223{bottom:514.080000px;}
.y31_c00223{bottom:564.480000px;}
.y30_c00223{bottom:568.080000px;}
.y2f_c00223{bottom:610.560000px;}
.y2a_c00223{bottom:650.880000px;}
.y2c_c00223{bottom:651.600000px;}
.y2d_c00223{bottom:653.760000px;}
.y2b_c00223{bottom:654.480000px;}
.y2e_c00223{bottom:655.920000px;}
.y29_c00223{bottom:694.800000px;}
.y26_c00223{bottom:696.240000px;}
.y28_c00223{bottom:696.960000px;}
.y27_c00223{bottom:697.680000px;}
.y24_c00223{bottom:737.280000px;}
.y25_c00223{bottom:740.160000px;}
.y23_c00223{bottom:740.880000px;}
.y20_c00223{bottom:791.280000px;}
.y1d_c00223{bottom:792.000000px;}
.y1f_c00223{bottom:792.720000px;}
.y22_c00223{bottom:794.160000px;}
.y21_c00223{bottom:794.880000px;}
.y1c_c00223{bottom:815.040000px;}
.y1e_c00223{bottom:816.480000px;}
.y1a_c00223{bottom:855.360000px;}
.y1b_c00223{bottom:857.520000px;}
.y19_c00223{bottom:858.240000px;}
.y18_c00223{bottom:858.960000px;}
.y17_c00223{bottom:908.640000px;}
.y14_c00223{bottom:909.360000px;}
.y13_c00223{bottom:910.080000px;}
.y16_c00223{bottom:911.520000px;}
.y15_c00223{bottom:912.240000px;}
.y12_c00223{bottom:951.120000px;}
.ye_c00223{bottom:951.840000px;}
.yd_c00223{bottom:953.280000px;}
.y11_c00223{bottom:954.000000px;}
.y10_c00223{bottom:954.720000px;}
.yf_c00223{bottom:955.440000px;}
.yb_c00223{bottom:994.320000px;}
.y8_c00223{bottom:995.040000px;}
.yc_c00223{bottom:996.480000px;}
.ya_c00223{bottom:997.920000px;}
.y9_c00223{bottom:998.640000px;}
.y7_c00223{bottom:1038.240000px;}
.y6_c00223{bottom:1039.680000px;}
.y3_c00223{bottom:1040.400000px;}
.y2_c00223{bottom:1041.120000px;}
.y4_c00223{bottom:1041.840000px;}
.y5_c00223{bottom:1042.560000px;}
.y1_c00223{bottom:1094.400000px;}
.h10_c00223{height:18.142031px;}
.h9_c00223{height:31.100625px;}
.h6_c00223{height:33.692344px;}
.h7_c00223{height:36.284062px;}
.hf_c00223{height:38.875781px;}
.hc_c00223{height:41.467500px;}
.h8_c00223{height:44.059219px;}
.h3_c00223{height:46.650937px;}
.hb_c00223{height:49.242656px;}
.he_c00223{height:51.834375px;}
.h5_c00223{height:54.426094px;}
.ha_c00223{height:57.017812px;}
.hd_c00223{height:59.609531px;}
.h4_c00223{height:62.201250px;}
.h12_c00223{height:64.792969px;}
.h2_c00223{height:69.976406px;}
.h11_c00223{height:93.301875px;}
.h0_c00223{height:1154.880000px;}
.h1_c00223{height:1155.000000px;}
.w0_c00223{width:792.000000px;}
.x0_c00223{left:0.000000px;}
.xa_c00223{left:75.600000px;}
.x15_c00223{left:77.040000px;}
.x45_c00223{left:78.480000px;}
.x51_c00223{left:79.920000px;}
.x16_c00223{left:108.000000px;}
.x55_c00223{left:109.440000px;}
.x1f_c00223{left:116.640000px;}
.x37_c00223{left:118.080000px;}
.x2a_c00223{left:119.520000px;}
.x29_c00223{left:129.600000px;}
.x4f_c00223{left:140.400000px;}
.x38_c00223{left:150.480000px;}
.xb_c00223{left:160.560000px;}
.x4a_c00223{left:162.000000px;}
.x17_c00223{left:172.800000px;}
.x2_c00223{left:182.880000px;}
.x2b_c00223{left:194.400000px;}
.x33_c00223{left:203.040000px;}
.x40_c00223{left:204.480000px;}
.x31_c00223{left:214.560000px;}
.xc_c00223{left:216.000000px;}
.x42_c00223{left:226.080000px;}
.x3_c00223{left:227.520000px;}
.x20_c00223{left:237.600000px;}
.x18_c00223{left:246.960000px;}
.x2d_c00223{left:249.120000px;}
.x46_c00223{left:257.760000px;}
.x2c_c00223{left:259.200000px;}
.x4_c00223{left:269.280000px;}
.x52_c00223{left:280.080000px;}
.x22_c00223{left:291.600000px;}
.x19_c00223{left:301.680000px;}
.xd_c00223{left:313.200000px;}
.x2f_c00223{left:314.640000px;}
.x53_c00223{left:322.560000px;}
.x2e_c00223{left:324.720000px;}
.x34_c00223{left:334.800000px;}
.xe_c00223{left:343.440000px;}
.x5_c00223{left:345.600000px;}
.x39_c00223{left:355.680000px;}
.x1a_c00223{left:367.200000px;}
.x23_c00223{left:378.000000px;}
.x47_c00223{left:388.080000px;}
.x30_c00223{left:390.240000px;}
.xf_c00223{left:399.600000px;}
.x43_c00223{left:411.120000px;}
.x24_c00223{left:414.720000px;}
.x48_c00223{left:420.480000px;}
.x35_c00223{left:432.000000px;}
.x54_c00223{left:441.360000px;}
.x25_c00223{left:442.800000px;}
.x10_c00223{left:452.880000px;}
.x26_c00223{left:454.320000px;}
.x3a_c00223{left:462.960000px;}
.x6_c00223{left:464.400000px;}
.x4c_c00223{left:473.040000px;}
.x36_c00223{left:474.480000px;}
.x27_c00223{left:475.920000px;}
.x11_c00223{left:486.000000px;}
.x50_c00223{left:495.360000px;}
.x3b_c00223{left:507.600000px;}
.x3d_c00223{left:516.960000px;}
.x1b_c00223{left:518.400000px;}
.x21_c00223{left:538.560000px;}
.x4d_c00223{left:540.000000px;}
.x3e_c00223{left:548.640000px;}
.x12_c00223{left:550.800000px;}
.x1c_c00223{left:561.600000px;}
.x7_c00223{left:572.400000px;}
.x49_c00223{left:581.760000px;}
.x28_c00223{left:583.200000px;}
.x13_c00223{left:592.560000px;}
.x3f_c00223{left:604.080000px;}
.x8_c00223{left:613.440000px;}
.x3c_c00223{left:614.880000px;}
.x4e_c00223{left:624.240000px;}
.x4b_c00223{left:635.040000px;}
.x1d_c00223{left:636.480000px;}
.x32_c00223{left:646.560000px;}
.x41_c00223{left:657.360000px;}
.x1e_c00223{left:658.800000px;}
.x44_c00223{left:667.440000px;}
.x9_c00223{left:678.960000px;}
.x14_c00223{left:689.760000px;}
.x1_c00223{left:704.160000px;}
@media print{
.v1_c00223{vertical-align:-10.240000pt;}
.v0_c00223{vertical-align:0.000000pt;}
.ls0_c00223{letter-spacing:0.000000pt;}
.ws1_c00223{word-spacing:0.000000pt;}
.ws0_c00223{word-spacing:2.541867pt;}
.fse_c00223{font-size:17.920000pt;}
.fs7_c00223{font-size:30.720000pt;}
.fs4_c00223{font-size:33.280000pt;}
.fs5_c00223{font-size:35.840000pt;}
.fsd_c00223{font-size:38.400000pt;}
.fsa_c00223{font-size:40.960000pt;}
.fs6_c00223{font-size:43.520000pt;}
.fs1_c00223{font-size:46.080000pt;}
.fs9_c00223{font-size:48.640000pt;}
.fsc_c00223{font-size:51.200000pt;}
.fs3_c00223{font-size:53.760000pt;}
.fs8_c00223{font-size:56.320000pt;}
.fsb_c00223{font-size:58.880000pt;}
.fs2_c00223{font-size:61.440000pt;}
.fs10_c00223{font-size:64.000000pt;}
.fs0_c00223{font-size:69.120000pt;}
.fsf_c00223{font-size:92.160000pt;}
.y0_c00223{bottom:0.000000pt;}
.y61_c00223{bottom:99.200000pt;}
.y60_c00223{bottom:100.480000pt;}
.y5f_c00223{bottom:101.120000pt;}
.y62_c00223{bottom:101.760000pt;}
.y5e_c00223{bottom:103.040000pt;}
.y5d_c00223{bottom:104.320000pt;}
.y59_c00223{bottom:137.600000pt;}
.y5a_c00223{bottom:138.240000pt;}
.y58_c00223{bottom:140.160000pt;}
.y5b_c00223{bottom:140.800000pt;}
.y5c_c00223{bottom:141.440000pt;}
.y57_c00223{bottom:184.320000pt;}
.y56_c00223{bottom:184.960000pt;}
.y55_c00223{bottom:187.520000pt;}
.y51_c00223{bottom:223.360000pt;}
.y54_c00223{bottom:224.640000pt;}
.y52_c00223{bottom:225.280000pt;}
.y53_c00223{bottom:225.920000pt;}
.y50_c00223{bottom:226.560000pt;}
.y4f_c00223{bottom:227.200000pt;}
.y4c_c00223{bottom:261.760000pt;}
.y4e_c00223{bottom:263.040000pt;}
.y4b_c00223{bottom:263.680000pt;}
.y4a_c00223{bottom:264.320000pt;}
.y48_c00223{bottom:264.960000pt;}
.y49_c00223{bottom:265.600000pt;}
.y4d_c00223{bottom:266.240000pt;}
.y45_c00223{bottom:300.160000pt;}
.y47_c00223{bottom:300.800000pt;}
.y44_c00223{bottom:301.440000pt;}
.y43_c00223{bottom:302.720000pt;}
.y46_c00223{bottom:303.360000pt;}
.y41_c00223{bottom:337.920000pt;}
.y3f_c00223{bottom:340.480000pt;}
.y40_c00223{bottom:341.120000pt;}
.y42_c00223{bottom:341.760000pt;}
.y3d_c00223{bottom:376.960000pt;}
.y3b_c00223{bottom:377.600000pt;}
.y3e_c00223{bottom:378.880000pt;}
.y3c_c00223{bottom:379.520000pt;}
.y37_c00223{bottom:414.720000pt;}
.y38_c00223{bottom:415.360000pt;}
.y3a_c00223{bottom:416.000000pt;}
.y35_c00223{bottom:417.920000pt;}
.y36_c00223{bottom:418.560000pt;}
.y39_c00223{bottom:419.200000pt;}
.y34_c00223{bottom:454.400000pt;}
.y33_c00223{bottom:456.320000pt;}
.y32_c00223{bottom:456.960000pt;}
.y31_c00223{bottom:501.760000pt;}
.y30_c00223{bottom:504.960000pt;}
.y2f_c00223{bottom:542.720000pt;}
.y2a_c00223{bottom:578.560000pt;}
.y2c_c00223{bottom:579.200000pt;}
.y2d_c00223{bottom:581.120000pt;}
.y2b_c00223{bottom:581.760000pt;}
.y2e_c00223{bottom:583.040000pt;}
.y29_c00223{bottom:617.600000pt;}
.y26_c00223{bottom:618.880000pt;}
.y28_c00223{bottom:619.520000pt;}
.y27_c00223{bottom:620.160000pt;}
.y24_c00223{bottom:655.360000pt;}
.y25_c00223{bottom:657.920000pt;}
.y23_c00223{bottom:658.560000pt;}
.y20_c00223{bottom:703.360000pt;}
.y1d_c00223{bottom:704.000000pt;}
.y1f_c00223{bottom:704.640000pt;}
.y22_c00223{bottom:705.920000pt;}
.y21_c00223{bottom:706.560000pt;}
.y1c_c00223{bottom:724.480000pt;}
.y1e_c00223{bottom:725.760000pt;}
.y1a_c00223{bottom:760.320000pt;}
.y1b_c00223{bottom:762.240000pt;}
.y19_c00223{bottom:762.880000pt;}
.y18_c00223{bottom:763.520000pt;}
.y17_c00223{bottom:807.680000pt;}
.y14_c00223{bottom:808.320000pt;}
.y13_c00223{bottom:808.960000pt;}
.y16_c00223{bottom:810.240000pt;}
.y15_c00223{bottom:810.880000pt;}
.y12_c00223{bottom:845.440000pt;}
.ye_c00223{bottom:846.080000pt;}
.yd_c00223{bottom:847.360000pt;}
.y11_c00223{bottom:848.000000pt;}
.y10_c00223{bottom:848.640000pt;}
.yf_c00223{bottom:849.280000pt;}
.yb_c00223{bottom:883.840000pt;}
.y8_c00223{bottom:884.480000pt;}
.yc_c00223{bottom:885.760000pt;}
.ya_c00223{bottom:887.040000pt;}
.y9_c00223{bottom:887.680000pt;}
.y7_c00223{bottom:922.880000pt;}
.y6_c00223{bottom:924.160000pt;}
.y3_c00223{bottom:924.800000pt;}
.y2_c00223{bottom:925.440000pt;}
.y4_c00223{bottom:926.080000pt;}
.y5_c00223{bottom:926.720000pt;}
.y1_c00223{bottom:972.800000pt;}
.h10_c00223{height:16.126250pt;}
.h9_c00223{height:27.645000pt;}
.h6_c00223{height:29.948750pt;}
.h7_c00223{height:32.252500pt;}
.hf_c00223{height:34.556250pt;}
.hc_c00223{height:36.860000pt;}
.h8_c00223{height:39.163750pt;}
.h3_c00223{height:41.467500pt;}
.hb_c00223{height:43.771250pt;}
.he_c00223{height:46.075000pt;}
.h5_c00223{height:48.378750pt;}
.ha_c00223{height:50.682500pt;}
.hd_c00223{height:52.986250pt;}
.h4_c00223{height:55.290000pt;}
.h12_c00223{height:57.593750pt;}
.h2_c00223{height:62.201250pt;}
.h11_c00223{height:82.935000pt;}
.h0_c00223{height:1026.560000pt;}
.h1_c00223{height:1026.666667pt;}
.w0_c00223{width:704.000000pt;}
.x0_c00223{left:0.000000pt;}
.xa_c00223{left:67.200000pt;}
.x15_c00223{left:68.480000pt;}
.x45_c00223{left:69.760000pt;}
.x51_c00223{left:71.040000pt;}
.x16_c00223{left:96.000000pt;}
.x55_c00223{left:97.280000pt;}
.x1f_c00223{left:103.680000pt;}
.x37_c00223{left:104.960000pt;}
.x2a_c00223{left:106.240000pt;}
.x29_c00223{left:115.200000pt;}
.x4f_c00223{left:124.800000pt;}
.x38_c00223{left:133.760000pt;}
.xb_c00223{left:142.720000pt;}
.x4a_c00223{left:144.000000pt;}
.x17_c00223{left:153.600000pt;}
.x2_c00223{left:162.560000pt;}
.x2b_c00223{left:172.800000pt;}
.x33_c00223{left:180.480000pt;}
.x40_c00223{left:181.760000pt;}
.x31_c00223{left:190.720000pt;}
.xc_c00223{left:192.000000pt;}
.x42_c00223{left:200.960000pt;}
.x3_c00223{left:202.240000pt;}
.x20_c00223{left:211.200000pt;}
.x18_c00223{left:219.520000pt;}
.x2d_c00223{left:221.440000pt;}
.x46_c00223{left:229.120000pt;}
.x2c_c00223{left:230.400000pt;}
.x4_c00223{left:239.360000pt;}
.x52_c00223{left:248.960000pt;}
.x22_c00223{left:259.200000pt;}
.x19_c00223{left:268.160000pt;}
.xd_c00223{left:278.400000pt;}
.x2f_c00223{left:279.680000pt;}
.x53_c00223{left:286.720000pt;}
.x2e_c00223{left:288.640000pt;}
.x34_c00223{left:297.600000pt;}
.xe_c00223{left:305.280000pt;}
.x5_c00223{left:307.200000pt;}
.x39_c00223{left:316.160000pt;}
.x1a_c00223{left:326.400000pt;}
.x23_c00223{left:336.000000pt;}
.x47_c00223{left:344.960000pt;}
.x30_c00223{left:346.880000pt;}
.xf_c00223{left:355.200000pt;}
.x43_c00223{left:365.440000pt;}
.x24_c00223{left:368.640000pt;}
.x48_c00223{left:373.760000pt;}
.x35_c00223{left:384.000000pt;}
.x54_c00223{left:392.320000pt;}
.x25_c00223{left:393.600000pt;}
.x10_c00223{left:402.560000pt;}
.x26_c00223{left:403.840000pt;}
.x3a_c00223{left:411.520000pt;}
.x6_c00223{left:412.800000pt;}
.x4c_c00223{left:420.480000pt;}
.x36_c00223{left:421.760000pt;}
.x27_c00223{left:423.040000pt;}
.x11_c00223{left:432.000000pt;}
.x50_c00223{left:440.320000pt;}
.x3b_c00223{left:451.200000pt;}
.x3d_c00223{left:459.520000pt;}
.x1b_c00223{left:460.800000pt;}
.x21_c00223{left:478.720000pt;}
.x4d_c00223{left:480.000000pt;}
.x3e_c00223{left:487.680000pt;}
.x12_c00223{left:489.600000pt;}
.x1c_c00223{left:499.200000pt;}
.x7_c00223{left:508.800000pt;}
.x49_c00223{left:517.120000pt;}
.x28_c00223{left:518.400000pt;}
.x13_c00223{left:526.720000pt;}
.x3f_c00223{left:536.960000pt;}
.x8_c00223{left:545.280000pt;}
.x3c_c00223{left:546.560000pt;}
.x4e_c00223{left:554.880000pt;}
.x4b_c00223{left:564.480000pt;}
.x1d_c00223{left:565.760000pt;}
.x32_c00223{left:574.720000pt;}
.x41_c00223{left:584.320000pt;}
.x1e_c00223{left:585.600000pt;}
.x44_c00223{left:593.280000pt;}
.x9_c00223{left:603.520000pt;}
.x14_c00223{left:613.120000pt;}
.x1_c00223{left:625.920000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4e192532012f71e5f818902b.woff2')format("woff");}.ff1_c00224{font-family:ff1_c00224;line-height:1.109863;font-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_c00224{transform:matrix(0.170775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170775,0.000000,0.000000,0.250000,0,0);}
.m3f_c00224{transform:matrix(0.208900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208900,0.000000,0.000000,0.250000,0,0);}
.m1f_c00224{transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);}
.m35_c00224{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m0_c00224{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.md_c00224{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);}
.m55_c00224{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m7_c00224{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);}
.m58_c00224{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00224{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00224{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);}
.m33_c00224{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00224{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m36_c00224{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m29_c00224{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m27_c00224{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m41_c00224{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00224{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00224{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00224{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m15_c00224{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m50_c00224{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m37_c00224{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00224{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00224{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);}
.m62_c00224{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m21_c00224{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m54_c00224{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m42_c00224{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.mf_c00224{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m10_c00224{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);}
.m4e_c00224{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);}
.m8_c00224{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1_c00224{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.mb_c00224{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);}
.m34_c00224{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00224{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00224{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);}
.m46_c00224{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m12_c00224{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);}
.m26_c00224{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m16_c00224{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m13_c00224{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);}
.m61_c00224{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);}
.m3d_c00224{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);}
.m20_c00224{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.me_c00224{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m4_c00224{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);}
.m3b_c00224{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m5_c00224{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);}
.m39_c00224{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m18_c00224{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);}
.m23_c00224{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);}
.m5f_c00224{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00224{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m47_c00224{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00224{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00224{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m44_c00224{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m51_c00224{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);}
.m40_c00224{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00224{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);}
.m30_c00224{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m60_c00224{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00224{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00224{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);}
.m48_c00224{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m2_c00224{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00224{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);}
.m3_c00224{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m49_c00224{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00224{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m57_c00224{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m25_c00224{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m22_c00224{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);}
.m59_c00224{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);}
.ma_c00224{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00224{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00224{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m43_c00224{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);}
.m24_c00224{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m32_c00224{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00224{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m11_c00224{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m14_c00224{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);}
.m38_c00224{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m53_c00224{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m6_c00224{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m17_c00224{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);}
.m5d_c00224{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m19_c00224{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);}
.m56_c00224{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m63_c00224{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m9_c00224{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m45_c00224{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);}
.m31_c00224{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.mc_c00224{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00224{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);}
.m4c_c00224{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);}
.m52_c00224{transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);}
.v0_c00224{vertical-align:0.000000px;}
.ls0_c00224{letter-spacing:0.000000px;}
.sc__c00224{text-shadow:none;}
.sc0_c00224{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00224{-webkit-text-stroke:0px transparent;}
.sc0_c00224{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00224{word-spacing:0.000000px;}
.fc0_c00224{color:transparent;}
.fsd_c00224{font-size:34.560000px;}
.fs6_c00224{font-size:37.440000px;}
.fs1_c00224{font-size:40.320000px;}
.fs2_c00224{font-size:43.200000px;}
.fsc_c00224{font-size:46.080000px;}
.fs5_c00224{font-size:48.960000px;}
.fs3_c00224{font-size:51.840000px;}
.fsa_c00224{font-size:54.720000px;}
.fsb_c00224{font-size:57.600000px;}
.fs8_c00224{font-size:60.480000px;}
.fs9_c00224{font-size:63.360000px;}
.fs7_c00224{font-size:66.240000px;}
.fs4_c00224{font-size:69.120000px;}
.fsf_c00224{font-size:72.000000px;}
.fs0_c00224{font-size:77.760000px;}
.fse_c00224{font-size:100.800000px;}
.y0_c00224{bottom:0.000000px;}
.y6e_c00224{bottom:71.280000px;}
.y6f_c00224{bottom:72.720000px;}
.y71_c00224{bottom:74.160000px;}
.y6d_c00224{bottom:74.880000px;}
.y70_c00224{bottom:75.600000px;}
.y6c_c00224{bottom:77.760000px;}
.y68_c00224{bottom:115.200000px;}
.y69_c00224{bottom:116.640000px;}
.y67_c00224{bottom:117.360000px;}
.y66_c00224{bottom:118.800000px;}
.y6a_c00224{bottom:119.520000px;}
.y6b_c00224{bottom:120.240000px;}
.y64_c00224{bottom:160.560000px;}
.y61_c00224{bottom:162.720000px;}
.y65_c00224{bottom:163.440000px;}
.y63_c00224{bottom:164.160000px;}
.y62_c00224{bottom:164.880000px;}
.y60_c00224{bottom:166.320000px;}
.y5b_c00224{bottom:204.480000px;}
.y5d_c00224{bottom:205.920000px;}
.y5e_c00224{bottom:206.640000px;}
.y5c_c00224{bottom:207.360000px;}
.y5f_c00224{bottom:208.800000px;}
.y57_c00224{bottom:246.960000px;}
.y56_c00224{bottom:247.680000px;}
.y5a_c00224{bottom:248.400000px;}
.y58_c00224{bottom:249.840000px;}
.y59_c00224{bottom:250.560000px;}
.y52_c00224{bottom:290.880000px;}
.y53_c00224{bottom:291.600000px;}
.y54_c00224{bottom:292.320000px;}
.y50_c00224{bottom:293.040000px;}
.y51_c00224{bottom:294.480000px;}
.y55_c00224{bottom:295.200000px;}
.y4d_c00224{bottom:334.080000px;}
.y4b_c00224{bottom:334.800000px;}
.y4c_c00224{bottom:336.960000px;}
.y4a_c00224{bottom:337.680000px;}
.y4e_c00224{bottom:338.400000px;}
.y4f_c00224{bottom:339.120000px;}
.y46_c00224{bottom:376.560000px;}
.y48_c00224{bottom:378.000000px;}
.y49_c00224{bottom:378.720000px;}
.y45_c00224{bottom:379.440000px;}
.y44_c00224{bottom:380.160000px;}
.y47_c00224{bottom:380.880000px;}
.y43_c00224{bottom:382.320000px;}
.y41_c00224{bottom:421.920000px;}
.y40_c00224{bottom:422.640000px;}
.y3f_c00224{bottom:423.360000px;}
.y42_c00224{bottom:424.080000px;}
.y3e_c00224{bottom:424.800000px;}
.y3b_c00224{bottom:463.680000px;}
.y3c_c00224{bottom:464.400000px;}
.y3d_c00224{bottom:465.120000px;}
.y3a_c00224{bottom:466.560000px;}
.y39_c00224{bottom:467.280000px;}
.y38_c00224{bottom:507.600000px;}
.y36_c00224{bottom:508.320000px;}
.y35_c00224{bottom:509.760000px;}
.y37_c00224{bottom:510.480000px;}
.y33_c00224{bottom:561.600000px;}
.y34_c00224{bottom:563.760000px;}
.y32_c00224{bottom:564.480000px;}
.y31_c00224{bottom:604.080000px;}
.y2f_c00224{bottom:606.240000px;}
.y30_c00224{bottom:606.960000px;}
.y2e_c00224{bottom:607.680000px;}
.y2c_c00224{bottom:647.280000px;}
.y2d_c00224{bottom:648.000000px;}
.y2b_c00224{bottom:650.160000px;}
.y28_c00224{bottom:702.000000px;}
.y2a_c00224{bottom:702.720000px;}
.y27_c00224{bottom:704.160000px;}
.y26_c00224{bottom:725.760000px;}
.y29_c00224{bottom:726.480000px;}
.y25_c00224{bottom:768.240000px;}
.y24_c00224{bottom:768.960000px;}
.y1f_c00224{bottom:810.000000px;}
.y21_c00224{bottom:810.720000px;}
.y22_c00224{bottom:811.440000px;}
.y1e_c00224{bottom:812.160000px;}
.y1d_c00224{bottom:833.760000px;}
.y23_c00224{bottom:834.480000px;}
.y20_c00224{bottom:835.200000px;}
.y1c_c00224{bottom:874.080000px;}
.y19_c00224{bottom:875.520000px;}
.y1a_c00224{bottom:876.960000px;}
.y1b_c00224{bottom:877.680000px;}
.y12_c00224{bottom:915.840000px;}
.y18_c00224{bottom:917.280000px;}
.y17_c00224{bottom:918.000000px;}
.y16_c00224{bottom:918.720000px;}
.y13_c00224{bottom:919.440000px;}
.y14_c00224{bottom:920.160000px;}
.y15_c00224{bottom:920.880000px;}
.yd_c00224{bottom:961.200000px;}
.yf_c00224{bottom:961.920000px;}
.ye_c00224{bottom:962.640000px;}
.y11_c00224{bottom:963.360000px;}
.y10_c00224{bottom:964.080000px;}
.yc_c00224{bottom:1002.960000px;}
.y8_c00224{bottom:1004.400000px;}
.ya_c00224{bottom:1005.120000px;}
.y9_c00224{bottom:1006.560000px;}
.yb_c00224{bottom:1007.280000px;}
.y2_c00224{bottom:1047.600000px;}
.y3_c00224{bottom:1048.320000px;}
.y4_c00224{bottom:1049.040000px;}
.y5_c00224{bottom:1049.760000px;}
.y7_c00224{bottom:1050.480000px;}
.y6_c00224{bottom:1051.200000px;}
.y1_c00224{bottom:1114.560000px;}
.hf_c00224{height:31.100625px;}
.h8_c00224{height:33.692344px;}
.h3_c00224{height:36.284062px;}
.h4_c00224{height:38.875781px;}
.he_c00224{height:41.467500px;}
.h7_c00224{height:44.059219px;}
.h5_c00224{height:46.650937px;}
.hc_c00224{height:49.242656px;}
.hd_c00224{height:51.834375px;}
.ha_c00224{height:54.426094px;}
.hb_c00224{height:57.017812px;}
.h9_c00224{height:59.609531px;}
.h6_c00224{height:62.201250px;}
.h11_c00224{height:64.792969px;}
.h2_c00224{height:69.976406px;}
.h10_c00224{height:90.710156px;}
.h0_c00224{height:1154.880000px;}
.h1_c00224{height:1155.000000px;}
.w1_c00224{width:790.500000px;}
.w0_c00224{width:790.560000px;}
.x0_c00224{left:0.000000px;}
.xe_c00224{left:74.160000px;}
.x2_c00224{left:75.600000px;}
.x16_c00224{left:77.040000px;}
.x49_c00224{left:78.480000px;}
.x17_c00224{left:97.200000px;}
.x3_c00224{left:107.280000px;}
.x28_c00224{left:108.720000px;}
.x1f_c00224{left:118.080000px;}
.x18_c00224{left:128.160000px;}
.x27_c00224{left:129.600000px;}
.x4_c00224{left:138.960000px;}
.x61_c00224{left:146.880000px;}
.x20_c00224{left:149.040000px;}
.xf_c00224{left:159.840000px;}
.x42_c00224{left:162.000000px;}
.x54_c00224{left:172.080000px;}
.x58_c00224{left:179.280000px;}
.x3c_c00224{left:180.720000px;}
.x52_c00224{left:182.160000px;}
.x29_c00224{left:183.600000px;}
.x5_c00224{left:192.960000px;}
.x2e_c00224{left:194.400000px;}
.x62_c00224{left:200.160000px;}
.x10_c00224{left:203.040000px;}
.x4f_c00224{left:204.480000px;}
.x4a_c00224{left:213.840000px;}
.x33_c00224{left:215.280000px;}
.x59_c00224{left:222.480000px;}
.x31_c00224{left:225.360000px;}
.x55_c00224{left:236.160000px;}
.x2d_c00224{left:237.600000px;}
.x19_c00224{left:247.680000px;}
.x25_c00224{left:257.760000px;}
.x2a_c00224{left:259.200000px;}
.x6_c00224{left:267.840000px;}
.x11_c00224{left:269.280000px;}
.x5a_c00224{left:276.480000px;}
.x1a_c00224{left:279.360000px;}
.x43_c00224{left:280.800000px;}
.x36_c00224{left:290.160000px;}
.x53_c00224{left:291.600000px;}
.x63_c00224{left:298.800000px;}
.x3d_c00224{left:312.480000px;}
.x2f_c00224{left:313.920000px;}
.x1b_c00224{left:324.000000px;}
.x5b_c00224{left:331.200000px;}
.x21_c00224{left:333.360000px;}
.x50_c00224{left:334.800000px;}
.x34_c00224{left:344.160000px;}
.x26_c00224{left:345.600000px;}
.x35_c00224{left:356.400000px;}
.x4b_c00224{left:358.560000px;}
.x12_c00224{left:365.760000px;}
.x7_c00224{left:367.200000px;}
.x22_c00224{left:376.560000px;}
.x40_c00224{left:378.000000px;}
.x64_c00224{left:385.920000px;}
.x2b_c00224{left:388.800000px;}
.x8_c00224{left:399.600000px;}
.x13_c00224{left:410.400000px;}
.x37_c00224{left:421.200000px;}
.x5c_c00224{left:429.840000px;}
.x1c_c00224{left:432.000000px;}
.x3e_c00224{left:441.360000px;}
.x30_c00224{left:453.600000px;}
.x56_c00224{left:463.680000px;}
.x2c_c00224{left:465.120000px;}
.x32_c00224{left:484.560000px;}
.x23_c00224{left:486.000000px;}
.x65_c00224{left:492.480000px;}
.x57_c00224{left:496.800000px;}
.x4c_c00224{left:507.600000px;}
.x38_c00224{left:516.960000px;}
.x9_c00224{left:518.400000px;}
.x4d_c00224{left:527.040000px;}
.x41_c00224{left:528.480000px;}
.x44_c00224{left:537.840000px;}
.x39_c00224{left:539.280000px;}
.x5d_c00224{left:546.480000px;}
.xa_c00224{left:550.080000px;}
.x14_c00224{left:560.160000px;}
.x1d_c00224{left:561.600000px;}
.x3a_c00224{left:570.240000px;}
.xb_c00224{left:581.040000px;}
.x5e_c00224{left:588.960000px;}
.x46_c00224{left:591.840000px;}
.x1e_c00224{left:602.640000px;}
.x45_c00224{left:604.080000px;}
.x24_c00224{left:614.160000px;}
.x5f_c00224{left:622.080000px;}
.x15_c00224{left:624.960000px;}
.x47_c00224{left:635.040000px;}
.xc_c00224{left:645.840000px;}
.x60_c00224{left:653.040000px;}
.x51_c00224{left:655.200000px;}
.x66_c00224{left:664.560000px;}
.x4e_c00224{left:666.000000px;}
.x3b_c00224{left:667.440000px;}
.xd_c00224{left:677.520000px;}
.x3f_c00224{left:688.320000px;}
.x48_c00224{left:699.120000px;}
.x1_c00224{left:712.800000px;}
@media print{
.v0_c00224{vertical-align:0.000000pt;}
.ls0_c00224{letter-spacing:0.000000pt;}
.ws0_c00224{word-spacing:0.000000pt;}
.fsd_c00224{font-size:30.720000pt;}
.fs6_c00224{font-size:33.280000pt;}
.fs1_c00224{font-size:35.840000pt;}
.fs2_c00224{font-size:38.400000pt;}
.fsc_c00224{font-size:40.960000pt;}
.fs5_c00224{font-size:43.520000pt;}
.fs3_c00224{font-size:46.080000pt;}
.fsa_c00224{font-size:48.640000pt;}
.fsb_c00224{font-size:51.200000pt;}
.fs8_c00224{font-size:53.760000pt;}
.fs9_c00224{font-size:56.320000pt;}
.fs7_c00224{font-size:58.880000pt;}
.fs4_c00224{font-size:61.440000pt;}
.fsf_c00224{font-size:64.000000pt;}
.fs0_c00224{font-size:69.120000pt;}
.fse_c00224{font-size:89.600000pt;}
.y0_c00224{bottom:0.000000pt;}
.y6e_c00224{bottom:63.360000pt;}
.y6f_c00224{bottom:64.640000pt;}
.y71_c00224{bottom:65.920000pt;}
.y6d_c00224{bottom:66.560000pt;}
.y70_c00224{bottom:67.200000pt;}
.y6c_c00224{bottom:69.120000pt;}
.y68_c00224{bottom:102.400000pt;}
.y69_c00224{bottom:103.680000pt;}
.y67_c00224{bottom:104.320000pt;}
.y66_c00224{bottom:105.600000pt;}
.y6a_c00224{bottom:106.240000pt;}
.y6b_c00224{bottom:106.880000pt;}
.y64_c00224{bottom:142.720000pt;}
.y61_c00224{bottom:144.640000pt;}
.y65_c00224{bottom:145.280000pt;}
.y63_c00224{bottom:145.920000pt;}
.y62_c00224{bottom:146.560000pt;}
.y60_c00224{bottom:147.840000pt;}
.y5b_c00224{bottom:181.760000pt;}
.y5d_c00224{bottom:183.040000pt;}
.y5e_c00224{bottom:183.680000pt;}
.y5c_c00224{bottom:184.320000pt;}
.y5f_c00224{bottom:185.600000pt;}
.y57_c00224{bottom:219.520000pt;}
.y56_c00224{bottom:220.160000pt;}
.y5a_c00224{bottom:220.800000pt;}
.y58_c00224{bottom:222.080000pt;}
.y59_c00224{bottom:222.720000pt;}
.y52_c00224{bottom:258.560000pt;}
.y53_c00224{bottom:259.200000pt;}
.y54_c00224{bottom:259.840000pt;}
.y50_c00224{bottom:260.480000pt;}
.y51_c00224{bottom:261.760000pt;}
.y55_c00224{bottom:262.400000pt;}
.y4d_c00224{bottom:296.960000pt;}
.y4b_c00224{bottom:297.600000pt;}
.y4c_c00224{bottom:299.520000pt;}
.y4a_c00224{bottom:300.160000pt;}
.y4e_c00224{bottom:300.800000pt;}
.y4f_c00224{bottom:301.440000pt;}
.y46_c00224{bottom:334.720000pt;}
.y48_c00224{bottom:336.000000pt;}
.y49_c00224{bottom:336.640000pt;}
.y45_c00224{bottom:337.280000pt;}
.y44_c00224{bottom:337.920000pt;}
.y47_c00224{bottom:338.560000pt;}
.y43_c00224{bottom:339.840000pt;}
.y41_c00224{bottom:375.040000pt;}
.y40_c00224{bottom:375.680000pt;}
.y3f_c00224{bottom:376.320000pt;}
.y42_c00224{bottom:376.960000pt;}
.y3e_c00224{bottom:377.600000pt;}
.y3b_c00224{bottom:412.160000pt;}
.y3c_c00224{bottom:412.800000pt;}
.y3d_c00224{bottom:413.440000pt;}
.y3a_c00224{bottom:414.720000pt;}
.y39_c00224{bottom:415.360000pt;}
.y38_c00224{bottom:451.200000pt;}
.y36_c00224{bottom:451.840000pt;}
.y35_c00224{bottom:453.120000pt;}
.y37_c00224{bottom:453.760000pt;}
.y33_c00224{bottom:499.200000pt;}
.y34_c00224{bottom:501.120000pt;}
.y32_c00224{bottom:501.760000pt;}
.y31_c00224{bottom:536.960000pt;}
.y2f_c00224{bottom:538.880000pt;}
.y30_c00224{bottom:539.520000pt;}
.y2e_c00224{bottom:540.160000pt;}
.y2c_c00224{bottom:575.360000pt;}
.y2d_c00224{bottom:576.000000pt;}
.y2b_c00224{bottom:577.920000pt;}
.y28_c00224{bottom:624.000000pt;}
.y2a_c00224{bottom:624.640000pt;}
.y27_c00224{bottom:625.920000pt;}
.y26_c00224{bottom:645.120000pt;}
.y29_c00224{bottom:645.760000pt;}
.y25_c00224{bottom:682.880000pt;}
.y24_c00224{bottom:683.520000pt;}
.y1f_c00224{bottom:720.000000pt;}
.y21_c00224{bottom:720.640000pt;}
.y22_c00224{bottom:721.280000pt;}
.y1e_c00224{bottom:721.920000pt;}
.y1d_c00224{bottom:741.120000pt;}
.y23_c00224{bottom:741.760000pt;}
.y20_c00224{bottom:742.400000pt;}
.y1c_c00224{bottom:776.960000pt;}
.y19_c00224{bottom:778.240000pt;}
.y1a_c00224{bottom:779.520000pt;}
.y1b_c00224{bottom:780.160000pt;}
.y12_c00224{bottom:814.080000pt;}
.y18_c00224{bottom:815.360000pt;}
.y17_c00224{bottom:816.000000pt;}
.y16_c00224{bottom:816.640000pt;}
.y13_c00224{bottom:817.280000pt;}
.y14_c00224{bottom:817.920000pt;}
.y15_c00224{bottom:818.560000pt;}
.yd_c00224{bottom:854.400000pt;}
.yf_c00224{bottom:855.040000pt;}
.ye_c00224{bottom:855.680000pt;}
.y11_c00224{bottom:856.320000pt;}
.y10_c00224{bottom:856.960000pt;}
.yc_c00224{bottom:891.520000pt;}
.y8_c00224{bottom:892.800000pt;}
.ya_c00224{bottom:893.440000pt;}
.y9_c00224{bottom:894.720000pt;}
.yb_c00224{bottom:895.360000pt;}
.y2_c00224{bottom:931.200000pt;}
.y3_c00224{bottom:931.840000pt;}
.y4_c00224{bottom:932.480000pt;}
.y5_c00224{bottom:933.120000pt;}
.y7_c00224{bottom:933.760000pt;}
.y6_c00224{bottom:934.400000pt;}
.y1_c00224{bottom:990.720000pt;}
.hf_c00224{height:27.645000pt;}
.h8_c00224{height:29.948750pt;}
.h3_c00224{height:32.252500pt;}
.h4_c00224{height:34.556250pt;}
.he_c00224{height:36.860000pt;}
.h7_c00224{height:39.163750pt;}
.h5_c00224{height:41.467500pt;}
.hc_c00224{height:43.771250pt;}
.hd_c00224{height:46.075000pt;}
.ha_c00224{height:48.378750pt;}
.hb_c00224{height:50.682500pt;}
.h9_c00224{height:52.986250pt;}
.h6_c00224{height:55.290000pt;}
.h11_c00224{height:57.593750pt;}
.h2_c00224{height:62.201250pt;}
.h10_c00224{height:80.631250pt;}
.h0_c00224{height:1026.560000pt;}
.h1_c00224{height:1026.666667pt;}
.w1_c00224{width:702.666667pt;}
.w0_c00224{width:702.720000pt;}
.x0_c00224{left:0.000000pt;}
.xe_c00224{left:65.920000pt;}
.x2_c00224{left:67.200000pt;}
.x16_c00224{left:68.480000pt;}
.x49_c00224{left:69.760000pt;}
.x17_c00224{left:86.400000pt;}
.x3_c00224{left:95.360000pt;}
.x28_c00224{left:96.640000pt;}
.x1f_c00224{left:104.960000pt;}
.x18_c00224{left:113.920000pt;}
.x27_c00224{left:115.200000pt;}
.x4_c00224{left:123.520000pt;}
.x61_c00224{left:130.560000pt;}
.x20_c00224{left:132.480000pt;}
.xf_c00224{left:142.080000pt;}
.x42_c00224{left:144.000000pt;}
.x54_c00224{left:152.960000pt;}
.x58_c00224{left:159.360000pt;}
.x3c_c00224{left:160.640000pt;}
.x52_c00224{left:161.920000pt;}
.x29_c00224{left:163.200000pt;}
.x5_c00224{left:171.520000pt;}
.x2e_c00224{left:172.800000pt;}
.x62_c00224{left:177.920000pt;}
.x10_c00224{left:180.480000pt;}
.x4f_c00224{left:181.760000pt;}
.x4a_c00224{left:190.080000pt;}
.x33_c00224{left:191.360000pt;}
.x59_c00224{left:197.760000pt;}
.x31_c00224{left:200.320000pt;}
.x55_c00224{left:209.920000pt;}
.x2d_c00224{left:211.200000pt;}
.x19_c00224{left:220.160000pt;}
.x25_c00224{left:229.120000pt;}
.x2a_c00224{left:230.400000pt;}
.x6_c00224{left:238.080000pt;}
.x11_c00224{left:239.360000pt;}
.x5a_c00224{left:245.760000pt;}
.x1a_c00224{left:248.320000pt;}
.x43_c00224{left:249.600000pt;}
.x36_c00224{left:257.920000pt;}
.x53_c00224{left:259.200000pt;}
.x63_c00224{left:265.600000pt;}
.x3d_c00224{left:277.760000pt;}
.x2f_c00224{left:279.040000pt;}
.x1b_c00224{left:288.000000pt;}
.x5b_c00224{left:294.400000pt;}
.x21_c00224{left:296.320000pt;}
.x50_c00224{left:297.600000pt;}
.x34_c00224{left:305.920000pt;}
.x26_c00224{left:307.200000pt;}
.x35_c00224{left:316.800000pt;}
.x4b_c00224{left:318.720000pt;}
.x12_c00224{left:325.120000pt;}
.x7_c00224{left:326.400000pt;}
.x22_c00224{left:334.720000pt;}
.x40_c00224{left:336.000000pt;}
.x64_c00224{left:343.040000pt;}
.x2b_c00224{left:345.600000pt;}
.x8_c00224{left:355.200000pt;}
.x13_c00224{left:364.800000pt;}
.x37_c00224{left:374.400000pt;}
.x5c_c00224{left:382.080000pt;}
.x1c_c00224{left:384.000000pt;}
.x3e_c00224{left:392.320000pt;}
.x30_c00224{left:403.200000pt;}
.x56_c00224{left:412.160000pt;}
.x2c_c00224{left:413.440000pt;}
.x32_c00224{left:430.720000pt;}
.x23_c00224{left:432.000000pt;}
.x65_c00224{left:437.760000pt;}
.x57_c00224{left:441.600000pt;}
.x4c_c00224{left:451.200000pt;}
.x38_c00224{left:459.520000pt;}
.x9_c00224{left:460.800000pt;}
.x4d_c00224{left:468.480000pt;}
.x41_c00224{left:469.760000pt;}
.x44_c00224{left:478.080000pt;}
.x39_c00224{left:479.360000pt;}
.x5d_c00224{left:485.760000pt;}
.xa_c00224{left:488.960000pt;}
.x14_c00224{left:497.920000pt;}
.x1d_c00224{left:499.200000pt;}
.x3a_c00224{left:506.880000pt;}
.xb_c00224{left:516.480000pt;}
.x5e_c00224{left:523.520000pt;}
.x46_c00224{left:526.080000pt;}
.x1e_c00224{left:535.680000pt;}
.x45_c00224{left:536.960000pt;}
.x24_c00224{left:545.920000pt;}
.x5f_c00224{left:552.960000pt;}
.x15_c00224{left:555.520000pt;}
.x47_c00224{left:564.480000pt;}
.xc_c00224{left:574.080000pt;}
.x60_c00224{left:580.480000pt;}
.x51_c00224{left:582.400000pt;}
.x66_c00224{left:590.720000pt;}
.x4e_c00224{left:592.000000pt;}
.x3b_c00224{left:593.280000pt;}
.xd_c00224{left:602.240000pt;}
.x3f_c00224{left:611.840000pt;}
.x48_c00224{left:621.440000pt;}
.x1_c00224{left:633.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_32f446de554d8c15acebba57.woff2')format("woff");}.ff1_c00225{font-family:ff1_c00225;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4e_c00225{transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);}
.m5b_c00225{transform:matrix(0.227850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227850,0.000000,0.000000,0.250000,0,0);}
.m11_c00225{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);}
.m5f_c00225{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m20_c00225{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m9_c00225{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mb_c00225{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m12_c00225{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m55_c00225{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m36_c00225{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00225{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m32_c00225{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m15_c00225{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m59_c00225{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m7_c00225{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m21_c00225{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m58_c00225{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00225{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00225{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.me_c00225{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m0_c00225{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00225{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00225{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m14_c00225{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00225{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m5_c00225{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m8_c00225{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m6_c00225{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00225{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);}
.m31_c00225{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00225{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_c00225{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m3_c00225{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);}
.m3b_c00225{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m37_c00225{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);}
.m46_c00225{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);}
.m44_c00225{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m27_c00225{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00225{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m1_c00225{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m38_c00225{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m50_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);}
.m35_c00225{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m22_c00225{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);}
.m4a_c00225{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);}
.m52_c00225{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m4_c00225{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m34_c00225{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00225{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);}
.m1d_c00225{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m29_c00225{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m57_c00225{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);}
.md_c00225{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m53_c00225{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);}
.m4c_c00225{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m2_c00225{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00225{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m42_c00225{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);}
.m23_c00225{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m18_c00225{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m51_c00225{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);}
.m2b_c00225{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m48_c00225{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.ma_c00225{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m56_c00225{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m17_c00225{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);}
.m26_c00225{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);}
.m1c_c00225{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00225{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00225{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m16_c00225{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m24_c00225{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m28_c00225{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m45_c00225{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);}
.mc_c00225{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m19_c00225{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.mf_c00225{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m43_c00225{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m25_c00225{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);}
.m33_c00225{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00225{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m54_c00225{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);}
.m13_c00225{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);}
.m39_c00225{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00225{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00225{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00225{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);}
.m4f_c00225{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m47_c00225{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m60_c00225{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00225{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m41_c00225{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);}
.m30_c00225{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00225{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m49_c00225{transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);}
.m40_c00225{transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00225{transform:matrix(1.027500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.027500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.027500,0.000000,0.000000,0.250000,0,0);}
.v0_c00225{vertical-align:0.000000px;}
.ls0_c00225{letter-spacing:0.000000px;}
.sc__c00225{text-shadow:none;}
.sc0_c00225{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00225{-webkit-text-stroke:0px transparent;}
.sc0_c00225{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00225{word-spacing:0.000000px;}
.fc0_c00225{color:transparent;}
.fsc_c00225{font-size:23.040000px;}
.fsd_c00225{font-size:34.560000px;}
.fs5_c00225{font-size:37.440000px;}
.fsa_c00225{font-size:40.320000px;}
.fse_c00225{font-size:43.200000px;}
.fs4_c00225{font-size:46.080000px;}
.fs9_c00225{font-size:48.960000px;}
.fs0_c00225{font-size:51.840000px;}
.fs6_c00225{font-size:54.720000px;}
.fs2_c00225{font-size:57.600000px;}
.fs1_c00225{font-size:60.480000px;}
.fsb_c00225{font-size:63.360000px;}
.fs8_c00225{font-size:66.240000px;}
.fs3_c00225{font-size:69.120000px;}
.fs7_c00225{font-size:72.000000px;}
.fs10_c00225{font-size:74.880000px;}
.fsf_c00225{font-size:77.760000px;}
.y0_c00225{bottom:0.000000px;}
.y69_c00225{bottom:90.000000px;}
.y68_c00225{bottom:128.880000px;}
.y64_c00225{bottom:129.600000px;}
.y65_c00225{bottom:130.320000px;}
.y66_c00225{bottom:131.040000px;}
.y67_c00225{bottom:131.760000px;}
.y63_c00225{bottom:132.480000px;}
.y60_c00225{bottom:171.360000px;}
.y61_c00225{bottom:172.080000px;}
.y5f_c00225{bottom:173.520000px;}
.y5e_c00225{bottom:174.240000px;}
.y5c_c00225{bottom:174.960000px;}
.y5d_c00225{bottom:175.680000px;}
.y62_c00225{bottom:176.400000px;}
.y5b_c00225{bottom:213.120000px;}
.y59_c00225{bottom:215.280000px;}
.y57_c00225{bottom:216.720000px;}
.y5a_c00225{bottom:217.440000px;}
.y58_c00225{bottom:218.160000px;}
.y54_c00225{bottom:257.040000px;}
.y53_c00225{bottom:259.200000px;}
.y55_c00225{bottom:260.640000px;}
.y56_c00225{bottom:261.360000px;}
.y52_c00225{bottom:262.080000px;}
.y4f_c00225{bottom:300.960000px;}
.y51_c00225{bottom:301.680000px;}
.y4d_c00225{bottom:302.400000px;}
.y50_c00225{bottom:303.120000px;}
.y4e_c00225{bottom:303.840000px;}
.y4c_c00225{bottom:343.440000px;}
.y4b_c00225{bottom:344.160000px;}
.y4a_c00225{bottom:346.320000px;}
.y49_c00225{bottom:347.040000px;}
.y47_c00225{bottom:386.640000px;}
.y46_c00225{bottom:388.800000px;}
.y45_c00225{bottom:389.520000px;}
.y48_c00225{bottom:390.240000px;}
.y44_c00225{bottom:390.960000px;}
.y43_c00225{bottom:391.680000px;}
.y40_c00225{bottom:431.280000px;}
.y41_c00225{bottom:432.720000px;}
.y42_c00225{bottom:433.440000px;}
.y3f_c00225{bottom:434.160000px;}
.y3d_c00225{bottom:474.480000px;}
.y3e_c00225{bottom:476.640000px;}
.y3c_c00225{bottom:478.080000px;}
.y3b_c00225{bottom:516.240000px;}
.y3a_c00225{bottom:516.960000px;}
.y39_c00225{bottom:519.840000px;}
.y38_c00225{bottom:520.560000px;}
.y34_c00225{bottom:559.440000px;}
.y36_c00225{bottom:560.160000px;}
.y37_c00225{bottom:563.040000px;}
.y35_c00225{bottom:563.760000px;}
.y33_c00225{bottom:564.480000px;}
.y31_c00225{bottom:603.360000px;}
.y2f_c00225{bottom:604.080000px;}
.y30_c00225{bottom:606.240000px;}
.y32_c00225{bottom:606.960000px;}
.y2b_c00225{bottom:646.560000px;}
.y2d_c00225{bottom:647.280000px;}
.y2e_c00225{bottom:649.440000px;}
.y2c_c00225{bottom:650.160000px;}
.y27_c00225{bottom:689.760000px;}
.y28_c00225{bottom:690.480000px;}
.y2a_c00225{bottom:691.200000px;}
.y29_c00225{bottom:692.640000px;}
.y24_c00225{bottom:732.960000px;}
.y26_c00225{bottom:735.120000px;}
.y25_c00225{bottom:735.840000px;}
.y23_c00225{bottom:736.560000px;}
.y20_c00225{bottom:786.960000px;}
.y22_c00225{bottom:787.680000px;}
.y1f_c00225{bottom:788.400000px;}
.y21_c00225{bottom:789.840000px;}
.y1a_c00225{bottom:828.720000px;}
.y1b_c00225{bottom:829.440000px;}
.y1e_c00225{bottom:831.600000px;}
.y1d_c00225{bottom:832.320000px;}
.y1c_c00225{bottom:833.040000px;}
.y17_c00225{bottom:874.080000px;}
.y19_c00225{bottom:875.520000px;}
.y18_c00225{bottom:876.240000px;}
.y16_c00225{bottom:915.120000px;}
.y15_c00225{bottom:915.840000px;}
.y12_c00225{bottom:916.560000px;}
.y10_c00225{bottom:917.280000px;}
.y11_c00225{bottom:918.000000px;}
.y14_c00225{bottom:918.720000px;}
.y13_c00225{bottom:919.440000px;}
.yb_c00225{bottom:959.040000px;}
.yd_c00225{bottom:959.760000px;}
.ye_c00225{bottom:960.480000px;}
.yf_c00225{bottom:961.200000px;}
.yc_c00225{bottom:961.920000px;}
.y7_c00225{bottom:1002.960000px;}
.y6_c00225{bottom:1003.680000px;}
.ya_c00225{bottom:1004.400000px;}
.y9_c00225{bottom:1005.120000px;}
.y8_c00225{bottom:1005.840000px;}
.y5_c00225{bottom:1045.440000px;}
.y1_c00225{bottom:1046.880000px;}
.y2_c00225{bottom:1047.600000px;}
.y3_c00225{bottom:1048.320000px;}
.y4_c00225{bottom:1049.040000px;}
.y6a_c00225{bottom:1097.280000px;}
.he_c00225{height:20.733750px;}
.hf_c00225{height:31.100625px;}
.h7_c00225{height:33.692344px;}
.hc_c00225{height:36.284062px;}
.h10_c00225{height:38.875781px;}
.h6_c00225{height:41.467500px;}
.hb_c00225{height:44.059219px;}
.h2_c00225{height:46.650937px;}
.h8_c00225{height:49.242656px;}
.h4_c00225{height:51.834375px;}
.h3_c00225{height:54.426094px;}
.hd_c00225{height:57.017812px;}
.ha_c00225{height:59.609531px;}
.h5_c00225{height:62.201250px;}
.h9_c00225{height:64.792969px;}
.h12_c00225{height:67.384687px;}
.h11_c00225{height:69.976406px;}
.h0_c00225{height:1154.880000px;}
.h1_c00225{height:1155.000000px;}
.w1_c00225{width:790.500000px;}
.w0_c00225{width:790.560000px;}
.x0_c00225{left:0.000000px;}
.x1_c00225{left:75.600000px;}
.x35_c00225{left:77.040000px;}
.x46_c00225{left:78.480000px;}
.x2_c00225{left:106.560000px;}
.x3b_c00225{left:108.000000px;}
.x36_c00225{left:118.080000px;}
.x38_c00225{left:128.160000px;}
.xa_c00225{left:138.240000px;}
.x3c_c00225{left:139.680000px;}
.x26_c00225{left:149.760000px;}
.x3_c00225{left:171.360000px;}
.x2d_c00225{left:181.440000px;}
.x39_c00225{left:182.880000px;}
.x31_c00225{left:192.240000px;}
.x13_c00225{left:203.760000px;}
.x2e_c00225{left:213.840000px;}
.x41_c00225{left:224.640000px;}
.x4_c00225{left:236.160000px;}
.x1a_c00225{left:246.960000px;}
.x27_c00225{left:257.760000px;}
.x3d_c00225{left:268.560000px;}
.x2f_c00225{left:270.000000px;}
.x5_c00225{left:280.080000px;}
.x42_c00225{left:290.160000px;}
.x20_c00225{left:300.960000px;}
.x14_c00225{left:303.840000px;}
.xb_c00225{left:311.760000px;}
.x1b_c00225{left:313.200000px;}
.xc_c00225{left:332.640000px;}
.x32_c00225{left:334.800000px;}
.x15_c00225{left:344.880000px;}
.x3a_c00225{left:354.960000px;}
.x21_c00225{left:356.400000px;}
.x1c_c00225{left:366.480000px;}
.xd_c00225{left:377.280000px;}
.x16_c00225{left:387.360000px;}
.x2c_c00225{left:388.800000px;}
.x6_c00225{left:398.880000px;}
.xe_c00225{left:409.680000px;}
.x33_c00225{left:419.760000px;}
.x7_c00225{left:431.280000px;}
.x22_c00225{left:440.640000px;}
.x3f_c00225{left:442.800000px;}
.x34_c00225{left:452.160000px;}
.x17_c00225{left:453.600000px;}
.xf_c00225{left:462.960000px;}
.x3e_c00225{left:473.040000px;}
.x8_c00225{left:474.480000px;}
.x43_c00225{left:485.280000px;}
.x1d_c00225{left:494.640000px;}
.x28_c00225{left:506.160000px;}
.x44_c00225{left:516.240000px;}
.x23_c00225{left:517.680000px;}
.x1e_c00225{left:528.480000px;}
.x29_c00225{left:539.280000px;}
.x10_c00225{left:549.360000px;}
.x18_c00225{left:560.160000px;}
.x30_c00225{left:570.960000px;}
.x11_c00225{left:581.040000px;}
.x19_c00225{left:591.840000px;}
.x45_c00225{left:601.200000px;}
.x9_c00225{left:602.640000px;}
.x24_c00225{left:613.440000px;}
.x40_c00225{left:623.520000px;}
.x1f_c00225{left:624.960000px;}
.x25_c00225{left:645.840000px;}
.x37_c00225{left:655.200000px;}
.x12_c00225{left:666.720000px;}
.x2a_c00225{left:678.240000px;}
.x2b_c00225{left:699.840000px;}
.x47_c00225{left:710.640000px;}
@media print{
.v0_c00225{vertical-align:0.000000pt;}
.ls0_c00225{letter-spacing:0.000000pt;}
.ws0_c00225{word-spacing:0.000000pt;}
.fsc_c00225{font-size:20.480000pt;}
.fsd_c00225{font-size:30.720000pt;}
.fs5_c00225{font-size:33.280000pt;}
.fsa_c00225{font-size:35.840000pt;}
.fse_c00225{font-size:38.400000pt;}
.fs4_c00225{font-size:40.960000pt;}
.fs9_c00225{font-size:43.520000pt;}
.fs0_c00225{font-size:46.080000pt;}
.fs6_c00225{font-size:48.640000pt;}
.fs2_c00225{font-size:51.200000pt;}
.fs1_c00225{font-size:53.760000pt;}
.fsb_c00225{font-size:56.320000pt;}
.fs8_c00225{font-size:58.880000pt;}
.fs3_c00225{font-size:61.440000pt;}
.fs7_c00225{font-size:64.000000pt;}
.fs10_c00225{font-size:66.560000pt;}
.fsf_c00225{font-size:69.120000pt;}
.y0_c00225{bottom:0.000000pt;}
.y69_c00225{bottom:80.000000pt;}
.y68_c00225{bottom:114.560000pt;}
.y64_c00225{bottom:115.200000pt;}
.y65_c00225{bottom:115.840000pt;}
.y66_c00225{bottom:116.480000pt;}
.y67_c00225{bottom:117.120000pt;}
.y63_c00225{bottom:117.760000pt;}
.y60_c00225{bottom:152.320000pt;}
.y61_c00225{bottom:152.960000pt;}
.y5f_c00225{bottom:154.240000pt;}
.y5e_c00225{bottom:154.880000pt;}
.y5c_c00225{bottom:155.520000pt;}
.y5d_c00225{bottom:156.160000pt;}
.y62_c00225{bottom:156.800000pt;}
.y5b_c00225{bottom:189.440000pt;}
.y59_c00225{bottom:191.360000pt;}
.y57_c00225{bottom:192.640000pt;}
.y5a_c00225{bottom:193.280000pt;}
.y58_c00225{bottom:193.920000pt;}
.y54_c00225{bottom:228.480000pt;}
.y53_c00225{bottom:230.400000pt;}
.y55_c00225{bottom:231.680000pt;}
.y56_c00225{bottom:232.320000pt;}
.y52_c00225{bottom:232.960000pt;}
.y4f_c00225{bottom:267.520000pt;}
.y51_c00225{bottom:268.160000pt;}
.y4d_c00225{bottom:268.800000pt;}
.y50_c00225{bottom:269.440000pt;}
.y4e_c00225{bottom:270.080000pt;}
.y4c_c00225{bottom:305.280000pt;}
.y4b_c00225{bottom:305.920000pt;}
.y4a_c00225{bottom:307.840000pt;}
.y49_c00225{bottom:308.480000pt;}
.y47_c00225{bottom:343.680000pt;}
.y46_c00225{bottom:345.600000pt;}
.y45_c00225{bottom:346.240000pt;}
.y48_c00225{bottom:346.880000pt;}
.y44_c00225{bottom:347.520000pt;}
.y43_c00225{bottom:348.160000pt;}
.y40_c00225{bottom:383.360000pt;}
.y41_c00225{bottom:384.640000pt;}
.y42_c00225{bottom:385.280000pt;}
.y3f_c00225{bottom:385.920000pt;}
.y3d_c00225{bottom:421.760000pt;}
.y3e_c00225{bottom:423.680000pt;}
.y3c_c00225{bottom:424.960000pt;}
.y3b_c00225{bottom:458.880000pt;}
.y3a_c00225{bottom:459.520000pt;}
.y39_c00225{bottom:462.080000pt;}
.y38_c00225{bottom:462.720000pt;}
.y34_c00225{bottom:497.280000pt;}
.y36_c00225{bottom:497.920000pt;}
.y37_c00225{bottom:500.480000pt;}
.y35_c00225{bottom:501.120000pt;}
.y33_c00225{bottom:501.760000pt;}
.y31_c00225{bottom:536.320000pt;}
.y2f_c00225{bottom:536.960000pt;}
.y30_c00225{bottom:538.880000pt;}
.y32_c00225{bottom:539.520000pt;}
.y2b_c00225{bottom:574.720000pt;}
.y2d_c00225{bottom:575.360000pt;}
.y2e_c00225{bottom:577.280000pt;}
.y2c_c00225{bottom:577.920000pt;}
.y27_c00225{bottom:613.120000pt;}
.y28_c00225{bottom:613.760000pt;}
.y2a_c00225{bottom:614.400000pt;}
.y29_c00225{bottom:615.680000pt;}
.y24_c00225{bottom:651.520000pt;}
.y26_c00225{bottom:653.440000pt;}
.y25_c00225{bottom:654.080000pt;}
.y23_c00225{bottom:654.720000pt;}
.y20_c00225{bottom:699.520000pt;}
.y22_c00225{bottom:700.160000pt;}
.y1f_c00225{bottom:700.800000pt;}
.y21_c00225{bottom:702.080000pt;}
.y1a_c00225{bottom:736.640000pt;}
.y1b_c00225{bottom:737.280000pt;}
.y1e_c00225{bottom:739.200000pt;}
.y1d_c00225{bottom:739.840000pt;}
.y1c_c00225{bottom:740.480000pt;}
.y17_c00225{bottom:776.960000pt;}
.y19_c00225{bottom:778.240000pt;}
.y18_c00225{bottom:778.880000pt;}
.y16_c00225{bottom:813.440000pt;}
.y15_c00225{bottom:814.080000pt;}
.y12_c00225{bottom:814.720000pt;}
.y10_c00225{bottom:815.360000pt;}
.y11_c00225{bottom:816.000000pt;}
.y14_c00225{bottom:816.640000pt;}
.y13_c00225{bottom:817.280000pt;}
.yb_c00225{bottom:852.480000pt;}
.yd_c00225{bottom:853.120000pt;}
.ye_c00225{bottom:853.760000pt;}
.yf_c00225{bottom:854.400000pt;}
.yc_c00225{bottom:855.040000pt;}
.y7_c00225{bottom:891.520000pt;}
.y6_c00225{bottom:892.160000pt;}
.ya_c00225{bottom:892.800000pt;}
.y9_c00225{bottom:893.440000pt;}
.y8_c00225{bottom:894.080000pt;}
.y5_c00225{bottom:929.280000pt;}
.y1_c00225{bottom:930.560000pt;}
.y2_c00225{bottom:931.200000pt;}
.y3_c00225{bottom:931.840000pt;}
.y4_c00225{bottom:932.480000pt;}
.y6a_c00225{bottom:975.360000pt;}
.he_c00225{height:18.430000pt;}
.hf_c00225{height:27.645000pt;}
.h7_c00225{height:29.948750pt;}
.hc_c00225{height:32.252500pt;}
.h10_c00225{height:34.556250pt;}
.h6_c00225{height:36.860000pt;}
.hb_c00225{height:39.163750pt;}
.h2_c00225{height:41.467500pt;}
.h8_c00225{height:43.771250pt;}
.h4_c00225{height:46.075000pt;}
.h3_c00225{height:48.378750pt;}
.hd_c00225{height:50.682500pt;}
.ha_c00225{height:52.986250pt;}
.h5_c00225{height:55.290000pt;}
.h9_c00225{height:57.593750pt;}
.h12_c00225{height:59.897500pt;}
.h11_c00225{height:62.201250pt;}
.h0_c00225{height:1026.560000pt;}
.h1_c00225{height:1026.666667pt;}
.w1_c00225{width:702.666667pt;}
.w0_c00225{width:702.720000pt;}
.x0_c00225{left:0.000000pt;}
.x1_c00225{left:67.200000pt;}
.x35_c00225{left:68.480000pt;}
.x46_c00225{left:69.760000pt;}
.x2_c00225{left:94.720000pt;}
.x3b_c00225{left:96.000000pt;}
.x36_c00225{left:104.960000pt;}
.x38_c00225{left:113.920000pt;}
.xa_c00225{left:122.880000pt;}
.x3c_c00225{left:124.160000pt;}
.x26_c00225{left:133.120000pt;}
.x3_c00225{left:152.320000pt;}
.x2d_c00225{left:161.280000pt;}
.x39_c00225{left:162.560000pt;}
.x31_c00225{left:170.880000pt;}
.x13_c00225{left:181.120000pt;}
.x2e_c00225{left:190.080000pt;}
.x41_c00225{left:199.680000pt;}
.x4_c00225{left:209.920000pt;}
.x1a_c00225{left:219.520000pt;}
.x27_c00225{left:229.120000pt;}
.x3d_c00225{left:238.720000pt;}
.x2f_c00225{left:240.000000pt;}
.x5_c00225{left:248.960000pt;}
.x42_c00225{left:257.920000pt;}
.x20_c00225{left:267.520000pt;}
.x14_c00225{left:270.080000pt;}
.xb_c00225{left:277.120000pt;}
.x1b_c00225{left:278.400000pt;}
.xc_c00225{left:295.680000pt;}
.x32_c00225{left:297.600000pt;}
.x15_c00225{left:306.560000pt;}
.x3a_c00225{left:315.520000pt;}
.x21_c00225{left:316.800000pt;}
.x1c_c00225{left:325.760000pt;}
.xd_c00225{left:335.360000pt;}
.x16_c00225{left:344.320000pt;}
.x2c_c00225{left:345.600000pt;}
.x6_c00225{left:354.560000pt;}
.xe_c00225{left:364.160000pt;}
.x33_c00225{left:373.120000pt;}
.x7_c00225{left:383.360000pt;}
.x22_c00225{left:391.680000pt;}
.x3f_c00225{left:393.600000pt;}
.x34_c00225{left:401.920000pt;}
.x17_c00225{left:403.200000pt;}
.xf_c00225{left:411.520000pt;}
.x3e_c00225{left:420.480000pt;}
.x8_c00225{left:421.760000pt;}
.x43_c00225{left:431.360000pt;}
.x1d_c00225{left:439.680000pt;}
.x28_c00225{left:449.920000pt;}
.x44_c00225{left:458.880000pt;}
.x23_c00225{left:460.160000pt;}
.x1e_c00225{left:469.760000pt;}
.x29_c00225{left:479.360000pt;}
.x10_c00225{left:488.320000pt;}
.x18_c00225{left:497.920000pt;}
.x30_c00225{left:507.520000pt;}
.x11_c00225{left:516.480000pt;}
.x19_c00225{left:526.080000pt;}
.x45_c00225{left:534.400000pt;}
.x9_c00225{left:535.680000pt;}
.x24_c00225{left:545.280000pt;}
.x40_c00225{left:554.240000pt;}
.x1f_c00225{left:555.520000pt;}
.x25_c00225{left:574.080000pt;}
.x37_c00225{left:582.400000pt;}
.x12_c00225{left:592.640000pt;}
.x2a_c00225{left:602.880000pt;}
.x2b_c00225{left:622.080000pt;}
.x47_c00225{left:631.680000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_71b00868ff9f9d34c284a7d6.woff2')format("woff");}.ff1_c00226{font-family:ff1_c00226;line-height:1.109863;font-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_c00226{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m1_c00226{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);}
.m2e_c00226{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);}
.m59_c00226{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m50_c00226{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m20_c00226{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00226{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mf_c00226{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m28_c00226{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m56_c00226{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m0_c00226{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m25_c00226{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00226{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m16_c00226{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00226{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m13_c00226{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00226{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m6_c00226{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m18_c00226{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m44_c00226{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);}
.me_c00226{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m33_c00226{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m11_c00226{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);}
.m5a_c00226{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m5_c00226{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m12_c00226{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);}
.m2c_c00226{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);}
.m2_c00226{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00226{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);}
.m41_c00226{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m32_c00226{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);}
.m24_c00226{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);}
.m4_c00226{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);}
.m39_c00226{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m10_c00226{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00226{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m47_c00226{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);}
.m34_c00226{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.ma_c00226{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);}
.m43_c00226{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m23_c00226{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m54_c00226{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00226{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m29_c00226{transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);}
.m14_c00226{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00226{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m38_c00226{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);}
.m30_c00226{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);}
.m36_c00226{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m8_c00226{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m35_c00226{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m19_c00226{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00226{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);}
.m4d_c00226{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.mc_c00226{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00226{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m46_c00226{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);}
.m40_c00226{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m57_c00226{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m9_c00226{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00226{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00226{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m42_c00226{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);}
.m3_c00226{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);}
.m37_c00226{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00226{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m7_c00226{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m26_c00226{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);}
.m31_c00226{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00226{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m27_c00226{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_c00226{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00226{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m49_c00226{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);}
.m3f_c00226{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.md_c00226{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m22_c00226{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);}
.m4a_c00226{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00226{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);}
.m3b_c00226{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m17_c00226{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00226{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.mb_c00226{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m15_c00226{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m55_c00226{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00226{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);}
.m48_c00226{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m52_c00226{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m53_c00226{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m51_c00226{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);}
.m45_c00226{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m58_c00226{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.v0_c00226{vertical-align:0.000000px;}
.v1_c00226{vertical-align:5.760000px;}
.v2_c00226{vertical-align:14.400000px;}
.ls0_c00226{letter-spacing:0.000000px;}
.sc__c00226{text-shadow:none;}
.sc0_c00226{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00226{-webkit-text-stroke:0px transparent;}
.sc0_c00226{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00226{word-spacing:-4.312932px;}
.ws3_c00226{word-spacing:0.000000px;}
.ws0_c00226{word-spacing:2.089440px;}
.ws1_c00226{word-spacing:5.970720px;}
.fc0_c00226{color:transparent;}
.fsa_c00226{font-size:34.560000px;}
.fs5_c00226{font-size:37.440000px;}
.fsc_c00226{font-size:40.320000px;}
.fsd_c00226{font-size:43.200000px;}
.fs2_c00226{font-size:46.080000px;}
.fs7_c00226{font-size:48.960000px;}
.fs3_c00226{font-size:51.840000px;}
.fs8_c00226{font-size:54.720000px;}
.fsb_c00226{font-size:57.600000px;}
.fs4_c00226{font-size:60.480000px;}
.fs6_c00226{font-size:63.360000px;}
.fs1_c00226{font-size:66.240000px;}
.fs9_c00226{font-size:69.120000px;}
.fs0_c00226{font-size:74.880000px;}
.y0_c00226{bottom:0.000000px;}
.y71_c00226{bottom:19.440000px;}
.y70_c00226{bottom:20.160000px;}
.y72_c00226{bottom:20.880000px;}
.y6f_c00226{bottom:21.600000px;}
.y6c_c00226{bottom:59.760000px;}
.y6b_c00226{bottom:60.480000px;}
.y6a_c00226{bottom:62.640000px;}
.y6d_c00226{bottom:64.080000px;}
.y6e_c00226{bottom:64.800000px;}
.y69_c00226{bottom:65.520000px;}
.y68_c00226{bottom:66.240000px;}
.y66_c00226{bottom:104.400000px;}
.y65_c00226{bottom:105.120000px;}
.y64_c00226{bottom:108.000000px;}
.y67_c00226{bottom:108.720000px;}
.y63_c00226{bottom:158.400000px;}
.y61_c00226{bottom:160.560000px;}
.y62_c00226{bottom:162.000000px;}
.y60_c00226{bottom:164.880000px;}
.y5d_c00226{bottom:201.600000px;}
.y5e_c00226{bottom:203.760000px;}
.y5b_c00226{bottom:204.480000px;}
.y5c_c00226{bottom:205.200000px;}
.y5f_c00226{bottom:206.640000px;}
.y5a_c00226{bottom:218.880000px;}
.y56_c00226{bottom:244.800000px;}
.y54_c00226{bottom:246.240000px;}
.y58_c00226{bottom:246.960000px;}
.y55_c00226{bottom:247.680000px;}
.y53_c00226{bottom:248.400000px;}
.y57_c00226{bottom:249.120000px;}
.y59_c00226{bottom:249.840000px;}
.y4f_c00226{bottom:288.720000px;}
.y4e_c00226{bottom:289.440000px;}
.y52_c00226{bottom:290.880000px;}
.y51_c00226{bottom:291.600000px;}
.y50_c00226{bottom:292.320000px;}
.y4d_c00226{bottom:293.760000px;}
.y4b_c00226{bottom:331.920000px;}
.y4a_c00226{bottom:334.800000px;}
.y4c_c00226{bottom:336.240000px;}
.y48_c00226{bottom:375.840000px;}
.y45_c00226{bottom:376.560000px;}
.y46_c00226{bottom:377.280000px;}
.y47_c00226{bottom:378.000000px;}
.y44_c00226{bottom:378.720000px;}
.y49_c00226{bottom:379.440000px;}
.y43_c00226{bottom:419.760000px;}
.y40_c00226{bottom:421.200000px;}
.y41_c00226{bottom:421.920000px;}
.y42_c00226{bottom:422.640000px;}
.y3f_c00226{bottom:423.360000px;}
.y3e_c00226{bottom:462.960000px;}
.y3c_c00226{bottom:464.400000px;}
.y3b_c00226{bottom:465.120000px;}
.y3d_c00226{bottom:465.840000px;}
.y3a_c00226{bottom:506.160000px;}
.y38_c00226{bottom:507.600000px;}
.y37_c00226{bottom:508.320000px;}
.y39_c00226{bottom:509.040000px;}
.y34_c00226{bottom:547.920000px;}
.y35_c00226{bottom:548.640000px;}
.y36_c00226{bottom:549.360000px;}
.y33_c00226{bottom:550.800000px;}
.y32_c00226{bottom:551.520000px;}
.y30_c00226{bottom:604.800000px;}
.y31_c00226{bottom:605.520000px;}
.y2e_c00226{bottom:644.400000px;}
.y2f_c00226{bottom:645.120000px;}
.y2d_c00226{bottom:645.840000px;}
.y2c_c00226{bottom:648.000000px;}
.y2b_c00226{bottom:648.720000px;}
.y27_c00226{bottom:688.320000px;}
.y28_c00226{bottom:689.040000px;}
.y2a_c00226{bottom:690.480000px;}
.y29_c00226{bottom:691.200000px;}
.y24_c00226{bottom:732.240000px;}
.y25_c00226{bottom:732.960000px;}
.y22_c00226{bottom:733.680000px;}
.y23_c00226{bottom:734.400000px;}
.y26_c00226{bottom:735.120000px;}
.y20_c00226{bottom:774.720000px;}
.y21_c00226{bottom:775.440000px;}
.y1e_c00226{bottom:777.600000px;}
.y1f_c00226{bottom:778.320000px;}
.y1c_c00226{bottom:818.640000px;}
.y1b_c00226{bottom:820.800000px;}
.y1d_c00226{bottom:821.520000px;}
.y19_c00226{bottom:861.840000px;}
.y16_c00226{bottom:863.280000px;}
.y17_c00226{bottom:864.000000px;}
.y18_c00226{bottom:864.720000px;}
.y1a_c00226{bottom:865.440000px;}
.y12_c00226{bottom:905.040000px;}
.y14_c00226{bottom:907.200000px;}
.y13_c00226{bottom:907.920000px;}
.y15_c00226{bottom:908.640000px;}
.yd_c00226{bottom:946.800000px;}
.yf_c00226{bottom:948.240000px;}
.ye_c00226{bottom:948.960000px;}
.y11_c00226{bottom:950.400000px;}
.y10_c00226{bottom:951.120000px;}
.y7_c00226{bottom:990.000000px;}
.yc_c00226{bottom:991.440000px;}
.y9_c00226{bottom:992.160000px;}
.y8_c00226{bottom:993.600000px;}
.ya_c00226{bottom:994.320000px;}
.yb_c00226{bottom:995.040000px;}
.y5_c00226{bottom:1033.200000px;}
.y4_c00226{bottom:1034.640000px;}
.y6_c00226{bottom:1036.800000px;}
.y3_c00226{bottom:1037.520000px;}
.y2_c00226{bottom:1038.240000px;}
.y1_c00226{bottom:1101.600000px;}
.hd_c00226{height:31.100625px;}
.h7_c00226{height:33.692344px;}
.h10_c00226{height:36.284062px;}
.h11_c00226{height:38.875781px;}
.h4_c00226{height:41.467500px;}
.h9_c00226{height:44.059219px;}
.h5_c00226{height:46.650937px;}
.hf_c00226{height:49.242656px;}
.he_c00226{height:51.834375px;}
.h6_c00226{height:54.426094px;}
.ha_c00226{height:55.002656px;}
.h8_c00226{height:57.017812px;}
.h3_c00226{height:59.609531px;}
.hb_c00226{height:61.050938px;}
.hc_c00226{height:62.201250px;}
.h2_c00226{height:67.384687px;}
.h0_c00226{height:1155.600000px;}
.h1_c00226{height:1155.750000px;}
.w0_c00226{width:792.720000px;}
.w1_c00226{width:792.750000px;}
.x0_c00226{left:0.000000px;}
.xb_c00226{left:75.600000px;}
.x3c_c00226{left:77.040000px;}
.x49_c00226{left:79.200000px;}
.x22_c00226{left:106.560000px;}
.x2f_c00226{left:116.640000px;}
.x3a_c00226{left:118.800000px;}
.xc_c00226{left:127.440000px;}
.x47_c00226{left:140.400000px;}
.x2c_c00226{left:149.040000px;}
.x1c_c00226{left:159.840000px;}
.xd_c00226{left:169.920000px;}
.x3_c00226{left:181.440000px;}
.x36_c00226{left:182.880000px;}
.x30_c00226{left:192.240000px;}
.x1d_c00226{left:203.040000px;}
.xe_c00226{left:213.120000px;}
.x4_c00226{left:224.640000px;}
.x34_c00226{left:234.720000px;}
.x3b_c00226{left:236.880000px;}
.x27_c00226{left:246.240000px;}
.xf_c00226{left:257.040000px;}
.x5_c00226{left:267.840000px;}
.x3d_c00226{left:269.280000px;}
.x31_c00226{left:279.360000px;}
.x4a_c00226{left:290.160000px;}
.x1e_c00226{left:300.240000px;}
.x40_c00226{left:301.680000px;}
.x16_c00226{left:311.040000px;}
.x46_c00226{left:313.200000px;}
.x28_c00226{left:321.840000px;}
.x1f_c00226{left:333.360000px;}
.x33_c00226{left:334.800000px;}
.x10_c00226{left:343.440000px;}
.x6_c00226{left:364.320000px;}
.x3e_c00226{left:366.480000px;}
.x11_c00226{left:375.840000px;}
.x23_c00226{left:386.640000px;}
.x29_c00226{left:397.440000px;}
.x43_c00226{left:398.880000px;}
.x20_c00226{left:408.960000px;}
.x24_c00226{left:419.760000px;}
.x17_c00226{left:430.560000px;}
.x44_c00226{left:432.000000px;}
.x7_c00226{left:440.640000px;}
.x12_c00226{left:442.080000px;}
.x37_c00226{left:451.440000px;}
.x35_c00226{left:452.880000px;}
.x2d_c00226{left:462.240000px;}
.x8_c00226{left:473.040000px;}
.x3f_c00226{left:474.480000px;}
.x2e_c00226{left:495.360000px;}
.x18_c00226{left:506.160000px;}
.x9_c00226{left:516.960000px;}
.x38_c00226{left:527.760000px;}
.x19_c00226{left:538.560000px;}
.x41_c00226{left:548.640000px;}
.x13_c00226{left:559.440000px;}
.x2a_c00226{left:570.240000px;}
.x42_c00226{left:579.600000px;}
.x39_c00226{left:581.040000px;}
.x21_c00226{left:582.480000px;}
.x14_c00226{left:591.840000px;}
.x1a_c00226{left:602.640000px;}
.x32_c00226{left:613.440000px;}
.x15_c00226{left:622.800000px;}
.x4b_c00226{left:624.240000px;}
.x25_c00226{left:634.320000px;}
.xa_c00226{left:645.840000px;}
.x2b_c00226{left:656.640000px;}
.x1b_c00226{left:666.720000px;}
.x26_c00226{left:676.080000px;}
.x48_c00226{left:677.520000px;}
.x45_c00226{left:687.600000px;}
.x1_c00226{left:714.960000px;}
.x2_c00226{left:750.240000px;}
@media print{
.v0_c00226{vertical-align:0.000000pt;}
.v1_c00226{vertical-align:5.120000pt;}
.v2_c00226{vertical-align:12.800000pt;}
.ls0_c00226{letter-spacing:0.000000pt;}
.ws2_c00226{word-spacing:-3.833718pt;}
.ws3_c00226{word-spacing:0.000000pt;}
.ws0_c00226{word-spacing:1.857280pt;}
.ws1_c00226{word-spacing:5.307307pt;}
.fsa_c00226{font-size:30.720000pt;}
.fs5_c00226{font-size:33.280000pt;}
.fsc_c00226{font-size:35.840000pt;}
.fsd_c00226{font-size:38.400000pt;}
.fs2_c00226{font-size:40.960000pt;}
.fs7_c00226{font-size:43.520000pt;}
.fs3_c00226{font-size:46.080000pt;}
.fs8_c00226{font-size:48.640000pt;}
.fsb_c00226{font-size:51.200000pt;}
.fs4_c00226{font-size:53.760000pt;}
.fs6_c00226{font-size:56.320000pt;}
.fs1_c00226{font-size:58.880000pt;}
.fs9_c00226{font-size:61.440000pt;}
.fs0_c00226{font-size:66.560000pt;}
.y0_c00226{bottom:0.000000pt;}
.y71_c00226{bottom:17.280000pt;}
.y70_c00226{bottom:17.920000pt;}
.y72_c00226{bottom:18.560000pt;}
.y6f_c00226{bottom:19.200000pt;}
.y6c_c00226{bottom:53.120000pt;}
.y6b_c00226{bottom:53.760000pt;}
.y6a_c00226{bottom:55.680000pt;}
.y6d_c00226{bottom:56.960000pt;}
.y6e_c00226{bottom:57.600000pt;}
.y69_c00226{bottom:58.240000pt;}
.y68_c00226{bottom:58.880000pt;}
.y66_c00226{bottom:92.800000pt;}
.y65_c00226{bottom:93.440000pt;}
.y64_c00226{bottom:96.000000pt;}
.y67_c00226{bottom:96.640000pt;}
.y63_c00226{bottom:140.800000pt;}
.y61_c00226{bottom:142.720000pt;}
.y62_c00226{bottom:144.000000pt;}
.y60_c00226{bottom:146.560000pt;}
.y5d_c00226{bottom:179.200000pt;}
.y5e_c00226{bottom:181.120000pt;}
.y5b_c00226{bottom:181.760000pt;}
.y5c_c00226{bottom:182.400000pt;}
.y5f_c00226{bottom:183.680000pt;}
.y5a_c00226{bottom:194.560000pt;}
.y56_c00226{bottom:217.600000pt;}
.y54_c00226{bottom:218.880000pt;}
.y58_c00226{bottom:219.520000pt;}
.y55_c00226{bottom:220.160000pt;}
.y53_c00226{bottom:220.800000pt;}
.y57_c00226{bottom:221.440000pt;}
.y59_c00226{bottom:222.080000pt;}
.y4f_c00226{bottom:256.640000pt;}
.y4e_c00226{bottom:257.280000pt;}
.y52_c00226{bottom:258.560000pt;}
.y51_c00226{bottom:259.200000pt;}
.y50_c00226{bottom:259.840000pt;}
.y4d_c00226{bottom:261.120000pt;}
.y4b_c00226{bottom:295.040000pt;}
.y4a_c00226{bottom:297.600000pt;}
.y4c_c00226{bottom:298.880000pt;}
.y48_c00226{bottom:334.080000pt;}
.y45_c00226{bottom:334.720000pt;}
.y46_c00226{bottom:335.360000pt;}
.y47_c00226{bottom:336.000000pt;}
.y44_c00226{bottom:336.640000pt;}
.y49_c00226{bottom:337.280000pt;}
.y43_c00226{bottom:373.120000pt;}
.y40_c00226{bottom:374.400000pt;}
.y41_c00226{bottom:375.040000pt;}
.y42_c00226{bottom:375.680000pt;}
.y3f_c00226{bottom:376.320000pt;}
.y3e_c00226{bottom:411.520000pt;}
.y3c_c00226{bottom:412.800000pt;}
.y3b_c00226{bottom:413.440000pt;}
.y3d_c00226{bottom:414.080000pt;}
.y3a_c00226{bottom:449.920000pt;}
.y38_c00226{bottom:451.200000pt;}
.y37_c00226{bottom:451.840000pt;}
.y39_c00226{bottom:452.480000pt;}
.y34_c00226{bottom:487.040000pt;}
.y35_c00226{bottom:487.680000pt;}
.y36_c00226{bottom:488.320000pt;}
.y33_c00226{bottom:489.600000pt;}
.y32_c00226{bottom:490.240000pt;}
.y30_c00226{bottom:537.600000pt;}
.y31_c00226{bottom:538.240000pt;}
.y2e_c00226{bottom:572.800000pt;}
.y2f_c00226{bottom:573.440000pt;}
.y2d_c00226{bottom:574.080000pt;}
.y2c_c00226{bottom:576.000000pt;}
.y2b_c00226{bottom:576.640000pt;}
.y27_c00226{bottom:611.840000pt;}
.y28_c00226{bottom:612.480000pt;}
.y2a_c00226{bottom:613.760000pt;}
.y29_c00226{bottom:614.400000pt;}
.y24_c00226{bottom:650.880000pt;}
.y25_c00226{bottom:651.520000pt;}
.y22_c00226{bottom:652.160000pt;}
.y23_c00226{bottom:652.800000pt;}
.y26_c00226{bottom:653.440000pt;}
.y20_c00226{bottom:688.640000pt;}
.y21_c00226{bottom:689.280000pt;}
.y1e_c00226{bottom:691.200000pt;}
.y1f_c00226{bottom:691.840000pt;}
.y1c_c00226{bottom:727.680000pt;}
.y1b_c00226{bottom:729.600000pt;}
.y1d_c00226{bottom:730.240000pt;}
.y19_c00226{bottom:766.080000pt;}
.y16_c00226{bottom:767.360000pt;}
.y17_c00226{bottom:768.000000pt;}
.y18_c00226{bottom:768.640000pt;}
.y1a_c00226{bottom:769.280000pt;}
.y12_c00226{bottom:804.480000pt;}
.y14_c00226{bottom:806.400000pt;}
.y13_c00226{bottom:807.040000pt;}
.y15_c00226{bottom:807.680000pt;}
.yd_c00226{bottom:841.600000pt;}
.yf_c00226{bottom:842.880000pt;}
.ye_c00226{bottom:843.520000pt;}
.y11_c00226{bottom:844.800000pt;}
.y10_c00226{bottom:845.440000pt;}
.y7_c00226{bottom:880.000000pt;}
.yc_c00226{bottom:881.280000pt;}
.y9_c00226{bottom:881.920000pt;}
.y8_c00226{bottom:883.200000pt;}
.ya_c00226{bottom:883.840000pt;}
.yb_c00226{bottom:884.480000pt;}
.y5_c00226{bottom:918.400000pt;}
.y4_c00226{bottom:919.680000pt;}
.y6_c00226{bottom:921.600000pt;}
.y3_c00226{bottom:922.240000pt;}
.y2_c00226{bottom:922.880000pt;}
.y1_c00226{bottom:979.200000pt;}
.hd_c00226{height:27.645000pt;}
.h7_c00226{height:29.948750pt;}
.h10_c00226{height:32.252500pt;}
.h11_c00226{height:34.556250pt;}
.h4_c00226{height:36.860000pt;}
.h9_c00226{height:39.163750pt;}
.h5_c00226{height:41.467500pt;}
.hf_c00226{height:43.771250pt;}
.he_c00226{height:46.075000pt;}
.h6_c00226{height:48.378750pt;}
.ha_c00226{height:48.891250pt;}
.h8_c00226{height:50.682500pt;}
.h3_c00226{height:52.986250pt;}
.hb_c00226{height:54.267500pt;}
.hc_c00226{height:55.290000pt;}
.h2_c00226{height:59.897500pt;}
.h0_c00226{height:1027.200000pt;}
.h1_c00226{height:1027.333333pt;}
.w0_c00226{width:704.640000pt;}
.w1_c00226{width:704.666667pt;}
.x0_c00226{left:0.000000pt;}
.xb_c00226{left:67.200000pt;}
.x3c_c00226{left:68.480000pt;}
.x49_c00226{left:70.400000pt;}
.x22_c00226{left:94.720000pt;}
.x2f_c00226{left:103.680000pt;}
.x3a_c00226{left:105.600000pt;}
.xc_c00226{left:113.280000pt;}
.x47_c00226{left:124.800000pt;}
.x2c_c00226{left:132.480000pt;}
.x1c_c00226{left:142.080000pt;}
.xd_c00226{left:151.040000pt;}
.x3_c00226{left:161.280000pt;}
.x36_c00226{left:162.560000pt;}
.x30_c00226{left:170.880000pt;}
.x1d_c00226{left:180.480000pt;}
.xe_c00226{left:189.440000pt;}
.x4_c00226{left:199.680000pt;}
.x34_c00226{left:208.640000pt;}
.x3b_c00226{left:210.560000pt;}
.x27_c00226{left:218.880000pt;}
.xf_c00226{left:228.480000pt;}
.x5_c00226{left:238.080000pt;}
.x3d_c00226{left:239.360000pt;}
.x31_c00226{left:248.320000pt;}
.x4a_c00226{left:257.920000pt;}
.x1e_c00226{left:266.880000pt;}
.x40_c00226{left:268.160000pt;}
.x16_c00226{left:276.480000pt;}
.x46_c00226{left:278.400000pt;}
.x28_c00226{left:286.080000pt;}
.x1f_c00226{left:296.320000pt;}
.x33_c00226{left:297.600000pt;}
.x10_c00226{left:305.280000pt;}
.x6_c00226{left:323.840000pt;}
.x3e_c00226{left:325.760000pt;}
.x11_c00226{left:334.080000pt;}
.x23_c00226{left:343.680000pt;}
.x29_c00226{left:353.280000pt;}
.x43_c00226{left:354.560000pt;}
.x20_c00226{left:363.520000pt;}
.x24_c00226{left:373.120000pt;}
.x17_c00226{left:382.720000pt;}
.x44_c00226{left:384.000000pt;}
.x7_c00226{left:391.680000pt;}
.x12_c00226{left:392.960000pt;}
.x37_c00226{left:401.280000pt;}
.x35_c00226{left:402.560000pt;}
.x2d_c00226{left:410.880000pt;}
.x8_c00226{left:420.480000pt;}
.x3f_c00226{left:421.760000pt;}
.x2e_c00226{left:440.320000pt;}
.x18_c00226{left:449.920000pt;}
.x9_c00226{left:459.520000pt;}
.x38_c00226{left:469.120000pt;}
.x19_c00226{left:478.720000pt;}
.x41_c00226{left:487.680000pt;}
.x13_c00226{left:497.280000pt;}
.x2a_c00226{left:506.880000pt;}
.x42_c00226{left:515.200000pt;}
.x39_c00226{left:516.480000pt;}
.x21_c00226{left:517.760000pt;}
.x14_c00226{left:526.080000pt;}
.x1a_c00226{left:535.680000pt;}
.x32_c00226{left:545.280000pt;}
.x15_c00226{left:553.600000pt;}
.x4b_c00226{left:554.880000pt;}
.x25_c00226{left:563.840000pt;}
.xa_c00226{left:574.080000pt;}
.x2b_c00226{left:583.680000pt;}
.x1b_c00226{left:592.640000pt;}
.x26_c00226{left:600.960000pt;}
.x48_c00226{left:602.240000pt;}
.x45_c00226{left:611.200000pt;}
.x1_c00226{left:635.520000pt;}
.x2_c00226{left:666.880000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_735cd366adef3097810677d1.woff2')format("woff");}.ff1_c00227{font-family:ff1_c00227;line-height:1.109863;font-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_c00227{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m25_c00227{transform:matrix(0.217025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217025,0.000000,0.000000,0.250000,0,0);}
.m46_c00227{transform:matrix(0.232900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232900,0.000000,0.000000,0.250000,0,0);}
.m52_c00227{transform:matrix(0.233625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233625,0.000000,0.000000,0.250000,0,0);}
.m47_c00227{transform:matrix(0.245925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245925,0.000000,0.000000,0.250000,0,0);}
.md_c00227{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m53_c00227{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);}
.m4d_c00227{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00227{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);}
.m5f_c00227{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00227{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m23_c00227{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mf_c00227{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00227{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m29_c00227{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00227{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00227{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m17_c00227{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m8_c00227{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m44_c00227{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00227{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m20_c00227{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m24_c00227{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00227{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);}
.m5b_c00227{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00227{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m14_c00227{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m15_c00227{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);}
.m3f_c00227{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m54_c00227{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);}
.m48_c00227{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m5_c00227{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);}
.m0_c00227{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00227{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m21_c00227{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m7_c00227{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);}
.m16_c00227{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m4_c00227{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00227{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m66_c00227{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);}
.m37_c00227{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);}
.me_c00227{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m6_c00227{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m63_c00227{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);}
.m27_c00227{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m41_c00227{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);}
.m2_c00227{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);}
.m2d_c00227{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);}
.m4c_c00227{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m19_c00227{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00227{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.ma_c00227{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m13_c00227{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);}
.m4a_c00227{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00227{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);}
.mc_c00227{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);}
.m11_c00227{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m38_c00227{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m51_c00227{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m59_c00227{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m56_c00227{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);}
.m33_c00227{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m10_c00227{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00227{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);}
.m39_c00227{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);}
.m3_c00227{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m9_c00227{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00227{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m12_c00227{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);}
.m60_c00227{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00227{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m35_c00227{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m36_c00227{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);}
.m57_c00227{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m62_c00227{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00227{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m18_c00227{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m30_c00227{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);}
.m4e_c00227{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);}
.m45_c00227{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m50_c00227{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);}
.m5e_c00227{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m42_c00227{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m1_c00227{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00227{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m26_c00227{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);}
.m2a_c00227{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m58_c00227{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m64_c00227{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);}
.m22_c00227{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m34_c00227{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);}
.m49_c00227{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m61_c00227{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m31_c00227{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m43_c00227{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m32_c00227{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00227{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m40_c00227{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m55_c00227{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);}
.m28_c00227{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00227{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m65_c00227{transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00227{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m67_c00227{transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);}
.v1_c00227{vertical-align:-11.520000px;}
.v2_c00227{vertical-align:-8.640000px;}
.v0_c00227{vertical-align:0.000000px;}
.v3_c00227{vertical-align:14.400000px;}
.ls0_c00227{letter-spacing:0.000000px;}
.sc__c00227{text-shadow:none;}
.sc0_c00227{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00227{-webkit-text-stroke:0px transparent;}
.sc0_c00227{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00227{word-spacing:0.000000px;}
.ws0_c00227{word-spacing:2.647200px;}
.ws1_c00227{word-spacing:4.360320px;}
.ws2_c00227{word-spacing:9.810480px;}
.fc0_c00227{color:transparent;}
.fsc_c00227{font-size:34.560000px;}
.fsf_c00227{font-size:37.440000px;}
.fs1_c00227{font-size:40.320000px;}
.fs8_c00227{font-size:43.200000px;}
.fs9_c00227{font-size:46.080000px;}
.fs3_c00227{font-size:48.960000px;}
.fs2_c00227{font-size:51.840000px;}
.fs4_c00227{font-size:54.720000px;}
.fs6_c00227{font-size:57.600000px;}
.fs5_c00227{font-size:60.480000px;}
.fsb_c00227{font-size:63.360000px;}
.fs7_c00227{font-size:66.240000px;}
.fsa_c00227{font-size:69.120000px;}
.fsd_c00227{font-size:72.000000px;}
.fs0_c00227{font-size:74.880000px;}
.fs10_c00227{font-size:77.760000px;}
.fs11_c00227{font-size:86.400000px;}
.fse_c00227{font-size:100.800000px;}
.y0_c00227{bottom:0.000000px;}
.y7b_c00227{bottom:102.960000px;}
.y79_c00227{bottom:103.680000px;}
.y78_c00227{bottom:104.400000px;}
.y7a_c00227{bottom:105.120000px;}
.y77_c00227{bottom:108.000000px;}
.y74_c00227{bottom:146.160000px;}
.y75_c00227{bottom:146.880000px;}
.y72_c00227{bottom:148.320000px;}
.y73_c00227{bottom:149.040000px;}
.y71_c00227{bottom:150.480000px;}
.y76_c00227{bottom:151.200000px;}
.y70_c00227{bottom:151.920000px;}
.y6c_c00227{bottom:188.640000px;}
.y6b_c00227{bottom:189.360000px;}
.y6a_c00227{bottom:190.080000px;}
.y6d_c00227{bottom:191.520000px;}
.y6e_c00227{bottom:192.960000px;}
.y6f_c00227{bottom:193.680000px;}
.y66_c00227{bottom:231.840000px;}
.y67_c00227{bottom:232.560000px;}
.y64_c00227{bottom:233.280000px;}
.y68_c00227{bottom:234.000000px;}
.y65_c00227{bottom:234.720000px;}
.y69_c00227{bottom:236.160000px;}
.y61_c00227{bottom:275.040000px;}
.y63_c00227{bottom:275.760000px;}
.y62_c00227{bottom:277.920000px;}
.y60_c00227{bottom:278.640000px;}
.y5f_c00227{bottom:279.360000px;}
.y5e_c00227{bottom:280.080000px;}
.y5b_c00227{bottom:318.240000px;}
.y5d_c00227{bottom:319.680000px;}
.y5c_c00227{bottom:320.400000px;}
.y5a_c00227{bottom:321.120000px;}
.y59_c00227{bottom:321.840000px;}
.y58_c00227{bottom:323.280000px;}
.y56_c00227{bottom:362.160000px;}
.y55_c00227{bottom:364.320000px;}
.y54_c00227{bottom:365.040000px;}
.y57_c00227{bottom:365.760000px;}
.y53_c00227{bottom:366.480000px;}
.y4f_c00227{bottom:405.360000px;}
.y51_c00227{bottom:406.800000px;}
.y50_c00227{bottom:407.520000px;}
.y52_c00227{bottom:408.240000px;}
.y4e_c00227{bottom:409.680000px;}
.y49_c00227{bottom:448.560000px;}
.y4c_c00227{bottom:449.280000px;}
.y4d_c00227{bottom:450.000000px;}
.y4b_c00227{bottom:450.720000px;}
.y4a_c00227{bottom:451.440000px;}
.y48_c00227{bottom:452.160000px;}
.y46_c00227{bottom:491.760000px;}
.y43_c00227{bottom:492.480000px;}
.y45_c00227{bottom:493.920000px;}
.y44_c00227{bottom:494.640000px;}
.y47_c00227{bottom:495.360000px;}
.y41_c00227{bottom:535.680000px;}
.y42_c00227{bottom:536.400000px;}
.y3e_c00227{bottom:537.120000px;}
.y40_c00227{bottom:537.840000px;}
.y3f_c00227{bottom:538.560000px;}
.y3a_c00227{bottom:576.720000px;}
.y3c_c00227{bottom:578.880000px;}
.y3b_c00227{bottom:580.320000px;}
.y3d_c00227{bottom:581.040000px;}
.y36_c00227{bottom:621.360000px;}
.y37_c00227{bottom:622.080000px;}
.y35_c00227{bottom:623.520000px;}
.y39_c00227{bottom:624.240000px;}
.y38_c00227{bottom:624.960000px;}
.y33_c00227{bottom:664.560000px;}
.y32_c00227{bottom:665.280000px;}
.y31_c00227{bottom:666.720000px;}
.y34_c00227{bottom:667.440000px;}
.y2d_c00227{bottom:707.760000px;}
.y2f_c00227{bottom:708.480000px;}
.y30_c00227{bottom:709.920000px;}
.y2e_c00227{bottom:710.640000px;}
.y28_c00227{bottom:749.520000px;}
.y29_c00227{bottom:750.240000px;}
.y2c_c00227{bottom:750.960000px;}
.y2a_c00227{bottom:753.120000px;}
.y2b_c00227{bottom:753.840000px;}
.y24_c00227{bottom:793.440000px;}
.y23_c00227{bottom:794.880000px;}
.y27_c00227{bottom:795.600000px;}
.y26_c00227{bottom:796.320000px;}
.y25_c00227{bottom:797.040000px;}
.y22_c00227{bottom:836.640000px;}
.y1f_c00227{bottom:838.080000px;}
.y21_c00227{bottom:838.800000px;}
.y20_c00227{bottom:839.520000px;}
.y1d_c00227{bottom:879.120000px;}
.y1e_c00227{bottom:879.840000px;}
.y1a_c00227{bottom:881.280000px;}
.y1b_c00227{bottom:882.000000px;}
.y1c_c00227{bottom:882.720000px;}
.y19_c00227{bottom:914.400000px;}
.y16_c00227{bottom:922.320000px;}
.y18_c00227{bottom:923.040000px;}
.y13_c00227{bottom:923.760000px;}
.y17_c00227{bottom:924.480000px;}
.y14_c00227{bottom:925.200000px;}
.y15_c00227{bottom:925.920000px;}
.y12_c00227{bottom:957.600000px;}
.yf_c00227{bottom:966.240000px;}
.ye_c00227{bottom:966.960000px;}
.yd_c00227{bottom:968.400000px;}
.y11_c00227{bottom:969.120000px;}
.y10_c00227{bottom:969.840000px;}
.y7_c00227{bottom:1008.000000px;}
.ya_c00227{bottom:1008.720000px;}
.y8_c00227{bottom:1009.440000px;}
.yc_c00227{bottom:1010.160000px;}
.yb_c00227{bottom:1011.600000px;}
.y9_c00227{bottom:1012.320000px;}
.y4_c00227{bottom:1051.920000px;}
.y5_c00227{bottom:1053.360000px;}
.y2_c00227{bottom:1054.080000px;}
.y6_c00227{bottom:1054.800000px;}
.y3_c00227{bottom:1055.520000px;}
.y1_c00227{bottom:1099.440000px;}
.he_c00227{height:31.100625px;}
.h11_c00227{height:33.692344px;}
.h3_c00227{height:36.284062px;}
.ha_c00227{height:38.875781px;}
.hb_c00227{height:41.467500px;}
.h5_c00227{height:44.059219px;}
.h4_c00227{height:46.650937px;}
.h13_c00227{height:48.377813px;}
.h6_c00227{height:49.242656px;}
.h8_c00227{height:51.834375px;}
.h7_c00227{height:54.426094px;}
.hd_c00227{height:57.017812px;}
.h9_c00227{height:59.609531px;}
.hc_c00227{height:62.201250px;}
.hf_c00227{height:64.792969px;}
.h2_c00227{height:67.384687px;}
.h12_c00227{height:69.976406px;}
.h14_c00227{height:77.751563px;}
.h10_c00227{height:90.710156px;}
.h1_c00227{height:1148.250000px;}
.h0_c00227{height:1148.400000px;}
.w0_c00227{width:781.920000px;}
.w1_c00227{width:782.250000px;}
.x0_c00227{left:0.000000px;}
.x1f_c00227{left:56.160000px;}
.x2_c00227{left:60.480000px;}
.xd_c00227{left:61.920000px;}
.x26_c00227{left:63.360000px;}
.x3c_c00227{left:64.800000px;}
.x4f_c00227{left:66.960000px;}
.x57_c00227{left:68.400000px;}
.xe_c00227{left:83.520000px;}
.x20_c00227{left:94.320000px;}
.x4d_c00227{left:95.760000px;}
.x50_c00227{left:97.200000px;}
.xf_c00227{left:103.680000px;}
.x46_c00227{left:105.840000px;}
.x3_c00227{left:113.760000px;}
.x39_c00227{left:116.640000px;}
.x16_c00227{left:125.280000px;}
.x5e_c00227{left:129.600000px;}
.x42_c00227{left:138.240000px;}
.x17_c00227{left:146.880000px;}
.x53_c00227{left:148.320000px;}
.x21_c00227{left:156.960000px;}
.x27_c00227{left:158.400000px;}
.x5a_c00227{left:160.560000px;}
.x10_c00227{left:168.480000px;}
.x37_c00227{left:180.720000px;}
.x4_c00227{left:190.080000px;}
.x43_c00227{left:192.240000px;}
.x18_c00227{left:202.320000px;}
.x5f_c00227{left:204.480000px;}
.x5_c00227{left:212.400000px;}
.x3f_c00227{left:213.840000px;}
.x3d_c00227{left:223.200000px;}
.x4b_c00227{left:233.280000px;}
.x11_c00227{left:234.720000px;}
.x3e_c00227{left:244.800000px;}
.x44_c00227{left:246.240000px;}
.x19_c00227{left:255.600000px;}
.x6_c00227{left:266.400000px;}
.x4c_c00227{left:267.840000px;}
.x3a_c00227{left:277.200000px;}
.x22_c00227{left:278.640000px;}
.x28_c00227{left:288.000000px;}
.x1a_c00227{left:290.880000px;}
.x7_c00227{left:300.240000px;}
.x54_c00227{left:311.040000px;}
.x33_c00227{left:321.840000px;}
.x29_c00227{left:331.920000px;}
.x23_c00227{left:342.720000px;}
.x5b_c00227{left:344.880000px;}
.x12_c00227{left:354.240000px;}
.x2f_c00227{left:362.880000px;}
.x51_c00227{left:365.040000px;}
.x1b_c00227{left:375.120000px;}
.x55_c00227{left:376.560000px;}
.x8_c00227{left:385.920000px;}
.x34_c00227{left:397.440000px;}
.x24_c00227{left:406.800000px;}
.x58_c00227{left:408.960000px;}
.x40_c00227{left:418.320000px;}
.x1c_c00227{left:420.480000px;}
.x30_c00227{left:427.680000px;}
.x3b_c00227{left:429.840000px;}
.x35_c00227{left:440.640000px;}
.x2a_c00227{left:450.000000px;}
.x13_c00227{left:460.800000px;}
.x48_c00227{left:462.240000px;}
.x32_c00227{left:472.320000px;}
.x52_c00227{left:473.760000px;}
.x9_c00227{left:481.680000px;}
.x2b_c00227{left:483.120000px;}
.x47_c00227{left:492.480000px;}
.x41_c00227{left:494.640000px;}
.x14_c00227{left:504.720000px;}
.x25_c00227{left:516.240000px;}
.x2c_c00227{left:524.880000px;}
.x1d_c00227{left:527.040000px;}
.x5c_c00227{left:528.480000px;}
.x49_c00227{left:537.840000px;}
.x36_c00227{left:547.920000px;}
.x2d_c00227{left:558.000000px;}
.x59_c00227{left:564.480000px;}
.xa_c00227{left:568.800000px;}
.x4e_c00227{left:570.240000px;}
.x45_c00227{left:581.040000px;}
.x60_c00227{left:590.400000px;}
.x4a_c00227{left:591.840000px;}
.x1e_c00227{left:600.480000px;}
.x15_c00227{left:602.640000px;}
.x56_c00227{left:624.240000px;}
.xb_c00227{left:633.600000px;}
.x38_c00227{left:645.840000px;}
.xc_c00227{left:655.920000px;}
.x31_c00227{left:665.280000px;}
.x5d_c00227{left:667.440000px;}
.x2e_c00227{left:676.080000px;}
.x1_c00227{left:695.520000px;}
@media print{
.v1_c00227{vertical-align:-10.240000pt;}
.v2_c00227{vertical-align:-7.680000pt;}
.v0_c00227{vertical-align:0.000000pt;}
.v3_c00227{vertical-align:12.800000pt;}
.ls0_c00227{letter-spacing:0.000000pt;}
.ws3_c00227{word-spacing:0.000000pt;}
.ws0_c00227{word-spacing:2.353067pt;}
.ws1_c00227{word-spacing:3.875840pt;}
.ws2_c00227{word-spacing:8.720427pt;}
.fsc_c00227{font-size:30.720000pt;}
.fsf_c00227{font-size:33.280000pt;}
.fs1_c00227{font-size:35.840000pt;}
.fs8_c00227{font-size:38.400000pt;}
.fs9_c00227{font-size:40.960000pt;}
.fs3_c00227{font-size:43.520000pt;}
.fs2_c00227{font-size:46.080000pt;}
.fs4_c00227{font-size:48.640000pt;}
.fs6_c00227{font-size:51.200000pt;}
.fs5_c00227{font-size:53.760000pt;}
.fsb_c00227{font-size:56.320000pt;}
.fs7_c00227{font-size:58.880000pt;}
.fsa_c00227{font-size:61.440000pt;}
.fsd_c00227{font-size:64.000000pt;}
.fs0_c00227{font-size:66.560000pt;}
.fs10_c00227{font-size:69.120000pt;}
.fs11_c00227{font-size:76.800000pt;}
.fse_c00227{font-size:89.600000pt;}
.y0_c00227{bottom:0.000000pt;}
.y7b_c00227{bottom:91.520000pt;}
.y79_c00227{bottom:92.160000pt;}
.y78_c00227{bottom:92.800000pt;}
.y7a_c00227{bottom:93.440000pt;}
.y77_c00227{bottom:96.000000pt;}
.y74_c00227{bottom:129.920000pt;}
.y75_c00227{bottom:130.560000pt;}
.y72_c00227{bottom:131.840000pt;}
.y73_c00227{bottom:132.480000pt;}
.y71_c00227{bottom:133.760000pt;}
.y76_c00227{bottom:134.400000pt;}
.y70_c00227{bottom:135.040000pt;}
.y6c_c00227{bottom:167.680000pt;}
.y6b_c00227{bottom:168.320000pt;}
.y6a_c00227{bottom:168.960000pt;}
.y6d_c00227{bottom:170.240000pt;}
.y6e_c00227{bottom:171.520000pt;}
.y6f_c00227{bottom:172.160000pt;}
.y66_c00227{bottom:206.080000pt;}
.y67_c00227{bottom:206.720000pt;}
.y64_c00227{bottom:207.360000pt;}
.y68_c00227{bottom:208.000000pt;}
.y65_c00227{bottom:208.640000pt;}
.y69_c00227{bottom:209.920000pt;}
.y61_c00227{bottom:244.480000pt;}
.y63_c00227{bottom:245.120000pt;}
.y62_c00227{bottom:247.040000pt;}
.y60_c00227{bottom:247.680000pt;}
.y5f_c00227{bottom:248.320000pt;}
.y5e_c00227{bottom:248.960000pt;}
.y5b_c00227{bottom:282.880000pt;}
.y5d_c00227{bottom:284.160000pt;}
.y5c_c00227{bottom:284.800000pt;}
.y5a_c00227{bottom:285.440000pt;}
.y59_c00227{bottom:286.080000pt;}
.y58_c00227{bottom:287.360000pt;}
.y56_c00227{bottom:321.920000pt;}
.y55_c00227{bottom:323.840000pt;}
.y54_c00227{bottom:324.480000pt;}
.y57_c00227{bottom:325.120000pt;}
.y53_c00227{bottom:325.760000pt;}
.y4f_c00227{bottom:360.320000pt;}
.y51_c00227{bottom:361.600000pt;}
.y50_c00227{bottom:362.240000pt;}
.y52_c00227{bottom:362.880000pt;}
.y4e_c00227{bottom:364.160000pt;}
.y49_c00227{bottom:398.720000pt;}
.y4c_c00227{bottom:399.360000pt;}
.y4d_c00227{bottom:400.000000pt;}
.y4b_c00227{bottom:400.640000pt;}
.y4a_c00227{bottom:401.280000pt;}
.y48_c00227{bottom:401.920000pt;}
.y46_c00227{bottom:437.120000pt;}
.y43_c00227{bottom:437.760000pt;}
.y45_c00227{bottom:439.040000pt;}
.y44_c00227{bottom:439.680000pt;}
.y47_c00227{bottom:440.320000pt;}
.y41_c00227{bottom:476.160000pt;}
.y42_c00227{bottom:476.800000pt;}
.y3e_c00227{bottom:477.440000pt;}
.y40_c00227{bottom:478.080000pt;}
.y3f_c00227{bottom:478.720000pt;}
.y3a_c00227{bottom:512.640000pt;}
.y3c_c00227{bottom:514.560000pt;}
.y3b_c00227{bottom:515.840000pt;}
.y3d_c00227{bottom:516.480000pt;}
.y36_c00227{bottom:552.320000pt;}
.y37_c00227{bottom:552.960000pt;}
.y35_c00227{bottom:554.240000pt;}
.y39_c00227{bottom:554.880000pt;}
.y38_c00227{bottom:555.520000pt;}
.y33_c00227{bottom:590.720000pt;}
.y32_c00227{bottom:591.360000pt;}
.y31_c00227{bottom:592.640000pt;}
.y34_c00227{bottom:593.280000pt;}
.y2d_c00227{bottom:629.120000pt;}
.y2f_c00227{bottom:629.760000pt;}
.y30_c00227{bottom:631.040000pt;}
.y2e_c00227{bottom:631.680000pt;}
.y28_c00227{bottom:666.240000pt;}
.y29_c00227{bottom:666.880000pt;}
.y2c_c00227{bottom:667.520000pt;}
.y2a_c00227{bottom:669.440000pt;}
.y2b_c00227{bottom:670.080000pt;}
.y24_c00227{bottom:705.280000pt;}
.y23_c00227{bottom:706.560000pt;}
.y27_c00227{bottom:707.200000pt;}
.y26_c00227{bottom:707.840000pt;}
.y25_c00227{bottom:708.480000pt;}
.y22_c00227{bottom:743.680000pt;}
.y1f_c00227{bottom:744.960000pt;}
.y21_c00227{bottom:745.600000pt;}
.y20_c00227{bottom:746.240000pt;}
.y1d_c00227{bottom:781.440000pt;}
.y1e_c00227{bottom:782.080000pt;}
.y1a_c00227{bottom:783.360000pt;}
.y1b_c00227{bottom:784.000000pt;}
.y1c_c00227{bottom:784.640000pt;}
.y19_c00227{bottom:812.800000pt;}
.y16_c00227{bottom:819.840000pt;}
.y18_c00227{bottom:820.480000pt;}
.y13_c00227{bottom:821.120000pt;}
.y17_c00227{bottom:821.760000pt;}
.y14_c00227{bottom:822.400000pt;}
.y15_c00227{bottom:823.040000pt;}
.y12_c00227{bottom:851.200000pt;}
.yf_c00227{bottom:858.880000pt;}
.ye_c00227{bottom:859.520000pt;}
.yd_c00227{bottom:860.800000pt;}
.y11_c00227{bottom:861.440000pt;}
.y10_c00227{bottom:862.080000pt;}
.y7_c00227{bottom:896.000000pt;}
.ya_c00227{bottom:896.640000pt;}
.y8_c00227{bottom:897.280000pt;}
.yc_c00227{bottom:897.920000pt;}
.yb_c00227{bottom:899.200000pt;}
.y9_c00227{bottom:899.840000pt;}
.y4_c00227{bottom:935.040000pt;}
.y5_c00227{bottom:936.320000pt;}
.y2_c00227{bottom:936.960000pt;}
.y6_c00227{bottom:937.600000pt;}
.y3_c00227{bottom:938.240000pt;}
.y1_c00227{bottom:977.280000pt;}
.he_c00227{height:27.645000pt;}
.h11_c00227{height:29.948750pt;}
.h3_c00227{height:32.252500pt;}
.ha_c00227{height:34.556250pt;}
.hb_c00227{height:36.860000pt;}
.h5_c00227{height:39.163750pt;}
.h4_c00227{height:41.467500pt;}
.h13_c00227{height:43.002500pt;}
.h6_c00227{height:43.771250pt;}
.h8_c00227{height:46.075000pt;}
.h7_c00227{height:48.378750pt;}
.hd_c00227{height:50.682500pt;}
.h9_c00227{height:52.986250pt;}
.hc_c00227{height:55.290000pt;}
.hf_c00227{height:57.593750pt;}
.h2_c00227{height:59.897500pt;}
.h12_c00227{height:62.201250pt;}
.h14_c00227{height:69.112500pt;}
.h10_c00227{height:80.631250pt;}
.h1_c00227{height:1020.666667pt;}
.h0_c00227{height:1020.800000pt;}
.w0_c00227{width:695.040000pt;}
.w1_c00227{width:695.333333pt;}
.x0_c00227{left:0.000000pt;}
.x1f_c00227{left:49.920000pt;}
.x2_c00227{left:53.760000pt;}
.xd_c00227{left:55.040000pt;}
.x26_c00227{left:56.320000pt;}
.x3c_c00227{left:57.600000pt;}
.x4f_c00227{left:59.520000pt;}
.x57_c00227{left:60.800000pt;}
.xe_c00227{left:74.240000pt;}
.x20_c00227{left:83.840000pt;}
.x4d_c00227{left:85.120000pt;}
.x50_c00227{left:86.400000pt;}
.xf_c00227{left:92.160000pt;}
.x46_c00227{left:94.080000pt;}
.x3_c00227{left:101.120000pt;}
.x39_c00227{left:103.680000pt;}
.x16_c00227{left:111.360000pt;}
.x5e_c00227{left:115.200000pt;}
.x42_c00227{left:122.880000pt;}
.x17_c00227{left:130.560000pt;}
.x53_c00227{left:131.840000pt;}
.x21_c00227{left:139.520000pt;}
.x27_c00227{left:140.800000pt;}
.x5a_c00227{left:142.720000pt;}
.x10_c00227{left:149.760000pt;}
.x37_c00227{left:160.640000pt;}
.x4_c00227{left:168.960000pt;}
.x43_c00227{left:170.880000pt;}
.x18_c00227{left:179.840000pt;}
.x5f_c00227{left:181.760000pt;}
.x5_c00227{left:188.800000pt;}
.x3f_c00227{left:190.080000pt;}
.x3d_c00227{left:198.400000pt;}
.x4b_c00227{left:207.360000pt;}
.x11_c00227{left:208.640000pt;}
.x3e_c00227{left:217.600000pt;}
.x44_c00227{left:218.880000pt;}
.x19_c00227{left:227.200000pt;}
.x6_c00227{left:236.800000pt;}
.x4c_c00227{left:238.080000pt;}
.x3a_c00227{left:246.400000pt;}
.x22_c00227{left:247.680000pt;}
.x28_c00227{left:256.000000pt;}
.x1a_c00227{left:258.560000pt;}
.x7_c00227{left:266.880000pt;}
.x54_c00227{left:276.480000pt;}
.x33_c00227{left:286.080000pt;}
.x29_c00227{left:295.040000pt;}
.x23_c00227{left:304.640000pt;}
.x5b_c00227{left:306.560000pt;}
.x12_c00227{left:314.880000pt;}
.x2f_c00227{left:322.560000pt;}
.x51_c00227{left:324.480000pt;}
.x1b_c00227{left:333.440000pt;}
.x55_c00227{left:334.720000pt;}
.x8_c00227{left:343.040000pt;}
.x34_c00227{left:353.280000pt;}
.x24_c00227{left:361.600000pt;}
.x58_c00227{left:363.520000pt;}
.x40_c00227{left:371.840000pt;}
.x1c_c00227{left:373.760000pt;}
.x30_c00227{left:380.160000pt;}
.x3b_c00227{left:382.080000pt;}
.x35_c00227{left:391.680000pt;}
.x2a_c00227{left:400.000000pt;}
.x13_c00227{left:409.600000pt;}
.x48_c00227{left:410.880000pt;}
.x32_c00227{left:419.840000pt;}
.x52_c00227{left:421.120000pt;}
.x9_c00227{left:428.160000pt;}
.x2b_c00227{left:429.440000pt;}
.x47_c00227{left:437.760000pt;}
.x41_c00227{left:439.680000pt;}
.x14_c00227{left:448.640000pt;}
.x25_c00227{left:458.880000pt;}
.x2c_c00227{left:466.560000pt;}
.x1d_c00227{left:468.480000pt;}
.x5c_c00227{left:469.760000pt;}
.x49_c00227{left:478.080000pt;}
.x36_c00227{left:487.040000pt;}
.x2d_c00227{left:496.000000pt;}
.x59_c00227{left:501.760000pt;}
.xa_c00227{left:505.600000pt;}
.x4e_c00227{left:506.880000pt;}
.x45_c00227{left:516.480000pt;}
.x60_c00227{left:524.800000pt;}
.x4a_c00227{left:526.080000pt;}
.x1e_c00227{left:533.760000pt;}
.x15_c00227{left:535.680000pt;}
.x56_c00227{left:554.880000pt;}
.xb_c00227{left:563.200000pt;}
.x38_c00227{left:574.080000pt;}
.xc_c00227{left:583.040000pt;}
.x31_c00227{left:591.360000pt;}
.x5d_c00227{left:593.280000pt;}
.x2e_c00227{left:600.960000pt;}
.x1_c00227{left:618.240000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9b46fff9da73fb0f9ba1327c.woff2')format("woff");}.ff1_c00228{font-family:ff1_c00228;line-height:1.109863;font-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_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);}
.m59_c00228{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);}
.m42_c00228{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);}
.m4b_c00228{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m12_c00228{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00228{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);}
.m46_c00228{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m54_c00228{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m43_c00228{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m24_c00228{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m41_c00228{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m2_c00228{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00228{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00228{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m34_c00228{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00228{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m35_c00228{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m58_c00228{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mb_c00228{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00228{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m0_c00228{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m36_c00228{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00228{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m27_c00228{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);}
.m2b_c00228{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.me_c00228{transform:matrix(0.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);}
.m5_c00228{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m47_c00228{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);}
.m4_c00228{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);}
.m15_c00228{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m28_c00228{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m9_c00228{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m29_c00228{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);}
.m14_c00228{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_c00228{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m21_c00228{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m51_c00228{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m40_c00228{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);}
.m10_c00228{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00228{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.md_c00228{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m30_c00228{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m55_c00228{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m52_c00228{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);}
.m22_c00228{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m45_c00228{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);}
.m48_c00228{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00228{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);}
.m49_c00228{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);}
.mc_c00228{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00228{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m8_c00228{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m18_c00228{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m11_c00228{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m26_c00228{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);}
.m19_c00228{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m39_c00228{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00228{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.mf_c00228{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);}
.m6_c00228{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m3_c00228{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m57_c00228{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00228{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);}
.m17_c00228{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00228{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.ma_c00228{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m31_c00228{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);}
.m50_c00228{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);}
.m3a_c00228{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m13_c00228{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00228{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m44_c00228{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);}
.m56_c00228{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m37_c00228{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00228{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00228{transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);}
.m1_c00228{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m7_c00228{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m32_c00228{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00228{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);}
.m16_c00228{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m20_c00228{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);}
.m25_c00228{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00228{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00228{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m33_c00228{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);}
.m3e_c00228{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m23_c00228{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);}
.m53_c00228{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00228{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);}
.m4a_c00228{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00228{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m38_c00228{transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);}
.v0_c00228{vertical-align:0.000000px;}
.ls0_c00228{letter-spacing:0.000000px;}
.sc__c00228{text-shadow:none;}
.sc0_c00228{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00228{-webkit-text-stroke:0px transparent;}
.sc0_c00228{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00228{word-spacing:-0.295332px;}
.ws1_c00228{word-spacing:0.000000px;}
.fc0_c00228{color:transparent;}
.fsd_c00228{font-size:20.160000px;}
.fs1_c00228{font-size:34.560000px;}
.fs5_c00228{font-size:37.440000px;}
.fse_c00228{font-size:40.320000px;}
.fs7_c00228{font-size:43.200000px;}
.fs3_c00228{font-size:46.080000px;}
.fs4_c00228{font-size:48.960000px;}
.fs6_c00228{font-size:51.840000px;}
.fsc_c00228{font-size:54.720000px;}
.fs9_c00228{font-size:57.600000px;}
.fs2_c00228{font-size:60.480000px;}
.fsa_c00228{font-size:63.360000px;}
.fsb_c00228{font-size:66.240000px;}
.fs8_c00228{font-size:69.120000px;}
.fs0_c00228{font-size:72.000000px;}
.y0_c00228{bottom:0.000000px;}
.y70_c00228{bottom:61.920000px;}
.y6f_c00228{bottom:63.360000px;}
.y71_c00228{bottom:64.080000px;}
.y72_c00228{bottom:64.800000px;}
.y6e_c00228{bottom:66.240000px;}
.y6a_c00228{bottom:105.840000px;}
.y6d_c00228{bottom:106.560000px;}
.y6b_c00228{bottom:107.280000px;}
.y6c_c00228{bottom:108.000000px;}
.y69_c00228{bottom:108.720000px;}
.y68_c00228{bottom:112.320000px;}
.y65_c00228{bottom:149.040000px;}
.y67_c00228{bottom:149.760000px;}
.y66_c00228{bottom:151.200000px;}
.y64_c00228{bottom:151.920000px;}
.y63_c00228{bottom:152.640000px;}
.y62_c00228{bottom:153.360000px;}
.y5e_c00228{bottom:192.240000px;}
.y61_c00228{bottom:192.960000px;}
.y5f_c00228{bottom:194.400000px;}
.y60_c00228{bottom:195.120000px;}
.y5d_c00228{bottom:195.840000px;}
.y5c_c00228{bottom:196.560000px;}
.y58_c00228{bottom:234.720000px;}
.y5b_c00228{bottom:235.440000px;}
.y56_c00228{bottom:236.160000px;}
.y57_c00228{bottom:236.880000px;}
.y59_c00228{bottom:237.600000px;}
.y5a_c00228{bottom:238.320000px;}
.y55_c00228{bottom:239.040000px;}
.y53_c00228{bottom:277.920000px;}
.y52_c00228{bottom:280.800000px;}
.y54_c00228{bottom:281.520000px;}
.y51_c00228{bottom:282.240000px;}
.y50_c00228{bottom:282.960000px;}
.y4f_c00228{bottom:321.120000px;}
.y4d_c00228{bottom:321.840000px;}
.y4e_c00228{bottom:323.280000px;}
.y4c_c00228{bottom:324.000000px;}
.y4b_c00228{bottom:324.720000px;}
.y48_c00228{bottom:363.600000px;}
.y4a_c00228{bottom:364.320000px;}
.y49_c00228{bottom:365.040000px;}
.y45_c00228{bottom:367.200000px;}
.y47_c00228{bottom:367.920000px;}
.y46_c00228{bottom:368.640000px;}
.y42_c00228{bottom:407.520000px;}
.y43_c00228{bottom:409.680000px;}
.y44_c00228{bottom:410.400000px;}
.y41_c00228{bottom:411.120000px;}
.y3f_c00228{bottom:460.800000px;}
.y3d_c00228{bottom:461.520000px;}
.y40_c00228{bottom:462.240000px;}
.y3c_c00228{bottom:463.680000px;}
.y3e_c00228{bottom:464.400000px;}
.y3b_c00228{bottom:465.840000px;}
.y3a_c00228{bottom:504.000000px;}
.y37_c00228{bottom:504.720000px;}
.y39_c00228{bottom:505.440000px;}
.y36_c00228{bottom:506.880000px;}
.y35_c00228{bottom:507.600000px;}
.y38_c00228{bottom:508.320000px;}
.y34_c00228{bottom:509.040000px;}
.y33_c00228{bottom:547.920000px;}
.y31_c00228{bottom:548.640000px;}
.y32_c00228{bottom:550.080000px;}
.y30_c00228{bottom:550.800000px;}
.y2c_c00228{bottom:601.920000px;}
.y2d_c00228{bottom:602.640000px;}
.y2f_c00228{bottom:604.080000px;}
.y2e_c00228{bottom:604.800000px;}
.y2b_c00228{bottom:645.120000px;}
.y27_c00228{bottom:645.840000px;}
.y29_c00228{bottom:647.280000px;}
.y2a_c00228{bottom:648.000000px;}
.y28_c00228{bottom:648.720000px;}
.y24_c00228{bottom:688.320000px;}
.y26_c00228{bottom:690.480000px;}
.y25_c00228{bottom:691.200000px;}
.y22_c00228{bottom:731.520000px;}
.y23_c00228{bottom:733.680000px;}
.y21_c00228{bottom:734.400000px;}
.y20_c00228{bottom:774.720000px;}
.y1f_c00228{bottom:775.440000px;}
.y1b_c00228{bottom:776.880000px;}
.y1c_c00228{bottom:777.600000px;}
.y1d_c00228{bottom:778.320000px;}
.y1e_c00228{bottom:779.040000px;}
.y1a_c00228{bottom:818.640000px;}
.y18_c00228{bottom:820.080000px;}
.y19_c00228{bottom:820.800000px;}
.y16_c00228{bottom:860.400000px;}
.y17_c00228{bottom:861.120000px;}
.y13_c00228{bottom:861.840000px;}
.y15_c00228{bottom:863.280000px;}
.y14_c00228{bottom:864.000000px;}
.y11_c00228{bottom:915.840000px;}
.y12_c00228{bottom:916.560000px;}
.yd_c00228{bottom:957.600000px;}
.y10_c00228{bottom:959.040000px;}
.yf_c00228{bottom:959.760000px;}
.ye_c00228{bottom:960.480000px;}
.yb_c00228{bottom:1000.080000px;}
.y9_c00228{bottom:1000.800000px;}
.y7_c00228{bottom:1001.520000px;}
.yc_c00228{bottom:1002.240000px;}
.y8_c00228{bottom:1002.960000px;}
.ya_c00228{bottom:1003.680000px;}
.y6_c00228{bottom:1042.560000px;}
.y3_c00228{bottom:1044.000000px;}
.y5_c00228{bottom:1045.440000px;}
.y2_c00228{bottom:1046.160000px;}
.y4_c00228{bottom:1046.880000px;}
.y1_c00228{bottom:1094.400000px;}
.hf_c00228{height:18.142031px;}
.h3_c00228{height:31.100625px;}
.h7_c00228{height:33.692344px;}
.h10_c00228{height:36.284062px;}
.h9_c00228{height:38.875781px;}
.h5_c00228{height:41.467500px;}
.h6_c00228{height:44.059219px;}
.h8_c00228{height:46.650937px;}
.he_c00228{height:49.242656px;}
.hb_c00228{height:51.834375px;}
.h4_c00228{height:54.426094px;}
.hc_c00228{height:57.017812px;}
.hd_c00228{height:59.609531px;}
.ha_c00228{height:62.201250px;}
.h2_c00228{height:64.792969px;}
.h0_c00228{height:1152.720000px;}
.h1_c00228{height:1152.750000px;}
.w1_c00228{width:788.250000px;}
.w0_c00228{width:788.400000px;}
.x0_c00228{left:0.000000px;}
.x21_c00228{left:69.840000px;}
.x2_c00228{left:71.280000px;}
.x3e_c00228{left:72.720000px;}
.x57_c00228{left:74.880000px;}
.x3f_c00228{left:92.880000px;}
.x3_c00228{left:102.240000px;}
.x1a_c00228{left:103.680000px;}
.x36_c00228{left:113.040000px;}
.x4a_c00228{left:114.480000px;}
.x22_c00228{left:124.560000px;}
.x2e_c00228{left:144.720000px;}
.x26_c00228{left:155.520000px;}
.x56_c00228{left:156.960000px;}
.x4_c00228{left:166.320000px;}
.xd_c00228{left:177.840000px;}
.x37_c00228{left:188.640000px;}
.x1b_c00228{left:198.720000px;}
.x27_c00228{left:200.160000px;}
.x49_c00228{left:209.520000px;}
.x43_c00228{left:210.960000px;}
.x3b_c00228{left:220.320000px;}
.xe_c00228{left:222.480000px;}
.x2f_c00228{left:231.840000px;}
.x14_c00228{left:242.640000px;}
.x31_c00228{left:244.080000px;}
.x1c_c00228{left:252.720000px;}
.x38_c00228{left:254.880000px;}
.x5_c00228{left:264.960000px;}
.x32_c00228{left:275.040000px;}
.x28_c00228{left:285.840000px;}
.x1d_c00228{left:296.640000px;}
.x29_c00228{left:308.160000px;}
.xf_c00228{left:318.960000px;}
.x6_c00228{left:329.760000px;}
.x2a_c00228{left:340.560000px;}
.x10_c00228{left:351.360000px;}
.x7_c00228{left:360.720000px;}
.x23_c00228{left:362.880000px;}
.x4e_c00228{left:372.240000px;}
.x44_c00228{left:382.320000px;}
.x15_c00228{left:383.760000px;}
.x30_c00228{left:393.840000px;}
.x40_c00228{left:395.280000px;}
.x4b_c00228{left:403.920000px;}
.x4f_c00228{left:405.360000px;}
.x8_c00228{left:415.440000px;}
.x33_c00228{left:416.880000px;}
.x2b_c00228{left:426.240000px;}
.x4c_c00228{left:427.680000px;}
.x11_c00228{left:437.760000px;}
.x53_c00228{left:447.120000px;}
.x16_c00228{left:448.560000px;}
.x9_c00228{left:459.360000px;}
.x2c_c00228{left:480.960000px;}
.x41_c00228{left:490.320000px;}
.x45_c00228{left:493.200000px;}
.x55_c00228{left:500.400000px;}
.x39_c00228{left:501.840000px;}
.x12_c00228{left:503.280000px;}
.x3c_c00228{left:512.640000px;}
.x34_c00228{left:514.080000px;}
.x58_c00228{left:522.720000px;}
.x1e_c00228{left:524.160000px;}
.x50_c00228{left:533.520000px;}
.x46_c00228{left:534.960000px;}
.x3a_c00228{left:536.400000px;}
.x2d_c00228{left:545.040000px;}
.x13_c00228{left:546.480000px;}
.x3d_c00228{left:555.840000px;}
.x51_c00228{left:566.640000px;}
.x17_c00228{left:568.080000px;}
.xa_c00228{left:578.160000px;}
.x54_c00228{left:587.520000px;}
.x1f_c00228{left:589.680000px;}
.x18_c00228{left:599.040000px;}
.xb_c00228{left:609.120000px;}
.x52_c00228{left:610.560000px;}
.x24_c00228{left:619.920000px;}
.x47_c00228{left:621.360000px;}
.x42_c00228{left:631.440000px;}
.x19_c00228{left:642.960000px;}
.x4d_c00228{left:651.600000px;}
.x59_c00228{left:653.760000px;}
.x35_c00228{left:663.840000px;}
.x20_c00228{left:665.280000px;}
.xc_c00228{left:673.920000px;}
.x48_c00228{left:683.280000px;}
.x25_c00228{left:684.720000px;}
.x1_c00228{left:698.400000px;}
@media print{
.v0_c00228{vertical-align:0.000000pt;}
.ls0_c00228{letter-spacing:0.000000pt;}
.ws0_c00228{word-spacing:-0.262518pt;}
.ws1_c00228{word-spacing:0.000000pt;}
.fsd_c00228{font-size:17.920000pt;}
.fs1_c00228{font-size:30.720000pt;}
.fs5_c00228{font-size:33.280000pt;}
.fse_c00228{font-size:35.840000pt;}
.fs7_c00228{font-size:38.400000pt;}
.fs3_c00228{font-size:40.960000pt;}
.fs4_c00228{font-size:43.520000pt;}
.fs6_c00228{font-size:46.080000pt;}
.fsc_c00228{font-size:48.640000pt;}
.fs9_c00228{font-size:51.200000pt;}
.fs2_c00228{font-size:53.760000pt;}
.fsa_c00228{font-size:56.320000pt;}
.fsb_c00228{font-size:58.880000pt;}
.fs8_c00228{font-size:61.440000pt;}
.fs0_c00228{font-size:64.000000pt;}
.y0_c00228{bottom:0.000000pt;}
.y70_c00228{bottom:55.040000pt;}
.y6f_c00228{bottom:56.320000pt;}
.y71_c00228{bottom:56.960000pt;}
.y72_c00228{bottom:57.600000pt;}
.y6e_c00228{bottom:58.880000pt;}
.y6a_c00228{bottom:94.080000pt;}
.y6d_c00228{bottom:94.720000pt;}
.y6b_c00228{bottom:95.360000pt;}
.y6c_c00228{bottom:96.000000pt;}
.y69_c00228{bottom:96.640000pt;}
.y68_c00228{bottom:99.840000pt;}
.y65_c00228{bottom:132.480000pt;}
.y67_c00228{bottom:133.120000pt;}
.y66_c00228{bottom:134.400000pt;}
.y64_c00228{bottom:135.040000pt;}
.y63_c00228{bottom:135.680000pt;}
.y62_c00228{bottom:136.320000pt;}
.y5e_c00228{bottom:170.880000pt;}
.y61_c00228{bottom:171.520000pt;}
.y5f_c00228{bottom:172.800000pt;}
.y60_c00228{bottom:173.440000pt;}
.y5d_c00228{bottom:174.080000pt;}
.y5c_c00228{bottom:174.720000pt;}
.y58_c00228{bottom:208.640000pt;}
.y5b_c00228{bottom:209.280000pt;}
.y56_c00228{bottom:209.920000pt;}
.y57_c00228{bottom:210.560000pt;}
.y59_c00228{bottom:211.200000pt;}
.y5a_c00228{bottom:211.840000pt;}
.y55_c00228{bottom:212.480000pt;}
.y53_c00228{bottom:247.040000pt;}
.y52_c00228{bottom:249.600000pt;}
.y54_c00228{bottom:250.240000pt;}
.y51_c00228{bottom:250.880000pt;}
.y50_c00228{bottom:251.520000pt;}
.y4f_c00228{bottom:285.440000pt;}
.y4d_c00228{bottom:286.080000pt;}
.y4e_c00228{bottom:287.360000pt;}
.y4c_c00228{bottom:288.000000pt;}
.y4b_c00228{bottom:288.640000pt;}
.y48_c00228{bottom:323.200000pt;}
.y4a_c00228{bottom:323.840000pt;}
.y49_c00228{bottom:324.480000pt;}
.y45_c00228{bottom:326.400000pt;}
.y47_c00228{bottom:327.040000pt;}
.y46_c00228{bottom:327.680000pt;}
.y42_c00228{bottom:362.240000pt;}
.y43_c00228{bottom:364.160000pt;}
.y44_c00228{bottom:364.800000pt;}
.y41_c00228{bottom:365.440000pt;}
.y3f_c00228{bottom:409.600000pt;}
.y3d_c00228{bottom:410.240000pt;}
.y40_c00228{bottom:410.880000pt;}
.y3c_c00228{bottom:412.160000pt;}
.y3e_c00228{bottom:412.800000pt;}
.y3b_c00228{bottom:414.080000pt;}
.y3a_c00228{bottom:448.000000pt;}
.y37_c00228{bottom:448.640000pt;}
.y39_c00228{bottom:449.280000pt;}
.y36_c00228{bottom:450.560000pt;}
.y35_c00228{bottom:451.200000pt;}
.y38_c00228{bottom:451.840000pt;}
.y34_c00228{bottom:452.480000pt;}
.y33_c00228{bottom:487.040000pt;}
.y31_c00228{bottom:487.680000pt;}
.y32_c00228{bottom:488.960000pt;}
.y30_c00228{bottom:489.600000pt;}
.y2c_c00228{bottom:535.040000pt;}
.y2d_c00228{bottom:535.680000pt;}
.y2f_c00228{bottom:536.960000pt;}
.y2e_c00228{bottom:537.600000pt;}
.y2b_c00228{bottom:573.440000pt;}
.y27_c00228{bottom:574.080000pt;}
.y29_c00228{bottom:575.360000pt;}
.y2a_c00228{bottom:576.000000pt;}
.y28_c00228{bottom:576.640000pt;}
.y24_c00228{bottom:611.840000pt;}
.y26_c00228{bottom:613.760000pt;}
.y25_c00228{bottom:614.400000pt;}
.y22_c00228{bottom:650.240000pt;}
.y23_c00228{bottom:652.160000pt;}
.y21_c00228{bottom:652.800000pt;}
.y20_c00228{bottom:688.640000pt;}
.y1f_c00228{bottom:689.280000pt;}
.y1b_c00228{bottom:690.560000pt;}
.y1c_c00228{bottom:691.200000pt;}
.y1d_c00228{bottom:691.840000pt;}
.y1e_c00228{bottom:692.480000pt;}
.y1a_c00228{bottom:727.680000pt;}
.y18_c00228{bottom:728.960000pt;}
.y19_c00228{bottom:729.600000pt;}
.y16_c00228{bottom:764.800000pt;}
.y17_c00228{bottom:765.440000pt;}
.y13_c00228{bottom:766.080000pt;}
.y15_c00228{bottom:767.360000pt;}
.y14_c00228{bottom:768.000000pt;}
.y11_c00228{bottom:814.080000pt;}
.y12_c00228{bottom:814.720000pt;}
.yd_c00228{bottom:851.200000pt;}
.y10_c00228{bottom:852.480000pt;}
.yf_c00228{bottom:853.120000pt;}
.ye_c00228{bottom:853.760000pt;}
.yb_c00228{bottom:888.960000pt;}
.y9_c00228{bottom:889.600000pt;}
.y7_c00228{bottom:890.240000pt;}
.yc_c00228{bottom:890.880000pt;}
.y8_c00228{bottom:891.520000pt;}
.ya_c00228{bottom:892.160000pt;}
.y6_c00228{bottom:926.720000pt;}
.y3_c00228{bottom:928.000000pt;}
.y5_c00228{bottom:929.280000pt;}
.y2_c00228{bottom:929.920000pt;}
.y4_c00228{bottom:930.560000pt;}
.y1_c00228{bottom:972.800000pt;}
.hf_c00228{height:16.126250pt;}
.h3_c00228{height:27.645000pt;}
.h7_c00228{height:29.948750pt;}
.h10_c00228{height:32.252500pt;}
.h9_c00228{height:34.556250pt;}
.h5_c00228{height:36.860000pt;}
.h6_c00228{height:39.163750pt;}
.h8_c00228{height:41.467500pt;}
.he_c00228{height:43.771250pt;}
.hb_c00228{height:46.075000pt;}
.h4_c00228{height:48.378750pt;}
.hc_c00228{height:50.682500pt;}
.hd_c00228{height:52.986250pt;}
.ha_c00228{height:55.290000pt;}
.h2_c00228{height:57.593750pt;}
.h0_c00228{height:1024.640000pt;}
.h1_c00228{height:1024.666667pt;}
.w1_c00228{width:700.666667pt;}
.w0_c00228{width:700.800000pt;}
.x0_c00228{left:0.000000pt;}
.x21_c00228{left:62.080000pt;}
.x2_c00228{left:63.360000pt;}
.x3e_c00228{left:64.640000pt;}
.x57_c00228{left:66.560000pt;}
.x3f_c00228{left:82.560000pt;}
.x3_c00228{left:90.880000pt;}
.x1a_c00228{left:92.160000pt;}
.x36_c00228{left:100.480000pt;}
.x4a_c00228{left:101.760000pt;}
.x22_c00228{left:110.720000pt;}
.x2e_c00228{left:128.640000pt;}
.x26_c00228{left:138.240000pt;}
.x56_c00228{left:139.520000pt;}
.x4_c00228{left:147.840000pt;}
.xd_c00228{left:158.080000pt;}
.x37_c00228{left:167.680000pt;}
.x1b_c00228{left:176.640000pt;}
.x27_c00228{left:177.920000pt;}
.x49_c00228{left:186.240000pt;}
.x43_c00228{left:187.520000pt;}
.x3b_c00228{left:195.840000pt;}
.xe_c00228{left:197.760000pt;}
.x2f_c00228{left:206.080000pt;}
.x14_c00228{left:215.680000pt;}
.x31_c00228{left:216.960000pt;}
.x1c_c00228{left:224.640000pt;}
.x38_c00228{left:226.560000pt;}
.x5_c00228{left:235.520000pt;}
.x32_c00228{left:244.480000pt;}
.x28_c00228{left:254.080000pt;}
.x1d_c00228{left:263.680000pt;}
.x29_c00228{left:273.920000pt;}
.xf_c00228{left:283.520000pt;}
.x6_c00228{left:293.120000pt;}
.x2a_c00228{left:302.720000pt;}
.x10_c00228{left:312.320000pt;}
.x7_c00228{left:320.640000pt;}
.x23_c00228{left:322.560000pt;}
.x4e_c00228{left:330.880000pt;}
.x44_c00228{left:339.840000pt;}
.x15_c00228{left:341.120000pt;}
.x30_c00228{left:350.080000pt;}
.x40_c00228{left:351.360000pt;}
.x4b_c00228{left:359.040000pt;}
.x4f_c00228{left:360.320000pt;}
.x8_c00228{left:369.280000pt;}
.x33_c00228{left:370.560000pt;}
.x2b_c00228{left:378.880000pt;}
.x4c_c00228{left:380.160000pt;}
.x11_c00228{left:389.120000pt;}
.x53_c00228{left:397.440000pt;}
.x16_c00228{left:398.720000pt;}
.x9_c00228{left:408.320000pt;}
.x2c_c00228{left:427.520000pt;}
.x41_c00228{left:435.840000pt;}
.x45_c00228{left:438.400000pt;}
.x55_c00228{left:444.800000pt;}
.x39_c00228{left:446.080000pt;}
.x12_c00228{left:447.360000pt;}
.x3c_c00228{left:455.680000pt;}
.x34_c00228{left:456.960000pt;}
.x58_c00228{left:464.640000pt;}
.x1e_c00228{left:465.920000pt;}
.x50_c00228{left:474.240000pt;}
.x46_c00228{left:475.520000pt;}
.x3a_c00228{left:476.800000pt;}
.x2d_c00228{left:484.480000pt;}
.x13_c00228{left:485.760000pt;}
.x3d_c00228{left:494.080000pt;}
.x51_c00228{left:503.680000pt;}
.x17_c00228{left:504.960000pt;}
.xa_c00228{left:513.920000pt;}
.x54_c00228{left:522.240000pt;}
.x1f_c00228{left:524.160000pt;}
.x18_c00228{left:532.480000pt;}
.xb_c00228{left:541.440000pt;}
.x52_c00228{left:542.720000pt;}
.x24_c00228{left:551.040000pt;}
.x47_c00228{left:552.320000pt;}
.x42_c00228{left:561.280000pt;}
.x19_c00228{left:571.520000pt;}
.x4d_c00228{left:579.200000pt;}
.x59_c00228{left:581.120000pt;}
.x35_c00228{left:590.080000pt;}
.x20_c00228{left:591.360000pt;}
.xc_c00228{left:599.040000pt;}
.x48_c00228{left:607.360000pt;}
.x25_c00228{left:608.640000pt;}
.x1_c00228{left:620.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9115031388bf3c40a3e07eea.woff2')format("woff");}.ff1_c00229{font-family:ff1_c00229;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m34_c00229{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m14_c00229{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m48_c00229{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00229{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m15_c00229{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m10_c00229{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m30_c00229{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.me_c00229{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00229{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m18_c00229{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);}
.m1e_c00229{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);}
.m45_c00229{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00229{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m9_c00229{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);}
.m24_c00229{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m49_c00229{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m26_c00229{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m0_c00229{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m7_c00229{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);}
.m47_c00229{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m17_c00229{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m4_c00229{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);}
.m36_c00229{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);}
.m16_c00229{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);}
.m2b_c00229{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m2_c00229{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);}
.m19_c00229{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m1_c00229{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);}
.m37_c00229{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);}
.m1b_c00229{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00229{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m35_c00229{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00229{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);}
.m2d_c00229{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m22_c00229{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m11_c00229{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00229{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);}
.m32_c00229{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00229{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m21_c00229{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00229{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);}
.m31_c00229{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00229{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);}
.m1d_c00229{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m5_c00229{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);}
.m6_c00229{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00229{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00229{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m3_c00229{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);}
.m27_c00229{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00229{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m41_c00229{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00229{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.mf_c00229{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m39_c00229{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.mc_c00229{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);}
.m23_c00229{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);}
.mb_c00229{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00229{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.ma_c00229{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);}
.m46_c00229{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m33_c00229{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m12_c00229{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m20_c00229{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m43_c00229{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m28_c00229{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m40_c00229{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);}
.m44_c00229{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m42_c00229{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00229{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00229{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.md_c00229{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m25_c00229{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);}
.m13_c00229{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m29_c00229{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);}
.m38_c00229{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00229{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00229{transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);}
.m8_c00229{transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);}
.v0_c00229{vertical-align:0.000000px;}
.ls0_c00229{letter-spacing:0.000000px;}
.sc__c00229{text-shadow:none;}
.sc0_c00229{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00229{-webkit-text-stroke:0px transparent;}
.sc0_c00229{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00229{word-spacing:0.000000px;}
.fc0_c00229{color:transparent;}
.fsa_c00229{font-size:34.560000px;}
.fs3_c00229{font-size:37.440000px;}
.fs9_c00229{font-size:40.320000px;}
.fsc_c00229{font-size:43.200000px;}
.fs7_c00229{font-size:46.080000px;}
.fs4_c00229{font-size:48.960000px;}
.fs6_c00229{font-size:51.840000px;}
.fs1_c00229{font-size:54.720000px;}
.fs2_c00229{font-size:57.600000px;}
.fs5_c00229{font-size:60.480000px;}
.fsd_c00229{font-size:63.360000px;}
.fs8_c00229{font-size:66.240000px;}
.fsb_c00229{font-size:69.120000px;}
.fs0_c00229{font-size:74.880000px;}
.y0_c00229{bottom:0.000000px;}
.y61_c00229{bottom:180.720000px;}
.y5c_c00229{bottom:221.760000px;}
.y5f_c00229{bottom:222.480000px;}
.y5e_c00229{bottom:223.200000px;}
.y5d_c00229{bottom:223.920000px;}
.y5b_c00229{bottom:224.640000px;}
.y5a_c00229{bottom:225.360000px;}
.y60_c00229{bottom:226.080000px;}
.y58_c00229{bottom:264.960000px;}
.y55_c00229{bottom:265.680000px;}
.y57_c00229{bottom:266.400000px;}
.y56_c00229{bottom:267.840000px;}
.y59_c00229{bottom:268.560000px;}
.y54_c00229{bottom:269.280000px;}
.y50_c00229{bottom:308.880000px;}
.y51_c00229{bottom:310.320000px;}
.y52_c00229{bottom:311.040000px;}
.y53_c00229{bottom:311.760000px;}
.y4f_c00229{bottom:312.480000px;}
.y4d_c00229{bottom:351.360000px;}
.y4c_c00229{bottom:352.080000px;}
.y4e_c00229{bottom:353.520000px;}
.y4b_c00229{bottom:354.240000px;}
.y4a_c00229{bottom:354.960000px;}
.y48_c00229{bottom:393.840000px;}
.y47_c00229{bottom:394.560000px;}
.y49_c00229{bottom:395.280000px;}
.y45_c00229{bottom:396.720000px;}
.y46_c00229{bottom:398.160000px;}
.y43_c00229{bottom:437.040000px;}
.y44_c00229{bottom:438.480000px;}
.y41_c00229{bottom:439.920000px;}
.y42_c00229{bottom:440.640000px;}
.y40_c00229{bottom:441.360000px;}
.y3e_c00229{bottom:480.960000px;}
.y3d_c00229{bottom:483.840000px;}
.y3f_c00229{bottom:484.560000px;}
.y3c_c00229{bottom:537.120000px;}
.y3b_c00229{bottom:578.160000px;}
.y39_c00229{bottom:580.320000px;}
.y3a_c00229{bottom:581.040000px;}
.y38_c00229{bottom:620.640000px;}
.y34_c00229{bottom:621.360000px;}
.y35_c00229{bottom:622.080000px;}
.y36_c00229{bottom:622.800000px;}
.y37_c00229{bottom:623.520000px;}
.y31_c00229{bottom:663.840000px;}
.y33_c00229{bottom:664.560000px;}
.y2f_c00229{bottom:666.000000px;}
.y30_c00229{bottom:666.720000px;}
.y32_c00229{bottom:667.440000px;}
.y2e_c00229{bottom:706.320000px;}
.y2d_c00229{bottom:707.760000px;}
.y2a_c00229{bottom:708.480000px;}
.y2b_c00229{bottom:709.200000px;}
.y2c_c00229{bottom:709.920000px;}
.y29_c00229{bottom:749.520000px;}
.y26_c00229{bottom:750.240000px;}
.y27_c00229{bottom:751.680000px;}
.y25_c00229{bottom:752.400000px;}
.y28_c00229{bottom:753.120000px;}
.y24_c00229{bottom:804.240000px;}
.y21_c00229{bottom:804.960000px;}
.y22_c00229{bottom:805.680000px;}
.y23_c00229{bottom:806.400000px;}
.y1d_c00229{bottom:846.720000px;}
.y1f_c00229{bottom:847.440000px;}
.y1e_c00229{bottom:849.600000px;}
.y20_c00229{bottom:850.320000px;}
.y1c_c00229{bottom:889.920000px;}
.y1b_c00229{bottom:890.640000px;}
.y18_c00229{bottom:891.360000px;}
.y19_c00229{bottom:892.800000px;}
.y1a_c00229{bottom:893.520000px;}
.y17_c00229{bottom:931.680000px;}
.y15_c00229{bottom:933.120000px;}
.y13_c00229{bottom:934.560000px;}
.y16_c00229{bottom:935.280000px;}
.y14_c00229{bottom:936.000000px;}
.y11_c00229{bottom:976.320000px;}
.yf_c00229{bottom:977.040000px;}
.y10_c00229{bottom:979.200000px;}
.y12_c00229{bottom:979.920000px;}
.yd_c00229{bottom:1018.080000px;}
.y8_c00229{bottom:1018.800000px;}
.yc_c00229{bottom:1019.520000px;}
.y9_c00229{bottom:1020.240000px;}
.ye_c00229{bottom:1021.680000px;}
.ya_c00229{bottom:1022.400000px;}
.yb_c00229{bottom:1023.120000px;}
.y6_c00229{bottom:1062.720000px;}
.y2_c00229{bottom:1063.440000px;}
.y5_c00229{bottom:1064.160000px;}
.y7_c00229{bottom:1064.880000px;}
.y3_c00229{bottom:1065.600000px;}
.y4_c00229{bottom:1066.320000px;}
.y1_c00229{bottom:1105.200000px;}
.hc_c00229{height:31.100625px;}
.h5_c00229{height:33.692344px;}
.hb_c00229{height:36.284062px;}
.he_c00229{height:38.875781px;}
.h9_c00229{height:41.467500px;}
.h6_c00229{height:44.059219px;}
.h8_c00229{height:46.650937px;}
.h3_c00229{height:49.242656px;}
.h4_c00229{height:51.834375px;}
.h7_c00229{height:54.426094px;}
.hf_c00229{height:57.017812px;}
.ha_c00229{height:59.609531px;}
.hd_c00229{height:62.201250px;}
.h2_c00229{height:67.384687px;}
.h0_c00229{height:1154.880000px;}
.h1_c00229{height:1155.000000px;}
.w0_c00229{width:792.000000px;}
.x0_c00229{left:0.000000px;}
.x2_c00229{left:74.880000px;}
.x1c_c00229{left:76.320000px;}
.x33_c00229{left:77.760000px;}
.x34_c00229{left:97.920000px;}
.x29_c00229{left:108.000000px;}
.x13_c00229{left:116.640000px;}
.x43_c00229{left:118.800000px;}
.xb_c00229{left:138.240000px;}
.x40_c00229{left:139.680000px;}
.x23_c00229{left:149.040000px;}
.x39_c00229{left:150.480000px;}
.x3f_c00229{left:159.840000px;}
.x1d_c00229{left:170.640000px;}
.xc_c00229{left:182.160000px;}
.x2d_c00229{left:183.600000px;}
.x3_c00229{left:192.240000px;}
.x41_c00229{left:203.040000px;}
.xd_c00229{left:213.840000px;}
.x18_c00229{left:224.640000px;}
.x3c_c00229{left:235.440000px;}
.x2e_c00229{left:236.880000px;}
.x2a_c00229{left:246.240000px;}
.x35_c00229{left:257.040000px;}
.x47_c00229{left:267.840000px;}
.x1e_c00229{left:269.280000px;}
.x4_c00229{left:279.360000px;}
.x19_c00229{left:290.880000px;}
.x5_c00229{left:301.680000px;}
.xe_c00229{left:312.480000px;}
.x3a_c00229{left:323.280000px;}
.x24_c00229{left:332.640000px;}
.x6_c00229{left:334.800000px;}
.xf_c00229{left:343.440000px;}
.x14_c00229{left:345.600000px;}
.x2f_c00229{left:354.240000px;}
.x1f_c00229{left:365.760000px;}
.x3d_c00229{left:376.560000px;}
.x36_c00229{left:386.640000px;}
.x4a_c00229{left:398.160000px;}
.x15_c00229{left:399.600000px;}
.x20_c00229{left:408.960000px;}
.x25_c00229{left:420.480000px;}
.x30_c00229{left:430.560000px;}
.x48_c00229{left:440.640000px;}
.x10_c00229{left:442.080000px;}
.x1a_c00229{left:462.960000px;}
.x49_c00229{left:473.040000px;}
.x7_c00229{left:474.480000px;}
.x11_c00229{left:485.280000px;}
.x3b_c00229{left:494.640000px;}
.x21_c00229{left:496.800000px;}
.x37_c00229{left:506.160000px;}
.x22_c00229{left:516.960000px;}
.x8_c00229{left:518.400000px;}
.x2b_c00229{left:527.040000px;}
.x44_c00229{left:537.840000px;}
.x26_c00229{left:548.640000px;}
.x42_c00229{left:558.720000px;}
.x1b_c00229{left:560.160000px;}
.x45_c00229{left:570.960000px;}
.x27_c00229{left:581.760000px;}
.x16_c00229{left:583.200000px;}
.x31_c00229{left:591.840000px;}
.x4b_c00229{left:602.640000px;}
.x2c_c00229{left:612.720000px;}
.x17_c00229{left:614.880000px;}
.x28_c00229{left:624.960000px;}
.x9_c00229{left:635.040000px;}
.x38_c00229{left:645.840000px;}
.x32_c00229{left:647.280000px;}
.x12_c00229{left:656.640000px;}
.xa_c00229{left:668.160000px;}
.x46_c00229{left:676.800000px;}
.x3e_c00229{left:678.240000px;}
.x1_c00229{left:704.880000px;}
@media print{
.v0_c00229{vertical-align:0.000000pt;}
.ls0_c00229{letter-spacing:0.000000pt;}
.ws0_c00229{word-spacing:0.000000pt;}
.fsa_c00229{font-size:30.720000pt;}
.fs3_c00229{font-size:33.280000pt;}
.fs9_c00229{font-size:35.840000pt;}
.fsc_c00229{font-size:38.400000pt;}
.fs7_c00229{font-size:40.960000pt;}
.fs4_c00229{font-size:43.520000pt;}
.fs6_c00229{font-size:46.080000pt;}
.fs1_c00229{font-size:48.640000pt;}
.fs2_c00229{font-size:51.200000pt;}
.fs5_c00229{font-size:53.760000pt;}
.fsd_c00229{font-size:56.320000pt;}
.fs8_c00229{font-size:58.880000pt;}
.fsb_c00229{font-size:61.440000pt;}
.fs0_c00229{font-size:66.560000pt;}
.y0_c00229{bottom:0.000000pt;}
.y61_c00229{bottom:160.640000pt;}
.y5c_c00229{bottom:197.120000pt;}
.y5f_c00229{bottom:197.760000pt;}
.y5e_c00229{bottom:198.400000pt;}
.y5d_c00229{bottom:199.040000pt;}
.y5b_c00229{bottom:199.680000pt;}
.y5a_c00229{bottom:200.320000pt;}
.y60_c00229{bottom:200.960000pt;}
.y58_c00229{bottom:235.520000pt;}
.y55_c00229{bottom:236.160000pt;}
.y57_c00229{bottom:236.800000pt;}
.y56_c00229{bottom:238.080000pt;}
.y59_c00229{bottom:238.720000pt;}
.y54_c00229{bottom:239.360000pt;}
.y50_c00229{bottom:274.560000pt;}
.y51_c00229{bottom:275.840000pt;}
.y52_c00229{bottom:276.480000pt;}
.y53_c00229{bottom:277.120000pt;}
.y4f_c00229{bottom:277.760000pt;}
.y4d_c00229{bottom:312.320000pt;}
.y4c_c00229{bottom:312.960000pt;}
.y4e_c00229{bottom:314.240000pt;}
.y4b_c00229{bottom:314.880000pt;}
.y4a_c00229{bottom:315.520000pt;}
.y48_c00229{bottom:350.080000pt;}
.y47_c00229{bottom:350.720000pt;}
.y49_c00229{bottom:351.360000pt;}
.y45_c00229{bottom:352.640000pt;}
.y46_c00229{bottom:353.920000pt;}
.y43_c00229{bottom:388.480000pt;}
.y44_c00229{bottom:389.760000pt;}
.y41_c00229{bottom:391.040000pt;}
.y42_c00229{bottom:391.680000pt;}
.y40_c00229{bottom:392.320000pt;}
.y3e_c00229{bottom:427.520000pt;}
.y3d_c00229{bottom:430.080000pt;}
.y3f_c00229{bottom:430.720000pt;}
.y3c_c00229{bottom:477.440000pt;}
.y3b_c00229{bottom:513.920000pt;}
.y39_c00229{bottom:515.840000pt;}
.y3a_c00229{bottom:516.480000pt;}
.y38_c00229{bottom:551.680000pt;}
.y34_c00229{bottom:552.320000pt;}
.y35_c00229{bottom:552.960000pt;}
.y36_c00229{bottom:553.600000pt;}
.y37_c00229{bottom:554.240000pt;}
.y31_c00229{bottom:590.080000pt;}
.y33_c00229{bottom:590.720000pt;}
.y2f_c00229{bottom:592.000000pt;}
.y30_c00229{bottom:592.640000pt;}
.y32_c00229{bottom:593.280000pt;}
.y2e_c00229{bottom:627.840000pt;}
.y2d_c00229{bottom:629.120000pt;}
.y2a_c00229{bottom:629.760000pt;}
.y2b_c00229{bottom:630.400000pt;}
.y2c_c00229{bottom:631.040000pt;}
.y29_c00229{bottom:666.240000pt;}
.y26_c00229{bottom:666.880000pt;}
.y27_c00229{bottom:668.160000pt;}
.y25_c00229{bottom:668.800000pt;}
.y28_c00229{bottom:669.440000pt;}
.y24_c00229{bottom:714.880000pt;}
.y21_c00229{bottom:715.520000pt;}
.y22_c00229{bottom:716.160000pt;}
.y23_c00229{bottom:716.800000pt;}
.y1d_c00229{bottom:752.640000pt;}
.y1f_c00229{bottom:753.280000pt;}
.y1e_c00229{bottom:755.200000pt;}
.y20_c00229{bottom:755.840000pt;}
.y1c_c00229{bottom:791.040000pt;}
.y1b_c00229{bottom:791.680000pt;}
.y18_c00229{bottom:792.320000pt;}
.y19_c00229{bottom:793.600000pt;}
.y1a_c00229{bottom:794.240000pt;}
.y17_c00229{bottom:828.160000pt;}
.y15_c00229{bottom:829.440000pt;}
.y13_c00229{bottom:830.720000pt;}
.y16_c00229{bottom:831.360000pt;}
.y14_c00229{bottom:832.000000pt;}
.y11_c00229{bottom:867.840000pt;}
.yf_c00229{bottom:868.480000pt;}
.y10_c00229{bottom:870.400000pt;}
.y12_c00229{bottom:871.040000pt;}
.yd_c00229{bottom:904.960000pt;}
.y8_c00229{bottom:905.600000pt;}
.yc_c00229{bottom:906.240000pt;}
.y9_c00229{bottom:906.880000pt;}
.ye_c00229{bottom:908.160000pt;}
.ya_c00229{bottom:908.800000pt;}
.yb_c00229{bottom:909.440000pt;}
.y6_c00229{bottom:944.640000pt;}
.y2_c00229{bottom:945.280000pt;}
.y5_c00229{bottom:945.920000pt;}
.y7_c00229{bottom:946.560000pt;}
.y3_c00229{bottom:947.200000pt;}
.y4_c00229{bottom:947.840000pt;}
.y1_c00229{bottom:982.400000pt;}
.hc_c00229{height:27.645000pt;}
.h5_c00229{height:29.948750pt;}
.hb_c00229{height:32.252500pt;}
.he_c00229{height:34.556250pt;}
.h9_c00229{height:36.860000pt;}
.h6_c00229{height:39.163750pt;}
.h8_c00229{height:41.467500pt;}
.h3_c00229{height:43.771250pt;}
.h4_c00229{height:46.075000pt;}
.h7_c00229{height:48.378750pt;}
.hf_c00229{height:50.682500pt;}
.ha_c00229{height:52.986250pt;}
.hd_c00229{height:55.290000pt;}
.h2_c00229{height:59.897500pt;}
.h0_c00229{height:1026.560000pt;}
.h1_c00229{height:1026.666667pt;}
.w0_c00229{width:704.000000pt;}
.x0_c00229{left:0.000000pt;}
.x2_c00229{left:66.560000pt;}
.x1c_c00229{left:67.840000pt;}
.x33_c00229{left:69.120000pt;}
.x34_c00229{left:87.040000pt;}
.x29_c00229{left:96.000000pt;}
.x13_c00229{left:103.680000pt;}
.x43_c00229{left:105.600000pt;}
.xb_c00229{left:122.880000pt;}
.x40_c00229{left:124.160000pt;}
.x23_c00229{left:132.480000pt;}
.x39_c00229{left:133.760000pt;}
.x3f_c00229{left:142.080000pt;}
.x1d_c00229{left:151.680000pt;}
.xc_c00229{left:161.920000pt;}
.x2d_c00229{left:163.200000pt;}
.x3_c00229{left:170.880000pt;}
.x41_c00229{left:180.480000pt;}
.xd_c00229{left:190.080000pt;}
.x18_c00229{left:199.680000pt;}
.x3c_c00229{left:209.280000pt;}
.x2e_c00229{left:210.560000pt;}
.x2a_c00229{left:218.880000pt;}
.x35_c00229{left:228.480000pt;}
.x47_c00229{left:238.080000pt;}
.x1e_c00229{left:239.360000pt;}
.x4_c00229{left:248.320000pt;}
.x19_c00229{left:258.560000pt;}
.x5_c00229{left:268.160000pt;}
.xe_c00229{left:277.760000pt;}
.x3a_c00229{left:287.360000pt;}
.x24_c00229{left:295.680000pt;}
.x6_c00229{left:297.600000pt;}
.xf_c00229{left:305.280000pt;}
.x14_c00229{left:307.200000pt;}
.x2f_c00229{left:314.880000pt;}
.x1f_c00229{left:325.120000pt;}
.x3d_c00229{left:334.720000pt;}
.x36_c00229{left:343.680000pt;}
.x4a_c00229{left:353.920000pt;}
.x15_c00229{left:355.200000pt;}
.x20_c00229{left:363.520000pt;}
.x25_c00229{left:373.760000pt;}
.x30_c00229{left:382.720000pt;}
.x48_c00229{left:391.680000pt;}
.x10_c00229{left:392.960000pt;}
.x1a_c00229{left:411.520000pt;}
.x49_c00229{left:420.480000pt;}
.x7_c00229{left:421.760000pt;}
.x11_c00229{left:431.360000pt;}
.x3b_c00229{left:439.680000pt;}
.x21_c00229{left:441.600000pt;}
.x37_c00229{left:449.920000pt;}
.x22_c00229{left:459.520000pt;}
.x8_c00229{left:460.800000pt;}
.x2b_c00229{left:468.480000pt;}
.x44_c00229{left:478.080000pt;}
.x26_c00229{left:487.680000pt;}
.x42_c00229{left:496.640000pt;}
.x1b_c00229{left:497.920000pt;}
.x45_c00229{left:507.520000pt;}
.x27_c00229{left:517.120000pt;}
.x16_c00229{left:518.400000pt;}
.x31_c00229{left:526.080000pt;}
.x4b_c00229{left:535.680000pt;}
.x2c_c00229{left:544.640000pt;}
.x17_c00229{left:546.560000pt;}
.x28_c00229{left:555.520000pt;}
.x9_c00229{left:564.480000pt;}
.x38_c00229{left:574.080000pt;}
.x32_c00229{left:575.360000pt;}
.x12_c00229{left:583.680000pt;}
.xa_c00229{left:593.920000pt;}
.x46_c00229{left:601.600000pt;}
.x3e_c00229{left:602.880000pt;}
.x1_c00229{left:626.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_11356b5505b7fc885a8b3736.woff2')format("woff");}.ff1_c00230{font-family:ff1_c00230;line-height:1.109863;font-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_c00230{transform:matrix(0.192400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192400,0.000000,0.000000,0.250000,0,0);}
.m29_c00230{transform:matrix(0.202775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202775,0.000000,0.000000,0.250000,0,0);}
.m3_c00230{transform:matrix(0.214575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214575,0.000000,0.000000,0.250000,0,0);}
.m4_c00230{transform:matrix(0.223150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223150,0.000000,0.000000,0.250000,0,0);}
.mf_c00230{transform:matrix(0.225150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225150,0.000000,0.000000,0.250000,0,0);}
.m2_c00230{transform:matrix(0.234050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234050,0.000000,0.000000,0.250000,0,0);}
.m4c_c00230{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m1_c00230{transform:matrix(0.246650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246650,0.000000,0.000000,0.250000,0,0);}
.m50_c00230{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m38_c00230{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m49_c00230{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);}
.m4e_c00230{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_c00230{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m15_c00230{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);}
.m4a_c00230{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m17_c00230{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);}
.m25_c00230{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m21_c00230{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);}
.m32_c00230{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00230{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00230{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m11_c00230{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m46_c00230{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m10_c00230{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m7_c00230{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00230{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m6_c00230{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m18_c00230{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m42_c00230{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m9_c00230{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.md_c00230{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m41_c00230{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mb_c00230{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00230{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.me_c00230{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m13_c00230{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00230{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m48_c00230{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m12_c00230{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m43_c00230{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m8_c00230{transform:matrix(0.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);}
.m3b_c00230{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m14_c00230{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);}
.m39_c00230{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00230{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.mc_c00230{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m26_c00230{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00230{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m22_c00230{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);}
.m2f_c00230{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);}
.m0_c00230{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m36_c00230{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);}
.m3a_c00230{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00230{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);}
.ma_c00230{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m19_c00230{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00230{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00230{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);}
.m16_c00230{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m27_c00230{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00230{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);}
.m23_c00230{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00230{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);}
.m5_c00230{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00230{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m24_c00230{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m44_c00230{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);}
.m30_c00230{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00230{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m37_c00230{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);}
.m40_c00230{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m47_c00230{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00230{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);}
.m45_c00230{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00230{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00230{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00230{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m31_c00230{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m28_c00230{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.m35_c00230{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m34_c00230{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.v0_c00230{vertical-align:0.000000px;}
.v1_c00230{vertical-align:40.320000px;}
.ls0_c00230{letter-spacing:0.000000px;}
.sc__c00230{text-shadow:none;}
.sc0_c00230{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00230{-webkit-text-stroke:0px transparent;}
.sc0_c00230{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00230{word-spacing:0.000000px;}
.ws0_c00230{word-spacing:197.726400px;}
.fc0_c00230{color:transparent;}
.fse_c00230{font-size:20.160000px;}
.fsf_c00230{font-size:37.440000px;}
.fs10_c00230{font-size:40.320000px;}
.fs9_c00230{font-size:43.200000px;}
.fs6_c00230{font-size:46.080000px;}
.fs5_c00230{font-size:48.960000px;}
.fs3_c00230{font-size:51.840000px;}
.fs8_c00230{font-size:54.720000px;}
.fs7_c00230{font-size:57.600000px;}
.fs4_c00230{font-size:60.480000px;}
.fsa_c00230{font-size:63.360000px;}
.fsd_c00230{font-size:66.240000px;}
.fsb_c00230{font-size:69.120000px;}
.fs0_c00230{font-size:72.000000px;}
.fs2_c00230{font-size:74.880000px;}
.fs1_c00230{font-size:77.760000px;}
.fsc_c00230{font-size:83.520000px;}
.y0_c00230{bottom:0.000000px;}
.y6d_c00230{bottom:72.720000px;}
.y6e_c00230{bottom:76.320000px;}
.y6c_c00230{bottom:77.040000px;}
.y6b_c00230{bottom:77.760000px;}
.y69_c00230{bottom:105.120000px;}
.y68_c00230{bottom:107.280000px;}
.y6a_c00230{bottom:108.720000px;}
.y77_c00230{bottom:109.440000px;}
.y66_c00230{bottom:110.880000px;}
.y67_c00230{bottom:111.600000px;}
.y65_c00230{bottom:149.040000px;}
.y75_c00230{bottom:152.640000px;}
.y64_c00230{bottom:154.080000px;}
.y76_c00230{bottom:154.800000px;}
.y62_c00230{bottom:191.520000px;}
.y61_c00230{bottom:192.240000px;}
.y63_c00230{bottom:192.960000px;}
.y5f_c00230{bottom:195.120000px;}
.y60_c00230{bottom:195.840000px;}
.y74_c00230{bottom:196.560000px;}
.y5e_c00230{bottom:198.000000px;}
.y5d_c00230{bottom:235.440000px;}
.y78_c00230{bottom:237.600000px;}
.y73_c00230{bottom:238.320000px;}
.y5c_c00230{bottom:240.480000px;}
.y5b_c00230{bottom:278.640000px;}
.y72_c00230{bottom:280.800000px;}
.y5a_c00230{bottom:282.960000px;}
.y71_c00230{bottom:283.680000px;}
.y59_c00230{bottom:321.840000px;}
.y58_c00230{bottom:322.560000px;}
.y6f_c00230{bottom:324.000000px;}
.y57_c00230{bottom:325.440000px;}
.y56_c00230{bottom:326.160000px;}
.y70_c00230{bottom:326.880000px;}
.y53_c00230{bottom:365.040000px;}
.y54_c00230{bottom:365.760000px;}
.y44_c00230{bottom:366.480000px;}
.y55_c00230{bottom:367.200000px;}
.y43_c00230{bottom:368.640000px;}
.y45_c00230{bottom:369.360000px;}
.y52_c00230{bottom:408.240000px;}
.y41_c00230{bottom:409.680000px;}
.y42_c00230{bottom:411.120000px;}
.y40_c00230{bottom:411.840000px;}
.y51_c00230{bottom:412.560000px;}
.y50_c00230{bottom:450.720000px;}
.y3f_c00230{bottom:452.880000px;}
.y3e_c00230{bottom:453.600000px;}
.y3d_c00230{bottom:454.320000px;}
.y4f_c00230{bottom:494.640000px;}
.y3b_c00230{bottom:496.080000px;}
.y4e_c00230{bottom:496.800000px;}
.y3c_c00230{bottom:498.240000px;}
.y3a_c00230{bottom:498.960000px;}
.y4d_c00230{bottom:537.840000px;}
.y38_c00230{bottom:539.280000px;}
.y37_c00230{bottom:540.000000px;}
.y39_c00230{bottom:541.440000px;}
.y4c_c00230{bottom:542.160000px;}
.y4a_c00230{bottom:581.040000px;}
.y4b_c00230{bottom:581.760000px;}
.y35_c00230{bottom:582.480000px;}
.y34_c00230{bottom:583.920000px;}
.y36_c00230{bottom:584.640000px;}
.y49_c00230{bottom:623.520000px;}
.y32_c00230{bottom:626.400000px;}
.y31_c00230{bottom:627.120000px;}
.y33_c00230{bottom:627.840000px;}
.y47_c00230{bottom:669.600000px;}
.y46_c00230{bottom:671.040000px;}
.y48_c00230{bottom:671.760000px;}
.y30_c00230{bottom:681.120000px;}
.y2f_c00230{bottom:681.840000px;}
.y2e_c00230{bottom:682.560000px;}
.y2c_c00230{bottom:733.680000px;}
.y2d_c00230{bottom:735.840000px;}
.y2b_c00230{bottom:736.560000px;}
.y2a_c00230{bottom:789.120000px;}
.y29_c00230{bottom:806.400000px;}
.y28_c00230{bottom:810.720000px;}
.y27_c00230{bottom:812.160000px;}
.y26_c00230{bottom:820.800000px;}
.y25_c00230{bottom:825.120000px;}
.y24_c00230{bottom:843.120000px;}
.y22_c00230{bottom:843.840000px;}
.y23_c00230{bottom:844.560000px;}
.y21_c00230{bottom:874.080000px;}
.y1e_c00230{bottom:895.680000px;}
.y1f_c00230{bottom:896.400000px;}
.y1d_c00230{bottom:897.840000px;}
.y20_c00230{bottom:898.560000px;}
.y17_c00230{bottom:923.760000px;}
.y1b_c00230{bottom:928.080000px;}
.y19_c00230{bottom:928.800000px;}
.y1c_c00230{bottom:929.520000px;}
.y18_c00230{bottom:930.240000px;}
.y1a_c00230{bottom:930.960000px;}
.y11_c00230{bottom:959.040000px;}
.y16_c00230{bottom:959.760000px;}
.y10_c00230{bottom:960.480000px;}
.y13_c00230{bottom:961.200000px;}
.y15_c00230{bottom:961.920000px;}
.y12_c00230{bottom:962.640000px;}
.y14_c00230{bottom:963.360000px;}
.ya_c00230{bottom:991.440000px;}
.yf_c00230{bottom:992.160000px;}
.yd_c00230{bottom:992.880000px;}
.yb_c00230{bottom:993.600000px;}
.yc_c00230{bottom:995.040000px;}
.ye_c00230{bottom:995.760000px;}
.y9_c00230{bottom:1023.840000px;}
.y5_c00230{bottom:1024.560000px;}
.y7_c00230{bottom:1025.280000px;}
.y8_c00230{bottom:1026.000000px;}
.y6_c00230{bottom:1027.440000px;}
.y2_c00230{bottom:1053.360000px;}
.y3_c00230{bottom:1054.080000px;}
.y4_c00230{bottom:1057.680000px;}
.y1_c00230{bottom:1108.080000px;}
.h11_c00230{height:18.142031px;}
.h12_c00230{height:33.692344px;}
.h13_c00230{height:36.284062px;}
.hb_c00230{height:38.875781px;}
.h8_c00230{height:41.467500px;}
.h7_c00230{height:44.059219px;}
.h5_c00230{height:46.650937px;}
.ha_c00230{height:49.242656px;}
.h9_c00230{height:51.834375px;}
.h6_c00230{height:54.426094px;}
.hd_c00230{height:57.017812px;}
.h10_c00230{height:59.609531px;}
.he_c00230{height:62.201250px;}
.h2_c00230{height:64.792969px;}
.h4_c00230{height:67.384687px;}
.h3_c00230{height:69.976406px;}
.hf_c00230{height:75.159844px;}
.hc_c00230{height:97.337813px;}
.h0_c00230{height:1154.880000px;}
.h1_c00230{height:1155.000000px;}
.w0_c00230{width:792.000000px;}
.x0_c00230{left:0.000000px;}
.x2_c00230{left:73.440000px;}
.x13_c00230{left:74.880000px;}
.x36_c00230{left:76.320000px;}
.x38_c00230{left:77.760000px;}
.x7_c00230{left:105.120000px;}
.xf_c00230{left:115.920000px;}
.x30_c00230{left:126.000000px;}
.x32_c00230{left:146.880000px;}
.x39_c00230{left:148.320000px;}
.x18_c00230{left:159.840000px;}
.x8_c00230{left:179.280000px;}
.x3_c00230{left:181.440000px;}
.x34_c00230{left:190.080000px;}
.x31_c00230{left:191.520000px;}
.x9_c00230{left:213.120000px;}
.x10_c00230{left:224.640000px;}
.x35_c00230{left:234.000000px;}
.x3c_c00230{left:235.440000px;}
.x37_c00230{left:244.800000px;}
.x1a_c00230{left:280.080000px;}
.x33_c00230{left:288.000000px;}
.x4_c00230{left:289.440000px;}
.xa_c00230{left:298.800000px;}
.x11_c00230{left:300.240000px;}
.x1c_c00230{left:308.880000px;}
.xb_c00230{left:331.920000px;}
.x15_c00230{left:333.360000px;}
.x14_c00230{left:343.440000px;}
.x3d_c00230{left:352.800000px;}
.x3b_c00230{left:374.400000px;}
.x3e_c00230{left:408.240000px;}
.xc_c00230{left:417.600000px;}
.x5_c00230{left:419.040000px;}
.x1d_c00230{left:429.120000px;}
.xd_c00230{left:452.160000px;}
.x1b_c00230{left:458.640000px;}
.x1e_c00230{left:460.800000px;}
.x12_c00230{left:462.960000px;}
.x3a_c00230{left:471.600000px;}
.x16_c00230{left:483.840000px;}
.x19_c00230{left:494.640000px;}
.x1f_c00230{left:503.280000px;}
.x17_c00230{left:516.240000px;}
.xe_c00230{left:537.120000px;}
.x23_c00230{left:557.280000px;}
.x6_c00230{left:558.720000px;}
.x2b_c00230{left:568.080810px;}
.x28_c00230{left:570.240000px;}
.x20_c00230{left:579.600000px;}
.x29_c00230{left:590.400000px;}
.x24_c00230{left:601.200000px;}
.x21_c00230{left:611.280000px;}
.x40_c00230{left:622.080000px;}
.x2c_c00230{left:623.520000px;}
.x25_c00230{left:632.880000px;}
.x2d_c00230{left:654.480000px;}
.x2f_c00230{left:656.640000px;}
.x22_c00230{left:666.000000px;}
.x26_c00230{left:686.880000px;}
.x2a_c00230{left:697.680000px;}
.x1_c00230{left:712.800000px;}
.x3f_c00230{left:717.120000px;}
.x2e_c00230{left:718.560000px;}
.x27_c00230{left:729.360000px;}
@media print{
.v0_c00230{vertical-align:0.000000pt;}
.v1_c00230{vertical-align:35.840000pt;}
.ls0_c00230{letter-spacing:0.000000pt;}
.ws1_c00230{word-spacing:0.000000pt;}
.ws0_c00230{word-spacing:175.756800pt;}
.fse_c00230{font-size:17.920000pt;}
.fsf_c00230{font-size:33.280000pt;}
.fs10_c00230{font-size:35.840000pt;}
.fs9_c00230{font-size:38.400000pt;}
.fs6_c00230{font-size:40.960000pt;}
.fs5_c00230{font-size:43.520000pt;}
.fs3_c00230{font-size:46.080000pt;}
.fs8_c00230{font-size:48.640000pt;}
.fs7_c00230{font-size:51.200000pt;}
.fs4_c00230{font-size:53.760000pt;}
.fsa_c00230{font-size:56.320000pt;}
.fsd_c00230{font-size:58.880000pt;}
.fsb_c00230{font-size:61.440000pt;}
.fs0_c00230{font-size:64.000000pt;}
.fs2_c00230{font-size:66.560000pt;}
.fs1_c00230{font-size:69.120000pt;}
.fsc_c00230{font-size:74.240000pt;}
.y0_c00230{bottom:0.000000pt;}
.y6d_c00230{bottom:64.640000pt;}
.y6e_c00230{bottom:67.840000pt;}
.y6c_c00230{bottom:68.480000pt;}
.y6b_c00230{bottom:69.120000pt;}
.y69_c00230{bottom:93.440000pt;}
.y68_c00230{bottom:95.360000pt;}
.y6a_c00230{bottom:96.640000pt;}
.y77_c00230{bottom:97.280000pt;}
.y66_c00230{bottom:98.560000pt;}
.y67_c00230{bottom:99.200000pt;}
.y65_c00230{bottom:132.480000pt;}
.y75_c00230{bottom:135.680000pt;}
.y64_c00230{bottom:136.960000pt;}
.y76_c00230{bottom:137.600000pt;}
.y62_c00230{bottom:170.240000pt;}
.y61_c00230{bottom:170.880000pt;}
.y63_c00230{bottom:171.520000pt;}
.y5f_c00230{bottom:173.440000pt;}
.y60_c00230{bottom:174.080000pt;}
.y74_c00230{bottom:174.720000pt;}
.y5e_c00230{bottom:176.000000pt;}
.y5d_c00230{bottom:209.280000pt;}
.y78_c00230{bottom:211.200000pt;}
.y73_c00230{bottom:211.840000pt;}
.y5c_c00230{bottom:213.760000pt;}
.y5b_c00230{bottom:247.680000pt;}
.y72_c00230{bottom:249.600000pt;}
.y5a_c00230{bottom:251.520000pt;}
.y71_c00230{bottom:252.160000pt;}
.y59_c00230{bottom:286.080000pt;}
.y58_c00230{bottom:286.720000pt;}
.y6f_c00230{bottom:288.000000pt;}
.y57_c00230{bottom:289.280000pt;}
.y56_c00230{bottom:289.920000pt;}
.y70_c00230{bottom:290.560000pt;}
.y53_c00230{bottom:324.480000pt;}
.y54_c00230{bottom:325.120000pt;}
.y44_c00230{bottom:325.760000pt;}
.y55_c00230{bottom:326.400000pt;}
.y43_c00230{bottom:327.680000pt;}
.y45_c00230{bottom:328.320000pt;}
.y52_c00230{bottom:362.880000pt;}
.y41_c00230{bottom:364.160000pt;}
.y42_c00230{bottom:365.440000pt;}
.y40_c00230{bottom:366.080000pt;}
.y51_c00230{bottom:366.720000pt;}
.y50_c00230{bottom:400.640000pt;}
.y3f_c00230{bottom:402.560000pt;}
.y3e_c00230{bottom:403.200000pt;}
.y3d_c00230{bottom:403.840000pt;}
.y4f_c00230{bottom:439.680000pt;}
.y3b_c00230{bottom:440.960000pt;}
.y4e_c00230{bottom:441.600000pt;}
.y3c_c00230{bottom:442.880000pt;}
.y3a_c00230{bottom:443.520000pt;}
.y4d_c00230{bottom:478.080000pt;}
.y38_c00230{bottom:479.360000pt;}
.y37_c00230{bottom:480.000000pt;}
.y39_c00230{bottom:481.280000pt;}
.y4c_c00230{bottom:481.920000pt;}
.y4a_c00230{bottom:516.480000pt;}
.y4b_c00230{bottom:517.120000pt;}
.y35_c00230{bottom:517.760000pt;}
.y34_c00230{bottom:519.040000pt;}
.y36_c00230{bottom:519.680000pt;}
.y49_c00230{bottom:554.240000pt;}
.y32_c00230{bottom:556.800000pt;}
.y31_c00230{bottom:557.440000pt;}
.y33_c00230{bottom:558.080000pt;}
.y47_c00230{bottom:595.200000pt;}
.y46_c00230{bottom:596.480000pt;}
.y48_c00230{bottom:597.120000pt;}
.y30_c00230{bottom:605.440000pt;}
.y2f_c00230{bottom:606.080000pt;}
.y2e_c00230{bottom:606.720000pt;}
.y2c_c00230{bottom:652.160000pt;}
.y2d_c00230{bottom:654.080000pt;}
.y2b_c00230{bottom:654.720000pt;}
.y2a_c00230{bottom:701.440000pt;}
.y29_c00230{bottom:716.800000pt;}
.y28_c00230{bottom:720.640000pt;}
.y27_c00230{bottom:721.920000pt;}
.y26_c00230{bottom:729.600000pt;}
.y25_c00230{bottom:733.440000pt;}
.y24_c00230{bottom:749.440000pt;}
.y22_c00230{bottom:750.080000pt;}
.y23_c00230{bottom:750.720000pt;}
.y21_c00230{bottom:776.960000pt;}
.y1e_c00230{bottom:796.160000pt;}
.y1f_c00230{bottom:796.800000pt;}
.y1d_c00230{bottom:798.080000pt;}
.y20_c00230{bottom:798.720000pt;}
.y17_c00230{bottom:821.120000pt;}
.y1b_c00230{bottom:824.960000pt;}
.y19_c00230{bottom:825.600000pt;}
.y1c_c00230{bottom:826.240000pt;}
.y18_c00230{bottom:826.880000pt;}
.y1a_c00230{bottom:827.520000pt;}
.y11_c00230{bottom:852.480000pt;}
.y16_c00230{bottom:853.120000pt;}
.y10_c00230{bottom:853.760000pt;}
.y13_c00230{bottom:854.400000pt;}
.y15_c00230{bottom:855.040000pt;}
.y12_c00230{bottom:855.680000pt;}
.y14_c00230{bottom:856.320000pt;}
.ya_c00230{bottom:881.280000pt;}
.yf_c00230{bottom:881.920000pt;}
.yd_c00230{bottom:882.560000pt;}
.yb_c00230{bottom:883.200000pt;}
.yc_c00230{bottom:884.480000pt;}
.ye_c00230{bottom:885.120000pt;}
.y9_c00230{bottom:910.080000pt;}
.y5_c00230{bottom:910.720000pt;}
.y7_c00230{bottom:911.360000pt;}
.y8_c00230{bottom:912.000000pt;}
.y6_c00230{bottom:913.280000pt;}
.y2_c00230{bottom:936.320000pt;}
.y3_c00230{bottom:936.960000pt;}
.y4_c00230{bottom:940.160000pt;}
.y1_c00230{bottom:984.960000pt;}
.h11_c00230{height:16.126250pt;}
.h12_c00230{height:29.948750pt;}
.h13_c00230{height:32.252500pt;}
.hb_c00230{height:34.556250pt;}
.h8_c00230{height:36.860000pt;}
.h7_c00230{height:39.163750pt;}
.h5_c00230{height:41.467500pt;}
.ha_c00230{height:43.771250pt;}
.h9_c00230{height:46.075000pt;}
.h6_c00230{height:48.378750pt;}
.hd_c00230{height:50.682500pt;}
.h10_c00230{height:52.986250pt;}
.he_c00230{height:55.290000pt;}
.h2_c00230{height:57.593750pt;}
.h4_c00230{height:59.897500pt;}
.h3_c00230{height:62.201250pt;}
.hf_c00230{height:66.808750pt;}
.hc_c00230{height:86.522500pt;}
.h0_c00230{height:1026.560000pt;}
.h1_c00230{height:1026.666667pt;}
.w0_c00230{width:704.000000pt;}
.x0_c00230{left:0.000000pt;}
.x2_c00230{left:65.280000pt;}
.x13_c00230{left:66.560000pt;}
.x36_c00230{left:67.840000pt;}
.x38_c00230{left:69.120000pt;}
.x7_c00230{left:93.440000pt;}
.xf_c00230{left:103.040000pt;}
.x30_c00230{left:112.000000pt;}
.x32_c00230{left:130.560000pt;}
.x39_c00230{left:131.840000pt;}
.x18_c00230{left:142.080000pt;}
.x8_c00230{left:159.360000pt;}
.x3_c00230{left:161.280000pt;}
.x34_c00230{left:168.960000pt;}
.x31_c00230{left:170.240000pt;}
.x9_c00230{left:189.440000pt;}
.x10_c00230{left:199.680000pt;}
.x35_c00230{left:208.000000pt;}
.x3c_c00230{left:209.280000pt;}
.x37_c00230{left:217.600000pt;}
.x1a_c00230{left:248.960000pt;}
.x33_c00230{left:256.000000pt;}
.x4_c00230{left:257.280000pt;}
.xa_c00230{left:265.600000pt;}
.x11_c00230{left:266.880000pt;}
.x1c_c00230{left:274.560000pt;}
.xb_c00230{left:295.040000pt;}
.x15_c00230{left:296.320000pt;}
.x14_c00230{left:305.280000pt;}
.x3d_c00230{left:313.600000pt;}
.x3b_c00230{left:332.800000pt;}
.x3e_c00230{left:362.880000pt;}
.xc_c00230{left:371.200000pt;}
.x5_c00230{left:372.480000pt;}
.x1d_c00230{left:381.440000pt;}
.xd_c00230{left:401.920000pt;}
.x1b_c00230{left:407.680000pt;}
.x1e_c00230{left:409.600000pt;}
.x12_c00230{left:411.520000pt;}
.x3a_c00230{left:419.200000pt;}
.x16_c00230{left:430.080000pt;}
.x19_c00230{left:439.680000pt;}
.x1f_c00230{left:447.360000pt;}
.x17_c00230{left:458.880000pt;}
.xe_c00230{left:477.440000pt;}
.x23_c00230{left:495.360000pt;}
.x6_c00230{left:496.640000pt;}
.x2b_c00230{left:504.960720pt;}
.x28_c00230{left:506.880000pt;}
.x20_c00230{left:515.200000pt;}
.x29_c00230{left:524.800000pt;}
.x24_c00230{left:534.400000pt;}
.x21_c00230{left:543.360000pt;}
.x40_c00230{left:552.960000pt;}
.x2c_c00230{left:554.240000pt;}
.x25_c00230{left:562.560000pt;}
.x2d_c00230{left:581.760000pt;}
.x2f_c00230{left:583.680000pt;}
.x22_c00230{left:592.000000pt;}
.x26_c00230{left:610.560000pt;}
.x2a_c00230{left:620.160000pt;}
.x1_c00230{left:633.600000pt;}
.x3f_c00230{left:637.440000pt;}
.x2e_c00230{left:638.720000pt;}
.x27_c00230{left:648.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6b851e77ddfefec7e9f8f922.woff2')format("woff");}.ff1_c00231{font-family:ff1_c00231;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m34_c00231{transform:matrix(0.144725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144725,0.000000,0.000000,0.250000,0,0);}
.m32_c00231{transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);}
.m16_c00231{transform:matrix(0.232125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232125,0.000000,0.000000,0.250000,0,0);}
.m2b_c00231{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m49_c00231{transform:matrix(0.235600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235600,0.000000,0.000000,0.250000,0,0);}
.m29_c00231{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m28_c00231{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m54_c00231{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00231{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_c00231{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);}
.m37_c00231{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m5_c00231{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);}
.m3b_c00231{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);}
.m3d_c00231{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);}
.m31_c00231{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00231{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);}
.m43_c00231{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_c00231{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);}
.m27_c00231{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m15_c00231{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.me_c00231{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m45_c00231{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m8_c00231{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00231{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m17_c00231{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00231{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m47_c00231{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00231{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m53_c00231{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m30_c00231{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.ma_c00231{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m18_c00231{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m13_c00231{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m36_c00231{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00231{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2_c00231{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00231{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m50_c00231{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);}
.m39_c00231{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m44_c00231{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);}
.m20_c00231{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00231{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00231{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m4_c00231{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m22_c00231{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m11_c00231{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00231{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);}
.m4a_c00231{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m9_c00231{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);}
.mc_c00231{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00231{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_c00231{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);}
.m2e_c00231{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.mf_c00231{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m21_c00231{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);}
.m0_c00231{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m24_c00231{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m12_c00231{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m56_c00231{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);}
.m46_c00231{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);}
.md_c00231{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m48_c00231{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m52_c00231{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m55_c00231{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m14_c00231{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00231{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);}
.m10_c00231{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);}
.m7_c00231{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m3_c00231{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);}
.m4f_c00231{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);}
.m26_c00231{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m23_c00231{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);}
.m51_c00231{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);}
.m4b_c00231{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m35_c00231{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m19_c00231{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m25_c00231{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.mb_c00231{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00231{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m40_c00231{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00231{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m33_c00231{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00231{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m38_c00231{transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00231{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.m42_c00231{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00231{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.v2_c00231{vertical-align:-2.880000px;}
.v0_c00231{vertical-align:0.000000px;}
.v1_c00231{vertical-align:5.760000px;}
.ls0_c00231{letter-spacing:0.000000px;}
.sc__c00231{text-shadow:none;}
.sc0_c00231{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00231{-webkit-text-stroke:0px transparent;}
.sc0_c00231{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00231{word-spacing:-0.449280px;}
.ws4_c00231{word-spacing:0.000000px;}
.ws1_c00231{word-spacing:5.626800px;}
.ws2_c00231{word-spacing:5.628099px;}
.ws3_c00231{word-spacing:10.274063px;}
.fc0_c00231{color:transparent;}
.fsa_c00231{font-size:34.560000px;}
.fsc_c00231{font-size:37.440000px;}
.fs3_c00231{font-size:40.320000px;}
.fsf_c00231{font-size:43.200000px;}
.fs6_c00231{font-size:46.080000px;}
.fs9_c00231{font-size:48.960000px;}
.fs2_c00231{font-size:51.840000px;}
.fs0_c00231{font-size:54.720000px;}
.fs8_c00231{font-size:57.600000px;}
.fs4_c00231{font-size:60.480000px;}
.fsd_c00231{font-size:63.360000px;}
.fse_c00231{font-size:66.240000px;}
.fsb_c00231{font-size:69.120000px;}
.fs7_c00231{font-size:72.000000px;}
.fs1_c00231{font-size:74.880000px;}
.fs5_c00231{font-size:77.760000px;}
.fs10_c00231{font-size:95.040000px;}
.y0_c00231{bottom:0.000000px;}
.y79_c00231{bottom:61.200000px;}
.y78_c00231{bottom:62.640000px;}
.y7a_c00231{bottom:64.080000px;}
.y7b_c00231{bottom:64.800000px;}
.y7c_c00231{bottom:65.520000px;}
.y77_c00231{bottom:66.240000px;}
.y76_c00231{bottom:66.960000px;}
.y74_c00231{bottom:97.920000px;}
.y72_c00231{bottom:103.680000px;}
.y73_c00231{bottom:105.840000px;}
.y75_c00231{bottom:108.000000px;}
.y70_c00231{bottom:108.720000px;}
.y71_c00231{bottom:109.440000px;}
.y6e_c00231{bottom:147.600000px;}
.y6c_c00231{bottom:148.320000px;}
.y6d_c00231{bottom:150.480000px;}
.y6f_c00231{bottom:151.200000px;}
.y6b_c00231{bottom:152.640000px;}
.y67_c00231{bottom:190.800000px;}
.y6a_c00231{bottom:192.960000px;}
.y68_c00231{bottom:193.680000px;}
.y69_c00231{bottom:194.400000px;}
.y66_c00231{bottom:195.120000px;}
.y63_c00231{bottom:234.000000px;}
.y64_c00231{bottom:236.880000px;}
.y62_c00231{bottom:237.600000px;}
.y65_c00231{bottom:239.040000px;}
.y5d_c00231{bottom:277.920000px;}
.y5e_c00231{bottom:280.080000px;}
.y5c_c00231{bottom:280.800000px;}
.y60_c00231{bottom:281.520000px;}
.y61_c00231{bottom:282.240000px;}
.y5f_c00231{bottom:282.960000px;}
.y5a_c00231{bottom:319.680000px;}
.y57_c00231{bottom:323.280000px;}
.y59_c00231{bottom:324.000000px;}
.y5b_c00231{bottom:324.720000px;}
.y58_c00231{bottom:325.440000px;}
.y54_c00231{bottom:363.600000px;}
.y53_c00231{bottom:364.320000px;}
.y52_c00231{bottom:366.480000px;}
.y55_c00231{bottom:367.200000px;}
.y56_c00231{bottom:367.920000px;}
.y51_c00231{bottom:408.240000px;}
.y4f_c00231{bottom:439.200000px;}
.y50_c00231{bottom:440.640000px;}
.y4e_c00231{bottom:441.360000px;}
.y4c_c00231{bottom:443.520000px;}
.y4d_c00231{bottom:444.240000px;}
.y33_c00231{bottom:483.840000px;}
.y34_c00231{bottom:484.560000px;}
.y31_c00231{bottom:485.280000px;}
.y35_c00231{bottom:486.720000px;}
.y32_c00231{bottom:487.440000px;}
.y30_c00231{bottom:525.600000px;}
.y4a_c00231{bottom:527.040000px;}
.y2e_c00231{bottom:527.760000px;}
.y4b_c00231{bottom:528.480000px;}
.y2d_c00231{bottom:529.200000px;}
.y2f_c00231{bottom:529.920000px;}
.y2c_c00231{bottom:568.800000px;}
.y2a_c00231{bottom:570.240000px;}
.y28_c00231{bottom:570.960000px;}
.y2b_c00231{bottom:571.680000px;}
.y29_c00231{bottom:573.120000px;}
.y24_c00231{bottom:611.280000px;}
.y27_c00231{bottom:612.000000px;}
.y25_c00231{bottom:612.720000px;}
.y23_c00231{bottom:613.440000px;}
.y47_c00231{bottom:614.160000px;}
.y48_c00231{bottom:614.880000px;}
.y49_c00231{bottom:615.600000px;}
.y26_c00231{bottom:616.320000px;}
.y22_c00231{bottom:655.200000px;}
.y20_c00231{bottom:655.920000px;}
.y45_c00231{bottom:656.640000px;}
.y46_c00231{bottom:657.360000px;}
.y21_c00231{bottom:658.800000px;}
.y1e_c00231{bottom:697.680000px;}
.y1f_c00231{bottom:698.400000px;}
.y43_c00231{bottom:699.120000px;}
.y44_c00231{bottom:699.840000px;}
.y1d_c00231{bottom:701.280000px;}
.y1b_c00231{bottom:740.880000px;}
.y1c_c00231{bottom:741.600000px;}
.y1a_c00231{bottom:742.320000px;}
.y41_c00231{bottom:743.040000px;}
.y19_c00231{bottom:743.760000px;}
.y42_c00231{bottom:744.480000px;}
.y40_c00231{bottom:745.200000px;}
.y18_c00231{bottom:784.080000px;}
.y17_c00231{bottom:784.800000px;}
.y3f_c00231{bottom:785.520000px;}
.y15_c00231{bottom:786.960000px;}
.y16_c00231{bottom:787.680000px;}
.y14_c00231{bottom:827.280000px;}
.y13_c00231{bottom:828.000000px;}
.y11_c00231{bottom:828.720000px;}
.y3d_c00231{bottom:829.440000px;}
.y12_c00231{bottom:830.880000px;}
.y3e_c00231{bottom:831.600000px;}
.yd_c00231{bottom:870.480000px;}
.yf_c00231{bottom:871.920000px;}
.yc_c00231{bottom:872.640000px;}
.y10_c00231{bottom:874.080000px;}
.ye_c00231{bottom:874.800000px;}
.yb_c00231{bottom:912.960000px;}
.ya_c00231{bottom:914.400000px;}
.y3a_c00231{bottom:915.120000px;}
.y3c_c00231{bottom:916.560000px;}
.y3b_c00231{bottom:918.000000px;}
.y8_c00231{bottom:956.880000px;}
.y9_c00231{bottom:957.600000px;}
.y7_c00231{bottom:958.320000px;}
.y39_c00231{bottom:959.760000px;}
.y6_c00231{bottom:999.360000px;}
.y5_c00231{bottom:1000.080000px;}
.y38_c00231{bottom:1000.800000px;}
.y2_c00231{bottom:1043.280000px;}
.y1_c00231{bottom:1044.000000px;}
.y37_c00231{bottom:1044.720000px;}
.y4_c00231{bottom:1046.160000px;}
.y3_c00231{bottom:1046.880000px;}
.y36_c00231{bottom:1103.040000px;}
.hd_c00231{height:31.100625px;}
.hf_c00231{height:33.692344px;}
.h5_c00231{height:36.284062px;}
.h12_c00231{height:38.875781px;}
.h8_c00231{height:41.467500px;}
.hb_c00231{height:44.059219px;}
.h4_c00231{height:46.650937px;}
.h2_c00231{height:49.242656px;}
.hc_c00231{height:49.819219px;}
.ha_c00231{height:51.834375px;}
.h6_c00231{height:54.426094px;}
.h10_c00231{height:57.017812px;}
.h11_c00231{height:59.609531px;}
.he_c00231{height:62.201250px;}
.h9_c00231{height:64.792969px;}
.h3_c00231{height:67.384687px;}
.h7_c00231{height:69.976406px;}
.h13_c00231{height:85.526719px;}
.h1_c00231{height:1148.250000px;}
.h0_c00231{height:1148.400000px;}
.w0_c00231{width:781.920000px;}
.w1_c00231{width:782.250000px;}
.x0_c00231{left:0.000000px;}
.x1_c00231{left:65.520000px;}
.x5_c00231{left:66.960000px;}
.xe_c00231{left:68.400000px;}
.x2a_c00231{left:69.840000px;}
.x31_c00231{left:71.280000px;}
.x8_c00231{left:138.960000px;}
.x2_c00231{left:140.400000px;}
.x25_c00231{left:141.840000px;}
.x3a_c00231{left:173.520000px;}
.x12_c00231{left:182.160000px;}
.xb_c00231{left:183.600000px;}
.x2b_c00231{left:216.720000px;}
.x35_c00231{left:218.160000px;}
.x9_c00231{left:226.800000px;}
.x3b_c00231{left:228.240000px;}
.x6_c00231{left:236.880000px;}
.x26_c00231{left:239.040000px;}
.x15_c00231{left:248.400000px;}
.x32_c00231{left:259.920000px;}
.x2c_c00231{left:270.720000px;}
.x3_c00231{left:280.800000px;}
.x7_c00231{left:291.600000px;}
.x16_c00231{left:303.120000px;}
.x2d_c00231{left:313.920000px;}
.xf_c00231{left:324.720000px;}
.xc_c00231{left:334.800000px;}
.x33_c00231{left:358.560000px;}
.x4_c00231{left:367.200000px;}
.xd_c00231{left:368.640000px;}
.x3c_c00231{left:378.000000px;}
.x27_c00231{left:379.440000px;}
.x13_c00231{left:388.800000px;}
.x2e_c00231{left:410.400000px;}
.x34_c00231{left:411.840000px;}
.xa_c00231{left:421.200000px;}
.x3d_c00231{left:422.640000px;}
.x14_c00231{left:433.440000px;}
.x10_c00231{left:442.800000px;}
.x2f_c00231{left:465.840000px;}
.x36_c00231{left:476.640000px;}
.x11_c00231{left:486.000000px;}
.x17_c00231{left:487.440000px;}
.x38_c00231{left:498.240000px;}
.x30_c00231{left:507.600000px;}
.x39_c00231{left:519.840000px;}
.x28_c00231{left:530.640000px;}
.x21_c00231{left:552.240000px;}
.x1e_c00231{left:563.040000px;}
.x19_c00231{left:583.200000px;}
.x29_c00231{left:584.640000px;}
.x1a_c00231{left:616.320000px;}
.x37_c00231{left:617.760000px;}
.x1b_c00231{left:639.360000px;}
.x20_c00231{left:649.440000px;}
.x1d_c00231{left:658.800000px;}
.x23_c00231{left:681.840000px;}
.x1c_c00231{left:691.200000px;}
.x24_c00231{left:692.640000px;}
.x18_c00231{left:704.160000px;}
.x1f_c00231{left:710.640000px;}
.x22_c00231{left:712.080000px;}
@media print{
.v2_c00231{vertical-align:-2.560000pt;}
.v0_c00231{vertical-align:0.000000pt;}
.v1_c00231{vertical-align:5.120000pt;}
.ls0_c00231{letter-spacing:0.000000pt;}
.ws0_c00231{word-spacing:-0.399360pt;}
.ws4_c00231{word-spacing:0.000000pt;}
.ws1_c00231{word-spacing:5.001600pt;}
.ws2_c00231{word-spacing:5.002755pt;}
.ws3_c00231{word-spacing:9.132500pt;}
.fsa_c00231{font-size:30.720000pt;}
.fsc_c00231{font-size:33.280000pt;}
.fs3_c00231{font-size:35.840000pt;}
.fsf_c00231{font-size:38.400000pt;}
.fs6_c00231{font-size:40.960000pt;}
.fs9_c00231{font-size:43.520000pt;}
.fs2_c00231{font-size:46.080000pt;}
.fs0_c00231{font-size:48.640000pt;}
.fs8_c00231{font-size:51.200000pt;}
.fs4_c00231{font-size:53.760000pt;}
.fsd_c00231{font-size:56.320000pt;}
.fse_c00231{font-size:58.880000pt;}
.fsb_c00231{font-size:61.440000pt;}
.fs7_c00231{font-size:64.000000pt;}
.fs1_c00231{font-size:66.560000pt;}
.fs5_c00231{font-size:69.120000pt;}
.fs10_c00231{font-size:84.480000pt;}
.y0_c00231{bottom:0.000000pt;}
.y79_c00231{bottom:54.400000pt;}
.y78_c00231{bottom:55.680000pt;}
.y7a_c00231{bottom:56.960000pt;}
.y7b_c00231{bottom:57.600000pt;}
.y7c_c00231{bottom:58.240000pt;}
.y77_c00231{bottom:58.880000pt;}
.y76_c00231{bottom:59.520000pt;}
.y74_c00231{bottom:87.040000pt;}
.y72_c00231{bottom:92.160000pt;}
.y73_c00231{bottom:94.080000pt;}
.y75_c00231{bottom:96.000000pt;}
.y70_c00231{bottom:96.640000pt;}
.y71_c00231{bottom:97.280000pt;}
.y6e_c00231{bottom:131.200000pt;}
.y6c_c00231{bottom:131.840000pt;}
.y6d_c00231{bottom:133.760000pt;}
.y6f_c00231{bottom:134.400000pt;}
.y6b_c00231{bottom:135.680000pt;}
.y67_c00231{bottom:169.600000pt;}
.y6a_c00231{bottom:171.520000pt;}
.y68_c00231{bottom:172.160000pt;}
.y69_c00231{bottom:172.800000pt;}
.y66_c00231{bottom:173.440000pt;}
.y63_c00231{bottom:208.000000pt;}
.y64_c00231{bottom:210.560000pt;}
.y62_c00231{bottom:211.200000pt;}
.y65_c00231{bottom:212.480000pt;}
.y5d_c00231{bottom:247.040000pt;}
.y5e_c00231{bottom:248.960000pt;}
.y5c_c00231{bottom:249.600000pt;}
.y60_c00231{bottom:250.240000pt;}
.y61_c00231{bottom:250.880000pt;}
.y5f_c00231{bottom:251.520000pt;}
.y5a_c00231{bottom:284.160000pt;}
.y57_c00231{bottom:287.360000pt;}
.y59_c00231{bottom:288.000000pt;}
.y5b_c00231{bottom:288.640000pt;}
.y58_c00231{bottom:289.280000pt;}
.y54_c00231{bottom:323.200000pt;}
.y53_c00231{bottom:323.840000pt;}
.y52_c00231{bottom:325.760000pt;}
.y55_c00231{bottom:326.400000pt;}
.y56_c00231{bottom:327.040000pt;}
.y51_c00231{bottom:362.880000pt;}
.y4f_c00231{bottom:390.400000pt;}
.y50_c00231{bottom:391.680000pt;}
.y4e_c00231{bottom:392.320000pt;}
.y4c_c00231{bottom:394.240000pt;}
.y4d_c00231{bottom:394.880000pt;}
.y33_c00231{bottom:430.080000pt;}
.y34_c00231{bottom:430.720000pt;}
.y31_c00231{bottom:431.360000pt;}
.y35_c00231{bottom:432.640000pt;}
.y32_c00231{bottom:433.280000pt;}
.y30_c00231{bottom:467.200000pt;}
.y4a_c00231{bottom:468.480000pt;}
.y2e_c00231{bottom:469.120000pt;}
.y4b_c00231{bottom:469.760000pt;}
.y2d_c00231{bottom:470.400000pt;}
.y2f_c00231{bottom:471.040000pt;}
.y2c_c00231{bottom:505.600000pt;}
.y2a_c00231{bottom:506.880000pt;}
.y28_c00231{bottom:507.520000pt;}
.y2b_c00231{bottom:508.160000pt;}
.y29_c00231{bottom:509.440000pt;}
.y24_c00231{bottom:543.360000pt;}
.y27_c00231{bottom:544.000000pt;}
.y25_c00231{bottom:544.640000pt;}
.y23_c00231{bottom:545.280000pt;}
.y47_c00231{bottom:545.920000pt;}
.y48_c00231{bottom:546.560000pt;}
.y49_c00231{bottom:547.200000pt;}
.y26_c00231{bottom:547.840000pt;}
.y22_c00231{bottom:582.400000pt;}
.y20_c00231{bottom:583.040000pt;}
.y45_c00231{bottom:583.680000pt;}
.y46_c00231{bottom:584.320000pt;}
.y21_c00231{bottom:585.600000pt;}
.y1e_c00231{bottom:620.160000pt;}
.y1f_c00231{bottom:620.800000pt;}
.y43_c00231{bottom:621.440000pt;}
.y44_c00231{bottom:622.080000pt;}
.y1d_c00231{bottom:623.360000pt;}
.y1b_c00231{bottom:658.560000pt;}
.y1c_c00231{bottom:659.200000pt;}
.y1a_c00231{bottom:659.840000pt;}
.y41_c00231{bottom:660.480000pt;}
.y19_c00231{bottom:661.120000pt;}
.y42_c00231{bottom:661.760000pt;}
.y40_c00231{bottom:662.400000pt;}
.y18_c00231{bottom:696.960000pt;}
.y17_c00231{bottom:697.600000pt;}
.y3f_c00231{bottom:698.240000pt;}
.y15_c00231{bottom:699.520000pt;}
.y16_c00231{bottom:700.160000pt;}
.y14_c00231{bottom:735.360000pt;}
.y13_c00231{bottom:736.000000pt;}
.y11_c00231{bottom:736.640000pt;}
.y3d_c00231{bottom:737.280000pt;}
.y12_c00231{bottom:738.560000pt;}
.y3e_c00231{bottom:739.200000pt;}
.yd_c00231{bottom:773.760000pt;}
.yf_c00231{bottom:775.040000pt;}
.yc_c00231{bottom:775.680000pt;}
.y10_c00231{bottom:776.960000pt;}
.ye_c00231{bottom:777.600000pt;}
.yb_c00231{bottom:811.520000pt;}
.ya_c00231{bottom:812.800000pt;}
.y3a_c00231{bottom:813.440000pt;}
.y3c_c00231{bottom:814.720000pt;}
.y3b_c00231{bottom:816.000000pt;}
.y8_c00231{bottom:850.560000pt;}
.y9_c00231{bottom:851.200000pt;}
.y7_c00231{bottom:851.840000pt;}
.y39_c00231{bottom:853.120000pt;}
.y6_c00231{bottom:888.320000pt;}
.y5_c00231{bottom:888.960000pt;}
.y38_c00231{bottom:889.600000pt;}
.y2_c00231{bottom:927.360000pt;}
.y1_c00231{bottom:928.000000pt;}
.y37_c00231{bottom:928.640000pt;}
.y4_c00231{bottom:929.920000pt;}
.y3_c00231{bottom:930.560000pt;}
.y36_c00231{bottom:980.480000pt;}
.hd_c00231{height:27.645000pt;}
.hf_c00231{height:29.948750pt;}
.h5_c00231{height:32.252500pt;}
.h12_c00231{height:34.556250pt;}
.h8_c00231{height:36.860000pt;}
.hb_c00231{height:39.163750pt;}
.h4_c00231{height:41.467500pt;}
.h2_c00231{height:43.771250pt;}
.hc_c00231{height:44.283750pt;}
.ha_c00231{height:46.075000pt;}
.h6_c00231{height:48.378750pt;}
.h10_c00231{height:50.682500pt;}
.h11_c00231{height:52.986250pt;}
.he_c00231{height:55.290000pt;}
.h9_c00231{height:57.593750pt;}
.h3_c00231{height:59.897500pt;}
.h7_c00231{height:62.201250pt;}
.h13_c00231{height:76.023750pt;}
.h1_c00231{height:1020.666667pt;}
.h0_c00231{height:1020.800000pt;}
.w0_c00231{width:695.040000pt;}
.w1_c00231{width:695.333333pt;}
.x0_c00231{left:0.000000pt;}
.x1_c00231{left:58.240000pt;}
.x5_c00231{left:59.520000pt;}
.xe_c00231{left:60.800000pt;}
.x2a_c00231{left:62.080000pt;}
.x31_c00231{left:63.360000pt;}
.x8_c00231{left:123.520000pt;}
.x2_c00231{left:124.800000pt;}
.x25_c00231{left:126.080000pt;}
.x3a_c00231{left:154.240000pt;}
.x12_c00231{left:161.920000pt;}
.xb_c00231{left:163.200000pt;}
.x2b_c00231{left:192.640000pt;}
.x35_c00231{left:193.920000pt;}
.x9_c00231{left:201.600000pt;}
.x3b_c00231{left:202.880000pt;}
.x6_c00231{left:210.560000pt;}
.x26_c00231{left:212.480000pt;}
.x15_c00231{left:220.800000pt;}
.x32_c00231{left:231.040000pt;}
.x2c_c00231{left:240.640000pt;}
.x3_c00231{left:249.600000pt;}
.x7_c00231{left:259.200000pt;}
.x16_c00231{left:269.440000pt;}
.x2d_c00231{left:279.040000pt;}
.xf_c00231{left:288.640000pt;}
.xc_c00231{left:297.600000pt;}
.x33_c00231{left:318.720000pt;}
.x4_c00231{left:326.400000pt;}
.xd_c00231{left:327.680000pt;}
.x3c_c00231{left:336.000000pt;}
.x27_c00231{left:337.280000pt;}
.x13_c00231{left:345.600000pt;}
.x2e_c00231{left:364.800000pt;}
.x34_c00231{left:366.080000pt;}
.xa_c00231{left:374.400000pt;}
.x3d_c00231{left:375.680000pt;}
.x14_c00231{left:385.280000pt;}
.x10_c00231{left:393.600000pt;}
.x2f_c00231{left:414.080000pt;}
.x36_c00231{left:423.680000pt;}
.x11_c00231{left:432.000000pt;}
.x17_c00231{left:433.280000pt;}
.x38_c00231{left:442.880000pt;}
.x30_c00231{left:451.200000pt;}
.x39_c00231{left:462.080000pt;}
.x28_c00231{left:471.680000pt;}
.x21_c00231{left:490.880000pt;}
.x1e_c00231{left:500.480000pt;}
.x19_c00231{left:518.400000pt;}
.x29_c00231{left:519.680000pt;}
.x1a_c00231{left:547.840000pt;}
.x37_c00231{left:549.120000pt;}
.x1b_c00231{left:568.320000pt;}
.x20_c00231{left:577.280000pt;}
.x1d_c00231{left:585.600000pt;}
.x23_c00231{left:606.080000pt;}
.x1c_c00231{left:614.400000pt;}
.x24_c00231{left:615.680000pt;}
.x18_c00231{left:625.920000pt;}
.x1f_c00231{left:631.680000pt;}
.x22_c00231{left:632.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_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_3ac83ebee7984d6dcf04afae.woff2')format("woff");}.ff1_c00232{font-family:ff1_c00232;line-height:1.109863;font-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_c00232{transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);}
.m49_c00232{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m44_c00232{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m40_c00232{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m30_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);}
.m18_c00232{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00232{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mc_c00232{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m26_c00232{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);}
.m2b_c00232{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m36_c00232{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m39_c00232{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mf_c00232{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m12_c00232{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m5_c00232{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);}
.m47_c00232{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00232{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m32_c00232{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m3_c00232{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);}
.m2d_c00232{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m4_c00232{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m21_c00232{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m10_c00232{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m24_c00232{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00232{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00232{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1_c00232{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m16_c00232{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m15_c00232{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m34_c00232{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m43_c00232{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m8_c00232{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00232{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m13_c00232{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00232{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00232{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);}
.m41_c00232{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m23_c00232{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_c00232{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);}
.m20_c00232{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m37_c00232{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);}
.m0_c00232{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m6_c00232{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);}
.m2e_c00232{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m25_c00232{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);}
.m1a_c00232{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m11_c00232{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m9_c00232{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);}
.m38_c00232{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);}
.m2c_c00232{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m14_c00232{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);}
.m17_c00232{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);}
.m7_c00232{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);}
.m4a_c00232{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00232{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);}
.m29_c00232{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00232{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);}
.m19_c00232{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.ma_c00232{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m48_c00232{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);}
.m2_c00232{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00232{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);}
.m22_c00232{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.mb_c00232{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m45_c00232{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);}
.me_c00232{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.md_c00232{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);}
.m28_c00232{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m35_c00232{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00232{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m33_c00232{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m31_c00232{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00232{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m46_c00232{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00232{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.v0_c00232{vertical-align:0.000000px;}
.ls0_c00232{letter-spacing:0.000000px;}
.sc__c00232{text-shadow:none;}
.sc0_c00232{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00232{-webkit-text-stroke:0px transparent;}
.sc0_c00232{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00232{word-spacing:0.000000px;}
.fc0_c00232{color:transparent;}
.fsd_c00232{font-size:34.560000px;}
.fsb_c00232{font-size:40.320000px;}
.fs7_c00232{font-size:46.080000px;}
.fs2_c00232{font-size:48.960000px;}
.fs1_c00232{font-size:51.840000px;}
.fs9_c00232{font-size:54.720000px;}
.fs6_c00232{font-size:57.600000px;}
.fs0_c00232{font-size:60.480000px;}
.fsa_c00232{font-size:63.360000px;}
.fs5_c00232{font-size:66.240000px;}
.fsc_c00232{font-size:69.120000px;}
.fs8_c00232{font-size:72.000000px;}
.fs4_c00232{font-size:74.880000px;}
.fs3_c00232{font-size:77.760000px;}
.y0_c00232{bottom:0.000000px;}
.y55_c00232{bottom:100.800000px;}
.y56_c00232{bottom:101.520000px;}
.y78_c00232{bottom:103.680000px;}
.y57_c00232{bottom:104.400000px;}
.y54_c00232{bottom:105.840000px;}
.y51_c00232{bottom:142.560000px;}
.y53_c00232{bottom:144.000000px;}
.y50_c00232{bottom:146.160000px;}
.y75_c00232{bottom:146.880000px;}
.y52_c00232{bottom:147.600000px;}
.y77_c00232{bottom:148.320000px;}
.y4f_c00232{bottom:149.040000px;}
.y76_c00232{bottom:149.760000px;}
.y4b_c00232{bottom:186.480000px;}
.y4d_c00232{bottom:188.640000px;}
.y4e_c00232{bottom:189.360000px;}
.y4c_c00232{bottom:190.080000px;}
.y74_c00232{bottom:190.800000px;}
.y49_c00232{bottom:191.520000px;}
.y4a_c00232{bottom:192.240000px;}
.y48_c00232{bottom:229.680000px;}
.y47_c00232{bottom:232.560000px;}
.y72_c00232{bottom:233.280000px;}
.y45_c00232{bottom:234.720000px;}
.y46_c00232{bottom:235.440000px;}
.y73_c00232{bottom:236.160000px;}
.y44_c00232{bottom:272.880000px;}
.y42_c00232{bottom:273.600000px;}
.y43_c00232{bottom:276.480000px;}
.y41_c00232{bottom:277.200000px;}
.y70_c00232{bottom:277.920000px;}
.y71_c00232{bottom:278.640000px;}
.y3e_c00232{bottom:316.800000px;}
.y3f_c00232{bottom:317.520000px;}
.y6e_c00232{bottom:319.680000px;}
.y3d_c00232{bottom:320.400000px;}
.y40_c00232{bottom:321.120000px;}
.y6f_c00232{bottom:321.840000px;}
.y3a_c00232{bottom:360.000000px;}
.y3b_c00232{bottom:361.440000px;}
.y6c_c00232{bottom:362.160000px;}
.y3c_c00232{bottom:362.880000px;}
.y39_c00232{bottom:363.600000px;}
.y6d_c00232{bottom:364.320000px;}
.y38_c00232{bottom:402.480000px;}
.y6b_c00232{bottom:404.640000px;}
.y36_c00232{bottom:406.080000px;}
.y37_c00232{bottom:406.800000px;}
.y34_c00232{bottom:445.680000px;}
.y35_c00232{bottom:446.400000px;}
.y69_c00232{bottom:448.560000px;}
.y33_c00232{bottom:449.280000px;}
.y6a_c00232{bottom:450.000000px;}
.y32_c00232{bottom:488.880000px;}
.y68_c00232{bottom:491.040000px;}
.y2f_c00232{bottom:491.760000px;}
.y31_c00232{bottom:492.480000px;}
.y30_c00232{bottom:493.200000px;}
.y2c_c00232{bottom:532.800000px;}
.y2d_c00232{bottom:534.240000px;}
.y2a_c00232{bottom:534.960000px;}
.y2e_c00232{bottom:535.680000px;}
.y2b_c00232{bottom:536.400000px;}
.y28_c00232{bottom:576.000000px;}
.y29_c00232{bottom:576.720000px;}
.y27_c00232{bottom:577.440000px;}
.y66_c00232{bottom:578.160000px;}
.y67_c00232{bottom:580.320000px;}
.y25_c00232{bottom:621.360000px;}
.y26_c00232{bottom:622.080000px;}
.y24_c00232{bottom:622.800000px;}
.y23_c00232{bottom:673.200000px;}
.y22_c00232{bottom:676.800000px;}
.y1d_c00232{bottom:705.600000px;}
.y21_c00232{bottom:706.320000px;}
.y1c_c00232{bottom:707.040000px;}
.y1e_c00232{bottom:707.760000px;}
.y1f_c00232{bottom:709.200000px;}
.y20_c00232{bottom:709.920000px;}
.y1a_c00232{bottom:748.800000px;}
.y1b_c00232{bottom:749.520000px;}
.y19_c00232{bottom:750.960000px;}
.y65_c00232{bottom:751.680000px;}
.y18_c00232{bottom:792.000000px;}
.y16_c00232{bottom:793.440000px;}
.y64_c00232{bottom:794.160000px;}
.y17_c00232{bottom:795.600000px;}
.y63_c00232{bottom:796.320000px;}
.y12_c00232{bottom:835.200000px;}
.y13_c00232{bottom:835.920000px;}
.y11_c00232{bottom:836.640000px;}
.y62_c00232{bottom:837.360000px;}
.y15_c00232{bottom:838.080000px;}
.y14_c00232{bottom:838.800000px;}
.y61_c00232{bottom:839.520000px;}
.yf_c00232{bottom:877.680000px;}
.y10_c00232{bottom:879.120000px;}
.ye_c00232{bottom:879.840000px;}
.y5f_c00232{bottom:880.560000px;}
.y60_c00232{bottom:881.280000px;}
.yd_c00232{bottom:920.880000px;}
.ya_c00232{bottom:922.320000px;}
.yc_c00232{bottom:923.040000px;}
.y5d_c00232{bottom:923.760000px;}
.y5e_c00232{bottom:924.480000px;}
.yb_c00232{bottom:925.200000px;}
.y9_c00232{bottom:964.080000px;}
.y8_c00232{bottom:964.800000px;}
.y5b_c00232{bottom:965.520000px;}
.y5c_c00232{bottom:968.400000px;}
.y5a_c00232{bottom:969.120000px;}
.y5_c00232{bottom:1007.280000px;}
.y7_c00232{bottom:1010.880000px;}
.y6_c00232{bottom:1011.600000px;}
.y4_c00232{bottom:1039.680000px;}
.y1_c00232{bottom:1040.400000px;}
.y3_c00232{bottom:1041.120000px;}
.y59_c00232{bottom:1042.560000px;}
.y2_c00232{bottom:1043.280000px;}
.y58_c00232{bottom:1102.320000px;}
.hf_c00232{height:31.100625px;}
.hd_c00232{height:36.284062px;}
.h9_c00232{height:41.467500px;}
.h4_c00232{height:44.059219px;}
.h3_c00232{height:46.650937px;}
.hb_c00232{height:49.242656px;}
.h8_c00232{height:51.834375px;}
.h2_c00232{height:54.426094px;}
.hc_c00232{height:57.017812px;}
.h7_c00232{height:59.609531px;}
.he_c00232{height:62.201250px;}
.ha_c00232{height:64.792969px;}
.h6_c00232{height:67.384687px;}
.h5_c00232{height:69.976406px;}
.h1_c00232{height:1146.750000px;}
.h0_c00232{height:1146.960000px;}
.w0_c00232{width:779.760000px;}
.w1_c00232{width:780.000000px;}
.x0_c00232{left:0.000000px;}
.x1_c00232{left:62.640000px;}
.xd_c00232{left:64.080000px;}
.x1a_c00232{left:65.520000px;}
.x1d_c00232{left:66.960000px;}
.x26_c00232{left:68.400000px;}
.x14_c00232{left:115.200000px;}
.x2_c00232{left:136.080000px;}
.x10_c00232{left:137.520000px;}
.x9_c00232{left:168.480000px;}
.x3_c00232{left:178.560000px;}
.x15_c00232{left:180.720000px;}
.x13_c00232{left:190.080000px;}
.x1e_c00232{left:211.680000px;}
.xa_c00232{left:222.480000px;}
.x4_c00232{left:233.280000px;}
.x1b_c00232{left:234.720000px;}
.xe_c00232{left:255.600000px;}
.xc_c00232{left:265.680000px;}
.x1f_c00232{left:267.840000px;}
.x7_c00232{left:275.760000px;}
.x11_c00232{left:277.200000px;}
.x27_c00232{left:278.640000px;}
.x16_c00232{left:287.280000px;}
.x22_c00232{left:289.440000px;}
.x8_c00232{left:319.680000px;}
.x23_c00232{left:331.920000px;}
.x18_c00232{left:342.000000px;}
.x17_c00232{left:353.520000px;}
.x5_c00232{left:362.880000px;}
.x12_c00232{left:364.320000px;}
.x19_c00232{left:397.440000px;}
.x24_c00232{left:407.520000px;}
.xb_c00232{left:417.600000px;}
.x1c_c00232{left:419.040000px;}
.x21_c00232{left:439.920000px;}
.xf_c00232{left:461.520000px;}
.x20_c00232{left:493.200000px;}
.x25_c00232{left:504.000000px;}
.x28_c00232{left:505.440000px;}
.x6_c00232{left:514.080000px;}
.x2e_c00232{left:558.720000px;}
.x2f_c00232{left:579.600000px;}
.x33_c00232{left:581.040000px;}
.x31_c00232{left:611.280000px;}
.x2a_c00232{left:612.720000px;}
.x2b_c00232{left:645.120000px;}
.x32_c00232{left:655.200000px;}
.x30_c00232{left:677.520000px;}
.x29_c00232{left:684.720000px;}
.x2c_c00232{left:687.600000px;}
.x2d_c00232{left:707.040000px;}
.x34_c00232{left:708.480000px;}
@media print{
.v0_c00232{vertical-align:0.000000pt;}
.ls0_c00232{letter-spacing:0.000000pt;}
.ws0_c00232{word-spacing:0.000000pt;}
.fsd_c00232{font-size:30.720000pt;}
.fsb_c00232{font-size:35.840000pt;}
.fs7_c00232{font-size:40.960000pt;}
.fs2_c00232{font-size:43.520000pt;}
.fs1_c00232{font-size:46.080000pt;}
.fs9_c00232{font-size:48.640000pt;}
.fs6_c00232{font-size:51.200000pt;}
.fs0_c00232{font-size:53.760000pt;}
.fsa_c00232{font-size:56.320000pt;}
.fs5_c00232{font-size:58.880000pt;}
.fsc_c00232{font-size:61.440000pt;}
.fs8_c00232{font-size:64.000000pt;}
.fs4_c00232{font-size:66.560000pt;}
.fs3_c00232{font-size:69.120000pt;}
.y0_c00232{bottom:0.000000pt;}
.y55_c00232{bottom:89.600000pt;}
.y56_c00232{bottom:90.240000pt;}
.y78_c00232{bottom:92.160000pt;}
.y57_c00232{bottom:92.800000pt;}
.y54_c00232{bottom:94.080000pt;}
.y51_c00232{bottom:126.720000pt;}
.y53_c00232{bottom:128.000000pt;}
.y50_c00232{bottom:129.920000pt;}
.y75_c00232{bottom:130.560000pt;}
.y52_c00232{bottom:131.200000pt;}
.y77_c00232{bottom:131.840000pt;}
.y4f_c00232{bottom:132.480000pt;}
.y76_c00232{bottom:133.120000pt;}
.y4b_c00232{bottom:165.760000pt;}
.y4d_c00232{bottom:167.680000pt;}
.y4e_c00232{bottom:168.320000pt;}
.y4c_c00232{bottom:168.960000pt;}
.y74_c00232{bottom:169.600000pt;}
.y49_c00232{bottom:170.240000pt;}
.y4a_c00232{bottom:170.880000pt;}
.y48_c00232{bottom:204.160000pt;}
.y47_c00232{bottom:206.720000pt;}
.y72_c00232{bottom:207.360000pt;}
.y45_c00232{bottom:208.640000pt;}
.y46_c00232{bottom:209.280000pt;}
.y73_c00232{bottom:209.920000pt;}
.y44_c00232{bottom:242.560000pt;}
.y42_c00232{bottom:243.200000pt;}
.y43_c00232{bottom:245.760000pt;}
.y41_c00232{bottom:246.400000pt;}
.y70_c00232{bottom:247.040000pt;}
.y71_c00232{bottom:247.680000pt;}
.y3e_c00232{bottom:281.600000pt;}
.y3f_c00232{bottom:282.240000pt;}
.y6e_c00232{bottom:284.160000pt;}
.y3d_c00232{bottom:284.800000pt;}
.y40_c00232{bottom:285.440000pt;}
.y6f_c00232{bottom:286.080000pt;}
.y3a_c00232{bottom:320.000000pt;}
.y3b_c00232{bottom:321.280000pt;}
.y6c_c00232{bottom:321.920000pt;}
.y3c_c00232{bottom:322.560000pt;}
.y39_c00232{bottom:323.200000pt;}
.y6d_c00232{bottom:323.840000pt;}
.y38_c00232{bottom:357.760000pt;}
.y6b_c00232{bottom:359.680000pt;}
.y36_c00232{bottom:360.960000pt;}
.y37_c00232{bottom:361.600000pt;}
.y34_c00232{bottom:396.160000pt;}
.y35_c00232{bottom:396.800000pt;}
.y69_c00232{bottom:398.720000pt;}
.y33_c00232{bottom:399.360000pt;}
.y6a_c00232{bottom:400.000000pt;}
.y32_c00232{bottom:434.560000pt;}
.y68_c00232{bottom:436.480000pt;}
.y2f_c00232{bottom:437.120000pt;}
.y31_c00232{bottom:437.760000pt;}
.y30_c00232{bottom:438.400000pt;}
.y2c_c00232{bottom:473.600000pt;}
.y2d_c00232{bottom:474.880000pt;}
.y2a_c00232{bottom:475.520000pt;}
.y2e_c00232{bottom:476.160000pt;}
.y2b_c00232{bottom:476.800000pt;}
.y28_c00232{bottom:512.000000pt;}
.y29_c00232{bottom:512.640000pt;}
.y27_c00232{bottom:513.280000pt;}
.y66_c00232{bottom:513.920000pt;}
.y67_c00232{bottom:515.840000pt;}
.y25_c00232{bottom:552.320000pt;}
.y26_c00232{bottom:552.960000pt;}
.y24_c00232{bottom:553.600000pt;}
.y23_c00232{bottom:598.400000pt;}
.y22_c00232{bottom:601.600000pt;}
.y1d_c00232{bottom:627.200000pt;}
.y21_c00232{bottom:627.840000pt;}
.y1c_c00232{bottom:628.480000pt;}
.y1e_c00232{bottom:629.120000pt;}
.y1f_c00232{bottom:630.400000pt;}
.y20_c00232{bottom:631.040000pt;}
.y1a_c00232{bottom:665.600000pt;}
.y1b_c00232{bottom:666.240000pt;}
.y19_c00232{bottom:667.520000pt;}
.y65_c00232{bottom:668.160000pt;}
.y18_c00232{bottom:704.000000pt;}
.y16_c00232{bottom:705.280000pt;}
.y64_c00232{bottom:705.920000pt;}
.y17_c00232{bottom:707.200000pt;}
.y63_c00232{bottom:707.840000pt;}
.y12_c00232{bottom:742.400000pt;}
.y13_c00232{bottom:743.040000pt;}
.y11_c00232{bottom:743.680000pt;}
.y62_c00232{bottom:744.320000pt;}
.y15_c00232{bottom:744.960000pt;}
.y14_c00232{bottom:745.600000pt;}
.y61_c00232{bottom:746.240000pt;}
.yf_c00232{bottom:780.160000pt;}
.y10_c00232{bottom:781.440000pt;}
.ye_c00232{bottom:782.080000pt;}
.y5f_c00232{bottom:782.720000pt;}
.y60_c00232{bottom:783.360000pt;}
.yd_c00232{bottom:818.560000pt;}
.ya_c00232{bottom:819.840000pt;}
.yc_c00232{bottom:820.480000pt;}
.y5d_c00232{bottom:821.120000pt;}
.y5e_c00232{bottom:821.760000pt;}
.yb_c00232{bottom:822.400000pt;}
.y9_c00232{bottom:856.960000pt;}
.y8_c00232{bottom:857.600000pt;}
.y5b_c00232{bottom:858.240000pt;}
.y5c_c00232{bottom:860.800000pt;}
.y5a_c00232{bottom:861.440000pt;}
.y5_c00232{bottom:895.360000pt;}
.y7_c00232{bottom:898.560000pt;}
.y6_c00232{bottom:899.200000pt;}
.y4_c00232{bottom:924.160000pt;}
.y1_c00232{bottom:924.800000pt;}
.y3_c00232{bottom:925.440000pt;}
.y59_c00232{bottom:926.720000pt;}
.y2_c00232{bottom:927.360000pt;}
.y58_c00232{bottom:979.840000pt;}
.hf_c00232{height:27.645000pt;}
.hd_c00232{height:32.252500pt;}
.h9_c00232{height:36.860000pt;}
.h4_c00232{height:39.163750pt;}
.h3_c00232{height:41.467500pt;}
.hb_c00232{height:43.771250pt;}
.h8_c00232{height:46.075000pt;}
.h2_c00232{height:48.378750pt;}
.hc_c00232{height:50.682500pt;}
.h7_c00232{height:52.986250pt;}
.he_c00232{height:55.290000pt;}
.ha_c00232{height:57.593750pt;}
.h6_c00232{height:59.897500pt;}
.h5_c00232{height:62.201250pt;}
.h1_c00232{height:1019.333333pt;}
.h0_c00232{height:1019.520000pt;}
.w0_c00232{width:693.120000pt;}
.w1_c00232{width:693.333333pt;}
.x0_c00232{left:0.000000pt;}
.x1_c00232{left:55.680000pt;}
.xd_c00232{left:56.960000pt;}
.x1a_c00232{left:58.240000pt;}
.x1d_c00232{left:59.520000pt;}
.x26_c00232{left:60.800000pt;}
.x14_c00232{left:102.400000pt;}
.x2_c00232{left:120.960000pt;}
.x10_c00232{left:122.240000pt;}
.x9_c00232{left:149.760000pt;}
.x3_c00232{left:158.720000pt;}
.x15_c00232{left:160.640000pt;}
.x13_c00232{left:168.960000pt;}
.x1e_c00232{left:188.160000pt;}
.xa_c00232{left:197.760000pt;}
.x4_c00232{left:207.360000pt;}
.x1b_c00232{left:208.640000pt;}
.xe_c00232{left:227.200000pt;}
.xc_c00232{left:236.160000pt;}
.x1f_c00232{left:238.080000pt;}
.x7_c00232{left:245.120000pt;}
.x11_c00232{left:246.400000pt;}
.x27_c00232{left:247.680000pt;}
.x16_c00232{left:255.360000pt;}
.x22_c00232{left:257.280000pt;}
.x8_c00232{left:284.160000pt;}
.x23_c00232{left:295.040000pt;}
.x18_c00232{left:304.000000pt;}
.x17_c00232{left:314.240000pt;}
.x5_c00232{left:322.560000pt;}
.x12_c00232{left:323.840000pt;}
.x19_c00232{left:353.280000pt;}
.x24_c00232{left:362.240000pt;}
.xb_c00232{left:371.200000pt;}
.x1c_c00232{left:372.480000pt;}
.x21_c00232{left:391.040000pt;}
.xf_c00232{left:410.240000pt;}
.x20_c00232{left:438.400000pt;}
.x25_c00232{left:448.000000pt;}
.x28_c00232{left:449.280000pt;}
.x6_c00232{left:456.960000pt;}
.x2e_c00232{left:496.640000pt;}
.x2f_c00232{left:515.200000pt;}
.x33_c00232{left:516.480000pt;}
.x31_c00232{left:543.360000pt;}
.x2a_c00232{left:544.640000pt;}
.x2b_c00232{left:573.440000pt;}
.x32_c00232{left:582.400000pt;}
.x30_c00232{left:602.240000pt;}
.x29_c00232{left:608.640000pt;}
.x2c_c00232{left:611.200000pt;}
.x2d_c00232{left:628.480000pt;}
.x34_c00232{left:629.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4eb32dfd7871fd8c0dcde337.woff2')format("woff");}.ff1_c00233{font-family:ff1_c00233;line-height:1.109863;font-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_c00233{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00233{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m15_c00233{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);}
.m39_c00233{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);}
.m2b_c00233{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00233{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00233{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m3_c00233{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m12_c00233{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00233{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m19_c00233{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);}
.m25_c00233{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m31_c00233{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m16_c00233{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m33_c00233{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m18_c00233{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m4_c00233{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m21_c00233{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m8_c00233{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m42_c00233{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00233{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00233{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00233{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m29_c00233{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m45_c00233{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);}
.m40_c00233{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m6_c00233{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00233{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m28_c00233{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m17_c00233{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m9_c00233{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00233{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m26_c00233{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);}
.mf_c00233{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);}
.mb_c00233{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m13_c00233{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00233{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);}
.m2e_c00233{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m20_c00233{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);}
.m23_c00233{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);}
.m0_c00233{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);}
.m2c_c00233{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m7_c00233{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m32_c00233{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);}
.m14_c00233{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m5_c00233{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);}
.m37_c00233{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m30_c00233{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m44_c00233{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m1_c00233{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m36_c00233{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m43_c00233{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);}
.m2_c00233{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m27_c00233{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m34_c00233{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00233{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);}
.m11_c00233{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.me_c00233{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);}
.md_c00233{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00233{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m24_c00233{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m22_c00233{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);}
.ma_c00233{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m10_c00233{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);}
.mc_c00233{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m38_c00233{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00233{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m35_c00233{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00233{transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);}
.m41_c00233{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.v0_c00233{vertical-align:0.000000px;}
.v1_c00233{vertical-align:2.880000px;}
.ls0_c00233{letter-spacing:0.000000px;}
.sc__c00233{text-shadow:none;}
.sc0_c00233{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00233{-webkit-text-stroke:0px transparent;}
.sc0_c00233{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00233{word-spacing:0.000000px;}
.ws0_c00233{word-spacing:19.521600px;}
.fc0_c00233{color:transparent;}
.fs6_c00233{font-size:34.560000px;}
.fs9_c00233{font-size:37.440000px;}
.fs8_c00233{font-size:43.200000px;}
.fs1_c00233{font-size:46.080000px;}
.fs2_c00233{font-size:48.960000px;}
.fs5_c00233{font-size:51.840000px;}
.fs0_c00233{font-size:54.720000px;}
.fs7_c00233{font-size:57.600000px;}
.fsc_c00233{font-size:60.480000px;}
.fsd_c00233{font-size:63.360000px;}
.fse_c00233{font-size:66.240000px;}
.fs4_c00233{font-size:69.120000px;}
.fsb_c00233{font-size:72.000000px;}
.fs3_c00233{font-size:74.880000px;}
.fsa_c00233{font-size:77.760000px;}
.y0_c00233{bottom:0.000000px;}
.y4c_c00233{bottom:78.480000px;}
.y4a_c00233{bottom:79.920000px;}
.y4b_c00233{bottom:80.640000px;}
.y6e_c00233{bottom:82.080000px;}
.y6f_c00233{bottom:83.520000px;}
.y49_c00233{bottom:85.680000px;}
.y47_c00233{bottom:123.120000px;}
.y48_c00233{bottom:125.280000px;}
.y6d_c00233{bottom:126.000000px;}
.y46_c00233{bottom:128.160000px;}
.y45_c00233{bottom:165.600000px;}
.y6b_c00233{bottom:168.480000px;}
.y43_c00233{bottom:170.640000px;}
.y44_c00233{bottom:171.360000px;}
.y6c_c00233{bottom:172.080000px;}
.y42_c00233{bottom:208.800000px;}
.y68_c00233{bottom:211.680000px;}
.y69_c00233{bottom:212.400000px;}
.y6a_c00233{bottom:213.120000px;}
.y41_c00233{bottom:213.840000px;}
.y40_c00233{bottom:254.880000px;}
.y3f_c00233{bottom:257.760000px;}
.y3d_c00233{bottom:306.000000px;}
.y3e_c00233{bottom:306.720000px;}
.y3c_c00233{bottom:308.160000px;}
.y65_c00233{bottom:308.880000px;}
.y67_c00233{bottom:309.600000px;}
.y3b_c00233{bottom:311.040000px;}
.y66_c00233{bottom:312.480000px;}
.y3a_c00233{bottom:349.920000px;}
.y39_c00233{bottom:350.640000px;}
.y64_c00233{bottom:352.800000px;}
.y38_c00233{bottom:354.240000px;}
.y37_c00233{bottom:393.120000px;}
.y63_c00233{bottom:395.280000px;}
.y35_c00233{bottom:396.720000px;}
.y36_c00233{bottom:398.160000px;}
.y34_c00233{bottom:436.320000px;}
.y33_c00233{bottom:437.760000px;}
.y61_c00233{bottom:439.200000px;}
.y31_c00233{bottom:439.920000px;}
.y32_c00233{bottom:441.360000px;}
.y62_c00233{bottom:442.080000px;}
.y2f_c00233{bottom:481.680000px;}
.y30_c00233{bottom:483.840000px;}
.y2e_c00233{bottom:485.280000px;}
.y2b_c00233{bottom:535.680000px;}
.y2d_c00233{bottom:537.120000px;}
.y2c_c00233{bottom:537.840000px;}
.y28_c00233{bottom:565.920000px;}
.y29_c00233{bottom:567.360000px;}
.y60_c00233{bottom:568.080000px;}
.y27_c00233{bottom:568.800000px;}
.y26_c00233{bottom:569.520000px;}
.y2a_c00233{bottom:570.960000px;}
.y25_c00233{bottom:609.120000px;}
.y5e_c00233{bottom:610.560000px;}
.y24_c00233{bottom:611.280000px;}
.y5f_c00233{bottom:613.440000px;}
.y23_c00233{bottom:651.600000px;}
.y5d_c00233{bottom:653.760000px;}
.y22_c00233{bottom:655.200000px;}
.y21_c00233{bottom:694.800000px;}
.y1f_c00233{bottom:696.240000px;}
.y5c_c00233{bottom:696.960000px;}
.y20_c00233{bottom:698.400000px;}
.y1d_c00233{bottom:738.000000px;}
.y5b_c00233{bottom:738.720000px;}
.y1c_c00233{bottom:739.440000px;}
.y1e_c00233{bottom:740.160000px;}
.y1b_c00233{bottom:740.880000px;}
.y19_c00233{bottom:780.480000px;}
.y1a_c00233{bottom:781.920000px;}
.y18_c00233{bottom:782.640000px;}
.y5a_c00233{bottom:785.520000px;}
.y15_c00233{bottom:824.400000px;}
.y17_c00233{bottom:825.120000px;}
.y16_c00233{bottom:825.840000px;}
.y14_c00233{bottom:826.560000px;}
.y58_c00233{bottom:827.280000px;}
.y59_c00233{bottom:828.000000px;}
.y12_c00233{bottom:867.600000px;}
.y13_c00233{bottom:868.320000px;}
.y56_c00233{bottom:869.760000px;}
.y11_c00233{bottom:870.480000px;}
.y57_c00233{bottom:871.200000px;}
.yd_c00233{bottom:910.080000px;}
.y10_c00233{bottom:910.800000px;}
.y55_c00233{bottom:911.520000px;}
.y54_c00233{bottom:912.240000px;}
.yf_c00233{bottom:912.960000px;}
.ye_c00233{bottom:915.120000px;}
.yb_c00233{bottom:954.000000px;}
.y9_c00233{bottom:954.720000px;}
.y52_c00233{bottom:955.440000px;}
.yc_c00233{bottom:956.160000px;}
.y53_c00233{bottom:956.880000px;}
.y51_c00233{bottom:957.600000px;}
.ya_c00233{bottom:958.320000px;}
.y5_c00233{bottom:997.200000px;}
.y7_c00233{bottom:997.920000px;}
.y4f_c00233{bottom:999.360000px;}
.y50_c00233{bottom:1000.080000px;}
.y6_c00233{bottom:1000.800000px;}
.y8_c00233{bottom:1001.520000px;}
.y4_c00233{bottom:1040.400000px;}
.y1_c00233{bottom:1041.120000px;}
.y3_c00233{bottom:1041.840000px;}
.y4e_c00233{bottom:1043.280000px;}
.y2_c00233{bottom:1044.720000px;}
.y4d_c00233{bottom:1108.080000px;}
.h8_c00233{height:31.100625px;}
.hb_c00233{height:33.692344px;}
.ha_c00233{height:38.875781px;}
.h3_c00233{height:41.467500px;}
.h4_c00233{height:44.059219px;}
.h7_c00233{height:46.650937px;}
.h2_c00233{height:49.242656px;}
.h9_c00233{height:51.834375px;}
.h10_c00233{height:52.122656px;}
.he_c00233{height:54.426094px;}
.hf_c00233{height:57.017812px;}
.h11_c00233{height:59.609531px;}
.h6_c00233{height:62.201250px;}
.hd_c00233{height:64.792969px;}
.h5_c00233{height:67.384687px;}
.hc_c00233{height:69.976406px;}
.h0_c00233{height:1155.600000px;}
.h1_c00233{height:1155.750000px;}
.w0_c00233{width:792.720000px;}
.w1_c00233{width:792.750000px;}
.x0_c00233{left:0.000000px;}
.xb_c00233{left:66.960000px;}
.x1_c00233{left:68.400000px;}
.x1a_c00233{left:69.840000px;}
.x1f_c00233{left:71.280000px;}
.x11_c00233{left:88.560000px;}
.x17_c00233{left:120.960000px;}
.xd_c00233{left:140.400000px;}
.x2_c00233{left:141.840000px;}
.x18_c00233{left:151.920000px;}
.x1b_c00233{left:172.800000px;}
.x20_c00233{left:174.240000px;}
.x3_c00233{left:183.600000px;}
.x1e_c00233{left:216.000000px;}
.x19_c00233{left:226.080000px;}
.x5_c00233{left:227.520000px;}
.xe_c00233{left:228.960000px;}
.x10_c00233{left:237.600000px;}
.x4_c00233{left:239.040000px;}
.x1c_c00233{left:258.480000px;}
.x6_c00233{left:270.000000px;}
.x23_c00233{left:271.440000px;}
.x21_c00233{left:280.080000px;}
.x12_c00233{left:292.320000px;}
.xf_c00233{left:314.640000px;}
.x22_c00233{left:324.720000px;}
.x13_c00233{left:347.760000px;}
.x9_c00233{left:378.720000px;}
.x1d_c00233{left:380.160000px;}
.xc_c00233{left:388.800000px;}
.x7_c00233{left:432.000000px;}
.xa_c00233{left:434.160000px;}
.x14_c00233{left:453.600000px;}
.x8_c00233{left:476.640000px;}
.x15_c00233{left:508.320000px;}
.x16_c00233{left:561.600000px;}
.x30_c00233{left:563.040630px;}
.x2c_c00233{left:583.200000px;}
.x25_c00233{left:584.640000px;}
.x2b_c00233{left:594.720000px;}
.x2d_c00233{left:615.600000px;}
.x27_c00233{left:617.040000px;}
.x2e_c00233{left:648.000000px;}
.x29_c00233{left:649.440000px;}
.x28_c00233{left:680.400000px;}
.x2a_c00233{left:691.200000px;}
.x24_c00233{left:692.640000px;}
.x2f_c00233{left:710.640000px;}
.x26_c00233{left:712.080000px;}
@media print{
.v0_c00233{vertical-align:0.000000pt;}
.v1_c00233{vertical-align:2.560000pt;}
.ls0_c00233{letter-spacing:0.000000pt;}
.ws1_c00233{word-spacing:0.000000pt;}
.ws0_c00233{word-spacing:17.352533pt;}
.fs6_c00233{font-size:30.720000pt;}
.fs9_c00233{font-size:33.280000pt;}
.fs8_c00233{font-size:38.400000pt;}
.fs1_c00233{font-size:40.960000pt;}
.fs2_c00233{font-size:43.520000pt;}
.fs5_c00233{font-size:46.080000pt;}
.fs0_c00233{font-size:48.640000pt;}
.fs7_c00233{font-size:51.200000pt;}
.fsc_c00233{font-size:53.760000pt;}
.fsd_c00233{font-size:56.320000pt;}
.fse_c00233{font-size:58.880000pt;}
.fs4_c00233{font-size:61.440000pt;}
.fsb_c00233{font-size:64.000000pt;}
.fs3_c00233{font-size:66.560000pt;}
.fsa_c00233{font-size:69.120000pt;}
.y0_c00233{bottom:0.000000pt;}
.y4c_c00233{bottom:69.760000pt;}
.y4a_c00233{bottom:71.040000pt;}
.y4b_c00233{bottom:71.680000pt;}
.y6e_c00233{bottom:72.960000pt;}
.y6f_c00233{bottom:74.240000pt;}
.y49_c00233{bottom:76.160000pt;}
.y47_c00233{bottom:109.440000pt;}
.y48_c00233{bottom:111.360000pt;}
.y6d_c00233{bottom:112.000000pt;}
.y46_c00233{bottom:113.920000pt;}
.y45_c00233{bottom:147.200000pt;}
.y6b_c00233{bottom:149.760000pt;}
.y43_c00233{bottom:151.680000pt;}
.y44_c00233{bottom:152.320000pt;}
.y6c_c00233{bottom:152.960000pt;}
.y42_c00233{bottom:185.600000pt;}
.y68_c00233{bottom:188.160000pt;}
.y69_c00233{bottom:188.800000pt;}
.y6a_c00233{bottom:189.440000pt;}
.y41_c00233{bottom:190.080000pt;}
.y40_c00233{bottom:226.560000pt;}
.y3f_c00233{bottom:229.120000pt;}
.y3d_c00233{bottom:272.000000pt;}
.y3e_c00233{bottom:272.640000pt;}
.y3c_c00233{bottom:273.920000pt;}
.y65_c00233{bottom:274.560000pt;}
.y67_c00233{bottom:275.200000pt;}
.y3b_c00233{bottom:276.480000pt;}
.y66_c00233{bottom:277.760000pt;}
.y3a_c00233{bottom:311.040000pt;}
.y39_c00233{bottom:311.680000pt;}
.y64_c00233{bottom:313.600000pt;}
.y38_c00233{bottom:314.880000pt;}
.y37_c00233{bottom:349.440000pt;}
.y63_c00233{bottom:351.360000pt;}
.y35_c00233{bottom:352.640000pt;}
.y36_c00233{bottom:353.920000pt;}
.y34_c00233{bottom:387.840000pt;}
.y33_c00233{bottom:389.120000pt;}
.y61_c00233{bottom:390.400000pt;}
.y31_c00233{bottom:391.040000pt;}
.y32_c00233{bottom:392.320000pt;}
.y62_c00233{bottom:392.960000pt;}
.y2f_c00233{bottom:428.160000pt;}
.y30_c00233{bottom:430.080000pt;}
.y2e_c00233{bottom:431.360000pt;}
.y2b_c00233{bottom:476.160000pt;}
.y2d_c00233{bottom:477.440000pt;}
.y2c_c00233{bottom:478.080000pt;}
.y28_c00233{bottom:503.040000pt;}
.y29_c00233{bottom:504.320000pt;}
.y60_c00233{bottom:504.960000pt;}
.y27_c00233{bottom:505.600000pt;}
.y26_c00233{bottom:506.240000pt;}
.y2a_c00233{bottom:507.520000pt;}
.y25_c00233{bottom:541.440000pt;}
.y5e_c00233{bottom:542.720000pt;}
.y24_c00233{bottom:543.360000pt;}
.y5f_c00233{bottom:545.280000pt;}
.y23_c00233{bottom:579.200000pt;}
.y5d_c00233{bottom:581.120000pt;}
.y22_c00233{bottom:582.400000pt;}
.y21_c00233{bottom:617.600000pt;}
.y1f_c00233{bottom:618.880000pt;}
.y5c_c00233{bottom:619.520000pt;}
.y20_c00233{bottom:620.800000pt;}
.y1d_c00233{bottom:656.000000pt;}
.y5b_c00233{bottom:656.640000pt;}
.y1c_c00233{bottom:657.280000pt;}
.y1e_c00233{bottom:657.920000pt;}
.y1b_c00233{bottom:658.560000pt;}
.y19_c00233{bottom:693.760000pt;}
.y1a_c00233{bottom:695.040000pt;}
.y18_c00233{bottom:695.680000pt;}
.y5a_c00233{bottom:698.240000pt;}
.y15_c00233{bottom:732.800000pt;}
.y17_c00233{bottom:733.440000pt;}
.y16_c00233{bottom:734.080000pt;}
.y14_c00233{bottom:734.720000pt;}
.y58_c00233{bottom:735.360000pt;}
.y59_c00233{bottom:736.000000pt;}
.y12_c00233{bottom:771.200000pt;}
.y13_c00233{bottom:771.840000pt;}
.y56_c00233{bottom:773.120000pt;}
.y11_c00233{bottom:773.760000pt;}
.y57_c00233{bottom:774.400000pt;}
.yd_c00233{bottom:808.960000pt;}
.y10_c00233{bottom:809.600000pt;}
.y55_c00233{bottom:810.240000pt;}
.y54_c00233{bottom:810.880000pt;}
.yf_c00233{bottom:811.520000pt;}
.ye_c00233{bottom:813.440000pt;}
.yb_c00233{bottom:848.000000pt;}
.y9_c00233{bottom:848.640000pt;}
.y52_c00233{bottom:849.280000pt;}
.yc_c00233{bottom:849.920000pt;}
.y53_c00233{bottom:850.560000pt;}
.y51_c00233{bottom:851.200000pt;}
.ya_c00233{bottom:851.840000pt;}
.y5_c00233{bottom:886.400000pt;}
.y7_c00233{bottom:887.040000pt;}
.y4f_c00233{bottom:888.320000pt;}
.y50_c00233{bottom:888.960000pt;}
.y6_c00233{bottom:889.600000pt;}
.y8_c00233{bottom:890.240000pt;}
.y4_c00233{bottom:924.800000pt;}
.y1_c00233{bottom:925.440000pt;}
.y3_c00233{bottom:926.080000pt;}
.y4e_c00233{bottom:927.360000pt;}
.y2_c00233{bottom:928.640000pt;}
.y4d_c00233{bottom:984.960000pt;}
.h8_c00233{height:27.645000pt;}
.hb_c00233{height:29.948750pt;}
.ha_c00233{height:34.556250pt;}
.h3_c00233{height:36.860000pt;}
.h4_c00233{height:39.163750pt;}
.h7_c00233{height:41.467500pt;}
.h2_c00233{height:43.771250pt;}
.h9_c00233{height:46.075000pt;}
.h10_c00233{height:46.331250pt;}
.he_c00233{height:48.378750pt;}
.hf_c00233{height:50.682500pt;}
.h11_c00233{height:52.986250pt;}
.h6_c00233{height:55.290000pt;}
.hd_c00233{height:57.593750pt;}
.h5_c00233{height:59.897500pt;}
.hc_c00233{height:62.201250pt;}
.h0_c00233{height:1027.200000pt;}
.h1_c00233{height:1027.333333pt;}
.w0_c00233{width:704.640000pt;}
.w1_c00233{width:704.666667pt;}
.x0_c00233{left:0.000000pt;}
.xb_c00233{left:59.520000pt;}
.x1_c00233{left:60.800000pt;}
.x1a_c00233{left:62.080000pt;}
.x1f_c00233{left:63.360000pt;}
.x11_c00233{left:78.720000pt;}
.x17_c00233{left:107.520000pt;}
.xd_c00233{left:124.800000pt;}
.x2_c00233{left:126.080000pt;}
.x18_c00233{left:135.040000pt;}
.x1b_c00233{left:153.600000pt;}
.x20_c00233{left:154.880000pt;}
.x3_c00233{left:163.200000pt;}
.x1e_c00233{left:192.000000pt;}
.x19_c00233{left:200.960000pt;}
.x5_c00233{left:202.240000pt;}
.xe_c00233{left:203.520000pt;}
.x10_c00233{left:211.200000pt;}
.x4_c00233{left:212.480000pt;}
.x1c_c00233{left:229.760000pt;}
.x6_c00233{left:240.000000pt;}
.x23_c00233{left:241.280000pt;}
.x21_c00233{left:248.960000pt;}
.x12_c00233{left:259.840000pt;}
.xf_c00233{left:279.680000pt;}
.x22_c00233{left:288.640000pt;}
.x13_c00233{left:309.120000pt;}
.x9_c00233{left:336.640000pt;}
.x1d_c00233{left:337.920000pt;}
.xc_c00233{left:345.600000pt;}
.x7_c00233{left:384.000000pt;}
.xa_c00233{left:385.920000pt;}
.x14_c00233{left:403.200000pt;}
.x8_c00233{left:423.680000pt;}
.x15_c00233{left:451.840000pt;}
.x16_c00233{left:499.200000pt;}
.x30_c00233{left:500.480560pt;}
.x2c_c00233{left:518.400000pt;}
.x25_c00233{left:519.680000pt;}
.x2b_c00233{left:528.640000pt;}
.x2d_c00233{left:547.200000pt;}
.x27_c00233{left:548.480000pt;}
.x2e_c00233{left:576.000000pt;}
.x29_c00233{left:577.280000pt;}
.x28_c00233{left:604.800000pt;}
.x2a_c00233{left:614.400000pt;}
.x24_c00233{left:615.680000pt;}
.x2f_c00233{left:631.680000pt;}
.x26_c00233{left:632.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_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_f1e01ab8580be00d66c712dc.woff2')format("woff");}.ff1_c00234{font-family:ff1_c00234;line-height:1.109863;font-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_c00234{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.m3d_c00234{transform:matrix(0.233325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233325,0.000000,0.000000,0.250000,0,0);}
.m3f_c00234{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m43_c00234{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m4b_c00234{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m0_c00234{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m45_c00234{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m15_c00234{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);}
.m36_c00234{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);}
.m48_c00234{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_c00234{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);}
.m35_c00234{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00234{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_c00234{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);}
.m2f_c00234{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m23_c00234{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);}
.m34_c00234{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m25_c00234{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m12_c00234{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m7_c00234{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);}
.m33_c00234{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);}
.m2b_c00234{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m26_c00234{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mc_c00234{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.me_c00234{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.md_c00234{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00234{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00234{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m41_c00234{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00234{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m8_c00234{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m19_c00234{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00234{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.ma_c00234{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00234{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m27_c00234{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m14_c00234{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m28_c00234{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m30_c00234{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m46_c00234{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m32_c00234{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00234{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m20_c00234{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m4_c00234{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);}
.m42_c00234{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m10_c00234{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m6_c00234{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);}
.m4a_c00234{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);}
.m3_c00234{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00234{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);}
.m24_c00234{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m22_c00234{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m17_c00234{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00234{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m31_c00234{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);}
.m37_c00234{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m2_c00234{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m5_c00234{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m21_c00234{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m49_c00234{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m1_c00234{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);}
.m2d_c00234{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m47_c00234{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);}
.mb_c00234{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m9_c00234{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);}
.m40_c00234{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m39_c00234{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m38_c00234{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);}
.m16_c00234{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m29_c00234{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00234{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00234{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00234{transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);}
.m44_c00234{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.mf_c00234{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00234{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00234{transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00234{transform:matrix(0.925000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.925000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.925000,0.000000,0.000000,0.250000,0,0);}
.v0_c00234{vertical-align:0.000000px;}
.v1_c00234{vertical-align:8.640000px;}
.ls0_c00234{letter-spacing:0.000000px;}
.sc__c00234{text-shadow:none;}
.sc0_c00234{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00234{-webkit-text-stroke:0px transparent;}
.sc0_c00234{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00234{word-spacing:-2.402160px;}
.ws2_c00234{word-spacing:0.000000px;}
.ws1_c00234{word-spacing:23.226000px;}
.fc0_c00234{color:transparent;}
.fs11_c00234{font-size:20.160000px;}
.fs2_c00234{font-size:25.920000px;}
.fs1_c00234{font-size:34.560000px;}
.fs8_c00234{font-size:37.440000px;}
.fs3_c00234{font-size:40.320000px;}
.fs10_c00234{font-size:43.200000px;}
.fse_c00234{font-size:46.080000px;}
.fs4_c00234{font-size:48.960000px;}
.fsa_c00234{font-size:51.840000px;}
.fsc_c00234{font-size:54.720000px;}
.fs6_c00234{font-size:57.600000px;}
.fs9_c00234{font-size:60.480000px;}
.fs5_c00234{font-size:63.360000px;}
.fsd_c00234{font-size:66.240000px;}
.fs0_c00234{font-size:69.120000px;}
.fsb_c00234{font-size:72.000000px;}
.fs7_c00234{font-size:74.880000px;}
.fsf_c00234{font-size:77.760000px;}
.y0_c00234{bottom:0.000000px;}
.y6f_c00234{bottom:65.520000px;}
.y59_c00234{bottom:68.400000px;}
.y58_c00234{bottom:69.120000px;}
.y6e_c00234{bottom:69.840000px;}
.y6d_c00234{bottom:70.560000px;}
.y6c_c00234{bottom:71.280000px;}
.y6b_c00234{bottom:109.440000px;}
.y56_c00234{bottom:112.320000px;}
.y6a_c00234{bottom:113.040000px;}
.y57_c00234{bottom:113.760000px;}
.y69_c00234{bottom:114.480000px;}
.y68_c00234{bottom:152.640000px;}
.y67_c00234{bottom:156.960000px;}
.y55_c00234{bottom:157.680000px;}
.y66_c00234{bottom:158.400000px;}
.y54_c00234{bottom:159.120000px;}
.y65_c00234{bottom:195.840000px;}
.y52_c00234{bottom:200.160000px;}
.y53_c00234{bottom:200.880000px;}
.y64_c00234{bottom:239.040000px;}
.y63_c00234{bottom:240.480000px;}
.y4f_c00234{bottom:242.640000px;}
.y50_c00234{bottom:243.360000px;}
.y62_c00234{bottom:244.080000px;}
.y51_c00234{bottom:244.800000px;}
.y43_c00234{bottom:282.960000px;}
.y46_c00234{bottom:283.680000px;}
.y44_c00234{bottom:284.400000px;}
.y42_c00234{bottom:285.840000px;}
.y45_c00234{bottom:286.560000px;}
.y60_c00234{bottom:325.440000px;}
.y61_c00234{bottom:326.160000px;}
.y4e_c00234{bottom:328.320000px;}
.y5f_c00234{bottom:329.760000px;}
.y5e_c00234{bottom:368.640000px;}
.y4a_c00234{bottom:371.520000px;}
.y5c_c00234{bottom:372.240000px;}
.y4b_c00234{bottom:372.960000px;}
.y5d_c00234{bottom:373.680000px;}
.y4d_c00234{bottom:374.400000px;}
.y4c_c00234{bottom:380.880000px;}
.y5b_c00234{bottom:411.840000px;}
.y5a_c00234{bottom:413.280000px;}
.y47_c00234{bottom:414.000000px;}
.y48_c00234{bottom:416.160000px;}
.y49_c00234{bottom:416.880000px;}
.y40_c00234{bottom:457.200000px;}
.y41_c00234{bottom:457.920000px;}
.y3f_c00234{bottom:460.080000px;}
.y3e_c00234{bottom:510.480000px;}
.y3c_c00234{bottom:511.200000px;}
.y3d_c00234{bottom:513.360000px;}
.y38_c00234{bottom:542.160000px;}
.y39_c00234{bottom:542.880000px;}
.y37_c00234{bottom:543.600000px;}
.y3a_c00234{bottom:545.040000px;}
.y3b_c00234{bottom:545.760000px;}
.y33_c00234{bottom:585.360000px;}
.y34_c00234{bottom:586.080000px;}
.y35_c00234{bottom:586.800000px;}
.y36_c00234{bottom:587.520000px;}
.y32_c00234{bottom:588.960000px;}
.y30_c00234{bottom:628.560000px;}
.y2d_c00234{bottom:630.000000px;}
.y31_c00234{bottom:631.440000px;}
.y2f_c00234{bottom:632.160000px;}
.y2e_c00234{bottom:632.880000px;}
.y2a_c00234{bottom:671.040000px;}
.y29_c00234{bottom:673.920000px;}
.y2b_c00234{bottom:674.640000px;}
.y2c_c00234{bottom:676.080000px;}
.y26_c00234{bottom:714.240000px;}
.y24_c00234{bottom:716.400000px;}
.y27_c00234{bottom:717.120000px;}
.y28_c00234{bottom:717.840000px;}
.y25_c00234{bottom:719.280000px;}
.y21_c00234{bottom:758.160000px;}
.y23_c00234{bottom:759.600000px;}
.y22_c00234{bottom:760.320000px;}
.y1f_c00234{bottom:761.040000px;}
.y20_c00234{bottom:761.760000px;}
.y1d_c00234{bottom:800.640000px;}
.y1e_c00234{bottom:802.800000px;}
.y1b_c00234{bottom:803.520000px;}
.y1c_c00234{bottom:804.960000px;}
.y16_c00234{bottom:843.840000px;}
.y19_c00234{bottom:845.280000px;}
.y15_c00234{bottom:846.000000px;}
.y1a_c00234{bottom:846.720000px;}
.y18_c00234{bottom:847.440000px;}
.y17_c00234{bottom:848.160000px;}
.y14_c00234{bottom:887.760000px;}
.y11_c00234{bottom:920.160000px;}
.y13_c00234{bottom:922.320000px;}
.y12_c00234{bottom:923.040000px;}
.ye_c00234{bottom:961.920000px;}
.y10_c00234{bottom:962.640000px;}
.yd_c00234{bottom:963.360000px;}
.yf_c00234{bottom:966.960000px;}
.y9_c00234{bottom:1005.120000px;}
.y7_c00234{bottom:1006.560000px;}
.y8_c00234{bottom:1007.280000px;}
.yc_c00234{bottom:1008.000000px;}
.yb_c00234{bottom:1008.720000px;}
.ya_c00234{bottom:1009.440000px;}
.y5_c00234{bottom:1050.480000px;}
.y6_c00234{bottom:1051.920000px;}
.y4_c00234{bottom:1052.640000px;}
.y3_c00234{bottom:1111.680000px;}
.y1_c00234{bottom:1114.560000px;}
.y2_c00234{bottom:1122.480000px;}
.h13_c00234{height:18.142031px;}
.h4_c00234{height:23.325469px;}
.h3_c00234{height:31.100625px;}
.ha_c00234{height:33.692344px;}
.h5_c00234{height:36.284062px;}
.h12_c00234{height:38.875781px;}
.h10_c00234{height:41.467500px;}
.h6_c00234{height:44.059219px;}
.hc_c00234{height:46.650937px;}
.he_c00234{height:49.242656px;}
.h8_c00234{height:51.834375px;}
.hb_c00234{height:54.426094px;}
.h7_c00234{height:57.017812px;}
.hf_c00234{height:59.609531px;}
.h14_c00234{height:60.474375px;}
.h2_c00234{height:62.201250px;}
.hd_c00234{height:64.792969px;}
.h9_c00234{height:67.384687px;}
.h11_c00234{height:69.976406px;}
.h0_c00234{height:1154.880000px;}
.h1_c00234{height:1155.000000px;}
.w1_c00234{width:790.500000px;}
.w0_c00234{width:790.560000px;}
.x0_c00234{left:0.000000px;}
.x7_c00234{left:79.200000px;}
.x2d_c00234{left:81.360000px;}
.x4_c00234{left:129.600000px;}
.x2b_c00234{left:131.760000px;}
.x8_c00234{left:151.920000px;}
.x21_c00234{left:153.360000px;}
.x5_c00234{left:163.440000px;}
.x28_c00234{left:174.960000px;}
.x22_c00234{left:184.320000px;}
.x34_c00234{left:185.760000px;}
.x35_c00234{left:193.680000px;}
.x9_c00234{left:195.120000px;}
.x33_c00234{left:205.200000px;}
.x29_c00234{left:227.520000px;}
.x6_c00234{left:237.600000px;}
.x23_c00234{left:239.040000px;}
.x16_c00234{left:248.400000px;}
.x1f_c00234{left:249.840000px;}
.x24_c00234{left:259.920000px;}
.x2c_c00234{left:270.000000px;}
.x2a_c00234{left:282.240000px;}
.x17_c00234{left:304.560000px;}
.xa_c00234{left:326.160000px;}
.x12_c00234{left:347.040000px;}
.x1b_c00234{left:357.840000px;}
.xb_c00234{left:367.920000px;}
.x36_c00234{left:380.160000px;}
.x1c_c00234{left:411.120000px;}
.x37_c00234{left:421.200000px;}
.x25_c00234{left:432.720000px;}
.x18_c00234{left:442.800000px;}
.xc_c00234{left:455.040000px;}
.x20_c00234{left:465.840000px;}
.x26_c00234{left:476.640000px;}
.x19_c00234{left:488.160000px;}
.x1d_c00234{left:497.520000px;}
.xd_c00234{left:509.040000px;}
.x27_c00234{left:531.360000px;}
.x1e_c00234{left:552.960000px;}
.x13_c00234{left:574.560000px;}
.x1a_c00234{left:595.440000px;}
.x30_c00234{left:605.520000px;}
.x14_c00234{left:606.960000px;}
.x32_c00234{left:627.120000px;}
.xe_c00234{left:628.560000px;}
.x31_c00234{left:659.520000px;}
.xf_c00234{left:660.960000px;}
.x10_c00234{left:702.000000px;}
.x15_c00234{left:703.440000px;}
.x1_c00234{left:721.440000px;}
.x11_c00234{left:722.880000px;}
.x2e_c00234{left:725.760000px;}
.x2f_c00234{left:734.400000px;}
.x2_c00234{left:740.160000px;}
.x3_c00234{left:760.320000px;}
@media print{
.v0_c00234{vertical-align:0.000000pt;}
.v1_c00234{vertical-align:7.680000pt;}
.ls0_c00234{letter-spacing:0.000000pt;}
.ws0_c00234{word-spacing:-2.135253pt;}
.ws2_c00234{word-spacing:0.000000pt;}
.ws1_c00234{word-spacing:20.645333pt;}
.fs11_c00234{font-size:17.920000pt;}
.fs2_c00234{font-size:23.040000pt;}
.fs1_c00234{font-size:30.720000pt;}
.fs8_c00234{font-size:33.280000pt;}
.fs3_c00234{font-size:35.840000pt;}
.fs10_c00234{font-size:38.400000pt;}
.fse_c00234{font-size:40.960000pt;}
.fs4_c00234{font-size:43.520000pt;}
.fsa_c00234{font-size:46.080000pt;}
.fsc_c00234{font-size:48.640000pt;}
.fs6_c00234{font-size:51.200000pt;}
.fs9_c00234{font-size:53.760000pt;}
.fs5_c00234{font-size:56.320000pt;}
.fsd_c00234{font-size:58.880000pt;}
.fs0_c00234{font-size:61.440000pt;}
.fsb_c00234{font-size:64.000000pt;}
.fs7_c00234{font-size:66.560000pt;}
.fsf_c00234{font-size:69.120000pt;}
.y0_c00234{bottom:0.000000pt;}
.y6f_c00234{bottom:58.240000pt;}
.y59_c00234{bottom:60.800000pt;}
.y58_c00234{bottom:61.440000pt;}
.y6e_c00234{bottom:62.080000pt;}
.y6d_c00234{bottom:62.720000pt;}
.y6c_c00234{bottom:63.360000pt;}
.y6b_c00234{bottom:97.280000pt;}
.y56_c00234{bottom:99.840000pt;}
.y6a_c00234{bottom:100.480000pt;}
.y57_c00234{bottom:101.120000pt;}
.y69_c00234{bottom:101.760000pt;}
.y68_c00234{bottom:135.680000pt;}
.y67_c00234{bottom:139.520000pt;}
.y55_c00234{bottom:140.160000pt;}
.y66_c00234{bottom:140.800000pt;}
.y54_c00234{bottom:141.440000pt;}
.y65_c00234{bottom:174.080000pt;}
.y52_c00234{bottom:177.920000pt;}
.y53_c00234{bottom:178.560000pt;}
.y64_c00234{bottom:212.480000pt;}
.y63_c00234{bottom:213.760000pt;}
.y4f_c00234{bottom:215.680000pt;}
.y50_c00234{bottom:216.320000pt;}
.y62_c00234{bottom:216.960000pt;}
.y51_c00234{bottom:217.600000pt;}
.y43_c00234{bottom:251.520000pt;}
.y46_c00234{bottom:252.160000pt;}
.y44_c00234{bottom:252.800000pt;}
.y42_c00234{bottom:254.080000pt;}
.y45_c00234{bottom:254.720000pt;}
.y60_c00234{bottom:289.280000pt;}
.y61_c00234{bottom:289.920000pt;}
.y4e_c00234{bottom:291.840000pt;}
.y5f_c00234{bottom:293.120000pt;}
.y5e_c00234{bottom:327.680000pt;}
.y4a_c00234{bottom:330.240000pt;}
.y5c_c00234{bottom:330.880000pt;}
.y4b_c00234{bottom:331.520000pt;}
.y5d_c00234{bottom:332.160000pt;}
.y4d_c00234{bottom:332.800000pt;}
.y4c_c00234{bottom:338.560000pt;}
.y5b_c00234{bottom:366.080000pt;}
.y5a_c00234{bottom:367.360000pt;}
.y47_c00234{bottom:368.000000pt;}
.y48_c00234{bottom:369.920000pt;}
.y49_c00234{bottom:370.560000pt;}
.y40_c00234{bottom:406.400000pt;}
.y41_c00234{bottom:407.040000pt;}
.y3f_c00234{bottom:408.960000pt;}
.y3e_c00234{bottom:453.760000pt;}
.y3c_c00234{bottom:454.400000pt;}
.y3d_c00234{bottom:456.320000pt;}
.y38_c00234{bottom:481.920000pt;}
.y39_c00234{bottom:482.560000pt;}
.y37_c00234{bottom:483.200000pt;}
.y3a_c00234{bottom:484.480000pt;}
.y3b_c00234{bottom:485.120000pt;}
.y33_c00234{bottom:520.320000pt;}
.y34_c00234{bottom:520.960000pt;}
.y35_c00234{bottom:521.600000pt;}
.y36_c00234{bottom:522.240000pt;}
.y32_c00234{bottom:523.520000pt;}
.y30_c00234{bottom:558.720000pt;}
.y2d_c00234{bottom:560.000000pt;}
.y31_c00234{bottom:561.280000pt;}
.y2f_c00234{bottom:561.920000pt;}
.y2e_c00234{bottom:562.560000pt;}
.y2a_c00234{bottom:596.480000pt;}
.y29_c00234{bottom:599.040000pt;}
.y2b_c00234{bottom:599.680000pt;}
.y2c_c00234{bottom:600.960000pt;}
.y26_c00234{bottom:634.880000pt;}
.y24_c00234{bottom:636.800000pt;}
.y27_c00234{bottom:637.440000pt;}
.y28_c00234{bottom:638.080000pt;}
.y25_c00234{bottom:639.360000pt;}
.y21_c00234{bottom:673.920000pt;}
.y23_c00234{bottom:675.200000pt;}
.y22_c00234{bottom:675.840000pt;}
.y1f_c00234{bottom:676.480000pt;}
.y20_c00234{bottom:677.120000pt;}
.y1d_c00234{bottom:711.680000pt;}
.y1e_c00234{bottom:713.600000pt;}
.y1b_c00234{bottom:714.240000pt;}
.y1c_c00234{bottom:715.520000pt;}
.y16_c00234{bottom:750.080000pt;}
.y19_c00234{bottom:751.360000pt;}
.y15_c00234{bottom:752.000000pt;}
.y1a_c00234{bottom:752.640000pt;}
.y18_c00234{bottom:753.280000pt;}
.y17_c00234{bottom:753.920000pt;}
.y14_c00234{bottom:789.120000pt;}
.y11_c00234{bottom:817.920000pt;}
.y13_c00234{bottom:819.840000pt;}
.y12_c00234{bottom:820.480000pt;}
.ye_c00234{bottom:855.040000pt;}
.y10_c00234{bottom:855.680000pt;}
.yd_c00234{bottom:856.320000pt;}
.yf_c00234{bottom:859.520000pt;}
.y9_c00234{bottom:893.440000pt;}
.y7_c00234{bottom:894.720000pt;}
.y8_c00234{bottom:895.360000pt;}
.yc_c00234{bottom:896.000000pt;}
.yb_c00234{bottom:896.640000pt;}
.ya_c00234{bottom:897.280000pt;}
.y5_c00234{bottom:933.760000pt;}
.y6_c00234{bottom:935.040000pt;}
.y4_c00234{bottom:935.680000pt;}
.y3_c00234{bottom:988.160000pt;}
.y1_c00234{bottom:990.720000pt;}
.y2_c00234{bottom:997.760000pt;}
.h13_c00234{height:16.126250pt;}
.h4_c00234{height:20.733750pt;}
.h3_c00234{height:27.645000pt;}
.ha_c00234{height:29.948750pt;}
.h5_c00234{height:32.252500pt;}
.h12_c00234{height:34.556250pt;}
.h10_c00234{height:36.860000pt;}
.h6_c00234{height:39.163750pt;}
.hc_c00234{height:41.467500pt;}
.he_c00234{height:43.771250pt;}
.h8_c00234{height:46.075000pt;}
.hb_c00234{height:48.378750pt;}
.h7_c00234{height:50.682500pt;}
.hf_c00234{height:52.986250pt;}
.h14_c00234{height:53.755000pt;}
.h2_c00234{height:55.290000pt;}
.hd_c00234{height:57.593750pt;}
.h9_c00234{height:59.897500pt;}
.h11_c00234{height:62.201250pt;}
.h0_c00234{height:1026.560000pt;}
.h1_c00234{height:1026.666667pt;}
.w1_c00234{width:702.666667pt;}
.w0_c00234{width:702.720000pt;}
.x0_c00234{left:0.000000pt;}
.x7_c00234{left:70.400000pt;}
.x2d_c00234{left:72.320000pt;}
.x4_c00234{left:115.200000pt;}
.x2b_c00234{left:117.120000pt;}
.x8_c00234{left:135.040000pt;}
.x21_c00234{left:136.320000pt;}
.x5_c00234{left:145.280000pt;}
.x28_c00234{left:155.520000pt;}
.x22_c00234{left:163.840000pt;}
.x34_c00234{left:165.120000pt;}
.x35_c00234{left:172.160000pt;}
.x9_c00234{left:173.440000pt;}
.x33_c00234{left:182.400000pt;}
.x29_c00234{left:202.240000pt;}
.x6_c00234{left:211.200000pt;}
.x23_c00234{left:212.480000pt;}
.x16_c00234{left:220.800000pt;}
.x1f_c00234{left:222.080000pt;}
.x24_c00234{left:231.040000pt;}
.x2c_c00234{left:240.000000pt;}
.x2a_c00234{left:250.880000pt;}
.x17_c00234{left:270.720000pt;}
.xa_c00234{left:289.920000pt;}
.x12_c00234{left:308.480000pt;}
.x1b_c00234{left:318.080000pt;}
.xb_c00234{left:327.040000pt;}
.x36_c00234{left:337.920000pt;}
.x1c_c00234{left:365.440000pt;}
.x37_c00234{left:374.400000pt;}
.x25_c00234{left:384.640000pt;}
.x18_c00234{left:393.600000pt;}
.xc_c00234{left:404.480000pt;}
.x20_c00234{left:414.080000pt;}
.x26_c00234{left:423.680000pt;}
.x19_c00234{left:433.920000pt;}
.x1d_c00234{left:442.240000pt;}
.xd_c00234{left:452.480000pt;}
.x27_c00234{left:472.320000pt;}
.x1e_c00234{left:491.520000pt;}
.x13_c00234{left:510.720000pt;}
.x1a_c00234{left:529.280000pt;}
.x30_c00234{left:538.240000pt;}
.x14_c00234{left:539.520000pt;}
.x32_c00234{left:557.440000pt;}
.xe_c00234{left:558.720000pt;}
.x31_c00234{left:586.240000pt;}
.xf_c00234{left:587.520000pt;}
.x10_c00234{left:624.000000pt;}
.x15_c00234{left:625.280000pt;}
.x1_c00234{left:641.280000pt;}
.x11_c00234{left:642.560000pt;}
.x2e_c00234{left:645.120000pt;}
.x2f_c00234{left:652.800000pt;}
.x2_c00234{left:657.920000pt;}
.x3_c00234{left:675.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c8acd745fb6e5a5e9bd7a969.woff2')format("woff");}.ff1_c00235{font-family:ff1_c00235;line-height:1.109863;font-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_c00235{transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);}
.m41_c00235{transform:matrix(0.202900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202900,0.000000,0.000000,0.250000,0,0);}
.m23_c00235{transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);}
.m45_c00235{transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);}
.mc_c00235{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);}
.m3d_c00235{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m18_c00235{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00235{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);}
.m37_c00235{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);}
.m33_c00235{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m7_c00235{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m19_c00235{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m38_c00235{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00235{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00235{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00235{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m4_c00235{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m5_c00235{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m9_c00235{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m17_c00235{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m25_c00235{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.ma_c00235{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.md_c00235{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m10_c00235{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m16_c00235{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m24_c00235{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00235{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m2_c00235{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m39_c00235{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m28_c00235{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m43_c00235{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00235{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);}
.m42_c00235{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m8_c00235{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);}
.m40_c00235{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);}
.m2d_c00235{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.me_c00235{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00235{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00235{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m6_c00235{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m30_c00235{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);}
.m1a_c00235{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00235{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.mf_c00235{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m1_c00235{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);}
.m21_c00235{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m26_c00235{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.mb_c00235{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);}
.m15_c00235{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_c00235{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);}
.m36_c00235{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00235{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m12_c00235{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);}
.m13_c00235{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);}
.m44_c00235{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00235{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m14_c00235{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00235{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);}
.m22_c00235{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m3_c00235{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00235{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m31_c00235{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);}
.m27_c00235{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m11_c00235{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00235{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m20_c00235{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m32_c00235{transform:matrix(0.647500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.647500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.647500,0.000000,0.000000,0.250000,0,0);}
.m35_c00235{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00235{transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);}
.m34_c00235{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.m46_c00235{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.v0_c00235{vertical-align:0.000000px;}
.v2_c00235{vertical-align:2.880000px;}
.v1_c00235{vertical-align:5.760000px;}
.ls0_c00235{letter-spacing:0.000000px;}
.sc__c00235{text-shadow:none;}
.sc0_c00235{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00235{-webkit-text-stroke:0px transparent;}
.sc0_c00235{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00235{word-spacing:-4.309200px;}
.ws3_c00235{word-spacing:0.000000px;}
.ws2_c00235{word-spacing:3.054480px;}
.ws0_c00235{word-spacing:13.140000px;}
.fc0_c00235{color:transparent;}
.fse_c00235{font-size:31.680000px;}
.fsb_c00235{font-size:37.440000px;}
.fsc_c00235{font-size:40.320000px;}
.fsa_c00235{font-size:46.080000px;}
.fs5_c00235{font-size:48.960000px;}
.fs2_c00235{font-size:51.840000px;}
.fs3_c00235{font-size:54.720000px;}
.fs1_c00235{font-size:57.600000px;}
.fs4_c00235{font-size:60.480000px;}
.fs6_c00235{font-size:63.360000px;}
.fs9_c00235{font-size:69.120000px;}
.fs8_c00235{font-size:72.000000px;}
.fs0_c00235{font-size:74.880000px;}
.fs7_c00235{font-size:77.760000px;}
.fsd_c00235{font-size:97.920000px;}
.y0_c00235{bottom:0.000000px;}
.y6f_c00235{bottom:53.280000px;}
.y6e_c00235{bottom:55.440000px;}
.y70_c00235{bottom:56.880000px;}
.y6d_c00235{bottom:59.040000px;}
.y6c_c00235{bottom:61.200000px;}
.y6b_c00235{bottom:90.720000px;}
.y69_c00235{bottom:97.920000px;}
.y68_c00235{bottom:99.360000px;}
.y6a_c00235{bottom:100.800000px;}
.y67_c00235{bottom:102.240000px;}
.y66_c00235{bottom:102.960000px;}
.y63_c00235{bottom:139.680000px;}
.y64_c00235{bottom:142.560000px;}
.y61_c00235{bottom:143.280000px;}
.y62_c00235{bottom:144.000000px;}
.y65_c00235{bottom:144.720000px;}
.y60_c00235{bottom:145.440000px;}
.y5e_c00235{bottom:178.560000px;}
.y5c_c00235{bottom:183.600000px;}
.y5d_c00235{bottom:185.760000px;}
.y5f_c00235{bottom:187.200000px;}
.y5b_c00235{bottom:187.920000px;}
.y5a_c00235{bottom:188.640000px;}
.y57_c00235{bottom:226.800000px;}
.y56_c00235{bottom:229.680000px;}
.y58_c00235{bottom:231.120000px;}
.y55_c00235{bottom:231.840000px;}
.y59_c00235{bottom:232.560000px;}
.y54_c00235{bottom:233.280000px;}
.y51_c00235{bottom:270.720000px;}
.y52_c00235{bottom:274.320000px;}
.y53_c00235{bottom:275.040000px;}
.y50_c00235{bottom:275.760000px;}
.y4f_c00235{bottom:276.480000px;}
.y4d_c00235{bottom:367.920000px;}
.y4e_c00235{bottom:370.800000px;}
.y4c_c00235{bottom:372.240000px;}
.y4b_c00235{bottom:372.960000px;}
.y45_c00235{bottom:411.120000px;}
.y4a_c00235{bottom:414.000000px;}
.y43_c00235{bottom:414.720000px;}
.y46_c00235{bottom:415.440000px;}
.y44_c00235{bottom:416.160000px;}
.y42_c00235{bottom:455.040000px;}
.y47_c00235{bottom:457.200000px;}
.y48_c00235{bottom:457.920000px;}
.y40_c00235{bottom:458.640000px;}
.y49_c00235{bottom:459.360000px;}
.y41_c00235{bottom:460.080000px;}
.y3e_c00235{bottom:498.240000px;}
.y3d_c00235{bottom:499.680000px;}
.y3c_c00235{bottom:500.400000px;}
.y3b_c00235{bottom:501.120000px;}
.y3f_c00235{bottom:501.840000px;}
.y37_c00235{bottom:541.440000px;}
.y3a_c00235{bottom:542.880000px;}
.y38_c00235{bottom:543.600000px;}
.y35_c00235{bottom:545.040000px;}
.y39_c00235{bottom:545.760000px;}
.y36_c00235{bottom:546.480000px;}
.y33_c00235{bottom:586.800000px;}
.y34_c00235{bottom:588.240000px;}
.y32_c00235{bottom:588.960000px;}
.y2f_c00235{bottom:637.920000px;}
.y30_c00235{bottom:638.640000px;}
.y2d_c00235{bottom:639.360000px;}
.y31_c00235{bottom:640.080000px;}
.y2e_c00235{bottom:642.240000px;}
.y2a_c00235{bottom:681.840000px;}
.y29_c00235{bottom:682.560000px;}
.y28_c00235{bottom:685.440000px;}
.y27_c00235{bottom:712.800000px;}
.y26_c00235{bottom:713.520000px;}
.y25_c00235{bottom:715.680000px;}
.y2b_c00235{bottom:717.120000px;}
.y2c_c00235{bottom:717.840000px;}
.y22_c00235{bottom:756.720000px;}
.y21_c00235{bottom:757.440000px;}
.y24_c00235{bottom:758.160000px;}
.y23_c00235{bottom:758.880000px;}
.y1d_c00235{bottom:799.920000px;}
.y1f_c00235{bottom:800.640000px;}
.y20_c00235{bottom:801.360000px;}
.y1c_c00235{bottom:802.080000px;}
.y1e_c00235{bottom:803.520000px;}
.y1b_c00235{bottom:843.120000px;}
.y1a_c00235{bottom:846.000000px;}
.y18_c00235{bottom:846.720000px;}
.y19_c00235{bottom:847.440000px;}
.y13_c00235{bottom:886.320000px;}
.y14_c00235{bottom:887.040000px;}
.y15_c00235{bottom:887.760000px;}
.y17_c00235{bottom:888.480000px;}
.y12_c00235{bottom:889.200000px;}
.y16_c00235{bottom:889.920000px;}
.y11_c00235{bottom:933.840000px;}
.yd_c00235{bottom:961.920000px;}
.ye_c00235{bottom:963.360000px;}
.yc_c00235{bottom:964.080000px;}
.y10_c00235{bottom:965.520000px;}
.yf_c00235{bottom:966.240000px;}
.y9_c00235{bottom:1004.400000px;}
.y8_c00235{bottom:1005.120000px;}
.ya_c00235{bottom:1006.560000px;}
.y6_c00235{bottom:1007.280000px;}
.yb_c00235{bottom:1008.000000px;}
.y7_c00235{bottom:1008.720000px;}
.y4_c00235{bottom:1049.040000px;}
.y2_c00235{bottom:1049.760000px;}
.y5_c00235{bottom:1050.480000px;}
.y3_c00235{bottom:1051.920000px;}
.y1_c00235{bottom:1105.920000px;}
.h12_c00235{height:28.508906px;}
.hf_c00235{height:33.692344px;}
.h10_c00235{height:36.284062px;}
.he_c00235{height:41.467500px;}
.h7_c00235{height:44.059219px;}
.h4_c00235{height:46.650937px;}
.h5_c00235{height:49.242656px;}
.h3_c00235{height:51.834375px;}
.h6_c00235{height:54.426094px;}
.h8_c00235{height:57.017812px;}
.ha_c00235{height:57.594375px;}
.hd_c00235{height:62.201250px;}
.hc_c00235{height:64.792969px;}
.h2_c00235{height:67.384687px;}
.hb_c00235{height:67.672969px;}
.h9_c00235{height:69.976406px;}
.h11_c00235{height:88.118437px;}
.h0_c00235{height:1152.720000px;}
.h1_c00235{height:1152.750000px;}
.w1_c00235{width:788.250000px;}
.w0_c00235{width:788.400000px;}
.x0_c00235{left:0.000000px;}
.x2_c00235{left:71.280000px;}
.xa_c00235{left:72.720000px;}
.x27_c00235{left:74.160000px;}
.x2f_c00235{left:75.600000px;}
.x2a_c00235{left:115.200000px;}
.x1f_c00235{left:123.120000px;}
.x3_c00235{left:144.720000px;}
.x20_c00235{left:146.160000px;}
.x25_c00235{left:176.400000px;}
.x28_c00235{left:186.480000px;}
.x4_c00235{left:187.920000px;}
.x2b_c00235{left:197.280000px;}
.xe_c00235{left:198.720000px;}
.x21_c00235{left:218.880000px;}
.xb_c00235{left:231.840000px;}
.x5_c00235{left:242.640000px;}
.xf_c00235{left:253.440000px;}
.x18_c00235{left:274.320000px;}
.x1a_c00235{left:296.640000px;}
.x14_c00235{left:318.240000px;}
.x9_c00235{left:329.040000px;}
.x10_c00235{left:339.840000px;}
.x19_c00235{left:371.520000px;}
.x1d_c00235{left:382.320000px;}
.x11_c00235{left:393.840000px;}
.x1b_c00235{left:395.280000px;}
.x2c_c00235{left:404.640000px;}
.x15_c00235{left:414.720000px;}
.x1e_c00235{left:437.040000px;}
.x2d_c00235{left:457.920000px;}
.x16_c00235{left:459.360000px;}
.x29_c00235{left:470.160000px;}
.x26_c00235{left:491.040000px;}
.x2e_c00235{left:544.320000px;}
.x1c_c00235{left:555.840000px;}
.xc_c00235{left:557.280000px;}
.x13_c00235{left:566.640000px;}
.x12_c00235{left:568.080000px;}
.x17_c00235{left:587.520000px;}
.x22_c00235{left:619.920000px;}
.x6_c00235{left:622.080000px;}
.x7_c00235{left:653.040000px;}
.xd_c00235{left:654.480000px;}
.x23_c00235{left:685.440000px;}
.x8_c00235{left:695.520000px;}
.x30_c00235{left:696.960000px;}
.x1_c00235{left:703.440000px;}
.x24_c00235{left:715.680000px;}
.x31_c00235{left:717.120000px;}
@media print{
.v0_c00235{vertical-align:0.000000pt;}
.v2_c00235{vertical-align:2.560000pt;}
.v1_c00235{vertical-align:5.120000pt;}
.ls0_c00235{letter-spacing:0.000000pt;}
.ws1_c00235{word-spacing:-3.830400pt;}
.ws3_c00235{word-spacing:0.000000pt;}
.ws2_c00235{word-spacing:2.715093pt;}
.ws0_c00235{word-spacing:11.680000pt;}
.fse_c00235{font-size:28.160000pt;}
.fsb_c00235{font-size:33.280000pt;}
.fsc_c00235{font-size:35.840000pt;}
.fsa_c00235{font-size:40.960000pt;}
.fs5_c00235{font-size:43.520000pt;}
.fs2_c00235{font-size:46.080000pt;}
.fs3_c00235{font-size:48.640000pt;}
.fs1_c00235{font-size:51.200000pt;}
.fs4_c00235{font-size:53.760000pt;}
.fs6_c00235{font-size:56.320000pt;}
.fs9_c00235{font-size:61.440000pt;}
.fs8_c00235{font-size:64.000000pt;}
.fs0_c00235{font-size:66.560000pt;}
.fs7_c00235{font-size:69.120000pt;}
.fsd_c00235{font-size:87.040000pt;}
.y0_c00235{bottom:0.000000pt;}
.y6f_c00235{bottom:47.360000pt;}
.y6e_c00235{bottom:49.280000pt;}
.y70_c00235{bottom:50.560000pt;}
.y6d_c00235{bottom:52.480000pt;}
.y6c_c00235{bottom:54.400000pt;}
.y6b_c00235{bottom:80.640000pt;}
.y69_c00235{bottom:87.040000pt;}
.y68_c00235{bottom:88.320000pt;}
.y6a_c00235{bottom:89.600000pt;}
.y67_c00235{bottom:90.880000pt;}
.y66_c00235{bottom:91.520000pt;}
.y63_c00235{bottom:124.160000pt;}
.y64_c00235{bottom:126.720000pt;}
.y61_c00235{bottom:127.360000pt;}
.y62_c00235{bottom:128.000000pt;}
.y65_c00235{bottom:128.640000pt;}
.y60_c00235{bottom:129.280000pt;}
.y5e_c00235{bottom:158.720000pt;}
.y5c_c00235{bottom:163.200000pt;}
.y5d_c00235{bottom:165.120000pt;}
.y5f_c00235{bottom:166.400000pt;}
.y5b_c00235{bottom:167.040000pt;}
.y5a_c00235{bottom:167.680000pt;}
.y57_c00235{bottom:201.600000pt;}
.y56_c00235{bottom:204.160000pt;}
.y58_c00235{bottom:205.440000pt;}
.y55_c00235{bottom:206.080000pt;}
.y59_c00235{bottom:206.720000pt;}
.y54_c00235{bottom:207.360000pt;}
.y51_c00235{bottom:240.640000pt;}
.y52_c00235{bottom:243.840000pt;}
.y53_c00235{bottom:244.480000pt;}
.y50_c00235{bottom:245.120000pt;}
.y4f_c00235{bottom:245.760000pt;}
.y4d_c00235{bottom:327.040000pt;}
.y4e_c00235{bottom:329.600000pt;}
.y4c_c00235{bottom:330.880000pt;}
.y4b_c00235{bottom:331.520000pt;}
.y45_c00235{bottom:365.440000pt;}
.y4a_c00235{bottom:368.000000pt;}
.y43_c00235{bottom:368.640000pt;}
.y46_c00235{bottom:369.280000pt;}
.y44_c00235{bottom:369.920000pt;}
.y42_c00235{bottom:404.480000pt;}
.y47_c00235{bottom:406.400000pt;}
.y48_c00235{bottom:407.040000pt;}
.y40_c00235{bottom:407.680000pt;}
.y49_c00235{bottom:408.320000pt;}
.y41_c00235{bottom:408.960000pt;}
.y3e_c00235{bottom:442.880000pt;}
.y3d_c00235{bottom:444.160000pt;}
.y3c_c00235{bottom:444.800000pt;}
.y3b_c00235{bottom:445.440000pt;}
.y3f_c00235{bottom:446.080000pt;}
.y37_c00235{bottom:481.280000pt;}
.y3a_c00235{bottom:482.560000pt;}
.y38_c00235{bottom:483.200000pt;}
.y35_c00235{bottom:484.480000pt;}
.y39_c00235{bottom:485.120000pt;}
.y36_c00235{bottom:485.760000pt;}
.y33_c00235{bottom:521.600000pt;}
.y34_c00235{bottom:522.880000pt;}
.y32_c00235{bottom:523.520000pt;}
.y2f_c00235{bottom:567.040000pt;}
.y30_c00235{bottom:567.680000pt;}
.y2d_c00235{bottom:568.320000pt;}
.y31_c00235{bottom:568.960000pt;}
.y2e_c00235{bottom:570.880000pt;}
.y2a_c00235{bottom:606.080000pt;}
.y29_c00235{bottom:606.720000pt;}
.y28_c00235{bottom:609.280000pt;}
.y27_c00235{bottom:633.600000pt;}
.y26_c00235{bottom:634.240000pt;}
.y25_c00235{bottom:636.160000pt;}
.y2b_c00235{bottom:637.440000pt;}
.y2c_c00235{bottom:638.080000pt;}
.y22_c00235{bottom:672.640000pt;}
.y21_c00235{bottom:673.280000pt;}
.y24_c00235{bottom:673.920000pt;}
.y23_c00235{bottom:674.560000pt;}
.y1d_c00235{bottom:711.040000pt;}
.y1f_c00235{bottom:711.680000pt;}
.y20_c00235{bottom:712.320000pt;}
.y1c_c00235{bottom:712.960000pt;}
.y1e_c00235{bottom:714.240000pt;}
.y1b_c00235{bottom:749.440000pt;}
.y1a_c00235{bottom:752.000000pt;}
.y18_c00235{bottom:752.640000pt;}
.y19_c00235{bottom:753.280000pt;}
.y13_c00235{bottom:787.840000pt;}
.y14_c00235{bottom:788.480000pt;}
.y15_c00235{bottom:789.120000pt;}
.y17_c00235{bottom:789.760000pt;}
.y12_c00235{bottom:790.400000pt;}
.y16_c00235{bottom:791.040000pt;}
.y11_c00235{bottom:830.080000pt;}
.yd_c00235{bottom:855.040000pt;}
.ye_c00235{bottom:856.320000pt;}
.yc_c00235{bottom:856.960000pt;}
.y10_c00235{bottom:858.240000pt;}
.yf_c00235{bottom:858.880000pt;}
.y9_c00235{bottom:892.800000pt;}
.y8_c00235{bottom:893.440000pt;}
.ya_c00235{bottom:894.720000pt;}
.y6_c00235{bottom:895.360000pt;}
.yb_c00235{bottom:896.000000pt;}
.y7_c00235{bottom:896.640000pt;}
.y4_c00235{bottom:932.480000pt;}
.y2_c00235{bottom:933.120000pt;}
.y5_c00235{bottom:933.760000pt;}
.y3_c00235{bottom:935.040000pt;}
.y1_c00235{bottom:983.040000pt;}
.h12_c00235{height:25.341250pt;}
.hf_c00235{height:29.948750pt;}
.h10_c00235{height:32.252500pt;}
.he_c00235{height:36.860000pt;}
.h7_c00235{height:39.163750pt;}
.h4_c00235{height:41.467500pt;}
.h5_c00235{height:43.771250pt;}
.h3_c00235{height:46.075000pt;}
.h6_c00235{height:48.378750pt;}
.h8_c00235{height:50.682500pt;}
.ha_c00235{height:51.195000pt;}
.hd_c00235{height:55.290000pt;}
.hc_c00235{height:57.593750pt;}
.h2_c00235{height:59.897500pt;}
.hb_c00235{height:60.153750pt;}
.h9_c00235{height:62.201250pt;}
.h11_c00235{height:78.327500pt;}
.h0_c00235{height:1024.640000pt;}
.h1_c00235{height:1024.666667pt;}
.w1_c00235{width:700.666667pt;}
.w0_c00235{width:700.800000pt;}
.x0_c00235{left:0.000000pt;}
.x2_c00235{left:63.360000pt;}
.xa_c00235{left:64.640000pt;}
.x27_c00235{left:65.920000pt;}
.x2f_c00235{left:67.200000pt;}
.x2a_c00235{left:102.400000pt;}
.x1f_c00235{left:109.440000pt;}
.x3_c00235{left:128.640000pt;}
.x20_c00235{left:129.920000pt;}
.x25_c00235{left:156.800000pt;}
.x28_c00235{left:165.760000pt;}
.x4_c00235{left:167.040000pt;}
.x2b_c00235{left:175.360000pt;}
.xe_c00235{left:176.640000pt;}
.x21_c00235{left:194.560000pt;}
.xb_c00235{left:206.080000pt;}
.x5_c00235{left:215.680000pt;}
.xf_c00235{left:225.280000pt;}
.x18_c00235{left:243.840000pt;}
.x1a_c00235{left:263.680000pt;}
.x14_c00235{left:282.880000pt;}
.x9_c00235{left:292.480000pt;}
.x10_c00235{left:302.080000pt;}
.x19_c00235{left:330.240000pt;}
.x1d_c00235{left:339.840000pt;}
.x11_c00235{left:350.080000pt;}
.x1b_c00235{left:351.360000pt;}
.x2c_c00235{left:359.680000pt;}
.x15_c00235{left:368.640000pt;}
.x1e_c00235{left:388.480000pt;}
.x2d_c00235{left:407.040000pt;}
.x16_c00235{left:408.320000pt;}
.x29_c00235{left:417.920000pt;}
.x26_c00235{left:436.480000pt;}
.x2e_c00235{left:483.840000pt;}
.x1c_c00235{left:494.080000pt;}
.xc_c00235{left:495.360000pt;}
.x13_c00235{left:503.680000pt;}
.x12_c00235{left:504.960000pt;}
.x17_c00235{left:522.240000pt;}
.x22_c00235{left:551.040000pt;}
.x6_c00235{left:552.960000pt;}
.x7_c00235{left:580.480000pt;}
.xd_c00235{left:581.760000pt;}
.x23_c00235{left:609.280000pt;}
.x8_c00235{left:618.240000pt;}
.x30_c00235{left:619.520000pt;}
.x1_c00235{left:625.280000pt;}
.x24_c00235{left:636.160000pt;}
.x31_c00235{left:637.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a5f5b67845e1dcec1ed542b2.woff2')format("woff");}.ff1_c00236{font-family:ff1_c00236;line-height:1.109863;font-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_c00236{transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);}
.m56_c00236{transform:matrix(0.213100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213100,0.000000,0.000000,0.250000,0,0);}
.m53_c00236{transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);}
.m4f_c00236{transform:matrix(0.234200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234200,0.000000,0.000000,0.250000,0,0);}
.m3_c00236{transform:matrix(0.240525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240525,0.000000,0.000000,0.250000,0,0);}
.m3b_c00236{transform:matrix(0.241825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241825,0.000000,0.000000,0.250000,0,0);}
.m15_c00236{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m45_c00236{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.me_c00236{transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);}
.m38_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);}
.m17_c00236{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m19_c00236{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m11_c00236{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);}
.m48_c00236{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);}
.m24_c00236{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);}
.m37_c00236{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);}
.m3d_c00236{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00236{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m4_c00236{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);}
.m2c_c00236{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m13_c00236{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m20_c00236{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m8_c00236{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m26_c00236{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);}
.m2f_c00236{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);}
.m4b_c00236{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00236{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00236{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m23_c00236{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m44_c00236{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m47_c00236{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00236{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00236{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m42_c00236{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m6_c00236{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00236{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00236{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m55_c00236{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m10_c00236{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m33_c00236{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);}
.m3a_c00236{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);}
.m4e_c00236{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00236{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);}
.m2a_c00236{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m25_c00236{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m14_c00236{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m52_c00236{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m21_c00236{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m51_c00236{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);}
.m34_c00236{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);}
.ma_c00236{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m0_c00236{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);}
.m31_c00236{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.mc_c00236{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_c00236{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);}
.m35_c00236{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);}
.m7_c00236{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.mb_c00236{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);}
.m12_c00236{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m1_c00236{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m18_c00236{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m16_c00236{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.mf_c00236{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m49_c00236{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m39_c00236{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m32_c00236{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m2_c00236{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m41_c00236{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m28_c00236{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);}
.m36_c00236{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m54_c00236{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);}
.md_c00236{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m30_c00236{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);}
.m2b_c00236{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00236{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);}
.m2d_c00236{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);}
.m2e_c00236{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m50_c00236{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m9_c00236{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m22_c00236{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);}
.m3e_c00236{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m29_c00236{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m46_c00236{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00236{transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);}
.m5_c00236{transform:matrix(0.745000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.745000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.745000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00236{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m43_c00236{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.v2_c00236{vertical-align:-8.640000px;}
.v0_c00236{vertical-align:0.000000px;}
.v1_c00236{vertical-align:8.640000px;}
.ls0_c00236{letter-spacing:0.000000px;}
.sc__c00236{text-shadow:none;}
.sc0_c00236{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00236{-webkit-text-stroke:0px transparent;}
.sc0_c00236{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00236{word-spacing:0.000000px;}
.ws2_c00236{word-spacing:4.702666px;}
.ws0_c00236{word-spacing:10.286400px;}
.ws3_c00236{word-spacing:10.749600px;}
.ws1_c00236{word-spacing:11.648750px;}
.fc0_c00236{color:transparent;}
.fsc_c00236{font-size:8.640000px;}
.fs4_c00236{font-size:34.560000px;}
.fsd_c00236{font-size:37.440000px;}
.fs10_c00236{font-size:40.320000px;}
.fsb_c00236{font-size:43.200000px;}
.fs7_c00236{font-size:46.080000px;}
.fs1_c00236{font-size:48.960000px;}
.fs5_c00236{font-size:51.840000px;}
.fs8_c00236{font-size:54.720000px;}
.fs0_c00236{font-size:57.600000px;}
.fs9_c00236{font-size:60.480000px;}
.fs3_c00236{font-size:63.360000px;}
.fsf_c00236{font-size:66.240000px;}
.fs11_c00236{font-size:69.120000px;}
.fsa_c00236{font-size:72.000000px;}
.fs2_c00236{font-size:74.880000px;}
.fs6_c00236{font-size:77.760000px;}
.fs12_c00236{font-size:103.680000px;}
.fse_c00236{font-size:112.320000px;}
.y0_c00236{bottom:0.000000px;}
.y59_c00236{bottom:48.240000px;}
.y7b_c00236{bottom:51.120000px;}
.y58_c00236{bottom:51.840000px;}
.y7c_c00236{bottom:52.560000px;}
.y57_c00236{bottom:54.720000px;}
.y56_c00236{bottom:90.720000px;}
.y55_c00236{bottom:95.040000px;}
.y7a_c00236{bottom:97.200000px;}
.y54_c00236{bottom:97.920000px;}
.y53_c00236{bottom:134.640000px;}
.y52_c00236{bottom:136.800000px;}
.y78_c00236{bottom:138.240000px;}
.y79_c00236{bottom:138.960000px;}
.y51_c00236{bottom:140.400000px;}
.y50_c00236{bottom:141.120000px;}
.y4f_c00236{bottom:178.560000px;}
.y4e_c00236{bottom:182.160000px;}
.y77_c00236{bottom:182.880000px;}
.y4c_c00236{bottom:183.600000px;}
.y4d_c00236{bottom:184.320000px;}
.y4a_c00236{bottom:222.480000px;}
.y75_c00236{bottom:223.200000px;}
.y76_c00236{bottom:224.640000px;}
.y4b_c00236{bottom:225.360000px;}
.y49_c00236{bottom:226.800000px;}
.y48_c00236{bottom:264.960000px;}
.y74_c00236{bottom:267.840000px;}
.y46_c00236{bottom:268.560000px;}
.y47_c00236{bottom:270.720000px;}
.y44_c00236{bottom:308.880000px;}
.y42_c00236{bottom:311.040000px;}
.y45_c00236{bottom:311.760000px;}
.y73_c00236{bottom:312.480000px;}
.y43_c00236{bottom:313.200000px;}
.y41_c00236{bottom:340.560000px;}
.y40_c00236{bottom:352.080000px;}
.y3f_c00236{bottom:352.800000px;}
.y3c_c00236{bottom:354.240000px;}
.y3e_c00236{bottom:354.960000px;}
.y3d_c00236{bottom:355.680000px;}
.y72_c00236{bottom:356.400000px;}
.y3b_c00236{bottom:394.560000px;}
.y70_c00236{bottom:396.720000px;}
.y3a_c00236{bottom:397.440000px;}
.y71_c00236{bottom:399.600000px;}
.y38_c00236{bottom:437.040000px;}
.y6f_c00236{bottom:439.200000px;}
.y36_c00236{bottom:439.920000px;}
.y35_c00236{bottom:440.640000px;}
.y37_c00236{bottom:441.360000px;}
.y39_c00236{bottom:442.080000px;}
.y34_c00236{bottom:473.040000px;}
.y30_c00236{bottom:480.960000px;}
.y33_c00236{bottom:481.680000px;}
.y32_c00236{bottom:482.400000px;}
.y2f_c00236{bottom:483.120000px;}
.y2e_c00236{bottom:483.840000px;}
.y31_c00236{bottom:484.560000px;}
.y6e_c00236{bottom:485.280000px;}
.y6d_c00236{bottom:486.000000px;}
.y2d_c00236{bottom:524.160000px;}
.y6b_c00236{bottom:525.600000px;}
.y6c_c00236{bottom:526.320000px;}
.y2b_c00236{bottom:527.040000px;}
.y2c_c00236{bottom:528.480000px;}
.y2a_c00236{bottom:567.360000px;}
.y6a_c00236{bottom:569.520000px;}
.y69_c00236{bottom:570.240000px;}
.y27_c00236{bottom:570.960000px;}
.y29_c00236{bottom:571.680000px;}
.y28_c00236{bottom:572.400000px;}
.y26_c00236{bottom:610.560000px;}
.y68_c00236{bottom:612.720000px;}
.y23_c00236{bottom:613.440000px;}
.y25_c00236{bottom:614.880000px;}
.y24_c00236{bottom:615.600000px;}
.y22_c00236{bottom:654.480000px;}
.y67_c00236{bottom:655.920000px;}
.y1f_c00236{bottom:657.360000px;}
.y21_c00236{bottom:658.080000px;}
.y20_c00236{bottom:658.800000px;}
.y1e_c00236{bottom:698.400000px;}
.y65_c00236{bottom:699.120000px;}
.y1c_c00236{bottom:699.840000px;}
.y66_c00236{bottom:700.560000px;}
.y1d_c00236{bottom:701.280000px;}
.y1b_c00236{bottom:740.880000px;}
.y64_c00236{bottom:742.320000px;}
.y19_c00236{bottom:743.040000px;}
.y1a_c00236{bottom:745.200000px;}
.y18_c00236{bottom:784.080000px;}
.y16_c00236{bottom:785.520000px;}
.y63_c00236{bottom:786.240000px;}
.y17_c00236{bottom:788.400000px;}
.y15_c00236{bottom:827.280000px;}
.y13_c00236{bottom:828.720000px;}
.y62_c00236{bottom:829.440000px;}
.y12_c00236{bottom:830.160000px;}
.y14_c00236{bottom:830.880000px;}
.y11_c00236{bottom:870.480000px;}
.y61_c00236{bottom:871.200000px;}
.yf_c00236{bottom:872.640000px;}
.y10_c00236{bottom:873.360000px;}
.ye_c00236{bottom:912.960000px;}
.y5f_c00236{bottom:913.680000px;}
.y60_c00236{bottom:915.120000px;}
.yc_c00236{bottom:915.840000px;}
.yd_c00236{bottom:916.560000px;}
.yb_c00236{bottom:956.160000px;}
.y5e_c00236{bottom:956.880000px;}
.y9_c00236{bottom:958.320000px;}
.ya_c00236{bottom:959.760000px;}
.y8_c00236{bottom:998.640000px;}
.y5c_c00236{bottom:999.360000px;}
.y5d_c00236{bottom:1000.080000px;}
.y7_c00236{bottom:1000.800000px;}
.y4_c00236{bottom:1001.520000px;}
.y5_c00236{bottom:1002.240000px;}
.y6_c00236{bottom:1002.960000px;}
.y5b_c00236{bottom:1042.560000px;}
.y3_c00236{bottom:1043.280000px;}
.y1_c00236{bottom:1044.000000px;}
.y2_c00236{bottom:1046.880000px;}
.y5a_c00236{bottom:1100.160000px;}
.he_c00236{height:7.775156px;}
.h6_c00236{height:31.100625px;}
.hf_c00236{height:33.692344px;}
.h12_c00236{height:36.284062px;}
.hd_c00236{height:38.875781px;}
.h9_c00236{height:41.467500px;}
.h3_c00236{height:44.059219px;}
.h7_c00236{height:46.650937px;}
.ha_c00236{height:49.242656px;}
.h2_c00236{height:51.834375px;}
.hb_c00236{height:54.426094px;}
.h15_c00236{height:55.290937px;}
.h5_c00236{height:57.017812px;}
.h11_c00236{height:59.609531px;}
.h13_c00236{height:62.201250px;}
.hc_c00236{height:64.792969px;}
.h4_c00236{height:67.384687px;}
.h8_c00236{height:69.976406px;}
.h14_c00236{height:93.301875px;}
.h10_c00236{height:101.077031px;}
.h0_c00236{height:1153.440000px;}
.h1_c00236{height:1153.500000px;}
.w1_c00236{width:789.750000px;}
.w0_c00236{width:789.840000px;}
.x0_c00236{left:0.000000px;}
.x1_c00236{left:72.000000px;}
.x10_c00236{left:73.440000px;}
.x22_c00236{left:74.880000px;}
.x5_c00236{left:114.480000px;}
.x6_c00236{left:144.720000px;}
.x2_c00236{left:146.160000px;}
.x3_c00236{left:177.120000px;}
.x21_c00236{left:186.480000px;}
.x7_c00236{left:187.920000px;}
.xc_c00236{left:198.000000px;}
.x11_c00236{left:199.440000px;}
.xb_c00236{left:221.040000px;}
.x4_c00236{left:231.840000px;}
.xd_c00236{left:241.920000px;}
.x8_c00236{left:243.360000px;}
.x1c_c00236{left:252.000000px;}
.x18_c00236{left:296.640000px;}
.x1d_c00236{left:306.720000px;}
.x1f_c00236{left:317.520000px;}
.xf_c00236{left:329.040000px;}
.x19_c00236{left:339.840000px;}
.x12_c00236{left:361.440000px;}
.x1e_c00236{left:372.240000px;}
.x1a_c00236{left:383.040000px;}
.x9_c00236{left:394.560000px;}
.xe_c00236{left:403.920000px;}
.x13_c00236{left:415.440000px;}
.xa_c00236{left:448.560000px;}
.x16_c00236{left:459.360000px;}
.x20_c00236{left:469.440000px;}
.x1b_c00236{left:479.520000px;}
.x17_c00236{left:501.120000px;}
.x14_c00236{left:511.920000px;}
.x15_c00236{left:522.720000px;}
.x32_c00236{left:556.560000px;}
.x31_c00236{left:565.920000px;}
.x30_c00236{left:587.520000px;}
.x24_c00236{left:588.960000px;}
.x2c_c00236{left:598.320000px;}
.x2f_c00236{left:619.920000px;}
.x27_c00236{left:621.360000px;}
.x2a_c00236{left:653.040000px;}
.x28_c00236{left:654.480000px;}
.x2d_c00236{left:663.120000px;}
.x2b_c00236{left:685.440000px;}
.x29_c00236{left:695.520000px;}
.x25_c00236{left:696.960000px;}
.x23_c00236{left:706.320000px;}
.x2e_c00236{left:714.960000px;}
.x26_c00236{left:716.400000px;}
@media print{
.v2_c00236{vertical-align:-7.680000pt;}
.v0_c00236{vertical-align:0.000000pt;}
.v1_c00236{vertical-align:7.680000pt;}
.ls0_c00236{letter-spacing:0.000000pt;}
.ws4_c00236{word-spacing:0.000000pt;}
.ws2_c00236{word-spacing:4.180147pt;}
.ws0_c00236{word-spacing:9.143467pt;}
.ws3_c00236{word-spacing:9.555200pt;}
.ws1_c00236{word-spacing:10.354445pt;}
.fsc_c00236{font-size:7.680000pt;}
.fs4_c00236{font-size:30.720000pt;}
.fsd_c00236{font-size:33.280000pt;}
.fs10_c00236{font-size:35.840000pt;}
.fsb_c00236{font-size:38.400000pt;}
.fs7_c00236{font-size:40.960000pt;}
.fs1_c00236{font-size:43.520000pt;}
.fs5_c00236{font-size:46.080000pt;}
.fs8_c00236{font-size:48.640000pt;}
.fs0_c00236{font-size:51.200000pt;}
.fs9_c00236{font-size:53.760000pt;}
.fs3_c00236{font-size:56.320000pt;}
.fsf_c00236{font-size:58.880000pt;}
.fs11_c00236{font-size:61.440000pt;}
.fsa_c00236{font-size:64.000000pt;}
.fs2_c00236{font-size:66.560000pt;}
.fs6_c00236{font-size:69.120000pt;}
.fs12_c00236{font-size:92.160000pt;}
.fse_c00236{font-size:99.840000pt;}
.y0_c00236{bottom:0.000000pt;}
.y59_c00236{bottom:42.880000pt;}
.y7b_c00236{bottom:45.440000pt;}
.y58_c00236{bottom:46.080000pt;}
.y7c_c00236{bottom:46.720000pt;}
.y57_c00236{bottom:48.640000pt;}
.y56_c00236{bottom:80.640000pt;}
.y55_c00236{bottom:84.480000pt;}
.y7a_c00236{bottom:86.400000pt;}
.y54_c00236{bottom:87.040000pt;}
.y53_c00236{bottom:119.680000pt;}
.y52_c00236{bottom:121.600000pt;}
.y78_c00236{bottom:122.880000pt;}
.y79_c00236{bottom:123.520000pt;}
.y51_c00236{bottom:124.800000pt;}
.y50_c00236{bottom:125.440000pt;}
.y4f_c00236{bottom:158.720000pt;}
.y4e_c00236{bottom:161.920000pt;}
.y77_c00236{bottom:162.560000pt;}
.y4c_c00236{bottom:163.200000pt;}
.y4d_c00236{bottom:163.840000pt;}
.y4a_c00236{bottom:197.760000pt;}
.y75_c00236{bottom:198.400000pt;}
.y76_c00236{bottom:199.680000pt;}
.y4b_c00236{bottom:200.320000pt;}
.y49_c00236{bottom:201.600000pt;}
.y48_c00236{bottom:235.520000pt;}
.y74_c00236{bottom:238.080000pt;}
.y46_c00236{bottom:238.720000pt;}
.y47_c00236{bottom:240.640000pt;}
.y44_c00236{bottom:274.560000pt;}
.y42_c00236{bottom:276.480000pt;}
.y45_c00236{bottom:277.120000pt;}
.y73_c00236{bottom:277.760000pt;}
.y43_c00236{bottom:278.400000pt;}
.y41_c00236{bottom:302.720000pt;}
.y40_c00236{bottom:312.960000pt;}
.y3f_c00236{bottom:313.600000pt;}
.y3c_c00236{bottom:314.880000pt;}
.y3e_c00236{bottom:315.520000pt;}
.y3d_c00236{bottom:316.160000pt;}
.y72_c00236{bottom:316.800000pt;}
.y3b_c00236{bottom:350.720000pt;}
.y70_c00236{bottom:352.640000pt;}
.y3a_c00236{bottom:353.280000pt;}
.y71_c00236{bottom:355.200000pt;}
.y38_c00236{bottom:388.480000pt;}
.y6f_c00236{bottom:390.400000pt;}
.y36_c00236{bottom:391.040000pt;}
.y35_c00236{bottom:391.680000pt;}
.y37_c00236{bottom:392.320000pt;}
.y39_c00236{bottom:392.960000pt;}
.y34_c00236{bottom:420.480000pt;}
.y30_c00236{bottom:427.520000pt;}
.y33_c00236{bottom:428.160000pt;}
.y32_c00236{bottom:428.800000pt;}
.y2f_c00236{bottom:429.440000pt;}
.y2e_c00236{bottom:430.080000pt;}
.y31_c00236{bottom:430.720000pt;}
.y6e_c00236{bottom:431.360000pt;}
.y6d_c00236{bottom:432.000000pt;}
.y2d_c00236{bottom:465.920000pt;}
.y6b_c00236{bottom:467.200000pt;}
.y6c_c00236{bottom:467.840000pt;}
.y2b_c00236{bottom:468.480000pt;}
.y2c_c00236{bottom:469.760000pt;}
.y2a_c00236{bottom:504.320000pt;}
.y6a_c00236{bottom:506.240000pt;}
.y69_c00236{bottom:506.880000pt;}
.y27_c00236{bottom:507.520000pt;}
.y29_c00236{bottom:508.160000pt;}
.y28_c00236{bottom:508.800000pt;}
.y26_c00236{bottom:542.720000pt;}
.y68_c00236{bottom:544.640000pt;}
.y23_c00236{bottom:545.280000pt;}
.y25_c00236{bottom:546.560000pt;}
.y24_c00236{bottom:547.200000pt;}
.y22_c00236{bottom:581.760000pt;}
.y67_c00236{bottom:583.040000pt;}
.y1f_c00236{bottom:584.320000pt;}
.y21_c00236{bottom:584.960000pt;}
.y20_c00236{bottom:585.600000pt;}
.y1e_c00236{bottom:620.800000pt;}
.y65_c00236{bottom:621.440000pt;}
.y1c_c00236{bottom:622.080000pt;}
.y66_c00236{bottom:622.720000pt;}
.y1d_c00236{bottom:623.360000pt;}
.y1b_c00236{bottom:658.560000pt;}
.y64_c00236{bottom:659.840000pt;}
.y19_c00236{bottom:660.480000pt;}
.y1a_c00236{bottom:662.400000pt;}
.y18_c00236{bottom:696.960000pt;}
.y16_c00236{bottom:698.240000pt;}
.y63_c00236{bottom:698.880000pt;}
.y17_c00236{bottom:700.800000pt;}
.y15_c00236{bottom:735.360000pt;}
.y13_c00236{bottom:736.640000pt;}
.y62_c00236{bottom:737.280000pt;}
.y12_c00236{bottom:737.920000pt;}
.y14_c00236{bottom:738.560000pt;}
.y11_c00236{bottom:773.760000pt;}
.y61_c00236{bottom:774.400000pt;}
.yf_c00236{bottom:775.680000pt;}
.y10_c00236{bottom:776.320000pt;}
.ye_c00236{bottom:811.520000pt;}
.y5f_c00236{bottom:812.160000pt;}
.y60_c00236{bottom:813.440000pt;}
.yc_c00236{bottom:814.080000pt;}
.yd_c00236{bottom:814.720000pt;}
.yb_c00236{bottom:849.920000pt;}
.y5e_c00236{bottom:850.560000pt;}
.y9_c00236{bottom:851.840000pt;}
.ya_c00236{bottom:853.120000pt;}
.y8_c00236{bottom:887.680000pt;}
.y5c_c00236{bottom:888.320000pt;}
.y5d_c00236{bottom:888.960000pt;}
.y7_c00236{bottom:889.600000pt;}
.y4_c00236{bottom:890.240000pt;}
.y5_c00236{bottom:890.880000pt;}
.y6_c00236{bottom:891.520000pt;}
.y5b_c00236{bottom:926.720000pt;}
.y3_c00236{bottom:927.360000pt;}
.y1_c00236{bottom:928.000000pt;}
.y2_c00236{bottom:930.560000pt;}
.y5a_c00236{bottom:977.920000pt;}
.he_c00236{height:6.911250pt;}
.h6_c00236{height:27.645000pt;}
.hf_c00236{height:29.948750pt;}
.h12_c00236{height:32.252500pt;}
.hd_c00236{height:34.556250pt;}
.h9_c00236{height:36.860000pt;}
.h3_c00236{height:39.163750pt;}
.h7_c00236{height:41.467500pt;}
.ha_c00236{height:43.771250pt;}
.h2_c00236{height:46.075000pt;}
.hb_c00236{height:48.378750pt;}
.h15_c00236{height:49.147500pt;}
.h5_c00236{height:50.682500pt;}
.h11_c00236{height:52.986250pt;}
.h13_c00236{height:55.290000pt;}
.hc_c00236{height:57.593750pt;}
.h4_c00236{height:59.897500pt;}
.h8_c00236{height:62.201250pt;}
.h14_c00236{height:82.935000pt;}
.h10_c00236{height:89.846250pt;}
.h0_c00236{height:1025.280000pt;}
.h1_c00236{height:1025.333333pt;}
.w1_c00236{width:702.000000pt;}
.w0_c00236{width:702.080000pt;}
.x0_c00236{left:0.000000pt;}
.x1_c00236{left:64.000000pt;}
.x10_c00236{left:65.280000pt;}
.x22_c00236{left:66.560000pt;}
.x5_c00236{left:101.760000pt;}
.x6_c00236{left:128.640000pt;}
.x2_c00236{left:129.920000pt;}
.x3_c00236{left:157.440000pt;}
.x21_c00236{left:165.760000pt;}
.x7_c00236{left:167.040000pt;}
.xc_c00236{left:176.000000pt;}
.x11_c00236{left:177.280000pt;}
.xb_c00236{left:196.480000pt;}
.x4_c00236{left:206.080000pt;}
.xd_c00236{left:215.040000pt;}
.x8_c00236{left:216.320000pt;}
.x1c_c00236{left:224.000000pt;}
.x18_c00236{left:263.680000pt;}
.x1d_c00236{left:272.640000pt;}
.x1f_c00236{left:282.240000pt;}
.xf_c00236{left:292.480000pt;}
.x19_c00236{left:302.080000pt;}
.x12_c00236{left:321.280000pt;}
.x1e_c00236{left:330.880000pt;}
.x1a_c00236{left:340.480000pt;}
.x9_c00236{left:350.720000pt;}
.xe_c00236{left:359.040000pt;}
.x13_c00236{left:369.280000pt;}
.xa_c00236{left:398.720000pt;}
.x16_c00236{left:408.320000pt;}
.x20_c00236{left:417.280000pt;}
.x1b_c00236{left:426.240000pt;}
.x17_c00236{left:445.440000pt;}
.x14_c00236{left:455.040000pt;}
.x15_c00236{left:464.640000pt;}
.x32_c00236{left:494.720000pt;}
.x31_c00236{left:503.040000pt;}
.x30_c00236{left:522.240000pt;}
.x24_c00236{left:523.520000pt;}
.x2c_c00236{left:531.840000pt;}
.x2f_c00236{left:551.040000pt;}
.x27_c00236{left:552.320000pt;}
.x2a_c00236{left:580.480000pt;}
.x28_c00236{left:581.760000pt;}
.x2d_c00236{left:589.440000pt;}
.x2b_c00236{left:609.280000pt;}
.x29_c00236{left:618.240000pt;}
.x25_c00236{left:619.520000pt;}
.x23_c00236{left:627.840000pt;}
.x2e_c00236{left:635.520000pt;}
.x26_c00236{left:636.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_26f373ae245854e750a589a1.woff2')format("woff");}.ff1_c00237{font-family:ff1_c00237;line-height:1.109863;font-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_c00237{transform:matrix(0.190875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190875,0.000000,0.000000,0.250000,0,0);}
.m49_c00237{transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);}
.m3a_c00237{transform:matrix(0.217800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217800,0.000000,0.000000,0.250000,0,0);}
.m44_c00237{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m42_c00237{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m16_c00237{transform:matrix(0.238075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238075,0.000000,0.000000,0.250000,0,0);}
.m36_c00237{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m3b_c00237{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m46_c00237{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m38_c00237{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m27_c00237{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_c00237{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m13_c00237{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);}
.m20_c00237{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00237{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m1_c00237{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m26_c00237{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.ma_c00237{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00237{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m8_c00237{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m7_c00237{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00237{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m10_c00237{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m22_c00237{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.me_c00237{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m40_c00237{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00237{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m6_c00237{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m9_c00237{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00237{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mb_c00237{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00237{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m2_c00237{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m3_c00237{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m41_c00237{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m29_c00237{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.md_c00237{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m4_c00237{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_c00237{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m30_c00237{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);}
.m1d_c00237{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00237{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);}
.m31_c00237{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m17_c00237{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);}
.m2f_c00237{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);}
.m33_c00237{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);}
.m3d_c00237{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);}
.m37_c00237{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);}
.m2c_c00237{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);}
.m5_c00237{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);}
.m3c_c00237{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m24_c00237{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m0_c00237{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);}
.m32_c00237{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00237{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00237{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m19_c00237{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m48_c00237{transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);}
.m28_c00237{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m21_c00237{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m18_c00237{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m15_c00237{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);}
.m34_c00237{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m11_c00237{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00237{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m35_c00237{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m25_c00237{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.mc_c00237{transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);}
.m39_c00237{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m45_c00237{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m23_c00237{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m47_c00237{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.mf_c00237{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.m43_c00237{transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);}
.v0_c00237{vertical-align:0.000000px;}
.v1_c00237{vertical-align:5.760000px;}
.ls0_c00237{letter-spacing:0.000000px;}
.sc__c00237{text-shadow:none;}
.sc0_c00237{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00237{-webkit-text-stroke:0px transparent;}
.sc0_c00237{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00237{word-spacing:0.000000px;}
.ws0_c00237{word-spacing:11.648750px;}
.ws1_c00237{word-spacing:47.598000px;}
.fc0_c00237{color:transparent;}
.fse_c00237{font-size:37.440000px;}
.fsc_c00237{font-size:43.200000px;}
.fs6_c00237{font-size:46.080000px;}
.fs2_c00237{font-size:48.960000px;}
.fs0_c00237{font-size:51.840000px;}
.fs5_c00237{font-size:54.720000px;}
.fs7_c00237{font-size:57.600000px;}
.fs4_c00237{font-size:60.480000px;}
.fsb_c00237{font-size:63.360000px;}
.fsd_c00237{font-size:66.240000px;}
.fsa_c00237{font-size:69.120000px;}
.fs1_c00237{font-size:72.000000px;}
.fs9_c00237{font-size:74.880000px;}
.fs3_c00237{font-size:77.760000px;}
.fs8_c00237{font-size:112.320000px;}
.y0_c00237{bottom:0.000000px;}
.y5d_c00237{bottom:17.280000px;}
.y5e_c00237{bottom:20.160000px;}
.y78_c00237{bottom:20.880000px;}
.y5c_c00237{bottom:23.760000px;}
.y5b_c00237{bottom:59.040000px;}
.y77_c00237{bottom:61.920000px;}
.y7a_c00237{bottom:63.360000px;}
.y5a_c00237{bottom:64.800000px;}
.y58_c00237{bottom:102.240000px;}
.y59_c00237{bottom:102.960000px;}
.y76_c00237{bottom:105.120000px;}
.y57_c00237{bottom:108.000000px;}
.y79_c00237{bottom:108.720000px;}
.y56_c00237{bottom:145.440000px;}
.y74_c00237{bottom:148.320000px;}
.y75_c00237{bottom:149.040000px;}
.y55_c00237{bottom:149.760000px;}
.y53_c00237{bottom:188.640000px;}
.y68_c00237{bottom:190.800000px;}
.y54_c00237{bottom:191.520000px;}
.y72_c00237{bottom:192.960000px;}
.y71_c00237{bottom:193.680000px;}
.y52_c00237{bottom:194.400000px;}
.y73_c00237{bottom:195.120000px;}
.y51_c00237{bottom:232.560000px;}
.y6e_c00237{bottom:234.720000px;}
.y67_c00237{bottom:235.440000px;}
.y70_c00237{bottom:236.160000px;}
.y50_c00237{bottom:236.880000px;}
.y6f_c00237{bottom:237.600000px;}
.y4f_c00237{bottom:275.040000px;}
.y6c_c00237{bottom:277.920000px;}
.y66_c00237{bottom:278.640000px;}
.y6d_c00237{bottom:279.360000px;}
.y4e_c00237{bottom:280.080000px;}
.y4c_c00237{bottom:318.960000px;}
.y4d_c00237{bottom:321.840000px;}
.y4b_c00237{bottom:323.280000px;}
.y6b_c00237{bottom:324.000000px;}
.y4a_c00237{bottom:362.160000px;}
.y65_c00237{bottom:365.040000px;}
.y49_c00237{bottom:366.480000px;}
.y6a_c00237{bottom:367.200000px;}
.y69_c00237{bottom:367.920000px;}
.y48_c00237{bottom:406.080000px;}
.y64_c00237{bottom:408.240000px;}
.y47_c00237{bottom:408.960000px;}
.y46_c00237{bottom:449.280000px;}
.y63_c00237{bottom:451.440000px;}
.y45_c00237{bottom:452.160000px;}
.y44_c00237{bottom:492.480000px;}
.y5f_c00237{bottom:493.920000px;}
.y60_c00237{bottom:494.640000px;}
.y43_c00237{bottom:495.360000px;}
.y62_c00237{bottom:496.800000px;}
.y61_c00237{bottom:497.520000px;}
.y3d_c00237{bottom:534.960000px;}
.y3f_c00237{bottom:535.680000px;}
.y41_c00237{bottom:536.400000px;}
.y3e_c00237{bottom:537.120000px;}
.y3c_c00237{bottom:537.840000px;}
.y40_c00237{bottom:539.280000px;}
.y42_c00237{bottom:540.000000px;}
.y3b_c00237{bottom:577.440000px;}
.y38_c00237{bottom:578.160000px;}
.y3a_c00237{bottom:578.880000px;}
.y37_c00237{bottom:580.320000px;}
.y39_c00237{bottom:581.760000px;}
.y35_c00237{bottom:622.080000px;}
.y36_c00237{bottom:623.520000px;}
.y33_c00237{bottom:624.240000px;}
.y34_c00237{bottom:624.960000px;}
.y31_c00237{bottom:664.560000px;}
.y2f_c00237{bottom:666.720000px;}
.y32_c00237{bottom:667.440000px;}
.y30_c00237{bottom:668.160000px;}
.y2d_c00237{bottom:707.760000px;}
.y2e_c00237{bottom:709.200000px;}
.y2b_c00237{bottom:709.920000px;}
.y2c_c00237{bottom:711.360000px;}
.y28_c00237{bottom:750.960000px;}
.y29_c00237{bottom:751.680000px;}
.y26_c00237{bottom:752.400000px;}
.y2a_c00237{bottom:753.840000px;}
.y27_c00237{bottom:754.560000px;}
.y24_c00237{bottom:794.880000px;}
.y22_c00237{bottom:795.600000px;}
.y25_c00237{bottom:796.320000px;}
.y23_c00237{bottom:797.760000px;}
.y1f_c00237{bottom:836.640000px;}
.y1c_c00237{bottom:838.080000px;}
.y20_c00237{bottom:838.800000px;}
.y21_c00237{bottom:840.240000px;}
.y1e_c00237{bottom:840.960000px;}
.y1d_c00237{bottom:841.680000px;}
.y18_c00237{bottom:879.840000px;}
.y1b_c00237{bottom:881.280000px;}
.y17_c00237{bottom:882.000000px;}
.y1a_c00237{bottom:883.440000px;}
.y19_c00237{bottom:884.160000px;}
.y14_c00237{bottom:913.680000px;}
.y12_c00237{bottom:923.760000px;}
.y15_c00237{bottom:924.480000px;}
.y11_c00237{bottom:925.200000px;}
.y16_c00237{bottom:925.920000px;}
.y13_c00237{bottom:926.640000px;}
.ye_c00237{bottom:966.960000px;}
.yf_c00237{bottom:967.680000px;}
.yb_c00237{bottom:968.400000px;}
.y10_c00237{bottom:969.120000px;}
.yc_c00237{bottom:970.560000px;}
.yd_c00237{bottom:971.280000px;}
.y9_c00237{bottom:1010.160000px;}
.ya_c00237{bottom:1010.880000px;}
.y7_c00237{bottom:1011.600000px;}
.y8_c00237{bottom:1013.760000px;}
.y2_c00237{bottom:1053.360000px;}
.y5_c00237{bottom:1054.080000px;}
.y1_c00237{bottom:1054.800000px;}
.y6_c00237{bottom:1056.240000px;}
.y3_c00237{bottom:1056.960000px;}
.y4_c00237{bottom:1095.120000px;}
.h10_c00237{height:33.692344px;}
.he_c00237{height:38.875781px;}
.h8_c00237{height:41.467500px;}
.h4_c00237{height:44.059219px;}
.h2_c00237{height:46.650937px;}
.h7_c00237{height:49.242656px;}
.h9_c00237{height:51.834375px;}
.h6_c00237{height:54.426094px;}
.hd_c00237{height:57.017812px;}
.h11_c00237{height:57.594375px;}
.hf_c00237{height:59.609531px;}
.hc_c00237{height:62.201250px;}
.h3_c00237{height:64.792969px;}
.hb_c00237{height:67.384687px;}
.h5_c00237{height:69.976406px;}
.ha_c00237{height:101.077031px;}
.h0_c00237{height:1153.440000px;}
.h1_c00237{height:1153.500000px;}
.w1_c00237{width:789.750000px;}
.w0_c00237{width:789.840000px;}
.x0_c00237{left:0.000000px;}
.x1_c00237{left:72.000000px;}
.x1c_c00237{left:73.440000px;}
.x2c_c00237{left:74.880000px;}
.x2f_c00237{left:76.320000px;}
.x2_c00237{left:145.440000px;}
.x17_c00237{left:146.880000px;}
.xa_c00237{left:177.120000px;}
.x18_c00237{left:187.920000px;}
.x7_c00237{left:189.360000px;}
.xe_c00237{left:200.160000px;}
.x11_c00237{left:222.480000px;}
.xb_c00237{left:231.120000px;}
.x23_c00237{left:232.560000px;}
.x1d_c00237{left:243.360000px;}
.x22_c00237{left:253.440000px;}
.x24_c00237{left:287.280000px;}
.x27_c00237{left:298.080000px;}
.x12_c00237{left:308.160000px;}
.x2d_c00237{left:330.480000px;}
.xf_c00237{left:339.840000px;}
.x2e_c00237{left:341.280000px;}
.x20_c00237{left:349.920000px;}
.x30_c00237{left:352.080000px;}
.x13_c00237{left:362.160000px;}
.x19_c00237{left:372.960000px;}
.x28_c00237{left:384.480000px;}
.x10_c00237{left:393.840000px;}
.x21_c00237{left:395.280000px;}
.x1a_c00237{left:426.960000px;}
.x29_c00237{left:439.200000px;}
.x14_c00237{left:459.360000px;}
.x25_c00237{left:480.240000px;}
.x15_c00237{left:513.360000px;}
.x2a_c00237{left:524.880000px;}
.x3_c00237{left:558.000000px;}
.x32_c00237{left:567.360000px;}
.x31_c00237{left:568.800000px;}
.x26_c00237{left:587.520000px;}
.x1b_c00237{left:588.960000px;}
.x16_c00237{left:620.640000px;}
.x5_c00237{left:622.080000px;}
.xc_c00237{left:652.320000px;}
.x8_c00237{left:653.760000px;}
.x1e_c00237{left:655.200000px;}
.x2b_c00237{left:665.280000px;}
.x6_c00237{left:686.880000px;}
.x9_c00237{left:696.240000px;}
.x1f_c00237{left:697.680000px;}
.x4_c00237{left:700.560000px;}
.xd_c00237{left:716.400000px;}
@media print{
.v0_c00237{vertical-align:0.000000pt;}
.v1_c00237{vertical-align:5.120000pt;}
.ls0_c00237{letter-spacing:0.000000pt;}
.ws2_c00237{word-spacing:0.000000pt;}
.ws0_c00237{word-spacing:10.354445pt;}
.ws1_c00237{word-spacing:42.309333pt;}
.fse_c00237{font-size:33.280000pt;}
.fsc_c00237{font-size:38.400000pt;}
.fs6_c00237{font-size:40.960000pt;}
.fs2_c00237{font-size:43.520000pt;}
.fs0_c00237{font-size:46.080000pt;}
.fs5_c00237{font-size:48.640000pt;}
.fs7_c00237{font-size:51.200000pt;}
.fs4_c00237{font-size:53.760000pt;}
.fsb_c00237{font-size:56.320000pt;}
.fsd_c00237{font-size:58.880000pt;}
.fsa_c00237{font-size:61.440000pt;}
.fs1_c00237{font-size:64.000000pt;}
.fs9_c00237{font-size:66.560000pt;}
.fs3_c00237{font-size:69.120000pt;}
.fs8_c00237{font-size:99.840000pt;}
.y0_c00237{bottom:0.000000pt;}
.y5d_c00237{bottom:15.360000pt;}
.y5e_c00237{bottom:17.920000pt;}
.y78_c00237{bottom:18.560000pt;}
.y5c_c00237{bottom:21.120000pt;}
.y5b_c00237{bottom:52.480000pt;}
.y77_c00237{bottom:55.040000pt;}
.y7a_c00237{bottom:56.320000pt;}
.y5a_c00237{bottom:57.600000pt;}
.y58_c00237{bottom:90.880000pt;}
.y59_c00237{bottom:91.520000pt;}
.y76_c00237{bottom:93.440000pt;}
.y57_c00237{bottom:96.000000pt;}
.y79_c00237{bottom:96.640000pt;}
.y56_c00237{bottom:129.280000pt;}
.y74_c00237{bottom:131.840000pt;}
.y75_c00237{bottom:132.480000pt;}
.y55_c00237{bottom:133.120000pt;}
.y53_c00237{bottom:167.680000pt;}
.y68_c00237{bottom:169.600000pt;}
.y54_c00237{bottom:170.240000pt;}
.y72_c00237{bottom:171.520000pt;}
.y71_c00237{bottom:172.160000pt;}
.y52_c00237{bottom:172.800000pt;}
.y73_c00237{bottom:173.440000pt;}
.y51_c00237{bottom:206.720000pt;}
.y6e_c00237{bottom:208.640000pt;}
.y67_c00237{bottom:209.280000pt;}
.y70_c00237{bottom:209.920000pt;}
.y50_c00237{bottom:210.560000pt;}
.y6f_c00237{bottom:211.200000pt;}
.y4f_c00237{bottom:244.480000pt;}
.y6c_c00237{bottom:247.040000pt;}
.y66_c00237{bottom:247.680000pt;}
.y6d_c00237{bottom:248.320000pt;}
.y4e_c00237{bottom:248.960000pt;}
.y4c_c00237{bottom:283.520000pt;}
.y4d_c00237{bottom:286.080000pt;}
.y4b_c00237{bottom:287.360000pt;}
.y6b_c00237{bottom:288.000000pt;}
.y4a_c00237{bottom:321.920000pt;}
.y65_c00237{bottom:324.480000pt;}
.y49_c00237{bottom:325.760000pt;}
.y6a_c00237{bottom:326.400000pt;}
.y69_c00237{bottom:327.040000pt;}
.y48_c00237{bottom:360.960000pt;}
.y64_c00237{bottom:362.880000pt;}
.y47_c00237{bottom:363.520000pt;}
.y46_c00237{bottom:399.360000pt;}
.y63_c00237{bottom:401.280000pt;}
.y45_c00237{bottom:401.920000pt;}
.y44_c00237{bottom:437.760000pt;}
.y5f_c00237{bottom:439.040000pt;}
.y60_c00237{bottom:439.680000pt;}
.y43_c00237{bottom:440.320000pt;}
.y62_c00237{bottom:441.600000pt;}
.y61_c00237{bottom:442.240000pt;}
.y3d_c00237{bottom:475.520000pt;}
.y3f_c00237{bottom:476.160000pt;}
.y41_c00237{bottom:476.800000pt;}
.y3e_c00237{bottom:477.440000pt;}
.y3c_c00237{bottom:478.080000pt;}
.y40_c00237{bottom:479.360000pt;}
.y42_c00237{bottom:480.000000pt;}
.y3b_c00237{bottom:513.280000pt;}
.y38_c00237{bottom:513.920000pt;}
.y3a_c00237{bottom:514.560000pt;}
.y37_c00237{bottom:515.840000pt;}
.y39_c00237{bottom:517.120000pt;}
.y35_c00237{bottom:552.960000pt;}
.y36_c00237{bottom:554.240000pt;}
.y33_c00237{bottom:554.880000pt;}
.y34_c00237{bottom:555.520000pt;}
.y31_c00237{bottom:590.720000pt;}
.y2f_c00237{bottom:592.640000pt;}
.y32_c00237{bottom:593.280000pt;}
.y30_c00237{bottom:593.920000pt;}
.y2d_c00237{bottom:629.120000pt;}
.y2e_c00237{bottom:630.400000pt;}
.y2b_c00237{bottom:631.040000pt;}
.y2c_c00237{bottom:632.320000pt;}
.y28_c00237{bottom:667.520000pt;}
.y29_c00237{bottom:668.160000pt;}
.y26_c00237{bottom:668.800000pt;}
.y2a_c00237{bottom:670.080000pt;}
.y27_c00237{bottom:670.720000pt;}
.y24_c00237{bottom:706.560000pt;}
.y22_c00237{bottom:707.200000pt;}
.y25_c00237{bottom:707.840000pt;}
.y23_c00237{bottom:709.120000pt;}
.y1f_c00237{bottom:743.680000pt;}
.y1c_c00237{bottom:744.960000pt;}
.y20_c00237{bottom:745.600000pt;}
.y21_c00237{bottom:746.880000pt;}
.y1e_c00237{bottom:747.520000pt;}
.y1d_c00237{bottom:748.160000pt;}
.y18_c00237{bottom:782.080000pt;}
.y1b_c00237{bottom:783.360000pt;}
.y17_c00237{bottom:784.000000pt;}
.y1a_c00237{bottom:785.280000pt;}
.y19_c00237{bottom:785.920000pt;}
.y14_c00237{bottom:812.160000pt;}
.y12_c00237{bottom:821.120000pt;}
.y15_c00237{bottom:821.760000pt;}
.y11_c00237{bottom:822.400000pt;}
.y16_c00237{bottom:823.040000pt;}
.y13_c00237{bottom:823.680000pt;}
.ye_c00237{bottom:859.520000pt;}
.yf_c00237{bottom:860.160000pt;}
.yb_c00237{bottom:860.800000pt;}
.y10_c00237{bottom:861.440000pt;}
.yc_c00237{bottom:862.720000pt;}
.yd_c00237{bottom:863.360000pt;}
.y9_c00237{bottom:897.920000pt;}
.ya_c00237{bottom:898.560000pt;}
.y7_c00237{bottom:899.200000pt;}
.y8_c00237{bottom:901.120000pt;}
.y2_c00237{bottom:936.320000pt;}
.y5_c00237{bottom:936.960000pt;}
.y1_c00237{bottom:937.600000pt;}
.y6_c00237{bottom:938.880000pt;}
.y3_c00237{bottom:939.520000pt;}
.y4_c00237{bottom:973.440000pt;}
.h10_c00237{height:29.948750pt;}
.he_c00237{height:34.556250pt;}
.h8_c00237{height:36.860000pt;}
.h4_c00237{height:39.163750pt;}
.h2_c00237{height:41.467500pt;}
.h7_c00237{height:43.771250pt;}
.h9_c00237{height:46.075000pt;}
.h6_c00237{height:48.378750pt;}
.hd_c00237{height:50.682500pt;}
.h11_c00237{height:51.195000pt;}
.hf_c00237{height:52.986250pt;}
.hc_c00237{height:55.290000pt;}
.h3_c00237{height:57.593750pt;}
.hb_c00237{height:59.897500pt;}
.h5_c00237{height:62.201250pt;}
.ha_c00237{height:89.846250pt;}
.h0_c00237{height:1025.280000pt;}
.h1_c00237{height:1025.333333pt;}
.w1_c00237{width:702.000000pt;}
.w0_c00237{width:702.080000pt;}
.x0_c00237{left:0.000000pt;}
.x1_c00237{left:64.000000pt;}
.x1c_c00237{left:65.280000pt;}
.x2c_c00237{left:66.560000pt;}
.x2f_c00237{left:67.840000pt;}
.x2_c00237{left:129.280000pt;}
.x17_c00237{left:130.560000pt;}
.xa_c00237{left:157.440000pt;}
.x18_c00237{left:167.040000pt;}
.x7_c00237{left:168.320000pt;}
.xe_c00237{left:177.920000pt;}
.x11_c00237{left:197.760000pt;}
.xb_c00237{left:205.440000pt;}
.x23_c00237{left:206.720000pt;}
.x1d_c00237{left:216.320000pt;}
.x22_c00237{left:225.280000pt;}
.x24_c00237{left:255.360000pt;}
.x27_c00237{left:264.960000pt;}
.x12_c00237{left:273.920000pt;}
.x2d_c00237{left:293.760000pt;}
.xf_c00237{left:302.080000pt;}
.x2e_c00237{left:303.360000pt;}
.x20_c00237{left:311.040000pt;}
.x30_c00237{left:312.960000pt;}
.x13_c00237{left:321.920000pt;}
.x19_c00237{left:331.520000pt;}
.x28_c00237{left:341.760000pt;}
.x10_c00237{left:350.080000pt;}
.x21_c00237{left:351.360000pt;}
.x1a_c00237{left:379.520000pt;}
.x29_c00237{left:390.400000pt;}
.x14_c00237{left:408.320000pt;}
.x25_c00237{left:426.880000pt;}
.x15_c00237{left:456.320000pt;}
.x2a_c00237{left:466.560000pt;}
.x3_c00237{left:496.000000pt;}
.x32_c00237{left:504.320000pt;}
.x31_c00237{left:505.600000pt;}
.x26_c00237{left:522.240000pt;}
.x1b_c00237{left:523.520000pt;}
.x16_c00237{left:551.680000pt;}
.x5_c00237{left:552.960000pt;}
.xc_c00237{left:579.840000pt;}
.x8_c00237{left:581.120000pt;}
.x1e_c00237{left:582.400000pt;}
.x2b_c00237{left:591.360000pt;}
.x6_c00237{left:610.560000pt;}
.x9_c00237{left:618.880000pt;}
.x1f_c00237{left:620.160000pt;}
.x4_c00237{left:622.720000pt;}
.xd_c00237{left:636.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5817673dd4eaced13f4e812c.woff2')format("woff");}.ff1_c00238{font-family:ff1_c00238;line-height:1.109863;font-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_c00238{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00238{transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);}
.m5_c00238{transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);}
.m30_c00238{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_c00238{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m40_c00238{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.md_c00238{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m25_c00238{transform:matrix(0.239425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239425,0.000000,0.000000,0.250000,0,0);}
.m2e_c00238{transform:matrix(0.244100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244100,0.000000,0.000000,0.250000,0,0);}
.m27_c00238{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m35_c00238{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00238{transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);}
.m46_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);}
.m16_c00238{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m2_c00238{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00238{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m39_c00238{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);}
.m47_c00238{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m32_c00238{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_c00238{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_c00238{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.me_c00238{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);}
.m2c_c00238{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);}
.m29_c00238{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m37_c00238{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m7_c00238{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00238{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m19_c00238{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m11_c00238{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m0_c00238{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m23_c00238{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00238{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m6_c00238{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00238{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m18_c00238{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.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);}
.m4d_c00238{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.ma_c00238{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00238{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00238{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m31_c00238{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m43_c00238{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m28_c00238{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00238{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m13_c00238{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m12_c00238{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m20_c00238{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m9_c00238{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m45_c00238{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);}
.m42_c00238{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00238{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);}
.m2a_c00238{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m22_c00238{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);}
.m4a_c00238{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);}
.m4_c00238{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m1_c00238{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);}
.m3a_c00238{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m3_c00238{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);}
.m15_c00238{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m34_c00238{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00238{transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);}
.m44_c00238{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00238{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);}
.mb_c00238{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m14_c00238{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);}
.m21_c00238{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m36_c00238{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);}
.m41_c00238{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m24_c00238{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_c00238{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m26_c00238{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00238{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m17_c00238{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m38_c00238{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00238{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m49_c00238{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00238{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00238{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m33_c00238{transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00238{transform:matrix(0.885000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.885000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.885000,0.000000,0.000000,0.250000,0,0);}
.v1_c00238{vertical-align:-5.760000px;}
.v0_c00238{vertical-align:0.000000px;}
.v2_c00238{vertical-align:5.760000px;}
.ls1_c00238{letter-spacing:0.000000px;}
.ls0_c00238{letter-spacing:170.642400px;}
.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;}
}
.ws2_c00238{word-spacing:0.000000px;}
.ws1_c00238{word-spacing:2.566800px;}
.ws0_c00238{word-spacing:9.210378px;}
.fc0_c00238{color:transparent;}
.fsf_c00238{font-size:2.880000px;}
.fsc_c00238{font-size:34.560000px;}
.fse_c00238{font-size:37.440000px;}
.fs9_c00238{font-size:46.080000px;}
.fs2_c00238{font-size:48.960000px;}
.fs3_c00238{font-size:51.840000px;}
.fs1_c00238{font-size:54.720000px;}
.fs4_c00238{font-size:57.600000px;}
.fs5_c00238{font-size:60.480000px;}
.fs7_c00238{font-size:63.360000px;}
.fsd_c00238{font-size:66.240000px;}
.fsb_c00238{font-size:69.120000px;}
.fs8_c00238{font-size:72.000000px;}
.fs6_c00238{font-size:74.880000px;}
.fs0_c00238{font-size:77.760000px;}
.fsa_c00238{font-size:109.440000px;}
.y0_c00238{bottom:0.000000px;}
.y7c_c00238{bottom:58.320000px;}
.y7d_c00238{bottom:59.760000px;}
.y7f_c00238{bottom:61.200000px;}
.y7e_c00238{bottom:61.920000px;}
.y7b_c00238{bottom:63.360000px;}
.y77_c00238{bottom:103.680000px;}
.y78_c00238{bottom:105.840000px;}
.y76_c00238{bottom:106.560000px;}
.y75_c00238{bottom:107.280000px;}
.y73_c00238{bottom:135.360000px;}
.y71_c00238{bottom:136.800000px;}
.y72_c00238{bottom:138.240000px;}
.y6f_c00238{bottom:138.960000px;}
.y70_c00238{bottom:139.680000px;}
.y74_c00238{bottom:140.400000px;}
.y7a_c00238{bottom:141.120000px;}
.y6c_c00238{bottom:179.280000px;}
.y6d_c00238{bottom:180.720000px;}
.y6e_c00238{bottom:182.160000px;}
.y6b_c00238{bottom:182.880000px;}
.y79_c00238{bottom:184.320000px;}
.y61_c00238{bottom:221.760000px;}
.y60_c00238{bottom:222.480000px;}
.y68_c00238{bottom:224.640000px;}
.y5f_c00238{bottom:226.800000px;}
.y6a_c00238{bottom:227.520000px;}
.y69_c00238{bottom:242.640000px;}
.y5d_c00238{bottom:265.680000px;}
.y66_c00238{bottom:267.840000px;}
.y5e_c00238{bottom:268.560000px;}
.y5c_c00238{bottom:269.280000px;}
.y65_c00238{bottom:270.000000px;}
.y67_c00238{bottom:270.720000px;}
.y5a_c00238{bottom:308.160000px;}
.y59_c00238{bottom:309.600000px;}
.y64_c00238{bottom:310.320000px;}
.y58_c00238{bottom:311.040000px;}
.y5b_c00238{bottom:312.480000px;}
.y57_c00238{bottom:313.200000px;}
.y56_c00238{bottom:351.360000px;}
.y63_c00238{bottom:353.520000px;}
.y55_c00238{bottom:354.960000px;}
.y62_c00238{bottom:357.120000px;}
.y52_c00238{bottom:394.560000px;}
.y53_c00238{bottom:395.280000px;}
.y54_c00238{bottom:397.440000px;}
.y51_c00238{bottom:398.160000px;}
.y50_c00238{bottom:437.760000px;}
.y4f_c00238{bottom:441.360000px;}
.y4b_c00238{bottom:469.440000px;}
.y4a_c00238{bottom:471.600000px;}
.y4d_c00238{bottom:472.320000px;}
.y49_c00238{bottom:473.040000px;}
.y4c_c00238{bottom:473.760000px;}
.y4e_c00238{bottom:474.480000px;}
.y44_c00238{bottom:513.360000px;}
.y46_c00238{bottom:514.080000px;}
.y45_c00238{bottom:514.800000px;}
.y43_c00238{bottom:515.520000px;}
.y47_c00238{bottom:516.240000px;}
.y48_c00238{bottom:517.680000px;}
.y40_c00238{bottom:556.560000px;}
.y41_c00238{bottom:560.160000px;}
.y42_c00238{bottom:560.880000px;}
.y39_c00238{bottom:588.960000px;}
.y3b_c00238{bottom:589.680000px;}
.y3c_c00238{bottom:590.400000px;}
.y38_c00238{bottom:591.120000px;}
.y3e_c00238{bottom:591.840000px;}
.y3a_c00238{bottom:592.560000px;}
.y3d_c00238{bottom:593.280000px;}
.y3f_c00238{bottom:594.000000px;}
.y35_c00238{bottom:632.880000px;}
.y37_c00238{bottom:634.320000px;}
.y34_c00238{bottom:635.040000px;}
.y36_c00238{bottom:636.480000px;}
.y2f_c00238{bottom:676.080000px;}
.y2e_c00238{bottom:676.800000px;}
.y32_c00238{bottom:678.240000px;}
.y33_c00238{bottom:678.960000px;}
.y31_c00238{bottom:679.680000px;}
.y30_c00238{bottom:680.400000px;}
.y29_c00238{bottom:719.280000px;}
.y2a_c00238{bottom:720.000000px;}
.y28_c00238{bottom:720.720000px;}
.y2c_c00238{bottom:721.440000px;}
.y2d_c00238{bottom:723.600000px;}
.y2b_c00238{bottom:724.320000px;}
.y27_c00238{bottom:762.480000px;}
.y26_c00238{bottom:766.080000px;}
.y22_c00238{bottom:794.880000px;}
.y24_c00238{bottom:795.600000px;}
.y21_c00238{bottom:796.320000px;}
.y25_c00238{bottom:797.040000px;}
.y23_c00238{bottom:798.480000px;}
.y1d_c00238{bottom:838.080000px;}
.y1c_c00238{bottom:838.800000px;}
.y1f_c00238{bottom:839.520000px;}
.y1e_c00238{bottom:840.960000px;}
.y20_c00238{bottom:841.680000px;}
.y1a_c00238{bottom:870.480000px;}
.y19_c00238{bottom:881.280000px;}
.y16_c00238{bottom:882.720000px;}
.y1b_c00238{bottom:883.440000px;}
.y18_c00238{bottom:884.160000px;}
.y17_c00238{bottom:884.880000px;}
.y12_c00238{bottom:923.760000px;}
.y14_c00238{bottom:925.200000px;}
.y11_c00238{bottom:925.920000px;}
.y15_c00238{bottom:926.640000px;}
.y13_c00238{bottom:928.080000px;}
.ye_c00238{bottom:967.680000px;}
.y10_c00238{bottom:968.400000px;}
.yd_c00238{bottom:969.840000px;}
.yf_c00238{bottom:970.560000px;}
.y9_c00238{bottom:999.360000px;}
.y7_c00238{bottom:1000.080000px;}
.ya_c00238{bottom:1000.800000px;}
.yc_c00238{bottom:1001.520000px;}
.yb_c00238{bottom:1002.240000px;}
.y8_c00238{bottom:1002.960000px;}
.y3_c00238{bottom:1041.840000px;}
.y4_c00238{bottom:1043.280000px;}
.y6_c00238{bottom:1044.000000px;}
.y2_c00238{bottom:1044.720000px;}
.y5_c00238{bottom:1045.440000px;}
.y1_c00238{bottom:1092.240000px;}
.h11_c00238{height:2.591719px;}
.he_c00238{height:31.100625px;}
.h10_c00238{height:33.692344px;}
.hb_c00238{height:41.467500px;}
.h4_c00238{height:44.059219px;}
.h5_c00238{height:46.650937px;}
.h3_c00238{height:49.242656px;}
.h6_c00238{height:51.834375px;}
.h7_c00238{height:54.426094px;}
.h9_c00238{height:57.017812px;}
.hf_c00238{height:59.609531px;}
.hd_c00238{height:62.201250px;}
.ha_c00238{height:64.792969px;}
.h8_c00238{height:67.384687px;}
.h2_c00238{height:69.976406px;}
.hc_c00238{height:98.485312px;}
.h1_c00238{height:1148.250000px;}
.h0_c00238{height:1148.400000px;}
.w0_c00238{width:781.920000px;}
.w1_c00238{width:782.250000px;}
.x0_c00238{left:0.000000px;}
.x2_c00238{left:72.720000px;}
.x16_c00238{left:74.160000px;}
.x28_c00238{left:75.600000px;}
.x35_c00238{left:77.040000px;}
.x3_c00238{left:144.720000px;}
.xa_c00238{left:146.160000px;}
.x36_c00238{left:147.600000px;}
.x2b_c00238{left:149.040000px;}
.x17_c00238{left:187.920000px;}
.xb_c00238{left:189.360000px;}
.x3c_c00238{left:191.520000px;}
.xe_c00238{left:200.880000px;}
.x37_c00238{left:202.320000px;}
.x18_c00238{left:233.280000px;}
.x2d_c00238{left:234.720000px;}
.x1d_c00238{left:242.640000px;}
.xc_c00238{left:244.080000px;}
.x2f_c00238{left:246.240000px;}
.x32_c00238{left:267.840000px;}
.x1b_c00238{left:276.480000px;}
.x31_c00238{left:277.920000px;}
.x4_c00238{left:287.280000px;}
.x1e_c00238{left:288.720000px;}
.x13_c00238{left:298.800000px;}
.x3d_c00238{left:300.240000px;}
.xf_c00238{left:308.160000px;}
.x2c_c00238{left:321.840000px;}
.x29_c00238{left:331.920000px;}
.x5_c00238{left:341.280000px;}
.x10_c00238{left:352.080000px;}
.x2e_c00238{left:365.040000px;}
.x1f_c00238{left:373.680000px;}
.x40_c00238{left:375.840000px;}
.x3b_c00238{left:397.440000px;}
.x23_c00238{left:406.080000px;}
.x33_c00238{left:407.520000px;}
.x38_c00238{left:419.040000px;}
.xd_c00238{left:428.400000px;}
.x41_c00238{left:429.840000px;}
.x11_c00238{left:438.480000px;}
.x24_c00238{left:450.000000px;}
.x19_c00238{left:460.800000px;}
.x14_c00238{left:481.680000px;}
.x2a_c00238{left:483.120000px;}
.x12_c00238{left:493.200000px;}
.x30_c00238{left:503.280000px;}
.x3e_c00238{left:560.160000px;}
.x6_c00238{left:569.520000px;}
.x39_c00238{left:590.400000px;}
.x34_c00238{left:614.880000px;}
.x7_c00238{left:622.080000px;}
.x1a_c00238{left:623.520000px;}
.x20_c00238{left:634.320000px;}
.x8_c00238{left:655.200000px;}
.x25_c00238{left:656.640000px;}
.x21_c00238{left:666.720000px;}
.x3a_c00238{left:686.160000px;}
.x1c_c00238{left:687.600000px;}
.x3f_c00238{left:689.040000px;}
.x1_c00238{left:690.480000px;}
.x9_c00238{left:696.960000px;}
.x26_c00238{left:698.400000px;}
.x42_c00238{left:699.840000px;}
.x22_c00238{left:709.200000px;}
.x15_c00238{left:717.120000px;}
.x27_c00238{left:718.560000px;}
@media print{
.v1_c00238{vertical-align:-5.120000pt;}
.v0_c00238{vertical-align:0.000000pt;}
.v2_c00238{vertical-align:5.120000pt;}
.ls1_c00238{letter-spacing:0.000000pt;}
.ls0_c00238{letter-spacing:151.682133pt;}
.ws2_c00238{word-spacing:0.000000pt;}
.ws1_c00238{word-spacing:2.281600pt;}
.ws0_c00238{word-spacing:8.187003pt;}
.fsf_c00238{font-size:2.560000pt;}
.fsc_c00238{font-size:30.720000pt;}
.fse_c00238{font-size:33.280000pt;}
.fs9_c00238{font-size:40.960000pt;}
.fs2_c00238{font-size:43.520000pt;}
.fs3_c00238{font-size:46.080000pt;}
.fs1_c00238{font-size:48.640000pt;}
.fs4_c00238{font-size:51.200000pt;}
.fs5_c00238{font-size:53.760000pt;}
.fs7_c00238{font-size:56.320000pt;}
.fsd_c00238{font-size:58.880000pt;}
.fsb_c00238{font-size:61.440000pt;}
.fs8_c00238{font-size:64.000000pt;}
.fs6_c00238{font-size:66.560000pt;}
.fs0_c00238{font-size:69.120000pt;}
.fsa_c00238{font-size:97.280000pt;}
.y0_c00238{bottom:0.000000pt;}
.y7c_c00238{bottom:51.840000pt;}
.y7d_c00238{bottom:53.120000pt;}
.y7f_c00238{bottom:54.400000pt;}
.y7e_c00238{bottom:55.040000pt;}
.y7b_c00238{bottom:56.320000pt;}
.y77_c00238{bottom:92.160000pt;}
.y78_c00238{bottom:94.080000pt;}
.y76_c00238{bottom:94.720000pt;}
.y75_c00238{bottom:95.360000pt;}
.y73_c00238{bottom:120.320000pt;}
.y71_c00238{bottom:121.600000pt;}
.y72_c00238{bottom:122.880000pt;}
.y6f_c00238{bottom:123.520000pt;}
.y70_c00238{bottom:124.160000pt;}
.y74_c00238{bottom:124.800000pt;}
.y7a_c00238{bottom:125.440000pt;}
.y6c_c00238{bottom:159.360000pt;}
.y6d_c00238{bottom:160.640000pt;}
.y6e_c00238{bottom:161.920000pt;}
.y6b_c00238{bottom:162.560000pt;}
.y79_c00238{bottom:163.840000pt;}
.y61_c00238{bottom:197.120000pt;}
.y60_c00238{bottom:197.760000pt;}
.y68_c00238{bottom:199.680000pt;}
.y5f_c00238{bottom:201.600000pt;}
.y6a_c00238{bottom:202.240000pt;}
.y69_c00238{bottom:215.680000pt;}
.y5d_c00238{bottom:236.160000pt;}
.y66_c00238{bottom:238.080000pt;}
.y5e_c00238{bottom:238.720000pt;}
.y5c_c00238{bottom:239.360000pt;}
.y65_c00238{bottom:240.000000pt;}
.y67_c00238{bottom:240.640000pt;}
.y5a_c00238{bottom:273.920000pt;}
.y59_c00238{bottom:275.200000pt;}
.y64_c00238{bottom:275.840000pt;}
.y58_c00238{bottom:276.480000pt;}
.y5b_c00238{bottom:277.760000pt;}
.y57_c00238{bottom:278.400000pt;}
.y56_c00238{bottom:312.320000pt;}
.y63_c00238{bottom:314.240000pt;}
.y55_c00238{bottom:315.520000pt;}
.y62_c00238{bottom:317.440000pt;}
.y52_c00238{bottom:350.720000pt;}
.y53_c00238{bottom:351.360000pt;}
.y54_c00238{bottom:353.280000pt;}
.y51_c00238{bottom:353.920000pt;}
.y50_c00238{bottom:389.120000pt;}
.y4f_c00238{bottom:392.320000pt;}
.y4b_c00238{bottom:417.280000pt;}
.y4a_c00238{bottom:419.200000pt;}
.y4d_c00238{bottom:419.840000pt;}
.y49_c00238{bottom:420.480000pt;}
.y4c_c00238{bottom:421.120000pt;}
.y4e_c00238{bottom:421.760000pt;}
.y44_c00238{bottom:456.320000pt;}
.y46_c00238{bottom:456.960000pt;}
.y45_c00238{bottom:457.600000pt;}
.y43_c00238{bottom:458.240000pt;}
.y47_c00238{bottom:458.880000pt;}
.y48_c00238{bottom:460.160000pt;}
.y40_c00238{bottom:494.720000pt;}
.y41_c00238{bottom:497.920000pt;}
.y42_c00238{bottom:498.560000pt;}
.y39_c00238{bottom:523.520000pt;}
.y3b_c00238{bottom:524.160000pt;}
.y3c_c00238{bottom:524.800000pt;}
.y38_c00238{bottom:525.440000pt;}
.y3e_c00238{bottom:526.080000pt;}
.y3a_c00238{bottom:526.720000pt;}
.y3d_c00238{bottom:527.360000pt;}
.y3f_c00238{bottom:528.000000pt;}
.y35_c00238{bottom:562.560000pt;}
.y37_c00238{bottom:563.840000pt;}
.y34_c00238{bottom:564.480000pt;}
.y36_c00238{bottom:565.760000pt;}
.y2f_c00238{bottom:600.960000pt;}
.y2e_c00238{bottom:601.600000pt;}
.y32_c00238{bottom:602.880000pt;}
.y33_c00238{bottom:603.520000pt;}
.y31_c00238{bottom:604.160000pt;}
.y30_c00238{bottom:604.800000pt;}
.y29_c00238{bottom:639.360000pt;}
.y2a_c00238{bottom:640.000000pt;}
.y28_c00238{bottom:640.640000pt;}
.y2c_c00238{bottom:641.280000pt;}
.y2d_c00238{bottom:643.200000pt;}
.y2b_c00238{bottom:643.840000pt;}
.y27_c00238{bottom:677.760000pt;}
.y26_c00238{bottom:680.960000pt;}
.y22_c00238{bottom:706.560000pt;}
.y24_c00238{bottom:707.200000pt;}
.y21_c00238{bottom:707.840000pt;}
.y25_c00238{bottom:708.480000pt;}
.y23_c00238{bottom:709.760000pt;}
.y1d_c00238{bottom:744.960000pt;}
.y1c_c00238{bottom:745.600000pt;}
.y1f_c00238{bottom:746.240000pt;}
.y1e_c00238{bottom:747.520000pt;}
.y20_c00238{bottom:748.160000pt;}
.y1a_c00238{bottom:773.760000pt;}
.y19_c00238{bottom:783.360000pt;}
.y16_c00238{bottom:784.640000pt;}
.y1b_c00238{bottom:785.280000pt;}
.y18_c00238{bottom:785.920000pt;}
.y17_c00238{bottom:786.560000pt;}
.y12_c00238{bottom:821.120000pt;}
.y14_c00238{bottom:822.400000pt;}
.y11_c00238{bottom:823.040000pt;}
.y15_c00238{bottom:823.680000pt;}
.y13_c00238{bottom:824.960000pt;}
.ye_c00238{bottom:860.160000pt;}
.y10_c00238{bottom:860.800000pt;}
.yd_c00238{bottom:862.080000pt;}
.yf_c00238{bottom:862.720000pt;}
.y9_c00238{bottom:888.320000pt;}
.y7_c00238{bottom:888.960000pt;}
.ya_c00238{bottom:889.600000pt;}
.yc_c00238{bottom:890.240000pt;}
.yb_c00238{bottom:890.880000pt;}
.y8_c00238{bottom:891.520000pt;}
.y3_c00238{bottom:926.080000pt;}
.y4_c00238{bottom:927.360000pt;}
.y6_c00238{bottom:928.000000pt;}
.y2_c00238{bottom:928.640000pt;}
.y5_c00238{bottom:929.280000pt;}
.y1_c00238{bottom:970.880000pt;}
.h11_c00238{height:2.303750pt;}
.he_c00238{height:27.645000pt;}
.h10_c00238{height:29.948750pt;}
.hb_c00238{height:36.860000pt;}
.h4_c00238{height:39.163750pt;}
.h5_c00238{height:41.467500pt;}
.h3_c00238{height:43.771250pt;}
.h6_c00238{height:46.075000pt;}
.h7_c00238{height:48.378750pt;}
.h9_c00238{height:50.682500pt;}
.hf_c00238{height:52.986250pt;}
.hd_c00238{height:55.290000pt;}
.ha_c00238{height:57.593750pt;}
.h8_c00238{height:59.897500pt;}
.h2_c00238{height:62.201250pt;}
.hc_c00238{height:87.542500pt;}
.h1_c00238{height:1020.666667pt;}
.h0_c00238{height:1020.800000pt;}
.w0_c00238{width:695.040000pt;}
.w1_c00238{width:695.333333pt;}
.x0_c00238{left:0.000000pt;}
.x2_c00238{left:64.640000pt;}
.x16_c00238{left:65.920000pt;}
.x28_c00238{left:67.200000pt;}
.x35_c00238{left:68.480000pt;}
.x3_c00238{left:128.640000pt;}
.xa_c00238{left:129.920000pt;}
.x36_c00238{left:131.200000pt;}
.x2b_c00238{left:132.480000pt;}
.x17_c00238{left:167.040000pt;}
.xb_c00238{left:168.320000pt;}
.x3c_c00238{left:170.240000pt;}
.xe_c00238{left:178.560000pt;}
.x37_c00238{left:179.840000pt;}
.x18_c00238{left:207.360000pt;}
.x2d_c00238{left:208.640000pt;}
.x1d_c00238{left:215.680000pt;}
.xc_c00238{left:216.960000pt;}
.x2f_c00238{left:218.880000pt;}
.x32_c00238{left:238.080000pt;}
.x1b_c00238{left:245.760000pt;}
.x31_c00238{left:247.040000pt;}
.x4_c00238{left:255.360000pt;}
.x1e_c00238{left:256.640000pt;}
.x13_c00238{left:265.600000pt;}
.x3d_c00238{left:266.880000pt;}
.xf_c00238{left:273.920000pt;}
.x2c_c00238{left:286.080000pt;}
.x29_c00238{left:295.040000pt;}
.x5_c00238{left:303.360000pt;}
.x10_c00238{left:312.960000pt;}
.x2e_c00238{left:324.480000pt;}
.x1f_c00238{left:332.160000pt;}
.x40_c00238{left:334.080000pt;}
.x3b_c00238{left:353.280000pt;}
.x23_c00238{left:360.960000pt;}
.x33_c00238{left:362.240000pt;}
.x38_c00238{left:372.480000pt;}
.xd_c00238{left:380.800000pt;}
.x41_c00238{left:382.080000pt;}
.x11_c00238{left:389.760000pt;}
.x24_c00238{left:400.000000pt;}
.x19_c00238{left:409.600000pt;}
.x14_c00238{left:428.160000pt;}
.x2a_c00238{left:429.440000pt;}
.x12_c00238{left:438.400000pt;}
.x30_c00238{left:447.360000pt;}
.x3e_c00238{left:497.920000pt;}
.x6_c00238{left:506.240000pt;}
.x39_c00238{left:524.800000pt;}
.x34_c00238{left:546.560000pt;}
.x7_c00238{left:552.960000pt;}
.x1a_c00238{left:554.240000pt;}
.x20_c00238{left:563.840000pt;}
.x8_c00238{left:582.400000pt;}
.x25_c00238{left:583.680000pt;}
.x21_c00238{left:592.640000pt;}
.x3a_c00238{left:609.920000pt;}
.x1c_c00238{left:611.200000pt;}
.x3f_c00238{left:612.480000pt;}
.x1_c00238{left:613.760000pt;}
.x9_c00238{left:619.520000pt;}
.x26_c00238{left:620.800000pt;}
.x42_c00238{left:622.080000pt;}
.x22_c00238{left:630.400000pt;}
.x15_c00238{left:637.440000pt;}
.x27_c00238{left:638.720000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_fe13444f44a4e935ec74ec3e.woff2')format("woff");}.ff1_c00239{font-family:ff1_c00239;line-height:1.109863;font-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_c00239{transform:matrix(0.127200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127200,0.000000,0.000000,0.250000,0,0);}
.m2b_c00239{transform:matrix(0.237300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237300,0.000000,0.000000,0.250000,0,0);}
.m4b_c00239{transform:matrix(0.244350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244350,0.000000,0.000000,0.250000,0,0);}
.m2a_c00239{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);}
.m3b_c00239{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_c00239{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00239{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m4_c00239{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);}
.m47_c00239{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m16_c00239{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00239{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.ma_c00239{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00239{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m10_c00239{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);}
.m27_c00239{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00239{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m32_c00239{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mb_c00239{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00239{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2_c00239{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m11_c00239{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00239{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00239{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m7_c00239{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m29_c00239{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m49_c00239{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m21_c00239{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m40_c00239{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m23_c00239{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.md_c00239{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m9_c00239{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m22_c00239{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00239{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m31_c00239{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m19_c00239{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.me_c00239{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m1_c00239{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.mc_c00239{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m18_c00239{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m20_c00239{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);}
.m3_c00239{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m37_c00239{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);}
.m2d_c00239{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);}
.m36_c00239{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00239{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);}
.m4c_c00239{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);}
.m3f_c00239{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00239{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m33_c00239{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m38_c00239{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);}
.m3c_c00239{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00239{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m28_c00239{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);}
.mf_c00239{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m50_c00239{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m44_c00239{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00239{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);}
.m48_c00239{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00239{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m35_c00239{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);}
.m4e_c00239{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m15_c00239{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);}
.m12_c00239{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m6_c00239{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);}
.m24_c00239{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m25_c00239{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);}
.m5_c00239{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m14_c00239{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);}
.m30_c00239{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00239{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00239{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00239{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m41_c00239{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m43_c00239{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m42_c00239{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m39_c00239{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m45_c00239{transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);}
.m34_c00239{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m26_c00239{transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00239{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.m46_c00239{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.v0_c00239{vertical-align:0.000000px;}
.ls0_c00239{letter-spacing:0.000000px;}
.sc__c00239{text-shadow:none;}
.sc0_c00239{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00239{-webkit-text-stroke:0px transparent;}
.sc0_c00239{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00239{word-spacing:0.000000px;}
.ws0_c00239{word-spacing:23.460270px;}
.ws1_c00239{word-spacing:56.302502px;}
._0_c00239{width:88.204262px;}
.fc0_c00239{color:transparent;}
.fse_c00239{font-size:34.560000px;}
.fs4_c00239{font-size:37.440000px;}
.fs10_c00239{font-size:40.320000px;}
.fsa_c00239{font-size:46.080000px;}
.fs9_c00239{font-size:48.960000px;}
.fs2_c00239{font-size:51.840000px;}
.fs7_c00239{font-size:54.720000px;}
.fsb_c00239{font-size:57.600000px;}
.fs1_c00239{font-size:60.480000px;}
.fs8_c00239{font-size:63.360000px;}
.fs6_c00239{font-size:66.240000px;}
.fsc_c00239{font-size:69.120000px;}
.fsd_c00239{font-size:72.000000px;}
.fs3_c00239{font-size:74.880000px;}
.fsf_c00239{font-size:77.760000px;}
.fs0_c00239{font-size:80.640000px;}
.fs5_c00239{font-size:109.440000px;}
.y0_c00239{bottom:0.000000px;}
.y7d_c00239{bottom:42.480000px;}
.y7e_c00239{bottom:43.200000px;}
.y80_c00239{bottom:44.640000px;}
.y81_c00239{bottom:45.360000px;}
.y7f_c00239{bottom:46.080000px;}
.y7c_c00239{bottom:47.520000px;}
.y7b_c00239{bottom:48.240000px;}
.y79_c00239{bottom:85.680000px;}
.y77_c00239{bottom:86.400000px;}
.y78_c00239{bottom:87.840000px;}
.y7a_c00239{bottom:89.280000px;}
.y76_c00239{bottom:92.160000px;}
.y71_c00239{bottom:128.880000px;}
.y74_c00239{bottom:130.320000px;}
.y73_c00239{bottom:131.040000px;}
.y72_c00239{bottom:132.480000px;}
.y75_c00239{bottom:133.200000px;}
.y70_c00239{bottom:133.920000px;}
.y6b_c00239{bottom:173.520000px;}
.y6c_c00239{bottom:175.680000px;}
.y6d_c00239{bottom:176.400000px;}
.y6a_c00239{bottom:177.120000px;}
.y67_c00239{bottom:203.760000px;}
.y68_c00239{bottom:204.480000px;}
.y69_c00239{bottom:205.920000px;}
.y6f_c00239{bottom:207.360000px;}
.y6e_c00239{bottom:208.080000px;}
.y65_c00239{bottom:208.800000px;}
.y66_c00239{bottom:209.520000px;}
.y64_c00239{bottom:241.920000px;}
.y62_c00239{bottom:248.400000px;}
.y60_c00239{bottom:249.120000px;}
.y63_c00239{bottom:250.560000px;}
.y5f_c00239{bottom:251.280000px;}
.y61_c00239{bottom:252.000000px;}
.y5e_c00239{bottom:291.600000px;}
.y5a_c00239{bottom:293.040000px;}
.y5b_c00239{bottom:294.480000px;}
.y5c_c00239{bottom:295.200000px;}
.y5d_c00239{bottom:295.920000px;}
.y57_c00239{bottom:334.800000px;}
.y58_c00239{bottom:336.240000px;}
.y59_c00239{bottom:336.960000px;}
.y56_c00239{bottom:340.560000px;}
.y53_c00239{bottom:378.000000px;}
.y52_c00239{bottom:380.160000px;}
.y54_c00239{bottom:380.880000px;}
.y51_c00239{bottom:382.320000px;}
.y55_c00239{bottom:383.040000px;}
.y50_c00239{bottom:414.000000px;}
.y4e_c00239{bottom:421.920000px;}
.y4d_c00239{bottom:422.640000px;}
.y4c_c00239{bottom:424.080000px;}
.y4b_c00239{bottom:424.800000px;}
.y4f_c00239{bottom:425.520000px;}
.y48_c00239{bottom:464.400000px;}
.y46_c00239{bottom:466.560000px;}
.y47_c00239{bottom:468.720000px;}
.y44_c00239{bottom:496.800000px;}
.y4a_c00239{bottom:498.240000px;}
.y45_c00239{bottom:498.960000px;}
.y49_c00239{bottom:499.680000px;}
.y43_c00239{bottom:500.400000px;}
.y40_c00239{bottom:540.000000px;}
.y42_c00239{bottom:540.720000px;}
.y3e_c00239{bottom:542.160000px;}
.y3f_c00239{bottom:542.880000px;}
.y41_c00239{bottom:543.600000px;}
.y3b_c00239{bottom:583.200000px;}
.y3c_c00239{bottom:583.920000px;}
.y3a_c00239{bottom:584.640000px;}
.y39_c00239{bottom:585.360000px;}
.y38_c00239{bottom:586.080000px;}
.y3d_c00239{bottom:586.800000px;}
.y35_c00239{bottom:626.400000px;}
.y34_c00239{bottom:627.120000px;}
.y37_c00239{bottom:627.840000px;}
.y33_c00239{bottom:628.560000px;}
.y36_c00239{bottom:630.000000px;}
.y30_c00239{bottom:669.600000px;}
.y31_c00239{bottom:670.320000px;}
.y32_c00239{bottom:671.040000px;}
.y2f_c00239{bottom:671.760000px;}
.y2c_c00239{bottom:712.080000px;}
.y2d_c00239{bottom:713.520000px;}
.y2b_c00239{bottom:714.240000px;}
.y2e_c00239{bottom:716.400000px;}
.y26_c00239{bottom:755.280000px;}
.y2a_c00239{bottom:756.720000px;}
.y25_c00239{bottom:757.440000px;}
.y28_c00239{bottom:758.160000px;}
.y27_c00239{bottom:758.880000px;}
.y29_c00239{bottom:759.600000px;}
.y21_c00239{bottom:798.480000px;}
.y22_c00239{bottom:799.200000px;}
.y20_c00239{bottom:799.920000px;}
.y24_c00239{bottom:801.360000px;}
.y23_c00239{bottom:802.080000px;}
.y1c_c00239{bottom:841.680000px;}
.y1e_c00239{bottom:842.400000px;}
.y1b_c00239{bottom:843.840000px;}
.y1f_c00239{bottom:844.560000px;}
.y1d_c00239{bottom:846.000000px;}
.y18_c00239{bottom:884.160000px;}
.y17_c00239{bottom:884.880000px;}
.y1a_c00239{bottom:886.320000px;}
.y16_c00239{bottom:887.040000px;}
.y19_c00239{bottom:888.480000px;}
.y14_c00239{bottom:928.080000px;}
.y13_c00239{bottom:928.800000px;}
.y10_c00239{bottom:930.240000px;}
.y15_c00239{bottom:930.960000px;}
.y12_c00239{bottom:931.680000px;}
.y11_c00239{bottom:932.400000px;}
.ye_c00239{bottom:972.720000px;}
.yf_c00239{bottom:973.440000px;}
.yd_c00239{bottom:974.880000px;}
.y9_c00239{bottom:1004.400000px;}
.y8_c00239{bottom:1005.120000px;}
.yc_c00239{bottom:1006.560000px;}
.yb_c00239{bottom:1007.280000px;}
.ya_c00239{bottom:1008.000000px;}
.y7_c00239{bottom:1036.080000px;}
.y5_c00239{bottom:1047.600000px;}
.y4_c00239{bottom:1048.320000px;}
.y2_c00239{bottom:1049.040000px;}
.y6_c00239{bottom:1050.480000px;}
.y3_c00239{bottom:1051.200000px;}
.y1_c00239{bottom:1092.960000px;}
.h10_c00239{height:31.100625px;}
.h6_c00239{height:33.692344px;}
.h12_c00239{height:36.284062px;}
.hc_c00239{height:41.467500px;}
.hb_c00239{height:44.059219px;}
.h4_c00239{height:46.650937px;}
.h9_c00239{height:49.242656px;}
.hd_c00239{height:51.834375px;}
.h3_c00239{height:54.426094px;}
.ha_c00239{height:57.017812px;}
.h8_c00239{height:59.609531px;}
.he_c00239{height:62.201250px;}
.hf_c00239{height:64.792969px;}
.h5_c00239{height:67.384687px;}
.h11_c00239{height:69.976406px;}
.h2_c00239{height:72.568125px;}
.h7_c00239{height:98.485312px;}
.h0_c00239{height:1154.880000px;}
.h1_c00239{height:1155.000000px;}
.w1_c00239{width:790.500000px;}
.w0_c00239{width:790.560000px;}
.x0_c00239{left:0.000000px;}
.x2_c00239{left:73.440000px;}
.x22_c00239{left:74.880000px;}
.x2f_c00239{left:76.320000px;}
.x35_c00239{left:77.760000px;}
.x3_c00239{left:146.880000px;}
.x16_c00239{left:187.920000px;}
.x4_c00239{left:190.080000px;}
.x29_c00239{left:200.880000px;}
.x30_c00239{left:212.400000px;}
.x25_c00239{left:222.480000px;}
.x5_c00239{left:233.280000px;}
.x13_c00239{left:244.080000px;}
.x31_c00239{left:253.440000px;}
.x1f_c00239{left:254.880000px;}
.x1d_c00239{left:264.960000px;}
.x26_c00239{left:276.480000px;}
.xc_c00239{left:296.640000px;}
.x32_c00239{left:298.800000px;}
.x2a_c00239{left:308.880000px;}
.x6_c00239{left:319.680000px;}
.x14_c00239{left:329.760000px;}
.x19_c00239{left:340.560000px;}
.xd_c00239{left:342.000000px;}
.x7_c00239{left:374.400000px;}
.x15_c00239{left:384.480000px;}
.x1e_c00239{left:394.560000px;}
.x2c_c00239{left:406.080000px;}
.x8_c00239{left:416.160000px;}
.x27_c00239{left:426.960000px;}
.x23_c00239{left:428.400000px;}
.xe_c00239{left:437.760000px;}
.x2d_c00239{left:460.080000px;}
.x1a_c00239{left:470.880000px;}
.xf_c00239{left:481.680000px;}
.x20_c00239{left:492.480000px;}
.x9_c00239{left:514.080000px;}
.x1b_c00239{left:524.880000px;}
.x28_c00239{left:527.040000px;}
.x21_c00239{left:546.480000px;}
.x2e_c00239{left:556.560000px;}
.x10_c00239{left:568.080000px;}
.xa_c00239{left:588.960000px;}
.x18_c00239{left:590.400000px;}
.x33_c00239{left:621.360000px;}
.x11_c00239{left:622.800000px;}
.x17_c00239{left:632.880000px;}
.x12_c00239{left:655.200000px;}
.x2b_c00239{left:686.880000px;}
.x1_c00239{left:691.200000px;}
.x34_c00239{left:696.240000px;}
.xb_c00239{left:697.680000px;}
.x24_c00239{left:717.120000px;}
.x1c_c00239{left:718.560000px;}
@media print{
.v0_c00239{vertical-align:0.000000pt;}
.ls0_c00239{letter-spacing:0.000000pt;}
.ws2_c00239{word-spacing:0.000000pt;}
.ws0_c00239{word-spacing:20.853573pt;}
.ws1_c00239{word-spacing:50.046669pt;}
._0_c00239{width:78.403789pt;}
.fse_c00239{font-size:30.720000pt;}
.fs4_c00239{font-size:33.280000pt;}
.fs10_c00239{font-size:35.840000pt;}
.fsa_c00239{font-size:40.960000pt;}
.fs9_c00239{font-size:43.520000pt;}
.fs2_c00239{font-size:46.080000pt;}
.fs7_c00239{font-size:48.640000pt;}
.fsb_c00239{font-size:51.200000pt;}
.fs1_c00239{font-size:53.760000pt;}
.fs8_c00239{font-size:56.320000pt;}
.fs6_c00239{font-size:58.880000pt;}
.fsc_c00239{font-size:61.440000pt;}
.fsd_c00239{font-size:64.000000pt;}
.fs3_c00239{font-size:66.560000pt;}
.fsf_c00239{font-size:69.120000pt;}
.fs0_c00239{font-size:71.680000pt;}
.fs5_c00239{font-size:97.280000pt;}
.y0_c00239{bottom:0.000000pt;}
.y7d_c00239{bottom:37.760000pt;}
.y7e_c00239{bottom:38.400000pt;}
.y80_c00239{bottom:39.680000pt;}
.y81_c00239{bottom:40.320000pt;}
.y7f_c00239{bottom:40.960000pt;}
.y7c_c00239{bottom:42.240000pt;}
.y7b_c00239{bottom:42.880000pt;}
.y79_c00239{bottom:76.160000pt;}
.y77_c00239{bottom:76.800000pt;}
.y78_c00239{bottom:78.080000pt;}
.y7a_c00239{bottom:79.360000pt;}
.y76_c00239{bottom:81.920000pt;}
.y71_c00239{bottom:114.560000pt;}
.y74_c00239{bottom:115.840000pt;}
.y73_c00239{bottom:116.480000pt;}
.y72_c00239{bottom:117.760000pt;}
.y75_c00239{bottom:118.400000pt;}
.y70_c00239{bottom:119.040000pt;}
.y6b_c00239{bottom:154.240000pt;}
.y6c_c00239{bottom:156.160000pt;}
.y6d_c00239{bottom:156.800000pt;}
.y6a_c00239{bottom:157.440000pt;}
.y67_c00239{bottom:181.120000pt;}
.y68_c00239{bottom:181.760000pt;}
.y69_c00239{bottom:183.040000pt;}
.y6f_c00239{bottom:184.320000pt;}
.y6e_c00239{bottom:184.960000pt;}
.y65_c00239{bottom:185.600000pt;}
.y66_c00239{bottom:186.240000pt;}
.y64_c00239{bottom:215.040000pt;}
.y62_c00239{bottom:220.800000pt;}
.y60_c00239{bottom:221.440000pt;}
.y63_c00239{bottom:222.720000pt;}
.y5f_c00239{bottom:223.360000pt;}
.y61_c00239{bottom:224.000000pt;}
.y5e_c00239{bottom:259.200000pt;}
.y5a_c00239{bottom:260.480000pt;}
.y5b_c00239{bottom:261.760000pt;}
.y5c_c00239{bottom:262.400000pt;}
.y5d_c00239{bottom:263.040000pt;}
.y57_c00239{bottom:297.600000pt;}
.y58_c00239{bottom:298.880000pt;}
.y59_c00239{bottom:299.520000pt;}
.y56_c00239{bottom:302.720000pt;}
.y53_c00239{bottom:336.000000pt;}
.y52_c00239{bottom:337.920000pt;}
.y54_c00239{bottom:338.560000pt;}
.y51_c00239{bottom:339.840000pt;}
.y55_c00239{bottom:340.480000pt;}
.y50_c00239{bottom:368.000000pt;}
.y4e_c00239{bottom:375.040000pt;}
.y4d_c00239{bottom:375.680000pt;}
.y4c_c00239{bottom:376.960000pt;}
.y4b_c00239{bottom:377.600000pt;}
.y4f_c00239{bottom:378.240000pt;}
.y48_c00239{bottom:412.800000pt;}
.y46_c00239{bottom:414.720000pt;}
.y47_c00239{bottom:416.640000pt;}
.y44_c00239{bottom:441.600000pt;}
.y4a_c00239{bottom:442.880000pt;}
.y45_c00239{bottom:443.520000pt;}
.y49_c00239{bottom:444.160000pt;}
.y43_c00239{bottom:444.800000pt;}
.y40_c00239{bottom:480.000000pt;}
.y42_c00239{bottom:480.640000pt;}
.y3e_c00239{bottom:481.920000pt;}
.y3f_c00239{bottom:482.560000pt;}
.y41_c00239{bottom:483.200000pt;}
.y3b_c00239{bottom:518.400000pt;}
.y3c_c00239{bottom:519.040000pt;}
.y3a_c00239{bottom:519.680000pt;}
.y39_c00239{bottom:520.320000pt;}
.y38_c00239{bottom:520.960000pt;}
.y3d_c00239{bottom:521.600000pt;}
.y35_c00239{bottom:556.800000pt;}
.y34_c00239{bottom:557.440000pt;}
.y37_c00239{bottom:558.080000pt;}
.y33_c00239{bottom:558.720000pt;}
.y36_c00239{bottom:560.000000pt;}
.y30_c00239{bottom:595.200000pt;}
.y31_c00239{bottom:595.840000pt;}
.y32_c00239{bottom:596.480000pt;}
.y2f_c00239{bottom:597.120000pt;}
.y2c_c00239{bottom:632.960000pt;}
.y2d_c00239{bottom:634.240000pt;}
.y2b_c00239{bottom:634.880000pt;}
.y2e_c00239{bottom:636.800000pt;}
.y26_c00239{bottom:671.360000pt;}
.y2a_c00239{bottom:672.640000pt;}
.y25_c00239{bottom:673.280000pt;}
.y28_c00239{bottom:673.920000pt;}
.y27_c00239{bottom:674.560000pt;}
.y29_c00239{bottom:675.200000pt;}
.y21_c00239{bottom:709.760000pt;}
.y22_c00239{bottom:710.400000pt;}
.y20_c00239{bottom:711.040000pt;}
.y24_c00239{bottom:712.320000pt;}
.y23_c00239{bottom:712.960000pt;}
.y1c_c00239{bottom:748.160000pt;}
.y1e_c00239{bottom:748.800000pt;}
.y1b_c00239{bottom:750.080000pt;}
.y1f_c00239{bottom:750.720000pt;}
.y1d_c00239{bottom:752.000000pt;}
.y18_c00239{bottom:785.920000pt;}
.y17_c00239{bottom:786.560000pt;}
.y1a_c00239{bottom:787.840000pt;}
.y16_c00239{bottom:788.480000pt;}
.y19_c00239{bottom:789.760000pt;}
.y14_c00239{bottom:824.960000pt;}
.y13_c00239{bottom:825.600000pt;}
.y10_c00239{bottom:826.880000pt;}
.y15_c00239{bottom:827.520000pt;}
.y12_c00239{bottom:828.160000pt;}
.y11_c00239{bottom:828.800000pt;}
.ye_c00239{bottom:864.640000pt;}
.yf_c00239{bottom:865.280000pt;}
.yd_c00239{bottom:866.560000pt;}
.y9_c00239{bottom:892.800000pt;}
.y8_c00239{bottom:893.440000pt;}
.yc_c00239{bottom:894.720000pt;}
.yb_c00239{bottom:895.360000pt;}
.ya_c00239{bottom:896.000000pt;}
.y7_c00239{bottom:920.960000pt;}
.y5_c00239{bottom:931.200000pt;}
.y4_c00239{bottom:931.840000pt;}
.y2_c00239{bottom:932.480000pt;}
.y6_c00239{bottom:933.760000pt;}
.y3_c00239{bottom:934.400000pt;}
.y1_c00239{bottom:971.520000pt;}
.h10_c00239{height:27.645000pt;}
.h6_c00239{height:29.948750pt;}
.h12_c00239{height:32.252500pt;}
.hc_c00239{height:36.860000pt;}
.hb_c00239{height:39.163750pt;}
.h4_c00239{height:41.467500pt;}
.h9_c00239{height:43.771250pt;}
.hd_c00239{height:46.075000pt;}
.h3_c00239{height:48.378750pt;}
.ha_c00239{height:50.682500pt;}
.h8_c00239{height:52.986250pt;}
.he_c00239{height:55.290000pt;}
.hf_c00239{height:57.593750pt;}
.h5_c00239{height:59.897500pt;}
.h11_c00239{height:62.201250pt;}
.h2_c00239{height:64.505000pt;}
.h7_c00239{height:87.542500pt;}
.h0_c00239{height:1026.560000pt;}
.h1_c00239{height:1026.666667pt;}
.w1_c00239{width:702.666667pt;}
.w0_c00239{width:702.720000pt;}
.x0_c00239{left:0.000000pt;}
.x2_c00239{left:65.280000pt;}
.x22_c00239{left:66.560000pt;}
.x2f_c00239{left:67.840000pt;}
.x35_c00239{left:69.120000pt;}
.x3_c00239{left:130.560000pt;}
.x16_c00239{left:167.040000pt;}
.x4_c00239{left:168.960000pt;}
.x29_c00239{left:178.560000pt;}
.x30_c00239{left:188.800000pt;}
.x25_c00239{left:197.760000pt;}
.x5_c00239{left:207.360000pt;}
.x13_c00239{left:216.960000pt;}
.x31_c00239{left:225.280000pt;}
.x1f_c00239{left:226.560000pt;}
.x1d_c00239{left:235.520000pt;}
.x26_c00239{left:245.760000pt;}
.xc_c00239{left:263.680000pt;}
.x32_c00239{left:265.600000pt;}
.x2a_c00239{left:274.560000pt;}
.x6_c00239{left:284.160000pt;}
.x14_c00239{left:293.120000pt;}
.x19_c00239{left:302.720000pt;}
.xd_c00239{left:304.000000pt;}
.x7_c00239{left:332.800000pt;}
.x15_c00239{left:341.760000pt;}
.x1e_c00239{left:350.720000pt;}
.x2c_c00239{left:360.960000pt;}
.x8_c00239{left:369.920000pt;}
.x27_c00239{left:379.520000pt;}
.x23_c00239{left:380.800000pt;}
.xe_c00239{left:389.120000pt;}
.x2d_c00239{left:408.960000pt;}
.x1a_c00239{left:418.560000pt;}
.xf_c00239{left:428.160000pt;}
.x20_c00239{left:437.760000pt;}
.x9_c00239{left:456.960000pt;}
.x1b_c00239{left:466.560000pt;}
.x28_c00239{left:468.480000pt;}
.x21_c00239{left:485.760000pt;}
.x2e_c00239{left:494.720000pt;}
.x10_c00239{left:504.960000pt;}
.xa_c00239{left:523.520000pt;}
.x18_c00239{left:524.800000pt;}
.x33_c00239{left:552.320000pt;}
.x11_c00239{left:553.600000pt;}
.x17_c00239{left:562.560000pt;}
.x12_c00239{left:582.400000pt;}
.x2b_c00239{left:610.560000pt;}
.x1_c00239{left:614.400000pt;}
.x34_c00239{left:618.880000pt;}
.xb_c00239{left:620.160000pt;}
.x24_c00239{left:637.440000pt;}
.x1c_c00239{left:638.720000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a289d3adc2ac8c1593175c25.woff2')format("woff");}.ff1_c00240{font-family:ff1_c00240;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4e_c00240{transform:matrix(0.193150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193150,0.000000,0.000000,0.250000,0,0);}
.m38_c00240{transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);}
.m47_c00240{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m50_c00240{transform:matrix(0.241825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241825,0.000000,0.000000,0.250000,0,0);}
.m6_c00240{transform:matrix(0.244350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244350,0.000000,0.000000,0.250000,0,0);}
.m55_c00240{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m1a_c00240{transform:matrix(0.247325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247325,0.000000,0.000000,0.250000,0,0);}
.m3d_c00240{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m39_c00240{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);}
.m3a_c00240{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);}
.m2f_c00240{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m49_c00240{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);}
.m3f_c00240{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00240{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);}
.m34_c00240{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m16_c00240{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);}
.m2e_c00240{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m2_c00240{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m8_c00240{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_c00240{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);}
.m3c_c00240{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);}
.m2d_c00240{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m12_c00240{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00240{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.md_c00240{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m44_c00240{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m29_c00240{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m23_c00240{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m53_c00240{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m52_c00240{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.ma_c00240{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m21_c00240{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m24_c00240{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m42_c00240{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00240{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00240{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m28_c00240{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00240{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00240{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m22_c00240{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m27_c00240{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m7_c00240{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.mb_c00240{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m36_c00240{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);}
.m0_c00240{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m30_c00240{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m17_c00240{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m20_c00240{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);}
.m1d_c00240{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m35_c00240{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m1_c00240{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);}
.m32_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);}
.mf_c00240{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);}
.m5_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);}
.m14_c00240{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m31_c00240{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m37_c00240{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);}
.m4_c00240{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m9_c00240{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m10_c00240{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);}
.m33_c00240{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m15_c00240{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00240{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m26_c00240{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m41_c00240{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);}
.m3_c00240{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);}
.m18_c00240{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m43_c00240{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m11_c00240{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00240{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m25_c00240{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00240{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);}
.m4c_c00240{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00240{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m13_c00240{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00240{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m40_c00240{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m51_c00240{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.me_c00240{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);}
.m4d_c00240{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m19_c00240{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00240{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m54_c00240{transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);}
.m48_c00240{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.m45_c00240{transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);}
.m46_c00240{transform:matrix(0.877500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.877500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.877500,0.000000,0.000000,0.250000,0,0);}
.v0_c00240{vertical-align:0.000000px;}
.ls0_c00240{letter-spacing:0.000000px;}
.sc__c00240{text-shadow:none;}
.sc0_c00240{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00240{-webkit-text-stroke:0px transparent;}
.sc0_c00240{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00240{word-spacing:0.000000px;}
.ws0_c00240{word-spacing:18.082195px;}
.ws1_c00240{word-spacing:41.562824px;}
.fc0_c00240{color:transparent;}
.fs7_c00240{font-size:34.560000px;}
.fs8_c00240{font-size:43.200000px;}
.fs1_c00240{font-size:46.080000px;}
.fs3_c00240{font-size:48.960000px;}
.fs6_c00240{font-size:51.840000px;}
.fs4_c00240{font-size:54.720000px;}
.fs9_c00240{font-size:57.600000px;}
.fs0_c00240{font-size:60.480000px;}
.fsd_c00240{font-size:63.360000px;}
.fsc_c00240{font-size:66.240000px;}
.fsb_c00240{font-size:69.120000px;}
.fs2_c00240{font-size:72.000000px;}
.fs5_c00240{font-size:74.880000px;}
.fsa_c00240{font-size:77.760000px;}
.fsf_c00240{font-size:86.400000px;}
.fse_c00240{font-size:106.560000px;}
.y0_c00240{bottom:0.000000px;}
.y7f_c00240{bottom:24.480000px;}
.y7e_c00240{bottom:28.080000px;}
.y85_c00240{bottom:28.800000px;}
.y86_c00240{bottom:30.240000px;}
.y7d_c00240{bottom:31.680000px;}
.y7c_c00240{bottom:67.680000px;}
.y83_c00240{bottom:71.280000px;}
.y84_c00240{bottom:72.000000px;}
.y7b_c00240{bottom:72.720000px;}
.y7a_c00240{bottom:73.440000px;}
.y78_c00240{bottom:111.600000px;}
.y76_c00240{bottom:114.480000px;}
.y77_c00240{bottom:115.200000px;}
.y75_c00240{bottom:116.640000px;}
.y79_c00240{bottom:117.360000px;}
.y74_c00240{bottom:142.560000px;}
.y82_c00240{bottom:147.600000px;}
.y73_c00240{bottom:148.320000px;}
.y71_c00240{bottom:149.760000px;}
.y72_c00240{bottom:150.480000px;}
.y6f_c00240{bottom:187.920000px;}
.y80_c00240{bottom:190.800000px;}
.y70_c00240{bottom:191.520000px;}
.y6d_c00240{bottom:192.240000px;}
.y6e_c00240{bottom:192.960000px;}
.y81_c00240{bottom:193.680000px;}
.y6a_c00240{bottom:221.760000px;}
.y6c_c00240{bottom:225.360000px;}
.y67_c00240{bottom:231.120000px;}
.y69_c00240{bottom:233.280000px;}
.y6b_c00240{bottom:234.000000px;}
.y65_c00240{bottom:234.720000px;}
.y68_c00240{bottom:235.440000px;}
.y66_c00240{bottom:236.160000px;}
.y44_c00240{bottom:274.320000px;}
.y63_c00240{bottom:276.480000px;}
.y64_c00240{bottom:277.920000px;}
.y42_c00240{bottom:278.640000px;}
.y43_c00240{bottom:280.080000px;}
.y41_c00240{bottom:317.520000px;}
.y62_c00240{bottom:319.680000px;}
.y60_c00240{bottom:320.400000px;}
.y61_c00240{bottom:321.120000px;}
.y3f_c00240{bottom:321.840000px;}
.y40_c00240{bottom:322.560000px;}
.y3e_c00240{bottom:360.720000px;}
.y5f_c00240{bottom:362.880000px;}
.y3c_c00240{bottom:365.040000px;}
.y3d_c00240{bottom:365.760000px;}
.y3b_c00240{bottom:403.920000px;}
.y5e_c00240{bottom:405.360000px;}
.y5c_c00240{bottom:406.080000px;}
.y5d_c00240{bottom:406.800000px;}
.y3a_c00240{bottom:408.240000px;}
.y36_c00240{bottom:447.120000px;}
.y39_c00240{bottom:447.840000px;}
.y37_c00240{bottom:448.560000px;}
.y5a_c00240{bottom:449.280000px;}
.y34_c00240{bottom:450.000000px;}
.y38_c00240{bottom:450.720000px;}
.y5b_c00240{bottom:451.440000px;}
.y35_c00240{bottom:452.160000px;}
.y33_c00240{bottom:490.320000px;}
.y58_c00240{bottom:491.760000px;}
.y57_c00240{bottom:492.480000px;}
.y59_c00240{bottom:493.920000px;}
.y32_c00240{bottom:494.640000px;}
.y31_c00240{bottom:533.520000px;}
.y56_c00240{bottom:534.960000px;}
.y2f_c00240{bottom:535.680000px;}
.y30_c00240{bottom:537.840000px;}
.y2c_c00240{bottom:577.440000px;}
.y2e_c00240{bottom:578.160000px;}
.y2b_c00240{bottom:578.880000px;}
.y2a_c00240{bottom:579.600000px;}
.y55_c00240{bottom:580.320000px;}
.y2d_c00240{bottom:581.040000px;}
.y28_c00240{bottom:621.360000px;}
.y26_c00240{bottom:622.080000px;}
.y29_c00240{bottom:623.520000px;}
.y27_c00240{bottom:624.240000px;}
.y25_c00240{bottom:652.320000px;}
.y24_c00240{bottom:653.040000px;}
.y53_c00240{bottom:653.760000px;}
.y52_c00240{bottom:654.480000px;}
.y21_c00240{bottom:655.200000px;}
.y54_c00240{bottom:655.920000px;}
.y23_c00240{bottom:656.640000px;}
.y22_c00240{bottom:657.360000px;}
.y1e_c00240{bottom:696.240000px;}
.y50_c00240{bottom:696.960000px;}
.y1d_c00240{bottom:697.680000px;}
.y51_c00240{bottom:698.400000px;}
.y4f_c00240{bottom:699.120000px;}
.y20_c00240{bottom:699.840000px;}
.y1f_c00240{bottom:700.560000px;}
.y1c_c00240{bottom:739.440000px;}
.y4e_c00240{bottom:740.160000px;}
.y19_c00240{bottom:740.880000px;}
.y1b_c00240{bottom:743.040000px;}
.y1a_c00240{bottom:743.760000px;}
.y18_c00240{bottom:783.360000px;}
.y16_c00240{bottom:785.520000px;}
.y17_c00240{bottom:786.960000px;}
.y4c_c00240{bottom:825.840000px;}
.y14_c00240{bottom:826.560000px;}
.y4b_c00240{bottom:827.280000px;}
.y4d_c00240{bottom:828.000000px;}
.y11_c00240{bottom:828.720000px;}
.y15_c00240{bottom:829.440000px;}
.y12_c00240{bottom:830.160000px;}
.y13_c00240{bottom:830.880000px;}
.y10_c00240{bottom:923.040000px;}
.ye_c00240{bottom:923.760000px;}
.yf_c00240{bottom:926.640000px;}
.yc_c00240{bottom:954.720000px;}
.y4a_c00240{bottom:955.440000px;}
.yd_c00240{bottom:956.880000px;}
.ya_c00240{bottom:957.600000px;}
.yb_c00240{bottom:959.040000px;}
.y49_c00240{bottom:997.200000px;}
.y7_c00240{bottom:997.920000px;}
.y9_c00240{bottom:998.640000px;}
.y6_c00240{bottom:1000.080000px;}
.y8_c00240{bottom:1001.520000px;}
.y48_c00240{bottom:1040.400000px;}
.y46_c00240{bottom:1041.120000px;}
.y3_c00240{bottom:1041.840000px;}
.y4_c00240{bottom:1042.560000px;}
.y1_c00240{bottom:1043.280000px;}
.y5_c00240{bottom:1044.000000px;}
.y47_c00240{bottom:1044.720000px;}
.y2_c00240{bottom:1045.440000px;}
.y45_c00240{bottom:1080.720000px;}
.h9_c00240{height:31.100625px;}
.ha_c00240{height:38.875781px;}
.h3_c00240{height:41.467500px;}
.h5_c00240{height:44.059219px;}
.h8_c00240{height:46.650937px;}
.h6_c00240{height:49.242656px;}
.hb_c00240{height:51.834375px;}
.h2_c00240{height:54.426094px;}
.hf_c00240{height:57.017812px;}
.he_c00240{height:59.609531px;}
.hd_c00240{height:62.201250px;}
.h4_c00240{height:64.792969px;}
.h7_c00240{height:67.384687px;}
.hc_c00240{height:69.976406px;}
.h11_c00240{height:77.751563px;}
.h10_c00240{height:95.893594px;}
.h1_c00240{height:1151.250000px;}
.h0_c00240{height:1151.280000px;}
.w1_c00240{width:785.250000px;}
.w0_c00240{width:785.520000px;}
.x0_c00240{left:0.000000px;}
.x1_c00240{left:73.440000px;}
.x1f_c00240{left:74.880000px;}
.x3d_c00240{left:76.320000px;}
.x2_c00240{left:145.440000px;}
.x8_c00240{left:146.880000px;}
.x38_c00240{left:177.120000px;}
.x20_c00240{left:178.560000px;}
.x9_c00240{left:187.920000px;}
.xd_c00240{left:189.360000px;}
.x3a_c00240{left:199.440000px;}
.x3_c00240{left:200.880000px;}
.x10_c00240{left:221.040000px;}
.x11_c00240{left:231.840000px;}
.xa_c00240{left:233.280000px;}
.x6_c00240{left:244.080000px;}
.xc_c00240{left:245.520000px;}
.x18_c00240{left:254.880000px;}
.x1c_c00240{left:274.320000px;}
.x12_c00240{left:286.560000px;}
.x1a_c00240{left:298.080000px;}
.x3b_c00240{left:307.440000px;}
.x39_c00240{left:328.320000px;}
.x21_c00240{left:330.480000px;}
.x7_c00240{left:341.280000px;}
.x4_c00240{left:352.080000px;}
.x1b_c00240{left:362.880000px;}
.x1d_c00240{left:371.520000px;}
.x15_c00240{left:372.960000px;}
.x33_c00240{left:383.040000px;}
.x13_c00240{left:384.480000px;}
.xe_c00240{left:394.560000px;}
.x5_c00240{left:406.080000px;}
.xf_c00240{left:449.280000px;}
.x1e_c00240{left:459.360000px;}
.x16_c00240{left:470.880000px;}
.x34_c00240{left:480.240000px;}
.x3c_c00240{left:490.320000px;}
.x14_c00240{left:492.480000px;}
.x19_c00240{left:502.560000px;}
.x37_c00240{left:522.720000px;}
.x17_c00240{left:524.880000px;}
.x35_c00240{left:533.520000px;}
.xb_c00240{left:568.080000px;}
.x36_c00240{left:586.800000px;}
.x2c_c00240{left:588.240000px;}
.x23_c00240{left:589.680000px;}
.x30_c00240{left:599.760000px;}
.x24_c00240{left:613.440000px;}
.x2b_c00240{left:621.360000px;}
.x25_c00240{left:622.800000px;}
.x26_c00240{left:632.880000px;}
.x32_c00240{left:652.320000px;}
.x2e_c00240{left:653.760000px;}
.x27_c00240{left:655.200000px;}
.x2a_c00240{left:665.280000px;}
.x2d_c00240{left:686.880000px;}
.x22_c00240{left:693.360000px;}
.x2f_c00240{left:696.240000px;}
.x28_c00240{left:697.680000px;}
.x31_c00240{left:715.680000px;}
.x29_c00240{left:717.120000px;}
@media print{
.v0_c00240{vertical-align:0.000000pt;}
.ls0_c00240{letter-spacing:0.000000pt;}
.ws2_c00240{word-spacing:0.000000pt;}
.ws0_c00240{word-spacing:16.073062pt;}
.ws1_c00240{word-spacing:36.944732pt;}
.fs7_c00240{font-size:30.720000pt;}
.fs8_c00240{font-size:38.400000pt;}
.fs1_c00240{font-size:40.960000pt;}
.fs3_c00240{font-size:43.520000pt;}
.fs6_c00240{font-size:46.080000pt;}
.fs4_c00240{font-size:48.640000pt;}
.fs9_c00240{font-size:51.200000pt;}
.fs0_c00240{font-size:53.760000pt;}
.fsd_c00240{font-size:56.320000pt;}
.fsc_c00240{font-size:58.880000pt;}
.fsb_c00240{font-size:61.440000pt;}
.fs2_c00240{font-size:64.000000pt;}
.fs5_c00240{font-size:66.560000pt;}
.fsa_c00240{font-size:69.120000pt;}
.fsf_c00240{font-size:76.800000pt;}
.fse_c00240{font-size:94.720000pt;}
.y0_c00240{bottom:0.000000pt;}
.y7f_c00240{bottom:21.760000pt;}
.y7e_c00240{bottom:24.960000pt;}
.y85_c00240{bottom:25.600000pt;}
.y86_c00240{bottom:26.880000pt;}
.y7d_c00240{bottom:28.160000pt;}
.y7c_c00240{bottom:60.160000pt;}
.y83_c00240{bottom:63.360000pt;}
.y84_c00240{bottom:64.000000pt;}
.y7b_c00240{bottom:64.640000pt;}
.y7a_c00240{bottom:65.280000pt;}
.y78_c00240{bottom:99.200000pt;}
.y76_c00240{bottom:101.760000pt;}
.y77_c00240{bottom:102.400000pt;}
.y75_c00240{bottom:103.680000pt;}
.y79_c00240{bottom:104.320000pt;}
.y74_c00240{bottom:126.720000pt;}
.y82_c00240{bottom:131.200000pt;}
.y73_c00240{bottom:131.840000pt;}
.y71_c00240{bottom:133.120000pt;}
.y72_c00240{bottom:133.760000pt;}
.y6f_c00240{bottom:167.040000pt;}
.y80_c00240{bottom:169.600000pt;}
.y70_c00240{bottom:170.240000pt;}
.y6d_c00240{bottom:170.880000pt;}
.y6e_c00240{bottom:171.520000pt;}
.y81_c00240{bottom:172.160000pt;}
.y6a_c00240{bottom:197.120000pt;}
.y6c_c00240{bottom:200.320000pt;}
.y67_c00240{bottom:205.440000pt;}
.y69_c00240{bottom:207.360000pt;}
.y6b_c00240{bottom:208.000000pt;}
.y65_c00240{bottom:208.640000pt;}
.y68_c00240{bottom:209.280000pt;}
.y66_c00240{bottom:209.920000pt;}
.y44_c00240{bottom:243.840000pt;}
.y63_c00240{bottom:245.760000pt;}
.y64_c00240{bottom:247.040000pt;}
.y42_c00240{bottom:247.680000pt;}
.y43_c00240{bottom:248.960000pt;}
.y41_c00240{bottom:282.240000pt;}
.y62_c00240{bottom:284.160000pt;}
.y60_c00240{bottom:284.800000pt;}
.y61_c00240{bottom:285.440000pt;}
.y3f_c00240{bottom:286.080000pt;}
.y40_c00240{bottom:286.720000pt;}
.y3e_c00240{bottom:320.640000pt;}
.y5f_c00240{bottom:322.560000pt;}
.y3c_c00240{bottom:324.480000pt;}
.y3d_c00240{bottom:325.120000pt;}
.y3b_c00240{bottom:359.040000pt;}
.y5e_c00240{bottom:360.320000pt;}
.y5c_c00240{bottom:360.960000pt;}
.y5d_c00240{bottom:361.600000pt;}
.y3a_c00240{bottom:362.880000pt;}
.y36_c00240{bottom:397.440000pt;}
.y39_c00240{bottom:398.080000pt;}
.y37_c00240{bottom:398.720000pt;}
.y5a_c00240{bottom:399.360000pt;}
.y34_c00240{bottom:400.000000pt;}
.y38_c00240{bottom:400.640000pt;}
.y5b_c00240{bottom:401.280000pt;}
.y35_c00240{bottom:401.920000pt;}
.y33_c00240{bottom:435.840000pt;}
.y58_c00240{bottom:437.120000pt;}
.y57_c00240{bottom:437.760000pt;}
.y59_c00240{bottom:439.040000pt;}
.y32_c00240{bottom:439.680000pt;}
.y31_c00240{bottom:474.240000pt;}
.y56_c00240{bottom:475.520000pt;}
.y2f_c00240{bottom:476.160000pt;}
.y30_c00240{bottom:478.080000pt;}
.y2c_c00240{bottom:513.280000pt;}
.y2e_c00240{bottom:513.920000pt;}
.y2b_c00240{bottom:514.560000pt;}
.y2a_c00240{bottom:515.200000pt;}
.y55_c00240{bottom:515.840000pt;}
.y2d_c00240{bottom:516.480000pt;}
.y28_c00240{bottom:552.320000pt;}
.y26_c00240{bottom:552.960000pt;}
.y29_c00240{bottom:554.240000pt;}
.y27_c00240{bottom:554.880000pt;}
.y25_c00240{bottom:579.840000pt;}
.y24_c00240{bottom:580.480000pt;}
.y53_c00240{bottom:581.120000pt;}
.y52_c00240{bottom:581.760000pt;}
.y21_c00240{bottom:582.400000pt;}
.y54_c00240{bottom:583.040000pt;}
.y23_c00240{bottom:583.680000pt;}
.y22_c00240{bottom:584.320000pt;}
.y1e_c00240{bottom:618.880000pt;}
.y50_c00240{bottom:619.520000pt;}
.y1d_c00240{bottom:620.160000pt;}
.y51_c00240{bottom:620.800000pt;}
.y4f_c00240{bottom:621.440000pt;}
.y20_c00240{bottom:622.080000pt;}
.y1f_c00240{bottom:622.720000pt;}
.y1c_c00240{bottom:657.280000pt;}
.y4e_c00240{bottom:657.920000pt;}
.y19_c00240{bottom:658.560000pt;}
.y1b_c00240{bottom:660.480000pt;}
.y1a_c00240{bottom:661.120000pt;}
.y18_c00240{bottom:696.320000pt;}
.y16_c00240{bottom:698.240000pt;}
.y17_c00240{bottom:699.520000pt;}
.y4c_c00240{bottom:734.080000pt;}
.y14_c00240{bottom:734.720000pt;}
.y4b_c00240{bottom:735.360000pt;}
.y4d_c00240{bottom:736.000000pt;}
.y11_c00240{bottom:736.640000pt;}
.y15_c00240{bottom:737.280000pt;}
.y12_c00240{bottom:737.920000pt;}
.y13_c00240{bottom:738.560000pt;}
.y10_c00240{bottom:820.480000pt;}
.ye_c00240{bottom:821.120000pt;}
.yf_c00240{bottom:823.680000pt;}
.yc_c00240{bottom:848.640000pt;}
.y4a_c00240{bottom:849.280000pt;}
.yd_c00240{bottom:850.560000pt;}
.ya_c00240{bottom:851.200000pt;}
.yb_c00240{bottom:852.480000pt;}
.y49_c00240{bottom:886.400000pt;}
.y7_c00240{bottom:887.040000pt;}
.y9_c00240{bottom:887.680000pt;}
.y6_c00240{bottom:888.960000pt;}
.y8_c00240{bottom:890.240000pt;}
.y48_c00240{bottom:924.800000pt;}
.y46_c00240{bottom:925.440000pt;}
.y3_c00240{bottom:926.080000pt;}
.y4_c00240{bottom:926.720000pt;}
.y1_c00240{bottom:927.360000pt;}
.y5_c00240{bottom:928.000000pt;}
.y47_c00240{bottom:928.640000pt;}
.y2_c00240{bottom:929.280000pt;}
.y45_c00240{bottom:960.640000pt;}
.h9_c00240{height:27.645000pt;}
.ha_c00240{height:34.556250pt;}
.h3_c00240{height:36.860000pt;}
.h5_c00240{height:39.163750pt;}
.h8_c00240{height:41.467500pt;}
.h6_c00240{height:43.771250pt;}
.hb_c00240{height:46.075000pt;}
.h2_c00240{height:48.378750pt;}
.hf_c00240{height:50.682500pt;}
.he_c00240{height:52.986250pt;}
.hd_c00240{height:55.290000pt;}
.h4_c00240{height:57.593750pt;}
.h7_c00240{height:59.897500pt;}
.hc_c00240{height:62.201250pt;}
.h11_c00240{height:69.112500pt;}
.h10_c00240{height:85.238750pt;}
.h1_c00240{height:1023.333333pt;}
.h0_c00240{height:1023.360000pt;}
.w1_c00240{width:698.000000pt;}
.w0_c00240{width:698.240000pt;}
.x0_c00240{left:0.000000pt;}
.x1_c00240{left:65.280000pt;}
.x1f_c00240{left:66.560000pt;}
.x3d_c00240{left:67.840000pt;}
.x2_c00240{left:129.280000pt;}
.x8_c00240{left:130.560000pt;}
.x38_c00240{left:157.440000pt;}
.x20_c00240{left:158.720000pt;}
.x9_c00240{left:167.040000pt;}
.xd_c00240{left:168.320000pt;}
.x3a_c00240{left:177.280000pt;}
.x3_c00240{left:178.560000pt;}
.x10_c00240{left:196.480000pt;}
.x11_c00240{left:206.080000pt;}
.xa_c00240{left:207.360000pt;}
.x6_c00240{left:216.960000pt;}
.xc_c00240{left:218.240000pt;}
.x18_c00240{left:226.560000pt;}
.x1c_c00240{left:243.840000pt;}
.x12_c00240{left:254.720000pt;}
.x1a_c00240{left:264.960000pt;}
.x3b_c00240{left:273.280000pt;}
.x39_c00240{left:291.840000pt;}
.x21_c00240{left:293.760000pt;}
.x7_c00240{left:303.360000pt;}
.x4_c00240{left:312.960000pt;}
.x1b_c00240{left:322.560000pt;}
.x1d_c00240{left:330.240000pt;}
.x15_c00240{left:331.520000pt;}
.x33_c00240{left:340.480000pt;}
.x13_c00240{left:341.760000pt;}
.xe_c00240{left:350.720000pt;}
.x5_c00240{left:360.960000pt;}
.xf_c00240{left:399.360000pt;}
.x1e_c00240{left:408.320000pt;}
.x16_c00240{left:418.560000pt;}
.x34_c00240{left:426.880000pt;}
.x3c_c00240{left:435.840000pt;}
.x14_c00240{left:437.760000pt;}
.x19_c00240{left:446.720000pt;}
.x37_c00240{left:464.640000pt;}
.x17_c00240{left:466.560000pt;}
.x35_c00240{left:474.240000pt;}
.xb_c00240{left:504.960000pt;}
.x36_c00240{left:521.600000pt;}
.x2c_c00240{left:522.880000pt;}
.x23_c00240{left:524.160000pt;}
.x30_c00240{left:533.120000pt;}
.x24_c00240{left:545.280000pt;}
.x2b_c00240{left:552.320000pt;}
.x25_c00240{left:553.600000pt;}
.x26_c00240{left:562.560000pt;}
.x32_c00240{left:579.840000pt;}
.x2e_c00240{left:581.120000pt;}
.x27_c00240{left:582.400000pt;}
.x2a_c00240{left:591.360000pt;}
.x2d_c00240{left:610.560000pt;}
.x22_c00240{left:616.320000pt;}
.x2f_c00240{left:618.880000pt;}
.x28_c00240{left:620.160000pt;}
.x31_c00240{left:636.160000pt;}
.x29_c00240{left:637.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_86cefe6233312214452b22b0.woff2')format("woff");}.ff1_c00241{font-family:ff1_c00241;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m49_c00241{transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);}
.m46_c00241{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.m10_c00241{transform:matrix(0.233675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233675,0.000000,0.000000,0.250000,0,0);}
.m47_c00241{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m48_c00241{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);}
.m3b_c00241{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_c00241{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);}
.m2e_c00241{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00241{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m14_c00241{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m5_c00241{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00241{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m12_c00241{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.me_c00241{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);}
.m39_c00241{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);}
.m36_c00241{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);}
.m40_c00241{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m4_c00241{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m44_c00241{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m30_c00241{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m41_c00241{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1_c00241{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00241{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.ma_c00241{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m25_c00241{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m20_c00241{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m8_c00241{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00241{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00241{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m27_c00241{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m11_c00241{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00241{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);}
.m26_c00241{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m35_c00241{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);}
.m45_c00241{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m31_c00241{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);}
.m42_c00241{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m17_c00241{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.mb_c00241{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m28_c00241{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);}
.m38_c00241{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00241{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m21_c00241{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m7_c00241{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m15_c00241{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00241{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);}
.m2f_c00241{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_c00241{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);}
.m0_c00241{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);}
.m34_c00241{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m18_c00241{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.md_c00241{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m6_c00241{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);}
.m32_c00241{transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);}
.m9_c00241{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m43_c00241{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m24_c00241{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00241{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m3_c00241{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00241{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m19_c00241{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m33_c00241{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);}
.m1e_c00241{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m16_c00241{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m29_c00241{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m23_c00241{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m13_c00241{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);}
.m37_c00241{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);}
.m3a_c00241{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m2_c00241{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);}
.m22_c00241{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00241{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00241{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00241{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.v0_c00241{vertical-align:0.000000px;}
.ls0_c00241{letter-spacing:0.000000px;}
.sc__c00241{text-shadow:none;}
.sc0_c00241{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00241{-webkit-text-stroke:0px transparent;}
.sc0_c00241{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00241{word-spacing:0.000000px;}
.ws0_c00241{word-spacing:51.249876px;}
.fc0_c00241{color:transparent;}
.fs9_c00241{font-size:11.520000px;}
.fse_c00241{font-size:25.920000px;}
.fs7_c00241{font-size:34.560000px;}
.fsa_c00241{font-size:43.200000px;}
.fs2_c00241{font-size:46.080000px;}
.fs4_c00241{font-size:48.960000px;}
.fs1_c00241{font-size:51.840000px;}
.fs0_c00241{font-size:54.720000px;}
.fs5_c00241{font-size:57.600000px;}
.fs6_c00241{font-size:60.480000px;}
.fsc_c00241{font-size:63.360000px;}
.fsb_c00241{font-size:66.240000px;}
.fs10_c00241{font-size:69.120000px;}
.fs8_c00241{font-size:72.000000px;}
.fs3_c00241{font-size:74.880000px;}
.fsf_c00241{font-size:77.760000px;}
.fs11_c00241{font-size:80.640000px;}
.fsd_c00241{font-size:95.040000px;}
.y0_c00241{bottom:0.000000px;}
.y4e_c00241{bottom:83.520000px;}
.y78_c00241{bottom:87.120000px;}
.y4f_c00241{bottom:87.840000px;}
.y79_c00241{bottom:88.560000px;}
.y4d_c00241{bottom:90.000000px;}
.y4c_c00241{bottom:126.720000px;}
.y76_c00241{bottom:130.320000px;}
.y75_c00241{bottom:132.480000px;}
.y4b_c00241{bottom:133.200000px;}
.y77_c00241{bottom:134.640000px;}
.y4a_c00241{bottom:170.640000px;}
.y72_c00241{bottom:174.240000px;}
.y74_c00241{bottom:174.960000px;}
.y49_c00241{bottom:175.680000px;}
.y73_c00241{bottom:177.120000px;}
.y48_c00241{bottom:213.840000px;}
.y70_c00241{bottom:216.720000px;}
.y71_c00241{bottom:217.440000px;}
.y47_c00241{bottom:218.880000px;}
.y44_c00241{bottom:257.040000px;}
.y46_c00241{bottom:258.480000px;}
.y45_c00241{bottom:259.920000px;}
.y43_c00241{bottom:260.640000px;}
.y42_c00241{bottom:300.240000px;}
.y40_c00241{bottom:300.960000px;}
.y6e_c00241{bottom:302.400000px;}
.y6f_c00241{bottom:303.120000px;}
.y41_c00241{bottom:303.840000px;}
.y3f_c00241{bottom:304.560000px;}
.y3e_c00241{bottom:342.720000px;}
.y3c_c00241{bottom:343.440000px;}
.y6c_c00241{bottom:345.600000px;}
.y3b_c00241{bottom:347.040000px;}
.y6d_c00241{bottom:347.760000px;}
.y3d_c00241{bottom:349.200000px;}
.y3a_c00241{bottom:387.360000px;}
.y69_c00241{bottom:389.520000px;}
.y38_c00241{bottom:390.240000px;}
.y6b_c00241{bottom:390.960000px;}
.y39_c00241{bottom:391.680000px;}
.y6a_c00241{bottom:392.400000px;}
.y37_c00241{bottom:423.360000px;}
.y35_c00241{bottom:429.840000px;}
.y33_c00241{bottom:432.720000px;}
.y36_c00241{bottom:433.440000px;}
.y34_c00241{bottom:434.160000px;}
.y31_c00241{bottom:473.040000px;}
.y32_c00241{bottom:473.760000px;}
.y67_c00241{bottom:475.200000px;}
.y30_c00241{bottom:476.640000px;}
.y68_c00241{bottom:478.080000px;}
.y2f_c00241{bottom:516.240000px;}
.y65_c00241{bottom:519.120000px;}
.y2d_c00241{bottom:519.840000px;}
.y66_c00241{bottom:520.560000px;}
.y2e_c00241{bottom:521.280000px;}
.y2a_c00241{bottom:560.880000px;}
.y2b_c00241{bottom:561.600000px;}
.y28_c00241{bottom:562.320000px;}
.y64_c00241{bottom:563.040000px;}
.y29_c00241{bottom:563.760000px;}
.y2c_c00241{bottom:564.480000px;}
.y63_c00241{bottom:565.200000px;}
.y26_c00241{bottom:604.800000px;}
.y27_c00241{bottom:606.960000px;}
.y62_c00241{bottom:607.680000px;}
.y25_c00241{bottom:647.280000px;}
.y23_c00241{bottom:648.000000px;}
.y60_c00241{bottom:648.720000px;}
.y24_c00241{bottom:650.160000px;}
.y61_c00241{bottom:650.880000px;}
.y22_c00241{bottom:690.480000px;}
.y20_c00241{bottom:691.200000px;}
.y5f_c00241{bottom:691.920000px;}
.y5e_c00241{bottom:693.360000px;}
.y21_c00241{bottom:694.080000px;}
.y1d_c00241{bottom:733.680000px;}
.y5b_c00241{bottom:735.120000px;}
.y5c_c00241{bottom:735.840000px;}
.y1f_c00241{bottom:736.560000px;}
.y5d_c00241{bottom:737.280000px;}
.y1e_c00241{bottom:739.440000px;}
.y1c_c00241{bottom:776.160000px;}
.y19_c00241{bottom:776.880000px;}
.y5a_c00241{bottom:777.600000px;}
.y59_c00241{bottom:778.320000px;}
.y1b_c00241{bottom:779.040000px;}
.y1a_c00241{bottom:779.760000px;}
.y17_c00241{bottom:818.640000px;}
.y15_c00241{bottom:819.360000px;}
.y58_c00241{bottom:820.080000px;}
.y57_c00241{bottom:820.800000px;}
.y18_c00241{bottom:822.240000px;}
.y16_c00241{bottom:822.960000px;}
.y13_c00241{bottom:861.840000px;}
.y12_c00241{bottom:862.560000px;}
.y56_c00241{bottom:863.280000px;}
.y14_c00241{bottom:864.720000px;}
.y10_c00241{bottom:905.040000px;}
.ye_c00241{bottom:905.760000px;}
.y55_c00241{bottom:906.480000px;}
.y11_c00241{bottom:908.640000px;}
.yf_c00241{bottom:909.360000px;}
.yd_c00241{bottom:948.240000px;}
.ya_c00241{bottom:948.960000px;}
.y53_c00241{bottom:949.680000px;}
.y54_c00241{bottom:950.400000px;}
.yb_c00241{bottom:951.840000px;}
.yc_c00241{bottom:952.560000px;}
.y9_c00241{bottom:991.440000px;}
.y6_c00241{bottom:992.160000px;}
.y8_c00241{bottom:992.880000px;}
.y7_c00241{bottom:995.040000px;}
.y5_c00241{bottom:1035.360000px;}
.y51_c00241{bottom:1036.080000px;}
.y1_c00241{bottom:1036.800000px;}
.y52_c00241{bottom:1037.520000px;}
.y2_c00241{bottom:1038.240000px;}
.y4_c00241{bottom:1038.960000px;}
.y3_c00241{bottom:1039.680000px;}
.y50_c00241{bottom:1092.960000px;}
.hb_c00241{height:10.366875px;}
.h10_c00241{height:23.325469px;}
.h9_c00241{height:31.100625px;}
.hc_c00241{height:38.875781px;}
.h4_c00241{height:41.467500px;}
.h6_c00241{height:44.059219px;}
.h3_c00241{height:46.650937px;}
.h2_c00241{height:49.242656px;}
.h7_c00241{height:51.834375px;}
.h8_c00241{height:54.426094px;}
.he_c00241{height:57.017812px;}
.hd_c00241{height:59.609531px;}
.h12_c00241{height:62.201250px;}
.ha_c00241{height:64.792969px;}
.h5_c00241{height:67.384687px;}
.h11_c00241{height:69.976406px;}
.h13_c00241{height:72.568125px;}
.hf_c00241{height:85.526719px;}
.h1_c00241{height:1146.000000px;}
.h0_c00241{height:1146.240000px;}
.w0_c00241{width:779.040000px;}
.w1_c00241{width:779.250000px;}
.x0_c00241{left:0.000000px;}
.x1_c00241{left:69.120000px;}
.x14_c00241{left:70.560000px;}
.x19_c00241{left:72.000000px;}
.x1e_c00241{left:73.440000px;}
.x13_c00241{left:120.960000px;}
.x2_c00241{left:141.840000px;}
.x15_c00241{left:143.280000px;}
.x10_c00241{left:174.240000px;}
.x3_c00241{left:183.600000px;}
.x8_c00241{left:185.040000px;}
.x16_c00241{left:218.880000px;}
.x9_c00241{left:228.960000px;}
.x4_c00241{left:239.760000px;}
.xc_c00241{left:250.560000px;}
.x1f_c00241{left:261.360000px;}
.x1a_c00241{left:272.160000px;}
.x21_c00241{left:282.960000px;}
.x1b_c00241{left:284.400000px;}
.x5_c00241{left:293.760000px;}
.xe_c00241{left:316.080000px;}
.x17_c00241{left:326.160000px;}
.x1c_c00241{left:328.320000px;}
.xd_c00241{left:347.760000px;}
.xa_c00241{left:369.360000px;}
.x11_c00241{left:380.160000px;}
.x1d_c00241{left:390.960000px;}
.x6_c00241{left:402.480000px;}
.xf_c00241{left:413.280000px;}
.xb_c00241{left:423.360000px;}
.x12_c00241{left:434.160000px;}
.x7_c00241{left:455.760000px;}
.x20_c00241{left:498.960000px;}
.x18_c00241{left:519.120000px;}
.x2a_c00241{left:564.480000px;}
.x28_c00241{left:585.360000px;}
.x23_c00241{left:596.160000px;}
.x26_c00241{left:618.480000px;}
.x27_c00241{left:650.880000px;}
.x29_c00241{left:683.280000px;}
.x22_c00241{left:688.320000px;}
.x24_c00241{left:692.640000px;}
.x2b_c00241{left:694.080000px;}
.x25_c00241{left:712.800000px;}
.x2c_c00241{left:714.240000px;}
@media print{
.v0_c00241{vertical-align:0.000000pt;}
.ls0_c00241{letter-spacing:0.000000pt;}
.ws1_c00241{word-spacing:0.000000pt;}
.ws0_c00241{word-spacing:45.555446pt;}
.fs9_c00241{font-size:10.240000pt;}
.fse_c00241{font-size:23.040000pt;}
.fs7_c00241{font-size:30.720000pt;}
.fsa_c00241{font-size:38.400000pt;}
.fs2_c00241{font-size:40.960000pt;}
.fs4_c00241{font-size:43.520000pt;}
.fs1_c00241{font-size:46.080000pt;}
.fs0_c00241{font-size:48.640000pt;}
.fs5_c00241{font-size:51.200000pt;}
.fs6_c00241{font-size:53.760000pt;}
.fsc_c00241{font-size:56.320000pt;}
.fsb_c00241{font-size:58.880000pt;}
.fs10_c00241{font-size:61.440000pt;}
.fs8_c00241{font-size:64.000000pt;}
.fs3_c00241{font-size:66.560000pt;}
.fsf_c00241{font-size:69.120000pt;}
.fs11_c00241{font-size:71.680000pt;}
.fsd_c00241{font-size:84.480000pt;}
.y0_c00241{bottom:0.000000pt;}
.y4e_c00241{bottom:74.240000pt;}
.y78_c00241{bottom:77.440000pt;}
.y4f_c00241{bottom:78.080000pt;}
.y79_c00241{bottom:78.720000pt;}
.y4d_c00241{bottom:80.000000pt;}
.y4c_c00241{bottom:112.640000pt;}
.y76_c00241{bottom:115.840000pt;}
.y75_c00241{bottom:117.760000pt;}
.y4b_c00241{bottom:118.400000pt;}
.y77_c00241{bottom:119.680000pt;}
.y4a_c00241{bottom:151.680000pt;}
.y72_c00241{bottom:154.880000pt;}
.y74_c00241{bottom:155.520000pt;}
.y49_c00241{bottom:156.160000pt;}
.y73_c00241{bottom:157.440000pt;}
.y48_c00241{bottom:190.080000pt;}
.y70_c00241{bottom:192.640000pt;}
.y71_c00241{bottom:193.280000pt;}
.y47_c00241{bottom:194.560000pt;}
.y44_c00241{bottom:228.480000pt;}
.y46_c00241{bottom:229.760000pt;}
.y45_c00241{bottom:231.040000pt;}
.y43_c00241{bottom:231.680000pt;}
.y42_c00241{bottom:266.880000pt;}
.y40_c00241{bottom:267.520000pt;}
.y6e_c00241{bottom:268.800000pt;}
.y6f_c00241{bottom:269.440000pt;}
.y41_c00241{bottom:270.080000pt;}
.y3f_c00241{bottom:270.720000pt;}
.y3e_c00241{bottom:304.640000pt;}
.y3c_c00241{bottom:305.280000pt;}
.y6c_c00241{bottom:307.200000pt;}
.y3b_c00241{bottom:308.480000pt;}
.y6d_c00241{bottom:309.120000pt;}
.y3d_c00241{bottom:310.400000pt;}
.y3a_c00241{bottom:344.320000pt;}
.y69_c00241{bottom:346.240000pt;}
.y38_c00241{bottom:346.880000pt;}
.y6b_c00241{bottom:347.520000pt;}
.y39_c00241{bottom:348.160000pt;}
.y6a_c00241{bottom:348.800000pt;}
.y37_c00241{bottom:376.320000pt;}
.y35_c00241{bottom:382.080000pt;}
.y33_c00241{bottom:384.640000pt;}
.y36_c00241{bottom:385.280000pt;}
.y34_c00241{bottom:385.920000pt;}
.y31_c00241{bottom:420.480000pt;}
.y32_c00241{bottom:421.120000pt;}
.y67_c00241{bottom:422.400000pt;}
.y30_c00241{bottom:423.680000pt;}
.y68_c00241{bottom:424.960000pt;}
.y2f_c00241{bottom:458.880000pt;}
.y65_c00241{bottom:461.440000pt;}
.y2d_c00241{bottom:462.080000pt;}
.y66_c00241{bottom:462.720000pt;}
.y2e_c00241{bottom:463.360000pt;}
.y2a_c00241{bottom:498.560000pt;}
.y2b_c00241{bottom:499.200000pt;}
.y28_c00241{bottom:499.840000pt;}
.y64_c00241{bottom:500.480000pt;}
.y29_c00241{bottom:501.120000pt;}
.y2c_c00241{bottom:501.760000pt;}
.y63_c00241{bottom:502.400000pt;}
.y26_c00241{bottom:537.600000pt;}
.y27_c00241{bottom:539.520000pt;}
.y62_c00241{bottom:540.160000pt;}
.y25_c00241{bottom:575.360000pt;}
.y23_c00241{bottom:576.000000pt;}
.y60_c00241{bottom:576.640000pt;}
.y24_c00241{bottom:577.920000pt;}
.y61_c00241{bottom:578.560000pt;}
.y22_c00241{bottom:613.760000pt;}
.y20_c00241{bottom:614.400000pt;}
.y5f_c00241{bottom:615.040000pt;}
.y5e_c00241{bottom:616.320000pt;}
.y21_c00241{bottom:616.960000pt;}
.y1d_c00241{bottom:652.160000pt;}
.y5b_c00241{bottom:653.440000pt;}
.y5c_c00241{bottom:654.080000pt;}
.y1f_c00241{bottom:654.720000pt;}
.y5d_c00241{bottom:655.360000pt;}
.y1e_c00241{bottom:657.280000pt;}
.y1c_c00241{bottom:689.920000pt;}
.y19_c00241{bottom:690.560000pt;}
.y5a_c00241{bottom:691.200000pt;}
.y59_c00241{bottom:691.840000pt;}
.y1b_c00241{bottom:692.480000pt;}
.y1a_c00241{bottom:693.120000pt;}
.y17_c00241{bottom:727.680000pt;}
.y15_c00241{bottom:728.320000pt;}
.y58_c00241{bottom:728.960000pt;}
.y57_c00241{bottom:729.600000pt;}
.y18_c00241{bottom:730.880000pt;}
.y16_c00241{bottom:731.520000pt;}
.y13_c00241{bottom:766.080000pt;}
.y12_c00241{bottom:766.720000pt;}
.y56_c00241{bottom:767.360000pt;}
.y14_c00241{bottom:768.640000pt;}
.y10_c00241{bottom:804.480000pt;}
.ye_c00241{bottom:805.120000pt;}
.y55_c00241{bottom:805.760000pt;}
.y11_c00241{bottom:807.680000pt;}
.yf_c00241{bottom:808.320000pt;}
.yd_c00241{bottom:842.880000pt;}
.ya_c00241{bottom:843.520000pt;}
.y53_c00241{bottom:844.160000pt;}
.y54_c00241{bottom:844.800000pt;}
.yb_c00241{bottom:846.080000pt;}
.yc_c00241{bottom:846.720000pt;}
.y9_c00241{bottom:881.280000pt;}
.y6_c00241{bottom:881.920000pt;}
.y8_c00241{bottom:882.560000pt;}
.y7_c00241{bottom:884.480000pt;}
.y5_c00241{bottom:920.320000pt;}
.y51_c00241{bottom:920.960000pt;}
.y1_c00241{bottom:921.600000pt;}
.y52_c00241{bottom:922.240000pt;}
.y2_c00241{bottom:922.880000pt;}
.y4_c00241{bottom:923.520000pt;}
.y3_c00241{bottom:924.160000pt;}
.y50_c00241{bottom:971.520000pt;}
.hb_c00241{height:9.215000pt;}
.h10_c00241{height:20.733750pt;}
.h9_c00241{height:27.645000pt;}
.hc_c00241{height:34.556250pt;}
.h4_c00241{height:36.860000pt;}
.h6_c00241{height:39.163750pt;}
.h3_c00241{height:41.467500pt;}
.h2_c00241{height:43.771250pt;}
.h7_c00241{height:46.075000pt;}
.h8_c00241{height:48.378750pt;}
.he_c00241{height:50.682500pt;}
.hd_c00241{height:52.986250pt;}
.h12_c00241{height:55.290000pt;}
.ha_c00241{height:57.593750pt;}
.h5_c00241{height:59.897500pt;}
.h11_c00241{height:62.201250pt;}
.h13_c00241{height:64.505000pt;}
.hf_c00241{height:76.023750pt;}
.h1_c00241{height:1018.666667pt;}
.h0_c00241{height:1018.880000pt;}
.w0_c00241{width:692.480000pt;}
.w1_c00241{width:692.666667pt;}
.x0_c00241{left:0.000000pt;}
.x1_c00241{left:61.440000pt;}
.x14_c00241{left:62.720000pt;}
.x19_c00241{left:64.000000pt;}
.x1e_c00241{left:65.280000pt;}
.x13_c00241{left:107.520000pt;}
.x2_c00241{left:126.080000pt;}
.x15_c00241{left:127.360000pt;}
.x10_c00241{left:154.880000pt;}
.x3_c00241{left:163.200000pt;}
.x8_c00241{left:164.480000pt;}
.x16_c00241{left:194.560000pt;}
.x9_c00241{left:203.520000pt;}
.x4_c00241{left:213.120000pt;}
.xc_c00241{left:222.720000pt;}
.x1f_c00241{left:232.320000pt;}
.x1a_c00241{left:241.920000pt;}
.x21_c00241{left:251.520000pt;}
.x1b_c00241{left:252.800000pt;}
.x5_c00241{left:261.120000pt;}
.xe_c00241{left:280.960000pt;}
.x17_c00241{left:289.920000pt;}
.x1c_c00241{left:291.840000pt;}
.xd_c00241{left:309.120000pt;}
.xa_c00241{left:328.320000pt;}
.x11_c00241{left:337.920000pt;}
.x1d_c00241{left:347.520000pt;}
.x6_c00241{left:357.760000pt;}
.xf_c00241{left:367.360000pt;}
.xb_c00241{left:376.320000pt;}
.x12_c00241{left:385.920000pt;}
.x7_c00241{left:405.120000pt;}
.x20_c00241{left:443.520000pt;}
.x18_c00241{left:461.440000pt;}
.x2a_c00241{left:501.760000pt;}
.x28_c00241{left:520.320000pt;}
.x23_c00241{left:529.920000pt;}
.x26_c00241{left:549.760000pt;}
.x27_c00241{left:578.560000pt;}
.x29_c00241{left:607.360000pt;}
.x22_c00241{left:611.840000pt;}
.x24_c00241{left:615.680000pt;}
.x2b_c00241{left:616.960000pt;}
.x25_c00241{left:633.600000pt;}
.x2c_c00241{left:634.880000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_22671078ce59e60c68d86f8e.woff2')format("woff");}.ff1_c00242{font-family:ff1_c00242;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m36_c00242{transform:matrix(0.147400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147400,0.000000,0.000000,0.250000,0,0);}
.m1e_c00242{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m41_c00242{transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);}
.m49_c00242{transform:matrix(0.247075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247075,0.000000,0.000000,0.250000,0,0);}
.m25_c00242{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m3b_c00242{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00242{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1_c00242{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m6_c00242{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m13_c00242{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m18_c00242{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);}
.m1b_c00242{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);}
.m39_c00242{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);}
.m3a_c00242{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_c00242{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);}
.m34_c00242{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.me_c00242{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00242{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.ma_c00242{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);}
.m33_c00242{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00242{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m15_c00242{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00242{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m20_c00242{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m38_c00242{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m30_c00242{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m24_c00242{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00242{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m42_c00242{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00242{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m28_c00242{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m21_c00242{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m23_c00242{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m27_c00242{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00242{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m19_c00242{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m12_c00242{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mb_c00242{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m22_c00242{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m35_c00242{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m10_c00242{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.mc_c00242{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m3_c00242{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);}
.m0_c00242{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.mf_c00242{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00242{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m14_c00242{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m9_c00242{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m47_c00242{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m7_c00242{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);}
.m32_c00242{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m5_c00242{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);}
.m2d_c00242{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);}
.md_c00242{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);}
.m46_c00242{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m17_c00242{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m11_c00242{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);}
.m43_c00242{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00242{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m16_c00242{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);}
.m2_c00242{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m29_c00242{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m44_c00242{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m4_c00242{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m40_c00242{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);}
.m37_c00242{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m31_c00242{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00242{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00242{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m48_c00242{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);}
.m3d_c00242{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00242{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);}
.m3f_c00242{transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);}
.m45_c00242{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m26_c00242{transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);}
.v2_c00242{vertical-align:-5.760000px;}
.v0_c00242{vertical-align:0.000000px;}
.v1_c00242{vertical-align:11.520000px;}
.ls0_c00242{letter-spacing:0.000000px;}
.sc__c00242{text-shadow:none;}
.sc0_c00242{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00242{-webkit-text-stroke:0px transparent;}
.sc0_c00242{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00242{word-spacing:0.000000px;}
.ws0_c00242{word-spacing:2.695920px;}
.ws1_c00242{word-spacing:14.637600px;}
.fc0_c00242{color:transparent;}
.fsd_c00242{font-size:34.560000px;}
.fsc_c00242{font-size:43.200000px;}
.fs2_c00242{font-size:46.080000px;}
.fs7_c00242{font-size:48.960000px;}
.fs3_c00242{font-size:51.840000px;}
.fs4_c00242{font-size:54.720000px;}
.fs5_c00242{font-size:57.600000px;}
.fs0_c00242{font-size:60.480000px;}
.fs9_c00242{font-size:63.360000px;}
.fsb_c00242{font-size:66.240000px;}
.fsa_c00242{font-size:69.120000px;}
.fs1_c00242{font-size:72.000000px;}
.fs6_c00242{font-size:74.880000px;}
.fs8_c00242{font-size:77.760000px;}
.fse_c00242{font-size:106.560000px;}
.y0_c00242{bottom:0.000000px;}
.y72_c00242{bottom:50.400000px;}
.y74_c00242{bottom:53.280000px;}
.y73_c00242{bottom:54.720000px;}
.y71_c00242{bottom:56.880000px;}
.y6e_c00242{bottom:94.320000px;}
.y6f_c00242{bottom:97.920000px;}
.y70_c00242{bottom:98.640000px;}
.y6d_c00242{bottom:100.080000px;}
.y69_c00242{bottom:138.960000px;}
.y6a_c00242{bottom:141.840000px;}
.y6b_c00242{bottom:142.560000px;}
.y68_c00242{bottom:143.280000px;}
.y6c_c00242{bottom:145.440000px;}
.y56_c00242{bottom:182.160000px;}
.y65_c00242{bottom:185.040000px;}
.y66_c00242{bottom:185.760000px;}
.y55_c00242{bottom:186.480000px;}
.y67_c00242{bottom:187.920000px;}
.y50_c00242{bottom:225.360000px;}
.y52_c00242{bottom:226.080000px;}
.y53_c00242{bottom:226.800000px;}
.y54_c00242{bottom:228.240000px;}
.y51_c00242{bottom:228.960000px;}
.y4f_c00242{bottom:230.400000px;}
.y63_c00242{bottom:231.840000px;}
.y4d_c00242{bottom:268.560000px;}
.y64_c00242{bottom:271.440000px;}
.y4e_c00242{bottom:272.160000px;}
.y4c_c00242{bottom:272.880000px;}
.y62_c00242{bottom:273.600000px;}
.y4b_c00242{bottom:311.760000px;}
.y60_c00242{bottom:314.640000px;}
.y4a_c00242{bottom:316.080000px;}
.y61_c00242{bottom:316.800000px;}
.y49_c00242{bottom:354.960000px;}
.y5f_c00242{bottom:357.840000px;}
.y48_c00242{bottom:358.560000px;}
.y5e_c00242{bottom:360.000000px;}
.y46_c00242{bottom:398.880000px;}
.y44_c00242{bottom:399.600000px;}
.y45_c00242{bottom:401.760000px;}
.y47_c00242{bottom:402.480000px;}
.y3f_c00242{bottom:430.560000px;}
.y41_c00242{bottom:431.280000px;}
.y40_c00242{bottom:432.000000px;}
.y43_c00242{bottom:432.720000px;}
.y3e_c00242{bottom:433.440000px;}
.y42_c00242{bottom:434.160000px;}
.y5d_c00242{bottom:434.880000px;}
.y5c_c00242{bottom:435.600000px;}
.y3c_c00242{bottom:462.960000px;}
.y39_c00242{bottom:474.480000px;}
.y3a_c00242{bottom:475.200000px;}
.y38_c00242{bottom:476.640000px;}
.y3b_c00242{bottom:477.360000px;}
.y3d_c00242{bottom:478.080000px;}
.y37_c00242{bottom:516.960000px;}
.y59_c00242{bottom:519.120000px;}
.y36_c00242{bottom:519.840000px;}
.y5b_c00242{bottom:521.280000px;}
.y5a_c00242{bottom:522.000000px;}
.y33_c00242{bottom:560.160000px;}
.y35_c00242{bottom:560.880000px;}
.y58_c00242{bottom:563.040000px;}
.y34_c00242{bottom:563.760000px;}
.y32_c00242{bottom:564.480000px;}
.y57_c00242{bottom:565.200000px;}
.y2d_c00242{bottom:604.080000px;}
.y2e_c00242{bottom:604.800000px;}
.y30_c00242{bottom:605.520000px;}
.y2c_c00242{bottom:606.960000px;}
.y31_c00242{bottom:607.680000px;}
.y2a_c00242{bottom:648.720000px;}
.y2b_c00242{bottom:651.600000px;}
.y29_c00242{bottom:680.400000px;}
.y27_c00242{bottom:681.120000px;}
.y28_c00242{bottom:684.000000px;}
.y25_c00242{bottom:712.800000px;}
.y23_c00242{bottom:714.240000px;}
.y2f_c00242{bottom:714.960000px;}
.y26_c00242{bottom:715.680000px;}
.y24_c00242{bottom:716.400000px;}
.y22_c00242{bottom:756.000000px;}
.y1f_c00242{bottom:756.720000px;}
.y20_c00242{bottom:757.440000px;}
.y21_c00242{bottom:759.600000px;}
.y17_c00242{bottom:799.200000px;}
.y1e_c00242{bottom:799.920000px;}
.y16_c00242{bottom:800.640000px;}
.y18_c00242{bottom:803.520000px;}
.y15_c00242{bottom:842.400000px;}
.y12_c00242{bottom:874.800000px;}
.y11_c00242{bottom:875.520000px;}
.y1d_c00242{bottom:876.240000px;}
.y13_c00242{bottom:878.400000px;}
.y14_c00242{bottom:879.120000px;}
.ye_c00242{bottom:917.280000px;}
.yd_c00242{bottom:918.720000px;}
.y10_c00242{bottom:921.600000px;}
.yf_c00242{bottom:922.320000px;}
.y8_c00242{bottom:961.200000px;}
.y7_c00242{bottom:961.920000px;}
.ya_c00242{bottom:962.640000px;}
.yc_c00242{bottom:964.080000px;}
.yb_c00242{bottom:964.800000px;}
.y9_c00242{bottom:965.520000px;}
.y1b_c00242{bottom:1003.680000px;}
.y6_c00242{bottom:1004.400000px;}
.y5_c00242{bottom:1005.120000px;}
.y1c_c00242{bottom:1005.840000px;}
.y1a_c00242{bottom:1008.000000px;}
.y1_c00242{bottom:1048.320000px;}
.y2_c00242{bottom:1049.040000px;}
.y3_c00242{bottom:1050.480000px;}
.y4_c00242{bottom:1051.200000px;}
.y19_c00242{bottom:1099.440000px;}
.hf_c00242{height:31.100625px;}
.he_c00242{height:38.875781px;}
.h4_c00242{height:41.467500px;}
.h9_c00242{height:44.059219px;}
.h5_c00242{height:46.650937px;}
.h6_c00242{height:49.242656px;}
.h7_c00242{height:51.834375px;}
.h2_c00242{height:54.426094px;}
.hb_c00242{height:57.017812px;}
.hd_c00242{height:59.609531px;}
.hc_c00242{height:62.201250px;}
.h3_c00242{height:64.792969px;}
.h8_c00242{height:67.384687px;}
.ha_c00242{height:69.976406px;}
.h10_c00242{height:95.893594px;}
.h0_c00242{height:1154.880000px;}
.h1_c00242{height:1155.000000px;}
.w1_c00242{width:790.500000px;}
.w0_c00242{width:790.560000px;}
.x0_c00242{left:0.000000px;}
.x1_c00242{left:79.200000px;}
.x2a_c00242{left:80.640000px;}
.x31_c00242{left:82.080000px;}
.x2_c00242{left:151.920000px;}
.x14_c00242{left:153.360000px;}
.x20_c00242{left:195.120000px;}
.x21_c00242{left:227.520000px;}
.x15_c00242{left:237.600000px;}
.x24_c00242{left:239.760000px;}
.x22_c00242{left:250.560000px;}
.x2f_c00242{left:259.200000px;}
.x2b_c00242{left:272.160000px;}
.x10_c00242{left:282.960000px;}
.xc_c00242{left:291.600000px;}
.x29_c00242{left:293.760000px;}
.x3_c00242{left:303.840000px;}
.x8_c00242{left:324.000000px;}
.x11_c00242{left:335.520000px;}
.xd_c00242{left:336.960000px;}
.x37_c00242{left:347.040000px;}
.x35_c00242{left:357.120000px;}
.x4_c00242{left:358.560000px;}
.x9_c00242{left:369.360000px;}
.x2e_c00242{left:378.000000px;}
.x12_c00242{left:380.160000px;}
.x25_c00242{left:388.800000px;}
.x2c_c00242{left:390.960000px;}
.x36_c00242{left:412.560000px;}
.x16_c00242{left:423.360000px;}
.xe_c00242{left:432.720000px;}
.x30_c00242{left:434.160000px;}
.x2d_c00242{left:444.960000px;}
.xa_c00242{left:454.320000px;}
.x5_c00242{left:455.760000px;}
.xf_c00242{left:476.640000px;}
.x26_c00242{left:487.440000px;}
.xb_c00242{left:498.960000px;}
.x32_c00242{left:508.320000px;}
.x6_c00242{left:509.760000px;}
.x13_c00242{left:531.360000px;}
.x27_c00242{left:552.960000px;}
.x23_c00242{left:573.840000px;}
.x7_c00242{left:575.280000px;}
.x1e_c00242{left:594.720000px;}
.x1b_c00242{left:596.160000px;}
.x18_c00242{left:628.560000px;}
.x1c_c00242{left:658.800000px;}
.x33_c00242{left:660.240000px;}
.x19_c00242{left:661.680000px;}
.x28_c00242{left:693.360000px;}
.x17_c00242{left:696.960000px;}
.x1f_c00242{left:702.720000px;}
.x1a_c00242{left:704.160000px;}
.x34_c00242{left:722.160000px;}
.x1d_c00242{left:723.600000px;}
@media print{
.v2_c00242{vertical-align:-5.120000pt;}
.v0_c00242{vertical-align:0.000000pt;}
.v1_c00242{vertical-align:10.240000pt;}
.ls0_c00242{letter-spacing:0.000000pt;}
.ws2_c00242{word-spacing:0.000000pt;}
.ws0_c00242{word-spacing:2.396373pt;}
.ws1_c00242{word-spacing:13.011200pt;}
.fsd_c00242{font-size:30.720000pt;}
.fsc_c00242{font-size:38.400000pt;}
.fs2_c00242{font-size:40.960000pt;}
.fs7_c00242{font-size:43.520000pt;}
.fs3_c00242{font-size:46.080000pt;}
.fs4_c00242{font-size:48.640000pt;}
.fs5_c00242{font-size:51.200000pt;}
.fs0_c00242{font-size:53.760000pt;}
.fs9_c00242{font-size:56.320000pt;}
.fsb_c00242{font-size:58.880000pt;}
.fsa_c00242{font-size:61.440000pt;}
.fs1_c00242{font-size:64.000000pt;}
.fs6_c00242{font-size:66.560000pt;}
.fs8_c00242{font-size:69.120000pt;}
.fse_c00242{font-size:94.720000pt;}
.y0_c00242{bottom:0.000000pt;}
.y72_c00242{bottom:44.800000pt;}
.y74_c00242{bottom:47.360000pt;}
.y73_c00242{bottom:48.640000pt;}
.y71_c00242{bottom:50.560000pt;}
.y6e_c00242{bottom:83.840000pt;}
.y6f_c00242{bottom:87.040000pt;}
.y70_c00242{bottom:87.680000pt;}
.y6d_c00242{bottom:88.960000pt;}
.y69_c00242{bottom:123.520000pt;}
.y6a_c00242{bottom:126.080000pt;}
.y6b_c00242{bottom:126.720000pt;}
.y68_c00242{bottom:127.360000pt;}
.y6c_c00242{bottom:129.280000pt;}
.y56_c00242{bottom:161.920000pt;}
.y65_c00242{bottom:164.480000pt;}
.y66_c00242{bottom:165.120000pt;}
.y55_c00242{bottom:165.760000pt;}
.y67_c00242{bottom:167.040000pt;}
.y50_c00242{bottom:200.320000pt;}
.y52_c00242{bottom:200.960000pt;}
.y53_c00242{bottom:201.600000pt;}
.y54_c00242{bottom:202.880000pt;}
.y51_c00242{bottom:203.520000pt;}
.y4f_c00242{bottom:204.800000pt;}
.y63_c00242{bottom:206.080000pt;}
.y4d_c00242{bottom:238.720000pt;}
.y64_c00242{bottom:241.280000pt;}
.y4e_c00242{bottom:241.920000pt;}
.y4c_c00242{bottom:242.560000pt;}
.y62_c00242{bottom:243.200000pt;}
.y4b_c00242{bottom:277.120000pt;}
.y60_c00242{bottom:279.680000pt;}
.y4a_c00242{bottom:280.960000pt;}
.y61_c00242{bottom:281.600000pt;}
.y49_c00242{bottom:315.520000pt;}
.y5f_c00242{bottom:318.080000pt;}
.y48_c00242{bottom:318.720000pt;}
.y5e_c00242{bottom:320.000000pt;}
.y46_c00242{bottom:354.560000pt;}
.y44_c00242{bottom:355.200000pt;}
.y45_c00242{bottom:357.120000pt;}
.y47_c00242{bottom:357.760000pt;}
.y3f_c00242{bottom:382.720000pt;}
.y41_c00242{bottom:383.360000pt;}
.y40_c00242{bottom:384.000000pt;}
.y43_c00242{bottom:384.640000pt;}
.y3e_c00242{bottom:385.280000pt;}
.y42_c00242{bottom:385.920000pt;}
.y5d_c00242{bottom:386.560000pt;}
.y5c_c00242{bottom:387.200000pt;}
.y3c_c00242{bottom:411.520000pt;}
.y39_c00242{bottom:421.760000pt;}
.y3a_c00242{bottom:422.400000pt;}
.y38_c00242{bottom:423.680000pt;}
.y3b_c00242{bottom:424.320000pt;}
.y3d_c00242{bottom:424.960000pt;}
.y37_c00242{bottom:459.520000pt;}
.y59_c00242{bottom:461.440000pt;}
.y36_c00242{bottom:462.080000pt;}
.y5b_c00242{bottom:463.360000pt;}
.y5a_c00242{bottom:464.000000pt;}
.y33_c00242{bottom:497.920000pt;}
.y35_c00242{bottom:498.560000pt;}
.y58_c00242{bottom:500.480000pt;}
.y34_c00242{bottom:501.120000pt;}
.y32_c00242{bottom:501.760000pt;}
.y57_c00242{bottom:502.400000pt;}
.y2d_c00242{bottom:536.960000pt;}
.y2e_c00242{bottom:537.600000pt;}
.y30_c00242{bottom:538.240000pt;}
.y2c_c00242{bottom:539.520000pt;}
.y31_c00242{bottom:540.160000pt;}
.y2a_c00242{bottom:576.640000pt;}
.y2b_c00242{bottom:579.200000pt;}
.y29_c00242{bottom:604.800000pt;}
.y27_c00242{bottom:605.440000pt;}
.y28_c00242{bottom:608.000000pt;}
.y25_c00242{bottom:633.600000pt;}
.y23_c00242{bottom:634.880000pt;}
.y2f_c00242{bottom:635.520000pt;}
.y26_c00242{bottom:636.160000pt;}
.y24_c00242{bottom:636.800000pt;}
.y22_c00242{bottom:672.000000pt;}
.y1f_c00242{bottom:672.640000pt;}
.y20_c00242{bottom:673.280000pt;}
.y21_c00242{bottom:675.200000pt;}
.y17_c00242{bottom:710.400000pt;}
.y1e_c00242{bottom:711.040000pt;}
.y16_c00242{bottom:711.680000pt;}
.y18_c00242{bottom:714.240000pt;}
.y15_c00242{bottom:748.800000pt;}
.y12_c00242{bottom:777.600000pt;}
.y11_c00242{bottom:778.240000pt;}
.y1d_c00242{bottom:778.880000pt;}
.y13_c00242{bottom:780.800000pt;}
.y14_c00242{bottom:781.440000pt;}
.ye_c00242{bottom:815.360000pt;}
.yd_c00242{bottom:816.640000pt;}
.y10_c00242{bottom:819.200000pt;}
.yf_c00242{bottom:819.840000pt;}
.y8_c00242{bottom:854.400000pt;}
.y7_c00242{bottom:855.040000pt;}
.ya_c00242{bottom:855.680000pt;}
.yc_c00242{bottom:856.960000pt;}
.yb_c00242{bottom:857.600000pt;}
.y9_c00242{bottom:858.240000pt;}
.y1b_c00242{bottom:892.160000pt;}
.y6_c00242{bottom:892.800000pt;}
.y5_c00242{bottom:893.440000pt;}
.y1c_c00242{bottom:894.080000pt;}
.y1a_c00242{bottom:896.000000pt;}
.y1_c00242{bottom:931.840000pt;}
.y2_c00242{bottom:932.480000pt;}
.y3_c00242{bottom:933.760000pt;}
.y4_c00242{bottom:934.400000pt;}
.y19_c00242{bottom:977.280000pt;}
.hf_c00242{height:27.645000pt;}
.he_c00242{height:34.556250pt;}
.h4_c00242{height:36.860000pt;}
.h9_c00242{height:39.163750pt;}
.h5_c00242{height:41.467500pt;}
.h6_c00242{height:43.771250pt;}
.h7_c00242{height:46.075000pt;}
.h2_c00242{height:48.378750pt;}
.hb_c00242{height:50.682500pt;}
.hd_c00242{height:52.986250pt;}
.hc_c00242{height:55.290000pt;}
.h3_c00242{height:57.593750pt;}
.h8_c00242{height:59.897500pt;}
.ha_c00242{height:62.201250pt;}
.h10_c00242{height:85.238750pt;}
.h0_c00242{height:1026.560000pt;}
.h1_c00242{height:1026.666667pt;}
.w1_c00242{width:702.666667pt;}
.w0_c00242{width:702.720000pt;}
.x0_c00242{left:0.000000pt;}
.x1_c00242{left:70.400000pt;}
.x2a_c00242{left:71.680000pt;}
.x31_c00242{left:72.960000pt;}
.x2_c00242{left:135.040000pt;}
.x14_c00242{left:136.320000pt;}
.x20_c00242{left:173.440000pt;}
.x21_c00242{left:202.240000pt;}
.x15_c00242{left:211.200000pt;}
.x24_c00242{left:213.120000pt;}
.x22_c00242{left:222.720000pt;}
.x2f_c00242{left:230.400000pt;}
.x2b_c00242{left:241.920000pt;}
.x10_c00242{left:251.520000pt;}
.xc_c00242{left:259.200000pt;}
.x29_c00242{left:261.120000pt;}
.x3_c00242{left:270.080000pt;}
.x8_c00242{left:288.000000pt;}
.x11_c00242{left:298.240000pt;}
.xd_c00242{left:299.520000pt;}
.x37_c00242{left:308.480000pt;}
.x35_c00242{left:317.440000pt;}
.x4_c00242{left:318.720000pt;}
.x9_c00242{left:328.320000pt;}
.x2e_c00242{left:336.000000pt;}
.x12_c00242{left:337.920000pt;}
.x25_c00242{left:345.600000pt;}
.x2c_c00242{left:347.520000pt;}
.x36_c00242{left:366.720000pt;}
.x16_c00242{left:376.320000pt;}
.xe_c00242{left:384.640000pt;}
.x30_c00242{left:385.920000pt;}
.x2d_c00242{left:395.520000pt;}
.xa_c00242{left:403.840000pt;}
.x5_c00242{left:405.120000pt;}
.xf_c00242{left:423.680000pt;}
.x26_c00242{left:433.280000pt;}
.xb_c00242{left:443.520000pt;}
.x32_c00242{left:451.840000pt;}
.x6_c00242{left:453.120000pt;}
.x13_c00242{left:472.320000pt;}
.x27_c00242{left:491.520000pt;}
.x23_c00242{left:510.080000pt;}
.x7_c00242{left:511.360000pt;}
.x1e_c00242{left:528.640000pt;}
.x1b_c00242{left:529.920000pt;}
.x18_c00242{left:558.720000pt;}
.x1c_c00242{left:585.600000pt;}
.x33_c00242{left:586.880000pt;}
.x19_c00242{left:588.160000pt;}
.x28_c00242{left:616.320000pt;}
.x17_c00242{left:619.520000pt;}
.x1f_c00242{left:624.640000pt;}
.x1a_c00242{left:625.920000pt;}
.x34_c00242{left:641.920000pt;}
.x1d_c00242{left:643.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_898997dd9a6b4c837936522f.woff2')format("woff");}.ff1_c00243{font-family:ff1_c00243;line-height:1.109863;font-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_c00243{transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);}
.m35_c00243{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m10_c00243{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);}
.m4e_c00243{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00243{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m2f_c00243{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);}
.m2c_c00243{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m16_c00243{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);}
.m4a_c00243{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);}
.m4c_c00243{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_c00243{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m23_c00243{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_c00243{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);}
.m49_c00243{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_c00243{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);}
.m3d_c00243{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m32_c00243{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m5_c00243{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);}
.m33_c00243{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);}
.m27_c00243{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m14_c00243{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m19_c00243{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00243{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00243{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1_c00243{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.md_c00243{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m39_c00243{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m40_c00243{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m37_c00243{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m41_c00243{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m24_c00243{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m15_c00243{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m26_c00243{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);}
.m3f_c00243{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m28_c00243{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m13_c00243{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00243{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m36_c00243{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_c00243{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m0_c00243{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_c00243{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m34_c00243{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.ma_c00243{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);}
.m3e_c00243{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m11_c00243{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m3_c00243{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);}
.m48_c00243{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);}
.m4f_c00243{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.me_c00243{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);}
.m17_c00243{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);}
.m4_c00243{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);}
.m12_c00243{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m18_c00243{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);}
.m2_c00243{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m30_c00243{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00243{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m43_c00243{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m21_c00243{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m6_c00243{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00243{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00243{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);}
.m2b_c00243{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.mf_c00243{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);}
.m38_c00243{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00243{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m46_c00243{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.mb_c00243{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00243{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m29_c00243{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00243{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);}
.m9_c00243{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);}
.m20_c00243{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);}
.m31_c00243{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m44_c00243{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m47_c00243{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m22_c00243{transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);}
.m7_c00243{transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);}
.m42_c00243{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00243{transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);}
.m25_c00243{transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);}
.v0_c00243{vertical-align:0.000000px;}
.v1_c00243{vertical-align:2.880000px;}
.ls0_c00243{letter-spacing:0.000000px;}
.sc__c00243{text-shadow:none;}
.sc0_c00243{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00243{-webkit-text-stroke:0px transparent;}
.sc0_c00243{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00243{word-spacing:0.000000px;}
.ws2_c00243{word-spacing:0.867840px;}
.ws0_c00243{word-spacing:5.898000px;}
.ws1_c00243{word-spacing:12.615600px;}
.fc0_c00243{color:transparent;}
.fsa_c00243{font-size:2.880000px;}
.fs10_c00243{font-size:28.800000px;}
.fs6_c00243{font-size:31.680000px;}
.fsd_c00243{font-size:34.560000px;}
.fs5_c00243{font-size:43.200000px;}
.fs1_c00243{font-size:46.080000px;}
.fs9_c00243{font-size:48.960000px;}
.fs3_c00243{font-size:51.840000px;}
.fs4_c00243{font-size:54.720000px;}
.fs2_c00243{font-size:57.600000px;}
.fs8_c00243{font-size:60.480000px;}
.fsb_c00243{font-size:63.360000px;}
.fsf_c00243{font-size:66.240000px;}
.fse_c00243{font-size:69.120000px;}
.fs7_c00243{font-size:72.000000px;}
.fsc_c00243{font-size:74.880000px;}
.fs0_c00243{font-size:77.760000px;}
.y0_c00243{bottom:0.000000px;}
.y78_c00243{bottom:59.760000px;}
.y77_c00243{bottom:60.480000px;}
.y7a_c00243{bottom:61.920000px;}
.y7d_c00243{bottom:63.360000px;}
.y79_c00243{bottom:64.080000px;}
.y7b_c00243{bottom:64.800000px;}
.y76_c00243{bottom:65.520000px;}
.y7c_c00243{bottom:66.240000px;}
.y72_c00243{bottom:105.120000px;}
.y74_c00243{bottom:107.280000px;}
.y73_c00243{bottom:108.000000px;}
.y71_c00243{bottom:108.720000px;}
.y75_c00243{bottom:110.160000px;}
.y6f_c00243{bottom:147.600000px;}
.y70_c00243{bottom:151.200000px;}
.y6e_c00243{bottom:152.640000px;}
.y68_c00243{bottom:190.080000px;}
.y67_c00243{bottom:192.240000px;}
.y66_c00243{bottom:192.960000px;}
.y6d_c00243{bottom:193.680000px;}
.y6c_c00243{bottom:194.400000px;}
.y65_c00243{bottom:195.120000px;}
.y62_c00243{bottom:233.280000px;}
.y64_c00243{bottom:235.440000px;}
.y69_c00243{bottom:236.880000px;}
.y63_c00243{bottom:237.600000px;}
.y61_c00243{bottom:238.320000px;}
.y6b_c00243{bottom:239.040000px;}
.y6a_c00243{bottom:239.760000px;}
.y5f_c00243{bottom:278.640000px;}
.y5d_c00243{bottom:280.080000px;}
.y5e_c00243{bottom:280.800000px;}
.y5c_c00243{bottom:281.520000px;}
.y60_c00243{bottom:282.960000px;}
.y59_c00243{bottom:321.120000px;}
.y5a_c00243{bottom:322.560000px;}
.y5b_c00243{bottom:324.000000px;}
.y58_c00243{bottom:325.440000px;}
.y55_c00243{bottom:364.320000px;}
.y54_c00243{bottom:365.760000px;}
.y56_c00243{bottom:366.480000px;}
.y53_c00243{bottom:367.920000px;}
.y57_c00243{bottom:368.640000px;}
.y50_c00243{bottom:407.520000px;}
.y51_c00243{bottom:409.680000px;}
.y52_c00243{bottom:410.400000px;}
.y4e_c00243{bottom:411.840000px;}
.y4f_c00243{bottom:412.560000px;}
.y4b_c00243{bottom:450.720000px;}
.y4c_c00243{bottom:452.160000px;}
.y4d_c00243{bottom:452.880000px;}
.y49_c00243{bottom:454.320000px;}
.y4a_c00243{bottom:455.760000px;}
.y45_c00243{bottom:494.640000px;}
.y46_c00243{bottom:495.360000px;}
.y47_c00243{bottom:496.080000px;}
.y48_c00243{bottom:496.800000px;}
.y43_c00243{bottom:497.520000px;}
.y44_c00243{bottom:498.960000px;}
.y40_c00243{bottom:537.840000px;}
.y41_c00243{bottom:539.280000px;}
.y3f_c00243{bottom:540.000000px;}
.y3d_c00243{bottom:540.720000px;}
.y42_c00243{bottom:542.160000px;}
.y3e_c00243{bottom:542.880000px;}
.y3a_c00243{bottom:581.040000px;}
.y3b_c00243{bottom:583.200000px;}
.y38_c00243{bottom:584.640000px;}
.y39_c00243{bottom:585.360000px;}
.y3c_c00243{bottom:586.080000px;}
.y33_c00243{bottom:624.240000px;}
.y35_c00243{bottom:624.960000px;}
.y37_c00243{bottom:625.680000px;}
.y32_c00243{bottom:627.120000px;}
.y34_c00243{bottom:627.840000px;}
.y36_c00243{bottom:628.560000px;}
.y2e_c00243{bottom:667.440000px;}
.y30_c00243{bottom:668.880000px;}
.y31_c00243{bottom:669.600000px;}
.y2d_c00243{bottom:671.040000px;}
.y2f_c00243{bottom:671.760000px;}
.y2a_c00243{bottom:709.920000px;}
.y2b_c00243{bottom:711.360000px;}
.y28_c00243{bottom:712.080000px;}
.y2c_c00243{bottom:713.520000px;}
.y29_c00243{bottom:714.960000px;}
.y23_c00243{bottom:753.120000px;}
.y25_c00243{bottom:753.840000px;}
.y26_c00243{bottom:754.560000px;}
.y22_c00243{bottom:755.280000px;}
.y24_c00243{bottom:756.720000px;}
.y27_c00243{bottom:757.440000px;}
.y21_c00243{bottom:800.640000px;}
.y1f_c00243{bottom:829.440000px;}
.y1d_c00243{bottom:830.160000px;}
.y20_c00243{bottom:831.600000px;}
.y1e_c00243{bottom:833.040000px;}
.y1b_c00243{bottom:872.640000px;}
.y17_c00243{bottom:873.360000px;}
.y19_c00243{bottom:874.080000px;}
.y1c_c00243{bottom:875.520000px;}
.y18_c00243{bottom:876.960000px;}
.y1a_c00243{bottom:877.680000px;}
.y13_c00243{bottom:915.840000px;}
.y11_c00243{bottom:917.280000px;}
.y14_c00243{bottom:918.000000px;}
.y16_c00243{bottom:918.720000px;}
.y15_c00243{bottom:919.440000px;}
.y12_c00243{bottom:920.160000px;}
.yf_c00243{bottom:959.760000px;}
.y10_c00243{bottom:960.480000px;}
.yc_c00243{bottom:961.200000px;}
.ye_c00243{bottom:963.360000px;}
.yd_c00243{bottom:964.080000px;}
.yb_c00243{bottom:995.040000px;}
.y9_c00243{bottom:1002.960000px;}
.y5_c00243{bottom:1003.680000px;}
.y7_c00243{bottom:1004.400000px;}
.y6_c00243{bottom:1005.120000px;}
.ya_c00243{bottom:1006.560000px;}
.y8_c00243{bottom:1007.280000px;}
.y3_c00243{bottom:1048.320000px;}
.y4_c00243{bottom:1049.760000px;}
.y2_c00243{bottom:1051.200000px;}
.y1_c00243{bottom:1095.120000px;}
.hc_c00243{height:2.591719px;}
.h13_c00243{height:25.917187px;}
.h8_c00243{height:28.508906px;}
.hf_c00243{height:31.100625px;}
.h7_c00243{height:38.875781px;}
.h3_c00243{height:41.467500px;}
.hb_c00243{height:44.059219px;}
.h5_c00243{height:46.650937px;}
.h6_c00243{height:49.242656px;}
.h4_c00243{height:51.834375px;}
.h12_c00243{height:52.122656px;}
.ha_c00243{height:54.426094px;}
.hd_c00243{height:57.017812px;}
.h11_c00243{height:59.609531px;}
.h10_c00243{height:62.201250px;}
.h9_c00243{height:64.792969px;}
.he_c00243{height:67.384687px;}
.h2_c00243{height:69.976406px;}
.h0_c00243{height:1153.440000px;}
.h1_c00243{height:1153.500000px;}
.w1_c00243{width:789.750000px;}
.w0_c00243{width:789.840000px;}
.x0_c00243{left:0.000000px;}
.x5_c00243{left:77.760000px;}
.x21_c00243{left:79.200000px;}
.x27_c00243{left:80.640000px;}
.x2_c00243{left:129.600000px;}
.x12_c00243{left:149.760000px;}
.x3_c00243{left:151.200000px;}
.x20_c00243{left:192.240000px;}
.x6_c00243{left:193.680000px;}
.x17_c00243{left:205.200000px;}
.x7_c00243{left:226.080000px;}
.x13_c00243{left:236.880000px;}
.x26_c00243{left:238.320000px;}
.x4_c00243{left:246.960000px;}
.x8_c00243{left:248.400000px;}
.x28_c00243{left:280.800000px;}
.x1b_c00243{left:291.600000px;}
.x18_c00243{left:313.200000px;}
.x1e_c00243{left:334.080000px;}
.x16_c00243{left:345.600000px;}
.x19_c00243{left:367.200000px;}
.x10_c00243{left:375.840000px;}
.x2b_c00243{left:377.280000px;}
.x1c_c00243{left:388.800000px;}
.x9_c00243{left:398.880000px;}
.x29_c00243{left:421.200000px;}
.x1d_c00243{left:442.800000px;}
.xa_c00243{left:453.600000px;}
.x22_c00243{left:455.040000px;}
.x2c_c00243{left:475.200000px;}
.xb_c00243{left:550.800000px;}
.x11_c00243{left:553.680000px;}
.x1f_c00243{left:572.400000px;}
.x23_c00243{left:573.840000px;}
.x2a_c00243{left:592.560000px;}
.x14_c00243{left:594.000000px;}
.x1a_c00243{left:604.800000px;}
.xc_c00243{left:627.120000px;}
.xd_c00243{left:659.520000px;}
.x24_c00243{left:670.320000px;}
.xe_c00243{left:691.920000px;}
.x1_c00243{left:695.520000px;}
.x25_c00243{left:700.560000px;}
.x15_c00243{left:702.000000px;}
.xf_c00243{left:722.160000px;}
@media print{
.v0_c00243{vertical-align:0.000000pt;}
.v1_c00243{vertical-align:2.560000pt;}
.ls0_c00243{letter-spacing:0.000000pt;}
.ws3_c00243{word-spacing:0.000000pt;}
.ws2_c00243{word-spacing:0.771413pt;}
.ws0_c00243{word-spacing:5.242667pt;}
.ws1_c00243{word-spacing:11.213867pt;}
.fsa_c00243{font-size:2.560000pt;}
.fs10_c00243{font-size:25.600000pt;}
.fs6_c00243{font-size:28.160000pt;}
.fsd_c00243{font-size:30.720000pt;}
.fs5_c00243{font-size:38.400000pt;}
.fs1_c00243{font-size:40.960000pt;}
.fs9_c00243{font-size:43.520000pt;}
.fs3_c00243{font-size:46.080000pt;}
.fs4_c00243{font-size:48.640000pt;}
.fs2_c00243{font-size:51.200000pt;}
.fs8_c00243{font-size:53.760000pt;}
.fsb_c00243{font-size:56.320000pt;}
.fsf_c00243{font-size:58.880000pt;}
.fse_c00243{font-size:61.440000pt;}
.fs7_c00243{font-size:64.000000pt;}
.fsc_c00243{font-size:66.560000pt;}
.fs0_c00243{font-size:69.120000pt;}
.y0_c00243{bottom:0.000000pt;}
.y78_c00243{bottom:53.120000pt;}
.y77_c00243{bottom:53.760000pt;}
.y7a_c00243{bottom:55.040000pt;}
.y7d_c00243{bottom:56.320000pt;}
.y79_c00243{bottom:56.960000pt;}
.y7b_c00243{bottom:57.600000pt;}
.y76_c00243{bottom:58.240000pt;}
.y7c_c00243{bottom:58.880000pt;}
.y72_c00243{bottom:93.440000pt;}
.y74_c00243{bottom:95.360000pt;}
.y73_c00243{bottom:96.000000pt;}
.y71_c00243{bottom:96.640000pt;}
.y75_c00243{bottom:97.920000pt;}
.y6f_c00243{bottom:131.200000pt;}
.y70_c00243{bottom:134.400000pt;}
.y6e_c00243{bottom:135.680000pt;}
.y68_c00243{bottom:168.960000pt;}
.y67_c00243{bottom:170.880000pt;}
.y66_c00243{bottom:171.520000pt;}
.y6d_c00243{bottom:172.160000pt;}
.y6c_c00243{bottom:172.800000pt;}
.y65_c00243{bottom:173.440000pt;}
.y62_c00243{bottom:207.360000pt;}
.y64_c00243{bottom:209.280000pt;}
.y69_c00243{bottom:210.560000pt;}
.y63_c00243{bottom:211.200000pt;}
.y61_c00243{bottom:211.840000pt;}
.y6b_c00243{bottom:212.480000pt;}
.y6a_c00243{bottom:213.120000pt;}
.y5f_c00243{bottom:247.680000pt;}
.y5d_c00243{bottom:248.960000pt;}
.y5e_c00243{bottom:249.600000pt;}
.y5c_c00243{bottom:250.240000pt;}
.y60_c00243{bottom:251.520000pt;}
.y59_c00243{bottom:285.440000pt;}
.y5a_c00243{bottom:286.720000pt;}
.y5b_c00243{bottom:288.000000pt;}
.y58_c00243{bottom:289.280000pt;}
.y55_c00243{bottom:323.840000pt;}
.y54_c00243{bottom:325.120000pt;}
.y56_c00243{bottom:325.760000pt;}
.y53_c00243{bottom:327.040000pt;}
.y57_c00243{bottom:327.680000pt;}
.y50_c00243{bottom:362.240000pt;}
.y51_c00243{bottom:364.160000pt;}
.y52_c00243{bottom:364.800000pt;}
.y4e_c00243{bottom:366.080000pt;}
.y4f_c00243{bottom:366.720000pt;}
.y4b_c00243{bottom:400.640000pt;}
.y4c_c00243{bottom:401.920000pt;}
.y4d_c00243{bottom:402.560000pt;}
.y49_c00243{bottom:403.840000pt;}
.y4a_c00243{bottom:405.120000pt;}
.y45_c00243{bottom:439.680000pt;}
.y46_c00243{bottom:440.320000pt;}
.y47_c00243{bottom:440.960000pt;}
.y48_c00243{bottom:441.600000pt;}
.y43_c00243{bottom:442.240000pt;}
.y44_c00243{bottom:443.520000pt;}
.y40_c00243{bottom:478.080000pt;}
.y41_c00243{bottom:479.360000pt;}
.y3f_c00243{bottom:480.000000pt;}
.y3d_c00243{bottom:480.640000pt;}
.y42_c00243{bottom:481.920000pt;}
.y3e_c00243{bottom:482.560000pt;}
.y3a_c00243{bottom:516.480000pt;}
.y3b_c00243{bottom:518.400000pt;}
.y38_c00243{bottom:519.680000pt;}
.y39_c00243{bottom:520.320000pt;}
.y3c_c00243{bottom:520.960000pt;}
.y33_c00243{bottom:554.880000pt;}
.y35_c00243{bottom:555.520000pt;}
.y37_c00243{bottom:556.160000pt;}
.y32_c00243{bottom:557.440000pt;}
.y34_c00243{bottom:558.080000pt;}
.y36_c00243{bottom:558.720000pt;}
.y2e_c00243{bottom:593.280000pt;}
.y30_c00243{bottom:594.560000pt;}
.y31_c00243{bottom:595.200000pt;}
.y2d_c00243{bottom:596.480000pt;}
.y2f_c00243{bottom:597.120000pt;}
.y2a_c00243{bottom:631.040000pt;}
.y2b_c00243{bottom:632.320000pt;}
.y28_c00243{bottom:632.960000pt;}
.y2c_c00243{bottom:634.240000pt;}
.y29_c00243{bottom:635.520000pt;}
.y23_c00243{bottom:669.440000pt;}
.y25_c00243{bottom:670.080000pt;}
.y26_c00243{bottom:670.720000pt;}
.y22_c00243{bottom:671.360000pt;}
.y24_c00243{bottom:672.640000pt;}
.y27_c00243{bottom:673.280000pt;}
.y21_c00243{bottom:711.680000pt;}
.y1f_c00243{bottom:737.280000pt;}
.y1d_c00243{bottom:737.920000pt;}
.y20_c00243{bottom:739.200000pt;}
.y1e_c00243{bottom:740.480000pt;}
.y1b_c00243{bottom:775.680000pt;}
.y17_c00243{bottom:776.320000pt;}
.y19_c00243{bottom:776.960000pt;}
.y1c_c00243{bottom:778.240000pt;}
.y18_c00243{bottom:779.520000pt;}
.y1a_c00243{bottom:780.160000pt;}
.y13_c00243{bottom:814.080000pt;}
.y11_c00243{bottom:815.360000pt;}
.y14_c00243{bottom:816.000000pt;}
.y16_c00243{bottom:816.640000pt;}
.y15_c00243{bottom:817.280000pt;}
.y12_c00243{bottom:817.920000pt;}
.yf_c00243{bottom:853.120000pt;}
.y10_c00243{bottom:853.760000pt;}
.yc_c00243{bottom:854.400000pt;}
.ye_c00243{bottom:856.320000pt;}
.yd_c00243{bottom:856.960000pt;}
.yb_c00243{bottom:884.480000pt;}
.y9_c00243{bottom:891.520000pt;}
.y5_c00243{bottom:892.160000pt;}
.y7_c00243{bottom:892.800000pt;}
.y6_c00243{bottom:893.440000pt;}
.ya_c00243{bottom:894.720000pt;}
.y8_c00243{bottom:895.360000pt;}
.y3_c00243{bottom:931.840000pt;}
.y4_c00243{bottom:933.120000pt;}
.y2_c00243{bottom:934.400000pt;}
.y1_c00243{bottom:973.440000pt;}
.hc_c00243{height:2.303750pt;}
.h13_c00243{height:23.037500pt;}
.h8_c00243{height:25.341250pt;}
.hf_c00243{height:27.645000pt;}
.h7_c00243{height:34.556250pt;}
.h3_c00243{height:36.860000pt;}
.hb_c00243{height:39.163750pt;}
.h5_c00243{height:41.467500pt;}
.h6_c00243{height:43.771250pt;}
.h4_c00243{height:46.075000pt;}
.h12_c00243{height:46.331250pt;}
.ha_c00243{height:48.378750pt;}
.hd_c00243{height:50.682500pt;}
.h11_c00243{height:52.986250pt;}
.h10_c00243{height:55.290000pt;}
.h9_c00243{height:57.593750pt;}
.he_c00243{height:59.897500pt;}
.h2_c00243{height:62.201250pt;}
.h0_c00243{height:1025.280000pt;}
.h1_c00243{height:1025.333333pt;}
.w1_c00243{width:702.000000pt;}
.w0_c00243{width:702.080000pt;}
.x0_c00243{left:0.000000pt;}
.x5_c00243{left:69.120000pt;}
.x21_c00243{left:70.400000pt;}
.x27_c00243{left:71.680000pt;}
.x2_c00243{left:115.200000pt;}
.x12_c00243{left:133.120000pt;}
.x3_c00243{left:134.400000pt;}
.x20_c00243{left:170.880000pt;}
.x6_c00243{left:172.160000pt;}
.x17_c00243{left:182.400000pt;}
.x7_c00243{left:200.960000pt;}
.x13_c00243{left:210.560000pt;}
.x26_c00243{left:211.840000pt;}
.x4_c00243{left:219.520000pt;}
.x8_c00243{left:220.800000pt;}
.x28_c00243{left:249.600000pt;}
.x1b_c00243{left:259.200000pt;}
.x18_c00243{left:278.400000pt;}
.x1e_c00243{left:296.960000pt;}
.x16_c00243{left:307.200000pt;}
.x19_c00243{left:326.400000pt;}
.x10_c00243{left:334.080000pt;}
.x2b_c00243{left:335.360000pt;}
.x1c_c00243{left:345.600000pt;}
.x9_c00243{left:354.560000pt;}
.x29_c00243{left:374.400000pt;}
.x1d_c00243{left:393.600000pt;}
.xa_c00243{left:403.200000pt;}
.x22_c00243{left:404.480000pt;}
.x2c_c00243{left:422.400000pt;}
.xb_c00243{left:489.600000pt;}
.x11_c00243{left:492.160000pt;}
.x1f_c00243{left:508.800000pt;}
.x23_c00243{left:510.080000pt;}
.x2a_c00243{left:526.720000pt;}
.x14_c00243{left:528.000000pt;}
.x1a_c00243{left:537.600000pt;}
.xc_c00243{left:557.440000pt;}
.xd_c00243{left:586.240000pt;}
.x24_c00243{left:595.840000pt;}
.xe_c00243{left:615.040000pt;}
.x1_c00243{left:618.240000pt;}
.x25_c00243{left:622.720000pt;}
.x15_c00243{left:624.000000pt;}
.xf_c00243{left:641.920000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_636ff36c7da253830bf8f078.woff2')format("woff");}.ff1_c00244{font-family:ff1_c00244;line-height:1.109863;font-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_c00244{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m39_c00244{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m3c_c00244{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.mf_c00244{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m24_c00244{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);}
.m2c_c00244{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);}
.m2f_c00244{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m5_c00244{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m38_c00244{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m1_c00244{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m9_c00244{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_c00244{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.me_c00244{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);}
.m3e_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);}
.m28_c00244{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m26_c00244{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m18_c00244{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m14_c00244{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m10_c00244{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_c00244{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mc_c00244{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.md_c00244{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m29_c00244{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m7_c00244{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m19_c00244{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m32_c00244{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3_c00244{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00244{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00244{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m34_c00244{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m12_c00244{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);}
.m40_c00244{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00244{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);}
.m33_c00244{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m21_c00244{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);}
.m31_c00244{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00244{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00244{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m4_c00244{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m2_c00244{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00244{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m13_c00244{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);}
.m0_c00244{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.ma_c00244{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);}
.m3d_c00244{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m23_c00244{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);}
.m35_c00244{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);}
.m8_c00244{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);}
.m22_c00244{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m11_c00244{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00244{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);}
.m44_c00244{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m43_c00244{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);}
.m30_c00244{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m37_c00244{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);}
.m42_c00244{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00244{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00244{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m27_c00244{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.mb_c00244{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00244{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);}
.m16_c00244{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00244{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m15_c00244{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m6_c00244{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m20_c00244{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m36_c00244{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m41_c00244{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00244{transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);}
.v1_c00244{vertical-align:-20.160000px;}
.v0_c00244{vertical-align:0.000000px;}
.ls0_c00244{letter-spacing:0.000000px;}
.sc__c00244{text-shadow:none;}
.sc0_c00244{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00244{-webkit-text-stroke:0px transparent;}
.sc0_c00244{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00244{word-spacing:0.000000px;}
.ws0_c00244{word-spacing:0.350724px;}
.ws2_c00244{word-spacing:2.954880px;}
.ws3_c00244{word-spacing:9.661680px;}
.ws1_c00244{word-spacing:10.675757px;}
.fc0_c00244{color:transparent;}
.fsb_c00244{font-size:34.560000px;}
.fs9_c00244{font-size:43.200000px;}
.fs6_c00244{font-size:46.080000px;}
.fs2_c00244{font-size:48.960000px;}
.fs7_c00244{font-size:51.840000px;}
.fs5_c00244{font-size:54.720000px;}
.fs0_c00244{font-size:57.600000px;}
.fs3_c00244{font-size:60.480000px;}
.fs8_c00244{font-size:66.240000px;}
.fs4_c00244{font-size:69.120000px;}
.fs1_c00244{font-size:72.000000px;}
.fsa_c00244{font-size:74.880000px;}
.fsc_c00244{font-size:77.760000px;}
.y0_c00244{bottom:0.000000px;}
.y6e_c00244{bottom:81.360000px;}
.y6f_c00244{bottom:82.080000px;}
.y70_c00244{bottom:84.240000px;}
.y71_c00244{bottom:85.680000px;}
.y6d_c00244{bottom:87.120000px;}
.y69_c00244{bottom:126.000000px;}
.y6a_c00244{bottom:128.160000px;}
.y6c_c00244{bottom:128.880000px;}
.y6b_c00244{bottom:129.600000px;}
.y68_c00244{bottom:130.320000px;}
.y67_c00244{bottom:172.080000px;}
.y66_c00244{bottom:172.800000px;}
.y64_c00244{bottom:202.320000px;}
.y63_c00244{bottom:203.040000px;}
.y61_c00244{bottom:203.760000px;}
.y60_c00244{bottom:205.200000px;}
.y62_c00244{bottom:205.920000px;}
.y65_c00244{bottom:207.360000px;}
.y5e_c00244{bottom:247.680000px;}
.y5d_c00244{bottom:249.840000px;}
.y5f_c00244{bottom:251.280000px;}
.y5a_c00244{bottom:288.000000px;}
.y59_c00244{bottom:288.720000px;}
.y5b_c00244{bottom:290.880000px;}
.y5c_c00244{bottom:291.600000px;}
.y58_c00244{bottom:292.320000px;}
.y57_c00244{bottom:293.040000px;}
.y54_c00244{bottom:331.200000px;}
.y53_c00244{bottom:332.640000px;}
.y56_c00244{bottom:334.080000px;}
.y52_c00244{bottom:335.520000px;}
.y55_c00244{bottom:336.960000px;}
.y4d_c00244{bottom:375.120000px;}
.y50_c00244{bottom:376.560000px;}
.y4e_c00244{bottom:377.280000px;}
.y4c_c00244{bottom:378.000000px;}
.y51_c00244{bottom:378.720000px;}
.y4f_c00244{bottom:379.440000px;}
.y48_c00244{bottom:417.600000px;}
.y49_c00244{bottom:418.320000px;}
.y4b_c00244{bottom:419.040000px;}
.y4a_c00244{bottom:419.760000px;}
.y47_c00244{bottom:421.200000px;}
.y37_c00244{bottom:460.800000px;}
.y38_c00244{bottom:462.240000px;}
.y3b_c00244{bottom:462.960000px;}
.y36_c00244{bottom:463.680000px;}
.y39_c00244{bottom:464.400000px;}
.y46_c00244{bottom:465.120000px;}
.y33_c00244{bottom:504.000000px;}
.y34_c00244{bottom:505.440000px;}
.y45_c00244{bottom:506.160000px;}
.y32_c00244{bottom:506.880000px;}
.y35_c00244{bottom:507.600000px;}
.y31_c00244{bottom:546.480000px;}
.y2f_c00244{bottom:547.200000px;}
.y3a_c00244{bottom:548.640000px;}
.y2e_c00244{bottom:549.360000px;}
.y30_c00244{bottom:550.800000px;}
.y2b_c00244{bottom:590.400000px;}
.y2d_c00244{bottom:591.120000px;}
.y43_c00244{bottom:591.840000px;}
.y2a_c00244{bottom:592.560000px;}
.y2c_c00244{bottom:594.000000px;}
.y44_c00244{bottom:594.720000px;}
.y27_c00244{bottom:633.600000px;}
.y28_c00244{bottom:634.320000px;}
.y26_c00244{bottom:635.040000px;}
.y42_c00244{bottom:635.760000px;}
.y29_c00244{bottom:637.200000px;}
.y41_c00244{bottom:637.920000px;}
.y25_c00244{bottom:677.520000px;}
.y24_c00244{bottom:678.240000px;}
.y40_c00244{bottom:678.960000px;}
.y23_c00244{bottom:720.720000px;}
.y20_c00244{bottom:721.440000px;}
.y3f_c00244{bottom:722.160000px;}
.y22_c00244{bottom:723.600000px;}
.y21_c00244{bottom:724.320000px;}
.y1f_c00244{bottom:764.640000px;}
.y1d_c00244{bottom:766.080000px;}
.y1e_c00244{bottom:767.520000px;}
.y1c_c00244{bottom:795.600000px;}
.y19_c00244{bottom:797.040000px;}
.y1a_c00244{bottom:799.200000px;}
.y1b_c00244{bottom:799.920000px;}
.y18_c00244{bottom:828.000000px;}
.y14_c00244{bottom:828.720000px;}
.y17_c00244{bottom:829.440000px;}
.y15_c00244{bottom:830.160000px;}
.y16_c00244{bottom:832.320000px;}
.y13_c00244{bottom:871.920000px;}
.y11_c00244{bottom:873.360000px;}
.y3e_c00244{bottom:874.800000px;}
.y12_c00244{bottom:875.520000px;}
.y10_c00244{bottom:914.400000px;}
.yf_c00244{bottom:915.120000px;}
.y3d_c00244{bottom:916.560000px;}
.ye_c00244{bottom:956.880000px;}
.y9_c00244{bottom:957.600000px;}
.y8_c00244{bottom:958.320000px;}
.yc_c00244{bottom:959.040000px;}
.yd_c00244{bottom:960.480000px;}
.yb_c00244{bottom:961.200000px;}
.ya_c00244{bottom:961.920000px;}
.y5_c00244{bottom:1000.080000px;}
.y7_c00244{bottom:1000.800000px;}
.y4_c00244{bottom:1001.520000px;}
.y6_c00244{bottom:1004.400000px;}
.y2_c00244{bottom:1043.280000px;}
.y1_c00244{bottom:1044.000000px;}
.y3c_c00244{bottom:1044.720000px;}
.y3_c00244{bottom:1046.880000px;}
.hd_c00244{height:31.100625px;}
.hb_c00244{height:38.875781px;}
.h8_c00244{height:41.467500px;}
.h4_c00244{height:44.059219px;}
.he_c00244{height:44.632969px;}
.h9_c00244{height:46.650937px;}
.h7_c00244{height:49.242656px;}
.h2_c00244{height:51.834375px;}
.h5_c00244{height:54.426094px;}
.ha_c00244{height:59.609531px;}
.h6_c00244{height:62.201250px;}
.h3_c00244{height:64.792969px;}
.hc_c00244{height:67.384687px;}
.hf_c00244{height:69.976406px;}
.h1_c00244{height:1149.000000px;}
.h0_c00244{height:1149.120000px;}
.w1_c00244{width:783.000000px;}
.w0_c00244{width:783.360000px;}
.x0_c00244{left:0.000000px;}
.x1_c00244{left:72.720000px;}
.x18_c00244{left:74.160000px;}
.x27_c00244{left:75.600000px;}
.x2_c00244{left:144.720000px;}
.xc_c00244{left:146.160000px;}
.xb_c00244{left:188.640000px;}
.x11_c00244{left:199.440000px;}
.x6_c00244{left:231.120000px;}
.x16_c00244{left:232.560000px;}
.xd_c00244{left:242.640000px;}
.x12_c00244{left:254.160000px;}
.x5_c00244{left:275.760000px;}
.x3_c00244{left:285.120000px;}
.xa_c00244{left:286.560000px;}
.x2b_c00244{left:298.080000px;}
.x1a_c00244{left:308.160000px;}
.x17_c00244{left:318.960000px;}
.x4_c00244{left:329.760000px;}
.x19_c00244{left:339.840000px;}
.xe_c00244{left:341.280000px;}
.x13_c00244{left:351.360000px;}
.x1d_c00244{left:362.880000px;}
.x28_c00244{left:371.520000px;}
.xf_c00244{left:383.040000px;}
.x2c_c00244{left:384.480000px;}
.x14_c00244{left:395.280000px;}
.x1b_c00244{left:415.440000px;}
.x10_c00244{left:438.480000px;}
.x7_c00244{left:460.080000px;}
.x1c_c00244{left:470.880000px;}
.x2f_c00244{left:479.520000px;}
.x8_c00244{left:514.080000px;}
.x2d_c00244{left:522.720000px;}
.x30_c00244{left:524.160000px;}
.x15_c00244{left:533.520000px;}
.x1e_c00244{left:555.840000px;}
.x1f_c00244{left:566.640000px;}
.x9_c00244{left:568.080000px;}
.x23_c00244{left:587.520000px;}
.x26_c00244{left:588.960000px;}
.x29_c00244{left:599.040000px;}
.x2e_c00244{left:620.640000px;}
.x20_c00244{left:622.080000px;}
.x32_c00244{left:652.320000px;}
.x21_c00244{left:653.760000px;}
.x31_c00244{left:663.840000px;}
.x2a_c00244{left:685.440000px;}
.x25_c00244{left:686.880000px;}
.x22_c00244{left:696.240000px;}
.x24_c00244{left:716.400000px;}
@media print{
.v1_c00244{vertical-align:-17.920000pt;}
.v0_c00244{vertical-align:0.000000pt;}
.ls0_c00244{letter-spacing:0.000000pt;}
.ws4_c00244{word-spacing:0.000000pt;}
.ws0_c00244{word-spacing:0.311754pt;}
.ws2_c00244{word-spacing:2.626560pt;}
.ws3_c00244{word-spacing:8.588160pt;}
.ws1_c00244{word-spacing:9.489562pt;}
.fsb_c00244{font-size:30.720000pt;}
.fs9_c00244{font-size:38.400000pt;}
.fs6_c00244{font-size:40.960000pt;}
.fs2_c00244{font-size:43.520000pt;}
.fs7_c00244{font-size:46.080000pt;}
.fs5_c00244{font-size:48.640000pt;}
.fs0_c00244{font-size:51.200000pt;}
.fs3_c00244{font-size:53.760000pt;}
.fs8_c00244{font-size:58.880000pt;}
.fs4_c00244{font-size:61.440000pt;}
.fs1_c00244{font-size:64.000000pt;}
.fsa_c00244{font-size:66.560000pt;}
.fsc_c00244{font-size:69.120000pt;}
.y0_c00244{bottom:0.000000pt;}
.y6e_c00244{bottom:72.320000pt;}
.y6f_c00244{bottom:72.960000pt;}
.y70_c00244{bottom:74.880000pt;}
.y71_c00244{bottom:76.160000pt;}
.y6d_c00244{bottom:77.440000pt;}
.y69_c00244{bottom:112.000000pt;}
.y6a_c00244{bottom:113.920000pt;}
.y6c_c00244{bottom:114.560000pt;}
.y6b_c00244{bottom:115.200000pt;}
.y68_c00244{bottom:115.840000pt;}
.y67_c00244{bottom:152.960000pt;}
.y66_c00244{bottom:153.600000pt;}
.y64_c00244{bottom:179.840000pt;}
.y63_c00244{bottom:180.480000pt;}
.y61_c00244{bottom:181.120000pt;}
.y60_c00244{bottom:182.400000pt;}
.y62_c00244{bottom:183.040000pt;}
.y65_c00244{bottom:184.320000pt;}
.y5e_c00244{bottom:220.160000pt;}
.y5d_c00244{bottom:222.080000pt;}
.y5f_c00244{bottom:223.360000pt;}
.y5a_c00244{bottom:256.000000pt;}
.y59_c00244{bottom:256.640000pt;}
.y5b_c00244{bottom:258.560000pt;}
.y5c_c00244{bottom:259.200000pt;}
.y58_c00244{bottom:259.840000pt;}
.y57_c00244{bottom:260.480000pt;}
.y54_c00244{bottom:294.400000pt;}
.y53_c00244{bottom:295.680000pt;}
.y56_c00244{bottom:296.960000pt;}
.y52_c00244{bottom:298.240000pt;}
.y55_c00244{bottom:299.520000pt;}
.y4d_c00244{bottom:333.440000pt;}
.y50_c00244{bottom:334.720000pt;}
.y4e_c00244{bottom:335.360000pt;}
.y4c_c00244{bottom:336.000000pt;}
.y51_c00244{bottom:336.640000pt;}
.y4f_c00244{bottom:337.280000pt;}
.y48_c00244{bottom:371.200000pt;}
.y49_c00244{bottom:371.840000pt;}
.y4b_c00244{bottom:372.480000pt;}
.y4a_c00244{bottom:373.120000pt;}
.y47_c00244{bottom:374.400000pt;}
.y37_c00244{bottom:409.600000pt;}
.y38_c00244{bottom:410.880000pt;}
.y3b_c00244{bottom:411.520000pt;}
.y36_c00244{bottom:412.160000pt;}
.y39_c00244{bottom:412.800000pt;}
.y46_c00244{bottom:413.440000pt;}
.y33_c00244{bottom:448.000000pt;}
.y34_c00244{bottom:449.280000pt;}
.y45_c00244{bottom:449.920000pt;}
.y32_c00244{bottom:450.560000pt;}
.y35_c00244{bottom:451.200000pt;}
.y31_c00244{bottom:485.760000pt;}
.y2f_c00244{bottom:486.400000pt;}
.y3a_c00244{bottom:487.680000pt;}
.y2e_c00244{bottom:488.320000pt;}
.y30_c00244{bottom:489.600000pt;}
.y2b_c00244{bottom:524.800000pt;}
.y2d_c00244{bottom:525.440000pt;}
.y43_c00244{bottom:526.080000pt;}
.y2a_c00244{bottom:526.720000pt;}
.y2c_c00244{bottom:528.000000pt;}
.y44_c00244{bottom:528.640000pt;}
.y27_c00244{bottom:563.200000pt;}
.y28_c00244{bottom:563.840000pt;}
.y26_c00244{bottom:564.480000pt;}
.y42_c00244{bottom:565.120000pt;}
.y29_c00244{bottom:566.400000pt;}
.y41_c00244{bottom:567.040000pt;}
.y25_c00244{bottom:602.240000pt;}
.y24_c00244{bottom:602.880000pt;}
.y40_c00244{bottom:603.520000pt;}
.y23_c00244{bottom:640.640000pt;}
.y20_c00244{bottom:641.280000pt;}
.y3f_c00244{bottom:641.920000pt;}
.y22_c00244{bottom:643.200000pt;}
.y21_c00244{bottom:643.840000pt;}
.y1f_c00244{bottom:679.680000pt;}
.y1d_c00244{bottom:680.960000pt;}
.y1e_c00244{bottom:682.240000pt;}
.y1c_c00244{bottom:707.200000pt;}
.y19_c00244{bottom:708.480000pt;}
.y1a_c00244{bottom:710.400000pt;}
.y1b_c00244{bottom:711.040000pt;}
.y18_c00244{bottom:736.000000pt;}
.y14_c00244{bottom:736.640000pt;}
.y17_c00244{bottom:737.280000pt;}
.y15_c00244{bottom:737.920000pt;}
.y16_c00244{bottom:739.840000pt;}
.y13_c00244{bottom:775.040000pt;}
.y11_c00244{bottom:776.320000pt;}
.y3e_c00244{bottom:777.600000pt;}
.y12_c00244{bottom:778.240000pt;}
.y10_c00244{bottom:812.800000pt;}
.yf_c00244{bottom:813.440000pt;}
.y3d_c00244{bottom:814.720000pt;}
.ye_c00244{bottom:850.560000pt;}
.y9_c00244{bottom:851.200000pt;}
.y8_c00244{bottom:851.840000pt;}
.yc_c00244{bottom:852.480000pt;}
.yd_c00244{bottom:853.760000pt;}
.yb_c00244{bottom:854.400000pt;}
.ya_c00244{bottom:855.040000pt;}
.y5_c00244{bottom:888.960000pt;}
.y7_c00244{bottom:889.600000pt;}
.y4_c00244{bottom:890.240000pt;}
.y6_c00244{bottom:892.800000pt;}
.y2_c00244{bottom:927.360000pt;}
.y1_c00244{bottom:928.000000pt;}
.y3c_c00244{bottom:928.640000pt;}
.y3_c00244{bottom:930.560000pt;}
.hd_c00244{height:27.645000pt;}
.hb_c00244{height:34.556250pt;}
.h8_c00244{height:36.860000pt;}
.h4_c00244{height:39.163750pt;}
.he_c00244{height:39.673750pt;}
.h9_c00244{height:41.467500pt;}
.h7_c00244{height:43.771250pt;}
.h2_c00244{height:46.075000pt;}
.h5_c00244{height:48.378750pt;}
.ha_c00244{height:52.986250pt;}
.h6_c00244{height:55.290000pt;}
.h3_c00244{height:57.593750pt;}
.hc_c00244{height:59.897500pt;}
.hf_c00244{height:62.201250pt;}
.h1_c00244{height:1021.333333pt;}
.h0_c00244{height:1021.440000pt;}
.w1_c00244{width:696.000000pt;}
.w0_c00244{width:696.320000pt;}
.x0_c00244{left:0.000000pt;}
.x1_c00244{left:64.640000pt;}
.x18_c00244{left:65.920000pt;}
.x27_c00244{left:67.200000pt;}
.x2_c00244{left:128.640000pt;}
.xc_c00244{left:129.920000pt;}
.xb_c00244{left:167.680000pt;}
.x11_c00244{left:177.280000pt;}
.x6_c00244{left:205.440000pt;}
.x16_c00244{left:206.720000pt;}
.xd_c00244{left:215.680000pt;}
.x12_c00244{left:225.920000pt;}
.x5_c00244{left:245.120000pt;}
.x3_c00244{left:253.440000pt;}
.xa_c00244{left:254.720000pt;}
.x2b_c00244{left:264.960000pt;}
.x1a_c00244{left:273.920000pt;}
.x17_c00244{left:283.520000pt;}
.x4_c00244{left:293.120000pt;}
.x19_c00244{left:302.080000pt;}
.xe_c00244{left:303.360000pt;}
.x13_c00244{left:312.320000pt;}
.x1d_c00244{left:322.560000pt;}
.x28_c00244{left:330.240000pt;}
.xf_c00244{left:340.480000pt;}
.x2c_c00244{left:341.760000pt;}
.x14_c00244{left:351.360000pt;}
.x1b_c00244{left:369.280000pt;}
.x10_c00244{left:389.760000pt;}
.x7_c00244{left:408.960000pt;}
.x1c_c00244{left:418.560000pt;}
.x2f_c00244{left:426.240000pt;}
.x8_c00244{left:456.960000pt;}
.x2d_c00244{left:464.640000pt;}
.x30_c00244{left:465.920000pt;}
.x15_c00244{left:474.240000pt;}
.x1e_c00244{left:494.080000pt;}
.x1f_c00244{left:503.680000pt;}
.x9_c00244{left:504.960000pt;}
.x23_c00244{left:522.240000pt;}
.x26_c00244{left:523.520000pt;}
.x29_c00244{left:532.480000pt;}
.x2e_c00244{left:551.680000pt;}
.x20_c00244{left:552.960000pt;}
.x32_c00244{left:579.840000pt;}
.x21_c00244{left:581.120000pt;}
.x31_c00244{left:590.080000pt;}
.x2a_c00244{left:609.280000pt;}
.x25_c00244{left:610.560000pt;}
.x22_c00244{left:618.880000pt;}
.x24_c00244{left:636.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3d58bd450806cac40b9d8eff.woff2')format("woff");}.ff1_c00245{font-family:ff1_c00245;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m46_c00245{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m3c_c00245{transform:matrix(0.237950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237950,0.000000,0.000000,0.250000,0,0);}
.m41_c00245{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m43_c00245{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m2f_c00245{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00245{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);}
.m47_c00245{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.me_c00245{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_c00245{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m2_c00245{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);}
.m2a_c00245{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00245{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m22_c00245{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mc_c00245{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);}
.m25_c00245{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m6_c00245{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m4_c00245{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00245{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m19_c00245{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m8_c00245{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m40_c00245{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1_c00245{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m48_c00245{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m15_c00245{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m17_c00245{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00245{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00245{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m28_c00245{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00245{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m45_c00245{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);}
.m39_c00245{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m32_c00245{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m0_c00245{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m26_c00245{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.mb_c00245{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m12_c00245{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);}
.m35_c00245{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m34_c00245{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);}
.m33_c00245{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.mf_c00245{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);}
.m24_c00245{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.md_c00245{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);}
.m16_c00245{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);}
.m38_c00245{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m5_c00245{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);}
.m2c_c00245{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m11_c00245{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m49_c00245{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);}
.m36_c00245{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m3_c00245{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m14_c00245{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00245{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);}
.m29_c00245{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00245{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00245{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_c00245{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m21_c00245{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);}
.m4c_c00245{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);}
.m20_c00245{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00245{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m9_c00245{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);}
.m10_c00245{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m30_c00245{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m44_c00245{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m7_c00245{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00245{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00245{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);}
.m2e_c00245{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00245{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m23_c00245{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.ma_c00245{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00245{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00245{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m27_c00245{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m37_c00245{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);}
.m31_c00245{transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00245{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m42_c00245{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00245{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00245{transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);}
.v0_c00245{vertical-align:0.000000px;}
.ls0_c00245{letter-spacing:0.000000px;}
.sc__c00245{text-shadow:none;}
.sc0_c00245{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00245{-webkit-text-stroke:0px transparent;}
.sc0_c00245{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00245{word-spacing:0.000000px;}
.fc0_c00245{color:transparent;}
.fs10_c00245{font-size:14.400000px;}
.fs11_c00245{font-size:31.680000px;}
.fs9_c00245{font-size:34.560000px;}
.fse_c00245{font-size:37.440000px;}
.fsf_c00245{font-size:40.320000px;}
.fs8_c00245{font-size:43.200000px;}
.fs4_c00245{font-size:46.080000px;}
.fsc_c00245{font-size:48.960000px;}
.fsd_c00245{font-size:51.840000px;}
.fsa_c00245{font-size:54.720000px;}
.fs6_c00245{font-size:57.600000px;}
.fsb_c00245{font-size:60.480000px;}
.fs0_c00245{font-size:63.360000px;}
.fs3_c00245{font-size:66.240000px;}
.fs5_c00245{font-size:69.120000px;}
.fs1_c00245{font-size:72.000000px;}
.fs7_c00245{font-size:74.880000px;}
.fs2_c00245{font-size:77.760000px;}
.y0_c00245{bottom:0.000000px;}
.y60_c00245{bottom:23.760000px;}
.y80_c00245{bottom:27.360000px;}
.y81_c00245{bottom:28.080000px;}
.y5f_c00245{bottom:29.520000px;}
.y5e_c00245{bottom:30.960000px;}
.y5b_c00245{bottom:67.680000px;}
.y5d_c00245{bottom:68.400000px;}
.y59_c00245{bottom:69.840000px;}
.y57_c00245{bottom:70.560000px;}
.y5c_c00245{bottom:71.280000px;}
.y5a_c00245{bottom:72.000000px;}
.y58_c00245{bottom:72.720000px;}
.y56_c00245{bottom:110.880000px;}
.y7e_c00245{bottom:114.480000px;}
.y54_c00245{bottom:115.920000px;}
.y55_c00245{bottom:116.640000px;}
.y7f_c00245{bottom:117.360000px;}
.y53_c00245{bottom:154.080000px;}
.y7c_c00245{bottom:157.680000px;}
.y51_c00245{bottom:159.120000px;}
.y52_c00245{bottom:159.840000px;}
.y7d_c00245{bottom:160.560000px;}
.y50_c00245{bottom:197.280000px;}
.y79_c00245{bottom:200.160000px;}
.y7a_c00245{bottom:200.880000px;}
.y4e_c00245{bottom:201.600000px;}
.y4f_c00245{bottom:202.320000px;}
.y7b_c00245{bottom:203.040000px;}
.y4c_c00245{bottom:240.480000px;}
.y4d_c00245{bottom:241.200000px;}
.y4b_c00245{bottom:243.360000px;}
.y49_c00245{bottom:244.800000px;}
.y4a_c00245{bottom:245.520000px;}
.y78_c00245{bottom:246.960000px;}
.y48_c00245{bottom:284.400000px;}
.y47_c00245{bottom:286.560000px;}
.y77_c00245{bottom:287.280000px;}
.y45_c00245{bottom:288.720000px;}
.y46_c00245{bottom:289.440000px;}
.y44_c00245{bottom:327.600000px;}
.y76_c00245{bottom:330.480000px;}
.y41_c00245{bottom:331.200000px;}
.y43_c00245{bottom:331.920000px;}
.y42_c00245{bottom:332.640000px;}
.y40_c00245{bottom:371.520000px;}
.y74_c00245{bottom:372.960000px;}
.y75_c00245{bottom:373.680000px;}
.y3e_c00245{bottom:374.400000px;}
.y3f_c00245{bottom:375.840000px;}
.y3d_c00245{bottom:414.720000px;}
.y3b_c00245{bottom:416.160000px;}
.y73_c00245{bottom:416.880000px;}
.y39_c00245{bottom:417.600000px;}
.y3c_c00245{bottom:418.320000px;}
.y3a_c00245{bottom:419.040000px;}
.y38_c00245{bottom:457.920000px;}
.y37_c00245{bottom:459.360000px;}
.y72_c00245{bottom:460.080000px;}
.y35_c00245{bottom:461.520000px;}
.y36_c00245{bottom:462.960000px;}
.y32_c00245{bottom:503.280000px;}
.y34_c00245{bottom:504.000000px;}
.y33_c00245{bottom:505.440000px;}
.y31_c00245{bottom:506.880000px;}
.y30_c00245{bottom:555.840000px;}
.y2f_c00245{bottom:556.560000px;}
.y2d_c00245{bottom:557.280000px;}
.y71_c00245{bottom:559.440000px;}
.y2e_c00245{bottom:560.160000px;}
.y2c_c00245{bottom:599.040000px;}
.y2b_c00245{bottom:599.760000px;}
.y6f_c00245{bottom:600.480000px;}
.y6e_c00245{bottom:601.200000px;}
.y70_c00245{bottom:602.640000px;}
.y6d_c00245{bottom:603.360000px;}
.y28_c00245{bottom:641.520000px;}
.y27_c00245{bottom:642.240000px;}
.y2a_c00245{bottom:642.960000px;}
.y6c_c00245{bottom:643.680000px;}
.y29_c00245{bottom:645.120000px;}
.y26_c00245{bottom:684.720000px;}
.y25_c00245{bottom:685.440000px;}
.y6b_c00245{bottom:686.160000px;}
.y21_c00245{bottom:727.920000px;}
.y24_c00245{bottom:728.640000px;}
.y69_c00245{bottom:729.360000px;}
.y23_c00245{bottom:730.800000px;}
.y22_c00245{bottom:731.520000px;}
.y6a_c00245{bottom:732.240000px;}
.y1e_c00245{bottom:761.040000px;}
.y20_c00245{bottom:763.200000px;}
.y1f_c00245{bottom:763.920000px;}
.y1a_c00245{bottom:770.400000px;}
.y18_c00245{bottom:771.120000px;}
.y1b_c00245{bottom:771.840000px;}
.y68_c00245{bottom:772.560000px;}
.y1c_c00245{bottom:773.280000px;}
.y1d_c00245{bottom:774.000000px;}
.y19_c00245{bottom:774.720000px;}
.y17_c00245{bottom:813.600000px;}
.y16_c00245{bottom:814.320000px;}
.y67_c00245{bottom:815.040000px;}
.y66_c00245{bottom:815.760000px;}
.y14_c00245{bottom:856.800000px;}
.y12_c00245{bottom:857.520000px;}
.y13_c00245{bottom:858.240000px;}
.y64_c00245{bottom:858.960000px;}
.y65_c00245{bottom:859.680000px;}
.y63_c00245{bottom:860.400000px;}
.y15_c00245{bottom:861.120000px;}
.yf_c00245{bottom:900.000000px;}
.y11_c00245{bottom:900.720000px;}
.y62_c00245{bottom:901.440000px;}
.y10_c00245{bottom:904.320000px;}
.ye_c00245{bottom:943.200000px;}
.yb_c00245{bottom:943.920000px;}
.yd_c00245{bottom:944.640000px;}
.y61_c00245{bottom:946.080000px;}
.yc_c00245{bottom:947.520000px;}
.y7_c00245{bottom:986.400000px;}
.y6_c00245{bottom:987.120000px;}
.y9_c00245{bottom:987.840000px;}
.y8_c00245{bottom:988.560000px;}
.ya_c00245{bottom:990.720000px;}
.y5_c00245{bottom:1029.600000px;}
.y2_c00245{bottom:1030.320000px;}
.y1_c00245{bottom:1031.040000px;}
.y4_c00245{bottom:1033.200000px;}
.y3_c00245{bottom:1095.120000px;}
.h12_c00245{height:12.958594px;}
.h13_c00245{height:28.508906px;}
.hb_c00245{height:31.100625px;}
.h10_c00245{height:33.692344px;}
.h11_c00245{height:36.284062px;}
.ha_c00245{height:38.875781px;}
.h6_c00245{height:41.467500px;}
.he_c00245{height:44.059219px;}
.hf_c00245{height:46.650937px;}
.hc_c00245{height:49.242656px;}
.h8_c00245{height:51.834375px;}
.hd_c00245{height:54.426094px;}
.h2_c00245{height:57.017812px;}
.h5_c00245{height:59.609531px;}
.h7_c00245{height:62.201250px;}
.h3_c00245{height:64.792969px;}
.h9_c00245{height:67.384687px;}
.h4_c00245{height:69.976406px;}
.h1_c00245{height:1143.750000px;}
.h0_c00245{height:1144.080000px;}
.w0_c00245{width:775.440000px;}
.w1_c00245{width:775.500000px;}
.x0_c00245{left:0.000000px;}
.x1_c00245{left:66.960000px;}
.x15_c00245{left:68.400000px;}
.x25_c00245{left:69.840000px;}
.x27_c00245{left:71.280000px;}
.x2b_c00245{left:72.720000px;}
.x23_c00245{left:118.800000px;}
.x2_c00245{left:140.400000px;}
.x1d_c00245{left:141.840000px;}
.xe_c00245{left:183.600000px;}
.x2a_c00245{left:185.040000px;}
.x13_c00245{left:194.400000px;}
.x26_c00245{left:216.000000px;}
.x1b_c00245{left:226.800000px;}
.x20_c00245{left:228.240000px;}
.xf_c00245{left:236.160000px;}
.x22_c00245{left:238.320000px;}
.x11_c00245{left:259.200000px;}
.x1e_c00245{left:260.640000px;}
.x16_c00245{left:270.000000px;}
.x24_c00245{left:272.160000px;}
.x10_c00245{left:280.800000px;}
.x1c_c00245{left:282.240000px;}
.x12_c00245{left:302.400000px;}
.x1f_c00245{left:303.840000px;}
.x7_c00245{left:324.000000px;}
.x14_c00245{left:345.600000px;}
.x8_c00245{left:378.720000px;}
.x17_c00245{left:388.800000px;}
.x28_c00245{left:399.600000px;}
.x21_c00245{left:401.040000px;}
.x29_c00245{left:422.640000px;}
.x19_c00245{left:432.000000px;}
.x18_c00245{left:443.520000px;}
.x1a_c00245{left:464.400000px;}
.x9_c00245{left:486.000000px;}
.xa_c00245{left:541.440000px;}
.x30_c00245{left:552.960000px;}
.x2f_c00245{left:561.600000px;}
.x2e_c00245{left:563.760000px;}
.xb_c00245{left:583.920000px;}
.x31_c00245{left:585.360000px;}
.x4_c00245{left:594.720000px;}
.x2d_c00245{left:617.040000px;}
.xc_c00245{left:648.720000px;}
.x33_c00245{left:650.160000px;}
.x5_c00245{left:660.240000px;}
.x3_c00245{left:682.560000px;}
.xd_c00245{left:691.920000px;}
.x6_c00245{left:702.000000px;}
.x2c_c00245{left:711.360000px;}
.x32_c00245{left:712.800000px;}
@media print{
.v0_c00245{vertical-align:0.000000pt;}
.ls0_c00245{letter-spacing:0.000000pt;}
.ws0_c00245{word-spacing:0.000000pt;}
.fs10_c00245{font-size:12.800000pt;}
.fs11_c00245{font-size:28.160000pt;}
.fs9_c00245{font-size:30.720000pt;}
.fse_c00245{font-size:33.280000pt;}
.fsf_c00245{font-size:35.840000pt;}
.fs8_c00245{font-size:38.400000pt;}
.fs4_c00245{font-size:40.960000pt;}
.fsc_c00245{font-size:43.520000pt;}
.fsd_c00245{font-size:46.080000pt;}
.fsa_c00245{font-size:48.640000pt;}
.fs6_c00245{font-size:51.200000pt;}
.fsb_c00245{font-size:53.760000pt;}
.fs0_c00245{font-size:56.320000pt;}
.fs3_c00245{font-size:58.880000pt;}
.fs5_c00245{font-size:61.440000pt;}
.fs1_c00245{font-size:64.000000pt;}
.fs7_c00245{font-size:66.560000pt;}
.fs2_c00245{font-size:69.120000pt;}
.y0_c00245{bottom:0.000000pt;}
.y60_c00245{bottom:21.120000pt;}
.y80_c00245{bottom:24.320000pt;}
.y81_c00245{bottom:24.960000pt;}
.y5f_c00245{bottom:26.240000pt;}
.y5e_c00245{bottom:27.520000pt;}
.y5b_c00245{bottom:60.160000pt;}
.y5d_c00245{bottom:60.800000pt;}
.y59_c00245{bottom:62.080000pt;}
.y57_c00245{bottom:62.720000pt;}
.y5c_c00245{bottom:63.360000pt;}
.y5a_c00245{bottom:64.000000pt;}
.y58_c00245{bottom:64.640000pt;}
.y56_c00245{bottom:98.560000pt;}
.y7e_c00245{bottom:101.760000pt;}
.y54_c00245{bottom:103.040000pt;}
.y55_c00245{bottom:103.680000pt;}
.y7f_c00245{bottom:104.320000pt;}
.y53_c00245{bottom:136.960000pt;}
.y7c_c00245{bottom:140.160000pt;}
.y51_c00245{bottom:141.440000pt;}
.y52_c00245{bottom:142.080000pt;}
.y7d_c00245{bottom:142.720000pt;}
.y50_c00245{bottom:175.360000pt;}
.y79_c00245{bottom:177.920000pt;}
.y7a_c00245{bottom:178.560000pt;}
.y4e_c00245{bottom:179.200000pt;}
.y4f_c00245{bottom:179.840000pt;}
.y7b_c00245{bottom:180.480000pt;}
.y4c_c00245{bottom:213.760000pt;}
.y4d_c00245{bottom:214.400000pt;}
.y4b_c00245{bottom:216.320000pt;}
.y49_c00245{bottom:217.600000pt;}
.y4a_c00245{bottom:218.240000pt;}
.y78_c00245{bottom:219.520000pt;}
.y48_c00245{bottom:252.800000pt;}
.y47_c00245{bottom:254.720000pt;}
.y77_c00245{bottom:255.360000pt;}
.y45_c00245{bottom:256.640000pt;}
.y46_c00245{bottom:257.280000pt;}
.y44_c00245{bottom:291.200000pt;}
.y76_c00245{bottom:293.760000pt;}
.y41_c00245{bottom:294.400000pt;}
.y43_c00245{bottom:295.040000pt;}
.y42_c00245{bottom:295.680000pt;}
.y40_c00245{bottom:330.240000pt;}
.y74_c00245{bottom:331.520000pt;}
.y75_c00245{bottom:332.160000pt;}
.y3e_c00245{bottom:332.800000pt;}
.y3f_c00245{bottom:334.080000pt;}
.y3d_c00245{bottom:368.640000pt;}
.y3b_c00245{bottom:369.920000pt;}
.y73_c00245{bottom:370.560000pt;}
.y39_c00245{bottom:371.200000pt;}
.y3c_c00245{bottom:371.840000pt;}
.y3a_c00245{bottom:372.480000pt;}
.y38_c00245{bottom:407.040000pt;}
.y37_c00245{bottom:408.320000pt;}
.y72_c00245{bottom:408.960000pt;}
.y35_c00245{bottom:410.240000pt;}
.y36_c00245{bottom:411.520000pt;}
.y32_c00245{bottom:447.360000pt;}
.y34_c00245{bottom:448.000000pt;}
.y33_c00245{bottom:449.280000pt;}
.y31_c00245{bottom:450.560000pt;}
.y30_c00245{bottom:494.080000pt;}
.y2f_c00245{bottom:494.720000pt;}
.y2d_c00245{bottom:495.360000pt;}
.y71_c00245{bottom:497.280000pt;}
.y2e_c00245{bottom:497.920000pt;}
.y2c_c00245{bottom:532.480000pt;}
.y2b_c00245{bottom:533.120000pt;}
.y6f_c00245{bottom:533.760000pt;}
.y6e_c00245{bottom:534.400000pt;}
.y70_c00245{bottom:535.680000pt;}
.y6d_c00245{bottom:536.320000pt;}
.y28_c00245{bottom:570.240000pt;}
.y27_c00245{bottom:570.880000pt;}
.y2a_c00245{bottom:571.520000pt;}
.y6c_c00245{bottom:572.160000pt;}
.y29_c00245{bottom:573.440000pt;}
.y26_c00245{bottom:608.640000pt;}
.y25_c00245{bottom:609.280000pt;}
.y6b_c00245{bottom:609.920000pt;}
.y21_c00245{bottom:647.040000pt;}
.y24_c00245{bottom:647.680000pt;}
.y69_c00245{bottom:648.320000pt;}
.y23_c00245{bottom:649.600000pt;}
.y22_c00245{bottom:650.240000pt;}
.y6a_c00245{bottom:650.880000pt;}
.y1e_c00245{bottom:676.480000pt;}
.y20_c00245{bottom:678.400000pt;}
.y1f_c00245{bottom:679.040000pt;}
.y1a_c00245{bottom:684.800000pt;}
.y18_c00245{bottom:685.440000pt;}
.y1b_c00245{bottom:686.080000pt;}
.y68_c00245{bottom:686.720000pt;}
.y1c_c00245{bottom:687.360000pt;}
.y1d_c00245{bottom:688.000000pt;}
.y19_c00245{bottom:688.640000pt;}
.y17_c00245{bottom:723.200000pt;}
.y16_c00245{bottom:723.840000pt;}
.y67_c00245{bottom:724.480000pt;}
.y66_c00245{bottom:725.120000pt;}
.y14_c00245{bottom:761.600000pt;}
.y12_c00245{bottom:762.240000pt;}
.y13_c00245{bottom:762.880000pt;}
.y64_c00245{bottom:763.520000pt;}
.y65_c00245{bottom:764.160000pt;}
.y63_c00245{bottom:764.800000pt;}
.y15_c00245{bottom:765.440000pt;}
.yf_c00245{bottom:800.000000pt;}
.y11_c00245{bottom:800.640000pt;}
.y62_c00245{bottom:801.280000pt;}
.y10_c00245{bottom:803.840000pt;}
.ye_c00245{bottom:838.400000pt;}
.yb_c00245{bottom:839.040000pt;}
.yd_c00245{bottom:839.680000pt;}
.y61_c00245{bottom:840.960000pt;}
.yc_c00245{bottom:842.240000pt;}
.y7_c00245{bottom:876.800000pt;}
.y6_c00245{bottom:877.440000pt;}
.y9_c00245{bottom:878.080000pt;}
.y8_c00245{bottom:878.720000pt;}
.ya_c00245{bottom:880.640000pt;}
.y5_c00245{bottom:915.200000pt;}
.y2_c00245{bottom:915.840000pt;}
.y1_c00245{bottom:916.480000pt;}
.y4_c00245{bottom:918.400000pt;}
.y3_c00245{bottom:973.440000pt;}
.h12_c00245{height:11.518750pt;}
.h13_c00245{height:25.341250pt;}
.hb_c00245{height:27.645000pt;}
.h10_c00245{height:29.948750pt;}
.h11_c00245{height:32.252500pt;}
.ha_c00245{height:34.556250pt;}
.h6_c00245{height:36.860000pt;}
.he_c00245{height:39.163750pt;}
.hf_c00245{height:41.467500pt;}
.hc_c00245{height:43.771250pt;}
.h8_c00245{height:46.075000pt;}
.hd_c00245{height:48.378750pt;}
.h2_c00245{height:50.682500pt;}
.h5_c00245{height:52.986250pt;}
.h7_c00245{height:55.290000pt;}
.h3_c00245{height:57.593750pt;}
.h9_c00245{height:59.897500pt;}
.h4_c00245{height:62.201250pt;}
.h1_c00245{height:1016.666667pt;}
.h0_c00245{height:1016.960000pt;}
.w0_c00245{width:689.280000pt;}
.w1_c00245{width:689.333333pt;}
.x0_c00245{left:0.000000pt;}
.x1_c00245{left:59.520000pt;}
.x15_c00245{left:60.800000pt;}
.x25_c00245{left:62.080000pt;}
.x27_c00245{left:63.360000pt;}
.x2b_c00245{left:64.640000pt;}
.x23_c00245{left:105.600000pt;}
.x2_c00245{left:124.800000pt;}
.x1d_c00245{left:126.080000pt;}
.xe_c00245{left:163.200000pt;}
.x2a_c00245{left:164.480000pt;}
.x13_c00245{left:172.800000pt;}
.x26_c00245{left:192.000000pt;}
.x1b_c00245{left:201.600000pt;}
.x20_c00245{left:202.880000pt;}
.xf_c00245{left:209.920000pt;}
.x22_c00245{left:211.840000pt;}
.x11_c00245{left:230.400000pt;}
.x1e_c00245{left:231.680000pt;}
.x16_c00245{left:240.000000pt;}
.x24_c00245{left:241.920000pt;}
.x10_c00245{left:249.600000pt;}
.x1c_c00245{left:250.880000pt;}
.x12_c00245{left:268.800000pt;}
.x1f_c00245{left:270.080000pt;}
.x7_c00245{left:288.000000pt;}
.x14_c00245{left:307.200000pt;}
.x8_c00245{left:336.640000pt;}
.x17_c00245{left:345.600000pt;}
.x28_c00245{left:355.200000pt;}
.x21_c00245{left:356.480000pt;}
.x29_c00245{left:375.680000pt;}
.x19_c00245{left:384.000000pt;}
.x18_c00245{left:394.240000pt;}
.x1a_c00245{left:412.800000pt;}
.x9_c00245{left:432.000000pt;}
.xa_c00245{left:481.280000pt;}
.x30_c00245{left:491.520000pt;}
.x2f_c00245{left:499.200000pt;}
.x2e_c00245{left:501.120000pt;}
.xb_c00245{left:519.040000pt;}
.x31_c00245{left:520.320000pt;}
.x4_c00245{left:528.640000pt;}
.x2d_c00245{left:548.480000pt;}
.xc_c00245{left:576.640000pt;}
.x33_c00245{left:577.920000pt;}
.x5_c00245{left:586.880000pt;}
.x3_c00245{left:606.720000pt;}
.xd_c00245{left:615.040000pt;}
.x6_c00245{left:624.000000pt;}
.x2c_c00245{left:632.320000pt;}
.x32_c00245{left:633.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ce15bf2616d233e377914125.woff2')format("woff");}.ff1_c00246{font-family:ff1_c00246;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m49_c00246{transform:matrix(0.206575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206575,0.000000,0.000000,0.250000,0,0);}
.m13_c00246{transform:matrix(0.235625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235625,0.000000,0.000000,0.250000,0,0);}
.m24_c00246{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00246{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00246{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m17_c00246{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m23_c00246{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_c00246{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.ma_c00246{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m11_c00246{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00246{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m5_c00246{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m18_c00246{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00246{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);}
.m2c_c00246{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mc_c00246{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m34_c00246{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m41_c00246{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00246{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m15_c00246{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m16_c00246{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m25_c00246{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m46_c00246{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m14_c00246{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m22_c00246{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00246{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m39_c00246{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m45_c00246{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m27_c00246{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1_c00246{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m28_c00246{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00246{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m7_c00246{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m9_c00246{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m0_c00246{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00246{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m6_c00246{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m3_c00246{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);}
.m30_c00246{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.me_c00246{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m21_c00246{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);}
.m38_c00246{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.mf_c00246{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);}
.mb_c00246{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);}
.m40_c00246{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m33_c00246{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m48_c00246{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m36_c00246{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m43_c00246{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00246{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m8_c00246{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);}
.m3b_c00246{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00246{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);}
.m29_c00246{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m31_c00246{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_c00246{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00246{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00246{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m2_c00246{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m42_c00246{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);}
.m32_c00246{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00246{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m4_c00246{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m10_c00246{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m26_c00246{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m12_c00246{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);}
.m44_c00246{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00246{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);}
.m3d_c00246{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m37_c00246{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00246{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.m47_c00246{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.m35_c00246{transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);}
.m19_c00246{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.v2_c00246{vertical-align:-8.640000px;}
.v0_c00246{vertical-align:0.000000px;}
.v1_c00246{vertical-align:5.760000px;}
.ls0_c00246{letter-spacing:0.000000px;}
.sc__c00246{text-shadow:none;}
.sc0_c00246{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00246{-webkit-text-stroke:0px transparent;}
.sc0_c00246{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00246{word-spacing:0.000000px;}
.ws1_c00246{word-spacing:17.079600px;}
.ws0_c00246{word-spacing:40.823040px;}
.fc0_c00246{color:transparent;}
.fsd_c00246{font-size:31.680000px;}
.fs4_c00246{font-size:34.560000px;}
.fs2_c00246{font-size:43.200000px;}
.fs3_c00246{font-size:46.080000px;}
.fs1_c00246{font-size:48.960000px;}
.fsa_c00246{font-size:51.840000px;}
.fs8_c00246{font-size:54.720000px;}
.fs9_c00246{font-size:57.600000px;}
.fs0_c00246{font-size:60.480000px;}
.fsc_c00246{font-size:63.360000px;}
.fsb_c00246{font-size:66.240000px;}
.fs6_c00246{font-size:69.120000px;}
.fs7_c00246{font-size:72.000000px;}
.fs5_c00246{font-size:74.880000px;}
.fse_c00246{font-size:103.680000px;}
.y0_c00246{bottom:0.000000px;}
.y66_c00246{bottom:72.000000px;}
.y71_c00246{bottom:76.320000px;}
.y72_c00246{bottom:77.040000px;}
.y65_c00246{bottom:77.760000px;}
.y64_c00246{bottom:115.920000px;}
.y70_c00246{bottom:120.240000px;}
.y63_c00246{bottom:120.960000px;}
.y6d_c00246{bottom:153.360000px;}
.y62_c00246{bottom:159.840000px;}
.y6f_c00246{bottom:163.440000px;}
.y60_c00246{bottom:164.160000px;}
.y61_c00246{bottom:164.880000px;}
.y6e_c00246{bottom:165.600000px;}
.y5f_c00246{bottom:203.040000px;}
.y6c_c00246{bottom:205.920000px;}
.y5e_c00246{bottom:206.640000px;}
.y5c_c00246{bottom:207.360000px;}
.y5d_c00246{bottom:208.080000px;}
.y6b_c00246{bottom:208.800000px;}
.y5b_c00246{bottom:246.240000px;}
.y69_c00246{bottom:249.120000px;}
.y59_c00246{bottom:250.560000px;}
.y5a_c00246{bottom:252.000000px;}
.y6a_c00246{bottom:252.720000px;}
.y58_c00246{bottom:290.880000px;}
.y57_c00246{bottom:293.760000px;}
.y56_c00246{bottom:294.480000px;}
.y55_c00246{bottom:295.200000px;}
.y52_c00246{bottom:322.560000px;}
.y54_c00246{bottom:323.280000px;}
.y53_c00246{bottom:324.000000px;}
.y4f_c00246{bottom:325.440000px;}
.y51_c00246{bottom:326.160000px;}
.y50_c00246{bottom:326.880000px;}
.y68_c00246{bottom:328.320000px;}
.y4d_c00246{bottom:366.480000px;}
.y4e_c00246{bottom:367.200000px;}
.y4c_c00246{bottom:368.640000px;}
.y67_c00246{bottom:369.360000px;}
.y4b_c00246{bottom:408.960000px;}
.y48_c00246{bottom:411.120000px;}
.y4a_c00246{bottom:413.280000px;}
.y49_c00246{bottom:414.000000px;}
.y46_c00246{bottom:452.880000px;}
.y47_c00246{bottom:453.600000px;}
.y44_c00246{bottom:455.760000px;}
.y45_c00246{bottom:456.480000px;}
.y3e_c00246{bottom:485.280000px;}
.y40_c00246{bottom:486.000000px;}
.y3d_c00246{bottom:486.720000px;}
.y43_c00246{bottom:487.440000px;}
.y42_c00246{bottom:488.160000px;}
.y3f_c00246{bottom:488.880000px;}
.y41_c00246{bottom:489.600000px;}
.y37_c00246{bottom:527.760000px;}
.y34_c00246{bottom:529.920000px;}
.y3c_c00246{bottom:530.640000px;}
.y36_c00246{bottom:532.080000px;}
.y35_c00246{bottom:532.800000px;}
.y31_c00246{bottom:572.400000px;}
.y30_c00246{bottom:573.120000px;}
.y3b_c00246{bottom:573.840000px;}
.y32_c00246{bottom:574.560000px;}
.y33_c00246{bottom:575.280000px;}
.y3a_c00246{bottom:576.000000px;}
.y2f_c00246{bottom:614.880000px;}
.y2c_c00246{bottom:616.320000px;}
.y38_c00246{bottom:617.040000px;}
.y39_c00246{bottom:617.760000px;}
.y2d_c00246{bottom:618.480000px;}
.y2e_c00246{bottom:619.200000px;}
.y2b_c00246{bottom:658.800000px;}
.y2a_c00246{bottom:661.680000px;}
.y24_c00246{bottom:691.200000px;}
.y28_c00246{bottom:691.920000px;}
.y26_c00246{bottom:692.640000px;}
.y29_c00246{bottom:693.360000px;}
.y25_c00246{bottom:694.800000px;}
.y27_c00246{bottom:695.520000px;}
.y22_c00246{bottom:734.400000px;}
.y20_c00246{bottom:735.120000px;}
.y23_c00246{bottom:735.840000px;}
.y21_c00246{bottom:738.000000px;}
.y1f_c00246{bottom:777.600000px;}
.y1c_c00246{bottom:779.040000px;}
.y1d_c00246{bottom:781.200000px;}
.y1e_c00246{bottom:781.920000px;}
.y13_c00246{bottom:821.520000px;}
.y1b_c00246{bottom:822.240000px;}
.y14_c00246{bottom:824.400000px;}
.y11_c00246{bottom:864.000000px;}
.y12_c00246{bottom:864.720000px;}
.yf_c00246{bottom:865.440000px;}
.y1a_c00246{bottom:867.600000px;}
.y10_c00246{bottom:868.320000px;}
.yc_c00246{bottom:907.920000px;}
.yd_c00246{bottom:908.640000px;}
.y19_c00246{bottom:910.800000px;}
.ye_c00246{bottom:911.520000px;}
.y8_c00246{bottom:950.400000px;}
.yb_c00246{bottom:951.120000px;}
.y18_c00246{bottom:951.840000px;}
.ya_c00246{bottom:954.000000px;}
.y9_c00246{bottom:954.720000px;}
.y5_c00246{bottom:993.600000px;}
.y7_c00246{bottom:994.320000px;}
.y6_c00246{bottom:995.040000px;}
.y1_c00246{bottom:1036.800000px;}
.y16_c00246{bottom:1038.240000px;}
.y3_c00246{bottom:1038.960000px;}
.y17_c00246{bottom:1039.680000px;}
.y2_c00246{bottom:1040.400000px;}
.y4_c00246{bottom:1041.120000px;}
.y15_c00246{bottom:1101.600000px;}
.hf_c00246{height:28.508906px;}
.h6_c00246{height:31.100625px;}
.h4_c00246{height:38.875781px;}
.h5_c00246{height:41.467500px;}
.h3_c00246{height:44.059219px;}
.hc_c00246{height:46.650937px;}
.ha_c00246{height:49.242656px;}
.hb_c00246{height:51.834375px;}
.h2_c00246{height:54.426094px;}
.he_c00246{height:57.017812px;}
.hd_c00246{height:59.609531px;}
.h8_c00246{height:62.201250px;}
.h9_c00246{height:64.792969px;}
.h7_c00246{height:67.384687px;}
.h10_c00246{height:93.301875px;}
.h0_c00246{height:1155.600000px;}
.h1_c00246{height:1155.750000px;}
.w0_c00246{width:792.720000px;}
.w1_c00246{width:792.750000px;}
.x0_c00246{left:0.000000px;}
.x1_c00246{left:79.920000px;}
.x8_c00246{left:81.360000px;}
.x29_c00246{left:82.800000px;}
.x2b_c00246{left:84.240000px;}
.x2_c00246{left:152.640000px;}
.x9_c00246{left:154.800000px;}
.xa_c00246{left:185.040000px;}
.x3_c00246{left:196.560000px;}
.x20_c00246{left:198.000000px;}
.x28_c00246{left:207.360000px;}
.xb_c00246{left:230.400000px;}
.xe_c00246{left:241.200000px;}
.x4_c00246{left:250.560000px;}
.xf_c00246{left:252.000000px;}
.x2a_c00246{left:284.400000px;}
.x7_c00246{left:294.480000px;}
.x5_c00246{left:295.920000px;}
.x1b_c00246{left:306.000000px;}
.x26_c00246{left:327.600000px;}
.x6_c00246{left:337.680000px;}
.x23_c00246{left:349.920000px;}
.xc_c00246{left:370.080000px;}
.x21_c00246{left:382.320000px;}
.x1d_c00246{left:391.680000px;}
.x24_c00246{left:393.120000px;}
.x1e_c00246{left:402.480000px;}
.x10_c00246{left:412.560000px;}
.xd_c00246{left:424.800000px;}
.x22_c00246{left:435.600000px;}
.x25_c00246{left:447.120000px;}
.x1f_c00246{left:457.920000px;}
.x11_c00246{left:467.280000px;}
.x2c_c00246{left:477.360000px;}
.x1c_c00246{left:511.200000px;}
.x27_c00246{left:522.000000px;}
.x17_c00246{left:596.880000px;}
.x1a_c00246{left:608.400000px;}
.x2d_c00246{left:628.560000px;}
.x13_c00246{left:630.000000px;}
.x14_c00246{left:661.680000px;}
.x19_c00246{left:663.120000px;}
.x2e_c00246{left:672.480000px;}
.x12_c00246{left:702.000000px;}
.x15_c00246{left:704.160000px;}
.x18_c00246{left:705.600000px;}
.x16_c00246{left:724.320000px;}
@media print{
.v2_c00246{vertical-align:-7.680000pt;}
.v0_c00246{vertical-align:0.000000pt;}
.v1_c00246{vertical-align:5.120000pt;}
.ls0_c00246{letter-spacing:0.000000pt;}
.ws2_c00246{word-spacing:0.000000pt;}
.ws1_c00246{word-spacing:15.181867pt;}
.ws0_c00246{word-spacing:36.287147pt;}
.fsd_c00246{font-size:28.160000pt;}
.fs4_c00246{font-size:30.720000pt;}
.fs2_c00246{font-size:38.400000pt;}
.fs3_c00246{font-size:40.960000pt;}
.fs1_c00246{font-size:43.520000pt;}
.fsa_c00246{font-size:46.080000pt;}
.fs8_c00246{font-size:48.640000pt;}
.fs9_c00246{font-size:51.200000pt;}
.fs0_c00246{font-size:53.760000pt;}
.fsc_c00246{font-size:56.320000pt;}
.fsb_c00246{font-size:58.880000pt;}
.fs6_c00246{font-size:61.440000pt;}
.fs7_c00246{font-size:64.000000pt;}
.fs5_c00246{font-size:66.560000pt;}
.fse_c00246{font-size:92.160000pt;}
.y0_c00246{bottom:0.000000pt;}
.y66_c00246{bottom:64.000000pt;}
.y71_c00246{bottom:67.840000pt;}
.y72_c00246{bottom:68.480000pt;}
.y65_c00246{bottom:69.120000pt;}
.y64_c00246{bottom:103.040000pt;}
.y70_c00246{bottom:106.880000pt;}
.y63_c00246{bottom:107.520000pt;}
.y6d_c00246{bottom:136.320000pt;}
.y62_c00246{bottom:142.080000pt;}
.y6f_c00246{bottom:145.280000pt;}
.y60_c00246{bottom:145.920000pt;}
.y61_c00246{bottom:146.560000pt;}
.y6e_c00246{bottom:147.200000pt;}
.y5f_c00246{bottom:180.480000pt;}
.y6c_c00246{bottom:183.040000pt;}
.y5e_c00246{bottom:183.680000pt;}
.y5c_c00246{bottom:184.320000pt;}
.y5d_c00246{bottom:184.960000pt;}
.y6b_c00246{bottom:185.600000pt;}
.y5b_c00246{bottom:218.880000pt;}
.y69_c00246{bottom:221.440000pt;}
.y59_c00246{bottom:222.720000pt;}
.y5a_c00246{bottom:224.000000pt;}
.y6a_c00246{bottom:224.640000pt;}
.y58_c00246{bottom:258.560000pt;}
.y57_c00246{bottom:261.120000pt;}
.y56_c00246{bottom:261.760000pt;}
.y55_c00246{bottom:262.400000pt;}
.y52_c00246{bottom:286.720000pt;}
.y54_c00246{bottom:287.360000pt;}
.y53_c00246{bottom:288.000000pt;}
.y4f_c00246{bottom:289.280000pt;}
.y51_c00246{bottom:289.920000pt;}
.y50_c00246{bottom:290.560000pt;}
.y68_c00246{bottom:291.840000pt;}
.y4d_c00246{bottom:325.760000pt;}
.y4e_c00246{bottom:326.400000pt;}
.y4c_c00246{bottom:327.680000pt;}
.y67_c00246{bottom:328.320000pt;}
.y4b_c00246{bottom:363.520000pt;}
.y48_c00246{bottom:365.440000pt;}
.y4a_c00246{bottom:367.360000pt;}
.y49_c00246{bottom:368.000000pt;}
.y46_c00246{bottom:402.560000pt;}
.y47_c00246{bottom:403.200000pt;}
.y44_c00246{bottom:405.120000pt;}
.y45_c00246{bottom:405.760000pt;}
.y3e_c00246{bottom:431.360000pt;}
.y40_c00246{bottom:432.000000pt;}
.y3d_c00246{bottom:432.640000pt;}
.y43_c00246{bottom:433.280000pt;}
.y42_c00246{bottom:433.920000pt;}
.y3f_c00246{bottom:434.560000pt;}
.y41_c00246{bottom:435.200000pt;}
.y37_c00246{bottom:469.120000pt;}
.y34_c00246{bottom:471.040000pt;}
.y3c_c00246{bottom:471.680000pt;}
.y36_c00246{bottom:472.960000pt;}
.y35_c00246{bottom:473.600000pt;}
.y31_c00246{bottom:508.800000pt;}
.y30_c00246{bottom:509.440000pt;}
.y3b_c00246{bottom:510.080000pt;}
.y32_c00246{bottom:510.720000pt;}
.y33_c00246{bottom:511.360000pt;}
.y3a_c00246{bottom:512.000000pt;}
.y2f_c00246{bottom:546.560000pt;}
.y2c_c00246{bottom:547.840000pt;}
.y38_c00246{bottom:548.480000pt;}
.y39_c00246{bottom:549.120000pt;}
.y2d_c00246{bottom:549.760000pt;}
.y2e_c00246{bottom:550.400000pt;}
.y2b_c00246{bottom:585.600000pt;}
.y2a_c00246{bottom:588.160000pt;}
.y24_c00246{bottom:614.400000pt;}
.y28_c00246{bottom:615.040000pt;}
.y26_c00246{bottom:615.680000pt;}
.y29_c00246{bottom:616.320000pt;}
.y25_c00246{bottom:617.600000pt;}
.y27_c00246{bottom:618.240000pt;}
.y22_c00246{bottom:652.800000pt;}
.y20_c00246{bottom:653.440000pt;}
.y23_c00246{bottom:654.080000pt;}
.y21_c00246{bottom:656.000000pt;}
.y1f_c00246{bottom:691.200000pt;}
.y1c_c00246{bottom:692.480000pt;}
.y1d_c00246{bottom:694.400000pt;}
.y1e_c00246{bottom:695.040000pt;}
.y13_c00246{bottom:730.240000pt;}
.y1b_c00246{bottom:730.880000pt;}
.y14_c00246{bottom:732.800000pt;}
.y11_c00246{bottom:768.000000pt;}
.y12_c00246{bottom:768.640000pt;}
.yf_c00246{bottom:769.280000pt;}
.y1a_c00246{bottom:771.200000pt;}
.y10_c00246{bottom:771.840000pt;}
.yc_c00246{bottom:807.040000pt;}
.yd_c00246{bottom:807.680000pt;}
.y19_c00246{bottom:809.600000pt;}
.ye_c00246{bottom:810.240000pt;}
.y8_c00246{bottom:844.800000pt;}
.yb_c00246{bottom:845.440000pt;}
.y18_c00246{bottom:846.080000pt;}
.ya_c00246{bottom:848.000000pt;}
.y9_c00246{bottom:848.640000pt;}
.y5_c00246{bottom:883.200000pt;}
.y7_c00246{bottom:883.840000pt;}
.y6_c00246{bottom:884.480000pt;}
.y1_c00246{bottom:921.600000pt;}
.y16_c00246{bottom:922.880000pt;}
.y3_c00246{bottom:923.520000pt;}
.y17_c00246{bottom:924.160000pt;}
.y2_c00246{bottom:924.800000pt;}
.y4_c00246{bottom:925.440000pt;}
.y15_c00246{bottom:979.200000pt;}
.hf_c00246{height:25.341250pt;}
.h6_c00246{height:27.645000pt;}
.h4_c00246{height:34.556250pt;}
.h5_c00246{height:36.860000pt;}
.h3_c00246{height:39.163750pt;}
.hc_c00246{height:41.467500pt;}
.ha_c00246{height:43.771250pt;}
.hb_c00246{height:46.075000pt;}
.h2_c00246{height:48.378750pt;}
.he_c00246{height:50.682500pt;}
.hd_c00246{height:52.986250pt;}
.h8_c00246{height:55.290000pt;}
.h9_c00246{height:57.593750pt;}
.h7_c00246{height:59.897500pt;}
.h10_c00246{height:82.935000pt;}
.h0_c00246{height:1027.200000pt;}
.h1_c00246{height:1027.333333pt;}
.w0_c00246{width:704.640000pt;}
.w1_c00246{width:704.666667pt;}
.x0_c00246{left:0.000000pt;}
.x1_c00246{left:71.040000pt;}
.x8_c00246{left:72.320000pt;}
.x29_c00246{left:73.600000pt;}
.x2b_c00246{left:74.880000pt;}
.x2_c00246{left:135.680000pt;}
.x9_c00246{left:137.600000pt;}
.xa_c00246{left:164.480000pt;}
.x3_c00246{left:174.720000pt;}
.x20_c00246{left:176.000000pt;}
.x28_c00246{left:184.320000pt;}
.xb_c00246{left:204.800000pt;}
.xe_c00246{left:214.400000pt;}
.x4_c00246{left:222.720000pt;}
.xf_c00246{left:224.000000pt;}
.x2a_c00246{left:252.800000pt;}
.x7_c00246{left:261.760000pt;}
.x5_c00246{left:263.040000pt;}
.x1b_c00246{left:272.000000pt;}
.x26_c00246{left:291.200000pt;}
.x6_c00246{left:300.160000pt;}
.x23_c00246{left:311.040000pt;}
.xc_c00246{left:328.960000pt;}
.x21_c00246{left:339.840000pt;}
.x1d_c00246{left:348.160000pt;}
.x24_c00246{left:349.440000pt;}
.x1e_c00246{left:357.760000pt;}
.x10_c00246{left:366.720000pt;}
.xd_c00246{left:377.600000pt;}
.x22_c00246{left:387.200000pt;}
.x25_c00246{left:397.440000pt;}
.x1f_c00246{left:407.040000pt;}
.x11_c00246{left:415.360000pt;}
.x2c_c00246{left:424.320000pt;}
.x1c_c00246{left:454.400000pt;}
.x27_c00246{left:464.000000pt;}
.x17_c00246{left:530.560000pt;}
.x1a_c00246{left:540.800000pt;}
.x2d_c00246{left:558.720000pt;}
.x13_c00246{left:560.000000pt;}
.x14_c00246{left:588.160000pt;}
.x19_c00246{left:589.440000pt;}
.x2e_c00246{left:597.760000pt;}
.x12_c00246{left:624.000000pt;}
.x15_c00246{left:625.920000pt;}
.x18_c00246{left:627.200000pt;}
.x16_c00246{left:643.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2190adaf53c9e9cf77ccceea.woff2')format("woff");}.ff1_c00247{font-family:ff1_c00247;line-height:1.109863;font-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_c00247{transform:matrix(0.202225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202225,0.000000,0.000000,0.250000,0,0);}
.m39_c00247{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m40_c00247{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m12_c00247{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);}
.m3b_c00247{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);}
.m36_c00247{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_c00247{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);}
.m3c_c00247{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m4_c00247{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_c00247{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m20_c00247{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m11_c00247{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00247{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m17_c00247{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m27_c00247{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);}
.m3a_c00247{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);}
.m2d_c00247{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m14_c00247{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m21_c00247{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2_c00247{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00247{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m6_c00247{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00247{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m37_c00247{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mb_c00247{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m22_c00247{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m32_c00247{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m26_c00247{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m16_c00247{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m3_c00247{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m31_c00247{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.ma_c00247{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m29_c00247{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m10_c00247{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m24_c00247{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m0_c00247{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m42_c00247{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m1_c00247{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);}
.m38_c00247{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00247{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.mc_c00247{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);}
.m34_c00247{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m33_c00247{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);}
.m19_c00247{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);}
.m2b_c00247{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00247{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.mf_c00247{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m23_c00247{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);}
.m35_c00247{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);}
.m3d_c00247{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00247{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_c00247{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m41_c00247{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);}
.m43_c00247{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);}
.m13_c00247{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m5_c00247{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);}
.m18_c00247{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.me_c00247{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m25_c00247{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m15_c00247{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);}
.m28_c00247{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m9_c00247{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m7_c00247{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00247{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m30_c00247{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);}
.m1b_c00247{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00247{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00247{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.v0_c00247{vertical-align:0.000000px;}
.v3_c00247{vertical-align:2.880000px;}
.v1_c00247{vertical-align:5.760000px;}
.v2_c00247{vertical-align:11.520000px;}
.ls0_c00247{letter-spacing:0.000000px;}
.sc__c00247{text-shadow:none;}
.sc0_c00247{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00247{-webkit-text-stroke:0px transparent;}
.sc0_c00247{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00247{word-spacing:-2.040000px;}
.ws1_c00247{word-spacing:-0.050160px;}
.ws4_c00247{word-spacing:0.000000px;}
.ws3_c00247{word-spacing:12.615860px;}
.ws0_c00247{word-spacing:17.079600px;}
.fc0_c00247{color:transparent;}
.fs6_c00247{font-size:34.560000px;}
.fse_c00247{font-size:40.320000px;}
.fs7_c00247{font-size:43.200000px;}
.fs1_c00247{font-size:46.080000px;}
.fs4_c00247{font-size:48.960000px;}
.fsb_c00247{font-size:51.840000px;}
.fsa_c00247{font-size:54.720000px;}
.fsc_c00247{font-size:57.600000px;}
.fs0_c00247{font-size:60.480000px;}
.fsd_c00247{font-size:63.360000px;}
.fs9_c00247{font-size:66.240000px;}
.fs5_c00247{font-size:69.120000px;}
.fs3_c00247{font-size:72.000000px;}
.fs2_c00247{font-size:74.880000px;}
.fs8_c00247{font-size:77.760000px;}
.y0_c00247{bottom:0.000000px;}
.y6f_c00247{bottom:117.360000px;}
.y6e_c00247{bottom:120.960000px;}
.y6d_c00247{bottom:122.400000px;}
.y70_c00247{bottom:123.120000px;}
.y6c_c00247{bottom:154.080000px;}
.y67_c00247{bottom:161.280000px;}
.y69_c00247{bottom:162.000000px;}
.y6a_c00247{bottom:163.440000px;}
.y68_c00247{bottom:164.160000px;}
.y66_c00247{bottom:164.880000px;}
.y6b_c00247{bottom:165.600000px;}
.y52_c00247{bottom:203.760000px;}
.y65_c00247{bottom:206.640000px;}
.y51_c00247{bottom:208.800000px;}
.y4f_c00247{bottom:247.680000px;}
.y63_c00247{bottom:249.840000px;}
.y50_c00247{bottom:250.560000px;}
.y4e_c00247{bottom:251.280000px;}
.y64_c00247{bottom:252.000000px;}
.y4d_c00247{bottom:290.160000px;}
.y61_c00247{bottom:293.040000px;}
.y4b_c00247{bottom:294.480000px;}
.y62_c00247{bottom:295.200000px;}
.y4c_c00247{bottom:295.920000px;}
.y4a_c00247{bottom:334.080000px;}
.y5e_c00247{bottom:336.240000px;}
.y5f_c00247{bottom:336.960000px;}
.y49_c00247{bottom:337.680000px;}
.y60_c00247{bottom:338.400000px;}
.y47_c00247{bottom:377.280000px;}
.y46_c00247{bottom:378.000000px;}
.y5d_c00247{bottom:378.720000px;}
.y48_c00247{bottom:379.440000px;}
.y5c_c00247{bottom:380.160000px;}
.y45_c00247{bottom:380.880000px;}
.y44_c00247{bottom:421.200000px;}
.y5b_c00247{bottom:421.920000px;}
.y59_c00247{bottom:423.360000px;}
.y43_c00247{bottom:424.080000px;}
.y5a_c00247{bottom:424.800000px;}
.y42_c00247{bottom:463.680000px;}
.y40_c00247{bottom:464.400000px;}
.y41_c00247{bottom:465.120000px;}
.y56_c00247{bottom:466.560000px;}
.y3f_c00247{bottom:467.280000px;}
.y58_c00247{bottom:468.000000px;}
.y57_c00247{bottom:468.720000px;}
.y3c_c00247{bottom:507.600000px;}
.y55_c00247{bottom:508.320000px;}
.y3d_c00247{bottom:509.040000px;}
.y54_c00247{bottom:509.760000px;}
.y3b_c00247{bottom:510.480000px;}
.y3e_c00247{bottom:511.920000px;}
.y39_c00247{bottom:550.800000px;}
.y38_c00247{bottom:551.520000px;}
.y3a_c00247{bottom:552.960000px;}
.y36_c00247{bottom:553.680000px;}
.y37_c00247{bottom:555.120000px;}
.y53_c00247{bottom:555.840000px;}
.y34_c00247{bottom:594.720000px;}
.y35_c00247{bottom:598.320000px;}
.y32_c00247{bottom:626.400000px;}
.y33_c00247{bottom:627.840000px;}
.y2f_c00247{bottom:629.280000px;}
.y31_c00247{bottom:630.000000px;}
.y30_c00247{bottom:630.720000px;}
.y2b_c00247{bottom:670.320000px;}
.y2e_c00247{bottom:671.040000px;}
.y2a_c00247{bottom:671.760000px;}
.y2c_c00247{bottom:673.200000px;}
.y29_c00247{bottom:712.800000px;}
.y28_c00247{bottom:714.240000px;}
.y27_c00247{bottom:714.960000px;}
.y24_c00247{bottom:745.200000px;}
.y2d_c00247{bottom:745.920000px;}
.y23_c00247{bottom:746.640000px;}
.y26_c00247{bottom:748.080000px;}
.y25_c00247{bottom:748.800000px;}
.y21_c00247{bottom:790.560000px;}
.y22_c00247{bottom:791.280000px;}
.y20_c00247{bottom:793.440000px;}
.y1e_c00247{bottom:841.680000px;}
.y1c_c00247{bottom:843.120000px;}
.y19_c00247{bottom:843.840000px;}
.y1f_c00247{bottom:845.280000px;}
.y1d_c00247{bottom:846.000000px;}
.y1a_c00247{bottom:846.720000px;}
.y1b_c00247{bottom:847.440000px;}
.y11_c00247{bottom:885.600000px;}
.y12_c00247{bottom:887.040000px;}
.y13_c00247{bottom:889.200000px;}
.yf_c00247{bottom:889.920000px;}
.y10_c00247{bottom:890.640000px;}
.yc_c00247{bottom:918.000000px;}
.ye_c00247{bottom:918.720000px;}
.yb_c00247{bottom:919.440000px;}
.yd_c00247{bottom:922.320000px;}
.y8_c00247{bottom:961.920000px;}
.ya_c00247{bottom:962.640000px;}
.y7_c00247{bottom:963.360000px;}
.y9_c00247{bottom:965.520000px;}
.y6_c00247{bottom:1005.120000px;}
.y4_c00247{bottom:1005.840000px;}
.y18_c00247{bottom:1006.560000px;}
.y5_c00247{bottom:1009.440000px;}
.y16_c00247{bottom:1047.600000px;}
.y3_c00247{bottom:1048.320000px;}
.y15_c00247{bottom:1049.040000px;}
.y1_c00247{bottom:1049.760000px;}
.y17_c00247{bottom:1050.480000px;}
.y2_c00247{bottom:1052.640000px;}
.y14_c00247{bottom:1095.120000px;}
.h8_c00247{height:31.100625px;}
.h13_c00247{height:36.284062px;}
.h9_c00247{height:38.875781px;}
.h3_c00247{height:41.467500px;}
.h6_c00247{height:44.059219px;}
.hd_c00247{height:46.650937px;}
.hc_c00247{height:49.242656px;}
.hf_c00247{height:51.834375px;}
.h2_c00247{height:54.426094px;}
.he_c00247{height:55.002656px;}
.h10_c00247{height:55.579219px;}
.h11_c00247{height:57.017812px;}
.hb_c00247{height:59.609531px;}
.h7_c00247{height:62.201250px;}
.h5_c00247{height:64.792969px;}
.h4_c00247{height:67.384687px;}
.h12_c00247{height:67.672969px;}
.ha_c00247{height:69.976406px;}
.h0_c00247{height:1154.880000px;}
.h1_c00247{height:1155.000000px;}
.w0_c00247{width:792.000000px;}
.x0_c00247{left:0.000000px;}
.x1_c00247{left:79.920000px;}
.x36_c00247{left:81.360000px;}
.x1b_c00247{left:130.320000px;}
.x33_c00247{left:150.480000px;}
.xa_c00247{left:151.920000px;}
.x2_c00247{left:153.360000px;}
.x1c_c00247{left:164.160000px;}
.x22_c00247{left:183.600000px;}
.xb_c00247{left:194.400000px;}
.x3_c00247{left:196.560000px;}
.x23_c00247{left:238.320000px;}
.x6_c00247{left:239.760000px;}
.x34_c00247{left:246.960000px;}
.x14_c00247{left:249.840000px;}
.x1d_c00247{left:259.200000px;}
.x4_c00247{left:260.640000px;}
.x7_c00247{left:281.520000px;}
.x2c_c00247{left:291.600000px;}
.x2a_c00247{left:302.400000px;}
.x5_c00247{left:325.440000px;}
.x27_c00247{left:335.520000px;}
.x15_c00247{left:336.960000px;}
.x28_c00247{left:346.320000px;}
.x2b_c00247{left:357.120000px;}
.x16_c00247{left:378.720000px;}
.x1e_c00247{left:399.600000px;}
.xc_c00247{left:432.000000px;}
.x17_c00247{left:433.440000px;}
.x8_c00247{left:444.960000px;}
.x1f_c00247{left:455.040000px;}
.xd_c00247{left:476.640000px;}
.x24_c00247{left:486.720000px;}
.x9_c00247{left:498.960000px;}
.x20_c00247{left:509.760000px;}
.x18_c00247{left:520.560000px;}
.x35_c00247{left:527.760000px;}
.x25_c00247{left:529.200000px;}
.xe_c00247{left:531.360000px;}
.x29_c00247{left:561.600000px;}
.x19_c00247{left:563.760000px;}
.x31_c00247{left:572.400000px;}
.x2f_c00247{left:573.840000px;}
.x26_c00247{left:594.000000px;}
.x10_c00247{left:596.160000px;}
.x21_c00247{left:627.120000px;}
.x13_c00247{left:629.280000px;}
.x30_c00247{left:659.520000px;}
.x11_c00247{left:660.960000px;}
.x2d_c00247{left:691.920000px;}
.x32_c00247{left:700.560000px;}
.x1a_c00247{left:702.000000px;}
.xf_c00247{left:704.160000px;}
.x2e_c00247{left:722.160000px;}
.x12_c00247{left:723.600000px;}
@media print{
.v0_c00247{vertical-align:0.000000pt;}
.v3_c00247{vertical-align:2.560000pt;}
.v1_c00247{vertical-align:5.120000pt;}
.v2_c00247{vertical-align:10.240000pt;}
.ls0_c00247{letter-spacing:0.000000pt;}
.ws2_c00247{word-spacing:-1.813333pt;}
.ws1_c00247{word-spacing:-0.044587pt;}
.ws4_c00247{word-spacing:0.000000pt;}
.ws3_c00247{word-spacing:11.214098pt;}
.ws0_c00247{word-spacing:15.181867pt;}
.fs6_c00247{font-size:30.720000pt;}
.fse_c00247{font-size:35.840000pt;}
.fs7_c00247{font-size:38.400000pt;}
.fs1_c00247{font-size:40.960000pt;}
.fs4_c00247{font-size:43.520000pt;}
.fsb_c00247{font-size:46.080000pt;}
.fsa_c00247{font-size:48.640000pt;}
.fsc_c00247{font-size:51.200000pt;}
.fs0_c00247{font-size:53.760000pt;}
.fsd_c00247{font-size:56.320000pt;}
.fs9_c00247{font-size:58.880000pt;}
.fs5_c00247{font-size:61.440000pt;}
.fs3_c00247{font-size:64.000000pt;}
.fs2_c00247{font-size:66.560000pt;}
.fs8_c00247{font-size:69.120000pt;}
.y0_c00247{bottom:0.000000pt;}
.y6f_c00247{bottom:104.320000pt;}
.y6e_c00247{bottom:107.520000pt;}
.y6d_c00247{bottom:108.800000pt;}
.y70_c00247{bottom:109.440000pt;}
.y6c_c00247{bottom:136.960000pt;}
.y67_c00247{bottom:143.360000pt;}
.y69_c00247{bottom:144.000000pt;}
.y6a_c00247{bottom:145.280000pt;}
.y68_c00247{bottom:145.920000pt;}
.y66_c00247{bottom:146.560000pt;}
.y6b_c00247{bottom:147.200000pt;}
.y52_c00247{bottom:181.120000pt;}
.y65_c00247{bottom:183.680000pt;}
.y51_c00247{bottom:185.600000pt;}
.y4f_c00247{bottom:220.160000pt;}
.y63_c00247{bottom:222.080000pt;}
.y50_c00247{bottom:222.720000pt;}
.y4e_c00247{bottom:223.360000pt;}
.y64_c00247{bottom:224.000000pt;}
.y4d_c00247{bottom:257.920000pt;}
.y61_c00247{bottom:260.480000pt;}
.y4b_c00247{bottom:261.760000pt;}
.y62_c00247{bottom:262.400000pt;}
.y4c_c00247{bottom:263.040000pt;}
.y4a_c00247{bottom:296.960000pt;}
.y5e_c00247{bottom:298.880000pt;}
.y5f_c00247{bottom:299.520000pt;}
.y49_c00247{bottom:300.160000pt;}
.y60_c00247{bottom:300.800000pt;}
.y47_c00247{bottom:335.360000pt;}
.y46_c00247{bottom:336.000000pt;}
.y5d_c00247{bottom:336.640000pt;}
.y48_c00247{bottom:337.280000pt;}
.y5c_c00247{bottom:337.920000pt;}
.y45_c00247{bottom:338.560000pt;}
.y44_c00247{bottom:374.400000pt;}
.y5b_c00247{bottom:375.040000pt;}
.y59_c00247{bottom:376.320000pt;}
.y43_c00247{bottom:376.960000pt;}
.y5a_c00247{bottom:377.600000pt;}
.y42_c00247{bottom:412.160000pt;}
.y40_c00247{bottom:412.800000pt;}
.y41_c00247{bottom:413.440000pt;}
.y56_c00247{bottom:414.720000pt;}
.y3f_c00247{bottom:415.360000pt;}
.y58_c00247{bottom:416.000000pt;}
.y57_c00247{bottom:416.640000pt;}
.y3c_c00247{bottom:451.200000pt;}
.y55_c00247{bottom:451.840000pt;}
.y3d_c00247{bottom:452.480000pt;}
.y54_c00247{bottom:453.120000pt;}
.y3b_c00247{bottom:453.760000pt;}
.y3e_c00247{bottom:455.040000pt;}
.y39_c00247{bottom:489.600000pt;}
.y38_c00247{bottom:490.240000pt;}
.y3a_c00247{bottom:491.520000pt;}
.y36_c00247{bottom:492.160000pt;}
.y37_c00247{bottom:493.440000pt;}
.y53_c00247{bottom:494.080000pt;}
.y34_c00247{bottom:528.640000pt;}
.y35_c00247{bottom:531.840000pt;}
.y32_c00247{bottom:556.800000pt;}
.y33_c00247{bottom:558.080000pt;}
.y2f_c00247{bottom:559.360000pt;}
.y31_c00247{bottom:560.000000pt;}
.y30_c00247{bottom:560.640000pt;}
.y2b_c00247{bottom:595.840000pt;}
.y2e_c00247{bottom:596.480000pt;}
.y2a_c00247{bottom:597.120000pt;}
.y2c_c00247{bottom:598.400000pt;}
.y29_c00247{bottom:633.600000pt;}
.y28_c00247{bottom:634.880000pt;}
.y27_c00247{bottom:635.520000pt;}
.y24_c00247{bottom:662.400000pt;}
.y2d_c00247{bottom:663.040000pt;}
.y23_c00247{bottom:663.680000pt;}
.y26_c00247{bottom:664.960000pt;}
.y25_c00247{bottom:665.600000pt;}
.y21_c00247{bottom:702.720000pt;}
.y22_c00247{bottom:703.360000pt;}
.y20_c00247{bottom:705.280000pt;}
.y1e_c00247{bottom:748.160000pt;}
.y1c_c00247{bottom:749.440000pt;}
.y19_c00247{bottom:750.080000pt;}
.y1f_c00247{bottom:751.360000pt;}
.y1d_c00247{bottom:752.000000pt;}
.y1a_c00247{bottom:752.640000pt;}
.y1b_c00247{bottom:753.280000pt;}
.y11_c00247{bottom:787.200000pt;}
.y12_c00247{bottom:788.480000pt;}
.y13_c00247{bottom:790.400000pt;}
.yf_c00247{bottom:791.040000pt;}
.y10_c00247{bottom:791.680000pt;}
.yc_c00247{bottom:816.000000pt;}
.ye_c00247{bottom:816.640000pt;}
.yb_c00247{bottom:817.280000pt;}
.yd_c00247{bottom:819.840000pt;}
.y8_c00247{bottom:855.040000pt;}
.ya_c00247{bottom:855.680000pt;}
.y7_c00247{bottom:856.320000pt;}
.y9_c00247{bottom:858.240000pt;}
.y6_c00247{bottom:893.440000pt;}
.y4_c00247{bottom:894.080000pt;}
.y18_c00247{bottom:894.720000pt;}
.y5_c00247{bottom:897.280000pt;}
.y16_c00247{bottom:931.200000pt;}
.y3_c00247{bottom:931.840000pt;}
.y15_c00247{bottom:932.480000pt;}
.y1_c00247{bottom:933.120000pt;}
.y17_c00247{bottom:933.760000pt;}
.y2_c00247{bottom:935.680000pt;}
.y14_c00247{bottom:973.440000pt;}
.h8_c00247{height:27.645000pt;}
.h13_c00247{height:32.252500pt;}
.h9_c00247{height:34.556250pt;}
.h3_c00247{height:36.860000pt;}
.h6_c00247{height:39.163750pt;}
.hd_c00247{height:41.467500pt;}
.hc_c00247{height:43.771250pt;}
.hf_c00247{height:46.075000pt;}
.h2_c00247{height:48.378750pt;}
.he_c00247{height:48.891250pt;}
.h10_c00247{height:49.403750pt;}
.h11_c00247{height:50.682500pt;}
.hb_c00247{height:52.986250pt;}
.h7_c00247{height:55.290000pt;}
.h5_c00247{height:57.593750pt;}
.h4_c00247{height:59.897500pt;}
.h12_c00247{height:60.153750pt;}
.ha_c00247{height:62.201250pt;}
.h0_c00247{height:1026.560000pt;}
.h1_c00247{height:1026.666667pt;}
.w0_c00247{width:704.000000pt;}
.x0_c00247{left:0.000000pt;}
.x1_c00247{left:71.040000pt;}
.x36_c00247{left:72.320000pt;}
.x1b_c00247{left:115.840000pt;}
.x33_c00247{left:133.760000pt;}
.xa_c00247{left:135.040000pt;}
.x2_c00247{left:136.320000pt;}
.x1c_c00247{left:145.920000pt;}
.x22_c00247{left:163.200000pt;}
.xb_c00247{left:172.800000pt;}
.x3_c00247{left:174.720000pt;}
.x23_c00247{left:211.840000pt;}
.x6_c00247{left:213.120000pt;}
.x34_c00247{left:219.520000pt;}
.x14_c00247{left:222.080000pt;}
.x1d_c00247{left:230.400000pt;}
.x4_c00247{left:231.680000pt;}
.x7_c00247{left:250.240000pt;}
.x2c_c00247{left:259.200000pt;}
.x2a_c00247{left:268.800000pt;}
.x5_c00247{left:289.280000pt;}
.x27_c00247{left:298.240000pt;}
.x15_c00247{left:299.520000pt;}
.x28_c00247{left:307.840000pt;}
.x2b_c00247{left:317.440000pt;}
.x16_c00247{left:336.640000pt;}
.x1e_c00247{left:355.200000pt;}
.xc_c00247{left:384.000000pt;}
.x17_c00247{left:385.280000pt;}
.x8_c00247{left:395.520000pt;}
.x1f_c00247{left:404.480000pt;}
.xd_c00247{left:423.680000pt;}
.x24_c00247{left:432.640000pt;}
.x9_c00247{left:443.520000pt;}
.x20_c00247{left:453.120000pt;}
.x18_c00247{left:462.720000pt;}
.x35_c00247{left:469.120000pt;}
.x25_c00247{left:470.400000pt;}
.xe_c00247{left:472.320000pt;}
.x29_c00247{left:499.200000pt;}
.x19_c00247{left:501.120000pt;}
.x31_c00247{left:508.800000pt;}
.x2f_c00247{left:510.080000pt;}
.x26_c00247{left:528.000000pt;}
.x10_c00247{left:529.920000pt;}
.x21_c00247{left:557.440000pt;}
.x13_c00247{left:559.360000pt;}
.x30_c00247{left:586.240000pt;}
.x11_c00247{left:587.520000pt;}
.x2d_c00247{left:615.040000pt;}
.x32_c00247{left:622.720000pt;}
.x1a_c00247{left:624.000000pt;}
.xf_c00247{left:625.920000pt;}
.x2e_c00247{left:641.920000pt;}
.x12_c00247{left:643.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d57dc9c7d299cb52e0a4e968.woff2')format("woff");}.ff1_c00248{font-family:ff1_c00248;line-height:1.109863;font-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_c00248{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00248{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m38_c00248{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m41_c00248{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m36_c00248{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m40_c00248{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);}
.m3d_c00248{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_c00248{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);}
.m45_c00248{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_c00248{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);}
.m44_c00248{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_c00248{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_c00248{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m4_c00248{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_c00248{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_c00248{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mf_c00248{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00248{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);}
.m2c_c00248{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00248{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m15_c00248{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m12_c00248{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m32_c00248{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m19_c00248{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m11_c00248{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m33_c00248{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m22_c00248{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00248{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00248{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mc_c00248{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m43_c00248{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00248{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m35_c00248{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m23_c00248{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m49_c00248{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);}
.m46_c00248{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00248{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m16_c00248{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m0_c00248{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00248{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m39_c00248{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m8_c00248{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1_c00248{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m6_c00248{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00248{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m17_c00248{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m31_c00248{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m2_c00248{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m24_c00248{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00248{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);}
.m2f_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);}
.m2a_c00248{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00248{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m3_c00248{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m20_c00248{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m18_c00248{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00248{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m5_c00248{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00248{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m29_c00248{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);}
.m13_c00248{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m25_c00248{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m28_c00248{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m42_c00248{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m30_c00248{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);}
.m3b_c00248{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m47_c00248{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m37_c00248{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m7_c00248{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);}
.mb_c00248{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00248{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m34_c00248{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.m27_c00248{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m10_c00248{transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);}
.v1_c00248{vertical-align:-2.880000px;}
.v0_c00248{vertical-align:0.000000px;}
.v2_c00248{vertical-align:8.640000px;}
.ls1_c00248{letter-spacing:0.000000px;}
.ls0_c00248{letter-spacing:80.731680px;}
.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;}
}
.ws1_c00248{word-spacing:0.000000px;}
.ws0_c00248{word-spacing:22.368000px;}
.fc0_c00248{color:transparent;}
.fsc_c00248{font-size:34.560000px;}
.fs1_c00248{font-size:43.200000px;}
.fs6_c00248{font-size:46.080000px;}
.fs4_c00248{font-size:48.960000px;}
.fs3_c00248{font-size:51.840000px;}
.fs9_c00248{font-size:54.720000px;}
.fs2_c00248{font-size:57.600000px;}
.fs5_c00248{font-size:60.480000px;}
.fsb_c00248{font-size:63.360000px;}
.fsa_c00248{font-size:66.240000px;}
.fs8_c00248{font-size:69.120000px;}
.fs7_c00248{font-size:72.000000px;}
.fs0_c00248{font-size:74.880000px;}
.fsd_c00248{font-size:77.760000px;}
.y0_c00248{bottom:0.000000px;}
.y68_c00248{bottom:92.160000px;}
.y66_c00248{bottom:93.600000px;}
.y67_c00248{bottom:96.480000px;}
.y65_c00248{bottom:98.640000px;}
.y61_c00248{bottom:136.800000px;}
.y62_c00248{bottom:139.680000px;}
.y63_c00248{bottom:140.400000px;}
.y60_c00248{bottom:141.120000px;}
.y64_c00248{bottom:141.840000px;}
.y5e_c00248{bottom:179.280000px;}
.y5d_c00248{bottom:180.000000px;}
.y5f_c00248{bottom:183.600000px;}
.y5c_c00248{bottom:185.040000px;}
.y57_c00248{bottom:223.920000px;}
.y59_c00248{bottom:225.360000px;}
.y58_c00248{bottom:226.800000px;}
.y56_c00248{bottom:227.520000px;}
.y5a_c00248{bottom:228.240000px;}
.y5b_c00248{bottom:228.960000px;}
.y52_c00248{bottom:266.400000px;}
.y51_c00248{bottom:267.120000px;}
.y54_c00248{bottom:268.560000px;}
.y53_c00248{bottom:269.280000px;}
.y50_c00248{bottom:270.720000px;}
.y55_c00248{bottom:271.440000px;}
.y4c_c00248{bottom:310.320000px;}
.y4e_c00248{bottom:311.760000px;}
.y4d_c00248{bottom:312.480000px;}
.y4b_c00248{bottom:313.200000px;}
.y4f_c00248{bottom:314.640000px;}
.y48_c00248{bottom:353.520000px;}
.y49_c00248{bottom:354.960000px;}
.y47_c00248{bottom:356.400000px;}
.y4a_c00248{bottom:357.120000px;}
.y45_c00248{bottom:396.720000px;}
.y46_c00248{bottom:397.440000px;}
.y43_c00248{bottom:398.880000px;}
.y44_c00248{bottom:401.040000px;}
.y41_c00248{bottom:439.200000px;}
.y42_c00248{bottom:440.640000px;}
.y40_c00248{bottom:442.080000px;}
.y3d_c00248{bottom:483.120000px;}
.y3f_c00248{bottom:484.560000px;}
.y3c_c00248{bottom:485.280000px;}
.y3e_c00248{bottom:486.720000px;}
.y38_c00248{bottom:526.320000px;}
.y3b_c00248{bottom:527.760000px;}
.y37_c00248{bottom:528.480000px;}
.y3a_c00248{bottom:529.920000px;}
.y39_c00248{bottom:530.640000px;}
.y33_c00248{bottom:569.520000px;}
.y36_c00248{bottom:570.960000px;}
.y35_c00248{bottom:571.680000px;}
.y32_c00248{bottom:572.400000px;}
.y34_c00248{bottom:573.120000px;}
.y2f_c00248{bottom:613.440000px;}
.y2e_c00248{bottom:614.160000px;}
.y2c_c00248{bottom:614.880000px;}
.y30_c00248{bottom:615.600000px;}
.y31_c00248{bottom:616.320000px;}
.y2d_c00248{bottom:617.760000px;}
.y2a_c00248{bottom:656.640000px;}
.y2b_c00248{bottom:657.360000px;}
.y29_c00248{bottom:658.080000px;}
.y25_c00248{bottom:700.560000px;}
.y24_c00248{bottom:701.280000px;}
.y27_c00248{bottom:702.000000px;}
.y28_c00248{bottom:702.720000px;}
.y26_c00248{bottom:704.160000px;}
.y22_c00248{bottom:743.760000px;}
.y20_c00248{bottom:744.480000px;}
.y23_c00248{bottom:745.920000px;}
.y21_c00248{bottom:747.360000px;}
.y1d_c00248{bottom:786.240000px;}
.y1a_c00248{bottom:787.680000px;}
.y1b_c00248{bottom:788.400000px;}
.y1f_c00248{bottom:789.120000px;}
.y1c_c00248{bottom:789.840000px;}
.y1e_c00248{bottom:790.560000px;}
.y16_c00248{bottom:830.160000px;}
.y19_c00248{bottom:830.880000px;}
.y18_c00248{bottom:831.600000px;}
.y17_c00248{bottom:833.760000px;}
.y13_c00248{bottom:873.360000px;}
.y14_c00248{bottom:874.800000px;}
.y15_c00248{bottom:876.240000px;}
.ye_c00248{bottom:915.840000px;}
.y10_c00248{bottom:917.280000px;}
.yf_c00248{bottom:918.000000px;}
.y12_c00248{bottom:918.720000px;}
.y11_c00248{bottom:920.160000px;}
.y9_c00248{bottom:959.760000px;}
.yb_c00248{bottom:960.480000px;}
.yd_c00248{bottom:961.920000px;}
.yc_c00248{bottom:962.640000px;}
.ya_c00248{bottom:963.360000px;}
.y7_c00248{bottom:1002.240000px;}
.y5_c00248{bottom:1002.960000px;}
.y8_c00248{bottom:1004.400000px;}
.y6_c00248{bottom:1006.560000px;}
.y3_c00248{bottom:1048.320000px;}
.y4_c00248{bottom:1049.040000px;}
.y2_c00248{bottom:1049.760000px;}
.y1_c00248{bottom:1091.520000px;}
.he_c00248{height:31.100625px;}
.h3_c00248{height:38.875781px;}
.h8_c00248{height:41.467500px;}
.h6_c00248{height:44.059219px;}
.h5_c00248{height:46.650937px;}
.hb_c00248{height:49.242656px;}
.h4_c00248{height:51.834375px;}
.h7_c00248{height:54.426094px;}
.hd_c00248{height:57.017812px;}
.hc_c00248{height:59.609531px;}
.h10_c00248{height:60.474375px;}
.ha_c00248{height:62.201250px;}
.h9_c00248{height:64.792969px;}
.h2_c00248{height:67.384687px;}
.hf_c00248{height:69.976406px;}
.h1_c00248{height:1151.250000px;}
.h0_c00248{height:1151.280000px;}
.w1_c00248{width:786.000000px;}
.w0_c00248{width:786.240000px;}
.x0_c00248{left:0.000000px;}
.x7_c00248{left:77.040000px;}
.x26_c00248{left:78.480000px;}
.x30_c00248{left:79.920000px;}
.x2_c00248{left:128.880000px;}
.x8_c00248{left:149.040000px;}
.x14_c00248{left:150.480000px;}
.x3_c00248{left:162.000000px;}
.x2d_c00248{left:181.440000px;}
.x4_c00248{left:183.600000px;}
.x9_c00248{left:192.240000px;}
.xd_c00248{left:193.680000px;}
.x10_c00248{left:203.760000px;}
.x2a_c00248{left:234.720000px;}
.x31_c00248{left:236.160000px;}
.x5_c00248{left:237.600000px;}
.x1d_c00248{left:245.520000px;}
.x18_c00248{left:246.960000px;}
.x6_c00248{left:257.040000px;}
.x2b_c00248{left:279.360000px;}
.x28_c00248{left:289.440000px;}
.x1e_c00248{left:291.600000px;}
.x11_c00248{left:301.680000px;}
.x23_c00248{left:311.040000px;}
.x15_c00248{left:312.480000px;}
.x2e_c00248{left:321.840000px;}
.x2c_c00248{left:334.080000px;}
.x19_c00248{left:345.600000px;}
.x16_c00248{left:355.680000px;}
.x1f_c00248{left:377.280000px;}
.x1a_c00248{left:430.560000px;}
.x32_c00248{left:473.760000px;}
.x1b_c00248{left:485.280000px;}
.x2f_c00248{left:517.680000px;}
.x33_c00248{left:560.160000px;}
.x27_c00248{left:570.240000px;}
.x21_c00248{left:571.680000px;}
.x29_c00248{left:591.120000px;}
.x13_c00248{left:592.560000px;}
.xa_c00248{left:594.000000px;}
.x20_c00248{left:604.080000px;}
.x17_c00248{left:624.960000px;}
.xe_c00248{left:626.400000px;}
.x22_c00248{left:657.360000px;}
.xf_c00248{left:659.520000px;}
.x1c_c00248{left:668.880000px;}
.x1_c00248{left:689.040000px;}
.x12_c00248{left:691.200000px;}
.x24_c00248{left:699.840000px;}
.xb_c00248{left:701.280000px;}
.x25_c00248{left:720.000000px;}
.xc_c00248{left:721.440000px;}
@media print{
.v1_c00248{vertical-align:-2.560000pt;}
.v0_c00248{vertical-align:0.000000pt;}
.v2_c00248{vertical-align:7.680000pt;}
.ls1_c00248{letter-spacing:0.000000pt;}
.ls0_c00248{letter-spacing:71.761493pt;}
.ws1_c00248{word-spacing:0.000000pt;}
.ws0_c00248{word-spacing:19.882667pt;}
.fsc_c00248{font-size:30.720000pt;}
.fs1_c00248{font-size:38.400000pt;}
.fs6_c00248{font-size:40.960000pt;}
.fs4_c00248{font-size:43.520000pt;}
.fs3_c00248{font-size:46.080000pt;}
.fs9_c00248{font-size:48.640000pt;}
.fs2_c00248{font-size:51.200000pt;}
.fs5_c00248{font-size:53.760000pt;}
.fsb_c00248{font-size:56.320000pt;}
.fsa_c00248{font-size:58.880000pt;}
.fs8_c00248{font-size:61.440000pt;}
.fs7_c00248{font-size:64.000000pt;}
.fs0_c00248{font-size:66.560000pt;}
.fsd_c00248{font-size:69.120000pt;}
.y0_c00248{bottom:0.000000pt;}
.y68_c00248{bottom:81.920000pt;}
.y66_c00248{bottom:83.200000pt;}
.y67_c00248{bottom:85.760000pt;}
.y65_c00248{bottom:87.680000pt;}
.y61_c00248{bottom:121.600000pt;}
.y62_c00248{bottom:124.160000pt;}
.y63_c00248{bottom:124.800000pt;}
.y60_c00248{bottom:125.440000pt;}
.y64_c00248{bottom:126.080000pt;}
.y5e_c00248{bottom:159.360000pt;}
.y5d_c00248{bottom:160.000000pt;}
.y5f_c00248{bottom:163.200000pt;}
.y5c_c00248{bottom:164.480000pt;}
.y57_c00248{bottom:199.040000pt;}
.y59_c00248{bottom:200.320000pt;}
.y58_c00248{bottom:201.600000pt;}
.y56_c00248{bottom:202.240000pt;}
.y5a_c00248{bottom:202.880000pt;}
.y5b_c00248{bottom:203.520000pt;}
.y52_c00248{bottom:236.800000pt;}
.y51_c00248{bottom:237.440000pt;}
.y54_c00248{bottom:238.720000pt;}
.y53_c00248{bottom:239.360000pt;}
.y50_c00248{bottom:240.640000pt;}
.y55_c00248{bottom:241.280000pt;}
.y4c_c00248{bottom:275.840000pt;}
.y4e_c00248{bottom:277.120000pt;}
.y4d_c00248{bottom:277.760000pt;}
.y4b_c00248{bottom:278.400000pt;}
.y4f_c00248{bottom:279.680000pt;}
.y48_c00248{bottom:314.240000pt;}
.y49_c00248{bottom:315.520000pt;}
.y47_c00248{bottom:316.800000pt;}
.y4a_c00248{bottom:317.440000pt;}
.y45_c00248{bottom:352.640000pt;}
.y46_c00248{bottom:353.280000pt;}
.y43_c00248{bottom:354.560000pt;}
.y44_c00248{bottom:356.480000pt;}
.y41_c00248{bottom:390.400000pt;}
.y42_c00248{bottom:391.680000pt;}
.y40_c00248{bottom:392.960000pt;}
.y3d_c00248{bottom:429.440000pt;}
.y3f_c00248{bottom:430.720000pt;}
.y3c_c00248{bottom:431.360000pt;}
.y3e_c00248{bottom:432.640000pt;}
.y38_c00248{bottom:467.840000pt;}
.y3b_c00248{bottom:469.120000pt;}
.y37_c00248{bottom:469.760000pt;}
.y3a_c00248{bottom:471.040000pt;}
.y39_c00248{bottom:471.680000pt;}
.y33_c00248{bottom:506.240000pt;}
.y36_c00248{bottom:507.520000pt;}
.y35_c00248{bottom:508.160000pt;}
.y32_c00248{bottom:508.800000pt;}
.y34_c00248{bottom:509.440000pt;}
.y2f_c00248{bottom:545.280000pt;}
.y2e_c00248{bottom:545.920000pt;}
.y2c_c00248{bottom:546.560000pt;}
.y30_c00248{bottom:547.200000pt;}
.y31_c00248{bottom:547.840000pt;}
.y2d_c00248{bottom:549.120000pt;}
.y2a_c00248{bottom:583.680000pt;}
.y2b_c00248{bottom:584.320000pt;}
.y29_c00248{bottom:584.960000pt;}
.y25_c00248{bottom:622.720000pt;}
.y24_c00248{bottom:623.360000pt;}
.y27_c00248{bottom:624.000000pt;}
.y28_c00248{bottom:624.640000pt;}
.y26_c00248{bottom:625.920000pt;}
.y22_c00248{bottom:661.120000pt;}
.y20_c00248{bottom:661.760000pt;}
.y23_c00248{bottom:663.040000pt;}
.y21_c00248{bottom:664.320000pt;}
.y1d_c00248{bottom:698.880000pt;}
.y1a_c00248{bottom:700.160000pt;}
.y1b_c00248{bottom:700.800000pt;}
.y1f_c00248{bottom:701.440000pt;}
.y1c_c00248{bottom:702.080000pt;}
.y1e_c00248{bottom:702.720000pt;}
.y16_c00248{bottom:737.920000pt;}
.y19_c00248{bottom:738.560000pt;}
.y18_c00248{bottom:739.200000pt;}
.y17_c00248{bottom:741.120000pt;}
.y13_c00248{bottom:776.320000pt;}
.y14_c00248{bottom:777.600000pt;}
.y15_c00248{bottom:778.880000pt;}
.ye_c00248{bottom:814.080000pt;}
.y10_c00248{bottom:815.360000pt;}
.yf_c00248{bottom:816.000000pt;}
.y12_c00248{bottom:816.640000pt;}
.y11_c00248{bottom:817.920000pt;}
.y9_c00248{bottom:853.120000pt;}
.yb_c00248{bottom:853.760000pt;}
.yd_c00248{bottom:855.040000pt;}
.yc_c00248{bottom:855.680000pt;}
.ya_c00248{bottom:856.320000pt;}
.y7_c00248{bottom:890.880000pt;}
.y5_c00248{bottom:891.520000pt;}
.y8_c00248{bottom:892.800000pt;}
.y6_c00248{bottom:894.720000pt;}
.y3_c00248{bottom:931.840000pt;}
.y4_c00248{bottom:932.480000pt;}
.y2_c00248{bottom:933.120000pt;}
.y1_c00248{bottom:970.240000pt;}
.he_c00248{height:27.645000pt;}
.h3_c00248{height:34.556250pt;}
.h8_c00248{height:36.860000pt;}
.h6_c00248{height:39.163750pt;}
.h5_c00248{height:41.467500pt;}
.hb_c00248{height:43.771250pt;}
.h4_c00248{height:46.075000pt;}
.h7_c00248{height:48.378750pt;}
.hd_c00248{height:50.682500pt;}
.hc_c00248{height:52.986250pt;}
.h10_c00248{height:53.755000pt;}
.ha_c00248{height:55.290000pt;}
.h9_c00248{height:57.593750pt;}
.h2_c00248{height:59.897500pt;}
.hf_c00248{height:62.201250pt;}
.h1_c00248{height:1023.333333pt;}
.h0_c00248{height:1023.360000pt;}
.w1_c00248{width:698.666667pt;}
.w0_c00248{width:698.880000pt;}
.x0_c00248{left:0.000000pt;}
.x7_c00248{left:68.480000pt;}
.x26_c00248{left:69.760000pt;}
.x30_c00248{left:71.040000pt;}
.x2_c00248{left:114.560000pt;}
.x8_c00248{left:132.480000pt;}
.x14_c00248{left:133.760000pt;}
.x3_c00248{left:144.000000pt;}
.x2d_c00248{left:161.280000pt;}
.x4_c00248{left:163.200000pt;}
.x9_c00248{left:170.880000pt;}
.xd_c00248{left:172.160000pt;}
.x10_c00248{left:181.120000pt;}
.x2a_c00248{left:208.640000pt;}
.x31_c00248{left:209.920000pt;}
.x5_c00248{left:211.200000pt;}
.x1d_c00248{left:218.240000pt;}
.x18_c00248{left:219.520000pt;}
.x6_c00248{left:228.480000pt;}
.x2b_c00248{left:248.320000pt;}
.x28_c00248{left:257.280000pt;}
.x1e_c00248{left:259.200000pt;}
.x11_c00248{left:268.160000pt;}
.x23_c00248{left:276.480000pt;}
.x15_c00248{left:277.760000pt;}
.x2e_c00248{left:286.080000pt;}
.x2c_c00248{left:296.960000pt;}
.x19_c00248{left:307.200000pt;}
.x16_c00248{left:316.160000pt;}
.x1f_c00248{left:335.360000pt;}
.x1a_c00248{left:382.720000pt;}
.x32_c00248{left:421.120000pt;}
.x1b_c00248{left:431.360000pt;}
.x2f_c00248{left:460.160000pt;}
.x33_c00248{left:497.920000pt;}
.x27_c00248{left:506.880000pt;}
.x21_c00248{left:508.160000pt;}
.x29_c00248{left:525.440000pt;}
.x13_c00248{left:526.720000pt;}
.xa_c00248{left:528.000000pt;}
.x20_c00248{left:536.960000pt;}
.x17_c00248{left:555.520000pt;}
.xe_c00248{left:556.800000pt;}
.x22_c00248{left:584.320000pt;}
.xf_c00248{left:586.240000pt;}
.x1c_c00248{left:594.560000pt;}
.x1_c00248{left:612.480000pt;}
.x12_c00248{left:614.400000pt;}
.x24_c00248{left:622.080000pt;}
.xb_c00248{left:623.360000pt;}
.x25_c00248{left:640.000000pt;}
.xc_c00248{left:641.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_bc3b66b831e8081eecdfeb72.woff2')format("woff");}.ff1_c00249{font-family:ff1_c00249;line-height:1.109863;font-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_c00249{transform:matrix(0.231550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231550,0.000000,0.000000,0.250000,0,0);}
.m2e_c00249{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m21_c00249{transform:matrix(0.244425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244425,0.000000,0.000000,0.250000,0,0);}
.m39_c00249{transform:matrix(0.246275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246275,0.000000,0.000000,0.250000,0,0);}
.mf_c00249{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m37_c00249{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);}
.m2f_c00249{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m9_c00249{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_c00249{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m25_c00249{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m2_c00249{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00249{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m22_c00249{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);}
.m2d_c00249{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m11_c00249{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);}
.m42_c00249{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.md_c00249{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m6_c00249{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m49_c00249{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m8_c00249{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mb_c00249{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00249{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m10_c00249{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m26_c00249{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00249{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00249{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m24_c00249{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m45_c00249{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m52_c00249{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m28_c00249{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m27_c00249{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00249{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00249{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mc_c00249{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);}
.m4b_c00249{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00249{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_c00249{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m31_c00249{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m0_c00249{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m3_c00249{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m36_c00249{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m15_c00249{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m43_c00249{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);}
.m16_c00249{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m14_c00249{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m48_c00249{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00249{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);}
.m41_c00249{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);}
.m32_c00249{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);}
.m4_c00249{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00249{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m7_c00249{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m12_c00249{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m1_c00249{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);}
.m44_c00249{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00249{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00249{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00249{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);}
.m13_c00249{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);}
.m3c_c00249{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m33_c00249{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m29_c00249{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m17_c00249{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m50_c00249{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);}
.ma_c00249{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m34_c00249{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m40_c00249{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m46_c00249{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m5_c00249{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00249{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);}
.m30_c00249{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00249{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m47_c00249{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00249{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.me_c00249{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m51_c00249{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_c00249{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m35_c00249{transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00249{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.m53_c00249{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m38_c00249{transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00249{transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00249{transform:matrix(1.127500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.127500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.127500,0.000000,0.000000,0.250000,0,0);}
.m20_c00249{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.v0_c00249{vertical-align:0.000000px;}
.v1_c00249{vertical-align:5.760000px;}
.v2_c00249{vertical-align:8.640000px;}
.ls0_c00249{letter-spacing:0.000000px;}
.sc__c00249{text-shadow:none;}
.sc0_c00249{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00249{-webkit-text-stroke:0px transparent;}
.sc0_c00249{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00249{word-spacing:0.000000px;}
.ws2_c00249{word-spacing:1.856400px;}
.ws0_c00249{word-spacing:15.600000px;}
.ws3_c00249{word-spacing:18.407644px;}
.ws1_c00249{word-spacing:56.302502px;}
.fc0_c00249{color:transparent;}
.fsb_c00249{font-size:14.400000px;}
.fse_c00249{font-size:31.680000px;}
.fs9_c00249{font-size:34.560000px;}
.fsd_c00249{font-size:43.200000px;}
.fs6_c00249{font-size:46.080000px;}
.fs3_c00249{font-size:48.960000px;}
.fs4_c00249{font-size:51.840000px;}
.fs1_c00249{font-size:54.720000px;}
.fs5_c00249{font-size:57.600000px;}
.fs7_c00249{font-size:60.480000px;}
.fsf_c00249{font-size:63.360000px;}
.fsc_c00249{font-size:66.240000px;}
.fs8_c00249{font-size:69.120000px;}
.fs2_c00249{font-size:72.000000px;}
.fsa_c00249{font-size:74.880000px;}
.fs0_c00249{font-size:77.760000px;}
.y0_c00249{bottom:0.000000px;}
.y63_c00249{bottom:81.360000px;}
.y74_c00249{bottom:84.240000px;}
.y62_c00249{bottom:85.680000px;}
.y64_c00249{bottom:86.400000px;}
.y61_c00249{bottom:87.120000px;}
.y60_c00249{bottom:87.840000px;}
.y5f_c00249{bottom:125.280000px;}
.y72_c00249{bottom:127.440000px;}
.y5e_c00249{bottom:128.160000px;}
.y73_c00249{bottom:128.880000px;}
.y5d_c00249{bottom:130.320000px;}
.y5c_c00249{bottom:169.200000px;}
.y71_c00249{bottom:171.360000px;}
.y5b_c00249{bottom:173.520000px;}
.y5a_c00249{bottom:174.240000px;}
.y59_c00249{bottom:211.680000px;}
.y70_c00249{bottom:214.560000px;}
.y6f_c00249{bottom:215.280000px;}
.y57_c00249{bottom:216.000000px;}
.y58_c00249{bottom:216.720000px;}
.y56_c00249{bottom:254.880000px;}
.y6c_c00249{bottom:257.760000px;}
.y55_c00249{bottom:259.920000px;}
.y6e_c00249{bottom:260.640000px;}
.y6d_c00249{bottom:261.360000px;}
.y54_c00249{bottom:299.520000px;}
.y6b_c00249{bottom:301.680000px;}
.y52_c00249{bottom:302.400000px;}
.y53_c00249{bottom:303.840000px;}
.y51_c00249{bottom:342.720000px;}
.y6a_c00249{bottom:344.880000px;}
.y69_c00249{bottom:345.600000px;}
.y4f_c00249{bottom:346.320000px;}
.y68_c00249{bottom:347.040000px;}
.y50_c00249{bottom:347.760000px;}
.y4e_c00249{bottom:385.920000px;}
.y67_c00249{bottom:387.360000px;}
.y4c_c00249{bottom:388.800000px;}
.y4d_c00249{bottom:390.960000px;}
.y4a_c00249{bottom:429.120000px;}
.y4b_c00249{bottom:431.280000px;}
.y65_c00249{bottom:432.000000px;}
.y48_c00249{bottom:432.720000px;}
.y49_c00249{bottom:433.440000px;}
.y66_c00249{bottom:434.160000px;}
.y46_c00249{bottom:474.480000px;}
.y47_c00249{bottom:475.200000px;}
.y45_c00249{bottom:478.080000px;}
.y42_c00249{bottom:526.320000px;}
.y40_c00249{bottom:527.760000px;}
.y41_c00249{bottom:528.480000px;}
.y43_c00249{bottom:529.200000px;}
.y3e_c00249{bottom:529.920000px;}
.y3f_c00249{bottom:530.640000px;}
.y44_c00249{bottom:531.360000px;}
.y38_c00249{bottom:569.520000px;}
.y3b_c00249{bottom:570.240000px;}
.y3c_c00249{bottom:570.960000px;}
.y37_c00249{bottom:571.680000px;}
.y3a_c00249{bottom:573.120000px;}
.y39_c00249{bottom:573.840000px;}
.y3d_c00249{bottom:574.560000px;}
.y35_c00249{bottom:612.720000px;}
.y36_c00249{bottom:613.440000px;}
.y31_c00249{bottom:614.880000px;}
.y34_c00249{bottom:616.320000px;}
.y32_c00249{bottom:617.040000px;}
.y33_c00249{bottom:617.760000px;}
.y24_c00249{bottom:655.920000px;}
.y25_c00249{bottom:656.640000px;}
.y23_c00249{bottom:657.360000px;}
.y30_c00249{bottom:658.800000px;}
.y2f_c00249{bottom:660.240000px;}
.y20_c00249{bottom:699.120000px;}
.y21_c00249{bottom:699.840000px;}
.y1d_c00249{bottom:700.560000px;}
.y2e_c00249{bottom:701.280000px;}
.y22_c00249{bottom:702.720000px;}
.y1f_c00249{bottom:703.440000px;}
.y1e_c00249{bottom:705.600000px;}
.y1c_c00249{bottom:742.320000px;}
.y2b_c00249{bottom:743.760000px;}
.y1b_c00249{bottom:744.480000px;}
.y2d_c00249{bottom:745.200000px;}
.y2c_c00249{bottom:745.920000px;}
.y1a_c00249{bottom:786.240000px;}
.y29_c00249{bottom:786.960000px;}
.y18_c00249{bottom:787.680000px;}
.y28_c00249{bottom:788.400000px;}
.y2a_c00249{bottom:789.120000px;}
.y19_c00249{bottom:789.840000px;}
.y17_c00249{bottom:828.720000px;}
.y27_c00249{bottom:829.440000px;}
.y13_c00249{bottom:830.160000px;}
.y16_c00249{bottom:830.880000px;}
.y15_c00249{bottom:833.040000px;}
.y14_c00249{bottom:833.760000px;}
.y11_c00249{bottom:873.360000px;}
.y26_c00249{bottom:874.080000px;}
.y12_c00249{bottom:876.960000px;}
.yf_c00249{bottom:918.000000px;}
.y10_c00249{bottom:918.720000px;}
.ye_c00249{bottom:919.440000px;}
.yc_c00249{bottom:969.840000px;}
.ya_c00249{bottom:970.560000px;}
.yd_c00249{bottom:972.000000px;}
.yb_c00249{bottom:974.160000px;}
.y9_c00249{bottom:1013.760000px;}
.y8_c00249{bottom:1014.480000px;}
.y3_c00249{bottom:1046.160000px;}
.y2_c00249{bottom:1046.880000px;}
.y6_c00249{bottom:1047.600000px;}
.y7_c00249{bottom:1048.320000px;}
.y5_c00249{bottom:1049.760000px;}
.y4_c00249{bottom:1050.480000px;}
.y1_c00249{bottom:1109.520000px;}
.he_c00249{height:12.958594px;}
.h11_c00249{height:28.508906px;}
.hc_c00249{height:31.100625px;}
.h10_c00249{height:38.875781px;}
.h8_c00249{height:41.467500px;}
.h5_c00249{height:44.059219px;}
.h6_c00249{height:46.650937px;}
.h3_c00249{height:49.242656px;}
.ha_c00249{height:51.834375px;}
.h12_c00249{height:52.699219px;}
.h9_c00249{height:54.426094px;}
.h13_c00249{height:57.017812px;}
.h7_c00249{height:57.594375px;}
.hf_c00249{height:59.609531px;}
.hb_c00249{height:62.201250px;}
.h4_c00249{height:64.792969px;}
.hd_c00249{height:67.384687px;}
.h2_c00249{height:69.976406px;}
.h0_c00249{height:1153.440000px;}
.h1_c00249{height:1153.500000px;}
.w1_c00249{width:788.250000px;}
.w0_c00249{width:788.400000px;}
.x0_c00249{left:0.000000px;}
.x2_c00249{left:77.040000px;}
.x1c_c00249{left:78.480000px;}
.x28_c00249{left:79.920000px;}
.x11_c00249{left:128.880000px;}
.x3_c00249{left:149.040000px;}
.x1d_c00249{left:151.200000px;}
.x12_c00249{left:162.000000px;}
.x1e_c00249{left:181.440000px;}
.x17_c00249{left:183.600000px;}
.xb_c00249{left:192.240000px;}
.x14_c00249{left:194.400000px;}
.xa_c00249{left:205.200000px;}
.x1f_c00249{left:214.560000px;}
.x4_c00249{left:235.440000px;}
.xc_c00249{left:237.600000px;}
.x20_c00249{left:246.240000px;}
.x2b_c00249{left:248.400000px;}
.x13_c00249{left:267.840000px;}
.x5_c00249{left:280.800000px;}
.x21_c00249{left:291.600000px;}
.x26_c00249{left:301.680000px;}
.x15_c00249{left:332.640000px;}
.x27_c00249{left:345.600000px;}
.x6_c00249{left:367.200000px;}
.xd_c00249{left:377.280000px;}
.x29_c00249{left:387.360000px;}
.x22_c00249{left:399.600000px;}
.x16_c00249{left:409.680000px;}
.x7_c00249{left:421.920000px;}
.x2a_c00249{left:431.280000px;}
.xe_c00249{left:432.720000px;}
.x23_c00249{left:453.600000px;}
.x18_c00249{left:475.920000px;}
.x24_c00249{left:496.080000px;}
.x8_c00249{left:562.320000px;}
.xf_c00249{left:573.120000px;}
.x19_c00249{left:593.280000px;}
.x9_c00249{left:626.400000px;}
.x10_c00249{left:658.800000px;}
.x25_c00249{left:669.600000px;}
.x1b_c00249{left:691.200000px;}
.x2c_c00249{left:700.560000px;}
.x1_c00249{left:702.000000px;}
.x1a_c00249{left:721.440000px;}
@media print{
.v0_c00249{vertical-align:0.000000pt;}
.v1_c00249{vertical-align:5.120000pt;}
.v2_c00249{vertical-align:7.680000pt;}
.ls0_c00249{letter-spacing:0.000000pt;}
.ws4_c00249{word-spacing:0.000000pt;}
.ws2_c00249{word-spacing:1.650133pt;}
.ws0_c00249{word-spacing:13.866667pt;}
.ws3_c00249{word-spacing:16.362350pt;}
.ws1_c00249{word-spacing:50.046669pt;}
.fsb_c00249{font-size:12.800000pt;}
.fse_c00249{font-size:28.160000pt;}
.fs9_c00249{font-size:30.720000pt;}
.fsd_c00249{font-size:38.400000pt;}
.fs6_c00249{font-size:40.960000pt;}
.fs3_c00249{font-size:43.520000pt;}
.fs4_c00249{font-size:46.080000pt;}
.fs1_c00249{font-size:48.640000pt;}
.fs5_c00249{font-size:51.200000pt;}
.fs7_c00249{font-size:53.760000pt;}
.fsf_c00249{font-size:56.320000pt;}
.fsc_c00249{font-size:58.880000pt;}
.fs8_c00249{font-size:61.440000pt;}
.fs2_c00249{font-size:64.000000pt;}
.fsa_c00249{font-size:66.560000pt;}
.fs0_c00249{font-size:69.120000pt;}
.y0_c00249{bottom:0.000000pt;}
.y63_c00249{bottom:72.320000pt;}
.y74_c00249{bottom:74.880000pt;}
.y62_c00249{bottom:76.160000pt;}
.y64_c00249{bottom:76.800000pt;}
.y61_c00249{bottom:77.440000pt;}
.y60_c00249{bottom:78.080000pt;}
.y5f_c00249{bottom:111.360000pt;}
.y72_c00249{bottom:113.280000pt;}
.y5e_c00249{bottom:113.920000pt;}
.y73_c00249{bottom:114.560000pt;}
.y5d_c00249{bottom:115.840000pt;}
.y5c_c00249{bottom:150.400000pt;}
.y71_c00249{bottom:152.320000pt;}
.y5b_c00249{bottom:154.240000pt;}
.y5a_c00249{bottom:154.880000pt;}
.y59_c00249{bottom:188.160000pt;}
.y70_c00249{bottom:190.720000pt;}
.y6f_c00249{bottom:191.360000pt;}
.y57_c00249{bottom:192.000000pt;}
.y58_c00249{bottom:192.640000pt;}
.y56_c00249{bottom:226.560000pt;}
.y6c_c00249{bottom:229.120000pt;}
.y55_c00249{bottom:231.040000pt;}
.y6e_c00249{bottom:231.680000pt;}
.y6d_c00249{bottom:232.320000pt;}
.y54_c00249{bottom:266.240000pt;}
.y6b_c00249{bottom:268.160000pt;}
.y52_c00249{bottom:268.800000pt;}
.y53_c00249{bottom:270.080000pt;}
.y51_c00249{bottom:304.640000pt;}
.y6a_c00249{bottom:306.560000pt;}
.y69_c00249{bottom:307.200000pt;}
.y4f_c00249{bottom:307.840000pt;}
.y68_c00249{bottom:308.480000pt;}
.y50_c00249{bottom:309.120000pt;}
.y4e_c00249{bottom:343.040000pt;}
.y67_c00249{bottom:344.320000pt;}
.y4c_c00249{bottom:345.600000pt;}
.y4d_c00249{bottom:347.520000pt;}
.y4a_c00249{bottom:381.440000pt;}
.y4b_c00249{bottom:383.360000pt;}
.y65_c00249{bottom:384.000000pt;}
.y48_c00249{bottom:384.640000pt;}
.y49_c00249{bottom:385.280000pt;}
.y66_c00249{bottom:385.920000pt;}
.y46_c00249{bottom:421.760000pt;}
.y47_c00249{bottom:422.400000pt;}
.y45_c00249{bottom:424.960000pt;}
.y42_c00249{bottom:467.840000pt;}
.y40_c00249{bottom:469.120000pt;}
.y41_c00249{bottom:469.760000pt;}
.y43_c00249{bottom:470.400000pt;}
.y3e_c00249{bottom:471.040000pt;}
.y3f_c00249{bottom:471.680000pt;}
.y44_c00249{bottom:472.320000pt;}
.y38_c00249{bottom:506.240000pt;}
.y3b_c00249{bottom:506.880000pt;}
.y3c_c00249{bottom:507.520000pt;}
.y37_c00249{bottom:508.160000pt;}
.y3a_c00249{bottom:509.440000pt;}
.y39_c00249{bottom:510.080000pt;}
.y3d_c00249{bottom:510.720000pt;}
.y35_c00249{bottom:544.640000pt;}
.y36_c00249{bottom:545.280000pt;}
.y31_c00249{bottom:546.560000pt;}
.y34_c00249{bottom:547.840000pt;}
.y32_c00249{bottom:548.480000pt;}
.y33_c00249{bottom:549.120000pt;}
.y24_c00249{bottom:583.040000pt;}
.y25_c00249{bottom:583.680000pt;}
.y23_c00249{bottom:584.320000pt;}
.y30_c00249{bottom:585.600000pt;}
.y2f_c00249{bottom:586.880000pt;}
.y20_c00249{bottom:621.440000pt;}
.y21_c00249{bottom:622.080000pt;}
.y1d_c00249{bottom:622.720000pt;}
.y2e_c00249{bottom:623.360000pt;}
.y22_c00249{bottom:624.640000pt;}
.y1f_c00249{bottom:625.280000pt;}
.y1e_c00249{bottom:627.200000pt;}
.y1c_c00249{bottom:659.840000pt;}
.y2b_c00249{bottom:661.120000pt;}
.y1b_c00249{bottom:661.760000pt;}
.y2d_c00249{bottom:662.400000pt;}
.y2c_c00249{bottom:663.040000pt;}
.y1a_c00249{bottom:698.880000pt;}
.y29_c00249{bottom:699.520000pt;}
.y18_c00249{bottom:700.160000pt;}
.y28_c00249{bottom:700.800000pt;}
.y2a_c00249{bottom:701.440000pt;}
.y19_c00249{bottom:702.080000pt;}
.y17_c00249{bottom:736.640000pt;}
.y27_c00249{bottom:737.280000pt;}
.y13_c00249{bottom:737.920000pt;}
.y16_c00249{bottom:738.560000pt;}
.y15_c00249{bottom:740.480000pt;}
.y14_c00249{bottom:741.120000pt;}
.y11_c00249{bottom:776.320000pt;}
.y26_c00249{bottom:776.960000pt;}
.y12_c00249{bottom:779.520000pt;}
.yf_c00249{bottom:816.000000pt;}
.y10_c00249{bottom:816.640000pt;}
.ye_c00249{bottom:817.280000pt;}
.yc_c00249{bottom:862.080000pt;}
.ya_c00249{bottom:862.720000pt;}
.yd_c00249{bottom:864.000000pt;}
.yb_c00249{bottom:865.920000pt;}
.y9_c00249{bottom:901.120000pt;}
.y8_c00249{bottom:901.760000pt;}
.y3_c00249{bottom:929.920000pt;}
.y2_c00249{bottom:930.560000pt;}
.y6_c00249{bottom:931.200000pt;}
.y7_c00249{bottom:931.840000pt;}
.y5_c00249{bottom:933.120000pt;}
.y4_c00249{bottom:933.760000pt;}
.y1_c00249{bottom:986.240000pt;}
.he_c00249{height:11.518750pt;}
.h11_c00249{height:25.341250pt;}
.hc_c00249{height:27.645000pt;}
.h10_c00249{height:34.556250pt;}
.h8_c00249{height:36.860000pt;}
.h5_c00249{height:39.163750pt;}
.h6_c00249{height:41.467500pt;}
.h3_c00249{height:43.771250pt;}
.ha_c00249{height:46.075000pt;}
.h12_c00249{height:46.843750pt;}
.h9_c00249{height:48.378750pt;}
.h13_c00249{height:50.682500pt;}
.h7_c00249{height:51.195000pt;}
.hf_c00249{height:52.986250pt;}
.hb_c00249{height:55.290000pt;}
.h4_c00249{height:57.593750pt;}
.hd_c00249{height:59.897500pt;}
.h2_c00249{height:62.201250pt;}
.h0_c00249{height:1025.280000pt;}
.h1_c00249{height:1025.333333pt;}
.w1_c00249{width:700.666667pt;}
.w0_c00249{width:700.800000pt;}
.x0_c00249{left:0.000000pt;}
.x2_c00249{left:68.480000pt;}
.x1c_c00249{left:69.760000pt;}
.x28_c00249{left:71.040000pt;}
.x11_c00249{left:114.560000pt;}
.x3_c00249{left:132.480000pt;}
.x1d_c00249{left:134.400000pt;}
.x12_c00249{left:144.000000pt;}
.x1e_c00249{left:161.280000pt;}
.x17_c00249{left:163.200000pt;}
.xb_c00249{left:170.880000pt;}
.x14_c00249{left:172.800000pt;}
.xa_c00249{left:182.400000pt;}
.x1f_c00249{left:190.720000pt;}
.x4_c00249{left:209.280000pt;}
.xc_c00249{left:211.200000pt;}
.x20_c00249{left:218.880000pt;}
.x2b_c00249{left:220.800000pt;}
.x13_c00249{left:238.080000pt;}
.x5_c00249{left:249.600000pt;}
.x21_c00249{left:259.200000pt;}
.x26_c00249{left:268.160000pt;}
.x15_c00249{left:295.680000pt;}
.x27_c00249{left:307.200000pt;}
.x6_c00249{left:326.400000pt;}
.xd_c00249{left:335.360000pt;}
.x29_c00249{left:344.320000pt;}
.x22_c00249{left:355.200000pt;}
.x16_c00249{left:364.160000pt;}
.x7_c00249{left:375.040000pt;}
.x2a_c00249{left:383.360000pt;}
.xe_c00249{left:384.640000pt;}
.x23_c00249{left:403.200000pt;}
.x18_c00249{left:423.040000pt;}
.x24_c00249{left:440.960000pt;}
.x8_c00249{left:499.840000pt;}
.xf_c00249{left:509.440000pt;}
.x19_c00249{left:527.360000pt;}
.x9_c00249{left:556.800000pt;}
.x10_c00249{left:585.600000pt;}
.x25_c00249{left:595.200000pt;}
.x1b_c00249{left:614.400000pt;}
.x2c_c00249{left:622.720000pt;}
.x1_c00249{left:624.000000pt;}
.x1a_c00249{left:641.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_98084002dac0d6c564df382a.woff2')format("woff");}.ff1_c00250{font-family:ff1_c00250;line-height:1.109863;font-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_c00250{transform:matrix(0.167325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167325,0.000000,0.000000,0.250000,0,0);}
.m49_c00250{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m34_c00250{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m3f_c00250{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m45_c00250{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00250{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.me_c00250{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m42_c00250{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00250{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_c00250{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00250{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m37_c00250{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m47_c00250{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00250{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00250{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m3_c00250{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.ma_c00250{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m46_c00250{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m24_c00250{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.md_c00250{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m5_c00250{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m16_c00250{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mc_c00250{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00250{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m11_c00250{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00250{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m7_c00250{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00250{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m15_c00250{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m28_c00250{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00250{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m33_c00250{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m27_c00250{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m2_c00250{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m39_c00250{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m44_c00250{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m14_c00250{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m18_c00250{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);}
.m22_c00250{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m25_c00250{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m6_c00250{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m0_c00250{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m1_c00250{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00250{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00250{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);}
.m29_c00250{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m9_c00250{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m13_c00250{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);}
.m43_c00250{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00250{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00250{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00250{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00250{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);}
.m2a_c00250{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m20_c00250{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.mb_c00250{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m19_c00250{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);}
.m30_c00250{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);}
.m1d_c00250{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m31_c00250{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m36_c00250{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m40_c00250{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_c00250{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m21_c00250{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00250{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m26_c00250{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);}
.m38_c00250{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00250{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00250{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m17_c00250{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.mf_c00250{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m4_c00250{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);}
.m35_c00250{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);}
.m32_c00250{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m41_c00250{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m48_c00250{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m12_c00250{transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00250{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.v0_c00250{vertical-align:0.000000px;}
.v1_c00250{vertical-align:2.880000px;}
.ls0_c00250{letter-spacing:0.000000px;}
.sc__c00250{text-shadow:none;}
.sc0_c00250{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00250{-webkit-text-stroke:0px transparent;}
.sc0_c00250{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00250{word-spacing:0.000000px;}
.ws0_c00250{word-spacing:0.510000px;}
.fc0_c00250{color:transparent;}
.fsf_c00250{font-size:11.520000px;}
.fse_c00250{font-size:34.560000px;}
.fsd_c00250{font-size:43.200000px;}
.fs8_c00250{font-size:46.080000px;}
.fs2_c00250{font-size:48.960000px;}
.fs4_c00250{font-size:51.840000px;}
.fs6_c00250{font-size:54.720000px;}
.fs5_c00250{font-size:57.600000px;}
.fs1_c00250{font-size:60.480000px;}
.fsc_c00250{font-size:63.360000px;}
.fsa_c00250{font-size:66.240000px;}
.fs7_c00250{font-size:69.120000px;}
.fs3_c00250{font-size:72.000000px;}
.fsb_c00250{font-size:74.880000px;}
.fs0_c00250{font-size:77.760000px;}
.fs9_c00250{font-size:115.200000px;}
.y0_c00250{bottom:0.000000px;}
.y7a_c00250{bottom:23.760000px;}
.y7b_c00250{bottom:26.640000px;}
.y7c_c00250{bottom:27.360000px;}
.y79_c00250{bottom:28.800000px;}
.y7d_c00250{bottom:29.520000px;}
.y76_c00250{bottom:66.960000px;}
.y77_c00250{bottom:68.400000px;}
.y75_c00250{bottom:70.560000px;}
.y78_c00250{bottom:71.280000px;}
.y73_c00250{bottom:72.720000px;}
.y74_c00250{bottom:75.600000px;}
.y70_c00250{bottom:109.440000px;}
.y6f_c00250{bottom:110.160000px;}
.y72_c00250{bottom:112.320000px;}
.y71_c00250{bottom:114.480000px;}
.y6e_c00250{bottom:115.200000px;}
.y6b_c00250{bottom:154.080000px;}
.y69_c00250{bottom:154.800000px;}
.y6c_c00250{bottom:156.240000px;}
.y6a_c00250{bottom:156.960000px;}
.y68_c00250{bottom:158.400000px;}
.y6d_c00250{bottom:159.120000px;}
.y64_c00250{bottom:197.280000px;}
.y66_c00250{bottom:198.720000px;}
.y65_c00250{bottom:199.440000px;}
.y63_c00250{bottom:200.880000px;}
.y67_c00250{bottom:201.600000px;}
.y5f_c00250{bottom:240.480000px;}
.y61_c00250{bottom:242.640000px;}
.y60_c00250{bottom:243.360000px;}
.y5e_c00250{bottom:244.080000px;}
.y62_c00250{bottom:244.800000px;}
.y5a_c00250{bottom:283.680000px;}
.y5b_c00250{bottom:285.840000px;}
.y5d_c00250{bottom:286.560000px;}
.y59_c00250{bottom:287.280000px;}
.y5c_c00250{bottom:288.000000px;}
.y54_c00250{bottom:326.160000px;}
.y57_c00250{bottom:328.320000px;}
.y56_c00250{bottom:329.040000px;}
.y53_c00250{bottom:329.760000px;}
.y55_c00250{bottom:330.480000px;}
.y58_c00250{bottom:331.200000px;}
.y4f_c00250{bottom:370.080000px;}
.y51_c00250{bottom:371.520000px;}
.y4e_c00250{bottom:372.960000px;}
.y50_c00250{bottom:373.680000px;}
.y52_c00250{bottom:374.400000px;}
.y4a_c00250{bottom:413.280000px;}
.y4c_c00250{bottom:414.720000px;}
.y4b_c00250{bottom:415.440000px;}
.y49_c00250{bottom:416.160000px;}
.y4d_c00250{bottom:416.880000px;}
.y45_c00250{bottom:456.480000px;}
.y47_c00250{bottom:457.200000px;}
.y48_c00250{bottom:457.920000px;}
.y44_c00250{bottom:458.640000px;}
.y46_c00250{bottom:460.800000px;}
.y42_c00250{bottom:501.840000px;}
.y43_c00250{bottom:504.000000px;}
.y3d_c00250{bottom:532.080000px;}
.y40_c00250{bottom:532.800000px;}
.y3f_c00250{bottom:533.520000px;}
.y3b_c00250{bottom:534.240000px;}
.y3e_c00250{bottom:535.680000px;}
.y3c_c00250{bottom:536.400000px;}
.y41_c00250{bottom:537.120000px;}
.y3a_c00250{bottom:575.280000px;}
.y39_c00250{bottom:577.440000px;}
.y38_c00250{bottom:578.880000px;}
.y36_c00250{bottom:579.600000px;}
.y37_c00250{bottom:580.320000px;}
.y2c_c00250{bottom:619.200000px;}
.y35_c00250{bottom:619.920000px;}
.y2d_c00250{bottom:620.640000px;}
.y2b_c00250{bottom:621.360000px;}
.y2f_c00250{bottom:622.800000px;}
.y2e_c00250{bottom:623.520000px;}
.y29_c00250{bottom:662.400000px;}
.y32_c00250{bottom:663.120000px;}
.y28_c00250{bottom:664.560000px;}
.y34_c00250{bottom:665.280000px;}
.y2a_c00250{bottom:666.000000px;}
.y33_c00250{bottom:666.720000px;}
.y27_c00250{bottom:706.320000px;}
.y30_c00250{bottom:707.040000px;}
.y25_c00250{bottom:707.760000px;}
.y31_c00250{bottom:709.200000px;}
.y26_c00250{bottom:709.920000px;}
.y22_c00250{bottom:748.800000px;}
.y24_c00250{bottom:749.520000px;}
.y23_c00250{bottom:750.240000px;}
.y20_c00250{bottom:750.960000px;}
.y21_c00250{bottom:753.120000px;}
.y1e_c00250{bottom:792.000000px;}
.y1f_c00250{bottom:792.720000px;}
.y1d_c00250{bottom:794.160000px;}
.y1c_c00250{bottom:824.400000px;}
.y18_c00250{bottom:835.920000px;}
.y1a_c00250{bottom:836.640000px;}
.y19_c00250{bottom:837.360000px;}
.y1b_c00250{bottom:838.800000px;}
.y16_c00250{bottom:879.120000px;}
.y15_c00250{bottom:879.840000px;}
.y17_c00250{bottom:882.000000px;}
.y11_c00250{bottom:910.800000px;}
.y10_c00250{bottom:911.520000px;}
.y12_c00250{bottom:912.240000px;}
.y14_c00250{bottom:913.680000px;}
.y13_c00250{bottom:914.400000px;}
.yd_c00250{bottom:954.000000px;}
.yb_c00250{bottom:954.720000px;}
.ye_c00250{bottom:955.440000px;}
.yf_c00250{bottom:956.880000px;}
.yc_c00250{bottom:958.320000px;}
.y6_c00250{bottom:997.200000px;}
.y4_c00250{bottom:997.920000px;}
.y9_c00250{bottom:998.640000px;}
.ya_c00250{bottom:1000.080000px;}
.y5_c00250{bottom:1000.800000px;}
.y2_c00250{bottom:1041.120000px;}
.y7_c00250{bottom:1041.840000px;}
.y8_c00250{bottom:1043.280000px;}
.y3_c00250{bottom:1044.720000px;}
.y1_c00250{bottom:1105.920000px;}
.h12_c00250{height:10.366875px;}
.h11_c00250{height:31.100625px;}
.h10_c00250{height:38.875781px;}
.ha_c00250{height:41.467500px;}
.h4_c00250{height:44.059219px;}
.h6_c00250{height:46.650937px;}
.h8_c00250{height:49.242656px;}
.h7_c00250{height:51.834375px;}
.h3_c00250{height:54.426094px;}
.he_c00250{height:57.017812px;}
.hc_c00250{height:59.609531px;}
.h9_c00250{height:62.201250px;}
.h5_c00250{height:64.792969px;}
.hd_c00250{height:67.384687px;}
.hf_c00250{height:67.672969px;}
.h2_c00250{height:69.976406px;}
.hb_c00250{height:103.668750px;}
.h1_c00250{height:1150.500000px;}
.h0_c00250{height:1150.560000px;}
.w1_c00250{width:783.750000px;}
.w0_c00250{width:784.080000px;}
.x0_c00250{left:0.000000px;}
.x2_c00250{left:71.280000px;}
.x20_c00250{left:72.720000px;}
.x2d_c00250{left:74.160000px;}
.x33_c00250{left:75.600000px;}
.x36_c00250{left:124.560000px;}
.x3_c00250{left:144.720000px;}
.x2a_c00250{left:146.160000px;}
.x21_c00250{left:177.120000px;}
.x37_c00250{left:179.280000px;}
.x4_c00250{left:187.920000px;}
.x19_c00250{left:198.720000px;}
.x16_c00250{left:209.520000px;}
.x10_c00250{left:231.840000px;}
.x7_c00250{left:241.920000px;}
.x17_c00250{left:253.440000px;}
.x1a_c00250{left:263.520000px;}
.x35_c00250{left:275.040000px;}
.x8_c00250{left:285.120000px;}
.x34_c00250{left:286.560000px;}
.x5_c00250{left:295.920000px;}
.x22_c00250{left:297.360000px;}
.x2f_c00250{left:306.720000px;}
.x11_c00250{left:318.240000px;}
.x1b_c00250{left:329.040000px;}
.x18_c00250{left:349.920000px;}
.x30_c00250{left:351.360000px;}
.x6_c00250{left:360.720000px;}
.x9_c00250{left:371.520000px;}
.x27_c00250{left:383.760000px;}
.x1c_c00250{left:393.840000px;}
.x23_c00250{left:403.920000px;}
.x12_c00250{left:415.440000px;}
.xa_c00250{left:425.520000px;}
.x26_c00250{left:426.960000px;}
.x24_c00250{left:436.320000px;}
.x25_c00250{left:458.640000px;}
.x28_c00250{left:468.720000px;}
.x1d_c00250{left:501.840000px;}
.x13_c00250{left:511.920000px;}
.x29_c00250{left:523.440000px;}
.x31_c00250{left:557.280000px;}
.x2e_c00250{left:566.640000px;}
.x2b_c00250{left:568.080000px;}
.x14_c00250{left:587.520000px;}
.xf_c00250{left:588.960000px;}
.x1f_c00250{left:599.760000px;}
.x32_c00250{left:619.920000px;}
.xb_c00250{left:621.360315px;}
.x2c_c00250{left:644.400000px;}
.xc_c00250{left:653.760000px;}
.x15_c00250{left:686.160000px;}
.xd_c00250{left:696.240000px;}
.x1_c00250{left:697.680000px;}
.xe_c00250{left:715.680000px;}
.x1e_c00250{left:717.120000px;}
@media print{
.v0_c00250{vertical-align:0.000000pt;}
.v1_c00250{vertical-align:2.560000pt;}
.ls0_c00250{letter-spacing:0.000000pt;}
.ws1_c00250{word-spacing:0.000000pt;}
.ws0_c00250{word-spacing:0.453333pt;}
.fsf_c00250{font-size:10.240000pt;}
.fse_c00250{font-size:30.720000pt;}
.fsd_c00250{font-size:38.400000pt;}
.fs8_c00250{font-size:40.960000pt;}
.fs2_c00250{font-size:43.520000pt;}
.fs4_c00250{font-size:46.080000pt;}
.fs6_c00250{font-size:48.640000pt;}
.fs5_c00250{font-size:51.200000pt;}
.fs1_c00250{font-size:53.760000pt;}
.fsc_c00250{font-size:56.320000pt;}
.fsa_c00250{font-size:58.880000pt;}
.fs7_c00250{font-size:61.440000pt;}
.fs3_c00250{font-size:64.000000pt;}
.fsb_c00250{font-size:66.560000pt;}
.fs0_c00250{font-size:69.120000pt;}
.fs9_c00250{font-size:102.400000pt;}
.y0_c00250{bottom:0.000000pt;}
.y7a_c00250{bottom:21.120000pt;}
.y7b_c00250{bottom:23.680000pt;}
.y7c_c00250{bottom:24.320000pt;}
.y79_c00250{bottom:25.600000pt;}
.y7d_c00250{bottom:26.240000pt;}
.y76_c00250{bottom:59.520000pt;}
.y77_c00250{bottom:60.800000pt;}
.y75_c00250{bottom:62.720000pt;}
.y78_c00250{bottom:63.360000pt;}
.y73_c00250{bottom:64.640000pt;}
.y74_c00250{bottom:67.200000pt;}
.y70_c00250{bottom:97.280000pt;}
.y6f_c00250{bottom:97.920000pt;}
.y72_c00250{bottom:99.840000pt;}
.y71_c00250{bottom:101.760000pt;}
.y6e_c00250{bottom:102.400000pt;}
.y6b_c00250{bottom:136.960000pt;}
.y69_c00250{bottom:137.600000pt;}
.y6c_c00250{bottom:138.880000pt;}
.y6a_c00250{bottom:139.520000pt;}
.y68_c00250{bottom:140.800000pt;}
.y6d_c00250{bottom:141.440000pt;}
.y64_c00250{bottom:175.360000pt;}
.y66_c00250{bottom:176.640000pt;}
.y65_c00250{bottom:177.280000pt;}
.y63_c00250{bottom:178.560000pt;}
.y67_c00250{bottom:179.200000pt;}
.y5f_c00250{bottom:213.760000pt;}
.y61_c00250{bottom:215.680000pt;}
.y60_c00250{bottom:216.320000pt;}
.y5e_c00250{bottom:216.960000pt;}
.y62_c00250{bottom:217.600000pt;}
.y5a_c00250{bottom:252.160000pt;}
.y5b_c00250{bottom:254.080000pt;}
.y5d_c00250{bottom:254.720000pt;}
.y59_c00250{bottom:255.360000pt;}
.y5c_c00250{bottom:256.000000pt;}
.y54_c00250{bottom:289.920000pt;}
.y57_c00250{bottom:291.840000pt;}
.y56_c00250{bottom:292.480000pt;}
.y53_c00250{bottom:293.120000pt;}
.y55_c00250{bottom:293.760000pt;}
.y58_c00250{bottom:294.400000pt;}
.y4f_c00250{bottom:328.960000pt;}
.y51_c00250{bottom:330.240000pt;}
.y4e_c00250{bottom:331.520000pt;}
.y50_c00250{bottom:332.160000pt;}
.y52_c00250{bottom:332.800000pt;}
.y4a_c00250{bottom:367.360000pt;}
.y4c_c00250{bottom:368.640000pt;}
.y4b_c00250{bottom:369.280000pt;}
.y49_c00250{bottom:369.920000pt;}
.y4d_c00250{bottom:370.560000pt;}
.y45_c00250{bottom:405.760000pt;}
.y47_c00250{bottom:406.400000pt;}
.y48_c00250{bottom:407.040000pt;}
.y44_c00250{bottom:407.680000pt;}
.y46_c00250{bottom:409.600000pt;}
.y42_c00250{bottom:446.080000pt;}
.y43_c00250{bottom:448.000000pt;}
.y3d_c00250{bottom:472.960000pt;}
.y40_c00250{bottom:473.600000pt;}
.y3f_c00250{bottom:474.240000pt;}
.y3b_c00250{bottom:474.880000pt;}
.y3e_c00250{bottom:476.160000pt;}
.y3c_c00250{bottom:476.800000pt;}
.y41_c00250{bottom:477.440000pt;}
.y3a_c00250{bottom:511.360000pt;}
.y39_c00250{bottom:513.280000pt;}
.y38_c00250{bottom:514.560000pt;}
.y36_c00250{bottom:515.200000pt;}
.y37_c00250{bottom:515.840000pt;}
.y2c_c00250{bottom:550.400000pt;}
.y35_c00250{bottom:551.040000pt;}
.y2d_c00250{bottom:551.680000pt;}
.y2b_c00250{bottom:552.320000pt;}
.y2f_c00250{bottom:553.600000pt;}
.y2e_c00250{bottom:554.240000pt;}
.y29_c00250{bottom:588.800000pt;}
.y32_c00250{bottom:589.440000pt;}
.y28_c00250{bottom:590.720000pt;}
.y34_c00250{bottom:591.360000pt;}
.y2a_c00250{bottom:592.000000pt;}
.y33_c00250{bottom:592.640000pt;}
.y27_c00250{bottom:627.840000pt;}
.y30_c00250{bottom:628.480000pt;}
.y25_c00250{bottom:629.120000pt;}
.y31_c00250{bottom:630.400000pt;}
.y26_c00250{bottom:631.040000pt;}
.y22_c00250{bottom:665.600000pt;}
.y24_c00250{bottom:666.240000pt;}
.y23_c00250{bottom:666.880000pt;}
.y20_c00250{bottom:667.520000pt;}
.y21_c00250{bottom:669.440000pt;}
.y1e_c00250{bottom:704.000000pt;}
.y1f_c00250{bottom:704.640000pt;}
.y1d_c00250{bottom:705.920000pt;}
.y1c_c00250{bottom:732.800000pt;}
.y18_c00250{bottom:743.040000pt;}
.y1a_c00250{bottom:743.680000pt;}
.y19_c00250{bottom:744.320000pt;}
.y1b_c00250{bottom:745.600000pt;}
.y16_c00250{bottom:781.440000pt;}
.y15_c00250{bottom:782.080000pt;}
.y17_c00250{bottom:784.000000pt;}
.y11_c00250{bottom:809.600000pt;}
.y10_c00250{bottom:810.240000pt;}
.y12_c00250{bottom:810.880000pt;}
.y14_c00250{bottom:812.160000pt;}
.y13_c00250{bottom:812.800000pt;}
.yd_c00250{bottom:848.000000pt;}
.yb_c00250{bottom:848.640000pt;}
.ye_c00250{bottom:849.280000pt;}
.yf_c00250{bottom:850.560000pt;}
.yc_c00250{bottom:851.840000pt;}
.y6_c00250{bottom:886.400000pt;}
.y4_c00250{bottom:887.040000pt;}
.y9_c00250{bottom:887.680000pt;}
.ya_c00250{bottom:888.960000pt;}
.y5_c00250{bottom:889.600000pt;}
.y2_c00250{bottom:925.440000pt;}
.y7_c00250{bottom:926.080000pt;}
.y8_c00250{bottom:927.360000pt;}
.y3_c00250{bottom:928.640000pt;}
.y1_c00250{bottom:983.040000pt;}
.h12_c00250{height:9.215000pt;}
.h11_c00250{height:27.645000pt;}
.h10_c00250{height:34.556250pt;}
.ha_c00250{height:36.860000pt;}
.h4_c00250{height:39.163750pt;}
.h6_c00250{height:41.467500pt;}
.h8_c00250{height:43.771250pt;}
.h7_c00250{height:46.075000pt;}
.h3_c00250{height:48.378750pt;}
.he_c00250{height:50.682500pt;}
.hc_c00250{height:52.986250pt;}
.h9_c00250{height:55.290000pt;}
.h5_c00250{height:57.593750pt;}
.hd_c00250{height:59.897500pt;}
.hf_c00250{height:60.153750pt;}
.h2_c00250{height:62.201250pt;}
.hb_c00250{height:92.150000pt;}
.h1_c00250{height:1022.666667pt;}
.h0_c00250{height:1022.720000pt;}
.w1_c00250{width:696.666667pt;}
.w0_c00250{width:696.960000pt;}
.x0_c00250{left:0.000000pt;}
.x2_c00250{left:63.360000pt;}
.x20_c00250{left:64.640000pt;}
.x2d_c00250{left:65.920000pt;}
.x33_c00250{left:67.200000pt;}
.x36_c00250{left:110.720000pt;}
.x3_c00250{left:128.640000pt;}
.x2a_c00250{left:129.920000pt;}
.x21_c00250{left:157.440000pt;}
.x37_c00250{left:159.360000pt;}
.x4_c00250{left:167.040000pt;}
.x19_c00250{left:176.640000pt;}
.x16_c00250{left:186.240000pt;}
.x10_c00250{left:206.080000pt;}
.x7_c00250{left:215.040000pt;}
.x17_c00250{left:225.280000pt;}
.x1a_c00250{left:234.240000pt;}
.x35_c00250{left:244.480000pt;}
.x8_c00250{left:253.440000pt;}
.x34_c00250{left:254.720000pt;}
.x5_c00250{left:263.040000pt;}
.x22_c00250{left:264.320000pt;}
.x2f_c00250{left:272.640000pt;}
.x11_c00250{left:282.880000pt;}
.x1b_c00250{left:292.480000pt;}
.x18_c00250{left:311.040000pt;}
.x30_c00250{left:312.320000pt;}
.x6_c00250{left:320.640000pt;}
.x9_c00250{left:330.240000pt;}
.x27_c00250{left:341.120000pt;}
.x1c_c00250{left:350.080000pt;}
.x23_c00250{left:359.040000pt;}
.x12_c00250{left:369.280000pt;}
.xa_c00250{left:378.240000pt;}
.x26_c00250{left:379.520000pt;}
.x24_c00250{left:387.840000pt;}
.x25_c00250{left:407.680000pt;}
.x28_c00250{left:416.640000pt;}
.x1d_c00250{left:446.080000pt;}
.x13_c00250{left:455.040000pt;}
.x29_c00250{left:465.280000pt;}
.x31_c00250{left:495.360000pt;}
.x2e_c00250{left:503.680000pt;}
.x2b_c00250{left:504.960000pt;}
.x14_c00250{left:522.240000pt;}
.xf_c00250{left:523.520000pt;}
.x1f_c00250{left:533.120000pt;}
.x32_c00250{left:551.040000pt;}
.xb_c00250{left:552.320280pt;}
.x2c_c00250{left:572.800000pt;}
.xc_c00250{left:581.120000pt;}
.x15_c00250{left:609.920000pt;}
.xd_c00250{left:618.880000pt;}
.x1_c00250{left:620.160000pt;}
.xe_c00250{left:636.160000pt;}
.x1e_c00250{left:637.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_026e983a72c59d0665a71ee5.woff2')format("woff");}.ff1_c00251{font-family:ff1_c00251;line-height:1.109863;font-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_c00251{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m19_c00251{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m31_c00251{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m36_c00251{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);}
.m29_c00251{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00251{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00251{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m6_c00251{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m2_c00251{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m8_c00251{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_c00251{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m9_c00251{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.md_c00251{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m15_c00251{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m24_c00251{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m5_c00251{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00251{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mb_c00251{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m4_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);}
.m30_c00251{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00251{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00251{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m26_c00251{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m41_c00251{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00251{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mc_c00251{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m0_c00251{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m35_c00251{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m14_c00251{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00251{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00251{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m27_c00251{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);}
.m22_c00251{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);}
.m3a_c00251{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m32_c00251{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00251{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m21_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);}
.m2b_c00251{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m10_c00251{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m7_c00251{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.mf_c00251{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m23_c00251{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_c00251{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m1_c00251{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);}
.m3_c00251{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);}
.m28_c00251{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m13_c00251{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m20_c00251{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_c00251{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m11_c00251{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.me_c00251{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m42_c00251{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m43_c00251{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00251{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m34_c00251{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m38_c00251{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m12_c00251{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00251{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00251{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);}
.m16_c00251{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.ma_c00251{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m37_c00251{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m33_c00251{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m17_c00251{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00251{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m39_c00251{transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00251{transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);}
.m40_c00251{transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);}
.v2_c00251{vertical-align:-5.760000px;}
.v1_c00251{vertical-align:-2.880000px;}
.v0_c00251{vertical-align:0.000000px;}
.ls1_c00251{letter-spacing:0.000000px;}
.ls0_c00251{letter-spacing:151.176960px;}
.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:-1.619040px;}
.ws2_c00251{word-spacing:0.000000px;}
.ws1_c00251{word-spacing:20.931600px;}
.fc0_c00251{color:transparent;}
.fsf_c00251{font-size:17.280000px;}
.fs10_c00251{font-size:25.920000px;}
.fse_c00251{font-size:31.680000px;}
.fsd_c00251{font-size:34.560000px;}
.fsa_c00251{font-size:43.200000px;}
.fsb_c00251{font-size:46.080000px;}
.fs7_c00251{font-size:48.960000px;}
.fs4_c00251{font-size:51.840000px;}
.fs1_c00251{font-size:54.720000px;}
.fs5_c00251{font-size:57.600000px;}
.fs9_c00251{font-size:60.480000px;}
.fsc_c00251{font-size:63.360000px;}
.fs6_c00251{font-size:66.240000px;}
.fs8_c00251{font-size:69.120000px;}
.fs3_c00251{font-size:72.000000px;}
.fs2_c00251{font-size:74.880000px;}
.fs0_c00251{font-size:77.760000px;}
.y0_c00251{bottom:0.000000px;}
.y61_c00251{bottom:105.120000px;}
.y62_c00251{bottom:108.000000px;}
.y63_c00251{bottom:108.720000px;}
.y60_c00251{bottom:110.160000px;}
.y5b_c00251{bottom:148.320000px;}
.y5c_c00251{bottom:149.040000px;}
.y5e_c00251{bottom:151.920000px;}
.y5d_c00251{bottom:152.640000px;}
.y5a_c00251{bottom:154.080000px;}
.y5f_c00251{bottom:155.520000px;}
.y59_c00251{bottom:195.120000px;}
.y58_c00251{bottom:195.840000px;}
.y55_c00251{bottom:223.920000px;}
.y53_c00251{bottom:227.520000px;}
.y54_c00251{bottom:228.240000px;}
.y56_c00251{bottom:228.960000px;}
.y52_c00251{bottom:229.680000px;}
.y57_c00251{bottom:230.400000px;}
.y4d_c00251{bottom:267.840000px;}
.y4e_c00251{bottom:269.280000px;}
.y50_c00251{bottom:270.720000px;}
.y4f_c00251{bottom:271.440000px;}
.y4b_c00251{bottom:272.160000px;}
.y4c_c00251{bottom:272.880000px;}
.y51_c00251{bottom:273.600000px;}
.y47_c00251{bottom:311.760000px;}
.y49_c00251{bottom:313.200000px;}
.y48_c00251{bottom:314.640000px;}
.y46_c00251{bottom:315.360000px;}
.y4a_c00251{bottom:316.800000px;}
.y40_c00251{bottom:355.680000px;}
.y44_c00251{bottom:356.400000px;}
.y43_c00251{bottom:357.120000px;}
.y3f_c00251{bottom:357.840000px;}
.y41_c00251{bottom:358.560000px;}
.y45_c00251{bottom:360.000000px;}
.y42_c00251{bottom:367.200000px;}
.y3d_c00251{bottom:388.800000px;}
.y3e_c00251{bottom:392.400000px;}
.y37_c00251{bottom:398.880000px;}
.y39_c00251{bottom:399.600000px;}
.y3b_c00251{bottom:400.320000px;}
.y36_c00251{bottom:401.760000px;}
.y38_c00251{bottom:402.480000px;}
.y3a_c00251{bottom:403.200000px;}
.y3c_c00251{bottom:403.920000px;}
.y35_c00251{bottom:443.520000px;}
.y34_c00251{bottom:444.240000px;}
.y32_c00251{bottom:496.080000px;}
.y33_c00251{bottom:497.520000px;}
.y31_c00251{bottom:498.240000px;}
.y2f_c00251{bottom:539.280000px;}
.y30_c00251{bottom:540.720000px;}
.y2e_c00251{bottom:541.440000px;}
.y2a_c00251{bottom:582.480000px;}
.y2d_c00251{bottom:583.920000px;}
.y29_c00251{bottom:584.640000px;}
.y2c_c00251{bottom:586.080000px;}
.y2b_c00251{bottom:586.800000px;}
.y26_c00251{bottom:625.680000px;}
.y27_c00251{bottom:626.400000px;}
.y25_c00251{bottom:627.120000px;}
.y28_c00251{bottom:630.000000px;}
.y23_c00251{bottom:668.880000px;}
.y24_c00251{bottom:669.600000px;}
.y20_c00251{bottom:670.320000px;}
.y22_c00251{bottom:672.480000px;}
.y21_c00251{bottom:673.200000px;}
.y1d_c00251{bottom:712.080000px;}
.y1c_c00251{bottom:714.240000px;}
.y1f_c00251{bottom:714.960000px;}
.y1e_c00251{bottom:715.680000px;}
.y19_c00251{bottom:755.280000px;}
.y1b_c00251{bottom:756.000000px;}
.y1a_c00251{bottom:756.720000px;}
.y18_c00251{bottom:757.440000px;}
.y17_c00251{bottom:799.200000px;}
.y16_c00251{bottom:800.640000px;}
.y14_c00251{bottom:842.400000px;}
.y15_c00251{bottom:843.120000px;}
.y13_c00251{bottom:843.840000px;}
.yf_c00251{bottom:887.040000px;}
.y10_c00251{bottom:889.920000px;}
.y11_c00251{bottom:890.640000px;}
.ye_c00251{bottom:918.000000px;}
.y12_c00251{bottom:918.720000px;}
.yb_c00251{bottom:919.440000px;}
.yc_c00251{bottom:920.160000px;}
.yd_c00251{bottom:922.320000px;}
.y9_c00251{bottom:963.360000px;}
.ya_c00251{bottom:965.520000px;}
.y5_c00251{bottom:994.320000px;}
.y8_c00251{bottom:995.760000px;}
.y6_c00251{bottom:996.480000px;}
.y7_c00251{bottom:998.640000px;}
.y3_c00251{bottom:1037.520000px;}
.y2_c00251{bottom:1038.240000px;}
.y4_c00251{bottom:1039.680000px;}
.y1_c00251{bottom:1084.320000px;}
.h11_c00251{height:15.550313px;}
.h12_c00251{height:23.325469px;}
.h10_c00251{height:28.508906px;}
.hf_c00251{height:31.100625px;}
.hc_c00251{height:38.875781px;}
.hd_c00251{height:41.467500px;}
.h9_c00251{height:44.059219px;}
.h6_c00251{height:46.650937px;}
.h3_c00251{height:49.242656px;}
.h7_c00251{height:51.834375px;}
.hb_c00251{height:54.426094px;}
.he_c00251{height:57.017812px;}
.h8_c00251{height:59.609531px;}
.ha_c00251{height:62.201250px;}
.h5_c00251{height:64.792969px;}
.h4_c00251{height:67.384687px;}
.h2_c00251{height:69.976406px;}
.h0_c00251{height:1153.440000px;}
.h1_c00251{height:1153.500000px;}
.w1_c00251{width:788.250000px;}
.w0_c00251{width:788.400000px;}
.x0_c00251{left:0.000000px;}
.x2_c00251{left:77.760000px;}
.x1b_c00251{left:79.200000px;}
.x2b_c00251{left:80.640000px;}
.x24_c00251{left:131.040000px;}
.x3_c00251{left:151.200000px;}
.x1f_c00251{left:192.960000px;}
.x10_c00251{left:194.400000px;}
.x1c_c00251{left:204.480000px;}
.xc_c00251{left:216.000000px;}
.x15_c00251{left:236.160000px;}
.x8_c00251{left:238.320000px;}
.x11_c00251{left:248.400000px;}
.x4_c00251{left:270.000000px;}
.x16_c00251{left:281.520000px;}
.x20_c00251{left:293.040000px;}
.x29_c00251{left:312.480000px;}
.xd_c00251{left:314.640000px;}
.x12_c00251{left:346.320000px;}
.xe_c00251{left:356.400000px;}
.x25_c00251{left:378.720000px;}
.x13_c00251{left:389.520000px;}
.x9_c00251{left:400.320000px;}
.xf_c00251{left:411.120000px;}
.x14_c00251{left:432.000000px;}
.x21_c00251{left:442.800000px;}
.xa_c00251{left:455.040000px;}
.x26_c00251{left:486.720000px;}
.x22_c00251{left:496.800000px;}
.x28_c00251{left:529.200000px;}
.x23_c00251{left:550.800000px;}
.x27_c00251{left:572.400000px;}
.x5_c00251{left:573.840000px;}
.xb_c00251{left:594.000000px;}
.x19_c00251{left:605.520000px;}
.x17_c00251{left:626.400000px;}
.x1d_c00251{left:627.840000px;}
.x2a_c00251{left:649.440000px;}
.x6_c00251{left:659.520000px;}
.x1a_c00251{left:669.600000px;}
.x1_c00251{left:685.440000px;}
.x18_c00251{left:691.920000px;}
.x7_c00251{left:702.000000px;}
.x1e_c00251{left:722.160000px;}
@media print{
.v2_c00251{vertical-align:-5.120000pt;}
.v1_c00251{vertical-align:-2.560000pt;}
.v0_c00251{vertical-align:0.000000pt;}
.ls1_c00251{letter-spacing:0.000000pt;}
.ls0_c00251{letter-spacing:134.379520pt;}
.ws0_c00251{word-spacing:-1.439147pt;}
.ws2_c00251{word-spacing:0.000000pt;}
.ws1_c00251{word-spacing:18.605867pt;}
.fsf_c00251{font-size:15.360000pt;}
.fs10_c00251{font-size:23.040000pt;}
.fse_c00251{font-size:28.160000pt;}
.fsd_c00251{font-size:30.720000pt;}
.fsa_c00251{font-size:38.400000pt;}
.fsb_c00251{font-size:40.960000pt;}
.fs7_c00251{font-size:43.520000pt;}
.fs4_c00251{font-size:46.080000pt;}
.fs1_c00251{font-size:48.640000pt;}
.fs5_c00251{font-size:51.200000pt;}
.fs9_c00251{font-size:53.760000pt;}
.fsc_c00251{font-size:56.320000pt;}
.fs6_c00251{font-size:58.880000pt;}
.fs8_c00251{font-size:61.440000pt;}
.fs3_c00251{font-size:64.000000pt;}
.fs2_c00251{font-size:66.560000pt;}
.fs0_c00251{font-size:69.120000pt;}
.y0_c00251{bottom:0.000000pt;}
.y61_c00251{bottom:93.440000pt;}
.y62_c00251{bottom:96.000000pt;}
.y63_c00251{bottom:96.640000pt;}
.y60_c00251{bottom:97.920000pt;}
.y5b_c00251{bottom:131.840000pt;}
.y5c_c00251{bottom:132.480000pt;}
.y5e_c00251{bottom:135.040000pt;}
.y5d_c00251{bottom:135.680000pt;}
.y5a_c00251{bottom:136.960000pt;}
.y5f_c00251{bottom:138.240000pt;}
.y59_c00251{bottom:173.440000pt;}
.y58_c00251{bottom:174.080000pt;}
.y55_c00251{bottom:199.040000pt;}
.y53_c00251{bottom:202.240000pt;}
.y54_c00251{bottom:202.880000pt;}
.y56_c00251{bottom:203.520000pt;}
.y52_c00251{bottom:204.160000pt;}
.y57_c00251{bottom:204.800000pt;}
.y4d_c00251{bottom:238.080000pt;}
.y4e_c00251{bottom:239.360000pt;}
.y50_c00251{bottom:240.640000pt;}
.y4f_c00251{bottom:241.280000pt;}
.y4b_c00251{bottom:241.920000pt;}
.y4c_c00251{bottom:242.560000pt;}
.y51_c00251{bottom:243.200000pt;}
.y47_c00251{bottom:277.120000pt;}
.y49_c00251{bottom:278.400000pt;}
.y48_c00251{bottom:279.680000pt;}
.y46_c00251{bottom:280.320000pt;}
.y4a_c00251{bottom:281.600000pt;}
.y40_c00251{bottom:316.160000pt;}
.y44_c00251{bottom:316.800000pt;}
.y43_c00251{bottom:317.440000pt;}
.y3f_c00251{bottom:318.080000pt;}
.y41_c00251{bottom:318.720000pt;}
.y45_c00251{bottom:320.000000pt;}
.y42_c00251{bottom:326.400000pt;}
.y3d_c00251{bottom:345.600000pt;}
.y3e_c00251{bottom:348.800000pt;}
.y37_c00251{bottom:354.560000pt;}
.y39_c00251{bottom:355.200000pt;}
.y3b_c00251{bottom:355.840000pt;}
.y36_c00251{bottom:357.120000pt;}
.y38_c00251{bottom:357.760000pt;}
.y3a_c00251{bottom:358.400000pt;}
.y3c_c00251{bottom:359.040000pt;}
.y35_c00251{bottom:394.240000pt;}
.y34_c00251{bottom:394.880000pt;}
.y32_c00251{bottom:440.960000pt;}
.y33_c00251{bottom:442.240000pt;}
.y31_c00251{bottom:442.880000pt;}
.y2f_c00251{bottom:479.360000pt;}
.y30_c00251{bottom:480.640000pt;}
.y2e_c00251{bottom:481.280000pt;}
.y2a_c00251{bottom:517.760000pt;}
.y2d_c00251{bottom:519.040000pt;}
.y29_c00251{bottom:519.680000pt;}
.y2c_c00251{bottom:520.960000pt;}
.y2b_c00251{bottom:521.600000pt;}
.y26_c00251{bottom:556.160000pt;}
.y27_c00251{bottom:556.800000pt;}
.y25_c00251{bottom:557.440000pt;}
.y28_c00251{bottom:560.000000pt;}
.y23_c00251{bottom:594.560000pt;}
.y24_c00251{bottom:595.200000pt;}
.y20_c00251{bottom:595.840000pt;}
.y22_c00251{bottom:597.760000pt;}
.y21_c00251{bottom:598.400000pt;}
.y1d_c00251{bottom:632.960000pt;}
.y1c_c00251{bottom:634.880000pt;}
.y1f_c00251{bottom:635.520000pt;}
.y1e_c00251{bottom:636.160000pt;}
.y19_c00251{bottom:671.360000pt;}
.y1b_c00251{bottom:672.000000pt;}
.y1a_c00251{bottom:672.640000pt;}
.y18_c00251{bottom:673.280000pt;}
.y17_c00251{bottom:710.400000pt;}
.y16_c00251{bottom:711.680000pt;}
.y14_c00251{bottom:748.800000pt;}
.y15_c00251{bottom:749.440000pt;}
.y13_c00251{bottom:750.080000pt;}
.yf_c00251{bottom:788.480000pt;}
.y10_c00251{bottom:791.040000pt;}
.y11_c00251{bottom:791.680000pt;}
.ye_c00251{bottom:816.000000pt;}
.y12_c00251{bottom:816.640000pt;}
.yb_c00251{bottom:817.280000pt;}
.yc_c00251{bottom:817.920000pt;}
.yd_c00251{bottom:819.840000pt;}
.y9_c00251{bottom:856.320000pt;}
.ya_c00251{bottom:858.240000pt;}
.y5_c00251{bottom:883.840000pt;}
.y8_c00251{bottom:885.120000pt;}
.y6_c00251{bottom:885.760000pt;}
.y7_c00251{bottom:887.680000pt;}
.y3_c00251{bottom:922.240000pt;}
.y2_c00251{bottom:922.880000pt;}
.y4_c00251{bottom:924.160000pt;}
.y1_c00251{bottom:963.840000pt;}
.h11_c00251{height:13.822500pt;}
.h12_c00251{height:20.733750pt;}
.h10_c00251{height:25.341250pt;}
.hf_c00251{height:27.645000pt;}
.hc_c00251{height:34.556250pt;}
.hd_c00251{height:36.860000pt;}
.h9_c00251{height:39.163750pt;}
.h6_c00251{height:41.467500pt;}
.h3_c00251{height:43.771250pt;}
.h7_c00251{height:46.075000pt;}
.hb_c00251{height:48.378750pt;}
.he_c00251{height:50.682500pt;}
.h8_c00251{height:52.986250pt;}
.ha_c00251{height:55.290000pt;}
.h5_c00251{height:57.593750pt;}
.h4_c00251{height:59.897500pt;}
.h2_c00251{height:62.201250pt;}
.h0_c00251{height:1025.280000pt;}
.h1_c00251{height:1025.333333pt;}
.w1_c00251{width:700.666667pt;}
.w0_c00251{width:700.800000pt;}
.x0_c00251{left:0.000000pt;}
.x2_c00251{left:69.120000pt;}
.x1b_c00251{left:70.400000pt;}
.x2b_c00251{left:71.680000pt;}
.x24_c00251{left:116.480000pt;}
.x3_c00251{left:134.400000pt;}
.x1f_c00251{left:171.520000pt;}
.x10_c00251{left:172.800000pt;}
.x1c_c00251{left:181.760000pt;}
.xc_c00251{left:192.000000pt;}
.x15_c00251{left:209.920000pt;}
.x8_c00251{left:211.840000pt;}
.x11_c00251{left:220.800000pt;}
.x4_c00251{left:240.000000pt;}
.x16_c00251{left:250.240000pt;}
.x20_c00251{left:260.480000pt;}
.x29_c00251{left:277.760000pt;}
.xd_c00251{left:279.680000pt;}
.x12_c00251{left:307.840000pt;}
.xe_c00251{left:316.800000pt;}
.x25_c00251{left:336.640000pt;}
.x13_c00251{left:346.240000pt;}
.x9_c00251{left:355.840000pt;}
.xf_c00251{left:365.440000pt;}
.x14_c00251{left:384.000000pt;}
.x21_c00251{left:393.600000pt;}
.xa_c00251{left:404.480000pt;}
.x26_c00251{left:432.640000pt;}
.x22_c00251{left:441.600000pt;}
.x28_c00251{left:470.400000pt;}
.x23_c00251{left:489.600000pt;}
.x27_c00251{left:508.800000pt;}
.x5_c00251{left:510.080000pt;}
.xb_c00251{left:528.000000pt;}
.x19_c00251{left:538.240000pt;}
.x17_c00251{left:556.800000pt;}
.x1d_c00251{left:558.080000pt;}
.x2a_c00251{left:577.280000pt;}
.x6_c00251{left:586.240000pt;}
.x1a_c00251{left:595.200000pt;}
.x1_c00251{left:609.280000pt;}
.x18_c00251{left:615.040000pt;}
.x7_c00251{left:624.000000pt;}
.x1e_c00251{left:641.920000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_268171d534b3d49258cfc0ce.woff2')format("woff");}.ff1_c00252{font-family:ff1_c00252;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m37_c00252{transform:matrix(0.222525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222525,0.000000,0.000000,0.250000,0,0);}
.m38_c00252{transform:matrix(0.226450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226450,0.000000,0.000000,0.250000,0,0);}
.m43_c00252{transform:matrix(0.235125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235125,0.000000,0.000000,0.250000,0,0);}
.m2a_c00252{transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);}
.m3d_c00252{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m8_c00252{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m16_c00252{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m17_c00252{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m34_c00252{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m1_c00252{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);}
.m44_c00252{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mb_c00252{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00252{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);}
.m32_c00252{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m7_c00252{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m26_c00252{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00252{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);}
.m4a_c00252{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.ma_c00252{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mc_c00252{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m35_c00252{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m15_c00252{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m29_c00252{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00252{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mf_c00252{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m5_c00252{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m41_c00252{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m30_c00252{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m36_c00252{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m13_c00252{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00252{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m31_c00252{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m6_c00252{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m22_c00252{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00252{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m48_c00252{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.md_c00252{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m33_c00252{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00252{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00252{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m12_c00252{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m24_c00252{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);}
.m2_c00252{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);}
.m20_c00252{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m27_c00252{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m25_c00252{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);}
.me_c00252{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m10_c00252{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m0_c00252{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);}
.m39_c00252{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00252{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m11_c00252{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);}
.m18_c00252{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00252{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00252{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00252{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);}
.m19_c00252{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);}
.m3e_c00252{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);}
.m21_c00252{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m9_c00252{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);}
.m45_c00252{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00252{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m14_c00252{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00252{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);}
.m49_c00252{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m40_c00252{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m46_c00252{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);}
.m23_c00252{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m3_c00252{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m4_c00252{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m28_c00252{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);}
.m3f_c00252{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m42_c00252{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00252{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m47_c00252{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.v0_c00252{vertical-align:0.000000px;}
.v1_c00252{vertical-align:2.880000px;}
.ls0_c00252{letter-spacing:0.000000px;}
.sc__c00252{text-shadow:none;}
.sc0_c00252{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00252{-webkit-text-stroke:0px transparent;}
.sc0_c00252{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00252{word-spacing:0.000000px;}
.ws0_c00252{word-spacing:6.163920px;}
.fc0_c00252{color:transparent;}
.fs10_c00252{font-size:17.280000px;}
.fs3_c00252{font-size:34.560000px;}
.fs7_c00252{font-size:40.320000px;}
.fse_c00252{font-size:43.200000px;}
.fs4_c00252{font-size:46.080000px;}
.fs2_c00252{font-size:48.960000px;}
.fs6_c00252{font-size:51.840000px;}
.fs0_c00252{font-size:54.720000px;}
.fs5_c00252{font-size:57.600000px;}
.fs9_c00252{font-size:60.480000px;}
.fsd_c00252{font-size:63.360000px;}
.fsb_c00252{font-size:66.240000px;}
.fsc_c00252{font-size:69.120000px;}
.fs1_c00252{font-size:72.000000px;}
.fsa_c00252{font-size:74.880000px;}
.fs8_c00252{font-size:77.760000px;}
.fsf_c00252{font-size:100.800000px;}
.y0_c00252{bottom:0.000000px;}
.y74_c00252{bottom:5.760000px;}
.y75_c00252{bottom:10.080000px;}
.y73_c00252{bottom:10.800000px;}
.y72_c00252{bottom:11.520000px;}
.y71_c00252{bottom:49.680000px;}
.y70_c00252{bottom:53.280000px;}
.y6f_c00252{bottom:84.240000px;}
.y6d_c00252{bottom:100.800000px;}
.y6e_c00252{bottom:105.120000px;}
.y6c_c00252{bottom:105.840000px;}
.y69_c00252{bottom:145.440000px;}
.y6a_c00252{bottom:148.320000px;}
.y68_c00252{bottom:149.040000px;}
.y6b_c00252{bottom:151.920000px;}
.y64_c00252{bottom:187.920000px;}
.y65_c00252{bottom:190.080000px;}
.y67_c00252{bottom:191.520000px;}
.y66_c00252{bottom:192.960000px;}
.y63_c00252{bottom:194.400000px;}
.y5d_c00252{bottom:231.840000px;}
.y5f_c00252{bottom:232.560000px;}
.y5e_c00252{bottom:235.440000px;}
.y60_c00252{bottom:236.160000px;}
.y5c_c00252{bottom:236.880000px;}
.y62_c00252{bottom:237.600000px;}
.y61_c00252{bottom:238.320000px;}
.y57_c00252{bottom:275.040000px;}
.y59_c00252{bottom:276.480000px;}
.y58_c00252{bottom:278.640000px;}
.y5a_c00252{bottom:279.360000px;}
.y56_c00252{bottom:280.080000px;}
.y5b_c00252{bottom:280.800000px;}
.y52_c00252{bottom:318.960000px;}
.y54_c00252{bottom:319.680000px;}
.y55_c00252{bottom:321.120000px;}
.y53_c00252{bottom:321.840000px;}
.y51_c00252{bottom:322.560000px;}
.y50_c00252{bottom:362.160000px;}
.y4f_c00252{bottom:363.600000px;}
.y4d_c00252{bottom:365.040000px;}
.y4e_c00252{bottom:365.760000px;}
.y4a_c00252{bottom:405.360000px;}
.y4b_c00252{bottom:406.800000px;}
.y4c_c00252{bottom:407.520000px;}
.y48_c00252{bottom:408.240000px;}
.y49_c00252{bottom:409.680000px;}
.y43_c00252{bottom:441.360000px;}
.y45_c00252{bottom:448.560000px;}
.y46_c00252{bottom:450.720000px;}
.y47_c00252{bottom:451.440000px;}
.y44_c00252{bottom:452.880000px;}
.y40_c00252{bottom:492.480000px;}
.y3f_c00252{bottom:494.640000px;}
.y42_c00252{bottom:495.360000px;}
.y41_c00252{bottom:496.080000px;}
.y3c_c00252{bottom:535.680000px;}
.y3d_c00252{bottom:537.120000px;}
.y3a_c00252{bottom:537.840000px;}
.y3e_c00252{bottom:539.280000px;}
.y3b_c00252{bottom:540.000000px;}
.y8_c00252{bottom:571.680000px;}
.y2_c00252{bottom:578.880000px;}
.y4_c00252{bottom:579.600000px;}
.y6_c00252{bottom:580.320000px;}
.y1_c00252{bottom:581.040000px;}
.y9_c00252{bottom:581.760000px;}
.y3_c00252{bottom:582.480000px;}
.y5_c00252{bottom:583.200000px;}
.y7_c00252{bottom:584.640000px;}
.y37_c00252{bottom:622.080000px;}
.y38_c00252{bottom:622.800000px;}
.y36_c00252{bottom:623.520000px;}
.y39_c00252{bottom:624.240000px;}
.y33_c00252{bottom:665.280000px;}
.y31_c00252{bottom:666.720000px;}
.y34_c00252{bottom:667.440000px;}
.y35_c00252{bottom:668.880000px;}
.y32_c00252{bottom:669.600000px;}
.y2f_c00252{bottom:709.200000px;}
.y2d_c00252{bottom:709.920000px;}
.y30_c00252{bottom:712.800000px;}
.y2e_c00252{bottom:713.520000px;}
.y2a_c00252{bottom:752.400000px;}
.y29_c00252{bottom:753.120000px;}
.y27_c00252{bottom:753.840000px;}
.y2c_c00252{bottom:754.560000px;}
.y2b_c00252{bottom:755.280000px;}
.y28_c00252{bottom:756.000000px;}
.y26_c00252{bottom:794.880000px;}
.y23_c00252{bottom:795.600000px;}
.y22_c00252{bottom:796.320000px;}
.y25_c00252{bottom:798.480000px;}
.y24_c00252{bottom:799.200000px;}
.y20_c00252{bottom:838.080000px;}
.y21_c00252{bottom:838.800000px;}
.y1e_c00252{bottom:839.520000px;}
.y1f_c00252{bottom:842.400000px;}
.y1c_c00252{bottom:881.280000px;}
.y1a_c00252{bottom:882.720000px;}
.y1d_c00252{bottom:884.160000px;}
.y1b_c00252{bottom:884.880000px;}
.y19_c00252{bottom:924.480000px;}
.y17_c00252{bottom:925.200000px;}
.y18_c00252{bottom:928.080000px;}
.y16_c00252{bottom:967.680000px;}
.y13_c00252{bottom:968.400000px;}
.y14_c00252{bottom:971.280000px;}
.y15_c00252{bottom:972.000000px;}
.y12_c00252{bottom:1010.160000px;}
.y10_c00252{bottom:1010.880000px;}
.ye_c00252{bottom:1011.600000px;}
.y11_c00252{bottom:1012.320000px;}
.yf_c00252{bottom:1014.480000px;}
.yc_c00252{bottom:1056.240000px;}
.yd_c00252{bottom:1057.680000px;}
.yb_c00252{bottom:1058.400000px;}
.ya_c00252{bottom:1093.680000px;}
.h12_c00252{height:15.550313px;}
.h5_c00252{height:31.100625px;}
.h9_c00252{height:36.284062px;}
.h10_c00252{height:38.875781px;}
.h6_c00252{height:41.467500px;}
.h4_c00252{height:44.059219px;}
.h8_c00252{height:46.650937px;}
.h2_c00252{height:49.242656px;}
.h7_c00252{height:51.834375px;}
.hb_c00252{height:54.426094px;}
.hf_c00252{height:57.017812px;}
.hd_c00252{height:59.609531px;}
.he_c00252{height:62.201250px;}
.h3_c00252{height:64.792969px;}
.hc_c00252{height:67.384687px;}
.ha_c00252{height:69.976406px;}
.h11_c00252{height:90.710156px;}
.h0_c00252{height:1155.600000px;}
.h1_c00252{height:1155.750000px;}
.w0_c00252{width:792.720000px;}
.w1_c00252{width:792.750000px;}
.x0_c00252{left:0.000000px;}
.x13_c00252{left:76.320000px;}
.x1_c00252{left:77.760000px;}
.x2f_c00252{left:79.200000px;}
.x39_c00252{left:81.360000px;}
.xe_c00252{left:127.440000px;}
.x36_c00252{left:128.880000px;}
.x2_c00252{left:149.040000px;}
.xf_c00252{left:150.480000px;}
.x37_c00252{left:162.000000px;}
.x10_c00252{left:171.360000px;}
.x29_c00252{left:182.880000px;}
.x14_c00252{left:192.240000px;}
.x1a_c00252{left:224.640000px;}
.x11_c00252{left:226.080000px;}
.x3_c00252{left:234.720000px;}
.x1f_c00252{left:236.880000px;}
.x12_c00252{left:245.520000px;}
.x15_c00252{left:246.960000px;}
.x38_c00252{left:257.040000px;}
.x2a_c00252{left:270.000000px;}
.x4_c00252{left:279.360000px;}
.x1b_c00252{left:290.880000px;}
.x32_c00252{left:321.840000px;}
.x5_c00252{left:334.800000px;}
.x20_c00252{left:344.160000px;}
.x30_c00252{left:345.600000px;}
.x2b_c00252{left:355.680000px;}
.x1c_c00252{left:375.840000px;}
.x6_c00252{left:377.280000px;}
.x26_c00252{left:388.080000px;}
.x16_c00252{left:397.440000px;}
.x33_c00252{left:399.600000px;}
.x2c_c00252{left:410.400000px;}
.x24_c00252{left:419.040000px;}
.x1d_c00252{left:420.480000px;}
.x21_c00252{left:431.280000px;}
.x17_c00252{left:442.800000px;}
.x25_c00252{left:473.760000px;}
.x22_c00252{left:485.280000px;}
.x7_c00252{left:496.800000px;}
.x2d_c00252{left:505.440000px;}
.x8_c00252{left:538.560000px;}
.xa_c00252{left:550.080000px;}
.x27_c00252{left:570.960000px;}
.x28_c00252{left:591.840000px;}
.x9_c00252{left:594.000000px;}
.x34_c00252{left:603.360000px;}
.x1e_c00252{left:604.800000px;}
.x23_c00252{left:624.960000px;}
.xb_c00252{left:626.400000px;}
.x31_c00252{left:657.360000px;}
.xc_c00252{left:658.800000px;}
.x35_c00252{left:660.960000px;}
.xd_c00252{left:691.200000px;}
.x2e_c00252{left:699.120000px;}
.x18_c00252{left:700.560000px;}
.x19_c00252{left:721.440000px;}
@media print{
.v0_c00252{vertical-align:0.000000pt;}
.v1_c00252{vertical-align:2.560000pt;}
.ls0_c00252{letter-spacing:0.000000pt;}
.ws1_c00252{word-spacing:0.000000pt;}
.ws0_c00252{word-spacing:5.479040pt;}
.fs10_c00252{font-size:15.360000pt;}
.fs3_c00252{font-size:30.720000pt;}
.fs7_c00252{font-size:35.840000pt;}
.fse_c00252{font-size:38.400000pt;}
.fs4_c00252{font-size:40.960000pt;}
.fs2_c00252{font-size:43.520000pt;}
.fs6_c00252{font-size:46.080000pt;}
.fs0_c00252{font-size:48.640000pt;}
.fs5_c00252{font-size:51.200000pt;}
.fs9_c00252{font-size:53.760000pt;}
.fsd_c00252{font-size:56.320000pt;}
.fsb_c00252{font-size:58.880000pt;}
.fsc_c00252{font-size:61.440000pt;}
.fs1_c00252{font-size:64.000000pt;}
.fsa_c00252{font-size:66.560000pt;}
.fs8_c00252{font-size:69.120000pt;}
.fsf_c00252{font-size:89.600000pt;}
.y0_c00252{bottom:0.000000pt;}
.y74_c00252{bottom:5.120000pt;}
.y75_c00252{bottom:8.960000pt;}
.y73_c00252{bottom:9.600000pt;}
.y72_c00252{bottom:10.240000pt;}
.y71_c00252{bottom:44.160000pt;}
.y70_c00252{bottom:47.360000pt;}
.y6f_c00252{bottom:74.880000pt;}
.y6d_c00252{bottom:89.600000pt;}
.y6e_c00252{bottom:93.440000pt;}
.y6c_c00252{bottom:94.080000pt;}
.y69_c00252{bottom:129.280000pt;}
.y6a_c00252{bottom:131.840000pt;}
.y68_c00252{bottom:132.480000pt;}
.y6b_c00252{bottom:135.040000pt;}
.y64_c00252{bottom:167.040000pt;}
.y65_c00252{bottom:168.960000pt;}
.y67_c00252{bottom:170.240000pt;}
.y66_c00252{bottom:171.520000pt;}
.y63_c00252{bottom:172.800000pt;}
.y5d_c00252{bottom:206.080000pt;}
.y5f_c00252{bottom:206.720000pt;}
.y5e_c00252{bottom:209.280000pt;}
.y60_c00252{bottom:209.920000pt;}
.y5c_c00252{bottom:210.560000pt;}
.y62_c00252{bottom:211.200000pt;}
.y61_c00252{bottom:211.840000pt;}
.y57_c00252{bottom:244.480000pt;}
.y59_c00252{bottom:245.760000pt;}
.y58_c00252{bottom:247.680000pt;}
.y5a_c00252{bottom:248.320000pt;}
.y56_c00252{bottom:248.960000pt;}
.y5b_c00252{bottom:249.600000pt;}
.y52_c00252{bottom:283.520000pt;}
.y54_c00252{bottom:284.160000pt;}
.y55_c00252{bottom:285.440000pt;}
.y53_c00252{bottom:286.080000pt;}
.y51_c00252{bottom:286.720000pt;}
.y50_c00252{bottom:321.920000pt;}
.y4f_c00252{bottom:323.200000pt;}
.y4d_c00252{bottom:324.480000pt;}
.y4e_c00252{bottom:325.120000pt;}
.y4a_c00252{bottom:360.320000pt;}
.y4b_c00252{bottom:361.600000pt;}
.y4c_c00252{bottom:362.240000pt;}
.y48_c00252{bottom:362.880000pt;}
.y49_c00252{bottom:364.160000pt;}
.y43_c00252{bottom:392.320000pt;}
.y45_c00252{bottom:398.720000pt;}
.y46_c00252{bottom:400.640000pt;}
.y47_c00252{bottom:401.280000pt;}
.y44_c00252{bottom:402.560000pt;}
.y40_c00252{bottom:437.760000pt;}
.y3f_c00252{bottom:439.680000pt;}
.y42_c00252{bottom:440.320000pt;}
.y41_c00252{bottom:440.960000pt;}
.y3c_c00252{bottom:476.160000pt;}
.y3d_c00252{bottom:477.440000pt;}
.y3a_c00252{bottom:478.080000pt;}
.y3e_c00252{bottom:479.360000pt;}
.y3b_c00252{bottom:480.000000pt;}
.y8_c00252{bottom:508.160000pt;}
.y2_c00252{bottom:514.560000pt;}
.y4_c00252{bottom:515.200000pt;}
.y6_c00252{bottom:515.840000pt;}
.y1_c00252{bottom:516.480000pt;}
.y9_c00252{bottom:517.120000pt;}
.y3_c00252{bottom:517.760000pt;}
.y5_c00252{bottom:518.400000pt;}
.y7_c00252{bottom:519.680000pt;}
.y37_c00252{bottom:552.960000pt;}
.y38_c00252{bottom:553.600000pt;}
.y36_c00252{bottom:554.240000pt;}
.y39_c00252{bottom:554.880000pt;}
.y33_c00252{bottom:591.360000pt;}
.y31_c00252{bottom:592.640000pt;}
.y34_c00252{bottom:593.280000pt;}
.y35_c00252{bottom:594.560000pt;}
.y32_c00252{bottom:595.200000pt;}
.y2f_c00252{bottom:630.400000pt;}
.y2d_c00252{bottom:631.040000pt;}
.y30_c00252{bottom:633.600000pt;}
.y2e_c00252{bottom:634.240000pt;}
.y2a_c00252{bottom:668.800000pt;}
.y29_c00252{bottom:669.440000pt;}
.y27_c00252{bottom:670.080000pt;}
.y2c_c00252{bottom:670.720000pt;}
.y2b_c00252{bottom:671.360000pt;}
.y28_c00252{bottom:672.000000pt;}
.y26_c00252{bottom:706.560000pt;}
.y23_c00252{bottom:707.200000pt;}
.y22_c00252{bottom:707.840000pt;}
.y25_c00252{bottom:709.760000pt;}
.y24_c00252{bottom:710.400000pt;}
.y20_c00252{bottom:744.960000pt;}
.y21_c00252{bottom:745.600000pt;}
.y1e_c00252{bottom:746.240000pt;}
.y1f_c00252{bottom:748.800000pt;}
.y1c_c00252{bottom:783.360000pt;}
.y1a_c00252{bottom:784.640000pt;}
.y1d_c00252{bottom:785.920000pt;}
.y1b_c00252{bottom:786.560000pt;}
.y19_c00252{bottom:821.760000pt;}
.y17_c00252{bottom:822.400000pt;}
.y18_c00252{bottom:824.960000pt;}
.y16_c00252{bottom:860.160000pt;}
.y13_c00252{bottom:860.800000pt;}
.y14_c00252{bottom:863.360000pt;}
.y15_c00252{bottom:864.000000pt;}
.y12_c00252{bottom:897.920000pt;}
.y10_c00252{bottom:898.560000pt;}
.ye_c00252{bottom:899.200000pt;}
.y11_c00252{bottom:899.840000pt;}
.yf_c00252{bottom:901.760000pt;}
.yc_c00252{bottom:938.880000pt;}
.yd_c00252{bottom:940.160000pt;}
.yb_c00252{bottom:940.800000pt;}
.ya_c00252{bottom:972.160000pt;}
.h12_c00252{height:13.822500pt;}
.h5_c00252{height:27.645000pt;}
.h9_c00252{height:32.252500pt;}
.h10_c00252{height:34.556250pt;}
.h6_c00252{height:36.860000pt;}
.h4_c00252{height:39.163750pt;}
.h8_c00252{height:41.467500pt;}
.h2_c00252{height:43.771250pt;}
.h7_c00252{height:46.075000pt;}
.hb_c00252{height:48.378750pt;}
.hf_c00252{height:50.682500pt;}
.hd_c00252{height:52.986250pt;}
.he_c00252{height:55.290000pt;}
.h3_c00252{height:57.593750pt;}
.hc_c00252{height:59.897500pt;}
.ha_c00252{height:62.201250pt;}
.h11_c00252{height:80.631250pt;}
.h0_c00252{height:1027.200000pt;}
.h1_c00252{height:1027.333333pt;}
.w0_c00252{width:704.640000pt;}
.w1_c00252{width:704.666667pt;}
.x0_c00252{left:0.000000pt;}
.x13_c00252{left:67.840000pt;}
.x1_c00252{left:69.120000pt;}
.x2f_c00252{left:70.400000pt;}
.x39_c00252{left:72.320000pt;}
.xe_c00252{left:113.280000pt;}
.x36_c00252{left:114.560000pt;}
.x2_c00252{left:132.480000pt;}
.xf_c00252{left:133.760000pt;}
.x37_c00252{left:144.000000pt;}
.x10_c00252{left:152.320000pt;}
.x29_c00252{left:162.560000pt;}
.x14_c00252{left:170.880000pt;}
.x1a_c00252{left:199.680000pt;}
.x11_c00252{left:200.960000pt;}
.x3_c00252{left:208.640000pt;}
.x1f_c00252{left:210.560000pt;}
.x12_c00252{left:218.240000pt;}
.x15_c00252{left:219.520000pt;}
.x38_c00252{left:228.480000pt;}
.x2a_c00252{left:240.000000pt;}
.x4_c00252{left:248.320000pt;}
.x1b_c00252{left:258.560000pt;}
.x32_c00252{left:286.080000pt;}
.x5_c00252{left:297.600000pt;}
.x20_c00252{left:305.920000pt;}
.x30_c00252{left:307.200000pt;}
.x2b_c00252{left:316.160000pt;}
.x1c_c00252{left:334.080000pt;}
.x6_c00252{left:335.360000pt;}
.x26_c00252{left:344.960000pt;}
.x16_c00252{left:353.280000pt;}
.x33_c00252{left:355.200000pt;}
.x2c_c00252{left:364.800000pt;}
.x24_c00252{left:372.480000pt;}
.x1d_c00252{left:373.760000pt;}
.x21_c00252{left:383.360000pt;}
.x17_c00252{left:393.600000pt;}
.x25_c00252{left:421.120000pt;}
.x22_c00252{left:431.360000pt;}
.x7_c00252{left:441.600000pt;}
.x2d_c00252{left:449.280000pt;}
.x8_c00252{left:478.720000pt;}
.xa_c00252{left:488.960000pt;}
.x27_c00252{left:507.520000pt;}
.x28_c00252{left:526.080000pt;}
.x9_c00252{left:528.000000pt;}
.x34_c00252{left:536.320000pt;}
.x1e_c00252{left:537.600000pt;}
.x23_c00252{left:555.520000pt;}
.xb_c00252{left:556.800000pt;}
.x31_c00252{left:584.320000pt;}
.xc_c00252{left:585.600000pt;}
.x35_c00252{left:587.520000pt;}
.xd_c00252{left:614.400000pt;}
.x2e_c00252{left:621.440000pt;}
.x18_c00252{left:622.720000pt;}
.x19_c00252{left:641.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f82bdb9617585b6b6e52790c.woff2')format("woff");}.ff1_c00253{font-family:ff1_c00253;line-height:1.109863;font-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_c00253{transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);}
.m37_c00253{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m49_c00253{transform:matrix(0.246675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246675,0.000000,0.000000,0.250000,0,0);}
.m5a_c00253{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m4f_c00253{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m3e_c00253{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m5_c00253{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mf_c00253{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);}
.m34_c00253{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);}
.m25_c00253{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);}
.m32_c00253{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m4_c00253{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);}
.m51_c00253{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00253{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);}
.m41_c00253{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m22_c00253{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m26_c00253{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00253{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m12_c00253{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m8_c00253{transform:matrix(0.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_c00253{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m18_c00253{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m43_c00253{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00253{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m9_c00253{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m21_c00253{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m31_c00253{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m48_c00253{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m20_c00253{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00253{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m45_c00253{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m53_c00253{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m28_c00253{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m56_c00253{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00253{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1_c00253{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mc_c00253{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.me_c00253{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m11_c00253{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m35_c00253{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m10_c00253{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00253{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m0_c00253{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00253{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m59_c00253{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);}
.m1e_c00253{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);}
.m4d_c00253{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m17_c00253{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00253{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);}
.m47_c00253{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00253{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.ma_c00253{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m33_c00253{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);}
.m6_c00253{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);}
.m13_c00253{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);}
.m42_c00253{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m40_c00253{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.md_c00253{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m36_c00253{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);}
.m1c_c00253{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m24_c00253{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);}
.m23_c00253{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00253{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00253{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);}
.mb_c00253{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m7_c00253{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);}
.m54_c00253{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m55_c00253{transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);}
.m57_c00253{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00253{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m15_c00253{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00253{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00253{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);}
.m3c_c00253{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m3_c00253{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m39_c00253{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);}
.m3f_c00253{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);}
.m2e_c00253{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m19_c00253{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m44_c00253{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m29_c00253{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m27_c00253{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00253{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m2_c00253{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);}
.m46_c00253{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m16_c00253{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m30_c00253{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m58_c00253{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);}
.m2c_c00253{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m52_c00253{transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);}
.m50_c00253{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.v0_c00253{vertical-align:0.000000px;}
.v3_c00253{vertical-align:2.880000px;}
.v1_c00253{vertical-align:5.760000px;}
.v2_c00253{vertical-align:8.640000px;}
.ls0_c00253{letter-spacing:0.000000px;}
.sc__c00253{text-shadow:none;}
.sc0_c00253{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00253{-webkit-text-stroke:0px transparent;}
.sc0_c00253{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00253{word-spacing:-0.041280px;}
.ws5_c00253{word-spacing:0.000000px;}
.ws2_c00253{word-spacing:3.327120px;}
.ws1_c00253{word-spacing:4.906560px;}
.ws4_c00253{word-spacing:6.374640px;}
.ws3_c00253{word-spacing:20.931600px;}
.fc0_c00253{color:transparent;}
.fsc_c00253{font-size:34.560000px;}
.fsf_c00253{font-size:37.440000px;}
.fsb_c00253{font-size:40.320000px;}
.fse_c00253{font-size:43.200000px;}
.fs2_c00253{font-size:46.080000px;}
.fs5_c00253{font-size:48.960000px;}
.fs1_c00253{font-size:51.840000px;}
.fs9_c00253{font-size:54.720000px;}
.fs6_c00253{font-size:57.600000px;}
.fs0_c00253{font-size:60.480000px;}
.fs7_c00253{font-size:63.360000px;}
.fsd_c00253{font-size:66.240000px;}
.fsa_c00253{font-size:69.120000px;}
.fs4_c00253{font-size:72.000000px;}
.fs3_c00253{font-size:74.880000px;}
.fs8_c00253{font-size:77.760000px;}
.y0_c00253{bottom:0.000000px;}
.y89_c00253{bottom:3.600000px;}
.y88_c00253{bottom:5.760000px;}
.y8b_c00253{bottom:6.480000px;}
.y8a_c00253{bottom:7.200000px;}
.y84_c00253{bottom:7.920000px;}
.y8d_c00253{bottom:9.360000px;}
.y87_c00253{bottom:10.080000px;}
.y86_c00253{bottom:44.640000px;}
.y8c_c00253{bottom:48.960000px;}
.y85_c00253{bottom:50.400000px;}
.y80_c00253{bottom:86.400000px;}
.y7f_c00253{bottom:88.560000px;}
.y81_c00253{bottom:90.720000px;}
.y83_c00253{bottom:91.440000px;}
.y82_c00253{bottom:92.160000px;}
.y7e_c00253{bottom:92.880000px;}
.y7d_c00253{bottom:131.040000px;}
.y78_c00253{bottom:133.920000px;}
.y7b_c00253{bottom:134.640000px;}
.y7a_c00253{bottom:135.360000px;}
.y7c_c00253{bottom:136.080000px;}
.y79_c00253{bottom:137.520000px;}
.y62_c00253{bottom:174.960000px;}
.y61_c00253{bottom:175.680000px;}
.y63_c00253{bottom:176.400000px;}
.y76_c00253{bottom:177.120000px;}
.y77_c00253{bottom:178.560000px;}
.y60_c00253{bottom:180.000000px;}
.y5d_c00253{bottom:217.440000px;}
.y5f_c00253{bottom:218.880000px;}
.y5e_c00253{bottom:221.040000px;}
.y5c_c00253{bottom:221.760000px;}
.y5b_c00253{bottom:261.360000px;}
.y72_c00253{bottom:264.240000px;}
.y5a_c00253{bottom:264.960000px;}
.y73_c00253{bottom:265.680000px;}
.y74_c00253{bottom:266.400000px;}
.y75_c00253{bottom:267.120000px;}
.y56_c00253{bottom:303.840000px;}
.y57_c00253{bottom:305.280000px;}
.y70_c00253{bottom:306.720000px;}
.y55_c00253{bottom:307.440000px;}
.y58_c00253{bottom:308.160000px;}
.y59_c00253{bottom:308.880000px;}
.y6f_c00253{bottom:309.600000px;}
.y71_c00253{bottom:310.320000px;}
.y54_c00253{bottom:347.760000px;}
.y6d_c00253{bottom:350.640000px;}
.y53_c00253{bottom:351.360000px;}
.y6c_c00253{bottom:352.080000px;}
.y6e_c00253{bottom:353.520000px;}
.y50_c00253{bottom:390.240000px;}
.y52_c00253{bottom:390.960000px;}
.y6b_c00253{bottom:392.400000px;}
.y51_c00253{bottom:393.840000px;}
.y4f_c00253{bottom:394.560000px;}
.y6a_c00253{bottom:395.280000px;}
.y4e_c00253{bottom:434.160000px;}
.y67_c00253{bottom:435.600000px;}
.y4d_c00253{bottom:437.040000px;}
.y68_c00253{bottom:437.760000px;}
.y69_c00253{bottom:439.200000px;}
.y66_c00253{bottom:439.920000px;}
.y4c_c00253{bottom:476.640000px;}
.y65_c00253{bottom:478.800000px;}
.y4b_c00253{bottom:480.240000px;}
.y64_c00253{bottom:482.400000px;}
.y47_c00253{bottom:519.840000px;}
.y46_c00253{bottom:521.280000px;}
.y48_c00253{bottom:522.000000px;}
.y45_c00253{bottom:522.720000px;}
.y49_c00253{bottom:524.160000px;}
.y4a_c00253{bottom:525.600000px;}
.y44_c00253{bottom:556.560000px;}
.y40_c00253{bottom:563.040000px;}
.y3f_c00253{bottom:564.480000px;}
.y3d_c00253{bottom:565.200000px;}
.y43_c00253{bottom:565.920000px;}
.y3e_c00253{bottom:566.640000px;}
.y41_c00253{bottom:567.360000px;}
.y42_c00253{bottom:568.080000px;}
.y25_c00253{bottom:604.800000px;}
.y27_c00253{bottom:606.960000px;}
.y24_c00253{bottom:607.680000px;}
.y3a_c00253{bottom:608.400000px;}
.y3b_c00253{bottom:609.120000px;}
.y26_c00253{bottom:609.840000px;}
.y28_c00253{bottom:610.560000px;}
.y3c_c00253{bottom:611.280000px;}
.y23_c00253{bottom:648.720000px;}
.y21_c00253{bottom:651.600000px;}
.y22_c00253{bottom:652.320000px;}
.y38_c00253{bottom:653.040000px;}
.y39_c00253{bottom:653.760000px;}
.y20_c00253{bottom:691.200000px;}
.y1e_c00253{bottom:694.080000px;}
.y37_c00253{bottom:694.800000px;}
.y1f_c00253{bottom:695.520000px;}
.y36_c00253{bottom:696.960000px;}
.y1d_c00253{bottom:734.400000px;}
.y1c_c00253{bottom:736.560000px;}
.y34_c00253{bottom:737.280000px;}
.y35_c00253{bottom:738.000000px;}
.y1a_c00253{bottom:778.320000px;}
.y19_c00253{bottom:779.040000px;}
.y33_c00253{bottom:780.480000px;}
.y1b_c00253{bottom:781.200000px;}
.y18_c00253{bottom:821.520000px;}
.y16_c00253{bottom:822.960000px;}
.y17_c00253{bottom:825.120000px;}
.y13_c00253{bottom:864.720000px;}
.y15_c00253{bottom:865.440000px;}
.y14_c00253{bottom:868.320000px;}
.y10_c00253{bottom:897.840000px;}
.y32_c00253{bottom:898.560000px;}
.y11_c00253{bottom:900.000000px;}
.y12_c00253{bottom:900.720000px;}
.yf_c00253{bottom:939.600000px;}
.yd_c00253{bottom:941.040000px;}
.y30_c00253{bottom:941.760000px;}
.ye_c00253{bottom:943.200000px;}
.y31_c00253{bottom:944.640000px;}
.yc_c00253{bottom:982.080000px;}
.ya_c00253{bottom:983.520000px;}
.y2e_c00253{bottom:984.960000px;}
.y2f_c00253{bottom:986.400000px;}
.yb_c00253{bottom:987.120000px;}
.y8_c00253{bottom:1026.000000px;}
.y9_c00253{bottom:1026.720000px;}
.y6_c00253{bottom:1027.440000px;}
.y2c_c00253{bottom:1028.160000px;}
.y5_c00253{bottom:1028.880000px;}
.y2d_c00253{bottom:1029.600000px;}
.y7_c00253{bottom:1030.320000px;}
.y4_c00253{bottom:1069.200000px;}
.y1_c00253{bottom:1070.640000px;}
.y2a_c00253{bottom:1071.360000px;}
.y2_c00253{bottom:1072.800000px;}
.y2b_c00253{bottom:1073.520000px;}
.y3_c00253{bottom:1074.240000px;}
.y29_c00253{bottom:1121.760000px;}
.he_c00253{height:31.100625px;}
.h12_c00253{height:33.692344px;}
.hd_c00253{height:36.284062px;}
.h10_c00253{height:38.875781px;}
.h4_c00253{height:41.467500px;}
.h7_c00253{height:44.059219px;}
.h3_c00253{height:46.650937px;}
.hb_c00253{height:49.242656px;}
.h8_c00253{height:51.834375px;}
.h11_c00253{height:52.122656px;}
.h2_c00253{height:54.426094px;}
.h9_c00253{height:57.017812px;}
.hf_c00253{height:59.609531px;}
.hc_c00253{height:62.201250px;}
.h6_c00253{height:64.792969px;}
.h13_c00253{height:65.081250px;}
.h5_c00253{height:67.384687px;}
.ha_c00253{height:69.976406px;}
.h0_c00253{height:1174.320000px;}
.h1_c00253{height:1174.500000px;}
.w0_c00253{width:777.600000px;}
.w1_c00253{width:777.750000px;}
.x0_c00253{left:0.000000px;}
.x1_c00253{left:67.680000px;}
.xb_c00253{left:69.120000px;}
.x18_c00253{left:70.560000px;}
.x2e_c00253{left:72.000000px;}
.x34_c00253{left:73.440000px;}
.x41_c00253{left:74.880000px;}
.x45_c00253{left:76.320000px;}
.x6_c00253{left:88.560000px;}
.x2_c00253{left:140.400000px;}
.xc_c00253{left:141.840000px;}
.x35_c00253{left:143.280000px;}
.x39_c00253{left:144.720000px;}
.x2b_c00253{left:154.080000px;}
.x16_c00253{left:174.960000px;}
.x3_c00253{left:183.600000px;}
.x17_c00253{left:185.040000px;}
.x3a_c00253{left:186.480000px;}
.x46_c00253{left:187.920000px;}
.xa_c00253{left:228.240000px;}
.x37_c00253{left:229.680000px;}
.x36_c00253{left:231.120000px;}
.x4_c00253{left:239.040000px;}
.x26_c00253{left:240.480000px;}
.x7_c00253{left:249.840000px;}
.x3b_c00253{left:251.280000px;}
.xd_c00253{left:261.360000px;}
.x2f_c00253{left:272.880000px;}
.x38_c00253{left:285.120000px;}
.x5_c00253{left:293.040000px;}
.xe_c00253{left:303.840000px;}
.x31_c00253{left:306.000000px;}
.x13_c00253{left:315.360000px;}
.x30_c00253{left:326.880000px;}
.x8_c00253{left:335.520000px;}
.x47_c00253{left:339.120000px;}
.x3c_c00253{left:349.920000px;}
.xf_c00253{left:357.840000px;}
.x14_c00253{left:369.360000px;}
.x42_c00253{left:391.680000px;}
.x48_c00253{left:393.840000px;}
.x12_c00253{left:401.040000px;}
.x32_c00253{left:412.560000px;}
.x2c_c00253{left:424.800000px;}
.x9_c00253{left:434.160000px;}
.x19_c00253{left:444.240000px;}
.x3d_c00253{left:446.400000px;}
.x10_c00253{left:455.760000px;}
.x33_c00253{left:457.920000px;}
.x15_c00253{left:466.560000px;}
.x2d_c00253{left:479.520000px;}
.x1a_c00253{left:489.600000px;}
.x49_c00253{left:491.760000px;}
.x43_c00253{left:501.120000px;}
.x11_c00253{left:509.760000px;}
.x27_c00253{left:522.000000px;}
.x2a_c00253{left:523.440000px;}
.x44_c00253{left:543.600000px;}
.x3f_c00253{left:564.480000px;}
.x3e_c00253{left:565.920000px;}
.x28_c00253{left:576.720000px;}
.x1f_c00253{left:585.360000px;}
.x23_c00253{left:586.800000px;}
.x4b_c00253{left:599.040000px;}
.x1c_c00253{left:617.760000px;}
.x24_c00253{left:619.200000px;}
.x1d_c00253{left:650.160000px;}
.x21_c00253{left:651.600000px;}
.x4c_c00253{left:653.760000px;}
.x1b_c00253{left:682.560000px;}
.x29_c00253{left:684.720000px;}
.x20_c00253{left:691.920000px;}
.x22_c00253{left:694.080000px;}
.x4a_c00253{left:696.960000px;}
.x1e_c00253{left:712.800000px;}
.x25_c00253{left:714.240000px;}
.x40_c00253{left:715.680000px;}
.x4d_c00253{left:717.120000px;}
@media print{
.v0_c00253{vertical-align:0.000000pt;}
.v3_c00253{vertical-align:2.560000pt;}
.v1_c00253{vertical-align:5.120000pt;}
.v2_c00253{vertical-align:7.680000pt;}
.ls0_c00253{letter-spacing:0.000000pt;}
.ws0_c00253{word-spacing:-0.036693pt;}
.ws5_c00253{word-spacing:0.000000pt;}
.ws2_c00253{word-spacing:2.957440pt;}
.ws1_c00253{word-spacing:4.361387pt;}
.ws4_c00253{word-spacing:5.666347pt;}
.ws3_c00253{word-spacing:18.605867pt;}
.fsc_c00253{font-size:30.720000pt;}
.fsf_c00253{font-size:33.280000pt;}
.fsb_c00253{font-size:35.840000pt;}
.fse_c00253{font-size:38.400000pt;}
.fs2_c00253{font-size:40.960000pt;}
.fs5_c00253{font-size:43.520000pt;}
.fs1_c00253{font-size:46.080000pt;}
.fs9_c00253{font-size:48.640000pt;}
.fs6_c00253{font-size:51.200000pt;}
.fs0_c00253{font-size:53.760000pt;}
.fs7_c00253{font-size:56.320000pt;}
.fsd_c00253{font-size:58.880000pt;}
.fsa_c00253{font-size:61.440000pt;}
.fs4_c00253{font-size:64.000000pt;}
.fs3_c00253{font-size:66.560000pt;}
.fs8_c00253{font-size:69.120000pt;}
.y0_c00253{bottom:0.000000pt;}
.y89_c00253{bottom:3.200000pt;}
.y88_c00253{bottom:5.120000pt;}
.y8b_c00253{bottom:5.760000pt;}
.y8a_c00253{bottom:6.400000pt;}
.y84_c00253{bottom:7.040000pt;}
.y8d_c00253{bottom:8.320000pt;}
.y87_c00253{bottom:8.960000pt;}
.y86_c00253{bottom:39.680000pt;}
.y8c_c00253{bottom:43.520000pt;}
.y85_c00253{bottom:44.800000pt;}
.y80_c00253{bottom:76.800000pt;}
.y7f_c00253{bottom:78.720000pt;}
.y81_c00253{bottom:80.640000pt;}
.y83_c00253{bottom:81.280000pt;}
.y82_c00253{bottom:81.920000pt;}
.y7e_c00253{bottom:82.560000pt;}
.y7d_c00253{bottom:116.480000pt;}
.y78_c00253{bottom:119.040000pt;}
.y7b_c00253{bottom:119.680000pt;}
.y7a_c00253{bottom:120.320000pt;}
.y7c_c00253{bottom:120.960000pt;}
.y79_c00253{bottom:122.240000pt;}
.y62_c00253{bottom:155.520000pt;}
.y61_c00253{bottom:156.160000pt;}
.y63_c00253{bottom:156.800000pt;}
.y76_c00253{bottom:157.440000pt;}
.y77_c00253{bottom:158.720000pt;}
.y60_c00253{bottom:160.000000pt;}
.y5d_c00253{bottom:193.280000pt;}
.y5f_c00253{bottom:194.560000pt;}
.y5e_c00253{bottom:196.480000pt;}
.y5c_c00253{bottom:197.120000pt;}
.y5b_c00253{bottom:232.320000pt;}
.y72_c00253{bottom:234.880000pt;}
.y5a_c00253{bottom:235.520000pt;}
.y73_c00253{bottom:236.160000pt;}
.y74_c00253{bottom:236.800000pt;}
.y75_c00253{bottom:237.440000pt;}
.y56_c00253{bottom:270.080000pt;}
.y57_c00253{bottom:271.360000pt;}
.y70_c00253{bottom:272.640000pt;}
.y55_c00253{bottom:273.280000pt;}
.y58_c00253{bottom:273.920000pt;}
.y59_c00253{bottom:274.560000pt;}
.y6f_c00253{bottom:275.200000pt;}
.y71_c00253{bottom:275.840000pt;}
.y54_c00253{bottom:309.120000pt;}
.y6d_c00253{bottom:311.680000pt;}
.y53_c00253{bottom:312.320000pt;}
.y6c_c00253{bottom:312.960000pt;}
.y6e_c00253{bottom:314.240000pt;}
.y50_c00253{bottom:346.880000pt;}
.y52_c00253{bottom:347.520000pt;}
.y6b_c00253{bottom:348.800000pt;}
.y51_c00253{bottom:350.080000pt;}
.y4f_c00253{bottom:350.720000pt;}
.y6a_c00253{bottom:351.360000pt;}
.y4e_c00253{bottom:385.920000pt;}
.y67_c00253{bottom:387.200000pt;}
.y4d_c00253{bottom:388.480000pt;}
.y68_c00253{bottom:389.120000pt;}
.y69_c00253{bottom:390.400000pt;}
.y66_c00253{bottom:391.040000pt;}
.y4c_c00253{bottom:423.680000pt;}
.y65_c00253{bottom:425.600000pt;}
.y4b_c00253{bottom:426.880000pt;}
.y64_c00253{bottom:428.800000pt;}
.y47_c00253{bottom:462.080000pt;}
.y46_c00253{bottom:463.360000pt;}
.y48_c00253{bottom:464.000000pt;}
.y45_c00253{bottom:464.640000pt;}
.y49_c00253{bottom:465.920000pt;}
.y4a_c00253{bottom:467.200000pt;}
.y44_c00253{bottom:494.720000pt;}
.y40_c00253{bottom:500.480000pt;}
.y3f_c00253{bottom:501.760000pt;}
.y3d_c00253{bottom:502.400000pt;}
.y43_c00253{bottom:503.040000pt;}
.y3e_c00253{bottom:503.680000pt;}
.y41_c00253{bottom:504.320000pt;}
.y42_c00253{bottom:504.960000pt;}
.y25_c00253{bottom:537.600000pt;}
.y27_c00253{bottom:539.520000pt;}
.y24_c00253{bottom:540.160000pt;}
.y3a_c00253{bottom:540.800000pt;}
.y3b_c00253{bottom:541.440000pt;}
.y26_c00253{bottom:542.080000pt;}
.y28_c00253{bottom:542.720000pt;}
.y3c_c00253{bottom:543.360000pt;}
.y23_c00253{bottom:576.640000pt;}
.y21_c00253{bottom:579.200000pt;}
.y22_c00253{bottom:579.840000pt;}
.y38_c00253{bottom:580.480000pt;}
.y39_c00253{bottom:581.120000pt;}
.y20_c00253{bottom:614.400000pt;}
.y1e_c00253{bottom:616.960000pt;}
.y37_c00253{bottom:617.600000pt;}
.y1f_c00253{bottom:618.240000pt;}
.y36_c00253{bottom:619.520000pt;}
.y1d_c00253{bottom:652.800000pt;}
.y1c_c00253{bottom:654.720000pt;}
.y34_c00253{bottom:655.360000pt;}
.y35_c00253{bottom:656.000000pt;}
.y1a_c00253{bottom:691.840000pt;}
.y19_c00253{bottom:692.480000pt;}
.y33_c00253{bottom:693.760000pt;}
.y1b_c00253{bottom:694.400000pt;}
.y18_c00253{bottom:730.240000pt;}
.y16_c00253{bottom:731.520000pt;}
.y17_c00253{bottom:733.440000pt;}
.y13_c00253{bottom:768.640000pt;}
.y15_c00253{bottom:769.280000pt;}
.y14_c00253{bottom:771.840000pt;}
.y10_c00253{bottom:798.080000pt;}
.y32_c00253{bottom:798.720000pt;}
.y11_c00253{bottom:800.000000pt;}
.y12_c00253{bottom:800.640000pt;}
.yf_c00253{bottom:835.200000pt;}
.yd_c00253{bottom:836.480000pt;}
.y30_c00253{bottom:837.120000pt;}
.ye_c00253{bottom:838.400000pt;}
.y31_c00253{bottom:839.680000pt;}
.yc_c00253{bottom:872.960000pt;}
.ya_c00253{bottom:874.240000pt;}
.y2e_c00253{bottom:875.520000pt;}
.y2f_c00253{bottom:876.800000pt;}
.yb_c00253{bottom:877.440000pt;}
.y8_c00253{bottom:912.000000pt;}
.y9_c00253{bottom:912.640000pt;}
.y6_c00253{bottom:913.280000pt;}
.y2c_c00253{bottom:913.920000pt;}
.y5_c00253{bottom:914.560000pt;}
.y2d_c00253{bottom:915.200000pt;}
.y7_c00253{bottom:915.840000pt;}
.y4_c00253{bottom:950.400000pt;}
.y1_c00253{bottom:951.680000pt;}
.y2a_c00253{bottom:952.320000pt;}
.y2_c00253{bottom:953.600000pt;}
.y2b_c00253{bottom:954.240000pt;}
.y3_c00253{bottom:954.880000pt;}
.y29_c00253{bottom:997.120000pt;}
.he_c00253{height:27.645000pt;}
.h12_c00253{height:29.948750pt;}
.hd_c00253{height:32.252500pt;}
.h10_c00253{height:34.556250pt;}
.h4_c00253{height:36.860000pt;}
.h7_c00253{height:39.163750pt;}
.h3_c00253{height:41.467500pt;}
.hb_c00253{height:43.771250pt;}
.h8_c00253{height:46.075000pt;}
.h11_c00253{height:46.331250pt;}
.h2_c00253{height:48.378750pt;}
.h9_c00253{height:50.682500pt;}
.hf_c00253{height:52.986250pt;}
.hc_c00253{height:55.290000pt;}
.h6_c00253{height:57.593750pt;}
.h13_c00253{height:57.850000pt;}
.h5_c00253{height:59.897500pt;}
.ha_c00253{height:62.201250pt;}
.h0_c00253{height:1043.840000pt;}
.h1_c00253{height:1044.000000pt;}
.w0_c00253{width:691.200000pt;}
.w1_c00253{width:691.333333pt;}
.x0_c00253{left:0.000000pt;}
.x1_c00253{left:60.160000pt;}
.xb_c00253{left:61.440000pt;}
.x18_c00253{left:62.720000pt;}
.x2e_c00253{left:64.000000pt;}
.x34_c00253{left:65.280000pt;}
.x41_c00253{left:66.560000pt;}
.x45_c00253{left:67.840000pt;}
.x6_c00253{left:78.720000pt;}
.x2_c00253{left:124.800000pt;}
.xc_c00253{left:126.080000pt;}
.x35_c00253{left:127.360000pt;}
.x39_c00253{left:128.640000pt;}
.x2b_c00253{left:136.960000pt;}
.x16_c00253{left:155.520000pt;}
.x3_c00253{left:163.200000pt;}
.x17_c00253{left:164.480000pt;}
.x3a_c00253{left:165.760000pt;}
.x46_c00253{left:167.040000pt;}
.xa_c00253{left:202.880000pt;}
.x37_c00253{left:204.160000pt;}
.x36_c00253{left:205.440000pt;}
.x4_c00253{left:212.480000pt;}
.x26_c00253{left:213.760000pt;}
.x7_c00253{left:222.080000pt;}
.x3b_c00253{left:223.360000pt;}
.xd_c00253{left:232.320000pt;}
.x2f_c00253{left:242.560000pt;}
.x38_c00253{left:253.440000pt;}
.x5_c00253{left:260.480000pt;}
.xe_c00253{left:270.080000pt;}
.x31_c00253{left:272.000000pt;}
.x13_c00253{left:280.320000pt;}
.x30_c00253{left:290.560000pt;}
.x8_c00253{left:298.240000pt;}
.x47_c00253{left:301.440000pt;}
.x3c_c00253{left:311.040000pt;}
.xf_c00253{left:318.080000pt;}
.x14_c00253{left:328.320000pt;}
.x42_c00253{left:348.160000pt;}
.x48_c00253{left:350.080000pt;}
.x12_c00253{left:356.480000pt;}
.x32_c00253{left:366.720000pt;}
.x2c_c00253{left:377.600000pt;}
.x9_c00253{left:385.920000pt;}
.x19_c00253{left:394.880000pt;}
.x3d_c00253{left:396.800000pt;}
.x10_c00253{left:405.120000pt;}
.x33_c00253{left:407.040000pt;}
.x15_c00253{left:414.720000pt;}
.x2d_c00253{left:426.240000pt;}
.x1a_c00253{left:435.200000pt;}
.x49_c00253{left:437.120000pt;}
.x43_c00253{left:445.440000pt;}
.x11_c00253{left:453.120000pt;}
.x27_c00253{left:464.000000pt;}
.x2a_c00253{left:465.280000pt;}
.x44_c00253{left:483.200000pt;}
.x3f_c00253{left:501.760000pt;}
.x3e_c00253{left:503.040000pt;}
.x28_c00253{left:512.640000pt;}
.x1f_c00253{left:520.320000pt;}
.x23_c00253{left:521.600000pt;}
.x4b_c00253{left:532.480000pt;}
.x1c_c00253{left:549.120000pt;}
.x24_c00253{left:550.400000pt;}
.x1d_c00253{left:577.920000pt;}
.x21_c00253{left:579.200000pt;}
.x4c_c00253{left:581.120000pt;}
.x1b_c00253{left:606.720000pt;}
.x29_c00253{left:608.640000pt;}
.x20_c00253{left:615.040000pt;}
.x22_c00253{left:616.960000pt;}
.x4a_c00253{left:619.520000pt;}
.x1e_c00253{left:633.600000pt;}
.x25_c00253{left:634.880000pt;}
.x40_c00253{left:636.160000pt;}
.x4d_c00253{left:637.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7c48805d30317425a8829eeb.woff2')format("woff");}.ff1_c00254{font-family:ff1_c00254;line-height:1.109863;font-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_c00254{transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);}
.m43_c00254{transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);}
.m45_c00254{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.mf_c00254{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00254{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m13_c00254{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);}
.m34_c00254{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m46_c00254{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m41_c00254{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m12_c00254{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m8_c00254{transform:matrix(0.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);}
.m2f_c00254{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.ma_c00254{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m21_c00254{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m18_c00254{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m28_c00254{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m2_c00254{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m32_c00254{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m42_c00254{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m20_c00254{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00254{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m11_c00254{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mc_c00254{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00254{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00254{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m30_c00254{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00254{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00254{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m15_c00254{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00254{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m17_c00254{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m1_c00254{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00254{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);}
.m24_c00254{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);}
.m37_c00254{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);}
.m29_c00254{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m0_c00254{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m4_c00254{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m10_c00254{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);}
.m33_c00254{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m7_c00254{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);}
.m27_c00254{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m9_c00254{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);}
.m39_c00254{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);}
.m40_c00254{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_c00254{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);}
.m1f_c00254{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00254{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m6_c00254{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00254{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00254{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m31_c00254{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m3_c00254{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.me_c00254{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);}
.m2a_c00254{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);}
.m5_c00254{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m23_c00254{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m38_c00254{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);}
.m36_c00254{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00254{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m19_c00254{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m26_c00254{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m14_c00254{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_c00254{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00254{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);}
.m22_c00254{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00254{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);}
.m25_c00254{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.mb_c00254{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m35_c00254{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00254{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.v0_c00254{vertical-align:0.000000px;}
.ls0_c00254{letter-spacing:0.000000px;}
.sc__c00254{text-shadow:none;}
.sc0_c00254{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00254{-webkit-text-stroke:0px transparent;}
.sc0_c00254{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00254{word-spacing:-0.501120px;}
.ws1_c00254{word-spacing:0.000000px;}
.fc0_c00254{color:transparent;}
.fse_c00254{font-size:31.680000px;}
.fs6_c00254{font-size:34.560000px;}
.fsb_c00254{font-size:37.440000px;}
.fsf_c00254{font-size:43.200000px;}
.fs4_c00254{font-size:46.080000px;}
.fs0_c00254{font-size:48.960000px;}
.fs3_c00254{font-size:51.840000px;}
.fs9_c00254{font-size:54.720000px;}
.fs5_c00254{font-size:57.600000px;}
.fsa_c00254{font-size:60.480000px;}
.fs1_c00254{font-size:63.360000px;}
.fsd_c00254{font-size:69.120000px;}
.fs7_c00254{font-size:72.000000px;}
.fs2_c00254{font-size:74.880000px;}
.fsc_c00254{font-size:77.760000px;}
.fs8_c00254{font-size:89.280000px;}
.y0_c00254{bottom:0.000000px;}
.y58_c00254{bottom:13.680000px;}
.y59_c00254{bottom:14.400000px;}
.y5a_c00254{bottom:15.120000px;}
.y57_c00254{bottom:16.560000px;}
.y5b_c00254{bottom:17.280000px;}
.y68_c00254{bottom:18.000000px;}
.y56_c00254{bottom:18.720000px;}
.y69_c00254{bottom:19.440000px;}
.y55_c00254{bottom:57.600000px;}
.y54_c00254{bottom:59.040000px;}
.y53_c00254{bottom:61.920000px;}
.y52_c00254{bottom:109.440000px;}
.y66_c00254{bottom:112.320000px;}
.y67_c00254{bottom:113.040000px;}
.y51_c00254{bottom:114.480000px;}
.y4f_c00254{bottom:154.800000px;}
.y50_c00254{bottom:155.520000px;}
.y4e_c00254{bottom:157.680000px;}
.y4a_c00254{bottom:207.360000px;}
.y4d_c00254{bottom:208.080000px;}
.y4c_c00254{bottom:210.240000px;}
.y4b_c00254{bottom:210.960000px;}
.y48_c00254{bottom:211.680000px;}
.y49_c00254{bottom:212.400000px;}
.y46_c00254{bottom:252.720000px;}
.y47_c00254{bottom:254.160000px;}
.y45_c00254{bottom:254.880000px;}
.y44_c00254{bottom:257.040000px;}
.y42_c00254{bottom:304.560000px;}
.y43_c00254{bottom:305.280000px;}
.y64_c00254{bottom:307.440000px;}
.y41_c00254{bottom:308.880000px;}
.y65_c00254{bottom:309.600000px;}
.y3f_c00254{bottom:349.920000px;}
.y40_c00254{bottom:350.640000px;}
.y3e_c00254{bottom:351.360000px;}
.y3d_c00254{bottom:352.800000px;}
.y3a_c00254{bottom:401.040000px;}
.y3c_c00254{bottom:401.760000px;}
.y3b_c00254{bottom:402.480000px;}
.y62_c00254{bottom:403.200000px;}
.y39_c00254{bottom:405.360000px;}
.y63_c00254{bottom:406.080000px;}
.y37_c00254{bottom:446.400000px;}
.y38_c00254{bottom:447.840000px;}
.y35_c00254{bottom:449.280000px;}
.y36_c00254{bottom:453.600000px;}
.y34_c00254{bottom:498.960000px;}
.y61_c00254{bottom:500.400000px;}
.y33_c00254{bottom:501.840000px;}
.y31_c00254{bottom:542.160000px;}
.y32_c00254{bottom:542.880000px;}
.y5f_c00254{bottom:543.600000px;}
.y30_c00254{bottom:545.040000px;}
.y60_c00254{bottom:545.760000px;}
.y2f_c00254{bottom:585.360000px;}
.y5e_c00254{bottom:586.800000px;}
.y2e_c00254{bottom:587.520000px;}
.y2c_c00254{bottom:630.720000px;}
.y2d_c00254{bottom:632.880000px;}
.y2b_c00254{bottom:660.960000px;}
.y28_c00254{bottom:662.400000px;}
.y2a_c00254{bottom:663.840000px;}
.y29_c00254{bottom:665.280000px;}
.y24_c00254{bottom:693.360000px;}
.y27_c00254{bottom:694.080000px;}
.y5d_c00254{bottom:694.800000px;}
.y23_c00254{bottom:695.520000px;}
.y26_c00254{bottom:696.960000px;}
.y25_c00254{bottom:697.680000px;}
.y22_c00254{bottom:737.280000px;}
.y20_c00254{bottom:738.000000px;}
.y21_c00254{bottom:740.880000px;}
.y1c_c00254{bottom:769.680000px;}
.y1d_c00254{bottom:770.400000px;}
.y1b_c00254{bottom:771.120000px;}
.y5c_c00254{bottom:771.840000px;}
.y1f_c00254{bottom:772.560000px;}
.y1e_c00254{bottom:773.280000px;}
.y18_c00254{bottom:814.320000px;}
.y1a_c00254{bottom:815.760000px;}
.y19_c00254{bottom:817.200000px;}
.y16_c00254{bottom:843.840000px;}
.y13_c00254{bottom:844.560000px;}
.y12_c00254{bottom:846.000000px;}
.y17_c00254{bottom:847.440000px;}
.y15_c00254{bottom:848.160000px;}
.y14_c00254{bottom:848.880000px;}
.ye_c00254{bottom:887.760000px;}
.yf_c00254{bottom:888.480000px;}
.y10_c00254{bottom:892.080000px;}
.ya_c00254{bottom:920.160000px;}
.yc_c00254{bottom:920.880000px;}
.y9_c00254{bottom:921.600000px;}
.yd_c00254{bottom:923.040000px;}
.yb_c00254{bottom:923.760000px;}
.y7_c00254{bottom:965.520000px;}
.y8_c00254{bottom:966.960000px;}
.y6_c00254{bottom:967.680000px;}
.y5_c00254{bottom:998.640000px;}
.y4_c00254{bottom:999.360000px;}
.y3_c00254{bottom:1049.760000px;}
.y2_c00254{bottom:1050.480000px;}
.y1_c00254{bottom:1053.360000px;}
.y11_c00254{bottom:1114.560000px;}
.h10_c00254{height:28.508906px;}
.h8_c00254{height:31.100625px;}
.hd_c00254{height:33.692344px;}
.h11_c00254{height:38.875781px;}
.h6_c00254{height:41.467500px;}
.h2_c00254{height:44.059219px;}
.h5_c00254{height:46.650937px;}
.hb_c00254{height:49.242656px;}
.h7_c00254{height:51.834375px;}
.hc_c00254{height:54.426094px;}
.h3_c00254{height:57.017812px;}
.hf_c00254{height:62.201250px;}
.h9_c00254{height:64.792969px;}
.h4_c00254{height:67.384687px;}
.he_c00254{height:69.976406px;}
.ha_c00254{height:80.343281px;}
.h0_c00254{height:1159.200000px;}
.h1_c00254{height:1159.500000px;}
.w1_c00254{width:783.000000px;}
.w0_c00254{width:783.360000px;}
.x0_c00254{left:0.000000px;}
.xb_c00254{left:72.720000px;}
.x29_c00254{left:74.160000px;}
.x32_c00254{left:75.600000px;}
.x34_c00254{left:77.040000px;}
.x8_c00254{left:123.120000px;}
.x4_c00254{left:124.560000px;}
.x1_c00254{left:144.720000px;}
.x9_c00254{left:146.160000px;}
.x27_c00254{left:156.240000px;}
.x33_c00254{left:168.480000px;}
.x1b_c00254{left:177.840000px;}
.x2_c00254{left:188.640000px;}
.x2e_c00254{left:190.080000px;}
.x28_c00254{left:191.520000px;}
.x5_c00254{left:198.720000px;}
.x26_c00254{left:200.880000px;}
.xa_c00254{left:220.320000px;}
.x2d_c00254{left:230.400000px;}
.x1c_c00254{left:231.840000px;}
.x15_c00254{left:233.280000px;}
.x21_c00254{left:242.640000px;}
.xf_c00254{left:253.440000px;}
.x23_c00254{left:263.520000px;}
.x6_c00254{left:264.960000px;}
.x16_c00254{left:275.760000px;}
.x3_c00254{left:285.840000px;}
.xc_c00254{left:287.280000px;}
.x7_c00254{left:296.640000px;}
.x2f_c00254{left:298.080000px;}
.x10_c00254{left:307.440000px;}
.xd_c00254{left:329.040000px;}
.x2a_c00254{left:339.120000px;}
.x30_c00254{left:352.080000px;}
.x24_c00254{left:362.160000px;}
.x1d_c00254{left:371.520000px;}
.x17_c00254{left:373.680000px;}
.x22_c00254{left:382.320000px;}
.x2b_c00254{left:383.760000px;}
.x35_c00254{left:395.280000px;}
.x1e_c00254{left:416.160000px;}
.x18_c00254{left:426.960000px;}
.x2c_c00254{left:437.760000px;}
.x36_c00254{left:450.000000px;}
.x1f_c00254{left:470.880000px;}
.xe_c00254{left:481.680000px;}
.x25_c00254{left:490.320000px;}
.x31_c00254{left:492.480000px;}
.x20_c00254{left:512.640000px;}
.x19_c00254{left:534.240000px;}
.x3b_c00254{left:567.360000px;}
.x3a_c00254{left:587.520000px;}
.x1a_c00254{left:588.960000px;}
.x12_c00254{left:621.360000px;}
.x37_c00254{left:622.800000px;}
.x13_c00254{left:654.480000px;}
.x39_c00254{left:696.240000px;}
.x14_c00254{left:697.680000px;}
.x11_c00254{left:704.160000px;}
.x38_c00254{left:717.840000px;}
@media print{
.v0_c00254{vertical-align:0.000000pt;}
.ls0_c00254{letter-spacing:0.000000pt;}
.ws0_c00254{word-spacing:-0.445440pt;}
.ws1_c00254{word-spacing:0.000000pt;}
.fse_c00254{font-size:28.160000pt;}
.fs6_c00254{font-size:30.720000pt;}
.fsb_c00254{font-size:33.280000pt;}
.fsf_c00254{font-size:38.400000pt;}
.fs4_c00254{font-size:40.960000pt;}
.fs0_c00254{font-size:43.520000pt;}
.fs3_c00254{font-size:46.080000pt;}
.fs9_c00254{font-size:48.640000pt;}
.fs5_c00254{font-size:51.200000pt;}
.fsa_c00254{font-size:53.760000pt;}
.fs1_c00254{font-size:56.320000pt;}
.fsd_c00254{font-size:61.440000pt;}
.fs7_c00254{font-size:64.000000pt;}
.fs2_c00254{font-size:66.560000pt;}
.fsc_c00254{font-size:69.120000pt;}
.fs8_c00254{font-size:79.360000pt;}
.y0_c00254{bottom:0.000000pt;}
.y58_c00254{bottom:12.160000pt;}
.y59_c00254{bottom:12.800000pt;}
.y5a_c00254{bottom:13.440000pt;}
.y57_c00254{bottom:14.720000pt;}
.y5b_c00254{bottom:15.360000pt;}
.y68_c00254{bottom:16.000000pt;}
.y56_c00254{bottom:16.640000pt;}
.y69_c00254{bottom:17.280000pt;}
.y55_c00254{bottom:51.200000pt;}
.y54_c00254{bottom:52.480000pt;}
.y53_c00254{bottom:55.040000pt;}
.y52_c00254{bottom:97.280000pt;}
.y66_c00254{bottom:99.840000pt;}
.y67_c00254{bottom:100.480000pt;}
.y51_c00254{bottom:101.760000pt;}
.y4f_c00254{bottom:137.600000pt;}
.y50_c00254{bottom:138.240000pt;}
.y4e_c00254{bottom:140.160000pt;}
.y4a_c00254{bottom:184.320000pt;}
.y4d_c00254{bottom:184.960000pt;}
.y4c_c00254{bottom:186.880000pt;}
.y4b_c00254{bottom:187.520000pt;}
.y48_c00254{bottom:188.160000pt;}
.y49_c00254{bottom:188.800000pt;}
.y46_c00254{bottom:224.640000pt;}
.y47_c00254{bottom:225.920000pt;}
.y45_c00254{bottom:226.560000pt;}
.y44_c00254{bottom:228.480000pt;}
.y42_c00254{bottom:270.720000pt;}
.y43_c00254{bottom:271.360000pt;}
.y64_c00254{bottom:273.280000pt;}
.y41_c00254{bottom:274.560000pt;}
.y65_c00254{bottom:275.200000pt;}
.y3f_c00254{bottom:311.040000pt;}
.y40_c00254{bottom:311.680000pt;}
.y3e_c00254{bottom:312.320000pt;}
.y3d_c00254{bottom:313.600000pt;}
.y3a_c00254{bottom:356.480000pt;}
.y3c_c00254{bottom:357.120000pt;}
.y3b_c00254{bottom:357.760000pt;}
.y62_c00254{bottom:358.400000pt;}
.y39_c00254{bottom:360.320000pt;}
.y63_c00254{bottom:360.960000pt;}
.y37_c00254{bottom:396.800000pt;}
.y38_c00254{bottom:398.080000pt;}
.y35_c00254{bottom:399.360000pt;}
.y36_c00254{bottom:403.200000pt;}
.y34_c00254{bottom:443.520000pt;}
.y61_c00254{bottom:444.800000pt;}
.y33_c00254{bottom:446.080000pt;}
.y31_c00254{bottom:481.920000pt;}
.y32_c00254{bottom:482.560000pt;}
.y5f_c00254{bottom:483.200000pt;}
.y30_c00254{bottom:484.480000pt;}
.y60_c00254{bottom:485.120000pt;}
.y2f_c00254{bottom:520.320000pt;}
.y5e_c00254{bottom:521.600000pt;}
.y2e_c00254{bottom:522.240000pt;}
.y2c_c00254{bottom:560.640000pt;}
.y2d_c00254{bottom:562.560000pt;}
.y2b_c00254{bottom:587.520000pt;}
.y28_c00254{bottom:588.800000pt;}
.y2a_c00254{bottom:590.080000pt;}
.y29_c00254{bottom:591.360000pt;}
.y24_c00254{bottom:616.320000pt;}
.y27_c00254{bottom:616.960000pt;}
.y5d_c00254{bottom:617.600000pt;}
.y23_c00254{bottom:618.240000pt;}
.y26_c00254{bottom:619.520000pt;}
.y25_c00254{bottom:620.160000pt;}
.y22_c00254{bottom:655.360000pt;}
.y20_c00254{bottom:656.000000pt;}
.y21_c00254{bottom:658.560000pt;}
.y1c_c00254{bottom:684.160000pt;}
.y1d_c00254{bottom:684.800000pt;}
.y1b_c00254{bottom:685.440000pt;}
.y5c_c00254{bottom:686.080000pt;}
.y1f_c00254{bottom:686.720000pt;}
.y1e_c00254{bottom:687.360000pt;}
.y18_c00254{bottom:723.840000pt;}
.y1a_c00254{bottom:725.120000pt;}
.y19_c00254{bottom:726.400000pt;}
.y16_c00254{bottom:750.080000pt;}
.y13_c00254{bottom:750.720000pt;}
.y12_c00254{bottom:752.000000pt;}
.y17_c00254{bottom:753.280000pt;}
.y15_c00254{bottom:753.920000pt;}
.y14_c00254{bottom:754.560000pt;}
.ye_c00254{bottom:789.120000pt;}
.yf_c00254{bottom:789.760000pt;}
.y10_c00254{bottom:792.960000pt;}
.ya_c00254{bottom:817.920000pt;}
.yc_c00254{bottom:818.560000pt;}
.y9_c00254{bottom:819.200000pt;}
.yd_c00254{bottom:820.480000pt;}
.yb_c00254{bottom:821.120000pt;}
.y7_c00254{bottom:858.240000pt;}
.y8_c00254{bottom:859.520000pt;}
.y6_c00254{bottom:860.160000pt;}
.y5_c00254{bottom:887.680000pt;}
.y4_c00254{bottom:888.320000pt;}
.y3_c00254{bottom:933.120000pt;}
.y2_c00254{bottom:933.760000pt;}
.y1_c00254{bottom:936.320000pt;}
.y11_c00254{bottom:990.720000pt;}
.h10_c00254{height:25.341250pt;}
.h8_c00254{height:27.645000pt;}
.hd_c00254{height:29.948750pt;}
.h11_c00254{height:34.556250pt;}
.h6_c00254{height:36.860000pt;}
.h2_c00254{height:39.163750pt;}
.h5_c00254{height:41.467500pt;}
.hb_c00254{height:43.771250pt;}
.h7_c00254{height:46.075000pt;}
.hc_c00254{height:48.378750pt;}
.h3_c00254{height:50.682500pt;}
.hf_c00254{height:55.290000pt;}
.h9_c00254{height:57.593750pt;}
.h4_c00254{height:59.897500pt;}
.he_c00254{height:62.201250pt;}
.ha_c00254{height:71.416250pt;}
.h0_c00254{height:1030.400000pt;}
.h1_c00254{height:1030.666667pt;}
.w1_c00254{width:696.000000pt;}
.w0_c00254{width:696.320000pt;}
.x0_c00254{left:0.000000pt;}
.xb_c00254{left:64.640000pt;}
.x29_c00254{left:65.920000pt;}
.x32_c00254{left:67.200000pt;}
.x34_c00254{left:68.480000pt;}
.x8_c00254{left:109.440000pt;}
.x4_c00254{left:110.720000pt;}
.x1_c00254{left:128.640000pt;}
.x9_c00254{left:129.920000pt;}
.x27_c00254{left:138.880000pt;}
.x33_c00254{left:149.760000pt;}
.x1b_c00254{left:158.080000pt;}
.x2_c00254{left:167.680000pt;}
.x2e_c00254{left:168.960000pt;}
.x28_c00254{left:170.240000pt;}
.x5_c00254{left:176.640000pt;}
.x26_c00254{left:178.560000pt;}
.xa_c00254{left:195.840000pt;}
.x2d_c00254{left:204.800000pt;}
.x1c_c00254{left:206.080000pt;}
.x15_c00254{left:207.360000pt;}
.x21_c00254{left:215.680000pt;}
.xf_c00254{left:225.280000pt;}
.x23_c00254{left:234.240000pt;}
.x6_c00254{left:235.520000pt;}
.x16_c00254{left:245.120000pt;}
.x3_c00254{left:254.080000pt;}
.xc_c00254{left:255.360000pt;}
.x7_c00254{left:263.680000pt;}
.x2f_c00254{left:264.960000pt;}
.x10_c00254{left:273.280000pt;}
.xd_c00254{left:292.480000pt;}
.x2a_c00254{left:301.440000pt;}
.x30_c00254{left:312.960000pt;}
.x24_c00254{left:321.920000pt;}
.x1d_c00254{left:330.240000pt;}
.x17_c00254{left:332.160000pt;}
.x22_c00254{left:339.840000pt;}
.x2b_c00254{left:341.120000pt;}
.x35_c00254{left:351.360000pt;}
.x1e_c00254{left:369.920000pt;}
.x18_c00254{left:379.520000pt;}
.x2c_c00254{left:389.120000pt;}
.x36_c00254{left:400.000000pt;}
.x1f_c00254{left:418.560000pt;}
.xe_c00254{left:428.160000pt;}
.x25_c00254{left:435.840000pt;}
.x31_c00254{left:437.760000pt;}
.x20_c00254{left:455.680000pt;}
.x19_c00254{left:474.880000pt;}
.x3b_c00254{left:504.320000pt;}
.x3a_c00254{left:522.240000pt;}
.x1a_c00254{left:523.520000pt;}
.x12_c00254{left:552.320000pt;}
.x37_c00254{left:553.600000pt;}
.x13_c00254{left:581.760000pt;}
.x39_c00254{left:618.880000pt;}
.x14_c00254{left:620.160000pt;}
.x11_c00254{left:625.920000pt;}
.x38_c00254{left:638.080000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7d3459ee25ab71002aa5b0c6.woff2')format("woff");}.ff1_c00255{font-family:ff1_c00255;line-height:1.109863;font-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_c00255{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.md_c00255{transform:matrix(0.236800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236800,0.000000,0.000000,0.250000,0,0);}
.m20_c00255{transform:matrix(0.241200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241200,0.000000,0.000000,0.250000,0,0);}
.m1d_c00255{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m0_c00255{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00255{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_c00255{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m27_c00255{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);}
.m23_c00255{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m18_c00255{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m35_c00255{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m17_c00255{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m13_c00255{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);}
.m37_c00255{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00255{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m2_c00255{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m21_c00255{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m9_c00255{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m39_c00255{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m34_c00255{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m15_c00255{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m36_c00255{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00255{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m41_c00255{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m31_c00255{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00255{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m30_c00255{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m29_c00255{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.ma_c00255{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.mc_c00255{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m38_c00255{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);}
.m40_c00255{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m5_c00255{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00255{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m16_c00255{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m22_c00255{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m25_c00255{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m4_c00255{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);}
.m14_c00255{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00255{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m6_c00255{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m8_c00255{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.mb_c00255{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);}
.m3b_c00255{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m42_c00255{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);}
.m1f_c00255{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m19_c00255{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00255{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00255{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);}
.m43_c00255{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m32_c00255{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00255{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m11_c00255{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m7_c00255{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m3_c00255{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m26_c00255{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00255{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m1_c00255{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00255{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00255{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m24_c00255{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.me_c00255{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.mf_c00255{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00255{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00255{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m10_c00255{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);}
.m2d_c00255{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m12_c00255{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m44_c00255{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);}
.m45_c00255{transform:matrix(0.650000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.650000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.650000,0.000000,0.000000,0.250000,0,0);}
.v1_c00255{vertical-align:-5.760000px;}
.v0_c00255{vertical-align:0.000000px;}
.ls1_c00255{letter-spacing:0.000000px;}
.ls0_c00255{letter-spacing:83.257680px;}
.sc__c00255{text-shadow:none;}
.sc0_c00255{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00255{-webkit-text-stroke:0px transparent;}
.sc0_c00255{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00255{word-spacing:0.000000px;}
.fc0_c00255{color:transparent;}
.fs7_c00255{font-size:34.560000px;}
.fsa_c00255{font-size:43.200000px;}
.fs5_c00255{font-size:46.080000px;}
.fs3_c00255{font-size:48.960000px;}
.fs1_c00255{font-size:51.840000px;}
.fs8_c00255{font-size:54.720000px;}
.fs6_c00255{font-size:57.600000px;}
.fs4_c00255{font-size:60.480000px;}
.fs9_c00255{font-size:69.120000px;}
.fs2_c00255{font-size:72.000000px;}
.fs0_c00255{font-size:74.880000px;}
.fsb_c00255{font-size:80.640000px;}
.y0_c00255{bottom:0.000000px;}
.y62_c00255{bottom:36.000000px;}
.y61_c00255{bottom:37.440000px;}
.y5c_c00255{bottom:64.080000px;}
.y5f_c00255{bottom:64.800000px;}
.y5d_c00255{bottom:65.520000px;}
.y5e_c00255{bottom:67.680000px;}
.y64_c00255{bottom:68.400000px;}
.y60_c00255{bottom:69.120000px;}
.y5b_c00255{bottom:69.840000px;}
.y65_c00255{bottom:70.560000px;}
.y58_c00255{bottom:108.720000px;}
.y59_c00255{bottom:109.440000px;}
.y5a_c00255{bottom:112.320000px;}
.y57_c00255{bottom:113.760000px;}
.y63_c00255{bottom:114.480000px;}
.y56_c00255{bottom:154.080000px;}
.y55_c00255{bottom:158.400000px;}
.y54_c00255{bottom:187.920000px;}
.y53_c00255{bottom:188.640000px;}
.y4f_c00255{bottom:239.040000px;}
.y51_c00255{bottom:239.760000px;}
.y50_c00255{bottom:241.920000px;}
.y4e_c00255{bottom:242.640000px;}
.y52_c00255{bottom:243.360000px;}
.y40_c00255{bottom:281.520000px;}
.y4c_c00255{bottom:284.400000px;}
.y3f_c00255{bottom:285.120000px;}
.y4d_c00255{bottom:285.840000px;}
.y3d_c00255{bottom:324.720000px;}
.y3e_c00255{bottom:325.440000px;}
.y4a_c00255{bottom:327.600000px;}
.y3c_c00255{bottom:328.320000px;}
.y4b_c00255{bottom:331.200000px;}
.y3b_c00255{bottom:367.920000px;}
.y39_c00255{bottom:370.800000px;}
.y38_c00255{bottom:371.520000px;}
.y3a_c00255{bottom:372.240000px;}
.y36_c00255{bottom:414.000000px;}
.y37_c00255{bottom:415.440000px;}
.y35_c00255{bottom:416.880000px;}
.y32_c00255{bottom:467.280000px;}
.y33_c00255{bottom:469.440000px;}
.y34_c00255{bottom:470.160000px;}
.y2d_c00255{bottom:498.240000px;}
.y2f_c00255{bottom:498.960000px;}
.y2e_c00255{bottom:500.400000px;}
.y49_c00255{bottom:501.120000px;}
.y2c_c00255{bottom:501.840000px;}
.y30_c00255{bottom:502.560000px;}
.y31_c00255{bottom:503.280000px;}
.y2b_c00255{bottom:542.160000px;}
.y2a_c00255{bottom:545.760000px;}
.y29_c00255{bottom:575.280000px;}
.y27_c00255{bottom:576.000000px;}
.y26_c00255{bottom:576.720000px;}
.y47_c00255{bottom:577.440000px;}
.y28_c00255{bottom:578.160000px;}
.y48_c00255{bottom:578.880000px;}
.y25_c00255{bottom:617.760000px;}
.y24_c00255{bottom:621.360000px;}
.y21_c00255{bottom:649.440000px;}
.y23_c00255{bottom:650.160000px;}
.y46_c00255{bottom:651.600000px;}
.y20_c00255{bottom:652.320000px;}
.y22_c00255{bottom:653.760000px;}
.y1f_c00255{bottom:682.560000px;}
.y1b_c00255{bottom:693.360000px;}
.y1e_c00255{bottom:694.080000px;}
.y1a_c00255{bottom:694.800000px;}
.y45_c00255{bottom:695.520000px;}
.y1d_c00255{bottom:696.240000px;}
.y1c_c00255{bottom:696.960000px;}
.y18_c00255{bottom:738.000000px;}
.y19_c00255{bottom:739.440000px;}
.y17_c00255{bottom:740.160000px;}
.y16_c00255{bottom:789.840000px;}
.y44_c00255{bottom:790.560000px;}
.y15_c00255{bottom:791.280000px;}
.y13_c00255{bottom:835.200000px;}
.y14_c00255{bottom:835.920000px;}
.y12_c00255{bottom:837.360000px;}
.y11_c00255{bottom:887.760000px;}
.yf_c00255{bottom:889.200000px;}
.ye_c00255{bottom:891.360000px;}
.y10_c00255{bottom:892.080000px;}
.yb_c00255{bottom:919.440000px;}
.ya_c00255{bottom:920.160000px;}
.y42_c00255{bottom:920.880000px;}
.y43_c00255{bottom:921.600000px;}
.yd_c00255{bottom:923.040000px;}
.yc_c00255{bottom:923.760000px;}
.y9_c00255{bottom:965.520000px;}
.y8_c00255{bottom:966.960000px;}
.y6_c00255{bottom:1018.800000px;}
.y7_c00255{bottom:1020.960000px;}
.y1_c00255{bottom:1049.760000px;}
.y3_c00255{bottom:1050.480000px;}
.y5_c00255{bottom:1051.200000px;}
.y4_c00255{bottom:1053.360000px;}
.y2_c00255{bottom:1054.080000px;}
.y41_c00255{bottom:1113.120000px;}
.h9_c00255{height:31.100625px;}
.hc_c00255{height:38.875781px;}
.h7_c00255{height:41.467500px;}
.h5_c00255{height:44.059219px;}
.h3_c00255{height:46.650937px;}
.ha_c00255{height:49.242656px;}
.h8_c00255{height:51.834375px;}
.h6_c00255{height:54.426094px;}
.hb_c00255{height:62.201250px;}
.h4_c00255{height:64.792969px;}
.h2_c00255{height:67.384687px;}
.hd_c00255{height:72.568125px;}
.h0_c00255{height:1159.920000px;}
.h1_c00255{height:1160.250000px;}
.w1_c00255{width:786.000000px;}
.w0_c00255{width:786.240000px;}
.x0_c00255{left:0.000000px;}
.xd_c00255{left:84.240000px;}
.x24_c00255{left:85.680000px;}
.x38_c00255{left:87.120000px;}
.xa_c00255{left:136.080000px;}
.x35_c00255{left:146.880000px;}
.x3a_c00255{left:148.320000px;}
.x23_c00255{left:155.520000px;}
.x8_c00255{left:157.680000px;}
.x1_c00255{left:159.120000px;}
.xb_c00255{left:169.200000px;}
.x3b_c00255{left:190.080000px;}
.x1e_c00255{left:200.880000px;}
.x9_c00255{left:211.680000px;}
.x12_c00255{left:221.040000px;}
.x34_c00255{left:231.840000px;}
.x31_c00255{left:234.000000px;}
.x15_c00255{left:244.800000px;}
.x2_c00255{left:254.880000px;}
.xc_c00255{left:264.960000px;}
.x25_c00255{left:275.760000px;}
.x1a_c00255{left:287.280000px;}
.x13_c00255{left:298.080000px;}
.x3_c00255{left:309.600000px;}
.x21_c00255{left:318.240000px;}
.x14_c00255{left:319.680000px;}
.x32_c00255{left:330.480000px;}
.x16_c00255{left:340.560000px;}
.x39_c00255{left:342.000000px;}
.xe_c00255{left:352.080000px;}
.x36_c00255{left:362.880000px;}
.x37_c00255{left:385.200000px;}
.x1f_c00255{left:395.280000px;}
.x4_c00255{left:406.800000px;}
.x17_c00255{left:427.680000px;}
.x33_c00255{left:448.560000px;}
.xf_c00255{left:450.000000px;}
.x5_c00255{left:460.080000px;}
.x1b_c00255{left:471.600000px;}
.x18_c00255{left:480.960000px;}
.x22_c00255{left:483.120000px;}
.x10_c00255{left:504.000000px;}
.x1c_c00255{left:514.080000px;}
.x6_c00255{left:515.520000px;}
.x19_c00255{left:524.880000px;}
.x11_c00255{left:547.200000px;}
.x7_c00255{left:559.440000px;}
.x1d_c00255{left:578.880000px;}
.x20_c00255{left:580.320000px;}
.x30_c00255{left:600.480000px;}
.x29_c00255{left:601.920000px;}
.x2b_c00255{left:632.880000px;}
.x27_c00255{left:634.320000px;}
.x2f_c00255{left:665.280000px;}
.x2c_c00255{left:666.720000px;}
.x28_c00255{left:676.800000px;}
.x2e_c00255{left:699.120000px;}
.x2d_c00255{left:708.480000px;}
.x2a_c00255{left:709.920000px;}
.x26_c00255{left:714.240000px;}
@media print{
.v1_c00255{vertical-align:-5.120000pt;}
.v0_c00255{vertical-align:0.000000pt;}
.ls1_c00255{letter-spacing:0.000000pt;}
.ls0_c00255{letter-spacing:74.006827pt;}
.ws0_c00255{word-spacing:0.000000pt;}
.fs7_c00255{font-size:30.720000pt;}
.fsa_c00255{font-size:38.400000pt;}
.fs5_c00255{font-size:40.960000pt;}
.fs3_c00255{font-size:43.520000pt;}
.fs1_c00255{font-size:46.080000pt;}
.fs8_c00255{font-size:48.640000pt;}
.fs6_c00255{font-size:51.200000pt;}
.fs4_c00255{font-size:53.760000pt;}
.fs9_c00255{font-size:61.440000pt;}
.fs2_c00255{font-size:64.000000pt;}
.fs0_c00255{font-size:66.560000pt;}
.fsb_c00255{font-size:71.680000pt;}
.y0_c00255{bottom:0.000000pt;}
.y62_c00255{bottom:32.000000pt;}
.y61_c00255{bottom:33.280000pt;}
.y5c_c00255{bottom:56.960000pt;}
.y5f_c00255{bottom:57.600000pt;}
.y5d_c00255{bottom:58.240000pt;}
.y5e_c00255{bottom:60.160000pt;}
.y64_c00255{bottom:60.800000pt;}
.y60_c00255{bottom:61.440000pt;}
.y5b_c00255{bottom:62.080000pt;}
.y65_c00255{bottom:62.720000pt;}
.y58_c00255{bottom:96.640000pt;}
.y59_c00255{bottom:97.280000pt;}
.y5a_c00255{bottom:99.840000pt;}
.y57_c00255{bottom:101.120000pt;}
.y63_c00255{bottom:101.760000pt;}
.y56_c00255{bottom:136.960000pt;}
.y55_c00255{bottom:140.800000pt;}
.y54_c00255{bottom:167.040000pt;}
.y53_c00255{bottom:167.680000pt;}
.y4f_c00255{bottom:212.480000pt;}
.y51_c00255{bottom:213.120000pt;}
.y50_c00255{bottom:215.040000pt;}
.y4e_c00255{bottom:215.680000pt;}
.y52_c00255{bottom:216.320000pt;}
.y40_c00255{bottom:250.240000pt;}
.y4c_c00255{bottom:252.800000pt;}
.y3f_c00255{bottom:253.440000pt;}
.y4d_c00255{bottom:254.080000pt;}
.y3d_c00255{bottom:288.640000pt;}
.y3e_c00255{bottom:289.280000pt;}
.y4a_c00255{bottom:291.200000pt;}
.y3c_c00255{bottom:291.840000pt;}
.y4b_c00255{bottom:294.400000pt;}
.y3b_c00255{bottom:327.040000pt;}
.y39_c00255{bottom:329.600000pt;}
.y38_c00255{bottom:330.240000pt;}
.y3a_c00255{bottom:330.880000pt;}
.y36_c00255{bottom:368.000000pt;}
.y37_c00255{bottom:369.280000pt;}
.y35_c00255{bottom:370.560000pt;}
.y32_c00255{bottom:415.360000pt;}
.y33_c00255{bottom:417.280000pt;}
.y34_c00255{bottom:417.920000pt;}
.y2d_c00255{bottom:442.880000pt;}
.y2f_c00255{bottom:443.520000pt;}
.y2e_c00255{bottom:444.800000pt;}
.y49_c00255{bottom:445.440000pt;}
.y2c_c00255{bottom:446.080000pt;}
.y30_c00255{bottom:446.720000pt;}
.y31_c00255{bottom:447.360000pt;}
.y2b_c00255{bottom:481.920000pt;}
.y2a_c00255{bottom:485.120000pt;}
.y29_c00255{bottom:511.360000pt;}
.y27_c00255{bottom:512.000000pt;}
.y26_c00255{bottom:512.640000pt;}
.y47_c00255{bottom:513.280000pt;}
.y28_c00255{bottom:513.920000pt;}
.y48_c00255{bottom:514.560000pt;}
.y25_c00255{bottom:549.120000pt;}
.y24_c00255{bottom:552.320000pt;}
.y21_c00255{bottom:577.280000pt;}
.y23_c00255{bottom:577.920000pt;}
.y46_c00255{bottom:579.200000pt;}
.y20_c00255{bottom:579.840000pt;}
.y22_c00255{bottom:581.120000pt;}
.y1f_c00255{bottom:606.720000pt;}
.y1b_c00255{bottom:616.320000pt;}
.y1e_c00255{bottom:616.960000pt;}
.y1a_c00255{bottom:617.600000pt;}
.y45_c00255{bottom:618.240000pt;}
.y1d_c00255{bottom:618.880000pt;}
.y1c_c00255{bottom:619.520000pt;}
.y18_c00255{bottom:656.000000pt;}
.y19_c00255{bottom:657.280000pt;}
.y17_c00255{bottom:657.920000pt;}
.y16_c00255{bottom:702.080000pt;}
.y44_c00255{bottom:702.720000pt;}
.y15_c00255{bottom:703.360000pt;}
.y13_c00255{bottom:742.400000pt;}
.y14_c00255{bottom:743.040000pt;}
.y12_c00255{bottom:744.320000pt;}
.y11_c00255{bottom:789.120000pt;}
.yf_c00255{bottom:790.400000pt;}
.ye_c00255{bottom:792.320000pt;}
.y10_c00255{bottom:792.960000pt;}
.yb_c00255{bottom:817.280000pt;}
.ya_c00255{bottom:817.920000pt;}
.y42_c00255{bottom:818.560000pt;}
.y43_c00255{bottom:819.200000pt;}
.yd_c00255{bottom:820.480000pt;}
.yc_c00255{bottom:821.120000pt;}
.y9_c00255{bottom:858.240000pt;}
.y8_c00255{bottom:859.520000pt;}
.y6_c00255{bottom:905.600000pt;}
.y7_c00255{bottom:907.520000pt;}
.y1_c00255{bottom:933.120000pt;}
.y3_c00255{bottom:933.760000pt;}
.y5_c00255{bottom:934.400000pt;}
.y4_c00255{bottom:936.320000pt;}
.y2_c00255{bottom:936.960000pt;}
.y41_c00255{bottom:989.440000pt;}
.h9_c00255{height:27.645000pt;}
.hc_c00255{height:34.556250pt;}
.h7_c00255{height:36.860000pt;}
.h5_c00255{height:39.163750pt;}
.h3_c00255{height:41.467500pt;}
.ha_c00255{height:43.771250pt;}
.h8_c00255{height:46.075000pt;}
.h6_c00255{height:48.378750pt;}
.hb_c00255{height:55.290000pt;}
.h4_c00255{height:57.593750pt;}
.h2_c00255{height:59.897500pt;}
.hd_c00255{height:64.505000pt;}
.h0_c00255{height:1031.040000pt;}
.h1_c00255{height:1031.333333pt;}
.w1_c00255{width:698.666667pt;}
.w0_c00255{width:698.880000pt;}
.x0_c00255{left:0.000000pt;}
.xd_c00255{left:74.880000pt;}
.x24_c00255{left:76.160000pt;}
.x38_c00255{left:77.440000pt;}
.xa_c00255{left:120.960000pt;}
.x35_c00255{left:130.560000pt;}
.x3a_c00255{left:131.840000pt;}
.x23_c00255{left:138.240000pt;}
.x8_c00255{left:140.160000pt;}
.x1_c00255{left:141.440000pt;}
.xb_c00255{left:150.400000pt;}
.x3b_c00255{left:168.960000pt;}
.x1e_c00255{left:178.560000pt;}
.x9_c00255{left:188.160000pt;}
.x12_c00255{left:196.480000pt;}
.x34_c00255{left:206.080000pt;}
.x31_c00255{left:208.000000pt;}
.x15_c00255{left:217.600000pt;}
.x2_c00255{left:226.560000pt;}
.xc_c00255{left:235.520000pt;}
.x25_c00255{left:245.120000pt;}
.x1a_c00255{left:255.360000pt;}
.x13_c00255{left:264.960000pt;}
.x3_c00255{left:275.200000pt;}
.x21_c00255{left:282.880000pt;}
.x14_c00255{left:284.160000pt;}
.x32_c00255{left:293.760000pt;}
.x16_c00255{left:302.720000pt;}
.x39_c00255{left:304.000000pt;}
.xe_c00255{left:312.960000pt;}
.x36_c00255{left:322.560000pt;}
.x37_c00255{left:342.400000pt;}
.x1f_c00255{left:351.360000pt;}
.x4_c00255{left:361.600000pt;}
.x17_c00255{left:380.160000pt;}
.x33_c00255{left:398.720000pt;}
.xf_c00255{left:400.000000pt;}
.x5_c00255{left:408.960000pt;}
.x1b_c00255{left:419.200000pt;}
.x18_c00255{left:427.520000pt;}
.x22_c00255{left:429.440000pt;}
.x10_c00255{left:448.000000pt;}
.x1c_c00255{left:456.960000pt;}
.x6_c00255{left:458.240000pt;}
.x19_c00255{left:466.560000pt;}
.x11_c00255{left:486.400000pt;}
.x7_c00255{left:497.280000pt;}
.x1d_c00255{left:514.560000pt;}
.x20_c00255{left:515.840000pt;}
.x30_c00255{left:533.760000pt;}
.x29_c00255{left:535.040000pt;}
.x2b_c00255{left:562.560000pt;}
.x27_c00255{left:563.840000pt;}
.x2f_c00255{left:591.360000pt;}
.x2c_c00255{left:592.640000pt;}
.x28_c00255{left:601.600000pt;}
.x2e_c00255{left:621.440000pt;}
.x2d_c00255{left:629.760000pt;}
.x2a_c00255{left:631.040000pt;}
.x26_c00255{left:634.880000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4203ccca275fbff15e27b20b.woff2')format("woff");}.ff1_c00256{font-family:ff1_c00256;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3d_c00256{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m2_c00256{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);}
.m24_c00256{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m7_c00256{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_c00256{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m40_c00256{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.ma_c00256{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m39_c00256{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00256{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m21_c00256{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m22_c00256{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m3_c00256{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m17_c00256{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m33_c00256{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00256{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00256{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00256{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00256{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m6_c00256{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00256{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m37_c00256{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m15_c00256{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m9_c00256{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m34_c00256{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mc_c00256{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m31_c00256{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00256{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.md_c00256{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m27_c00256{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mb_c00256{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m42_c00256{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);}
.m23_c00256{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.mf_c00256{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m1_c00256{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m4_c00256{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m0_c00256{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);}
.m30_c00256{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00256{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);}
.m1f_c00256{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);}
.me_c00256{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m38_c00256{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);}
.m2d_c00256{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m11_c00256{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);}
.m36_c00256{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m5_c00256{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);}
.m10_c00256{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);}
.m44_c00256{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00256{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m35_c00256{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00256{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00256{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);}
.m43_c00256{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m18_c00256{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m32_c00256{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00256{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m25_c00256{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m14_c00256{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m28_c00256{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m41_c00256{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00256{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m20_c00256{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00256{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m13_c00256{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);}
.m16_c00256{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m29_c00256{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m26_c00256{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00256{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m19_c00256{transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00256{transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);}
.v1_c00256{vertical-align:-8.640000px;}
.v0_c00256{vertical-align:0.000000px;}
.v2_c00256{vertical-align:11.520000px;}
.ls0_c00256{letter-spacing:0.000000px;}
.sc__c00256{text-shadow:none;}
.sc0_c00256{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00256{-webkit-text-stroke:0px transparent;}
.sc0_c00256{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00256{word-spacing:0.000000px;}
.ws0_c00256{word-spacing:56.131200px;}
.ws1_c00256{word-spacing:455.118000px;}
.fc0_c00256{color:transparent;}
.fsd_c00256{font-size:31.680000px;}
.fsb_c00256{font-size:34.560000px;}
.fsa_c00256{font-size:43.200000px;}
.fs8_c00256{font-size:46.080000px;}
.fs4_c00256{font-size:48.960000px;}
.fs7_c00256{font-size:51.840000px;}
.fs5_c00256{font-size:54.720000px;}
.fs6_c00256{font-size:57.600000px;}
.fs9_c00256{font-size:60.480000px;}
.fs1_c00256{font-size:63.360000px;}
.fsc_c00256{font-size:69.120000px;}
.fs3_c00256{font-size:72.000000px;}
.fs2_c00256{font-size:74.880000px;}
.fs0_c00256{font-size:77.760000px;}
.y0_c00256{bottom:0.000000px;}
.y5f_c00256{bottom:69.120000px;}
.y61_c00256{bottom:69.840000px;}
.y60_c00256{bottom:70.560000px;}
.y63_c00256{bottom:71.280000px;}
.y62_c00256{bottom:72.720000px;}
.y5e_c00256{bottom:74.160000px;}
.y57_c00256{bottom:113.040000px;}
.y5b_c00256{bottom:113.760000px;}
.y59_c00256{bottom:114.480000px;}
.y58_c00256{bottom:116.640000px;}
.y5a_c00256{bottom:117.360000px;}
.y56_c00256{bottom:118.080000px;}
.y5d_c00256{bottom:118.800000px;}
.y5c_c00256{bottom:119.520000px;}
.y54_c00256{bottom:159.840000px;}
.y55_c00256{bottom:160.560000px;}
.y4f_c00256{bottom:211.680000px;}
.y51_c00256{bottom:213.840000px;}
.y4e_c00256{bottom:214.560000px;}
.y53_c00256{bottom:215.280000px;}
.y52_c00256{bottom:216.720000px;}
.y4d_c00256{bottom:254.880000px;}
.y50_c00256{bottom:257.040000px;}
.y4c_c00256{bottom:258.480000px;}
.y4b_c00256{bottom:300.960000px;}
.y4a_c00256{bottom:304.560000px;}
.y46_c00256{bottom:352.800000px;}
.y47_c00256{bottom:353.520000px;}
.y48_c00256{bottom:355.680000px;}
.y45_c00256{bottom:356.400000px;}
.y49_c00256{bottom:357.840000px;}
.y43_c00256{bottom:398.160000px;}
.y44_c00256{bottom:398.880000px;}
.y42_c00256{bottom:401.040000px;}
.y3e_c00256{bottom:450.000000px;}
.y41_c00256{bottom:450.720000px;}
.y3f_c00256{bottom:451.440000px;}
.y40_c00256{bottom:452.160000px;}
.y3d_c00256{bottom:453.600000px;}
.y3a_c00256{bottom:493.200000px;}
.y3b_c00256{bottom:494.640000px;}
.y38_c00256{bottom:495.360000px;}
.y37_c00256{bottom:496.080000px;}
.y39_c00256{bottom:496.800000px;}
.y3c_c00256{bottom:497.520000px;}
.y36_c00256{bottom:538.560000px;}
.y35_c00256{bottom:539.280000px;}
.y34_c00256{bottom:542.160000px;}
.y30_c00256{bottom:590.400000px;}
.y32_c00256{bottom:591.840000px;}
.y2f_c00256{bottom:592.560000px;}
.y31_c00256{bottom:593.280000px;}
.y33_c00256{bottom:594.000000px;}
.y2e_c00256{bottom:634.320000px;}
.y2c_c00256{bottom:635.040000px;}
.y2d_c00256{bottom:637.920000px;}
.y29_c00256{bottom:666.720000px;}
.y28_c00256{bottom:667.440000px;}
.y2b_c00256{bottom:669.600000px;}
.y2a_c00256{bottom:670.320000px;}
.y26_c00256{bottom:711.360000px;}
.y27_c00256{bottom:713.520000px;}
.y25_c00256{bottom:714.240000px;}
.y23_c00256{bottom:764.640000px;}
.y22_c00256{bottom:765.360000px;}
.y1e_c00256{bottom:797.040000px;}
.y24_c00256{bottom:797.760000px;}
.y1d_c00256{bottom:798.480000px;}
.y21_c00256{bottom:799.200000px;}
.y20_c00256{bottom:799.920000px;}
.y1f_c00256{bottom:800.640000px;}
.y1b_c00256{bottom:839.520000px;}
.y17_c00256{bottom:840.960000px;}
.y18_c00256{bottom:841.680000px;}
.y1a_c00256{bottom:843.120000px;}
.y19_c00256{bottom:843.840000px;}
.y13_c00256{bottom:872.640000px;}
.y1c_c00256{bottom:873.360000px;}
.y12_c00256{bottom:874.080000px;}
.y16_c00256{bottom:874.800000px;}
.y15_c00256{bottom:875.520000px;}
.y14_c00256{bottom:876.960000px;}
.y11_c00256{bottom:907.920000px;}
.yd_c00256{bottom:915.120000px;}
.yf_c00256{bottom:915.840000px;}
.ye_c00256{bottom:916.560000px;}
.yc_c00256{bottom:917.280000px;}
.y10_c00256{bottom:919.440000px;}
.yb_c00256{bottom:961.200000px;}
.ya_c00256{bottom:962.640000px;}
.y7_c00256{bottom:1012.320000px;}
.y6_c00256{bottom:1013.040000px;}
.y3_c00256{bottom:1054.800000px;}
.y4_c00256{bottom:1055.520000px;}
.y2_c00256{bottom:1056.240000px;}
.y8_c00256{bottom:1056.960000px;}
.y9_c00256{bottom:1058.400000px;}
.y5_c00256{bottom:1059.120000px;}
.y1_c00256{bottom:1103.760000px;}
.hf_c00256{height:28.508906px;}
.hd_c00256{height:31.100625px;}
.hc_c00256{height:38.875781px;}
.ha_c00256{height:41.467500px;}
.h6_c00256{height:44.059219px;}
.h9_c00256{height:46.650937px;}
.h7_c00256{height:49.242656px;}
.h8_c00256{height:51.834375px;}
.hb_c00256{height:54.426094px;}
.h3_c00256{height:57.017812px;}
.he_c00256{height:62.201250px;}
.h5_c00256{height:64.792969px;}
.h10_c00256{height:65.946094px;}
.h4_c00256{height:67.384687px;}
.h2_c00256{height:69.976406px;}
.h0_c00256{height:1157.760000px;}
.h1_c00256{height:1158.000000px;}
.w1_c00256{width:783.000000px;}
.w0_c00256{width:783.360000px;}
.x0_c00256{left:0.000000px;}
.x2_c00256{left:80.640000px;}
.x23_c00256{left:82.080000px;}
.x32_c00256{left:83.520000px;}
.xc_c00256{left:132.480000px;}
.x2c_c00256{left:133.920000px;}
.x3_c00256{left:143.280000px;}
.x22_c00256{left:152.640000px;}
.x19_c00256{left:154.080000px;}
.x7_c00256{left:155.520000px;}
.xd_c00256{left:166.320000px;}
.x2d_c00256{left:177.120000px;}
.xe_c00256{left:187.200000px;}
.x1a_c00256{left:208.080000px;}
.x4_c00256{left:231.120000px;}
.xf_c00256{left:239.760000px;}
.x24_c00256{left:241.200000px;}
.x14_c00256{left:252.000000px;}
.x1b_c00256{left:262.080000px;}
.x30_c00256{left:272.880000px;}
.x15_c00256{left:284.400000px;}
.x25_c00256{left:295.920000px;}
.x16_c00256{left:305.280000px;}
.x1c_c00256{left:306.720000px;}
.x26_c00256{left:339.120000px;}
.x10_c00256{left:349.920000px;}
.x2a_c00256{left:371.520000px;}
.x5_c00256{left:380.880000px;}
.x11_c00256{left:391.680000px;}
.x2b_c00256{left:393.120000px;}
.x1d_c00256{left:414.720000px;}
.x6_c00256{left:425.520000px;}
.x1f_c00256{left:436.320000px;}
.x12_c00256{left:446.400000px;}
.x27_c00256{left:457.920000px;}
.x17_c00256{left:468.720000px;}
.x20_c00256{left:490.320000px;}
.x28_c00256{left:511.920000px;}
.x18_c00256{left:522.000000px;}
.x21_c00256{left:532.800000px;}
.x29_c00256{left:554.400000px;}
.x13_c00256{left:565.920000px;}
.x8_c00256{left:577.440000px;}
.x33_c00256{left:596.880000px;}
.x2e_c00256{left:598.320000px;}
.x9_c00256{left:630.720000px;}
.x31_c00256{left:662.400000px;}
.xa_c00256{left:663.840000px;}
.x1e_c00256{left:695.520000px;}
.x1_c00256{left:699.840000px;}
.x34_c00256{left:704.160000px;}
.xb_c00256{left:706.320000px;}
.x2f_c00256{left:725.760000px;}
.x35_c00256{left:727.200000px;}
@media print{
.v1_c00256{vertical-align:-7.680000pt;}
.v0_c00256{vertical-align:0.000000pt;}
.v2_c00256{vertical-align:10.240000pt;}
.ls0_c00256{letter-spacing:0.000000pt;}
.ws2_c00256{word-spacing:0.000000pt;}
.ws0_c00256{word-spacing:49.894400pt;}
.ws1_c00256{word-spacing:404.549333pt;}
.fsd_c00256{font-size:28.160000pt;}
.fsb_c00256{font-size:30.720000pt;}
.fsa_c00256{font-size:38.400000pt;}
.fs8_c00256{font-size:40.960000pt;}
.fs4_c00256{font-size:43.520000pt;}
.fs7_c00256{font-size:46.080000pt;}
.fs5_c00256{font-size:48.640000pt;}
.fs6_c00256{font-size:51.200000pt;}
.fs9_c00256{font-size:53.760000pt;}
.fs1_c00256{font-size:56.320000pt;}
.fsc_c00256{font-size:61.440000pt;}
.fs3_c00256{font-size:64.000000pt;}
.fs2_c00256{font-size:66.560000pt;}
.fs0_c00256{font-size:69.120000pt;}
.y0_c00256{bottom:0.000000pt;}
.y5f_c00256{bottom:61.440000pt;}
.y61_c00256{bottom:62.080000pt;}
.y60_c00256{bottom:62.720000pt;}
.y63_c00256{bottom:63.360000pt;}
.y62_c00256{bottom:64.640000pt;}
.y5e_c00256{bottom:65.920000pt;}
.y57_c00256{bottom:100.480000pt;}
.y5b_c00256{bottom:101.120000pt;}
.y59_c00256{bottom:101.760000pt;}
.y58_c00256{bottom:103.680000pt;}
.y5a_c00256{bottom:104.320000pt;}
.y56_c00256{bottom:104.960000pt;}
.y5d_c00256{bottom:105.600000pt;}
.y5c_c00256{bottom:106.240000pt;}
.y54_c00256{bottom:142.080000pt;}
.y55_c00256{bottom:142.720000pt;}
.y4f_c00256{bottom:188.160000pt;}
.y51_c00256{bottom:190.080000pt;}
.y4e_c00256{bottom:190.720000pt;}
.y53_c00256{bottom:191.360000pt;}
.y52_c00256{bottom:192.640000pt;}
.y4d_c00256{bottom:226.560000pt;}
.y50_c00256{bottom:228.480000pt;}
.y4c_c00256{bottom:229.760000pt;}
.y4b_c00256{bottom:267.520000pt;}
.y4a_c00256{bottom:270.720000pt;}
.y46_c00256{bottom:313.600000pt;}
.y47_c00256{bottom:314.240000pt;}
.y48_c00256{bottom:316.160000pt;}
.y45_c00256{bottom:316.800000pt;}
.y49_c00256{bottom:318.080000pt;}
.y43_c00256{bottom:353.920000pt;}
.y44_c00256{bottom:354.560000pt;}
.y42_c00256{bottom:356.480000pt;}
.y3e_c00256{bottom:400.000000pt;}
.y41_c00256{bottom:400.640000pt;}
.y3f_c00256{bottom:401.280000pt;}
.y40_c00256{bottom:401.920000pt;}
.y3d_c00256{bottom:403.200000pt;}
.y3a_c00256{bottom:438.400000pt;}
.y3b_c00256{bottom:439.680000pt;}
.y38_c00256{bottom:440.320000pt;}
.y37_c00256{bottom:440.960000pt;}
.y39_c00256{bottom:441.600000pt;}
.y3c_c00256{bottom:442.240000pt;}
.y36_c00256{bottom:478.720000pt;}
.y35_c00256{bottom:479.360000pt;}
.y34_c00256{bottom:481.920000pt;}
.y30_c00256{bottom:524.800000pt;}
.y32_c00256{bottom:526.080000pt;}
.y2f_c00256{bottom:526.720000pt;}
.y31_c00256{bottom:527.360000pt;}
.y33_c00256{bottom:528.000000pt;}
.y2e_c00256{bottom:563.840000pt;}
.y2c_c00256{bottom:564.480000pt;}
.y2d_c00256{bottom:567.040000pt;}
.y29_c00256{bottom:592.640000pt;}
.y28_c00256{bottom:593.280000pt;}
.y2b_c00256{bottom:595.200000pt;}
.y2a_c00256{bottom:595.840000pt;}
.y26_c00256{bottom:632.320000pt;}
.y27_c00256{bottom:634.240000pt;}
.y25_c00256{bottom:634.880000pt;}
.y23_c00256{bottom:679.680000pt;}
.y22_c00256{bottom:680.320000pt;}
.y1e_c00256{bottom:708.480000pt;}
.y24_c00256{bottom:709.120000pt;}
.y1d_c00256{bottom:709.760000pt;}
.y21_c00256{bottom:710.400000pt;}
.y20_c00256{bottom:711.040000pt;}
.y1f_c00256{bottom:711.680000pt;}
.y1b_c00256{bottom:746.240000pt;}
.y17_c00256{bottom:747.520000pt;}
.y18_c00256{bottom:748.160000pt;}
.y1a_c00256{bottom:749.440000pt;}
.y19_c00256{bottom:750.080000pt;}
.y13_c00256{bottom:775.680000pt;}
.y1c_c00256{bottom:776.320000pt;}
.y12_c00256{bottom:776.960000pt;}
.y16_c00256{bottom:777.600000pt;}
.y15_c00256{bottom:778.240000pt;}
.y14_c00256{bottom:779.520000pt;}
.y11_c00256{bottom:807.040000pt;}
.yd_c00256{bottom:813.440000pt;}
.yf_c00256{bottom:814.080000pt;}
.ye_c00256{bottom:814.720000pt;}
.yc_c00256{bottom:815.360000pt;}
.y10_c00256{bottom:817.280000pt;}
.yb_c00256{bottom:854.400000pt;}
.ya_c00256{bottom:855.680000pt;}
.y7_c00256{bottom:899.840000pt;}
.y6_c00256{bottom:900.480000pt;}
.y3_c00256{bottom:937.600000pt;}
.y4_c00256{bottom:938.240000pt;}
.y2_c00256{bottom:938.880000pt;}
.y8_c00256{bottom:939.520000pt;}
.y9_c00256{bottom:940.800000pt;}
.y5_c00256{bottom:941.440000pt;}
.y1_c00256{bottom:981.120000pt;}
.hf_c00256{height:25.341250pt;}
.hd_c00256{height:27.645000pt;}
.hc_c00256{height:34.556250pt;}
.ha_c00256{height:36.860000pt;}
.h6_c00256{height:39.163750pt;}
.h9_c00256{height:41.467500pt;}
.h7_c00256{height:43.771250pt;}
.h8_c00256{height:46.075000pt;}
.hb_c00256{height:48.378750pt;}
.h3_c00256{height:50.682500pt;}
.he_c00256{height:55.290000pt;}
.h5_c00256{height:57.593750pt;}
.h10_c00256{height:58.618750pt;}
.h4_c00256{height:59.897500pt;}
.h2_c00256{height:62.201250pt;}
.h0_c00256{height:1029.120000pt;}
.h1_c00256{height:1029.333333pt;}
.w1_c00256{width:696.000000pt;}
.w0_c00256{width:696.320000pt;}
.x0_c00256{left:0.000000pt;}
.x2_c00256{left:71.680000pt;}
.x23_c00256{left:72.960000pt;}
.x32_c00256{left:74.240000pt;}
.xc_c00256{left:117.760000pt;}
.x2c_c00256{left:119.040000pt;}
.x3_c00256{left:127.360000pt;}
.x22_c00256{left:135.680000pt;}
.x19_c00256{left:136.960000pt;}
.x7_c00256{left:138.240000pt;}
.xd_c00256{left:147.840000pt;}
.x2d_c00256{left:157.440000pt;}
.xe_c00256{left:166.400000pt;}
.x1a_c00256{left:184.960000pt;}
.x4_c00256{left:205.440000pt;}
.xf_c00256{left:213.120000pt;}
.x24_c00256{left:214.400000pt;}
.x14_c00256{left:224.000000pt;}
.x1b_c00256{left:232.960000pt;}
.x30_c00256{left:242.560000pt;}
.x15_c00256{left:252.800000pt;}
.x25_c00256{left:263.040000pt;}
.x16_c00256{left:271.360000pt;}
.x1c_c00256{left:272.640000pt;}
.x26_c00256{left:301.440000pt;}
.x10_c00256{left:311.040000pt;}
.x2a_c00256{left:330.240000pt;}
.x5_c00256{left:338.560000pt;}
.x11_c00256{left:348.160000pt;}
.x2b_c00256{left:349.440000pt;}
.x1d_c00256{left:368.640000pt;}
.x6_c00256{left:378.240000pt;}
.x1f_c00256{left:387.840000pt;}
.x12_c00256{left:396.800000pt;}
.x27_c00256{left:407.040000pt;}
.x17_c00256{left:416.640000pt;}
.x20_c00256{left:435.840000pt;}
.x28_c00256{left:455.040000pt;}
.x18_c00256{left:464.000000pt;}
.x21_c00256{left:473.600000pt;}
.x29_c00256{left:492.800000pt;}
.x13_c00256{left:503.040000pt;}
.x8_c00256{left:513.280000pt;}
.x33_c00256{left:530.560000pt;}
.x2e_c00256{left:531.840000pt;}
.x9_c00256{left:560.640000pt;}
.x31_c00256{left:588.800000pt;}
.xa_c00256{left:590.080000pt;}
.x1e_c00256{left:618.240000pt;}
.x1_c00256{left:622.080000pt;}
.x34_c00256{left:625.920000pt;}
.xb_c00256{left:627.840000pt;}
.x2f_c00256{left:645.120000pt;}
.x35_c00256{left:646.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8fa5d35733c173cab027dff0.woff2')format("woff");}.ff1_c00257{font-family:ff1_c00257;line-height:1.109863;font-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_c00257{transform:matrix(0.214800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214800,0.000000,0.000000,0.250000,0,0);}
.m47_c00257{transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);}
.m44_c00257{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m46_c00257{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m32_c00257{transform:matrix(0.245850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245850,0.000000,0.000000,0.250000,0,0);}
.m34_c00257{transform:matrix(0.248825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248825,0.000000,0.000000,0.250000,0,0);}
.m3f_c00257{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m37_c00257{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);}
.m49_c00257{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);}
.m2e_c00257{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m16_c00257{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m3_c00257{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m18_c00257{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_c00257{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);}
.m27_c00257{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m2_c00257{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_c00257{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m30_c00257{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.ma_c00257{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);}
.m1e_c00257{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m6_c00257{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m7_c00257{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00257{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00257{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m15_c00257{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m8_c00257{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m17_c00257{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m33_c00257{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.me_c00257{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00257{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m19_c00257{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m28_c00257{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m0_c00257{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m9_c00257{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_c00257{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m42_c00257{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m21_c00257{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00257{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00257{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m11_c00257{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1_c00257{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m14_c00257{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);}
.m36_c00257{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00257{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m43_c00257{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);}
.m13_c00257{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);}
.m3a_c00257{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m23_c00257{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);}
.m35_c00257{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);}
.m29_c00257{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m22_c00257{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m31_c00257{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);}
.m3c_c00257{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.mb_c00257{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);}
.m1a_c00257{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m12_c00257{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.mc_c00257{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_c00257{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00257{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m20_c00257{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.md_c00257{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);}
.m26_c00257{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m41_c00257{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);}
.m39_c00257{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00257{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m5_c00257{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);}
.m40_c00257{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);}
.m38_c00257{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00257{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m10_c00257{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m4_c00257{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m45_c00257{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m48_c00257{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);}
.m24_c00257{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.v1_c00257{vertical-align:-5.760000px;}
.v0_c00257{vertical-align:0.000000px;}
.ls0_c00257{letter-spacing:0.000000px;}
.sc__c00257{text-shadow:none;}
.sc0_c00257{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00257{-webkit-text-stroke:0px transparent;}
.sc0_c00257{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00257{word-spacing:0.000000px;}
.ws0_c00257{word-spacing:53.162400px;}
.fc0_c00257{color:transparent;}
.fs7_c00257{font-size:31.680000px;}
.fs10_c00257{font-size:40.320000px;}
.fsc_c00257{font-size:43.200000px;}
.fs8_c00257{font-size:48.960000px;}
.fs4_c00257{font-size:51.840000px;}
.fs6_c00257{font-size:54.720000px;}
.fs5_c00257{font-size:57.600000px;}
.fs1_c00257{font-size:60.480000px;}
.fs9_c00257{font-size:63.360000px;}
.fsd_c00257{font-size:66.240000px;}
.fsa_c00257{font-size:69.120000px;}
.fse_c00257{font-size:72.000000px;}
.fs2_c00257{font-size:74.880000px;}
.fs0_c00257{font-size:77.760000px;}
.fsb_c00257{font-size:83.520000px;}
.fsf_c00257{font-size:86.400000px;}
.fs3_c00257{font-size:100.800000px;}
.y0_c00257{bottom:0.000000px;}
.y4e_c00257{bottom:98.640000px;}
.y51_c00257{bottom:99.360000px;}
.y50_c00257{bottom:100.800000px;}
.y4f_c00257{bottom:101.520000px;}
.y69_c00257{bottom:102.240000px;}
.y4d_c00257{bottom:102.960000px;}
.y4c_c00257{bottom:104.400000px;}
.y47_c00257{bottom:141.840000px;}
.y4b_c00257{bottom:142.560000px;}
.y48_c00257{bottom:143.280000px;}
.y4a_c00257{bottom:144.720000px;}
.y68_c00257{bottom:145.440000px;}
.y49_c00257{bottom:146.160000px;}
.y46_c00257{bottom:146.880000px;}
.y45_c00257{bottom:185.760000px;}
.y42_c00257{bottom:188.640000px;}
.y44_c00257{bottom:189.360000px;}
.y43_c00257{bottom:190.080000px;}
.y67_c00257{bottom:191.520000px;}
.y41_c00257{bottom:228.960000px;}
.y66_c00257{bottom:230.400000px;}
.y65_c00257{bottom:231.840000px;}
.y3f_c00257{bottom:232.560000px;}
.y40_c00257{bottom:233.280000px;}
.y3e_c00257{bottom:270.000000px;}
.y3d_c00257{bottom:272.880000px;}
.y63_c00257{bottom:274.320000px;}
.y3a_c00257{bottom:275.040000px;}
.y3c_c00257{bottom:275.760000px;}
.y3b_c00257{bottom:276.480000px;}
.y64_c00257{bottom:277.200000px;}
.y39_c00257{bottom:314.640000px;}
.y61_c00257{bottom:316.800000px;}
.y38_c00257{bottom:318.240000px;}
.y62_c00257{bottom:319.680000px;}
.y37_c00257{bottom:358.560000px;}
.y60_c00257{bottom:360.720000px;}
.y35_c00257{bottom:361.440000px;}
.y36_c00257{bottom:362.160000px;}
.y34_c00257{bottom:401.760000px;}
.y33_c00257{bottom:433.440000px;}
.y31_c00257{bottom:434.160000px;}
.y32_c00257{bottom:434.880000px;}
.y5f_c00257{bottom:436.320000px;}
.y2f_c00257{bottom:437.040000px;}
.y30_c00257{bottom:438.480000px;}
.y2c_c00257{bottom:477.360000px;}
.y5e_c00257{bottom:478.800000px;}
.y2b_c00257{bottom:479.520000px;}
.y2e_c00257{bottom:480.960000px;}
.y2d_c00257{bottom:481.680000px;}
.y28_c00257{bottom:520.560000px;}
.y2a_c00257{bottom:521.280000px;}
.y29_c00257{bottom:522.000000px;}
.y26_c00257{bottom:522.720000px;}
.y27_c00257{bottom:524.880000px;}
.y25_c00257{bottom:563.760000px;}
.y23_c00257{bottom:565.200000px;}
.y5d_c00257{bottom:565.920000px;}
.y24_c00257{bottom:567.360000px;}
.y22_c00257{bottom:606.960000px;}
.y5c_c00257{bottom:608.400000px;}
.y1e_c00257{bottom:609.120000px;}
.y21_c00257{bottom:609.840000px;}
.y1f_c00257{bottom:610.560000px;}
.y20_c00257{bottom:611.280000px;}
.y1d_c00257{bottom:650.160000px;}
.y1c_c00257{bottom:650.880000px;}
.y1a_c00257{bottom:651.600000px;}
.y5a_c00257{bottom:652.320000px;}
.y5b_c00257{bottom:653.040000px;}
.y1b_c00257{bottom:653.760000px;}
.y19_c00257{bottom:693.360000px;}
.y58_c00257{bottom:694.080000px;}
.y17_c00257{bottom:694.800000px;}
.y18_c00257{bottom:696.240000px;}
.y59_c00257{bottom:696.960000px;}
.y16_c00257{bottom:735.840000px;}
.y56_c00257{bottom:737.280000px;}
.y15_c00257{bottom:738.000000px;}
.y57_c00257{bottom:738.720000px;}
.y13_c00257{bottom:778.320000px;}
.y12_c00257{bottom:779.760000px;}
.y54_c00257{bottom:780.480000px;}
.y55_c00257{bottom:781.200000px;}
.y14_c00257{bottom:782.640000px;}
.y11_c00257{bottom:821.520000px;}
.y10_c00257{bottom:822.960000px;}
.y53_c00257{bottom:823.680000px;}
.y52_c00257{bottom:824.400000px;}
.yd_c00257{bottom:920.160000px;}
.yc_c00257{bottom:921.600000px;}
.yf_c00257{bottom:922.320000px;}
.ye_c00257{bottom:923.040000px;}
.y9_c00257{bottom:972.720000px;}
.yb_c00257{bottom:974.160000px;}
.y8_c00257{bottom:976.320000px;}
.ya_c00257{bottom:979.200000px;}
.y5_c00257{bottom:997.200000px;}
.y4_c00257{bottom:1005.120000px;}
.y2_c00257{bottom:1005.840000px;}
.y3_c00257{bottom:1006.560000px;}
.y7_c00257{bottom:1007.280000px;}
.y6_c00257{bottom:1009.440000px;}
.y1_c00257{bottom:1102.320000px;}
.h9_c00257{height:28.508906px;}
.h12_c00257{height:36.284062px;}
.he_c00257{height:38.875781px;}
.ha_c00257{height:44.059219px;}
.h6_c00257{height:46.650937px;}
.h8_c00257{height:49.242656px;}
.h7_c00257{height:51.834375px;}
.h3_c00257{height:54.426094px;}
.hb_c00257{height:57.017812px;}
.hf_c00257{height:59.609531px;}
.hc_c00257{height:62.201250px;}
.h10_c00257{height:64.792969px;}
.h4_c00257{height:67.384687px;}
.h2_c00257{height:69.976406px;}
.hd_c00257{height:75.159844px;}
.h11_c00257{height:77.751563px;}
.h5_c00257{height:90.710156px;}
.h0_c00257{height:1153.440000px;}
.h1_c00257{height:1153.500000px;}
.w0_c00257{width:776.880000px;}
.w1_c00257{width:777.000000px;}
.x0_c00257{left:0.000000px;}
.x2_c00257{left:71.280000px;}
.x16_c00257{left:72.720000px;}
.x21_c00257{left:74.160000px;}
.x24_c00257{left:75.600000px;}
.x27_c00257{left:116.640000px;}
.x10_c00257{left:123.120000px;}
.x3_c00257{left:145.440000px;}
.x17_c00257{left:146.880000px;}
.x1b_c00257{left:187.920000px;}
.xa_c00257{left:189.360000px;}
.x4_c00257{left:198.720000px;}
.x1d_c00257{left:210.960000px;}
.x11_c00257{left:221.040000px;}
.x1a_c00257{left:231.840000px;}
.x1e_c00257{left:243.360000px;}
.x12_c00257{left:275.040000px;}
.x1c_c00257{left:286.560000px;}
.xb_c00257{left:296.640000px;}
.x13_c00257{left:318.240000px;}
.x23_c00257{left:319.680000px;}
.x18_c00257{left:329.040000px;}
.x1f_c00257{left:330.480000px;}
.x22_c00257{left:349.920000px;}
.x25_c00257{left:372.240000px;}
.x28_c00257{left:373.680000px;}
.x5_c00257{left:382.320000px;}
.x19_c00257{left:384.480000px;}
.x14_c00257{left:394.560000px;}
.xc_c00257{left:405.360000px;}
.xd_c00257{left:416.160000px;}
.x6_c00257{left:437.040000px;}
.x20_c00257{left:449.280000px;}
.x26_c00257{left:470.880000px;}
.xe_c00257{left:480.960000px;}
.x15_c00257{left:503.280000px;}
.xf_c00257{left:534.960000px;}
.x2d_c00257{left:588.240000px;}
.x2e_c00257{left:589.680000px;}
.x2b_c00257{left:599.760000px;}
.x2f_c00257{left:620.640000px;}
.x7_c00257{left:622.080000px;}
.x8_c00257{left:654.480000px;}
.x2a_c00257{left:686.880000px;}
.x9_c00257{left:696.240000px;}
.x29_c00257{left:697.680000px;}
.x1_c00257{left:702.000000px;}
.x2c_c00257{left:717.120000px;}
@media print{
.v1_c00257{vertical-align:-5.120000pt;}
.v0_c00257{vertical-align:0.000000pt;}
.ls0_c00257{letter-spacing:0.000000pt;}
.ws1_c00257{word-spacing:0.000000pt;}
.ws0_c00257{word-spacing:47.255467pt;}
.fs7_c00257{font-size:28.160000pt;}
.fs10_c00257{font-size:35.840000pt;}
.fsc_c00257{font-size:38.400000pt;}
.fs8_c00257{font-size:43.520000pt;}
.fs4_c00257{font-size:46.080000pt;}
.fs6_c00257{font-size:48.640000pt;}
.fs5_c00257{font-size:51.200000pt;}
.fs1_c00257{font-size:53.760000pt;}
.fs9_c00257{font-size:56.320000pt;}
.fsd_c00257{font-size:58.880000pt;}
.fsa_c00257{font-size:61.440000pt;}
.fse_c00257{font-size:64.000000pt;}
.fs2_c00257{font-size:66.560000pt;}
.fs0_c00257{font-size:69.120000pt;}
.fsb_c00257{font-size:74.240000pt;}
.fsf_c00257{font-size:76.800000pt;}
.fs3_c00257{font-size:89.600000pt;}
.y0_c00257{bottom:0.000000pt;}
.y4e_c00257{bottom:87.680000pt;}
.y51_c00257{bottom:88.320000pt;}
.y50_c00257{bottom:89.600000pt;}
.y4f_c00257{bottom:90.240000pt;}
.y69_c00257{bottom:90.880000pt;}
.y4d_c00257{bottom:91.520000pt;}
.y4c_c00257{bottom:92.800000pt;}
.y47_c00257{bottom:126.080000pt;}
.y4b_c00257{bottom:126.720000pt;}
.y48_c00257{bottom:127.360000pt;}
.y4a_c00257{bottom:128.640000pt;}
.y68_c00257{bottom:129.280000pt;}
.y49_c00257{bottom:129.920000pt;}
.y46_c00257{bottom:130.560000pt;}
.y45_c00257{bottom:165.120000pt;}
.y42_c00257{bottom:167.680000pt;}
.y44_c00257{bottom:168.320000pt;}
.y43_c00257{bottom:168.960000pt;}
.y67_c00257{bottom:170.240000pt;}
.y41_c00257{bottom:203.520000pt;}
.y66_c00257{bottom:204.800000pt;}
.y65_c00257{bottom:206.080000pt;}
.y3f_c00257{bottom:206.720000pt;}
.y40_c00257{bottom:207.360000pt;}
.y3e_c00257{bottom:240.000000pt;}
.y3d_c00257{bottom:242.560000pt;}
.y63_c00257{bottom:243.840000pt;}
.y3a_c00257{bottom:244.480000pt;}
.y3c_c00257{bottom:245.120000pt;}
.y3b_c00257{bottom:245.760000pt;}
.y64_c00257{bottom:246.400000pt;}
.y39_c00257{bottom:279.680000pt;}
.y61_c00257{bottom:281.600000pt;}
.y38_c00257{bottom:282.880000pt;}
.y62_c00257{bottom:284.160000pt;}
.y37_c00257{bottom:318.720000pt;}
.y60_c00257{bottom:320.640000pt;}
.y35_c00257{bottom:321.280000pt;}
.y36_c00257{bottom:321.920000pt;}
.y34_c00257{bottom:357.120000pt;}
.y33_c00257{bottom:385.280000pt;}
.y31_c00257{bottom:385.920000pt;}
.y32_c00257{bottom:386.560000pt;}
.y5f_c00257{bottom:387.840000pt;}
.y2f_c00257{bottom:388.480000pt;}
.y30_c00257{bottom:389.760000pt;}
.y2c_c00257{bottom:424.320000pt;}
.y5e_c00257{bottom:425.600000pt;}
.y2b_c00257{bottom:426.240000pt;}
.y2e_c00257{bottom:427.520000pt;}
.y2d_c00257{bottom:428.160000pt;}
.y28_c00257{bottom:462.720000pt;}
.y2a_c00257{bottom:463.360000pt;}
.y29_c00257{bottom:464.000000pt;}
.y26_c00257{bottom:464.640000pt;}
.y27_c00257{bottom:466.560000pt;}
.y25_c00257{bottom:501.120000pt;}
.y23_c00257{bottom:502.400000pt;}
.y5d_c00257{bottom:503.040000pt;}
.y24_c00257{bottom:504.320000pt;}
.y22_c00257{bottom:539.520000pt;}
.y5c_c00257{bottom:540.800000pt;}
.y1e_c00257{bottom:541.440000pt;}
.y21_c00257{bottom:542.080000pt;}
.y1f_c00257{bottom:542.720000pt;}
.y20_c00257{bottom:543.360000pt;}
.y1d_c00257{bottom:577.920000pt;}
.y1c_c00257{bottom:578.560000pt;}
.y1a_c00257{bottom:579.200000pt;}
.y5a_c00257{bottom:579.840000pt;}
.y5b_c00257{bottom:580.480000pt;}
.y1b_c00257{bottom:581.120000pt;}
.y19_c00257{bottom:616.320000pt;}
.y58_c00257{bottom:616.960000pt;}
.y17_c00257{bottom:617.600000pt;}
.y18_c00257{bottom:618.880000pt;}
.y59_c00257{bottom:619.520000pt;}
.y16_c00257{bottom:654.080000pt;}
.y56_c00257{bottom:655.360000pt;}
.y15_c00257{bottom:656.000000pt;}
.y57_c00257{bottom:656.640000pt;}
.y13_c00257{bottom:691.840000pt;}
.y12_c00257{bottom:693.120000pt;}
.y54_c00257{bottom:693.760000pt;}
.y55_c00257{bottom:694.400000pt;}
.y14_c00257{bottom:695.680000pt;}
.y11_c00257{bottom:730.240000pt;}
.y10_c00257{bottom:731.520000pt;}
.y53_c00257{bottom:732.160000pt;}
.y52_c00257{bottom:732.800000pt;}
.yd_c00257{bottom:817.920000pt;}
.yc_c00257{bottom:819.200000pt;}
.yf_c00257{bottom:819.840000pt;}
.ye_c00257{bottom:820.480000pt;}
.y9_c00257{bottom:864.640000pt;}
.yb_c00257{bottom:865.920000pt;}
.y8_c00257{bottom:867.840000pt;}
.ya_c00257{bottom:870.400000pt;}
.y5_c00257{bottom:886.400000pt;}
.y4_c00257{bottom:893.440000pt;}
.y2_c00257{bottom:894.080000pt;}
.y3_c00257{bottom:894.720000pt;}
.y7_c00257{bottom:895.360000pt;}
.y6_c00257{bottom:897.280000pt;}
.y1_c00257{bottom:979.840000pt;}
.h9_c00257{height:25.341250pt;}
.h12_c00257{height:32.252500pt;}
.he_c00257{height:34.556250pt;}
.ha_c00257{height:39.163750pt;}
.h6_c00257{height:41.467500pt;}
.h8_c00257{height:43.771250pt;}
.h7_c00257{height:46.075000pt;}
.h3_c00257{height:48.378750pt;}
.hb_c00257{height:50.682500pt;}
.hf_c00257{height:52.986250pt;}
.hc_c00257{height:55.290000pt;}
.h10_c00257{height:57.593750pt;}
.h4_c00257{height:59.897500pt;}
.h2_c00257{height:62.201250pt;}
.hd_c00257{height:66.808750pt;}
.h11_c00257{height:69.112500pt;}
.h5_c00257{height:80.631250pt;}
.h0_c00257{height:1025.280000pt;}
.h1_c00257{height:1025.333333pt;}
.w0_c00257{width:690.560000pt;}
.w1_c00257{width:690.666667pt;}
.x0_c00257{left:0.000000pt;}
.x2_c00257{left:63.360000pt;}
.x16_c00257{left:64.640000pt;}
.x21_c00257{left:65.920000pt;}
.x24_c00257{left:67.200000pt;}
.x27_c00257{left:103.680000pt;}
.x10_c00257{left:109.440000pt;}
.x3_c00257{left:129.280000pt;}
.x17_c00257{left:130.560000pt;}
.x1b_c00257{left:167.040000pt;}
.xa_c00257{left:168.320000pt;}
.x4_c00257{left:176.640000pt;}
.x1d_c00257{left:187.520000pt;}
.x11_c00257{left:196.480000pt;}
.x1a_c00257{left:206.080000pt;}
.x1e_c00257{left:216.320000pt;}
.x12_c00257{left:244.480000pt;}
.x1c_c00257{left:254.720000pt;}
.xb_c00257{left:263.680000pt;}
.x13_c00257{left:282.880000pt;}
.x23_c00257{left:284.160000pt;}
.x18_c00257{left:292.480000pt;}
.x1f_c00257{left:293.760000pt;}
.x22_c00257{left:311.040000pt;}
.x25_c00257{left:330.880000pt;}
.x28_c00257{left:332.160000pt;}
.x5_c00257{left:339.840000pt;}
.x19_c00257{left:341.760000pt;}
.x14_c00257{left:350.720000pt;}
.xc_c00257{left:360.320000pt;}
.xd_c00257{left:369.920000pt;}
.x6_c00257{left:388.480000pt;}
.x20_c00257{left:399.360000pt;}
.x26_c00257{left:418.560000pt;}
.xe_c00257{left:427.520000pt;}
.x15_c00257{left:447.360000pt;}
.xf_c00257{left:475.520000pt;}
.x2d_c00257{left:522.880000pt;}
.x2e_c00257{left:524.160000pt;}
.x2b_c00257{left:533.120000pt;}
.x2f_c00257{left:551.680000pt;}
.x7_c00257{left:552.960000pt;}
.x8_c00257{left:581.760000pt;}
.x2a_c00257{left:610.560000pt;}
.x9_c00257{left:618.880000pt;}
.x29_c00257{left:620.160000pt;}
.x1_c00257{left:624.000000pt;}
.x2c_c00257{left:637.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1aec1d17f1aa5ddac786820f.woff2')format("woff");}.ff1_c00258{font-family:ff1_c00258;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m43_c00258{transform:matrix(0.220850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220850,0.000000,0.000000,0.250000,0,0);}
.m12_c00258{transform:matrix(0.241825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241825,0.000000,0.000000,0.250000,0,0);}
.m3a_c00258{transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);}
.m44_c00258{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m30_c00258{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m21_c00258{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m19_c00258{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mf_c00258{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00258{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m10_c00258{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);}
.m48_c00258{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m31_c00258{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);}
.m2f_c00258{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);}
.m3d_c00258{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_c00258{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m2_c00258{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m32_c00258{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m5_c00258{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.md_c00258{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);}
.m1e_c00258{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);}
.m34_c00258{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00258{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m8_c00258{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00258{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m35_c00258{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.ma_c00258{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00258{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00258{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m37_c00258{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m6_c00258{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m0_c00258{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.me_c00258{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m27_c00258{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);}
.m22_c00258{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mb_c00258{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m9_c00258{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);}
.m3b_c00258{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);}
.m28_c00258{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m24_c00258{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m17_c00258{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m45_c00258{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m1_c00258{transform:matrix(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);}
.m40_c00258{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m47_c00258{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_c00258{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m16_c00258{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_c00258{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.mc_c00258{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);}
.m20_c00258{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);}
.m1f_c00258{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m4_c00258{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);}
.m1a_c00258{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);}
.m18_c00258{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);}
.m42_c00258{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m3_c00258{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);}
.m36_c00258{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00258{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m46_c00258{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);}
.m7_c00258{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m13_c00258{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00258{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m38_c00258{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m29_c00258{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m23_c00258{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);}
.m2b_c00258{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m14_c00258{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);}
.m3c_c00258{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m25_c00258{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m11_c00258{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00258{transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);}
.m39_c00258{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m33_c00258{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00258{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.v2_c00258{vertical-align:-2.880000px;}
.v0_c00258{vertical-align:0.000000px;}
.v1_c00258{vertical-align:11.520000px;}
.ls0_c00258{letter-spacing:0.000000px;}
.sc__c00258{text-shadow:none;}
.sc0_c00258{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00258{-webkit-text-stroke:0px transparent;}
.sc0_c00258{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00258{word-spacing:-12.493200px;}
.ws2_c00258{word-spacing:0.000000px;}
.ws1_c00258{word-spacing:50.058000px;}
.fc0_c00258{color:transparent;}
.fsf_c00258{font-size:31.680000px;}
.fs3_c00258{font-size:34.560000px;}
.fsa_c00258{font-size:37.440000px;}
.fse_c00258{font-size:40.320000px;}
.fsd_c00258{font-size:46.080000px;}
.fs5_c00258{font-size:48.960000px;}
.fs1_c00258{font-size:51.840000px;}
.fs8_c00258{font-size:54.720000px;}
.fsc_c00258{font-size:57.600000px;}
.fsb_c00258{font-size:60.480000px;}
.fs7_c00258{font-size:63.360000px;}
.fs0_c00258{font-size:66.240000px;}
.fs9_c00258{font-size:69.120000px;}
.fs6_c00258{font-size:72.000000px;}
.fs4_c00258{font-size:74.880000px;}
.fs2_c00258{font-size:77.760000px;}
.y0_c00258{bottom:0.000000px;}
.y6c_c00258{bottom:114.480000px;}
.y6e_c00258{bottom:118.080000px;}
.y6d_c00258{bottom:118.800000px;}
.y6f_c00258{bottom:119.520000px;}
.y6b_c00258{bottom:120.960000px;}
.y69_c00258{bottom:157.680000px;}
.y6a_c00258{bottom:162.000000px;}
.y68_c00258{bottom:163.440000px;}
.y67_c00258{bottom:164.160000px;}
.y66_c00258{bottom:200.880000px;}
.y65_c00258{bottom:205.200000px;}
.y64_c00258{bottom:206.640000px;}
.y63_c00258{bottom:207.360000px;}
.y62_c00258{bottom:244.800000px;}
.y61_c00258{bottom:249.840000px;}
.y5d_c00258{bottom:277.200000px;}
.y5e_c00258{bottom:278.640000px;}
.y60_c00258{bottom:279.360000px;}
.y5f_c00258{bottom:280.800000px;}
.y5c_c00258{bottom:281.520000px;}
.y5a_c00258{bottom:282.240000px;}
.y5b_c00258{bottom:282.960000px;}
.y57_c00258{bottom:320.400000px;}
.y58_c00258{bottom:324.000000px;}
.y55_c00258{bottom:324.720000px;}
.y56_c00258{bottom:325.440000px;}
.y59_c00258{bottom:326.160000px;}
.y53_c00258{bottom:363.600000px;}
.y54_c00258{bottom:365.760000px;}
.y50_c00258{bottom:367.200000px;}
.y51_c00258{bottom:367.920000px;}
.y52_c00258{bottom:368.640000px;}
.y3a_c00258{bottom:406.800000px;}
.y38_c00258{bottom:408.960000px;}
.y39_c00258{bottom:411.120000px;}
.y37_c00258{bottom:439.200000px;}
.y4f_c00258{bottom:441.360000px;}
.y34_c00258{bottom:442.080000px;}
.y36_c00258{bottom:443.520000px;}
.y35_c00258{bottom:444.240000px;}
.y33_c00258{bottom:482.400000px;}
.y4e_c00258{bottom:484.560000px;}
.y32_c00258{bottom:485.280000px;}
.y30_c00258{bottom:486.000000px;}
.y31_c00258{bottom:487.440000px;}
.y2f_c00258{bottom:526.320000px;}
.y4d_c00258{bottom:527.760000px;}
.y2c_c00258{bottom:528.480000px;}
.y2e_c00258{bottom:529.920000px;}
.y2d_c00258{bottom:530.640000px;}
.y2a_c00258{bottom:568.800000px;}
.y28_c00258{bottom:570.960000px;}
.y2b_c00258{bottom:572.400000px;}
.y29_c00258{bottom:573.120000px;}
.y27_c00258{bottom:612.720000px;}
.y4c_c00258{bottom:613.440000px;}
.y25_c00258{bottom:614.880000px;}
.y26_c00258{bottom:616.320000px;}
.y23_c00258{bottom:655.200000px;}
.y24_c00258{bottom:655.920000px;}
.y4a_c00258{bottom:656.640000px;}
.y21_c00258{bottom:657.360000px;}
.y4b_c00258{bottom:659.520000px;}
.y22_c00258{bottom:660.240000px;}
.y20_c00258{bottom:699.120000px;}
.y1e_c00258{bottom:700.560000px;}
.y48_c00258{bottom:701.280000px;}
.y49_c00258{bottom:702.000000px;}
.y1f_c00258{bottom:703.440000px;}
.y1d_c00258{bottom:742.320000px;}
.y1b_c00258{bottom:743.760000px;}
.y19_c00258{bottom:744.480000px;}
.y1c_c00258{bottom:745.920000px;}
.y1a_c00258{bottom:746.640000px;}
.y17_c00258{bottom:785.520000px;}
.y46_c00258{bottom:786.240000px;}
.y15_c00258{bottom:786.960000px;}
.y47_c00258{bottom:787.680000px;}
.y16_c00258{bottom:789.120000px;}
.y18_c00258{bottom:789.840000px;}
.y14_c00258{bottom:829.440000px;}
.y45_c00258{bottom:830.160000px;}
.y12_c00258{bottom:830.880000px;}
.y13_c00258{bottom:833.040000px;}
.y11_c00258{bottom:871.920000px;}
.yf_c00258{bottom:873.360000px;}
.y43_c00258{bottom:874.800000px;}
.y44_c00258{bottom:875.520000px;}
.y10_c00258{bottom:876.960000px;}
.ye_c00258{bottom:915.120000px;}
.y41_c00258{bottom:915.840000px;}
.yc_c00258{bottom:916.560000px;}
.y42_c00258{bottom:918.000000px;}
.yd_c00258{bottom:918.720000px;}
.yb_c00258{bottom:958.320000px;}
.y9_c00258{bottom:959.040000px;}
.y40_c00258{bottom:959.760000px;}
.ya_c00258{bottom:961.920000px;}
.y6_c00258{bottom:1001.520000px;}
.y3f_c00258{bottom:1002.240000px;}
.y8_c00258{bottom:1002.960000px;}
.y7_c00258{bottom:1005.840000px;}
.y3_c00258{bottom:1044.720000px;}
.y1_c00258{bottom:1045.440000px;}
.y3c_c00258{bottom:1046.160000px;}
.y3e_c00258{bottom:1046.880000px;}
.y3d_c00258{bottom:1047.600000px;}
.y5_c00258{bottom:1048.320000px;}
.y2_c00258{bottom:1049.040000px;}
.y4_c00258{bottom:1049.760000px;}
.y3b_c00258{bottom:1108.080000px;}
.h11_c00258{height:28.508906px;}
.h5_c00258{height:31.100625px;}
.hc_c00258{height:33.692344px;}
.h10_c00258{height:36.284062px;}
.hf_c00258{height:41.467500px;}
.h7_c00258{height:44.059219px;}
.h3_c00258{height:46.650937px;}
.ha_c00258{height:49.242656px;}
.he_c00258{height:51.834375px;}
.hd_c00258{height:54.426094px;}
.h9_c00258{height:57.017812px;}
.h12_c00258{height:59.321250px;}
.h2_c00258{height:59.609531px;}
.hb_c00258{height:62.201250px;}
.h8_c00258{height:64.792969px;}
.h6_c00258{height:67.384687px;}
.h4_c00258{height:69.976406px;}
.h1_c00258{height:1151.250000px;}
.h0_c00258{height:1151.280000px;}
.w0_c00258{width:774.720000px;}
.w1_c00258{width:774.750000px;}
.x0_c00258{left:0.000000px;}
.x1_c00258{left:69.120000px;}
.xb_c00258{left:70.560000px;}
.x19_c00258{left:72.000000px;}
.x28_c00258{left:73.440000px;}
.x30_c00258{left:74.880000px;}
.x2c_c00258{left:114.480000px;}
.x2_c00258{left:141.840000px;}
.x1a_c00258{left:143.280000px;}
.x1e_c00258{left:145.440000px;}
.x2a_c00258{left:174.960000px;}
.x8_c00258{left:184.320000px;}
.x3_c00258{left:185.760000px;}
.x16_c00258{left:187.200000px;}
.x2b_c00258{left:219.600000px;}
.x9_c00258{left:228.960000px;}
.x1b_c00258{left:230.400000px;}
.x7_c00258{left:240.480000px;}
.xa_c00258{left:272.160000px;}
.x1f_c00258{left:274.320000px;}
.x10_c00258{left:284.400000px;}
.x13_c00258{left:295.920000px;}
.xc_c00258{left:327.600000px;}
.x4_c00258{left:336.240000px;}
.x2d_c00258{left:339.840000px;}
.x31_c00258{left:350.640000px;}
.x5_c00258{left:357.840000px;}
.xd_c00258{left:370.800000px;}
.x15_c00258{left:382.320000px;}
.x6_c00258{left:391.680000px;}
.x14_c00258{left:414.720000px;}
.x11_c00258{left:424.080000px;}
.x2e_c00258{left:425.520000px;}
.x17_c00258{left:436.320000px;}
.xe_c00258{left:457.200000px;}
.x1c_c00258{left:469.440000px;}
.x18_c00258{left:491.040000px;}
.xf_c00258{left:500.400000px;}
.x12_c00258{left:509.760000px;}
.x1d_c00258{left:511.920000px;}
.x2f_c00258{left:522.720000px;}
.x29_c00258{left:586.080000px;}
.x24_c00258{left:587.520000px;}
.x21_c00258{left:619.200000px;}
.x22_c00258{left:651.600000px;}
.x27_c00258{left:653.040000px;}
.x23_c00258{left:693.360000px;}
.x25_c00258{left:694.800000px;}
.x20_c00258{left:702.000000px;}
.x26_c00258{left:714.240000px;}
@media print{
.v2_c00258{vertical-align:-2.560000pt;}
.v0_c00258{vertical-align:0.000000pt;}
.v1_c00258{vertical-align:10.240000pt;}
.ls0_c00258{letter-spacing:0.000000pt;}
.ws0_c00258{word-spacing:-11.105067pt;}
.ws2_c00258{word-spacing:0.000000pt;}
.ws1_c00258{word-spacing:44.496000pt;}
.fsf_c00258{font-size:28.160000pt;}
.fs3_c00258{font-size:30.720000pt;}
.fsa_c00258{font-size:33.280000pt;}
.fse_c00258{font-size:35.840000pt;}
.fsd_c00258{font-size:40.960000pt;}
.fs5_c00258{font-size:43.520000pt;}
.fs1_c00258{font-size:46.080000pt;}
.fs8_c00258{font-size:48.640000pt;}
.fsc_c00258{font-size:51.200000pt;}
.fsb_c00258{font-size:53.760000pt;}
.fs7_c00258{font-size:56.320000pt;}
.fs0_c00258{font-size:58.880000pt;}
.fs9_c00258{font-size:61.440000pt;}
.fs6_c00258{font-size:64.000000pt;}
.fs4_c00258{font-size:66.560000pt;}
.fs2_c00258{font-size:69.120000pt;}
.y0_c00258{bottom:0.000000pt;}
.y6c_c00258{bottom:101.760000pt;}
.y6e_c00258{bottom:104.960000pt;}
.y6d_c00258{bottom:105.600000pt;}
.y6f_c00258{bottom:106.240000pt;}
.y6b_c00258{bottom:107.520000pt;}
.y69_c00258{bottom:140.160000pt;}
.y6a_c00258{bottom:144.000000pt;}
.y68_c00258{bottom:145.280000pt;}
.y67_c00258{bottom:145.920000pt;}
.y66_c00258{bottom:178.560000pt;}
.y65_c00258{bottom:182.400000pt;}
.y64_c00258{bottom:183.680000pt;}
.y63_c00258{bottom:184.320000pt;}
.y62_c00258{bottom:217.600000pt;}
.y61_c00258{bottom:222.080000pt;}
.y5d_c00258{bottom:246.400000pt;}
.y5e_c00258{bottom:247.680000pt;}
.y60_c00258{bottom:248.320000pt;}
.y5f_c00258{bottom:249.600000pt;}
.y5c_c00258{bottom:250.240000pt;}
.y5a_c00258{bottom:250.880000pt;}
.y5b_c00258{bottom:251.520000pt;}
.y57_c00258{bottom:284.800000pt;}
.y58_c00258{bottom:288.000000pt;}
.y55_c00258{bottom:288.640000pt;}
.y56_c00258{bottom:289.280000pt;}
.y59_c00258{bottom:289.920000pt;}
.y53_c00258{bottom:323.200000pt;}
.y54_c00258{bottom:325.120000pt;}
.y50_c00258{bottom:326.400000pt;}
.y51_c00258{bottom:327.040000pt;}
.y52_c00258{bottom:327.680000pt;}
.y3a_c00258{bottom:361.600000pt;}
.y38_c00258{bottom:363.520000pt;}
.y39_c00258{bottom:365.440000pt;}
.y37_c00258{bottom:390.400000pt;}
.y4f_c00258{bottom:392.320000pt;}
.y34_c00258{bottom:392.960000pt;}
.y36_c00258{bottom:394.240000pt;}
.y35_c00258{bottom:394.880000pt;}
.y33_c00258{bottom:428.800000pt;}
.y4e_c00258{bottom:430.720000pt;}
.y32_c00258{bottom:431.360000pt;}
.y30_c00258{bottom:432.000000pt;}
.y31_c00258{bottom:433.280000pt;}
.y2f_c00258{bottom:467.840000pt;}
.y4d_c00258{bottom:469.120000pt;}
.y2c_c00258{bottom:469.760000pt;}
.y2e_c00258{bottom:471.040000pt;}
.y2d_c00258{bottom:471.680000pt;}
.y2a_c00258{bottom:505.600000pt;}
.y28_c00258{bottom:507.520000pt;}
.y2b_c00258{bottom:508.800000pt;}
.y29_c00258{bottom:509.440000pt;}
.y27_c00258{bottom:544.640000pt;}
.y4c_c00258{bottom:545.280000pt;}
.y25_c00258{bottom:546.560000pt;}
.y26_c00258{bottom:547.840000pt;}
.y23_c00258{bottom:582.400000pt;}
.y24_c00258{bottom:583.040000pt;}
.y4a_c00258{bottom:583.680000pt;}
.y21_c00258{bottom:584.320000pt;}
.y4b_c00258{bottom:586.240000pt;}
.y22_c00258{bottom:586.880000pt;}
.y20_c00258{bottom:621.440000pt;}
.y1e_c00258{bottom:622.720000pt;}
.y48_c00258{bottom:623.360000pt;}
.y49_c00258{bottom:624.000000pt;}
.y1f_c00258{bottom:625.280000pt;}
.y1d_c00258{bottom:659.840000pt;}
.y1b_c00258{bottom:661.120000pt;}
.y19_c00258{bottom:661.760000pt;}
.y1c_c00258{bottom:663.040000pt;}
.y1a_c00258{bottom:663.680000pt;}
.y17_c00258{bottom:698.240000pt;}
.y46_c00258{bottom:698.880000pt;}
.y15_c00258{bottom:699.520000pt;}
.y47_c00258{bottom:700.160000pt;}
.y16_c00258{bottom:701.440000pt;}
.y18_c00258{bottom:702.080000pt;}
.y14_c00258{bottom:737.280000pt;}
.y45_c00258{bottom:737.920000pt;}
.y12_c00258{bottom:738.560000pt;}
.y13_c00258{bottom:740.480000pt;}
.y11_c00258{bottom:775.040000pt;}
.yf_c00258{bottom:776.320000pt;}
.y43_c00258{bottom:777.600000pt;}
.y44_c00258{bottom:778.240000pt;}
.y10_c00258{bottom:779.520000pt;}
.ye_c00258{bottom:813.440000pt;}
.y41_c00258{bottom:814.080000pt;}
.yc_c00258{bottom:814.720000pt;}
.y42_c00258{bottom:816.000000pt;}
.yd_c00258{bottom:816.640000pt;}
.yb_c00258{bottom:851.840000pt;}
.y9_c00258{bottom:852.480000pt;}
.y40_c00258{bottom:853.120000pt;}
.ya_c00258{bottom:855.040000pt;}
.y6_c00258{bottom:890.240000pt;}
.y3f_c00258{bottom:890.880000pt;}
.y8_c00258{bottom:891.520000pt;}
.y7_c00258{bottom:894.080000pt;}
.y3_c00258{bottom:928.640000pt;}
.y1_c00258{bottom:929.280000pt;}
.y3c_c00258{bottom:929.920000pt;}
.y3e_c00258{bottom:930.560000pt;}
.y3d_c00258{bottom:931.200000pt;}
.y5_c00258{bottom:931.840000pt;}
.y2_c00258{bottom:932.480000pt;}
.y4_c00258{bottom:933.120000pt;}
.y3b_c00258{bottom:984.960000pt;}
.h11_c00258{height:25.341250pt;}
.h5_c00258{height:27.645000pt;}
.hc_c00258{height:29.948750pt;}
.h10_c00258{height:32.252500pt;}
.hf_c00258{height:36.860000pt;}
.h7_c00258{height:39.163750pt;}
.h3_c00258{height:41.467500pt;}
.ha_c00258{height:43.771250pt;}
.he_c00258{height:46.075000pt;}
.hd_c00258{height:48.378750pt;}
.h9_c00258{height:50.682500pt;}
.h12_c00258{height:52.730000pt;}
.h2_c00258{height:52.986250pt;}
.hb_c00258{height:55.290000pt;}
.h8_c00258{height:57.593750pt;}
.h6_c00258{height:59.897500pt;}
.h4_c00258{height:62.201250pt;}
.h1_c00258{height:1023.333333pt;}
.h0_c00258{height:1023.360000pt;}
.w0_c00258{width:688.640000pt;}
.w1_c00258{width:688.666667pt;}
.x0_c00258{left:0.000000pt;}
.x1_c00258{left:61.440000pt;}
.xb_c00258{left:62.720000pt;}
.x19_c00258{left:64.000000pt;}
.x28_c00258{left:65.280000pt;}
.x30_c00258{left:66.560000pt;}
.x2c_c00258{left:101.760000pt;}
.x2_c00258{left:126.080000pt;}
.x1a_c00258{left:127.360000pt;}
.x1e_c00258{left:129.280000pt;}
.x2a_c00258{left:155.520000pt;}
.x8_c00258{left:163.840000pt;}
.x3_c00258{left:165.120000pt;}
.x16_c00258{left:166.400000pt;}
.x2b_c00258{left:195.200000pt;}
.x9_c00258{left:203.520000pt;}
.x1b_c00258{left:204.800000pt;}
.x7_c00258{left:213.760000pt;}
.xa_c00258{left:241.920000pt;}
.x1f_c00258{left:243.840000pt;}
.x10_c00258{left:252.800000pt;}
.x13_c00258{left:263.040000pt;}
.xc_c00258{left:291.200000pt;}
.x4_c00258{left:298.880000pt;}
.x2d_c00258{left:302.080000pt;}
.x31_c00258{left:311.680000pt;}
.x5_c00258{left:318.080000pt;}
.xd_c00258{left:329.600000pt;}
.x15_c00258{left:339.840000pt;}
.x6_c00258{left:348.160000pt;}
.x14_c00258{left:368.640000pt;}
.x11_c00258{left:376.960000pt;}
.x2e_c00258{left:378.240000pt;}
.x17_c00258{left:387.840000pt;}
.xe_c00258{left:406.400000pt;}
.x1c_c00258{left:417.280000pt;}
.x18_c00258{left:436.480000pt;}
.xf_c00258{left:444.800000pt;}
.x12_c00258{left:453.120000pt;}
.x1d_c00258{left:455.040000pt;}
.x2f_c00258{left:464.640000pt;}
.x29_c00258{left:520.960000pt;}
.x24_c00258{left:522.240000pt;}
.x21_c00258{left:550.400000pt;}
.x22_c00258{left:579.200000pt;}
.x27_c00258{left:580.480000pt;}
.x23_c00258{left:616.320000pt;}
.x25_c00258{left:617.600000pt;}
.x20_c00258{left:624.000000pt;}
.x26_c00258{left:634.880000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ce9173a0098070f4634393a5.woff2')format("woff");}.ff1_c00259{font-family:ff1_c00259;line-height:1.109863;font-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.168725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);}
.m45_c00259{transform:matrix(0.189775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189775,0.000000,0.000000,0.250000,0,0);}
.m50_c00259{transform:matrix(0.190700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190700,0.000000,0.000000,0.250000,0,0);}
.m52_c00259{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m17_c00259{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m49_c00259{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);}
.m4e_c00259{transform:matrix(0.243850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243850,0.000000,0.000000,0.250000,0,0);}
.m53_c00259{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m34_c00259{transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);}
.m7_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);}
.m36_c00259{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.me_c00259{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);}
.m41_c00259{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);}
.m48_c00259{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.ma_c00259{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);}
.m4c_c00259{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);}
.m40_c00259{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m0_c00259{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);}
.m3d_c00259{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);}
.m44_c00259{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);}
.m2f_c00259{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m47_c00259{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);}
.m3c_c00259{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m5_c00259{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);}
.m3b_c00259{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m3_c00259{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m19_c00259{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00259{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m10_c00259{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m16_c00259{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00259{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m8_c00259{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1_c00259{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mc_c00259{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.md_c00259{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mf_c00259{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00259{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m22_c00259{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m43_c00259{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m13_c00259{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m38_c00259{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m37_c00259{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00259{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m29_c00259{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m28_c00259{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.mb_c00259{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00259{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m14_c00259{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00259{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);}
.m2b_c00259{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m30_c00259{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00259{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m27_c00259{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_c00259{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);}
.m23_c00259{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m35_c00259{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_c00259{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m9_c00259{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m33_c00259{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00259{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);}
.m18_c00259{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00259{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);}
.m31_c00259{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m20_c00259{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m12_c00259{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);}
.m4f_c00259{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m24_c00259{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00259{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);}
.m25_c00259{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m2_c00259{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);}
.m39_c00259{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m11_c00259{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00259{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);}
.m2d_c00259{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m21_c00259{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m32_c00259{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.m26_c00259{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00259{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00259{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.m4_c00259{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m42_c00259{transform:matrix(0.712500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.712500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.712500,0.000000,0.000000,0.250000,0,0);}
.m51_c00259{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00259{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m46_c00259{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.v0_c00259{vertical-align:0.000000px;}
.ls0_c00259{letter-spacing:0.000000px;}
.sc__c00259{text-shadow:none;}
.sc0_c00259{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00259{-webkit-text-stroke:0px transparent;}
.sc0_c00259{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00259{word-spacing:0.000000px;}
.ws0_c00259{word-spacing:11.693143px;}
.fc0_c00259{color:transparent;}
.fsb_c00259{font-size:37.440000px;}
.fs7_c00259{font-size:40.320000px;}
.fs4_c00259{font-size:48.960000px;}
.fs2_c00259{font-size:51.840000px;}
.fsc_c00259{font-size:54.720000px;}
.fs3_c00259{font-size:57.600000px;}
.fs6_c00259{font-size:60.480000px;}
.fs9_c00259{font-size:63.360000px;}
.fs8_c00259{font-size:66.240000px;}
.fs1_c00259{font-size:69.120000px;}
.fsa_c00259{font-size:72.000000px;}
.fs5_c00259{font-size:74.880000px;}
.fs0_c00259{font-size:77.760000px;}
.y0_c00259{bottom:0.000000px;}
.y6d_c00259{bottom:89.280000px;}
.y71_c00259{bottom:90.000000px;}
.y70_c00259{bottom:90.720000px;}
.y72_c00259{bottom:91.440000px;}
.y6f_c00259{bottom:92.160000px;}
.y6e_c00259{bottom:92.880000px;}
.y6c_c00259{bottom:93.600000px;}
.y68_c00259{bottom:131.760000px;}
.y67_c00259{bottom:133.200000px;}
.y6a_c00259{bottom:133.920000px;}
.y6b_c00259{bottom:134.640000px;}
.y69_c00259{bottom:135.360000px;}
.y66_c00259{bottom:136.080000px;}
.y7f_c00259{bottom:137.520000px;}
.y62_c00259{bottom:175.680000px;}
.y65_c00259{bottom:176.400000px;}
.y64_c00259{bottom:177.120000px;}
.y7d_c00259{bottom:177.840000px;}
.y7e_c00259{bottom:178.560000px;}
.y63_c00259{bottom:179.280000px;}
.y7c_c00259{bottom:180.000000px;}
.y61_c00259{bottom:180.720000px;}
.y5f_c00259{bottom:218.880000px;}
.y60_c00259{bottom:219.600000px;}
.y7b_c00259{bottom:221.040000px;}
.y7a_c00259{bottom:221.760000px;}
.y5e_c00259{bottom:222.480000px;}
.y5d_c00259{bottom:262.080000px;}
.y79_c00259{bottom:264.240000px;}
.y78_c00259{bottom:264.960000px;}
.y5c_c00259{bottom:266.400000px;}
.y5b_c00259{bottom:305.280000px;}
.y75_c00259{bottom:307.440000px;}
.y76_c00259{bottom:308.160000px;}
.y5a_c00259{bottom:309.600000px;}
.y77_c00259{bottom:310.320000px;}
.y59_c00259{bottom:349.200000px;}
.y74_c00259{bottom:350.640000px;}
.y58_c00259{bottom:352.080000px;}
.y73_c00259{bottom:352.800000px;}
.y55_c00259{bottom:391.680000px;}
.y57_c00259{bottom:392.400000px;}
.y56_c00259{bottom:393.120000px;}
.y54_c00259{bottom:396.000000px;}
.y4f_c00259{bottom:424.080000px;}
.y51_c00259{bottom:424.800000px;}
.y50_c00259{bottom:425.520000px;}
.y52_c00259{bottom:426.240000px;}
.y53_c00259{bottom:426.960000px;}
.y4d_c00259{bottom:427.680000px;}
.y4e_c00259{bottom:428.400000px;}
.y3d_c00259{bottom:468.000000px;}
.y3f_c00259{bottom:469.440000px;}
.y4c_c00259{bottom:470.160000px;}
.y3c_c00259{bottom:470.880000px;}
.y3e_c00259{bottom:471.600000px;}
.y39_c00259{bottom:510.480000px;}
.y3b_c00259{bottom:511.200000px;}
.y4a_c00259{bottom:512.640000px;}
.y38_c00259{bottom:513.360000px;}
.y3a_c00259{bottom:514.080000px;}
.y4b_c00259{bottom:515.520000px;}
.y37_c00259{bottom:555.120000px;}
.y35_c00259{bottom:555.840000px;}
.y34_c00259{bottom:556.560000px;}
.y49_c00259{bottom:557.280000px;}
.y36_c00259{bottom:558.000000px;}
.y31_c00259{bottom:598.320000px;}
.y30_c00259{bottom:599.040000px;}
.y32_c00259{bottom:600.480000px;}
.y33_c00259{bottom:601.200000px;}
.y2f_c00259{bottom:640.800000px;}
.y2e_c00259{bottom:641.520000px;}
.y2c_c00259{bottom:642.240000px;}
.y48_c00259{bottom:642.960000px;}
.y2d_c00259{bottom:643.680000px;}
.y47_c00259{bottom:683.280000px;}
.y46_c00259{bottom:684.000000px;}
.y29_c00259{bottom:684.720000px;}
.y2a_c00259{bottom:686.160000px;}
.y2b_c00259{bottom:686.880000px;}
.y45_c00259{bottom:726.480000px;}
.y25_c00259{bottom:727.200000px;}
.y28_c00259{bottom:727.920000px;}
.y27_c00259{bottom:729.360000px;}
.y26_c00259{bottom:730.080000px;}
.y24_c00259{bottom:769.680000px;}
.y21_c00259{bottom:770.400000px;}
.y22_c00259{bottom:771.840000px;}
.y23_c00259{bottom:772.560000px;}
.y43_c00259{bottom:812.880000px;}
.y1f_c00259{bottom:813.600000px;}
.y44_c00259{bottom:815.040000px;}
.y20_c00259{bottom:815.760000px;}
.y1c_c00259{bottom:856.080000px;}
.y1d_c00259{bottom:856.800000px;}
.y41_c00259{bottom:857.520000px;}
.y42_c00259{bottom:858.240000px;}
.y1e_c00259{bottom:858.960000px;}
.y40_c00259{bottom:898.560000px;}
.y1a_c00259{bottom:899.280000px;}
.y18_c00259{bottom:900.000000px;}
.y19_c00259{bottom:901.440000px;}
.y1b_c00259{bottom:902.160000px;}
.y17_c00259{bottom:934.560000px;}
.y15_c00259{bottom:941.760000px;}
.y16_c00259{bottom:942.480000px;}
.y12_c00259{bottom:943.200000px;}
.y14_c00259{bottom:944.640000px;}
.y13_c00259{bottom:945.360000px;}
.yf_c00259{bottom:972.720000px;}
.y11_c00259{bottom:973.440000px;}
.yd_c00259{bottom:974.880000px;}
.y10_c00259{bottom:977.040000px;}
.ye_c00259{bottom:977.760000px;}
.ya_c00259{bottom:1016.640000px;}
.y8_c00259{bottom:1017.360000px;}
.yc_c00259{bottom:1018.080000px;}
.yb_c00259{bottom:1020.240000px;}
.y9_c00259{bottom:1020.960000px;}
.y4_c00259{bottom:1059.840000px;}
.y7_c00259{bottom:1060.560000px;}
.y2_c00259{bottom:1061.280000px;}
.y6_c00259{bottom:1062.000000px;}
.y5_c00259{bottom:1063.440000px;}
.y3_c00259{bottom:1064.160000px;}
.y1_c00259{bottom:1110.240000px;}
.hd_c00259{height:33.692344px;}
.h9_c00259{height:36.284062px;}
.h6_c00259{height:44.059219px;}
.h4_c00259{height:46.650937px;}
.he_c00259{height:49.242656px;}
.h5_c00259{height:51.834375px;}
.h8_c00259{height:54.426094px;}
.hb_c00259{height:57.017812px;}
.ha_c00259{height:59.609531px;}
.h3_c00259{height:62.201250px;}
.hc_c00259{height:64.792969px;}
.h7_c00259{height:67.384687px;}
.h2_c00259{height:69.976406px;}
.h1_c00259{height:1162.500000px;}
.h0_c00259{height:1162.800000px;}
.w1_c00259{width:790.500000px;}
.w0_c00259{width:790.560000px;}
.x0_c00259{left:0.000000px;}
.x2_c00259{left:77.760000px;}
.x17_c00259{left:79.200000px;}
.x34_c00259{left:80.640000px;}
.x27_c00259{left:150.480000px;}
.x3_c00259{left:151.920000px;}
.x4_c00259{left:194.400000px;}
.x24_c00259{left:205.200000px;}
.x29_c00259{left:236.160000px;}
.x28_c00259{left:237.600000px;}
.x33_c00259{left:239.040000px;}
.x18_c00259{left:248.400000px;}
.x1c_c00259{left:259.200000px;}
.x25_c00259{left:270.000000px;}
.x36_c00259{left:271.440000px;}
.x12_c00259{left:280.800000px;}
.xc_c00259{left:292.320000px;}
.x19_c00259{left:303.120000px;}
.x1d_c00259{left:313.920000px;}
.x13_c00259{left:324.720000px;}
.x38_c00259{left:334.080000px;}
.x2a_c00259{left:336.240000px;}
.xd_c00259{left:347.040000px;}
.x9_c00259{left:356.400000px;}
.x21_c00259{left:367.200000px;}
.x1e_c00259{left:368.640000px;}
.x14_c00259{left:378.720000px;}
.xe_c00259{left:388.800000px;}
.x32_c00259{left:390.240000px;}
.xa_c00259{left:401.040000px;}
.x1a_c00259{left:410.400000px;}
.x15_c00259{left:421.920000px;}
.x35_c00259{left:432.720000px;}
.x23_c00259{left:444.240000px;}
.x37_c00259{left:454.320000px;}
.x1b_c00259{left:455.760000px;}
.x2b_c00259{left:465.120000px;}
.x1f_c00259{left:475.200000px;}
.x22_c00259{left:476.640000px;}
.xf_c00259{left:486.720000px;}
.x26_c00259{left:498.240000px;}
.x39_c00259{left:518.400000px;}
.x20_c00259{left:519.840000px;}
.x16_c00259{left:529.920000px;}
.x10_c00259{left:541.440000px;}
.x30_c00259{left:573.120000px;}
.x31_c00259{left:594.720000px;}
.xb_c00259{left:596.160000px;}
.x5_c00259{left:606.240000px;}
.x2f_c00259{left:627.120000px;}
.x6_c00259{left:628.560000px;}
.x3a_c00259{left:659.520000px;}
.x11_c00259{left:660.960000px;}
.x7_c00259{left:671.760000px;}
.x2c_c00259{left:693.360000px;}
.x1_c00259{left:701.280000px;}
.x2e_c00259{left:702.720000px;}
.x8_c00259{left:704.160000px;}
.x3b_c00259{left:722.160000px;}
.x2d_c00259{left:723.600000px;}
@media print{
.v0_c00259{vertical-align:0.000000pt;}
.ls0_c00259{letter-spacing:0.000000pt;}
.ws1_c00259{word-spacing:0.000000pt;}
.ws0_c00259{word-spacing:10.393905pt;}
.fsb_c00259{font-size:33.280000pt;}
.fs7_c00259{font-size:35.840000pt;}
.fs4_c00259{font-size:43.520000pt;}
.fs2_c00259{font-size:46.080000pt;}
.fsc_c00259{font-size:48.640000pt;}
.fs3_c00259{font-size:51.200000pt;}
.fs6_c00259{font-size:53.760000pt;}
.fs9_c00259{font-size:56.320000pt;}
.fs8_c00259{font-size:58.880000pt;}
.fs1_c00259{font-size:61.440000pt;}
.fsa_c00259{font-size:64.000000pt;}
.fs5_c00259{font-size:66.560000pt;}
.fs0_c00259{font-size:69.120000pt;}
.y0_c00259{bottom:0.000000pt;}
.y6d_c00259{bottom:79.360000pt;}
.y71_c00259{bottom:80.000000pt;}
.y70_c00259{bottom:80.640000pt;}
.y72_c00259{bottom:81.280000pt;}
.y6f_c00259{bottom:81.920000pt;}
.y6e_c00259{bottom:82.560000pt;}
.y6c_c00259{bottom:83.200000pt;}
.y68_c00259{bottom:117.120000pt;}
.y67_c00259{bottom:118.400000pt;}
.y6a_c00259{bottom:119.040000pt;}
.y6b_c00259{bottom:119.680000pt;}
.y69_c00259{bottom:120.320000pt;}
.y66_c00259{bottom:120.960000pt;}
.y7f_c00259{bottom:122.240000pt;}
.y62_c00259{bottom:156.160000pt;}
.y65_c00259{bottom:156.800000pt;}
.y64_c00259{bottom:157.440000pt;}
.y7d_c00259{bottom:158.080000pt;}
.y7e_c00259{bottom:158.720000pt;}
.y63_c00259{bottom:159.360000pt;}
.y7c_c00259{bottom:160.000000pt;}
.y61_c00259{bottom:160.640000pt;}
.y5f_c00259{bottom:194.560000pt;}
.y60_c00259{bottom:195.200000pt;}
.y7b_c00259{bottom:196.480000pt;}
.y7a_c00259{bottom:197.120000pt;}
.y5e_c00259{bottom:197.760000pt;}
.y5d_c00259{bottom:232.960000pt;}
.y79_c00259{bottom:234.880000pt;}
.y78_c00259{bottom:235.520000pt;}
.y5c_c00259{bottom:236.800000pt;}
.y5b_c00259{bottom:271.360000pt;}
.y75_c00259{bottom:273.280000pt;}
.y76_c00259{bottom:273.920000pt;}
.y5a_c00259{bottom:275.200000pt;}
.y77_c00259{bottom:275.840000pt;}
.y59_c00259{bottom:310.400000pt;}
.y74_c00259{bottom:311.680000pt;}
.y58_c00259{bottom:312.960000pt;}
.y73_c00259{bottom:313.600000pt;}
.y55_c00259{bottom:348.160000pt;}
.y57_c00259{bottom:348.800000pt;}
.y56_c00259{bottom:349.440000pt;}
.y54_c00259{bottom:352.000000pt;}
.y4f_c00259{bottom:376.960000pt;}
.y51_c00259{bottom:377.600000pt;}
.y50_c00259{bottom:378.240000pt;}
.y52_c00259{bottom:378.880000pt;}
.y53_c00259{bottom:379.520000pt;}
.y4d_c00259{bottom:380.160000pt;}
.y4e_c00259{bottom:380.800000pt;}
.y3d_c00259{bottom:416.000000pt;}
.y3f_c00259{bottom:417.280000pt;}
.y4c_c00259{bottom:417.920000pt;}
.y3c_c00259{bottom:418.560000pt;}
.y3e_c00259{bottom:419.200000pt;}
.y39_c00259{bottom:453.760000pt;}
.y3b_c00259{bottom:454.400000pt;}
.y4a_c00259{bottom:455.680000pt;}
.y38_c00259{bottom:456.320000pt;}
.y3a_c00259{bottom:456.960000pt;}
.y4b_c00259{bottom:458.240000pt;}
.y37_c00259{bottom:493.440000pt;}
.y35_c00259{bottom:494.080000pt;}
.y34_c00259{bottom:494.720000pt;}
.y49_c00259{bottom:495.360000pt;}
.y36_c00259{bottom:496.000000pt;}
.y31_c00259{bottom:531.840000pt;}
.y30_c00259{bottom:532.480000pt;}
.y32_c00259{bottom:533.760000pt;}
.y33_c00259{bottom:534.400000pt;}
.y2f_c00259{bottom:569.600000pt;}
.y2e_c00259{bottom:570.240000pt;}
.y2c_c00259{bottom:570.880000pt;}
.y48_c00259{bottom:571.520000pt;}
.y2d_c00259{bottom:572.160000pt;}
.y47_c00259{bottom:607.360000pt;}
.y46_c00259{bottom:608.000000pt;}
.y29_c00259{bottom:608.640000pt;}
.y2a_c00259{bottom:609.920000pt;}
.y2b_c00259{bottom:610.560000pt;}
.y45_c00259{bottom:645.760000pt;}
.y25_c00259{bottom:646.400000pt;}
.y28_c00259{bottom:647.040000pt;}
.y27_c00259{bottom:648.320000pt;}
.y26_c00259{bottom:648.960000pt;}
.y24_c00259{bottom:684.160000pt;}
.y21_c00259{bottom:684.800000pt;}
.y22_c00259{bottom:686.080000pt;}
.y23_c00259{bottom:686.720000pt;}
.y43_c00259{bottom:722.560000pt;}
.y1f_c00259{bottom:723.200000pt;}
.y44_c00259{bottom:724.480000pt;}
.y20_c00259{bottom:725.120000pt;}
.y1c_c00259{bottom:760.960000pt;}
.y1d_c00259{bottom:761.600000pt;}
.y41_c00259{bottom:762.240000pt;}
.y42_c00259{bottom:762.880000pt;}
.y1e_c00259{bottom:763.520000pt;}
.y40_c00259{bottom:798.720000pt;}
.y1a_c00259{bottom:799.360000pt;}
.y18_c00259{bottom:800.000000pt;}
.y19_c00259{bottom:801.280000pt;}
.y1b_c00259{bottom:801.920000pt;}
.y17_c00259{bottom:830.720000pt;}
.y15_c00259{bottom:837.120000pt;}
.y16_c00259{bottom:837.760000pt;}
.y12_c00259{bottom:838.400000pt;}
.y14_c00259{bottom:839.680000pt;}
.y13_c00259{bottom:840.320000pt;}
.yf_c00259{bottom:864.640000pt;}
.y11_c00259{bottom:865.280000pt;}
.yd_c00259{bottom:866.560000pt;}
.y10_c00259{bottom:868.480000pt;}
.ye_c00259{bottom:869.120000pt;}
.ya_c00259{bottom:903.680000pt;}
.y8_c00259{bottom:904.320000pt;}
.yc_c00259{bottom:904.960000pt;}
.yb_c00259{bottom:906.880000pt;}
.y9_c00259{bottom:907.520000pt;}
.y4_c00259{bottom:942.080000pt;}
.y7_c00259{bottom:942.720000pt;}
.y2_c00259{bottom:943.360000pt;}
.y6_c00259{bottom:944.000000pt;}
.y5_c00259{bottom:945.280000pt;}
.y3_c00259{bottom:945.920000pt;}
.y1_c00259{bottom:986.880000pt;}
.hd_c00259{height:29.948750pt;}
.h9_c00259{height:32.252500pt;}
.h6_c00259{height:39.163750pt;}
.h4_c00259{height:41.467500pt;}
.he_c00259{height:43.771250pt;}
.h5_c00259{height:46.075000pt;}
.h8_c00259{height:48.378750pt;}
.hb_c00259{height:50.682500pt;}
.ha_c00259{height:52.986250pt;}
.h3_c00259{height:55.290000pt;}
.hc_c00259{height:57.593750pt;}
.h7_c00259{height:59.897500pt;}
.h2_c00259{height:62.201250pt;}
.h1_c00259{height:1033.333333pt;}
.h0_c00259{height:1033.600000pt;}
.w1_c00259{width:702.666667pt;}
.w0_c00259{width:702.720000pt;}
.x0_c00259{left:0.000000pt;}
.x2_c00259{left:69.120000pt;}
.x17_c00259{left:70.400000pt;}
.x34_c00259{left:71.680000pt;}
.x27_c00259{left:133.760000pt;}
.x3_c00259{left:135.040000pt;}
.x4_c00259{left:172.800000pt;}
.x24_c00259{left:182.400000pt;}
.x29_c00259{left:209.920000pt;}
.x28_c00259{left:211.200000pt;}
.x33_c00259{left:212.480000pt;}
.x18_c00259{left:220.800000pt;}
.x1c_c00259{left:230.400000pt;}
.x25_c00259{left:240.000000pt;}
.x36_c00259{left:241.280000pt;}
.x12_c00259{left:249.600000pt;}
.xc_c00259{left:259.840000pt;}
.x19_c00259{left:269.440000pt;}
.x1d_c00259{left:279.040000pt;}
.x13_c00259{left:288.640000pt;}
.x38_c00259{left:296.960000pt;}
.x2a_c00259{left:298.880000pt;}
.xd_c00259{left:308.480000pt;}
.x9_c00259{left:316.800000pt;}
.x21_c00259{left:326.400000pt;}
.x1e_c00259{left:327.680000pt;}
.x14_c00259{left:336.640000pt;}
.xe_c00259{left:345.600000pt;}
.x32_c00259{left:346.880000pt;}
.xa_c00259{left:356.480000pt;}
.x1a_c00259{left:364.800000pt;}
.x15_c00259{left:375.040000pt;}
.x35_c00259{left:384.640000pt;}
.x23_c00259{left:394.880000pt;}
.x37_c00259{left:403.840000pt;}
.x1b_c00259{left:405.120000pt;}
.x2b_c00259{left:413.440000pt;}
.x1f_c00259{left:422.400000pt;}
.x22_c00259{left:423.680000pt;}
.xf_c00259{left:432.640000pt;}
.x26_c00259{left:442.880000pt;}
.x39_c00259{left:460.800000pt;}
.x20_c00259{left:462.080000pt;}
.x16_c00259{left:471.040000pt;}
.x10_c00259{left:481.280000pt;}
.x30_c00259{left:509.440000pt;}
.x31_c00259{left:528.640000pt;}
.xb_c00259{left:529.920000pt;}
.x5_c00259{left:538.880000pt;}
.x2f_c00259{left:557.440000pt;}
.x6_c00259{left:558.720000pt;}
.x3a_c00259{left:586.240000pt;}
.x11_c00259{left:587.520000pt;}
.x7_c00259{left:597.120000pt;}
.x2c_c00259{left:616.320000pt;}
.x1_c00259{left:623.360000pt;}
.x2e_c00259{left:624.640000pt;}
.x8_c00259{left:625.920000pt;}
.x3b_c00259{left:641.920000pt;}
.x2d_c00259{left:643.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9451040dc7768d3f35f197e4.woff2')format("woff");}.ff1_c00260{font-family:ff1_c00260;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3f_c00260{transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);}
.me_c00260{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);}
.m3d_c00260{transform:matrix(0.234725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234725,0.000000,0.000000,0.250000,0,0);}
.m1e_c00260{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m27_c00260{transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);}
.m2e_c00260{transform:matrix(0.245375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245375,0.000000,0.000000,0.250000,0,0);}
.mb_c00260{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m3c_c00260{transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);}
.m19_c00260{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m33_c00260{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m10_c00260{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);}
.m40_c00260{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m20_c00260{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m9_c00260{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_c00260{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00260{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m7_c00260{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m4_c00260{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1_c00260{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m18_c00260{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00260{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m22_c00260{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m30_c00260{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.md_c00260{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m36_c00260{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m13_c00260{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.ma_c00260{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2_c00260{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m25_c00260{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m3_c00260{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00260{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m32_c00260{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m41_c00260{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mc_c00260{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m6_c00260{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m17_c00260{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m8_c00260{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m35_c00260{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);}
.m2a_c00260{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);}
.m2c_c00260{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00260{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00260{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m0_c00260{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m38_c00260{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);}
.m26_c00260{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);}
.m31_c00260{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m29_c00260{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m21_c00260{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);}
.m39_c00260{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m15_c00260{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00260{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m23_c00260{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);}
.m28_c00260{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);}
.m3a_c00260{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);}
.m42_c00260{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00260{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m37_c00260{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00260{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m16_c00260{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);}
.m34_c00260{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m43_c00260{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m24_c00260{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m14_c00260{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m11_c00260{transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00260{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);}
.m12_c00260{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.mf_c00260{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m5_c00260{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.v1_c00260{vertical-align:-8.640000px;}
.v0_c00260{vertical-align:0.000000px;}
.v2_c00260{vertical-align:2.880000px;}
.v3_c00260{vertical-align:5.760000px;}
.ls1_c00260{letter-spacing:0.000000px;}
.ls0_c00260{letter-spacing:159.049680px;}
.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;}
}
.ws1_c00260{word-spacing:-4.374240px;}
.ws2_c00260{word-spacing:0.000000px;}
.ws0_c00260{word-spacing:6.249600px;}
.fc0_c00260{color:transparent;}
.fs7_c00260{font-size:46.080000px;}
.fs8_c00260{font-size:48.960000px;}
.fs3_c00260{font-size:51.840000px;}
.fs1_c00260{font-size:54.720000px;}
.fs2_c00260{font-size:57.600000px;}
.fs4_c00260{font-size:60.480000px;}
.fsa_c00260{font-size:63.360000px;}
.fs9_c00260{font-size:66.240000px;}
.fs6_c00260{font-size:69.120000px;}
.fs5_c00260{font-size:72.000000px;}
.fs0_c00260{font-size:74.880000px;}
.fsb_c00260{font-size:77.760000px;}
.y0_c00260{bottom:0.000000px;}
.y7a_c00260{bottom:53.280000px;}
.y7c_c00260{bottom:55.440000px;}
.y7b_c00260{bottom:56.880000px;}
.y7e_c00260{bottom:58.320000px;}
.y7d_c00260{bottom:59.040000px;}
.y79_c00260{bottom:59.760000px;}
.y73_c00260{bottom:95.040000px;}
.y72_c00260{bottom:97.200000px;}
.y74_c00260{bottom:99.360000px;}
.y77_c00260{bottom:100.080000px;}
.y75_c00260{bottom:100.800000px;}
.y76_c00260{bottom:101.520000px;}
.y71_c00260{bottom:102.240000px;}
.y78_c00260{bottom:102.960000px;}
.y6c_c00260{bottom:140.400000px;}
.y6d_c00260{bottom:141.120000px;}
.y6e_c00260{bottom:143.280000px;}
.y6f_c00260{bottom:144.000000px;}
.y70_c00260{bottom:144.720000px;}
.y6b_c00260{bottom:146.160000px;}
.y67_c00260{bottom:183.600000px;}
.y68_c00260{bottom:186.480000px;}
.y66_c00260{bottom:188.640000px;}
.y69_c00260{bottom:189.360000px;}
.y6a_c00260{bottom:190.080000px;}
.y62_c00260{bottom:226.800000px;}
.y63_c00260{bottom:227.520000px;}
.y64_c00260{bottom:228.960000px;}
.y61_c00260{bottom:230.400000px;}
.y65_c00260{bottom:231.120000px;}
.y5d_c00260{bottom:270.000000px;}
.y5e_c00260{bottom:270.720000px;}
.y5f_c00260{bottom:272.160000px;}
.y60_c00260{bottom:272.880000px;}
.y5c_c00260{bottom:273.600000px;}
.y56_c00260{bottom:312.480000px;}
.y58_c00260{bottom:313.920000px;}
.y5a_c00260{bottom:314.640000px;}
.y57_c00260{bottom:315.360000px;}
.y59_c00260{bottom:316.800000px;}
.y55_c00260{bottom:317.520000px;}
.y5b_c00260{bottom:318.240000px;}
.y54_c00260{bottom:355.680000px;}
.y33_c00260{bottom:358.560000px;}
.y36_c00260{bottom:359.280000px;}
.y53_c00260{bottom:360.000000px;}
.y34_c00260{bottom:360.720000px;}
.y35_c00260{bottom:361.440000px;}
.y52_c00260{bottom:398.880000px;}
.y30_c00260{bottom:401.760000px;}
.y32_c00260{bottom:402.480000px;}
.y51_c00260{bottom:403.200000px;}
.y31_c00260{bottom:403.920000px;}
.y4f_c00260{bottom:442.080000px;}
.y50_c00260{bottom:442.800000px;}
.y2e_c00260{bottom:444.960000px;}
.y2f_c00260{bottom:445.680000px;}
.y4c_c00260{bottom:485.280000px;}
.y4e_c00260{bottom:486.000000px;}
.y4d_c00260{bottom:486.720000px;}
.y2d_c00260{bottom:488.160000px;}
.y2c_c00260{bottom:489.600000px;}
.y4b_c00260{bottom:529.200000px;}
.y2a_c00260{bottom:530.640000px;}
.y29_c00260{bottom:531.360000px;}
.y2b_c00260{bottom:532.800000px;}
.y4a_c00260{bottom:572.400000px;}
.y25_c00260{bottom:573.840000px;}
.y27_c00260{bottom:574.560000px;}
.y49_c00260{bottom:575.280000px;}
.y26_c00260{bottom:576.000000px;}
.y28_c00260{bottom:576.720000px;}
.y47_c00260{bottom:615.600000px;}
.y48_c00260{bottom:616.320000px;}
.y23_c00260{bottom:617.040000px;}
.y22_c00260{bottom:617.760000px;}
.y24_c00260{bottom:620.640000px;}
.y44_c00260{bottom:658.800000px;}
.y46_c00260{bottom:659.520000px;}
.y1f_c00260{bottom:660.240000px;}
.y43_c00260{bottom:660.960000px;}
.y45_c00260{bottom:661.680000px;}
.y20_c00260{bottom:662.400000px;}
.y21_c00260{bottom:663.840000px;}
.y42_c00260{bottom:702.000000px;}
.y41_c00260{bottom:702.720000px;}
.y1c_c00260{bottom:703.440000px;}
.y1b_c00260{bottom:704.160000px;}
.y1e_c00260{bottom:705.600000px;}
.y1d_c00260{bottom:706.320000px;}
.y40_c00260{bottom:745.200000px;}
.y18_c00260{bottom:746.640000px;}
.y1a_c00260{bottom:747.360000px;}
.y19_c00260{bottom:748.800000px;}
.y3e_c00260{bottom:789.120000px;}
.y15_c00260{bottom:789.840000px;}
.y16_c00260{bottom:791.280000px;}
.y17_c00260{bottom:792.000000px;}
.y3f_c00260{bottom:792.720000px;}
.y3c_c00260{bottom:831.600000px;}
.y11_c00260{bottom:832.320000px;}
.y12_c00260{bottom:833.040000px;}
.y14_c00260{bottom:834.480000px;}
.y13_c00260{bottom:835.200000px;}
.y3d_c00260{bottom:835.920000px;}
.y3b_c00260{bottom:874.080000px;}
.ye_c00260{bottom:875.520000px;}
.yf_c00260{bottom:876.240000px;}
.y10_c00260{bottom:877.680000px;}
.y3a_c00260{bottom:917.280000px;}
.yc_c00260{bottom:918.000000px;}
.yd_c00260{bottom:918.720000px;}
.y39_c00260{bottom:920.160000px;}
.yb_c00260{bottom:920.880000px;}
.ya_c00260{bottom:960.480000px;}
.y9_c00260{bottom:961.920000px;}
.y38_c00260{bottom:1003.680000px;}
.y7_c00260{bottom:1004.400000px;}
.y8_c00260{bottom:1005.120000px;}
.y6_c00260{bottom:1005.840000px;}
.y37_c00260{bottom:1046.880000px;}
.y3_c00260{bottom:1047.600000px;}
.y4_c00260{bottom:1048.320000px;}
.y5_c00260{bottom:1049.040000px;}
.y2_c00260{bottom:1051.200000px;}
.y1_c00260{bottom:1105.200000px;}
.h9_c00260{height:41.467500px;}
.ha_c00260{height:44.059219px;}
.h5_c00260{height:46.650937px;}
.h3_c00260{height:49.242656px;}
.h4_c00260{height:51.834375px;}
.hc_c00260{height:52.122656px;}
.h6_c00260{height:54.426094px;}
.he_c00260{height:57.017812px;}
.hb_c00260{height:59.609531px;}
.h8_c00260{height:62.201250px;}
.h7_c00260{height:64.792969px;}
.h2_c00260{height:67.384687px;}
.hd_c00260{height:69.976406px;}
.h1_c00260{height:1151.250000px;}
.h0_c00260{height:1151.280000px;}
.w1_c00260{width:773.250000px;}
.w0_c00260{width:773.280000px;}
.x0_c00260{left:0.000000px;}
.xe_c00260{left:60.480000px;}
.x10_c00260{left:61.920000px;}
.x1a_c00260{left:64.080000px;}
.x23_c00260{left:66.240000px;}
.xf_c00260{left:132.480000px;}
.x16_c00260{left:133.920000px;}
.x27_c00260{left:135.360000px;}
.x1d_c00260{left:188.640000px;}
.x19_c00260{left:221.040000px;}
.x1c_c00260{left:222.480000px;}
.x14_c00260{left:264.240000px;}
.x1b_c00260{left:276.480000px;}
.x15_c00260{left:307.440000px;}
.x17_c00260{left:317.520000px;}
.x1e_c00260{left:329.760000px;}
.x11_c00260{left:351.360000px;}
.x25_c00260{left:362.880000px;}
.x18_c00260{left:372.240000px;}
.x1f_c00260{left:384.480000px;}
.x12_c00260{left:403.920000px;}
.x28_c00260{left:416.880000px;}
.x20_c00260{left:427.680000px;}
.x13_c00260{left:448.560000px;}
.x21_c00260{left:470.880000px;}
.x22_c00260{left:513.360000px;}
.xa_c00260{left:546.480000px;}
.x2_c00260{left:555.840000px;}
.x8_c00260{left:557.280180px;}
.x26_c00260{left:558.720000px;}
.x9_c00260{left:576.720000px;}
.x24_c00260{left:578.160000px;}
.x3_c00260{left:609.120000px;}
.x6_c00260{left:611.280000px;}
.x4_c00260{left:642.960000px;}
.xc_c00260{left:644.400000px;}
.x1_c00260{left:674.640000px;}
.xb_c00260{left:676.080000px;}
.x7_c00260{left:685.440000px;}
.xd_c00260{left:686.880000px;}
.x5_c00260{left:705.600000px;}
.x29_c00260{left:707.040000px;}
@media print{
.v1_c00260{vertical-align:-7.680000pt;}
.v0_c00260{vertical-align:0.000000pt;}
.v2_c00260{vertical-align:2.560000pt;}
.v3_c00260{vertical-align:5.120000pt;}
.ls1_c00260{letter-spacing:0.000000pt;}
.ls0_c00260{letter-spacing:141.377493pt;}
.ws1_c00260{word-spacing:-3.888213pt;}
.ws2_c00260{word-spacing:0.000000pt;}
.ws0_c00260{word-spacing:5.555200pt;}
.fs7_c00260{font-size:40.960000pt;}
.fs8_c00260{font-size:43.520000pt;}
.fs3_c00260{font-size:46.080000pt;}
.fs1_c00260{font-size:48.640000pt;}
.fs2_c00260{font-size:51.200000pt;}
.fs4_c00260{font-size:53.760000pt;}
.fsa_c00260{font-size:56.320000pt;}
.fs9_c00260{font-size:58.880000pt;}
.fs6_c00260{font-size:61.440000pt;}
.fs5_c00260{font-size:64.000000pt;}
.fs0_c00260{font-size:66.560000pt;}
.fsb_c00260{font-size:69.120000pt;}
.y0_c00260{bottom:0.000000pt;}
.y7a_c00260{bottom:47.360000pt;}
.y7c_c00260{bottom:49.280000pt;}
.y7b_c00260{bottom:50.560000pt;}
.y7e_c00260{bottom:51.840000pt;}
.y7d_c00260{bottom:52.480000pt;}
.y79_c00260{bottom:53.120000pt;}
.y73_c00260{bottom:84.480000pt;}
.y72_c00260{bottom:86.400000pt;}
.y74_c00260{bottom:88.320000pt;}
.y77_c00260{bottom:88.960000pt;}
.y75_c00260{bottom:89.600000pt;}
.y76_c00260{bottom:90.240000pt;}
.y71_c00260{bottom:90.880000pt;}
.y78_c00260{bottom:91.520000pt;}
.y6c_c00260{bottom:124.800000pt;}
.y6d_c00260{bottom:125.440000pt;}
.y6e_c00260{bottom:127.360000pt;}
.y6f_c00260{bottom:128.000000pt;}
.y70_c00260{bottom:128.640000pt;}
.y6b_c00260{bottom:129.920000pt;}
.y67_c00260{bottom:163.200000pt;}
.y68_c00260{bottom:165.760000pt;}
.y66_c00260{bottom:167.680000pt;}
.y69_c00260{bottom:168.320000pt;}
.y6a_c00260{bottom:168.960000pt;}
.y62_c00260{bottom:201.600000pt;}
.y63_c00260{bottom:202.240000pt;}
.y64_c00260{bottom:203.520000pt;}
.y61_c00260{bottom:204.800000pt;}
.y65_c00260{bottom:205.440000pt;}
.y5d_c00260{bottom:240.000000pt;}
.y5e_c00260{bottom:240.640000pt;}
.y5f_c00260{bottom:241.920000pt;}
.y60_c00260{bottom:242.560000pt;}
.y5c_c00260{bottom:243.200000pt;}
.y56_c00260{bottom:277.760000pt;}
.y58_c00260{bottom:279.040000pt;}
.y5a_c00260{bottom:279.680000pt;}
.y57_c00260{bottom:280.320000pt;}
.y59_c00260{bottom:281.600000pt;}
.y55_c00260{bottom:282.240000pt;}
.y5b_c00260{bottom:282.880000pt;}
.y54_c00260{bottom:316.160000pt;}
.y33_c00260{bottom:318.720000pt;}
.y36_c00260{bottom:319.360000pt;}
.y53_c00260{bottom:320.000000pt;}
.y34_c00260{bottom:320.640000pt;}
.y35_c00260{bottom:321.280000pt;}
.y52_c00260{bottom:354.560000pt;}
.y30_c00260{bottom:357.120000pt;}
.y32_c00260{bottom:357.760000pt;}
.y51_c00260{bottom:358.400000pt;}
.y31_c00260{bottom:359.040000pt;}
.y4f_c00260{bottom:392.960000pt;}
.y50_c00260{bottom:393.600000pt;}
.y2e_c00260{bottom:395.520000pt;}
.y2f_c00260{bottom:396.160000pt;}
.y4c_c00260{bottom:431.360000pt;}
.y4e_c00260{bottom:432.000000pt;}
.y4d_c00260{bottom:432.640000pt;}
.y2d_c00260{bottom:433.920000pt;}
.y2c_c00260{bottom:435.200000pt;}
.y4b_c00260{bottom:470.400000pt;}
.y2a_c00260{bottom:471.680000pt;}
.y29_c00260{bottom:472.320000pt;}
.y2b_c00260{bottom:473.600000pt;}
.y4a_c00260{bottom:508.800000pt;}
.y25_c00260{bottom:510.080000pt;}
.y27_c00260{bottom:510.720000pt;}
.y49_c00260{bottom:511.360000pt;}
.y26_c00260{bottom:512.000000pt;}
.y28_c00260{bottom:512.640000pt;}
.y47_c00260{bottom:547.200000pt;}
.y48_c00260{bottom:547.840000pt;}
.y23_c00260{bottom:548.480000pt;}
.y22_c00260{bottom:549.120000pt;}
.y24_c00260{bottom:551.680000pt;}
.y44_c00260{bottom:585.600000pt;}
.y46_c00260{bottom:586.240000pt;}
.y1f_c00260{bottom:586.880000pt;}
.y43_c00260{bottom:587.520000pt;}
.y45_c00260{bottom:588.160000pt;}
.y20_c00260{bottom:588.800000pt;}
.y21_c00260{bottom:590.080000pt;}
.y42_c00260{bottom:624.000000pt;}
.y41_c00260{bottom:624.640000pt;}
.y1c_c00260{bottom:625.280000pt;}
.y1b_c00260{bottom:625.920000pt;}
.y1e_c00260{bottom:627.200000pt;}
.y1d_c00260{bottom:627.840000pt;}
.y40_c00260{bottom:662.400000pt;}
.y18_c00260{bottom:663.680000pt;}
.y1a_c00260{bottom:664.320000pt;}
.y19_c00260{bottom:665.600000pt;}
.y3e_c00260{bottom:701.440000pt;}
.y15_c00260{bottom:702.080000pt;}
.y16_c00260{bottom:703.360000pt;}
.y17_c00260{bottom:704.000000pt;}
.y3f_c00260{bottom:704.640000pt;}
.y3c_c00260{bottom:739.200000pt;}
.y11_c00260{bottom:739.840000pt;}
.y12_c00260{bottom:740.480000pt;}
.y14_c00260{bottom:741.760000pt;}
.y13_c00260{bottom:742.400000pt;}
.y3d_c00260{bottom:743.040000pt;}
.y3b_c00260{bottom:776.960000pt;}
.ye_c00260{bottom:778.240000pt;}
.yf_c00260{bottom:778.880000pt;}
.y10_c00260{bottom:780.160000pt;}
.y3a_c00260{bottom:815.360000pt;}
.yc_c00260{bottom:816.000000pt;}
.yd_c00260{bottom:816.640000pt;}
.y39_c00260{bottom:817.920000pt;}
.yb_c00260{bottom:818.560000pt;}
.ya_c00260{bottom:853.760000pt;}
.y9_c00260{bottom:855.040000pt;}
.y38_c00260{bottom:892.160000pt;}
.y7_c00260{bottom:892.800000pt;}
.y8_c00260{bottom:893.440000pt;}
.y6_c00260{bottom:894.080000pt;}
.y37_c00260{bottom:930.560000pt;}
.y3_c00260{bottom:931.200000pt;}
.y4_c00260{bottom:931.840000pt;}
.y5_c00260{bottom:932.480000pt;}
.y2_c00260{bottom:934.400000pt;}
.y1_c00260{bottom:982.400000pt;}
.h9_c00260{height:36.860000pt;}
.ha_c00260{height:39.163750pt;}
.h5_c00260{height:41.467500pt;}
.h3_c00260{height:43.771250pt;}
.h4_c00260{height:46.075000pt;}
.hc_c00260{height:46.331250pt;}
.h6_c00260{height:48.378750pt;}
.he_c00260{height:50.682500pt;}
.hb_c00260{height:52.986250pt;}
.h8_c00260{height:55.290000pt;}
.h7_c00260{height:57.593750pt;}
.h2_c00260{height:59.897500pt;}
.hd_c00260{height:62.201250pt;}
.h1_c00260{height:1023.333333pt;}
.h0_c00260{height:1023.360000pt;}
.w1_c00260{width:687.333333pt;}
.w0_c00260{width:687.360000pt;}
.x0_c00260{left:0.000000pt;}
.xe_c00260{left:53.760000pt;}
.x10_c00260{left:55.040000pt;}
.x1a_c00260{left:56.960000pt;}
.x23_c00260{left:58.880000pt;}
.xf_c00260{left:117.760000pt;}
.x16_c00260{left:119.040000pt;}
.x27_c00260{left:120.320000pt;}
.x1d_c00260{left:167.680000pt;}
.x19_c00260{left:196.480000pt;}
.x1c_c00260{left:197.760000pt;}
.x14_c00260{left:234.880000pt;}
.x1b_c00260{left:245.760000pt;}
.x15_c00260{left:273.280000pt;}
.x17_c00260{left:282.240000pt;}
.x1e_c00260{left:293.120000pt;}
.x11_c00260{left:312.320000pt;}
.x25_c00260{left:322.560000pt;}
.x18_c00260{left:330.880000pt;}
.x1f_c00260{left:341.760000pt;}
.x12_c00260{left:359.040000pt;}
.x28_c00260{left:370.560000pt;}
.x20_c00260{left:380.160000pt;}
.x13_c00260{left:398.720000pt;}
.x21_c00260{left:418.560000pt;}
.x22_c00260{left:456.320000pt;}
.xa_c00260{left:485.760000pt;}
.x2_c00260{left:494.080000pt;}
.x8_c00260{left:495.360160pt;}
.x26_c00260{left:496.640000pt;}
.x9_c00260{left:512.640000pt;}
.x24_c00260{left:513.920000pt;}
.x3_c00260{left:541.440000pt;}
.x6_c00260{left:543.360000pt;}
.x4_c00260{left:571.520000pt;}
.xc_c00260{left:572.800000pt;}
.x1_c00260{left:599.680000pt;}
.xb_c00260{left:600.960000pt;}
.x7_c00260{left:609.280000pt;}
.xd_c00260{left:610.560000pt;}
.x5_c00260{left:627.200000pt;}
.x29_c00260{left:628.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_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_f147dcc18efa99ae78bf1e26.woff2')format("woff");}.ff1_c00261{font-family:ff1_c00261;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m35_c00261{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m12_c00261{transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);}
.mc_c00261{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m2b_c00261{transform:matrix(0.238025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238025,0.000000,0.000000,0.250000,0,0);}
.mb_c00261{transform:matrix(0.239275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239275,0.000000,0.000000,0.250000,0,0);}
.m20_c00261{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m16_c00261{transform:matrix(0.242050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242050,0.000000,0.000000,0.250000,0,0);}
.m8_c00261{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00261{transform:matrix(0.242575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242575,0.000000,0.000000,0.250000,0,0);}
.me_c00261{transform:matrix(0.243200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243200,0.000000,0.000000,0.250000,0,0);}
.m32_c00261{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m19_c00261{transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);}
.m26_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);}
.m1a_c00261{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);}
.m2e_c00261{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m17_c00261{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m11_c00261{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);}
.m2f_c00261{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);}
.m27_c00261{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m5_c00261{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);}
.m34_c00261{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00261{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m3_c00261{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m10_c00261{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m7_c00261{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_c00261{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00261{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m14_c00261{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m15_c00261{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00261{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00261{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m29_c00261{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1_c00261{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m25_c00261{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m28_c00261{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m6_c00261{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.md_c00261{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m4_c00261{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m33_c00261{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m18_c00261{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);}
.m2d_c00261{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m2_c00261{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m13_c00261{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m31_c00261{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m21_c00261{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m0_c00261{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00261{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);}
.m24_c00261{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m23_c00261{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.ma_c00261{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00261{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_c00261{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m22_c00261{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m30_c00261{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m36_c00261{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.v1_c00261{vertical-align:-5.760000px;}
.v0_c00261{vertical-align:0.000000px;}
.v2_c00261{vertical-align:2.880000px;}
.ls0_c00261{letter-spacing:0.000000px;}
.sc__c00261{text-shadow:none;}
.sc0_c00261{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00261{-webkit-text-stroke:0px transparent;}
.sc0_c00261{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00261{word-spacing:0.000000px;}
.ws0_c00261{word-spacing:13.140000px;}
.ws1_c00261{word-spacing:45.137376px;}
.ws2_c00261{word-spacing:48.570000px;}
.fc0_c00261{color:transparent;}
.fsa_c00261{font-size:40.320000px;}
.fs5_c00261{font-size:48.960000px;}
.fs8_c00261{font-size:51.840000px;}
.fs9_c00261{font-size:54.720000px;}
.fsc_c00261{font-size:57.600000px;}
.fs0_c00261{font-size:60.480000px;}
.fs2_c00261{font-size:63.360000px;}
.fs3_c00261{font-size:66.240000px;}
.fs7_c00261{font-size:69.120000px;}
.fs6_c00261{font-size:72.000000px;}
.fs4_c00261{font-size:74.880000px;}
.fs1_c00261{font-size:77.760000px;}
.fsb_c00261{font-size:80.640000px;}
.y0_c00261{bottom:0.000000px;}
.y3d_c00261{bottom:23.760000px;}
.y6e_c00261{bottom:25.920000px;}
.y6d_c00261{bottom:26.640000px;}
.y6f_c00261{bottom:27.360000px;}
.y3c_c00261{bottom:29.520000px;}
.y3b_c00261{bottom:66.240000px;}
.y6c_c00261{bottom:69.120000px;}
.y3a_c00261{bottom:72.000000px;}
.y37_c00261{bottom:110.160000px;}
.y38_c00261{bottom:110.880000px;}
.y6a_c00261{bottom:112.320000px;}
.y39_c00261{bottom:113.760000px;}
.y36_c00261{bottom:115.200000px;}
.y6b_c00261{bottom:116.640000px;}
.y35_c00261{bottom:152.640000px;}
.y67_c00261{bottom:156.240000px;}
.y69_c00261{bottom:156.960000px;}
.y34_c00261{bottom:157.680000px;}
.y68_c00261{bottom:158.400000px;}
.y33_c00261{bottom:196.560000px;}
.y32_c00261{bottom:198.720000px;}
.y2f_c00261{bottom:228.960000px;}
.y30_c00261{bottom:230.400000px;}
.y65_c00261{bottom:231.840000px;}
.y31_c00261{bottom:232.560000px;}
.y2e_c00261{bottom:233.280000px;}
.y66_c00261{bottom:234.000000px;}
.y2d_c00261{bottom:272.880000px;}
.y63_c00261{bottom:275.040000px;}
.y2c_c00261{bottom:275.760000px;}
.y64_c00261{bottom:277.200000px;}
.y2b_c00261{bottom:316.080000px;}
.y61_c00261{bottom:318.240000px;}
.y2a_c00261{bottom:319.680000px;}
.y62_c00261{bottom:320.400000px;}
.y27_c00261{bottom:359.280000px;}
.y5f_c00261{bottom:361.440000px;}
.y26_c00261{bottom:362.160000px;}
.y28_c00261{bottom:362.880000px;}
.y29_c00261{bottom:363.600000px;}
.y60_c00261{bottom:364.320000px;}
.y25_c00261{bottom:402.480000px;}
.y5d_c00261{bottom:403.920000px;}
.y5e_c00261{bottom:404.640000px;}
.y24_c00261{bottom:405.360000px;}
.y5c_c00261{bottom:406.800000px;}
.y23_c00261{bottom:446.400000px;}
.y5b_c00261{bottom:447.120000px;}
.y22_c00261{bottom:447.840000px;}
.y5a_c00261{bottom:450.720000px;}
.y21_c00261{bottom:488.880000px;}
.y59_c00261{bottom:491.040000px;}
.y20_c00261{bottom:492.480000px;}
.y1f_c00261{bottom:532.800000px;}
.y56_c00261{bottom:534.240000px;}
.y1e_c00261{bottom:534.960000px;}
.y58_c00261{bottom:535.680000px;}
.y57_c00261{bottom:536.400000px;}
.y1d_c00261{bottom:575.280000px;}
.y55_c00261{bottom:576.720000px;}
.y1c_c00261{bottom:578.160000px;}
.y54_c00261{bottom:578.880000px;}
.y1b_c00261{bottom:618.480000px;}
.y52_c00261{bottom:619.920000px;}
.y1a_c00261{bottom:620.640000px;}
.y53_c00261{bottom:622.080000px;}
.y18_c00261{bottom:661.680000px;}
.y19_c00261{bottom:662.400000px;}
.y17_c00261{bottom:663.120000px;}
.y16_c00261{bottom:704.880000px;}
.y15_c00261{bottom:705.600000px;}
.y14_c00261{bottom:706.320000px;}
.y4f_c00261{bottom:707.040000px;}
.y51_c00261{bottom:707.760000px;}
.y50_c00261{bottom:708.480000px;}
.y13_c00261{bottom:738.000000px;}
.y12_c00261{bottom:747.360000px;}
.y11_c00261{bottom:748.080000px;}
.y4e_c00261{bottom:748.800000px;}
.y10_c00261{bottom:749.520000px;}
.y4d_c00261{bottom:750.240000px;}
.yf_c00261{bottom:791.280000px;}
.ye_c00261{bottom:792.000000px;}
.y4c_c00261{bottom:792.720000px;}
.yd_c00261{bottom:834.480000px;}
.yc_c00261{bottom:835.200000px;}
.y49_c00261{bottom:835.920000px;}
.y4a_c00261{bottom:836.640000px;}
.y4b_c00261{bottom:837.360000px;}
.yb_c00261{bottom:878.400000px;}
.y47_c00261{bottom:879.120000px;}
.y48_c00261{bottom:879.840000px;}
.y9_c00261{bottom:920.880000px;}
.y8_c00261{bottom:921.600000px;}
.y46_c00261{bottom:923.040000px;}
.y45_c00261{bottom:923.760000px;}
.ya_c00261{bottom:924.480000px;}
.y6_c00261{bottom:964.080000px;}
.y5_c00261{bottom:964.800000px;}
.y7_c00261{bottom:966.240000px;}
.y44_c00261{bottom:967.680000px;}
.y4_c00261{bottom:1007.280000px;}
.y42_c00261{bottom:1008.000000px;}
.y3_c00261{bottom:1008.720000px;}
.y43_c00261{bottom:1009.440000px;}
.y41_c00261{bottom:1010.880000px;}
.y2_c00261{bottom:1051.200000px;}
.y40_c00261{bottom:1051.920000px;}
.y3f_c00261{bottom:1052.640000px;}
.y1_c00261{bottom:1053.360000px;}
.y3e_c00261{bottom:1119.600000px;}
.hc_c00261{height:36.284062px;}
.h7_c00261{height:44.059219px;}
.ha_c00261{height:46.650937px;}
.hb_c00261{height:49.242656px;}
.he_c00261{height:51.834375px;}
.h2_c00261{height:54.426094px;}
.h4_c00261{height:57.017812px;}
.h5_c00261{height:59.609531px;}
.h9_c00261{height:62.201250px;}
.h8_c00261{height:64.792969px;}
.h6_c00261{height:67.384687px;}
.h3_c00261{height:69.976406px;}
.hd_c00261{height:72.568125px;}
.h0_c00261{height:1158.480000px;}
.h1_c00261{height:1158.750000px;}
.w1_c00261{width:785.250000px;}
.w0_c00261{width:785.520000px;}
.x0_c00261{left:0.000000px;}
.x1_c00261{left:73.440000px;}
.xf_c00261{left:74.880000px;}
.x18_c00261{left:76.320000px;}
.xe_c00261{left:144.720000px;}
.x2_c00261{left:146.880000px;}
.x17_c00261{left:199.440000px;}
.xb_c00261{left:234.000000px;}
.x3_c00261{left:267.120000px;}
.xa_c00261{left:276.480000px;}
.x5_c00261{left:277.920000px;}
.x12_c00261{left:287.280000px;}
.x15_c00261{left:298.080000px;}
.x10_c00261{left:330.480000px;}
.x13_c00261{left:341.280000px;}
.x16_c00261{left:352.800000px;}
.xc_c00261{left:363.600000px;}
.x11_c00261{left:374.400000px;}
.x14_c00261{left:385.200000px;}
.x4_c00261{left:397.440000px;}
.x6_c00261{left:416.880000px;}
.x7_c00261{left:472.320000px;}
.xd_c00261{left:503.280000px;}
.x8_c00261{left:525.600000px;}
.x24_c00261{left:568.800000px;}
.x1a_c00261{left:570.240000px;}
.x9_c00261{left:581.040000px;}
.x23_c00261{left:589.680000px;}
.x1b_c00261{left:591.120000px;}
.x2a_c00261{left:622.080000px;}
.x25_c00261{left:623.520000px;}
.x1d_c00261{left:624.960000px;}
.x27_c00261{left:633.600000px;}
.x20_c00261{left:635.040000px;}
.x2c_c00261{left:654.480000px;}
.x26_c00261{left:655.920000px;}
.x1e_c00261{left:657.360000px;}
.x28_c00261{left:665.280000px;}
.x21_c00261{left:667.440000px;}
.x2b_c00261{left:696.960000px;}
.x19_c00261{left:698.400000px;}
.x1c_c00261{left:699.840000px;}
.x29_c00261{left:708.480000px;}
.x22_c00261{left:710.640000px;}
.x2d_c00261{left:717.840000px;}
.x1f_c00261{left:719.280000px;}
@media print{
.v1_c00261{vertical-align:-5.120000pt;}
.v0_c00261{vertical-align:0.000000pt;}
.v2_c00261{vertical-align:2.560000pt;}
.ls0_c00261{letter-spacing:0.000000pt;}
.ws3_c00261{word-spacing:0.000000pt;}
.ws0_c00261{word-spacing:11.680000pt;}
.ws1_c00261{word-spacing:40.122112pt;}
.ws2_c00261{word-spacing:43.173333pt;}
.fsa_c00261{font-size:35.840000pt;}
.fs5_c00261{font-size:43.520000pt;}
.fs8_c00261{font-size:46.080000pt;}
.fs9_c00261{font-size:48.640000pt;}
.fsc_c00261{font-size:51.200000pt;}
.fs0_c00261{font-size:53.760000pt;}
.fs2_c00261{font-size:56.320000pt;}
.fs3_c00261{font-size:58.880000pt;}
.fs7_c00261{font-size:61.440000pt;}
.fs6_c00261{font-size:64.000000pt;}
.fs4_c00261{font-size:66.560000pt;}
.fs1_c00261{font-size:69.120000pt;}
.fsb_c00261{font-size:71.680000pt;}
.y0_c00261{bottom:0.000000pt;}
.y3d_c00261{bottom:21.120000pt;}
.y6e_c00261{bottom:23.040000pt;}
.y6d_c00261{bottom:23.680000pt;}
.y6f_c00261{bottom:24.320000pt;}
.y3c_c00261{bottom:26.240000pt;}
.y3b_c00261{bottom:58.880000pt;}
.y6c_c00261{bottom:61.440000pt;}
.y3a_c00261{bottom:64.000000pt;}
.y37_c00261{bottom:97.920000pt;}
.y38_c00261{bottom:98.560000pt;}
.y6a_c00261{bottom:99.840000pt;}
.y39_c00261{bottom:101.120000pt;}
.y36_c00261{bottom:102.400000pt;}
.y6b_c00261{bottom:103.680000pt;}
.y35_c00261{bottom:135.680000pt;}
.y67_c00261{bottom:138.880000pt;}
.y69_c00261{bottom:139.520000pt;}
.y34_c00261{bottom:140.160000pt;}
.y68_c00261{bottom:140.800000pt;}
.y33_c00261{bottom:174.720000pt;}
.y32_c00261{bottom:176.640000pt;}
.y2f_c00261{bottom:203.520000pt;}
.y30_c00261{bottom:204.800000pt;}
.y65_c00261{bottom:206.080000pt;}
.y31_c00261{bottom:206.720000pt;}
.y2e_c00261{bottom:207.360000pt;}
.y66_c00261{bottom:208.000000pt;}
.y2d_c00261{bottom:242.560000pt;}
.y63_c00261{bottom:244.480000pt;}
.y2c_c00261{bottom:245.120000pt;}
.y64_c00261{bottom:246.400000pt;}
.y2b_c00261{bottom:280.960000pt;}
.y61_c00261{bottom:282.880000pt;}
.y2a_c00261{bottom:284.160000pt;}
.y62_c00261{bottom:284.800000pt;}
.y27_c00261{bottom:319.360000pt;}
.y5f_c00261{bottom:321.280000pt;}
.y26_c00261{bottom:321.920000pt;}
.y28_c00261{bottom:322.560000pt;}
.y29_c00261{bottom:323.200000pt;}
.y60_c00261{bottom:323.840000pt;}
.y25_c00261{bottom:357.760000pt;}
.y5d_c00261{bottom:359.040000pt;}
.y5e_c00261{bottom:359.680000pt;}
.y24_c00261{bottom:360.320000pt;}
.y5c_c00261{bottom:361.600000pt;}
.y23_c00261{bottom:396.800000pt;}
.y5b_c00261{bottom:397.440000pt;}
.y22_c00261{bottom:398.080000pt;}
.y5a_c00261{bottom:400.640000pt;}
.y21_c00261{bottom:434.560000pt;}
.y59_c00261{bottom:436.480000pt;}
.y20_c00261{bottom:437.760000pt;}
.y1f_c00261{bottom:473.600000pt;}
.y56_c00261{bottom:474.880000pt;}
.y1e_c00261{bottom:475.520000pt;}
.y58_c00261{bottom:476.160000pt;}
.y57_c00261{bottom:476.800000pt;}
.y1d_c00261{bottom:511.360000pt;}
.y55_c00261{bottom:512.640000pt;}
.y1c_c00261{bottom:513.920000pt;}
.y54_c00261{bottom:514.560000pt;}
.y1b_c00261{bottom:549.760000pt;}
.y52_c00261{bottom:551.040000pt;}
.y1a_c00261{bottom:551.680000pt;}
.y53_c00261{bottom:552.960000pt;}
.y18_c00261{bottom:588.160000pt;}
.y19_c00261{bottom:588.800000pt;}
.y17_c00261{bottom:589.440000pt;}
.y16_c00261{bottom:626.560000pt;}
.y15_c00261{bottom:627.200000pt;}
.y14_c00261{bottom:627.840000pt;}
.y4f_c00261{bottom:628.480000pt;}
.y51_c00261{bottom:629.120000pt;}
.y50_c00261{bottom:629.760000pt;}
.y13_c00261{bottom:656.000000pt;}
.y12_c00261{bottom:664.320000pt;}
.y11_c00261{bottom:664.960000pt;}
.y4e_c00261{bottom:665.600000pt;}
.y10_c00261{bottom:666.240000pt;}
.y4d_c00261{bottom:666.880000pt;}
.yf_c00261{bottom:703.360000pt;}
.ye_c00261{bottom:704.000000pt;}
.y4c_c00261{bottom:704.640000pt;}
.yd_c00261{bottom:741.760000pt;}
.yc_c00261{bottom:742.400000pt;}
.y49_c00261{bottom:743.040000pt;}
.y4a_c00261{bottom:743.680000pt;}
.y4b_c00261{bottom:744.320000pt;}
.yb_c00261{bottom:780.800000pt;}
.y47_c00261{bottom:781.440000pt;}
.y48_c00261{bottom:782.080000pt;}
.y9_c00261{bottom:818.560000pt;}
.y8_c00261{bottom:819.200000pt;}
.y46_c00261{bottom:820.480000pt;}
.y45_c00261{bottom:821.120000pt;}
.ya_c00261{bottom:821.760000pt;}
.y6_c00261{bottom:856.960000pt;}
.y5_c00261{bottom:857.600000pt;}
.y7_c00261{bottom:858.880000pt;}
.y44_c00261{bottom:860.160000pt;}
.y4_c00261{bottom:895.360000pt;}
.y42_c00261{bottom:896.000000pt;}
.y3_c00261{bottom:896.640000pt;}
.y43_c00261{bottom:897.280000pt;}
.y41_c00261{bottom:898.560000pt;}
.y2_c00261{bottom:934.400000pt;}
.y40_c00261{bottom:935.040000pt;}
.y3f_c00261{bottom:935.680000pt;}
.y1_c00261{bottom:936.320000pt;}
.y3e_c00261{bottom:995.200000pt;}
.hc_c00261{height:32.252500pt;}
.h7_c00261{height:39.163750pt;}
.ha_c00261{height:41.467500pt;}
.hb_c00261{height:43.771250pt;}
.he_c00261{height:46.075000pt;}
.h2_c00261{height:48.378750pt;}
.h4_c00261{height:50.682500pt;}
.h5_c00261{height:52.986250pt;}
.h9_c00261{height:55.290000pt;}
.h8_c00261{height:57.593750pt;}
.h6_c00261{height:59.897500pt;}
.h3_c00261{height:62.201250pt;}
.hd_c00261{height:64.505000pt;}
.h0_c00261{height:1029.760000pt;}
.h1_c00261{height:1030.000000pt;}
.w1_c00261{width:698.000000pt;}
.w0_c00261{width:698.240000pt;}
.x0_c00261{left:0.000000pt;}
.x1_c00261{left:65.280000pt;}
.xf_c00261{left:66.560000pt;}
.x18_c00261{left:67.840000pt;}
.xe_c00261{left:128.640000pt;}
.x2_c00261{left:130.560000pt;}
.x17_c00261{left:177.280000pt;}
.xb_c00261{left:208.000000pt;}
.x3_c00261{left:237.440000pt;}
.xa_c00261{left:245.760000pt;}
.x5_c00261{left:247.040000pt;}
.x12_c00261{left:255.360000pt;}
.x15_c00261{left:264.960000pt;}
.x10_c00261{left:293.760000pt;}
.x13_c00261{left:303.360000pt;}
.x16_c00261{left:313.600000pt;}
.xc_c00261{left:323.200000pt;}
.x11_c00261{left:332.800000pt;}
.x14_c00261{left:342.400000pt;}
.x4_c00261{left:353.280000pt;}
.x6_c00261{left:370.560000pt;}
.x7_c00261{left:419.840000pt;}
.xd_c00261{left:447.360000pt;}
.x8_c00261{left:467.200000pt;}
.x24_c00261{left:505.600000pt;}
.x1a_c00261{left:506.880000pt;}
.x9_c00261{left:516.480000pt;}
.x23_c00261{left:524.160000pt;}
.x1b_c00261{left:525.440000pt;}
.x2a_c00261{left:552.960000pt;}
.x25_c00261{left:554.240000pt;}
.x1d_c00261{left:555.520000pt;}
.x27_c00261{left:563.200000pt;}
.x20_c00261{left:564.480000pt;}
.x2c_c00261{left:581.760000pt;}
.x26_c00261{left:583.040000pt;}
.x1e_c00261{left:584.320000pt;}
.x28_c00261{left:591.360000pt;}
.x21_c00261{left:593.280000pt;}
.x2b_c00261{left:619.520000pt;}
.x19_c00261{left:620.800000pt;}
.x1c_c00261{left:622.080000pt;}
.x29_c00261{left:629.760000pt;}
.x22_c00261{left:631.680000pt;}
.x2d_c00261{left:638.080000pt;}
.x1f_c00261{left:639.360000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_351122c80c2a7e4d228ac13d.woff2')format("woff");}.ff1_c00262{font-family:ff1_c00262;line-height:1.109863;font-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_c00262{transform:matrix(0.205350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205350,0.000000,0.000000,0.250000,0,0);}
.m30_c00262{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_c00262{transform:matrix(0.232575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232575,0.000000,0.000000,0.250000,0,0);}
.mf_c00262{transform:matrix(0.233800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233800,0.000000,0.000000,0.250000,0,0);}
.m22_c00262{transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);}
.m7_c00262{transform:matrix(0.238300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238300,0.000000,0.000000,0.250000,0,0);}
.m3d_c00262{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m39_c00262{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.mb_c00262{transform:matrix(0.245375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245375,0.000000,0.000000,0.250000,0,0);}
.m20_c00262{transform:matrix(0.246300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246300,0.000000,0.000000,0.250000,0,0);}
.m35_c00262{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m4_c00262{transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);}
.m5_c00262{transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);}
.m3_c00262{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);}
.m26_c00262{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00262{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_c00262{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m28_c00262{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00262{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);}
.m29_c00262{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m11_c00262{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);}
.m23_c00262{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00262{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.me_c00262{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00262{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00262{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m12_c00262{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m9_c00262{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_c00262{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m8_c00262{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00262{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1_c00262{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m25_c00262{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.ma_c00262{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m37_c00262{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m15_c00262{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00262{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m16_c00262{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00262{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m24_c00262{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m0_c00262{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00262{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m38_c00262{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.md_c00262{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m21_c00262{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m2_c00262{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_c00262{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m6_c00262{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m41_c00262{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);}
.m34_c00262{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m31_c00262{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);}
.m33_c00262{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00262{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00262{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);}
.m2d_c00262{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);}
.m2b_c00262{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);}
.m27_c00262{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m10_c00262{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00262{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m36_c00262{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m18_c00262{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00262{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);}
.m2f_c00262{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00262{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00262{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);}
.m32_c00262{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.v0_c00262{vertical-align:0.000000px;}
.ls0_c00262{letter-spacing:0.000000px;}
.sc__c00262{text-shadow:none;}
.sc0_c00262{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00262{-webkit-text-stroke:0px transparent;}
.sc0_c00262{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00262{word-spacing:0.000000px;}
.fc0_c00262{color:transparent;}
.fs8_c00262{font-size:37.440000px;}
.fs6_c00262{font-size:51.840000px;}
.fsa_c00262{font-size:54.720000px;}
.fsb_c00262{font-size:57.600000px;}
.fs3_c00262{font-size:60.480000px;}
.fs2_c00262{font-size:63.360000px;}
.fs0_c00262{font-size:66.240000px;}
.fs5_c00262{font-size:69.120000px;}
.fs7_c00262{font-size:72.000000px;}
.fs4_c00262{font-size:74.880000px;}
.fs1_c00262{font-size:77.760000px;}
.fs9_c00262{font-size:80.640000px;}
.y0_c00262{bottom:0.000000px;}
.y41_c00262{bottom:28.800000px;}
.y3f_c00262{bottom:30.240000px;}
.y72_c00262{bottom:31.680000px;}
.y73_c00262{bottom:32.400000px;}
.y40_c00262{bottom:33.120000px;}
.y71_c00262{bottom:33.840000px;}
.y3e_c00262{bottom:35.280000px;}
.y3d_c00262{bottom:77.040000px;}
.y39_c00262{bottom:104.400000px;}
.y3c_c00262{bottom:105.120000px;}
.y3b_c00262{bottom:105.840000px;}
.y3a_c00262{bottom:108.000000px;}
.y70_c00262{bottom:108.720000px;}
.y38_c00262{bottom:110.160000px;}
.y37_c00262{bottom:148.320000px;}
.y35_c00262{bottom:149.040000px;}
.y6f_c00262{bottom:151.920000px;}
.y36_c00262{bottom:152.640000px;}
.y34_c00262{bottom:154.080000px;}
.y33_c00262{bottom:191.520000px;}
.y6b_c00262{bottom:194.400000px;}
.y6e_c00262{bottom:195.120000px;}
.y6d_c00262{bottom:195.840000px;}
.y32_c00262{bottom:196.560000px;}
.y6c_c00262{bottom:197.280000px;}
.y31_c00262{bottom:235.440000px;}
.y69_c00262{bottom:236.880000px;}
.y68_c00262{bottom:237.600000px;}
.y6a_c00262{bottom:238.320000px;}
.y30_c00262{bottom:239.760000px;}
.y2f_c00262{bottom:279.360000px;}
.y66_c00262{bottom:281.520000px;}
.y2e_c00262{bottom:282.960000px;}
.y67_c00262{bottom:283.680000px;}
.y2d_c00262{bottom:321.120000px;}
.y2c_c00262{bottom:321.840000px;}
.y64_c00262{bottom:323.280000px;}
.y63_c00262{bottom:324.000000px;}
.y65_c00262{bottom:324.720000px;}
.y2b_c00262{bottom:326.160000px;}
.y2a_c00262{bottom:365.040000px;}
.y60_c00262{bottom:367.200000px;}
.y62_c00262{bottom:367.920000px;}
.y61_c00262{bottom:368.640000px;}
.y29_c00262{bottom:370.080000px;}
.y28_c00262{bottom:408.240000px;}
.y5d_c00262{bottom:409.680000px;}
.y5f_c00262{bottom:410.400000px;}
.y5e_c00262{bottom:411.120000px;}
.y27_c00262{bottom:411.840000px;}
.y26_c00262{bottom:451.440000px;}
.y5b_c00262{bottom:452.880000px;}
.y5a_c00262{bottom:453.600000px;}
.y25_c00262{bottom:455.040000px;}
.y5c_c00262{bottom:455.760000px;}
.y23_c00262{bottom:494.640000px;}
.y24_c00262{bottom:496.080000px;}
.y21_c00262{bottom:527.040000px;}
.y22_c00262{bottom:528.480000px;}
.y58_c00262{bottom:529.200000px;}
.y1f_c00262{bottom:529.920000px;}
.y59_c00262{bottom:530.640000px;}
.y20_c00262{bottom:532.080000px;}
.y1e_c00262{bottom:570.240000px;}
.y57_c00262{bottom:570.960000px;}
.y1d_c00262{bottom:572.400000px;}
.y56_c00262{bottom:573.840000px;}
.y1b_c00262{bottom:613.440000px;}
.y54_c00262{bottom:614.160000px;}
.y1a_c00262{bottom:615.600000px;}
.y55_c00262{bottom:617.040000px;}
.y1c_c00262{bottom:617.760000px;}
.y17_c00262{bottom:656.640000px;}
.y19_c00262{bottom:657.360000px;}
.y53_c00262{bottom:658.080000px;}
.y18_c00262{bottom:658.800000px;}
.y16_c00262{bottom:659.520000px;}
.y15_c00262{bottom:700.560000px;}
.y51_c00262{bottom:701.280000px;}
.y52_c00262{bottom:702.000000px;}
.y14_c00262{bottom:702.720000px;}
.y11_c00262{bottom:743.760000px;}
.y13_c00262{bottom:744.480000px;}
.y4f_c00262{bottom:745.200000px;}
.y50_c00262{bottom:745.920000px;}
.y10_c00262{bottom:746.640000px;}
.y12_c00262{bottom:748.080000px;}
.yf_c00262{bottom:786.960000px;}
.ye_c00262{bottom:788.400000px;}
.y4d_c00262{bottom:789.840000px;}
.y4e_c00262{bottom:790.560000px;}
.yc_c00262{bottom:830.160000px;}
.yd_c00262{bottom:830.880000px;}
.yb_c00262{bottom:831.600000px;}
.y4c_c00262{bottom:832.320000px;}
.y9_c00262{bottom:874.080000px;}
.ya_c00262{bottom:874.800000px;}
.y8_c00262{bottom:875.520000px;}
.y4b_c00262{bottom:876.240000px;}
.y4a_c00262{bottom:876.960000px;}
.y7_c00262{bottom:916.560000px;}
.y48_c00262{bottom:917.280000px;}
.y6_c00262{bottom:918.000000px;}
.y49_c00262{bottom:919.440000px;}
.y5_c00262{bottom:959.760000px;}
.y4_c00262{bottom:961.200000px;}
.y47_c00262{bottom:961.920000px;}
.y46_c00262{bottom:962.640000px;}
.y3_c00262{bottom:1002.960000px;}
.y2_c00262{bottom:1003.680000px;}
.y45_c00262{bottom:1004.400000px;}
.y44_c00262{bottom:1005.120000px;}
.y1_c00262{bottom:1046.160000px;}
.y43_c00262{bottom:1047.600000px;}
.y42_c00262{bottom:1112.400000px;}
.h9_c00262{height:33.692344px;}
.h7_c00262{height:46.650937px;}
.hb_c00262{height:49.242656px;}
.hc_c00262{height:51.834375px;}
.h4_c00262{height:54.426094px;}
.h3_c00262{height:57.017812px;}
.h1_c00262{height:59.609531px;}
.h6_c00262{height:62.201250px;}
.h8_c00262{height:64.792969px;}
.h5_c00262{height:67.384687px;}
.h2_c00262{height:69.976406px;}
.ha_c00262{height:72.568125px;}
.h0_c00262{height:1152.000000px;}
.w0_c00262{width:774.720000px;}
.w1_c00262{width:774.750000px;}
.x0_c00262{left:0.000000px;}
.x1_c00262{left:69.840000px;}
.x6_c00262{left:71.280000px;}
.xe_c00262{left:72.720000px;}
.x10_c00262{left:74.160000px;}
.x2_c00262{left:141.840000px;}
.x9_c00262{left:185.040000px;}
.x3_c00262{left:229.680000px;}
.xc_c00262{left:239.760000px;}
.x7_c00262{left:262.080000px;}
.xf_c00262{left:272.160000px;}
.x5_c00262{left:283.680000px;}
.xa_c00262{left:294.480000px;}
.x8_c00262{left:304.560000px;}
.x11_c00262{left:325.440000px;}
.x13_c00262{left:326.880000px;}
.x4_c00262{left:358.560000px;}
.xd_c00262{left:380.880000px;}
.xb_c00262{left:424.080000px;}
.x12_c00262{left:434.160000px;}
.x20_c00262{left:553.680000px;}
.x1e_c00262{left:563.760000px;}
.x15_c00262{left:565.200000px;}
.x23_c00262{left:583.920000px;}
.x16_c00262{left:585.360000px;}
.x1f_c00262{left:617.760000px;}
.x1b_c00262{left:619.200000px;}
.x18_c00262{left:630.000000px;}
.x22_c00262{left:650.160000px;}
.x1c_c00262{left:651.600000px;}
.x19_c00262{left:662.400000px;}
.x21_c00262{left:683.280000px;}
.x17_c00262{left:692.640000px;}
.x14_c00262{left:694.800000px;}
.x1a_c00262{left:704.160000px;}
.x1d_c00262{left:714.240000px;}
@media print{
.v0_c00262{vertical-align:0.000000pt;}
.ls0_c00262{letter-spacing:0.000000pt;}
.ws0_c00262{word-spacing:0.000000pt;}
.fs8_c00262{font-size:33.280000pt;}
.fs6_c00262{font-size:46.080000pt;}
.fsa_c00262{font-size:48.640000pt;}
.fsb_c00262{font-size:51.200000pt;}
.fs3_c00262{font-size:53.760000pt;}
.fs2_c00262{font-size:56.320000pt;}
.fs0_c00262{font-size:58.880000pt;}
.fs5_c00262{font-size:61.440000pt;}
.fs7_c00262{font-size:64.000000pt;}
.fs4_c00262{font-size:66.560000pt;}
.fs1_c00262{font-size:69.120000pt;}
.fs9_c00262{font-size:71.680000pt;}
.y0_c00262{bottom:0.000000pt;}
.y41_c00262{bottom:25.600000pt;}
.y3f_c00262{bottom:26.880000pt;}
.y72_c00262{bottom:28.160000pt;}
.y73_c00262{bottom:28.800000pt;}
.y40_c00262{bottom:29.440000pt;}
.y71_c00262{bottom:30.080000pt;}
.y3e_c00262{bottom:31.360000pt;}
.y3d_c00262{bottom:68.480000pt;}
.y39_c00262{bottom:92.800000pt;}
.y3c_c00262{bottom:93.440000pt;}
.y3b_c00262{bottom:94.080000pt;}
.y3a_c00262{bottom:96.000000pt;}
.y70_c00262{bottom:96.640000pt;}
.y38_c00262{bottom:97.920000pt;}
.y37_c00262{bottom:131.840000pt;}
.y35_c00262{bottom:132.480000pt;}
.y6f_c00262{bottom:135.040000pt;}
.y36_c00262{bottom:135.680000pt;}
.y34_c00262{bottom:136.960000pt;}
.y33_c00262{bottom:170.240000pt;}
.y6b_c00262{bottom:172.800000pt;}
.y6e_c00262{bottom:173.440000pt;}
.y6d_c00262{bottom:174.080000pt;}
.y32_c00262{bottom:174.720000pt;}
.y6c_c00262{bottom:175.360000pt;}
.y31_c00262{bottom:209.280000pt;}
.y69_c00262{bottom:210.560000pt;}
.y68_c00262{bottom:211.200000pt;}
.y6a_c00262{bottom:211.840000pt;}
.y30_c00262{bottom:213.120000pt;}
.y2f_c00262{bottom:248.320000pt;}
.y66_c00262{bottom:250.240000pt;}
.y2e_c00262{bottom:251.520000pt;}
.y67_c00262{bottom:252.160000pt;}
.y2d_c00262{bottom:285.440000pt;}
.y2c_c00262{bottom:286.080000pt;}
.y64_c00262{bottom:287.360000pt;}
.y63_c00262{bottom:288.000000pt;}
.y65_c00262{bottom:288.640000pt;}
.y2b_c00262{bottom:289.920000pt;}
.y2a_c00262{bottom:324.480000pt;}
.y60_c00262{bottom:326.400000pt;}
.y62_c00262{bottom:327.040000pt;}
.y61_c00262{bottom:327.680000pt;}
.y29_c00262{bottom:328.960000pt;}
.y28_c00262{bottom:362.880000pt;}
.y5d_c00262{bottom:364.160000pt;}
.y5f_c00262{bottom:364.800000pt;}
.y5e_c00262{bottom:365.440000pt;}
.y27_c00262{bottom:366.080000pt;}
.y26_c00262{bottom:401.280000pt;}
.y5b_c00262{bottom:402.560000pt;}
.y5a_c00262{bottom:403.200000pt;}
.y25_c00262{bottom:404.480000pt;}
.y5c_c00262{bottom:405.120000pt;}
.y23_c00262{bottom:439.680000pt;}
.y24_c00262{bottom:440.960000pt;}
.y21_c00262{bottom:468.480000pt;}
.y22_c00262{bottom:469.760000pt;}
.y58_c00262{bottom:470.400000pt;}
.y1f_c00262{bottom:471.040000pt;}
.y59_c00262{bottom:471.680000pt;}
.y20_c00262{bottom:472.960000pt;}
.y1e_c00262{bottom:506.880000pt;}
.y57_c00262{bottom:507.520000pt;}
.y1d_c00262{bottom:508.800000pt;}
.y56_c00262{bottom:510.080000pt;}
.y1b_c00262{bottom:545.280000pt;}
.y54_c00262{bottom:545.920000pt;}
.y1a_c00262{bottom:547.200000pt;}
.y55_c00262{bottom:548.480000pt;}
.y1c_c00262{bottom:549.120000pt;}
.y17_c00262{bottom:583.680000pt;}
.y19_c00262{bottom:584.320000pt;}
.y53_c00262{bottom:584.960000pt;}
.y18_c00262{bottom:585.600000pt;}
.y16_c00262{bottom:586.240000pt;}
.y15_c00262{bottom:622.720000pt;}
.y51_c00262{bottom:623.360000pt;}
.y52_c00262{bottom:624.000000pt;}
.y14_c00262{bottom:624.640000pt;}
.y11_c00262{bottom:661.120000pt;}
.y13_c00262{bottom:661.760000pt;}
.y4f_c00262{bottom:662.400000pt;}
.y50_c00262{bottom:663.040000pt;}
.y10_c00262{bottom:663.680000pt;}
.y12_c00262{bottom:664.960000pt;}
.yf_c00262{bottom:699.520000pt;}
.ye_c00262{bottom:700.800000pt;}
.y4d_c00262{bottom:702.080000pt;}
.y4e_c00262{bottom:702.720000pt;}
.yc_c00262{bottom:737.920000pt;}
.yd_c00262{bottom:738.560000pt;}
.yb_c00262{bottom:739.200000pt;}
.y4c_c00262{bottom:739.840000pt;}
.y9_c00262{bottom:776.960000pt;}
.ya_c00262{bottom:777.600000pt;}
.y8_c00262{bottom:778.240000pt;}
.y4b_c00262{bottom:778.880000pt;}
.y4a_c00262{bottom:779.520000pt;}
.y7_c00262{bottom:814.720000pt;}
.y48_c00262{bottom:815.360000pt;}
.y6_c00262{bottom:816.000000pt;}
.y49_c00262{bottom:817.280000pt;}
.y5_c00262{bottom:853.120000pt;}
.y4_c00262{bottom:854.400000pt;}
.y47_c00262{bottom:855.040000pt;}
.y46_c00262{bottom:855.680000pt;}
.y3_c00262{bottom:891.520000pt;}
.y2_c00262{bottom:892.160000pt;}
.y45_c00262{bottom:892.800000pt;}
.y44_c00262{bottom:893.440000pt;}
.y1_c00262{bottom:929.920000pt;}
.y43_c00262{bottom:931.200000pt;}
.y42_c00262{bottom:988.800000pt;}
.h9_c00262{height:29.948750pt;}
.h7_c00262{height:41.467500pt;}
.hb_c00262{height:43.771250pt;}
.hc_c00262{height:46.075000pt;}
.h4_c00262{height:48.378750pt;}
.h3_c00262{height:50.682500pt;}
.h1_c00262{height:52.986250pt;}
.h6_c00262{height:55.290000pt;}
.h8_c00262{height:57.593750pt;}
.h5_c00262{height:59.897500pt;}
.h2_c00262{height:62.201250pt;}
.ha_c00262{height:64.505000pt;}
.h0_c00262{height:1024.000000pt;}
.w0_c00262{width:688.640000pt;}
.w1_c00262{width:688.666667pt;}
.x0_c00262{left:0.000000pt;}
.x1_c00262{left:62.080000pt;}
.x6_c00262{left:63.360000pt;}
.xe_c00262{left:64.640000pt;}
.x10_c00262{left:65.920000pt;}
.x2_c00262{left:126.080000pt;}
.x9_c00262{left:164.480000pt;}
.x3_c00262{left:204.160000pt;}
.xc_c00262{left:213.120000pt;}
.x7_c00262{left:232.960000pt;}
.xf_c00262{left:241.920000pt;}
.x5_c00262{left:252.160000pt;}
.xa_c00262{left:261.760000pt;}
.x8_c00262{left:270.720000pt;}
.x11_c00262{left:289.280000pt;}
.x13_c00262{left:290.560000pt;}
.x4_c00262{left:318.720000pt;}
.xd_c00262{left:338.560000pt;}
.xb_c00262{left:376.960000pt;}
.x12_c00262{left:385.920000pt;}
.x20_c00262{left:492.160000pt;}
.x1e_c00262{left:501.120000pt;}
.x15_c00262{left:502.400000pt;}
.x23_c00262{left:519.040000pt;}
.x16_c00262{left:520.320000pt;}
.x1f_c00262{left:549.120000pt;}
.x1b_c00262{left:550.400000pt;}
.x18_c00262{left:560.000000pt;}
.x22_c00262{left:577.920000pt;}
.x1c_c00262{left:579.200000pt;}
.x19_c00262{left:588.800000pt;}
.x21_c00262{left:607.360000pt;}
.x17_c00262{left:615.680000pt;}
.x14_c00262{left:617.600000pt;}
.x1a_c00262{left:625.920000pt;}
.x1d_c00262{left:634.880000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2685a3e71db41afba4f10be2.woff2')format("woff");}.ff1_c00263{font-family:ff1_c00263;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m30_c00263{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00263{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m22_c00263{transform:matrix(0.182900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182900,0.000000,0.000000,0.250000,0,0);}
.m14_c00263{transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);}
.m2a_c00263{transform:matrix(0.201400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201400,0.000000,0.000000,0.250000,0,0);}
.m4b_c00263{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m49_c00263{transform:matrix(0.213625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213625,0.000000,0.000000,0.250000,0,0);}
.m1b_c00263{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m21_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);}
.m1_c00263{transform:matrix(0.228700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228700,0.000000,0.000000,0.250000,0,0);}
.m50_c00263{transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);}
.m6_c00263{transform:matrix(0.232600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232600,0.000000,0.000000,0.250000,0,0);}
.ma_c00263{transform:matrix(0.243575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243575,0.000000,0.000000,0.250000,0,0);}
.m3d_c00263{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mb_c00263{transform:matrix(0.247800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247800,0.000000,0.000000,0.250000,0,0);}
.m8_c00263{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);}
.m2f_c00263{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m17_c00263{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);}
.m4a_c00263{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mc_c00263{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m9_c00263{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_c00263{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m2_c00263{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);}
.m4c_c00263{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_c00263{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m16_c00263{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m25_c00263{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m20_c00263{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);}
.m37_c00263{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m18_c00263{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m10_c00263{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m46_c00263{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00263{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00263{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m19_c00263{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m24_c00263{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m41_c00263{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m7_c00263{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m12_c00263{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m15_c00263{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.md_c00263{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00263{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mf_c00263{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m0_c00263{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00263{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m36_c00263{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00263{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m3_c00263{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m28_c00263{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);}
.m26_c00263{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m40_c00263{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m13_c00263{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m5_c00263{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m32_c00263{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);}
.m42_c00263{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m39_c00263{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00263{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);}
.m4_c00263{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);}
.m3c_c00263{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m43_c00263{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m23_c00263{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m48_c00263{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m29_c00263{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00263{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);}
.m3b_c00263{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m34_c00263{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00263{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_c00263{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00263{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m44_c00263{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m33_c00263{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);}
.m11_c00263{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);}
.m3a_c00263{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m27_c00263{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00263{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m47_c00263{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00263{transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);}
.m38_c00263{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.m31_c00263{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00263{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m35_c00263{transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);}
.v1_c00263{vertical-align:-2.880000px;}
.v0_c00263{vertical-align:0.000000px;}
.v2_c00263{vertical-align:2.880000px;}
.ls0_c00263{letter-spacing:0.000000px;}
.sc__c00263{text-shadow:none;}
.sc0_c00263{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00263{-webkit-text-stroke:0px transparent;}
.sc0_c00263{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00263{word-spacing:0.000000px;}
.ws0_c00263{word-spacing:11.690400px;}
.ws1_c00263{word-spacing:41.939520px;}
.fc0_c00263{color:transparent;}
.fsd_c00263{font-size:5.760000px;}
.fs10_c00263{font-size:17.280000px;}
.fsf_c00263{font-size:23.040000px;}
.fs12_c00263{font-size:31.680000px;}
.fse_c00263{font-size:40.320000px;}
.fsa_c00263{font-size:43.200000px;}
.fsc_c00263{font-size:48.960000px;}
.fs3_c00263{font-size:51.840000px;}
.fs7_c00263{font-size:54.720000px;}
.fs8_c00263{font-size:57.600000px;}
.fs4_c00263{font-size:60.480000px;}
.fs6_c00263{font-size:63.360000px;}
.fs0_c00263{font-size:66.240000px;}
.fs5_c00263{font-size:69.120000px;}
.fs9_c00263{font-size:72.000000px;}
.fs2_c00263{font-size:74.880000px;}
.fs1_c00263{font-size:77.760000px;}
.fs11_c00263{font-size:80.640000px;}
.fsb_c00263{font-size:103.680000px;}
.y0_c00263{bottom:0.000000px;}
.y65_c00263{bottom:59.040000px;}
.y63_c00263{bottom:59.760000px;}
.y64_c00263{bottom:60.480000px;}
.y67_c00263{bottom:61.920000px;}
.y66_c00263{bottom:62.640000px;}
.y62_c00263{bottom:63.360000px;}
.y76_c00263{bottom:64.080000px;}
.y61_c00263{bottom:102.240000px;}
.y5f_c00263{bottom:104.400000px;}
.y60_c00263{bottom:105.840000px;}
.y5e_c00263{bottom:134.640000px;}
.y5c_c00263{bottom:135.360000px;}
.y5d_c00263{bottom:137.520000px;}
.y73_c00263{bottom:138.240000px;}
.y75_c00263{bottom:138.960000px;}
.y5b_c00263{bottom:139.680000px;}
.y74_c00263{bottom:140.400000px;}
.y5a_c00263{bottom:177.840000px;}
.y70_c00263{bottom:180.720000px;}
.y59_c00263{bottom:182.160000px;}
.y72_c00263{bottom:183.600000px;}
.y71_c00263{bottom:184.320000px;}
.y58_c00263{bottom:221.760000px;}
.y6e_c00263{bottom:224.640000px;}
.y6f_c00263{bottom:225.360000px;}
.y57_c00263{bottom:226.080000px;}
.y56_c00263{bottom:264.240000px;}
.y6d_c00263{bottom:267.120000px;}
.y6b_c00263{bottom:267.840000px;}
.y6c_c00263{bottom:268.560000px;}
.y55_c00263{bottom:269.280000px;}
.y53_c00263{bottom:306.720000px;}
.y54_c00263{bottom:307.440000px;}
.y69_c00263{bottom:309.600000px;}
.y6a_c00263{bottom:310.320000px;}
.y52_c00263{bottom:311.760000px;}
.y68_c00263{bottom:313.200000px;}
.y51_c00263{bottom:350.640000px;}
.y50_c00263{bottom:354.960000px;}
.y4d_c00263{bottom:383.040000px;}
.y4f_c00263{bottom:385.920000px;}
.y4e_c00263{bottom:386.640000px;}
.y4b_c00263{bottom:387.360000px;}
.y4c_c00263{bottom:388.080000px;}
.y47_c00263{bottom:426.240000px;}
.y49_c00263{bottom:426.960000px;}
.y4a_c00263{bottom:429.120000px;}
.y48_c00263{bottom:429.840000px;}
.y46_c00263{bottom:430.560000px;}
.y44_c00263{bottom:469.440000px;}
.y45_c00263{bottom:472.320000px;}
.y42_c00263{bottom:473.040000px;}
.y43_c00263{bottom:473.760000px;}
.y40_c00263{bottom:513.360000px;}
.y3e_c00263{bottom:514.800000px;}
.y41_c00263{bottom:515.520000px;}
.y3c_c00263{bottom:516.240000px;}
.y3d_c00263{bottom:516.960000px;}
.y3f_c00263{bottom:517.680000px;}
.y39_c00263{bottom:555.840000px;}
.y3b_c00263{bottom:557.280000px;}
.y3a_c00263{bottom:558.000000px;}
.y38_c00263{bottom:559.440000px;}
.y35_c00263{bottom:560.160000px;}
.y37_c00263{bottom:560.880000px;}
.y36_c00263{bottom:563.040000px;}
.y34_c00263{bottom:592.560000px;}
.y33_c00263{bottom:595.440000px;}
.y2d_c00263{bottom:599.760000px;}
.y31_c00263{bottom:600.480000px;}
.y2f_c00263{bottom:601.200000px;}
.y2c_c00263{bottom:601.920000px;}
.y32_c00263{bottom:602.640000px;}
.y2e_c00263{bottom:603.360000px;}
.y30_c00263{bottom:604.080000px;}
.y2b_c00263{bottom:635.760000px;}
.y28_c00263{bottom:642.960000px;}
.y26_c00263{bottom:644.400000px;}
.y2a_c00263{bottom:645.120000px;}
.y27_c00263{bottom:646.560000px;}
.y29_c00263{bottom:647.280000px;}
.y13_c00263{bottom:739.440000px;}
.y15_c00263{bottom:740.160000px;}
.y12_c00263{bottom:741.600000px;}
.y25_c00263{bottom:742.320000px;}
.y14_c00263{bottom:743.040000px;}
.y24_c00263{bottom:744.480000px;}
.y11_c00263{bottom:782.640000px;}
.y23_c00263{bottom:783.360000px;}
.y10_c00263{bottom:784.800000px;}
.y22_c00263{bottom:786.240000px;}
.ye_c00263{bottom:825.840000px;}
.yf_c00263{bottom:826.560000px;}
.y21_c00263{bottom:827.280000px;}
.yd_c00263{bottom:828.720000px;}
.yc_c00263{bottom:869.040000px;}
.y20_c00263{bottom:871.200000px;}
.yb_c00263{bottom:871.920000px;}
.y1f_c00263{bottom:872.640000px;}
.ya_c00263{bottom:912.240000px;}
.y1e_c00263{bottom:912.960000px;}
.y1d_c00263{bottom:913.680000px;}
.y9_c00263{bottom:914.400000px;}
.y8_c00263{bottom:955.440000px;}
.y7_c00263{bottom:956.160000px;}
.y1a_c00263{bottom:956.880000px;}
.y1c_c00263{bottom:958.320000px;}
.y1b_c00263{bottom:959.040000px;}
.y6_c00263{bottom:998.640000px;}
.y18_c00263{bottom:999.360000px;}
.y19_c00263{bottom:1000.080000px;}
.y5_c00263{bottom:1000.800000px;}
.y2_c00263{bottom:1042.560000px;}
.y1_c00263{bottom:1043.280000px;}
.y17_c00263{bottom:1044.000000px;}
.y3_c00263{bottom:1045.440000px;}
.y4_c00263{bottom:1046.160000px;}
.y16_c00263{bottom:1121.760000px;}
.hf_c00263{height:5.183438px;}
.h12_c00263{height:15.550313px;}
.h11_c00263{height:20.733750px;}
.h14_c00263{height:28.508906px;}
.h10_c00263{height:36.284062px;}
.hc_c00263{height:38.875781px;}
.he_c00263{height:44.059219px;}
.h5_c00263{height:46.650937px;}
.h9_c00263{height:49.242656px;}
.ha_c00263{height:51.834375px;}
.h6_c00263{height:54.426094px;}
.h8_c00263{height:57.017812px;}
.h2_c00263{height:59.609531px;}
.h7_c00263{height:62.201250px;}
.hb_c00263{height:64.792969px;}
.h4_c00263{height:67.384687px;}
.h3_c00263{height:69.976406px;}
.h13_c00263{height:72.568125px;}
.hd_c00263{height:93.301875px;}
.h1_c00263{height:1147.500000px;}
.h0_c00263{height:1147.680000px;}
.w1_c00263{width:768.750000px;}
.w0_c00263{width:768.960000px;}
.x0_c00263{left:0.000000px;}
.x1_c00263{left:69.120000px;}
.x12_c00263{left:70.560000px;}
.x27_c00263{left:72.000000px;}
.x2b_c00263{left:73.440000px;}
.x1c_c00263{left:110.880000px;}
.x28_c00263{left:112.320000px;}
.x1d_c00263{left:120.240000px;}
.x1e_c00263{left:140.400000px;}
.x2_c00263{left:141.840000px;}
.x13_c00263{left:185.040000px;}
.x29_c00263{left:195.840000px;}
.x19_c00263{left:216.720000px;}
.x26_c00263{left:228.240000px;}
.x3_c00263{left:229.680000px;}
.x1f_c00263{left:237.600000px;}
.x2a_c00263{left:239.760000px;}
.x2c_c00263{left:249.840000px;}
.x1a_c00263{left:272.160000px;}
.x20_c00263{left:282.960000px;}
.x14_c00263{left:293.040000px;}
.x2d_c00263{left:304.560000px;}
.x22_c00263{left:315.360000px;}
.x6_c00263{left:325.440000px;}
.x15_c00263{left:336.960000px;}
.x2e_c00263{left:348.480000px;}
.x1b_c00263{left:368.640000px;}
.x4_c00263{left:380.160000px;}
.x16_c00263{left:390.960000px;}
.x23_c00263{left:412.560000px;}
.x5_c00263{left:424.080000px;}
.x2f_c00263{left:434.160000px;}
.x17_c00263{left:477.360000px;}
.x24_c00263{left:509.760000px;}
.x18_c00263{left:530.640000px;}
.xc_c00263{left:563.760000px;}
.x8_c00263{left:565.200000px;}
.x9_c00263{left:585.360000px;}
.x10_c00263{left:596.880000px;}
.x21_c00263{left:606.240000px;}
.x11_c00263{left:609.840000px;}
.x30_c00263{left:617.760000px;}
.xd_c00263{left:619.200000px;}
.x25_c00263{left:650.880000px;}
.xa_c00263{left:652.320000px;}
.x7_c00263{left:681.120000px;}
.xb_c00263{left:693.360000px;}
.xe_c00263{left:694.800000px;}
.xf_c00263{left:714.960000px;}
@media print{
.v1_c00263{vertical-align:-2.560000pt;}
.v0_c00263{vertical-align:0.000000pt;}
.v2_c00263{vertical-align:2.560000pt;}
.ls0_c00263{letter-spacing:0.000000pt;}
.ws2_c00263{word-spacing:0.000000pt;}
.ws0_c00263{word-spacing:10.391467pt;}
.ws1_c00263{word-spacing:37.279573pt;}
.fsd_c00263{font-size:5.120000pt;}
.fs10_c00263{font-size:15.360000pt;}
.fsf_c00263{font-size:20.480000pt;}
.fs12_c00263{font-size:28.160000pt;}
.fse_c00263{font-size:35.840000pt;}
.fsa_c00263{font-size:38.400000pt;}
.fsc_c00263{font-size:43.520000pt;}
.fs3_c00263{font-size:46.080000pt;}
.fs7_c00263{font-size:48.640000pt;}
.fs8_c00263{font-size:51.200000pt;}
.fs4_c00263{font-size:53.760000pt;}
.fs6_c00263{font-size:56.320000pt;}
.fs0_c00263{font-size:58.880000pt;}
.fs5_c00263{font-size:61.440000pt;}
.fs9_c00263{font-size:64.000000pt;}
.fs2_c00263{font-size:66.560000pt;}
.fs1_c00263{font-size:69.120000pt;}
.fs11_c00263{font-size:71.680000pt;}
.fsb_c00263{font-size:92.160000pt;}
.y0_c00263{bottom:0.000000pt;}
.y65_c00263{bottom:52.480000pt;}
.y63_c00263{bottom:53.120000pt;}
.y64_c00263{bottom:53.760000pt;}
.y67_c00263{bottom:55.040000pt;}
.y66_c00263{bottom:55.680000pt;}
.y62_c00263{bottom:56.320000pt;}
.y76_c00263{bottom:56.960000pt;}
.y61_c00263{bottom:90.880000pt;}
.y5f_c00263{bottom:92.800000pt;}
.y60_c00263{bottom:94.080000pt;}
.y5e_c00263{bottom:119.680000pt;}
.y5c_c00263{bottom:120.320000pt;}
.y5d_c00263{bottom:122.240000pt;}
.y73_c00263{bottom:122.880000pt;}
.y75_c00263{bottom:123.520000pt;}
.y5b_c00263{bottom:124.160000pt;}
.y74_c00263{bottom:124.800000pt;}
.y5a_c00263{bottom:158.080000pt;}
.y70_c00263{bottom:160.640000pt;}
.y59_c00263{bottom:161.920000pt;}
.y72_c00263{bottom:163.200000pt;}
.y71_c00263{bottom:163.840000pt;}
.y58_c00263{bottom:197.120000pt;}
.y6e_c00263{bottom:199.680000pt;}
.y6f_c00263{bottom:200.320000pt;}
.y57_c00263{bottom:200.960000pt;}
.y56_c00263{bottom:234.880000pt;}
.y6d_c00263{bottom:237.440000pt;}
.y6b_c00263{bottom:238.080000pt;}
.y6c_c00263{bottom:238.720000pt;}
.y55_c00263{bottom:239.360000pt;}
.y53_c00263{bottom:272.640000pt;}
.y54_c00263{bottom:273.280000pt;}
.y69_c00263{bottom:275.200000pt;}
.y6a_c00263{bottom:275.840000pt;}
.y52_c00263{bottom:277.120000pt;}
.y68_c00263{bottom:278.400000pt;}
.y51_c00263{bottom:311.680000pt;}
.y50_c00263{bottom:315.520000pt;}
.y4d_c00263{bottom:340.480000pt;}
.y4f_c00263{bottom:343.040000pt;}
.y4e_c00263{bottom:343.680000pt;}
.y4b_c00263{bottom:344.320000pt;}
.y4c_c00263{bottom:344.960000pt;}
.y47_c00263{bottom:378.880000pt;}
.y49_c00263{bottom:379.520000pt;}
.y4a_c00263{bottom:381.440000pt;}
.y48_c00263{bottom:382.080000pt;}
.y46_c00263{bottom:382.720000pt;}
.y44_c00263{bottom:417.280000pt;}
.y45_c00263{bottom:419.840000pt;}
.y42_c00263{bottom:420.480000pt;}
.y43_c00263{bottom:421.120000pt;}
.y40_c00263{bottom:456.320000pt;}
.y3e_c00263{bottom:457.600000pt;}
.y41_c00263{bottom:458.240000pt;}
.y3c_c00263{bottom:458.880000pt;}
.y3d_c00263{bottom:459.520000pt;}
.y3f_c00263{bottom:460.160000pt;}
.y39_c00263{bottom:494.080000pt;}
.y3b_c00263{bottom:495.360000pt;}
.y3a_c00263{bottom:496.000000pt;}
.y38_c00263{bottom:497.280000pt;}
.y35_c00263{bottom:497.920000pt;}
.y37_c00263{bottom:498.560000pt;}
.y36_c00263{bottom:500.480000pt;}
.y34_c00263{bottom:526.720000pt;}
.y33_c00263{bottom:529.280000pt;}
.y2d_c00263{bottom:533.120000pt;}
.y31_c00263{bottom:533.760000pt;}
.y2f_c00263{bottom:534.400000pt;}
.y2c_c00263{bottom:535.040000pt;}
.y32_c00263{bottom:535.680000pt;}
.y2e_c00263{bottom:536.320000pt;}
.y30_c00263{bottom:536.960000pt;}
.y2b_c00263{bottom:565.120000pt;}
.y28_c00263{bottom:571.520000pt;}
.y26_c00263{bottom:572.800000pt;}
.y2a_c00263{bottom:573.440000pt;}
.y27_c00263{bottom:574.720000pt;}
.y29_c00263{bottom:575.360000pt;}
.y13_c00263{bottom:657.280000pt;}
.y15_c00263{bottom:657.920000pt;}
.y12_c00263{bottom:659.200000pt;}
.y25_c00263{bottom:659.840000pt;}
.y14_c00263{bottom:660.480000pt;}
.y24_c00263{bottom:661.760000pt;}
.y11_c00263{bottom:695.680000pt;}
.y23_c00263{bottom:696.320000pt;}
.y10_c00263{bottom:697.600000pt;}
.y22_c00263{bottom:698.880000pt;}
.ye_c00263{bottom:734.080000pt;}
.yf_c00263{bottom:734.720000pt;}
.y21_c00263{bottom:735.360000pt;}
.yd_c00263{bottom:736.640000pt;}
.yc_c00263{bottom:772.480000pt;}
.y20_c00263{bottom:774.400000pt;}
.yb_c00263{bottom:775.040000pt;}
.y1f_c00263{bottom:775.680000pt;}
.ya_c00263{bottom:810.880000pt;}
.y1e_c00263{bottom:811.520000pt;}
.y1d_c00263{bottom:812.160000pt;}
.y9_c00263{bottom:812.800000pt;}
.y8_c00263{bottom:849.280000pt;}
.y7_c00263{bottom:849.920000pt;}
.y1a_c00263{bottom:850.560000pt;}
.y1c_c00263{bottom:851.840000pt;}
.y1b_c00263{bottom:852.480000pt;}
.y6_c00263{bottom:887.680000pt;}
.y18_c00263{bottom:888.320000pt;}
.y19_c00263{bottom:888.960000pt;}
.y5_c00263{bottom:889.600000pt;}
.y2_c00263{bottom:926.720000pt;}
.y1_c00263{bottom:927.360000pt;}
.y17_c00263{bottom:928.000000pt;}
.y3_c00263{bottom:929.280000pt;}
.y4_c00263{bottom:929.920000pt;}
.y16_c00263{bottom:997.120000pt;}
.hf_c00263{height:4.607500pt;}
.h12_c00263{height:13.822500pt;}
.h11_c00263{height:18.430000pt;}
.h14_c00263{height:25.341250pt;}
.h10_c00263{height:32.252500pt;}
.hc_c00263{height:34.556250pt;}
.he_c00263{height:39.163750pt;}
.h5_c00263{height:41.467500pt;}
.h9_c00263{height:43.771250pt;}
.ha_c00263{height:46.075000pt;}
.h6_c00263{height:48.378750pt;}
.h8_c00263{height:50.682500pt;}
.h2_c00263{height:52.986250pt;}
.h7_c00263{height:55.290000pt;}
.hb_c00263{height:57.593750pt;}
.h4_c00263{height:59.897500pt;}
.h3_c00263{height:62.201250pt;}
.h13_c00263{height:64.505000pt;}
.hd_c00263{height:82.935000pt;}
.h1_c00263{height:1020.000000pt;}
.h0_c00263{height:1020.160000pt;}
.w1_c00263{width:683.333333pt;}
.w0_c00263{width:683.520000pt;}
.x0_c00263{left:0.000000pt;}
.x1_c00263{left:61.440000pt;}
.x12_c00263{left:62.720000pt;}
.x27_c00263{left:64.000000pt;}
.x2b_c00263{left:65.280000pt;}
.x1c_c00263{left:98.560000pt;}
.x28_c00263{left:99.840000pt;}
.x1d_c00263{left:106.880000pt;}
.x1e_c00263{left:124.800000pt;}
.x2_c00263{left:126.080000pt;}
.x13_c00263{left:164.480000pt;}
.x29_c00263{left:174.080000pt;}
.x19_c00263{left:192.640000pt;}
.x26_c00263{left:202.880000pt;}
.x3_c00263{left:204.160000pt;}
.x1f_c00263{left:211.200000pt;}
.x2a_c00263{left:213.120000pt;}
.x2c_c00263{left:222.080000pt;}
.x1a_c00263{left:241.920000pt;}
.x20_c00263{left:251.520000pt;}
.x14_c00263{left:260.480000pt;}
.x2d_c00263{left:270.720000pt;}
.x22_c00263{left:280.320000pt;}
.x6_c00263{left:289.280000pt;}
.x15_c00263{left:299.520000pt;}
.x2e_c00263{left:309.760000pt;}
.x1b_c00263{left:327.680000pt;}
.x4_c00263{left:337.920000pt;}
.x16_c00263{left:347.520000pt;}
.x23_c00263{left:366.720000pt;}
.x5_c00263{left:376.960000pt;}
.x2f_c00263{left:385.920000pt;}
.x17_c00263{left:424.320000pt;}
.x24_c00263{left:453.120000pt;}
.x18_c00263{left:471.680000pt;}
.xc_c00263{left:501.120000pt;}
.x8_c00263{left:502.400000pt;}
.x9_c00263{left:520.320000pt;}
.x10_c00263{left:530.560000pt;}
.x21_c00263{left:538.880000pt;}
.x11_c00263{left:542.080000pt;}
.x30_c00263{left:549.120000pt;}
.xd_c00263{left:550.400000pt;}
.x25_c00263{left:578.560000pt;}
.xa_c00263{left:579.840000pt;}
.x7_c00263{left:605.440000pt;}
.xb_c00263{left:616.320000pt;}
.xe_c00263{left:617.600000pt;}
.xf_c00263{left:635.520000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6248395d056e47c394f4a3c8.woff2')format("woff");}.ff1_c00264{font-family:ff1_c00264;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m43_c00264{transform:matrix(0.211200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211200,0.000000,0.000000,0.250000,0,0);}
.m51_c00264{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m52_c00264{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);}
.m41_c00264{transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);}
.m2d_c00264{transform:matrix(0.242100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242100,0.000000,0.000000,0.250000,0,0);}
.m33_c00264{transform:matrix(0.243475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243475,0.000000,0.000000,0.250000,0,0);}
.m44_c00264{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00264{transform:matrix(0.247425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247425,0.000000,0.000000,0.250000,0,0);}
.m27_c00264{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);}
.m42_c00264{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m14_c00264{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);}
.m48_c00264{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m35_c00264{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);}
.m50_c00264{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mf_c00264{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_c00264{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);}
.m40_c00264{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);}
.m53_c00264{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);}
.m45_c00264{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);}
.m34_c00264{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00264{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);}
.m46_c00264{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00264{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m15_c00264{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00264{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m32_c00264{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m47_c00264{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00264{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m23_c00264{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m36_c00264{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m19_c00264{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m18_c00264{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00264{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m16_c00264{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m26_c00264{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m22_c00264{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00264{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.me_c00264{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00264{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m7_c00264{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m0_c00264{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1_c00264{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m29_c00264{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m9_c00264{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);}
.m3d_c00264{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00264{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00264{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.mb_c00264{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.ma_c00264{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m11_c00264{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);}
.m12_c00264{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m4_c00264{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);}
.m3_c00264{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m21_c00264{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);}
.m2e_c00264{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);}
.md_c00264{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m10_c00264{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);}
.m2a_c00264{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00264{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00264{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);}
.m37_c00264{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);}
.m30_c00264{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);}
.m31_c00264{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00264{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00264{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00264{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m6_c00264{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00264{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m49_c00264{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m2_c00264{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);}
.m8_c00264{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00264{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);}
.mc_c00264{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00264{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m5_c00264{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m25_c00264{transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00264{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m20_c00264{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00264{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m38_c00264{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m28_c00264{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m13_c00264{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m39_c00264{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m24_c00264{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);}
.v1_c00264{vertical-align:-2.880000px;}
.v0_c00264{vertical-align:0.000000px;}
.ls1_c00264{letter-spacing:0.000000px;}
.ls0_c00264{letter-spacing:81.206400px;}
.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;}
}
.ws2_c00264{word-spacing:0.000000px;}
.ws0_c00264{word-spacing:1.179840px;}
.ws1_c00264{word-spacing:11.693143px;}
.fc0_c00264{color:transparent;}
.fsb_c00264{font-size:2.880000px;}
.fsc_c00264{font-size:25.920000px;}
.fs10_c00264{font-size:37.440000px;}
.fs4_c00264{font-size:40.320000px;}
.fsf_c00264{font-size:43.200000px;}
.fs5_c00264{font-size:48.960000px;}
.fs2_c00264{font-size:51.840000px;}
.fs1_c00264{font-size:54.720000px;}
.fs8_c00264{font-size:57.600000px;}
.fs3_c00264{font-size:60.480000px;}
.fs0_c00264{font-size:63.360000px;}
.fs6_c00264{font-size:66.240000px;}
.fsa_c00264{font-size:69.120000px;}
.fs7_c00264{font-size:72.000000px;}
.fse_c00264{font-size:74.880000px;}
.fsd_c00264{font-size:77.760000px;}
.fs9_c00264{font-size:80.640000px;}
.fs11_c00264{font-size:83.520000px;}
.y0_c00264{bottom:0.000000px;}
.y67_c00264{bottom:103.680000px;}
.y68_c00264{bottom:105.120000px;}
.y52_c00264{bottom:143.280000px;}
.y51_c00264{bottom:144.720000px;}
.y53_c00264{bottom:146.160000px;}
.y4d_c00264{bottom:174.240000px;}
.y4f_c00264{bottom:176.400000px;}
.y4c_c00264{bottom:177.840000px;}
.y4e_c00264{bottom:178.560000px;}
.y66_c00264{bottom:179.280000px;}
.y50_c00264{bottom:180.000000px;}
.y4a_c00264{bottom:218.160000px;}
.y4b_c00264{bottom:218.880000px;}
.y65_c00264{bottom:220.320000px;}
.y64_c00264{bottom:221.040000px;}
.y49_c00264{bottom:222.480000px;}
.y48_c00264{bottom:262.080000px;}
.y47_c00264{bottom:265.680000px;}
.y62_c00264{bottom:266.400000px;}
.y61_c00264{bottom:267.120000px;}
.y63_c00264{bottom:267.840000px;}
.y46_c00264{bottom:305.280000px;}
.y5f_c00264{bottom:308.160000px;}
.y45_c00264{bottom:308.880000px;}
.y60_c00264{bottom:309.600000px;}
.y5e_c00264{bottom:311.040000px;}
.y44_c00264{bottom:347.760000px;}
.y5c_c00264{bottom:351.360000px;}
.y43_c00264{bottom:352.080000px;}
.y5d_c00264{bottom:353.520000px;}
.y40_c00264{bottom:391.680000px;}
.y41_c00264{bottom:394.560000px;}
.y42_c00264{bottom:395.280000px;}
.y3c_c00264{bottom:423.360000px;}
.y3e_c00264{bottom:424.080000px;}
.y5b_c00264{bottom:425.520000px;}
.y3d_c00264{bottom:426.240000px;}
.y3b_c00264{bottom:426.960000px;}
.y3f_c00264{bottom:427.680000px;}
.y5a_c00264{bottom:428.400000px;}
.y3a_c00264{bottom:466.560000px;}
.y59_c00264{bottom:468.720000px;}
.y39_c00264{bottom:469.440000px;}
.y38_c00264{bottom:509.760000px;}
.y35_c00264{bottom:511.920000px;}
.y58_c00264{bottom:512.640000px;}
.y36_c00264{bottom:513.360000px;}
.y37_c00264{bottom:514.080000px;}
.y30_c00264{bottom:552.240000px;}
.y34_c00264{bottom:552.960000px;}
.y32_c00264{bottom:553.680000px;}
.y2e_c00264{bottom:554.400000px;}
.y31_c00264{bottom:555.120000px;}
.y33_c00264{bottom:556.560000px;}
.y2f_c00264{bottom:557.280000px;}
.y2d_c00264{bottom:595.440000px;}
.y56_c00264{bottom:596.880000px;}
.y2c_c00264{bottom:597.600000px;}
.y57_c00264{bottom:598.320000px;}
.y2b_c00264{bottom:638.640000px;}
.y29_c00264{bottom:640.800000px;}
.y2a_c00264{bottom:642.960000px;}
.y28_c00264{bottom:736.560000px;}
.y27_c00264{bottom:737.280000px;}
.y26_c00264{bottom:738.720000px;}
.y25_c00264{bottom:740.160000px;}
.y22_c00264{bottom:768.240000px;}
.y23_c00264{bottom:769.680000px;}
.y21_c00264{bottom:770.400000px;}
.y24_c00264{bottom:771.120000px;}
.y20_c00264{bottom:811.440000px;}
.y55_c00264{bottom:812.880000px;}
.y1e_c00264{bottom:813.600000px;}
.y1f_c00264{bottom:815.760000px;}
.y1d_c00264{bottom:855.360000px;}
.y1c_c00264{bottom:856.080000px;}
.y1a_c00264{bottom:887.040000px;}
.y54_c00264{bottom:887.760000px;}
.y19_c00264{bottom:888.480000px;}
.y1b_c00264{bottom:891.360000px;}
.y18_c00264{bottom:923.040000px;}
.y15_c00264{bottom:930.960000px;}
.y12_c00264{bottom:931.680000px;}
.y17_c00264{bottom:932.400000px;}
.y16_c00264{bottom:933.120000px;}
.y14_c00264{bottom:933.840000px;}
.y13_c00264{bottom:934.560000px;}
.yc_c00264{bottom:972.720000px;}
.y9_c00264{bottom:973.440000px;}
.ya_c00264{bottom:974.160000px;}
.yb_c00264{bottom:974.880000px;}
.y11_c00264{bottom:975.600000px;}
.ye_c00264{bottom:976.320000px;}
.yd_c00264{bottom:977.040000px;}
.y7_c00264{bottom:1016.640000px;}
.y8_c00264{bottom:1017.360000px;}
.y6_c00264{bottom:1019.520000px;}
.y5_c00264{bottom:1020.240000px;}
.y4_c00264{bottom:1049.040000px;}
.y1_c00264{bottom:1049.760000px;}
.y3_c00264{bottom:1050.480000px;}
.y10_c00264{bottom:1051.200000px;}
.y2_c00264{bottom:1051.920000px;}
.yf_c00264{bottom:1104.480000px;}
.hd_c00264{height:2.591719px;}
.he_c00264{height:23.325469px;}
.h12_c00264{height:33.692344px;}
.h6_c00264{height:36.284062px;}
.h11_c00264{height:38.875781px;}
.h7_c00264{height:44.059219px;}
.h4_c00264{height:46.650937px;}
.h3_c00264{height:49.242656px;}
.ha_c00264{height:51.834375px;}
.h5_c00264{height:54.426094px;}
.h2_c00264{height:57.017812px;}
.h14_c00264{height:59.321250px;}
.h8_c00264{height:59.609531px;}
.hc_c00264{height:62.201250px;}
.h9_c00264{height:64.792969px;}
.h10_c00264{height:67.384687px;}
.hf_c00264{height:69.976406px;}
.hb_c00264{height:72.568125px;}
.h13_c00264{height:75.159844px;}
.h0_c00264{height:1156.320000px;}
.h1_c00264{height:1156.500000px;}
.w0_c00264{width:781.200000px;}
.w1_c00264{width:781.500000px;}
.x0_c00264{left:0.000000px;}
.x1_c00264{left:75.600000px;}
.x20_c00264{left:77.040000px;}
.x29_c00264{left:78.480000px;}
.x25_c00264{left:118.080000px;}
.x19_c00264{left:119.520000px;}
.x21_c00264{left:147.600000px;}
.x2_c00264{left:149.040000px;}
.x22_c00264{left:190.080000px;}
.x3_c00264{left:191.520000px;}
.x1e_c00264{left:203.040000px;}
.x1a_c00264{left:234.720000px;}
.x23_c00264{left:244.080000px;}
.x4_c00264{left:245.520000px;}
.xa_c00264{left:256.320000px;}
.x1c_c00264{left:267.120000px;}
.x24_c00264{left:288.720000px;}
.x5_c00264{left:299.520000px;}
.x1f_c00264{left:300.960000px;}
.xb_c00264{left:311.040000px;}
.x26_c00264{left:332.640000px;}
.x8_c00264{left:343.440000px;}
.xc_c00264{left:354.240000px;}
.x2a_c00264{left:365.040000px;}
.x1d_c00264{left:374.400000px;}
.x14_c00264{left:375.840000px;}
.x6_c00264{left:386.640000px;}
.xd_c00264{left:396.720000px;}
.x7_c00264{left:429.120000px;}
.x9_c00264{left:440.640000px;}
.x15_c00264{left:442.080000px;}
.xe_c00264{left:451.440000px;}
.x27_c00264{left:462.240000px;}
.x16_c00264{left:483.840000px;}
.x2b_c00264{left:494.640000px;}
.x28_c00264{left:505.440000px;}
.x1b_c00264{left:527.040000px;}
.x17_c00264{left:537.840000px;}
.x2f_c00264{left:569.520000px;}
.x18_c00264{left:591.120000px;}
.x2c_c00264{left:592.560000px;}
.x2d_c00264{left:602.640000px;}
.x10_c00264{left:623.520000px;}
.x11_c00264{left:657.360000px;}
.x2e_c00264{left:667.440000px;}
.x13_c00264{left:689.760000px;}
.xf_c00264{left:693.360000px;}
.x12_c00264{left:699.840000px;}
@media print{
.v1_c00264{vertical-align:-2.560000pt;}
.v0_c00264{vertical-align:0.000000pt;}
.ls1_c00264{letter-spacing:0.000000pt;}
.ls0_c00264{letter-spacing:72.183467pt;}
.ws2_c00264{word-spacing:0.000000pt;}
.ws0_c00264{word-spacing:1.048747pt;}
.ws1_c00264{word-spacing:10.393905pt;}
.fsb_c00264{font-size:2.560000pt;}
.fsc_c00264{font-size:23.040000pt;}
.fs10_c00264{font-size:33.280000pt;}
.fs4_c00264{font-size:35.840000pt;}
.fsf_c00264{font-size:38.400000pt;}
.fs5_c00264{font-size:43.520000pt;}
.fs2_c00264{font-size:46.080000pt;}
.fs1_c00264{font-size:48.640000pt;}
.fs8_c00264{font-size:51.200000pt;}
.fs3_c00264{font-size:53.760000pt;}
.fs0_c00264{font-size:56.320000pt;}
.fs6_c00264{font-size:58.880000pt;}
.fsa_c00264{font-size:61.440000pt;}
.fs7_c00264{font-size:64.000000pt;}
.fse_c00264{font-size:66.560000pt;}
.fsd_c00264{font-size:69.120000pt;}
.fs9_c00264{font-size:71.680000pt;}
.fs11_c00264{font-size:74.240000pt;}
.y0_c00264{bottom:0.000000pt;}
.y67_c00264{bottom:92.160000pt;}
.y68_c00264{bottom:93.440000pt;}
.y52_c00264{bottom:127.360000pt;}
.y51_c00264{bottom:128.640000pt;}
.y53_c00264{bottom:129.920000pt;}
.y4d_c00264{bottom:154.880000pt;}
.y4f_c00264{bottom:156.800000pt;}
.y4c_c00264{bottom:158.080000pt;}
.y4e_c00264{bottom:158.720000pt;}
.y66_c00264{bottom:159.360000pt;}
.y50_c00264{bottom:160.000000pt;}
.y4a_c00264{bottom:193.920000pt;}
.y4b_c00264{bottom:194.560000pt;}
.y65_c00264{bottom:195.840000pt;}
.y64_c00264{bottom:196.480000pt;}
.y49_c00264{bottom:197.760000pt;}
.y48_c00264{bottom:232.960000pt;}
.y47_c00264{bottom:236.160000pt;}
.y62_c00264{bottom:236.800000pt;}
.y61_c00264{bottom:237.440000pt;}
.y63_c00264{bottom:238.080000pt;}
.y46_c00264{bottom:271.360000pt;}
.y5f_c00264{bottom:273.920000pt;}
.y45_c00264{bottom:274.560000pt;}
.y60_c00264{bottom:275.200000pt;}
.y5e_c00264{bottom:276.480000pt;}
.y44_c00264{bottom:309.120000pt;}
.y5c_c00264{bottom:312.320000pt;}
.y43_c00264{bottom:312.960000pt;}
.y5d_c00264{bottom:314.240000pt;}
.y40_c00264{bottom:348.160000pt;}
.y41_c00264{bottom:350.720000pt;}
.y42_c00264{bottom:351.360000pt;}
.y3c_c00264{bottom:376.320000pt;}
.y3e_c00264{bottom:376.960000pt;}
.y5b_c00264{bottom:378.240000pt;}
.y3d_c00264{bottom:378.880000pt;}
.y3b_c00264{bottom:379.520000pt;}
.y3f_c00264{bottom:380.160000pt;}
.y5a_c00264{bottom:380.800000pt;}
.y3a_c00264{bottom:414.720000pt;}
.y59_c00264{bottom:416.640000pt;}
.y39_c00264{bottom:417.280000pt;}
.y38_c00264{bottom:453.120000pt;}
.y35_c00264{bottom:455.040000pt;}
.y58_c00264{bottom:455.680000pt;}
.y36_c00264{bottom:456.320000pt;}
.y37_c00264{bottom:456.960000pt;}
.y30_c00264{bottom:490.880000pt;}
.y34_c00264{bottom:491.520000pt;}
.y32_c00264{bottom:492.160000pt;}
.y2e_c00264{bottom:492.800000pt;}
.y31_c00264{bottom:493.440000pt;}
.y33_c00264{bottom:494.720000pt;}
.y2f_c00264{bottom:495.360000pt;}
.y2d_c00264{bottom:529.280000pt;}
.y56_c00264{bottom:530.560000pt;}
.y2c_c00264{bottom:531.200000pt;}
.y57_c00264{bottom:531.840000pt;}
.y2b_c00264{bottom:567.680000pt;}
.y29_c00264{bottom:569.600000pt;}
.y2a_c00264{bottom:571.520000pt;}
.y28_c00264{bottom:654.720000pt;}
.y27_c00264{bottom:655.360000pt;}
.y26_c00264{bottom:656.640000pt;}
.y25_c00264{bottom:657.920000pt;}
.y22_c00264{bottom:682.880000pt;}
.y23_c00264{bottom:684.160000pt;}
.y21_c00264{bottom:684.800000pt;}
.y24_c00264{bottom:685.440000pt;}
.y20_c00264{bottom:721.280000pt;}
.y55_c00264{bottom:722.560000pt;}
.y1e_c00264{bottom:723.200000pt;}
.y1f_c00264{bottom:725.120000pt;}
.y1d_c00264{bottom:760.320000pt;}
.y1c_c00264{bottom:760.960000pt;}
.y1a_c00264{bottom:788.480000pt;}
.y54_c00264{bottom:789.120000pt;}
.y19_c00264{bottom:789.760000pt;}
.y1b_c00264{bottom:792.320000pt;}
.y18_c00264{bottom:820.480000pt;}
.y15_c00264{bottom:827.520000pt;}
.y12_c00264{bottom:828.160000pt;}
.y17_c00264{bottom:828.800000pt;}
.y16_c00264{bottom:829.440000pt;}
.y14_c00264{bottom:830.080000pt;}
.y13_c00264{bottom:830.720000pt;}
.yc_c00264{bottom:864.640000pt;}
.y9_c00264{bottom:865.280000pt;}
.ya_c00264{bottom:865.920000pt;}
.yb_c00264{bottom:866.560000pt;}
.y11_c00264{bottom:867.200000pt;}
.ye_c00264{bottom:867.840000pt;}
.yd_c00264{bottom:868.480000pt;}
.y7_c00264{bottom:903.680000pt;}
.y8_c00264{bottom:904.320000pt;}
.y6_c00264{bottom:906.240000pt;}
.y5_c00264{bottom:906.880000pt;}
.y4_c00264{bottom:932.480000pt;}
.y1_c00264{bottom:933.120000pt;}
.y3_c00264{bottom:933.760000pt;}
.y10_c00264{bottom:934.400000pt;}
.y2_c00264{bottom:935.040000pt;}
.yf_c00264{bottom:981.760000pt;}
.hd_c00264{height:2.303750pt;}
.he_c00264{height:20.733750pt;}
.h12_c00264{height:29.948750pt;}
.h6_c00264{height:32.252500pt;}
.h11_c00264{height:34.556250pt;}
.h7_c00264{height:39.163750pt;}
.h4_c00264{height:41.467500pt;}
.h3_c00264{height:43.771250pt;}
.ha_c00264{height:46.075000pt;}
.h5_c00264{height:48.378750pt;}
.h2_c00264{height:50.682500pt;}
.h14_c00264{height:52.730000pt;}
.h8_c00264{height:52.986250pt;}
.hc_c00264{height:55.290000pt;}
.h9_c00264{height:57.593750pt;}
.h10_c00264{height:59.897500pt;}
.hf_c00264{height:62.201250pt;}
.hb_c00264{height:64.505000pt;}
.h13_c00264{height:66.808750pt;}
.h0_c00264{height:1027.840000pt;}
.h1_c00264{height:1028.000000pt;}
.w0_c00264{width:694.400000pt;}
.w1_c00264{width:694.666667pt;}
.x0_c00264{left:0.000000pt;}
.x1_c00264{left:67.200000pt;}
.x20_c00264{left:68.480000pt;}
.x29_c00264{left:69.760000pt;}
.x25_c00264{left:104.960000pt;}
.x19_c00264{left:106.240000pt;}
.x21_c00264{left:131.200000pt;}
.x2_c00264{left:132.480000pt;}
.x22_c00264{left:168.960000pt;}
.x3_c00264{left:170.240000pt;}
.x1e_c00264{left:180.480000pt;}
.x1a_c00264{left:208.640000pt;}
.x23_c00264{left:216.960000pt;}
.x4_c00264{left:218.240000pt;}
.xa_c00264{left:227.840000pt;}
.x1c_c00264{left:237.440000pt;}
.x24_c00264{left:256.640000pt;}
.x5_c00264{left:266.240000pt;}
.x1f_c00264{left:267.520000pt;}
.xb_c00264{left:276.480000pt;}
.x26_c00264{left:295.680000pt;}
.x8_c00264{left:305.280000pt;}
.xc_c00264{left:314.880000pt;}
.x2a_c00264{left:324.480000pt;}
.x1d_c00264{left:332.800000pt;}
.x14_c00264{left:334.080000pt;}
.x6_c00264{left:343.680000pt;}
.xd_c00264{left:352.640000pt;}
.x7_c00264{left:381.440000pt;}
.x9_c00264{left:391.680000pt;}
.x15_c00264{left:392.960000pt;}
.xe_c00264{left:401.280000pt;}
.x27_c00264{left:410.880000pt;}
.x16_c00264{left:430.080000pt;}
.x2b_c00264{left:439.680000pt;}
.x28_c00264{left:449.280000pt;}
.x1b_c00264{left:468.480000pt;}
.x17_c00264{left:478.080000pt;}
.x2f_c00264{left:506.240000pt;}
.x18_c00264{left:525.440000pt;}
.x2c_c00264{left:526.720000pt;}
.x2d_c00264{left:535.680000pt;}
.x10_c00264{left:554.240000pt;}
.x11_c00264{left:584.320000pt;}
.x2e_c00264{left:593.280000pt;}
.x13_c00264{left:613.120000pt;}
.xf_c00264{left:616.320000pt;}
.x12_c00264{left:622.080000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9204cf3ceda9363a9b1d0bc9.woff2')format("woff");}.ff1_c00265{font-family:ff1_c00265;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m51_c00265{transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);}
.m3a_c00265{transform:matrix(0.197850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197850,0.000000,0.000000,0.250000,0,0);}
.m50_c00265{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.m4d_c00265{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m1_c00265{transform:matrix(0.222925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222925,0.000000,0.000000,0.250000,0,0);}
.m41_c00265{transform:matrix(0.229925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229925,0.000000,0.000000,0.250000,0,0);}
.m4e_c00265{transform:matrix(0.234200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234200,0.000000,0.000000,0.250000,0,0);}
.m13_c00265{transform:matrix(0.234425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234425,0.000000,0.000000,0.250000,0,0);}
.mc_c00265{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m32_c00265{transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);}
.m18_c00265{transform:matrix(0.235650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235650,0.000000,0.000000,0.250000,0,0);}
.m3b_c00265{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);}
.m21_c00265{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m56_c00265{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00265{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m1d_c00265{transform:matrix(0.247625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247625,0.000000,0.000000,0.250000,0,0);}
.m38_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);}
.m34_c00265{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);}
.m46_c00265{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_c00265{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);}
.m3e_c00265{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);}
.m4a_c00265{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);}
.m2f_c00265{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_c00265{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);}
.m3c_c00265{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m49_c00265{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m16_c00265{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m14_c00265{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mb_c00265{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m4_c00265{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m17_c00265{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);}
.m25_c00265{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.ma_c00265{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m48_c00265{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m12_c00265{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00265{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m44_c00265{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m9_c00265{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m8_c00265{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m29_c00265{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00265{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m54_c00265{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m58_c00265{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m0_c00265{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m43_c00265{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m45_c00265{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m24_c00265{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00265{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m33_c00265{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m22_c00265{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m11_c00265{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m7_c00265{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00265{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);}
.m37_c00265{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00265{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m15_c00265{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m39_c00265{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m53_c00265{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m23_c00265{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m5_c00265{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_c00265{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);}
.m2c_c00265{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);}
.m19_c00265{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);}
.m36_c00265{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);}
.m20_c00265{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00265{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m57_c00265{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);}
.m3d_c00265{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);}
.m30_c00265{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m2_c00265{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m3_c00265{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00265{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m52_c00265{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m55_c00265{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00265{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m35_c00265{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m47_c00265{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.mf_c00265{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);}
.m27_c00265{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00265{transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);}
.m28_c00265{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m31_c00265{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00265{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00265{transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);}
.m59_c00265{transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);}
.m42_c00265{transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);}
.m26_c00265{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);}
.m4b_c00265{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00265{transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);}
.m40_c00265{transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);}
.v0_c00265{vertical-align:0.000000px;}
.ls0_c00265{letter-spacing:0.000000px;}
.sc__c00265{text-shadow:none;}
.sc0_c00265{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00265{-webkit-text-stroke:0px transparent;}
.sc0_c00265{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00265{word-spacing:0.000000px;}
.ws0_c00265{word-spacing:19.520649px;}
.fc0_c00265{color:transparent;}
.fs13_c00265{font-size:17.280000px;}
.fsb_c00265{font-size:25.920000px;}
.fs12_c00265{font-size:28.800000px;}
.fs11_c00265{font-size:34.560000px;}
.fsf_c00265{font-size:40.320000px;}
.fs3_c00265{font-size:43.200000px;}
.fs8_c00265{font-size:46.080000px;}
.fs2_c00265{font-size:51.840000px;}
.fsc_c00265{font-size:54.720000px;}
.fs6_c00265{font-size:57.600000px;}
.fs7_c00265{font-size:60.480000px;}
.fse_c00265{font-size:63.360000px;}
.fs0_c00265{font-size:66.240000px;}
.fs9_c00265{font-size:69.120000px;}
.fs4_c00265{font-size:72.000000px;}
.fsa_c00265{font-size:74.880000px;}
.fs5_c00265{font-size:77.760000px;}
.fs14_c00265{font-size:80.640000px;}
.fs1_c00265{font-size:86.400000px;}
.fsd_c00265{font-size:103.680000px;}
.fs10_c00265{font-size:112.320000px;}
.y0_c00265{bottom:0.000000px;}
.y5c_c00265{bottom:84.960000px;}
.y5b_c00265{bottom:85.680000px;}
.y5a_c00265{bottom:86.400000px;}
.y57_c00265{bottom:116.640000px;}
.y58_c00265{bottom:118.080000px;}
.y59_c00265{bottom:120.240000px;}
.y56_c00265{bottom:120.960000px;}
.y55_c00265{bottom:121.680000px;}
.y7c_c00265{bottom:122.400000px;}
.y7b_c00265{bottom:123.120000px;}
.y54_c00265{bottom:159.840000px;}
.y7a_c00265{bottom:162.720000px;}
.y79_c00265{bottom:163.440000px;}
.y53_c00265{bottom:164.160000px;}
.y52_c00265{bottom:164.880000px;}
.y78_c00265{bottom:166.320000px;}
.y50_c00265{bottom:203.040000px;}
.y51_c00265{bottom:205.920000px;}
.y76_c00265{bottom:206.640000px;}
.y4f_c00265{bottom:207.360000px;}
.y77_c00265{bottom:208.080000px;}
.y4e_c00265{bottom:246.240000px;}
.y75_c00265{bottom:248.400000px;}
.y4c_c00265{bottom:249.840000px;}
.y4b_c00265{bottom:250.560000px;}
.y4d_c00265{bottom:254.880000px;}
.y47_c00265{bottom:289.440000px;}
.y4a_c00265{bottom:290.880000px;}
.y49_c00265{bottom:291.600000px;}
.y74_c00265{bottom:292.320000px;}
.y48_c00265{bottom:293.040000px;}
.y46_c00265{bottom:293.760000px;}
.y45_c00265{bottom:333.360000px;}
.y43_c00265{bottom:336.240000px;}
.y44_c00265{bottom:337.680000px;}
.y73_c00265{bottom:338.400000px;}
.y42_c00265{bottom:376.560000px;}
.y71_c00265{bottom:378.720000px;}
.y72_c00265{bottom:379.440000px;}
.y41_c00265{bottom:380.160000px;}
.y40_c00265{bottom:420.480000px;}
.y6e_c00265{bottom:421.920000px;}
.y70_c00265{bottom:422.640000px;}
.y3f_c00265{bottom:424.080000px;}
.y6f_c00265{bottom:424.800000px;}
.y3b_c00265{bottom:462.960000px;}
.y3e_c00265{bottom:463.680000px;}
.y6d_c00265{bottom:464.400000px;}
.y3d_c00265{bottom:465.120000px;}
.y3c_c00265{bottom:465.840000px;}
.y3a_c00265{bottom:466.560000px;}
.y36_c00265{bottom:506.160000px;}
.y39_c00265{bottom:506.880000px;}
.y6c_c00265{bottom:508.320000px;}
.y38_c00265{bottom:509.040000px;}
.y35_c00265{bottom:509.760000px;}
.y37_c00265{bottom:510.480000px;}
.y31_c00265{bottom:550.080000px;}
.y33_c00265{bottom:550.800000px;}
.y32_c00265{bottom:551.520000px;}
.y6b_c00265{bottom:552.240000px;}
.y30_c00265{bottom:552.960000px;}
.y34_c00265{bottom:553.680000px;}
.y2e_c00265{bottom:593.280000px;}
.y69_c00265{bottom:594.720000px;}
.y2d_c00265{bottom:596.160000px;}
.y2f_c00265{bottom:596.880000px;}
.y6a_c00265{bottom:597.600000px;}
.y2a_c00265{bottom:637.920000px;}
.y2c_c00265{bottom:639.360000px;}
.y2b_c00265{bottom:640.080000px;}
.y28_c00265{bottom:682.560000px;}
.y29_c00265{bottom:683.280000px;}
.y27_c00265{bottom:712.080000px;}
.y24_c00265{bottom:712.800000px;}
.y25_c00265{bottom:713.520000px;}
.y26_c00265{bottom:714.960000px;}
.y23_c00265{bottom:747.360000px;}
.y20_c00265{bottom:754.560000px;}
.y1f_c00265{bottom:755.280000px;}
.y22_c00265{bottom:756.000000px;}
.y68_c00265{bottom:756.720000px;}
.y21_c00265{bottom:758.160000px;}
.y1b_c00265{bottom:797.040000px;}
.y1e_c00265{bottom:797.760000px;}
.y1a_c00265{bottom:799.200000px;}
.y67_c00265{bottom:800.640000px;}
.y1c_c00265{bottom:801.360000px;}
.y1d_c00265{bottom:804.240000px;}
.y17_c00265{bottom:840.240000px;}
.y19_c00265{bottom:840.960000px;}
.y16_c00265{bottom:842.400000px;}
.y66_c00265{bottom:843.120000px;}
.y18_c00265{bottom:844.560000px;}
.y14_c00265{bottom:883.440000px;}
.y64_c00265{bottom:884.880000px;}
.y13_c00265{bottom:885.600000px;}
.y65_c00265{bottom:887.040000px;}
.y15_c00265{bottom:887.760000px;}
.y12_c00265{bottom:926.640000px;}
.y61_c00265{bottom:928.080000px;}
.y10_c00265{bottom:928.800000px;}
.y62_c00265{bottom:929.520000px;}
.y63_c00265{bottom:930.240000px;}
.y11_c00265{bottom:932.400000px;}
.yd_c00265{bottom:969.840000px;}
.ye_c00265{bottom:972.000000px;}
.yc_c00265{bottom:972.720000px;}
.yf_c00265{bottom:973.440000px;}
.yb_c00265{bottom:1002.240000px;}
.y7_c00265{bottom:1002.960000px;}
.y6_c00265{bottom:1003.680000px;}
.ya_c00265{bottom:1004.400000px;}
.y9_c00265{bottom:1005.120000px;}
.y8_c00265{bottom:1006.560000px;}
.y2_c00265{bottom:1044.720000px;}
.y1_c00265{bottom:1046.160000px;}
.y5_c00265{bottom:1046.880000px;}
.y5f_c00265{bottom:1047.600000px;}
.y5e_c00265{bottom:1048.320000px;}
.y60_c00265{bottom:1049.040000px;}
.y4_c00265{bottom:1049.760000px;}
.y3_c00265{bottom:1051.200000px;}
.y5d_c00265{bottom:1097.280000px;}
.h15_c00265{height:15.550313px;}
.hd_c00265{height:23.325469px;}
.h14_c00265{height:25.917187px;}
.h13_c00265{height:31.100625px;}
.h11_c00265{height:36.284062px;}
.h5_c00265{height:38.875781px;}
.ha_c00265{height:41.467500px;}
.h4_c00265{height:46.650937px;}
.he_c00265{height:49.242656px;}
.h8_c00265{height:51.834375px;}
.h9_c00265{height:54.426094px;}
.h10_c00265{height:57.017812px;}
.h2_c00265{height:59.609531px;}
.hb_c00265{height:62.201250px;}
.h6_c00265{height:64.792969px;}
.hc_c00265{height:67.384687px;}
.h7_c00265{height:69.976406px;}
.h16_c00265{height:72.568125px;}
.h3_c00265{height:77.751563px;}
.hf_c00265{height:93.301875px;}
.h12_c00265{height:101.077031px;}
.h1_c00265{height:1151.250000px;}
.h0_c00265{height:1151.280000px;}
.w0_c00265{width:774.720000px;}
.w1_c00265{width:774.750000px;}
.x0_c00265{left:0.000000px;}
.x1_c00265{left:72.720000px;}
.x1a_c00265{left:74.160000px;}
.x20_c00265{left:75.600000px;}
.x25_c00265{left:77.040000px;}
.x23_c00265{left:115.920000px;}
.x26_c00265{left:125.280000px;}
.x2_c00265{left:144.720000px;}
.x6_c00265{left:146.880000px;}
.xf_c00265{left:189.360000px;}
.xb_c00265{left:200.160000px;}
.x13_c00265{left:222.480000px;}
.x3_c00265{left:232.560000px;}
.x27_c00265{left:234.000000px;}
.x1b_c00265{left:243.360000px;}
.x7_c00265{left:253.440000px;}
.x10_c00265{left:254.880000px;}
.x15_c00265{left:264.960000px;}
.x14_c00265{left:276.480000px;}
.x4_c00265{left:287.280000px;}
.x8_c00265{left:298.080000px;}
.xc_c00265{left:308.880000px;}
.x5_c00265{left:329.040000px;}
.x21_c00265{left:330.480000px;}
.x11_c00265{left:341.280000px;}
.x9_c00265{left:352.080000px;}
.x1d_c00265{left:362.880000px;}
.x16_c00265{left:373.680000px;}
.x12_c00265{left:383.760000px;}
.xd_c00265{left:394.560000px;}
.x28_c00265{left:396.720000px;}
.x17_c00265{left:406.080000px;}
.x22_c00265{left:417.600000px;}
.x1f_c00265{left:427.680000px;}
.x1c_c00265{left:438.480000px;}
.xa_c00265{left:449.280000px;}
.x18_c00265{left:457.920000px;}
.xe_c00265{left:460.080000px;}
.x24_c00265{left:470.160000px;}
.x1e_c00265{left:481.680000px;}
.x19_c00265{left:503.280000px;}
.x29_c00265{left:534.960000px;}
.x2b_c00265{left:568.080000px;}
.x38_c00265{left:588.240000px;}
.x34_c00265{left:589.680000px;}
.x35_c00265{left:600.480000px;}
.x36_c00265{left:613.440000px;}
.x2c_c00265{left:622.080000px;}
.x31_c00265{left:623.520000px;}
.x2d_c00265{left:654.480000px;}
.x32_c00265{left:655.920000px;}
.x33_c00265{left:665.280000px;}
.x39_c00265{left:678.240000px;}
.x2e_c00265{left:686.880000px;}
.x2a_c00265{left:692.640000px;}
.x37_c00265{left:696.240000px;}
.x2f_c00265{left:697.680000px;}
.x30_c00265{left:718.560000px;}
@media print{
.v0_c00265{vertical-align:0.000000pt;}
.ls0_c00265{letter-spacing:0.000000pt;}
.ws1_c00265{word-spacing:0.000000pt;}
.ws0_c00265{word-spacing:17.351688pt;}
.fs13_c00265{font-size:15.360000pt;}
.fsb_c00265{font-size:23.040000pt;}
.fs12_c00265{font-size:25.600000pt;}
.fs11_c00265{font-size:30.720000pt;}
.fsf_c00265{font-size:35.840000pt;}
.fs3_c00265{font-size:38.400000pt;}
.fs8_c00265{font-size:40.960000pt;}
.fs2_c00265{font-size:46.080000pt;}
.fsc_c00265{font-size:48.640000pt;}
.fs6_c00265{font-size:51.200000pt;}
.fs7_c00265{font-size:53.760000pt;}
.fse_c00265{font-size:56.320000pt;}
.fs0_c00265{font-size:58.880000pt;}
.fs9_c00265{font-size:61.440000pt;}
.fs4_c00265{font-size:64.000000pt;}
.fsa_c00265{font-size:66.560000pt;}
.fs5_c00265{font-size:69.120000pt;}
.fs14_c00265{font-size:71.680000pt;}
.fs1_c00265{font-size:76.800000pt;}
.fsd_c00265{font-size:92.160000pt;}
.fs10_c00265{font-size:99.840000pt;}
.y0_c00265{bottom:0.000000pt;}
.y5c_c00265{bottom:75.520000pt;}
.y5b_c00265{bottom:76.160000pt;}
.y5a_c00265{bottom:76.800000pt;}
.y57_c00265{bottom:103.680000pt;}
.y58_c00265{bottom:104.960000pt;}
.y59_c00265{bottom:106.880000pt;}
.y56_c00265{bottom:107.520000pt;}
.y55_c00265{bottom:108.160000pt;}
.y7c_c00265{bottom:108.800000pt;}
.y7b_c00265{bottom:109.440000pt;}
.y54_c00265{bottom:142.080000pt;}
.y7a_c00265{bottom:144.640000pt;}
.y79_c00265{bottom:145.280000pt;}
.y53_c00265{bottom:145.920000pt;}
.y52_c00265{bottom:146.560000pt;}
.y78_c00265{bottom:147.840000pt;}
.y50_c00265{bottom:180.480000pt;}
.y51_c00265{bottom:183.040000pt;}
.y76_c00265{bottom:183.680000pt;}
.y4f_c00265{bottom:184.320000pt;}
.y77_c00265{bottom:184.960000pt;}
.y4e_c00265{bottom:218.880000pt;}
.y75_c00265{bottom:220.800000pt;}
.y4c_c00265{bottom:222.080000pt;}
.y4b_c00265{bottom:222.720000pt;}
.y4d_c00265{bottom:226.560000pt;}
.y47_c00265{bottom:257.280000pt;}
.y4a_c00265{bottom:258.560000pt;}
.y49_c00265{bottom:259.200000pt;}
.y74_c00265{bottom:259.840000pt;}
.y48_c00265{bottom:260.480000pt;}
.y46_c00265{bottom:261.120000pt;}
.y45_c00265{bottom:296.320000pt;}
.y43_c00265{bottom:298.880000pt;}
.y44_c00265{bottom:300.160000pt;}
.y73_c00265{bottom:300.800000pt;}
.y42_c00265{bottom:334.720000pt;}
.y71_c00265{bottom:336.640000pt;}
.y72_c00265{bottom:337.280000pt;}
.y41_c00265{bottom:337.920000pt;}
.y40_c00265{bottom:373.760000pt;}
.y6e_c00265{bottom:375.040000pt;}
.y70_c00265{bottom:375.680000pt;}
.y3f_c00265{bottom:376.960000pt;}
.y6f_c00265{bottom:377.600000pt;}
.y3b_c00265{bottom:411.520000pt;}
.y3e_c00265{bottom:412.160000pt;}
.y6d_c00265{bottom:412.800000pt;}
.y3d_c00265{bottom:413.440000pt;}
.y3c_c00265{bottom:414.080000pt;}
.y3a_c00265{bottom:414.720000pt;}
.y36_c00265{bottom:449.920000pt;}
.y39_c00265{bottom:450.560000pt;}
.y6c_c00265{bottom:451.840000pt;}
.y38_c00265{bottom:452.480000pt;}
.y35_c00265{bottom:453.120000pt;}
.y37_c00265{bottom:453.760000pt;}
.y31_c00265{bottom:488.960000pt;}
.y33_c00265{bottom:489.600000pt;}
.y32_c00265{bottom:490.240000pt;}
.y6b_c00265{bottom:490.880000pt;}
.y30_c00265{bottom:491.520000pt;}
.y34_c00265{bottom:492.160000pt;}
.y2e_c00265{bottom:527.360000pt;}
.y69_c00265{bottom:528.640000pt;}
.y2d_c00265{bottom:529.920000pt;}
.y2f_c00265{bottom:530.560000pt;}
.y6a_c00265{bottom:531.200000pt;}
.y2a_c00265{bottom:567.040000pt;}
.y2c_c00265{bottom:568.320000pt;}
.y2b_c00265{bottom:568.960000pt;}
.y28_c00265{bottom:606.720000pt;}
.y29_c00265{bottom:607.360000pt;}
.y27_c00265{bottom:632.960000pt;}
.y24_c00265{bottom:633.600000pt;}
.y25_c00265{bottom:634.240000pt;}
.y26_c00265{bottom:635.520000pt;}
.y23_c00265{bottom:664.320000pt;}
.y20_c00265{bottom:670.720000pt;}
.y1f_c00265{bottom:671.360000pt;}
.y22_c00265{bottom:672.000000pt;}
.y68_c00265{bottom:672.640000pt;}
.y21_c00265{bottom:673.920000pt;}
.y1b_c00265{bottom:708.480000pt;}
.y1e_c00265{bottom:709.120000pt;}
.y1a_c00265{bottom:710.400000pt;}
.y67_c00265{bottom:711.680000pt;}
.y1c_c00265{bottom:712.320000pt;}
.y1d_c00265{bottom:714.880000pt;}
.y17_c00265{bottom:746.880000pt;}
.y19_c00265{bottom:747.520000pt;}
.y16_c00265{bottom:748.800000pt;}
.y66_c00265{bottom:749.440000pt;}
.y18_c00265{bottom:750.720000pt;}
.y14_c00265{bottom:785.280000pt;}
.y64_c00265{bottom:786.560000pt;}
.y13_c00265{bottom:787.200000pt;}
.y65_c00265{bottom:788.480000pt;}
.y15_c00265{bottom:789.120000pt;}
.y12_c00265{bottom:823.680000pt;}
.y61_c00265{bottom:824.960000pt;}
.y10_c00265{bottom:825.600000pt;}
.y62_c00265{bottom:826.240000pt;}
.y63_c00265{bottom:826.880000pt;}
.y11_c00265{bottom:828.800000pt;}
.yd_c00265{bottom:862.080000pt;}
.ye_c00265{bottom:864.000000pt;}
.yc_c00265{bottom:864.640000pt;}
.yf_c00265{bottom:865.280000pt;}
.yb_c00265{bottom:890.880000pt;}
.y7_c00265{bottom:891.520000pt;}
.y6_c00265{bottom:892.160000pt;}
.ya_c00265{bottom:892.800000pt;}
.y9_c00265{bottom:893.440000pt;}
.y8_c00265{bottom:894.720000pt;}
.y2_c00265{bottom:928.640000pt;}
.y1_c00265{bottom:929.920000pt;}
.y5_c00265{bottom:930.560000pt;}
.y5f_c00265{bottom:931.200000pt;}
.y5e_c00265{bottom:931.840000pt;}
.y60_c00265{bottom:932.480000pt;}
.y4_c00265{bottom:933.120000pt;}
.y3_c00265{bottom:934.400000pt;}
.y5d_c00265{bottom:975.360000pt;}
.h15_c00265{height:13.822500pt;}
.hd_c00265{height:20.733750pt;}
.h14_c00265{height:23.037500pt;}
.h13_c00265{height:27.645000pt;}
.h11_c00265{height:32.252500pt;}
.h5_c00265{height:34.556250pt;}
.ha_c00265{height:36.860000pt;}
.h4_c00265{height:41.467500pt;}
.he_c00265{height:43.771250pt;}
.h8_c00265{height:46.075000pt;}
.h9_c00265{height:48.378750pt;}
.h10_c00265{height:50.682500pt;}
.h2_c00265{height:52.986250pt;}
.hb_c00265{height:55.290000pt;}
.h6_c00265{height:57.593750pt;}
.hc_c00265{height:59.897500pt;}
.h7_c00265{height:62.201250pt;}
.h16_c00265{height:64.505000pt;}
.h3_c00265{height:69.112500pt;}
.hf_c00265{height:82.935000pt;}
.h12_c00265{height:89.846250pt;}
.h1_c00265{height:1023.333333pt;}
.h0_c00265{height:1023.360000pt;}
.w0_c00265{width:688.640000pt;}
.w1_c00265{width:688.666667pt;}
.x0_c00265{left:0.000000pt;}
.x1_c00265{left:64.640000pt;}
.x1a_c00265{left:65.920000pt;}
.x20_c00265{left:67.200000pt;}
.x25_c00265{left:68.480000pt;}
.x23_c00265{left:103.040000pt;}
.x26_c00265{left:111.360000pt;}
.x2_c00265{left:128.640000pt;}
.x6_c00265{left:130.560000pt;}
.xf_c00265{left:168.320000pt;}
.xb_c00265{left:177.920000pt;}
.x13_c00265{left:197.760000pt;}
.x3_c00265{left:206.720000pt;}
.x27_c00265{left:208.000000pt;}
.x1b_c00265{left:216.320000pt;}
.x7_c00265{left:225.280000pt;}
.x10_c00265{left:226.560000pt;}
.x15_c00265{left:235.520000pt;}
.x14_c00265{left:245.760000pt;}
.x4_c00265{left:255.360000pt;}
.x8_c00265{left:264.960000pt;}
.xc_c00265{left:274.560000pt;}
.x5_c00265{left:292.480000pt;}
.x21_c00265{left:293.760000pt;}
.x11_c00265{left:303.360000pt;}
.x9_c00265{left:312.960000pt;}
.x1d_c00265{left:322.560000pt;}
.x16_c00265{left:332.160000pt;}
.x12_c00265{left:341.120000pt;}
.xd_c00265{left:350.720000pt;}
.x28_c00265{left:352.640000pt;}
.x17_c00265{left:360.960000pt;}
.x22_c00265{left:371.200000pt;}
.x1f_c00265{left:380.160000pt;}
.x1c_c00265{left:389.760000pt;}
.xa_c00265{left:399.360000pt;}
.x18_c00265{left:407.040000pt;}
.xe_c00265{left:408.960000pt;}
.x24_c00265{left:417.920000pt;}
.x1e_c00265{left:428.160000pt;}
.x19_c00265{left:447.360000pt;}
.x29_c00265{left:475.520000pt;}
.x2b_c00265{left:504.960000pt;}
.x38_c00265{left:522.880000pt;}
.x34_c00265{left:524.160000pt;}
.x35_c00265{left:533.760000pt;}
.x36_c00265{left:545.280000pt;}
.x2c_c00265{left:552.960000pt;}
.x31_c00265{left:554.240000pt;}
.x2d_c00265{left:581.760000pt;}
.x32_c00265{left:583.040000pt;}
.x33_c00265{left:591.360000pt;}
.x39_c00265{left:602.880000pt;}
.x2e_c00265{left:610.560000pt;}
.x2a_c00265{left:615.680000pt;}
.x37_c00265{left:618.880000pt;}
.x2f_c00265{left:620.160000pt;}
.x30_c00265{left:638.720000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_daab91243f88160b1c076d22.woff2')format("woff");}.ff1_c00266{font-family:ff1_c00266;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m46_c00266{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00266{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);}
.m8_c00266{transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);}
.m42_c00266{transform:matrix(0.232125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232125,0.000000,0.000000,0.250000,0,0);}
.m48_c00266{transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);}
.m2c_c00266{transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);}
.m3c_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);}
.m44_c00266{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m17_c00266{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);}
.m33_c00266{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m0_c00266{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00266{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m3_c00266{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mb_c00266{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m27_c00266{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);}
.m24_c00266{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_c00266{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);}
.m29_c00266{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m37_c00266{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mf_c00266{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m23_c00266{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.ma_c00266{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m9_c00266{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m15_c00266{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m26_c00266{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m45_c00266{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m18_c00266{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00266{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m10_c00266{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m16_c00266{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m47_c00266{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00266{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00266{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m34_c00266{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00266{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m5_c00266{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00266{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m11_c00266{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00266{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m35_c00266{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m32_c00266{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m41_c00266{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);}
.m28_c00266{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00266{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m49_c00266{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m6_c00266{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m19_c00266{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);}
.m4a_c00266{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);}
.m20_c00266{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m14_c00266{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);}
.m7_c00266{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00266{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);}
.m31_c00266{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.md_c00266{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00266{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m2_c00266{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);}
.m21_c00266{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);}
.m1a_c00266{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00266{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m43_c00266{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m40_c00266{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);}
.m4d_c00266{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m36_c00266{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m22_c00266{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00266{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00266{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m13_c00266{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m12_c00266{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m39_c00266{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);}
.m4_c00266{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00266{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);}
.m2a_c00266{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m30_c00266{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m1_c00266{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m25_c00266{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00266{transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);}
.m38_c00266{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.mc_c00266{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);}
.m3e_c00266{transform:matrix(0.885000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.885000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.885000,0.000000,0.000000,0.250000,0,0);}
.v1_c00266{vertical-align:-5.760000px;}
.v0_c00266{vertical-align:0.000000px;}
.ls0_c00266{letter-spacing:0.000000px;}
.sc__c00266{text-shadow:none;}
.sc0_c00266{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00266{-webkit-text-stroke:0px transparent;}
.sc0_c00266{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00266{word-spacing:0.000000px;}
.ws0_c00266{word-spacing:9.474000px;}
.ws1_c00266{word-spacing:11.693143px;}
.fc0_c00266{color:transparent;}
.fsb_c00266{font-size:25.920000px;}
.fs11_c00266{font-size:34.560000px;}
.fs10_c00266{font-size:37.440000px;}
.fsa_c00266{font-size:40.320000px;}
.fs1_c00266{font-size:43.200000px;}
.fsc_c00266{font-size:46.080000px;}
.fsd_c00266{font-size:48.960000px;}
.fs2_c00266{font-size:51.840000px;}
.fs8_c00266{font-size:54.720000px;}
.fs6_c00266{font-size:57.600000px;}
.fs7_c00266{font-size:60.480000px;}
.fs4_c00266{font-size:63.360000px;}
.fsf_c00266{font-size:66.240000px;}
.fs0_c00266{font-size:69.120000px;}
.fs12_c00266{font-size:72.000000px;}
.fs9_c00266{font-size:74.880000px;}
.fs3_c00266{font-size:77.760000px;}
.fse_c00266{font-size:80.640000px;}
.fs5_c00266{font-size:95.040000px;}
.y0_c00266{bottom:0.000000px;}
.y59_c00266{bottom:97.200000px;}
.y58_c00266{bottom:99.360000px;}
.y71_c00266{bottom:100.800000px;}
.y57_c00266{bottom:102.240000px;}
.y56_c00266{bottom:140.400000px;}
.y55_c00266{bottom:143.280000px;}
.y70_c00266{bottom:144.720000px;}
.y54_c00266{bottom:145.440000px;}
.y52_c00266{bottom:183.600000px;}
.y53_c00266{bottom:184.320000px;}
.y50_c00266{bottom:187.200000px;}
.y6f_c00266{bottom:187.920000px;}
.y51_c00266{bottom:188.640000px;}
.y4d_c00266{bottom:227.520000px;}
.y4f_c00266{bottom:228.960000px;}
.y6e_c00266{bottom:229.680000px;}
.y4c_c00266{bottom:231.120000px;}
.y4e_c00266{bottom:231.840000px;}
.y4b_c00266{bottom:270.720000px;}
.y6d_c00266{bottom:273.600000px;}
.y49_c00266{bottom:274.320000px;}
.y4a_c00266{bottom:275.040000px;}
.y48_c00266{bottom:313.920000px;}
.y6c_c00266{bottom:316.080000px;}
.y46_c00266{bottom:316.800000px;}
.y47_c00266{bottom:318.240000px;}
.y43_c00266{bottom:356.400000px;}
.y45_c00266{bottom:357.120000px;}
.y44_c00266{bottom:358.560000px;}
.y41_c00266{bottom:360.000000px;}
.y42_c00266{bottom:360.720000px;}
.y40_c00266{bottom:399.600000px;}
.y69_c00266{bottom:402.480000px;}
.y3e_c00266{bottom:403.200000px;}
.y3f_c00266{bottom:403.920000px;}
.y6b_c00266{bottom:404.640000px;}
.y6a_c00266{bottom:405.360000px;}
.y3d_c00266{bottom:442.800000px;}
.y67_c00266{bottom:444.960000px;}
.y3b_c00266{bottom:445.680000px;}
.y3c_c00266{bottom:447.120000px;}
.y68_c00266{bottom:447.840000px;}
.y3a_c00266{bottom:486.720000px;}
.y66_c00266{bottom:488.160000px;}
.y37_c00266{bottom:488.880000px;}
.y39_c00266{bottom:490.320000px;}
.y38_c00266{bottom:491.040000px;}
.y35_c00266{bottom:529.200000px;}
.y36_c00266{bottom:529.920000px;}
.y65_c00266{bottom:531.360000px;}
.y33_c00266{bottom:532.080000px;}
.y34_c00266{bottom:533.520000px;}
.y30_c00266{bottom:572.400000px;}
.y32_c00266{bottom:573.120000px;}
.y2e_c00266{bottom:574.560000px;}
.y31_c00266{bottom:576.000000px;}
.y2f_c00266{bottom:576.720000px;}
.y2c_c00266{bottom:615.600000px;}
.y2d_c00266{bottom:616.320000px;}
.y64_c00266{bottom:617.040000px;}
.y63_c00266{bottom:617.760000px;}
.y2b_c00266{bottom:618.480000px;}
.y29_c00266{bottom:659.520000px;}
.y61_c00266{bottom:660.240000px;}
.y28_c00266{bottom:660.960000px;}
.y62_c00266{bottom:663.120000px;}
.y2a_c00266{bottom:663.840000px;}
.y27_c00266{bottom:702.720000px;}
.y26_c00266{bottom:703.440000px;}
.y5f_c00266{bottom:704.160000px;}
.y60_c00266{bottom:704.880000px;}
.y24_c00266{bottom:745.920000px;}
.y23_c00266{bottom:747.360000px;}
.y5e_c00266{bottom:749.520000px;}
.y25_c00266{bottom:750.240000px;}
.y22_c00266{bottom:789.120000px;}
.y5d_c00266{bottom:790.560000px;}
.y21_c00266{bottom:791.280000px;}
.y1e_c00266{bottom:832.320000px;}
.y20_c00266{bottom:833.040000px;}
.y1c_c00266{bottom:833.760000px;}
.y1f_c00266{bottom:834.480000px;}
.y1d_c00266{bottom:835.920000px;}
.y1b_c00266{bottom:875.520000px;}
.y1a_c00266{bottom:876.960000px;}
.y5a_c00266{bottom:877.680000px;}
.y5b_c00266{bottom:878.400000px;}
.y5c_c00266{bottom:879.120000px;}
.y19_c00266{bottom:911.520000px;}
.y15_c00266{bottom:918.720000px;}
.y14_c00266{bottom:920.160000px;}
.y18_c00266{bottom:920.880000px;}
.y17_c00266{bottom:922.320000px;}
.y16_c00266{bottom:923.040000px;}
.y12_c00266{bottom:961.200000px;}
.ye_c00266{bottom:961.920000px;}
.yd_c00266{bottom:962.640000px;}
.y13_c00266{bottom:963.360000px;}
.y11_c00266{bottom:964.800000px;}
.yf_c00266{bottom:965.520000px;}
.y10_c00266{bottom:968.400000px;}
.ya_c00266{bottom:1004.400000px;}
.y8_c00266{bottom:1005.840000px;}
.yb_c00266{bottom:1006.560000px;}
.yc_c00266{bottom:1008.000000px;}
.y9_c00266{bottom:1008.720000px;}
.y7_c00266{bottom:1041.120000px;}
.y4_c00266{bottom:1047.600000px;}
.y1_c00266{bottom:1048.320000px;}
.y6_c00266{bottom:1049.040000px;}
.y2_c00266{bottom:1049.760000px;}
.y5_c00266{bottom:1051.200000px;}
.y3_c00266{bottom:1051.920000px;}
.hd_c00266{height:23.325469px;}
.h13_c00266{height:31.100625px;}
.h12_c00266{height:33.692344px;}
.hc_c00266{height:36.284062px;}
.h3_c00266{height:38.875781px;}
.he_c00266{height:41.467500px;}
.hf_c00266{height:44.059219px;}
.h4_c00266{height:46.650937px;}
.ha_c00266{height:49.242656px;}
.h8_c00266{height:51.834375px;}
.h9_c00266{height:54.426094px;}
.h6_c00266{height:57.017812px;}
.h11_c00266{height:59.609531px;}
.h2_c00266{height:62.201250px;}
.h14_c00266{height:64.792969px;}
.hb_c00266{height:67.384687px;}
.h5_c00266{height:69.976406px;}
.h10_c00266{height:72.568125px;}
.h7_c00266{height:85.526719px;}
.h0_c00266{height:1157.760000px;}
.h1_c00266{height:1158.000000px;}
.w1_c00266{width:783.000000px;}
.w0_c00266{width:783.360000px;}
.x0_c00266{left:0.000000px;}
.x1_c00266{left:78.480000px;}
.xf_c00266{left:79.920000px;}
.x27_c00266{left:81.360000px;}
.x2_c00266{left:120.960000px;}
.x1e_c00266{left:151.200000px;}
.x3_c00266{left:153.360000px;}
.x22_c00266{left:192.960000px;}
.x1a_c00266{left:194.400000px;}
.x4_c00266{left:196.560000px;}
.x2d_c00266{left:205.920000px;}
.x21_c00266{left:237.600000px;}
.xe_c00266{left:239.040000px;}
.x10_c00266{left:248.400000px;}
.x2e_c00266{left:249.840000px;}
.x15_c00266{left:259.200000px;}
.x28_c00266{left:280.800000px;}
.x26_c00266{left:291.600000px;}
.x11_c00266{left:293.760000px;}
.x1f_c00266{left:302.400000px;}
.x16_c00266{left:303.840000px;}
.x23_c00266{left:314.640000px;}
.x29_c00266{left:324.000000px;}
.x12_c00266{left:325.440000px;}
.x1c_c00266{left:335.520000px;}
.x5_c00266{left:336.960000px;}
.x20_c00266{left:347.040000px;}
.x1b_c00266{left:379.440000px;}
.x6_c00266{left:390.240000px;}
.x24_c00266{left:399.600000px;}
.x13_c00266{left:401.040000px;}
.x2a_c00266{left:421.920000px;}
.x1d_c00266{left:434.160000px;}
.x25_c00266{left:442.800000px;}
.x7_c00266{left:444.960000px;}
.x17_c00266{left:455.760000px;}
.x2b_c00266{left:464.400000px;}
.x8_c00266{left:488.160000px;}
.x2c_c00266{left:507.600000px;}
.x9_c00266{left:531.360000px;}
.x18_c00266{left:563.040000px;}
.x19_c00266{left:574.560000px;}
.x35_c00266{left:594.000000px;}
.x14_c00266{left:595.440000px;}
.x32_c00266{left:606.240000px;}
.x36_c00266{left:626.400000px;}
.x31_c00266{left:627.840000px;}
.xa_c00266{left:629.280000px;}
.x33_c00266{left:660.240000px;}
.xb_c00266{left:661.680000px;}
.x34_c00266{left:692.640000px;}
.x2f_c00266{left:694.080000px;}
.x30_c00266{left:702.720000px;}
.xc_c00266{left:704.160000px;}
.x37_c00266{left:722.880000px;}
.xd_c00266{left:724.320000px;}
@media print{
.v1_c00266{vertical-align:-5.120000pt;}
.v0_c00266{vertical-align:0.000000pt;}
.ls0_c00266{letter-spacing:0.000000pt;}
.ws2_c00266{word-spacing:0.000000pt;}
.ws0_c00266{word-spacing:8.421333pt;}
.ws1_c00266{word-spacing:10.393905pt;}
.fsb_c00266{font-size:23.040000pt;}
.fs11_c00266{font-size:30.720000pt;}
.fs10_c00266{font-size:33.280000pt;}
.fsa_c00266{font-size:35.840000pt;}
.fs1_c00266{font-size:38.400000pt;}
.fsc_c00266{font-size:40.960000pt;}
.fsd_c00266{font-size:43.520000pt;}
.fs2_c00266{font-size:46.080000pt;}
.fs8_c00266{font-size:48.640000pt;}
.fs6_c00266{font-size:51.200000pt;}
.fs7_c00266{font-size:53.760000pt;}
.fs4_c00266{font-size:56.320000pt;}
.fsf_c00266{font-size:58.880000pt;}
.fs0_c00266{font-size:61.440000pt;}
.fs12_c00266{font-size:64.000000pt;}
.fs9_c00266{font-size:66.560000pt;}
.fs3_c00266{font-size:69.120000pt;}
.fse_c00266{font-size:71.680000pt;}
.fs5_c00266{font-size:84.480000pt;}
.y0_c00266{bottom:0.000000pt;}
.y59_c00266{bottom:86.400000pt;}
.y58_c00266{bottom:88.320000pt;}
.y71_c00266{bottom:89.600000pt;}
.y57_c00266{bottom:90.880000pt;}
.y56_c00266{bottom:124.800000pt;}
.y55_c00266{bottom:127.360000pt;}
.y70_c00266{bottom:128.640000pt;}
.y54_c00266{bottom:129.280000pt;}
.y52_c00266{bottom:163.200000pt;}
.y53_c00266{bottom:163.840000pt;}
.y50_c00266{bottom:166.400000pt;}
.y6f_c00266{bottom:167.040000pt;}
.y51_c00266{bottom:167.680000pt;}
.y4d_c00266{bottom:202.240000pt;}
.y4f_c00266{bottom:203.520000pt;}
.y6e_c00266{bottom:204.160000pt;}
.y4c_c00266{bottom:205.440000pt;}
.y4e_c00266{bottom:206.080000pt;}
.y4b_c00266{bottom:240.640000pt;}
.y6d_c00266{bottom:243.200000pt;}
.y49_c00266{bottom:243.840000pt;}
.y4a_c00266{bottom:244.480000pt;}
.y48_c00266{bottom:279.040000pt;}
.y6c_c00266{bottom:280.960000pt;}
.y46_c00266{bottom:281.600000pt;}
.y47_c00266{bottom:282.880000pt;}
.y43_c00266{bottom:316.800000pt;}
.y45_c00266{bottom:317.440000pt;}
.y44_c00266{bottom:318.720000pt;}
.y41_c00266{bottom:320.000000pt;}
.y42_c00266{bottom:320.640000pt;}
.y40_c00266{bottom:355.200000pt;}
.y69_c00266{bottom:357.760000pt;}
.y3e_c00266{bottom:358.400000pt;}
.y3f_c00266{bottom:359.040000pt;}
.y6b_c00266{bottom:359.680000pt;}
.y6a_c00266{bottom:360.320000pt;}
.y3d_c00266{bottom:393.600000pt;}
.y67_c00266{bottom:395.520000pt;}
.y3b_c00266{bottom:396.160000pt;}
.y3c_c00266{bottom:397.440000pt;}
.y68_c00266{bottom:398.080000pt;}
.y3a_c00266{bottom:432.640000pt;}
.y66_c00266{bottom:433.920000pt;}
.y37_c00266{bottom:434.560000pt;}
.y39_c00266{bottom:435.840000pt;}
.y38_c00266{bottom:436.480000pt;}
.y35_c00266{bottom:470.400000pt;}
.y36_c00266{bottom:471.040000pt;}
.y65_c00266{bottom:472.320000pt;}
.y33_c00266{bottom:472.960000pt;}
.y34_c00266{bottom:474.240000pt;}
.y30_c00266{bottom:508.800000pt;}
.y32_c00266{bottom:509.440000pt;}
.y2e_c00266{bottom:510.720000pt;}
.y31_c00266{bottom:512.000000pt;}
.y2f_c00266{bottom:512.640000pt;}
.y2c_c00266{bottom:547.200000pt;}
.y2d_c00266{bottom:547.840000pt;}
.y64_c00266{bottom:548.480000pt;}
.y63_c00266{bottom:549.120000pt;}
.y2b_c00266{bottom:549.760000pt;}
.y29_c00266{bottom:586.240000pt;}
.y61_c00266{bottom:586.880000pt;}
.y28_c00266{bottom:587.520000pt;}
.y62_c00266{bottom:589.440000pt;}
.y2a_c00266{bottom:590.080000pt;}
.y27_c00266{bottom:624.640000pt;}
.y26_c00266{bottom:625.280000pt;}
.y5f_c00266{bottom:625.920000pt;}
.y60_c00266{bottom:626.560000pt;}
.y24_c00266{bottom:663.040000pt;}
.y23_c00266{bottom:664.320000pt;}
.y5e_c00266{bottom:666.240000pt;}
.y25_c00266{bottom:666.880000pt;}
.y22_c00266{bottom:701.440000pt;}
.y5d_c00266{bottom:702.720000pt;}
.y21_c00266{bottom:703.360000pt;}
.y1e_c00266{bottom:739.840000pt;}
.y20_c00266{bottom:740.480000pt;}
.y1c_c00266{bottom:741.120000pt;}
.y1f_c00266{bottom:741.760000pt;}
.y1d_c00266{bottom:743.040000pt;}
.y1b_c00266{bottom:778.240000pt;}
.y1a_c00266{bottom:779.520000pt;}
.y5a_c00266{bottom:780.160000pt;}
.y5b_c00266{bottom:780.800000pt;}
.y5c_c00266{bottom:781.440000pt;}
.y19_c00266{bottom:810.240000pt;}
.y15_c00266{bottom:816.640000pt;}
.y14_c00266{bottom:817.920000pt;}
.y18_c00266{bottom:818.560000pt;}
.y17_c00266{bottom:819.840000pt;}
.y16_c00266{bottom:820.480000pt;}
.y12_c00266{bottom:854.400000pt;}
.ye_c00266{bottom:855.040000pt;}
.yd_c00266{bottom:855.680000pt;}
.y13_c00266{bottom:856.320000pt;}
.y11_c00266{bottom:857.600000pt;}
.yf_c00266{bottom:858.240000pt;}
.y10_c00266{bottom:860.800000pt;}
.ya_c00266{bottom:892.800000pt;}
.y8_c00266{bottom:894.080000pt;}
.yb_c00266{bottom:894.720000pt;}
.yc_c00266{bottom:896.000000pt;}
.y9_c00266{bottom:896.640000pt;}
.y7_c00266{bottom:925.440000pt;}
.y4_c00266{bottom:931.200000pt;}
.y1_c00266{bottom:931.840000pt;}
.y6_c00266{bottom:932.480000pt;}
.y2_c00266{bottom:933.120000pt;}
.y5_c00266{bottom:934.400000pt;}
.y3_c00266{bottom:935.040000pt;}
.hd_c00266{height:20.733750pt;}
.h13_c00266{height:27.645000pt;}
.h12_c00266{height:29.948750pt;}
.hc_c00266{height:32.252500pt;}
.h3_c00266{height:34.556250pt;}
.he_c00266{height:36.860000pt;}
.hf_c00266{height:39.163750pt;}
.h4_c00266{height:41.467500pt;}
.ha_c00266{height:43.771250pt;}
.h8_c00266{height:46.075000pt;}
.h9_c00266{height:48.378750pt;}
.h6_c00266{height:50.682500pt;}
.h11_c00266{height:52.986250pt;}
.h2_c00266{height:55.290000pt;}
.h14_c00266{height:57.593750pt;}
.hb_c00266{height:59.897500pt;}
.h5_c00266{height:62.201250pt;}
.h10_c00266{height:64.505000pt;}
.h7_c00266{height:76.023750pt;}
.h0_c00266{height:1029.120000pt;}
.h1_c00266{height:1029.333333pt;}
.w1_c00266{width:696.000000pt;}
.w0_c00266{width:696.320000pt;}
.x0_c00266{left:0.000000pt;}
.x1_c00266{left:69.760000pt;}
.xf_c00266{left:71.040000pt;}
.x27_c00266{left:72.320000pt;}
.x2_c00266{left:107.520000pt;}
.x1e_c00266{left:134.400000pt;}
.x3_c00266{left:136.320000pt;}
.x22_c00266{left:171.520000pt;}
.x1a_c00266{left:172.800000pt;}
.x4_c00266{left:174.720000pt;}
.x2d_c00266{left:183.040000pt;}
.x21_c00266{left:211.200000pt;}
.xe_c00266{left:212.480000pt;}
.x10_c00266{left:220.800000pt;}
.x2e_c00266{left:222.080000pt;}
.x15_c00266{left:230.400000pt;}
.x28_c00266{left:249.600000pt;}
.x26_c00266{left:259.200000pt;}
.x11_c00266{left:261.120000pt;}
.x1f_c00266{left:268.800000pt;}
.x16_c00266{left:270.080000pt;}
.x23_c00266{left:279.680000pt;}
.x29_c00266{left:288.000000pt;}
.x12_c00266{left:289.280000pt;}
.x1c_c00266{left:298.240000pt;}
.x5_c00266{left:299.520000pt;}
.x20_c00266{left:308.480000pt;}
.x1b_c00266{left:337.280000pt;}
.x6_c00266{left:346.880000pt;}
.x24_c00266{left:355.200000pt;}
.x13_c00266{left:356.480000pt;}
.x2a_c00266{left:375.040000pt;}
.x1d_c00266{left:385.920000pt;}
.x25_c00266{left:393.600000pt;}
.x7_c00266{left:395.520000pt;}
.x17_c00266{left:405.120000pt;}
.x2b_c00266{left:412.800000pt;}
.x8_c00266{left:433.920000pt;}
.x2c_c00266{left:451.200000pt;}
.x9_c00266{left:472.320000pt;}
.x18_c00266{left:500.480000pt;}
.x19_c00266{left:510.720000pt;}
.x35_c00266{left:528.000000pt;}
.x14_c00266{left:529.280000pt;}
.x32_c00266{left:538.880000pt;}
.x36_c00266{left:556.800000pt;}
.x31_c00266{left:558.080000pt;}
.xa_c00266{left:559.360000pt;}
.x33_c00266{left:586.880000pt;}
.xb_c00266{left:588.160000pt;}
.x34_c00266{left:615.680000pt;}
.x2f_c00266{left:616.960000pt;}
.x30_c00266{left:624.640000pt;}
.xc_c00266{left:625.920000pt;}
.x37_c00266{left:642.560000pt;}
.xd_c00266{left:643.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3268e11e56f1eea5441f6234.woff2')format("woff");}.ff1_c00267{font-family:ff1_c00267;line-height:1.109863;font-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_c00267{transform:matrix(0.143525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143525,0.000000,0.000000,0.250000,0,0);}
.m41_c00267{transform:matrix(0.143900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143900,0.000000,0.000000,0.250000,0,0);}
.m37_c00267{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m48_c00267{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);}
.m35_c00267{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m25_c00267{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m3d_c00267{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m44_c00267{transform:matrix(0.242175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242175,0.000000,0.000000,0.250000,0,0);}
.m2b_c00267{transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);}
.m47_c00267{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m43_c00267{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m6_c00267{transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);}
.m31_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);}
.m15_c00267{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);}
.m33_c00267{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);}
.m2d_c00267{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_c00267{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_c00267{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_c00267{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.me_c00267{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m16_c00267{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);}
.m3f_c00267{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m7_c00267{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);}
.m36_c00267{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m23_c00267{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);}
.m1e_c00267{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m14_c00267{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m18_c00267{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m46_c00267{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00267{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00267{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m4_c00267{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m22_c00267{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00267{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.mc_c00267{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2_c00267{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00267{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00267{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m29_c00267{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m12_c00267{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m19_c00267{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m24_c00267{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m21_c00267{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1_c00267{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m30_c00267{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m32_c00267{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m0_c00267{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.ma_c00267{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.mb_c00267{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);}
.mf_c00267{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m28_c00267{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_c00267{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);}
.m42_c00267{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m11_c00267{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00267{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00267{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m34_c00267{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);}
.m2f_c00267{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00267{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);}
.m39_c00267{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m13_c00267{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);}
.m3_c00267{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m26_c00267{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m40_c00267{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);}
.m3c_c00267{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);}
.m5_c00267{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.md_c00267{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00267{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_c00267{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m17_c00267{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);}
.m38_c00267{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00267{transform:matrix(0.817500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.817500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.817500,0.000000,0.000000,0.250000,0,0);}
.m20_c00267{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.v1_c00267{vertical-align:-2.880000px;}
.v0_c00267{vertical-align:0.000000px;}
.v2_c00267{vertical-align:2.880000px;}
.ls0_c00267{letter-spacing:0.000000px;}
.sc__c00267{text-shadow:none;}
.sc0_c00267{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00267{-webkit-text-stroke:0px transparent;}
.sc0_c00267{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00267{word-spacing:-2.477040px;}
.ws3_c00267{word-spacing:0.000000px;}
.ws0_c00267{word-spacing:6.730422px;}
.ws2_c00267{word-spacing:9.210378px;}
._0_c00267{width:44.470218px;}
.fc0_c00267{color:transparent;}
.fsd_c00267{font-size:23.040000px;}
.fs11_c00267{font-size:25.920000px;}
.fs5_c00267{font-size:34.560000px;}
.fsf_c00267{font-size:40.320000px;}
.fs10_c00267{font-size:43.200000px;}
.fsc_c00267{font-size:46.080000px;}
.fse_c00267{font-size:48.960000px;}
.fs9_c00267{font-size:51.840000px;}
.fs2_c00267{font-size:54.720000px;}
.fs8_c00267{font-size:57.600000px;}
.fs6_c00267{font-size:60.480000px;}
.fs1_c00267{font-size:63.360000px;}
.fs4_c00267{font-size:66.240000px;}
.fs7_c00267{font-size:69.120000px;}
.fsa_c00267{font-size:72.000000px;}
.fs0_c00267{font-size:74.880000px;}
.fs3_c00267{font-size:77.760000px;}
.fs12_c00267{font-size:80.640000px;}
.fs13_c00267{font-size:83.520000px;}
.fsb_c00267{font-size:103.680000px;}
.y0_c00267{bottom:0.000000px;}
.y4f_c00267{bottom:55.440000px;}
.y53_c00267{bottom:59.040000px;}
.y4e_c00267{bottom:60.480000px;}
.y4c_c00267{bottom:99.360000px;}
.y4d_c00267{bottom:100.080000px;}
.y52_c00267{bottom:102.960000px;}
.y4b_c00267{bottom:104.400000px;}
.y49_c00267{bottom:142.560000px;}
.y4a_c00267{bottom:143.280000px;}
.y47_c00267{bottom:146.160000px;}
.y51_c00267{bottom:147.600000px;}
.y48_c00267{bottom:148.320000px;}
.y45_c00267{bottom:186.480000px;}
.y46_c00267{bottom:187.200000px;}
.y50_c00267{bottom:189.360000px;}
.y44_c00267{bottom:190.080000px;}
.y3f_c00267{bottom:283.680000px;}
.y3e_c00267{bottom:285.840000px;}
.y43_c00267{bottom:286.560000px;}
.y3c_c00267{bottom:326.880000px;}
.y41_c00267{bottom:329.040000px;}
.y3d_c00267{bottom:329.760000px;}
.y3b_c00267{bottom:330.480000px;}
.y42_c00267{bottom:331.200000px;}
.y3a_c00267{bottom:370.080000px;}
.y40_c00267{bottom:372.240000px;}
.y37_c00267{bottom:372.960000px;}
.y39_c00267{bottom:373.680000px;}
.y38_c00267{bottom:374.400000px;}
.y34_c00267{bottom:415.440000px;}
.y36_c00267{bottom:416.880000px;}
.y33_c00267{bottom:417.600000px;}
.y35_c00267{bottom:419.760000px;}
.y2d_c00267{bottom:467.280000px;}
.y32_c00267{bottom:469.440000px;}
.y2c_c00267{bottom:470.160000px;}
.y30_c00267{bottom:512.640000px;}
.y31_c00267{bottom:514.800000px;}
.y2b_c00267{bottom:553.680000px;}
.y2f_c00267{bottom:555.120000px;}
.y2a_c00267{bottom:555.840000px;}
.y2e_c00267{bottom:556.560000px;}
.y27_c00267{bottom:597.600000px;}
.y26_c00267{bottom:598.320000px;}
.y29_c00267{bottom:599.040000px;}
.y28_c00267{bottom:599.760000px;}
.y25_c00267{bottom:652.320000px;}
.y24_c00267{bottom:653.040000px;}
.y20_c00267{bottom:693.360000px;}
.y1f_c00267{bottom:694.080000px;}
.y22_c00267{bottom:695.520000px;}
.y21_c00267{bottom:696.240000px;}
.y23_c00267{bottom:697.680000px;}
.y1c_c00267{bottom:726.480000px;}
.y1a_c00267{bottom:737.280000px;}
.y1d_c00267{bottom:738.000000px;}
.y1e_c00267{bottom:738.720000px;}
.y1b_c00267{bottom:740.160000px;}
.y17_c00267{bottom:779.760000px;}
.y18_c00267{bottom:780.480000px;}
.y19_c00267{bottom:781.200000px;}
.y16_c00267{bottom:781.920000px;}
.y15_c00267{bottom:822.960000px;}
.y13_c00267{bottom:823.680000px;}
.y14_c00267{bottom:826.560000px;}
.y12_c00267{bottom:920.880000px;}
.y10_c00267{bottom:921.600000px;}
.y11_c00267{bottom:923.760000px;}
.y9_c00267{bottom:964.080000px;}
.yc_c00267{bottom:964.800000px;}
.ye_c00267{bottom:965.520000px;}
.yf_c00267{bottom:966.240000px;}
.ya_c00267{bottom:966.960000px;}
.yb_c00267{bottom:967.680000px;}
.y6_c00267{bottom:1008.000000px;}
.y8_c00267{bottom:1008.720000px;}
.y7_c00267{bottom:1009.440000px;}
.y5_c00267{bottom:1049.760000px;}
.y3_c00267{bottom:1050.480000px;}
.y2_c00267{bottom:1051.200000px;}
.yd_c00267{bottom:1051.920000px;}
.y4_c00267{bottom:1054.080000px;}
.y1_c00267{bottom:1096.560000px;}
.hf_c00267{height:20.733750px;}
.h13_c00267{height:23.325469px;}
.h7_c00267{height:31.100625px;}
.h11_c00267{height:36.284062px;}
.h12_c00267{height:38.875781px;}
.he_c00267{height:41.467500px;}
.h10_c00267{height:44.059219px;}
.hb_c00267{height:46.650937px;}
.h4_c00267{height:49.242656px;}
.ha_c00267{height:51.834375px;}
.h8_c00267{height:54.426094px;}
.h3_c00267{height:57.017812px;}
.h6_c00267{height:59.609531px;}
.h9_c00267{height:62.201250px;}
.hc_c00267{height:64.792969px;}
.h2_c00267{height:67.384687px;}
.h5_c00267{height:69.976406px;}
.h14_c00267{height:72.568125px;}
.h15_c00267{height:75.159844px;}
.hd_c00267{height:93.301875px;}
.h0_c00267{height:1154.160000px;}
.h1_c00267{height:1154.250000px;}
.w0_c00267{width:777.600000px;}
.w1_c00267{width:777.750000px;}
.x0_c00267{left:0.000000px;}
.x2_c00267{left:73.440000px;}
.x22_c00267{left:74.880000px;}
.x2d_c00267{left:76.320000px;}
.x8_c00267{left:115.200000px;}
.x30_c00267{left:116.640000px;}
.x1d_c00267{left:123.840000px;}
.x15_c00267{left:144.720000px;}
.x3_c00267{left:146.880000px;}
.x24_c00267{left:157.680000px;}
.x1e_c00267{left:179.280000px;}
.x9_c00267{left:189.360000px;}
.x25_c00267{left:199.440000px;}
.x26_c00267{left:211.680000px;}
.x1f_c00267{left:220.320000px;}
.x4_c00267{left:231.120000px;}
.x2e_c00267{left:233.280000px;}
.xb_c00267{left:243.360000px;}
.xa_c00267{left:254.160000px;}
.x18_c00267{left:265.680000px;}
.x5_c00267{left:276.480000px;}
.x27_c00267{left:285.840000px;}
.x28_c00267{left:287.280000px;}
.x20_c00267{left:288.720000px;}
.xc_c00267{left:298.080000px;}
.x16_c00267{left:307.440000px;}
.x29_c00267{left:329.760000px;}
.xd_c00267{left:341.280000px;}
.x2f_c00267{left:362.880000px;}
.x21_c00267{left:371.520000px;}
.x2a_c00267{left:372.960000px;}
.xe_c00267{left:383.760000px;}
.x31_c00267{left:394.560000px;}
.x17_c00267{left:416.160000px;}
.x6_c00267{left:427.680000px;}
.xf_c00267{left:438.480000px;}
.x7_c00267{left:481.680000px;}
.x1a_c00267{left:501.120000px;}
.x1b_c00267{left:557.280000px;}
.x19_c00267{left:568.800000px;}
.x32_c00267{left:588.240000px;}
.x10_c00267{left:589.680000px;}
.x2c_c00267{left:600.480000px;}
.x12_c00267{left:622.800000px;}
.x13_c00267{left:655.200000px;}
.x1c_c00267{left:665.280000px;}
.x2b_c00267{left:696.240000px;}
.x11_c00267{left:697.680000px;}
.x1_c00267{left:699.120000px;}
.x23_c00267{left:717.120000px;}
.x14_c00267{left:718.560000px;}
@media print{
.v1_c00267{vertical-align:-2.560000pt;}
.v0_c00267{vertical-align:0.000000pt;}
.v2_c00267{vertical-align:2.560000pt;}
.ls0_c00267{letter-spacing:0.000000pt;}
.ws1_c00267{word-spacing:-2.201813pt;}
.ws3_c00267{word-spacing:0.000000pt;}
.ws0_c00267{word-spacing:5.982597pt;}
.ws2_c00267{word-spacing:8.187003pt;}
._0_c00267{width:39.529083pt;}
.fsd_c00267{font-size:20.480000pt;}
.fs11_c00267{font-size:23.040000pt;}
.fs5_c00267{font-size:30.720000pt;}
.fsf_c00267{font-size:35.840000pt;}
.fs10_c00267{font-size:38.400000pt;}
.fsc_c00267{font-size:40.960000pt;}
.fse_c00267{font-size:43.520000pt;}
.fs9_c00267{font-size:46.080000pt;}
.fs2_c00267{font-size:48.640000pt;}
.fs8_c00267{font-size:51.200000pt;}
.fs6_c00267{font-size:53.760000pt;}
.fs1_c00267{font-size:56.320000pt;}
.fs4_c00267{font-size:58.880000pt;}
.fs7_c00267{font-size:61.440000pt;}
.fsa_c00267{font-size:64.000000pt;}
.fs0_c00267{font-size:66.560000pt;}
.fs3_c00267{font-size:69.120000pt;}
.fs12_c00267{font-size:71.680000pt;}
.fs13_c00267{font-size:74.240000pt;}
.fsb_c00267{font-size:92.160000pt;}
.y0_c00267{bottom:0.000000pt;}
.y4f_c00267{bottom:49.280000pt;}
.y53_c00267{bottom:52.480000pt;}
.y4e_c00267{bottom:53.760000pt;}
.y4c_c00267{bottom:88.320000pt;}
.y4d_c00267{bottom:88.960000pt;}
.y52_c00267{bottom:91.520000pt;}
.y4b_c00267{bottom:92.800000pt;}
.y49_c00267{bottom:126.720000pt;}
.y4a_c00267{bottom:127.360000pt;}
.y47_c00267{bottom:129.920000pt;}
.y51_c00267{bottom:131.200000pt;}
.y48_c00267{bottom:131.840000pt;}
.y45_c00267{bottom:165.760000pt;}
.y46_c00267{bottom:166.400000pt;}
.y50_c00267{bottom:168.320000pt;}
.y44_c00267{bottom:168.960000pt;}
.y3f_c00267{bottom:252.160000pt;}
.y3e_c00267{bottom:254.080000pt;}
.y43_c00267{bottom:254.720000pt;}
.y3c_c00267{bottom:290.560000pt;}
.y41_c00267{bottom:292.480000pt;}
.y3d_c00267{bottom:293.120000pt;}
.y3b_c00267{bottom:293.760000pt;}
.y42_c00267{bottom:294.400000pt;}
.y3a_c00267{bottom:328.960000pt;}
.y40_c00267{bottom:330.880000pt;}
.y37_c00267{bottom:331.520000pt;}
.y39_c00267{bottom:332.160000pt;}
.y38_c00267{bottom:332.800000pt;}
.y34_c00267{bottom:369.280000pt;}
.y36_c00267{bottom:370.560000pt;}
.y33_c00267{bottom:371.200000pt;}
.y35_c00267{bottom:373.120000pt;}
.y2d_c00267{bottom:415.360000pt;}
.y32_c00267{bottom:417.280000pt;}
.y2c_c00267{bottom:417.920000pt;}
.y30_c00267{bottom:455.680000pt;}
.y31_c00267{bottom:457.600000pt;}
.y2b_c00267{bottom:492.160000pt;}
.y2f_c00267{bottom:493.440000pt;}
.y2a_c00267{bottom:494.080000pt;}
.y2e_c00267{bottom:494.720000pt;}
.y27_c00267{bottom:531.200000pt;}
.y26_c00267{bottom:531.840000pt;}
.y29_c00267{bottom:532.480000pt;}
.y28_c00267{bottom:533.120000pt;}
.y25_c00267{bottom:579.840000pt;}
.y24_c00267{bottom:580.480000pt;}
.y20_c00267{bottom:616.320000pt;}
.y1f_c00267{bottom:616.960000pt;}
.y22_c00267{bottom:618.240000pt;}
.y21_c00267{bottom:618.880000pt;}
.y23_c00267{bottom:620.160000pt;}
.y1c_c00267{bottom:645.760000pt;}
.y1a_c00267{bottom:655.360000pt;}
.y1d_c00267{bottom:656.000000pt;}
.y1e_c00267{bottom:656.640000pt;}
.y1b_c00267{bottom:657.920000pt;}
.y17_c00267{bottom:693.120000pt;}
.y18_c00267{bottom:693.760000pt;}
.y19_c00267{bottom:694.400000pt;}
.y16_c00267{bottom:695.040000pt;}
.y15_c00267{bottom:731.520000pt;}
.y13_c00267{bottom:732.160000pt;}
.y14_c00267{bottom:734.720000pt;}
.y12_c00267{bottom:818.560000pt;}
.y10_c00267{bottom:819.200000pt;}
.y11_c00267{bottom:821.120000pt;}
.y9_c00267{bottom:856.960000pt;}
.yc_c00267{bottom:857.600000pt;}
.ye_c00267{bottom:858.240000pt;}
.yf_c00267{bottom:858.880000pt;}
.ya_c00267{bottom:859.520000pt;}
.yb_c00267{bottom:860.160000pt;}
.y6_c00267{bottom:896.000000pt;}
.y8_c00267{bottom:896.640000pt;}
.y7_c00267{bottom:897.280000pt;}
.y5_c00267{bottom:933.120000pt;}
.y3_c00267{bottom:933.760000pt;}
.y2_c00267{bottom:934.400000pt;}
.yd_c00267{bottom:935.040000pt;}
.y4_c00267{bottom:936.960000pt;}
.y1_c00267{bottom:974.720000pt;}
.hf_c00267{height:18.430000pt;}
.h13_c00267{height:20.733750pt;}
.h7_c00267{height:27.645000pt;}
.h11_c00267{height:32.252500pt;}
.h12_c00267{height:34.556250pt;}
.he_c00267{height:36.860000pt;}
.h10_c00267{height:39.163750pt;}
.hb_c00267{height:41.467500pt;}
.h4_c00267{height:43.771250pt;}
.ha_c00267{height:46.075000pt;}
.h8_c00267{height:48.378750pt;}
.h3_c00267{height:50.682500pt;}
.h6_c00267{height:52.986250pt;}
.h9_c00267{height:55.290000pt;}
.hc_c00267{height:57.593750pt;}
.h2_c00267{height:59.897500pt;}
.h5_c00267{height:62.201250pt;}
.h14_c00267{height:64.505000pt;}
.h15_c00267{height:66.808750pt;}
.hd_c00267{height:82.935000pt;}
.h0_c00267{height:1025.920000pt;}
.h1_c00267{height:1026.000000pt;}
.w0_c00267{width:691.200000pt;}
.w1_c00267{width:691.333333pt;}
.x0_c00267{left:0.000000pt;}
.x2_c00267{left:65.280000pt;}
.x22_c00267{left:66.560000pt;}
.x2d_c00267{left:67.840000pt;}
.x8_c00267{left:102.400000pt;}
.x30_c00267{left:103.680000pt;}
.x1d_c00267{left:110.080000pt;}
.x15_c00267{left:128.640000pt;}
.x3_c00267{left:130.560000pt;}
.x24_c00267{left:140.160000pt;}
.x1e_c00267{left:159.360000pt;}
.x9_c00267{left:168.320000pt;}
.x25_c00267{left:177.280000pt;}
.x26_c00267{left:188.160000pt;}
.x1f_c00267{left:195.840000pt;}
.x4_c00267{left:205.440000pt;}
.x2e_c00267{left:207.360000pt;}
.xb_c00267{left:216.320000pt;}
.xa_c00267{left:225.920000pt;}
.x18_c00267{left:236.160000pt;}
.x5_c00267{left:245.760000pt;}
.x27_c00267{left:254.080000pt;}
.x28_c00267{left:255.360000pt;}
.x20_c00267{left:256.640000pt;}
.xc_c00267{left:264.960000pt;}
.x16_c00267{left:273.280000pt;}
.x29_c00267{left:293.120000pt;}
.xd_c00267{left:303.360000pt;}
.x2f_c00267{left:322.560000pt;}
.x21_c00267{left:330.240000pt;}
.x2a_c00267{left:331.520000pt;}
.xe_c00267{left:341.120000pt;}
.x31_c00267{left:350.720000pt;}
.x17_c00267{left:369.920000pt;}
.x6_c00267{left:380.160000pt;}
.xf_c00267{left:389.760000pt;}
.x7_c00267{left:428.160000pt;}
.x1a_c00267{left:445.440000pt;}
.x1b_c00267{left:495.360000pt;}
.x19_c00267{left:505.600000pt;}
.x32_c00267{left:522.880000pt;}
.x10_c00267{left:524.160000pt;}
.x2c_c00267{left:533.760000pt;}
.x12_c00267{left:553.600000pt;}
.x13_c00267{left:582.400000pt;}
.x1c_c00267{left:591.360000pt;}
.x2b_c00267{left:618.880000pt;}
.x11_c00267{left:620.160000pt;}
.x1_c00267{left:621.440000pt;}
.x23_c00267{left:637.440000pt;}
.x14_c00267{left:638.720000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_55e6ec293dc02e823ec3e4bd.woff2')format("woff");}.ff1_c00268{font-family:ff1_c00268;line-height:1.109863;font-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_c00268{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m43_c00268{transform:matrix(0.232200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232200,0.000000,0.000000,0.250000,0,0);}
.m47_c00268{transform:matrix(0.234900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234900,0.000000,0.000000,0.250000,0,0);}
.m42_c00268{transform:matrix(0.237200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237200,0.000000,0.000000,0.250000,0,0);}
.m3c_c00268{transform:matrix(0.242800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242800,0.000000,0.000000,0.250000,0,0);}
.m49_c00268{transform:matrix(0.243175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243175,0.000000,0.000000,0.250000,0,0);}
.mc_c00268{transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);}
.m3e_c00268{transform:matrix(0.246800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246800,0.000000,0.000000,0.250000,0,0);}
.m21_c00268{transform:matrix(0.246950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246950,0.000000,0.000000,0.250000,0,0);}
.m40_c00268{transform:matrix(0.248675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248675,0.000000,0.000000,0.250000,0,0);}
.m2_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);}
.m17_c00268{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);}
.m4f_c00268{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);}
.m2b_c00268{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);}
.m2d_c00268{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);}
.m34_c00268{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m16_c00268{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);}
.m2a_c00268{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m5_c00268{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m22_c00268{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00268{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.md_c00268{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m11_c00268{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m29_c00268{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.me_c00268{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m4_c00268{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00268{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m7_c00268{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m6_c00268{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1_c00268{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m35_c00268{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m15_c00268{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m3_c00268{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m18_c00268{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00268{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00268{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00268{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m41_c00268{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m26_c00268{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m37_c00268{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00268{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m0_c00268{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m38_c00268{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00268{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00268{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m8_c00268{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m27_c00268{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m19_c00268{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m23_c00268{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_c00268{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00268{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);}
.m32_c00268{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);}
.m3b_c00268{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m44_c00268{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_c00268{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);}
.mf_c00268{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);}
.m4d_c00268{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);}
.m13_c00268{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m48_c00268{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00268{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m30_c00268{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);}
.m45_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);}
.m28_c00268{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m9_c00268{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m39_c00268{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m36_c00268{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m25_c00268{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);}
.m46_c00268{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00268{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m14_c00268{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m50_c00268{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);}
.m4c_c00268{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00268{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);}
.m4a_c00268{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m33_c00268{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m31_c00268{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.ma_c00268{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m24_c00268{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m20_c00268{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00268{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00268{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.v0_c00268{vertical-align:0.000000px;}
.v1_c00268{vertical-align:2.880000px;}
.ls0_c00268{letter-spacing:0.000000px;}
.sc__c00268{text-shadow:none;}
.sc0_c00268{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00268{-webkit-text-stroke:0px transparent;}
.sc0_c00268{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00268{word-spacing:-5.309040px;}
.ws1_c00268{word-spacing:0.000000px;}
.fc0_c00268{color:transparent;}
.fs6_c00268{font-size:20.160000px;}
.fs18_c00268{font-size:25.920000px;}
.fse_c00268{font-size:34.560000px;}
.fs10_c00268{font-size:37.440000px;}
.fsa_c00268{font-size:40.320000px;}
.fsf_c00268{font-size:43.200000px;}
.fs17_c00268{font-size:46.080000px;}
.fs9_c00268{font-size:48.960000px;}
.fsb_c00268{font-size:51.840000px;}
.fs5_c00268{font-size:54.720000px;}
.fs3_c00268{font-size:57.600000px;}
.fs4_c00268{font-size:60.480000px;}
.fsd_c00268{font-size:63.360000px;}
.fs8_c00268{font-size:66.240000px;}
.fs2_c00268{font-size:69.120000px;}
.fs1_c00268{font-size:72.000000px;}
.fs0_c00268{font-size:74.880000px;}
.fs7_c00268{font-size:77.760000px;}
.fs11_c00268{font-size:80.640000px;}
.fs12_c00268{font-size:83.520000px;}
.fs15_c00268{font-size:95.040000px;}
.fs14_c00268{font-size:100.800000px;}
.fs16_c00268{font-size:103.680000px;}
.fsc_c00268{font-size:106.560000px;}
.fs13_c00268{font-size:109.440000px;}
.fs19_c00268{font-size:138.240000px;}
.y0_c00268{bottom:0.000000px;}
.y71_c00268{bottom:36.000000px;}
.y6e_c00268{bottom:42.480000px;}
.y6f_c00268{bottom:45.360000px;}
.y70_c00268{bottom:46.080000px;}
.y6d_c00268{bottom:47.520000px;}
.y6c_c00268{bottom:86.400000px;}
.y68_c00268{bottom:87.120000px;}
.y69_c00268{bottom:88.560000px;}
.y6b_c00268{bottom:90.000000px;}
.y6a_c00268{bottom:91.440000px;}
.y64_c00268{bottom:118.080000px;}
.y65_c00268{bottom:120.240000px;}
.y67_c00268{bottom:120.960000px;}
.y63_c00268{bottom:121.680000px;}
.y66_c00268{bottom:122.400000px;}
.y62_c00268{bottom:123.120000px;}
.y5f_c00268{bottom:155.520000px;}
.y5c_c00268{bottom:161.280000px;}
.y5d_c00268{bottom:163.440000px;}
.y5e_c00268{bottom:164.880000px;}
.y61_c00268{bottom:165.600000px;}
.y5b_c00268{bottom:166.320000px;}
.y60_c00268{bottom:167.040000px;}
.y59_c00268{bottom:196.560000px;}
.y5a_c00268{bottom:198.720000px;}
.y56_c00268{bottom:203.760000px;}
.y58_c00268{bottom:204.480000px;}
.y57_c00268{bottom:205.200000px;}
.y55_c00268{bottom:208.800000px;}
.y52_c00268{bottom:247.680000px;}
.y51_c00268{bottom:248.400000px;}
.y53_c00268{bottom:249.120000px;}
.y4f_c00268{bottom:250.560000px;}
.y50_c00268{bottom:252.000000px;}
.y54_c00268{bottom:252.720000px;}
.y4c_c00268{bottom:290.160000px;}
.y4e_c00268{bottom:293.040000px;}
.y4d_c00268{bottom:293.760000px;}
.y4b_c00268{bottom:294.480000px;}
.y49_c00268{bottom:295.200000px;}
.y4a_c00268{bottom:295.920000px;}
.y46_c00268{bottom:333.360000px;}
.y45_c00268{bottom:335.520000px;}
.y47_c00268{bottom:336.960000px;}
.y44_c00268{bottom:337.680000px;}
.y43_c00268{bottom:338.400000px;}
.y48_c00268{bottom:339.120000px;}
.y40_c00268{bottom:377.280000px;}
.y41_c00268{bottom:379.440000px;}
.y42_c00268{bottom:380.160000px;}
.y3d_c00268{bottom:380.880000px;}
.y3f_c00268{bottom:381.600000px;}
.y3e_c00268{bottom:382.320000px;}
.y3c_c00268{bottom:412.560000px;}
.y39_c00268{bottom:419.760000px;}
.y3a_c00268{bottom:421.200000px;}
.y3b_c00268{bottom:422.640000px;}
.y37_c00268{bottom:423.360000px;}
.y38_c00268{bottom:424.080000px;}
.y35_c00268{bottom:462.960000px;}
.y36_c00268{bottom:465.120000px;}
.y32_c00268{bottom:466.560000px;}
.y34_c00268{bottom:467.280000px;}
.y33_c00268{bottom:468.000000px;}
.y2e_c00268{bottom:506.880000px;}
.y31_c00268{bottom:508.320000px;}
.y2c_c00268{bottom:509.040000px;}
.y2f_c00268{bottom:509.760000px;}
.y2d_c00268{bottom:510.480000px;}
.y30_c00268{bottom:511.200000px;}
.y29_c00268{bottom:550.080000px;}
.y2a_c00268{bottom:550.800000px;}
.y27_c00268{bottom:552.240000px;}
.y28_c00268{bottom:553.680000px;}
.y2b_c00268{bottom:554.400000px;}
.y24_c00268{bottom:593.280000px;}
.y25_c00268{bottom:594.000000px;}
.y26_c00268{bottom:594.720000px;}
.y21_c00268{bottom:595.440000px;}
.y22_c00268{bottom:596.160000px;}
.y23_c00268{bottom:596.880000px;}
.y1e_c00268{bottom:637.200000px;}
.y1f_c00268{bottom:637.920000px;}
.y1d_c00268{bottom:638.640000px;}
.y20_c00268{bottom:639.360000px;}
.y1a_c00268{bottom:673.200000px;}
.y18_c00268{bottom:679.680000px;}
.y19_c00268{bottom:680.400000px;}
.y16_c00268{bottom:681.120000px;}
.y15_c00268{bottom:681.840000px;}
.y1b_c00268{bottom:682.560000px;}
.y1c_c00268{bottom:683.280000px;}
.y17_c00268{bottom:684.000000px;}
.y13_c00268{bottom:724.320000px;}
.y14_c00268{bottom:725.040000px;}
.ye_c00268{bottom:820.080000px;}
.yc_c00268{bottom:820.800000px;}
.y12_c00268{bottom:821.520000px;}
.yb_c00268{bottom:822.240000px;}
.yd_c00268{bottom:823.680000px;}
.ya_c00268{bottom:864.000000px;}
.y11_c00268{bottom:864.720000px;}
.y8_c00268{bottom:906.480000px;}
.y9_c00268{bottom:907.200000px;}
.y7_c00268{bottom:907.920000px;}
.y10_c00268{bottom:909.360000px;}
.yf_c00268{bottom:910.080000px;}
.y4_c00268{bottom:951.120000px;}
.y3_c00268{bottom:951.840000px;}
.y5_c00268{bottom:952.560000px;}
.y6_c00268{bottom:953.280000px;}
.y2_c00268{bottom:1004.400000px;}
.y1_c00268{bottom:1108.080000px;}
.h8_c00268{height:18.142031px;}
.h1a_c00268{height:23.325469px;}
.h10_c00268{height:31.100625px;}
.h12_c00268{height:33.692344px;}
.hc_c00268{height:36.284062px;}
.h11_c00268{height:38.875781px;}
.h19_c00268{height:41.467500px;}
.hb_c00268{height:44.059219px;}
.hd_c00268{height:46.650937px;}
.h7_c00268{height:49.242656px;}
.h5_c00268{height:51.834375px;}
.h6_c00268{height:54.426094px;}
.hf_c00268{height:57.017812px;}
.ha_c00268{height:59.609531px;}
.h4_c00268{height:62.201250px;}
.h3_c00268{height:64.792969px;}
.h2_c00268{height:67.384687px;}
.h9_c00268{height:69.976406px;}
.h13_c00268{height:72.568125px;}
.h14_c00268{height:75.159844px;}
.h17_c00268{height:85.526719px;}
.h16_c00268{height:90.710156px;}
.h18_c00268{height:93.301875px;}
.he_c00268{height:95.893594px;}
.h15_c00268{height:98.485312px;}
.h1b_c00268{height:124.402500px;}
.h0_c00268{height:1153.440000px;}
.h1_c00268{height:1153.500000px;}
.w0_c00268{width:777.600000px;}
.w1_c00268{width:777.750000px;}
.x0_c00268{left:0.000000px;}
.x2_c00268{left:73.440000px;}
.x28_c00268{left:74.880000px;}
.x30_c00268{left:76.320000px;}
.x1f_c00268{left:113.040000px;}
.x15_c00268{left:114.480000px;}
.x33_c00268{left:115.920000px;}
.x7_c00268{left:124.560000px;}
.x16_c00268{left:144.720000px;}
.x3_c00268{left:146.880000px;}
.x8_c00268{left:179.280000px;}
.x17_c00268{left:187.920000px;}
.x9_c00268{left:221.040000px;}
.x2c_c00268{left:231.840000px;}
.xf_c00268{left:242.640000px;}
.xd_c00268{left:244.080000px;}
.x3b_c00268{left:264.960000px;}
.x36_c00268{left:275.760000px;}
.x26_c00268{left:285.840000px;}
.x18_c00268{left:295.920000px;}
.x20_c00268{left:298.080000px;}
.x2d_c00268{left:308.880000px;}
.x3c_c00268{left:319.680000px;}
.x10_c00268{left:329.760000px;}
.x23_c00268{left:339.120000px;}
.x19_c00268{left:341.280000px;}
.x34_c00268{left:352.080000px;}
.xa_c00268{left:360.720000px;}
.x3d_c00268{left:362.160000px;}
.x37_c00268{left:372.240000px;}
.x31_c00268{left:383.040000px;}
.xe_c00268{left:384.480000px;}
.x24_c00268{left:394.560000px;}
.xb_c00268{left:396.720000px;}
.xc_c00268{left:408.240000px;}
.x38_c00268{left:416.160000px;}
.x39_c00268{left:438.480000px;}
.x25_c00268{left:448.560000px;}
.x1a_c00268{left:457.920000px;}
.x3e_c00268{left:459.360000px;}
.x32_c00268{left:480.240000px;}
.x1b_c00268{left:501.840000px;}
.x29_c00268{left:513.360000px;}
.x2b_c00268{left:524.880000px;}
.x3a_c00268{left:534.240000px;}
.x35_c00268{left:535.680000px;}
.x1c_c00268{left:555.840000px;}
.x11_c00268{left:568.800000px;}
.x21_c00268{left:587.520000px;}
.x4_c00268{left:588.960000px;}
.x12_c00268{left:600.480000px;}
.x22_c00268{left:612.000000px;}
.x13_c00268{left:613.440000px;}
.x2e_c00268{left:619.920000px;}
.x1d_c00268{left:621.360000px;}
.x2f_c00268{left:652.320000px;}
.x2a_c00268{left:653.760000px;}
.x5_c00268{left:655.200000px;}
.x14_c00268{left:686.880000px;}
.x27_c00268{left:696.240000px;}
.x6_c00268{left:697.680000px;}
.x1_c00268{left:702.720000px;}
.x1e_c00268{left:717.120000px;}
@media print{
.v0_c00268{vertical-align:0.000000pt;}
.v1_c00268{vertical-align:2.560000pt;}
.ls0_c00268{letter-spacing:0.000000pt;}
.ws0_c00268{word-spacing:-4.719147pt;}
.ws1_c00268{word-spacing:0.000000pt;}
.fs6_c00268{font-size:17.920000pt;}
.fs18_c00268{font-size:23.040000pt;}
.fse_c00268{font-size:30.720000pt;}
.fs10_c00268{font-size:33.280000pt;}
.fsa_c00268{font-size:35.840000pt;}
.fsf_c00268{font-size:38.400000pt;}
.fs17_c00268{font-size:40.960000pt;}
.fs9_c00268{font-size:43.520000pt;}
.fsb_c00268{font-size:46.080000pt;}
.fs5_c00268{font-size:48.640000pt;}
.fs3_c00268{font-size:51.200000pt;}
.fs4_c00268{font-size:53.760000pt;}
.fsd_c00268{font-size:56.320000pt;}
.fs8_c00268{font-size:58.880000pt;}
.fs2_c00268{font-size:61.440000pt;}
.fs1_c00268{font-size:64.000000pt;}
.fs0_c00268{font-size:66.560000pt;}
.fs7_c00268{font-size:69.120000pt;}
.fs11_c00268{font-size:71.680000pt;}
.fs12_c00268{font-size:74.240000pt;}
.fs15_c00268{font-size:84.480000pt;}
.fs14_c00268{font-size:89.600000pt;}
.fs16_c00268{font-size:92.160000pt;}
.fsc_c00268{font-size:94.720000pt;}
.fs13_c00268{font-size:97.280000pt;}
.fs19_c00268{font-size:122.880000pt;}
.y0_c00268{bottom:0.000000pt;}
.y71_c00268{bottom:32.000000pt;}
.y6e_c00268{bottom:37.760000pt;}
.y6f_c00268{bottom:40.320000pt;}
.y70_c00268{bottom:40.960000pt;}
.y6d_c00268{bottom:42.240000pt;}
.y6c_c00268{bottom:76.800000pt;}
.y68_c00268{bottom:77.440000pt;}
.y69_c00268{bottom:78.720000pt;}
.y6b_c00268{bottom:80.000000pt;}
.y6a_c00268{bottom:81.280000pt;}
.y64_c00268{bottom:104.960000pt;}
.y65_c00268{bottom:106.880000pt;}
.y67_c00268{bottom:107.520000pt;}
.y63_c00268{bottom:108.160000pt;}
.y66_c00268{bottom:108.800000pt;}
.y62_c00268{bottom:109.440000pt;}
.y5f_c00268{bottom:138.240000pt;}
.y5c_c00268{bottom:143.360000pt;}
.y5d_c00268{bottom:145.280000pt;}
.y5e_c00268{bottom:146.560000pt;}
.y61_c00268{bottom:147.200000pt;}
.y5b_c00268{bottom:147.840000pt;}
.y60_c00268{bottom:148.480000pt;}
.y59_c00268{bottom:174.720000pt;}
.y5a_c00268{bottom:176.640000pt;}
.y56_c00268{bottom:181.120000pt;}
.y58_c00268{bottom:181.760000pt;}
.y57_c00268{bottom:182.400000pt;}
.y55_c00268{bottom:185.600000pt;}
.y52_c00268{bottom:220.160000pt;}
.y51_c00268{bottom:220.800000pt;}
.y53_c00268{bottom:221.440000pt;}
.y4f_c00268{bottom:222.720000pt;}
.y50_c00268{bottom:224.000000pt;}
.y54_c00268{bottom:224.640000pt;}
.y4c_c00268{bottom:257.920000pt;}
.y4e_c00268{bottom:260.480000pt;}
.y4d_c00268{bottom:261.120000pt;}
.y4b_c00268{bottom:261.760000pt;}
.y49_c00268{bottom:262.400000pt;}
.y4a_c00268{bottom:263.040000pt;}
.y46_c00268{bottom:296.320000pt;}
.y45_c00268{bottom:298.240000pt;}
.y47_c00268{bottom:299.520000pt;}
.y44_c00268{bottom:300.160000pt;}
.y43_c00268{bottom:300.800000pt;}
.y48_c00268{bottom:301.440000pt;}
.y40_c00268{bottom:335.360000pt;}
.y41_c00268{bottom:337.280000pt;}
.y42_c00268{bottom:337.920000pt;}
.y3d_c00268{bottom:338.560000pt;}
.y3f_c00268{bottom:339.200000pt;}
.y3e_c00268{bottom:339.840000pt;}
.y3c_c00268{bottom:366.720000pt;}
.y39_c00268{bottom:373.120000pt;}
.y3a_c00268{bottom:374.400000pt;}
.y3b_c00268{bottom:375.680000pt;}
.y37_c00268{bottom:376.320000pt;}
.y38_c00268{bottom:376.960000pt;}
.y35_c00268{bottom:411.520000pt;}
.y36_c00268{bottom:413.440000pt;}
.y32_c00268{bottom:414.720000pt;}
.y34_c00268{bottom:415.360000pt;}
.y33_c00268{bottom:416.000000pt;}
.y2e_c00268{bottom:450.560000pt;}
.y31_c00268{bottom:451.840000pt;}
.y2c_c00268{bottom:452.480000pt;}
.y2f_c00268{bottom:453.120000pt;}
.y2d_c00268{bottom:453.760000pt;}
.y30_c00268{bottom:454.400000pt;}
.y29_c00268{bottom:488.960000pt;}
.y2a_c00268{bottom:489.600000pt;}
.y27_c00268{bottom:490.880000pt;}
.y28_c00268{bottom:492.160000pt;}
.y2b_c00268{bottom:492.800000pt;}
.y24_c00268{bottom:527.360000pt;}
.y25_c00268{bottom:528.000000pt;}
.y26_c00268{bottom:528.640000pt;}
.y21_c00268{bottom:529.280000pt;}
.y22_c00268{bottom:529.920000pt;}
.y23_c00268{bottom:530.560000pt;}
.y1e_c00268{bottom:566.400000pt;}
.y1f_c00268{bottom:567.040000pt;}
.y1d_c00268{bottom:567.680000pt;}
.y20_c00268{bottom:568.320000pt;}
.y1a_c00268{bottom:598.400000pt;}
.y18_c00268{bottom:604.160000pt;}
.y19_c00268{bottom:604.800000pt;}
.y16_c00268{bottom:605.440000pt;}
.y15_c00268{bottom:606.080000pt;}
.y1b_c00268{bottom:606.720000pt;}
.y1c_c00268{bottom:607.360000pt;}
.y17_c00268{bottom:608.000000pt;}
.y13_c00268{bottom:643.840000pt;}
.y14_c00268{bottom:644.480000pt;}
.ye_c00268{bottom:728.960000pt;}
.yc_c00268{bottom:729.600000pt;}
.y12_c00268{bottom:730.240000pt;}
.yb_c00268{bottom:730.880000pt;}
.yd_c00268{bottom:732.160000pt;}
.ya_c00268{bottom:768.000000pt;}
.y11_c00268{bottom:768.640000pt;}
.y8_c00268{bottom:805.760000pt;}
.y9_c00268{bottom:806.400000pt;}
.y7_c00268{bottom:807.040000pt;}
.y10_c00268{bottom:808.320000pt;}
.yf_c00268{bottom:808.960000pt;}
.y4_c00268{bottom:845.440000pt;}
.y3_c00268{bottom:846.080000pt;}
.y5_c00268{bottom:846.720000pt;}
.y6_c00268{bottom:847.360000pt;}
.y2_c00268{bottom:892.800000pt;}
.y1_c00268{bottom:984.960000pt;}
.h8_c00268{height:16.126250pt;}
.h1a_c00268{height:20.733750pt;}
.h10_c00268{height:27.645000pt;}
.h12_c00268{height:29.948750pt;}
.hc_c00268{height:32.252500pt;}
.h11_c00268{height:34.556250pt;}
.h19_c00268{height:36.860000pt;}
.hb_c00268{height:39.163750pt;}
.hd_c00268{height:41.467500pt;}
.h7_c00268{height:43.771250pt;}
.h5_c00268{height:46.075000pt;}
.h6_c00268{height:48.378750pt;}
.hf_c00268{height:50.682500pt;}
.ha_c00268{height:52.986250pt;}
.h4_c00268{height:55.290000pt;}
.h3_c00268{height:57.593750pt;}
.h2_c00268{height:59.897500pt;}
.h9_c00268{height:62.201250pt;}
.h13_c00268{height:64.505000pt;}
.h14_c00268{height:66.808750pt;}
.h17_c00268{height:76.023750pt;}
.h16_c00268{height:80.631250pt;}
.h18_c00268{height:82.935000pt;}
.he_c00268{height:85.238750pt;}
.h15_c00268{height:87.542500pt;}
.h1b_c00268{height:110.580000pt;}
.h0_c00268{height:1025.280000pt;}
.h1_c00268{height:1025.333333pt;}
.w0_c00268{width:691.200000pt;}
.w1_c00268{width:691.333333pt;}
.x0_c00268{left:0.000000pt;}
.x2_c00268{left:65.280000pt;}
.x28_c00268{left:66.560000pt;}
.x30_c00268{left:67.840000pt;}
.x1f_c00268{left:100.480000pt;}
.x15_c00268{left:101.760000pt;}
.x33_c00268{left:103.040000pt;}
.x7_c00268{left:110.720000pt;}
.x16_c00268{left:128.640000pt;}
.x3_c00268{left:130.560000pt;}
.x8_c00268{left:159.360000pt;}
.x17_c00268{left:167.040000pt;}
.x9_c00268{left:196.480000pt;}
.x2c_c00268{left:206.080000pt;}
.xf_c00268{left:215.680000pt;}
.xd_c00268{left:216.960000pt;}
.x3b_c00268{left:235.520000pt;}
.x36_c00268{left:245.120000pt;}
.x26_c00268{left:254.080000pt;}
.x18_c00268{left:263.040000pt;}
.x20_c00268{left:264.960000pt;}
.x2d_c00268{left:274.560000pt;}
.x3c_c00268{left:284.160000pt;}
.x10_c00268{left:293.120000pt;}
.x23_c00268{left:301.440000pt;}
.x19_c00268{left:303.360000pt;}
.x34_c00268{left:312.960000pt;}
.xa_c00268{left:320.640000pt;}
.x3d_c00268{left:321.920000pt;}
.x37_c00268{left:330.880000pt;}
.x31_c00268{left:340.480000pt;}
.xe_c00268{left:341.760000pt;}
.x24_c00268{left:350.720000pt;}
.xb_c00268{left:352.640000pt;}
.xc_c00268{left:362.880000pt;}
.x38_c00268{left:369.920000pt;}
.x39_c00268{left:389.760000pt;}
.x25_c00268{left:398.720000pt;}
.x1a_c00268{left:407.040000pt;}
.x3e_c00268{left:408.320000pt;}
.x32_c00268{left:426.880000pt;}
.x1b_c00268{left:446.080000pt;}
.x29_c00268{left:456.320000pt;}
.x2b_c00268{left:466.560000pt;}
.x3a_c00268{left:474.880000pt;}
.x35_c00268{left:476.160000pt;}
.x1c_c00268{left:494.080000pt;}
.x11_c00268{left:505.600000pt;}
.x21_c00268{left:522.240000pt;}
.x4_c00268{left:523.520000pt;}
.x12_c00268{left:533.760000pt;}
.x22_c00268{left:544.000000pt;}
.x13_c00268{left:545.280000pt;}
.x2e_c00268{left:551.040000pt;}
.x1d_c00268{left:552.320000pt;}
.x2f_c00268{left:579.840000pt;}
.x2a_c00268{left:581.120000pt;}
.x5_c00268{left:582.400000pt;}
.x14_c00268{left:610.560000pt;}
.x27_c00268{left:618.880000pt;}
.x6_c00268{left:620.160000pt;}
.x1_c00268{left:624.640000pt;}
.x1e_c00268{left:637.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_771a3445bb194b6f06a95be2.woff2')format("woff");}.ff1_c00269{font-family:ff1_c00269;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m42_c00269{transform:matrix(0.177600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177600,0.000000,0.000000,0.250000,0,0);}
.m34_c00269{transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);}
.m1f_c00269{transform:matrix(0.192400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192400,0.000000,0.000000,0.250000,0,0);}
.m18_c00269{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.m15_c00269{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m25_c00269{transform:matrix(0.218525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218525,0.000000,0.000000,0.250000,0,0);}
.m23_c00269{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);}
.m2d_c00269{transform:matrix(0.230775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230775,0.000000,0.000000,0.250000,0,0);}
.m43_c00269{transform:matrix(0.230850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230850,0.000000,0.000000,0.250000,0,0);}
.m49_c00269{transform:matrix(0.231550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231550,0.000000,0.000000,0.250000,0,0);}
.m45_c00269{transform:matrix(0.234275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234275,0.000000,0.000000,0.250000,0,0);}
.m4c_c00269{transform:matrix(0.240450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240450,0.000000,0.000000,0.250000,0,0);}
.m30_c00269{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);}
.m44_c00269{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00269{transform:matrix(0.246725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246725,0.000000,0.000000,0.250000,0,0);}
.m28_c00269{transform:matrix(0.246775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246775,0.000000,0.000000,0.250000,0,0);}
.m26_c00269{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m38_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);}
.m1_c00269{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m14_c00269{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_c00269{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);}
.m3f_c00269{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);}
.m24_c00269{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);}
.m37_c00269{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m20_c00269{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_c00269{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m5_c00269{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.mb_c00269{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m19_c00269{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m12_c00269{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.md_c00269{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mc_c00269{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);}
.m2a_c00269{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m11_c00269{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mf_c00269{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00269{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m39_c00269{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00269{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.ma_c00269{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m13_c00269{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00269{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m22_c00269{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3c_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);}
.m0_c00269{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m9_c00269{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m41_c00269{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m10_c00269{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00269{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m27_c00269{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m2_c00269{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00269{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00269{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);}
.m31_c00269{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00269{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.me_c00269{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00269{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m6_c00269{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00269{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m8_c00269{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00269{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_c00269{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);}
.m3b_c00269{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);}
.m40_c00269{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);}
.m36_c00269{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);}
.m2c_c00269{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m29_c00269{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m35_c00269{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m4_c00269{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00269{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);}
.m46_c00269{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);}
.m16_c00269{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m48_c00269{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00269{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m47_c00269{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);}
.m33_c00269{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);}
.m3_c00269{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m32_c00269{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00269{transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);}
.m21_c00269{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00269{transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);}
.v4_c00269{vertical-align:-20.160000px;}
.v2_c00269{vertical-align:-5.760000px;}
.v3_c00269{vertical-align:-2.880000px;}
.v0_c00269{vertical-align:0.000000px;}
.v1_c00269{vertical-align:5.760000px;}
.v5_c00269{vertical-align:8.640000px;}
.ls0_c00269{letter-spacing:0.000000px;}
.sc__c00269{text-shadow:none;}
.sc0_c00269{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00269{-webkit-text-stroke:0px transparent;}
.sc0_c00269{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00269{word-spacing:-7.451280px;}
.ws2_c00269{word-spacing:-1.377120px;}
.ws6_c00269{word-spacing:0.000000px;}
.ws3_c00269{word-spacing:0.342000px;}
.ws1_c00269{word-spacing:0.777120px;}
.ws4_c00269{word-spacing:9.210378px;}
.ws5_c00269{word-spacing:11.856000px;}
.fc0_c00269{color:transparent;}
.fse_c00269{font-size:31.680000px;}
.fsc_c00269{font-size:37.440000px;}
.fs3_c00269{font-size:40.320000px;}
.fs9_c00269{font-size:48.960000px;}
.fs2_c00269{font-size:51.840000px;}
.fsa_c00269{font-size:54.720000px;}
.fs8_c00269{font-size:57.600000px;}
.fs4_c00269{font-size:60.480000px;}
.fs7_c00269{font-size:63.360000px;}
.fs6_c00269{font-size:66.240000px;}
.fs0_c00269{font-size:69.120000px;}
.fsb_c00269{font-size:72.000000px;}
.fs5_c00269{font-size:74.880000px;}
.fs1_c00269{font-size:77.760000px;}
.fsd_c00269{font-size:103.680000px;}
.y0_c00269{bottom:0.000000px;}
.y72_c00269{bottom:43.200000px;}
.y71_c00269{bottom:44.640000px;}
.y7c_c00269{bottom:46.800000px;}
.y7d_c00269{bottom:48.960000px;}
.y70_c00269{bottom:49.680000px;}
.y6f_c00269{bottom:51.840000px;}
.y6c_c00269{bottom:86.400000px;}
.y6d_c00269{bottom:87.120000px;}
.y7b_c00269{bottom:89.280000px;}
.y6e_c00269{bottom:90.720000px;}
.y6b_c00269{bottom:92.160000px;}
.y69_c00269{bottom:120.960000px;}
.y6a_c00269{bottom:123.840000px;}
.y66_c00269{bottom:130.320000px;}
.y65_c00269{bottom:131.760000px;}
.y68_c00269{bottom:133.200000px;}
.y67_c00269{bottom:133.920000px;}
.y64_c00269{bottom:134.640000px;}
.y62_c00269{bottom:172.800000px;}
.y63_c00269{bottom:173.520000px;}
.y7a_c00269{bottom:176.400000px;}
.y61_c00269{bottom:177.120000px;}
.y79_c00269{bottom:178.560000px;}
.y60_c00269{bottom:216.000000px;}
.y77_c00269{bottom:218.160000px;}
.y76_c00269{bottom:218.880000px;}
.y78_c00269{bottom:219.600000px;}
.y5f_c00269{bottom:220.320000px;}
.y5d_c00269{bottom:259.920000px;}
.y5e_c00269{bottom:260.640000px;}
.y74_c00269{bottom:261.360000px;}
.y73_c00269{bottom:262.080000px;}
.y5c_c00269{bottom:263.520000px;}
.y75_c00269{bottom:264.240000px;}
.y5a_c00269{bottom:295.920000px;}
.y59_c00269{bottom:302.400000px;}
.y58_c00269{bottom:304.560000px;}
.y5b_c00269{bottom:305.280000px;}
.y56_c00269{bottom:306.000000px;}
.y57_c00269{bottom:307.440000px;}
.y47_c00269{bottom:345.600000px;}
.y55_c00269{bottom:347.760000px;}
.y49_c00269{bottom:348.480000px;}
.y46_c00269{bottom:349.200000px;}
.y48_c00269{bottom:349.920000px;}
.y43_c00269{bottom:388.800000px;}
.y44_c00269{bottom:390.240000px;}
.y54_c00269{bottom:391.680000px;}
.y45_c00269{bottom:392.400000px;}
.y42_c00269{bottom:393.120000px;}
.y41_c00269{bottom:432.720000px;}
.y51_c00269{bottom:434.880000px;}
.y52_c00269{bottom:435.600000px;}
.y53_c00269{bottom:436.320000px;}
.y40_c00269{bottom:437.040000px;}
.y3f_c00269{bottom:475.920000px;}
.y3d_c00269{bottom:478.080000px;}
.y3e_c00269{bottom:479.520000px;}
.y3c_c00269{bottom:507.600000px;}
.y3a_c00269{bottom:508.320000px;}
.y50_c00269{bottom:509.760000px;}
.y4f_c00269{bottom:511.200000px;}
.y39_c00269{bottom:511.920000px;}
.y3b_c00269{bottom:512.640000px;}
.y38_c00269{bottom:551.520000px;}
.y4e_c00269{bottom:552.960000px;}
.y37_c00269{bottom:554.400000px;}
.y35_c00269{bottom:594.720000px;}
.y36_c00269{bottom:595.440000px;}
.y4b_c00269{bottom:596.880000px;}
.y4c_c00269{bottom:597.600000px;}
.y34_c00269{bottom:598.320000px;}
.y4d_c00269{bottom:599.760000px;}
.y31_c00269{bottom:637.920000px;}
.y2f_c00269{bottom:639.360000px;}
.y32_c00269{bottom:640.080000px;}
.y33_c00269{bottom:641.520000px;}
.y30_c00269{bottom:642.240000px;}
.y4a_c00269{bottom:642.960000px;}
.y2b_c00269{bottom:680.400000px;}
.y2d_c00269{bottom:681.120000px;}
.y2c_c00269{bottom:681.840000px;}
.y2e_c00269{bottom:682.560000px;}
.y2a_c00269{bottom:684.720000px;}
.y19_c00269{bottom:723.600000px;}
.y18_c00269{bottom:724.320000px;}
.y17_c00269{bottom:725.040000px;}
.y29_c00269{bottom:725.760000px;}
.y16_c00269{bottom:766.800000px;}
.y26_c00269{bottom:767.520000px;}
.y27_c00269{bottom:768.240000px;}
.y15_c00269{bottom:768.960000px;}
.y28_c00269{bottom:769.680000px;}
.y25_c00269{bottom:770.400000px;}
.y14_c00269{bottom:810.720000px;}
.y23_c00269{bottom:811.440000px;}
.y13_c00269{bottom:812.160000px;}
.y24_c00269{bottom:813.600000px;}
.y12_c00269{bottom:853.920000px;}
.y22_c00269{bottom:854.640000px;}
.y11_c00269{bottom:856.080000px;}
.y10_c00269{bottom:896.400000px;}
.y21_c00269{bottom:897.120000px;}
.y20_c00269{bottom:897.840000px;}
.yf_c00269{bottom:900.000000px;}
.yd_c00269{bottom:939.600000px;}
.ye_c00269{bottom:941.760000px;}
.yc_c00269{bottom:944.640000px;}
.yb_c00269{bottom:972.000000px;}
.ya_c00269{bottom:972.720000px;}
.y1f_c00269{bottom:973.440000px;}
.y8_c00269{bottom:974.880000px;}
.y9_c00269{bottom:976.320000px;}
.y7_c00269{bottom:1015.200000px;}
.y1d_c00269{bottom:1015.920000px;}
.y6_c00269{bottom:1017.360000px;}
.y1e_c00269{bottom:1018.800000px;}
.y1c_c00269{bottom:1019.520000px;}
.y5_c00269{bottom:1058.400000px;}
.y2_c00269{bottom:1059.120000px;}
.y1a_c00269{bottom:1059.840000px;}
.y1_c00269{bottom:1060.560000px;}
.y1b_c00269{bottom:1061.280000px;}
.y3_c00269{bottom:1062.720000px;}
.y4_c00269{bottom:1063.440000px;}
.h11_c00269{height:28.508906px;}
.he_c00269{height:33.692344px;}
.h5_c00269{height:36.284062px;}
.hb_c00269{height:44.059219px;}
.h4_c00269{height:46.650937px;}
.hc_c00269{height:49.242656px;}
.ha_c00269{height:51.834375px;}
.h6_c00269{height:54.426094px;}
.h9_c00269{height:57.017812px;}
.h8_c00269{height:59.609531px;}
.h12_c00269{height:60.474375px;}
.h2_c00269{height:62.201250px;}
.h10_c00269{height:64.504687px;}
.hd_c00269{height:64.792969px;}
.h7_c00269{height:67.384687px;}
.h3_c00269{height:69.976406px;}
.hf_c00269{height:93.301875px;}
.h0_c00269{height:1157.760000px;}
.h1_c00269{height:1158.000000px;}
.w1_c00269{width:783.000000px;}
.w0_c00269{width:783.360000px;}
.x0_c00269{left:0.000000px;}
.x1_c00269{left:77.760000px;}
.x21_c00269{left:79.200000px;}
.x3a_c00269{left:120.240000px;}
.xa_c00269{left:149.760000px;}
.x2_c00269{left:151.200000px;}
.x31_c00269{left:183.600000px;}
.x1c_c00269{left:185.040000px;}
.x2e_c00269{left:192.240000px;}
.x7_c00269{left:194.400000px;}
.x25_c00269{left:204.480000px;}
.x22_c00269{left:235.440000px;}
.x1d_c00269{left:237.600000px;}
.x26_c00269{left:247.680000px;}
.x3_c00269{left:269.280000px;}
.x36_c00269{left:279.360000px;}
.xb_c00269{left:280.800000px;}
.x9_c00269{left:292.320000px;}
.x4_c00269{left:313.920000px;}
.x28_c00269{left:324.000000px;}
.x23_c00269{left:335.520000px;}
.x5_c00269{left:367.920000px;}
.x37_c00269{left:376.560000px;}
.x24_c00269{left:378.000000px;}
.x32_c00269{left:399.600000px;}
.x6_c00269{left:410.400000px;}
.x1e_c00269{left:421.200000px;}
.x38_c00269{left:430.560000px;}
.x8_c00269{left:454.320000px;}
.x1f_c00269{left:465.120000px;}
.x1a_c00269{left:475.200000px;}
.x20_c00269{left:507.600000px;}
.x27_c00269{left:517.680000px;}
.x33_c00269{left:527.040000px;}
.x1b_c00269{left:529.200000px;}
.x2f_c00269{left:538.560000px;}
.x35_c00269{left:558.720000px;}
.x14_c00269{left:562.320000px;}
.x39_c00269{left:570.960000px;}
.x15_c00269{left:573.120000px;}
.x10_c00269{left:574.560000px;}
.x34_c00269{left:581.760000px;}
.x30_c00269{left:583.200000px;}
.x3b_c00269{left:591.840000px;}
.x11_c00269{left:594.000000px;}
.x16_c00269{left:595.440000px;}
.x2b_c00269{left:625.680000px;}
.xc_c00269{left:627.120150px;}
.x17_c00269{left:637.920000px;}
.x12_c00269{left:651.600000px;}
.x2c_c00269{left:658.800000px;}
.xd_c00269{left:660.240000px;}
.x18_c00269{left:671.040000px;}
.x2d_c00269{left:691.200000px;}
.x3c_c00269{left:699.840000px;}
.x2a_c00269{left:701.280000px;}
.x13_c00269{left:702.720000px;}
.xe_c00269{left:704.160000px;}
.x19_c00269{left:713.520000px;}
.x3d_c00269{left:720.720000px;}
.x29_c00269{left:722.160000px;}
.xf_c00269{left:723.600000px;}
@media print{
.v4_c00269{vertical-align:-17.920000pt;}
.v2_c00269{vertical-align:-5.120000pt;}
.v3_c00269{vertical-align:-2.560000pt;}
.v0_c00269{vertical-align:0.000000pt;}
.v1_c00269{vertical-align:5.120000pt;}
.v5_c00269{vertical-align:7.680000pt;}
.ls0_c00269{letter-spacing:0.000000pt;}
.ws0_c00269{word-spacing:-6.623360pt;}
.ws2_c00269{word-spacing:-1.224107pt;}
.ws6_c00269{word-spacing:0.000000pt;}
.ws3_c00269{word-spacing:0.304000pt;}
.ws1_c00269{word-spacing:0.690773pt;}
.ws4_c00269{word-spacing:8.187003pt;}
.ws5_c00269{word-spacing:10.538667pt;}
.fse_c00269{font-size:28.160000pt;}
.fsc_c00269{font-size:33.280000pt;}
.fs3_c00269{font-size:35.840000pt;}
.fs9_c00269{font-size:43.520000pt;}
.fs2_c00269{font-size:46.080000pt;}
.fsa_c00269{font-size:48.640000pt;}
.fs8_c00269{font-size:51.200000pt;}
.fs4_c00269{font-size:53.760000pt;}
.fs7_c00269{font-size:56.320000pt;}
.fs6_c00269{font-size:58.880000pt;}
.fs0_c00269{font-size:61.440000pt;}
.fsb_c00269{font-size:64.000000pt;}
.fs5_c00269{font-size:66.560000pt;}
.fs1_c00269{font-size:69.120000pt;}
.fsd_c00269{font-size:92.160000pt;}
.y0_c00269{bottom:0.000000pt;}
.y72_c00269{bottom:38.400000pt;}
.y71_c00269{bottom:39.680000pt;}
.y7c_c00269{bottom:41.600000pt;}
.y7d_c00269{bottom:43.520000pt;}
.y70_c00269{bottom:44.160000pt;}
.y6f_c00269{bottom:46.080000pt;}
.y6c_c00269{bottom:76.800000pt;}
.y6d_c00269{bottom:77.440000pt;}
.y7b_c00269{bottom:79.360000pt;}
.y6e_c00269{bottom:80.640000pt;}
.y6b_c00269{bottom:81.920000pt;}
.y69_c00269{bottom:107.520000pt;}
.y6a_c00269{bottom:110.080000pt;}
.y66_c00269{bottom:115.840000pt;}
.y65_c00269{bottom:117.120000pt;}
.y68_c00269{bottom:118.400000pt;}
.y67_c00269{bottom:119.040000pt;}
.y64_c00269{bottom:119.680000pt;}
.y62_c00269{bottom:153.600000pt;}
.y63_c00269{bottom:154.240000pt;}
.y7a_c00269{bottom:156.800000pt;}
.y61_c00269{bottom:157.440000pt;}
.y79_c00269{bottom:158.720000pt;}
.y60_c00269{bottom:192.000000pt;}
.y77_c00269{bottom:193.920000pt;}
.y76_c00269{bottom:194.560000pt;}
.y78_c00269{bottom:195.200000pt;}
.y5f_c00269{bottom:195.840000pt;}
.y5d_c00269{bottom:231.040000pt;}
.y5e_c00269{bottom:231.680000pt;}
.y74_c00269{bottom:232.320000pt;}
.y73_c00269{bottom:232.960000pt;}
.y5c_c00269{bottom:234.240000pt;}
.y75_c00269{bottom:234.880000pt;}
.y5a_c00269{bottom:263.040000pt;}
.y59_c00269{bottom:268.800000pt;}
.y58_c00269{bottom:270.720000pt;}
.y5b_c00269{bottom:271.360000pt;}
.y56_c00269{bottom:272.000000pt;}
.y57_c00269{bottom:273.280000pt;}
.y47_c00269{bottom:307.200000pt;}
.y55_c00269{bottom:309.120000pt;}
.y49_c00269{bottom:309.760000pt;}
.y46_c00269{bottom:310.400000pt;}
.y48_c00269{bottom:311.040000pt;}
.y43_c00269{bottom:345.600000pt;}
.y44_c00269{bottom:346.880000pt;}
.y54_c00269{bottom:348.160000pt;}
.y45_c00269{bottom:348.800000pt;}
.y42_c00269{bottom:349.440000pt;}
.y41_c00269{bottom:384.640000pt;}
.y51_c00269{bottom:386.560000pt;}
.y52_c00269{bottom:387.200000pt;}
.y53_c00269{bottom:387.840000pt;}
.y40_c00269{bottom:388.480000pt;}
.y3f_c00269{bottom:423.040000pt;}
.y3d_c00269{bottom:424.960000pt;}
.y3e_c00269{bottom:426.240000pt;}
.y3c_c00269{bottom:451.200000pt;}
.y3a_c00269{bottom:451.840000pt;}
.y50_c00269{bottom:453.120000pt;}
.y4f_c00269{bottom:454.400000pt;}
.y39_c00269{bottom:455.040000pt;}
.y3b_c00269{bottom:455.680000pt;}
.y38_c00269{bottom:490.240000pt;}
.y4e_c00269{bottom:491.520000pt;}
.y37_c00269{bottom:492.800000pt;}
.y35_c00269{bottom:528.640000pt;}
.y36_c00269{bottom:529.280000pt;}
.y4b_c00269{bottom:530.560000pt;}
.y4c_c00269{bottom:531.200000pt;}
.y34_c00269{bottom:531.840000pt;}
.y4d_c00269{bottom:533.120000pt;}
.y31_c00269{bottom:567.040000pt;}
.y2f_c00269{bottom:568.320000pt;}
.y32_c00269{bottom:568.960000pt;}
.y33_c00269{bottom:570.240000pt;}
.y30_c00269{bottom:570.880000pt;}
.y4a_c00269{bottom:571.520000pt;}
.y2b_c00269{bottom:604.800000pt;}
.y2d_c00269{bottom:605.440000pt;}
.y2c_c00269{bottom:606.080000pt;}
.y2e_c00269{bottom:606.720000pt;}
.y2a_c00269{bottom:608.640000pt;}
.y19_c00269{bottom:643.200000pt;}
.y18_c00269{bottom:643.840000pt;}
.y17_c00269{bottom:644.480000pt;}
.y29_c00269{bottom:645.120000pt;}
.y16_c00269{bottom:681.600000pt;}
.y26_c00269{bottom:682.240000pt;}
.y27_c00269{bottom:682.880000pt;}
.y15_c00269{bottom:683.520000pt;}
.y28_c00269{bottom:684.160000pt;}
.y25_c00269{bottom:684.800000pt;}
.y14_c00269{bottom:720.640000pt;}
.y23_c00269{bottom:721.280000pt;}
.y13_c00269{bottom:721.920000pt;}
.y24_c00269{bottom:723.200000pt;}
.y12_c00269{bottom:759.040000pt;}
.y22_c00269{bottom:759.680000pt;}
.y11_c00269{bottom:760.960000pt;}
.y10_c00269{bottom:796.800000pt;}
.y21_c00269{bottom:797.440000pt;}
.y20_c00269{bottom:798.080000pt;}
.yf_c00269{bottom:800.000000pt;}
.yd_c00269{bottom:835.200000pt;}
.ye_c00269{bottom:837.120000pt;}
.yc_c00269{bottom:839.680000pt;}
.yb_c00269{bottom:864.000000pt;}
.ya_c00269{bottom:864.640000pt;}
.y1f_c00269{bottom:865.280000pt;}
.y8_c00269{bottom:866.560000pt;}
.y9_c00269{bottom:867.840000pt;}
.y7_c00269{bottom:902.400000pt;}
.y1d_c00269{bottom:903.040000pt;}
.y6_c00269{bottom:904.320000pt;}
.y1e_c00269{bottom:905.600000pt;}
.y1c_c00269{bottom:906.240000pt;}
.y5_c00269{bottom:940.800000pt;}
.y2_c00269{bottom:941.440000pt;}
.y1a_c00269{bottom:942.080000pt;}
.y1_c00269{bottom:942.720000pt;}
.y1b_c00269{bottom:943.360000pt;}
.y3_c00269{bottom:944.640000pt;}
.y4_c00269{bottom:945.280000pt;}
.h11_c00269{height:25.341250pt;}
.he_c00269{height:29.948750pt;}
.h5_c00269{height:32.252500pt;}
.hb_c00269{height:39.163750pt;}
.h4_c00269{height:41.467500pt;}
.hc_c00269{height:43.771250pt;}
.ha_c00269{height:46.075000pt;}
.h6_c00269{height:48.378750pt;}
.h9_c00269{height:50.682500pt;}
.h8_c00269{height:52.986250pt;}
.h12_c00269{height:53.755000pt;}
.h2_c00269{height:55.290000pt;}
.h10_c00269{height:57.337500pt;}
.hd_c00269{height:57.593750pt;}
.h7_c00269{height:59.897500pt;}
.h3_c00269{height:62.201250pt;}
.hf_c00269{height:82.935000pt;}
.h0_c00269{height:1029.120000pt;}
.h1_c00269{height:1029.333333pt;}
.w1_c00269{width:696.000000pt;}
.w0_c00269{width:696.320000pt;}
.x0_c00269{left:0.000000pt;}
.x1_c00269{left:69.120000pt;}
.x21_c00269{left:70.400000pt;}
.x3a_c00269{left:106.880000pt;}
.xa_c00269{left:133.120000pt;}
.x2_c00269{left:134.400000pt;}
.x31_c00269{left:163.200000pt;}
.x1c_c00269{left:164.480000pt;}
.x2e_c00269{left:170.880000pt;}
.x7_c00269{left:172.800000pt;}
.x25_c00269{left:181.760000pt;}
.x22_c00269{left:209.280000pt;}
.x1d_c00269{left:211.200000pt;}
.x26_c00269{left:220.160000pt;}
.x3_c00269{left:239.360000pt;}
.x36_c00269{left:248.320000pt;}
.xb_c00269{left:249.600000pt;}
.x9_c00269{left:259.840000pt;}
.x4_c00269{left:279.040000pt;}
.x28_c00269{left:288.000000pt;}
.x23_c00269{left:298.240000pt;}
.x5_c00269{left:327.040000pt;}
.x37_c00269{left:334.720000pt;}
.x24_c00269{left:336.000000pt;}
.x32_c00269{left:355.200000pt;}
.x6_c00269{left:364.800000pt;}
.x1e_c00269{left:374.400000pt;}
.x38_c00269{left:382.720000pt;}
.x8_c00269{left:403.840000pt;}
.x1f_c00269{left:413.440000pt;}
.x1a_c00269{left:422.400000pt;}
.x20_c00269{left:451.200000pt;}
.x27_c00269{left:460.160000pt;}
.x33_c00269{left:468.480000pt;}
.x1b_c00269{left:470.400000pt;}
.x2f_c00269{left:478.720000pt;}
.x35_c00269{left:496.640000pt;}
.x14_c00269{left:499.840000pt;}
.x39_c00269{left:507.520000pt;}
.x15_c00269{left:509.440000pt;}
.x10_c00269{left:510.720000pt;}
.x34_c00269{left:517.120000pt;}
.x30_c00269{left:518.400000pt;}
.x3b_c00269{left:526.080000pt;}
.x11_c00269{left:528.000000pt;}
.x16_c00269{left:529.280000pt;}
.x2b_c00269{left:556.160000pt;}
.xc_c00269{left:557.440133pt;}
.x17_c00269{left:567.040000pt;}
.x12_c00269{left:579.200000pt;}
.x2c_c00269{left:585.600000pt;}
.xd_c00269{left:586.880000pt;}
.x18_c00269{left:596.480000pt;}
.x2d_c00269{left:614.400000pt;}
.x3c_c00269{left:622.080000pt;}
.x2a_c00269{left:623.360000pt;}
.x13_c00269{left:624.640000pt;}
.xe_c00269{left:625.920000pt;}
.x19_c00269{left:634.240000pt;}
.x3d_c00269{left:640.640000pt;}
.x29_c00269{left:641.920000pt;}
.xf_c00269{left:643.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_fc7e009f89b8ded73ad13f72.woff2')format("woff");}.ff1_c00270{font-family:ff1_c00270;line-height:1.109863;font-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_c00270{transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);}
.m1f_c00270{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m1_c00270{transform:matrix(0.222275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222275,0.000000,0.000000,0.250000,0,0);}
.m1d_c00270{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);}
.m49_c00270{transform:matrix(0.234200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234200,0.000000,0.000000,0.250000,0,0);}
.m4a_c00270{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m1a_c00270{transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);}
.md_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);}
.m48_c00270{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);}
.m43_c00270{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m10_c00270{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m7_c00270{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m5_c00270{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_c00270{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_c00270{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m2_c00270{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m11_c00270{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mf_c00270{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m26_c00270{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00270{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m22_c00270{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m27_c00270{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mc_c00270{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m4_c00270{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00270{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.me_c00270{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m9_c00270{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m20_c00270{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m23_c00270{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00270{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00270{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m8_c00270{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m14_c00270{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00270{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m19_c00270{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00270{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m34_c00270{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m6_c00270{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00270{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00270{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00270{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);}
.m0_c00270{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m29_c00270{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);}
.m3c_c00270{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00270{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m25_c00270{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);}
.m32_c00270{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00270{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);}
.m16_c00270{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);}
.m39_c00270{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00270{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);}
.m38_c00270{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);}
.m36_c00270{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);}
.m18_c00270{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00270{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00270{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);}
.m12_c00270{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00270{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00270{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m46_c00270{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m44_c00270{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);}
.m15_c00270{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);}
.m33_c00270{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00270{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00270{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m37_c00270{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);}
.m3_c00270{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m35_c00270{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m31_c00270{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);}
.m45_c00270{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m47_c00270{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m17_c00270{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);}
.m42_c00270{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.ma_c00270{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m41_c00270{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m30_c00270{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m40_c00270{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m28_c00270{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m24_c00270{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.v1_c00270{vertical-align:-8.640000px;}
.v0_c00270{vertical-align:0.000000px;}
.v2_c00270{vertical-align:2.880000px;}
.v3_c00270{vertical-align:5.760000px;}
.ls0_c00270{letter-spacing:0.000000px;}
.sc__c00270{text-shadow:none;}
.sc0_c00270{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00270{-webkit-text-stroke:0px transparent;}
.sc0_c00270{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00270{word-spacing:-2.927040px;}
.ws1_c00270{word-spacing:-1.747680px;}
.ws5_c00270{word-spacing:0.000000px;}
.ws3_c00270{word-spacing:9.212400px;}
.ws0_c00270{word-spacing:9.607200px;}
.ws4_c00270{word-spacing:57.059942px;}
.fc0_c00270{color:transparent;}
.fsd_c00270{font-size:37.440000px;}
.fsc_c00270{font-size:40.320000px;}
.fsb_c00270{font-size:46.080000px;}
.fs2_c00270{font-size:48.960000px;}
.fs6_c00270{font-size:51.840000px;}
.fsa_c00270{font-size:54.720000px;}
.fs9_c00270{font-size:57.600000px;}
.fs0_c00270{font-size:60.480000px;}
.fs4_c00270{font-size:63.360000px;}
.fs5_c00270{font-size:66.240000px;}
.fs8_c00270{font-size:69.120000px;}
.fs7_c00270{font-size:72.000000px;}
.fs3_c00270{font-size:74.880000px;}
.fs1_c00270{font-size:77.760000px;}
.y0_c00270{bottom:0.000000px;}
.y6a_c00270{bottom:52.560000px;}
.y75_c00270{bottom:55.440000px;}
.y69_c00270{bottom:58.320000px;}
.y68_c00270{bottom:95.760000px;}
.y74_c00270{bottom:98.640000px;}
.y73_c00270{bottom:99.360000px;}
.y67_c00270{bottom:100.080000px;}
.y66_c00270{bottom:100.800000px;}
.y65_c00270{bottom:101.520000px;}
.y64_c00270{bottom:140.400000px;}
.y62_c00270{bottom:141.840000px;}
.y72_c00270{bottom:142.560000px;}
.y63_c00270{bottom:143.280000px;}
.y61_c00270{bottom:144.720000px;}
.y71_c00270{bottom:145.440000px;}
.y60_c00270{bottom:184.320000px;}
.y5e_c00270{bottom:185.760000px;}
.y5f_c00270{bottom:186.480000px;}
.y5d_c00270{bottom:187.920000px;}
.y70_c00270{bottom:188.640000px;}
.y5c_c00270{bottom:226.080000px;}
.y5a_c00270{bottom:227.520000px;}
.y5b_c00270{bottom:228.960000px;}
.y57_c00270{bottom:258.480000px;}
.y56_c00270{bottom:259.920000px;}
.y55_c00270{bottom:260.640000px;}
.y54_c00270{bottom:262.080000px;}
.y58_c00270{bottom:262.800000px;}
.y59_c00270{bottom:263.520000px;}
.y52_c00270{bottom:302.400000px;}
.y51_c00270{bottom:303.120000px;}
.y53_c00270{bottom:305.280000px;}
.y50_c00270{bottom:306.000000px;}
.y4f_c00270{bottom:306.720000px;}
.y4d_c00270{bottom:334.800000px;}
.y4c_c00270{bottom:335.520000px;}
.y4a_c00270{bottom:336.240000px;}
.y4e_c00270{bottom:337.680000px;}
.y4b_c00270{bottom:338.400000px;}
.y6f_c00270{bottom:339.120000px;}
.y48_c00270{bottom:378.000000px;}
.y47_c00270{bottom:378.720000px;}
.y49_c00270{bottom:380.160000px;}
.y46_c00270{bottom:380.880000px;}
.y6e_c00270{bottom:381.600000px;}
.y45_c00270{bottom:424.080000px;}
.y44_c00270{bottom:454.320000px;}
.y41_c00270{bottom:455.760000px;}
.y43_c00270{bottom:456.480000px;}
.y42_c00270{bottom:457.200000px;}
.y40_c00270{bottom:488.880000px;}
.y3d_c00270{bottom:496.800000px;}
.y3f_c00270{bottom:497.520000px;}
.y3a_c00270{bottom:498.240000px;}
.y3e_c00270{bottom:498.960000px;}
.y3c_c00270{bottom:499.680000px;}
.y3b_c00270{bottom:500.400000px;}
.y38_c00270{bottom:538.560000px;}
.y6d_c00270{bottom:540.000000px;}
.y37_c00270{bottom:540.720000px;}
.y36_c00270{bottom:541.440000px;}
.y39_c00270{bottom:542.880000px;}
.y35_c00270{bottom:582.480000px;}
.y34_c00270{bottom:583.920000px;}
.y6c_c00270{bottom:584.640000px;}
.y6b_c00270{bottom:586.800000px;}
.y33_c00270{bottom:624.960000px;}
.y32_c00270{bottom:627.120000px;}
.y1e_c00270{bottom:668.880000px;}
.y31_c00270{bottom:670.320000px;}
.y30_c00270{bottom:671.040000px;}
.y1d_c00270{bottom:671.760000px;}
.y1c_c00270{bottom:712.080000px;}
.y2e_c00270{bottom:713.520000px;}
.y1b_c00270{bottom:714.960000px;}
.y2f_c00270{bottom:715.680000px;}
.y2d_c00270{bottom:716.400000px;}
.y16_c00270{bottom:755.280000px;}
.y1a_c00270{bottom:756.000000px;}
.y18_c00270{bottom:756.720000px;}
.y17_c00270{bottom:758.880000px;}
.y19_c00270{bottom:759.600000px;}
.y15_c00270{bottom:786.960000px;}
.y12_c00270{bottom:787.680000px;}
.y13_c00270{bottom:788.400000px;}
.y11_c00270{bottom:789.120000px;}
.y2c_c00270{bottom:790.560000px;}
.y14_c00270{bottom:791.280000px;}
.y10_c00270{bottom:830.880000px;}
.y2b_c00270{bottom:832.320000px;}
.y2a_c00270{bottom:833.760000px;}
.yf_c00270{bottom:834.480000px;}
.ye_c00270{bottom:874.080000px;}
.yd_c00270{bottom:875.520000px;}
.y29_c00270{bottom:877.680000px;}
.ya_c00270{bottom:917.280000px;}
.yc_c00270{bottom:918.000000px;}
.y9_c00270{bottom:918.720000px;}
.yb_c00270{bottom:920.880000px;}
.y28_c00270{bottom:921.600000px;}
.y8_c00270{bottom:959.760000px;}
.y27_c00270{bottom:960.480000px;}
.y25_c00270{bottom:961.200000px;}
.y7_c00270{bottom:961.920000px;}
.y26_c00270{bottom:964.080000px;}
.y6_c00270{bottom:1003.680000px;}
.y5_c00270{bottom:1005.840000px;}
.y24_c00270{bottom:1006.560000px;}
.y23_c00270{bottom:1007.280000px;}
.y4_c00270{bottom:1045.440000px;}
.y2_c00270{bottom:1046.160000px;}
.y21_c00270{bottom:1046.880000px;}
.y20_c00270{bottom:1047.600000px;}
.y1_c00270{bottom:1048.320000px;}
.y22_c00270{bottom:1049.040000px;}
.y3_c00270{bottom:1049.760000px;}
.y1f_c00270{bottom:1100.160000px;}
.h11_c00270{height:33.692344px;}
.h10_c00270{height:36.284062px;}
.hf_c00270{height:41.467500px;}
.h4_c00270{height:44.059219px;}
.h8_c00270{height:46.650937px;}
.hc_c00270{height:49.242656px;}
.hb_c00270{height:51.834375px;}
.hd_c00270{height:53.561250px;}
.h2_c00270{height:54.426094px;}
.h6_c00270{height:57.017812px;}
.h7_c00270{height:59.609531px;}
.h12_c00270{height:60.186094px;}
.ha_c00270{height:62.201250px;}
.h9_c00270{height:64.792969px;}
.h5_c00270{height:67.384687px;}
.h3_c00270{height:69.976406px;}
.he_c00270{height:70.264688px;}
.h0_c00270{height:1156.320000px;}
.h1_c00270{height:1156.500000px;}
.w0_c00270{width:781.200000px;}
.w1_c00270{width:781.500000px;}
.x0_c00270{left:0.000000px;}
.x1_c00270{left:74.880000px;}
.xf_c00270{left:76.320000px;}
.x29_c00270{left:77.760000px;}
.x2_c00270{left:146.880000px;}
.xd_c00270{left:148.320000px;}
.x31_c00270{left:180.000000px;}
.x24_c00270{left:190.080000px;}
.x1e_c00270{left:191.520000px;}
.x2d_c00270{left:201.600000px;}
.xe_c00270{left:222.480000px;}
.x9_c00270{left:234.720000px;}
.x1f_c00270{left:244.800000px;}
.x2f_c00270{left:246.240000px;}
.x25_c00270{left:255.600000px;}
.x6_c00270{left:267.840000px;}
.x3_c00270{left:277.920000px;}
.x19_c00270{left:288.000000px;}
.x20_c00270{left:299.520000px;}
.x26_c00270{left:309.600000px;}
.x18_c00270{left:332.640000px;}
.x1a_c00270{left:343.440000px;}
.x2e_c00270{left:352.800000px;}
.xa_c00270{left:365.040000px;}
.x30_c00270{left:375.120000px;}
.x2a_c00270{left:386.640000px;}
.x7_c00270{left:396.720000px;}
.x4_c00270{left:416.880000px;}
.x27_c00270{left:419.040000px;}
.x21_c00270{left:430.560000px;}
.x2b_c00270{left:440.640000px;}
.xb_c00270{left:450.000000px;}
.x8_c00270{left:451.440000px;}
.x5_c00270{left:472.320000px;}
.x28_c00270{left:483.840000px;}
.x1b_c00270{left:493.200000px;}
.xc_c00270{left:504.720000px;}
.x23_c00270{left:525.600000px;}
.x22_c00270{left:527.040000px;}
.x1c_c00270{left:537.840000px;}
.x2c_c00270{left:547.920000px;}
.x17_c00270{left:560.160000px;}
.x11_c00270{left:570.240000px;}
.x1d_c00270{left:576.000000px;}
.x15_c00270{left:591.120000px;}
.x12_c00270{left:624.240000px;}
.x13_c00270{left:656.640000px;}
.x34_c00270{left:666.000000px;}
.x32_c00270{left:689.040000px;}
.x33_c00270{left:698.400000px;}
.x14_c00270{left:699.840000px;}
.x10_c00270{left:702.000000px;}
.x16_c00270{left:719.280000px;}
@media print{
.v1_c00270{vertical-align:-7.680000pt;}
.v0_c00270{vertical-align:0.000000pt;}
.v2_c00270{vertical-align:2.560000pt;}
.v3_c00270{vertical-align:5.120000pt;}
.ls0_c00270{letter-spacing:0.000000pt;}
.ws2_c00270{word-spacing:-2.601813pt;}
.ws1_c00270{word-spacing:-1.553493pt;}
.ws5_c00270{word-spacing:0.000000pt;}
.ws3_c00270{word-spacing:8.188800pt;}
.ws0_c00270{word-spacing:8.539733pt;}
.ws4_c00270{word-spacing:50.719949pt;}
.fsd_c00270{font-size:33.280000pt;}
.fsc_c00270{font-size:35.840000pt;}
.fsb_c00270{font-size:40.960000pt;}
.fs2_c00270{font-size:43.520000pt;}
.fs6_c00270{font-size:46.080000pt;}
.fsa_c00270{font-size:48.640000pt;}
.fs9_c00270{font-size:51.200000pt;}
.fs0_c00270{font-size:53.760000pt;}
.fs4_c00270{font-size:56.320000pt;}
.fs5_c00270{font-size:58.880000pt;}
.fs8_c00270{font-size:61.440000pt;}
.fs7_c00270{font-size:64.000000pt;}
.fs3_c00270{font-size:66.560000pt;}
.fs1_c00270{font-size:69.120000pt;}
.y0_c00270{bottom:0.000000pt;}
.y6a_c00270{bottom:46.720000pt;}
.y75_c00270{bottom:49.280000pt;}
.y69_c00270{bottom:51.840000pt;}
.y68_c00270{bottom:85.120000pt;}
.y74_c00270{bottom:87.680000pt;}
.y73_c00270{bottom:88.320000pt;}
.y67_c00270{bottom:88.960000pt;}
.y66_c00270{bottom:89.600000pt;}
.y65_c00270{bottom:90.240000pt;}
.y64_c00270{bottom:124.800000pt;}
.y62_c00270{bottom:126.080000pt;}
.y72_c00270{bottom:126.720000pt;}
.y63_c00270{bottom:127.360000pt;}
.y61_c00270{bottom:128.640000pt;}
.y71_c00270{bottom:129.280000pt;}
.y60_c00270{bottom:163.840000pt;}
.y5e_c00270{bottom:165.120000pt;}
.y5f_c00270{bottom:165.760000pt;}
.y5d_c00270{bottom:167.040000pt;}
.y70_c00270{bottom:167.680000pt;}
.y5c_c00270{bottom:200.960000pt;}
.y5a_c00270{bottom:202.240000pt;}
.y5b_c00270{bottom:203.520000pt;}
.y57_c00270{bottom:229.760000pt;}
.y56_c00270{bottom:231.040000pt;}
.y55_c00270{bottom:231.680000pt;}
.y54_c00270{bottom:232.960000pt;}
.y58_c00270{bottom:233.600000pt;}
.y59_c00270{bottom:234.240000pt;}
.y52_c00270{bottom:268.800000pt;}
.y51_c00270{bottom:269.440000pt;}
.y53_c00270{bottom:271.360000pt;}
.y50_c00270{bottom:272.000000pt;}
.y4f_c00270{bottom:272.640000pt;}
.y4d_c00270{bottom:297.600000pt;}
.y4c_c00270{bottom:298.240000pt;}
.y4a_c00270{bottom:298.880000pt;}
.y4e_c00270{bottom:300.160000pt;}
.y4b_c00270{bottom:300.800000pt;}
.y6f_c00270{bottom:301.440000pt;}
.y48_c00270{bottom:336.000000pt;}
.y47_c00270{bottom:336.640000pt;}
.y49_c00270{bottom:337.920000pt;}
.y46_c00270{bottom:338.560000pt;}
.y6e_c00270{bottom:339.200000pt;}
.y45_c00270{bottom:376.960000pt;}
.y44_c00270{bottom:403.840000pt;}
.y41_c00270{bottom:405.120000pt;}
.y43_c00270{bottom:405.760000pt;}
.y42_c00270{bottom:406.400000pt;}
.y40_c00270{bottom:434.560000pt;}
.y3d_c00270{bottom:441.600000pt;}
.y3f_c00270{bottom:442.240000pt;}
.y3a_c00270{bottom:442.880000pt;}
.y3e_c00270{bottom:443.520000pt;}
.y3c_c00270{bottom:444.160000pt;}
.y3b_c00270{bottom:444.800000pt;}
.y38_c00270{bottom:478.720000pt;}
.y6d_c00270{bottom:480.000000pt;}
.y37_c00270{bottom:480.640000pt;}
.y36_c00270{bottom:481.280000pt;}
.y39_c00270{bottom:482.560000pt;}
.y35_c00270{bottom:517.760000pt;}
.y34_c00270{bottom:519.040000pt;}
.y6c_c00270{bottom:519.680000pt;}
.y6b_c00270{bottom:521.600000pt;}
.y33_c00270{bottom:555.520000pt;}
.y32_c00270{bottom:557.440000pt;}
.y1e_c00270{bottom:594.560000pt;}
.y31_c00270{bottom:595.840000pt;}
.y30_c00270{bottom:596.480000pt;}
.y1d_c00270{bottom:597.120000pt;}
.y1c_c00270{bottom:632.960000pt;}
.y2e_c00270{bottom:634.240000pt;}
.y1b_c00270{bottom:635.520000pt;}
.y2f_c00270{bottom:636.160000pt;}
.y2d_c00270{bottom:636.800000pt;}
.y16_c00270{bottom:671.360000pt;}
.y1a_c00270{bottom:672.000000pt;}
.y18_c00270{bottom:672.640000pt;}
.y17_c00270{bottom:674.560000pt;}
.y19_c00270{bottom:675.200000pt;}
.y15_c00270{bottom:699.520000pt;}
.y12_c00270{bottom:700.160000pt;}
.y13_c00270{bottom:700.800000pt;}
.y11_c00270{bottom:701.440000pt;}
.y2c_c00270{bottom:702.720000pt;}
.y14_c00270{bottom:703.360000pt;}
.y10_c00270{bottom:738.560000pt;}
.y2b_c00270{bottom:739.840000pt;}
.y2a_c00270{bottom:741.120000pt;}
.yf_c00270{bottom:741.760000pt;}
.ye_c00270{bottom:776.960000pt;}
.yd_c00270{bottom:778.240000pt;}
.y29_c00270{bottom:780.160000pt;}
.ya_c00270{bottom:815.360000pt;}
.yc_c00270{bottom:816.000000pt;}
.y9_c00270{bottom:816.640000pt;}
.yb_c00270{bottom:818.560000pt;}
.y28_c00270{bottom:819.200000pt;}
.y8_c00270{bottom:853.120000pt;}
.y27_c00270{bottom:853.760000pt;}
.y25_c00270{bottom:854.400000pt;}
.y7_c00270{bottom:855.040000pt;}
.y26_c00270{bottom:856.960000pt;}
.y6_c00270{bottom:892.160000pt;}
.y5_c00270{bottom:894.080000pt;}
.y24_c00270{bottom:894.720000pt;}
.y23_c00270{bottom:895.360000pt;}
.y4_c00270{bottom:929.280000pt;}
.y2_c00270{bottom:929.920000pt;}
.y21_c00270{bottom:930.560000pt;}
.y20_c00270{bottom:931.200000pt;}
.y1_c00270{bottom:931.840000pt;}
.y22_c00270{bottom:932.480000pt;}
.y3_c00270{bottom:933.120000pt;}
.y1f_c00270{bottom:977.920000pt;}
.h11_c00270{height:29.948750pt;}
.h10_c00270{height:32.252500pt;}
.hf_c00270{height:36.860000pt;}
.h4_c00270{height:39.163750pt;}
.h8_c00270{height:41.467500pt;}
.hc_c00270{height:43.771250pt;}
.hb_c00270{height:46.075000pt;}
.hd_c00270{height:47.610000pt;}
.h2_c00270{height:48.378750pt;}
.h6_c00270{height:50.682500pt;}
.h7_c00270{height:52.986250pt;}
.h12_c00270{height:53.498750pt;}
.ha_c00270{height:55.290000pt;}
.h9_c00270{height:57.593750pt;}
.h5_c00270{height:59.897500pt;}
.h3_c00270{height:62.201250pt;}
.he_c00270{height:62.457500pt;}
.h0_c00270{height:1027.840000pt;}
.h1_c00270{height:1028.000000pt;}
.w0_c00270{width:694.400000pt;}
.w1_c00270{width:694.666667pt;}
.x0_c00270{left:0.000000pt;}
.x1_c00270{left:66.560000pt;}
.xf_c00270{left:67.840000pt;}
.x29_c00270{left:69.120000pt;}
.x2_c00270{left:130.560000pt;}
.xd_c00270{left:131.840000pt;}
.x31_c00270{left:160.000000pt;}
.x24_c00270{left:168.960000pt;}
.x1e_c00270{left:170.240000pt;}
.x2d_c00270{left:179.200000pt;}
.xe_c00270{left:197.760000pt;}
.x9_c00270{left:208.640000pt;}
.x1f_c00270{left:217.600000pt;}
.x2f_c00270{left:218.880000pt;}
.x25_c00270{left:227.200000pt;}
.x6_c00270{left:238.080000pt;}
.x3_c00270{left:247.040000pt;}
.x19_c00270{left:256.000000pt;}
.x20_c00270{left:266.240000pt;}
.x26_c00270{left:275.200000pt;}
.x18_c00270{left:295.680000pt;}
.x1a_c00270{left:305.280000pt;}
.x2e_c00270{left:313.600000pt;}
.xa_c00270{left:324.480000pt;}
.x30_c00270{left:333.440000pt;}
.x2a_c00270{left:343.680000pt;}
.x7_c00270{left:352.640000pt;}
.x4_c00270{left:370.560000pt;}
.x27_c00270{left:372.480000pt;}
.x21_c00270{left:382.720000pt;}
.x2b_c00270{left:391.680000pt;}
.xb_c00270{left:400.000000pt;}
.x8_c00270{left:401.280000pt;}
.x5_c00270{left:419.840000pt;}
.x28_c00270{left:430.080000pt;}
.x1b_c00270{left:438.400000pt;}
.xc_c00270{left:448.640000pt;}
.x23_c00270{left:467.200000pt;}
.x22_c00270{left:468.480000pt;}
.x1c_c00270{left:478.080000pt;}
.x2c_c00270{left:487.040000pt;}
.x17_c00270{left:497.920000pt;}
.x11_c00270{left:506.880000pt;}
.x1d_c00270{left:512.000000pt;}
.x15_c00270{left:525.440000pt;}
.x12_c00270{left:554.880000pt;}
.x13_c00270{left:583.680000pt;}
.x34_c00270{left:592.000000pt;}
.x32_c00270{left:612.480000pt;}
.x33_c00270{left:620.800000pt;}
.x14_c00270{left:622.080000pt;}
.x10_c00270{left:624.000000pt;}
.x16_c00270{left:639.360000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2ba0202848b86231e3a46354.woff2')format("woff");}.ff1_c00271{font-family:ff1_c00271;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4e_c00271{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00271{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);}
.m44_c00271{transform:matrix(0.233375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233375,0.000000,0.000000,0.250000,0,0);}
.m30_c00271{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m1_c00271{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_c00271{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);}
.m3a_c00271{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);}
.m3e_c00271{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00271{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m18_c00271{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);}
.m2e_c00271{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m14_c00271{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.me_c00271{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00271{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);}
.m37_c00271{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m25_c00271{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00271{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m29_c00271{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m10_c00271{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);}
.m39_c00271{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m7_c00271{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m43_c00271{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m22_c00271{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m31_c00271{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00271{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m32_c00271{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m5_c00271{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3_c00271{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m38_c00271{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m47_c00271{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.md_c00271{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m0_c00271{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m42_c00271{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.ma_c00271{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m26_c00271{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m12_c00271{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m35_c00271{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00271{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);}
.m34_c00271{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00271{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00271{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00271{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m13_c00271{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00271{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m4_c00271{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_c00271{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m50_c00271{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m23_c00271{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);}
.m46_c00271{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);}
.m2c_c00271{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00271{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);}
.m17_c00271{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);}
.m16_c00271{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00271{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00271{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);}
.m27_c00271{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);}
.m20_c00271{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00271{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.mc_c00271{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.mb_c00271{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);}
.m28_c00271{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);}
.m8_c00271{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);}
.m3b_c00271{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m40_c00271{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m9_c00271{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);}
.m21_c00271{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m2_c00271{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);}
.mf_c00271{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);}
.m41_c00271{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m11_c00271{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m49_c00271{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m24_c00271{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00271{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00271{transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);}
.m19_c00271{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m45_c00271{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m48_c00271{transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00271{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m33_c00271{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);}
.m3c_c00271{transform:matrix(0.805000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.805000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.805000,0.000000,0.000000,0.250000,0,0);}
.m36_c00271{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.v0_c00271{vertical-align:0.000000px;}
.v1_c00271{vertical-align:2.880000px;}
.v2_c00271{vertical-align:5.760000px;}
.ls0_c00271{letter-spacing:0.000000px;}
.sc__c00271{text-shadow:none;}
.sc0_c00271{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00271{-webkit-text-stroke:0px transparent;}
.sc0_c00271{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00271{word-spacing:0.000000px;}
.ws0_c00271{word-spacing:11.855347px;}
.ws1_c00271{word-spacing:18.084000px;}
.ws2_c00271{word-spacing:164.463120px;}
.fc0_c00271{color:transparent;}
.fsf_c00271{font-size:25.920000px;}
.fs5_c00271{font-size:37.440000px;}
.fs6_c00271{font-size:40.320000px;}
.fs9_c00271{font-size:46.080000px;}
.fs2_c00271{font-size:48.960000px;}
.fs3_c00271{font-size:51.840000px;}
.fs7_c00271{font-size:54.720000px;}
.fse_c00271{font-size:57.600000px;}
.fsd_c00271{font-size:60.480000px;}
.fsb_c00271{font-size:63.360000px;}
.fs0_c00271{font-size:66.240000px;}
.fs4_c00271{font-size:69.120000px;}
.fsc_c00271{font-size:72.000000px;}
.fs8_c00271{font-size:74.880000px;}
.fs1_c00271{font-size:77.760000px;}
.fsa_c00271{font-size:83.520000px;}
.y0_c00271{bottom:0.000000px;}
.y68_c00271{bottom:110.160000px;}
.y69_c00271{bottom:113.040000px;}
.y67_c00271{bottom:113.760000px;}
.y66_c00271{bottom:115.200000px;}
.y63_c00271{bottom:153.360000px;}
.y64_c00271{bottom:155.520000px;}
.y65_c00271{bottom:156.240000px;}
.y62_c00271{bottom:157.680000px;}
.y61_c00271{bottom:158.400000px;}
.y60_c00271{bottom:159.120000px;}
.y5b_c00271{bottom:196.560000px;}
.y5e_c00271{bottom:197.280000px;}
.y5d_c00271{bottom:198.000000px;}
.y5f_c00271{bottom:198.720000px;}
.y5c_c00271{bottom:199.440000px;}
.y5a_c00271{bottom:200.880000px;}
.y57_c00271{bottom:239.040000px;}
.y58_c00271{bottom:241.920000px;}
.y59_c00271{bottom:242.640000px;}
.y55_c00271{bottom:243.360000px;}
.y56_c00271{bottom:244.080000px;}
.y54_c00271{bottom:282.960000px;}
.y53_c00271{bottom:286.560000px;}
.y52_c00271{bottom:287.280000px;}
.y4d_c00271{bottom:314.640000px;}
.y51_c00271{bottom:317.520000px;}
.y4c_c00271{bottom:318.240000px;}
.y4e_c00271{bottom:318.960000px;}
.y50_c00271{bottom:319.680000px;}
.y4f_c00271{bottom:320.400000px;}
.y47_c00271{bottom:357.840000px;}
.y49_c00271{bottom:358.560000px;}
.y4a_c00271{bottom:360.720000px;}
.y46_c00271{bottom:361.440000px;}
.y48_c00271{bottom:362.160000px;}
.y4b_c00271{bottom:363.600000px;}
.y41_c00271{bottom:401.760000px;}
.y45_c00271{bottom:403.200000px;}
.y44_c00271{bottom:403.920000px;}
.y40_c00271{bottom:404.640000px;}
.y43_c00271{bottom:405.360000px;}
.y42_c00271{bottom:406.080000px;}
.y3c_c00271{bottom:444.960000px;}
.y3e_c00271{bottom:445.680000px;}
.y3f_c00271{bottom:447.120000px;}
.y3b_c00271{bottom:447.840000px;}
.y3d_c00271{bottom:449.280000px;}
.y2c_c00271{bottom:491.040000px;}
.y2d_c00271{bottom:491.760000px;}
.y2b_c00271{bottom:493.200000px;}
.y29_c00271{bottom:542.880000px;}
.y3a_c00271{bottom:544.320000px;}
.y28_c00271{bottom:545.040000px;}
.y2a_c00271{bottom:546.480000px;}
.y26_c00271{bottom:587.520000px;}
.y27_c00271{bottom:589.680000px;}
.y23_c00271{bottom:618.480000px;}
.y22_c00271{bottom:619.200000px;}
.y39_c00271{bottom:619.920000px;}
.y38_c00271{bottom:620.640000px;}
.y25_c00271{bottom:621.360000px;}
.y24_c00271{bottom:622.080000px;}
.y20_c00271{bottom:661.680000px;}
.y36_c00271{bottom:662.400000px;}
.y1f_c00271{bottom:663.120000px;}
.y37_c00271{bottom:664.560000px;}
.y21_c00271{bottom:665.280000px;}
.y1e_c00271{bottom:704.880000px;}
.y35_c00271{bottom:705.600000px;}
.y1d_c00271{bottom:706.320000px;}
.y1c_c00271{bottom:747.360000px;}
.y34_c00271{bottom:748.080000px;}
.y1b_c00271{bottom:748.800000px;}
.y19_c00271{bottom:789.120000px;}
.y15_c00271{bottom:792.000000px;}
.y17_c00271{bottom:792.720000px;}
.y1a_c00271{bottom:793.440000px;}
.y16_c00271{bottom:794.160000px;}
.y18_c00271{bottom:794.880000px;}
.y14_c00271{bottom:833.760000px;}
.y13_c00271{bottom:834.480000px;}
.y11_c00271{bottom:876.960000px;}
.yf_c00271{bottom:877.680000px;}
.y32_c00271{bottom:878.400000px;}
.y33_c00271{bottom:879.120000px;}
.y12_c00271{bottom:879.840000px;}
.y10_c00271{bottom:880.560000px;}
.yd_c00271{bottom:920.160000px;}
.y31_c00271{bottom:920.880000px;}
.yc_c00271{bottom:921.600000px;}
.ye_c00271{bottom:924.480000px;}
.ya_c00271{bottom:963.360000px;}
.y8_c00271{bottom:964.080000px;}
.y30_c00271{bottom:965.520000px;}
.yb_c00271{bottom:966.240000px;}
.y9_c00271{bottom:966.960000px;}
.y5_c00271{bottom:1006.560000px;}
.y4_c00271{bottom:1007.280000px;}
.y7_c00271{bottom:1010.160000px;}
.y6_c00271{bottom:1010.880000px;}
.y2_c00271{bottom:1050.480000px;}
.y1_c00271{bottom:1051.200000px;}
.y2f_c00271{bottom:1051.920000px;}
.y3_c00271{bottom:1054.080000px;}
.y2e_c00271{bottom:1109.520000px;}
.h12_c00271{height:23.325469px;}
.h7_c00271{height:33.692344px;}
.h8_c00271{height:36.284062px;}
.hb_c00271{height:41.467500px;}
.h4_c00271{height:44.059219px;}
.h5_c00271{height:46.650937px;}
.h9_c00271{height:49.242656px;}
.h10_c00271{height:51.834375px;}
.hf_c00271{height:54.426094px;}
.h11_c00271{height:54.714375px;}
.hd_c00271{height:57.017812px;}
.h2_c00271{height:59.609531px;}
.h13_c00271{height:60.186094px;}
.h6_c00271{height:62.201250px;}
.he_c00271{height:64.792969px;}
.ha_c00271{height:67.384687px;}
.h3_c00271{height:69.976406px;}
.hc_c00271{height:75.159844px;}
.h0_c00271{height:1158.480000px;}
.h1_c00271{height:1158.750000px;}
.w1_c00271{width:783.750000px;}
.w0_c00271{width:784.080000px;}
.x0_c00271{left:0.000000px;}
.x1_c00271{left:81.360000px;}
.x29_c00271{left:82.800000px;}
.x35_c00271{left:84.240000px;}
.x1e_c00271{left:131.760000px;}
.x2f_c00271{left:153.360000px;}
.x2_c00271{left:154.800000px;}
.x10_c00271{left:197.280000px;}
.xb_c00271{left:198.720000px;}
.x30_c00271{left:207.360000px;}
.x1a_c00271{left:218.880000px;}
.x3_c00271{left:240.480000px;}
.x15_c00271{left:241.920000px;}
.x11_c00271{left:250.560000px;}
.x1c_c00271{left:260.640000px;}
.x27_c00271{left:262.080000px;}
.x6_c00271{left:263.520000px;}
.x14_c00271{left:272.880000px;}
.x1b_c00271{left:274.320000px;}
.x16_c00271{left:284.400000px;}
.x2b_c00271{left:294.480000px;}
.x4_c00271{left:295.920000px;}
.x7_c00271{left:306.000000px;}
.xf_c00271{left:316.800000px;}
.x17_c00271{left:326.880000px;}
.x2a_c00271{left:339.120000px;}
.xc_c00271{left:348.480000px;}
.x32_c00271{left:370.080000px;}
.xe_c00271{left:380.880000px;}
.x2c_c00271{left:382.320000px;}
.xd_c00271{left:403.920000px;}
.x8_c00271{left:425.520000px;}
.x2d_c00271{left:436.320000px;}
.x1d_c00271{left:445.680000px;}
.x5_c00271{left:447.120000px;}
.x12_c00271{left:455.760000px;}
.x18_c00271{left:467.280000px;}
.x9_c00271{left:479.520000px;}
.x13_c00271{left:501.120000px;}
.x19_c00271{left:510.480000px;}
.x33_c00271{left:521.280000px;}
.xa_c00271{left:522.720000px;}
.x26_c00271{left:596.880000px;}
.x24_c00271{left:598.320000px;}
.x28_c00271{left:608.400000px;}
.x34_c00271{left:628.560000px;}
.x20_c00271{left:630.720000px;}
.x2e_c00271{left:662.400000px;}
.x21_c00271{left:663.840000px;}
.x25_c00271{left:695.520000px;}
.x1f_c00271{left:704.880000px;}
.x22_c00271{left:706.320000px;}
.x31_c00271{left:724.320000px;}
.x23_c00271{left:725.760000px;}
@media print{
.v0_c00271{vertical-align:0.000000pt;}
.v1_c00271{vertical-align:2.560000pt;}
.v2_c00271{vertical-align:5.120000pt;}
.ls0_c00271{letter-spacing:0.000000pt;}
.ws3_c00271{word-spacing:0.000000pt;}
.ws0_c00271{word-spacing:10.538086pt;}
.ws1_c00271{word-spacing:16.074667pt;}
.ws2_c00271{word-spacing:146.189440pt;}
.fsf_c00271{font-size:23.040000pt;}
.fs5_c00271{font-size:33.280000pt;}
.fs6_c00271{font-size:35.840000pt;}
.fs9_c00271{font-size:40.960000pt;}
.fs2_c00271{font-size:43.520000pt;}
.fs3_c00271{font-size:46.080000pt;}
.fs7_c00271{font-size:48.640000pt;}
.fse_c00271{font-size:51.200000pt;}
.fsd_c00271{font-size:53.760000pt;}
.fsb_c00271{font-size:56.320000pt;}
.fs0_c00271{font-size:58.880000pt;}
.fs4_c00271{font-size:61.440000pt;}
.fsc_c00271{font-size:64.000000pt;}
.fs8_c00271{font-size:66.560000pt;}
.fs1_c00271{font-size:69.120000pt;}
.fsa_c00271{font-size:74.240000pt;}
.y0_c00271{bottom:0.000000pt;}
.y68_c00271{bottom:97.920000pt;}
.y69_c00271{bottom:100.480000pt;}
.y67_c00271{bottom:101.120000pt;}
.y66_c00271{bottom:102.400000pt;}
.y63_c00271{bottom:136.320000pt;}
.y64_c00271{bottom:138.240000pt;}
.y65_c00271{bottom:138.880000pt;}
.y62_c00271{bottom:140.160000pt;}
.y61_c00271{bottom:140.800000pt;}
.y60_c00271{bottom:141.440000pt;}
.y5b_c00271{bottom:174.720000pt;}
.y5e_c00271{bottom:175.360000pt;}
.y5d_c00271{bottom:176.000000pt;}
.y5f_c00271{bottom:176.640000pt;}
.y5c_c00271{bottom:177.280000pt;}
.y5a_c00271{bottom:178.560000pt;}
.y57_c00271{bottom:212.480000pt;}
.y58_c00271{bottom:215.040000pt;}
.y59_c00271{bottom:215.680000pt;}
.y55_c00271{bottom:216.320000pt;}
.y56_c00271{bottom:216.960000pt;}
.y54_c00271{bottom:251.520000pt;}
.y53_c00271{bottom:254.720000pt;}
.y52_c00271{bottom:255.360000pt;}
.y4d_c00271{bottom:279.680000pt;}
.y51_c00271{bottom:282.240000pt;}
.y4c_c00271{bottom:282.880000pt;}
.y4e_c00271{bottom:283.520000pt;}
.y50_c00271{bottom:284.160000pt;}
.y4f_c00271{bottom:284.800000pt;}
.y47_c00271{bottom:318.080000pt;}
.y49_c00271{bottom:318.720000pt;}
.y4a_c00271{bottom:320.640000pt;}
.y46_c00271{bottom:321.280000pt;}
.y48_c00271{bottom:321.920000pt;}
.y4b_c00271{bottom:323.200000pt;}
.y41_c00271{bottom:357.120000pt;}
.y45_c00271{bottom:358.400000pt;}
.y44_c00271{bottom:359.040000pt;}
.y40_c00271{bottom:359.680000pt;}
.y43_c00271{bottom:360.320000pt;}
.y42_c00271{bottom:360.960000pt;}
.y3c_c00271{bottom:395.520000pt;}
.y3e_c00271{bottom:396.160000pt;}
.y3f_c00271{bottom:397.440000pt;}
.y3b_c00271{bottom:398.080000pt;}
.y3d_c00271{bottom:399.360000pt;}
.y2c_c00271{bottom:436.480000pt;}
.y2d_c00271{bottom:437.120000pt;}
.y2b_c00271{bottom:438.400000pt;}
.y29_c00271{bottom:482.560000pt;}
.y3a_c00271{bottom:483.840000pt;}
.y28_c00271{bottom:484.480000pt;}
.y2a_c00271{bottom:485.760000pt;}
.y26_c00271{bottom:522.240000pt;}
.y27_c00271{bottom:524.160000pt;}
.y23_c00271{bottom:549.760000pt;}
.y22_c00271{bottom:550.400000pt;}
.y39_c00271{bottom:551.040000pt;}
.y38_c00271{bottom:551.680000pt;}
.y25_c00271{bottom:552.320000pt;}
.y24_c00271{bottom:552.960000pt;}
.y20_c00271{bottom:588.160000pt;}
.y36_c00271{bottom:588.800000pt;}
.y1f_c00271{bottom:589.440000pt;}
.y37_c00271{bottom:590.720000pt;}
.y21_c00271{bottom:591.360000pt;}
.y1e_c00271{bottom:626.560000pt;}
.y35_c00271{bottom:627.200000pt;}
.y1d_c00271{bottom:627.840000pt;}
.y1c_c00271{bottom:664.320000pt;}
.y34_c00271{bottom:664.960000pt;}
.y1b_c00271{bottom:665.600000pt;}
.y19_c00271{bottom:701.440000pt;}
.y15_c00271{bottom:704.000000pt;}
.y17_c00271{bottom:704.640000pt;}
.y1a_c00271{bottom:705.280000pt;}
.y16_c00271{bottom:705.920000pt;}
.y18_c00271{bottom:706.560000pt;}
.y14_c00271{bottom:741.120000pt;}
.y13_c00271{bottom:741.760000pt;}
.y11_c00271{bottom:779.520000pt;}
.yf_c00271{bottom:780.160000pt;}
.y32_c00271{bottom:780.800000pt;}
.y33_c00271{bottom:781.440000pt;}
.y12_c00271{bottom:782.080000pt;}
.y10_c00271{bottom:782.720000pt;}
.yd_c00271{bottom:817.920000pt;}
.y31_c00271{bottom:818.560000pt;}
.yc_c00271{bottom:819.200000pt;}
.ye_c00271{bottom:821.760000pt;}
.ya_c00271{bottom:856.320000pt;}
.y8_c00271{bottom:856.960000pt;}
.y30_c00271{bottom:858.240000pt;}
.yb_c00271{bottom:858.880000pt;}
.y9_c00271{bottom:859.520000pt;}
.y5_c00271{bottom:894.720000pt;}
.y4_c00271{bottom:895.360000pt;}
.y7_c00271{bottom:897.920000pt;}
.y6_c00271{bottom:898.560000pt;}
.y2_c00271{bottom:933.760000pt;}
.y1_c00271{bottom:934.400000pt;}
.y2f_c00271{bottom:935.040000pt;}
.y3_c00271{bottom:936.960000pt;}
.y2e_c00271{bottom:986.240000pt;}
.h12_c00271{height:20.733750pt;}
.h7_c00271{height:29.948750pt;}
.h8_c00271{height:32.252500pt;}
.hb_c00271{height:36.860000pt;}
.h4_c00271{height:39.163750pt;}
.h5_c00271{height:41.467500pt;}
.h9_c00271{height:43.771250pt;}
.h10_c00271{height:46.075000pt;}
.hf_c00271{height:48.378750pt;}
.h11_c00271{height:48.635000pt;}
.hd_c00271{height:50.682500pt;}
.h2_c00271{height:52.986250pt;}
.h13_c00271{height:53.498750pt;}
.h6_c00271{height:55.290000pt;}
.he_c00271{height:57.593750pt;}
.ha_c00271{height:59.897500pt;}
.h3_c00271{height:62.201250pt;}
.hc_c00271{height:66.808750pt;}
.h0_c00271{height:1029.760000pt;}
.h1_c00271{height:1030.000000pt;}
.w1_c00271{width:696.666667pt;}
.w0_c00271{width:696.960000pt;}
.x0_c00271{left:0.000000pt;}
.x1_c00271{left:72.320000pt;}
.x29_c00271{left:73.600000pt;}
.x35_c00271{left:74.880000pt;}
.x1e_c00271{left:117.120000pt;}
.x2f_c00271{left:136.320000pt;}
.x2_c00271{left:137.600000pt;}
.x10_c00271{left:175.360000pt;}
.xb_c00271{left:176.640000pt;}
.x30_c00271{left:184.320000pt;}
.x1a_c00271{left:194.560000pt;}
.x3_c00271{left:213.760000pt;}
.x15_c00271{left:215.040000pt;}
.x11_c00271{left:222.720000pt;}
.x1c_c00271{left:231.680000pt;}
.x27_c00271{left:232.960000pt;}
.x6_c00271{left:234.240000pt;}
.x14_c00271{left:242.560000pt;}
.x1b_c00271{left:243.840000pt;}
.x16_c00271{left:252.800000pt;}
.x2b_c00271{left:261.760000pt;}
.x4_c00271{left:263.040000pt;}
.x7_c00271{left:272.000000pt;}
.xf_c00271{left:281.600000pt;}
.x17_c00271{left:290.560000pt;}
.x2a_c00271{left:301.440000pt;}
.xc_c00271{left:309.760000pt;}
.x32_c00271{left:328.960000pt;}
.xe_c00271{left:338.560000pt;}
.x2c_c00271{left:339.840000pt;}
.xd_c00271{left:359.040000pt;}
.x8_c00271{left:378.240000pt;}
.x2d_c00271{left:387.840000pt;}
.x1d_c00271{left:396.160000pt;}
.x5_c00271{left:397.440000pt;}
.x12_c00271{left:405.120000pt;}
.x18_c00271{left:415.360000pt;}
.x9_c00271{left:426.240000pt;}
.x13_c00271{left:445.440000pt;}
.x19_c00271{left:453.760000pt;}
.x33_c00271{left:463.360000pt;}
.xa_c00271{left:464.640000pt;}
.x26_c00271{left:530.560000pt;}
.x24_c00271{left:531.840000pt;}
.x28_c00271{left:540.800000pt;}
.x34_c00271{left:558.720000pt;}
.x20_c00271{left:560.640000pt;}
.x2e_c00271{left:588.800000pt;}
.x21_c00271{left:590.080000pt;}
.x25_c00271{left:618.240000pt;}
.x1f_c00271{left:626.560000pt;}
.x22_c00271{left:627.840000pt;}
.x31_c00271{left:643.840000pt;}
.x23_c00271{left:645.120000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_055cd60459d7a0fcc559fdfc.woff2')format("woff");}.ff1_c00272{font-family:ff1_c00272;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m49_c00272{transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);}
.m3f_c00272{transform:matrix(0.175550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175550,0.000000,0.000000,0.250000,0,0);}
.m48_c00272{transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);}
.m4c_c00272{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.m12_c00272{transform:matrix(0.228575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228575,0.000000,0.000000,0.250000,0,0);}
.m30_c00272{transform:matrix(0.237900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237900,0.000000,0.000000,0.250000,0,0);}
.m33_c00272{transform:matrix(0.240800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240800,0.000000,0.000000,0.250000,0,0);}
.m41_c00272{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m4d_c00272{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m32_c00272{transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);}
.me_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);}
.m44_c00272{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m20_c00272{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);}
.m3e_c00272{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m13_c00272{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);}
.m2e_c00272{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00272{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mc_c00272{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.ma_c00272{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00272{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m7_c00272{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00272{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m29_c00272{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m18_c00272{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00272{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m2_c00272{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00272{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m38_c00272{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m36_c00272{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.md_c00272{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m4_c00272{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m28_c00272{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m43_c00272{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00272{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m8_c00272{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m6_c00272{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00272{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m19_c00272{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mb_c00272{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m9_c00272{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m27_c00272{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m5_c00272{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1_c00272{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00272{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m26_c00272{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m3_c00272{transform:matrix(0.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);}
.m22_c00272{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.mf_c00272{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m15_c00272{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00272{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);}
.m0_c00272{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00272{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m35_c00272{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);}
.m45_c00272{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m24_c00272{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m23_c00272{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_c00272{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);}
.m3a_c00272{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);}
.m4a_c00272{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);}
.m14_c00272{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00272{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m25_c00272{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00272{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m10_c00272{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00272{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);}
.m40_c00272{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m31_c00272{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00272{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00272{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);}
.m37_c00272{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m21_c00272{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);}
.m4e_c00272{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);}
.m11_c00272{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m34_c00272{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);}
.m39_c00272{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m17_c00272{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m47_c00272{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m46_c00272{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m42_c00272{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);}
.m4f_c00272{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.v0_c00272{vertical-align:0.000000px;}
.v1_c00272{vertical-align:14.400000px;}
.ls0_c00272{letter-spacing:0.000000px;}
.sc__c00272{text-shadow:none;}
.sc0_c00272{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00272{-webkit-text-stroke:0px transparent;}
.sc0_c00272{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00272{word-spacing:-4.733520px;}
.ws2_c00272{word-spacing:0.000000px;}
.ws1_c00272{word-spacing:15.811096px;}
.fc0_c00272{color:transparent;}
.fsb_c00272{font-size:37.440000px;}
.fsc_c00272{font-size:40.320000px;}
.fsa_c00272{font-size:43.200000px;}
.fs8_c00272{font-size:48.960000px;}
.fs4_c00272{font-size:51.840000px;}
.fs1_c00272{font-size:54.720000px;}
.fsd_c00272{font-size:57.600000px;}
.fs0_c00272{font-size:60.480000px;}
.fs3_c00272{font-size:63.360000px;}
.fs7_c00272{font-size:66.240000px;}
.fs6_c00272{font-size:69.120000px;}
.fse_c00272{font-size:72.000000px;}
.fs5_c00272{font-size:74.880000px;}
.fs2_c00272{font-size:77.760000px;}
.fs9_c00272{font-size:106.560000px;}
.y0_c00272{bottom:0.000000px;}
.y4c_c00272{bottom:59.040000px;}
.y4d_c00272{bottom:59.760000px;}
.y7a_c00272{bottom:60.480000px;}
.y4b_c00272{bottom:61.200000px;}
.y7b_c00272{bottom:62.640000px;}
.y49_c00272{bottom:101.520000px;}
.y4a_c00272{bottom:102.960000px;}
.y48_c00272{bottom:134.640000px;}
.y47_c00272{bottom:136.080000px;}
.y46_c00272{bottom:136.800000px;}
.y79_c00272{bottom:137.520000px;}
.y78_c00272{bottom:138.960000px;}
.y45_c00272{bottom:177.120000px;}
.y44_c00272{bottom:178.560000px;}
.y43_c00272{bottom:180.000000px;}
.y77_c00272{bottom:180.720000px;}
.y42_c00272{bottom:218.880000px;}
.y41_c00272{bottom:222.480000px;}
.y74_c00272{bottom:223.200000px;}
.y75_c00272{bottom:223.920000px;}
.y76_c00272{bottom:225.360000px;}
.y40_c00272{bottom:262.080000px;}
.y3f_c00272{bottom:265.680000px;}
.y72_c00272{bottom:266.400000px;}
.y71_c00272{bottom:267.840000px;}
.y73_c00272{bottom:268.560000px;}
.y3e_c00272{bottom:305.280000px;}
.y3d_c00272{bottom:308.160000px;}
.y70_c00272{bottom:308.880000px;}
.y6e_c00272{bottom:309.600000px;}
.y6d_c00272{bottom:311.040000px;}
.y6f_c00272{bottom:311.760000px;}
.y3c_c00272{bottom:348.480000px;}
.y3b_c00272{bottom:352.080000px;}
.y6c_c00272{bottom:352.800000px;}
.y6b_c00272{bottom:354.960000px;}
.y3a_c00272{bottom:391.680000px;}
.y39_c00272{bottom:394.560000px;}
.y68_c00272{bottom:395.280000px;}
.y6a_c00272{bottom:396.720000px;}
.y69_c00272{bottom:397.440000px;}
.y36_c00272{bottom:434.880000px;}
.y37_c00272{bottom:435.600000px;}
.y66_c00272{bottom:437.040000px;}
.y35_c00272{bottom:437.760000px;}
.y38_c00272{bottom:439.200000px;}
.y65_c00272{bottom:439.920000px;}
.y67_c00272{bottom:440.640000px;}
.y34_c00272{bottom:477.360000px;}
.y33_c00272{bottom:480.240000px;}
.y4e_c00272{bottom:480.960000px;}
.y64_c00272{bottom:483.120000px;}
.y32_c00272{bottom:521.280000px;}
.y30_c00272{bottom:523.440000px;}
.y63_c00272{bottom:524.160000px;}
.y31_c00272{bottom:524.880000px;}
.y2f_c00272{bottom:564.480000px;}
.y2e_c00272{bottom:566.640000px;}
.y62_c00272{bottom:567.360000px;}
.y2d_c00272{bottom:606.960000px;}
.y2b_c00272{bottom:609.120000px;}
.y5f_c00272{bottom:609.840000px;}
.y2c_c00272{bottom:610.560000px;}
.y61_c00272{bottom:611.280000px;}
.y60_c00272{bottom:612.720000px;}
.y28_c00272{bottom:650.160000px;}
.y2a_c00272{bottom:651.600000px;}
.y29_c00272{bottom:652.320000px;}
.y27_c00272{bottom:653.040000px;}
.y5d_c00272{bottom:653.760000px;}
.y5e_c00272{bottom:654.480000px;}
.y21_c00272{bottom:694.080000px;}
.y26_c00272{bottom:694.800000px;}
.y20_c00272{bottom:695.520000px;}
.y23_c00272{bottom:696.240000px;}
.y22_c00272{bottom:696.960000px;}
.y24_c00272{bottom:697.680000px;}
.y25_c00272{bottom:698.400000px;}
.y1f_c00272{bottom:737.280000px;}
.y1d_c00272{bottom:738.000000px;}
.y1b_c00272{bottom:738.720000px;}
.y5b_c00272{bottom:739.440000px;}
.y5c_c00272{bottom:740.160000px;}
.y1e_c00272{bottom:740.880000px;}
.y1c_c00272{bottom:741.600000px;}
.y1a_c00272{bottom:780.480000px;}
.y5a_c00272{bottom:781.920000px;}
.y59_c00272{bottom:782.640000px;}
.y18_c00272{bottom:783.360000px;}
.y19_c00272{bottom:784.800000px;}
.y14_c00272{bottom:823.680000px;}
.y13_c00272{bottom:824.400000px;}
.y16_c00272{bottom:825.840000px;}
.y15_c00272{bottom:827.280000px;}
.y17_c00272{bottom:828.000000px;}
.y12_c00272{bottom:859.680000px;}
.yf_c00272{bottom:866.880000px;}
.y58_c00272{bottom:868.320000px;}
.ye_c00272{bottom:869.040000px;}
.y11_c00272{bottom:870.480000px;}
.y10_c00272{bottom:871.200000px;}
.yc_c00272{bottom:909.360000px;}
.yd_c00272{bottom:910.080000px;}
.yb_c00272{bottom:910.800000px;}
.y57_c00272{bottom:911.520000px;}
.ya_c00272{bottom:952.560000px;}
.y54_c00272{bottom:953.280000px;}
.y8_c00272{bottom:954.000000px;}
.y55_c00272{bottom:955.440000px;}
.y56_c00272{bottom:956.160000px;}
.y9_c00272{bottom:957.600000px;}
.y7_c00272{bottom:995.040000px;}
.y6_c00272{bottom:995.760000px;}
.y52_c00272{bottom:996.480000px;}
.y4_c00272{bottom:997.200000px;}
.y53_c00272{bottom:997.920000px;}
.y5_c00272{bottom:1000.080000px;}
.y3_c00272{bottom:1038.960000px;}
.y50_c00272{bottom:1039.680000px;}
.y51_c00272{bottom:1041.120000px;}
.y1_c00272{bottom:1041.840000px;}
.y2_c00272{bottom:1042.560000px;}
.y4f_c00272{bottom:1077.840000px;}
.hc_c00272{height:33.692344px;}
.he_c00272{height:36.284062px;}
.hb_c00272{height:38.875781px;}
.h9_c00272{height:44.059219px;}
.h5_c00272{height:46.650937px;}
.h2_c00272{height:49.242656px;}
.hf_c00272{height:51.834375px;}
.h1_c00272{height:54.426094px;}
.h4_c00272{height:57.017812px;}
.h8_c00272{height:59.609531px;}
.hd_c00272{height:61.050938px;}
.h7_c00272{height:62.201250px;}
.h10_c00272{height:64.792969px;}
.h6_c00272{height:67.384687px;}
.h3_c00272{height:69.976406px;}
.ha_c00272{height:95.893594px;}
.h0_c00272{height:1152.000000px;}
.w0_c00272{width:774.720000px;}
.w1_c00272{width:774.750000px;}
.x0_c00272{left:0.000000px;}
.x1_c00272{left:72.720000px;}
.x19_c00272{left:74.160000px;}
.x1c_c00272{left:75.600000px;}
.x1e_c00272{left:77.760000px;}
.x2_c00272{left:144.720000px;}
.x6_c00272{left:146.160000px;}
.x12_c00272{left:187.920000px;}
.x3_c00272{left:189.360000px;}
.x15_c00272{left:200.160000px;}
.x7_c00272{left:221.040000px;}
.x8_c00272{left:231.120000px;}
.x13_c00272{left:232.560000px;}
.x16_c00272{left:244.080000px;}
.xd_c00272{left:265.680000px;}
.x9_c00272{left:275.760000px;}
.x14_c00272{left:287.280000px;}
.x4_c00272{left:298.080000px;}
.xe_c00272{left:308.160000px;}
.xa_c00272{left:330.480000px;}
.x1f_c00272{left:363.600000px;}
.x1a_c00272{left:383.040000px;}
.x17_c00272{left:384.480000px;}
.xf_c00272{left:406.080000px;}
.x5_c00272{left:416.880000px;}
.xb_c00272{left:426.240000px;}
.x1b_c00272{left:427.680000px;}
.x10_c00272{left:447.840000px;}
.xc_c00272{left:481.680000px;}
.x11_c00272{left:491.760000px;}
.x1d_c00272{left:525.600000px;}
.x18_c00272{left:534.960000px;}
.x2b_c00272{left:567.360000px;}
.x20_c00272{left:568.800000px;}
.x22_c00272{left:589.680000px;}
.x28_c00272{left:600.480000px;}
.x25_c00272{left:622.080000px;}
.x2a_c00272{left:632.880000px;}
.x26_c00272{left:654.480000px;}
.x29_c00272{left:665.280000px;}
.x27_c00272{left:686.880000px;}
.x21_c00272{left:688.320000px;}
.x2c_c00272{left:695.520000px;}
.x23_c00272{left:696.960000px;}
.x24_c00272{left:717.120000px;}
@media print{
.v0_c00272{vertical-align:0.000000pt;}
.v1_c00272{vertical-align:12.800000pt;}
.ls0_c00272{letter-spacing:0.000000pt;}
.ws0_c00272{word-spacing:-4.207573pt;}
.ws2_c00272{word-spacing:0.000000pt;}
.ws1_c00272{word-spacing:14.054308pt;}
.fsb_c00272{font-size:33.280000pt;}
.fsc_c00272{font-size:35.840000pt;}
.fsa_c00272{font-size:38.400000pt;}
.fs8_c00272{font-size:43.520000pt;}
.fs4_c00272{font-size:46.080000pt;}
.fs1_c00272{font-size:48.640000pt;}
.fsd_c00272{font-size:51.200000pt;}
.fs0_c00272{font-size:53.760000pt;}
.fs3_c00272{font-size:56.320000pt;}
.fs7_c00272{font-size:58.880000pt;}
.fs6_c00272{font-size:61.440000pt;}
.fse_c00272{font-size:64.000000pt;}
.fs5_c00272{font-size:66.560000pt;}
.fs2_c00272{font-size:69.120000pt;}
.fs9_c00272{font-size:94.720000pt;}
.y0_c00272{bottom:0.000000pt;}
.y4c_c00272{bottom:52.480000pt;}
.y4d_c00272{bottom:53.120000pt;}
.y7a_c00272{bottom:53.760000pt;}
.y4b_c00272{bottom:54.400000pt;}
.y7b_c00272{bottom:55.680000pt;}
.y49_c00272{bottom:90.240000pt;}
.y4a_c00272{bottom:91.520000pt;}
.y48_c00272{bottom:119.680000pt;}
.y47_c00272{bottom:120.960000pt;}
.y46_c00272{bottom:121.600000pt;}
.y79_c00272{bottom:122.240000pt;}
.y78_c00272{bottom:123.520000pt;}
.y45_c00272{bottom:157.440000pt;}
.y44_c00272{bottom:158.720000pt;}
.y43_c00272{bottom:160.000000pt;}
.y77_c00272{bottom:160.640000pt;}
.y42_c00272{bottom:194.560000pt;}
.y41_c00272{bottom:197.760000pt;}
.y74_c00272{bottom:198.400000pt;}
.y75_c00272{bottom:199.040000pt;}
.y76_c00272{bottom:200.320000pt;}
.y40_c00272{bottom:232.960000pt;}
.y3f_c00272{bottom:236.160000pt;}
.y72_c00272{bottom:236.800000pt;}
.y71_c00272{bottom:238.080000pt;}
.y73_c00272{bottom:238.720000pt;}
.y3e_c00272{bottom:271.360000pt;}
.y3d_c00272{bottom:273.920000pt;}
.y70_c00272{bottom:274.560000pt;}
.y6e_c00272{bottom:275.200000pt;}
.y6d_c00272{bottom:276.480000pt;}
.y6f_c00272{bottom:277.120000pt;}
.y3c_c00272{bottom:309.760000pt;}
.y3b_c00272{bottom:312.960000pt;}
.y6c_c00272{bottom:313.600000pt;}
.y6b_c00272{bottom:315.520000pt;}
.y3a_c00272{bottom:348.160000pt;}
.y39_c00272{bottom:350.720000pt;}
.y68_c00272{bottom:351.360000pt;}
.y6a_c00272{bottom:352.640000pt;}
.y69_c00272{bottom:353.280000pt;}
.y36_c00272{bottom:386.560000pt;}
.y37_c00272{bottom:387.200000pt;}
.y66_c00272{bottom:388.480000pt;}
.y35_c00272{bottom:389.120000pt;}
.y38_c00272{bottom:390.400000pt;}
.y65_c00272{bottom:391.040000pt;}
.y67_c00272{bottom:391.680000pt;}
.y34_c00272{bottom:424.320000pt;}
.y33_c00272{bottom:426.880000pt;}
.y4e_c00272{bottom:427.520000pt;}
.y64_c00272{bottom:429.440000pt;}
.y32_c00272{bottom:463.360000pt;}
.y30_c00272{bottom:465.280000pt;}
.y63_c00272{bottom:465.920000pt;}
.y31_c00272{bottom:466.560000pt;}
.y2f_c00272{bottom:501.760000pt;}
.y2e_c00272{bottom:503.680000pt;}
.y62_c00272{bottom:504.320000pt;}
.y2d_c00272{bottom:539.520000pt;}
.y2b_c00272{bottom:541.440000pt;}
.y5f_c00272{bottom:542.080000pt;}
.y2c_c00272{bottom:542.720000pt;}
.y61_c00272{bottom:543.360000pt;}
.y60_c00272{bottom:544.640000pt;}
.y28_c00272{bottom:577.920000pt;}
.y2a_c00272{bottom:579.200000pt;}
.y29_c00272{bottom:579.840000pt;}
.y27_c00272{bottom:580.480000pt;}
.y5d_c00272{bottom:581.120000pt;}
.y5e_c00272{bottom:581.760000pt;}
.y21_c00272{bottom:616.960000pt;}
.y26_c00272{bottom:617.600000pt;}
.y20_c00272{bottom:618.240000pt;}
.y23_c00272{bottom:618.880000pt;}
.y22_c00272{bottom:619.520000pt;}
.y24_c00272{bottom:620.160000pt;}
.y25_c00272{bottom:620.800000pt;}
.y1f_c00272{bottom:655.360000pt;}
.y1d_c00272{bottom:656.000000pt;}
.y1b_c00272{bottom:656.640000pt;}
.y5b_c00272{bottom:657.280000pt;}
.y5c_c00272{bottom:657.920000pt;}
.y1e_c00272{bottom:658.560000pt;}
.y1c_c00272{bottom:659.200000pt;}
.y1a_c00272{bottom:693.760000pt;}
.y5a_c00272{bottom:695.040000pt;}
.y59_c00272{bottom:695.680000pt;}
.y18_c00272{bottom:696.320000pt;}
.y19_c00272{bottom:697.600000pt;}
.y14_c00272{bottom:732.160000pt;}
.y13_c00272{bottom:732.800000pt;}
.y16_c00272{bottom:734.080000pt;}
.y15_c00272{bottom:735.360000pt;}
.y17_c00272{bottom:736.000000pt;}
.y12_c00272{bottom:764.160000pt;}
.yf_c00272{bottom:770.560000pt;}
.y58_c00272{bottom:771.840000pt;}
.ye_c00272{bottom:772.480000pt;}
.y11_c00272{bottom:773.760000pt;}
.y10_c00272{bottom:774.400000pt;}
.yc_c00272{bottom:808.320000pt;}
.yd_c00272{bottom:808.960000pt;}
.yb_c00272{bottom:809.600000pt;}
.y57_c00272{bottom:810.240000pt;}
.ya_c00272{bottom:846.720000pt;}
.y54_c00272{bottom:847.360000pt;}
.y8_c00272{bottom:848.000000pt;}
.y55_c00272{bottom:849.280000pt;}
.y56_c00272{bottom:849.920000pt;}
.y9_c00272{bottom:851.200000pt;}
.y7_c00272{bottom:884.480000pt;}
.y6_c00272{bottom:885.120000pt;}
.y52_c00272{bottom:885.760000pt;}
.y4_c00272{bottom:886.400000pt;}
.y53_c00272{bottom:887.040000pt;}
.y5_c00272{bottom:888.960000pt;}
.y3_c00272{bottom:923.520000pt;}
.y50_c00272{bottom:924.160000pt;}
.y51_c00272{bottom:925.440000pt;}
.y1_c00272{bottom:926.080000pt;}
.y2_c00272{bottom:926.720000pt;}
.y4f_c00272{bottom:958.080000pt;}
.hc_c00272{height:29.948750pt;}
.he_c00272{height:32.252500pt;}
.hb_c00272{height:34.556250pt;}
.h9_c00272{height:39.163750pt;}
.h5_c00272{height:41.467500pt;}
.h2_c00272{height:43.771250pt;}
.hf_c00272{height:46.075000pt;}
.h1_c00272{height:48.378750pt;}
.h4_c00272{height:50.682500pt;}
.h8_c00272{height:52.986250pt;}
.hd_c00272{height:54.267500pt;}
.h7_c00272{height:55.290000pt;}
.h10_c00272{height:57.593750pt;}
.h6_c00272{height:59.897500pt;}
.h3_c00272{height:62.201250pt;}
.ha_c00272{height:85.238750pt;}
.h0_c00272{height:1024.000000pt;}
.w0_c00272{width:688.640000pt;}
.w1_c00272{width:688.666667pt;}
.x0_c00272{left:0.000000pt;}
.x1_c00272{left:64.640000pt;}
.x19_c00272{left:65.920000pt;}
.x1c_c00272{left:67.200000pt;}
.x1e_c00272{left:69.120000pt;}
.x2_c00272{left:128.640000pt;}
.x6_c00272{left:129.920000pt;}
.x12_c00272{left:167.040000pt;}
.x3_c00272{left:168.320000pt;}
.x15_c00272{left:177.920000pt;}
.x7_c00272{left:196.480000pt;}
.x8_c00272{left:205.440000pt;}
.x13_c00272{left:206.720000pt;}
.x16_c00272{left:216.960000pt;}
.xd_c00272{left:236.160000pt;}
.x9_c00272{left:245.120000pt;}
.x14_c00272{left:255.360000pt;}
.x4_c00272{left:264.960000pt;}
.xe_c00272{left:273.920000pt;}
.xa_c00272{left:293.760000pt;}
.x1f_c00272{left:323.200000pt;}
.x1a_c00272{left:340.480000pt;}
.x17_c00272{left:341.760000pt;}
.xf_c00272{left:360.960000pt;}
.x5_c00272{left:370.560000pt;}
.xb_c00272{left:378.880000pt;}
.x1b_c00272{left:380.160000pt;}
.x10_c00272{left:398.080000pt;}
.xc_c00272{left:428.160000pt;}
.x11_c00272{left:437.120000pt;}
.x1d_c00272{left:467.200000pt;}
.x18_c00272{left:475.520000pt;}
.x2b_c00272{left:504.320000pt;}
.x20_c00272{left:505.600000pt;}
.x22_c00272{left:524.160000pt;}
.x28_c00272{left:533.760000pt;}
.x25_c00272{left:552.960000pt;}
.x2a_c00272{left:562.560000pt;}
.x26_c00272{left:581.760000pt;}
.x29_c00272{left:591.360000pt;}
.x27_c00272{left:610.560000pt;}
.x21_c00272{left:611.840000pt;}
.x2c_c00272{left:618.240000pt;}
.x23_c00272{left:619.520000pt;}
.x24_c00272{left:637.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4544360cbb8e19f7577b7d5f.woff2')format("woff");}.ff1_c00273{font-family:ff1_c00273;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4d_c00273{transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);}
.m4e_c00273{transform:matrix(0.212700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212700,0.000000,0.000000,0.250000,0,0);}
.m3c_c00273{transform:matrix(0.220925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220925,0.000000,0.000000,0.250000,0,0);}
.m20_c00273{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);}
.m1_c00273{transform:matrix(0.225625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225625,0.000000,0.000000,0.250000,0,0);}
.m0_c00273{transform:matrix(0.233800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233800,0.000000,0.000000,0.250000,0,0);}
.md_c00273{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m6_c00273{transform:matrix(0.241025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241025,0.000000,0.000000,0.250000,0,0);}
.m3e_c00273{transform:matrix(0.243050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243050,0.000000,0.000000,0.250000,0,0);}
.m38_c00273{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);}
.m36_c00273{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mf_c00273{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00273{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);}
.m46_c00273{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m24_c00273{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m33_c00273{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00273{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);}
.m4a_c00273{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m55_c00273{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);}
.m3b_c00273{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m42_c00273{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mb_c00273{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m18_c00273{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);}
.m4f_c00273{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mc_c00273{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m44_c00273{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m3_c00273{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00273{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m29_c00273{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m26_c00273{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m31_c00273{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.me_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);}
.m15_c00273{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m51_c00273{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m30_c00273{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m9_c00273{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m47_c00273{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m53_c00273{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m50_c00273{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00273{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m25_c00273{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00273{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00273{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m32_c00273{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00273{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m5_c00273{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m17_c00273{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);}
.m8_c00273{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_c00273{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00273{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m16_c00273{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);}
.m45_c00273{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m13_c00273{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00273{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);}
.m37_c00273{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m11_c00273{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);}
.m35_c00273{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);}
.m48_c00273{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);}
.m41_c00273{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m10_c00273{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m39_c00273{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00273{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);}
.m4b_c00273{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);}
.m2e_c00273{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m43_c00273{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00273{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00273{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m34_c00273{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00273{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.ma_c00273{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00273{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);}
.m1e_c00273{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m19_c00273{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);}
.m7_c00273{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);}
.m27_c00273{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m56_c00273{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m23_c00273{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m49_c00273{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m12_c00273{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m52_c00273{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m2_c00273{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m40_c00273{transform:matrix(0.697500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697500,0.000000,0.000000,0.250000,0,0);}
.m21_c00273{transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);}
.m28_c00273{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.m22_c00273{transform:matrix(0.785000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.785000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.785000,0.000000,0.000000,0.250000,0,0);}
.m54_c00273{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.m4_c00273{transform:matrix(0.847500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.847500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.847500,0.000000,0.000000,0.250000,0,0);}
.v0_c00273{vertical-align:0.000000px;}
.ls0_c00273{letter-spacing:0.000000px;}
.sc__c00273{text-shadow:none;}
.sc0_c00273{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00273{-webkit-text-stroke:0px transparent;}
.sc0_c00273{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00273{word-spacing:0.000000px;}
.ws1_c00273{word-spacing:7.094995px;}
.ws0_c00273{word-spacing:9.475200px;}
.fc0_c00273{color:transparent;}
.fs2_c00273{font-size:23.040000px;}
.fs4_c00273{font-size:28.800000px;}
.fs12_c00273{font-size:31.680000px;}
.fs3_c00273{font-size:34.560000px;}
.fs1_c00273{font-size:37.440000px;}
.fse_c00273{font-size:40.320000px;}
.fs11_c00273{font-size:43.200000px;}
.fs10_c00273{font-size:46.080000px;}
.fsa_c00273{font-size:48.960000px;}
.fs7_c00273{font-size:51.840000px;}
.fsd_c00273{font-size:54.720000px;}
.fsc_c00273{font-size:57.600000px;}
.fs5_c00273{font-size:60.480000px;}
.fsb_c00273{font-size:63.360000px;}
.fsf_c00273{font-size:66.240000px;}
.fs8_c00273{font-size:69.120000px;}
.fs0_c00273{font-size:72.000000px;}
.fs9_c00273{font-size:74.880000px;}
.fs6_c00273{font-size:77.760000px;}
.y0_c00273{bottom:0.000000px;}
.y4c_c00273{bottom:77.760000px;}
.y4e_c00273{bottom:79.200000px;}
.y4d_c00273{bottom:80.640000px;}
.y4b_c00273{bottom:81.360000px;}
.y62_c00273{bottom:83.520000px;}
.y61_c00273{bottom:84.240000px;}
.y4a_c00273{bottom:120.960000px;}
.y49_c00273{bottom:124.560000px;}
.y48_c00273{bottom:125.280000px;}
.y47_c00273{bottom:126.000000px;}
.y60_c00273{bottom:126.720000px;}
.y5f_c00273{bottom:127.440000px;}
.y46_c00273{bottom:164.160000px;}
.y44_c00273{bottom:167.760000px;}
.y45_c00273{bottom:168.480000px;}
.y5e_c00273{bottom:169.920000px;}
.y43_c00273{bottom:207.360000px;}
.y42_c00273{bottom:210.960000px;}
.y41_c00273{bottom:211.680000px;}
.y5d_c00273{bottom:213.120000px;}
.y40_c00273{bottom:250.560000px;}
.y5b_c00273{bottom:254.160000px;}
.y3f_c00273{bottom:254.880000px;}
.y5c_c00273{bottom:255.600000px;}
.y3b_c00273{bottom:293.760000px;}
.y3e_c00273{bottom:295.920000px;}
.y3d_c00273{bottom:296.640000px;}
.y3c_c00273{bottom:298.080000px;}
.y3a_c00273{bottom:298.800000px;}
.y5a_c00273{bottom:300.240000px;}
.y38_c00273{bottom:337.680000px;}
.y37_c00273{bottom:340.560000px;}
.y59_c00273{bottom:341.280000px;}
.y39_c00273{bottom:344.160000px;}
.y36_c00273{bottom:380.160000px;}
.y35_c00273{bottom:383.760000px;}
.y57_c00273{bottom:385.200000px;}
.y58_c00273{bottom:385.920000px;}
.y34_c00273{bottom:423.360000px;}
.y33_c00273{bottom:424.080000px;}
.y32_c00273{bottom:426.240000px;}
.y54_c00273{bottom:426.960000px;}
.y55_c00273{bottom:427.680000px;}
.y56_c00273{bottom:428.400000px;}
.y30_c00273{bottom:520.560000px;}
.y31_c00273{bottom:521.280000px;}
.y53_c00273{bottom:522.720000px;}
.y2f_c00273{bottom:523.440000px;}
.y2e_c00273{bottom:563.760000px;}
.y52_c00273{bottom:565.200000px;}
.y2d_c00273{bottom:565.920000px;}
.y50_c00273{bottom:566.640000px;}
.y51_c00273{bottom:568.080000px;}
.y2a_c00273{bottom:607.680000px;}
.y2c_c00273{bottom:609.120000px;}
.y29_c00273{bottom:609.840000px;}
.y4f_c00273{bottom:610.560000px;}
.y2b_c00273{bottom:611.280000px;}
.y28_c00273{bottom:650.880000px;}
.y25_c00273{bottom:653.040000px;}
.y27_c00273{bottom:654.480000px;}
.y26_c00273{bottom:655.200000px;}
.y24_c00273{bottom:695.520000px;}
.y22_c00273{bottom:696.240000px;}
.y23_c00273{bottom:697.680000px;}
.y1e_c00273{bottom:792.720000px;}
.y21_c00273{bottom:793.440000px;}
.y1f_c00273{bottom:794.160000px;}
.y20_c00273{bottom:795.600000px;}
.y19_c00273{bottom:823.680000px;}
.y1c_c00273{bottom:825.120000px;}
.y18_c00273{bottom:825.840000px;}
.y1a_c00273{bottom:826.560000px;}
.y1b_c00273{bottom:827.280000px;}
.y1d_c00273{bottom:828.000000px;}
.y16_c00273{bottom:866.880000px;}
.y17_c00273{bottom:868.320000px;}
.y15_c00273{bottom:869.040000px;}
.y12_c00273{bottom:910.080000px;}
.y11_c00273{bottom:911.520000px;}
.y14_c00273{bottom:912.960000px;}
.y13_c00273{bottom:913.680000px;}
.ye_c00273{bottom:954.720000px;}
.yf_c00273{bottom:956.880000px;}
.yd_c00273{bottom:957.600000px;}
.yb_c00273{bottom:1006.560000px;}
.yc_c00273{bottom:1007.280000px;}
.y10_c00273{bottom:1008.000000px;}
.y9_c00273{bottom:1049.040000px;}
.y7_c00273{bottom:1049.760000px;}
.ya_c00273{bottom:1050.480000px;}
.y6_c00273{bottom:1051.200000px;}
.y8_c00273{bottom:1054.080000px;}
.y5_c00273{bottom:1108.800000px;}
.y4_c00273{bottom:1109.520000px;}
.y1_c00273{bottom:1111.680000px;}
.y2_c00273{bottom:1118.160000px;}
.y3_c00273{bottom:1119.600000px;}
.h4_c00273{height:20.733750px;}
.h6_c00273{height:25.917187px;}
.h14_c00273{height:28.508906px;}
.h5_c00273{height:31.100625px;}
.h3_c00273{height:33.692344px;}
.h10_c00273{height:36.284062px;}
.h13_c00273{height:38.875781px;}
.h12_c00273{height:41.467500px;}
.hc_c00273{height:44.059219px;}
.h9_c00273{height:46.650937px;}
.hf_c00273{height:49.242656px;}
.he_c00273{height:51.834375px;}
.h7_c00273{height:54.426094px;}
.hd_c00273{height:57.017812px;}
.h11_c00273{height:59.609531px;}
.ha_c00273{height:62.201250px;}
.h2_c00273{height:64.792969px;}
.hb_c00273{height:67.384687px;}
.h8_c00273{height:69.976406px;}
.h0_c00273{height:1157.760000px;}
.h1_c00273{height:1158.000000px;}
.w1_c00273{width:783.000000px;}
.w0_c00273{width:783.360000px;}
.x0_c00273{left:0.000000px;}
.x6_c00273{left:74.160000px;}
.x25_c00273{left:75.600000px;}
.x2c_c00273{left:77.040000px;}
.x10_c00273{left:125.280000px;}
.x26_c00273{left:146.880000px;}
.x7_c00273{left:148.320000px;}
.x11_c00273{left:159.120000px;}
.x20_c00273{left:170.640000px;}
.x23_c00273{left:190.800000px;}
.x21_c00273{left:212.400000px;}
.x1b_c00273{left:222.480000px;}
.x14_c00273{left:233.280000px;}
.x8_c00273{left:245.520000px;}
.x12_c00273{left:254.880000px;}
.x27_c00273{left:257.040000px;}
.xf_c00273{left:266.400000px;}
.x22_c00273{left:267.840000px;}
.x15_c00273{left:277.200000px;}
.x9_c00273{left:288.000000px;}
.x24_c00273{left:298.800000px;}
.x2d_c00273{left:321.120000px;}
.x1d_c00273{left:331.200000px;}
.x16_c00273{left:332.640000px;}
.x2a_c00273{left:344.160000px;}
.x2b_c00273{left:354.240000px;}
.x2e_c00273{left:373.680000px;}
.x17_c00273{left:375.120000px;}
.x28_c00273{left:396.000000px;}
.xa_c00273{left:408.240000px;}
.x1e_c00273{left:429.120000px;}
.x29_c00273{left:439.200000px;}
.xb_c00273{left:450.720000px;}
.x1f_c00273{left:471.600000px;}
.x18_c00273{left:473.040000px;}
.x2f_c00273{left:483.120000px;}
.x19_c00273{left:515.520000px;}
.xc_c00273{left:569.520000px;}
.x1a_c00273{left:591.120000px;}
.x30_c00273{left:601.200000px;}
.x1c_c00273{left:602.640000px;}
.x13_c00273{left:624.240000px;}
.xd_c00273{left:656.640000px;}
.x1_c00273{left:698.400000px;}
.xe_c00273{left:699.840000px;}
.x2_c00273{left:716.400000px;}
.x4_c00273{left:720.000000px;}
.x5_c00273{left:734.400000px;}
.x3_c00273{left:737.280000px;}
@media print{
.v0_c00273{vertical-align:0.000000pt;}
.ls0_c00273{letter-spacing:0.000000pt;}
.ws2_c00273{word-spacing:0.000000pt;}
.ws1_c00273{word-spacing:6.306662pt;}
.ws0_c00273{word-spacing:8.422400pt;}
.fs2_c00273{font-size:20.480000pt;}
.fs4_c00273{font-size:25.600000pt;}
.fs12_c00273{font-size:28.160000pt;}
.fs3_c00273{font-size:30.720000pt;}
.fs1_c00273{font-size:33.280000pt;}
.fse_c00273{font-size:35.840000pt;}
.fs11_c00273{font-size:38.400000pt;}
.fs10_c00273{font-size:40.960000pt;}
.fsa_c00273{font-size:43.520000pt;}
.fs7_c00273{font-size:46.080000pt;}
.fsd_c00273{font-size:48.640000pt;}
.fsc_c00273{font-size:51.200000pt;}
.fs5_c00273{font-size:53.760000pt;}
.fsb_c00273{font-size:56.320000pt;}
.fsf_c00273{font-size:58.880000pt;}
.fs8_c00273{font-size:61.440000pt;}
.fs0_c00273{font-size:64.000000pt;}
.fs9_c00273{font-size:66.560000pt;}
.fs6_c00273{font-size:69.120000pt;}
.y0_c00273{bottom:0.000000pt;}
.y4c_c00273{bottom:69.120000pt;}
.y4e_c00273{bottom:70.400000pt;}
.y4d_c00273{bottom:71.680000pt;}
.y4b_c00273{bottom:72.320000pt;}
.y62_c00273{bottom:74.240000pt;}
.y61_c00273{bottom:74.880000pt;}
.y4a_c00273{bottom:107.520000pt;}
.y49_c00273{bottom:110.720000pt;}
.y48_c00273{bottom:111.360000pt;}
.y47_c00273{bottom:112.000000pt;}
.y60_c00273{bottom:112.640000pt;}
.y5f_c00273{bottom:113.280000pt;}
.y46_c00273{bottom:145.920000pt;}
.y44_c00273{bottom:149.120000pt;}
.y45_c00273{bottom:149.760000pt;}
.y5e_c00273{bottom:151.040000pt;}
.y43_c00273{bottom:184.320000pt;}
.y42_c00273{bottom:187.520000pt;}
.y41_c00273{bottom:188.160000pt;}
.y5d_c00273{bottom:189.440000pt;}
.y40_c00273{bottom:222.720000pt;}
.y5b_c00273{bottom:225.920000pt;}
.y3f_c00273{bottom:226.560000pt;}
.y5c_c00273{bottom:227.200000pt;}
.y3b_c00273{bottom:261.120000pt;}
.y3e_c00273{bottom:263.040000pt;}
.y3d_c00273{bottom:263.680000pt;}
.y3c_c00273{bottom:264.960000pt;}
.y3a_c00273{bottom:265.600000pt;}
.y5a_c00273{bottom:266.880000pt;}
.y38_c00273{bottom:300.160000pt;}
.y37_c00273{bottom:302.720000pt;}
.y59_c00273{bottom:303.360000pt;}
.y39_c00273{bottom:305.920000pt;}
.y36_c00273{bottom:337.920000pt;}
.y35_c00273{bottom:341.120000pt;}
.y57_c00273{bottom:342.400000pt;}
.y58_c00273{bottom:343.040000pt;}
.y34_c00273{bottom:376.320000pt;}
.y33_c00273{bottom:376.960000pt;}
.y32_c00273{bottom:378.880000pt;}
.y54_c00273{bottom:379.520000pt;}
.y55_c00273{bottom:380.160000pt;}
.y56_c00273{bottom:380.800000pt;}
.y30_c00273{bottom:462.720000pt;}
.y31_c00273{bottom:463.360000pt;}
.y53_c00273{bottom:464.640000pt;}
.y2f_c00273{bottom:465.280000pt;}
.y2e_c00273{bottom:501.120000pt;}
.y52_c00273{bottom:502.400000pt;}
.y2d_c00273{bottom:503.040000pt;}
.y50_c00273{bottom:503.680000pt;}
.y51_c00273{bottom:504.960000pt;}
.y2a_c00273{bottom:540.160000pt;}
.y2c_c00273{bottom:541.440000pt;}
.y29_c00273{bottom:542.080000pt;}
.y4f_c00273{bottom:542.720000pt;}
.y2b_c00273{bottom:543.360000pt;}
.y28_c00273{bottom:578.560000pt;}
.y25_c00273{bottom:580.480000pt;}
.y27_c00273{bottom:581.760000pt;}
.y26_c00273{bottom:582.400000pt;}
.y24_c00273{bottom:618.240000pt;}
.y22_c00273{bottom:618.880000pt;}
.y23_c00273{bottom:620.160000pt;}
.y1e_c00273{bottom:704.640000pt;}
.y21_c00273{bottom:705.280000pt;}
.y1f_c00273{bottom:705.920000pt;}
.y20_c00273{bottom:707.200000pt;}
.y19_c00273{bottom:732.160000pt;}
.y1c_c00273{bottom:733.440000pt;}
.y18_c00273{bottom:734.080000pt;}
.y1a_c00273{bottom:734.720000pt;}
.y1b_c00273{bottom:735.360000pt;}
.y1d_c00273{bottom:736.000000pt;}
.y16_c00273{bottom:770.560000pt;}
.y17_c00273{bottom:771.840000pt;}
.y15_c00273{bottom:772.480000pt;}
.y12_c00273{bottom:808.960000pt;}
.y11_c00273{bottom:810.240000pt;}
.y14_c00273{bottom:811.520000pt;}
.y13_c00273{bottom:812.160000pt;}
.ye_c00273{bottom:848.640000pt;}
.yf_c00273{bottom:850.560000pt;}
.yd_c00273{bottom:851.200000pt;}
.yb_c00273{bottom:894.720000pt;}
.yc_c00273{bottom:895.360000pt;}
.y10_c00273{bottom:896.000000pt;}
.y9_c00273{bottom:932.480000pt;}
.y7_c00273{bottom:933.120000pt;}
.ya_c00273{bottom:933.760000pt;}
.y6_c00273{bottom:934.400000pt;}
.y8_c00273{bottom:936.960000pt;}
.y5_c00273{bottom:985.600000pt;}
.y4_c00273{bottom:986.240000pt;}
.y1_c00273{bottom:988.160000pt;}
.y2_c00273{bottom:993.920000pt;}
.y3_c00273{bottom:995.200000pt;}
.h4_c00273{height:18.430000pt;}
.h6_c00273{height:23.037500pt;}
.h14_c00273{height:25.341250pt;}
.h5_c00273{height:27.645000pt;}
.h3_c00273{height:29.948750pt;}
.h10_c00273{height:32.252500pt;}
.h13_c00273{height:34.556250pt;}
.h12_c00273{height:36.860000pt;}
.hc_c00273{height:39.163750pt;}
.h9_c00273{height:41.467500pt;}
.hf_c00273{height:43.771250pt;}
.he_c00273{height:46.075000pt;}
.h7_c00273{height:48.378750pt;}
.hd_c00273{height:50.682500pt;}
.h11_c00273{height:52.986250pt;}
.ha_c00273{height:55.290000pt;}
.h2_c00273{height:57.593750pt;}
.hb_c00273{height:59.897500pt;}
.h8_c00273{height:62.201250pt;}
.h0_c00273{height:1029.120000pt;}
.h1_c00273{height:1029.333333pt;}
.w1_c00273{width:696.000000pt;}
.w0_c00273{width:696.320000pt;}
.x0_c00273{left:0.000000pt;}
.x6_c00273{left:65.920000pt;}
.x25_c00273{left:67.200000pt;}
.x2c_c00273{left:68.480000pt;}
.x10_c00273{left:111.360000pt;}
.x26_c00273{left:130.560000pt;}
.x7_c00273{left:131.840000pt;}
.x11_c00273{left:141.440000pt;}
.x20_c00273{left:151.680000pt;}
.x23_c00273{left:169.600000pt;}
.x21_c00273{left:188.800000pt;}
.x1b_c00273{left:197.760000pt;}
.x14_c00273{left:207.360000pt;}
.x8_c00273{left:218.240000pt;}
.x12_c00273{left:226.560000pt;}
.x27_c00273{left:228.480000pt;}
.xf_c00273{left:236.800000pt;}
.x22_c00273{left:238.080000pt;}
.x15_c00273{left:246.400000pt;}
.x9_c00273{left:256.000000pt;}
.x24_c00273{left:265.600000pt;}
.x2d_c00273{left:285.440000pt;}
.x1d_c00273{left:294.400000pt;}
.x16_c00273{left:295.680000pt;}
.x2a_c00273{left:305.920000pt;}
.x2b_c00273{left:314.880000pt;}
.x2e_c00273{left:332.160000pt;}
.x17_c00273{left:333.440000pt;}
.x28_c00273{left:352.000000pt;}
.xa_c00273{left:362.880000pt;}
.x1e_c00273{left:381.440000pt;}
.x29_c00273{left:390.400000pt;}
.xb_c00273{left:400.640000pt;}
.x1f_c00273{left:419.200000pt;}
.x18_c00273{left:420.480000pt;}
.x2f_c00273{left:429.440000pt;}
.x19_c00273{left:458.240000pt;}
.xc_c00273{left:506.240000pt;}
.x1a_c00273{left:525.440000pt;}
.x30_c00273{left:534.400000pt;}
.x1c_c00273{left:535.680000pt;}
.x13_c00273{left:554.880000pt;}
.xd_c00273{left:583.680000pt;}
.x1_c00273{left:620.800000pt;}
.xe_c00273{left:622.080000pt;}
.x2_c00273{left:636.800000pt;}
.x4_c00273{left:640.000000pt;}
.x5_c00273{left:652.800000pt;}
.x3_c00273{left:655.360000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0bcca960ed00f893b5333171.woff2')format("woff");}.ff1_c00274{font-family:ff1_c00274;line-height:1.109863;font-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_c00274{transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);}
.mb_c00274{transform:matrix(0.214550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214550,0.000000,0.000000,0.250000,0,0);}
.m49_c00274{transform:matrix(0.225400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225400,0.000000,0.000000,0.250000,0,0);}
.m4b_c00274{transform:matrix(0.240800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240800,0.000000,0.000000,0.250000,0,0);}
.m1d_c00274{transform:matrix(0.244450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244450,0.000000,0.000000,0.250000,0,0);}
.m44_c00274{transform:matrix(0.244950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244950,0.000000,0.000000,0.250000,0,0);}
.m43_c00274{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);}
.m48_c00274{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00274{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);}
.m37_c00274{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m11_c00274{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);}
.m38_c00274{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);}
.m46_c00274{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_c00274{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m9_c00274{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m16_c00274{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m5_c00274{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00274{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);}
.m2f_c00274{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00274{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mc_c00274{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m25_c00274{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00274{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m14_c00274{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m12_c00274{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00274{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m33_c00274{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00274{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m17_c00274{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m6_c00274{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m27_c00274{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m13_c00274{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m19_c00274{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00274{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m30_c00274{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.ma_c00274{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m22_c00274{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m10_c00274{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);}
.m3b_c00274{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);}
.m2e_c00274{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);}
.m45_c00274{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m2_c00274{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00274{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m34_c00274{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_c00274{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m0_c00274{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00274{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m32_c00274{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m24_c00274{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00274{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m31_c00274{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);}
.m35_c00274{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m4_c00274{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m15_c00274{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);}
.m3d_c00274{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m28_c00274{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);}
.m3f_c00274{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);}
.m2c_c00274{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m21_c00274{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m29_c00274{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m20_c00274{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);}
.m47_c00274{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m41_c00274{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);}
.md_c00274{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.mf_c00274{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);}
.m3_c00274{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m1_c00274{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);}
.m23_c00274{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00274{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m39_c00274{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00274{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m42_c00274{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m36_c00274{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);}
.me_c00274{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m18_c00274{transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);}
.m8_c00274{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);}
.v0_c00274{vertical-align:0.000000px;}
.v1_c00274{vertical-align:2.880000px;}
.v2_c00274{vertical-align:8.640000px;}
.ls0_c00274{letter-spacing:0.000000px;}
.sc__c00274{text-shadow:none;}
.sc0_c00274{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00274{-webkit-text-stroke:0px transparent;}
.sc0_c00274{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00274{word-spacing:-2.927040px;}
.ws3_c00274{word-spacing:0.000000px;}
.ws0_c00274{word-spacing:52.521523px;}
.ws1_c00274{word-spacing:62.456400px;}
.fc0_c00274{color:transparent;}
.fs8_c00274{font-size:34.560000px;}
.fsc_c00274{font-size:40.320000px;}
.fsd_c00274{font-size:46.080000px;}
.fsa_c00274{font-size:48.960000px;}
.fs2_c00274{font-size:51.840000px;}
.fs3_c00274{font-size:54.720000px;}
.fs6_c00274{font-size:57.600000px;}
.fs1_c00274{font-size:60.480000px;}
.fs7_c00274{font-size:63.360000px;}
.fs9_c00274{font-size:66.240000px;}
.fs5_c00274{font-size:69.120000px;}
.fsb_c00274{font-size:72.000000px;}
.fs0_c00274{font-size:74.880000px;}
.fs4_c00274{font-size:77.760000px;}
.y0_c00274{bottom:0.000000px;}
.y6b_c00274{bottom:84.960000px;}
.y6c_c00274{bottom:87.840000px;}
.y70_c00274{bottom:88.560000px;}
.y71_c00274{bottom:89.280000px;}
.y6a_c00274{bottom:90.000000px;}
.y69_c00274{bottom:128.160000px;}
.y6f_c00274{bottom:131.040000px;}
.y6d_c00274{bottom:131.760000px;}
.y68_c00274{bottom:132.480000px;}
.y6e_c00274{bottom:133.920000px;}
.y66_c00274{bottom:174.240000px;}
.y67_c00274{bottom:174.960000px;}
.y64_c00274{bottom:203.040000px;}
.y65_c00274{bottom:205.200000px;}
.y5b_c00274{bottom:206.640000px;}
.y5d_c00274{bottom:207.360000px;}
.y63_c00274{bottom:208.080000px;}
.y5c_c00274{bottom:209.520000px;}
.y62_c00274{bottom:246.960000px;}
.y58_c00274{bottom:250.560000px;}
.y61_c00274{bottom:251.280000px;}
.y59_c00274{bottom:252.000000px;}
.y5a_c00274{bottom:252.720000px;}
.y52_c00274{bottom:290.160000px;}
.y50_c00274{bottom:290.880000px;}
.y51_c00274{bottom:291.600000px;}
.y56_c00274{bottom:292.320000px;}
.y57_c00274{bottom:293.040000px;}
.y4f_c00274{bottom:294.480000px;}
.y60_c00274{bottom:333.360000px;}
.y5e_c00274{bottom:335.520000px;}
.y53_c00274{bottom:336.240000px;}
.y55_c00274{bottom:336.960000px;}
.y5f_c00274{bottom:337.680000px;}
.y54_c00274{bottom:338.400000px;}
.y4e_c00274{bottom:377.280000px;}
.y4d_c00274{bottom:380.880000px;}
.y4a_c00274{bottom:408.960000px;}
.y4b_c00274{bottom:411.120000px;}
.y4c_c00274{bottom:411.840000px;}
.y48_c00274{bottom:412.560000px;}
.y49_c00274{bottom:414.000000px;}
.y3e_c00274{bottom:452.880000px;}
.y46_c00274{bottom:455.040000px;}
.y3c_c00274{bottom:455.760000px;}
.y3d_c00274{bottom:457.200000px;}
.y47_c00274{bottom:458.640000px;}
.y3a_c00274{bottom:496.800000px;}
.y45_c00274{bottom:498.240000px;}
.y38_c00274{bottom:498.960000px;}
.y3b_c00274{bottom:500.400000px;}
.y39_c00274{bottom:501.120000px;}
.y37_c00274{bottom:540.000000px;}
.y44_c00274{bottom:541.440000px;}
.y35_c00274{bottom:542.160000px;}
.y36_c00274{bottom:543.600000px;}
.y34_c00274{bottom:582.480000px;}
.y33_c00274{bottom:584.640000px;}
.y30_c00274{bottom:585.360000px;}
.y32_c00274{bottom:586.800000px;}
.y31_c00274{bottom:587.520000px;}
.y2e_c00274{bottom:625.680000px;}
.y2c_c00274{bottom:627.840000px;}
.y43_c00274{bottom:629.280000px;}
.y2f_c00274{bottom:630.000000px;}
.y2d_c00274{bottom:630.720000px;}
.y2a_c00274{bottom:668.880000px;}
.y2b_c00274{bottom:670.320000px;}
.y28_c00274{bottom:671.040000px;}
.y29_c00274{bottom:672.480000px;}
.y27_c00274{bottom:711.360000px;}
.y25_c00274{bottom:713.520000px;}
.y42_c00274{bottom:714.960000px;}
.y41_c00274{bottom:715.680000px;}
.y26_c00274{bottom:716.400000px;}
.y24_c00274{bottom:755.280000px;}
.y22_c00274{bottom:756.000000px;}
.y3f_c00274{bottom:756.720000px;}
.y40_c00274{bottom:758.880000px;}
.y23_c00274{bottom:759.600000px;}
.y21_c00274{bottom:797.760000px;}
.y20_c00274{bottom:799.920000px;}
.y1f_c00274{bottom:802.080000px;}
.y1e_c00274{bottom:802.800000px;}
.y1a_c00274{bottom:830.880000px;}
.y19_c00274{bottom:832.320000px;}
.y1c_c00274{bottom:833.760000px;}
.y1d_c00274{bottom:834.480000px;}
.y1b_c00274{bottom:835.200000px;}
.y17_c00274{bottom:874.080000px;}
.y18_c00274{bottom:875.520000px;}
.y15_c00274{bottom:876.240000px;}
.y16_c00274{bottom:877.680000px;}
.y13_c00274{bottom:917.280000px;}
.y11_c00274{bottom:918.720000px;}
.y14_c00274{bottom:920.880000px;}
.y12_c00274{bottom:921.600000px;}
.yf_c00274{bottom:960.480000px;}
.y10_c00274{bottom:961.200000px;}
.yc_c00274{bottom:962.640000px;}
.yd_c00274{bottom:964.080000px;}
.ye_c00274{bottom:964.800000px;}
.ya_c00274{bottom:1004.400000px;}
.y8_c00274{bottom:1005.120000px;}
.yb_c00274{bottom:1006.560000px;}
.y9_c00274{bottom:1008.000000px;}
.y5_c00274{bottom:1047.600000px;}
.y6_c00274{bottom:1048.320000px;}
.y2_c00274{bottom:1049.040000px;}
.y7_c00274{bottom:1049.760000px;}
.y4_c00274{bottom:1051.200000px;}
.y3_c00274{bottom:1051.920000px;}
.y1_c00274{bottom:1109.520000px;}
.ha_c00274{height:31.100625px;}
.hf_c00274{height:36.284062px;}
.h10_c00274{height:41.467500px;}
.hc_c00274{height:44.059219px;}
.h4_c00274{height:46.650937px;}
.h5_c00274{height:49.242656px;}
.h8_c00274{height:51.834375px;}
.h3_c00274{height:54.426094px;}
.h9_c00274{height:57.017812px;}
.hb_c00274{height:59.609531px;}
.h7_c00274{height:62.201250px;}
.he_c00274{height:64.792969px;}
.hd_c00274{height:65.081250px;}
.h2_c00274{height:67.384687px;}
.h6_c00274{height:69.976406px;}
.h0_c00274{height:1154.160000px;}
.h1_c00274{height:1154.250000px;}
.w0_c00274{width:777.600000px;}
.w1_c00274{width:777.750000px;}
.x0_c00274{left:0.000000px;}
.x2_c00274{left:73.439280px;}
.x19_c00274{left:74.880000px;}
.x26_c00274{left:76.320000px;}
.xc_c00274{left:116.640000px;}
.x3_c00274{left:146.160000px;}
.x2c_c00274{left:147.600000px;}
.x2a_c00274{left:187.920000px;}
.x4_c00274{left:189.360000px;}
.xe_c00274{left:190.800000px;}
.x14_c00274{left:200.880000px;}
.x5_c00274{left:233.280000px;}
.x15_c00274{left:244.080000px;}
.x25_c00274{left:254.880000px;}
.x27_c00274{left:265.680000px;}
.x29_c00274{left:276.480000px;}
.x6_c00274{left:288.000000px;}
.x21_c00274{left:298.800000px;}
.x2d_c00274{left:319.680000px;}
.x7_c00274{left:331.200000px;}
.x16_c00274{left:341.280000px;}
.x1b_c00274{left:362.880000px;}
.x11_c00274{left:373.680000px;}
.x17_c00274{left:385.200000px;}
.x1a_c00274{left:396.000000px;}
.xf_c00274{left:405.360000px;}
.x22_c00274{left:417.600000px;}
.x12_c00274{left:428.400000px;}
.x18_c00274{left:438.480000px;}
.x10_c00274{left:449.280000px;}
.x23_c00274{left:471.600000px;}
.x13_c00274{left:482.400000px;}
.x2b_c00274{left:525.600000px;}
.x24_c00274{left:557.280000px;}
.x2e_c00274{left:568.080000px;}
.x20_c00274{left:590.400000px;}
.x8_c00274{left:591.840000px;}
.x1e_c00274{left:601.200000px;}
.x1c_c00274{left:622.080000px;}
.xd_c00274{left:623.520000px;}
.x1f_c00274{left:655.200000px;}
.xb_c00274{left:656.640000px;}
.x1d_c00274{left:689.040000px;}
.x1_c00274{left:691.920000px;}
.x28_c00274{left:696.960000px;}
.x9_c00274{left:698.400000px;}
.xa_c00274{left:719.280000px;}
@media print{
.v0_c00274{vertical-align:0.000000pt;}
.v1_c00274{vertical-align:2.560000pt;}
.v2_c00274{vertical-align:7.680000pt;}
.ls0_c00274{letter-spacing:0.000000pt;}
.ws2_c00274{word-spacing:-2.601813pt;}
.ws3_c00274{word-spacing:0.000000pt;}
.ws0_c00274{word-spacing:46.685798pt;}
.ws1_c00274{word-spacing:55.516800pt;}
.fs8_c00274{font-size:30.720000pt;}
.fsc_c00274{font-size:35.840000pt;}
.fsd_c00274{font-size:40.960000pt;}
.fsa_c00274{font-size:43.520000pt;}
.fs2_c00274{font-size:46.080000pt;}
.fs3_c00274{font-size:48.640000pt;}
.fs6_c00274{font-size:51.200000pt;}
.fs1_c00274{font-size:53.760000pt;}
.fs7_c00274{font-size:56.320000pt;}
.fs9_c00274{font-size:58.880000pt;}
.fs5_c00274{font-size:61.440000pt;}
.fsb_c00274{font-size:64.000000pt;}
.fs0_c00274{font-size:66.560000pt;}
.fs4_c00274{font-size:69.120000pt;}
.y0_c00274{bottom:0.000000pt;}
.y6b_c00274{bottom:75.520000pt;}
.y6c_c00274{bottom:78.080000pt;}
.y70_c00274{bottom:78.720000pt;}
.y71_c00274{bottom:79.360000pt;}
.y6a_c00274{bottom:80.000000pt;}
.y69_c00274{bottom:113.920000pt;}
.y6f_c00274{bottom:116.480000pt;}
.y6d_c00274{bottom:117.120000pt;}
.y68_c00274{bottom:117.760000pt;}
.y6e_c00274{bottom:119.040000pt;}
.y66_c00274{bottom:154.880000pt;}
.y67_c00274{bottom:155.520000pt;}
.y64_c00274{bottom:180.480000pt;}
.y65_c00274{bottom:182.400000pt;}
.y5b_c00274{bottom:183.680000pt;}
.y5d_c00274{bottom:184.320000pt;}
.y63_c00274{bottom:184.960000pt;}
.y5c_c00274{bottom:186.240000pt;}
.y62_c00274{bottom:219.520000pt;}
.y58_c00274{bottom:222.720000pt;}
.y61_c00274{bottom:223.360000pt;}
.y59_c00274{bottom:224.000000pt;}
.y5a_c00274{bottom:224.640000pt;}
.y52_c00274{bottom:257.920000pt;}
.y50_c00274{bottom:258.560000pt;}
.y51_c00274{bottom:259.200000pt;}
.y56_c00274{bottom:259.840000pt;}
.y57_c00274{bottom:260.480000pt;}
.y4f_c00274{bottom:261.760000pt;}
.y60_c00274{bottom:296.320000pt;}
.y5e_c00274{bottom:298.240000pt;}
.y53_c00274{bottom:298.880000pt;}
.y55_c00274{bottom:299.520000pt;}
.y5f_c00274{bottom:300.160000pt;}
.y54_c00274{bottom:300.800000pt;}
.y4e_c00274{bottom:335.360000pt;}
.y4d_c00274{bottom:338.560000pt;}
.y4a_c00274{bottom:363.520000pt;}
.y4b_c00274{bottom:365.440000pt;}
.y4c_c00274{bottom:366.080000pt;}
.y48_c00274{bottom:366.720000pt;}
.y49_c00274{bottom:368.000000pt;}
.y3e_c00274{bottom:402.560000pt;}
.y46_c00274{bottom:404.480000pt;}
.y3c_c00274{bottom:405.120000pt;}
.y3d_c00274{bottom:406.400000pt;}
.y47_c00274{bottom:407.680000pt;}
.y3a_c00274{bottom:441.600000pt;}
.y45_c00274{bottom:442.880000pt;}
.y38_c00274{bottom:443.520000pt;}
.y3b_c00274{bottom:444.800000pt;}
.y39_c00274{bottom:445.440000pt;}
.y37_c00274{bottom:480.000000pt;}
.y44_c00274{bottom:481.280000pt;}
.y35_c00274{bottom:481.920000pt;}
.y36_c00274{bottom:483.200000pt;}
.y34_c00274{bottom:517.760000pt;}
.y33_c00274{bottom:519.680000pt;}
.y30_c00274{bottom:520.320000pt;}
.y32_c00274{bottom:521.600000pt;}
.y31_c00274{bottom:522.240000pt;}
.y2e_c00274{bottom:556.160000pt;}
.y2c_c00274{bottom:558.080000pt;}
.y43_c00274{bottom:559.360000pt;}
.y2f_c00274{bottom:560.000000pt;}
.y2d_c00274{bottom:560.640000pt;}
.y2a_c00274{bottom:594.560000pt;}
.y2b_c00274{bottom:595.840000pt;}
.y28_c00274{bottom:596.480000pt;}
.y29_c00274{bottom:597.760000pt;}
.y27_c00274{bottom:632.320000pt;}
.y25_c00274{bottom:634.240000pt;}
.y42_c00274{bottom:635.520000pt;}
.y41_c00274{bottom:636.160000pt;}
.y26_c00274{bottom:636.800000pt;}
.y24_c00274{bottom:671.360000pt;}
.y22_c00274{bottom:672.000000pt;}
.y3f_c00274{bottom:672.640000pt;}
.y40_c00274{bottom:674.560000pt;}
.y23_c00274{bottom:675.200000pt;}
.y21_c00274{bottom:709.120000pt;}
.y20_c00274{bottom:711.040000pt;}
.y1f_c00274{bottom:712.960000pt;}
.y1e_c00274{bottom:713.600000pt;}
.y1a_c00274{bottom:738.560000pt;}
.y19_c00274{bottom:739.840000pt;}
.y1c_c00274{bottom:741.120000pt;}
.y1d_c00274{bottom:741.760000pt;}
.y1b_c00274{bottom:742.400000pt;}
.y17_c00274{bottom:776.960000pt;}
.y18_c00274{bottom:778.240000pt;}
.y15_c00274{bottom:778.880000pt;}
.y16_c00274{bottom:780.160000pt;}
.y13_c00274{bottom:815.360000pt;}
.y11_c00274{bottom:816.640000pt;}
.y14_c00274{bottom:818.560000pt;}
.y12_c00274{bottom:819.200000pt;}
.yf_c00274{bottom:853.760000pt;}
.y10_c00274{bottom:854.400000pt;}
.yc_c00274{bottom:855.680000pt;}
.yd_c00274{bottom:856.960000pt;}
.ye_c00274{bottom:857.600000pt;}
.ya_c00274{bottom:892.800000pt;}
.y8_c00274{bottom:893.440000pt;}
.yb_c00274{bottom:894.720000pt;}
.y9_c00274{bottom:896.000000pt;}
.y5_c00274{bottom:931.200000pt;}
.y6_c00274{bottom:931.840000pt;}
.y2_c00274{bottom:932.480000pt;}
.y7_c00274{bottom:933.120000pt;}
.y4_c00274{bottom:934.400000pt;}
.y3_c00274{bottom:935.040000pt;}
.y1_c00274{bottom:986.240000pt;}
.ha_c00274{height:27.645000pt;}
.hf_c00274{height:32.252500pt;}
.h10_c00274{height:36.860000pt;}
.hc_c00274{height:39.163750pt;}
.h4_c00274{height:41.467500pt;}
.h5_c00274{height:43.771250pt;}
.h8_c00274{height:46.075000pt;}
.h3_c00274{height:48.378750pt;}
.h9_c00274{height:50.682500pt;}
.hb_c00274{height:52.986250pt;}
.h7_c00274{height:55.290000pt;}
.he_c00274{height:57.593750pt;}
.hd_c00274{height:57.850000pt;}
.h2_c00274{height:59.897500pt;}
.h6_c00274{height:62.201250pt;}
.h0_c00274{height:1025.920000pt;}
.h1_c00274{height:1026.000000pt;}
.w0_c00274{width:691.200000pt;}
.w1_c00274{width:691.333333pt;}
.x0_c00274{left:0.000000pt;}
.x2_c00274{left:65.279360pt;}
.x19_c00274{left:66.560000pt;}
.x26_c00274{left:67.840000pt;}
.xc_c00274{left:103.680000pt;}
.x3_c00274{left:129.920000pt;}
.x2c_c00274{left:131.200000pt;}
.x2a_c00274{left:167.040000pt;}
.x4_c00274{left:168.320000pt;}
.xe_c00274{left:169.600000pt;}
.x14_c00274{left:178.560000pt;}
.x5_c00274{left:207.360000pt;}
.x15_c00274{left:216.960000pt;}
.x25_c00274{left:226.560000pt;}
.x27_c00274{left:236.160000pt;}
.x29_c00274{left:245.760000pt;}
.x6_c00274{left:256.000000pt;}
.x21_c00274{left:265.600000pt;}
.x2d_c00274{left:284.160000pt;}
.x7_c00274{left:294.400000pt;}
.x16_c00274{left:303.360000pt;}
.x1b_c00274{left:322.560000pt;}
.x11_c00274{left:332.160000pt;}
.x17_c00274{left:342.400000pt;}
.x1a_c00274{left:352.000000pt;}
.xf_c00274{left:360.320000pt;}
.x22_c00274{left:371.200000pt;}
.x12_c00274{left:380.800000pt;}
.x18_c00274{left:389.760000pt;}
.x10_c00274{left:399.360000pt;}
.x23_c00274{left:419.200000pt;}
.x13_c00274{left:428.800000pt;}
.x2b_c00274{left:467.200000pt;}
.x24_c00274{left:495.360000pt;}
.x2e_c00274{left:504.960000pt;}
.x20_c00274{left:524.800000pt;}
.x8_c00274{left:526.080000pt;}
.x1e_c00274{left:534.400000pt;}
.x1c_c00274{left:552.960000pt;}
.xd_c00274{left:554.240000pt;}
.x1f_c00274{left:582.400000pt;}
.xb_c00274{left:583.680000pt;}
.x1d_c00274{left:612.480000pt;}
.x1_c00274{left:615.040000pt;}
.x28_c00274{left:619.520000pt;}
.x9_c00274{left:620.800000pt;}
.xa_c00274{left:639.360000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0905faa21b40c1681616571c.woff2')format("woff");}.ff1_c00275{font-family:ff1_c00275;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4a_c00275{transform:matrix(0.227300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227300,0.000000,0.000000,0.250000,0,0);}
.m35_c00275{transform:matrix(0.230725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230725,0.000000,0.000000,0.250000,0,0);}
.m42_c00275{transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);}
.m1b_c00275{transform:matrix(0.242950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242950,0.000000,0.000000,0.250000,0,0);}
.m13_c00275{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);}
.m3f_c00275{transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);}
.m43_c00275{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1_c00275{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);}
.m4b_c00275{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m7_c00275{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_c00275{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);}
.m48_c00275{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m30_c00275{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);}
.m45_c00275{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00275{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m41_c00275{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);}
.m39_c00275{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mc_c00275{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);}
.m4f_c00275{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00275{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m25_c00275{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m23_c00275{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m20_c00275{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m44_c00275{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00275{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m51_c00275{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m33_c00275{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00275{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m10_c00275{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m5_c00275{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00275{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m37_c00275{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00275{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m2_c00275{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m50_c00275{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m6_c00275{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m21_c00275{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00275{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);}
.m2d_c00275{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m34_c00275{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m9_c00275{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);}
.m2b_c00275{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);}
.m2f_c00275{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m24_c00275{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m28_c00275{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m0_c00275{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);}
.m27_c00275{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);}
.m1c_c00275{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m11_c00275{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);}
.m19_c00275{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.md_c00275{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);}
.m36_c00275{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00275{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m32_c00275{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m18_c00275{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.ma_c00275{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);}
.m3a_c00275{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m12_c00275{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m49_c00275{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00275{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00275{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00275{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);}
.m15_c00275{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m40_c00275{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m8_c00275{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);}
.m38_c00275{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.me_c00275{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);}
.m16_c00275{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00275{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m17_c00275{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m4_c00275{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);}
.m29_c00275{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m3_c00275{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m31_c00275{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);}
.m22_c00275{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m26_c00275{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00275{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m46_c00275{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.mb_c00275{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.m52_c00275{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);}
.m47_c00275{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00275{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m53_c00275{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m14_c00275{transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);}
.v1_c00275{vertical-align:-2.880000px;}
.v0_c00275{vertical-align:0.000000px;}
.ls0_c00275{letter-spacing:0.000000px;}
.sc__c00275{text-shadow:none;}
.sc0_c00275{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00275{-webkit-text-stroke:0px transparent;}
.sc0_c00275{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00275{word-spacing:0.000000px;}
.ws0_c00275{word-spacing:1.179840px;}
.ws1_c00275{word-spacing:37.225152px;}
.fc0_c00275{color:transparent;}
.fs3_c00275{font-size:37.440000px;}
.fs6_c00275{font-size:40.320000px;}
.fsd_c00275{font-size:43.200000px;}
.fsc_c00275{font-size:46.080000px;}
.fs8_c00275{font-size:48.960000px;}
.fs2_c00275{font-size:51.840000px;}
.fsa_c00275{font-size:54.720000px;}
.fs0_c00275{font-size:57.600000px;}
.fs7_c00275{font-size:60.480000px;}
.fs5_c00275{font-size:63.360000px;}
.fs9_c00275{font-size:66.240000px;}
.fse_c00275{font-size:69.120000px;}
.fs4_c00275{font-size:72.000000px;}
.fs1_c00275{font-size:74.880000px;}
.fsb_c00275{font-size:77.760000px;}
.fsf_c00275{font-size:95.040000px;}
.y0_c00275{bottom:0.000000px;}
.y5d_c00275{bottom:72.000000px;}
.y5b_c00275{bottom:73.440000px;}
.y80_c00275{bottom:74.880000px;}
.y5c_c00275{bottom:75.600000px;}
.y81_c00275{bottom:76.320000px;}
.y5a_c00275{bottom:79.200000px;}
.y59_c00275{bottom:115.200000px;}
.y58_c00275{bottom:116.640000px;}
.y57_c00275{bottom:118.800000px;}
.y56_c00275{bottom:120.240000px;}
.y52_c00275{bottom:149.040000px;}
.y54_c00275{bottom:149.760000px;}
.y55_c00275{bottom:151.200000px;}
.y53_c00275{bottom:151.920000px;}
.y7e_c00275{bottom:152.640000px;}
.y51_c00275{bottom:153.360000px;}
.y7d_c00275{bottom:154.080000px;}
.y7f_c00275{bottom:154.800000px;}
.y50_c00275{bottom:192.240000px;}
.y7c_c00275{bottom:195.120000px;}
.y4f_c00275{bottom:195.840000px;}
.y7b_c00275{bottom:197.280000px;}
.y4d_c00275{bottom:235.440000px;}
.y4e_c00275{bottom:238.320000px;}
.y4c_c00275{bottom:239.040000px;}
.y79_c00275{bottom:239.760000px;}
.y7a_c00275{bottom:240.480000px;}
.y4b_c00275{bottom:277.920000px;}
.y4a_c00275{bottom:278.640000px;}
.y78_c00275{bottom:280.800000px;}
.y77_c00275{bottom:281.520000px;}
.y49_c00275{bottom:282.960000px;}
.y45_c00275{bottom:321.840000px;}
.y48_c00275{bottom:322.560000px;}
.y47_c00275{bottom:323.280000px;}
.y46_c00275{bottom:324.000000px;}
.y75_c00275{bottom:324.720000px;}
.y76_c00275{bottom:325.440000px;}
.y44_c00275{bottom:326.160000px;}
.y43_c00275{bottom:358.560000px;}
.y41_c00275{bottom:365.040000px;}
.y40_c00275{bottom:365.760000px;}
.y42_c00275{bottom:366.480000px;}
.y3f_c00275{bottom:368.640000px;}
.y3e_c00275{bottom:369.360000px;}
.y3c_c00275{bottom:408.960000px;}
.y3b_c00275{bottom:411.120000px;}
.y3d_c00275{bottom:411.840000px;}
.y73_c00275{bottom:412.560000px;}
.y74_c00275{bottom:414.000000px;}
.y38_c00275{bottom:451.440000px;}
.y39_c00275{bottom:452.160000px;}
.y3a_c00275{bottom:452.880000px;}
.y37_c00275{bottom:455.040000px;}
.y36_c00275{bottom:455.760000px;}
.y34_c00275{bottom:484.560000px;}
.y35_c00275{bottom:486.000000px;}
.y32_c00275{bottom:486.720000px;}
.y33_c00275{bottom:488.160000px;}
.y71_c00275{bottom:528.480000px;}
.y30_c00275{bottom:529.200000px;}
.y2f_c00275{bottom:529.920000px;}
.y31_c00275{bottom:530.640000px;}
.y72_c00275{bottom:532.080000px;}
.y2c_c00275{bottom:570.960000px;}
.y2d_c00275{bottom:571.680000px;}
.y2b_c00275{bottom:573.120000px;}
.y2e_c00275{bottom:574.560000px;}
.y29_c00275{bottom:614.880000px;}
.y2a_c00275{bottom:615.600000px;}
.y27_c00275{bottom:616.320000px;}
.y6f_c00275{bottom:617.040000px;}
.y28_c00275{bottom:617.760000px;}
.y70_c00275{bottom:618.480000px;}
.y26_c00275{bottom:658.080000px;}
.y24_c00275{bottom:658.800000px;}
.y23_c00275{bottom:659.520000px;}
.y6e_c00275{bottom:660.240000px;}
.y25_c00275{bottom:660.960000px;}
.y22_c00275{bottom:702.000000px;}
.y20_c00275{bottom:702.720000px;}
.y21_c00275{bottom:704.160000px;}
.y6d_c00275{bottom:704.880000px;}
.y6c_c00275{bottom:744.480000px;}
.y1d_c00275{bottom:745.920000px;}
.y1f_c00275{bottom:746.640000px;}
.y1e_c00275{bottom:747.360000px;}
.y6b_c00275{bottom:748.080000px;}
.y6a_c00275{bottom:787.680000px;}
.y1c_c00275{bottom:788.400000px;}
.y1a_c00275{bottom:789.120000px;}
.y69_c00275{bottom:789.840000px;}
.y68_c00275{bottom:790.560000px;}
.y1b_c00275{bottom:791.280000px;}
.y19_c00275{bottom:830.160000px;}
.y66_c00275{bottom:831.600000px;}
.y16_c00275{bottom:832.320000px;}
.y67_c00275{bottom:833.040000px;}
.y18_c00275{bottom:833.760000px;}
.y17_c00275{bottom:834.480000px;}
.y15_c00275{bottom:872.640000px;}
.y65_c00275{bottom:874.080000px;}
.y12_c00275{bottom:875.520000px;}
.y64_c00275{bottom:876.240000px;}
.y13_c00275{bottom:876.960000px;}
.y14_c00275{bottom:877.680000px;}
.y11_c00275{bottom:915.840000px;}
.y62_c00275{bottom:916.560000px;}
.y63_c00275{bottom:917.280000px;}
.ye_c00275{bottom:918.000000px;}
.yf_c00275{bottom:920.160000px;}
.y10_c00275{bottom:920.880000px;}
.yd_c00275{bottom:959.760000px;}
.ya_c00275{bottom:960.480000px;}
.yc_c00275{bottom:962.640000px;}
.yb_c00275{bottom:963.360000px;}
.y9_c00275{bottom:1002.240000px;}
.y6_c00275{bottom:1002.960000px;}
.y5_c00275{bottom:1003.680000px;}
.y61_c00275{bottom:1005.120000px;}
.y7_c00275{bottom:1005.840000px;}
.y8_c00275{bottom:1006.560000px;}
.y5f_c00275{bottom:1045.440000px;}
.y2_c00275{bottom:1046.160000px;}
.y1_c00275{bottom:1046.880000px;}
.y60_c00275{bottom:1048.320000px;}
.y4_c00275{bottom:1049.040000px;}
.y3_c00275{bottom:1049.760000px;}
.y5e_c00275{bottom:1096.560000px;}
.h5_c00275{height:33.692344px;}
.h8_c00275{height:36.284062px;}
.hf_c00275{height:38.875781px;}
.he_c00275{height:41.467500px;}
.ha_c00275{height:44.059219px;}
.h4_c00275{height:46.650937px;}
.hc_c00275{height:49.242656px;}
.h2_c00275{height:51.834375px;}
.h9_c00275{height:54.426094px;}
.h7_c00275{height:57.017812px;}
.hb_c00275{height:59.609531px;}
.h10_c00275{height:62.201250px;}
.h6_c00275{height:64.792969px;}
.h3_c00275{height:67.384687px;}
.hd_c00275{height:69.976406px;}
.h11_c00275{height:85.526719px;}
.h0_c00275{height:1153.440000px;}
.h1_c00275{height:1153.500000px;}
.w0_c00275{width:776.880000px;}
.w1_c00275{width:777.000000px;}
.x0_c00275{left:0.000000px;}
.x1_c00275{left:75.600000px;}
.x14_c00275{left:77.040000px;}
.x1b_c00275{left:78.480000px;}
.x1e_c00275{left:79.920000px;}
.x2_c00275{left:149.040000px;}
.x9_c00275{left:181.440000px;}
.x10_c00275{left:192.240000px;}
.xa_c00275{left:223.920000px;}
.x3_c00275{left:234.720000px;}
.x1f_c00275{left:236.880000px;}
.x12_c00275{left:246.240000px;}
.x11_c00275{left:257.040000px;}
.xf_c00275{left:266.400000px;}
.x4_c00275{left:278.640000px;}
.x20_c00275{left:290.160000px;}
.x13_c00275{left:300.240000px;}
.x24_c00275{left:302.400000px;}
.x18_c00275{left:311.760000px;}
.x5_c00275{left:334.080000px;}
.x15_c00275{left:344.880000px;}
.x17_c00275{left:354.960000px;}
.x6_c00275{left:375.840000px;}
.xb_c00275{left:385.920000px;}
.x16_c00275{left:387.360000px;}
.xc_c00275{left:398.160000px;}
.xd_c00275{left:409.680000px;}
.x7_c00275{left:419.040000px;}
.x1d_c00275{left:420.480000px;}
.xe_c00275{left:440.640000px;}
.x1a_c00275{left:442.080000px;}
.x19_c00275{left:453.600000px;}
.x8_c00275{left:462.240000px;}
.x21_c00275{left:463.680000px;}
.x22_c00275{left:518.400000px;}
.x1c_c00275{left:538.560000px;}
.x31_c00275{left:570.960000px;}
.x23_c00275{left:572.400000px;}
.x33_c00275{left:591.840000px;}
.x32_c00275{left:593.280000px;}
.x29_c00275{left:603.360000px;}
.x2c_c00275{left:624.240000px;}
.x26_c00275{left:625.680000px;}
.x2e_c00275{left:635.760000px;}
.x27_c00275{left:658.080000px;}
.x2f_c00275{left:667.440000px;}
.x25_c00275{left:682.560000px;}
.x2d_c00275{left:690.480000px;}
.x2a_c00275{left:699.120000px;}
.x28_c00275{left:700.560000px;}
.x30_c00275{left:709.920000px;}
.x2b_c00275{left:720.720000px;}
@media print{
.v1_c00275{vertical-align:-2.560000pt;}
.v0_c00275{vertical-align:0.000000pt;}
.ls0_c00275{letter-spacing:0.000000pt;}
.ws2_c00275{word-spacing:0.000000pt;}
.ws0_c00275{word-spacing:1.048747pt;}
.ws1_c00275{word-spacing:33.089024pt;}
.fs3_c00275{font-size:33.280000pt;}
.fs6_c00275{font-size:35.840000pt;}
.fsd_c00275{font-size:38.400000pt;}
.fsc_c00275{font-size:40.960000pt;}
.fs8_c00275{font-size:43.520000pt;}
.fs2_c00275{font-size:46.080000pt;}
.fsa_c00275{font-size:48.640000pt;}
.fs0_c00275{font-size:51.200000pt;}
.fs7_c00275{font-size:53.760000pt;}
.fs5_c00275{font-size:56.320000pt;}
.fs9_c00275{font-size:58.880000pt;}
.fse_c00275{font-size:61.440000pt;}
.fs4_c00275{font-size:64.000000pt;}
.fs1_c00275{font-size:66.560000pt;}
.fsb_c00275{font-size:69.120000pt;}
.fsf_c00275{font-size:84.480000pt;}
.y0_c00275{bottom:0.000000pt;}
.y5d_c00275{bottom:64.000000pt;}
.y5b_c00275{bottom:65.280000pt;}
.y80_c00275{bottom:66.560000pt;}
.y5c_c00275{bottom:67.200000pt;}
.y81_c00275{bottom:67.840000pt;}
.y5a_c00275{bottom:70.400000pt;}
.y59_c00275{bottom:102.400000pt;}
.y58_c00275{bottom:103.680000pt;}
.y57_c00275{bottom:105.600000pt;}
.y56_c00275{bottom:106.880000pt;}
.y52_c00275{bottom:132.480000pt;}
.y54_c00275{bottom:133.120000pt;}
.y55_c00275{bottom:134.400000pt;}
.y53_c00275{bottom:135.040000pt;}
.y7e_c00275{bottom:135.680000pt;}
.y51_c00275{bottom:136.320000pt;}
.y7d_c00275{bottom:136.960000pt;}
.y7f_c00275{bottom:137.600000pt;}
.y50_c00275{bottom:170.880000pt;}
.y7c_c00275{bottom:173.440000pt;}
.y4f_c00275{bottom:174.080000pt;}
.y7b_c00275{bottom:175.360000pt;}
.y4d_c00275{bottom:209.280000pt;}
.y4e_c00275{bottom:211.840000pt;}
.y4c_c00275{bottom:212.480000pt;}
.y79_c00275{bottom:213.120000pt;}
.y7a_c00275{bottom:213.760000pt;}
.y4b_c00275{bottom:247.040000pt;}
.y4a_c00275{bottom:247.680000pt;}
.y78_c00275{bottom:249.600000pt;}
.y77_c00275{bottom:250.240000pt;}
.y49_c00275{bottom:251.520000pt;}
.y45_c00275{bottom:286.080000pt;}
.y48_c00275{bottom:286.720000pt;}
.y47_c00275{bottom:287.360000pt;}
.y46_c00275{bottom:288.000000pt;}
.y75_c00275{bottom:288.640000pt;}
.y76_c00275{bottom:289.280000pt;}
.y44_c00275{bottom:289.920000pt;}
.y43_c00275{bottom:318.720000pt;}
.y41_c00275{bottom:324.480000pt;}
.y40_c00275{bottom:325.120000pt;}
.y42_c00275{bottom:325.760000pt;}
.y3f_c00275{bottom:327.680000pt;}
.y3e_c00275{bottom:328.320000pt;}
.y3c_c00275{bottom:363.520000pt;}
.y3b_c00275{bottom:365.440000pt;}
.y3d_c00275{bottom:366.080000pt;}
.y73_c00275{bottom:366.720000pt;}
.y74_c00275{bottom:368.000000pt;}
.y38_c00275{bottom:401.280000pt;}
.y39_c00275{bottom:401.920000pt;}
.y3a_c00275{bottom:402.560000pt;}
.y37_c00275{bottom:404.480000pt;}
.y36_c00275{bottom:405.120000pt;}
.y34_c00275{bottom:430.720000pt;}
.y35_c00275{bottom:432.000000pt;}
.y32_c00275{bottom:432.640000pt;}
.y33_c00275{bottom:433.920000pt;}
.y71_c00275{bottom:469.760000pt;}
.y30_c00275{bottom:470.400000pt;}
.y2f_c00275{bottom:471.040000pt;}
.y31_c00275{bottom:471.680000pt;}
.y72_c00275{bottom:472.960000pt;}
.y2c_c00275{bottom:507.520000pt;}
.y2d_c00275{bottom:508.160000pt;}
.y2b_c00275{bottom:509.440000pt;}
.y2e_c00275{bottom:510.720000pt;}
.y29_c00275{bottom:546.560000pt;}
.y2a_c00275{bottom:547.200000pt;}
.y27_c00275{bottom:547.840000pt;}
.y6f_c00275{bottom:548.480000pt;}
.y28_c00275{bottom:549.120000pt;}
.y70_c00275{bottom:549.760000pt;}
.y26_c00275{bottom:584.960000pt;}
.y24_c00275{bottom:585.600000pt;}
.y23_c00275{bottom:586.240000pt;}
.y6e_c00275{bottom:586.880000pt;}
.y25_c00275{bottom:587.520000pt;}
.y22_c00275{bottom:624.000000pt;}
.y20_c00275{bottom:624.640000pt;}
.y21_c00275{bottom:625.920000pt;}
.y6d_c00275{bottom:626.560000pt;}
.y6c_c00275{bottom:661.760000pt;}
.y1d_c00275{bottom:663.040000pt;}
.y1f_c00275{bottom:663.680000pt;}
.y1e_c00275{bottom:664.320000pt;}
.y6b_c00275{bottom:664.960000pt;}
.y6a_c00275{bottom:700.160000pt;}
.y1c_c00275{bottom:700.800000pt;}
.y1a_c00275{bottom:701.440000pt;}
.y69_c00275{bottom:702.080000pt;}
.y68_c00275{bottom:702.720000pt;}
.y1b_c00275{bottom:703.360000pt;}
.y19_c00275{bottom:737.920000pt;}
.y66_c00275{bottom:739.200000pt;}
.y16_c00275{bottom:739.840000pt;}
.y67_c00275{bottom:740.480000pt;}
.y18_c00275{bottom:741.120000pt;}
.y17_c00275{bottom:741.760000pt;}
.y15_c00275{bottom:775.680000pt;}
.y65_c00275{bottom:776.960000pt;}
.y12_c00275{bottom:778.240000pt;}
.y64_c00275{bottom:778.880000pt;}
.y13_c00275{bottom:779.520000pt;}
.y14_c00275{bottom:780.160000pt;}
.y11_c00275{bottom:814.080000pt;}
.y62_c00275{bottom:814.720000pt;}
.y63_c00275{bottom:815.360000pt;}
.ye_c00275{bottom:816.000000pt;}
.yf_c00275{bottom:817.920000pt;}
.y10_c00275{bottom:818.560000pt;}
.yd_c00275{bottom:853.120000pt;}
.ya_c00275{bottom:853.760000pt;}
.yc_c00275{bottom:855.680000pt;}
.yb_c00275{bottom:856.320000pt;}
.y9_c00275{bottom:890.880000pt;}
.y6_c00275{bottom:891.520000pt;}
.y5_c00275{bottom:892.160000pt;}
.y61_c00275{bottom:893.440000pt;}
.y7_c00275{bottom:894.080000pt;}
.y8_c00275{bottom:894.720000pt;}
.y5f_c00275{bottom:929.280000pt;}
.y2_c00275{bottom:929.920000pt;}
.y1_c00275{bottom:930.560000pt;}
.y60_c00275{bottom:931.840000pt;}
.y4_c00275{bottom:932.480000pt;}
.y3_c00275{bottom:933.120000pt;}
.y5e_c00275{bottom:974.720000pt;}
.h5_c00275{height:29.948750pt;}
.h8_c00275{height:32.252500pt;}
.hf_c00275{height:34.556250pt;}
.he_c00275{height:36.860000pt;}
.ha_c00275{height:39.163750pt;}
.h4_c00275{height:41.467500pt;}
.hc_c00275{height:43.771250pt;}
.h2_c00275{height:46.075000pt;}
.h9_c00275{height:48.378750pt;}
.h7_c00275{height:50.682500pt;}
.hb_c00275{height:52.986250pt;}
.h10_c00275{height:55.290000pt;}
.h6_c00275{height:57.593750pt;}
.h3_c00275{height:59.897500pt;}
.hd_c00275{height:62.201250pt;}
.h11_c00275{height:76.023750pt;}
.h0_c00275{height:1025.280000pt;}
.h1_c00275{height:1025.333333pt;}
.w0_c00275{width:690.560000pt;}
.w1_c00275{width:690.666667pt;}
.x0_c00275{left:0.000000pt;}
.x1_c00275{left:67.200000pt;}
.x14_c00275{left:68.480000pt;}
.x1b_c00275{left:69.760000pt;}
.x1e_c00275{left:71.040000pt;}
.x2_c00275{left:132.480000pt;}
.x9_c00275{left:161.280000pt;}
.x10_c00275{left:170.880000pt;}
.xa_c00275{left:199.040000pt;}
.x3_c00275{left:208.640000pt;}
.x1f_c00275{left:210.560000pt;}
.x12_c00275{left:218.880000pt;}
.x11_c00275{left:228.480000pt;}
.xf_c00275{left:236.800000pt;}
.x4_c00275{left:247.680000pt;}
.x20_c00275{left:257.920000pt;}
.x13_c00275{left:266.880000pt;}
.x24_c00275{left:268.800000pt;}
.x18_c00275{left:277.120000pt;}
.x5_c00275{left:296.960000pt;}
.x15_c00275{left:306.560000pt;}
.x17_c00275{left:315.520000pt;}
.x6_c00275{left:334.080000pt;}
.xb_c00275{left:343.040000pt;}
.x16_c00275{left:344.320000pt;}
.xc_c00275{left:353.920000pt;}
.xd_c00275{left:364.160000pt;}
.x7_c00275{left:372.480000pt;}
.x1d_c00275{left:373.760000pt;}
.xe_c00275{left:391.680000pt;}
.x1a_c00275{left:392.960000pt;}
.x19_c00275{left:403.200000pt;}
.x8_c00275{left:410.880000pt;}
.x21_c00275{left:412.160000pt;}
.x22_c00275{left:460.800000pt;}
.x1c_c00275{left:478.720000pt;}
.x31_c00275{left:507.520000pt;}
.x23_c00275{left:508.800000pt;}
.x33_c00275{left:526.080000pt;}
.x32_c00275{left:527.360000pt;}
.x29_c00275{left:536.320000pt;}
.x2c_c00275{left:554.880000pt;}
.x26_c00275{left:556.160000pt;}
.x2e_c00275{left:565.120000pt;}
.x27_c00275{left:584.960000pt;}
.x2f_c00275{left:593.280000pt;}
.x25_c00275{left:606.720000pt;}
.x2d_c00275{left:613.760000pt;}
.x2a_c00275{left:621.440000pt;}
.x28_c00275{left:622.720000pt;}
.x30_c00275{left:631.040000pt;}
.x2b_c00275{left:640.640000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d92a23f6d5eb8833ff68f022.woff2')format("woff");}.ff1_c00276{font-family:ff1_c00276;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4d_c00276{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00276{transform:matrix(0.195550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195550,0.000000,0.000000,0.250000,0,0);}
.m40_c00276{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m32_c00276{transform:matrix(0.223625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223625,0.000000,0.000000,0.250000,0,0);}
.m49_c00276{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_c00276{transform:matrix(0.229575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229575,0.000000,0.000000,0.250000,0,0);}
.m39_c00276{transform:matrix(0.230075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230075,0.000000,0.000000,0.250000,0,0);}
.m4_c00276{transform:matrix(0.230625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230625,0.000000,0.000000,0.250000,0,0);}
.m2b_c00276{transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);}
.m4a_c00276{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m16_c00276{transform:matrix(0.237525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237525,0.000000,0.000000,0.250000,0,0);}
.m1f_c00276{transform:matrix(0.242400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242400,0.000000,0.000000,0.250000,0,0);}
.m34_c00276{transform:matrix(0.243675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243675,0.000000,0.000000,0.250000,0,0);}
.m18_c00276{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m31_c00276{transform:matrix(0.246950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246950,0.000000,0.000000,0.250000,0,0);}
.m1d_c00276{transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);}
.m29_c00276{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00276{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m3_c00276{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);}
.m26_c00276{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);}
.m23_c00276{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);}
.m3c_c00276{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m8_c00276{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);}
.m3a_c00276{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mf_c00276{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);}
.m3b_c00276{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00276{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00276{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m6_c00276{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m12_c00276{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m10_c00276{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00276{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.ma_c00276{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mc_c00276{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m1_c00276{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m25_c00276{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.me_c00276{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00276{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m45_c00276{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m46_c00276{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m0_c00276{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m30_c00276{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m52_c00276{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m44_c00276{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m7_c00276{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00276{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.md_c00276{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m43_c00276{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m28_c00276{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m48_c00276{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m13_c00276{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m36_c00276{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);}
.m50_c00276{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m22_c00276{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m17_c00276{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00276{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_c00276{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m27_c00276{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);}
.m20_c00276{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m21_c00276{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);}
.m4b_c00276{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m37_c00276{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);}
.m11_c00276{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m38_c00276{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m33_c00276{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m9_c00276{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m19_c00276{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m51_c00276{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00276{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m2_c00276{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m15_c00276{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00276{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);}
.m35_c00276{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m2c_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);}
.m2e_c00276{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m24_c00276{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00276{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m42_c00276{transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);}
.m41_c00276{transform:matrix(0.712500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.712500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.712500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00276{transform:matrix(0.800000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.800000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.800000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00276{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m47_c00276{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.m5_c00276{transform:matrix(0.932500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.932500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.932500,0.000000,0.000000,0.250000,0,0);}
.v3_c00276{vertical-align:-11.520000px;}
.v1_c00276{vertical-align:-2.880000px;}
.v0_c00276{vertical-align:0.000000px;}
.v2_c00276{vertical-align:8.640000px;}
.ls0_c00276{letter-spacing:0.000000px;}
.sc__c00276{text-shadow:none;}
.sc0_c00276{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00276{-webkit-text-stroke:0px transparent;}
.sc0_c00276{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00276{word-spacing:0.000000px;}
.ws4_c00276{word-spacing:0.058080px;}
.ws1_c00276{word-spacing:9.210378px;}
.ws2_c00276{word-spacing:9.212400px;}
.ws3_c00276{word-spacing:11.693143px;}
.ws5_c00276{word-spacing:14.174400px;}
.ws0_c00276{word-spacing:50.570400px;}
.fc0_c00276{color:transparent;}
.fsc_c00276{font-size:28.800000px;}
.fs4_c00276{font-size:31.680000px;}
.fsd_c00276{font-size:40.320000px;}
.fsb_c00276{font-size:43.200000px;}
.fse_c00276{font-size:46.080000px;}
.fs6_c00276{font-size:51.840000px;}
.fsa_c00276{font-size:54.720000px;}
.fs2_c00276{font-size:57.600000px;}
.fs7_c00276{font-size:60.480000px;}
.fs9_c00276{font-size:63.360000px;}
.fs3_c00276{font-size:66.240000px;}
.fs0_c00276{font-size:69.120000px;}
.fs8_c00276{font-size:72.000000px;}
.fs5_c00276{font-size:74.880000px;}
.fs1_c00276{font-size:77.760000px;}
.fsf_c00276{font-size:80.640000px;}
.y0_c00276{bottom:0.000000px;}
.y74_c00276{bottom:54.720000px;}
.y73_c00276{bottom:55.440000px;}
.y72_c00276{bottom:56.160000px;}
.y75_c00276{bottom:56.880000px;}
.y71_c00276{bottom:57.600000px;}
.y6e_c00276{bottom:97.200000px;}
.y70_c00276{bottom:100.080000px;}
.y6f_c00276{bottom:100.800000px;}
.y6d_c00276{bottom:102.240000px;}
.y68_c00276{bottom:140.400000px;}
.y6a_c00276{bottom:141.120000px;}
.y69_c00276{bottom:143.280000px;}
.y6b_c00276{bottom:144.000000px;}
.y6c_c00276{bottom:144.720000px;}
.y67_c00276{bottom:145.440000px;}
.y63_c00276{bottom:183.600000px;}
.y66_c00276{bottom:186.480000px;}
.y65_c00276{bottom:187.200000px;}
.y62_c00276{bottom:187.920000px;}
.y64_c00276{bottom:188.640000px;}
.y3d_c00276{bottom:226.800000px;}
.y3e_c00276{bottom:227.520000px;}
.y60_c00276{bottom:228.960000px;}
.y61_c00276{bottom:229.680000px;}
.y3f_c00276{bottom:230.400000px;}
.y3c_c00276{bottom:231.120000px;}
.y3a_c00276{bottom:270.720000px;}
.y3b_c00276{bottom:271.440000px;}
.y5e_c00276{bottom:272.880000px;}
.y5d_c00276{bottom:273.600000px;}
.y39_c00276{bottom:274.320000px;}
.y5f_c00276{bottom:275.040000px;}
.y38_c00276{bottom:313.920000px;}
.y5b_c00276{bottom:316.080000px;}
.y37_c00276{bottom:316.800000px;}
.y5a_c00276{bottom:317.520000px;}
.y5c_c00276{bottom:318.240000px;}
.y35_c00276{bottom:357.120000px;}
.y59_c00276{bottom:358.560000px;}
.y58_c00276{bottom:359.280000px;}
.y34_c00276{bottom:360.000000px;}
.y36_c00276{bottom:360.720000px;}
.y33_c00276{bottom:400.320000px;}
.y57_c00276{bottom:402.480000px;}
.y56_c00276{bottom:403.200000px;}
.y32_c00276{bottom:403.920000px;}
.y30_c00276{bottom:443.520000px;}
.y31_c00276{bottom:444.240000px;}
.y55_c00276{bottom:445.680000px;}
.y2e_c00276{bottom:447.120000px;}
.y2f_c00276{bottom:447.840000px;}
.y2d_c00276{bottom:486.720000px;}
.y2b_c00276{bottom:487.440000px;}
.y54_c00276{bottom:488.880000px;}
.y2a_c00276{bottom:489.600000px;}
.y2c_c00276{bottom:491.040000px;}
.y27_c00276{bottom:530.640000px;}
.y53_c00276{bottom:532.080000px;}
.y26_c00276{bottom:532.800000px;}
.y28_c00276{bottom:533.520000px;}
.y29_c00276{bottom:534.240000px;}
.y24_c00276{bottom:573.120000px;}
.y52_c00276{bottom:574.560000px;}
.y23_c00276{bottom:575.280000px;}
.y25_c00276{bottom:577.440000px;}
.y21_c00276{bottom:616.320000px;}
.y51_c00276{bottom:617.040000px;}
.y50_c00276{bottom:617.760000px;}
.y20_c00276{bottom:618.480000px;}
.y22_c00276{bottom:619.200000px;}
.y1f_c00276{bottom:659.520000px;}
.y4f_c00276{bottom:660.240000px;}
.y1e_c00276{bottom:660.960000px;}
.y4e_c00276{bottom:662.400000px;}
.y1d_c00276{bottom:702.000000px;}
.y4c_c00276{bottom:702.720000px;}
.y4b_c00276{bottom:703.440000px;}
.y1c_c00276{bottom:704.160000px;}
.y4d_c00276{bottom:704.880000px;}
.y4a_c00276{bottom:705.600000px;}
.y19_c00276{bottom:745.200000px;}
.y1b_c00276{bottom:745.920000px;}
.y48_c00276{bottom:746.640000px;}
.y18_c00276{bottom:747.360000px;}
.y49_c00276{bottom:748.080000px;}
.y1a_c00276{bottom:748.800000px;}
.y17_c00276{bottom:788.400000px;}
.y46_c00276{bottom:789.120000px;}
.y16_c00276{bottom:790.560000px;}
.y47_c00276{bottom:791.280000px;}
.y45_c00276{bottom:792.000000px;}
.y13_c00276{bottom:831.600000px;}
.y15_c00276{bottom:832.320000px;}
.y12_c00276{bottom:833.040000px;}
.y44_c00276{bottom:833.760000px;}
.y14_c00276{bottom:835.200000px;}
.y11_c00276{bottom:874.080000px;}
.yf_c00276{bottom:875.520000px;}
.y43_c00276{bottom:876.240000px;}
.ye_c00276{bottom:876.960000px;}
.y10_c00276{bottom:879.120000px;}
.y42_c00276{bottom:895.680000px;}
.yb_c00276{bottom:918.720000px;}
.yd_c00276{bottom:919.440000px;}
.ya_c00276{bottom:920.160000px;}
.y41_c00276{bottom:920.880000px;}
.yc_c00276{bottom:923.040000px;}
.y8_c00276{bottom:961.920000px;}
.y7_c00276{bottom:962.640000px;}
.y9_c00276{bottom:966.240000px;}
.y6_c00276{bottom:1005.120000px;}
.y4_c00276{bottom:1006.560000px;}
.y5_c00276{bottom:1008.000000px;}
.y2_c00276{bottom:1048.320000px;}
.y1_c00276{bottom:1049.040000px;}
.y3_c00276{bottom:1051.200000px;}
.y40_c00276{bottom:1092.240000px;}
.he_c00276{height:25.917187px;}
.h6_c00276{height:28.508906px;}
.hf_c00276{height:36.284062px;}
.hd_c00276{height:38.875781px;}
.h10_c00276{height:41.467500px;}
.h8_c00276{height:46.650937px;}
.hc_c00276{height:49.242656px;}
.h4_c00276{height:51.834375px;}
.h9_c00276{height:54.426094px;}
.hb_c00276{height:57.017812px;}
.h5_c00276{height:59.609531px;}
.h2_c00276{height:62.201250px;}
.h11_c00276{height:63.066094px;}
.ha_c00276{height:64.792969px;}
.h7_c00276{height:67.384687px;}
.h3_c00276{height:69.976406px;}
.h12_c00276{height:72.568125px;}
.h0_c00276{height:1156.320000px;}
.h1_c00276{height:1156.500000px;}
.w0_c00276{width:781.200000px;}
.w1_c00276{width:781.500000px;}
.x0_c00276{left:0.000000px;}
.x5_c00276{left:75.600000px;}
.x1_c00276{left:80.640000px;}
.xb_c00276{left:82.080000px;}
.x18_c00276{left:83.520000px;}
.x6_c00276{left:123.120000px;}
.x2_c00276{left:153.360000px;}
.x12_c00276{left:238.320000px;}
.xf_c00276{left:239.760000px;}
.xc_c00276{left:241.200000px;}
.x1b_c00276{left:252.000000px;}
.x2d_c00276{left:273.600000px;}
.x7_c00276{left:282.960000px;}
.x15_c00276{left:284.400000px;}
.x10_c00276{left:294.480000px;}
.x9_c00276{left:304.560000px;}
.x3_c00276{left:316.080000px;}
.x16_c00276{left:327.600000px;}
.x8_c00276{left:337.680000px;}
.x13_c00276{left:339.120000px;}
.xa_c00276{left:349.200000px;}
.x2f_c00276{left:359.280000px;}
.xd_c00276{left:370.080000px;}
.x4_c00276{left:371.520000px;}
.x11_c00276{left:380.880000px;}
.x1d_c00276{left:402.480000px;}
.x19_c00276{left:414.000000px;}
.xe_c00276{left:424.080000px;}
.x1c_c00276{left:434.160000px;}
.x1a_c00276{left:455.760000px;}
.x14_c00276{left:468.000000px;}
.x2e_c00276{left:498.960000px;}
.x31_c00276{left:509.760000px;}
.x17_c00276{left:522.000000px;}
.x2b_c00276{left:565.200000px;}
.x30_c00276{left:574.560000px;}
.x1f_c00276{left:576.000000px;}
.x20_c00276{left:596.880000px;}
.x26_c00276{left:598.320000px;}
.x27_c00276{left:609.120000px;}
.x2a_c00276{left:628.560000px;}
.x22_c00276{left:630.720000px;}
.x29_c00276{left:661.680000px;}
.x23_c00276{left:663.120000px;}
.x1e_c00276{left:681.840000px;}
.x2c_c00276{left:694.800000px;}
.x28_c00276{left:704.160000px;}
.x21_c00276{left:705.600000px;}
.x24_c00276{left:725.760000px;}
.x25_c00276{left:757.440000px;}
@media print{
.v3_c00276{vertical-align:-10.240000pt;}
.v1_c00276{vertical-align:-2.560000pt;}
.v0_c00276{vertical-align:0.000000pt;}
.v2_c00276{vertical-align:7.680000pt;}
.ls0_c00276{letter-spacing:0.000000pt;}
.ws6_c00276{word-spacing:0.000000pt;}
.ws4_c00276{word-spacing:0.051627pt;}
.ws1_c00276{word-spacing:8.187003pt;}
.ws2_c00276{word-spacing:8.188800pt;}
.ws3_c00276{word-spacing:10.393905pt;}
.ws5_c00276{word-spacing:12.599467pt;}
.ws0_c00276{word-spacing:44.951467pt;}
.fsc_c00276{font-size:25.600000pt;}
.fs4_c00276{font-size:28.160000pt;}
.fsd_c00276{font-size:35.840000pt;}
.fsb_c00276{font-size:38.400000pt;}
.fse_c00276{font-size:40.960000pt;}
.fs6_c00276{font-size:46.080000pt;}
.fsa_c00276{font-size:48.640000pt;}
.fs2_c00276{font-size:51.200000pt;}
.fs7_c00276{font-size:53.760000pt;}
.fs9_c00276{font-size:56.320000pt;}
.fs3_c00276{font-size:58.880000pt;}
.fs0_c00276{font-size:61.440000pt;}
.fs8_c00276{font-size:64.000000pt;}
.fs5_c00276{font-size:66.560000pt;}
.fs1_c00276{font-size:69.120000pt;}
.fsf_c00276{font-size:71.680000pt;}
.y0_c00276{bottom:0.000000pt;}
.y74_c00276{bottom:48.640000pt;}
.y73_c00276{bottom:49.280000pt;}
.y72_c00276{bottom:49.920000pt;}
.y75_c00276{bottom:50.560000pt;}
.y71_c00276{bottom:51.200000pt;}
.y6e_c00276{bottom:86.400000pt;}
.y70_c00276{bottom:88.960000pt;}
.y6f_c00276{bottom:89.600000pt;}
.y6d_c00276{bottom:90.880000pt;}
.y68_c00276{bottom:124.800000pt;}
.y6a_c00276{bottom:125.440000pt;}
.y69_c00276{bottom:127.360000pt;}
.y6b_c00276{bottom:128.000000pt;}
.y6c_c00276{bottom:128.640000pt;}
.y67_c00276{bottom:129.280000pt;}
.y63_c00276{bottom:163.200000pt;}
.y66_c00276{bottom:165.760000pt;}
.y65_c00276{bottom:166.400000pt;}
.y62_c00276{bottom:167.040000pt;}
.y64_c00276{bottom:167.680000pt;}
.y3d_c00276{bottom:201.600000pt;}
.y3e_c00276{bottom:202.240000pt;}
.y60_c00276{bottom:203.520000pt;}
.y61_c00276{bottom:204.160000pt;}
.y3f_c00276{bottom:204.800000pt;}
.y3c_c00276{bottom:205.440000pt;}
.y3a_c00276{bottom:240.640000pt;}
.y3b_c00276{bottom:241.280000pt;}
.y5e_c00276{bottom:242.560000pt;}
.y5d_c00276{bottom:243.200000pt;}
.y39_c00276{bottom:243.840000pt;}
.y5f_c00276{bottom:244.480000pt;}
.y38_c00276{bottom:279.040000pt;}
.y5b_c00276{bottom:280.960000pt;}
.y37_c00276{bottom:281.600000pt;}
.y5a_c00276{bottom:282.240000pt;}
.y5c_c00276{bottom:282.880000pt;}
.y35_c00276{bottom:317.440000pt;}
.y59_c00276{bottom:318.720000pt;}
.y58_c00276{bottom:319.360000pt;}
.y34_c00276{bottom:320.000000pt;}
.y36_c00276{bottom:320.640000pt;}
.y33_c00276{bottom:355.840000pt;}
.y57_c00276{bottom:357.760000pt;}
.y56_c00276{bottom:358.400000pt;}
.y32_c00276{bottom:359.040000pt;}
.y30_c00276{bottom:394.240000pt;}
.y31_c00276{bottom:394.880000pt;}
.y55_c00276{bottom:396.160000pt;}
.y2e_c00276{bottom:397.440000pt;}
.y2f_c00276{bottom:398.080000pt;}
.y2d_c00276{bottom:432.640000pt;}
.y2b_c00276{bottom:433.280000pt;}
.y54_c00276{bottom:434.560000pt;}
.y2a_c00276{bottom:435.200000pt;}
.y2c_c00276{bottom:436.480000pt;}
.y27_c00276{bottom:471.680000pt;}
.y53_c00276{bottom:472.960000pt;}
.y26_c00276{bottom:473.600000pt;}
.y28_c00276{bottom:474.240000pt;}
.y29_c00276{bottom:474.880000pt;}
.y24_c00276{bottom:509.440000pt;}
.y52_c00276{bottom:510.720000pt;}
.y23_c00276{bottom:511.360000pt;}
.y25_c00276{bottom:513.280000pt;}
.y21_c00276{bottom:547.840000pt;}
.y51_c00276{bottom:548.480000pt;}
.y50_c00276{bottom:549.120000pt;}
.y20_c00276{bottom:549.760000pt;}
.y22_c00276{bottom:550.400000pt;}
.y1f_c00276{bottom:586.240000pt;}
.y4f_c00276{bottom:586.880000pt;}
.y1e_c00276{bottom:587.520000pt;}
.y4e_c00276{bottom:588.800000pt;}
.y1d_c00276{bottom:624.000000pt;}
.y4c_c00276{bottom:624.640000pt;}
.y4b_c00276{bottom:625.280000pt;}
.y1c_c00276{bottom:625.920000pt;}
.y4d_c00276{bottom:626.560000pt;}
.y4a_c00276{bottom:627.200000pt;}
.y19_c00276{bottom:662.400000pt;}
.y1b_c00276{bottom:663.040000pt;}
.y48_c00276{bottom:663.680000pt;}
.y18_c00276{bottom:664.320000pt;}
.y49_c00276{bottom:664.960000pt;}
.y1a_c00276{bottom:665.600000pt;}
.y17_c00276{bottom:700.800000pt;}
.y46_c00276{bottom:701.440000pt;}
.y16_c00276{bottom:702.720000pt;}
.y47_c00276{bottom:703.360000pt;}
.y45_c00276{bottom:704.000000pt;}
.y13_c00276{bottom:739.200000pt;}
.y15_c00276{bottom:739.840000pt;}
.y12_c00276{bottom:740.480000pt;}
.y44_c00276{bottom:741.120000pt;}
.y14_c00276{bottom:742.400000pt;}
.y11_c00276{bottom:776.960000pt;}
.yf_c00276{bottom:778.240000pt;}
.y43_c00276{bottom:778.880000pt;}
.ye_c00276{bottom:779.520000pt;}
.y10_c00276{bottom:781.440000pt;}
.y42_c00276{bottom:796.160000pt;}
.yb_c00276{bottom:816.640000pt;}
.yd_c00276{bottom:817.280000pt;}
.ya_c00276{bottom:817.920000pt;}
.y41_c00276{bottom:818.560000pt;}
.yc_c00276{bottom:820.480000pt;}
.y8_c00276{bottom:855.040000pt;}
.y7_c00276{bottom:855.680000pt;}
.y9_c00276{bottom:858.880000pt;}
.y6_c00276{bottom:893.440000pt;}
.y4_c00276{bottom:894.720000pt;}
.y5_c00276{bottom:896.000000pt;}
.y2_c00276{bottom:931.840000pt;}
.y1_c00276{bottom:932.480000pt;}
.y3_c00276{bottom:934.400000pt;}
.y40_c00276{bottom:970.880000pt;}
.he_c00276{height:23.037500pt;}
.h6_c00276{height:25.341250pt;}
.hf_c00276{height:32.252500pt;}
.hd_c00276{height:34.556250pt;}
.h10_c00276{height:36.860000pt;}
.h8_c00276{height:41.467500pt;}
.hc_c00276{height:43.771250pt;}
.h4_c00276{height:46.075000pt;}
.h9_c00276{height:48.378750pt;}
.hb_c00276{height:50.682500pt;}
.h5_c00276{height:52.986250pt;}
.h2_c00276{height:55.290000pt;}
.h11_c00276{height:56.058750pt;}
.ha_c00276{height:57.593750pt;}
.h7_c00276{height:59.897500pt;}
.h3_c00276{height:62.201250pt;}
.h12_c00276{height:64.505000pt;}
.h0_c00276{height:1027.840000pt;}
.h1_c00276{height:1028.000000pt;}
.w0_c00276{width:694.400000pt;}
.w1_c00276{width:694.666667pt;}
.x0_c00276{left:0.000000pt;}
.x5_c00276{left:67.200000pt;}
.x1_c00276{left:71.680000pt;}
.xb_c00276{left:72.960000pt;}
.x18_c00276{left:74.240000pt;}
.x6_c00276{left:109.440000pt;}
.x2_c00276{left:136.320000pt;}
.x12_c00276{left:211.840000pt;}
.xf_c00276{left:213.120000pt;}
.xc_c00276{left:214.400000pt;}
.x1b_c00276{left:224.000000pt;}
.x2d_c00276{left:243.200000pt;}
.x7_c00276{left:251.520000pt;}
.x15_c00276{left:252.800000pt;}
.x10_c00276{left:261.760000pt;}
.x9_c00276{left:270.720000pt;}
.x3_c00276{left:280.960000pt;}
.x16_c00276{left:291.200000pt;}
.x8_c00276{left:300.160000pt;}
.x13_c00276{left:301.440000pt;}
.xa_c00276{left:310.400000pt;}
.x2f_c00276{left:319.360000pt;}
.xd_c00276{left:328.960000pt;}
.x4_c00276{left:330.240000pt;}
.x11_c00276{left:338.560000pt;}
.x1d_c00276{left:357.760000pt;}
.x19_c00276{left:368.000000pt;}
.xe_c00276{left:376.960000pt;}
.x1c_c00276{left:385.920000pt;}
.x1a_c00276{left:405.120000pt;}
.x14_c00276{left:416.000000pt;}
.x2e_c00276{left:443.520000pt;}
.x31_c00276{left:453.120000pt;}
.x17_c00276{left:464.000000pt;}
.x2b_c00276{left:502.400000pt;}
.x30_c00276{left:510.720000pt;}
.x1f_c00276{left:512.000000pt;}
.x20_c00276{left:530.560000pt;}
.x26_c00276{left:531.840000pt;}
.x27_c00276{left:541.440000pt;}
.x2a_c00276{left:558.720000pt;}
.x22_c00276{left:560.640000pt;}
.x29_c00276{left:588.160000pt;}
.x23_c00276{left:589.440000pt;}
.x1e_c00276{left:606.080000pt;}
.x2c_c00276{left:617.600000pt;}
.x28_c00276{left:625.920000pt;}
.x21_c00276{left:627.200000pt;}
.x24_c00276{left:645.120000pt;}
.x25_c00276{left:673.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3193c28f768261e688496bfb.woff2')format("woff");}.ff1_c00277{font-family:ff1_c00277;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m34_c00277{transform:matrix(0.177600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177600,0.000000,0.000000,0.250000,0,0);}
.m15_c00277{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m13_c00277{transform:matrix(0.233525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233525,0.000000,0.000000,0.250000,0,0);}
.m16_c00277{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m38_c00277{transform:matrix(0.240450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240450,0.000000,0.000000,0.250000,0,0);}
.m25_c00277{transform:matrix(0.243150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243150,0.000000,0.000000,0.250000,0,0);}
.m10_c00277{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);}
.m29_c00277{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m33_c00277{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m21_c00277{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m7_c00277{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00277{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00277{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00277{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m12_c00277{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m27_c00277{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00277{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);}
.m31_c00277{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.ma_c00277{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m28_c00277{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m8_c00277{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_c00277{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00277{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m23_c00277{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00277{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mc_c00277{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m37_c00277{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m9_c00277{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00277{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m14_c00277{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m0_c00277{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00277{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m32_c00277{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m17_c00277{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.md_c00277{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m19_c00277{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m26_c00277{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m5_c00277{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m20_c00277{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00277{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m18_c00277{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m30_c00277{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00277{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.mb_c00277{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m1_c00277{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m36_c00277{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);}
.m2c_c00277{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);}
.mf_c00277{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);}
.me_c00277{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);}
.m3c_c00277{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);}
.m24_c00277{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);}
.m2b_c00277{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m3_c00277{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);}
.m4_c00277{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00277{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m22_c00277{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m6_c00277{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m11_c00277{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m39_c00277{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00277{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m35_c00277{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.v2_c00277{vertical-align:-5.760000px;}
.v0_c00277{vertical-align:0.000000px;}
.v1_c00277{vertical-align:8.640000px;}
.ls1_c00277{letter-spacing:0.000000px;}
.ls0_c00277{letter-spacing:170.642400px;}
.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:-6.812880px;}
.ws1_c00277{word-spacing:0.000000px;}
.fc0_c00277{color:transparent;}
.fsc_c00277{font-size:34.560000px;}
.fs7_c00277{font-size:40.320000px;}
.fs4_c00277{font-size:48.960000px;}
.fs3_c00277{font-size:51.840000px;}
.fs5_c00277{font-size:54.720000px;}
.fs6_c00277{font-size:57.600000px;}
.fs1_c00277{font-size:60.480000px;}
.fsb_c00277{font-size:63.360000px;}
.fsa_c00277{font-size:66.240000px;}
.fs9_c00277{font-size:69.120000px;}
.fs8_c00277{font-size:72.000000px;}
.fs2_c00277{font-size:74.880000px;}
.fs0_c00277{font-size:77.760000px;}
.y0_c00277{bottom:0.000000px;}
.y6d_c00277{bottom:60.480000px;}
.y5a_c00277{bottom:64.800000px;}
.y5b_c00277{bottom:65.520000px;}
.y6c_c00277{bottom:105.120000px;}
.y57_c00277{bottom:108.720000px;}
.y59_c00277{bottom:109.440000px;}
.y58_c00277{bottom:111.600000px;}
.y6b_c00277{bottom:148.320000px;}
.y54_c00277{bottom:151.920000px;}
.y56_c00277{bottom:152.640000px;}
.y55_c00277{bottom:153.360000px;}
.y68_c00277{bottom:190.800000px;}
.y6a_c00277{bottom:192.960000px;}
.y51_c00277{bottom:195.840000px;}
.y69_c00277{bottom:196.560000px;}
.y53_c00277{bottom:197.280000px;}
.y52_c00277{bottom:198.000000px;}
.y66_c00277{bottom:234.720000px;}
.y4f_c00277{bottom:237.600000px;}
.y67_c00277{bottom:238.320000px;}
.y50_c00277{bottom:239.040000px;}
.y3b_c00277{bottom:277.200000px;}
.y3c_c00277{bottom:279.360000px;}
.y4e_c00277{bottom:281.520000px;}
.y3a_c00277{bottom:282.240000px;}
.y4d_c00277{bottom:283.680000px;}
.y63_c00277{bottom:321.120000px;}
.y65_c00277{bottom:321.840000px;}
.y64_c00277{bottom:322.560000px;}
.y4a_c00277{bottom:324.720000px;}
.y4c_c00277{bottom:326.160000px;}
.y4b_c00277{bottom:326.880000px;}
.y62_c00277{bottom:363.600000px;}
.y46_c00277{bottom:367.200000px;}
.y47_c00277{bottom:367.920000px;}
.y48_c00277{bottom:368.640000px;}
.y49_c00277{bottom:370.800000px;}
.y61_c00277{bottom:406.800000px;}
.y5f_c00277{bottom:408.960000px;}
.y44_c00277{bottom:409.680000px;}
.y43_c00277{bottom:410.400000px;}
.y60_c00277{bottom:411.120000px;}
.y45_c00277{bottom:411.840000px;}
.y5d_c00277{bottom:450.000000px;}
.y5e_c00277{bottom:450.720000px;}
.y5c_c00277{bottom:452.880000px;}
.y40_c00277{bottom:453.600000px;}
.y41_c00277{bottom:454.320000px;}
.y42_c00277{bottom:455.040000px;}
.y37_c00277{bottom:493.200000px;}
.y39_c00277{bottom:493.920000px;}
.y38_c00277{bottom:494.640000px;}
.y36_c00277{bottom:495.360000px;}
.y3f_c00277{bottom:496.080000px;}
.y3e_c00277{bottom:496.800000px;}
.y35_c00277{bottom:536.400000px;}
.y3d_c00277{bottom:538.560000px;}
.y34_c00277{bottom:539.280000px;}
.y33_c00277{bottom:579.600000px;}
.y32_c00277{bottom:581.040000px;}
.y2e_c00277{bottom:612.000000px;}
.y2f_c00277{bottom:612.720000px;}
.y31_c00277{bottom:614.160000px;}
.y2c_c00277{bottom:614.880000px;}
.y2d_c00277{bottom:615.600000px;}
.y30_c00277{bottom:616.320000px;}
.y28_c00277{bottom:655.200000px;}
.y29_c00277{bottom:657.360000px;}
.y27_c00277{bottom:658.080000px;}
.y2b_c00277{bottom:658.800000px;}
.y2a_c00277{bottom:659.520000px;}
.y26_c00277{bottom:698.400000px;}
.y1f_c00277{bottom:700.560000px;}
.y1e_c00277{bottom:701.280000px;}
.y25_c00277{bottom:741.600000px;}
.y1d_c00277{bottom:743.760000px;}
.y1c_c00277{bottom:744.480000px;}
.y23_c00277{bottom:784.800000px;}
.y24_c00277{bottom:785.520000px;}
.y1b_c00277{bottom:786.240000px;}
.y1a_c00277{bottom:786.960000px;}
.y18_c00277{bottom:787.680000px;}
.y19_c00277{bottom:789.840000px;}
.y20_c00277{bottom:828.000000px;}
.y22_c00277{bottom:828.720000px;}
.y16_c00277{bottom:830.160000px;}
.y17_c00277{bottom:831.600000px;}
.y15_c00277{bottom:832.320000px;}
.y21_c00277{bottom:833.040000px;}
.y14_c00277{bottom:874.080000px;}
.y13_c00277{bottom:874.800000px;}
.yf_c00277{bottom:913.680000px;}
.y10_c00277{bottom:915.120000px;}
.ye_c00277{bottom:915.840000px;}
.y12_c00277{bottom:918.720000px;}
.yc_c00277{bottom:957.600000px;}
.yb_c00277{bottom:958.320000px;}
.yd_c00277{bottom:960.480000px;}
.y8_c00277{bottom:1000.800000px;}
.y7_c00277{bottom:1001.520000px;}
.y11_c00277{bottom:1002.960000px;}
.y9_c00277{bottom:1003.680000px;}
.ya_c00277{bottom:1004.400000px;}
.y4_c00277{bottom:1043.280000px;}
.y6_c00277{bottom:1044.000000px;}
.y2_c00277{bottom:1044.720000px;}
.y3_c00277{bottom:1045.440000px;}
.y5_c00277{bottom:1047.600000px;}
.y1_c00277{bottom:1096.560000px;}
.hf_c00277{height:31.100625px;}
.ha_c00277{height:36.284062px;}
.h7_c00277{height:44.059219px;}
.h5_c00277{height:46.650937px;}
.h8_c00277{height:49.242656px;}
.h9_c00277{height:51.834375px;}
.h3_c00277{height:54.426094px;}
.h6_c00277{height:55.290938px;}
.he_c00277{height:57.017812px;}
.hd_c00277{height:59.609531px;}
.hc_c00277{height:62.201250px;}
.hb_c00277{height:64.792969px;}
.h4_c00277{height:67.384687px;}
.h2_c00277{height:69.976406px;}
.h1_c00277{height:1151.250000px;}
.h0_c00277{height:1151.280000px;}
.w0_c00277{width:774.720000px;}
.w1_c00277{width:774.750000px;}
.x0_c00277{left:0.000000px;}
.x2_c00277{left:77.040000px;}
.x17_c00277{left:78.480000px;}
.x1d_c00277{left:79.920000px;}
.x1f_c00277{left:81.360000px;}
.x30_c00277{left:82.800000px;}
.x3_c00277{left:149.760000px;}
.x20_c00277{left:151.200000px;}
.x2f_c00277{left:153.360000px;}
.x29_c00277{left:185.760000px;}
.x18_c00277{left:194.400000px;}
.x1c_c00277{left:205.200000px;}
.x4_c00277{left:206.640000px;}
.x27_c00277{left:227.520000px;}
.xd_c00277{left:238.320000px;}
.x2a_c00277{left:239.760000px;}
.x28_c00277{left:270.720000px;}
.xe_c00277{left:280.800000px;}
.x5_c00277{left:302.400000px;}
.x15_c00277{left:334.080000px;}
.x19_c00277{left:335.520000px;}
.x2c_c00277{left:336.960000px;}
.xc_c00277{left:345.600000px;}
.x2b_c00277{left:347.040000px;}
.x6_c00277{left:356.400000px;}
.x1e_c00277{left:367.920000px;}
.x16_c00277{left:378.720000px;}
.x2d_c00277{left:388.800000px;}
.x21_c00277{left:422.640000px;}
.x1a_c00277{left:432.000000px;}
.x2e_c00277{left:433.440000px;}
.x7_c00277{left:486.000000px;}
.x1b_c00277{left:529.920000px;}
.x8_c00277{left:540.000000px;}
.xf_c00277{left:572.400000px;}
.x11_c00277{left:573.840000px;}
.x10_c00277{left:594.000000px;}
.x26_c00277{left:606.240000px;}
.x22_c00277{left:616.320000px;}
.x9_c00277{left:626.400000px;}
.x13_c00277{left:627.840000px;}
.xa_c00277{left:660.240000px;}
.x23_c00277{left:671.040000px;}
.x12_c00277{left:692.640000px;}
.x1_c00277{left:694.800000px;}
.xb_c00277{left:702.000000px;}
.x14_c00277{left:703.440000px;}
.x24_c00277{left:712.800000px;}
.x25_c00277{left:723.600000px;}
@media print{
.v2_c00277{vertical-align:-5.120000pt;}
.v0_c00277{vertical-align:0.000000pt;}
.v1_c00277{vertical-align:7.680000pt;}
.ls1_c00277{letter-spacing:0.000000pt;}
.ls0_c00277{letter-spacing:151.682133pt;}
.ws0_c00277{word-spacing:-6.055893pt;}
.ws1_c00277{word-spacing:0.000000pt;}
.fsc_c00277{font-size:30.720000pt;}
.fs7_c00277{font-size:35.840000pt;}
.fs4_c00277{font-size:43.520000pt;}
.fs3_c00277{font-size:46.080000pt;}
.fs5_c00277{font-size:48.640000pt;}
.fs6_c00277{font-size:51.200000pt;}
.fs1_c00277{font-size:53.760000pt;}
.fsb_c00277{font-size:56.320000pt;}
.fsa_c00277{font-size:58.880000pt;}
.fs9_c00277{font-size:61.440000pt;}
.fs8_c00277{font-size:64.000000pt;}
.fs2_c00277{font-size:66.560000pt;}
.fs0_c00277{font-size:69.120000pt;}
.y0_c00277{bottom:0.000000pt;}
.y6d_c00277{bottom:53.760000pt;}
.y5a_c00277{bottom:57.600000pt;}
.y5b_c00277{bottom:58.240000pt;}
.y6c_c00277{bottom:93.440000pt;}
.y57_c00277{bottom:96.640000pt;}
.y59_c00277{bottom:97.280000pt;}
.y58_c00277{bottom:99.200000pt;}
.y6b_c00277{bottom:131.840000pt;}
.y54_c00277{bottom:135.040000pt;}
.y56_c00277{bottom:135.680000pt;}
.y55_c00277{bottom:136.320000pt;}
.y68_c00277{bottom:169.600000pt;}
.y6a_c00277{bottom:171.520000pt;}
.y51_c00277{bottom:174.080000pt;}
.y69_c00277{bottom:174.720000pt;}
.y53_c00277{bottom:175.360000pt;}
.y52_c00277{bottom:176.000000pt;}
.y66_c00277{bottom:208.640000pt;}
.y4f_c00277{bottom:211.200000pt;}
.y67_c00277{bottom:211.840000pt;}
.y50_c00277{bottom:212.480000pt;}
.y3b_c00277{bottom:246.400000pt;}
.y3c_c00277{bottom:248.320000pt;}
.y4e_c00277{bottom:250.240000pt;}
.y3a_c00277{bottom:250.880000pt;}
.y4d_c00277{bottom:252.160000pt;}
.y63_c00277{bottom:285.440000pt;}
.y65_c00277{bottom:286.080000pt;}
.y64_c00277{bottom:286.720000pt;}
.y4a_c00277{bottom:288.640000pt;}
.y4c_c00277{bottom:289.920000pt;}
.y4b_c00277{bottom:290.560000pt;}
.y62_c00277{bottom:323.200000pt;}
.y46_c00277{bottom:326.400000pt;}
.y47_c00277{bottom:327.040000pt;}
.y48_c00277{bottom:327.680000pt;}
.y49_c00277{bottom:329.600000pt;}
.y61_c00277{bottom:361.600000pt;}
.y5f_c00277{bottom:363.520000pt;}
.y44_c00277{bottom:364.160000pt;}
.y43_c00277{bottom:364.800000pt;}
.y60_c00277{bottom:365.440000pt;}
.y45_c00277{bottom:366.080000pt;}
.y5d_c00277{bottom:400.000000pt;}
.y5e_c00277{bottom:400.640000pt;}
.y5c_c00277{bottom:402.560000pt;}
.y40_c00277{bottom:403.200000pt;}
.y41_c00277{bottom:403.840000pt;}
.y42_c00277{bottom:404.480000pt;}
.y37_c00277{bottom:438.400000pt;}
.y39_c00277{bottom:439.040000pt;}
.y38_c00277{bottom:439.680000pt;}
.y36_c00277{bottom:440.320000pt;}
.y3f_c00277{bottom:440.960000pt;}
.y3e_c00277{bottom:441.600000pt;}
.y35_c00277{bottom:476.800000pt;}
.y3d_c00277{bottom:478.720000pt;}
.y34_c00277{bottom:479.360000pt;}
.y33_c00277{bottom:515.200000pt;}
.y32_c00277{bottom:516.480000pt;}
.y2e_c00277{bottom:544.000000pt;}
.y2f_c00277{bottom:544.640000pt;}
.y31_c00277{bottom:545.920000pt;}
.y2c_c00277{bottom:546.560000pt;}
.y2d_c00277{bottom:547.200000pt;}
.y30_c00277{bottom:547.840000pt;}
.y28_c00277{bottom:582.400000pt;}
.y29_c00277{bottom:584.320000pt;}
.y27_c00277{bottom:584.960000pt;}
.y2b_c00277{bottom:585.600000pt;}
.y2a_c00277{bottom:586.240000pt;}
.y26_c00277{bottom:620.800000pt;}
.y1f_c00277{bottom:622.720000pt;}
.y1e_c00277{bottom:623.360000pt;}
.y25_c00277{bottom:659.200000pt;}
.y1d_c00277{bottom:661.120000pt;}
.y1c_c00277{bottom:661.760000pt;}
.y23_c00277{bottom:697.600000pt;}
.y24_c00277{bottom:698.240000pt;}
.y1b_c00277{bottom:698.880000pt;}
.y1a_c00277{bottom:699.520000pt;}
.y18_c00277{bottom:700.160000pt;}
.y19_c00277{bottom:702.080000pt;}
.y20_c00277{bottom:736.000000pt;}
.y22_c00277{bottom:736.640000pt;}
.y16_c00277{bottom:737.920000pt;}
.y17_c00277{bottom:739.200000pt;}
.y15_c00277{bottom:739.840000pt;}
.y21_c00277{bottom:740.480000pt;}
.y14_c00277{bottom:776.960000pt;}
.y13_c00277{bottom:777.600000pt;}
.yf_c00277{bottom:812.160000pt;}
.y10_c00277{bottom:813.440000pt;}
.ye_c00277{bottom:814.080000pt;}
.y12_c00277{bottom:816.640000pt;}
.yc_c00277{bottom:851.200000pt;}
.yb_c00277{bottom:851.840000pt;}
.yd_c00277{bottom:853.760000pt;}
.y8_c00277{bottom:889.600000pt;}
.y7_c00277{bottom:890.240000pt;}
.y11_c00277{bottom:891.520000pt;}
.y9_c00277{bottom:892.160000pt;}
.ya_c00277{bottom:892.800000pt;}
.y4_c00277{bottom:927.360000pt;}
.y6_c00277{bottom:928.000000pt;}
.y2_c00277{bottom:928.640000pt;}
.y3_c00277{bottom:929.280000pt;}
.y5_c00277{bottom:931.200000pt;}
.y1_c00277{bottom:974.720000pt;}
.hf_c00277{height:27.645000pt;}
.ha_c00277{height:32.252500pt;}
.h7_c00277{height:39.163750pt;}
.h5_c00277{height:41.467500pt;}
.h8_c00277{height:43.771250pt;}
.h9_c00277{height:46.075000pt;}
.h3_c00277{height:48.378750pt;}
.h6_c00277{height:49.147500pt;}
.he_c00277{height:50.682500pt;}
.hd_c00277{height:52.986250pt;}
.hc_c00277{height:55.290000pt;}
.hb_c00277{height:57.593750pt;}
.h4_c00277{height:59.897500pt;}
.h2_c00277{height:62.201250pt;}
.h1_c00277{height:1023.333333pt;}
.h0_c00277{height:1023.360000pt;}
.w0_c00277{width:688.640000pt;}
.w1_c00277{width:688.666667pt;}
.x0_c00277{left:0.000000pt;}
.x2_c00277{left:68.480000pt;}
.x17_c00277{left:69.760000pt;}
.x1d_c00277{left:71.040000pt;}
.x1f_c00277{left:72.320000pt;}
.x30_c00277{left:73.600000pt;}
.x3_c00277{left:133.120000pt;}
.x20_c00277{left:134.400000pt;}
.x2f_c00277{left:136.320000pt;}
.x29_c00277{left:165.120000pt;}
.x18_c00277{left:172.800000pt;}
.x1c_c00277{left:182.400000pt;}
.x4_c00277{left:183.680000pt;}
.x27_c00277{left:202.240000pt;}
.xd_c00277{left:211.840000pt;}
.x2a_c00277{left:213.120000pt;}
.x28_c00277{left:240.640000pt;}
.xe_c00277{left:249.600000pt;}
.x5_c00277{left:268.800000pt;}
.x15_c00277{left:296.960000pt;}
.x19_c00277{left:298.240000pt;}
.x2c_c00277{left:299.520000pt;}
.xc_c00277{left:307.200000pt;}
.x2b_c00277{left:308.480000pt;}
.x6_c00277{left:316.800000pt;}
.x1e_c00277{left:327.040000pt;}
.x16_c00277{left:336.640000pt;}
.x2d_c00277{left:345.600000pt;}
.x21_c00277{left:375.680000pt;}
.x1a_c00277{left:384.000000pt;}
.x2e_c00277{left:385.280000pt;}
.x7_c00277{left:432.000000pt;}
.x1b_c00277{left:471.040000pt;}
.x8_c00277{left:480.000000pt;}
.xf_c00277{left:508.800000pt;}
.x11_c00277{left:510.080000pt;}
.x10_c00277{left:528.000000pt;}
.x26_c00277{left:538.880000pt;}
.x22_c00277{left:547.840000pt;}
.x9_c00277{left:556.800000pt;}
.x13_c00277{left:558.080000pt;}
.xa_c00277{left:586.880000pt;}
.x23_c00277{left:596.480000pt;}
.x12_c00277{left:615.680000pt;}
.x1_c00277{left:617.600000pt;}
.xb_c00277{left:624.000000pt;}
.x14_c00277{left:625.280000pt;}
.x24_c00277{left:633.600000pt;}
.x25_c00277{left:643.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c64f037319a66a894a58aa07.woff2')format("woff");}.ff1_c00278{font-family:ff1_c00278;line-height:1.109863;font-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_c00278{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);}
.m44_c00278{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m36_c00278{transform:matrix(0.244325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244325,0.000000,0.000000,0.250000,0,0);}
.m39_c00278{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m25_c00278{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);}
.m47_c00278{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);}
.m41_c00278{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);}
.m29_c00278{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);}
.m2c_c00278{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m2_c00278{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00278{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_c00278{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);}
.m2a_c00278{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m3_c00278{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00278{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m6_c00278{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);}
.m46_c00278{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m4_c00278{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m5_c00278{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m13_c00278{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m10_c00278{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m30_c00278{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m49_c00278{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.me_c00278{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m9_c00278{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m8_c00278{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00278{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m14_c00278{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00278{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m18_c00278{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m17_c00278{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m16_c00278{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00278{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.md_c00278{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00278{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.ma_c00278{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m23_c00278{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00278{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m34_c00278{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m11_c00278{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m22_c00278{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m1_c00278{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00278{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m24_c00278{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m7_c00278{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m21_c00278{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);}
.m48_c00278{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00278{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);}
.mb_c00278{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00278{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);}
.m2d_c00278{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);}
.m27_c00278{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m33_c00278{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m40_c00278{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m35_c00278{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);}
.m2f_c00278{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00278{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m37_c00278{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);}
.m26_c00278{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m28_c00278{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);}
.m32_c00278{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00278{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00278{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00278{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00278{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);}
.m20_c00278{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00278{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00278{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m12_c00278{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);}
.m38_c00278{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.mc_c00278{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);}
.mf_c00278{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m45_c00278{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m42_c00278{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m19_c00278{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00278{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);}
.m1d_c00278{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m43_c00278{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.v0_c00278{vertical-align:0.000000px;}
.v1_c00278{vertical-align:2.880000px;}
.v2_c00278{vertical-align:5.760000px;}
.ls0_c00278{letter-spacing:0.000000px;}
.sc__c00278{text-shadow:none;}
.sc0_c00278{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00278{-webkit-text-stroke:0px transparent;}
.sc0_c00278{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00278{word-spacing:0.000000px;}
.ws1_c00278{word-spacing:14.238000px;}
.ws0_c00278{word-spacing:46.374000px;}
.fc0_c00278{color:transparent;}
.fsd_c00278{font-size:23.040000px;}
.fs9_c00278{font-size:37.440000px;}
.fsb_c00278{font-size:40.320000px;}
.fse_c00278{font-size:46.080000px;}
.fsa_c00278{font-size:48.960000px;}
.fs8_c00278{font-size:51.840000px;}
.fs5_c00278{font-size:54.720000px;}
.fs4_c00278{font-size:57.600000px;}
.fs1_c00278{font-size:60.480000px;}
.fs7_c00278{font-size:63.360000px;}
.fsc_c00278{font-size:66.240000px;}
.fs6_c00278{font-size:69.120000px;}
.fs2_c00278{font-size:72.000000px;}
.fs0_c00278{font-size:74.880000px;}
.fs3_c00278{font-size:77.760000px;}
.fsf_c00278{font-size:83.520000px;}
.y0_c00278{bottom:0.000000px;}
.y75_c00278{bottom:41.760000px;}
.y74_c00278{bottom:42.480000px;}
.y72_c00278{bottom:69.120000px;}
.y6f_c00278{bottom:72.000000px;}
.y71_c00278{bottom:72.720000px;}
.y70_c00278{bottom:73.440000px;}
.y73_c00278{bottom:74.160000px;}
.y6e_c00278{bottom:74.880000px;}
.y6d_c00278{bottom:117.360000px;}
.y6c_c00278{bottom:118.800000px;}
.y69_c00278{bottom:146.880000px;}
.y6a_c00278{bottom:147.600000px;}
.y6b_c00278{bottom:149.040000px;}
.y68_c00278{bottom:149.760000px;}
.y65_c00278{bottom:178.560000px;}
.y66_c00278{bottom:179.280000px;}
.y67_c00278{bottom:181.440000px;}
.y63_c00278{bottom:182.880000px;}
.y64_c00278{bottom:183.600000px;}
.y62_c00278{bottom:222.480000px;}
.y61_c00278{bottom:223.200000px;}
.y60_c00278{bottom:224.640000px;}
.y5f_c00278{bottom:227.520000px;}
.y5b_c00278{bottom:275.040000px;}
.y5a_c00278{bottom:275.760000px;}
.y5d_c00278{bottom:277.920000px;}
.y5c_c00278{bottom:278.640000px;}
.y59_c00278{bottom:279.360000px;}
.y5e_c00278{bottom:280.080000px;}
.y57_c00278{bottom:319.680000px;}
.y55_c00278{bottom:321.120000px;}
.y58_c00278{bottom:322.560000px;}
.y56_c00278{bottom:323.280000px;}
.y52_c00278{bottom:351.360000px;}
.y54_c00278{bottom:352.800000px;}
.y50_c00278{bottom:353.520000px;}
.y53_c00278{bottom:354.960000px;}
.y51_c00278{bottom:355.680000px;}
.y4b_c00278{bottom:393.840000px;}
.y4d_c00278{bottom:395.280000px;}
.y4a_c00278{bottom:396.000000px;}
.y4e_c00278{bottom:396.720000px;}
.y4f_c00278{bottom:397.440000px;}
.y48_c00278{bottom:398.160000px;}
.y4c_c00278{bottom:398.880000px;}
.y49_c00278{bottom:399.600000px;}
.y47_c00278{bottom:440.640000px;}
.y46_c00278{bottom:443.520000px;}
.y45_c00278{bottom:492.480000px;}
.y44_c00278{bottom:493.920000px;}
.y43_c00278{bottom:496.080000px;}
.y3e_c00278{bottom:524.880000px;}
.y41_c00278{bottom:525.600000px;}
.y42_c00278{bottom:526.320000px;}
.y40_c00278{bottom:527.040000px;}
.y3d_c00278{bottom:527.760000px;}
.y3f_c00278{bottom:528.480000px;}
.y3b_c00278{bottom:568.080000px;}
.y3c_c00278{bottom:568.800000px;}
.y3a_c00278{bottom:569.520000px;}
.y37_c00278{bottom:610.560000px;}
.y38_c00278{bottom:612.000000px;}
.y36_c00278{bottom:613.440000px;}
.y39_c00278{bottom:614.160000px;}
.y35_c00278{bottom:653.040000px;}
.y34_c00278{bottom:653.760000px;}
.y33_c00278{bottom:655.200000px;}
.y32_c00278{bottom:657.360000px;}
.y2e_c00278{bottom:685.440000px;}
.y31_c00278{bottom:686.160000px;}
.y30_c00278{bottom:686.880000px;}
.y2f_c00278{bottom:687.600000px;}
.y2d_c00278{bottom:689.040000px;}
.y2b_c00278{bottom:728.640000px;}
.y2a_c00278{bottom:729.360000px;}
.y2c_c00278{bottom:730.080000px;}
.y29_c00278{bottom:732.240000px;}
.y28_c00278{bottom:771.840000px;}
.y26_c00278{bottom:773.280000px;}
.y27_c00278{bottom:776.160000px;}
.y22_c00278{bottom:804.240000px;}
.y23_c00278{bottom:805.680000px;}
.y21_c00278{bottom:806.400000px;}
.y25_c00278{bottom:807.120000px;}
.y24_c00278{bottom:807.840000px;}
.y1f_c00278{bottom:848.160000px;}
.y1e_c00278{bottom:848.880000px;}
.y20_c00278{bottom:850.320000px;}
.y1b_c00278{bottom:851.040000px;}
.y1c_c00278{bottom:851.760000px;}
.y1d_c00278{bottom:852.480000px;}
.y18_c00278{bottom:879.120000px;}
.y19_c00278{bottom:880.560000px;}
.y16_c00278{bottom:882.000000px;}
.y1a_c00278{bottom:882.720000px;}
.y17_c00278{bottom:883.440000px;}
.y15_c00278{bottom:915.120000px;}
.y12_c00278{bottom:923.040000px;}
.y13_c00278{bottom:923.760000px;}
.y10_c00278{bottom:924.480000px;}
.y14_c00278{bottom:925.200000px;}
.y11_c00278{bottom:927.360000px;}
.yf_c00278{bottom:965.520000px;}
.yd_c00278{bottom:966.240000px;}
.ya_c00278{bottom:968.400000px;}
.ye_c00278{bottom:969.120000px;}
.yb_c00278{bottom:969.840000px;}
.yc_c00278{bottom:970.560000px;}
.y8_c00278{bottom:1009.440000px;}
.y9_c00278{bottom:1010.160000px;}
.y6_c00278{bottom:1011.600000px;}
.y7_c00278{bottom:1012.320000px;}
.y4_c00278{bottom:1052.640000px;}
.y3_c00278{bottom:1053.360000px;}
.y2_c00278{bottom:1054.080000px;}
.y5_c00278{bottom:1054.800000px;}
.y1_c00278{bottom:1118.160000px;}
.hf_c00278{height:20.733750px;}
.hb_c00278{height:33.692344px;}
.hd_c00278{height:36.284062px;}
.h10_c00278{height:41.467500px;}
.hc_c00278{height:44.059219px;}
.ha_c00278{height:46.650937px;}
.h7_c00278{height:49.242656px;}
.h6_c00278{height:51.834375px;}
.h3_c00278{height:54.426094px;}
.h9_c00278{height:57.017812px;}
.h12_c00278{height:57.594375px;}
.he_c00278{height:59.609531px;}
.h8_c00278{height:62.201250px;}
.h4_c00278{height:64.792969px;}
.h2_c00278{height:67.384687px;}
.h5_c00278{height:69.976406px;}
.h11_c00278{height:75.159844px;}
.h0_c00278{height:1159.920000px;}
.h1_c00278{height:1160.250000px;}
.w1_c00278{width:786.000000px;}
.w0_c00278{width:786.240000px;}
.x0_c00278{left:0.000000px;}
.x2_c00278{left:79.200000px;}
.x23_c00278{left:80.640000px;}
.x35_c00278{left:82.080000px;}
.x41_c00278{left:83.520000px;}
.x33_c00278{left:131.760000px;}
.x16_c00278{left:142.560000px;}
.x2e_c00278{left:151.920000px;}
.x3_c00278{left:153.360000px;}
.x39_c00278{left:164.160000px;}
.x3a_c00278{left:185.760000px;}
.x1a_c00278{left:194.400000px;}
.x9_c00278{left:195.840000px;}
.x40_c00278{left:205.200000px;}
.x20_c00278{left:228.960000px;}
.xb_c00278{left:230.400000px;}
.x2f_c00278{left:237.600000px;}
.x18_c00278{left:239.760000px;}
.x34_c00278{left:248.400000px;}
.x4_c00278{left:250.560000px;}
.x3b_c00278{left:259.200000px;}
.x1b_c00278{left:260.640000px;}
.x24_c00278{left:271.440000px;}
.x30_c00278{left:282.240000px;}
.x37_c00278{left:293.760000px;}
.x3f_c00278{left:295.920000px;}
.xc_c00278{left:303.840000px;}
.x28_c00278{left:313.200000px;}
.x1c_c00278{left:315.360000px;}
.x21_c00278{left:324.000000px;}
.x19_c00278{left:326.160000px;}
.x3c_c00278{left:336.240000px;}
.x11_c00278{left:337.680000px;}
.xd_c00278{left:348.480000px;}
.x29_c00278{left:358.560000px;}
.x31_c00278{left:367.920000px;}
.x1d_c00278{left:370.080000px;}
.x5_c00278{left:380.160000px;}
.xe_c00278{left:390.960000px;}
.x3d_c00278{left:400.320000px;}
.x2a_c00278{left:412.560000px;}
.x32_c00278{left:423.360000px;}
.x25_c00278{left:432.720000px;}
.x17_c00278{left:444.960000px;}
.x12_c00278{left:455.760000px;}
.x22_c00278{left:465.840000px;}
.x26_c00278{left:477.360000px;}
.x2b_c00278{left:496.800000px;}
.x13_c00278{left:509.040000px;}
.x1e_c00278{left:518.400000px;}
.xf_c00278{left:520.560000px;}
.x27_c00278{left:530.640000px;}
.x2c_c00278{left:540.720000px;}
.x14_c00278{left:553.680000px;}
.x3e_c00278{left:562.320000px;}
.x1f_c00278{left:563.760000px;}
.xa_c00278{left:595.440000px;}
.x42_c00278{left:627.120000px;}
.x6_c00278{left:628.560000px;}
.x15_c00278{left:630.000000px;}
.x38_c00278{left:659.520000px;}
.x7_c00278{left:661.680000px;}
.x1_c00278{left:676.080000px;}
.x2d_c00278{left:702.720000px;}
.x8_c00278{left:704.160000px;}
.x36_c00278{left:723.600000px;}
.x10_c00278{left:725.040000px;}
@media print{
.v0_c00278{vertical-align:0.000000pt;}
.v1_c00278{vertical-align:2.560000pt;}
.v2_c00278{vertical-align:5.120000pt;}
.ls0_c00278{letter-spacing:0.000000pt;}
.ws2_c00278{word-spacing:0.000000pt;}
.ws1_c00278{word-spacing:12.656000pt;}
.ws0_c00278{word-spacing:41.221333pt;}
.fsd_c00278{font-size:20.480000pt;}
.fs9_c00278{font-size:33.280000pt;}
.fsb_c00278{font-size:35.840000pt;}
.fse_c00278{font-size:40.960000pt;}
.fsa_c00278{font-size:43.520000pt;}
.fs8_c00278{font-size:46.080000pt;}
.fs5_c00278{font-size:48.640000pt;}
.fs4_c00278{font-size:51.200000pt;}
.fs1_c00278{font-size:53.760000pt;}
.fs7_c00278{font-size:56.320000pt;}
.fsc_c00278{font-size:58.880000pt;}
.fs6_c00278{font-size:61.440000pt;}
.fs2_c00278{font-size:64.000000pt;}
.fs0_c00278{font-size:66.560000pt;}
.fs3_c00278{font-size:69.120000pt;}
.fsf_c00278{font-size:74.240000pt;}
.y0_c00278{bottom:0.000000pt;}
.y75_c00278{bottom:37.120000pt;}
.y74_c00278{bottom:37.760000pt;}
.y72_c00278{bottom:61.440000pt;}
.y6f_c00278{bottom:64.000000pt;}
.y71_c00278{bottom:64.640000pt;}
.y70_c00278{bottom:65.280000pt;}
.y73_c00278{bottom:65.920000pt;}
.y6e_c00278{bottom:66.560000pt;}
.y6d_c00278{bottom:104.320000pt;}
.y6c_c00278{bottom:105.600000pt;}
.y69_c00278{bottom:130.560000pt;}
.y6a_c00278{bottom:131.200000pt;}
.y6b_c00278{bottom:132.480000pt;}
.y68_c00278{bottom:133.120000pt;}
.y65_c00278{bottom:158.720000pt;}
.y66_c00278{bottom:159.360000pt;}
.y67_c00278{bottom:161.280000pt;}
.y63_c00278{bottom:162.560000pt;}
.y64_c00278{bottom:163.200000pt;}
.y62_c00278{bottom:197.760000pt;}
.y61_c00278{bottom:198.400000pt;}
.y60_c00278{bottom:199.680000pt;}
.y5f_c00278{bottom:202.240000pt;}
.y5b_c00278{bottom:244.480000pt;}
.y5a_c00278{bottom:245.120000pt;}
.y5d_c00278{bottom:247.040000pt;}
.y5c_c00278{bottom:247.680000pt;}
.y59_c00278{bottom:248.320000pt;}
.y5e_c00278{bottom:248.960000pt;}
.y57_c00278{bottom:284.160000pt;}
.y55_c00278{bottom:285.440000pt;}
.y58_c00278{bottom:286.720000pt;}
.y56_c00278{bottom:287.360000pt;}
.y52_c00278{bottom:312.320000pt;}
.y54_c00278{bottom:313.600000pt;}
.y50_c00278{bottom:314.240000pt;}
.y53_c00278{bottom:315.520000pt;}
.y51_c00278{bottom:316.160000pt;}
.y4b_c00278{bottom:350.080000pt;}
.y4d_c00278{bottom:351.360000pt;}
.y4a_c00278{bottom:352.000000pt;}
.y4e_c00278{bottom:352.640000pt;}
.y4f_c00278{bottom:353.280000pt;}
.y48_c00278{bottom:353.920000pt;}
.y4c_c00278{bottom:354.560000pt;}
.y49_c00278{bottom:355.200000pt;}
.y47_c00278{bottom:391.680000pt;}
.y46_c00278{bottom:394.240000pt;}
.y45_c00278{bottom:437.760000pt;}
.y44_c00278{bottom:439.040000pt;}
.y43_c00278{bottom:440.960000pt;}
.y3e_c00278{bottom:466.560000pt;}
.y41_c00278{bottom:467.200000pt;}
.y42_c00278{bottom:467.840000pt;}
.y40_c00278{bottom:468.480000pt;}
.y3d_c00278{bottom:469.120000pt;}
.y3f_c00278{bottom:469.760000pt;}
.y3b_c00278{bottom:504.960000pt;}
.y3c_c00278{bottom:505.600000pt;}
.y3a_c00278{bottom:506.240000pt;}
.y37_c00278{bottom:542.720000pt;}
.y38_c00278{bottom:544.000000pt;}
.y36_c00278{bottom:545.280000pt;}
.y39_c00278{bottom:545.920000pt;}
.y35_c00278{bottom:580.480000pt;}
.y34_c00278{bottom:581.120000pt;}
.y33_c00278{bottom:582.400000pt;}
.y32_c00278{bottom:584.320000pt;}
.y2e_c00278{bottom:609.280000pt;}
.y31_c00278{bottom:609.920000pt;}
.y30_c00278{bottom:610.560000pt;}
.y2f_c00278{bottom:611.200000pt;}
.y2d_c00278{bottom:612.480000pt;}
.y2b_c00278{bottom:647.680000pt;}
.y2a_c00278{bottom:648.320000pt;}
.y2c_c00278{bottom:648.960000pt;}
.y29_c00278{bottom:650.880000pt;}
.y28_c00278{bottom:686.080000pt;}
.y26_c00278{bottom:687.360000pt;}
.y27_c00278{bottom:689.920000pt;}
.y22_c00278{bottom:714.880000pt;}
.y23_c00278{bottom:716.160000pt;}
.y21_c00278{bottom:716.800000pt;}
.y25_c00278{bottom:717.440000pt;}
.y24_c00278{bottom:718.080000pt;}
.y1f_c00278{bottom:753.920000pt;}
.y1e_c00278{bottom:754.560000pt;}
.y20_c00278{bottom:755.840000pt;}
.y1b_c00278{bottom:756.480000pt;}
.y1c_c00278{bottom:757.120000pt;}
.y1d_c00278{bottom:757.760000pt;}
.y18_c00278{bottom:781.440000pt;}
.y19_c00278{bottom:782.720000pt;}
.y16_c00278{bottom:784.000000pt;}
.y1a_c00278{bottom:784.640000pt;}
.y17_c00278{bottom:785.280000pt;}
.y15_c00278{bottom:813.440000pt;}
.y12_c00278{bottom:820.480000pt;}
.y13_c00278{bottom:821.120000pt;}
.y10_c00278{bottom:821.760000pt;}
.y14_c00278{bottom:822.400000pt;}
.y11_c00278{bottom:824.320000pt;}
.yf_c00278{bottom:858.240000pt;}
.yd_c00278{bottom:858.880000pt;}
.ya_c00278{bottom:860.800000pt;}
.ye_c00278{bottom:861.440000pt;}
.yb_c00278{bottom:862.080000pt;}
.yc_c00278{bottom:862.720000pt;}
.y8_c00278{bottom:897.280000pt;}
.y9_c00278{bottom:897.920000pt;}
.y6_c00278{bottom:899.200000pt;}
.y7_c00278{bottom:899.840000pt;}
.y4_c00278{bottom:935.680000pt;}
.y3_c00278{bottom:936.320000pt;}
.y2_c00278{bottom:936.960000pt;}
.y5_c00278{bottom:937.600000pt;}
.y1_c00278{bottom:993.920000pt;}
.hf_c00278{height:18.430000pt;}
.hb_c00278{height:29.948750pt;}
.hd_c00278{height:32.252500pt;}
.h10_c00278{height:36.860000pt;}
.hc_c00278{height:39.163750pt;}
.ha_c00278{height:41.467500pt;}
.h7_c00278{height:43.771250pt;}
.h6_c00278{height:46.075000pt;}
.h3_c00278{height:48.378750pt;}
.h9_c00278{height:50.682500pt;}
.h12_c00278{height:51.195000pt;}
.he_c00278{height:52.986250pt;}
.h8_c00278{height:55.290000pt;}
.h4_c00278{height:57.593750pt;}
.h2_c00278{height:59.897500pt;}
.h5_c00278{height:62.201250pt;}
.h11_c00278{height:66.808750pt;}
.h0_c00278{height:1031.040000pt;}
.h1_c00278{height:1031.333333pt;}
.w1_c00278{width:698.666667pt;}
.w0_c00278{width:698.880000pt;}
.x0_c00278{left:0.000000pt;}
.x2_c00278{left:70.400000pt;}
.x23_c00278{left:71.680000pt;}
.x35_c00278{left:72.960000pt;}
.x41_c00278{left:74.240000pt;}
.x33_c00278{left:117.120000pt;}
.x16_c00278{left:126.720000pt;}
.x2e_c00278{left:135.040000pt;}
.x3_c00278{left:136.320000pt;}
.x39_c00278{left:145.920000pt;}
.x3a_c00278{left:165.120000pt;}
.x1a_c00278{left:172.800000pt;}
.x9_c00278{left:174.080000pt;}
.x40_c00278{left:182.400000pt;}
.x20_c00278{left:203.520000pt;}
.xb_c00278{left:204.800000pt;}
.x2f_c00278{left:211.200000pt;}
.x18_c00278{left:213.120000pt;}
.x34_c00278{left:220.800000pt;}
.x4_c00278{left:222.720000pt;}
.x3b_c00278{left:230.400000pt;}
.x1b_c00278{left:231.680000pt;}
.x24_c00278{left:241.280000pt;}
.x30_c00278{left:250.880000pt;}
.x37_c00278{left:261.120000pt;}
.x3f_c00278{left:263.040000pt;}
.xc_c00278{left:270.080000pt;}
.x28_c00278{left:278.400000pt;}
.x1c_c00278{left:280.320000pt;}
.x21_c00278{left:288.000000pt;}
.x19_c00278{left:289.920000pt;}
.x3c_c00278{left:298.880000pt;}
.x11_c00278{left:300.160000pt;}
.xd_c00278{left:309.760000pt;}
.x29_c00278{left:318.720000pt;}
.x31_c00278{left:327.040000pt;}
.x1d_c00278{left:328.960000pt;}
.x5_c00278{left:337.920000pt;}
.xe_c00278{left:347.520000pt;}
.x3d_c00278{left:355.840000pt;}
.x2a_c00278{left:366.720000pt;}
.x32_c00278{left:376.320000pt;}
.x25_c00278{left:384.640000pt;}
.x17_c00278{left:395.520000pt;}
.x12_c00278{left:405.120000pt;}
.x22_c00278{left:414.080000pt;}
.x26_c00278{left:424.320000pt;}
.x2b_c00278{left:441.600000pt;}
.x13_c00278{left:452.480000pt;}
.x1e_c00278{left:460.800000pt;}
.xf_c00278{left:462.720000pt;}
.x27_c00278{left:471.680000pt;}
.x2c_c00278{left:480.640000pt;}
.x14_c00278{left:492.160000pt;}
.x3e_c00278{left:499.840000pt;}
.x1f_c00278{left:501.120000pt;}
.xa_c00278{left:529.280000pt;}
.x42_c00278{left:557.440000pt;}
.x6_c00278{left:558.720000pt;}
.x15_c00278{left:560.000000pt;}
.x38_c00278{left:586.240000pt;}
.x7_c00278{left:588.160000pt;}
.x1_c00278{left:600.960000pt;}
.x2d_c00278{left:624.640000pt;}
.x8_c00278{left:625.920000pt;}
.x36_c00278{left:643.200000pt;}
.x10_c00278{left:644.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_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_52950f1e3d1ca057fdbe95b8.woff2')format("woff");}.ff1_c00279{font-family:ff1_c00279;line-height:1.109863;font-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_c00279{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);}
.m39_c00279{transform:matrix(0.228050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228050,0.000000,0.000000,0.250000,0,0);}
.m36_c00279{transform:matrix(0.234925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234925,0.000000,0.000000,0.250000,0,0);}
.m49_c00279{transform:matrix(0.243775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243775,0.000000,0.000000,0.250000,0,0);}
.m16_c00279{transform:matrix(0.243850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243850,0.000000,0.000000,0.250000,0,0);}
.m2b_c00279{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m4a_c00279{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mb_c00279{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);}
.m4f_c00279{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);}
.m4d_c00279{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);}
.m31_c00279{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mc_c00279{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.me_c00279{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_c00279{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m18_c00279{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m2_c00279{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.md_c00279{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00279{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_c00279{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);}
.m2a_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);}
.m9_c00279{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_c00279{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m34_c00279{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m46_c00279{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m12_c00279{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00279{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m13_c00279{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.ma_c00279{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m44_c00279{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m24_c00279{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00279{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m47_c00279{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m10_c00279{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m48_c00279{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m4_c00279{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00279{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00279{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m7_c00279{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m35_c00279{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m14_c00279{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00279{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00279{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m0_c00279{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m15_c00279{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m38_c00279{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1_c00279{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m40_c00279{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);}
.mf_c00279{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);}
.m3c_c00279{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00279{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m28_c00279{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);}
.m43_c00279{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);}
.m3d_c00279{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);}
.m1c_c00279{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m5_c00279{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);}
.m29_c00279{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);}
.m3e_c00279{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);}
.m1d_c00279{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);}
.m37_c00279{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m45_c00279{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);}
.m25_c00279{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m41_c00279{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00279{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m27_c00279{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m42_c00279{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);}
.m2c_c00279{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);}
.m21_c00279{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);}
.m2f_c00279{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);}
.m6_c00279{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m23_c00279{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m3_c00279{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);}
.m20_c00279{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00279{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);}
.m33_c00279{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00279{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m32_c00279{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m26_c00279{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m30_c00279{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m17_c00279{transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00279{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.v0_c00279{vertical-align:0.000000px;}
.v2_c00279{vertical-align:2.880000px;}
.v1_c00279{vertical-align:5.760000px;}
.ls0_c00279{letter-spacing:0.000000px;}
.sc__c00279{text-shadow:none;}
.sc0_c00279{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00279{-webkit-text-stroke:0px transparent;}
.sc0_c00279{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00279{word-spacing:0.000000px;}
.ws1_c00279{word-spacing:9.212400px;}
.ws0_c00279{word-spacing:23.312400px;}
.fc0_c00279{color:transparent;}
.fs3_c00279{font-size:37.440000px;}
.fsa_c00279{font-size:40.320000px;}
.fsb_c00279{font-size:48.960000px;}
.fs4_c00279{font-size:51.840000px;}
.fs6_c00279{font-size:54.720000px;}
.fs5_c00279{font-size:57.600000px;}
.fs1_c00279{font-size:60.480000px;}
.fs9_c00279{font-size:63.360000px;}
.fs8_c00279{font-size:66.240000px;}
.fs7_c00279{font-size:69.120000px;}
.fsd_c00279{font-size:72.000000px;}
.fs2_c00279{font-size:74.880000px;}
.fs0_c00279{font-size:77.760000px;}
.fse_c00279{font-size:80.640000px;}
.fsc_c00279{font-size:106.560000px;}
.fsf_c00279{font-size:247.680000px;}
.y0_c00279{bottom:0.000000px;}
.y5e_c00279{bottom:91.440000px;}
.y61_c00279{bottom:92.880000px;}
.y5f_c00279{bottom:93.600000px;}
.y60_c00279{bottom:95.760000px;}
.y5d_c00279{bottom:96.480000px;}
.y6a_c00279{bottom:98.640000px;}
.y5c_c00279{bottom:134.640000px;}
.y5b_c00279{bottom:138.960000px;}
.y5a_c00279{bottom:139.680000px;}
.y59_c00279{bottom:140.400000px;}
.y69_c00279{bottom:141.120000px;}
.y58_c00279{bottom:177.840000px;}
.y57_c00279{bottom:182.160000px;}
.y56_c00279{bottom:182.880000px;}
.y68_c00279{bottom:185.040000px;}
.y53_c00279{bottom:221.040000px;}
.y55_c00279{bottom:222.480000px;}
.y54_c00279{bottom:223.200000px;}
.y51_c00279{bottom:224.640000px;}
.y52_c00279{bottom:226.080000px;}
.y67_c00279{bottom:228.240000px;}
.y4e_c00279{bottom:264.240000px;}
.y4f_c00279{bottom:266.400000px;}
.y4c_c00279{bottom:267.840000px;}
.y66_c00279{bottom:268.560000px;}
.y50_c00279{bottom:269.280000px;}
.y4d_c00279{bottom:270.000000px;}
.y65_c00279{bottom:271.440000px;}
.y4b_c00279{bottom:308.160000px;}
.y63_c00279{bottom:311.040000px;}
.y64_c00279{bottom:311.760000px;}
.y4a_c00279{bottom:312.480000px;}
.y48_c00279{bottom:352.800000px;}
.y49_c00279{bottom:353.520000px;}
.y62_c00279{bottom:354.240000px;}
.y46_c00279{bottom:354.960000px;}
.y47_c00279{bottom:355.680000px;}
.y44_c00279{bottom:396.000000px;}
.y45_c00279{bottom:398.160000px;}
.y42_c00279{bottom:426.240000px;}
.y40_c00279{bottom:428.400000px;}
.y43_c00279{bottom:429.120000px;}
.y3f_c00279{bottom:430.560000px;}
.y41_c00279{bottom:431.280000px;}
.y3c_c00279{bottom:460.800000px;}
.y38_c00279{bottom:469.440000px;}
.y3a_c00279{bottom:470.160000px;}
.y3b_c00279{bottom:471.600000px;}
.y3d_c00279{bottom:472.320000px;}
.y37_c00279{bottom:473.040000px;}
.y39_c00279{bottom:473.760000px;}
.y3e_c00279{bottom:474.480000px;}
.y32_c00279{bottom:512.640000px;}
.y33_c00279{bottom:514.080000px;}
.y35_c00279{bottom:514.800000px;}
.y30_c00279{bottom:515.520000px;}
.y34_c00279{bottom:516.240000px;}
.y31_c00279{bottom:516.960000px;}
.y36_c00279{bottom:517.680000px;}
.y2d_c00279{bottom:555.840000px;}
.y2e_c00279{bottom:558.000000px;}
.y2c_c00279{bottom:558.720000px;}
.y2f_c00279{bottom:560.160000px;}
.y2a_c00279{bottom:599.040000px;}
.y2b_c00279{bottom:601.200000px;}
.y28_c00279{bottom:601.920000px;}
.y29_c00279{bottom:603.360000px;}
.y25_c00279{bottom:644.400000px;}
.y24_c00279{bottom:645.120000px;}
.y23_c00279{bottom:647.280000px;}
.y20_c00279{bottom:698.400000px;}
.y22_c00279{bottom:700.560000px;}
.y21_c00279{bottom:701.280000px;}
.y1d_c00279{bottom:729.360000px;}
.y1c_c00279{bottom:730.080000px;}
.y26_c00279{bottom:730.800000px;}
.y27_c00279{bottom:731.520000px;}
.y1f_c00279{bottom:732.240000px;}
.y1e_c00279{bottom:732.960000px;}
.y1b_c00279{bottom:775.440000px;}
.y17_c00279{bottom:826.560000px;}
.y16_c00279{bottom:828.000000px;}
.y19_c00279{bottom:828.720000px;}
.y1a_c00279{bottom:829.440000px;}
.y18_c00279{bottom:830.160000px;}
.y12_c00279{bottom:869.760000px;}
.y11_c00279{bottom:871.200000px;}
.y14_c00279{bottom:871.920000px;}
.y15_c00279{bottom:872.640000px;}
.y13_c00279{bottom:873.360000px;}
.y10_c00279{bottom:913.680000px;}
.yf_c00279{bottom:914.400000px;}
.yd_c00279{bottom:966.960000px;}
.ye_c00279{bottom:967.680000px;}
.yc_c00279{bottom:968.400000px;}
.ya_c00279{bottom:1009.440000px;}
.yb_c00279{bottom:1010.160000px;}
.y9_c00279{bottom:1010.880000px;}
.y7_c00279{bottom:1051.920000px;}
.y8_c00279{bottom:1052.640000px;}
.y3_c00279{bottom:1053.360000px;}
.y2_c00279{bottom:1054.080000px;}
.y5_c00279{bottom:1054.800000px;}
.y6_c00279{bottom:1056.240000px;}
.y4_c00279{bottom:1056.960000px;}
.y1_c00279{bottom:1126.080000px;}
.h5_c00279{height:33.692344px;}
.hc_c00279{height:36.284062px;}
.hd_c00279{height:44.059219px;}
.h6_c00279{height:46.650937px;}
.h8_c00279{height:49.242656px;}
.h7_c00279{height:51.834375px;}
.h3_c00279{height:54.426094px;}
.hb_c00279{height:57.017812px;}
.h13_c00279{height:57.306094px;}
.ha_c00279{height:59.609531px;}
.h12_c00279{height:60.186094px;}
.h9_c00279{height:62.201250px;}
.hf_c00279{height:64.792969px;}
.h4_c00279{height:67.384687px;}
.h2_c00279{height:69.976406px;}
.h10_c00279{height:72.568125px;}
.he_c00279{height:95.893594px;}
.h11_c00279{height:222.887812px;}
.h1_c00279{height:1162.500000px;}
.h0_c00279{height:1162.800000px;}
.w0_c00279{width:792.000000px;}
.x0_c00279{left:0.000000px;}
.x2_c00279{left:86.400000px;}
.x30_c00279{left:87.840000px;}
.x3a_c00279{left:89.999910px;}
.x10_c00279{left:136.800000px;}
.x18_c00279{left:138.240000px;}
.x3_c00279{left:158.400000px;}
.xd_c00279{left:159.840000px;}
.x21_c00279{left:181.440000px;}
.x11_c00279{left:192.240000px;}
.x38_c00279{left:200.880000px;}
.x24_c00279{left:202.320000px;}
.x19_c00279{left:212.400000px;}
.x1d_c00279{left:224.640000px;}
.x12_c00279{left:234.720000px;}
.x4_c00279{left:246.240000px;}
.x22_c00279{left:254.880000px;}
.x25_c00279{left:257.040000px;}
.x36_c00279{left:267.840000px;}
.x1e_c00279{left:278.640000px;}
.x5_c00279{left:289.440000px;}
.x26_c00279{left:299.520000px;}
.x29_c00279{left:311.040000px;}
.x3b_c00279{left:331.200000px;}
.x13_c00279{left:343.440000px;}
.x2e_c00279{left:354.240000px;}
.x1a_c00279{left:385.920000px;}
.x1f_c00279{left:396.720000px;}
.x17_c00279{left:408.240000px;}
.x6_c00279{left:419.760000px;}
.x39_c00279{left:429.840000px;}
.x31_c00279{left:440.640000px;}
.x20_c00279{left:450.720000px;}
.x7_c00279{left:462.240000px;}
.x2a_c00279{left:472.320000px;}
.x1b_c00279{left:483.840000px;}
.x32_c00279{left:493.920000px;}
.x37_c00279{left:504.720000px;}
.x8_c00279{left:516.240000px;}
.x2f_c00279{left:525.600000px;}
.x2b_c00279{left:527.040000px;}
.x1c_c00279{left:537.120000px;}
.x33_c00279{left:547.920000px;}
.x2c_c00279{left:569.520000px;}
.x14_c00279{left:581.040000px;}
.x9_c00279{left:582.480000px;}
.x27_c00279{left:601.200000px;}
.xe_c00279{left:602.640000px;}
.x34_c00279{left:612.720000px;}
.xa_c00279{left:634.320000px;}
.x15_c00279{left:635.760000px;}
.x2d_c00279{left:666.000000px;}
.x28_c00279{left:667.440000px;}
.xb_c00279{left:668.880000px;}
.x23_c00279{left:678.240000px;}
.x1_c00279{left:695.520000px;}
.x3c_c00279{left:699.840000px;}
.x35_c00279{left:709.200000px;}
.xc_c00279{left:710.640000px;}
.xf_c00279{left:712.080000px;}
.x16_c00279{left:730.080000px;}
@media print{
.v0_c00279{vertical-align:0.000000pt;}
.v2_c00279{vertical-align:2.560000pt;}
.v1_c00279{vertical-align:5.120000pt;}
.ls0_c00279{letter-spacing:0.000000pt;}
.ws2_c00279{word-spacing:0.000000pt;}
.ws1_c00279{word-spacing:8.188800pt;}
.ws0_c00279{word-spacing:20.722133pt;}
.fs3_c00279{font-size:33.280000pt;}
.fsa_c00279{font-size:35.840000pt;}
.fsb_c00279{font-size:43.520000pt;}
.fs4_c00279{font-size:46.080000pt;}
.fs6_c00279{font-size:48.640000pt;}
.fs5_c00279{font-size:51.200000pt;}
.fs1_c00279{font-size:53.760000pt;}
.fs9_c00279{font-size:56.320000pt;}
.fs8_c00279{font-size:58.880000pt;}
.fs7_c00279{font-size:61.440000pt;}
.fsd_c00279{font-size:64.000000pt;}
.fs2_c00279{font-size:66.560000pt;}
.fs0_c00279{font-size:69.120000pt;}
.fse_c00279{font-size:71.680000pt;}
.fsc_c00279{font-size:94.720000pt;}
.fsf_c00279{font-size:220.160000pt;}
.y0_c00279{bottom:0.000000pt;}
.y5e_c00279{bottom:81.280000pt;}
.y61_c00279{bottom:82.560000pt;}
.y5f_c00279{bottom:83.200000pt;}
.y60_c00279{bottom:85.120000pt;}
.y5d_c00279{bottom:85.760000pt;}
.y6a_c00279{bottom:87.680000pt;}
.y5c_c00279{bottom:119.680000pt;}
.y5b_c00279{bottom:123.520000pt;}
.y5a_c00279{bottom:124.160000pt;}
.y59_c00279{bottom:124.800000pt;}
.y69_c00279{bottom:125.440000pt;}
.y58_c00279{bottom:158.080000pt;}
.y57_c00279{bottom:161.920000pt;}
.y56_c00279{bottom:162.560000pt;}
.y68_c00279{bottom:164.480000pt;}
.y53_c00279{bottom:196.480000pt;}
.y55_c00279{bottom:197.760000pt;}
.y54_c00279{bottom:198.400000pt;}
.y51_c00279{bottom:199.680000pt;}
.y52_c00279{bottom:200.960000pt;}
.y67_c00279{bottom:202.880000pt;}
.y4e_c00279{bottom:234.880000pt;}
.y4f_c00279{bottom:236.800000pt;}
.y4c_c00279{bottom:238.080000pt;}
.y66_c00279{bottom:238.720000pt;}
.y50_c00279{bottom:239.360000pt;}
.y4d_c00279{bottom:240.000000pt;}
.y65_c00279{bottom:241.280000pt;}
.y4b_c00279{bottom:273.920000pt;}
.y63_c00279{bottom:276.480000pt;}
.y64_c00279{bottom:277.120000pt;}
.y4a_c00279{bottom:277.760000pt;}
.y48_c00279{bottom:313.600000pt;}
.y49_c00279{bottom:314.240000pt;}
.y62_c00279{bottom:314.880000pt;}
.y46_c00279{bottom:315.520000pt;}
.y47_c00279{bottom:316.160000pt;}
.y44_c00279{bottom:352.000000pt;}
.y45_c00279{bottom:353.920000pt;}
.y42_c00279{bottom:378.880000pt;}
.y40_c00279{bottom:380.800000pt;}
.y43_c00279{bottom:381.440000pt;}
.y3f_c00279{bottom:382.720000pt;}
.y41_c00279{bottom:383.360000pt;}
.y3c_c00279{bottom:409.600000pt;}
.y38_c00279{bottom:417.280000pt;}
.y3a_c00279{bottom:417.920000pt;}
.y3b_c00279{bottom:419.200000pt;}
.y3d_c00279{bottom:419.840000pt;}
.y37_c00279{bottom:420.480000pt;}
.y39_c00279{bottom:421.120000pt;}
.y3e_c00279{bottom:421.760000pt;}
.y32_c00279{bottom:455.680000pt;}
.y33_c00279{bottom:456.960000pt;}
.y35_c00279{bottom:457.600000pt;}
.y30_c00279{bottom:458.240000pt;}
.y34_c00279{bottom:458.880000pt;}
.y31_c00279{bottom:459.520000pt;}
.y36_c00279{bottom:460.160000pt;}
.y2d_c00279{bottom:494.080000pt;}
.y2e_c00279{bottom:496.000000pt;}
.y2c_c00279{bottom:496.640000pt;}
.y2f_c00279{bottom:497.920000pt;}
.y2a_c00279{bottom:532.480000pt;}
.y2b_c00279{bottom:534.400000pt;}
.y28_c00279{bottom:535.040000pt;}
.y29_c00279{bottom:536.320000pt;}
.y25_c00279{bottom:572.800000pt;}
.y24_c00279{bottom:573.440000pt;}
.y23_c00279{bottom:575.360000pt;}
.y20_c00279{bottom:620.800000pt;}
.y22_c00279{bottom:622.720000pt;}
.y21_c00279{bottom:623.360000pt;}
.y1d_c00279{bottom:648.320000pt;}
.y1c_c00279{bottom:648.960000pt;}
.y26_c00279{bottom:649.600000pt;}
.y27_c00279{bottom:650.240000pt;}
.y1f_c00279{bottom:650.880000pt;}
.y1e_c00279{bottom:651.520000pt;}
.y1b_c00279{bottom:689.280000pt;}
.y17_c00279{bottom:734.720000pt;}
.y16_c00279{bottom:736.000000pt;}
.y19_c00279{bottom:736.640000pt;}
.y1a_c00279{bottom:737.280000pt;}
.y18_c00279{bottom:737.920000pt;}
.y12_c00279{bottom:773.120000pt;}
.y11_c00279{bottom:774.400000pt;}
.y14_c00279{bottom:775.040000pt;}
.y15_c00279{bottom:775.680000pt;}
.y13_c00279{bottom:776.320000pt;}
.y10_c00279{bottom:812.160000pt;}
.yf_c00279{bottom:812.800000pt;}
.yd_c00279{bottom:859.520000pt;}
.ye_c00279{bottom:860.160000pt;}
.yc_c00279{bottom:860.800000pt;}
.ya_c00279{bottom:897.280000pt;}
.yb_c00279{bottom:897.920000pt;}
.y9_c00279{bottom:898.560000pt;}
.y7_c00279{bottom:935.040000pt;}
.y8_c00279{bottom:935.680000pt;}
.y3_c00279{bottom:936.320000pt;}
.y2_c00279{bottom:936.960000pt;}
.y5_c00279{bottom:937.600000pt;}
.y6_c00279{bottom:938.880000pt;}
.y4_c00279{bottom:939.520000pt;}
.y1_c00279{bottom:1000.960000pt;}
.h5_c00279{height:29.948750pt;}
.hc_c00279{height:32.252500pt;}
.hd_c00279{height:39.163750pt;}
.h6_c00279{height:41.467500pt;}
.h8_c00279{height:43.771250pt;}
.h7_c00279{height:46.075000pt;}
.h3_c00279{height:48.378750pt;}
.hb_c00279{height:50.682500pt;}
.h13_c00279{height:50.938750pt;}
.ha_c00279{height:52.986250pt;}
.h12_c00279{height:53.498750pt;}
.h9_c00279{height:55.290000pt;}
.hf_c00279{height:57.593750pt;}
.h4_c00279{height:59.897500pt;}
.h2_c00279{height:62.201250pt;}
.h10_c00279{height:64.505000pt;}
.he_c00279{height:85.238750pt;}
.h11_c00279{height:198.122500pt;}
.h1_c00279{height:1033.333333pt;}
.h0_c00279{height:1033.600000pt;}
.w0_c00279{width:704.000000pt;}
.x0_c00279{left:0.000000pt;}
.x2_c00279{left:76.800000pt;}
.x30_c00279{left:78.080000pt;}
.x3a_c00279{left:79.999920pt;}
.x10_c00279{left:121.600000pt;}
.x18_c00279{left:122.880000pt;}
.x3_c00279{left:140.800000pt;}
.xd_c00279{left:142.080000pt;}
.x21_c00279{left:161.280000pt;}
.x11_c00279{left:170.880000pt;}
.x38_c00279{left:178.560000pt;}
.x24_c00279{left:179.840000pt;}
.x19_c00279{left:188.800000pt;}
.x1d_c00279{left:199.680000pt;}
.x12_c00279{left:208.640000pt;}
.x4_c00279{left:218.880000pt;}
.x22_c00279{left:226.560000pt;}
.x25_c00279{left:228.480000pt;}
.x36_c00279{left:238.080000pt;}
.x1e_c00279{left:247.680000pt;}
.x5_c00279{left:257.280000pt;}
.x26_c00279{left:266.240000pt;}
.x29_c00279{left:276.480000pt;}
.x3b_c00279{left:294.400000pt;}
.x13_c00279{left:305.280000pt;}
.x2e_c00279{left:314.880000pt;}
.x1a_c00279{left:343.040000pt;}
.x1f_c00279{left:352.640000pt;}
.x17_c00279{left:362.880000pt;}
.x6_c00279{left:373.120000pt;}
.x39_c00279{left:382.080000pt;}
.x31_c00279{left:391.680000pt;}
.x20_c00279{left:400.640000pt;}
.x7_c00279{left:410.880000pt;}
.x2a_c00279{left:419.840000pt;}
.x1b_c00279{left:430.080000pt;}
.x32_c00279{left:439.040000pt;}
.x37_c00279{left:448.640000pt;}
.x8_c00279{left:458.880000pt;}
.x2f_c00279{left:467.200000pt;}
.x2b_c00279{left:468.480000pt;}
.x1c_c00279{left:477.440000pt;}
.x33_c00279{left:487.040000pt;}
.x2c_c00279{left:506.240000pt;}
.x14_c00279{left:516.480000pt;}
.x9_c00279{left:517.760000pt;}
.x27_c00279{left:534.400000pt;}
.xe_c00279{left:535.680000pt;}
.x34_c00279{left:544.640000pt;}
.xa_c00279{left:563.840000pt;}
.x15_c00279{left:565.120000pt;}
.x2d_c00279{left:592.000000pt;}
.x28_c00279{left:593.280000pt;}
.xb_c00279{left:594.560000pt;}
.x23_c00279{left:602.880000pt;}
.x1_c00279{left:618.240000pt;}
.x3c_c00279{left:622.080000pt;}
.x35_c00279{left:630.400000pt;}
.xc_c00279{left:631.680000pt;}
.xf_c00279{left:632.960000pt;}
.x16_c00279{left:648.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_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_df7b8597de5eb5be6a7adc04.woff2')format("woff");}.ff1_c00280{font-family:ff1_c00280;line-height:1.109863;font-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_c00280{transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);}
.m1d_c00280{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00280{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);}
.m37_c00280{transform:matrix(0.237675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237675,0.000000,0.000000,0.250000,0,0);}
.me_c00280{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);}
.m3c_c00280{transform:matrix(0.243775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243775,0.000000,0.000000,0.250000,0,0);}
.m33_c00280{transform:matrix(0.243975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243975,0.000000,0.000000,0.250000,0,0);}
.m3d_c00280{transform:matrix(0.244775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244775,0.000000,0.000000,0.250000,0,0);}
.m36_c00280{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_c00280{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m3e_c00280{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.mf_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);}
.m11_c00280{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);}
.m2e_c00280{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00280{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m2_c00280{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m18_c00280{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m5_c00280{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m21_c00280{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m1_c00280{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m7_c00280{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m12_c00280{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m35_c00280{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m14_c00280{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m22_c00280{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00280{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00280{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00280{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00280{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m24_c00280{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m41_c00280{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mc_c00280{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m9_c00280{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00280{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m26_c00280{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m17_c00280{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mb_c00280{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m15_c00280{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m29_c00280{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00280{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m0_c00280{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_c00280{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.ma_c00280{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00280{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00280{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m32_c00280{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m19_c00280{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m8_c00280{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);}
.m6_c00280{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);}
.m39_c00280{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);}
.m10_c00280{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);}
.md_c00280{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);}
.m3_c00280{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m30_c00280{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m34_c00280{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00280{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m16_c00280{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);}
.m38_c00280{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);}
.m4_c00280{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m27_c00280{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_c00280{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);}
.m3f_c00280{transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);}
.m28_c00280{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00280{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m31_c00280{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m25_c00280{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.v1_c00280{vertical-align:-11.520000px;}
.v0_c00280{vertical-align:0.000000px;}
.ls0_c00280{letter-spacing:0.000000px;}
.sc__c00280{text-shadow:none;}
.sc0_c00280{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00280{-webkit-text-stroke:0px transparent;}
.sc0_c00280{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00280{word-spacing:0.000000px;}
.ws0_c00280{word-spacing:17.731094px;}
.ws1_c00280{word-spacing:53.775600px;}
.fc0_c00280{color:transparent;}
.fsc_c00280{font-size:37.440000px;}
.fsd_c00280{font-size:40.320000px;}
.fsb_c00280{font-size:46.080000px;}
.fs9_c00280{font-size:48.960000px;}
.fs3_c00280{font-size:51.840000px;}
.fs2_c00280{font-size:54.720000px;}
.fs5_c00280{font-size:57.600000px;}
.fs6_c00280{font-size:60.480000px;}
.fs0_c00280{font-size:63.360000px;}
.fsa_c00280{font-size:66.240000px;}
.fs7_c00280{font-size:69.120000px;}
.fs8_c00280{font-size:72.000000px;}
.fs1_c00280{font-size:74.880000px;}
.fs4_c00280{font-size:77.760000px;}
.fse_c00280{font-size:80.640000px;}
.y0_c00280{bottom:0.000000px;}
.y5f_c00280{bottom:57.600000px;}
.y70_c00280{bottom:61.920000px;}
.y71_c00280{bottom:62.640000px;}
.y5e_c00280{bottom:64.080000px;}
.y72_c00280{bottom:64.800000px;}
.y5d_c00280{bottom:101.520000px;}
.y6e_c00280{bottom:105.120000px;}
.y6d_c00280{bottom:105.840000px;}
.y5c_c00280{bottom:106.560000px;}
.y6f_c00280{bottom:108.000000px;}
.y5b_c00280{bottom:144.000000px;}
.y6b_c00280{bottom:148.320000px;}
.y6a_c00280{bottom:149.040000px;}
.y5a_c00280{bottom:149.760000px;}
.y6c_c00280{bottom:151.200000px;}
.y59_c00280{bottom:187.200000px;}
.y67_c00280{bottom:191.520000px;}
.y58_c00280{bottom:192.960000px;}
.y68_c00280{bottom:193.680000px;}
.y69_c00280{bottom:194.400000px;}
.y55_c00280{bottom:231.120000px;}
.y65_c00280{bottom:232.560000px;}
.y57_c00280{bottom:233.280000px;}
.y66_c00280{bottom:234.000000px;}
.y56_c00280{bottom:234.720000px;}
.y54_c00280{bottom:235.440000px;}
.y53_c00280{bottom:274.320000px;}
.y64_c00280{bottom:277.200000px;}
.y52_c00280{bottom:277.920000px;}
.y63_c00280{bottom:279.360000px;}
.y51_c00280{bottom:317.520000px;}
.y62_c00280{bottom:320.400000px;}
.y50_c00280{bottom:321.120000px;}
.y61_c00280{bottom:322.560000px;}
.y4f_c00280{bottom:360.720000px;}
.y48_c00280{bottom:364.320000px;}
.y46_c00280{bottom:365.760000px;}
.y49_c00280{bottom:366.480000px;}
.y47_c00280{bottom:367.200000px;}
.y4e_c00280{bottom:404.640000px;}
.y60_c00280{bottom:406.800000px;}
.y4d_c00280{bottom:407.520000px;}
.y45_c00280{bottom:408.240000px;}
.y43_c00280{bottom:408.960000px;}
.y44_c00280{bottom:409.680000px;}
.y4b_c00280{bottom:447.840000px;}
.y41_c00280{bottom:450.000000px;}
.y4a_c00280{bottom:451.440000px;}
.y4c_c00280{bottom:452.160000px;}
.y42_c00280{bottom:453.600000px;}
.y20_c00280{bottom:491.040000px;}
.y3f_c00280{bottom:493.200000px;}
.y1f_c00280{bottom:493.920000px;}
.y3b_c00280{bottom:495.360000px;}
.y40_c00280{bottom:496.080000px;}
.y1e_c00280{bottom:534.240000px;}
.y3e_c00280{bottom:536.400000px;}
.y1d_c00280{bottom:537.120000px;}
.y3d_c00280{bottom:537.840000px;}
.y1c_c00280{bottom:577.440000px;}
.y3a_c00280{bottom:579.600000px;}
.y1b_c00280{bottom:580.320000px;}
.y3c_c00280{bottom:581.760000px;}
.y1a_c00280{bottom:619.920000px;}
.y19_c00280{bottom:620.640000px;}
.y39_c00280{bottom:622.080000px;}
.y17_c00280{bottom:622.800000px;}
.y18_c00280{bottom:624.960000px;}
.y16_c00280{bottom:663.840000px;}
.y38_c00280{bottom:664.560000px;}
.y15_c00280{bottom:665.280000px;}
.y37_c00280{bottom:667.440000px;}
.y14_c00280{bottom:706.320000px;}
.y35_c00280{bottom:707.040000px;}
.y36_c00280{bottom:707.760000px;}
.y34_c00280{bottom:708.480000px;}
.y13_c00280{bottom:709.200000px;}
.y12_c00280{bottom:749.520000px;}
.y32_c00280{bottom:750.240000px;}
.y31_c00280{bottom:750.960000px;}
.y11_c00280{bottom:751.680000px;}
.y33_c00280{bottom:753.120000px;}
.y10_c00280{bottom:792.000000px;}
.yf_c00280{bottom:792.720000px;}
.y2f_c00280{bottom:793.440000px;}
.y2e_c00280{bottom:794.160000px;}
.ye_c00280{bottom:794.880000px;}
.y30_c00280{bottom:795.600000px;}
.yd_c00280{bottom:835.920000px;}
.y2b_c00280{bottom:836.640000px;}
.yc_c00280{bottom:837.360000px;}
.y2d_c00280{bottom:838.080000px;}
.y2c_c00280{bottom:838.800000px;}
.yb_c00280{bottom:879.120000px;}
.ya_c00280{bottom:880.560000px;}
.y29_c00280{bottom:881.280000px;}
.y2a_c00280{bottom:882.000000px;}
.y9_c00280{bottom:922.320000px;}
.y8_c00280{bottom:923.760000px;}
.y7_c00280{bottom:965.520000px;}
.y6_c00280{bottom:966.960000px;}
.y28_c00280{bottom:968.400000px;}
.y5_c00280{bottom:1008.000000px;}
.y23_c00280{bottom:1009.440000px;}
.y27_c00280{bottom:1010.160000px;}
.y3_c00280{bottom:1010.880000px;}
.y4_c00280{bottom:1012.320000px;}
.y2_c00280{bottom:1051.920000px;}
.y22_c00280{bottom:1052.640000px;}
.y25_c00280{bottom:1053.360000px;}
.y1_c00280{bottom:1054.080000px;}
.y26_c00280{bottom:1054.800000px;}
.y24_c00280{bottom:1055.520000px;}
.y21_c00280{bottom:1113.120000px;}
.he_c00280{height:33.692344px;}
.hf_c00280{height:36.284062px;}
.hd_c00280{height:41.467500px;}
.hb_c00280{height:44.059219px;}
.h5_c00280{height:46.650937px;}
.h4_c00280{height:49.242656px;}
.h7_c00280{height:51.834375px;}
.h8_c00280{height:54.426094px;}
.h2_c00280{height:57.017812px;}
.hc_c00280{height:59.609531px;}
.h9_c00280{height:62.201250px;}
.ha_c00280{height:64.792969px;}
.h3_c00280{height:67.384687px;}
.h6_c00280{height:69.976406px;}
.h10_c00280{height:72.568125px;}
.h0_c00280{height:1158.480000px;}
.h1_c00280{height:1158.750000px;}
.w1_c00280{width:785.250000px;}
.w0_c00280{width:785.520000px;}
.x0_c00280{left:0.000000px;}
.x1_c00280{left:80.640000px;}
.x5_c00280{left:82.080000px;}
.x7_c00280{left:83.520000px;}
.x19_c00280{left:84.960000px;}
.x1d_c00280{left:86.400000px;}
.x2_c00280{left:154.080000px;}
.x18_c00280{left:155.520000px;}
.x4_c00280{left:198.000000px;}
.x3_c00280{left:241.920000px;}
.x1a_c00280{left:243.360000px;}
.x6_c00280{left:285.120000px;}
.x14_c00280{left:339.120000px;}
.x15_c00280{left:383.760000px;}
.x1b_c00280{left:416.160000px;}
.x1c_c00280{left:458.640000px;}
.x16_c00280{left:489.600000px;}
.x1e_c00280{left:513.360000px;}
.x17_c00280{left:534.240000px;}
.x13_c00280{left:576.000000px;}
.x9_c00280{left:577.440000px;}
.xf_c00280{left:598.320000px;}
.xa_c00280{left:630.720000px;}
.x10_c00280{left:632.160000px;}
.xb_c00280{left:663.120000px;}
.x11_c00280{left:664.560000px;}
.x8_c00280{left:682.560000px;}
.xe_c00280{left:695.520000px;}
.xc_c00280{left:706.320000px;}
.x12_c00280{left:707.760000px;}
.xd_c00280{left:726.480000px;}
@media print{
.v1_c00280{vertical-align:-10.240000pt;}
.v0_c00280{vertical-align:0.000000pt;}
.ls0_c00280{letter-spacing:0.000000pt;}
.ws2_c00280{word-spacing:0.000000pt;}
.ws0_c00280{word-spacing:15.760973pt;}
.ws1_c00280{word-spacing:47.800533pt;}
.fsc_c00280{font-size:33.280000pt;}
.fsd_c00280{font-size:35.840000pt;}
.fsb_c00280{font-size:40.960000pt;}
.fs9_c00280{font-size:43.520000pt;}
.fs3_c00280{font-size:46.080000pt;}
.fs2_c00280{font-size:48.640000pt;}
.fs5_c00280{font-size:51.200000pt;}
.fs6_c00280{font-size:53.760000pt;}
.fs0_c00280{font-size:56.320000pt;}
.fsa_c00280{font-size:58.880000pt;}
.fs7_c00280{font-size:61.440000pt;}
.fs8_c00280{font-size:64.000000pt;}
.fs1_c00280{font-size:66.560000pt;}
.fs4_c00280{font-size:69.120000pt;}
.fse_c00280{font-size:71.680000pt;}
.y0_c00280{bottom:0.000000pt;}
.y5f_c00280{bottom:51.200000pt;}
.y70_c00280{bottom:55.040000pt;}
.y71_c00280{bottom:55.680000pt;}
.y5e_c00280{bottom:56.960000pt;}
.y72_c00280{bottom:57.600000pt;}
.y5d_c00280{bottom:90.240000pt;}
.y6e_c00280{bottom:93.440000pt;}
.y6d_c00280{bottom:94.080000pt;}
.y5c_c00280{bottom:94.720000pt;}
.y6f_c00280{bottom:96.000000pt;}
.y5b_c00280{bottom:128.000000pt;}
.y6b_c00280{bottom:131.840000pt;}
.y6a_c00280{bottom:132.480000pt;}
.y5a_c00280{bottom:133.120000pt;}
.y6c_c00280{bottom:134.400000pt;}
.y59_c00280{bottom:166.400000pt;}
.y67_c00280{bottom:170.240000pt;}
.y58_c00280{bottom:171.520000pt;}
.y68_c00280{bottom:172.160000pt;}
.y69_c00280{bottom:172.800000pt;}
.y55_c00280{bottom:205.440000pt;}
.y65_c00280{bottom:206.720000pt;}
.y57_c00280{bottom:207.360000pt;}
.y66_c00280{bottom:208.000000pt;}
.y56_c00280{bottom:208.640000pt;}
.y54_c00280{bottom:209.280000pt;}
.y53_c00280{bottom:243.840000pt;}
.y64_c00280{bottom:246.400000pt;}
.y52_c00280{bottom:247.040000pt;}
.y63_c00280{bottom:248.320000pt;}
.y51_c00280{bottom:282.240000pt;}
.y62_c00280{bottom:284.800000pt;}
.y50_c00280{bottom:285.440000pt;}
.y61_c00280{bottom:286.720000pt;}
.y4f_c00280{bottom:320.640000pt;}
.y48_c00280{bottom:323.840000pt;}
.y46_c00280{bottom:325.120000pt;}
.y49_c00280{bottom:325.760000pt;}
.y47_c00280{bottom:326.400000pt;}
.y4e_c00280{bottom:359.680000pt;}
.y60_c00280{bottom:361.600000pt;}
.y4d_c00280{bottom:362.240000pt;}
.y45_c00280{bottom:362.880000pt;}
.y43_c00280{bottom:363.520000pt;}
.y44_c00280{bottom:364.160000pt;}
.y4b_c00280{bottom:398.080000pt;}
.y41_c00280{bottom:400.000000pt;}
.y4a_c00280{bottom:401.280000pt;}
.y4c_c00280{bottom:401.920000pt;}
.y42_c00280{bottom:403.200000pt;}
.y20_c00280{bottom:436.480000pt;}
.y3f_c00280{bottom:438.400000pt;}
.y1f_c00280{bottom:439.040000pt;}
.y3b_c00280{bottom:440.320000pt;}
.y40_c00280{bottom:440.960000pt;}
.y1e_c00280{bottom:474.880000pt;}
.y3e_c00280{bottom:476.800000pt;}
.y1d_c00280{bottom:477.440000pt;}
.y3d_c00280{bottom:478.080000pt;}
.y1c_c00280{bottom:513.280000pt;}
.y3a_c00280{bottom:515.200000pt;}
.y1b_c00280{bottom:515.840000pt;}
.y3c_c00280{bottom:517.120000pt;}
.y1a_c00280{bottom:551.040000pt;}
.y19_c00280{bottom:551.680000pt;}
.y39_c00280{bottom:552.960000pt;}
.y17_c00280{bottom:553.600000pt;}
.y18_c00280{bottom:555.520000pt;}
.y16_c00280{bottom:590.080000pt;}
.y38_c00280{bottom:590.720000pt;}
.y15_c00280{bottom:591.360000pt;}
.y37_c00280{bottom:593.280000pt;}
.y14_c00280{bottom:627.840000pt;}
.y35_c00280{bottom:628.480000pt;}
.y36_c00280{bottom:629.120000pt;}
.y34_c00280{bottom:629.760000pt;}
.y13_c00280{bottom:630.400000pt;}
.y12_c00280{bottom:666.240000pt;}
.y32_c00280{bottom:666.880000pt;}
.y31_c00280{bottom:667.520000pt;}
.y11_c00280{bottom:668.160000pt;}
.y33_c00280{bottom:669.440000pt;}
.y10_c00280{bottom:704.000000pt;}
.yf_c00280{bottom:704.640000pt;}
.y2f_c00280{bottom:705.280000pt;}
.y2e_c00280{bottom:705.920000pt;}
.ye_c00280{bottom:706.560000pt;}
.y30_c00280{bottom:707.200000pt;}
.yd_c00280{bottom:743.040000pt;}
.y2b_c00280{bottom:743.680000pt;}
.yc_c00280{bottom:744.320000pt;}
.y2d_c00280{bottom:744.960000pt;}
.y2c_c00280{bottom:745.600000pt;}
.yb_c00280{bottom:781.440000pt;}
.ya_c00280{bottom:782.720000pt;}
.y29_c00280{bottom:783.360000pt;}
.y2a_c00280{bottom:784.000000pt;}
.y9_c00280{bottom:819.840000pt;}
.y8_c00280{bottom:821.120000pt;}
.y7_c00280{bottom:858.240000pt;}
.y6_c00280{bottom:859.520000pt;}
.y28_c00280{bottom:860.800000pt;}
.y5_c00280{bottom:896.000000pt;}
.y23_c00280{bottom:897.280000pt;}
.y27_c00280{bottom:897.920000pt;}
.y3_c00280{bottom:898.560000pt;}
.y4_c00280{bottom:899.840000pt;}
.y2_c00280{bottom:935.040000pt;}
.y22_c00280{bottom:935.680000pt;}
.y25_c00280{bottom:936.320000pt;}
.y1_c00280{bottom:936.960000pt;}
.y26_c00280{bottom:937.600000pt;}
.y24_c00280{bottom:938.240000pt;}
.y21_c00280{bottom:989.440000pt;}
.he_c00280{height:29.948750pt;}
.hf_c00280{height:32.252500pt;}
.hd_c00280{height:36.860000pt;}
.hb_c00280{height:39.163750pt;}
.h5_c00280{height:41.467500pt;}
.h4_c00280{height:43.771250pt;}
.h7_c00280{height:46.075000pt;}
.h8_c00280{height:48.378750pt;}
.h2_c00280{height:50.682500pt;}
.hc_c00280{height:52.986250pt;}
.h9_c00280{height:55.290000pt;}
.ha_c00280{height:57.593750pt;}
.h3_c00280{height:59.897500pt;}
.h6_c00280{height:62.201250pt;}
.h10_c00280{height:64.505000pt;}
.h0_c00280{height:1029.760000pt;}
.h1_c00280{height:1030.000000pt;}
.w1_c00280{width:698.000000pt;}
.w0_c00280{width:698.240000pt;}
.x0_c00280{left:0.000000pt;}
.x1_c00280{left:71.680000pt;}
.x5_c00280{left:72.960000pt;}
.x7_c00280{left:74.240000pt;}
.x19_c00280{left:75.520000pt;}
.x1d_c00280{left:76.800000pt;}
.x2_c00280{left:136.960000pt;}
.x18_c00280{left:138.240000pt;}
.x4_c00280{left:176.000000pt;}
.x3_c00280{left:215.040000pt;}
.x1a_c00280{left:216.320000pt;}
.x6_c00280{left:253.440000pt;}
.x14_c00280{left:301.440000pt;}
.x15_c00280{left:341.120000pt;}
.x1b_c00280{left:369.920000pt;}
.x1c_c00280{left:407.680000pt;}
.x16_c00280{left:435.200000pt;}
.x1e_c00280{left:456.320000pt;}
.x17_c00280{left:474.880000pt;}
.x13_c00280{left:512.000000pt;}
.x9_c00280{left:513.280000pt;}
.xf_c00280{left:531.840000pt;}
.xa_c00280{left:560.640000pt;}
.x10_c00280{left:561.920000pt;}
.xb_c00280{left:589.440000pt;}
.x11_c00280{left:590.720000pt;}
.x8_c00280{left:606.720000pt;}
.xe_c00280{left:618.240000pt;}
.xc_c00280{left:627.840000pt;}
.x12_c00280{left:629.120000pt;}
.xd_c00280{left:645.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_cf1f1d2cc21c31c5b85974bb.woff2')format("woff");}.ff1_c00281{font-family:ff1_c00281;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4d_c00281{transform:matrix(0.220900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220900,0.000000,0.000000,0.250000,0,0);}
.m5b_c00281{transform:matrix(0.225100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225100,0.000000,0.000000,0.250000,0,0);}
.m2_c00281{transform:matrix(0.235600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235600,0.000000,0.000000,0.250000,0,0);}
.m5a_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);}
.ma_c00281{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m6_c00281{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);}
.m5c_c00281{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);}
.m50_c00281{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_c00281{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00281{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);}
.m32_c00281{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);}
.m4c_c00281{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m54_c00281{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m56_c00281{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);}
.m4a_c00281{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m47_c00281{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m5_c00281{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m8_c00281{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.md_c00281{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00281{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mc_c00281{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m48_c00281{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m35_c00281{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m40_c00281{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m11_c00281{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m28_c00281{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m45_c00281{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mb_c00281{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m31_c00281{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00281{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m4_c00281{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m7_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);}
.m3e_c00281{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m57_c00281{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m16_c00281{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m10_c00281{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m36_c00281{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m0_c00281{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m13_c00281{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m1_c00281{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);}
.m3d_c00281{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m18_c00281{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m43_c00281{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);}
.m3f_c00281{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);}
.m2a_c00281{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);}
.m27_c00281{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m39_c00281{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);}
.m19_c00281{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);}
.m25_c00281{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);}
.m30_c00281{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.mf_c00281{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00281{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);}
.m37_c00281{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m49_c00281{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_c00281{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m59_c00281{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);}
.m58_c00281{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);}
.m12_c00281{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.me_c00281{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m38_c00281{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);}
.m17_c00281{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m33_c00281{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);}
.m1a_c00281{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m41_c00281{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);}
.m1f_c00281{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00281{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m44_c00281{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m55_c00281{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00281{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m22_c00281{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m29_c00281{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00281{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00281{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);}
.m2f_c00281{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m24_c00281{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m34_c00281{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);}
.m21_c00281{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m15_c00281{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m1e_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);}
.m1c_c00281{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m26_c00281{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00281{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m46_c00281{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m42_c00281{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m14_c00281{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);}
.m20_c00281{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m3_c00281{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00281{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00281{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);}
.m4f_c00281{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.m53_c00281{transform:matrix(3.647500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.647500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.647500,0.000000,0.000000,0.250000,0,0);}
.m52_c00281{transform:matrix(3.960000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.960000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.960000,0.000000,0.000000,0.250000,0,0);}
.m51_c00281{transform:matrix(5.760000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.760000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.760000,0.000000,0.000000,0.250000,0,0);}
.v1_c00281{vertical-align:-2.880000px;}
.v0_c00281{vertical-align:0.000000px;}
.ls1_c00281{letter-spacing:0.000000px;}
.ls0_c00281{letter-spacing:143.906640px;}
.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;}
}
.ws2_c00281{word-spacing:0.000000px;}
.ws0_c00281{word-spacing:83.693131px;}
.ws1_c00281{word-spacing:156.790080px;}
.fc0_c00281{color:transparent;}
.fs12_c00281{font-size:17.280000px;}
.fs13_c00281{font-size:20.160000px;}
.fsd_c00281{font-size:23.040000px;}
.fsa_c00281{font-size:34.560000px;}
.fs9_c00281{font-size:37.440000px;}
.fsb_c00281{font-size:40.320000px;}
.fs10_c00281{font-size:43.200000px;}
.fsf_c00281{font-size:46.080000px;}
.fs7_c00281{font-size:48.960000px;}
.fs2_c00281{font-size:51.840000px;}
.fs6_c00281{font-size:54.720000px;}
.fs4_c00281{font-size:57.600000px;}
.fs1_c00281{font-size:60.480000px;}
.fs8_c00281{font-size:63.360000px;}
.fsc_c00281{font-size:66.240000px;}
.fs5_c00281{font-size:69.120000px;}
.fse_c00281{font-size:72.000000px;}
.fs0_c00281{font-size:74.880000px;}
.fs3_c00281{font-size:77.760000px;}
.fs11_c00281{font-size:86.400000px;}
.fs14_c00281{font-size:103.680000px;}
.y0_c00281{bottom:0.000000px;}
.y6f_c00281{bottom:26.640000px;}
.y71_c00281{bottom:27.360000px;}
.y6e_c00281{bottom:28.080000px;}
.y70_c00281{bottom:30.240000px;}
.y6d_c00281{bottom:30.960000px;}
.y72_c00281{bottom:31.680000px;}
.y6b_c00281{bottom:73.440000px;}
.y6c_c00281{bottom:74.160000px;}
.y69_c00281{bottom:126.000000px;}
.y67_c00281{bottom:127.440000px;}
.y68_c00281{bottom:128.160000px;}
.y6a_c00281{bottom:128.880000px;}
.y65_c00281{bottom:149.760000px;}
.y64_c00281{bottom:150.480000px;}
.y66_c00281{bottom:151.200000px;}
.y62_c00281{bottom:191.520000px;}
.y63_c00281{bottom:192.960000px;}
.y61_c00281{bottom:193.680000px;}
.y5e_c00281{bottom:244.080000px;}
.y5d_c00281{bottom:245.520000px;}
.y5c_c00281{bottom:246.240000px;}
.y60_c00281{bottom:247.680000px;}
.y5f_c00281{bottom:249.120000px;}
.y56_c00281{bottom:262.800000px;}
.y59_c00281{bottom:264.240000px;}
.y5b_c00281{bottom:264.960000px;}
.y55_c00281{bottom:267.120000px;}
.y54_c00281{bottom:268.560000px;}
.y57_c00281{bottom:270.000000px;}
.y58_c00281{bottom:270.720000px;}
.y5a_c00281{bottom:271.440000px;}
.y4e_c00281{bottom:288.720000px;}
.y4f_c00281{bottom:289.440000px;}
.y52_c00281{bottom:290.160000px;}
.y50_c00281{bottom:290.880000px;}
.y51_c00281{bottom:291.600000px;}
.y53_c00281{bottom:292.320000px;}
.y4a_c00281{bottom:310.320000px;}
.y4b_c00281{bottom:311.040000px;}
.y4d_c00281{bottom:311.760000px;}
.y4c_c00281{bottom:313.920000px;}
.y46_c00281{bottom:331.200000px;}
.y45_c00281{bottom:331.920000px;}
.y44_c00281{bottom:332.640000px;}
.y48_c00281{bottom:333.360000px;}
.y49_c00281{bottom:334.080000px;}
.y47_c00281{bottom:334.800000px;}
.y3e_c00281{bottom:352.800000px;}
.y3f_c00281{bottom:353.520000px;}
.y40_c00281{bottom:354.960000px;}
.y43_c00281{bottom:355.680000px;}
.y41_c00281{bottom:356.400000px;}
.y42_c00281{bottom:357.120000px;}
.y3d_c00281{bottom:376.560000px;}
.y3b_c00281{bottom:377.280000px;}
.y3c_c00281{bottom:378.000000px;}
.y39_c00281{bottom:417.600000px;}
.y38_c00281{bottom:419.760000px;}
.y3a_c00281{bottom:420.480000px;}
.y35_c00281{bottom:460.080000px;}
.y37_c00281{bottom:461.520000px;}
.y34_c00281{bottom:462.960000px;}
.y36_c00281{bottom:463.680000px;}
.y32_c00281{bottom:514.080000px;}
.y33_c00281{bottom:514.800000px;}
.y31_c00281{bottom:516.240000px;}
.y30_c00281{bottom:516.960000px;}
.y2f_c00281{bottom:558.720000px;}
.y2e_c00281{bottom:560.160000px;}
.y2d_c00281{bottom:560.880000px;}
.y29_c00281{bottom:611.280000px;}
.y2a_c00281{bottom:612.720000px;}
.y2b_c00281{bottom:614.880000px;}
.y2c_c00281{bottom:615.600000px;}
.y27_c00281{bottom:655.200000px;}
.y28_c00281{bottom:655.920000px;}
.y24_c00281{bottom:657.360000px;}
.y26_c00281{bottom:658.080000px;}
.y25_c00281{bottom:658.800000px;}
.y1e_c00281{bottom:697.680000px;}
.y23_c00281{bottom:699.120000px;}
.y21_c00281{bottom:699.840000px;}
.y1f_c00281{bottom:700.560000px;}
.y20_c00281{bottom:701.280000px;}
.y22_c00281{bottom:702.000000px;}
.y1d_c00281{bottom:741.600000px;}
.y1a_c00281{bottom:742.320000px;}
.y1b_c00281{bottom:743.040000px;}
.y19_c00281{bottom:744.480000px;}
.y1c_c00281{bottom:745.200000px;}
.y17_c00281{bottom:785.520000px;}
.y16_c00281{bottom:787.680000px;}
.y18_c00281{bottom:788.400000px;}
.y14_c00281{bottom:839.520000px;}
.y15_c00281{bottom:840.240000px;}
.y11_c00281{bottom:840.960000px;}
.y13_c00281{bottom:841.680000px;}
.y12_c00281{bottom:842.400000px;}
.ye_c00281{bottom:882.000000px;}
.yf_c00281{bottom:882.720000px;}
.yd_c00281{bottom:883.440000px;}
.y10_c00281{bottom:884.160000px;}
.yc_c00281{bottom:924.480000px;}
.yb_c00281{bottom:925.200000px;}
.ya_c00281{bottom:927.360000px;}
.y9_c00281{bottom:928.080000px;}
.y6_c00281{bottom:987.840000px;}
.y5_c00281{bottom:989.280000px;}
.y8_c00281{bottom:990.000000px;}
.y3_c00281{bottom:1031.760000px;}
.y7_c00281{bottom:1032.480000px;}
.y2_c00281{bottom:1033.200000px;}
.y4_c00281{bottom:1035.360000px;}
.y1_c00281{bottom:1090.080000px;}
.h14_c00281{height:15.550313px;}
.h15_c00281{height:18.142031px;}
.hf_c00281{height:20.733750px;}
.hc_c00281{height:31.100625px;}
.hb_c00281{height:33.692344px;}
.hd_c00281{height:36.284062px;}
.h12_c00281{height:38.875781px;}
.h11_c00281{height:41.467500px;}
.h9_c00281{height:44.059219px;}
.h4_c00281{height:46.650937px;}
.h8_c00281{height:49.242656px;}
.h6_c00281{height:51.834375px;}
.h3_c00281{height:54.426094px;}
.ha_c00281{height:57.017812px;}
.he_c00281{height:59.609531px;}
.h7_c00281{height:62.201250px;}
.h10_c00281{height:64.792969px;}
.h2_c00281{height:67.384687px;}
.h5_c00281{height:69.976406px;}
.h13_c00281{height:77.751563px;}
.h16_c00281{height:93.301875px;}
.h1_c00281{height:1130.250000px;}
.h0_c00281{height:1130.400000px;}
.w1_c00281{width:753.750000px;}
.w0_c00281{width:753.840000px;}
.x0_c00281{left:0.000000px;}
.x2_c00281{left:62.640000px;}
.x34_c00281{left:64.800000px;}
.x4f_c00281{left:66.240000px;}
.x14_c00281{left:93.600000px;}
.x43_c00281{left:95.040000px;}
.x54_c00281{left:107.280000px;}
.x61_c00281{left:118.800000px;}
.x35_c00281{left:126.720000px;}
.x3_c00281{left:136.080000px;}
.x2c_c00281{left:137.520000px;}
.x26_c00281{left:148.320000px;}
.x67_c00281{left:149.760000px;}
.x36_c00281{left:157.680000px;}
.x2d_c00281{left:159.840000px;}
.x41_c00281{left:169.200000px;}
.xd_c00281{left:170.640000px;}
.x64_c00281{left:172.800000px;}
.x1a_c00281{left:180.720000px;}
.x55_c00281{left:182.880000px;}
.x2e_c00281{left:192.960000px;}
.x15_c00281{left:201.600000px;}
.xe_c00281{left:203.040000px;}
.x5f_c00281{left:204.480000px;}
.x1b_c00281{left:213.840000px;}
.x56_c00281{left:216.000000px;}
.x37_c00281{left:223.920000px;}
.x66_c00281{left:226.800000px;}
.x57_c00281{left:233.280000px;}
.x1f_c00281{left:235.440000px;}
.x44_c00281{left:237.600000px;}
.x3d_c00281{left:245.520000px;}
.x4a_c00281{left:248.400000px;}
.x16_c00281{left:256.320000px;}
.x27_c00281{left:257.760000px;}
.x4_c00281{left:266.400000px;}
.x5a_c00281{left:280.800000px;}
.x20_c00281{left:288.000000px;}
.xf_c00281{left:289.440000px;}
.x45_c00281{left:290.880000px;}
.x2f_c00281{left:299.520000px;}
.x4b_c00281{left:301.680000px;}
.x28_c00281{left:311.040000px;}
.x68_c00281{left:313.200000px;}
.x5_c00281{left:319.680000px;}
.x10_c00281{left:321.120000px;}
.x38_c00281{left:332.640000px;}
.x5b_c00281{left:334.800000px;}
.x30_c00281{left:342.720000px;}
.x52_c00281{left:344.160000px;}
.x51_c00281{left:345.600000px;}
.x29_c00281{left:353.520000px;}
.x4c_c00281{left:354.960000px;}
.x6_c00281{left:363.600000px;}
.x21_c00281{left:365.040000px;}
.x65_c00281{left:367.200000px;}
.x39_c00281{left:375.840000px;}
.x62_c00281{left:378.000000px;}
.x1c_c00281{left:385.200000px;}
.x31_c00281{left:386.640000px;}
.x3e_c00281{left:388.080000px;}
.x17_c00281{left:396.720000px;}
.x60_c00281{left:398.880000px;}
.x59_c00281{left:406.800000px;}
.x5c_c00281{left:410.400000px;}
.x46_c00281{left:419.040000px;}
.x49_c00281{left:420.480000px;}
.x1d_c00281{left:429.120000px;}
.x11_c00281{left:439.200000px;}
.x42_c00281{left:440.640000px;}
.x63_c00281{left:442.800000px;}
.x47_c00281{left:452.160000px;}
.x58_c00281{left:460.800000px;}
.x1e_c00281{left:462.240000px;}
.x50_c00281{left:463.680000px;}
.x12_c00281{left:472.320000px;}
.x4d_c00281{left:473.760000px;}
.x22_c00281{left:483.120000px;}
.x18_c00281{left:493.200000px;}
.x3f_c00281{left:495.360000px;}
.x32_c00281{left:505.440000px;}
.x23_c00281{left:514.800000px;}
.x5d_c00281{left:517.680000px;}
.x4e_c00281{left:527.760000px;}
.x13_c00281{left:536.400000px;}
.x40_c00281{left:547.200000px;}
.x19_c00281{left:558.000000px;}
.xa_c00281{left:559.440000px;}
.x2a_c00281{left:570.240000px;}
.xb_c00281{left:579.600000px;}
.x5e_c00281{left:582.480000px;}
.x3a_c00281{left:591.840000px;}
.x53_c00281{left:593.280000px;}
.x33_c00281{left:601.920000px;}
.x7_c00281{left:613.440000px;}
.x24_c00281{left:622.800000px;}
.x3b_c00281{left:635.040000px;}
.x8_c00281{left:645.840000px;}
.x2b_c00281{left:654.480000px;}
.x48_c00281{left:656.640000px;}
.x1_c00281{left:663.840000px;}
.x3c_c00281{left:667.440000px;}
.x25_c00281{left:676.800000px;}
.xc_c00281{left:687.600000px;}
.x9_c00281{left:689.040000px;}
@media print{
.v1_c00281{vertical-align:-2.560000pt;}
.v0_c00281{vertical-align:0.000000pt;}
.ls1_c00281{letter-spacing:0.000000pt;}
.ls0_c00281{letter-spacing:127.917013pt;}
.ws2_c00281{word-spacing:0.000000pt;}
.ws0_c00281{word-spacing:74.393894pt;}
.ws1_c00281{word-spacing:139.368960pt;}
.fs12_c00281{font-size:15.360000pt;}
.fs13_c00281{font-size:17.920000pt;}
.fsd_c00281{font-size:20.480000pt;}
.fsa_c00281{font-size:30.720000pt;}
.fs9_c00281{font-size:33.280000pt;}
.fsb_c00281{font-size:35.840000pt;}
.fs10_c00281{font-size:38.400000pt;}
.fsf_c00281{font-size:40.960000pt;}
.fs7_c00281{font-size:43.520000pt;}
.fs2_c00281{font-size:46.080000pt;}
.fs6_c00281{font-size:48.640000pt;}
.fs4_c00281{font-size:51.200000pt;}
.fs1_c00281{font-size:53.760000pt;}
.fs8_c00281{font-size:56.320000pt;}
.fsc_c00281{font-size:58.880000pt;}
.fs5_c00281{font-size:61.440000pt;}
.fse_c00281{font-size:64.000000pt;}
.fs0_c00281{font-size:66.560000pt;}
.fs3_c00281{font-size:69.120000pt;}
.fs11_c00281{font-size:76.800000pt;}
.fs14_c00281{font-size:92.160000pt;}
.y0_c00281{bottom:0.000000pt;}
.y6f_c00281{bottom:23.680000pt;}
.y71_c00281{bottom:24.320000pt;}
.y6e_c00281{bottom:24.960000pt;}
.y70_c00281{bottom:26.880000pt;}
.y6d_c00281{bottom:27.520000pt;}
.y72_c00281{bottom:28.160000pt;}
.y6b_c00281{bottom:65.280000pt;}
.y6c_c00281{bottom:65.920000pt;}
.y69_c00281{bottom:112.000000pt;}
.y67_c00281{bottom:113.280000pt;}
.y68_c00281{bottom:113.920000pt;}
.y6a_c00281{bottom:114.560000pt;}
.y65_c00281{bottom:133.120000pt;}
.y64_c00281{bottom:133.760000pt;}
.y66_c00281{bottom:134.400000pt;}
.y62_c00281{bottom:170.240000pt;}
.y63_c00281{bottom:171.520000pt;}
.y61_c00281{bottom:172.160000pt;}
.y5e_c00281{bottom:216.960000pt;}
.y5d_c00281{bottom:218.240000pt;}
.y5c_c00281{bottom:218.880000pt;}
.y60_c00281{bottom:220.160000pt;}
.y5f_c00281{bottom:221.440000pt;}
.y56_c00281{bottom:233.600000pt;}
.y59_c00281{bottom:234.880000pt;}
.y5b_c00281{bottom:235.520000pt;}
.y55_c00281{bottom:237.440000pt;}
.y54_c00281{bottom:238.720000pt;}
.y57_c00281{bottom:240.000000pt;}
.y58_c00281{bottom:240.640000pt;}
.y5a_c00281{bottom:241.280000pt;}
.y4e_c00281{bottom:256.640000pt;}
.y4f_c00281{bottom:257.280000pt;}
.y52_c00281{bottom:257.920000pt;}
.y50_c00281{bottom:258.560000pt;}
.y51_c00281{bottom:259.200000pt;}
.y53_c00281{bottom:259.840000pt;}
.y4a_c00281{bottom:275.840000pt;}
.y4b_c00281{bottom:276.480000pt;}
.y4d_c00281{bottom:277.120000pt;}
.y4c_c00281{bottom:279.040000pt;}
.y46_c00281{bottom:294.400000pt;}
.y45_c00281{bottom:295.040000pt;}
.y44_c00281{bottom:295.680000pt;}
.y48_c00281{bottom:296.320000pt;}
.y49_c00281{bottom:296.960000pt;}
.y47_c00281{bottom:297.600000pt;}
.y3e_c00281{bottom:313.600000pt;}
.y3f_c00281{bottom:314.240000pt;}
.y40_c00281{bottom:315.520000pt;}
.y43_c00281{bottom:316.160000pt;}
.y41_c00281{bottom:316.800000pt;}
.y42_c00281{bottom:317.440000pt;}
.y3d_c00281{bottom:334.720000pt;}
.y3b_c00281{bottom:335.360000pt;}
.y3c_c00281{bottom:336.000000pt;}
.y39_c00281{bottom:371.200000pt;}
.y38_c00281{bottom:373.120000pt;}
.y3a_c00281{bottom:373.760000pt;}
.y35_c00281{bottom:408.960000pt;}
.y37_c00281{bottom:410.240000pt;}
.y34_c00281{bottom:411.520000pt;}
.y36_c00281{bottom:412.160000pt;}
.y32_c00281{bottom:456.960000pt;}
.y33_c00281{bottom:457.600000pt;}
.y31_c00281{bottom:458.880000pt;}
.y30_c00281{bottom:459.520000pt;}
.y2f_c00281{bottom:496.640000pt;}
.y2e_c00281{bottom:497.920000pt;}
.y2d_c00281{bottom:498.560000pt;}
.y29_c00281{bottom:543.360000pt;}
.y2a_c00281{bottom:544.640000pt;}
.y2b_c00281{bottom:546.560000pt;}
.y2c_c00281{bottom:547.200000pt;}
.y27_c00281{bottom:582.400000pt;}
.y28_c00281{bottom:583.040000pt;}
.y24_c00281{bottom:584.320000pt;}
.y26_c00281{bottom:584.960000pt;}
.y25_c00281{bottom:585.600000pt;}
.y1e_c00281{bottom:620.160000pt;}
.y23_c00281{bottom:621.440000pt;}
.y21_c00281{bottom:622.080000pt;}
.y1f_c00281{bottom:622.720000pt;}
.y20_c00281{bottom:623.360000pt;}
.y22_c00281{bottom:624.000000pt;}
.y1d_c00281{bottom:659.200000pt;}
.y1a_c00281{bottom:659.840000pt;}
.y1b_c00281{bottom:660.480000pt;}
.y19_c00281{bottom:661.760000pt;}
.y1c_c00281{bottom:662.400000pt;}
.y17_c00281{bottom:698.240000pt;}
.y16_c00281{bottom:700.160000pt;}
.y18_c00281{bottom:700.800000pt;}
.y14_c00281{bottom:746.240000pt;}
.y15_c00281{bottom:746.880000pt;}
.y11_c00281{bottom:747.520000pt;}
.y13_c00281{bottom:748.160000pt;}
.y12_c00281{bottom:748.800000pt;}
.ye_c00281{bottom:784.000000pt;}
.yf_c00281{bottom:784.640000pt;}
.yd_c00281{bottom:785.280000pt;}
.y10_c00281{bottom:785.920000pt;}
.yc_c00281{bottom:821.760000pt;}
.yb_c00281{bottom:822.400000pt;}
.ya_c00281{bottom:824.320000pt;}
.y9_c00281{bottom:824.960000pt;}
.y6_c00281{bottom:878.080000pt;}
.y5_c00281{bottom:879.360000pt;}
.y8_c00281{bottom:880.000000pt;}
.y3_c00281{bottom:917.120000pt;}
.y7_c00281{bottom:917.760000pt;}
.y2_c00281{bottom:918.400000pt;}
.y4_c00281{bottom:920.320000pt;}
.y1_c00281{bottom:968.960000pt;}
.h14_c00281{height:13.822500pt;}
.h15_c00281{height:16.126250pt;}
.hf_c00281{height:18.430000pt;}
.hc_c00281{height:27.645000pt;}
.hb_c00281{height:29.948750pt;}
.hd_c00281{height:32.252500pt;}
.h12_c00281{height:34.556250pt;}
.h11_c00281{height:36.860000pt;}
.h9_c00281{height:39.163750pt;}
.h4_c00281{height:41.467500pt;}
.h8_c00281{height:43.771250pt;}
.h6_c00281{height:46.075000pt;}
.h3_c00281{height:48.378750pt;}
.ha_c00281{height:50.682500pt;}
.he_c00281{height:52.986250pt;}
.h7_c00281{height:55.290000pt;}
.h10_c00281{height:57.593750pt;}
.h2_c00281{height:59.897500pt;}
.h5_c00281{height:62.201250pt;}
.h13_c00281{height:69.112500pt;}
.h16_c00281{height:82.935000pt;}
.h1_c00281{height:1004.666667pt;}
.h0_c00281{height:1004.800000pt;}
.w1_c00281{width:670.000000pt;}
.w0_c00281{width:670.080000pt;}
.x0_c00281{left:0.000000pt;}
.x2_c00281{left:55.680000pt;}
.x34_c00281{left:57.600000pt;}
.x4f_c00281{left:58.880000pt;}
.x14_c00281{left:83.200000pt;}
.x43_c00281{left:84.480000pt;}
.x54_c00281{left:95.360000pt;}
.x61_c00281{left:105.600000pt;}
.x35_c00281{left:112.640000pt;}
.x3_c00281{left:120.960000pt;}
.x2c_c00281{left:122.240000pt;}
.x26_c00281{left:131.840000pt;}
.x67_c00281{left:133.120000pt;}
.x36_c00281{left:140.160000pt;}
.x2d_c00281{left:142.080000pt;}
.x41_c00281{left:150.400000pt;}
.xd_c00281{left:151.680000pt;}
.x64_c00281{left:153.600000pt;}
.x1a_c00281{left:160.640000pt;}
.x55_c00281{left:162.560000pt;}
.x2e_c00281{left:171.520000pt;}
.x15_c00281{left:179.200000pt;}
.xe_c00281{left:180.480000pt;}
.x5f_c00281{left:181.760000pt;}
.x1b_c00281{left:190.080000pt;}
.x56_c00281{left:192.000000pt;}
.x37_c00281{left:199.040000pt;}
.x66_c00281{left:201.600000pt;}
.x57_c00281{left:207.360000pt;}
.x1f_c00281{left:209.280000pt;}
.x44_c00281{left:211.200000pt;}
.x3d_c00281{left:218.240000pt;}
.x4a_c00281{left:220.800000pt;}
.x16_c00281{left:227.840000pt;}
.x27_c00281{left:229.120000pt;}
.x4_c00281{left:236.800000pt;}
.x5a_c00281{left:249.600000pt;}
.x20_c00281{left:256.000000pt;}
.xf_c00281{left:257.280000pt;}
.x45_c00281{left:258.560000pt;}
.x2f_c00281{left:266.240000pt;}
.x4b_c00281{left:268.160000pt;}
.x28_c00281{left:276.480000pt;}
.x68_c00281{left:278.400000pt;}
.x5_c00281{left:284.160000pt;}
.x10_c00281{left:285.440000pt;}
.x38_c00281{left:295.680000pt;}
.x5b_c00281{left:297.600000pt;}
.x30_c00281{left:304.640000pt;}
.x52_c00281{left:305.920000pt;}
.x51_c00281{left:307.200000pt;}
.x29_c00281{left:314.240000pt;}
.x4c_c00281{left:315.520000pt;}
.x6_c00281{left:323.200000pt;}
.x21_c00281{left:324.480000pt;}
.x65_c00281{left:326.400000pt;}
.x39_c00281{left:334.080000pt;}
.x62_c00281{left:336.000000pt;}
.x1c_c00281{left:342.400000pt;}
.x31_c00281{left:343.680000pt;}
.x3e_c00281{left:344.960000pt;}
.x17_c00281{left:352.640000pt;}
.x60_c00281{left:354.560000pt;}
.x59_c00281{left:361.600000pt;}
.x5c_c00281{left:364.800000pt;}
.x46_c00281{left:372.480000pt;}
.x49_c00281{left:373.760000pt;}
.x1d_c00281{left:381.440000pt;}
.x11_c00281{left:390.400000pt;}
.x42_c00281{left:391.680000pt;}
.x63_c00281{left:393.600000pt;}
.x47_c00281{left:401.920000pt;}
.x58_c00281{left:409.600000pt;}
.x1e_c00281{left:410.880000pt;}
.x50_c00281{left:412.160000pt;}
.x12_c00281{left:419.840000pt;}
.x4d_c00281{left:421.120000pt;}
.x22_c00281{left:429.440000pt;}
.x18_c00281{left:438.400000pt;}
.x3f_c00281{left:440.320000pt;}
.x32_c00281{left:449.280000pt;}
.x23_c00281{left:457.600000pt;}
.x5d_c00281{left:460.160000pt;}
.x4e_c00281{left:469.120000pt;}
.x13_c00281{left:476.800000pt;}
.x40_c00281{left:486.400000pt;}
.x19_c00281{left:496.000000pt;}
.xa_c00281{left:497.280000pt;}
.x2a_c00281{left:506.880000pt;}
.xb_c00281{left:515.200000pt;}
.x5e_c00281{left:517.760000pt;}
.x3a_c00281{left:526.080000pt;}
.x53_c00281{left:527.360000pt;}
.x33_c00281{left:535.040000pt;}
.x7_c00281{left:545.280000pt;}
.x24_c00281{left:553.600000pt;}
.x3b_c00281{left:564.480000pt;}
.x8_c00281{left:574.080000pt;}
.x2b_c00281{left:581.760000pt;}
.x48_c00281{left:583.680000pt;}
.x1_c00281{left:590.080000pt;}
.x3c_c00281{left:593.280000pt;}
.x25_c00281{left:601.600000pt;}
.xc_c00281{left:611.200000pt;}
.x9_c00281{left:612.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_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_c35ba5e98925aa50d374e221.woff2')format("woff");}.ff1_c00282{font-family:ff1_c00282;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m37_c00282{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m38_c00282{transform:matrix(0.184475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184475,0.000000,0.000000,0.250000,0,0);}
.m2a_c00282{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00282{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m36_c00282{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m32_c00282{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m33_c00282{transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);}
.m3a_c00282{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.mf_c00282{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);}
.m22_c00282{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m12_c00282{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_c00282{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_c00282{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m19_c00282{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m21_c00282{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_c00282{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.ma_c00282{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00282{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m11_c00282{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m9_c00282{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mb_c00282{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m16_c00282{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m14_c00282{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m7_c00282{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m10_c00282{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.mc_c00282{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00282{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m34_c00282{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.me_c00282{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m8_c00282{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00282{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m18_c00282{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m2_c00282{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00282{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m15_c00282{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m0_c00282{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m17_c00282{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m25_c00282{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m20_c00282{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);}
.m3b_c00282{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);}
.m3_c00282{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);}
.m35_c00282{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m6_c00282{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m1_c00282{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m27_c00282{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.md_c00282{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m5_c00282{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m31_c00282{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m4_c00282{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m23_c00282{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_c00282{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);}
.m24_c00282{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00282{transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);}
.m28_c00282{transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00282{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);}
.m29_c00282{transform:matrix(0.977500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.977500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.977500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00282{transform:matrix(1.062500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.062500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.062500,0.000000,0.000000,0.250000,0,0);}
.m30_c00282{transform:matrix(1.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.547500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00282{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00282{transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);}
.m39_c00282{transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);}
.v4_c00282{vertical-align:-8.640000px;}
.v0_c00282{vertical-align:0.000000px;}
.v1_c00282{vertical-align:2.880000px;}
.v3_c00282{vertical-align:5.760000px;}
.v5_c00282{vertical-align:8.640000px;}
.v2_c00282{vertical-align:11.520000px;}
.ls2_c00282{letter-spacing:0.000000px;}
.ls0_c00282{letter-spacing:217.771680px;}
.ls1_c00282{letter-spacing:315.679680px;}
.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;}
}
.ws7_c00282{word-spacing:0.000000px;}
.ws4_c00282{word-spacing:39.555873px;}
.ws0_c00282{word-spacing:53.766962px;}
.ws6_c00282{word-spacing:185.459520px;}
.ws2_c00282{word-spacing:197.900400px;}
.ws1_c00282{word-spacing:214.214400px;}
.ws3_c00282{word-spacing:250.352400px;}
.ws5_c00282{word-spacing:355.582560px;}
._0_c00282{width:57.014911px;}
.fc0_c00282{color:transparent;}
.fsc_c00282{font-size:17.280000px;}
.fsb_c00282{font-size:20.160000px;}
.fs5_c00282{font-size:25.920000px;}
.fsd_c00282{font-size:34.560000px;}
.fse_c00282{font-size:37.440000px;}
.fsa_c00282{font-size:40.320000px;}
.fs8_c00282{font-size:46.080000px;}
.fs7_c00282{font-size:48.960000px;}
.fs4_c00282{font-size:51.840000px;}
.fs1_c00282{font-size:54.720000px;}
.fs6_c00282{font-size:57.600000px;}
.fs3_c00282{font-size:60.480000px;}
.fs9_c00282{font-size:63.360000px;}
.fs2_c00282{font-size:66.240000px;}
.fs0_c00282{font-size:77.760000px;}
.y0_c00282{bottom:0.000000px;}
.y66_c00282{bottom:288.000000px;}
.y65_c00282{bottom:288.720000px;}
.y64_c00282{bottom:290.160000px;}
.y67_c00282{bottom:290.880000px;}
.y63_c00282{bottom:331.920000px;}
.y62_c00282{bottom:334.800000px;}
.y61_c00282{bottom:336.960000px;}
.y5c_c00282{bottom:375.120000px;}
.y5d_c00282{bottom:375.840000px;}
.y5e_c00282{bottom:376.560000px;}
.y60_c00282{bottom:377.280000px;}
.y5f_c00282{bottom:380.160000px;}
.y5a_c00282{bottom:408.240000px;}
.y5b_c00282{bottom:409.680000px;}
.y58_c00282{bottom:410.400000px;}
.y57_c00282{bottom:411.120000px;}
.y59_c00282{bottom:413.280000px;}
.y56_c00282{bottom:439.200000px;}
.y53_c00282{bottom:439.920000px;}
.y55_c00282{bottom:440.640000px;}
.y54_c00282{bottom:442.800000px;}
.y50_c00282{bottom:472.320000px;}
.y51_c00282{bottom:473.040000px;}
.y4f_c00282{bottom:475.200000px;}
.y4e_c00282{bottom:475.920000px;}
.y52_c00282{bottom:477.360000px;}
.y4b_c00282{bottom:505.440000px;}
.y4a_c00282{bottom:506.160000px;}
.y4c_c00282{bottom:506.880000px;}
.y4d_c00282{bottom:507.600000px;}
.y49_c00282{bottom:508.320000px;}
.y45_c00282{bottom:548.640000px;}
.y48_c00282{bottom:549.360000px;}
.y46_c00282{bottom:550.800000px;}
.y44_c00282{bottom:551.520000px;}
.y47_c00282{bottom:552.960000px;}
.y41_c00282{bottom:583.920000px;}
.y42_c00282{bottom:586.080000px;}
.y43_c00282{bottom:586.800000px;}
.y40_c00282{bottom:615.600000px;}
.y3c_c00282{bottom:616.320000px;}
.y3d_c00282{bottom:617.040000px;}
.y3f_c00282{bottom:617.760000px;}
.y3e_c00282{bottom:618.480000px;}
.y3b_c00282{bottom:645.120000px;}
.y3a_c00282{bottom:646.560000px;}
.y39_c00282{bottom:648.000000px;}
.y38_c00282{bottom:679.680000px;}
.y34_c00282{bottom:680.400000px;}
.y35_c00282{bottom:681.120000px;}
.y37_c00282{bottom:682.560000px;}
.y36_c00282{bottom:683.280000px;}
.y32_c00282{bottom:720.000000px;}
.y33_c00282{bottom:721.440000px;}
.y31_c00282{bottom:722.880000px;}
.y2f_c00282{bottom:723.600000px;}
.y30_c00282{bottom:724.320000px;}
.y2e_c00282{bottom:752.400000px;}
.y2c_c00282{bottom:753.840000px;}
.y2d_c00282{bottom:754.560000px;}
.y2b_c00282{bottom:756.000000px;}
.y2a_c00282{bottom:795.600000px;}
.y27_c00282{bottom:796.320000px;}
.y28_c00282{bottom:798.480000px;}
.y29_c00282{bottom:799.200000px;}
.y25_c00282{bottom:829.440000px;}
.y24_c00282{bottom:830.880000px;}
.y26_c00282{bottom:832.320000px;}
.y23_c00282{bottom:871.200000px;}
.y22_c00282{bottom:871.920000px;}
.y21_c00282{bottom:873.360000px;}
.y20_c00282{bottom:874.080000px;}
.y1f_c00282{bottom:903.600000px;}
.y1d_c00282{bottom:905.040000px;}
.y1e_c00282{bottom:906.480000px;}
.y1b_c00282{bottom:907.200000px;}
.y1c_c00282{bottom:907.920000px;}
.y1a_c00282{bottom:936.000000px;}
.y19_c00282{bottom:936.720000px;}
.y17_c00282{bottom:938.160000px;}
.y18_c00282{bottom:938.880000px;}
.y15_c00282{bottom:939.600000px;}
.y16_c00282{bottom:940.320000px;}
.y13_c00282{bottom:969.120000px;}
.y14_c00282{bottom:969.840000px;}
.y12_c00282{bottom:970.560000px;}
.y11_c00282{bottom:972.000000px;}
.y10_c00282{bottom:1002.960000px;}
.yc_c00282{bottom:1003.680000px;}
.yf_c00282{bottom:1004.400000px;}
.yd_c00282{bottom:1005.120000px;}
.ye_c00282{bottom:1005.840000px;}
.yb_c00282{bottom:1033.920000px;}
.ya_c00282{bottom:1034.640000px;}
.y9_c00282{bottom:1035.360000px;}
.y8_c00282{bottom:1036.080000px;}
.y7_c00282{bottom:1037.520000px;}
.y6_c00282{bottom:1046.160000px;}
.y5_c00282{bottom:1046.880000px;}
.y4_c00282{bottom:1056.240000px;}
.y3_c00282{bottom:1056.960000px;}
.y2_c00282{bottom:1059.120000px;}
.y1_c00282{bottom:1110.240000px;}
.h11_c00282{height:15.550313px;}
.h10_c00282{height:18.142031px;}
.h7_c00282{height:23.325469px;}
.h12_c00282{height:31.100625px;}
.h13_c00282{height:33.692344px;}
.hf_c00282{height:36.284062px;}
.ha_c00282{height:41.467500px;}
.h9_c00282{height:44.059219px;}
.h6_c00282{height:46.650937px;}
.h3_c00282{height:49.242656px;}
.h8_c00282{height:51.834375px;}
.h5_c00282{height:54.426094px;}
.hb_c00282{height:54.714375px;}
.hc_c00282{height:55.579219px;}
.hd_c00282{height:57.017812px;}
.h4_c00282{height:59.609531px;}
.he_c00282{height:60.186094px;}
.h14_c00282{height:63.066094px;}
.h2_c00282{height:69.976406px;}
.h0_c00282{height:1160.640000px;}
.h1_c00282{height:1161.000000px;}
.w1_c00282{width:788.250000px;}
.w0_c00282{width:788.400000px;}
.x0_c00282{left:0.000000px;}
.xa_c00282{left:81.360000px;}
.x26_c00282{left:90.720000px;}
.x1d_c00282{left:100.800000px;}
.x1e_c00282{left:110.880000px;}
.x1b_c00282{left:121.680000px;}
.xb_c00282{left:123.120000px;}
.x27_c00282{left:131.040000px;}
.x11_c00282{left:132.480000px;}
.x16_c00282{left:133.920000px;}
.x2_c00282{left:165.600000px;}
.x12_c00282{left:176.400000px;}
.x20_c00282{left:185.760000px;}
.x8_c00282{left:187.920000px;}
.x3_c00282{left:263.520000px;}
.x13_c00282{left:273.600000px;}
.x21_c00282{left:283.680000px;}
.xc_c00282{left:285.840000px;}
.x4_c00282{left:339.840000px;}
.x29_c00282{left:349.920000px;}
.x14_c00282{left:360.720000px;}
.x24_c00282{left:369.360000px;}
.xd_c00282{left:371.520000px;}
.x5_c00282{left:437.040000px;}
.x1a_c00282{left:447.840000px;}
.x15_c00282{left:458.640000px;}
.x28_c00282{left:465.120000px;}
.x22_c00282{left:467.280000px;}
.xe_c00282{left:469.440000px;}
.x9_c00282{left:522.720000px;}
.x2a_c00282{left:542.880000px;}
.x18_c00282{left:545.040000px;}
.x23_c00282{left:552.960000px;}
.x1c_c00282{left:554.400000px;}
.xf_c00282{left:555.840000px;}
.x2b_c00282{left:619.200000px;}
.x6_c00282{left:630.000000px;}
.x19_c00282{left:631.440000px;}
.x1f_c00282{left:640.080000px;}
.x17_c00282{left:641.520000px;}
.x25_c00282{left:650.160000px;}
.x10_c00282{left:652.320000px;}
.x7_c00282{left:662.400000px;}
.x1_c00282{left:696.240000px;}
@media print{
.v4_c00282{vertical-align:-7.680000pt;}
.v0_c00282{vertical-align:0.000000pt;}
.v1_c00282{vertical-align:2.560000pt;}
.v3_c00282{vertical-align:5.120000pt;}
.v5_c00282{vertical-align:7.680000pt;}
.v2_c00282{vertical-align:10.240000pt;}
.ls2_c00282{letter-spacing:0.000000pt;}
.ls0_c00282{letter-spacing:193.574827pt;}
.ls1_c00282{letter-spacing:280.604160pt;}
.ws7_c00282{word-spacing:0.000000pt;}
.ws4_c00282{word-spacing:35.160776pt;}
.ws0_c00282{word-spacing:47.792855pt;}
.ws6_c00282{word-spacing:164.852907pt;}
.ws2_c00282{word-spacing:175.911467pt;}
.ws1_c00282{word-spacing:190.412800pt;}
.ws3_c00282{word-spacing:222.535467pt;}
.ws5_c00282{word-spacing:316.073387pt;}
._0_c00282{width:50.679921pt;}
.fsc_c00282{font-size:15.360000pt;}
.fsb_c00282{font-size:17.920000pt;}
.fs5_c00282{font-size:23.040000pt;}
.fsd_c00282{font-size:30.720000pt;}
.fse_c00282{font-size:33.280000pt;}
.fsa_c00282{font-size:35.840000pt;}
.fs8_c00282{font-size:40.960000pt;}
.fs7_c00282{font-size:43.520000pt;}
.fs4_c00282{font-size:46.080000pt;}
.fs1_c00282{font-size:48.640000pt;}
.fs6_c00282{font-size:51.200000pt;}
.fs3_c00282{font-size:53.760000pt;}
.fs9_c00282{font-size:56.320000pt;}
.fs2_c00282{font-size:58.880000pt;}
.fs0_c00282{font-size:69.120000pt;}
.y0_c00282{bottom:0.000000pt;}
.y66_c00282{bottom:256.000000pt;}
.y65_c00282{bottom:256.640000pt;}
.y64_c00282{bottom:257.920000pt;}
.y67_c00282{bottom:258.560000pt;}
.y63_c00282{bottom:295.040000pt;}
.y62_c00282{bottom:297.600000pt;}
.y61_c00282{bottom:299.520000pt;}
.y5c_c00282{bottom:333.440000pt;}
.y5d_c00282{bottom:334.080000pt;}
.y5e_c00282{bottom:334.720000pt;}
.y60_c00282{bottom:335.360000pt;}
.y5f_c00282{bottom:337.920000pt;}
.y5a_c00282{bottom:362.880000pt;}
.y5b_c00282{bottom:364.160000pt;}
.y58_c00282{bottom:364.800000pt;}
.y57_c00282{bottom:365.440000pt;}
.y59_c00282{bottom:367.360000pt;}
.y56_c00282{bottom:390.400000pt;}
.y53_c00282{bottom:391.040000pt;}
.y55_c00282{bottom:391.680000pt;}
.y54_c00282{bottom:393.600000pt;}
.y50_c00282{bottom:419.840000pt;}
.y51_c00282{bottom:420.480000pt;}
.y4f_c00282{bottom:422.400000pt;}
.y4e_c00282{bottom:423.040000pt;}
.y52_c00282{bottom:424.320000pt;}
.y4b_c00282{bottom:449.280000pt;}
.y4a_c00282{bottom:449.920000pt;}
.y4c_c00282{bottom:450.560000pt;}
.y4d_c00282{bottom:451.200000pt;}
.y49_c00282{bottom:451.840000pt;}
.y45_c00282{bottom:487.680000pt;}
.y48_c00282{bottom:488.320000pt;}
.y46_c00282{bottom:489.600000pt;}
.y44_c00282{bottom:490.240000pt;}
.y47_c00282{bottom:491.520000pt;}
.y41_c00282{bottom:519.040000pt;}
.y42_c00282{bottom:520.960000pt;}
.y43_c00282{bottom:521.600000pt;}
.y40_c00282{bottom:547.200000pt;}
.y3c_c00282{bottom:547.840000pt;}
.y3d_c00282{bottom:548.480000pt;}
.y3f_c00282{bottom:549.120000pt;}
.y3e_c00282{bottom:549.760000pt;}
.y3b_c00282{bottom:573.440000pt;}
.y3a_c00282{bottom:574.720000pt;}
.y39_c00282{bottom:576.000000pt;}
.y38_c00282{bottom:604.160000pt;}
.y34_c00282{bottom:604.800000pt;}
.y35_c00282{bottom:605.440000pt;}
.y37_c00282{bottom:606.720000pt;}
.y36_c00282{bottom:607.360000pt;}
.y32_c00282{bottom:640.000000pt;}
.y33_c00282{bottom:641.280000pt;}
.y31_c00282{bottom:642.560000pt;}
.y2f_c00282{bottom:643.200000pt;}
.y30_c00282{bottom:643.840000pt;}
.y2e_c00282{bottom:668.800000pt;}
.y2c_c00282{bottom:670.080000pt;}
.y2d_c00282{bottom:670.720000pt;}
.y2b_c00282{bottom:672.000000pt;}
.y2a_c00282{bottom:707.200000pt;}
.y27_c00282{bottom:707.840000pt;}
.y28_c00282{bottom:709.760000pt;}
.y29_c00282{bottom:710.400000pt;}
.y25_c00282{bottom:737.280000pt;}
.y24_c00282{bottom:738.560000pt;}
.y26_c00282{bottom:739.840000pt;}
.y23_c00282{bottom:774.400000pt;}
.y22_c00282{bottom:775.040000pt;}
.y21_c00282{bottom:776.320000pt;}
.y20_c00282{bottom:776.960000pt;}
.y1f_c00282{bottom:803.200000pt;}
.y1d_c00282{bottom:804.480000pt;}
.y1e_c00282{bottom:805.760000pt;}
.y1b_c00282{bottom:806.400000pt;}
.y1c_c00282{bottom:807.040000pt;}
.y1a_c00282{bottom:832.000000pt;}
.y19_c00282{bottom:832.640000pt;}
.y17_c00282{bottom:833.920000pt;}
.y18_c00282{bottom:834.560000pt;}
.y15_c00282{bottom:835.200000pt;}
.y16_c00282{bottom:835.840000pt;}
.y13_c00282{bottom:861.440000pt;}
.y14_c00282{bottom:862.080000pt;}
.y12_c00282{bottom:862.720000pt;}
.y11_c00282{bottom:864.000000pt;}
.y10_c00282{bottom:891.520000pt;}
.yc_c00282{bottom:892.160000pt;}
.yf_c00282{bottom:892.800000pt;}
.yd_c00282{bottom:893.440000pt;}
.ye_c00282{bottom:894.080000pt;}
.yb_c00282{bottom:919.040000pt;}
.ya_c00282{bottom:919.680000pt;}
.y9_c00282{bottom:920.320000pt;}
.y8_c00282{bottom:920.960000pt;}
.y7_c00282{bottom:922.240000pt;}
.y6_c00282{bottom:929.920000pt;}
.y5_c00282{bottom:930.560000pt;}
.y4_c00282{bottom:938.880000pt;}
.y3_c00282{bottom:939.520000pt;}
.y2_c00282{bottom:941.440000pt;}
.y1_c00282{bottom:986.880000pt;}
.h11_c00282{height:13.822500pt;}
.h10_c00282{height:16.126250pt;}
.h7_c00282{height:20.733750pt;}
.h12_c00282{height:27.645000pt;}
.h13_c00282{height:29.948750pt;}
.hf_c00282{height:32.252500pt;}
.ha_c00282{height:36.860000pt;}
.h9_c00282{height:39.163750pt;}
.h6_c00282{height:41.467500pt;}
.h3_c00282{height:43.771250pt;}
.h8_c00282{height:46.075000pt;}
.h5_c00282{height:48.378750pt;}
.hb_c00282{height:48.635000pt;}
.hc_c00282{height:49.403750pt;}
.hd_c00282{height:50.682500pt;}
.h4_c00282{height:52.986250pt;}
.he_c00282{height:53.498750pt;}
.h14_c00282{height:56.058750pt;}
.h2_c00282{height:62.201250pt;}
.h0_c00282{height:1031.680000pt;}
.h1_c00282{height:1032.000000pt;}
.w1_c00282{width:700.666667pt;}
.w0_c00282{width:700.800000pt;}
.x0_c00282{left:0.000000pt;}
.xa_c00282{left:72.320000pt;}
.x26_c00282{left:80.640000pt;}
.x1d_c00282{left:89.600000pt;}
.x1e_c00282{left:98.560000pt;}
.x1b_c00282{left:108.160000pt;}
.xb_c00282{left:109.440000pt;}
.x27_c00282{left:116.480000pt;}
.x11_c00282{left:117.760000pt;}
.x16_c00282{left:119.040000pt;}
.x2_c00282{left:147.200000pt;}
.x12_c00282{left:156.800000pt;}
.x20_c00282{left:165.120000pt;}
.x8_c00282{left:167.040000pt;}
.x3_c00282{left:234.240000pt;}
.x13_c00282{left:243.200000pt;}
.x21_c00282{left:252.160000pt;}
.xc_c00282{left:254.080000pt;}
.x4_c00282{left:302.080000pt;}
.x29_c00282{left:311.040000pt;}
.x14_c00282{left:320.640000pt;}
.x24_c00282{left:328.320000pt;}
.xd_c00282{left:330.240000pt;}
.x5_c00282{left:388.480000pt;}
.x1a_c00282{left:398.080000pt;}
.x15_c00282{left:407.680000pt;}
.x28_c00282{left:413.440000pt;}
.x22_c00282{left:415.360000pt;}
.xe_c00282{left:417.280000pt;}
.x9_c00282{left:464.640000pt;}
.x2a_c00282{left:482.560000pt;}
.x18_c00282{left:484.480000pt;}
.x23_c00282{left:491.520000pt;}
.x1c_c00282{left:492.800000pt;}
.xf_c00282{left:494.080000pt;}
.x2b_c00282{left:550.400000pt;}
.x6_c00282{left:560.000000pt;}
.x19_c00282{left:561.280000pt;}
.x1f_c00282{left:568.960000pt;}
.x17_c00282{left:570.240000pt;}
.x25_c00282{left:577.920000pt;}
.x10_c00282{left:579.840000pt;}
.x7_c00282{left:588.800000pt;}
.x1_c00282{left:618.880000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c46f75eab4ad2c05653d2bc6.woff2')format("woff");}.ff1_c00283{font-family:ff1_c00283;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00283{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m55_c00283{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);}
.m51_c00283{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);}
.m56_c00283{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m39_c00283{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m57_c00283{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);}
.m46_c00283{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m16_c00283{transform:matrix(0.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);}
.m4a_c00283{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);}
.m49_c00283{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00283{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00283{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m53_c00283{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m13_c00283{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m17_c00283{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.me_c00283{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m50_c00283{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00283{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00283{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m23_c00283{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m40_c00283{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00283{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00283{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m18_c00283{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00283{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m11_c00283{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.mf_c00283{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00283{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00283{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m8_c00283{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m44_c00283{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00283{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1_c00283{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00283{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m28_c00283{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m14_c00283{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m30_c00283{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m25_c00283{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);}
.m5a_c00283{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);}
.m10_c00283{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);}
.m1c_c00283{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.ma_c00283{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);}
.m54_c00283{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m26_c00283{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);}
.m29_c00283{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);}
.m4c_c00283{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m52_c00283{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m19_c00283{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00283{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);}
.m33_c00283{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m24_c00283{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m3_c00283{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);}
.m5_c00283{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);}
.m7_c00283{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m45_c00283{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00283{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m4_c00283{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m34_c00283{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);}
.m41_c00283{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m36_c00283{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m6_c00283{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_c00283{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m22_c00283{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m32_c00283{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m58_c00283{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00283{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);}
.m59_c00283{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.mc_c00283{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);}
.m27_c00283{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m37_c00283{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m2_c00283{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00283{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);}
.m43_c00283{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m12_c00283{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m21_c00283{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);}
.mb_c00283{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00283{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00283{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);}
.m3c_c00283{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m48_c00283{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.md_c00283{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m9_c00283{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00283{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);}
.m4b_c00283{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m47_c00283{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);}
.m42_c00283{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00283{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00283{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m31_c00283{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m38_c00283{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);}
.m15_c00283{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m35_c00283{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.v2_c00283{vertical-align:-11.520000px;}
.v0_c00283{vertical-align:0.000000px;}
.v1_c00283{vertical-align:2.880000px;}
.ls0_c00283{letter-spacing:0.000000px;}
.sc__c00283{text-shadow:none;}
.sc0_c00283{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00283{-webkit-text-stroke:0px transparent;}
.sc0_c00283{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00283{word-spacing:-6.083280px;}
.ws1_c00283{word-spacing:-3.383280px;}
.ws2_c00283{word-spacing:-2.118240px;}
.ws5_c00283{word-spacing:0.000000px;}
.ws0_c00283{word-spacing:3.496660px;}
.ws4_c00283{word-spacing:7.208880px;}
.fc0_c00283{color:transparent;}
.fsb_c00283{font-size:34.560000px;}
.fsc_c00283{font-size:37.440000px;}
.fs5_c00283{font-size:40.320000px;}
.fs8_c00283{font-size:43.200000px;}
.fs1_c00283{font-size:46.080000px;}
.fs2_c00283{font-size:48.960000px;}
.fs3_c00283{font-size:51.840000px;}
.fs7_c00283{font-size:54.720000px;}
.fs4_c00283{font-size:57.600000px;}
.fsd_c00283{font-size:60.480000px;}
.fs6_c00283{font-size:63.360000px;}
.fsa_c00283{font-size:66.240000px;}
.fs9_c00283{font-size:69.120000px;}
.fse_c00283{font-size:72.000000px;}
.fsf_c00283{font-size:74.880000px;}
.fs10_c00283{font-size:77.760000px;}
.fs0_c00283{font-size:83.520000px;}
.y0_c00283{bottom:0.000000px;}
.y86_c00283{bottom:28.800000px;}
.y87_c00283{bottom:30.960000px;}
.y85_c00283{bottom:31.680000px;}
.y84_c00283{bottom:33.120000px;}
.y88_c00283{bottom:34.560000px;}
.y80_c00283{bottom:72.000000px;}
.y7f_c00283{bottom:72.720000px;}
.y83_c00283{bottom:73.440000px;}
.y82_c00283{bottom:74.160000px;}
.y81_c00283{bottom:74.880000px;}
.y7e_c00283{bottom:76.320000px;}
.y7d_c00283{bottom:78.480000px;}
.y77_c00283{bottom:115.200000px;}
.y79_c00283{bottom:115.920000px;}
.y7b_c00283{bottom:117.360000px;}
.y78_c00283{bottom:118.080000px;}
.y76_c00283{bottom:118.800000px;}
.y7a_c00283{bottom:120.240000px;}
.y7c_c00283{bottom:120.960000px;}
.y74_c00283{bottom:159.120000px;}
.y73_c00283{bottom:160.560000px;}
.y72_c00283{bottom:162.720000px;}
.y75_c00283{bottom:163.440000px;}
.y71_c00283{bottom:165.600000px;}
.y6b_c00283{bottom:202.320000px;}
.y6e_c00283{bottom:203.760000px;}
.y6d_c00283{bottom:204.480000px;}
.y6c_c00283{bottom:205.200000px;}
.y6f_c00283{bottom:206.640000px;}
.y70_c00283{bottom:207.360000px;}
.y6a_c00283{bottom:208.080000px;}
.y66_c00283{bottom:245.520000px;}
.y68_c00283{bottom:247.680000px;}
.y69_c00283{bottom:248.400000px;}
.y67_c00283{bottom:249.120000px;}
.y65_c00283{bottom:249.840000px;}
.y62_c00283{bottom:290.160000px;}
.y63_c00283{bottom:290.880000px;}
.y60_c00283{bottom:292.320000px;}
.y61_c00283{bottom:293.040000px;}
.y64_c00283{bottom:293.760000px;}
.y5b_c00283{bottom:333.360000px;}
.y5d_c00283{bottom:334.080000px;}
.y5c_c00283{bottom:335.520000px;}
.y5e_c00283{bottom:336.240000px;}
.y5f_c00283{bottom:336.960000px;}
.y57_c00283{bottom:375.840000px;}
.y59_c00283{bottom:377.280000px;}
.y58_c00283{bottom:378.720000px;}
.y56_c00283{bottom:379.440000px;}
.y55_c00283{bottom:380.160000px;}
.y5a_c00283{bottom:380.880000px;}
.y50_c00283{bottom:419.040000px;}
.y52_c00283{bottom:419.760000px;}
.y53_c00283{bottom:420.480000px;}
.y54_c00283{bottom:421.920000px;}
.y51_c00283{bottom:422.640000px;}
.y4f_c00283{bottom:423.360000px;}
.y4e_c00283{bottom:462.960000px;}
.y4d_c00283{bottom:463.680000px;}
.y4c_c00283{bottom:465.120000px;}
.y4a_c00283{bottom:465.840000px;}
.y4b_c00283{bottom:466.560000px;}
.y48_c00283{bottom:505.440000px;}
.y47_c00283{bottom:506.160000px;}
.y46_c00283{bottom:506.880000px;}
.y45_c00283{bottom:508.320000px;}
.y44_c00283{bottom:509.040000px;}
.y49_c00283{bottom:509.760000px;}
.y40_c00283{bottom:549.360000px;}
.y41_c00283{bottom:550.800000px;}
.y42_c00283{bottom:551.520000px;}
.y43_c00283{bottom:552.240000px;}
.y3c_c00283{bottom:592.560000px;}
.y3d_c00283{bottom:594.000000px;}
.y3e_c00283{bottom:594.720000px;}
.y3f_c00283{bottom:595.440000px;}
.y39_c00283{bottom:633.600000px;}
.y3a_c00283{bottom:635.040000px;}
.y3b_c00283{bottom:637.200000px;}
.y38_c00283{bottom:637.920000px;}
.y34_c00283{bottom:677.520000px;}
.y36_c00283{bottom:678.240000px;}
.y37_c00283{bottom:680.400000px;}
.y33_c00283{bottom:681.120000px;}
.y35_c00283{bottom:681.840000px;}
.y32_c00283{bottom:720.720000px;}
.y31_c00283{bottom:721.440000px;}
.y2f_c00283{bottom:722.160000px;}
.y2e_c00283{bottom:724.320000px;}
.y30_c00283{bottom:725.040000px;}
.y2d_c00283{bottom:763.200000px;}
.y2c_c00283{bottom:764.640000px;}
.y2a_c00283{bottom:765.360000px;}
.y29_c00283{bottom:766.800000px;}
.y2b_c00283{bottom:767.520000px;}
.y28_c00283{bottom:807.120000px;}
.y24_c00283{bottom:809.280000px;}
.y25_c00283{bottom:810.000000px;}
.y26_c00283{bottom:810.720000px;}
.y27_c00283{bottom:811.440000px;}
.y23_c00283{bottom:851.040000px;}
.y20_c00283{bottom:851.760000px;}
.y22_c00283{bottom:852.480000px;}
.y1f_c00283{bottom:853.200000px;}
.y21_c00283{bottom:853.920000px;}
.y1c_c00283{bottom:894.240000px;}
.y1e_c00283{bottom:895.680000px;}
.y1a_c00283{bottom:896.400000px;}
.y1b_c00283{bottom:897.120000px;}
.y1d_c00283{bottom:897.840000px;}
.y19_c00283{bottom:936.720000px;}
.y18_c00283{bottom:937.440000px;}
.y15_c00283{bottom:938.160000px;}
.y14_c00283{bottom:938.880000px;}
.y16_c00283{bottom:939.600000px;}
.y17_c00283{bottom:940.320000px;}
.y10_c00283{bottom:979.920000px;}
.yf_c00283{bottom:980.640000px;}
.yd_c00283{bottom:981.360000px;}
.y13_c00283{bottom:982.080000px;}
.y12_c00283{bottom:982.800000px;}
.y11_c00283{bottom:983.520000px;}
.ye_c00283{bottom:984.240000px;}
.yc_c00283{bottom:1022.400000px;}
.y9_c00283{bottom:1023.840000px;}
.yb_c00283{bottom:1024.560000px;}
.y7_c00283{bottom:1025.280000px;}
.ya_c00283{bottom:1026.000000px;}
.y8_c00283{bottom:1026.720000px;}
.y5_c00283{bottom:1056.960000px;}
.y6_c00283{bottom:1057.680000px;}
.y4_c00283{bottom:1058.400000px;}
.y3_c00283{bottom:1059.120000px;}
.y2_c00283{bottom:1059.840000px;}
.y1_c00283{bottom:1126.080000px;}
.hd_c00283{height:31.100625px;}
.he_c00283{height:33.692344px;}
.h7_c00283{height:36.284062px;}
.ha_c00283{height:38.875781px;}
.h3_c00283{height:41.467500px;}
.h4_c00283{height:44.059219px;}
.h5_c00283{height:46.650937px;}
.h9_c00283{height:49.242656px;}
.h6_c00283{height:51.834375px;}
.hf_c00283{height:54.426094px;}
.h8_c00283{height:57.017812px;}
.hc_c00283{height:59.609531px;}
.h11_c00283{height:59.897813px;}
.hb_c00283{height:62.201250px;}
.h10_c00283{height:64.792969px;}
.h13_c00283{height:69.976406px;}
.h12_c00283{height:70.264687px;}
.h2_c00283{height:75.159844px;}
.h1_c00283{height:1164.000000px;}
.h0_c00283{height:1164.240000px;}
.w0_c00283{width:792.720000px;}
.w1_c00283{width:792.750000px;}
.x0_c00283{left:0.000000px;}
.x8_c00283{left:85.680000px;}
.x12_c00283{left:87.120000px;}
.x4d_c00283{left:88.560000px;}
.x1f_c00283{left:116.640000px;}
.x51_c00283{left:118.800000px;}
.x38_c00283{left:126.720000px;}
.x46_c00283{left:128.160000px;}
.x9_c00283{left:138.960000px;}
.x20_c00283{left:149.040000px;}
.x55_c00283{left:160.560000px;}
.xa_c00283{left:171.360000px;}
.x41_c00283{left:181.440000px;}
.x3e_c00283{left:192.240000px;}
.x2_c00283{left:193.680000px;}
.x32_c00283{left:201.600000px;}
.xb_c00283{left:203.040000px;}
.x25_c00283{left:213.840000px;}
.x3_c00283{left:225.360000px;}
.x2f_c00283{left:234.720000px;}
.x21_c00283{left:236.880000px;}
.x58_c00283{left:245.520000px;}
.x1b_c00283{left:246.960000px;}
.x2a_c00283{left:248.400000px;}
.x52_c00283{left:257.040000px;}
.x13_c00283{left:258.480000px;}
.x33_c00283{left:267.120000px;}
.xc_c00283{left:270.000000px;}
.x4a_c00283{left:278.640000px;}
.x4_c00283{left:280.800000px;}
.x1c_c00283{left:289.440000px;}
.x59_c00283{left:290.880000px;}
.x42_c00283{left:292.320000px;}
.x34_c00283{left:300.240000px;}
.x30_c00283{left:311.040000px;}
.x26_c00283{left:322.560000px;}
.x22_c00283{left:333.360000px;}
.x3f_c00283{left:343.440000px;}
.x14_c00283{left:344.880000px;}
.x1d_c00283{left:354.240000px;}
.x2b_c00283{left:355.680000px;}
.x27_c00283{left:365.760000px;}
.x2c_c00283{left:376.560000px;}
.x5_c00283{left:388.080000px;}
.x4e_c00283{left:396.720000px;}
.xd_c00283{left:398.160000px;}
.x53_c00283{left:399.600000px;}
.x31_c00283{left:408.240000px;}
.x1e_c00283{left:419.040000px;}
.x15_c00283{left:420.480000px;}
.x47_c00283{left:428.400000px;}
.x39_c00283{left:430.560000px;}
.xe_c00283{left:432.000000px;}
.x48_c00283{left:440.640000px;}
.x23_c00283{left:451.440000px;}
.x28_c00283{left:452.880000px;}
.x35_c00283{left:462.240000px;}
.x16_c00283{left:463.680000px;}
.x44_c00283{left:473.040000px;}
.x3a_c00283{left:474.480000px;}
.x17_c00283{left:495.360000px;}
.x3b_c00283{left:504.720000px;}
.x49_c00283{left:506.160000px;}
.x6_c00283{left:516.960000px;}
.x2d_c00283{left:527.760000px;}
.x3c_c00283{left:537.120000px;}
.x56_c00283{left:538.560000px;}
.x18_c00283{left:540.000000px;}
.x36_c00283{left:548.640000px;}
.xf_c00283{left:560.160000px;}
.x19_c00283{left:570.960000px;}
.x3d_c00283{left:580.320000px;}
.x4f_c00283{left:582.480000px;}
.x24_c00283{left:592.560000px;}
.x45_c00283{left:601.200000px;}
.x54_c00283{left:602.640000px;}
.x4c_c00283{left:612.720000px;}
.x29_c00283{left:614.160000px;}
.x57_c00283{left:623.520000px;}
.x10_c00283{left:624.960000px;}
.x2e_c00283{left:634.320000px;}
.x50_c00283{left:635.760000px;}
.x43_c00283{left:645.120000px;}
.x11_c00283{left:656.640000px;}
.x4b_c00283{left:666.000000px;}
.x7_c00283{left:667.440000px;}
.x40_c00283{left:678.240000px;}
.x37_c00283{left:689.040000px;}
.x1a_c00283{left:690.480000px;}
.x1_c00283{left:696.240000px;}
@media print{
.v2_c00283{vertical-align:-10.240000pt;}
.v0_c00283{vertical-align:0.000000pt;}
.v1_c00283{vertical-align:2.560000pt;}
.ls0_c00283{letter-spacing:0.000000pt;}
.ws3_c00283{word-spacing:-5.407360pt;}
.ws1_c00283{word-spacing:-3.007360pt;}
.ws2_c00283{word-spacing:-1.882880pt;}
.ws5_c00283{word-spacing:0.000000pt;}
.ws0_c00283{word-spacing:3.108142pt;}
.ws4_c00283{word-spacing:6.407893pt;}
.fsb_c00283{font-size:30.720000pt;}
.fsc_c00283{font-size:33.280000pt;}
.fs5_c00283{font-size:35.840000pt;}
.fs8_c00283{font-size:38.400000pt;}
.fs1_c00283{font-size:40.960000pt;}
.fs2_c00283{font-size:43.520000pt;}
.fs3_c00283{font-size:46.080000pt;}
.fs7_c00283{font-size:48.640000pt;}
.fs4_c00283{font-size:51.200000pt;}
.fsd_c00283{font-size:53.760000pt;}
.fs6_c00283{font-size:56.320000pt;}
.fsa_c00283{font-size:58.880000pt;}
.fs9_c00283{font-size:61.440000pt;}
.fse_c00283{font-size:64.000000pt;}
.fsf_c00283{font-size:66.560000pt;}
.fs10_c00283{font-size:69.120000pt;}
.fs0_c00283{font-size:74.240000pt;}
.y0_c00283{bottom:0.000000pt;}
.y86_c00283{bottom:25.600000pt;}
.y87_c00283{bottom:27.520000pt;}
.y85_c00283{bottom:28.160000pt;}
.y84_c00283{bottom:29.440000pt;}
.y88_c00283{bottom:30.720000pt;}
.y80_c00283{bottom:64.000000pt;}
.y7f_c00283{bottom:64.640000pt;}
.y83_c00283{bottom:65.280000pt;}
.y82_c00283{bottom:65.920000pt;}
.y81_c00283{bottom:66.560000pt;}
.y7e_c00283{bottom:67.840000pt;}
.y7d_c00283{bottom:69.760000pt;}
.y77_c00283{bottom:102.400000pt;}
.y79_c00283{bottom:103.040000pt;}
.y7b_c00283{bottom:104.320000pt;}
.y78_c00283{bottom:104.960000pt;}
.y76_c00283{bottom:105.600000pt;}
.y7a_c00283{bottom:106.880000pt;}
.y7c_c00283{bottom:107.520000pt;}
.y74_c00283{bottom:141.440000pt;}
.y73_c00283{bottom:142.720000pt;}
.y72_c00283{bottom:144.640000pt;}
.y75_c00283{bottom:145.280000pt;}
.y71_c00283{bottom:147.200000pt;}
.y6b_c00283{bottom:179.840000pt;}
.y6e_c00283{bottom:181.120000pt;}
.y6d_c00283{bottom:181.760000pt;}
.y6c_c00283{bottom:182.400000pt;}
.y6f_c00283{bottom:183.680000pt;}
.y70_c00283{bottom:184.320000pt;}
.y6a_c00283{bottom:184.960000pt;}
.y66_c00283{bottom:218.240000pt;}
.y68_c00283{bottom:220.160000pt;}
.y69_c00283{bottom:220.800000pt;}
.y67_c00283{bottom:221.440000pt;}
.y65_c00283{bottom:222.080000pt;}
.y62_c00283{bottom:257.920000pt;}
.y63_c00283{bottom:258.560000pt;}
.y60_c00283{bottom:259.840000pt;}
.y61_c00283{bottom:260.480000pt;}
.y64_c00283{bottom:261.120000pt;}
.y5b_c00283{bottom:296.320000pt;}
.y5d_c00283{bottom:296.960000pt;}
.y5c_c00283{bottom:298.240000pt;}
.y5e_c00283{bottom:298.880000pt;}
.y5f_c00283{bottom:299.520000pt;}
.y57_c00283{bottom:334.080000pt;}
.y59_c00283{bottom:335.360000pt;}
.y58_c00283{bottom:336.640000pt;}
.y56_c00283{bottom:337.280000pt;}
.y55_c00283{bottom:337.920000pt;}
.y5a_c00283{bottom:338.560000pt;}
.y50_c00283{bottom:372.480000pt;}
.y52_c00283{bottom:373.120000pt;}
.y53_c00283{bottom:373.760000pt;}
.y54_c00283{bottom:375.040000pt;}
.y51_c00283{bottom:375.680000pt;}
.y4f_c00283{bottom:376.320000pt;}
.y4e_c00283{bottom:411.520000pt;}
.y4d_c00283{bottom:412.160000pt;}
.y4c_c00283{bottom:413.440000pt;}
.y4a_c00283{bottom:414.080000pt;}
.y4b_c00283{bottom:414.720000pt;}
.y48_c00283{bottom:449.280000pt;}
.y47_c00283{bottom:449.920000pt;}
.y46_c00283{bottom:450.560000pt;}
.y45_c00283{bottom:451.840000pt;}
.y44_c00283{bottom:452.480000pt;}
.y49_c00283{bottom:453.120000pt;}
.y40_c00283{bottom:488.320000pt;}
.y41_c00283{bottom:489.600000pt;}
.y42_c00283{bottom:490.240000pt;}
.y43_c00283{bottom:490.880000pt;}
.y3c_c00283{bottom:526.720000pt;}
.y3d_c00283{bottom:528.000000pt;}
.y3e_c00283{bottom:528.640000pt;}
.y3f_c00283{bottom:529.280000pt;}
.y39_c00283{bottom:563.200000pt;}
.y3a_c00283{bottom:564.480000pt;}
.y3b_c00283{bottom:566.400000pt;}
.y38_c00283{bottom:567.040000pt;}
.y34_c00283{bottom:602.240000pt;}
.y36_c00283{bottom:602.880000pt;}
.y37_c00283{bottom:604.800000pt;}
.y33_c00283{bottom:605.440000pt;}
.y35_c00283{bottom:606.080000pt;}
.y32_c00283{bottom:640.640000pt;}
.y31_c00283{bottom:641.280000pt;}
.y2f_c00283{bottom:641.920000pt;}
.y2e_c00283{bottom:643.840000pt;}
.y30_c00283{bottom:644.480000pt;}
.y2d_c00283{bottom:678.400000pt;}
.y2c_c00283{bottom:679.680000pt;}
.y2a_c00283{bottom:680.320000pt;}
.y29_c00283{bottom:681.600000pt;}
.y2b_c00283{bottom:682.240000pt;}
.y28_c00283{bottom:717.440000pt;}
.y24_c00283{bottom:719.360000pt;}
.y25_c00283{bottom:720.000000pt;}
.y26_c00283{bottom:720.640000pt;}
.y27_c00283{bottom:721.280000pt;}
.y23_c00283{bottom:756.480000pt;}
.y20_c00283{bottom:757.120000pt;}
.y22_c00283{bottom:757.760000pt;}
.y1f_c00283{bottom:758.400000pt;}
.y21_c00283{bottom:759.040000pt;}
.y1c_c00283{bottom:794.880000pt;}
.y1e_c00283{bottom:796.160000pt;}
.y1a_c00283{bottom:796.800000pt;}
.y1b_c00283{bottom:797.440000pt;}
.y1d_c00283{bottom:798.080000pt;}
.y19_c00283{bottom:832.640000pt;}
.y18_c00283{bottom:833.280000pt;}
.y15_c00283{bottom:833.920000pt;}
.y14_c00283{bottom:834.560000pt;}
.y16_c00283{bottom:835.200000pt;}
.y17_c00283{bottom:835.840000pt;}
.y10_c00283{bottom:871.040000pt;}
.yf_c00283{bottom:871.680000pt;}
.yd_c00283{bottom:872.320000pt;}
.y13_c00283{bottom:872.960000pt;}
.y12_c00283{bottom:873.600000pt;}
.y11_c00283{bottom:874.240000pt;}
.ye_c00283{bottom:874.880000pt;}
.yc_c00283{bottom:908.800000pt;}
.y9_c00283{bottom:910.080000pt;}
.yb_c00283{bottom:910.720000pt;}
.y7_c00283{bottom:911.360000pt;}
.ya_c00283{bottom:912.000000pt;}
.y8_c00283{bottom:912.640000pt;}
.y5_c00283{bottom:939.520000pt;}
.y6_c00283{bottom:940.160000pt;}
.y4_c00283{bottom:940.800000pt;}
.y3_c00283{bottom:941.440000pt;}
.y2_c00283{bottom:942.080000pt;}
.y1_c00283{bottom:1000.960000pt;}
.hd_c00283{height:27.645000pt;}
.he_c00283{height:29.948750pt;}
.h7_c00283{height:32.252500pt;}
.ha_c00283{height:34.556250pt;}
.h3_c00283{height:36.860000pt;}
.h4_c00283{height:39.163750pt;}
.h5_c00283{height:41.467500pt;}
.h9_c00283{height:43.771250pt;}
.h6_c00283{height:46.075000pt;}
.hf_c00283{height:48.378750pt;}
.h8_c00283{height:50.682500pt;}
.hc_c00283{height:52.986250pt;}
.h11_c00283{height:53.242500pt;}
.hb_c00283{height:55.290000pt;}
.h10_c00283{height:57.593750pt;}
.h13_c00283{height:62.201250pt;}
.h12_c00283{height:62.457500pt;}
.h2_c00283{height:66.808750pt;}
.h1_c00283{height:1034.666667pt;}
.h0_c00283{height:1034.880000pt;}
.w0_c00283{width:704.640000pt;}
.w1_c00283{width:704.666667pt;}
.x0_c00283{left:0.000000pt;}
.x8_c00283{left:76.160000pt;}
.x12_c00283{left:77.440000pt;}
.x4d_c00283{left:78.720000pt;}
.x1f_c00283{left:103.680000pt;}
.x51_c00283{left:105.600000pt;}
.x38_c00283{left:112.640000pt;}
.x46_c00283{left:113.920000pt;}
.x9_c00283{left:123.520000pt;}
.x20_c00283{left:132.480000pt;}
.x55_c00283{left:142.720000pt;}
.xa_c00283{left:152.320000pt;}
.x41_c00283{left:161.280000pt;}
.x3e_c00283{left:170.880000pt;}
.x2_c00283{left:172.160000pt;}
.x32_c00283{left:179.200000pt;}
.xb_c00283{left:180.480000pt;}
.x25_c00283{left:190.080000pt;}
.x3_c00283{left:200.320000pt;}
.x2f_c00283{left:208.640000pt;}
.x21_c00283{left:210.560000pt;}
.x58_c00283{left:218.240000pt;}
.x1b_c00283{left:219.520000pt;}
.x2a_c00283{left:220.800000pt;}
.x52_c00283{left:228.480000pt;}
.x13_c00283{left:229.760000pt;}
.x33_c00283{left:237.440000pt;}
.xc_c00283{left:240.000000pt;}
.x4a_c00283{left:247.680000pt;}
.x4_c00283{left:249.600000pt;}
.x1c_c00283{left:257.280000pt;}
.x59_c00283{left:258.560000pt;}
.x42_c00283{left:259.840000pt;}
.x34_c00283{left:266.880000pt;}
.x30_c00283{left:276.480000pt;}
.x26_c00283{left:286.720000pt;}
.x22_c00283{left:296.320000pt;}
.x3f_c00283{left:305.280000pt;}
.x14_c00283{left:306.560000pt;}
.x1d_c00283{left:314.880000pt;}
.x2b_c00283{left:316.160000pt;}
.x27_c00283{left:325.120000pt;}
.x2c_c00283{left:334.720000pt;}
.x5_c00283{left:344.960000pt;}
.x4e_c00283{left:352.640000pt;}
.xd_c00283{left:353.920000pt;}
.x53_c00283{left:355.200000pt;}
.x31_c00283{left:362.880000pt;}
.x1e_c00283{left:372.480000pt;}
.x15_c00283{left:373.760000pt;}
.x47_c00283{left:380.800000pt;}
.x39_c00283{left:382.720000pt;}
.xe_c00283{left:384.000000pt;}
.x48_c00283{left:391.680000pt;}
.x23_c00283{left:401.280000pt;}
.x28_c00283{left:402.560000pt;}
.x35_c00283{left:410.880000pt;}
.x16_c00283{left:412.160000pt;}
.x44_c00283{left:420.480000pt;}
.x3a_c00283{left:421.760000pt;}
.x17_c00283{left:440.320000pt;}
.x3b_c00283{left:448.640000pt;}
.x49_c00283{left:449.920000pt;}
.x6_c00283{left:459.520000pt;}
.x2d_c00283{left:469.120000pt;}
.x3c_c00283{left:477.440000pt;}
.x56_c00283{left:478.720000pt;}
.x18_c00283{left:480.000000pt;}
.x36_c00283{left:487.680000pt;}
.xf_c00283{left:497.920000pt;}
.x19_c00283{left:507.520000pt;}
.x3d_c00283{left:515.840000pt;}
.x4f_c00283{left:517.760000pt;}
.x24_c00283{left:526.720000pt;}
.x45_c00283{left:534.400000pt;}
.x54_c00283{left:535.680000pt;}
.x4c_c00283{left:544.640000pt;}
.x29_c00283{left:545.920000pt;}
.x57_c00283{left:554.240000pt;}
.x10_c00283{left:555.520000pt;}
.x2e_c00283{left:563.840000pt;}
.x50_c00283{left:565.120000pt;}
.x43_c00283{left:573.440000pt;}
.x11_c00283{left:583.680000pt;}
.x4b_c00283{left:592.000000pt;}
.x7_c00283{left:593.280000pt;}
.x40_c00283{left:602.880000pt;}
.x37_c00283{left:612.480000pt;}
.x1a_c00283{left:613.760000pt;}
.x1_c00283{left:618.880000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1ae039b330aca4e6dbf2015a.woff2')format("woff");}.ff1_c00284{font-family:ff1_c00284;line-height:1.109863;font-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_c00284{transform:matrix(0.167475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167475,0.000000,0.000000,0.250000,0,0);}
.m4_c00284{transform:matrix(0.177325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177325,0.000000,0.000000,0.250000,0,0);}
.m14_c00284{transform:matrix(0.207675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207675,0.000000,0.000000,0.250000,0,0);}
.m52_c00284{transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);}
.m25_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);}
.m54_c00284{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m23_c00284{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m0_c00284{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m7_c00284{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m48_c00284{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00284{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m57_c00284{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m53_c00284{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00284{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m40_c00284{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m17_c00284{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00284{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00284{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m16_c00284{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m13_c00284{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m59_c00284{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m56_c00284{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m10_c00284{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mb_c00284{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00284{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00284{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00284{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.mf_c00284{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00284{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00284{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m21_c00284{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m3_c00284{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1_c00284{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m18_c00284{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m6_c00284{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.mc_c00284{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);}
.m3b_c00284{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);}
.m2c_c00284{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);}
.m2_c00284{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m51_c00284{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.md_c00284{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);}
.m32_c00284{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);}
.m2d_c00284{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m15_c00284{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00284{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m44_c00284{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);}
.m55_c00284{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m31_c00284{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);}
.m2a_c00284{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m46_c00284{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);}
.m41_c00284{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);}
.m58_c00284{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m34_c00284{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m26_c00284{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m19_c00284{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);}
.m27_c00284{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m49_c00284{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m8_c00284{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);}
.m36_c00284{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00284{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);}
.ma_c00284{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m33_c00284{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00284{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m5_c00284{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);}
.m4f_c00284{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00284{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m50_c00284{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);}
.m12_c00284{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00284{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m20_c00284{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00284{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m38_c00284{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);}
.m47_c00284{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);}
.m45_c00284{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00284{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00284{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);}
.m30_c00284{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m39_c00284{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m43_c00284{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.me_c00284{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_c00284{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m29_c00284{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00284{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00284{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m28_c00284{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);}
.m1a_c00284{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);}
.m35_c00284{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m11_c00284{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m42_c00284{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00284{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m9_c00284{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);}
.m37_c00284{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);}
.m1d_c00284{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m22_c00284{transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00284{transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);}
.v2_c00284{vertical-align:-14.400000px;}
.v3_c00284{vertical-align:-2.880000px;}
.v0_c00284{vertical-align:0.000000px;}
.v1_c00284{vertical-align:2.880000px;}
.v4_c00284{vertical-align:17.280000px;}
.ls1_c00284{letter-spacing:0.000000px;}
.ls0_c00284{letter-spacing:23.985360px;}
.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;}
}
.ws1_c00284{word-spacing:-2.349840px;}
.ws3_c00284{word-spacing:0.000000px;}
.ws0_c00284{word-spacing:4.601040px;}
.ws2_c00284{word-spacing:19.716480px;}
.fc0_c00284{color:transparent;}
.fs10_c00284{font-size:23.040000px;}
.fsd_c00284{font-size:34.560000px;}
.fs6_c00284{font-size:37.440000px;}
.fsa_c00284{font-size:40.320000px;}
.fs5_c00284{font-size:43.200000px;}
.fsf_c00284{font-size:46.080000px;}
.fs4_c00284{font-size:48.960000px;}
.fs2_c00284{font-size:51.840000px;}
.fs9_c00284{font-size:54.720000px;}
.fs7_c00284{font-size:57.600000px;}
.fs1_c00284{font-size:60.480000px;}
.fs3_c00284{font-size:63.360000px;}
.fs8_c00284{font-size:66.240000px;}
.fsb_c00284{font-size:69.120000px;}
.fse_c00284{font-size:72.000000px;}
.fsc_c00284{font-size:74.880000px;}
.fs0_c00284{font-size:77.760000px;}
.y0_c00284{bottom:0.000000px;}
.y7b_c00284{bottom:84.960000px;}
.y78_c00284{bottom:86.400000px;}
.y77_c00284{bottom:87.120000px;}
.y79_c00284{bottom:87.840000px;}
.y7a_c00284{bottom:88.560000px;}
.y76_c00284{bottom:130.320000px;}
.y72_c00284{bottom:172.080000px;}
.y75_c00284{bottom:173.520000px;}
.y74_c00284{bottom:174.240000px;}
.y73_c00284{bottom:174.960000px;}
.y71_c00284{bottom:175.680000px;}
.y6d_c00284{bottom:214.560000px;}
.y6e_c00284{bottom:215.280000px;}
.y6f_c00284{bottom:216.000000px;}
.y6c_c00284{bottom:217.440000px;}
.y70_c00284{bottom:218.160000px;}
.y66_c00284{bottom:257.040000px;}
.y6a_c00284{bottom:258.480000px;}
.y69_c00284{bottom:259.200000px;}
.y68_c00284{bottom:259.920000px;}
.y65_c00284{bottom:260.640000px;}
.y67_c00284{bottom:261.360000px;}
.y6b_c00284{bottom:262.080000px;}
.y60_c00284{bottom:300.240000px;}
.y63_c00284{bottom:301.680000px;}
.y62_c00284{bottom:302.400000px;}
.y64_c00284{bottom:303.120000px;}
.y61_c00284{bottom:303.840000px;}
.y5f_c00284{bottom:304.560000px;}
.y5b_c00284{bottom:344.160000px;}
.y5d_c00284{bottom:344.880000px;}
.y58_c00284{bottom:345.600000px;}
.y5a_c00284{bottom:346.320000px;}
.y59_c00284{bottom:347.040000px;}
.y5e_c00284{bottom:347.760000px;}
.y57_c00284{bottom:349.200000px;}
.y5c_c00284{bottom:351.360000px;}
.y54_c00284{bottom:385.920000px;}
.y55_c00284{bottom:386.640000px;}
.y56_c00284{bottom:388.800000px;}
.y53_c00284{bottom:389.520000px;}
.y52_c00284{bottom:390.240000px;}
.y4f_c00284{bottom:429.840000px;}
.y4c_c00284{bottom:430.560000px;}
.y4e_c00284{bottom:432.720000px;}
.y4d_c00284{bottom:433.440000px;}
.y50_c00284{bottom:434.160000px;}
.y51_c00284{bottom:436.320000px;}
.y49_c00284{bottom:473.760000px;}
.y47_c00284{bottom:474.480000px;}
.y4b_c00284{bottom:475.920000px;}
.y4a_c00284{bottom:476.640000px;}
.y48_c00284{bottom:477.360000px;}
.y45_c00284{bottom:516.960000px;}
.y42_c00284{bottom:518.400000px;}
.y46_c00284{bottom:519.120000px;}
.y44_c00284{bottom:519.840000px;}
.y43_c00284{bottom:520.560000px;}
.y3d_c00284{bottom:560.880000px;}
.y40_c00284{bottom:561.600000px;}
.y3f_c00284{bottom:562.320000px;}
.y3e_c00284{bottom:563.040000px;}
.y41_c00284{bottom:563.760000px;}
.y3b_c00284{bottom:602.640000px;}
.y39_c00284{bottom:603.360000px;}
.y3c_c00284{bottom:604.080000px;}
.y3a_c00284{bottom:605.520000px;}
.y38_c00284{bottom:606.960000px;}
.y37_c00284{bottom:646.560000px;}
.y33_c00284{bottom:647.280000px;}
.y36_c00284{bottom:648.720000px;}
.y34_c00284{bottom:649.440000px;}
.y35_c00284{bottom:650.160000px;}
.y31_c00284{bottom:689.040000px;}
.y2e_c00284{bottom:690.480000px;}
.y30_c00284{bottom:691.200000px;}
.y32_c00284{bottom:691.920000px;}
.y2d_c00284{bottom:692.640000px;}
.y2f_c00284{bottom:693.360000px;}
.y2b_c00284{bottom:732.960000px;}
.y2a_c00284{bottom:733.680000px;}
.y29_c00284{bottom:734.400000px;}
.y27_c00284{bottom:735.120000px;}
.y28_c00284{bottom:735.840000px;}
.y2c_c00284{bottom:736.560000px;}
.y24_c00284{bottom:775.440000px;}
.y26_c00284{bottom:776.160000px;}
.y21_c00284{bottom:776.880000px;}
.y25_c00284{bottom:777.600000px;}
.y20_c00284{bottom:778.320000px;}
.y22_c00284{bottom:779.040000px;}
.y23_c00284{bottom:779.760000px;}
.y1f_c00284{bottom:817.920000px;}
.y1e_c00284{bottom:818.640000px;}
.y1b_c00284{bottom:820.800000px;}
.y1c_c00284{bottom:821.520000px;}
.y1d_c00284{bottom:822.240000px;}
.y16_c00284{bottom:859.680000px;}
.y1a_c00284{bottom:861.840000px;}
.y17_c00284{bottom:862.560000px;}
.y18_c00284{bottom:864.720000px;}
.y19_c00284{bottom:865.440000px;}
.y14_c00284{bottom:901.440000px;}
.y15_c00284{bottom:904.320000px;}
.y12_c00284{bottom:905.040000px;}
.y11_c00284{bottom:907.200000px;}
.y13_c00284{bottom:907.920000px;}
.y10_c00284{bottom:946.800000px;}
.yb_c00284{bottom:947.520000px;}
.ye_c00284{bottom:948.960000px;}
.yf_c00284{bottom:949.680000px;}
.yc_c00284{bottom:950.400000px;}
.yd_c00284{bottom:951.120000px;}
.y6_c00284{bottom:991.440000px;}
.y9_c00284{bottom:992.160000px;}
.ya_c00284{bottom:992.880000px;}
.y8_c00284{bottom:993.600000px;}
.y7_c00284{bottom:994.320000px;}
.y4_c00284{bottom:1045.440000px;}
.y2_c00284{bottom:1046.160000px;}
.y5_c00284{bottom:1047.600000px;}
.y3_c00284{bottom:1049.040000px;}
.y1_c00284{bottom:1108.800000px;}
.h14_c00284{height:20.733750px;}
.h10_c00284{height:31.100625px;}
.h8_c00284{height:33.692344px;}
.hd_c00284{height:36.284062px;}
.h7_c00284{height:38.875781px;}
.h12_c00284{height:41.467500px;}
.h13_c00284{height:43.770937px;}
.h6_c00284{height:44.059219px;}
.h4_c00284{height:46.650937px;}
.hc_c00284{height:49.242656px;}
.h9_c00284{height:51.834375px;}
.h3_c00284{height:54.426094px;}
.h5_c00284{height:57.017812px;}
.ha_c00284{height:57.306094px;}
.hb_c00284{height:59.609531px;}
.he_c00284{height:62.201250px;}
.h11_c00284{height:64.792969px;}
.hf_c00284{height:67.384687px;}
.h2_c00284{height:69.976406px;}
.h1_c00284{height:1161.750000px;}
.h0_c00284{height:1162.080000px;}
.w1_c00284{width:789.750000px;}
.w0_c00284{width:789.840000px;}
.x0_c00284{left:0.000000px;}
.x1b_c00284{left:77.760000px;}
.x2_c00284{left:79.200000px;}
.x36_c00284{left:80.640000px;}
.x49_c00284{left:82.080000px;}
.x31_c00284{left:99.360000px;}
.x17_c00284{left:110.160000px;}
.x1c_c00284{left:120.960000px;}
.x26_c00284{left:131.760000px;}
.x38_c00284{left:153.360000px;}
.x20_c00284{left:162.720000px;}
.x39_c00284{left:173.520000px;}
.x2a_c00284{left:174.960000px;}
.x4d_c00284{left:184.320000px;}
.x8_c00284{left:185.760000px;}
.x40_c00284{left:195.120000px;}
.xf_c00284{left:196.560000px;}
.x33_c00284{left:206.640000px;}
.x21_c00284{left:208.080000px;}
.x4c_c00284{left:217.440000px;}
.x3_c00284{left:218.880000px;}
.x2d_c00284{left:228.960000px;}
.x1d_c00284{left:239.760000px;}
.x10_c00284{left:250.560000px;}
.x4a_c00284{left:259.920000px;}
.x4_c00284{left:261.360000px;}
.x18_c00284{left:271.440000px;}
.x9_c00284{left:282.960000px;}
.x2e_c00284{left:292.320000px;}
.x1e_c00284{left:294.480000px;}
.x22_c00284{left:304.560000px;}
.x3a_c00284{left:315.360000px;}
.x11_c00284{left:316.800000px;}
.x5_c00284{left:326.160000px;}
.x6_c00284{left:347.760000px;}
.x19_c00284{left:358.560000px;}
.x34_c00284{left:368.640000px;}
.x47_c00284{left:370.080000px;}
.x23_c00284{left:380.160000px;}
.x7_c00284{left:390.960000px;}
.xa_c00284{left:401.760000px;}
.x37_c00284{left:412.560000px;}
.x12_c00284{left:423.360000px;}
.x27_c00284{left:434.160000px;}
.xb_c00284{left:445.680000px;}
.x2b_c00284{left:455.040000px;}
.x41_c00284{left:457.200000px;}
.x28_c00284{left:466.560000px;}
.x3b_c00284{left:468.000000px;}
.x13_c00284{left:478.080000px;}
.x42_c00284{left:487.440000px;}
.x1a_c00284{left:489.600000px;}
.x48_c00284{left:497.520000px;}
.xc_c00284{left:498.960000px;}
.x3e_c00284{left:509.760000px;}
.x24_c00284{left:520.560000px;}
.x14_c00284{left:522.000000px;}
.x2c_c00284{left:531.360000px;}
.x35_c00284{left:542.160000px;}
.x29_c00284{left:563.760000px;}
.x15_c00284{left:574.560000px;}
.x43_c00284{left:583.920000px;}
.x3f_c00284{left:585.360000px;}
.x46_c00284{left:595.440000px;}
.xd_c00284{left:596.880000px;}
.x2f_c00284{left:606.960000px;}
.x16_c00284{left:617.040000px;}
.xe_c00284{left:629.280000px;}
.x4b_c00284{left:638.640000px;}
.x32_c00284{left:640.080000px;}
.x44_c00284{left:648.720000px;}
.x30_c00284{left:650.160000px;}
.x1f_c00284{left:660.960000px;}
.x3c_c00284{left:671.040000px;}
.x3d_c00284{left:681.840000px;}
.x25_c00284{left:693.360000px;}
.x1_c00284{left:696.240000px;}
.x45_c00284{left:704.160000px;}
@media print{
.v2_c00284{vertical-align:-12.800000pt;}
.v3_c00284{vertical-align:-2.560000pt;}
.v0_c00284{vertical-align:0.000000pt;}
.v1_c00284{vertical-align:2.560000pt;}
.v4_c00284{vertical-align:15.360000pt;}
.ls1_c00284{letter-spacing:0.000000pt;}
.ls0_c00284{letter-spacing:21.320320pt;}
.ws1_c00284{word-spacing:-2.088747pt;}
.ws3_c00284{word-spacing:0.000000pt;}
.ws0_c00284{word-spacing:4.089813pt;}
.ws2_c00284{word-spacing:17.525760pt;}
.fs10_c00284{font-size:20.480000pt;}
.fsd_c00284{font-size:30.720000pt;}
.fs6_c00284{font-size:33.280000pt;}
.fsa_c00284{font-size:35.840000pt;}
.fs5_c00284{font-size:38.400000pt;}
.fsf_c00284{font-size:40.960000pt;}
.fs4_c00284{font-size:43.520000pt;}
.fs2_c00284{font-size:46.080000pt;}
.fs9_c00284{font-size:48.640000pt;}
.fs7_c00284{font-size:51.200000pt;}
.fs1_c00284{font-size:53.760000pt;}
.fs3_c00284{font-size:56.320000pt;}
.fs8_c00284{font-size:58.880000pt;}
.fsb_c00284{font-size:61.440000pt;}
.fse_c00284{font-size:64.000000pt;}
.fsc_c00284{font-size:66.560000pt;}
.fs0_c00284{font-size:69.120000pt;}
.y0_c00284{bottom:0.000000pt;}
.y7b_c00284{bottom:75.520000pt;}
.y78_c00284{bottom:76.800000pt;}
.y77_c00284{bottom:77.440000pt;}
.y79_c00284{bottom:78.080000pt;}
.y7a_c00284{bottom:78.720000pt;}
.y76_c00284{bottom:115.840000pt;}
.y72_c00284{bottom:152.960000pt;}
.y75_c00284{bottom:154.240000pt;}
.y74_c00284{bottom:154.880000pt;}
.y73_c00284{bottom:155.520000pt;}
.y71_c00284{bottom:156.160000pt;}
.y6d_c00284{bottom:190.720000pt;}
.y6e_c00284{bottom:191.360000pt;}
.y6f_c00284{bottom:192.000000pt;}
.y6c_c00284{bottom:193.280000pt;}
.y70_c00284{bottom:193.920000pt;}
.y66_c00284{bottom:228.480000pt;}
.y6a_c00284{bottom:229.760000pt;}
.y69_c00284{bottom:230.400000pt;}
.y68_c00284{bottom:231.040000pt;}
.y65_c00284{bottom:231.680000pt;}
.y67_c00284{bottom:232.320000pt;}
.y6b_c00284{bottom:232.960000pt;}
.y60_c00284{bottom:266.880000pt;}
.y63_c00284{bottom:268.160000pt;}
.y62_c00284{bottom:268.800000pt;}
.y64_c00284{bottom:269.440000pt;}
.y61_c00284{bottom:270.080000pt;}
.y5f_c00284{bottom:270.720000pt;}
.y5b_c00284{bottom:305.920000pt;}
.y5d_c00284{bottom:306.560000pt;}
.y58_c00284{bottom:307.200000pt;}
.y5a_c00284{bottom:307.840000pt;}
.y59_c00284{bottom:308.480000pt;}
.y5e_c00284{bottom:309.120000pt;}
.y57_c00284{bottom:310.400000pt;}
.y5c_c00284{bottom:312.320000pt;}
.y54_c00284{bottom:343.040000pt;}
.y55_c00284{bottom:343.680000pt;}
.y56_c00284{bottom:345.600000pt;}
.y53_c00284{bottom:346.240000pt;}
.y52_c00284{bottom:346.880000pt;}
.y4f_c00284{bottom:382.080000pt;}
.y4c_c00284{bottom:382.720000pt;}
.y4e_c00284{bottom:384.640000pt;}
.y4d_c00284{bottom:385.280000pt;}
.y50_c00284{bottom:385.920000pt;}
.y51_c00284{bottom:387.840000pt;}
.y49_c00284{bottom:421.120000pt;}
.y47_c00284{bottom:421.760000pt;}
.y4b_c00284{bottom:423.040000pt;}
.y4a_c00284{bottom:423.680000pt;}
.y48_c00284{bottom:424.320000pt;}
.y45_c00284{bottom:459.520000pt;}
.y42_c00284{bottom:460.800000pt;}
.y46_c00284{bottom:461.440000pt;}
.y44_c00284{bottom:462.080000pt;}
.y43_c00284{bottom:462.720000pt;}
.y3d_c00284{bottom:498.560000pt;}
.y40_c00284{bottom:499.200000pt;}
.y3f_c00284{bottom:499.840000pt;}
.y3e_c00284{bottom:500.480000pt;}
.y41_c00284{bottom:501.120000pt;}
.y3b_c00284{bottom:535.680000pt;}
.y39_c00284{bottom:536.320000pt;}
.y3c_c00284{bottom:536.960000pt;}
.y3a_c00284{bottom:538.240000pt;}
.y38_c00284{bottom:539.520000pt;}
.y37_c00284{bottom:574.720000pt;}
.y33_c00284{bottom:575.360000pt;}
.y36_c00284{bottom:576.640000pt;}
.y34_c00284{bottom:577.280000pt;}
.y35_c00284{bottom:577.920000pt;}
.y31_c00284{bottom:612.480000pt;}
.y2e_c00284{bottom:613.760000pt;}
.y30_c00284{bottom:614.400000pt;}
.y32_c00284{bottom:615.040000pt;}
.y2d_c00284{bottom:615.680000pt;}
.y2f_c00284{bottom:616.320000pt;}
.y2b_c00284{bottom:651.520000pt;}
.y2a_c00284{bottom:652.160000pt;}
.y29_c00284{bottom:652.800000pt;}
.y27_c00284{bottom:653.440000pt;}
.y28_c00284{bottom:654.080000pt;}
.y2c_c00284{bottom:654.720000pt;}
.y24_c00284{bottom:689.280000pt;}
.y26_c00284{bottom:689.920000pt;}
.y21_c00284{bottom:690.560000pt;}
.y25_c00284{bottom:691.200000pt;}
.y20_c00284{bottom:691.840000pt;}
.y22_c00284{bottom:692.480000pt;}
.y23_c00284{bottom:693.120000pt;}
.y1f_c00284{bottom:727.040000pt;}
.y1e_c00284{bottom:727.680000pt;}
.y1b_c00284{bottom:729.600000pt;}
.y1c_c00284{bottom:730.240000pt;}
.y1d_c00284{bottom:730.880000pt;}
.y16_c00284{bottom:764.160000pt;}
.y1a_c00284{bottom:766.080000pt;}
.y17_c00284{bottom:766.720000pt;}
.y18_c00284{bottom:768.640000pt;}
.y19_c00284{bottom:769.280000pt;}
.y14_c00284{bottom:801.280000pt;}
.y15_c00284{bottom:803.840000pt;}
.y12_c00284{bottom:804.480000pt;}
.y11_c00284{bottom:806.400000pt;}
.y13_c00284{bottom:807.040000pt;}
.y10_c00284{bottom:841.600000pt;}
.yb_c00284{bottom:842.240000pt;}
.ye_c00284{bottom:843.520000pt;}
.yf_c00284{bottom:844.160000pt;}
.yc_c00284{bottom:844.800000pt;}
.yd_c00284{bottom:845.440000pt;}
.y6_c00284{bottom:881.280000pt;}
.y9_c00284{bottom:881.920000pt;}
.ya_c00284{bottom:882.560000pt;}
.y8_c00284{bottom:883.200000pt;}
.y7_c00284{bottom:883.840000pt;}
.y4_c00284{bottom:929.280000pt;}
.y2_c00284{bottom:929.920000pt;}
.y5_c00284{bottom:931.200000pt;}
.y3_c00284{bottom:932.480000pt;}
.y1_c00284{bottom:985.600000pt;}
.h14_c00284{height:18.430000pt;}
.h10_c00284{height:27.645000pt;}
.h8_c00284{height:29.948750pt;}
.hd_c00284{height:32.252500pt;}
.h7_c00284{height:34.556250pt;}
.h12_c00284{height:36.860000pt;}
.h13_c00284{height:38.907500pt;}
.h6_c00284{height:39.163750pt;}
.h4_c00284{height:41.467500pt;}
.hc_c00284{height:43.771250pt;}
.h9_c00284{height:46.075000pt;}
.h3_c00284{height:48.378750pt;}
.h5_c00284{height:50.682500pt;}
.ha_c00284{height:50.938750pt;}
.hb_c00284{height:52.986250pt;}
.he_c00284{height:55.290000pt;}
.h11_c00284{height:57.593750pt;}
.hf_c00284{height:59.897500pt;}
.h2_c00284{height:62.201250pt;}
.h1_c00284{height:1032.666667pt;}
.h0_c00284{height:1032.960000pt;}
.w1_c00284{width:702.000000pt;}
.w0_c00284{width:702.080000pt;}
.x0_c00284{left:0.000000pt;}
.x1b_c00284{left:69.120000pt;}
.x2_c00284{left:70.400000pt;}
.x36_c00284{left:71.680000pt;}
.x49_c00284{left:72.960000pt;}
.x31_c00284{left:88.320000pt;}
.x17_c00284{left:97.920000pt;}
.x1c_c00284{left:107.520000pt;}
.x26_c00284{left:117.120000pt;}
.x38_c00284{left:136.320000pt;}
.x20_c00284{left:144.640000pt;}
.x39_c00284{left:154.240000pt;}
.x2a_c00284{left:155.520000pt;}
.x4d_c00284{left:163.840000pt;}
.x8_c00284{left:165.120000pt;}
.x40_c00284{left:173.440000pt;}
.xf_c00284{left:174.720000pt;}
.x33_c00284{left:183.680000pt;}
.x21_c00284{left:184.960000pt;}
.x4c_c00284{left:193.280000pt;}
.x3_c00284{left:194.560000pt;}
.x2d_c00284{left:203.520000pt;}
.x1d_c00284{left:213.120000pt;}
.x10_c00284{left:222.720000pt;}
.x4a_c00284{left:231.040000pt;}
.x4_c00284{left:232.320000pt;}
.x18_c00284{left:241.280000pt;}
.x9_c00284{left:251.520000pt;}
.x2e_c00284{left:259.840000pt;}
.x1e_c00284{left:261.760000pt;}
.x22_c00284{left:270.720000pt;}
.x3a_c00284{left:280.320000pt;}
.x11_c00284{left:281.600000pt;}
.x5_c00284{left:289.920000pt;}
.x6_c00284{left:309.120000pt;}
.x19_c00284{left:318.720000pt;}
.x34_c00284{left:327.680000pt;}
.x47_c00284{left:328.960000pt;}
.x23_c00284{left:337.920000pt;}
.x7_c00284{left:347.520000pt;}
.xa_c00284{left:357.120000pt;}
.x37_c00284{left:366.720000pt;}
.x12_c00284{left:376.320000pt;}
.x27_c00284{left:385.920000pt;}
.xb_c00284{left:396.160000pt;}
.x2b_c00284{left:404.480000pt;}
.x41_c00284{left:406.400000pt;}
.x28_c00284{left:414.720000pt;}
.x3b_c00284{left:416.000000pt;}
.x13_c00284{left:424.960000pt;}
.x42_c00284{left:433.280000pt;}
.x1a_c00284{left:435.200000pt;}
.x48_c00284{left:442.240000pt;}
.xc_c00284{left:443.520000pt;}
.x3e_c00284{left:453.120000pt;}
.x24_c00284{left:462.720000pt;}
.x14_c00284{left:464.000000pt;}
.x2c_c00284{left:472.320000pt;}
.x35_c00284{left:481.920000pt;}
.x29_c00284{left:501.120000pt;}
.x15_c00284{left:510.720000pt;}
.x43_c00284{left:519.040000pt;}
.x3f_c00284{left:520.320000pt;}
.x46_c00284{left:529.280000pt;}
.xd_c00284{left:530.560000pt;}
.x2f_c00284{left:539.520000pt;}
.x16_c00284{left:548.480000pt;}
.xe_c00284{left:559.360000pt;}
.x4b_c00284{left:567.680000pt;}
.x32_c00284{left:568.960000pt;}
.x44_c00284{left:576.640000pt;}
.x30_c00284{left:577.920000pt;}
.x1f_c00284{left:587.520000pt;}
.x3c_c00284{left:596.480000pt;}
.x3d_c00284{left:606.080000pt;}
.x25_c00284{left:616.320000pt;}
.x1_c00284{left:618.880000pt;}
.x45_c00284{left:625.920000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0a1d83f60699e838988995eb.woff2')format("woff");}.ff1_c00285{font-family:ff1_c00285;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5a_c00285{transform:matrix(0.158150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158150,0.000000,0.000000,0.250000,0,0);}
.m54_c00285{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mf_c00285{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_c00285{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00285{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m27_c00285{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.ma_c00285{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m4_c00285{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m10_c00285{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00285{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m6_c00285{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m9_c00285{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1_c00285{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m3_c00285{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m13_c00285{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m57_c00285{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00285{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m11_c00285{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m51_c00285{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m2_c00285{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m0_c00285{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m7_c00285{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m21_c00285{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00285{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);}
.m42_c00285{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00285{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_c00285{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m59_c00285{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m37_c00285{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m19_c00285{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00285{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00285{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m22_c00285{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_c00285{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);}
.m15_c00285{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);}
.m47_c00285{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00285{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);}
.m2d_c00285{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m36_c00285{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);}
.m49_c00285{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);}
.m32_c00285{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);}
.m53_c00285{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.md_c00285{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m26_c00285{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);}
.m16_c00285{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00285{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);}
.m28_c00285{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m24_c00285{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);}
.m55_c00285{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);}
.m14_c00285{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00285{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m41_c00285{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m58_c00285{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00285{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);}
.m31_c00285{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.mc_c00285{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);}
.m3b_c00285{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00285{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);}
.m30_c00285{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00285{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m20_c00285{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);}
.m44_c00285{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00285{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m29_c00285{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);}
.m50_c00285{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m33_c00285{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m23_c00285{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m45_c00285{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);}
.m1a_c00285{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00285{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m46_c00285{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);}
.m38_c00285{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m34_c00285{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m5_c00285{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00285{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);}
.m25_c00285{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00285{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00285{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00285{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);}
.m43_c00285{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);}
.m39_c00285{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00285{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m52_c00285{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m18_c00285{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m40_c00285{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00285{transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);}
.m48_c00285{transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);}
.m35_c00285{transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);}
.m56_c00285{transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);}
.mb_c00285{transform:matrix(0.852500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.852500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.852500,0.000000,0.000000,0.250000,0,0);}
.m12_c00285{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);}
.v1_c00285{vertical-align:-2.880000px;}
.v0_c00285{vertical-align:0.000000px;}
.ls1_c00285{letter-spacing:0.000000px;}
.ls0_c00285{letter-spacing:161.576640px;}
.sc__c00285{text-shadow:none;}
.sc0_c00285{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00285{-webkit-text-stroke:0px transparent;}
.sc0_c00285{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00285{word-spacing:0.000000px;}
.fc0_c00285{color:transparent;}
.fs9_c00285{font-size:23.040000px;}
.fs6_c00285{font-size:25.920000px;}
.fsb_c00285{font-size:34.560000px;}
.fsc_c00285{font-size:37.440000px;}
.fsd_c00285{font-size:40.320000px;}
.fse_c00285{font-size:43.200000px;}
.fs1_c00285{font-size:46.080000px;}
.fs2_c00285{font-size:48.960000px;}
.fs7_c00285{font-size:51.840000px;}
.fs3_c00285{font-size:54.720000px;}
.fs4_c00285{font-size:57.600000px;}
.fs5_c00285{font-size:60.480000px;}
.fsa_c00285{font-size:63.360000px;}
.fs8_c00285{font-size:66.240000px;}
.fsf_c00285{font-size:69.120000px;}
.fs10_c00285{font-size:72.000000px;}
.fs0_c00285{font-size:77.760000px;}
.fs11_c00285{font-size:109.440000px;}
.y0_c00285{bottom:0.000000px;}
.y6f_c00285{bottom:97.920000px;}
.y70_c00285{bottom:98.640000px;}
.y6e_c00285{bottom:99.360000px;}
.y6d_c00285{bottom:100.080000px;}
.y6c_c00285{bottom:102.960000px;}
.y68_c00285{bottom:141.120000px;}
.y69_c00285{bottom:142.560000px;}
.y6a_c00285{bottom:143.280000px;}
.y6b_c00285{bottom:144.000000px;}
.y67_c00285{bottom:144.720000px;}
.y65_c00285{bottom:185.760000px;}
.y64_c00285{bottom:186.480000px;}
.y63_c00285{bottom:187.920000px;}
.y66_c00285{bottom:189.360000px;}
.y60_c00285{bottom:226.800000px;}
.y5c_c00285{bottom:227.520000px;}
.y61_c00285{bottom:228.240000px;}
.y5f_c00285{bottom:228.960000px;}
.y5e_c00285{bottom:229.680000px;}
.y5d_c00285{bottom:230.400000px;}
.y62_c00285{bottom:231.120000px;}
.y5a_c00285{bottom:271.440000px;}
.y59_c00285{bottom:272.880000px;}
.y5b_c00285{bottom:273.600000px;}
.y58_c00285{bottom:274.320000px;}
.y56_c00285{bottom:316.080000px;}
.y57_c00285{bottom:316.800000px;}
.y55_c00285{bottom:317.520000px;}
.y54_c00285{bottom:318.240000px;}
.y52_c00285{bottom:356.400000px;}
.y50_c00285{bottom:357.120000px;}
.y53_c00285{bottom:357.840000px;}
.y51_c00285{bottom:360.000000px;}
.y4f_c00285{bottom:360.720000px;}
.y4d_c00285{bottom:399.600000px;}
.y4e_c00285{bottom:400.320000px;}
.y4c_c00285{bottom:402.480000px;}
.y4a_c00285{bottom:403.200000px;}
.y4b_c00285{bottom:403.920000px;}
.y46_c00285{bottom:444.240000px;}
.y48_c00285{bottom:446.400000px;}
.y47_c00285{bottom:447.120000px;}
.y45_c00285{bottom:447.840000px;}
.y49_c00285{bottom:449.280000px;}
.y44_c00285{bottom:529.920000px;}
.y41_c00285{bottom:530.640000px;}
.y40_c00285{bottom:532.080000px;}
.y43_c00285{bottom:532.800000px;}
.y42_c00285{bottom:533.520000px;}
.y3e_c00285{bottom:583.920000px;}
.y3f_c00285{bottom:584.640000px;}
.y3d_c00285{bottom:586.800000px;}
.y39_c00285{bottom:626.400000px;}
.y3b_c00285{bottom:627.120000px;}
.y3a_c00285{bottom:627.840000px;}
.y3c_c00285{bottom:628.560000px;}
.y38_c00285{bottom:630.000000px;}
.y37_c00285{bottom:630.720000px;}
.y32_c00285{bottom:670.320000px;}
.y34_c00285{bottom:671.040000px;}
.y36_c00285{bottom:671.760000px;}
.y35_c00285{bottom:672.480000px;}
.y33_c00285{bottom:673.200000px;}
.y2e_c00285{bottom:723.600000px;}
.y30_c00285{bottom:726.480000px;}
.y2f_c00285{bottom:727.200000px;}
.y31_c00285{bottom:727.920000px;}
.y2d_c00285{bottom:738.720000px;}
.y29_c00285{bottom:766.800000px;}
.y2c_c00285{bottom:768.960000px;}
.y2b_c00285{bottom:769.680000px;}
.y2a_c00285{bottom:770.400000px;}
.y24_c00285{bottom:810.720000px;}
.y28_c00285{bottom:811.440000px;}
.y27_c00285{bottom:812.160000px;}
.y23_c00285{bottom:812.880000px;}
.y25_c00285{bottom:813.600000px;}
.y26_c00285{bottom:814.320000px;}
.y1e_c00285{bottom:853.200000px;}
.y22_c00285{bottom:853.920000px;}
.y1f_c00285{bottom:855.360000px;}
.y21_c00285{bottom:856.080000px;}
.y20_c00285{bottom:856.800000px;}
.y1b_c00285{bottom:897.120000px;}
.y1c_c00285{bottom:897.840000px;}
.y1d_c00285{bottom:898.560000px;}
.y19_c00285{bottom:899.280000px;}
.y1a_c00285{bottom:900.000000px;}
.y18_c00285{bottom:939.600000px;}
.y16_c00285{bottom:940.320000px;}
.y14_c00285{bottom:941.760000px;}
.y15_c00285{bottom:942.480000px;}
.y17_c00285{bottom:943.200000px;}
.y13_c00285{bottom:943.920000px;}
.y12_c00285{bottom:994.320000px;}
.y10_c00285{bottom:995.040000px;}
.ye_c00285{bottom:995.760000px;}
.yf_c00285{bottom:996.480000px;}
.yd_c00285{bottom:997.200000px;}
.y11_c00285{bottom:999.360000px;}
.yc_c00285{bottom:1026.000000px;}
.y9_c00285{bottom:1026.720000px;}
.ya_c00285{bottom:1027.440000px;}
.y7_c00285{bottom:1028.160000px;}
.y6_c00285{bottom:1028.880000px;}
.y8_c00285{bottom:1030.320000px;}
.yb_c00285{bottom:1031.760000px;}
.y5_c00285{bottom:1061.280000px;}
.y4_c00285{bottom:1062.000000px;}
.y2_c00285{bottom:1062.720000px;}
.y3_c00285{bottom:1063.440000px;}
.y1_c00285{bottom:1109.520000px;}
.hb_c00285{height:20.733750px;}
.h8_c00285{height:23.325469px;}
.hd_c00285{height:31.100625px;}
.he_c00285{height:33.692344px;}
.hf_c00285{height:36.284062px;}
.h10_c00285{height:38.875781px;}
.h3_c00285{height:41.467500px;}
.h4_c00285{height:44.059219px;}
.h9_c00285{height:46.650937px;}
.h5_c00285{height:49.242656px;}
.h6_c00285{height:51.834375px;}
.h7_c00285{height:54.426094px;}
.hc_c00285{height:57.017812px;}
.ha_c00285{height:59.609531px;}
.h11_c00285{height:62.201250px;}
.h12_c00285{height:64.792969px;}
.h2_c00285{height:69.976406px;}
.h13_c00285{height:98.485312px;}
.h1_c00285{height:1161.750000px;}
.h0_c00285{height:1162.080000px;}
.w1_c00285{width:789.750000px;}
.w0_c00285{width:789.840000px;}
.x0_c00285{left:0.000000px;}
.x25_c00285{left:84.960000px;}
.x7_c00285{left:86.400000px;}
.x36_c00285{left:105.840000px;}
.xf_c00285{left:107.280000px;}
.x1d_c00285{left:116.640000px;}
.x10_c00285{left:118.080000px;}
.x5d_c00285{left:126.720000px;}
.x4d_c00285{left:136.080000px;}
.x2b_c00285{left:138.240000px;}
.x37_c00285{left:147.600000px;}
.x4f_c00285{left:157.680000px;}
.x3c_c00285{left:159.120000px;}
.x11_c00285{left:180.720000px;}
.x8_c00285{left:182.160000px;}
.x4e_c00285{left:190.080000px;}
.x26_c00285{left:191.520000px;}
.x14_c00285{left:192.960000px;}
.x2_c00285{left:194.400000px;}
.x5a_c00285{left:200.880000px;}
.x1e_c00285{left:202.320000px;}
.x3e_c00285{left:211.680000px;}
.x15_c00285{left:213.120000px;}
.x27_c00285{left:223.200000px;}
.x53_c00285{left:234.000000px;}
.x31_c00285{left:235.440000px;}
.x50_c00285{left:244.080000px;}
.x9_c00285{left:246.240000px;}
.x38_c00285{left:257.040000px;}
.x3_c00285{left:258.480000px;}
.x5e_c00285{left:265.680000px;}
.x32_c00285{left:267.120000px;}
.x48_c00285{left:277.920000px;}
.x39_c00285{left:279.360000px;}
.x16_c00285{left:289.440000px;}
.x42_c00285{left:298.080000px;}
.x1f_c00285{left:300.960000px;}
.x49_c00285{left:309.600000px;}
.xa_c00285{left:311.760000px;}
.x17_c00285{left:321.840000px;}
.x43_c00285{left:331.920000px;}
.x28_c00285{left:342.720000px;}
.x33_c00285{left:354.240000px;}
.x54_c00285{left:362.880000px;}
.x57_c00285{left:373.680000px;}
.x2c_c00285{left:375.840000px;}
.x18_c00285{left:386.640000px;}
.x4_c00285{left:388.080000px;}
.xb_c00285{left:398.880000px;}
.x58_c00285{left:406.800000px;}
.x20_c00285{left:408.240000px;}
.x44_c00285{left:416.880000px;}
.x34_c00285{left:429.120000px;}
.x21_c00285{left:440.640000px;}
.x45_c00285{left:450.720000px;}
.x12_c00285{left:452.160000px;}
.xc_c00285{left:453.600000px;}
.x5b_c00285{left:460.800000px;}
.x5_c00285{left:463.680000px;}
.x4a_c00285{left:472.320000px;}
.x19_c00285{left:473.760000px;}
.x3f_c00285{left:483.840000px;}
.x29_c00285{left:494.640000px;}
.x4b_c00285{left:503.280000px;}
.x1a_c00285{left:505.440000px;}
.x2d_c00285{left:516.240000px;}
.x13_c00285{left:518.400000px;}
.x5f_c00285{left:524.880000px;}
.x6_c00285{left:528.480000px;}
.x51_c00285{left:535.680000px;}
.x3a_c00285{left:537.120000px;}
.x46_c00285{left:547.200000px;}
.x2e_c00285{left:548.640000px;}
.x3d_c00285{left:558.720000px;}
.x4c_c00285{left:568.800000px;}
.xd_c00285{left:570.240000px;}
.x47_c00285{left:578.880000px;}
.x35_c00285{left:580.320000px;}
.x1b_c00285{left:581.760000px;}
.x2f_c00285{left:591.120000px;}
.xe_c00285{left:593.280000px;}
.x22_c00285{left:602.640000px;}
.x5c_c00285{left:611.280000px;}
.x1c_c00285{left:613.440000px;}
.x40_c00285{left:624.240000px;}
.x55_c00285{left:632.880000px;}
.x23_c00285{left:635.040000px;}
.x2a_c00285{left:636.480000px;}
.x3b_c00285{left:655.920000px;}
.x52_c00285{left:665.280000px;}
.x24_c00285{left:667.440000px;}
.x56_c00285{left:676.080000px;}
.x30_c00285{left:678.240000px;}
.x41_c00285{left:686.880000px;}
.x1_c00285{left:697.680000px;}
.x59_c00285{left:707.040000px;}
@media print{
.v1_c00285{vertical-align:-2.560000pt;}
.v0_c00285{vertical-align:0.000000pt;}
.ls1_c00285{letter-spacing:0.000000pt;}
.ls0_c00285{letter-spacing:143.623680pt;}
.ws0_c00285{word-spacing:0.000000pt;}
.fs9_c00285{font-size:20.480000pt;}
.fs6_c00285{font-size:23.040000pt;}
.fsb_c00285{font-size:30.720000pt;}
.fsc_c00285{font-size:33.280000pt;}
.fsd_c00285{font-size:35.840000pt;}
.fse_c00285{font-size:38.400000pt;}
.fs1_c00285{font-size:40.960000pt;}
.fs2_c00285{font-size:43.520000pt;}
.fs7_c00285{font-size:46.080000pt;}
.fs3_c00285{font-size:48.640000pt;}
.fs4_c00285{font-size:51.200000pt;}
.fs5_c00285{font-size:53.760000pt;}
.fsa_c00285{font-size:56.320000pt;}
.fs8_c00285{font-size:58.880000pt;}
.fsf_c00285{font-size:61.440000pt;}
.fs10_c00285{font-size:64.000000pt;}
.fs0_c00285{font-size:69.120000pt;}
.fs11_c00285{font-size:97.280000pt;}
.y0_c00285{bottom:0.000000pt;}
.y6f_c00285{bottom:87.040000pt;}
.y70_c00285{bottom:87.680000pt;}
.y6e_c00285{bottom:88.320000pt;}
.y6d_c00285{bottom:88.960000pt;}
.y6c_c00285{bottom:91.520000pt;}
.y68_c00285{bottom:125.440000pt;}
.y69_c00285{bottom:126.720000pt;}
.y6a_c00285{bottom:127.360000pt;}
.y6b_c00285{bottom:128.000000pt;}
.y67_c00285{bottom:128.640000pt;}
.y65_c00285{bottom:165.120000pt;}
.y64_c00285{bottom:165.760000pt;}
.y63_c00285{bottom:167.040000pt;}
.y66_c00285{bottom:168.320000pt;}
.y60_c00285{bottom:201.600000pt;}
.y5c_c00285{bottom:202.240000pt;}
.y61_c00285{bottom:202.880000pt;}
.y5f_c00285{bottom:203.520000pt;}
.y5e_c00285{bottom:204.160000pt;}
.y5d_c00285{bottom:204.800000pt;}
.y62_c00285{bottom:205.440000pt;}
.y5a_c00285{bottom:241.280000pt;}
.y59_c00285{bottom:242.560000pt;}
.y5b_c00285{bottom:243.200000pt;}
.y58_c00285{bottom:243.840000pt;}
.y56_c00285{bottom:280.960000pt;}
.y57_c00285{bottom:281.600000pt;}
.y55_c00285{bottom:282.240000pt;}
.y54_c00285{bottom:282.880000pt;}
.y52_c00285{bottom:316.800000pt;}
.y50_c00285{bottom:317.440000pt;}
.y53_c00285{bottom:318.080000pt;}
.y51_c00285{bottom:320.000000pt;}
.y4f_c00285{bottom:320.640000pt;}
.y4d_c00285{bottom:355.200000pt;}
.y4e_c00285{bottom:355.840000pt;}
.y4c_c00285{bottom:357.760000pt;}
.y4a_c00285{bottom:358.400000pt;}
.y4b_c00285{bottom:359.040000pt;}
.y46_c00285{bottom:394.880000pt;}
.y48_c00285{bottom:396.800000pt;}
.y47_c00285{bottom:397.440000pt;}
.y45_c00285{bottom:398.080000pt;}
.y49_c00285{bottom:399.360000pt;}
.y44_c00285{bottom:471.040000pt;}
.y41_c00285{bottom:471.680000pt;}
.y40_c00285{bottom:472.960000pt;}
.y43_c00285{bottom:473.600000pt;}
.y42_c00285{bottom:474.240000pt;}
.y3e_c00285{bottom:519.040000pt;}
.y3f_c00285{bottom:519.680000pt;}
.y3d_c00285{bottom:521.600000pt;}
.y39_c00285{bottom:556.800000pt;}
.y3b_c00285{bottom:557.440000pt;}
.y3a_c00285{bottom:558.080000pt;}
.y3c_c00285{bottom:558.720000pt;}
.y38_c00285{bottom:560.000000pt;}
.y37_c00285{bottom:560.640000pt;}
.y32_c00285{bottom:595.840000pt;}
.y34_c00285{bottom:596.480000pt;}
.y36_c00285{bottom:597.120000pt;}
.y35_c00285{bottom:597.760000pt;}
.y33_c00285{bottom:598.400000pt;}
.y2e_c00285{bottom:643.200000pt;}
.y30_c00285{bottom:645.760000pt;}
.y2f_c00285{bottom:646.400000pt;}
.y31_c00285{bottom:647.040000pt;}
.y2d_c00285{bottom:656.640000pt;}
.y29_c00285{bottom:681.600000pt;}
.y2c_c00285{bottom:683.520000pt;}
.y2b_c00285{bottom:684.160000pt;}
.y2a_c00285{bottom:684.800000pt;}
.y24_c00285{bottom:720.640000pt;}
.y28_c00285{bottom:721.280000pt;}
.y27_c00285{bottom:721.920000pt;}
.y23_c00285{bottom:722.560000pt;}
.y25_c00285{bottom:723.200000pt;}
.y26_c00285{bottom:723.840000pt;}
.y1e_c00285{bottom:758.400000pt;}
.y22_c00285{bottom:759.040000pt;}
.y1f_c00285{bottom:760.320000pt;}
.y21_c00285{bottom:760.960000pt;}
.y20_c00285{bottom:761.600000pt;}
.y1b_c00285{bottom:797.440000pt;}
.y1c_c00285{bottom:798.080000pt;}
.y1d_c00285{bottom:798.720000pt;}
.y19_c00285{bottom:799.360000pt;}
.y1a_c00285{bottom:800.000000pt;}
.y18_c00285{bottom:835.200000pt;}
.y16_c00285{bottom:835.840000pt;}
.y14_c00285{bottom:837.120000pt;}
.y15_c00285{bottom:837.760000pt;}
.y17_c00285{bottom:838.400000pt;}
.y13_c00285{bottom:839.040000pt;}
.y12_c00285{bottom:883.840000pt;}
.y10_c00285{bottom:884.480000pt;}
.ye_c00285{bottom:885.120000pt;}
.yf_c00285{bottom:885.760000pt;}
.yd_c00285{bottom:886.400000pt;}
.y11_c00285{bottom:888.320000pt;}
.yc_c00285{bottom:912.000000pt;}
.y9_c00285{bottom:912.640000pt;}
.ya_c00285{bottom:913.280000pt;}
.y7_c00285{bottom:913.920000pt;}
.y6_c00285{bottom:914.560000pt;}
.y8_c00285{bottom:915.840000pt;}
.yb_c00285{bottom:917.120000pt;}
.y5_c00285{bottom:943.360000pt;}
.y4_c00285{bottom:944.000000pt;}
.y2_c00285{bottom:944.640000pt;}
.y3_c00285{bottom:945.280000pt;}
.y1_c00285{bottom:986.240000pt;}
.hb_c00285{height:18.430000pt;}
.h8_c00285{height:20.733750pt;}
.hd_c00285{height:27.645000pt;}
.he_c00285{height:29.948750pt;}
.hf_c00285{height:32.252500pt;}
.h10_c00285{height:34.556250pt;}
.h3_c00285{height:36.860000pt;}
.h4_c00285{height:39.163750pt;}
.h9_c00285{height:41.467500pt;}
.h5_c00285{height:43.771250pt;}
.h6_c00285{height:46.075000pt;}
.h7_c00285{height:48.378750pt;}
.hc_c00285{height:50.682500pt;}
.ha_c00285{height:52.986250pt;}
.h11_c00285{height:55.290000pt;}
.h12_c00285{height:57.593750pt;}
.h2_c00285{height:62.201250pt;}
.h13_c00285{height:87.542500pt;}
.h1_c00285{height:1032.666667pt;}
.h0_c00285{height:1032.960000pt;}
.w1_c00285{width:702.000000pt;}
.w0_c00285{width:702.080000pt;}
.x0_c00285{left:0.000000pt;}
.x25_c00285{left:75.520000pt;}
.x7_c00285{left:76.800000pt;}
.x36_c00285{left:94.080000pt;}
.xf_c00285{left:95.360000pt;}
.x1d_c00285{left:103.680000pt;}
.x10_c00285{left:104.960000pt;}
.x5d_c00285{left:112.640000pt;}
.x4d_c00285{left:120.960000pt;}
.x2b_c00285{left:122.880000pt;}
.x37_c00285{left:131.200000pt;}
.x4f_c00285{left:140.160000pt;}
.x3c_c00285{left:141.440000pt;}
.x11_c00285{left:160.640000pt;}
.x8_c00285{left:161.920000pt;}
.x4e_c00285{left:168.960000pt;}
.x26_c00285{left:170.240000pt;}
.x14_c00285{left:171.520000pt;}
.x2_c00285{left:172.800000pt;}
.x5a_c00285{left:178.560000pt;}
.x1e_c00285{left:179.840000pt;}
.x3e_c00285{left:188.160000pt;}
.x15_c00285{left:189.440000pt;}
.x27_c00285{left:198.400000pt;}
.x53_c00285{left:208.000000pt;}
.x31_c00285{left:209.280000pt;}
.x50_c00285{left:216.960000pt;}
.x9_c00285{left:218.880000pt;}
.x38_c00285{left:228.480000pt;}
.x3_c00285{left:229.760000pt;}
.x5e_c00285{left:236.160000pt;}
.x32_c00285{left:237.440000pt;}
.x48_c00285{left:247.040000pt;}
.x39_c00285{left:248.320000pt;}
.x16_c00285{left:257.280000pt;}
.x42_c00285{left:264.960000pt;}
.x1f_c00285{left:267.520000pt;}
.x49_c00285{left:275.200000pt;}
.xa_c00285{left:277.120000pt;}
.x17_c00285{left:286.080000pt;}
.x43_c00285{left:295.040000pt;}
.x28_c00285{left:304.640000pt;}
.x33_c00285{left:314.880000pt;}
.x54_c00285{left:322.560000pt;}
.x57_c00285{left:332.160000pt;}
.x2c_c00285{left:334.080000pt;}
.x18_c00285{left:343.680000pt;}
.x4_c00285{left:344.960000pt;}
.xb_c00285{left:354.560000pt;}
.x58_c00285{left:361.600000pt;}
.x20_c00285{left:362.880000pt;}
.x44_c00285{left:370.560000pt;}
.x34_c00285{left:381.440000pt;}
.x21_c00285{left:391.680000pt;}
.x45_c00285{left:400.640000pt;}
.x12_c00285{left:401.920000pt;}
.xc_c00285{left:403.200000pt;}
.x5b_c00285{left:409.600000pt;}
.x5_c00285{left:412.160000pt;}
.x4a_c00285{left:419.840000pt;}
.x19_c00285{left:421.120000pt;}
.x3f_c00285{left:430.080000pt;}
.x29_c00285{left:439.680000pt;}
.x4b_c00285{left:447.360000pt;}
.x1a_c00285{left:449.280000pt;}
.x2d_c00285{left:458.880000pt;}
.x13_c00285{left:460.800000pt;}
.x5f_c00285{left:466.560000pt;}
.x6_c00285{left:469.760000pt;}
.x51_c00285{left:476.160000pt;}
.x3a_c00285{left:477.440000pt;}
.x46_c00285{left:486.400000pt;}
.x2e_c00285{left:487.680000pt;}
.x3d_c00285{left:496.640000pt;}
.x4c_c00285{left:505.600000pt;}
.xd_c00285{left:506.880000pt;}
.x47_c00285{left:514.560000pt;}
.x35_c00285{left:515.840000pt;}
.x1b_c00285{left:517.120000pt;}
.x2f_c00285{left:525.440000pt;}
.xe_c00285{left:527.360000pt;}
.x22_c00285{left:535.680000pt;}
.x5c_c00285{left:543.360000pt;}
.x1c_c00285{left:545.280000pt;}
.x40_c00285{left:554.880000pt;}
.x55_c00285{left:562.560000pt;}
.x23_c00285{left:564.480000pt;}
.x2a_c00285{left:565.760000pt;}
.x3b_c00285{left:583.040000pt;}
.x52_c00285{left:591.360000pt;}
.x24_c00285{left:593.280000pt;}
.x56_c00285{left:600.960000pt;}
.x30_c00285{left:602.880000pt;}
.x41_c00285{left:610.560000pt;}
.x1_c00285{left:620.160000pt;}
.x59_c00285{left:628.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_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_547f7671bf5d5c2043220d81.woff2')format("woff");}.ff1_c00286{font-family:ff1_c00286;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3d_c00286{transform:matrix(0.177125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177125,0.000000,0.000000,0.250000,0,0);}
.m45_c00286{transform:matrix(0.192600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192600,0.000000,0.000000,0.250000,0,0);}
.m37_c00286{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);}
.m55_c00286{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00286{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m40_c00286{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);}
.m4d_c00286{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);}
.m52_c00286{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m27_c00286{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00286{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00286{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00286{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m18_c00286{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m34_c00286{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mf_c00286{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mb_c00286{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m29_c00286{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m0_c00286{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m20_c00286{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00286{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00286{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00286{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00286{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m42_c00286{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m33_c00286{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m7_c00286{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m14_c00286{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m15_c00286{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m25_c00286{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m36_c00286{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m21_c00286{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00286{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m46_c00286{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m10_c00286{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00286{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00286{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m19_c00286{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);}
.m57_c00286{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);}
.m50_c00286{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);}
.m26_c00286{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m11_c00286{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m1_c00286{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00286{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m6_c00286{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);}
.m41_c00286{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);}
.m43_c00286{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m12_c00286{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m47_c00286{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m35_c00286{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);}
.m44_c00286{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00286{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);}
.ma_c00286{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);}
.m58_c00286{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m31_c00286{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m60_c00286{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.md_c00286{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00286{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);}
.m1b_c00286{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m38_c00286{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m59_c00286{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m53_c00286{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);}
.m1a_c00286{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m32_c00286{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.mc_c00286{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m49_c00286{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m4_c00286{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);}
.m5d_c00286{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m48_c00286{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00286{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00286{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);}
.m4b_c00286{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m8_c00286{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m23_c00286{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m54_c00286{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m16_c00286{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);}
.m4e_c00286{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);}
.m3_c00286{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00286{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m24_c00286{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m17_c00286{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);}
.m9_c00286{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m22_c00286{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00286{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);}
.m3a_c00286{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.me_c00286{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m51_c00286{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);}
.m5f_c00286{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m2_c00286{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00286{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);}
.m13_c00286{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);}
.m39_c00286{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m30_c00286{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m5_c00286{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m61_c00286{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00286{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);}
.m28_c00286{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m56_c00286{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);}
.m3c_c00286{transform:matrix(0.817500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.817500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.817500,0.000000,0.000000,0.250000,0,0);}
.v0_c00286{vertical-align:0.000000px;}
.v1_c00286{vertical-align:11.520000px;}
.ls0_c00286{letter-spacing:0.000000px;}
.sc__c00286{text-shadow:none;}
.sc0_c00286{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00286{-webkit-text-stroke:0px transparent;}
.sc0_c00286{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00286{word-spacing:-0.688320px;}
.ws2_c00286{word-spacing:0.000000px;}
.ws1_c00286{word-spacing:4.115520px;}
.fc0_c00286{color:transparent;}
.fsf_c00286{font-size:20.160000px;}
.fs8_c00286{font-size:34.560000px;}
.fsc_c00286{font-size:37.440000px;}
.fsa_c00286{font-size:40.320000px;}
.fs13_c00286{font-size:43.200000px;}
.fs4_c00286{font-size:46.080000px;}
.fs9_c00286{font-size:48.960000px;}
.fs1_c00286{font-size:51.840000px;}
.fs5_c00286{font-size:54.720000px;}
.fs3_c00286{font-size:57.600000px;}
.fs7_c00286{font-size:60.480000px;}
.fs2_c00286{font-size:63.360000px;}
.fs6_c00286{font-size:66.240000px;}
.fs11_c00286{font-size:69.120000px;}
.fsd_c00286{font-size:72.000000px;}
.fse_c00286{font-size:74.880000px;}
.fsb_c00286{font-size:77.760000px;}
.fs0_c00286{font-size:83.520000px;}
.fs10_c00286{font-size:95.040000px;}
.fs14_c00286{font-size:97.920000px;}
.fs12_c00286{font-size:120.960000px;}
.y0_c00286{bottom:0.000000px;}
.y75_c00286{bottom:88.560000px;}
.y76_c00286{bottom:89.280000px;}
.y77_c00286{bottom:90.000000px;}
.y78_c00286{bottom:90.720000px;}
.y79_c00286{bottom:92.160000px;}
.y7a_c00286{bottom:92.880000px;}
.y72_c00286{bottom:131.040000px;}
.y70_c00286{bottom:131.760000px;}
.y71_c00286{bottom:133.200000px;}
.y73_c00286{bottom:133.920000px;}
.y74_c00286{bottom:134.640000px;}
.y6f_c00286{bottom:135.360000px;}
.y6c_c00286{bottom:174.240000px;}
.y6a_c00286{bottom:174.960000px;}
.y6e_c00286{bottom:175.680000px;}
.y6d_c00286{bottom:177.120000px;}
.y6b_c00286{bottom:177.840000px;}
.y69_c00286{bottom:178.560000px;}
.y68_c00286{bottom:179.280000px;}
.y65_c00286{bottom:217.440000px;}
.y64_c00286{bottom:218.880000px;}
.y63_c00286{bottom:219.600000px;}
.y62_c00286{bottom:220.320000px;}
.y66_c00286{bottom:221.040000px;}
.y67_c00286{bottom:221.760000px;}
.y61_c00286{bottom:223.200000px;}
.y5e_c00286{bottom:247.680000px;}
.y5b_c00286{bottom:261.360000px;}
.y5d_c00286{bottom:262.080000px;}
.y5a_c00286{bottom:262.800000px;}
.y5c_c00286{bottom:263.520000px;}
.y5f_c00286{bottom:264.240000px;}
.y60_c00286{bottom:264.960000px;}
.y59_c00286{bottom:274.320000px;}
.y56_c00286{bottom:303.120000px;}
.y57_c00286{bottom:304.560000px;}
.y55_c00286{bottom:305.280000px;}
.y54_c00286{bottom:306.720000px;}
.y58_c00286{bottom:307.440000px;}
.y51_c00286{bottom:345.600000px;}
.y4f_c00286{bottom:347.040000px;}
.y50_c00286{bottom:349.200000px;}
.y52_c00286{bottom:349.920000px;}
.y53_c00286{bottom:350.640000px;}
.y4d_c00286{bottom:390.240000px;}
.y4e_c00286{bottom:390.960000px;}
.y4c_c00286{bottom:391.680000px;}
.y4a_c00286{bottom:392.400000px;}
.y4b_c00286{bottom:393.120000px;}
.y46_c00286{bottom:432.720000px;}
.y48_c00286{bottom:433.440000px;}
.y45_c00286{bottom:434.880000px;}
.y49_c00286{bottom:435.600000px;}
.y47_c00286{bottom:436.320000px;}
.y40_c00286{bottom:460.080000px;}
.y43_c00286{bottom:476.640000px;}
.y42_c00286{bottom:477.360000px;}
.y41_c00286{bottom:478.080000px;}
.y44_c00286{bottom:478.800000px;}
.y3f_c00286{bottom:479.520000px;}
.y3e_c00286{bottom:491.040000px;}
.y3b_c00286{bottom:506.880000px;}
.y3c_c00286{bottom:519.840000px;}
.y38_c00286{bottom:520.560000px;}
.y3a_c00286{bottom:522.000000px;}
.y39_c00286{bottom:522.720000px;}
.y3d_c00286{bottom:523.440000px;}
.y37_c00286{bottom:534.240000px;}
.y35_c00286{bottom:562.320000px;}
.y36_c00286{bottom:563.040000px;}
.y33_c00286{bottom:563.760000px;}
.y34_c00286{bottom:564.480000px;}
.y32_c00286{bottom:565.920000px;}
.y31_c00286{bottom:594.720000px;}
.y2e_c00286{bottom:606.960000px;}
.y2f_c00286{bottom:608.400000px;}
.y2d_c00286{bottom:609.120000px;}
.y30_c00286{bottom:609.840000px;}
.y2b_c00286{bottom:620.640000px;}
.y2c_c00286{bottom:621.360000px;}
.y27_c00286{bottom:648.720000px;}
.y28_c00286{bottom:649.440000px;}
.y2a_c00286{bottom:650.160000px;}
.y26_c00286{bottom:651.600000px;}
.y29_c00286{bottom:652.320000px;}
.y25_c00286{bottom:694.800000px;}
.y24_c00286{bottom:695.520000px;}
.y22_c00286{bottom:735.840000px;}
.y23_c00286{bottom:736.560000px;}
.y21_c00286{bottom:738.720000px;}
.y20_c00286{bottom:739.440000px;}
.y1f_c00286{bottom:750.240000px;}
.y1b_c00286{bottom:778.320000px;}
.y1e_c00286{bottom:779.040000px;}
.y1d_c00286{bottom:781.200000px;}
.y1c_c00286{bottom:781.920000px;}
.y19_c00286{bottom:822.240000px;}
.y18_c00286{bottom:824.400000px;}
.y1a_c00286{bottom:825.120000px;}
.y16_c00286{bottom:863.280000px;}
.y13_c00286{bottom:864.720000px;}
.y14_c00286{bottom:865.440000px;}
.y17_c00286{bottom:866.880000px;}
.y15_c00286{bottom:868.320000px;}
.y12_c00286{bottom:907.200000px;}
.ye_c00286{bottom:908.640000px;}
.y11_c00286{bottom:910.080000px;}
.yf_c00286{bottom:910.800000px;}
.y10_c00286{bottom:911.520000px;}
.yd_c00286{bottom:950.400000px;}
.yb_c00286{bottom:951.120000px;}
.yc_c00286{bottom:953.280000px;}
.ya_c00286{bottom:954.000000px;}
.y9_c00286{bottom:954.720000px;}
.y8_c00286{bottom:1006.560000px;}
.y7_c00286{bottom:1048.320000px;}
.y6_c00286{bottom:1049.040000px;}
.y2_c00286{bottom:1049.760000px;}
.y5_c00286{bottom:1050.480000px;}
.y3_c00286{bottom:1051.200000px;}
.y4_c00286{bottom:1051.920000px;}
.y1_c00286{bottom:1108.800000px;}
.h11_c00286{height:18.142031px;}
.ha_c00286{height:31.100625px;}
.he_c00286{height:33.692344px;}
.hc_c00286{height:36.284062px;}
.h15_c00286{height:38.875781px;}
.h6_c00286{height:41.467500px;}
.hb_c00286{height:44.059219px;}
.h3_c00286{height:46.650937px;}
.h7_c00286{height:49.242656px;}
.h5_c00286{height:51.834375px;}
.h9_c00286{height:54.426094px;}
.h4_c00286{height:57.017812px;}
.h16_c00286{height:58.170937px;}
.h8_c00286{height:59.609531px;}
.h13_c00286{height:62.201250px;}
.hf_c00286{height:64.792969px;}
.h10_c00286{height:67.384687px;}
.hd_c00286{height:69.976406px;}
.h2_c00286{height:75.159844px;}
.h12_c00286{height:85.526719px;}
.h17_c00286{height:88.118437px;}
.h14_c00286{height:108.852188px;}
.h1_c00286{height:1164.000000px;}
.h0_c00286{height:1164.240000px;}
.w0_c00286{width:792.720000px;}
.w1_c00286{width:792.750000px;}
.x0_c00286{left:0.000000px;}
.x2_c00286{left:81.360000px;}
.x15_c00286{left:82.800000px;}
.x35_c00286{left:84.240000px;}
.x4b_c00286{left:86.400000px;}
.x26_c00286{left:102.960000px;}
.x4c_c00286{left:105.840000px;}
.x20_c00286{left:114.480000px;}
.x4f_c00286{left:115.920000px;}
.x1b_c00286{left:123.120000px;}
.x40_c00286{left:126.000000px;}
.x3_c00286{left:135.360000px;}
.x2c_c00286{left:140.400000px;}
.x41_c00286{left:146.880000px;}
.x16_c00286{left:156.960000px;}
.x4_c00286{left:167.040000px;}
.x3d_c00286{left:169.200000px;}
.x42_c00286{left:177.840000px;}
.xc_c00286{left:188.640000px;}
.xd_c00286{left:190.080000px;}
.x46_c00286{left:200.160000px;}
.x53_c00286{left:211.680000px;}
.xe_c00286{left:221.760000px;}
.x17_c00286{left:231.840000px;}
.x2d_c00286{left:241.920000px;}
.x47_c00286{left:244.080000px;}
.x43_c00286{left:252.720000px;}
.xf_c00286{left:254.160000px;}
.x1c_c00286{left:264.960000px;}
.x3e_c00286{left:266.400000px;}
.x2e_c00286{left:274.320000px;}
.x21_c00286{left:275.760000px;}
.x5_c00286{left:286.560000px;}
.x50_c00286{left:288.000000px;}
.x1d_c00286{left:297.360000px;}
.x36_c00286{left:298.800000px;}
.x27_c00286{left:307.440000px;}
.x51_c00286{left:308.880000px;}
.x4d_c00286{left:319.680000px;}
.x39_c00286{left:328.320000px;}
.x22_c00286{left:330.480000px;}
.x2f_c00286{left:341.280000px;}
.x6_c00286{left:352.080000px;}
.x37_c00286{left:362.880000px;}
.x44_c00286{left:374.400000px;}
.x7_c00286{left:384.480000px;}
.x10_c00286{left:395.280000px;}
.x49_c00286{left:405.360000px;}
.x3a_c00286{left:406.800000px;}
.x32_c00286{left:417.600000px;}
.x11_c00286{left:427.680000px;}
.x1e_c00286{left:436.320000px;}
.x28_c00286{left:438.480000px;}
.x23_c00286{left:447.840000px;}
.x33_c00286{left:449.280000px;}
.x2b_c00286{left:460.800000px;}
.x3b_c00286{left:462.240000px;}
.x38_c00286{left:469.440000px;}
.x12_c00286{left:470.880000px;}
.x30_c00286{left:481.680000px;}
.x45_c00286{left:492.480000px;}
.x34_c00286{left:503.280000px;}
.x18_c00286{left:514.080000px;}
.x8_c00286{left:524.880000px;}
.x24_c00286{left:534.960000px;}
.x29_c00286{left:547.200000px;}
.x4a_c00286{left:555.840000px;}
.x19_c00286{left:557.280000px;}
.x1f_c00286{left:568.080000px;}
.x13_c00286{left:578.880000px;}
.x25_c00286{left:589.680000px;}
.x14_c00286{left:600.480000px;}
.x3f_c00286{left:611.280000px;}
.x31_c00286{left:622.080000px;}
.x9_c00286{left:632.160000px;}
.x48_c00286{left:643.680000px;}
.x3c_c00286{left:645.840000px;}
.xa_c00286{left:653.760000px;}
.x52_c00286{left:666.000000px;}
.x4e_c00286{left:673.920000px;}
.x2a_c00286{left:675.360000px;}
.xb_c00286{left:686.160000px;}
.x1_c00286{left:695.520000px;}
.x1a_c00286{left:696.960000px;}
@media print{
.v0_c00286{vertical-align:0.000000pt;}
.v1_c00286{vertical-align:10.240000pt;}
.ls0_c00286{letter-spacing:0.000000pt;}
.ws0_c00286{word-spacing:-0.611840pt;}
.ws2_c00286{word-spacing:0.000000pt;}
.ws1_c00286{word-spacing:3.658240pt;}
.fsf_c00286{font-size:17.920000pt;}
.fs8_c00286{font-size:30.720000pt;}
.fsc_c00286{font-size:33.280000pt;}
.fsa_c00286{font-size:35.840000pt;}
.fs13_c00286{font-size:38.400000pt;}
.fs4_c00286{font-size:40.960000pt;}
.fs9_c00286{font-size:43.520000pt;}
.fs1_c00286{font-size:46.080000pt;}
.fs5_c00286{font-size:48.640000pt;}
.fs3_c00286{font-size:51.200000pt;}
.fs7_c00286{font-size:53.760000pt;}
.fs2_c00286{font-size:56.320000pt;}
.fs6_c00286{font-size:58.880000pt;}
.fs11_c00286{font-size:61.440000pt;}
.fsd_c00286{font-size:64.000000pt;}
.fse_c00286{font-size:66.560000pt;}
.fsb_c00286{font-size:69.120000pt;}
.fs0_c00286{font-size:74.240000pt;}
.fs10_c00286{font-size:84.480000pt;}
.fs14_c00286{font-size:87.040000pt;}
.fs12_c00286{font-size:107.520000pt;}
.y0_c00286{bottom:0.000000pt;}
.y75_c00286{bottom:78.720000pt;}
.y76_c00286{bottom:79.360000pt;}
.y77_c00286{bottom:80.000000pt;}
.y78_c00286{bottom:80.640000pt;}
.y79_c00286{bottom:81.920000pt;}
.y7a_c00286{bottom:82.560000pt;}
.y72_c00286{bottom:116.480000pt;}
.y70_c00286{bottom:117.120000pt;}
.y71_c00286{bottom:118.400000pt;}
.y73_c00286{bottom:119.040000pt;}
.y74_c00286{bottom:119.680000pt;}
.y6f_c00286{bottom:120.320000pt;}
.y6c_c00286{bottom:154.880000pt;}
.y6a_c00286{bottom:155.520000pt;}
.y6e_c00286{bottom:156.160000pt;}
.y6d_c00286{bottom:157.440000pt;}
.y6b_c00286{bottom:158.080000pt;}
.y69_c00286{bottom:158.720000pt;}
.y68_c00286{bottom:159.360000pt;}
.y65_c00286{bottom:193.280000pt;}
.y64_c00286{bottom:194.560000pt;}
.y63_c00286{bottom:195.200000pt;}
.y62_c00286{bottom:195.840000pt;}
.y66_c00286{bottom:196.480000pt;}
.y67_c00286{bottom:197.120000pt;}
.y61_c00286{bottom:198.400000pt;}
.y5e_c00286{bottom:220.160000pt;}
.y5b_c00286{bottom:232.320000pt;}
.y5d_c00286{bottom:232.960000pt;}
.y5a_c00286{bottom:233.600000pt;}
.y5c_c00286{bottom:234.240000pt;}
.y5f_c00286{bottom:234.880000pt;}
.y60_c00286{bottom:235.520000pt;}
.y59_c00286{bottom:243.840000pt;}
.y56_c00286{bottom:269.440000pt;}
.y57_c00286{bottom:270.720000pt;}
.y55_c00286{bottom:271.360000pt;}
.y54_c00286{bottom:272.640000pt;}
.y58_c00286{bottom:273.280000pt;}
.y51_c00286{bottom:307.200000pt;}
.y4f_c00286{bottom:308.480000pt;}
.y50_c00286{bottom:310.400000pt;}
.y52_c00286{bottom:311.040000pt;}
.y53_c00286{bottom:311.680000pt;}
.y4d_c00286{bottom:346.880000pt;}
.y4e_c00286{bottom:347.520000pt;}
.y4c_c00286{bottom:348.160000pt;}
.y4a_c00286{bottom:348.800000pt;}
.y4b_c00286{bottom:349.440000pt;}
.y46_c00286{bottom:384.640000pt;}
.y48_c00286{bottom:385.280000pt;}
.y45_c00286{bottom:386.560000pt;}
.y49_c00286{bottom:387.200000pt;}
.y47_c00286{bottom:387.840000pt;}
.y40_c00286{bottom:408.960000pt;}
.y43_c00286{bottom:423.680000pt;}
.y42_c00286{bottom:424.320000pt;}
.y41_c00286{bottom:424.960000pt;}
.y44_c00286{bottom:425.600000pt;}
.y3f_c00286{bottom:426.240000pt;}
.y3e_c00286{bottom:436.480000pt;}
.y3b_c00286{bottom:450.560000pt;}
.y3c_c00286{bottom:462.080000pt;}
.y38_c00286{bottom:462.720000pt;}
.y3a_c00286{bottom:464.000000pt;}
.y39_c00286{bottom:464.640000pt;}
.y3d_c00286{bottom:465.280000pt;}
.y37_c00286{bottom:474.880000pt;}
.y35_c00286{bottom:499.840000pt;}
.y36_c00286{bottom:500.480000pt;}
.y33_c00286{bottom:501.120000pt;}
.y34_c00286{bottom:501.760000pt;}
.y32_c00286{bottom:503.040000pt;}
.y31_c00286{bottom:528.640000pt;}
.y2e_c00286{bottom:539.520000pt;}
.y2f_c00286{bottom:540.800000pt;}
.y2d_c00286{bottom:541.440000pt;}
.y30_c00286{bottom:542.080000pt;}
.y2b_c00286{bottom:551.680000pt;}
.y2c_c00286{bottom:552.320000pt;}
.y27_c00286{bottom:576.640000pt;}
.y28_c00286{bottom:577.280000pt;}
.y2a_c00286{bottom:577.920000pt;}
.y26_c00286{bottom:579.200000pt;}
.y29_c00286{bottom:579.840000pt;}
.y25_c00286{bottom:617.600000pt;}
.y24_c00286{bottom:618.240000pt;}
.y22_c00286{bottom:654.080000pt;}
.y23_c00286{bottom:654.720000pt;}
.y21_c00286{bottom:656.640000pt;}
.y20_c00286{bottom:657.280000pt;}
.y1f_c00286{bottom:666.880000pt;}
.y1b_c00286{bottom:691.840000pt;}
.y1e_c00286{bottom:692.480000pt;}
.y1d_c00286{bottom:694.400000pt;}
.y1c_c00286{bottom:695.040000pt;}
.y19_c00286{bottom:730.880000pt;}
.y18_c00286{bottom:732.800000pt;}
.y1a_c00286{bottom:733.440000pt;}
.y16_c00286{bottom:767.360000pt;}
.y13_c00286{bottom:768.640000pt;}
.y14_c00286{bottom:769.280000pt;}
.y17_c00286{bottom:770.560000pt;}
.y15_c00286{bottom:771.840000pt;}
.y12_c00286{bottom:806.400000pt;}
.ye_c00286{bottom:807.680000pt;}
.y11_c00286{bottom:808.960000pt;}
.yf_c00286{bottom:809.600000pt;}
.y10_c00286{bottom:810.240000pt;}
.yd_c00286{bottom:844.800000pt;}
.yb_c00286{bottom:845.440000pt;}
.yc_c00286{bottom:847.360000pt;}
.ya_c00286{bottom:848.000000pt;}
.y9_c00286{bottom:848.640000pt;}
.y8_c00286{bottom:894.720000pt;}
.y7_c00286{bottom:931.840000pt;}
.y6_c00286{bottom:932.480000pt;}
.y2_c00286{bottom:933.120000pt;}
.y5_c00286{bottom:933.760000pt;}
.y3_c00286{bottom:934.400000pt;}
.y4_c00286{bottom:935.040000pt;}
.y1_c00286{bottom:985.600000pt;}
.h11_c00286{height:16.126250pt;}
.ha_c00286{height:27.645000pt;}
.he_c00286{height:29.948750pt;}
.hc_c00286{height:32.252500pt;}
.h15_c00286{height:34.556250pt;}
.h6_c00286{height:36.860000pt;}
.hb_c00286{height:39.163750pt;}
.h3_c00286{height:41.467500pt;}
.h7_c00286{height:43.771250pt;}
.h5_c00286{height:46.075000pt;}
.h9_c00286{height:48.378750pt;}
.h4_c00286{height:50.682500pt;}
.h16_c00286{height:51.707500pt;}
.h8_c00286{height:52.986250pt;}
.h13_c00286{height:55.290000pt;}
.hf_c00286{height:57.593750pt;}
.h10_c00286{height:59.897500pt;}
.hd_c00286{height:62.201250pt;}
.h2_c00286{height:66.808750pt;}
.h12_c00286{height:76.023750pt;}
.h17_c00286{height:78.327500pt;}
.h14_c00286{height:96.757500pt;}
.h1_c00286{height:1034.666667pt;}
.h0_c00286{height:1034.880000pt;}
.w0_c00286{width:704.640000pt;}
.w1_c00286{width:704.666667pt;}
.x0_c00286{left:0.000000pt;}
.x2_c00286{left:72.320000pt;}
.x15_c00286{left:73.600000pt;}
.x35_c00286{left:74.880000pt;}
.x4b_c00286{left:76.800000pt;}
.x26_c00286{left:91.520000pt;}
.x4c_c00286{left:94.080000pt;}
.x20_c00286{left:101.760000pt;}
.x4f_c00286{left:103.040000pt;}
.x1b_c00286{left:109.440000pt;}
.x40_c00286{left:112.000000pt;}
.x3_c00286{left:120.320000pt;}
.x2c_c00286{left:124.800000pt;}
.x41_c00286{left:130.560000pt;}
.x16_c00286{left:139.520000pt;}
.x4_c00286{left:148.480000pt;}
.x3d_c00286{left:150.400000pt;}
.x42_c00286{left:158.080000pt;}
.xc_c00286{left:167.680000pt;}
.xd_c00286{left:168.960000pt;}
.x46_c00286{left:177.920000pt;}
.x53_c00286{left:188.160000pt;}
.xe_c00286{left:197.120000pt;}
.x17_c00286{left:206.080000pt;}
.x2d_c00286{left:215.040000pt;}
.x47_c00286{left:216.960000pt;}
.x43_c00286{left:224.640000pt;}
.xf_c00286{left:225.920000pt;}
.x1c_c00286{left:235.520000pt;}
.x3e_c00286{left:236.800000pt;}
.x2e_c00286{left:243.840000pt;}
.x21_c00286{left:245.120000pt;}
.x5_c00286{left:254.720000pt;}
.x50_c00286{left:256.000000pt;}
.x1d_c00286{left:264.320000pt;}
.x36_c00286{left:265.600000pt;}
.x27_c00286{left:273.280000pt;}
.x51_c00286{left:274.560000pt;}
.x4d_c00286{left:284.160000pt;}
.x39_c00286{left:291.840000pt;}
.x22_c00286{left:293.760000pt;}
.x2f_c00286{left:303.360000pt;}
.x6_c00286{left:312.960000pt;}
.x37_c00286{left:322.560000pt;}
.x44_c00286{left:332.800000pt;}
.x7_c00286{left:341.760000pt;}
.x10_c00286{left:351.360000pt;}
.x49_c00286{left:360.320000pt;}
.x3a_c00286{left:361.600000pt;}
.x32_c00286{left:371.200000pt;}
.x11_c00286{left:380.160000pt;}
.x1e_c00286{left:387.840000pt;}
.x28_c00286{left:389.760000pt;}
.x23_c00286{left:398.080000pt;}
.x33_c00286{left:399.360000pt;}
.x2b_c00286{left:409.600000pt;}
.x3b_c00286{left:410.880000pt;}
.x38_c00286{left:417.280000pt;}
.x12_c00286{left:418.560000pt;}
.x30_c00286{left:428.160000pt;}
.x45_c00286{left:437.760000pt;}
.x34_c00286{left:447.360000pt;}
.x18_c00286{left:456.960000pt;}
.x8_c00286{left:466.560000pt;}
.x24_c00286{left:475.520000pt;}
.x29_c00286{left:486.400000pt;}
.x4a_c00286{left:494.080000pt;}
.x19_c00286{left:495.360000pt;}
.x1f_c00286{left:504.960000pt;}
.x13_c00286{left:514.560000pt;}
.x25_c00286{left:524.160000pt;}
.x14_c00286{left:533.760000pt;}
.x3f_c00286{left:543.360000pt;}
.x31_c00286{left:552.960000pt;}
.x9_c00286{left:561.920000pt;}
.x48_c00286{left:572.160000pt;}
.x3c_c00286{left:574.080000pt;}
.xa_c00286{left:581.120000pt;}
.x52_c00286{left:592.000000pt;}
.x4e_c00286{left:599.040000pt;}
.x2a_c00286{left:600.320000pt;}
.xb_c00286{left:609.920000pt;}
.x1_c00286{left:618.240000pt;}
.x1a_c00286{left:619.520000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b56b78932370380d0be0e17f.woff2')format("woff");}.ff1_c00287{font-family:ff1_c00287;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5f_c00287{transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);}
.m33_c00287{transform:matrix(0.154575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154575,0.000000,0.000000,0.250000,0,0);}
.m56_c00287{transform:matrix(0.165600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165600,0.000000,0.000000,0.250000,0,0);}
.m3a_c00287{transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);}
.m45_c00287{transform:matrix(0.185150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185150,0.000000,0.000000,0.250000,0,0);}
.m4d_c00287{transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);}
.m57_c00287{transform:matrix(0.214800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214800,0.000000,0.000000,0.250000,0,0);}
.m62_c00287{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m34_c00287{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m58_c00287{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);}
.m3c_c00287{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);}
.m3f_c00287{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);}
.m4e_c00287{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00287{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00287{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);}
.m48_c00287{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00287{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);}
.m38_c00287{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);}
.m46_c00287{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);}
.m4f_c00287{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00287{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00287{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00287{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m50_c00287{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m71_c00287{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m39_c00287{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m35_c00287{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00287{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m26_c00287{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m49_c00287{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m66_c00287{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m37_c00287{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.ma_c00287{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m47_c00287{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m0_c00287{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m22_c00287{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m51_c00287{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m17_c00287{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m36_c00287{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m63_c00287{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00287{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_c00287{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.md_c00287{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m19_c00287{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);}
.m9_c00287{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00287{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00287{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00287{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);}
.m67_c00287{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m6_c00287{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m32_c00287{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);}
.m29_c00287{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m3_c00287{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);}
.m11_c00287{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);}
.m27_c00287{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00287{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m61_c00287{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m13_c00287{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);}
.m64_c00287{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m31_c00287{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);}
.m2a_c00287{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m4_c00287{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m60_c00287{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m72_c00287{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);}
.m69_c00287{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m12_c00287{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m1_c00287{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);}
.m59_c00287{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m20_c00287{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);}
.m5_c00287{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m8_c00287{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m21_c00287{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00287{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);}
.m24_c00287{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m65_c00287{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m16_c00287{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);}
.mc_c00287{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00287{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m10_c00287{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00287{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);}
.m6c_c00287{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);}
.mf_c00287{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00287{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00287{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m15_c00287{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);}
.m14_c00287{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m70_c00287{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m68_c00287{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);}
.m6f_c00287{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.mb_c00287{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);}
.m2b_c00287{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m18_c00287{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);}
.me_c00287{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m73_c00287{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m2_c00287{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m23_c00287{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);}
.m6e_c00287{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);}
.m30_c00287{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00287{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);}
.m25_c00287{transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);}
.m43_c00287{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00287{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m7_c00287{transform:matrix(0.712500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.712500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.712500,0.000000,0.000000,0.250000,0,0);}
.m54_c00287{transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);}
.m41_c00287{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);}
.m55_c00287{transform:matrix(1.012500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.012500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.012500,0.000000,0.000000,0.250000,0,0);}
.m52_c00287{transform:matrix(1.052500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.052500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.052500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00287{transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00287{transform:matrix(1.095000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.095000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.095000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00287{transform:matrix(1.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.105000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00287{transform:matrix(1.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.220000,0.000000,0.000000,0.250000,0,0);}
.m53_c00287{transform:matrix(1.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.345000,0.000000,0.000000,0.250000,0,0);}
.m44_c00287{transform:matrix(1.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.365000,0.000000,0.000000,0.250000,0,0);}
.m40_c00287{transform:matrix(1.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.377500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00287{transform:matrix(1.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.435000,0.000000,0.000000,0.250000,0,0);}
.m42_c00287{transform:matrix(2.425000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.425000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.425000,0.000000,0.000000,0.250000,0,0);}
.v1_c00287{vertical-align:-2.880000px;}
.v0_c00287{vertical-align:0.000000px;}
.ls0_c00287{letter-spacing:0.000000px;}
.sc__c00287{text-shadow:none;}
.sc0_c00287{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00287{-webkit-text-stroke:0px transparent;}
.sc0_c00287{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00287{word-spacing:0.000000px;}
.ws0_c00287{word-spacing:352.628400px;}
.fc0_c00287{color:transparent;}
.fsd_c00287{font-size:17.280000px;}
.fsf_c00287{font-size:20.160000px;}
.fse_c00287{font-size:23.040000px;}
.fs10_c00287{font-size:25.920000px;}
.fs13_c00287{font-size:31.680000px;}
.fs8_c00287{font-size:34.560000px;}
.fs2_c00287{font-size:37.440000px;}
.fs7_c00287{font-size:40.320000px;}
.fs14_c00287{font-size:43.200000px;}
.fs11_c00287{font-size:46.080000px;}
.fs4_c00287{font-size:48.960000px;}
.fs5_c00287{font-size:51.840000px;}
.fs6_c00287{font-size:54.720000px;}
.fs1_c00287{font-size:57.600000px;}
.fs9_c00287{font-size:60.480000px;}
.fs3_c00287{font-size:63.360000px;}
.fsb_c00287{font-size:66.240000px;}
.fsa_c00287{font-size:69.120000px;}
.fs12_c00287{font-size:72.000000px;}
.fs0_c00287{font-size:74.880000px;}
.fsc_c00287{font-size:86.400000px;}
.y0_c00287{bottom:0.000000px;}
.y77_c00287{bottom:57.600000px;}
.y78_c00287{bottom:59.760000px;}
.y76_c00287{bottom:60.480000px;}
.y79_c00287{bottom:61.200000px;}
.y7a_c00287{bottom:61.920000px;}
.y75_c00287{bottom:65.520000px;}
.y72_c00287{bottom:101.520000px;}
.y70_c00287{bottom:102.960000px;}
.y71_c00287{bottom:103.680000px;}
.y73_c00287{bottom:104.400000px;}
.y74_c00287{bottom:105.840000px;}
.y6f_c00287{bottom:107.280000px;}
.y6e_c00287{bottom:108.000000px;}
.y6a_c00287{bottom:146.160000px;}
.y69_c00287{bottom:146.880000px;}
.y6b_c00287{bottom:147.600000px;}
.y6c_c00287{bottom:148.320000px;}
.y6d_c00287{bottom:149.040000px;}
.y68_c00287{bottom:150.480000px;}
.y67_c00287{bottom:189.360000px;}
.y64_c00287{bottom:190.080000px;}
.y65_c00287{bottom:190.800000px;}
.y66_c00287{bottom:191.520000px;}
.y63_c00287{bottom:192.240000px;}
.y62_c00287{bottom:192.960000px;}
.y61_c00287{bottom:233.280000px;}
.y5f_c00287{bottom:234.000000px;}
.y60_c00287{bottom:234.720000px;}
.y5e_c00287{bottom:235.440000px;}
.y5d_c00287{bottom:297.360000px;}
.y5c_c00287{bottom:298.080000px;}
.y5b_c00287{bottom:303.120000px;}
.y5a_c00287{bottom:321.840000px;}
.y56_c00287{bottom:341.280000px;}
.y55_c00287{bottom:343.440000px;}
.y58_c00287{bottom:352.080000px;}
.y59_c00287{bottom:352.800000px;}
.y57_c00287{bottom:354.240000px;}
.y53_c00287{bottom:354.960000px;}
.y52_c00287{bottom:361.440000px;}
.y54_c00287{bottom:375.120000px;}
.y51_c00287{bottom:399.600000px;}
.y50_c00287{bottom:401.760000px;}
.y4f_c00287{bottom:403.920000px;}
.y4d_c00287{bottom:416.880000px;}
.y4a_c00287{bottom:418.320000px;}
.y4b_c00287{bottom:420.480000px;}
.y4c_c00287{bottom:427.680000px;}
.y4e_c00287{bottom:429.120000px;}
.y49_c00287{bottom:429.840000px;}
.y47_c00287{bottom:434.880000px;}
.y48_c00287{bottom:451.440000px;}
.y46_c00287{bottom:474.480000px;}
.y45_c00287{bottom:475.200000px;}
.y44_c00287{bottom:477.360000px;}
.y41_c00287{bottom:493.920000px;}
.y42_c00287{bottom:502.560000px;}
.y43_c00287{bottom:503.280000px;}
.y40_c00287{bottom:506.880000px;}
.y3e_c00287{bottom:508.320000px;}
.y3f_c00287{bottom:527.040000px;}
.y3d_c00287{bottom:550.080000px;}
.y3c_c00287{bottom:550.800000px;}
.y3b_c00287{bottom:552.240000px;}
.y39_c00287{bottom:567.360000px;}
.y3a_c00287{bottom:578.880000px;}
.y37_c00287{bottom:579.600000px;}
.y36_c00287{bottom:582.480000px;}
.y38_c00287{bottom:599.760000px;}
.y35_c00287{bottom:624.960000px;}
.y34_c00287{bottom:625.680000px;}
.y33_c00287{bottom:626.400000px;}
.y2f_c00287{bottom:637.200000px;}
.y2e_c00287{bottom:642.960000px;}
.y32_c00287{bottom:653.040000px;}
.y30_c00287{bottom:653.760000px;}
.y31_c00287{bottom:655.200000px;}
.y2d_c00287{bottom:655.920000px;}
.y2c_c00287{bottom:656.640000px;}
.y2b_c00287{bottom:674.640000px;}
.y29_c00287{bottom:707.040000px;}
.y2a_c00287{bottom:707.760000px;}
.y26_c00287{bottom:727.920000px;}
.y28_c00287{bottom:728.640000px;}
.y25_c00287{bottom:729.360000px;}
.y27_c00287{bottom:730.080000px;}
.y24_c00287{bottom:752.400000px;}
.y23_c00287{bottom:753.120000px;}
.y1c_c00287{bottom:783.360000px;}
.y22_c00287{bottom:784.080000px;}
.y1e_c00287{bottom:784.800000px;}
.y1d_c00287{bottom:785.520000px;}
.y21_c00287{bottom:786.240000px;}
.y1f_c00287{bottom:796.320000px;}
.y20_c00287{bottom:797.040000px;}
.y19_c00287{bottom:824.400000px;}
.y1b_c00287{bottom:825.840000px;}
.y18_c00287{bottom:827.280000px;}
.y1a_c00287{bottom:828.720000px;}
.y14_c00287{bottom:868.320000px;}
.y16_c00287{bottom:869.040000px;}
.y17_c00287{bottom:870.480000px;}
.y15_c00287{bottom:871.200000px;}
.y13_c00287{bottom:913.680000px;}
.y12_c00287{bottom:914.400000px;}
.y10_c00287{bottom:915.120000px;}
.y11_c00287{bottom:915.840000px;}
.yd_c00287{bottom:966.960000px;}
.yf_c00287{bottom:968.400000px;}
.ye_c00287{bottom:969.840000px;}
.yc_c00287{bottom:1008.000000px;}
.y8_c00287{bottom:1010.880000px;}
.y9_c00287{bottom:1011.600000px;}
.ya_c00287{bottom:1012.320000px;}
.yb_c00287{bottom:1013.040000px;}
.y7_c00287{bottom:1044.000000px;}
.y4_c00287{bottom:1052.640000px;}
.y2_c00287{bottom:1053.360000px;}
.y6_c00287{bottom:1054.080000px;}
.y5_c00287{bottom:1054.800000px;}
.y3_c00287{bottom:1055.520000px;}
.y1_c00287{bottom:1097.280000px;}
.hf_c00287{height:15.550313px;}
.h11_c00287{height:18.142031px;}
.h10_c00287{height:20.733750px;}
.h12_c00287{height:23.325469px;}
.h15_c00287{height:28.508906px;}
.ha_c00287{height:31.100625px;}
.h4_c00287{height:33.692344px;}
.h9_c00287{height:36.284062px;}
.h16_c00287{height:38.875781px;}
.h13_c00287{height:41.467500px;}
.h6_c00287{height:44.059219px;}
.h7_c00287{height:46.650937px;}
.h8_c00287{height:49.242656px;}
.h3_c00287{height:51.834375px;}
.hb_c00287{height:54.426094px;}
.h5_c00287{height:57.017812px;}
.hd_c00287{height:59.609531px;}
.hc_c00287{height:62.201250px;}
.h14_c00287{height:64.792969px;}
.h2_c00287{height:67.384687px;}
.he_c00287{height:77.751563px;}
.h0_c00287{height:1157.760000px;}
.h1_c00287{height:1158.000000px;}
.w0_c00287{width:799.200000px;}
.w1_c00287{width:799.500000px;}
.x0_c00287{left:0.000000px;}
.x31_c00287{left:12.960000px;}
.x36_c00287{left:14.400000px;}
.x3f_c00287{left:17.280000px;}
.x44_c00287{left:18.720000px;}
.x49_c00287{left:20.160000px;}
.x32_c00287{left:41.040000px;}
.x3c_c00287{left:42.480000px;}
.x48_c00287{left:44.640000px;}
.x4c_c00287{left:46.080000px;}
.x4d_c00287{left:47.520000px;}
.x37_c00287{left:49.680000px;}
.x45_c00287{left:53.280000px;}
.x3d_c00287{left:58.320000px;}
.x40_c00287{left:59.760000px;}
.x39_c00287{left:66.960000px;}
.x3a_c00287{left:75.600000px;}
.x2f_c00287{left:84.960000px;}
.x35_c00287{left:86.400000px;}
.x46_c00287{left:87.840000px;}
.x2_c00287{left:93.600000px;}
.x21_c00287{left:95.040000px;}
.x55_c00287{left:97.920000px;}
.x68_c00287{left:99.360000px;}
.x47_c00287{left:117.360000px;}
.x22_c00287{left:125.280000px;}
.x5b_c00287{left:126.720000px;}
.x5f_c00287{left:128.880000px;}
.x3e_c00287{left:136.080000px;}
.x23_c00287{left:147.600000px;}
.x60_c00287{left:149.040000px;}
.xd_c00287{left:156.960000px;}
.x4e_c00287{left:158.400000px;}
.x14_c00287{left:168.480000px;}
.x4a_c00287{left:169.920000px;}
.x3b_c00287{left:177.840000px;}
.x41_c00287{left:179.280000px;}
.x15_c00287{left:180.720000px;}
.x3_c00287{left:189.360000px;}
.x26_c00287{left:190.800000px;}
.x16_c00287{left:201.600000px;}
.x24_c00287{left:211.680000px;}
.x27_c00287{left:213.840000px;}
.x30_c00287{left:221.040000px;}
.x1b_c00287{left:222.480000px;}
.x4_c00287{left:223.920000px;}
.x50_c00287{left:233.280000px;}
.x56_c00287{left:244.080000px;}
.x4b_c00287{left:246.240000px;}
.xe_c00287{left:254.880000px;}
.x61_c00287{left:265.680000px;}
.x5_c00287{left:277.200000px;}
.xf_c00287{left:287.280000px;}
.x4f_c00287{left:300.240000px;}
.x17_c00287{left:308.880000px;}
.x1c_c00287{left:319.680000px;}
.x38_c00287{left:321.840000px;}
.x42_c00287{left:332.640000px;}
.x51_c00287{left:342.000000px;}
.x5c_c00287{left:352.800000px;}
.x62_c00287{left:362.880000px;}
.x1d_c00287{left:373.680000px;}
.x57_c00287{left:385.920000px;}
.x2a_c00287{left:394.560000px;}
.x33_c00287{left:396.720000px;}
.x10_c00287{left:406.800000px;}
.x2b_c00287{left:419.040000px;}
.x63_c00287{left:427.680000px;}
.x52_c00287{left:429.120000px;}
.x11_c00287{left:438.480000px;}
.x6_c00287{left:450.000000px;}
.x1e_c00287{left:460.080000px;}
.x53_c00287{left:461.520000px;}
.x7_c00287{left:470.880000px;}
.x25_c00287{left:483.120000px;}
.x2c_c00287{left:492.480000px;}
.x34_c00287{left:493.920000px;}
.x28_c00287{left:504.720000px;}
.x2d_c00287{left:515.520000px;}
.x54_c00287{left:525.600000px;}
.x5d_c00287{left:527.760000px;}
.x58_c00287{left:536.400000px;}
.x8_c00287{left:546.480000px;}
.x12_c00287{left:548.640000px;}
.x64_c00287{left:558.000000px;}
.x59_c00287{left:568.080000px;}
.x9_c00287{left:577.440000px;}
.x18_c00287{left:578.880000px;}
.x2e_c00287{left:589.680000px;}
.x5e_c00287{left:592.560000px;}
.x43_c00287{left:600.480000px;}
.x29_c00287{left:601.920000px;}
.x19_c00287{left:611.280000px;}
.x65_c00287{left:622.080000px;}
.x1f_c00287{left:623.520000px;}
.x5a_c00287{left:632.880000px;}
.xa_c00287{left:643.680000px;}
.x66_c00287{left:645.120000px;}
.x13_c00287{left:665.280000px;}
.xb_c00287{left:676.080000px;}
.x1a_c00287{left:686.880000px;}
.xc_c00287{left:696.960000px;}
.x20_c00287{left:699.120000px;}
.x1_c00287{left:712.080000px;}
.x67_c00287{left:720.720000px;}
@media print{
.v1_c00287{vertical-align:-2.560000pt;}
.v0_c00287{vertical-align:0.000000pt;}
.ls0_c00287{letter-spacing:0.000000pt;}
.ws1_c00287{word-spacing:0.000000pt;}
.ws0_c00287{word-spacing:313.447467pt;}
.fsd_c00287{font-size:15.360000pt;}
.fsf_c00287{font-size:17.920000pt;}
.fse_c00287{font-size:20.480000pt;}
.fs10_c00287{font-size:23.040000pt;}
.fs13_c00287{font-size:28.160000pt;}
.fs8_c00287{font-size:30.720000pt;}
.fs2_c00287{font-size:33.280000pt;}
.fs7_c00287{font-size:35.840000pt;}
.fs14_c00287{font-size:38.400000pt;}
.fs11_c00287{font-size:40.960000pt;}
.fs4_c00287{font-size:43.520000pt;}
.fs5_c00287{font-size:46.080000pt;}
.fs6_c00287{font-size:48.640000pt;}
.fs1_c00287{font-size:51.200000pt;}
.fs9_c00287{font-size:53.760000pt;}
.fs3_c00287{font-size:56.320000pt;}
.fsb_c00287{font-size:58.880000pt;}
.fsa_c00287{font-size:61.440000pt;}
.fs12_c00287{font-size:64.000000pt;}
.fs0_c00287{font-size:66.560000pt;}
.fsc_c00287{font-size:76.800000pt;}
.y0_c00287{bottom:0.000000pt;}
.y77_c00287{bottom:51.200000pt;}
.y78_c00287{bottom:53.120000pt;}
.y76_c00287{bottom:53.760000pt;}
.y79_c00287{bottom:54.400000pt;}
.y7a_c00287{bottom:55.040000pt;}
.y75_c00287{bottom:58.240000pt;}
.y72_c00287{bottom:90.240000pt;}
.y70_c00287{bottom:91.520000pt;}
.y71_c00287{bottom:92.160000pt;}
.y73_c00287{bottom:92.800000pt;}
.y74_c00287{bottom:94.080000pt;}
.y6f_c00287{bottom:95.360000pt;}
.y6e_c00287{bottom:96.000000pt;}
.y6a_c00287{bottom:129.920000pt;}
.y69_c00287{bottom:130.560000pt;}
.y6b_c00287{bottom:131.200000pt;}
.y6c_c00287{bottom:131.840000pt;}
.y6d_c00287{bottom:132.480000pt;}
.y68_c00287{bottom:133.760000pt;}
.y67_c00287{bottom:168.320000pt;}
.y64_c00287{bottom:168.960000pt;}
.y65_c00287{bottom:169.600000pt;}
.y66_c00287{bottom:170.240000pt;}
.y63_c00287{bottom:170.880000pt;}
.y62_c00287{bottom:171.520000pt;}
.y61_c00287{bottom:207.360000pt;}
.y5f_c00287{bottom:208.000000pt;}
.y60_c00287{bottom:208.640000pt;}
.y5e_c00287{bottom:209.280000pt;}
.y5d_c00287{bottom:264.320000pt;}
.y5c_c00287{bottom:264.960000pt;}
.y5b_c00287{bottom:269.440000pt;}
.y5a_c00287{bottom:286.080000pt;}
.y56_c00287{bottom:303.360000pt;}
.y55_c00287{bottom:305.280000pt;}
.y58_c00287{bottom:312.960000pt;}
.y59_c00287{bottom:313.600000pt;}
.y57_c00287{bottom:314.880000pt;}
.y53_c00287{bottom:315.520000pt;}
.y52_c00287{bottom:321.280000pt;}
.y54_c00287{bottom:333.440000pt;}
.y51_c00287{bottom:355.200000pt;}
.y50_c00287{bottom:357.120000pt;}
.y4f_c00287{bottom:359.040000pt;}
.y4d_c00287{bottom:370.560000pt;}
.y4a_c00287{bottom:371.840000pt;}
.y4b_c00287{bottom:373.760000pt;}
.y4c_c00287{bottom:380.160000pt;}
.y4e_c00287{bottom:381.440000pt;}
.y49_c00287{bottom:382.080000pt;}
.y47_c00287{bottom:386.560000pt;}
.y48_c00287{bottom:401.280000pt;}
.y46_c00287{bottom:421.760000pt;}
.y45_c00287{bottom:422.400000pt;}
.y44_c00287{bottom:424.320000pt;}
.y41_c00287{bottom:439.040000pt;}
.y42_c00287{bottom:446.720000pt;}
.y43_c00287{bottom:447.360000pt;}
.y40_c00287{bottom:450.560000pt;}
.y3e_c00287{bottom:451.840000pt;}
.y3f_c00287{bottom:468.480000pt;}
.y3d_c00287{bottom:488.960000pt;}
.y3c_c00287{bottom:489.600000pt;}
.y3b_c00287{bottom:490.880000pt;}
.y39_c00287{bottom:504.320000pt;}
.y3a_c00287{bottom:514.560000pt;}
.y37_c00287{bottom:515.200000pt;}
.y36_c00287{bottom:517.760000pt;}
.y38_c00287{bottom:533.120000pt;}
.y35_c00287{bottom:555.520000pt;}
.y34_c00287{bottom:556.160000pt;}
.y33_c00287{bottom:556.800000pt;}
.y2f_c00287{bottom:566.400000pt;}
.y2e_c00287{bottom:571.520000pt;}
.y32_c00287{bottom:580.480000pt;}
.y30_c00287{bottom:581.120000pt;}
.y31_c00287{bottom:582.400000pt;}
.y2d_c00287{bottom:583.040000pt;}
.y2c_c00287{bottom:583.680000pt;}
.y2b_c00287{bottom:599.680000pt;}
.y29_c00287{bottom:628.480000pt;}
.y2a_c00287{bottom:629.120000pt;}
.y26_c00287{bottom:647.040000pt;}
.y28_c00287{bottom:647.680000pt;}
.y25_c00287{bottom:648.320000pt;}
.y27_c00287{bottom:648.960000pt;}
.y24_c00287{bottom:668.800000pt;}
.y23_c00287{bottom:669.440000pt;}
.y1c_c00287{bottom:696.320000pt;}
.y22_c00287{bottom:696.960000pt;}
.y1e_c00287{bottom:697.600000pt;}
.y1d_c00287{bottom:698.240000pt;}
.y21_c00287{bottom:698.880000pt;}
.y1f_c00287{bottom:707.840000pt;}
.y20_c00287{bottom:708.480000pt;}
.y19_c00287{bottom:732.800000pt;}
.y1b_c00287{bottom:734.080000pt;}
.y18_c00287{bottom:735.360000pt;}
.y1a_c00287{bottom:736.640000pt;}
.y14_c00287{bottom:771.840000pt;}
.y16_c00287{bottom:772.480000pt;}
.y17_c00287{bottom:773.760000pt;}
.y15_c00287{bottom:774.400000pt;}
.y13_c00287{bottom:812.160000pt;}
.y12_c00287{bottom:812.800000pt;}
.y10_c00287{bottom:813.440000pt;}
.y11_c00287{bottom:814.080000pt;}
.yd_c00287{bottom:859.520000pt;}
.yf_c00287{bottom:860.800000pt;}
.ye_c00287{bottom:862.080000pt;}
.yc_c00287{bottom:896.000000pt;}
.y8_c00287{bottom:898.560000pt;}
.y9_c00287{bottom:899.200000pt;}
.ya_c00287{bottom:899.840000pt;}
.yb_c00287{bottom:900.480000pt;}
.y7_c00287{bottom:928.000000pt;}
.y4_c00287{bottom:935.680000pt;}
.y2_c00287{bottom:936.320000pt;}
.y6_c00287{bottom:936.960000pt;}
.y5_c00287{bottom:937.600000pt;}
.y3_c00287{bottom:938.240000pt;}
.y1_c00287{bottom:975.360000pt;}
.hf_c00287{height:13.822500pt;}
.h11_c00287{height:16.126250pt;}
.h10_c00287{height:18.430000pt;}
.h12_c00287{height:20.733750pt;}
.h15_c00287{height:25.341250pt;}
.ha_c00287{height:27.645000pt;}
.h4_c00287{height:29.948750pt;}
.h9_c00287{height:32.252500pt;}
.h16_c00287{height:34.556250pt;}
.h13_c00287{height:36.860000pt;}
.h6_c00287{height:39.163750pt;}
.h7_c00287{height:41.467500pt;}
.h8_c00287{height:43.771250pt;}
.h3_c00287{height:46.075000pt;}
.hb_c00287{height:48.378750pt;}
.h5_c00287{height:50.682500pt;}
.hd_c00287{height:52.986250pt;}
.hc_c00287{height:55.290000pt;}
.h14_c00287{height:57.593750pt;}
.h2_c00287{height:59.897500pt;}
.he_c00287{height:69.112500pt;}
.h0_c00287{height:1029.120000pt;}
.h1_c00287{height:1029.333333pt;}
.w0_c00287{width:710.400000pt;}
.w1_c00287{width:710.666667pt;}
.x0_c00287{left:0.000000pt;}
.x31_c00287{left:11.520000pt;}
.x36_c00287{left:12.800000pt;}
.x3f_c00287{left:15.360000pt;}
.x44_c00287{left:16.640000pt;}
.x49_c00287{left:17.920000pt;}
.x32_c00287{left:36.480000pt;}
.x3c_c00287{left:37.760000pt;}
.x48_c00287{left:39.680000pt;}
.x4c_c00287{left:40.960000pt;}
.x4d_c00287{left:42.240000pt;}
.x37_c00287{left:44.160000pt;}
.x45_c00287{left:47.360000pt;}
.x3d_c00287{left:51.840000pt;}
.x40_c00287{left:53.120000pt;}
.x39_c00287{left:59.520000pt;}
.x3a_c00287{left:67.200000pt;}
.x2f_c00287{left:75.520000pt;}
.x35_c00287{left:76.800000pt;}
.x46_c00287{left:78.080000pt;}
.x2_c00287{left:83.200000pt;}
.x21_c00287{left:84.480000pt;}
.x55_c00287{left:87.040000pt;}
.x68_c00287{left:88.320000pt;}
.x47_c00287{left:104.320000pt;}
.x22_c00287{left:111.360000pt;}
.x5b_c00287{left:112.640000pt;}
.x5f_c00287{left:114.560000pt;}
.x3e_c00287{left:120.960000pt;}
.x23_c00287{left:131.200000pt;}
.x60_c00287{left:132.480000pt;}
.xd_c00287{left:139.520000pt;}
.x4e_c00287{left:140.800000pt;}
.x14_c00287{left:149.760000pt;}
.x4a_c00287{left:151.040000pt;}
.x3b_c00287{left:158.080000pt;}
.x41_c00287{left:159.360000pt;}
.x15_c00287{left:160.640000pt;}
.x3_c00287{left:168.320000pt;}
.x26_c00287{left:169.600000pt;}
.x16_c00287{left:179.200000pt;}
.x24_c00287{left:188.160000pt;}
.x27_c00287{left:190.080000pt;}
.x30_c00287{left:196.480000pt;}
.x1b_c00287{left:197.760000pt;}
.x4_c00287{left:199.040000pt;}
.x50_c00287{left:207.360000pt;}
.x56_c00287{left:216.960000pt;}
.x4b_c00287{left:218.880000pt;}
.xe_c00287{left:226.560000pt;}
.x61_c00287{left:236.160000pt;}
.x5_c00287{left:246.400000pt;}
.xf_c00287{left:255.360000pt;}
.x4f_c00287{left:266.880000pt;}
.x17_c00287{left:274.560000pt;}
.x1c_c00287{left:284.160000pt;}
.x38_c00287{left:286.080000pt;}
.x42_c00287{left:295.680000pt;}
.x51_c00287{left:304.000000pt;}
.x5c_c00287{left:313.600000pt;}
.x62_c00287{left:322.560000pt;}
.x1d_c00287{left:332.160000pt;}
.x57_c00287{left:343.040000pt;}
.x2a_c00287{left:350.720000pt;}
.x33_c00287{left:352.640000pt;}
.x10_c00287{left:361.600000pt;}
.x2b_c00287{left:372.480000pt;}
.x63_c00287{left:380.160000pt;}
.x52_c00287{left:381.440000pt;}
.x11_c00287{left:389.760000pt;}
.x6_c00287{left:400.000000pt;}
.x1e_c00287{left:408.960000pt;}
.x53_c00287{left:410.240000pt;}
.x7_c00287{left:418.560000pt;}
.x25_c00287{left:429.440000pt;}
.x2c_c00287{left:437.760000pt;}
.x34_c00287{left:439.040000pt;}
.x28_c00287{left:448.640000pt;}
.x2d_c00287{left:458.240000pt;}
.x54_c00287{left:467.200000pt;}
.x5d_c00287{left:469.120000pt;}
.x58_c00287{left:476.800000pt;}
.x8_c00287{left:485.760000pt;}
.x12_c00287{left:487.680000pt;}
.x64_c00287{left:496.000000pt;}
.x59_c00287{left:504.960000pt;}
.x9_c00287{left:513.280000pt;}
.x18_c00287{left:514.560000pt;}
.x2e_c00287{left:524.160000pt;}
.x5e_c00287{left:526.720000pt;}
.x43_c00287{left:533.760000pt;}
.x29_c00287{left:535.040000pt;}
.x19_c00287{left:543.360000pt;}
.x65_c00287{left:552.960000pt;}
.x1f_c00287{left:554.240000pt;}
.x5a_c00287{left:562.560000pt;}
.xa_c00287{left:572.160000pt;}
.x66_c00287{left:573.440000pt;}
.x13_c00287{left:591.360000pt;}
.xb_c00287{left:600.960000pt;}
.x1a_c00287{left:610.560000pt;}
.xc_c00287{left:619.520000pt;}
.x20_c00287{left:621.440000pt;}
.x1_c00287{left:632.960000pt;}
.x67_c00287{left:640.640000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6398415df8253cdc35d3d6c7.woff2')format("woff");}.ff1_c00288{font-family:ff1_c00288;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5b_c00288{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1_c00288{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m0_c00288{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m51_c00288{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m34_c00288{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m11_c00288{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00288{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m27_c00288{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00288{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m19_c00288{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m13_c00288{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00288{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00288{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m4_c00288{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m43_c00288{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00288{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m56_c00288{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m42_c00288{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);}
.m31_c00288{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00288{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m45_c00288{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m22_c00288{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m44_c00288{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00288{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m33_c00288{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m55_c00288{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m16_c00288{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m50_c00288{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m20_c00288{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m9_c00288{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);}
.m2c_c00288{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m10_c00288{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);}
.m29_c00288{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00288{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);}
.me_c00288{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00288{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);}
.m3e_c00288{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);}
.m12_c00288{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);}
.m48_c00288{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m47_c00288{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m3_c00288{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m24_c00288{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m7_c00288{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);}
.m25_c00288{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m28_c00288{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_c00288{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);}
.m5_c00288{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00288{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00288{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m15_c00288{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m6_c00288{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);}
.mf_c00288{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00288{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00288{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);}
.m23_c00288{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m58_c00288{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);}
.m4c_c00288{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m26_c00288{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00288{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m2_c00288{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);}
.m8_c00288{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00288{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m41_c00288{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);}
.m3d_c00288{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m54_c00288{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m30_c00288{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00288{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00288{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);}
.mc_c00288{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.md_c00288{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00288{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00288{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);}
.m18_c00288{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m46_c00288{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m21_c00288{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);}
.m14_c00288{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m53_c00288{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m36_c00288{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m32_c00288{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.mb_c00288{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);}
.m5c_c00288{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00288{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);}
.m40_c00288{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m39_c00288{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);}
.m59_c00288{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m52_c00288{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.ma_c00288{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00288{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m35_c00288{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m49_c00288{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m57_c00288{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m37_c00288{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m38_c00288{transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);}
.v1_c00288{vertical-align:-2.880000px;}
.v0_c00288{vertical-align:0.000000px;}
.ls0_c00288{letter-spacing:0.000000px;}
.sc__c00288{text-shadow:none;}
.sc0_c00288{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00288{-webkit-text-stroke:0px transparent;}
.sc0_c00288{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00288{word-spacing:-3.758640px;}
.ws1_c00288{word-spacing:0.000000px;}
.fc0_c00288{color:transparent;}
.fs7_c00288{font-size:34.560000px;}
.fs9_c00288{font-size:37.440000px;}
.fs5_c00288{font-size:40.320000px;}
.fse_c00288{font-size:43.200000px;}
.fsc_c00288{font-size:46.080000px;}
.fs3_c00288{font-size:48.960000px;}
.fs1_c00288{font-size:51.840000px;}
.fs2_c00288{font-size:54.720000px;}
.fs6_c00288{font-size:57.600000px;}
.fs4_c00288{font-size:60.480000px;}
.fsb_c00288{font-size:63.360000px;}
.fsa_c00288{font-size:66.240000px;}
.fsd_c00288{font-size:69.120000px;}
.fs8_c00288{font-size:72.000000px;}
.fs0_c00288{font-size:77.760000px;}
.y0_c00288{bottom:0.000000px;}
.y64_c00288{bottom:80.640000px;}
.y63_c00288{bottom:81.360000px;}
.y65_c00288{bottom:82.080000px;}
.y66_c00288{bottom:82.800000px;}
.y67_c00288{bottom:83.520000px;}
.y69_c00288{bottom:84.240000px;}
.y68_c00288{bottom:84.960000px;}
.y5f_c00288{bottom:121.680000px;}
.y60_c00288{bottom:123.120000px;}
.y5e_c00288{bottom:125.280000px;}
.y61_c00288{bottom:126.000000px;}
.y62_c00288{bottom:127.440000px;}
.y5d_c00288{bottom:170.640000px;}
.y5a_c00288{bottom:210.240000px;}
.y5c_c00288{bottom:210.960000px;}
.y5b_c00288{bottom:211.680000px;}
.y59_c00288{bottom:213.840000px;}
.y56_c00288{bottom:252.720000px;}
.y58_c00288{bottom:253.440000px;}
.y55_c00288{bottom:254.160000px;}
.y54_c00288{bottom:254.880000px;}
.y53_c00288{bottom:255.600000px;}
.y57_c00288{bottom:256.320000px;}
.y52_c00288{bottom:257.040000px;}
.y4d_c00288{bottom:295.200000px;}
.y50_c00288{bottom:295.920000px;}
.y4f_c00288{bottom:296.640000px;}
.y4e_c00288{bottom:297.360000px;}
.y4c_c00288{bottom:298.800000px;}
.y51_c00288{bottom:299.520000px;}
.y4b_c00288{bottom:300.240000px;}
.y48_c00288{bottom:338.400000px;}
.y46_c00288{bottom:339.120000px;}
.y4a_c00288{bottom:339.840000px;}
.y45_c00288{bottom:340.560000px;}
.y47_c00288{bottom:341.280000px;}
.y49_c00288{bottom:342.000000px;}
.y43_c00288{bottom:381.600000px;}
.y44_c00288{bottom:382.320000px;}
.y41_c00288{bottom:383.760000px;}
.y42_c00288{bottom:384.480000px;}
.y40_c00288{bottom:385.200000px;}
.y3f_c00288{bottom:385.920000px;}
.y3b_c00288{bottom:424.080000px;}
.y3d_c00288{bottom:424.800000px;}
.y3a_c00288{bottom:425.520000px;}
.y3e_c00288{bottom:426.960000px;}
.y3c_c00288{bottom:427.680000px;}
.y39_c00288{bottom:429.120000px;}
.y37_c00288{bottom:468.720000px;}
.y36_c00288{bottom:470.160000px;}
.y35_c00288{bottom:470.880000px;}
.y38_c00288{bottom:471.600000px;}
.y34_c00288{bottom:472.320000px;}
.y31_c00288{bottom:511.200000px;}
.y30_c00288{bottom:511.920000px;}
.y32_c00288{bottom:513.360000px;}
.y33_c00288{bottom:514.080000px;}
.y2f_c00288{bottom:514.800000px;}
.y2e_c00288{bottom:554.400000px;}
.y2c_c00288{bottom:555.120000px;}
.y2d_c00288{bottom:557.280000px;}
.y2b_c00288{bottom:558.000000px;}
.y2a_c00288{bottom:611.280000px;}
.y28_c00288{bottom:651.600000px;}
.y29_c00288{bottom:653.760000px;}
.y27_c00288{bottom:654.480000px;}
.y26_c00288{bottom:655.200000px;}
.y25_c00288{bottom:694.080000px;}
.y23_c00288{bottom:694.800000px;}
.y24_c00288{bottom:696.960000px;}
.y21_c00288{bottom:697.680000px;}
.y22_c00288{bottom:698.400000px;}
.y1f_c00288{bottom:738.000000px;}
.y1e_c00288{bottom:738.720000px;}
.y1d_c00288{bottom:740.880000px;}
.y20_c00288{bottom:741.600000px;}
.y1b_c00288{bottom:781.200000px;}
.y1c_c00288{bottom:782.640000px;}
.y1a_c00288{bottom:783.360000px;}
.y19_c00288{bottom:784.080000px;}
.y18_c00288{bottom:784.800000px;}
.y17_c00288{bottom:795.600000px;}
.y15_c00288{bottom:836.640000px;}
.y16_c00288{bottom:837.360000px;}
.y13_c00288{bottom:878.400000px;}
.y11_c00288{bottom:879.120000px;}
.y14_c00288{bottom:879.840000px;}
.y12_c00288{bottom:880.560000px;}
.yf_c00288{bottom:919.440000px;}
.yb_c00288{bottom:920.160000px;}
.ye_c00288{bottom:920.880000px;}
.y10_c00288{bottom:921.600000px;}
.yd_c00288{bottom:922.320000px;}
.yc_c00288{bottom:923.040000px;}
.ya_c00288{bottom:1005.840000px;}
.y6_c00288{bottom:1008.000000px;}
.y7_c00288{bottom:1008.720000px;}
.y9_c00288{bottom:1009.440000px;}
.y8_c00288{bottom:1010.160000px;}
.y4_c00288{bottom:1051.200000px;}
.y5_c00288{bottom:1051.920000px;}
.y2_c00288{bottom:1052.640000px;}
.y3_c00288{bottom:1053.360000px;}
.y1_c00288{bottom:1090.800000px;}
.h9_c00288{height:31.100625px;}
.hb_c00288{height:33.692344px;}
.h7_c00288{height:36.284062px;}
.h10_c00288{height:38.875781px;}
.he_c00288{height:41.467500px;}
.h5_c00288{height:44.059219px;}
.h3_c00288{height:46.650937px;}
.h4_c00288{height:49.242656px;}
.h8_c00288{height:51.834375px;}
.h6_c00288{height:54.426094px;}
.hd_c00288{height:57.017812px;}
.hc_c00288{height:59.609531px;}
.hf_c00288{height:62.201250px;}
.ha_c00288{height:64.792969px;}
.h2_c00288{height:69.976406px;}
.h1_c00288{height:1162.500000px;}
.h0_c00288{height:1162.800000px;}
.w1_c00288{width:783.750000px;}
.w0_c00288{width:784.080000px;}
.x0_c00288{left:0.000000px;}
.x2_c00288{left:79.920000px;}
.x3f_c00288{left:81.360000px;}
.x51_c00288{left:82.800000px;}
.x40_c00288{left:101.520000px;}
.x32_c00288{left:110.160000px;}
.x46_c00288{left:112.320000px;}
.x4e_c00288{left:120.240000px;}
.x3_c00288{left:121.680000px;}
.x2d_c00288{left:141.840000px;}
.x4c_c00288{left:144.000000px;}
.x2e_c00288{left:151.920000px;}
.x13_c00288{left:153.360000px;}
.x33_c00288{left:164.160000px;}
.x1f_c00288{left:174.960000px;}
.x38_c00288{left:185.760000px;}
.x21_c00288{left:187.200000px;}
.x34_c00288{left:196.560000px;}
.x41_c00288{left:206.640000px;}
.xa_c00288{left:208.800000px;}
.x22_c00288{left:218.160000px;}
.x19_c00288{left:228.960000px;}
.x47_c00288{left:230.400000px;}
.xb_c00288{left:240.480000px;}
.x4_c00288{left:251.280000px;}
.x28_c00288{left:261.360000px;}
.x48_c00288{left:262.800000px;}
.x1a_c00288{left:272.160000px;}
.x53_c00288{left:283.680000px;}
.x5_c00288{left:294.480000px;}
.x1b_c00288{left:305.280000px;}
.x29_c00288{left:306.720000px;}
.xc_c00288{left:315.360000px;}
.x23_c00288{left:317.520000px;}
.x14_c00288{left:326.880000px;}
.x24_c00288{left:336.960000px;}
.x43_c00288{left:347.760000px;}
.x4f_c00288{left:349.200000px;}
.x15_c00288{left:360.000000px;}
.x2f_c00288{left:369.360000px;}
.x6_c00288{left:370.800000px;}
.x39_c00288{left:380.160000px;}
.x25_c00288{left:390.960000px;}
.xd_c00288{left:393.120000px;}
.x30_c00288{left:401.760000px;}
.x2a_c00288{left:414.000000px;}
.x26_c00288{left:424.080000px;}
.xe_c00288{left:425.520000px;}
.x49_c00288{left:434.880000px;}
.x20_c00288{left:436.320000px;}
.x2b_c00288{left:445.680000px;}
.x27_c00288{left:455.760000px;}
.x16_c00288{left:457.200000px;}
.x1c_c00288{left:468.000000px;}
.x4a_c00288{left:477.360000px;}
.x42_c00288{left:488.160000px;}
.xf_c00288{left:489.600000px;}
.x7_c00288{left:500.400000px;}
.x35_c00288{left:510.480000px;}
.x3c_c00288{left:521.280000px;}
.x4d_c00288{left:530.640000px;}
.x17_c00288{left:532.080000px;}
.x50_c00288{left:541.440000px;}
.x10_c00288{left:543.600000px;}
.x3d_c00288{left:552.960000px;}
.x8_c00288{left:563.760000px;}
.x2c_c00288{left:565.920000px;}
.x4b_c00288{left:573.120000px;}
.x36_c00288{left:575.280000px;}
.x11_c00288{left:576.720000px;}
.x31_c00288{left:586.080000px;}
.x3a_c00288{left:596.880000px;}
.x1d_c00288{left:606.960000px;}
.x3e_c00288{left:617.760000px;}
.x44_c00288{left:627.120000px;}
.x3b_c00288{left:629.280000px;}
.x9_c00288{left:630.720000px;}
.x12_c00288{left:639.360000px;}
.x18_c00288{left:650.880000px;}
.x37_c00288{left:661.680000px;}
.x52_c00288{left:669.600000px;}
.x45_c00288{left:671.040000px;}
.x1e_c00288{left:672.480000px;}
.x1_c00288{left:696.960000px;}
@media print{
.v1_c00288{vertical-align:-2.560000pt;}
.v0_c00288{vertical-align:0.000000pt;}
.ls0_c00288{letter-spacing:0.000000pt;}
.ws0_c00288{word-spacing:-3.341013pt;}
.ws1_c00288{word-spacing:0.000000pt;}
.fs7_c00288{font-size:30.720000pt;}
.fs9_c00288{font-size:33.280000pt;}
.fs5_c00288{font-size:35.840000pt;}
.fse_c00288{font-size:38.400000pt;}
.fsc_c00288{font-size:40.960000pt;}
.fs3_c00288{font-size:43.520000pt;}
.fs1_c00288{font-size:46.080000pt;}
.fs2_c00288{font-size:48.640000pt;}
.fs6_c00288{font-size:51.200000pt;}
.fs4_c00288{font-size:53.760000pt;}
.fsb_c00288{font-size:56.320000pt;}
.fsa_c00288{font-size:58.880000pt;}
.fsd_c00288{font-size:61.440000pt;}
.fs8_c00288{font-size:64.000000pt;}
.fs0_c00288{font-size:69.120000pt;}
.y0_c00288{bottom:0.000000pt;}
.y64_c00288{bottom:71.680000pt;}
.y63_c00288{bottom:72.320000pt;}
.y65_c00288{bottom:72.960000pt;}
.y66_c00288{bottom:73.600000pt;}
.y67_c00288{bottom:74.240000pt;}
.y69_c00288{bottom:74.880000pt;}
.y68_c00288{bottom:75.520000pt;}
.y5f_c00288{bottom:108.160000pt;}
.y60_c00288{bottom:109.440000pt;}
.y5e_c00288{bottom:111.360000pt;}
.y61_c00288{bottom:112.000000pt;}
.y62_c00288{bottom:113.280000pt;}
.y5d_c00288{bottom:151.680000pt;}
.y5a_c00288{bottom:186.880000pt;}
.y5c_c00288{bottom:187.520000pt;}
.y5b_c00288{bottom:188.160000pt;}
.y59_c00288{bottom:190.080000pt;}
.y56_c00288{bottom:224.640000pt;}
.y58_c00288{bottom:225.280000pt;}
.y55_c00288{bottom:225.920000pt;}
.y54_c00288{bottom:226.560000pt;}
.y53_c00288{bottom:227.200000pt;}
.y57_c00288{bottom:227.840000pt;}
.y52_c00288{bottom:228.480000pt;}
.y4d_c00288{bottom:262.400000pt;}
.y50_c00288{bottom:263.040000pt;}
.y4f_c00288{bottom:263.680000pt;}
.y4e_c00288{bottom:264.320000pt;}
.y4c_c00288{bottom:265.600000pt;}
.y51_c00288{bottom:266.240000pt;}
.y4b_c00288{bottom:266.880000pt;}
.y48_c00288{bottom:300.800000pt;}
.y46_c00288{bottom:301.440000pt;}
.y4a_c00288{bottom:302.080000pt;}
.y45_c00288{bottom:302.720000pt;}
.y47_c00288{bottom:303.360000pt;}
.y49_c00288{bottom:304.000000pt;}
.y43_c00288{bottom:339.200000pt;}
.y44_c00288{bottom:339.840000pt;}
.y41_c00288{bottom:341.120000pt;}
.y42_c00288{bottom:341.760000pt;}
.y40_c00288{bottom:342.400000pt;}
.y3f_c00288{bottom:343.040000pt;}
.y3b_c00288{bottom:376.960000pt;}
.y3d_c00288{bottom:377.600000pt;}
.y3a_c00288{bottom:378.240000pt;}
.y3e_c00288{bottom:379.520000pt;}
.y3c_c00288{bottom:380.160000pt;}
.y39_c00288{bottom:381.440000pt;}
.y37_c00288{bottom:416.640000pt;}
.y36_c00288{bottom:417.920000pt;}
.y35_c00288{bottom:418.560000pt;}
.y38_c00288{bottom:419.200000pt;}
.y34_c00288{bottom:419.840000pt;}
.y31_c00288{bottom:454.400000pt;}
.y30_c00288{bottom:455.040000pt;}
.y32_c00288{bottom:456.320000pt;}
.y33_c00288{bottom:456.960000pt;}
.y2f_c00288{bottom:457.600000pt;}
.y2e_c00288{bottom:492.800000pt;}
.y2c_c00288{bottom:493.440000pt;}
.y2d_c00288{bottom:495.360000pt;}
.y2b_c00288{bottom:496.000000pt;}
.y2a_c00288{bottom:543.360000pt;}
.y28_c00288{bottom:579.200000pt;}
.y29_c00288{bottom:581.120000pt;}
.y27_c00288{bottom:581.760000pt;}
.y26_c00288{bottom:582.400000pt;}
.y25_c00288{bottom:616.960000pt;}
.y23_c00288{bottom:617.600000pt;}
.y24_c00288{bottom:619.520000pt;}
.y21_c00288{bottom:620.160000pt;}
.y22_c00288{bottom:620.800000pt;}
.y1f_c00288{bottom:656.000000pt;}
.y1e_c00288{bottom:656.640000pt;}
.y1d_c00288{bottom:658.560000pt;}
.y20_c00288{bottom:659.200000pt;}
.y1b_c00288{bottom:694.400000pt;}
.y1c_c00288{bottom:695.680000pt;}
.y1a_c00288{bottom:696.320000pt;}
.y19_c00288{bottom:696.960000pt;}
.y18_c00288{bottom:697.600000pt;}
.y17_c00288{bottom:707.200000pt;}
.y15_c00288{bottom:743.680000pt;}
.y16_c00288{bottom:744.320000pt;}
.y13_c00288{bottom:780.800000pt;}
.y11_c00288{bottom:781.440000pt;}
.y14_c00288{bottom:782.080000pt;}
.y12_c00288{bottom:782.720000pt;}
.yf_c00288{bottom:817.280000pt;}
.yb_c00288{bottom:817.920000pt;}
.ye_c00288{bottom:818.560000pt;}
.y10_c00288{bottom:819.200000pt;}
.yd_c00288{bottom:819.840000pt;}
.yc_c00288{bottom:820.480000pt;}
.ya_c00288{bottom:894.080000pt;}
.y6_c00288{bottom:896.000000pt;}
.y7_c00288{bottom:896.640000pt;}
.y9_c00288{bottom:897.280000pt;}
.y8_c00288{bottom:897.920000pt;}
.y4_c00288{bottom:934.400000pt;}
.y5_c00288{bottom:935.040000pt;}
.y2_c00288{bottom:935.680000pt;}
.y3_c00288{bottom:936.320000pt;}
.y1_c00288{bottom:969.600000pt;}
.h9_c00288{height:27.645000pt;}
.hb_c00288{height:29.948750pt;}
.h7_c00288{height:32.252500pt;}
.h10_c00288{height:34.556250pt;}
.he_c00288{height:36.860000pt;}
.h5_c00288{height:39.163750pt;}
.h3_c00288{height:41.467500pt;}
.h4_c00288{height:43.771250pt;}
.h8_c00288{height:46.075000pt;}
.h6_c00288{height:48.378750pt;}
.hd_c00288{height:50.682500pt;}
.hc_c00288{height:52.986250pt;}
.hf_c00288{height:55.290000pt;}
.ha_c00288{height:57.593750pt;}
.h2_c00288{height:62.201250pt;}
.h1_c00288{height:1033.333333pt;}
.h0_c00288{height:1033.600000pt;}
.w1_c00288{width:696.666667pt;}
.w0_c00288{width:696.960000pt;}
.x0_c00288{left:0.000000pt;}
.x2_c00288{left:71.040000pt;}
.x3f_c00288{left:72.320000pt;}
.x51_c00288{left:73.600000pt;}
.x40_c00288{left:90.240000pt;}
.x32_c00288{left:97.920000pt;}
.x46_c00288{left:99.840000pt;}
.x4e_c00288{left:106.880000pt;}
.x3_c00288{left:108.160000pt;}
.x2d_c00288{left:126.080000pt;}
.x4c_c00288{left:128.000000pt;}
.x2e_c00288{left:135.040000pt;}
.x13_c00288{left:136.320000pt;}
.x33_c00288{left:145.920000pt;}
.x1f_c00288{left:155.520000pt;}
.x38_c00288{left:165.120000pt;}
.x21_c00288{left:166.400000pt;}
.x34_c00288{left:174.720000pt;}
.x41_c00288{left:183.680000pt;}
.xa_c00288{left:185.600000pt;}
.x22_c00288{left:193.920000pt;}
.x19_c00288{left:203.520000pt;}
.x47_c00288{left:204.800000pt;}
.xb_c00288{left:213.760000pt;}
.x4_c00288{left:223.360000pt;}
.x28_c00288{left:232.320000pt;}
.x48_c00288{left:233.600000pt;}
.x1a_c00288{left:241.920000pt;}
.x53_c00288{left:252.160000pt;}
.x5_c00288{left:261.760000pt;}
.x1b_c00288{left:271.360000pt;}
.x29_c00288{left:272.640000pt;}
.xc_c00288{left:280.320000pt;}
.x23_c00288{left:282.240000pt;}
.x14_c00288{left:290.560000pt;}
.x24_c00288{left:299.520000pt;}
.x43_c00288{left:309.120000pt;}
.x4f_c00288{left:310.400000pt;}
.x15_c00288{left:320.000000pt;}
.x2f_c00288{left:328.320000pt;}
.x6_c00288{left:329.600000pt;}
.x39_c00288{left:337.920000pt;}
.x25_c00288{left:347.520000pt;}
.xd_c00288{left:349.440000pt;}
.x30_c00288{left:357.120000pt;}
.x2a_c00288{left:368.000000pt;}
.x26_c00288{left:376.960000pt;}
.xe_c00288{left:378.240000pt;}
.x49_c00288{left:386.560000pt;}
.x20_c00288{left:387.840000pt;}
.x2b_c00288{left:396.160000pt;}
.x27_c00288{left:405.120000pt;}
.x16_c00288{left:406.400000pt;}
.x1c_c00288{left:416.000000pt;}
.x4a_c00288{left:424.320000pt;}
.x42_c00288{left:433.920000pt;}
.xf_c00288{left:435.200000pt;}
.x7_c00288{left:444.800000pt;}
.x35_c00288{left:453.760000pt;}
.x3c_c00288{left:463.360000pt;}
.x4d_c00288{left:471.680000pt;}
.x17_c00288{left:472.960000pt;}
.x50_c00288{left:481.280000pt;}
.x10_c00288{left:483.200000pt;}
.x3d_c00288{left:491.520000pt;}
.x8_c00288{left:501.120000pt;}
.x2c_c00288{left:503.040000pt;}
.x4b_c00288{left:509.440000pt;}
.x36_c00288{left:511.360000pt;}
.x11_c00288{left:512.640000pt;}
.x31_c00288{left:520.960000pt;}
.x3a_c00288{left:530.560000pt;}
.x1d_c00288{left:539.520000pt;}
.x3e_c00288{left:549.120000pt;}
.x44_c00288{left:557.440000pt;}
.x3b_c00288{left:559.360000pt;}
.x9_c00288{left:560.640000pt;}
.x12_c00288{left:568.320000pt;}
.x18_c00288{left:578.560000pt;}
.x37_c00288{left:588.160000pt;}
.x52_c00288{left:595.200000pt;}
.x45_c00288{left:596.480000pt;}
.x1e_c00288{left:597.760000pt;}
.x1_c00288{left:619.520000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_15c022f38a6ce25ff28d80e9.woff2')format("woff");}.ff1_c00289{font-family:ff1_c00289;line-height:1.109863;font-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_c00289{transform:matrix(0.188175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188175,0.000000,0.000000,0.250000,0,0);}
.m22_c00289{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m49_c00289{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m5_c00289{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m10_c00289{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m28_c00289{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m3_c00289{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00289{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m20_c00289{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m26_c00289{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m39_c00289{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.ma_c00289{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m41_c00289{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m37_c00289{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m40_c00289{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m17_c00289{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00289{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m46_c00289{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m18_c00289{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m55_c00289{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m0_c00289{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);}
.m2e_c00289{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00289{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m33_c00289{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m31_c00289{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);}
.m9_c00289{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);}
.m53_c00289{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m30_c00289{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m11_c00289{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);}
.m13_c00289{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);}
.m27_c00289{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m24_c00289{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.mb_c00289{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);}
.m44_c00289{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m1_c00289{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);}
.m7_c00289{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);}
.m4e_c00289{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.md_c00289{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m38_c00289{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00289{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m4_c00289{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);}
.m52_c00289{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00289{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00289{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m6_c00289{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00289{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);}
.m36_c00289{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00289{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m12_c00289{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);}
.m14_c00289{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00289{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);}
.m1f_c00289{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m34_c00289{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m15_c00289{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m19_c00289{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);}
.m42_c00289{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m45_c00289{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00289{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00289{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00289{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m48_c00289{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m16_c00289{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m43_c00289{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);}
.m2_c00289{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);}
.me_c00289{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00289{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00289{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);}
.m4c_c00289{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m51_c00289{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m21_c00289{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);}
.m29_c00289{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00289{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.mc_c00289{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m8_c00289{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);}
.m32_c00289{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_c00289{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m35_c00289{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00289{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m54_c00289{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m23_c00289{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m50_c00289{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);}
.m47_c00289{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00289{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00289{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00289{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00289{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.v2_c00289{vertical-align:-11.520000px;}
.v3_c00289{vertical-align:-8.640000px;}
.v1_c00289{vertical-align:-2.880000px;}
.v0_c00289{vertical-align:0.000000px;}
.ls0_c00289{letter-spacing:0.000000px;}
.sc__c00289{text-shadow:none;}
.sc0_c00289{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00289{-webkit-text-stroke:0px transparent;}
.sc0_c00289{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00289{word-spacing:-4.896240px;}
.ws2_c00289{word-spacing:-1.049520px;}
.ws3_c00289{word-spacing:0.000000px;}
.ws1_c00289{word-spacing:3.403440px;}
.fc0_c00289{color:transparent;}
.fse_c00289{font-size:23.040000px;}
.fsd_c00289{font-size:34.560000px;}
.fs5_c00289{font-size:37.440000px;}
.fsb_c00289{font-size:40.320000px;}
.fsa_c00289{font-size:43.200000px;}
.fs3_c00289{font-size:46.080000px;}
.fs2_c00289{font-size:48.960000px;}
.fs7_c00289{font-size:51.840000px;}
.fs8_c00289{font-size:54.720000px;}
.fs4_c00289{font-size:57.600000px;}
.fs1_c00289{font-size:60.480000px;}
.fs6_c00289{font-size:63.360000px;}
.fsc_c00289{font-size:66.240000px;}
.fs9_c00289{font-size:69.120000px;}
.fsf_c00289{font-size:72.000000px;}
.fs0_c00289{font-size:77.760000px;}
.y0_c00289{bottom:0.000000px;}
.y6a_c00289{bottom:123.840000px;}
.y6b_c00289{bottom:124.560000px;}
.y69_c00289{bottom:126.000000px;}
.y68_c00289{bottom:126.720000px;}
.y65_c00289{bottom:166.320000px;}
.y64_c00289{bottom:169.200000px;}
.y66_c00289{bottom:169.920000px;}
.y67_c00289{bottom:170.640000px;}
.y63_c00289{bottom:210.960000px;}
.y60_c00289{bottom:211.680000px;}
.y61_c00289{bottom:212.400000px;}
.y62_c00289{bottom:213.120000px;}
.y5f_c00289{bottom:216.000000px;}
.y5c_c00289{bottom:253.440000px;}
.y5b_c00289{bottom:255.600000px;}
.y5d_c00289{bottom:256.320000px;}
.y5e_c00289{bottom:257.040000px;}
.y59_c00289{bottom:296.640000px;}
.y57_c00289{bottom:298.080000px;}
.y5a_c00289{bottom:298.800000px;}
.y56_c00289{bottom:299.520000px;}
.y58_c00289{bottom:300.240000px;}
.y54_c00289{bottom:340.560000px;}
.y52_c00289{bottom:341.280000px;}
.y53_c00289{bottom:342.720000px;}
.y55_c00289{bottom:343.440000px;}
.y51_c00289{bottom:344.160000px;}
.y4d_c00289{bottom:383.040000px;}
.y4c_c00289{bottom:383.760000px;}
.y4f_c00289{bottom:384.480000px;}
.y4e_c00289{bottom:385.920000px;}
.y4b_c00289{bottom:386.640000px;}
.y4a_c00289{bottom:387.360000px;}
.y50_c00289{bottom:388.800000px;}
.y48_c00289{bottom:426.240000px;}
.y49_c00289{bottom:426.960000px;}
.y44_c00289{bottom:427.680000px;}
.y47_c00289{bottom:428.400000px;}
.y45_c00289{bottom:429.120000px;}
.y46_c00289{bottom:429.840000px;}
.y41_c00289{bottom:469.440000px;}
.y42_c00289{bottom:470.160000px;}
.y43_c00289{bottom:472.320000px;}
.y40_c00289{bottom:512.640000px;}
.y3f_c00289{bottom:514.800000px;}
.y3e_c00289{bottom:515.520000px;}
.y3c_c00289{bottom:555.840000px;}
.y3a_c00289{bottom:556.560000px;}
.y3d_c00289{bottom:558.000000px;}
.y3b_c00289{bottom:558.720000px;}
.y39_c00289{bottom:598.320000px;}
.y37_c00289{bottom:599.040000px;}
.y38_c00289{bottom:599.760000px;}
.y36_c00289{bottom:601.200000px;}
.y35_c00289{bottom:601.920000px;}
.y32_c00289{bottom:642.240000px;}
.y31_c00289{bottom:642.960000px;}
.y34_c00289{bottom:643.680000px;}
.y33_c00289{bottom:644.400000px;}
.y30_c00289{bottom:645.120000px;}
.y2f_c00289{bottom:684.000000px;}
.y2e_c00289{bottom:684.720000px;}
.y2b_c00289{bottom:685.440000px;}
.y2d_c00289{bottom:686.880000px;}
.y2c_c00289{bottom:687.600000px;}
.y2a_c00289{bottom:688.320000px;}
.y27_c00289{bottom:739.440000px;}
.y28_c00289{bottom:740.160000px;}
.y29_c00289{bottom:742.320000px;}
.y22_c00289{bottom:781.920000px;}
.y24_c00289{bottom:782.640000px;}
.y25_c00289{bottom:783.360000px;}
.y26_c00289{bottom:784.800000px;}
.y23_c00289{bottom:785.520000px;}
.y20_c00289{bottom:825.120000px;}
.y1e_c00289{bottom:825.840000px;}
.y21_c00289{bottom:828.000000px;}
.y1d_c00289{bottom:828.720000px;}
.y1f_c00289{bottom:829.440000px;}
.y17_c00289{bottom:869.040000px;}
.y1c_c00289{bottom:870.480000px;}
.y1b_c00289{bottom:871.200000px;}
.y18_c00289{bottom:871.920000px;}
.y1a_c00289{bottom:872.640000px;}
.y19_c00289{bottom:873.360000px;}
.y14_c00289{bottom:910.800000px;}
.y15_c00289{bottom:912.240000px;}
.y13_c00289{bottom:912.960000px;}
.y16_c00289{bottom:913.680000px;}
.y11_c00289{bottom:914.400000px;}
.y12_c00289{bottom:915.120000px;}
.yd_c00289{bottom:955.440000px;}
.ye_c00289{bottom:956.160000px;}
.y10_c00289{bottom:956.880000px;}
.yc_c00289{bottom:957.600000px;}
.yf_c00289{bottom:958.320000px;}
.y9_c00289{bottom:999.360000px;}
.yb_c00289{bottom:1000.080000px;}
.ya_c00289{bottom:1000.800000px;}
.y8_c00289{bottom:1001.520000px;}
.y7_c00289{bottom:1051.920000px;}
.y5_c00289{bottom:1052.640000px;}
.y4_c00289{bottom:1053.360000px;}
.y2_c00289{bottom:1054.080000px;}
.y6_c00289{bottom:1054.800000px;}
.y3_c00289{bottom:1056.240000px;}
.y1_c00289{bottom:1105.920000px;}
.h10_c00289{height:20.733750px;}
.hf_c00289{height:31.100625px;}
.h7_c00289{height:33.692344px;}
.hd_c00289{height:36.284062px;}
.hc_c00289{height:38.875781px;}
.h5_c00289{height:41.467500px;}
.h4_c00289{height:44.059219px;}
.h9_c00289{height:46.650937px;}
.ha_c00289{height:49.242656px;}
.h6_c00289{height:51.834375px;}
.h3_c00289{height:54.426094px;}
.h8_c00289{height:57.017812px;}
.he_c00289{height:59.609531px;}
.hb_c00289{height:62.201250px;}
.h11_c00289{height:64.792969px;}
.h2_c00289{height:69.976406px;}
.h1_c00289{height:1162.500000px;}
.h0_c00289{height:1162.800000px;}
.w1_c00289{width:783.750000px;}
.w0_c00289{width:784.080000px;}
.x0_c00289{left:0.000000px;}
.x2_c00289{left:77.760000px;}
.x29_c00289{left:79.920000px;}
.x2a_c00289{left:99.360000px;}
.x3e_c00289{left:108.720000px;}
.x18_c00289{left:110.160000px;}
.x4d_c00289{left:118.800000px;}
.x2f_c00289{left:120.240000px;}
.x22_c00289{left:131.760000px;}
.x34_c00289{left:141.120000px;}
.x55_c00289{left:142.560000px;}
.x23_c00289{left:151.920000px;}
.x19_c00289{left:153.360000px;}
.x51_c00289{left:162.000000px;}
.x12_c00289{left:163.440000px;}
.x3f_c00289{left:173.520000px;}
.x5a_c00289{left:183.600000px;}
.x3_c00289{left:185.040000px;}
.xb_c00289{left:186.480000px;}
.x35_c00289{left:195.840000px;}
.x24_c00289{left:205.920000px;}
.x44_c00289{left:207.360000px;}
.x59_c00289{left:216.000000px;}
.xc_c00289{left:217.440000px;}
.x36_c00289{left:226.800000px;}
.x40_c00289{left:237.600000px;}
.x13_c00289{left:239.040000px;}
.x2b_c00289{left:248.400000px;}
.x4_c00289{left:250.560000px;}
.x45_c00289{left:259.920000px;}
.x56_c00289{left:270.720000px;}
.x5_c00289{left:272.160000px;}
.x30_c00289{left:282.240000px;}
.x38_c00289{left:293.040000px;}
.x6_c00289{left:294.480000px;}
.x41_c00289{left:304.560000px;}
.xd_c00289{left:315.360000px;}
.x39_c00289{left:326.160000px;}
.x7_c00289{left:336.960000px;}
.x25_c00289{left:347.040000px;}
.x1a_c00289{left:369.360000px;}
.x49_c00289{left:378.720000px;}
.x8_c00289{left:380.160000px;}
.x4e_c00289{left:390.240000px;}
.x47_c00289{left:401.040000px;}
.x57_c00289{left:411.120000px;}
.x31_c00289{left:412.560000px;}
.x4a_c00289{left:421.200000px;}
.x26_c00289{left:423.360000px;}
.x14_c00289{left:432.720000px;}
.x1b_c00289{left:434.160000px;}
.xe_c00289{left:444.960000px;}
.x2c_c00289{left:455.760000px;}
.x1c_c00289{left:466.560000px;}
.xf_c00289{left:478.080000px;}
.x32_c00289{left:487.440000px;}
.x52_c00289{left:497.520000px;}
.x1d_c00289{left:499.680000px;}
.x4b_c00289{left:507.600000px;}
.x15_c00289{left:509.040000px;}
.x3a_c00289{left:519.840000px;}
.x9_c00289{left:522.000000px;}
.x48_c00289{left:531.360000px;}
.x42_c00289{left:540.000000px;}
.x2d_c00289{left:541.440000px;}
.x3b_c00289{left:550.800000px;}
.x16_c00289{left:552.960000px;}
.x4f_c00289{left:562.320000px;}
.xa_c00289{left:563.760000px;}
.x53_c00289{left:572.400000px;}
.x1e_c00289{left:574.560000px;}
.x58_c00289{left:583.200000px;}
.x10_c00289{left:585.360000px;}
.x5b_c00289{left:594.000000px;}
.x37_c00289{left:595.440000px;}
.x3c_c00289{left:604.800000px;}
.x27_c00289{left:606.960000px;}
.x46_c00289{left:616.320000px;}
.x2e_c00289{left:617.760000px;}
.x50_c00289{left:627.120000px;}
.x1f_c00289{left:628.560000px;}
.x4c_c00289{left:637.200000px;}
.x3d_c00289{left:639.360000px;}
.x43_c00289{left:648.720000px;}
.x17_c00289{left:659.520000px;}
.x20_c00289{left:660.960000px;}
.x5c_c00289{left:669.600000px;}
.x11_c00289{left:671.760000px;}
.x33_c00289{left:682.560000px;}
.x28_c00289{left:692.640000px;}
.x54_c00289{left:702.000000px;}
.x21_c00289{left:704.160000px;}
.x1_c00289{left:708.480000px;}
@media print{
.v2_c00289{vertical-align:-10.240000pt;}
.v3_c00289{vertical-align:-7.680000pt;}
.v1_c00289{vertical-align:-2.560000pt;}
.v0_c00289{vertical-align:0.000000pt;}
.ls0_c00289{letter-spacing:0.000000pt;}
.ws0_c00289{word-spacing:-4.352213pt;}
.ws2_c00289{word-spacing:-0.932907pt;}
.ws3_c00289{word-spacing:0.000000pt;}
.ws1_c00289{word-spacing:3.025280pt;}
.fse_c00289{font-size:20.480000pt;}
.fsd_c00289{font-size:30.720000pt;}
.fs5_c00289{font-size:33.280000pt;}
.fsb_c00289{font-size:35.840000pt;}
.fsa_c00289{font-size:38.400000pt;}
.fs3_c00289{font-size:40.960000pt;}
.fs2_c00289{font-size:43.520000pt;}
.fs7_c00289{font-size:46.080000pt;}
.fs8_c00289{font-size:48.640000pt;}
.fs4_c00289{font-size:51.200000pt;}
.fs1_c00289{font-size:53.760000pt;}
.fs6_c00289{font-size:56.320000pt;}
.fsc_c00289{font-size:58.880000pt;}
.fs9_c00289{font-size:61.440000pt;}
.fsf_c00289{font-size:64.000000pt;}
.fs0_c00289{font-size:69.120000pt;}
.y0_c00289{bottom:0.000000pt;}
.y6a_c00289{bottom:110.080000pt;}
.y6b_c00289{bottom:110.720000pt;}
.y69_c00289{bottom:112.000000pt;}
.y68_c00289{bottom:112.640000pt;}
.y65_c00289{bottom:147.840000pt;}
.y64_c00289{bottom:150.400000pt;}
.y66_c00289{bottom:151.040000pt;}
.y67_c00289{bottom:151.680000pt;}
.y63_c00289{bottom:187.520000pt;}
.y60_c00289{bottom:188.160000pt;}
.y61_c00289{bottom:188.800000pt;}
.y62_c00289{bottom:189.440000pt;}
.y5f_c00289{bottom:192.000000pt;}
.y5c_c00289{bottom:225.280000pt;}
.y5b_c00289{bottom:227.200000pt;}
.y5d_c00289{bottom:227.840000pt;}
.y5e_c00289{bottom:228.480000pt;}
.y59_c00289{bottom:263.680000pt;}
.y57_c00289{bottom:264.960000pt;}
.y5a_c00289{bottom:265.600000pt;}
.y56_c00289{bottom:266.240000pt;}
.y58_c00289{bottom:266.880000pt;}
.y54_c00289{bottom:302.720000pt;}
.y52_c00289{bottom:303.360000pt;}
.y53_c00289{bottom:304.640000pt;}
.y55_c00289{bottom:305.280000pt;}
.y51_c00289{bottom:305.920000pt;}
.y4d_c00289{bottom:340.480000pt;}
.y4c_c00289{bottom:341.120000pt;}
.y4f_c00289{bottom:341.760000pt;}
.y4e_c00289{bottom:343.040000pt;}
.y4b_c00289{bottom:343.680000pt;}
.y4a_c00289{bottom:344.320000pt;}
.y50_c00289{bottom:345.600000pt;}
.y48_c00289{bottom:378.880000pt;}
.y49_c00289{bottom:379.520000pt;}
.y44_c00289{bottom:380.160000pt;}
.y47_c00289{bottom:380.800000pt;}
.y45_c00289{bottom:381.440000pt;}
.y46_c00289{bottom:382.080000pt;}
.y41_c00289{bottom:417.280000pt;}
.y42_c00289{bottom:417.920000pt;}
.y43_c00289{bottom:419.840000pt;}
.y40_c00289{bottom:455.680000pt;}
.y3f_c00289{bottom:457.600000pt;}
.y3e_c00289{bottom:458.240000pt;}
.y3c_c00289{bottom:494.080000pt;}
.y3a_c00289{bottom:494.720000pt;}
.y3d_c00289{bottom:496.000000pt;}
.y3b_c00289{bottom:496.640000pt;}
.y39_c00289{bottom:531.840000pt;}
.y37_c00289{bottom:532.480000pt;}
.y38_c00289{bottom:533.120000pt;}
.y36_c00289{bottom:534.400000pt;}
.y35_c00289{bottom:535.040000pt;}
.y32_c00289{bottom:570.880000pt;}
.y31_c00289{bottom:571.520000pt;}
.y34_c00289{bottom:572.160000pt;}
.y33_c00289{bottom:572.800000pt;}
.y30_c00289{bottom:573.440000pt;}
.y2f_c00289{bottom:608.000000pt;}
.y2e_c00289{bottom:608.640000pt;}
.y2b_c00289{bottom:609.280000pt;}
.y2d_c00289{bottom:610.560000pt;}
.y2c_c00289{bottom:611.200000pt;}
.y2a_c00289{bottom:611.840000pt;}
.y27_c00289{bottom:657.280000pt;}
.y28_c00289{bottom:657.920000pt;}
.y29_c00289{bottom:659.840000pt;}
.y22_c00289{bottom:695.040000pt;}
.y24_c00289{bottom:695.680000pt;}
.y25_c00289{bottom:696.320000pt;}
.y26_c00289{bottom:697.600000pt;}
.y23_c00289{bottom:698.240000pt;}
.y20_c00289{bottom:733.440000pt;}
.y1e_c00289{bottom:734.080000pt;}
.y21_c00289{bottom:736.000000pt;}
.y1d_c00289{bottom:736.640000pt;}
.y1f_c00289{bottom:737.280000pt;}
.y17_c00289{bottom:772.480000pt;}
.y1c_c00289{bottom:773.760000pt;}
.y1b_c00289{bottom:774.400000pt;}
.y18_c00289{bottom:775.040000pt;}
.y1a_c00289{bottom:775.680000pt;}
.y19_c00289{bottom:776.320000pt;}
.y14_c00289{bottom:809.600000pt;}
.y15_c00289{bottom:810.880000pt;}
.y13_c00289{bottom:811.520000pt;}
.y16_c00289{bottom:812.160000pt;}
.y11_c00289{bottom:812.800000pt;}
.y12_c00289{bottom:813.440000pt;}
.yd_c00289{bottom:849.280000pt;}
.ye_c00289{bottom:849.920000pt;}
.y10_c00289{bottom:850.560000pt;}
.yc_c00289{bottom:851.200000pt;}
.yf_c00289{bottom:851.840000pt;}
.y9_c00289{bottom:888.320000pt;}
.yb_c00289{bottom:888.960000pt;}
.ya_c00289{bottom:889.600000pt;}
.y8_c00289{bottom:890.240000pt;}
.y7_c00289{bottom:935.040000pt;}
.y5_c00289{bottom:935.680000pt;}
.y4_c00289{bottom:936.320000pt;}
.y2_c00289{bottom:936.960000pt;}
.y6_c00289{bottom:937.600000pt;}
.y3_c00289{bottom:938.880000pt;}
.y1_c00289{bottom:983.040000pt;}
.h10_c00289{height:18.430000pt;}
.hf_c00289{height:27.645000pt;}
.h7_c00289{height:29.948750pt;}
.hd_c00289{height:32.252500pt;}
.hc_c00289{height:34.556250pt;}
.h5_c00289{height:36.860000pt;}
.h4_c00289{height:39.163750pt;}
.h9_c00289{height:41.467500pt;}
.ha_c00289{height:43.771250pt;}
.h6_c00289{height:46.075000pt;}
.h3_c00289{height:48.378750pt;}
.h8_c00289{height:50.682500pt;}
.he_c00289{height:52.986250pt;}
.hb_c00289{height:55.290000pt;}
.h11_c00289{height:57.593750pt;}
.h2_c00289{height:62.201250pt;}
.h1_c00289{height:1033.333333pt;}
.h0_c00289{height:1033.600000pt;}
.w1_c00289{width:696.666667pt;}
.w0_c00289{width:696.960000pt;}
.x0_c00289{left:0.000000pt;}
.x2_c00289{left:69.120000pt;}
.x29_c00289{left:71.040000pt;}
.x2a_c00289{left:88.320000pt;}
.x3e_c00289{left:96.640000pt;}
.x18_c00289{left:97.920000pt;}
.x4d_c00289{left:105.600000pt;}
.x2f_c00289{left:106.880000pt;}
.x22_c00289{left:117.120000pt;}
.x34_c00289{left:125.440000pt;}
.x55_c00289{left:126.720000pt;}
.x23_c00289{left:135.040000pt;}
.x19_c00289{left:136.320000pt;}
.x51_c00289{left:144.000000pt;}
.x12_c00289{left:145.280000pt;}
.x3f_c00289{left:154.240000pt;}
.x5a_c00289{left:163.200000pt;}
.x3_c00289{left:164.480000pt;}
.xb_c00289{left:165.760000pt;}
.x35_c00289{left:174.080000pt;}
.x24_c00289{left:183.040000pt;}
.x44_c00289{left:184.320000pt;}
.x59_c00289{left:192.000000pt;}
.xc_c00289{left:193.280000pt;}
.x36_c00289{left:201.600000pt;}
.x40_c00289{left:211.200000pt;}
.x13_c00289{left:212.480000pt;}
.x2b_c00289{left:220.800000pt;}
.x4_c00289{left:222.720000pt;}
.x45_c00289{left:231.040000pt;}
.x56_c00289{left:240.640000pt;}
.x5_c00289{left:241.920000pt;}
.x30_c00289{left:250.880000pt;}
.x38_c00289{left:260.480000pt;}
.x6_c00289{left:261.760000pt;}
.x41_c00289{left:270.720000pt;}
.xd_c00289{left:280.320000pt;}
.x39_c00289{left:289.920000pt;}
.x7_c00289{left:299.520000pt;}
.x25_c00289{left:308.480000pt;}
.x1a_c00289{left:328.320000pt;}
.x49_c00289{left:336.640000pt;}
.x8_c00289{left:337.920000pt;}
.x4e_c00289{left:346.880000pt;}
.x47_c00289{left:356.480000pt;}
.x57_c00289{left:365.440000pt;}
.x31_c00289{left:366.720000pt;}
.x4a_c00289{left:374.400000pt;}
.x26_c00289{left:376.320000pt;}
.x14_c00289{left:384.640000pt;}
.x1b_c00289{left:385.920000pt;}
.xe_c00289{left:395.520000pt;}
.x2c_c00289{left:405.120000pt;}
.x1c_c00289{left:414.720000pt;}
.xf_c00289{left:424.960000pt;}
.x32_c00289{left:433.280000pt;}
.x52_c00289{left:442.240000pt;}
.x1d_c00289{left:444.160000pt;}
.x4b_c00289{left:451.200000pt;}
.x15_c00289{left:452.480000pt;}
.x3a_c00289{left:462.080000pt;}
.x9_c00289{left:464.000000pt;}
.x48_c00289{left:472.320000pt;}
.x42_c00289{left:480.000000pt;}
.x2d_c00289{left:481.280000pt;}
.x3b_c00289{left:489.600000pt;}
.x16_c00289{left:491.520000pt;}
.x4f_c00289{left:499.840000pt;}
.xa_c00289{left:501.120000pt;}
.x53_c00289{left:508.800000pt;}
.x1e_c00289{left:510.720000pt;}
.x58_c00289{left:518.400000pt;}
.x10_c00289{left:520.320000pt;}
.x5b_c00289{left:528.000000pt;}
.x37_c00289{left:529.280000pt;}
.x3c_c00289{left:537.600000pt;}
.x27_c00289{left:539.520000pt;}
.x46_c00289{left:547.840000pt;}
.x2e_c00289{left:549.120000pt;}
.x50_c00289{left:557.440000pt;}
.x1f_c00289{left:558.720000pt;}
.x4c_c00289{left:566.400000pt;}
.x3d_c00289{left:568.320000pt;}
.x43_c00289{left:576.640000pt;}
.x17_c00289{left:586.240000pt;}
.x20_c00289{left:587.520000pt;}
.x5c_c00289{left:595.200000pt;}
.x11_c00289{left:597.120000pt;}
.x33_c00289{left:606.720000pt;}
.x28_c00289{left:615.680000pt;}
.x54_c00289{left:624.000000pt;}
.x21_c00289{left:625.920000pt;}
.x1_c00289{left:629.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6f6a2f1a9ce9621358376ade.woff2')format("woff");}.ff1_c00290{font-family:ff1_c00290;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5e_c00290{transform:matrix(0.247175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247175,0.000000,0.000000,0.250000,0,0);}
.m43_c00290{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m38_c00290{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00290{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m5_c00290{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m21_c00290{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00290{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m45_c00290{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);}
.m3b_c00290{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m48_c00290{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m27_c00290{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m61_c00290{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m20_c00290{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m55_c00290{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00290{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m37_c00290{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00290{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m0_c00290{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m42_c00290{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mb_c00290{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m47_c00290{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m13_c00290{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.md_c00290{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m8_c00290{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1_c00290{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);}
.m18_c00290{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m30_c00290{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m16_c00290{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00290{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);}
.m7_c00290{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);}
.ma_c00290{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m12_c00290{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m56_c00290{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m2_c00290{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);}
.m14_c00290{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);}
.m49_c00290{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00290{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);}
.mf_c00290{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m46_c00290{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);}
.m22_c00290{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);}
.m33_c00290{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);}
.m2f_c00290{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m60_c00290{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00290{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00290{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_c00290{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.me_c00290{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);}
.m4e_c00290{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00290{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);}
.m34_c00290{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);}
.mc_c00290{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00290{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m29_c00290{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m36_c00290{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00290{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m4_c00290{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00290{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_c00290{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m11_c00290{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00290{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00290{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00290{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);}
.m59_c00290{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m58_c00290{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m26_c00290{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m25_c00290{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m53_c00290{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m31_c00290{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m23_c00290{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00290{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);}
.m39_c00290{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);}
.m3f_c00290{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m15_c00290{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m40_c00290{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);}
.m24_c00290{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m41_c00290{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);}
.m52_c00290{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00290{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m57_c00290{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00290{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00290{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m9_c00290{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);}
.m3_c00290{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);}
.m54_c00290{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m28_c00290{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00290{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m32_c00290{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m44_c00290{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00290{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00290{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);}
.m51_c00290{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m50_c00290{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m19_c00290{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00290{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);}
.m6_c00290{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.m35_c00290{transform:matrix(0.912500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.912500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.912500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00290{transform:matrix(0.982500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.982500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.982500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00290{transform:matrix(1.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.172500,0.000000,0.000000,0.250000,0,0);}
.v2_c00290{vertical-align:-5.760000px;}
.v1_c00290{vertical-align:-2.880000px;}
.v0_c00290{vertical-align:0.000000px;}
.ls0_c00290{letter-spacing:0.000000px;}
.sc__c00290{text-shadow:none;}
.sc0_c00290{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00290{-webkit-text-stroke:0px transparent;}
.sc0_c00290{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00290{word-spacing:-3.414960px;}
.ws1_c00290{word-spacing:-0.448800px;}
.ws3_c00290{word-spacing:0.000000px;}
.ws2_c00290{word-spacing:4.011600px;}
.fc0_c00290{color:transparent;}
.fs11_c00290{font-size:20.160000px;}
.fs5_c00290{font-size:23.040000px;}
.fs10_c00290{font-size:25.920000px;}
.fs3_c00290{font-size:34.560000px;}
.fs7_c00290{font-size:37.440000px;}
.fsb_c00290{font-size:40.320000px;}
.fsd_c00290{font-size:43.200000px;}
.fsc_c00290{font-size:46.080000px;}
.fs4_c00290{font-size:48.960000px;}
.fs1_c00290{font-size:51.840000px;}
.fs9_c00290{font-size:54.720000px;}
.fs8_c00290{font-size:57.600000px;}
.fs2_c00290{font-size:60.480000px;}
.fs6_c00290{font-size:63.360000px;}
.fsa_c00290{font-size:66.240000px;}
.fse_c00290{font-size:69.120000px;}
.fs12_c00290{font-size:72.000000px;}
.fsf_c00290{font-size:74.880000px;}
.fs0_c00290{font-size:77.760000px;}
.y0_c00290{bottom:0.000000px;}
.y73_c00290{bottom:38.160000px;}
.y74_c00290{bottom:39.600000px;}
.y71_c00290{bottom:40.320000px;}
.y72_c00290{bottom:41.040000px;}
.y6f_c00290{bottom:82.080000px;}
.y6e_c00290{bottom:83.520000px;}
.y6d_c00290{bottom:84.240000px;}
.y70_c00290{bottom:85.680000px;}
.y68_c00290{bottom:125.280000px;}
.y69_c00290{bottom:126.000000px;}
.y6a_c00290{bottom:127.440000px;}
.y6b_c00290{bottom:128.160000px;}
.y6c_c00290{bottom:128.880000px;}
.y67_c00290{bottom:169.200000px;}
.y65_c00290{bottom:169.920000px;}
.y63_c00290{bottom:170.640000px;}
.y64_c00290{bottom:171.360000px;}
.y66_c00290{bottom:172.080000px;}
.y62_c00290{bottom:172.800000px;}
.y5f_c00290{bottom:211.680000px;}
.y61_c00290{bottom:212.400000px;}
.y60_c00290{bottom:213.840000px;}
.y5e_c00290{bottom:214.560000px;}
.y5d_c00290{bottom:255.600000px;}
.y5b_c00290{bottom:257.040000px;}
.y5c_c00290{bottom:257.760000px;}
.y5a_c00290{bottom:259.920000px;}
.y59_c00290{bottom:298.080000px;}
.y58_c00290{bottom:300.240000px;}
.y57_c00290{bottom:300.960000px;}
.y55_c00290{bottom:340.560000px;}
.y53_c00290{bottom:341.280000px;}
.y52_c00290{bottom:342.720000px;}
.y54_c00290{bottom:343.440000px;}
.y56_c00290{bottom:344.160000px;}
.y4e_c00290{bottom:384.480000px;}
.y50_c00290{bottom:385.920000px;}
.y4f_c00290{bottom:386.640000px;}
.y51_c00290{bottom:387.360000px;}
.y4d_c00290{bottom:388.080000px;}
.y4b_c00290{bottom:427.680000px;}
.y4c_c00290{bottom:429.120000px;}
.y4a_c00290{bottom:429.840000px;}
.y49_c00290{bottom:430.560000px;}
.y46_c00290{bottom:480.960000px;}
.y44_c00290{bottom:482.400000px;}
.y48_c00290{bottom:483.120000px;}
.y47_c00290{bottom:483.840000px;}
.y45_c00290{bottom:484.560000px;}
.y43_c00290{bottom:485.280000px;}
.y41_c00290{bottom:523.440000px;}
.y3d_c00290{bottom:524.160000px;}
.y3c_c00290{bottom:524.880000px;}
.y40_c00290{bottom:525.600000px;}
.y3f_c00290{bottom:526.320000px;}
.y42_c00290{bottom:527.040000px;}
.y3e_c00290{bottom:527.760000px;}
.y3b_c00290{bottom:528.480000px;}
.y38_c00290{bottom:568.080000px;}
.y39_c00290{bottom:568.800000px;}
.y3a_c00290{bottom:569.520000px;}
.y36_c00290{bottom:570.240000px;}
.y37_c00290{bottom:570.960000px;}
.y33_c00290{bottom:610.560000px;}
.y31_c00290{bottom:611.280000px;}
.y32_c00290{bottom:612.000000px;}
.y34_c00290{bottom:613.440000px;}
.y35_c00290{bottom:614.160000px;}
.y2f_c00290{bottom:654.480000px;}
.y2d_c00290{bottom:655.200000px;}
.y30_c00290{bottom:656.640000px;}
.y2e_c00290{bottom:657.360000px;}
.y2b_c00290{bottom:708.480000px;}
.y2c_c00290{bottom:709.200000px;}
.y2a_c00290{bottom:710.640000px;}
.y27_c00290{bottom:749.520000px;}
.y29_c00290{bottom:750.240000px;}
.y26_c00290{bottom:751.680000px;}
.y28_c00290{bottom:752.400000px;}
.y25_c00290{bottom:753.840000px;}
.y23_c00290{bottom:792.720000px;}
.y22_c00290{bottom:793.440000px;}
.y21_c00290{bottom:794.160000px;}
.y20_c00290{bottom:794.880000px;}
.y24_c00290{bottom:795.600000px;}
.y1e_c00290{bottom:796.320000px;}
.y1f_c00290{bottom:797.040000px;}
.y1a_c00290{bottom:836.640000px;}
.y1d_c00290{bottom:838.800000px;}
.y1c_c00290{bottom:839.520000px;}
.y1b_c00290{bottom:840.240000px;}
.y19_c00290{bottom:879.120000px;}
.y18_c00290{bottom:879.840000px;}
.y16_c00290{bottom:882.000000px;}
.y17_c00290{bottom:882.720000px;}
.y15_c00290{bottom:922.320000px;}
.y11_c00290{bottom:923.040000px;}
.y12_c00290{bottom:925.200000px;}
.y14_c00290{bottom:925.920000px;}
.y13_c00290{bottom:926.640000px;}
.ye_c00290{bottom:965.520000px;}
.yf_c00290{bottom:966.240000px;}
.y10_c00290{bottom:967.680000px;}
.yd_c00290{bottom:968.400000px;}
.yb_c00290{bottom:1008.000000px;}
.y9_c00290{bottom:1009.440000px;}
.yc_c00290{bottom:1010.880000px;}
.ya_c00290{bottom:1011.600000px;}
.y8_c00290{bottom:1052.640000px;}
.y7_c00290{bottom:1053.360000px;}
.y3_c00290{bottom:1054.080000px;}
.y2_c00290{bottom:1054.800000px;}
.y6_c00290{bottom:1055.520000px;}
.y5_c00290{bottom:1056.240000px;}
.y4_c00290{bottom:1056.960000px;}
.y1_c00290{bottom:1098.000000px;}
.h14_c00290{height:18.142031px;}
.h7_c00290{height:20.733750px;}
.h13_c00290{height:23.325469px;}
.h5_c00290{height:31.100625px;}
.h9_c00290{height:33.692344px;}
.hd_c00290{height:36.284062px;}
.hf_c00290{height:38.875781px;}
.he_c00290{height:41.467500px;}
.h6_c00290{height:44.059219px;}
.h3_c00290{height:46.650937px;}
.hb_c00290{height:49.242656px;}
.ha_c00290{height:51.834375px;}
.h4_c00290{height:54.426094px;}
.h11_c00290{height:56.729531px;}
.h8_c00290{height:57.017812px;}
.hc_c00290{height:59.609531px;}
.h10_c00290{height:62.201250px;}
.h15_c00290{height:64.792969px;}
.h12_c00290{height:67.384687px;}
.h2_c00290{height:69.976406px;}
.h0_c00290{height:1158.480000px;}
.h1_c00290{height:1158.750000px;}
.w0_c00290{width:777.600000px;}
.w1_c00290{width:777.750000px;}
.x0_c00290{left:0.000000px;}
.x2_c00290{left:72.720000px;}
.x32_c00290{left:74.160000px;}
.x46_c00290{left:75.600000px;}
.x51_c00290{left:77.040000px;}
.x3_c00290{left:104.400000px;}
.x40_c00290{left:105.840000px;}
.x3e_c00290{left:115.920000px;}
.x47_c00290{left:126.000000px;}
.x52_c00290{left:127.440000px;}
.x4c_c00290{left:135.360000px;}
.x16_c00290{left:136.800000px;}
.x54_c00290{left:146.880000px;}
.x1c_c00290{left:148.320000px;}
.x4_c00290{left:159.120000px;}
.x2a_c00290{left:169.200000px;}
.x48_c00290{left:170.640000px;}
.x1d_c00290{left:179.280000px;}
.x5_c00290{left:181.440000px;}
.x33_c00290{left:191.520000px;}
.x2b_c00290{left:201.600000px;}
.x24_c00290{left:212.400000px;}
.x44_c00290{left:223.200000px;}
.x34_c00290{left:224.640000px;}
.x6_c00290{left:233.280000px;}
.x36_c00290{left:235.440000px;}
.xf_c00290{left:244.800000px;}
.x7_c00290{left:257.040000px;}
.x49_c00290{left:267.120000px;}
.x8_c00290{left:277.200000px;}
.x10_c00290{left:278.640000px;}
.x17_c00290{left:288.720000px;}
.x9_c00290{left:299.520000px;}
.x1e_c00290{left:310.320000px;}
.x2c_c00290{left:321.120000px;}
.x41_c00290{left:330.480000px;}
.xa_c00290{left:332.640000px;}
.x2d_c00290{left:342.720000px;}
.x1f_c00290{left:344.880000px;}
.x30_c00290{left:352.080000px;}
.x25_c00290{left:353.520000px;}
.x4f_c00290{left:364.320000px;}
.x18_c00290{left:375.120000px;}
.xb_c00290{left:385.920000px;}
.x11_c00290{left:396.000000px;}
.x37_c00290{left:397.440000px;}
.xc_c00290{left:408.240000px;}
.x38_c00290{left:419.040000px;}
.x2e_c00290{left:428.400000px;}
.x42_c00290{left:430.560000px;}
.x20_c00290{left:440.640000px;}
.x39_c00290{left:450.720000px;}
.xd_c00290{left:460.080000px;}
.x12_c00290{left:462.240000px;}
.x26_c00290{left:471.600000px;}
.x3f_c00290{left:473.040000px;}
.x21_c00290{left:483.840000px;}
.x4d_c00290{left:492.480000px;}
.x3a_c00290{left:494.640000px;}
.x35_c00290{left:504.720000px;}
.x3b_c00290{left:514.080000px;}
.xe_c00290{left:525.600000px;}
.x19_c00290{left:537.120000px;}
.x13_c00290{left:547.920000px;}
.x3c_c00290{left:549.360000px;}
.x2f_c00290{left:558.000000px;}
.x14_c00290{left:569.520000px;}
.x45_c00290{left:570.960000px;}
.x3d_c00290{left:579.600000px;}
.x22_c00290{left:581.040000px;}
.x50_c00290{left:590.400000px;}
.x4e_c00290{left:601.200000px;}
.x15_c00290{left:602.640000px;}
.x23_c00290{left:613.440000px;}
.x31_c00290{left:622.800000px;}
.x4a_c00290{left:633.600000px;}
.x27_c00290{left:645.120000px;}
.x1a_c00290{left:655.920000px;}
.x4b_c00290{left:665.280000px;}
.x28_c00290{left:666.720000px;}
.x53_c00290{left:676.080000px;}
.x1_c00290{left:678.240000px;}
.x1b_c00290{left:686.880000px;}
.x43_c00290{left:689.040000px;}
.x29_c00290{left:697.680000px;}
@media print{
.v2_c00290{vertical-align:-5.120000pt;}
.v1_c00290{vertical-align:-2.560000pt;}
.v0_c00290{vertical-align:0.000000pt;}
.ls0_c00290{letter-spacing:0.000000pt;}
.ws0_c00290{word-spacing:-3.035520pt;}
.ws1_c00290{word-spacing:-0.398933pt;}
.ws3_c00290{word-spacing:0.000000pt;}
.ws2_c00290{word-spacing:3.565867pt;}
.fs11_c00290{font-size:17.920000pt;}
.fs5_c00290{font-size:20.480000pt;}
.fs10_c00290{font-size:23.040000pt;}
.fs3_c00290{font-size:30.720000pt;}
.fs7_c00290{font-size:33.280000pt;}
.fsb_c00290{font-size:35.840000pt;}
.fsd_c00290{font-size:38.400000pt;}
.fsc_c00290{font-size:40.960000pt;}
.fs4_c00290{font-size:43.520000pt;}
.fs1_c00290{font-size:46.080000pt;}
.fs9_c00290{font-size:48.640000pt;}
.fs8_c00290{font-size:51.200000pt;}
.fs2_c00290{font-size:53.760000pt;}
.fs6_c00290{font-size:56.320000pt;}
.fsa_c00290{font-size:58.880000pt;}
.fse_c00290{font-size:61.440000pt;}
.fs12_c00290{font-size:64.000000pt;}
.fsf_c00290{font-size:66.560000pt;}
.fs0_c00290{font-size:69.120000pt;}
.y0_c00290{bottom:0.000000pt;}
.y73_c00290{bottom:33.920000pt;}
.y74_c00290{bottom:35.200000pt;}
.y71_c00290{bottom:35.840000pt;}
.y72_c00290{bottom:36.480000pt;}
.y6f_c00290{bottom:72.960000pt;}
.y6e_c00290{bottom:74.240000pt;}
.y6d_c00290{bottom:74.880000pt;}
.y70_c00290{bottom:76.160000pt;}
.y68_c00290{bottom:111.360000pt;}
.y69_c00290{bottom:112.000000pt;}
.y6a_c00290{bottom:113.280000pt;}
.y6b_c00290{bottom:113.920000pt;}
.y6c_c00290{bottom:114.560000pt;}
.y67_c00290{bottom:150.400000pt;}
.y65_c00290{bottom:151.040000pt;}
.y63_c00290{bottom:151.680000pt;}
.y64_c00290{bottom:152.320000pt;}
.y66_c00290{bottom:152.960000pt;}
.y62_c00290{bottom:153.600000pt;}
.y5f_c00290{bottom:188.160000pt;}
.y61_c00290{bottom:188.800000pt;}
.y60_c00290{bottom:190.080000pt;}
.y5e_c00290{bottom:190.720000pt;}
.y5d_c00290{bottom:227.200000pt;}
.y5b_c00290{bottom:228.480000pt;}
.y5c_c00290{bottom:229.120000pt;}
.y5a_c00290{bottom:231.040000pt;}
.y59_c00290{bottom:264.960000pt;}
.y58_c00290{bottom:266.880000pt;}
.y57_c00290{bottom:267.520000pt;}
.y55_c00290{bottom:302.720000pt;}
.y53_c00290{bottom:303.360000pt;}
.y52_c00290{bottom:304.640000pt;}
.y54_c00290{bottom:305.280000pt;}
.y56_c00290{bottom:305.920000pt;}
.y4e_c00290{bottom:341.760000pt;}
.y50_c00290{bottom:343.040000pt;}
.y4f_c00290{bottom:343.680000pt;}
.y51_c00290{bottom:344.320000pt;}
.y4d_c00290{bottom:344.960000pt;}
.y4b_c00290{bottom:380.160000pt;}
.y4c_c00290{bottom:381.440000pt;}
.y4a_c00290{bottom:382.080000pt;}
.y49_c00290{bottom:382.720000pt;}
.y46_c00290{bottom:427.520000pt;}
.y44_c00290{bottom:428.800000pt;}
.y48_c00290{bottom:429.440000pt;}
.y47_c00290{bottom:430.080000pt;}
.y45_c00290{bottom:430.720000pt;}
.y43_c00290{bottom:431.360000pt;}
.y41_c00290{bottom:465.280000pt;}
.y3d_c00290{bottom:465.920000pt;}
.y3c_c00290{bottom:466.560000pt;}
.y40_c00290{bottom:467.200000pt;}
.y3f_c00290{bottom:467.840000pt;}
.y42_c00290{bottom:468.480000pt;}
.y3e_c00290{bottom:469.120000pt;}
.y3b_c00290{bottom:469.760000pt;}
.y38_c00290{bottom:504.960000pt;}
.y39_c00290{bottom:505.600000pt;}
.y3a_c00290{bottom:506.240000pt;}
.y36_c00290{bottom:506.880000pt;}
.y37_c00290{bottom:507.520000pt;}
.y33_c00290{bottom:542.720000pt;}
.y31_c00290{bottom:543.360000pt;}
.y32_c00290{bottom:544.000000pt;}
.y34_c00290{bottom:545.280000pt;}
.y35_c00290{bottom:545.920000pt;}
.y2f_c00290{bottom:581.760000pt;}
.y2d_c00290{bottom:582.400000pt;}
.y30_c00290{bottom:583.680000pt;}
.y2e_c00290{bottom:584.320000pt;}
.y2b_c00290{bottom:629.760000pt;}
.y2c_c00290{bottom:630.400000pt;}
.y2a_c00290{bottom:631.680000pt;}
.y27_c00290{bottom:666.240000pt;}
.y29_c00290{bottom:666.880000pt;}
.y26_c00290{bottom:668.160000pt;}
.y28_c00290{bottom:668.800000pt;}
.y25_c00290{bottom:670.080000pt;}
.y23_c00290{bottom:704.640000pt;}
.y22_c00290{bottom:705.280000pt;}
.y21_c00290{bottom:705.920000pt;}
.y20_c00290{bottom:706.560000pt;}
.y24_c00290{bottom:707.200000pt;}
.y1e_c00290{bottom:707.840000pt;}
.y1f_c00290{bottom:708.480000pt;}
.y1a_c00290{bottom:743.680000pt;}
.y1d_c00290{bottom:745.600000pt;}
.y1c_c00290{bottom:746.240000pt;}
.y1b_c00290{bottom:746.880000pt;}
.y19_c00290{bottom:781.440000pt;}
.y18_c00290{bottom:782.080000pt;}
.y16_c00290{bottom:784.000000pt;}
.y17_c00290{bottom:784.640000pt;}
.y15_c00290{bottom:819.840000pt;}
.y11_c00290{bottom:820.480000pt;}
.y12_c00290{bottom:822.400000pt;}
.y14_c00290{bottom:823.040000pt;}
.y13_c00290{bottom:823.680000pt;}
.ye_c00290{bottom:858.240000pt;}
.yf_c00290{bottom:858.880000pt;}
.y10_c00290{bottom:860.160000pt;}
.yd_c00290{bottom:860.800000pt;}
.yb_c00290{bottom:896.000000pt;}
.y9_c00290{bottom:897.280000pt;}
.yc_c00290{bottom:898.560000pt;}
.ya_c00290{bottom:899.200000pt;}
.y8_c00290{bottom:935.680000pt;}
.y7_c00290{bottom:936.320000pt;}
.y3_c00290{bottom:936.960000pt;}
.y2_c00290{bottom:937.600000pt;}
.y6_c00290{bottom:938.240000pt;}
.y5_c00290{bottom:938.880000pt;}
.y4_c00290{bottom:939.520000pt;}
.y1_c00290{bottom:976.000000pt;}
.h14_c00290{height:16.126250pt;}
.h7_c00290{height:18.430000pt;}
.h13_c00290{height:20.733750pt;}
.h5_c00290{height:27.645000pt;}
.h9_c00290{height:29.948750pt;}
.hd_c00290{height:32.252500pt;}
.hf_c00290{height:34.556250pt;}
.he_c00290{height:36.860000pt;}
.h6_c00290{height:39.163750pt;}
.h3_c00290{height:41.467500pt;}
.hb_c00290{height:43.771250pt;}
.ha_c00290{height:46.075000pt;}
.h4_c00290{height:48.378750pt;}
.h11_c00290{height:50.426250pt;}
.h8_c00290{height:50.682500pt;}
.hc_c00290{height:52.986250pt;}
.h10_c00290{height:55.290000pt;}
.h15_c00290{height:57.593750pt;}
.h12_c00290{height:59.897500pt;}
.h2_c00290{height:62.201250pt;}
.h0_c00290{height:1029.760000pt;}
.h1_c00290{height:1030.000000pt;}
.w0_c00290{width:691.200000pt;}
.w1_c00290{width:691.333333pt;}
.x0_c00290{left:0.000000pt;}
.x2_c00290{left:64.640000pt;}
.x32_c00290{left:65.920000pt;}
.x46_c00290{left:67.200000pt;}
.x51_c00290{left:68.480000pt;}
.x3_c00290{left:92.800000pt;}
.x40_c00290{left:94.080000pt;}
.x3e_c00290{left:103.040000pt;}
.x47_c00290{left:112.000000pt;}
.x52_c00290{left:113.280000pt;}
.x4c_c00290{left:120.320000pt;}
.x16_c00290{left:121.600000pt;}
.x54_c00290{left:130.560000pt;}
.x1c_c00290{left:131.840000pt;}
.x4_c00290{left:141.440000pt;}
.x2a_c00290{left:150.400000pt;}
.x48_c00290{left:151.680000pt;}
.x1d_c00290{left:159.360000pt;}
.x5_c00290{left:161.280000pt;}
.x33_c00290{left:170.240000pt;}
.x2b_c00290{left:179.200000pt;}
.x24_c00290{left:188.800000pt;}
.x44_c00290{left:198.400000pt;}
.x34_c00290{left:199.680000pt;}
.x6_c00290{left:207.360000pt;}
.x36_c00290{left:209.280000pt;}
.xf_c00290{left:217.600000pt;}
.x7_c00290{left:228.480000pt;}
.x49_c00290{left:237.440000pt;}
.x8_c00290{left:246.400000pt;}
.x10_c00290{left:247.680000pt;}
.x17_c00290{left:256.640000pt;}
.x9_c00290{left:266.240000pt;}
.x1e_c00290{left:275.840000pt;}
.x2c_c00290{left:285.440000pt;}
.x41_c00290{left:293.760000pt;}
.xa_c00290{left:295.680000pt;}
.x2d_c00290{left:304.640000pt;}
.x1f_c00290{left:306.560000pt;}
.x30_c00290{left:312.960000pt;}
.x25_c00290{left:314.240000pt;}
.x4f_c00290{left:323.840000pt;}
.x18_c00290{left:333.440000pt;}
.xb_c00290{left:343.040000pt;}
.x11_c00290{left:352.000000pt;}
.x37_c00290{left:353.280000pt;}
.xc_c00290{left:362.880000pt;}
.x38_c00290{left:372.480000pt;}
.x2e_c00290{left:380.800000pt;}
.x42_c00290{left:382.720000pt;}
.x20_c00290{left:391.680000pt;}
.x39_c00290{left:400.640000pt;}
.xd_c00290{left:408.960000pt;}
.x12_c00290{left:410.880000pt;}
.x26_c00290{left:419.200000pt;}
.x3f_c00290{left:420.480000pt;}
.x21_c00290{left:430.080000pt;}
.x4d_c00290{left:437.760000pt;}
.x3a_c00290{left:439.680000pt;}
.x35_c00290{left:448.640000pt;}
.x3b_c00290{left:456.960000pt;}
.xe_c00290{left:467.200000pt;}
.x19_c00290{left:477.440000pt;}
.x13_c00290{left:487.040000pt;}
.x3c_c00290{left:488.320000pt;}
.x2f_c00290{left:496.000000pt;}
.x14_c00290{left:506.240000pt;}
.x45_c00290{left:507.520000pt;}
.x3d_c00290{left:515.200000pt;}
.x22_c00290{left:516.480000pt;}
.x50_c00290{left:524.800000pt;}
.x4e_c00290{left:534.400000pt;}
.x15_c00290{left:535.680000pt;}
.x23_c00290{left:545.280000pt;}
.x31_c00290{left:553.600000pt;}
.x4a_c00290{left:563.200000pt;}
.x27_c00290{left:573.440000pt;}
.x1a_c00290{left:583.040000pt;}
.x4b_c00290{left:591.360000pt;}
.x28_c00290{left:592.640000pt;}
.x53_c00290{left:600.960000pt;}
.x1_c00290{left:602.880000pt;}
.x1b_c00290{left:610.560000pt;}
.x43_c00290{left:612.480000pt;}
.x29_c00290{left:620.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6ff305bc15fd01abb9addac5.woff2')format("woff");}.ff1_c00291{font-family:ff1_c00291;line-height:1.109863;font-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_c00291{transform:matrix(0.178375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178375,0.000000,0.000000,0.250000,0,0);}
.m3d_c00291{transform:matrix(0.181100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181100,0.000000,0.000000,0.250000,0,0);}
.m3f_c00291{transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);}
.m41_c00291{transform:matrix(0.187375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187375,0.000000,0.000000,0.250000,0,0);}
.m34_c00291{transform:matrix(0.191100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191100,0.000000,0.000000,0.250000,0,0);}
.m3a_c00291{transform:matrix(0.210775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210775,0.000000,0.000000,0.250000,0,0);}
.m58_c00291{transform:matrix(0.236775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236775,0.000000,0.000000,0.250000,0,0);}
.m3e_c00291{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m55_c00291{transform:matrix(0.243775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243775,0.000000,0.000000,0.250000,0,0);}
.m52_c00291{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);}
.m43_c00291{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);}
.m47_c00291{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);}
.m54_c00291{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00291{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00291{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);}
.m40_c00291{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);}
.m36_c00291{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m29_c00291{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);}
.m42_c00291{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00291{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.me_c00291{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m37_c00291{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m30_c00291{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m35_c00291{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m32_c00291{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00291{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m4_c00291{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m12_c00291{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00291{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00291{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00291{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00291{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m27_c00291{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m10_c00291{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m0_c00291{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.mb_c00291{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m26_c00291{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00291{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m6_c00291{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m11_c00291{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);}
.m4c_c00291{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m59_c00291{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);}
.m1a_c00291{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00291{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);}
.m28_c00291{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00291{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00291{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.mf_c00291{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.mc_c00291{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);}
.m49_c00291{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m56_c00291{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m1_c00291{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);}
.m3_c00291{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_c00291{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);}
.m1e_c00291{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00291{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m20_c00291{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m33_c00291{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);}
.m39_c00291{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);}
.m4a_c00291{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m14_c00291{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);}
.m13_c00291{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m15_c00291{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_c00291{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.ma_c00291{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);}
.m2_c00291{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m5_c00291{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m7_c00291{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);}
.m17_c00291{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m48_c00291{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m25_c00291{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m23_c00291{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m19_c00291{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);}
.m1c_c00291{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m16_c00291{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m44_c00291{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m9_c00291{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m31_c00291{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m51_c00291{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);}
.m24_c00291{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m57_c00291{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m22_c00291{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);}
.m50_c00291{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m53_c00291{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m8_c00291{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m21_c00291{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m46_c00291{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m45_c00291{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.md_c00291{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);}
.m4e_c00291{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00291{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00291{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00291{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00291{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);}
.v2_c00291{vertical-align:-2.880000px;}
.v0_c00291{vertical-align:0.000000px;}
.v1_c00291{vertical-align:5.760000px;}
.v3_c00291{vertical-align:8.640000px;}
.v4_c00291{vertical-align:14.400000px;}
.ls0_c00291{letter-spacing:0.000000px;}
.sc__c00291{text-shadow:none;}
.sc0_c00291{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00291{-webkit-text-stroke:0px transparent;}
.sc0_c00291{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00291{word-spacing:-30.282480px;}
.ws5_c00291{word-spacing:0.000000px;}
.ws0_c00291{word-spacing:5.626800px;}
.ws1_c00291{word-spacing:9.096480px;}
.ws3_c00291{word-spacing:9.212400px;}
.ws2_c00291{word-spacing:12.027360px;}
.fc0_c00291{color:transparent;}
.fs6_c00291{font-size:34.560000px;}
.fs9_c00291{font-size:37.440000px;}
.fsc_c00291{font-size:40.320000px;}
.fs5_c00291{font-size:43.200000px;}
.fsb_c00291{font-size:46.080000px;}
.fs4_c00291{font-size:48.960000px;}
.fs1_c00291{font-size:51.840000px;}
.fsd_c00291{font-size:54.720000px;}
.fse_c00291{font-size:57.600000px;}
.fs2_c00291{font-size:60.480000px;}
.fs7_c00291{font-size:63.360000px;}
.fsa_c00291{font-size:66.240000px;}
.fs13_c00291{font-size:69.120000px;}
.fs8_c00291{font-size:72.000000px;}
.fs3_c00291{font-size:74.880000px;}
.fs0_c00291{font-size:77.760000px;}
.fsf_c00291{font-size:80.640000px;}
.fs16_c00291{font-size:86.400000px;}
.fs12_c00291{font-size:89.280000px;}
.fs11_c00291{font-size:92.160000px;}
.fs10_c00291{font-size:95.040000px;}
.fs15_c00291{font-size:100.800000px;}
.fs14_c00291{font-size:103.680000px;}
.y0_c00291{bottom:0.000000px;}
.y75_c00291{bottom:21.600000px;}
.y74_c00291{bottom:24.480000px;}
.y76_c00291{bottom:25.920000px;}
.y73_c00291{bottom:26.640000px;}
.y7a_c00291{bottom:28.800000px;}
.y72_c00291{bottom:63.360000px;}
.y71_c00291{bottom:65.520000px;}
.y77_c00291{bottom:67.680000px;}
.y70_c00291{bottom:68.400000px;}
.y78_c00291{bottom:69.120000px;}
.y6f_c00291{bottom:69.840000px;}
.y79_c00291{bottom:70.560000px;}
.y6b_c00291{bottom:108.720000px;}
.y6e_c00291{bottom:109.440000px;}
.y6c_c00291{bottom:111.600000px;}
.y6d_c00291{bottom:112.320000px;}
.y6a_c00291{bottom:113.040000px;}
.y69_c00291{bottom:151.200000px;}
.y68_c00291{bottom:156.240000px;}
.y64_c00291{bottom:184.320000px;}
.y66_c00291{bottom:185.040000px;}
.y62_c00291{bottom:186.480000px;}
.y63_c00291{bottom:187.920000px;}
.y61_c00291{bottom:188.640000px;}
.y65_c00291{bottom:189.360000px;}
.y67_c00291{bottom:190.800000px;}
.y60_c00291{bottom:228.240000px;}
.y57_c00291{bottom:231.120000px;}
.y59_c00291{bottom:231.840000px;}
.y5f_c00291{bottom:232.560000px;}
.y58_c00291{bottom:233.280000px;}
.y5e_c00291{bottom:271.440000px;}
.y5d_c00291{bottom:274.320000px;}
.y56_c00291{bottom:275.040000px;}
.y5c_c00291{bottom:313.920000px;}
.y5b_c00291{bottom:316.800000px;}
.y53_c00291{bottom:317.520000px;}
.y54_c00291{bottom:318.240000px;}
.y5a_c00291{bottom:318.960000px;}
.y55_c00291{bottom:320.400000px;}
.y4f_c00291{bottom:347.040000px;}
.y50_c00291{bottom:352.800000px;}
.y51_c00291{bottom:353.520000px;}
.y52_c00291{bottom:354.240000px;}
.y4d_c00291{bottom:360.720000px;}
.y4e_c00291{bottom:361.440000px;}
.y4c_c00291{bottom:363.600000px;}
.y4a_c00291{bottom:414.000000px;}
.y4b_c00291{bottom:415.440000px;}
.y49_c00291{bottom:416.160000px;}
.y48_c00291{bottom:416.880000px;}
.y44_c00291{bottom:456.480000px;}
.y47_c00291{bottom:457.200000px;}
.y46_c00291{bottom:459.360000px;}
.y45_c00291{bottom:460.080000px;}
.y43_c00291{bottom:516.240000px;}
.y42_c00291{bottom:544.320000px;}
.y41_c00291{bottom:575.280000px;}
.y40_c00291{bottom:576.720000px;}
.y3f_c00291{bottom:577.440000px;}
.y3b_c00291{bottom:597.600000px;}
.y3e_c00291{bottom:600.480000px;}
.y31_c00291{bottom:602.640000px;}
.y3c_c00291{bottom:603.360000px;}
.y30_c00291{bottom:608.400000px;}
.y2f_c00291{bottom:609.840000px;}
.y3d_c00291{bottom:610.560000px;}
.y3a_c00291{bottom:629.280000px;}
.y2d_c00291{bottom:640.800000px;}
.y2e_c00291{bottom:641.520000px;}
.y39_c00291{bottom:642.240000px;}
.y2c_c00291{bottom:642.960000px;}
.y38_c00291{bottom:664.560000px;}
.y35_c00291{bottom:665.280000px;}
.y36_c00291{bottom:672.480000px;}
.y37_c00291{bottom:673.200000px;}
.y2b_c00291{bottom:673.920000px;}
.y29_c00291{bottom:674.640000px;}
.y28_c00291{bottom:675.360000px;}
.y2a_c00291{bottom:686.160000px;}
.y32_c00291{bottom:696.240000px;}
.y34_c00291{bottom:696.960000px;}
.y33_c00291{bottom:704.880000px;}
.y25_c00291{bottom:706.320000px;}
.y26_c00291{bottom:707.040000px;}
.y27_c00291{bottom:707.760000px;}
.y24_c00291{bottom:708.480000px;}
.y23_c00291{bottom:738.000000px;}
.y22_c00291{bottom:779.760000px;}
.y1f_c00291{bottom:780.480000px;}
.y1e_c00291{bottom:781.920000px;}
.y21_c00291{bottom:782.640000px;}
.y20_c00291{bottom:783.360000px;}
.y1d_c00291{bottom:822.960000px;}
.y1c_c00291{bottom:823.680000px;}
.y1a_c00291{bottom:825.840000px;}
.y1b_c00291{bottom:826.560000px;}
.y19_c00291{bottom:877.680000px;}
.y18_c00291{bottom:878.400000px;}
.y16_c00291{bottom:879.840000px;}
.y17_c00291{bottom:880.560000px;}
.y15_c00291{bottom:920.160000px;}
.y12_c00291{bottom:920.880000px;}
.y11_c00291{bottom:921.600000px;}
.y13_c00291{bottom:923.040000px;}
.y14_c00291{bottom:923.760000px;}
.y10_c00291{bottom:963.360000px;}
.yf_c00291{bottom:964.800000px;}
.yc_c00291{bottom:965.520000px;}
.yd_c00291{bottom:966.240000px;}
.ye_c00291{bottom:967.680000px;}
.yb_c00291{bottom:1005.840000px;}
.ya_c00291{bottom:1006.560000px;}
.y6_c00291{bottom:1008.000000px;}
.y9_c00291{bottom:1008.720000px;}
.y7_c00291{bottom:1009.440000px;}
.y8_c00291{bottom:1010.160000px;}
.y4_c00291{bottom:1049.040000px;}
.y5_c00291{bottom:1049.760000px;}
.y3_c00291{bottom:1050.480000px;}
.y2_c00291{bottom:1052.640000px;}
.y1_c00291{bottom:1089.360000px;}
.h8_c00291{height:31.100625px;}
.hb_c00291{height:33.692344px;}
.he_c00291{height:36.284062px;}
.h7_c00291{height:38.875781px;}
.hd_c00291{height:41.467500px;}
.h6_c00291{height:44.059219px;}
.h3_c00291{height:46.650937px;}
.hf_c00291{height:49.242656px;}
.h10_c00291{height:51.834375px;}
.h19_c00291{height:54.137812px;}
.h4_c00291{height:54.426094px;}
.h9_c00291{height:57.017812px;}
.hc_c00291{height:59.609531px;}
.h15_c00291{height:62.201250px;}
.h1a_c00291{height:63.066094px;}
.ha_c00291{height:64.792969px;}
.h5_c00291{height:67.384687px;}
.h2_c00291{height:69.976406px;}
.h11_c00291{height:72.568125px;}
.h18_c00291{height:77.751563px;}
.h14_c00291{height:80.343281px;}
.h13_c00291{height:82.935000px;}
.h12_c00291{height:85.526719px;}
.h17_c00291{height:90.710156px;}
.h16_c00291{height:93.301875px;}
.h0_c00291{height:1158.480000px;}
.h1_c00291{height:1158.750000px;}
.w0_c00291{width:779.040000px;}
.w1_c00291{width:779.250000px;}
.x0_c00291{left:0.000000px;}
.x7_c00291{left:73.440000px;}
.x12_c00291{left:74.880000px;}
.x2c_c00291{left:76.320000px;}
.x4a_c00291{left:77.760000px;}
.x53_c00291{left:79.200000px;}
.x5a_c00291{left:81.360000px;}
.x13_c00291{left:105.840000px;}
.x32_c00291{left:108.000000px;}
.x8_c00291{left:117.360000px;}
.x35_c00291{left:118.800000px;}
.x1b_c00291{left:126.720000px;}
.x2d_c00291{left:128.160000px;}
.x4c_c00291{left:129.600000px;}
.x9_c00291{left:138.240000px;}
.x31_c00291{left:139.680000px;}
.x21_c00291{left:149.040000px;}
.x4d_c00291{left:151.200000px;}
.xa_c00291{left:170.640000px;}
.x33_c00291{left:172.080000px;}
.x2_c00291{left:181.440000px;}
.x44_c00291{left:183.600000px;}
.x55_c00291{left:192.960000px;}
.x54_c00291{left:194.400000px;}
.x14_c00291{left:202.320000px;}
.x25_c00291{left:213.840000px;}
.x4b_c00291{left:216.000000px;}
.x1c_c00291{left:224.640000px;}
.x22_c00291{left:226.080000px;}
.x3_c00291{left:235.440000px;}
.x5b_c00291{left:236.880000px;}
.x37_c00291{left:246.960000px;}
.x56_c00291{left:248.400000px;}
.x2e_c00291{left:258.480000px;}
.x36_c00291{left:268.560000px;}
.x34_c00291{left:270.000000px;}
.xb_c00291{left:278.640000px;}
.x23_c00291{left:280.080000px;}
.x15_c00291{left:290.880000px;}
.x4_c00291{left:300.240000px;}
.x26_c00291{left:311.760000px;}
.x45_c00291{left:313.200000px;}
.x24_c00291{left:321.840000px;}
.x40_c00291{left:323.280000px;}
.x46_c00291{left:334.080000px;}
.x2f_c00291{left:345.600000px;}
.xc_c00291{left:365.040000px;}
.x57_c00291{left:367.200000px;}
.x1d_c00291{left:375.840000px;}
.x38_c00291{left:378.000000px;}
.x3d_c00291{left:388.800000px;}
.xd_c00291{left:397.440000px;}
.x16_c00291{left:408.960000px;}
.x5_c00291{left:429.840000px;}
.x58_c00291{left:432.000000px;}
.x1e_c00291{left:440.640000px;}
.x17_c00291{left:442.080000px;}
.x27_c00291{left:452.160000px;}
.x39_c00291{left:453.600000px;}
.x47_c00291{left:474.480000px;}
.xe_c00291{left:483.840000px;}
.x28_c00291{left:485.280000px;}
.x3a_c00291{left:496.800000px;}
.x48_c00291{left:506.880000px;}
.x18_c00291{left:518.400000px;}
.xf_c00291{left:527.760000px;}
.x3e_c00291{left:529.200000px;}
.x30_c00291{left:539.280000px;}
.x10_c00291{left:560.160000px;}
.x1f_c00291{left:572.400000px;}
.x19_c00291{left:581.760000px;}
.x42_c00291{left:583.200000px;}
.x11_c00291{left:591.840000px;}
.x43_c00291{left:593.280000px;}
.x29_c00291{left:603.360000px;}
.x6_c00291{left:613.440000px;}
.x3b_c00291{left:615.600000px;}
.x20_c00291{left:626.400000px;}
.x1a_c00291{left:635.040000px;}
.x49_c00291{left:636.480000px;}
.x2a_c00291{left:646.560000px;}
.x51_c00291{left:658.800000px;}
.x4e_c00291{left:668.160000px;}
.x3f_c00291{left:669.600000px;}
.x2b_c00291{left:678.240000px;}
.x5c_c00291{left:691.200000px;}
.x1_c00291{left:695.520000px;}
.x4f_c00291{left:699.840000px;}
.x59_c00291{left:702.000000px;}
.x3c_c00291{left:712.080000px;}
.x52_c00291{left:721.440000px;}
.x5d_c00291{left:722.880000px;}
.x50_c00291{left:732.240000px;}
.x41_c00291{left:734.400000px;}
@media print{
.v2_c00291{vertical-align:-2.560000pt;}
.v0_c00291{vertical-align:0.000000pt;}
.v1_c00291{vertical-align:5.120000pt;}
.v3_c00291{vertical-align:7.680000pt;}
.v4_c00291{vertical-align:12.800000pt;}
.ls0_c00291{letter-spacing:0.000000pt;}
.ws4_c00291{word-spacing:-26.917760pt;}
.ws5_c00291{word-spacing:0.000000pt;}
.ws0_c00291{word-spacing:5.001600pt;}
.ws1_c00291{word-spacing:8.085760pt;}
.ws3_c00291{word-spacing:8.188800pt;}
.ws2_c00291{word-spacing:10.690987pt;}
.fs6_c00291{font-size:30.720000pt;}
.fs9_c00291{font-size:33.280000pt;}
.fsc_c00291{font-size:35.840000pt;}
.fs5_c00291{font-size:38.400000pt;}
.fsb_c00291{font-size:40.960000pt;}
.fs4_c00291{font-size:43.520000pt;}
.fs1_c00291{font-size:46.080000pt;}
.fsd_c00291{font-size:48.640000pt;}
.fse_c00291{font-size:51.200000pt;}
.fs2_c00291{font-size:53.760000pt;}
.fs7_c00291{font-size:56.320000pt;}
.fsa_c00291{font-size:58.880000pt;}
.fs13_c00291{font-size:61.440000pt;}
.fs8_c00291{font-size:64.000000pt;}
.fs3_c00291{font-size:66.560000pt;}
.fs0_c00291{font-size:69.120000pt;}
.fsf_c00291{font-size:71.680000pt;}
.fs16_c00291{font-size:76.800000pt;}
.fs12_c00291{font-size:79.360000pt;}
.fs11_c00291{font-size:81.920000pt;}
.fs10_c00291{font-size:84.480000pt;}
.fs15_c00291{font-size:89.600000pt;}
.fs14_c00291{font-size:92.160000pt;}
.y0_c00291{bottom:0.000000pt;}
.y75_c00291{bottom:19.200000pt;}
.y74_c00291{bottom:21.760000pt;}
.y76_c00291{bottom:23.040000pt;}
.y73_c00291{bottom:23.680000pt;}
.y7a_c00291{bottom:25.600000pt;}
.y72_c00291{bottom:56.320000pt;}
.y71_c00291{bottom:58.240000pt;}
.y77_c00291{bottom:60.160000pt;}
.y70_c00291{bottom:60.800000pt;}
.y78_c00291{bottom:61.440000pt;}
.y6f_c00291{bottom:62.080000pt;}
.y79_c00291{bottom:62.720000pt;}
.y6b_c00291{bottom:96.640000pt;}
.y6e_c00291{bottom:97.280000pt;}
.y6c_c00291{bottom:99.200000pt;}
.y6d_c00291{bottom:99.840000pt;}
.y6a_c00291{bottom:100.480000pt;}
.y69_c00291{bottom:134.400000pt;}
.y68_c00291{bottom:138.880000pt;}
.y64_c00291{bottom:163.840000pt;}
.y66_c00291{bottom:164.480000pt;}
.y62_c00291{bottom:165.760000pt;}
.y63_c00291{bottom:167.040000pt;}
.y61_c00291{bottom:167.680000pt;}
.y65_c00291{bottom:168.320000pt;}
.y67_c00291{bottom:169.600000pt;}
.y60_c00291{bottom:202.880000pt;}
.y57_c00291{bottom:205.440000pt;}
.y59_c00291{bottom:206.080000pt;}
.y5f_c00291{bottom:206.720000pt;}
.y58_c00291{bottom:207.360000pt;}
.y5e_c00291{bottom:241.280000pt;}
.y5d_c00291{bottom:243.840000pt;}
.y56_c00291{bottom:244.480000pt;}
.y5c_c00291{bottom:279.040000pt;}
.y5b_c00291{bottom:281.600000pt;}
.y53_c00291{bottom:282.240000pt;}
.y54_c00291{bottom:282.880000pt;}
.y5a_c00291{bottom:283.520000pt;}
.y55_c00291{bottom:284.800000pt;}
.y4f_c00291{bottom:308.480000pt;}
.y50_c00291{bottom:313.600000pt;}
.y51_c00291{bottom:314.240000pt;}
.y52_c00291{bottom:314.880000pt;}
.y4d_c00291{bottom:320.640000pt;}
.y4e_c00291{bottom:321.280000pt;}
.y4c_c00291{bottom:323.200000pt;}
.y4a_c00291{bottom:368.000000pt;}
.y4b_c00291{bottom:369.280000pt;}
.y49_c00291{bottom:369.920000pt;}
.y48_c00291{bottom:370.560000pt;}
.y44_c00291{bottom:405.760000pt;}
.y47_c00291{bottom:406.400000pt;}
.y46_c00291{bottom:408.320000pt;}
.y45_c00291{bottom:408.960000pt;}
.y43_c00291{bottom:458.880000pt;}
.y42_c00291{bottom:483.840000pt;}
.y41_c00291{bottom:511.360000pt;}
.y40_c00291{bottom:512.640000pt;}
.y3f_c00291{bottom:513.280000pt;}
.y3b_c00291{bottom:531.200000pt;}
.y3e_c00291{bottom:533.760000pt;}
.y31_c00291{bottom:535.680000pt;}
.y3c_c00291{bottom:536.320000pt;}
.y30_c00291{bottom:540.800000pt;}
.y2f_c00291{bottom:542.080000pt;}
.y3d_c00291{bottom:542.720000pt;}
.y3a_c00291{bottom:559.360000pt;}
.y2d_c00291{bottom:569.600000pt;}
.y2e_c00291{bottom:570.240000pt;}
.y39_c00291{bottom:570.880000pt;}
.y2c_c00291{bottom:571.520000pt;}
.y38_c00291{bottom:590.720000pt;}
.y35_c00291{bottom:591.360000pt;}
.y36_c00291{bottom:597.760000pt;}
.y37_c00291{bottom:598.400000pt;}
.y2b_c00291{bottom:599.040000pt;}
.y29_c00291{bottom:599.680000pt;}
.y28_c00291{bottom:600.320000pt;}
.y2a_c00291{bottom:609.920000pt;}
.y32_c00291{bottom:618.880000pt;}
.y34_c00291{bottom:619.520000pt;}
.y33_c00291{bottom:626.560000pt;}
.y25_c00291{bottom:627.840000pt;}
.y26_c00291{bottom:628.480000pt;}
.y27_c00291{bottom:629.120000pt;}
.y24_c00291{bottom:629.760000pt;}
.y23_c00291{bottom:656.000000pt;}
.y22_c00291{bottom:693.120000pt;}
.y1f_c00291{bottom:693.760000pt;}
.y1e_c00291{bottom:695.040000pt;}
.y21_c00291{bottom:695.680000pt;}
.y20_c00291{bottom:696.320000pt;}
.y1d_c00291{bottom:731.520000pt;}
.y1c_c00291{bottom:732.160000pt;}
.y1a_c00291{bottom:734.080000pt;}
.y1b_c00291{bottom:734.720000pt;}
.y19_c00291{bottom:780.160000pt;}
.y18_c00291{bottom:780.800000pt;}
.y16_c00291{bottom:782.080000pt;}
.y17_c00291{bottom:782.720000pt;}
.y15_c00291{bottom:817.920000pt;}
.y12_c00291{bottom:818.560000pt;}
.y11_c00291{bottom:819.200000pt;}
.y13_c00291{bottom:820.480000pt;}
.y14_c00291{bottom:821.120000pt;}
.y10_c00291{bottom:856.320000pt;}
.yf_c00291{bottom:857.600000pt;}
.yc_c00291{bottom:858.240000pt;}
.yd_c00291{bottom:858.880000pt;}
.ye_c00291{bottom:860.160000pt;}
.yb_c00291{bottom:894.080000pt;}
.ya_c00291{bottom:894.720000pt;}
.y6_c00291{bottom:896.000000pt;}
.y9_c00291{bottom:896.640000pt;}
.y7_c00291{bottom:897.280000pt;}
.y8_c00291{bottom:897.920000pt;}
.y4_c00291{bottom:932.480000pt;}
.y5_c00291{bottom:933.120000pt;}
.y3_c00291{bottom:933.760000pt;}
.y2_c00291{bottom:935.680000pt;}
.y1_c00291{bottom:968.320000pt;}
.h8_c00291{height:27.645000pt;}
.hb_c00291{height:29.948750pt;}
.he_c00291{height:32.252500pt;}
.h7_c00291{height:34.556250pt;}
.hd_c00291{height:36.860000pt;}
.h6_c00291{height:39.163750pt;}
.h3_c00291{height:41.467500pt;}
.hf_c00291{height:43.771250pt;}
.h10_c00291{height:46.075000pt;}
.h19_c00291{height:48.122500pt;}
.h4_c00291{height:48.378750pt;}
.h9_c00291{height:50.682500pt;}
.hc_c00291{height:52.986250pt;}
.h15_c00291{height:55.290000pt;}
.h1a_c00291{height:56.058750pt;}
.ha_c00291{height:57.593750pt;}
.h5_c00291{height:59.897500pt;}
.h2_c00291{height:62.201250pt;}
.h11_c00291{height:64.505000pt;}
.h18_c00291{height:69.112500pt;}
.h14_c00291{height:71.416250pt;}
.h13_c00291{height:73.720000pt;}
.h12_c00291{height:76.023750pt;}
.h17_c00291{height:80.631250pt;}
.h16_c00291{height:82.935000pt;}
.h0_c00291{height:1029.760000pt;}
.h1_c00291{height:1030.000000pt;}
.w0_c00291{width:692.480000pt;}
.w1_c00291{width:692.666667pt;}
.x0_c00291{left:0.000000pt;}
.x7_c00291{left:65.280000pt;}
.x12_c00291{left:66.560000pt;}
.x2c_c00291{left:67.840000pt;}
.x4a_c00291{left:69.120000pt;}
.x53_c00291{left:70.400000pt;}
.x5a_c00291{left:72.320000pt;}
.x13_c00291{left:94.080000pt;}
.x32_c00291{left:96.000000pt;}
.x8_c00291{left:104.320000pt;}
.x35_c00291{left:105.600000pt;}
.x1b_c00291{left:112.640000pt;}
.x2d_c00291{left:113.920000pt;}
.x4c_c00291{left:115.200000pt;}
.x9_c00291{left:122.880000pt;}
.x31_c00291{left:124.160000pt;}
.x21_c00291{left:132.480000pt;}
.x4d_c00291{left:134.400000pt;}
.xa_c00291{left:151.680000pt;}
.x33_c00291{left:152.960000pt;}
.x2_c00291{left:161.280000pt;}
.x44_c00291{left:163.200000pt;}
.x55_c00291{left:171.520000pt;}
.x54_c00291{left:172.800000pt;}
.x14_c00291{left:179.840000pt;}
.x25_c00291{left:190.080000pt;}
.x4b_c00291{left:192.000000pt;}
.x1c_c00291{left:199.680000pt;}
.x22_c00291{left:200.960000pt;}
.x3_c00291{left:209.280000pt;}
.x5b_c00291{left:210.560000pt;}
.x37_c00291{left:219.520000pt;}
.x56_c00291{left:220.800000pt;}
.x2e_c00291{left:229.760000pt;}
.x36_c00291{left:238.720000pt;}
.x34_c00291{left:240.000000pt;}
.xb_c00291{left:247.680000pt;}
.x23_c00291{left:248.960000pt;}
.x15_c00291{left:258.560000pt;}
.x4_c00291{left:266.880000pt;}
.x26_c00291{left:277.120000pt;}
.x45_c00291{left:278.400000pt;}
.x24_c00291{left:286.080000pt;}
.x40_c00291{left:287.360000pt;}
.x46_c00291{left:296.960000pt;}
.x2f_c00291{left:307.200000pt;}
.xc_c00291{left:324.480000pt;}
.x57_c00291{left:326.400000pt;}
.x1d_c00291{left:334.080000pt;}
.x38_c00291{left:336.000000pt;}
.x3d_c00291{left:345.600000pt;}
.xd_c00291{left:353.280000pt;}
.x16_c00291{left:363.520000pt;}
.x5_c00291{left:382.080000pt;}
.x58_c00291{left:384.000000pt;}
.x1e_c00291{left:391.680000pt;}
.x17_c00291{left:392.960000pt;}
.x27_c00291{left:401.920000pt;}
.x39_c00291{left:403.200000pt;}
.x47_c00291{left:421.760000pt;}
.xe_c00291{left:430.080000pt;}
.x28_c00291{left:431.360000pt;}
.x3a_c00291{left:441.600000pt;}
.x48_c00291{left:450.560000pt;}
.x18_c00291{left:460.800000pt;}
.xf_c00291{left:469.120000pt;}
.x3e_c00291{left:470.400000pt;}
.x30_c00291{left:479.360000pt;}
.x10_c00291{left:497.920000pt;}
.x1f_c00291{left:508.800000pt;}
.x19_c00291{left:517.120000pt;}
.x42_c00291{left:518.400000pt;}
.x11_c00291{left:526.080000pt;}
.x43_c00291{left:527.360000pt;}
.x29_c00291{left:536.320000pt;}
.x6_c00291{left:545.280000pt;}
.x3b_c00291{left:547.200000pt;}
.x20_c00291{left:556.800000pt;}
.x1a_c00291{left:564.480000pt;}
.x49_c00291{left:565.760000pt;}
.x2a_c00291{left:574.720000pt;}
.x51_c00291{left:585.600000pt;}
.x4e_c00291{left:593.920000pt;}
.x3f_c00291{left:595.200000pt;}
.x2b_c00291{left:602.880000pt;}
.x5c_c00291{left:614.400000pt;}
.x1_c00291{left:618.240000pt;}
.x4f_c00291{left:622.080000pt;}
.x59_c00291{left:624.000000pt;}
.x3c_c00291{left:632.960000pt;}
.x52_c00291{left:641.280000pt;}
.x5d_c00291{left:642.560000pt;}
.x50_c00291{left:650.880000pt;}
.x41_c00291{left:652.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d777bcce7cf6431da2b43f79.woff2')format("woff");}.ff1_c00292{font-family:ff1_c00292;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m45_c00292{transform:matrix(0.182575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182575,0.000000,0.000000,0.250000,0,0);}
.m46_c00292{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m42_c00292{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);}
.m49_c00292{transform:matrix(0.233800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233800,0.000000,0.000000,0.250000,0,0);}
.mf_c00292{transform:matrix(0.237100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237100,0.000000,0.000000,0.250000,0,0);}
.m12_c00292{transform:matrix(0.239275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239275,0.000000,0.000000,0.250000,0,0);}
.m4a_c00292{transform:matrix(0.241325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241325,0.000000,0.000000,0.250000,0,0);}
.m48_c00292{transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);}
.m34_c00292{transform:matrix(0.247125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247125,0.000000,0.000000,0.250000,0,0);}
.m2c_c00292{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m4_c00292{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m36_c00292{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);}
.m44_c00292{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);}
.m39_c00292{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);}
.m41_c00292{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);}
.m3a_c00292{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_c00292{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00292{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m3_c00292{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00292{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mb_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);}
.m2f_c00292{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1_c00292{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m0_c00292{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m15_c00292{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m40_c00292{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m29_c00292{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m28_c00292{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00292{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00292{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00292{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m14_c00292{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00292{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2_c00292{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m30_c00292{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m16_c00292{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m27_c00292{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);}
.m2d_c00292{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m7_c00292{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m9_c00292{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m11_c00292{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);}
.m33_c00292{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00292{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m20_c00292{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);}
.m19_c00292{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m32_c00292{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m13_c00292{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00292{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m25_c00292{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);}
.m37_c00292{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m18_c00292{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);}
.m21_c00292{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.me_c00292{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m6_c00292{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.ma_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);}
.m4b_c00292{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);}
.m35_c00292{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00292{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m24_c00292{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.mc_c00292{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);}
.m31_c00292{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m23_c00292{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m22_c00292{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m26_c00292{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_c00292{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00292{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.md_c00292{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00292{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);}
.m10_c00292{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m38_c00292{transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);}
.m47_c00292{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m5_c00292{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00292{transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00292{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00292{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.m43_c00292{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.v2_c00292{vertical-align:-8.640000px;}
.v0_c00292{vertical-align:0.000000px;}
.v1_c00292{vertical-align:14.400000px;}
.ls0_c00292{letter-spacing:0.000000px;}
.sc__c00292{text-shadow:none;}
.sc0_c00292{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00292{-webkit-text-stroke:0px transparent;}
.sc0_c00292{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00292{word-spacing:-2.619120px;}
.ws2_c00292{word-spacing:0.000000px;}
.ws1_c00292{word-spacing:11.856000px;}
.fc0_c00292{color:transparent;}
.fsa_c00292{font-size:25.920000px;}
.fs3_c00292{font-size:34.560000px;}
.fsd_c00292{font-size:37.440000px;}
.fs9_c00292{font-size:40.320000px;}
.fs4_c00292{font-size:48.960000px;}
.fs5_c00292{font-size:51.840000px;}
.fsc_c00292{font-size:54.720000px;}
.fs0_c00292{font-size:57.600000px;}
.fs1_c00292{font-size:60.480000px;}
.fs7_c00292{font-size:63.360000px;}
.fsb_c00292{font-size:66.240000px;}
.fs2_c00292{font-size:69.120000px;}
.fse_c00292{font-size:72.000000px;}
.fs6_c00292{font-size:74.880000px;}
.fs8_c00292{font-size:77.760000px;}
.y0_c00292{bottom:0.000000px;}
.y4d_c00292{bottom:40.320000px;}
.y4e_c00292{bottom:42.480000px;}
.y4f_c00292{bottom:43.920000px;}
.y49_c00292{bottom:72.000000px;}
.y4c_c00292{bottom:72.720000px;}
.y79_c00292{bottom:74.160000px;}
.y4a_c00292{bottom:74.880000px;}
.y4b_c00292{bottom:75.600000px;}
.y48_c00292{bottom:77.040000px;}
.y78_c00292{bottom:78.480000px;}
.y46_c00292{bottom:118.800000px;}
.y47_c00292{bottom:119.520000px;}
.y45_c00292{bottom:121.680000px;}
.y44_c00292{bottom:169.920000px;}
.y43_c00292{bottom:172.800000px;}
.y42_c00292{bottom:174.240000px;}
.y77_c00292{bottom:176.400000px;}
.y41_c00292{bottom:213.120000px;}
.y74_c00292{bottom:216.000000px;}
.y40_c00292{bottom:216.720000px;}
.y3f_c00292{bottom:217.440000px;}
.y76_c00292{bottom:218.160000px;}
.y75_c00292{bottom:219.600000px;}
.y3e_c00292{bottom:256.320000px;}
.y2_c00292{bottom:259.200000px;}
.y3_c00292{bottom:259.920000px;}
.y3c_c00292{bottom:299.520000px;}
.y1_c00292{bottom:302.400000px;}
.y3d_c00292{bottom:303.120000px;}
.y71_c00292{bottom:303.840000px;}
.y73_c00292{bottom:304.560000px;}
.y72_c00292{bottom:306.000000px;}
.y3a_c00292{bottom:342.720000px;}
.y3b_c00292{bottom:344.160000px;}
.y39_c00292{bottom:345.600000px;}
.y70_c00292{bottom:346.320000px;}
.y38_c00292{bottom:385.200000px;}
.y36_c00292{bottom:388.800000px;}
.y6f_c00292{bottom:389.520000px;}
.y37_c00292{bottom:390.240000px;}
.y35_c00292{bottom:428.400000px;}
.y34_c00292{bottom:432.000000px;}
.y6e_c00292{bottom:433.440000px;}
.y6d_c00292{bottom:434.160000px;}
.y33_c00292{bottom:472.320000px;}
.y6a_c00292{bottom:473.760000px;}
.y6c_c00292{bottom:474.480000px;}
.y32_c00292{bottom:475.200000px;}
.y6b_c00292{bottom:475.920000px;}
.y31_c00292{bottom:515.520000px;}
.y30_c00292{bottom:517.680000px;}
.y68_c00292{bottom:518.400000px;}
.y69_c00292{bottom:519.840000px;}
.y67_c00292{bottom:520.560000px;}
.y2d_c00292{bottom:559.440000px;}
.y2e_c00292{bottom:560.160000px;}
.y2c_c00292{bottom:560.880000px;}
.y66_c00292{bottom:561.600000px;}
.y65_c00292{bottom:562.320000px;}
.y2f_c00292{bottom:563.040000px;}
.y2b_c00292{bottom:601.920000px;}
.y2a_c00292{bottom:604.080000px;}
.y62_c00292{bottom:604.800000px;}
.y64_c00292{bottom:605.520000px;}
.y63_c00292{bottom:606.240000px;}
.y29_c00292{bottom:645.840000px;}
.y28_c00292{bottom:647.280000px;}
.y5f_c00292{bottom:648.720000px;}
.y61_c00292{bottom:649.440000px;}
.y60_c00292{bottom:650.160000px;}
.y26_c00292{bottom:690.480000px;}
.y25_c00292{bottom:691.200000px;}
.y5e_c00292{bottom:691.920000px;}
.y27_c00292{bottom:693.360000px;}
.y23_c00292{bottom:732.960000px;}
.y21_c00292{bottom:733.680000px;}
.y5d_c00292{bottom:734.400000px;}
.y24_c00292{bottom:735.840000px;}
.y22_c00292{bottom:736.560000px;}
.y5c_c00292{bottom:737.280000px;}
.y20_c00292{bottom:775.440000px;}
.y1f_c00292{bottom:776.160000px;}
.y5a_c00292{bottom:777.600000px;}
.y59_c00292{bottom:779.040000px;}
.y5b_c00292{bottom:780.480000px;}
.y1e_c00292{bottom:818.640000px;}
.y1c_c00292{bottom:819.360000px;}
.y58_c00292{bottom:820.080000px;}
.y57_c00292{bottom:820.800000px;}
.y1d_c00292{bottom:822.960000px;}
.y1b_c00292{bottom:861.120000px;}
.y1a_c00292{bottom:861.840000px;}
.y18_c00292{bottom:862.560000px;}
.y56_c00292{bottom:863.280000px;}
.y19_c00292{bottom:865.440000px;}
.y55_c00292{bottom:866.160000px;}
.y15_c00292{bottom:904.320000px;}
.y16_c00292{bottom:905.760000px;}
.y17_c00292{bottom:907.920000px;}
.y13_c00292{bottom:936.720000px;}
.y11_c00292{bottom:937.440000px;}
.y53_c00292{bottom:938.160000px;}
.y52_c00292{bottom:938.880000px;}
.y54_c00292{bottom:939.600000px;}
.y14_c00292{bottom:940.320000px;}
.y12_c00292{bottom:941.040000px;}
.y10_c00292{bottom:979.200000px;}
.ye_c00292{bottom:982.800000px;}
.yf_c00292{bottom:984.240000px;}
.yb_c00292{bottom:1011.600000px;}
.y9_c00292{bottom:1012.320000px;}
.yd_c00292{bottom:1013.760000px;}
.ya_c00292{bottom:1014.480000px;}
.y51_c00292{bottom:1015.200000px;}
.yc_c00292{bottom:1015.920000px;}
.y8_c00292{bottom:1056.240000px;}
.y4_c00292{bottom:1056.960000px;}
.y5_c00292{bottom:1058.400000px;}
.y7_c00292{bottom:1059.840000px;}
.y6_c00292{bottom:1060.560000px;}
.y50_c00292{bottom:1103.760000px;}
.hc_c00292{height:23.325469px;}
.h5_c00292{height:31.100625px;}
.h10_c00292{height:33.692344px;}
.hb_c00292{height:36.284062px;}
.h6_c00292{height:44.059219px;}
.h7_c00292{height:46.650937px;}
.hf_c00292{height:49.242656px;}
.h2_c00292{height:51.834375px;}
.h3_c00292{height:54.426094px;}
.h9_c00292{height:57.017812px;}
.he_c00292{height:59.609531px;}
.hd_c00292{height:61.050938px;}
.h4_c00292{height:62.201250px;}
.h11_c00292{height:64.792969px;}
.h8_c00292{height:67.384687px;}
.ha_c00292{height:69.976406px;}
.h1_c00292{height:1164.000000px;}
.h0_c00292{height:1164.240000px;}
.w1_c00292{width:786.000000px;}
.w0_c00292{width:786.240000px;}
.x0_c00292{left:0.000000px;}
.x5_c00292{left:80.640000px;}
.x19_c00292{left:82.080000px;}
.x20_c00292{left:83.520000px;}
.x25_c00292{left:84.960000px;}
.x29_c00292{left:86.400000px;}
.x6_c00292{left:123.840000px;}
.x26_c00292{left:133.920000px;}
.x11_c00292{left:153.360000px;}
.x7_c00292{left:155.520000px;}
.x10_c00292{left:165.600000px;}
.x27_c00292{left:167.760000px;}
.x8_c00292{left:185.760000px;}
.x12_c00292{left:198.000000px;}
.xa_c00292{left:209.520000px;}
.x9_c00292{left:231.120000px;}
.x28_c00292{left:241.200000px;}
.x1b_c00292{left:251.280000px;}
.x13_c00292{left:252.720000px;}
.x1d_c00292{left:262.800000px;}
.x17_c00292{left:273.600000px;}
.x23_c00292{left:285.120000px;}
.x2b_c00292{left:296.640000px;}
.xb_c00292{left:306.720000px;}
.x21_c00292{left:317.520000px;}
.x18_c00292{left:328.320000px;}
.x24_c00292{left:339.120000px;}
.xc_c00292{left:349.200000px;}
.x1e_c00292{left:350.640000px;}
.x1f_c00292{left:361.440000px;}
.x22_c00292{left:372.240000px;}
.x1a_c00292{left:382.320000px;}
.x1c_c00292{left:391.680000px;}
.x14_c00292{left:393.120000px;}
.x2a_c00292{left:438.480000px;}
.xd_c00292{left:447.120000px;}
.x15_c00292{left:490.320000px;}
.xe_c00292{left:501.120000px;}
.x16_c00292{left:533.520000px;}
.xf_c00292{left:544.320000px;}
.x2_c00292{left:567.360000px;}
.x1_c00292{left:576.720000px;}
.x34_c00292{left:578.160000px;}
.x3_c00292{left:598.320000px;}
.x32_c00292{left:609.120000px;}
.x2e_c00292{left:631.440000px;}
.x31_c00292{left:641.520000px;}
.x33_c00292{left:663.120000px;}
.x2f_c00292{left:664.560000px;}
.x2c_c00292{left:695.520000px;}
.x4_c00292{left:696.960000px;}
.x2d_c00292{left:706.320000px;}
.x36_c00292{left:707.760000px;}
.x30_c00292{left:726.480000px;}
.x35_c00292{left:727.920000px;}
@media print{
.v2_c00292{vertical-align:-7.680000pt;}
.v0_c00292{vertical-align:0.000000pt;}
.v1_c00292{vertical-align:12.800000pt;}
.ls0_c00292{letter-spacing:0.000000pt;}
.ws0_c00292{word-spacing:-2.328107pt;}
.ws2_c00292{word-spacing:0.000000pt;}
.ws1_c00292{word-spacing:10.538667pt;}
.fsa_c00292{font-size:23.040000pt;}
.fs3_c00292{font-size:30.720000pt;}
.fsd_c00292{font-size:33.280000pt;}
.fs9_c00292{font-size:35.840000pt;}
.fs4_c00292{font-size:43.520000pt;}
.fs5_c00292{font-size:46.080000pt;}
.fsc_c00292{font-size:48.640000pt;}
.fs0_c00292{font-size:51.200000pt;}
.fs1_c00292{font-size:53.760000pt;}
.fs7_c00292{font-size:56.320000pt;}
.fsb_c00292{font-size:58.880000pt;}
.fs2_c00292{font-size:61.440000pt;}
.fse_c00292{font-size:64.000000pt;}
.fs6_c00292{font-size:66.560000pt;}
.fs8_c00292{font-size:69.120000pt;}
.y0_c00292{bottom:0.000000pt;}
.y4d_c00292{bottom:35.840000pt;}
.y4e_c00292{bottom:37.760000pt;}
.y4f_c00292{bottom:39.040000pt;}
.y49_c00292{bottom:64.000000pt;}
.y4c_c00292{bottom:64.640000pt;}
.y79_c00292{bottom:65.920000pt;}
.y4a_c00292{bottom:66.560000pt;}
.y4b_c00292{bottom:67.200000pt;}
.y48_c00292{bottom:68.480000pt;}
.y78_c00292{bottom:69.760000pt;}
.y46_c00292{bottom:105.600000pt;}
.y47_c00292{bottom:106.240000pt;}
.y45_c00292{bottom:108.160000pt;}
.y44_c00292{bottom:151.040000pt;}
.y43_c00292{bottom:153.600000pt;}
.y42_c00292{bottom:154.880000pt;}
.y77_c00292{bottom:156.800000pt;}
.y41_c00292{bottom:189.440000pt;}
.y74_c00292{bottom:192.000000pt;}
.y40_c00292{bottom:192.640000pt;}
.y3f_c00292{bottom:193.280000pt;}
.y76_c00292{bottom:193.920000pt;}
.y75_c00292{bottom:195.200000pt;}
.y3e_c00292{bottom:227.840000pt;}
.y2_c00292{bottom:230.400000pt;}
.y3_c00292{bottom:231.040000pt;}
.y3c_c00292{bottom:266.240000pt;}
.y1_c00292{bottom:268.800000pt;}
.y3d_c00292{bottom:269.440000pt;}
.y71_c00292{bottom:270.080000pt;}
.y73_c00292{bottom:270.720000pt;}
.y72_c00292{bottom:272.000000pt;}
.y3a_c00292{bottom:304.640000pt;}
.y3b_c00292{bottom:305.920000pt;}
.y39_c00292{bottom:307.200000pt;}
.y70_c00292{bottom:307.840000pt;}
.y38_c00292{bottom:342.400000pt;}
.y36_c00292{bottom:345.600000pt;}
.y6f_c00292{bottom:346.240000pt;}
.y37_c00292{bottom:346.880000pt;}
.y35_c00292{bottom:380.800000pt;}
.y34_c00292{bottom:384.000000pt;}
.y6e_c00292{bottom:385.280000pt;}
.y6d_c00292{bottom:385.920000pt;}
.y33_c00292{bottom:419.840000pt;}
.y6a_c00292{bottom:421.120000pt;}
.y6c_c00292{bottom:421.760000pt;}
.y32_c00292{bottom:422.400000pt;}
.y6b_c00292{bottom:423.040000pt;}
.y31_c00292{bottom:458.240000pt;}
.y30_c00292{bottom:460.160000pt;}
.y68_c00292{bottom:460.800000pt;}
.y69_c00292{bottom:462.080000pt;}
.y67_c00292{bottom:462.720000pt;}
.y2d_c00292{bottom:497.280000pt;}
.y2e_c00292{bottom:497.920000pt;}
.y2c_c00292{bottom:498.560000pt;}
.y66_c00292{bottom:499.200000pt;}
.y65_c00292{bottom:499.840000pt;}
.y2f_c00292{bottom:500.480000pt;}
.y2b_c00292{bottom:535.040000pt;}
.y2a_c00292{bottom:536.960000pt;}
.y62_c00292{bottom:537.600000pt;}
.y64_c00292{bottom:538.240000pt;}
.y63_c00292{bottom:538.880000pt;}
.y29_c00292{bottom:574.080000pt;}
.y28_c00292{bottom:575.360000pt;}
.y5f_c00292{bottom:576.640000pt;}
.y61_c00292{bottom:577.280000pt;}
.y60_c00292{bottom:577.920000pt;}
.y26_c00292{bottom:613.760000pt;}
.y25_c00292{bottom:614.400000pt;}
.y5e_c00292{bottom:615.040000pt;}
.y27_c00292{bottom:616.320000pt;}
.y23_c00292{bottom:651.520000pt;}
.y21_c00292{bottom:652.160000pt;}
.y5d_c00292{bottom:652.800000pt;}
.y24_c00292{bottom:654.080000pt;}
.y22_c00292{bottom:654.720000pt;}
.y5c_c00292{bottom:655.360000pt;}
.y20_c00292{bottom:689.280000pt;}
.y1f_c00292{bottom:689.920000pt;}
.y5a_c00292{bottom:691.200000pt;}
.y59_c00292{bottom:692.480000pt;}
.y5b_c00292{bottom:693.760000pt;}
.y1e_c00292{bottom:727.680000pt;}
.y1c_c00292{bottom:728.320000pt;}
.y58_c00292{bottom:728.960000pt;}
.y57_c00292{bottom:729.600000pt;}
.y1d_c00292{bottom:731.520000pt;}
.y1b_c00292{bottom:765.440000pt;}
.y1a_c00292{bottom:766.080000pt;}
.y18_c00292{bottom:766.720000pt;}
.y56_c00292{bottom:767.360000pt;}
.y19_c00292{bottom:769.280000pt;}
.y55_c00292{bottom:769.920000pt;}
.y15_c00292{bottom:803.840000pt;}
.y16_c00292{bottom:805.120000pt;}
.y17_c00292{bottom:807.040000pt;}
.y13_c00292{bottom:832.640000pt;}
.y11_c00292{bottom:833.280000pt;}
.y53_c00292{bottom:833.920000pt;}
.y52_c00292{bottom:834.560000pt;}
.y54_c00292{bottom:835.200000pt;}
.y14_c00292{bottom:835.840000pt;}
.y12_c00292{bottom:836.480000pt;}
.y10_c00292{bottom:870.400000pt;}
.ye_c00292{bottom:873.600000pt;}
.yf_c00292{bottom:874.880000pt;}
.yb_c00292{bottom:899.200000pt;}
.y9_c00292{bottom:899.840000pt;}
.yd_c00292{bottom:901.120000pt;}
.ya_c00292{bottom:901.760000pt;}
.y51_c00292{bottom:902.400000pt;}
.yc_c00292{bottom:903.040000pt;}
.y8_c00292{bottom:938.880000pt;}
.y4_c00292{bottom:939.520000pt;}
.y5_c00292{bottom:940.800000pt;}
.y7_c00292{bottom:942.080000pt;}
.y6_c00292{bottom:942.720000pt;}
.y50_c00292{bottom:981.120000pt;}
.hc_c00292{height:20.733750pt;}
.h5_c00292{height:27.645000pt;}
.h10_c00292{height:29.948750pt;}
.hb_c00292{height:32.252500pt;}
.h6_c00292{height:39.163750pt;}
.h7_c00292{height:41.467500pt;}
.hf_c00292{height:43.771250pt;}
.h2_c00292{height:46.075000pt;}
.h3_c00292{height:48.378750pt;}
.h9_c00292{height:50.682500pt;}
.he_c00292{height:52.986250pt;}
.hd_c00292{height:54.267500pt;}
.h4_c00292{height:55.290000pt;}
.h11_c00292{height:57.593750pt;}
.h8_c00292{height:59.897500pt;}
.ha_c00292{height:62.201250pt;}
.h1_c00292{height:1034.666667pt;}
.h0_c00292{height:1034.880000pt;}
.w1_c00292{width:698.666667pt;}
.w0_c00292{width:698.880000pt;}
.x0_c00292{left:0.000000pt;}
.x5_c00292{left:71.680000pt;}
.x19_c00292{left:72.960000pt;}
.x20_c00292{left:74.240000pt;}
.x25_c00292{left:75.520000pt;}
.x29_c00292{left:76.800000pt;}
.x6_c00292{left:110.080000pt;}
.x26_c00292{left:119.040000pt;}
.x11_c00292{left:136.320000pt;}
.x7_c00292{left:138.240000pt;}
.x10_c00292{left:147.200000pt;}
.x27_c00292{left:149.120000pt;}
.x8_c00292{left:165.120000pt;}
.x12_c00292{left:176.000000pt;}
.xa_c00292{left:186.240000pt;}
.x9_c00292{left:205.440000pt;}
.x28_c00292{left:214.400000pt;}
.x1b_c00292{left:223.360000pt;}
.x13_c00292{left:224.640000pt;}
.x1d_c00292{left:233.600000pt;}
.x17_c00292{left:243.200000pt;}
.x23_c00292{left:253.440000pt;}
.x2b_c00292{left:263.680000pt;}
.xb_c00292{left:272.640000pt;}
.x21_c00292{left:282.240000pt;}
.x18_c00292{left:291.840000pt;}
.x24_c00292{left:301.440000pt;}
.xc_c00292{left:310.400000pt;}
.x1e_c00292{left:311.680000pt;}
.x1f_c00292{left:321.280000pt;}
.x22_c00292{left:330.880000pt;}
.x1a_c00292{left:339.840000pt;}
.x1c_c00292{left:348.160000pt;}
.x14_c00292{left:349.440000pt;}
.x2a_c00292{left:389.760000pt;}
.xd_c00292{left:397.440000pt;}
.x15_c00292{left:435.840000pt;}
.xe_c00292{left:445.440000pt;}
.x16_c00292{left:474.240000pt;}
.xf_c00292{left:483.840000pt;}
.x2_c00292{left:504.320000pt;}
.x1_c00292{left:512.640000pt;}
.x34_c00292{left:513.920000pt;}
.x3_c00292{left:531.840000pt;}
.x32_c00292{left:541.440000pt;}
.x2e_c00292{left:561.280000pt;}
.x31_c00292{left:570.240000pt;}
.x33_c00292{left:589.440000pt;}
.x2f_c00292{left:590.720000pt;}
.x2c_c00292{left:618.240000pt;}
.x4_c00292{left:619.520000pt;}
.x2d_c00292{left:627.840000pt;}
.x36_c00292{left:629.120000pt;}
.x30_c00292{left:645.760000pt;}
.x35_c00292{left:647.040000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ca866ff7826d2865c10c1049.woff2')format("woff");}.ff1_c00293{font-family:ff1_c00293;line-height:1.109863;font-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_c00293{transform:matrix(0.218125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218125,0.000000,0.000000,0.250000,0,0);}
.m53_c00293{transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);}
.m51_c00293{transform:matrix(0.243975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243975,0.000000,0.000000,0.250000,0,0);}
.m3f_c00293{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m56_c00293{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m34_c00293{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);}
.m3d_c00293{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m24_c00293{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m15_c00293{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);}
.m54_c00293{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m0_c00293{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00293{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00293{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_c00293{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_c00293{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);}
.m27_c00293{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m4_c00293{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m13_c00293{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);}
.m30_c00293{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);}
.m32_c00293{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.ma_c00293{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00293{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00293{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m9_c00293{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00293{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m43_c00293{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.md_c00293{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m50_c00293{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m7_c00293{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00293{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00293{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00293{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m55_c00293{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m16_c00293{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m47_c00293{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m44_c00293{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mc_c00293{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m6_c00293{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m14_c00293{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1_c00293{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);}
.m3a_c00293{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m23_c00293{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m11_c00293{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m20_c00293{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m18_c00293{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m48_c00293{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m37_c00293{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);}
.m2a_c00293{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m29_c00293{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);}
.m19_c00293{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);}
.m2c_c00293{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);}
.m28_c00293{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m3_c00293{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);}
.m2f_c00293{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);}
.m41_c00293{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m26_c00293{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00293{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m5_c00293{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m38_c00293{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);}
.m40_c00293{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00293{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m36_c00293{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);}
.m31_c00293{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00293{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m45_c00293{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);}
.m35_c00293{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m17_c00293{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);}
.me_c00293{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m46_c00293{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m12_c00293{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);}
.m2d_c00293{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.mf_c00293{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);}
.m2e_c00293{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00293{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m21_c00293{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);}
.m49_c00293{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m2_c00293{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m39_c00293{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00293{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);}
.m25_c00293{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);}
.m52_c00293{transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);}
.m33_c00293{transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00293{transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);}
.m42_c00293{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.mb_c00293{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00293{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00293{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.v0_c00293{vertical-align:0.000000px;}
.v2_c00293{vertical-align:5.760000px;}
.v1_c00293{vertical-align:11.520000px;}
.ls0_c00293{letter-spacing:0.000000px;}
.sc__c00293{text-shadow:none;}
.sc0_c00293{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00293{-webkit-text-stroke:0px transparent;}
.sc0_c00293{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00293{word-spacing:-2.425440px;}
.ws2_c00293{word-spacing:0.000000px;}
.ws1_c00293{word-spacing:28.588560px;}
.fc0_c00293{color:transparent;}
.fsd_c00293{font-size:20.160000px;}
.fs10_c00293{font-size:25.920000px;}
.fs8_c00293{font-size:37.440000px;}
.fsf_c00293{font-size:40.320000px;}
.fsb_c00293{font-size:46.080000px;}
.fs2_c00293{font-size:48.960000px;}
.fs3_c00293{font-size:51.840000px;}
.fs7_c00293{font-size:54.720000px;}
.fs6_c00293{font-size:57.600000px;}
.fs5_c00293{font-size:60.480000px;}
.fs1_c00293{font-size:63.360000px;}
.fsc_c00293{font-size:66.240000px;}
.fs9_c00293{font-size:69.120000px;}
.fse_c00293{font-size:72.000000px;}
.fs4_c00293{font-size:74.880000px;}
.fs0_c00293{font-size:77.760000px;}
.fsa_c00293{font-size:103.680000px;}
.y0_c00293{bottom:0.000000px;}
.y6a_c00293{bottom:27.360000px;}
.y6b_c00293{bottom:28.800000px;}
.y7a_c00293{bottom:31.680000px;}
.y69_c00293{bottom:33.120000px;}
.y67_c00293{bottom:69.840000px;}
.y68_c00293{bottom:73.440000px;}
.y79_c00293{bottom:74.160000px;}
.y66_c00293{bottom:74.880000px;}
.y78_c00293{bottom:75.600000px;}
.y63_c00293{bottom:113.760000px;}
.y65_c00293{bottom:114.480000px;}
.y64_c00293{bottom:115.920000px;}
.y76_c00293{bottom:117.360000px;}
.y77_c00293{bottom:118.080000px;}
.y61_c00293{bottom:118.800000px;}
.y62_c00293{bottom:119.520000px;}
.y60_c00293{bottom:157.680000px;}
.y74_c00293{bottom:159.840000px;}
.y73_c00293{bottom:160.560000px;}
.y5f_c00293{bottom:162.000000px;}
.y75_c00293{bottom:163.440000px;}
.y5e_c00293{bottom:200.880000px;}
.y72_c00293{bottom:203.040000px;}
.y5d_c00293{bottom:204.480000px;}
.y5a_c00293{bottom:244.800000px;}
.y5b_c00293{bottom:245.520000px;}
.y59_c00293{bottom:247.680000px;}
.y5c_c00293{bottom:248.400000px;}
.y70_c00293{bottom:249.120000px;}
.y71_c00293{bottom:249.840000px;}
.y58_c00293{bottom:287.280000px;}
.y6e_c00293{bottom:290.880000px;}
.y57_c00293{bottom:291.600000px;}
.y6f_c00293{bottom:293.040000px;}
.y54_c00293{bottom:331.200000px;}
.y55_c00293{bottom:332.640000px;}
.y6c_c00293{bottom:333.360000px;}
.y53_c00293{bottom:334.080000px;}
.y56_c00293{bottom:334.800000px;}
.y6d_c00293{bottom:336.240000px;}
.y52_c00293{bottom:374.400000px;}
.y51_c00293{bottom:375.120000px;}
.y49_c00293{bottom:376.560000px;}
.y48_c00293{bottom:377.280000px;}
.y4a_c00293{bottom:378.000000px;}
.y50_c00293{bottom:378.720000px;}
.y4e_c00293{bottom:418.320000px;}
.y46_c00293{bottom:419.760000px;}
.y4f_c00293{bottom:421.200000px;}
.y47_c00293{bottom:421.920000px;}
.y4d_c00293{bottom:460.800000px;}
.y4c_c00293{bottom:461.520000px;}
.y45_c00293{bottom:462.240000px;}
.y43_c00293{bottom:462.960000px;}
.y4b_c00293{bottom:463.680000px;}
.y44_c00293{bottom:465.120000px;}
.y3a_c00293{bottom:504.000000px;}
.y39_c00293{bottom:505.440000px;}
.y37_c00293{bottom:547.920000px;}
.y35_c00293{bottom:549.360000px;}
.y36_c00293{bottom:550.800000px;}
.y38_c00293{bottom:551.520000px;}
.y42_c00293{bottom:552.240000px;}
.y33_c00293{bottom:590.400000px;}
.y41_c00293{bottom:591.120000px;}
.y31_c00293{bottom:591.840000px;}
.y34_c00293{bottom:593.280000px;}
.y32_c00293{bottom:594.000000px;}
.y30_c00293{bottom:633.600000px;}
.y40_c00293{bottom:634.320000px;}
.y2e_c00293{bottom:635.040000px;}
.y3f_c00293{bottom:635.760000px;}
.y2f_c00293{bottom:637.200000px;}
.y3c_c00293{bottom:677.520000px;}
.y2c_c00293{bottom:678.240000px;}
.y3d_c00293{bottom:678.960000px;}
.y3e_c00293{bottom:679.680000px;}
.y2d_c00293{bottom:680.400000px;}
.y29_c00293{bottom:720.000000px;}
.y28_c00293{bottom:720.720000px;}
.y27_c00293{bottom:721.440000px;}
.y2b_c00293{bottom:722.880000px;}
.y2a_c00293{bottom:723.600000px;}
.y24_c00293{bottom:762.480000px;}
.y23_c00293{bottom:763.200000px;}
.y25_c00293{bottom:763.920000px;}
.y26_c00293{bottom:766.800000px;}
.y22_c00293{bottom:798.480000px;}
.y20_c00293{bottom:805.680000px;}
.y1d_c00293{bottom:806.400000px;}
.y3b_c00293{bottom:807.120000px;}
.y1e_c00293{bottom:808.560000px;}
.y21_c00293{bottom:809.280000px;}
.y1f_c00293{bottom:810.000000px;}
.y1c_c00293{bottom:853.200000px;}
.y1a_c00293{bottom:881.280000px;}
.y17_c00293{bottom:882.000000px;}
.y19_c00293{bottom:882.720000px;}
.y1b_c00293{bottom:884.160000px;}
.y18_c00293{bottom:885.600000px;}
.y13_c00293{bottom:924.480000px;}
.y14_c00293{bottom:925.200000px;}
.y11_c00293{bottom:925.920000px;}
.y16_c00293{bottom:927.360000px;}
.y15_c00293{bottom:928.080000px;}
.y12_c00293{bottom:928.800000px;}
.yf_c00293{bottom:967.680000px;}
.yd_c00293{bottom:968.400000px;}
.yb_c00293{bottom:969.120000px;}
.y10_c00293{bottom:970.560000px;}
.ye_c00293{bottom:971.280000px;}
.yc_c00293{bottom:972.000000px;}
.y8_c00293{bottom:1011.600000px;}
.ya_c00293{bottom:1013.040000px;}
.y9_c00293{bottom:1014.480000px;}
.y5_c00293{bottom:1054.080000px;}
.y2_c00293{bottom:1055.520000px;}
.y6_c00293{bottom:1056.240000px;}
.y7_c00293{bottom:1056.960000px;}
.y4_c00293{bottom:1058.400000px;}
.y3_c00293{bottom:1059.120000px;}
.y1_c00293{bottom:1099.440000px;}
.hf_c00293{height:18.142031px;}
.h12_c00293{height:23.325469px;}
.ha_c00293{height:33.692344px;}
.h11_c00293{height:36.284062px;}
.hd_c00293{height:41.467500px;}
.h4_c00293{height:44.059219px;}
.h5_c00293{height:46.650937px;}
.h9_c00293{height:49.242656px;}
.h8_c00293{height:51.834375px;}
.h7_c00293{height:54.426094px;}
.h3_c00293{height:57.017812px;}
.he_c00293{height:59.609531px;}
.hb_c00293{height:62.201250px;}
.h10_c00293{height:64.792969px;}
.h6_c00293{height:67.384687px;}
.h2_c00293{height:69.976406px;}
.hc_c00293{height:93.301875px;}
.h1_c00293{height:1161.750000px;}
.h0_c00293{height:1162.080000px;}
.w0_c00293{width:781.920000px;}
.w1_c00293{width:782.250000px;}
.x0_c00293{left:0.000000px;}
.x2_c00293{left:75.600000px;}
.x18_c00293{left:77.040000px;}
.x2c_c00293{left:78.480000px;}
.x31_c00293{left:79.920000px;}
.x35_c00293{left:81.360000px;}
.x33_c00293{left:120.240000px;}
.x3_c00293{left:149.040000px;}
.x1e_c00293{left:150.480000px;}
.x23_c00293{left:182.160000px;}
.x4_c00293{left:192.240000px;}
.x10_c00293{left:193.680000px;}
.x19_c00293{left:203.040000px;}
.xd_c00293{left:225.360000px;}
.x11_c00293{left:226.800000px;}
.x5_c00293{left:236.160000px;}
.x1b_c00293{left:237.600000px;}
.x1f_c00293{left:246.960000px;}
.x16_c00293{left:248.400000px;}
.x2f_c00293{left:258.480000px;}
.x12_c00293{left:281.520000px;}
.x2a_c00293{left:291.600000px;}
.x32_c00293{left:300.960000px;}
.x20_c00293{left:302.400000px;}
.x1c_c00293{left:321.840000px;}
.x6_c00293{left:333.360000px;}
.x13_c00293{left:334.800000px;}
.x21_c00293{left:345.600000px;}
.x2d_c00293{left:354.960000px;}
.x34_c00293{left:356.400000px;}
.x26_c00293{left:367.200000px;}
.x1d_c00293{left:377.280000px;}
.x24_c00293{left:380.160000px;}
.x17_c00293{left:386.640000px;}
.xe_c00293{left:388.800000px;}
.x2e_c00293{left:399.600000px;}
.x27_c00293{left:421.200000px;}
.x2b_c00293{left:432.000000px;}
.x1a_c00293{left:441.360000px;}
.x22_c00293{left:442.800000px;}
.x7_c00293{left:451.440000px;}
.x8_c00293{left:495.360000px;}
.x25_c00293{left:496.800000px;}
.x38_c00293{left:562.320000px;}
.x36_c00293{left:570.960000px;}
.x30_c00293{left:572.400000px;}
.x37_c00293{left:592.560000px;}
.x14_c00293{left:594.000000px;}
.x28_c00293{left:604.800000px;}
.x29_c00293{left:624.960000px;}
.x9_c00293{left:626.400000px;}
.xa_c00293{left:658.800000px;}
.xf_c00293{left:691.200000px;}
.xb_c00293{left:700.560000px;}
.x1_c00293{left:702.000000px;}
.x15_c00293{left:713.520000px;}
.xc_c00293{left:721.440000px;}
@media print{
.v0_c00293{vertical-align:0.000000pt;}
.v2_c00293{vertical-align:5.120000pt;}
.v1_c00293{vertical-align:10.240000pt;}
.ls0_c00293{letter-spacing:0.000000pt;}
.ws0_c00293{word-spacing:-2.155947pt;}
.ws2_c00293{word-spacing:0.000000pt;}
.ws1_c00293{word-spacing:25.412053pt;}
.fsd_c00293{font-size:17.920000pt;}
.fs10_c00293{font-size:23.040000pt;}
.fs8_c00293{font-size:33.280000pt;}
.fsf_c00293{font-size:35.840000pt;}
.fsb_c00293{font-size:40.960000pt;}
.fs2_c00293{font-size:43.520000pt;}
.fs3_c00293{font-size:46.080000pt;}
.fs7_c00293{font-size:48.640000pt;}
.fs6_c00293{font-size:51.200000pt;}
.fs5_c00293{font-size:53.760000pt;}
.fs1_c00293{font-size:56.320000pt;}
.fsc_c00293{font-size:58.880000pt;}
.fs9_c00293{font-size:61.440000pt;}
.fse_c00293{font-size:64.000000pt;}
.fs4_c00293{font-size:66.560000pt;}
.fs0_c00293{font-size:69.120000pt;}
.fsa_c00293{font-size:92.160000pt;}
.y0_c00293{bottom:0.000000pt;}
.y6a_c00293{bottom:24.320000pt;}
.y6b_c00293{bottom:25.600000pt;}
.y7a_c00293{bottom:28.160000pt;}
.y69_c00293{bottom:29.440000pt;}
.y67_c00293{bottom:62.080000pt;}
.y68_c00293{bottom:65.280000pt;}
.y79_c00293{bottom:65.920000pt;}
.y66_c00293{bottom:66.560000pt;}
.y78_c00293{bottom:67.200000pt;}
.y63_c00293{bottom:101.120000pt;}
.y65_c00293{bottom:101.760000pt;}
.y64_c00293{bottom:103.040000pt;}
.y76_c00293{bottom:104.320000pt;}
.y77_c00293{bottom:104.960000pt;}
.y61_c00293{bottom:105.600000pt;}
.y62_c00293{bottom:106.240000pt;}
.y60_c00293{bottom:140.160000pt;}
.y74_c00293{bottom:142.080000pt;}
.y73_c00293{bottom:142.720000pt;}
.y5f_c00293{bottom:144.000000pt;}
.y75_c00293{bottom:145.280000pt;}
.y5e_c00293{bottom:178.560000pt;}
.y72_c00293{bottom:180.480000pt;}
.y5d_c00293{bottom:181.760000pt;}
.y5a_c00293{bottom:217.600000pt;}
.y5b_c00293{bottom:218.240000pt;}
.y59_c00293{bottom:220.160000pt;}
.y5c_c00293{bottom:220.800000pt;}
.y70_c00293{bottom:221.440000pt;}
.y71_c00293{bottom:222.080000pt;}
.y58_c00293{bottom:255.360000pt;}
.y6e_c00293{bottom:258.560000pt;}
.y57_c00293{bottom:259.200000pt;}
.y6f_c00293{bottom:260.480000pt;}
.y54_c00293{bottom:294.400000pt;}
.y55_c00293{bottom:295.680000pt;}
.y6c_c00293{bottom:296.320000pt;}
.y53_c00293{bottom:296.960000pt;}
.y56_c00293{bottom:297.600000pt;}
.y6d_c00293{bottom:298.880000pt;}
.y52_c00293{bottom:332.800000pt;}
.y51_c00293{bottom:333.440000pt;}
.y49_c00293{bottom:334.720000pt;}
.y48_c00293{bottom:335.360000pt;}
.y4a_c00293{bottom:336.000000pt;}
.y50_c00293{bottom:336.640000pt;}
.y4e_c00293{bottom:371.840000pt;}
.y46_c00293{bottom:373.120000pt;}
.y4f_c00293{bottom:374.400000pt;}
.y47_c00293{bottom:375.040000pt;}
.y4d_c00293{bottom:409.600000pt;}
.y4c_c00293{bottom:410.240000pt;}
.y45_c00293{bottom:410.880000pt;}
.y43_c00293{bottom:411.520000pt;}
.y4b_c00293{bottom:412.160000pt;}
.y44_c00293{bottom:413.440000pt;}
.y3a_c00293{bottom:448.000000pt;}
.y39_c00293{bottom:449.280000pt;}
.y37_c00293{bottom:487.040000pt;}
.y35_c00293{bottom:488.320000pt;}
.y36_c00293{bottom:489.600000pt;}
.y38_c00293{bottom:490.240000pt;}
.y42_c00293{bottom:490.880000pt;}
.y33_c00293{bottom:524.800000pt;}
.y41_c00293{bottom:525.440000pt;}
.y31_c00293{bottom:526.080000pt;}
.y34_c00293{bottom:527.360000pt;}
.y32_c00293{bottom:528.000000pt;}
.y30_c00293{bottom:563.200000pt;}
.y40_c00293{bottom:563.840000pt;}
.y2e_c00293{bottom:564.480000pt;}
.y3f_c00293{bottom:565.120000pt;}
.y2f_c00293{bottom:566.400000pt;}
.y3c_c00293{bottom:602.240000pt;}
.y2c_c00293{bottom:602.880000pt;}
.y3d_c00293{bottom:603.520000pt;}
.y3e_c00293{bottom:604.160000pt;}
.y2d_c00293{bottom:604.800000pt;}
.y29_c00293{bottom:640.000000pt;}
.y28_c00293{bottom:640.640000pt;}
.y27_c00293{bottom:641.280000pt;}
.y2b_c00293{bottom:642.560000pt;}
.y2a_c00293{bottom:643.200000pt;}
.y24_c00293{bottom:677.760000pt;}
.y23_c00293{bottom:678.400000pt;}
.y25_c00293{bottom:679.040000pt;}
.y26_c00293{bottom:681.600000pt;}
.y22_c00293{bottom:709.760000pt;}
.y20_c00293{bottom:716.160000pt;}
.y1d_c00293{bottom:716.800000pt;}
.y3b_c00293{bottom:717.440000pt;}
.y1e_c00293{bottom:718.720000pt;}
.y21_c00293{bottom:719.360000pt;}
.y1f_c00293{bottom:720.000000pt;}
.y1c_c00293{bottom:758.400000pt;}
.y1a_c00293{bottom:783.360000pt;}
.y17_c00293{bottom:784.000000pt;}
.y19_c00293{bottom:784.640000pt;}
.y1b_c00293{bottom:785.920000pt;}
.y18_c00293{bottom:787.200000pt;}
.y13_c00293{bottom:821.760000pt;}
.y14_c00293{bottom:822.400000pt;}
.y11_c00293{bottom:823.040000pt;}
.y16_c00293{bottom:824.320000pt;}
.y15_c00293{bottom:824.960000pt;}
.y12_c00293{bottom:825.600000pt;}
.yf_c00293{bottom:860.160000pt;}
.yd_c00293{bottom:860.800000pt;}
.yb_c00293{bottom:861.440000pt;}
.y10_c00293{bottom:862.720000pt;}
.ye_c00293{bottom:863.360000pt;}
.yc_c00293{bottom:864.000000pt;}
.y8_c00293{bottom:899.200000pt;}
.ya_c00293{bottom:900.480000pt;}
.y9_c00293{bottom:901.760000pt;}
.y5_c00293{bottom:936.960000pt;}
.y2_c00293{bottom:938.240000pt;}
.y6_c00293{bottom:938.880000pt;}
.y7_c00293{bottom:939.520000pt;}
.y4_c00293{bottom:940.800000pt;}
.y3_c00293{bottom:941.440000pt;}
.y1_c00293{bottom:977.280000pt;}
.hf_c00293{height:16.126250pt;}
.h12_c00293{height:20.733750pt;}
.ha_c00293{height:29.948750pt;}
.h11_c00293{height:32.252500pt;}
.hd_c00293{height:36.860000pt;}
.h4_c00293{height:39.163750pt;}
.h5_c00293{height:41.467500pt;}
.h9_c00293{height:43.771250pt;}
.h8_c00293{height:46.075000pt;}
.h7_c00293{height:48.378750pt;}
.h3_c00293{height:50.682500pt;}
.he_c00293{height:52.986250pt;}
.hb_c00293{height:55.290000pt;}
.h10_c00293{height:57.593750pt;}
.h6_c00293{height:59.897500pt;}
.h2_c00293{height:62.201250pt;}
.hc_c00293{height:82.935000pt;}
.h1_c00293{height:1032.666667pt;}
.h0_c00293{height:1032.960000pt;}
.w0_c00293{width:695.040000pt;}
.w1_c00293{width:695.333333pt;}
.x0_c00293{left:0.000000pt;}
.x2_c00293{left:67.200000pt;}
.x18_c00293{left:68.480000pt;}
.x2c_c00293{left:69.760000pt;}
.x31_c00293{left:71.040000pt;}
.x35_c00293{left:72.320000pt;}
.x33_c00293{left:106.880000pt;}
.x3_c00293{left:132.480000pt;}
.x1e_c00293{left:133.760000pt;}
.x23_c00293{left:161.920000pt;}
.x4_c00293{left:170.880000pt;}
.x10_c00293{left:172.160000pt;}
.x19_c00293{left:180.480000pt;}
.xd_c00293{left:200.320000pt;}
.x11_c00293{left:201.600000pt;}
.x5_c00293{left:209.920000pt;}
.x1b_c00293{left:211.200000pt;}
.x1f_c00293{left:219.520000pt;}
.x16_c00293{left:220.800000pt;}
.x2f_c00293{left:229.760000pt;}
.x12_c00293{left:250.240000pt;}
.x2a_c00293{left:259.200000pt;}
.x32_c00293{left:267.520000pt;}
.x20_c00293{left:268.800000pt;}
.x1c_c00293{left:286.080000pt;}
.x6_c00293{left:296.320000pt;}
.x13_c00293{left:297.600000pt;}
.x21_c00293{left:307.200000pt;}
.x2d_c00293{left:315.520000pt;}
.x34_c00293{left:316.800000pt;}
.x26_c00293{left:326.400000pt;}
.x1d_c00293{left:335.360000pt;}
.x24_c00293{left:337.920000pt;}
.x17_c00293{left:343.680000pt;}
.xe_c00293{left:345.600000pt;}
.x2e_c00293{left:355.200000pt;}
.x27_c00293{left:374.400000pt;}
.x2b_c00293{left:384.000000pt;}
.x1a_c00293{left:392.320000pt;}
.x22_c00293{left:393.600000pt;}
.x7_c00293{left:401.280000pt;}
.x8_c00293{left:440.320000pt;}
.x25_c00293{left:441.600000pt;}
.x38_c00293{left:499.840000pt;}
.x36_c00293{left:507.520000pt;}
.x30_c00293{left:508.800000pt;}
.x37_c00293{left:526.720000pt;}
.x14_c00293{left:528.000000pt;}
.x28_c00293{left:537.600000pt;}
.x29_c00293{left:555.520000pt;}
.x9_c00293{left:556.800000pt;}
.xa_c00293{left:585.600000pt;}
.xf_c00293{left:614.400000pt;}
.xb_c00293{left:622.720000pt;}
.x1_c00293{left:624.000000pt;}
.x15_c00293{left:634.240000pt;}
.xc_c00293{left:641.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3f867875f58068019fba3236.woff2')format("woff");}.ff1_c00294{font-family:ff1_c00294;line-height:1.109863;font-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_c00294{transform:matrix(0.195075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195075,0.000000,0.000000,0.250000,0,0);}
.m28_c00294{transform:matrix(0.212900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212900,0.000000,0.000000,0.250000,0,0);}
.m1c_c00294{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m3e_c00294{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_c00294{transform:matrix(0.239100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239100,0.000000,0.000000,0.250000,0,0);}
.m1b_c00294{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);}
.m5_c00294{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m18_c00294{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mc_c00294{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m12_c00294{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_c00294{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m24_c00294{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);}
.m44_c00294{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m9_c00294{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_c00294{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.ma_c00294{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);}
.m39_c00294{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.me_c00294{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m26_c00294{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);}
.m2a_c00294{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m36_c00294{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00294{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m7_c00294{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m4_c00294{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m25_c00294{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00294{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m38_c00294{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m2_c00294{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00294{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00294{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.md_c00294{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m19_c00294{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m27_c00294{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m30_c00294{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m29_c00294{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m42_c00294{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m17_c00294{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m21_c00294{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00294{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m41_c00294{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m20_c00294{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00294{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m0_c00294{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m32_c00294{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.mf_c00294{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m45_c00294{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m3_c00294{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);}
.m43_c00294{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.mb_c00294{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);}
.m34_c00294{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m11_c00294{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);}
.m4c_c00294{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);}
.m14_c00294{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);}
.m2f_c00294{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);}
.m4b_c00294{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);}
.m46_c00294{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);}
.m2c_c00294{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);}
.m49_c00294{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m10_c00294{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);}
.m48_c00294{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m23_c00294{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00294{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m31_c00294{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00294{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m47_c00294{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m35_c00294{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);}
.m2d_c00294{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00294{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);}
.m13_c00294{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m22_c00294{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m40_c00294{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m6_c00294{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00294{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m37_c00294{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00294{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m33_c00294{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m16_c00294{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.v0_c00294{vertical-align:0.000000px;}
.v2_c00294{vertical-align:5.760000px;}
.v1_c00294{vertical-align:11.520000px;}
.ls0_c00294{letter-spacing:0.000000px;}
.sc__c00294{text-shadow:none;}
.sc0_c00294{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00294{-webkit-text-stroke:0px transparent;}
.sc0_c00294{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00294{word-spacing:0.000000px;}
.ws2_c00294{word-spacing:9.210378px;}
.ws1_c00294{word-spacing:18.084000px;}
.ws0_c00294{word-spacing:894.690000px;}
.fc0_c00294{color:transparent;}
.fse_c00294{font-size:25.920000px;}
.fsd_c00294{font-size:37.440000px;}
.fsb_c00294{font-size:43.200000px;}
.fsc_c00294{font-size:46.080000px;}
.fs2_c00294{font-size:48.960000px;}
.fs3_c00294{font-size:51.840000px;}
.fs8_c00294{font-size:54.720000px;}
.fs6_c00294{font-size:57.600000px;}
.fs0_c00294{font-size:60.480000px;}
.fsa_c00294{font-size:63.360000px;}
.fsf_c00294{font-size:66.240000px;}
.fs7_c00294{font-size:69.120000px;}
.fs4_c00294{font-size:72.000000px;}
.fs1_c00294{font-size:74.880000px;}
.fs5_c00294{font-size:77.760000px;}
.fs9_c00294{font-size:103.680000px;}
.y0_c00294{bottom:0.000000px;}
.y77_c00294{bottom:29.520000px;}
.y76_c00294{bottom:33.120000px;}
.y75_c00294{bottom:33.840000px;}
.y74_c00294{bottom:34.560000px;}
.y71_c00294{bottom:72.000000px;}
.y72_c00294{bottom:75.600000px;}
.y6f_c00294{bottom:76.320000px;}
.y70_c00294{bottom:77.040000px;}
.y73_c00294{bottom:78.480000px;}
.y6c_c00294{bottom:115.920000px;}
.y6d_c00294{bottom:119.520000px;}
.y6b_c00294{bottom:120.240000px;}
.y6a_c00294{bottom:120.960000px;}
.y6e_c00294{bottom:121.680000px;}
.y68_c00294{bottom:159.840000px;}
.y69_c00294{bottom:162.720000px;}
.y67_c00294{bottom:163.440000px;}
.y66_c00294{bottom:164.880000px;}
.y64_c00294{bottom:204.480000px;}
.y63_c00294{bottom:205.200000px;}
.y65_c00294{bottom:205.920000px;}
.y62_c00294{bottom:208.080000px;}
.y5a_c00294{bottom:257.040000px;}
.y5b_c00294{bottom:257.760000px;}
.y5e_c00294{bottom:258.480000px;}
.y61_c00294{bottom:259.920000px;}
.y59_c00294{bottom:260.640000px;}
.y5c_c00294{bottom:261.360000px;}
.y5d_c00294{bottom:262.080000px;}
.y58_c00294{bottom:299.520000px;}
.y57_c00294{bottom:303.120000px;}
.y56_c00294{bottom:303.840000px;}
.y55_c00294{bottom:304.560000px;}
.y60_c00294{bottom:305.280000px;}
.y52_c00294{bottom:344.880000px;}
.y54_c00294{bottom:346.320000px;}
.y53_c00294{bottom:347.040000px;}
.y4f_c00294{bottom:375.120000px;}
.y51_c00294{bottom:376.560000px;}
.y50_c00294{bottom:377.280000px;}
.y5f_c00294{bottom:378.000000px;}
.y4d_c00294{bottom:378.720000px;}
.y4e_c00294{bottom:379.440000px;}
.y4c_c00294{bottom:418.320000px;}
.y4a_c00294{bottom:450.720000px;}
.y48_c00294{bottom:452.160000px;}
.y4b_c00294{bottom:452.880000px;}
.y46_c00294{bottom:453.600000px;}
.y49_c00294{bottom:454.320000px;}
.y47_c00294{bottom:455.040000px;}
.y40_c00294{bottom:486.720000px;}
.y3c_c00294{bottom:493.920000px;}
.y3d_c00294{bottom:495.360000px;}
.y45_c00294{bottom:496.080000px;}
.y3a_c00294{bottom:496.800000px;}
.y3f_c00294{bottom:497.520000px;}
.y3b_c00294{bottom:498.240000px;}
.y3e_c00294{bottom:500.400000px;}
.y37_c00294{bottom:538.560000px;}
.y38_c00294{bottom:539.280000px;}
.y39_c00294{bottom:540.720000px;}
.y36_c00294{bottom:569.520000px;}
.y35_c00294{bottom:573.120000px;}
.y34_c00294{bottom:573.840000px;}
.y30_c00294{bottom:601.920000px;}
.y33_c00294{bottom:602.640000px;}
.y32_c00294{bottom:603.360000px;}
.y44_c00294{bottom:604.080000px;}
.y2e_c00294{bottom:604.800000px;}
.y31_c00294{bottom:605.520000px;}
.y2f_c00294{bottom:606.240000px;}
.y2d_c00294{bottom:645.840000px;}
.y2b_c00294{bottom:678.240000px;}
.y2c_c00294{bottom:678.960000px;}
.y43_c00294{bottom:679.680000px;}
.y28_c00294{bottom:680.400000px;}
.y2a_c00294{bottom:681.120000px;}
.y29_c00294{bottom:681.840000px;}
.y23_c00294{bottom:721.440000px;}
.y25_c00294{bottom:722.160000px;}
.y22_c00294{bottom:722.880000px;}
.y27_c00294{bottom:723.600000px;}
.y26_c00294{bottom:724.320000px;}
.y24_c00294{bottom:725.040000px;}
.y20_c00294{bottom:763.920000px;}
.y1f_c00294{bottom:764.640000px;}
.y1e_c00294{bottom:765.360000px;}
.y42_c00294{bottom:766.080000px;}
.y21_c00294{bottom:766.800000px;}
.y41_c00294{bottom:767.520000px;}
.y1d_c00294{bottom:807.840000px;}
.y19_c00294{bottom:839.520000px;}
.y18_c00294{bottom:840.960000px;}
.y1c_c00294{bottom:842.400000px;}
.y1b_c00294{bottom:843.120000px;}
.y1a_c00294{bottom:843.840000px;}
.y14_c00294{bottom:882.720000px;}
.y13_c00294{bottom:883.440000px;}
.y15_c00294{bottom:884.160000px;}
.y17_c00294{bottom:885.600000px;}
.y16_c00294{bottom:887.040000px;}
.y11_c00294{bottom:925.920000px;}
.y10_c00294{bottom:926.640000px;}
.y12_c00294{bottom:928.800000px;}
.ye_c00294{bottom:961.200000px;}
.ya_c00294{bottom:969.120000px;}
.yc_c00294{bottom:969.840000px;}
.yf_c00294{bottom:972.000000px;}
.yd_c00294{bottom:972.720000px;}
.yb_c00294{bottom:973.440000px;}
.y6_c00294{bottom:1011.600000px;}
.y5_c00294{bottom:1012.320000px;}
.y9_c00294{bottom:1013.040000px;}
.y7_c00294{bottom:1015.920000px;}
.y4_c00294{bottom:1054.800000px;}
.y1_c00294{bottom:1055.520000px;}
.y2_c00294{bottom:1056.240000px;}
.y3_c00294{bottom:1058.400000px;}
.y8_c00294{bottom:1095.840000px;}
.h10_c00294{height:23.325469px;}
.hf_c00294{height:33.692344px;}
.hd_c00294{height:38.875781px;}
.he_c00294{height:41.467500px;}
.h4_c00294{height:44.059219px;}
.h5_c00294{height:46.650937px;}
.ha_c00294{height:49.242656px;}
.h8_c00294{height:51.834375px;}
.h2_c00294{height:54.426094px;}
.hc_c00294{height:57.017812px;}
.h11_c00294{height:57.594375px;}
.h12_c00294{height:59.609531px;}
.h9_c00294{height:62.201250px;}
.h6_c00294{height:64.792969px;}
.h3_c00294{height:67.384687px;}
.h7_c00294{height:69.976406px;}
.hb_c00294{height:93.301875px;}
.h0_c00294{height:1160.640000px;}
.h1_c00294{height:1161.000000px;}
.w0_c00294{width:781.200000px;}
.w1_c00294{width:781.500000px;}
.x0_c00294{left:0.000000px;}
.x1_c00294{left:76.320000px;}
.x34_c00294{left:77.760000px;}
.x3b_c00294{left:127.440000px;}
.x18_c00294{left:147.600000px;}
.x2_c00294{left:149.040000px;}
.x3c_c00294{left:160.560000px;}
.x1e_c00294{left:191.520000px;}
.xe_c00294{left:192.960000px;}
.x32_c00294{left:203.040000px;}
.x3d_c00294{left:234.000000px;}
.xf_c00294{left:236.160000px;}
.x2e_c00294{left:245.520000px;}
.x19_c00294{left:246.960000px;}
.x35_c00294{left:256.320000px;}
.x30_c00294{left:277.200000px;}
.x6_c00294{left:279.360000px;}
.x33_c00294{left:288.720000px;}
.x2f_c00294{left:290.160000px;}
.x25_c00294{left:300.240000px;}
.x36_c00294{left:310.320000px;}
.x1b_c00294{left:311.760000px;}
.x31_c00294{left:321.840000px;}
.x3_c00294{left:323.280000px;}
.x26_c00294{left:331.920000px;}
.x7_c00294{left:333.360000px;}
.x37_c00294{left:354.960000px;}
.x10_c00294{left:366.480000px;}
.x1f_c00294{left:376.560000px;}
.x15_c00294{left:378.000000px;}
.x1a_c00294{left:398.160000px;}
.x4_c00294{left:408.960000px;}
.x20_c00294{left:419.760000px;}
.x11_c00294{left:421.200000px;}
.x23_c00294{left:441.360000px;}
.x27_c00294{left:462.240000px;}
.x5_c00294{left:463.680000px;}
.x16_c00294{left:473.760000px;}
.x1c_c00294{left:483.840000px;}
.x24_c00294{left:495.360000px;}
.x21_c00294{left:506.160000px;}
.x38_c00294{left:516.240000px;}
.x12_c00294{left:517.680000px;}
.x1d_c00294{left:527.760000px;}
.x17_c00294{left:529.200000px;}
.x22_c00294{left:570.240000px;}
.x9_c00294{left:572.400000px;}
.x39_c00294{left:591.840000px;}
.xd_c00294{left:593.280000px;}
.x14_c00294{left:603.360000px;}
.x3a_c00294{left:624.240000px;}
.x2b_c00294{left:625.680000px;}
.xa_c00294{left:627.120000px;}
.x2c_c00294{left:657.360000px;}
.xb_c00294{left:659.520000px;}
.x28_c00294{left:691.200000px;}
.x8_c00294{left:693.360000px;}
.x2a_c00294{left:700.560000px;}
.xc_c00294{left:702.000000px;}
.x2d_c00294{left:719.280000px;}
.x29_c00294{left:720.720000px;}
.x13_c00294{left:722.160000px;}
@media print{
.v0_c00294{vertical-align:0.000000pt;}
.v2_c00294{vertical-align:5.120000pt;}
.v1_c00294{vertical-align:10.240000pt;}
.ls0_c00294{letter-spacing:0.000000pt;}
.ws3_c00294{word-spacing:0.000000pt;}
.ws2_c00294{word-spacing:8.187003pt;}
.ws1_c00294{word-spacing:16.074667pt;}
.ws0_c00294{word-spacing:795.280000pt;}
.fse_c00294{font-size:23.040000pt;}
.fsd_c00294{font-size:33.280000pt;}
.fsb_c00294{font-size:38.400000pt;}
.fsc_c00294{font-size:40.960000pt;}
.fs2_c00294{font-size:43.520000pt;}
.fs3_c00294{font-size:46.080000pt;}
.fs8_c00294{font-size:48.640000pt;}
.fs6_c00294{font-size:51.200000pt;}
.fs0_c00294{font-size:53.760000pt;}
.fsa_c00294{font-size:56.320000pt;}
.fsf_c00294{font-size:58.880000pt;}
.fs7_c00294{font-size:61.440000pt;}
.fs4_c00294{font-size:64.000000pt;}
.fs1_c00294{font-size:66.560000pt;}
.fs5_c00294{font-size:69.120000pt;}
.fs9_c00294{font-size:92.160000pt;}
.y0_c00294{bottom:0.000000pt;}
.y77_c00294{bottom:26.240000pt;}
.y76_c00294{bottom:29.440000pt;}
.y75_c00294{bottom:30.080000pt;}
.y74_c00294{bottom:30.720000pt;}
.y71_c00294{bottom:64.000000pt;}
.y72_c00294{bottom:67.200000pt;}
.y6f_c00294{bottom:67.840000pt;}
.y70_c00294{bottom:68.480000pt;}
.y73_c00294{bottom:69.760000pt;}
.y6c_c00294{bottom:103.040000pt;}
.y6d_c00294{bottom:106.240000pt;}
.y6b_c00294{bottom:106.880000pt;}
.y6a_c00294{bottom:107.520000pt;}
.y6e_c00294{bottom:108.160000pt;}
.y68_c00294{bottom:142.080000pt;}
.y69_c00294{bottom:144.640000pt;}
.y67_c00294{bottom:145.280000pt;}
.y66_c00294{bottom:146.560000pt;}
.y64_c00294{bottom:181.760000pt;}
.y63_c00294{bottom:182.400000pt;}
.y65_c00294{bottom:183.040000pt;}
.y62_c00294{bottom:184.960000pt;}
.y5a_c00294{bottom:228.480000pt;}
.y5b_c00294{bottom:229.120000pt;}
.y5e_c00294{bottom:229.760000pt;}
.y61_c00294{bottom:231.040000pt;}
.y59_c00294{bottom:231.680000pt;}
.y5c_c00294{bottom:232.320000pt;}
.y5d_c00294{bottom:232.960000pt;}
.y58_c00294{bottom:266.240000pt;}
.y57_c00294{bottom:269.440000pt;}
.y56_c00294{bottom:270.080000pt;}
.y55_c00294{bottom:270.720000pt;}
.y60_c00294{bottom:271.360000pt;}
.y52_c00294{bottom:306.560000pt;}
.y54_c00294{bottom:307.840000pt;}
.y53_c00294{bottom:308.480000pt;}
.y4f_c00294{bottom:333.440000pt;}
.y51_c00294{bottom:334.720000pt;}
.y50_c00294{bottom:335.360000pt;}
.y5f_c00294{bottom:336.000000pt;}
.y4d_c00294{bottom:336.640000pt;}
.y4e_c00294{bottom:337.280000pt;}
.y4c_c00294{bottom:371.840000pt;}
.y4a_c00294{bottom:400.640000pt;}
.y48_c00294{bottom:401.920000pt;}
.y4b_c00294{bottom:402.560000pt;}
.y46_c00294{bottom:403.200000pt;}
.y49_c00294{bottom:403.840000pt;}
.y47_c00294{bottom:404.480000pt;}
.y40_c00294{bottom:432.640000pt;}
.y3c_c00294{bottom:439.040000pt;}
.y3d_c00294{bottom:440.320000pt;}
.y45_c00294{bottom:440.960000pt;}
.y3a_c00294{bottom:441.600000pt;}
.y3f_c00294{bottom:442.240000pt;}
.y3b_c00294{bottom:442.880000pt;}
.y3e_c00294{bottom:444.800000pt;}
.y37_c00294{bottom:478.720000pt;}
.y38_c00294{bottom:479.360000pt;}
.y39_c00294{bottom:480.640000pt;}
.y36_c00294{bottom:506.240000pt;}
.y35_c00294{bottom:509.440000pt;}
.y34_c00294{bottom:510.080000pt;}
.y30_c00294{bottom:535.040000pt;}
.y33_c00294{bottom:535.680000pt;}
.y32_c00294{bottom:536.320000pt;}
.y44_c00294{bottom:536.960000pt;}
.y2e_c00294{bottom:537.600000pt;}
.y31_c00294{bottom:538.240000pt;}
.y2f_c00294{bottom:538.880000pt;}
.y2d_c00294{bottom:574.080000pt;}
.y2b_c00294{bottom:602.880000pt;}
.y2c_c00294{bottom:603.520000pt;}
.y43_c00294{bottom:604.160000pt;}
.y28_c00294{bottom:604.800000pt;}
.y2a_c00294{bottom:605.440000pt;}
.y29_c00294{bottom:606.080000pt;}
.y23_c00294{bottom:641.280000pt;}
.y25_c00294{bottom:641.920000pt;}
.y22_c00294{bottom:642.560000pt;}
.y27_c00294{bottom:643.200000pt;}
.y26_c00294{bottom:643.840000pt;}
.y24_c00294{bottom:644.480000pt;}
.y20_c00294{bottom:679.040000pt;}
.y1f_c00294{bottom:679.680000pt;}
.y1e_c00294{bottom:680.320000pt;}
.y42_c00294{bottom:680.960000pt;}
.y21_c00294{bottom:681.600000pt;}
.y41_c00294{bottom:682.240000pt;}
.y1d_c00294{bottom:718.080000pt;}
.y19_c00294{bottom:746.240000pt;}
.y18_c00294{bottom:747.520000pt;}
.y1c_c00294{bottom:748.800000pt;}
.y1b_c00294{bottom:749.440000pt;}
.y1a_c00294{bottom:750.080000pt;}
.y14_c00294{bottom:784.640000pt;}
.y13_c00294{bottom:785.280000pt;}
.y15_c00294{bottom:785.920000pt;}
.y17_c00294{bottom:787.200000pt;}
.y16_c00294{bottom:788.480000pt;}
.y11_c00294{bottom:823.040000pt;}
.y10_c00294{bottom:823.680000pt;}
.y12_c00294{bottom:825.600000pt;}
.ye_c00294{bottom:854.400000pt;}
.ya_c00294{bottom:861.440000pt;}
.yc_c00294{bottom:862.080000pt;}
.yf_c00294{bottom:864.000000pt;}
.yd_c00294{bottom:864.640000pt;}
.yb_c00294{bottom:865.280000pt;}
.y6_c00294{bottom:899.200000pt;}
.y5_c00294{bottom:899.840000pt;}
.y9_c00294{bottom:900.480000pt;}
.y7_c00294{bottom:903.040000pt;}
.y4_c00294{bottom:937.600000pt;}
.y1_c00294{bottom:938.240000pt;}
.y2_c00294{bottom:938.880000pt;}
.y3_c00294{bottom:940.800000pt;}
.y8_c00294{bottom:974.080000pt;}
.h10_c00294{height:20.733750pt;}
.hf_c00294{height:29.948750pt;}
.hd_c00294{height:34.556250pt;}
.he_c00294{height:36.860000pt;}
.h4_c00294{height:39.163750pt;}
.h5_c00294{height:41.467500pt;}
.ha_c00294{height:43.771250pt;}
.h8_c00294{height:46.075000pt;}
.h2_c00294{height:48.378750pt;}
.hc_c00294{height:50.682500pt;}
.h11_c00294{height:51.195000pt;}
.h12_c00294{height:52.986250pt;}
.h9_c00294{height:55.290000pt;}
.h6_c00294{height:57.593750pt;}
.h3_c00294{height:59.897500pt;}
.h7_c00294{height:62.201250pt;}
.hb_c00294{height:82.935000pt;}
.h0_c00294{height:1031.680000pt;}
.h1_c00294{height:1032.000000pt;}
.w0_c00294{width:694.400000pt;}
.w1_c00294{width:694.666667pt;}
.x0_c00294{left:0.000000pt;}
.x1_c00294{left:67.840000pt;}
.x34_c00294{left:69.120000pt;}
.x3b_c00294{left:113.280000pt;}
.x18_c00294{left:131.200000pt;}
.x2_c00294{left:132.480000pt;}
.x3c_c00294{left:142.720000pt;}
.x1e_c00294{left:170.240000pt;}
.xe_c00294{left:171.520000pt;}
.x32_c00294{left:180.480000pt;}
.x3d_c00294{left:208.000000pt;}
.xf_c00294{left:209.920000pt;}
.x2e_c00294{left:218.240000pt;}
.x19_c00294{left:219.520000pt;}
.x35_c00294{left:227.840000pt;}
.x30_c00294{left:246.400000pt;}
.x6_c00294{left:248.320000pt;}
.x33_c00294{left:256.640000pt;}
.x2f_c00294{left:257.920000pt;}
.x25_c00294{left:266.880000pt;}
.x36_c00294{left:275.840000pt;}
.x1b_c00294{left:277.120000pt;}
.x31_c00294{left:286.080000pt;}
.x3_c00294{left:287.360000pt;}
.x26_c00294{left:295.040000pt;}
.x7_c00294{left:296.320000pt;}
.x37_c00294{left:315.520000pt;}
.x10_c00294{left:325.760000pt;}
.x1f_c00294{left:334.720000pt;}
.x15_c00294{left:336.000000pt;}
.x1a_c00294{left:353.920000pt;}
.x4_c00294{left:363.520000pt;}
.x20_c00294{left:373.120000pt;}
.x11_c00294{left:374.400000pt;}
.x23_c00294{left:392.320000pt;}
.x27_c00294{left:410.880000pt;}
.x5_c00294{left:412.160000pt;}
.x16_c00294{left:421.120000pt;}
.x1c_c00294{left:430.080000pt;}
.x24_c00294{left:440.320000pt;}
.x21_c00294{left:449.920000pt;}
.x38_c00294{left:458.880000pt;}
.x12_c00294{left:460.160000pt;}
.x1d_c00294{left:469.120000pt;}
.x17_c00294{left:470.400000pt;}
.x22_c00294{left:506.880000pt;}
.x9_c00294{left:508.800000pt;}
.x39_c00294{left:526.080000pt;}
.xd_c00294{left:527.360000pt;}
.x14_c00294{left:536.320000pt;}
.x3a_c00294{left:554.880000pt;}
.x2b_c00294{left:556.160000pt;}
.xa_c00294{left:557.440000pt;}
.x2c_c00294{left:584.320000pt;}
.xb_c00294{left:586.240000pt;}
.x28_c00294{left:614.400000pt;}
.x8_c00294{left:616.320000pt;}
.x2a_c00294{left:622.720000pt;}
.xc_c00294{left:624.000000pt;}
.x2d_c00294{left:639.360000pt;}
.x29_c00294{left:640.640000pt;}
.x13_c00294{left:641.920000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1247598ff4a681ade794519a.woff2')format("woff");}.ff1_c00295{font-family:ff1_c00295;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m47_c00295{transform:matrix(0.177600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177600,0.000000,0.000000,0.250000,0,0);}
.m23_c00295{transform:matrix(0.223350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223350,0.000000,0.000000,0.250000,0,0);}
.m37_c00295{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m28_c00295{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m43_c00295{transform:matrix(0.238850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238850,0.000000,0.000000,0.250000,0,0);}
.m30_c00295{transform:matrix(0.240375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240375,0.000000,0.000000,0.250000,0,0);}
.m42_c00295{transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);}
.m3c_c00295{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m4d_c00295{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m40_c00295{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);}
.m3d_c00295{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1_c00295{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);}
.m33_c00295{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);}
.m3a_c00295{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_c00295{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);}
.m27_c00295{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00295{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);}
.m41_c00295{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);}
.m2b_c00295{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00295{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m16_c00295{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00295{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mf_c00295{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);}
.m36_c00295{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.ma_c00295{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m24_c00295{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m17_c00295{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m19_c00295{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m31_c00295{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00295{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m7_c00295{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m14_c00295{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00295{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m25_c00295{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00295{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m6_c00295{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m15_c00295{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m11_c00295{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m39_c00295{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m3_c00295{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mc_c00295{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00295{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00295{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m44_c00295{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00295{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_c00295{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00295{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.me_c00295{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m22_c00295{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m0_c00295{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m26_c00295{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);}
.m2c_c00295{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m5_c00295{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);}
.m2d_c00295{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);}
.m9_c00295{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);}
.m38_c00295{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);}
.m21_c00295{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.mb_c00295{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);}
.m1d_c00295{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m18_c00295{transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00295{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m20_c00295{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);}
.m8_c00295{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m35_c00295{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00295{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m48_c00295{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);}
.m12_c00295{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m34_c00295{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);}
.m49_c00295{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m2_c00295{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);}
.m13_c00295{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m32_c00295{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m10_c00295{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m4_c00295{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);}
.m29_c00295{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m46_c00295{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00295{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.m45_c00295{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.v0_c00295{vertical-align:0.000000px;}
.v1_c00295{vertical-align:8.640000px;}
.ls0_c00295{letter-spacing:0.000000px;}
.sc__c00295{text-shadow:none;}
.sc0_c00295{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00295{-webkit-text-stroke:0px transparent;}
.sc0_c00295{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00295{word-spacing:-6.812880px;}
.ws0_c00295{word-spacing:-5.893920px;}
.ws2_c00295{word-spacing:0.000000px;}
.fc0_c00295{color:transparent;}
.fs6_c00295{font-size:34.560000px;}
.fs2_c00295{font-size:37.440000px;}
.fsf_c00295{font-size:40.320000px;}
.fs3_c00295{font-size:46.080000px;}
.fs8_c00295{font-size:48.960000px;}
.fs5_c00295{font-size:51.840000px;}
.fsd_c00295{font-size:54.720000px;}
.fse_c00295{font-size:57.600000px;}
.fs0_c00295{font-size:60.480000px;}
.fsa_c00295{font-size:63.360000px;}
.fs7_c00295{font-size:66.240000px;}
.fs4_c00295{font-size:69.120000px;}
.fs9_c00295{font-size:72.000000px;}
.fs1_c00295{font-size:74.880000px;}
.fsc_c00295{font-size:77.760000px;}
.fsb_c00295{font-size:115.200000px;}
.y0_c00295{bottom:0.000000px;}
.y6e_c00295{bottom:73.440000px;}
.y6f_c00295{bottom:76.320000px;}
.y70_c00295{bottom:77.040000px;}
.y6d_c00295{bottom:77.760000px;}
.y76_c00295{bottom:78.480000px;}
.y75_c00295{bottom:79.200000px;}
.y6c_c00295{bottom:115.920000px;}
.y6b_c00295{bottom:116.640000px;}
.y74_c00295{bottom:118.800000px;}
.y71_c00295{bottom:119.520000px;}
.y6a_c00295{bottom:120.960000px;}
.y73_c00295{bottom:121.680000px;}
.y72_c00295{bottom:123.120000px;}
.y65_c00295{bottom:159.120000px;}
.y67_c00295{bottom:160.560000px;}
.y68_c00295{bottom:162.000000px;}
.y69_c00295{bottom:162.720000px;}
.y66_c00295{bottom:163.440000px;}
.y64_c00295{bottom:164.160000px;}
.y5d_c00295{bottom:202.320000px;}
.y63_c00295{bottom:205.200000px;}
.y62_c00295{bottom:205.920000px;}
.y5c_c00295{bottom:206.640000px;}
.y5a_c00295{bottom:245.520000px;}
.y60_c00295{bottom:249.120000px;}
.y59_c00295{bottom:249.840000px;}
.y61_c00295{bottom:250.560000px;}
.y57_c00295{bottom:289.440000px;}
.y58_c00295{bottom:290.880000px;}
.y5b_c00295{bottom:293.040000px;}
.y56_c00295{bottom:293.760000px;}
.y5f_c00295{bottom:294.480000px;}
.y53_c00295{bottom:332.640000px;}
.y54_c00295{bottom:334.800000px;}
.y5e_c00295{bottom:335.520000px;}
.y52_c00295{bottom:336.240000px;}
.y55_c00295{bottom:337.680000px;}
.y4c_c00295{bottom:375.840000px;}
.y4e_c00295{bottom:376.560000px;}
.y4f_c00295{bottom:378.000000px;}
.y51_c00295{bottom:378.720000px;}
.y4d_c00295{bottom:379.440000px;}
.y4b_c00295{bottom:380.160000px;}
.y50_c00295{bottom:380.880000px;}
.y45_c00295{bottom:419.760000px;}
.y47_c00295{bottom:420.480000px;}
.y49_c00295{bottom:421.200000px;}
.y48_c00295{bottom:421.920000px;}
.y44_c00295{bottom:422.640000px;}
.y46_c00295{bottom:423.360000px;}
.y4a_c00295{bottom:424.080000px;}
.y43_c00295{bottom:455.760000px;}
.y41_c00295{bottom:462.240000px;}
.y40_c00295{bottom:463.680000px;}
.y42_c00295{bottom:464.400000px;}
.y3e_c00295{bottom:465.840000px;}
.y3f_c00295{bottom:466.560000px;}
.y2a_c00295{bottom:506.160000px;}
.y3b_c00295{bottom:507.600000px;}
.y29_c00295{bottom:508.320000px;}
.y3c_c00295{bottom:509.040000px;}
.y3d_c00295{bottom:509.760000px;}
.y28_c00295{bottom:549.360000px;}
.y3a_c00295{bottom:550.800000px;}
.y27_c00295{bottom:552.240000px;}
.y26_c00295{bottom:592.560000px;}
.y25_c00295{bottom:594.000000px;}
.y39_c00295{bottom:595.440000px;}
.y38_c00295{bottom:596.160000px;}
.y37_c00295{bottom:596.880000px;}
.y24_c00295{bottom:635.760000px;}
.y23_c00295{bottom:637.200000px;}
.y36_c00295{bottom:637.920000px;}
.y35_c00295{bottom:639.360000px;}
.y22_c00295{bottom:678.240000px;}
.y34_c00295{bottom:678.960000px;}
.y21_c00295{bottom:679.680000px;}
.y20_c00295{bottom:721.440000px;}
.y1c_c00295{bottom:722.160000px;}
.y1e_c00295{bottom:722.880000px;}
.y1f_c00295{bottom:724.320000px;}
.y1d_c00295{bottom:725.040000px;}
.y19_c00295{bottom:753.120000px;}
.y1b_c00295{bottom:754.560000px;}
.y17_c00295{bottom:755.280000px;}
.y33_c00295{bottom:756.000000px;}
.y1a_c00295{bottom:756.720000px;}
.y18_c00295{bottom:757.440000px;}
.y16_c00295{bottom:797.040000px;}
.y14_c00295{bottom:797.760000px;}
.y32_c00295{bottom:799.200000px;}
.y15_c00295{bottom:800.640000px;}
.y13_c00295{bottom:839.520000px;}
.y11_c00295{bottom:840.240000px;}
.y12_c00295{bottom:843.120000px;}
.ye_c00295{bottom:882.720000px;}
.yd_c00295{bottom:884.160000px;}
.y31_c00295{bottom:885.600000px;}
.y10_c00295{bottom:886.320000px;}
.yf_c00295{bottom:887.040000px;}
.yc_c00295{bottom:925.920000px;}
.y2f_c00295{bottom:926.640000px;}
.ya_c00295{bottom:927.360000px;}
.y30_c00295{bottom:928.080000px;}
.yb_c00295{bottom:929.520000px;}
.y9_c00295{bottom:969.120000px;}
.y8_c00295{bottom:972.720000px;}
.y7_c00295{bottom:1001.520000px;}
.y5_c00295{bottom:1002.240000px;}
.y6_c00295{bottom:1002.960000px;}
.y2e_c00295{bottom:1004.400000px;}
.y2d_c00295{bottom:1005.120000px;}
.y4_c00295{bottom:1044.720000px;}
.y2_c00295{bottom:1045.440000px;}
.y1_c00295{bottom:1046.160000px;}
.y2c_c00295{bottom:1048.320000px;}
.y3_c00295{bottom:1049.760000px;}
.y2b_c00295{bottom:1087.200000px;}
.h8_c00295{height:31.100625px;}
.h4_c00295{height:33.692344px;}
.h12_c00295{height:36.284062px;}
.h5_c00295{height:41.467500px;}
.ha_c00295{height:44.059219px;}
.h7_c00295{height:46.650937px;}
.hf_c00295{height:49.242656px;}
.h10_c00295{height:51.834375px;}
.h2_c00295{height:54.426094px;}
.h11_c00295{height:55.290938px;}
.hc_c00295{height:57.017812px;}
.h9_c00295{height:59.609531px;}
.h6_c00295{height:62.201250px;}
.hb_c00295{height:64.792969px;}
.h3_c00295{height:67.384687px;}
.he_c00295{height:69.976406px;}
.hd_c00295{height:103.668750px;}
.h1_c00295{height:1149.750000px;}
.h0_c00295{height:1149.840000px;}
.w1_c00295{width:783.000000px;}
.w0_c00295{width:783.360000px;}
.x0_c00295{left:0.000000px;}
.x1_c00295{left:62.640000px;}
.x26_c00295{left:64.080000px;}
.x19_c00295{left:134.640000px;}
.x2_c00295{left:136.080000px;}
.xf_c00295{left:137.520000px;}
.xe_c00295{left:159.840000px;}
.x10_c00295{left:168.480000px;}
.xa_c00295{left:177.840000px;}
.x12_c00295{left:179.280000px;}
.x8_c00295{left:190.800000px;}
.x11_c00295{left:211.680000px;}
.x2a_c00295{left:221.760000px;}
.x3_c00295{left:223.920000px;}
.x9_c00295{left:233.280000px;}
.x2e_c00295{left:254.160000px;}
.x4_c00295{left:266.400000px;}
.x13_c00295{left:277.200000px;}
.x2f_c00295{left:299.520000px;}
.x7_c00295{left:321.120000px;}
.x17_c00295{left:331.200000px;}
.x14_c00295{left:332.640000px;}
.xb_c00295{left:352.080000px;}
.x5_c00295{left:362.880000px;}
.x18_c00295{left:374.400000px;}
.x15_c00295{left:375.840000px;}
.x30_c00295{left:385.920000px;}
.xc_c00295{left:406.800000px;}
.x6_c00295{left:418.320000px;}
.x33_c00295{left:427.680000px;}
.x27_c00295{left:429.120000px;}
.x31_c00295{left:439.920000px;}
.x28_c00295{left:450.000000px;}
.xd_c00295{left:460.800000px;}
.x34_c00295{left:471.600000px;}
.x29_c00295{left:504.000000px;}
.x16_c00295{left:515.520000px;}
.x2b_c00295{left:547.920000px;}
.x21_c00295{left:558.000000px;}
.x23_c00295{left:559.440000px;}
.x22_c00295{left:579.600000px;}
.x1b_c00295{left:591.840000px;}
.x2c_c00295{left:611.280000px;}
.x1e_c00295{left:613.440000px;}
.x2d_c00295{left:644.400000px;}
.x1c_c00295{left:645.840000px;}
.x32_c00295{left:676.800000px;}
.x20_c00295{left:678.240000px;}
.x24_c00295{left:686.880000px;}
.x1d_c00295{left:688.320000px;}
.x1a_c00295{left:695.520000px;}
.x25_c00295{left:707.040000px;}
.x1f_c00295{left:708.480000px;}
@media print{
.v0_c00295{vertical-align:0.000000pt;}
.v1_c00295{vertical-align:7.680000pt;}
.ls0_c00295{letter-spacing:0.000000pt;}
.ws1_c00295{word-spacing:-6.055893pt;}
.ws0_c00295{word-spacing:-5.239040pt;}
.ws2_c00295{word-spacing:0.000000pt;}
.fs6_c00295{font-size:30.720000pt;}
.fs2_c00295{font-size:33.280000pt;}
.fsf_c00295{font-size:35.840000pt;}
.fs3_c00295{font-size:40.960000pt;}
.fs8_c00295{font-size:43.520000pt;}
.fs5_c00295{font-size:46.080000pt;}
.fsd_c00295{font-size:48.640000pt;}
.fse_c00295{font-size:51.200000pt;}
.fs0_c00295{font-size:53.760000pt;}
.fsa_c00295{font-size:56.320000pt;}
.fs7_c00295{font-size:58.880000pt;}
.fs4_c00295{font-size:61.440000pt;}
.fs9_c00295{font-size:64.000000pt;}
.fs1_c00295{font-size:66.560000pt;}
.fsc_c00295{font-size:69.120000pt;}
.fsb_c00295{font-size:102.400000pt;}
.y0_c00295{bottom:0.000000pt;}
.y6e_c00295{bottom:65.280000pt;}
.y6f_c00295{bottom:67.840000pt;}
.y70_c00295{bottom:68.480000pt;}
.y6d_c00295{bottom:69.120000pt;}
.y76_c00295{bottom:69.760000pt;}
.y75_c00295{bottom:70.400000pt;}
.y6c_c00295{bottom:103.040000pt;}
.y6b_c00295{bottom:103.680000pt;}
.y74_c00295{bottom:105.600000pt;}
.y71_c00295{bottom:106.240000pt;}
.y6a_c00295{bottom:107.520000pt;}
.y73_c00295{bottom:108.160000pt;}
.y72_c00295{bottom:109.440000pt;}
.y65_c00295{bottom:141.440000pt;}
.y67_c00295{bottom:142.720000pt;}
.y68_c00295{bottom:144.000000pt;}
.y69_c00295{bottom:144.640000pt;}
.y66_c00295{bottom:145.280000pt;}
.y64_c00295{bottom:145.920000pt;}
.y5d_c00295{bottom:179.840000pt;}
.y63_c00295{bottom:182.400000pt;}
.y62_c00295{bottom:183.040000pt;}
.y5c_c00295{bottom:183.680000pt;}
.y5a_c00295{bottom:218.240000pt;}
.y60_c00295{bottom:221.440000pt;}
.y59_c00295{bottom:222.080000pt;}
.y61_c00295{bottom:222.720000pt;}
.y57_c00295{bottom:257.280000pt;}
.y58_c00295{bottom:258.560000pt;}
.y5b_c00295{bottom:260.480000pt;}
.y56_c00295{bottom:261.120000pt;}
.y5f_c00295{bottom:261.760000pt;}
.y53_c00295{bottom:295.680000pt;}
.y54_c00295{bottom:297.600000pt;}
.y5e_c00295{bottom:298.240000pt;}
.y52_c00295{bottom:298.880000pt;}
.y55_c00295{bottom:300.160000pt;}
.y4c_c00295{bottom:334.080000pt;}
.y4e_c00295{bottom:334.720000pt;}
.y4f_c00295{bottom:336.000000pt;}
.y51_c00295{bottom:336.640000pt;}
.y4d_c00295{bottom:337.280000pt;}
.y4b_c00295{bottom:337.920000pt;}
.y50_c00295{bottom:338.560000pt;}
.y45_c00295{bottom:373.120000pt;}
.y47_c00295{bottom:373.760000pt;}
.y49_c00295{bottom:374.400000pt;}
.y48_c00295{bottom:375.040000pt;}
.y44_c00295{bottom:375.680000pt;}
.y46_c00295{bottom:376.320000pt;}
.y4a_c00295{bottom:376.960000pt;}
.y43_c00295{bottom:405.120000pt;}
.y41_c00295{bottom:410.880000pt;}
.y40_c00295{bottom:412.160000pt;}
.y42_c00295{bottom:412.800000pt;}
.y3e_c00295{bottom:414.080000pt;}
.y3f_c00295{bottom:414.720000pt;}
.y2a_c00295{bottom:449.920000pt;}
.y3b_c00295{bottom:451.200000pt;}
.y29_c00295{bottom:451.840000pt;}
.y3c_c00295{bottom:452.480000pt;}
.y3d_c00295{bottom:453.120000pt;}
.y28_c00295{bottom:488.320000pt;}
.y3a_c00295{bottom:489.600000pt;}
.y27_c00295{bottom:490.880000pt;}
.y26_c00295{bottom:526.720000pt;}
.y25_c00295{bottom:528.000000pt;}
.y39_c00295{bottom:529.280000pt;}
.y38_c00295{bottom:529.920000pt;}
.y37_c00295{bottom:530.560000pt;}
.y24_c00295{bottom:565.120000pt;}
.y23_c00295{bottom:566.400000pt;}
.y36_c00295{bottom:567.040000pt;}
.y35_c00295{bottom:568.320000pt;}
.y22_c00295{bottom:602.880000pt;}
.y34_c00295{bottom:603.520000pt;}
.y21_c00295{bottom:604.160000pt;}
.y20_c00295{bottom:641.280000pt;}
.y1c_c00295{bottom:641.920000pt;}
.y1e_c00295{bottom:642.560000pt;}
.y1f_c00295{bottom:643.840000pt;}
.y1d_c00295{bottom:644.480000pt;}
.y19_c00295{bottom:669.440000pt;}
.y1b_c00295{bottom:670.720000pt;}
.y17_c00295{bottom:671.360000pt;}
.y33_c00295{bottom:672.000000pt;}
.y1a_c00295{bottom:672.640000pt;}
.y18_c00295{bottom:673.280000pt;}
.y16_c00295{bottom:708.480000pt;}
.y14_c00295{bottom:709.120000pt;}
.y32_c00295{bottom:710.400000pt;}
.y15_c00295{bottom:711.680000pt;}
.y13_c00295{bottom:746.240000pt;}
.y11_c00295{bottom:746.880000pt;}
.y12_c00295{bottom:749.440000pt;}
.ye_c00295{bottom:784.640000pt;}
.yd_c00295{bottom:785.920000pt;}
.y31_c00295{bottom:787.200000pt;}
.y10_c00295{bottom:787.840000pt;}
.yf_c00295{bottom:788.480000pt;}
.yc_c00295{bottom:823.040000pt;}
.y2f_c00295{bottom:823.680000pt;}
.ya_c00295{bottom:824.320000pt;}
.y30_c00295{bottom:824.960000pt;}
.yb_c00295{bottom:826.240000pt;}
.y9_c00295{bottom:861.440000pt;}
.y8_c00295{bottom:864.640000pt;}
.y7_c00295{bottom:890.240000pt;}
.y5_c00295{bottom:890.880000pt;}
.y6_c00295{bottom:891.520000pt;}
.y2e_c00295{bottom:892.800000pt;}
.y2d_c00295{bottom:893.440000pt;}
.y4_c00295{bottom:928.640000pt;}
.y2_c00295{bottom:929.280000pt;}
.y1_c00295{bottom:929.920000pt;}
.y2c_c00295{bottom:931.840000pt;}
.y3_c00295{bottom:933.120000pt;}
.y2b_c00295{bottom:966.400000pt;}
.h8_c00295{height:27.645000pt;}
.h4_c00295{height:29.948750pt;}
.h12_c00295{height:32.252500pt;}
.h5_c00295{height:36.860000pt;}
.ha_c00295{height:39.163750pt;}
.h7_c00295{height:41.467500pt;}
.hf_c00295{height:43.771250pt;}
.h10_c00295{height:46.075000pt;}
.h2_c00295{height:48.378750pt;}
.h11_c00295{height:49.147500pt;}
.hc_c00295{height:50.682500pt;}
.h9_c00295{height:52.986250pt;}
.h6_c00295{height:55.290000pt;}
.hb_c00295{height:57.593750pt;}
.h3_c00295{height:59.897500pt;}
.he_c00295{height:62.201250pt;}
.hd_c00295{height:92.150000pt;}
.h1_c00295{height:1022.000000pt;}
.h0_c00295{height:1022.080000pt;}
.w1_c00295{width:696.000000pt;}
.w0_c00295{width:696.320000pt;}
.x0_c00295{left:0.000000pt;}
.x1_c00295{left:55.680000pt;}
.x26_c00295{left:56.960000pt;}
.x19_c00295{left:119.680000pt;}
.x2_c00295{left:120.960000pt;}
.xf_c00295{left:122.240000pt;}
.xe_c00295{left:142.080000pt;}
.x10_c00295{left:149.760000pt;}
.xa_c00295{left:158.080000pt;}
.x12_c00295{left:159.360000pt;}
.x8_c00295{left:169.600000pt;}
.x11_c00295{left:188.160000pt;}
.x2a_c00295{left:197.120000pt;}
.x3_c00295{left:199.040000pt;}
.x9_c00295{left:207.360000pt;}
.x2e_c00295{left:225.920000pt;}
.x4_c00295{left:236.800000pt;}
.x13_c00295{left:246.400000pt;}
.x2f_c00295{left:266.240000pt;}
.x7_c00295{left:285.440000pt;}
.x17_c00295{left:294.400000pt;}
.x14_c00295{left:295.680000pt;}
.xb_c00295{left:312.960000pt;}
.x5_c00295{left:322.560000pt;}
.x18_c00295{left:332.800000pt;}
.x15_c00295{left:334.080000pt;}
.x30_c00295{left:343.040000pt;}
.xc_c00295{left:361.600000pt;}
.x6_c00295{left:371.840000pt;}
.x33_c00295{left:380.160000pt;}
.x27_c00295{left:381.440000pt;}
.x31_c00295{left:391.040000pt;}
.x28_c00295{left:400.000000pt;}
.xd_c00295{left:409.600000pt;}
.x34_c00295{left:419.200000pt;}
.x29_c00295{left:448.000000pt;}
.x16_c00295{left:458.240000pt;}
.x2b_c00295{left:487.040000pt;}
.x21_c00295{left:496.000000pt;}
.x23_c00295{left:497.280000pt;}
.x22_c00295{left:515.200000pt;}
.x1b_c00295{left:526.080000pt;}
.x2c_c00295{left:543.360000pt;}
.x1e_c00295{left:545.280000pt;}
.x2d_c00295{left:572.800000pt;}
.x1c_c00295{left:574.080000pt;}
.x32_c00295{left:601.600000pt;}
.x20_c00295{left:602.880000pt;}
.x24_c00295{left:610.560000pt;}
.x1d_c00295{left:611.840000pt;}
.x1a_c00295{left:618.240000pt;}
.x25_c00295{left:628.480000pt;}
.x1f_c00295{left:629.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a81a9e791a74608512f763b5.woff2')format("woff");}.ff1_c00296{font-family:ff1_c00296;line-height:1.109863;font-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_c00296{transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);}
.m3a_c00296{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);}
.m2a_c00296{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m13_c00296{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);}
.m1a_c00296{transform:matrix(0.244775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244775,0.000000,0.000000,0.250000,0,0);}
.m29_c00296{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m33_c00296{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);}
.m2b_c00296{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m24_c00296{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m3_c00296{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);}
.m4a_c00296{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_c00296{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m2_c00296{transform:matrix(0.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);}
.m43_c00296{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);}
.m1e_c00296{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m30_c00296{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m27_c00296{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);}
.m38_c00296{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m4_c00296{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m35_c00296{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m25_c00296{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.ma_c00296{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m10_c00296{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1_c00296{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00296{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.me_c00296{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m6_c00296{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m5_c00296{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m42_c00296{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m21_c00296{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.md_c00296{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mb_c00296{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m26_c00296{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m45_c00296{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00296{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m15_c00296{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m28_c00296{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00296{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m40_c00296{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m7_c00296{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m46_c00296{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m19_c00296{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00296{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m0_c00296{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m41_c00296{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.mc_c00296{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00296{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m32_c00296{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);}
.m23_c00296{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);}
.m4d_c00296{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m44_c00296{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);}
.m37_c00296{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00296{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m20_c00296{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m34_c00296{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);}
.m4e_c00296{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m12_c00296{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);}
.m3c_c00296{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);}
.m39_c00296{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);}
.m3b_c00296{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m49_c00296{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m22_c00296{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m48_c00296{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);}
.m1b_c00296{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m9_c00296{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.mf_c00296{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m18_c00296{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);}
.m3d_c00296{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);}
.m3e_c00296{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m14_c00296{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00296{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);}
.m3f_c00296{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00296{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m31_c00296{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00296{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);}
.m16_c00296{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m47_c00296{transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);}
.m11_c00296{transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);}
.m17_c00296{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m36_c00296{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m50_c00296{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.v0_c00296{vertical-align:0.000000px;}
.v1_c00296{vertical-align:2.880000px;}
.v2_c00296{vertical-align:5.760000px;}
.ls0_c00296{letter-spacing:0.000000px;}
.sc__c00296{text-shadow:none;}
.sc0_c00296{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00296{-webkit-text-stroke:0px transparent;}
.sc0_c00296{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00296{word-spacing:-5.299440px;}
.ws4_c00296{word-spacing:0.000000px;}
.ws3_c00296{word-spacing:9.475200px;}
.ws2_c00296{word-spacing:13.140000px;}
.ws1_c00296{word-spacing:53.775600px;}
.fc0_c00296{color:transparent;}
.fs9_c00296{font-size:8.640000px;}
.fsd_c00296{font-size:37.440000px;}
.fs7_c00296{font-size:40.320000px;}
.fs6_c00296{font-size:46.080000px;}
.fs5_c00296{font-size:48.960000px;}
.fs4_c00296{font-size:51.840000px;}
.fs8_c00296{font-size:54.720000px;}
.fsc_c00296{font-size:57.600000px;}
.fs0_c00296{font-size:60.480000px;}
.fsa_c00296{font-size:66.240000px;}
.fs3_c00296{font-size:69.120000px;}
.fs1_c00296{font-size:72.000000px;}
.fs2_c00296{font-size:74.880000px;}
.fsb_c00296{font-size:77.760000px;}
.fse_c00296{font-size:80.640000px;}
.y0_c00296{bottom:0.000000px;}
.y72_c00296{bottom:29.520000px;}
.y7b_c00296{bottom:32.400000px;}
.y7a_c00296{bottom:33.840000px;}
.y71_c00296{bottom:34.560000px;}
.y6f_c00296{bottom:74.880000px;}
.y70_c00296{bottom:75.600000px;}
.y6e_c00296{bottom:78.480000px;}
.y6d_c00296{bottom:131.040000px;}
.y6c_c00296{bottom:159.840000px;}
.y6b_c00296{bottom:162.000000px;}
.y6a_c00296{bottom:164.160000px;}
.y77_c00296{bottom:164.880000px;}
.y79_c00296{bottom:165.600000px;}
.y78_c00296{bottom:166.320000px;}
.y67_c00296{bottom:203.040000px;}
.y69_c00296{bottom:204.480000px;}
.y68_c00296{bottom:205.200000px;}
.y66_c00296{bottom:206.640000px;}
.y75_c00296{bottom:208.800000px;}
.y76_c00296{bottom:209.520000px;}
.y62_c00296{bottom:246.240000px;}
.y65_c00296{bottom:248.400000px;}
.y63_c00296{bottom:249.840000px;}
.y61_c00296{bottom:250.560000px;}
.y64_c00296{bottom:251.280000px;}
.y74_c00296{bottom:252.000000px;}
.y73_c00296{bottom:252.720000px;}
.y5e_c00296{bottom:290.160000px;}
.y5c_c00296{bottom:290.880000px;}
.y60_c00296{bottom:291.600000px;}
.y5f_c00296{bottom:293.040000px;}
.y5d_c00296{bottom:293.760000px;}
.y59_c00296{bottom:322.560000px;}
.y5a_c00296{bottom:324.000000px;}
.y58_c00296{bottom:325.440000px;}
.y5b_c00296{bottom:326.160000px;}
.y54_c00296{bottom:354.240000px;}
.y53_c00296{bottom:354.960000px;}
.y52_c00296{bottom:357.120000px;}
.y55_c00296{bottom:357.840000px;}
.y56_c00296{bottom:358.560000px;}
.y57_c00296{bottom:360.000000px;}
.y4f_c00296{bottom:397.440000px;}
.y50_c00296{bottom:398.160000px;}
.y4e_c00296{bottom:400.320000px;}
.y51_c00296{bottom:401.760000px;}
.y4c_c00296{bottom:439.920000px;}
.y4b_c00296{bottom:442.800000px;}
.y4d_c00296{bottom:443.520000px;}
.y4a_c00296{bottom:474.480000px;}
.y48_c00296{bottom:483.120000px;}
.y49_c00296{bottom:485.280000px;}
.y46_c00296{bottom:486.000000px;}
.y47_c00296{bottom:487.440000px;}
.y43_c00296{bottom:526.320000px;}
.y41_c00296{bottom:528.480000px;}
.y44_c00296{bottom:529.200000px;}
.y42_c00296{bottom:529.920000px;}
.y45_c00296{bottom:531.360000px;}
.y3e_c00296{bottom:570.240000px;}
.y3d_c00296{bottom:570.960000px;}
.y3b_c00296{bottom:571.680000px;}
.y3c_c00296{bottom:573.840000px;}
.y40_c00296{bottom:574.560000px;}
.y3f_c00296{bottom:575.280000px;}
.y37_c00296{bottom:612.720000px;}
.y38_c00296{bottom:614.160000px;}
.y36_c00296{bottom:614.880000px;}
.y39_c00296{bottom:615.600000px;}
.y3a_c00296{bottom:617.760000px;}
.y2b_c00296{bottom:656.640000px;}
.y28_c00296{bottom:658.080000px;}
.y2a_c00296{bottom:659.520000px;}
.y29_c00296{bottom:660.240000px;}
.y24_c00296{bottom:689.040000px;}
.y23_c00296{bottom:689.760000px;}
.y26_c00296{bottom:690.480000px;}
.y27_c00296{bottom:691.200000px;}
.y25_c00296{bottom:692.640000px;}
.y20_c00296{bottom:732.240000px;}
.y1f_c00296{bottom:732.960000px;}
.y34_c00296{bottom:733.680000px;}
.y35_c00296{bottom:734.400000px;}
.y22_c00296{bottom:735.120000px;}
.y21_c00296{bottom:735.840000px;}
.y33_c00296{bottom:737.280000px;}
.y1c_c00296{bottom:775.440000px;}
.y1e_c00296{bottom:776.880000px;}
.y1d_c00296{bottom:779.040000px;}
.y19_c00296{bottom:807.840000px;}
.y18_c00296{bottom:808.560000px;}
.y1a_c00296{bottom:809.280000px;}
.y32_c00296{bottom:810.000000px;}
.y1b_c00296{bottom:810.720000px;}
.y17_c00296{bottom:843.120000px;}
.y13_c00296{bottom:850.320000px;}
.y15_c00296{bottom:851.040000px;}
.y12_c00296{bottom:851.760000px;}
.y31_c00296{bottom:853.200000px;}
.y16_c00296{bottom:853.920000px;}
.y14_c00296{bottom:854.640000px;}
.y10_c00296{bottom:895.680000px;}
.y11_c00296{bottom:897.120000px;}
.yf_c00296{bottom:897.840000px;}
.yc_c00296{bottom:925.920000px;}
.ye_c00296{bottom:926.640000px;}
.yd_c00296{bottom:927.360000px;}
.yb_c00296{bottom:928.800000px;}
.ya_c00296{bottom:929.520000px;}
.y5_c00296{bottom:957.600000px;}
.y8_c00296{bottom:958.320000px;}
.y30_c00296{bottom:959.040000px;}
.y9_c00296{bottom:959.760000px;}
.y7_c00296{bottom:961.200000px;}
.y6_c00296{bottom:961.920000px;}
.y4_c00296{bottom:1000.800000px;}
.y3_c00296{bottom:1001.520000px;}
.y2f_c00296{bottom:1002.240000px;}
.y2e_c00296{bottom:1044.000000px;}
.y2_c00296{bottom:1044.720000px;}
.y1_c00296{bottom:1045.440000px;}
.y2d_c00296{bottom:1046.160000px;}
.y2c_c00296{bottom:1095.120000px;}
.hb_c00296{height:7.775156px;}
.h11_c00296{height:33.692344px;}
.h9_c00296{height:36.284062px;}
.h8_c00296{height:41.467500px;}
.h7_c00296{height:44.059219px;}
.h6_c00296{height:46.650937px;}
.ha_c00296{height:49.242656px;}
.he_c00296{height:51.834375px;}
.h2_c00296{height:54.426094px;}
.hf_c00296{height:55.002656px;}
.h10_c00296{height:57.594375px;}
.hc_c00296{height:59.609531px;}
.h5_c00296{height:62.201250px;}
.h3_c00296{height:64.792969px;}
.h4_c00296{height:67.384687px;}
.hd_c00296{height:69.976406px;}
.h12_c00296{height:72.568125px;}
.h1_c00296{height:1144.500000px;}
.h0_c00296{height:1144.800000px;}
.w0_c00296{width:775.440000px;}
.w1_c00296{width:775.500000px;}
.x0_c00296{left:0.000000px;}
.x1_c00296{left:54.000000px;}
.x29_c00296{left:55.440000px;}
.x37_c00296{left:56.880000px;}
.x3b_c00296{left:105.840000px;}
.x2_c00296{left:127.440000px;}
.x14_c00296{left:129.600000px;}
.x5_c00296{left:170.640000px;}
.x2a_c00296{left:172.080000px;}
.xa_c00296{left:181.440000px;}
.x39_c00296{left:182.880000px;}
.x3a_c00296{left:192.960000px;}
.x1c_c00296{left:203.760000px;}
.x12_c00296{left:214.560000px;}
.x6_c00296{left:216.000000px;}
.xb_c00296{left:226.080000px;}
.xe_c00296{left:236.160000px;}
.x38_c00296{left:246.240000px;}
.x3_c00296{left:248.400000px;}
.x4_c00296{left:257.760000px;}
.x2f_c00296{left:259.200000px;}
.x19_c00296{left:267.840000px;}
.xf_c00296{left:270.000000px;}
.x15_c00296{left:279.360000px;}
.x26_c00296{left:300.240000px;}
.x1d_c00296{left:301.680000px;}
.x1a_c00296{left:313.200000px;}
.x2e_c00296{left:322.560000px;}
.x17_c00296{left:324.000000px;}
.x16_c00296{left:334.080000px;}
.x35_c00296{left:345.600000px;}
.x32_c00296{left:355.680000px;}
.x27_c00296{left:365.040000px;}
.x30_c00296{left:367.200000px;}
.xc_c00296{left:377.280000px;}
.x13_c00296{left:397.440000px;}
.x1b_c00296{left:398.880000px;}
.x28_c00296{left:409.680000px;}
.xd_c00296{left:432.000000px;}
.x7_c00296{left:442.080000px;}
.x10_c00296{left:451.440000px;}
.x18_c00296{left:452.880000px;}
.x33_c00296{left:463.680000px;}
.x2b_c00296{left:485.280000px;}
.x8_c00296{left:496.800000px;}
.x11_c00296{left:507.600000px;}
.x34_c00296{left:518.400000px;}
.x36_c00296{left:527.040000px;}
.x31_c00296{left:528.480000px;}
.x9_c00296{left:550.080000px;}
.x21_c00296{left:551.520000px;}
.x1f_c00296{left:571.680000px;}
.x2c_c00296{left:583.200000px;}
.x22_c00296{left:604.800000px;}
.x23_c00296{left:637.200000px;}
.x2d_c00296{left:648.000000px;}
.x3c_c00296{left:668.880000px;}
.x25_c00296{left:678.960000px;}
.x20_c00296{left:680.400000px;}
.x1e_c00296{left:685.440000px;}
.x24_c00296{left:699.840000px;}
@media print{
.v0_c00296{vertical-align:0.000000pt;}
.v1_c00296{vertical-align:2.560000pt;}
.v2_c00296{vertical-align:5.120000pt;}
.ls0_c00296{letter-spacing:0.000000pt;}
.ws0_c00296{word-spacing:-4.710613pt;}
.ws4_c00296{word-spacing:0.000000pt;}
.ws3_c00296{word-spacing:8.422400pt;}
.ws2_c00296{word-spacing:11.680000pt;}
.ws1_c00296{word-spacing:47.800533pt;}
.fs9_c00296{font-size:7.680000pt;}
.fsd_c00296{font-size:33.280000pt;}
.fs7_c00296{font-size:35.840000pt;}
.fs6_c00296{font-size:40.960000pt;}
.fs5_c00296{font-size:43.520000pt;}
.fs4_c00296{font-size:46.080000pt;}
.fs8_c00296{font-size:48.640000pt;}
.fsc_c00296{font-size:51.200000pt;}
.fs0_c00296{font-size:53.760000pt;}
.fsa_c00296{font-size:58.880000pt;}
.fs3_c00296{font-size:61.440000pt;}
.fs1_c00296{font-size:64.000000pt;}
.fs2_c00296{font-size:66.560000pt;}
.fsb_c00296{font-size:69.120000pt;}
.fse_c00296{font-size:71.680000pt;}
.y0_c00296{bottom:0.000000pt;}
.y72_c00296{bottom:26.240000pt;}
.y7b_c00296{bottom:28.800000pt;}
.y7a_c00296{bottom:30.080000pt;}
.y71_c00296{bottom:30.720000pt;}
.y6f_c00296{bottom:66.560000pt;}
.y70_c00296{bottom:67.200000pt;}
.y6e_c00296{bottom:69.760000pt;}
.y6d_c00296{bottom:116.480000pt;}
.y6c_c00296{bottom:142.080000pt;}
.y6b_c00296{bottom:144.000000pt;}
.y6a_c00296{bottom:145.920000pt;}
.y77_c00296{bottom:146.560000pt;}
.y79_c00296{bottom:147.200000pt;}
.y78_c00296{bottom:147.840000pt;}
.y67_c00296{bottom:180.480000pt;}
.y69_c00296{bottom:181.760000pt;}
.y68_c00296{bottom:182.400000pt;}
.y66_c00296{bottom:183.680000pt;}
.y75_c00296{bottom:185.600000pt;}
.y76_c00296{bottom:186.240000pt;}
.y62_c00296{bottom:218.880000pt;}
.y65_c00296{bottom:220.800000pt;}
.y63_c00296{bottom:222.080000pt;}
.y61_c00296{bottom:222.720000pt;}
.y64_c00296{bottom:223.360000pt;}
.y74_c00296{bottom:224.000000pt;}
.y73_c00296{bottom:224.640000pt;}
.y5e_c00296{bottom:257.920000pt;}
.y5c_c00296{bottom:258.560000pt;}
.y60_c00296{bottom:259.200000pt;}
.y5f_c00296{bottom:260.480000pt;}
.y5d_c00296{bottom:261.120000pt;}
.y59_c00296{bottom:286.720000pt;}
.y5a_c00296{bottom:288.000000pt;}
.y58_c00296{bottom:289.280000pt;}
.y5b_c00296{bottom:289.920000pt;}
.y54_c00296{bottom:314.880000pt;}
.y53_c00296{bottom:315.520000pt;}
.y52_c00296{bottom:317.440000pt;}
.y55_c00296{bottom:318.080000pt;}
.y56_c00296{bottom:318.720000pt;}
.y57_c00296{bottom:320.000000pt;}
.y4f_c00296{bottom:353.280000pt;}
.y50_c00296{bottom:353.920000pt;}
.y4e_c00296{bottom:355.840000pt;}
.y51_c00296{bottom:357.120000pt;}
.y4c_c00296{bottom:391.040000pt;}
.y4b_c00296{bottom:393.600000pt;}
.y4d_c00296{bottom:394.240000pt;}
.y4a_c00296{bottom:421.760000pt;}
.y48_c00296{bottom:429.440000pt;}
.y49_c00296{bottom:431.360000pt;}
.y46_c00296{bottom:432.000000pt;}
.y47_c00296{bottom:433.280000pt;}
.y43_c00296{bottom:467.840000pt;}
.y41_c00296{bottom:469.760000pt;}
.y44_c00296{bottom:470.400000pt;}
.y42_c00296{bottom:471.040000pt;}
.y45_c00296{bottom:472.320000pt;}
.y3e_c00296{bottom:506.880000pt;}
.y3d_c00296{bottom:507.520000pt;}
.y3b_c00296{bottom:508.160000pt;}
.y3c_c00296{bottom:510.080000pt;}
.y40_c00296{bottom:510.720000pt;}
.y3f_c00296{bottom:511.360000pt;}
.y37_c00296{bottom:544.640000pt;}
.y38_c00296{bottom:545.920000pt;}
.y36_c00296{bottom:546.560000pt;}
.y39_c00296{bottom:547.200000pt;}
.y3a_c00296{bottom:549.120000pt;}
.y2b_c00296{bottom:583.680000pt;}
.y28_c00296{bottom:584.960000pt;}
.y2a_c00296{bottom:586.240000pt;}
.y29_c00296{bottom:586.880000pt;}
.y24_c00296{bottom:612.480000pt;}
.y23_c00296{bottom:613.120000pt;}
.y26_c00296{bottom:613.760000pt;}
.y27_c00296{bottom:614.400000pt;}
.y25_c00296{bottom:615.680000pt;}
.y20_c00296{bottom:650.880000pt;}
.y1f_c00296{bottom:651.520000pt;}
.y34_c00296{bottom:652.160000pt;}
.y35_c00296{bottom:652.800000pt;}
.y22_c00296{bottom:653.440000pt;}
.y21_c00296{bottom:654.080000pt;}
.y33_c00296{bottom:655.360000pt;}
.y1c_c00296{bottom:689.280000pt;}
.y1e_c00296{bottom:690.560000pt;}
.y1d_c00296{bottom:692.480000pt;}
.y19_c00296{bottom:718.080000pt;}
.y18_c00296{bottom:718.720000pt;}
.y1a_c00296{bottom:719.360000pt;}
.y32_c00296{bottom:720.000000pt;}
.y1b_c00296{bottom:720.640000pt;}
.y17_c00296{bottom:749.440000pt;}
.y13_c00296{bottom:755.840000pt;}
.y15_c00296{bottom:756.480000pt;}
.y12_c00296{bottom:757.120000pt;}
.y31_c00296{bottom:758.400000pt;}
.y16_c00296{bottom:759.040000pt;}
.y14_c00296{bottom:759.680000pt;}
.y10_c00296{bottom:796.160000pt;}
.y11_c00296{bottom:797.440000pt;}
.yf_c00296{bottom:798.080000pt;}
.yc_c00296{bottom:823.040000pt;}
.ye_c00296{bottom:823.680000pt;}
.yd_c00296{bottom:824.320000pt;}
.yb_c00296{bottom:825.600000pt;}
.ya_c00296{bottom:826.240000pt;}
.y5_c00296{bottom:851.200000pt;}
.y8_c00296{bottom:851.840000pt;}
.y30_c00296{bottom:852.480000pt;}
.y9_c00296{bottom:853.120000pt;}
.y7_c00296{bottom:854.400000pt;}
.y6_c00296{bottom:855.040000pt;}
.y4_c00296{bottom:889.600000pt;}
.y3_c00296{bottom:890.240000pt;}
.y2f_c00296{bottom:890.880000pt;}
.y2e_c00296{bottom:928.000000pt;}
.y2_c00296{bottom:928.640000pt;}
.y1_c00296{bottom:929.280000pt;}
.y2d_c00296{bottom:929.920000pt;}
.y2c_c00296{bottom:973.440000pt;}
.hb_c00296{height:6.911250pt;}
.h11_c00296{height:29.948750pt;}
.h9_c00296{height:32.252500pt;}
.h8_c00296{height:36.860000pt;}
.h7_c00296{height:39.163750pt;}
.h6_c00296{height:41.467500pt;}
.ha_c00296{height:43.771250pt;}
.he_c00296{height:46.075000pt;}
.h2_c00296{height:48.378750pt;}
.hf_c00296{height:48.891250pt;}
.h10_c00296{height:51.195000pt;}
.hc_c00296{height:52.986250pt;}
.h5_c00296{height:55.290000pt;}
.h3_c00296{height:57.593750pt;}
.h4_c00296{height:59.897500pt;}
.hd_c00296{height:62.201250pt;}
.h12_c00296{height:64.505000pt;}
.h1_c00296{height:1017.333333pt;}
.h0_c00296{height:1017.600000pt;}
.w0_c00296{width:689.280000pt;}
.w1_c00296{width:689.333333pt;}
.x0_c00296{left:0.000000pt;}
.x1_c00296{left:48.000000pt;}
.x29_c00296{left:49.280000pt;}
.x37_c00296{left:50.560000pt;}
.x3b_c00296{left:94.080000pt;}
.x2_c00296{left:113.280000pt;}
.x14_c00296{left:115.200000pt;}
.x5_c00296{left:151.680000pt;}
.x2a_c00296{left:152.960000pt;}
.xa_c00296{left:161.280000pt;}
.x39_c00296{left:162.560000pt;}
.x3a_c00296{left:171.520000pt;}
.x1c_c00296{left:181.120000pt;}
.x12_c00296{left:190.720000pt;}
.x6_c00296{left:192.000000pt;}
.xb_c00296{left:200.960000pt;}
.xe_c00296{left:209.920000pt;}
.x38_c00296{left:218.880000pt;}
.x3_c00296{left:220.800000pt;}
.x4_c00296{left:229.120000pt;}
.x2f_c00296{left:230.400000pt;}
.x19_c00296{left:238.080000pt;}
.xf_c00296{left:240.000000pt;}
.x15_c00296{left:248.320000pt;}
.x26_c00296{left:266.880000pt;}
.x1d_c00296{left:268.160000pt;}
.x1a_c00296{left:278.400000pt;}
.x2e_c00296{left:286.720000pt;}
.x17_c00296{left:288.000000pt;}
.x16_c00296{left:296.960000pt;}
.x35_c00296{left:307.200000pt;}
.x32_c00296{left:316.160000pt;}
.x27_c00296{left:324.480000pt;}
.x30_c00296{left:326.400000pt;}
.xc_c00296{left:335.360000pt;}
.x13_c00296{left:353.280000pt;}
.x1b_c00296{left:354.560000pt;}
.x28_c00296{left:364.160000pt;}
.xd_c00296{left:384.000000pt;}
.x7_c00296{left:392.960000pt;}
.x10_c00296{left:401.280000pt;}
.x18_c00296{left:402.560000pt;}
.x33_c00296{left:412.160000pt;}
.x2b_c00296{left:431.360000pt;}
.x8_c00296{left:441.600000pt;}
.x11_c00296{left:451.200000pt;}
.x34_c00296{left:460.800000pt;}
.x36_c00296{left:468.480000pt;}
.x31_c00296{left:469.760000pt;}
.x9_c00296{left:488.960000pt;}
.x21_c00296{left:490.240000pt;}
.x1f_c00296{left:508.160000pt;}
.x2c_c00296{left:518.400000pt;}
.x22_c00296{left:537.600000pt;}
.x23_c00296{left:566.400000pt;}
.x2d_c00296{left:576.000000pt;}
.x3c_c00296{left:594.560000pt;}
.x25_c00296{left:603.520000pt;}
.x20_c00296{left:604.800000pt;}
.x1e_c00296{left:609.280000pt;}
.x24_c00296{left:622.080000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_73caef9adb4c991dd0b1249b.woff2')format("woff");}.ff1_c00297{font-family:ff1_c00297;line-height:1.109863;font-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_c00297{transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);}
.m4f_c00297{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);}
.m19_c00297{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);}
.m17_c00297{transform:matrix(0.232075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232075,0.000000,0.000000,0.250000,0,0);}
.m3e_c00297{transform:matrix(0.236375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236375,0.000000,0.000000,0.250000,0,0);}
.m43_c00297{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m3f_c00297{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);}
.m37_c00297{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);}
.m51_c00297{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);}
.m55_c00297{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);}
.m4d_c00297{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.me_c00297{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m22_c00297{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m23_c00297{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);}
.m2a_c00297{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);}
.m20_c00297{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.ma_c00297{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m14_c00297{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);}
.m28_c00297{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);}
.m25_c00297{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m41_c00297{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m3_c00297{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m45_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.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m9_c00297{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m18_c00297{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m5_c00297{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m46_c00297{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m24_c00297{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1_c00297{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mc_c00297{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mb_c00297{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.md_c00297{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m33_c00297{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m32_c00297{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m34_c00297{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m21_c00297{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m36_c00297{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m30_c00297{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00297{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m56_c00297{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00297{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m15_c00297{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m11_c00297{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m47_c00297{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m0_c00297{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);}
.m38_c00297{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m4_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);}
.m3d_c00297{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m26_c00297{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_c00297{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);}
.m3a_c00297{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);}
.m1c_c00297{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00297{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m53_c00297{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00297{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m2_c00297{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m12_c00297{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);}
.m50_c00297{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00297{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m42_c00297{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m58_c00297{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);}
.m57_c00297{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00297{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);}
.m13_c00297{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m16_c00297{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);}
.m48_c00297{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m49_c00297{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m44_c00297{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00297{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00297{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);}
.m1e_c00297{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m7_c00297{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00297{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);}
.m2e_c00297{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00297{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);}
.m8_c00297{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m6_c00297{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00297{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00297{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m35_c00297{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m29_c00297{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m54_c00297{transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);}
.m39_c00297{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00297{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);}
.m10_c00297{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m27_c00297{transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);}
.m59_c00297{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m40_c00297{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m52_c00297{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.v0_c00297{vertical-align:0.000000px;}
.ls0_c00297{letter-spacing:0.000000px;}
.sc__c00297{text-shadow:none;}
.sc0_c00297{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00297{-webkit-text-stroke:0px transparent;}
.sc0_c00297{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00297{word-spacing:0.000000px;}
.fc0_c00297{color:transparent;}
.fsc_c00297{font-size:34.560000px;}
.fsd_c00297{font-size:37.440000px;}
.fs9_c00297{font-size:40.320000px;}
.fs8_c00297{font-size:46.080000px;}
.fs2_c00297{font-size:48.960000px;}
.fs1_c00297{font-size:51.840000px;}
.fs7_c00297{font-size:54.720000px;}
.fs4_c00297{font-size:57.600000px;}
.fs0_c00297{font-size:60.480000px;}
.fse_c00297{font-size:63.360000px;}
.fsa_c00297{font-size:66.240000px;}
.fs6_c00297{font-size:69.120000px;}
.fsb_c00297{font-size:72.000000px;}
.fs5_c00297{font-size:74.880000px;}
.fs3_c00297{font-size:77.760000px;}
.y0_c00297{bottom:0.000000px;}
.y7c_c00297{bottom:61.200000px;}
.y7b_c00297{bottom:64.800000px;}
.y79_c00297{bottom:65.520000px;}
.y7a_c00297{bottom:66.240000px;}
.y7d_c00297{bottom:67.680000px;}
.y76_c00297{bottom:105.120000px;}
.y78_c00297{bottom:108.720000px;}
.y75_c00297{bottom:109.440000px;}
.y77_c00297{bottom:111.600000px;}
.y74_c00297{bottom:149.040000px;}
.y73_c00297{bottom:151.920000px;}
.y72_c00297{bottom:152.640000px;}
.y6f_c00297{bottom:181.440000px;}
.y6d_c00297{bottom:184.320000px;}
.y71_c00297{bottom:185.040000px;}
.y6e_c00297{bottom:185.760000px;}
.y70_c00297{bottom:186.480000px;}
.y69_c00297{bottom:223.920000px;}
.y6a_c00297{bottom:227.520000px;}
.y67_c00297{bottom:228.240000px;}
.y68_c00297{bottom:228.960000px;}
.y6b_c00297{bottom:229.680000px;}
.y6c_c00297{bottom:230.400000px;}
.y63_c00297{bottom:267.120000px;}
.y64_c00297{bottom:267.840000px;}
.y61_c00297{bottom:270.720000px;}
.y62_c00297{bottom:271.440000px;}
.y66_c00297{bottom:272.880000px;}
.y65_c00297{bottom:274.320000px;}
.y60_c00297{bottom:302.400000px;}
.y5b_c00297{bottom:311.040000px;}
.y5c_c00297{bottom:311.760000px;}
.y5a_c00297{bottom:312.480000px;}
.y5d_c00297{bottom:313.920000px;}
.y59_c00297{bottom:314.640000px;}
.y5e_c00297{bottom:315.360000px;}
.y5f_c00297{bottom:316.080000px;}
.y51_c00297{bottom:354.960000px;}
.y52_c00297{bottom:355.680000px;}
.y50_c00297{bottom:357.840000px;}
.y58_c00297{bottom:359.280000px;}
.y4f_c00297{bottom:397.440000px;}
.y4e_c00297{bottom:402.480000px;}
.y4a_c00297{bottom:431.280000px;}
.y49_c00297{bottom:432.000000px;}
.y48_c00297{bottom:432.720000px;}
.y4d_c00297{bottom:433.440000px;}
.y4c_c00297{bottom:434.160000px;}
.y4b_c00297{bottom:434.880000px;}
.y47_c00297{bottom:467.280000px;}
.y44_c00297{bottom:473.040000px;}
.y46_c00297{bottom:474.480000px;}
.y43_c00297{bottom:475.920000px;}
.y57_c00297{bottom:476.640000px;}
.y45_c00297{bottom:477.360000px;}
.y42_c00297{bottom:517.680000px;}
.y40_c00297{bottom:518.400000px;}
.y41_c00297{bottom:520.560000px;}
.y3f_c00297{bottom:521.280000px;}
.y3b_c00297{bottom:549.360000px;}
.y3c_c00297{bottom:550.080000px;}
.y3a_c00297{bottom:550.800000px;}
.y55_c00297{bottom:551.520000px;}
.y56_c00297{bottom:552.240000px;}
.y3d_c00297{bottom:552.960000px;}
.y3e_c00297{bottom:553.680000px;}
.y39_c00297{bottom:592.560000px;}
.y38_c00297{bottom:593.280000px;}
.y36_c00297{bottom:594.000000px;}
.y53_c00297{bottom:594.720000px;}
.y54_c00297{bottom:596.160000px;}
.y37_c00297{bottom:596.880000px;}
.y35_c00297{bottom:635.760000px;}
.y34_c00297{bottom:637.200000px;}
.y31_c00297{bottom:667.440000px;}
.y33_c00297{bottom:668.880000px;}
.y30_c00297{bottom:669.600000px;}
.y32_c00297{bottom:671.760000px;}
.y2f_c00297{bottom:703.440000px;}
.y2c_c00297{bottom:710.640000px;}
.y2a_c00297{bottom:711.360000px;}
.y2e_c00297{bottom:712.080000px;}
.y2d_c00297{bottom:713.520000px;}
.y2b_c00297{bottom:714.960000px;}
.y24_c00297{bottom:753.120000px;}
.y22_c00297{bottom:754.560000px;}
.y28_c00297{bottom:755.280000px;}
.y29_c00297{bottom:756.000000px;}
.y23_c00297{bottom:757.440000px;}
.y21_c00297{bottom:796.320000px;}
.y1f_c00297{bottom:797.760000px;}
.y27_c00297{bottom:798.480000px;}
.y20_c00297{bottom:800.640000px;}
.y1e_c00297{bottom:839.520000px;}
.y1b_c00297{bottom:840.960000px;}
.y1d_c00297{bottom:841.680000px;}
.y1c_c00297{bottom:843.840000px;}
.y26_c00297{bottom:844.560000px;}
.y1a_c00297{bottom:883.440000px;}
.y16_c00297{bottom:884.160000px;}
.y25_c00297{bottom:884.880000px;}
.y19_c00297{bottom:885.600000px;}
.y17_c00297{bottom:886.320000px;}
.y18_c00297{bottom:887.040000px;}
.y13_c00297{bottom:925.920000px;}
.y12_c00297{bottom:926.640000px;}
.yf_c00297{bottom:927.360000px;}
.y11_c00297{bottom:928.080000px;}
.y14_c00297{bottom:928.800000px;}
.y15_c00297{bottom:929.520000px;}
.y10_c00297{bottom:930.240000px;}
.ya_c00297{bottom:969.840000px;}
.y9_c00297{bottom:971.280000px;}
.y7_c00297{bottom:1002.240000px;}
.y4_c00297{bottom:1003.680000px;}
.ye_c00297{bottom:1004.400000px;}
.y8_c00297{bottom:1005.120000px;}
.y6_c00297{bottom:1005.840000px;}
.y5_c00297{bottom:1006.560000px;}
.y3_c00297{bottom:1045.440000px;}
.y1_c00297{bottom:1046.160000px;}
.yd_c00297{bottom:1048.320000px;}
.yc_c00297{bottom:1049.040000px;}
.y2_c00297{bottom:1049.760000px;}
.yb_c00297{bottom:1089.360000px;}
.hd_c00297{height:31.100625px;}
.he_c00297{height:33.692344px;}
.ha_c00297{height:36.284062px;}
.h9_c00297{height:41.467500px;}
.h3_c00297{height:44.059219px;}
.h2_c00297{height:46.650937px;}
.h8_c00297{height:49.242656px;}
.h5_c00297{height:51.834375px;}
.h1_c00297{height:54.426094px;}
.hf_c00297{height:57.017812px;}
.hb_c00297{height:59.609531px;}
.h7_c00297{height:62.201250px;}
.hc_c00297{height:64.792969px;}
.h6_c00297{height:67.384687px;}
.h4_c00297{height:69.976406px;}
.h0_c00297{height:1152.000000px;}
.w1_c00297{width:786.000000px;}
.w0_c00297{width:786.240000px;}
.x0_c00297{left:0.000000px;}
.x1_c00297{left:67.680000px;}
.x14_c00297{left:69.120000px;}
.x2e_c00297{left:71.280000px;}
.x34_c00297{left:72.720000px;}
.x2_c00297{left:141.120000px;}
.x5_c00297{left:142.560000px;}
.x9_c00297{left:144.720000px;}
.x23_c00297{left:174.960000px;}
.x2d_c00297{left:177.120000px;}
.x15_c00297{left:184.320000px;}
.x3_c00297{left:185.760000px;}
.x36_c00297{left:196.560000px;}
.x32_c00297{left:218.880000px;}
.x4_c00297{left:228.960000px;}
.x6_c00297{left:240.480000px;}
.x29_c00297{left:250.560000px;}
.xa_c00297{left:261.360000px;}
.x33_c00297{left:262.800000px;}
.x37_c00297{left:272.160000px;}
.x16_c00297{left:282.960000px;}
.x27_c00297{left:295.200000px;}
.x2a_c00297{left:305.280000px;}
.x1d_c00297{left:325.440000px;}
.x21_c00297{left:337.680000px;}
.x2b_c00297{left:348.480000px;}
.x2f_c00297{left:359.280000px;}
.x1e_c00297{left:369.360000px;}
.x11_c00297{left:378.720000px;}
.x26_c00297{left:392.400000px;}
.x24_c00297{left:401.760000px;}
.x12_c00297{left:422.640000px;}
.x2c_c00297{left:434.880000px;}
.x25_c00297{left:445.680000px;}
.x7_c00297{left:455.040000px;}
.x17_c00297{left:466.560000px;}
.x13_c00297{left:478.080000px;}
.x35_c00297{left:488.880000px;}
.x28_c00297{left:498.240000px;}
.x8_c00297{left:509.760000px;}
.x18_c00297{left:521.280000px;}
.x1f_c00297{left:531.360000px;}
.x20_c00297{left:542.160000px;}
.x1a_c00297{left:564.480000px;}
.x31_c00297{left:574.560000px;}
.x19_c00297{left:586.080000px;}
.x1b_c00297{left:609.840000px;}
.xc_c00297{left:618.480000px;}
.x30_c00297{left:619.920000px;}
.xf_c00297{left:650.160000px;}
.xd_c00297{left:651.600000px;}
.x1c_c00297{left:684.000000px;}
.xb_c00297{left:686.880000px;}
.xe_c00297{left:693.360000px;}
.x22_c00297{left:694.800000px;}
.x10_c00297{left:713.520000px;}
.x38_c00297{left:714.960000px;}
@media print{
.v0_c00297{vertical-align:0.000000pt;}
.ls0_c00297{letter-spacing:0.000000pt;}
.ws0_c00297{word-spacing:0.000000pt;}
.fsc_c00297{font-size:30.720000pt;}
.fsd_c00297{font-size:33.280000pt;}
.fs9_c00297{font-size:35.840000pt;}
.fs8_c00297{font-size:40.960000pt;}
.fs2_c00297{font-size:43.520000pt;}
.fs1_c00297{font-size:46.080000pt;}
.fs7_c00297{font-size:48.640000pt;}
.fs4_c00297{font-size:51.200000pt;}
.fs0_c00297{font-size:53.760000pt;}
.fse_c00297{font-size:56.320000pt;}
.fsa_c00297{font-size:58.880000pt;}
.fs6_c00297{font-size:61.440000pt;}
.fsb_c00297{font-size:64.000000pt;}
.fs5_c00297{font-size:66.560000pt;}
.fs3_c00297{font-size:69.120000pt;}
.y0_c00297{bottom:0.000000pt;}
.y7c_c00297{bottom:54.400000pt;}
.y7b_c00297{bottom:57.600000pt;}
.y79_c00297{bottom:58.240000pt;}
.y7a_c00297{bottom:58.880000pt;}
.y7d_c00297{bottom:60.160000pt;}
.y76_c00297{bottom:93.440000pt;}
.y78_c00297{bottom:96.640000pt;}
.y75_c00297{bottom:97.280000pt;}
.y77_c00297{bottom:99.200000pt;}
.y74_c00297{bottom:132.480000pt;}
.y73_c00297{bottom:135.040000pt;}
.y72_c00297{bottom:135.680000pt;}
.y6f_c00297{bottom:161.280000pt;}
.y6d_c00297{bottom:163.840000pt;}
.y71_c00297{bottom:164.480000pt;}
.y6e_c00297{bottom:165.120000pt;}
.y70_c00297{bottom:165.760000pt;}
.y69_c00297{bottom:199.040000pt;}
.y6a_c00297{bottom:202.240000pt;}
.y67_c00297{bottom:202.880000pt;}
.y68_c00297{bottom:203.520000pt;}
.y6b_c00297{bottom:204.160000pt;}
.y6c_c00297{bottom:204.800000pt;}
.y63_c00297{bottom:237.440000pt;}
.y64_c00297{bottom:238.080000pt;}
.y61_c00297{bottom:240.640000pt;}
.y62_c00297{bottom:241.280000pt;}
.y66_c00297{bottom:242.560000pt;}
.y65_c00297{bottom:243.840000pt;}
.y60_c00297{bottom:268.800000pt;}
.y5b_c00297{bottom:276.480000pt;}
.y5c_c00297{bottom:277.120000pt;}
.y5a_c00297{bottom:277.760000pt;}
.y5d_c00297{bottom:279.040000pt;}
.y59_c00297{bottom:279.680000pt;}
.y5e_c00297{bottom:280.320000pt;}
.y5f_c00297{bottom:280.960000pt;}
.y51_c00297{bottom:315.520000pt;}
.y52_c00297{bottom:316.160000pt;}
.y50_c00297{bottom:318.080000pt;}
.y58_c00297{bottom:319.360000pt;}
.y4f_c00297{bottom:353.280000pt;}
.y4e_c00297{bottom:357.760000pt;}
.y4a_c00297{bottom:383.360000pt;}
.y49_c00297{bottom:384.000000pt;}
.y48_c00297{bottom:384.640000pt;}
.y4d_c00297{bottom:385.280000pt;}
.y4c_c00297{bottom:385.920000pt;}
.y4b_c00297{bottom:386.560000pt;}
.y47_c00297{bottom:415.360000pt;}
.y44_c00297{bottom:420.480000pt;}
.y46_c00297{bottom:421.760000pt;}
.y43_c00297{bottom:423.040000pt;}
.y57_c00297{bottom:423.680000pt;}
.y45_c00297{bottom:424.320000pt;}
.y42_c00297{bottom:460.160000pt;}
.y40_c00297{bottom:460.800000pt;}
.y41_c00297{bottom:462.720000pt;}
.y3f_c00297{bottom:463.360000pt;}
.y3b_c00297{bottom:488.320000pt;}
.y3c_c00297{bottom:488.960000pt;}
.y3a_c00297{bottom:489.600000pt;}
.y55_c00297{bottom:490.240000pt;}
.y56_c00297{bottom:490.880000pt;}
.y3d_c00297{bottom:491.520000pt;}
.y3e_c00297{bottom:492.160000pt;}
.y39_c00297{bottom:526.720000pt;}
.y38_c00297{bottom:527.360000pt;}
.y36_c00297{bottom:528.000000pt;}
.y53_c00297{bottom:528.640000pt;}
.y54_c00297{bottom:529.920000pt;}
.y37_c00297{bottom:530.560000pt;}
.y35_c00297{bottom:565.120000pt;}
.y34_c00297{bottom:566.400000pt;}
.y31_c00297{bottom:593.280000pt;}
.y33_c00297{bottom:594.560000pt;}
.y30_c00297{bottom:595.200000pt;}
.y32_c00297{bottom:597.120000pt;}
.y2f_c00297{bottom:625.280000pt;}
.y2c_c00297{bottom:631.680000pt;}
.y2a_c00297{bottom:632.320000pt;}
.y2e_c00297{bottom:632.960000pt;}
.y2d_c00297{bottom:634.240000pt;}
.y2b_c00297{bottom:635.520000pt;}
.y24_c00297{bottom:669.440000pt;}
.y22_c00297{bottom:670.720000pt;}
.y28_c00297{bottom:671.360000pt;}
.y29_c00297{bottom:672.000000pt;}
.y23_c00297{bottom:673.280000pt;}
.y21_c00297{bottom:707.840000pt;}
.y1f_c00297{bottom:709.120000pt;}
.y27_c00297{bottom:709.760000pt;}
.y20_c00297{bottom:711.680000pt;}
.y1e_c00297{bottom:746.240000pt;}
.y1b_c00297{bottom:747.520000pt;}
.y1d_c00297{bottom:748.160000pt;}
.y1c_c00297{bottom:750.080000pt;}
.y26_c00297{bottom:750.720000pt;}
.y1a_c00297{bottom:785.280000pt;}
.y16_c00297{bottom:785.920000pt;}
.y25_c00297{bottom:786.560000pt;}
.y19_c00297{bottom:787.200000pt;}
.y17_c00297{bottom:787.840000pt;}
.y18_c00297{bottom:788.480000pt;}
.y13_c00297{bottom:823.040000pt;}
.y12_c00297{bottom:823.680000pt;}
.yf_c00297{bottom:824.320000pt;}
.y11_c00297{bottom:824.960000pt;}
.y14_c00297{bottom:825.600000pt;}
.y15_c00297{bottom:826.240000pt;}
.y10_c00297{bottom:826.880000pt;}
.ya_c00297{bottom:862.080000pt;}
.y9_c00297{bottom:863.360000pt;}
.y7_c00297{bottom:890.880000pt;}
.y4_c00297{bottom:892.160000pt;}
.ye_c00297{bottom:892.800000pt;}
.y8_c00297{bottom:893.440000pt;}
.y6_c00297{bottom:894.080000pt;}
.y5_c00297{bottom:894.720000pt;}
.y3_c00297{bottom:929.280000pt;}
.y1_c00297{bottom:929.920000pt;}
.yd_c00297{bottom:931.840000pt;}
.yc_c00297{bottom:932.480000pt;}
.y2_c00297{bottom:933.120000pt;}
.yb_c00297{bottom:968.320000pt;}
.hd_c00297{height:27.645000pt;}
.he_c00297{height:29.948750pt;}
.ha_c00297{height:32.252500pt;}
.h9_c00297{height:36.860000pt;}
.h3_c00297{height:39.163750pt;}
.h2_c00297{height:41.467500pt;}
.h8_c00297{height:43.771250pt;}
.h5_c00297{height:46.075000pt;}
.h1_c00297{height:48.378750pt;}
.hf_c00297{height:50.682500pt;}
.hb_c00297{height:52.986250pt;}
.h7_c00297{height:55.290000pt;}
.hc_c00297{height:57.593750pt;}
.h6_c00297{height:59.897500pt;}
.h4_c00297{height:62.201250pt;}
.h0_c00297{height:1024.000000pt;}
.w1_c00297{width:698.666667pt;}
.w0_c00297{width:698.880000pt;}
.x0_c00297{left:0.000000pt;}
.x1_c00297{left:60.160000pt;}
.x14_c00297{left:61.440000pt;}
.x2e_c00297{left:63.360000pt;}
.x34_c00297{left:64.640000pt;}
.x2_c00297{left:125.440000pt;}
.x5_c00297{left:126.720000pt;}
.x9_c00297{left:128.640000pt;}
.x23_c00297{left:155.520000pt;}
.x2d_c00297{left:157.440000pt;}
.x15_c00297{left:163.840000pt;}
.x3_c00297{left:165.120000pt;}
.x36_c00297{left:174.720000pt;}
.x32_c00297{left:194.560000pt;}
.x4_c00297{left:203.520000pt;}
.x6_c00297{left:213.760000pt;}
.x29_c00297{left:222.720000pt;}
.xa_c00297{left:232.320000pt;}
.x33_c00297{left:233.600000pt;}
.x37_c00297{left:241.920000pt;}
.x16_c00297{left:251.520000pt;}
.x27_c00297{left:262.400000pt;}
.x2a_c00297{left:271.360000pt;}
.x1d_c00297{left:289.280000pt;}
.x21_c00297{left:300.160000pt;}
.x2b_c00297{left:309.760000pt;}
.x2f_c00297{left:319.360000pt;}
.x1e_c00297{left:328.320000pt;}
.x11_c00297{left:336.640000pt;}
.x26_c00297{left:348.800000pt;}
.x24_c00297{left:357.120000pt;}
.x12_c00297{left:375.680000pt;}
.x2c_c00297{left:386.560000pt;}
.x25_c00297{left:396.160000pt;}
.x7_c00297{left:404.480000pt;}
.x17_c00297{left:414.720000pt;}
.x13_c00297{left:424.960000pt;}
.x35_c00297{left:434.560000pt;}
.x28_c00297{left:442.880000pt;}
.x8_c00297{left:453.120000pt;}
.x18_c00297{left:463.360000pt;}
.x1f_c00297{left:472.320000pt;}
.x20_c00297{left:481.920000pt;}
.x1a_c00297{left:501.760000pt;}
.x31_c00297{left:510.720000pt;}
.x19_c00297{left:520.960000pt;}
.x1b_c00297{left:542.080000pt;}
.xc_c00297{left:549.760000pt;}
.x30_c00297{left:551.040000pt;}
.xf_c00297{left:577.920000pt;}
.xd_c00297{left:579.200000pt;}
.x1c_c00297{left:608.000000pt;}
.xb_c00297{left:610.560000pt;}
.xe_c00297{left:616.320000pt;}
.x22_c00297{left:617.600000pt;}
.x10_c00297{left:634.240000pt;}
.x38_c00297{left:635.520000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_afcfab3a9316cdbe9936ad05.woff2')format("woff");}.ff1_c00298{font-family:ff1_c00298;line-height:1.109863;font-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_c00298{transform:matrix(0.205350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205350,0.000000,0.000000,0.250000,0,0);}
.m22_c00298{transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);}
.m12_c00298{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m6_c00298{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m41_c00298{transform:matrix(0.243775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243775,0.000000,0.000000,0.250000,0,0);}
.m16_c00298{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m8_c00298{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);}
.m2f_c00298{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_c00298{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_c00298{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m4_c00298{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);}
.m2b_c00298{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m32_c00298{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_c00298{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);}
.m3f_c00298{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00298{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1_c00298{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00298{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m17_c00298{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m13_c00298{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m43_c00298{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00298{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.ma_c00298{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00298{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00298{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00298{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00298{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2_c00298{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00298{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.md_c00298{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3_c00298{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m9_c00298{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m28_c00298{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00298{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m15_c00298{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.mb_c00298{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m5_c00298{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m0_c00298{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m24_c00298{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m23_c00298{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m25_c00298{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.me_c00298{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m35_c00298{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00298{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);}
.m2c_c00298{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_c00298{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m30_c00298{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);}
.m38_c00298{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);}
.m26_c00298{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);}
.m33_c00298{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m19_c00298{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00298{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m42_c00298{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m36_c00298{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.mf_c00298{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m39_c00298{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);}
.m2a_c00298{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m31_c00298{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m11_c00298{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);}
.m34_c00298{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m18_c00298{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);}
.m27_c00298{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m29_c00298{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00298{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);}
.m14_c00298{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00298{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m37_c00298{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m20_c00298{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.v0_c00298{vertical-align:0.000000px;}
.ls0_c00298{letter-spacing:0.000000px;}
.sc__c00298{text-shadow:none;}
.sc0_c00298{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00298{-webkit-text-stroke:0px transparent;}
.sc0_c00298{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00298{word-spacing:0.000000px;}
.ws0_c00298{word-spacing:9.210378px;}
.fc0_c00298{color:transparent;}
.fsf_c00298{font-size:34.560000px;}
.fs8_c00298{font-size:37.440000px;}
.fsa_c00298{font-size:43.200000px;}
.fs10_c00298{font-size:46.080000px;}
.fs7_c00298{font-size:48.960000px;}
.fs5_c00298{font-size:51.840000px;}
.fs1_c00298{font-size:54.720000px;}
.fs4_c00298{font-size:57.600000px;}
.fs6_c00298{font-size:60.480000px;}
.fs3_c00298{font-size:63.360000px;}
.fs0_c00298{font-size:66.240000px;}
.fs2_c00298{font-size:69.120000px;}
.fse_c00298{font-size:72.000000px;}
.fsd_c00298{font-size:74.880000px;}
.fs9_c00298{font-size:77.760000px;}
.fsc_c00298{font-size:100.800000px;}
.fsb_c00298{font-size:109.440000px;}
.y0_c00298{bottom:0.000000px;}
.y78_c00298{bottom:59.760000px;}
.y79_c00298{bottom:60.480000px;}
.y7b_c00298{bottom:61.920000px;}
.y3c_c00298{bottom:63.360000px;}
.y3d_c00298{bottom:64.080000px;}
.y7a_c00298{bottom:64.800000px;}
.y3e_c00298{bottom:66.240000px;}
.y75_c00298{bottom:102.960000px;}
.y76_c00298{bottom:104.400000px;}
.y77_c00298{bottom:105.840000px;}
.y38_c00298{bottom:107.280000px;}
.y3b_c00298{bottom:108.000000px;}
.y39_c00298{bottom:108.720000px;}
.y3a_c00298{bottom:111.600000px;}
.y73_c00298{bottom:147.600000px;}
.y74_c00298{bottom:148.320000px;}
.y35_c00298{bottom:151.200000px;}
.y36_c00298{bottom:151.920000px;}
.y37_c00298{bottom:154.080000px;}
.y71_c00298{bottom:190.800000px;}
.y72_c00298{bottom:192.240000px;}
.y31_c00298{bottom:194.400000px;}
.y32_c00298{bottom:195.120000px;}
.y33_c00298{bottom:195.840000px;}
.y34_c00298{bottom:198.000000px;}
.y6e_c00298{bottom:234.720000px;}
.y70_c00298{bottom:235.440000px;}
.y6f_c00298{bottom:236.160000px;}
.y2e_c00298{bottom:237.600000px;}
.y2f_c00298{bottom:238.320000px;}
.y30_c00298{bottom:239.040000px;}
.y6c_c00298{bottom:277.920000px;}
.y6d_c00298{bottom:278.640000px;}
.y2b_c00298{bottom:280.800000px;}
.y2c_c00298{bottom:281.520000px;}
.y2d_c00298{bottom:282.240000px;}
.y6b_c00298{bottom:321.120000px;}
.y6a_c00298{bottom:322.560000px;}
.y29_c00298{bottom:324.000000px;}
.y69_c00298{bottom:324.720000px;}
.y2a_c00298{bottom:325.440000px;}
.y28_c00298{bottom:326.880000px;}
.y67_c00298{bottom:364.320000px;}
.y68_c00298{bottom:365.760000px;}
.y66_c00298{bottom:366.480000px;}
.y27_c00298{bottom:367.200000px;}
.y26_c00298{bottom:367.920000px;}
.y65_c00298{bottom:407.520000px;}
.y64_c00298{bottom:409.680000px;}
.y24_c00298{bottom:410.400000px;}
.y25_c00298{bottom:411.120000px;}
.y62_c00298{bottom:450.000000px;}
.y63_c00298{bottom:451.440000px;}
.y22_c00298{bottom:452.880000px;}
.y23_c00298{bottom:453.600000px;}
.y21_c00298{bottom:454.320000px;}
.y20_c00298{bottom:455.040000px;}
.y61_c00298{bottom:493.200000px;}
.y60_c00298{bottom:495.360000px;}
.y1e_c00298{bottom:496.080000px;}
.y1d_c00298{bottom:496.800000px;}
.y1f_c00298{bottom:498.240000px;}
.y5d_c00298{bottom:536.400000px;}
.y5c_c00298{bottom:538.560000px;}
.y1c_c00298{bottom:539.280000px;}
.y5e_c00298{bottom:540.000000px;}
.y5f_c00298{bottom:540.720000px;}
.y59_c00298{bottom:579.600000px;}
.y5a_c00298{bottom:581.040000px;}
.y19_c00298{bottom:581.760000px;}
.y5b_c00298{bottom:583.920000px;}
.y1b_c00298{bottom:584.640000px;}
.y1a_c00298{bottom:585.360000px;}
.y58_c00298{bottom:622.800000px;}
.y16_c00298{bottom:624.960000px;}
.y17_c00298{bottom:625.680000px;}
.y15_c00298{bottom:627.120000px;}
.y18_c00298{bottom:628.560000px;}
.y57_c00298{bottom:666.720000px;}
.y13_c00298{bottom:668.160000px;}
.y11_c00298{bottom:669.600000px;}
.y12_c00298{bottom:670.320000px;}
.y14_c00298{bottom:671.040000px;}
.y56_c00298{bottom:709.920000px;}
.y55_c00298{bottom:710.640000px;}
.y53_c00298{bottom:711.360000px;}
.yf_c00298{bottom:712.080000px;}
.y10_c00298{bottom:712.800000px;}
.y54_c00298{bottom:714.240000px;}
.y52_c00298{bottom:753.120000px;}
.yd_c00298{bottom:754.560000px;}
.ye_c00298{bottom:756.720000px;}
.yc_c00298{bottom:757.440000px;}
.y51_c00298{bottom:796.320000px;}
.y50_c00298{bottom:797.040000px;}
.ya_c00298{bottom:797.760000px;}
.y9_c00298{bottom:799.200000px;}
.yb_c00298{bottom:799.920000px;}
.y4f_c00298{bottom:838.800000px;}
.y4d_c00298{bottom:840.240000px;}
.y8_c00298{bottom:841.680000px;}
.y7_c00298{bottom:842.400000px;}
.y4e_c00298{bottom:843.120000px;}
.y4c_c00298{bottom:882.720000px;}
.y4b_c00298{bottom:883.440000px;}
.y5_c00298{bottom:884.880000px;}
.y6_c00298{bottom:885.600000px;}
.y49_c00298{bottom:925.920000px;}
.y2_c00298{bottom:926.640000px;}
.y4_c00298{bottom:927.360000px;}
.y3_c00298{bottom:928.080000px;}
.y4a_c00298{bottom:929.520000px;}
.y46_c00298{bottom:969.120000px;}
.y48_c00298{bottom:969.840000px;}
.y1_c00298{bottom:970.560000px;}
.y47_c00298{bottom:972.720000px;}
.y45_c00298{bottom:1011.600000px;}
.y40_c00298{bottom:1044.720000px;}
.y42_c00298{bottom:1045.440000px;}
.y43_c00298{bottom:1046.160000px;}
.y44_c00298{bottom:1047.600000px;}
.y41_c00298{bottom:1048.320000px;}
.y3f_c00298{bottom:1092.240000px;}
.h10_c00298{height:31.100625px;}
.h9_c00298{height:33.692344px;}
.hb_c00298{height:38.875781px;}
.h11_c00298{height:41.467500px;}
.h8_c00298{height:44.059219px;}
.h6_c00298{height:46.650937px;}
.h2_c00298{height:49.242656px;}
.h5_c00298{height:51.834375px;}
.h7_c00298{height:54.426094px;}
.h4_c00298{height:57.017812px;}
.h1_c00298{height:59.609531px;}
.h3_c00298{height:62.201250px;}
.hf_c00298{height:64.792969px;}
.he_c00298{height:67.384687px;}
.ha_c00298{height:69.976406px;}
.hd_c00298{height:90.710156px;}
.hc_c00298{height:98.485312px;}
.h0_c00298{height:1152.000000px;}
.w1_c00298{width:786.000000px;}
.w0_c00298{width:786.240000px;}
.x0_c00298{left:0.000000px;}
.x11_c00298{left:67.680000px;}
.x23_c00298{left:69.120000px;}
.x2a_c00298{left:71.280000px;}
.x1b_c00298{left:141.120000px;}
.x12_c00298{left:142.560000px;}
.x22_c00298{left:174.960000px;}
.x13_c00298{left:184.320000px;}
.x2b_c00298{left:185.760000px;}
.x24_c00298{left:228.240000px;}
.x30_c00298{left:230.400000px;}
.x1c_c00298{left:239.040000px;}
.x14_c00298{left:249.840000px;}
.x2e_c00298{left:262.800000px;}
.x1a_c00298{left:271.440000px;}
.x20_c00298{left:281.520000px;}
.x1d_c00298{left:293.760000px;}
.x15_c00298{left:303.840000px;}
.x31_c00298{left:305.280000px;}
.x25_c00298{left:314.640000px;}
.x2c_c00298{left:316.080000px;}
.x27_c00298{left:326.160000px;}
.x16_c00298{left:347.760000px;}
.x2d_c00298{left:359.280000px;}
.x26_c00298{left:369.360000px;}
.x1e_c00298{left:380.160000px;}
.x17_c00298{left:390.960000px;}
.x21_c00298{left:421.920000px;}
.x2f_c00298{left:424.080000px;}
.x1f_c00298{left:432.720000px;}
.x28_c00298{left:434.160000px;}
.x18_c00298{left:444.960000px;}
.x29_c00298{left:488.160000px;}
.x19_c00298{left:531.360000px;}
.x4_c00298{left:563.760000px;}
.xa_c00298{left:565.920000px;}
.x1_c00298{left:584.640000px;}
.x5_c00298{left:586.080000px;}
.xe_c00298{left:596.160000px;}
.xf_c00298{left:609.120000px;}
.x6_c00298{left:617.760000px;}
.xb_c00298{left:619.200000px;}
.x3_c00298{left:650.160000px;}
.xc_c00298{left:651.600000px;}
.x10_c00298{left:682.560000px;}
.x7_c00298{left:684.000000px;}
.x2_c00298{left:692.640000px;}
.x9_c00298{left:694.080000px;}
.x8_c00298{left:713.520000px;}
.xd_c00298{left:714.960000px;}
@media print{
.v0_c00298{vertical-align:0.000000pt;}
.ls0_c00298{letter-spacing:0.000000pt;}
.ws1_c00298{word-spacing:0.000000pt;}
.ws0_c00298{word-spacing:8.187003pt;}
.fsf_c00298{font-size:30.720000pt;}
.fs8_c00298{font-size:33.280000pt;}
.fsa_c00298{font-size:38.400000pt;}
.fs10_c00298{font-size:40.960000pt;}
.fs7_c00298{font-size:43.520000pt;}
.fs5_c00298{font-size:46.080000pt;}
.fs1_c00298{font-size:48.640000pt;}
.fs4_c00298{font-size:51.200000pt;}
.fs6_c00298{font-size:53.760000pt;}
.fs3_c00298{font-size:56.320000pt;}
.fs0_c00298{font-size:58.880000pt;}
.fs2_c00298{font-size:61.440000pt;}
.fse_c00298{font-size:64.000000pt;}
.fsd_c00298{font-size:66.560000pt;}
.fs9_c00298{font-size:69.120000pt;}
.fsc_c00298{font-size:89.600000pt;}
.fsb_c00298{font-size:97.280000pt;}
.y0_c00298{bottom:0.000000pt;}
.y78_c00298{bottom:53.120000pt;}
.y79_c00298{bottom:53.760000pt;}
.y7b_c00298{bottom:55.040000pt;}
.y3c_c00298{bottom:56.320000pt;}
.y3d_c00298{bottom:56.960000pt;}
.y7a_c00298{bottom:57.600000pt;}
.y3e_c00298{bottom:58.880000pt;}
.y75_c00298{bottom:91.520000pt;}
.y76_c00298{bottom:92.800000pt;}
.y77_c00298{bottom:94.080000pt;}
.y38_c00298{bottom:95.360000pt;}
.y3b_c00298{bottom:96.000000pt;}
.y39_c00298{bottom:96.640000pt;}
.y3a_c00298{bottom:99.200000pt;}
.y73_c00298{bottom:131.200000pt;}
.y74_c00298{bottom:131.840000pt;}
.y35_c00298{bottom:134.400000pt;}
.y36_c00298{bottom:135.040000pt;}
.y37_c00298{bottom:136.960000pt;}
.y71_c00298{bottom:169.600000pt;}
.y72_c00298{bottom:170.880000pt;}
.y31_c00298{bottom:172.800000pt;}
.y32_c00298{bottom:173.440000pt;}
.y33_c00298{bottom:174.080000pt;}
.y34_c00298{bottom:176.000000pt;}
.y6e_c00298{bottom:208.640000pt;}
.y70_c00298{bottom:209.280000pt;}
.y6f_c00298{bottom:209.920000pt;}
.y2e_c00298{bottom:211.200000pt;}
.y2f_c00298{bottom:211.840000pt;}
.y30_c00298{bottom:212.480000pt;}
.y6c_c00298{bottom:247.040000pt;}
.y6d_c00298{bottom:247.680000pt;}
.y2b_c00298{bottom:249.600000pt;}
.y2c_c00298{bottom:250.240000pt;}
.y2d_c00298{bottom:250.880000pt;}
.y6b_c00298{bottom:285.440000pt;}
.y6a_c00298{bottom:286.720000pt;}
.y29_c00298{bottom:288.000000pt;}
.y69_c00298{bottom:288.640000pt;}
.y2a_c00298{bottom:289.280000pt;}
.y28_c00298{bottom:290.560000pt;}
.y67_c00298{bottom:323.840000pt;}
.y68_c00298{bottom:325.120000pt;}
.y66_c00298{bottom:325.760000pt;}
.y27_c00298{bottom:326.400000pt;}
.y26_c00298{bottom:327.040000pt;}
.y65_c00298{bottom:362.240000pt;}
.y64_c00298{bottom:364.160000pt;}
.y24_c00298{bottom:364.800000pt;}
.y25_c00298{bottom:365.440000pt;}
.y62_c00298{bottom:400.000000pt;}
.y63_c00298{bottom:401.280000pt;}
.y22_c00298{bottom:402.560000pt;}
.y23_c00298{bottom:403.200000pt;}
.y21_c00298{bottom:403.840000pt;}
.y20_c00298{bottom:404.480000pt;}
.y61_c00298{bottom:438.400000pt;}
.y60_c00298{bottom:440.320000pt;}
.y1e_c00298{bottom:440.960000pt;}
.y1d_c00298{bottom:441.600000pt;}
.y1f_c00298{bottom:442.880000pt;}
.y5d_c00298{bottom:476.800000pt;}
.y5c_c00298{bottom:478.720000pt;}
.y1c_c00298{bottom:479.360000pt;}
.y5e_c00298{bottom:480.000000pt;}
.y5f_c00298{bottom:480.640000pt;}
.y59_c00298{bottom:515.200000pt;}
.y5a_c00298{bottom:516.480000pt;}
.y19_c00298{bottom:517.120000pt;}
.y5b_c00298{bottom:519.040000pt;}
.y1b_c00298{bottom:519.680000pt;}
.y1a_c00298{bottom:520.320000pt;}
.y58_c00298{bottom:553.600000pt;}
.y16_c00298{bottom:555.520000pt;}
.y17_c00298{bottom:556.160000pt;}
.y15_c00298{bottom:557.440000pt;}
.y18_c00298{bottom:558.720000pt;}
.y57_c00298{bottom:592.640000pt;}
.y13_c00298{bottom:593.920000pt;}
.y11_c00298{bottom:595.200000pt;}
.y12_c00298{bottom:595.840000pt;}
.y14_c00298{bottom:596.480000pt;}
.y56_c00298{bottom:631.040000pt;}
.y55_c00298{bottom:631.680000pt;}
.y53_c00298{bottom:632.320000pt;}
.yf_c00298{bottom:632.960000pt;}
.y10_c00298{bottom:633.600000pt;}
.y54_c00298{bottom:634.880000pt;}
.y52_c00298{bottom:669.440000pt;}
.yd_c00298{bottom:670.720000pt;}
.ye_c00298{bottom:672.640000pt;}
.yc_c00298{bottom:673.280000pt;}
.y51_c00298{bottom:707.840000pt;}
.y50_c00298{bottom:708.480000pt;}
.ya_c00298{bottom:709.120000pt;}
.y9_c00298{bottom:710.400000pt;}
.yb_c00298{bottom:711.040000pt;}
.y4f_c00298{bottom:745.600000pt;}
.y4d_c00298{bottom:746.880000pt;}
.y8_c00298{bottom:748.160000pt;}
.y7_c00298{bottom:748.800000pt;}
.y4e_c00298{bottom:749.440000pt;}
.y4c_c00298{bottom:784.640000pt;}
.y4b_c00298{bottom:785.280000pt;}
.y5_c00298{bottom:786.560000pt;}
.y6_c00298{bottom:787.200000pt;}
.y49_c00298{bottom:823.040000pt;}
.y2_c00298{bottom:823.680000pt;}
.y4_c00298{bottom:824.320000pt;}
.y3_c00298{bottom:824.960000pt;}
.y4a_c00298{bottom:826.240000pt;}
.y46_c00298{bottom:861.440000pt;}
.y48_c00298{bottom:862.080000pt;}
.y1_c00298{bottom:862.720000pt;}
.y47_c00298{bottom:864.640000pt;}
.y45_c00298{bottom:899.200000pt;}
.y40_c00298{bottom:928.640000pt;}
.y42_c00298{bottom:929.280000pt;}
.y43_c00298{bottom:929.920000pt;}
.y44_c00298{bottom:931.200000pt;}
.y41_c00298{bottom:931.840000pt;}
.y3f_c00298{bottom:970.880000pt;}
.h10_c00298{height:27.645000pt;}
.h9_c00298{height:29.948750pt;}
.hb_c00298{height:34.556250pt;}
.h11_c00298{height:36.860000pt;}
.h8_c00298{height:39.163750pt;}
.h6_c00298{height:41.467500pt;}
.h2_c00298{height:43.771250pt;}
.h5_c00298{height:46.075000pt;}
.h7_c00298{height:48.378750pt;}
.h4_c00298{height:50.682500pt;}
.h1_c00298{height:52.986250pt;}
.h3_c00298{height:55.290000pt;}
.hf_c00298{height:57.593750pt;}
.he_c00298{height:59.897500pt;}
.ha_c00298{height:62.201250pt;}
.hd_c00298{height:80.631250pt;}
.hc_c00298{height:87.542500pt;}
.h0_c00298{height:1024.000000pt;}
.w1_c00298{width:698.666667pt;}
.w0_c00298{width:698.880000pt;}
.x0_c00298{left:0.000000pt;}
.x11_c00298{left:60.160000pt;}
.x23_c00298{left:61.440000pt;}
.x2a_c00298{left:63.360000pt;}
.x1b_c00298{left:125.440000pt;}
.x12_c00298{left:126.720000pt;}
.x22_c00298{left:155.520000pt;}
.x13_c00298{left:163.840000pt;}
.x2b_c00298{left:165.120000pt;}
.x24_c00298{left:202.880000pt;}
.x30_c00298{left:204.800000pt;}
.x1c_c00298{left:212.480000pt;}
.x14_c00298{left:222.080000pt;}
.x2e_c00298{left:233.600000pt;}
.x1a_c00298{left:241.280000pt;}
.x20_c00298{left:250.240000pt;}
.x1d_c00298{left:261.120000pt;}
.x15_c00298{left:270.080000pt;}
.x31_c00298{left:271.360000pt;}
.x25_c00298{left:279.680000pt;}
.x2c_c00298{left:280.960000pt;}
.x27_c00298{left:289.920000pt;}
.x16_c00298{left:309.120000pt;}
.x2d_c00298{left:319.360000pt;}
.x26_c00298{left:328.320000pt;}
.x1e_c00298{left:337.920000pt;}
.x17_c00298{left:347.520000pt;}
.x21_c00298{left:375.040000pt;}
.x2f_c00298{left:376.960000pt;}
.x1f_c00298{left:384.640000pt;}
.x28_c00298{left:385.920000pt;}
.x18_c00298{left:395.520000pt;}
.x29_c00298{left:433.920000pt;}
.x19_c00298{left:472.320000pt;}
.x4_c00298{left:501.120000pt;}
.xa_c00298{left:503.040000pt;}
.x1_c00298{left:519.680000pt;}
.x5_c00298{left:520.960000pt;}
.xe_c00298{left:529.920000pt;}
.xf_c00298{left:541.440000pt;}
.x6_c00298{left:549.120000pt;}
.xb_c00298{left:550.400000pt;}
.x3_c00298{left:577.920000pt;}
.xc_c00298{left:579.200000pt;}
.x10_c00298{left:606.720000pt;}
.x7_c00298{left:608.000000pt;}
.x2_c00298{left:615.680000pt;}
.x9_c00298{left:616.960000pt;}
.x8_c00298{left:634.240000pt;}
.xd_c00298{left:635.520000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0cba34033efb467609643cf8.woff2')format("woff");}.ff1_c00299{font-family:ff1_c00299;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m49_c00299{transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);}
.m3c_c00299{transform:matrix(0.194025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194025,0.000000,0.000000,0.250000,0,0);}
.m46_c00299{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);}
.m42_c00299{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m4c_c00299{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m32_c00299{transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);}
.m6_c00299{transform:matrix(0.243100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243100,0.000000,0.000000,0.250000,0,0);}
.m27_c00299{transform:matrix(0.246625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246625,0.000000,0.000000,0.250000,0,0);}
.m3d_c00299{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m3a_c00299{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m28_c00299{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1_c00299{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);}
.m41_c00299{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);}
.m2e_c00299{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);}
.m37_c00299{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.md_c00299{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m12_c00299{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m16_c00299{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.ma_c00299{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m4_c00299{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m23_c00299{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mb_c00299{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mf_c00299{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m22_c00299{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);}
.m43_c00299{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);}
.m3e_c00299{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m38_c00299{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m24_c00299{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m45_c00299{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m14_c00299{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m48_c00299{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00299{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3_c00299{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m15_c00299{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00299{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m11_c00299{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00299{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m5_c00299{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m29_c00299{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m35_c00299{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00299{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m19_c00299{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m13_c00299{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m39_c00299{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00299{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m31_c00299{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00299{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.me_c00299{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m21_c00299{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.mc_c00299{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m9_c00299{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);}
.m0_c00299{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m36_c00299{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_c00299{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m44_c00299{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m25_c00299{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);}
.m18_c00299{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);}
.m47_c00299{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m17_c00299{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00299{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00299{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);}
.m30_c00299{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m33_c00299{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m26_c00299{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00299{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m20_c00299{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00299{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);}
.m10_c00299{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00299{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00299{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);}
.m2_c00299{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00299{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);}
.m1e_c00299{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m40_c00299{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00299{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m34_c00299{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00299{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00299{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00299{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00299{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.v0_c00299{vertical-align:0.000000px;}
.v1_c00299{vertical-align:8.640000px;}
.v2_c00299{vertical-align:14.400000px;}
.ls0_c00299{letter-spacing:0.000000px;}
.sc__c00299{text-shadow:none;}
.sc0_c00299{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00299{-webkit-text-stroke:0px transparent;}
.sc0_c00299{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00299{word-spacing:-4.099680px;}
.ws2_c00299{word-spacing:0.000000px;}
.ws0_c00299{word-spacing:13.140000px;}
.fc0_c00299{color:transparent;}
.fsd_c00299{font-size:34.560000px;}
.fsa_c00299{font-size:37.440000px;}
.fsc_c00299{font-size:46.080000px;}
.fs9_c00299{font-size:48.960000px;}
.fs2_c00299{font-size:51.840000px;}
.fs6_c00299{font-size:54.720000px;}
.fs7_c00299{font-size:57.600000px;}
.fs0_c00299{font-size:60.480000px;}
.fsb_c00299{font-size:63.360000px;}
.fs3_c00299{font-size:66.240000px;}
.fs5_c00299{font-size:69.120000px;}
.fs8_c00299{font-size:72.000000px;}
.fs1_c00299{font-size:74.880000px;}
.fs4_c00299{font-size:77.760000px;}
.fse_c00299{font-size:89.280000px;}
.y0_c00299{bottom:0.000000px;}
.y5b_c00299{bottom:48.240000px;}
.y7d_c00299{bottom:52.560000px;}
.y5a_c00299{bottom:54.000000px;}
.y7e_c00299{bottom:55.440000px;}
.y59_c00299{bottom:91.440000px;}
.y58_c00299{bottom:95.760000px;}
.y7a_c00299{bottom:97.200000px;}
.y7b_c00299{bottom:98.640000px;}
.y7c_c00299{bottom:99.360000px;}
.y57_c00299{bottom:135.360000px;}
.y56_c00299{bottom:136.800000px;}
.y55_c00299{bottom:139.680000px;}
.y78_c00299{bottom:140.400000px;}
.y79_c00299{bottom:141.840000px;}
.y53_c00299{bottom:177.840000px;}
.y54_c00299{bottom:182.160000px;}
.y52_c00299{bottom:182.880000px;}
.y77_c00299{bottom:183.600000px;}
.y51_c00299{bottom:222.480000px;}
.y4e_c00299{bottom:254.160000px;}
.y50_c00299{bottom:254.880000px;}
.y4d_c00299{bottom:257.040000px;}
.y4f_c00299{bottom:257.760000px;}
.y76_c00299{bottom:259.920000px;}
.y4a_c00299{bottom:296.640000px;}
.y4c_c00299{bottom:298.080000px;}
.y4b_c00299{bottom:298.800000px;}
.y49_c00299{bottom:300.960000px;}
.y75_c00299{bottom:303.840000px;}
.y45_c00299{bottom:340.560000px;}
.y48_c00299{bottom:342.000000px;}
.y46_c00299{bottom:342.720000px;}
.y73_c00299{bottom:343.440000px;}
.y43_c00299{bottom:344.160000px;}
.y44_c00299{bottom:344.880000px;}
.y47_c00299{bottom:345.600000px;}
.y74_c00299{bottom:346.320000px;}
.y3f_c00299{bottom:384.480000px;}
.y42_c00299{bottom:385.200000px;}
.y41_c00299{bottom:386.640000px;}
.y3e_c00299{bottom:387.360000px;}
.y71_c00299{bottom:388.080000px;}
.y40_c00299{bottom:388.800000px;}
.y72_c00299{bottom:389.520000px;}
.y3a_c00299{bottom:427.680000px;}
.y3d_c00299{bottom:428.400000px;}
.y3b_c00299{bottom:429.120000px;}
.y39_c00299{bottom:429.840000px;}
.y6f_c00299{bottom:430.560000px;}
.y3c_c00299{bottom:432.000000px;}
.y70_c00299{bottom:432.720000px;}
.y6e_c00299{bottom:433.440000px;}
.y37_c00299{bottom:470.880000px;}
.y38_c00299{bottom:471.600000px;}
.y36_c00299{bottom:473.760000px;}
.y35_c00299{bottom:515.520000px;}
.y34_c00299{bottom:518.400000px;}
.y31_c00299{bottom:547.200000px;}
.y30_c00299{bottom:549.360000px;}
.y6d_c00299{bottom:550.080000px;}
.y32_c00299{bottom:550.800000px;}
.y33_c00299{bottom:551.520000px;}
.y2d_c00299{bottom:590.400000px;}
.y2c_c00299{bottom:591.840000px;}
.y2e_c00299{bottom:592.560000px;}
.y6c_c00299{bottom:593.280000px;}
.y2f_c00299{bottom:594.720000px;}
.y6b_c00299{bottom:595.440000px;}
.y2b_c00299{bottom:633.600000px;}
.y2a_c00299{bottom:634.320000px;}
.y69_c00299{bottom:635.760000px;}
.y68_c00299{bottom:637.200000px;}
.y6a_c00299{bottom:637.920000px;}
.y28_c00299{bottom:676.800000px;}
.y67_c00299{bottom:677.520000px;}
.y27_c00299{bottom:678.240000px;}
.y66_c00299{bottom:678.960000px;}
.y29_c00299{bottom:680.400000px;}
.y25_c00299{bottom:719.280000px;}
.y26_c00299{bottom:720.000000px;}
.y24_c00299{bottom:721.440000px;}
.y65_c00299{bottom:722.160000px;}
.y21_c00299{bottom:762.480000px;}
.y23_c00299{bottom:763.200000px;}
.y20_c00299{bottom:763.920000px;}
.y64_c00299{bottom:765.360000px;}
.y22_c00299{bottom:766.080000px;}
.y63_c00299{bottom:766.800000px;}
.y62_c00299{bottom:767.520000px;}
.y1d_c00299{bottom:805.680000px;}
.y1f_c00299{bottom:806.400000px;}
.y1c_c00299{bottom:807.120000px;}
.y5f_c00299{bottom:807.840000px;}
.y60_c00299{bottom:808.560000px;}
.y1e_c00299{bottom:809.280000px;}
.y61_c00299{bottom:810.000000px;}
.y1b_c00299{bottom:848.880000px;}
.y1a_c00299{bottom:849.600000px;}
.y5d_c00299{bottom:850.320000px;}
.y5e_c00299{bottom:853.200000px;}
.y19_c00299{bottom:892.080000px;}
.y17_c00299{bottom:893.520000px;}
.y18_c00299{bottom:895.680000px;}
.y13_c00299{bottom:925.200000px;}
.y14_c00299{bottom:925.920000px;}
.y5c_c00299{bottom:926.640000px;}
.y16_c00299{bottom:928.080000px;}
.y15_c00299{bottom:928.800000px;}
.y9_c00299{bottom:968.400000px;}
.yb_c00299{bottom:969.120000px;}
.y11_c00299{bottom:969.840000px;}
.y12_c00299{bottom:971.280000px;}
.ya_c00299{bottom:972.000000px;}
.y6_c00299{bottom:1010.880000px;}
.y8_c00299{bottom:1011.600000px;}
.y5_c00299{bottom:1012.320000px;}
.y10_c00299{bottom:1013.040000px;}
.y7_c00299{bottom:1015.200000px;}
.y2_c00299{bottom:1054.800000px;}
.y1_c00299{bottom:1055.520000px;}
.yd_c00299{bottom:1056.240000px;}
.y4_c00299{bottom:1056.960000px;}
.yf_c00299{bottom:1057.680000px;}
.ye_c00299{bottom:1058.400000px;}
.y3_c00299{bottom:1059.120000px;}
.yc_c00299{bottom:1099.440000px;}
.hf_c00299{height:31.100625px;}
.hc_c00299{height:33.692344px;}
.he_c00299{height:41.467500px;}
.hb_c00299{height:44.059219px;}
.h4_c00299{height:46.650937px;}
.h8_c00299{height:49.242656px;}
.h9_c00299{height:51.834375px;}
.h2_c00299{height:54.426094px;}
.hd_c00299{height:57.017812px;}
.h5_c00299{height:59.609531px;}
.h11_c00299{height:60.474375px;}
.h7_c00299{height:62.201250px;}
.ha_c00299{height:64.792969px;}
.h3_c00299{height:67.384687px;}
.h6_c00299{height:69.976406px;}
.h10_c00299{height:80.343281px;}
.h1_c00299{height:1149.750000px;}
.h0_c00299{height:1149.840000px;}
.w0_c00299{width:774.000000px;}
.x0_c00299{left:0.000000px;}
.x1_c00299{left:64.800000px;}
.x7_c00299{left:66.960000px;}
.x1e_c00299{left:68.400000px;}
.x28_c00299{left:69.840000px;}
.x2b_c00299{left:71.280000px;}
.x2_c00299{left:138.960000px;}
.x1b_c00299{left:140.400000px;}
.x2f_c00299{left:142.560000px;}
.x23_c00299{left:183.600000px;}
.x2e_c00299{left:185.040000px;}
.x3_c00299{left:226.800000px;}
.x1c_c00299{left:228.240000px;}
.x15_c00299{left:248.400000px;}
.xa_c00299{left:259.200000px;}
.x24_c00299{left:261.360000px;}
.x8_c00299{left:270.000000px;}
.x1d_c00299{left:271.440000px;}
.x4_c00299{left:281.520000px;}
.x2c_c00299{left:282.960000px;}
.x16_c00299{left:301.680000px;}
.x1a_c00299{left:303.120000px;}
.x9_c00299{left:314.640000px;}
.x29_c00299{left:334.800000px;}
.x2d_c00299{left:336.960000px;}
.x17_c00299{left:345.600000px;}
.x21_c00299{left:358.560000px;}
.x12_c00299{left:366.480000px;}
.x2a_c00299{left:378.720000px;}
.x26_c00299{left:380.160000px;}
.x1f_c00299{left:390.240000px;}
.x5_c00299{left:411.120000px;}
.x27_c00299{left:421.920000px;}
.x18_c00299{left:432.000000px;}
.x20_c00299{left:442.800000px;}
.x25_c00299{left:444.240000px;}
.x6_c00299{left:464.400000px;}
.x13_c00299{left:466.560000px;}
.x19_c00299{left:486.720000px;}
.x14_c00299{left:509.040000px;}
.x22_c00299{left:519.840000px;}
.x34_c00299{left:551.520000px;}
.xc_c00299{left:563.040000px;}
.x33_c00299{left:574.560000px;}
.x32_c00299{left:584.640000px;}
.x30_c00299{left:595.440000px;}
.xd_c00299{left:617.040000px;}
.xe_c00299{left:649.440000px;}
.xb_c00299{left:679.680000px;}
.x31_c00299{left:682.560000px;}
.x11_c00299{left:691.200000px;}
.xf_c00299{left:692.640000px;}
.x10_c00299{left:712.080000px;}
@media print{
.v0_c00299{vertical-align:0.000000pt;}
.v1_c00299{vertical-align:7.680000pt;}
.v2_c00299{vertical-align:12.800000pt;}
.ls0_c00299{letter-spacing:0.000000pt;}
.ws1_c00299{word-spacing:-3.644160pt;}
.ws2_c00299{word-spacing:0.000000pt;}
.ws0_c00299{word-spacing:11.680000pt;}
.fsd_c00299{font-size:30.720000pt;}
.fsa_c00299{font-size:33.280000pt;}
.fsc_c00299{font-size:40.960000pt;}
.fs9_c00299{font-size:43.520000pt;}
.fs2_c00299{font-size:46.080000pt;}
.fs6_c00299{font-size:48.640000pt;}
.fs7_c00299{font-size:51.200000pt;}
.fs0_c00299{font-size:53.760000pt;}
.fsb_c00299{font-size:56.320000pt;}
.fs3_c00299{font-size:58.880000pt;}
.fs5_c00299{font-size:61.440000pt;}
.fs8_c00299{font-size:64.000000pt;}
.fs1_c00299{font-size:66.560000pt;}
.fs4_c00299{font-size:69.120000pt;}
.fse_c00299{font-size:79.360000pt;}
.y0_c00299{bottom:0.000000pt;}
.y5b_c00299{bottom:42.880000pt;}
.y7d_c00299{bottom:46.720000pt;}
.y5a_c00299{bottom:48.000000pt;}
.y7e_c00299{bottom:49.280000pt;}
.y59_c00299{bottom:81.280000pt;}
.y58_c00299{bottom:85.120000pt;}
.y7a_c00299{bottom:86.400000pt;}
.y7b_c00299{bottom:87.680000pt;}
.y7c_c00299{bottom:88.320000pt;}
.y57_c00299{bottom:120.320000pt;}
.y56_c00299{bottom:121.600000pt;}
.y55_c00299{bottom:124.160000pt;}
.y78_c00299{bottom:124.800000pt;}
.y79_c00299{bottom:126.080000pt;}
.y53_c00299{bottom:158.080000pt;}
.y54_c00299{bottom:161.920000pt;}
.y52_c00299{bottom:162.560000pt;}
.y77_c00299{bottom:163.200000pt;}
.y51_c00299{bottom:197.760000pt;}
.y4e_c00299{bottom:225.920000pt;}
.y50_c00299{bottom:226.560000pt;}
.y4d_c00299{bottom:228.480000pt;}
.y4f_c00299{bottom:229.120000pt;}
.y76_c00299{bottom:231.040000pt;}
.y4a_c00299{bottom:263.680000pt;}
.y4c_c00299{bottom:264.960000pt;}
.y4b_c00299{bottom:265.600000pt;}
.y49_c00299{bottom:267.520000pt;}
.y75_c00299{bottom:270.080000pt;}
.y45_c00299{bottom:302.720000pt;}
.y48_c00299{bottom:304.000000pt;}
.y46_c00299{bottom:304.640000pt;}
.y73_c00299{bottom:305.280000pt;}
.y43_c00299{bottom:305.920000pt;}
.y44_c00299{bottom:306.560000pt;}
.y47_c00299{bottom:307.200000pt;}
.y74_c00299{bottom:307.840000pt;}
.y3f_c00299{bottom:341.760000pt;}
.y42_c00299{bottom:342.400000pt;}
.y41_c00299{bottom:343.680000pt;}
.y3e_c00299{bottom:344.320000pt;}
.y71_c00299{bottom:344.960000pt;}
.y40_c00299{bottom:345.600000pt;}
.y72_c00299{bottom:346.240000pt;}
.y3a_c00299{bottom:380.160000pt;}
.y3d_c00299{bottom:380.800000pt;}
.y3b_c00299{bottom:381.440000pt;}
.y39_c00299{bottom:382.080000pt;}
.y6f_c00299{bottom:382.720000pt;}
.y3c_c00299{bottom:384.000000pt;}
.y70_c00299{bottom:384.640000pt;}
.y6e_c00299{bottom:385.280000pt;}
.y37_c00299{bottom:418.560000pt;}
.y38_c00299{bottom:419.200000pt;}
.y36_c00299{bottom:421.120000pt;}
.y35_c00299{bottom:458.240000pt;}
.y34_c00299{bottom:460.800000pt;}
.y31_c00299{bottom:486.400000pt;}
.y30_c00299{bottom:488.320000pt;}
.y6d_c00299{bottom:488.960000pt;}
.y32_c00299{bottom:489.600000pt;}
.y33_c00299{bottom:490.240000pt;}
.y2d_c00299{bottom:524.800000pt;}
.y2c_c00299{bottom:526.080000pt;}
.y2e_c00299{bottom:526.720000pt;}
.y6c_c00299{bottom:527.360000pt;}
.y2f_c00299{bottom:528.640000pt;}
.y6b_c00299{bottom:529.280000pt;}
.y2b_c00299{bottom:563.200000pt;}
.y2a_c00299{bottom:563.840000pt;}
.y69_c00299{bottom:565.120000pt;}
.y68_c00299{bottom:566.400000pt;}
.y6a_c00299{bottom:567.040000pt;}
.y28_c00299{bottom:601.600000pt;}
.y67_c00299{bottom:602.240000pt;}
.y27_c00299{bottom:602.880000pt;}
.y66_c00299{bottom:603.520000pt;}
.y29_c00299{bottom:604.800000pt;}
.y25_c00299{bottom:639.360000pt;}
.y26_c00299{bottom:640.000000pt;}
.y24_c00299{bottom:641.280000pt;}
.y65_c00299{bottom:641.920000pt;}
.y21_c00299{bottom:677.760000pt;}
.y23_c00299{bottom:678.400000pt;}
.y20_c00299{bottom:679.040000pt;}
.y64_c00299{bottom:680.320000pt;}
.y22_c00299{bottom:680.960000pt;}
.y63_c00299{bottom:681.600000pt;}
.y62_c00299{bottom:682.240000pt;}
.y1d_c00299{bottom:716.160000pt;}
.y1f_c00299{bottom:716.800000pt;}
.y1c_c00299{bottom:717.440000pt;}
.y5f_c00299{bottom:718.080000pt;}
.y60_c00299{bottom:718.720000pt;}
.y1e_c00299{bottom:719.360000pt;}
.y61_c00299{bottom:720.000000pt;}
.y1b_c00299{bottom:754.560000pt;}
.y1a_c00299{bottom:755.200000pt;}
.y5d_c00299{bottom:755.840000pt;}
.y5e_c00299{bottom:758.400000pt;}
.y19_c00299{bottom:792.960000pt;}
.y17_c00299{bottom:794.240000pt;}
.y18_c00299{bottom:796.160000pt;}
.y13_c00299{bottom:822.400000pt;}
.y14_c00299{bottom:823.040000pt;}
.y5c_c00299{bottom:823.680000pt;}
.y16_c00299{bottom:824.960000pt;}
.y15_c00299{bottom:825.600000pt;}
.y9_c00299{bottom:860.800000pt;}
.yb_c00299{bottom:861.440000pt;}
.y11_c00299{bottom:862.080000pt;}
.y12_c00299{bottom:863.360000pt;}
.ya_c00299{bottom:864.000000pt;}
.y6_c00299{bottom:898.560000pt;}
.y8_c00299{bottom:899.200000pt;}
.y5_c00299{bottom:899.840000pt;}
.y10_c00299{bottom:900.480000pt;}
.y7_c00299{bottom:902.400000pt;}
.y2_c00299{bottom:937.600000pt;}
.y1_c00299{bottom:938.240000pt;}
.yd_c00299{bottom:938.880000pt;}
.y4_c00299{bottom:939.520000pt;}
.yf_c00299{bottom:940.160000pt;}
.ye_c00299{bottom:940.800000pt;}
.y3_c00299{bottom:941.440000pt;}
.yc_c00299{bottom:977.280000pt;}
.hf_c00299{height:27.645000pt;}
.hc_c00299{height:29.948750pt;}
.he_c00299{height:36.860000pt;}
.hb_c00299{height:39.163750pt;}
.h4_c00299{height:41.467500pt;}
.h8_c00299{height:43.771250pt;}
.h9_c00299{height:46.075000pt;}
.h2_c00299{height:48.378750pt;}
.hd_c00299{height:50.682500pt;}
.h5_c00299{height:52.986250pt;}
.h11_c00299{height:53.755000pt;}
.h7_c00299{height:55.290000pt;}
.ha_c00299{height:57.593750pt;}
.h3_c00299{height:59.897500pt;}
.h6_c00299{height:62.201250pt;}
.h10_c00299{height:71.416250pt;}
.h1_c00299{height:1022.000000pt;}
.h0_c00299{height:1022.080000pt;}
.w0_c00299{width:688.000000pt;}
.x0_c00299{left:0.000000pt;}
.x1_c00299{left:57.600000pt;}
.x7_c00299{left:59.520000pt;}
.x1e_c00299{left:60.800000pt;}
.x28_c00299{left:62.080000pt;}
.x2b_c00299{left:63.360000pt;}
.x2_c00299{left:123.520000pt;}
.x1b_c00299{left:124.800000pt;}
.x2f_c00299{left:126.720000pt;}
.x23_c00299{left:163.200000pt;}
.x2e_c00299{left:164.480000pt;}
.x3_c00299{left:201.600000pt;}
.x1c_c00299{left:202.880000pt;}
.x15_c00299{left:220.800000pt;}
.xa_c00299{left:230.400000pt;}
.x24_c00299{left:232.320000pt;}
.x8_c00299{left:240.000000pt;}
.x1d_c00299{left:241.280000pt;}
.x4_c00299{left:250.240000pt;}
.x2c_c00299{left:251.520000pt;}
.x16_c00299{left:268.160000pt;}
.x1a_c00299{left:269.440000pt;}
.x9_c00299{left:279.680000pt;}
.x29_c00299{left:297.600000pt;}
.x2d_c00299{left:299.520000pt;}
.x17_c00299{left:307.200000pt;}
.x21_c00299{left:318.720000pt;}
.x12_c00299{left:325.760000pt;}
.x2a_c00299{left:336.640000pt;}
.x26_c00299{left:337.920000pt;}
.x1f_c00299{left:346.880000pt;}
.x5_c00299{left:365.440000pt;}
.x27_c00299{left:375.040000pt;}
.x18_c00299{left:384.000000pt;}
.x20_c00299{left:393.600000pt;}
.x25_c00299{left:394.880000pt;}
.x6_c00299{left:412.800000pt;}
.x13_c00299{left:414.720000pt;}
.x19_c00299{left:432.640000pt;}
.x14_c00299{left:452.480000pt;}
.x22_c00299{left:462.080000pt;}
.x34_c00299{left:490.240000pt;}
.xc_c00299{left:500.480000pt;}
.x33_c00299{left:510.720000pt;}
.x32_c00299{left:519.680000pt;}
.x30_c00299{left:529.280000pt;}
.xd_c00299{left:548.480000pt;}
.xe_c00299{left:577.280000pt;}
.xb_c00299{left:604.160000pt;}
.x31_c00299{left:606.720000pt;}
.x11_c00299{left:614.400000pt;}
.xf_c00299{left:615.680000pt;}
.x10_c00299{left:632.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_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_63b20541f3f60965bc336ae2.woff2')format("woff");}.ff1_c00300{font-family:ff1_c00300;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m41_c00300{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00300{transform:matrix(0.203100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203100,0.000000,0.000000,0.250000,0,0);}
.m46_c00300{transform:matrix(0.205050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205050,0.000000,0.000000,0.250000,0,0);}
.m21_c00300{transform:matrix(0.206975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206975,0.000000,0.000000,0.250000,0,0);}
.m28_c00300{transform:matrix(0.216025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216025,0.000000,0.000000,0.250000,0,0);}
.m35_c00300{transform:matrix(0.230325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230325,0.000000,0.000000,0.250000,0,0);}
.m43_c00300{transform:matrix(0.245850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245850,0.000000,0.000000,0.250000,0,0);}
.m25_c00300{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00300{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00300{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m31_c00300{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00300{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m19_c00300{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m45_c00300{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m24_c00300{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.ma_c00300{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m5_c00300{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m10_c00300{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m22_c00300{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00300{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00300{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00300{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m40_c00300{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m17_c00300{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m18_c00300{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m15_c00300{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mc_c00300{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00300{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.md_c00300{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00300{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.me_c00300{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m47_c00300{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m9_c00300{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m12_c00300{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00300{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m0_c00300{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);}
.m38_c00300{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m33_c00300{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m26_c00300{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00300{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);}
.m23_c00300{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1_c00300{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m3_c00300{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m37_c00300{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m30_c00300{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);}
.m2a_c00300{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);}
.m4a_c00300{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);}
.m29_c00300{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00300{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m2_c00300{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m27_c00300{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m34_c00300{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);}
.m7_c00300{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00300{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.mf_c00300{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);}
.m3d_c00300{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m32_c00300{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m14_c00300{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m39_c00300{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);}
.m36_c00300{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.mb_c00300{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);}
.m42_c00300{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m6_c00300{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);}
.m3c_c00300{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m49_c00300{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m11_c00300{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00300{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);}
.m8_c00300{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m20_c00300{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m16_c00300{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m13_c00300{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m4_c00300{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00300{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m44_c00300{transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00300{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m48_c00300{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);}
.m3e_c00300{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.v0_c00300{vertical-align:0.000000px;}
.ls0_c00300{letter-spacing:0.000000px;}
.sc__c00300{text-shadow:none;}
.sc0_c00300{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00300{-webkit-text-stroke:0px transparent;}
.sc0_c00300{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00300{word-spacing:0.000000px;}
.fc0_c00300{color:transparent;}
.fsc_c00300{font-size:37.440000px;}
.fs5_c00300{font-size:40.320000px;}
.fse_c00300{font-size:43.200000px;}
.fs4_c00300{font-size:46.080000px;}
.fs3_c00300{font-size:48.960000px;}
.fs2_c00300{font-size:51.840000px;}
.fs7_c00300{font-size:54.720000px;}
.fsa_c00300{font-size:57.600000px;}
.fs1_c00300{font-size:60.480000px;}
.fsb_c00300{font-size:63.360000px;}
.fs9_c00300{font-size:66.240000px;}
.fs6_c00300{font-size:69.120000px;}
.fs8_c00300{font-size:72.000000px;}
.fs0_c00300{font-size:74.880000px;}
.fsd_c00300{font-size:77.760000px;}
.y0_c00300{bottom:0.000000px;}
.y71_c00300{bottom:103.680000px;}
.y72_c00300{bottom:105.840000px;}
.y74_c00300{bottom:107.280000px;}
.y70_c00300{bottom:108.000000px;}
.y73_c00300{bottom:108.720000px;}
.y6c_c00300{bottom:147.600000px;}
.y6d_c00300{bottom:149.760000px;}
.y6a_c00300{bottom:151.200000px;}
.y6b_c00300{bottom:151.920000px;}
.y6f_c00300{bottom:152.640000px;}
.y6e_c00300{bottom:153.360000px;}
.y68_c00300{bottom:190.080000px;}
.y67_c00300{bottom:194.400000px;}
.y69_c00300{bottom:195.840000px;}
.y55_c00300{bottom:235.440000px;}
.y54_c00300{bottom:237.600000px;}
.y53_c00300{bottom:238.320000px;}
.y51_c00300{bottom:266.400000px;}
.y52_c00300{bottom:267.840000px;}
.y50_c00300{bottom:268.560000px;}
.y4e_c00300{bottom:270.000000px;}
.y4f_c00300{bottom:270.720000px;}
.y66_c00300{bottom:272.160000px;}
.y4c_c00300{bottom:310.320000px;}
.y4d_c00300{bottom:311.040000px;}
.y4b_c00300{bottom:311.760000px;}
.y48_c00300{bottom:313.200000px;}
.y4a_c00300{bottom:313.920000px;}
.y49_c00300{bottom:314.640000px;}
.y47_c00300{bottom:352.800000px;}
.y46_c00300{bottom:354.960000px;}
.y65_c00300{bottom:355.680000px;}
.y45_c00300{bottom:356.400000px;}
.y43_c00300{bottom:396.000000px;}
.y44_c00300{bottom:397.440000px;}
.y63_c00300{bottom:398.880000px;}
.y41_c00300{bottom:399.600000px;}
.y42_c00300{bottom:400.320000px;}
.y64_c00300{bottom:401.040000px;}
.y3d_c00300{bottom:439.920000px;}
.y40_c00300{bottom:440.640000px;}
.y3f_c00300{bottom:441.360000px;}
.y3e_c00300{bottom:442.080000px;}
.y3c_c00300{bottom:442.800000px;}
.y62_c00300{bottom:444.240000px;}
.y3b_c00300{bottom:482.400000px;}
.y3a_c00300{bottom:484.560000px;}
.y39_c00300{bottom:485.280000px;}
.y60_c00300{bottom:486.000000px;}
.y61_c00300{bottom:487.440000px;}
.y34_c00300{bottom:525.600000px;}
.y38_c00300{bottom:526.320000px;}
.y36_c00300{bottom:527.760000px;}
.y33_c00300{bottom:528.480000px;}
.y37_c00300{bottom:529.200000px;}
.y35_c00300{bottom:529.920000px;}
.y5f_c00300{bottom:530.640000px;}
.y32_c00300{bottom:568.800000px;}
.y30_c00300{bottom:570.960000px;}
.y5e_c00300{bottom:572.400000px;}
.y31_c00300{bottom:573.120000px;}
.y2e_c00300{bottom:614.160000px;}
.y2f_c00300{bottom:615.600000px;}
.y2d_c00300{bottom:617.040000px;}
.y29_c00300{bottom:666.000000px;}
.y2c_c00300{bottom:666.720000px;}
.y28_c00300{bottom:667.440000px;}
.y2a_c00300{bottom:668.160000px;}
.y5c_c00300{bottom:668.880000px;}
.y5d_c00300{bottom:669.600000px;}
.y2b_c00300{bottom:670.320000px;}
.y27_c00300{bottom:709.200000px;}
.y25_c00300{bottom:709.920000px;}
.y26_c00300{bottom:711.360000px;}
.y1f_c00300{bottom:712.080000px;}
.y24_c00300{bottom:743.760000px;}
.y21_c00300{bottom:753.120000px;}
.y20_c00300{bottom:753.840000px;}
.y1e_c00300{bottom:754.560000px;}
.y23_c00300{bottom:756.000000px;}
.y22_c00300{bottom:756.720000px;}
.y1d_c00300{bottom:796.320000px;}
.y1c_c00300{bottom:797.040000px;}
.y5b_c00300{bottom:797.760000px;}
.y19_c00300{bottom:839.520000px;}
.y17_c00300{bottom:840.240000px;}
.y1b_c00300{bottom:840.960000px;}
.y18_c00300{bottom:841.680000px;}
.y1a_c00300{bottom:843.120000px;}
.y16_c00300{bottom:882.720000px;}
.y13_c00300{bottom:883.440000px;}
.y14_c00300{bottom:884.160000px;}
.y59_c00300{bottom:884.880000px;}
.y5a_c00300{bottom:885.600000px;}
.y15_c00300{bottom:886.320000px;}
.yf_c00300{bottom:925.920000px;}
.y12_c00300{bottom:926.640000px;}
.yd_c00300{bottom:927.360000px;}
.y11_c00300{bottom:928.080000px;}
.y58_c00300{bottom:928.800000px;}
.y10_c00300{bottom:929.520000px;}
.ye_c00300{bottom:930.240000px;}
.yc_c00300{bottom:969.120000px;}
.yb_c00300{bottom:969.840000px;}
.ya_c00300{bottom:1011.600000px;}
.y9_c00300{bottom:1012.320000px;}
.y56_c00300{bottom:1013.040000px;}
.y57_c00300{bottom:1014.480000px;}
.y8_c00300{bottom:1044.720000px;}
.y5_c00300{bottom:1054.800000px;}
.y6_c00300{bottom:1055.520000px;}
.y2_c00300{bottom:1056.240000px;}
.y7_c00300{bottom:1057.680000px;}
.y3_c00300{bottom:1058.400000px;}
.y4_c00300{bottom:1059.120000px;}
.y1_c00300{bottom:1113.120000px;}
.he_c00300{height:33.692344px;}
.h7_c00300{height:36.284062px;}
.h10_c00300{height:38.875781px;}
.h6_c00300{height:41.467500px;}
.h5_c00300{height:44.059219px;}
.h4_c00300{height:46.650937px;}
.h9_c00300{height:49.242656px;}
.hc_c00300{height:51.834375px;}
.h3_c00300{height:54.426094px;}
.hd_c00300{height:57.017812px;}
.hb_c00300{height:59.609531px;}
.h8_c00300{height:62.201250px;}
.ha_c00300{height:64.792969px;}
.h2_c00300{height:67.384687px;}
.hf_c00300{height:69.976406px;}
.h1_c00300{height:1151.250000px;}
.h0_c00300{height:1151.280000px;}
.w0_c00300{width:776.160000px;}
.w1_c00300{width:776.250000px;}
.x0_c00300{left:0.000000px;}
.x2_c00300{left:66.960000px;}
.x21_c00300{left:68.400000px;}
.x38_c00300{left:69.840000px;}
.x1d_c00300{left:118.800000px;}
.x1f_c00300{left:139.680000px;}
.x3_c00300{left:141.120000px;}
.x4_c00300{left:182.880000px;}
.x20_c00300{left:184.320000px;}
.x11_c00300{left:195.120000px;}
.x2a_c00300{left:205.200000px;}
.x1e_c00300{left:216.000000px;}
.x5_c00300{left:227.520000px;}
.xf_c00300{left:237.600000px;}
.x14_c00300{left:239.040000px;}
.x1a_c00300{left:249.840000px;}
.x2b_c00300{left:259.920000px;}
.x26_c00300{left:270.720000px;}
.x6_c00300{left:282.240000px;}
.x10_c00300{left:292.320000px;}
.x23_c00300{left:324.720000px;}
.x1b_c00300{left:334.800000px;}
.xd_c00300{left:336.240000px;}
.x15_c00300{left:346.320000px;}
.x12_c00300{left:367.200000px;}
.x22_c00300{left:379.440000px;}
.xe_c00300{left:390.240000px;}
.x28_c00300{left:399.600000px;}
.x16_c00300{left:411.120000px;}
.x13_c00300{left:421.200000px;}
.x7_c00300{left:422.640000px;}
.x24_c00300{left:432.720000px;}
.x27_c00300{left:454.320000px;}
.x17_c00300{left:464.400000px;}
.x8_c00300{left:475.920000px;}
.x29_c00300{left:486.000000px;}
.x1c_c00300{left:487.440000px;}
.x19_c00300{left:496.800000px;}
.x39_c00300{left:508.320000px;}
.x18_c00300{left:509.760000px;}
.x25_c00300{left:520.560000px;}
.x9_c00300{left:530.640000px;}
.xc_c00300{left:540.720000px;}
.x30_c00300{left:574.560000px;}
.x37_c00300{left:583.920000px;}
.x33_c00300{left:585.360000px;}
.xa_c00300{left:595.440000px;}
.x35_c00300{left:615.600000px;}
.x2e_c00300{left:617.760000px;}
.x31_c00300{left:639.360000px;}
.x34_c00300{left:648.720000px;}
.x2c_c00300{left:650.160000px;}
.x1_c00300{left:673.200000px;}
.xb_c00300{left:681.120000px;}
.x32_c00300{left:682.560000px;}
.x36_c00300{left:691.200000px;}
.x2d_c00300{left:692.640000px;}
.x2f_c00300{left:712.800000px;}
@media print{
.v0_c00300{vertical-align:0.000000pt;}
.ls0_c00300{letter-spacing:0.000000pt;}
.ws0_c00300{word-spacing:0.000000pt;}
.fsc_c00300{font-size:33.280000pt;}
.fs5_c00300{font-size:35.840000pt;}
.fse_c00300{font-size:38.400000pt;}
.fs4_c00300{font-size:40.960000pt;}
.fs3_c00300{font-size:43.520000pt;}
.fs2_c00300{font-size:46.080000pt;}
.fs7_c00300{font-size:48.640000pt;}
.fsa_c00300{font-size:51.200000pt;}
.fs1_c00300{font-size:53.760000pt;}
.fsb_c00300{font-size:56.320000pt;}
.fs9_c00300{font-size:58.880000pt;}
.fs6_c00300{font-size:61.440000pt;}
.fs8_c00300{font-size:64.000000pt;}
.fs0_c00300{font-size:66.560000pt;}
.fsd_c00300{font-size:69.120000pt;}
.y0_c00300{bottom:0.000000pt;}
.y71_c00300{bottom:92.160000pt;}
.y72_c00300{bottom:94.080000pt;}
.y74_c00300{bottom:95.360000pt;}
.y70_c00300{bottom:96.000000pt;}
.y73_c00300{bottom:96.640000pt;}
.y6c_c00300{bottom:131.200000pt;}
.y6d_c00300{bottom:133.120000pt;}
.y6a_c00300{bottom:134.400000pt;}
.y6b_c00300{bottom:135.040000pt;}
.y6f_c00300{bottom:135.680000pt;}
.y6e_c00300{bottom:136.320000pt;}
.y68_c00300{bottom:168.960000pt;}
.y67_c00300{bottom:172.800000pt;}
.y69_c00300{bottom:174.080000pt;}
.y55_c00300{bottom:209.280000pt;}
.y54_c00300{bottom:211.200000pt;}
.y53_c00300{bottom:211.840000pt;}
.y51_c00300{bottom:236.800000pt;}
.y52_c00300{bottom:238.080000pt;}
.y50_c00300{bottom:238.720000pt;}
.y4e_c00300{bottom:240.000000pt;}
.y4f_c00300{bottom:240.640000pt;}
.y66_c00300{bottom:241.920000pt;}
.y4c_c00300{bottom:275.840000pt;}
.y4d_c00300{bottom:276.480000pt;}
.y4b_c00300{bottom:277.120000pt;}
.y48_c00300{bottom:278.400000pt;}
.y4a_c00300{bottom:279.040000pt;}
.y49_c00300{bottom:279.680000pt;}
.y47_c00300{bottom:313.600000pt;}
.y46_c00300{bottom:315.520000pt;}
.y65_c00300{bottom:316.160000pt;}
.y45_c00300{bottom:316.800000pt;}
.y43_c00300{bottom:352.000000pt;}
.y44_c00300{bottom:353.280000pt;}
.y63_c00300{bottom:354.560000pt;}
.y41_c00300{bottom:355.200000pt;}
.y42_c00300{bottom:355.840000pt;}
.y64_c00300{bottom:356.480000pt;}
.y3d_c00300{bottom:391.040000pt;}
.y40_c00300{bottom:391.680000pt;}
.y3f_c00300{bottom:392.320000pt;}
.y3e_c00300{bottom:392.960000pt;}
.y3c_c00300{bottom:393.600000pt;}
.y62_c00300{bottom:394.880000pt;}
.y3b_c00300{bottom:428.800000pt;}
.y3a_c00300{bottom:430.720000pt;}
.y39_c00300{bottom:431.360000pt;}
.y60_c00300{bottom:432.000000pt;}
.y61_c00300{bottom:433.280000pt;}
.y34_c00300{bottom:467.200000pt;}
.y38_c00300{bottom:467.840000pt;}
.y36_c00300{bottom:469.120000pt;}
.y33_c00300{bottom:469.760000pt;}
.y37_c00300{bottom:470.400000pt;}
.y35_c00300{bottom:471.040000pt;}
.y5f_c00300{bottom:471.680000pt;}
.y32_c00300{bottom:505.600000pt;}
.y30_c00300{bottom:507.520000pt;}
.y5e_c00300{bottom:508.800000pt;}
.y31_c00300{bottom:509.440000pt;}
.y2e_c00300{bottom:545.920000pt;}
.y2f_c00300{bottom:547.200000pt;}
.y2d_c00300{bottom:548.480000pt;}
.y29_c00300{bottom:592.000000pt;}
.y2c_c00300{bottom:592.640000pt;}
.y28_c00300{bottom:593.280000pt;}
.y2a_c00300{bottom:593.920000pt;}
.y5c_c00300{bottom:594.560000pt;}
.y5d_c00300{bottom:595.200000pt;}
.y2b_c00300{bottom:595.840000pt;}
.y27_c00300{bottom:630.400000pt;}
.y25_c00300{bottom:631.040000pt;}
.y26_c00300{bottom:632.320000pt;}
.y1f_c00300{bottom:632.960000pt;}
.y24_c00300{bottom:661.120000pt;}
.y21_c00300{bottom:669.440000pt;}
.y20_c00300{bottom:670.080000pt;}
.y1e_c00300{bottom:670.720000pt;}
.y23_c00300{bottom:672.000000pt;}
.y22_c00300{bottom:672.640000pt;}
.y1d_c00300{bottom:707.840000pt;}
.y1c_c00300{bottom:708.480000pt;}
.y5b_c00300{bottom:709.120000pt;}
.y19_c00300{bottom:746.240000pt;}
.y17_c00300{bottom:746.880000pt;}
.y1b_c00300{bottom:747.520000pt;}
.y18_c00300{bottom:748.160000pt;}
.y1a_c00300{bottom:749.440000pt;}
.y16_c00300{bottom:784.640000pt;}
.y13_c00300{bottom:785.280000pt;}
.y14_c00300{bottom:785.920000pt;}
.y59_c00300{bottom:786.560000pt;}
.y5a_c00300{bottom:787.200000pt;}
.y15_c00300{bottom:787.840000pt;}
.yf_c00300{bottom:823.040000pt;}
.y12_c00300{bottom:823.680000pt;}
.yd_c00300{bottom:824.320000pt;}
.y11_c00300{bottom:824.960000pt;}
.y58_c00300{bottom:825.600000pt;}
.y10_c00300{bottom:826.240000pt;}
.ye_c00300{bottom:826.880000pt;}
.yc_c00300{bottom:861.440000pt;}
.yb_c00300{bottom:862.080000pt;}
.ya_c00300{bottom:899.200000pt;}
.y9_c00300{bottom:899.840000pt;}
.y56_c00300{bottom:900.480000pt;}
.y57_c00300{bottom:901.760000pt;}
.y8_c00300{bottom:928.640000pt;}
.y5_c00300{bottom:937.600000pt;}
.y6_c00300{bottom:938.240000pt;}
.y2_c00300{bottom:938.880000pt;}
.y7_c00300{bottom:940.160000pt;}
.y3_c00300{bottom:940.800000pt;}
.y4_c00300{bottom:941.440000pt;}
.y1_c00300{bottom:989.440000pt;}
.he_c00300{height:29.948750pt;}
.h7_c00300{height:32.252500pt;}
.h10_c00300{height:34.556250pt;}
.h6_c00300{height:36.860000pt;}
.h5_c00300{height:39.163750pt;}
.h4_c00300{height:41.467500pt;}
.h9_c00300{height:43.771250pt;}
.hc_c00300{height:46.075000pt;}
.h3_c00300{height:48.378750pt;}
.hd_c00300{height:50.682500pt;}
.hb_c00300{height:52.986250pt;}
.h8_c00300{height:55.290000pt;}
.ha_c00300{height:57.593750pt;}
.h2_c00300{height:59.897500pt;}
.hf_c00300{height:62.201250pt;}
.h1_c00300{height:1023.333333pt;}
.h0_c00300{height:1023.360000pt;}
.w0_c00300{width:689.920000pt;}
.w1_c00300{width:690.000000pt;}
.x0_c00300{left:0.000000pt;}
.x2_c00300{left:59.520000pt;}
.x21_c00300{left:60.800000pt;}
.x38_c00300{left:62.080000pt;}
.x1d_c00300{left:105.600000pt;}
.x1f_c00300{left:124.160000pt;}
.x3_c00300{left:125.440000pt;}
.x4_c00300{left:162.560000pt;}
.x20_c00300{left:163.840000pt;}
.x11_c00300{left:173.440000pt;}
.x2a_c00300{left:182.400000pt;}
.x1e_c00300{left:192.000000pt;}
.x5_c00300{left:202.240000pt;}
.xf_c00300{left:211.200000pt;}
.x14_c00300{left:212.480000pt;}
.x1a_c00300{left:222.080000pt;}
.x2b_c00300{left:231.040000pt;}
.x26_c00300{left:240.640000pt;}
.x6_c00300{left:250.880000pt;}
.x10_c00300{left:259.840000pt;}
.x23_c00300{left:288.640000pt;}
.x1b_c00300{left:297.600000pt;}
.xd_c00300{left:298.880000pt;}
.x15_c00300{left:307.840000pt;}
.x12_c00300{left:326.400000pt;}
.x22_c00300{left:337.280000pt;}
.xe_c00300{left:346.880000pt;}
.x28_c00300{left:355.200000pt;}
.x16_c00300{left:365.440000pt;}
.x13_c00300{left:374.400000pt;}
.x7_c00300{left:375.680000pt;}
.x24_c00300{left:384.640000pt;}
.x27_c00300{left:403.840000pt;}
.x17_c00300{left:412.800000pt;}
.x8_c00300{left:423.040000pt;}
.x29_c00300{left:432.000000pt;}
.x1c_c00300{left:433.280000pt;}
.x19_c00300{left:441.600000pt;}
.x39_c00300{left:451.840000pt;}
.x18_c00300{left:453.120000pt;}
.x25_c00300{left:462.720000pt;}
.x9_c00300{left:471.680000pt;}
.xc_c00300{left:480.640000pt;}
.x30_c00300{left:510.720000pt;}
.x37_c00300{left:519.040000pt;}
.x33_c00300{left:520.320000pt;}
.xa_c00300{left:529.280000pt;}
.x35_c00300{left:547.200000pt;}
.x2e_c00300{left:549.120000pt;}
.x31_c00300{left:568.320000pt;}
.x34_c00300{left:576.640000pt;}
.x2c_c00300{left:577.920000pt;}
.x1_c00300{left:598.400000pt;}
.xb_c00300{left:605.440000pt;}
.x32_c00300{left:606.720000pt;}
.x36_c00300{left:614.400000pt;}
.x2d_c00300{left:615.680000pt;}
.x2f_c00300{left:633.600000pt;}
}





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

.ir_c00301:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00301{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00301;src:url('chunks/assets/font_d7e4bf7c2d8d18a6d35854ad.woff2')format("woff");}.ff1_c00301{font-family:ff1_c00301;line-height:1.109863;font-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_c00301{transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);}
.m2a_c00301{transform:matrix(0.218650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218650,0.000000,0.000000,0.250000,0,0);}
.m39_c00301{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m41_c00301{transform:matrix(0.237825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237825,0.000000,0.000000,0.250000,0,0);}
.m18_c00301{transform:matrix(0.244225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244225,0.000000,0.000000,0.250000,0,0);}
.m13_c00301{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m14_c00301{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_c00301{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.mf_c00301{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m49_c00301{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00301{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m46_c00301{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.me_c00301{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00301{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m15_c00301{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m3_c00301{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00301{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m19_c00301{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m11_c00301{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00301{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00301{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m8_c00301{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m10_c00301{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00301{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m26_c00301{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m22_c00301{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m16_c00301{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1_c00301{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m2_c00301{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m28_c00301{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m25_c00301{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00301{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00301{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m7_c00301{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m17_c00301{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);}
.m29_c00301{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00301{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);}
.m2f_c00301{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);}
.m2b_c00301{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00301{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);}
.m0_c00301{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m27_c00301{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.md_c00301{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00301{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m5_c00301{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m40_c00301{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.ma_c00301{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);}
.m1f_c00301{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);}
.m47_c00301{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);}
.m4a_c00301{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);}
.m3c_c00301{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);}
.m21_c00301{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00301{transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);}
.m44_c00301{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);}
.m4_c00301{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m48_c00301{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00301{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.mc_c00301{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m30_c00301{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m43_c00301{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m33_c00301{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m45_c00301{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_c00301{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m6_c00301{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m23_c00301{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);}
.mb_c00301{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m42_c00301{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m24_c00301{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m12_c00301{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m36_c00301{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00301{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);}
.m34_c00301{transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);}
.m35_c00301{transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);}
.m32_c00301{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00301{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.m37_c00301{transform:matrix(0.977500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.977500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.977500,0.000000,0.000000,0.250000,0,0);}
.m38_c00301{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.v0_c00301{vertical-align:0.000000px;}
.v1_c00301{vertical-align:2.880000px;}
.ls0_c00301{letter-spacing:0.000000px;}
.sc__c00301{text-shadow:none;}
.sc0_c00301{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00301{-webkit-text-stroke:0px transparent;}
.sc0_c00301{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00301{word-spacing:0.000000px;}
.ws0_c00301{word-spacing:46.374000px;}
.fc0_c00301{color:transparent;}
.fs10_c00301{font-size:17.280000px;}
.fsf_c00301{font-size:34.560000px;}
.fsa_c00301{font-size:37.440000px;}
.fsb_c00301{font-size:46.080000px;}
.fs5_c00301{font-size:48.960000px;}
.fs2_c00301{font-size:51.840000px;}
.fs7_c00301{font-size:54.720000px;}
.fs4_c00301{font-size:57.600000px;}
.fs6_c00301{font-size:60.480000px;}
.fsc_c00301{font-size:63.360000px;}
.fs9_c00301{font-size:66.240000px;}
.fs1_c00301{font-size:69.120000px;}
.fs3_c00301{font-size:72.000000px;}
.fs0_c00301{font-size:74.880000px;}
.fs8_c00301{font-size:77.760000px;}
.fse_c00301{font-size:97.920000px;}
.fsd_c00301{font-size:103.680000px;}
.y0_c00301{bottom:0.000000px;}
.y69_c00301{bottom:96.480000px;}
.y6a_c00301{bottom:97.200000px;}
.y67_c00301{bottom:99.360000px;}
.y68_c00301{bottom:100.080000px;}
.y63_c00301{bottom:138.960000px;}
.y62_c00301{bottom:139.680000px;}
.y64_c00301{bottom:141.120000px;}
.y60_c00301{bottom:142.560000px;}
.y61_c00301{bottom:143.280000px;}
.y65_c00301{bottom:144.000000px;}
.y66_c00301{bottom:144.720000px;}
.y5f_c00301{bottom:182.160000px;}
.y5e_c00301{bottom:185.760000px;}
.y5c_c00301{bottom:226.800000px;}
.y5d_c00301{bottom:229.680000px;}
.y5a_c00301{bottom:257.040000px;}
.y5b_c00301{bottom:259.200000px;}
.y4c_c00301{bottom:261.360000px;}
.y4d_c00301{bottom:262.080000px;}
.y49_c00301{bottom:262.800000px;}
.y4e_c00301{bottom:263.520000px;}
.y4a_c00301{bottom:264.960000px;}
.y4b_c00301{bottom:265.680000px;}
.y2f_c00301{bottom:300.240000px;}
.y2d_c00301{bottom:303.840000px;}
.y2e_c00301{bottom:304.560000px;}
.y48_c00301{bottom:306.000000px;}
.y58_c00301{bottom:344.160000px;}
.y59_c00301{bottom:345.600000px;}
.y45_c00301{bottom:347.040000px;}
.y47_c00301{bottom:347.760000px;}
.y57_c00301{bottom:348.480000px;}
.y46_c00301{bottom:349.200000px;}
.y56_c00301{bottom:387.360000px;}
.y43_c00301{bottom:390.240000px;}
.y41_c00301{bottom:390.960000px;}
.y42_c00301{bottom:391.680000px;}
.y44_c00301{bottom:392.400000px;}
.y55_c00301{bottom:431.280000px;}
.y3e_c00301{bottom:433.440000px;}
.y3f_c00301{bottom:434.160000px;}
.y40_c00301{bottom:434.880000px;}
.y54_c00301{bottom:435.600000px;}
.y53_c00301{bottom:473.760000px;}
.y52_c00301{bottom:475.920000px;}
.y3c_c00301{bottom:476.640000px;}
.y3b_c00301{bottom:477.360000px;}
.y3d_c00301{bottom:478.080000px;}
.y3a_c00301{bottom:478.800000px;}
.y51_c00301{bottom:517.680000px;}
.y37_c00301{bottom:519.120000px;}
.y39_c00301{bottom:519.840000px;}
.y38_c00301{bottom:520.560000px;}
.y4f_c00301{bottom:560.880000px;}
.y50_c00301{bottom:561.600000px;}
.y34_c00301{bottom:562.320000px;}
.y36_c00301{bottom:563.040000px;}
.y35_c00301{bottom:565.200000px;}
.y2c_c00301{bottom:603.360000px;}
.y32_c00301{bottom:605.520000px;}
.y2a_c00301{bottom:606.240000px;}
.y2b_c00301{bottom:607.680000px;}
.y33_c00301{bottom:608.400000px;}
.y29_c00301{bottom:646.560000px;}
.y28_c00301{bottom:648.000000px;}
.y30_c00301{bottom:648.720000px;}
.y31_c00301{bottom:650.160000px;}
.y27_c00301{bottom:689.760000px;}
.y26_c00301{bottom:691.200000px;}
.y24_c00301{bottom:722.160000px;}
.y23_c00301{bottom:722.880000px;}
.y21_c00301{bottom:723.600000px;}
.y22_c00301{bottom:726.480000px;}
.y25_c00301{bottom:727.200000px;}
.y1d_c00301{bottom:764.640000px;}
.y1f_c00301{bottom:765.360000px;}
.y1c_c00301{bottom:766.800000px;}
.y20_c00301{bottom:767.520000px;}
.y1e_c00301{bottom:768.960000px;}
.y19_c00301{bottom:807.840000px;}
.y18_c00301{bottom:808.560000px;}
.y1b_c00301{bottom:809.280000px;}
.y16_c00301{bottom:810.000000px;}
.y17_c00301{bottom:811.440000px;}
.y15_c00301{bottom:851.040000px;}
.y13_c00301{bottom:852.480000px;}
.y14_c00301{bottom:853.200000px;}
.y12_c00301{bottom:894.240000px;}
.y11_c00301{bottom:895.680000px;}
.y1a_c00301{bottom:896.400000px;}
.ye_c00301{bottom:938.880000px;}
.yd_c00301{bottom:941.760000px;}
.yb_c00301{bottom:970.560000px;}
.y9_c00301{bottom:971.280000px;}
.yc_c00301{bottom:972.000000px;}
.y10_c00301{bottom:972.720000px;}
.yf_c00301{bottom:973.440000px;}
.ya_c00301{bottom:974.160000px;}
.y8_c00301{bottom:1014.480000px;}
.y7_c00301{bottom:1015.200000px;}
.y5_c00301{bottom:1015.920000px;}
.y6_c00301{bottom:1017.360000px;}
.y4_c00301{bottom:1046.160000px;}
.y2_c00301{bottom:1046.880000px;}
.y3_c00301{bottom:1049.760000px;}
.y1_c00301{bottom:1103.760000px;}
.h12_c00301{height:15.550313px;}
.h11_c00301{height:31.100625px;}
.hc_c00301{height:33.692344px;}
.hd_c00301{height:41.467500px;}
.h7_c00301{height:44.059219px;}
.h4_c00301{height:46.650937px;}
.h9_c00301{height:49.242656px;}
.h6_c00301{height:51.834375px;}
.h8_c00301{height:54.426094px;}
.he_c00301{height:57.017812px;}
.hb_c00301{height:59.609531px;}
.h3_c00301{height:62.201250px;}
.h5_c00301{height:64.792969px;}
.h2_c00301{height:67.384687px;}
.ha_c00301{height:69.976406px;}
.h10_c00301{height:88.118437px;}
.hf_c00301{height:93.301875px;}
.h1_c00301{height:1151.250000px;}
.h0_c00301{height:1151.280000px;}
.w0_c00301{width:777.600000px;}
.w1_c00301{width:777.750000px;}
.x0_c00301{left:0.000000px;}
.x2_c00301{left:62.640000px;}
.x1e_c00301{left:64.080000px;}
.x1f_c00301{left:65.520000px;}
.x2c_c00301{left:66.960000px;}
.x3_c00301{left:136.800000px;}
.x9_c00301{left:138.240000px;}
.x25_c00301{left:168.480000px;}
.x20_c00301{left:170.640000px;}
.x12_c00301{left:179.280000px;}
.x4_c00301{left:181.440000px;}
.x11_c00301{left:191.520000px;}
.x10_c00301{left:202.320000px;}
.x26_c00301{left:213.840000px;}
.x13_c00301{left:224.640000px;}
.xa_c00301{left:234.720000px;}
.x32_c00301{left:246.240000px;}
.x27_c00301{left:279.360000px;}
.xb_c00301{left:289.440000px;}
.x5_c00301{left:299.520000px;}
.x2e_c00301{left:312.480000px;}
.x19_c00301{left:343.440000px;}
.x6_c00301{left:352.800000px;}
.x14_c00301{left:365.040000px;}
.x2a_c00301{left:375.840000px;}
.x2f_c00301{left:378.000000px;}
.xf_c00301{left:386.640000px;}
.x28_c00301{left:397.440000px;}
.x30_c00301{left:419.040000px;}
.x2b_c00301{left:429.840000px;}
.x7_c00301{left:440.640000px;}
.x29_c00301{left:452.160000px;}
.x1c_c00301{left:460.800000px;}
.x1a_c00301{left:472.320000px;}
.x31_c00301{left:473.760000px;}
.x8_c00301{left:494.640000px;}
.x1d_c00301{left:505.440000px;}
.x1b_c00301{left:527.040000px;}
.x23_c00301{left:537.840000px;}
.x24_c00301{left:548.640000px;}
.x15_c00301{left:559.440000px;}
.x16_c00301{left:581.040000px;}
.x2d_c00301{left:582.480000px;}
.x18_c00301{left:592.560000px;}
.xc_c00301{left:614.880000px;}
.x22_c00301{left:624.960000px;}
.x17_c00301{left:647.280000px;}
.xd_c00301{left:656.640000px;}
.x1_c00301{left:688.320000px;}
.xe_c00301{left:689.760000px;}
.x21_c00301{left:709.920000px;}
@media print{
.v0_c00301{vertical-align:0.000000pt;}
.v1_c00301{vertical-align:2.560000pt;}
.ls0_c00301{letter-spacing:0.000000pt;}
.ws1_c00301{word-spacing:0.000000pt;}
.ws0_c00301{word-spacing:41.221333pt;}
.fs10_c00301{font-size:15.360000pt;}
.fsf_c00301{font-size:30.720000pt;}
.fsa_c00301{font-size:33.280000pt;}
.fsb_c00301{font-size:40.960000pt;}
.fs5_c00301{font-size:43.520000pt;}
.fs2_c00301{font-size:46.080000pt;}
.fs7_c00301{font-size:48.640000pt;}
.fs4_c00301{font-size:51.200000pt;}
.fs6_c00301{font-size:53.760000pt;}
.fsc_c00301{font-size:56.320000pt;}
.fs9_c00301{font-size:58.880000pt;}
.fs1_c00301{font-size:61.440000pt;}
.fs3_c00301{font-size:64.000000pt;}
.fs0_c00301{font-size:66.560000pt;}
.fs8_c00301{font-size:69.120000pt;}
.fse_c00301{font-size:87.040000pt;}
.fsd_c00301{font-size:92.160000pt;}
.y0_c00301{bottom:0.000000pt;}
.y69_c00301{bottom:85.760000pt;}
.y6a_c00301{bottom:86.400000pt;}
.y67_c00301{bottom:88.320000pt;}
.y68_c00301{bottom:88.960000pt;}
.y63_c00301{bottom:123.520000pt;}
.y62_c00301{bottom:124.160000pt;}
.y64_c00301{bottom:125.440000pt;}
.y60_c00301{bottom:126.720000pt;}
.y61_c00301{bottom:127.360000pt;}
.y65_c00301{bottom:128.000000pt;}
.y66_c00301{bottom:128.640000pt;}
.y5f_c00301{bottom:161.920000pt;}
.y5e_c00301{bottom:165.120000pt;}
.y5c_c00301{bottom:201.600000pt;}
.y5d_c00301{bottom:204.160000pt;}
.y5a_c00301{bottom:228.480000pt;}
.y5b_c00301{bottom:230.400000pt;}
.y4c_c00301{bottom:232.320000pt;}
.y4d_c00301{bottom:232.960000pt;}
.y49_c00301{bottom:233.600000pt;}
.y4e_c00301{bottom:234.240000pt;}
.y4a_c00301{bottom:235.520000pt;}
.y4b_c00301{bottom:236.160000pt;}
.y2f_c00301{bottom:266.880000pt;}
.y2d_c00301{bottom:270.080000pt;}
.y2e_c00301{bottom:270.720000pt;}
.y48_c00301{bottom:272.000000pt;}
.y58_c00301{bottom:305.920000pt;}
.y59_c00301{bottom:307.200000pt;}
.y45_c00301{bottom:308.480000pt;}
.y47_c00301{bottom:309.120000pt;}
.y57_c00301{bottom:309.760000pt;}
.y46_c00301{bottom:310.400000pt;}
.y56_c00301{bottom:344.320000pt;}
.y43_c00301{bottom:346.880000pt;}
.y41_c00301{bottom:347.520000pt;}
.y42_c00301{bottom:348.160000pt;}
.y44_c00301{bottom:348.800000pt;}
.y55_c00301{bottom:383.360000pt;}
.y3e_c00301{bottom:385.280000pt;}
.y3f_c00301{bottom:385.920000pt;}
.y40_c00301{bottom:386.560000pt;}
.y54_c00301{bottom:387.200000pt;}
.y53_c00301{bottom:421.120000pt;}
.y52_c00301{bottom:423.040000pt;}
.y3c_c00301{bottom:423.680000pt;}
.y3b_c00301{bottom:424.320000pt;}
.y3d_c00301{bottom:424.960000pt;}
.y3a_c00301{bottom:425.600000pt;}
.y51_c00301{bottom:460.160000pt;}
.y37_c00301{bottom:461.440000pt;}
.y39_c00301{bottom:462.080000pt;}
.y38_c00301{bottom:462.720000pt;}
.y4f_c00301{bottom:498.560000pt;}
.y50_c00301{bottom:499.200000pt;}
.y34_c00301{bottom:499.840000pt;}
.y36_c00301{bottom:500.480000pt;}
.y35_c00301{bottom:502.400000pt;}
.y2c_c00301{bottom:536.320000pt;}
.y32_c00301{bottom:538.240000pt;}
.y2a_c00301{bottom:538.880000pt;}
.y2b_c00301{bottom:540.160000pt;}
.y33_c00301{bottom:540.800000pt;}
.y29_c00301{bottom:574.720000pt;}
.y28_c00301{bottom:576.000000pt;}
.y30_c00301{bottom:576.640000pt;}
.y31_c00301{bottom:577.920000pt;}
.y27_c00301{bottom:613.120000pt;}
.y26_c00301{bottom:614.400000pt;}
.y24_c00301{bottom:641.920000pt;}
.y23_c00301{bottom:642.560000pt;}
.y21_c00301{bottom:643.200000pt;}
.y22_c00301{bottom:645.760000pt;}
.y25_c00301{bottom:646.400000pt;}
.y1d_c00301{bottom:679.680000pt;}
.y1f_c00301{bottom:680.320000pt;}
.y1c_c00301{bottom:681.600000pt;}
.y20_c00301{bottom:682.240000pt;}
.y1e_c00301{bottom:683.520000pt;}
.y19_c00301{bottom:718.080000pt;}
.y18_c00301{bottom:718.720000pt;}
.y1b_c00301{bottom:719.360000pt;}
.y16_c00301{bottom:720.000000pt;}
.y17_c00301{bottom:721.280000pt;}
.y15_c00301{bottom:756.480000pt;}
.y13_c00301{bottom:757.760000pt;}
.y14_c00301{bottom:758.400000pt;}
.y12_c00301{bottom:794.880000pt;}
.y11_c00301{bottom:796.160000pt;}
.y1a_c00301{bottom:796.800000pt;}
.ye_c00301{bottom:834.560000pt;}
.yd_c00301{bottom:837.120000pt;}
.yb_c00301{bottom:862.720000pt;}
.y9_c00301{bottom:863.360000pt;}
.yc_c00301{bottom:864.000000pt;}
.y10_c00301{bottom:864.640000pt;}
.yf_c00301{bottom:865.280000pt;}
.ya_c00301{bottom:865.920000pt;}
.y8_c00301{bottom:901.760000pt;}
.y7_c00301{bottom:902.400000pt;}
.y5_c00301{bottom:903.040000pt;}
.y6_c00301{bottom:904.320000pt;}
.y4_c00301{bottom:929.920000pt;}
.y2_c00301{bottom:930.560000pt;}
.y3_c00301{bottom:933.120000pt;}
.y1_c00301{bottom:981.120000pt;}
.h12_c00301{height:13.822500pt;}
.h11_c00301{height:27.645000pt;}
.hc_c00301{height:29.948750pt;}
.hd_c00301{height:36.860000pt;}
.h7_c00301{height:39.163750pt;}
.h4_c00301{height:41.467500pt;}
.h9_c00301{height:43.771250pt;}
.h6_c00301{height:46.075000pt;}
.h8_c00301{height:48.378750pt;}
.he_c00301{height:50.682500pt;}
.hb_c00301{height:52.986250pt;}
.h3_c00301{height:55.290000pt;}
.h5_c00301{height:57.593750pt;}
.h2_c00301{height:59.897500pt;}
.ha_c00301{height:62.201250pt;}
.h10_c00301{height:78.327500pt;}
.hf_c00301{height:82.935000pt;}
.h1_c00301{height:1023.333333pt;}
.h0_c00301{height:1023.360000pt;}
.w0_c00301{width:691.200000pt;}
.w1_c00301{width:691.333333pt;}
.x0_c00301{left:0.000000pt;}
.x2_c00301{left:55.680000pt;}
.x1e_c00301{left:56.960000pt;}
.x1f_c00301{left:58.240000pt;}
.x2c_c00301{left:59.520000pt;}
.x3_c00301{left:121.600000pt;}
.x9_c00301{left:122.880000pt;}
.x25_c00301{left:149.760000pt;}
.x20_c00301{left:151.680000pt;}
.x12_c00301{left:159.360000pt;}
.x4_c00301{left:161.280000pt;}
.x11_c00301{left:170.240000pt;}
.x10_c00301{left:179.840000pt;}
.x26_c00301{left:190.080000pt;}
.x13_c00301{left:199.680000pt;}
.xa_c00301{left:208.640000pt;}
.x32_c00301{left:218.880000pt;}
.x27_c00301{left:248.320000pt;}
.xb_c00301{left:257.280000pt;}
.x5_c00301{left:266.240000pt;}
.x2e_c00301{left:277.760000pt;}
.x19_c00301{left:305.280000pt;}
.x6_c00301{left:313.600000pt;}
.x14_c00301{left:324.480000pt;}
.x2a_c00301{left:334.080000pt;}
.x2f_c00301{left:336.000000pt;}
.xf_c00301{left:343.680000pt;}
.x28_c00301{left:353.280000pt;}
.x30_c00301{left:372.480000pt;}
.x2b_c00301{left:382.080000pt;}
.x7_c00301{left:391.680000pt;}
.x29_c00301{left:401.920000pt;}
.x1c_c00301{left:409.600000pt;}
.x1a_c00301{left:419.840000pt;}
.x31_c00301{left:421.120000pt;}
.x8_c00301{left:439.680000pt;}
.x1d_c00301{left:449.280000pt;}
.x1b_c00301{left:468.480000pt;}
.x23_c00301{left:478.080000pt;}
.x24_c00301{left:487.680000pt;}
.x15_c00301{left:497.280000pt;}
.x16_c00301{left:516.480000pt;}
.x2d_c00301{left:517.760000pt;}
.x18_c00301{left:526.720000pt;}
.xc_c00301{left:546.560000pt;}
.x22_c00301{left:555.520000pt;}
.x17_c00301{left:575.360000pt;}
.xd_c00301{left:583.680000pt;}
.x1_c00301{left:611.840000pt;}
.xe_c00301{left:613.120000pt;}
.x21_c00301{left:631.040000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e5b8776e757156d9b06101d6.woff2')format("woff");}.ff1_c00302{font-family:ff1_c00302;line-height:1.109863;font-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_c00302{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m28_c00302{transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);}
.m53_c00302{transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);}
.m58_c00302{transform:matrix(0.234100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234100,0.000000,0.000000,0.250000,0,0);}
.m57_c00302{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.ma_c00302{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m59_c00302{transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);}
.m39_c00302{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);}
.m56_c00302{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m2_c00302{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00302{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00302{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m7_c00302{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m32_c00302{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m13_c00302{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m12_c00302{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m29_c00302{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m3_c00302{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m55_c00302{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m43_c00302{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m6_c00302{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m21_c00302{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00302{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m42_c00302{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m22_c00302{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m54_c00302{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mc_c00302{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m9_c00302{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00302{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m52_c00302{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1_c00302{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m38_c00302{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m31_c00302{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m11_c00302{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m24_c00302{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m27_c00302{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00302{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);}
.m44_c00302{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mb_c00302{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m15_c00302{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);}
.m4d_c00302{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m10_c00302{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00302{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);}
.m2f_c00302{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00302{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m0_c00302{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m41_c00302{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);}
.m3b_c00302{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);}
.m51_c00302{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m23_c00302{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00302{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);}
.m36_c00302{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m5_c00302{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_c00302{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);}
.m37_c00302{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);}
.m1d_c00302{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m18_c00302{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m35_c00302{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m30_c00302{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m17_c00302{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00302{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m25_c00302{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m14_c00302{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);}
.m3f_c00302{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m4_c00302{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m8_c00302{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.md_c00302{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00302{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00302{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m47_c00302{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);}
.m4f_c00302{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m20_c00302{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.me_c00302{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);}
.m46_c00302{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.mf_c00302{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m33_c00302{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m26_c00302{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00302{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);}
.m48_c00302{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m19_c00302{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00302{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);}
.m16_c00302{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m45_c00302{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);}
.m49_c00302{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m34_c00302{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m50_c00302{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_c00302{transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);}
.m40_c00302{transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00302{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00302{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.v0_c00302{vertical-align:0.000000px;}
.ls0_c00302{letter-spacing:0.000000px;}
.sc__c00302{text-shadow:none;}
.sc0_c00302{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00302{-webkit-text-stroke:0px transparent;}
.sc0_c00302{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00302{word-spacing:0.000000px;}
.fc0_c00302{color:transparent;}
.fs10_c00302{font-size:2.880000px;}
.fs11_c00302{font-size:14.400000px;}
.fse_c00302{font-size:23.040000px;}
.fs7_c00302{font-size:34.560000px;}
.fs9_c00302{font-size:37.440000px;}
.fsc_c00302{font-size:40.320000px;}
.fsf_c00302{font-size:43.200000px;}
.fsd_c00302{font-size:48.960000px;}
.fs6_c00302{font-size:51.840000px;}
.fs3_c00302{font-size:54.720000px;}
.fs5_c00302{font-size:57.600000px;}
.fs4_c00302{font-size:60.480000px;}
.fs8_c00302{font-size:63.360000px;}
.fsa_c00302{font-size:66.240000px;}
.fs1_c00302{font-size:69.120000px;}
.fs2_c00302{font-size:72.000000px;}
.fs0_c00302{font-size:74.880000px;}
.fsb_c00302{font-size:77.760000px;}
.y0_c00302{bottom:0.000000px;}
.y65_c00302{bottom:102.960000px;}
.y66_c00302{bottom:104.400000px;}
.y69_c00302{bottom:106.560000px;}
.y64_c00302{bottom:107.280000px;}
.y63_c00302{bottom:146.160000px;}
.y62_c00302{bottom:150.480000px;}
.y67_c00302{bottom:151.200000px;}
.y68_c00302{bottom:151.920000px;}
.y61_c00302{bottom:190.080000px;}
.y5c_c00302{bottom:192.960000px;}
.y5d_c00302{bottom:193.680000px;}
.y5e_c00302{bottom:194.400000px;}
.y60_c00302{bottom:234.000000px;}
.y59_c00302{bottom:236.880000px;}
.y5b_c00302{bottom:237.600000px;}
.y5a_c00302{bottom:240.480000px;}
.y5f_c00302{bottom:276.480000px;}
.y57_c00302{bottom:280.080000px;}
.y56_c00302{bottom:280.800000px;}
.y58_c00302{bottom:282.960000px;}
.y53_c00302{bottom:319.680000px;}
.y54_c00302{bottom:322.560000px;}
.y52_c00302{bottom:323.280000px;}
.y55_c00302{bottom:324.000000px;}
.y50_c00302{bottom:364.320000px;}
.y4f_c00302{bottom:365.040000px;}
.y4e_c00302{bottom:366.480000px;}
.y51_c00302{bottom:367.200000px;}
.y4c_c00302{bottom:396.720000px;}
.y4d_c00302{bottom:397.440000px;}
.y48_c00302{bottom:398.160000px;}
.y4a_c00302{bottom:398.880000px;}
.y49_c00302{bottom:399.600000px;}
.y4b_c00302{bottom:400.320000px;}
.y44_c00302{bottom:441.360000px;}
.y46_c00302{bottom:442.080000px;}
.y45_c00302{bottom:442.800000px;}
.y47_c00302{bottom:443.520000px;}
.y42_c00302{bottom:485.280000px;}
.y43_c00302{bottom:486.000000px;}
.y40_c00302{bottom:515.520000px;}
.y3f_c00302{bottom:516.240000px;}
.y3d_c00302{bottom:516.960000px;}
.y3e_c00302{bottom:518.400000px;}
.y41_c00302{bottom:519.120000px;}
.y39_c00302{bottom:560.160000px;}
.y3b_c00302{bottom:561.600000px;}
.y3c_c00302{bottom:562.320000px;}
.y3a_c00302{bottom:565.200000px;}
.y36_c00302{bottom:601.200000px;}
.y37_c00302{bottom:601.920000px;}
.y34_c00302{bottom:602.640000px;}
.y38_c00302{bottom:603.360000px;}
.y35_c00302{bottom:605.520000px;}
.y30_c00302{bottom:644.400000px;}
.y31_c00302{bottom:645.840000px;}
.y32_c00302{bottom:646.560000px;}
.y33_c00302{bottom:648.720000px;}
.y2e_c00302{bottom:677.520000px;}
.y2d_c00302{bottom:678.240000px;}
.y2b_c00302{bottom:678.960000px;}
.y2f_c00302{bottom:679.680000px;}
.y2c_c00302{bottom:681.120000px;}
.y29_c00302{bottom:721.440000px;}
.y28_c00302{bottom:722.160000px;}
.y2a_c00302{bottom:724.320000px;}
.y26_c00302{bottom:753.120000px;}
.y27_c00302{bottom:753.840000px;}
.y24_c00302{bottom:754.560000px;}
.y23_c00302{bottom:756.000000px;}
.y25_c00302{bottom:756.720000px;}
.y21_c00302{bottom:784.800000px;}
.y1f_c00302{bottom:786.240000px;}
.y22_c00302{bottom:786.960000px;}
.y20_c00302{bottom:789.120000px;}
.y1d_c00302{bottom:828.000000px;}
.y1b_c00302{bottom:829.440000px;}
.y1e_c00302{bottom:830.880000px;}
.y1c_c00302{bottom:832.320000px;}
.y1a_c00302{bottom:862.560000px;}
.y15_c00302{bottom:871.200000px;}
.y12_c00302{bottom:872.640000px;}
.y17_c00302{bottom:873.360000px;}
.y18_c00302{bottom:874.080000px;}
.y19_c00302{bottom:874.800000px;}
.y14_c00302{bottom:875.520000px;}
.y13_c00302{bottom:876.240000px;}
.y16_c00302{bottom:879.120000px;}
.y11_c00302{bottom:918.720000px;}
.yd_c00302{bottom:946.800000px;}
.yb_c00302{bottom:947.520000px;}
.y10_c00302{bottom:948.240000px;}
.yf_c00302{bottom:949.680000px;}
.ye_c00302{bottom:950.400000px;}
.yc_c00302{bottom:951.120000px;}
.y7_c00302{bottom:990.000000px;}
.ya_c00302{bottom:990.720000px;}
.y8_c00302{bottom:992.880000px;}
.y9_c00302{bottom:993.600000px;}
.y3_c00302{bottom:1033.200000px;}
.y2_c00302{bottom:1033.920000px;}
.y6_c00302{bottom:1034.640000px;}
.y5_c00302{bottom:1036.080000px;}
.y4_c00302{bottom:1036.800000px;}
.y1_c00302{bottom:1080.720000px;}
.h12_c00302{height:2.591719px;}
.h13_c00302{height:12.958594px;}
.h10_c00302{height:20.733750px;}
.h9_c00302{height:31.100625px;}
.hb_c00302{height:33.692344px;}
.he_c00302{height:36.284062px;}
.h11_c00302{height:38.875781px;}
.hf_c00302{height:44.059219px;}
.h8_c00302{height:46.650937px;}
.h5_c00302{height:49.242656px;}
.h7_c00302{height:51.834375px;}
.h6_c00302{height:54.426094px;}
.ha_c00302{height:57.017812px;}
.hc_c00302{height:59.609531px;}
.h3_c00302{height:62.201250px;}
.h4_c00302{height:64.792969px;}
.h2_c00302{height:67.384687px;}
.hd_c00302{height:69.976406px;}
.h1_c00302{height:1149.750000px;}
.h0_c00302{height:1149.840000px;}
.w0_c00302{width:775.440000px;}
.w1_c00302{width:775.500000px;}
.x0_c00302{left:0.000000px;}
.x2_c00302{left:58.320000px;}
.xd_c00302{left:59.760000px;}
.x32_c00302{left:61.200000px;}
.x38_c00302{left:62.640000px;}
.x3c_c00302{left:64.080000px;}
.x2d_c00302{left:112.320000px;}
.x3_c00302{left:131.760000px;}
.xe_c00302{left:133.200000px;}
.x27_c00302{left:135.360000px;}
.x36_c00302{left:145.440000px;}
.x18_c00302{left:165.600000px;}
.x12_c00302{left:177.120000px;}
.x37_c00302{left:187.920000px;}
.x17_c00302{left:198.720000px;}
.x19_c00302{left:220.320000px;}
.x24_c00302{left:228.960000px;}
.x2e_c00302{left:231.120000px;}
.x28_c00302{left:241.920000px;}
.x4_c00302{left:263.520000px;}
.x3d_c00302{left:264.960000px;}
.x21_c00302{left:274.320000px;}
.x2f_c00302{left:285.120000px;}
.x2b_c00302{left:286.560000px;}
.x13_c00302{left:295.200000px;}
.x29_c00302{left:306.720000px;}
.x1a_c00302{left:316.800000px;}
.x3e_c00302{left:318.960000px;}
.x1b_c00302{left:328.320000px;}
.x14_c00302{left:338.400000px;}
.x30_c00302{left:349.920000px;}
.x22_c00302{left:360.720000px;}
.xf_c00302{left:371.520000px;}
.x5_c00302{left:382.320000px;}
.x25_c00302{left:403.200000px;}
.x2a_c00302{left:404.640000px;}
.x23_c00302{left:419.040000px;}
.x10_c00302{left:426.240000px;}
.x6_c00302{left:436.320000px;}
.x15_c00302{left:447.120000px;}
.x34_c00302{left:457.920000px;}
.x11_c00302{left:468.720000px;}
.x7_c00302{left:479.520000px;}
.x16_c00302{left:501.120000px;}
.x26_c00302{left:502.560000px;}
.x35_c00302{left:513.360000px;}
.x1c_c00302{left:522.000000px;}
.x1d_c00302{left:533.520000px;}
.x1e_c00302{left:545.040000px;}
.x8_c00302{left:555.840000px;}
.x3b_c00302{left:557.280000px;}
.x9_c00302{left:575.280000px;}
.x2c_c00302{left:577.440000px;}
.xa_c00302{left:587.520000px;}
.xb_c00302{left:600.480000px;}
.x1f_c00302{left:609.840000px;}
.x3a_c00302{left:620.640000px;}
.x39_c00302{left:641.520000px;}
.x20_c00302{left:642.960000px;}
.x31_c00302{left:675.360000px;}
.x1_c00302{left:680.400000px;}
.xc_c00302{left:684.720000px;}
.x3f_c00302{left:686.160000px;}
.x33_c00302{left:705.600000px;}
@media print{
.v0_c00302{vertical-align:0.000000pt;}
.ls0_c00302{letter-spacing:0.000000pt;}
.ws0_c00302{word-spacing:0.000000pt;}
.fs10_c00302{font-size:2.560000pt;}
.fs11_c00302{font-size:12.800000pt;}
.fse_c00302{font-size:20.480000pt;}
.fs7_c00302{font-size:30.720000pt;}
.fs9_c00302{font-size:33.280000pt;}
.fsc_c00302{font-size:35.840000pt;}
.fsf_c00302{font-size:38.400000pt;}
.fsd_c00302{font-size:43.520000pt;}
.fs6_c00302{font-size:46.080000pt;}
.fs3_c00302{font-size:48.640000pt;}
.fs5_c00302{font-size:51.200000pt;}
.fs4_c00302{font-size:53.760000pt;}
.fs8_c00302{font-size:56.320000pt;}
.fsa_c00302{font-size:58.880000pt;}
.fs1_c00302{font-size:61.440000pt;}
.fs2_c00302{font-size:64.000000pt;}
.fs0_c00302{font-size:66.560000pt;}
.fsb_c00302{font-size:69.120000pt;}
.y0_c00302{bottom:0.000000pt;}
.y65_c00302{bottom:91.520000pt;}
.y66_c00302{bottom:92.800000pt;}
.y69_c00302{bottom:94.720000pt;}
.y64_c00302{bottom:95.360000pt;}
.y63_c00302{bottom:129.920000pt;}
.y62_c00302{bottom:133.760000pt;}
.y67_c00302{bottom:134.400000pt;}
.y68_c00302{bottom:135.040000pt;}
.y61_c00302{bottom:168.960000pt;}
.y5c_c00302{bottom:171.520000pt;}
.y5d_c00302{bottom:172.160000pt;}
.y5e_c00302{bottom:172.800000pt;}
.y60_c00302{bottom:208.000000pt;}
.y59_c00302{bottom:210.560000pt;}
.y5b_c00302{bottom:211.200000pt;}
.y5a_c00302{bottom:213.760000pt;}
.y5f_c00302{bottom:245.760000pt;}
.y57_c00302{bottom:248.960000pt;}
.y56_c00302{bottom:249.600000pt;}
.y58_c00302{bottom:251.520000pt;}
.y53_c00302{bottom:284.160000pt;}
.y54_c00302{bottom:286.720000pt;}
.y52_c00302{bottom:287.360000pt;}
.y55_c00302{bottom:288.000000pt;}
.y50_c00302{bottom:323.840000pt;}
.y4f_c00302{bottom:324.480000pt;}
.y4e_c00302{bottom:325.760000pt;}
.y51_c00302{bottom:326.400000pt;}
.y4c_c00302{bottom:352.640000pt;}
.y4d_c00302{bottom:353.280000pt;}
.y48_c00302{bottom:353.920000pt;}
.y4a_c00302{bottom:354.560000pt;}
.y49_c00302{bottom:355.200000pt;}
.y4b_c00302{bottom:355.840000pt;}
.y44_c00302{bottom:392.320000pt;}
.y46_c00302{bottom:392.960000pt;}
.y45_c00302{bottom:393.600000pt;}
.y47_c00302{bottom:394.240000pt;}
.y42_c00302{bottom:431.360000pt;}
.y43_c00302{bottom:432.000000pt;}
.y40_c00302{bottom:458.240000pt;}
.y3f_c00302{bottom:458.880000pt;}
.y3d_c00302{bottom:459.520000pt;}
.y3e_c00302{bottom:460.800000pt;}
.y41_c00302{bottom:461.440000pt;}
.y39_c00302{bottom:497.920000pt;}
.y3b_c00302{bottom:499.200000pt;}
.y3c_c00302{bottom:499.840000pt;}
.y3a_c00302{bottom:502.400000pt;}
.y36_c00302{bottom:534.400000pt;}
.y37_c00302{bottom:535.040000pt;}
.y34_c00302{bottom:535.680000pt;}
.y38_c00302{bottom:536.320000pt;}
.y35_c00302{bottom:538.240000pt;}
.y30_c00302{bottom:572.800000pt;}
.y31_c00302{bottom:574.080000pt;}
.y32_c00302{bottom:574.720000pt;}
.y33_c00302{bottom:576.640000pt;}
.y2e_c00302{bottom:602.240000pt;}
.y2d_c00302{bottom:602.880000pt;}
.y2b_c00302{bottom:603.520000pt;}
.y2f_c00302{bottom:604.160000pt;}
.y2c_c00302{bottom:605.440000pt;}
.y29_c00302{bottom:641.280000pt;}
.y28_c00302{bottom:641.920000pt;}
.y2a_c00302{bottom:643.840000pt;}
.y26_c00302{bottom:669.440000pt;}
.y27_c00302{bottom:670.080000pt;}
.y24_c00302{bottom:670.720000pt;}
.y23_c00302{bottom:672.000000pt;}
.y25_c00302{bottom:672.640000pt;}
.y21_c00302{bottom:697.600000pt;}
.y1f_c00302{bottom:698.880000pt;}
.y22_c00302{bottom:699.520000pt;}
.y20_c00302{bottom:701.440000pt;}
.y1d_c00302{bottom:736.000000pt;}
.y1b_c00302{bottom:737.280000pt;}
.y1e_c00302{bottom:738.560000pt;}
.y1c_c00302{bottom:739.840000pt;}
.y1a_c00302{bottom:766.720000pt;}
.y15_c00302{bottom:774.400000pt;}
.y12_c00302{bottom:775.680000pt;}
.y17_c00302{bottom:776.320000pt;}
.y18_c00302{bottom:776.960000pt;}
.y19_c00302{bottom:777.600000pt;}
.y14_c00302{bottom:778.240000pt;}
.y13_c00302{bottom:778.880000pt;}
.y16_c00302{bottom:781.440000pt;}
.y11_c00302{bottom:816.640000pt;}
.yd_c00302{bottom:841.600000pt;}
.yb_c00302{bottom:842.240000pt;}
.y10_c00302{bottom:842.880000pt;}
.yf_c00302{bottom:844.160000pt;}
.ye_c00302{bottom:844.800000pt;}
.yc_c00302{bottom:845.440000pt;}
.y7_c00302{bottom:880.000000pt;}
.ya_c00302{bottom:880.640000pt;}
.y8_c00302{bottom:882.560000pt;}
.y9_c00302{bottom:883.200000pt;}
.y3_c00302{bottom:918.400000pt;}
.y2_c00302{bottom:919.040000pt;}
.y6_c00302{bottom:919.680000pt;}
.y5_c00302{bottom:920.960000pt;}
.y4_c00302{bottom:921.600000pt;}
.y1_c00302{bottom:960.640000pt;}
.h12_c00302{height:2.303750pt;}
.h13_c00302{height:11.518750pt;}
.h10_c00302{height:18.430000pt;}
.h9_c00302{height:27.645000pt;}
.hb_c00302{height:29.948750pt;}
.he_c00302{height:32.252500pt;}
.h11_c00302{height:34.556250pt;}
.hf_c00302{height:39.163750pt;}
.h8_c00302{height:41.467500pt;}
.h5_c00302{height:43.771250pt;}
.h7_c00302{height:46.075000pt;}
.h6_c00302{height:48.378750pt;}
.ha_c00302{height:50.682500pt;}
.hc_c00302{height:52.986250pt;}
.h3_c00302{height:55.290000pt;}
.h4_c00302{height:57.593750pt;}
.h2_c00302{height:59.897500pt;}
.hd_c00302{height:62.201250pt;}
.h1_c00302{height:1022.000000pt;}
.h0_c00302{height:1022.080000pt;}
.w0_c00302{width:689.280000pt;}
.w1_c00302{width:689.333333pt;}
.x0_c00302{left:0.000000pt;}
.x2_c00302{left:51.840000pt;}
.xd_c00302{left:53.120000pt;}
.x32_c00302{left:54.400000pt;}
.x38_c00302{left:55.680000pt;}
.x3c_c00302{left:56.960000pt;}
.x2d_c00302{left:99.840000pt;}
.x3_c00302{left:117.120000pt;}
.xe_c00302{left:118.400000pt;}
.x27_c00302{left:120.320000pt;}
.x36_c00302{left:129.280000pt;}
.x18_c00302{left:147.200000pt;}
.x12_c00302{left:157.440000pt;}
.x37_c00302{left:167.040000pt;}
.x17_c00302{left:176.640000pt;}
.x19_c00302{left:195.840000pt;}
.x24_c00302{left:203.520000pt;}
.x2e_c00302{left:205.440000pt;}
.x28_c00302{left:215.040000pt;}
.x4_c00302{left:234.240000pt;}
.x3d_c00302{left:235.520000pt;}
.x21_c00302{left:243.840000pt;}
.x2f_c00302{left:253.440000pt;}
.x2b_c00302{left:254.720000pt;}
.x13_c00302{left:262.400000pt;}
.x29_c00302{left:272.640000pt;}
.x1a_c00302{left:281.600000pt;}
.x3e_c00302{left:283.520000pt;}
.x1b_c00302{left:291.840000pt;}
.x14_c00302{left:300.800000pt;}
.x30_c00302{left:311.040000pt;}
.x22_c00302{left:320.640000pt;}
.xf_c00302{left:330.240000pt;}
.x5_c00302{left:339.840000pt;}
.x25_c00302{left:358.400000pt;}
.x2a_c00302{left:359.680000pt;}
.x23_c00302{left:372.480000pt;}
.x10_c00302{left:378.880000pt;}
.x6_c00302{left:387.840000pt;}
.x15_c00302{left:397.440000pt;}
.x34_c00302{left:407.040000pt;}
.x11_c00302{left:416.640000pt;}
.x7_c00302{left:426.240000pt;}
.x16_c00302{left:445.440000pt;}
.x26_c00302{left:446.720000pt;}
.x35_c00302{left:456.320000pt;}
.x1c_c00302{left:464.000000pt;}
.x1d_c00302{left:474.240000pt;}
.x1e_c00302{left:484.480000pt;}
.x8_c00302{left:494.080000pt;}
.x3b_c00302{left:495.360000pt;}
.x9_c00302{left:511.360000pt;}
.x2c_c00302{left:513.280000pt;}
.xa_c00302{left:522.240000pt;}
.xb_c00302{left:533.760000pt;}
.x1f_c00302{left:542.080000pt;}
.x3a_c00302{left:551.680000pt;}
.x39_c00302{left:570.240000pt;}
.x20_c00302{left:571.520000pt;}
.x31_c00302{left:600.320000pt;}
.x1_c00302{left:604.800000pt;}
.xc_c00302{left:608.640000pt;}
.x3f_c00302{left:609.920000pt;}
.x33_c00302{left:627.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_67783fcfb32ec17d15f12b34.woff2')format("woff");}.ff1_c00303{font-family:ff1_c00303;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4c_c00303{transform:matrix(0.175550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175550,0.000000,0.000000,0.250000,0,0);}
.m2f_c00303{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m4_c00303{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m17_c00303{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.mb_c00303{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m8_c00303{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00303{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m1_c00303{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m5_c00303{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_c00303{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);}
.m2b_c00303{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m30_c00303{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00303{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m20_c00303{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m9_c00303{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.ma_c00303{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mf_c00303{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m18_c00303{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00303{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00303{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m37_c00303{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00303{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m22_c00303{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m7_c00303{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00303{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m40_c00303{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m31_c00303{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00303{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m6_c00303{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m14_c00303{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00303{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);}
.m44_c00303{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00303{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00303{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);}
.m34_c00303{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);}
.m32_c00303{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m23_c00303{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);}
.m21_c00303{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m33_c00303{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m13_c00303{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00303{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m0_c00303{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m35_c00303{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);}
.m49_c00303{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);}
.md_c00303{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00303{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m29_c00303{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);}
.m48_c00303{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);}
.m47_c00303{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m11_c00303{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);}
.m27_c00303{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m15_c00303{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);}
.m1e_c00303{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m24_c00303{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);}
.m25_c00303{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00303{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);}
.m39_c00303{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m10_c00303{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m36_c00303{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00303{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.me_c00303{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00303{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m41_c00303{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);}
.m16_c00303{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);}
.m46_c00303{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00303{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00303{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);}
.m3_c00303{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);}
.m12_c00303{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m2_c00303{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00303{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m26_c00303{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00303{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m38_c00303{transform:matrix(0.712500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.712500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.712500,0.000000,0.000000,0.250000,0,0);}
.m28_c00303{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m43_c00303{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);}
.m42_c00303{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.m45_c00303{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.v1_c00303{vertical-align:-5.760000px;}
.v0_c00303{vertical-align:0.000000px;}
.ls1_c00303{letter-spacing:0.000000px;}
.ls0_c00303{letter-spacing:153.600000px;}
.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;}
}
.ws1_c00303{word-spacing:0.000000px;}
.ws0_c00303{word-spacing:11.856000px;}
.fc0_c00303{color:transparent;}
.fs3_c00303{font-size:37.440000px;}
.fsd_c00303{font-size:40.320000px;}
.fsc_c00303{font-size:46.080000px;}
.fsb_c00303{font-size:48.960000px;}
.fs2_c00303{font-size:51.840000px;}
.fs9_c00303{font-size:54.720000px;}
.fs4_c00303{font-size:57.600000px;}
.fs0_c00303{font-size:60.480000px;}
.fsa_c00303{font-size:63.360000px;}
.fs7_c00303{font-size:66.240000px;}
.fs5_c00303{font-size:69.120000px;}
.fs6_c00303{font-size:72.000000px;}
.fs8_c00303{font-size:74.880000px;}
.fs1_c00303{font-size:77.760000px;}
.y0_c00303{bottom:0.000000px;}
.y66_c00303{bottom:88.560000px;}
.y62_c00303{bottom:118.080000px;}
.y61_c00303{bottom:118.800000px;}
.y63_c00303{bottom:119.520000px;}
.y60_c00303{bottom:120.240000px;}
.y65_c00303{bottom:120.960000px;}
.y64_c00303{bottom:121.680000px;}
.y5a_c00303{bottom:159.840000px;}
.y59_c00303{bottom:164.160000px;}
.y5e_c00303{bottom:164.880000px;}
.y5f_c00303{bottom:166.320000px;}
.y58_c00303{bottom:203.040000px;}
.y56_c00303{bottom:206.640000px;}
.y57_c00303{bottom:207.360000px;}
.y5d_c00303{bottom:208.080000px;}
.y5c_c00303{bottom:208.800000px;}
.y55_c00303{bottom:248.400000px;}
.y54_c00303{bottom:249.120000px;}
.y53_c00303{bottom:251.280000px;}
.y52_c00303{bottom:300.240000px;}
.y51_c00303{bottom:303.840000px;}
.y50_c00303{bottom:304.560000px;}
.y5b_c00303{bottom:306.000000px;}
.y4d_c00303{bottom:345.600000px;}
.y4f_c00303{bottom:347.760000px;}
.y4e_c00303{bottom:348.480000px;}
.y47_c00303{bottom:376.560000px;}
.y4b_c00303{bottom:377.280000px;}
.y48_c00303{bottom:378.000000px;}
.y4c_c00303{bottom:378.720000px;}
.y46_c00303{bottom:379.440000px;}
.y49_c00303{bottom:380.160000px;}
.y4a_c00303{bottom:380.880000px;}
.y32_c00303{bottom:419.040000px;}
.y30_c00303{bottom:421.920000px;}
.y45_c00303{bottom:422.640000px;}
.y31_c00303{bottom:424.080000px;}
.y44_c00303{bottom:424.800000px;}
.y2f_c00303{bottom:462.960000px;}
.y2d_c00303{bottom:465.120000px;}
.y43_c00303{bottom:465.840000px;}
.y2e_c00303{bottom:466.560000px;}
.y2c_c00303{bottom:506.160000px;}
.y2b_c00303{bottom:508.320000px;}
.y42_c00303{bottom:509.040000px;}
.y41_c00303{bottom:510.480000px;}
.y2a_c00303{bottom:549.360000px;}
.y3f_c00303{bottom:551.520000px;}
.y29_c00303{bottom:552.240000px;}
.y40_c00303{bottom:553.680000px;}
.y28_c00303{bottom:592.560000px;}
.y3e_c00303{bottom:594.000000px;}
.y26_c00303{bottom:594.720000px;}
.y27_c00303{bottom:596.880000px;}
.y24_c00303{bottom:635.040000px;}
.y22_c00303{bottom:637.200000px;}
.y25_c00303{bottom:639.360000px;}
.y23_c00303{bottom:640.080000px;}
.y21_c00303{bottom:678.240000px;}
.y20_c00303{bottom:680.400000px;}
.y3d_c00303{bottom:681.120000px;}
.y3c_c00303{bottom:681.840000px;}
.y3b_c00303{bottom:683.280000px;}
.y1f_c00303{bottom:722.160000px;}
.y1e_c00303{bottom:723.600000px;}
.y3a_c00303{bottom:725.760000px;}
.y1c_c00303{bottom:764.640000px;}
.y1b_c00303{bottom:766.080000px;}
.y39_c00303{bottom:766.800000px;}
.y1d_c00303{bottom:768.240000px;}
.y38_c00303{bottom:768.960000px;}
.y19_c00303{bottom:807.840000px;}
.y1a_c00303{bottom:808.560000px;}
.y18_c00303{bottom:809.280000px;}
.y37_c00303{bottom:810.720000px;}
.y17_c00303{bottom:851.040000px;}
.y16_c00303{bottom:855.360000px;}
.y13_c00303{bottom:883.440000px;}
.y12_c00303{bottom:884.880000px;}
.y36_c00303{bottom:886.320000px;}
.y15_c00303{bottom:887.040000px;}
.y14_c00303{bottom:887.760000px;}
.yf_c00303{bottom:927.360000px;}
.y11_c00303{bottom:930.240000px;}
.y10_c00303{bottom:930.960000px;}
.yd_c00303{bottom:959.040000px;}
.yb_c00303{bottom:959.760000px;}
.ye_c00303{bottom:960.480000px;}
.ya_c00303{bottom:961.200000px;}
.yc_c00303{bottom:961.920000px;}
.y35_c00303{bottom:962.640000px;}
.y9_c00303{bottom:1002.240000px;}
.y8_c00303{bottom:1002.960000px;}
.y7_c00303{bottom:1003.680000px;}
.y34_c00303{bottom:1004.400000px;}
.y33_c00303{bottom:1005.840000px;}
.y2_c00303{bottom:1045.440000px;}
.y6_c00303{bottom:1046.160000px;}
.y5_c00303{bottom:1046.880000px;}
.y1_c00303{bottom:1047.600000px;}
.y3_c00303{bottom:1049.760000px;}
.y4_c00303{bottom:1089.360000px;}
.h5_c00303{height:33.692344px;}
.hf_c00303{height:36.284062px;}
.he_c00303{height:41.467500px;}
.hd_c00303{height:44.059219px;}
.h4_c00303{height:46.650937px;}
.hb_c00303{height:49.242656px;}
.h6_c00303{height:51.834375px;}
.h2_c00303{height:54.426094px;}
.hc_c00303{height:57.017812px;}
.h9_c00303{height:59.609531px;}
.h7_c00303{height:62.201250px;}
.h8_c00303{height:64.792969px;}
.ha_c00303{height:67.384687px;}
.h3_c00303{height:69.976406px;}
.h1_c00303{height:1151.250000px;}
.h0_c00303{height:1151.280000px;}
.w0_c00303{width:777.600000px;}
.w1_c00303{width:777.750000px;}
.x0_c00303{left:0.000000px;}
.x1_c00303{left:64.080000px;}
.x16_c00303{left:65.520000px;}
.x19_c00303{left:66.960000px;}
.x27_c00303{left:116.640000px;}
.x2_c00303{left:138.240000px;}
.x13_c00303{left:181.440000px;}
.x28_c00303{left:182.880000px;}
.xf_c00303{left:192.240000px;}
.x29_c00303{left:213.120000px;}
.x3_c00303{left:224.640000px;}
.xa_c00303{left:226.080000px;}
.x10_c00303{left:235.440000px;}
.xc_c00303{left:257.760000px;}
.x11_c00303{left:269.280000px;}
.x4_c00303{left:279.360000px;}
.x2d_c00303{left:289.440000px;}
.x14_c00303{left:311.040000px;}
.x5_c00303{left:321.840000px;}
.x2e_c00303{left:334.800000px;}
.x17_c00303{left:343.440000px;}
.xb_c00303{left:354.960000px;}
.x15_c00303{left:365.760000px;}
.x2f_c00303{left:375.840000px;}
.xd_c00303{left:387.360000px;}
.x18_c00303{left:398.160000px;}
.x12_c00303{left:408.240000px;}
.x30_c00303{left:430.560000px;}
.xe_c00303{left:442.080000px;}
.x25_c00303{left:451.440000px;}
.x26_c00303{left:494.640000px;}
.x31_c00303{left:527.040000px;}
.x1f_c00303{left:550.800000px;}
.x1d_c00303{left:560.160000px;}
.x7_c00303{left:561.600000px;}
.x22_c00303{left:570.960000px;}
.x32_c00303{left:581.040000px;}
.x8_c00303{left:582.480000px;}
.x21_c00303{left:592.560000px;}
.x23_c00303{left:605.520000px;}
.x2b_c00303{left:613.440000px;}
.x1a_c00303{left:614.880000px;}
.x2a_c00303{left:645.840000px;}
.x1b_c00303{left:647.280000px;}
.x20_c00303{left:657.360000px;}
.x6_c00303{left:679.680000px;}
.x24_c00303{left:689.040000px;}
.x9_c00303{left:690.480000px;}
.x1e_c00303{left:699.120000px;}
.x2c_c00303{left:709.200000px;}
.x1c_c00303{left:710.640000px;}
@media print{
.v1_c00303{vertical-align:-5.120000pt;}
.v0_c00303{vertical-align:0.000000pt;}
.ls1_c00303{letter-spacing:0.000000pt;}
.ls0_c00303{letter-spacing:136.533333pt;}
.ws1_c00303{word-spacing:0.000000pt;}
.ws0_c00303{word-spacing:10.538667pt;}
.fs3_c00303{font-size:33.280000pt;}
.fsd_c00303{font-size:35.840000pt;}
.fsc_c00303{font-size:40.960000pt;}
.fsb_c00303{font-size:43.520000pt;}
.fs2_c00303{font-size:46.080000pt;}
.fs9_c00303{font-size:48.640000pt;}
.fs4_c00303{font-size:51.200000pt;}
.fs0_c00303{font-size:53.760000pt;}
.fsa_c00303{font-size:56.320000pt;}
.fs7_c00303{font-size:58.880000pt;}
.fs5_c00303{font-size:61.440000pt;}
.fs6_c00303{font-size:64.000000pt;}
.fs8_c00303{font-size:66.560000pt;}
.fs1_c00303{font-size:69.120000pt;}
.y0_c00303{bottom:0.000000pt;}
.y66_c00303{bottom:78.720000pt;}
.y62_c00303{bottom:104.960000pt;}
.y61_c00303{bottom:105.600000pt;}
.y63_c00303{bottom:106.240000pt;}
.y60_c00303{bottom:106.880000pt;}
.y65_c00303{bottom:107.520000pt;}
.y64_c00303{bottom:108.160000pt;}
.y5a_c00303{bottom:142.080000pt;}
.y59_c00303{bottom:145.920000pt;}
.y5e_c00303{bottom:146.560000pt;}
.y5f_c00303{bottom:147.840000pt;}
.y58_c00303{bottom:180.480000pt;}
.y56_c00303{bottom:183.680000pt;}
.y57_c00303{bottom:184.320000pt;}
.y5d_c00303{bottom:184.960000pt;}
.y5c_c00303{bottom:185.600000pt;}
.y55_c00303{bottom:220.800000pt;}
.y54_c00303{bottom:221.440000pt;}
.y53_c00303{bottom:223.360000pt;}
.y52_c00303{bottom:266.880000pt;}
.y51_c00303{bottom:270.080000pt;}
.y50_c00303{bottom:270.720000pt;}
.y5b_c00303{bottom:272.000000pt;}
.y4d_c00303{bottom:307.200000pt;}
.y4f_c00303{bottom:309.120000pt;}
.y4e_c00303{bottom:309.760000pt;}
.y47_c00303{bottom:334.720000pt;}
.y4b_c00303{bottom:335.360000pt;}
.y48_c00303{bottom:336.000000pt;}
.y4c_c00303{bottom:336.640000pt;}
.y46_c00303{bottom:337.280000pt;}
.y49_c00303{bottom:337.920000pt;}
.y4a_c00303{bottom:338.560000pt;}
.y32_c00303{bottom:372.480000pt;}
.y30_c00303{bottom:375.040000pt;}
.y45_c00303{bottom:375.680000pt;}
.y31_c00303{bottom:376.960000pt;}
.y44_c00303{bottom:377.600000pt;}
.y2f_c00303{bottom:411.520000pt;}
.y2d_c00303{bottom:413.440000pt;}
.y43_c00303{bottom:414.080000pt;}
.y2e_c00303{bottom:414.720000pt;}
.y2c_c00303{bottom:449.920000pt;}
.y2b_c00303{bottom:451.840000pt;}
.y42_c00303{bottom:452.480000pt;}
.y41_c00303{bottom:453.760000pt;}
.y2a_c00303{bottom:488.320000pt;}
.y3f_c00303{bottom:490.240000pt;}
.y29_c00303{bottom:490.880000pt;}
.y40_c00303{bottom:492.160000pt;}
.y28_c00303{bottom:526.720000pt;}
.y3e_c00303{bottom:528.000000pt;}
.y26_c00303{bottom:528.640000pt;}
.y27_c00303{bottom:530.560000pt;}
.y24_c00303{bottom:564.480000pt;}
.y22_c00303{bottom:566.400000pt;}
.y25_c00303{bottom:568.320000pt;}
.y23_c00303{bottom:568.960000pt;}
.y21_c00303{bottom:602.880000pt;}
.y20_c00303{bottom:604.800000pt;}
.y3d_c00303{bottom:605.440000pt;}
.y3c_c00303{bottom:606.080000pt;}
.y3b_c00303{bottom:607.360000pt;}
.y1f_c00303{bottom:641.920000pt;}
.y1e_c00303{bottom:643.200000pt;}
.y3a_c00303{bottom:645.120000pt;}
.y1c_c00303{bottom:679.680000pt;}
.y1b_c00303{bottom:680.960000pt;}
.y39_c00303{bottom:681.600000pt;}
.y1d_c00303{bottom:682.880000pt;}
.y38_c00303{bottom:683.520000pt;}
.y19_c00303{bottom:718.080000pt;}
.y1a_c00303{bottom:718.720000pt;}
.y18_c00303{bottom:719.360000pt;}
.y37_c00303{bottom:720.640000pt;}
.y17_c00303{bottom:756.480000pt;}
.y16_c00303{bottom:760.320000pt;}
.y13_c00303{bottom:785.280000pt;}
.y12_c00303{bottom:786.560000pt;}
.y36_c00303{bottom:787.840000pt;}
.y15_c00303{bottom:788.480000pt;}
.y14_c00303{bottom:789.120000pt;}
.yf_c00303{bottom:824.320000pt;}
.y11_c00303{bottom:826.880000pt;}
.y10_c00303{bottom:827.520000pt;}
.yd_c00303{bottom:852.480000pt;}
.yb_c00303{bottom:853.120000pt;}
.ye_c00303{bottom:853.760000pt;}
.ya_c00303{bottom:854.400000pt;}
.yc_c00303{bottom:855.040000pt;}
.y35_c00303{bottom:855.680000pt;}
.y9_c00303{bottom:890.880000pt;}
.y8_c00303{bottom:891.520000pt;}
.y7_c00303{bottom:892.160000pt;}
.y34_c00303{bottom:892.800000pt;}
.y33_c00303{bottom:894.080000pt;}
.y2_c00303{bottom:929.280000pt;}
.y6_c00303{bottom:929.920000pt;}
.y5_c00303{bottom:930.560000pt;}
.y1_c00303{bottom:931.200000pt;}
.y3_c00303{bottom:933.120000pt;}
.y4_c00303{bottom:968.320000pt;}
.h5_c00303{height:29.948750pt;}
.hf_c00303{height:32.252500pt;}
.he_c00303{height:36.860000pt;}
.hd_c00303{height:39.163750pt;}
.h4_c00303{height:41.467500pt;}
.hb_c00303{height:43.771250pt;}
.h6_c00303{height:46.075000pt;}
.h2_c00303{height:48.378750pt;}
.hc_c00303{height:50.682500pt;}
.h9_c00303{height:52.986250pt;}
.h7_c00303{height:55.290000pt;}
.h8_c00303{height:57.593750pt;}
.ha_c00303{height:59.897500pt;}
.h3_c00303{height:62.201250pt;}
.h1_c00303{height:1023.333333pt;}
.h0_c00303{height:1023.360000pt;}
.w0_c00303{width:691.200000pt;}
.w1_c00303{width:691.333333pt;}
.x0_c00303{left:0.000000pt;}
.x1_c00303{left:56.960000pt;}
.x16_c00303{left:58.240000pt;}
.x19_c00303{left:59.520000pt;}
.x27_c00303{left:103.680000pt;}
.x2_c00303{left:122.880000pt;}
.x13_c00303{left:161.280000pt;}
.x28_c00303{left:162.560000pt;}
.xf_c00303{left:170.880000pt;}
.x29_c00303{left:189.440000pt;}
.x3_c00303{left:199.680000pt;}
.xa_c00303{left:200.960000pt;}
.x10_c00303{left:209.280000pt;}
.xc_c00303{left:229.120000pt;}
.x11_c00303{left:239.360000pt;}
.x4_c00303{left:248.320000pt;}
.x2d_c00303{left:257.280000pt;}
.x14_c00303{left:276.480000pt;}
.x5_c00303{left:286.080000pt;}
.x2e_c00303{left:297.600000pt;}
.x17_c00303{left:305.280000pt;}
.xb_c00303{left:315.520000pt;}
.x15_c00303{left:325.120000pt;}
.x2f_c00303{left:334.080000pt;}
.xd_c00303{left:344.320000pt;}
.x18_c00303{left:353.920000pt;}
.x12_c00303{left:362.880000pt;}
.x30_c00303{left:382.720000pt;}
.xe_c00303{left:392.960000pt;}
.x25_c00303{left:401.280000pt;}
.x26_c00303{left:439.680000pt;}
.x31_c00303{left:468.480000pt;}
.x1f_c00303{left:489.600000pt;}
.x1d_c00303{left:497.920000pt;}
.x7_c00303{left:499.200000pt;}
.x22_c00303{left:507.520000pt;}
.x32_c00303{left:516.480000pt;}
.x8_c00303{left:517.760000pt;}
.x21_c00303{left:526.720000pt;}
.x23_c00303{left:538.240000pt;}
.x2b_c00303{left:545.280000pt;}
.x1a_c00303{left:546.560000pt;}
.x2a_c00303{left:574.080000pt;}
.x1b_c00303{left:575.360000pt;}
.x20_c00303{left:584.320000pt;}
.x6_c00303{left:604.160000pt;}
.x24_c00303{left:612.480000pt;}
.x9_c00303{left:613.760000pt;}
.x1e_c00303{left:621.440000pt;}
.x2c_c00303{left:630.400000pt;}
.x1c_c00303{left:631.680000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a5af9aac87e227d806a7850f.woff2')format("woff");}.ff1_c00304{font-family:ff1_c00304;line-height:1.109863;font-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_c00304{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00304{transform:matrix(0.212900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212900,0.000000,0.000000,0.250000,0,0);}
.m3d_c00304{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00304{transform:matrix(0.222325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222325,0.000000,0.000000,0.250000,0,0);}
.m4d_c00304{transform:matrix(0.230900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230900,0.000000,0.000000,0.250000,0,0);}
.m35_c00304{transform:matrix(0.231375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231375,0.000000,0.000000,0.250000,0,0);}
.m43_c00304{transform:matrix(0.236675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236675,0.000000,0.000000,0.250000,0,0);}
.m23_c00304{transform:matrix(0.240675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240675,0.000000,0.000000,0.250000,0,0);}
.md_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);}
.m3a_c00304{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m28_c00304{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m5_c00304{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m18_c00304{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m26_c00304{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m46_c00304{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m44_c00304{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m15_c00304{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m34_c00304{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mf_c00304{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m13_c00304{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m8_c00304{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m16_c00304{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m14_c00304{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m39_c00304{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m20_c00304{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00304{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m19_c00304{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m49_c00304{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00304{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m12_c00304{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.me_c00304{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m10_c00304{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m48_c00304{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m24_c00304{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mb_c00304{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00304{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m0_c00304{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00304{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m4_c00304{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m9_c00304{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00304{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);}
.m3f_c00304{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1_c00304{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);}
.m33_c00304{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m27_c00304{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m17_c00304{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00304{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);}
.m4c_c00304{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);}
.m31_c00304{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m37_c00304{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m30_c00304{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00304{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m7_c00304{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);}
.m2_c00304{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);}
.m38_c00304{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m11_c00304{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);}
.mc_c00304{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);}
.m6_c00304{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m32_c00304{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00304{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);}
.m40_c00304{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00304{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00304{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00304{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);}
.m25_c00304{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);}
.m42_c00304{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);}
.m1e_c00304{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00304{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m21_c00304{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);}
.m3_c00304{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m36_c00304{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);}
.m41_c00304{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m45_c00304{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00304{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m29_c00304{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);}
.m47_c00304{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00304{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00304{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.v0_c00304{vertical-align:0.000000px;}
.ls0_c00304{letter-spacing:0.000000px;}
.sc__c00304{text-shadow:none;}
.sc0_c00304{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00304{-webkit-text-stroke:0px transparent;}
.sc0_c00304{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00304{word-spacing:0.000000px;}
.ws0_c00304{word-spacing:6.349440px;}
.fc0_c00304{color:transparent;}
.fsf_c00304{font-size:37.440000px;}
.fsb_c00304{font-size:40.320000px;}
.fsa_c00304{font-size:43.200000px;}
.fsc_c00304{font-size:46.080000px;}
.fs6_c00304{font-size:48.960000px;}
.fs2_c00304{font-size:51.840000px;}
.fs7_c00304{font-size:54.720000px;}
.fs9_c00304{font-size:57.600000px;}
.fs4_c00304{font-size:60.480000px;}
.fs1_c00304{font-size:63.360000px;}
.fs5_c00304{font-size:66.240000px;}
.fs8_c00304{font-size:69.120000px;}
.fsd_c00304{font-size:72.000000px;}
.fs0_c00304{font-size:74.880000px;}
.fs3_c00304{font-size:77.760000px;}
.fse_c00304{font-size:97.920000px;}
.y0_c00304{bottom:0.000000px;}
.y74_c00304{bottom:48.240000px;}
.y75_c00304{bottom:48.960000px;}
.y73_c00304{bottom:51.840000px;}
.y72_c00304{bottom:52.560000px;}
.y76_c00304{bottom:53.280000px;}
.y71_c00304{bottom:54.000000px;}
.y6d_c00304{bottom:92.160000px;}
.y6e_c00304{bottom:92.880000px;}
.y70_c00304{bottom:95.040000px;}
.y6c_c00304{bottom:95.760000px;}
.y6f_c00304{bottom:96.480000px;}
.y65_c00304{bottom:134.640000px;}
.y6b_c00304{bottom:138.240000px;}
.y6a_c00304{bottom:138.960000px;}
.y63_c00304{bottom:139.680000px;}
.y64_c00304{bottom:140.400000px;}
.y61_c00304{bottom:178.560000px;}
.y60_c00304{bottom:182.160000px;}
.y62_c00304{bottom:182.880000px;}
.y5f_c00304{bottom:183.600000px;}
.y5e_c00304{bottom:222.480000px;}
.y67_c00304{bottom:225.360000px;}
.y5c_c00304{bottom:226.080000px;}
.y5d_c00304{bottom:226.800000px;}
.y68_c00304{bottom:227.520000px;}
.y69_c00304{bottom:228.240000px;}
.y5b_c00304{bottom:265.680000px;}
.y59_c00304{bottom:268.560000px;}
.y5a_c00304{bottom:269.280000px;}
.y66_c00304{bottom:270.720000px;}
.y54_c00304{bottom:308.880000px;}
.y53_c00304{bottom:311.760000px;}
.y51_c00304{bottom:312.480000px;}
.y52_c00304{bottom:313.200000px;}
.y58_c00304{bottom:313.920000px;}
.y57_c00304{bottom:314.640000px;}
.y4d_c00304{bottom:352.080000px;}
.y55_c00304{bottom:353.520000px;}
.y4b_c00304{bottom:355.680000px;}
.y4c_c00304{bottom:356.400000px;}
.y56_c00304{bottom:357.840000px;}
.y4a_c00304{bottom:395.280000px;}
.y4f_c00304{bottom:396.720000px;}
.y50_c00304{bottom:398.160000px;}
.y49_c00304{bottom:399.600000px;}
.y48_c00304{bottom:437.760000px;}
.y46_c00304{bottom:439.200000px;}
.y4e_c00304{bottom:439.920000px;}
.y44_c00304{bottom:441.360000px;}
.y47_c00304{bottom:442.080000px;}
.y45_c00304{bottom:442.800000px;}
.y3d_c00304{bottom:480.960000px;}
.y42_c00304{bottom:483.120000px;}
.y43_c00304{bottom:483.840000px;}
.y3a_c00304{bottom:484.560000px;}
.y3c_c00304{bottom:485.280000px;}
.y3b_c00304{bottom:486.000000px;}
.y41_c00304{bottom:518.400000px;}
.y38_c00304{bottom:524.880000px;}
.y37_c00304{bottom:526.320000px;}
.y36_c00304{bottom:527.040000px;}
.y35_c00304{bottom:527.760000px;}
.y39_c00304{bottom:528.480000px;}
.y32_c00304{bottom:568.080000px;}
.y34_c00304{bottom:568.800000px;}
.y31_c00304{bottom:569.520000px;}
.y40_c00304{bottom:570.240000px;}
.y33_c00304{bottom:571.680000px;}
.y2f_c00304{bottom:611.280000px;}
.y3e_c00304{bottom:612.720000px;}
.y2d_c00304{bottom:613.440000px;}
.y3f_c00304{bottom:614.160000px;}
.y30_c00304{bottom:614.880000px;}
.y2e_c00304{bottom:616.320000px;}
.y2c_c00304{bottom:655.200000px;}
.y2b_c00304{bottom:655.920000px;}
.y2a_c00304{bottom:659.520000px;}
.y24_c00304{bottom:687.600000px;}
.y28_c00304{bottom:688.320000px;}
.y27_c00304{bottom:689.040000px;}
.y23_c00304{bottom:689.760000px;}
.y29_c00304{bottom:690.480000px;}
.y26_c00304{bottom:691.200000px;}
.y25_c00304{bottom:691.920000px;}
.y20_c00304{bottom:730.800000px;}
.y1f_c00304{bottom:731.520000px;}
.y21_c00304{bottom:732.240000px;}
.y22_c00304{bottom:733.680000px;}
.y1e_c00304{bottom:774.000000px;}
.y1b_c00304{bottom:776.160000px;}
.y1d_c00304{bottom:777.600000px;}
.y1c_c00304{bottom:778.320000px;}
.y18_c00304{bottom:807.120000px;}
.y16_c00304{bottom:807.840000px;}
.y1a_c00304{bottom:808.560000px;}
.y19_c00304{bottom:810.000000px;}
.y17_c00304{bottom:810.720000px;}
.y15_c00304{bottom:849.600000px;}
.y14_c00304{bottom:850.320000px;}
.y12_c00304{bottom:851.040000px;}
.y13_c00304{bottom:853.920000px;}
.y11_c00304{bottom:892.800000px;}
.yf_c00304{bottom:893.520000px;}
.y10_c00304{bottom:894.960000px;}
.yd_c00304{bottom:937.440000px;}
.ye_c00304{bottom:938.880000px;}
.yc_c00304{bottom:939.600000px;}
.yb_c00304{bottom:989.280000px;}
.y9_c00304{bottom:990.000000px;}
.ya_c00304{bottom:993.600000px;}
.y5_c00304{bottom:1032.480000px;}
.y7_c00304{bottom:1033.200000px;}
.y6_c00304{bottom:1033.920000px;}
.y2_c00304{bottom:1034.640000px;}
.y8_c00304{bottom:1035.360000px;}
.y4_c00304{bottom:1036.080000px;}
.y3_c00304{bottom:1036.800000px;}
.y1_c00304{bottom:1087.920000px;}
.h11_c00304{height:33.692344px;}
.hd_c00304{height:36.284062px;}
.hc_c00304{height:38.875781px;}
.he_c00304{height:41.467500px;}
.h8_c00304{height:44.059219px;}
.h4_c00304{height:46.650937px;}
.h9_c00304{height:49.242656px;}
.hb_c00304{height:51.834375px;}
.h6_c00304{height:54.426094px;}
.h3_c00304{height:57.017812px;}
.h7_c00304{height:59.609531px;}
.ha_c00304{height:62.201250px;}
.hf_c00304{height:64.792969px;}
.h2_c00304{height:67.384687px;}
.h5_c00304{height:69.976406px;}
.h10_c00304{height:88.118437px;}
.h1_c00304{height:1147.500000px;}
.h0_c00304{height:1147.680000px;}
.w1_c00304{width:771.750000px;}
.w0_c00304{width:771.840000px;}
.x0_c00304{left:0.000000px;}
.x2_c00304{left:64.080000px;}
.x26_c00304{left:65.520000px;}
.x2f_c00304{left:66.960000px;}
.x36_c00304{left:69.120000px;}
.x32_c00304{left:108.000000px;}
.xe_c00304{left:116.640000px;}
.x2c_c00304{left:136.080000px;}
.x10_c00304{left:137.520000px;}
.x3_c00304{left:138.960000px;}
.xf_c00304{left:149.760000px;}
.x4_c00304{left:170.640000px;}
.x28_c00304{left:172.800000px;}
.xc_c00304{left:180.000000px;}
.x13_c00304{left:181.440000px;}
.x11_c00304{left:192.240000px;}
.x29_c00304{left:216.000000px;}
.x5_c00304{left:223.920000px;}
.x1c_c00304{left:234.720000px;}
.x2d_c00304{left:236.160000px;}
.x24_c00304{left:246.240000px;}
.x20_c00304{left:257.040000px;}
.x6_c00304{left:267.840000px;}
.x1d_c00304{left:278.640000px;}
.x2a_c00304{left:280.080000px;}
.x16_c00304{left:289.440000px;}
.x21_c00304{left:311.040000px;}
.x14_c00304{left:322.560000px;}
.x17_c00304{left:343.440000px;}
.x1e_c00304{left:365.040000px;}
.x37_c00304{left:376.560000px;}
.x18_c00304{left:387.360000px;}
.x2b_c00304{left:397.440000px;}
.x27_c00304{left:408.960000px;}
.x7_c00304{left:419.040000px;}
.x22_c00304{left:451.440000px;}
.x25_c00304{left:462.960000px;}
.x8_c00304{left:473.760000px;}
.x19_c00304{left:484.560000px;}
.x23_c00304{left:505.440000px;}
.x38_c00304{left:537.840000px;}
.x1a_c00304{left:539.280000px;}
.x1f_c00304{left:549.360000px;}
.x30_c00304{left:559.440000px;}
.xd_c00304{left:581.040000px;}
.x15_c00304{left:592.560000px;}
.x9_c00304{left:614.160000px;}
.x34_c00304{left:624.240000px;}
.x2e_c00304{left:645.840000px;}
.xa_c00304{left:647.280000px;}
.x1_c00304{left:660.240000px;}
.x35_c00304{left:667.440000px;}
.x12_c00304{left:678.960000px;}
.x33_c00304{left:688.320000px;}
.xb_c00304{left:689.760000px;}
.x31_c00304{left:708.480000px;}
.x1b_c00304{left:709.920000px;}
@media print{
.v0_c00304{vertical-align:0.000000pt;}
.ls0_c00304{letter-spacing:0.000000pt;}
.ws1_c00304{word-spacing:0.000000pt;}
.ws0_c00304{word-spacing:5.643947pt;}
.fsf_c00304{font-size:33.280000pt;}
.fsb_c00304{font-size:35.840000pt;}
.fsa_c00304{font-size:38.400000pt;}
.fsc_c00304{font-size:40.960000pt;}
.fs6_c00304{font-size:43.520000pt;}
.fs2_c00304{font-size:46.080000pt;}
.fs7_c00304{font-size:48.640000pt;}
.fs9_c00304{font-size:51.200000pt;}
.fs4_c00304{font-size:53.760000pt;}
.fs1_c00304{font-size:56.320000pt;}
.fs5_c00304{font-size:58.880000pt;}
.fs8_c00304{font-size:61.440000pt;}
.fsd_c00304{font-size:64.000000pt;}
.fs0_c00304{font-size:66.560000pt;}
.fs3_c00304{font-size:69.120000pt;}
.fse_c00304{font-size:87.040000pt;}
.y0_c00304{bottom:0.000000pt;}
.y74_c00304{bottom:42.880000pt;}
.y75_c00304{bottom:43.520000pt;}
.y73_c00304{bottom:46.080000pt;}
.y72_c00304{bottom:46.720000pt;}
.y76_c00304{bottom:47.360000pt;}
.y71_c00304{bottom:48.000000pt;}
.y6d_c00304{bottom:81.920000pt;}
.y6e_c00304{bottom:82.560000pt;}
.y70_c00304{bottom:84.480000pt;}
.y6c_c00304{bottom:85.120000pt;}
.y6f_c00304{bottom:85.760000pt;}
.y65_c00304{bottom:119.680000pt;}
.y6b_c00304{bottom:122.880000pt;}
.y6a_c00304{bottom:123.520000pt;}
.y63_c00304{bottom:124.160000pt;}
.y64_c00304{bottom:124.800000pt;}
.y61_c00304{bottom:158.720000pt;}
.y60_c00304{bottom:161.920000pt;}
.y62_c00304{bottom:162.560000pt;}
.y5f_c00304{bottom:163.200000pt;}
.y5e_c00304{bottom:197.760000pt;}
.y67_c00304{bottom:200.320000pt;}
.y5c_c00304{bottom:200.960000pt;}
.y5d_c00304{bottom:201.600000pt;}
.y68_c00304{bottom:202.240000pt;}
.y69_c00304{bottom:202.880000pt;}
.y5b_c00304{bottom:236.160000pt;}
.y59_c00304{bottom:238.720000pt;}
.y5a_c00304{bottom:239.360000pt;}
.y66_c00304{bottom:240.640000pt;}
.y54_c00304{bottom:274.560000pt;}
.y53_c00304{bottom:277.120000pt;}
.y51_c00304{bottom:277.760000pt;}
.y52_c00304{bottom:278.400000pt;}
.y58_c00304{bottom:279.040000pt;}
.y57_c00304{bottom:279.680000pt;}
.y4d_c00304{bottom:312.960000pt;}
.y55_c00304{bottom:314.240000pt;}
.y4b_c00304{bottom:316.160000pt;}
.y4c_c00304{bottom:316.800000pt;}
.y56_c00304{bottom:318.080000pt;}
.y4a_c00304{bottom:351.360000pt;}
.y4f_c00304{bottom:352.640000pt;}
.y50_c00304{bottom:353.920000pt;}
.y49_c00304{bottom:355.200000pt;}
.y48_c00304{bottom:389.120000pt;}
.y46_c00304{bottom:390.400000pt;}
.y4e_c00304{bottom:391.040000pt;}
.y44_c00304{bottom:392.320000pt;}
.y47_c00304{bottom:392.960000pt;}
.y45_c00304{bottom:393.600000pt;}
.y3d_c00304{bottom:427.520000pt;}
.y42_c00304{bottom:429.440000pt;}
.y43_c00304{bottom:430.080000pt;}
.y3a_c00304{bottom:430.720000pt;}
.y3c_c00304{bottom:431.360000pt;}
.y3b_c00304{bottom:432.000000pt;}
.y41_c00304{bottom:460.800000pt;}
.y38_c00304{bottom:466.560000pt;}
.y37_c00304{bottom:467.840000pt;}
.y36_c00304{bottom:468.480000pt;}
.y35_c00304{bottom:469.120000pt;}
.y39_c00304{bottom:469.760000pt;}
.y32_c00304{bottom:504.960000pt;}
.y34_c00304{bottom:505.600000pt;}
.y31_c00304{bottom:506.240000pt;}
.y40_c00304{bottom:506.880000pt;}
.y33_c00304{bottom:508.160000pt;}
.y2f_c00304{bottom:543.360000pt;}
.y3e_c00304{bottom:544.640000pt;}
.y2d_c00304{bottom:545.280000pt;}
.y3f_c00304{bottom:545.920000pt;}
.y30_c00304{bottom:546.560000pt;}
.y2e_c00304{bottom:547.840000pt;}
.y2c_c00304{bottom:582.400000pt;}
.y2b_c00304{bottom:583.040000pt;}
.y2a_c00304{bottom:586.240000pt;}
.y24_c00304{bottom:611.200000pt;}
.y28_c00304{bottom:611.840000pt;}
.y27_c00304{bottom:612.480000pt;}
.y23_c00304{bottom:613.120000pt;}
.y29_c00304{bottom:613.760000pt;}
.y26_c00304{bottom:614.400000pt;}
.y25_c00304{bottom:615.040000pt;}
.y20_c00304{bottom:649.600000pt;}
.y1f_c00304{bottom:650.240000pt;}
.y21_c00304{bottom:650.880000pt;}
.y22_c00304{bottom:652.160000pt;}
.y1e_c00304{bottom:688.000000pt;}
.y1b_c00304{bottom:689.920000pt;}
.y1d_c00304{bottom:691.200000pt;}
.y1c_c00304{bottom:691.840000pt;}
.y18_c00304{bottom:717.440000pt;}
.y16_c00304{bottom:718.080000pt;}
.y1a_c00304{bottom:718.720000pt;}
.y19_c00304{bottom:720.000000pt;}
.y17_c00304{bottom:720.640000pt;}
.y15_c00304{bottom:755.200000pt;}
.y14_c00304{bottom:755.840000pt;}
.y12_c00304{bottom:756.480000pt;}
.y13_c00304{bottom:759.040000pt;}
.y11_c00304{bottom:793.600000pt;}
.yf_c00304{bottom:794.240000pt;}
.y10_c00304{bottom:795.520000pt;}
.yd_c00304{bottom:833.280000pt;}
.ye_c00304{bottom:834.560000pt;}
.yc_c00304{bottom:835.200000pt;}
.yb_c00304{bottom:879.360000pt;}
.y9_c00304{bottom:880.000000pt;}
.ya_c00304{bottom:883.200000pt;}
.y5_c00304{bottom:917.760000pt;}
.y7_c00304{bottom:918.400000pt;}
.y6_c00304{bottom:919.040000pt;}
.y2_c00304{bottom:919.680000pt;}
.y8_c00304{bottom:920.320000pt;}
.y4_c00304{bottom:920.960000pt;}
.y3_c00304{bottom:921.600000pt;}
.y1_c00304{bottom:967.040000pt;}
.h11_c00304{height:29.948750pt;}
.hd_c00304{height:32.252500pt;}
.hc_c00304{height:34.556250pt;}
.he_c00304{height:36.860000pt;}
.h8_c00304{height:39.163750pt;}
.h4_c00304{height:41.467500pt;}
.h9_c00304{height:43.771250pt;}
.hb_c00304{height:46.075000pt;}
.h6_c00304{height:48.378750pt;}
.h3_c00304{height:50.682500pt;}
.h7_c00304{height:52.986250pt;}
.ha_c00304{height:55.290000pt;}
.hf_c00304{height:57.593750pt;}
.h2_c00304{height:59.897500pt;}
.h5_c00304{height:62.201250pt;}
.h10_c00304{height:78.327500pt;}
.h1_c00304{height:1020.000000pt;}
.h0_c00304{height:1020.160000pt;}
.w1_c00304{width:686.000000pt;}
.w0_c00304{width:686.080000pt;}
.x0_c00304{left:0.000000pt;}
.x2_c00304{left:56.960000pt;}
.x26_c00304{left:58.240000pt;}
.x2f_c00304{left:59.520000pt;}
.x36_c00304{left:61.440000pt;}
.x32_c00304{left:96.000000pt;}
.xe_c00304{left:103.680000pt;}
.x2c_c00304{left:120.960000pt;}
.x10_c00304{left:122.240000pt;}
.x3_c00304{left:123.520000pt;}
.xf_c00304{left:133.120000pt;}
.x4_c00304{left:151.680000pt;}
.x28_c00304{left:153.600000pt;}
.xc_c00304{left:160.000000pt;}
.x13_c00304{left:161.280000pt;}
.x11_c00304{left:170.880000pt;}
.x29_c00304{left:192.000000pt;}
.x5_c00304{left:199.040000pt;}
.x1c_c00304{left:208.640000pt;}
.x2d_c00304{left:209.920000pt;}
.x24_c00304{left:218.880000pt;}
.x20_c00304{left:228.480000pt;}
.x6_c00304{left:238.080000pt;}
.x1d_c00304{left:247.680000pt;}
.x2a_c00304{left:248.960000pt;}
.x16_c00304{left:257.280000pt;}
.x21_c00304{left:276.480000pt;}
.x14_c00304{left:286.720000pt;}
.x17_c00304{left:305.280000pt;}
.x1e_c00304{left:324.480000pt;}
.x37_c00304{left:334.720000pt;}
.x18_c00304{left:344.320000pt;}
.x2b_c00304{left:353.280000pt;}
.x27_c00304{left:363.520000pt;}
.x7_c00304{left:372.480000pt;}
.x22_c00304{left:401.280000pt;}
.x25_c00304{left:411.520000pt;}
.x8_c00304{left:421.120000pt;}
.x19_c00304{left:430.720000pt;}
.x23_c00304{left:449.280000pt;}
.x38_c00304{left:478.080000pt;}
.x1a_c00304{left:479.360000pt;}
.x1f_c00304{left:488.320000pt;}
.x30_c00304{left:497.280000pt;}
.xd_c00304{left:516.480000pt;}
.x15_c00304{left:526.720000pt;}
.x9_c00304{left:545.920000pt;}
.x34_c00304{left:554.880000pt;}
.x2e_c00304{left:574.080000pt;}
.xa_c00304{left:575.360000pt;}
.x1_c00304{left:586.880000pt;}
.x35_c00304{left:593.280000pt;}
.x12_c00304{left:603.520000pt;}
.x33_c00304{left:611.840000pt;}
.xb_c00304{left:613.120000pt;}
.x31_c00304{left:629.760000pt;}
.x1b_c00304{left:631.040000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e0297206795e30a37fe9436c.woff2')format("woff");}.ff1_c00305{font-family:ff1_c00305;line-height:1.109863;font-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_c00305{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m18_c00305{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m16_c00305{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);}
.m35_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);}
.m21_c00305{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);}
.m38_c00305{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m27_c00305{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);}
.m28_c00305{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m11_c00305{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.me_c00305{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m6_c00305{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m10_c00305{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00305{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m2_c00305{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.ma_c00305{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00305{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m34_c00305{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m13_c00305{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00305{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00305{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m20_c00305{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00305{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m5_c00305{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00305{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1_c00305{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00305{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mc_c00305{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m15_c00305{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00305{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00305{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_c00305{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m39_c00305{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_c00305{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);}
.m36_c00305{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);}
.m2d_c00305{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00305{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_c00305{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.mf_c00305{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m0_c00305{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m7_c00305{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);}
.m29_c00305{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m19_c00305{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);}
.m24_c00305{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);}
.m30_c00305{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m37_c00305{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_c00305{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);}
.m31_c00305{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);}
.m32_c00305{transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);}
.m9_c00305{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m23_c00305{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m4_c00305{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00305{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);}
.m33_c00305{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.mb_c00305{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m17_c00305{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);}
.m25_c00305{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m3_c00305{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);}
.md_c00305{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m26_c00305{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);}
.m12_c00305{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00305{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00305{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);}
.m41_c00305{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);}
.m45_c00305{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m42_c00305{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m44_c00305{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m14_c00305{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m43_c00305{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00305{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m22_c00305{transform:matrix(0.982500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.982500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.982500,0.000000,0.000000,0.250000,0,0);}
.v0_c00305{vertical-align:0.000000px;}
.ls0_c00305{letter-spacing:0.000000px;}
.sc__c00305{text-shadow:none;}
.sc0_c00305{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00305{-webkit-text-stroke:0px transparent;}
.sc0_c00305{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00305{word-spacing:0.000000px;}
.fc0_c00305{color:transparent;}
.fsa_c00305{font-size:28.800000px;}
.fs3_c00305{font-size:37.440000px;}
.fs6_c00305{font-size:46.080000px;}
.fs4_c00305{font-size:48.960000px;}
.fs1_c00305{font-size:51.840000px;}
.fs8_c00305{font-size:54.720000px;}
.fs9_c00305{font-size:57.600000px;}
.fs0_c00305{font-size:60.480000px;}
.fsc_c00305{font-size:63.360000px;}
.fs7_c00305{font-size:66.240000px;}
.fs5_c00305{font-size:69.120000px;}
.fsb_c00305{font-size:72.000000px;}
.fs2_c00305{font-size:74.880000px;}
.fsd_c00305{font-size:77.760000px;}
.y0_c00305{bottom:0.000000px;}
.y6b_c00305{bottom:95.760000px;}
.y6c_c00305{bottom:97.920000px;}
.y6a_c00305{bottom:99.360000px;}
.y69_c00305{bottom:100.080000px;}
.y68_c00305{bottom:100.800000px;}
.y84_c00305{bottom:102.240000px;}
.y66_c00305{bottom:138.960000px;}
.y67_c00305{bottom:141.120000px;}
.y81_c00305{bottom:142.560000px;}
.y65_c00305{bottom:143.280000px;}
.y64_c00305{bottom:144.000000px;}
.y83_c00305{bottom:145.440000px;}
.y82_c00305{bottom:146.160000px;}
.y61_c00305{bottom:182.880000px;}
.y62_c00305{bottom:183.600000px;}
.y63_c00305{bottom:184.320000px;}
.y60_c00305{bottom:185.760000px;}
.y7f_c00305{bottom:186.480000px;}
.y80_c00305{bottom:187.920000px;}
.y5f_c00305{bottom:225.360000px;}
.y7e_c00305{bottom:228.240000px;}
.y7d_c00305{bottom:228.960000px;}
.y5d_c00305{bottom:229.680000px;}
.y5e_c00305{bottom:230.400000px;}
.y5c_c00305{bottom:262.800000px;}
.y59_c00305{bottom:268.560000px;}
.y5a_c00305{bottom:270.000000px;}
.y5b_c00305{bottom:271.440000px;}
.y57_c00305{bottom:272.160000px;}
.y58_c00305{bottom:272.880000px;}
.y7c_c00305{bottom:274.320000px;}
.y56_c00305{bottom:311.760000px;}
.y55_c00305{bottom:313.200000px;}
.y79_c00305{bottom:313.920000px;}
.y7b_c00305{bottom:314.640000px;}
.y53_c00305{bottom:315.360000px;}
.y54_c00305{bottom:316.080000px;}
.y7a_c00305{bottom:317.520000px;}
.y4e_c00305{bottom:354.960000px;}
.y51_c00305{bottom:355.680000px;}
.y4f_c00305{bottom:356.400000px;}
.y78_c00305{bottom:357.120000px;}
.y4d_c00305{bottom:357.840000px;}
.y50_c00305{bottom:358.560000px;}
.y52_c00305{bottom:359.280000px;}
.y4b_c00305{bottom:398.880000px;}
.y76_c00305{bottom:400.320000px;}
.y4a_c00305{bottom:401.040000px;}
.y77_c00305{bottom:401.760000px;}
.y4c_c00305{bottom:402.480000px;}
.y48_c00305{bottom:442.080000px;}
.y46_c00305{bottom:444.240000px;}
.y49_c00305{bottom:445.680000px;}
.y47_c00305{bottom:446.400000px;}
.y75_c00305{bottom:447.120000px;}
.y45_c00305{bottom:485.280000px;}
.y44_c00305{bottom:486.000000px;}
.y42_c00305{bottom:487.440000px;}
.y74_c00305{bottom:488.160000px;}
.y43_c00305{bottom:489.600000px;}
.y41_c00305{bottom:528.480000px;}
.y3e_c00305{bottom:530.640000px;}
.y73_c00305{bottom:531.360000px;}
.y40_c00305{bottom:532.080000px;}
.y3f_c00305{bottom:532.800000px;}
.y3b_c00305{bottom:571.680000px;}
.y3d_c00305{bottom:572.400000px;}
.y3a_c00305{bottom:573.120000px;}
.y71_c00305{bottom:573.840000px;}
.y3c_c00305{bottom:575.280000px;}
.y72_c00305{bottom:576.000000px;}
.y38_c00305{bottom:614.160000px;}
.y36_c00305{bottom:615.600000px;}
.y70_c00305{bottom:616.320000px;}
.y39_c00305{bottom:617.760000px;}
.y37_c00305{bottom:618.480000px;}
.y35_c00305{bottom:657.360000px;}
.y33_c00305{bottom:658.800000px;}
.y6e_c00305{bottom:660.240000px;}
.y34_c00305{bottom:660.960000px;}
.y6f_c00305{bottom:661.680000px;}
.y2f_c00305{bottom:700.560000px;}
.y2d_c00305{bottom:701.280000px;}
.y2e_c00305{bottom:702.000000px;}
.y30_c00305{bottom:702.720000px;}
.y32_c00305{bottom:703.440000px;}
.y31_c00305{bottom:704.160000px;}
.y6d_c00305{bottom:704.880000px;}
.y28_c00305{bottom:743.040000px;}
.y2b_c00305{bottom:743.760000px;}
.y27_c00305{bottom:744.480000px;}
.y2a_c00305{bottom:745.920000px;}
.y2c_c00305{bottom:746.640000px;}
.y29_c00305{bottom:747.360000px;}
.y26_c00305{bottom:776.880000px;}
.y23_c00305{bottom:786.960000px;}
.y21_c00305{bottom:787.680000px;}
.y22_c00305{bottom:788.400000px;}
.y25_c00305{bottom:789.120000px;}
.y24_c00305{bottom:789.840000px;}
.y1d_c00305{bottom:828.720000px;}
.y1b_c00305{bottom:830.160000px;}
.y20_c00305{bottom:830.880000px;}
.y1f_c00305{bottom:832.320000px;}
.y1c_c00305{bottom:833.040000px;}
.y1e_c00305{bottom:833.760000px;}
.y11_c00305{bottom:871.920000px;}
.ye_c00305{bottom:873.360000px;}
.y19_c00305{bottom:874.080000px;}
.y1a_c00305{bottom:874.800000px;}
.y10_c00305{bottom:875.520000px;}
.yf_c00305{bottom:876.240000px;}
.yd_c00305{bottom:915.120000px;}
.ya_c00305{bottom:915.840000px;}
.y18_c00305{bottom:916.560000px;}
.yc_c00305{bottom:917.280000px;}
.yb_c00305{bottom:918.720000px;}
.y9_c00305{bottom:958.320000px;}
.y7_c00305{bottom:959.760000px;}
.y17_c00305{bottom:960.480000px;}
.y16_c00305{bottom:961.200000px;}
.y8_c00305{bottom:961.920000px;}
.y6_c00305{bottom:1001.520000px;}
.y4_c00305{bottom:1002.960000px;}
.y5_c00305{bottom:1005.120000px;}
.y15_c00305{bottom:1005.840000px;}
.y3_c00305{bottom:1045.440000px;}
.y1_c00305{bottom:1046.160000px;}
.y14_c00305{bottom:1047.600000px;}
.y13_c00305{bottom:1048.320000px;}
.y2_c00305{bottom:1049.040000px;}
.y12_c00305{bottom:1094.400000px;}
.hc_c00305{height:25.917187px;}
.h5_c00305{height:33.692344px;}
.h8_c00305{height:41.467500px;}
.h6_c00305{height:44.059219px;}
.h3_c00305{height:46.650937px;}
.ha_c00305{height:49.242656px;}
.hb_c00305{height:51.834375px;}
.h2_c00305{height:54.426094px;}
.he_c00305{height:57.017812px;}
.h9_c00305{height:59.609531px;}
.h7_c00305{height:62.201250px;}
.hd_c00305{height:64.792969px;}
.h4_c00305{height:67.384687px;}
.hf_c00305{height:69.976406px;}
.h1_c00305{height:1145.250000px;}
.h0_c00305{height:1145.520000px;}
.w1_c00305{width:768.750000px;}
.w0_c00305{width:768.960000px;}
.x0_c00305{left:0.000000px;}
.x1_c00305{left:59.040000px;}
.x17_c00305{left:60.480000px;}
.x23_c00305{left:61.920000px;}
.x2a_c00305{left:63.360000px;}
.x30_c00305{left:64.800000px;}
.x13_c00305{left:113.760000px;}
.x2_c00305{left:132.480000px;}
.x2c_c00305{left:134.640000px;}
.x14_c00305{left:143.280000px;}
.x3_c00305{left:176.400000px;}
.x2b_c00305{left:177.840000px;}
.x1b_c00305{left:187.200000px;}
.x2d_c00305{left:209.520000px;}
.x18_c00305{left:218.880000px;}
.x21_c00305{left:220.320000px;}
.x6_c00305{left:230.400000px;}
.x22_c00305{left:231.840000px;}
.x20_c00305{left:252.720000px;}
.x2e_c00305{left:264.960000px;}
.x7_c00305{left:274.320000px;}
.x31_c00305{left:275.760000px;}
.x15_c00305{left:285.840000px;}
.x1c_c00305{left:296.640000px;}
.x24_c00305{left:307.440000px;}
.x32_c00305{left:318.240000px;}
.x4_c00305{left:328.320000px;}
.x2f_c00305{left:350.640000px;}
.x27_c00305{left:360.720000px;}
.x5_c00305{left:371.520000px;}
.x1d_c00305{left:380.880000px;}
.xf_c00305{left:382.320000px;}
.x25_c00305{left:404.640000px;}
.x19_c00305{left:414.720000px;}
.x1e_c00305{left:425.520000px;}
.x10_c00305{left:437.040000px;}
.x26_c00305{left:447.120000px;}
.x1f_c00305{left:468.720000px;}
.x11_c00305{left:478.800000px;}
.x33_c00305{left:501.840000px;}
.x28_c00305{left:511.920000px;}
.x29_c00305{left:522.720000px;}
.x12_c00305{left:533.520000px;}
.x16_c00305{left:554.400000px;}
.xd_c00305{left:576.720000px;}
.xe_c00305{left:587.520000px;}
.x35_c00305{left:609.120000px;}
.x9_c00305{left:610.560000px;}
.xa_c00305{left:641.520000px;}
.x34_c00305{left:642.960000px;}
.x8_c00305{left:665.280000px;}
.x1a_c00305{left:674.640000px;}
.x36_c00305{left:683.280000px;}
.xb_c00305{left:684.720000px;}
.xc_c00305{left:704.160000px;}
@media print{
.v0_c00305{vertical-align:0.000000pt;}
.ls0_c00305{letter-spacing:0.000000pt;}
.ws0_c00305{word-spacing:0.000000pt;}
.fsa_c00305{font-size:25.600000pt;}
.fs3_c00305{font-size:33.280000pt;}
.fs6_c00305{font-size:40.960000pt;}
.fs4_c00305{font-size:43.520000pt;}
.fs1_c00305{font-size:46.080000pt;}
.fs8_c00305{font-size:48.640000pt;}
.fs9_c00305{font-size:51.200000pt;}
.fs0_c00305{font-size:53.760000pt;}
.fsc_c00305{font-size:56.320000pt;}
.fs7_c00305{font-size:58.880000pt;}
.fs5_c00305{font-size:61.440000pt;}
.fsb_c00305{font-size:64.000000pt;}
.fs2_c00305{font-size:66.560000pt;}
.fsd_c00305{font-size:69.120000pt;}
.y0_c00305{bottom:0.000000pt;}
.y6b_c00305{bottom:85.120000pt;}
.y6c_c00305{bottom:87.040000pt;}
.y6a_c00305{bottom:88.320000pt;}
.y69_c00305{bottom:88.960000pt;}
.y68_c00305{bottom:89.600000pt;}
.y84_c00305{bottom:90.880000pt;}
.y66_c00305{bottom:123.520000pt;}
.y67_c00305{bottom:125.440000pt;}
.y81_c00305{bottom:126.720000pt;}
.y65_c00305{bottom:127.360000pt;}
.y64_c00305{bottom:128.000000pt;}
.y83_c00305{bottom:129.280000pt;}
.y82_c00305{bottom:129.920000pt;}
.y61_c00305{bottom:162.560000pt;}
.y62_c00305{bottom:163.200000pt;}
.y63_c00305{bottom:163.840000pt;}
.y60_c00305{bottom:165.120000pt;}
.y7f_c00305{bottom:165.760000pt;}
.y80_c00305{bottom:167.040000pt;}
.y5f_c00305{bottom:200.320000pt;}
.y7e_c00305{bottom:202.880000pt;}
.y7d_c00305{bottom:203.520000pt;}
.y5d_c00305{bottom:204.160000pt;}
.y5e_c00305{bottom:204.800000pt;}
.y5c_c00305{bottom:233.600000pt;}
.y59_c00305{bottom:238.720000pt;}
.y5a_c00305{bottom:240.000000pt;}
.y5b_c00305{bottom:241.280000pt;}
.y57_c00305{bottom:241.920000pt;}
.y58_c00305{bottom:242.560000pt;}
.y7c_c00305{bottom:243.840000pt;}
.y56_c00305{bottom:277.120000pt;}
.y55_c00305{bottom:278.400000pt;}
.y79_c00305{bottom:279.040000pt;}
.y7b_c00305{bottom:279.680000pt;}
.y53_c00305{bottom:280.320000pt;}
.y54_c00305{bottom:280.960000pt;}
.y7a_c00305{bottom:282.240000pt;}
.y4e_c00305{bottom:315.520000pt;}
.y51_c00305{bottom:316.160000pt;}
.y4f_c00305{bottom:316.800000pt;}
.y78_c00305{bottom:317.440000pt;}
.y4d_c00305{bottom:318.080000pt;}
.y50_c00305{bottom:318.720000pt;}
.y52_c00305{bottom:319.360000pt;}
.y4b_c00305{bottom:354.560000pt;}
.y76_c00305{bottom:355.840000pt;}
.y4a_c00305{bottom:356.480000pt;}
.y77_c00305{bottom:357.120000pt;}
.y4c_c00305{bottom:357.760000pt;}
.y48_c00305{bottom:392.960000pt;}
.y46_c00305{bottom:394.880000pt;}
.y49_c00305{bottom:396.160000pt;}
.y47_c00305{bottom:396.800000pt;}
.y75_c00305{bottom:397.440000pt;}
.y45_c00305{bottom:431.360000pt;}
.y44_c00305{bottom:432.000000pt;}
.y42_c00305{bottom:433.280000pt;}
.y74_c00305{bottom:433.920000pt;}
.y43_c00305{bottom:435.200000pt;}
.y41_c00305{bottom:469.760000pt;}
.y3e_c00305{bottom:471.680000pt;}
.y73_c00305{bottom:472.320000pt;}
.y40_c00305{bottom:472.960000pt;}
.y3f_c00305{bottom:473.600000pt;}
.y3b_c00305{bottom:508.160000pt;}
.y3d_c00305{bottom:508.800000pt;}
.y3a_c00305{bottom:509.440000pt;}
.y71_c00305{bottom:510.080000pt;}
.y3c_c00305{bottom:511.360000pt;}
.y72_c00305{bottom:512.000000pt;}
.y38_c00305{bottom:545.920000pt;}
.y36_c00305{bottom:547.200000pt;}
.y70_c00305{bottom:547.840000pt;}
.y39_c00305{bottom:549.120000pt;}
.y37_c00305{bottom:549.760000pt;}
.y35_c00305{bottom:584.320000pt;}
.y33_c00305{bottom:585.600000pt;}
.y6e_c00305{bottom:586.880000pt;}
.y34_c00305{bottom:587.520000pt;}
.y6f_c00305{bottom:588.160000pt;}
.y2f_c00305{bottom:622.720000pt;}
.y2d_c00305{bottom:623.360000pt;}
.y2e_c00305{bottom:624.000000pt;}
.y30_c00305{bottom:624.640000pt;}
.y32_c00305{bottom:625.280000pt;}
.y31_c00305{bottom:625.920000pt;}
.y6d_c00305{bottom:626.560000pt;}
.y28_c00305{bottom:660.480000pt;}
.y2b_c00305{bottom:661.120000pt;}
.y27_c00305{bottom:661.760000pt;}
.y2a_c00305{bottom:663.040000pt;}
.y2c_c00305{bottom:663.680000pt;}
.y29_c00305{bottom:664.320000pt;}
.y26_c00305{bottom:690.560000pt;}
.y23_c00305{bottom:699.520000pt;}
.y21_c00305{bottom:700.160000pt;}
.y22_c00305{bottom:700.800000pt;}
.y25_c00305{bottom:701.440000pt;}
.y24_c00305{bottom:702.080000pt;}
.y1d_c00305{bottom:736.640000pt;}
.y1b_c00305{bottom:737.920000pt;}
.y20_c00305{bottom:738.560000pt;}
.y1f_c00305{bottom:739.840000pt;}
.y1c_c00305{bottom:740.480000pt;}
.y1e_c00305{bottom:741.120000pt;}
.y11_c00305{bottom:775.040000pt;}
.ye_c00305{bottom:776.320000pt;}
.y19_c00305{bottom:776.960000pt;}
.y1a_c00305{bottom:777.600000pt;}
.y10_c00305{bottom:778.240000pt;}
.yf_c00305{bottom:778.880000pt;}
.yd_c00305{bottom:813.440000pt;}
.ya_c00305{bottom:814.080000pt;}
.y18_c00305{bottom:814.720000pt;}
.yc_c00305{bottom:815.360000pt;}
.yb_c00305{bottom:816.640000pt;}
.y9_c00305{bottom:851.840000pt;}
.y7_c00305{bottom:853.120000pt;}
.y17_c00305{bottom:853.760000pt;}
.y16_c00305{bottom:854.400000pt;}
.y8_c00305{bottom:855.040000pt;}
.y6_c00305{bottom:890.240000pt;}
.y4_c00305{bottom:891.520000pt;}
.y5_c00305{bottom:893.440000pt;}
.y15_c00305{bottom:894.080000pt;}
.y3_c00305{bottom:929.280000pt;}
.y1_c00305{bottom:929.920000pt;}
.y14_c00305{bottom:931.200000pt;}
.y13_c00305{bottom:931.840000pt;}
.y2_c00305{bottom:932.480000pt;}
.y12_c00305{bottom:972.800000pt;}
.hc_c00305{height:23.037500pt;}
.h5_c00305{height:29.948750pt;}
.h8_c00305{height:36.860000pt;}
.h6_c00305{height:39.163750pt;}
.h3_c00305{height:41.467500pt;}
.ha_c00305{height:43.771250pt;}
.hb_c00305{height:46.075000pt;}
.h2_c00305{height:48.378750pt;}
.he_c00305{height:50.682500pt;}
.h9_c00305{height:52.986250pt;}
.h7_c00305{height:55.290000pt;}
.hd_c00305{height:57.593750pt;}
.h4_c00305{height:59.897500pt;}
.hf_c00305{height:62.201250pt;}
.h1_c00305{height:1018.000000pt;}
.h0_c00305{height:1018.240000pt;}
.w1_c00305{width:683.333333pt;}
.w0_c00305{width:683.520000pt;}
.x0_c00305{left:0.000000pt;}
.x1_c00305{left:52.480000pt;}
.x17_c00305{left:53.760000pt;}
.x23_c00305{left:55.040000pt;}
.x2a_c00305{left:56.320000pt;}
.x30_c00305{left:57.600000pt;}
.x13_c00305{left:101.120000pt;}
.x2_c00305{left:117.760000pt;}
.x2c_c00305{left:119.680000pt;}
.x14_c00305{left:127.360000pt;}
.x3_c00305{left:156.800000pt;}
.x2b_c00305{left:158.080000pt;}
.x1b_c00305{left:166.400000pt;}
.x2d_c00305{left:186.240000pt;}
.x18_c00305{left:194.560000pt;}
.x21_c00305{left:195.840000pt;}
.x6_c00305{left:204.800000pt;}
.x22_c00305{left:206.080000pt;}
.x20_c00305{left:224.640000pt;}
.x2e_c00305{left:235.520000pt;}
.x7_c00305{left:243.840000pt;}
.x31_c00305{left:245.120000pt;}
.x15_c00305{left:254.080000pt;}
.x1c_c00305{left:263.680000pt;}
.x24_c00305{left:273.280000pt;}
.x32_c00305{left:282.880000pt;}
.x4_c00305{left:291.840000pt;}
.x2f_c00305{left:311.680000pt;}
.x27_c00305{left:320.640000pt;}
.x5_c00305{left:330.240000pt;}
.x1d_c00305{left:338.560000pt;}
.xf_c00305{left:339.840000pt;}
.x25_c00305{left:359.680000pt;}
.x19_c00305{left:368.640000pt;}
.x1e_c00305{left:378.240000pt;}
.x10_c00305{left:388.480000pt;}
.x26_c00305{left:397.440000pt;}
.x1f_c00305{left:416.640000pt;}
.x11_c00305{left:425.600000pt;}
.x33_c00305{left:446.080000pt;}
.x28_c00305{left:455.040000pt;}
.x29_c00305{left:464.640000pt;}
.x12_c00305{left:474.240000pt;}
.x16_c00305{left:492.800000pt;}
.xd_c00305{left:512.640000pt;}
.xe_c00305{left:522.240000pt;}
.x35_c00305{left:541.440000pt;}
.x9_c00305{left:542.720000pt;}
.xa_c00305{left:570.240000pt;}
.x34_c00305{left:571.520000pt;}
.x8_c00305{left:591.360000pt;}
.x1a_c00305{left:599.680000pt;}
.x36_c00305{left:607.360000pt;}
.xb_c00305{left:608.640000pt;}
.xc_c00305{left:625.920000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4e9b0a02386baa11c8dbeb0f.woff2')format("woff");}.ff1_c00306{font-family:ff1_c00306;line-height:1.109863;font-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_c00306{transform:matrix(0.177600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177600,0.000000,0.000000,0.250000,0,0);}
.m3a_c00306{transform:matrix(0.187850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187850,0.000000,0.000000,0.250000,0,0);}
.m44_c00306{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);}
.m3c_c00306{transform:matrix(0.230325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230325,0.000000,0.000000,0.250000,0,0);}
.m2a_c00306{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m37_c00306{transform:matrix(0.238675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238675,0.000000,0.000000,0.250000,0,0);}
.m3d_c00306{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m16_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);}
.m3e_c00306{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);}
.m22_c00306{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m21_c00306{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m36_c00306{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m34_c00306{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m40_c00306{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m17_c00306{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m11_c00306{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);}
.m28_c00306{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m27_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);}
.m8_c00306{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m4_c00306{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mb_c00306{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);}
.m33_c00306{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1_c00306{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mf_c00306{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m14_c00306{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00306{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m29_c00306{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00306{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00306{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m5_c00306{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00306{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m19_c00306{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00306{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00306{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00306{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00306{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.me_c00306{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.md_c00306{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);}
.m3f_c00306{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_c00306{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m2_c00306{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00306{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m13_c00306{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m0_c00306{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00306{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);}
.mc_c00306{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);}
.m12_c00306{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m32_c00306{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);}
.m6_c00306{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m7_c00306{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);}
.m10_c00306{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m43_c00306{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m15_c00306{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);}
.m31_c00306{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m42_c00306{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m45_c00306{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m30_c00306{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m26_c00306{transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00306{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m20_c00306{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);}
.m1a_c00306{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m3_c00306{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m18_c00306{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m46_c00306{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m9_c00306{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m41_c00306{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m49_c00306{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m25_c00306{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m38_c00306{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m47_c00306{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m48_c00306{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m39_c00306{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.m24_c00306{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m35_c00306{transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);}
.v0_c00306{vertical-align:0.000000px;}
.v1_c00306{vertical-align:5.760000px;}
.ls0_c00306{letter-spacing:0.000000px;}
.sc__c00306{text-shadow:none;}
.sc0_c00306{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00306{-webkit-text-stroke:0px transparent;}
.sc0_c00306{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00306{word-spacing:0.000000px;}
.ws0_c00306{word-spacing:1.116240px;}
.fc0_c00306{color:transparent;}
.fsd_c00306{font-size:34.560000px;}
.fsb_c00306{font-size:40.320000px;}
.fse_c00306{font-size:46.080000px;}
.fs1_c00306{font-size:48.960000px;}
.fs2_c00306{font-size:51.840000px;}
.fs9_c00306{font-size:54.720000px;}
.fs5_c00306{font-size:57.600000px;}
.fs0_c00306{font-size:60.480000px;}
.fs6_c00306{font-size:63.360000px;}
.fsa_c00306{font-size:66.240000px;}
.fs8_c00306{font-size:69.120000px;}
.fs7_c00306{font-size:72.000000px;}
.fs4_c00306{font-size:74.880000px;}
.fs3_c00306{font-size:77.760000px;}
.fsc_c00306{font-size:103.680000px;}
.y0_c00306{bottom:0.000000px;}
.y67_c00306{bottom:66.240000px;}
.y69_c00306{bottom:67.680000px;}
.y77_c00306{bottom:68.400000px;}
.y76_c00306{bottom:69.120000px;}
.y68_c00306{bottom:69.840000px;}
.y6a_c00306{bottom:70.560000px;}
.y66_c00306{bottom:71.280000px;}
.y64_c00306{bottom:113.760000px;}
.y65_c00306{bottom:114.480000px;}
.y62_c00306{bottom:142.560000px;}
.y61_c00306{bottom:144.000000px;}
.y74_c00306{bottom:144.720000px;}
.y75_c00306{bottom:145.440000px;}
.y60_c00306{bottom:146.880000px;}
.y63_c00306{bottom:148.320000px;}
.y5d_c00306{bottom:185.760000px;}
.y5f_c00306{bottom:186.480000px;}
.y73_c00306{bottom:188.640000px;}
.y5e_c00306{bottom:189.360000px;}
.y5c_c00306{bottom:190.080000px;}
.y5a_c00306{bottom:229.680000px;}
.y72_c00306{bottom:231.840000px;}
.y5b_c00306{bottom:232.560000px;}
.y59_c00306{bottom:233.280000px;}
.y58_c00306{bottom:272.160000px;}
.y70_c00306{bottom:274.320000px;}
.y57_c00306{bottom:276.480000px;}
.y6f_c00306{bottom:277.200000px;}
.y71_c00306{bottom:277.920000px;}
.y56_c00306{bottom:308.880000px;}
.y53_c00306{bottom:315.360000px;}
.y55_c00306{bottom:316.080000px;}
.y6e_c00306{bottom:317.520000px;}
.y52_c00306{bottom:318.240000px;}
.y54_c00306{bottom:318.960000px;}
.y51_c00306{bottom:358.560000px;}
.y6c_c00306{bottom:359.280000px;}
.y6b_c00306{bottom:360.000000px;}
.y6d_c00306{bottom:360.720000px;}
.y50_c00306{bottom:361.440000px;}
.y4d_c00306{bottom:394.560000px;}
.y4b_c00306{bottom:401.040000px;}
.y4f_c00306{bottom:402.480000px;}
.y4e_c00306{bottom:403.200000px;}
.y4a_c00306{bottom:403.920000px;}
.y4c_c00306{bottom:404.640000px;}
.y45_c00306{bottom:444.960000px;}
.y48_c00306{bottom:445.680000px;}
.y47_c00306{bottom:446.400000px;}
.y44_c00306{bottom:447.120000px;}
.y49_c00306{bottom:448.560000px;}
.y43_c00306{bottom:487.440000px;}
.y46_c00306{bottom:488.880000px;}
.y42_c00306{bottom:489.600000px;}
.y41_c00306{bottom:523.440000px;}
.y3f_c00306{bottom:531.360000px;}
.y3e_c00306{bottom:532.080000px;}
.y3c_c00306{bottom:532.800000px;}
.y40_c00306{bottom:534.240000px;}
.y3d_c00306{bottom:534.960000px;}
.y3b_c00306{bottom:573.840000px;}
.y39_c00306{bottom:574.560000px;}
.y38_c00306{bottom:576.000000px;}
.y3a_c00306{bottom:617.040000px;}
.y37_c00306{bottom:618.480000px;}
.y36_c00306{bottom:620.640000px;}
.y35_c00306{bottom:621.360000px;}
.y26_c00306{bottom:660.960000px;}
.y25_c00306{bottom:661.680000px;}
.y34_c00306{bottom:663.840000px;}
.y24_c00306{bottom:703.440000px;}
.y33_c00306{bottom:704.160000px;}
.y23_c00306{bottom:704.880000px;}
.y22_c00306{bottom:746.640000px;}
.y32_c00306{bottom:748.080000px;}
.y20_c00306{bottom:748.800000px;}
.y31_c00306{bottom:749.520000px;}
.y21_c00306{bottom:750.960000px;}
.y1f_c00306{bottom:789.840000px;}
.y1c_c00306{bottom:790.560000px;}
.y1e_c00306{bottom:791.280000px;}
.y1b_c00306{bottom:792.000000px;}
.y30_c00306{bottom:792.720000px;}
.y1d_c00306{bottom:793.440000px;}
.y1a_c00306{bottom:832.320000px;}
.y19_c00306{bottom:833.040000px;}
.y2f_c00306{bottom:833.760000px;}
.y16_c00306{bottom:834.480000px;}
.y17_c00306{bottom:836.640000px;}
.y18_c00306{bottom:837.360000px;}
.y15_c00306{bottom:875.520000px;}
.y14_c00306{bottom:876.240000px;}
.y12_c00306{bottom:876.960000px;}
.y13_c00306{bottom:877.680000px;}
.y2e_c00306{bottom:878.400000px;}
.y11_c00306{bottom:918.720000px;}
.y2c_c00306{bottom:919.440000px;}
.ye_c00306{bottom:920.160000px;}
.y2d_c00306{bottom:921.600000px;}
.y10_c00306{bottom:922.320000px;}
.yf_c00306{bottom:923.040000px;}
.yd_c00306{bottom:961.920000px;}
.ya_c00306{bottom:962.640000px;}
.yb_c00306{bottom:963.360000px;}
.y2b_c00306{bottom:964.080000px;}
.y2a_c00306{bottom:964.800000px;}
.yc_c00306{bottom:965.520000px;}
.y8_c00306{bottom:1003.680000px;}
.y29_c00306{bottom:1005.120000px;}
.y6_c00306{bottom:1005.840000px;}
.y7_c00306{bottom:1006.560000px;}
.y9_c00306{bottom:1008.000000px;}
.y4_c00306{bottom:1046.880000px;}
.y5_c00306{bottom:1048.320000px;}
.y1_c00306{bottom:1049.040000px;}
.y2_c00306{bottom:1049.760000px;}
.y28_c00306{bottom:1050.480000px;}
.y3_c00306{bottom:1051.200000px;}
.y27_c00306{bottom:1086.480000px;}
.hf_c00306{height:31.100625px;}
.hd_c00306{height:36.284062px;}
.h10_c00306{height:41.467500px;}
.h3_c00306{height:44.059219px;}
.h4_c00306{height:46.650937px;}
.hb_c00306{height:49.242656px;}
.h7_c00306{height:51.834375px;}
.h2_c00306{height:54.426094px;}
.h8_c00306{height:57.017812px;}
.hc_c00306{height:59.609531px;}
.ha_c00306{height:62.201250px;}
.h9_c00306{height:64.792969px;}
.h6_c00306{height:67.384687px;}
.h5_c00306{height:69.976406px;}
.he_c00306{height:93.301875px;}
.h1_c00306{height:1149.750000px;}
.h0_c00306{height:1149.840000px;}
.w0_c00306{width:775.440000px;}
.w1_c00306{width:775.500000px;}
.x0_c00306{left:0.000000px;}
.x1_c00306{left:66.240000px;}
.x24_c00306{left:67.680000px;}
.x26_c00306{left:69.120000px;}
.x16_c00306{left:138.960000px;}
.x2_c00306{left:140.400000px;}
.x15_c00306{left:174.240000px;}
.xd_c00306{left:182.160000px;}
.x8_c00306{left:184.320000px;}
.x3_c00306{left:192.960000px;}
.xb_c00306{left:194.400000px;}
.xe_c00306{left:227.520000px;}
.x10_c00306{left:236.880000px;}
.x4_c00306{left:238.320000px;}
.xc_c00306{left:249.120000px;}
.x25_c00306{left:270.000000px;}
.x11_c00306{left:281.520000px;}
.x5_c00306{left:292.320000px;}
.x27_c00306{left:323.280000px;}
.x9_c00306{left:334.800000px;}
.x12_c00306{left:367.920000px;}
.x6_c00306{left:377.280000px;}
.xf_c00306{left:378.720000px;}
.xa_c00306{left:389.520000px;}
.x14_c00306{left:420.480000px;}
.x20_c00306{left:421.920000px;}
.x13_c00306{left:463.680000px;}
.x7_c00306{left:465.120000px;}
.x28_c00306{left:474.480000px;}
.x21_c00306{left:507.600000px;}
.x23_c00306{left:518.400000px;}
.x2d_c00306{left:560.880000px;}
.x1e_c00306{left:562.320000px;}
.x1f_c00306{left:583.200000px;}
.x1d_c00306{left:592.560000px;}
.x22_c00306{left:594.000000px;}
.x2e_c00306{left:614.160000px;}
.x29_c00306{left:615.600000px;}
.x18_c00306{left:617.040000px;}
.x2a_c00306{left:648.000000px;}
.x19_c00306{left:649.440000px;}
.x17_c00306{left:670.320000px;}
.x2b_c00306{left:680.400000px;}
.x1c_c00306{left:681.840000px;}
.x1a_c00306{left:691.200000px;}
.x2c_c00306{left:710.640000px;}
.x1b_c00306{left:712.080000px;}
@media print{
.v0_c00306{vertical-align:0.000000pt;}
.v1_c00306{vertical-align:5.120000pt;}
.ls0_c00306{letter-spacing:0.000000pt;}
.ws1_c00306{word-spacing:0.000000pt;}
.ws0_c00306{word-spacing:0.992213pt;}
.fsd_c00306{font-size:30.720000pt;}
.fsb_c00306{font-size:35.840000pt;}
.fse_c00306{font-size:40.960000pt;}
.fs1_c00306{font-size:43.520000pt;}
.fs2_c00306{font-size:46.080000pt;}
.fs9_c00306{font-size:48.640000pt;}
.fs5_c00306{font-size:51.200000pt;}
.fs0_c00306{font-size:53.760000pt;}
.fs6_c00306{font-size:56.320000pt;}
.fsa_c00306{font-size:58.880000pt;}
.fs8_c00306{font-size:61.440000pt;}
.fs7_c00306{font-size:64.000000pt;}
.fs4_c00306{font-size:66.560000pt;}
.fs3_c00306{font-size:69.120000pt;}
.fsc_c00306{font-size:92.160000pt;}
.y0_c00306{bottom:0.000000pt;}
.y67_c00306{bottom:58.880000pt;}
.y69_c00306{bottom:60.160000pt;}
.y77_c00306{bottom:60.800000pt;}
.y76_c00306{bottom:61.440000pt;}
.y68_c00306{bottom:62.080000pt;}
.y6a_c00306{bottom:62.720000pt;}
.y66_c00306{bottom:63.360000pt;}
.y64_c00306{bottom:101.120000pt;}
.y65_c00306{bottom:101.760000pt;}
.y62_c00306{bottom:126.720000pt;}
.y61_c00306{bottom:128.000000pt;}
.y74_c00306{bottom:128.640000pt;}
.y75_c00306{bottom:129.280000pt;}
.y60_c00306{bottom:130.560000pt;}
.y63_c00306{bottom:131.840000pt;}
.y5d_c00306{bottom:165.120000pt;}
.y5f_c00306{bottom:165.760000pt;}
.y73_c00306{bottom:167.680000pt;}
.y5e_c00306{bottom:168.320000pt;}
.y5c_c00306{bottom:168.960000pt;}
.y5a_c00306{bottom:204.160000pt;}
.y72_c00306{bottom:206.080000pt;}
.y5b_c00306{bottom:206.720000pt;}
.y59_c00306{bottom:207.360000pt;}
.y58_c00306{bottom:241.920000pt;}
.y70_c00306{bottom:243.840000pt;}
.y57_c00306{bottom:245.760000pt;}
.y6f_c00306{bottom:246.400000pt;}
.y71_c00306{bottom:247.040000pt;}
.y56_c00306{bottom:274.560000pt;}
.y53_c00306{bottom:280.320000pt;}
.y55_c00306{bottom:280.960000pt;}
.y6e_c00306{bottom:282.240000pt;}
.y52_c00306{bottom:282.880000pt;}
.y54_c00306{bottom:283.520000pt;}
.y51_c00306{bottom:318.720000pt;}
.y6c_c00306{bottom:319.360000pt;}
.y6b_c00306{bottom:320.000000pt;}
.y6d_c00306{bottom:320.640000pt;}
.y50_c00306{bottom:321.280000pt;}
.y4d_c00306{bottom:350.720000pt;}
.y4b_c00306{bottom:356.480000pt;}
.y4f_c00306{bottom:357.760000pt;}
.y4e_c00306{bottom:358.400000pt;}
.y4a_c00306{bottom:359.040000pt;}
.y4c_c00306{bottom:359.680000pt;}
.y45_c00306{bottom:395.520000pt;}
.y48_c00306{bottom:396.160000pt;}
.y47_c00306{bottom:396.800000pt;}
.y44_c00306{bottom:397.440000pt;}
.y49_c00306{bottom:398.720000pt;}
.y43_c00306{bottom:433.280000pt;}
.y46_c00306{bottom:434.560000pt;}
.y42_c00306{bottom:435.200000pt;}
.y41_c00306{bottom:465.280000pt;}
.y3f_c00306{bottom:472.320000pt;}
.y3e_c00306{bottom:472.960000pt;}
.y3c_c00306{bottom:473.600000pt;}
.y40_c00306{bottom:474.880000pt;}
.y3d_c00306{bottom:475.520000pt;}
.y3b_c00306{bottom:510.080000pt;}
.y39_c00306{bottom:510.720000pt;}
.y38_c00306{bottom:512.000000pt;}
.y3a_c00306{bottom:548.480000pt;}
.y37_c00306{bottom:549.760000pt;}
.y36_c00306{bottom:551.680000pt;}
.y35_c00306{bottom:552.320000pt;}
.y26_c00306{bottom:587.520000pt;}
.y25_c00306{bottom:588.160000pt;}
.y34_c00306{bottom:590.080000pt;}
.y24_c00306{bottom:625.280000pt;}
.y33_c00306{bottom:625.920000pt;}
.y23_c00306{bottom:626.560000pt;}
.y22_c00306{bottom:663.680000pt;}
.y32_c00306{bottom:664.960000pt;}
.y20_c00306{bottom:665.600000pt;}
.y31_c00306{bottom:666.240000pt;}
.y21_c00306{bottom:667.520000pt;}
.y1f_c00306{bottom:702.080000pt;}
.y1c_c00306{bottom:702.720000pt;}
.y1e_c00306{bottom:703.360000pt;}
.y1b_c00306{bottom:704.000000pt;}
.y30_c00306{bottom:704.640000pt;}
.y1d_c00306{bottom:705.280000pt;}
.y1a_c00306{bottom:739.840000pt;}
.y19_c00306{bottom:740.480000pt;}
.y2f_c00306{bottom:741.120000pt;}
.y16_c00306{bottom:741.760000pt;}
.y17_c00306{bottom:743.680000pt;}
.y18_c00306{bottom:744.320000pt;}
.y15_c00306{bottom:778.240000pt;}
.y14_c00306{bottom:778.880000pt;}
.y12_c00306{bottom:779.520000pt;}
.y13_c00306{bottom:780.160000pt;}
.y2e_c00306{bottom:780.800000pt;}
.y11_c00306{bottom:816.640000pt;}
.y2c_c00306{bottom:817.280000pt;}
.ye_c00306{bottom:817.920000pt;}
.y2d_c00306{bottom:819.200000pt;}
.y10_c00306{bottom:819.840000pt;}
.yf_c00306{bottom:820.480000pt;}
.yd_c00306{bottom:855.040000pt;}
.ya_c00306{bottom:855.680000pt;}
.yb_c00306{bottom:856.320000pt;}
.y2b_c00306{bottom:856.960000pt;}
.y2a_c00306{bottom:857.600000pt;}
.yc_c00306{bottom:858.240000pt;}
.y8_c00306{bottom:892.160000pt;}
.y29_c00306{bottom:893.440000pt;}
.y6_c00306{bottom:894.080000pt;}
.y7_c00306{bottom:894.720000pt;}
.y9_c00306{bottom:896.000000pt;}
.y4_c00306{bottom:930.560000pt;}
.y5_c00306{bottom:931.840000pt;}
.y1_c00306{bottom:932.480000pt;}
.y2_c00306{bottom:933.120000pt;}
.y28_c00306{bottom:933.760000pt;}
.y3_c00306{bottom:934.400000pt;}
.y27_c00306{bottom:965.760000pt;}
.hf_c00306{height:27.645000pt;}
.hd_c00306{height:32.252500pt;}
.h10_c00306{height:36.860000pt;}
.h3_c00306{height:39.163750pt;}
.h4_c00306{height:41.467500pt;}
.hb_c00306{height:43.771250pt;}
.h7_c00306{height:46.075000pt;}
.h2_c00306{height:48.378750pt;}
.h8_c00306{height:50.682500pt;}
.hc_c00306{height:52.986250pt;}
.ha_c00306{height:55.290000pt;}
.h9_c00306{height:57.593750pt;}
.h6_c00306{height:59.897500pt;}
.h5_c00306{height:62.201250pt;}
.he_c00306{height:82.935000pt;}
.h1_c00306{height:1022.000000pt;}
.h0_c00306{height:1022.080000pt;}
.w0_c00306{width:689.280000pt;}
.w1_c00306{width:689.333333pt;}
.x0_c00306{left:0.000000pt;}
.x1_c00306{left:58.880000pt;}
.x24_c00306{left:60.160000pt;}
.x26_c00306{left:61.440000pt;}
.x16_c00306{left:123.520000pt;}
.x2_c00306{left:124.800000pt;}
.x15_c00306{left:154.880000pt;}
.xd_c00306{left:161.920000pt;}
.x8_c00306{left:163.840000pt;}
.x3_c00306{left:171.520000pt;}
.xb_c00306{left:172.800000pt;}
.xe_c00306{left:202.240000pt;}
.x10_c00306{left:210.560000pt;}
.x4_c00306{left:211.840000pt;}
.xc_c00306{left:221.440000pt;}
.x25_c00306{left:240.000000pt;}
.x11_c00306{left:250.240000pt;}
.x5_c00306{left:259.840000pt;}
.x27_c00306{left:287.360000pt;}
.x9_c00306{left:297.600000pt;}
.x12_c00306{left:327.040000pt;}
.x6_c00306{left:335.360000pt;}
.xf_c00306{left:336.640000pt;}
.xa_c00306{left:346.240000pt;}
.x14_c00306{left:373.760000pt;}
.x20_c00306{left:375.040000pt;}
.x13_c00306{left:412.160000pt;}
.x7_c00306{left:413.440000pt;}
.x28_c00306{left:421.760000pt;}
.x21_c00306{left:451.200000pt;}
.x23_c00306{left:460.800000pt;}
.x2d_c00306{left:498.560000pt;}
.x1e_c00306{left:499.840000pt;}
.x1f_c00306{left:518.400000pt;}
.x1d_c00306{left:526.720000pt;}
.x22_c00306{left:528.000000pt;}
.x2e_c00306{left:545.920000pt;}
.x29_c00306{left:547.200000pt;}
.x18_c00306{left:548.480000pt;}
.x2a_c00306{left:576.000000pt;}
.x19_c00306{left:577.280000pt;}
.x17_c00306{left:595.840000pt;}
.x2b_c00306{left:604.800000pt;}
.x1c_c00306{left:606.080000pt;}
.x1a_c00306{left:614.400000pt;}
.x2c_c00306{left:631.680000pt;}
.x1b_c00306{left:632.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_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_3a077235986b84859972ee1e.woff2')format("woff");}.ff1_c00307{font-family:ff1_c00307;line-height:1.109863;font-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_c00307{transform:matrix(0.208975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208975,0.000000,0.000000,0.250000,0,0);}
.m6_c00307{transform:matrix(0.230200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230200,0.000000,0.000000,0.250000,0,0);}
.m27_c00307{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m37_c00307{transform:matrix(0.241600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241600,0.000000,0.000000,0.250000,0,0);}
.m3f_c00307{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m2_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);}
.m30_c00307{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00307{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.md_c00307{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m8_c00307{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m23_c00307{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);}
.m31_c00307{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m9_c00307{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m26_c00307{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m16_c00307{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mf_c00307{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00307{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);}
.m38_c00307{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.ma_c00307{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m5_c00307{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mc_c00307{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m19_c00307{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m40_c00307{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m4_c00307{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m11_c00307{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00307{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m29_c00307{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m22_c00307{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00307{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m25_c00307{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mb_c00307{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00307{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m0_c00307{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);}
.m4a_c00307{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.me_c00307{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);}
.m33_c00307{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m17_c00307{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);}
.m52_c00307{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);}
.m20_c00307{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m43_c00307{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);}
.m2a_c00307{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00307{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m10_c00307{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00307{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m1_c00307{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m18_c00307{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00307{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);}
.m41_c00307{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);}
.m46_c00307{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m13_c00307{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00307{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);}
.m4f_c00307{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m51_c00307{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m42_c00307{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m35_c00307{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00307{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m24_c00307{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00307{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m32_c00307{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m50_c00307{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);}
.m3d_c00307{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);}
.m3c_c00307{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m47_c00307{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m28_c00307{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00307{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);}
.m15_c00307{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m36_c00307{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m48_c00307{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);}
.m45_c00307{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m7_c00307{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00307{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);}
.m49_c00307{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m3_c00307{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m12_c00307{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m14_c00307{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00307{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m34_c00307{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);}
.m21_c00307{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00307{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00307{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);}
.m4d_c00307{transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);}
.m39_c00307{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00307{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.v1_c00307{vertical-align:-2.880000px;}
.v0_c00307{vertical-align:0.000000px;}
.ls1_c00307{letter-spacing:0.000000px;}
.ls0_c00307{letter-spacing:83.257680px;}
.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;}
}
.ws2_c00307{word-spacing:0.000000px;}
.ws1_c00307{word-spacing:17.731094px;}
.ws0_c00307{word-spacing:58.828487px;}
.fc0_c00307{color:transparent;}
.fsc_c00307{font-size:34.560000px;}
.fsb_c00307{font-size:37.440000px;}
.fsa_c00307{font-size:40.320000px;}
.fse_c00307{font-size:43.200000px;}
.fs7_c00307{font-size:46.080000px;}
.fs8_c00307{font-size:48.960000px;}
.fs3_c00307{font-size:51.840000px;}
.fs5_c00307{font-size:54.720000px;}
.fs4_c00307{font-size:57.600000px;}
.fs1_c00307{font-size:60.480000px;}
.fs9_c00307{font-size:63.360000px;}
.fsd_c00307{font-size:66.240000px;}
.fs6_c00307{font-size:69.120000px;}
.fs2_c00307{font-size:72.000000px;}
.fs0_c00307{font-size:74.880000px;}
.fsf_c00307{font-size:77.760000px;}
.fs10_c00307{font-size:100.800000px;}
.y0_c00307{bottom:0.000000px;}
.y83_c00307{bottom:38.160000px;}
.y84_c00307{bottom:41.040000px;}
.y85_c00307{bottom:41.760000px;}
.y82_c00307{bottom:42.480000px;}
.y7e_c00307{bottom:81.360000px;}
.y7f_c00307{bottom:84.240000px;}
.y81_c00307{bottom:84.960000px;}
.y7d_c00307{bottom:85.680000px;}
.y80_c00307{bottom:86.400000px;}
.y7a_c00307{bottom:123.840000px;}
.y7b_c00307{bottom:127.440000px;}
.y79_c00307{bottom:128.160000px;}
.y7c_c00307{bottom:129.600000px;}
.y75_c00307{bottom:168.480000px;}
.y76_c00307{bottom:169.200000px;}
.y77_c00307{bottom:170.640000px;}
.y73_c00307{bottom:171.360000px;}
.y74_c00307{bottom:172.080000px;}
.y78_c00307{bottom:172.800000px;}
.y70_c00307{bottom:211.680000px;}
.y72_c00307{bottom:213.840000px;}
.y71_c00307{bottom:214.560000px;}
.y69_c00307{bottom:242.640000px;}
.y6d_c00307{bottom:243.360000px;}
.y6b_c00307{bottom:244.080000px;}
.y6a_c00307{bottom:244.800000px;}
.y68_c00307{bottom:246.240000px;}
.y6c_c00307{bottom:246.960000px;}
.y6f_c00307{bottom:248.400000px;}
.y6e_c00307{bottom:249.120000px;}
.y63_c00307{bottom:285.840000px;}
.y64_c00307{bottom:287.280000px;}
.y65_c00307{bottom:288.720000px;}
.y61_c00307{bottom:290.160000px;}
.y62_c00307{bottom:290.880000px;}
.y66_c00307{bottom:291.600000px;}
.y67_c00307{bottom:292.320000px;}
.y5e_c00307{bottom:330.480000px;}
.y5c_c00307{bottom:331.200000px;}
.y60_c00307{bottom:331.920000px;}
.y5b_c00307{bottom:332.640000px;}
.y5d_c00307{bottom:333.360000px;}
.y5f_c00307{bottom:334.080000px;}
.y58_c00307{bottom:372.960000px;}
.y55_c00307{bottom:374.400000px;}
.y59_c00307{bottom:375.120000px;}
.y54_c00307{bottom:375.840000px;}
.y57_c00307{bottom:376.560000px;}
.y56_c00307{bottom:377.280000px;}
.y5a_c00307{bottom:378.000000px;}
.y52_c00307{bottom:415.440000px;}
.y53_c00307{bottom:416.880000px;}
.y50_c00307{bottom:418.320000px;}
.y51_c00307{bottom:419.760000px;}
.y4d_c00307{bottom:458.640000px;}
.y4f_c00307{bottom:460.800000px;}
.y4b_c00307{bottom:462.240000px;}
.y4c_c00307{bottom:462.960000px;}
.y4e_c00307{bottom:463.680000px;}
.y47_c00307{bottom:501.840000px;}
.y48_c00307{bottom:503.280000px;}
.y45_c00307{bottom:504.000000px;}
.y49_c00307{bottom:504.720000px;}
.y4a_c00307{bottom:505.440000px;}
.y46_c00307{bottom:506.160000px;}
.y43_c00307{bottom:544.320000px;}
.y44_c00307{bottom:546.480000px;}
.y40_c00307{bottom:547.200000px;}
.y42_c00307{bottom:548.640000px;}
.y41_c00307{bottom:549.360000px;}
.y3d_c00307{bottom:581.760000px;}
.y3a_c00307{bottom:588.240000px;}
.y39_c00307{bottom:589.680000px;}
.y3f_c00307{bottom:590.400000px;}
.y3c_c00307{bottom:591.840000px;}
.y3b_c00307{bottom:592.560000px;}
.y3e_c00307{bottom:593.280000px;}
.y36_c00307{bottom:630.720000px;}
.y37_c00307{bottom:632.160000px;}
.y33_c00307{bottom:632.880000px;}
.y38_c00307{bottom:633.600000px;}
.y35_c00307{bottom:635.040000px;}
.y34_c00307{bottom:635.760000px;}
.y31_c00307{bottom:673.920000px;}
.y32_c00307{bottom:674.640000px;}
.y2e_c00307{bottom:675.360000px;}
.y30_c00307{bottom:677.520000px;}
.y2f_c00307{bottom:678.240000px;}
.y2c_c00307{bottom:717.120000px;}
.y2a_c00307{bottom:717.840000px;}
.y2d_c00307{bottom:719.280000px;}
.y2b_c00307{bottom:720.720000px;}
.y25_c00307{bottom:759.600000px;}
.y29_c00307{bottom:760.320000px;}
.y23_c00307{bottom:761.040000px;}
.y28_c00307{bottom:761.760000px;}
.y27_c00307{bottom:763.200000px;}
.y24_c00307{bottom:763.920000px;}
.y26_c00307{bottom:764.640000px;}
.y1f_c00307{bottom:802.800000px;}
.y21_c00307{bottom:803.520000px;}
.y1e_c00307{bottom:804.240000px;}
.y20_c00307{bottom:804.960000px;}
.y22_c00307{bottom:806.400000px;}
.y1a_c00307{bottom:846.000000px;}
.y19_c00307{bottom:846.720000px;}
.y1b_c00307{bottom:847.440000px;}
.y1c_c00307{bottom:849.600000px;}
.y1d_c00307{bottom:850.320000px;}
.y16_c00307{bottom:888.480000px;}
.y15_c00307{bottom:889.920000px;}
.y13_c00307{bottom:890.640000px;}
.y17_c00307{bottom:892.080000px;}
.y14_c00307{bottom:892.800000px;}
.y18_c00307{bottom:893.520000px;}
.y11_c00307{bottom:933.840000px;}
.y12_c00307{bottom:936.000000px;}
.ye_c00307{bottom:964.080000px;}
.yc_c00307{bottom:964.800000px;}
.yb_c00307{bottom:965.520000px;}
.y10_c00307{bottom:966.240000px;}
.yd_c00307{bottom:967.680000px;}
.yf_c00307{bottom:968.400000px;}
.y6_c00307{bottom:1007.280000px;}
.y5_c00307{bottom:1008.720000px;}
.ya_c00307{bottom:1009.440000px;}
.y7_c00307{bottom:1010.880000px;}
.y3_c00307{bottom:1051.200000px;}
.y2_c00307{bottom:1052.640000px;}
.y8_c00307{bottom:1053.360000px;}
.y9_c00307{bottom:1054.080000px;}
.y4_c00307{bottom:1054.800000px;}
.y1_c00307{bottom:1100.880000px;}
.he_c00307{height:31.100625px;}
.hd_c00307{height:33.692344px;}
.hc_c00307{height:36.284062px;}
.h10_c00307{height:38.875781px;}
.h9_c00307{height:41.467500px;}
.ha_c00307{height:44.059219px;}
.h5_c00307{height:46.650937px;}
.h7_c00307{height:49.242656px;}
.h6_c00307{height:51.834375px;}
.h3_c00307{height:54.426094px;}
.hb_c00307{height:57.017812px;}
.hf_c00307{height:59.609531px;}
.h8_c00307{height:62.201250px;}
.h4_c00307{height:64.792969px;}
.h2_c00307{height:67.384687px;}
.h11_c00307{height:69.976406px;}
.h12_c00307{height:90.710156px;}
.h1_c00307{height:1144.500000px;}
.h0_c00307{height:1144.800000px;}
.w1_c00307{width:767.250000px;}
.w0_c00307{width:767.520000px;}
.x0_c00307{left:0.000000px;}
.x2_c00307{left:54.000000px;}
.x19_c00307{left:55.440000px;}
.x20_c00307{left:56.880000px;}
.x2b_c00307{left:58.320000px;}
.x30_c00307{left:60.480000px;}
.x3_c00307{left:127.440000px;}
.x1a_c00307{left:128.880000px;}
.x1b_c00307{left:160.560000px;}
.x13_c00307{left:172.800000px;}
.x11_c00307{left:182.880000px;}
.x1d_c00307{left:205.200000px;}
.x4_c00307{left:215.280000px;}
.x7_c00307{left:226.800000px;}
.x2d_c00307{left:236.880000px;}
.x12_c00307{left:247.680000px;}
.x5_c00307{left:270.000000px;}
.x8_c00307{left:280.800000px;}
.x1e_c00307{left:290.160000px;}
.x2e_c00307{left:302.400000px;}
.x21_c00307{left:324.000000px;}
.x15_c00307{left:333.360000px;}
.xf_c00307{left:345.600000px;}
.x1c_c00307{left:356.400000px;}
.x22_c00307{left:367.200000px;}
.x16_c00307{left:378.000000px;}
.x6_c00307{left:399.600000px;}
.x28_c00307{left:409.680000px;}
.x23_c00307{left:421.200000px;}
.x14_c00307{left:442.800000px;}
.x29_c00307{left:463.680000px;}
.x1f_c00307{left:494.640000px;}
.x10_c00307{left:496.800000px;}
.x24_c00307{left:506.880000px;}
.x2c_c00307{left:516.960000px;}
.x2a_c00307{left:528.480000px;}
.x25_c00307{left:540.720000px;}
.x9_c00307{left:550.800000px;}
.xd_c00307{left:571.680000px;}
.x2f_c00307{left:581.760000px;}
.x26_c00307{left:595.440000px;}
.xa_c00307{left:604.800000px;}
.x27_c00307{left:627.840000px;}
.xb_c00307{left:637.920000px;}
.xe_c00307{left:648.000000px;}
.x1_c00307{left:676.080000px;}
.x17_c00307{left:678.960000px;}
.xc_c00307{left:680.400000px;}
.x18_c00307{left:699.840000px;}
@media print{
.v1_c00307{vertical-align:-2.560000pt;}
.v0_c00307{vertical-align:0.000000pt;}
.ls1_c00307{letter-spacing:0.000000pt;}
.ls0_c00307{letter-spacing:74.006827pt;}
.ws2_c00307{word-spacing:0.000000pt;}
.ws1_c00307{word-spacing:15.760973pt;}
.ws0_c00307{word-spacing:52.291988pt;}
.fsc_c00307{font-size:30.720000pt;}
.fsb_c00307{font-size:33.280000pt;}
.fsa_c00307{font-size:35.840000pt;}
.fse_c00307{font-size:38.400000pt;}
.fs7_c00307{font-size:40.960000pt;}
.fs8_c00307{font-size:43.520000pt;}
.fs3_c00307{font-size:46.080000pt;}
.fs5_c00307{font-size:48.640000pt;}
.fs4_c00307{font-size:51.200000pt;}
.fs1_c00307{font-size:53.760000pt;}
.fs9_c00307{font-size:56.320000pt;}
.fsd_c00307{font-size:58.880000pt;}
.fs6_c00307{font-size:61.440000pt;}
.fs2_c00307{font-size:64.000000pt;}
.fs0_c00307{font-size:66.560000pt;}
.fsf_c00307{font-size:69.120000pt;}
.fs10_c00307{font-size:89.600000pt;}
.y0_c00307{bottom:0.000000pt;}
.y83_c00307{bottom:33.920000pt;}
.y84_c00307{bottom:36.480000pt;}
.y85_c00307{bottom:37.120000pt;}
.y82_c00307{bottom:37.760000pt;}
.y7e_c00307{bottom:72.320000pt;}
.y7f_c00307{bottom:74.880000pt;}
.y81_c00307{bottom:75.520000pt;}
.y7d_c00307{bottom:76.160000pt;}
.y80_c00307{bottom:76.800000pt;}
.y7a_c00307{bottom:110.080000pt;}
.y7b_c00307{bottom:113.280000pt;}
.y79_c00307{bottom:113.920000pt;}
.y7c_c00307{bottom:115.200000pt;}
.y75_c00307{bottom:149.760000pt;}
.y76_c00307{bottom:150.400000pt;}
.y77_c00307{bottom:151.680000pt;}
.y73_c00307{bottom:152.320000pt;}
.y74_c00307{bottom:152.960000pt;}
.y78_c00307{bottom:153.600000pt;}
.y70_c00307{bottom:188.160000pt;}
.y72_c00307{bottom:190.080000pt;}
.y71_c00307{bottom:190.720000pt;}
.y69_c00307{bottom:215.680000pt;}
.y6d_c00307{bottom:216.320000pt;}
.y6b_c00307{bottom:216.960000pt;}
.y6a_c00307{bottom:217.600000pt;}
.y68_c00307{bottom:218.880000pt;}
.y6c_c00307{bottom:219.520000pt;}
.y6f_c00307{bottom:220.800000pt;}
.y6e_c00307{bottom:221.440000pt;}
.y63_c00307{bottom:254.080000pt;}
.y64_c00307{bottom:255.360000pt;}
.y65_c00307{bottom:256.640000pt;}
.y61_c00307{bottom:257.920000pt;}
.y62_c00307{bottom:258.560000pt;}
.y66_c00307{bottom:259.200000pt;}
.y67_c00307{bottom:259.840000pt;}
.y5e_c00307{bottom:293.760000pt;}
.y5c_c00307{bottom:294.400000pt;}
.y60_c00307{bottom:295.040000pt;}
.y5b_c00307{bottom:295.680000pt;}
.y5d_c00307{bottom:296.320000pt;}
.y5f_c00307{bottom:296.960000pt;}
.y58_c00307{bottom:331.520000pt;}
.y55_c00307{bottom:332.800000pt;}
.y59_c00307{bottom:333.440000pt;}
.y54_c00307{bottom:334.080000pt;}
.y57_c00307{bottom:334.720000pt;}
.y56_c00307{bottom:335.360000pt;}
.y5a_c00307{bottom:336.000000pt;}
.y52_c00307{bottom:369.280000pt;}
.y53_c00307{bottom:370.560000pt;}
.y50_c00307{bottom:371.840000pt;}
.y51_c00307{bottom:373.120000pt;}
.y4d_c00307{bottom:407.680000pt;}
.y4f_c00307{bottom:409.600000pt;}
.y4b_c00307{bottom:410.880000pt;}
.y4c_c00307{bottom:411.520000pt;}
.y4e_c00307{bottom:412.160000pt;}
.y47_c00307{bottom:446.080000pt;}
.y48_c00307{bottom:447.360000pt;}
.y45_c00307{bottom:448.000000pt;}
.y49_c00307{bottom:448.640000pt;}
.y4a_c00307{bottom:449.280000pt;}
.y46_c00307{bottom:449.920000pt;}
.y43_c00307{bottom:483.840000pt;}
.y44_c00307{bottom:485.760000pt;}
.y40_c00307{bottom:486.400000pt;}
.y42_c00307{bottom:487.680000pt;}
.y41_c00307{bottom:488.320000pt;}
.y3d_c00307{bottom:517.120000pt;}
.y3a_c00307{bottom:522.880000pt;}
.y39_c00307{bottom:524.160000pt;}
.y3f_c00307{bottom:524.800000pt;}
.y3c_c00307{bottom:526.080000pt;}
.y3b_c00307{bottom:526.720000pt;}
.y3e_c00307{bottom:527.360000pt;}
.y36_c00307{bottom:560.640000pt;}
.y37_c00307{bottom:561.920000pt;}
.y33_c00307{bottom:562.560000pt;}
.y38_c00307{bottom:563.200000pt;}
.y35_c00307{bottom:564.480000pt;}
.y34_c00307{bottom:565.120000pt;}
.y31_c00307{bottom:599.040000pt;}
.y32_c00307{bottom:599.680000pt;}
.y2e_c00307{bottom:600.320000pt;}
.y30_c00307{bottom:602.240000pt;}
.y2f_c00307{bottom:602.880000pt;}
.y2c_c00307{bottom:637.440000pt;}
.y2a_c00307{bottom:638.080000pt;}
.y2d_c00307{bottom:639.360000pt;}
.y2b_c00307{bottom:640.640000pt;}
.y25_c00307{bottom:675.200000pt;}
.y29_c00307{bottom:675.840000pt;}
.y23_c00307{bottom:676.480000pt;}
.y28_c00307{bottom:677.120000pt;}
.y27_c00307{bottom:678.400000pt;}
.y24_c00307{bottom:679.040000pt;}
.y26_c00307{bottom:679.680000pt;}
.y1f_c00307{bottom:713.600000pt;}
.y21_c00307{bottom:714.240000pt;}
.y1e_c00307{bottom:714.880000pt;}
.y20_c00307{bottom:715.520000pt;}
.y22_c00307{bottom:716.800000pt;}
.y1a_c00307{bottom:752.000000pt;}
.y19_c00307{bottom:752.640000pt;}
.y1b_c00307{bottom:753.280000pt;}
.y1c_c00307{bottom:755.200000pt;}
.y1d_c00307{bottom:755.840000pt;}
.y16_c00307{bottom:789.760000pt;}
.y15_c00307{bottom:791.040000pt;}
.y13_c00307{bottom:791.680000pt;}
.y17_c00307{bottom:792.960000pt;}
.y14_c00307{bottom:793.600000pt;}
.y18_c00307{bottom:794.240000pt;}
.y11_c00307{bottom:830.080000pt;}
.y12_c00307{bottom:832.000000pt;}
.ye_c00307{bottom:856.960000pt;}
.yc_c00307{bottom:857.600000pt;}
.yb_c00307{bottom:858.240000pt;}
.y10_c00307{bottom:858.880000pt;}
.yd_c00307{bottom:860.160000pt;}
.yf_c00307{bottom:860.800000pt;}
.y6_c00307{bottom:895.360000pt;}
.y5_c00307{bottom:896.640000pt;}
.ya_c00307{bottom:897.280000pt;}
.y7_c00307{bottom:898.560000pt;}
.y3_c00307{bottom:934.400000pt;}
.y2_c00307{bottom:935.680000pt;}
.y8_c00307{bottom:936.320000pt;}
.y9_c00307{bottom:936.960000pt;}
.y4_c00307{bottom:937.600000pt;}
.y1_c00307{bottom:978.560000pt;}
.he_c00307{height:27.645000pt;}
.hd_c00307{height:29.948750pt;}
.hc_c00307{height:32.252500pt;}
.h10_c00307{height:34.556250pt;}
.h9_c00307{height:36.860000pt;}
.ha_c00307{height:39.163750pt;}
.h5_c00307{height:41.467500pt;}
.h7_c00307{height:43.771250pt;}
.h6_c00307{height:46.075000pt;}
.h3_c00307{height:48.378750pt;}
.hb_c00307{height:50.682500pt;}
.hf_c00307{height:52.986250pt;}
.h8_c00307{height:55.290000pt;}
.h4_c00307{height:57.593750pt;}
.h2_c00307{height:59.897500pt;}
.h11_c00307{height:62.201250pt;}
.h12_c00307{height:80.631250pt;}
.h1_c00307{height:1017.333333pt;}
.h0_c00307{height:1017.600000pt;}
.w1_c00307{width:682.000000pt;}
.w0_c00307{width:682.240000pt;}
.x0_c00307{left:0.000000pt;}
.x2_c00307{left:48.000000pt;}
.x19_c00307{left:49.280000pt;}
.x20_c00307{left:50.560000pt;}
.x2b_c00307{left:51.840000pt;}
.x30_c00307{left:53.760000pt;}
.x3_c00307{left:113.280000pt;}
.x1a_c00307{left:114.560000pt;}
.x1b_c00307{left:142.720000pt;}
.x13_c00307{left:153.600000pt;}
.x11_c00307{left:162.560000pt;}
.x1d_c00307{left:182.400000pt;}
.x4_c00307{left:191.360000pt;}
.x7_c00307{left:201.600000pt;}
.x2d_c00307{left:210.560000pt;}
.x12_c00307{left:220.160000pt;}
.x5_c00307{left:240.000000pt;}
.x8_c00307{left:249.600000pt;}
.x1e_c00307{left:257.920000pt;}
.x2e_c00307{left:268.800000pt;}
.x21_c00307{left:288.000000pt;}
.x15_c00307{left:296.320000pt;}
.xf_c00307{left:307.200000pt;}
.x1c_c00307{left:316.800000pt;}
.x22_c00307{left:326.400000pt;}
.x16_c00307{left:336.000000pt;}
.x6_c00307{left:355.200000pt;}
.x28_c00307{left:364.160000pt;}
.x23_c00307{left:374.400000pt;}
.x14_c00307{left:393.600000pt;}
.x29_c00307{left:412.160000pt;}
.x1f_c00307{left:439.680000pt;}
.x10_c00307{left:441.600000pt;}
.x24_c00307{left:450.560000pt;}
.x2c_c00307{left:459.520000pt;}
.x2a_c00307{left:469.760000pt;}
.x25_c00307{left:480.640000pt;}
.x9_c00307{left:489.600000pt;}
.xd_c00307{left:508.160000pt;}
.x2f_c00307{left:517.120000pt;}
.x26_c00307{left:529.280000pt;}
.xa_c00307{left:537.600000pt;}
.x27_c00307{left:558.080000pt;}
.xb_c00307{left:567.040000pt;}
.xe_c00307{left:576.000000pt;}
.x1_c00307{left:600.960000pt;}
.x17_c00307{left:603.520000pt;}
.xc_c00307{left:604.800000pt;}
.x18_c00307{left:622.080000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d27642c5d21d29123b076881.woff2')format("woff");}.ff1_c00308{font-family:ff1_c00308;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m30_c00308{transform:matrix(0.195075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195075,0.000000,0.000000,0.250000,0,0);}
.m3d_c00308{transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);}
.m2d_c00308{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m13_c00308{transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);}
.m41_c00308{transform:matrix(0.234075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234075,0.000000,0.000000,0.250000,0,0);}
.m49_c00308{transform:matrix(0.234200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234200,0.000000,0.000000,0.250000,0,0);}
.m3e_c00308{transform:matrix(0.241175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241175,0.000000,0.000000,0.250000,0,0);}
.m47_c00308{transform:matrix(0.243775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243775,0.000000,0.000000,0.250000,0,0);}
.md_c00308{transform:matrix(0.244925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244925,0.000000,0.000000,0.250000,0,0);}
.m45_c00308{transform:matrix(0.245400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245400,0.000000,0.000000,0.250000,0,0);}
.m23_c00308{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);}
.m35_c00308{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m38_c00308{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m14_c00308{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m26_c00308{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m19_c00308{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m25_c00308{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m4_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);}
.m39_c00308{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m37_c00308{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);}
.m42_c00308{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1_c00308{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00308{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m33_c00308{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m43_c00308{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m34_c00308{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m18_c00308{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00308{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m2_c00308{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m27_c00308{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m0_c00308{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m48_c00308{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m21_c00308{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m28_c00308{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m36_c00308{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m8_c00308{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mc_c00308{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00308{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m6_c00308{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m9_c00308{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00308{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.mb_c00308{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m3_c00308{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m32_c00308{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m22_c00308{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00308{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);}
.me_c00308{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);}
.m40_c00308{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);}
.m20_c00308{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);}
.m2b_c00308{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);}
.m10_c00308{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00308{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m44_c00308{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);}
.m1d_c00308{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);}
.m15_c00308{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m12_c00308{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m17_c00308{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.mf_c00308{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00308{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);}
.ma_c00308{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m46_c00308{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00308{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);}
.m7_c00308{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00308{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m29_c00308{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);}
.m2a_c00308{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m11_c00308{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);}
.m24_c00308{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);}
.m2e_c00308{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00308{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m16_c00308{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);}
.m5_c00308{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m31_c00308{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00308{transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);}
.v0_c00308{vertical-align:0.000000px;}
.v1_c00308{vertical-align:2.880000px;}
.ls0_c00308{letter-spacing:0.000000px;}
.sc__c00308{text-shadow:none;}
.sc0_c00308{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00308{-webkit-text-stroke:0px transparent;}
.sc0_c00308{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00308{word-spacing:0.000000px;}
.ws0_c00308{word-spacing:5.210880px;}
.fc0_c00308{color:transparent;}
.fs5_c00308{font-size:46.080000px;}
.fs4_c00308{font-size:48.960000px;}
.fs8_c00308{font-size:51.840000px;}
.fsb_c00308{font-size:54.720000px;}
.fs7_c00308{font-size:57.600000px;}
.fs3_c00308{font-size:60.480000px;}
.fsa_c00308{font-size:63.360000px;}
.fs6_c00308{font-size:66.240000px;}
.fs0_c00308{font-size:69.120000px;}
.fs1_c00308{font-size:72.000000px;}
.fs2_c00308{font-size:74.880000px;}
.fs9_c00308{font-size:77.760000px;}
.y0_c00308{bottom:0.000000px;}
.y65_c00308{bottom:91.440000px;}
.y67_c00308{bottom:92.160000px;}
.y66_c00308{bottom:92.880000px;}
.y6f_c00308{bottom:93.600000px;}
.y64_c00308{bottom:95.760000px;}
.y70_c00308{bottom:96.480000px;}
.y63_c00308{bottom:133.920000px;}
.y6c_c00308{bottom:136.800000px;}
.y6d_c00308{bottom:137.520000px;}
.y62_c00308{bottom:138.960000px;}
.y6e_c00308{bottom:140.400000px;}
.y61_c00308{bottom:177.840000px;}
.y60_c00308{bottom:180.720000px;}
.y6b_c00308{bottom:181.440000px;}
.y5f_c00308{bottom:182.160000px;}
.y5c_c00308{bottom:221.760000px;}
.y5e_c00308{bottom:222.480000px;}
.y5d_c00308{bottom:223.200000px;}
.y69_c00308{bottom:223.920000px;}
.y5b_c00308{bottom:225.360000px;}
.y68_c00308{bottom:226.080000px;}
.y6a_c00308{bottom:226.800000px;}
.y56_c00308{bottom:264.240000px;}
.y5a_c00308{bottom:265.680000px;}
.y59_c00308{bottom:266.400000px;}
.y57_c00308{bottom:267.840000px;}
.y58_c00308{bottom:268.560000px;}
.y55_c00308{bottom:269.280000px;}
.y3c_c00308{bottom:307.440000px;}
.y3e_c00308{bottom:308.880000px;}
.y53_c00308{bottom:310.320000px;}
.y3d_c00308{bottom:311.040000px;}
.y3b_c00308{bottom:311.760000px;}
.y54_c00308{bottom:312.480000px;}
.y3a_c00308{bottom:350.640000px;}
.y52_c00308{bottom:353.520000px;}
.y38_c00308{bottom:354.960000px;}
.y39_c00308{bottom:355.680000px;}
.y36_c00308{bottom:394.560000px;}
.y37_c00308{bottom:397.440000px;}
.y33_c00308{bottom:426.240000px;}
.y34_c00308{bottom:427.680000px;}
.y32_c00308{bottom:429.840000px;}
.y35_c00308{bottom:430.560000px;}
.y31_c00308{bottom:468.720000px;}
.y2e_c00308{bottom:469.440000px;}
.y51_c00308{bottom:470.160000px;}
.y30_c00308{bottom:470.880000px;}
.y50_c00308{bottom:471.600000px;}
.y2d_c00308{bottom:472.320000px;}
.y4f_c00308{bottom:473.040000px;}
.y2f_c00308{bottom:473.760000px;}
.y2c_c00308{bottom:511.920000px;}
.y4d_c00308{bottom:513.360000px;}
.y4e_c00308{bottom:514.800000px;}
.y2a_c00308{bottom:515.520000px;}
.y2b_c00308{bottom:516.960000px;}
.y29_c00308{bottom:555.840000px;}
.y4c_c00308{bottom:557.280000px;}
.y26_c00308{bottom:558.000000px;}
.y28_c00308{bottom:559.440000px;}
.y27_c00308{bottom:560.880000px;}
.y25_c00308{bottom:599.040000px;}
.y4a_c00308{bottom:600.480000px;}
.y22_c00308{bottom:601.200000px;}
.y4b_c00308{bottom:602.640000px;}
.y23_c00308{bottom:603.360000px;}
.y24_c00308{bottom:604.080000px;}
.y21_c00308{bottom:642.960000px;}
.y48_c00308{bottom:643.680000px;}
.y20_c00308{bottom:644.400000px;}
.y49_c00308{bottom:645.840000px;}
.y1e_c00308{bottom:688.320000px;}
.y1f_c00308{bottom:689.040000px;}
.y1d_c00308{bottom:690.480000px;}
.y1c_c00308{bottom:740.880000px;}
.y1b_c00308{bottom:743.760000px;}
.y1a_c00308{bottom:771.120000px;}
.y17_c00308{bottom:772.560000px;}
.y47_c00308{bottom:773.280000px;}
.y16_c00308{bottom:774.000000px;}
.y18_c00308{bottom:775.440000px;}
.y19_c00308{bottom:776.160000px;}
.y13_c00308{bottom:815.760000px;}
.y46_c00308{bottom:816.480000px;}
.y12_c00308{bottom:817.200000px;}
.y15_c00308{bottom:818.640000px;}
.y14_c00308{bottom:819.360000px;}
.y11_c00308{bottom:857.520000px;}
.y44_c00308{bottom:858.960000px;}
.ye_c00308{bottom:860.400000px;}
.y45_c00308{bottom:861.120000px;}
.y10_c00308{bottom:861.840000px;}
.yf_c00308{bottom:862.560000px;}
.yd_c00308{bottom:901.440000px;}
.y42_c00308{bottom:902.160000px;}
.yb_c00308{bottom:902.880000px;}
.y43_c00308{bottom:905.040000px;}
.yc_c00308{bottom:905.760000px;}
.ya_c00308{bottom:944.640000px;}
.y41_c00308{bottom:945.360000px;}
.y8_c00308{bottom:946.080000px;}
.y9_c00308{bottom:948.960000px;}
.y7_c00308{bottom:987.120000px;}
.y4_c00308{bottom:987.840000px;}
.y6_c00308{bottom:988.560000px;}
.y3_c00308{bottom:989.280000px;}
.y5_c00308{bottom:992.160000px;}
.y40_c00308{bottom:1030.320000px;}
.y2_c00308{bottom:1031.040000px;}
.y1_c00308{bottom:1031.760000px;}
.y3f_c00308{bottom:1078.560000px;}
.h7_c00308{height:41.467500px;}
.h6_c00308{height:44.059219px;}
.ha_c00308{height:46.650937px;}
.hd_c00308{height:49.242656px;}
.h9_c00308{height:51.834375px;}
.h5_c00308{height:54.426094px;}
.hc_c00308{height:57.017812px;}
.h8_c00308{height:59.609531px;}
.h2_c00308{height:62.201250px;}
.he_c00308{height:62.489531px;}
.h3_c00308{height:64.792969px;}
.h4_c00308{height:67.384687px;}
.hb_c00308{height:69.976406px;}
.h1_c00308{height:1146.750000px;}
.h0_c00308{height:1146.960000px;}
.w0_c00308{width:781.200000px;}
.w1_c00308{width:781.500000px;}
.x0_c00308{left:0.000000px;}
.x19_c00308{left:65.520000px;}
.x1_c00308{left:66.960000px;}
.x3a_c00308{left:68.400000px;}
.x15_c00308{left:118.080000px;}
.x1c_c00308{left:138.240000px;}
.x4_c00308{left:139.680000px;}
.x2_c00308{left:141.120000px;}
.x16_c00308{left:151.920000px;}
.x1a_c00308{left:182.160000px;}
.x9_c00308{left:183.600000px;}
.x39_c00308{left:192.240000px;}
.x17_c00308{left:194.400000px;}
.x3_c00308{left:216.000000px;}
.x18_c00308{left:225.360000px;}
.xb_c00308{left:226.800000px;}
.xa_c00308{left:237.600000px;}
.x21_c00308{left:246.240000px;}
.xe_c00308{left:248.400000px;}
.x5_c00308{left:270.000000px;}
.xc_c00308{left:280.800000px;}
.x33_c00308{left:300.240000px;}
.x22_c00308{left:301.680000px;}
.x3b_c00308{left:324.000000px;}
.xd_c00308{left:325.440000px;}
.x6_c00308{left:334.800000px;}
.x12_c00308{left:345.600000px;}
.x38_c00308{left:354.240000px;}
.xf_c00308{left:356.400000px;}
.x23_c00308{left:365.040000px;}
.x1e_c00308{left:366.480000px;}
.x1d_c00308{left:378.000000px;}
.x1b_c00308{left:388.800000px;}
.x34_c00308{left:408.240000px;}
.x10_c00308{left:410.400000px;}
.x24_c00308{left:419.040000px;}
.x1f_c00308{left:421.200000px;}
.x7_c00308{left:454.320000px;}
.x13_c00308{left:464.400000px;}
.x20_c00308{left:474.480000px;}
.x35_c00308{left:495.360000px;}
.x8_c00308{left:509.760000px;}
.x11_c00308{left:529.920000px;}
.x36_c00308{left:538.560000px;}
.x14_c00308{left:562.320000px;}
.x3d_c00308{left:581.760000px;}
.x30_c00308{left:583.200000px;}
.x2f_c00308{left:594.000000px;}
.x26_c00308{left:595.440000px;}
.x3c_c00308{left:614.160000px;}
.x2b_c00308{left:615.600000px;}
.x29_c00308{left:617.040000px;}
.x32_c00308{left:647.280000px;}
.x2d_c00308{left:648.720000px;}
.x27_c00308{left:650.160000px;}
.x25_c00308{left:663.840000px;}
.x3e_c00308{left:679.680000px;}
.x2e_c00308{left:681.120000px;}
.x37_c00308{left:689.040000px;}
.x28_c00308{left:691.200000px;}
.x2c_c00308{left:692.640000px;}
.x31_c00308{left:710.640000px;}
.x2a_c00308{left:712.800000px;}
@media print{
.v0_c00308{vertical-align:0.000000pt;}
.v1_c00308{vertical-align:2.560000pt;}
.ls0_c00308{letter-spacing:0.000000pt;}
.ws1_c00308{word-spacing:0.000000pt;}
.ws0_c00308{word-spacing:4.631893pt;}
.fs5_c00308{font-size:40.960000pt;}
.fs4_c00308{font-size:43.520000pt;}
.fs8_c00308{font-size:46.080000pt;}
.fsb_c00308{font-size:48.640000pt;}
.fs7_c00308{font-size:51.200000pt;}
.fs3_c00308{font-size:53.760000pt;}
.fsa_c00308{font-size:56.320000pt;}
.fs6_c00308{font-size:58.880000pt;}
.fs0_c00308{font-size:61.440000pt;}
.fs1_c00308{font-size:64.000000pt;}
.fs2_c00308{font-size:66.560000pt;}
.fs9_c00308{font-size:69.120000pt;}
.y0_c00308{bottom:0.000000pt;}
.y65_c00308{bottom:81.280000pt;}
.y67_c00308{bottom:81.920000pt;}
.y66_c00308{bottom:82.560000pt;}
.y6f_c00308{bottom:83.200000pt;}
.y64_c00308{bottom:85.120000pt;}
.y70_c00308{bottom:85.760000pt;}
.y63_c00308{bottom:119.040000pt;}
.y6c_c00308{bottom:121.600000pt;}
.y6d_c00308{bottom:122.240000pt;}
.y62_c00308{bottom:123.520000pt;}
.y6e_c00308{bottom:124.800000pt;}
.y61_c00308{bottom:158.080000pt;}
.y60_c00308{bottom:160.640000pt;}
.y6b_c00308{bottom:161.280000pt;}
.y5f_c00308{bottom:161.920000pt;}
.y5c_c00308{bottom:197.120000pt;}
.y5e_c00308{bottom:197.760000pt;}
.y5d_c00308{bottom:198.400000pt;}
.y69_c00308{bottom:199.040000pt;}
.y5b_c00308{bottom:200.320000pt;}
.y68_c00308{bottom:200.960000pt;}
.y6a_c00308{bottom:201.600000pt;}
.y56_c00308{bottom:234.880000pt;}
.y5a_c00308{bottom:236.160000pt;}
.y59_c00308{bottom:236.800000pt;}
.y57_c00308{bottom:238.080000pt;}
.y58_c00308{bottom:238.720000pt;}
.y55_c00308{bottom:239.360000pt;}
.y3c_c00308{bottom:273.280000pt;}
.y3e_c00308{bottom:274.560000pt;}
.y53_c00308{bottom:275.840000pt;}
.y3d_c00308{bottom:276.480000pt;}
.y3b_c00308{bottom:277.120000pt;}
.y54_c00308{bottom:277.760000pt;}
.y3a_c00308{bottom:311.680000pt;}
.y52_c00308{bottom:314.240000pt;}
.y38_c00308{bottom:315.520000pt;}
.y39_c00308{bottom:316.160000pt;}
.y36_c00308{bottom:350.720000pt;}
.y37_c00308{bottom:353.280000pt;}
.y33_c00308{bottom:378.880000pt;}
.y34_c00308{bottom:380.160000pt;}
.y32_c00308{bottom:382.080000pt;}
.y35_c00308{bottom:382.720000pt;}
.y31_c00308{bottom:416.640000pt;}
.y2e_c00308{bottom:417.280000pt;}
.y51_c00308{bottom:417.920000pt;}
.y30_c00308{bottom:418.560000pt;}
.y50_c00308{bottom:419.200000pt;}
.y2d_c00308{bottom:419.840000pt;}
.y4f_c00308{bottom:420.480000pt;}
.y2f_c00308{bottom:421.120000pt;}
.y2c_c00308{bottom:455.040000pt;}
.y4d_c00308{bottom:456.320000pt;}
.y4e_c00308{bottom:457.600000pt;}
.y2a_c00308{bottom:458.240000pt;}
.y2b_c00308{bottom:459.520000pt;}
.y29_c00308{bottom:494.080000pt;}
.y4c_c00308{bottom:495.360000pt;}
.y26_c00308{bottom:496.000000pt;}
.y28_c00308{bottom:497.280000pt;}
.y27_c00308{bottom:498.560000pt;}
.y25_c00308{bottom:532.480000pt;}
.y4a_c00308{bottom:533.760000pt;}
.y22_c00308{bottom:534.400000pt;}
.y4b_c00308{bottom:535.680000pt;}
.y23_c00308{bottom:536.320000pt;}
.y24_c00308{bottom:536.960000pt;}
.y21_c00308{bottom:571.520000pt;}
.y48_c00308{bottom:572.160000pt;}
.y20_c00308{bottom:572.800000pt;}
.y49_c00308{bottom:574.080000pt;}
.y1e_c00308{bottom:611.840000pt;}
.y1f_c00308{bottom:612.480000pt;}
.y1d_c00308{bottom:613.760000pt;}
.y1c_c00308{bottom:658.560000pt;}
.y1b_c00308{bottom:661.120000pt;}
.y1a_c00308{bottom:685.440000pt;}
.y17_c00308{bottom:686.720000pt;}
.y47_c00308{bottom:687.360000pt;}
.y16_c00308{bottom:688.000000pt;}
.y18_c00308{bottom:689.280000pt;}
.y19_c00308{bottom:689.920000pt;}
.y13_c00308{bottom:725.120000pt;}
.y46_c00308{bottom:725.760000pt;}
.y12_c00308{bottom:726.400000pt;}
.y15_c00308{bottom:727.680000pt;}
.y14_c00308{bottom:728.320000pt;}
.y11_c00308{bottom:762.240000pt;}
.y44_c00308{bottom:763.520000pt;}
.ye_c00308{bottom:764.800000pt;}
.y45_c00308{bottom:765.440000pt;}
.y10_c00308{bottom:766.080000pt;}
.yf_c00308{bottom:766.720000pt;}
.yd_c00308{bottom:801.280000pt;}
.y42_c00308{bottom:801.920000pt;}
.yb_c00308{bottom:802.560000pt;}
.y43_c00308{bottom:804.480000pt;}
.yc_c00308{bottom:805.120000pt;}
.ya_c00308{bottom:839.680000pt;}
.y41_c00308{bottom:840.320000pt;}
.y8_c00308{bottom:840.960000pt;}
.y9_c00308{bottom:843.520000pt;}
.y7_c00308{bottom:877.440000pt;}
.y4_c00308{bottom:878.080000pt;}
.y6_c00308{bottom:878.720000pt;}
.y3_c00308{bottom:879.360000pt;}
.y5_c00308{bottom:881.920000pt;}
.y40_c00308{bottom:915.840000pt;}
.y2_c00308{bottom:916.480000pt;}
.y1_c00308{bottom:917.120000pt;}
.y3f_c00308{bottom:958.720000pt;}
.h7_c00308{height:36.860000pt;}
.h6_c00308{height:39.163750pt;}
.ha_c00308{height:41.467500pt;}
.hd_c00308{height:43.771250pt;}
.h9_c00308{height:46.075000pt;}
.h5_c00308{height:48.378750pt;}
.hc_c00308{height:50.682500pt;}
.h8_c00308{height:52.986250pt;}
.h2_c00308{height:55.290000pt;}
.he_c00308{height:55.546250pt;}
.h3_c00308{height:57.593750pt;}
.h4_c00308{height:59.897500pt;}
.hb_c00308{height:62.201250pt;}
.h1_c00308{height:1019.333333pt;}
.h0_c00308{height:1019.520000pt;}
.w0_c00308{width:694.400000pt;}
.w1_c00308{width:694.666667pt;}
.x0_c00308{left:0.000000pt;}
.x19_c00308{left:58.240000pt;}
.x1_c00308{left:59.520000pt;}
.x3a_c00308{left:60.800000pt;}
.x15_c00308{left:104.960000pt;}
.x1c_c00308{left:122.880000pt;}
.x4_c00308{left:124.160000pt;}
.x2_c00308{left:125.440000pt;}
.x16_c00308{left:135.040000pt;}
.x1a_c00308{left:161.920000pt;}
.x9_c00308{left:163.200000pt;}
.x39_c00308{left:170.880000pt;}
.x17_c00308{left:172.800000pt;}
.x3_c00308{left:192.000000pt;}
.x18_c00308{left:200.320000pt;}
.xb_c00308{left:201.600000pt;}
.xa_c00308{left:211.200000pt;}
.x21_c00308{left:218.880000pt;}
.xe_c00308{left:220.800000pt;}
.x5_c00308{left:240.000000pt;}
.xc_c00308{left:249.600000pt;}
.x33_c00308{left:266.880000pt;}
.x22_c00308{left:268.160000pt;}
.x3b_c00308{left:288.000000pt;}
.xd_c00308{left:289.280000pt;}
.x6_c00308{left:297.600000pt;}
.x12_c00308{left:307.200000pt;}
.x38_c00308{left:314.880000pt;}
.xf_c00308{left:316.800000pt;}
.x23_c00308{left:324.480000pt;}
.x1e_c00308{left:325.760000pt;}
.x1d_c00308{left:336.000000pt;}
.x1b_c00308{left:345.600000pt;}
.x34_c00308{left:362.880000pt;}
.x10_c00308{left:364.800000pt;}
.x24_c00308{left:372.480000pt;}
.x1f_c00308{left:374.400000pt;}
.x7_c00308{left:403.840000pt;}
.x13_c00308{left:412.800000pt;}
.x20_c00308{left:421.760000pt;}
.x35_c00308{left:440.320000pt;}
.x8_c00308{left:453.120000pt;}
.x11_c00308{left:471.040000pt;}
.x36_c00308{left:478.720000pt;}
.x14_c00308{left:499.840000pt;}
.x3d_c00308{left:517.120000pt;}
.x30_c00308{left:518.400000pt;}
.x2f_c00308{left:528.000000pt;}
.x26_c00308{left:529.280000pt;}
.x3c_c00308{left:545.920000pt;}
.x2b_c00308{left:547.200000pt;}
.x29_c00308{left:548.480000pt;}
.x32_c00308{left:575.360000pt;}
.x2d_c00308{left:576.640000pt;}
.x27_c00308{left:577.920000pt;}
.x25_c00308{left:590.080000pt;}
.x3e_c00308{left:604.160000pt;}
.x2e_c00308{left:605.440000pt;}
.x37_c00308{left:612.480000pt;}
.x28_c00308{left:614.400000pt;}
.x2c_c00308{left:615.680000pt;}
.x31_c00308{left:631.680000pt;}
.x2a_c00308{left:633.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_25d8826c64d4f431d6d9a2af.woff2')format("woff");}.ff1_c00309{font-family:ff1_c00309;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m47_c00309{transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);}
.m43_c00309{transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);}
.m42_c00309{transform:matrix(0.221050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221050,0.000000,0.000000,0.250000,0,0);}
.m3b_c00309{transform:matrix(0.222650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222650,0.000000,0.000000,0.250000,0,0);}
.m35_c00309{transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);}
.m3c_c00309{transform:matrix(0.233525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233525,0.000000,0.000000,0.250000,0,0);}
.m34_c00309{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m11_c00309{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m6_c00309{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.me_c00309{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m38_c00309{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00309{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m36_c00309{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m21_c00309{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m13_c00309{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m5_c00309{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m17_c00309{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00309{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m10_c00309{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m39_c00309{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00309{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m45_c00309{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m3_c00309{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00309{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m18_c00309{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m37_c00309{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mf_c00309{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.mb_c00309{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00309{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m0_c00309{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m30_c00309{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m23_c00309{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m28_c00309{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00309{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m32_c00309{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1_c00309{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m15_c00309{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m9_c00309{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m20_c00309{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m41_c00309{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.md_c00309{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m8_c00309{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);}
.m1e_c00309{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m49_c00309{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00309{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m22_c00309{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);}
.m2b_c00309{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m27_c00309{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m4_c00309{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);}
.m24_c00309{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);}
.m40_c00309{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m31_c00309{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);}
.m2e_c00309{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);}
.m1b_c00309{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);}
.m2a_c00309{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m2_c00309{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.ma_c00309{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);}
.m1f_c00309{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.mc_c00309{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m44_c00309{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m25_c00309{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00309{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);}
.m46_c00309{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00309{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00309{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m26_c00309{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);}
.m33_c00309{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m16_c00309{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);}
.m1c_c00309{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00309{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00309{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m29_c00309{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m14_c00309{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m7_c00309{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m12_c00309{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00309{transform:matrix(0.712500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.712500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.712500,0.000000,0.000000,0.250000,0,0);}
.m48_c00309{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00309{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m19_c00309{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00309{transform:matrix(0.885000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.885000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.885000,0.000000,0.000000,0.250000,0,0);}
.v2_c00309{vertical-align:-2.880000px;}
.v0_c00309{vertical-align:0.000000px;}
.v1_c00309{vertical-align:8.640000px;}
.ls0_c00309{letter-spacing:0.000000px;}
.sc__c00309{text-shadow:none;}
.sc0_c00309{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00309{-webkit-text-stroke:0px transparent;}
.sc0_c00309{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00309{word-spacing:0.000000px;}
.ws0_c00309{word-spacing:10.275600px;}
.ws1_c00309{word-spacing:11.855347px;}
.ws3_c00309{word-spacing:13.136947px;}
.ws2_c00309{word-spacing:17.079600px;}
.fc0_c00309{color:transparent;}
.fs9_c00309{font-size:34.560000px;}
.fsc_c00309{font-size:37.440000px;}
.fsd_c00309{font-size:46.080000px;}
.fs1_c00309{font-size:48.960000px;}
.fs8_c00309{font-size:51.840000px;}
.fs5_c00309{font-size:54.720000px;}
.fs6_c00309{font-size:57.600000px;}
.fs4_c00309{font-size:60.480000px;}
.fs7_c00309{font-size:63.360000px;}
.fsa_c00309{font-size:66.240000px;}
.fs0_c00309{font-size:69.120000px;}
.fs3_c00309{font-size:72.000000px;}
.fs2_c00309{font-size:74.880000px;}
.fsb_c00309{font-size:77.760000px;}
.y0_c00309{bottom:0.000000px;}
.y5c_c00309{bottom:41.760000px;}
.y5e_c00309{bottom:42.480000px;}
.y5d_c00309{bottom:45.360000px;}
.y5b_c00309{bottom:46.080000px;}
.y5f_c00309{bottom:47.520000px;}
.y7e_c00309{bottom:48.240000px;}
.y5a_c00309{bottom:76.320000px;}
.y57_c00309{bottom:85.680000px;}
.y56_c00309{bottom:86.400000px;}
.y55_c00309{bottom:87.120000px;}
.y58_c00309{bottom:88.560000px;}
.y59_c00309{bottom:89.280000px;}
.y53_c00309{bottom:118.080000px;}
.y7b_c00309{bottom:119.520000px;}
.y7d_c00309{bottom:120.960000px;}
.y54_c00309{bottom:121.680000px;}
.y52_c00309{bottom:122.400000px;}
.y7c_c00309{bottom:123.120000px;}
.y51_c00309{bottom:161.280000px;}
.y50_c00309{bottom:162.720000px;}
.y4b_c00309{bottom:192.960000px;}
.y4c_c00309{bottom:193.680000px;}
.y4e_c00309{bottom:195.120000px;}
.y4f_c00309{bottom:195.840000px;}
.y4a_c00309{bottom:196.560000px;}
.y4d_c00309{bottom:197.280000px;}
.y7a_c00309{bottom:198.000000px;}
.y48_c00309{bottom:236.160000px;}
.y49_c00309{bottom:236.880000px;}
.y78_c00309{bottom:239.040000px;}
.y47_c00309{bottom:239.760000px;}
.y79_c00309{bottom:241.200000px;}
.y46_c00309{bottom:280.080000px;}
.y45_c00309{bottom:281.520000px;}
.y40_c00309{bottom:312.480000px;}
.y43_c00309{bottom:313.200000px;}
.y41_c00309{bottom:313.920000px;}
.y3f_c00309{bottom:314.640000px;}
.y77_c00309{bottom:315.360000px;}
.y42_c00309{bottom:316.080000px;}
.y44_c00309{bottom:316.800000px;}
.y3c_c00309{bottom:354.960000px;}
.y3e_c00309{bottom:355.680000px;}
.y3b_c00309{bottom:358.560000px;}
.y3d_c00309{bottom:359.280000px;}
.y76_c00309{bottom:360.000000px;}
.y39_c00309{bottom:399.600000px;}
.y38_c00309{bottom:401.040000px;}
.y3a_c00309{bottom:402.480000px;}
.y75_c00309{bottom:403.200000px;}
.y74_c00309{bottom:403.920000px;}
.y37_c00309{bottom:442.080000px;}
.y71_c00309{bottom:443.520000px;}
.y36_c00309{bottom:444.240000px;}
.y73_c00309{bottom:445.680000px;}
.y72_c00309{bottom:447.120000px;}
.y35_c00309{bottom:484.560000px;}
.y33_c00309{bottom:486.720000px;}
.y70_c00309{bottom:487.440000px;}
.y34_c00309{bottom:488.880000px;}
.y32_c00309{bottom:528.480000px;}
.y6f_c00309{bottom:529.920000px;}
.y31_c00309{bottom:530.640000px;}
.y6e_c00309{bottom:532.080000px;}
.y30_c00309{bottom:571.680000px;}
.y2f_c00309{bottom:572.400000px;}
.y2d_c00309{bottom:573.120000px;}
.y6d_c00309{bottom:573.840000px;}
.y2e_c00309{bottom:575.280000px;}
.y6c_c00309{bottom:576.000000px;}
.y2c_c00309{bottom:614.880000px;}
.y2b_c00309{bottom:616.320000px;}
.y6b_c00309{bottom:617.760000px;}
.y2a_c00309{bottom:657.360000px;}
.y29_c00309{bottom:658.080000px;}
.y27_c00309{bottom:658.800000px;}
.y28_c00309{bottom:661.680000px;}
.y25_c00309{bottom:699.840000px;}
.y24_c00309{bottom:701.280000px;}
.y69_c00309{bottom:702.000000px;}
.y6a_c00309{bottom:703.440000px;}
.y26_c00309{bottom:704.160000px;}
.y22_c00309{bottom:742.320000px;}
.y68_c00309{bottom:743.760000px;}
.y21_c00309{bottom:744.480000px;}
.y23_c00309{bottom:746.640000px;}
.y20_c00309{bottom:785.520000px;}
.y1f_c00309{bottom:786.960000px;}
.y67_c00309{bottom:789.840000px;}
.y1e_c00309{bottom:829.440000px;}
.y1d_c00309{bottom:830.160000px;}
.y65_c00309{bottom:831.600000px;}
.y64_c00309{bottom:832.320000px;}
.y66_c00309{bottom:833.040000px;}
.y1c_c00309{bottom:871.920000px;}
.y63_c00309{bottom:872.640000px;}
.y19_c00309{bottom:873.360000px;}
.y61_c00309{bottom:874.800000px;}
.y62_c00309{bottom:875.520000px;}
.y1b_c00309{bottom:876.240000px;}
.y1a_c00309{bottom:876.960000px;}
.y18_c00309{bottom:915.840000px;}
.y16_c00309{bottom:916.560000px;}
.y60_c00309{bottom:917.280000px;}
.y17_c00309{bottom:919.440000px;}
.y14_c00309{bottom:958.320000px;}
.y11_c00309{bottom:959.040000px;}
.y10_c00309{bottom:959.760000px;}
.y13_c00309{bottom:960.480000px;}
.y15_c00309{bottom:961.920000px;}
.y12_c00309{bottom:962.640000px;}
.yd_c00309{bottom:1001.520000px;}
.yb_c00309{bottom:1002.240000px;}
.yc_c00309{bottom:1002.960000px;}
.y8_c00309{bottom:1003.680000px;}
.ye_c00309{bottom:1004.400000px;}
.yf_c00309{bottom:1005.120000px;}
.ya_c00309{bottom:1005.840000px;}
.y9_c00309{bottom:1006.560000px;}
.y4_c00309{bottom:1045.440000px;}
.y1_c00309{bottom:1046.160000px;}
.y6_c00309{bottom:1046.880000px;}
.y7_c00309{bottom:1048.320000px;}
.y3_c00309{bottom:1049.040000px;}
.y2_c00309{bottom:1049.760000px;}
.y5_c00309{bottom:1097.280000px;}
.ha_c00309{height:31.100625px;}
.hd_c00309{height:33.692344px;}
.he_c00309{height:41.467500px;}
.h2_c00309{height:44.059219px;}
.h9_c00309{height:46.650937px;}
.h6_c00309{height:49.242656px;}
.h7_c00309{height:51.834375px;}
.h5_c00309{height:54.426094px;}
.h8_c00309{height:57.017812px;}
.hf_c00309{height:57.882656px;}
.hb_c00309{height:59.609531px;}
.h1_c00309{height:62.201250px;}
.h4_c00309{height:64.792969px;}
.h3_c00309{height:67.384687px;}
.hc_c00309{height:69.976406px;}
.h0_c00309{height:1152.000000px;}
.w1_c00309{width:765.750000px;}
.w0_c00309{width:766.080000px;}
.x0_c00309{left:0.000000px;}
.x1_c00309{left:61.920000px;}
.x17_c00309{left:63.360000px;}
.x22_c00309{left:64.800000px;}
.x2c_c00309{left:66.240000px;}
.x2d_c00309{left:134.640000px;}
.x2_c00309{left:136.080000px;}
.x12_c00309{left:137.520000px;}
.x13_c00309{left:169.200000px;}
.x3_c00309{left:180.000000px;}
.x20_c00309{left:190.080000px;}
.x26_c00309{left:200.880000px;}
.x14_c00309{left:212.400000px;}
.x4_c00309{left:222.480000px;}
.xa_c00309{left:224.640000px;}
.x2e_c00309{left:233.280000px;}
.x21_c00309{left:235.440000px;}
.x27_c00309{left:255.600000px;}
.xf_c00309{left:266.400000px;}
.x23_c00309{left:276.480000px;}
.x1b_c00309{left:277.920000px;}
.x15_c00309{left:288.000000px;}
.x28_c00309{left:298.800000px;}
.xb_c00309{left:310.320000px;}
.x24_c00309{left:321.120000px;}
.x29_c00309{left:342.000000px;}
.x16_c00309{left:343.440000px;}
.x1e_c00309{left:352.800000px;}
.x1c_c00309{left:362.880000px;}
.x18_c00309{left:373.680000px;}
.x10_c00309{left:385.200000px;}
.x2a_c00309{left:395.280000px;}
.xc_c00309{left:406.080000px;}
.x1d_c00309{left:407.520000px;}
.x19_c00309{left:417.600000px;}
.x11_c00309{left:439.920000px;}
.xd_c00309{left:450.000000px;}
.x1a_c00309{left:460.800000px;}
.x1f_c00309{left:502.560000px;}
.x2b_c00309{left:524.160000px;}
.xe_c00309{left:547.200000px;}
.x31_c00309{left:548.640000px;}
.x25_c00309{left:558.000000px;}
.x34_c00309{left:559.440000px;}
.x32_c00309{left:579.600000px;}
.x2f_c00309{left:581.040000px;}
.x30_c00309{left:612.000000px;}
.x6_c00309{left:613.440000px;}
.x36_c00309{left:643.680000px;}
.x7_c00309{left:645.120000px;}
.x33_c00309{left:678.240000px;}
.x8_c00309{left:687.600000px;}
.x5_c00309{left:689.040000px;}
.x35_c00309{left:706.320000px;}
.x9_c00309{left:707.760000px;}
@media print{
.v2_c00309{vertical-align:-2.560000pt;}
.v0_c00309{vertical-align:0.000000pt;}
.v1_c00309{vertical-align:7.680000pt;}
.ls0_c00309{letter-spacing:0.000000pt;}
.ws4_c00309{word-spacing:0.000000pt;}
.ws0_c00309{word-spacing:9.133867pt;}
.ws1_c00309{word-spacing:10.538086pt;}
.ws3_c00309{word-spacing:11.677286pt;}
.ws2_c00309{word-spacing:15.181867pt;}
.fs9_c00309{font-size:30.720000pt;}
.fsc_c00309{font-size:33.280000pt;}
.fsd_c00309{font-size:40.960000pt;}
.fs1_c00309{font-size:43.520000pt;}
.fs8_c00309{font-size:46.080000pt;}
.fs5_c00309{font-size:48.640000pt;}
.fs6_c00309{font-size:51.200000pt;}
.fs4_c00309{font-size:53.760000pt;}
.fs7_c00309{font-size:56.320000pt;}
.fsa_c00309{font-size:58.880000pt;}
.fs0_c00309{font-size:61.440000pt;}
.fs3_c00309{font-size:64.000000pt;}
.fs2_c00309{font-size:66.560000pt;}
.fsb_c00309{font-size:69.120000pt;}
.y0_c00309{bottom:0.000000pt;}
.y5c_c00309{bottom:37.120000pt;}
.y5e_c00309{bottom:37.760000pt;}
.y5d_c00309{bottom:40.320000pt;}
.y5b_c00309{bottom:40.960000pt;}
.y5f_c00309{bottom:42.240000pt;}
.y7e_c00309{bottom:42.880000pt;}
.y5a_c00309{bottom:67.840000pt;}
.y57_c00309{bottom:76.160000pt;}
.y56_c00309{bottom:76.800000pt;}
.y55_c00309{bottom:77.440000pt;}
.y58_c00309{bottom:78.720000pt;}
.y59_c00309{bottom:79.360000pt;}
.y53_c00309{bottom:104.960000pt;}
.y7b_c00309{bottom:106.240000pt;}
.y7d_c00309{bottom:107.520000pt;}
.y54_c00309{bottom:108.160000pt;}
.y52_c00309{bottom:108.800000pt;}
.y7c_c00309{bottom:109.440000pt;}
.y51_c00309{bottom:143.360000pt;}
.y50_c00309{bottom:144.640000pt;}
.y4b_c00309{bottom:171.520000pt;}
.y4c_c00309{bottom:172.160000pt;}
.y4e_c00309{bottom:173.440000pt;}
.y4f_c00309{bottom:174.080000pt;}
.y4a_c00309{bottom:174.720000pt;}
.y4d_c00309{bottom:175.360000pt;}
.y7a_c00309{bottom:176.000000pt;}
.y48_c00309{bottom:209.920000pt;}
.y49_c00309{bottom:210.560000pt;}
.y78_c00309{bottom:212.480000pt;}
.y47_c00309{bottom:213.120000pt;}
.y79_c00309{bottom:214.400000pt;}
.y46_c00309{bottom:248.960000pt;}
.y45_c00309{bottom:250.240000pt;}
.y40_c00309{bottom:277.760000pt;}
.y43_c00309{bottom:278.400000pt;}
.y41_c00309{bottom:279.040000pt;}
.y3f_c00309{bottom:279.680000pt;}
.y77_c00309{bottom:280.320000pt;}
.y42_c00309{bottom:280.960000pt;}
.y44_c00309{bottom:281.600000pt;}
.y3c_c00309{bottom:315.520000pt;}
.y3e_c00309{bottom:316.160000pt;}
.y3b_c00309{bottom:318.720000pt;}
.y3d_c00309{bottom:319.360000pt;}
.y76_c00309{bottom:320.000000pt;}
.y39_c00309{bottom:355.200000pt;}
.y38_c00309{bottom:356.480000pt;}
.y3a_c00309{bottom:357.760000pt;}
.y75_c00309{bottom:358.400000pt;}
.y74_c00309{bottom:359.040000pt;}
.y37_c00309{bottom:392.960000pt;}
.y71_c00309{bottom:394.240000pt;}
.y36_c00309{bottom:394.880000pt;}
.y73_c00309{bottom:396.160000pt;}
.y72_c00309{bottom:397.440000pt;}
.y35_c00309{bottom:430.720000pt;}
.y33_c00309{bottom:432.640000pt;}
.y70_c00309{bottom:433.280000pt;}
.y34_c00309{bottom:434.560000pt;}
.y32_c00309{bottom:469.760000pt;}
.y6f_c00309{bottom:471.040000pt;}
.y31_c00309{bottom:471.680000pt;}
.y6e_c00309{bottom:472.960000pt;}
.y30_c00309{bottom:508.160000pt;}
.y2f_c00309{bottom:508.800000pt;}
.y2d_c00309{bottom:509.440000pt;}
.y6d_c00309{bottom:510.080000pt;}
.y2e_c00309{bottom:511.360000pt;}
.y6c_c00309{bottom:512.000000pt;}
.y2c_c00309{bottom:546.560000pt;}
.y2b_c00309{bottom:547.840000pt;}
.y6b_c00309{bottom:549.120000pt;}
.y2a_c00309{bottom:584.320000pt;}
.y29_c00309{bottom:584.960000pt;}
.y27_c00309{bottom:585.600000pt;}
.y28_c00309{bottom:588.160000pt;}
.y25_c00309{bottom:622.080000pt;}
.y24_c00309{bottom:623.360000pt;}
.y69_c00309{bottom:624.000000pt;}
.y6a_c00309{bottom:625.280000pt;}
.y26_c00309{bottom:625.920000pt;}
.y22_c00309{bottom:659.840000pt;}
.y68_c00309{bottom:661.120000pt;}
.y21_c00309{bottom:661.760000pt;}
.y23_c00309{bottom:663.680000pt;}
.y20_c00309{bottom:698.240000pt;}
.y1f_c00309{bottom:699.520000pt;}
.y67_c00309{bottom:702.080000pt;}
.y1e_c00309{bottom:737.280000pt;}
.y1d_c00309{bottom:737.920000pt;}
.y65_c00309{bottom:739.200000pt;}
.y64_c00309{bottom:739.840000pt;}
.y66_c00309{bottom:740.480000pt;}
.y1c_c00309{bottom:775.040000pt;}
.y63_c00309{bottom:775.680000pt;}
.y19_c00309{bottom:776.320000pt;}
.y61_c00309{bottom:777.600000pt;}
.y62_c00309{bottom:778.240000pt;}
.y1b_c00309{bottom:778.880000pt;}
.y1a_c00309{bottom:779.520000pt;}
.y18_c00309{bottom:814.080000pt;}
.y16_c00309{bottom:814.720000pt;}
.y60_c00309{bottom:815.360000pt;}
.y17_c00309{bottom:817.280000pt;}
.y14_c00309{bottom:851.840000pt;}
.y11_c00309{bottom:852.480000pt;}
.y10_c00309{bottom:853.120000pt;}
.y13_c00309{bottom:853.760000pt;}
.y15_c00309{bottom:855.040000pt;}
.y12_c00309{bottom:855.680000pt;}
.yd_c00309{bottom:890.240000pt;}
.yb_c00309{bottom:890.880000pt;}
.yc_c00309{bottom:891.520000pt;}
.y8_c00309{bottom:892.160000pt;}
.ye_c00309{bottom:892.800000pt;}
.yf_c00309{bottom:893.440000pt;}
.ya_c00309{bottom:894.080000pt;}
.y9_c00309{bottom:894.720000pt;}
.y4_c00309{bottom:929.280000pt;}
.y1_c00309{bottom:929.920000pt;}
.y6_c00309{bottom:930.560000pt;}
.y7_c00309{bottom:931.840000pt;}
.y3_c00309{bottom:932.480000pt;}
.y2_c00309{bottom:933.120000pt;}
.y5_c00309{bottom:975.360000pt;}
.ha_c00309{height:27.645000pt;}
.hd_c00309{height:29.948750pt;}
.he_c00309{height:36.860000pt;}
.h2_c00309{height:39.163750pt;}
.h9_c00309{height:41.467500pt;}
.h6_c00309{height:43.771250pt;}
.h7_c00309{height:46.075000pt;}
.h5_c00309{height:48.378750pt;}
.h8_c00309{height:50.682500pt;}
.hf_c00309{height:51.451250pt;}
.hb_c00309{height:52.986250pt;}
.h1_c00309{height:55.290000pt;}
.h4_c00309{height:57.593750pt;}
.h3_c00309{height:59.897500pt;}
.hc_c00309{height:62.201250pt;}
.h0_c00309{height:1024.000000pt;}
.w1_c00309{width:680.666667pt;}
.w0_c00309{width:680.960000pt;}
.x0_c00309{left:0.000000pt;}
.x1_c00309{left:55.040000pt;}
.x17_c00309{left:56.320000pt;}
.x22_c00309{left:57.600000pt;}
.x2c_c00309{left:58.880000pt;}
.x2d_c00309{left:119.680000pt;}
.x2_c00309{left:120.960000pt;}
.x12_c00309{left:122.240000pt;}
.x13_c00309{left:150.400000pt;}
.x3_c00309{left:160.000000pt;}
.x20_c00309{left:168.960000pt;}
.x26_c00309{left:178.560000pt;}
.x14_c00309{left:188.800000pt;}
.x4_c00309{left:197.760000pt;}
.xa_c00309{left:199.680000pt;}
.x2e_c00309{left:207.360000pt;}
.x21_c00309{left:209.280000pt;}
.x27_c00309{left:227.200000pt;}
.xf_c00309{left:236.800000pt;}
.x23_c00309{left:245.760000pt;}
.x1b_c00309{left:247.040000pt;}
.x15_c00309{left:256.000000pt;}
.x28_c00309{left:265.600000pt;}
.xb_c00309{left:275.840000pt;}
.x24_c00309{left:285.440000pt;}
.x29_c00309{left:304.000000pt;}
.x16_c00309{left:305.280000pt;}
.x1e_c00309{left:313.600000pt;}
.x1c_c00309{left:322.560000pt;}
.x18_c00309{left:332.160000pt;}
.x10_c00309{left:342.400000pt;}
.x2a_c00309{left:351.360000pt;}
.xc_c00309{left:360.960000pt;}
.x1d_c00309{left:362.240000pt;}
.x19_c00309{left:371.200000pt;}
.x11_c00309{left:391.040000pt;}
.xd_c00309{left:400.000000pt;}
.x1a_c00309{left:409.600000pt;}
.x1f_c00309{left:446.720000pt;}
.x2b_c00309{left:465.920000pt;}
.xe_c00309{left:486.400000pt;}
.x31_c00309{left:487.680000pt;}
.x25_c00309{left:496.000000pt;}
.x34_c00309{left:497.280000pt;}
.x32_c00309{left:515.200000pt;}
.x2f_c00309{left:516.480000pt;}
.x30_c00309{left:544.000000pt;}
.x6_c00309{left:545.280000pt;}
.x36_c00309{left:572.160000pt;}
.x7_c00309{left:573.440000pt;}
.x33_c00309{left:602.880000pt;}
.x8_c00309{left:611.200000pt;}
.x5_c00309{left:612.480000pt;}
.x35_c00309{left:627.840000pt;}
.x9_c00309{left:629.120000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_265070dabc6c7ecb238971ed.woff2')format("woff");}.ff1_c00310{font-family:ff1_c00310;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3b_c00310{transform:matrix(0.223525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223525,0.000000,0.000000,0.250000,0,0);}
.m40_c00310{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);}
.m41_c00310{transform:matrix(0.225825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225825,0.000000,0.000000,0.250000,0,0);}
.m16_c00310{transform:matrix(0.230325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230325,0.000000,0.000000,0.250000,0,0);}
.m42_c00310{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m3f_c00310{transform:matrix(0.240375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240375,0.000000,0.000000,0.250000,0,0);}
.m1a_c00310{transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);}
.m2_c00310{transform:matrix(0.243575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243575,0.000000,0.000000,0.250000,0,0);}
.m35_c00310{transform:matrix(0.243975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243975,0.000000,0.000000,0.250000,0,0);}
.m45_c00310{transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);}
.m8_c00310{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m2d_c00310{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00310{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);}
.m2f_c00310{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.me_c00310{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);}
.m4a_c00310{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);}
.m34_c00310{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m11_c00310{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m12_c00310{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00310{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_c00310{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m21_c00310{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00310{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m24_c00310{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m18_c00310{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00310{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m36_c00310{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m29_c00310{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m9_c00310{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00310{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m31_c00310{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m26_c00310{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m23_c00310{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m46_c00310{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.md_c00310{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m13_c00310{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1_c00310{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m7_c00310{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m47_c00310{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mf_c00310{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m39_c00310{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);}
.m37_c00310{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);}
.m4b_c00310{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m0_c00310{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m25_c00310{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m4_c00310{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00310{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m15_c00310{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m33_c00310{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m19_c00310{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);}
.m38_c00310{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00310{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);}
.m1e_c00310{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m5_c00310{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);}
.mb_c00310{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);}
.m20_c00310{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00310{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m6_c00310{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00310{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m43_c00310{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m49_c00310{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m44_c00310{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);}
.m27_c00310{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m10_c00310{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);}
.m2b_c00310{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);}
.m4e_c00310{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_c00310{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m30_c00310{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);}
.m3_c00310{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00310{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);}
.m22_c00310{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00310{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m28_c00310{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);}
.m32_c00310{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m48_c00310{transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00310{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00310{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m14_c00310{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.ma_c00310{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.v3_c00310{vertical-align:-11.520000px;}
.v2_c00310{vertical-align:-5.760000px;}
.v0_c00310{vertical-align:0.000000px;}
.v1_c00310{vertical-align:8.640000px;}
.ls0_c00310{letter-spacing:0.000000px;}
.sc__c00310{text-shadow:none;}
.sc0_c00310{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00310{-webkit-text-stroke:0px transparent;}
.sc0_c00310{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00310{word-spacing:0.000000px;}
.ws1_c00310{word-spacing:8.131200px;}
.ws2_c00310{word-spacing:9.474000px;}
.ws0_c00310{word-spacing:80.762400px;}
.fc0_c00310{color:transparent;}
.fsd_c00310{font-size:34.560000px;}
.fsb_c00310{font-size:37.440000px;}
.fsc_c00310{font-size:46.080000px;}
.fs3_c00310{font-size:48.960000px;}
.fs2_c00310{font-size:51.840000px;}
.fsa_c00310{font-size:54.720000px;}
.fs4_c00310{font-size:57.600000px;}
.fs7_c00310{font-size:60.480000px;}
.fs8_c00310{font-size:63.360000px;}
.fs6_c00310{font-size:66.240000px;}
.fs1_c00310{font-size:69.120000px;}
.fs9_c00310{font-size:72.000000px;}
.fs0_c00310{font-size:74.880000px;}
.fs5_c00310{font-size:77.760000px;}
.y0_c00310{bottom:0.000000px;}
.y64_c00310{bottom:50.400000px;}
.y65_c00310{bottom:51.120000px;}
.y80_c00310{bottom:54.720000px;}
.y63_c00310{bottom:55.440000px;}
.y77_c00310{bottom:56.160000px;}
.y81_c00310{bottom:57.600000px;}
.y62_c00310{bottom:94.320000px;}
.y61_c00310{bottom:95.760000px;}
.y60_c00310{bottom:97.920000px;}
.y5c_c00310{bottom:126.720000px;}
.y5e_c00310{bottom:128.160000px;}
.y5b_c00310{bottom:130.320000px;}
.y5d_c00310{bottom:131.040000px;}
.y7e_c00310{bottom:131.760000px;}
.y5f_c00310{bottom:132.480000px;}
.y7f_c00310{bottom:133.200000px;}
.y58_c00310{bottom:169.920000px;}
.y59_c00310{bottom:171.360000px;}
.y57_c00310{bottom:173.520000px;}
.y5a_c00310{bottom:174.240000px;}
.y7d_c00310{bottom:175.680000px;}
.y56_c00310{bottom:212.400000px;}
.y55_c00310{bottom:216.720000px;}
.y7c_c00310{bottom:217.440000px;}
.y54_c00310{bottom:257.040000px;}
.y53_c00310{bottom:257.760000px;}
.y51_c00310{bottom:259.920000px;}
.y52_c00310{bottom:260.640000px;}
.y4c_c00310{bottom:288.720000px;}
.y4d_c00310{bottom:290.160000px;}
.y4e_c00310{bottom:290.880000px;}
.y4b_c00310{bottom:291.600000px;}
.y4f_c00310{bottom:293.040000px;}
.y50_c00310{bottom:293.760000px;}
.y7b_c00310{bottom:294.480000px;}
.y48_c00310{bottom:331.920000px;}
.y4a_c00310{bottom:333.360000px;}
.y47_c00310{bottom:334.800000px;}
.y49_c00310{bottom:335.520000px;}
.y7a_c00310{bottom:336.960000px;}
.y79_c00310{bottom:337.680000px;}
.y43_c00310{bottom:374.400000px;}
.y42_c00310{bottom:375.120000px;}
.y44_c00310{bottom:375.840000px;}
.y41_c00310{bottom:377.280000px;}
.y78_c00310{bottom:378.000000px;}
.y45_c00310{bottom:378.720000px;}
.y46_c00310{bottom:379.440000px;}
.y40_c00310{bottom:417.600000px;}
.y3f_c00310{bottom:418.320000px;}
.y3e_c00310{bottom:421.920000px;}
.y3a_c00310{bottom:450.000000px;}
.y3b_c00310{bottom:451.440000px;}
.y39_c00310{bottom:452.160000px;}
.y76_c00310{bottom:452.880000px;}
.y3d_c00310{bottom:453.600000px;}
.y3c_c00310{bottom:454.320000px;}
.y75_c00310{bottom:455.040000px;}
.y35_c00310{bottom:493.200000px;}
.y36_c00310{bottom:493.920000px;}
.y34_c00310{bottom:495.360000px;}
.y74_c00310{bottom:496.080000px;}
.y37_c00310{bottom:496.800000px;}
.y38_c00310{bottom:497.520000px;}
.y32_c00310{bottom:536.400000px;}
.y33_c00310{bottom:537.120000px;}
.y31_c00310{bottom:538.560000px;}
.y72_c00310{bottom:539.280000px;}
.y73_c00310{bottom:540.720000px;}
.y2e_c00310{bottom:579.600000px;}
.y30_c00310{bottom:580.320000px;}
.y2d_c00310{bottom:581.760000px;}
.y70_c00310{bottom:582.480000px;}
.y2f_c00310{bottom:583.200000px;}
.y71_c00310{bottom:583.920000px;}
.y2c_c00310{bottom:623.520000px;}
.y2b_c00310{bottom:624.960000px;}
.y6f_c00310{bottom:625.680000px;}
.y29_c00310{bottom:666.720000px;}
.y28_c00310{bottom:667.440000px;}
.y6c_c00310{bottom:668.160000px;}
.y6e_c00310{bottom:668.880000px;}
.y2a_c00310{bottom:670.320000px;}
.y6d_c00310{bottom:671.040000px;}
.y26_c00310{bottom:711.360000px;}
.y27_c00310{bottom:713.520000px;}
.y24_c00310{bottom:742.320000px;}
.y22_c00310{bottom:743.040000px;}
.y25_c00310{bottom:745.200000px;}
.y23_c00310{bottom:745.920000px;}
.y1f_c00310{bottom:774.720000px;}
.y1d_c00310{bottom:775.440000px;}
.y20_c00310{bottom:776.160000px;}
.y21_c00310{bottom:776.880000px;}
.y1e_c00310{bottom:778.320000px;}
.y6b_c00310{bottom:779.040000px;}
.y1c_c00310{bottom:817.920000px;}
.y1a_c00310{bottom:820.800000px;}
.y1b_c00310{bottom:821.520000px;}
.y15_c00310{bottom:848.880000px;}
.y14_c00310{bottom:850.320000px;}
.y16_c00310{bottom:851.040000px;}
.y19_c00310{bottom:851.760000px;}
.y18_c00310{bottom:852.480000px;}
.y17_c00310{bottom:853.200000px;}
.y6a_c00310{bottom:853.920000px;}
.y12_c00310{bottom:892.080000px;}
.y11_c00310{bottom:892.800000px;}
.y69_c00310{bottom:893.520000px;}
.y68_c00310{bottom:894.240000px;}
.y13_c00310{bottom:895.680000px;}
.ye_c00310{bottom:934.560000px;}
.y10_c00310{bottom:935.280000px;}
.yd_c00310{bottom:936.000000px;}
.y66_c00310{bottom:936.720000px;}
.y67_c00310{bottom:937.440000px;}
.yf_c00310{bottom:938.880000px;}
.y9_c00310{bottom:977.760000px;}
.yb_c00310{bottom:978.480000px;}
.y8_c00310{bottom:979.200000px;}
.ya_c00310{bottom:981.360000px;}
.yc_c00310{bottom:982.080000px;}
.y7_c00310{bottom:1020.240000px;}
.y6_c00310{bottom:1022.400000px;}
.y3_c00310{bottom:1053.360000px;}
.y2_c00310{bottom:1054.800000px;}
.y4_c00310{bottom:1056.960000px;}
.y5_c00310{bottom:1057.680000px;}
.y1_c00310{bottom:1101.600000px;}
.hf_c00310{height:31.100625px;}
.hc_c00310{height:33.692344px;}
.hd_c00310{height:41.467500px;}
.h4_c00310{height:44.059219px;}
.h3_c00310{height:46.650937px;}
.hb_c00310{height:49.242656px;}
.h5_c00310{height:51.834375px;}
.h8_c00310{height:54.426094px;}
.h9_c00310{height:57.017812px;}
.he_c00310{height:59.609531px;}
.h2_c00310{height:62.201250px;}
.ha_c00310{height:64.792969px;}
.h1_c00310{height:67.384687px;}
.h7_c00310{height:68.249531px;}
.h6_c00310{height:69.976406px;}
.h0_c00310{height:1152.000000px;}
.w0_c00310{width:764.640000px;}
.w1_c00310{width:765.000000px;}
.x0_c00310{left:0.000000px;}
.x2_c00310{left:56.160000px;}
.x1f_c00310{left:58.320000px;}
.x2f_c00310{left:59.760000px;}
.x3_c00310{left:130.320000px;}
.x19_c00310{left:131.760000px;}
.x1a_c00310{left:173.520000px;}
.x18_c00310{left:174.960000px;}
.xd_c00310{left:185.040000px;}
.x1e_c00310{left:206.640000px;}
.x20_c00310{left:216.720000px;}
.x13_c00310{left:218.160000px;}
.x31_c00310{left:227.520000px;}
.x28_c00310{left:229.680000px;}
.x1c_c00310{left:238.320000px;}
.x25_c00310{left:250.560000px;}
.x4_c00310{left:260.640000px;}
.xe_c00310{left:270.720000px;}
.x14_c00310{left:272.160000px;}
.x29_c00310{left:274.320000px;}
.x30_c00310{left:281.520000px;}
.x1d_c00310{left:282.960000px;}
.x21_c00310{left:293.760000px;}
.x26_c00310{left:305.280000px;}
.x5_c00310{left:313.920000px;}
.x15_c00310{left:315.360000px;}
.x2a_c00310{left:326.880000px;}
.x6_c00310{left:358.560000px;}
.x23_c00310{left:368.640000px;}
.x22_c00310{left:380.160000px;}
.x16_c00310{left:390.960000px;}
.x7_c00310{left:401.040000px;}
.x32_c00310{left:411.120000px;}
.x24_c00310{left:413.280000px;}
.x2b_c00310{left:421.920000px;}
.xf_c00310{left:434.160000px;}
.x27_c00310{left:435.600000px;}
.x17_c00310{left:444.240000px;}
.x2d_c00310{left:454.320000px;}
.x1b_c00310{left:455.760000px;}
.x2c_c00310{left:466.560000px;}
.x10_c00310{left:487.440000px;}
.x2e_c00310{left:498.240000px;}
.x8_c00310{left:509.040000px;}
.x11_c00310{left:531.360000px;}
.x38_c00310{left:542.160000px;}
.x37_c00310{left:543.600000px;}
.x33_c00310{left:552.240000px;}
.x9_c00310{left:553.680000px;}
.x36_c00310{left:574.560000px;}
.xa_c00310{left:585.360000px;}
.x39_c00310{left:606.240000px;}
.x34_c00310{left:607.680000px;}
.xb_c00310{left:639.360000px;}
.x12_c00310{left:671.760000px;}
.x1_c00310{left:676.080000px;}
.x35_c00310{left:682.560000px;}
.xc_c00310{left:702.720000px;}
@media print{
.v3_c00310{vertical-align:-10.240000pt;}
.v2_c00310{vertical-align:-5.120000pt;}
.v0_c00310{vertical-align:0.000000pt;}
.v1_c00310{vertical-align:7.680000pt;}
.ls0_c00310{letter-spacing:0.000000pt;}
.ws3_c00310{word-spacing:0.000000pt;}
.ws1_c00310{word-spacing:7.227733pt;}
.ws2_c00310{word-spacing:8.421333pt;}
.ws0_c00310{word-spacing:71.788800pt;}
.fsd_c00310{font-size:30.720000pt;}
.fsb_c00310{font-size:33.280000pt;}
.fsc_c00310{font-size:40.960000pt;}
.fs3_c00310{font-size:43.520000pt;}
.fs2_c00310{font-size:46.080000pt;}
.fsa_c00310{font-size:48.640000pt;}
.fs4_c00310{font-size:51.200000pt;}
.fs7_c00310{font-size:53.760000pt;}
.fs8_c00310{font-size:56.320000pt;}
.fs6_c00310{font-size:58.880000pt;}
.fs1_c00310{font-size:61.440000pt;}
.fs9_c00310{font-size:64.000000pt;}
.fs0_c00310{font-size:66.560000pt;}
.fs5_c00310{font-size:69.120000pt;}
.y0_c00310{bottom:0.000000pt;}
.y64_c00310{bottom:44.800000pt;}
.y65_c00310{bottom:45.440000pt;}
.y80_c00310{bottom:48.640000pt;}
.y63_c00310{bottom:49.280000pt;}
.y77_c00310{bottom:49.920000pt;}
.y81_c00310{bottom:51.200000pt;}
.y62_c00310{bottom:83.840000pt;}
.y61_c00310{bottom:85.120000pt;}
.y60_c00310{bottom:87.040000pt;}
.y5c_c00310{bottom:112.640000pt;}
.y5e_c00310{bottom:113.920000pt;}
.y5b_c00310{bottom:115.840000pt;}
.y5d_c00310{bottom:116.480000pt;}
.y7e_c00310{bottom:117.120000pt;}
.y5f_c00310{bottom:117.760000pt;}
.y7f_c00310{bottom:118.400000pt;}
.y58_c00310{bottom:151.040000pt;}
.y59_c00310{bottom:152.320000pt;}
.y57_c00310{bottom:154.240000pt;}
.y5a_c00310{bottom:154.880000pt;}
.y7d_c00310{bottom:156.160000pt;}
.y56_c00310{bottom:188.800000pt;}
.y55_c00310{bottom:192.640000pt;}
.y7c_c00310{bottom:193.280000pt;}
.y54_c00310{bottom:228.480000pt;}
.y53_c00310{bottom:229.120000pt;}
.y51_c00310{bottom:231.040000pt;}
.y52_c00310{bottom:231.680000pt;}
.y4c_c00310{bottom:256.640000pt;}
.y4d_c00310{bottom:257.920000pt;}
.y4e_c00310{bottom:258.560000pt;}
.y4b_c00310{bottom:259.200000pt;}
.y4f_c00310{bottom:260.480000pt;}
.y50_c00310{bottom:261.120000pt;}
.y7b_c00310{bottom:261.760000pt;}
.y48_c00310{bottom:295.040000pt;}
.y4a_c00310{bottom:296.320000pt;}
.y47_c00310{bottom:297.600000pt;}
.y49_c00310{bottom:298.240000pt;}
.y7a_c00310{bottom:299.520000pt;}
.y79_c00310{bottom:300.160000pt;}
.y43_c00310{bottom:332.800000pt;}
.y42_c00310{bottom:333.440000pt;}
.y44_c00310{bottom:334.080000pt;}
.y41_c00310{bottom:335.360000pt;}
.y78_c00310{bottom:336.000000pt;}
.y45_c00310{bottom:336.640000pt;}
.y46_c00310{bottom:337.280000pt;}
.y40_c00310{bottom:371.200000pt;}
.y3f_c00310{bottom:371.840000pt;}
.y3e_c00310{bottom:375.040000pt;}
.y3a_c00310{bottom:400.000000pt;}
.y3b_c00310{bottom:401.280000pt;}
.y39_c00310{bottom:401.920000pt;}
.y76_c00310{bottom:402.560000pt;}
.y3d_c00310{bottom:403.200000pt;}
.y3c_c00310{bottom:403.840000pt;}
.y75_c00310{bottom:404.480000pt;}
.y35_c00310{bottom:438.400000pt;}
.y36_c00310{bottom:439.040000pt;}
.y34_c00310{bottom:440.320000pt;}
.y74_c00310{bottom:440.960000pt;}
.y37_c00310{bottom:441.600000pt;}
.y38_c00310{bottom:442.240000pt;}
.y32_c00310{bottom:476.800000pt;}
.y33_c00310{bottom:477.440000pt;}
.y31_c00310{bottom:478.720000pt;}
.y72_c00310{bottom:479.360000pt;}
.y73_c00310{bottom:480.640000pt;}
.y2e_c00310{bottom:515.200000pt;}
.y30_c00310{bottom:515.840000pt;}
.y2d_c00310{bottom:517.120000pt;}
.y70_c00310{bottom:517.760000pt;}
.y2f_c00310{bottom:518.400000pt;}
.y71_c00310{bottom:519.040000pt;}
.y2c_c00310{bottom:554.240000pt;}
.y2b_c00310{bottom:555.520000pt;}
.y6f_c00310{bottom:556.160000pt;}
.y29_c00310{bottom:592.640000pt;}
.y28_c00310{bottom:593.280000pt;}
.y6c_c00310{bottom:593.920000pt;}
.y6e_c00310{bottom:594.560000pt;}
.y2a_c00310{bottom:595.840000pt;}
.y6d_c00310{bottom:596.480000pt;}
.y26_c00310{bottom:632.320000pt;}
.y27_c00310{bottom:634.240000pt;}
.y24_c00310{bottom:659.840000pt;}
.y22_c00310{bottom:660.480000pt;}
.y25_c00310{bottom:662.400000pt;}
.y23_c00310{bottom:663.040000pt;}
.y1f_c00310{bottom:688.640000pt;}
.y1d_c00310{bottom:689.280000pt;}
.y20_c00310{bottom:689.920000pt;}
.y21_c00310{bottom:690.560000pt;}
.y1e_c00310{bottom:691.840000pt;}
.y6b_c00310{bottom:692.480000pt;}
.y1c_c00310{bottom:727.040000pt;}
.y1a_c00310{bottom:729.600000pt;}
.y1b_c00310{bottom:730.240000pt;}
.y15_c00310{bottom:754.560000pt;}
.y14_c00310{bottom:755.840000pt;}
.y16_c00310{bottom:756.480000pt;}
.y19_c00310{bottom:757.120000pt;}
.y18_c00310{bottom:757.760000pt;}
.y17_c00310{bottom:758.400000pt;}
.y6a_c00310{bottom:759.040000pt;}
.y12_c00310{bottom:792.960000pt;}
.y11_c00310{bottom:793.600000pt;}
.y69_c00310{bottom:794.240000pt;}
.y68_c00310{bottom:794.880000pt;}
.y13_c00310{bottom:796.160000pt;}
.ye_c00310{bottom:830.720000pt;}
.y10_c00310{bottom:831.360000pt;}
.yd_c00310{bottom:832.000000pt;}
.y66_c00310{bottom:832.640000pt;}
.y67_c00310{bottom:833.280000pt;}
.yf_c00310{bottom:834.560000pt;}
.y9_c00310{bottom:869.120000pt;}
.yb_c00310{bottom:869.760000pt;}
.y8_c00310{bottom:870.400000pt;}
.ya_c00310{bottom:872.320000pt;}
.yc_c00310{bottom:872.960000pt;}
.y7_c00310{bottom:906.880000pt;}
.y6_c00310{bottom:908.800000pt;}
.y3_c00310{bottom:936.320000pt;}
.y2_c00310{bottom:937.600000pt;}
.y4_c00310{bottom:939.520000pt;}
.y5_c00310{bottom:940.160000pt;}
.y1_c00310{bottom:979.200000pt;}
.hf_c00310{height:27.645000pt;}
.hc_c00310{height:29.948750pt;}
.hd_c00310{height:36.860000pt;}
.h4_c00310{height:39.163750pt;}
.h3_c00310{height:41.467500pt;}
.hb_c00310{height:43.771250pt;}
.h5_c00310{height:46.075000pt;}
.h8_c00310{height:48.378750pt;}
.h9_c00310{height:50.682500pt;}
.he_c00310{height:52.986250pt;}
.h2_c00310{height:55.290000pt;}
.ha_c00310{height:57.593750pt;}
.h1_c00310{height:59.897500pt;}
.h7_c00310{height:60.666250pt;}
.h6_c00310{height:62.201250pt;}
.h0_c00310{height:1024.000000pt;}
.w0_c00310{width:679.680000pt;}
.w1_c00310{width:680.000000pt;}
.x0_c00310{left:0.000000pt;}
.x2_c00310{left:49.920000pt;}
.x1f_c00310{left:51.840000pt;}
.x2f_c00310{left:53.120000pt;}
.x3_c00310{left:115.840000pt;}
.x19_c00310{left:117.120000pt;}
.x1a_c00310{left:154.240000pt;}
.x18_c00310{left:155.520000pt;}
.xd_c00310{left:164.480000pt;}
.x1e_c00310{left:183.680000pt;}
.x20_c00310{left:192.640000pt;}
.x13_c00310{left:193.920000pt;}
.x31_c00310{left:202.240000pt;}
.x28_c00310{left:204.160000pt;}
.x1c_c00310{left:211.840000pt;}
.x25_c00310{left:222.720000pt;}
.x4_c00310{left:231.680000pt;}
.xe_c00310{left:240.640000pt;}
.x14_c00310{left:241.920000pt;}
.x29_c00310{left:243.840000pt;}
.x30_c00310{left:250.240000pt;}
.x1d_c00310{left:251.520000pt;}
.x21_c00310{left:261.120000pt;}
.x26_c00310{left:271.360000pt;}
.x5_c00310{left:279.040000pt;}
.x15_c00310{left:280.320000pt;}
.x2a_c00310{left:290.560000pt;}
.x6_c00310{left:318.720000pt;}
.x23_c00310{left:327.680000pt;}
.x22_c00310{left:337.920000pt;}
.x16_c00310{left:347.520000pt;}
.x7_c00310{left:356.480000pt;}
.x32_c00310{left:365.440000pt;}
.x24_c00310{left:367.360000pt;}
.x2b_c00310{left:375.040000pt;}
.xf_c00310{left:385.920000pt;}
.x27_c00310{left:387.200000pt;}
.x17_c00310{left:394.880000pt;}
.x2d_c00310{left:403.840000pt;}
.x1b_c00310{left:405.120000pt;}
.x2c_c00310{left:414.720000pt;}
.x10_c00310{left:433.280000pt;}
.x2e_c00310{left:442.880000pt;}
.x8_c00310{left:452.480000pt;}
.x11_c00310{left:472.320000pt;}
.x38_c00310{left:481.920000pt;}
.x37_c00310{left:483.200000pt;}
.x33_c00310{left:490.880000pt;}
.x9_c00310{left:492.160000pt;}
.x36_c00310{left:510.720000pt;}
.xa_c00310{left:520.320000pt;}
.x39_c00310{left:538.880000pt;}
.x34_c00310{left:540.160000pt;}
.xb_c00310{left:568.320000pt;}
.x12_c00310{left:597.120000pt;}
.x1_c00310{left:600.960000pt;}
.x35_c00310{left:606.720000pt;}
.xc_c00310{left:624.640000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_80bd0525d74fbf4ded9aff64.woff2')format("woff");}.ff1_c00311{font-family:ff1_c00311;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3a_c00311{transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);}
.m41_c00311{transform:matrix(0.224925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224925,0.000000,0.000000,0.250000,0,0);}
.m9_c00311{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);}
.m4a_c00311{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.mf_c00311{transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);}
.m46_c00311{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m28_c00311{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);}
.m4b_c00311{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);}
.m2d_c00311{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00311{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);}
.m37_c00311{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m11_c00311{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m18_c00311{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m7_c00311{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m16_c00311{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m2_c00311{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m39_c00311{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m19_c00311{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00311{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m33_c00311{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_c00311{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m8_c00311{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m10_c00311{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m40_c00311{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m20_c00311{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00311{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m32_c00311{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00311{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m43_c00311{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m5_c00311{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00311{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m12_c00311{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m51_c00311{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mc_c00311{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m34_c00311{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m21_c00311{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);}
.m48_c00311{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);}
.m4c_c00311{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00311{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00311{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);}
.m0_c00311{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m25_c00311{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00311{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00311{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);}
.m2a_c00311{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1_c00311{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00311{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.mb_c00311{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);}
.m3d_c00311{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);}
.m44_c00311{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m54_c00311{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);}
.m49_c00311{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);}
.m22_c00311{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.md_c00311{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);}
.m6_c00311{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m36_c00311{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m55_c00311{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00311{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m26_c00311{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);}
.m45_c00311{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);}
.m14_c00311{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);}
.m23_c00311{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00311{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m47_c00311{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m35_c00311{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);}
.m1a_c00311{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m15_c00311{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m30_c00311{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.me_c00311{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);}
.m3c_c00311{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m13_c00311{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m31_c00311{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m52_c00311{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);}
.m3_c00311{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m29_c00311{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m24_c00311{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m38_c00311{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00311{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);}
.m4_c00311{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m53_c00311{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m27_c00311{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00311{transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);}
.m42_c00311{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m50_c00311{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.ma_c00311{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00311{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.v0_c00311{vertical-align:0.000000px;}
.ls0_c00311{letter-spacing:0.000000px;}
.sc__c00311{text-shadow:none;}
.sc0_c00311{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00311{-webkit-text-stroke:0px transparent;}
.sc0_c00311{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00311{word-spacing:0.000000px;}
.fc0_c00311{color:transparent;}
.fs4_c00311{font-size:34.560000px;}
.fs7_c00311{font-size:37.440000px;}
.fs9_c00311{font-size:46.080000px;}
.fs8_c00311{font-size:48.960000px;}
.fs3_c00311{font-size:51.840000px;}
.fsb_c00311{font-size:54.720000px;}
.fs5_c00311{font-size:57.600000px;}
.fs1_c00311{font-size:60.480000px;}
.fsd_c00311{font-size:63.360000px;}
.fs6_c00311{font-size:66.240000px;}
.fsc_c00311{font-size:69.120000px;}
.fsa_c00311{font-size:72.000000px;}
.fs0_c00311{font-size:74.880000px;}
.fs2_c00311{font-size:77.760000px;}
.y0_c00311{bottom:0.000000px;}
.y79_c00311{bottom:56.160000px;}
.y7a_c00311{bottom:58.320000px;}
.y75_c00311{bottom:86.400000px;}
.y73_c00311{bottom:87.120000px;}
.y76_c00311{bottom:87.840000px;}
.y77_c00311{bottom:88.560000px;}
.y78_c00311{bottom:89.280000px;}
.y74_c00311{bottom:90.720000px;}
.y70_c00311{bottom:119.520000px;}
.y6f_c00311{bottom:120.240000px;}
.y6e_c00311{bottom:120.960000px;}
.y71_c00311{bottom:121.680000px;}
.y6d_c00311{bottom:122.400000px;}
.y6c_c00311{bottom:123.120000px;}
.y72_c00311{bottom:123.840000px;}
.y67_c00311{bottom:162.000000px;}
.y68_c00311{bottom:162.720000px;}
.y69_c00311{bottom:164.880000px;}
.y66_c00311{bottom:165.600000px;}
.y6b_c00311{bottom:167.040000px;}
.y6a_c00311{bottom:167.760000px;}
.y65_c00311{bottom:204.480000px;}
.y63_c00311{bottom:208.080000px;}
.y64_c00311{bottom:210.240000px;}
.y60_c00311{bottom:248.400000px;}
.y5f_c00311{bottom:252.000000px;}
.y61_c00311{bottom:252.720000px;}
.y62_c00311{bottom:253.440000px;}
.y5a_c00311{bottom:291.600000px;}
.y5b_c00311{bottom:293.040000px;}
.y5d_c00311{bottom:293.760000px;}
.y5c_c00311{bottom:294.480000px;}
.y59_c00311{bottom:295.200000px;}
.y5e_c00311{bottom:295.920000px;}
.y58_c00311{bottom:335.520000px;}
.y57_c00311{bottom:336.240000px;}
.y53_c00311{bottom:367.200000px;}
.y54_c00311{bottom:367.920000px;}
.y52_c00311{bottom:370.080000px;}
.y55_c00311{bottom:370.800000px;}
.y56_c00311{bottom:371.520000px;}
.y4e_c00311{bottom:410.400000px;}
.y4c_c00311{bottom:411.120000px;}
.y4d_c00311{bottom:411.840000px;}
.y4f_c00311{bottom:412.560000px;}
.y4b_c00311{bottom:413.280000px;}
.y51_c00311{bottom:414.000000px;}
.y50_c00311{bottom:414.720000px;}
.y49_c00311{bottom:455.760000px;}
.y4a_c00311{bottom:457.200000px;}
.y48_c00311{bottom:458.640000px;}
.y43_c00311{bottom:507.600000px;}
.y44_c00311{bottom:508.320000px;}
.y42_c00311{bottom:510.480000px;}
.y45_c00311{bottom:511.200000px;}
.y47_c00311{bottom:511.920000px;}
.y46_c00311{bottom:513.360000px;}
.y40_c00311{bottom:550.800000px;}
.y3e_c00311{bottom:552.960000px;}
.y41_c00311{bottom:554.400000px;}
.y3f_c00311{bottom:555.120000px;}
.y3b_c00311{bottom:594.000000px;}
.y3d_c00311{bottom:595.440000px;}
.y39_c00311{bottom:596.160000px;}
.y3c_c00311{bottom:596.880000px;}
.y3a_c00311{bottom:597.600000px;}
.y36_c00311{bottom:637.200000px;}
.y35_c00311{bottom:637.920000px;}
.y37_c00311{bottom:638.640000px;}
.y38_c00311{bottom:639.360000px;}
.y34_c00311{bottom:640.080000px;}
.y2e_c00311{bottom:668.160000px;}
.y31_c00311{bottom:668.880000px;}
.y32_c00311{bottom:669.600000px;}
.y33_c00311{bottom:670.320000px;}
.y2d_c00311{bottom:671.040000px;}
.y2f_c00311{bottom:672.480000px;}
.y30_c00311{bottom:673.200000px;}
.y29_c00311{bottom:711.360000px;}
.y2b_c00311{bottom:712.080000px;}
.y27_c00311{bottom:713.520000px;}
.y28_c00311{bottom:714.240000px;}
.y2a_c00311{bottom:714.960000px;}
.y2c_c00311{bottom:715.680000px;}
.y26_c00311{bottom:756.000000px;}
.y25_c00311{bottom:758.160000px;}
.y22_c00311{bottom:786.240000px;}
.y20_c00311{bottom:788.400000px;}
.y23_c00311{bottom:789.120000px;}
.y24_c00311{bottom:789.840000px;}
.y21_c00311{bottom:790.560000px;}
.y1c_c00311{bottom:830.880000px;}
.y1b_c00311{bottom:831.600000px;}
.y1f_c00311{bottom:832.320000px;}
.y1d_c00311{bottom:833.760000px;}
.y1e_c00311{bottom:834.480000px;}
.y18_c00311{bottom:872.640000px;}
.y16_c00311{bottom:874.800000px;}
.y1a_c00311{bottom:876.240000px;}
.y19_c00311{bottom:876.960000px;}
.y17_c00311{bottom:877.680000px;}
.y12_c00311{bottom:916.560000px;}
.y10_c00311{bottom:918.000000px;}
.y13_c00311{bottom:918.720000px;}
.y15_c00311{bottom:919.440000px;}
.y14_c00311{bottom:920.160000px;}
.y11_c00311{bottom:920.880000px;}
.yf_c00311{bottom:959.760000px;}
.yd_c00311{bottom:960.480000px;}
.yb_c00311{bottom:961.200000px;}
.ye_c00311{bottom:961.920000px;}
.yc_c00311{bottom:964.080000px;}
.y9_c00311{bottom:1002.960000px;}
.ya_c00311{bottom:1003.680000px;}
.y7_c00311{bottom:1004.400000px;}
.y8_c00311{bottom:1006.560000px;}
.y6_c00311{bottom:1038.960000px;}
.y3_c00311{bottom:1045.440000px;}
.y2_c00311{bottom:1047.600000px;}
.y4_c00311{bottom:1049.760000px;}
.y5_c00311{bottom:1050.480000px;}
.y1_c00311{bottom:1088.640000px;}
.h6_c00311{height:31.100625px;}
.h9_c00311{height:33.692344px;}
.hb_c00311{height:41.467500px;}
.ha_c00311{height:44.059219px;}
.h5_c00311{height:46.650937px;}
.hd_c00311{height:49.242656px;}
.h7_c00311{height:51.834375px;}
.h3_c00311{height:54.426094px;}
.hf_c00311{height:57.017812px;}
.h8_c00311{height:59.609531px;}
.he_c00311{height:62.201250px;}
.hc_c00311{height:64.792969px;}
.h2_c00311{height:67.384687px;}
.h4_c00311{height:69.976406px;}
.h1_c00311{height:1151.250000px;}
.h0_c00311{height:1151.280000px;}
.w0_c00311{width:763.920000px;}
.w1_c00311{width:764.250000px;}
.x0_c00311{left:0.000000px;}
.x2_c00311{left:56.880000px;}
.x21_c00311{left:58.320000px;}
.x35_c00311{left:59.760000px;}
.x2d_c00311{left:110.160000px;}
.x2c_c00311{left:130.320000px;}
.x16_c00311{left:131.760000px;}
.x3_c00311{left:133.200000px;}
.x2e_c00311{left:143.280000px;}
.xe_c00311{left:175.680000px;}
.x12_c00311{left:185.760000px;}
.x1f_c00311{left:196.560000px;}
.x3a_c00311{left:207.360000px;}
.xf_c00311{left:208.800000px;}
.x17_c00311{left:218.160000px;}
.x11_c00311{left:228.960000px;}
.x13_c00311{left:239.040000px;}
.x20_c00311{left:249.840000px;}
.x25_c00311{left:251.280000px;}
.x2f_c00311{left:262.080000px;}
.x3b_c00311{left:272.160000px;}
.x14_c00311{left:283.680000px;}
.x31_c00311{left:304.560000px;}
.x4_c00311{left:315.360000px;}
.x22_c00311{left:326.160000px;}
.x38_c00311{left:327.600000px;}
.x1b_c00311{left:347.760000px;}
.x32_c00311{left:349.200000px;}
.x26_c00311{left:358.560000px;}
.x23_c00311{left:369.360000px;}
.x5_c00311{left:370.800000px;}
.x3c_c00311{left:381.600000px;}
.x1c_c00311{left:401.040000px;}
.x6_c00311{left:412.560000px;}
.x18_c00311{left:422.640000px;}
.x29_c00311{left:424.080000px;}
.x33_c00311{left:434.880000px;}
.x1e_c00311{left:444.960000px;}
.x19_c00311{left:466.560000px;}
.x27_c00311{left:476.640000px;}
.x34_c00311{left:488.880000px;}
.x7_c00311{left:510.480000px;}
.x39_c00311{left:520.560000px;}
.x3d_c00311{left:531.360000px;}
.xd_c00311{left:552.960000px;}
.x8_c00311{left:564.480000px;}
.x28_c00311{left:574.560000px;}
.x1a_c00311{left:576.000000px;}
.x2a_c00311{left:585.360000px;}
.x1d_c00311{left:586.800000px;}
.x24_c00311{left:606.960000px;}
.x9_c00311{left:608.400000px;}
.x37_c00311{left:630.720000px;}
.x30_c00311{left:640.080000px;}
.xa_c00311{left:641.520000px;}
.x2b_c00311{left:650.160000px;}
.x15_c00311{left:672.480000px;}
.x1_c00311{left:680.400000px;}
.x10_c00311{left:682.560000px;}
.xb_c00311{left:684.000000px;}
.x36_c00311{left:702.000000px;}
.xc_c00311{left:703.440000px;}
@media print{
.v0_c00311{vertical-align:0.000000pt;}
.ls0_c00311{letter-spacing:0.000000pt;}
.ws0_c00311{word-spacing:0.000000pt;}
.fs4_c00311{font-size:30.720000pt;}
.fs7_c00311{font-size:33.280000pt;}
.fs9_c00311{font-size:40.960000pt;}
.fs8_c00311{font-size:43.520000pt;}
.fs3_c00311{font-size:46.080000pt;}
.fsb_c00311{font-size:48.640000pt;}
.fs5_c00311{font-size:51.200000pt;}
.fs1_c00311{font-size:53.760000pt;}
.fsd_c00311{font-size:56.320000pt;}
.fs6_c00311{font-size:58.880000pt;}
.fsc_c00311{font-size:61.440000pt;}
.fsa_c00311{font-size:64.000000pt;}
.fs0_c00311{font-size:66.560000pt;}
.fs2_c00311{font-size:69.120000pt;}
.y0_c00311{bottom:0.000000pt;}
.y79_c00311{bottom:49.920000pt;}
.y7a_c00311{bottom:51.840000pt;}
.y75_c00311{bottom:76.800000pt;}
.y73_c00311{bottom:77.440000pt;}
.y76_c00311{bottom:78.080000pt;}
.y77_c00311{bottom:78.720000pt;}
.y78_c00311{bottom:79.360000pt;}
.y74_c00311{bottom:80.640000pt;}
.y70_c00311{bottom:106.240000pt;}
.y6f_c00311{bottom:106.880000pt;}
.y6e_c00311{bottom:107.520000pt;}
.y71_c00311{bottom:108.160000pt;}
.y6d_c00311{bottom:108.800000pt;}
.y6c_c00311{bottom:109.440000pt;}
.y72_c00311{bottom:110.080000pt;}
.y67_c00311{bottom:144.000000pt;}
.y68_c00311{bottom:144.640000pt;}
.y69_c00311{bottom:146.560000pt;}
.y66_c00311{bottom:147.200000pt;}
.y6b_c00311{bottom:148.480000pt;}
.y6a_c00311{bottom:149.120000pt;}
.y65_c00311{bottom:181.760000pt;}
.y63_c00311{bottom:184.960000pt;}
.y64_c00311{bottom:186.880000pt;}
.y60_c00311{bottom:220.800000pt;}
.y5f_c00311{bottom:224.000000pt;}
.y61_c00311{bottom:224.640000pt;}
.y62_c00311{bottom:225.280000pt;}
.y5a_c00311{bottom:259.200000pt;}
.y5b_c00311{bottom:260.480000pt;}
.y5d_c00311{bottom:261.120000pt;}
.y5c_c00311{bottom:261.760000pt;}
.y59_c00311{bottom:262.400000pt;}
.y5e_c00311{bottom:263.040000pt;}
.y58_c00311{bottom:298.240000pt;}
.y57_c00311{bottom:298.880000pt;}
.y53_c00311{bottom:326.400000pt;}
.y54_c00311{bottom:327.040000pt;}
.y52_c00311{bottom:328.960000pt;}
.y55_c00311{bottom:329.600000pt;}
.y56_c00311{bottom:330.240000pt;}
.y4e_c00311{bottom:364.800000pt;}
.y4c_c00311{bottom:365.440000pt;}
.y4d_c00311{bottom:366.080000pt;}
.y4f_c00311{bottom:366.720000pt;}
.y4b_c00311{bottom:367.360000pt;}
.y51_c00311{bottom:368.000000pt;}
.y50_c00311{bottom:368.640000pt;}
.y49_c00311{bottom:405.120000pt;}
.y4a_c00311{bottom:406.400000pt;}
.y48_c00311{bottom:407.680000pt;}
.y43_c00311{bottom:451.200000pt;}
.y44_c00311{bottom:451.840000pt;}
.y42_c00311{bottom:453.760000pt;}
.y45_c00311{bottom:454.400000pt;}
.y47_c00311{bottom:455.040000pt;}
.y46_c00311{bottom:456.320000pt;}
.y40_c00311{bottom:489.600000pt;}
.y3e_c00311{bottom:491.520000pt;}
.y41_c00311{bottom:492.800000pt;}
.y3f_c00311{bottom:493.440000pt;}
.y3b_c00311{bottom:528.000000pt;}
.y3d_c00311{bottom:529.280000pt;}
.y39_c00311{bottom:529.920000pt;}
.y3c_c00311{bottom:530.560000pt;}
.y3a_c00311{bottom:531.200000pt;}
.y36_c00311{bottom:566.400000pt;}
.y35_c00311{bottom:567.040000pt;}
.y37_c00311{bottom:567.680000pt;}
.y38_c00311{bottom:568.320000pt;}
.y34_c00311{bottom:568.960000pt;}
.y2e_c00311{bottom:593.920000pt;}
.y31_c00311{bottom:594.560000pt;}
.y32_c00311{bottom:595.200000pt;}
.y33_c00311{bottom:595.840000pt;}
.y2d_c00311{bottom:596.480000pt;}
.y2f_c00311{bottom:597.760000pt;}
.y30_c00311{bottom:598.400000pt;}
.y29_c00311{bottom:632.320000pt;}
.y2b_c00311{bottom:632.960000pt;}
.y27_c00311{bottom:634.240000pt;}
.y28_c00311{bottom:634.880000pt;}
.y2a_c00311{bottom:635.520000pt;}
.y2c_c00311{bottom:636.160000pt;}
.y26_c00311{bottom:672.000000pt;}
.y25_c00311{bottom:673.920000pt;}
.y22_c00311{bottom:698.880000pt;}
.y20_c00311{bottom:700.800000pt;}
.y23_c00311{bottom:701.440000pt;}
.y24_c00311{bottom:702.080000pt;}
.y21_c00311{bottom:702.720000pt;}
.y1c_c00311{bottom:738.560000pt;}
.y1b_c00311{bottom:739.200000pt;}
.y1f_c00311{bottom:739.840000pt;}
.y1d_c00311{bottom:741.120000pt;}
.y1e_c00311{bottom:741.760000pt;}
.y18_c00311{bottom:775.680000pt;}
.y16_c00311{bottom:777.600000pt;}
.y1a_c00311{bottom:778.880000pt;}
.y19_c00311{bottom:779.520000pt;}
.y17_c00311{bottom:780.160000pt;}
.y12_c00311{bottom:814.720000pt;}
.y10_c00311{bottom:816.000000pt;}
.y13_c00311{bottom:816.640000pt;}
.y15_c00311{bottom:817.280000pt;}
.y14_c00311{bottom:817.920000pt;}
.y11_c00311{bottom:818.560000pt;}
.yf_c00311{bottom:853.120000pt;}
.yd_c00311{bottom:853.760000pt;}
.yb_c00311{bottom:854.400000pt;}
.ye_c00311{bottom:855.040000pt;}
.yc_c00311{bottom:856.960000pt;}
.y9_c00311{bottom:891.520000pt;}
.ya_c00311{bottom:892.160000pt;}
.y7_c00311{bottom:892.800000pt;}
.y8_c00311{bottom:894.720000pt;}
.y6_c00311{bottom:923.520000pt;}
.y3_c00311{bottom:929.280000pt;}
.y2_c00311{bottom:931.200000pt;}
.y4_c00311{bottom:933.120000pt;}
.y5_c00311{bottom:933.760000pt;}
.y1_c00311{bottom:967.680000pt;}
.h6_c00311{height:27.645000pt;}
.h9_c00311{height:29.948750pt;}
.hb_c00311{height:36.860000pt;}
.ha_c00311{height:39.163750pt;}
.h5_c00311{height:41.467500pt;}
.hd_c00311{height:43.771250pt;}
.h7_c00311{height:46.075000pt;}
.h3_c00311{height:48.378750pt;}
.hf_c00311{height:50.682500pt;}
.h8_c00311{height:52.986250pt;}
.he_c00311{height:55.290000pt;}
.hc_c00311{height:57.593750pt;}
.h2_c00311{height:59.897500pt;}
.h4_c00311{height:62.201250pt;}
.h1_c00311{height:1023.333333pt;}
.h0_c00311{height:1023.360000pt;}
.w0_c00311{width:679.040000pt;}
.w1_c00311{width:679.333333pt;}
.x0_c00311{left:0.000000pt;}
.x2_c00311{left:50.560000pt;}
.x21_c00311{left:51.840000pt;}
.x35_c00311{left:53.120000pt;}
.x2d_c00311{left:97.920000pt;}
.x2c_c00311{left:115.840000pt;}
.x16_c00311{left:117.120000pt;}
.x3_c00311{left:118.400000pt;}
.x2e_c00311{left:127.360000pt;}
.xe_c00311{left:156.160000pt;}
.x12_c00311{left:165.120000pt;}
.x1f_c00311{left:174.720000pt;}
.x3a_c00311{left:184.320000pt;}
.xf_c00311{left:185.600000pt;}
.x17_c00311{left:193.920000pt;}
.x11_c00311{left:203.520000pt;}
.x13_c00311{left:212.480000pt;}
.x20_c00311{left:222.080000pt;}
.x25_c00311{left:223.360000pt;}
.x2f_c00311{left:232.960000pt;}
.x3b_c00311{left:241.920000pt;}
.x14_c00311{left:252.160000pt;}
.x31_c00311{left:270.720000pt;}
.x4_c00311{left:280.320000pt;}
.x22_c00311{left:289.920000pt;}
.x38_c00311{left:291.200000pt;}
.x1b_c00311{left:309.120000pt;}
.x32_c00311{left:310.400000pt;}
.x26_c00311{left:318.720000pt;}
.x23_c00311{left:328.320000pt;}
.x5_c00311{left:329.600000pt;}
.x3c_c00311{left:339.200000pt;}
.x1c_c00311{left:356.480000pt;}
.x6_c00311{left:366.720000pt;}
.x18_c00311{left:375.680000pt;}
.x29_c00311{left:376.960000pt;}
.x33_c00311{left:386.560000pt;}
.x1e_c00311{left:395.520000pt;}
.x19_c00311{left:414.720000pt;}
.x27_c00311{left:423.680000pt;}
.x34_c00311{left:434.560000pt;}
.x7_c00311{left:453.760000pt;}
.x39_c00311{left:462.720000pt;}
.x3d_c00311{left:472.320000pt;}
.xd_c00311{left:491.520000pt;}
.x8_c00311{left:501.760000pt;}
.x28_c00311{left:510.720000pt;}
.x1a_c00311{left:512.000000pt;}
.x2a_c00311{left:520.320000pt;}
.x1d_c00311{left:521.600000pt;}
.x24_c00311{left:539.520000pt;}
.x9_c00311{left:540.800000pt;}
.x37_c00311{left:560.640000pt;}
.x30_c00311{left:568.960000pt;}
.xa_c00311{left:570.240000pt;}
.x2b_c00311{left:577.920000pt;}
.x15_c00311{left:597.760000pt;}
.x1_c00311{left:604.800000pt;}
.x10_c00311{left:606.720000pt;}
.xb_c00311{left:608.000000pt;}
.x36_c00311{left:624.000000pt;}
.xc_c00311{left:625.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_fac658dac3f3f20d7c0f83d7.woff2')format("woff");}.ff1_c00312{font-family:ff1_c00312;line-height:1.109863;font-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_c00312{transform:matrix(0.209600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209600,0.000000,0.000000,0.250000,0,0);}
.m37_c00312{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);}
.m1c_c00312{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m40_c00312{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.me_c00312{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00312{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m13_c00312{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m21_c00312{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m2_c00312{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00312{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00312{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mc_c00312{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m8_c00312{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mf_c00312{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.md_c00312{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m24_c00312{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m15_c00312{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m36_c00312{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m20_c00312{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m41_c00312{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m42_c00312{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00312{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m32_c00312{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m26_c00312{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m12_c00312{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m10_c00312{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m25_c00312{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m22_c00312{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m28_c00312{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00312{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1_c00312{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);}
.m38_c00312{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m27_c00312{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m14_c00312{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00312{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00312{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m4_c00312{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m30_c00312{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00312{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m0_c00312{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m16_c00312{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);}
.m3d_c00312{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);}
.m35_c00312{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m17_c00312{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);}
.m1e_c00312{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m7_c00312{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m46_c00312{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00312{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.ma_c00312{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m23_c00312{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);}
.m18_c00312{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m45_c00312{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m19_c00312{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00312{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m6_c00312{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m3_c00312{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00312{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m44_c00312{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00312{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m47_c00312{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m31_c00312{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m34_c00312{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00312{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m43_c00312{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);}
.m3c_c00312{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m5_c00312{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m33_c00312{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m39_c00312{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m29_c00312{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m9_c00312{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00312{transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);}
.m11_c00312{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m48_c00312{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.v0_c00312{vertical-align:0.000000px;}
.ls0_c00312{letter-spacing:0.000000px;}
.sc__c00312{text-shadow:none;}
.sc0_c00312{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00312{-webkit-text-stroke:0px transparent;}
.sc0_c00312{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00312{word-spacing:0.000000px;}
.fc0_c00312{color:transparent;}
.fsd_c00312{font-size:34.560000px;}
.fsf_c00312{font-size:37.440000px;}
.fse_c00312{font-size:43.200000px;}
.fs7_c00312{font-size:46.080000px;}
.fs5_c00312{font-size:48.960000px;}
.fs3_c00312{font-size:51.840000px;}
.fsa_c00312{font-size:54.720000px;}
.fs9_c00312{font-size:57.600000px;}
.fs6_c00312{font-size:60.480000px;}
.fs1_c00312{font-size:63.360000px;}
.fsb_c00312{font-size:66.240000px;}
.fs4_c00312{font-size:69.120000px;}
.fs0_c00312{font-size:72.000000px;}
.fs2_c00312{font-size:74.880000px;}
.fsc_c00312{font-size:77.760000px;}
.fs8_c00312{font-size:80.640000px;}
.y0_c00312{bottom:0.000000px;}
.y65_c00312{bottom:68.400000px;}
.y64_c00312{bottom:70.560000px;}
.y67_c00312{bottom:72.720000px;}
.y63_c00312{bottom:73.440000px;}
.y66_c00312{bottom:74.160000px;}
.y69_c00312{bottom:74.880000px;}
.y68_c00312{bottom:75.600000px;}
.y61_c00312{bottom:111.600000px;}
.y5f_c00312{bottom:115.200000px;}
.y60_c00312{bottom:116.640000px;}
.y62_c00312{bottom:118.800000px;}
.y5d_c00312{bottom:154.800000px;}
.y5e_c00312{bottom:158.400000px;}
.y5b_c00312{bottom:159.120000px;}
.y5c_c00312{bottom:159.840000px;}
.y58_c00312{bottom:198.720000px;}
.y57_c00312{bottom:200.160000px;}
.y59_c00312{bottom:200.880000px;}
.y56_c00312{bottom:202.320000px;}
.y5a_c00312{bottom:203.040000px;}
.y52_c00312{bottom:241.920000px;}
.y54_c00312{bottom:242.640000px;}
.y53_c00312{bottom:244.080000px;}
.y55_c00312{bottom:244.800000px;}
.y50_c00312{bottom:245.520000px;}
.y51_c00312{bottom:246.240000px;}
.y4f_c00312{bottom:288.000000px;}
.y4e_c00312{bottom:289.440000px;}
.y4b_c00312{bottom:318.240000px;}
.y4a_c00312{bottom:318.960000px;}
.y4c_c00312{bottom:320.400000px;}
.y49_c00312{bottom:321.120000px;}
.y4d_c00312{bottom:323.280000px;}
.y44_c00312{bottom:361.440000px;}
.y46_c00312{bottom:362.160000px;}
.y43_c00312{bottom:362.880000px;}
.y48_c00312{bottom:364.320000px;}
.y45_c00312{bottom:365.040000px;}
.y47_c00312{bottom:365.760000px;}
.y41_c00312{bottom:404.640000px;}
.y40_c00312{bottom:407.520000px;}
.y3c_c00312{bottom:436.320000px;}
.y3f_c00312{bottom:437.040000px;}
.y3b_c00312{bottom:437.760000px;}
.y3a_c00312{bottom:438.480000px;}
.y3e_c00312{bottom:439.200000px;}
.y3d_c00312{bottom:439.920000px;}
.y42_c00312{bottom:440.640000px;}
.y37_c00312{bottom:479.520000px;}
.y38_c00312{bottom:481.680000px;}
.y36_c00312{bottom:482.400000px;}
.y34_c00312{bottom:511.920000px;}
.y33_c00312{bottom:512.640000px;}
.y31_c00312{bottom:513.360000px;}
.y39_c00312{bottom:514.080000px;}
.y32_c00312{bottom:514.800000px;}
.y35_c00312{bottom:515.520000px;}
.y30_c00312{bottom:547.200000px;}
.y2e_c00312{bottom:553.680000px;}
.y2c_c00312{bottom:556.560000px;}
.y2f_c00312{bottom:558.000000px;}
.y2d_c00312{bottom:558.720000px;}
.y2a_c00312{bottom:596.880000px;}
.y28_c00312{bottom:599.760000px;}
.y2b_c00312{bottom:600.480000px;}
.y29_c00312{bottom:601.920000px;}
.y24_c00312{bottom:640.800000px;}
.y26_c00312{bottom:641.520000px;}
.y23_c00312{bottom:642.960000px;}
.y27_c00312{bottom:643.680000px;}
.y25_c00312{bottom:644.400000px;}
.y20_c00312{bottom:684.000000px;}
.y21_c00312{bottom:685.440000px;}
.y1f_c00312{bottom:686.160000px;}
.y22_c00312{bottom:686.880000px;}
.y17_c00312{bottom:781.200000px;}
.y16_c00312{bottom:781.920000px;}
.y1c_c00312{bottom:783.360000px;}
.y1e_c00312{bottom:784.080000px;}
.y1d_c00312{bottom:786.240000px;}
.y14_c00312{bottom:823.680000px;}
.y15_c00312{bottom:825.120000px;}
.y13_c00312{bottom:825.840000px;}
.y1b_c00312{bottom:826.560000px;}
.y12_c00312{bottom:866.880000px;}
.y11_c00312{bottom:868.320000px;}
.y1a_c00312{bottom:869.040000px;}
.y10_c00312{bottom:910.800000px;}
.yf_c00312{bottom:911.520000px;}
.y19_c00312{bottom:912.960000px;}
.y18_c00312{bottom:914.400000px;}
.yd_c00312{bottom:953.280000px;}
.yc_c00312{bottom:954.000000px;}
.ye_c00312{bottom:954.720000px;}
.y9_c00312{bottom:988.560000px;}
.y7_c00312{bottom:995.760000px;}
.y6_c00312{bottom:996.480000px;}
.yb_c00312{bottom:997.920000px;}
.y8_c00312{bottom:1000.080000px;}
.y3_c00312{bottom:1038.960000px;}
.y2_c00312{bottom:1040.400000px;}
.ya_c00312{bottom:1041.120000px;}
.y4_c00312{bottom:1042.560000px;}
.y5_c00312{bottom:1043.280000px;}
.y1_c00312{bottom:1087.200000px;}
.hf_c00312{height:31.100625px;}
.h11_c00312{height:33.692344px;}
.h10_c00312{height:38.875781px;}
.h9_c00312{height:41.467500px;}
.h7_c00312{height:44.059219px;}
.h5_c00312{height:46.650937px;}
.hc_c00312{height:49.242656px;}
.hb_c00312{height:51.834375px;}
.h8_c00312{height:54.426094px;}
.h3_c00312{height:57.017812px;}
.hd_c00312{height:59.609531px;}
.h6_c00312{height:62.201250px;}
.h2_c00312{height:64.792969px;}
.h4_c00312{height:67.384687px;}
.he_c00312{height:69.976406px;}
.ha_c00312{height:72.568125px;}
.h0_c00312{height:1140.480000px;}
.h1_c00312{height:1140.750000px;}
.w1_c00312{width:747.000000px;}
.w0_c00312{width:747.360000px;}
.x0_c00312{left:0.000000px;}
.x2_c00312{left:54.720000px;}
.x10_c00312{left:56.160000px;}
.x1e_c00312{left:57.600000px;}
.x30_c00312{left:59.760000px;}
.x35_c00312{left:61.200000px;}
.x3_c00312{left:129.600000px;}
.x1f_c00312{left:131.040000px;}
.x1a_c00312{left:163.440000px;}
.x16_c00312{left:172.800000px;}
.x20_c00312{left:174.240000px;}
.x4_c00312{left:182.880000px;}
.x27_c00312{left:185.040000px;}
.x2e_c00312{left:194.400000px;}
.x1b_c00312{left:205.920000px;}
.x34_c00312{left:218.160000px;}
.x21_c00312{left:227.520000px;}
.x33_c00312{left:228.960000px;}
.x5_c00312{left:237.600000px;}
.x11_c00312{left:248.400000px;}
.x28_c00312{left:271.440000px;}
.x22_c00312{left:281.520000px;}
.x31_c00312{left:293.760000px;}
.x17_c00312{left:314.640000px;}
.x23_c00312{left:326.160000px;}
.x2b_c00312{left:347.760000px;}
.x12_c00312{left:356.400000px;}
.x8_c00312{left:367.200000px;}
.x24_c00312{left:369.360000px;}
.x6_c00312{left:388.080000px;}
.x2f_c00312{left:390.240000px;}
.x18_c00312{left:400.320000px;}
.x1c_c00312{left:410.400000px;}
.x32_c00312{left:412.560000px;}
.x9_c00312{left:421.920000px;}
.x25_c00312{left:423.360000px;}
.x7_c00312{left:442.800000px;}
.x2c_c00312{left:444.960000px;}
.x36_c00312{left:455.040000px;}
.x2d_c00312{left:497.520000px;}
.xa_c00312{left:518.400000px;}
.x26_c00312{left:519.840000px;}
.x1d_c00312{left:529.920000px;}
.xf_c00312{left:551.520000px;}
.x13_c00312{left:573.120000px;}
.x14_c00312{left:584.640000px;}
.xb_c00312{left:604.800000px;}
.x19_c00312{left:606.240000px;}
.xc_c00312{left:637.920000px;}
.x29_c00312{left:639.360000px;}
.x1_c00312{left:659.520000px;}
.x15_c00312{left:671.760000px;}
.xd_c00312{left:681.120000px;}
.x2a_c00312{left:682.560000px;}
.xe_c00312{left:701.280000px;}
@media print{
.v0_c00312{vertical-align:0.000000pt;}
.ls0_c00312{letter-spacing:0.000000pt;}
.ws0_c00312{word-spacing:0.000000pt;}
.fsd_c00312{font-size:30.720000pt;}
.fsf_c00312{font-size:33.280000pt;}
.fse_c00312{font-size:38.400000pt;}
.fs7_c00312{font-size:40.960000pt;}
.fs5_c00312{font-size:43.520000pt;}
.fs3_c00312{font-size:46.080000pt;}
.fsa_c00312{font-size:48.640000pt;}
.fs9_c00312{font-size:51.200000pt;}
.fs6_c00312{font-size:53.760000pt;}
.fs1_c00312{font-size:56.320000pt;}
.fsb_c00312{font-size:58.880000pt;}
.fs4_c00312{font-size:61.440000pt;}
.fs0_c00312{font-size:64.000000pt;}
.fs2_c00312{font-size:66.560000pt;}
.fsc_c00312{font-size:69.120000pt;}
.fs8_c00312{font-size:71.680000pt;}
.y0_c00312{bottom:0.000000pt;}
.y65_c00312{bottom:60.800000pt;}
.y64_c00312{bottom:62.720000pt;}
.y67_c00312{bottom:64.640000pt;}
.y63_c00312{bottom:65.280000pt;}
.y66_c00312{bottom:65.920000pt;}
.y69_c00312{bottom:66.560000pt;}
.y68_c00312{bottom:67.200000pt;}
.y61_c00312{bottom:99.200000pt;}
.y5f_c00312{bottom:102.400000pt;}
.y60_c00312{bottom:103.680000pt;}
.y62_c00312{bottom:105.600000pt;}
.y5d_c00312{bottom:137.600000pt;}
.y5e_c00312{bottom:140.800000pt;}
.y5b_c00312{bottom:141.440000pt;}
.y5c_c00312{bottom:142.080000pt;}
.y58_c00312{bottom:176.640000pt;}
.y57_c00312{bottom:177.920000pt;}
.y59_c00312{bottom:178.560000pt;}
.y56_c00312{bottom:179.840000pt;}
.y5a_c00312{bottom:180.480000pt;}
.y52_c00312{bottom:215.040000pt;}
.y54_c00312{bottom:215.680000pt;}
.y53_c00312{bottom:216.960000pt;}
.y55_c00312{bottom:217.600000pt;}
.y50_c00312{bottom:218.240000pt;}
.y51_c00312{bottom:218.880000pt;}
.y4f_c00312{bottom:256.000000pt;}
.y4e_c00312{bottom:257.280000pt;}
.y4b_c00312{bottom:282.880000pt;}
.y4a_c00312{bottom:283.520000pt;}
.y4c_c00312{bottom:284.800000pt;}
.y49_c00312{bottom:285.440000pt;}
.y4d_c00312{bottom:287.360000pt;}
.y44_c00312{bottom:321.280000pt;}
.y46_c00312{bottom:321.920000pt;}
.y43_c00312{bottom:322.560000pt;}
.y48_c00312{bottom:323.840000pt;}
.y45_c00312{bottom:324.480000pt;}
.y47_c00312{bottom:325.120000pt;}
.y41_c00312{bottom:359.680000pt;}
.y40_c00312{bottom:362.240000pt;}
.y3c_c00312{bottom:387.840000pt;}
.y3f_c00312{bottom:388.480000pt;}
.y3b_c00312{bottom:389.120000pt;}
.y3a_c00312{bottom:389.760000pt;}
.y3e_c00312{bottom:390.400000pt;}
.y3d_c00312{bottom:391.040000pt;}
.y42_c00312{bottom:391.680000pt;}
.y37_c00312{bottom:426.240000pt;}
.y38_c00312{bottom:428.160000pt;}
.y36_c00312{bottom:428.800000pt;}
.y34_c00312{bottom:455.040000pt;}
.y33_c00312{bottom:455.680000pt;}
.y31_c00312{bottom:456.320000pt;}
.y39_c00312{bottom:456.960000pt;}
.y32_c00312{bottom:457.600000pt;}
.y35_c00312{bottom:458.240000pt;}
.y30_c00312{bottom:486.400000pt;}
.y2e_c00312{bottom:492.160000pt;}
.y2c_c00312{bottom:494.720000pt;}
.y2f_c00312{bottom:496.000000pt;}
.y2d_c00312{bottom:496.640000pt;}
.y2a_c00312{bottom:530.560000pt;}
.y28_c00312{bottom:533.120000pt;}
.y2b_c00312{bottom:533.760000pt;}
.y29_c00312{bottom:535.040000pt;}
.y24_c00312{bottom:569.600000pt;}
.y26_c00312{bottom:570.240000pt;}
.y23_c00312{bottom:571.520000pt;}
.y27_c00312{bottom:572.160000pt;}
.y25_c00312{bottom:572.800000pt;}
.y20_c00312{bottom:608.000000pt;}
.y21_c00312{bottom:609.280000pt;}
.y1f_c00312{bottom:609.920000pt;}
.y22_c00312{bottom:610.560000pt;}
.y17_c00312{bottom:694.400000pt;}
.y16_c00312{bottom:695.040000pt;}
.y1c_c00312{bottom:696.320000pt;}
.y1e_c00312{bottom:696.960000pt;}
.y1d_c00312{bottom:698.880000pt;}
.y14_c00312{bottom:732.160000pt;}
.y15_c00312{bottom:733.440000pt;}
.y13_c00312{bottom:734.080000pt;}
.y1b_c00312{bottom:734.720000pt;}
.y12_c00312{bottom:770.560000pt;}
.y11_c00312{bottom:771.840000pt;}
.y1a_c00312{bottom:772.480000pt;}
.y10_c00312{bottom:809.600000pt;}
.yf_c00312{bottom:810.240000pt;}
.y19_c00312{bottom:811.520000pt;}
.y18_c00312{bottom:812.800000pt;}
.yd_c00312{bottom:847.360000pt;}
.yc_c00312{bottom:848.000000pt;}
.ye_c00312{bottom:848.640000pt;}
.y9_c00312{bottom:878.720000pt;}
.y7_c00312{bottom:885.120000pt;}
.y6_c00312{bottom:885.760000pt;}
.yb_c00312{bottom:887.040000pt;}
.y8_c00312{bottom:888.960000pt;}
.y3_c00312{bottom:923.520000pt;}
.y2_c00312{bottom:924.800000pt;}
.ya_c00312{bottom:925.440000pt;}
.y4_c00312{bottom:926.720000pt;}
.y5_c00312{bottom:927.360000pt;}
.y1_c00312{bottom:966.400000pt;}
.hf_c00312{height:27.645000pt;}
.h11_c00312{height:29.948750pt;}
.h10_c00312{height:34.556250pt;}
.h9_c00312{height:36.860000pt;}
.h7_c00312{height:39.163750pt;}
.h5_c00312{height:41.467500pt;}
.hc_c00312{height:43.771250pt;}
.hb_c00312{height:46.075000pt;}
.h8_c00312{height:48.378750pt;}
.h3_c00312{height:50.682500pt;}
.hd_c00312{height:52.986250pt;}
.h6_c00312{height:55.290000pt;}
.h2_c00312{height:57.593750pt;}
.h4_c00312{height:59.897500pt;}
.he_c00312{height:62.201250pt;}
.ha_c00312{height:64.505000pt;}
.h0_c00312{height:1013.760000pt;}
.h1_c00312{height:1014.000000pt;}
.w1_c00312{width:664.000000pt;}
.w0_c00312{width:664.320000pt;}
.x0_c00312{left:0.000000pt;}
.x2_c00312{left:48.640000pt;}
.x10_c00312{left:49.920000pt;}
.x1e_c00312{left:51.200000pt;}
.x30_c00312{left:53.120000pt;}
.x35_c00312{left:54.400000pt;}
.x3_c00312{left:115.200000pt;}
.x1f_c00312{left:116.480000pt;}
.x1a_c00312{left:145.280000pt;}
.x16_c00312{left:153.600000pt;}
.x20_c00312{left:154.880000pt;}
.x4_c00312{left:162.560000pt;}
.x27_c00312{left:164.480000pt;}
.x2e_c00312{left:172.800000pt;}
.x1b_c00312{left:183.040000pt;}
.x34_c00312{left:193.920000pt;}
.x21_c00312{left:202.240000pt;}
.x33_c00312{left:203.520000pt;}
.x5_c00312{left:211.200000pt;}
.x11_c00312{left:220.800000pt;}
.x28_c00312{left:241.280000pt;}
.x22_c00312{left:250.240000pt;}
.x31_c00312{left:261.120000pt;}
.x17_c00312{left:279.680000pt;}
.x23_c00312{left:289.920000pt;}
.x2b_c00312{left:309.120000pt;}
.x12_c00312{left:316.800000pt;}
.x8_c00312{left:326.400000pt;}
.x24_c00312{left:328.320000pt;}
.x6_c00312{left:344.960000pt;}
.x2f_c00312{left:346.880000pt;}
.x18_c00312{left:355.840000pt;}
.x1c_c00312{left:364.800000pt;}
.x32_c00312{left:366.720000pt;}
.x9_c00312{left:375.040000pt;}
.x25_c00312{left:376.320000pt;}
.x7_c00312{left:393.600000pt;}
.x2c_c00312{left:395.520000pt;}
.x36_c00312{left:404.480000pt;}
.x2d_c00312{left:442.240000pt;}
.xa_c00312{left:460.800000pt;}
.x26_c00312{left:462.080000pt;}
.x1d_c00312{left:471.040000pt;}
.xf_c00312{left:490.240000pt;}
.x13_c00312{left:509.440000pt;}
.x14_c00312{left:519.680000pt;}
.xb_c00312{left:537.600000pt;}
.x19_c00312{left:538.880000pt;}
.xc_c00312{left:567.040000pt;}
.x29_c00312{left:568.320000pt;}
.x1_c00312{left:586.240000pt;}
.x15_c00312{left:597.120000pt;}
.xd_c00312{left:605.440000pt;}
.x2a_c00312{left:606.720000pt;}
.xe_c00312{left:623.360000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3ed88e5ae4aad9c52fac6cfc.woff2')format("woff");}.ff1_c00313{font-family:ff1_c00313;line-height:1.109863;font-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_c00313{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);}
.m42_c00313{transform:matrix(0.205350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205350,0.000000,0.000000,0.250000,0,0);}
.m3f_c00313{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_c00313{transform:matrix(0.227675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227675,0.000000,0.000000,0.250000,0,0);}
.m3e_c00313{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m19_c00313{transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);}
.m1b_c00313{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.me_c00313{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m23_c00313{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m28_c00313{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m27_c00313{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00313{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00313{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00313{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m39_c00313{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m25_c00313{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m29_c00313{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00313{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m24_c00313{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m7_c00313{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m38_c00313{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m5_c00313{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m14_c00313{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m12_c00313{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00313{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m36_c00313{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00313{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mf_c00313{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00313{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m8_c00313{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m18_c00313{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m44_c00313{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00313{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3_c00313{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m43_c00313{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m0_c00313{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m20_c00313{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00313{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.mc_c00313{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00313{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m2_c00313{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);}
.m26_c00313{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m34_c00313{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m15_c00313{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m16_c00313{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.ma_c00313{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00313{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m17_c00313{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);}
.m13_c00313{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);}
.m40_c00313{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);}
.m6_c00313{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);}
.m32_c00313{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.mb_c00313{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);}
.m2b_c00313{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m10_c00313{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m31_c00313{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00313{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m33_c00313{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);}
.m35_c00313{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.md_c00313{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m30_c00313{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m4_c00313{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m11_c00313{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);}
.m9_c00313{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m37_c00313{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m22_c00313{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00313{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);}
.m41_c00313{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00313{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.v1_c00313{vertical-align:-5.760000px;}
.v0_c00313{vertical-align:0.000000px;}
.ls0_c00313{letter-spacing:0.000000px;}
.sc__c00313{text-shadow:none;}
.sc0_c00313{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00313{-webkit-text-stroke:0px transparent;}
.sc0_c00313{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00313{word-spacing:0.000000px;}
.ws0_c00313{word-spacing:1.499520px;}
.fc0_c00313{color:transparent;}
.fs9_c00313{font-size:37.440000px;}
.fsc_c00313{font-size:46.080000px;}
.fs7_c00313{font-size:48.960000px;}
.fs4_c00313{font-size:51.840000px;}
.fsa_c00313{font-size:54.720000px;}
.fs5_c00313{font-size:57.600000px;}
.fs6_c00313{font-size:60.480000px;}
.fs2_c00313{font-size:63.360000px;}
.fsb_c00313{font-size:66.240000px;}
.fs1_c00313{font-size:69.120000px;}
.fs0_c00313{font-size:72.000000px;}
.fs3_c00313{font-size:74.880000px;}
.fs8_c00313{font-size:77.760000px;}
.y0_c00313{bottom:0.000000px;}
.y4c_c00313{bottom:64.800000px;}
.y77_c00313{bottom:68.400000px;}
.y4b_c00313{bottom:69.120000px;}
.y78_c00313{bottom:70.560000px;}
.y48_c00313{bottom:108.000000px;}
.y4a_c00313{bottom:109.440000px;}
.y76_c00313{bottom:110.880000px;}
.y49_c00313{bottom:111.600000px;}
.y47_c00313{bottom:112.320000px;}
.y46_c00313{bottom:151.200000px;}
.y74_c00313{bottom:154.080000px;}
.y75_c00313{bottom:154.800000px;}
.y45_c00313{bottom:156.240000px;}
.y44_c00313{bottom:194.400000px;}
.y43_c00313{bottom:195.840000px;}
.y73_c00313{bottom:196.560000px;}
.y72_c00313{bottom:197.280000px;}
.y40_c00313{bottom:198.000000px;}
.y42_c00313{bottom:198.720000px;}
.y41_c00313{bottom:199.440000px;}
.y3f_c00313{bottom:238.320000px;}
.y71_c00313{bottom:240.480000px;}
.y3d_c00313{bottom:241.200000px;}
.y3e_c00313{bottom:242.640000px;}
.y3a_c00313{bottom:281.520000px;}
.y3c_c00313{bottom:282.240000px;}
.y3b_c00313{bottom:282.960000px;}
.y70_c00313{bottom:283.680000px;}
.y39_c00313{bottom:284.400000px;}
.y38_c00313{bottom:324.720000px;}
.y6e_c00313{bottom:326.880000px;}
.y37_c00313{bottom:328.320000px;}
.y6f_c00313{bottom:329.040000px;}
.y36_c00313{bottom:367.200000px;}
.y35_c00313{bottom:367.920000px;}
.y6c_c00313{bottom:369.360000px;}
.y6b_c00313{bottom:370.080000px;}
.y34_c00313{bottom:371.520000px;}
.y6d_c00313{bottom:372.960000px;}
.y33_c00313{bottom:411.120000px;}
.y32_c00313{bottom:411.840000px;}
.y67_c00313{bottom:412.560000px;}
.y69_c00313{bottom:413.280000px;}
.y68_c00313{bottom:414.000000px;}
.y31_c00313{bottom:414.720000px;}
.y6a_c00313{bottom:415.440000px;}
.y30_c00313{bottom:453.600000px;}
.y2e_c00313{bottom:454.320000px;}
.y2f_c00313{bottom:455.040000px;}
.y64_c00313{bottom:456.480000px;}
.y2d_c00313{bottom:457.200000px;}
.y66_c00313{bottom:457.920000px;}
.y65_c00313{bottom:459.360000px;}
.y2a_c00313{bottom:497.520000px;}
.y29_c00313{bottom:499.680000px;}
.y63_c00313{bottom:500.400000px;}
.y2b_c00313{bottom:501.120000px;}
.y2c_c00313{bottom:501.840000px;}
.y25_c00313{bottom:540.720000px;}
.y28_c00313{bottom:541.440000px;}
.y27_c00313{bottom:542.160000px;}
.y24_c00313{bottom:542.880000px;}
.y26_c00313{bottom:544.320000px;}
.y62_c00313{bottom:545.040000px;}
.y21_c00313{bottom:583.920000px;}
.y20_c00313{bottom:585.360000px;}
.y23_c00313{bottom:586.800000px;}
.y22_c00313{bottom:587.520000px;}
.y61_c00313{bottom:588.240000px;}
.y1f_c00313{bottom:626.400000px;}
.y5f_c00313{bottom:627.120000px;}
.y5e_c00313{bottom:627.840000px;}
.y1e_c00313{bottom:628.560000px;}
.y60_c00313{bottom:630.720000px;}
.y1c_c00313{bottom:668.880000px;}
.y1d_c00313{bottom:669.600000px;}
.y1b_c00313{bottom:670.320000px;}
.y5c_c00313{bottom:671.040000px;}
.y5b_c00313{bottom:671.760000px;}
.y5d_c00313{bottom:673.200000px;}
.y1a_c00313{bottom:712.080000px;}
.y5a_c00313{bottom:712.800000px;}
.y19_c00313{bottom:713.520000px;}
.y59_c00313{bottom:714.240000px;}
.y18_c00313{bottom:755.280000px;}
.y17_c00313{bottom:756.000000px;}
.y57_c00313{bottom:756.720000px;}
.y58_c00313{bottom:759.600000px;}
.y16_c00313{bottom:797.760000px;}
.y15_c00313{bottom:799.200000px;}
.y55_c00313{bottom:799.920000px;}
.y56_c00313{bottom:801.360000px;}
.y14_c00313{bottom:840.960000px;}
.y13_c00313{bottom:843.120000px;}
.y52_c00313{bottom:843.840000px;}
.y53_c00313{bottom:844.560000px;}
.y54_c00313{bottom:845.280000px;}
.y12_c00313{bottom:884.880000px;}
.y51_c00313{bottom:885.600000px;}
.y11_c00313{bottom:886.320000px;}
.y50_c00313{bottom:887.760000px;}
.y10_c00313{bottom:927.360000px;}
.yd_c00313{bottom:928.800000px;}
.y4f_c00313{bottom:929.520000px;}
.y4e_c00313{bottom:930.240000px;}
.yf_c00313{bottom:930.960000px;}
.ye_c00313{bottom:931.680000px;}
.yc_c00313{bottom:969.840000px;}
.y4d_c00313{bottom:970.560000px;}
.y8_c00313{bottom:971.280000px;}
.yb_c00313{bottom:972.000000px;}
.y9_c00313{bottom:974.160000px;}
.ya_c00313{bottom:974.880000px;}
.y7_c00313{bottom:1014.480000px;}
.y6_c00313{bottom:1018.080000px;}
.y5_c00313{bottom:1046.880000px;}
.y3_c00313{bottom:1047.600000px;}
.y4_c00313{bottom:1049.760000px;}
.y2_c00313{bottom:1098.000000px;}
.y1_c00313{bottom:1099.440000px;}
.ha_c00313{height:33.692344px;}
.he_c00313{height:41.467500px;}
.h8_c00313{height:44.059219px;}
.h5_c00313{height:46.650937px;}
.hc_c00313{height:49.242656px;}
.h6_c00313{height:51.834375px;}
.h7_c00313{height:54.426094px;}
.h4_c00313{height:57.017812px;}
.hd_c00313{height:59.609531px;}
.h3_c00313{height:62.201250px;}
.h2_c00313{height:64.792969px;}
.hb_c00313{height:67.384687px;}
.h9_c00313{height:69.976406px;}
.h1_c00313{height:1149.000000px;}
.h0_c00313{height:1149.120000px;}
.w0_c00313{width:761.760000px;}
.w1_c00313{width:762.000000px;}
.x0_c00313{left:0.000000px;}
.x3_c00313{left:58.320000px;}
.x11_c00313{left:59.760000px;}
.x21_c00313{left:61.200000px;}
.x24_c00313{left:62.640000px;}
.x4_c00313{left:132.480000px;}
.xb_c00313{left:133.920000px;}
.xc_c00313{left:164.880000px;}
.x25_c00313{left:174.960000px;}
.x23_c00313{left:177.120000px;}
.xa_c00313{left:187.200000px;}
.xd_c00313{left:208.080000px;}
.x26_c00313{left:218.880000px;}
.xf_c00313{left:220.320000px;}
.x1f_c00313{left:228.960000px;}
.x17_c00313{left:231.120000px;}
.x1b_c00313{left:250.560000px;}
.x10_c00313{left:262.080000px;}
.xe_c00313{left:263.520000px;}
.x13_c00313{left:273.600000px;}
.x18_c00313{left:285.120000px;}
.x1c_c00313{left:295.920000px;}
.x27_c00313{left:306.000000px;}
.x20_c00313{left:328.320000px;}
.x22_c00313{left:339.120000px;}
.x12_c00313{left:349.200000px;}
.x1d_c00313{left:350.640000px;}
.x5_c00313{left:371.520000px;}
.x14_c00313{left:382.320000px;}
.x1e_c00313{left:393.120000px;}
.x19_c00313{left:414.720000px;}
.x6_c00313{left:425.520000px;}
.x15_c00313{left:434.160000px;}
.x1a_c00313{left:468.720000px;}
.x16_c00313{left:478.800000px;}
.x2e_c00313{left:545.040000px;}
.x2d_c00313{left:553.680000px;}
.x2c_c00313{left:555.120000px;}
.x2b_c00313{left:556.560000px;}
.x31_c00313{left:574.560000px;}
.x7_c00313{left:576.720000px;}
.x32_c00313{left:586.080000px;}
.x2f_c00313{left:587.520000px;}
.x28_c00313{left:609.120000px;}
.x33_c00313{left:640.080000px;}
.x8_c00313{left:642.240000px;}
.x30_c00313{left:673.920000px;}
.x1_c00313{left:678.240000px;}
.x9_c00313{left:683.280000px;}
.x2a_c00313{left:684.720000px;}
.x29_c00313{left:704.880000px;}
.x2_c00313{left:714.240000px;}
@media print{
.v1_c00313{vertical-align:-5.120000pt;}
.v0_c00313{vertical-align:0.000000pt;}
.ls0_c00313{letter-spacing:0.000000pt;}
.ws1_c00313{word-spacing:0.000000pt;}
.ws0_c00313{word-spacing:1.332907pt;}
.fs9_c00313{font-size:33.280000pt;}
.fsc_c00313{font-size:40.960000pt;}
.fs7_c00313{font-size:43.520000pt;}
.fs4_c00313{font-size:46.080000pt;}
.fsa_c00313{font-size:48.640000pt;}
.fs5_c00313{font-size:51.200000pt;}
.fs6_c00313{font-size:53.760000pt;}
.fs2_c00313{font-size:56.320000pt;}
.fsb_c00313{font-size:58.880000pt;}
.fs1_c00313{font-size:61.440000pt;}
.fs0_c00313{font-size:64.000000pt;}
.fs3_c00313{font-size:66.560000pt;}
.fs8_c00313{font-size:69.120000pt;}
.y0_c00313{bottom:0.000000pt;}
.y4c_c00313{bottom:57.600000pt;}
.y77_c00313{bottom:60.800000pt;}
.y4b_c00313{bottom:61.440000pt;}
.y78_c00313{bottom:62.720000pt;}
.y48_c00313{bottom:96.000000pt;}
.y4a_c00313{bottom:97.280000pt;}
.y76_c00313{bottom:98.560000pt;}
.y49_c00313{bottom:99.200000pt;}
.y47_c00313{bottom:99.840000pt;}
.y46_c00313{bottom:134.400000pt;}
.y74_c00313{bottom:136.960000pt;}
.y75_c00313{bottom:137.600000pt;}
.y45_c00313{bottom:138.880000pt;}
.y44_c00313{bottom:172.800000pt;}
.y43_c00313{bottom:174.080000pt;}
.y73_c00313{bottom:174.720000pt;}
.y72_c00313{bottom:175.360000pt;}
.y40_c00313{bottom:176.000000pt;}
.y42_c00313{bottom:176.640000pt;}
.y41_c00313{bottom:177.280000pt;}
.y3f_c00313{bottom:211.840000pt;}
.y71_c00313{bottom:213.760000pt;}
.y3d_c00313{bottom:214.400000pt;}
.y3e_c00313{bottom:215.680000pt;}
.y3a_c00313{bottom:250.240000pt;}
.y3c_c00313{bottom:250.880000pt;}
.y3b_c00313{bottom:251.520000pt;}
.y70_c00313{bottom:252.160000pt;}
.y39_c00313{bottom:252.800000pt;}
.y38_c00313{bottom:288.640000pt;}
.y6e_c00313{bottom:290.560000pt;}
.y37_c00313{bottom:291.840000pt;}
.y6f_c00313{bottom:292.480000pt;}
.y36_c00313{bottom:326.400000pt;}
.y35_c00313{bottom:327.040000pt;}
.y6c_c00313{bottom:328.320000pt;}
.y6b_c00313{bottom:328.960000pt;}
.y34_c00313{bottom:330.240000pt;}
.y6d_c00313{bottom:331.520000pt;}
.y33_c00313{bottom:365.440000pt;}
.y32_c00313{bottom:366.080000pt;}
.y67_c00313{bottom:366.720000pt;}
.y69_c00313{bottom:367.360000pt;}
.y68_c00313{bottom:368.000000pt;}
.y31_c00313{bottom:368.640000pt;}
.y6a_c00313{bottom:369.280000pt;}
.y30_c00313{bottom:403.200000pt;}
.y2e_c00313{bottom:403.840000pt;}
.y2f_c00313{bottom:404.480000pt;}
.y64_c00313{bottom:405.760000pt;}
.y2d_c00313{bottom:406.400000pt;}
.y66_c00313{bottom:407.040000pt;}
.y65_c00313{bottom:408.320000pt;}
.y2a_c00313{bottom:442.240000pt;}
.y29_c00313{bottom:444.160000pt;}
.y63_c00313{bottom:444.800000pt;}
.y2b_c00313{bottom:445.440000pt;}
.y2c_c00313{bottom:446.080000pt;}
.y25_c00313{bottom:480.640000pt;}
.y28_c00313{bottom:481.280000pt;}
.y27_c00313{bottom:481.920000pt;}
.y24_c00313{bottom:482.560000pt;}
.y26_c00313{bottom:483.840000pt;}
.y62_c00313{bottom:484.480000pt;}
.y21_c00313{bottom:519.040000pt;}
.y20_c00313{bottom:520.320000pt;}
.y23_c00313{bottom:521.600000pt;}
.y22_c00313{bottom:522.240000pt;}
.y61_c00313{bottom:522.880000pt;}
.y1f_c00313{bottom:556.800000pt;}
.y5f_c00313{bottom:557.440000pt;}
.y5e_c00313{bottom:558.080000pt;}
.y1e_c00313{bottom:558.720000pt;}
.y60_c00313{bottom:560.640000pt;}
.y1c_c00313{bottom:594.560000pt;}
.y1d_c00313{bottom:595.200000pt;}
.y1b_c00313{bottom:595.840000pt;}
.y5c_c00313{bottom:596.480000pt;}
.y5b_c00313{bottom:597.120000pt;}
.y5d_c00313{bottom:598.400000pt;}
.y1a_c00313{bottom:632.960000pt;}
.y5a_c00313{bottom:633.600000pt;}
.y19_c00313{bottom:634.240000pt;}
.y59_c00313{bottom:634.880000pt;}
.y18_c00313{bottom:671.360000pt;}
.y17_c00313{bottom:672.000000pt;}
.y57_c00313{bottom:672.640000pt;}
.y58_c00313{bottom:675.200000pt;}
.y16_c00313{bottom:709.120000pt;}
.y15_c00313{bottom:710.400000pt;}
.y55_c00313{bottom:711.040000pt;}
.y56_c00313{bottom:712.320000pt;}
.y14_c00313{bottom:747.520000pt;}
.y13_c00313{bottom:749.440000pt;}
.y52_c00313{bottom:750.080000pt;}
.y53_c00313{bottom:750.720000pt;}
.y54_c00313{bottom:751.360000pt;}
.y12_c00313{bottom:786.560000pt;}
.y51_c00313{bottom:787.200000pt;}
.y11_c00313{bottom:787.840000pt;}
.y50_c00313{bottom:789.120000pt;}
.y10_c00313{bottom:824.320000pt;}
.yd_c00313{bottom:825.600000pt;}
.y4f_c00313{bottom:826.240000pt;}
.y4e_c00313{bottom:826.880000pt;}
.yf_c00313{bottom:827.520000pt;}
.ye_c00313{bottom:828.160000pt;}
.yc_c00313{bottom:862.080000pt;}
.y4d_c00313{bottom:862.720000pt;}
.y8_c00313{bottom:863.360000pt;}
.yb_c00313{bottom:864.000000pt;}
.y9_c00313{bottom:865.920000pt;}
.ya_c00313{bottom:866.560000pt;}
.y7_c00313{bottom:901.760000pt;}
.y6_c00313{bottom:904.960000pt;}
.y5_c00313{bottom:930.560000pt;}
.y3_c00313{bottom:931.200000pt;}
.y4_c00313{bottom:933.120000pt;}
.y2_c00313{bottom:976.000000pt;}
.y1_c00313{bottom:977.280000pt;}
.ha_c00313{height:29.948750pt;}
.he_c00313{height:36.860000pt;}
.h8_c00313{height:39.163750pt;}
.h5_c00313{height:41.467500pt;}
.hc_c00313{height:43.771250pt;}
.h6_c00313{height:46.075000pt;}
.h7_c00313{height:48.378750pt;}
.h4_c00313{height:50.682500pt;}
.hd_c00313{height:52.986250pt;}
.h3_c00313{height:55.290000pt;}
.h2_c00313{height:57.593750pt;}
.hb_c00313{height:59.897500pt;}
.h9_c00313{height:62.201250pt;}
.h1_c00313{height:1021.333333pt;}
.h0_c00313{height:1021.440000pt;}
.w0_c00313{width:677.120000pt;}
.w1_c00313{width:677.333333pt;}
.x0_c00313{left:0.000000pt;}
.x3_c00313{left:51.840000pt;}
.x11_c00313{left:53.120000pt;}
.x21_c00313{left:54.400000pt;}
.x24_c00313{left:55.680000pt;}
.x4_c00313{left:117.760000pt;}
.xb_c00313{left:119.040000pt;}
.xc_c00313{left:146.560000pt;}
.x25_c00313{left:155.520000pt;}
.x23_c00313{left:157.440000pt;}
.xa_c00313{left:166.400000pt;}
.xd_c00313{left:184.960000pt;}
.x26_c00313{left:194.560000pt;}
.xf_c00313{left:195.840000pt;}
.x1f_c00313{left:203.520000pt;}
.x17_c00313{left:205.440000pt;}
.x1b_c00313{left:222.720000pt;}
.x10_c00313{left:232.960000pt;}
.xe_c00313{left:234.240000pt;}
.x13_c00313{left:243.200000pt;}
.x18_c00313{left:253.440000pt;}
.x1c_c00313{left:263.040000pt;}
.x27_c00313{left:272.000000pt;}
.x20_c00313{left:291.840000pt;}
.x22_c00313{left:301.440000pt;}
.x12_c00313{left:310.400000pt;}
.x1d_c00313{left:311.680000pt;}
.x5_c00313{left:330.240000pt;}
.x14_c00313{left:339.840000pt;}
.x1e_c00313{left:349.440000pt;}
.x19_c00313{left:368.640000pt;}
.x6_c00313{left:378.240000pt;}
.x15_c00313{left:385.920000pt;}
.x1a_c00313{left:416.640000pt;}
.x16_c00313{left:425.600000pt;}
.x2e_c00313{left:484.480000pt;}
.x2d_c00313{left:492.160000pt;}
.x2c_c00313{left:493.440000pt;}
.x2b_c00313{left:494.720000pt;}
.x31_c00313{left:510.720000pt;}
.x7_c00313{left:512.640000pt;}
.x32_c00313{left:520.960000pt;}
.x2f_c00313{left:522.240000pt;}
.x28_c00313{left:541.440000pt;}
.x33_c00313{left:568.960000pt;}
.x8_c00313{left:570.880000pt;}
.x30_c00313{left:599.040000pt;}
.x1_c00313{left:602.880000pt;}
.x9_c00313{left:607.360000pt;}
.x2a_c00313{left:608.640000pt;}
.x29_c00313{left:626.560000pt;}
.x2_c00313{left:634.880000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_16468e65ff23f77f3cb898b7.woff2')format("woff");}.ff1_c00314{font-family:ff1_c00314;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4c_c00314{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m41_c00314{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m43_c00314{transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);}
.m8_c00314{transform:matrix(0.246650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246650,0.000000,0.000000,0.250000,0,0);}
.m4f_c00314{transform:matrix(0.246725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246725,0.000000,0.000000,0.250000,0,0);}
.m46_c00314{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m39_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);}
.m2d_c00314{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_c00314{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);}
.m4b_c00314{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00314{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m1_c00314{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);}
.m29_c00314{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.ma_c00314{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m23_c00314{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m21_c00314{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00314{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m28_c00314{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m13_c00314{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m35_c00314{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.me_c00314{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m10_c00314{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m49_c00314{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m12_c00314{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m15_c00314{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m26_c00314{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m7_c00314{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m30_c00314{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mb_c00314{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m25_c00314{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00314{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m11_c00314{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m16_c00314{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00314{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m42_c00314{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00314{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m38_c00314{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m18_c00314{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00314{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);}
.m40_c00314{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m0_c00314{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m33_c00314{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00314{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_c00314{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m4_c00314{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);}
.m5_c00314{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m20_c00314{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m3_c00314{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);}
.m1d_c00314{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00314{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00314{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);}
.m3e_c00314{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);}
.m9_c00314{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);}
.m1c_c00314{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m48_c00314{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);}
.m4e_c00314{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);}
.m24_c00314{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m2_c00314{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00314{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);}
.m36_c00314{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m53_c00314{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00314{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m45_c00314{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);}
.mf_c00314{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m50_c00314{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00314{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);}
.m37_c00314{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m34_c00314{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.md_c00314{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m27_c00314{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);}
.m32_c00314{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m44_c00314{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);}
.m22_c00314{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.mc_c00314{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);}
.m14_c00314{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m31_c00314{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00314{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00314{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00314{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);}
.m51_c00314{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m57_c00314{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m17_c00314{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m19_c00314{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.m47_c00314{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m54_c00314{transform:matrix(0.832500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832500,0.000000,0.000000,0.250000,0,0);}
.m55_c00314{transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);}
.m52_c00314{transform:matrix(0.960000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.960000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.960000,0.000000,0.000000,0.250000,0,0);}
.m58_c00314{transform:matrix(1.070000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.070000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.070000,0.000000,0.000000,0.250000,0,0);}
.m56_c00314{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.m59_c00314{transform:matrix(1.587500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.587500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.587500,0.000000,0.000000,0.250000,0,0);}
.v0_c00314{vertical-align:0.000000px;}
.ls0_c00314{letter-spacing:0.000000px;}
.sc__c00314{text-shadow:none;}
.sc0_c00314{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00314{-webkit-text-stroke:0px transparent;}
.sc0_c00314{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00314{word-spacing:0.000000px;}
.fc0_c00314{color:transparent;}
.fs12_c00314{font-size:8.640000px;}
.fs11_c00314{font-size:14.400000px;}
.fsf_c00314{font-size:17.280000px;}
.fs13_c00314{font-size:23.040000px;}
.fs10_c00314{font-size:25.920000px;}
.fsb_c00314{font-size:34.560000px;}
.fse_c00314{font-size:43.200000px;}
.fsa_c00314{font-size:46.080000px;}
.fs6_c00314{font-size:48.960000px;}
.fs1_c00314{font-size:51.840000px;}
.fs9_c00314{font-size:54.720000px;}
.fs2_c00314{font-size:57.600000px;}
.fs3_c00314{font-size:60.480000px;}
.fsc_c00314{font-size:63.360000px;}
.fs8_c00314{font-size:66.240000px;}
.fs4_c00314{font-size:69.120000px;}
.fs7_c00314{font-size:72.000000px;}
.fs5_c00314{font-size:74.880000px;}
.fs0_c00314{font-size:77.760000px;}
.fsd_c00314{font-size:83.520000px;}
.y0_c00314{bottom:0.000000px;}
.y89_c00314{bottom:0.720000px;}
.y8d_c00314{bottom:1.440000px;}
.y87_c00314{bottom:5.040000px;}
.y88_c00314{bottom:5.760000px;}
.y8b_c00314{bottom:7.920000px;}
.y8a_c00314{bottom:8.640000px;}
.y8c_c00314{bottom:9.360000px;}
.y84_c00314{bottom:33.840000px;}
.y85_c00314{bottom:38.880000px;}
.y86_c00314{bottom:39.600000px;}
.y83_c00314{bottom:40.320000px;}
.y7d_c00314{bottom:75.600000px;}
.y7f_c00314{bottom:78.480000px;}
.y7e_c00314{bottom:79.200000px;}
.y81_c00314{bottom:79.920000px;}
.y80_c00314{bottom:80.640000px;}
.y7c_c00314{bottom:81.360000px;}
.y82_c00314{bottom:82.080000px;}
.y75_c00314{bottom:120.240000px;}
.y76_c00314{bottom:120.960000px;}
.y7b_c00314{bottom:122.400000px;}
.y77_c00314{bottom:123.120000px;}
.y79_c00314{bottom:123.840000px;}
.y78_c00314{bottom:124.560000px;}
.y74_c00314{bottom:125.280000px;}
.y7a_c00314{bottom:126.000000px;}
.y70_c00314{bottom:162.720000px;}
.y6f_c00314{bottom:164.160000px;}
.y71_c00314{bottom:166.320000px;}
.y73_c00314{bottom:167.760000px;}
.y6e_c00314{bottom:168.480000px;}
.y72_c00314{bottom:169.200000px;}
.y68_c00314{bottom:207.360000px;}
.y6a_c00314{bottom:209.520000px;}
.y69_c00314{bottom:210.240000px;}
.y67_c00314{bottom:210.960000px;}
.y6d_c00314{bottom:211.680000px;}
.y6c_c00314{bottom:212.400000px;}
.y6b_c00314{bottom:213.840000px;}
.y64_c00314{bottom:250.560000px;}
.y66_c00314{bottom:252.720000px;}
.y65_c00314{bottom:253.440000px;}
.y63_c00314{bottom:254.160000px;}
.y5f_c00314{bottom:293.040000px;}
.y60_c00314{bottom:295.920000px;}
.y5e_c00314{bottom:296.640000px;}
.y61_c00314{bottom:297.360000px;}
.y62_c00314{bottom:298.080000px;}
.y5c_c00314{bottom:336.240000px;}
.y5d_c00314{bottom:338.400000px;}
.y5b_c00314{bottom:339.120000px;}
.y54_c00314{bottom:378.720000px;}
.y58_c00314{bottom:380.160000px;}
.y55_c00314{bottom:380.880000px;}
.y5a_c00314{bottom:381.600000px;}
.y53_c00314{bottom:382.320000px;}
.y56_c00314{bottom:383.040000px;}
.y57_c00314{bottom:383.760000px;}
.y59_c00314{bottom:384.480000px;}
.y50_c00314{bottom:422.640000px;}
.y4f_c00314{bottom:423.360000px;}
.y51_c00314{bottom:424.800000px;}
.y52_c00314{bottom:425.520000px;}
.y4d_c00314{bottom:426.240000px;}
.y4e_c00314{bottom:426.960000px;}
.y4a_c00314{bottom:465.120000px;}
.y4b_c00314{bottom:468.000000px;}
.y4c_c00314{bottom:468.720000px;}
.y48_c00314{bottom:469.440000px;}
.y49_c00314{bottom:470.160000px;}
.y45_c00314{bottom:509.040000px;}
.y46_c00314{bottom:510.480000px;}
.y47_c00314{bottom:511.200000px;}
.y43_c00314{bottom:512.640000px;}
.y44_c00314{bottom:513.360000px;}
.y42_c00314{bottom:551.520000px;}
.y40_c00314{bottom:553.680000px;}
.y3e_c00314{bottom:555.120000px;}
.y41_c00314{bottom:555.840000px;}
.y3f_c00314{bottom:556.560000px;}
.y3a_c00314{bottom:595.440000px;}
.y3d_c00314{bottom:596.880000px;}
.y39_c00314{bottom:599.040000px;}
.y3b_c00314{bottom:599.760000px;}
.y3c_c00314{bottom:600.480000px;}
.y36_c00314{bottom:639.360000px;}
.y38_c00314{bottom:640.080000px;}
.y37_c00314{bottom:640.800000px;}
.y34_c00314{bottom:641.520000px;}
.y35_c00314{bottom:642.960000px;}
.y32_c00314{bottom:681.840000px;}
.y31_c00314{bottom:682.560000px;}
.y33_c00314{bottom:684.000000px;}
.y2e_c00314{bottom:684.720000px;}
.y2f_c00314{bottom:685.440000px;}
.y30_c00314{bottom:686.160000px;}
.y2b_c00314{bottom:725.760000px;}
.y2c_c00314{bottom:726.480000px;}
.y29_c00314{bottom:727.200000px;}
.y2d_c00314{bottom:728.640000px;}
.y2a_c00314{bottom:730.080000px;}
.y26_c00314{bottom:768.960000px;}
.y27_c00314{bottom:769.680000px;}
.y24_c00314{bottom:770.400000px;}
.y28_c00314{bottom:771.120000px;}
.y25_c00314{bottom:772.560000px;}
.y21_c00314{bottom:812.160000px;}
.y1f_c00314{bottom:812.880000px;}
.y22_c00314{bottom:813.600000px;}
.y23_c00314{bottom:814.320000px;}
.y20_c00314{bottom:815.760000px;}
.y1e_c00314{bottom:853.200000px;}
.y1c_c00314{bottom:854.640000px;}
.y1d_c00314{bottom:855.360000px;}
.y1b_c00314{bottom:858.960000px;}
.y18_c00314{bottom:887.040000px;}
.y1a_c00314{bottom:887.760000px;}
.y15_c00314{bottom:888.480000px;}
.y16_c00314{bottom:889.200000px;}
.y19_c00314{bottom:889.920000px;}
.y17_c00314{bottom:890.640000px;}
.y10_c00314{bottom:929.520000px;}
.yd_c00314{bottom:930.240000px;}
.yf_c00314{bottom:930.960000px;}
.ye_c00314{bottom:931.680000px;}
.y14_c00314{bottom:932.400000px;}
.y13_c00314{bottom:933.120000px;}
.yb_c00314{bottom:973.440000px;}
.y8_c00314{bottom:974.160000px;}
.y9_c00314{bottom:974.880000px;}
.y12_c00314{bottom:975.600000px;}
.yc_c00314{bottom:976.320000px;}
.ya_c00314{bottom:977.040000px;}
.y6_c00314{bottom:1015.920000px;}
.y7_c00314{bottom:1016.640000px;}
.y5_c00314{bottom:1017.360000px;}
.y11_c00314{bottom:1018.080000px;}
.y4_c00314{bottom:1061.280000px;}
.y3_c00314{bottom:1062.000000px;}
.y2_c00314{bottom:1063.440000px;}
.y1_c00314{bottom:1122.480000px;}
.h14_c00314{height:7.775156px;}
.h13_c00314{height:12.958594px;}
.h11_c00314{height:15.550313px;}
.h15_c00314{height:20.733750px;}
.h12_c00314{height:23.325469px;}
.hd_c00314{height:31.100625px;}
.h10_c00314{height:38.875781px;}
.hc_c00314{height:41.467500px;}
.h8_c00314{height:44.059219px;}
.h3_c00314{height:46.650937px;}
.hb_c00314{height:49.242656px;}
.h4_c00314{height:51.834375px;}
.h5_c00314{height:54.426094px;}
.he_c00314{height:57.017812px;}
.ha_c00314{height:59.609531px;}
.h6_c00314{height:62.201250px;}
.h9_c00314{height:64.792969px;}
.h7_c00314{height:67.384687px;}
.h2_c00314{height:69.976406px;}
.hf_c00314{height:75.159844px;}
.h0_c00314{height:1176.480000px;}
.h1_c00314{height:1176.750000px;}
.w1_c00314{width:753.750000px;}
.w0_c00314{width:753.840000px;}
.x0_c00314{left:0.000000px;}
.x6_c00314{left:56.160000px;}
.x2a_c00314{left:57.600000px;}
.x34_c00314{left:59.040000px;}
.x35_c00314{left:60.480000px;}
.x3c_c00314{left:62.640000px;}
.x2_c00314{left:108.000000px;}
.x18_c00314{left:118.800000px;}
.x1c_c00314{left:128.880000px;}
.x7_c00314{left:130.320000px;}
.x3_c00314{left:140.400000px;}
.x3d_c00314{left:151.920000px;}
.x4_c00314{left:162.720000px;}
.x2c_c00314{left:171.360000px;}
.xa_c00314{left:172.800000px;}
.x21_c00314{left:182.160000px;}
.x5_c00314{left:216.000000px;}
.x3e_c00314{left:221.040000px;}
.xd_c00314{left:226.800000px;}
.x3f_c00314{left:238.320000px;}
.x36_c00314{left:259.200000px;}
.x40_c00314{left:263.520000px;}
.x25_c00314{left:270.000000px;}
.x29_c00314{left:271.440000px;}
.x14_c00314{left:280.800000px;}
.x39_c00314{left:290.880000px;}
.x8_c00314{left:292.320000px;}
.x19_c00314{left:302.400000px;}
.x41_c00314{left:308.160000px;}
.x15_c00314{left:324.720000px;}
.x37_c00314{left:334.080000px;}
.x16_c00314{left:367.200000px;}
.x38_c00314{left:378.720000px;}
.x42_c00314{left:383.040000px;}
.x3a_c00314{left:388.800000px;}
.xb_c00314{left:399.600000px;}
.x2d_c00314{left:409.680000px;}
.x9_c00314{left:421.200000px;}
.x22_c00314{left:431.280000px;}
.x1a_c00314{left:442.800000px;}
.xc_c00314{left:454.320000px;}
.x2e_c00314{left:464.400000px;}
.x26_c00314{left:474.480000px;}
.x23_c00314{left:475.920000px;}
.x2b_c00314{left:486.720000px;}
.x1b_c00314{left:496.800000px;}
.x17_c00314{left:507.600000px;}
.x2f_c00314{left:517.680000px;}
.x27_c00314{left:529.200000px;}
.x3b_c00314{left:540.000000px;}
.x31_c00314{left:550.080000px;}
.x1e_c00314{left:551.520000px;}
.x32_c00314{left:570.960000px;}
.xe_c00314{left:573.120000px;}
.x1d_c00314{left:583.200000px;}
.x43_c00314{left:596.160000px;}
.x24_c00314{left:604.080000px;}
.x12_c00314{left:605.520000px;}
.x1f_c00314{left:626.400000px;}
.x44_c00314{left:627.840000px;}
.x13_c00314{left:637.200000px;}
.xf_c00314{left:638.640000px;}
.x20_c00314{left:646.560000px;}
.x28_c00314{left:648.000000px;}
.x1_c00314{left:669.600000px;}
.x33_c00314{left:678.960000px;}
.x10_c00314{left:681.120000px;}
.x30_c00314{left:699.840000px;}
.x11_c00314{left:701.280000px;}
@media print{
.v0_c00314{vertical-align:0.000000pt;}
.ls0_c00314{letter-spacing:0.000000pt;}
.ws0_c00314{word-spacing:0.000000pt;}
.fs12_c00314{font-size:7.680000pt;}
.fs11_c00314{font-size:12.800000pt;}
.fsf_c00314{font-size:15.360000pt;}
.fs13_c00314{font-size:20.480000pt;}
.fs10_c00314{font-size:23.040000pt;}
.fsb_c00314{font-size:30.720000pt;}
.fse_c00314{font-size:38.400000pt;}
.fsa_c00314{font-size:40.960000pt;}
.fs6_c00314{font-size:43.520000pt;}
.fs1_c00314{font-size:46.080000pt;}
.fs9_c00314{font-size:48.640000pt;}
.fs2_c00314{font-size:51.200000pt;}
.fs3_c00314{font-size:53.760000pt;}
.fsc_c00314{font-size:56.320000pt;}
.fs8_c00314{font-size:58.880000pt;}
.fs4_c00314{font-size:61.440000pt;}
.fs7_c00314{font-size:64.000000pt;}
.fs5_c00314{font-size:66.560000pt;}
.fs0_c00314{font-size:69.120000pt;}
.fsd_c00314{font-size:74.240000pt;}
.y0_c00314{bottom:0.000000pt;}
.y89_c00314{bottom:0.640000pt;}
.y8d_c00314{bottom:1.280000pt;}
.y87_c00314{bottom:4.480000pt;}
.y88_c00314{bottom:5.120000pt;}
.y8b_c00314{bottom:7.040000pt;}
.y8a_c00314{bottom:7.680000pt;}
.y8c_c00314{bottom:8.320000pt;}
.y84_c00314{bottom:30.080000pt;}
.y85_c00314{bottom:34.560000pt;}
.y86_c00314{bottom:35.200000pt;}
.y83_c00314{bottom:35.840000pt;}
.y7d_c00314{bottom:67.200000pt;}
.y7f_c00314{bottom:69.760000pt;}
.y7e_c00314{bottom:70.400000pt;}
.y81_c00314{bottom:71.040000pt;}
.y80_c00314{bottom:71.680000pt;}
.y7c_c00314{bottom:72.320000pt;}
.y82_c00314{bottom:72.960000pt;}
.y75_c00314{bottom:106.880000pt;}
.y76_c00314{bottom:107.520000pt;}
.y7b_c00314{bottom:108.800000pt;}
.y77_c00314{bottom:109.440000pt;}
.y79_c00314{bottom:110.080000pt;}
.y78_c00314{bottom:110.720000pt;}
.y74_c00314{bottom:111.360000pt;}
.y7a_c00314{bottom:112.000000pt;}
.y70_c00314{bottom:144.640000pt;}
.y6f_c00314{bottom:145.920000pt;}
.y71_c00314{bottom:147.840000pt;}
.y73_c00314{bottom:149.120000pt;}
.y6e_c00314{bottom:149.760000pt;}
.y72_c00314{bottom:150.400000pt;}
.y68_c00314{bottom:184.320000pt;}
.y6a_c00314{bottom:186.240000pt;}
.y69_c00314{bottom:186.880000pt;}
.y67_c00314{bottom:187.520000pt;}
.y6d_c00314{bottom:188.160000pt;}
.y6c_c00314{bottom:188.800000pt;}
.y6b_c00314{bottom:190.080000pt;}
.y64_c00314{bottom:222.720000pt;}
.y66_c00314{bottom:224.640000pt;}
.y65_c00314{bottom:225.280000pt;}
.y63_c00314{bottom:225.920000pt;}
.y5f_c00314{bottom:260.480000pt;}
.y60_c00314{bottom:263.040000pt;}
.y5e_c00314{bottom:263.680000pt;}
.y61_c00314{bottom:264.320000pt;}
.y62_c00314{bottom:264.960000pt;}
.y5c_c00314{bottom:298.880000pt;}
.y5d_c00314{bottom:300.800000pt;}
.y5b_c00314{bottom:301.440000pt;}
.y54_c00314{bottom:336.640000pt;}
.y58_c00314{bottom:337.920000pt;}
.y55_c00314{bottom:338.560000pt;}
.y5a_c00314{bottom:339.200000pt;}
.y53_c00314{bottom:339.840000pt;}
.y56_c00314{bottom:340.480000pt;}
.y57_c00314{bottom:341.120000pt;}
.y59_c00314{bottom:341.760000pt;}
.y50_c00314{bottom:375.680000pt;}
.y4f_c00314{bottom:376.320000pt;}
.y51_c00314{bottom:377.600000pt;}
.y52_c00314{bottom:378.240000pt;}
.y4d_c00314{bottom:378.880000pt;}
.y4e_c00314{bottom:379.520000pt;}
.y4a_c00314{bottom:413.440000pt;}
.y4b_c00314{bottom:416.000000pt;}
.y4c_c00314{bottom:416.640000pt;}
.y48_c00314{bottom:417.280000pt;}
.y49_c00314{bottom:417.920000pt;}
.y45_c00314{bottom:452.480000pt;}
.y46_c00314{bottom:453.760000pt;}
.y47_c00314{bottom:454.400000pt;}
.y43_c00314{bottom:455.680000pt;}
.y44_c00314{bottom:456.320000pt;}
.y42_c00314{bottom:490.240000pt;}
.y40_c00314{bottom:492.160000pt;}
.y3e_c00314{bottom:493.440000pt;}
.y41_c00314{bottom:494.080000pt;}
.y3f_c00314{bottom:494.720000pt;}
.y3a_c00314{bottom:529.280000pt;}
.y3d_c00314{bottom:530.560000pt;}
.y39_c00314{bottom:532.480000pt;}
.y3b_c00314{bottom:533.120000pt;}
.y3c_c00314{bottom:533.760000pt;}
.y36_c00314{bottom:568.320000pt;}
.y38_c00314{bottom:568.960000pt;}
.y37_c00314{bottom:569.600000pt;}
.y34_c00314{bottom:570.240000pt;}
.y35_c00314{bottom:571.520000pt;}
.y32_c00314{bottom:606.080000pt;}
.y31_c00314{bottom:606.720000pt;}
.y33_c00314{bottom:608.000000pt;}
.y2e_c00314{bottom:608.640000pt;}
.y2f_c00314{bottom:609.280000pt;}
.y30_c00314{bottom:609.920000pt;}
.y2b_c00314{bottom:645.120000pt;}
.y2c_c00314{bottom:645.760000pt;}
.y29_c00314{bottom:646.400000pt;}
.y2d_c00314{bottom:647.680000pt;}
.y2a_c00314{bottom:648.960000pt;}
.y26_c00314{bottom:683.520000pt;}
.y27_c00314{bottom:684.160000pt;}
.y24_c00314{bottom:684.800000pt;}
.y28_c00314{bottom:685.440000pt;}
.y25_c00314{bottom:686.720000pt;}
.y21_c00314{bottom:721.920000pt;}
.y1f_c00314{bottom:722.560000pt;}
.y22_c00314{bottom:723.200000pt;}
.y23_c00314{bottom:723.840000pt;}
.y20_c00314{bottom:725.120000pt;}
.y1e_c00314{bottom:758.400000pt;}
.y1c_c00314{bottom:759.680000pt;}
.y1d_c00314{bottom:760.320000pt;}
.y1b_c00314{bottom:763.520000pt;}
.y18_c00314{bottom:788.480000pt;}
.y1a_c00314{bottom:789.120000pt;}
.y15_c00314{bottom:789.760000pt;}
.y16_c00314{bottom:790.400000pt;}
.y19_c00314{bottom:791.040000pt;}
.y17_c00314{bottom:791.680000pt;}
.y10_c00314{bottom:826.240000pt;}
.yd_c00314{bottom:826.880000pt;}
.yf_c00314{bottom:827.520000pt;}
.ye_c00314{bottom:828.160000pt;}
.y14_c00314{bottom:828.800000pt;}
.y13_c00314{bottom:829.440000pt;}
.yb_c00314{bottom:865.280000pt;}
.y8_c00314{bottom:865.920000pt;}
.y9_c00314{bottom:866.560000pt;}
.y12_c00314{bottom:867.200000pt;}
.yc_c00314{bottom:867.840000pt;}
.ya_c00314{bottom:868.480000pt;}
.y6_c00314{bottom:903.040000pt;}
.y7_c00314{bottom:903.680000pt;}
.y5_c00314{bottom:904.320000pt;}
.y11_c00314{bottom:904.960000pt;}
.y4_c00314{bottom:943.360000pt;}
.y3_c00314{bottom:944.000000pt;}
.y2_c00314{bottom:945.280000pt;}
.y1_c00314{bottom:997.760000pt;}
.h14_c00314{height:6.911250pt;}
.h13_c00314{height:11.518750pt;}
.h11_c00314{height:13.822500pt;}
.h15_c00314{height:18.430000pt;}
.h12_c00314{height:20.733750pt;}
.hd_c00314{height:27.645000pt;}
.h10_c00314{height:34.556250pt;}
.hc_c00314{height:36.860000pt;}
.h8_c00314{height:39.163750pt;}
.h3_c00314{height:41.467500pt;}
.hb_c00314{height:43.771250pt;}
.h4_c00314{height:46.075000pt;}
.h5_c00314{height:48.378750pt;}
.he_c00314{height:50.682500pt;}
.ha_c00314{height:52.986250pt;}
.h6_c00314{height:55.290000pt;}
.h9_c00314{height:57.593750pt;}
.h7_c00314{height:59.897500pt;}
.h2_c00314{height:62.201250pt;}
.hf_c00314{height:66.808750pt;}
.h0_c00314{height:1045.760000pt;}
.h1_c00314{height:1046.000000pt;}
.w1_c00314{width:670.000000pt;}
.w0_c00314{width:670.080000pt;}
.x0_c00314{left:0.000000pt;}
.x6_c00314{left:49.920000pt;}
.x2a_c00314{left:51.200000pt;}
.x34_c00314{left:52.480000pt;}
.x35_c00314{left:53.760000pt;}
.x3c_c00314{left:55.680000pt;}
.x2_c00314{left:96.000000pt;}
.x18_c00314{left:105.600000pt;}
.x1c_c00314{left:114.560000pt;}
.x7_c00314{left:115.840000pt;}
.x3_c00314{left:124.800000pt;}
.x3d_c00314{left:135.040000pt;}
.x4_c00314{left:144.640000pt;}
.x2c_c00314{left:152.320000pt;}
.xa_c00314{left:153.600000pt;}
.x21_c00314{left:161.920000pt;}
.x5_c00314{left:192.000000pt;}
.x3e_c00314{left:196.480000pt;}
.xd_c00314{left:201.600000pt;}
.x3f_c00314{left:211.840000pt;}
.x36_c00314{left:230.400000pt;}
.x40_c00314{left:234.240000pt;}
.x25_c00314{left:240.000000pt;}
.x29_c00314{left:241.280000pt;}
.x14_c00314{left:249.600000pt;}
.x39_c00314{left:258.560000pt;}
.x8_c00314{left:259.840000pt;}
.x19_c00314{left:268.800000pt;}
.x41_c00314{left:273.920000pt;}
.x15_c00314{left:288.640000pt;}
.x37_c00314{left:296.960000pt;}
.x16_c00314{left:326.400000pt;}
.x38_c00314{left:336.640000pt;}
.x42_c00314{left:340.480000pt;}
.x3a_c00314{left:345.600000pt;}
.xb_c00314{left:355.200000pt;}
.x2d_c00314{left:364.160000pt;}
.x9_c00314{left:374.400000pt;}
.x22_c00314{left:383.360000pt;}
.x1a_c00314{left:393.600000pt;}
.xc_c00314{left:403.840000pt;}
.x2e_c00314{left:412.800000pt;}
.x26_c00314{left:421.760000pt;}
.x23_c00314{left:423.040000pt;}
.x2b_c00314{left:432.640000pt;}
.x1b_c00314{left:441.600000pt;}
.x17_c00314{left:451.200000pt;}
.x2f_c00314{left:460.160000pt;}
.x27_c00314{left:470.400000pt;}
.x3b_c00314{left:480.000000pt;}
.x31_c00314{left:488.960000pt;}
.x1e_c00314{left:490.240000pt;}
.x32_c00314{left:507.520000pt;}
.xe_c00314{left:509.440000pt;}
.x1d_c00314{left:518.400000pt;}
.x43_c00314{left:529.920000pt;}
.x24_c00314{left:536.960000pt;}
.x12_c00314{left:538.240000pt;}
.x1f_c00314{left:556.800000pt;}
.x44_c00314{left:558.080000pt;}
.x13_c00314{left:566.400000pt;}
.xf_c00314{left:567.680000pt;}
.x20_c00314{left:574.720000pt;}
.x28_c00314{left:576.000000pt;}
.x1_c00314{left:595.200000pt;}
.x33_c00314{left:603.520000pt;}
.x10_c00314{left:605.440000pt;}
.x30_c00314{left:622.080000pt;}
.x11_c00314{left:623.360000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_10b5a56084c617fefcd20e0e.woff2')format("woff");}.ff1_c00315{font-family:ff1_c00315;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4d_c00315{transform:matrix(0.200375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200375,0.000000,0.000000,0.250000,0,0);}
.m11_c00315{transform:matrix(0.201075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201075,0.000000,0.000000,0.250000,0,0);}
.m1b_c00315{transform:matrix(0.223550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223550,0.000000,0.000000,0.250000,0,0);}
.m20_c00315{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);}
.m2c_c00315{transform:matrix(0.230325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230325,0.000000,0.000000,0.250000,0,0);}
.m36_c00315{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_c00315{transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);}
.m1e_c00315{transform:matrix(0.242300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242300,0.000000,0.000000,0.250000,0,0);}
.m35_c00315{transform:matrix(0.243025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243025,0.000000,0.000000,0.250000,0,0);}
.m22_c00315{transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);}
.md_c00315{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m40_c00315{transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);}
.m41_c00315{transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);}
.m3e_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);}
.m7_c00315{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);}
.m37_c00315{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);}
.m29_c00315{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m14_c00315{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00315{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m17_c00315{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m1_c00315{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mb_c00315{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m39_c00315{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m3_c00315{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m45_c00315{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m23_c00315{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m44_c00315{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m8_c00315{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m16_c00315{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m19_c00315{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.me_c00315{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m13_c00315{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m27_c00315{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00315{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m28_c00315{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m43_c00315{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00315{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00315{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m49_c00315{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m5_c00315{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m12_c00315{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m46_c00315{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00315{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m10_c00315{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m26_c00315{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00315{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);}
.m47_c00315{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mf_c00315{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_c00315{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m0_c00315{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);}
.m3a_c00315{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m4_c00315{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m21_c00315{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00315{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m6_c00315{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m15_c00315{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);}
.m2_c00315{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);}
.m31_c00315{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);}
.m34_c00315{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);}
.m3d_c00315{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);}
.m32_c00315{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.mc_c00315{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00315{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);}
.m2d_c00315{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);}
.m3b_c00315{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m30_c00315{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m48_c00315{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m33_c00315{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00315{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00315{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m42_c00315{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);}
.m18_c00315{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.ma_c00315{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m38_c00315{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);}
.m1f_c00315{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m25_c00315{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00315{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00315{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);}
.m2e_c00315{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m50_c00315{transform:matrix(0.712500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.712500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.712500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00315{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.v2_c00315{vertical-align:-5.760000px;}
.v0_c00315{vertical-align:0.000000px;}
.v3_c00315{vertical-align:2.880000px;}
.v1_c00315{vertical-align:14.400000px;}
.ls0_c00315{letter-spacing:0.000000px;}
.sc__c00315{text-shadow:none;}
.sc0_c00315{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00315{-webkit-text-stroke:0px transparent;}
.sc0_c00315{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00315{word-spacing:-2.979600px;}
.ws3_c00315{word-spacing:0.000000px;}
.ws2_c00315{word-spacing:9.474000px;}
.ws1_c00315{word-spacing:11.648400px;}
.fc0_c00315{color:transparent;}
.fsb_c00315{font-size:34.560000px;}
.fsd_c00315{font-size:37.440000px;}
.fse_c00315{font-size:40.320000px;}
.fs10_c00315{font-size:43.200000px;}
.fs4_c00315{font-size:46.080000px;}
.fsc_c00315{font-size:48.960000px;}
.fs5_c00315{font-size:51.840000px;}
.fs9_c00315{font-size:54.720000px;}
.fs8_c00315{font-size:57.600000px;}
.fs2_c00315{font-size:60.480000px;}
.fs0_c00315{font-size:63.360000px;}
.fsa_c00315{font-size:66.240000px;}
.fs7_c00315{font-size:69.120000px;}
.fs6_c00315{font-size:72.000000px;}
.fs1_c00315{font-size:74.880000px;}
.fs3_c00315{font-size:77.760000px;}
.fsf_c00315{font-size:103.680000px;}
.y0_c00315{bottom:0.000000px;}
.y76_c00315{bottom:35.280000px;}
.y78_c00315{bottom:37.440000px;}
.y7a_c00315{bottom:38.160000px;}
.y75_c00315{bottom:38.880000px;}
.y79_c00315{bottom:40.320000px;}
.y74_c00315{bottom:77.040000px;}
.y73_c00315{bottom:82.080000px;}
.y6f_c00315{bottom:109.440000px;}
.y71_c00315{bottom:110.880000px;}
.y77_c00315{bottom:113.040000px;}
.y70_c00315{bottom:113.760000px;}
.y6e_c00315{bottom:114.480000px;}
.y72_c00315{bottom:115.200000px;}
.y6d_c00315{bottom:146.880000px;}
.y6b_c00315{bottom:152.640000px;}
.y6a_c00315{bottom:156.240000px;}
.y6c_c00315{bottom:156.960000px;}
.y5b_c00315{bottom:195.840000px;}
.y69_c00315{bottom:198.720000px;}
.y68_c00315{bottom:199.440000px;}
.y5a_c00315{bottom:200.160000px;}
.y67_c00315{bottom:201.600000px;}
.y56_c00315{bottom:239.040000px;}
.y59_c00315{bottom:239.760000px;}
.y58_c00315{bottom:241.200000px;}
.y57_c00315{bottom:242.640000px;}
.y55_c00315{bottom:243.360000px;}
.y66_c00315{bottom:244.080000px;}
.y51_c00315{bottom:281.520000px;}
.y54_c00315{bottom:282.960000px;}
.y53_c00315{bottom:284.400000px;}
.y50_c00315{bottom:285.120000px;}
.y52_c00315{bottom:285.840000px;}
.y65_c00315{bottom:287.280000px;}
.y4f_c00315{bottom:326.160000px;}
.y4e_c00315{bottom:329.760000px;}
.y4b_c00315{bottom:358.560000px;}
.y4d_c00315{bottom:359.280000px;}
.y63_c00315{bottom:360.720000px;}
.y4c_c00315{bottom:361.440000px;}
.y4a_c00315{bottom:362.160000px;}
.y64_c00315{bottom:362.880000px;}
.y47_c00315{bottom:401.040000px;}
.y48_c00315{bottom:401.760000px;}
.y49_c00315{bottom:402.480000px;}
.y61_c00315{bottom:404.640000px;}
.y46_c00315{bottom:405.360000px;}
.y62_c00315{bottom:406.080000px;}
.y44_c00315{bottom:444.960000px;}
.y5f_c00315{bottom:447.120000px;}
.y43_c00315{bottom:447.840000px;}
.y45_c00315{bottom:448.560000px;}
.y60_c00315{bottom:449.280000px;}
.y40_c00315{bottom:487.440000px;}
.y42_c00315{bottom:488.160000px;}
.y5e_c00315{bottom:489.600000px;}
.y5d_c00315{bottom:490.320000px;}
.y3f_c00315{bottom:491.040000px;}
.y41_c00315{bottom:491.760000px;}
.y3d_c00315{bottom:530.640000px;}
.y3e_c00315{bottom:532.080000px;}
.y5c_c00315{bottom:532.800000px;}
.y3c_c00315{bottom:533.520000px;}
.y38_c00315{bottom:574.560000px;}
.y3a_c00315{bottom:576.000000px;}
.y37_c00315{bottom:576.720000px;}
.y3b_c00315{bottom:577.440000px;}
.y39_c00315{bottom:578.160000px;}
.y32_c00315{bottom:617.040000px;}
.y33_c00315{bottom:618.480000px;}
.y31_c00315{bottom:619.200000px;}
.y35_c00315{bottom:619.920000px;}
.y34_c00315{bottom:620.640000px;}
.y36_c00315{bottom:621.360000px;}
.y2b_c00315{bottom:659.520000px;}
.y2f_c00315{bottom:660.240000px;}
.y30_c00315{bottom:660.960000px;}
.y2a_c00315{bottom:662.400000px;}
.y2c_c00315{bottom:663.120000px;}
.y2d_c00315{bottom:663.840000px;}
.y2e_c00315{bottom:664.560000px;}
.y27_c00315{bottom:702.720000px;}
.y26_c00315{bottom:704.160000px;}
.y28_c00315{bottom:704.880000px;}
.y29_c00315{bottom:705.600000px;}
.y22_c00315{bottom:745.920000px;}
.y24_c00315{bottom:746.640000px;}
.y21_c00315{bottom:747.360000px;}
.y25_c00315{bottom:748.080000px;}
.y23_c00315{bottom:749.520000px;}
.y1d_c00315{bottom:789.120000px;}
.y1f_c00315{bottom:789.840000px;}
.y1c_c00315{bottom:790.560000px;}
.y1e_c00315{bottom:792.000000px;}
.y20_c00315{bottom:792.720000px;}
.y18_c00315{bottom:831.600000px;}
.y1a_c00315{bottom:832.320000px;}
.y1b_c00315{bottom:833.040000px;}
.y17_c00315{bottom:833.760000px;}
.y19_c00315{bottom:835.920000px;}
.y15_c00315{bottom:875.520000px;}
.y12_c00315{bottom:876.240000px;}
.y13_c00315{bottom:876.960000px;}
.y16_c00315{bottom:878.400000px;}
.y14_c00315{bottom:879.120000px;}
.y11_c00315{bottom:918.720000px;}
.ya_c00315{bottom:919.440000px;}
.y9_c00315{bottom:920.160000px;}
.yb_c00315{bottom:922.320000px;}
.y10_c00315{bottom:923.040000px;}
.y8_c00315{bottom:961.920000px;}
.y7_c00315{bottom:962.640000px;}
.yf_c00315{bottom:964.080000px;}
.y4_c00315{bottom:1004.400000px;}
.y3_c00315{bottom:1005.840000px;}
.y5_c00315{bottom:1006.560000px;}
.y6_c00315{bottom:1008.720000px;}
.y2_c00315{bottom:1048.320000px;}
.y1_c00315{bottom:1049.040000px;}
.ye_c00315{bottom:1049.760000px;}
.yd_c00315{bottom:1050.480000px;}
.yc_c00315{bottom:1114.560000px;}
.hd_c00315{height:31.100625px;}
.hf_c00315{height:33.692344px;}
.h10_c00315{height:36.284062px;}
.h12_c00315{height:38.875781px;}
.h6_c00315{height:41.467500px;}
.he_c00315{height:44.059219px;}
.h7_c00315{height:46.650937px;}
.hb_c00315{height:49.242656px;}
.ha_c00315{height:51.834375px;}
.h4_c00315{height:54.426094px;}
.h13_c00315{height:54.714375px;}
.h2_c00315{height:57.017812px;}
.hc_c00315{height:59.609531px;}
.h9_c00315{height:62.201250px;}
.h8_c00315{height:64.792969px;}
.h3_c00315{height:67.384687px;}
.h5_c00315{height:69.976406px;}
.h11_c00315{height:93.301875px;}
.h1_c00315{height:1166.250000px;}
.h0_c00315{height:1166.400000px;}
.w1_c00315{width:765.750000px;}
.w0_c00315{width:766.080000px;}
.x0_c00315{left:0.000000px;}
.x1_c00315{left:64.800000px;}
.x25_c00315{left:66.240000px;}
.x2e_c00315{left:67.680000px;}
.x2_c00315{left:138.240000px;}
.x28_c00315{left:181.440000px;}
.x33_c00315{left:192.240000px;}
.x17_c00315{left:224.640000px;}
.x12_c00315{left:226.080000px;}
.x1d_c00315{left:236.160000px;}
.x2f_c00315{left:246.240000px;}
.x2b_c00315{left:256.320000px;}
.x6_c00315{left:257.760000px;}
.x5_c00315{left:268.560000px;}
.x16_c00315{left:278.640000px;}
.x22_c00315{left:280.080000px;}
.x3_c00315{left:300.240000px;}
.x2c_c00315{left:301.680000px;}
.x30_c00315{left:311.040000px;}
.x7_c00315{left:312.480000px;}
.x15_c00315{left:322.560000px;}
.x1a_c00315{left:354.240000px;}
.x4_c00315{left:355.680000px;}
.x1b_c00315{left:365.040000px;}
.x1e_c00315{left:387.360000px;}
.x29_c00315{left:397.440000px;}
.x13_c00315{left:408.960000px;}
.x31_c00315{left:429.840000px;}
.x2d_c00315{left:441.360000px;}
.x23_c00315{left:452.160000px;}
.x18_c00315{left:461.520000px;}
.x26_c00315{left:462.960000px;}
.x1f_c00315{left:473.040000px;}
.x27_c00315{left:483.840000px;}
.x32_c00315{left:492.480000px;}
.x19_c00315{left:505.440000px;}
.x20_c00315{left:527.040000px;}
.x24_c00315{left:550.080000px;}
.x1c_c00315{left:559.440000px;}
.x9_c00315{left:560.880000px;}
.x21_c00315{left:581.040000px;}
.xe_c00315{left:582.480000px;}
.x34_c00315{left:591.120000px;}
.x10_c00315{left:592.560000px;}
.xd_c00315{left:614.160000px;}
.xa_c00315{left:615.600000px;}
.xf_c00315{left:646.560000px;}
.xb_c00315{left:648.000000px;}
.x11_c00315{left:678.960000px;}
.x8_c00315{left:686.880000px;}
.xc_c00315{left:689.040000px;}
.x2a_c00315{left:708.480000px;}
.x14_c00315{left:709.920000px;}
@media print{
.v2_c00315{vertical-align:-5.120000pt;}
.v0_c00315{vertical-align:0.000000pt;}
.v3_c00315{vertical-align:2.560000pt;}
.v1_c00315{vertical-align:12.800000pt;}
.ls0_c00315{letter-spacing:0.000000pt;}
.ws0_c00315{word-spacing:-2.648533pt;}
.ws3_c00315{word-spacing:0.000000pt;}
.ws2_c00315{word-spacing:8.421333pt;}
.ws1_c00315{word-spacing:10.354133pt;}
.fsb_c00315{font-size:30.720000pt;}
.fsd_c00315{font-size:33.280000pt;}
.fse_c00315{font-size:35.840000pt;}
.fs10_c00315{font-size:38.400000pt;}
.fs4_c00315{font-size:40.960000pt;}
.fsc_c00315{font-size:43.520000pt;}
.fs5_c00315{font-size:46.080000pt;}
.fs9_c00315{font-size:48.640000pt;}
.fs8_c00315{font-size:51.200000pt;}
.fs2_c00315{font-size:53.760000pt;}
.fs0_c00315{font-size:56.320000pt;}
.fsa_c00315{font-size:58.880000pt;}
.fs7_c00315{font-size:61.440000pt;}
.fs6_c00315{font-size:64.000000pt;}
.fs1_c00315{font-size:66.560000pt;}
.fs3_c00315{font-size:69.120000pt;}
.fsf_c00315{font-size:92.160000pt;}
.y0_c00315{bottom:0.000000pt;}
.y76_c00315{bottom:31.360000pt;}
.y78_c00315{bottom:33.280000pt;}
.y7a_c00315{bottom:33.920000pt;}
.y75_c00315{bottom:34.560000pt;}
.y79_c00315{bottom:35.840000pt;}
.y74_c00315{bottom:68.480000pt;}
.y73_c00315{bottom:72.960000pt;}
.y6f_c00315{bottom:97.280000pt;}
.y71_c00315{bottom:98.560000pt;}
.y77_c00315{bottom:100.480000pt;}
.y70_c00315{bottom:101.120000pt;}
.y6e_c00315{bottom:101.760000pt;}
.y72_c00315{bottom:102.400000pt;}
.y6d_c00315{bottom:130.560000pt;}
.y6b_c00315{bottom:135.680000pt;}
.y6a_c00315{bottom:138.880000pt;}
.y6c_c00315{bottom:139.520000pt;}
.y5b_c00315{bottom:174.080000pt;}
.y69_c00315{bottom:176.640000pt;}
.y68_c00315{bottom:177.280000pt;}
.y5a_c00315{bottom:177.920000pt;}
.y67_c00315{bottom:179.200000pt;}
.y56_c00315{bottom:212.480000pt;}
.y59_c00315{bottom:213.120000pt;}
.y58_c00315{bottom:214.400000pt;}
.y57_c00315{bottom:215.680000pt;}
.y55_c00315{bottom:216.320000pt;}
.y66_c00315{bottom:216.960000pt;}
.y51_c00315{bottom:250.240000pt;}
.y54_c00315{bottom:251.520000pt;}
.y53_c00315{bottom:252.800000pt;}
.y50_c00315{bottom:253.440000pt;}
.y52_c00315{bottom:254.080000pt;}
.y65_c00315{bottom:255.360000pt;}
.y4f_c00315{bottom:289.920000pt;}
.y4e_c00315{bottom:293.120000pt;}
.y4b_c00315{bottom:318.720000pt;}
.y4d_c00315{bottom:319.360000pt;}
.y63_c00315{bottom:320.640000pt;}
.y4c_c00315{bottom:321.280000pt;}
.y4a_c00315{bottom:321.920000pt;}
.y64_c00315{bottom:322.560000pt;}
.y47_c00315{bottom:356.480000pt;}
.y48_c00315{bottom:357.120000pt;}
.y49_c00315{bottom:357.760000pt;}
.y61_c00315{bottom:359.680000pt;}
.y46_c00315{bottom:360.320000pt;}
.y62_c00315{bottom:360.960000pt;}
.y44_c00315{bottom:395.520000pt;}
.y5f_c00315{bottom:397.440000pt;}
.y43_c00315{bottom:398.080000pt;}
.y45_c00315{bottom:398.720000pt;}
.y60_c00315{bottom:399.360000pt;}
.y40_c00315{bottom:433.280000pt;}
.y42_c00315{bottom:433.920000pt;}
.y5e_c00315{bottom:435.200000pt;}
.y5d_c00315{bottom:435.840000pt;}
.y3f_c00315{bottom:436.480000pt;}
.y41_c00315{bottom:437.120000pt;}
.y3d_c00315{bottom:471.680000pt;}
.y3e_c00315{bottom:472.960000pt;}
.y5c_c00315{bottom:473.600000pt;}
.y3c_c00315{bottom:474.240000pt;}
.y38_c00315{bottom:510.720000pt;}
.y3a_c00315{bottom:512.000000pt;}
.y37_c00315{bottom:512.640000pt;}
.y3b_c00315{bottom:513.280000pt;}
.y39_c00315{bottom:513.920000pt;}
.y32_c00315{bottom:548.480000pt;}
.y33_c00315{bottom:549.760000pt;}
.y31_c00315{bottom:550.400000pt;}
.y35_c00315{bottom:551.040000pt;}
.y34_c00315{bottom:551.680000pt;}
.y36_c00315{bottom:552.320000pt;}
.y2b_c00315{bottom:586.240000pt;}
.y2f_c00315{bottom:586.880000pt;}
.y30_c00315{bottom:587.520000pt;}
.y2a_c00315{bottom:588.800000pt;}
.y2c_c00315{bottom:589.440000pt;}
.y2d_c00315{bottom:590.080000pt;}
.y2e_c00315{bottom:590.720000pt;}
.y27_c00315{bottom:624.640000pt;}
.y26_c00315{bottom:625.920000pt;}
.y28_c00315{bottom:626.560000pt;}
.y29_c00315{bottom:627.200000pt;}
.y22_c00315{bottom:663.040000pt;}
.y24_c00315{bottom:663.680000pt;}
.y21_c00315{bottom:664.320000pt;}
.y25_c00315{bottom:664.960000pt;}
.y23_c00315{bottom:666.240000pt;}
.y1d_c00315{bottom:701.440000pt;}
.y1f_c00315{bottom:702.080000pt;}
.y1c_c00315{bottom:702.720000pt;}
.y1e_c00315{bottom:704.000000pt;}
.y20_c00315{bottom:704.640000pt;}
.y18_c00315{bottom:739.200000pt;}
.y1a_c00315{bottom:739.840000pt;}
.y1b_c00315{bottom:740.480000pt;}
.y17_c00315{bottom:741.120000pt;}
.y19_c00315{bottom:743.040000pt;}
.y15_c00315{bottom:778.240000pt;}
.y12_c00315{bottom:778.880000pt;}
.y13_c00315{bottom:779.520000pt;}
.y16_c00315{bottom:780.800000pt;}
.y14_c00315{bottom:781.440000pt;}
.y11_c00315{bottom:816.640000pt;}
.ya_c00315{bottom:817.280000pt;}
.y9_c00315{bottom:817.920000pt;}
.yb_c00315{bottom:819.840000pt;}
.y10_c00315{bottom:820.480000pt;}
.y8_c00315{bottom:855.040000pt;}
.y7_c00315{bottom:855.680000pt;}
.yf_c00315{bottom:856.960000pt;}
.y4_c00315{bottom:892.800000pt;}
.y3_c00315{bottom:894.080000pt;}
.y5_c00315{bottom:894.720000pt;}
.y6_c00315{bottom:896.640000pt;}
.y2_c00315{bottom:931.840000pt;}
.y1_c00315{bottom:932.480000pt;}
.ye_c00315{bottom:933.120000pt;}
.yd_c00315{bottom:933.760000pt;}
.yc_c00315{bottom:990.720000pt;}
.hd_c00315{height:27.645000pt;}
.hf_c00315{height:29.948750pt;}
.h10_c00315{height:32.252500pt;}
.h12_c00315{height:34.556250pt;}
.h6_c00315{height:36.860000pt;}
.he_c00315{height:39.163750pt;}
.h7_c00315{height:41.467500pt;}
.hb_c00315{height:43.771250pt;}
.ha_c00315{height:46.075000pt;}
.h4_c00315{height:48.378750pt;}
.h13_c00315{height:48.635000pt;}
.h2_c00315{height:50.682500pt;}
.hc_c00315{height:52.986250pt;}
.h9_c00315{height:55.290000pt;}
.h8_c00315{height:57.593750pt;}
.h3_c00315{height:59.897500pt;}
.h5_c00315{height:62.201250pt;}
.h11_c00315{height:82.935000pt;}
.h1_c00315{height:1036.666667pt;}
.h0_c00315{height:1036.800000pt;}
.w1_c00315{width:680.666667pt;}
.w0_c00315{width:680.960000pt;}
.x0_c00315{left:0.000000pt;}
.x1_c00315{left:57.600000pt;}
.x25_c00315{left:58.880000pt;}
.x2e_c00315{left:60.160000pt;}
.x2_c00315{left:122.880000pt;}
.x28_c00315{left:161.280000pt;}
.x33_c00315{left:170.880000pt;}
.x17_c00315{left:199.680000pt;}
.x12_c00315{left:200.960000pt;}
.x1d_c00315{left:209.920000pt;}
.x2f_c00315{left:218.880000pt;}
.x2b_c00315{left:227.840000pt;}
.x6_c00315{left:229.120000pt;}
.x5_c00315{left:238.720000pt;}
.x16_c00315{left:247.680000pt;}
.x22_c00315{left:248.960000pt;}
.x3_c00315{left:266.880000pt;}
.x2c_c00315{left:268.160000pt;}
.x30_c00315{left:276.480000pt;}
.x7_c00315{left:277.760000pt;}
.x15_c00315{left:286.720000pt;}
.x1a_c00315{left:314.880000pt;}
.x4_c00315{left:316.160000pt;}
.x1b_c00315{left:324.480000pt;}
.x1e_c00315{left:344.320000pt;}
.x29_c00315{left:353.280000pt;}
.x13_c00315{left:363.520000pt;}
.x31_c00315{left:382.080000pt;}
.x2d_c00315{left:392.320000pt;}
.x23_c00315{left:401.920000pt;}
.x18_c00315{left:410.240000pt;}
.x26_c00315{left:411.520000pt;}
.x1f_c00315{left:420.480000pt;}
.x27_c00315{left:430.080000pt;}
.x32_c00315{left:437.760000pt;}
.x19_c00315{left:449.280000pt;}
.x20_c00315{left:468.480000pt;}
.x24_c00315{left:488.960000pt;}
.x1c_c00315{left:497.280000pt;}
.x9_c00315{left:498.560000pt;}
.x21_c00315{left:516.480000pt;}
.xe_c00315{left:517.760000pt;}
.x34_c00315{left:525.440000pt;}
.x10_c00315{left:526.720000pt;}
.xd_c00315{left:545.920000pt;}
.xa_c00315{left:547.200000pt;}
.xf_c00315{left:574.720000pt;}
.xb_c00315{left:576.000000pt;}
.x11_c00315{left:603.520000pt;}
.x8_c00315{left:610.560000pt;}
.xc_c00315{left:612.480000pt;}
.x2a_c00315{left:629.760000pt;}
.x14_c00315{left:631.040000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c6a0b70a4459ebad4231e9c8.woff2')format("woff");}.ff1_c00316{font-family:ff1_c00316;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3d_c00316{transform:matrix(0.150875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150875,0.000000,0.000000,0.250000,0,0);}
.m45_c00316{transform:matrix(0.205350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205350,0.000000,0.000000,0.250000,0,0);}
.m24_c00316{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);}
.m1d_c00316{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m3b_c00316{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m1e_c00316{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m38_c00316{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);}
.m48_c00316{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m47_c00316{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m27_c00316{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);}
.m37_c00316{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_c00316{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);}
.m20_c00316{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_c00316{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_c00316{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m19_c00316{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_c00316{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_c00316{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m10_c00316{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2_c00316{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00316{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m5_c00316{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00316{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m18_c00316{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m8_c00316{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00316{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00316{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3_c00316{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m6_c00316{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00316{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m26_c00316{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m25_c00316{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m11_c00316{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m9_c00316{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00316{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m0_c00316{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1_c00316{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_c00316{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m14_c00316{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_c00316{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m49_c00316{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m17_c00316{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m7_c00316{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);}
.m44_c00316{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m43_c00316{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00316{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);}
.m41_c00316{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);}
.m42_c00316{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);}
.m35_c00316{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);}
.m1b_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);}
.m33_c00316{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);}
.m3c_c00316{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.md_c00316{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m36_c00316{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m31_c00316{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);}
.m3e_c00316{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m4_c00316{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);}
.m34_c00316{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m23_c00316{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00316{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m22_c00316{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m39_c00316{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m30_c00316{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m29_c00316{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00316{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m40_c00316{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);}
.m16_c00316{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m12_c00316{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);}
.m4a_c00316{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m46_c00316{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00316{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);}
.m21_c00316{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00316{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00316{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);}
.m4d_c00316{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m28_c00316{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00316{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.mf_c00316{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m32_c00316{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);}
.v0_c00316{vertical-align:0.000000px;}
.v1_c00316{vertical-align:2.880000px;}
.ls0_c00316{letter-spacing:0.000000px;}
.sc__c00316{text-shadow:none;}
.sc0_c00316{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00316{-webkit-text-stroke:0px transparent;}
.sc0_c00316{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00316{word-spacing:0.000000px;}
.ws0_c00316{word-spacing:492.360000px;}
.fc0_c00316{color:transparent;}
.fsf_c00316{font-size:20.160000px;}
.fsd_c00316{font-size:34.560000px;}
.fs11_c00316{font-size:37.440000px;}
.fsb_c00316{font-size:40.320000px;}
.fse_c00316{font-size:43.200000px;}
.fsa_c00316{font-size:46.080000px;}
.fsc_c00316{font-size:48.960000px;}
.fs5_c00316{font-size:51.840000px;}
.fs9_c00316{font-size:54.720000px;}
.fs8_c00316{font-size:57.600000px;}
.fs6_c00316{font-size:60.480000px;}
.fs1_c00316{font-size:63.360000px;}
.fs7_c00316{font-size:66.240000px;}
.fs4_c00316{font-size:69.120000px;}
.fs3_c00316{font-size:72.000000px;}
.fs2_c00316{font-size:74.880000px;}
.fs0_c00316{font-size:77.760000px;}
.fs10_c00316{font-size:97.920000px;}
.y0_c00316{bottom:0.000000px;}
.y79_c00316{bottom:84.960000px;}
.y76_c00316{bottom:85.680000px;}
.y77_c00316{bottom:87.840000px;}
.y7a_c00316{bottom:88.560000px;}
.y78_c00316{bottom:89.280000px;}
.y75_c00316{bottom:90.000000px;}
.y72_c00316{bottom:128.880000px;}
.y71_c00316{bottom:131.040000px;}
.y6d_c00316{bottom:160.560000px;}
.y6f_c00316{bottom:163.440000px;}
.y73_c00316{bottom:164.160000px;}
.y6e_c00316{bottom:164.880000px;}
.y6c_c00316{bottom:165.600000px;}
.y70_c00316{bottom:166.320000px;}
.y74_c00316{bottom:167.040000px;}
.y65_c00316{bottom:204.480000px;}
.y66_c00316{bottom:205.920000px;}
.y67_c00316{bottom:208.080000px;}
.y64_c00316{bottom:208.800000px;}
.y61_c00316{bottom:236.880000px;}
.y63_c00316{bottom:238.320000px;}
.y69_c00316{bottom:239.760000px;}
.y60_c00316{bottom:240.480000px;}
.y62_c00316{bottom:241.200000px;}
.y6a_c00316{bottom:241.920000px;}
.y6b_c00316{bottom:242.640000px;}
.y5d_c00316{bottom:280.080000px;}
.y5f_c00316{bottom:280.800000px;}
.y5e_c00316{bottom:282.240000px;}
.y68_c00316{bottom:282.960000px;}
.y5b_c00316{bottom:283.680000px;}
.y5c_c00316{bottom:285.120000px;}
.y57_c00316{bottom:325.440000px;}
.y58_c00316{bottom:327.600000px;}
.y53_c00316{bottom:356.400000px;}
.y52_c00316{bottom:357.120000px;}
.y56_c00316{bottom:357.840000px;}
.y51_c00316{bottom:358.560000px;}
.y54_c00316{bottom:359.280000px;}
.y55_c00316{bottom:360.000000px;}
.y50_c00316{bottom:387.360000px;}
.y59_c00316{bottom:390.240000px;}
.y5a_c00316{bottom:390.960000px;}
.y4f_c00316{bottom:391.680000px;}
.y4d_c00316{bottom:392.400000px;}
.y4e_c00316{bottom:393.120000px;}
.y4a_c00316{bottom:423.360000px;}
.y4b_c00316{bottom:434.160000px;}
.y4c_c00316{bottom:434.880000px;}
.y49_c00316{bottom:485.280000px;}
.y47_c00316{bottom:488.160000px;}
.y48_c00316{bottom:489.600000px;}
.y44_c00316{bottom:516.960000px;}
.y45_c00316{bottom:519.120000px;}
.y43_c00316{bottom:519.840000px;}
.y46_c00316{bottom:521.280000px;}
.y41_c00316{bottom:560.880000px;}
.y3d_c00316{bottom:561.600000px;}
.y42_c00316{bottom:562.320000px;}
.y40_c00316{bottom:563.040000px;}
.y3e_c00316{bottom:564.480000px;}
.y3f_c00316{bottom:565.200000px;}
.y3c_c00316{bottom:604.080000px;}
.y39_c00316{bottom:604.800000px;}
.y3a_c00316{bottom:605.520000px;}
.y38_c00316{bottom:606.240000px;}
.y3b_c00316{bottom:607.680000px;}
.y34_c00316{bottom:648.000000px;}
.y35_c00316{bottom:648.720000px;}
.y36_c00316{bottom:650.160000px;}
.y33_c00316{bottom:650.880000px;}
.y32_c00316{bottom:651.600000px;}
.y2e_c00316{bottom:679.680000px;}
.y37_c00316{bottom:680.400000px;}
.y2d_c00316{bottom:681.120000px;}
.y30_c00316{bottom:682.560000px;}
.y2f_c00316{bottom:683.280000px;}
.y31_c00316{bottom:684.720000px;}
.y2c_c00316{bottom:723.600000px;}
.y2a_c00316{bottom:724.320000px;}
.y2b_c00316{bottom:726.480000px;}
.y24_c00316{bottom:755.280000px;}
.y29_c00316{bottom:756.000000px;}
.y23_c00316{bottom:756.720000px;}
.y27_c00316{bottom:757.440000px;}
.y26_c00316{bottom:758.160000px;}
.y28_c00316{bottom:758.880000px;}
.y25_c00316{bottom:759.600000px;}
.y21_c00316{bottom:797.760000px;}
.y1e_c00316{bottom:798.480000px;}
.y22_c00316{bottom:799.920000px;}
.y1c_c00316{bottom:800.640000px;}
.y20_c00316{bottom:801.360000px;}
.y1f_c00316{bottom:802.080000px;}
.y1d_c00316{bottom:802.800000px;}
.y1a_c00316{bottom:841.680000px;}
.y1b_c00316{bottom:842.400000px;}
.y18_c00316{bottom:843.840000px;}
.y19_c00316{bottom:846.000000px;}
.y16_c00316{bottom:884.880000px;}
.y17_c00316{bottom:885.600000px;}
.y15_c00316{bottom:886.320000px;}
.y11_c00316{bottom:928.080000px;}
.yf_c00316{bottom:928.800000px;}
.y14_c00316{bottom:929.520000px;}
.y13_c00316{bottom:930.240000px;}
.y12_c00316{bottom:930.960000px;}
.y10_c00316{bottom:932.400000px;}
.ye_c00316{bottom:969.840000px;}
.yc_c00316{bottom:970.560000px;}
.yd_c00316{bottom:971.280000px;}
.yb_c00316{bottom:972.000000px;}
.ya_c00316{bottom:1012.320000px;}
.y8_c00316{bottom:1013.760000px;}
.y9_c00316{bottom:1014.480000px;}
.y7_c00316{bottom:1015.200000px;}
.y6_c00316{bottom:1055.520000px;}
.y4_c00316{bottom:1056.240000px;}
.y3_c00316{bottom:1056.960000px;}
.y2_c00316{bottom:1058.400000px;}
.y5_c00316{bottom:1059.120000px;}
.y1_c00316{bottom:1113.120000px;}
.h11_c00316{height:18.142031px;}
.hf_c00316{height:31.100625px;}
.h13_c00316{height:33.692344px;}
.hd_c00316{height:36.284062px;}
.h10_c00316{height:38.875781px;}
.hc_c00316{height:41.467500px;}
.he_c00316{height:44.059219px;}
.h7_c00316{height:46.650937px;}
.hb_c00316{height:49.242656px;}
.ha_c00316{height:51.834375px;}
.h8_c00316{height:54.426094px;}
.h3_c00316{height:57.017812px;}
.h9_c00316{height:59.609531px;}
.h6_c00316{height:62.201250px;}
.h5_c00316{height:64.792969px;}
.h4_c00316{height:67.384687px;}
.h2_c00316{height:69.976406px;}
.h12_c00316{height:88.118437px;}
.h0_c00316{height:1160.640000px;}
.h1_c00316{height:1161.000000px;}
.w0_c00316{width:758.160000px;}
.w1_c00316{width:758.250000px;}
.x0_c00316{left:0.000000px;}
.x2_c00316{left:59.040000px;}
.x28_c00316{left:60.480000px;}
.x30_c00316{left:61.920000px;}
.x2c_c00316{left:112.320000px;}
.x14_c00316{left:132.480000px;}
.x3_c00316{left:133.920000px;}
.x2d_c00316{left:154.800000px;}
.x20_c00316{left:175.680000px;}
.xc_c00316{left:177.120000px;}
.x37_c00316{left:185.760000px;}
.x15_c00316{left:187.200000px;}
.x4_c00316{left:209.520000px;}
.x39_c00316{left:218.160000px;}
.x21_c00316{left:220.320000px;}
.x2e_c00316{left:228.960000px;}
.x29_c00316{left:231.120000px;}
.x1c_c00316{left:252.720000px;}
.x26_c00316{left:263.520000px;}
.x16_c00316{left:273.600000px;}
.x2b_c00316{left:285.120000px;}
.xa_c00316{left:295.200000px;}
.x31_c00316{left:305.280000px;}
.x17_c00316{left:317.520000px;}
.x35_c00316{left:328.320000px;}
.x22_c00316{left:349.200000px;}
.x18_c00316{left:371.520000px;}
.xd_c00316{left:381.600000px;}
.x1d_c00316{left:403.200000px;}
.x23_c00316{left:413.280000px;}
.x2a_c00316{left:414.720000px;}
.xe_c00316{left:425.520000px;}
.x3a_c00316{left:435.600000px;}
.xb_c00316{left:447.120000px;}
.x1e_c00316{left:456.480000px;}
.x19_c00316{left:457.920000px;}
.x27_c00316{left:466.560000px;}
.x24_c00316{left:468.000000px;}
.x32_c00316{left:488.160000px;}
.x2f_c00316{left:490.320000px;}
.x1f_c00316{left:501.120000px;}
.x1a_c00316{left:511.920000px;}
.x36_c00316{left:521.280000px;}
.x25_c00316{left:542.880000px;}
.x12_c00316{left:555.120000px;}
.x1b_c00316{left:575.280000px;}
.x7_c00316{left:576.720000px;}
.x5_c00316{left:587.520000px;}
.x33_c00316{left:606.960000px;}
.xf_c00316{left:609.120000px;}
.x8_c00316{left:640.080000px;}
.x6_c00316{left:641.520000px;}
.x13_c00316{left:652.320000px;}
.x38_c00316{left:672.480000px;}
.x9_c00316{left:673.920000px;}
.x1_c00316{left:682.560000px;}
.x10_c00316{left:684.000000px;}
.x34_c00316{left:702.720000px;}
.x11_c00316{left:704.160000px;}
@media print{
.v0_c00316{vertical-align:0.000000pt;}
.v1_c00316{vertical-align:2.560000pt;}
.ls0_c00316{letter-spacing:0.000000pt;}
.ws1_c00316{word-spacing:0.000000pt;}
.ws0_c00316{word-spacing:437.653333pt;}
.fsf_c00316{font-size:17.920000pt;}
.fsd_c00316{font-size:30.720000pt;}
.fs11_c00316{font-size:33.280000pt;}
.fsb_c00316{font-size:35.840000pt;}
.fse_c00316{font-size:38.400000pt;}
.fsa_c00316{font-size:40.960000pt;}
.fsc_c00316{font-size:43.520000pt;}
.fs5_c00316{font-size:46.080000pt;}
.fs9_c00316{font-size:48.640000pt;}
.fs8_c00316{font-size:51.200000pt;}
.fs6_c00316{font-size:53.760000pt;}
.fs1_c00316{font-size:56.320000pt;}
.fs7_c00316{font-size:58.880000pt;}
.fs4_c00316{font-size:61.440000pt;}
.fs3_c00316{font-size:64.000000pt;}
.fs2_c00316{font-size:66.560000pt;}
.fs0_c00316{font-size:69.120000pt;}
.fs10_c00316{font-size:87.040000pt;}
.y0_c00316{bottom:0.000000pt;}
.y79_c00316{bottom:75.520000pt;}
.y76_c00316{bottom:76.160000pt;}
.y77_c00316{bottom:78.080000pt;}
.y7a_c00316{bottom:78.720000pt;}
.y78_c00316{bottom:79.360000pt;}
.y75_c00316{bottom:80.000000pt;}
.y72_c00316{bottom:114.560000pt;}
.y71_c00316{bottom:116.480000pt;}
.y6d_c00316{bottom:142.720000pt;}
.y6f_c00316{bottom:145.280000pt;}
.y73_c00316{bottom:145.920000pt;}
.y6e_c00316{bottom:146.560000pt;}
.y6c_c00316{bottom:147.200000pt;}
.y70_c00316{bottom:147.840000pt;}
.y74_c00316{bottom:148.480000pt;}
.y65_c00316{bottom:181.760000pt;}
.y66_c00316{bottom:183.040000pt;}
.y67_c00316{bottom:184.960000pt;}
.y64_c00316{bottom:185.600000pt;}
.y61_c00316{bottom:210.560000pt;}
.y63_c00316{bottom:211.840000pt;}
.y69_c00316{bottom:213.120000pt;}
.y60_c00316{bottom:213.760000pt;}
.y62_c00316{bottom:214.400000pt;}
.y6a_c00316{bottom:215.040000pt;}
.y6b_c00316{bottom:215.680000pt;}
.y5d_c00316{bottom:248.960000pt;}
.y5f_c00316{bottom:249.600000pt;}
.y5e_c00316{bottom:250.880000pt;}
.y68_c00316{bottom:251.520000pt;}
.y5b_c00316{bottom:252.160000pt;}
.y5c_c00316{bottom:253.440000pt;}
.y57_c00316{bottom:289.280000pt;}
.y58_c00316{bottom:291.200000pt;}
.y53_c00316{bottom:316.800000pt;}
.y52_c00316{bottom:317.440000pt;}
.y56_c00316{bottom:318.080000pt;}
.y51_c00316{bottom:318.720000pt;}
.y54_c00316{bottom:319.360000pt;}
.y55_c00316{bottom:320.000000pt;}
.y50_c00316{bottom:344.320000pt;}
.y59_c00316{bottom:346.880000pt;}
.y5a_c00316{bottom:347.520000pt;}
.y4f_c00316{bottom:348.160000pt;}
.y4d_c00316{bottom:348.800000pt;}
.y4e_c00316{bottom:349.440000pt;}
.y4a_c00316{bottom:376.320000pt;}
.y4b_c00316{bottom:385.920000pt;}
.y4c_c00316{bottom:386.560000pt;}
.y49_c00316{bottom:431.360000pt;}
.y47_c00316{bottom:433.920000pt;}
.y48_c00316{bottom:435.200000pt;}
.y44_c00316{bottom:459.520000pt;}
.y45_c00316{bottom:461.440000pt;}
.y43_c00316{bottom:462.080000pt;}
.y46_c00316{bottom:463.360000pt;}
.y41_c00316{bottom:498.560000pt;}
.y3d_c00316{bottom:499.200000pt;}
.y42_c00316{bottom:499.840000pt;}
.y40_c00316{bottom:500.480000pt;}
.y3e_c00316{bottom:501.760000pt;}
.y3f_c00316{bottom:502.400000pt;}
.y3c_c00316{bottom:536.960000pt;}
.y39_c00316{bottom:537.600000pt;}
.y3a_c00316{bottom:538.240000pt;}
.y38_c00316{bottom:538.880000pt;}
.y3b_c00316{bottom:540.160000pt;}
.y34_c00316{bottom:576.000000pt;}
.y35_c00316{bottom:576.640000pt;}
.y36_c00316{bottom:577.920000pt;}
.y33_c00316{bottom:578.560000pt;}
.y32_c00316{bottom:579.200000pt;}
.y2e_c00316{bottom:604.160000pt;}
.y37_c00316{bottom:604.800000pt;}
.y2d_c00316{bottom:605.440000pt;}
.y30_c00316{bottom:606.720000pt;}
.y2f_c00316{bottom:607.360000pt;}
.y31_c00316{bottom:608.640000pt;}
.y2c_c00316{bottom:643.200000pt;}
.y2a_c00316{bottom:643.840000pt;}
.y2b_c00316{bottom:645.760000pt;}
.y24_c00316{bottom:671.360000pt;}
.y29_c00316{bottom:672.000000pt;}
.y23_c00316{bottom:672.640000pt;}
.y27_c00316{bottom:673.280000pt;}
.y26_c00316{bottom:673.920000pt;}
.y28_c00316{bottom:674.560000pt;}
.y25_c00316{bottom:675.200000pt;}
.y21_c00316{bottom:709.120000pt;}
.y1e_c00316{bottom:709.760000pt;}
.y22_c00316{bottom:711.040000pt;}
.y1c_c00316{bottom:711.680000pt;}
.y20_c00316{bottom:712.320000pt;}
.y1f_c00316{bottom:712.960000pt;}
.y1d_c00316{bottom:713.600000pt;}
.y1a_c00316{bottom:748.160000pt;}
.y1b_c00316{bottom:748.800000pt;}
.y18_c00316{bottom:750.080000pt;}
.y19_c00316{bottom:752.000000pt;}
.y16_c00316{bottom:786.560000pt;}
.y17_c00316{bottom:787.200000pt;}
.y15_c00316{bottom:787.840000pt;}
.y11_c00316{bottom:824.960000pt;}
.yf_c00316{bottom:825.600000pt;}
.y14_c00316{bottom:826.240000pt;}
.y13_c00316{bottom:826.880000pt;}
.y12_c00316{bottom:827.520000pt;}
.y10_c00316{bottom:828.800000pt;}
.ye_c00316{bottom:862.080000pt;}
.yc_c00316{bottom:862.720000pt;}
.yd_c00316{bottom:863.360000pt;}
.yb_c00316{bottom:864.000000pt;}
.ya_c00316{bottom:899.840000pt;}
.y8_c00316{bottom:901.120000pt;}
.y9_c00316{bottom:901.760000pt;}
.y7_c00316{bottom:902.400000pt;}
.y6_c00316{bottom:938.240000pt;}
.y4_c00316{bottom:938.880000pt;}
.y3_c00316{bottom:939.520000pt;}
.y2_c00316{bottom:940.800000pt;}
.y5_c00316{bottom:941.440000pt;}
.y1_c00316{bottom:989.440000pt;}
.h11_c00316{height:16.126250pt;}
.hf_c00316{height:27.645000pt;}
.h13_c00316{height:29.948750pt;}
.hd_c00316{height:32.252500pt;}
.h10_c00316{height:34.556250pt;}
.hc_c00316{height:36.860000pt;}
.he_c00316{height:39.163750pt;}
.h7_c00316{height:41.467500pt;}
.hb_c00316{height:43.771250pt;}
.ha_c00316{height:46.075000pt;}
.h8_c00316{height:48.378750pt;}
.h3_c00316{height:50.682500pt;}
.h9_c00316{height:52.986250pt;}
.h6_c00316{height:55.290000pt;}
.h5_c00316{height:57.593750pt;}
.h4_c00316{height:59.897500pt;}
.h2_c00316{height:62.201250pt;}
.h12_c00316{height:78.327500pt;}
.h0_c00316{height:1031.680000pt;}
.h1_c00316{height:1032.000000pt;}
.w0_c00316{width:673.920000pt;}
.w1_c00316{width:674.000000pt;}
.x0_c00316{left:0.000000pt;}
.x2_c00316{left:52.480000pt;}
.x28_c00316{left:53.760000pt;}
.x30_c00316{left:55.040000pt;}
.x2c_c00316{left:99.840000pt;}
.x14_c00316{left:117.760000pt;}
.x3_c00316{left:119.040000pt;}
.x2d_c00316{left:137.600000pt;}
.x20_c00316{left:156.160000pt;}
.xc_c00316{left:157.440000pt;}
.x37_c00316{left:165.120000pt;}
.x15_c00316{left:166.400000pt;}
.x4_c00316{left:186.240000pt;}
.x39_c00316{left:193.920000pt;}
.x21_c00316{left:195.840000pt;}
.x2e_c00316{left:203.520000pt;}
.x29_c00316{left:205.440000pt;}
.x1c_c00316{left:224.640000pt;}
.x26_c00316{left:234.240000pt;}
.x16_c00316{left:243.200000pt;}
.x2b_c00316{left:253.440000pt;}
.xa_c00316{left:262.400000pt;}
.x31_c00316{left:271.360000pt;}
.x17_c00316{left:282.240000pt;}
.x35_c00316{left:291.840000pt;}
.x22_c00316{left:310.400000pt;}
.x18_c00316{left:330.240000pt;}
.xd_c00316{left:339.200000pt;}
.x1d_c00316{left:358.400000pt;}
.x23_c00316{left:367.360000pt;}
.x2a_c00316{left:368.640000pt;}
.xe_c00316{left:378.240000pt;}
.x3a_c00316{left:387.200000pt;}
.xb_c00316{left:397.440000pt;}
.x1e_c00316{left:405.760000pt;}
.x19_c00316{left:407.040000pt;}
.x27_c00316{left:414.720000pt;}
.x24_c00316{left:416.000000pt;}
.x32_c00316{left:433.920000pt;}
.x2f_c00316{left:435.840000pt;}
.x1f_c00316{left:445.440000pt;}
.x1a_c00316{left:455.040000pt;}
.x36_c00316{left:463.360000pt;}
.x25_c00316{left:482.560000pt;}
.x12_c00316{left:493.440000pt;}
.x1b_c00316{left:511.360000pt;}
.x7_c00316{left:512.640000pt;}
.x5_c00316{left:522.240000pt;}
.x33_c00316{left:539.520000pt;}
.xf_c00316{left:541.440000pt;}
.x8_c00316{left:568.960000pt;}
.x6_c00316{left:570.240000pt;}
.x13_c00316{left:579.840000pt;}
.x38_c00316{left:597.760000pt;}
.x9_c00316{left:599.040000pt;}
.x1_c00316{left:606.720000pt;}
.x10_c00316{left:608.000000pt;}
.x34_c00316{left:624.640000pt;}
.x11_c00316{left:625.920000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_06a050318bac6330beeabcde.woff2')format("woff");}.ff1_c00317{font-family:ff1_c00317;line-height:1.109863;font-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_c00317{transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);}
.m3b_c00317{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m1c_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);}
.m36_c00317{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00317{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);}
.m2e_c00317{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m10_c00317{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m15_c00317{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1_c00317{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);}
.m32_c00317{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m19_c00317{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m47_c00317{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.ma_c00317{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m24_c00317{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);}
.m45_c00317{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00317{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m11_c00317{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m37_c00317{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00317{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m12_c00317{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m22_c00317{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m34_c00317{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m7_c00317{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m39_c00317{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m43_c00317{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m8_c00317{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m4_c00317{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m21_c00317{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00317{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m14_c00317{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m42_c00317{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m46_c00317{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);}
.m38_c00317{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00317{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);}
.m40_c00317{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m16_c00317{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.me_c00317{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m9_c00317{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00317{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00317{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m0_c00317{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.mc_c00317{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00317{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m23_c00317{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);}
.m31_c00317{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00317{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m13_c00317{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);}
.m3d_c00317{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);}
.md_c00317{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);}
.m35_c00317{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);}
.m17_c00317{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.mf_c00317{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);}
.m29_c00317{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00317{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m28_c00317{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.mb_c00317{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);}
.m30_c00317{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00317{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00317{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);}
.m26_c00317{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m6_c00317{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m2_c00317{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m5_c00317{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);}
.m25_c00317{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m3_c00317{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m27_c00317{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m33_c00317{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m44_c00317{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);}
.m41_c00317{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00317{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m48_c00317{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m20_c00317{transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00317{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.v0_c00317{vertical-align:0.000000px;}
.v1_c00317{vertical-align:2.880000px;}
.ls0_c00317{letter-spacing:0.000000px;}
.sc__c00317{text-shadow:none;}
.sc0_c00317{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00317{-webkit-text-stroke:0px transparent;}
.sc0_c00317{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00317{word-spacing:0.000000px;}
.ws3_c00317{word-spacing:13.140000px;}
.ws1_c00317{word-spacing:20.934285px;}
.ws2_c00317{word-spacing:85.962000px;}
.ws0_c00317{word-spacing:981.804000px;}
._0_c00317{width:159.049261px;}
.fc0_c00317{color:transparent;}
.fs3_c00317{font-size:34.560000px;}
.fsd_c00317{font-size:37.440000px;}
.fsc_c00317{font-size:46.080000px;}
.fs4_c00317{font-size:48.960000px;}
.fs2_c00317{font-size:51.840000px;}
.fs6_c00317{font-size:54.720000px;}
.fs7_c00317{font-size:57.600000px;}
.fs0_c00317{font-size:60.480000px;}
.fs9_c00317{font-size:63.360000px;}
.fsa_c00317{font-size:66.240000px;}
.fsb_c00317{font-size:69.120000px;}
.fs8_c00317{font-size:72.000000px;}
.fs1_c00317{font-size:74.880000px;}
.fs5_c00317{font-size:77.760000px;}
.y0_c00317{bottom:0.000000px;}
.y70_c00317{bottom:59.040000px;}
.y74_c00317{bottom:62.640000px;}
.y6f_c00317{bottom:63.360000px;}
.y6e_c00317{bottom:102.240000px;}
.y6c_c00317{bottom:134.640000px;}
.y6d_c00317{bottom:136.800000px;}
.y6b_c00317{bottom:137.520000px;}
.y6a_c00317{bottom:138.240000px;}
.y73_c00317{bottom:140.400000px;}
.y69_c00317{bottom:177.120000px;}
.y68_c00317{bottom:180.720000px;}
.y72_c00317{bottom:181.440000px;}
.y71_c00317{bottom:182.880000px;}
.y67_c00317{bottom:223.200000px;}
.y66_c00317{bottom:223.920000px;}
.y63_c00317{bottom:252.720000px;}
.y65_c00317{bottom:254.880000px;}
.y64_c00317{bottom:257.040000px;}
.y5e_c00317{bottom:285.120000px;}
.y5f_c00317{bottom:285.840000px;}
.y61_c00317{bottom:286.560000px;}
.y60_c00317{bottom:287.280000px;}
.y62_c00317{bottom:288.000000px;}
.y5c_c00317{bottom:288.720000px;}
.y5d_c00317{bottom:289.440000px;}
.y55_c00317{bottom:328.320000px;}
.y58_c00317{bottom:329.040000px;}
.y56_c00317{bottom:329.760000px;}
.y59_c00317{bottom:330.480000px;}
.y54_c00317{bottom:331.200000px;}
.y57_c00317{bottom:331.920000px;}
.y5a_c00317{bottom:333.360000px;}
.y5b_c00317{bottom:334.080000px;}
.y50_c00317{bottom:372.240000px;}
.y51_c00317{bottom:372.960000px;}
.y53_c00317{bottom:373.680000px;}
.y52_c00317{bottom:375.120000px;}
.y4c_c00317{bottom:403.920000px;}
.y4e_c00317{bottom:406.080000px;}
.y4a_c00317{bottom:406.800000px;}
.y4d_c00317{bottom:407.520000px;}
.y4b_c00317{bottom:408.240000px;}
.y4f_c00317{bottom:408.960000px;}
.y46_c00317{bottom:447.840000px;}
.y48_c00317{bottom:449.280000px;}
.y45_c00317{bottom:450.000000px;}
.y49_c00317{bottom:451.440000px;}
.y47_c00317{bottom:452.880000px;}
.y37_c00317{bottom:490.320000px;}
.y39_c00317{bottom:491.040000px;}
.y42_c00317{bottom:492.480000px;}
.y36_c00317{bottom:493.200000px;}
.y38_c00317{bottom:493.920000px;}
.y44_c00317{bottom:494.640000px;}
.y40_c00317{bottom:495.360000px;}
.y43_c00317{bottom:496.080000px;}
.y33_c00317{bottom:533.520000px;}
.y35_c00317{bottom:534.240000px;}
.y32_c00317{bottom:535.680000px;}
.y34_c00317{bottom:537.840000px;}
.y41_c00317{bottom:538.560000px;}
.y2f_c00317{bottom:576.720000px;}
.y31_c00317{bottom:578.160000px;}
.y2e_c00317{bottom:578.880000px;}
.y3f_c00317{bottom:579.600000px;}
.y3e_c00317{bottom:580.320000px;}
.y30_c00317{bottom:581.040000px;}
.y2c_c00317{bottom:621.360000px;}
.y2d_c00317{bottom:624.240000px;}
.y2a_c00317{bottom:651.600000px;}
.y27_c00317{bottom:652.320000px;}
.y26_c00317{bottom:653.040000px;}
.y3d_c00317{bottom:653.760000px;}
.y2b_c00317{bottom:654.480000px;}
.y29_c00317{bottom:655.200000px;}
.y28_c00317{bottom:655.920000px;}
.y25_c00317{bottom:695.520000px;}
.y24_c00317{bottom:698.400000px;}
.y22_c00317{bottom:726.480000px;}
.y21_c00317{bottom:727.920000px;}
.y1f_c00317{bottom:728.640000px;}
.y23_c00317{bottom:729.360000px;}
.y3c_c00317{bottom:730.080000px;}
.y20_c00317{bottom:730.800000px;}
.y1d_c00317{bottom:770.400000px;}
.y1c_c00317{bottom:771.120000px;}
.y3b_c00317{bottom:773.280000px;}
.y1e_c00317{bottom:774.000000px;}
.y1a_c00317{bottom:812.880000px;}
.y19_c00317{bottom:813.600000px;}
.y1b_c00317{bottom:814.320000px;}
.y3a_c00317{bottom:815.760000px;}
.y15_c00317{bottom:856.080000px;}
.y14_c00317{bottom:856.800000px;}
.y16_c00317{bottom:857.520000px;}
.y18_c00317{bottom:858.960000px;}
.y17_c00317{bottom:859.680000px;}
.y11_c00317{bottom:899.280000px;}
.yf_c00317{bottom:900.000000px;}
.y12_c00317{bottom:900.720000px;}
.y13_c00317{bottom:902.160000px;}
.y10_c00317{bottom:902.880000px;}
.ye_c00317{bottom:942.480000px;}
.yd_c00317{bottom:943.200000px;}
.yb_c00317{bottom:985.680000px;}
.ya_c00317{bottom:986.400000px;}
.yc_c00317{bottom:988.560000px;}
.y9_c00317{bottom:1028.880000px;}
.y7_c00317{bottom:1030.320000px;}
.y8_c00317{bottom:1031.760000px;}
.y2_c00317{bottom:1061.280000px;}
.y1_c00317{bottom:1062.000000px;}
.y6_c00317{bottom:1063.440000px;}
.y4_c00317{bottom:1064.160000px;}
.y3_c00317{bottom:1064.880000px;}
.y5_c00317{bottom:1117.440000px;}
.h5_c00317{height:31.100625px;}
.h10_c00317{height:33.692344px;}
.he_c00317{height:41.467500px;}
.h6_c00317{height:44.059219px;}
.h4_c00317{height:46.650937px;}
.h8_c00317{height:49.242656px;}
.h9_c00317{height:51.834375px;}
.h2_c00317{height:54.426094px;}
.hf_c00317{height:54.714375px;}
.hb_c00317{height:57.017812px;}
.hc_c00317{height:59.609531px;}
.hd_c00317{height:62.201250px;}
.ha_c00317{height:64.792969px;}
.h3_c00317{height:67.384687px;}
.h7_c00317{height:69.976406px;}
.h1_c00317{height:1166.250000px;}
.h0_c00317{height:1166.400000px;}
.w1_c00317{width:765.750000px;}
.w0_c00317{width:766.080000px;}
.x0_c00317{left:0.000000px;}
.x1_c00317{left:61.920000px;}
.x2c_c00317{left:63.360000px;}
.x32_c00317{left:64.800000px;}
.x33_c00317{left:66.240000px;}
.x26_c00317{left:134.640000px;}
.x2_c00317{left:136.080000px;}
.x11_c00317{left:179.280000px;}
.x31_c00317{left:188.640000px;}
.x21_c00317{left:190.080000px;}
.x12_c00317{left:222.480000px;}
.x14_c00317{left:223.920000px;}
.x1b_c00317{left:233.280000px;}
.xd_c00317{left:244.080000px;}
.x2b_c00317{left:254.880000px;}
.x19_c00317{left:256.320000px;}
.x1c_c00317{left:264.960000px;}
.x24_c00317{left:266.400000px;}
.x3_c00317{left:276.480000px;}
.xe_c00317{left:288.000000px;}
.x1d_c00317{left:309.600000px;}
.x22_c00317{left:319.680000px;}
.x25_c00317{left:321.120000px;}
.x28_c00317{left:331.200000px;}
.x4_c00317{left:332.640000px;}
.x15_c00317{left:352.800000px;}
.x1e_c00317{left:363.600000px;}
.x5_c00317{left:373.680000px;}
.x1a_c00317{left:384.480000px;}
.x16_c00317{left:406.800000px;}
.x2e_c00317{left:416.160000px;}
.x23_c00317{left:439.200000px;}
.x2f_c00317{left:460.080000px;}
.x6_c00317{left:470.880000px;}
.x17_c00317{left:492.480000px;}
.x1f_c00317{left:512.640000px;}
.x29_c00317{left:524.880000px;}
.x7_c00317{left:526.320000px;}
.x18_c00317{left:536.400000px;}
.x20_c00317{left:557.280000px;}
.x10_c00317{left:558.720000px;}
.x27_c00317{left:578.160000px;}
.x34_c00317{left:589.680000px;}
.x35_c00317{left:609.840000px;}
.x2a_c00317{left:611.280000px;}
.x9_c00317{left:612.720000px;}
.x30_c00317{left:643.680000px;}
.xa_c00317{left:645.120000px;}
.x2d_c00317{left:654.480000px;}
.x8_c00317{left:669.600000px;}
.xf_c00317{left:676.800000px;}
.x36_c00317{left:685.440000px;}
.x13_c00317{left:686.880000px;}
.xb_c00317{left:688.320000px;}
.x37_c00317{left:706.320000px;}
.xc_c00317{left:707.760000px;}
@media print{
.v0_c00317{vertical-align:0.000000pt;}
.v1_c00317{vertical-align:2.560000pt;}
.ls0_c00317{letter-spacing:0.000000pt;}
.ws4_c00317{word-spacing:0.000000pt;}
.ws3_c00317{word-spacing:11.680000pt;}
.ws1_c00317{word-spacing:18.608253pt;}
.ws2_c00317{word-spacing:76.410667pt;}
.ws0_c00317{word-spacing:872.714667pt;}
._0_c00317{width:141.377121pt;}
.fs3_c00317{font-size:30.720000pt;}
.fsd_c00317{font-size:33.280000pt;}
.fsc_c00317{font-size:40.960000pt;}
.fs4_c00317{font-size:43.520000pt;}
.fs2_c00317{font-size:46.080000pt;}
.fs6_c00317{font-size:48.640000pt;}
.fs7_c00317{font-size:51.200000pt;}
.fs0_c00317{font-size:53.760000pt;}
.fs9_c00317{font-size:56.320000pt;}
.fsa_c00317{font-size:58.880000pt;}
.fsb_c00317{font-size:61.440000pt;}
.fs8_c00317{font-size:64.000000pt;}
.fs1_c00317{font-size:66.560000pt;}
.fs5_c00317{font-size:69.120000pt;}
.y0_c00317{bottom:0.000000pt;}
.y70_c00317{bottom:52.480000pt;}
.y74_c00317{bottom:55.680000pt;}
.y6f_c00317{bottom:56.320000pt;}
.y6e_c00317{bottom:90.880000pt;}
.y6c_c00317{bottom:119.680000pt;}
.y6d_c00317{bottom:121.600000pt;}
.y6b_c00317{bottom:122.240000pt;}
.y6a_c00317{bottom:122.880000pt;}
.y73_c00317{bottom:124.800000pt;}
.y69_c00317{bottom:157.440000pt;}
.y68_c00317{bottom:160.640000pt;}
.y72_c00317{bottom:161.280000pt;}
.y71_c00317{bottom:162.560000pt;}
.y67_c00317{bottom:198.400000pt;}
.y66_c00317{bottom:199.040000pt;}
.y63_c00317{bottom:224.640000pt;}
.y65_c00317{bottom:226.560000pt;}
.y64_c00317{bottom:228.480000pt;}
.y5e_c00317{bottom:253.440000pt;}
.y5f_c00317{bottom:254.080000pt;}
.y61_c00317{bottom:254.720000pt;}
.y60_c00317{bottom:255.360000pt;}
.y62_c00317{bottom:256.000000pt;}
.y5c_c00317{bottom:256.640000pt;}
.y5d_c00317{bottom:257.280000pt;}
.y55_c00317{bottom:291.840000pt;}
.y58_c00317{bottom:292.480000pt;}
.y56_c00317{bottom:293.120000pt;}
.y59_c00317{bottom:293.760000pt;}
.y54_c00317{bottom:294.400000pt;}
.y57_c00317{bottom:295.040000pt;}
.y5a_c00317{bottom:296.320000pt;}
.y5b_c00317{bottom:296.960000pt;}
.y50_c00317{bottom:330.880000pt;}
.y51_c00317{bottom:331.520000pt;}
.y53_c00317{bottom:332.160000pt;}
.y52_c00317{bottom:333.440000pt;}
.y4c_c00317{bottom:359.040000pt;}
.y4e_c00317{bottom:360.960000pt;}
.y4a_c00317{bottom:361.600000pt;}
.y4d_c00317{bottom:362.240000pt;}
.y4b_c00317{bottom:362.880000pt;}
.y4f_c00317{bottom:363.520000pt;}
.y46_c00317{bottom:398.080000pt;}
.y48_c00317{bottom:399.360000pt;}
.y45_c00317{bottom:400.000000pt;}
.y49_c00317{bottom:401.280000pt;}
.y47_c00317{bottom:402.560000pt;}
.y37_c00317{bottom:435.840000pt;}
.y39_c00317{bottom:436.480000pt;}
.y42_c00317{bottom:437.760000pt;}
.y36_c00317{bottom:438.400000pt;}
.y38_c00317{bottom:439.040000pt;}
.y44_c00317{bottom:439.680000pt;}
.y40_c00317{bottom:440.320000pt;}
.y43_c00317{bottom:440.960000pt;}
.y33_c00317{bottom:474.240000pt;}
.y35_c00317{bottom:474.880000pt;}
.y32_c00317{bottom:476.160000pt;}
.y34_c00317{bottom:478.080000pt;}
.y41_c00317{bottom:478.720000pt;}
.y2f_c00317{bottom:512.640000pt;}
.y31_c00317{bottom:513.920000pt;}
.y2e_c00317{bottom:514.560000pt;}
.y3f_c00317{bottom:515.200000pt;}
.y3e_c00317{bottom:515.840000pt;}
.y30_c00317{bottom:516.480000pt;}
.y2c_c00317{bottom:552.320000pt;}
.y2d_c00317{bottom:554.880000pt;}
.y2a_c00317{bottom:579.200000pt;}
.y27_c00317{bottom:579.840000pt;}
.y26_c00317{bottom:580.480000pt;}
.y3d_c00317{bottom:581.120000pt;}
.y2b_c00317{bottom:581.760000pt;}
.y29_c00317{bottom:582.400000pt;}
.y28_c00317{bottom:583.040000pt;}
.y25_c00317{bottom:618.240000pt;}
.y24_c00317{bottom:620.800000pt;}
.y22_c00317{bottom:645.760000pt;}
.y21_c00317{bottom:647.040000pt;}
.y1f_c00317{bottom:647.680000pt;}
.y23_c00317{bottom:648.320000pt;}
.y3c_c00317{bottom:648.960000pt;}
.y20_c00317{bottom:649.600000pt;}
.y1d_c00317{bottom:684.800000pt;}
.y1c_c00317{bottom:685.440000pt;}
.y3b_c00317{bottom:687.360000pt;}
.y1e_c00317{bottom:688.000000pt;}
.y1a_c00317{bottom:722.560000pt;}
.y19_c00317{bottom:723.200000pt;}
.y1b_c00317{bottom:723.840000pt;}
.y3a_c00317{bottom:725.120000pt;}
.y15_c00317{bottom:760.960000pt;}
.y14_c00317{bottom:761.600000pt;}
.y16_c00317{bottom:762.240000pt;}
.y18_c00317{bottom:763.520000pt;}
.y17_c00317{bottom:764.160000pt;}
.y11_c00317{bottom:799.360000pt;}
.yf_c00317{bottom:800.000000pt;}
.y12_c00317{bottom:800.640000pt;}
.y13_c00317{bottom:801.920000pt;}
.y10_c00317{bottom:802.560000pt;}
.ye_c00317{bottom:837.760000pt;}
.yd_c00317{bottom:838.400000pt;}
.yb_c00317{bottom:876.160000pt;}
.ya_c00317{bottom:876.800000pt;}
.yc_c00317{bottom:878.720000pt;}
.y9_c00317{bottom:914.560000pt;}
.y7_c00317{bottom:915.840000pt;}
.y8_c00317{bottom:917.120000pt;}
.y2_c00317{bottom:943.360000pt;}
.y1_c00317{bottom:944.000000pt;}
.y6_c00317{bottom:945.280000pt;}
.y4_c00317{bottom:945.920000pt;}
.y3_c00317{bottom:946.560000pt;}
.y5_c00317{bottom:993.280000pt;}
.h5_c00317{height:27.645000pt;}
.h10_c00317{height:29.948750pt;}
.he_c00317{height:36.860000pt;}
.h6_c00317{height:39.163750pt;}
.h4_c00317{height:41.467500pt;}
.h8_c00317{height:43.771250pt;}
.h9_c00317{height:46.075000pt;}
.h2_c00317{height:48.378750pt;}
.hf_c00317{height:48.635000pt;}
.hb_c00317{height:50.682500pt;}
.hc_c00317{height:52.986250pt;}
.hd_c00317{height:55.290000pt;}
.ha_c00317{height:57.593750pt;}
.h3_c00317{height:59.897500pt;}
.h7_c00317{height:62.201250pt;}
.h1_c00317{height:1036.666667pt;}
.h0_c00317{height:1036.800000pt;}
.w1_c00317{width:680.666667pt;}
.w0_c00317{width:680.960000pt;}
.x0_c00317{left:0.000000pt;}
.x1_c00317{left:55.040000pt;}
.x2c_c00317{left:56.320000pt;}
.x32_c00317{left:57.600000pt;}
.x33_c00317{left:58.880000pt;}
.x26_c00317{left:119.680000pt;}
.x2_c00317{left:120.960000pt;}
.x11_c00317{left:159.360000pt;}
.x31_c00317{left:167.680000pt;}
.x21_c00317{left:168.960000pt;}
.x12_c00317{left:197.760000pt;}
.x14_c00317{left:199.040000pt;}
.x1b_c00317{left:207.360000pt;}
.xd_c00317{left:216.960000pt;}
.x2b_c00317{left:226.560000pt;}
.x19_c00317{left:227.840000pt;}
.x1c_c00317{left:235.520000pt;}
.x24_c00317{left:236.800000pt;}
.x3_c00317{left:245.760000pt;}
.xe_c00317{left:256.000000pt;}
.x1d_c00317{left:275.200000pt;}
.x22_c00317{left:284.160000pt;}
.x25_c00317{left:285.440000pt;}
.x28_c00317{left:294.400000pt;}
.x4_c00317{left:295.680000pt;}
.x15_c00317{left:313.600000pt;}
.x1e_c00317{left:323.200000pt;}
.x5_c00317{left:332.160000pt;}
.x1a_c00317{left:341.760000pt;}
.x16_c00317{left:361.600000pt;}
.x2e_c00317{left:369.920000pt;}
.x23_c00317{left:390.400000pt;}
.x2f_c00317{left:408.960000pt;}
.x6_c00317{left:418.560000pt;}
.x17_c00317{left:437.760000pt;}
.x1f_c00317{left:455.680000pt;}
.x29_c00317{left:466.560000pt;}
.x7_c00317{left:467.840000pt;}
.x18_c00317{left:476.800000pt;}
.x20_c00317{left:495.360000pt;}
.x10_c00317{left:496.640000pt;}
.x27_c00317{left:513.920000pt;}
.x34_c00317{left:524.160000pt;}
.x35_c00317{left:542.080000pt;}
.x2a_c00317{left:543.360000pt;}
.x9_c00317{left:544.640000pt;}
.x30_c00317{left:572.160000pt;}
.xa_c00317{left:573.440000pt;}
.x2d_c00317{left:581.760000pt;}
.x8_c00317{left:595.200000pt;}
.xf_c00317{left:601.600000pt;}
.x36_c00317{left:609.280000pt;}
.x13_c00317{left:610.560000pt;}
.xb_c00317{left:611.840000pt;}
.x37_c00317{left:627.840000pt;}
.xc_c00317{left:629.120000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_01a87d531cc34862e9e97297.woff2')format("woff");}.ff1_c00318{font-family:ff1_c00318;line-height:1.109863;font-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_c00318{transform:matrix(0.177325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177325,0.000000,0.000000,0.250000,0,0);}
.m53_c00318{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m46_c00318{transform:matrix(0.241725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241725,0.000000,0.000000,0.250000,0,0);}
.m4c_c00318{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m24_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);}
.me_c00318{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);}
.m3e_c00318{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);}
.m3a_c00318{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);}
.m41_c00318{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_c00318{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m7_c00318{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m14_c00318{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);}
.m44_c00318{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m26_c00318{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m6_c00318{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_c00318{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);}
.m3b_c00318{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);}
.m52_c00318{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m27_c00318{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00318{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m11_c00318{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m33_c00318{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m17_c00318{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00318{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m43_c00318{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00318{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m9_c00318{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00318{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m8_c00318{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m0_c00318{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m16_c00318{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);}
.m2d_c00318{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m22_c00318{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mf_c00318{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.md_c00318{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);}
.m3d_c00318{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m15_c00318{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);}
.m42_c00318{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m51_c00318{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);}
.m2a_c00318{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m40_c00318{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);}
.m1d_c00318{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00318{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m13_c00318{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);}
.m36_c00318{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);}
.m4_c00318{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);}
.m4e_c00318{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m28_c00318{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m2_c00318{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m20_c00318{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);}
.m23_c00318{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);}
.mb_c00318{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00318{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m10_c00318{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);}
.m49_c00318{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);}
.m3_c00318{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);}
.m34_c00318{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m5_c00318{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m38_c00318{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m48_c00318{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);}
.m2f_c00318{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00318{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m54_c00318{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);}
.m47_c00318{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m39_c00318{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m50_c00318{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m32_c00318{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);}
.m2c_c00318{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m19_c00318{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m35_c00318{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);}
.m37_c00318{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00318{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00318{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);}
.m4a_c00318{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m55_c00318{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m18_c00318{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m25_c00318{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.mc_c00318{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m31_c00318{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m45_c00318{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m30_c00318{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m29_c00318{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00318{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m12_c00318{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.ma_c00318{transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00318{transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);}
.v1_c00318{vertical-align:-5.760000px;}
.v2_c00318{vertical-align:-2.880000px;}
.v0_c00318{vertical-align:0.000000px;}
.v3_c00318{vertical-align:5.760000px;}
.ls0_c00318{letter-spacing:0.000000px;}
.sc__c00318{text-shadow:none;}
.sc0_c00318{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00318{-webkit-text-stroke:0px transparent;}
.sc0_c00318{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00318{word-spacing:-5.432160px;}
.ws6_c00318{word-spacing:0.000000px;}
.ws2_c00318{word-spacing:0.348960px;}
.ws0_c00318{word-spacing:4.350480px;}
.ws5_c00318{word-spacing:9.474000px;}
.ws4_c00318{word-spacing:15.811200px;}
.ws3_c00318{word-spacing:53.775600px;}
.fc0_c00318{color:transparent;}
.fsf_c00318{font-size:34.560000px;}
.fs11_c00318{font-size:37.440000px;}
.fsa_c00318{font-size:40.320000px;}
.fsc_c00318{font-size:43.200000px;}
.fs5_c00318{font-size:46.080000px;}
.fs8_c00318{font-size:48.960000px;}
.fs3_c00318{font-size:51.840000px;}
.fs9_c00318{font-size:54.720000px;}
.fs4_c00318{font-size:57.600000px;}
.fs2_c00318{font-size:60.480000px;}
.fs7_c00318{font-size:63.360000px;}
.fse_c00318{font-size:66.240000px;}
.fsd_c00318{font-size:69.120000px;}
.fsb_c00318{font-size:72.000000px;}
.fs6_c00318{font-size:74.880000px;}
.fs10_c00318{font-size:77.760000px;}
.fs0_c00318{font-size:80.640000px;}
.fs1_c00318{font-size:97.920000px;}
.y0_c00318{bottom:0.000000px;}
.y73_c00318{bottom:59.040000px;}
.y72_c00318{bottom:59.760000px;}
.y71_c00318{bottom:61.920000px;}
.y70_c00318{bottom:62.640000px;}
.y74_c00318{bottom:63.360000px;}
.y76_c00318{bottom:64.080000px;}
.y75_c00318{bottom:64.800000px;}
.y6c_c00318{bottom:102.240000px;}
.y6d_c00318{bottom:105.120000px;}
.y6b_c00318{bottom:105.840000px;}
.y6f_c00318{bottom:106.560000px;}
.y6e_c00318{bottom:108.000000px;}
.y6a_c00318{bottom:146.160000px;}
.y68_c00318{bottom:147.600000px;}
.y69_c00318{bottom:149.040000px;}
.y62_c00318{bottom:178.560000px;}
.y64_c00318{bottom:180.000000px;}
.y61_c00318{bottom:181.440000px;}
.y63_c00318{bottom:182.160000px;}
.y65_c00318{bottom:182.880000px;}
.y66_c00318{bottom:183.600000px;}
.y67_c00318{bottom:184.320000px;}
.y5d_c00318{bottom:221.040000px;}
.y5f_c00318{bottom:223.920000px;}
.y5c_c00318{bottom:224.640000px;}
.y60_c00318{bottom:225.360000px;}
.y5e_c00318{bottom:226.800000px;}
.y5a_c00318{bottom:265.680000px;}
.y5b_c00318{bottom:268.560000px;}
.y57_c00318{bottom:297.360000px;}
.y55_c00318{bottom:298.080000px;}
.y54_c00318{bottom:298.800000px;}
.y53_c00318{bottom:300.240000px;}
.y56_c00318{bottom:300.960000px;}
.y58_c00318{bottom:301.680000px;}
.y59_c00318{bottom:302.400000px;}
.y50_c00318{bottom:340.560000px;}
.y4e_c00318{bottom:341.280000px;}
.y51_c00318{bottom:342.000000px;}
.y4c_c00318{bottom:342.720000px;}
.y4f_c00318{bottom:343.440000px;}
.y4d_c00318{bottom:344.160000px;}
.y52_c00318{bottom:345.600000px;}
.y48_c00318{bottom:383.040000px;}
.y4a_c00318{bottom:385.200000px;}
.y46_c00318{bottom:385.920000px;}
.y47_c00318{bottom:386.640000px;}
.y49_c00318{bottom:387.360000px;}
.y4b_c00318{bottom:388.080000px;}
.y42_c00318{bottom:426.960000px;}
.y41_c00318{bottom:427.680000px;}
.y3f_c00318{bottom:428.400000px;}
.y45_c00318{bottom:429.840000px;}
.y40_c00318{bottom:430.560000px;}
.y3e_c00318{bottom:468.720000px;}
.y3c_c00318{bottom:471.600000px;}
.y44_c00318{bottom:472.320000px;}
.y3d_c00318{bottom:473.040000px;}
.y43_c00318{bottom:473.760000px;}
.y3b_c00318{bottom:514.800000px;}
.y3a_c00318{bottom:515.520000px;}
.y39_c00318{bottom:517.680000px;}
.y36_c00318{bottom:567.360000px;}
.y37_c00318{bottom:568.080000px;}
.y34_c00318{bottom:568.800000px;}
.y35_c00318{bottom:570.240000px;}
.y38_c00318{bottom:570.960000px;}
.y32_c00318{bottom:609.120000px;}
.y31_c00318{bottom:642.960000px;}
.y2e_c00318{bottom:643.680000px;}
.y30_c00318{bottom:645.120000px;}
.y2f_c00318{bottom:645.840000px;}
.y33_c00318{bottom:646.560000px;}
.y2a_c00318{bottom:686.880000px;}
.y2b_c00318{bottom:687.600000px;}
.y2d_c00318{bottom:688.320000px;}
.y2c_c00318{bottom:689.040000px;}
.y27_c00318{bottom:728.640000px;}
.y25_c00318{bottom:730.080000px;}
.y29_c00318{bottom:730.800000px;}
.y28_c00318{bottom:731.520000px;}
.y26_c00318{bottom:732.240000px;}
.y22_c00318{bottom:771.120000px;}
.y1f_c00318{bottom:771.840000px;}
.y1e_c00318{bottom:772.560000px;}
.y23_c00318{bottom:773.280000px;}
.y21_c00318{bottom:774.720000px;}
.y20_c00318{bottom:775.440000px;}
.y24_c00318{bottom:776.160000px;}
.y1d_c00318{bottom:815.040000px;}
.y19_c00318{bottom:847.440000px;}
.y1b_c00318{bottom:848.160000px;}
.y18_c00318{bottom:848.880000px;}
.y1c_c00318{bottom:850.320000px;}
.y1a_c00318{bottom:851.040000px;}
.y16_c00318{bottom:890.640000px;}
.y14_c00318{bottom:891.360000px;}
.y17_c00318{bottom:892.080000px;}
.y15_c00318{bottom:894.240000px;}
.y12_c00318{bottom:933.120000px;}
.y10_c00318{bottom:933.840000px;}
.y13_c00318{bottom:934.560000px;}
.y11_c00318{bottom:937.440000px;}
.yd_c00318{bottom:976.320000px;}
.ya_c00318{bottom:977.760000px;}
.ye_c00318{bottom:978.480000px;}
.yc_c00318{bottom:979.200000px;}
.yb_c00318{bottom:979.920000px;}
.yf_c00318{bottom:980.640000px;}
.y7_c00318{bottom:1018.800000px;}
.y5_c00318{bottom:1020.240000px;}
.y8_c00318{bottom:1020.960000px;}
.y9_c00318{bottom:1022.400000px;}
.y6_c00318{bottom:1023.120000px;}
.y2_c00318{bottom:1053.360000px;}
.y3_c00318{bottom:1064.160000px;}
.y4_c00318{bottom:1064.880000px;}
.y1_c00318{bottom:1103.760000px;}
.h12_c00318{height:31.100625px;}
.h16_c00318{height:33.692344px;}
.hc_c00318{height:36.284062px;}
.he_c00318{height:38.875781px;}
.h7_c00318{height:41.467500px;}
.ha_c00318{height:44.059219px;}
.h5_c00318{height:46.650937px;}
.hb_c00318{height:49.242656px;}
.h11_c00318{height:51.257812px;}
.h6_c00318{height:51.834375px;}
.h15_c00318{height:52.410937px;}
.h4_c00318{height:54.426094px;}
.h13_c00318{height:55.002656px;}
.h9_c00318{height:57.017812px;}
.h10_c00318{height:59.609531px;}
.hf_c00318{height:62.201250px;}
.hd_c00318{height:64.792969px;}
.h8_c00318{height:67.384687px;}
.h14_c00318{height:69.976406px;}
.h2_c00318{height:72.568125px;}
.h3_c00318{height:88.118437px;}
.h1_c00318{height:1166.250000px;}
.h0_c00318{height:1166.400000px;}
.w0_c00318{width:764.640000px;}
.w1_c00318{width:765.000000px;}
.x0_c00318{left:0.000000px;}
.x5_c00318{left:60.480000px;}
.x25_c00318{left:61.920000px;}
.x3a_c00318{left:64.080000px;}
.x2_c00318{left:114.480000px;}
.x6_c00318{left:134.640000px;}
.x1e_c00318{left:136.080000px;}
.x1a_c00318{left:137.520000px;}
.x2c_c00318{left:157.680000px;}
.x3e_c00318{left:166.320000px;}
.x3_c00318{left:177.840000px;}
.xe_c00318{left:179.280000px;}
.x2f_c00318{left:187.920000px;}
.x2d_c00318{left:190.080000px;}
.x31_c00318{left:200.160000px;}
.x2e_c00318{left:209.520000px;}
.x33_c00318{left:221.040000px;}
.xb_c00318{left:231.120000px;}
.x1f_c00318{left:232.560000px;}
.x22_c00318{left:242.640000px;}
.x4_c00318{left:252.720000px;}
.x34_c00318{left:254.160000px;}
.x1b_c00318{left:265.680000px;}
.x3d_c00318{left:274.320000px;}
.xc_c00318{left:276.480000px;}
.x26_c00318{left:287.280000px;}
.x23_c00318{left:297.360000px;}
.x1c_c00318{left:317.520000px;}
.x14_c00318{left:318.960000px;}
.x20_c00318{left:330.480000px;}
.x10_c00318{left:339.840000px;}
.x27_c00318{left:351.360000px;}
.x24_c00318{left:356.400000px;}
.x15_c00318{left:372.960000px;}
.x11_c00318{left:394.560000px;}
.x32_c00318{left:406.080000px;}
.x21_c00318{left:427.680000px;}
.x28_c00318{left:447.120000px;}
.x12_c00318{left:448.560000px;}
.x16_c00318{left:459.360000px;}
.x37_c00318{left:468.720000px;}
.x29_c00318{left:490.320000px;}
.x3b_c00318{left:501.120000px;}
.x17_c00318{left:513.360000px;}
.x38_c00318{left:522.720000px;}
.x1d_c00318{left:524.160000px;}
.x2a_c00318{left:557.280000px;}
.x18_c00318{left:576.720000px;}
.x30_c00318{left:578.880000px;}
.x35_c00318{left:588.240000px;}
.xf_c00318{left:589.680000px;}
.x7_c00318{left:609.840000px;}
.x13_c00318{left:611.280000px;}
.x36_c00318{left:620.640000px;}
.x3c_c00318{left:642.240000px;}
.x8_c00318{left:643.680000px;}
.x2b_c00318{left:651.600000px;}
.x1_c00318{left:669.600000px;}
.x39_c00318{left:674.640000px;}
.x9_c00318{left:676.080000px;}
.xd_c00318{left:685.440000px;}
.x19_c00318{left:686.880000px;}
.xa_c00318{left:706.320000px;}
@media print{
.v1_c00318{vertical-align:-5.120000pt;}
.v2_c00318{vertical-align:-2.560000pt;}
.v0_c00318{vertical-align:0.000000pt;}
.v3_c00318{vertical-align:5.120000pt;}
.ls0_c00318{letter-spacing:0.000000pt;}
.ws1_c00318{word-spacing:-4.828587pt;}
.ws6_c00318{word-spacing:0.000000pt;}
.ws2_c00318{word-spacing:0.310187pt;}
.ws0_c00318{word-spacing:3.867093pt;}
.ws5_c00318{word-spacing:8.421333pt;}
.ws4_c00318{word-spacing:14.054400pt;}
.ws3_c00318{word-spacing:47.800533pt;}
.fsf_c00318{font-size:30.720000pt;}
.fs11_c00318{font-size:33.280000pt;}
.fsa_c00318{font-size:35.840000pt;}
.fsc_c00318{font-size:38.400000pt;}
.fs5_c00318{font-size:40.960000pt;}
.fs8_c00318{font-size:43.520000pt;}
.fs3_c00318{font-size:46.080000pt;}
.fs9_c00318{font-size:48.640000pt;}
.fs4_c00318{font-size:51.200000pt;}
.fs2_c00318{font-size:53.760000pt;}
.fs7_c00318{font-size:56.320000pt;}
.fse_c00318{font-size:58.880000pt;}
.fsd_c00318{font-size:61.440000pt;}
.fsb_c00318{font-size:64.000000pt;}
.fs6_c00318{font-size:66.560000pt;}
.fs10_c00318{font-size:69.120000pt;}
.fs0_c00318{font-size:71.680000pt;}
.fs1_c00318{font-size:87.040000pt;}
.y0_c00318{bottom:0.000000pt;}
.y73_c00318{bottom:52.480000pt;}
.y72_c00318{bottom:53.120000pt;}
.y71_c00318{bottom:55.040000pt;}
.y70_c00318{bottom:55.680000pt;}
.y74_c00318{bottom:56.320000pt;}
.y76_c00318{bottom:56.960000pt;}
.y75_c00318{bottom:57.600000pt;}
.y6c_c00318{bottom:90.880000pt;}
.y6d_c00318{bottom:93.440000pt;}
.y6b_c00318{bottom:94.080000pt;}
.y6f_c00318{bottom:94.720000pt;}
.y6e_c00318{bottom:96.000000pt;}
.y6a_c00318{bottom:129.920000pt;}
.y68_c00318{bottom:131.200000pt;}
.y69_c00318{bottom:132.480000pt;}
.y62_c00318{bottom:158.720000pt;}
.y64_c00318{bottom:160.000000pt;}
.y61_c00318{bottom:161.280000pt;}
.y63_c00318{bottom:161.920000pt;}
.y65_c00318{bottom:162.560000pt;}
.y66_c00318{bottom:163.200000pt;}
.y67_c00318{bottom:163.840000pt;}
.y5d_c00318{bottom:196.480000pt;}
.y5f_c00318{bottom:199.040000pt;}
.y5c_c00318{bottom:199.680000pt;}
.y60_c00318{bottom:200.320000pt;}
.y5e_c00318{bottom:201.600000pt;}
.y5a_c00318{bottom:236.160000pt;}
.y5b_c00318{bottom:238.720000pt;}
.y57_c00318{bottom:264.320000pt;}
.y55_c00318{bottom:264.960000pt;}
.y54_c00318{bottom:265.600000pt;}
.y53_c00318{bottom:266.880000pt;}
.y56_c00318{bottom:267.520000pt;}
.y58_c00318{bottom:268.160000pt;}
.y59_c00318{bottom:268.800000pt;}
.y50_c00318{bottom:302.720000pt;}
.y4e_c00318{bottom:303.360000pt;}
.y51_c00318{bottom:304.000000pt;}
.y4c_c00318{bottom:304.640000pt;}
.y4f_c00318{bottom:305.280000pt;}
.y4d_c00318{bottom:305.920000pt;}
.y52_c00318{bottom:307.200000pt;}
.y48_c00318{bottom:340.480000pt;}
.y4a_c00318{bottom:342.400000pt;}
.y46_c00318{bottom:343.040000pt;}
.y47_c00318{bottom:343.680000pt;}
.y49_c00318{bottom:344.320000pt;}
.y4b_c00318{bottom:344.960000pt;}
.y42_c00318{bottom:379.520000pt;}
.y41_c00318{bottom:380.160000pt;}
.y3f_c00318{bottom:380.800000pt;}
.y45_c00318{bottom:382.080000pt;}
.y40_c00318{bottom:382.720000pt;}
.y3e_c00318{bottom:416.640000pt;}
.y3c_c00318{bottom:419.200000pt;}
.y44_c00318{bottom:419.840000pt;}
.y3d_c00318{bottom:420.480000pt;}
.y43_c00318{bottom:421.120000pt;}
.y3b_c00318{bottom:457.600000pt;}
.y3a_c00318{bottom:458.240000pt;}
.y39_c00318{bottom:460.160000pt;}
.y36_c00318{bottom:504.320000pt;}
.y37_c00318{bottom:504.960000pt;}
.y34_c00318{bottom:505.600000pt;}
.y35_c00318{bottom:506.880000pt;}
.y38_c00318{bottom:507.520000pt;}
.y32_c00318{bottom:541.440000pt;}
.y31_c00318{bottom:571.520000pt;}
.y2e_c00318{bottom:572.160000pt;}
.y30_c00318{bottom:573.440000pt;}
.y2f_c00318{bottom:574.080000pt;}
.y33_c00318{bottom:574.720000pt;}
.y2a_c00318{bottom:610.560000pt;}
.y2b_c00318{bottom:611.200000pt;}
.y2d_c00318{bottom:611.840000pt;}
.y2c_c00318{bottom:612.480000pt;}
.y27_c00318{bottom:647.680000pt;}
.y25_c00318{bottom:648.960000pt;}
.y29_c00318{bottom:649.600000pt;}
.y28_c00318{bottom:650.240000pt;}
.y26_c00318{bottom:650.880000pt;}
.y22_c00318{bottom:685.440000pt;}
.y1f_c00318{bottom:686.080000pt;}
.y1e_c00318{bottom:686.720000pt;}
.y23_c00318{bottom:687.360000pt;}
.y21_c00318{bottom:688.640000pt;}
.y20_c00318{bottom:689.280000pt;}
.y24_c00318{bottom:689.920000pt;}
.y1d_c00318{bottom:724.480000pt;}
.y19_c00318{bottom:753.280000pt;}
.y1b_c00318{bottom:753.920000pt;}
.y18_c00318{bottom:754.560000pt;}
.y1c_c00318{bottom:755.840000pt;}
.y1a_c00318{bottom:756.480000pt;}
.y16_c00318{bottom:791.680000pt;}
.y14_c00318{bottom:792.320000pt;}
.y17_c00318{bottom:792.960000pt;}
.y15_c00318{bottom:794.880000pt;}
.y12_c00318{bottom:829.440000pt;}
.y10_c00318{bottom:830.080000pt;}
.y13_c00318{bottom:830.720000pt;}
.y11_c00318{bottom:833.280000pt;}
.yd_c00318{bottom:867.840000pt;}
.ya_c00318{bottom:869.120000pt;}
.ye_c00318{bottom:869.760000pt;}
.yc_c00318{bottom:870.400000pt;}
.yb_c00318{bottom:871.040000pt;}
.yf_c00318{bottom:871.680000pt;}
.y7_c00318{bottom:905.600000pt;}
.y5_c00318{bottom:906.880000pt;}
.y8_c00318{bottom:907.520000pt;}
.y9_c00318{bottom:908.800000pt;}
.y6_c00318{bottom:909.440000pt;}
.y2_c00318{bottom:936.320000pt;}
.y3_c00318{bottom:945.920000pt;}
.y4_c00318{bottom:946.560000pt;}
.y1_c00318{bottom:981.120000pt;}
.h12_c00318{height:27.645000pt;}
.h16_c00318{height:29.948750pt;}
.hc_c00318{height:32.252500pt;}
.he_c00318{height:34.556250pt;}
.h7_c00318{height:36.860000pt;}
.ha_c00318{height:39.163750pt;}
.h5_c00318{height:41.467500pt;}
.hb_c00318{height:43.771250pt;}
.h11_c00318{height:45.562500pt;}
.h6_c00318{height:46.075000pt;}
.h15_c00318{height:46.587500pt;}
.h4_c00318{height:48.378750pt;}
.h13_c00318{height:48.891250pt;}
.h9_c00318{height:50.682500pt;}
.h10_c00318{height:52.986250pt;}
.hf_c00318{height:55.290000pt;}
.hd_c00318{height:57.593750pt;}
.h8_c00318{height:59.897500pt;}
.h14_c00318{height:62.201250pt;}
.h2_c00318{height:64.505000pt;}
.h3_c00318{height:78.327500pt;}
.h1_c00318{height:1036.666667pt;}
.h0_c00318{height:1036.800000pt;}
.w0_c00318{width:679.680000pt;}
.w1_c00318{width:680.000000pt;}
.x0_c00318{left:0.000000pt;}
.x5_c00318{left:53.760000pt;}
.x25_c00318{left:55.040000pt;}
.x3a_c00318{left:56.960000pt;}
.x2_c00318{left:101.760000pt;}
.x6_c00318{left:119.680000pt;}
.x1e_c00318{left:120.960000pt;}
.x1a_c00318{left:122.240000pt;}
.x2c_c00318{left:140.160000pt;}
.x3e_c00318{left:147.840000pt;}
.x3_c00318{left:158.080000pt;}
.xe_c00318{left:159.360000pt;}
.x2f_c00318{left:167.040000pt;}
.x2d_c00318{left:168.960000pt;}
.x31_c00318{left:177.920000pt;}
.x2e_c00318{left:186.240000pt;}
.x33_c00318{left:196.480000pt;}
.xb_c00318{left:205.440000pt;}
.x1f_c00318{left:206.720000pt;}
.x22_c00318{left:215.680000pt;}
.x4_c00318{left:224.640000pt;}
.x34_c00318{left:225.920000pt;}
.x1b_c00318{left:236.160000pt;}
.x3d_c00318{left:243.840000pt;}
.xc_c00318{left:245.760000pt;}
.x26_c00318{left:255.360000pt;}
.x23_c00318{left:264.320000pt;}
.x1c_c00318{left:282.240000pt;}
.x14_c00318{left:283.520000pt;}
.x20_c00318{left:293.760000pt;}
.x10_c00318{left:302.080000pt;}
.x27_c00318{left:312.320000pt;}
.x24_c00318{left:316.800000pt;}
.x15_c00318{left:331.520000pt;}
.x11_c00318{left:350.720000pt;}
.x32_c00318{left:360.960000pt;}
.x21_c00318{left:380.160000pt;}
.x28_c00318{left:397.440000pt;}
.x12_c00318{left:398.720000pt;}
.x16_c00318{left:408.320000pt;}
.x37_c00318{left:416.640000pt;}
.x29_c00318{left:435.840000pt;}
.x3b_c00318{left:445.440000pt;}
.x17_c00318{left:456.320000pt;}
.x38_c00318{left:464.640000pt;}
.x1d_c00318{left:465.920000pt;}
.x2a_c00318{left:495.360000pt;}
.x18_c00318{left:512.640000pt;}
.x30_c00318{left:514.560000pt;}
.x35_c00318{left:522.880000pt;}
.xf_c00318{left:524.160000pt;}
.x7_c00318{left:542.080000pt;}
.x13_c00318{left:543.360000pt;}
.x36_c00318{left:551.680000pt;}
.x3c_c00318{left:570.880000pt;}
.x8_c00318{left:572.160000pt;}
.x2b_c00318{left:579.200000pt;}
.x1_c00318{left:595.200000pt;}
.x39_c00318{left:599.680000pt;}
.x9_c00318{left:600.960000pt;}
.xd_c00318{left:609.280000pt;}
.x19_c00318{left:610.560000pt;}
.xa_c00318{left:627.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_35ff3d01ba3c7a9edc38f6f0.woff2')format("woff");}.ff1_c00319{font-family:ff1_c00319;line-height:1.109863;font-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_c00319{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.m29_c00319{transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);}
.m9_c00319{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);}
.m2e_c00319{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m23_c00319{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);}
.m49_c00319{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m18_c00319{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m24_c00319{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m17_c00319{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00319{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m45_c00319{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m25_c00319{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mb_c00319{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00319{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00319{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00319{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m8_c00319{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00319{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00319{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m11_c00319{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00319{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00319{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m26_c00319{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);}
.m39_c00319{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m21_c00319{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m19_c00319{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00319{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);}
.m3a_c00319{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m28_c00319{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m1_c00319{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_c00319{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m0_c00319{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);}
.md_c00319{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m37_c00319{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m34_c00319{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m3_c00319{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);}
.m4_c00319{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);}
.m47_c00319{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m5_c00319{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_c00319{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.me_c00319{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);}
.m20_c00319{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m42_c00319{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m7_c00319{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m16_c00319{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);}
.m3b_c00319{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m44_c00319{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m41_c00319{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00319{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);}
.m1f_c00319{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m43_c00319{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m27_c00319{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);}
.m30_c00319{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);}
.m6_c00319{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.mf_c00319{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);}
.m46_c00319{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m38_c00319{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);}
.m31_c00319{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00319{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m13_c00319{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m40_c00319{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);}
.m32_c00319{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00319{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m12_c00319{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);}
.m4b_c00319{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m2_c00319{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m10_c00319{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m33_c00319{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00319{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m14_c00319{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m36_c00319{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);}
.mc_c00319{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m35_c00319{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);}
.m22_c00319{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m48_c00319{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00319{transform:matrix(0.940000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.940000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.940000,0.000000,0.000000,0.250000,0,0);}
.v0_c00319{vertical-align:0.000000px;}
.v1_c00319{vertical-align:5.760000px;}
.ls0_c00319{letter-spacing:0.000000px;}
.sc__c00319{text-shadow:none;}
.sc0_c00319{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00319{-webkit-text-stroke:0px transparent;}
.sc0_c00319{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00319{word-spacing:0.000000px;}
.ws0_c00319{word-spacing:0.350724px;}
.ws1_c00319{word-spacing:11.648400px;}
.ws2_c00319{word-spacing:56.302502px;}
.fc0_c00319{color:transparent;}
.fs5_c00319{font-size:34.560000px;}
.fsc_c00319{font-size:37.440000px;}
.fs2_c00319{font-size:46.080000px;}
.fs3_c00319{font-size:48.960000px;}
.fs1_c00319{font-size:51.840000px;}
.fs8_c00319{font-size:54.720000px;}
.fs7_c00319{font-size:57.600000px;}
.fs0_c00319{font-size:60.480000px;}
.fsa_c00319{font-size:63.360000px;}
.fsb_c00319{font-size:66.240000px;}
.fs6_c00319{font-size:69.120000px;}
.fs9_c00319{font-size:72.000000px;}
.fs4_c00319{font-size:74.880000px;}
.y0_c00319{bottom:0.000000px;}
.y63_c00319{bottom:37.440000px;}
.y62_c00319{bottom:38.880000px;}
.y61_c00319{bottom:39.600000px;}
.y79_c00319{bottom:41.040000px;}
.y60_c00319{bottom:77.040000px;}
.y5f_c00319{bottom:79.920000px;}
.y5e_c00319{bottom:81.360000px;}
.y77_c00319{bottom:82.080000px;}
.y78_c00319{bottom:82.800000px;}
.y76_c00319{bottom:84.240000px;}
.y5a_c00319{bottom:120.960000px;}
.y5b_c00319{bottom:122.400000px;}
.y5c_c00319{bottom:123.120000px;}
.y59_c00319{bottom:124.560000px;}
.y75_c00319{bottom:125.280000px;}
.y5d_c00319{bottom:126.000000px;}
.y74_c00319{bottom:127.440000px;}
.y57_c00319{bottom:166.320000px;}
.y58_c00319{bottom:167.040000px;}
.y56_c00319{bottom:169.920000px;}
.y55_c00319{bottom:221.760000px;}
.y53_c00319{bottom:251.280000px;}
.y54_c00319{bottom:252.000000px;}
.y51_c00319{bottom:252.720000px;}
.y50_c00319{bottom:253.440000px;}
.y73_c00319{bottom:254.160000px;}
.y52_c00319{bottom:254.880000px;}
.y4d_c00319{bottom:293.760000px;}
.y4c_c00319{bottom:295.200000px;}
.y4b_c00319{bottom:295.920000px;}
.y4f_c00319{bottom:296.640000px;}
.y4e_c00319{bottom:297.360000px;}
.y72_c00319{bottom:298.080000px;}
.y71_c00319{bottom:299.520000px;}
.y4a_c00319{bottom:337.680000px;}
.y48_c00319{bottom:338.400000px;}
.y70_c00319{bottom:339.120000px;}
.y47_c00319{bottom:339.840000px;}
.y49_c00319{bottom:340.560000px;}
.y6e_c00319{bottom:341.280000px;}
.y6f_c00319{bottom:342.000000px;}
.y46_c00319{bottom:380.160000px;}
.y44_c00319{bottom:383.040000px;}
.y45_c00319{bottom:383.760000px;}
.y43_c00319{bottom:411.840000px;}
.y41_c00319{bottom:412.560000px;}
.y40_c00319{bottom:413.280000px;}
.y42_c00319{bottom:414.000000px;}
.y3e_c00319{bottom:414.720000px;}
.y3f_c00319{bottom:416.160000px;}
.y6d_c00319{bottom:416.880000px;}
.y3c_c00319{bottom:456.480000px;}
.y3b_c00319{bottom:457.200000px;}
.y6c_c00319{bottom:457.920000px;}
.y3d_c00319{bottom:458.640000px;}
.y3a_c00319{bottom:491.760000px;}
.y38_c00319{bottom:499.680000px;}
.y36_c00319{bottom:500.400000px;}
.y6b_c00319{bottom:501.120000px;}
.y39_c00319{bottom:501.840000px;}
.y37_c00319{bottom:502.560000px;}
.y34_c00319{bottom:542.880000px;}
.y35_c00319{bottom:545.040000px;}
.y32_c00319{bottom:575.280000px;}
.y2f_c00319{bottom:576.000000px;}
.y30_c00319{bottom:576.720000px;}
.y31_c00319{bottom:577.440000px;}
.y33_c00319{bottom:578.160000px;}
.y2e_c00319{bottom:617.760000px;}
.y2c_c00319{bottom:620.640000px;}
.y2d_c00319{bottom:621.360000px;}
.y29_c00319{bottom:649.440000px;}
.y2a_c00319{bottom:650.880000px;}
.y2b_c00319{bottom:653.040000px;}
.y28_c00319{bottom:653.760000px;}
.y26_c00319{bottom:682.560000px;}
.y24_c00319{bottom:683.280000px;}
.y25_c00319{bottom:684.000000px;}
.y6a_c00319{bottom:684.720000px;}
.y27_c00319{bottom:685.440000px;}
.y20_c00319{bottom:724.320000px;}
.y23_c00319{bottom:725.040000px;}
.y1f_c00319{bottom:725.760000px;}
.y22_c00319{bottom:726.480000px;}
.y21_c00319{bottom:728.640000px;}
.y1c_c00319{bottom:767.520000px;}
.y1b_c00319{bottom:768.240000px;}
.y1e_c00319{bottom:768.960000px;}
.y67_c00319{bottom:769.680000px;}
.y69_c00319{bottom:770.400000px;}
.y1d_c00319{bottom:771.120000px;}
.y68_c00319{bottom:771.840000px;}
.y19_c00319{bottom:810.000000px;}
.y18_c00319{bottom:811.440000px;}
.y1a_c00319{bottom:812.160000px;}
.y65_c00319{bottom:812.880000px;}
.y66_c00319{bottom:813.600000px;}
.y64_c00319{bottom:814.320000px;}
.y15_c00319{bottom:852.480000px;}
.y12_c00319{bottom:853.920000px;}
.y16_c00319{bottom:854.640000px;}
.y17_c00319{bottom:855.360000px;}
.y14_c00319{bottom:856.080000px;}
.y13_c00319{bottom:856.800000px;}
.yf_c00319{bottom:897.840000px;}
.y10_c00319{bottom:899.280000px;}
.ye_c00319{bottom:900.720000px;}
.yb_c00319{bottom:951.120000px;}
.yd_c00319{bottom:953.280000px;}
.yc_c00319{bottom:954.000000px;}
.y7_c00319{bottom:983.520000px;}
.y9_c00319{bottom:984.240000px;}
.ya_c00319{bottom:985.680000px;}
.y8_c00319{bottom:986.400000px;}
.y6_c00319{bottom:1025.280000px;}
.y1_c00319{bottom:1059.120000px;}
.y4_c00319{bottom:1059.840000px;}
.y5_c00319{bottom:1061.280000px;}
.y2_c00319{bottom:1062.000000px;}
.y3_c00319{bottom:1062.720000px;}
.y11_c00319{bottom:1111.680000px;}
.h7_c00319{height:31.100625px;}
.he_c00319{height:33.692344px;}
.h4_c00319{height:41.467500px;}
.h5_c00319{height:44.059219px;}
.h3_c00319{height:46.650937px;}
.ha_c00319{height:49.242656px;}
.h9_c00319{height:51.834375px;}
.h2_c00319{height:54.426094px;}
.hc_c00319{height:57.017812px;}
.hd_c00319{height:59.609531px;}
.hf_c00319{height:60.186094px;}
.h8_c00319{height:62.201250px;}
.hb_c00319{height:64.792969px;}
.h6_c00319{height:67.384687px;}
.h0_c00319{height:1160.640000px;}
.h1_c00319{height:1161.000000px;}
.w0_c00319{width:757.440000px;}
.w1_c00319{width:757.500000px;}
.x0_c00319{left:0.000000px;}
.x1_c00319{left:57.600000px;}
.x2e_c00319{left:59.040000px;}
.x33_c00319{left:60.480000px;}
.x36_c00319{left:62.640000px;}
.x16_c00319{left:110.880000px;}
.x10_c00319{left:131.760000px;}
.x2_c00319{left:133.200000px;}
.x3_c00319{left:175.680000px;}
.x11_c00319{left:186.480000px;}
.x17_c00319{left:207.360000px;}
.xa_c00319{left:218.160000px;}
.x4_c00319{left:228.960000px;}
.x12_c00319{left:230.400000px;}
.x32_c00319{left:239.760000px;}
.x26_c00319{left:262.080000px;}
.xb_c00319{left:272.880000px;}
.x5_c00319{left:282.960000px;}
.x22_c00319{left:293.760000px;}
.x34_c00319{left:304.560000px;}
.xc_c00319{left:316.080000px;}
.x6_c00319{left:326.880000px;}
.x23_c00319{left:336.960000px;}
.x2a_c00319{left:348.480000px;}
.xd_c00319{left:359.280000px;}
.x7_c00319{left:369.360000px;}
.x24_c00319{left:391.680000px;}
.x2d_c00319{left:402.480000px;}
.x13_c00319{left:413.280000px;}
.xe_c00319{left:414.720000px;}
.x28_c00319{left:423.360000px;}
.x8_c00319{left:425.520000px;}
.x2f_c00319{left:434.880000px;}
.x27_c00319{left:445.680000px;}
.x2b_c00319{left:456.480000px;}
.x29_c00319{left:466.560000px;}
.x14_c00319{left:468.000000px;}
.x1d_c00319{left:478.080000px;}
.x30_c00319{left:488.160000px;}
.x35_c00319{left:498.960000px;}
.xf_c00319{left:500.400000px;}
.x9_c00319{left:509.760000px;}
.x2c_c00319{left:511.200000px;}
.x15_c00319{left:520.560000px;}
.x31_c00319{left:531.360000px;}
.x1e_c00319{left:532.800000px;}
.x25_c00319{left:544.320000px;}
.x21_c00319{left:553.680000px;}
.x1f_c00319{left:586.800000px;}
.x37_c00319{left:607.680000px;}
.x19_c00319{left:609.120000px;}
.x38_c00319{left:640.080000px;}
.x1a_c00319{left:641.520000px;}
.x18_c00319{left:668.160000px;}
.x39_c00319{left:672.480000px;}
.x1b_c00319{left:673.920000px;}
.x20_c00319{left:683.280000px;}
.x1c_c00319{left:703.440000px;}
@media print{
.v0_c00319{vertical-align:0.000000pt;}
.v1_c00319{vertical-align:5.120000pt;}
.ls0_c00319{letter-spacing:0.000000pt;}
.ws3_c00319{word-spacing:0.000000pt;}
.ws0_c00319{word-spacing:0.311754pt;}
.ws1_c00319{word-spacing:10.354133pt;}
.ws2_c00319{word-spacing:50.046669pt;}
.fs5_c00319{font-size:30.720000pt;}
.fsc_c00319{font-size:33.280000pt;}
.fs2_c00319{font-size:40.960000pt;}
.fs3_c00319{font-size:43.520000pt;}
.fs1_c00319{font-size:46.080000pt;}
.fs8_c00319{font-size:48.640000pt;}
.fs7_c00319{font-size:51.200000pt;}
.fs0_c00319{font-size:53.760000pt;}
.fsa_c00319{font-size:56.320000pt;}
.fsb_c00319{font-size:58.880000pt;}
.fs6_c00319{font-size:61.440000pt;}
.fs9_c00319{font-size:64.000000pt;}
.fs4_c00319{font-size:66.560000pt;}
.y0_c00319{bottom:0.000000pt;}
.y63_c00319{bottom:33.280000pt;}
.y62_c00319{bottom:34.560000pt;}
.y61_c00319{bottom:35.200000pt;}
.y79_c00319{bottom:36.480000pt;}
.y60_c00319{bottom:68.480000pt;}
.y5f_c00319{bottom:71.040000pt;}
.y5e_c00319{bottom:72.320000pt;}
.y77_c00319{bottom:72.960000pt;}
.y78_c00319{bottom:73.600000pt;}
.y76_c00319{bottom:74.880000pt;}
.y5a_c00319{bottom:107.520000pt;}
.y5b_c00319{bottom:108.800000pt;}
.y5c_c00319{bottom:109.440000pt;}
.y59_c00319{bottom:110.720000pt;}
.y75_c00319{bottom:111.360000pt;}
.y5d_c00319{bottom:112.000000pt;}
.y74_c00319{bottom:113.280000pt;}
.y57_c00319{bottom:147.840000pt;}
.y58_c00319{bottom:148.480000pt;}
.y56_c00319{bottom:151.040000pt;}
.y55_c00319{bottom:197.120000pt;}
.y53_c00319{bottom:223.360000pt;}
.y54_c00319{bottom:224.000000pt;}
.y51_c00319{bottom:224.640000pt;}
.y50_c00319{bottom:225.280000pt;}
.y73_c00319{bottom:225.920000pt;}
.y52_c00319{bottom:226.560000pt;}
.y4d_c00319{bottom:261.120000pt;}
.y4c_c00319{bottom:262.400000pt;}
.y4b_c00319{bottom:263.040000pt;}
.y4f_c00319{bottom:263.680000pt;}
.y4e_c00319{bottom:264.320000pt;}
.y72_c00319{bottom:264.960000pt;}
.y71_c00319{bottom:266.240000pt;}
.y4a_c00319{bottom:300.160000pt;}
.y48_c00319{bottom:300.800000pt;}
.y70_c00319{bottom:301.440000pt;}
.y47_c00319{bottom:302.080000pt;}
.y49_c00319{bottom:302.720000pt;}
.y6e_c00319{bottom:303.360000pt;}
.y6f_c00319{bottom:304.000000pt;}
.y46_c00319{bottom:337.920000pt;}
.y44_c00319{bottom:340.480000pt;}
.y45_c00319{bottom:341.120000pt;}
.y43_c00319{bottom:366.080000pt;}
.y41_c00319{bottom:366.720000pt;}
.y40_c00319{bottom:367.360000pt;}
.y42_c00319{bottom:368.000000pt;}
.y3e_c00319{bottom:368.640000pt;}
.y3f_c00319{bottom:369.920000pt;}
.y6d_c00319{bottom:370.560000pt;}
.y3c_c00319{bottom:405.760000pt;}
.y3b_c00319{bottom:406.400000pt;}
.y6c_c00319{bottom:407.040000pt;}
.y3d_c00319{bottom:407.680000pt;}
.y3a_c00319{bottom:437.120000pt;}
.y38_c00319{bottom:444.160000pt;}
.y36_c00319{bottom:444.800000pt;}
.y6b_c00319{bottom:445.440000pt;}
.y39_c00319{bottom:446.080000pt;}
.y37_c00319{bottom:446.720000pt;}
.y34_c00319{bottom:482.560000pt;}
.y35_c00319{bottom:484.480000pt;}
.y32_c00319{bottom:511.360000pt;}
.y2f_c00319{bottom:512.000000pt;}
.y30_c00319{bottom:512.640000pt;}
.y31_c00319{bottom:513.280000pt;}
.y33_c00319{bottom:513.920000pt;}
.y2e_c00319{bottom:549.120000pt;}
.y2c_c00319{bottom:551.680000pt;}
.y2d_c00319{bottom:552.320000pt;}
.y29_c00319{bottom:577.280000pt;}
.y2a_c00319{bottom:578.560000pt;}
.y2b_c00319{bottom:580.480000pt;}
.y28_c00319{bottom:581.120000pt;}
.y26_c00319{bottom:606.720000pt;}
.y24_c00319{bottom:607.360000pt;}
.y25_c00319{bottom:608.000000pt;}
.y6a_c00319{bottom:608.640000pt;}
.y27_c00319{bottom:609.280000pt;}
.y20_c00319{bottom:643.840000pt;}
.y23_c00319{bottom:644.480000pt;}
.y1f_c00319{bottom:645.120000pt;}
.y22_c00319{bottom:645.760000pt;}
.y21_c00319{bottom:647.680000pt;}
.y1c_c00319{bottom:682.240000pt;}
.y1b_c00319{bottom:682.880000pt;}
.y1e_c00319{bottom:683.520000pt;}
.y67_c00319{bottom:684.160000pt;}
.y69_c00319{bottom:684.800000pt;}
.y1d_c00319{bottom:685.440000pt;}
.y68_c00319{bottom:686.080000pt;}
.y19_c00319{bottom:720.000000pt;}
.y18_c00319{bottom:721.280000pt;}
.y1a_c00319{bottom:721.920000pt;}
.y65_c00319{bottom:722.560000pt;}
.y66_c00319{bottom:723.200000pt;}
.y64_c00319{bottom:723.840000pt;}
.y15_c00319{bottom:757.760000pt;}
.y12_c00319{bottom:759.040000pt;}
.y16_c00319{bottom:759.680000pt;}
.y17_c00319{bottom:760.320000pt;}
.y14_c00319{bottom:760.960000pt;}
.y13_c00319{bottom:761.600000pt;}
.yf_c00319{bottom:798.080000pt;}
.y10_c00319{bottom:799.360000pt;}
.ye_c00319{bottom:800.640000pt;}
.yb_c00319{bottom:845.440000pt;}
.yd_c00319{bottom:847.360000pt;}
.yc_c00319{bottom:848.000000pt;}
.y7_c00319{bottom:874.240000pt;}
.y9_c00319{bottom:874.880000pt;}
.ya_c00319{bottom:876.160000pt;}
.y8_c00319{bottom:876.800000pt;}
.y6_c00319{bottom:911.360000pt;}
.y1_c00319{bottom:941.440000pt;}
.y4_c00319{bottom:942.080000pt;}
.y5_c00319{bottom:943.360000pt;}
.y2_c00319{bottom:944.000000pt;}
.y3_c00319{bottom:944.640000pt;}
.y11_c00319{bottom:988.160000pt;}
.h7_c00319{height:27.645000pt;}
.he_c00319{height:29.948750pt;}
.h4_c00319{height:36.860000pt;}
.h5_c00319{height:39.163750pt;}
.h3_c00319{height:41.467500pt;}
.ha_c00319{height:43.771250pt;}
.h9_c00319{height:46.075000pt;}
.h2_c00319{height:48.378750pt;}
.hc_c00319{height:50.682500pt;}
.hd_c00319{height:52.986250pt;}
.hf_c00319{height:53.498750pt;}
.h8_c00319{height:55.290000pt;}
.hb_c00319{height:57.593750pt;}
.h6_c00319{height:59.897500pt;}
.h0_c00319{height:1031.680000pt;}
.h1_c00319{height:1032.000000pt;}
.w0_c00319{width:673.280000pt;}
.w1_c00319{width:673.333333pt;}
.x0_c00319{left:0.000000pt;}
.x1_c00319{left:51.200000pt;}
.x2e_c00319{left:52.480000pt;}
.x33_c00319{left:53.760000pt;}
.x36_c00319{left:55.680000pt;}
.x16_c00319{left:98.560000pt;}
.x10_c00319{left:117.120000pt;}
.x2_c00319{left:118.400000pt;}
.x3_c00319{left:156.160000pt;}
.x11_c00319{left:165.760000pt;}
.x17_c00319{left:184.320000pt;}
.xa_c00319{left:193.920000pt;}
.x4_c00319{left:203.520000pt;}
.x12_c00319{left:204.800000pt;}
.x32_c00319{left:213.120000pt;}
.x26_c00319{left:232.960000pt;}
.xb_c00319{left:242.560000pt;}
.x5_c00319{left:251.520000pt;}
.x22_c00319{left:261.120000pt;}
.x34_c00319{left:270.720000pt;}
.xc_c00319{left:280.960000pt;}
.x6_c00319{left:290.560000pt;}
.x23_c00319{left:299.520000pt;}
.x2a_c00319{left:309.760000pt;}
.xd_c00319{left:319.360000pt;}
.x7_c00319{left:328.320000pt;}
.x24_c00319{left:348.160000pt;}
.x2d_c00319{left:357.760000pt;}
.x13_c00319{left:367.360000pt;}
.xe_c00319{left:368.640000pt;}
.x28_c00319{left:376.320000pt;}
.x8_c00319{left:378.240000pt;}
.x2f_c00319{left:386.560000pt;}
.x27_c00319{left:396.160000pt;}
.x2b_c00319{left:405.760000pt;}
.x29_c00319{left:414.720000pt;}
.x14_c00319{left:416.000000pt;}
.x1d_c00319{left:424.960000pt;}
.x30_c00319{left:433.920000pt;}
.x35_c00319{left:443.520000pt;}
.xf_c00319{left:444.800000pt;}
.x9_c00319{left:453.120000pt;}
.x2c_c00319{left:454.400000pt;}
.x15_c00319{left:462.720000pt;}
.x31_c00319{left:472.320000pt;}
.x1e_c00319{left:473.600000pt;}
.x25_c00319{left:483.840000pt;}
.x21_c00319{left:492.160000pt;}
.x1f_c00319{left:521.600000pt;}
.x37_c00319{left:540.160000pt;}
.x19_c00319{left:541.440000pt;}
.x38_c00319{left:568.960000pt;}
.x1a_c00319{left:570.240000pt;}
.x18_c00319{left:593.920000pt;}
.x39_c00319{left:597.760000pt;}
.x1b_c00319{left:599.040000pt;}
.x20_c00319{left:607.360000pt;}
.x1c_c00319{left:625.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1b0db47ea42edb5106742fb9.woff2')format("woff");}.ff1_c00320{font-family:ff1_c00320;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m43_c00320{transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);}
.m46_c00320{transform:matrix(0.235225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235225,0.000000,0.000000,0.250000,0,0);}
.m41_c00320{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m3f_c00320{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m33_c00320{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);}
.m3b_c00320{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);}
.m42_c00320{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);}
.m47_c00320{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m22_c00320{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);}
.m32_c00320{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);}
.m40_c00320{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m26_c00320{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);}
.m2d_c00320{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);}
.m2e_c00320{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);}
.m31_c00320{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00320{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m18_c00320{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m4_c00320{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m13_c00320{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00320{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m36_c00320{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.md_c00320{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00320{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mf_c00320{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m30_c00320{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m0_c00320{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00320{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00320{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m1_c00320{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m35_c00320{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_c00320{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m23_c00320{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m39_c00320{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.ma_c00320{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m17_c00320{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00320{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m7_c00320{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m5_c00320{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m6_c00320{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m21_c00320{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m3_c00320{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m12_c00320{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);}
.mb_c00320{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m9_c00320{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00320{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);}
.m20_c00320{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00320{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m2_c00320{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00320{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m34_c00320{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m48_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);}
.m11_c00320{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m29_c00320{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m28_c00320{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m45_c00320{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.mc_c00320{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m37_c00320{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00320{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);}
.me_c00320{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00320{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m38_c00320{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);}
.m10_c00320{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00320{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m15_c00320{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m24_c00320{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m27_c00320{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m25_c00320{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m19_c00320{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m14_c00320{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00320{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00320{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);}
.m16_c00320{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m44_c00320{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.v2_c00320{vertical-align:-2.880000px;}
.v0_c00320{vertical-align:0.000000px;}
.v1_c00320{vertical-align:8.640000px;}
.ls0_c00320{letter-spacing:0.000000px;}
.sc__c00320{text-shadow:none;}
.sc0_c00320{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00320{-webkit-text-stroke:0px transparent;}
.sc0_c00320{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00320{word-spacing:-5.736960px;}
.ws0_c00320{word-spacing:-1.622074px;}
.ws4_c00320{word-spacing:0.000000px;}
.ws3_c00320{word-spacing:11.648400px;}
.ws2_c00320{word-spacing:13.140000px;}
.fc0_c00320{color:transparent;}
.fs9_c00320{font-size:34.560000px;}
.fsc_c00320{font-size:37.440000px;}
.fs8_c00320{font-size:43.200000px;}
.fs7_c00320{font-size:46.080000px;}
.fs5_c00320{font-size:48.960000px;}
.fs1_c00320{font-size:51.840000px;}
.fsa_c00320{font-size:54.720000px;}
.fs6_c00320{font-size:57.600000px;}
.fs3_c00320{font-size:60.480000px;}
.fs2_c00320{font-size:63.360000px;}
.fse_c00320{font-size:66.240000px;}
.fs0_c00320{font-size:69.120000px;}
.fs4_c00320{font-size:72.000000px;}
.fsb_c00320{font-size:74.880000px;}
.fsd_c00320{font-size:77.760000px;}
.y0_c00320{bottom:0.000000px;}
.y6d_c00320{bottom:87.840000px;}
.y6c_c00320{bottom:90.000000px;}
.y6b_c00320{bottom:90.720000px;}
.y6a_c00320{bottom:92.160000px;}
.y6e_c00320{bottom:93.600000px;}
.y68_c00320{bottom:131.760000px;}
.y67_c00320{bottom:135.360000px;}
.y69_c00320{bottom:136.080000px;}
.y66_c00320{bottom:164.880000px;}
.y64_c00320{bottom:166.320000px;}
.y65_c00320{bottom:167.760000px;}
.y63_c00320{bottom:168.480000px;}
.y49_c00320{bottom:210.960000px;}
.y48_c00320{bottom:211.680000px;}
.y47_c00320{bottom:239.760000px;}
.y46_c00320{bottom:241.920000px;}
.y61_c00320{bottom:242.640000px;}
.y45_c00320{bottom:243.360000px;}
.y62_c00320{bottom:245.520000px;}
.y43_c00320{bottom:282.960000px;}
.y44_c00320{bottom:284.400000px;}
.y42_c00320{bottom:287.280000px;}
.y3f_c00320{bottom:316.080000px;}
.y41_c00320{bottom:317.520000px;}
.y3e_c00320{bottom:318.960000px;}
.y40_c00320{bottom:319.680000px;}
.y60_c00320{bottom:320.400000px;}
.y3d_c00320{bottom:359.280000px;}
.y39_c00320{bottom:390.960000px;}
.y3b_c00320{bottom:392.400000px;}
.y3a_c00320{bottom:393.120000px;}
.y5f_c00320{bottom:393.840000px;}
.y38_c00320{bottom:395.280000px;}
.y3c_c00320{bottom:396.000000px;}
.y37_c00320{bottom:434.880000px;}
.y36_c00320{bottom:439.200000px;}
.y33_c00320{bottom:466.560000px;}
.y35_c00320{bottom:467.280000px;}
.y5e_c00320{bottom:468.000000px;}
.y5d_c00320{bottom:468.720000px;}
.y31_c00320{bottom:470.160000px;}
.y34_c00320{bottom:470.880000px;}
.y32_c00320{bottom:471.600000px;}
.y30_c00320{bottom:509.760000px;}
.y5b_c00320{bottom:510.480000px;}
.y5a_c00320{bottom:511.200000px;}
.y5c_c00320{bottom:512.640000px;}
.y2e_c00320{bottom:513.360000px;}
.y2f_c00320{bottom:514.800000px;}
.y2d_c00320{bottom:556.560000px;}
.y2b_c00320{bottom:584.640000px;}
.y29_c00320{bottom:586.080000px;}
.y59_c00320{bottom:586.800000px;}
.y27_c00320{bottom:587.520000px;}
.y2a_c00320{bottom:588.240000px;}
.y2c_c00320{bottom:588.960000px;}
.y28_c00320{bottom:589.680000px;}
.y26_c00320{bottom:627.840000px;}
.y25_c00320{bottom:628.560000px;}
.y57_c00320{bottom:629.280000px;}
.y23_c00320{bottom:630.000000px;}
.y58_c00320{bottom:632.160000px;}
.y24_c00320{bottom:632.880000px;}
.y21_c00320{bottom:671.040000px;}
.y55_c00320{bottom:671.760000px;}
.y56_c00320{bottom:672.480000px;}
.y1f_c00320{bottom:673.920000px;}
.y22_c00320{bottom:674.640000px;}
.y20_c00320{bottom:675.360000px;}
.y1d_c00320{bottom:717.120000px;}
.y1e_c00320{bottom:717.840000px;}
.y1c_c00320{bottom:720.000000px;}
.y17_c00320{bottom:769.680000px;}
.y54_c00320{bottom:770.400000px;}
.y18_c00320{bottom:771.120000px;}
.y1b_c00320{bottom:771.840000px;}
.y19_c00320{bottom:772.560000px;}
.y1a_c00320{bottom:773.280000px;}
.y53_c00320{bottom:812.880000px;}
.y12_c00320{bottom:813.600000px;}
.y13_c00320{bottom:814.320000px;}
.y16_c00320{bottom:815.040000px;}
.y15_c00320{bottom:815.760000px;}
.y14_c00320{bottom:816.480000px;}
.ye_c00320{bottom:856.080000px;}
.y10_c00320{bottom:856.800000px;}
.y52_c00320{bottom:857.520000px;}
.y11_c00320{bottom:858.240000px;}
.yf_c00320{bottom:858.960000px;}
.y51_c00320{bottom:899.280000px;}
.yc_c00320{bottom:900.000000px;}
.yd_c00320{bottom:900.720000px;}
.y4f_c00320{bottom:941.760000px;}
.y9_c00320{bottom:942.480000px;}
.yb_c00320{bottom:943.200000px;}
.y50_c00320{bottom:943.920000px;}
.ya_c00320{bottom:945.360000px;}
.y7_c00320{bottom:985.680000px;}
.y4e_c00320{bottom:987.120000px;}
.y8_c00320{bottom:988.560000px;}
.y4_c00320{bottom:1027.440000px;}
.y6_c00320{bottom:1028.160000px;}
.y4d_c00320{bottom:1029.600000px;}
.y4c_c00320{bottom:1030.320000px;}
.y5_c00320{bottom:1031.760000px;}
.y1_c00320{bottom:1071.360000px;}
.y3_c00320{bottom:1072.080000px;}
.y4b_c00320{bottom:1072.800000px;}
.y2_c00320{bottom:1074.240000px;}
.y4a_c00320{bottom:1117.440000px;}
.hb_c00320{height:31.100625px;}
.he_c00320{height:33.692344px;}
.ha_c00320{height:38.875781px;}
.h9_c00320{height:41.467500px;}
.h7_c00320{height:44.059219px;}
.h3_c00320{height:46.650937px;}
.hc_c00320{height:49.242656px;}
.h8_c00320{height:51.834375px;}
.h5_c00320{height:54.426094px;}
.h4_c00320{height:57.017812px;}
.h11_c00320{height:59.609531px;}
.h10_c00320{height:60.474375px;}
.h2_c00320{height:62.201250px;}
.h6_c00320{height:64.792969px;}
.hd_c00320{height:67.384687px;}
.hf_c00320{height:69.976406px;}
.h1_c00320{height:1164.000000px;}
.h0_c00320{height:1164.240000px;}
.w0_c00320{width:762.480000px;}
.w1_c00320{width:762.750000px;}
.x0_c00320{left:0.000000px;}
.x1_c00320{left:59.760000px;}
.x1c_c00320{left:61.200000px;}
.x35_c00320{left:62.640000px;}
.xb_c00320{left:91.440000px;}
.xc_c00320{left:112.320000px;}
.x1e_c00320{left:132.480000px;}
.xe_c00320{left:133.920000px;}
.x2_c00320{left:135.360000px;}
.x36_c00320{left:175.680000px;}
.x3_c00320{left:177.120000px;}
.x5_c00320{left:178.560000px;}
.xd_c00320{left:187.200000px;}
.x15_c00320{left:220.320000px;}
.x11_c00320{left:230.400000px;}
.x6_c00320{left:231.840000px;}
.x2f_c00320{left:241.200000px;}
.x4_c00320{left:242.640000px;}
.x14_c00320{left:252.720000px;}
.x1f_c00320{left:263.520000px;}
.x12_c00320{left:275.040000px;}
.x7_c00320{left:285.840000px;}
.x16_c00320{left:294.480000px;}
.x30_c00320{left:295.920000px;}
.x10_c00320{left:317.520000px;}
.xf_c00320{left:327.600000px;}
.x9_c00320{left:329.040000px;}
.x17_c00320{left:339.120000px;}
.x8_c00320{left:349.920000px;}
.x31_c00320{left:360.000000px;}
.xa_c00320{left:372.240000px;}
.x18_c00320{left:393.840000px;}
.x1d_c00320{left:445.680000px;}
.x32_c00320{left:455.760000px;}
.x1a_c00320{left:468.000000px;}
.x19_c00320{left:479.520000px;}
.x13_c00320{left:490.320000px;}
.x33_c00320{left:500.400000px;}
.x1b_c00320{left:522.720000px;}
.x2b_c00320{left:576.000000px;}
.x27_c00320{left:577.440000px;}
.x2d_c00320{left:586.800000px;}
.x29_c00320{left:588.240000px;}
.x2c_c00320{left:608.400000px;}
.x24_c00320{left:609.840000px;}
.x21_c00320{left:611.280000px;}
.x34_c00320{left:640.800000px;}
.x25_c00320{left:642.240000px;}
.x22_c00320{left:643.680000px;}
.x37_c00320{left:650.880000px;}
.x20_c00320{left:667.440000px;}
.x26_c00320{left:674.640000px;}
.x23_c00320{left:676.080000px;}
.x2e_c00320{left:683.280000px;}
.x28_c00320{left:684.720000px;}
.x2a_c00320{left:704.880000px;}
@media print{
.v2_c00320{vertical-align:-2.560000pt;}
.v0_c00320{vertical-align:0.000000pt;}
.v1_c00320{vertical-align:7.680000pt;}
.ls0_c00320{letter-spacing:0.000000pt;}
.ws1_c00320{word-spacing:-5.099520pt;}
.ws0_c00320{word-spacing:-1.441843pt;}
.ws4_c00320{word-spacing:0.000000pt;}
.ws3_c00320{word-spacing:10.354133pt;}
.ws2_c00320{word-spacing:11.680000pt;}
.fs9_c00320{font-size:30.720000pt;}
.fsc_c00320{font-size:33.280000pt;}
.fs8_c00320{font-size:38.400000pt;}
.fs7_c00320{font-size:40.960000pt;}
.fs5_c00320{font-size:43.520000pt;}
.fs1_c00320{font-size:46.080000pt;}
.fsa_c00320{font-size:48.640000pt;}
.fs6_c00320{font-size:51.200000pt;}
.fs3_c00320{font-size:53.760000pt;}
.fs2_c00320{font-size:56.320000pt;}
.fse_c00320{font-size:58.880000pt;}
.fs0_c00320{font-size:61.440000pt;}
.fs4_c00320{font-size:64.000000pt;}
.fsb_c00320{font-size:66.560000pt;}
.fsd_c00320{font-size:69.120000pt;}
.y0_c00320{bottom:0.000000pt;}
.y6d_c00320{bottom:78.080000pt;}
.y6c_c00320{bottom:80.000000pt;}
.y6b_c00320{bottom:80.640000pt;}
.y6a_c00320{bottom:81.920000pt;}
.y6e_c00320{bottom:83.200000pt;}
.y68_c00320{bottom:117.120000pt;}
.y67_c00320{bottom:120.320000pt;}
.y69_c00320{bottom:120.960000pt;}
.y66_c00320{bottom:146.560000pt;}
.y64_c00320{bottom:147.840000pt;}
.y65_c00320{bottom:149.120000pt;}
.y63_c00320{bottom:149.760000pt;}
.y49_c00320{bottom:187.520000pt;}
.y48_c00320{bottom:188.160000pt;}
.y47_c00320{bottom:213.120000pt;}
.y46_c00320{bottom:215.040000pt;}
.y61_c00320{bottom:215.680000pt;}
.y45_c00320{bottom:216.320000pt;}
.y62_c00320{bottom:218.240000pt;}
.y43_c00320{bottom:251.520000pt;}
.y44_c00320{bottom:252.800000pt;}
.y42_c00320{bottom:255.360000pt;}
.y3f_c00320{bottom:280.960000pt;}
.y41_c00320{bottom:282.240000pt;}
.y3e_c00320{bottom:283.520000pt;}
.y40_c00320{bottom:284.160000pt;}
.y60_c00320{bottom:284.800000pt;}
.y3d_c00320{bottom:319.360000pt;}
.y39_c00320{bottom:347.520000pt;}
.y3b_c00320{bottom:348.800000pt;}
.y3a_c00320{bottom:349.440000pt;}
.y5f_c00320{bottom:350.080000pt;}
.y38_c00320{bottom:351.360000pt;}
.y3c_c00320{bottom:352.000000pt;}
.y37_c00320{bottom:386.560000pt;}
.y36_c00320{bottom:390.400000pt;}
.y33_c00320{bottom:414.720000pt;}
.y35_c00320{bottom:415.360000pt;}
.y5e_c00320{bottom:416.000000pt;}
.y5d_c00320{bottom:416.640000pt;}
.y31_c00320{bottom:417.920000pt;}
.y34_c00320{bottom:418.560000pt;}
.y32_c00320{bottom:419.200000pt;}
.y30_c00320{bottom:453.120000pt;}
.y5b_c00320{bottom:453.760000pt;}
.y5a_c00320{bottom:454.400000pt;}
.y5c_c00320{bottom:455.680000pt;}
.y2e_c00320{bottom:456.320000pt;}
.y2f_c00320{bottom:457.600000pt;}
.y2d_c00320{bottom:494.720000pt;}
.y2b_c00320{bottom:519.680000pt;}
.y29_c00320{bottom:520.960000pt;}
.y59_c00320{bottom:521.600000pt;}
.y27_c00320{bottom:522.240000pt;}
.y2a_c00320{bottom:522.880000pt;}
.y2c_c00320{bottom:523.520000pt;}
.y28_c00320{bottom:524.160000pt;}
.y26_c00320{bottom:558.080000pt;}
.y25_c00320{bottom:558.720000pt;}
.y57_c00320{bottom:559.360000pt;}
.y23_c00320{bottom:560.000000pt;}
.y58_c00320{bottom:561.920000pt;}
.y24_c00320{bottom:562.560000pt;}
.y21_c00320{bottom:596.480000pt;}
.y55_c00320{bottom:597.120000pt;}
.y56_c00320{bottom:597.760000pt;}
.y1f_c00320{bottom:599.040000pt;}
.y22_c00320{bottom:599.680000pt;}
.y20_c00320{bottom:600.320000pt;}
.y1d_c00320{bottom:637.440000pt;}
.y1e_c00320{bottom:638.080000pt;}
.y1c_c00320{bottom:640.000000pt;}
.y17_c00320{bottom:684.160000pt;}
.y54_c00320{bottom:684.800000pt;}
.y18_c00320{bottom:685.440000pt;}
.y1b_c00320{bottom:686.080000pt;}
.y19_c00320{bottom:686.720000pt;}
.y1a_c00320{bottom:687.360000pt;}
.y53_c00320{bottom:722.560000pt;}
.y12_c00320{bottom:723.200000pt;}
.y13_c00320{bottom:723.840000pt;}
.y16_c00320{bottom:724.480000pt;}
.y15_c00320{bottom:725.120000pt;}
.y14_c00320{bottom:725.760000pt;}
.ye_c00320{bottom:760.960000pt;}
.y10_c00320{bottom:761.600000pt;}
.y52_c00320{bottom:762.240000pt;}
.y11_c00320{bottom:762.880000pt;}
.yf_c00320{bottom:763.520000pt;}
.y51_c00320{bottom:799.360000pt;}
.yc_c00320{bottom:800.000000pt;}
.yd_c00320{bottom:800.640000pt;}
.y4f_c00320{bottom:837.120000pt;}
.y9_c00320{bottom:837.760000pt;}
.yb_c00320{bottom:838.400000pt;}
.y50_c00320{bottom:839.040000pt;}
.ya_c00320{bottom:840.320000pt;}
.y7_c00320{bottom:876.160000pt;}
.y4e_c00320{bottom:877.440000pt;}
.y8_c00320{bottom:878.720000pt;}
.y4_c00320{bottom:913.280000pt;}
.y6_c00320{bottom:913.920000pt;}
.y4d_c00320{bottom:915.200000pt;}
.y4c_c00320{bottom:915.840000pt;}
.y5_c00320{bottom:917.120000pt;}
.y1_c00320{bottom:952.320000pt;}
.y3_c00320{bottom:952.960000pt;}
.y4b_c00320{bottom:953.600000pt;}
.y2_c00320{bottom:954.880000pt;}
.y4a_c00320{bottom:993.280000pt;}
.hb_c00320{height:27.645000pt;}
.he_c00320{height:29.948750pt;}
.ha_c00320{height:34.556250pt;}
.h9_c00320{height:36.860000pt;}
.h7_c00320{height:39.163750pt;}
.h3_c00320{height:41.467500pt;}
.hc_c00320{height:43.771250pt;}
.h8_c00320{height:46.075000pt;}
.h5_c00320{height:48.378750pt;}
.h4_c00320{height:50.682500pt;}
.h11_c00320{height:52.986250pt;}
.h10_c00320{height:53.755000pt;}
.h2_c00320{height:55.290000pt;}
.h6_c00320{height:57.593750pt;}
.hd_c00320{height:59.897500pt;}
.hf_c00320{height:62.201250pt;}
.h1_c00320{height:1034.666667pt;}
.h0_c00320{height:1034.880000pt;}
.w0_c00320{width:677.760000pt;}
.w1_c00320{width:678.000000pt;}
.x0_c00320{left:0.000000pt;}
.x1_c00320{left:53.120000pt;}
.x1c_c00320{left:54.400000pt;}
.x35_c00320{left:55.680000pt;}
.xb_c00320{left:81.280000pt;}
.xc_c00320{left:99.840000pt;}
.x1e_c00320{left:117.760000pt;}
.xe_c00320{left:119.040000pt;}
.x2_c00320{left:120.320000pt;}
.x36_c00320{left:156.160000pt;}
.x3_c00320{left:157.440000pt;}
.x5_c00320{left:158.720000pt;}
.xd_c00320{left:166.400000pt;}
.x15_c00320{left:195.840000pt;}
.x11_c00320{left:204.800000pt;}
.x6_c00320{left:206.080000pt;}
.x2f_c00320{left:214.400000pt;}
.x4_c00320{left:215.680000pt;}
.x14_c00320{left:224.640000pt;}
.x1f_c00320{left:234.240000pt;}
.x12_c00320{left:244.480000pt;}
.x7_c00320{left:254.080000pt;}
.x16_c00320{left:261.760000pt;}
.x30_c00320{left:263.040000pt;}
.x10_c00320{left:282.240000pt;}
.xf_c00320{left:291.200000pt;}
.x9_c00320{left:292.480000pt;}
.x17_c00320{left:301.440000pt;}
.x8_c00320{left:311.040000pt;}
.x31_c00320{left:320.000000pt;}
.xa_c00320{left:330.880000pt;}
.x18_c00320{left:350.080000pt;}
.x1d_c00320{left:396.160000pt;}
.x32_c00320{left:405.120000pt;}
.x1a_c00320{left:416.000000pt;}
.x19_c00320{left:426.240000pt;}
.x13_c00320{left:435.840000pt;}
.x33_c00320{left:444.800000pt;}
.x1b_c00320{left:464.640000pt;}
.x2b_c00320{left:512.000000pt;}
.x27_c00320{left:513.280000pt;}
.x2d_c00320{left:521.600000pt;}
.x29_c00320{left:522.880000pt;}
.x2c_c00320{left:540.800000pt;}
.x24_c00320{left:542.080000pt;}
.x21_c00320{left:543.360000pt;}
.x34_c00320{left:569.600000pt;}
.x25_c00320{left:570.880000pt;}
.x22_c00320{left:572.160000pt;}
.x37_c00320{left:578.560000pt;}
.x20_c00320{left:593.280000pt;}
.x26_c00320{left:599.680000pt;}
.x23_c00320{left:600.960000pt;}
.x2e_c00320{left:607.360000pt;}
.x28_c00320{left:608.640000pt;}
.x2a_c00320{left:626.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_cdadc39597ed5b83a7d4cf39.woff2')format("woff");}.ff1_c00321{font-family:ff1_c00321;line-height:1.109863;font-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_c00321{transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);}
.m2b_c00321{transform:matrix(0.218525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218525,0.000000,0.000000,0.250000,0,0);}
.m3d_c00321{transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);}
.m11_c00321{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m3f_c00321{transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);}
.m39_c00321{transform:matrix(0.246800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246800,0.000000,0.000000,0.250000,0,0);}
.m2f_c00321{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m25_c00321{transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);}
.m42_c00321{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m27_c00321{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m8_c00321{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);}
.m34_c00321{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m6_c00321{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mb_c00321{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);}
.m1c_c00321{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);}
.m37_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);}
.m1a_c00321{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m7_c00321{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m21_c00321{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.md_c00321{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);}
.m22_c00321{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1_c00321{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mc_c00321{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m23_c00321{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.ma_c00321{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mf_c00321{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00321{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00321{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00321{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m20_c00321{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00321{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m15_c00321{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m14_c00321{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m10_c00321{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m36_c00321{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2_c00321{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m9_c00321{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);}
.m28_c00321{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m38_c00321{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00321{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m0_c00321{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_c00321{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);}
.m31_c00321{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m5_c00321{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_c00321{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m24_c00321{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m4_c00321{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m12_c00321{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);}
.m3b_c00321{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m41_c00321{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);}
.m3c_c00321{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);}
.m1f_c00321{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m18_c00321{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m30_c00321{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);}
.m16_c00321{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m43_c00321{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m17_c00321{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m19_c00321{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00321{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m40_c00321{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m3_c00321{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);}
.m29_c00321{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m13_c00321{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m26_c00321{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00321{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m35_c00321{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m33_c00321{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.me_c00321{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.v1_c00321{vertical-align:-5.760000px;}
.v0_c00321{vertical-align:0.000000px;}
.ls1_c00321{letter-spacing:0.000000px;}
.ls0_c00321{letter-spacing:170.642400px;}
.sc__c00321{text-shadow:none;}
.sc0_c00321{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00321{-webkit-text-stroke:0px transparent;}
.sc0_c00321{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00321{word-spacing:0.000000px;}
.fc0_c00321{color:transparent;}
.fsd_c00321{font-size:34.560000px;}
.fs3_c00321{font-size:37.440000px;}
.fsc_c00321{font-size:46.080000px;}
.fs4_c00321{font-size:48.960000px;}
.fs2_c00321{font-size:51.840000px;}
.fsa_c00321{font-size:54.720000px;}
.fs9_c00321{font-size:57.600000px;}
.fs6_c00321{font-size:60.480000px;}
.fs0_c00321{font-size:63.360000px;}
.fs7_c00321{font-size:66.240000px;}
.fs5_c00321{font-size:69.120000px;}
.fs8_c00321{font-size:72.000000px;}
.fs1_c00321{font-size:74.880000px;}
.fsb_c00321{font-size:77.760000px;}
.fse_c00321{font-size:103.680000px;}
.y0_c00321{bottom:0.000000px;}
.y7b_c00321{bottom:81.360000px;}
.y7c_c00321{bottom:82.800000px;}
.y7a_c00321{bottom:83.520000px;}
.y74_c00321{bottom:123.120000px;}
.y76_c00321{bottom:123.840000px;}
.y78_c00321{bottom:124.560000px;}
.y75_c00321{bottom:125.280000px;}
.y79_c00321{bottom:126.000000px;}
.y73_c00321{bottom:126.720000px;}
.y77_c00321{bottom:127.440000px;}
.y70_c00321{bottom:166.320000px;}
.y72_c00321{bottom:167.760000px;}
.y6f_c00321{bottom:169.200000px;}
.y71_c00321{bottom:169.920000px;}
.y69_c00321{bottom:209.520000px;}
.y6b_c00321{bottom:210.240000px;}
.y6a_c00321{bottom:210.960000px;}
.y6d_c00321{bottom:211.680000px;}
.y68_c00321{bottom:213.120000px;}
.y6c_c00321{bottom:213.840000px;}
.y6e_c00321{bottom:215.280000px;}
.y67_c00321{bottom:252.720000px;}
.y64_c00321{bottom:253.440000px;}
.y65_c00321{bottom:254.160000px;}
.y66_c00321{bottom:255.600000px;}
.y5f_c00321{bottom:283.680000px;}
.y60_c00321{bottom:286.560000px;}
.y63_c00321{bottom:287.280000px;}
.y5e_c00321{bottom:288.000000px;}
.y61_c00321{bottom:288.720000px;}
.y62_c00321{bottom:289.440000px;}
.y5a_c00321{bottom:326.880000px;}
.y59_c00321{bottom:328.320000px;}
.y5d_c00321{bottom:329.040000px;}
.y5c_c00321{bottom:329.760000px;}
.y57_c00321{bottom:330.480000px;}
.y5b_c00321{bottom:331.200000px;}
.y58_c00321{bottom:331.920000px;}
.y51_c00321{bottom:370.800000px;}
.y54_c00321{bottom:371.520000px;}
.y52_c00321{bottom:372.240000px;}
.y55_c00321{bottom:372.960000px;}
.y53_c00321{bottom:373.680000px;}
.y50_c00321{bottom:374.400000px;}
.y56_c00321{bottom:376.560000px;}
.y4f_c00321{bottom:413.280000px;}
.y4e_c00321{bottom:415.440000px;}
.y4d_c00321{bottom:416.880000px;}
.y48_c00321{bottom:457.200000px;}
.y4a_c00321{bottom:458.640000px;}
.y46_c00321{bottom:459.360000px;}
.y4c_c00321{bottom:460.080000px;}
.y47_c00321{bottom:460.800000px;}
.y4b_c00321{bottom:461.520000px;}
.y45_c00321{bottom:500.400000px;}
.y49_c00321{bottom:501.840000px;}
.y44_c00321{bottom:502.560000px;}
.y43_c00321{bottom:537.120000px;}
.y3e_c00321{bottom:543.600000px;}
.y40_c00321{bottom:545.040000px;}
.y3d_c00321{bottom:545.760000px;}
.y41_c00321{bottom:546.480000px;}
.y3f_c00321{bottom:547.200000px;}
.y42_c00321{bottom:547.920000px;}
.y3c_c00321{bottom:579.600000px;}
.y38_c00321{bottom:586.800000px;}
.y3b_c00321{bottom:588.240000px;}
.y37_c00321{bottom:588.960000px;}
.y3a_c00321{bottom:589.680000px;}
.y39_c00321{bottom:590.400000px;}
.y36_c00321{bottom:630.000000px;}
.y35_c00321{bottom:633.600000px;}
.y30_c00321{bottom:662.400000px;}
.y32_c00321{bottom:663.120000px;}
.y34_c00321{bottom:663.840000px;}
.y2e_c00321{bottom:664.560000px;}
.y33_c00321{bottom:665.280000px;}
.y31_c00321{bottom:666.000000px;}
.y2f_c00321{bottom:666.720000px;}
.y2c_c00321{bottom:704.880000px;}
.y2d_c00321{bottom:706.320000px;}
.y2b_c00321{bottom:708.480000px;}
.y29_c00321{bottom:737.280000px;}
.y27_c00321{bottom:738.000000px;}
.y28_c00321{bottom:738.720000px;}
.y25_c00321{bottom:739.440000px;}
.y26_c00321{bottom:740.880000px;}
.y2a_c00321{bottom:741.600000px;}
.y21_c00321{bottom:780.480000px;}
.y24_c00321{bottom:781.200000px;}
.y22_c00321{bottom:783.360000px;}
.y23_c00321{bottom:784.800000px;}
.y1d_c00321{bottom:812.160000px;}
.y1f_c00321{bottom:812.880000px;}
.y1e_c00321{bottom:813.600000px;}
.y1b_c00321{bottom:814.320000px;}
.y20_c00321{bottom:815.760000px;}
.y1c_c00321{bottom:816.480000px;}
.y1a_c00321{bottom:847.440000px;}
.y16_c00321{bottom:854.640000px;}
.y15_c00321{bottom:855.360000px;}
.y17_c00321{bottom:856.080000px;}
.y14_c00321{bottom:856.800000px;}
.y18_c00321{bottom:857.520000px;}
.y19_c00321{bottom:858.240000px;}
.y12_c00321{bottom:899.280000px;}
.y13_c00321{bottom:902.160000px;}
.y11_c00321{bottom:930.240000px;}
.ye_c00321{bottom:930.960000px;}
.yf_c00321{bottom:931.680000px;}
.yd_c00321{bottom:932.400000px;}
.y10_c00321{bottom:933.840000px;}
.y9_c00321{bottom:974.160000px;}
.y8_c00321{bottom:974.880000px;}
.yc_c00321{bottom:975.600000px;}
.y7_c00321{bottom:1016.640000px;}
.yb_c00321{bottom:1018.080000px;}
.y6_c00321{bottom:1018.800000px;}
.ya_c00321{bottom:1019.520000px;}
.y5_c00321{bottom:1059.840000px;}
.y2_c00321{bottom:1060.560000px;}
.y1_c00321{bottom:1062.000000px;}
.y3_c00321{bottom:1063.440000px;}
.y4_c00321{bottom:1064.160000px;}
.hf_c00321{height:31.100625px;}
.h5_c00321{height:33.692344px;}
.he_c00321{height:41.467500px;}
.h6_c00321{height:44.059219px;}
.h4_c00321{height:46.650937px;}
.hc_c00321{height:49.242656px;}
.hb_c00321{height:51.834375px;}
.h8_c00321{height:54.426094px;}
.h2_c00321{height:57.017812px;}
.h9_c00321{height:59.609531px;}
.h7_c00321{height:62.201250px;}
.ha_c00321{height:64.792969px;}
.h3_c00321{height:67.384687px;}
.hd_c00321{height:69.976406px;}
.h10_c00321{height:93.301875px;}
.h1_c00321{height:1166.250000px;}
.h0_c00321{height:1166.400000px;}
.w1_c00321{width:765.750000px;}
.w0_c00321{width:766.080000px;}
.x0_c00321{left:0.000000px;}
.x1_c00321{left:62.640000px;}
.x39_c00321{left:64.080000px;}
.x2_c00321{left:136.080000px;}
.x18_c00321{left:137.520000px;}
.x3c_c00321{left:178.560000px;}
.x15_c00321{left:180.000000px;}
.x11_c00321{left:190.800000px;}
.x2e_c00321{left:222.480000px;}
.xd_c00321{left:223.920000px;}
.x3b_c00321{left:231.840000px;}
.x2b_c00321{left:233.280000px;}
.x12_c00321{left:234.720000px;}
.x29_c00321{left:265.680000px;}
.x19_c00321{left:276.480000px;}
.x16_c00321{left:277.920000px;}
.x3_c00321{left:287.280000px;}
.x28_c00321{left:298.800000px;}
.x2f_c00321{left:310.320000px;}
.x3a_c00321{left:319.680000px;}
.x1a_c00321{left:321.120000px;}
.x23_c00321{left:330.480000px;}
.x4_c00321{left:332.640000px;}
.x1f_c00321{left:342.720000px;}
.x30_c00321{left:352.080000px;}
.xe_c00321{left:353.520000px;}
.x2c_c00321{left:372.960000px;}
.x1b_c00321{left:375.120000px;}
.x20_c00321{left:384.480000px;}
.xf_c00321{left:407.520000px;}
.x2d_c00321{left:416.880000px;}
.x35_c00321{left:427.680000px;}
.x24_c00321{left:429.120000px;}
.x31_c00321{left:460.080000px;}
.x36_c00321{left:479.520000px;}
.x13_c00321{left:492.480000px;}
.x1c_c00321{left:503.280000px;}
.x14_c00321{left:504.720000px;}
.x21_c00321{left:514.080000px;}
.x37_c00321{left:524.160000px;}
.x26_c00321{left:535.680000px;}
.x32_c00321{left:545.760000px;}
.x1d_c00321{left:547.200000px;}
.x5_c00321{left:548.640000px;}
.x9_c00321{left:558.720000px;}
.x38_c00321{left:578.160000px;}
.xc_c00321{left:579.600000px;}
.x27_c00321{left:583.200000px;}
.x6_c00321{left:591.120000px;}
.x3d_c00321{left:609.120000px;}
.x33_c00321{left:610.560000px;}
.x10_c00321{left:612.000000px;}
.x3e_c00321{left:642.960000px;}
.x1e_c00321{left:644.400000px;}
.x7_c00321{left:645.840000px;}
.x34_c00321{left:653.040000px;}
.x22_c00321{left:654.480000px;}
.x8_c00321{left:678.240000px;}
.x2a_c00321{left:685.440000px;}
.x17_c00321{left:686.880000px;}
.xa_c00321{left:688.320000px;}
.x25_c00321{left:707.040000px;}
.xb_c00321{left:708.480000px;}
@media print{
.v1_c00321{vertical-align:-5.120000pt;}
.v0_c00321{vertical-align:0.000000pt;}
.ls1_c00321{letter-spacing:0.000000pt;}
.ls0_c00321{letter-spacing:151.682133pt;}
.ws0_c00321{word-spacing:0.000000pt;}
.fsd_c00321{font-size:30.720000pt;}
.fs3_c00321{font-size:33.280000pt;}
.fsc_c00321{font-size:40.960000pt;}
.fs4_c00321{font-size:43.520000pt;}
.fs2_c00321{font-size:46.080000pt;}
.fsa_c00321{font-size:48.640000pt;}
.fs9_c00321{font-size:51.200000pt;}
.fs6_c00321{font-size:53.760000pt;}
.fs0_c00321{font-size:56.320000pt;}
.fs7_c00321{font-size:58.880000pt;}
.fs5_c00321{font-size:61.440000pt;}
.fs8_c00321{font-size:64.000000pt;}
.fs1_c00321{font-size:66.560000pt;}
.fsb_c00321{font-size:69.120000pt;}
.fse_c00321{font-size:92.160000pt;}
.y0_c00321{bottom:0.000000pt;}
.y7b_c00321{bottom:72.320000pt;}
.y7c_c00321{bottom:73.600000pt;}
.y7a_c00321{bottom:74.240000pt;}
.y74_c00321{bottom:109.440000pt;}
.y76_c00321{bottom:110.080000pt;}
.y78_c00321{bottom:110.720000pt;}
.y75_c00321{bottom:111.360000pt;}
.y79_c00321{bottom:112.000000pt;}
.y73_c00321{bottom:112.640000pt;}
.y77_c00321{bottom:113.280000pt;}
.y70_c00321{bottom:147.840000pt;}
.y72_c00321{bottom:149.120000pt;}
.y6f_c00321{bottom:150.400000pt;}
.y71_c00321{bottom:151.040000pt;}
.y69_c00321{bottom:186.240000pt;}
.y6b_c00321{bottom:186.880000pt;}
.y6a_c00321{bottom:187.520000pt;}
.y6d_c00321{bottom:188.160000pt;}
.y68_c00321{bottom:189.440000pt;}
.y6c_c00321{bottom:190.080000pt;}
.y6e_c00321{bottom:191.360000pt;}
.y67_c00321{bottom:224.640000pt;}
.y64_c00321{bottom:225.280000pt;}
.y65_c00321{bottom:225.920000pt;}
.y66_c00321{bottom:227.200000pt;}
.y5f_c00321{bottom:252.160000pt;}
.y60_c00321{bottom:254.720000pt;}
.y63_c00321{bottom:255.360000pt;}
.y5e_c00321{bottom:256.000000pt;}
.y61_c00321{bottom:256.640000pt;}
.y62_c00321{bottom:257.280000pt;}
.y5a_c00321{bottom:290.560000pt;}
.y59_c00321{bottom:291.840000pt;}
.y5d_c00321{bottom:292.480000pt;}
.y5c_c00321{bottom:293.120000pt;}
.y57_c00321{bottom:293.760000pt;}
.y5b_c00321{bottom:294.400000pt;}
.y58_c00321{bottom:295.040000pt;}
.y51_c00321{bottom:329.600000pt;}
.y54_c00321{bottom:330.240000pt;}
.y52_c00321{bottom:330.880000pt;}
.y55_c00321{bottom:331.520000pt;}
.y53_c00321{bottom:332.160000pt;}
.y50_c00321{bottom:332.800000pt;}
.y56_c00321{bottom:334.720000pt;}
.y4f_c00321{bottom:367.360000pt;}
.y4e_c00321{bottom:369.280000pt;}
.y4d_c00321{bottom:370.560000pt;}
.y48_c00321{bottom:406.400000pt;}
.y4a_c00321{bottom:407.680000pt;}
.y46_c00321{bottom:408.320000pt;}
.y4c_c00321{bottom:408.960000pt;}
.y47_c00321{bottom:409.600000pt;}
.y4b_c00321{bottom:410.240000pt;}
.y45_c00321{bottom:444.800000pt;}
.y49_c00321{bottom:446.080000pt;}
.y44_c00321{bottom:446.720000pt;}
.y43_c00321{bottom:477.440000pt;}
.y3e_c00321{bottom:483.200000pt;}
.y40_c00321{bottom:484.480000pt;}
.y3d_c00321{bottom:485.120000pt;}
.y41_c00321{bottom:485.760000pt;}
.y3f_c00321{bottom:486.400000pt;}
.y42_c00321{bottom:487.040000pt;}
.y3c_c00321{bottom:515.200000pt;}
.y38_c00321{bottom:521.600000pt;}
.y3b_c00321{bottom:522.880000pt;}
.y37_c00321{bottom:523.520000pt;}
.y3a_c00321{bottom:524.160000pt;}
.y39_c00321{bottom:524.800000pt;}
.y36_c00321{bottom:560.000000pt;}
.y35_c00321{bottom:563.200000pt;}
.y30_c00321{bottom:588.800000pt;}
.y32_c00321{bottom:589.440000pt;}
.y34_c00321{bottom:590.080000pt;}
.y2e_c00321{bottom:590.720000pt;}
.y33_c00321{bottom:591.360000pt;}
.y31_c00321{bottom:592.000000pt;}
.y2f_c00321{bottom:592.640000pt;}
.y2c_c00321{bottom:626.560000pt;}
.y2d_c00321{bottom:627.840000pt;}
.y2b_c00321{bottom:629.760000pt;}
.y29_c00321{bottom:655.360000pt;}
.y27_c00321{bottom:656.000000pt;}
.y28_c00321{bottom:656.640000pt;}
.y25_c00321{bottom:657.280000pt;}
.y26_c00321{bottom:658.560000pt;}
.y2a_c00321{bottom:659.200000pt;}
.y21_c00321{bottom:693.760000pt;}
.y24_c00321{bottom:694.400000pt;}
.y22_c00321{bottom:696.320000pt;}
.y23_c00321{bottom:697.600000pt;}
.y1d_c00321{bottom:721.920000pt;}
.y1f_c00321{bottom:722.560000pt;}
.y1e_c00321{bottom:723.200000pt;}
.y1b_c00321{bottom:723.840000pt;}
.y20_c00321{bottom:725.120000pt;}
.y1c_c00321{bottom:725.760000pt;}
.y1a_c00321{bottom:753.280000pt;}
.y16_c00321{bottom:759.680000pt;}
.y15_c00321{bottom:760.320000pt;}
.y17_c00321{bottom:760.960000pt;}
.y14_c00321{bottom:761.600000pt;}
.y18_c00321{bottom:762.240000pt;}
.y19_c00321{bottom:762.880000pt;}
.y12_c00321{bottom:799.360000pt;}
.y13_c00321{bottom:801.920000pt;}
.y11_c00321{bottom:826.880000pt;}
.ye_c00321{bottom:827.520000pt;}
.yf_c00321{bottom:828.160000pt;}
.yd_c00321{bottom:828.800000pt;}
.y10_c00321{bottom:830.080000pt;}
.y9_c00321{bottom:865.920000pt;}
.y8_c00321{bottom:866.560000pt;}
.yc_c00321{bottom:867.200000pt;}
.y7_c00321{bottom:903.680000pt;}
.yb_c00321{bottom:904.960000pt;}
.y6_c00321{bottom:905.600000pt;}
.ya_c00321{bottom:906.240000pt;}
.y5_c00321{bottom:942.080000pt;}
.y2_c00321{bottom:942.720000pt;}
.y1_c00321{bottom:944.000000pt;}
.y3_c00321{bottom:945.280000pt;}
.y4_c00321{bottom:945.920000pt;}
.hf_c00321{height:27.645000pt;}
.h5_c00321{height:29.948750pt;}
.he_c00321{height:36.860000pt;}
.h6_c00321{height:39.163750pt;}
.h4_c00321{height:41.467500pt;}
.hc_c00321{height:43.771250pt;}
.hb_c00321{height:46.075000pt;}
.h8_c00321{height:48.378750pt;}
.h2_c00321{height:50.682500pt;}
.h9_c00321{height:52.986250pt;}
.h7_c00321{height:55.290000pt;}
.ha_c00321{height:57.593750pt;}
.h3_c00321{height:59.897500pt;}
.hd_c00321{height:62.201250pt;}
.h10_c00321{height:82.935000pt;}
.h1_c00321{height:1036.666667pt;}
.h0_c00321{height:1036.800000pt;}
.w1_c00321{width:680.666667pt;}
.w0_c00321{width:680.960000pt;}
.x0_c00321{left:0.000000pt;}
.x1_c00321{left:55.680000pt;}
.x39_c00321{left:56.960000pt;}
.x2_c00321{left:120.960000pt;}
.x18_c00321{left:122.240000pt;}
.x3c_c00321{left:158.720000pt;}
.x15_c00321{left:160.000000pt;}
.x11_c00321{left:169.600000pt;}
.x2e_c00321{left:197.760000pt;}
.xd_c00321{left:199.040000pt;}
.x3b_c00321{left:206.080000pt;}
.x2b_c00321{left:207.360000pt;}
.x12_c00321{left:208.640000pt;}
.x29_c00321{left:236.160000pt;}
.x19_c00321{left:245.760000pt;}
.x16_c00321{left:247.040000pt;}
.x3_c00321{left:255.360000pt;}
.x28_c00321{left:265.600000pt;}
.x2f_c00321{left:275.840000pt;}
.x3a_c00321{left:284.160000pt;}
.x1a_c00321{left:285.440000pt;}
.x23_c00321{left:293.760000pt;}
.x4_c00321{left:295.680000pt;}
.x1f_c00321{left:304.640000pt;}
.x30_c00321{left:312.960000pt;}
.xe_c00321{left:314.240000pt;}
.x2c_c00321{left:331.520000pt;}
.x1b_c00321{left:333.440000pt;}
.x20_c00321{left:341.760000pt;}
.xf_c00321{left:362.240000pt;}
.x2d_c00321{left:370.560000pt;}
.x35_c00321{left:380.160000pt;}
.x24_c00321{left:381.440000pt;}
.x31_c00321{left:408.960000pt;}
.x36_c00321{left:426.240000pt;}
.x13_c00321{left:437.760000pt;}
.x1c_c00321{left:447.360000pt;}
.x14_c00321{left:448.640000pt;}
.x21_c00321{left:456.960000pt;}
.x37_c00321{left:465.920000pt;}
.x26_c00321{left:476.160000pt;}
.x32_c00321{left:485.120000pt;}
.x1d_c00321{left:486.400000pt;}
.x5_c00321{left:487.680000pt;}
.x9_c00321{left:496.640000pt;}
.x38_c00321{left:513.920000pt;}
.xc_c00321{left:515.200000pt;}
.x27_c00321{left:518.400000pt;}
.x6_c00321{left:525.440000pt;}
.x3d_c00321{left:541.440000pt;}
.x33_c00321{left:542.720000pt;}
.x10_c00321{left:544.000000pt;}
.x3e_c00321{left:571.520000pt;}
.x1e_c00321{left:572.800000pt;}
.x7_c00321{left:574.080000pt;}
.x34_c00321{left:580.480000pt;}
.x22_c00321{left:581.760000pt;}
.x8_c00321{left:602.880000pt;}
.x2a_c00321{left:609.280000pt;}
.x17_c00321{left:610.560000pt;}
.xa_c00321{left:611.840000pt;}
.x25_c00321{left:628.480000pt;}
.xb_c00321{left:629.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_02bac2f907d5e5ab35ef9ad5.woff2')format("woff");}.ff1_c00322{font-family:ff1_c00322;line-height:1.109863;font-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_c00322{transform:matrix(0.176475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176475,0.000000,0.000000,0.250000,0,0);}
.m3b_c00322{transform:matrix(0.180600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180600,0.000000,0.000000,0.250000,0,0);}
.m4_c00322{transform:matrix(0.204125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204125,0.000000,0.000000,0.250000,0,0);}
.m1e_c00322{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);}
.m2d_c00322{transform:matrix(0.234125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234125,0.000000,0.000000,0.250000,0,0);}
.m27_c00322{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m21_c00322{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m46_c00322{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);}
.m4a_c00322{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m1_c00322{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);}
.m4b_c00322{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.me_c00322{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);}
.m37_c00322{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);}
.m33_c00322{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m23_c00322{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);}
.m44_c00322{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00322{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m14_c00322{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00322{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m20_c00322{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);}
.m25_c00322{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00322{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m6_c00322{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00322{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00322{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00322{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m48_c00322{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m7_c00322{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m9_c00322{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m10_c00322{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m43_c00322{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m11_c00322{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mf_c00322{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m18_c00322{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m0_c00322{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);}
.m26_c00322{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m47_c00322{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m13_c00322{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m5_c00322{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00322{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00322{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);}
.m31_c00322{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m34_c00322{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00322{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);}
.m28_c00322{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00322{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);}
.m36_c00322{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00322{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00322{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);}
.m19_c00322{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m41_c00322{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m39_c00322{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);}
.m32_c00322{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m30_c00322{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);}
.ma_c00322{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00322{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);}
.md_c00322{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);}
.m2_c00322{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m45_c00322{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m24_c00322{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);}
.m38_c00322{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m29_c00322{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);}
.m16_c00322{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);}
.m12_c00322{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);}
.m17_c00322{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m15_c00322{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00322{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);}
.m3_c00322{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m35_c00322{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.mb_c00322{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m40_c00322{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00322{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m8_c00322{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m42_c00322{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);}
.m49_c00322{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m22_c00322{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.v0_c00322{vertical-align:0.000000px;}
.v1_c00322{vertical-align:11.520000px;}
.ls0_c00322{letter-spacing:0.000000px;}
.sc__c00322{text-shadow:none;}
.sc0_c00322{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00322{-webkit-text-stroke:0px transparent;}
.sc0_c00322{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00322{word-spacing:0.000000px;}
.ws1_c00322{word-spacing:10.264683px;}
.ws0_c00322{word-spacing:537.015120px;}
.fc0_c00322{color:transparent;}
.fs9_c00322{font-size:34.560000px;}
.fsc_c00322{font-size:40.320000px;}
.fs3_c00322{font-size:43.200000px;}
.fs10_c00322{font-size:46.080000px;}
.fs8_c00322{font-size:48.960000px;}
.fs2_c00322{font-size:51.840000px;}
.fse_c00322{font-size:54.720000px;}
.fsd_c00322{font-size:57.600000px;}
.fsb_c00322{font-size:60.480000px;}
.fs4_c00322{font-size:63.360000px;}
.fs0_c00322{font-size:66.240000px;}
.fs7_c00322{font-size:69.120000px;}
.fsa_c00322{font-size:72.000000px;}
.fs1_c00322{font-size:74.880000px;}
.fs6_c00322{font-size:77.760000px;}
.fsf_c00322{font-size:97.920000px;}
.fs5_c00322{font-size:103.680000px;}
.y0_c00322{bottom:0.000000px;}
.y63_c00322{bottom:107.280000px;}
.y6d_c00322{bottom:108.720000px;}
.y6c_c00322{bottom:110.160000px;}
.y62_c00322{bottom:110.880000px;}
.y61_c00322{bottom:111.600000px;}
.y60_c00322{bottom:151.200000px;}
.y5d_c00322{bottom:154.080000px;}
.y5f_c00322{bottom:155.520000px;}
.y5e_c00322{bottom:156.240000px;}
.y5c_c00322{bottom:195.120000px;}
.y6b_c00322{bottom:196.560000px;}
.y5b_c00322{bottom:198.000000px;}
.y58_c00322{bottom:238.320000px;}
.y5a_c00322{bottom:239.040000px;}
.y57_c00322{bottom:240.480000px;}
.y59_c00322{bottom:241.920000px;}
.y6a_c00322{bottom:243.360000px;}
.y55_c00322{bottom:281.520000px;}
.y56_c00322{bottom:282.240000px;}
.y68_c00322{bottom:283.680000px;}
.y67_c00322{bottom:284.400000px;}
.y54_c00322{bottom:285.120000px;}
.y69_c00322{bottom:286.560000px;}
.y52_c00322{bottom:324.720000px;}
.y53_c00322{bottom:326.160000px;}
.y65_c00322{bottom:326.880000px;}
.y51_c00322{bottom:328.320000px;}
.y66_c00322{bottom:330.480000px;}
.y4e_c00322{bottom:367.920000px;}
.y4f_c00322{bottom:369.360000px;}
.y64_c00322{bottom:370.080000px;}
.y4d_c00322{bottom:371.520000px;}
.y50_c00322{bottom:372.240000px;}
.y4c_c00322{bottom:403.920000px;}
.y4b_c00322{bottom:411.120000px;}
.y4a_c00322{bottom:412.560000px;}
.y47_c00322{bottom:414.000000px;}
.y48_c00322{bottom:414.720000px;}
.y49_c00322{bottom:415.440000px;}
.y44_c00322{bottom:454.320000px;}
.y45_c00322{bottom:455.040000px;}
.y46_c00322{bottom:455.760000px;}
.y41_c00322{bottom:456.480000px;}
.y43_c00322{bottom:457.200000px;}
.y42_c00322{bottom:457.920000px;}
.y3d_c00322{bottom:496.800000px;}
.y3f_c00322{bottom:497.520000px;}
.y40_c00322{bottom:498.960000px;}
.y3b_c00322{bottom:499.680000px;}
.y3e_c00322{bottom:500.400000px;}
.y3c_c00322{bottom:501.120000px;}
.y3a_c00322{bottom:540.000000px;}
.y38_c00322{bottom:542.160000px;}
.y39_c00322{bottom:544.320000px;}
.y36_c00322{bottom:582.480000px;}
.y33_c00322{bottom:584.640000px;}
.y37_c00322{bottom:585.360000px;}
.y35_c00322{bottom:586.800000px;}
.y34_c00322{bottom:587.520000px;}
.y31_c00322{bottom:628.560000px;}
.y32_c00322{bottom:629.280000px;}
.y30_c00322{bottom:630.720000px;}
.y2d_c00322{bottom:672.480000px;}
.y2b_c00322{bottom:680.400000px;}
.y2e_c00322{bottom:681.120000px;}
.y2a_c00322{bottom:681.840000px;}
.y2f_c00322{bottom:683.280000px;}
.y2c_c00322{bottom:684.000000px;}
.y28_c00322{bottom:714.960000px;}
.y25_c00322{bottom:723.600000px;}
.y24_c00322{bottom:725.040000px;}
.y26_c00322{bottom:725.760000px;}
.y29_c00322{bottom:727.200000px;}
.y27_c00322{bottom:727.920000px;}
.y1a_c00322{bottom:766.800000px;}
.y19_c00322{bottom:768.240000px;}
.y16_c00322{bottom:799.200000px;}
.y15_c00322{bottom:800.640000px;}
.y18_c00322{bottom:802.080000px;}
.y17_c00322{bottom:802.800000px;}
.y14_c00322{bottom:841.680000px;}
.y12_c00322{bottom:842.400000px;}
.y10_c00322{bottom:843.120000px;}
.y13_c00322{bottom:843.840000px;}
.y11_c00322{bottom:846.000000px;}
.y23_c00322{bottom:885.600000px;}
.yf_c00322{bottom:886.320000px;}
.y22_c00322{bottom:887.040000px;}
.ye_c00322{bottom:928.800000px;}
.y20_c00322{bottom:929.520000px;}
.yc_c00322{bottom:930.240000px;}
.y21_c00322{bottom:932.400000px;}
.yd_c00322{bottom:933.120000px;}
.yb_c00322{bottom:972.000000px;}
.y8_c00322{bottom:972.720000px;}
.y1e_c00322{bottom:973.440000px;}
.y1f_c00322{bottom:974.160000px;}
.y9_c00322{bottom:975.600000px;}
.ya_c00322{bottom:976.320000px;}
.y6_c00322{bottom:1014.480000px;}
.y1d_c00322{bottom:1015.200000px;}
.y5_c00322{bottom:1015.920000px;}
.y7_c00322{bottom:1018.800000px;}
.y4_c00322{bottom:1049.760000px;}
.y2_c00322{bottom:1056.960000px;}
.y1_c00322{bottom:1058.400000px;}
.y1c_c00322{bottom:1059.120000px;}
.y3_c00322{bottom:1060.560000px;}
.y1b_c00322{bottom:1113.840000px;}
.hb_c00322{height:31.100625px;}
.he_c00322{height:36.284062px;}
.h5_c00322{height:38.875781px;}
.h12_c00322{height:41.467500px;}
.ha_c00322{height:44.059219px;}
.h4_c00322{height:46.650937px;}
.h10_c00322{height:49.242656px;}
.hf_c00322{height:51.834375px;}
.hd_c00322{height:54.426094px;}
.h6_c00322{height:57.017812px;}
.h2_c00322{height:59.609531px;}
.h9_c00322{height:62.201250px;}
.hc_c00322{height:64.792969px;}
.h3_c00322{height:67.384687px;}
.h8_c00322{height:69.976406px;}
.h11_c00322{height:88.118437px;}
.h7_c00322{height:93.301875px;}
.h1_c00322{height:1164.000000px;}
.h0_c00322{height:1164.240000px;}
.w0_c00322{width:762.480000px;}
.w1_c00322{width:762.750000px;}
.x0_c00322{left:0.000000px;}
.x1_c00322{left:59.760000px;}
.x27_c00322{left:61.200000px;}
.x33_c00322{left:62.639400px;}
.x22_c00322{left:113.040000px;}
.x2_c00322{left:133.200000px;}
.x7_c00322{left:134.640000px;}
.x28_c00322{left:175.680000px;}
.xc_c00322{left:177.120000px;}
.xa_c00322{left:178.560000px;}
.x12_c00322{left:209.520000px;}
.xb_c00322{left:221.040000px;}
.x3_c00322{left:231.120000px;}
.x2d_c00322{left:252.720000px;}
.x23_c00322{left:275.040000px;}
.x4_c00322{left:285.840000px;}
.x1c_c00322{left:296.640000px;}
.x2e_c00322{left:306.720000px;}
.x8_c00322{left:318.240000px;}
.x31_c00322{left:321.120000px;}
.x5_c00322{left:329.040000px;}
.x32_c00322{left:339.120000px;}
.x20_c00322{left:340.560000px;}
.xe_c00322{left:349.920000px;}
.x29_c00322{left:360.000000px;}
.x24_c00322{left:372.960000px;}
.xf_c00322{left:393.840000px;}
.xd_c00322{left:403.920000px;}
.x6_c00322{left:415.440000px;}
.x2f_c00322{left:436.320000px;}
.x10_c00322{left:447.840000px;}
.x25_c00322{left:457.920000px;}
.x9_c00322{left:468.720000px;}
.x30_c00322{left:479.520000px;}
.x11_c00322{left:490.320000px;}
.x26_c00322{left:501.840000px;}
.x1d_c00322{left:523.440000px;}
.x2a_c00322{left:533.520000px;}
.x21_c00322{left:576.720000px;}
.x14_c00322{left:578.160000px;}
.x35_c00322{left:586.800000px;}
.x17_c00322{left:588.240000px;}
.x34_c00322{left:609.120000px;}
.x19_c00322{left:610.560000px;}
.x2b_c00322{left:631.440000px;}
.x1e_c00322{left:641.520000px;}
.x18_c00322{left:642.960000px;}
.x15_c00322{left:653.040000px;}
.x2c_c00322{left:672.480000px;}
.x1f_c00322{left:674.640000px;}
.x13_c00322{left:683.280000px;}
.x1b_c00322{left:684.720000px;}
.x16_c00322{left:686.160000px;}
.x1a_c00322{left:704.880000px;}
@media print{
.v0_c00322{vertical-align:0.000000pt;}
.v1_c00322{vertical-align:10.240000pt;}
.ls0_c00322{letter-spacing:0.000000pt;}
.ws2_c00322{word-spacing:0.000000pt;}
.ws1_c00322{word-spacing:9.124163pt;}
.ws0_c00322{word-spacing:477.346773pt;}
.fs9_c00322{font-size:30.720000pt;}
.fsc_c00322{font-size:35.840000pt;}
.fs3_c00322{font-size:38.400000pt;}
.fs10_c00322{font-size:40.960000pt;}
.fs8_c00322{font-size:43.520000pt;}
.fs2_c00322{font-size:46.080000pt;}
.fse_c00322{font-size:48.640000pt;}
.fsd_c00322{font-size:51.200000pt;}
.fsb_c00322{font-size:53.760000pt;}
.fs4_c00322{font-size:56.320000pt;}
.fs0_c00322{font-size:58.880000pt;}
.fs7_c00322{font-size:61.440000pt;}
.fsa_c00322{font-size:64.000000pt;}
.fs1_c00322{font-size:66.560000pt;}
.fs6_c00322{font-size:69.120000pt;}
.fsf_c00322{font-size:87.040000pt;}
.fs5_c00322{font-size:92.160000pt;}
.y0_c00322{bottom:0.000000pt;}
.y63_c00322{bottom:95.360000pt;}
.y6d_c00322{bottom:96.640000pt;}
.y6c_c00322{bottom:97.920000pt;}
.y62_c00322{bottom:98.560000pt;}
.y61_c00322{bottom:99.200000pt;}
.y60_c00322{bottom:134.400000pt;}
.y5d_c00322{bottom:136.960000pt;}
.y5f_c00322{bottom:138.240000pt;}
.y5e_c00322{bottom:138.880000pt;}
.y5c_c00322{bottom:173.440000pt;}
.y6b_c00322{bottom:174.720000pt;}
.y5b_c00322{bottom:176.000000pt;}
.y58_c00322{bottom:211.840000pt;}
.y5a_c00322{bottom:212.480000pt;}
.y57_c00322{bottom:213.760000pt;}
.y59_c00322{bottom:215.040000pt;}
.y6a_c00322{bottom:216.320000pt;}
.y55_c00322{bottom:250.240000pt;}
.y56_c00322{bottom:250.880000pt;}
.y68_c00322{bottom:252.160000pt;}
.y67_c00322{bottom:252.800000pt;}
.y54_c00322{bottom:253.440000pt;}
.y69_c00322{bottom:254.720000pt;}
.y52_c00322{bottom:288.640000pt;}
.y53_c00322{bottom:289.920000pt;}
.y65_c00322{bottom:290.560000pt;}
.y51_c00322{bottom:291.840000pt;}
.y66_c00322{bottom:293.760000pt;}
.y4e_c00322{bottom:327.040000pt;}
.y4f_c00322{bottom:328.320000pt;}
.y64_c00322{bottom:328.960000pt;}
.y4d_c00322{bottom:330.240000pt;}
.y50_c00322{bottom:330.880000pt;}
.y4c_c00322{bottom:359.040000pt;}
.y4b_c00322{bottom:365.440000pt;}
.y4a_c00322{bottom:366.720000pt;}
.y47_c00322{bottom:368.000000pt;}
.y48_c00322{bottom:368.640000pt;}
.y49_c00322{bottom:369.280000pt;}
.y44_c00322{bottom:403.840000pt;}
.y45_c00322{bottom:404.480000pt;}
.y46_c00322{bottom:405.120000pt;}
.y41_c00322{bottom:405.760000pt;}
.y43_c00322{bottom:406.400000pt;}
.y42_c00322{bottom:407.040000pt;}
.y3d_c00322{bottom:441.600000pt;}
.y3f_c00322{bottom:442.240000pt;}
.y40_c00322{bottom:443.520000pt;}
.y3b_c00322{bottom:444.160000pt;}
.y3e_c00322{bottom:444.800000pt;}
.y3c_c00322{bottom:445.440000pt;}
.y3a_c00322{bottom:480.000000pt;}
.y38_c00322{bottom:481.920000pt;}
.y39_c00322{bottom:483.840000pt;}
.y36_c00322{bottom:517.760000pt;}
.y33_c00322{bottom:519.680000pt;}
.y37_c00322{bottom:520.320000pt;}
.y35_c00322{bottom:521.600000pt;}
.y34_c00322{bottom:522.240000pt;}
.y31_c00322{bottom:558.720000pt;}
.y32_c00322{bottom:559.360000pt;}
.y30_c00322{bottom:560.640000pt;}
.y2d_c00322{bottom:597.760000pt;}
.y2b_c00322{bottom:604.800000pt;}
.y2e_c00322{bottom:605.440000pt;}
.y2a_c00322{bottom:606.080000pt;}
.y2f_c00322{bottom:607.360000pt;}
.y2c_c00322{bottom:608.000000pt;}
.y28_c00322{bottom:635.520000pt;}
.y25_c00322{bottom:643.200000pt;}
.y24_c00322{bottom:644.480000pt;}
.y26_c00322{bottom:645.120000pt;}
.y29_c00322{bottom:646.400000pt;}
.y27_c00322{bottom:647.040000pt;}
.y1a_c00322{bottom:681.600000pt;}
.y19_c00322{bottom:682.880000pt;}
.y16_c00322{bottom:710.400000pt;}
.y15_c00322{bottom:711.680000pt;}
.y18_c00322{bottom:712.960000pt;}
.y17_c00322{bottom:713.600000pt;}
.y14_c00322{bottom:748.160000pt;}
.y12_c00322{bottom:748.800000pt;}
.y10_c00322{bottom:749.440000pt;}
.y13_c00322{bottom:750.080000pt;}
.y11_c00322{bottom:752.000000pt;}
.y23_c00322{bottom:787.200000pt;}
.yf_c00322{bottom:787.840000pt;}
.y22_c00322{bottom:788.480000pt;}
.ye_c00322{bottom:825.600000pt;}
.y20_c00322{bottom:826.240000pt;}
.yc_c00322{bottom:826.880000pt;}
.y21_c00322{bottom:828.800000pt;}
.yd_c00322{bottom:829.440000pt;}
.yb_c00322{bottom:864.000000pt;}
.y8_c00322{bottom:864.640000pt;}
.y1e_c00322{bottom:865.280000pt;}
.y1f_c00322{bottom:865.920000pt;}
.y9_c00322{bottom:867.200000pt;}
.ya_c00322{bottom:867.840000pt;}
.y6_c00322{bottom:901.760000pt;}
.y1d_c00322{bottom:902.400000pt;}
.y5_c00322{bottom:903.040000pt;}
.y7_c00322{bottom:905.600000pt;}
.y4_c00322{bottom:933.120000pt;}
.y2_c00322{bottom:939.520000pt;}
.y1_c00322{bottom:940.800000pt;}
.y1c_c00322{bottom:941.440000pt;}
.y3_c00322{bottom:942.720000pt;}
.y1b_c00322{bottom:990.080000pt;}
.hb_c00322{height:27.645000pt;}
.he_c00322{height:32.252500pt;}
.h5_c00322{height:34.556250pt;}
.h12_c00322{height:36.860000pt;}
.ha_c00322{height:39.163750pt;}
.h4_c00322{height:41.467500pt;}
.h10_c00322{height:43.771250pt;}
.hf_c00322{height:46.075000pt;}
.hd_c00322{height:48.378750pt;}
.h6_c00322{height:50.682500pt;}
.h2_c00322{height:52.986250pt;}
.h9_c00322{height:55.290000pt;}
.hc_c00322{height:57.593750pt;}
.h3_c00322{height:59.897500pt;}
.h8_c00322{height:62.201250pt;}
.h11_c00322{height:78.327500pt;}
.h7_c00322{height:82.935000pt;}
.h1_c00322{height:1034.666667pt;}
.h0_c00322{height:1034.880000pt;}
.w0_c00322{width:677.760000pt;}
.w1_c00322{width:678.000000pt;}
.x0_c00322{left:0.000000pt;}
.x1_c00322{left:53.120000pt;}
.x27_c00322{left:54.400000pt;}
.x33_c00322{left:55.679467pt;}
.x22_c00322{left:100.480000pt;}
.x2_c00322{left:118.400000pt;}
.x7_c00322{left:119.680000pt;}
.x28_c00322{left:156.160000pt;}
.xc_c00322{left:157.440000pt;}
.xa_c00322{left:158.720000pt;}
.x12_c00322{left:186.240000pt;}
.xb_c00322{left:196.480000pt;}
.x3_c00322{left:205.440000pt;}
.x2d_c00322{left:224.640000pt;}
.x23_c00322{left:244.480000pt;}
.x4_c00322{left:254.080000pt;}
.x1c_c00322{left:263.680000pt;}
.x2e_c00322{left:272.640000pt;}
.x8_c00322{left:282.880000pt;}
.x31_c00322{left:285.440000pt;}
.x5_c00322{left:292.480000pt;}
.x32_c00322{left:301.440000pt;}
.x20_c00322{left:302.720000pt;}
.xe_c00322{left:311.040000pt;}
.x29_c00322{left:320.000000pt;}
.x24_c00322{left:331.520000pt;}
.xf_c00322{left:350.080000pt;}
.xd_c00322{left:359.040000pt;}
.x6_c00322{left:369.280000pt;}
.x2f_c00322{left:387.840000pt;}
.x10_c00322{left:398.080000pt;}
.x25_c00322{left:407.040000pt;}
.x9_c00322{left:416.640000pt;}
.x30_c00322{left:426.240000pt;}
.x11_c00322{left:435.840000pt;}
.x26_c00322{left:446.080000pt;}
.x1d_c00322{left:465.280000pt;}
.x2a_c00322{left:474.240000pt;}
.x21_c00322{left:512.640000pt;}
.x14_c00322{left:513.920000pt;}
.x35_c00322{left:521.600000pt;}
.x17_c00322{left:522.880000pt;}
.x34_c00322{left:541.440000pt;}
.x19_c00322{left:542.720000pt;}
.x2b_c00322{left:561.280000pt;}
.x1e_c00322{left:570.240000pt;}
.x18_c00322{left:571.520000pt;}
.x15_c00322{left:580.480000pt;}
.x2c_c00322{left:597.760000pt;}
.x1f_c00322{left:599.680000pt;}
.x13_c00322{left:607.360000pt;}
.x1b_c00322{left:608.640000pt;}
.x16_c00322{left:609.920000pt;}
.x1a_c00322{left:626.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_dd53ce16ca1fd8c5c50de0f2.woff2')format("woff");}.ff1_c00323{font-family:ff1_c00323;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m49_c00323{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00323{transform:matrix(0.234050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234050,0.000000,0.000000,0.250000,0,0);}
.m23_c00323{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m2f_c00323{transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);}
.md_c00323{transform:matrix(0.249725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249725,0.000000,0.000000,0.250000,0,0);}
.m46_c00323{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);}
.m18_c00323{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m24_c00323{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);}
.m45_c00323{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m3_c00323{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_c00323{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m2_c00323{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);}
.m31_c00323{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);}
.m3e_c00323{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00323{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m33_c00323{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m30_c00323{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m26_c00323{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mc_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);}
.m22_c00323{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m48_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);}
.m27_c00323{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m28_c00323{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m35_c00323{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m20_c00323{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00323{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m9_c00323{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mb_c00323{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m29_c00323{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m0_c00323{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00323{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.ma_c00323{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m13_c00323{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1_c00323{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);}
.m44_c00323{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m10_c00323{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m17_c00323{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);}
.m2b_c00323{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m7_c00323{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m19_c00323{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);}
.m4a_c00323{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m39_c00323{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);}
.m42_c00323{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m5_c00323{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00323{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m40_c00323{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);}
.m2a_c00323{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);}
.m2c_c00323{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m36_c00323{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);}
.m1d_c00323{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);}
.m1c_c00323{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.mf_c00323{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m25_c00323{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m12_c00323{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);}
.m37_c00323{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);}
.m1f_c00323{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m32_c00323{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);}
.me_c00323{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00323{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m16_c00323{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00323{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);}
.m41_c00323{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m43_c00323{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);}
.m2e_c00323{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);}
.m11_c00323{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m4_c00323{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m15_c00323{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00323{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m14_c00323{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);}
.m6_c00323{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00323{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);}
.m34_c00323{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m38_c00323{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m21_c00323{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m47_c00323{transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);}
.v1_c00323{vertical-align:-2.880000px;}
.v0_c00323{vertical-align:0.000000px;}
.ls0_c00323{letter-spacing:0.000000px;}
.sc__c00323{text-shadow:none;}
.sc0_c00323{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00323{-webkit-text-stroke:0px transparent;}
.sc0_c00323{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00323{word-spacing:0.000000px;}
.ws0_c00323{word-spacing:56.652000px;}
.fc0_c00323{color:transparent;}
.fsa_c00323{font-size:37.440000px;}
.fsc_c00323{font-size:40.320000px;}
.fs9_c00323{font-size:46.080000px;}
.fs5_c00323{font-size:48.960000px;}
.fs1_c00323{font-size:51.840000px;}
.fsb_c00323{font-size:54.720000px;}
.fs6_c00323{font-size:57.600000px;}
.fs7_c00323{font-size:60.480000px;}
.fs4_c00323{font-size:63.360000px;}
.fsd_c00323{font-size:66.240000px;}
.fs0_c00323{font-size:69.120000px;}
.fs8_c00323{font-size:72.000000px;}
.fs3_c00323{font-size:74.880000px;}
.fs2_c00323{font-size:77.760000px;}
.y0_c00323{bottom:0.000000px;}
.y6e_c00323{bottom:45.360000px;}
.y70_c00323{bottom:48.960000px;}
.y6f_c00323{bottom:49.680000px;}
.y6d_c00323{bottom:51.120000px;}
.y71_c00323{bottom:51.840000px;}
.y6a_c00323{bottom:90.720000px;}
.y6c_c00323{bottom:92.160000px;}
.y6b_c00323{bottom:92.880000px;}
.y65_c00323{bottom:121.680000px;}
.y66_c00323{bottom:122.400000px;}
.y67_c00323{bottom:123.120000px;}
.y68_c00323{bottom:123.840000px;}
.y63_c00323{bottom:124.560000px;}
.y64_c00323{bottom:125.280000px;}
.y69_c00323{bottom:126.720000px;}
.y61_c00323{bottom:164.160000px;}
.y60_c00323{bottom:167.040000px;}
.y62_c00323{bottom:167.760000px;}
.y5b_c00323{bottom:206.640000px;}
.y5a_c00323{bottom:209.520000px;}
.y5d_c00323{bottom:210.240000px;}
.y5c_c00323{bottom:211.680000px;}
.y5f_c00323{bottom:212.400000px;}
.y5e_c00323{bottom:213.120000px;}
.y57_c00323{bottom:250.560000px;}
.y59_c00323{bottom:252.720000px;}
.y58_c00323{bottom:253.440000px;}
.y56_c00323{bottom:254.160000px;}
.y51_c00323{bottom:293.040000px;}
.y52_c00323{bottom:293.760000px;}
.y55_c00323{bottom:295.920000px;}
.y53_c00323{bottom:296.640000px;}
.y50_c00323{bottom:297.360000px;}
.y54_c00323{bottom:298.080000px;}
.y4c_c00323{bottom:336.240000px;}
.y4d_c00323{bottom:337.680000px;}
.y4f_c00323{bottom:339.120000px;}
.y4b_c00323{bottom:339.840000px;}
.y4e_c00323{bottom:340.560000px;}
.y4a_c00323{bottom:379.440000px;}
.y49_c00323{bottom:383.040000px;}
.y44_c00323{bottom:411.840000px;}
.y46_c00323{bottom:413.280000px;}
.y43_c00323{bottom:414.000000px;}
.y47_c00323{bottom:414.720000px;}
.y45_c00323{bottom:415.440000px;}
.y48_c00323{bottom:416.160000px;}
.y41_c00323{bottom:455.760000px;}
.y42_c00323{bottom:457.200000px;}
.y3e_c00323{bottom:457.920000px;}
.y40_c00323{bottom:458.640000px;}
.y3f_c00323{bottom:460.080000px;}
.y3a_c00323{bottom:498.960000px;}
.y3c_c00323{bottom:500.400000px;}
.y39_c00323{bottom:501.120000px;}
.y3d_c00323{bottom:502.560000px;}
.y3b_c00323{bottom:503.280000px;}
.y37_c00323{bottom:544.320000px;}
.y38_c00323{bottom:545.040000px;}
.y36_c00323{bottom:547.200000px;}
.y35_c00323{bottom:596.160000px;}
.y27_c00323{bottom:597.600000px;}
.y28_c00323{bottom:598.320000px;}
.y33_c00323{bottom:639.360000px;}
.y25_c00323{bottom:640.800000px;}
.y26_c00323{bottom:641.520000px;}
.y34_c00323{bottom:643.680000px;}
.y32_c00323{bottom:682.560000px;}
.y22_c00323{bottom:683.280000px;}
.y24_c00323{bottom:684.000000px;}
.y23_c00323{bottom:686.160000px;}
.y31_c00323{bottom:725.760000px;}
.y20_c00323{bottom:726.480000px;}
.y1f_c00323{bottom:727.200000px;}
.y21_c00323{bottom:728.640000px;}
.y30_c00323{bottom:729.360000px;}
.y2f_c00323{bottom:768.240000px;}
.y1d_c00323{bottom:768.960000px;}
.y1e_c00323{bottom:769.680000px;}
.y2e_c00323{bottom:770.400000px;}
.y2c_c00323{bottom:810.720000px;}
.y2d_c00323{bottom:811.440000px;}
.y1b_c00323{bottom:812.160000px;}
.y1c_c00323{bottom:812.880000px;}
.y2a_c00323{bottom:854.640000px;}
.y29_c00323{bottom:855.360000px;}
.y19_c00323{bottom:856.080000px;}
.y2b_c00323{bottom:857.520000px;}
.y1a_c00323{bottom:858.240000px;}
.y14_c00323{bottom:898.560000px;}
.y17_c00323{bottom:899.280000px;}
.y15_c00323{bottom:900.000000px;}
.y18_c00323{bottom:900.720000px;}
.y16_c00323{bottom:901.440000px;}
.yf_c00323{bottom:941.760000px;}
.y10_c00323{bottom:942.480000px;}
.y11_c00323{bottom:943.920000px;}
.y12_c00323{bottom:944.640000px;}
.yb_c00323{bottom:972.720000px;}
.ye_c00323{bottom:973.440000px;}
.ya_c00323{bottom:974.160000px;}
.yd_c00323{bottom:974.880000px;}
.yc_c00323{bottom:976.320000px;}
.y13_c00323{bottom:977.040000px;}
.y5_c00323{bottom:1016.640000px;}
.y7_c00323{bottom:1017.360000px;}
.y6_c00323{bottom:1020.240000px;}
.y3_c00323{bottom:1048.320000px;}
.y1_c00323{bottom:1049.760000px;}
.y8_c00323{bottom:1050.480000px;}
.y4_c00323{bottom:1051.920000px;}
.y9_c00323{bottom:1052.640000px;}
.y2_c00323{bottom:1053.360000px;}
.hc_c00323{height:33.692344px;}
.he_c00323{height:36.284062px;}
.hb_c00323{height:41.467500px;}
.h7_c00323{height:44.059219px;}
.h3_c00323{height:46.650937px;}
.hd_c00323{height:49.242656px;}
.h8_c00323{height:51.834375px;}
.h9_c00323{height:54.426094px;}
.h6_c00323{height:57.017812px;}
.hf_c00323{height:59.321250px;}
.h10_c00323{height:59.609531px;}
.h2_c00323{height:62.201250px;}
.ha_c00323{height:64.792969px;}
.h5_c00323{height:67.384687px;}
.h4_c00323{height:69.976406px;}
.h1_c00323{height:1166.250000px;}
.h0_c00323{height:1166.400000px;}
.w0_c00323{width:764.640000px;}
.w1_c00323{width:765.000000px;}
.x0_c00323{left:0.000000px;}
.x6_c00323{left:60.480000px;}
.x1_c00323{left:61.920000px;}
.x31_c00323{left:63.360000px;}
.x33_c00323{left:64.800000px;}
.x7_c00323{left:115.200000px;}
.x2_c00323{left:135.360000px;}
.x15_c00323{left:136.800000px;}
.x34_c00323{left:170.640000px;}
.x3_c00323{left:179.280000px;}
.x38_c00323{left:187.920000px;}
.x28_c00323{left:190.080000px;}
.x11_c00323{left:200.880000px;}
.x24_c00323{left:210.240000px;}
.x2b_c00323{left:221.040000px;}
.x27_c00323{left:222.480000px;}
.x16_c00323{left:233.280000px;}
.xc_c00323{left:255.600000px;}
.x2c_c00323{left:266.400000px;}
.x21_c00323{left:276.480000px;}
.x39_c00323{left:285.840000px;}
.x17_c00323{left:287.280000px;}
.x29_c00323{left:289.440000px;}
.x2d_c00323{left:298.080000px;}
.x12_c00323{left:299.520000px;}
.x23_c00323{left:329.760000px;}
.x4_c00323{left:331.200000px;}
.xd_c00323{left:341.280000px;}
.x2e_c00323{left:352.080000px;}
.x18_c00323{left:374.400000px;}
.x35_c00323{left:393.840000px;}
.xe_c00323{left:396.000000px;}
.x22_c00323{left:417.600000px;}
.x19_c00323{left:429.120000px;}
.x13_c00323{left:439.920000px;}
.x5_c00323{left:472.320000px;}
.xf_c00323{left:492.480000px;}
.x14_c00323{left:494.640000px;}
.x10_c00323{left:537.120000px;}
.x2a_c00323{left:546.480000px;}
.x25_c00323{left:548.640000px;}
.x2f_c00323{left:557.280000px;}
.x8_c00323{left:559.440000px;}
.x1b_c00323{left:580.320000px;}
.x1e_c00323{left:589.680000px;}
.x1c_c00323{left:591.120000px;}
.x36_c00323{left:609.840000px;}
.x26_c00323{left:611.280000px;}
.x9_c00323{left:613.440000px;}
.x37_c00323{left:642.960000px;}
.x1f_c00323{left:644.400000px;}
.xa_c00323{left:645.840000px;}
.x1d_c00323{left:656.640000px;}
.x20_c00323{left:677.520000px;}
.x30_c00323{left:686.160000px;}
.xb_c00323{left:687.600000px;}
.x32_c00323{left:706.320000px;}
.x1a_c00323{left:708.480000px;}
@media print{
.v1_c00323{vertical-align:-2.560000pt;}
.v0_c00323{vertical-align:0.000000pt;}
.ls0_c00323{letter-spacing:0.000000pt;}
.ws1_c00323{word-spacing:0.000000pt;}
.ws0_c00323{word-spacing:50.357333pt;}
.fsa_c00323{font-size:33.280000pt;}
.fsc_c00323{font-size:35.840000pt;}
.fs9_c00323{font-size:40.960000pt;}
.fs5_c00323{font-size:43.520000pt;}
.fs1_c00323{font-size:46.080000pt;}
.fsb_c00323{font-size:48.640000pt;}
.fs6_c00323{font-size:51.200000pt;}
.fs7_c00323{font-size:53.760000pt;}
.fs4_c00323{font-size:56.320000pt;}
.fsd_c00323{font-size:58.880000pt;}
.fs0_c00323{font-size:61.440000pt;}
.fs8_c00323{font-size:64.000000pt;}
.fs3_c00323{font-size:66.560000pt;}
.fs2_c00323{font-size:69.120000pt;}
.y0_c00323{bottom:0.000000pt;}
.y6e_c00323{bottom:40.320000pt;}
.y70_c00323{bottom:43.520000pt;}
.y6f_c00323{bottom:44.160000pt;}
.y6d_c00323{bottom:45.440000pt;}
.y71_c00323{bottom:46.080000pt;}
.y6a_c00323{bottom:80.640000pt;}
.y6c_c00323{bottom:81.920000pt;}
.y6b_c00323{bottom:82.560000pt;}
.y65_c00323{bottom:108.160000pt;}
.y66_c00323{bottom:108.800000pt;}
.y67_c00323{bottom:109.440000pt;}
.y68_c00323{bottom:110.080000pt;}
.y63_c00323{bottom:110.720000pt;}
.y64_c00323{bottom:111.360000pt;}
.y69_c00323{bottom:112.640000pt;}
.y61_c00323{bottom:145.920000pt;}
.y60_c00323{bottom:148.480000pt;}
.y62_c00323{bottom:149.120000pt;}
.y5b_c00323{bottom:183.680000pt;}
.y5a_c00323{bottom:186.240000pt;}
.y5d_c00323{bottom:186.880000pt;}
.y5c_c00323{bottom:188.160000pt;}
.y5f_c00323{bottom:188.800000pt;}
.y5e_c00323{bottom:189.440000pt;}
.y57_c00323{bottom:222.720000pt;}
.y59_c00323{bottom:224.640000pt;}
.y58_c00323{bottom:225.280000pt;}
.y56_c00323{bottom:225.920000pt;}
.y51_c00323{bottom:260.480000pt;}
.y52_c00323{bottom:261.120000pt;}
.y55_c00323{bottom:263.040000pt;}
.y53_c00323{bottom:263.680000pt;}
.y50_c00323{bottom:264.320000pt;}
.y54_c00323{bottom:264.960000pt;}
.y4c_c00323{bottom:298.880000pt;}
.y4d_c00323{bottom:300.160000pt;}
.y4f_c00323{bottom:301.440000pt;}
.y4b_c00323{bottom:302.080000pt;}
.y4e_c00323{bottom:302.720000pt;}
.y4a_c00323{bottom:337.280000pt;}
.y49_c00323{bottom:340.480000pt;}
.y44_c00323{bottom:366.080000pt;}
.y46_c00323{bottom:367.360000pt;}
.y43_c00323{bottom:368.000000pt;}
.y47_c00323{bottom:368.640000pt;}
.y45_c00323{bottom:369.280000pt;}
.y48_c00323{bottom:369.920000pt;}
.y41_c00323{bottom:405.120000pt;}
.y42_c00323{bottom:406.400000pt;}
.y3e_c00323{bottom:407.040000pt;}
.y40_c00323{bottom:407.680000pt;}
.y3f_c00323{bottom:408.960000pt;}
.y3a_c00323{bottom:443.520000pt;}
.y3c_c00323{bottom:444.800000pt;}
.y39_c00323{bottom:445.440000pt;}
.y3d_c00323{bottom:446.720000pt;}
.y3b_c00323{bottom:447.360000pt;}
.y37_c00323{bottom:483.840000pt;}
.y38_c00323{bottom:484.480000pt;}
.y36_c00323{bottom:486.400000pt;}
.y35_c00323{bottom:529.920000pt;}
.y27_c00323{bottom:531.200000pt;}
.y28_c00323{bottom:531.840000pt;}
.y33_c00323{bottom:568.320000pt;}
.y25_c00323{bottom:569.600000pt;}
.y26_c00323{bottom:570.240000pt;}
.y34_c00323{bottom:572.160000pt;}
.y32_c00323{bottom:606.720000pt;}
.y22_c00323{bottom:607.360000pt;}
.y24_c00323{bottom:608.000000pt;}
.y23_c00323{bottom:609.920000pt;}
.y31_c00323{bottom:645.120000pt;}
.y20_c00323{bottom:645.760000pt;}
.y1f_c00323{bottom:646.400000pt;}
.y21_c00323{bottom:647.680000pt;}
.y30_c00323{bottom:648.320000pt;}
.y2f_c00323{bottom:682.880000pt;}
.y1d_c00323{bottom:683.520000pt;}
.y1e_c00323{bottom:684.160000pt;}
.y2e_c00323{bottom:684.800000pt;}
.y2c_c00323{bottom:720.640000pt;}
.y2d_c00323{bottom:721.280000pt;}
.y1b_c00323{bottom:721.920000pt;}
.y1c_c00323{bottom:722.560000pt;}
.y2a_c00323{bottom:759.680000pt;}
.y29_c00323{bottom:760.320000pt;}
.y19_c00323{bottom:760.960000pt;}
.y2b_c00323{bottom:762.240000pt;}
.y1a_c00323{bottom:762.880000pt;}
.y14_c00323{bottom:798.720000pt;}
.y17_c00323{bottom:799.360000pt;}
.y15_c00323{bottom:800.000000pt;}
.y18_c00323{bottom:800.640000pt;}
.y16_c00323{bottom:801.280000pt;}
.yf_c00323{bottom:837.120000pt;}
.y10_c00323{bottom:837.760000pt;}
.y11_c00323{bottom:839.040000pt;}
.y12_c00323{bottom:839.680000pt;}
.yb_c00323{bottom:864.640000pt;}
.ye_c00323{bottom:865.280000pt;}
.ya_c00323{bottom:865.920000pt;}
.yd_c00323{bottom:866.560000pt;}
.yc_c00323{bottom:867.840000pt;}
.y13_c00323{bottom:868.480000pt;}
.y5_c00323{bottom:903.680000pt;}
.y7_c00323{bottom:904.320000pt;}
.y6_c00323{bottom:906.880000pt;}
.y3_c00323{bottom:931.840000pt;}
.y1_c00323{bottom:933.120000pt;}
.y8_c00323{bottom:933.760000pt;}
.y4_c00323{bottom:935.040000pt;}
.y9_c00323{bottom:935.680000pt;}
.y2_c00323{bottom:936.320000pt;}
.hc_c00323{height:29.948750pt;}
.he_c00323{height:32.252500pt;}
.hb_c00323{height:36.860000pt;}
.h7_c00323{height:39.163750pt;}
.h3_c00323{height:41.467500pt;}
.hd_c00323{height:43.771250pt;}
.h8_c00323{height:46.075000pt;}
.h9_c00323{height:48.378750pt;}
.h6_c00323{height:50.682500pt;}
.hf_c00323{height:52.730000pt;}
.h10_c00323{height:52.986250pt;}
.h2_c00323{height:55.290000pt;}
.ha_c00323{height:57.593750pt;}
.h5_c00323{height:59.897500pt;}
.h4_c00323{height:62.201250pt;}
.h1_c00323{height:1036.666667pt;}
.h0_c00323{height:1036.800000pt;}
.w0_c00323{width:679.680000pt;}
.w1_c00323{width:680.000000pt;}
.x0_c00323{left:0.000000pt;}
.x6_c00323{left:53.760000pt;}
.x1_c00323{left:55.040000pt;}
.x31_c00323{left:56.320000pt;}
.x33_c00323{left:57.600000pt;}
.x7_c00323{left:102.400000pt;}
.x2_c00323{left:120.320000pt;}
.x15_c00323{left:121.600000pt;}
.x34_c00323{left:151.680000pt;}
.x3_c00323{left:159.360000pt;}
.x38_c00323{left:167.040000pt;}
.x28_c00323{left:168.960000pt;}
.x11_c00323{left:178.560000pt;}
.x24_c00323{left:186.880000pt;}
.x2b_c00323{left:196.480000pt;}
.x27_c00323{left:197.760000pt;}
.x16_c00323{left:207.360000pt;}
.xc_c00323{left:227.200000pt;}
.x2c_c00323{left:236.800000pt;}
.x21_c00323{left:245.760000pt;}
.x39_c00323{left:254.080000pt;}
.x17_c00323{left:255.360000pt;}
.x29_c00323{left:257.280000pt;}
.x2d_c00323{left:264.960000pt;}
.x12_c00323{left:266.240000pt;}
.x23_c00323{left:293.120000pt;}
.x4_c00323{left:294.400000pt;}
.xd_c00323{left:303.360000pt;}
.x2e_c00323{left:312.960000pt;}
.x18_c00323{left:332.800000pt;}
.x35_c00323{left:350.080000pt;}
.xe_c00323{left:352.000000pt;}
.x22_c00323{left:371.200000pt;}
.x19_c00323{left:381.440000pt;}
.x13_c00323{left:391.040000pt;}
.x5_c00323{left:419.840000pt;}
.xf_c00323{left:437.760000pt;}
.x14_c00323{left:439.680000pt;}
.x10_c00323{left:477.440000pt;}
.x2a_c00323{left:485.760000pt;}
.x25_c00323{left:487.680000pt;}
.x2f_c00323{left:495.360000pt;}
.x8_c00323{left:497.280000pt;}
.x1b_c00323{left:515.840000pt;}
.x1e_c00323{left:524.160000pt;}
.x1c_c00323{left:525.440000pt;}
.x36_c00323{left:542.080000pt;}
.x26_c00323{left:543.360000pt;}
.x9_c00323{left:545.280000pt;}
.x37_c00323{left:571.520000pt;}
.x1f_c00323{left:572.800000pt;}
.xa_c00323{left:574.080000pt;}
.x1d_c00323{left:583.680000pt;}
.x20_c00323{left:602.240000pt;}
.x30_c00323{left:609.920000pt;}
.xb_c00323{left:611.200000pt;}
.x32_c00323{left:627.840000pt;}
.x1a_c00323{left:629.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6fea899f02aedbb0f5138df4.woff2')format("woff");}.ff1_c00324{font-family:ff1_c00324;line-height:1.109863;font-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_c00324{transform:matrix(0.186200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186200,0.000000,0.000000,0.250000,0,0);}
.m28_c00324{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);}
.m39_c00324{transform:matrix(0.231550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231550,0.000000,0.000000,0.250000,0,0);}
.m3b_c00324{transform:matrix(0.234725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234725,0.000000,0.000000,0.250000,0,0);}
.m43_c00324{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m44_c00324{transform:matrix(0.245125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245125,0.000000,0.000000,0.250000,0,0);}
.m14_c00324{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m37_c00324{transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);}
.m36_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);}
.mf_c00324{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m24_c00324{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.md_c00324{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m10_c00324{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.ma_c00324{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m8_c00324{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);}
.m3a_c00324{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m7_c00324{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.me_c00324{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00324{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m15_c00324{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1_c00324{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m13_c00324{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00324{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m35_c00324{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m26_c00324{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mc_c00324{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m25_c00324{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m6_c00324{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m5_c00324{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00324{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m3_c00324{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m22_c00324{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m23_c00324{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00324{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m0_c00324{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);}
.m3e_c00324{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m2_c00324{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mb_c00324{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00324{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);}
.m2b_c00324{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m9_c00324{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);}
.m46_c00324{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00324{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);}
.m18_c00324{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);}
.m16_c00324{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);}
.m12_c00324{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m19_c00324{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);}
.m34_c00324{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);}
.m1a_c00324{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00324{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);}
.m20_c00324{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);}
.m32_c00324{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m30_c00324{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m29_c00324{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00324{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00324{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m4_c00324{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00324{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m33_c00324{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m17_c00324{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00324{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m31_c00324{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00324{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);}
.m45_c00324{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m38_c00324{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m41_c00324{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m42_c00324{transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00324{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m40_c00324{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m27_c00324{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);}
.m11_c00324{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.v1_c00324{vertical-align:-14.400000px;}
.v0_c00324{vertical-align:0.000000px;}
.ls0_c00324{letter-spacing:0.000000px;}
.sc__c00324{text-shadow:none;}
.sc0_c00324{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00324{-webkit-text-stroke:0px transparent;}
.sc0_c00324{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00324{word-spacing:-2.477040px;}
.ws3_c00324{word-spacing:0.000000px;}
.ws1_c00324{word-spacing:0.427920px;}
.ws0_c00324{word-spacing:51.358496px;}
.fc0_c00324{color:transparent;}
.fse_c00324{font-size:37.440000px;}
.fsc_c00324{font-size:40.320000px;}
.fsb_c00324{font-size:43.200000px;}
.fsa_c00324{font-size:48.960000px;}
.fs2_c00324{font-size:51.840000px;}
.fs5_c00324{font-size:54.720000px;}
.fs7_c00324{font-size:57.600000px;}
.fs6_c00324{font-size:60.480000px;}
.fs4_c00324{font-size:63.360000px;}
.fs0_c00324{font-size:66.240000px;}
.fs3_c00324{font-size:69.120000px;}
.fsf_c00324{font-size:72.000000px;}
.fs8_c00324{font-size:74.880000px;}
.fs1_c00324{font-size:77.760000px;}
.fsd_c00324{font-size:80.640000px;}
.fs9_c00324{font-size:83.520000px;}
.y0_c00324{bottom:0.000000px;}
.y69_c00324{bottom:62.640000px;}
.y6d_c00324{bottom:64.800000px;}
.y6a_c00324{bottom:65.520000px;}
.y6b_c00324{bottom:66.240000px;}
.y68_c00324{bottom:66.960000px;}
.y6c_c00324{bottom:67.680000px;}
.y55_c00324{bottom:105.840000px;}
.y58_c00324{bottom:106.560000px;}
.y57_c00324{bottom:107.280000px;}
.y66_c00324{bottom:108.720000px;}
.y54_c00324{bottom:109.440000px;}
.y56_c00324{bottom:110.160000px;}
.y67_c00324{bottom:112.320000px;}
.y52_c00324{bottom:149.040000px;}
.y53_c00324{bottom:149.760000px;}
.y64_c00324{bottom:152.640000px;}
.y65_c00324{bottom:153.360000px;}
.y51_c00324{bottom:154.080000px;}
.y63_c00324{bottom:154.800000px;}
.y4d_c00324{bottom:192.960000px;}
.y50_c00324{bottom:193.680000px;}
.y4f_c00324{bottom:194.400000px;}
.y4c_c00324{bottom:195.840000px;}
.y4e_c00324{bottom:196.560000px;}
.y62_c00324{bottom:198.000000px;}
.y61_c00324{bottom:198.720000px;}
.y4b_c00324{bottom:235.440000px;}
.y60_c00324{bottom:239.040000px;}
.y4a_c00324{bottom:239.760000px;}
.y49_c00324{bottom:282.240000px;}
.y5c_c00324{bottom:282.960000px;}
.y5d_c00324{bottom:283.680000px;}
.y5e_c00324{bottom:284.400000px;}
.y5f_c00324{bottom:285.120000px;}
.y48_c00324{bottom:326.160000px;}
.y5a_c00324{bottom:326.880000px;}
.y5b_c00324{bottom:328.320000px;}
.y46_c00324{bottom:369.360000px;}
.y47_c00324{bottom:370.080000px;}
.y43_c00324{bottom:398.160000px;}
.y59_c00324{bottom:399.600000px;}
.y45_c00324{bottom:400.320000px;}
.y42_c00324{bottom:401.040000px;}
.y44_c00324{bottom:401.760000px;}
.y3d_c00324{bottom:440.640000px;}
.y3f_c00324{bottom:442.080000px;}
.y40_c00324{bottom:442.800000px;}
.y3c_c00324{bottom:443.520000px;}
.y41_c00324{bottom:444.240000px;}
.y3e_c00324{bottom:444.960000px;}
.y2f_c00324{bottom:484.560000px;}
.y3b_c00324{bottom:486.000000px;}
.y2e_c00324{bottom:486.720000px;}
.y2d_c00324{bottom:527.040000px;}
.y3a_c00324{bottom:528.480000px;}
.y2c_c00324{bottom:529.200000px;}
.y39_c00324{bottom:530.640000px;}
.y2b_c00324{bottom:569.520000px;}
.y2a_c00324{bottom:571.680000px;}
.y38_c00324{bottom:572.400000px;}
.y29_c00324{bottom:612.720000px;}
.y37_c00324{bottom:614.160000px;}
.y28_c00324{bottom:614.880000px;}
.y27_c00324{bottom:656.640000px;}
.y36_c00324{bottom:657.360000px;}
.y26_c00324{bottom:658.080000px;}
.y25_c00324{bottom:699.840000px;}
.y33_c00324{bottom:700.560000px;}
.y24_c00324{bottom:701.280000px;}
.y34_c00324{bottom:702.000000px;}
.y35_c00324{bottom:702.720000px;}
.y23_c00324{bottom:735.120000px;}
.y20_c00324{bottom:743.040000px;}
.y22_c00324{bottom:745.920000px;}
.y21_c00324{bottom:746.640000px;}
.y1f_c00324{bottom:775.440000px;}
.y1e_c00324{bottom:776.160000px;}
.y1c_c00324{bottom:776.880000px;}
.y32_c00324{bottom:778.320000px;}
.y1d_c00324{bottom:779.760000px;}
.y1b_c00324{bottom:818.640000px;}
.y1a_c00324{bottom:819.360000px;}
.y30_c00324{bottom:820.080000px;}
.y31_c00324{bottom:822.240000px;}
.y18_c00324{bottom:861.120000px;}
.y19_c00324{bottom:861.840000px;}
.y17_c00324{bottom:862.560000px;}
.y16_c00324{bottom:863.280000px;}
.y13_c00324{bottom:864.000000px;}
.y15_c00324{bottom:864.720000px;}
.y14_c00324{bottom:865.440000px;}
.ya_c00324{bottom:905.040000px;}
.y9_c00324{bottom:906.480000px;}
.y12_c00324{bottom:907.200000px;}
.y11_c00324{bottom:907.920000px;}
.y8_c00324{bottom:948.240000px;}
.y10_c00324{bottom:951.120000px;}
.y7_c00324{bottom:990.720000px;}
.yd_c00324{bottom:991.440000px;}
.y6_c00324{bottom:992.160000px;}
.yf_c00324{bottom:992.880000px;}
.ye_c00324{bottom:993.600000px;}
.y5_c00324{bottom:1035.360000px;}
.y2_c00324{bottom:1066.320000px;}
.yc_c00324{bottom:1067.040000px;}
.y1_c00324{bottom:1067.760000px;}
.y4_c00324{bottom:1069.200000px;}
.y3_c00324{bottom:1069.920000px;}
.yb_c00324{bottom:1123.200000px;}
.h10_c00324{height:33.692344px;}
.he_c00324{height:36.284062px;}
.hd_c00324{height:38.875781px;}
.hc_c00324{height:44.059219px;}
.h4_c00324{height:46.650937px;}
.h7_c00324{height:49.242656px;}
.h9_c00324{height:51.834375px;}
.h8_c00324{height:54.426094px;}
.h6_c00324{height:57.017812px;}
.h2_c00324{height:59.609531px;}
.h5_c00324{height:62.201250px;}
.h11_c00324{height:64.792969px;}
.ha_c00324{height:67.384687px;}
.h3_c00324{height:69.976406px;}
.hf_c00324{height:72.568125px;}
.hb_c00324{height:75.159844px;}
.h1_c00324{height:1164.000000px;}
.h0_c00324{height:1164.240000px;}
.w0_c00324{width:762.480000px;}
.w1_c00324{width:762.750000px;}
.x0_c00324{left:0.000000px;}
.x1_c00324{left:58.320000px;}
.x27_c00324{left:59.760000px;}
.x33_c00324{left:61.200000px;}
.x19_c00324{left:131.040000px;}
.x2_c00324{left:132.480000px;}
.x16_c00324{left:174.960000px;}
.xe_c00324{left:176.400000px;}
.x26_c00324{left:185.040000px;}
.x28_c00324{left:218.160000px;}
.xf_c00324{left:229.680000px;}
.x2a_c00324{left:262.080000px;}
.x1e_c00324{left:272.160000px;}
.x24_c00324{left:282.240000px;}
.x10_c00324{left:284.400000px;}
.x3_c00324{left:294.480000px;}
.x2b_c00324{left:315.360000px;}
.x17_c00324{left:316.800000px;}
.x1f_c00324{left:326.880000px;}
.x11_c00324{left:328.320000px;}
.x4_c00324{left:339.120000px;}
.x34_c00324{left:347.760000px;}
.x12_c00324{left:370.080000px;}
.x20_c00324{left:380.880000px;}
.x35_c00324{left:390.960000px;}
.x25_c00324{left:423.360000px;}
.x13_c00324{left:424.800000px;}
.x29_c00324{left:434.160000px;}
.x2c_c00324{left:455.760000px;}
.x18_c00324{left:466.560000px;}
.x5_c00324{left:468.000000px;}
.x36_c00324{left:475.200000px;}
.x21_c00324{left:478.080000px;}
.x22_c00324{left:488.160000px;}
.x37_c00324{left:519.120000px;}
.x23_c00324{left:520.560000px;}
.x1a_c00324{left:552.960000px;}
.x7_c00324{left:555.120000px;}
.x31_c00324{left:568.080000px;}
.x2f_c00324{left:573.120000px;}
.x1c_c00324{left:574.560000px;}
.xd_c00324{left:576.720000px;}
.x14_c00324{left:586.800000px;}
.x32_c00324{left:597.600000px;}
.x2d_c00324{left:606.240000px;}
.x8_c00324{left:609.120000px;}
.x30_c00324{left:638.640000px;}
.x1d_c00324{left:640.080000px;}
.xa_c00324{left:641.520000px;}
.x9_c00324{left:651.600000px;}
.x2e_c00324{left:681.120000px;}
.x15_c00324{left:682.560000px;}
.xb_c00324{left:684.000000px;}
.x6_c00324{left:692.640000px;}
.x1b_c00324{left:702.720000px;}
.xc_c00324{left:704.160000px;}
@media print{
.v1_c00324{vertical-align:-12.800000pt;}
.v0_c00324{vertical-align:0.000000pt;}
.ls0_c00324{letter-spacing:0.000000pt;}
.ws2_c00324{word-spacing:-2.201813pt;}
.ws3_c00324{word-spacing:0.000000pt;}
.ws1_c00324{word-spacing:0.380373pt;}
.ws0_c00324{word-spacing:45.651996pt;}
.fse_c00324{font-size:33.280000pt;}
.fsc_c00324{font-size:35.840000pt;}
.fsb_c00324{font-size:38.400000pt;}
.fsa_c00324{font-size:43.520000pt;}
.fs2_c00324{font-size:46.080000pt;}
.fs5_c00324{font-size:48.640000pt;}
.fs7_c00324{font-size:51.200000pt;}
.fs6_c00324{font-size:53.760000pt;}
.fs4_c00324{font-size:56.320000pt;}
.fs0_c00324{font-size:58.880000pt;}
.fs3_c00324{font-size:61.440000pt;}
.fsf_c00324{font-size:64.000000pt;}
.fs8_c00324{font-size:66.560000pt;}
.fs1_c00324{font-size:69.120000pt;}
.fsd_c00324{font-size:71.680000pt;}
.fs9_c00324{font-size:74.240000pt;}
.y0_c00324{bottom:0.000000pt;}
.y69_c00324{bottom:55.680000pt;}
.y6d_c00324{bottom:57.600000pt;}
.y6a_c00324{bottom:58.240000pt;}
.y6b_c00324{bottom:58.880000pt;}
.y68_c00324{bottom:59.520000pt;}
.y6c_c00324{bottom:60.160000pt;}
.y55_c00324{bottom:94.080000pt;}
.y58_c00324{bottom:94.720000pt;}
.y57_c00324{bottom:95.360000pt;}
.y66_c00324{bottom:96.640000pt;}
.y54_c00324{bottom:97.280000pt;}
.y56_c00324{bottom:97.920000pt;}
.y67_c00324{bottom:99.840000pt;}
.y52_c00324{bottom:132.480000pt;}
.y53_c00324{bottom:133.120000pt;}
.y64_c00324{bottom:135.680000pt;}
.y65_c00324{bottom:136.320000pt;}
.y51_c00324{bottom:136.960000pt;}
.y63_c00324{bottom:137.600000pt;}
.y4d_c00324{bottom:171.520000pt;}
.y50_c00324{bottom:172.160000pt;}
.y4f_c00324{bottom:172.800000pt;}
.y4c_c00324{bottom:174.080000pt;}
.y4e_c00324{bottom:174.720000pt;}
.y62_c00324{bottom:176.000000pt;}
.y61_c00324{bottom:176.640000pt;}
.y4b_c00324{bottom:209.280000pt;}
.y60_c00324{bottom:212.480000pt;}
.y4a_c00324{bottom:213.120000pt;}
.y49_c00324{bottom:250.880000pt;}
.y5c_c00324{bottom:251.520000pt;}
.y5d_c00324{bottom:252.160000pt;}
.y5e_c00324{bottom:252.800000pt;}
.y5f_c00324{bottom:253.440000pt;}
.y48_c00324{bottom:289.920000pt;}
.y5a_c00324{bottom:290.560000pt;}
.y5b_c00324{bottom:291.840000pt;}
.y46_c00324{bottom:328.320000pt;}
.y47_c00324{bottom:328.960000pt;}
.y43_c00324{bottom:353.920000pt;}
.y59_c00324{bottom:355.200000pt;}
.y45_c00324{bottom:355.840000pt;}
.y42_c00324{bottom:356.480000pt;}
.y44_c00324{bottom:357.120000pt;}
.y3d_c00324{bottom:391.680000pt;}
.y3f_c00324{bottom:392.960000pt;}
.y40_c00324{bottom:393.600000pt;}
.y3c_c00324{bottom:394.240000pt;}
.y41_c00324{bottom:394.880000pt;}
.y3e_c00324{bottom:395.520000pt;}
.y2f_c00324{bottom:430.720000pt;}
.y3b_c00324{bottom:432.000000pt;}
.y2e_c00324{bottom:432.640000pt;}
.y2d_c00324{bottom:468.480000pt;}
.y3a_c00324{bottom:469.760000pt;}
.y2c_c00324{bottom:470.400000pt;}
.y39_c00324{bottom:471.680000pt;}
.y2b_c00324{bottom:506.240000pt;}
.y2a_c00324{bottom:508.160000pt;}
.y38_c00324{bottom:508.800000pt;}
.y29_c00324{bottom:544.640000pt;}
.y37_c00324{bottom:545.920000pt;}
.y28_c00324{bottom:546.560000pt;}
.y27_c00324{bottom:583.680000pt;}
.y36_c00324{bottom:584.320000pt;}
.y26_c00324{bottom:584.960000pt;}
.y25_c00324{bottom:622.080000pt;}
.y33_c00324{bottom:622.720000pt;}
.y24_c00324{bottom:623.360000pt;}
.y34_c00324{bottom:624.000000pt;}
.y35_c00324{bottom:624.640000pt;}
.y23_c00324{bottom:653.440000pt;}
.y20_c00324{bottom:660.480000pt;}
.y22_c00324{bottom:663.040000pt;}
.y21_c00324{bottom:663.680000pt;}
.y1f_c00324{bottom:689.280000pt;}
.y1e_c00324{bottom:689.920000pt;}
.y1c_c00324{bottom:690.560000pt;}
.y32_c00324{bottom:691.840000pt;}
.y1d_c00324{bottom:693.120000pt;}
.y1b_c00324{bottom:727.680000pt;}
.y1a_c00324{bottom:728.320000pt;}
.y30_c00324{bottom:728.960000pt;}
.y31_c00324{bottom:730.880000pt;}
.y18_c00324{bottom:765.440000pt;}
.y19_c00324{bottom:766.080000pt;}
.y17_c00324{bottom:766.720000pt;}
.y16_c00324{bottom:767.360000pt;}
.y13_c00324{bottom:768.000000pt;}
.y15_c00324{bottom:768.640000pt;}
.y14_c00324{bottom:769.280000pt;}
.ya_c00324{bottom:804.480000pt;}
.y9_c00324{bottom:805.760000pt;}
.y12_c00324{bottom:806.400000pt;}
.y11_c00324{bottom:807.040000pt;}
.y8_c00324{bottom:842.880000pt;}
.y10_c00324{bottom:845.440000pt;}
.y7_c00324{bottom:880.640000pt;}
.yd_c00324{bottom:881.280000pt;}
.y6_c00324{bottom:881.920000pt;}
.yf_c00324{bottom:882.560000pt;}
.ye_c00324{bottom:883.200000pt;}
.y5_c00324{bottom:920.320000pt;}
.y2_c00324{bottom:947.840000pt;}
.yc_c00324{bottom:948.480000pt;}
.y1_c00324{bottom:949.120000pt;}
.y4_c00324{bottom:950.400000pt;}
.y3_c00324{bottom:951.040000pt;}
.yb_c00324{bottom:998.400000pt;}
.h10_c00324{height:29.948750pt;}
.he_c00324{height:32.252500pt;}
.hd_c00324{height:34.556250pt;}
.hc_c00324{height:39.163750pt;}
.h4_c00324{height:41.467500pt;}
.h7_c00324{height:43.771250pt;}
.h9_c00324{height:46.075000pt;}
.h8_c00324{height:48.378750pt;}
.h6_c00324{height:50.682500pt;}
.h2_c00324{height:52.986250pt;}
.h5_c00324{height:55.290000pt;}
.h11_c00324{height:57.593750pt;}
.ha_c00324{height:59.897500pt;}
.h3_c00324{height:62.201250pt;}
.hf_c00324{height:64.505000pt;}
.hb_c00324{height:66.808750pt;}
.h1_c00324{height:1034.666667pt;}
.h0_c00324{height:1034.880000pt;}
.w0_c00324{width:677.760000pt;}
.w1_c00324{width:678.000000pt;}
.x0_c00324{left:0.000000pt;}
.x1_c00324{left:51.840000pt;}
.x27_c00324{left:53.120000pt;}
.x33_c00324{left:54.400000pt;}
.x19_c00324{left:116.480000pt;}
.x2_c00324{left:117.760000pt;}
.x16_c00324{left:155.520000pt;}
.xe_c00324{left:156.800000pt;}
.x26_c00324{left:164.480000pt;}
.x28_c00324{left:193.920000pt;}
.xf_c00324{left:204.160000pt;}
.x2a_c00324{left:232.960000pt;}
.x1e_c00324{left:241.920000pt;}
.x24_c00324{left:250.880000pt;}
.x10_c00324{left:252.800000pt;}
.x3_c00324{left:261.760000pt;}
.x2b_c00324{left:280.320000pt;}
.x17_c00324{left:281.600000pt;}
.x1f_c00324{left:290.560000pt;}
.x11_c00324{left:291.840000pt;}
.x4_c00324{left:301.440000pt;}
.x34_c00324{left:309.120000pt;}
.x12_c00324{left:328.960000pt;}
.x20_c00324{left:338.560000pt;}
.x35_c00324{left:347.520000pt;}
.x25_c00324{left:376.320000pt;}
.x13_c00324{left:377.600000pt;}
.x29_c00324{left:385.920000pt;}
.x2c_c00324{left:405.120000pt;}
.x18_c00324{left:414.720000pt;}
.x5_c00324{left:416.000000pt;}
.x36_c00324{left:422.400000pt;}
.x21_c00324{left:424.960000pt;}
.x22_c00324{left:433.920000pt;}
.x37_c00324{left:461.440000pt;}
.x23_c00324{left:462.720000pt;}
.x1a_c00324{left:491.520000pt;}
.x7_c00324{left:493.440000pt;}
.x31_c00324{left:504.960000pt;}
.x2f_c00324{left:509.440000pt;}
.x1c_c00324{left:510.720000pt;}
.xd_c00324{left:512.640000pt;}
.x14_c00324{left:521.600000pt;}
.x32_c00324{left:531.200000pt;}
.x2d_c00324{left:538.880000pt;}
.x8_c00324{left:541.440000pt;}
.x30_c00324{left:567.680000pt;}
.x1d_c00324{left:568.960000pt;}
.xa_c00324{left:570.240000pt;}
.x9_c00324{left:579.200000pt;}
.x2e_c00324{left:605.440000pt;}
.x15_c00324{left:606.720000pt;}
.xb_c00324{left:608.000000pt;}
.x6_c00324{left:615.680000pt;}
.x1b_c00324{left:624.640000pt;}
.xc_c00324{left:625.920000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9ad95b9996d96f45f5a87cbd.woff2')format("woff");}.ff1_c00325{font-family:ff1_c00325;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m51_c00325{transform:matrix(0.155225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155225,0.000000,0.000000,0.250000,0,0);}
.m20_c00325{transform:matrix(0.173900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173900,0.000000,0.000000,0.250000,0,0);}
.m53_c00325{transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);}
.m40_c00325{transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);}
.m44_c00325{transform:matrix(0.221675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221675,0.000000,0.000000,0.250000,0,0);}
.m3c_c00325{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);}
.m32_c00325{transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);}
.m1c_c00325{transform:matrix(0.233475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233475,0.000000,0.000000,0.250000,0,0);}
.m7_c00325{transform:matrix(0.234100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234100,0.000000,0.000000,0.250000,0,0);}
.m27_c00325{transform:matrix(0.234725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234725,0.000000,0.000000,0.250000,0,0);}
.m4e_c00325{transform:matrix(0.237825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237825,0.000000,0.000000,0.250000,0,0);}
.m1a_c00325{transform:matrix(0.243775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243775,0.000000,0.000000,0.250000,0,0);}
.m21_c00325{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m30_c00325{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m52_c00325{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m1_c00325{transform:matrix(0.247675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247675,0.000000,0.000000,0.250000,0,0);}
.m24_c00325{transform:matrix(0.248375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248375,0.000000,0.000000,0.250000,0,0);}
.m2d_c00325{transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);}
.m26_c00325{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m29_c00325{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m23_c00325{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00325{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m12_c00325{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00325{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mc_c00325{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m37_c00325{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m31_c00325{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00325{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.md_c00325{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00325{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2_c00325{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);}
.m22_c00325{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_c00325{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m34_c00325{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m14_c00325{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mf_c00325{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m9_c00325{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mb_c00325{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00325{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m16_c00325{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00325{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00325{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m0_c00325{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m15_c00325{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m39_c00325{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m28_c00325{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00325{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m6_c00325{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m10_c00325{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);}
.m2a_c00325{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m3_c00325{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m19_c00325{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);}
.m47_c00325{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m11_c00325{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);}
.m2f_c00325{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m45_c00325{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);}
.m2c_c00325{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00325{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);}
.m4f_c00325{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);}
.ma_c00325{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m43_c00325{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);}
.m50_c00325{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);}
.m5_c00325{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);}
.m4c_c00325{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m36_c00325{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m18_c00325{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m46_c00325{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m48_c00325{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m38_c00325{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m35_c00325{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m49_c00325{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);}
.m4_c00325{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00325{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);}
.m1f_c00325{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00325{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m13_c00325{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);}
.m25_c00325{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m8_c00325{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m33_c00325{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m42_c00325{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);}
.me_c00325{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00325{transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);}
.m41_c00325{transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00325{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.v2_c00325{vertical-align:-2.880000px;}
.v0_c00325{vertical-align:0.000000px;}
.v1_c00325{vertical-align:5.760000px;}
.ls0_c00325{letter-spacing:0.000000px;}
.sc__c00325{text-shadow:none;}
.sc0_c00325{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00325{-webkit-text-stroke:0px transparent;}
.sc0_c00325{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00325{word-spacing:0.000000px;}
.ws1_c00325{word-spacing:9.212400px;}
.ws2_c00325{word-spacing:14.240400px;}
.ws0_c00325{word-spacing:50.570400px;}
.fc0_c00325{color:transparent;}
.fsf_c00325{font-size:40.320000px;}
.fse_c00325{font-size:43.200000px;}
.fs4_c00325{font-size:46.080000px;}
.fsd_c00325{font-size:48.960000px;}
.fs3_c00325{font-size:51.840000px;}
.fs7_c00325{font-size:54.720000px;}
.fs9_c00325{font-size:57.600000px;}
.fs8_c00325{font-size:60.480000px;}
.fsa_c00325{font-size:63.360000px;}
.fs5_c00325{font-size:66.240000px;}
.fs0_c00325{font-size:69.120000px;}
.fs6_c00325{font-size:72.000000px;}
.fs2_c00325{font-size:74.880000px;}
.fs1_c00325{font-size:77.760000px;}
.fsb_c00325{font-size:103.680000px;}
.fsc_c00325{font-size:106.560000px;}
.fs10_c00325{font-size:112.320000px;}
.y0_c00325{bottom:0.000000px;}
.y83_c00325{bottom:11.520000px;}
.y84_c00325{bottom:12.960000px;}
.y85_c00325{bottom:13.680000px;}
.y8a_c00325{bottom:15.120000px;}
.y82_c00325{bottom:15.840000px;}
.y89_c00325{bottom:17.280000px;}
.y7f_c00325{bottom:51.840000px;}
.y81_c00325{bottom:52.560000px;}
.y80_c00325{bottom:53.280000px;}
.y88_c00325{bottom:54.720000px;}
.y7e_c00325{bottom:56.880000px;}
.y7d_c00325{bottom:95.040000px;}
.y87_c00325{bottom:97.920000px;}
.y86_c00325{bottom:98.640000px;}
.y7c_c00325{bottom:99.360000px;}
.y7a_c00325{bottom:129.600000px;}
.y78_c00325{bottom:138.240000px;}
.y77_c00325{bottom:139.680000px;}
.y79_c00325{bottom:140.400000px;}
.y7b_c00325{bottom:141.120000px;}
.y76_c00325{bottom:142.560000px;}
.y6e_c00325{bottom:181.440000px;}
.y72_c00325{bottom:182.160000px;}
.y70_c00325{bottom:182.880000px;}
.y74_c00325{bottom:183.600000px;}
.y6f_c00325{bottom:184.320000px;}
.y6d_c00325{bottom:185.040000px;}
.y71_c00325{bottom:185.760000px;}
.y75_c00325{bottom:186.480000px;}
.y6b_c00325{bottom:225.360000px;}
.y6c_c00325{bottom:227.520000px;}
.y67_c00325{bottom:256.320000px;}
.y6a_c00325{bottom:257.040000px;}
.y69_c00325{bottom:258.480000px;}
.y68_c00325{bottom:259.920000px;}
.y66_c00325{bottom:260.640000px;}
.y73_c00325{bottom:261.360000px;}
.y60_c00325{bottom:299.520000px;}
.y61_c00325{bottom:300.960000px;}
.y65_c00325{bottom:301.680000px;}
.y5f_c00325{bottom:302.400000px;}
.y63_c00325{bottom:303.120000px;}
.y62_c00325{bottom:303.840000px;}
.y64_c00325{bottom:304.560000px;}
.y5e_c00325{bottom:346.320000px;}
.y5d_c00325{bottom:347.040000px;}
.y59_c00325{bottom:374.400000px;}
.y5a_c00325{bottom:375.120000px;}
.y5b_c00325{bottom:376.560000px;}
.y5c_c00325{bottom:377.280000px;}
.y58_c00325{bottom:378.720000px;}
.y40_c00325{bottom:418.320000px;}
.y3f_c00325{bottom:419.760000px;}
.y3d_c00325{bottom:420.480000px;}
.y3e_c00325{bottom:421.920000px;}
.y38_c00325{bottom:450.720000px;}
.y3b_c00325{bottom:452.160000px;}
.y3c_c00325{bottom:452.880000px;}
.y37_c00325{bottom:453.600000px;}
.y39_c00325{bottom:454.320000px;}
.y3a_c00325{bottom:455.040000px;}
.y33_c00325{bottom:493.920000px;}
.y36_c00325{bottom:494.640000px;}
.y35_c00325{bottom:495.360000px;}
.y54_c00325{bottom:496.080000px;}
.y32_c00325{bottom:496.800000px;}
.y57_c00325{bottom:497.520000px;}
.y34_c00325{bottom:498.960000px;}
.y30_c00325{bottom:537.120000px;}
.y31_c00325{bottom:537.840000px;}
.y53_c00325{bottom:538.560000px;}
.y55_c00325{bottom:539.280000px;}
.y2f_c00325{bottom:540.000000px;}
.y56_c00325{bottom:540.720000px;}
.y2e_c00325{bottom:581.040000px;}
.y51_c00325{bottom:581.760000px;}
.y2d_c00325{bottom:583.200000px;}
.y52_c00325{bottom:584.640000px;}
.y50_c00325{bottom:585.360000px;}
.y2c_c00325{bottom:622.800000px;}
.y29_c00325{bottom:624.240000px;}
.y4f_c00325{bottom:624.960000px;}
.y2b_c00325{bottom:625.680000px;}
.y28_c00325{bottom:626.400000px;}
.y2a_c00325{bottom:627.840000px;}
.y27_c00325{bottom:667.440000px;}
.y4d_c00325{bottom:668.160000px;}
.y26_c00325{bottom:668.880000px;}
.y4e_c00325{bottom:669.600000px;}
.y4c_c00325{bottom:671.040000px;}
.y25_c00325{bottom:709.200000px;}
.y22_c00325{bottom:709.920000px;}
.y23_c00325{bottom:710.640000px;}
.y21_c00325{bottom:711.360000px;}
.y4b_c00325{bottom:712.080000px;}
.y24_c00325{bottom:713.520000px;}
.y20_c00325{bottom:752.400000px;}
.y1e_c00325{bottom:753.120000px;}
.y49_c00325{bottom:754.560000px;}
.y1d_c00325{bottom:755.280000px;}
.y4a_c00325{bottom:756.000000px;}
.y1f_c00325{bottom:757.440000px;}
.y1c_c00325{bottom:795.600000px;}
.y48_c00325{bottom:796.320000px;}
.y1b_c00325{bottom:797.760000px;}
.y1a_c00325{bottom:838.800000px;}
.y46_c00325{bottom:839.520000px;}
.y45_c00325{bottom:840.240000px;}
.y19_c00325{bottom:840.960000px;}
.y47_c00325{bottom:841.680000px;}
.y18_c00325{bottom:874.080000px;}
.y15_c00325{bottom:881.280000px;}
.y44_c00325{bottom:882.000000px;}
.y14_c00325{bottom:882.720000px;}
.y17_c00325{bottom:884.880000px;}
.y16_c00325{bottom:885.600000px;}
.y13_c00325{bottom:924.480000px;}
.y42_c00325{bottom:925.200000px;}
.y43_c00325{bottom:925.920000px;}
.y12_c00325{bottom:926.640000px;}
.y41_c00325{bottom:928.080000px;}
.y10_c00325{bottom:960.480000px;}
.yd_c00325{bottom:967.680000px;}
.y11_c00325{bottom:968.400000px;}
.yf_c00325{bottom:969.120000px;}
.yc_c00325{bottom:970.560000px;}
.ye_c00325{bottom:971.280000px;}
.y7_c00325{bottom:1011.600000px;}
.y6_c00325{bottom:1012.320000px;}
.yb_c00325{bottom:1013.040000px;}
.ya_c00325{bottom:1014.480000px;}
.y8_c00325{bottom:1015.200000px;}
.y3_c00325{bottom:1054.800000px;}
.y2_c00325{bottom:1055.520000px;}
.y1_c00325{bottom:1056.240000px;}
.y5_c00325{bottom:1056.960000px;}
.y4_c00325{bottom:1058.400000px;}
.y9_c00325{bottom:1115.280000px;}
.h12_c00325{height:36.284062px;}
.h11_c00325{height:38.875781px;}
.h6_c00325{height:41.467500px;}
.hf_c00325{height:44.059219px;}
.h5_c00325{height:46.650937px;}
.h9_c00325{height:49.242656px;}
.hb_c00325{height:51.834375px;}
.ha_c00325{height:54.426094px;}
.hc_c00325{height:57.017812px;}
.h7_c00325{height:59.609531px;}
.h10_c00325{height:60.186094px;}
.h2_c00325{height:62.201250px;}
.h8_c00325{height:64.792969px;}
.h4_c00325{height:67.384687px;}
.h3_c00325{height:69.976406px;}
.hd_c00325{height:93.301875px;}
.he_c00325{height:95.893594px;}
.h13_c00325{height:101.077031px;}
.h1_c00325{height:1164.000000px;}
.h0_c00325{height:1164.240000px;}
.w0_c00325{width:761.760000px;}
.w1_c00325{width:762.000000px;}
.x0_c00325{left:0.000000px;}
.x1_c00325{left:54.720000px;}
.x39_c00325{left:56.160000px;}
.x42_c00325{left:57.600000px;}
.x3a_c00325{left:125.280000px;}
.x1c_c00325{left:126.720000px;}
.x2_c00325{left:128.160000px;}
.x21_c00325{left:169.920000px;}
.x2d_c00325{left:181.440000px;}
.x36_c00325{left:212.400000px;}
.x15_c00325{left:213.840000px;}
.x3_c00325{left:216.000000px;}
.x29_c00325{left:223.920000px;}
.x2e_c00325{left:246.240000px;}
.x17_c00325{left:248.400000px;}
.x1d_c00325{left:257.040000px;}
.x7_c00325{left:259.200000px;}
.x19_c00325{left:267.840000px;}
.x18_c00325{left:269.280000px;}
.x3b_c00325{left:290.160000px;}
.x10_c00325{left:291.600000px;}
.x3f_c00325{left:300.960000px;}
.x37_c00325{left:311.040000px;}
.x8_c00325{left:313.200000px;}
.x2a_c00325{left:322.560000px;}
.x11_c00325{left:345.600000px;}
.x14_c00325{left:356.400000px;}
.x4_c00325{left:365.760000px;}
.x43_c00325{left:375.840000px;}
.x38_c00325{left:386.640000px;}
.x1a_c00325{left:398.160000px;}
.x16_c00325{left:399.600000px;}
.x5_c00325{left:410.400000px;}
.x3c_c00325{left:419.040000px;}
.x2f_c00325{left:429.840000px;}
.x1e_c00325{left:441.360000px;}
.x1b_c00325{left:452.160000px;}
.x3d_c00325{left:461.520000px;}
.x1f_c00325{left:462.960000px;}
.x6_c00325{left:465.120000px;}
.x12_c00325{left:475.200000px;}
.x30_c00325{left:483.120000px;}
.x2b_c00325{left:492.480000px;}
.x20_c00325{left:495.360000px;}
.x40_c00325{left:514.800000px;}
.x31_c00325{left:524.880000px;}
.x22_c00325{left:541.440000px;}
.x44_c00325{left:547.200000px;}
.x27_c00325{left:549.360000px;}
.xa_c00325{left:550.800000px;}
.xe_c00325{left:552.240000px;}
.x2c_c00325{left:569.520000px;}
.x24_c00325{left:570.960000px;}
.x32_c00325{left:580.320000px;}
.x41_c00325{left:601.200000px;}
.x33_c00325{left:602.640000px;}
.xf_c00325{left:604.800000px;}
.xb_c00325{left:606.240000px;}
.x45_c00325{left:633.600000px;}
.x34_c00325{left:635.040000px;}
.x26_c00325{left:636.480000px;}
.xc_c00325{left:637.920000px;}
.x3e_c00325{left:666.720000px;}
.x23_c00325{left:669.600000px;}
.x35_c00325{left:676.800000px;}
.x25_c00325{left:678.960000px;}
.xd_c00325{left:680.400000px;}
.x9_c00325{left:689.040000px;}
.x28_c00325{left:697.680000px;}
.x13_c00325{left:699.840000px;}
@media print{
.v2_c00325{vertical-align:-2.560000pt;}
.v0_c00325{vertical-align:0.000000pt;}
.v1_c00325{vertical-align:5.120000pt;}
.ls0_c00325{letter-spacing:0.000000pt;}
.ws3_c00325{word-spacing:0.000000pt;}
.ws1_c00325{word-spacing:8.188800pt;}
.ws2_c00325{word-spacing:12.658133pt;}
.ws0_c00325{word-spacing:44.951467pt;}
.fsf_c00325{font-size:35.840000pt;}
.fse_c00325{font-size:38.400000pt;}
.fs4_c00325{font-size:40.960000pt;}
.fsd_c00325{font-size:43.520000pt;}
.fs3_c00325{font-size:46.080000pt;}
.fs7_c00325{font-size:48.640000pt;}
.fs9_c00325{font-size:51.200000pt;}
.fs8_c00325{font-size:53.760000pt;}
.fsa_c00325{font-size:56.320000pt;}
.fs5_c00325{font-size:58.880000pt;}
.fs0_c00325{font-size:61.440000pt;}
.fs6_c00325{font-size:64.000000pt;}
.fs2_c00325{font-size:66.560000pt;}
.fs1_c00325{font-size:69.120000pt;}
.fsb_c00325{font-size:92.160000pt;}
.fsc_c00325{font-size:94.720000pt;}
.fs10_c00325{font-size:99.840000pt;}
.y0_c00325{bottom:0.000000pt;}
.y83_c00325{bottom:10.240000pt;}
.y84_c00325{bottom:11.520000pt;}
.y85_c00325{bottom:12.160000pt;}
.y8a_c00325{bottom:13.440000pt;}
.y82_c00325{bottom:14.080000pt;}
.y89_c00325{bottom:15.360000pt;}
.y7f_c00325{bottom:46.080000pt;}
.y81_c00325{bottom:46.720000pt;}
.y80_c00325{bottom:47.360000pt;}
.y88_c00325{bottom:48.640000pt;}
.y7e_c00325{bottom:50.560000pt;}
.y7d_c00325{bottom:84.480000pt;}
.y87_c00325{bottom:87.040000pt;}
.y86_c00325{bottom:87.680000pt;}
.y7c_c00325{bottom:88.320000pt;}
.y7a_c00325{bottom:115.200000pt;}
.y78_c00325{bottom:122.880000pt;}
.y77_c00325{bottom:124.160000pt;}
.y79_c00325{bottom:124.800000pt;}
.y7b_c00325{bottom:125.440000pt;}
.y76_c00325{bottom:126.720000pt;}
.y6e_c00325{bottom:161.280000pt;}
.y72_c00325{bottom:161.920000pt;}
.y70_c00325{bottom:162.560000pt;}
.y74_c00325{bottom:163.200000pt;}
.y6f_c00325{bottom:163.840000pt;}
.y6d_c00325{bottom:164.480000pt;}
.y71_c00325{bottom:165.120000pt;}
.y75_c00325{bottom:165.760000pt;}
.y6b_c00325{bottom:200.320000pt;}
.y6c_c00325{bottom:202.240000pt;}
.y67_c00325{bottom:227.840000pt;}
.y6a_c00325{bottom:228.480000pt;}
.y69_c00325{bottom:229.760000pt;}
.y68_c00325{bottom:231.040000pt;}
.y66_c00325{bottom:231.680000pt;}
.y73_c00325{bottom:232.320000pt;}
.y60_c00325{bottom:266.240000pt;}
.y61_c00325{bottom:267.520000pt;}
.y65_c00325{bottom:268.160000pt;}
.y5f_c00325{bottom:268.800000pt;}
.y63_c00325{bottom:269.440000pt;}
.y62_c00325{bottom:270.080000pt;}
.y64_c00325{bottom:270.720000pt;}
.y5e_c00325{bottom:307.840000pt;}
.y5d_c00325{bottom:308.480000pt;}
.y59_c00325{bottom:332.800000pt;}
.y5a_c00325{bottom:333.440000pt;}
.y5b_c00325{bottom:334.720000pt;}
.y5c_c00325{bottom:335.360000pt;}
.y58_c00325{bottom:336.640000pt;}
.y40_c00325{bottom:371.840000pt;}
.y3f_c00325{bottom:373.120000pt;}
.y3d_c00325{bottom:373.760000pt;}
.y3e_c00325{bottom:375.040000pt;}
.y38_c00325{bottom:400.640000pt;}
.y3b_c00325{bottom:401.920000pt;}
.y3c_c00325{bottom:402.560000pt;}
.y37_c00325{bottom:403.200000pt;}
.y39_c00325{bottom:403.840000pt;}
.y3a_c00325{bottom:404.480000pt;}
.y33_c00325{bottom:439.040000pt;}
.y36_c00325{bottom:439.680000pt;}
.y35_c00325{bottom:440.320000pt;}
.y54_c00325{bottom:440.960000pt;}
.y32_c00325{bottom:441.600000pt;}
.y57_c00325{bottom:442.240000pt;}
.y34_c00325{bottom:443.520000pt;}
.y30_c00325{bottom:477.440000pt;}
.y31_c00325{bottom:478.080000pt;}
.y53_c00325{bottom:478.720000pt;}
.y55_c00325{bottom:479.360000pt;}
.y2f_c00325{bottom:480.000000pt;}
.y56_c00325{bottom:480.640000pt;}
.y2e_c00325{bottom:516.480000pt;}
.y51_c00325{bottom:517.120000pt;}
.y2d_c00325{bottom:518.400000pt;}
.y52_c00325{bottom:519.680000pt;}
.y50_c00325{bottom:520.320000pt;}
.y2c_c00325{bottom:553.600000pt;}
.y29_c00325{bottom:554.880000pt;}
.y4f_c00325{bottom:555.520000pt;}
.y2b_c00325{bottom:556.160000pt;}
.y28_c00325{bottom:556.800000pt;}
.y2a_c00325{bottom:558.080000pt;}
.y27_c00325{bottom:593.280000pt;}
.y4d_c00325{bottom:593.920000pt;}
.y26_c00325{bottom:594.560000pt;}
.y4e_c00325{bottom:595.200000pt;}
.y4c_c00325{bottom:596.480000pt;}
.y25_c00325{bottom:630.400000pt;}
.y22_c00325{bottom:631.040000pt;}
.y23_c00325{bottom:631.680000pt;}
.y21_c00325{bottom:632.320000pt;}
.y4b_c00325{bottom:632.960000pt;}
.y24_c00325{bottom:634.240000pt;}
.y20_c00325{bottom:668.800000pt;}
.y1e_c00325{bottom:669.440000pt;}
.y49_c00325{bottom:670.720000pt;}
.y1d_c00325{bottom:671.360000pt;}
.y4a_c00325{bottom:672.000000pt;}
.y1f_c00325{bottom:673.280000pt;}
.y1c_c00325{bottom:707.200000pt;}
.y48_c00325{bottom:707.840000pt;}
.y1b_c00325{bottom:709.120000pt;}
.y1a_c00325{bottom:745.600000pt;}
.y46_c00325{bottom:746.240000pt;}
.y45_c00325{bottom:746.880000pt;}
.y19_c00325{bottom:747.520000pt;}
.y47_c00325{bottom:748.160000pt;}
.y18_c00325{bottom:776.960000pt;}
.y15_c00325{bottom:783.360000pt;}
.y44_c00325{bottom:784.000000pt;}
.y14_c00325{bottom:784.640000pt;}
.y17_c00325{bottom:786.560000pt;}
.y16_c00325{bottom:787.200000pt;}
.y13_c00325{bottom:821.760000pt;}
.y42_c00325{bottom:822.400000pt;}
.y43_c00325{bottom:823.040000pt;}
.y12_c00325{bottom:823.680000pt;}
.y41_c00325{bottom:824.960000pt;}
.y10_c00325{bottom:853.760000pt;}
.yd_c00325{bottom:860.160000pt;}
.y11_c00325{bottom:860.800000pt;}
.yf_c00325{bottom:861.440000pt;}
.yc_c00325{bottom:862.720000pt;}
.ye_c00325{bottom:863.360000pt;}
.y7_c00325{bottom:899.200000pt;}
.y6_c00325{bottom:899.840000pt;}
.yb_c00325{bottom:900.480000pt;}
.ya_c00325{bottom:901.760000pt;}
.y8_c00325{bottom:902.400000pt;}
.y3_c00325{bottom:937.600000pt;}
.y2_c00325{bottom:938.240000pt;}
.y1_c00325{bottom:938.880000pt;}
.y5_c00325{bottom:939.520000pt;}
.y4_c00325{bottom:940.800000pt;}
.y9_c00325{bottom:991.360000pt;}
.h12_c00325{height:32.252500pt;}
.h11_c00325{height:34.556250pt;}
.h6_c00325{height:36.860000pt;}
.hf_c00325{height:39.163750pt;}
.h5_c00325{height:41.467500pt;}
.h9_c00325{height:43.771250pt;}
.hb_c00325{height:46.075000pt;}
.ha_c00325{height:48.378750pt;}
.hc_c00325{height:50.682500pt;}
.h7_c00325{height:52.986250pt;}
.h10_c00325{height:53.498750pt;}
.h2_c00325{height:55.290000pt;}
.h8_c00325{height:57.593750pt;}
.h4_c00325{height:59.897500pt;}
.h3_c00325{height:62.201250pt;}
.hd_c00325{height:82.935000pt;}
.he_c00325{height:85.238750pt;}
.h13_c00325{height:89.846250pt;}
.h1_c00325{height:1034.666667pt;}
.h0_c00325{height:1034.880000pt;}
.w0_c00325{width:677.120000pt;}
.w1_c00325{width:677.333333pt;}
.x0_c00325{left:0.000000pt;}
.x1_c00325{left:48.640000pt;}
.x39_c00325{left:49.920000pt;}
.x42_c00325{left:51.200000pt;}
.x3a_c00325{left:111.360000pt;}
.x1c_c00325{left:112.640000pt;}
.x2_c00325{left:113.920000pt;}
.x21_c00325{left:151.040000pt;}
.x2d_c00325{left:161.280000pt;}
.x36_c00325{left:188.800000pt;}
.x15_c00325{left:190.080000pt;}
.x3_c00325{left:192.000000pt;}
.x29_c00325{left:199.040000pt;}
.x2e_c00325{left:218.880000pt;}
.x17_c00325{left:220.800000pt;}
.x1d_c00325{left:228.480000pt;}
.x7_c00325{left:230.400000pt;}
.x19_c00325{left:238.080000pt;}
.x18_c00325{left:239.360000pt;}
.x3b_c00325{left:257.920000pt;}
.x10_c00325{left:259.200000pt;}
.x3f_c00325{left:267.520000pt;}
.x37_c00325{left:276.480000pt;}
.x8_c00325{left:278.400000pt;}
.x2a_c00325{left:286.720000pt;}
.x11_c00325{left:307.200000pt;}
.x14_c00325{left:316.800000pt;}
.x4_c00325{left:325.120000pt;}
.x43_c00325{left:334.080000pt;}
.x38_c00325{left:343.680000pt;}
.x1a_c00325{left:353.920000pt;}
.x16_c00325{left:355.200000pt;}
.x5_c00325{left:364.800000pt;}
.x3c_c00325{left:372.480000pt;}
.x2f_c00325{left:382.080000pt;}
.x1e_c00325{left:392.320000pt;}
.x1b_c00325{left:401.920000pt;}
.x3d_c00325{left:410.240000pt;}
.x1f_c00325{left:411.520000pt;}
.x6_c00325{left:413.440000pt;}
.x12_c00325{left:422.400000pt;}
.x30_c00325{left:429.440000pt;}
.x2b_c00325{left:437.760000pt;}
.x20_c00325{left:440.320000pt;}
.x40_c00325{left:457.600000pt;}
.x31_c00325{left:466.560000pt;}
.x22_c00325{left:481.280000pt;}
.x44_c00325{left:486.400000pt;}
.x27_c00325{left:488.320000pt;}
.xa_c00325{left:489.600000pt;}
.xe_c00325{left:490.880000pt;}
.x2c_c00325{left:506.240000pt;}
.x24_c00325{left:507.520000pt;}
.x32_c00325{left:515.840000pt;}
.x41_c00325{left:534.400000pt;}
.x33_c00325{left:535.680000pt;}
.xf_c00325{left:537.600000pt;}
.xb_c00325{left:538.880000pt;}
.x45_c00325{left:563.200000pt;}
.x34_c00325{left:564.480000pt;}
.x26_c00325{left:565.760000pt;}
.xc_c00325{left:567.040000pt;}
.x3e_c00325{left:592.640000pt;}
.x23_c00325{left:595.200000pt;}
.x35_c00325{left:601.600000pt;}
.x25_c00325{left:603.520000pt;}
.xd_c00325{left:604.800000pt;}
.x9_c00325{left:612.480000pt;}
.x28_c00325{left:620.160000pt;}
.x13_c00325{left:622.080000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_27e775e16207be6cff4983d7.woff2')format("woff");}.ff1_c00326{font-family:ff1_c00326;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m58_c00326{transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);}
.m48_c00326{transform:matrix(0.176975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176975,0.000000,0.000000,0.250000,0,0);}
.m2c_c00326{transform:matrix(0.179925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179925,0.000000,0.000000,0.250000,0,0);}
.mc_c00326{transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);}
.m50_c00326{transform:matrix(0.186550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186550,0.000000,0.000000,0.250000,0,0);}
.m3c_c00326{transform:matrix(0.192400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192400,0.000000,0.000000,0.250000,0,0);}
.m43_c00326{transform:matrix(0.195075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195075,0.000000,0.000000,0.250000,0,0);}
.m44_c00326{transform:matrix(0.222125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222125,0.000000,0.000000,0.250000,0,0);}
.m4c_c00326{transform:matrix(0.222325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222325,0.000000,0.000000,0.250000,0,0);}
.m3d_c00326{transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);}
.md_c00326{transform:matrix(0.234725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234725,0.000000,0.000000,0.250000,0,0);}
.m54_c00326{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m1_c00326{transform:matrix(0.243775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243775,0.000000,0.000000,0.250000,0,0);}
.m17_c00326{transform:matrix(0.246475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246475,0.000000,0.000000,0.250000,0,0);}
.m19_c00326{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m13_c00326{transform:matrix(0.248100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248100,0.000000,0.000000,0.250000,0,0);}
.m7_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);}
.m25_c00326{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m23_c00326{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);}
.m41_c00326{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);}
.m2d_c00326{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);}
.m46_c00326{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);}
.m31_c00326{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.mf_c00326{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m24_c00326{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m37_c00326{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m6_c00326{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m8_c00326{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m15_c00326{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00326{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00326{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00326{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m12_c00326{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m38_c00326{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00326{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m53_c00326{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m36_c00326{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00326{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00326{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00326{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00326{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m42_c00326{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m51_c00326{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00326{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m3_c00326{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m18_c00326{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00326{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);}
.m32_c00326{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00326{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);}
.m39_c00326{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00326{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);}
.m2b_c00326{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00326{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_c00326{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m28_c00326{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m20_c00326{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);}
.m35_c00326{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);}
.m0_c00326{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m21_c00326{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m29_c00326{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_c00326{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);}
.m3e_c00326{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);}
.m1e_c00326{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m34_c00326{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m45_c00326{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);}
.m27_c00326{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m52_c00326{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m4_c00326{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m9_c00326{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00326{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m2_c00326{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m30_c00326{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.me_c00326{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m47_c00326{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00326{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00326{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);}
.mb_c00326{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);}
.m22_c00326{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m33_c00326{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);}
.m14_c00326{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m16_c00326{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m5_c00326{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);}
.m49_c00326{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m26_c00326{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00326{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m56_c00326{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m57_c00326{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);}
.m55_c00326{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.m40_c00326{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.v0_c00326{vertical-align:0.000000px;}
.ls0_c00326{letter-spacing:0.000000px;}
.sc__c00326{text-shadow:none;}
.sc0_c00326{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00326{-webkit-text-stroke:0px transparent;}
.sc0_c00326{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00326{word-spacing:-1.953120px;}
.ws3_c00326{word-spacing:0.000000px;}
.ws2_c00326{word-spacing:6.727553px;}
.ws1_c00326{word-spacing:16.837572px;}
.fc0_c00326{color:transparent;}
.fse_c00326{font-size:31.680000px;}
.fs3_c00326{font-size:37.440000px;}
.fs7_c00326{font-size:40.320000px;}
.fs9_c00326{font-size:43.200000px;}
.fs6_c00326{font-size:48.960000px;}
.fs2_c00326{font-size:51.840000px;}
.fs4_c00326{font-size:54.720000px;}
.fs8_c00326{font-size:57.600000px;}
.fs0_c00326{font-size:60.480000px;}
.fsd_c00326{font-size:63.360000px;}
.fsc_c00326{font-size:66.240000px;}
.fsb_c00326{font-size:69.120000px;}
.fsa_c00326{font-size:72.000000px;}
.fs5_c00326{font-size:74.880000px;}
.fs1_c00326{font-size:77.760000px;}
.fsf_c00326{font-size:80.640000px;}
.fs10_c00326{font-size:95.040000px;}
.y0_c00326{bottom:0.000000px;}
.y74_c00326{bottom:80.640000px;}
.y72_c00326{bottom:84.960000px;}
.y73_c00326{bottom:85.680000px;}
.y7f_c00326{bottom:87.120000px;}
.y6f_c00326{bottom:124.560000px;}
.y70_c00326{bottom:126.000000px;}
.y6e_c00326{bottom:128.160000px;}
.y71_c00326{bottom:128.880000px;}
.y6d_c00326{bottom:167.040000px;}
.y6b_c00326{bottom:171.360000px;}
.y6c_c00326{bottom:172.080000px;}
.y7e_c00326{bottom:173.520000px;}
.y7d_c00326{bottom:174.240000px;}
.y69_c00326{bottom:205.200000px;}
.y6a_c00326{bottom:213.840000px;}
.y67_c00326{bottom:265.680000px;}
.y65_c00326{bottom:268.560000px;}
.y68_c00326{bottom:269.280000px;}
.y66_c00326{bottom:270.000000px;}
.y7c_c00326{bottom:270.720000px;}
.y7b_c00326{bottom:271.440000px;}
.y62_c00326{bottom:308.880000px;}
.y63_c00326{bottom:309.600000px;}
.y64_c00326{bottom:311.040000px;}
.y60_c00326{bottom:311.760000px;}
.y61_c00326{bottom:313.200000px;}
.y5f_c00326{bottom:352.080000px;}
.y5e_c00326{bottom:353.520000px;}
.y5c_c00326{bottom:354.960000px;}
.y5d_c00326{bottom:356.400000px;}
.y7a_c00326{bottom:357.120000px;}
.y76_c00326{bottom:357.840000px;}
.y58_c00326{bottom:395.280000px;}
.y5a_c00326{bottom:396.000000px;}
.y57_c00326{bottom:396.720000px;}
.y5b_c00326{bottom:397.440000px;}
.y55_c00326{bottom:398.160000px;}
.y59_c00326{bottom:398.880000px;}
.y56_c00326{bottom:399.600000px;}
.y79_c00326{bottom:400.320000px;}
.y54_c00326{bottom:438.480000px;}
.y53_c00326{bottom:439.920000px;}
.y51_c00326{bottom:441.360000px;}
.y78_c00326{bottom:442.080000px;}
.y52_c00326{bottom:442.800000px;}
.y77_c00326{bottom:443.520000px;}
.y4d_c00326{bottom:481.680000px;}
.y50_c00326{bottom:482.400000px;}
.y4f_c00326{bottom:485.280000px;}
.y4e_c00326{bottom:486.000000px;}
.y49_c00326{bottom:514.080000px;}
.y4b_c00326{bottom:514.800000px;}
.y4a_c00326{bottom:515.520000px;}
.y48_c00326{bottom:516.240000px;}
.y75_c00326{bottom:517.680000px;}
.y4c_c00326{bottom:518.400000px;}
.y46_c00326{bottom:557.280000px;}
.y45_c00326{bottom:558.000000px;}
.y47_c00326{bottom:558.720000px;}
.y43_c00326{bottom:559.440000px;}
.y44_c00326{bottom:561.600000px;}
.y3d_c00326{bottom:599.040000px;}
.y41_c00326{bottom:599.760000px;}
.y40_c00326{bottom:601.200000px;}
.y3c_c00326{bottom:601.920000px;}
.y3f_c00326{bottom:602.640000px;}
.y3e_c00326{bottom:603.360000px;}
.y42_c00326{bottom:604.080000px;}
.y36_c00326{bottom:642.240000px;}
.y37_c00326{bottom:643.680000px;}
.y35_c00326{bottom:644.400000px;}
.y3a_c00326{bottom:645.120000px;}
.y39_c00326{bottom:645.840000px;}
.y38_c00326{bottom:646.560000px;}
.y3b_c00326{bottom:647.280000px;}
.y32_c00326{bottom:685.440000px;}
.y33_c00326{bottom:686.880000px;}
.y30_c00326{bottom:687.600000px;}
.y34_c00326{bottom:689.040000px;}
.y31_c00326{bottom:690.480000px;}
.y26_c00326{bottom:729.360000px;}
.y25_c00326{bottom:732.960000px;}
.y23_c00326{bottom:761.040000px;}
.y22_c00326{bottom:762.480000px;}
.y1f_c00326{bottom:763.200000px;}
.y24_c00326{bottom:763.920000px;}
.y20_c00326{bottom:764.640000px;}
.y21_c00326{bottom:765.360000px;}
.y1e_c00326{bottom:804.960000px;}
.y1d_c00326{bottom:806.400000px;}
.y1c_c00326{bottom:836.640000px;}
.y19_c00326{bottom:838.800000px;}
.y2f_c00326{bottom:839.520000px;}
.y1a_c00326{bottom:840.960000px;}
.y1b_c00326{bottom:841.680000px;}
.y14_c00326{bottom:879.840000px;}
.y17_c00326{bottom:880.560000px;}
.y2e_c00326{bottom:881.280000px;}
.y13_c00326{bottom:882.000000px;}
.y18_c00326{bottom:882.720000px;}
.y16_c00326{bottom:884.160000px;}
.y15_c00326{bottom:884.880000px;}
.y10_c00326{bottom:923.760000px;}
.yf_c00326{bottom:925.200000px;}
.y2d_c00326{bottom:926.640000px;}
.y12_c00326{bottom:927.360000px;}
.y11_c00326{bottom:928.080000px;}
.yb_c00326{bottom:966.240000px;}
.yd_c00326{bottom:966.960000px;}
.y2b_c00326{bottom:967.680000px;}
.ya_c00326{bottom:968.400000px;}
.y2c_c00326{bottom:969.840000px;}
.yc_c00326{bottom:970.560000px;}
.ye_c00326{bottom:971.280000px;}
.y6_c00326{bottom:1009.440000px;}
.y7_c00326{bottom:1010.160000px;}
.y29_c00326{bottom:1010.880000px;}
.y5_c00326{bottom:1011.600000px;}
.y9_c00326{bottom:1012.320000px;}
.y2a_c00326{bottom:1013.040000px;}
.y8_c00326{bottom:1013.760000px;}
.y2_c00326{bottom:1052.640000px;}
.y28_c00326{bottom:1054.080000px;}
.y1_c00326{bottom:1054.800000px;}
.y4_c00326{bottom:1055.520000px;}
.y3_c00326{bottom:1056.960000px;}
.y27_c00326{bottom:1110.240000px;}
.h10_c00326{height:28.508906px;}
.h5_c00326{height:33.692344px;}
.h9_c00326{height:36.284062px;}
.hb_c00326{height:38.875781px;}
.h8_c00326{height:44.059219px;}
.h4_c00326{height:46.650937px;}
.h6_c00326{height:49.242656px;}
.ha_c00326{height:51.834375px;}
.h2_c00326{height:54.426094px;}
.hf_c00326{height:57.017812px;}
.he_c00326{height:59.609531px;}
.hd_c00326{height:62.201250px;}
.hc_c00326{height:64.792969px;}
.h7_c00326{height:67.384687px;}
.h3_c00326{height:69.976406px;}
.h11_c00326{height:72.568125px;}
.h12_c00326{height:85.526719px;}
.h0_c00326{height:1160.640000px;}
.h1_c00326{height:1161.000000px;}
.w0_c00326{width:757.440000px;}
.w1_c00326{width:757.500000px;}
.x0_c00326{left:0.000000px;}
.x1_c00326{left:52.560000px;}
.x2c_c00326{left:54.000000px;}
.x38_c00326{left:55.440000px;}
.x15_c00326{left:96.480000px;}
.x35_c00326{left:105.120000px;}
.x2a_c00326{left:117.360000px;}
.x13_c00326{left:125.280000px;}
.x2_c00326{left:126.720000px;}
.x36_c00326{left:147.600000px;}
.x1e_c00326{left:162.000000px;}
.x30_c00326{left:168.480000px;}
.x10_c00326{left:169.920000px;}
.x14_c00326{left:180.720000px;}
.x1f_c00326{left:205.200000px;}
.xe_c00326{left:213.120000px;}
.xa_c00326{left:214.560000px;}
.x37_c00326{left:222.480000px;}
.x11_c00326{left:224.640000px;}
.x39_c00326{left:246.240000px;}
.x3_c00326{left:257.040000px;}
.x26_c00326{left:267.840000px;}
.x31_c00326{left:277.200000px;}
.x12_c00326{left:278.640000px;}
.x33_c00326{left:290.160000px;}
.x4_c00326{left:311.040000px;}
.x16_c00326{left:321.840000px;}
.x3a_c00326{left:331.200000px;}
.x32_c00326{left:332.640000px;}
.x2b_c00326{left:343.440000px;}
.x2d_c00326{left:355.680000px;}
.x21_c00326{left:363.600000px;}
.x8_c00326{left:365.040000px;}
.x34_c00326{left:386.640000px;}
.x27_c00326{left:397.440000px;}
.x2e_c00326{left:406.080000px;}
.x22_c00326{left:408.960000px;}
.x5_c00326{left:419.040000px;}
.xc_c00326{left:429.840000px;}
.xf_c00326{left:440.640000px;}
.x28_c00326{left:451.440000px;}
.xb_c00326{left:462.240000px;}
.x9_c00326{left:463.680000px;}
.x6_c00326{left:473.760000px;}
.xd_c00326{left:483.840000px;}
.x29_c00326{left:505.440000px;}
.x2f_c00326{left:537.840000px;}
.x20_c00326{left:547.920000px;}
.x7_c00326{left:549.360000px;}
.x25_c00326{left:569.520000px;}
.x3d_c00326{left:579.600000px;}
.x18_c00326{left:602.640000px;}
.x1c_c00326{left:604.080000px;}
.x23_c00326{left:635.040000px;}
.x19_c00326{left:636.480000px;}
.x3c_c00326{left:667.440000px;}
.x17_c00326{left:671.760000px;}
.x3b_c00326{left:676.080000px;}
.x24_c00326{left:677.520000px;}
.x1a_c00326{left:678.960000px;}
.x1d_c00326{left:697.680000px;}
.x1b_c00326{left:699.120000px;}
@media print{
.v0_c00326{vertical-align:0.000000pt;}
.ls0_c00326{letter-spacing:0.000000pt;}
.ws0_c00326{word-spacing:-1.736107pt;}
.ws3_c00326{word-spacing:0.000000pt;}
.ws2_c00326{word-spacing:5.980047pt;}
.ws1_c00326{word-spacing:14.966730pt;}
.fse_c00326{font-size:28.160000pt;}
.fs3_c00326{font-size:33.280000pt;}
.fs7_c00326{font-size:35.840000pt;}
.fs9_c00326{font-size:38.400000pt;}
.fs6_c00326{font-size:43.520000pt;}
.fs2_c00326{font-size:46.080000pt;}
.fs4_c00326{font-size:48.640000pt;}
.fs8_c00326{font-size:51.200000pt;}
.fs0_c00326{font-size:53.760000pt;}
.fsd_c00326{font-size:56.320000pt;}
.fsc_c00326{font-size:58.880000pt;}
.fsb_c00326{font-size:61.440000pt;}
.fsa_c00326{font-size:64.000000pt;}
.fs5_c00326{font-size:66.560000pt;}
.fs1_c00326{font-size:69.120000pt;}
.fsf_c00326{font-size:71.680000pt;}
.fs10_c00326{font-size:84.480000pt;}
.y0_c00326{bottom:0.000000pt;}
.y74_c00326{bottom:71.680000pt;}
.y72_c00326{bottom:75.520000pt;}
.y73_c00326{bottom:76.160000pt;}
.y7f_c00326{bottom:77.440000pt;}
.y6f_c00326{bottom:110.720000pt;}
.y70_c00326{bottom:112.000000pt;}
.y6e_c00326{bottom:113.920000pt;}
.y71_c00326{bottom:114.560000pt;}
.y6d_c00326{bottom:148.480000pt;}
.y6b_c00326{bottom:152.320000pt;}
.y6c_c00326{bottom:152.960000pt;}
.y7e_c00326{bottom:154.240000pt;}
.y7d_c00326{bottom:154.880000pt;}
.y69_c00326{bottom:182.400000pt;}
.y6a_c00326{bottom:190.080000pt;}
.y67_c00326{bottom:236.160000pt;}
.y65_c00326{bottom:238.720000pt;}
.y68_c00326{bottom:239.360000pt;}
.y66_c00326{bottom:240.000000pt;}
.y7c_c00326{bottom:240.640000pt;}
.y7b_c00326{bottom:241.280000pt;}
.y62_c00326{bottom:274.560000pt;}
.y63_c00326{bottom:275.200000pt;}
.y64_c00326{bottom:276.480000pt;}
.y60_c00326{bottom:277.120000pt;}
.y61_c00326{bottom:278.400000pt;}
.y5f_c00326{bottom:312.960000pt;}
.y5e_c00326{bottom:314.240000pt;}
.y5c_c00326{bottom:315.520000pt;}
.y5d_c00326{bottom:316.800000pt;}
.y7a_c00326{bottom:317.440000pt;}
.y76_c00326{bottom:318.080000pt;}
.y58_c00326{bottom:351.360000pt;}
.y5a_c00326{bottom:352.000000pt;}
.y57_c00326{bottom:352.640000pt;}
.y5b_c00326{bottom:353.280000pt;}
.y55_c00326{bottom:353.920000pt;}
.y59_c00326{bottom:354.560000pt;}
.y56_c00326{bottom:355.200000pt;}
.y79_c00326{bottom:355.840000pt;}
.y54_c00326{bottom:389.760000pt;}
.y53_c00326{bottom:391.040000pt;}
.y51_c00326{bottom:392.320000pt;}
.y78_c00326{bottom:392.960000pt;}
.y52_c00326{bottom:393.600000pt;}
.y77_c00326{bottom:394.240000pt;}
.y4d_c00326{bottom:428.160000pt;}
.y50_c00326{bottom:428.800000pt;}
.y4f_c00326{bottom:431.360000pt;}
.y4e_c00326{bottom:432.000000pt;}
.y49_c00326{bottom:456.960000pt;}
.y4b_c00326{bottom:457.600000pt;}
.y4a_c00326{bottom:458.240000pt;}
.y48_c00326{bottom:458.880000pt;}
.y75_c00326{bottom:460.160000pt;}
.y4c_c00326{bottom:460.800000pt;}
.y46_c00326{bottom:495.360000pt;}
.y45_c00326{bottom:496.000000pt;}
.y47_c00326{bottom:496.640000pt;}
.y43_c00326{bottom:497.280000pt;}
.y44_c00326{bottom:499.200000pt;}
.y3d_c00326{bottom:532.480000pt;}
.y41_c00326{bottom:533.120000pt;}
.y40_c00326{bottom:534.400000pt;}
.y3c_c00326{bottom:535.040000pt;}
.y3f_c00326{bottom:535.680000pt;}
.y3e_c00326{bottom:536.320000pt;}
.y42_c00326{bottom:536.960000pt;}
.y36_c00326{bottom:570.880000pt;}
.y37_c00326{bottom:572.160000pt;}
.y35_c00326{bottom:572.800000pt;}
.y3a_c00326{bottom:573.440000pt;}
.y39_c00326{bottom:574.080000pt;}
.y38_c00326{bottom:574.720000pt;}
.y3b_c00326{bottom:575.360000pt;}
.y32_c00326{bottom:609.280000pt;}
.y33_c00326{bottom:610.560000pt;}
.y30_c00326{bottom:611.200000pt;}
.y34_c00326{bottom:612.480000pt;}
.y31_c00326{bottom:613.760000pt;}
.y26_c00326{bottom:648.320000pt;}
.y25_c00326{bottom:651.520000pt;}
.y23_c00326{bottom:676.480000pt;}
.y22_c00326{bottom:677.760000pt;}
.y1f_c00326{bottom:678.400000pt;}
.y24_c00326{bottom:679.040000pt;}
.y20_c00326{bottom:679.680000pt;}
.y21_c00326{bottom:680.320000pt;}
.y1e_c00326{bottom:715.520000pt;}
.y1d_c00326{bottom:716.800000pt;}
.y1c_c00326{bottom:743.680000pt;}
.y19_c00326{bottom:745.600000pt;}
.y2f_c00326{bottom:746.240000pt;}
.y1a_c00326{bottom:747.520000pt;}
.y1b_c00326{bottom:748.160000pt;}
.y14_c00326{bottom:782.080000pt;}
.y17_c00326{bottom:782.720000pt;}
.y2e_c00326{bottom:783.360000pt;}
.y13_c00326{bottom:784.000000pt;}
.y18_c00326{bottom:784.640000pt;}
.y16_c00326{bottom:785.920000pt;}
.y15_c00326{bottom:786.560000pt;}
.y10_c00326{bottom:821.120000pt;}
.yf_c00326{bottom:822.400000pt;}
.y2d_c00326{bottom:823.680000pt;}
.y12_c00326{bottom:824.320000pt;}
.y11_c00326{bottom:824.960000pt;}
.yb_c00326{bottom:858.880000pt;}
.yd_c00326{bottom:859.520000pt;}
.y2b_c00326{bottom:860.160000pt;}
.ya_c00326{bottom:860.800000pt;}
.y2c_c00326{bottom:862.080000pt;}
.yc_c00326{bottom:862.720000pt;}
.ye_c00326{bottom:863.360000pt;}
.y6_c00326{bottom:897.280000pt;}
.y7_c00326{bottom:897.920000pt;}
.y29_c00326{bottom:898.560000pt;}
.y5_c00326{bottom:899.200000pt;}
.y9_c00326{bottom:899.840000pt;}
.y2a_c00326{bottom:900.480000pt;}
.y8_c00326{bottom:901.120000pt;}
.y2_c00326{bottom:935.680000pt;}
.y28_c00326{bottom:936.960000pt;}
.y1_c00326{bottom:937.600000pt;}
.y4_c00326{bottom:938.240000pt;}
.y3_c00326{bottom:939.520000pt;}
.y27_c00326{bottom:986.880000pt;}
.h10_c00326{height:25.341250pt;}
.h5_c00326{height:29.948750pt;}
.h9_c00326{height:32.252500pt;}
.hb_c00326{height:34.556250pt;}
.h8_c00326{height:39.163750pt;}
.h4_c00326{height:41.467500pt;}
.h6_c00326{height:43.771250pt;}
.ha_c00326{height:46.075000pt;}
.h2_c00326{height:48.378750pt;}
.hf_c00326{height:50.682500pt;}
.he_c00326{height:52.986250pt;}
.hd_c00326{height:55.290000pt;}
.hc_c00326{height:57.593750pt;}
.h7_c00326{height:59.897500pt;}
.h3_c00326{height:62.201250pt;}
.h11_c00326{height:64.505000pt;}
.h12_c00326{height:76.023750pt;}
.h0_c00326{height:1031.680000pt;}
.h1_c00326{height:1032.000000pt;}
.w0_c00326{width:673.280000pt;}
.w1_c00326{width:673.333333pt;}
.x0_c00326{left:0.000000pt;}
.x1_c00326{left:46.720000pt;}
.x2c_c00326{left:48.000000pt;}
.x38_c00326{left:49.280000pt;}
.x15_c00326{left:85.760000pt;}
.x35_c00326{left:93.440000pt;}
.x2a_c00326{left:104.320000pt;}
.x13_c00326{left:111.360000pt;}
.x2_c00326{left:112.640000pt;}
.x36_c00326{left:131.200000pt;}
.x1e_c00326{left:144.000000pt;}
.x30_c00326{left:149.760000pt;}
.x10_c00326{left:151.040000pt;}
.x14_c00326{left:160.640000pt;}
.x1f_c00326{left:182.400000pt;}
.xe_c00326{left:189.440000pt;}
.xa_c00326{left:190.720000pt;}
.x37_c00326{left:197.760000pt;}
.x11_c00326{left:199.680000pt;}
.x39_c00326{left:218.880000pt;}
.x3_c00326{left:228.480000pt;}
.x26_c00326{left:238.080000pt;}
.x31_c00326{left:246.400000pt;}
.x12_c00326{left:247.680000pt;}
.x33_c00326{left:257.920000pt;}
.x4_c00326{left:276.480000pt;}
.x16_c00326{left:286.080000pt;}
.x3a_c00326{left:294.400000pt;}
.x32_c00326{left:295.680000pt;}
.x2b_c00326{left:305.280000pt;}
.x2d_c00326{left:316.160000pt;}
.x21_c00326{left:323.200000pt;}
.x8_c00326{left:324.480000pt;}
.x34_c00326{left:343.680000pt;}
.x27_c00326{left:353.280000pt;}
.x2e_c00326{left:360.960000pt;}
.x22_c00326{left:363.520000pt;}
.x5_c00326{left:372.480000pt;}
.xc_c00326{left:382.080000pt;}
.xf_c00326{left:391.680000pt;}
.x28_c00326{left:401.280000pt;}
.xb_c00326{left:410.880000pt;}
.x9_c00326{left:412.160000pt;}
.x6_c00326{left:421.120000pt;}
.xd_c00326{left:430.080000pt;}
.x29_c00326{left:449.280000pt;}
.x2f_c00326{left:478.080000pt;}
.x20_c00326{left:487.040000pt;}
.x7_c00326{left:488.320000pt;}
.x25_c00326{left:506.240000pt;}
.x3d_c00326{left:515.200000pt;}
.x18_c00326{left:535.680000pt;}
.x1c_c00326{left:536.960000pt;}
.x23_c00326{left:564.480000pt;}
.x19_c00326{left:565.760000pt;}
.x3c_c00326{left:593.280000pt;}
.x17_c00326{left:597.120000pt;}
.x3b_c00326{left:600.960000pt;}
.x24_c00326{left:602.240000pt;}
.x1a_c00326{left:603.520000pt;}
.x1d_c00326{left:620.160000pt;}
.x1b_c00326{left:621.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_398a83989a1081b712548a36.woff2')format("woff");}.ff1_c00327{font-family:ff1_c00327;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m35_c00327{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m39_c00327{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);}
.m28_c00327{transform:matrix(0.235600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235600,0.000000,0.000000,0.250000,0,0);}
.m1b_c00327{transform:matrix(0.236725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236725,0.000000,0.000000,0.250000,0,0);}
.m40_c00327{transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);}
.m42_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);}
.m23_c00327{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);}
.m3e_c00327{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m45_c00327{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);}
.m33_c00327{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);}
.m25_c00327{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m2_c00327{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00327{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.me_c00327{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m21_c00327{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);}
.m34_c00327{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m10_c00327{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mb_c00327{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m37_c00327{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);}
.m2e_c00327{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00327{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m9_c00327{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m46_c00327{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m32_c00327{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m7_c00327{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m27_c00327{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m13_c00327{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m30_c00327{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00327{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m5_c00327{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mc_c00327{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m24_c00327{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00327{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00327{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m36_c00327{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m0_c00327{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00327{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m26_c00327{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.mf_c00327{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_c00327{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m16_c00327{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m8_c00327{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_c00327{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m22_c00327{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m19_c00327{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m12_c00327{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m4_c00327{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00327{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m47_c00327{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m11_c00327{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m3_c00327{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00327{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);}
.m2a_c00327{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m6_c00327{transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00327{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m14_c00327{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m20_c00327{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m38_c00327{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00327{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m15_c00327{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00327{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m18_c00327{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00327{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m44_c00327{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.md_c00327{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_c00327{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);}
.m1_c00327{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m29_c00327{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);}
.m43_c00327{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);}
.m31_c00327{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00327{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m41_c00327{transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);}
.v2_c00327{vertical-align:-8.640000px;}
.v3_c00327{vertical-align:-5.760000px;}
.v0_c00327{vertical-align:0.000000px;}
.v1_c00327{vertical-align:11.520000px;}
.ls0_c00327{letter-spacing:0.000000px;}
.sc__c00327{text-shadow:none;}
.sc0_c00327{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00327{-webkit-text-stroke:0px transparent;}
.sc0_c00327{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00327{word-spacing:-5.752320px;}
.ws0_c00327{word-spacing:-5.470080px;}
.ws5_c00327{word-spacing:0.000000px;}
.ws1_c00327{word-spacing:0.438960px;}
.ws3_c00327{word-spacing:14.243161px;}
.ws4_c00327{word-spacing:50.570400px;}
.fc0_c00327{color:transparent;}
.fsb_c00327{font-size:37.440000px;}
.fsa_c00327{font-size:43.200000px;}
.fs4_c00327{font-size:48.960000px;}
.fs1_c00327{font-size:51.840000px;}
.fs6_c00327{font-size:54.720000px;}
.fsd_c00327{font-size:57.600000px;}
.fs3_c00327{font-size:60.480000px;}
.fs5_c00327{font-size:63.360000px;}
.fs0_c00327{font-size:66.240000px;}
.fs7_c00327{font-size:69.120000px;}
.fs8_c00327{font-size:72.000000px;}
.fsc_c00327{font-size:74.880000px;}
.fs2_c00327{font-size:77.760000px;}
.fs9_c00327{font-size:80.640000px;}
.y0_c00327{bottom:0.000000px;}
.y78_c00327{bottom:63.360000px;}
.y76_c00327{bottom:65.520000px;}
.y77_c00327{bottom:66.240000px;}
.y79_c00327{bottom:67.680000px;}
.y75_c00327{bottom:68.400000px;}
.y73_c00327{bottom:108.000000px;}
.y72_c00327{bottom:108.720000px;}
.y74_c00327{bottom:110.880000px;}
.y6d_c00327{bottom:138.960000px;}
.y6f_c00327{bottom:139.680000px;}
.y70_c00327{bottom:141.840000px;}
.y6e_c00327{bottom:142.560000px;}
.y6c_c00327{bottom:143.280000px;}
.y71_c00327{bottom:144.000000px;}
.y69_c00327{bottom:182.160000px;}
.y6a_c00327{bottom:183.600000px;}
.y6b_c00327{bottom:185.760000px;}
.y64_c00327{bottom:214.560000px;}
.y65_c00327{bottom:215.280000px;}
.y67_c00327{bottom:216.720000px;}
.y68_c00327{bottom:217.440000px;}
.y63_c00327{bottom:218.160000px;}
.y66_c00327{bottom:218.880000px;}
.y3d_c00327{bottom:257.760000px;}
.y3c_c00327{bottom:259.920000px;}
.y3b_c00327{bottom:260.640000px;}
.y3e_c00327{bottom:261.360000px;}
.y62_c00327{bottom:262.080000px;}
.y3a_c00327{bottom:300.960000px;}
.y35_c00327{bottom:332.640000px;}
.y39_c00327{bottom:333.360000px;}
.y36_c00327{bottom:334.080000px;}
.y34_c00327{bottom:335.520000px;}
.y38_c00327{bottom:336.240000px;}
.y37_c00327{bottom:336.960000px;}
.y33_c00327{bottom:375.840000px;}
.y60_c00327{bottom:377.280000px;}
.y32_c00327{bottom:378.000000px;}
.y61_c00327{bottom:378.720000px;}
.y31_c00327{bottom:419.040000px;}
.y5e_c00327{bottom:420.480000px;}
.y5d_c00327{bottom:421.200000px;}
.y30_c00327{bottom:421.920000px;}
.y5f_c00327{bottom:422.640000px;}
.y2f_c00327{bottom:462.960000px;}
.y5b_c00327{bottom:463.680000px;}
.y5c_c00327{bottom:464.400000px;}
.y2d_c00327{bottom:465.120000px;}
.y2e_c00327{bottom:467.280000px;}
.y2c_c00327{bottom:506.160000px;}
.y5a_c00327{bottom:507.600000px;}
.y2a_c00327{bottom:508.320000px;}
.y59_c00327{bottom:509.760000px;}
.y2b_c00327{bottom:510.480000px;}
.y29_c00327{bottom:549.360000px;}
.y57_c00327{bottom:550.080000px;}
.y56_c00327{bottom:550.800000px;}
.y27_c00327{bottom:551.520000px;}
.y58_c00327{bottom:552.240000px;}
.y28_c00327{bottom:553.680000px;}
.y54_c00327{bottom:593.280000px;}
.y53_c00327{bottom:594.000000px;}
.y26_c00327{bottom:594.720000px;}
.y55_c00327{bottom:595.440000px;}
.y23_c00327{bottom:635.760000px;}
.y24_c00327{bottom:636.480000px;}
.y52_c00327{bottom:637.200000px;}
.y21_c00327{bottom:637.920000px;}
.y25_c00327{bottom:639.360000px;}
.y22_c00327{bottom:640.080000px;}
.y20_c00327{bottom:678.960000px;}
.y50_c00327{bottom:679.680000px;}
.y51_c00327{bottom:680.400000px;}
.y1e_c00327{bottom:681.120000px;}
.y1f_c00327{bottom:683.280000px;}
.y1b_c00327{bottom:723.600000px;}
.y1c_c00327{bottom:725.760000px;}
.y1d_c00327{bottom:726.480000px;}
.y19_c00327{bottom:753.840000px;}
.y4e_c00327{bottom:754.560000px;}
.y4d_c00327{bottom:755.280000px;}
.y17_c00327{bottom:756.000000px;}
.y4f_c00327{bottom:756.720000px;}
.y1a_c00327{bottom:757.440000px;}
.y18_c00327{bottom:758.160000px;}
.y15_c00327{bottom:796.320000px;}
.y4c_c00327{bottom:797.760000px;}
.y13_c00327{bottom:798.480000px;}
.y16_c00327{bottom:799.920000px;}
.y14_c00327{bottom:801.360000px;}
.y12_c00327{bottom:839.520000px;}
.y4b_c00327{bottom:840.240000px;}
.y10_c00327{bottom:840.960000px;}
.y11_c00327{bottom:841.680000px;}
.y4a_c00327{bottom:843.120000px;}
.yf_c00327{bottom:882.000000px;}
.y49_c00327{bottom:882.720000px;}
.y48_c00327{bottom:883.440000px;}
.yd_c00327{bottom:884.160000px;}
.ye_c00327{bottom:886.320000px;}
.yc_c00327{bottom:925.200000px;}
.y47_c00327{bottom:925.920000px;}
.ya_c00327{bottom:926.640000px;}
.yb_c00327{bottom:929.520000px;}
.y9_c00327{bottom:968.400000px;}
.y46_c00327{bottom:969.120000px;}
.y8_c00327{bottom:969.840000px;}
.y7_c00327{bottom:1011.600000px;}
.y44_c00327{bottom:1012.320000px;}
.y43_c00327{bottom:1013.040000px;}
.y4_c00327{bottom:1013.760000px;}
.y45_c00327{bottom:1014.480000px;}
.y5_c00327{bottom:1015.920000px;}
.y6_c00327{bottom:1016.640000px;}
.y42_c00327{bottom:1054.800000px;}
.y3_c00327{bottom:1055.520000px;}
.y40_c00327{bottom:1056.240000px;}
.y1_c00327{bottom:1056.960000px;}
.y41_c00327{bottom:1058.400000px;}
.y2_c00327{bottom:1059.120000px;}
.y3f_c00327{bottom:1105.920000px;}
.hd_c00327{height:33.692344px;}
.hc_c00327{height:38.875781px;}
.h6_c00327{height:44.059219px;}
.h3_c00327{height:46.650937px;}
.h8_c00327{height:49.242656px;}
.hf_c00327{height:51.834375px;}
.h5_c00327{height:54.426094px;}
.h7_c00327{height:57.017812px;}
.h2_c00327{height:59.609531px;}
.h9_c00327{height:62.201250px;}
.ha_c00327{height:64.792969px;}
.he_c00327{height:67.384687px;}
.h4_c00327{height:69.976406px;}
.hb_c00327{height:72.568125px;}
.h0_c00327{height:1156.320000px;}
.h1_c00327{height:1156.500000px;}
.w1_c00327{width:750.750000px;}
.w0_c00327{width:750.960000px;}
.x0_c00327{left:0.000000px;}
.x1_c00327{left:43.200000px;}
.x15_c00327{left:44.640000px;}
.x30_c00327{left:46.080000px;}
.x37_c00327{left:47.520000px;}
.x16_c00327{left:115.920000px;}
.x6_c00327{left:117.360000px;}
.x8_c00327{left:118.800000px;}
.xe_c00327{left:148.320000px;}
.xd_c00327{left:149.760000px;}
.x14_c00327{left:158.400000px;}
.x13_c00327{left:159.840000px;}
.x2_c00327{left:161.280000px;}
.x35_c00327{left:169.920000px;}
.x9_c00327{left:185.760000px;}
.xf_c00327{left:192.960000px;}
.x12_c00327{left:203.040000px;}
.x7_c00327{left:204.480000px;}
.x36_c00327{left:213.120000px;}
.x3_c00327{left:215.280000px;}
.x31_c00327{left:234.720000px;}
.x2c_c00327{left:257.040000px;}
.x2e_c00327{left:277.920000px;}
.x32_c00327{left:289.440000px;}
.x2d_c00327{left:300.240000px;}
.x1b_c00327{left:309.600000px;}
.x17_c00327{left:321.840000px;}
.x2f_c00327{left:331.200000px;}
.x10_c00327{left:354.960000px;}
.x4_c00327{left:367.200000px;}
.x18_c00327{left:375.840000px;}
.x33_c00327{left:386.640000px;}
.xa_c00327{left:398.880000px;}
.x11_c00327{left:408.960000px;}
.x5_c00327{left:421.200000px;}
.x19_c00327{left:429.840000px;}
.x34_c00327{left:440.640000px;}
.xb_c00327{left:442.080000px;}
.xc_c00327{left:484.560000px;}
.x1a_c00327{left:524.880000px;}
.x38_c00327{left:557.280000px;}
.x24_c00327{left:560.160000px;}
.x1d_c00327{left:561.600000px;}
.x22_c00327{left:572.400000px;}
.x28_c00327{left:590.400000px;}
.x27_c00327{left:592.560000px;}
.x20_c00327{left:594.000000px;}
.x29_c00327{left:623.520000px;}
.x26_c00327{left:624.960000px;}
.x1e_c00327{left:626.400000px;}
.x39_c00327{left:635.040000px;}
.x1c_c00327{left:650.160000px;}
.x2b_c00327{left:655.920000px;}
.x2a_c00327{left:666.720000px;}
.x23_c00327{left:668.160000px;}
.x1f_c00327{left:669.600000px;}
.x25_c00327{left:687.600000px;}
.x21_c00327{left:689.040000px;}
@media print{
.v2_c00327{vertical-align:-7.680000pt;}
.v3_c00327{vertical-align:-5.120000pt;}
.v0_c00327{vertical-align:0.000000pt;}
.v1_c00327{vertical-align:10.240000pt;}
.ls0_c00327{letter-spacing:0.000000pt;}
.ws2_c00327{word-spacing:-5.113173pt;}
.ws0_c00327{word-spacing:-4.862293pt;}
.ws5_c00327{word-spacing:0.000000pt;}
.ws1_c00327{word-spacing:0.390187pt;}
.ws3_c00327{word-spacing:12.660588pt;}
.ws4_c00327{word-spacing:44.951467pt;}
.fsb_c00327{font-size:33.280000pt;}
.fsa_c00327{font-size:38.400000pt;}
.fs4_c00327{font-size:43.520000pt;}
.fs1_c00327{font-size:46.080000pt;}
.fs6_c00327{font-size:48.640000pt;}
.fsd_c00327{font-size:51.200000pt;}
.fs3_c00327{font-size:53.760000pt;}
.fs5_c00327{font-size:56.320000pt;}
.fs0_c00327{font-size:58.880000pt;}
.fs7_c00327{font-size:61.440000pt;}
.fs8_c00327{font-size:64.000000pt;}
.fsc_c00327{font-size:66.560000pt;}
.fs2_c00327{font-size:69.120000pt;}
.fs9_c00327{font-size:71.680000pt;}
.y0_c00327{bottom:0.000000pt;}
.y78_c00327{bottom:56.320000pt;}
.y76_c00327{bottom:58.240000pt;}
.y77_c00327{bottom:58.880000pt;}
.y79_c00327{bottom:60.160000pt;}
.y75_c00327{bottom:60.800000pt;}
.y73_c00327{bottom:96.000000pt;}
.y72_c00327{bottom:96.640000pt;}
.y74_c00327{bottom:98.560000pt;}
.y6d_c00327{bottom:123.520000pt;}
.y6f_c00327{bottom:124.160000pt;}
.y70_c00327{bottom:126.080000pt;}
.y6e_c00327{bottom:126.720000pt;}
.y6c_c00327{bottom:127.360000pt;}
.y71_c00327{bottom:128.000000pt;}
.y69_c00327{bottom:161.920000pt;}
.y6a_c00327{bottom:163.200000pt;}
.y6b_c00327{bottom:165.120000pt;}
.y64_c00327{bottom:190.720000pt;}
.y65_c00327{bottom:191.360000pt;}
.y67_c00327{bottom:192.640000pt;}
.y68_c00327{bottom:193.280000pt;}
.y63_c00327{bottom:193.920000pt;}
.y66_c00327{bottom:194.560000pt;}
.y3d_c00327{bottom:229.120000pt;}
.y3c_c00327{bottom:231.040000pt;}
.y3b_c00327{bottom:231.680000pt;}
.y3e_c00327{bottom:232.320000pt;}
.y62_c00327{bottom:232.960000pt;}
.y3a_c00327{bottom:267.520000pt;}
.y35_c00327{bottom:295.680000pt;}
.y39_c00327{bottom:296.320000pt;}
.y36_c00327{bottom:296.960000pt;}
.y34_c00327{bottom:298.240000pt;}
.y38_c00327{bottom:298.880000pt;}
.y37_c00327{bottom:299.520000pt;}
.y33_c00327{bottom:334.080000pt;}
.y60_c00327{bottom:335.360000pt;}
.y32_c00327{bottom:336.000000pt;}
.y61_c00327{bottom:336.640000pt;}
.y31_c00327{bottom:372.480000pt;}
.y5e_c00327{bottom:373.760000pt;}
.y5d_c00327{bottom:374.400000pt;}
.y30_c00327{bottom:375.040000pt;}
.y5f_c00327{bottom:375.680000pt;}
.y2f_c00327{bottom:411.520000pt;}
.y5b_c00327{bottom:412.160000pt;}
.y5c_c00327{bottom:412.800000pt;}
.y2d_c00327{bottom:413.440000pt;}
.y2e_c00327{bottom:415.360000pt;}
.y2c_c00327{bottom:449.920000pt;}
.y5a_c00327{bottom:451.200000pt;}
.y2a_c00327{bottom:451.840000pt;}
.y59_c00327{bottom:453.120000pt;}
.y2b_c00327{bottom:453.760000pt;}
.y29_c00327{bottom:488.320000pt;}
.y57_c00327{bottom:488.960000pt;}
.y56_c00327{bottom:489.600000pt;}
.y27_c00327{bottom:490.240000pt;}
.y58_c00327{bottom:490.880000pt;}
.y28_c00327{bottom:492.160000pt;}
.y54_c00327{bottom:527.360000pt;}
.y53_c00327{bottom:528.000000pt;}
.y26_c00327{bottom:528.640000pt;}
.y55_c00327{bottom:529.280000pt;}
.y23_c00327{bottom:565.120000pt;}
.y24_c00327{bottom:565.760000pt;}
.y52_c00327{bottom:566.400000pt;}
.y21_c00327{bottom:567.040000pt;}
.y25_c00327{bottom:568.320000pt;}
.y22_c00327{bottom:568.960000pt;}
.y20_c00327{bottom:603.520000pt;}
.y50_c00327{bottom:604.160000pt;}
.y51_c00327{bottom:604.800000pt;}
.y1e_c00327{bottom:605.440000pt;}
.y1f_c00327{bottom:607.360000pt;}
.y1b_c00327{bottom:643.200000pt;}
.y1c_c00327{bottom:645.120000pt;}
.y1d_c00327{bottom:645.760000pt;}
.y19_c00327{bottom:670.080000pt;}
.y4e_c00327{bottom:670.720000pt;}
.y4d_c00327{bottom:671.360000pt;}
.y17_c00327{bottom:672.000000pt;}
.y4f_c00327{bottom:672.640000pt;}
.y1a_c00327{bottom:673.280000pt;}
.y18_c00327{bottom:673.920000pt;}
.y15_c00327{bottom:707.840000pt;}
.y4c_c00327{bottom:709.120000pt;}
.y13_c00327{bottom:709.760000pt;}
.y16_c00327{bottom:711.040000pt;}
.y14_c00327{bottom:712.320000pt;}
.y12_c00327{bottom:746.240000pt;}
.y4b_c00327{bottom:746.880000pt;}
.y10_c00327{bottom:747.520000pt;}
.y11_c00327{bottom:748.160000pt;}
.y4a_c00327{bottom:749.440000pt;}
.yf_c00327{bottom:784.000000pt;}
.y49_c00327{bottom:784.640000pt;}
.y48_c00327{bottom:785.280000pt;}
.yd_c00327{bottom:785.920000pt;}
.ye_c00327{bottom:787.840000pt;}
.yc_c00327{bottom:822.400000pt;}
.y47_c00327{bottom:823.040000pt;}
.ya_c00327{bottom:823.680000pt;}
.yb_c00327{bottom:826.240000pt;}
.y9_c00327{bottom:860.800000pt;}
.y46_c00327{bottom:861.440000pt;}
.y8_c00327{bottom:862.080000pt;}
.y7_c00327{bottom:899.200000pt;}
.y44_c00327{bottom:899.840000pt;}
.y43_c00327{bottom:900.480000pt;}
.y4_c00327{bottom:901.120000pt;}
.y45_c00327{bottom:901.760000pt;}
.y5_c00327{bottom:903.040000pt;}
.y6_c00327{bottom:903.680000pt;}
.y42_c00327{bottom:937.600000pt;}
.y3_c00327{bottom:938.240000pt;}
.y40_c00327{bottom:938.880000pt;}
.y1_c00327{bottom:939.520000pt;}
.y41_c00327{bottom:940.800000pt;}
.y2_c00327{bottom:941.440000pt;}
.y3f_c00327{bottom:983.040000pt;}
.hd_c00327{height:29.948750pt;}
.hc_c00327{height:34.556250pt;}
.h6_c00327{height:39.163750pt;}
.h3_c00327{height:41.467500pt;}
.h8_c00327{height:43.771250pt;}
.hf_c00327{height:46.075000pt;}
.h5_c00327{height:48.378750pt;}
.h7_c00327{height:50.682500pt;}
.h2_c00327{height:52.986250pt;}
.h9_c00327{height:55.290000pt;}
.ha_c00327{height:57.593750pt;}
.he_c00327{height:59.897500pt;}
.h4_c00327{height:62.201250pt;}
.hb_c00327{height:64.505000pt;}
.h0_c00327{height:1027.840000pt;}
.h1_c00327{height:1028.000000pt;}
.w1_c00327{width:667.333333pt;}
.w0_c00327{width:667.520000pt;}
.x0_c00327{left:0.000000pt;}
.x1_c00327{left:38.400000pt;}
.x15_c00327{left:39.680000pt;}
.x30_c00327{left:40.960000pt;}
.x37_c00327{left:42.240000pt;}
.x16_c00327{left:103.040000pt;}
.x6_c00327{left:104.320000pt;}
.x8_c00327{left:105.600000pt;}
.xe_c00327{left:131.840000pt;}
.xd_c00327{left:133.120000pt;}
.x14_c00327{left:140.800000pt;}
.x13_c00327{left:142.080000pt;}
.x2_c00327{left:143.360000pt;}
.x35_c00327{left:151.040000pt;}
.x9_c00327{left:165.120000pt;}
.xf_c00327{left:171.520000pt;}
.x12_c00327{left:180.480000pt;}
.x7_c00327{left:181.760000pt;}
.x36_c00327{left:189.440000pt;}
.x3_c00327{left:191.360000pt;}
.x31_c00327{left:208.640000pt;}
.x2c_c00327{left:228.480000pt;}
.x2e_c00327{left:247.040000pt;}
.x32_c00327{left:257.280000pt;}
.x2d_c00327{left:266.880000pt;}
.x1b_c00327{left:275.200000pt;}
.x17_c00327{left:286.080000pt;}
.x2f_c00327{left:294.400000pt;}
.x10_c00327{left:315.520000pt;}
.x4_c00327{left:326.400000pt;}
.x18_c00327{left:334.080000pt;}
.x33_c00327{left:343.680000pt;}
.xa_c00327{left:354.560000pt;}
.x11_c00327{left:363.520000pt;}
.x5_c00327{left:374.400000pt;}
.x19_c00327{left:382.080000pt;}
.x34_c00327{left:391.680000pt;}
.xb_c00327{left:392.960000pt;}
.xc_c00327{left:430.720000pt;}
.x1a_c00327{left:466.560000pt;}
.x38_c00327{left:495.360000pt;}
.x24_c00327{left:497.920000pt;}
.x1d_c00327{left:499.200000pt;}
.x22_c00327{left:508.800000pt;}
.x28_c00327{left:524.800000pt;}
.x27_c00327{left:526.720000pt;}
.x20_c00327{left:528.000000pt;}
.x29_c00327{left:554.240000pt;}
.x26_c00327{left:555.520000pt;}
.x1e_c00327{left:556.800000pt;}
.x39_c00327{left:564.480000pt;}
.x1c_c00327{left:577.920000pt;}
.x2b_c00327{left:583.040000pt;}
.x2a_c00327{left:592.640000pt;}
.x23_c00327{left:593.920000pt;}
.x1f_c00327{left:595.200000pt;}
.x25_c00327{left:611.200000pt;}
.x21_c00327{left:612.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_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_6e40eb15c346502c94ec1d61.woff2')format("woff");}.ff1_c00328{font-family:ff1_c00328;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4a_c00328{transform:matrix(0.153875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153875,0.000000,0.000000,0.250000,0,0);}
.m49_c00328{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m46_c00328{transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);}
.m3a_c00328{transform:matrix(0.228450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228450,0.000000,0.000000,0.250000,0,0);}
.m3b_c00328{transform:matrix(0.232225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232225,0.000000,0.000000,0.250000,0,0);}
.m45_c00328{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m41_c00328{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);}
.m39_c00328{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m36_c00328{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m33_c00328{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);}
.m3f_c00328{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m6_c00328{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);}
.m38_c00328{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00328{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m25_c00328{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m23_c00328{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00328{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m1_c00328{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m3_c00328{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m35_c00328{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m7_c00328{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mf_c00328{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4_c00328{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m42_c00328{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m18_c00328{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m40_c00328{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m44_c00328{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m8_c00328{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m28_c00328{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00328{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.me_c00328{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m2_c00328{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00328{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);}
.m32_c00328{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m48_c00328{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00328{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);}
.m37_c00328{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m0_c00328{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);}
.m34_c00328{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.ma_c00328{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m9_c00328{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m13_c00328{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.mb_c00328{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m26_c00328{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);}
.m15_c00328{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_c00328{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m20_c00328{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);}
.m10_c00328{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);}
.m24_c00328{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);}
.m47_c00328{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);}
.m3e_c00328{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m16_c00328{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m27_c00328{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);}
.m1b_c00328{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m19_c00328{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m29_c00328{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);}
.m2b_c00328{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00328{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.md_c00328{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_c00328{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);}
.m1d_c00328{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m21_c00328{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);}
.m31_c00328{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m5_c00328{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00328{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);}
.m12_c00328{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m14_c00328{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);}
.m11_c00328{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.mc_c00328{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00328{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);}
.m30_c00328{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m43_c00328{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00328{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00328{transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00328{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00328{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.v3_c00328{vertical-align:-2.880000px;}
.v0_c00328{vertical-align:0.000000px;}
.v2_c00328{vertical-align:2.880000px;}
.v1_c00328{vertical-align:5.760000px;}
.ls0_c00328{letter-spacing:0.000000px;}
.sc__c00328{text-shadow:none;}
.sc0_c00328{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00328{-webkit-text-stroke:0px transparent;}
.sc0_c00328{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00328{word-spacing:-5.437920px;}
.ws2_c00328{word-spacing:-2.116080px;}
.ws7_c00328{word-spacing:0.000000px;}
.ws0_c00328{word-spacing:6.537948px;}
.ws6_c00328{word-spacing:9.212400px;}
.ws4_c00328{word-spacing:13.136947px;}
.ws5_c00328{word-spacing:18.608400px;}
.ws3_c00328{word-spacing:47.972400px;}
.fc0_c00328{color:transparent;}
.fs11_c00328{font-size:20.160000px;}
.fsd_c00328{font-size:28.800000px;}
.fs5_c00328{font-size:37.440000px;}
.fsa_c00328{font-size:40.320000px;}
.fsc_c00328{font-size:43.200000px;}
.fs8_c00328{font-size:48.960000px;}
.fs2_c00328{font-size:51.840000px;}
.fs1_c00328{font-size:54.720000px;}
.fs7_c00328{font-size:57.600000px;}
.fs4_c00328{font-size:60.480000px;}
.fs0_c00328{font-size:63.360000px;}
.fs6_c00328{font-size:66.240000px;}
.fs9_c00328{font-size:69.120000px;}
.fsb_c00328{font-size:72.000000px;}
.fse_c00328{font-size:74.880000px;}
.fs3_c00328{font-size:77.760000px;}
.fsf_c00328{font-size:80.640000px;}
.fs10_c00328{font-size:83.520000px;}
.y0_c00328{bottom:0.000000px;}
.y4e_c00328{bottom:54.720000px;}
.y50_c00328{bottom:56.160000px;}
.y73_c00328{bottom:57.600000px;}
.y4d_c00328{bottom:58.320000px;}
.y51_c00328{bottom:59.040000px;}
.y4f_c00328{bottom:60.480000px;}
.y4a_c00328{bottom:97.920000px;}
.y4b_c00328{bottom:98.640000px;}
.y4c_c00328{bottom:101.520000px;}
.y49_c00328{bottom:102.960000px;}
.y72_c00328{bottom:103.680000px;}
.y48_c00328{bottom:141.840000px;}
.y71_c00328{bottom:144.720000px;}
.y70_c00328{bottom:145.440000px;}
.y47_c00328{bottom:146.160000px;}
.y6f_c00328{bottom:147.600000px;}
.y46_c00328{bottom:185.040000px;}
.y45_c00328{bottom:186.480000px;}
.y6e_c00328{bottom:189.360000px;}
.y44_c00328{bottom:190.080000px;}
.y6d_c00328{bottom:190.800000px;}
.y43_c00328{bottom:228.960000px;}
.y6a_c00328{bottom:231.840000px;}
.y6c_c00328{bottom:232.560000px;}
.y42_c00328{bottom:233.280000px;}
.y6b_c00328{bottom:234.720000px;}
.y41_c00328{bottom:272.880000px;}
.y69_c00328{bottom:275.040000px;}
.y40_c00328{bottom:275.760000px;}
.y3f_c00328{bottom:316.080000px;}
.y68_c00328{bottom:318.240000px;}
.y3e_c00328{bottom:318.960000px;}
.y67_c00328{bottom:321.120000px;}
.y3d_c00328{bottom:359.280000px;}
.y66_c00328{bottom:361.440000px;}
.y3c_c00328{bottom:362.160000px;}
.y3b_c00328{bottom:402.480000px;}
.y63_c00328{bottom:403.920000px;}
.y64_c00328{bottom:404.640000px;}
.y3a_c00328{bottom:405.360000px;}
.y65_c00328{bottom:407.520000px;}
.y39_c00328{bottom:445.680000px;}
.y38_c00328{bottom:448.560000px;}
.y62_c00328{bottom:449.280000px;}
.y61_c00328{bottom:490.320000px;}
.y60_c00328{bottom:491.040000px;}
.y35_c00328{bottom:491.760000px;}
.y37_c00328{bottom:492.480000px;}
.y36_c00328{bottom:493.200000px;}
.y33_c00328{bottom:532.080000px;}
.y32_c00328{bottom:532.800000px;}
.y31_c00328{bottom:533.520000px;}
.y2f_c00328{bottom:534.240000px;}
.y34_c00328{bottom:534.960000px;}
.y30_c00328{bottom:535.680000px;}
.y2d_c00328{bottom:576.000000px;}
.y2a_c00328{bottom:576.720000px;}
.y2e_c00328{bottom:578.160000px;}
.y2b_c00328{bottom:578.880000px;}
.y2c_c00328{bottom:579.600000px;}
.y29_c00328{bottom:607.680000px;}
.y28_c00328{bottom:608.400000px;}
.y27_c00328{bottom:609.120000px;}
.y26_c00328{bottom:609.840000px;}
.y5f_c00328{bottom:610.560000px;}
.y5e_c00328{bottom:611.280000px;}
.y23_c00328{bottom:650.880000px;}
.y22_c00328{bottom:651.600000px;}
.y20_c00328{bottom:652.320000px;}
.y24_c00328{bottom:653.040000px;}
.y25_c00328{bottom:653.760000px;}
.y21_c00328{bottom:654.480000px;}
.y5d_c00328{bottom:694.080000px;}
.y1e_c00328{bottom:694.800000px;}
.y1c_c00328{bottom:695.520000px;}
.y1f_c00328{bottom:696.960000px;}
.y1d_c00328{bottom:697.680000px;}
.y1b_c00328{bottom:738.000000px;}
.y1a_c00328{bottom:738.720000px;}
.y18_c00328{bottom:739.440000px;}
.y5c_c00328{bottom:740.160000px;}
.y19_c00328{bottom:740.880000px;}
.y16_c00328{bottom:781.920000px;}
.y5b_c00328{bottom:783.360000px;}
.y17_c00328{bottom:784.080000px;}
.y59_c00328{bottom:823.680000px;}
.y5a_c00328{bottom:824.400000px;}
.y14_c00328{bottom:825.120000px;}
.y15_c00328{bottom:825.840000px;}
.y12_c00328{bottom:867.600000px;}
.yf_c00328{bottom:868.320000px;}
.y10_c00328{bottom:869.040000px;}
.y13_c00328{bottom:869.760000px;}
.y11_c00328{bottom:871.200000px;}
.yd_c00328{bottom:910.800000px;}
.ya_c00328{bottom:911.520000px;}
.yb_c00328{bottom:912.240000px;}
.y58_c00328{bottom:912.960000px;}
.ye_c00328{bottom:913.680000px;}
.yc_c00328{bottom:914.400000px;}
.y8_c00328{bottom:954.000000px;}
.y7_c00328{bottom:954.720000px;}
.y57_c00328{bottom:956.160000px;}
.y9_c00328{bottom:957.600000px;}
.y6_c00328{bottom:995.760000px;}
.y55_c00328{bottom:997.200000px;}
.y4_c00328{bottom:997.920000px;}
.y56_c00328{bottom:998.640000px;}
.y5_c00328{bottom:1000.800000px;}
.y3_c00328{bottom:1038.960000px;}
.y54_c00328{bottom:1039.680000px;}
.y1_c00328{bottom:1040.400000px;}
.y53_c00328{bottom:1041.120000px;}
.y2_c00328{bottom:1043.280000px;}
.y52_c00328{bottom:1101.600000px;}
.h13_c00328{height:18.142031px;}
.hf_c00328{height:25.917187px;}
.h7_c00328{height:33.692344px;}
.hc_c00328{height:36.284062px;}
.he_c00328{height:38.875781px;}
.ha_c00328{height:44.059219px;}
.h4_c00328{height:46.650937px;}
.h3_c00328{height:49.242656px;}
.h9_c00328{height:51.834375px;}
.h6_c00328{height:54.426094px;}
.h2_c00328{height:57.017812px;}
.h15_c00328{height:57.306094px;}
.h8_c00328{height:59.609531px;}
.h14_c00328{height:60.186094px;}
.hb_c00328{height:62.201250px;}
.hd_c00328{height:64.792969px;}
.h10_c00328{height:67.384687px;}
.h5_c00328{height:69.976406px;}
.h11_c00328{height:72.568125px;}
.h12_c00328{height:75.159844px;}
.h1_c00328{height:1149.000000px;}
.h0_c00328{height:1149.120000px;}
.w0_c00328{width:763.920000px;}
.w1_c00328{width:764.250000px;}
.x0_c00328{left:0.000000px;}
.x1_c00328{left:51.120000px;}
.x1a_c00328{left:52.560000px;}
.x1d_c00328{left:54.000000px;}
.x18_c00328{left:94.320000px;}
.x1b_c00328{left:123.120000px;}
.x19_c00328{left:124.560000px;}
.x2_c00328{left:126.000000px;}
.x3_c00328{left:167.760000px;}
.x5_c00328{left:169.920000px;}
.x4_c00328{left:212.400000px;}
.x7_c00328{left:222.480000px;}
.x6_c00328{left:223.920000px;}
.xc_c00328{left:233.280000px;}
.x1f_c00328{left:254.880000px;}
.x1c_c00328{left:265.680000px;}
.x8_c00328{left:277.200000px;}
.xd_c00328{left:288.000000px;}
.x20_c00328{left:308.880000px;}
.x13_c00328{left:311.040000px;}
.x12_c00328{left:319.680000px;}
.x9_c00328{left:321.840000px;}
.xe_c00328{left:331.200000px;}
.x11_c00328{left:342.720000px;}
.x14_c00328{left:353.520000px;}
.x1e_c00328{left:362.160000px;}
.xa_c00328{left:364.320000px;}
.xf_c00328{left:374.400000px;}
.x15_c00328{left:406.800000px;}
.x17_c00328{left:417.600000px;}
.xb_c00328{left:419.040000px;}
.x21_c00328{left:426.960000px;}
.x16_c00328{left:429.120000px;}
.x22_c00328{left:480.240000px;}
.x10_c00328{left:516.240000px;}
.x2c_c00328{left:537.120000px;}
.x32_c00328{left:545.760000px;}
.x2d_c00328{left:547.200000px;}
.x2f_c00328{left:568.080000px;}
.x27_c00328{left:570.240000px;}
.x31_c00328{left:599.760000px;}
.x2a_c00328{left:601.200000px;}
.x24_c00328{left:602.640000px;}
.x30_c00328{left:632.160000px;}
.x29_c00328{left:633.600000px;}
.x25_c00328{left:635.040000px;}
.x28_c00328{left:666.720000px;}
.x33_c00328{left:673.920000px;}
.x2e_c00328{left:675.360000px;}
.x23_c00328{left:676.800000px;}
.x2b_c00328{left:696.240000px;}
.x26_c00328{left:697.680000px;}
@media print{
.v3_c00328{vertical-align:-2.560000pt;}
.v0_c00328{vertical-align:0.000000pt;}
.v2_c00328{vertical-align:2.560000pt;}
.v1_c00328{vertical-align:5.120000pt;}
.ls0_c00328{letter-spacing:0.000000pt;}
.ws1_c00328{word-spacing:-4.833707pt;}
.ws2_c00328{word-spacing:-1.880960pt;}
.ws7_c00328{word-spacing:0.000000pt;}
.ws0_c00328{word-spacing:5.811510pt;}
.ws6_c00328{word-spacing:8.188800pt;}
.ws4_c00328{word-spacing:11.677286pt;}
.ws5_c00328{word-spacing:16.540800pt;}
.ws3_c00328{word-spacing:42.642133pt;}
.fs11_c00328{font-size:17.920000pt;}
.fsd_c00328{font-size:25.600000pt;}
.fs5_c00328{font-size:33.280000pt;}
.fsa_c00328{font-size:35.840000pt;}
.fsc_c00328{font-size:38.400000pt;}
.fs8_c00328{font-size:43.520000pt;}
.fs2_c00328{font-size:46.080000pt;}
.fs1_c00328{font-size:48.640000pt;}
.fs7_c00328{font-size:51.200000pt;}
.fs4_c00328{font-size:53.760000pt;}
.fs0_c00328{font-size:56.320000pt;}
.fs6_c00328{font-size:58.880000pt;}
.fs9_c00328{font-size:61.440000pt;}
.fsb_c00328{font-size:64.000000pt;}
.fse_c00328{font-size:66.560000pt;}
.fs3_c00328{font-size:69.120000pt;}
.fsf_c00328{font-size:71.680000pt;}
.fs10_c00328{font-size:74.240000pt;}
.y0_c00328{bottom:0.000000pt;}
.y4e_c00328{bottom:48.640000pt;}
.y50_c00328{bottom:49.920000pt;}
.y73_c00328{bottom:51.200000pt;}
.y4d_c00328{bottom:51.840000pt;}
.y51_c00328{bottom:52.480000pt;}
.y4f_c00328{bottom:53.760000pt;}
.y4a_c00328{bottom:87.040000pt;}
.y4b_c00328{bottom:87.680000pt;}
.y4c_c00328{bottom:90.240000pt;}
.y49_c00328{bottom:91.520000pt;}
.y72_c00328{bottom:92.160000pt;}
.y48_c00328{bottom:126.080000pt;}
.y71_c00328{bottom:128.640000pt;}
.y70_c00328{bottom:129.280000pt;}
.y47_c00328{bottom:129.920000pt;}
.y6f_c00328{bottom:131.200000pt;}
.y46_c00328{bottom:164.480000pt;}
.y45_c00328{bottom:165.760000pt;}
.y6e_c00328{bottom:168.320000pt;}
.y44_c00328{bottom:168.960000pt;}
.y6d_c00328{bottom:169.600000pt;}
.y43_c00328{bottom:203.520000pt;}
.y6a_c00328{bottom:206.080000pt;}
.y6c_c00328{bottom:206.720000pt;}
.y42_c00328{bottom:207.360000pt;}
.y6b_c00328{bottom:208.640000pt;}
.y41_c00328{bottom:242.560000pt;}
.y69_c00328{bottom:244.480000pt;}
.y40_c00328{bottom:245.120000pt;}
.y3f_c00328{bottom:280.960000pt;}
.y68_c00328{bottom:282.880000pt;}
.y3e_c00328{bottom:283.520000pt;}
.y67_c00328{bottom:285.440000pt;}
.y3d_c00328{bottom:319.360000pt;}
.y66_c00328{bottom:321.280000pt;}
.y3c_c00328{bottom:321.920000pt;}
.y3b_c00328{bottom:357.760000pt;}
.y63_c00328{bottom:359.040000pt;}
.y64_c00328{bottom:359.680000pt;}
.y3a_c00328{bottom:360.320000pt;}
.y65_c00328{bottom:362.240000pt;}
.y39_c00328{bottom:396.160000pt;}
.y38_c00328{bottom:398.720000pt;}
.y62_c00328{bottom:399.360000pt;}
.y61_c00328{bottom:435.840000pt;}
.y60_c00328{bottom:436.480000pt;}
.y35_c00328{bottom:437.120000pt;}
.y37_c00328{bottom:437.760000pt;}
.y36_c00328{bottom:438.400000pt;}
.y33_c00328{bottom:472.960000pt;}
.y32_c00328{bottom:473.600000pt;}
.y31_c00328{bottom:474.240000pt;}
.y2f_c00328{bottom:474.880000pt;}
.y34_c00328{bottom:475.520000pt;}
.y30_c00328{bottom:476.160000pt;}
.y2d_c00328{bottom:512.000000pt;}
.y2a_c00328{bottom:512.640000pt;}
.y2e_c00328{bottom:513.920000pt;}
.y2b_c00328{bottom:514.560000pt;}
.y2c_c00328{bottom:515.200000pt;}
.y29_c00328{bottom:540.160000pt;}
.y28_c00328{bottom:540.800000pt;}
.y27_c00328{bottom:541.440000pt;}
.y26_c00328{bottom:542.080000pt;}
.y5f_c00328{bottom:542.720000pt;}
.y5e_c00328{bottom:543.360000pt;}
.y23_c00328{bottom:578.560000pt;}
.y22_c00328{bottom:579.200000pt;}
.y20_c00328{bottom:579.840000pt;}
.y24_c00328{bottom:580.480000pt;}
.y25_c00328{bottom:581.120000pt;}
.y21_c00328{bottom:581.760000pt;}
.y5d_c00328{bottom:616.960000pt;}
.y1e_c00328{bottom:617.600000pt;}
.y1c_c00328{bottom:618.240000pt;}
.y1f_c00328{bottom:619.520000pt;}
.y1d_c00328{bottom:620.160000pt;}
.y1b_c00328{bottom:656.000000pt;}
.y1a_c00328{bottom:656.640000pt;}
.y18_c00328{bottom:657.280000pt;}
.y5c_c00328{bottom:657.920000pt;}
.y19_c00328{bottom:658.560000pt;}
.y16_c00328{bottom:695.040000pt;}
.y5b_c00328{bottom:696.320000pt;}
.y17_c00328{bottom:696.960000pt;}
.y59_c00328{bottom:732.160000pt;}
.y5a_c00328{bottom:732.800000pt;}
.y14_c00328{bottom:733.440000pt;}
.y15_c00328{bottom:734.080000pt;}
.y12_c00328{bottom:771.200000pt;}
.yf_c00328{bottom:771.840000pt;}
.y10_c00328{bottom:772.480000pt;}
.y13_c00328{bottom:773.120000pt;}
.y11_c00328{bottom:774.400000pt;}
.yd_c00328{bottom:809.600000pt;}
.ya_c00328{bottom:810.240000pt;}
.yb_c00328{bottom:810.880000pt;}
.y58_c00328{bottom:811.520000pt;}
.ye_c00328{bottom:812.160000pt;}
.yc_c00328{bottom:812.800000pt;}
.y8_c00328{bottom:848.000000pt;}
.y7_c00328{bottom:848.640000pt;}
.y57_c00328{bottom:849.920000pt;}
.y9_c00328{bottom:851.200000pt;}
.y6_c00328{bottom:885.120000pt;}
.y55_c00328{bottom:886.400000pt;}
.y4_c00328{bottom:887.040000pt;}
.y56_c00328{bottom:887.680000pt;}
.y5_c00328{bottom:889.600000pt;}
.y3_c00328{bottom:923.520000pt;}
.y54_c00328{bottom:924.160000pt;}
.y1_c00328{bottom:924.800000pt;}
.y53_c00328{bottom:925.440000pt;}
.y2_c00328{bottom:927.360000pt;}
.y52_c00328{bottom:979.200000pt;}
.h13_c00328{height:16.126250pt;}
.hf_c00328{height:23.037500pt;}
.h7_c00328{height:29.948750pt;}
.hc_c00328{height:32.252500pt;}
.he_c00328{height:34.556250pt;}
.ha_c00328{height:39.163750pt;}
.h4_c00328{height:41.467500pt;}
.h3_c00328{height:43.771250pt;}
.h9_c00328{height:46.075000pt;}
.h6_c00328{height:48.378750pt;}
.h2_c00328{height:50.682500pt;}
.h15_c00328{height:50.938750pt;}
.h8_c00328{height:52.986250pt;}
.h14_c00328{height:53.498750pt;}
.hb_c00328{height:55.290000pt;}
.hd_c00328{height:57.593750pt;}
.h10_c00328{height:59.897500pt;}
.h5_c00328{height:62.201250pt;}
.h11_c00328{height:64.505000pt;}
.h12_c00328{height:66.808750pt;}
.h1_c00328{height:1021.333333pt;}
.h0_c00328{height:1021.440000pt;}
.w0_c00328{width:679.040000pt;}
.w1_c00328{width:679.333333pt;}
.x0_c00328{left:0.000000pt;}
.x1_c00328{left:45.440000pt;}
.x1a_c00328{left:46.720000pt;}
.x1d_c00328{left:48.000000pt;}
.x18_c00328{left:83.840000pt;}
.x1b_c00328{left:109.440000pt;}
.x19_c00328{left:110.720000pt;}
.x2_c00328{left:112.000000pt;}
.x3_c00328{left:149.120000pt;}
.x5_c00328{left:151.040000pt;}
.x4_c00328{left:188.800000pt;}
.x7_c00328{left:197.760000pt;}
.x6_c00328{left:199.040000pt;}
.xc_c00328{left:207.360000pt;}
.x1f_c00328{left:226.560000pt;}
.x1c_c00328{left:236.160000pt;}
.x8_c00328{left:246.400000pt;}
.xd_c00328{left:256.000000pt;}
.x20_c00328{left:274.560000pt;}
.x13_c00328{left:276.480000pt;}
.x12_c00328{left:284.160000pt;}
.x9_c00328{left:286.080000pt;}
.xe_c00328{left:294.400000pt;}
.x11_c00328{left:304.640000pt;}
.x14_c00328{left:314.240000pt;}
.x1e_c00328{left:321.920000pt;}
.xa_c00328{left:323.840000pt;}
.xf_c00328{left:332.800000pt;}
.x15_c00328{left:361.600000pt;}
.x17_c00328{left:371.200000pt;}
.xb_c00328{left:372.480000pt;}
.x21_c00328{left:379.520000pt;}
.x16_c00328{left:381.440000pt;}
.x22_c00328{left:426.880000pt;}
.x10_c00328{left:458.880000pt;}
.x2c_c00328{left:477.440000pt;}
.x32_c00328{left:485.120000pt;}
.x2d_c00328{left:486.400000pt;}
.x2f_c00328{left:504.960000pt;}
.x27_c00328{left:506.880000pt;}
.x31_c00328{left:533.120000pt;}
.x2a_c00328{left:534.400000pt;}
.x24_c00328{left:535.680000pt;}
.x30_c00328{left:561.920000pt;}
.x29_c00328{left:563.200000pt;}
.x25_c00328{left:564.480000pt;}
.x28_c00328{left:592.640000pt;}
.x33_c00328{left:599.040000pt;}
.x2e_c00328{left:600.320000pt;}
.x23_c00328{left:601.600000pt;}
.x2b_c00328{left:618.880000pt;}
.x26_c00328{left:620.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9d1614f974a761e8f1fd9d15.woff2')format("woff");}.ff1_c00329{font-family:ff1_c00329;line-height:1.109863;font-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_c00329{transform:matrix(0.241550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241550,0.000000,0.000000,0.250000,0,0);}
.m1f_c00329{transform:matrix(0.243975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243975,0.000000,0.000000,0.250000,0,0);}
.m42_c00329{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m30_c00329{transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);}
.m9_c00329{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m13_c00329{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_c00329{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m18_c00329{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m39_c00329{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m3_c00329{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m23_c00329{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00329{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.mc_c00329{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00329{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m10_c00329{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m47_c00329{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m24_c00329{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m11_c00329{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m16_c00329{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m33_c00329{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.me_c00329{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00329{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m28_c00329{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m29_c00329{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00329{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m8_c00329{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m46_c00329{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00329{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.ma_c00329{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mf_c00329{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00329{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m31_c00329{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m5_c00329{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m0_c00329{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00329{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);}
.m38_c00329{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m15_c00329{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);}
.m22_c00329{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m12_c00329{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);}
.m3e_c00329{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m45_c00329{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);}
.m41_c00329{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m4_c00329{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m37_c00329{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m6_c00329{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m44_c00329{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.md_c00329{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m17_c00329{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m20_c00329{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);}
.m36_c00329{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);}
.m34_c00329{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);}
.m25_c00329{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m26_c00329{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00329{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);}
.m3d_c00329{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00329{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00329{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);}
.m35_c00329{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00329{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);}
.m21_c00329{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m32_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);}
.m2_c00329{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m27_c00329{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);}
.m2f_c00329{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.mb_c00329{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00329{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m48_c00329{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m19_c00329{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00329{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m43_c00329{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m14_c00329{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00329{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.m40_c00329{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.v1_c00329{vertical-align:-2.880000px;}
.v0_c00329{vertical-align:0.000000px;}
.v3_c00329{vertical-align:2.880000px;}
.v2_c00329{vertical-align:5.760000px;}
.ls0_c00329{letter-spacing:0.000000px;}
.sc__c00329{text-shadow:none;}
.sc0_c00329{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00329{-webkit-text-stroke:0px transparent;}
.sc0_c00329{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00329{word-spacing:0.000000px;}
.ws3_c00329{word-spacing:7.886400px;}
.ws1_c00329{word-spacing:13.140000px;}
.ws0_c00329{word-spacing:40.621200px;}
.ws2_c00329{word-spacing:45.138000px;}
.fc0_c00329{color:transparent;}
.fsb_c00329{font-size:37.440000px;}
.fsa_c00329{font-size:46.080000px;}
.fs9_c00329{font-size:48.960000px;}
.fs2_c00329{font-size:51.840000px;}
.fs7_c00329{font-size:54.720000px;}
.fs8_c00329{font-size:57.600000px;}
.fs4_c00329{font-size:60.480000px;}
.fsc_c00329{font-size:63.360000px;}
.fs0_c00329{font-size:66.240000px;}
.fs5_c00329{font-size:69.120000px;}
.fs3_c00329{font-size:72.000000px;}
.fs1_c00329{font-size:74.880000px;}
.fs6_c00329{font-size:77.760000px;}
.y0_c00329{bottom:0.000000px;}
.y5a_c00329{bottom:40.320000px;}
.y5b_c00329{bottom:41.760000px;}
.y59_c00329{bottom:44.640000px;}
.y5c_c00329{bottom:45.360000px;}
.y78_c00329{bottom:46.800000px;}
.y56_c00329{bottom:83.520000px;}
.y58_c00329{bottom:85.680000px;}
.y55_c00329{bottom:87.840000px;}
.y57_c00329{bottom:88.560000px;}
.y54_c00329{bottom:131.040000px;}
.y53_c00329{bottom:131.760000px;}
.y51_c00329{bottom:159.840000px;}
.y50_c00329{bottom:161.280000px;}
.y52_c00329{bottom:162.000000px;}
.y4f_c00329{bottom:162.720000px;}
.y4e_c00329{bottom:163.440000px;}
.y4d_c00329{bottom:202.320000px;}
.y4c_c00329{bottom:205.920000px;}
.y76_c00329{bottom:206.640000px;}
.y77_c00329{bottom:207.360000px;}
.y4b_c00329{bottom:245.520000px;}
.y4a_c00329{bottom:249.120000px;}
.y75_c00329{bottom:252.000000px;}
.y49_c00329{bottom:288.000000px;}
.y74_c00329{bottom:290.880000px;}
.y48_c00329{bottom:291.600000px;}
.y47_c00329{bottom:331.200000px;}
.y71_c00329{bottom:334.080000px;}
.y73_c00329{bottom:334.800000px;}
.y46_c00329{bottom:335.520000px;}
.y72_c00329{bottom:336.960000px;}
.y45_c00329{bottom:375.120000px;}
.y6e_c00329{bottom:376.560000px;}
.y70_c00329{bottom:377.280000px;}
.y44_c00329{bottom:378.000000px;}
.y6f_c00329{bottom:380.160000px;}
.y41_c00329{bottom:418.320000px;}
.y42_c00329{bottom:419.040000px;}
.y6d_c00329{bottom:419.760000px;}
.y40_c00329{bottom:420.480000px;}
.y43_c00329{bottom:421.920000px;}
.y3f_c00329{bottom:461.520000px;}
.y6b_c00329{bottom:462.960000px;}
.y3d_c00329{bottom:463.680000px;}
.y6c_c00329{bottom:464.400000px;}
.y3e_c00329{bottom:465.120000px;}
.y39_c00329{bottom:504.720000px;}
.y3c_c00329{bottom:505.440000px;}
.y3b_c00329{bottom:506.160000px;}
.y38_c00329{bottom:506.880000px;}
.y6a_c00329{bottom:507.600000px;}
.y3a_c00329{bottom:508.320000px;}
.y35_c00329{bottom:547.200000px;}
.y37_c00329{bottom:548.640000px;}
.y34_c00329{bottom:549.360000px;}
.y67_c00329{bottom:550.080000px;}
.y68_c00329{bottom:550.800000px;}
.y36_c00329{bottom:551.520000px;}
.y69_c00329{bottom:552.960000px;}
.y30_c00329{bottom:591.120000px;}
.y2f_c00329{bottom:591.840000px;}
.y31_c00329{bottom:592.560000px;}
.y2e_c00329{bottom:593.280000px;}
.y33_c00329{bottom:594.720000px;}
.y32_c00329{bottom:595.440000px;}
.y2d_c00329{bottom:634.320000px;}
.y2c_c00329{bottom:635.760000px;}
.y65_c00329{bottom:636.480000px;}
.y66_c00329{bottom:638.640000px;}
.y2a_c00329{bottom:677.520000px;}
.y2b_c00329{bottom:678.240000px;}
.y29_c00329{bottom:678.960000px;}
.y62_c00329{bottom:679.680000px;}
.y64_c00329{bottom:680.400000px;}
.y63_c00329{bottom:681.120000px;}
.y26_c00329{bottom:720.720000px;}
.y28_c00329{bottom:721.440000px;}
.y25_c00329{bottom:722.160000px;}
.y61_c00329{bottom:722.880000px;}
.y27_c00329{bottom:724.320000px;}
.y23_c00329{bottom:763.920000px;}
.y22_c00329{bottom:764.640000px;}
.y60_c00329{bottom:765.360000px;}
.y24_c00329{bottom:766.800000px;}
.y21_c00329{bottom:805.680000px;}
.y1f_c00329{bottom:806.400000px;}
.y5f_c00329{bottom:807.120000px;}
.y1d_c00329{bottom:807.840000px;}
.y20_c00329{bottom:810.000000px;}
.y1e_c00329{bottom:810.720000px;}
.y1b_c00329{bottom:849.600000px;}
.y5e_c00329{bottom:850.320000px;}
.y5d_c00329{bottom:851.760000px;}
.y1c_c00329{bottom:853.200000px;}
.y1a_c00329{bottom:892.080000px;}
.y19_c00329{bottom:895.680000px;}
.y18_c00329{bottom:896.400000px;}
.y14_c00329{bottom:923.760000px;}
.y11_c00329{bottom:925.200000px;}
.y13_c00329{bottom:925.920000px;}
.y16_c00329{bottom:926.640000px;}
.y17_c00329{bottom:927.360000px;}
.y15_c00329{bottom:928.080000px;}
.y12_c00329{bottom:928.800000px;}
.yb_c00329{bottom:966.240000px;}
.y9_c00329{bottom:966.960000px;}
.y10_c00329{bottom:967.680000px;}
.y8_c00329{bottom:968.400000px;}
.ya_c00329{bottom:970.560000px;}
.y6_c00329{bottom:1010.160000px;}
.ye_c00329{bottom:1010.880000px;}
.y4_c00329{bottom:1011.600000px;}
.yf_c00329{bottom:1013.040000px;}
.y7_c00329{bottom:1013.760000px;}
.y5_c00329{bottom:1014.480000px;}
.y2_c00329{bottom:1054.080000px;}
.y1_c00329{bottom:1054.800000px;}
.yd_c00329{bottom:1056.240000px;}
.y3_c00329{bottom:1058.400000px;}
.yc_c00329{bottom:1108.080000px;}
.hd_c00329{height:33.692344px;}
.hc_c00329{height:41.467500px;}
.hb_c00329{height:44.059219px;}
.h4_c00329{height:46.650937px;}
.h9_c00329{height:49.242656px;}
.ha_c00329{height:51.834375px;}
.h6_c00329{height:54.426094px;}
.he_c00329{height:57.017812px;}
.hf_c00329{height:57.594375px;}
.h2_c00329{height:59.609531px;}
.h7_c00329{height:62.201250px;}
.h5_c00329{height:64.792969px;}
.h3_c00329{height:67.384687px;}
.h8_c00329{height:69.976406px;}
.h1_c00329{height:1147.500000px;}
.h0_c00329{height:1147.680000px;}
.w1_c00329{width:772.500000px;}
.w0_c00329{width:772.560000px;}
.x0_c00329{left:0.000000px;}
.x1_c00329{left:65.520000px;}
.x5_c00329{left:66.960000px;}
.x22_c00329{left:68.400000px;}
.x23_c00329{left:70.560000px;}
.x28_c00329{left:72.000000px;}
.x2_c00329{left:139.680000px;}
.x1b_c00329{left:141.120000px;}
.x24_c00329{left:182.160000px;}
.x6_c00329{left:183.600000px;}
.x14_c00329{left:192.960000px;}
.x7_c00329{left:226.800000px;}
.x15_c00329{left:237.600000px;}
.x3_c00329{left:259.200000px;}
.x16_c00329{left:270.000000px;}
.x1c_c00329{left:281.520000px;}
.x20_c00329{left:291.600000px;}
.x4_c00329{left:313.920000px;}
.x29_c00329{left:322.560000px;}
.x8_c00329{left:324.720000px;}
.x21_c00329{left:334.800000px;}
.x17_c00329{left:346.320000px;}
.xa_c00329{left:356.400000px;}
.x9_c00329{left:378.720000px;}
.x18_c00329{left:399.600000px;}
.x2a_c00329{left:408.240000px;}
.xb_c00329{left:410.400000px;}
.x27_c00329{left:419.760000px;}
.x25_c00329{left:430.560000px;}
.x19_c00329{left:442.800000px;}
.x2b_c00329{left:452.160000px;}
.x1f_c00329{left:453.600000px;}
.x1d_c00329{left:464.400000px;}
.x26_c00329{left:485.280000px;}
.x1a_c00329{left:496.800000px;}
.x1e_c00329{left:506.880000px;}
.x2c_c00329{left:560.880000px;}
.xd_c00329{left:562.320000px;}
.x13_c00329{left:572.400000px;}
.x32_c00329{left:581.040000px;}
.xe_c00329{left:583.200000px;}
.x30_c00329{left:592.560000px;}
.x2e_c00329{left:594.000000px;}
.x33_c00329{left:613.440000px;}
.x10_c00329{left:616.320000px;}
.x31_c00329{left:647.280000px;}
.x11_c00329{left:648.720000px;}
.x2f_c00329{left:658.800000px;}
.xc_c00329{left:679.680000px;}
.x2d_c00329{left:689.760000px;}
.xf_c00329{left:691.200000px;}
.x12_c00329{left:711.360000px;}
@media print{
.v1_c00329{vertical-align:-2.560000pt;}
.v0_c00329{vertical-align:0.000000pt;}
.v3_c00329{vertical-align:2.560000pt;}
.v2_c00329{vertical-align:5.120000pt;}
.ls0_c00329{letter-spacing:0.000000pt;}
.ws4_c00329{word-spacing:0.000000pt;}
.ws3_c00329{word-spacing:7.010133pt;}
.ws1_c00329{word-spacing:11.680000pt;}
.ws0_c00329{word-spacing:36.107733pt;}
.ws2_c00329{word-spacing:40.122667pt;}
.fsb_c00329{font-size:33.280000pt;}
.fsa_c00329{font-size:40.960000pt;}
.fs9_c00329{font-size:43.520000pt;}
.fs2_c00329{font-size:46.080000pt;}
.fs7_c00329{font-size:48.640000pt;}
.fs8_c00329{font-size:51.200000pt;}
.fs4_c00329{font-size:53.760000pt;}
.fsc_c00329{font-size:56.320000pt;}
.fs0_c00329{font-size:58.880000pt;}
.fs5_c00329{font-size:61.440000pt;}
.fs3_c00329{font-size:64.000000pt;}
.fs1_c00329{font-size:66.560000pt;}
.fs6_c00329{font-size:69.120000pt;}
.y0_c00329{bottom:0.000000pt;}
.y5a_c00329{bottom:35.840000pt;}
.y5b_c00329{bottom:37.120000pt;}
.y59_c00329{bottom:39.680000pt;}
.y5c_c00329{bottom:40.320000pt;}
.y78_c00329{bottom:41.600000pt;}
.y56_c00329{bottom:74.240000pt;}
.y58_c00329{bottom:76.160000pt;}
.y55_c00329{bottom:78.080000pt;}
.y57_c00329{bottom:78.720000pt;}
.y54_c00329{bottom:116.480000pt;}
.y53_c00329{bottom:117.120000pt;}
.y51_c00329{bottom:142.080000pt;}
.y50_c00329{bottom:143.360000pt;}
.y52_c00329{bottom:144.000000pt;}
.y4f_c00329{bottom:144.640000pt;}
.y4e_c00329{bottom:145.280000pt;}
.y4d_c00329{bottom:179.840000pt;}
.y4c_c00329{bottom:183.040000pt;}
.y76_c00329{bottom:183.680000pt;}
.y77_c00329{bottom:184.320000pt;}
.y4b_c00329{bottom:218.240000pt;}
.y4a_c00329{bottom:221.440000pt;}
.y75_c00329{bottom:224.000000pt;}
.y49_c00329{bottom:256.000000pt;}
.y74_c00329{bottom:258.560000pt;}
.y48_c00329{bottom:259.200000pt;}
.y47_c00329{bottom:294.400000pt;}
.y71_c00329{bottom:296.960000pt;}
.y73_c00329{bottom:297.600000pt;}
.y46_c00329{bottom:298.240000pt;}
.y72_c00329{bottom:299.520000pt;}
.y45_c00329{bottom:333.440000pt;}
.y6e_c00329{bottom:334.720000pt;}
.y70_c00329{bottom:335.360000pt;}
.y44_c00329{bottom:336.000000pt;}
.y6f_c00329{bottom:337.920000pt;}
.y41_c00329{bottom:371.840000pt;}
.y42_c00329{bottom:372.480000pt;}
.y6d_c00329{bottom:373.120000pt;}
.y40_c00329{bottom:373.760000pt;}
.y43_c00329{bottom:375.040000pt;}
.y3f_c00329{bottom:410.240000pt;}
.y6b_c00329{bottom:411.520000pt;}
.y3d_c00329{bottom:412.160000pt;}
.y6c_c00329{bottom:412.800000pt;}
.y3e_c00329{bottom:413.440000pt;}
.y39_c00329{bottom:448.640000pt;}
.y3c_c00329{bottom:449.280000pt;}
.y3b_c00329{bottom:449.920000pt;}
.y38_c00329{bottom:450.560000pt;}
.y6a_c00329{bottom:451.200000pt;}
.y3a_c00329{bottom:451.840000pt;}
.y35_c00329{bottom:486.400000pt;}
.y37_c00329{bottom:487.680000pt;}
.y34_c00329{bottom:488.320000pt;}
.y67_c00329{bottom:488.960000pt;}
.y68_c00329{bottom:489.600000pt;}
.y36_c00329{bottom:490.240000pt;}
.y69_c00329{bottom:491.520000pt;}
.y30_c00329{bottom:525.440000pt;}
.y2f_c00329{bottom:526.080000pt;}
.y31_c00329{bottom:526.720000pt;}
.y2e_c00329{bottom:527.360000pt;}
.y33_c00329{bottom:528.640000pt;}
.y32_c00329{bottom:529.280000pt;}
.y2d_c00329{bottom:563.840000pt;}
.y2c_c00329{bottom:565.120000pt;}
.y65_c00329{bottom:565.760000pt;}
.y66_c00329{bottom:567.680000pt;}
.y2a_c00329{bottom:602.240000pt;}
.y2b_c00329{bottom:602.880000pt;}
.y29_c00329{bottom:603.520000pt;}
.y62_c00329{bottom:604.160000pt;}
.y64_c00329{bottom:604.800000pt;}
.y63_c00329{bottom:605.440000pt;}
.y26_c00329{bottom:640.640000pt;}
.y28_c00329{bottom:641.280000pt;}
.y25_c00329{bottom:641.920000pt;}
.y61_c00329{bottom:642.560000pt;}
.y27_c00329{bottom:643.840000pt;}
.y23_c00329{bottom:679.040000pt;}
.y22_c00329{bottom:679.680000pt;}
.y60_c00329{bottom:680.320000pt;}
.y24_c00329{bottom:681.600000pt;}
.y21_c00329{bottom:716.160000pt;}
.y1f_c00329{bottom:716.800000pt;}
.y5f_c00329{bottom:717.440000pt;}
.y1d_c00329{bottom:718.080000pt;}
.y20_c00329{bottom:720.000000pt;}
.y1e_c00329{bottom:720.640000pt;}
.y1b_c00329{bottom:755.200000pt;}
.y5e_c00329{bottom:755.840000pt;}
.y5d_c00329{bottom:757.120000pt;}
.y1c_c00329{bottom:758.400000pt;}
.y1a_c00329{bottom:792.960000pt;}
.y19_c00329{bottom:796.160000pt;}
.y18_c00329{bottom:796.800000pt;}
.y14_c00329{bottom:821.120000pt;}
.y11_c00329{bottom:822.400000pt;}
.y13_c00329{bottom:823.040000pt;}
.y16_c00329{bottom:823.680000pt;}
.y17_c00329{bottom:824.320000pt;}
.y15_c00329{bottom:824.960000pt;}
.y12_c00329{bottom:825.600000pt;}
.yb_c00329{bottom:858.880000pt;}
.y9_c00329{bottom:859.520000pt;}
.y10_c00329{bottom:860.160000pt;}
.y8_c00329{bottom:860.800000pt;}
.ya_c00329{bottom:862.720000pt;}
.y6_c00329{bottom:897.920000pt;}
.ye_c00329{bottom:898.560000pt;}
.y4_c00329{bottom:899.200000pt;}
.yf_c00329{bottom:900.480000pt;}
.y7_c00329{bottom:901.120000pt;}
.y5_c00329{bottom:901.760000pt;}
.y2_c00329{bottom:936.960000pt;}
.y1_c00329{bottom:937.600000pt;}
.yd_c00329{bottom:938.880000pt;}
.y3_c00329{bottom:940.800000pt;}
.yc_c00329{bottom:984.960000pt;}
.hd_c00329{height:29.948750pt;}
.hc_c00329{height:36.860000pt;}
.hb_c00329{height:39.163750pt;}
.h4_c00329{height:41.467500pt;}
.h9_c00329{height:43.771250pt;}
.ha_c00329{height:46.075000pt;}
.h6_c00329{height:48.378750pt;}
.he_c00329{height:50.682500pt;}
.hf_c00329{height:51.195000pt;}
.h2_c00329{height:52.986250pt;}
.h7_c00329{height:55.290000pt;}
.h5_c00329{height:57.593750pt;}
.h3_c00329{height:59.897500pt;}
.h8_c00329{height:62.201250pt;}
.h1_c00329{height:1020.000000pt;}
.h0_c00329{height:1020.160000pt;}
.w1_c00329{width:686.666667pt;}
.w0_c00329{width:686.720000pt;}
.x0_c00329{left:0.000000pt;}
.x1_c00329{left:58.240000pt;}
.x5_c00329{left:59.520000pt;}
.x22_c00329{left:60.800000pt;}
.x23_c00329{left:62.720000pt;}
.x28_c00329{left:64.000000pt;}
.x2_c00329{left:124.160000pt;}
.x1b_c00329{left:125.440000pt;}
.x24_c00329{left:161.920000pt;}
.x6_c00329{left:163.200000pt;}
.x14_c00329{left:171.520000pt;}
.x7_c00329{left:201.600000pt;}
.x15_c00329{left:211.200000pt;}
.x3_c00329{left:230.400000pt;}
.x16_c00329{left:240.000000pt;}
.x1c_c00329{left:250.240000pt;}
.x20_c00329{left:259.200000pt;}
.x4_c00329{left:279.040000pt;}
.x29_c00329{left:286.720000pt;}
.x8_c00329{left:288.640000pt;}
.x21_c00329{left:297.600000pt;}
.x17_c00329{left:307.840000pt;}
.xa_c00329{left:316.800000pt;}
.x9_c00329{left:336.640000pt;}
.x18_c00329{left:355.200000pt;}
.x2a_c00329{left:362.880000pt;}
.xb_c00329{left:364.800000pt;}
.x27_c00329{left:373.120000pt;}
.x25_c00329{left:382.720000pt;}
.x19_c00329{left:393.600000pt;}
.x2b_c00329{left:401.920000pt;}
.x1f_c00329{left:403.200000pt;}
.x1d_c00329{left:412.800000pt;}
.x26_c00329{left:431.360000pt;}
.x1a_c00329{left:441.600000pt;}
.x1e_c00329{left:450.560000pt;}
.x2c_c00329{left:498.560000pt;}
.xd_c00329{left:499.840000pt;}
.x13_c00329{left:508.800000pt;}
.x32_c00329{left:516.480000pt;}
.xe_c00329{left:518.400000pt;}
.x30_c00329{left:526.720000pt;}
.x2e_c00329{left:528.000000pt;}
.x33_c00329{left:545.280000pt;}
.x10_c00329{left:547.840000pt;}
.x31_c00329{left:575.360000pt;}
.x11_c00329{left:576.640000pt;}
.x2f_c00329{left:585.600000pt;}
.xc_c00329{left:604.160000pt;}
.x2d_c00329{left:613.120000pt;}
.xf_c00329{left:614.400000pt;}
.x12_c00329{left:632.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8a6cd98048685fbfc2a02d15.woff2')format("woff");}.ff1_c00330{font-family:ff1_c00330;line-height:1.109863;font-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_c00330{transform:matrix(0.174225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174225,0.000000,0.000000,0.250000,0,0);}
.m1d_c00330{transform:matrix(0.220950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220950,0.000000,0.000000,0.250000,0,0);}
.m17_c00330{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);}
.m16_c00330{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m2e_c00330{transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);}
.m12_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);}
.mf_c00330{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);}
.m2b_c00330{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);}
.m43_c00330{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m29_c00330{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00330{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);}
.m42_c00330{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m19_c00330{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m26_c00330{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_c00330{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00330{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.ma_c00330{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00330{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00330{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m6_c00330{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m40_c00330{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m11_c00330{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00330{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m5_c00330{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m24_c00330{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m9_c00330{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00330{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m14_c00330{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m28_c00330{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2_c00330{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00330{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m25_c00330{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m45_c00330{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mc_c00330{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m0_c00330{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m15_c00330{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m13_c00330{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m18_c00330{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);}
.m47_c00330{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m10_c00330{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);}
.m3b_c00330{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00330{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);}
.m48_c00330{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);}
.m37_c00330{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00330{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m4_c00330{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);}
.m46_c00330{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m21_c00330{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);}
.m34_c00330{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m8_c00330{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);}
.m30_c00330{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);}
.m3e_c00330{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);}
.m36_c00330{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);}
.mb_c00330{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m33_c00330{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00330{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m1_c00330{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);}
.m3c_c00330{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m41_c00330{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m39_c00330{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m7_c00330{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.me_c00330{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m32_c00330{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m35_c00330{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m38_c00330{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m27_c00330{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m3_c00330{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);}
.m1c_c00330{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m22_c00330{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00330{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m31_c00330{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m23_c00330{transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);}
.m44_c00330{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m49_c00330{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.v0_c00330{vertical-align:0.000000px;}
.v1_c00330{vertical-align:2.880000px;}
.ls0_c00330{letter-spacing:0.000000px;}
.sc__c00330{text-shadow:none;}
.sc0_c00330{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00330{-webkit-text-stroke:0px transparent;}
.sc0_c00330{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00330{word-spacing:0.000000px;}
.ws0_c00330{word-spacing:9.212400px;}
.fc0_c00330{color:transparent;}
.fs3_c00330{font-size:37.440000px;}
.fsf_c00330{font-size:40.320000px;}
.fs9_c00330{font-size:46.080000px;}
.fs7_c00330{font-size:48.960000px;}
.fs1_c00330{font-size:51.840000px;}
.fsb_c00330{font-size:54.720000px;}
.fsc_c00330{font-size:57.600000px;}
.fs4_c00330{font-size:60.480000px;}
.fsa_c00330{font-size:63.360000px;}
.fs0_c00330{font-size:66.240000px;}
.fs6_c00330{font-size:69.120000px;}
.fs5_c00330{font-size:72.000000px;}
.fs2_c00330{font-size:74.880000px;}
.fs8_c00330{font-size:77.760000px;}
.fs10_c00330{font-size:80.640000px;}
.fse_c00330{font-size:89.280000px;}
.fsd_c00330{font-size:115.200000px;}
.y0_c00330{bottom:0.000000px;}
.y53_c00330{bottom:86.400000px;}
.y51_c00330{bottom:89.280000px;}
.y52_c00330{bottom:90.000000px;}
.y50_c00330{bottom:90.720000px;}
.y54_c00330{bottom:91.440000px;}
.y6c_c00330{bottom:92.160000px;}
.y4e_c00330{bottom:129.600000px;}
.y4d_c00330{bottom:131.040000px;}
.y6b_c00330{bottom:131.760000px;}
.y4f_c00330{bottom:132.480000px;}
.y4c_c00330{bottom:133.920000px;}
.y4b_c00330{bottom:172.800000px;}
.y4a_c00330{bottom:174.960000px;}
.y6a_c00330{bottom:175.680000px;}
.y49_c00330{bottom:177.120000px;}
.y48_c00330{bottom:215.280000px;}
.y47_c00330{bottom:217.440000px;}
.y68_c00330{bottom:218.880000px;}
.y46_c00330{bottom:219.600000px;}
.y69_c00330{bottom:221.040000px;}
.y45_c00330{bottom:259.200000px;}
.y67_c00330{bottom:261.360000px;}
.y65_c00330{bottom:262.080000px;}
.y44_c00330{bottom:262.800000px;}
.y66_c00330{bottom:264.240000px;}
.y41_c00330{bottom:302.400000px;}
.y43_c00330{bottom:303.840000px;}
.y42_c00330{bottom:304.560000px;}
.y64_c00330{bottom:305.280000px;}
.y3f_c00330{bottom:306.000000px;}
.y40_c00330{bottom:306.720000px;}
.y3d_c00330{bottom:347.040000px;}
.y3e_c00330{bottom:347.760000px;}
.y3b_c00330{bottom:348.480000px;}
.y3c_c00330{bottom:349.920000px;}
.y38_c00330{bottom:390.240000px;}
.y63_c00330{bottom:390.960000px;}
.y37_c00330{bottom:391.680000px;}
.y3a_c00330{bottom:392.400000px;}
.y39_c00330{bottom:393.120000px;}
.y35_c00330{bottom:432.000000px;}
.y36_c00330{bottom:432.720000px;}
.y62_c00330{bottom:433.440000px;}
.y34_c00330{bottom:435.600000px;}
.y33_c00330{bottom:475.200000px;}
.y60_c00330{bottom:476.640000px;}
.y5f_c00330{bottom:477.360000px;}
.y32_c00330{bottom:478.080000px;}
.y61_c00330{bottom:479.520000px;}
.y31_c00330{bottom:518.400000px;}
.y5d_c00330{bottom:519.840000px;}
.y5c_c00330{bottom:520.560000px;}
.y30_c00330{bottom:521.280000px;}
.y5e_c00330{bottom:522.000000px;}
.y2f_c00330{bottom:560.880000px;}
.y2c_c00330{bottom:561.600000px;}
.y2e_c00330{bottom:562.320000px;}
.y2b_c00330{bottom:563.760000px;}
.y5b_c00330{bottom:564.480000px;}
.y2d_c00330{bottom:565.200000px;}
.y29_c00330{bottom:604.080000px;}
.y5a_c00330{bottom:605.520000px;}
.y28_c00330{bottom:606.240000px;}
.y2a_c00330{bottom:608.400000px;}
.y27_c00330{bottom:646.560000px;}
.y58_c00330{bottom:648.000000px;}
.y24_c00330{bottom:648.720000px;}
.y59_c00330{bottom:650.160000px;}
.y26_c00330{bottom:650.880000px;}
.y25_c00330{bottom:651.600000px;}
.y23_c00330{bottom:689.760000px;}
.y57_c00330{bottom:691.200000px;}
.y21_c00330{bottom:691.920000px;}
.y22_c00330{bottom:694.080000px;}
.y20_c00330{bottom:732.960000px;}
.y56_c00330{bottom:733.680000px;}
.y55_c00330{bottom:734.400000px;}
.y1e_c00330{bottom:735.120000px;}
.y1f_c00330{bottom:737.280000px;}
.y1a_c00330{bottom:770.400000px;}
.y1b_c00330{bottom:778.320000px;}
.y1d_c00330{bottom:779.760000px;}
.y1c_c00330{bottom:780.480000px;}
.y16_c00330{bottom:819.360000px;}
.y15_c00330{bottom:830.160000px;}
.y18_c00330{bottom:830.880000px;}
.y12_c00330{bottom:831.600000px;}
.y13_c00330{bottom:832.320000px;}
.y19_c00330{bottom:833.040000px;}
.y17_c00330{bottom:833.760000px;}
.y14_c00330{bottom:834.480000px;}
.yc_c00330{bottom:873.360000px;}
.y10_c00330{bottom:874.080000px;}
.yb_c00330{bottom:874.800000px;}
.y11_c00330{bottom:876.240000px;}
.yf_c00330{bottom:916.560000px;}
.ya_c00330{bottom:917.280000px;}
.y9_c00330{bottom:959.760000px;}
.y8_c00330{bottom:960.480000px;}
.ye_c00330{bottom:962.640000px;}
.y6_c00330{bottom:1002.960000px;}
.y5_c00330{bottom:1003.680000px;}
.y7_c00330{bottom:1005.840000px;}
.y3_c00330{bottom:1046.160000px;}
.y1_c00330{bottom:1046.880000px;}
.y4_c00330{bottom:1047.600000px;}
.y2_c00330{bottom:1049.760000px;}
.yd_c00330{bottom:1107.360000px;}
.h5_c00330{height:33.692344px;}
.h11_c00330{height:36.284062px;}
.hb_c00330{height:41.467500px;}
.h9_c00330{height:44.059219px;}
.h3_c00330{height:46.650937px;}
.hd_c00330{height:49.242656px;}
.he_c00330{height:51.834375px;}
.h6_c00330{height:54.426094px;}
.hc_c00330{height:57.017812px;}
.h13_c00330{height:57.306094px;}
.h2_c00330{height:59.609531px;}
.h8_c00330{height:62.201250px;}
.h7_c00330{height:64.792969px;}
.h4_c00330{height:67.384687px;}
.ha_c00330{height:69.976406px;}
.h12_c00330{height:72.568125px;}
.h10_c00330{height:80.343281px;}
.hf_c00330{height:103.668750px;}
.h1_c00330{height:1149.750000px;}
.h0_c00330{height:1149.840000px;}
.w0_c00330{width:775.440000px;}
.w1_c00330{width:775.500000px;}
.x0_c00330{left:0.000000px;}
.x1_c00330{left:72.000000px;}
.x1d_c00330{left:73.440000px;}
.x27_c00330{left:74.880000px;}
.x19_c00330{left:123.840000px;}
.x12_c00330{left:144.720000px;}
.x2_c00330{left:146.880000px;}
.x1a_c00330{left:167.760000px;}
.x2a_c00330{left:177.840000px;}
.x24_c00330{left:179.280000px;}
.x3_c00330{left:189.360000px;}
.x13_c00330{left:200.160000px;}
.x2b_c00330{left:221.040000px;}
.x28_c00330{left:231.840000px;}
.x20_c00330{left:233.280000px;}
.x1b_c00330{left:241.920000px;}
.x14_c00330{left:252.720000px;}
.x22_c00330{left:254.880000px;}
.x1c_c00330{left:265.680000px;}
.x2c_c00330{left:276.480000px;}
.x1e_c00330{left:287.280000px;}
.x4_c00330{left:298.080000px;}
.x9_c00330{left:308.160000px;}
.x25_c00330{left:319.680000px;}
.x1f_c00330{left:329.760000px;}
.x5_c00330{left:341.280000px;}
.x29_c00330{left:351.360000px;}
.x23_c00330{left:372.960000px;}
.x7_c00330{left:395.280000px;}
.xa_c00330{left:406.080000px;}
.x21_c00330{left:416.880000px;}
.x6_c00330{left:427.680000px;}
.x8_c00330{left:437.760000px;}
.xb_c00330{left:461.520000px;}
.x15_c00330{left:470.160000px;}
.x26_c00330{left:490.320000px;}
.x16_c00330{left:557.280000px;}
.x2f_c00330{left:567.360000px;}
.x34_c00330{left:587.520000px;}
.xd_c00330{left:588.960000px;}
.x32_c00330{left:598.320000px;}
.x2d_c00330{left:600.480000px;}
.x30_c00330{left:619.920000px;}
.x17_c00330{left:622.080000px;}
.x33_c00330{left:630.720000px;}
.x31_c00330{left:653.040000px;}
.xe_c00330{left:654.480000px;}
.x11_c00330{left:665.280000px;}
.x18_c00330{left:686.880000px;}
.xf_c00330{left:695.520000px;}
.x10_c00330{left:697.680000px;}
.xc_c00330{left:699.840000px;}
.x35_c00330{left:714.960000px;}
.x2e_c00330{left:717.120000px;}
@media print{
.v0_c00330{vertical-align:0.000000pt;}
.v1_c00330{vertical-align:2.560000pt;}
.ls0_c00330{letter-spacing:0.000000pt;}
.ws1_c00330{word-spacing:0.000000pt;}
.ws0_c00330{word-spacing:8.188800pt;}
.fs3_c00330{font-size:33.280000pt;}
.fsf_c00330{font-size:35.840000pt;}
.fs9_c00330{font-size:40.960000pt;}
.fs7_c00330{font-size:43.520000pt;}
.fs1_c00330{font-size:46.080000pt;}
.fsb_c00330{font-size:48.640000pt;}
.fsc_c00330{font-size:51.200000pt;}
.fs4_c00330{font-size:53.760000pt;}
.fsa_c00330{font-size:56.320000pt;}
.fs0_c00330{font-size:58.880000pt;}
.fs6_c00330{font-size:61.440000pt;}
.fs5_c00330{font-size:64.000000pt;}
.fs2_c00330{font-size:66.560000pt;}
.fs8_c00330{font-size:69.120000pt;}
.fs10_c00330{font-size:71.680000pt;}
.fse_c00330{font-size:79.360000pt;}
.fsd_c00330{font-size:102.400000pt;}
.y0_c00330{bottom:0.000000pt;}
.y53_c00330{bottom:76.800000pt;}
.y51_c00330{bottom:79.360000pt;}
.y52_c00330{bottom:80.000000pt;}
.y50_c00330{bottom:80.640000pt;}
.y54_c00330{bottom:81.280000pt;}
.y6c_c00330{bottom:81.920000pt;}
.y4e_c00330{bottom:115.200000pt;}
.y4d_c00330{bottom:116.480000pt;}
.y6b_c00330{bottom:117.120000pt;}
.y4f_c00330{bottom:117.760000pt;}
.y4c_c00330{bottom:119.040000pt;}
.y4b_c00330{bottom:153.600000pt;}
.y4a_c00330{bottom:155.520000pt;}
.y6a_c00330{bottom:156.160000pt;}
.y49_c00330{bottom:157.440000pt;}
.y48_c00330{bottom:191.360000pt;}
.y47_c00330{bottom:193.280000pt;}
.y68_c00330{bottom:194.560000pt;}
.y46_c00330{bottom:195.200000pt;}
.y69_c00330{bottom:196.480000pt;}
.y45_c00330{bottom:230.400000pt;}
.y67_c00330{bottom:232.320000pt;}
.y65_c00330{bottom:232.960000pt;}
.y44_c00330{bottom:233.600000pt;}
.y66_c00330{bottom:234.880000pt;}
.y41_c00330{bottom:268.800000pt;}
.y43_c00330{bottom:270.080000pt;}
.y42_c00330{bottom:270.720000pt;}
.y64_c00330{bottom:271.360000pt;}
.y3f_c00330{bottom:272.000000pt;}
.y40_c00330{bottom:272.640000pt;}
.y3d_c00330{bottom:308.480000pt;}
.y3e_c00330{bottom:309.120000pt;}
.y3b_c00330{bottom:309.760000pt;}
.y3c_c00330{bottom:311.040000pt;}
.y38_c00330{bottom:346.880000pt;}
.y63_c00330{bottom:347.520000pt;}
.y37_c00330{bottom:348.160000pt;}
.y3a_c00330{bottom:348.800000pt;}
.y39_c00330{bottom:349.440000pt;}
.y35_c00330{bottom:384.000000pt;}
.y36_c00330{bottom:384.640000pt;}
.y62_c00330{bottom:385.280000pt;}
.y34_c00330{bottom:387.200000pt;}
.y33_c00330{bottom:422.400000pt;}
.y60_c00330{bottom:423.680000pt;}
.y5f_c00330{bottom:424.320000pt;}
.y32_c00330{bottom:424.960000pt;}
.y61_c00330{bottom:426.240000pt;}
.y31_c00330{bottom:460.800000pt;}
.y5d_c00330{bottom:462.080000pt;}
.y5c_c00330{bottom:462.720000pt;}
.y30_c00330{bottom:463.360000pt;}
.y5e_c00330{bottom:464.000000pt;}
.y2f_c00330{bottom:498.560000pt;}
.y2c_c00330{bottom:499.200000pt;}
.y2e_c00330{bottom:499.840000pt;}
.y2b_c00330{bottom:501.120000pt;}
.y5b_c00330{bottom:501.760000pt;}
.y2d_c00330{bottom:502.400000pt;}
.y29_c00330{bottom:536.960000pt;}
.y5a_c00330{bottom:538.240000pt;}
.y28_c00330{bottom:538.880000pt;}
.y2a_c00330{bottom:540.800000pt;}
.y27_c00330{bottom:574.720000pt;}
.y58_c00330{bottom:576.000000pt;}
.y24_c00330{bottom:576.640000pt;}
.y59_c00330{bottom:577.920000pt;}
.y26_c00330{bottom:578.560000pt;}
.y25_c00330{bottom:579.200000pt;}
.y23_c00330{bottom:613.120000pt;}
.y57_c00330{bottom:614.400000pt;}
.y21_c00330{bottom:615.040000pt;}
.y22_c00330{bottom:616.960000pt;}
.y20_c00330{bottom:651.520000pt;}
.y56_c00330{bottom:652.160000pt;}
.y55_c00330{bottom:652.800000pt;}
.y1e_c00330{bottom:653.440000pt;}
.y1f_c00330{bottom:655.360000pt;}
.y1a_c00330{bottom:684.800000pt;}
.y1b_c00330{bottom:691.840000pt;}
.y1d_c00330{bottom:693.120000pt;}
.y1c_c00330{bottom:693.760000pt;}
.y16_c00330{bottom:728.320000pt;}
.y15_c00330{bottom:737.920000pt;}
.y18_c00330{bottom:738.560000pt;}
.y12_c00330{bottom:739.200000pt;}
.y13_c00330{bottom:739.840000pt;}
.y19_c00330{bottom:740.480000pt;}
.y17_c00330{bottom:741.120000pt;}
.y14_c00330{bottom:741.760000pt;}
.yc_c00330{bottom:776.320000pt;}
.y10_c00330{bottom:776.960000pt;}
.yb_c00330{bottom:777.600000pt;}
.y11_c00330{bottom:778.880000pt;}
.yf_c00330{bottom:814.720000pt;}
.ya_c00330{bottom:815.360000pt;}
.y9_c00330{bottom:853.120000pt;}
.y8_c00330{bottom:853.760000pt;}
.ye_c00330{bottom:855.680000pt;}
.y6_c00330{bottom:891.520000pt;}
.y5_c00330{bottom:892.160000pt;}
.y7_c00330{bottom:894.080000pt;}
.y3_c00330{bottom:929.920000pt;}
.y1_c00330{bottom:930.560000pt;}
.y4_c00330{bottom:931.200000pt;}
.y2_c00330{bottom:933.120000pt;}
.yd_c00330{bottom:984.320000pt;}
.h5_c00330{height:29.948750pt;}
.h11_c00330{height:32.252500pt;}
.hb_c00330{height:36.860000pt;}
.h9_c00330{height:39.163750pt;}
.h3_c00330{height:41.467500pt;}
.hd_c00330{height:43.771250pt;}
.he_c00330{height:46.075000pt;}
.h6_c00330{height:48.378750pt;}
.hc_c00330{height:50.682500pt;}
.h13_c00330{height:50.938750pt;}
.h2_c00330{height:52.986250pt;}
.h8_c00330{height:55.290000pt;}
.h7_c00330{height:57.593750pt;}
.h4_c00330{height:59.897500pt;}
.ha_c00330{height:62.201250pt;}
.h12_c00330{height:64.505000pt;}
.h10_c00330{height:71.416250pt;}
.hf_c00330{height:92.150000pt;}
.h1_c00330{height:1022.000000pt;}
.h0_c00330{height:1022.080000pt;}
.w0_c00330{width:689.280000pt;}
.w1_c00330{width:689.333333pt;}
.x0_c00330{left:0.000000pt;}
.x1_c00330{left:64.000000pt;}
.x1d_c00330{left:65.280000pt;}
.x27_c00330{left:66.560000pt;}
.x19_c00330{left:110.080000pt;}
.x12_c00330{left:128.640000pt;}
.x2_c00330{left:130.560000pt;}
.x1a_c00330{left:149.120000pt;}
.x2a_c00330{left:158.080000pt;}
.x24_c00330{left:159.360000pt;}
.x3_c00330{left:168.320000pt;}
.x13_c00330{left:177.920000pt;}
.x2b_c00330{left:196.480000pt;}
.x28_c00330{left:206.080000pt;}
.x20_c00330{left:207.360000pt;}
.x1b_c00330{left:215.040000pt;}
.x14_c00330{left:224.640000pt;}
.x22_c00330{left:226.560000pt;}
.x1c_c00330{left:236.160000pt;}
.x2c_c00330{left:245.760000pt;}
.x1e_c00330{left:255.360000pt;}
.x4_c00330{left:264.960000pt;}
.x9_c00330{left:273.920000pt;}
.x25_c00330{left:284.160000pt;}
.x1f_c00330{left:293.120000pt;}
.x5_c00330{left:303.360000pt;}
.x29_c00330{left:312.320000pt;}
.x23_c00330{left:331.520000pt;}
.x7_c00330{left:351.360000pt;}
.xa_c00330{left:360.960000pt;}
.x21_c00330{left:370.560000pt;}
.x6_c00330{left:380.160000pt;}
.x8_c00330{left:389.120000pt;}
.xb_c00330{left:410.240000pt;}
.x15_c00330{left:417.920000pt;}
.x26_c00330{left:435.840000pt;}
.x16_c00330{left:495.360000pt;}
.x2f_c00330{left:504.320000pt;}
.x34_c00330{left:522.240000pt;}
.xd_c00330{left:523.520000pt;}
.x32_c00330{left:531.840000pt;}
.x2d_c00330{left:533.760000pt;}
.x30_c00330{left:551.040000pt;}
.x17_c00330{left:552.960000pt;}
.x33_c00330{left:560.640000pt;}
.x31_c00330{left:580.480000pt;}
.xe_c00330{left:581.760000pt;}
.x11_c00330{left:591.360000pt;}
.x18_c00330{left:610.560000pt;}
.xf_c00330{left:618.240000pt;}
.x10_c00330{left:620.160000pt;}
.xc_c00330{left:622.080000pt;}
.x35_c00330{left:635.520000pt;}
.x2e_c00330{left:637.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_bd751836ebb47bf3198a84b1.woff2')format("woff");}.ff1_c00331{font-family:ff1_c00331;line-height:1.109863;font-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_c00331{transform:matrix(0.163675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163675,0.000000,0.000000,0.250000,0,0);}
.m19_c00331{transform:matrix(0.199675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199675,0.000000,0.000000,0.250000,0,0);}
.m36_c00331{transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);}
.m24_c00331{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00331{transform:matrix(0.216300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216300,0.000000,0.000000,0.250000,0,0);}
.m43_c00331{transform:matrix(0.245275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245275,0.000000,0.000000,0.250000,0,0);}
.m44_c00331{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m47_c00331{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m40_c00331{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m21_c00331{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);}
.m29_c00331{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00331{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);}
.m3f_c00331{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m16_c00331{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mb_c00331{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);}
.m2b_c00331{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m41_c00331{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00331{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.mf_c00331{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2_c00331{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m9_c00331{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m8_c00331{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00331{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m12_c00331{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m31_c00331{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m6_c00331{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m30_c00331{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00331{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mc_c00331{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m13_c00331{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m26_c00331{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00331{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1_c00331{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00331{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m11_c00331{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m22_c00331{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m14_c00331{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m7_c00331{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);}
.m3a_c00331{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m46_c00331{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);}
.m32_c00331{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.ma_c00331{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.md_c00331{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m0_c00331{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m38_c00331{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);}
.m39_c00331{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m18_c00331{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);}
.m1d_c00331{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);}
.m5_c00331{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);}
.m2f_c00331{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);}
.m17_c00331{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00331{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);}
.m45_c00331{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);}
.m10_c00331{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m20_c00331{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);}
.m15_c00331{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m42_c00331{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00331{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00331{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m25_c00331{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m28_c00331{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);}
.m37_c00331{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);}
.m2d_c00331{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);}
.m1b_c00331{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m4_c00331{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m27_c00331{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);}
.m35_c00331{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00331{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m34_c00331{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00331{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m23_c00331{transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);}
.m33_c00331{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.v0_c00331{vertical-align:0.000000px;}
.ls0_c00331{letter-spacing:0.000000px;}
.sc__c00331{text-shadow:none;}
.sc0_c00331{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00331{-webkit-text-stroke:0px transparent;}
.sc0_c00331{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00331{word-spacing:0.000000px;}
.fc0_c00331{color:transparent;}
.fsf_c00331{font-size:37.440000px;}
.fsc_c00331{font-size:43.200000px;}
.fs4_c00331{font-size:46.080000px;}
.fsa_c00331{font-size:48.960000px;}
.fs5_c00331{font-size:51.840000px;}
.fs7_c00331{font-size:54.720000px;}
.fs8_c00331{font-size:57.600000px;}
.fse_c00331{font-size:60.480000px;}
.fs3_c00331{font-size:63.360000px;}
.fs9_c00331{font-size:66.240000px;}
.fs1_c00331{font-size:69.120000px;}
.fs6_c00331{font-size:72.000000px;}
.fs0_c00331{font-size:74.880000px;}
.fs2_c00331{font-size:77.760000px;}
.fsb_c00331{font-size:92.160000px;}
.fsd_c00331{font-size:95.040000px;}
.fs10_c00331{font-size:103.680000px;}
.y0_c00331{bottom:0.000000px;}
.y5e_c00331{bottom:21.600000px;}
.y60_c00331{bottom:23.040000px;}
.y62_c00331{bottom:23.760000px;}
.y5f_c00331{bottom:25.920000px;}
.y5d_c00331{bottom:26.640000px;}
.y61_c00331{bottom:27.360000px;}
.y5b_c00331{bottom:64.080000px;}
.y5c_c00331{bottom:65.520000px;}
.y63_c00331{bottom:68.400000px;}
.y5a_c00331{bottom:69.120000px;}
.y64_c00331{bottom:70.560000px;}
.y57_c00331{bottom:108.000000px;}
.y59_c00331{bottom:109.440000px;}
.y56_c00331{bottom:110.880000px;}
.y58_c00331{bottom:112.320000px;}
.y54_c00331{bottom:151.200000px;}
.y55_c00331{bottom:153.360000px;}
.y53_c00331{bottom:155.520000px;}
.y52_c00331{bottom:189.360000px;}
.y50_c00331{bottom:198.720000px;}
.y51_c00331{bottom:199.440000px;}
.y4e_c00331{bottom:237.600000px;}
.y4d_c00331{bottom:241.200000px;}
.y4f_c00331{bottom:241.920000px;}
.y4b_c00331{bottom:281.520000px;}
.y4c_c00331{bottom:283.680000px;}
.y4a_c00331{bottom:284.400000px;}
.y47_c00331{bottom:324.000000px;}
.y48_c00331{bottom:326.160000px;}
.y46_c00331{bottom:326.880000px;}
.y49_c00331{bottom:328.320000px;}
.y43_c00331{bottom:367.200000px;}
.y42_c00331{bottom:369.360000px;}
.y45_c00331{bottom:370.080000px;}
.y44_c00331{bottom:371.520000px;}
.y41_c00331{bottom:410.400000px;}
.y3e_c00331{bottom:443.520000px;}
.y3d_c00331{bottom:444.240000px;}
.y3b_c00331{bottom:444.960000px;}
.y3c_c00331{bottom:445.680000px;}
.y3f_c00331{bottom:446.400000px;}
.y40_c00331{bottom:447.120000px;}
.y38_c00331{bottom:485.280000px;}
.y39_c00331{bottom:487.440000px;}
.y37_c00331{bottom:488.160000px;}
.y3a_c00331{bottom:489.600000px;}
.y36_c00331{bottom:529.200000px;}
.y33_c00331{bottom:531.360000px;}
.y35_c00331{bottom:532.800000px;}
.y34_c00331{bottom:533.520000px;}
.y31_c00331{bottom:573.120000px;}
.y32_c00331{bottom:573.840000px;}
.y2f_c00331{bottom:574.560000px;}
.y30_c00331{bottom:576.720000px;}
.y2c_c00331{bottom:615.600000px;}
.y2e_c00331{bottom:616.320000px;}
.y2a_c00331{bottom:617.760000px;}
.y2d_c00331{bottom:619.200000px;}
.y2b_c00331{bottom:619.920000px;}
.y28_c00331{bottom:660.240000px;}
.y27_c00331{bottom:660.960000px;}
.y26_c00331{bottom:663.120000px;}
.y24_c00331{bottom:691.200000px;}
.y22_c00331{bottom:692.640000px;}
.y23_c00331{bottom:693.360000px;}
.y25_c00331{bottom:694.080000px;}
.y29_c00331{bottom:694.800000px;}
.y21_c00331{bottom:734.400000px;}
.y1e_c00331{bottom:735.840000px;}
.y1d_c00331{bottom:736.560000px;}
.y1f_c00331{bottom:738.000000px;}
.y20_c00331{bottom:738.720000px;}
.y1a_c00331{bottom:777.600000px;}
.y18_c00331{bottom:778.320000px;}
.y1b_c00331{bottom:779.040000px;}
.y1c_c00331{bottom:780.480000px;}
.y19_c00331{bottom:781.920000px;}
.y15_c00331{bottom:814.320000px;}
.y16_c00331{bottom:822.960000px;}
.y17_c00331{bottom:823.680000px;}
.y14_c00331{bottom:832.320000px;}
.y12_c00331{bottom:864.720000px;}
.yf_c00331{bottom:874.080000px;}
.y11_c00331{bottom:874.800000px;}
.ye_c00331{bottom:875.520000px;}
.y13_c00331{bottom:876.960000px;}
.y10_c00331{bottom:877.680000px;}
.yc_c00331{bottom:915.840000px;}
.yb_c00331{bottom:918.000000px;}
.yd_c00331{bottom:920.880000px;}
.ya_c00331{bottom:959.760000px;}
.y8_c00331{bottom:960.480000px;}
.y7_c00331{bottom:961.200000px;}
.y9_c00331{bottom:1002.240000px;}
.y6_c00331{bottom:1003.680000px;}
.y3_c00331{bottom:1045.440000px;}
.y2_c00331{bottom:1046.880000px;}
.y4_c00331{bottom:1047.600000px;}
.y5_c00331{bottom:1049.760000px;}
.y1_c00331{bottom:1105.200000px;}
.h11_c00331{height:33.692344px;}
.he_c00331{height:38.875781px;}
.h6_c00331{height:41.467500px;}
.hc_c00331{height:44.059219px;}
.h7_c00331{height:46.650937px;}
.h9_c00331{height:49.242656px;}
.ha_c00331{height:51.834375px;}
.h10_c00331{height:54.426094px;}
.h5_c00331{height:57.017812px;}
.hb_c00331{height:59.609531px;}
.h3_c00331{height:62.201250px;}
.h8_c00331{height:64.792969px;}
.h2_c00331{height:67.384687px;}
.h4_c00331{height:69.976406px;}
.hd_c00331{height:82.935000px;}
.hf_c00331{height:85.526719px;}
.h12_c00331{height:93.301875px;}
.h0_c00331{height:1142.640000px;}
.h1_c00331{height:1143.000000px;}
.w1_c00331{width:765.750000px;}
.w0_c00331{width:766.080000px;}
.x0_c00331{left:0.000000px;}
.x2_c00331{left:65.520000px;}
.x1a_c00331{left:66.960000px;}
.x2b_c00331{left:68.400000px;}
.x3_c00331{left:138.960000px;}
.xc_c00331{left:140.400000px;}
.x1d_c00331{left:153.360000px;}
.x15_c00331{left:171.360000px;}
.x1e_c00331{left:174.960000px;}
.x18_c00331{left:182.880000px;}
.x16_c00331{left:215.280000px;}
.x32_c00331{left:226.080000px;}
.xe_c00331{left:236.880000px;}
.x2e_c00331{left:259.200000px;}
.x4_c00331{left:270.000000px;}
.x28_c00331{left:280.080000px;}
.x17_c00331{left:290.160000px;}
.xf_c00331{left:291.600000px;}
.x30_c00331{left:313.200000px;}
.x31_c00331{left:323.280000px;}
.x10_c00331{left:334.800000px;}
.x20_c00331{left:345.600000px;}
.x5_c00331{left:355.680000px;}
.xd_c00331{left:367.200000px;}
.x25_c00331{left:378.000000px;}
.x21_c00331{left:388.080000px;}
.x6_c00331{left:409.680000px;}
.x2f_c00331{left:420.480000px;}
.x1b_c00331{left:431.280000px;}
.x11_c00331{left:442.800000px;}
.x7_c00331{left:453.600000px;}
.x33_c00331{left:462.240000px;}
.x26_c00331{left:474.480000px;}
.x22_c00331{left:484.560000px;}
.x1c_c00331{left:486.000000px;}
.x12_c00331{left:496.800000px;}
.x27_c00331{left:518.400000px;}
.x23_c00331{left:527.760000px;}
.x2c_c00331{left:559.440000px;}
.x29_c00331{left:560.880000px;}
.x2a_c00331{left:581.040000px;}
.x8_c00331{left:583.200000px;}
.x13_c00331{left:588.240000px;}
.xb_c00331{left:594.000000px;}
.x14_c00331{left:606.960000px;}
.x34_c00331{left:614.160000px;}
.x1f_c00331{left:615.600000px;}
.x2d_c00331{left:647.280000px;}
.x9_c00331{left:648.720000px;}
.x24_c00331{left:689.760000px;}
.xa_c00331{left:691.200000px;}
.x1_c00331{left:695.520000px;}
.x19_c00331{left:710.640000px;}
@media print{
.v0_c00331{vertical-align:0.000000pt;}
.ls0_c00331{letter-spacing:0.000000pt;}
.ws0_c00331{word-spacing:0.000000pt;}
.fsf_c00331{font-size:33.280000pt;}
.fsc_c00331{font-size:38.400000pt;}
.fs4_c00331{font-size:40.960000pt;}
.fsa_c00331{font-size:43.520000pt;}
.fs5_c00331{font-size:46.080000pt;}
.fs7_c00331{font-size:48.640000pt;}
.fs8_c00331{font-size:51.200000pt;}
.fse_c00331{font-size:53.760000pt;}
.fs3_c00331{font-size:56.320000pt;}
.fs9_c00331{font-size:58.880000pt;}
.fs1_c00331{font-size:61.440000pt;}
.fs6_c00331{font-size:64.000000pt;}
.fs0_c00331{font-size:66.560000pt;}
.fs2_c00331{font-size:69.120000pt;}
.fsb_c00331{font-size:81.920000pt;}
.fsd_c00331{font-size:84.480000pt;}
.fs10_c00331{font-size:92.160000pt;}
.y0_c00331{bottom:0.000000pt;}
.y5e_c00331{bottom:19.200000pt;}
.y60_c00331{bottom:20.480000pt;}
.y62_c00331{bottom:21.120000pt;}
.y5f_c00331{bottom:23.040000pt;}
.y5d_c00331{bottom:23.680000pt;}
.y61_c00331{bottom:24.320000pt;}
.y5b_c00331{bottom:56.960000pt;}
.y5c_c00331{bottom:58.240000pt;}
.y63_c00331{bottom:60.800000pt;}
.y5a_c00331{bottom:61.440000pt;}
.y64_c00331{bottom:62.720000pt;}
.y57_c00331{bottom:96.000000pt;}
.y59_c00331{bottom:97.280000pt;}
.y56_c00331{bottom:98.560000pt;}
.y58_c00331{bottom:99.840000pt;}
.y54_c00331{bottom:134.400000pt;}
.y55_c00331{bottom:136.320000pt;}
.y53_c00331{bottom:138.240000pt;}
.y52_c00331{bottom:168.320000pt;}
.y50_c00331{bottom:176.640000pt;}
.y51_c00331{bottom:177.280000pt;}
.y4e_c00331{bottom:211.200000pt;}
.y4d_c00331{bottom:214.400000pt;}
.y4f_c00331{bottom:215.040000pt;}
.y4b_c00331{bottom:250.240000pt;}
.y4c_c00331{bottom:252.160000pt;}
.y4a_c00331{bottom:252.800000pt;}
.y47_c00331{bottom:288.000000pt;}
.y48_c00331{bottom:289.920000pt;}
.y46_c00331{bottom:290.560000pt;}
.y49_c00331{bottom:291.840000pt;}
.y43_c00331{bottom:326.400000pt;}
.y42_c00331{bottom:328.320000pt;}
.y45_c00331{bottom:328.960000pt;}
.y44_c00331{bottom:330.240000pt;}
.y41_c00331{bottom:364.800000pt;}
.y3e_c00331{bottom:394.240000pt;}
.y3d_c00331{bottom:394.880000pt;}
.y3b_c00331{bottom:395.520000pt;}
.y3c_c00331{bottom:396.160000pt;}
.y3f_c00331{bottom:396.800000pt;}
.y40_c00331{bottom:397.440000pt;}
.y38_c00331{bottom:431.360000pt;}
.y39_c00331{bottom:433.280000pt;}
.y37_c00331{bottom:433.920000pt;}
.y3a_c00331{bottom:435.200000pt;}
.y36_c00331{bottom:470.400000pt;}
.y33_c00331{bottom:472.320000pt;}
.y35_c00331{bottom:473.600000pt;}
.y34_c00331{bottom:474.240000pt;}
.y31_c00331{bottom:509.440000pt;}
.y32_c00331{bottom:510.080000pt;}
.y2f_c00331{bottom:510.720000pt;}
.y30_c00331{bottom:512.640000pt;}
.y2c_c00331{bottom:547.200000pt;}
.y2e_c00331{bottom:547.840000pt;}
.y2a_c00331{bottom:549.120000pt;}
.y2d_c00331{bottom:550.400000pt;}
.y2b_c00331{bottom:551.040000pt;}
.y28_c00331{bottom:586.880000pt;}
.y27_c00331{bottom:587.520000pt;}
.y26_c00331{bottom:589.440000pt;}
.y24_c00331{bottom:614.400000pt;}
.y22_c00331{bottom:615.680000pt;}
.y23_c00331{bottom:616.320000pt;}
.y25_c00331{bottom:616.960000pt;}
.y29_c00331{bottom:617.600000pt;}
.y21_c00331{bottom:652.800000pt;}
.y1e_c00331{bottom:654.080000pt;}
.y1d_c00331{bottom:654.720000pt;}
.y1f_c00331{bottom:656.000000pt;}
.y20_c00331{bottom:656.640000pt;}
.y1a_c00331{bottom:691.200000pt;}
.y18_c00331{bottom:691.840000pt;}
.y1b_c00331{bottom:692.480000pt;}
.y1c_c00331{bottom:693.760000pt;}
.y19_c00331{bottom:695.040000pt;}
.y15_c00331{bottom:723.840000pt;}
.y16_c00331{bottom:731.520000pt;}
.y17_c00331{bottom:732.160000pt;}
.y14_c00331{bottom:739.840000pt;}
.y12_c00331{bottom:768.640000pt;}
.yf_c00331{bottom:776.960000pt;}
.y11_c00331{bottom:777.600000pt;}
.ye_c00331{bottom:778.240000pt;}
.y13_c00331{bottom:779.520000pt;}
.y10_c00331{bottom:780.160000pt;}
.yc_c00331{bottom:814.080000pt;}
.yb_c00331{bottom:816.000000pt;}
.yd_c00331{bottom:818.560000pt;}
.ya_c00331{bottom:853.120000pt;}
.y8_c00331{bottom:853.760000pt;}
.y7_c00331{bottom:854.400000pt;}
.y9_c00331{bottom:890.880000pt;}
.y6_c00331{bottom:892.160000pt;}
.y3_c00331{bottom:929.280000pt;}
.y2_c00331{bottom:930.560000pt;}
.y4_c00331{bottom:931.200000pt;}
.y5_c00331{bottom:933.120000pt;}
.y1_c00331{bottom:982.400000pt;}
.h11_c00331{height:29.948750pt;}
.he_c00331{height:34.556250pt;}
.h6_c00331{height:36.860000pt;}
.hc_c00331{height:39.163750pt;}
.h7_c00331{height:41.467500pt;}
.h9_c00331{height:43.771250pt;}
.ha_c00331{height:46.075000pt;}
.h10_c00331{height:48.378750pt;}
.h5_c00331{height:50.682500pt;}
.hb_c00331{height:52.986250pt;}
.h3_c00331{height:55.290000pt;}
.h8_c00331{height:57.593750pt;}
.h2_c00331{height:59.897500pt;}
.h4_c00331{height:62.201250pt;}
.hd_c00331{height:73.720000pt;}
.hf_c00331{height:76.023750pt;}
.h12_c00331{height:82.935000pt;}
.h0_c00331{height:1015.680000pt;}
.h1_c00331{height:1016.000000pt;}
.w1_c00331{width:680.666667pt;}
.w0_c00331{width:680.960000pt;}
.x0_c00331{left:0.000000pt;}
.x2_c00331{left:58.240000pt;}
.x1a_c00331{left:59.520000pt;}
.x2b_c00331{left:60.800000pt;}
.x3_c00331{left:123.520000pt;}
.xc_c00331{left:124.800000pt;}
.x1d_c00331{left:136.320000pt;}
.x15_c00331{left:152.320000pt;}
.x1e_c00331{left:155.520000pt;}
.x18_c00331{left:162.560000pt;}
.x16_c00331{left:191.360000pt;}
.x32_c00331{left:200.960000pt;}
.xe_c00331{left:210.560000pt;}
.x2e_c00331{left:230.400000pt;}
.x4_c00331{left:240.000000pt;}
.x28_c00331{left:248.960000pt;}
.x17_c00331{left:257.920000pt;}
.xf_c00331{left:259.200000pt;}
.x30_c00331{left:278.400000pt;}
.x31_c00331{left:287.360000pt;}
.x10_c00331{left:297.600000pt;}
.x20_c00331{left:307.200000pt;}
.x5_c00331{left:316.160000pt;}
.xd_c00331{left:326.400000pt;}
.x25_c00331{left:336.000000pt;}
.x21_c00331{left:344.960000pt;}
.x6_c00331{left:364.160000pt;}
.x2f_c00331{left:373.760000pt;}
.x1b_c00331{left:383.360000pt;}
.x11_c00331{left:393.600000pt;}
.x7_c00331{left:403.200000pt;}
.x33_c00331{left:410.880000pt;}
.x26_c00331{left:421.760000pt;}
.x22_c00331{left:430.720000pt;}
.x1c_c00331{left:432.000000pt;}
.x12_c00331{left:441.600000pt;}
.x27_c00331{left:460.800000pt;}
.x23_c00331{left:469.120000pt;}
.x2c_c00331{left:497.280000pt;}
.x29_c00331{left:498.560000pt;}
.x2a_c00331{left:516.480000pt;}
.x8_c00331{left:518.400000pt;}
.x13_c00331{left:522.880000pt;}
.xb_c00331{left:528.000000pt;}
.x14_c00331{left:539.520000pt;}
.x34_c00331{left:545.920000pt;}
.x1f_c00331{left:547.200000pt;}
.x2d_c00331{left:575.360000pt;}
.x9_c00331{left:576.640000pt;}
.x24_c00331{left:613.120000pt;}
.xa_c00331{left:614.400000pt;}
.x1_c00331{left:618.240000pt;}
.x19_c00331{left:631.680000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fb4210ebb199c73e1d049143.woff2')format("woff");}.ff1_c00332{font-family:ff1_c00332;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m36_c00332{transform:matrix(0.172375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172375,0.000000,0.000000,0.250000,0,0);}
.m42_c00332{transform:matrix(0.229700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229700,0.000000,0.000000,0.250000,0,0);}
.m2d_c00332{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m44_c00332{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m39_c00332{transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);}
.m5_c00332{transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);}
.m37_c00332{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m3_c00332{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m14_c00332{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00332{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m9_c00332{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1_c00332{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m18_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);}
.m2f_c00332{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m21_c00332{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00332{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m28_c00332{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m26_c00332{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);}
.m3e_c00332{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);}
.m2a_c00332{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m38_c00332{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m32_c00332{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m40_c00332{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00332{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m33_c00332{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00332{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m31_c00332{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m6_c00332{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m13_c00332{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m8_c00332{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m29_c00332{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m10_c00332{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2_c00332{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m17_c00332{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mf_c00332{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m4_c00332{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m11_c00332{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m23_c00332{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m34_c00332{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m16_c00332{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.ma_c00332{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00332{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00332{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m35_c00332{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);}
.m2c_c00332{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);}
.m0_c00332{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m43_c00332{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);}
.me_c00332{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.mc_c00332{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00332{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);}
.m25_c00332{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);}
.m27_c00332{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00332{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);}
.md_c00332{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00332{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00332{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.mb_c00332{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);}
.m24_c00332{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m22_c00332{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m12_c00332{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00332{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);}
.m3c_c00332{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m19_c00332{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m15_c00332{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m20_c00332{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m7_c00332{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m45_c00332{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00332{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m41_c00332{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m30_c00332{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.v0_c00332{vertical-align:0.000000px;}
.v1_c00332{vertical-align:2.880000px;}
.v2_c00332{vertical-align:5.760000px;}
.ls0_c00332{letter-spacing:0.000000px;}
.sc__c00332{text-shadow:none;}
.sc0_c00332{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00332{-webkit-text-stroke:0px transparent;}
.sc0_c00332{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00332{word-spacing:-6.902400px;}
.ws3_c00332{word-spacing:-1.840080px;}
.ws4_c00332{word-spacing:0.000000px;}
.ws0_c00332{word-spacing:11.693143px;}
.ws1_c00332{word-spacing:12.615600px;}
.fc0_c00332{color:transparent;}
.fs9_c00332{font-size:37.440000px;}
.fsa_c00332{font-size:48.960000px;}
.fs5_c00332{font-size:51.840000px;}
.fsb_c00332{font-size:54.720000px;}
.fs7_c00332{font-size:57.600000px;}
.fs0_c00332{font-size:60.480000px;}
.fs8_c00332{font-size:63.360000px;}
.fs3_c00332{font-size:66.240000px;}
.fs4_c00332{font-size:69.120000px;}
.fs2_c00332{font-size:72.000000px;}
.fs6_c00332{font-size:74.880000px;}
.fs1_c00332{font-size:77.760000px;}
.y0_c00332{bottom:0.000000px;}
.y6d_c00332{bottom:53.280000px;}
.y6e_c00332{bottom:54.720000px;}
.y6f_c00332{bottom:56.880000px;}
.y6c_c00332{bottom:57.600000px;}
.y70_c00332{bottom:58.320000px;}
.y67_c00332{bottom:96.480000px;}
.y68_c00332{bottom:97.200000px;}
.y69_c00332{bottom:100.080000px;}
.y66_c00332{bottom:100.800000px;}
.y6a_c00332{bottom:101.520000px;}
.y6b_c00332{bottom:102.240000px;}
.y62_c00332{bottom:139.680000px;}
.y64_c00332{bottom:141.840000px;}
.y63_c00332{bottom:143.280000px;}
.y61_c00332{bottom:144.000000px;}
.y65_c00332{bottom:144.720000px;}
.y5b_c00332{bottom:182.880000px;}
.y5c_c00332{bottom:183.600000px;}
.y5e_c00332{bottom:186.480000px;}
.y5a_c00332{bottom:187.200000px;}
.y5f_c00332{bottom:187.920000px;}
.y60_c00332{bottom:188.640000px;}
.y5d_c00332{bottom:189.360000px;}
.y55_c00332{bottom:226.080000px;}
.y56_c00332{bottom:226.800000px;}
.y58_c00332{bottom:228.960000px;}
.y57_c00332{bottom:229.680000px;}
.y54_c00332{bottom:230.400000px;}
.y59_c00332{bottom:231.840000px;}
.y50_c00332{bottom:270.000000px;}
.y51_c00332{bottom:271.440000px;}
.y53_c00332{bottom:272.880000px;}
.y4e_c00332{bottom:273.600000px;}
.y4f_c00332{bottom:274.320000px;}
.y52_c00332{bottom:275.040000px;}
.y4c_c00332{bottom:313.200000px;}
.y4d_c00332{bottom:315.360000px;}
.y4a_c00332{bottom:316.080000px;}
.y4b_c00332{bottom:316.800000px;}
.y47_c00332{bottom:356.400000px;}
.y46_c00332{bottom:357.840000px;}
.y49_c00332{bottom:358.560000px;}
.y44_c00332{bottom:359.280000px;}
.y48_c00332{bottom:360.000000px;}
.y45_c00332{bottom:360.720000px;}
.y43_c00332{bottom:401.760000px;}
.y42_c00332{bottom:404.640000px;}
.y2e_c00332{bottom:453.600000px;}
.y2c_c00332{bottom:455.760000px;}
.y2d_c00332{bottom:457.920000px;}
.y2a_c00332{bottom:496.800000px;}
.y2b_c00332{bottom:497.520000px;}
.y40_c00332{bottom:498.240000px;}
.y41_c00332{bottom:498.960000px;}
.y29_c00332{bottom:499.680000px;}
.y28_c00332{bottom:540.000000px;}
.y3f_c00332{bottom:541.440000px;}
.y27_c00332{bottom:542.160000px;}
.y3e_c00332{bottom:542.880000px;}
.y26_c00332{bottom:583.200000px;}
.y3d_c00332{bottom:584.640000px;}
.y25_c00332{bottom:585.360000px;}
.y24_c00332{bottom:625.680000px;}
.y21_c00332{bottom:626.400000px;}
.y22_c00332{bottom:627.120000px;}
.y20_c00332{bottom:627.840000px;}
.y23_c00332{bottom:629.280000px;}
.y1f_c00332{bottom:673.200000px;}
.y1e_c00332{bottom:702.000000px;}
.y1b_c00332{bottom:702.720000px;}
.y1c_c00332{bottom:703.440000px;}
.y3c_c00332{bottom:704.160000px;}
.y1d_c00332{bottom:704.880000px;}
.y19_c00332{bottom:744.480000px;}
.y16_c00332{bottom:745.200000px;}
.y17_c00332{bottom:745.920000px;}
.y3b_c00332{bottom:746.640000px;}
.y1a_c00332{bottom:747.360000px;}
.y18_c00332{bottom:748.800000px;}
.y12_c00332{bottom:788.400000px;}
.y15_c00332{bottom:789.120000px;}
.y14_c00332{bottom:791.280000px;}
.y13_c00332{bottom:792.000000px;}
.y10_c00332{bottom:831.600000px;}
.y11_c00332{bottom:832.320000px;}
.y3a_c00332{bottom:833.760000px;}
.y39_c00332{bottom:874.080000px;}
.yc_c00332{bottom:874.800000px;}
.ye_c00332{bottom:875.520000px;}
.yf_c00332{bottom:876.240000px;}
.yd_c00332{bottom:878.400000px;}
.y9_c00332{bottom:918.000000px;}
.yb_c00332{bottom:918.720000px;}
.y38_c00332{bottom:920.880000px;}
.ya_c00332{bottom:921.600000px;}
.y36_c00332{bottom:959.760000px;}
.y8_c00332{bottom:960.480000px;}
.y7_c00332{bottom:961.200000px;}
.y37_c00332{bottom:962.640000px;}
.y6_c00332{bottom:1002.960000px;}
.y4_c00332{bottom:1003.680000px;}
.y34_c00332{bottom:1004.400000px;}
.y3_c00332{bottom:1005.120000px;}
.y35_c00332{bottom:1005.840000px;}
.y33_c00332{bottom:1006.560000px;}
.y5_c00332{bottom:1007.280000px;}
.y2_c00332{bottom:1046.880000px;}
.y31_c00332{bottom:1047.600000px;}
.y1_c00332{bottom:1048.320000px;}
.y32_c00332{bottom:1049.040000px;}
.y30_c00332{bottom:1050.480000px;}
.y2f_c00332{bottom:1100.160000px;}
.hb_c00332{height:33.692344px;}
.hc_c00332{height:44.059219px;}
.h7_c00332{height:46.650937px;}
.hd_c00332{height:49.242656px;}
.h9_c00332{height:51.834375px;}
.he_c00332{height:52.122656px;}
.h2_c00332{height:54.426094px;}
.ha_c00332{height:57.017812px;}
.h5_c00332{height:59.609531px;}
.h6_c00332{height:62.201250px;}
.h4_c00332{height:64.792969px;}
.h8_c00332{height:67.384687px;}
.h3_c00332{height:69.976406px;}
.h1_c00332{height:1149.000000px;}
.h0_c00332{height:1149.120000px;}
.w0_c00332{width:775.440000px;}
.w1_c00332{width:775.500000px;}
.x0_c00332{left:0.000000px;}
.x1_c00332{left:68.400000px;}
.x1a_c00332{left:69.840000px;}
.x2d_c00332{left:71.280000px;}
.x34_c00332{left:72.720000px;}
.x26_c00332{left:120.960000px;}
.x2_c00332{left:142.560000px;}
.x9_c00332{left:144.000000px;}
.x27_c00332{left:153.360000px;}
.x2b_c00332{left:184.320000px;}
.xa_c00332{left:185.760000px;}
.x14_c00332{left:197.280000px;}
.x31_c00332{left:217.440000px;}
.x28_c00332{left:228.960000px;}
.x5_c00332{left:230.400000px;}
.xb_c00332{left:239.760000px;}
.xc_c00332{left:251.280000px;}
.x15_c00332{left:261.360000px;}
.x16_c00332{left:272.160000px;}
.x3_c00332{left:283.680000px;}
.xd_c00332{left:293.760000px;}
.xe_c00332{left:304.560000px;}
.x17_c00332{left:326.880000px;}
.xf_c00332{left:336.960000px;}
.x11_c00332{left:338.400000px;}
.x35_c00332{left:357.840000px;}
.x32_c00332{left:369.360000px;}
.x10_c00332{left:380.160000px;}
.x6_c00332{left:402.480000px;}
.x4_c00332{left:413.280000px;}
.x33_c00332{left:423.360000px;}
.x2e_c00332{left:433.440000px;}
.x12_c00332{left:434.880000px;}
.x7_c00332{left:457.200000px;}
.x18_c00332{left:466.560000px;}
.x2f_c00332{left:488.160000px;}
.x19_c00332{left:509.760000px;}
.x13_c00332{left:520.560000px;}
.x8_c00332{left:565.920000px;}
.x36_c00332{left:583.200000px;}
.x22_c00332{left:585.360000px;}
.x23_c00332{left:596.160000px;}
.x29_c00332{left:617.760000px;}
.x1c_c00332{left:619.200000px;}
.x25_c00332{left:641.520000px;}
.x2c_c00332{left:648.720000px;}
.x1f_c00332{left:650.880000px;}
.x1d_c00332{left:652.320000px;}
.x24_c00332{left:660.960000px;}
.x21_c00332{left:683.280000px;}
.x37_c00332{left:690.480000px;}
.x2a_c00332{left:691.920000px;}
.x1e_c00332{left:693.360000px;}
.x1b_c00332{left:702.000000px;}
.x30_c00332{left:712.800000px;}
.x20_c00332{left:714.240000px;}
@media print{
.v0_c00332{vertical-align:0.000000pt;}
.v1_c00332{vertical-align:2.560000pt;}
.v2_c00332{vertical-align:5.120000pt;}
.ls0_c00332{letter-spacing:0.000000pt;}
.ws2_c00332{word-spacing:-6.135467pt;}
.ws3_c00332{word-spacing:-1.635627pt;}
.ws4_c00332{word-spacing:0.000000pt;}
.ws0_c00332{word-spacing:10.393905pt;}
.ws1_c00332{word-spacing:11.213867pt;}
.fs9_c00332{font-size:33.280000pt;}
.fsa_c00332{font-size:43.520000pt;}
.fs5_c00332{font-size:46.080000pt;}
.fsb_c00332{font-size:48.640000pt;}
.fs7_c00332{font-size:51.200000pt;}
.fs0_c00332{font-size:53.760000pt;}
.fs8_c00332{font-size:56.320000pt;}
.fs3_c00332{font-size:58.880000pt;}
.fs4_c00332{font-size:61.440000pt;}
.fs2_c00332{font-size:64.000000pt;}
.fs6_c00332{font-size:66.560000pt;}
.fs1_c00332{font-size:69.120000pt;}
.y0_c00332{bottom:0.000000pt;}
.y6d_c00332{bottom:47.360000pt;}
.y6e_c00332{bottom:48.640000pt;}
.y6f_c00332{bottom:50.560000pt;}
.y6c_c00332{bottom:51.200000pt;}
.y70_c00332{bottom:51.840000pt;}
.y67_c00332{bottom:85.760000pt;}
.y68_c00332{bottom:86.400000pt;}
.y69_c00332{bottom:88.960000pt;}
.y66_c00332{bottom:89.600000pt;}
.y6a_c00332{bottom:90.240000pt;}
.y6b_c00332{bottom:90.880000pt;}
.y62_c00332{bottom:124.160000pt;}
.y64_c00332{bottom:126.080000pt;}
.y63_c00332{bottom:127.360000pt;}
.y61_c00332{bottom:128.000000pt;}
.y65_c00332{bottom:128.640000pt;}
.y5b_c00332{bottom:162.560000pt;}
.y5c_c00332{bottom:163.200000pt;}
.y5e_c00332{bottom:165.760000pt;}
.y5a_c00332{bottom:166.400000pt;}
.y5f_c00332{bottom:167.040000pt;}
.y60_c00332{bottom:167.680000pt;}
.y5d_c00332{bottom:168.320000pt;}
.y55_c00332{bottom:200.960000pt;}
.y56_c00332{bottom:201.600000pt;}
.y58_c00332{bottom:203.520000pt;}
.y57_c00332{bottom:204.160000pt;}
.y54_c00332{bottom:204.800000pt;}
.y59_c00332{bottom:206.080000pt;}
.y50_c00332{bottom:240.000000pt;}
.y51_c00332{bottom:241.280000pt;}
.y53_c00332{bottom:242.560000pt;}
.y4e_c00332{bottom:243.200000pt;}
.y4f_c00332{bottom:243.840000pt;}
.y52_c00332{bottom:244.480000pt;}
.y4c_c00332{bottom:278.400000pt;}
.y4d_c00332{bottom:280.320000pt;}
.y4a_c00332{bottom:280.960000pt;}
.y4b_c00332{bottom:281.600000pt;}
.y47_c00332{bottom:316.800000pt;}
.y46_c00332{bottom:318.080000pt;}
.y49_c00332{bottom:318.720000pt;}
.y44_c00332{bottom:319.360000pt;}
.y48_c00332{bottom:320.000000pt;}
.y45_c00332{bottom:320.640000pt;}
.y43_c00332{bottom:357.120000pt;}
.y42_c00332{bottom:359.680000pt;}
.y2e_c00332{bottom:403.200000pt;}
.y2c_c00332{bottom:405.120000pt;}
.y2d_c00332{bottom:407.040000pt;}
.y2a_c00332{bottom:441.600000pt;}
.y2b_c00332{bottom:442.240000pt;}
.y40_c00332{bottom:442.880000pt;}
.y41_c00332{bottom:443.520000pt;}
.y29_c00332{bottom:444.160000pt;}
.y28_c00332{bottom:480.000000pt;}
.y3f_c00332{bottom:481.280000pt;}
.y27_c00332{bottom:481.920000pt;}
.y3e_c00332{bottom:482.560000pt;}
.y26_c00332{bottom:518.400000pt;}
.y3d_c00332{bottom:519.680000pt;}
.y25_c00332{bottom:520.320000pt;}
.y24_c00332{bottom:556.160000pt;}
.y21_c00332{bottom:556.800000pt;}
.y22_c00332{bottom:557.440000pt;}
.y20_c00332{bottom:558.080000pt;}
.y23_c00332{bottom:559.360000pt;}
.y1f_c00332{bottom:598.400000pt;}
.y1e_c00332{bottom:624.000000pt;}
.y1b_c00332{bottom:624.640000pt;}
.y1c_c00332{bottom:625.280000pt;}
.y3c_c00332{bottom:625.920000pt;}
.y1d_c00332{bottom:626.560000pt;}
.y19_c00332{bottom:661.760000pt;}
.y16_c00332{bottom:662.400000pt;}
.y17_c00332{bottom:663.040000pt;}
.y3b_c00332{bottom:663.680000pt;}
.y1a_c00332{bottom:664.320000pt;}
.y18_c00332{bottom:665.600000pt;}
.y12_c00332{bottom:700.800000pt;}
.y15_c00332{bottom:701.440000pt;}
.y14_c00332{bottom:703.360000pt;}
.y13_c00332{bottom:704.000000pt;}
.y10_c00332{bottom:739.200000pt;}
.y11_c00332{bottom:739.840000pt;}
.y3a_c00332{bottom:741.120000pt;}
.y39_c00332{bottom:776.960000pt;}
.yc_c00332{bottom:777.600000pt;}
.ye_c00332{bottom:778.240000pt;}
.yf_c00332{bottom:778.880000pt;}
.yd_c00332{bottom:780.800000pt;}
.y9_c00332{bottom:816.000000pt;}
.yb_c00332{bottom:816.640000pt;}
.y38_c00332{bottom:818.560000pt;}
.ya_c00332{bottom:819.200000pt;}
.y36_c00332{bottom:853.120000pt;}
.y8_c00332{bottom:853.760000pt;}
.y7_c00332{bottom:854.400000pt;}
.y37_c00332{bottom:855.680000pt;}
.y6_c00332{bottom:891.520000pt;}
.y4_c00332{bottom:892.160000pt;}
.y34_c00332{bottom:892.800000pt;}
.y3_c00332{bottom:893.440000pt;}
.y35_c00332{bottom:894.080000pt;}
.y33_c00332{bottom:894.720000pt;}
.y5_c00332{bottom:895.360000pt;}
.y2_c00332{bottom:930.560000pt;}
.y31_c00332{bottom:931.200000pt;}
.y1_c00332{bottom:931.840000pt;}
.y32_c00332{bottom:932.480000pt;}
.y30_c00332{bottom:933.760000pt;}
.y2f_c00332{bottom:977.920000pt;}
.hb_c00332{height:29.948750pt;}
.hc_c00332{height:39.163750pt;}
.h7_c00332{height:41.467500pt;}
.hd_c00332{height:43.771250pt;}
.h9_c00332{height:46.075000pt;}
.he_c00332{height:46.331250pt;}
.h2_c00332{height:48.378750pt;}
.ha_c00332{height:50.682500pt;}
.h5_c00332{height:52.986250pt;}
.h6_c00332{height:55.290000pt;}
.h4_c00332{height:57.593750pt;}
.h8_c00332{height:59.897500pt;}
.h3_c00332{height:62.201250pt;}
.h1_c00332{height:1021.333333pt;}
.h0_c00332{height:1021.440000pt;}
.w0_c00332{width:689.280000pt;}
.w1_c00332{width:689.333333pt;}
.x0_c00332{left:0.000000pt;}
.x1_c00332{left:60.800000pt;}
.x1a_c00332{left:62.080000pt;}
.x2d_c00332{left:63.360000pt;}
.x34_c00332{left:64.640000pt;}
.x26_c00332{left:107.520000pt;}
.x2_c00332{left:126.720000pt;}
.x9_c00332{left:128.000000pt;}
.x27_c00332{left:136.320000pt;}
.x2b_c00332{left:163.840000pt;}
.xa_c00332{left:165.120000pt;}
.x14_c00332{left:175.360000pt;}
.x31_c00332{left:193.280000pt;}
.x28_c00332{left:203.520000pt;}
.x5_c00332{left:204.800000pt;}
.xb_c00332{left:213.120000pt;}
.xc_c00332{left:223.360000pt;}
.x15_c00332{left:232.320000pt;}
.x16_c00332{left:241.920000pt;}
.x3_c00332{left:252.160000pt;}
.xd_c00332{left:261.120000pt;}
.xe_c00332{left:270.720000pt;}
.x17_c00332{left:290.560000pt;}
.xf_c00332{left:299.520000pt;}
.x11_c00332{left:300.800000pt;}
.x35_c00332{left:318.080000pt;}
.x32_c00332{left:328.320000pt;}
.x10_c00332{left:337.920000pt;}
.x6_c00332{left:357.760000pt;}
.x4_c00332{left:367.360000pt;}
.x33_c00332{left:376.320000pt;}
.x2e_c00332{left:385.280000pt;}
.x12_c00332{left:386.560000pt;}
.x7_c00332{left:406.400000pt;}
.x18_c00332{left:414.720000pt;}
.x2f_c00332{left:433.920000pt;}
.x19_c00332{left:453.120000pt;}
.x13_c00332{left:462.720000pt;}
.x8_c00332{left:503.040000pt;}
.x36_c00332{left:518.400000pt;}
.x22_c00332{left:520.320000pt;}
.x23_c00332{left:529.920000pt;}
.x29_c00332{left:549.120000pt;}
.x1c_c00332{left:550.400000pt;}
.x25_c00332{left:570.240000pt;}
.x2c_c00332{left:576.640000pt;}
.x1f_c00332{left:578.560000pt;}
.x1d_c00332{left:579.840000pt;}
.x24_c00332{left:587.520000pt;}
.x21_c00332{left:607.360000pt;}
.x37_c00332{left:613.760000pt;}
.x2a_c00332{left:615.040000pt;}
.x1e_c00332{left:616.320000pt;}
.x1b_c00332{left:624.000000pt;}
.x30_c00332{left:633.600000pt;}
.x20_c00332{left:634.880000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_73d55fb592582f561bde57d5.woff2')format("woff");}.ff1_c00333{font-family:ff1_c00333;line-height:1.109863;font-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_c00333{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m42_c00333{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m25_c00333{transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);}
.m1d_c00333{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);}
.m2e_c00333{transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);}
.m30_c00333{transform:matrix(0.235100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235100,0.000000,0.000000,0.250000,0,0);}
.m2a_c00333{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m2d_c00333{transform:matrix(0.237650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237650,0.000000,0.000000,0.250000,0,0);}
.m3b_c00333{transform:matrix(0.238225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238225,0.000000,0.000000,0.250000,0,0);}
.m44_c00333{transform:matrix(0.241925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241925,0.000000,0.000000,0.250000,0,0);}
.m39_c00333{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);}
.m2c_c00333{transform:matrix(0.243775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243775,0.000000,0.000000,0.250000,0,0);}
.m16_c00333{transform:matrix(0.246300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246300,0.000000,0.000000,0.250000,0,0);}
.m3d_c00333{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m37_c00333{transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);}
.md_c00333{transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);}
.m6_c00333{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m14_c00333{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);}
.m38_c00333{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mb_c00333{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m19_c00333{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m3_c00333{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00333{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mf_c00333{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_c00333{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.me_c00333{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m15_c00333{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m24_c00333{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);}
.m40_c00333{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00333{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.ma_c00333{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00333{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00333{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mc_c00333{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m36_c00333{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m22_c00333{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00333{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m17_c00333{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m5_c00333{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m4_c00333{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m10_c00333{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m18_c00333{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m21_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);}
.m41_c00333{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m0_c00333{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m31_c00333{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m8_c00333{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);}
.m23_c00333{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m7_c00333{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);}
.m35_c00333{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00333{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00333{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);}
.m33_c00333{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m12_c00333{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m28_c00333{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);}
.m3f_c00333{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);}
.m11_c00333{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);}
.m45_c00333{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m13_c00333{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);}
.m2_c00333{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m27_c00333{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m29_c00333{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m9_c00333{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);}
.m32_c00333{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00333{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);}
.m2f_c00333{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m34_c00333{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m26_c00333{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m43_c00333{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00333{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.v1_c00333{vertical-align:-2.880000px;}
.v0_c00333{vertical-align:0.000000px;}
.v2_c00333{vertical-align:2.880000px;}
.ls1_c00333{letter-spacing:0.000000px;}
.ls0_c00333{letter-spacing:139.548960px;}
.sc__c00333{text-shadow:none;}
.sc0_c00333{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00333{-webkit-text-stroke:0px transparent;}
.sc0_c00333{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00333{word-spacing:0.000000px;}
.ws0_c00333{word-spacing:6.727553px;}
.ws1_c00333{word-spacing:9.212400px;}
.fc0_c00333{color:transparent;}
.fsb_c00333{font-size:2.880000px;}
.fs5_c00333{font-size:48.960000px;}
.fs8_c00333{font-size:51.840000px;}
.fsa_c00333{font-size:54.720000px;}
.fs7_c00333{font-size:57.600000px;}
.fs4_c00333{font-size:60.480000px;}
.fs9_c00333{font-size:63.360000px;}
.fs0_c00333{font-size:66.240000px;}
.fs3_c00333{font-size:69.120000px;}
.fs6_c00333{font-size:72.000000px;}
.fs2_c00333{font-size:74.880000px;}
.fs1_c00333{font-size:77.760000px;}
.fsc_c00333{font-size:80.640000px;}
.y0_c00333{bottom:0.000000px;}
.y63_c00333{bottom:59.040000px;}
.y64_c00333{bottom:61.920000px;}
.y62_c00333{bottom:63.360000px;}
.y76_c00333{bottom:64.800000px;}
.y75_c00333{bottom:65.520000px;}
.y78_c00333{bottom:66.240000px;}
.y77_c00333{bottom:66.960000px;}
.y60_c00333{bottom:108.000000px;}
.y61_c00333{bottom:108.720000px;}
.y74_c00333{bottom:110.880000px;}
.y5f_c00333{bottom:111.600000px;}
.y73_c00333{bottom:114.480000px;}
.y5d_c00333{bottom:151.200000px;}
.y5e_c00333{bottom:151.920000px;}
.y71_c00333{bottom:154.080000px;}
.y5c_c00333{bottom:154.800000px;}
.y72_c00333{bottom:156.960000px;}
.y5a_c00333{bottom:194.400000px;}
.y5b_c00333{bottom:195.120000px;}
.y70_c00333{bottom:197.280000px;}
.y59_c00333{bottom:198.000000px;}
.y6f_c00333{bottom:198.720000px;}
.y55_c00333{bottom:237.600000px;}
.y58_c00333{bottom:239.040000px;}
.y57_c00333{bottom:239.760000px;}
.y54_c00333{bottom:240.480000px;}
.y56_c00333{bottom:241.200000px;}
.y6e_c00333{bottom:241.920000px;}
.y53_c00333{bottom:280.800000px;}
.y52_c00333{bottom:283.680000px;}
.y51_c00333{bottom:284.400000px;}
.y4f_c00333{bottom:312.480000px;}
.y4e_c00333{bottom:313.920000px;}
.y50_c00333{bottom:314.640000px;}
.y6d_c00333{bottom:315.360000px;}
.y6b_c00333{bottom:316.080000px;}
.y4c_c00333{bottom:316.800000px;}
.y4d_c00333{bottom:317.520000px;}
.y6c_c00333{bottom:318.240000px;}
.y49_c00333{bottom:354.960000px;}
.y4b_c00333{bottom:355.680000px;}
.y6a_c00333{bottom:357.840000px;}
.y69_c00333{bottom:358.560000px;}
.y48_c00333{bottom:359.280000px;}
.y4a_c00333{bottom:360.000000px;}
.y46_c00333{bottom:398.160000px;}
.y47_c00333{bottom:398.880000px;}
.y68_c00333{bottom:401.040000px;}
.y45_c00333{bottom:401.760000px;}
.y44_c00333{bottom:442.080000px;}
.y43_c00333{bottom:444.240000px;}
.y67_c00333{bottom:445.680000px;}
.y40_c00333{bottom:484.560000px;}
.y42_c00333{bottom:485.280000px;}
.y3f_c00333{bottom:486.720000px;}
.y66_c00333{bottom:488.160000px;}
.y41_c00333{bottom:488.880000px;}
.y3b_c00333{bottom:527.760000px;}
.y3e_c00333{bottom:529.200000px;}
.y3a_c00333{bottom:529.920000px;}
.y65_c00333{bottom:530.640000px;}
.y3c_c00333{bottom:531.360000px;}
.y3d_c00333{bottom:532.080000px;}
.y36_c00333{bottom:571.680000px;}
.y39_c00333{bottom:573.120000px;}
.y35_c00333{bottom:573.840000px;}
.y34_c00333{bottom:614.160000px;}
.y33_c00333{bottom:616.320000px;}
.y37_c00333{bottom:617.040000px;}
.y38_c00333{bottom:618.480000px;}
.y31_c00333{bottom:658.080000px;}
.y30_c00333{bottom:658.800000px;}
.y2e_c00333{bottom:659.520000px;}
.y32_c00333{bottom:660.240000px;}
.y2f_c00333{bottom:661.680000px;}
.y1c_c00333{bottom:700.560000px;}
.y1b_c00333{bottom:702.720000px;}
.y2d_c00333{bottom:703.440000px;}
.y1d_c00333{bottom:704.160000px;}
.y1e_c00333{bottom:704.880000px;}
.y1a_c00333{bottom:743.760000px;}
.y19_c00333{bottom:745.920000px;}
.y2c_c00333{bottom:746.640000px;}
.y2b_c00333{bottom:748.080000px;}
.y18_c00333{bottom:786.960000px;}
.y17_c00333{bottom:789.120000px;}
.y2a_c00333{bottom:789.840000px;}
.y29_c00333{bottom:790.560000px;}
.y15_c00333{bottom:830.880000px;}
.y14_c00333{bottom:831.600000px;}
.y28_c00333{bottom:832.320000px;}
.y27_c00333{bottom:833.040000px;}
.y16_c00333{bottom:834.480000px;}
.y13_c00333{bottom:873.360000px;}
.y26_c00333{bottom:874.080000px;}
.y10_c00333{bottom:874.800000px;}
.y25_c00333{bottom:875.520000px;}
.y12_c00333{bottom:876.960000px;}
.y11_c00333{bottom:877.680000px;}
.yf_c00333{bottom:916.560000px;}
.ye_c00333{bottom:917.280000px;}
.y23_c00333{bottom:918.000000px;}
.y22_c00333{bottom:918.720000px;}
.y24_c00333{bottom:919.440000px;}
.y21_c00333{bottom:921.600000px;}
.yd_c00333{bottom:959.040000px;}
.ya_c00333{bottom:959.760000px;}
.yc_c00333{bottom:960.480000px;}
.yb_c00333{bottom:961.200000px;}
.y1f_c00333{bottom:962.640000px;}
.y20_c00333{bottom:963.360000px;}
.y7_c00333{bottom:1001.520000px;}
.y9_c00333{bottom:1002.240000px;}
.y6_c00333{bottom:1002.960000px;}
.y8_c00333{bottom:1003.680000px;}
.y2_c00333{bottom:1044.720000px;}
.y3_c00333{bottom:1045.440000px;}
.y5_c00333{bottom:1046.160000px;}
.y1_c00333{bottom:1046.880000px;}
.y4_c00333{bottom:1102.320000px;}
.hd_c00333{height:2.591719px;}
.h7_c00333{height:44.059219px;}
.ha_c00333{height:46.650937px;}
.he_c00333{height:48.954375px;}
.hc_c00333{height:49.242656px;}
.h9_c00333{height:51.834375px;}
.h6_c00333{height:54.426094px;}
.hb_c00333{height:57.017812px;}
.h10_c00333{height:57.306094px;}
.h2_c00333{height:59.609531px;}
.h5_c00333{height:62.201250px;}
.h8_c00333{height:64.792969px;}
.h4_c00333{height:67.384687px;}
.h3_c00333{height:69.976406px;}
.hf_c00333{height:72.568125px;}
.h1_c00333{height:1145.250000px;}
.h0_c00333{height:1145.520000px;}
.w1_c00333{width:768.750000px;}
.w0_c00333{width:768.960000px;}
.x0_c00333{left:0.000000px;}
.x1_c00333{left:64.080000px;}
.x2f_c00333{left:65.520000px;}
.x34_c00333{left:66.960090px;}
.x36_c00333{left:73.440000px;}
.xc_c00333{left:107.280000px;}
.x15_c00333{left:136.800000px;}
.x2_c00333{left:138.240000px;}
.x37_c00333{left:143.280000px;}
.xd_c00333{left:172.800000px;}
.x10_c00333{left:181.440000px;}
.x31_c00333{left:190.080000px;}
.x11_c00333{left:224.640000px;}
.xe_c00333{left:226.800000px;}
.x23_c00333{left:234.720000px;}
.x3_c00333{left:246.240000px;}
.x35_c00333{left:257.040000px;}
.x12_c00333{left:266.400000px;}
.x8_c00333{left:268.560000px;}
.x13_c00333{left:277.200000px;}
.x2e_c00333{left:278.640000px;}
.xf_c00333{left:289.440000px;}
.x16_c00333{left:298.800000px;}
.x33_c00333{left:300.240000px;}
.x2d_c00333{left:311.040000px;}
.x14_c00333{left:321.840000px;}
.x24_c00333{left:332.640000px;}
.x17_c00333{left:343.440000px;}
.x9_c00333{left:354.240000px;}
.x25_c00333{left:375.840000px;}
.x30_c00333{left:397.440000px;}
.x32_c00333{left:407.520000px;}
.x38_c00333{left:425.520000px;}
.x29_c00333{left:428.400000px;}
.x26_c00333{left:430.560000px;}
.xa_c00333{left:440.640000px;}
.x2a_c00333{left:473.040000px;}
.xb_c00333{left:494.640000px;}
.x2b_c00333{left:527.040000px;}
.x22_c00333{left:550.080000px;}
.x28_c00333{left:558.720000px;}
.x5_c00333{left:560.160000px;}
.x1b_c00333{left:561.600000px;}
.x3e_c00333{left:563.760000px;}
.x2c_c00333{left:565.200000px;}
.x39_c00333{left:579.600000px;}
.x18_c00333{left:581.040000px;}
.x3c_c00333{left:590.400000px;}
.x1c_c00333{left:613.440000px;}
.x1f_c00333{left:614.880000px;}
.x3f_c00333{left:619.200000px;}
.x6_c00333{left:626.400000px;}
.x3a_c00333{left:636.480000px;}
.x27_c00333{left:645.120000px;}
.x1d_c00333{left:647.280000px;}
.x19_c00333{left:657.360000px;}
.x7_c00333{left:667.440000px;}
.x21_c00333{left:679.680000px;}
.x40_c00333{left:684.000000px;}
.x3b_c00333{left:686.880000px;}
.x4_c00333{left:688.320000px;}
.x1a_c00333{left:690.480000px;}
.x3d_c00333{left:708.480000px;}
.x1e_c00333{left:710.640000px;}
.x41_c00333{left:714.960000px;}
.x20_c00333{left:743.040000px;}
@media print{
.v1_c00333{vertical-align:-2.560000pt;}
.v0_c00333{vertical-align:0.000000pt;}
.v2_c00333{vertical-align:2.560000pt;}
.ls1_c00333{letter-spacing:0.000000pt;}
.ls0_c00333{letter-spacing:124.043520pt;}
.ws2_c00333{word-spacing:0.000000pt;}
.ws0_c00333{word-spacing:5.980047pt;}
.ws1_c00333{word-spacing:8.188800pt;}
.fsb_c00333{font-size:2.560000pt;}
.fs5_c00333{font-size:43.520000pt;}
.fs8_c00333{font-size:46.080000pt;}
.fsa_c00333{font-size:48.640000pt;}
.fs7_c00333{font-size:51.200000pt;}
.fs4_c00333{font-size:53.760000pt;}
.fs9_c00333{font-size:56.320000pt;}
.fs0_c00333{font-size:58.880000pt;}
.fs3_c00333{font-size:61.440000pt;}
.fs6_c00333{font-size:64.000000pt;}
.fs2_c00333{font-size:66.560000pt;}
.fs1_c00333{font-size:69.120000pt;}
.fsc_c00333{font-size:71.680000pt;}
.y0_c00333{bottom:0.000000pt;}
.y63_c00333{bottom:52.480000pt;}
.y64_c00333{bottom:55.040000pt;}
.y62_c00333{bottom:56.320000pt;}
.y76_c00333{bottom:57.600000pt;}
.y75_c00333{bottom:58.240000pt;}
.y78_c00333{bottom:58.880000pt;}
.y77_c00333{bottom:59.520000pt;}
.y60_c00333{bottom:96.000000pt;}
.y61_c00333{bottom:96.640000pt;}
.y74_c00333{bottom:98.560000pt;}
.y5f_c00333{bottom:99.200000pt;}
.y73_c00333{bottom:101.760000pt;}
.y5d_c00333{bottom:134.400000pt;}
.y5e_c00333{bottom:135.040000pt;}
.y71_c00333{bottom:136.960000pt;}
.y5c_c00333{bottom:137.600000pt;}
.y72_c00333{bottom:139.520000pt;}
.y5a_c00333{bottom:172.800000pt;}
.y5b_c00333{bottom:173.440000pt;}
.y70_c00333{bottom:175.360000pt;}
.y59_c00333{bottom:176.000000pt;}
.y6f_c00333{bottom:176.640000pt;}
.y55_c00333{bottom:211.200000pt;}
.y58_c00333{bottom:212.480000pt;}
.y57_c00333{bottom:213.120000pt;}
.y54_c00333{bottom:213.760000pt;}
.y56_c00333{bottom:214.400000pt;}
.y6e_c00333{bottom:215.040000pt;}
.y53_c00333{bottom:249.600000pt;}
.y52_c00333{bottom:252.160000pt;}
.y51_c00333{bottom:252.800000pt;}
.y4f_c00333{bottom:277.760000pt;}
.y4e_c00333{bottom:279.040000pt;}
.y50_c00333{bottom:279.680000pt;}
.y6d_c00333{bottom:280.320000pt;}
.y6b_c00333{bottom:280.960000pt;}
.y4c_c00333{bottom:281.600000pt;}
.y4d_c00333{bottom:282.240000pt;}
.y6c_c00333{bottom:282.880000pt;}
.y49_c00333{bottom:315.520000pt;}
.y4b_c00333{bottom:316.160000pt;}
.y6a_c00333{bottom:318.080000pt;}
.y69_c00333{bottom:318.720000pt;}
.y48_c00333{bottom:319.360000pt;}
.y4a_c00333{bottom:320.000000pt;}
.y46_c00333{bottom:353.920000pt;}
.y47_c00333{bottom:354.560000pt;}
.y68_c00333{bottom:356.480000pt;}
.y45_c00333{bottom:357.120000pt;}
.y44_c00333{bottom:392.960000pt;}
.y43_c00333{bottom:394.880000pt;}
.y67_c00333{bottom:396.160000pt;}
.y40_c00333{bottom:430.720000pt;}
.y42_c00333{bottom:431.360000pt;}
.y3f_c00333{bottom:432.640000pt;}
.y66_c00333{bottom:433.920000pt;}
.y41_c00333{bottom:434.560000pt;}
.y3b_c00333{bottom:469.120000pt;}
.y3e_c00333{bottom:470.400000pt;}
.y3a_c00333{bottom:471.040000pt;}
.y65_c00333{bottom:471.680000pt;}
.y3c_c00333{bottom:472.320000pt;}
.y3d_c00333{bottom:472.960000pt;}
.y36_c00333{bottom:508.160000pt;}
.y39_c00333{bottom:509.440000pt;}
.y35_c00333{bottom:510.080000pt;}
.y34_c00333{bottom:545.920000pt;}
.y33_c00333{bottom:547.840000pt;}
.y37_c00333{bottom:548.480000pt;}
.y38_c00333{bottom:549.760000pt;}
.y31_c00333{bottom:584.960000pt;}
.y30_c00333{bottom:585.600000pt;}
.y2e_c00333{bottom:586.240000pt;}
.y32_c00333{bottom:586.880000pt;}
.y2f_c00333{bottom:588.160000pt;}
.y1c_c00333{bottom:622.720000pt;}
.y1b_c00333{bottom:624.640000pt;}
.y2d_c00333{bottom:625.280000pt;}
.y1d_c00333{bottom:625.920000pt;}
.y1e_c00333{bottom:626.560000pt;}
.y1a_c00333{bottom:661.120000pt;}
.y19_c00333{bottom:663.040000pt;}
.y2c_c00333{bottom:663.680000pt;}
.y2b_c00333{bottom:664.960000pt;}
.y18_c00333{bottom:699.520000pt;}
.y17_c00333{bottom:701.440000pt;}
.y2a_c00333{bottom:702.080000pt;}
.y29_c00333{bottom:702.720000pt;}
.y15_c00333{bottom:738.560000pt;}
.y14_c00333{bottom:739.200000pt;}
.y28_c00333{bottom:739.840000pt;}
.y27_c00333{bottom:740.480000pt;}
.y16_c00333{bottom:741.760000pt;}
.y13_c00333{bottom:776.320000pt;}
.y26_c00333{bottom:776.960000pt;}
.y10_c00333{bottom:777.600000pt;}
.y25_c00333{bottom:778.240000pt;}
.y12_c00333{bottom:779.520000pt;}
.y11_c00333{bottom:780.160000pt;}
.yf_c00333{bottom:814.720000pt;}
.ye_c00333{bottom:815.360000pt;}
.y23_c00333{bottom:816.000000pt;}
.y22_c00333{bottom:816.640000pt;}
.y24_c00333{bottom:817.280000pt;}
.y21_c00333{bottom:819.200000pt;}
.yd_c00333{bottom:852.480000pt;}
.ya_c00333{bottom:853.120000pt;}
.yc_c00333{bottom:853.760000pt;}
.yb_c00333{bottom:854.400000pt;}
.y1f_c00333{bottom:855.680000pt;}
.y20_c00333{bottom:856.320000pt;}
.y7_c00333{bottom:890.240000pt;}
.y9_c00333{bottom:890.880000pt;}
.y6_c00333{bottom:891.520000pt;}
.y8_c00333{bottom:892.160000pt;}
.y2_c00333{bottom:928.640000pt;}
.y3_c00333{bottom:929.280000pt;}
.y5_c00333{bottom:929.920000pt;}
.y1_c00333{bottom:930.560000pt;}
.y4_c00333{bottom:979.840000pt;}
.hd_c00333{height:2.303750pt;}
.h7_c00333{height:39.163750pt;}
.ha_c00333{height:41.467500pt;}
.he_c00333{height:43.515000pt;}
.hc_c00333{height:43.771250pt;}
.h9_c00333{height:46.075000pt;}
.h6_c00333{height:48.378750pt;}
.hb_c00333{height:50.682500pt;}
.h10_c00333{height:50.938750pt;}
.h2_c00333{height:52.986250pt;}
.h5_c00333{height:55.290000pt;}
.h8_c00333{height:57.593750pt;}
.h4_c00333{height:59.897500pt;}
.h3_c00333{height:62.201250pt;}
.hf_c00333{height:64.505000pt;}
.h1_c00333{height:1018.000000pt;}
.h0_c00333{height:1018.240000pt;}
.w1_c00333{width:683.333333pt;}
.w0_c00333{width:683.520000pt;}
.x0_c00333{left:0.000000pt;}
.x1_c00333{left:56.960000pt;}
.x2f_c00333{left:58.240000pt;}
.x34_c00333{left:59.520080pt;}
.x36_c00333{left:65.280000pt;}
.xc_c00333{left:95.360000pt;}
.x15_c00333{left:121.600000pt;}
.x2_c00333{left:122.880000pt;}
.x37_c00333{left:127.360000pt;}
.xd_c00333{left:153.600000pt;}
.x10_c00333{left:161.280000pt;}
.x31_c00333{left:168.960000pt;}
.x11_c00333{left:199.680000pt;}
.xe_c00333{left:201.600000pt;}
.x23_c00333{left:208.640000pt;}
.x3_c00333{left:218.880000pt;}
.x35_c00333{left:228.480000pt;}
.x12_c00333{left:236.800000pt;}
.x8_c00333{left:238.720000pt;}
.x13_c00333{left:246.400000pt;}
.x2e_c00333{left:247.680000pt;}
.xf_c00333{left:257.280000pt;}
.x16_c00333{left:265.600000pt;}
.x33_c00333{left:266.880000pt;}
.x2d_c00333{left:276.480000pt;}
.x14_c00333{left:286.080000pt;}
.x24_c00333{left:295.680000pt;}
.x17_c00333{left:305.280000pt;}
.x9_c00333{left:314.880000pt;}
.x25_c00333{left:334.080000pt;}
.x30_c00333{left:353.280000pt;}
.x32_c00333{left:362.240000pt;}
.x38_c00333{left:378.240000pt;}
.x29_c00333{left:380.800000pt;}
.x26_c00333{left:382.720000pt;}
.xa_c00333{left:391.680000pt;}
.x2a_c00333{left:420.480000pt;}
.xb_c00333{left:439.680000pt;}
.x2b_c00333{left:468.480000pt;}
.x22_c00333{left:488.960000pt;}
.x28_c00333{left:496.640000pt;}
.x5_c00333{left:497.920000pt;}
.x1b_c00333{left:499.200000pt;}
.x3e_c00333{left:501.120000pt;}
.x2c_c00333{left:502.400000pt;}
.x39_c00333{left:515.200000pt;}
.x18_c00333{left:516.480000pt;}
.x3c_c00333{left:524.800000pt;}
.x1c_c00333{left:545.280000pt;}
.x1f_c00333{left:546.560000pt;}
.x3f_c00333{left:550.400000pt;}
.x6_c00333{left:556.800000pt;}
.x3a_c00333{left:565.760000pt;}
.x27_c00333{left:573.440000pt;}
.x1d_c00333{left:575.360000pt;}
.x19_c00333{left:584.320000pt;}
.x7_c00333{left:593.280000pt;}
.x21_c00333{left:604.160000pt;}
.x40_c00333{left:608.000000pt;}
.x3b_c00333{left:610.560000pt;}
.x4_c00333{left:611.840000pt;}
.x1a_c00333{left:613.760000pt;}
.x3d_c00333{left:629.760000pt;}
.x1e_c00333{left:631.680000pt;}
.x41_c00333{left:635.520000pt;}
.x20_c00333{left:660.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_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_6df8c80781512cc90a8bac62.woff2')format("woff");}.ff1_c00334{font-family:ff1_c00334;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3a_c00334{transform:matrix(0.177600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177600,0.000000,0.000000,0.250000,0,0);}
.m38_c00334{transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);}
.m41_c00334{transform:matrix(0.185475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185475,0.000000,0.000000,0.250000,0,0);}
.m19_c00334{transform:matrix(0.192400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192400,0.000000,0.000000,0.250000,0,0);}
.m3e_c00334{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);}
.m2e_c00334{transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);}
.m45_c00334{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m27_c00334{transform:matrix(0.242350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242350,0.000000,0.000000,0.250000,0,0);}
.m5_c00334{transform:matrix(0.242375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242375,0.000000,0.000000,0.250000,0,0);}
.m3f_c00334{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00334{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m29_c00334{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.mc_c00334{transform:matrix(0.247925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247925,0.000000,0.000000,0.250000,0,0);}
.m24_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);}
.mf_c00334{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);}
.m26_c00334{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_c00334{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);}
.m25_c00334{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m2_c00334{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);}
.m36_c00334{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m4_c00334{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_c00334{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m44_c00334{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m3_c00334{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);}
.m22_c00334{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);}
.m2c_c00334{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m11_c00334{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m7_c00334{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00334{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.me_c00334{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m21_c00334{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.md_c00334{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m48_c00334{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00334{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00334{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00334{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m39_c00334{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m23_c00334{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m8_c00334{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m0_c00334{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m49_c00334{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00334{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m12_c00334{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m34_c00334{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m43_c00334{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m16_c00334{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m17_c00334{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00334{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);}
.m35_c00334{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m47_c00334{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m28_c00334{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m30_c00334{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_c00334{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m31_c00334{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m15_c00334{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m14_c00334{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00334{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m1_c00334{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);}
.m4c_c00334{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00334{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);}
.ma_c00334{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);}
.m42_c00334{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);}
.m3c_c00334{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m32_c00334{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m33_c00334{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);}
.m4a_c00334{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);}
.m1d_c00334{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);}
.m18_c00334{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00334{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);}
.m6_c00334{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m10_c00334{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m40_c00334{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m37_c00334{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m46_c00334{transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00334{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m20_c00334{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00334{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.v3_c00334{vertical-align:-5.760000px;}
.v2_c00334{vertical-align:-2.880000px;}
.v0_c00334{vertical-align:0.000000px;}
.v1_c00334{vertical-align:11.520000px;}
.ls1_c00334{letter-spacing:0.000000px;}
.ls0_c00334{letter-spacing:41.822400px;}
.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.755040px;}
.ws3_c00334{word-spacing:0.000000px;}
.ws1_c00334{word-spacing:9.474000px;}
.ws2_c00334{word-spacing:45.137376px;}
.fc0_c00334{color:transparent;}
.fse_c00334{font-size:31.680000px;}
.fsc_c00334{font-size:34.560000px;}
.fsb_c00334{font-size:37.440000px;}
.fsf_c00334{font-size:43.200000px;}
.fs8_c00334{font-size:48.960000px;}
.fs1_c00334{font-size:51.840000px;}
.fs9_c00334{font-size:54.720000px;}
.fsa_c00334{font-size:57.600000px;}
.fs2_c00334{font-size:60.480000px;}
.fs6_c00334{font-size:63.360000px;}
.fs7_c00334{font-size:66.240000px;}
.fs0_c00334{font-size:69.120000px;}
.fs5_c00334{font-size:72.000000px;}
.fs3_c00334{font-size:74.880000px;}
.fs4_c00334{font-size:77.760000px;}
.fsd_c00334{font-size:97.920000px;}
.y0_c00334{bottom:0.000000px;}
.y71_c00334{bottom:55.440000px;}
.y72_c00334{bottom:56.160000px;}
.y70_c00334{bottom:59.040000px;}
.y78_c00334{bottom:59.760000px;}
.y77_c00334{bottom:60.480000px;}
.y6c_c00334{bottom:97.200000px;}
.y6f_c00334{bottom:97.920000px;}
.y6e_c00334{bottom:99.360000px;}
.y6d_c00334{bottom:100.080000px;}
.y6a_c00334{bottom:100.800000px;}
.y6b_c00334{bottom:102.240000px;}
.y69_c00334{bottom:141.120000px;}
.y76_c00334{bottom:144.000000px;}
.y67_c00334{bottom:144.720000px;}
.y68_c00334{bottom:145.440000px;}
.y75_c00334{bottom:146.160000px;}
.y66_c00334{bottom:184.320000px;}
.y73_c00334{bottom:187.200000px;}
.y65_c00334{bottom:188.640000px;}
.y74_c00334{bottom:189.360000px;}
.y63_c00334{bottom:227.520000px;}
.y61_c00334{bottom:229.680000px;}
.y64_c00334{bottom:230.400000px;}
.y60_c00334{bottom:231.120000px;}
.y62_c00334{bottom:231.840000px;}
.y5e_c00334{bottom:270.720000px;}
.y5f_c00334{bottom:271.440000px;}
.y5d_c00334{bottom:272.880000px;}
.y5c_c00334{bottom:274.320000px;}
.y59_c00334{bottom:306.720000px;}
.y5a_c00334{bottom:315.360000px;}
.y5b_c00334{bottom:316.800000px;}
.y47_c00334{bottom:367.200000px;}
.y45_c00334{bottom:368.640000px;}
.y44_c00334{bottom:369.360000px;}
.y42_c00334{bottom:370.080000px;}
.y43_c00334{bottom:370.800000px;}
.y46_c00334{bottom:371.520000px;}
.y41_c00334{bottom:409.680000px;}
.y40_c00334{bottom:411.120000px;}
.y58_c00334{bottom:411.840000px;}
.y3e_c00334{bottom:413.280000px;}
.y3f_c00334{bottom:414.720000px;}
.y3d_c00334{bottom:452.880000px;}
.y56_c00334{bottom:453.600000px;}
.y3c_c00334{bottom:454.320000px;}
.y55_c00334{bottom:455.040000px;}
.y3a_c00334{bottom:456.480000px;}
.y57_c00334{bottom:457.200000px;}
.y3b_c00334{bottom:457.920000px;}
.y39_c00334{bottom:496.080000px;}
.y54_c00334{bottom:497.520000px;}
.y52_c00334{bottom:498.240000px;}
.y53_c00334{bottom:498.960000px;}
.y38_c00334{bottom:499.680000px;}
.y34_c00334{bottom:539.280000px;}
.y37_c00334{bottom:540.000000px;}
.y36_c00334{bottom:541.440000px;}
.y33_c00334{bottom:542.160000px;}
.y50_c00334{bottom:542.880000px;}
.y35_c00334{bottom:543.600000px;}
.y51_c00334{bottom:544.320000px;}
.y32_c00334{bottom:583.200000px;}
.y2f_c00334{bottom:583.920000px;}
.y4f_c00334{bottom:584.640000px;}
.y2e_c00334{bottom:585.360000px;}
.y4e_c00334{bottom:586.080000px;}
.y31_c00334{bottom:586.800000px;}
.y30_c00334{bottom:587.520000px;}
.y2c_c00334{bottom:626.400000px;}
.y2b_c00334{bottom:627.840000px;}
.y4d_c00334{bottom:629.280000px;}
.y4c_c00334{bottom:630.000000px;}
.y2d_c00334{bottom:630.720000px;}
.y2a_c00334{bottom:668.880000px;}
.y28_c00334{bottom:669.600000px;}
.y27_c00334{bottom:671.040000px;}
.y4b_c00334{bottom:672.480000px;}
.y29_c00334{bottom:673.200000px;}
.y26_c00334{bottom:712.800000px;}
.y49_c00334{bottom:713.520000px;}
.y25_c00334{bottom:714.240000px;}
.y48_c00334{bottom:714.960000px;}
.y4a_c00334{bottom:716.400000px;}
.y1b_c00334{bottom:756.720000px;}
.y1a_c00334{bottom:757.440000px;}
.y16_c00334{bottom:788.400000px;}
.y24_c00334{bottom:789.120000px;}
.y15_c00334{bottom:789.840000px;}
.y19_c00334{bottom:790.560000px;}
.y18_c00334{bottom:791.280000px;}
.y17_c00334{bottom:792.000000px;}
.y13_c00334{bottom:830.880000px;}
.y12_c00334{bottom:832.320000px;}
.y22_c00334{bottom:833.040000px;}
.y23_c00334{bottom:833.760000px;}
.y14_c00334{bottom:835.200000px;}
.y11_c00334{bottom:874.080000px;}
.y10_c00334{bottom:875.520000px;}
.y21_c00334{bottom:876.960000px;}
.yd_c00334{bottom:916.560000px;}
.yf_c00334{bottom:917.280000px;}
.y1f_c00334{bottom:918.000000px;}
.yc_c00334{bottom:918.720000px;}
.y1e_c00334{bottom:919.440000px;}
.y20_c00334{bottom:920.160000px;}
.ye_c00334{bottom:920.880000px;}
.y9_c00334{bottom:959.760000px;}
.yb_c00334{bottom:960.480000px;}
.y8_c00334{bottom:961.200000px;}
.y1d_c00334{bottom:962.640000px;}
.ya_c00334{bottom:964.080000px;}
.y6_c00334{bottom:1002.960000px;}
.y7_c00334{bottom:1003.680000px;}
.y5_c00334{bottom:1004.400000px;}
.y4_c00334{bottom:1046.160000px;}
.y3_c00334{bottom:1046.880000px;}
.y1_c00334{bottom:1047.600000px;}
.y2_c00334{bottom:1048.320000px;}
.y1c_c00334{bottom:1102.320000px;}
.h11_c00334{height:28.508906px;}
.hf_c00334{height:31.100625px;}
.he_c00334{height:33.692344px;}
.h12_c00334{height:38.875781px;}
.ha_c00334{height:44.059219px;}
.h7_c00334{height:46.650937px;}
.hb_c00334{height:49.242656px;}
.hc_c00334{height:51.834375px;}
.h3_c00334{height:54.426094px;}
.hd_c00334{height:56.441250px;}
.h8_c00334{height:57.017812px;}
.h9_c00334{height:59.609531px;}
.h2_c00334{height:62.201250px;}
.h6_c00334{height:64.792969px;}
.h4_c00334{height:67.384687px;}
.h5_c00334{height:69.976406px;}
.h10_c00334{height:88.118437px;}
.h1_c00334{height:1147.500000px;}
.h0_c00334{height:1147.680000px;}
.w1_c00334{width:773.250000px;}
.w0_c00334{width:773.280000px;}
.x0_c00334{left:0.000000px;}
.x1_c00334{left:65.520000px;}
.x1b_c00334{left:66.960000px;}
.x34_c00334{left:68.400000px;}
.x21_c00334{left:108.720000px;}
.x2f_c00334{left:117.360000px;}
.x5_c00334{left:138.960000px;}
.x11_c00334{left:141.120000px;}
.x30_c00334{left:160.560000px;}
.x36_c00334{left:172.080000px;}
.x22_c00334{left:182.160000px;}
.x2_c00334{left:183.600000px;}
.x20_c00334{left:224.640000px;}
.x3_c00334{left:226.800000px;}
.x31_c00334{left:235.440000px;}
.x23_c00334{left:236.880000px;}
.x38_c00334{left:246.960000px;}
.x6_c00334{left:259.920000px;}
.x7_c00334{left:270.000000px;}
.xc_c00334{left:279.360000px;}
.x1c_c00334{left:280.800000px;}
.x1d_c00334{left:291.600000px;}
.x9_c00334{left:301.680000px;}
.x1a_c00334{left:313.200000px;}
.x8_c00334{left:324.000000px;}
.x24_c00334{left:332.640000px;}
.x37_c00334{left:334.800000px;}
.x1e_c00334{left:344.160000px;}
.xa_c00334{left:345.600000px;}
.xb_c00334{left:356.400000px;}
.x35_c00334{left:365.760000px;}
.x25_c00334{left:378.000000px;}
.x4_c00334{left:388.800000px;}
.x32_c00334{left:398.880000px;}
.xd_c00334{left:408.240000px;}
.xe_c00334{left:453.600000px;}
.x26_c00334{left:462.240000px;}
.x1f_c00334{left:496.800000px;}
.x27_c00334{left:505.440000px;}
.xf_c00334{left:507.600000px;}
.x33_c00334{left:527.040000px;}
.x2c_c00334{left:550.800000px;}
.x17_c00334{left:552.240000px;}
.x2d_c00334{left:560.160000px;}
.x10_c00334{left:561.600000px;}
.x2b_c00334{left:581.040000px;}
.x16_c00334{left:582.480000px;}
.x28_c00334{left:614.160000px;}
.x13_c00334{left:615.600000px;}
.x18_c00334{left:639.360000px;}
.x29_c00334{left:646.560000px;}
.x14_c00334{left:648.000000px;}
.x39_c00334{left:678.240000px;}
.x19_c00334{left:680.400000px;}
.x2e_c00334{left:689.040000px;}
.x12_c00334{left:690.480000px;}
.x2a_c00334{left:709.200000px;}
.x15_c00334{left:710.640000px;}
@media print{
.v3_c00334{vertical-align:-5.120000pt;}
.v2_c00334{vertical-align:-2.560000pt;}
.v0_c00334{vertical-align:0.000000pt;}
.v1_c00334{vertical-align:10.240000pt;}
.ls1_c00334{letter-spacing:0.000000pt;}
.ls0_c00334{letter-spacing:37.175467pt;}
.ws0_c00334{word-spacing:-0.671147pt;}
.ws3_c00334{word-spacing:0.000000pt;}
.ws1_c00334{word-spacing:8.421333pt;}
.ws2_c00334{word-spacing:40.122112pt;}
.fse_c00334{font-size:28.160000pt;}
.fsc_c00334{font-size:30.720000pt;}
.fsb_c00334{font-size:33.280000pt;}
.fsf_c00334{font-size:38.400000pt;}
.fs8_c00334{font-size:43.520000pt;}
.fs1_c00334{font-size:46.080000pt;}
.fs9_c00334{font-size:48.640000pt;}
.fsa_c00334{font-size:51.200000pt;}
.fs2_c00334{font-size:53.760000pt;}
.fs6_c00334{font-size:56.320000pt;}
.fs7_c00334{font-size:58.880000pt;}
.fs0_c00334{font-size:61.440000pt;}
.fs5_c00334{font-size:64.000000pt;}
.fs3_c00334{font-size:66.560000pt;}
.fs4_c00334{font-size:69.120000pt;}
.fsd_c00334{font-size:87.040000pt;}
.y0_c00334{bottom:0.000000pt;}
.y71_c00334{bottom:49.280000pt;}
.y72_c00334{bottom:49.920000pt;}
.y70_c00334{bottom:52.480000pt;}
.y78_c00334{bottom:53.120000pt;}
.y77_c00334{bottom:53.760000pt;}
.y6c_c00334{bottom:86.400000pt;}
.y6f_c00334{bottom:87.040000pt;}
.y6e_c00334{bottom:88.320000pt;}
.y6d_c00334{bottom:88.960000pt;}
.y6a_c00334{bottom:89.600000pt;}
.y6b_c00334{bottom:90.880000pt;}
.y69_c00334{bottom:125.440000pt;}
.y76_c00334{bottom:128.000000pt;}
.y67_c00334{bottom:128.640000pt;}
.y68_c00334{bottom:129.280000pt;}
.y75_c00334{bottom:129.920000pt;}
.y66_c00334{bottom:163.840000pt;}
.y73_c00334{bottom:166.400000pt;}
.y65_c00334{bottom:167.680000pt;}
.y74_c00334{bottom:168.320000pt;}
.y63_c00334{bottom:202.240000pt;}
.y61_c00334{bottom:204.160000pt;}
.y64_c00334{bottom:204.800000pt;}
.y60_c00334{bottom:205.440000pt;}
.y62_c00334{bottom:206.080000pt;}
.y5e_c00334{bottom:240.640000pt;}
.y5f_c00334{bottom:241.280000pt;}
.y5d_c00334{bottom:242.560000pt;}
.y5c_c00334{bottom:243.840000pt;}
.y59_c00334{bottom:272.640000pt;}
.y5a_c00334{bottom:280.320000pt;}
.y5b_c00334{bottom:281.600000pt;}
.y47_c00334{bottom:326.400000pt;}
.y45_c00334{bottom:327.680000pt;}
.y44_c00334{bottom:328.320000pt;}
.y42_c00334{bottom:328.960000pt;}
.y43_c00334{bottom:329.600000pt;}
.y46_c00334{bottom:330.240000pt;}
.y41_c00334{bottom:364.160000pt;}
.y40_c00334{bottom:365.440000pt;}
.y58_c00334{bottom:366.080000pt;}
.y3e_c00334{bottom:367.360000pt;}
.y3f_c00334{bottom:368.640000pt;}
.y3d_c00334{bottom:402.560000pt;}
.y56_c00334{bottom:403.200000pt;}
.y3c_c00334{bottom:403.840000pt;}
.y55_c00334{bottom:404.480000pt;}
.y3a_c00334{bottom:405.760000pt;}
.y57_c00334{bottom:406.400000pt;}
.y3b_c00334{bottom:407.040000pt;}
.y39_c00334{bottom:440.960000pt;}
.y54_c00334{bottom:442.240000pt;}
.y52_c00334{bottom:442.880000pt;}
.y53_c00334{bottom:443.520000pt;}
.y38_c00334{bottom:444.160000pt;}
.y34_c00334{bottom:479.360000pt;}
.y37_c00334{bottom:480.000000pt;}
.y36_c00334{bottom:481.280000pt;}
.y33_c00334{bottom:481.920000pt;}
.y50_c00334{bottom:482.560000pt;}
.y35_c00334{bottom:483.200000pt;}
.y51_c00334{bottom:483.840000pt;}
.y32_c00334{bottom:518.400000pt;}
.y2f_c00334{bottom:519.040000pt;}
.y4f_c00334{bottom:519.680000pt;}
.y2e_c00334{bottom:520.320000pt;}
.y4e_c00334{bottom:520.960000pt;}
.y31_c00334{bottom:521.600000pt;}
.y30_c00334{bottom:522.240000pt;}
.y2c_c00334{bottom:556.800000pt;}
.y2b_c00334{bottom:558.080000pt;}
.y4d_c00334{bottom:559.360000pt;}
.y4c_c00334{bottom:560.000000pt;}
.y2d_c00334{bottom:560.640000pt;}
.y2a_c00334{bottom:594.560000pt;}
.y28_c00334{bottom:595.200000pt;}
.y27_c00334{bottom:596.480000pt;}
.y4b_c00334{bottom:597.760000pt;}
.y29_c00334{bottom:598.400000pt;}
.y26_c00334{bottom:633.600000pt;}
.y49_c00334{bottom:634.240000pt;}
.y25_c00334{bottom:634.880000pt;}
.y48_c00334{bottom:635.520000pt;}
.y4a_c00334{bottom:636.800000pt;}
.y1b_c00334{bottom:672.640000pt;}
.y1a_c00334{bottom:673.280000pt;}
.y16_c00334{bottom:700.800000pt;}
.y24_c00334{bottom:701.440000pt;}
.y15_c00334{bottom:702.080000pt;}
.y19_c00334{bottom:702.720000pt;}
.y18_c00334{bottom:703.360000pt;}
.y17_c00334{bottom:704.000000pt;}
.y13_c00334{bottom:738.560000pt;}
.y12_c00334{bottom:739.840000pt;}
.y22_c00334{bottom:740.480000pt;}
.y23_c00334{bottom:741.120000pt;}
.y14_c00334{bottom:742.400000pt;}
.y11_c00334{bottom:776.960000pt;}
.y10_c00334{bottom:778.240000pt;}
.y21_c00334{bottom:779.520000pt;}
.yd_c00334{bottom:814.720000pt;}
.yf_c00334{bottom:815.360000pt;}
.y1f_c00334{bottom:816.000000pt;}
.yc_c00334{bottom:816.640000pt;}
.y1e_c00334{bottom:817.280000pt;}
.y20_c00334{bottom:817.920000pt;}
.ye_c00334{bottom:818.560000pt;}
.y9_c00334{bottom:853.120000pt;}
.yb_c00334{bottom:853.760000pt;}
.y8_c00334{bottom:854.400000pt;}
.y1d_c00334{bottom:855.680000pt;}
.ya_c00334{bottom:856.960000pt;}
.y6_c00334{bottom:891.520000pt;}
.y7_c00334{bottom:892.160000pt;}
.y5_c00334{bottom:892.800000pt;}
.y4_c00334{bottom:929.920000pt;}
.y3_c00334{bottom:930.560000pt;}
.y1_c00334{bottom:931.200000pt;}
.y2_c00334{bottom:931.840000pt;}
.y1c_c00334{bottom:979.840000pt;}
.h11_c00334{height:25.341250pt;}
.hf_c00334{height:27.645000pt;}
.he_c00334{height:29.948750pt;}
.h12_c00334{height:34.556250pt;}
.ha_c00334{height:39.163750pt;}
.h7_c00334{height:41.467500pt;}
.hb_c00334{height:43.771250pt;}
.hc_c00334{height:46.075000pt;}
.h3_c00334{height:48.378750pt;}
.hd_c00334{height:50.170000pt;}
.h8_c00334{height:50.682500pt;}
.h9_c00334{height:52.986250pt;}
.h2_c00334{height:55.290000pt;}
.h6_c00334{height:57.593750pt;}
.h4_c00334{height:59.897500pt;}
.h5_c00334{height:62.201250pt;}
.h10_c00334{height:78.327500pt;}
.h1_c00334{height:1020.000000pt;}
.h0_c00334{height:1020.160000pt;}
.w1_c00334{width:687.333333pt;}
.w0_c00334{width:687.360000pt;}
.x0_c00334{left:0.000000pt;}
.x1_c00334{left:58.240000pt;}
.x1b_c00334{left:59.520000pt;}
.x34_c00334{left:60.800000pt;}
.x21_c00334{left:96.640000pt;}
.x2f_c00334{left:104.320000pt;}
.x5_c00334{left:123.520000pt;}
.x11_c00334{left:125.440000pt;}
.x30_c00334{left:142.720000pt;}
.x36_c00334{left:152.960000pt;}
.x22_c00334{left:161.920000pt;}
.x2_c00334{left:163.200000pt;}
.x20_c00334{left:199.680000pt;}
.x3_c00334{left:201.600000pt;}
.x31_c00334{left:209.280000pt;}
.x23_c00334{left:210.560000pt;}
.x38_c00334{left:219.520000pt;}
.x6_c00334{left:231.040000pt;}
.x7_c00334{left:240.000000pt;}
.xc_c00334{left:248.320000pt;}
.x1c_c00334{left:249.600000pt;}
.x1d_c00334{left:259.200000pt;}
.x9_c00334{left:268.160000pt;}
.x1a_c00334{left:278.400000pt;}
.x8_c00334{left:288.000000pt;}
.x24_c00334{left:295.680000pt;}
.x37_c00334{left:297.600000pt;}
.x1e_c00334{left:305.920000pt;}
.xa_c00334{left:307.200000pt;}
.xb_c00334{left:316.800000pt;}
.x35_c00334{left:325.120000pt;}
.x25_c00334{left:336.000000pt;}
.x4_c00334{left:345.600000pt;}
.x32_c00334{left:354.560000pt;}
.xd_c00334{left:362.880000pt;}
.xe_c00334{left:403.200000pt;}
.x26_c00334{left:410.880000pt;}
.x1f_c00334{left:441.600000pt;}
.x27_c00334{left:449.280000pt;}
.xf_c00334{left:451.200000pt;}
.x33_c00334{left:468.480000pt;}
.x2c_c00334{left:489.600000pt;}
.x17_c00334{left:490.880000pt;}
.x2d_c00334{left:497.920000pt;}
.x10_c00334{left:499.200000pt;}
.x2b_c00334{left:516.480000pt;}
.x16_c00334{left:517.760000pt;}
.x28_c00334{left:545.920000pt;}
.x13_c00334{left:547.200000pt;}
.x18_c00334{left:568.320000pt;}
.x29_c00334{left:574.720000pt;}
.x14_c00334{left:576.000000pt;}
.x39_c00334{left:602.880000pt;}
.x19_c00334{left:604.800000pt;}
.x2e_c00334{left:612.480000pt;}
.x12_c00334{left:613.760000pt;}
.x2a_c00334{left:630.400000pt;}
.x15_c00334{left:631.680000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_02d3792e4b6117c3b828097f.woff2')format("woff");}.ff1_c00335{font-family:ff1_c00335;line-height:1.109863;font-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_c00335{transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);}
.m40_c00335{transform:matrix(0.185575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185575,0.000000,0.000000,0.250000,0,0);}
.m4a_c00335{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m47_c00335{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);}
.m33_c00335{transform:matrix(0.235600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235600,0.000000,0.000000,0.250000,0,0);}
.m37_c00335{transform:matrix(0.236675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236675,0.000000,0.000000,0.250000,0,0);}
.m2a_c00335{transform:matrix(0.238175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238175,0.000000,0.000000,0.250000,0,0);}
.mf_c00335{transform:matrix(0.244450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244450,0.000000,0.000000,0.250000,0,0);}
.m2d_c00335{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m32_c00335{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m17_c00335{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);}
.m3d_c00335{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m7_c00335{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m2_c00335{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00335{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);}
.m3a_c00335{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m15_c00335{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00335{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00335{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mb_c00335{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);}
.m3c_c00335{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m8_c00335{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m10_c00335{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m16_c00335{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m24_c00335{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m38_c00335{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00335{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m9_c00335{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m39_c00335{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m0_c00335{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m14_c00335{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m30_c00335{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m43_c00335{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m4_c00335{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m11_c00335{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m46_c00335{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m29_c00335{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00335{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.md_c00335{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);}
.m3f_c00335{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m22_c00335{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00335{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m13_c00335{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m21_c00335{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_c00335{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m19_c00335{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.mc_c00335{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.ma_c00335{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1_c00335{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m23_c00335{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m6_c00335{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);}
.m27_c00335{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00335{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);}
.m35_c00335{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m34_c00335{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00335{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m36_c00335{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m26_c00335{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m44_c00335{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m41_c00335{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m18_c00335{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m3_c00335{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.me_c00335{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);}
.m1c_c00335{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);}
.m5_c00335{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00335{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00335{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m20_c00335{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m12_c00335{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);}
.m2e_c00335{transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);}
.m31_c00335{transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);}
.m45_c00335{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m49_c00335{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m42_c00335{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.m25_c00335{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.v1_c00335{vertical-align:-8.640000px;}
.v0_c00335{vertical-align:0.000000px;}
.ls0_c00335{letter-spacing:0.000000px;}
.sc__c00335{text-shadow:none;}
.sc0_c00335{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00335{-webkit-text-stroke:0px transparent;}
.sc0_c00335{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00335{word-spacing:0.000000px;}
.ws0_c00335{word-spacing:43.053600px;}
.fc0_c00335{color:transparent;}
.fsd_c00335{font-size:31.680000px;}
.fsa_c00335{font-size:37.440000px;}
.fs3_c00335{font-size:46.080000px;}
.fsb_c00335{font-size:48.960000px;}
.fs4_c00335{font-size:51.840000px;}
.fs6_c00335{font-size:54.720000px;}
.fs8_c00335{font-size:57.600000px;}
.fs1_c00335{font-size:60.480000px;}
.fs9_c00335{font-size:63.360000px;}
.fsc_c00335{font-size:66.240000px;}
.fs7_c00335{font-size:69.120000px;}
.fs5_c00335{font-size:72.000000px;}
.fs0_c00335{font-size:74.880000px;}
.fs2_c00335{font-size:77.760000px;}
.fse_c00335{font-size:80.640000px;}
.y0_c00335{bottom:0.000000px;}
.y60_c00335{bottom:39.600000px;}
.y5f_c00335{bottom:43.920000px;}
.y7a_c00335{bottom:44.640000px;}
.y7b_c00335{bottom:46.080000px;}
.y5e_c00335{bottom:82.800000px;}
.y5d_c00335{bottom:86.400000px;}
.y78_c00335{bottom:87.120000px;}
.y79_c00335{bottom:89.280000px;}
.y77_c00335{bottom:90.000000px;}
.y5c_c00335{bottom:126.000000px;}
.y5b_c00335{bottom:128.880000px;}
.y76_c00335{bottom:130.320000px;}
.y75_c00335{bottom:131.040000px;}
.y5a_c00335{bottom:168.480000px;}
.y59_c00335{bottom:172.800000px;}
.y74_c00335{bottom:175.680000px;}
.y58_c00335{bottom:212.400000px;}
.y57_c00335{bottom:213.120000px;}
.y71_c00335{bottom:216.000000px;}
.y56_c00335{bottom:216.720000px;}
.y73_c00335{bottom:218.160000px;}
.y72_c00335{bottom:219.600000px;}
.y55_c00335{bottom:255.600000px;}
.y54_c00335{bottom:259.200000px;}
.y70_c00335{bottom:262.080000px;}
.y53_c00335{bottom:299.520000px;}
.y51_c00335{bottom:302.400000px;}
.y52_c00335{bottom:303.120000px;}
.y6f_c00335{bottom:304.560000px;}
.y6e_c00335{bottom:305.280000px;}
.y4f_c00335{bottom:342.720000px;}
.y50_c00335{bottom:343.440000px;}
.y4d_c00335{bottom:345.600000px;}
.y4e_c00335{bottom:346.320000px;}
.y6d_c00335{bottom:347.760000px;}
.y4c_c00335{bottom:385.920000px;}
.y49_c00335{bottom:388.800000px;}
.y4a_c00335{bottom:389.520000px;}
.y4b_c00335{bottom:390.240000px;}
.y48_c00335{bottom:429.120000px;}
.y47_c00335{bottom:431.280000px;}
.y46_c00335{bottom:432.000000px;}
.y42_c00335{bottom:471.600000px;}
.y45_c00335{bottom:473.040000px;}
.y41_c00335{bottom:475.200000px;}
.y43_c00335{bottom:475.920000px;}
.y44_c00335{bottom:476.640000px;}
.y6c_c00335{bottom:477.360000px;}
.y3c_c00335{bottom:515.520000px;}
.y40_c00335{bottom:516.240000px;}
.y3e_c00335{bottom:516.960000px;}
.y3b_c00335{bottom:517.680000px;}
.y6b_c00335{bottom:518.400000px;}
.y3d_c00335{bottom:519.120000px;}
.y3f_c00335{bottom:520.560000px;}
.y38_c00335{bottom:558.000000px;}
.y3a_c00335{bottom:558.720000px;}
.y37_c00335{bottom:560.160000px;}
.y69_c00335{bottom:560.880000px;}
.y39_c00335{bottom:562.320000px;}
.y6a_c00335{bottom:564.480000px;}
.y35_c00335{bottom:601.200000px;}
.y33_c00335{bottom:602.640000px;}
.y66_c00335{bottom:603.360000px;}
.y67_c00335{bottom:604.080000px;}
.y36_c00335{bottom:604.800000px;}
.y34_c00335{bottom:605.520000px;}
.y68_c00335{bottom:606.240000px;}
.y2f_c00335{bottom:643.680000px;}
.y32_c00335{bottom:644.400000px;}
.y2c_c00335{bottom:645.840000px;}
.y31_c00335{bottom:646.560000px;}
.y2d_c00335{bottom:647.280000px;}
.y30_c00335{bottom:648.000000px;}
.y2e_c00335{bottom:648.720000px;}
.y2b_c00335{bottom:686.880000px;}
.y29_c00335{bottom:688.320000px;}
.y28_c00335{bottom:689.040000px;}
.y2a_c00335{bottom:691.200000px;}
.y65_c00335{bottom:692.640000px;}
.y27_c00335{bottom:730.080000px;}
.y26_c00335{bottom:730.800000px;}
.y24_c00335{bottom:731.520000px;}
.y64_c00335{bottom:732.240000px;}
.y63_c00335{bottom:732.960000px;}
.y25_c00335{bottom:734.400000px;}
.y23_c00335{bottom:773.280000px;}
.y22_c00335{bottom:774.720000px;}
.y61_c00335{bottom:775.440000px;}
.y62_c00335{bottom:777.600000px;}
.y20_c00335{bottom:817.920000px;}
.y21_c00335{bottom:820.800000px;}
.y1b_c00335{bottom:848.880000px;}
.y1d_c00335{bottom:849.600000px;}
.y19_c00335{bottom:850.320000px;}
.y1c_c00335{bottom:851.040000px;}
.y1e_c00335{bottom:851.760000px;}
.y1f_c00335{bottom:852.480000px;}
.y1a_c00335{bottom:853.200000px;}
.y18_c00335{bottom:892.800000px;}
.y14_c00335{bottom:924.480000px;}
.y13_c00335{bottom:925.920000px;}
.y16_c00335{bottom:926.640000px;}
.y15_c00335{bottom:928.800000px;}
.y17_c00335{bottom:929.520000px;}
.y11_c00335{bottom:967.680000px;}
.yf_c00335{bottom:969.840000px;}
.y12_c00335{bottom:972.000000px;}
.y10_c00335{bottom:972.720000px;}
.y9_c00335{bottom:1010.880000px;}
.yc_c00335{bottom:1011.600000px;}
.y8_c00335{bottom:1012.320000px;}
.ya_c00335{bottom:1013.040000px;}
.ye_c00335{bottom:1013.760000px;}
.yd_c00335{bottom:1015.200000px;}
.yb_c00335{bottom:1015.920000px;}
.y3_c00335{bottom:1054.080000px;}
.y2_c00335{bottom:1055.520000px;}
.y5_c00335{bottom:1056.240000px;}
.y4_c00335{bottom:1057.680000px;}
.y7_c00335{bottom:1058.400000px;}
.y6_c00335{bottom:1059.120000px;}
.y1_c00335{bottom:1108.800000px;}
.hf_c00335{height:28.508906px;}
.hc_c00335{height:33.692344px;}
.h5_c00335{height:41.467500px;}
.hd_c00335{height:44.059219px;}
.h6_c00335{height:46.650937px;}
.h8_c00335{height:49.242656px;}
.ha_c00335{height:51.834375px;}
.h3_c00335{height:54.426094px;}
.hb_c00335{height:57.017812px;}
.he_c00335{height:59.609531px;}
.h9_c00335{height:62.201250px;}
.h7_c00335{height:64.792969px;}
.h2_c00335{height:67.384687px;}
.h4_c00335{height:69.976406px;}
.h10_c00335{height:72.568125px;}
.h1_c00335{height:1149.000000px;}
.h0_c00335{height:1149.120000px;}
.w0_c00335{width:774.720000px;}
.w1_c00335{width:774.750000px;}
.x0_c00335{left:0.000000px;}
.x2_c00335{left:63.360000px;}
.xf_c00335{left:64.800000px;}
.x2b_c00335{left:66.240000px;}
.x2f_c00335{left:67.680000px;}
.x30_c00335{left:69.120000px;}
.x20_c00335{left:108.000000px;}
.x15_c00335{left:137.520000px;}
.x3_c00335{left:138.960000px;}
.x1a_c00335{left:170.640000px;}
.x2d_c00335{left:172.080000px;}
.x10_c00335{left:181.440000px;}
.x19_c00335{left:192.240000px;}
.x28_c00335{left:224.640000px;}
.x16_c00335{left:226.080000px;}
.x2c_c00335{left:236.160000px;}
.x1b_c00335{left:245.520000px;}
.xb_c00335{left:267.840000px;}
.x2e_c00335{left:269.280000px;}
.x26_c00335{left:278.640000px;}
.x29_c00335{left:280.080000px;}
.x21_c00335{left:288.720000px;}
.x1c_c00335{left:290.880000px;}
.x17_c00335{left:311.040000px;}
.x4_c00335{left:312.480000px;}
.x12_c00335{left:323.280000px;}
.x22_c00335{left:334.080000px;}
.x5_c00335{left:354.240000px;}
.x24_c00335{left:364.320000px;}
.x13_c00335{left:366.480000px;}
.x2a_c00335{left:377.280000px;}
.x18_c00335{left:407.520000px;}
.xc_c00335{left:409.680000px;}
.x23_c00335{left:429.840000px;}
.x1d_c00335{left:439.920000px;}
.x6_c00335{left:452.160000px;}
.x25_c00335{left:462.960000px;}
.x1e_c00335{left:483.840000px;}
.xd_c00335{left:495.360000px;}
.x7_c00335{left:506.160000px;}
.x27_c00335{left:516.960000px;}
.x1f_c00335{left:537.840000px;}
.x8_c00335{left:548.640000px;}
.x3b_c00335{left:558.719190px;}
.x35_c00335{left:560.160000px;}
.x3a_c00335{left:579.600000px;}
.x14_c00335{left:581.040000px;}
.x39_c00335{left:591.840000px;}
.x31_c00335{left:593.280000px;}
.x3c_c00335{left:612.720000px;}
.x9_c00335{left:614.160000px;}
.x33_c00335{left:615.600000px;}
.x32_c00335{left:645.840000px;}
.xa_c00335{left:647.280000px;}
.x36_c00335{left:657.360000px;}
.x34_c00335{left:678.240000px;}
.xe_c00335{left:689.040000px;}
.x1_c00335{left:694.080000px;}
.x37_c00335{left:699.840000px;}
.x38_c00335{left:708.480000px;}
.x11_c00335{left:709.920000px;}
@media print{
.v1_c00335{vertical-align:-7.680000pt;}
.v0_c00335{vertical-align:0.000000pt;}
.ls0_c00335{letter-spacing:0.000000pt;}
.ws1_c00335{word-spacing:0.000000pt;}
.ws0_c00335{word-spacing:38.269867pt;}
.fsd_c00335{font-size:28.160000pt;}
.fsa_c00335{font-size:33.280000pt;}
.fs3_c00335{font-size:40.960000pt;}
.fsb_c00335{font-size:43.520000pt;}
.fs4_c00335{font-size:46.080000pt;}
.fs6_c00335{font-size:48.640000pt;}
.fs8_c00335{font-size:51.200000pt;}
.fs1_c00335{font-size:53.760000pt;}
.fs9_c00335{font-size:56.320000pt;}
.fsc_c00335{font-size:58.880000pt;}
.fs7_c00335{font-size:61.440000pt;}
.fs5_c00335{font-size:64.000000pt;}
.fs0_c00335{font-size:66.560000pt;}
.fs2_c00335{font-size:69.120000pt;}
.fse_c00335{font-size:71.680000pt;}
.y0_c00335{bottom:0.000000pt;}
.y60_c00335{bottom:35.200000pt;}
.y5f_c00335{bottom:39.040000pt;}
.y7a_c00335{bottom:39.680000pt;}
.y7b_c00335{bottom:40.960000pt;}
.y5e_c00335{bottom:73.600000pt;}
.y5d_c00335{bottom:76.800000pt;}
.y78_c00335{bottom:77.440000pt;}
.y79_c00335{bottom:79.360000pt;}
.y77_c00335{bottom:80.000000pt;}
.y5c_c00335{bottom:112.000000pt;}
.y5b_c00335{bottom:114.560000pt;}
.y76_c00335{bottom:115.840000pt;}
.y75_c00335{bottom:116.480000pt;}
.y5a_c00335{bottom:149.760000pt;}
.y59_c00335{bottom:153.600000pt;}
.y74_c00335{bottom:156.160000pt;}
.y58_c00335{bottom:188.800000pt;}
.y57_c00335{bottom:189.440000pt;}
.y71_c00335{bottom:192.000000pt;}
.y56_c00335{bottom:192.640000pt;}
.y73_c00335{bottom:193.920000pt;}
.y72_c00335{bottom:195.200000pt;}
.y55_c00335{bottom:227.200000pt;}
.y54_c00335{bottom:230.400000pt;}
.y70_c00335{bottom:232.960000pt;}
.y53_c00335{bottom:266.240000pt;}
.y51_c00335{bottom:268.800000pt;}
.y52_c00335{bottom:269.440000pt;}
.y6f_c00335{bottom:270.720000pt;}
.y6e_c00335{bottom:271.360000pt;}
.y4f_c00335{bottom:304.640000pt;}
.y50_c00335{bottom:305.280000pt;}
.y4d_c00335{bottom:307.200000pt;}
.y4e_c00335{bottom:307.840000pt;}
.y6d_c00335{bottom:309.120000pt;}
.y4c_c00335{bottom:343.040000pt;}
.y49_c00335{bottom:345.600000pt;}
.y4a_c00335{bottom:346.240000pt;}
.y4b_c00335{bottom:346.880000pt;}
.y48_c00335{bottom:381.440000pt;}
.y47_c00335{bottom:383.360000pt;}
.y46_c00335{bottom:384.000000pt;}
.y42_c00335{bottom:419.200000pt;}
.y45_c00335{bottom:420.480000pt;}
.y41_c00335{bottom:422.400000pt;}
.y43_c00335{bottom:423.040000pt;}
.y44_c00335{bottom:423.680000pt;}
.y6c_c00335{bottom:424.320000pt;}
.y3c_c00335{bottom:458.240000pt;}
.y40_c00335{bottom:458.880000pt;}
.y3e_c00335{bottom:459.520000pt;}
.y3b_c00335{bottom:460.160000pt;}
.y6b_c00335{bottom:460.800000pt;}
.y3d_c00335{bottom:461.440000pt;}
.y3f_c00335{bottom:462.720000pt;}
.y38_c00335{bottom:496.000000pt;}
.y3a_c00335{bottom:496.640000pt;}
.y37_c00335{bottom:497.920000pt;}
.y69_c00335{bottom:498.560000pt;}
.y39_c00335{bottom:499.840000pt;}
.y6a_c00335{bottom:501.760000pt;}
.y35_c00335{bottom:534.400000pt;}
.y33_c00335{bottom:535.680000pt;}
.y66_c00335{bottom:536.320000pt;}
.y67_c00335{bottom:536.960000pt;}
.y36_c00335{bottom:537.600000pt;}
.y34_c00335{bottom:538.240000pt;}
.y68_c00335{bottom:538.880000pt;}
.y2f_c00335{bottom:572.160000pt;}
.y32_c00335{bottom:572.800000pt;}
.y2c_c00335{bottom:574.080000pt;}
.y31_c00335{bottom:574.720000pt;}
.y2d_c00335{bottom:575.360000pt;}
.y30_c00335{bottom:576.000000pt;}
.y2e_c00335{bottom:576.640000pt;}
.y2b_c00335{bottom:610.560000pt;}
.y29_c00335{bottom:611.840000pt;}
.y28_c00335{bottom:612.480000pt;}
.y2a_c00335{bottom:614.400000pt;}
.y65_c00335{bottom:615.680000pt;}
.y27_c00335{bottom:648.960000pt;}
.y26_c00335{bottom:649.600000pt;}
.y24_c00335{bottom:650.240000pt;}
.y64_c00335{bottom:650.880000pt;}
.y63_c00335{bottom:651.520000pt;}
.y25_c00335{bottom:652.800000pt;}
.y23_c00335{bottom:687.360000pt;}
.y22_c00335{bottom:688.640000pt;}
.y61_c00335{bottom:689.280000pt;}
.y62_c00335{bottom:691.200000pt;}
.y20_c00335{bottom:727.040000pt;}
.y21_c00335{bottom:729.600000pt;}
.y1b_c00335{bottom:754.560000pt;}
.y1d_c00335{bottom:755.200000pt;}
.y19_c00335{bottom:755.840000pt;}
.y1c_c00335{bottom:756.480000pt;}
.y1e_c00335{bottom:757.120000pt;}
.y1f_c00335{bottom:757.760000pt;}
.y1a_c00335{bottom:758.400000pt;}
.y18_c00335{bottom:793.600000pt;}
.y14_c00335{bottom:821.760000pt;}
.y13_c00335{bottom:823.040000pt;}
.y16_c00335{bottom:823.680000pt;}
.y15_c00335{bottom:825.600000pt;}
.y17_c00335{bottom:826.240000pt;}
.y11_c00335{bottom:860.160000pt;}
.yf_c00335{bottom:862.080000pt;}
.y12_c00335{bottom:864.000000pt;}
.y10_c00335{bottom:864.640000pt;}
.y9_c00335{bottom:898.560000pt;}
.yc_c00335{bottom:899.200000pt;}
.y8_c00335{bottom:899.840000pt;}
.ya_c00335{bottom:900.480000pt;}
.ye_c00335{bottom:901.120000pt;}
.yd_c00335{bottom:902.400000pt;}
.yb_c00335{bottom:903.040000pt;}
.y3_c00335{bottom:936.960000pt;}
.y2_c00335{bottom:938.240000pt;}
.y5_c00335{bottom:938.880000pt;}
.y4_c00335{bottom:940.160000pt;}
.y7_c00335{bottom:940.800000pt;}
.y6_c00335{bottom:941.440000pt;}
.y1_c00335{bottom:985.600000pt;}
.hf_c00335{height:25.341250pt;}
.hc_c00335{height:29.948750pt;}
.h5_c00335{height:36.860000pt;}
.hd_c00335{height:39.163750pt;}
.h6_c00335{height:41.467500pt;}
.h8_c00335{height:43.771250pt;}
.ha_c00335{height:46.075000pt;}
.h3_c00335{height:48.378750pt;}
.hb_c00335{height:50.682500pt;}
.he_c00335{height:52.986250pt;}
.h9_c00335{height:55.290000pt;}
.h7_c00335{height:57.593750pt;}
.h2_c00335{height:59.897500pt;}
.h4_c00335{height:62.201250pt;}
.h10_c00335{height:64.505000pt;}
.h1_c00335{height:1021.333333pt;}
.h0_c00335{height:1021.440000pt;}
.w0_c00335{width:688.640000pt;}
.w1_c00335{width:688.666667pt;}
.x0_c00335{left:0.000000pt;}
.x2_c00335{left:56.320000pt;}
.xf_c00335{left:57.600000pt;}
.x2b_c00335{left:58.880000pt;}
.x2f_c00335{left:60.160000pt;}
.x30_c00335{left:61.440000pt;}
.x20_c00335{left:96.000000pt;}
.x15_c00335{left:122.240000pt;}
.x3_c00335{left:123.520000pt;}
.x1a_c00335{left:151.680000pt;}
.x2d_c00335{left:152.960000pt;}
.x10_c00335{left:161.280000pt;}
.x19_c00335{left:170.880000pt;}
.x28_c00335{left:199.680000pt;}
.x16_c00335{left:200.960000pt;}
.x2c_c00335{left:209.920000pt;}
.x1b_c00335{left:218.240000pt;}
.xb_c00335{left:238.080000pt;}
.x2e_c00335{left:239.360000pt;}
.x26_c00335{left:247.680000pt;}
.x29_c00335{left:248.960000pt;}
.x21_c00335{left:256.640000pt;}
.x1c_c00335{left:258.560000pt;}
.x17_c00335{left:276.480000pt;}
.x4_c00335{left:277.760000pt;}
.x12_c00335{left:287.360000pt;}
.x22_c00335{left:296.960000pt;}
.x5_c00335{left:314.880000pt;}
.x24_c00335{left:323.840000pt;}
.x13_c00335{left:325.760000pt;}
.x2a_c00335{left:335.360000pt;}
.x18_c00335{left:362.240000pt;}
.xc_c00335{left:364.160000pt;}
.x23_c00335{left:382.080000pt;}
.x1d_c00335{left:391.040000pt;}
.x6_c00335{left:401.920000pt;}
.x25_c00335{left:411.520000pt;}
.x1e_c00335{left:430.080000pt;}
.xd_c00335{left:440.320000pt;}
.x7_c00335{left:449.920000pt;}
.x27_c00335{left:459.520000pt;}
.x1f_c00335{left:478.080000pt;}
.x8_c00335{left:487.680000pt;}
.x3b_c00335{left:496.639280pt;}
.x35_c00335{left:497.920000pt;}
.x3a_c00335{left:515.200000pt;}
.x14_c00335{left:516.480000pt;}
.x39_c00335{left:526.080000pt;}
.x31_c00335{left:527.360000pt;}
.x3c_c00335{left:544.640000pt;}
.x9_c00335{left:545.920000pt;}
.x33_c00335{left:547.200000pt;}
.x32_c00335{left:574.080000pt;}
.xa_c00335{left:575.360000pt;}
.x36_c00335{left:584.320000pt;}
.x34_c00335{left:602.880000pt;}
.xe_c00335{left:612.480000pt;}
.x1_c00335{left:616.960000pt;}
.x37_c00335{left:622.080000pt;}
.x38_c00335{left:629.760000pt;}
.x11_c00335{left:631.040000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4dbe65c213a79f8614764e40.woff2')format("woff");}.ff1_c00336{font-family:ff1_c00336;line-height:1.109863;font-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_c00336{transform:matrix(0.139650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139650,0.000000,0.000000,0.250000,0,0);}
.m40_c00336{transform:matrix(0.211100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211100,0.000000,0.000000,0.250000,0,0);}
.m3d_c00336{transform:matrix(0.216700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216700,0.000000,0.000000,0.250000,0,0);}
.m2f_c00336{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);}
.m1d_c00336{transform:matrix(0.228775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228775,0.000000,0.000000,0.250000,0,0);}
.m3b_c00336{transform:matrix(0.231225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231225,0.000000,0.000000,0.250000,0,0);}
.m4e_c00336{transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);}
.m4_c00336{transform:matrix(0.233375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233375,0.000000,0.000000,0.250000,0,0);}
.m50_c00336{transform:matrix(0.234625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234625,0.000000,0.000000,0.250000,0,0);}
.me_c00336{transform:matrix(0.235700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235700,0.000000,0.000000,0.250000,0,0);}
.m4c_c00336{transform:matrix(0.236300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236300,0.000000,0.000000,0.250000,0,0);}
.m46_c00336{transform:matrix(0.238025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238025,0.000000,0.000000,0.250000,0,0);}
.m27_c00336{transform:matrix(0.240300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240300,0.000000,0.000000,0.250000,0,0);}
.m4d_c00336{transform:matrix(0.243375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243375,0.000000,0.000000,0.250000,0,0);}
.m11_c00336{transform:matrix(0.243975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243975,0.000000,0.000000,0.250000,0,0);}
.m4a_c00336{transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);}
.m7_c00336{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m29_c00336{transform:matrix(0.245825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245825,0.000000,0.000000,0.250000,0,0);}
.m2c_c00336{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m52_c00336{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);}
.m45_c00336{transform:matrix(0.247275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247275,0.000000,0.000000,0.250000,0,0);}
.mc_c00336{transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);}
.m37_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);}
.m4f_c00336{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_c00336{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);}
.m22_c00336{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);}
.m34_c00336{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_c00336{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);}
.m49_c00336{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00336{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00336{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m10_c00336{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);}
.m30_c00336{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m39_c00336{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00336{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m19_c00336{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m24_c00336{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m3_c00336{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00336{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m43_c00336{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m36_c00336{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m28_c00336{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00336{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1_c00336{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m51_c00336{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m54_c00336{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m8_c00336{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00336{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.md_c00336{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00336{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m23_c00336{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m32_c00336{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m15_c00336{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m14_c00336{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m26_c00336{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);}
.m2b_c00336{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m2_c00336{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m25_c00336{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00336{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);}
.m18_c00336{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m13_c00336{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m0_c00336{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m20_c00336{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.mb_c00336{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);}
.m47_c00336{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);}
.m2a_c00336{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);}
.m12_c00336{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_c00336{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00336{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);}
.m16_c00336{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m6_c00336{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m53_c00336{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m31_c00336{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);}
.m3e_c00336{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m33_c00336{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);}
.m2d_c00336{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m35_c00336{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m5_c00336{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m38_c00336{transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);}
.m17_c00336{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);}
.mf_c00336{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m44_c00336{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m48_c00336{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m41_c00336{transform:matrix(0.712500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.712500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.712500,0.000000,0.000000,0.250000,0,0);}
.m42_c00336{transform:matrix(0.892500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.892500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.892500,0.000000,0.000000,0.250000,0,0);}
.v0_c00336{vertical-align:0.000000px;}
.v1_c00336{vertical-align:5.760000px;}
.ls0_c00336{letter-spacing:0.000000px;}
.sc__c00336{text-shadow:none;}
.sc0_c00336{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00336{-webkit-text-stroke:0px transparent;}
.sc0_c00336{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00336{word-spacing:0.000000px;}
.ws0_c00336{word-spacing:9.212400px;}
.fc0_c00336{color:transparent;}
.fsd_c00336{font-size:28.800000px;}
.fs7_c00336{font-size:37.440000px;}
.fse_c00336{font-size:40.320000px;}
.fsb_c00336{font-size:48.960000px;}
.fs4_c00336{font-size:51.840000px;}
.fs3_c00336{font-size:54.720000px;}
.fs8_c00336{font-size:57.600000px;}
.fs0_c00336{font-size:60.480000px;}
.fs2_c00336{font-size:63.360000px;}
.fs9_c00336{font-size:66.240000px;}
.fs5_c00336{font-size:69.120000px;}
.fsa_c00336{font-size:72.000000px;}
.fs6_c00336{font-size:74.880000px;}
.fs1_c00336{font-size:77.760000px;}
.fsc_c00336{font-size:80.640000px;}
.y0_c00336{bottom:0.000000px;}
.y74_c00336{bottom:29.520000px;}
.y78_c00336{bottom:30.240000px;}
.y77_c00336{bottom:30.960000px;}
.y75_c00336{bottom:32.400000px;}
.y76_c00336{bottom:33.120000px;}
.y70_c00336{bottom:60.480000px;}
.y71_c00336{bottom:61.920000px;}
.y72_c00336{bottom:62.640000px;}
.y7f_c00336{bottom:63.360000px;}
.y6f_c00336{bottom:64.080000px;}
.y73_c00336{bottom:66.240000px;}
.y7e_c00336{bottom:66.960000px;}
.y6c_c00336{bottom:104.400000px;}
.y6d_c00336{bottom:105.120000px;}
.y6e_c00336{bottom:105.840000px;}
.y6b_c00336{bottom:108.000000px;}
.y7c_c00336{bottom:108.720000px;}
.y7d_c00336{bottom:110.160000px;}
.y68_c00336{bottom:147.600000px;}
.y6a_c00336{bottom:149.040000px;}
.y67_c00336{bottom:151.200000px;}
.y69_c00336{bottom:151.920000px;}
.y61_c00336{bottom:190.800000px;}
.y62_c00336{bottom:192.240000px;}
.y64_c00336{bottom:192.960000px;}
.y60_c00336{bottom:194.400000px;}
.y63_c00336{bottom:195.120000px;}
.y65_c00336{bottom:195.840000px;}
.y66_c00336{bottom:196.560000px;}
.y5b_c00336{bottom:234.000000px;}
.y5f_c00336{bottom:236.160000px;}
.y5d_c00336{bottom:236.880000px;}
.y5a_c00336{bottom:237.600000px;}
.y5c_c00336{bottom:238.320000px;}
.y5e_c00336{bottom:239.760000px;}
.y54_c00336{bottom:277.200000px;}
.y58_c00336{bottom:278.640000px;}
.y56_c00336{bottom:279.360000px;}
.y59_c00336{bottom:280.080000px;}
.y53_c00336{bottom:280.800000px;}
.y55_c00336{bottom:281.520000px;}
.y57_c00336{bottom:282.240000px;}
.y52_c00336{bottom:320.400000px;}
.y4e_c00336{bottom:352.080000px;}
.y4f_c00336{bottom:353.520000px;}
.y50_c00336{bottom:354.240000px;}
.y4d_c00336{bottom:355.680000px;}
.y7b_c00336{bottom:356.400000px;}
.y7a_c00336{bottom:357.120000px;}
.y51_c00336{bottom:357.840000px;}
.y4a_c00336{bottom:394.560000px;}
.y4b_c00336{bottom:396.000000px;}
.y79_c00336{bottom:397.440000px;}
.y4c_c00336{bottom:398.160000px;}
.y48_c00336{bottom:398.880000px;}
.y49_c00336{bottom:399.600000px;}
.y40_c00336{bottom:438.480000px;}
.y42_c00336{bottom:439.200000px;}
.y47_c00336{bottom:440.640000px;}
.y3f_c00336{bottom:441.360000px;}
.y41_c00336{bottom:442.080000px;}
.y3d_c00336{bottom:483.120000px;}
.y3e_c00336{bottom:485.280000px;}
.y38_c00336{bottom:513.360000px;}
.y3b_c00336{bottom:514.080000px;}
.y37_c00336{bottom:516.240000px;}
.y46_c00336{bottom:516.960000px;}
.y39_c00336{bottom:517.680000px;}
.y3a_c00336{bottom:518.400000px;}
.y3c_c00336{bottom:519.120000px;}
.y33_c00336{bottom:557.280000px;}
.y36_c00336{bottom:558.000000px;}
.y32_c00336{bottom:559.440000px;}
.y34_c00336{bottom:560.880000px;}
.y35_c00336{bottom:561.600000px;}
.y30_c00336{bottom:601.200000px;}
.y2f_c00336{bottom:602.640000px;}
.y31_c00336{bottom:603.360000px;}
.y45_c00336{bottom:605.520000px;}
.y2e_c00336{bottom:644.400000px;}
.y2d_c00336{bottom:645.840000px;}
.y44_c00336{bottom:647.280000px;}
.y43_c00336{bottom:648.000000px;}
.y2c_c00336{bottom:687.600000px;}
.y29_c00336{bottom:688.320000px;}
.y2b_c00336{bottom:689.040000px;}
.y2a_c00336{bottom:691.200000px;}
.y26_c00336{bottom:719.280000px;}
.y25_c00336{bottom:720.000000px;}
.y27_c00336{bottom:720.720000px;}
.y28_c00336{bottom:721.440000px;}
.y23_c00336{bottom:722.160000px;}
.y24_c00336{bottom:723.600000px;}
.y13_c00336{bottom:763.920000px;}
.y14_c00336{bottom:766.800000px;}
.y11_c00336{bottom:795.600000px;}
.y10_c00336{bottom:797.040000px;}
.y22_c00336{bottom:797.760000px;}
.y21_c00336{bottom:798.480000px;}
.y12_c00336{bottom:799.200000px;}
.ye_c00336{bottom:838.080000px;}
.y20_c00336{bottom:838.800000px;}
.yd_c00336{bottom:839.520000px;}
.y1f_c00336{bottom:840.240000px;}
.yf_c00336{bottom:842.400000px;}
.yc_c00336{bottom:881.280000px;}
.yb_c00336{bottom:882.000000px;}
.y1e_c00336{bottom:882.720000px;}
.y1d_c00336{bottom:884.160000px;}
.ya_c00336{bottom:924.480000px;}
.y1c_c00336{bottom:925.200000px;}
.y1b_c00336{bottom:927.360000px;}
.y9_c00336{bottom:966.240000px;}
.y6_c00336{bottom:966.960000px;}
.y1a_c00336{bottom:967.680000px;}
.y5_c00336{bottom:968.400000px;}
.y19_c00336{bottom:969.120000px;}
.y8_c00336{bottom:970.560000px;}
.y7_c00336{bottom:971.280000px;}
.y4_c00336{bottom:1009.440000px;}
.y18_c00336{bottom:1010.880000px;}
.y3_c00336{bottom:1011.600000px;}
.y2_c00336{bottom:1053.360000px;}
.y1_c00336{bottom:1054.080000px;}
.y16_c00336{bottom:1055.520000px;}
.y17_c00336{bottom:1056.960000px;}
.y15_c00336{bottom:1100.160000px;}
.hf_c00336{height:25.917187px;}
.h9_c00336{height:33.692344px;}
.h10_c00336{height:36.284062px;}
.hd_c00336{height:44.059219px;}
.h6_c00336{height:46.650937px;}
.h5_c00336{height:49.242656px;}
.ha_c00336{height:51.834375px;}
.h2_c00336{height:54.426094px;}
.h4_c00336{height:57.017812px;}
.hb_c00336{height:59.609531px;}
.h11_c00336{height:60.186094px;}
.h7_c00336{height:62.201250px;}
.hc_c00336{height:64.792969px;}
.h8_c00336{height:67.384687px;}
.h3_c00336{height:69.976406px;}
.he_c00336{height:72.568125px;}
.h1_c00336{height:1144.500000px;}
.h0_c00336{height:1144.800000px;}
.w1_c00336{width:768.000000px;}
.w0_c00336{width:768.240000px;}
.x0_c00336{left:0.000000px;}
.x1_c00336{left:67.680000px;}
.x2e_c00336{left:69.120000px;}
.x2b_c00336{left:110.160000px;}
.x2_c00336{left:140.400000px;}
.x17_c00336{left:185.040000px;}
.xc_c00336{left:194.400000px;}
.x27_c00336{left:205.200000px;}
.x1b_c00336{left:226.800000px;}
.x3_c00336{left:228.240000px;}
.x34_c00336{left:237.600000px;}
.xd_c00336{left:239.760000px;}
.x23_c00336{left:259.200000px;}
.x28_c00336{left:260.640000px;}
.x7_c00336{left:271.440000px;}
.x33_c00336{left:280.800000px;}
.x4_c00336{left:282.240000px;}
.x35_c00336{left:291.600000px;}
.x1e_c00336{left:303.120000px;}
.x24_c00336{left:304.560000px;}
.x8_c00336{left:313.920000px;}
.x29_c00336{left:315.360000px;}
.x38_c00336{left:324.000000px;}
.x21_c00336{left:326.160000px;}
.x36_c00336{left:335.520000px;}
.x1c_c00336{left:357.120000px;}
.x39_c00336{left:367.200000px;}
.x18_c00336{left:369.360000px;}
.x2c_c00336{left:388.800000px;}
.x9_c00336{left:399.600000px;}
.x1d_c00336{left:411.120000px;}
.x5_c00336{left:412.560000px;}
.x25_c00336{left:422.640000px;}
.xa_c00336{left:444.240000px;}
.x31_c00336{left:464.400000px;}
.x6_c00336{left:466.560000px;}
.x1f_c00336{left:475.200000px;}
.x26_c00336{left:477.360000px;}
.x2d_c00336{left:486.000000px;}
.x22_c00336{left:487.440000px;}
.x37_c00336{left:495.360000px;}
.x19_c00336{left:498.240000px;}
.x32_c00336{left:507.600000px;}
.x2f_c00336{left:517.680000px;}
.xb_c00336{left:552.960000px;}
.x20_c00336{left:561.600000px;}
.xf_c00336{left:563.760000px;}
.x30_c00336{left:582.480000px;}
.x14_c00336{left:584.640000px;}
.x1a_c00336{left:596.160000px;}
.x3c_c00336{left:614.880000px;}
.x15_c00336{left:616.320000px;}
.x10_c00336{left:617.760000px;}
.x3a_c00336{left:648.720000px;}
.x11_c00336{left:650.160000px;}
.x3d_c00336{left:680.400000px;}
.x16_c00336{left:682.560000px;}
.x3e_c00336{left:689.760000px;}
.x2a_c00336{left:691.200000px;}
.x12_c00336{left:692.640000px;}
.xe_c00336{left:700.560000px;}
.x3f_c00336{left:705.600000px;}
.x3b_c00336{left:711.360000px;}
.x13_c00336{left:712.800000px;}
@media print{
.v0_c00336{vertical-align:0.000000pt;}
.v1_c00336{vertical-align:5.120000pt;}
.ls0_c00336{letter-spacing:0.000000pt;}
.ws1_c00336{word-spacing:0.000000pt;}
.ws0_c00336{word-spacing:8.188800pt;}
.fsd_c00336{font-size:25.600000pt;}
.fs7_c00336{font-size:33.280000pt;}
.fse_c00336{font-size:35.840000pt;}
.fsb_c00336{font-size:43.520000pt;}
.fs4_c00336{font-size:46.080000pt;}
.fs3_c00336{font-size:48.640000pt;}
.fs8_c00336{font-size:51.200000pt;}
.fs0_c00336{font-size:53.760000pt;}
.fs2_c00336{font-size:56.320000pt;}
.fs9_c00336{font-size:58.880000pt;}
.fs5_c00336{font-size:61.440000pt;}
.fsa_c00336{font-size:64.000000pt;}
.fs6_c00336{font-size:66.560000pt;}
.fs1_c00336{font-size:69.120000pt;}
.fsc_c00336{font-size:71.680000pt;}
.y0_c00336{bottom:0.000000pt;}
.y74_c00336{bottom:26.240000pt;}
.y78_c00336{bottom:26.880000pt;}
.y77_c00336{bottom:27.520000pt;}
.y75_c00336{bottom:28.800000pt;}
.y76_c00336{bottom:29.440000pt;}
.y70_c00336{bottom:53.760000pt;}
.y71_c00336{bottom:55.040000pt;}
.y72_c00336{bottom:55.680000pt;}
.y7f_c00336{bottom:56.320000pt;}
.y6f_c00336{bottom:56.960000pt;}
.y73_c00336{bottom:58.880000pt;}
.y7e_c00336{bottom:59.520000pt;}
.y6c_c00336{bottom:92.800000pt;}
.y6d_c00336{bottom:93.440000pt;}
.y6e_c00336{bottom:94.080000pt;}
.y6b_c00336{bottom:96.000000pt;}
.y7c_c00336{bottom:96.640000pt;}
.y7d_c00336{bottom:97.920000pt;}
.y68_c00336{bottom:131.200000pt;}
.y6a_c00336{bottom:132.480000pt;}
.y67_c00336{bottom:134.400000pt;}
.y69_c00336{bottom:135.040000pt;}
.y61_c00336{bottom:169.600000pt;}
.y62_c00336{bottom:170.880000pt;}
.y64_c00336{bottom:171.520000pt;}
.y60_c00336{bottom:172.800000pt;}
.y63_c00336{bottom:173.440000pt;}
.y65_c00336{bottom:174.080000pt;}
.y66_c00336{bottom:174.720000pt;}
.y5b_c00336{bottom:208.000000pt;}
.y5f_c00336{bottom:209.920000pt;}
.y5d_c00336{bottom:210.560000pt;}
.y5a_c00336{bottom:211.200000pt;}
.y5c_c00336{bottom:211.840000pt;}
.y5e_c00336{bottom:213.120000pt;}
.y54_c00336{bottom:246.400000pt;}
.y58_c00336{bottom:247.680000pt;}
.y56_c00336{bottom:248.320000pt;}
.y59_c00336{bottom:248.960000pt;}
.y53_c00336{bottom:249.600000pt;}
.y55_c00336{bottom:250.240000pt;}
.y57_c00336{bottom:250.880000pt;}
.y52_c00336{bottom:284.800000pt;}
.y4e_c00336{bottom:312.960000pt;}
.y4f_c00336{bottom:314.240000pt;}
.y50_c00336{bottom:314.880000pt;}
.y4d_c00336{bottom:316.160000pt;}
.y7b_c00336{bottom:316.800000pt;}
.y7a_c00336{bottom:317.440000pt;}
.y51_c00336{bottom:318.080000pt;}
.y4a_c00336{bottom:350.720000pt;}
.y4b_c00336{bottom:352.000000pt;}
.y79_c00336{bottom:353.280000pt;}
.y4c_c00336{bottom:353.920000pt;}
.y48_c00336{bottom:354.560000pt;}
.y49_c00336{bottom:355.200000pt;}
.y40_c00336{bottom:389.760000pt;}
.y42_c00336{bottom:390.400000pt;}
.y47_c00336{bottom:391.680000pt;}
.y3f_c00336{bottom:392.320000pt;}
.y41_c00336{bottom:392.960000pt;}
.y3d_c00336{bottom:429.440000pt;}
.y3e_c00336{bottom:431.360000pt;}
.y38_c00336{bottom:456.320000pt;}
.y3b_c00336{bottom:456.960000pt;}
.y37_c00336{bottom:458.880000pt;}
.y46_c00336{bottom:459.520000pt;}
.y39_c00336{bottom:460.160000pt;}
.y3a_c00336{bottom:460.800000pt;}
.y3c_c00336{bottom:461.440000pt;}
.y33_c00336{bottom:495.360000pt;}
.y36_c00336{bottom:496.000000pt;}
.y32_c00336{bottom:497.280000pt;}
.y34_c00336{bottom:498.560000pt;}
.y35_c00336{bottom:499.200000pt;}
.y30_c00336{bottom:534.400000pt;}
.y2f_c00336{bottom:535.680000pt;}
.y31_c00336{bottom:536.320000pt;}
.y45_c00336{bottom:538.240000pt;}
.y2e_c00336{bottom:572.800000pt;}
.y2d_c00336{bottom:574.080000pt;}
.y44_c00336{bottom:575.360000pt;}
.y43_c00336{bottom:576.000000pt;}
.y2c_c00336{bottom:611.200000pt;}
.y29_c00336{bottom:611.840000pt;}
.y2b_c00336{bottom:612.480000pt;}
.y2a_c00336{bottom:614.400000pt;}
.y26_c00336{bottom:639.360000pt;}
.y25_c00336{bottom:640.000000pt;}
.y27_c00336{bottom:640.640000pt;}
.y28_c00336{bottom:641.280000pt;}
.y23_c00336{bottom:641.920000pt;}
.y24_c00336{bottom:643.200000pt;}
.y13_c00336{bottom:679.040000pt;}
.y14_c00336{bottom:681.600000pt;}
.y11_c00336{bottom:707.200000pt;}
.y10_c00336{bottom:708.480000pt;}
.y22_c00336{bottom:709.120000pt;}
.y21_c00336{bottom:709.760000pt;}
.y12_c00336{bottom:710.400000pt;}
.ye_c00336{bottom:744.960000pt;}
.y20_c00336{bottom:745.600000pt;}
.yd_c00336{bottom:746.240000pt;}
.y1f_c00336{bottom:746.880000pt;}
.yf_c00336{bottom:748.800000pt;}
.yc_c00336{bottom:783.360000pt;}
.yb_c00336{bottom:784.000000pt;}
.y1e_c00336{bottom:784.640000pt;}
.y1d_c00336{bottom:785.920000pt;}
.ya_c00336{bottom:821.760000pt;}
.y1c_c00336{bottom:822.400000pt;}
.y1b_c00336{bottom:824.320000pt;}
.y9_c00336{bottom:858.880000pt;}
.y6_c00336{bottom:859.520000pt;}
.y1a_c00336{bottom:860.160000pt;}
.y5_c00336{bottom:860.800000pt;}
.y19_c00336{bottom:861.440000pt;}
.y8_c00336{bottom:862.720000pt;}
.y7_c00336{bottom:863.360000pt;}
.y4_c00336{bottom:897.280000pt;}
.y18_c00336{bottom:898.560000pt;}
.y3_c00336{bottom:899.200000pt;}
.y2_c00336{bottom:936.320000pt;}
.y1_c00336{bottom:936.960000pt;}
.y16_c00336{bottom:938.240000pt;}
.y17_c00336{bottom:939.520000pt;}
.y15_c00336{bottom:977.920000pt;}
.hf_c00336{height:23.037500pt;}
.h9_c00336{height:29.948750pt;}
.h10_c00336{height:32.252500pt;}
.hd_c00336{height:39.163750pt;}
.h6_c00336{height:41.467500pt;}
.h5_c00336{height:43.771250pt;}
.ha_c00336{height:46.075000pt;}
.h2_c00336{height:48.378750pt;}
.h4_c00336{height:50.682500pt;}
.hb_c00336{height:52.986250pt;}
.h11_c00336{height:53.498750pt;}
.h7_c00336{height:55.290000pt;}
.hc_c00336{height:57.593750pt;}
.h8_c00336{height:59.897500pt;}
.h3_c00336{height:62.201250pt;}
.he_c00336{height:64.505000pt;}
.h1_c00336{height:1017.333333pt;}
.h0_c00336{height:1017.600000pt;}
.w1_c00336{width:682.666667pt;}
.w0_c00336{width:682.880000pt;}
.x0_c00336{left:0.000000pt;}
.x1_c00336{left:60.160000pt;}
.x2e_c00336{left:61.440000pt;}
.x2b_c00336{left:97.920000pt;}
.x2_c00336{left:124.800000pt;}
.x17_c00336{left:164.480000pt;}
.xc_c00336{left:172.800000pt;}
.x27_c00336{left:182.400000pt;}
.x1b_c00336{left:201.600000pt;}
.x3_c00336{left:202.880000pt;}
.x34_c00336{left:211.200000pt;}
.xd_c00336{left:213.120000pt;}
.x23_c00336{left:230.400000pt;}
.x28_c00336{left:231.680000pt;}
.x7_c00336{left:241.280000pt;}
.x33_c00336{left:249.600000pt;}
.x4_c00336{left:250.880000pt;}
.x35_c00336{left:259.200000pt;}
.x1e_c00336{left:269.440000pt;}
.x24_c00336{left:270.720000pt;}
.x8_c00336{left:279.040000pt;}
.x29_c00336{left:280.320000pt;}
.x38_c00336{left:288.000000pt;}
.x21_c00336{left:289.920000pt;}
.x36_c00336{left:298.240000pt;}
.x1c_c00336{left:317.440000pt;}
.x39_c00336{left:326.400000pt;}
.x18_c00336{left:328.320000pt;}
.x2c_c00336{left:345.600000pt;}
.x9_c00336{left:355.200000pt;}
.x1d_c00336{left:365.440000pt;}
.x5_c00336{left:366.720000pt;}
.x25_c00336{left:375.680000pt;}
.xa_c00336{left:394.880000pt;}
.x31_c00336{left:412.800000pt;}
.x6_c00336{left:414.720000pt;}
.x1f_c00336{left:422.400000pt;}
.x26_c00336{left:424.320000pt;}
.x2d_c00336{left:432.000000pt;}
.x22_c00336{left:433.280000pt;}
.x37_c00336{left:440.320000pt;}
.x19_c00336{left:442.880000pt;}
.x32_c00336{left:451.200000pt;}
.x2f_c00336{left:460.160000pt;}
.xb_c00336{left:491.520000pt;}
.x20_c00336{left:499.200000pt;}
.xf_c00336{left:501.120000pt;}
.x30_c00336{left:517.760000pt;}
.x14_c00336{left:519.680000pt;}
.x1a_c00336{left:529.920000pt;}
.x3c_c00336{left:546.560000pt;}
.x15_c00336{left:547.840000pt;}
.x10_c00336{left:549.120000pt;}
.x3a_c00336{left:576.640000pt;}
.x11_c00336{left:577.920000pt;}
.x3d_c00336{left:604.800000pt;}
.x16_c00336{left:606.720000pt;}
.x3e_c00336{left:613.120000pt;}
.x2a_c00336{left:614.400000pt;}
.x12_c00336{left:615.680000pt;}
.xe_c00336{left:622.720000pt;}
.x3f_c00336{left:627.200000pt;}
.x3b_c00336{left:632.320000pt;}
.x13_c00336{left:633.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_147f177e5e6df970c10e41ad.woff2')format("woff");}.ff1_c00337{font-family:ff1_c00337;line-height:1.109863;font-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_c00337{transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);}
.m2d_c00337{transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);}
.m4a_c00337{transform:matrix(0.197975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197975,0.000000,0.000000,0.250000,0,0);}
.m4d_c00337{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m22_c00337{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m30_c00337{transform:matrix(0.237575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237575,0.000000,0.000000,0.250000,0,0);}
.m3f_c00337{transform:matrix(0.239825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239825,0.000000,0.000000,0.250000,0,0);}
.m19_c00337{transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);}
.m18_c00337{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m4c_c00337{transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);}
.m1e_c00337{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00337{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m45_c00337{transform:matrix(0.248200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248200,0.000000,0.000000,0.250000,0,0);}
.m3c_c00337{transform:matrix(0.248525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248525,0.000000,0.000000,0.250000,0,0);}
.m3b_c00337{transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);}
.m28_c00337{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.ma_c00337{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.mf_c00337{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mc_c00337{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m43_c00337{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m24_c00337{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m2_c00337{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);}
.m48_c00337{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m32_c00337{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m14_c00337{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00337{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m44_c00337{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m8_c00337{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m4_c00337{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m10_c00337{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m12_c00337{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.me_c00337{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m6_c00337{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m5_c00337{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m37_c00337{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m23_c00337{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00337{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00337{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m13_c00337{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m7_c00337{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m36_c00337{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m39_c00337{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00337{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m35_c00337{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m11_c00337{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m15_c00337{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m0_c00337{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m26_c00337{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);}
.m38_c00337{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m9_c00337{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m16_c00337{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m17_c00337{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);}
.m1d_c00337{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m41_c00337{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m1_c00337{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);}
.m2a_c00337{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m33_c00337{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m46_c00337{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);}
.m27_c00337{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_c00337{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);}
.m2e_c00337{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m34_c00337{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00337{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m42_c00337{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);}
.m4f_c00337{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.md_c00337{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00337{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m47_c00337{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.mb_c00337{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);}
.m1a_c00337{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m21_c00337{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);}
.m29_c00337{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m25_c00337{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m3_c00337{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m31_c00337{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m49_c00337{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);}
.m4e_c00337{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);}
.m2c_c00337{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m40_c00337{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00337{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);}
.v0_c00337{vertical-align:0.000000px;}
.ls0_c00337{letter-spacing:0.000000px;}
.sc__c00337{text-shadow:none;}
.sc0_c00337{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00337{-webkit-text-stroke:0px transparent;}
.sc0_c00337{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00337{word-spacing:0.000000px;}
.fc0_c00337{color:transparent;}
.fsb_c00337{font-size:20.160000px;}
.fsc_c00337{font-size:34.560000px;}
.fs8_c00337{font-size:40.320000px;}
.fs3_c00337{font-size:51.840000px;}
.fs5_c00337{font-size:54.720000px;}
.fs9_c00337{font-size:57.600000px;}
.fs1_c00337{font-size:60.480000px;}
.fs6_c00337{font-size:63.360000px;}
.fsa_c00337{font-size:66.240000px;}
.fs4_c00337{font-size:69.120000px;}
.fs0_c00337{font-size:72.000000px;}
.fs7_c00337{font-size:74.880000px;}
.fs2_c00337{font-size:77.760000px;}
.y0_c00337{bottom:0.000000px;}
.y66_c00337{bottom:85.680000px;}
.y65_c00337{bottom:90.000000px;}
.y6f_c00337{bottom:91.440000px;}
.y70_c00337{bottom:92.160000px;}
.y64_c00337{bottom:128.160000px;}
.y63_c00337{bottom:132.480000px;}
.y6d_c00337{bottom:133.200000px;}
.y6e_c00337{bottom:133.920000px;}
.y62_c00337{bottom:171.360000px;}
.y61_c00337{bottom:174.960000px;}
.y6c_c00337{bottom:176.400000px;}
.y60_c00337{bottom:214.560000px;}
.y5f_c00337{bottom:218.160000px;}
.y6a_c00337{bottom:218.880000px;}
.y6b_c00337{bottom:220.320000px;}
.y5e_c00337{bottom:258.480000px;}
.y5d_c00337{bottom:261.360000px;}
.y68_c00337{bottom:263.520000px;}
.y69_c00337{bottom:264.240000px;}
.y5a_c00337{bottom:300.960000px;}
.y5c_c00337{bottom:303.120000px;}
.y5b_c00337{bottom:303.840000px;}
.y59_c00337{bottom:304.560000px;}
.y67_c00337{bottom:305.280000px;}
.y58_c00337{bottom:344.880000px;}
.y57_c00337{bottom:348.480000px;}
.y53_c00337{bottom:377.280000px;}
.y51_c00337{bottom:379.440000px;}
.y55_c00337{bottom:380.160000px;}
.y52_c00337{bottom:381.600000px;}
.y54_c00337{bottom:382.320000px;}
.y56_c00337{bottom:383.040000px;}
.y4f_c00337{bottom:420.480000px;}
.y4d_c00337{bottom:423.360000px;}
.y4e_c00337{bottom:424.800000px;}
.y50_c00337{bottom:425.520000px;}
.y48_c00337{bottom:463.680000px;}
.y4a_c00337{bottom:465.120000px;}
.y47_c00337{bottom:465.840000px;}
.y4b_c00337{bottom:466.560000px;}
.y4c_c00337{bottom:467.280000px;}
.y49_c00337{bottom:468.000000px;}
.y42_c00337{bottom:506.880000px;}
.y45_c00337{bottom:507.600000px;}
.y44_c00337{bottom:509.040000px;}
.y40_c00337{bottom:509.760000px;}
.y43_c00337{bottom:510.480000px;}
.y46_c00337{bottom:511.920000px;}
.y41_c00337{bottom:514.080000px;}
.y3c_c00337{bottom:550.080000px;}
.y3d_c00337{bottom:550.800000px;}
.y3b_c00337{bottom:552.240000px;}
.y3e_c00337{bottom:552.960000px;}
.y3f_c00337{bottom:553.680000px;}
.y38_c00337{bottom:594.000000px;}
.y37_c00337{bottom:594.720000px;}
.y39_c00337{bottom:595.440000px;}
.y3a_c00337{bottom:596.160000px;}
.y35_c00337{bottom:636.480000px;}
.y34_c00337{bottom:637.920000px;}
.y33_c00337{bottom:638.640000px;}
.y36_c00337{bottom:639.360000px;}
.y2f_c00337{bottom:678.960000px;}
.y30_c00337{bottom:679.680000px;}
.y31_c00337{bottom:680.400000px;}
.y2e_c00337{bottom:681.120000px;}
.y32_c00337{bottom:684.000000px;}
.y2a_c00337{bottom:722.160000px;}
.y29_c00337{bottom:724.320000px;}
.y2c_c00337{bottom:725.040000px;}
.y2b_c00337{bottom:725.760000px;}
.y2d_c00337{bottom:726.480000px;}
.y28_c00337{bottom:765.360000px;}
.y27_c00337{bottom:766.800000px;}
.y26_c00337{bottom:768.960000px;}
.y22_c00337{bottom:797.040000px;}
.y20_c00337{bottom:799.200000px;}
.y25_c00337{bottom:799.920000px;}
.y24_c00337{bottom:800.640000px;}
.y21_c00337{bottom:801.360000px;}
.y23_c00337{bottom:802.080000px;}
.y17_c00337{bottom:840.240000px;}
.y19_c00337{bottom:840.960000px;}
.y16_c00337{bottom:842.400000px;}
.y1f_c00337{bottom:843.120000px;}
.y18_c00337{bottom:844.560000px;}
.y1e_c00337{bottom:845.280000px;}
.y13_c00337{bottom:883.440000px;}
.y15_c00337{bottom:884.160000px;}
.y12_c00337{bottom:884.880000px;}
.y14_c00337{bottom:885.600000px;}
.y1d_c00337{bottom:887.040000px;}
.y10_c00337{bottom:927.360000px;}
.yf_c00337{bottom:928.800000px;}
.y1c_c00337{bottom:929.520000px;}
.y1b_c00337{bottom:930.240000px;}
.y11_c00337{bottom:930.960000px;}
.y1a_c00337{bottom:931.680000px;}
.yc_c00337{bottom:970.560000px;}
.yb_c00337{bottom:971.280000px;}
.ye_c00337{bottom:972.000000px;}
.yd_c00337{bottom:974.160000px;}
.y7_c00337{bottom:1013.760000px;}
.y6_c00337{bottom:1014.480000px;}
.y9_c00337{bottom:1015.200000px;}
.y8_c00337{bottom:1017.360000px;}
.ya_c00337{bottom:1018.080000px;}
.y3_c00337{bottom:1057.680000px;}
.y2_c00337{bottom:1058.400000px;}
.y5_c00337{bottom:1059.120000px;}
.y4_c00337{bottom:1062.000000px;}
.y1_c00337{bottom:1100.160000px;}
.hd_c00337{height:18.142031px;}
.he_c00337{height:31.100625px;}
.ha_c00337{height:36.284062px;}
.h5_c00337{height:46.650937px;}
.h7_c00337{height:49.242656px;}
.hb_c00337{height:51.834375px;}
.h3_c00337{height:54.426094px;}
.h8_c00337{height:57.017812px;}
.hc_c00337{height:59.609531px;}
.h6_c00337{height:62.201250px;}
.h2_c00337{height:64.792969px;}
.h9_c00337{height:67.384687px;}
.h4_c00337{height:69.976406px;}
.h1_c00337{height:1149.000000px;}
.h0_c00337{height:1149.120000px;}
.w0_c00337{width:774.720000px;}
.w1_c00337{width:774.750000px;}
.x0_c00337{left:0.000000px;}
.x2_c00337{left:71.280000px;}
.x20_c00337{left:72.720000px;}
.x35_c00337{left:74.160000px;}
.x36_c00337{left:75.600000px;}
.x37_c00337{left:116.640000px;}
.x2b_c00337{left:123.120000px;}
.x3_c00337{left:144.720000px;}
.x24_c00337{left:146.160000px;}
.x2e_c00337{left:181.440000px;}
.x1a_c00337{left:188.640000px;}
.x29_c00337{left:199.440000px;}
.x27_c00337{left:202.320000px;}
.x4_c00337{left:231.840000px;}
.x16_c00337{left:233.280000px;}
.x1e_c00337{left:253.440000px;}
.x34_c00337{left:254.880000px;}
.x10_c00337{left:264.960000px;}
.xa_c00337{left:275.760000px;}
.x2a_c00337{left:285.120000px;}
.x5_c00337{left:286.560000px;}
.x25_c00337{left:296.640000px;}
.x1f_c00337{left:308.880000px;}
.x2c_c00337{left:319.680000px;}
.x2f_c00337{left:328.320000px;}
.x28_c00337{left:340.560000px;}
.x21_c00337{left:350.640000px;}
.x14_c00337{left:362.160000px;}
.x30_c00337{left:373.680000px;}
.x1b_c00337{left:384.480000px;}
.x17_c00337{left:394.560000px;}
.x22_c00337{left:405.360000px;}
.x15_c00337{left:416.160000px;}
.x6_c00337{left:426.960000px;}
.xb_c00337{left:437.760000px;}
.x11_c00337{left:447.120000px;}
.x2d_c00337{left:459.360000px;}
.xc_c00337{left:491.040000px;}
.x31_c00337{left:513.360000px;}
.x1c_c00337{left:522.720000px;}
.xd_c00337{left:534.960000px;}
.x23_c00337{left:566.640000px;}
.x7_c00337{left:568.080000px;}
.x12_c00337{left:578.880000px;}
.x8_c00337{left:587.520000px;}
.x26_c00337{left:588.960000px;}
.x38_c00337{left:598.320000px;}
.x1d_c00337{left:600.480000px;}
.x32_c00337{left:619.920000px;}
.xe_c00337{left:621.360000px;}
.xf_c00337{left:653.760000px;}
.x39_c00337{left:685.440000px;}
.x13_c00337{left:686.880000px;}
.x9_c00337{left:695.520000px;}
.x19_c00337{left:696.960000px;}
.x1_c00337{left:699.840000px;}
.x33_c00337{left:714.960000px;}
.x18_c00337{left:716.400000px;}
@media print{
.v0_c00337{vertical-align:0.000000pt;}
.ls0_c00337{letter-spacing:0.000000pt;}
.ws0_c00337{word-spacing:0.000000pt;}
.fsb_c00337{font-size:17.920000pt;}
.fsc_c00337{font-size:30.720000pt;}
.fs8_c00337{font-size:35.840000pt;}
.fs3_c00337{font-size:46.080000pt;}
.fs5_c00337{font-size:48.640000pt;}
.fs9_c00337{font-size:51.200000pt;}
.fs1_c00337{font-size:53.760000pt;}
.fs6_c00337{font-size:56.320000pt;}
.fsa_c00337{font-size:58.880000pt;}
.fs4_c00337{font-size:61.440000pt;}
.fs0_c00337{font-size:64.000000pt;}
.fs7_c00337{font-size:66.560000pt;}
.fs2_c00337{font-size:69.120000pt;}
.y0_c00337{bottom:0.000000pt;}
.y66_c00337{bottom:76.160000pt;}
.y65_c00337{bottom:80.000000pt;}
.y6f_c00337{bottom:81.280000pt;}
.y70_c00337{bottom:81.920000pt;}
.y64_c00337{bottom:113.920000pt;}
.y63_c00337{bottom:117.760000pt;}
.y6d_c00337{bottom:118.400000pt;}
.y6e_c00337{bottom:119.040000pt;}
.y62_c00337{bottom:152.320000pt;}
.y61_c00337{bottom:155.520000pt;}
.y6c_c00337{bottom:156.800000pt;}
.y60_c00337{bottom:190.720000pt;}
.y5f_c00337{bottom:193.920000pt;}
.y6a_c00337{bottom:194.560000pt;}
.y6b_c00337{bottom:195.840000pt;}
.y5e_c00337{bottom:229.760000pt;}
.y5d_c00337{bottom:232.320000pt;}
.y68_c00337{bottom:234.240000pt;}
.y69_c00337{bottom:234.880000pt;}
.y5a_c00337{bottom:267.520000pt;}
.y5c_c00337{bottom:269.440000pt;}
.y5b_c00337{bottom:270.080000pt;}
.y59_c00337{bottom:270.720000pt;}
.y67_c00337{bottom:271.360000pt;}
.y58_c00337{bottom:306.560000pt;}
.y57_c00337{bottom:309.760000pt;}
.y53_c00337{bottom:335.360000pt;}
.y51_c00337{bottom:337.280000pt;}
.y55_c00337{bottom:337.920000pt;}
.y52_c00337{bottom:339.200000pt;}
.y54_c00337{bottom:339.840000pt;}
.y56_c00337{bottom:340.480000pt;}
.y4f_c00337{bottom:373.760000pt;}
.y4d_c00337{bottom:376.320000pt;}
.y4e_c00337{bottom:377.600000pt;}
.y50_c00337{bottom:378.240000pt;}
.y48_c00337{bottom:412.160000pt;}
.y4a_c00337{bottom:413.440000pt;}
.y47_c00337{bottom:414.080000pt;}
.y4b_c00337{bottom:414.720000pt;}
.y4c_c00337{bottom:415.360000pt;}
.y49_c00337{bottom:416.000000pt;}
.y42_c00337{bottom:450.560000pt;}
.y45_c00337{bottom:451.200000pt;}
.y44_c00337{bottom:452.480000pt;}
.y40_c00337{bottom:453.120000pt;}
.y43_c00337{bottom:453.760000pt;}
.y46_c00337{bottom:455.040000pt;}
.y41_c00337{bottom:456.960000pt;}
.y3c_c00337{bottom:488.960000pt;}
.y3d_c00337{bottom:489.600000pt;}
.y3b_c00337{bottom:490.880000pt;}
.y3e_c00337{bottom:491.520000pt;}
.y3f_c00337{bottom:492.160000pt;}
.y38_c00337{bottom:528.000000pt;}
.y37_c00337{bottom:528.640000pt;}
.y39_c00337{bottom:529.280000pt;}
.y3a_c00337{bottom:529.920000pt;}
.y35_c00337{bottom:565.760000pt;}
.y34_c00337{bottom:567.040000pt;}
.y33_c00337{bottom:567.680000pt;}
.y36_c00337{bottom:568.320000pt;}
.y2f_c00337{bottom:603.520000pt;}
.y30_c00337{bottom:604.160000pt;}
.y31_c00337{bottom:604.800000pt;}
.y2e_c00337{bottom:605.440000pt;}
.y32_c00337{bottom:608.000000pt;}
.y2a_c00337{bottom:641.920000pt;}
.y29_c00337{bottom:643.840000pt;}
.y2c_c00337{bottom:644.480000pt;}
.y2b_c00337{bottom:645.120000pt;}
.y2d_c00337{bottom:645.760000pt;}
.y28_c00337{bottom:680.320000pt;}
.y27_c00337{bottom:681.600000pt;}
.y26_c00337{bottom:683.520000pt;}
.y22_c00337{bottom:708.480000pt;}
.y20_c00337{bottom:710.400000pt;}
.y25_c00337{bottom:711.040000pt;}
.y24_c00337{bottom:711.680000pt;}
.y21_c00337{bottom:712.320000pt;}
.y23_c00337{bottom:712.960000pt;}
.y17_c00337{bottom:746.880000pt;}
.y19_c00337{bottom:747.520000pt;}
.y16_c00337{bottom:748.800000pt;}
.y1f_c00337{bottom:749.440000pt;}
.y18_c00337{bottom:750.720000pt;}
.y1e_c00337{bottom:751.360000pt;}
.y13_c00337{bottom:785.280000pt;}
.y15_c00337{bottom:785.920000pt;}
.y12_c00337{bottom:786.560000pt;}
.y14_c00337{bottom:787.200000pt;}
.y1d_c00337{bottom:788.480000pt;}
.y10_c00337{bottom:824.320000pt;}
.yf_c00337{bottom:825.600000pt;}
.y1c_c00337{bottom:826.240000pt;}
.y1b_c00337{bottom:826.880000pt;}
.y11_c00337{bottom:827.520000pt;}
.y1a_c00337{bottom:828.160000pt;}
.yc_c00337{bottom:862.720000pt;}
.yb_c00337{bottom:863.360000pt;}
.ye_c00337{bottom:864.000000pt;}
.yd_c00337{bottom:865.920000pt;}
.y7_c00337{bottom:901.120000pt;}
.y6_c00337{bottom:901.760000pt;}
.y9_c00337{bottom:902.400000pt;}
.y8_c00337{bottom:904.320000pt;}
.ya_c00337{bottom:904.960000pt;}
.y3_c00337{bottom:940.160000pt;}
.y2_c00337{bottom:940.800000pt;}
.y5_c00337{bottom:941.440000pt;}
.y4_c00337{bottom:944.000000pt;}
.y1_c00337{bottom:977.920000pt;}
.hd_c00337{height:16.126250pt;}
.he_c00337{height:27.645000pt;}
.ha_c00337{height:32.252500pt;}
.h5_c00337{height:41.467500pt;}
.h7_c00337{height:43.771250pt;}
.hb_c00337{height:46.075000pt;}
.h3_c00337{height:48.378750pt;}
.h8_c00337{height:50.682500pt;}
.hc_c00337{height:52.986250pt;}
.h6_c00337{height:55.290000pt;}
.h2_c00337{height:57.593750pt;}
.h9_c00337{height:59.897500pt;}
.h4_c00337{height:62.201250pt;}
.h1_c00337{height:1021.333333pt;}
.h0_c00337{height:1021.440000pt;}
.w0_c00337{width:688.640000pt;}
.w1_c00337{width:688.666667pt;}
.x0_c00337{left:0.000000pt;}
.x2_c00337{left:63.360000pt;}
.x20_c00337{left:64.640000pt;}
.x35_c00337{left:65.920000pt;}
.x36_c00337{left:67.200000pt;}
.x37_c00337{left:103.680000pt;}
.x2b_c00337{left:109.440000pt;}
.x3_c00337{left:128.640000pt;}
.x24_c00337{left:129.920000pt;}
.x2e_c00337{left:161.280000pt;}
.x1a_c00337{left:167.680000pt;}
.x29_c00337{left:177.280000pt;}
.x27_c00337{left:179.840000pt;}
.x4_c00337{left:206.080000pt;}
.x16_c00337{left:207.360000pt;}
.x1e_c00337{left:225.280000pt;}
.x34_c00337{left:226.560000pt;}
.x10_c00337{left:235.520000pt;}
.xa_c00337{left:245.120000pt;}
.x2a_c00337{left:253.440000pt;}
.x5_c00337{left:254.720000pt;}
.x25_c00337{left:263.680000pt;}
.x1f_c00337{left:274.560000pt;}
.x2c_c00337{left:284.160000pt;}
.x2f_c00337{left:291.840000pt;}
.x28_c00337{left:302.720000pt;}
.x21_c00337{left:311.680000pt;}
.x14_c00337{left:321.920000pt;}
.x30_c00337{left:332.160000pt;}
.x1b_c00337{left:341.760000pt;}
.x17_c00337{left:350.720000pt;}
.x22_c00337{left:360.320000pt;}
.x15_c00337{left:369.920000pt;}
.x6_c00337{left:379.520000pt;}
.xb_c00337{left:389.120000pt;}
.x11_c00337{left:397.440000pt;}
.x2d_c00337{left:408.320000pt;}
.xc_c00337{left:436.480000pt;}
.x31_c00337{left:456.320000pt;}
.x1c_c00337{left:464.640000pt;}
.xd_c00337{left:475.520000pt;}
.x23_c00337{left:503.680000pt;}
.x7_c00337{left:504.960000pt;}
.x12_c00337{left:514.560000pt;}
.x8_c00337{left:522.240000pt;}
.x26_c00337{left:523.520000pt;}
.x38_c00337{left:531.840000pt;}
.x1d_c00337{left:533.760000pt;}
.x32_c00337{left:551.040000pt;}
.xe_c00337{left:552.320000pt;}
.xf_c00337{left:581.120000pt;}
.x39_c00337{left:609.280000pt;}
.x13_c00337{left:610.560000pt;}
.x9_c00337{left:618.240000pt;}
.x19_c00337{left:619.520000pt;}
.x1_c00337{left:622.080000pt;}
.x33_c00337{left:635.520000pt;}
.x18_c00337{left:636.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0ab364379e0320ae9cc99f84.woff2')format("woff");}.ff1_c00338{font-family:ff1_c00338;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4a_c00338{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.md_c00338{transform:matrix(0.238175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238175,0.000000,0.000000,0.250000,0,0);}
.m2b_c00338{transform:matrix(0.240975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240975,0.000000,0.000000,0.250000,0,0);}
.m4d_c00338{transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);}
.m41_c00338{transform:matrix(0.245400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245400,0.000000,0.000000,0.250000,0,0);}
.m7_c00338{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m23_c00338{transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);}
.m27_c00338{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_c00338{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);}
.m42_c00338{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);}
.m46_c00338{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);}
.m25_c00338{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);}
.m48_c00338{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_c00338{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mb_c00338{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m6_c00338{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m2_c00338{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m35_c00338{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_c00338{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m14_c00338{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00338{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00338{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m47_c00338{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00338{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m11_c00338{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m21_c00338{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m45_c00338{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.ma_c00338{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m22_c00338{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mc_c00338{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m13_c00338{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m32_c00338{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m29_c00338{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m20_c00338{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00338{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m28_c00338{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00338{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);}
.m24_c00338{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m12_c00338{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m16_c00338{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00338{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m26_c00338{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00338{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m39_c00338{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1_c00338{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m15_c00338{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m36_c00338{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m17_c00338{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);}
.m8_c00338{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);}
.m4_c00338{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m5_c00338{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);}
.m30_c00338{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m43_c00338{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);}
.m31_c00338{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00338{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);}
.m37_c00338{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);}
.m2e_c00338{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.mf_c00338{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m38_c00338{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);}
.m3d_c00338{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m34_c00338{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m19_c00338{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m49_c00338{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);}
.me_c00338{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00338{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);}
.m3b_c00338{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);}
.m44_c00338{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00338{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00338{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);}
.m1e_c00338{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);}
.m33_c00338{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m3_c00338{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00338{transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);}
.m18_c00338{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m10_c00338{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m40_c00338{transform:matrix(0.647500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.647500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.647500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00338{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00338{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.v0_c00338{vertical-align:0.000000px;}
.v1_c00338{vertical-align:2.880000px;}
.ls0_c00338{letter-spacing:0.000000px;}
.sc__c00338{text-shadow:none;}
.sc0_c00338{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00338{-webkit-text-stroke:0px transparent;}
.sc0_c00338{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00338{word-spacing:0.000000px;}
.ws0_c00338{word-spacing:3.054480px;}
.fc0_c00338{color:transparent;}
.fsf_c00338{font-size:37.440000px;}
.fse_c00338{font-size:40.320000px;}
.fs3_c00338{font-size:46.080000px;}
.fs7_c00338{font-size:48.960000px;}
.fs2_c00338{font-size:51.840000px;}
.fs6_c00338{font-size:54.720000px;}
.fs5_c00338{font-size:57.600000px;}
.fs9_c00338{font-size:60.480000px;}
.fs1_c00338{font-size:63.360000px;}
.fsa_c00338{font-size:66.240000px;}
.fs4_c00338{font-size:69.120000px;}
.fsb_c00338{font-size:72.000000px;}
.fs8_c00338{font-size:74.880000px;}
.fs0_c00338{font-size:77.760000px;}
.fs10_c00338{font-size:92.160000px;}
.fsc_c00338{font-size:103.680000px;}
.fsd_c00338{font-size:109.440000px;}
.y0_c00338{bottom:0.000000px;}
.y59_c00338{bottom:10.800000px;}
.y5a_c00338{bottom:15.120000px;}
.y58_c00338{bottom:15.840000px;}
.y75_c00338{bottom:16.560000px;}
.y5b_c00338{bottom:17.280000px;}
.y76_c00338{bottom:18.720000px;}
.y57_c00338{bottom:51.840000px;}
.y74_c00338{bottom:56.160000px;}
.y73_c00338{bottom:56.880000px;}
.y56_c00338{bottom:57.600000px;}
.y55_c00338{bottom:95.040000px;}
.y54_c00338{bottom:99.360000px;}
.y72_c00338{bottom:101.520000px;}
.y53_c00338{bottom:138.240000px;}
.y51_c00338{bottom:142.560000px;}
.y70_c00338{bottom:143.280000px;}
.y52_c00338{bottom:144.000000px;}
.y71_c00338{bottom:144.720000px;}
.y6f_c00338{bottom:145.440000px;}
.y50_c00338{bottom:181.440000px;}
.y4d_c00338{bottom:185.760000px;}
.y4f_c00338{bottom:186.480000px;}
.y4e_c00338{bottom:187.200000px;}
.y6e_c00338{bottom:187.920000px;}
.y4c_c00338{bottom:225.360000px;}
.y4b_c00338{bottom:226.800000px;}
.y6d_c00338{bottom:228.240000px;}
.y49_c00338{bottom:228.960000px;}
.y4a_c00338{bottom:229.680000px;}
.y6c_c00338{bottom:231.120000px;}
.y6b_c00338{bottom:231.840000px;}
.y48_c00338{bottom:269.280000px;}
.y46_c00338{bottom:272.160000px;}
.y47_c00338{bottom:272.880000px;}
.y6a_c00338{bottom:273.600000px;}
.y45_c00338{bottom:305.280000px;}
.y42_c00338{bottom:311.040000px;}
.y43_c00338{bottom:314.640000px;}
.y44_c00338{bottom:315.360000px;}
.y41_c00338{bottom:316.080000px;}
.y40_c00338{bottom:354.240000px;}
.y68_c00338{bottom:356.400000px;}
.y69_c00338{bottom:357.120000px;}
.y3e_c00338{bottom:357.840000px;}
.y3f_c00338{bottom:358.560000px;}
.y3d_c00338{bottom:397.440000px;}
.y65_c00338{bottom:399.600000px;}
.y66_c00338{bottom:400.320000px;}
.y3b_c00338{bottom:401.040000px;}
.y3c_c00338{bottom:401.760000px;}
.y67_c00338{bottom:402.480000px;}
.y3a_c00338{bottom:440.640000px;}
.y63_c00338{bottom:442.800000px;}
.y38_c00338{bottom:444.240000px;}
.y64_c00338{bottom:444.960000px;}
.y39_c00338{bottom:445.680000px;}
.y37_c00338{bottom:483.840000px;}
.y62_c00338{bottom:486.000000px;}
.y35_c00338{bottom:486.720000px;}
.y36_c00338{bottom:488.160000px;}
.y33_c00338{bottom:529.200000px;}
.y34_c00338{bottom:529.920000px;}
.y32_c00338{bottom:531.360000px;}
.y2d_c00338{bottom:581.040000px;}
.y31_c00338{bottom:581.760000px;}
.y2e_c00338{bottom:582.480000px;}
.y2f_c00338{bottom:583.200000px;}
.y2c_c00338{bottom:583.920000px;}
.y30_c00338{bottom:585.360000px;}
.y2b_c00338{bottom:617.760000px;}
.y28_c00338{bottom:624.240000px;}
.y29_c00338{bottom:625.680000px;}
.y61_c00338{bottom:626.400000px;}
.y27_c00338{bottom:627.120000px;}
.y2a_c00338{bottom:627.840000px;}
.y25_c00338{bottom:668.160000px;}
.y26_c00338{bottom:668.880000px;}
.y60_c00338{bottom:669.600000px;}
.y24_c00338{bottom:670.320000px;}
.y22_c00338{bottom:710.640000px;}
.y5e_c00338{bottom:711.360000px;}
.y21_c00338{bottom:712.800000px;}
.y23_c00338{bottom:714.960000px;}
.y5f_c00338{bottom:715.680000px;}
.y1f_c00338{bottom:753.840000px;}
.y20_c00338{bottom:755.280000px;}
.y1e_c00338{bottom:756.000000px;}
.y1c_c00338{bottom:797.760000px;}
.y1d_c00338{bottom:798.480000px;}
.y1b_c00338{bottom:799.200000px;}
.y18_c00338{bottom:840.960000px;}
.y19_c00338{bottom:841.680000px;}
.y17_c00338{bottom:842.400000px;}
.y1a_c00338{bottom:843.840000px;}
.y5d_c00338{bottom:844.560000px;}
.y16_c00338{bottom:883.440000px;}
.y15_c00338{bottom:884.880000px;}
.y5c_c00338{bottom:915.840000px;}
.y11_c00338{bottom:916.560000px;}
.y12_c00338{bottom:917.280000px;}
.y13_c00338{bottom:918.720000px;}
.y14_c00338{bottom:919.440000px;}
.y10_c00338{bottom:959.040000px;}
.yf_c00338{bottom:962.640000px;}
.yb_c00338{bottom:990.000000px;}
.ya_c00338{bottom:991.440000px;}
.yc_c00338{bottom:992.160000px;}
.yd_c00338{bottom:994.320000px;}
.ye_c00338{bottom:995.040000px;}
.y8_c00338{bottom:1033.200000px;}
.y9_c00338{bottom:1034.640000px;}
.y7_c00338{bottom:1035.360000px;}
.y3_c00338{bottom:1076.400000px;}
.y6_c00338{bottom:1077.840000px;}
.y2_c00338{bottom:1078.560000px;}
.y4_c00338{bottom:1080.720000px;}
.y5_c00338{bottom:1081.440000px;}
.y1_c00338{bottom:1128.240000px;}
.h11_c00338{height:33.692344px;}
.h10_c00338{height:36.284062px;}
.h5_c00338{height:41.467500px;}
.h9_c00338{height:44.059219px;}
.h4_c00338{height:46.650937px;}
.h8_c00338{height:49.242656px;}
.h7_c00338{height:51.834375px;}
.hb_c00338{height:54.426094px;}
.h13_c00338{height:54.714375px;}
.h3_c00338{height:57.017812px;}
.hc_c00338{height:59.609531px;}
.h6_c00338{height:62.201250px;}
.hd_c00338{height:64.792969px;}
.ha_c00338{height:67.384687px;}
.h2_c00338{height:69.976406px;}
.h12_c00338{height:82.935000px;}
.he_c00338{height:93.301875px;}
.hf_c00338{height:98.485312px;}
.h0_c00338{height:1170.720000px;}
.h1_c00338{height:1170.750000px;}
.w0_c00338{width:774.720000px;}
.w1_c00338{width:774.750000px;}
.x0_c00338{left:0.000000px;}
.x2_c00338{left:72.720000px;}
.x20_c00338{left:74.160000px;}
.x24_c00338{left:75.600000px;}
.x29_c00338{left:77.760000px;}
.x1c_c00338{left:125.279280px;}
.xf_c00338{left:145.440000px;}
.x3_c00338{left:147.600000px;}
.x1d_c00338{left:157.680000px;}
.x25_c00338{left:178.560000px;}
.x1e_c00338{left:180.720000px;}
.x10_c00338{left:190.080000px;}
.x26_c00338{left:222.480000px;}
.x28_c00338{left:232.560000px;}
.x21_c00338{left:234.000000px;}
.xb_c00338{left:244.080000px;}
.x17_c00338{left:245.520000px;}
.x1f_c00338{left:254.160000px;}
.x1a_c00338{left:275.760000px;}
.x27_c00338{left:277.920000px;}
.xc_c00338{left:298.800000px;}
.x2a_c00338{left:308.880000px;}
.x14_c00338{left:310.320000px;}
.x4_c00338{left:320.400000px;}
.x18_c00338{left:330.480000px;}
.x11_c00338{left:352.800000px;}
.x5_c00338{left:373.680000px;}
.x22_c00338{left:383.040000px;}
.x19_c00338{left:385.200000px;}
.xd_c00338{left:395.280000px;}
.x6_c00338{left:418.320000px;}
.x15_c00338{left:427.680000px;}
.x12_c00338{left:438.480000px;}
.x2b_c00338{left:447.840000px;}
.xe_c00338{left:450.720000px;}
.x16_c00338{left:482.400000px;}
.x2c_c00338{left:491.760000px;}
.x13_c00338{left:493.200000px;}
.x23_c00338{left:523.440000px;}
.x1b_c00338{left:535.680000px;}
.x38_c00338{left:565.920000px;}
.x37_c00338{left:567.360000px;}
.x35_c00338{left:588.240000px;}
.x7_c00338{left:590.400000px;}
.x32_c00338{left:600.480000px;}
.x33_c00338{left:620.640000px;}
.x2f_c00338{left:622.080000px;}
.x9_c00338{left:623.520000px;}
.x3a_c00338{left:630.720000px;}
.x36_c00338{left:653.760000px;}
.x30_c00338{left:655.200000px;}
.xa_c00338{left:665.280000px;}
.x1_c00338{left:678.960000px;}
.x39_c00338{left:686.160000px;}
.x34_c00338{left:695.520000px;}
.x2d_c00338{left:697.680000px;}
.x8_c00338{left:699.120000px;}
.x3b_c00338{left:706.320000px;}
.x31_c00338{left:717.120000px;}
.x2e_c00338{left:718.560000px;}
@media print{
.v0_c00338{vertical-align:0.000000pt;}
.v1_c00338{vertical-align:2.560000pt;}
.ls0_c00338{letter-spacing:0.000000pt;}
.ws1_c00338{word-spacing:0.000000pt;}
.ws0_c00338{word-spacing:2.715093pt;}
.fsf_c00338{font-size:33.280000pt;}
.fse_c00338{font-size:35.840000pt;}
.fs3_c00338{font-size:40.960000pt;}
.fs7_c00338{font-size:43.520000pt;}
.fs2_c00338{font-size:46.080000pt;}
.fs6_c00338{font-size:48.640000pt;}
.fs5_c00338{font-size:51.200000pt;}
.fs9_c00338{font-size:53.760000pt;}
.fs1_c00338{font-size:56.320000pt;}
.fsa_c00338{font-size:58.880000pt;}
.fs4_c00338{font-size:61.440000pt;}
.fsb_c00338{font-size:64.000000pt;}
.fs8_c00338{font-size:66.560000pt;}
.fs0_c00338{font-size:69.120000pt;}
.fs10_c00338{font-size:81.920000pt;}
.fsc_c00338{font-size:92.160000pt;}
.fsd_c00338{font-size:97.280000pt;}
.y0_c00338{bottom:0.000000pt;}
.y59_c00338{bottom:9.600000pt;}
.y5a_c00338{bottom:13.440000pt;}
.y58_c00338{bottom:14.080000pt;}
.y75_c00338{bottom:14.720000pt;}
.y5b_c00338{bottom:15.360000pt;}
.y76_c00338{bottom:16.640000pt;}
.y57_c00338{bottom:46.080000pt;}
.y74_c00338{bottom:49.920000pt;}
.y73_c00338{bottom:50.560000pt;}
.y56_c00338{bottom:51.200000pt;}
.y55_c00338{bottom:84.480000pt;}
.y54_c00338{bottom:88.320000pt;}
.y72_c00338{bottom:90.240000pt;}
.y53_c00338{bottom:122.880000pt;}
.y51_c00338{bottom:126.720000pt;}
.y70_c00338{bottom:127.360000pt;}
.y52_c00338{bottom:128.000000pt;}
.y71_c00338{bottom:128.640000pt;}
.y6f_c00338{bottom:129.280000pt;}
.y50_c00338{bottom:161.280000pt;}
.y4d_c00338{bottom:165.120000pt;}
.y4f_c00338{bottom:165.760000pt;}
.y4e_c00338{bottom:166.400000pt;}
.y6e_c00338{bottom:167.040000pt;}
.y4c_c00338{bottom:200.320000pt;}
.y4b_c00338{bottom:201.600000pt;}
.y6d_c00338{bottom:202.880000pt;}
.y49_c00338{bottom:203.520000pt;}
.y4a_c00338{bottom:204.160000pt;}
.y6c_c00338{bottom:205.440000pt;}
.y6b_c00338{bottom:206.080000pt;}
.y48_c00338{bottom:239.360000pt;}
.y46_c00338{bottom:241.920000pt;}
.y47_c00338{bottom:242.560000pt;}
.y6a_c00338{bottom:243.200000pt;}
.y45_c00338{bottom:271.360000pt;}
.y42_c00338{bottom:276.480000pt;}
.y43_c00338{bottom:279.680000pt;}
.y44_c00338{bottom:280.320000pt;}
.y41_c00338{bottom:280.960000pt;}
.y40_c00338{bottom:314.880000pt;}
.y68_c00338{bottom:316.800000pt;}
.y69_c00338{bottom:317.440000pt;}
.y3e_c00338{bottom:318.080000pt;}
.y3f_c00338{bottom:318.720000pt;}
.y3d_c00338{bottom:353.280000pt;}
.y65_c00338{bottom:355.200000pt;}
.y66_c00338{bottom:355.840000pt;}
.y3b_c00338{bottom:356.480000pt;}
.y3c_c00338{bottom:357.120000pt;}
.y67_c00338{bottom:357.760000pt;}
.y3a_c00338{bottom:391.680000pt;}
.y63_c00338{bottom:393.600000pt;}
.y38_c00338{bottom:394.880000pt;}
.y64_c00338{bottom:395.520000pt;}
.y39_c00338{bottom:396.160000pt;}
.y37_c00338{bottom:430.080000pt;}
.y62_c00338{bottom:432.000000pt;}
.y35_c00338{bottom:432.640000pt;}
.y36_c00338{bottom:433.920000pt;}
.y33_c00338{bottom:470.400000pt;}
.y34_c00338{bottom:471.040000pt;}
.y32_c00338{bottom:472.320000pt;}
.y2d_c00338{bottom:516.480000pt;}
.y31_c00338{bottom:517.120000pt;}
.y2e_c00338{bottom:517.760000pt;}
.y2f_c00338{bottom:518.400000pt;}
.y2c_c00338{bottom:519.040000pt;}
.y30_c00338{bottom:520.320000pt;}
.y2b_c00338{bottom:549.120000pt;}
.y28_c00338{bottom:554.880000pt;}
.y29_c00338{bottom:556.160000pt;}
.y61_c00338{bottom:556.800000pt;}
.y27_c00338{bottom:557.440000pt;}
.y2a_c00338{bottom:558.080000pt;}
.y25_c00338{bottom:593.920000pt;}
.y26_c00338{bottom:594.560000pt;}
.y60_c00338{bottom:595.200000pt;}
.y24_c00338{bottom:595.840000pt;}
.y22_c00338{bottom:631.680000pt;}
.y5e_c00338{bottom:632.320000pt;}
.y21_c00338{bottom:633.600000pt;}
.y23_c00338{bottom:635.520000pt;}
.y5f_c00338{bottom:636.160000pt;}
.y1f_c00338{bottom:670.080000pt;}
.y20_c00338{bottom:671.360000pt;}
.y1e_c00338{bottom:672.000000pt;}
.y1c_c00338{bottom:709.120000pt;}
.y1d_c00338{bottom:709.760000pt;}
.y1b_c00338{bottom:710.400000pt;}
.y18_c00338{bottom:747.520000pt;}
.y19_c00338{bottom:748.160000pt;}
.y17_c00338{bottom:748.800000pt;}
.y1a_c00338{bottom:750.080000pt;}
.y5d_c00338{bottom:750.720000pt;}
.y16_c00338{bottom:785.280000pt;}
.y15_c00338{bottom:786.560000pt;}
.y5c_c00338{bottom:814.080000pt;}
.y11_c00338{bottom:814.720000pt;}
.y12_c00338{bottom:815.360000pt;}
.y13_c00338{bottom:816.640000pt;}
.y14_c00338{bottom:817.280000pt;}
.y10_c00338{bottom:852.480000pt;}
.yf_c00338{bottom:855.680000pt;}
.yb_c00338{bottom:880.000000pt;}
.ya_c00338{bottom:881.280000pt;}
.yc_c00338{bottom:881.920000pt;}
.yd_c00338{bottom:883.840000pt;}
.ye_c00338{bottom:884.480000pt;}
.y8_c00338{bottom:918.400000pt;}
.y9_c00338{bottom:919.680000pt;}
.y7_c00338{bottom:920.320000pt;}
.y3_c00338{bottom:956.800000pt;}
.y6_c00338{bottom:958.080000pt;}
.y2_c00338{bottom:958.720000pt;}
.y4_c00338{bottom:960.640000pt;}
.y5_c00338{bottom:961.280000pt;}
.y1_c00338{bottom:1002.880000pt;}
.h11_c00338{height:29.948750pt;}
.h10_c00338{height:32.252500pt;}
.h5_c00338{height:36.860000pt;}
.h9_c00338{height:39.163750pt;}
.h4_c00338{height:41.467500pt;}
.h8_c00338{height:43.771250pt;}
.h7_c00338{height:46.075000pt;}
.hb_c00338{height:48.378750pt;}
.h13_c00338{height:48.635000pt;}
.h3_c00338{height:50.682500pt;}
.hc_c00338{height:52.986250pt;}
.h6_c00338{height:55.290000pt;}
.hd_c00338{height:57.593750pt;}
.ha_c00338{height:59.897500pt;}
.h2_c00338{height:62.201250pt;}
.h12_c00338{height:73.720000pt;}
.he_c00338{height:82.935000pt;}
.hf_c00338{height:87.542500pt;}
.h0_c00338{height:1040.640000pt;}
.h1_c00338{height:1040.666667pt;}
.w0_c00338{width:688.640000pt;}
.w1_c00338{width:688.666667pt;}
.x0_c00338{left:0.000000pt;}
.x2_c00338{left:64.640000pt;}
.x20_c00338{left:65.920000pt;}
.x24_c00338{left:67.200000pt;}
.x29_c00338{left:69.120000pt;}
.x1c_c00338{left:111.359360pt;}
.xf_c00338{left:129.280000pt;}
.x3_c00338{left:131.200000pt;}
.x1d_c00338{left:140.160000pt;}
.x25_c00338{left:158.720000pt;}
.x1e_c00338{left:160.640000pt;}
.x10_c00338{left:168.960000pt;}
.x26_c00338{left:197.760000pt;}
.x28_c00338{left:206.720000pt;}
.x21_c00338{left:208.000000pt;}
.xb_c00338{left:216.960000pt;}
.x17_c00338{left:218.240000pt;}
.x1f_c00338{left:225.920000pt;}
.x1a_c00338{left:245.120000pt;}
.x27_c00338{left:247.040000pt;}
.xc_c00338{left:265.600000pt;}
.x2a_c00338{left:274.560000pt;}
.x14_c00338{left:275.840000pt;}
.x4_c00338{left:284.800000pt;}
.x18_c00338{left:293.760000pt;}
.x11_c00338{left:313.600000pt;}
.x5_c00338{left:332.160000pt;}
.x22_c00338{left:340.480000pt;}
.x19_c00338{left:342.400000pt;}
.xd_c00338{left:351.360000pt;}
.x6_c00338{left:371.840000pt;}
.x15_c00338{left:380.160000pt;}
.x12_c00338{left:389.760000pt;}
.x2b_c00338{left:398.080000pt;}
.xe_c00338{left:400.640000pt;}
.x16_c00338{left:428.800000pt;}
.x2c_c00338{left:437.120000pt;}
.x13_c00338{left:438.400000pt;}
.x23_c00338{left:465.280000pt;}
.x1b_c00338{left:476.160000pt;}
.x38_c00338{left:503.040000pt;}
.x37_c00338{left:504.320000pt;}
.x35_c00338{left:522.880000pt;}
.x7_c00338{left:524.800000pt;}
.x32_c00338{left:533.760000pt;}
.x33_c00338{left:551.680000pt;}
.x2f_c00338{left:552.960000pt;}
.x9_c00338{left:554.240000pt;}
.x3a_c00338{left:560.640000pt;}
.x36_c00338{left:581.120000pt;}
.x30_c00338{left:582.400000pt;}
.xa_c00338{left:591.360000pt;}
.x1_c00338{left:603.520000pt;}
.x39_c00338{left:609.920000pt;}
.x34_c00338{left:618.240000pt;}
.x2d_c00338{left:620.160000pt;}
.x8_c00338{left:621.440000pt;}
.x3b_c00338{left:627.840000pt;}
.x31_c00338{left:637.440000pt;}
.x2e_c00338{left:638.720000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4c8eb4efdc97d8b0bd8e1fc3.woff2')format("woff");}.ff1_c00339{font-family:ff1_c00339;line-height:1.109863;font-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_c00339{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m27_c00339{transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);}
.m6_c00339{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.m4b_c00339{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m41_c00339{transform:matrix(0.210950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210950,0.000000,0.000000,0.250000,0,0);}
.m11_c00339{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m25_c00339{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);}
.m18_c00339{transform:matrix(0.239325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239325,0.000000,0.000000,0.250000,0,0);}
.m35_c00339{transform:matrix(0.239675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239675,0.000000,0.000000,0.250000,0,0);}
.m39_c00339{transform:matrix(0.239725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239725,0.000000,0.000000,0.250000,0,0);}
.m16_c00339{transform:matrix(0.243050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243050,0.000000,0.000000,0.250000,0,0);}
.m2c_c00339{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m46_c00339{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);}
.m4c_c00339{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);}
.m22_c00339{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m17_c00339{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m10_c00339{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);}
.m2e_c00339{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m19_c00339{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mb_c00339{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m15_c00339{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);}
.m2a_c00339{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m47_c00339{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m8_c00339{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m14_c00339{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);}
.m26_c00339{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m24_c00339{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m30_c00339{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m7_c00339{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mf_c00339{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2_c00339{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m29_c00339{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00339{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.md_c00339{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m12_c00339{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m9_c00339{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m5_c00339{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00339{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m28_c00339{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00339{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m23_c00339{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m34_c00339{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m32_c00339{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00339{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.me_c00339{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1_c00339{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);}
.m4f_c00339{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00339{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);}
.m3b_c00339{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00339{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m0_c00339{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00339{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);}
.m2f_c00339{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);}
.m13_c00339{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m43_c00339{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00339{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);}
.m40_c00339{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);}
.m36_c00339{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);}
.m48_c00339{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);}
.m51_c00339{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m31_c00339{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);}
.m21_c00339{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);}
.m3c_c00339{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);}
.m37_c00339{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m38_c00339{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);}
.m50_c00339{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00339{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.ma_c00339{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m45_c00339{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m53_c00339{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);}
.m3f_c00339{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m49_c00339{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);}
.m3e_c00339{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00339{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m3_c00339{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00339{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m55_c00339{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);}
.m4e_c00339{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m20_c00339{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m4_c00339{transform:matrix(0.525000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525000,0.000000,0.000000,0.250000,0,0);}
.mc_c00339{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m42_c00339{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00339{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m52_c00339{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);}
.m44_c00339{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.m54_c00339{transform:matrix(0.950000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.950000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.950000,0.000000,0.000000,0.250000,0,0);}
.v3_c00339{vertical-align:-8.640000px;}
.v4_c00339{vertical-align:-2.880000px;}
.v0_c00339{vertical-align:0.000000px;}
.v2_c00339{vertical-align:2.880000px;}
.v1_c00339{vertical-align:5.760000px;}
.ls0_c00339{letter-spacing:0.000000px;}
.sc__c00339{text-shadow:none;}
.sc0_c00339{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00339{-webkit-text-stroke:0px transparent;}
.sc0_c00339{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00339{word-spacing:-4.670160px;}
.ws5_c00339{word-spacing:-2.923200px;}
.ws8_c00339{word-spacing:0.000000px;}
.ws4_c00339{word-spacing:2.204880px;}
.ws7_c00339{word-spacing:3.679440px;}
.ws0_c00339{word-spacing:5.106960px;}
.ws3_c00339{word-spacing:9.474000px;}
.ws6_c00339{word-spacing:11.856000px;}
.ws2_c00339{word-spacing:47.598000px;}
.fc0_c00339{color:transparent;}
.fs10_c00339{font-size:5.760000px;}
.fs8_c00339{font-size:25.920000px;}
.fs4_c00339{font-size:37.440000px;}
.fsa_c00339{font-size:40.320000px;}
.fs13_c00339{font-size:43.200000px;}
.fsc_c00339{font-size:46.080000px;}
.fsd_c00339{font-size:48.960000px;}
.fs6_c00339{font-size:51.840000px;}
.fs3_c00339{font-size:54.720000px;}
.fsf_c00339{font-size:57.600000px;}
.fs7_c00339{font-size:60.480000px;}
.fs1_c00339{font-size:63.360000px;}
.fse_c00339{font-size:66.240000px;}
.fs5_c00339{font-size:69.120000px;}
.fs9_c00339{font-size:72.000000px;}
.fs0_c00339{font-size:74.880000px;}
.fs2_c00339{font-size:77.760000px;}
.fs12_c00339{font-size:80.640000px;}
.fsb_c00339{font-size:95.040000px;}
.fs14_c00339{font-size:97.920000px;}
.fs11_c00339{font-size:112.320000px;}
.y0_c00339{bottom:0.000000px;}
.y7c_c00339{bottom:18.720000px;}
.y7b_c00339{bottom:19.440000px;}
.y7d_c00339{bottom:22.320000px;}
.y7e_c00339{bottom:23.040000px;}
.y76_c00339{bottom:49.680000px;}
.y75_c00339{bottom:50.400000px;}
.y77_c00339{bottom:51.120000px;}
.y74_c00339{bottom:51.840000px;}
.y7a_c00339{bottom:52.560000px;}
.y79_c00339{bottom:53.280000px;}
.y73_c00339{bottom:54.000000px;}
.y78_c00339{bottom:54.720000px;}
.y6d_c00339{bottom:92.880000px;}
.y6e_c00339{bottom:95.040000px;}
.y6c_c00339{bottom:95.760000px;}
.y6b_c00339{bottom:96.480000px;}
.y72_c00339{bottom:97.920000px;}
.y71_c00339{bottom:98.640000px;}
.y68_c00339{bottom:135.360000px;}
.y67_c00339{bottom:137.520000px;}
.y69_c00339{bottom:138.240000px;}
.y66_c00339{bottom:138.960000px;}
.y6a_c00339{bottom:139.680000px;}
.y65_c00339{bottom:172.800000px;}
.y62_c00339{bottom:178.560000px;}
.y64_c00339{bottom:179.280000px;}
.y63_c00339{bottom:180.000000px;}
.y6f_c00339{bottom:181.440000px;}
.y61_c00339{bottom:182.160000px;}
.y70_c00339{bottom:182.880000px;}
.y60_c00339{bottom:221.040000px;}
.y5e_c00339{bottom:222.480000px;}
.y5f_c00339{bottom:224.640000px;}
.y5a_c00339{bottom:254.880000px;}
.y5b_c00339{bottom:255.600000px;}
.y5d_c00339{bottom:256.320000px;}
.y5c_c00339{bottom:257.040000px;}
.y59_c00339{bottom:257.760000px;}
.y54_c00339{bottom:298.080000px;}
.y53_c00339{bottom:298.800000px;}
.y52_c00339{bottom:299.520000px;}
.y56_c00339{bottom:300.240000px;}
.y55_c00339{bottom:300.960000px;}
.y58_c00339{bottom:301.680000px;}
.y57_c00339{bottom:303.120000px;}
.y4f_c00339{bottom:341.280000px;}
.y4e_c00339{bottom:342.000000px;}
.y4d_c00339{bottom:343.440000px;}
.y50_c00339{bottom:344.160000px;}
.y51_c00339{bottom:344.880000px;}
.y4a_c00339{bottom:384.480000px;}
.y4b_c00339{bottom:385.200000px;}
.y4c_c00339{bottom:385.920000px;}
.y48_c00339{bottom:386.640000px;}
.y49_c00339{bottom:388.080000px;}
.y46_c00339{bottom:427.680000px;}
.y47_c00339{bottom:428.400000px;}
.y44_c00339{bottom:430.560000px;}
.y45_c00339{bottom:431.280000px;}
.y43_c00339{bottom:460.080000px;}
.y3f_c00339{bottom:470.880000px;}
.y42_c00339{bottom:471.600000px;}
.y41_c00339{bottom:472.320000px;}
.y3d_c00339{bottom:473.040000px;}
.y40_c00339{bottom:473.760000px;}
.y3e_c00339{bottom:474.480000px;}
.y3b_c00339{bottom:514.800000px;}
.y39_c00339{bottom:515.520000px;}
.y3a_c00339{bottom:516.960000px;}
.y3c_c00339{bottom:517.680000px;}
.y37_c00339{bottom:558.000000px;}
.y38_c00339{bottom:558.720000px;}
.y35_c00339{bottom:559.440000px;}
.y36_c00339{bottom:560.880000px;}
.y31_c00339{bottom:600.480000px;}
.y32_c00339{bottom:601.200000px;}
.y2f_c00339{bottom:601.920000px;}
.y34_c00339{bottom:602.640000px;}
.y30_c00339{bottom:603.360000px;}
.y33_c00339{bottom:604.080000px;}
.y2c_c00339{bottom:643.680000px;}
.y2a_c00339{bottom:645.120000px;}
.y2e_c00339{bottom:645.840000px;}
.y2b_c00339{bottom:646.560000px;}
.y2d_c00339{bottom:647.280000px;}
.y1e_c00339{bottom:686.880000px;}
.y1d_c00339{bottom:689.040000px;}
.y1f_c00339{bottom:689.760000px;}
.y20_c00339{bottom:690.480000px;}
.y1c_c00339{bottom:719.280000px;}
.y19_c00339{bottom:720.000000px;}
.y29_c00339{bottom:720.720000px;}
.y1b_c00339{bottom:721.440000px;}
.y1a_c00339{bottom:722.160000px;}
.y18_c00339{bottom:754.560000px;}
.y15_c00339{bottom:761.040000px;}
.y16_c00339{bottom:761.760000px;}
.y14_c00339{bottom:762.480000px;}
.y28_c00339{bottom:763.200000px;}
.y17_c00339{bottom:764.640000px;}
.y25_c00339{bottom:806.400000px;}
.y27_c00339{bottom:807.120000px;}
.y26_c00339{bottom:807.840000px;}
.y13_c00339{bottom:847.440000px;}
.y12_c00339{bottom:848.160000px;}
.y24_c00339{bottom:849.600000px;}
.y11_c00339{bottom:889.920000px;}
.y23_c00339{bottom:891.360000px;}
.y10_c00339{bottom:892.080000px;}
.yf_c00339{bottom:933.840000px;}
.y21_c00339{bottom:934.560000px;}
.ye_c00339{bottom:935.280000px;}
.y22_c00339{bottom:936.720000px;}
.yd_c00339{bottom:979.200000px;}
.y9_c00339{bottom:1009.440000px;}
.yc_c00339{bottom:1010.160000px;}
.y7_c00339{bottom:1010.880000px;}
.y8_c00339{bottom:1012.320000px;}
.ya_c00339{bottom:1013.040000px;}
.yb_c00339{bottom:1013.760000px;}
.y3_c00339{bottom:1052.640000px;}
.y6_c00339{bottom:1053.360000px;}
.y2_c00339{bottom:1054.080000px;}
.y5_c00339{bottom:1054.800000px;}
.y4_c00339{bottom:1056.960000px;}
.y1_c00339{bottom:1119.600000px;}
.h14_c00339{height:5.183438px;}
.hb_c00339{height:23.325469px;}
.h6_c00339{height:33.692344px;}
.hd_c00339{height:36.284062px;}
.h18_c00339{height:38.875781px;}
.hf_c00339{height:41.467500px;}
.h10_c00339{height:44.059219px;}
.h8_c00339{height:46.650937px;}
.h5_c00339{height:49.242656px;}
.h1a_c00339{height:51.546094px;}
.h13_c00339{height:51.834375px;}
.h12_c00339{height:53.561250px;}
.h9_c00339{height:54.426094px;}
.ha_c00339{height:55.002656px;}
.h3_c00339{height:57.017812px;}
.h16_c00339{height:59.321250px;}
.h11_c00339{height:59.609531px;}
.h1b_c00339{height:60.186094px;}
.h7_c00339{height:62.201250px;}
.hc_c00339{height:64.792969px;}
.h2_c00339{height:67.384687px;}
.h4_c00339{height:69.976406px;}
.h17_c00339{height:72.568125px;}
.he_c00339{height:85.526719px;}
.h19_c00339{height:88.118437px;}
.h15_c00339{height:101.077031px;}
.h0_c00339{height:1154.880000px;}
.h1_c00339{height:1155.000000px;}
.w1_c00339{width:771.000000px;}
.w0_c00339{width:771.120000px;}
.x0_c00339{left:0.000000px;}
.x9_c00339{left:66.960000px;}
.x2_c00339{left:68.400000px;}
.x34_c00339{left:69.840000px;}
.x39_c00339{left:71.280000px;}
.xa_c00339{left:111.600000px;}
.x3_c00339{left:141.840000px;}
.xb_c00339{left:177.120000px;}
.x3a_c00339{left:184.320000px;}
.x17_c00339{left:185.760000px;}
.x14_c00339{left:229.680000px;}
.x33_c00339{left:239.760000px;}
.xc_c00339{left:241.200000px;}
.xd_c00339{left:251.280000px;}
.x1b_c00339{left:272.880000px;}
.x2f_c00339{left:282.960000px;}
.xe_c00339{left:293.760000px;}
.x28_c00339{left:304.560000px;}
.x26_c00339{left:315.360000px;}
.x1c_c00339{left:326.160000px;}
.x4_c00339{left:336.960000px;}
.x3b_c00339{left:347.760000px;}
.xf_c00339{left:349.200000px;}
.x18_c00339{left:358.560000px;}
.x29_c00339{left:370.080000px;}
.x15_c00339{left:380.880000px;}
.x5_c00339{left:391.680000px;}
.x30_c00339{left:401.760000px;}
.x2b_c00339{left:412.560000px;}
.x6_c00339{left:434.880000px;}
.x2e_c00339{left:444.240000px;}
.x19_c00339{left:455.760000px;}
.x35_c00339{left:465.120000px;}
.x2a_c00339{left:466.560000px;}
.x2c_c00339{left:477.360000px;}
.x16_c00339{left:488.160000px;}
.x1a_c00339{left:509.760000px;}
.x36_c00339{left:519.840000px;}
.x10_c00339{left:530.640000px;}
.x3c_c00339{left:540.720000px;}
.x1f_c00339{left:563.760000px;}
.x7_c00339{left:565.920000px;}
.x11_c00339{left:575.280000px;}
.x8_c00339{left:585.360000px;}
.x1d_c00339{left:586.800000px;}
.x12_c00339{left:590.400000px;}
.x31_c00339{left:595.440000px;}
.x22_c00339{left:596.880000px;}
.x3d_c00339{left:606.960000px;}
.x38_c00339{left:617.040000px;}
.x23_c00339{left:618.480000px;}
.x20_c00339{left:619.920000px;}
.x32_c00339{left:649.440000px;}
.x24_c00339{left:650.880000px;}
.x1e_c00339{left:652.320000px;}
.x37_c00339{left:681.840000px;}
.x25_c00339{left:683.280000px;}
.x2d_c00339{left:691.920000px;}
.x1_c00339{left:693.360000px;}
.x13_c00339{left:694.800000px;}
.x27_c00339{left:712.800000px;}
.x21_c00339{left:714.960000px;}
@media print{
.v3_c00339{vertical-align:-7.680000pt;}
.v4_c00339{vertical-align:-2.560000pt;}
.v0_c00339{vertical-align:0.000000pt;}
.v2_c00339{vertical-align:2.560000pt;}
.v1_c00339{vertical-align:5.120000pt;}
.ls0_c00339{letter-spacing:0.000000pt;}
.ws1_c00339{word-spacing:-4.151253pt;}
.ws5_c00339{word-spacing:-2.598400pt;}
.ws8_c00339{word-spacing:0.000000pt;}
.ws4_c00339{word-spacing:1.959893pt;}
.ws7_c00339{word-spacing:3.270613pt;}
.ws0_c00339{word-spacing:4.539520pt;}
.ws3_c00339{word-spacing:8.421333pt;}
.ws6_c00339{word-spacing:10.538667pt;}
.ws2_c00339{word-spacing:42.309333pt;}
.fs10_c00339{font-size:5.120000pt;}
.fs8_c00339{font-size:23.040000pt;}
.fs4_c00339{font-size:33.280000pt;}
.fsa_c00339{font-size:35.840000pt;}
.fs13_c00339{font-size:38.400000pt;}
.fsc_c00339{font-size:40.960000pt;}
.fsd_c00339{font-size:43.520000pt;}
.fs6_c00339{font-size:46.080000pt;}
.fs3_c00339{font-size:48.640000pt;}
.fsf_c00339{font-size:51.200000pt;}
.fs7_c00339{font-size:53.760000pt;}
.fs1_c00339{font-size:56.320000pt;}
.fse_c00339{font-size:58.880000pt;}
.fs5_c00339{font-size:61.440000pt;}
.fs9_c00339{font-size:64.000000pt;}
.fs0_c00339{font-size:66.560000pt;}
.fs2_c00339{font-size:69.120000pt;}
.fs12_c00339{font-size:71.680000pt;}
.fsb_c00339{font-size:84.480000pt;}
.fs14_c00339{font-size:87.040000pt;}
.fs11_c00339{font-size:99.840000pt;}
.y0_c00339{bottom:0.000000pt;}
.y7c_c00339{bottom:16.640000pt;}
.y7b_c00339{bottom:17.280000pt;}
.y7d_c00339{bottom:19.840000pt;}
.y7e_c00339{bottom:20.480000pt;}
.y76_c00339{bottom:44.160000pt;}
.y75_c00339{bottom:44.800000pt;}
.y77_c00339{bottom:45.440000pt;}
.y74_c00339{bottom:46.080000pt;}
.y7a_c00339{bottom:46.720000pt;}
.y79_c00339{bottom:47.360000pt;}
.y73_c00339{bottom:48.000000pt;}
.y78_c00339{bottom:48.640000pt;}
.y6d_c00339{bottom:82.560000pt;}
.y6e_c00339{bottom:84.480000pt;}
.y6c_c00339{bottom:85.120000pt;}
.y6b_c00339{bottom:85.760000pt;}
.y72_c00339{bottom:87.040000pt;}
.y71_c00339{bottom:87.680000pt;}
.y68_c00339{bottom:120.320000pt;}
.y67_c00339{bottom:122.240000pt;}
.y69_c00339{bottom:122.880000pt;}
.y66_c00339{bottom:123.520000pt;}
.y6a_c00339{bottom:124.160000pt;}
.y65_c00339{bottom:153.600000pt;}
.y62_c00339{bottom:158.720000pt;}
.y64_c00339{bottom:159.360000pt;}
.y63_c00339{bottom:160.000000pt;}
.y6f_c00339{bottom:161.280000pt;}
.y61_c00339{bottom:161.920000pt;}
.y70_c00339{bottom:162.560000pt;}
.y60_c00339{bottom:196.480000pt;}
.y5e_c00339{bottom:197.760000pt;}
.y5f_c00339{bottom:199.680000pt;}
.y5a_c00339{bottom:226.560000pt;}
.y5b_c00339{bottom:227.200000pt;}
.y5d_c00339{bottom:227.840000pt;}
.y5c_c00339{bottom:228.480000pt;}
.y59_c00339{bottom:229.120000pt;}
.y54_c00339{bottom:264.960000pt;}
.y53_c00339{bottom:265.600000pt;}
.y52_c00339{bottom:266.240000pt;}
.y56_c00339{bottom:266.880000pt;}
.y55_c00339{bottom:267.520000pt;}
.y58_c00339{bottom:268.160000pt;}
.y57_c00339{bottom:269.440000pt;}
.y4f_c00339{bottom:303.360000pt;}
.y4e_c00339{bottom:304.000000pt;}
.y4d_c00339{bottom:305.280000pt;}
.y50_c00339{bottom:305.920000pt;}
.y51_c00339{bottom:306.560000pt;}
.y4a_c00339{bottom:341.760000pt;}
.y4b_c00339{bottom:342.400000pt;}
.y4c_c00339{bottom:343.040000pt;}
.y48_c00339{bottom:343.680000pt;}
.y49_c00339{bottom:344.960000pt;}
.y46_c00339{bottom:380.160000pt;}
.y47_c00339{bottom:380.800000pt;}
.y44_c00339{bottom:382.720000pt;}
.y45_c00339{bottom:383.360000pt;}
.y43_c00339{bottom:408.960000pt;}
.y3f_c00339{bottom:418.560000pt;}
.y42_c00339{bottom:419.200000pt;}
.y41_c00339{bottom:419.840000pt;}
.y3d_c00339{bottom:420.480000pt;}
.y40_c00339{bottom:421.120000pt;}
.y3e_c00339{bottom:421.760000pt;}
.y3b_c00339{bottom:457.600000pt;}
.y39_c00339{bottom:458.240000pt;}
.y3a_c00339{bottom:459.520000pt;}
.y3c_c00339{bottom:460.160000pt;}
.y37_c00339{bottom:496.000000pt;}
.y38_c00339{bottom:496.640000pt;}
.y35_c00339{bottom:497.280000pt;}
.y36_c00339{bottom:498.560000pt;}
.y31_c00339{bottom:533.760000pt;}
.y32_c00339{bottom:534.400000pt;}
.y2f_c00339{bottom:535.040000pt;}
.y34_c00339{bottom:535.680000pt;}
.y30_c00339{bottom:536.320000pt;}
.y33_c00339{bottom:536.960000pt;}
.y2c_c00339{bottom:572.160000pt;}
.y2a_c00339{bottom:573.440000pt;}
.y2e_c00339{bottom:574.080000pt;}
.y2b_c00339{bottom:574.720000pt;}
.y2d_c00339{bottom:575.360000pt;}
.y1e_c00339{bottom:610.560000pt;}
.y1d_c00339{bottom:612.480000pt;}
.y1f_c00339{bottom:613.120000pt;}
.y20_c00339{bottom:613.760000pt;}
.y1c_c00339{bottom:639.360000pt;}
.y19_c00339{bottom:640.000000pt;}
.y29_c00339{bottom:640.640000pt;}
.y1b_c00339{bottom:641.280000pt;}
.y1a_c00339{bottom:641.920000pt;}
.y18_c00339{bottom:670.720000pt;}
.y15_c00339{bottom:676.480000pt;}
.y16_c00339{bottom:677.120000pt;}
.y14_c00339{bottom:677.760000pt;}
.y28_c00339{bottom:678.400000pt;}
.y17_c00339{bottom:679.680000pt;}
.y25_c00339{bottom:716.800000pt;}
.y27_c00339{bottom:717.440000pt;}
.y26_c00339{bottom:718.080000pt;}
.y13_c00339{bottom:753.280000pt;}
.y12_c00339{bottom:753.920000pt;}
.y24_c00339{bottom:755.200000pt;}
.y11_c00339{bottom:791.040000pt;}
.y23_c00339{bottom:792.320000pt;}
.y10_c00339{bottom:792.960000pt;}
.yf_c00339{bottom:830.080000pt;}
.y21_c00339{bottom:830.720000pt;}
.ye_c00339{bottom:831.360000pt;}
.y22_c00339{bottom:832.640000pt;}
.yd_c00339{bottom:870.400000pt;}
.y9_c00339{bottom:897.280000pt;}
.yc_c00339{bottom:897.920000pt;}
.y7_c00339{bottom:898.560000pt;}
.y8_c00339{bottom:899.840000pt;}
.ya_c00339{bottom:900.480000pt;}
.yb_c00339{bottom:901.120000pt;}
.y3_c00339{bottom:935.680000pt;}
.y6_c00339{bottom:936.320000pt;}
.y2_c00339{bottom:936.960000pt;}
.y5_c00339{bottom:937.600000pt;}
.y4_c00339{bottom:939.520000pt;}
.y1_c00339{bottom:995.200000pt;}
.h14_c00339{height:4.607500pt;}
.hb_c00339{height:20.733750pt;}
.h6_c00339{height:29.948750pt;}
.hd_c00339{height:32.252500pt;}
.h18_c00339{height:34.556250pt;}
.hf_c00339{height:36.860000pt;}
.h10_c00339{height:39.163750pt;}
.h8_c00339{height:41.467500pt;}
.h5_c00339{height:43.771250pt;}
.h1a_c00339{height:45.818750pt;}
.h13_c00339{height:46.075000pt;}
.h12_c00339{height:47.610000pt;}
.h9_c00339{height:48.378750pt;}
.ha_c00339{height:48.891250pt;}
.h3_c00339{height:50.682500pt;}
.h16_c00339{height:52.730000pt;}
.h11_c00339{height:52.986250pt;}
.h1b_c00339{height:53.498750pt;}
.h7_c00339{height:55.290000pt;}
.hc_c00339{height:57.593750pt;}
.h2_c00339{height:59.897500pt;}
.h4_c00339{height:62.201250pt;}
.h17_c00339{height:64.505000pt;}
.he_c00339{height:76.023750pt;}
.h19_c00339{height:78.327500pt;}
.h15_c00339{height:89.846250pt;}
.h0_c00339{height:1026.560000pt;}
.h1_c00339{height:1026.666667pt;}
.w1_c00339{width:685.333333pt;}
.w0_c00339{width:685.440000pt;}
.x0_c00339{left:0.000000pt;}
.x9_c00339{left:59.520000pt;}
.x2_c00339{left:60.800000pt;}
.x34_c00339{left:62.080000pt;}
.x39_c00339{left:63.360000pt;}
.xa_c00339{left:99.200000pt;}
.x3_c00339{left:126.080000pt;}
.xb_c00339{left:157.440000pt;}
.x3a_c00339{left:163.840000pt;}
.x17_c00339{left:165.120000pt;}
.x14_c00339{left:204.160000pt;}
.x33_c00339{left:213.120000pt;}
.xc_c00339{left:214.400000pt;}
.xd_c00339{left:223.360000pt;}
.x1b_c00339{left:242.560000pt;}
.x2f_c00339{left:251.520000pt;}
.xe_c00339{left:261.120000pt;}
.x28_c00339{left:270.720000pt;}
.x26_c00339{left:280.320000pt;}
.x1c_c00339{left:289.920000pt;}
.x4_c00339{left:299.520000pt;}
.x3b_c00339{left:309.120000pt;}
.xf_c00339{left:310.400000pt;}
.x18_c00339{left:318.720000pt;}
.x29_c00339{left:328.960000pt;}
.x15_c00339{left:338.560000pt;}
.x5_c00339{left:348.160000pt;}
.x30_c00339{left:357.120000pt;}
.x2b_c00339{left:366.720000pt;}
.x6_c00339{left:386.560000pt;}
.x2e_c00339{left:394.880000pt;}
.x19_c00339{left:405.120000pt;}
.x35_c00339{left:413.440000pt;}
.x2a_c00339{left:414.720000pt;}
.x2c_c00339{left:424.320000pt;}
.x16_c00339{left:433.920000pt;}
.x1a_c00339{left:453.120000pt;}
.x36_c00339{left:462.080000pt;}
.x10_c00339{left:471.680000pt;}
.x3c_c00339{left:480.640000pt;}
.x1f_c00339{left:501.120000pt;}
.x7_c00339{left:503.040000pt;}
.x11_c00339{left:511.360000pt;}
.x8_c00339{left:520.320000pt;}
.x1d_c00339{left:521.600000pt;}
.x12_c00339{left:524.800000pt;}
.x31_c00339{left:529.280000pt;}
.x22_c00339{left:530.560000pt;}
.x3d_c00339{left:539.520000pt;}
.x38_c00339{left:548.480000pt;}
.x23_c00339{left:549.760000pt;}
.x20_c00339{left:551.040000pt;}
.x32_c00339{left:577.280000pt;}
.x24_c00339{left:578.560000pt;}
.x1e_c00339{left:579.840000pt;}
.x37_c00339{left:606.080000pt;}
.x25_c00339{left:607.360000pt;}
.x2d_c00339{left:615.040000pt;}
.x1_c00339{left:616.320000pt;}
.x13_c00339{left:617.600000pt;}
.x27_c00339{left:633.600000pt;}
.x21_c00339{left:635.520000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e31561d61d6dd5fb55f76d19.woff2')format("woff");}.ff1_c00340{font-family:ff1_c00340;line-height:1.109863;font-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_c00340{transform:matrix(0.176550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176550,0.000000,0.000000,0.250000,0,0);}
.m54_c00340{transform:matrix(0.177400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177400,0.000000,0.000000,0.250000,0,0);}
.m36_c00340{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m37_c00340{transform:matrix(0.207450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207450,0.000000,0.000000,0.250000,0,0);}
.m12_c00340{transform:matrix(0.215475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215475,0.000000,0.000000,0.250000,0,0);}
.m40_c00340{transform:matrix(0.229950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229950,0.000000,0.000000,0.250000,0,0);}
.m27_c00340{transform:matrix(0.234925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234925,0.000000,0.000000,0.250000,0,0);}
.m47_c00340{transform:matrix(0.235850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235850,0.000000,0.000000,0.250000,0,0);}
.m50_c00340{transform:matrix(0.239275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239275,0.000000,0.000000,0.250000,0,0);}
.m10_c00340{transform:matrix(0.242050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242050,0.000000,0.000000,0.250000,0,0);}
.m3b_c00340{transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);}
.m1d_c00340{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m14_c00340{transform:matrix(0.244350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244350,0.000000,0.000000,0.250000,0,0);}
.m43_c00340{transform:matrix(0.244875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244875,0.000000,0.000000,0.250000,0,0);}
.m3e_c00340{transform:matrix(0.247275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247275,0.000000,0.000000,0.250000,0,0);}
.m3a_c00340{transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);}
.m1_c00340{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_c00340{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m30_c00340{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m38_c00340{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m32_c00340{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.md_c00340{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00340{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00340{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m25_c00340{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m2_c00340{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m21_c00340{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m18_c00340{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m4_c00340{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m26_c00340{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m48_c00340{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mf_c00340{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mc_c00340{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m15_c00340{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m39_c00340{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m34_c00340{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00340{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m7_c00340{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00340{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00340{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m11_c00340{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00340{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00340{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00340{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m13_c00340{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m9_c00340{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);}
.m51_c00340{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m22_c00340{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);}
.m41_c00340{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00340{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.mb_c00340{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m28_c00340{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);}
.m24_c00340{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m23_c00340{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m17_c00340{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m20_c00340{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m8_c00340{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00340{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m0_c00340{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);}
.m2f_c00340{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);}
.m16_c00340{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);}
.m4c_c00340{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.ma_c00340{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m3_c00340{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);}
.m45_c00340{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m49_c00340{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);}
.m4a_c00340{transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);}
.me_c00340{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00340{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m35_c00340{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);}
.m4d_c00340{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m29_c00340{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00340{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);}
.m1e_c00340{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00340{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);}
.m53_c00340{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m42_c00340{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00340{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);}
.m44_c00340{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00340{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);}
.m52_c00340{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m5_c00340{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00340{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.m46_c00340{transform:matrix(0.827500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.827500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.827500,0.000000,0.000000,0.250000,0,0);}
.m33_c00340{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.v1_c00340{vertical-align:-11.520000px;}
.v0_c00340{vertical-align:0.000000px;}
.ls0_c00340{letter-spacing:0.000000px;}
.sc__c00340{text-shadow:none;}
.sc0_c00340{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00340{-webkit-text-stroke:0px transparent;}
.sc0_c00340{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00340{word-spacing:0.000000px;}
.ws0_c00340{word-spacing:2.917440px;}
.fc0_c00340{color:transparent;}
.fs5_c00340{font-size:34.560000px;}
.fsb_c00340{font-size:37.440000px;}
.fse_c00340{font-size:43.200000px;}
.fsd_c00340{font-size:48.960000px;}
.fs3_c00340{font-size:51.840000px;}
.fs1_c00340{font-size:54.720000px;}
.fs6_c00340{font-size:57.600000px;}
.fs0_c00340{font-size:60.480000px;}
.fs4_c00340{font-size:63.360000px;}
.fs9_c00340{font-size:66.240000px;}
.fsa_c00340{font-size:69.120000px;}
.fs8_c00340{font-size:72.000000px;}
.fs7_c00340{font-size:74.880000px;}
.fs2_c00340{font-size:77.760000px;}
.fsc_c00340{font-size:80.640000px;}
.y0_c00340{bottom:0.000000px;}
.y6a_c00340{bottom:120.960000px;}
.y6c_c00340{bottom:121.680000px;}
.y6b_c00340{bottom:123.120000px;}
.y69_c00340{bottom:124.560000px;}
.y67_c00340{bottom:164.880000px;}
.y68_c00340{bottom:165.600000px;}
.y66_c00340{bottom:168.480000px;}
.y76_c00340{bottom:169.200000px;}
.y75_c00340{bottom:169.920000px;}
.y77_c00340{bottom:170.640000px;}
.y63_c00340{bottom:207.360000px;}
.y65_c00340{bottom:208.800000px;}
.y64_c00340{bottom:209.520000px;}
.y62_c00340{bottom:210.960000px;}
.y72_c00340{bottom:211.680000px;}
.y74_c00340{bottom:212.400000px;}
.y73_c00340{bottom:213.840000px;}
.y61_c00340{bottom:252.000000px;}
.y60_c00340{bottom:252.720000px;}
.y5e_c00340{bottom:254.880000px;}
.y5f_c00340{bottom:255.600000px;}
.y59_c00340{bottom:283.680000px;}
.y5a_c00340{bottom:285.120000px;}
.y5b_c00340{bottom:285.840000px;}
.y57_c00340{bottom:286.560000px;}
.y58_c00340{bottom:287.280000px;}
.y71_c00340{bottom:288.000000px;}
.y5d_c00340{bottom:288.720000px;}
.y5c_c00340{bottom:289.440000px;}
.y54_c00340{bottom:326.880000px;}
.y56_c00340{bottom:328.320000px;}
.y52_c00340{bottom:329.760000px;}
.y53_c00340{bottom:330.480000px;}
.y55_c00340{bottom:331.200000px;}
.y70_c00340{bottom:331.920000px;}
.y6f_c00340{bottom:332.640000px;}
.y4f_c00340{bottom:370.080000px;}
.y51_c00340{bottom:370.800000px;}
.y4e_c00340{bottom:373.680000px;}
.y50_c00340{bottom:374.400000px;}
.y6e_c00340{bottom:375.120000px;}
.y4b_c00340{bottom:413.280000px;}
.y4d_c00340{bottom:414.000000px;}
.y4a_c00340{bottom:416.160000px;}
.y4c_c00340{bottom:416.880000px;}
.y6d_c00340{bottom:418.320000px;}
.y49_c00340{bottom:460.800000px;}
.y48_c00340{bottom:461.520000px;}
.y43_c00340{bottom:488.880000px;}
.y45_c00340{bottom:490.320000px;}
.y44_c00340{bottom:491.040000px;}
.y42_c00340{bottom:491.760000px;}
.y47_c00340{bottom:492.480000px;}
.y46_c00340{bottom:493.200000px;}
.y3e_c00340{bottom:532.800000px;}
.y3f_c00340{bottom:533.520000px;}
.y40_c00340{bottom:534.240000px;}
.y3d_c00340{bottom:534.960000px;}
.y41_c00340{bottom:535.680000px;}
.y2c_c00340{bottom:576.000000px;}
.y2d_c00340{bottom:576.720000px;}
.y3b_c00340{bottom:577.440000px;}
.y2b_c00340{bottom:578.160000px;}
.y3c_c00340{bottom:578.880000px;}
.y2e_c00340{bottom:579.600000px;}
.y2a_c00340{bottom:618.480000px;}
.y27_c00340{bottom:619.200000px;}
.y28_c00340{bottom:619.920000px;}
.y26_c00340{bottom:620.640000px;}
.y3a_c00340{bottom:622.080000px;}
.y29_c00340{bottom:622.800000px;}
.y39_c00340{bottom:660.960000px;}
.y25_c00340{bottom:661.680000px;}
.y22_c00340{bottom:662.400000px;}
.y23_c00340{bottom:663.120000px;}
.y21_c00340{bottom:663.840000px;}
.y38_c00340{bottom:664.560000px;}
.y24_c00340{bottom:666.000000px;}
.y1d_c00340{bottom:704.880000px;}
.y20_c00340{bottom:705.600000px;}
.y37_c00340{bottom:706.320000px;}
.y1e_c00340{bottom:707.040000px;}
.y1c_c00340{bottom:707.760000px;}
.y1f_c00340{bottom:708.480000px;}
.y19_c00340{bottom:748.800000px;}
.y1a_c00340{bottom:749.520000px;}
.y18_c00340{bottom:750.240000px;}
.y36_c00340{bottom:751.680000px;}
.y1b_c00340{bottom:752.400000px;}
.y16_c00340{bottom:792.000000px;}
.y17_c00340{bottom:792.720000px;}
.y15_c00340{bottom:794.160000px;}
.y35_c00340{bottom:795.600000px;}
.y33_c00340{bottom:834.480000px;}
.y34_c00340{bottom:835.200000px;}
.y13_c00340{bottom:835.920000px;}
.y12_c00340{bottom:836.640000px;}
.y14_c00340{bottom:838.080000px;}
.y10_c00340{bottom:878.400000px;}
.y11_c00340{bottom:879.120000px;}
.yf_c00340{bottom:880.560000px;}
.y32_c00340{bottom:881.280000px;}
.yd_c00340{bottom:921.600000px;}
.ye_c00340{bottom:922.320000px;}
.yc_c00340{bottom:923.760000px;}
.y9_c00340{bottom:964.800000px;}
.y30_c00340{bottom:965.520000px;}
.ya_c00340{bottom:966.240000px;}
.y8_c00340{bottom:966.960000px;}
.y31_c00340{bottom:967.680000px;}
.yb_c00340{bottom:968.400000px;}
.y6_c00340{bottom:1008.000000px;}
.y4_c00340{bottom:1009.440000px;}
.y7_c00340{bottom:1010.160000px;}
.y5_c00340{bottom:1011.600000px;}
.y3_c00340{bottom:1051.200000px;}
.y1_c00340{bottom:1052.640000px;}
.y2_c00340{bottom:1054.800000px;}
.y2f_c00340{bottom:1100.160000px;}
.h7_c00340{height:31.100625px;}
.he_c00340{height:33.692344px;}
.h11_c00340{height:38.875781px;}
.h10_c00340{height:44.059219px;}
.h5_c00340{height:46.650937px;}
.h3_c00340{height:49.242656px;}
.h8_c00340{height:51.834375px;}
.h2_c00340{height:54.426094px;}
.hc_c00340{height:55.864688px;}
.h6_c00340{height:57.017812px;}
.hb_c00340{height:59.609531px;}
.hd_c00340{height:62.201250px;}
.ha_c00340{height:64.792969px;}
.h9_c00340{height:67.384687px;}
.h4_c00340{height:69.976406px;}
.hf_c00340{height:72.568125px;}
.h1_c00340{height:1148.250000px;}
.h0_c00340{height:1148.400000px;}
.w0_c00340{width:761.760000px;}
.w1_c00340{width:762.000000px;}
.x0_c00340{left:0.000000px;}
.x1_c00340{left:64.800000px;}
.x2e_c00340{left:66.240000px;}
.x5_c00340{left:108.000000px;}
.x27_c00340{left:116.640000px;}
.xf_c00340{left:138.240000px;}
.x2_c00340{left:139.680000px;}
.x3_c00340{left:182.160000px;}
.x26_c00340{left:192.240000px;}
.x10_c00340{left:225.360000px;}
.xd_c00340{left:235.440000px;}
.x8_c00340{left:236.880000px;}
.x2f_c00340{left:246.240000px;}
.x2c_c00340{left:258.480000px;}
.xe_c00340{left:280.080000px;}
.x14_c00340{left:290.160000px;}
.x9_c00340{left:291.600000px;}
.x30_c00340{left:300.240000px;}
.xb_c00340{left:301.680000px;}
.x6_c00340{left:313.200000px;}
.x12_c00340{left:322.560000px;}
.x15_c00340{left:333.360000px;}
.xa_c00340{left:334.800000px;}
.x28_c00340{left:344.160000px;}
.xc_c00340{left:356.400000px;}
.x24_c00340{left:376.560000px;}
.x4_c00340{left:378.000000px;}
.x31_c00340{left:386.640000px;}
.x11_c00340{left:388.800000px;}
.x2d_c00340{left:397.440000px;}
.x7_c00340{left:399.600000px;}
.x13_c00340{left:419.760000px;}
.x29_c00340{left:429.840000px;}
.x20_c00340{left:441.360000px;}
.x25_c00340{left:463.680000px;}
.x2a_c00340{left:483.840000px;}
.x21_c00340{left:495.360000px;}
.x2b_c00340{left:526.320000px;}
.x22_c00340{left:537.840000px;}
.x17_c00340{left:581.760000px;}
.x19_c00340{left:583.200000px;}
.x32_c00340{left:613.440000px;}
.x1d_c00340{left:614.880000px;}
.x33_c00340{left:645.840000px;}
.x1e_c00340{left:648.000000px;}
.x1f_c00340{left:655.920000px;}
.x1b_c00340{left:657.360000px;}
.x1a_c00340{left:658.800000px;}
.x23_c00340{left:687.600000px;}
.x16_c00340{left:689.760000px;}
.x18_c00340{left:691.200000px;}
.x34_c00340{left:708.480000px;}
.x1c_c00340{left:710.640000px;}
@media print{
.v1_c00340{vertical-align:-10.240000pt;}
.v0_c00340{vertical-align:0.000000pt;}
.ls0_c00340{letter-spacing:0.000000pt;}
.ws1_c00340{word-spacing:0.000000pt;}
.ws0_c00340{word-spacing:2.593280pt;}
.fs5_c00340{font-size:30.720000pt;}
.fsb_c00340{font-size:33.280000pt;}
.fse_c00340{font-size:38.400000pt;}
.fsd_c00340{font-size:43.520000pt;}
.fs3_c00340{font-size:46.080000pt;}
.fs1_c00340{font-size:48.640000pt;}
.fs6_c00340{font-size:51.200000pt;}
.fs0_c00340{font-size:53.760000pt;}
.fs4_c00340{font-size:56.320000pt;}
.fs9_c00340{font-size:58.880000pt;}
.fsa_c00340{font-size:61.440000pt;}
.fs8_c00340{font-size:64.000000pt;}
.fs7_c00340{font-size:66.560000pt;}
.fs2_c00340{font-size:69.120000pt;}
.fsc_c00340{font-size:71.680000pt;}
.y0_c00340{bottom:0.000000pt;}
.y6a_c00340{bottom:107.520000pt;}
.y6c_c00340{bottom:108.160000pt;}
.y6b_c00340{bottom:109.440000pt;}
.y69_c00340{bottom:110.720000pt;}
.y67_c00340{bottom:146.560000pt;}
.y68_c00340{bottom:147.200000pt;}
.y66_c00340{bottom:149.760000pt;}
.y76_c00340{bottom:150.400000pt;}
.y75_c00340{bottom:151.040000pt;}
.y77_c00340{bottom:151.680000pt;}
.y63_c00340{bottom:184.320000pt;}
.y65_c00340{bottom:185.600000pt;}
.y64_c00340{bottom:186.240000pt;}
.y62_c00340{bottom:187.520000pt;}
.y72_c00340{bottom:188.160000pt;}
.y74_c00340{bottom:188.800000pt;}
.y73_c00340{bottom:190.080000pt;}
.y61_c00340{bottom:224.000000pt;}
.y60_c00340{bottom:224.640000pt;}
.y5e_c00340{bottom:226.560000pt;}
.y5f_c00340{bottom:227.200000pt;}
.y59_c00340{bottom:252.160000pt;}
.y5a_c00340{bottom:253.440000pt;}
.y5b_c00340{bottom:254.080000pt;}
.y57_c00340{bottom:254.720000pt;}
.y58_c00340{bottom:255.360000pt;}
.y71_c00340{bottom:256.000000pt;}
.y5d_c00340{bottom:256.640000pt;}
.y5c_c00340{bottom:257.280000pt;}
.y54_c00340{bottom:290.560000pt;}
.y56_c00340{bottom:291.840000pt;}
.y52_c00340{bottom:293.120000pt;}
.y53_c00340{bottom:293.760000pt;}
.y55_c00340{bottom:294.400000pt;}
.y70_c00340{bottom:295.040000pt;}
.y6f_c00340{bottom:295.680000pt;}
.y4f_c00340{bottom:328.960000pt;}
.y51_c00340{bottom:329.600000pt;}
.y4e_c00340{bottom:332.160000pt;}
.y50_c00340{bottom:332.800000pt;}
.y6e_c00340{bottom:333.440000pt;}
.y4b_c00340{bottom:367.360000pt;}
.y4d_c00340{bottom:368.000000pt;}
.y4a_c00340{bottom:369.920000pt;}
.y4c_c00340{bottom:370.560000pt;}
.y6d_c00340{bottom:371.840000pt;}
.y49_c00340{bottom:409.600000pt;}
.y48_c00340{bottom:410.240000pt;}
.y43_c00340{bottom:434.560000pt;}
.y45_c00340{bottom:435.840000pt;}
.y44_c00340{bottom:436.480000pt;}
.y42_c00340{bottom:437.120000pt;}
.y47_c00340{bottom:437.760000pt;}
.y46_c00340{bottom:438.400000pt;}
.y3e_c00340{bottom:473.600000pt;}
.y3f_c00340{bottom:474.240000pt;}
.y40_c00340{bottom:474.880000pt;}
.y3d_c00340{bottom:475.520000pt;}
.y41_c00340{bottom:476.160000pt;}
.y2c_c00340{bottom:512.000000pt;}
.y2d_c00340{bottom:512.640000pt;}
.y3b_c00340{bottom:513.280000pt;}
.y2b_c00340{bottom:513.920000pt;}
.y3c_c00340{bottom:514.560000pt;}
.y2e_c00340{bottom:515.200000pt;}
.y2a_c00340{bottom:549.760000pt;}
.y27_c00340{bottom:550.400000pt;}
.y28_c00340{bottom:551.040000pt;}
.y26_c00340{bottom:551.680000pt;}
.y3a_c00340{bottom:552.960000pt;}
.y29_c00340{bottom:553.600000pt;}
.y39_c00340{bottom:587.520000pt;}
.y25_c00340{bottom:588.160000pt;}
.y22_c00340{bottom:588.800000pt;}
.y23_c00340{bottom:589.440000pt;}
.y21_c00340{bottom:590.080000pt;}
.y38_c00340{bottom:590.720000pt;}
.y24_c00340{bottom:592.000000pt;}
.y1d_c00340{bottom:626.560000pt;}
.y20_c00340{bottom:627.200000pt;}
.y37_c00340{bottom:627.840000pt;}
.y1e_c00340{bottom:628.480000pt;}
.y1c_c00340{bottom:629.120000pt;}
.y1f_c00340{bottom:629.760000pt;}
.y19_c00340{bottom:665.600000pt;}
.y1a_c00340{bottom:666.240000pt;}
.y18_c00340{bottom:666.880000pt;}
.y36_c00340{bottom:668.160000pt;}
.y1b_c00340{bottom:668.800000pt;}
.y16_c00340{bottom:704.000000pt;}
.y17_c00340{bottom:704.640000pt;}
.y15_c00340{bottom:705.920000pt;}
.y35_c00340{bottom:707.200000pt;}
.y33_c00340{bottom:741.760000pt;}
.y34_c00340{bottom:742.400000pt;}
.y13_c00340{bottom:743.040000pt;}
.y12_c00340{bottom:743.680000pt;}
.y14_c00340{bottom:744.960000pt;}
.y10_c00340{bottom:780.800000pt;}
.y11_c00340{bottom:781.440000pt;}
.yf_c00340{bottom:782.720000pt;}
.y32_c00340{bottom:783.360000pt;}
.yd_c00340{bottom:819.200000pt;}
.ye_c00340{bottom:819.840000pt;}
.yc_c00340{bottom:821.120000pt;}
.y9_c00340{bottom:857.600000pt;}
.y30_c00340{bottom:858.240000pt;}
.ya_c00340{bottom:858.880000pt;}
.y8_c00340{bottom:859.520000pt;}
.y31_c00340{bottom:860.160000pt;}
.yb_c00340{bottom:860.800000pt;}
.y6_c00340{bottom:896.000000pt;}
.y4_c00340{bottom:897.280000pt;}
.y7_c00340{bottom:897.920000pt;}
.y5_c00340{bottom:899.200000pt;}
.y3_c00340{bottom:934.400000pt;}
.y1_c00340{bottom:935.680000pt;}
.y2_c00340{bottom:937.600000pt;}
.y2f_c00340{bottom:977.920000pt;}
.h7_c00340{height:27.645000pt;}
.he_c00340{height:29.948750pt;}
.h11_c00340{height:34.556250pt;}
.h10_c00340{height:39.163750pt;}
.h5_c00340{height:41.467500pt;}
.h3_c00340{height:43.771250pt;}
.h8_c00340{height:46.075000pt;}
.h2_c00340{height:48.378750pt;}
.hc_c00340{height:49.657500pt;}
.h6_c00340{height:50.682500pt;}
.hb_c00340{height:52.986250pt;}
.hd_c00340{height:55.290000pt;}
.ha_c00340{height:57.593750pt;}
.h9_c00340{height:59.897500pt;}
.h4_c00340{height:62.201250pt;}
.hf_c00340{height:64.505000pt;}
.h1_c00340{height:1020.666667pt;}
.h0_c00340{height:1020.800000pt;}
.w0_c00340{width:677.120000pt;}
.w1_c00340{width:677.333333pt;}
.x0_c00340{left:0.000000pt;}
.x1_c00340{left:57.600000pt;}
.x2e_c00340{left:58.880000pt;}
.x5_c00340{left:96.000000pt;}
.x27_c00340{left:103.680000pt;}
.xf_c00340{left:122.880000pt;}
.x2_c00340{left:124.160000pt;}
.x3_c00340{left:161.920000pt;}
.x26_c00340{left:170.880000pt;}
.x10_c00340{left:200.320000pt;}
.xd_c00340{left:209.280000pt;}
.x8_c00340{left:210.560000pt;}
.x2f_c00340{left:218.880000pt;}
.x2c_c00340{left:229.760000pt;}
.xe_c00340{left:248.960000pt;}
.x14_c00340{left:257.920000pt;}
.x9_c00340{left:259.200000pt;}
.x30_c00340{left:266.880000pt;}
.xb_c00340{left:268.160000pt;}
.x6_c00340{left:278.400000pt;}
.x12_c00340{left:286.720000pt;}
.x15_c00340{left:296.320000pt;}
.xa_c00340{left:297.600000pt;}
.x28_c00340{left:305.920000pt;}
.xc_c00340{left:316.800000pt;}
.x24_c00340{left:334.720000pt;}
.x4_c00340{left:336.000000pt;}
.x31_c00340{left:343.680000pt;}
.x11_c00340{left:345.600000pt;}
.x2d_c00340{left:353.280000pt;}
.x7_c00340{left:355.200000pt;}
.x13_c00340{left:373.120000pt;}
.x29_c00340{left:382.080000pt;}
.x20_c00340{left:392.320000pt;}
.x25_c00340{left:412.160000pt;}
.x2a_c00340{left:430.080000pt;}
.x21_c00340{left:440.320000pt;}
.x2b_c00340{left:467.840000pt;}
.x22_c00340{left:478.080000pt;}
.x17_c00340{left:517.120000pt;}
.x19_c00340{left:518.400000pt;}
.x32_c00340{left:545.280000pt;}
.x1d_c00340{left:546.560000pt;}
.x33_c00340{left:574.080000pt;}
.x1e_c00340{left:576.000000pt;}
.x1f_c00340{left:583.040000pt;}
.x1b_c00340{left:584.320000pt;}
.x1a_c00340{left:585.600000pt;}
.x23_c00340{left:611.200000pt;}
.x16_c00340{left:613.120000pt;}
.x18_c00340{left:614.400000pt;}
.x34_c00340{left:629.760000pt;}
.x1c_c00340{left:631.680000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4d78738a2dc4a9d1a7cebb10.woff2')format("woff");}.ff1_c00341{font-family:ff1_c00341;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4e_c00341{transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);}
.m4b_c00341{transform:matrix(0.201075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201075,0.000000,0.000000,0.250000,0,0);}
.m9_c00341{transform:matrix(0.203200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203200,0.000000,0.000000,0.250000,0,0);}
.m37_c00341{transform:matrix(0.211650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211650,0.000000,0.000000,0.250000,0,0);}
.m46_c00341{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00341{transform:matrix(0.217425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217425,0.000000,0.000000,0.250000,0,0);}
.m42_c00341{transform:matrix(0.218525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218525,0.000000,0.000000,0.250000,0,0);}
.m3b_c00341{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);}
.m45_c00341{transform:matrix(0.227975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227975,0.000000,0.000000,0.250000,0,0);}
.m32_c00341{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m26_c00341{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m30_c00341{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);}
.m48_c00341{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);}
.m28_c00341{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);}
.m2c_c00341{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);}
.m36_c00341{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);}
.m34_c00341{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m47_c00341{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m13_c00341{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m15_c00341{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m6_c00341{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00341{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m23_c00341{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_c00341{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);}
.m33_c00341{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);}
.m2b_c00341{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00341{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00341{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m0_c00341{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00341{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00341{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m39_c00341{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00341{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mf_c00341{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00341{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00341{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mb_c00341{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m8_c00341{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m35_c00341{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m12_c00341{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m31_c00341{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m3_c00341{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m7_c00341{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);}
.m43_c00341{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m17_c00341{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m29_c00341{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m5_c00341{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m14_c00341{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);}
.m3d_c00341{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00341{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00341{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m27_c00341{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);}
.ma_c00341{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m20_c00341{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.mc_c00341{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m1_c00341{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);}
.m38_c00341{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.md_c00341{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m40_c00341{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);}
.m2_c00341{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m25_c00341{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m10_c00341{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00341{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.me_c00341{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m11_c00341{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00341{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m18_c00341{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m19_c00341{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00341{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00341{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m41_c00341{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m22_c00341{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m4_c00341{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);}
.m24_c00341{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m44_c00341{transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);}
.m16_c00341{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00341{transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);}
.m49_c00341{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00341{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.v0_c00341{vertical-align:0.000000px;}
.ls0_c00341{letter-spacing:0.000000px;}
.sc__c00341{text-shadow:none;}
.sc0_c00341{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00341{-webkit-text-stroke:0px transparent;}
.sc0_c00341{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00341{word-spacing:0.000000px;}
.fc0_c00341{color:transparent;}
.fs8_c00341{font-size:34.560000px;}
.fs9_c00341{font-size:43.200000px;}
.fs3_c00341{font-size:48.960000px;}
.fs0_c00341{font-size:51.840000px;}
.fsa_c00341{font-size:54.720000px;}
.fs7_c00341{font-size:57.600000px;}
.fs5_c00341{font-size:60.480000px;}
.fs1_c00341{font-size:63.360000px;}
.fs2_c00341{font-size:66.240000px;}
.fsb_c00341{font-size:69.120000px;}
.fsd_c00341{font-size:72.000000px;}
.fs6_c00341{font-size:74.880000px;}
.fs4_c00341{font-size:77.760000px;}
.fsc_c00341{font-size:80.640000px;}
.y0_c00341{bottom:0.000000px;}
.y64_c00341{bottom:67.680000px;}
.y63_c00341{bottom:71.280000px;}
.y72_c00341{bottom:72.000000px;}
.y62_c00341{bottom:111.600000px;}
.y71_c00341{bottom:114.480000px;}
.y70_c00341{bottom:115.200000px;}
.y61_c00341{bottom:116.640000px;}
.y60_c00341{bottom:154.800000px;}
.y5f_c00341{bottom:157.680000px;}
.y6f_c00341{bottom:158.400000px;}
.y6e_c00341{bottom:160.560000px;}
.y5e_c00341{bottom:198.000000px;}
.y6b_c00341{bottom:200.880000px;}
.y6c_c00341{bottom:201.600000px;}
.y5d_c00341{bottom:202.320000px;}
.y6d_c00341{bottom:203.040000px;}
.y5c_c00341{bottom:241.200000px;}
.y6a_c00341{bottom:243.360000px;}
.y69_c00341{bottom:244.080000px;}
.y5b_c00341{bottom:244.800000px;}
.y68_c00341{bottom:245.520000px;}
.y67_c00341{bottom:246.240000px;}
.y5a_c00341{bottom:284.400000px;}
.y59_c00341{bottom:287.280000px;}
.y57_c00341{bottom:327.600000px;}
.y66_c00341{bottom:329.760000px;}
.y56_c00341{bottom:330.480000px;}
.y55_c00341{bottom:331.200000px;}
.y58_c00341{bottom:331.920000px;}
.y52_c00341{bottom:370.800000px;}
.y54_c00341{bottom:371.520000px;}
.y65_c00341{bottom:372.960000px;}
.y53_c00341{bottom:374.400000px;}
.y50_c00341{bottom:375.120000px;}
.y51_c00341{bottom:375.840000px;}
.y4b_c00341{bottom:414.000000px;}
.y4d_c00341{bottom:414.720000px;}
.y4c_c00341{bottom:415.440000px;}
.y4e_c00341{bottom:416.160000px;}
.y4a_c00341{bottom:416.880000px;}
.y49_c00341{bottom:417.600000px;}
.y4f_c00341{bottom:419.040000px;}
.y38_c00341{bottom:457.200000px;}
.y47_c00341{bottom:459.360000px;}
.y36_c00341{bottom:460.800000px;}
.y37_c00341{bottom:461.520000px;}
.y48_c00341{bottom:462.240000px;}
.y32_c00341{bottom:501.120000px;}
.y34_c00341{bottom:502.560000px;}
.y31_c00341{bottom:503.280000px;}
.y35_c00341{bottom:504.000000px;}
.y33_c00341{bottom:504.720000px;}
.y46_c00341{bottom:505.440000px;}
.y30_c00341{bottom:544.320000px;}
.y44_c00341{bottom:545.040000px;}
.y45_c00341{bottom:546.480000px;}
.y2e_c00341{bottom:547.200000px;}
.y2f_c00341{bottom:548.640000px;}
.y2d_c00341{bottom:587.520000px;}
.y43_c00341{bottom:589.680000px;}
.y2a_c00341{bottom:590.400000px;}
.y2c_c00341{bottom:591.120000px;}
.y2b_c00341{bottom:591.840000px;}
.y29_c00341{bottom:630.720000px;}
.y42_c00341{bottom:631.440000px;}
.y41_c00341{bottom:632.160000px;}
.y26_c00341{bottom:632.880000px;}
.y28_c00341{bottom:634.320000px;}
.y27_c00341{bottom:635.040000px;}
.y23_c00341{bottom:673.920000px;}
.y40_c00341{bottom:674.640000px;}
.y3f_c00341{bottom:675.360000px;}
.y21_c00341{bottom:676.080000px;}
.y25_c00341{bottom:676.800000px;}
.y24_c00341{bottom:677.520000px;}
.y22_c00341{bottom:678.240000px;}
.y20_c00341{bottom:716.400000px;}
.y3e_c00341{bottom:717.840000px;}
.y1e_c00341{bottom:718.560000px;}
.y1f_c00341{bottom:720.720000px;}
.y1d_c00341{bottom:759.600000px;}
.y1c_c00341{bottom:763.200000px;}
.y1b_c00341{bottom:764.640000px;}
.y1a_c00341{bottom:792.000000px;}
.y17_c00341{bottom:792.720000px;}
.y18_c00341{bottom:793.440000px;}
.y14_c00341{bottom:794.160000px;}
.y19_c00341{bottom:794.880000px;}
.y15_c00341{bottom:795.600000px;}
.y16_c00341{bottom:796.320000px;}
.y13_c00341{bottom:835.200000px;}
.y3d_c00341{bottom:835.920000px;}
.y12_c00341{bottom:837.360000px;}
.y11_c00341{bottom:878.400000px;}
.y3c_c00341{bottom:879.120000px;}
.ye_c00341{bottom:879.840000px;}
.y10_c00341{bottom:882.000000px;}
.yf_c00341{bottom:882.720000px;}
.yd_c00341{bottom:921.600000px;}
.y3b_c00341{bottom:922.320000px;}
.y3a_c00341{bottom:923.040000px;}
.yb_c00341{bottom:923.760000px;}
.yc_c00341{bottom:925.920000px;}
.ya_c00341{bottom:964.800000px;}
.y9_c00341{bottom:965.520000px;}
.y8_c00341{bottom:966.960000px;}
.y7_c00341{bottom:1007.280000px;}
.y6_c00341{bottom:1008.000000px;}
.y3_c00341{bottom:1009.440000px;}
.y5_c00341{bottom:1010.160000px;}
.y4_c00341{bottom:1012.320000px;}
.y2_c00341{bottom:1054.080000px;}
.y1_c00341{bottom:1055.520000px;}
.y39_c00341{bottom:1100.160000px;}
.ha_c00341{height:31.100625px;}
.hb_c00341{height:38.875781px;}
.h5_c00341{height:44.059219px;}
.h2_c00341{height:46.650937px;}
.hc_c00341{height:49.242656px;}
.h9_c00341{height:51.834375px;}
.h7_c00341{height:54.426094px;}
.h3_c00341{height:57.017812px;}
.h4_c00341{height:59.609531px;}
.hd_c00341{height:62.201250px;}
.hf_c00341{height:64.792969px;}
.h8_c00341{height:67.384687px;}
.h6_c00341{height:69.976406px;}
.he_c00341{height:72.568125px;}
.h0_c00341{height:1154.880000px;}
.h1_c00341{height:1155.000000px;}
.w1_c00341{width:772.500000px;}
.w0_c00341{width:772.560000px;}
.x0_c00341{left:0.000000px;}
.x4_c00341{left:77.040000px;}
.xe_c00341{left:120.960000px;}
.x1_c00341{left:130.320000px;}
.x31_c00341{left:149.760000px;}
.x5_c00341{left:151.200000px;}
.x2_c00341{left:162.000000px;}
.x16_c00341{left:192.960000px;}
.x6_c00341{left:194.400000px;}
.x28_c00341{left:204.480000px;}
.x17_c00341{left:236.880000px;}
.xb_c00341{left:239.040000px;}
.xd_c00341{left:248.400000px;}
.x7_c00341{left:250.560000px;}
.x3_c00341{left:259.200000px;}
.x2d_c00341{left:290.160000px;}
.x18_c00341{left:291.600000px;}
.xc_c00341{left:293.040000px;}
.xf_c00341{left:303.120000px;}
.x29_c00341{left:313.200000px;}
.x2e_c00341{left:334.800000px;}
.x10_c00341{left:358.560000px;}
.x2a_c00341{left:366.480000px;}
.x19_c00341{left:388.800000px;}
.x11_c00341{left:401.760000px;}
.x8_c00341{left:410.400000px;}
.x1a_c00341{left:442.080000px;}
.x12_c00341{left:453.600000px;}
.x9_c00341{left:455.040000px;}
.x2f_c00341{left:474.480000px;}
.x1b_c00341{left:486.000000px;}
.x15_c00341{left:496.800000px;}
.x13_c00341{left:506.880000px;}
.xa_c00341{left:509.760000px;}
.x30_c00341{left:527.760000px;}
.x14_c00341{left:551.520000px;}
.x2b_c00341{left:560.880000px;}
.x34_c00341{left:570.960000px;}
.x32_c00341{left:591.840000px;}
.x22_c00341{left:594.720000px;}
.x1d_c00341{left:606.240000px;}
.x2c_c00341{left:624.960000px;}
.x24_c00341{left:626.400000px;}
.x20_c00341{left:627.840000px;}
.x33_c00341{left:656.640000px;}
.x27_c00341{left:658.080000px;}
.x1e_c00341{left:659.520000px;}
.x1c_c00341{left:686.880000px;}
.x26_c00341{left:700.560000px;}
.x23_c00341{left:702.720000px;}
.x1f_c00341{left:704.160000px;}
.x25_c00341{left:721.440000px;}
.x21_c00341{left:722.880000px;}
@media print{
.v0_c00341{vertical-align:0.000000pt;}
.ls0_c00341{letter-spacing:0.000000pt;}
.ws0_c00341{word-spacing:0.000000pt;}
.fs8_c00341{font-size:30.720000pt;}
.fs9_c00341{font-size:38.400000pt;}
.fs3_c00341{font-size:43.520000pt;}
.fs0_c00341{font-size:46.080000pt;}
.fsa_c00341{font-size:48.640000pt;}
.fs7_c00341{font-size:51.200000pt;}
.fs5_c00341{font-size:53.760000pt;}
.fs1_c00341{font-size:56.320000pt;}
.fs2_c00341{font-size:58.880000pt;}
.fsb_c00341{font-size:61.440000pt;}
.fsd_c00341{font-size:64.000000pt;}
.fs6_c00341{font-size:66.560000pt;}
.fs4_c00341{font-size:69.120000pt;}
.fsc_c00341{font-size:71.680000pt;}
.y0_c00341{bottom:0.000000pt;}
.y64_c00341{bottom:60.160000pt;}
.y63_c00341{bottom:63.360000pt;}
.y72_c00341{bottom:64.000000pt;}
.y62_c00341{bottom:99.200000pt;}
.y71_c00341{bottom:101.760000pt;}
.y70_c00341{bottom:102.400000pt;}
.y61_c00341{bottom:103.680000pt;}
.y60_c00341{bottom:137.600000pt;}
.y5f_c00341{bottom:140.160000pt;}
.y6f_c00341{bottom:140.800000pt;}
.y6e_c00341{bottom:142.720000pt;}
.y5e_c00341{bottom:176.000000pt;}
.y6b_c00341{bottom:178.560000pt;}
.y6c_c00341{bottom:179.200000pt;}
.y5d_c00341{bottom:179.840000pt;}
.y6d_c00341{bottom:180.480000pt;}
.y5c_c00341{bottom:214.400000pt;}
.y6a_c00341{bottom:216.320000pt;}
.y69_c00341{bottom:216.960000pt;}
.y5b_c00341{bottom:217.600000pt;}
.y68_c00341{bottom:218.240000pt;}
.y67_c00341{bottom:218.880000pt;}
.y5a_c00341{bottom:252.800000pt;}
.y59_c00341{bottom:255.360000pt;}
.y57_c00341{bottom:291.200000pt;}
.y66_c00341{bottom:293.120000pt;}
.y56_c00341{bottom:293.760000pt;}
.y55_c00341{bottom:294.400000pt;}
.y58_c00341{bottom:295.040000pt;}
.y52_c00341{bottom:329.600000pt;}
.y54_c00341{bottom:330.240000pt;}
.y65_c00341{bottom:331.520000pt;}
.y53_c00341{bottom:332.800000pt;}
.y50_c00341{bottom:333.440000pt;}
.y51_c00341{bottom:334.080000pt;}
.y4b_c00341{bottom:368.000000pt;}
.y4d_c00341{bottom:368.640000pt;}
.y4c_c00341{bottom:369.280000pt;}
.y4e_c00341{bottom:369.920000pt;}
.y4a_c00341{bottom:370.560000pt;}
.y49_c00341{bottom:371.200000pt;}
.y4f_c00341{bottom:372.480000pt;}
.y38_c00341{bottom:406.400000pt;}
.y47_c00341{bottom:408.320000pt;}
.y36_c00341{bottom:409.600000pt;}
.y37_c00341{bottom:410.240000pt;}
.y48_c00341{bottom:410.880000pt;}
.y32_c00341{bottom:445.440000pt;}
.y34_c00341{bottom:446.720000pt;}
.y31_c00341{bottom:447.360000pt;}
.y35_c00341{bottom:448.000000pt;}
.y33_c00341{bottom:448.640000pt;}
.y46_c00341{bottom:449.280000pt;}
.y30_c00341{bottom:483.840000pt;}
.y44_c00341{bottom:484.480000pt;}
.y45_c00341{bottom:485.760000pt;}
.y2e_c00341{bottom:486.400000pt;}
.y2f_c00341{bottom:487.680000pt;}
.y2d_c00341{bottom:522.240000pt;}
.y43_c00341{bottom:524.160000pt;}
.y2a_c00341{bottom:524.800000pt;}
.y2c_c00341{bottom:525.440000pt;}
.y2b_c00341{bottom:526.080000pt;}
.y29_c00341{bottom:560.640000pt;}
.y42_c00341{bottom:561.280000pt;}
.y41_c00341{bottom:561.920000pt;}
.y26_c00341{bottom:562.560000pt;}
.y28_c00341{bottom:563.840000pt;}
.y27_c00341{bottom:564.480000pt;}
.y23_c00341{bottom:599.040000pt;}
.y40_c00341{bottom:599.680000pt;}
.y3f_c00341{bottom:600.320000pt;}
.y21_c00341{bottom:600.960000pt;}
.y25_c00341{bottom:601.600000pt;}
.y24_c00341{bottom:602.240000pt;}
.y22_c00341{bottom:602.880000pt;}
.y20_c00341{bottom:636.800000pt;}
.y3e_c00341{bottom:638.080000pt;}
.y1e_c00341{bottom:638.720000pt;}
.y1f_c00341{bottom:640.640000pt;}
.y1d_c00341{bottom:675.200000pt;}
.y1c_c00341{bottom:678.400000pt;}
.y1b_c00341{bottom:679.680000pt;}
.y1a_c00341{bottom:704.000000pt;}
.y17_c00341{bottom:704.640000pt;}
.y18_c00341{bottom:705.280000pt;}
.y14_c00341{bottom:705.920000pt;}
.y19_c00341{bottom:706.560000pt;}
.y15_c00341{bottom:707.200000pt;}
.y16_c00341{bottom:707.840000pt;}
.y13_c00341{bottom:742.400000pt;}
.y3d_c00341{bottom:743.040000pt;}
.y12_c00341{bottom:744.320000pt;}
.y11_c00341{bottom:780.800000pt;}
.y3c_c00341{bottom:781.440000pt;}
.ye_c00341{bottom:782.080000pt;}
.y10_c00341{bottom:784.000000pt;}
.yf_c00341{bottom:784.640000pt;}
.yd_c00341{bottom:819.200000pt;}
.y3b_c00341{bottom:819.840000pt;}
.y3a_c00341{bottom:820.480000pt;}
.yb_c00341{bottom:821.120000pt;}
.yc_c00341{bottom:823.040000pt;}
.ya_c00341{bottom:857.600000pt;}
.y9_c00341{bottom:858.240000pt;}
.y8_c00341{bottom:859.520000pt;}
.y7_c00341{bottom:895.360000pt;}
.y6_c00341{bottom:896.000000pt;}
.y3_c00341{bottom:897.280000pt;}
.y5_c00341{bottom:897.920000pt;}
.y4_c00341{bottom:899.840000pt;}
.y2_c00341{bottom:936.960000pt;}
.y1_c00341{bottom:938.240000pt;}
.y39_c00341{bottom:977.920000pt;}
.ha_c00341{height:27.645000pt;}
.hb_c00341{height:34.556250pt;}
.h5_c00341{height:39.163750pt;}
.h2_c00341{height:41.467500pt;}
.hc_c00341{height:43.771250pt;}
.h9_c00341{height:46.075000pt;}
.h7_c00341{height:48.378750pt;}
.h3_c00341{height:50.682500pt;}
.h4_c00341{height:52.986250pt;}
.hd_c00341{height:55.290000pt;}
.hf_c00341{height:57.593750pt;}
.h8_c00341{height:59.897500pt;}
.h6_c00341{height:62.201250pt;}
.he_c00341{height:64.505000pt;}
.h0_c00341{height:1026.560000pt;}
.h1_c00341{height:1026.666667pt;}
.w1_c00341{width:686.666667pt;}
.w0_c00341{width:686.720000pt;}
.x0_c00341{left:0.000000pt;}
.x4_c00341{left:68.480000pt;}
.xe_c00341{left:107.520000pt;}
.x1_c00341{left:115.840000pt;}
.x31_c00341{left:133.120000pt;}
.x5_c00341{left:134.400000pt;}
.x2_c00341{left:144.000000pt;}
.x16_c00341{left:171.520000pt;}
.x6_c00341{left:172.800000pt;}
.x28_c00341{left:181.760000pt;}
.x17_c00341{left:210.560000pt;}
.xb_c00341{left:212.480000pt;}
.xd_c00341{left:220.800000pt;}
.x7_c00341{left:222.720000pt;}
.x3_c00341{left:230.400000pt;}
.x2d_c00341{left:257.920000pt;}
.x18_c00341{left:259.200000pt;}
.xc_c00341{left:260.480000pt;}
.xf_c00341{left:269.440000pt;}
.x29_c00341{left:278.400000pt;}
.x2e_c00341{left:297.600000pt;}
.x10_c00341{left:318.720000pt;}
.x2a_c00341{left:325.760000pt;}
.x19_c00341{left:345.600000pt;}
.x11_c00341{left:357.120000pt;}
.x8_c00341{left:364.800000pt;}
.x1a_c00341{left:392.960000pt;}
.x12_c00341{left:403.200000pt;}
.x9_c00341{left:404.480000pt;}
.x2f_c00341{left:421.760000pt;}
.x1b_c00341{left:432.000000pt;}
.x15_c00341{left:441.600000pt;}
.x13_c00341{left:450.560000pt;}
.xa_c00341{left:453.120000pt;}
.x30_c00341{left:469.120000pt;}
.x14_c00341{left:490.240000pt;}
.x2b_c00341{left:498.560000pt;}
.x34_c00341{left:507.520000pt;}
.x32_c00341{left:526.080000pt;}
.x22_c00341{left:528.640000pt;}
.x1d_c00341{left:538.880000pt;}
.x2c_c00341{left:555.520000pt;}
.x24_c00341{left:556.800000pt;}
.x20_c00341{left:558.080000pt;}
.x33_c00341{left:583.680000pt;}
.x27_c00341{left:584.960000pt;}
.x1e_c00341{left:586.240000pt;}
.x1c_c00341{left:610.560000pt;}
.x26_c00341{left:622.720000pt;}
.x23_c00341{left:624.640000pt;}
.x1f_c00341{left:625.920000pt;}
.x25_c00341{left:641.280000pt;}
.x21_c00341{left:642.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0665a72a63337d4419815fa0.woff2')format("woff");}.ff1_c00342{font-family:ff1_c00342;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4e_c00342{transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);}
.m50_c00342{transform:matrix(0.195850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195850,0.000000,0.000000,0.250000,0,0);}
.m1f_c00342{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m41_c00342{transform:matrix(0.216150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216150,0.000000,0.000000,0.250000,0,0);}
.m2a_c00342{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);}
.m31_c00342{transform:matrix(0.225350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225350,0.000000,0.000000,0.250000,0,0);}
.m24_c00342{transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);}
.m37_c00342{transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);}
.m3c_c00342{transform:matrix(0.242100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242100,0.000000,0.000000,0.250000,0,0);}
.m36_c00342{transform:matrix(0.242200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242200,0.000000,0.000000,0.250000,0,0);}
.m4b_c00342{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m34_c00342{transform:matrix(0.245350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245350,0.000000,0.000000,0.250000,0,0);}
.m3e_c00342{transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);}
.m20_c00342{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);}
.m32_c00342{transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);}
.m38_c00342{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.me_c00342{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m26_c00342{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);}
.m43_c00342{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);}
.m28_c00342{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m48_c00342{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m12_c00342{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m16_c00342{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00342{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1_c00342{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m3_c00342{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m22_c00342{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m7_c00342{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mb_c00342{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mc_c00342{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m17_c00342{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m25_c00342{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m23_c00342{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00342{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m27_c00342{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00342{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00342{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m47_c00342{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mf_c00342{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m19_c00342{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00342{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00342{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00342{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m0_c00342{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m6_c00342{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m2_c00342{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00342{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_c00342{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m10_c00342{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00342{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m9_c00342{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m21_c00342{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);}
.m33_c00342{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m15_c00342{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);}
.m11_c00342{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m42_c00342{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m18_c00342{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);}
.m44_c00342{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m4_c00342{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m46_c00342{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);}
.m45_c00342{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);}
.m4d_c00342{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m13_c00342{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);}
.m2e_c00342{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00342{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);}
.m3a_c00342{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m5_c00342{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00342{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m14_c00342{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m49_c00342{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m39_c00342{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m40_c00342{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);}
.md_c00342{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00342{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);}
.m3d_c00342{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00342{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);}
.m8_c00342{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m35_c00342{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00342{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m29_c00342{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00342{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.v3_c00342{vertical-align:-2.880000px;}
.v0_c00342{vertical-align:0.000000px;}
.v1_c00342{vertical-align:2.880000px;}
.v2_c00342{vertical-align:5.760000px;}
.ls0_c00342{letter-spacing:0.000000px;}
.sc__c00342{text-shadow:none;}
.sc0_c00342{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00342{-webkit-text-stroke:0px transparent;}
.sc0_c00342{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00342{word-spacing:-0.740160px;}
.ws3_c00342{word-spacing:0.000000px;}
.ws0_c00342{word-spacing:11.690400px;}
.ws1_c00342{word-spacing:14.240400px;}
.fc0_c00342{color:transparent;}
.fs8_c00342{font-size:34.560000px;}
.fsa_c00342{font-size:37.440000px;}
.fs9_c00342{font-size:43.200000px;}
.fs2_c00342{font-size:46.080000px;}
.fsc_c00342{font-size:48.960000px;}
.fs4_c00342{font-size:51.840000px;}
.fs3_c00342{font-size:54.720000px;}
.fsb_c00342{font-size:57.600000px;}
.fs5_c00342{font-size:60.480000px;}
.fs7_c00342{font-size:63.360000px;}
.fs0_c00342{font-size:66.240000px;}
.fs6_c00342{font-size:69.120000px;}
.fsf_c00342{font-size:72.000000px;}
.fsd_c00342{font-size:74.880000px;}
.fs1_c00342{font-size:77.760000px;}
.fse_c00342{font-size:80.640000px;}
.y0_c00342{bottom:0.000000px;}
.y77_c00342{bottom:27.360000px;}
.y78_c00342{bottom:28.080000px;}
.y79_c00342{bottom:28.800000px;}
.y62_c00342{bottom:66.960000px;}
.y61_c00342{bottom:68.400000px;}
.y63_c00342{bottom:69.120000px;}
.y5d_c00342{bottom:98.640000px;}
.y60_c00342{bottom:99.360000px;}
.y5e_c00342{bottom:100.080000px;}
.y5f_c00342{bottom:102.240000px;}
.y5c_c00342{bottom:103.680000px;}
.y76_c00342{bottom:104.400000px;}
.y59_c00342{bottom:144.000000px;}
.y5a_c00342{bottom:145.440000px;}
.y5b_c00342{bottom:146.880000px;}
.y55_c00342{bottom:174.960000px;}
.y58_c00342{bottom:176.400000px;}
.y57_c00342{bottom:177.120000px;}
.y56_c00342{bottom:178.560000px;}
.y54_c00342{bottom:179.280000px;}
.y75_c00342{bottom:180.720000px;}
.y50_c00342{bottom:218.160000px;}
.y52_c00342{bottom:218.880000px;}
.y51_c00342{bottom:219.600000px;}
.y4e_c00342{bottom:220.320000px;}
.y4f_c00342{bottom:221.760000px;}
.y53_c00342{bottom:222.480000px;}
.y4a_c00342{bottom:250.560000px;}
.y4d_c00342{bottom:251.280000px;}
.y4c_c00342{bottom:252.000000px;}
.y70_c00342{bottom:253.440000px;}
.y4b_c00342{bottom:254.160000px;}
.y49_c00342{bottom:254.880000px;}
.y74_c00342{bottom:256.320000px;}
.y71_c00342{bottom:295.920000px;}
.y72_c00342{bottom:298.080000px;}
.y73_c00342{bottom:298.800000px;}
.y48_c00342{bottom:336.960000px;}
.y6e_c00342{bottom:339.840000px;}
.y47_c00342{bottom:340.560000px;}
.y6d_c00342{bottom:341.280000px;}
.y6f_c00342{bottom:342.000000px;}
.y45_c00342{bottom:380.160000px;}
.y46_c00342{bottom:381.600000px;}
.y6b_c00342{bottom:382.320000px;}
.y44_c00342{bottom:383.040000px;}
.y6c_c00342{bottom:384.480000px;}
.y43_c00342{bottom:423.360000px;}
.y68_c00342{bottom:424.800000px;}
.y41_c00342{bottom:425.520000px;}
.y42_c00342{bottom:426.240000px;}
.y6a_c00342{bottom:426.960000px;}
.y3f_c00342{bottom:465.840000px;}
.y40_c00342{bottom:466.560000px;}
.y67_c00342{bottom:468.000000px;}
.y3e_c00342{bottom:468.720000px;}
.y69_c00342{bottom:470.160000px;}
.y3d_c00342{bottom:509.040000px;}
.y3b_c00342{bottom:509.760000px;}
.y66_c00342{bottom:510.480000px;}
.y65_c00342{bottom:511.200000px;}
.y3a_c00342{bottom:512.640000px;}
.y3c_c00342{bottom:514.080000px;}
.y38_c00342{bottom:552.960000px;}
.y64_c00342{bottom:553.680000px;}
.y39_c00342{bottom:554.400000px;}
.y37_c00342{bottom:555.120000px;}
.y36_c00342{bottom:595.440000px;}
.y35_c00342{bottom:596.160000px;}
.y34_c00342{bottom:597.600000px;}
.y31_c00342{bottom:598.320000px;}
.y33_c00342{bottom:599.760000px;}
.y32_c00342{bottom:600.480000px;}
.y1f_c00342{bottom:639.360000px;}
.y2f_c00342{bottom:640.080000px;}
.y1e_c00342{bottom:640.800000px;}
.y2e_c00342{bottom:642.240000px;}
.y30_c00342{bottom:642.960000px;}
.y1b_c00342{bottom:682.560000px;}
.y1c_c00342{bottom:684.000000px;}
.y1a_c00342{bottom:684.720000px;}
.y1d_c00342{bottom:686.160000px;}
.y2d_c00342{bottom:686.880000px;}
.y19_c00342{bottom:725.760000px;}
.y2c_c00342{bottom:727.200000px;}
.y18_c00342{bottom:727.920000px;}
.y15_c00342{bottom:768.960000px;}
.y16_c00342{bottom:769.680000px;}
.y2b_c00342{bottom:770.400000px;}
.y14_c00342{bottom:771.120000px;}
.y17_c00342{bottom:772.560000px;}
.y13_c00342{bottom:812.160000px;}
.y29_c00342{bottom:812.880000px;}
.y28_c00342{bottom:813.600000px;}
.y12_c00342{bottom:814.320000px;}
.y2a_c00342{bottom:815.040000px;}
.y11_c00342{bottom:855.360000px;}
.y26_c00342{bottom:856.080000px;}
.y10_c00342{bottom:856.800000px;}
.y27_c00342{bottom:857.520000px;}
.y25_c00342{bottom:858.240000px;}
.yf_c00342{bottom:898.560000px;}
.yd_c00342{bottom:900.000000px;}
.ye_c00342{bottom:900.720000px;}
.yb_c00342{bottom:941.760000px;}
.ya_c00342{bottom:942.480000px;}
.yc_c00342{bottom:945.360000px;}
.y7_c00342{bottom:986.400000px;}
.y9_c00342{bottom:987.840000px;}
.y8_c00342{bottom:988.560000px;}
.y4_c00342{bottom:1016.640000px;}
.y24_c00342{bottom:1017.360000px;}
.y3_c00342{bottom:1018.080000px;}
.y5_c00342{bottom:1018.800000px;}
.y6_c00342{bottom:1019.520000px;}
.y23_c00342{bottom:1059.120000px;}
.y22_c00342{bottom:1059.840000px;}
.y2_c00342{bottom:1060.560000px;}
.y1_c00342{bottom:1061.280000px;}
.y21_c00342{bottom:1062.720000px;}
.y20_c00342{bottom:1097.280000px;}
.ha_c00342{height:31.100625px;}
.hc_c00342{height:33.692344px;}
.hb_c00342{height:38.875781px;}
.h4_c00342{height:41.467500px;}
.h10_c00342{height:44.059219px;}
.h6_c00342{height:46.650937px;}
.h5_c00342{height:49.242656px;}
.hd_c00342{height:51.834375px;}
.h7_c00342{height:54.426094px;}
.h9_c00342{height:57.017812px;}
.he_c00342{height:57.306094px;}
.h2_c00342{height:59.609531px;}
.hf_c00342{height:60.186094px;}
.h8_c00342{height:62.201250px;}
.h13_c00342{height:64.792969px;}
.h11_c00342{height:67.384687px;}
.h3_c00342{height:69.976406px;}
.h12_c00342{height:72.568125px;}
.h0_c00342{height:1155.600000px;}
.h1_c00342{height:1155.750000px;}
.w1_c00342{width:773.250000px;}
.w0_c00342{width:773.280000px;}
.x0_c00342{left:0.000000px;}
.x1_c00342{left:74.160000px;}
.x2d_c00342{left:75.600000px;}
.x22_c00342{left:116.640000px;}
.xa_c00342{left:118.080000px;}
.xb_c00342{left:146.880000px;}
.x2_c00342{left:149.040000px;}
.x2b_c00342{left:190.080000px;}
.x1b_c00342{left:191.520000px;}
.x7_c00342{left:203.040000px;}
.x32_c00342{left:210.960000px;}
.x2e_c00342{left:232.560000px;}
.x1f_c00342{left:234.000000px;}
.x27_c00342{left:244.080000px;}
.x1c_c00342{left:245.520000px;}
.x8_c00342{left:257.040000px;}
.x33_c00342{left:266.400000px;}
.x23_c00342{left:267.840000px;}
.x2f_c00342{left:277.920000px;}
.x28_c00342{left:287.280000px;}
.x20_c00342{left:288.720000px;}
.x2c_c00342{left:298.800000px;}
.x3_c00342{left:300.240000px;}
.x26_c00342{left:308.880000px;}
.xc_c00342{left:331.920000px;}
.x29_c00342{left:341.280000px;}
.x9_c00342{left:343.440000px;}
.x4_c00342{left:354.240000px;}
.x25_c00342{left:362.880000px;}
.xd_c00342{left:385.200000px;}
.x21_c00342{left:396.720000px;}
.x30_c00342{left:418.320000px;}
.x31_c00342{left:427.680000px;}
.xe_c00342{left:429.840000px;}
.x5_c00342{left:439.920000px;}
.x2a_c00342{left:470.880000px;}
.x24_c00342{left:482.400000px;}
.x6_c00342{left:485.280000px;}
.x1d_c00342{left:568.080000px;}
.x10_c00342{left:570.240000px;}
.x13_c00342{left:571.680000px;}
.x3a_c00342{left:587.520000px;}
.x1e_c00342{left:588.960000px;}
.x11_c00342{left:591.120000px;}
.x36_c00342{left:600.480000px;}
.x37_c00342{left:612.720000px;}
.x35_c00342{left:621.360000px;}
.x18_c00342{left:622.800000px;}
.x15_c00342{left:624.240000px;}
.x34_c00342{left:655.200000px;}
.x16_c00342{left:656.640000px;}
.x39_c00342{left:686.880000px;}
.xf_c00342{left:691.200000px;}
.x19_c00342{left:697.680000px;}
.x14_c00342{left:699.120000px;}
.x12_c00342{left:700.560000px;}
.x38_c00342{left:717.120000px;}
.x1a_c00342{left:718.560000px;}
.x17_c00342{left:720.000000px;}
@media print{
.v3_c00342{vertical-align:-2.560000pt;}
.v0_c00342{vertical-align:0.000000pt;}
.v1_c00342{vertical-align:2.560000pt;}
.v2_c00342{vertical-align:5.120000pt;}
.ls0_c00342{letter-spacing:0.000000pt;}
.ws2_c00342{word-spacing:-0.657920pt;}
.ws3_c00342{word-spacing:0.000000pt;}
.ws0_c00342{word-spacing:10.391467pt;}
.ws1_c00342{word-spacing:12.658133pt;}
.fs8_c00342{font-size:30.720000pt;}
.fsa_c00342{font-size:33.280000pt;}
.fs9_c00342{font-size:38.400000pt;}
.fs2_c00342{font-size:40.960000pt;}
.fsc_c00342{font-size:43.520000pt;}
.fs4_c00342{font-size:46.080000pt;}
.fs3_c00342{font-size:48.640000pt;}
.fsb_c00342{font-size:51.200000pt;}
.fs5_c00342{font-size:53.760000pt;}
.fs7_c00342{font-size:56.320000pt;}
.fs0_c00342{font-size:58.880000pt;}
.fs6_c00342{font-size:61.440000pt;}
.fsf_c00342{font-size:64.000000pt;}
.fsd_c00342{font-size:66.560000pt;}
.fs1_c00342{font-size:69.120000pt;}
.fse_c00342{font-size:71.680000pt;}
.y0_c00342{bottom:0.000000pt;}
.y77_c00342{bottom:24.320000pt;}
.y78_c00342{bottom:24.960000pt;}
.y79_c00342{bottom:25.600000pt;}
.y62_c00342{bottom:59.520000pt;}
.y61_c00342{bottom:60.800000pt;}
.y63_c00342{bottom:61.440000pt;}
.y5d_c00342{bottom:87.680000pt;}
.y60_c00342{bottom:88.320000pt;}
.y5e_c00342{bottom:88.960000pt;}
.y5f_c00342{bottom:90.880000pt;}
.y5c_c00342{bottom:92.160000pt;}
.y76_c00342{bottom:92.800000pt;}
.y59_c00342{bottom:128.000000pt;}
.y5a_c00342{bottom:129.280000pt;}
.y5b_c00342{bottom:130.560000pt;}
.y55_c00342{bottom:155.520000pt;}
.y58_c00342{bottom:156.800000pt;}
.y57_c00342{bottom:157.440000pt;}
.y56_c00342{bottom:158.720000pt;}
.y54_c00342{bottom:159.360000pt;}
.y75_c00342{bottom:160.640000pt;}
.y50_c00342{bottom:193.920000pt;}
.y52_c00342{bottom:194.560000pt;}
.y51_c00342{bottom:195.200000pt;}
.y4e_c00342{bottom:195.840000pt;}
.y4f_c00342{bottom:197.120000pt;}
.y53_c00342{bottom:197.760000pt;}
.y4a_c00342{bottom:222.720000pt;}
.y4d_c00342{bottom:223.360000pt;}
.y4c_c00342{bottom:224.000000pt;}
.y70_c00342{bottom:225.280000pt;}
.y4b_c00342{bottom:225.920000pt;}
.y49_c00342{bottom:226.560000pt;}
.y74_c00342{bottom:227.840000pt;}
.y71_c00342{bottom:263.040000pt;}
.y72_c00342{bottom:264.960000pt;}
.y73_c00342{bottom:265.600000pt;}
.y48_c00342{bottom:299.520000pt;}
.y6e_c00342{bottom:302.080000pt;}
.y47_c00342{bottom:302.720000pt;}
.y6d_c00342{bottom:303.360000pt;}
.y6f_c00342{bottom:304.000000pt;}
.y45_c00342{bottom:337.920000pt;}
.y46_c00342{bottom:339.200000pt;}
.y6b_c00342{bottom:339.840000pt;}
.y44_c00342{bottom:340.480000pt;}
.y6c_c00342{bottom:341.760000pt;}
.y43_c00342{bottom:376.320000pt;}
.y68_c00342{bottom:377.600000pt;}
.y41_c00342{bottom:378.240000pt;}
.y42_c00342{bottom:378.880000pt;}
.y6a_c00342{bottom:379.520000pt;}
.y3f_c00342{bottom:414.080000pt;}
.y40_c00342{bottom:414.720000pt;}
.y67_c00342{bottom:416.000000pt;}
.y3e_c00342{bottom:416.640000pt;}
.y69_c00342{bottom:417.920000pt;}
.y3d_c00342{bottom:452.480000pt;}
.y3b_c00342{bottom:453.120000pt;}
.y66_c00342{bottom:453.760000pt;}
.y65_c00342{bottom:454.400000pt;}
.y3a_c00342{bottom:455.680000pt;}
.y3c_c00342{bottom:456.960000pt;}
.y38_c00342{bottom:491.520000pt;}
.y64_c00342{bottom:492.160000pt;}
.y39_c00342{bottom:492.800000pt;}
.y37_c00342{bottom:493.440000pt;}
.y36_c00342{bottom:529.280000pt;}
.y35_c00342{bottom:529.920000pt;}
.y34_c00342{bottom:531.200000pt;}
.y31_c00342{bottom:531.840000pt;}
.y33_c00342{bottom:533.120000pt;}
.y32_c00342{bottom:533.760000pt;}
.y1f_c00342{bottom:568.320000pt;}
.y2f_c00342{bottom:568.960000pt;}
.y1e_c00342{bottom:569.600000pt;}
.y2e_c00342{bottom:570.880000pt;}
.y30_c00342{bottom:571.520000pt;}
.y1b_c00342{bottom:606.720000pt;}
.y1c_c00342{bottom:608.000000pt;}
.y1a_c00342{bottom:608.640000pt;}
.y1d_c00342{bottom:609.920000pt;}
.y2d_c00342{bottom:610.560000pt;}
.y19_c00342{bottom:645.120000pt;}
.y2c_c00342{bottom:646.400000pt;}
.y18_c00342{bottom:647.040000pt;}
.y15_c00342{bottom:683.520000pt;}
.y16_c00342{bottom:684.160000pt;}
.y2b_c00342{bottom:684.800000pt;}
.y14_c00342{bottom:685.440000pt;}
.y17_c00342{bottom:686.720000pt;}
.y13_c00342{bottom:721.920000pt;}
.y29_c00342{bottom:722.560000pt;}
.y28_c00342{bottom:723.200000pt;}
.y12_c00342{bottom:723.840000pt;}
.y2a_c00342{bottom:724.480000pt;}
.y11_c00342{bottom:760.320000pt;}
.y26_c00342{bottom:760.960000pt;}
.y10_c00342{bottom:761.600000pt;}
.y27_c00342{bottom:762.240000pt;}
.y25_c00342{bottom:762.880000pt;}
.yf_c00342{bottom:798.720000pt;}
.yd_c00342{bottom:800.000000pt;}
.ye_c00342{bottom:800.640000pt;}
.yb_c00342{bottom:837.120000pt;}
.ya_c00342{bottom:837.760000pt;}
.yc_c00342{bottom:840.320000pt;}
.y7_c00342{bottom:876.800000pt;}
.y9_c00342{bottom:878.080000pt;}
.y8_c00342{bottom:878.720000pt;}
.y4_c00342{bottom:903.680000pt;}
.y24_c00342{bottom:904.320000pt;}
.y3_c00342{bottom:904.960000pt;}
.y5_c00342{bottom:905.600000pt;}
.y6_c00342{bottom:906.240000pt;}
.y23_c00342{bottom:941.440000pt;}
.y22_c00342{bottom:942.080000pt;}
.y2_c00342{bottom:942.720000pt;}
.y1_c00342{bottom:943.360000pt;}
.y21_c00342{bottom:944.640000pt;}
.y20_c00342{bottom:975.360000pt;}
.ha_c00342{height:27.645000pt;}
.hc_c00342{height:29.948750pt;}
.hb_c00342{height:34.556250pt;}
.h4_c00342{height:36.860000pt;}
.h10_c00342{height:39.163750pt;}
.h6_c00342{height:41.467500pt;}
.h5_c00342{height:43.771250pt;}
.hd_c00342{height:46.075000pt;}
.h7_c00342{height:48.378750pt;}
.h9_c00342{height:50.682500pt;}
.he_c00342{height:50.938750pt;}
.h2_c00342{height:52.986250pt;}
.hf_c00342{height:53.498750pt;}
.h8_c00342{height:55.290000pt;}
.h13_c00342{height:57.593750pt;}
.h11_c00342{height:59.897500pt;}
.h3_c00342{height:62.201250pt;}
.h12_c00342{height:64.505000pt;}
.h0_c00342{height:1027.200000pt;}
.h1_c00342{height:1027.333333pt;}
.w1_c00342{width:687.333333pt;}
.w0_c00342{width:687.360000pt;}
.x0_c00342{left:0.000000pt;}
.x1_c00342{left:65.920000pt;}
.x2d_c00342{left:67.200000pt;}
.x22_c00342{left:103.680000pt;}
.xa_c00342{left:104.960000pt;}
.xb_c00342{left:130.560000pt;}
.x2_c00342{left:132.480000pt;}
.x2b_c00342{left:168.960000pt;}
.x1b_c00342{left:170.240000pt;}
.x7_c00342{left:180.480000pt;}
.x32_c00342{left:187.520000pt;}
.x2e_c00342{left:206.720000pt;}
.x1f_c00342{left:208.000000pt;}
.x27_c00342{left:216.960000pt;}
.x1c_c00342{left:218.240000pt;}
.x8_c00342{left:228.480000pt;}
.x33_c00342{left:236.800000pt;}
.x23_c00342{left:238.080000pt;}
.x2f_c00342{left:247.040000pt;}
.x28_c00342{left:255.360000pt;}
.x20_c00342{left:256.640000pt;}
.x2c_c00342{left:265.600000pt;}
.x3_c00342{left:266.880000pt;}
.x26_c00342{left:274.560000pt;}
.xc_c00342{left:295.040000pt;}
.x29_c00342{left:303.360000pt;}
.x9_c00342{left:305.280000pt;}
.x4_c00342{left:314.880000pt;}
.x25_c00342{left:322.560000pt;}
.xd_c00342{left:342.400000pt;}
.x21_c00342{left:352.640000pt;}
.x30_c00342{left:371.840000pt;}
.x31_c00342{left:380.160000pt;}
.xe_c00342{left:382.080000pt;}
.x5_c00342{left:391.040000pt;}
.x2a_c00342{left:418.560000pt;}
.x24_c00342{left:428.800000pt;}
.x6_c00342{left:431.360000pt;}
.x1d_c00342{left:504.960000pt;}
.x10_c00342{left:506.880000pt;}
.x13_c00342{left:508.160000pt;}
.x3a_c00342{left:522.240000pt;}
.x1e_c00342{left:523.520000pt;}
.x11_c00342{left:525.440000pt;}
.x36_c00342{left:533.760000pt;}
.x37_c00342{left:544.640000pt;}
.x35_c00342{left:552.320000pt;}
.x18_c00342{left:553.600000pt;}
.x15_c00342{left:554.880000pt;}
.x34_c00342{left:582.400000pt;}
.x16_c00342{left:583.680000pt;}
.x39_c00342{left:610.560000pt;}
.xf_c00342{left:614.400000pt;}
.x19_c00342{left:620.160000pt;}
.x14_c00342{left:621.440000pt;}
.x12_c00342{left:622.720000pt;}
.x38_c00342{left:637.440000pt;}
.x1a_c00342{left:638.720000pt;}
.x17_c00342{left:640.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_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_c89fb15fa59e12246458732d.woff2')format("woff");}.ff1_c00343{font-family:ff1_c00343;line-height:1.109863;font-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_c00343{transform:matrix(0.188775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188775,0.000000,0.000000,0.250000,0,0);}
.m42_c00343{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.m3e_c00343{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00343{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);}
.m44_c00343{transform:matrix(0.228025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228025,0.000000,0.000000,0.250000,0,0);}
.m3b_c00343{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00343{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m1_c00343{transform:matrix(0.237725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237725,0.000000,0.000000,0.250000,0,0);}
.m49_c00343{transform:matrix(0.238175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238175,0.000000,0.000000,0.250000,0,0);}
.m8_c00343{transform:matrix(0.241975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241975,0.000000,0.000000,0.250000,0,0);}
.m4c_c00343{transform:matrix(0.242325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242325,0.000000,0.000000,0.250000,0,0);}
.m13_c00343{transform:matrix(0.242400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242400,0.000000,0.000000,0.250000,0,0);}
.m50_c00343{transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);}
.m38_c00343{transform:matrix(0.243850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243850,0.000000,0.000000,0.250000,0,0);}
.m2b_c00343{transform:matrix(0.244350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244350,0.000000,0.000000,0.250000,0,0);}
.m46_c00343{transform:matrix(0.247850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247850,0.000000,0.000000,0.250000,0,0);}
.m2d_c00343{transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);}
.m52_c00343{transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);}
.m35_c00343{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);}
.m2e_c00343{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);}
.m3d_c00343{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);}
.m36_c00343{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_c00343{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);}
.m28_c00343{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m19_c00343{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00343{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m4_c00343{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);}
.m2f_c00343{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_c00343{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);}
.m2c_c00343{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m24_c00343{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m7_c00343{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m2_c00343{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m33_c00343{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m45_c00343{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m51_c00343{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1e_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);}
.m16_c00343{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m43_c00343{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m17_c00343{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m27_c00343{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m41_c00343{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m10_c00343{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00343{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00343{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00343{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00343{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m15_c00343{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m53_c00343{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m0_c00343{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m31_c00343{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m20_c00343{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m23_c00343{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);}
.m4f_c00343{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);}
.m4d_c00343{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m3_c00343{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);}
.m34_c00343{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.md_c00343{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.mc_c00343{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);}
.m1d_c00343{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m21_c00343{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.me_c00343{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m48_c00343{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);}
.m2a_c00343{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);}
.m25_c00343{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);}
.m54_c00343{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);}
.m37_c00343{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);}
.m3a_c00343{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);}
.m39_c00343{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.mf_c00343{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00343{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m18_c00343{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);}
.m26_c00343{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m47_c00343{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m12_c00343{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m11_c00343{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m5_c00343{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m32_c00343{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.mb_c00343{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);}
.m4a_c00343{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m6_c00343{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);}
.m40_c00343{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m9_c00343{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);}
.m14_c00343{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m22_c00343{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.v1_c00343{vertical-align:-2.880000px;}
.v0_c00343{vertical-align:0.000000px;}
.v2_c00343{vertical-align:2.880000px;}
.ls1_c00343{letter-spacing:0.000000px;}
.ls0_c00343{letter-spacing:85.310400px;}
.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;}
}
.ws3_c00343{word-spacing:0.000000px;}
.ws1_c00343{word-spacing:7.669200px;}
.ws2_c00343{word-spacing:39.302400px;}
.ws0_c00343{word-spacing:40.713600px;}
.fc0_c00343{color:transparent;}
.fs5_c00343{font-size:37.440000px;}
.fsa_c00343{font-size:40.320000px;}
.fsd_c00343{font-size:43.200000px;}
.fs9_c00343{font-size:46.080000px;}
.fsf_c00343{font-size:48.960000px;}
.fs7_c00343{font-size:51.840000px;}
.fs4_c00343{font-size:54.720000px;}
.fsc_c00343{font-size:57.600000px;}
.fsb_c00343{font-size:60.480000px;}
.fs3_c00343{font-size:63.360000px;}
.fs0_c00343{font-size:66.240000px;}
.fs8_c00343{font-size:69.120000px;}
.fs6_c00343{font-size:72.000000px;}
.fs2_c00343{font-size:74.880000px;}
.fs1_c00343{font-size:77.760000px;}
.fs10_c00343{font-size:83.520000px;}
.fse_c00343{font-size:115.200000px;}
.y0_c00343{bottom:0.000000px;}
.y7d_c00343{bottom:51.120000px;}
.y80_c00343{bottom:51.840000px;}
.y7e_c00343{bottom:53.280000px;}
.y7f_c00343{bottom:54.000000px;}
.y81_c00343{bottom:54.720000px;}
.y7c_c00343{bottom:56.160000px;}
.y7b_c00343{bottom:93.600000px;}
.y7a_c00343{bottom:95.040000px;}
.y79_c00343{bottom:95.760000px;}
.y73_c00343{bottom:126.000000px;}
.y75_c00343{bottom:128.160000px;}
.y72_c00343{bottom:130.320000px;}
.y74_c00343{bottom:131.040000px;}
.y76_c00343{bottom:131.760000px;}
.y77_c00343{bottom:132.480000px;}
.y78_c00343{bottom:133.200000px;}
.y6d_c00343{bottom:169.200000px;}
.y70_c00343{bottom:170.640000px;}
.y6f_c00343{bottom:171.360000px;}
.y6e_c00343{bottom:172.800000px;}
.y6c_c00343{bottom:173.520000px;}
.y71_c00343{bottom:175.680000px;}
.y67_c00343{bottom:211.680000px;}
.y69_c00343{bottom:213.840000px;}
.y68_c00343{bottom:214.560000px;}
.y66_c00343{bottom:216.000000px;}
.y6b_c00343{bottom:218.160000px;}
.y6a_c00343{bottom:218.880000px;}
.y63_c00343{bottom:255.600000px;}
.y64_c00343{bottom:257.040000px;}
.y65_c00343{bottom:259.200000px;}
.y62_c00343{bottom:259.920000px;}
.y5d_c00343{bottom:299.520000px;}
.y5f_c00343{bottom:301.680000px;}
.y5c_c00343{bottom:302.400000px;}
.y5e_c00343{bottom:303.120000px;}
.y60_c00343{bottom:303.840000px;}
.y61_c00343{bottom:304.560000px;}
.y59_c00343{bottom:342.720000px;}
.y5b_c00343{bottom:344.160000px;}
.y5a_c00343{bottom:344.880000px;}
.y58_c00343{bottom:347.040000px;}
.y57_c00343{bottom:347.760000px;}
.y42_c00343{bottom:386.640000px;}
.y55_c00343{bottom:388.800000px;}
.y41_c00343{bottom:390.960000px;}
.y56_c00343{bottom:391.680000px;}
.y3f_c00343{bottom:429.840000px;}
.y40_c00343{bottom:430.560000px;}
.y54_c00343{bottom:432.000000px;}
.y52_c00343{bottom:432.720000px;}
.y3d_c00343{bottom:433.440000px;}
.y3e_c00343{bottom:434.160000px;}
.y53_c00343{bottom:434.880000px;}
.y3c_c00343{bottom:473.760000px;}
.y50_c00343{bottom:475.200000px;}
.y3b_c00343{bottom:477.360000px;}
.y51_c00343{bottom:478.080000px;}
.y39_c00343{bottom:516.240000px;}
.y3a_c00343{bottom:516.960000px;}
.y4f_c00343{bottom:517.680000px;}
.y37_c00343{bottom:518.400000px;}
.y4e_c00343{bottom:519.120000px;}
.y38_c00343{bottom:520.560000px;}
.y36_c00343{bottom:559.440000px;}
.y4b_c00343{bottom:561.600000px;}
.y4c_c00343{bottom:562.320000px;}
.y35_c00343{bottom:563.040000px;}
.y4d_c00343{bottom:564.480000px;}
.y32_c00343{bottom:602.640000px;}
.y34_c00343{bottom:603.360000px;}
.y33_c00343{bottom:604.080000px;}
.y31_c00343{bottom:605.520000px;}
.y4a_c00343{bottom:606.960000px;}
.y30_c00343{bottom:645.840000px;}
.y2f_c00343{bottom:646.560000px;}
.y48_c00343{bottom:647.280000px;}
.y2e_c00343{bottom:648.000000px;}
.y49_c00343{bottom:650.160000px;}
.y46_c00343{bottom:689.760000px;}
.y2d_c00343{bottom:690.480000px;}
.y2c_c00343{bottom:691.200000px;}
.y47_c00343{bottom:691.920000px;}
.y2b_c00343{bottom:722.160000px;}
.y2a_c00343{bottom:732.240000px;}
.y43_c00343{bottom:733.680000px;}
.y29_c00343{bottom:734.400000px;}
.y45_c00343{bottom:735.120000px;}
.y44_c00343{bottom:736.560000px;}
.y28_c00343{bottom:774.720000px;}
.y25_c00343{bottom:775.440000px;}
.y26_c00343{bottom:776.160000px;}
.y24_c00343{bottom:777.600000px;}
.y27_c00343{bottom:778.320000px;}
.y23_c00343{bottom:817.920000px;}
.y20_c00343{bottom:819.360000px;}
.y1f_c00343{bottom:820.800000px;}
.y21_c00343{bottom:821.520000px;}
.y22_c00343{bottom:822.240000px;}
.y1c_c00343{bottom:849.600000px;}
.y19_c00343{bottom:851.040000px;}
.y1b_c00343{bottom:851.760000px;}
.y18_c00343{bottom:852.480000px;}
.y1d_c00343{bottom:853.200000px;}
.y1e_c00343{bottom:853.920000px;}
.y1a_c00343{bottom:854.640000px;}
.y11_c00343{bottom:894.240000px;}
.y10_c00343{bottom:895.680000px;}
.y17_c00343{bottom:896.400000px;}
.y12_c00343{bottom:897.840000px;}
.yd_c00343{bottom:938.880000px;}
.ye_c00343{bottom:939.600000px;}
.yf_c00343{bottom:940.320000px;}
.y9_c00343{bottom:969.840000px;}
.y16_c00343{bottom:970.560000px;}
.yc_c00343{bottom:971.280000px;}
.y8_c00343{bottom:972.000000px;}
.yb_c00343{bottom:972.720000px;}
.ya_c00343{bottom:974.160000px;}
.y15_c00343{bottom:1012.320000px;}
.y7_c00343{bottom:1013.040000px;}
.y5_c00343{bottom:1013.760000px;}
.y14_c00343{bottom:1014.480000px;}
.y4_c00343{bottom:1015.200000px;}
.y6_c00343{bottom:1016.640000px;}
.y2_c00343{bottom:1056.240000px;}
.y3_c00343{bottom:1056.960000px;}
.y13_c00343{bottom:1057.680000px;}
.y1_c00343{bottom:1058.400000px;}
.h7_c00343{height:33.692344px;}
.hc_c00343{height:36.284062px;}
.hf_c00343{height:38.875781px;}
.hb_c00343{height:41.467500px;}
.h11_c00343{height:44.059219px;}
.h9_c00343{height:46.650937px;}
.h6_c00343{height:49.242656px;}
.he_c00343{height:51.834375px;}
.hd_c00343{height:54.426094px;}
.h5_c00343{height:57.017812px;}
.h2_c00343{height:59.609531px;}
.ha_c00343{height:62.201250px;}
.h8_c00343{height:64.792969px;}
.h4_c00343{height:67.384687px;}
.h3_c00343{height:69.976406px;}
.h12_c00343{height:75.159844px;}
.h10_c00343{height:103.668750px;}
.h0_c00343{height:1155.600000px;}
.h1_c00343{height:1155.750000px;}
.w1_c00343{width:772.500000px;}
.w0_c00343{width:772.560000px;}
.x0_c00343{left:0.000000px;}
.x19_c00343{left:71.280000px;}
.x1_c00343{left:72.720000px;}
.x20_c00343{left:145.440000px;}
.x2_c00343{left:146.880000px;}
.xb_c00343{left:190.800000px;}
.x22_c00343{left:192.240000px;}
.x4_c00343{left:234.000000px;}
.x2e_c00343{left:241.920000px;}
.x1c_c00343{left:244.080000px;}
.x3a_c00343{left:252.720000px;}
.x7_c00343{left:255.600000px;}
.x32_c00343{left:274.320000px;}
.xe_c00343{left:276.480000px;}
.xc_c00343{left:287.280000px;}
.x5_c00343{left:288.720000px;}
.x8_c00343{left:298.080000px;}
.x23_c00343{left:307.440000px;}
.x21_c00343{left:309.600000px;}
.x33_c00343{left:318.960000px;}
.x3_c00343{left:321.120000px;}
.xf_c00343{left:329.760000px;}
.x6_c00343{left:331.200000px;}
.x24_c00343{left:352.080000px;}
.x3c_c00343{left:362.880000px;}
.x34_c00343{left:372.240000px;}
.x10_c00343{left:373.680000px;}
.x38_c00343{left:383.040000px;}
.xd_c00343{left:384.480000px;}
.x2f_c00343{left:393.120000px;}
.x3b_c00343{left:404.640000px;}
.x25_c00343{left:406.800000px;}
.x1d_c00343{left:428.400000px;}
.x30_c00343{left:436.320000px;}
.x9_c00343{left:439.920000px;}
.x26_c00343{left:448.560000px;}
.x35_c00343{left:457.920000px;}
.x1e_c00343{left:460.080000px;}
.x1a_c00343{left:470.880000px;}
.x3e_c00343{left:479.520000px;}
.xa_c00343{left:481.680000px;}
.x31_c00343{left:490.320000px;}
.x3d_c00343{left:501.120000px;}
.x1f_c00343{left:502.560000px;}
.x36_c00343{left:511.920000px;}
.x37_c00343{left:555.120000px;}
.x11_c00343{left:568.080000px;}
.x29_c00343{left:588.240000px;}
.x2b_c00343{left:619.920000px;}
.x16_c00343{left:622.080000px;}
.x12_c00343{left:624.240000px;}
.x2c_c00343{left:653.040000px;}
.x17_c00343{left:655.200000px;}
.x13_c00343{left:656.640000px;}
.x39_c00343{left:663.120000px;}
.x28_c00343{left:664.560000px;}
.x27_c00343{left:686.880000px;}
.x18_c00343{left:688.320000px;}
.x2d_c00343{left:696.240000px;}
.x1b_c00343{left:697.680000px;}
.x15_c00343{left:699.120000px;}
.x2a_c00343{left:717.120000px;}
.x14_c00343{left:719.280000px;}
@media print{
.v1_c00343{vertical-align:-2.560000pt;}
.v0_c00343{vertical-align:0.000000pt;}
.v2_c00343{vertical-align:2.560000pt;}
.ls1_c00343{letter-spacing:0.000000pt;}
.ls0_c00343{letter-spacing:75.831467pt;}
.ws3_c00343{word-spacing:0.000000pt;}
.ws1_c00343{word-spacing:6.817067pt;}
.ws2_c00343{word-spacing:34.935467pt;}
.ws0_c00343{word-spacing:36.189867pt;}
.fs5_c00343{font-size:33.280000pt;}
.fsa_c00343{font-size:35.840000pt;}
.fsd_c00343{font-size:38.400000pt;}
.fs9_c00343{font-size:40.960000pt;}
.fsf_c00343{font-size:43.520000pt;}
.fs7_c00343{font-size:46.080000pt;}
.fs4_c00343{font-size:48.640000pt;}
.fsc_c00343{font-size:51.200000pt;}
.fsb_c00343{font-size:53.760000pt;}
.fs3_c00343{font-size:56.320000pt;}
.fs0_c00343{font-size:58.880000pt;}
.fs8_c00343{font-size:61.440000pt;}
.fs6_c00343{font-size:64.000000pt;}
.fs2_c00343{font-size:66.560000pt;}
.fs1_c00343{font-size:69.120000pt;}
.fs10_c00343{font-size:74.240000pt;}
.fse_c00343{font-size:102.400000pt;}
.y0_c00343{bottom:0.000000pt;}
.y7d_c00343{bottom:45.440000pt;}
.y80_c00343{bottom:46.080000pt;}
.y7e_c00343{bottom:47.360000pt;}
.y7f_c00343{bottom:48.000000pt;}
.y81_c00343{bottom:48.640000pt;}
.y7c_c00343{bottom:49.920000pt;}
.y7b_c00343{bottom:83.200000pt;}
.y7a_c00343{bottom:84.480000pt;}
.y79_c00343{bottom:85.120000pt;}
.y73_c00343{bottom:112.000000pt;}
.y75_c00343{bottom:113.920000pt;}
.y72_c00343{bottom:115.840000pt;}
.y74_c00343{bottom:116.480000pt;}
.y76_c00343{bottom:117.120000pt;}
.y77_c00343{bottom:117.760000pt;}
.y78_c00343{bottom:118.400000pt;}
.y6d_c00343{bottom:150.400000pt;}
.y70_c00343{bottom:151.680000pt;}
.y6f_c00343{bottom:152.320000pt;}
.y6e_c00343{bottom:153.600000pt;}
.y6c_c00343{bottom:154.240000pt;}
.y71_c00343{bottom:156.160000pt;}
.y67_c00343{bottom:188.160000pt;}
.y69_c00343{bottom:190.080000pt;}
.y68_c00343{bottom:190.720000pt;}
.y66_c00343{bottom:192.000000pt;}
.y6b_c00343{bottom:193.920000pt;}
.y6a_c00343{bottom:194.560000pt;}
.y63_c00343{bottom:227.200000pt;}
.y64_c00343{bottom:228.480000pt;}
.y65_c00343{bottom:230.400000pt;}
.y62_c00343{bottom:231.040000pt;}
.y5d_c00343{bottom:266.240000pt;}
.y5f_c00343{bottom:268.160000pt;}
.y5c_c00343{bottom:268.800000pt;}
.y5e_c00343{bottom:269.440000pt;}
.y60_c00343{bottom:270.080000pt;}
.y61_c00343{bottom:270.720000pt;}
.y59_c00343{bottom:304.640000pt;}
.y5b_c00343{bottom:305.920000pt;}
.y5a_c00343{bottom:306.560000pt;}
.y58_c00343{bottom:308.480000pt;}
.y57_c00343{bottom:309.120000pt;}
.y42_c00343{bottom:343.680000pt;}
.y55_c00343{bottom:345.600000pt;}
.y41_c00343{bottom:347.520000pt;}
.y56_c00343{bottom:348.160000pt;}
.y3f_c00343{bottom:382.080000pt;}
.y40_c00343{bottom:382.720000pt;}
.y54_c00343{bottom:384.000000pt;}
.y52_c00343{bottom:384.640000pt;}
.y3d_c00343{bottom:385.280000pt;}
.y3e_c00343{bottom:385.920000pt;}
.y53_c00343{bottom:386.560000pt;}
.y3c_c00343{bottom:421.120000pt;}
.y50_c00343{bottom:422.400000pt;}
.y3b_c00343{bottom:424.320000pt;}
.y51_c00343{bottom:424.960000pt;}
.y39_c00343{bottom:458.880000pt;}
.y3a_c00343{bottom:459.520000pt;}
.y4f_c00343{bottom:460.160000pt;}
.y37_c00343{bottom:460.800000pt;}
.y4e_c00343{bottom:461.440000pt;}
.y38_c00343{bottom:462.720000pt;}
.y36_c00343{bottom:497.280000pt;}
.y4b_c00343{bottom:499.200000pt;}
.y4c_c00343{bottom:499.840000pt;}
.y35_c00343{bottom:500.480000pt;}
.y4d_c00343{bottom:501.760000pt;}
.y32_c00343{bottom:535.680000pt;}
.y34_c00343{bottom:536.320000pt;}
.y33_c00343{bottom:536.960000pt;}
.y31_c00343{bottom:538.240000pt;}
.y4a_c00343{bottom:539.520000pt;}
.y30_c00343{bottom:574.080000pt;}
.y2f_c00343{bottom:574.720000pt;}
.y48_c00343{bottom:575.360000pt;}
.y2e_c00343{bottom:576.000000pt;}
.y49_c00343{bottom:577.920000pt;}
.y46_c00343{bottom:613.120000pt;}
.y2d_c00343{bottom:613.760000pt;}
.y2c_c00343{bottom:614.400000pt;}
.y47_c00343{bottom:615.040000pt;}
.y2b_c00343{bottom:641.920000pt;}
.y2a_c00343{bottom:650.880000pt;}
.y43_c00343{bottom:652.160000pt;}
.y29_c00343{bottom:652.800000pt;}
.y45_c00343{bottom:653.440000pt;}
.y44_c00343{bottom:654.720000pt;}
.y28_c00343{bottom:688.640000pt;}
.y25_c00343{bottom:689.280000pt;}
.y26_c00343{bottom:689.920000pt;}
.y24_c00343{bottom:691.200000pt;}
.y27_c00343{bottom:691.840000pt;}
.y23_c00343{bottom:727.040000pt;}
.y20_c00343{bottom:728.320000pt;}
.y1f_c00343{bottom:729.600000pt;}
.y21_c00343{bottom:730.240000pt;}
.y22_c00343{bottom:730.880000pt;}
.y1c_c00343{bottom:755.200000pt;}
.y19_c00343{bottom:756.480000pt;}
.y1b_c00343{bottom:757.120000pt;}
.y18_c00343{bottom:757.760000pt;}
.y1d_c00343{bottom:758.400000pt;}
.y1e_c00343{bottom:759.040000pt;}
.y1a_c00343{bottom:759.680000pt;}
.y11_c00343{bottom:794.880000pt;}
.y10_c00343{bottom:796.160000pt;}
.y17_c00343{bottom:796.800000pt;}
.y12_c00343{bottom:798.080000pt;}
.yd_c00343{bottom:834.560000pt;}
.ye_c00343{bottom:835.200000pt;}
.yf_c00343{bottom:835.840000pt;}
.y9_c00343{bottom:862.080000pt;}
.y16_c00343{bottom:862.720000pt;}
.yc_c00343{bottom:863.360000pt;}
.y8_c00343{bottom:864.000000pt;}
.yb_c00343{bottom:864.640000pt;}
.ya_c00343{bottom:865.920000pt;}
.y15_c00343{bottom:899.840000pt;}
.y7_c00343{bottom:900.480000pt;}
.y5_c00343{bottom:901.120000pt;}
.y14_c00343{bottom:901.760000pt;}
.y4_c00343{bottom:902.400000pt;}
.y6_c00343{bottom:903.680000pt;}
.y2_c00343{bottom:938.880000pt;}
.y3_c00343{bottom:939.520000pt;}
.y13_c00343{bottom:940.160000pt;}
.y1_c00343{bottom:940.800000pt;}
.h7_c00343{height:29.948750pt;}
.hc_c00343{height:32.252500pt;}
.hf_c00343{height:34.556250pt;}
.hb_c00343{height:36.860000pt;}
.h11_c00343{height:39.163750pt;}
.h9_c00343{height:41.467500pt;}
.h6_c00343{height:43.771250pt;}
.he_c00343{height:46.075000pt;}
.hd_c00343{height:48.378750pt;}
.h5_c00343{height:50.682500pt;}
.h2_c00343{height:52.986250pt;}
.ha_c00343{height:55.290000pt;}
.h8_c00343{height:57.593750pt;}
.h4_c00343{height:59.897500pt;}
.h3_c00343{height:62.201250pt;}
.h12_c00343{height:66.808750pt;}
.h10_c00343{height:92.150000pt;}
.h0_c00343{height:1027.200000pt;}
.h1_c00343{height:1027.333333pt;}
.w1_c00343{width:686.666667pt;}
.w0_c00343{width:686.720000pt;}
.x0_c00343{left:0.000000pt;}
.x19_c00343{left:63.360000pt;}
.x1_c00343{left:64.640000pt;}
.x20_c00343{left:129.280000pt;}
.x2_c00343{left:130.560000pt;}
.xb_c00343{left:169.600000pt;}
.x22_c00343{left:170.880000pt;}
.x4_c00343{left:208.000000pt;}
.x2e_c00343{left:215.040000pt;}
.x1c_c00343{left:216.960000pt;}
.x3a_c00343{left:224.640000pt;}
.x7_c00343{left:227.200000pt;}
.x32_c00343{left:243.840000pt;}
.xe_c00343{left:245.760000pt;}
.xc_c00343{left:255.360000pt;}
.x5_c00343{left:256.640000pt;}
.x8_c00343{left:264.960000pt;}
.x23_c00343{left:273.280000pt;}
.x21_c00343{left:275.200000pt;}
.x33_c00343{left:283.520000pt;}
.x3_c00343{left:285.440000pt;}
.xf_c00343{left:293.120000pt;}
.x6_c00343{left:294.400000pt;}
.x24_c00343{left:312.960000pt;}
.x3c_c00343{left:322.560000pt;}
.x34_c00343{left:330.880000pt;}
.x10_c00343{left:332.160000pt;}
.x38_c00343{left:340.480000pt;}
.xd_c00343{left:341.760000pt;}
.x2f_c00343{left:349.440000pt;}
.x3b_c00343{left:359.680000pt;}
.x25_c00343{left:361.600000pt;}
.x1d_c00343{left:380.800000pt;}
.x30_c00343{left:387.840000pt;}
.x9_c00343{left:391.040000pt;}
.x26_c00343{left:398.720000pt;}
.x35_c00343{left:407.040000pt;}
.x1e_c00343{left:408.960000pt;}
.x1a_c00343{left:418.560000pt;}
.x3e_c00343{left:426.240000pt;}
.xa_c00343{left:428.160000pt;}
.x31_c00343{left:435.840000pt;}
.x3d_c00343{left:445.440000pt;}
.x1f_c00343{left:446.720000pt;}
.x36_c00343{left:455.040000pt;}
.x37_c00343{left:493.440000pt;}
.x11_c00343{left:504.960000pt;}
.x29_c00343{left:522.880000pt;}
.x2b_c00343{left:551.040000pt;}
.x16_c00343{left:552.960000pt;}
.x12_c00343{left:554.880000pt;}
.x2c_c00343{left:580.480000pt;}
.x17_c00343{left:582.400000pt;}
.x13_c00343{left:583.680000pt;}
.x39_c00343{left:589.440000pt;}
.x28_c00343{left:590.720000pt;}
.x27_c00343{left:610.560000pt;}
.x18_c00343{left:611.840000pt;}
.x2d_c00343{left:618.880000pt;}
.x1b_c00343{left:620.160000pt;}
.x15_c00343{left:621.440000pt;}
.x2a_c00343{left:637.440000pt;}
.x14_c00343{left:639.360000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7d5ffd6c4a1fde0bd52228da.woff2')format("woff");}.ff1_c00344{font-family:ff1_c00344;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3b_c00344{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00344{transform:matrix(0.232550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232550,0.000000,0.000000,0.250000,0,0);}
.m35_c00344{transform:matrix(0.233050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233050,0.000000,0.000000,0.250000,0,0);}
.m4e_c00344{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m43_c00344{transform:matrix(0.240775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240775,0.000000,0.000000,0.250000,0,0);}
.m4a_c00344{transform:matrix(0.240975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240975,0.000000,0.000000,0.250000,0,0);}
.m3e_c00344{transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);}
.m29_c00344{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m30_c00344{transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);}
.m33_c00344{transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);}
.m12_c00344{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);}
.m2d_c00344{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m26_c00344{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m27_c00344{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m2_c00344{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.mc_c00344{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m17_c00344{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);}
.m3c_c00344{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m31_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);}
.m21_c00344{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00344{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m16_c00344{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m38_c00344{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.ma_c00344{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m20_c00344{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mf_c00344{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00344{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m24_c00344{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m5_c00344{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m46_c00344{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m15_c00344{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m25_c00344{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00344{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m7_c00344{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00344{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1_c00344{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m14_c00344{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m8_c00344{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m22_c00344{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m18_c00344{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m10_c00344{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m23_c00344{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);}
.m34_c00344{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m6_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);}
.m2a_c00344{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m0_c00344{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m42_c00344{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m48_c00344{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);}
.m32_c00344{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00344{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);}
.m2c_c00344{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m11_c00344{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);}
.mb_c00344{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m40_c00344{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m37_c00344{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);}
.m3f_c00344{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_c00344{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m4_c00344{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m9_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);}
.m36_c00344{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.me_c00344{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);}
.m47_c00344{transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);}
.m44_c00344{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m19_c00344{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m3_c00344{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00344{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);}
.m4d_c00344{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00344{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00344{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);}
.md_c00344{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00344{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m28_c00344{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00344{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m39_c00344{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);}
.m41_c00344{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00344{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);}
.m13_c00344{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m45_c00344{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);}
.m49_c00344{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00344{transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);}
.v2_c00344{vertical-align:-8.640000px;}
.v3_c00344{vertical-align:-2.880000px;}
.v0_c00344{vertical-align:0.000000px;}
.v1_c00344{vertical-align:11.520000px;}
.ls2_c00344{letter-spacing:0.000000px;}
.ls1_c00344{letter-spacing:87.974400px;}
.ls0_c00344{letter-spacing:92.199120px;}
.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:-15.152640px;}
.ws1_c00344{word-spacing:0.000000px;}
.fc0_c00344{color:transparent;}
.fsc_c00344{font-size:14.400000px;}
.fsf_c00344{font-size:17.280000px;}
.fse_c00344{font-size:20.160000px;}
.fsb_c00344{font-size:25.920000px;}
.fsd_c00344{font-size:43.200000px;}
.fs8_c00344{font-size:48.960000px;}
.fs3_c00344{font-size:51.840000px;}
.fs6_c00344{font-size:54.720000px;}
.fs4_c00344{font-size:57.600000px;}
.fs5_c00344{font-size:60.480000px;}
.fs7_c00344{font-size:63.360000px;}
.fsa_c00344{font-size:66.240000px;}
.fs1_c00344{font-size:69.120000px;}
.fs9_c00344{font-size:72.000000px;}
.fs2_c00344{font-size:74.880000px;}
.fs0_c00344{font-size:77.760000px;}
.fs10_c00344{font-size:109.440000px;}
.y0_c00344{bottom:0.000000px;}
.y7b_c00344{bottom:40.320000px;}
.y76_c00344{bottom:45.360000px;}
.y77_c00344{bottom:47.520000px;}
.y7a_c00344{bottom:48.240000px;}
.y79_c00344{bottom:49.680000px;}
.y78_c00344{bottom:50.400000px;}
.y75_c00344{bottom:51.120000px;}
.y7c_c00344{bottom:52.560000px;}
.y70_c00344{bottom:89.280000px;}
.y6e_c00344{bottom:90.720000px;}
.y6f_c00344{bottom:92.160000px;}
.y6b_c00344{bottom:121.680000px;}
.y6d_c00344{bottom:124.560000px;}
.y69_c00344{bottom:125.280000px;}
.y68_c00344{bottom:126.000000px;}
.y73_c00344{bottom:126.720000px;}
.y6c_c00344{bottom:127.440000px;}
.y74_c00344{bottom:128.160000px;}
.y6a_c00344{bottom:129.600000px;}
.y64_c00344{bottom:165.600000px;}
.y67_c00344{bottom:166.320000px;}
.y65_c00344{bottom:167.760000px;}
.y66_c00344{bottom:168.480000px;}
.y63_c00344{bottom:169.200000px;}
.y5d_c00344{bottom:198.000000px;}
.y5e_c00344{bottom:198.720000px;}
.y5f_c00344{bottom:200.160000px;}
.y5c_c00344{bottom:201.600000px;}
.y60_c00344{bottom:202.320000px;}
.y62_c00344{bottom:203.040000px;}
.y61_c00344{bottom:204.480000px;}
.y5b_c00344{bottom:241.200000px;}
.y5a_c00344{bottom:244.800000px;}
.y57_c00344{bottom:273.600000px;}
.y58_c00344{bottom:275.760000px;}
.y71_c00344{bottom:276.480000px;}
.y56_c00344{bottom:277.200000px;}
.y59_c00344{bottom:278.640000px;}
.y72_c00344{bottom:279.360000px;}
.y55_c00344{bottom:316.800000px;}
.y51_c00344{bottom:348.480000px;}
.y52_c00344{bottom:350.640000px;}
.y53_c00344{bottom:351.360000px;}
.y50_c00344{bottom:352.080000px;}
.y54_c00344{bottom:354.240000px;}
.y49_c00344{bottom:392.400000px;}
.y47_c00344{bottom:393.840000px;}
.y48_c00344{bottom:396.000000px;}
.y43_c00344{bottom:424.080000px;}
.y4d_c00344{bottom:425.520000px;}
.y44_c00344{bottom:426.240000px;}
.y46_c00344{bottom:426.960000px;}
.y42_c00344{bottom:427.680000px;}
.y45_c00344{bottom:428.400000px;}
.y4e_c00344{bottom:429.120000px;}
.y4f_c00344{bottom:429.840000px;}
.y3e_c00344{bottom:467.280000px;}
.y41_c00344{bottom:468.720000px;}
.y40_c00344{bottom:469.440000px;}
.y3d_c00344{bottom:470.880000px;}
.y3f_c00344{bottom:471.600000px;}
.y3a_c00344{bottom:510.480000px;}
.y3b_c00344{bottom:511.920000px;}
.y39_c00344{bottom:512.640000px;}
.y3c_c00344{bottom:514.080000px;}
.y4b_c00344{bottom:514.800000px;}
.y4c_c00344{bottom:515.520000px;}
.y37_c00344{bottom:553.680000px;}
.y38_c00344{bottom:555.120000px;}
.y4a_c00344{bottom:555.840000px;}
.y35_c00344{bottom:557.280000px;}
.y36_c00344{bottom:560.880000px;}
.y34_c00344{bottom:597.600000px;}
.y32_c00344{bottom:599.040000px;}
.y33_c00344{bottom:601.200000px;}
.y2e_c00344{bottom:630.000000px;}
.y2f_c00344{bottom:630.720000px;}
.y2d_c00344{bottom:631.440000px;}
.y30_c00344{bottom:632.160000px;}
.y31_c00344{bottom:633.600000px;}
.y2c_c00344{bottom:673.920000px;}
.y2b_c00344{bottom:674.640000px;}
.y2a_c00344{bottom:676.800000px;}
.y26_c00344{bottom:705.600000px;}
.y29_c00344{bottom:706.320000px;}
.y27_c00344{bottom:707.040000px;}
.y25_c00344{bottom:707.760000px;}
.y28_c00344{bottom:709.200000px;}
.y21_c00344{bottom:749.520000px;}
.y1e_c00344{bottom:781.200000px;}
.y24_c00344{bottom:781.920000px;}
.y1f_c00344{bottom:782.640000px;}
.y1d_c00344{bottom:784.080000px;}
.y20_c00344{bottom:784.800000px;}
.y1c_c00344{bottom:823.680000px;}
.y19_c00344{bottom:824.400000px;}
.y23_c00344{bottom:825.120000px;}
.y1a_c00344{bottom:825.840000px;}
.y18_c00344{bottom:826.560000px;}
.y1b_c00344{bottom:827.280000px;}
.y14_c00344{bottom:867.600000px;}
.y16_c00344{bottom:868.320000px;}
.y13_c00344{bottom:869.040000px;}
.y15_c00344{bottom:869.760000px;}
.y22_c00344{bottom:870.480000px;}
.y17_c00344{bottom:871.200000px;}
.y12_c00344{bottom:910.800000px;}
.y11_c00344{bottom:914.400000px;}
.ye_c00344{bottom:942.480000px;}
.y10_c00344{bottom:943.200000px;}
.yd_c00344{bottom:943.920000px;}
.yf_c00344{bottom:946.080000px;}
.ya_c00344{bottom:985.680000px;}
.yc_c00344{bottom:986.400000px;}
.y9_c00344{bottom:987.120000px;}
.yb_c00344{bottom:988.560000px;}
.y8_c00344{bottom:1028.880000px;}
.y7_c00344{bottom:1032.480000px;}
.y3_c00344{bottom:1061.280000px;}
.y6_c00344{bottom:1062.000000px;}
.y2_c00344{bottom:1062.720000px;}
.y5_c00344{bottom:1063.440000px;}
.y4_c00344{bottom:1064.880000px;}
.y1_c00344{bottom:1106.640000px;}
.he_c00344{height:12.958594px;}
.h11_c00344{height:15.550313px;}
.h10_c00344{height:18.142031px;}
.hd_c00344{height:23.325469px;}
.hf_c00344{height:38.875781px;}
.ha_c00344{height:44.059219px;}
.h5_c00344{height:46.650937px;}
.h8_c00344{height:49.242656px;}
.h6_c00344{height:51.834375px;}
.h7_c00344{height:54.426094px;}
.h9_c00344{height:57.017812px;}
.hc_c00344{height:59.609531px;}
.h3_c00344{height:62.201250px;}
.hb_c00344{height:64.792969px;}
.h4_c00344{height:67.384687px;}
.h2_c00344{height:69.976406px;}
.h12_c00344{height:98.485312px;}
.h0_c00344{height:1157.760000px;}
.h1_c00344{height:1158.000000px;}
.w0_c00344{width:776.880000px;}
.w1_c00344{width:777.000000px;}
.x0_c00344{left:0.000000px;}
.x2_c00344{left:71.280000px;}
.x1d_c00344{left:72.720000px;}
.x2d_c00344{left:74.160000px;}
.x3a_c00344{left:75.600000px;}
.x20_c00344{left:115.200000px;}
.x21_c00344{left:123.840000px;}
.x1b_c00344{left:144.720000px;}
.x3_c00344{left:146.160000px;}
.xa_c00344{left:189.360000px;}
.x27_c00344{left:199.440000px;}
.x1f_c00344{left:200.880000px;}
.x22_c00344{left:231.120000px;}
.x30_c00344{left:242.640000px;}
.x4_c00344{left:244.080000px;}
.x23_c00344{left:276.480000px;}
.xb_c00344{left:286.560000px;}
.x31_c00344{left:297.360000px;}
.x5_c00344{left:298.800000px;}
.x15_c00344{left:319.680000px;}
.xc_c00344{left:330.480000px;}
.x1c_c00344{left:341.280000px;}
.x32_c00344{left:352.080000px;}
.x3b_c00344{left:360.720000px;}
.x24_c00344{left:362.160000px;}
.x16_c00344{left:373.680000px;}
.x19_c00344{left:382.320000px;}
.x13_c00344{left:384.480000px;}
.x33_c00344{left:393.120000px;}
.x6_c00344{left:394.560000px;}
.x36_c00344{left:404.640000px;}
.xd_c00344{left:416.880000px;}
.x26_c00344{left:426.240000px;}
.x1a_c00344{left:427.680000px;}
.x2e_c00344{left:437.760000px;}
.x7_c00344{left:439.200000px;}
.x1e_c00344{left:448.560000px;}
.x10_c00344{left:450.000000px;}
.x17_c00344{left:458.640000px;}
.x25_c00344{left:460.080000px;}
.x34_c00344{left:469.440000px;}
.xe_c00344{left:470.880000px;}
.x37_c00344{left:480.240000px;}
.x14_c00344{left:481.680000px;}
.x3c_c00344{left:501.120000px;}
.x18_c00344{left:502.560000px;}
.x2b_c00344{left:511.920000px;}
.xf_c00344{left:514.080000px;}
.x35_c00344{left:522.720000px;}
.x8_c00344{left:524.880000px;}
.x2f_c00344{left:533.520000px;}
.x11_c00344{left:535.680000px;}
.x3d_c00344{left:554.400000px;}
.x2a_c00344{left:588.240000px;}
.x9_c00344{left:589.680000px;}
.x38_c00344{left:620.640000px;}
.x28_c00344{left:622.080000px;}
.x39_c00344{left:653.040000px;}
.x2c_c00344{left:663.120000px;}
.x12_c00344{left:664.560000px;}
.x29_c00344{left:695.520000px;}
.x1_c00344{left:697.680000px;}
@media print{
.v2_c00344{vertical-align:-7.680000pt;}
.v3_c00344{vertical-align:-2.560000pt;}
.v0_c00344{vertical-align:0.000000pt;}
.v1_c00344{vertical-align:10.240000pt;}
.ls2_c00344{letter-spacing:0.000000pt;}
.ls1_c00344{letter-spacing:78.199467pt;}
.ls0_c00344{letter-spacing:81.954773pt;}
.ws0_c00344{word-spacing:-13.469013pt;}
.ws1_c00344{word-spacing:0.000000pt;}
.fsc_c00344{font-size:12.800000pt;}
.fsf_c00344{font-size:15.360000pt;}
.fse_c00344{font-size:17.920000pt;}
.fsb_c00344{font-size:23.040000pt;}
.fsd_c00344{font-size:38.400000pt;}
.fs8_c00344{font-size:43.520000pt;}
.fs3_c00344{font-size:46.080000pt;}
.fs6_c00344{font-size:48.640000pt;}
.fs4_c00344{font-size:51.200000pt;}
.fs5_c00344{font-size:53.760000pt;}
.fs7_c00344{font-size:56.320000pt;}
.fsa_c00344{font-size:58.880000pt;}
.fs1_c00344{font-size:61.440000pt;}
.fs9_c00344{font-size:64.000000pt;}
.fs2_c00344{font-size:66.560000pt;}
.fs0_c00344{font-size:69.120000pt;}
.fs10_c00344{font-size:97.280000pt;}
.y0_c00344{bottom:0.000000pt;}
.y7b_c00344{bottom:35.840000pt;}
.y76_c00344{bottom:40.320000pt;}
.y77_c00344{bottom:42.240000pt;}
.y7a_c00344{bottom:42.880000pt;}
.y79_c00344{bottom:44.160000pt;}
.y78_c00344{bottom:44.800000pt;}
.y75_c00344{bottom:45.440000pt;}
.y7c_c00344{bottom:46.720000pt;}
.y70_c00344{bottom:79.360000pt;}
.y6e_c00344{bottom:80.640000pt;}
.y6f_c00344{bottom:81.920000pt;}
.y6b_c00344{bottom:108.160000pt;}
.y6d_c00344{bottom:110.720000pt;}
.y69_c00344{bottom:111.360000pt;}
.y68_c00344{bottom:112.000000pt;}
.y73_c00344{bottom:112.640000pt;}
.y6c_c00344{bottom:113.280000pt;}
.y74_c00344{bottom:113.920000pt;}
.y6a_c00344{bottom:115.200000pt;}
.y64_c00344{bottom:147.200000pt;}
.y67_c00344{bottom:147.840000pt;}
.y65_c00344{bottom:149.120000pt;}
.y66_c00344{bottom:149.760000pt;}
.y63_c00344{bottom:150.400000pt;}
.y5d_c00344{bottom:176.000000pt;}
.y5e_c00344{bottom:176.640000pt;}
.y5f_c00344{bottom:177.920000pt;}
.y5c_c00344{bottom:179.200000pt;}
.y60_c00344{bottom:179.840000pt;}
.y62_c00344{bottom:180.480000pt;}
.y61_c00344{bottom:181.760000pt;}
.y5b_c00344{bottom:214.400000pt;}
.y5a_c00344{bottom:217.600000pt;}
.y57_c00344{bottom:243.200000pt;}
.y58_c00344{bottom:245.120000pt;}
.y71_c00344{bottom:245.760000pt;}
.y56_c00344{bottom:246.400000pt;}
.y59_c00344{bottom:247.680000pt;}
.y72_c00344{bottom:248.320000pt;}
.y55_c00344{bottom:281.600000pt;}
.y51_c00344{bottom:309.760000pt;}
.y52_c00344{bottom:311.680000pt;}
.y53_c00344{bottom:312.320000pt;}
.y50_c00344{bottom:312.960000pt;}
.y54_c00344{bottom:314.880000pt;}
.y49_c00344{bottom:348.800000pt;}
.y47_c00344{bottom:350.080000pt;}
.y48_c00344{bottom:352.000000pt;}
.y43_c00344{bottom:376.960000pt;}
.y4d_c00344{bottom:378.240000pt;}
.y44_c00344{bottom:378.880000pt;}
.y46_c00344{bottom:379.520000pt;}
.y42_c00344{bottom:380.160000pt;}
.y45_c00344{bottom:380.800000pt;}
.y4e_c00344{bottom:381.440000pt;}
.y4f_c00344{bottom:382.080000pt;}
.y3e_c00344{bottom:415.360000pt;}
.y41_c00344{bottom:416.640000pt;}
.y40_c00344{bottom:417.280000pt;}
.y3d_c00344{bottom:418.560000pt;}
.y3f_c00344{bottom:419.200000pt;}
.y3a_c00344{bottom:453.760000pt;}
.y3b_c00344{bottom:455.040000pt;}
.y39_c00344{bottom:455.680000pt;}
.y3c_c00344{bottom:456.960000pt;}
.y4b_c00344{bottom:457.600000pt;}
.y4c_c00344{bottom:458.240000pt;}
.y37_c00344{bottom:492.160000pt;}
.y38_c00344{bottom:493.440000pt;}
.y4a_c00344{bottom:494.080000pt;}
.y35_c00344{bottom:495.360000pt;}
.y36_c00344{bottom:498.560000pt;}
.y34_c00344{bottom:531.200000pt;}
.y32_c00344{bottom:532.480000pt;}
.y33_c00344{bottom:534.400000pt;}
.y2e_c00344{bottom:560.000000pt;}
.y2f_c00344{bottom:560.640000pt;}
.y2d_c00344{bottom:561.280000pt;}
.y30_c00344{bottom:561.920000pt;}
.y31_c00344{bottom:563.200000pt;}
.y2c_c00344{bottom:599.040000pt;}
.y2b_c00344{bottom:599.680000pt;}
.y2a_c00344{bottom:601.600000pt;}
.y26_c00344{bottom:627.200000pt;}
.y29_c00344{bottom:627.840000pt;}
.y27_c00344{bottom:628.480000pt;}
.y25_c00344{bottom:629.120000pt;}
.y28_c00344{bottom:630.400000pt;}
.y21_c00344{bottom:666.240000pt;}
.y1e_c00344{bottom:694.400000pt;}
.y24_c00344{bottom:695.040000pt;}
.y1f_c00344{bottom:695.680000pt;}
.y1d_c00344{bottom:696.960000pt;}
.y20_c00344{bottom:697.600000pt;}
.y1c_c00344{bottom:732.160000pt;}
.y19_c00344{bottom:732.800000pt;}
.y23_c00344{bottom:733.440000pt;}
.y1a_c00344{bottom:734.080000pt;}
.y18_c00344{bottom:734.720000pt;}
.y1b_c00344{bottom:735.360000pt;}
.y14_c00344{bottom:771.200000pt;}
.y16_c00344{bottom:771.840000pt;}
.y13_c00344{bottom:772.480000pt;}
.y15_c00344{bottom:773.120000pt;}
.y22_c00344{bottom:773.760000pt;}
.y17_c00344{bottom:774.400000pt;}
.y12_c00344{bottom:809.600000pt;}
.y11_c00344{bottom:812.800000pt;}
.ye_c00344{bottom:837.760000pt;}
.y10_c00344{bottom:838.400000pt;}
.yd_c00344{bottom:839.040000pt;}
.yf_c00344{bottom:840.960000pt;}
.ya_c00344{bottom:876.160000pt;}
.yc_c00344{bottom:876.800000pt;}
.y9_c00344{bottom:877.440000pt;}
.yb_c00344{bottom:878.720000pt;}
.y8_c00344{bottom:914.560000pt;}
.y7_c00344{bottom:917.760000pt;}
.y3_c00344{bottom:943.360000pt;}
.y6_c00344{bottom:944.000000pt;}
.y2_c00344{bottom:944.640000pt;}
.y5_c00344{bottom:945.280000pt;}
.y4_c00344{bottom:946.560000pt;}
.y1_c00344{bottom:983.680000pt;}
.he_c00344{height:11.518750pt;}
.h11_c00344{height:13.822500pt;}
.h10_c00344{height:16.126250pt;}
.hd_c00344{height:20.733750pt;}
.hf_c00344{height:34.556250pt;}
.ha_c00344{height:39.163750pt;}
.h5_c00344{height:41.467500pt;}
.h8_c00344{height:43.771250pt;}
.h6_c00344{height:46.075000pt;}
.h7_c00344{height:48.378750pt;}
.h9_c00344{height:50.682500pt;}
.hc_c00344{height:52.986250pt;}
.h3_c00344{height:55.290000pt;}
.hb_c00344{height:57.593750pt;}
.h4_c00344{height:59.897500pt;}
.h2_c00344{height:62.201250pt;}
.h12_c00344{height:87.542500pt;}
.h0_c00344{height:1029.120000pt;}
.h1_c00344{height:1029.333333pt;}
.w0_c00344{width:690.560000pt;}
.w1_c00344{width:690.666667pt;}
.x0_c00344{left:0.000000pt;}
.x2_c00344{left:63.360000pt;}
.x1d_c00344{left:64.640000pt;}
.x2d_c00344{left:65.920000pt;}
.x3a_c00344{left:67.200000pt;}
.x20_c00344{left:102.400000pt;}
.x21_c00344{left:110.080000pt;}
.x1b_c00344{left:128.640000pt;}
.x3_c00344{left:129.920000pt;}
.xa_c00344{left:168.320000pt;}
.x27_c00344{left:177.280000pt;}
.x1f_c00344{left:178.560000pt;}
.x22_c00344{left:205.440000pt;}
.x30_c00344{left:215.680000pt;}
.x4_c00344{left:216.960000pt;}
.x23_c00344{left:245.760000pt;}
.xb_c00344{left:254.720000pt;}
.x31_c00344{left:264.320000pt;}
.x5_c00344{left:265.600000pt;}
.x15_c00344{left:284.160000pt;}
.xc_c00344{left:293.760000pt;}
.x1c_c00344{left:303.360000pt;}
.x32_c00344{left:312.960000pt;}
.x3b_c00344{left:320.640000pt;}
.x24_c00344{left:321.920000pt;}
.x16_c00344{left:332.160000pt;}
.x19_c00344{left:339.840000pt;}
.x13_c00344{left:341.760000pt;}
.x33_c00344{left:349.440000pt;}
.x6_c00344{left:350.720000pt;}
.x36_c00344{left:359.680000pt;}
.xd_c00344{left:370.560000pt;}
.x26_c00344{left:378.880000pt;}
.x1a_c00344{left:380.160000pt;}
.x2e_c00344{left:389.120000pt;}
.x7_c00344{left:390.400000pt;}
.x1e_c00344{left:398.720000pt;}
.x10_c00344{left:400.000000pt;}
.x17_c00344{left:407.680000pt;}
.x25_c00344{left:408.960000pt;}
.x34_c00344{left:417.280000pt;}
.xe_c00344{left:418.560000pt;}
.x37_c00344{left:426.880000pt;}
.x14_c00344{left:428.160000pt;}
.x3c_c00344{left:445.440000pt;}
.x18_c00344{left:446.720000pt;}
.x2b_c00344{left:455.040000pt;}
.xf_c00344{left:456.960000pt;}
.x35_c00344{left:464.640000pt;}
.x8_c00344{left:466.560000pt;}
.x2f_c00344{left:474.240000pt;}
.x11_c00344{left:476.160000pt;}
.x3d_c00344{left:492.800000pt;}
.x2a_c00344{left:522.880000pt;}
.x9_c00344{left:524.160000pt;}
.x38_c00344{left:551.680000pt;}
.x28_c00344{left:552.960000pt;}
.x39_c00344{left:580.480000pt;}
.x2c_c00344{left:589.440000pt;}
.x12_c00344{left:590.720000pt;}
.x29_c00344{left:618.240000pt;}
.x1_c00344{left:620.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2af78e80f33cbc7da76bd1fe.woff2')format("woff");}.ff1_c00345{font-family:ff1_c00345;line-height:1.109863;font-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_c00345{transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);}
.m14_c00345{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m47_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);}
.m3b_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);}
.m9_c00345{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);}
.m3e_c00345{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.mc_c00345{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m42_c00345{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);}
.m45_c00345{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00345{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.ma_c00345{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);}
.m3c_c00345{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m43_c00345{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00345{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);}
.m33_c00345{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00345{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m3_c00345{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m19_c00345{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m31_c00345{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m25_c00345{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1_c00345{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m37_c00345{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m21_c00345{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m48_c00345{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m5_c00345{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m17_c00345{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m46_c00345{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m13_c00345{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mf_c00345{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m10_c00345{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m41_c00345{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m16_c00345{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m24_c00345{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m18_c00345{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);}
.m49_c00345{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m44_c00345{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m15_c00345{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m6_c00345{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);}
.m32_c00345{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00345{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_c00345{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00345{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);}
.m0_c00345{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m12_c00345{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);}
.m27_c00345{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m23_c00345{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);}
.m2c_c00345{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00345{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);}
.m1f_c00345{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m2_c00345{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);}
.m39_c00345{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);}
.m20_c00345{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00345{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m30_c00345{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m26_c00345{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m22_c00345{transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00345{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);}
.m2e_c00345{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m36_c00345{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);}
.m28_c00345{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.md_c00345{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);}
.m1d_c00345{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m38_c00345{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00345{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00345{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);}
.m2a_c00345{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m29_c00345{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);}
.m8_c00345{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m7_c00345{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);}
.m34_c00345{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m11_c00345{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m4_c00345{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);}
.m35_c00345{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.me_c00345{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.v4_c00345{vertical-align:-11.520000px;}
.v1_c00345{vertical-align:-5.760000px;}
.v0_c00345{vertical-align:0.000000px;}
.v3_c00345{vertical-align:2.880000px;}
.v2_c00345{vertical-align:8.640000px;}
.ls1_c00345{letter-spacing:0.000000px;}
.ls0_c00345{letter-spacing:90.638400px;}
.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;}
}
.ws6_c00345{word-spacing:0.000000px;}
.ws3_c00345{word-spacing:8.131200px;}
.ws0_c00345{word-spacing:13.136947px;}
.ws2_c00345{word-spacing:13.140000px;}
.ws4_c00345{word-spacing:22.367981px;}
.ws1_c00345{word-spacing:47.598000px;}
.ws5_c00345{word-spacing:48.538800px;}
.fc0_c00345{color:transparent;}
.fsd_c00345{font-size:37.440000px;}
.fsc_c00345{font-size:40.320000px;}
.fs7_c00345{font-size:46.080000px;}
.fs4_c00345{font-size:48.960000px;}
.fs2_c00345{font-size:51.840000px;}
.fsa_c00345{font-size:54.720000px;}
.fs9_c00345{font-size:57.600000px;}
.fs0_c00345{font-size:60.480000px;}
.fs6_c00345{font-size:63.360000px;}
.fsb_c00345{font-size:66.240000px;}
.fs3_c00345{font-size:69.120000px;}
.fs5_c00345{font-size:72.000000px;}
.fs1_c00345{font-size:74.880000px;}
.fs8_c00345{font-size:77.760000px;}
.fse_c00345{font-size:103.680000px;}
.y0_c00345{bottom:0.000000px;}
.y51_c00345{bottom:19.440000px;}
.y52_c00345{bottom:20.160000px;}
.y50_c00345{bottom:22.320000px;}
.y71_c00345{bottom:24.480000px;}
.y72_c00345{bottom:25.200000px;}
.y4e_c00345{bottom:61.200000px;}
.y4d_c00345{bottom:64.080000px;}
.y4f_c00345{bottom:64.800000px;}
.y70_c00345{bottom:67.680000px;}
.y4a_c00345{bottom:103.680000px;}
.y4c_c00345{bottom:104.400000px;}
.y4b_c00345{bottom:106.560000px;}
.y49_c00345{bottom:107.280000px;}
.y6f_c00345{bottom:110.160000px;}
.y47_c00345{bottom:146.880000px;}
.y48_c00345{bottom:147.600000px;}
.y46_c00345{bottom:150.480000px;}
.y6e_c00345{bottom:151.200000px;}
.y6d_c00345{bottom:152.640000px;}
.y43_c00345{bottom:190.080000px;}
.y45_c00345{bottom:190.800000px;}
.y44_c00345{bottom:192.240000px;}
.y6b_c00345{bottom:192.960000px;}
.y42_c00345{bottom:193.680000px;}
.y6c_c00345{bottom:195.840000px;}
.y3f_c00345{bottom:233.280000px;}
.y40_c00345{bottom:234.000000px;}
.y3e_c00345{bottom:236.880000px;}
.y41_c00345{bottom:237.600000px;}
.y6a_c00345{bottom:239.040000px;}
.y3d_c00345{bottom:276.480000px;}
.y3c_c00345{bottom:279.360000px;}
.y69_c00345{bottom:280.080000px;}
.y68_c00345{bottom:280.800000px;}
.y3b_c00345{bottom:319.680000px;}
.y3a_c00345{bottom:322.560000px;}
.y65_c00345{bottom:323.280000px;}
.y67_c00345{bottom:324.720000px;}
.y66_c00345{bottom:325.440000px;}
.y39_c00345{bottom:362.880000px;}
.y38_c00345{bottom:365.760000px;}
.y64_c00345{bottom:366.480000px;}
.y63_c00345{bottom:368.640000px;}
.y37_c00345{bottom:406.800000px;}
.y36_c00345{bottom:408.960000px;}
.y61_c00345{bottom:410.400000px;}
.y55_c00345{bottom:411.120000px;}
.y62_c00345{bottom:411.840000px;}
.y34_c00345{bottom:451.440000px;}
.y33_c00345{bottom:452.160000px;}
.y32_c00345{bottom:452.880000px;}
.y35_c00345{bottom:453.600000px;}
.y31_c00345{bottom:486.000000px;}
.y30_c00345{bottom:493.920000px;}
.y2e_c00345{bottom:494.640000px;}
.y5f_c00345{bottom:496.080000px;}
.y2f_c00345{bottom:496.800000px;}
.y60_c00345{bottom:497.520000px;}
.y2c_c00345{bottom:537.120000px;}
.y2d_c00345{bottom:537.840000px;}
.y2a_c00345{bottom:538.560000px;}
.y2b_c00345{bottom:540.000000px;}
.y5e_c00345{bottom:542.160000px;}
.y29_c00345{bottom:581.040000px;}
.y5c_c00345{bottom:581.760000px;}
.y27_c00345{bottom:582.480000px;}
.y28_c00345{bottom:583.200000px;}
.y5d_c00345{bottom:583.920000px;}
.y26_c00345{bottom:616.320000px;}
.y23_c00345{bottom:623.520000px;}
.y22_c00345{bottom:624.240000px;}
.y5b_c00345{bottom:624.960000px;}
.y24_c00345{bottom:625.680000px;}
.y25_c00345{bottom:626.400000px;}
.y5a_c00345{bottom:627.840000px;}
.y21_c00345{bottom:666.000000px;}
.y58_c00345{bottom:666.720000px;}
.y20_c00345{bottom:667.440000px;}
.y59_c00345{bottom:669.600000px;}
.y1f_c00345{bottom:709.200000px;}
.y56_c00345{bottom:709.920000px;}
.y1e_c00345{bottom:710.640000px;}
.y57_c00345{bottom:711.360000px;}
.y1d_c00345{bottom:751.680000px;}
.y1c_c00345{bottom:755.280000px;}
.y19_c00345{bottom:784.080000px;}
.y1b_c00345{bottom:784.800000px;}
.y17_c00345{bottom:785.520000px;}
.y1a_c00345{bottom:786.960000px;}
.y18_c00345{bottom:787.680000px;}
.y16_c00345{bottom:826.560000px;}
.y53_c00345{bottom:827.280000px;}
.y14_c00345{bottom:828.000000px;}
.y54_c00345{bottom:828.720000px;}
.y15_c00345{bottom:830.880000px;}
.y13_c00345{bottom:869.760000px;}
.y11_c00345{bottom:871.200000px;}
.y12_c00345{bottom:873.360000px;}
.y10_c00345{bottom:874.080000px;}
.ye_c00345{bottom:902.880000px;}
.yc_c00345{bottom:903.600000px;}
.yf_c00345{bottom:905.760000px;}
.yd_c00345{bottom:906.480000px;}
.y8_c00345{bottom:945.360000px;}
.yb_c00345{bottom:946.080000px;}
.y9_c00345{bottom:946.800000px;}
.y6_c00345{bottom:947.520000px;}
.ya_c00345{bottom:948.960000px;}
.y7_c00345{bottom:949.680000px;}
.y5_c00345{bottom:989.280000px;}
.y4_c00345{bottom:992.880000px;}
.y2_c00345{bottom:1021.680000px;}
.y1_c00345{bottom:1022.400000px;}
.y3_c00345{bottom:1024.560000px;}
.hf_c00345{height:33.692344px;}
.he_c00345{height:36.284062px;}
.h9_c00345{height:41.467500px;}
.h6_c00345{height:44.059219px;}
.h4_c00345{height:46.650937px;}
.hc_c00345{height:49.242656px;}
.h13_c00345{height:49.530938px;}
.h14_c00345{height:50.681250px;}
.hb_c00345{height:51.834375px;}
.h2_c00345{height:54.426094px;}
.h11_c00345{height:56.441250px;}
.h8_c00345{height:57.017812px;}
.hd_c00345{height:59.609531px;}
.h12_c00345{height:60.474375px;}
.h5_c00345{height:62.201250px;}
.h7_c00345{height:64.792969px;}
.h3_c00345{height:67.384687px;}
.ha_c00345{height:69.976406px;}
.h10_c00345{height:93.301875px;}
.h0_c00345{height:1157.760000px;}
.h1_c00345{height:1158.000000px;}
.w0_c00345{width:776.880000px;}
.w1_c00345{width:777.000000px;}
.x0_c00345{left:0.000000px;}
.x1_c00345{left:77.040000px;}
.x22_c00345{left:78.480000px;}
.x26_c00345{left:79.920000px;}
.x5_c00345{left:151.200000px;}
.x2_c00345{left:153.360000px;}
.x7_c00345{left:194.400000px;}
.x1f_c00345{left:195.840000px;}
.x6_c00345{left:205.920000px;}
.x24_c00345{left:239.040000px;}
.x20_c00345{left:248.400000px;}
.x8_c00345{left:250.560000px;}
.x16_c00345{left:259.920000px;}
.x25_c00345{left:293.760000px;}
.xd_c00345{left:302.400000px;}
.x13_c00345{left:304.560000px;}
.x17_c00345{left:313.920000px;}
.x12_c00345{left:334.800000px;}
.xe_c00345{left:347.760000px;}
.x1c_c00345{left:357.120000px;}
.x14_c00345{left:358.560000px;}
.x21_c00345{left:367.920000px;}
.x3_c00345{left:379.440000px;}
.x15_c00345{left:401.040000px;}
.x18_c00345{left:411.840000px;}
.x4_c00345{left:422.640000px;}
.xf_c00345{left:433.440000px;}
.x23_c00345{left:443.520000px;}
.x1d_c00345{left:455.760000px;}
.x19_c00345{left:465.120000px;}
.x1e_c00345{left:476.640000px;}
.x10_c00345{left:488.160000px;}
.x1a_c00345{left:519.120000px;}
.x1b_c00345{left:530.640000px;}
.x2f_c00345{left:563.760000px;}
.x2e_c00345{left:573.120000px;}
.x27_c00345{left:574.560000px;}
.x31_c00345{left:594.720000px;}
.x11_c00345{left:596.160000px;}
.x30_c00345{left:604.800000px;}
.x28_c00345{left:606.960000px;}
.x2d_c00345{left:626.400000px;}
.x2b_c00345{left:627.840000px;}
.x9_c00345{left:629.280000px;}
.x2c_c00345{left:659.520000px;}
.xb_c00345{left:661.680000px;}
.x32_c00345{left:670.320000px;}
.x29_c00345{left:693.360000px;}
.x2a_c00345{left:702.000000px;}
.xa_c00345{left:703.440000px;}
.xc_c00345{left:724.320000px;}
@media print{
.v4_c00345{vertical-align:-10.240000pt;}
.v1_c00345{vertical-align:-5.120000pt;}
.v0_c00345{vertical-align:0.000000pt;}
.v3_c00345{vertical-align:2.560000pt;}
.v2_c00345{vertical-align:7.680000pt;}
.ls1_c00345{letter-spacing:0.000000pt;}
.ls0_c00345{letter-spacing:80.567467pt;}
.ws6_c00345{word-spacing:0.000000pt;}
.ws3_c00345{word-spacing:7.227733pt;}
.ws0_c00345{word-spacing:11.677286pt;}
.ws2_c00345{word-spacing:11.680000pt;}
.ws4_c00345{word-spacing:19.882650pt;}
.ws1_c00345{word-spacing:42.309333pt;}
.ws5_c00345{word-spacing:43.145600pt;}
.fsd_c00345{font-size:33.280000pt;}
.fsc_c00345{font-size:35.840000pt;}
.fs7_c00345{font-size:40.960000pt;}
.fs4_c00345{font-size:43.520000pt;}
.fs2_c00345{font-size:46.080000pt;}
.fsa_c00345{font-size:48.640000pt;}
.fs9_c00345{font-size:51.200000pt;}
.fs0_c00345{font-size:53.760000pt;}
.fs6_c00345{font-size:56.320000pt;}
.fsb_c00345{font-size:58.880000pt;}
.fs3_c00345{font-size:61.440000pt;}
.fs5_c00345{font-size:64.000000pt;}
.fs1_c00345{font-size:66.560000pt;}
.fs8_c00345{font-size:69.120000pt;}
.fse_c00345{font-size:92.160000pt;}
.y0_c00345{bottom:0.000000pt;}
.y51_c00345{bottom:17.280000pt;}
.y52_c00345{bottom:17.920000pt;}
.y50_c00345{bottom:19.840000pt;}
.y71_c00345{bottom:21.760000pt;}
.y72_c00345{bottom:22.400000pt;}
.y4e_c00345{bottom:54.400000pt;}
.y4d_c00345{bottom:56.960000pt;}
.y4f_c00345{bottom:57.600000pt;}
.y70_c00345{bottom:60.160000pt;}
.y4a_c00345{bottom:92.160000pt;}
.y4c_c00345{bottom:92.800000pt;}
.y4b_c00345{bottom:94.720000pt;}
.y49_c00345{bottom:95.360000pt;}
.y6f_c00345{bottom:97.920000pt;}
.y47_c00345{bottom:130.560000pt;}
.y48_c00345{bottom:131.200000pt;}
.y46_c00345{bottom:133.760000pt;}
.y6e_c00345{bottom:134.400000pt;}
.y6d_c00345{bottom:135.680000pt;}
.y43_c00345{bottom:168.960000pt;}
.y45_c00345{bottom:169.600000pt;}
.y44_c00345{bottom:170.880000pt;}
.y6b_c00345{bottom:171.520000pt;}
.y42_c00345{bottom:172.160000pt;}
.y6c_c00345{bottom:174.080000pt;}
.y3f_c00345{bottom:207.360000pt;}
.y40_c00345{bottom:208.000000pt;}
.y3e_c00345{bottom:210.560000pt;}
.y41_c00345{bottom:211.200000pt;}
.y6a_c00345{bottom:212.480000pt;}
.y3d_c00345{bottom:245.760000pt;}
.y3c_c00345{bottom:248.320000pt;}
.y69_c00345{bottom:248.960000pt;}
.y68_c00345{bottom:249.600000pt;}
.y3b_c00345{bottom:284.160000pt;}
.y3a_c00345{bottom:286.720000pt;}
.y65_c00345{bottom:287.360000pt;}
.y67_c00345{bottom:288.640000pt;}
.y66_c00345{bottom:289.280000pt;}
.y39_c00345{bottom:322.560000pt;}
.y38_c00345{bottom:325.120000pt;}
.y64_c00345{bottom:325.760000pt;}
.y63_c00345{bottom:327.680000pt;}
.y37_c00345{bottom:361.600000pt;}
.y36_c00345{bottom:363.520000pt;}
.y61_c00345{bottom:364.800000pt;}
.y55_c00345{bottom:365.440000pt;}
.y62_c00345{bottom:366.080000pt;}
.y34_c00345{bottom:401.280000pt;}
.y33_c00345{bottom:401.920000pt;}
.y32_c00345{bottom:402.560000pt;}
.y35_c00345{bottom:403.200000pt;}
.y31_c00345{bottom:432.000000pt;}
.y30_c00345{bottom:439.040000pt;}
.y2e_c00345{bottom:439.680000pt;}
.y5f_c00345{bottom:440.960000pt;}
.y2f_c00345{bottom:441.600000pt;}
.y60_c00345{bottom:442.240000pt;}
.y2c_c00345{bottom:477.440000pt;}
.y2d_c00345{bottom:478.080000pt;}
.y2a_c00345{bottom:478.720000pt;}
.y2b_c00345{bottom:480.000000pt;}
.y5e_c00345{bottom:481.920000pt;}
.y29_c00345{bottom:516.480000pt;}
.y5c_c00345{bottom:517.120000pt;}
.y27_c00345{bottom:517.760000pt;}
.y28_c00345{bottom:518.400000pt;}
.y5d_c00345{bottom:519.040000pt;}
.y26_c00345{bottom:547.840000pt;}
.y23_c00345{bottom:554.240000pt;}
.y22_c00345{bottom:554.880000pt;}
.y5b_c00345{bottom:555.520000pt;}
.y24_c00345{bottom:556.160000pt;}
.y25_c00345{bottom:556.800000pt;}
.y5a_c00345{bottom:558.080000pt;}
.y21_c00345{bottom:592.000000pt;}
.y58_c00345{bottom:592.640000pt;}
.y20_c00345{bottom:593.280000pt;}
.y59_c00345{bottom:595.200000pt;}
.y1f_c00345{bottom:630.400000pt;}
.y56_c00345{bottom:631.040000pt;}
.y1e_c00345{bottom:631.680000pt;}
.y57_c00345{bottom:632.320000pt;}
.y1d_c00345{bottom:668.160000pt;}
.y1c_c00345{bottom:671.360000pt;}
.y19_c00345{bottom:696.960000pt;}
.y1b_c00345{bottom:697.600000pt;}
.y17_c00345{bottom:698.240000pt;}
.y1a_c00345{bottom:699.520000pt;}
.y18_c00345{bottom:700.160000pt;}
.y16_c00345{bottom:734.720000pt;}
.y53_c00345{bottom:735.360000pt;}
.y14_c00345{bottom:736.000000pt;}
.y54_c00345{bottom:736.640000pt;}
.y15_c00345{bottom:738.560000pt;}
.y13_c00345{bottom:773.120000pt;}
.y11_c00345{bottom:774.400000pt;}
.y12_c00345{bottom:776.320000pt;}
.y10_c00345{bottom:776.960000pt;}
.ye_c00345{bottom:802.560000pt;}
.yc_c00345{bottom:803.200000pt;}
.yf_c00345{bottom:805.120000pt;}
.yd_c00345{bottom:805.760000pt;}
.y8_c00345{bottom:840.320000pt;}
.yb_c00345{bottom:840.960000pt;}
.y9_c00345{bottom:841.600000pt;}
.y6_c00345{bottom:842.240000pt;}
.ya_c00345{bottom:843.520000pt;}
.y7_c00345{bottom:844.160000pt;}
.y5_c00345{bottom:879.360000pt;}
.y4_c00345{bottom:882.560000pt;}
.y2_c00345{bottom:908.160000pt;}
.y1_c00345{bottom:908.800000pt;}
.y3_c00345{bottom:910.720000pt;}
.hf_c00345{height:29.948750pt;}
.he_c00345{height:32.252500pt;}
.h9_c00345{height:36.860000pt;}
.h6_c00345{height:39.163750pt;}
.h4_c00345{height:41.467500pt;}
.hc_c00345{height:43.771250pt;}
.h13_c00345{height:44.027500pt;}
.h14_c00345{height:45.050000pt;}
.hb_c00345{height:46.075000pt;}
.h2_c00345{height:48.378750pt;}
.h11_c00345{height:50.170000pt;}
.h8_c00345{height:50.682500pt;}
.hd_c00345{height:52.986250pt;}
.h12_c00345{height:53.755000pt;}
.h5_c00345{height:55.290000pt;}
.h7_c00345{height:57.593750pt;}
.h3_c00345{height:59.897500pt;}
.ha_c00345{height:62.201250pt;}
.h10_c00345{height:82.935000pt;}
.h0_c00345{height:1029.120000pt;}
.h1_c00345{height:1029.333333pt;}
.w0_c00345{width:690.560000pt;}
.w1_c00345{width:690.666667pt;}
.x0_c00345{left:0.000000pt;}
.x1_c00345{left:68.480000pt;}
.x22_c00345{left:69.760000pt;}
.x26_c00345{left:71.040000pt;}
.x5_c00345{left:134.400000pt;}
.x2_c00345{left:136.320000pt;}
.x7_c00345{left:172.800000pt;}
.x1f_c00345{left:174.080000pt;}
.x6_c00345{left:183.040000pt;}
.x24_c00345{left:212.480000pt;}
.x20_c00345{left:220.800000pt;}
.x8_c00345{left:222.720000pt;}
.x16_c00345{left:231.040000pt;}
.x25_c00345{left:261.120000pt;}
.xd_c00345{left:268.800000pt;}
.x13_c00345{left:270.720000pt;}
.x17_c00345{left:279.040000pt;}
.x12_c00345{left:297.600000pt;}
.xe_c00345{left:309.120000pt;}
.x1c_c00345{left:317.440000pt;}
.x14_c00345{left:318.720000pt;}
.x21_c00345{left:327.040000pt;}
.x3_c00345{left:337.280000pt;}
.x15_c00345{left:356.480000pt;}
.x18_c00345{left:366.080000pt;}
.x4_c00345{left:375.680000pt;}
.xf_c00345{left:385.280000pt;}
.x23_c00345{left:394.240000pt;}
.x1d_c00345{left:405.120000pt;}
.x19_c00345{left:413.440000pt;}
.x1e_c00345{left:423.680000pt;}
.x10_c00345{left:433.920000pt;}
.x1a_c00345{left:461.440000pt;}
.x1b_c00345{left:471.680000pt;}
.x2f_c00345{left:501.120000pt;}
.x2e_c00345{left:509.440000pt;}
.x27_c00345{left:510.720000pt;}
.x31_c00345{left:528.640000pt;}
.x11_c00345{left:529.920000pt;}
.x30_c00345{left:537.600000pt;}
.x28_c00345{left:539.520000pt;}
.x2d_c00345{left:556.800000pt;}
.x2b_c00345{left:558.080000pt;}
.x9_c00345{left:559.360000pt;}
.x2c_c00345{left:586.240000pt;}
.xb_c00345{left:588.160000pt;}
.x32_c00345{left:595.840000pt;}
.x29_c00345{left:616.320000pt;}
.x2a_c00345{left:624.000000pt;}
.xa_c00345{left:625.280000pt;}
.xc_c00345{left:643.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4ab49a9a88b1193fc65c4dc1.woff2')format("woff");}.ff1_c00346{font-family:ff1_c00346;line-height:1.109863;font-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_c00346{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m37_c00346{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);}
.m2b_c00346{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m1_c00346{transform:matrix(0.238175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238175,0.000000,0.000000,0.250000,0,0);}
.ma_c00346{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m38_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);}
.m42_c00346{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.me_c00346{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.mf_c00346{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00346{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m27_c00346{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);}
.m2f_c00346{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m8_c00346{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m34_c00346{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m15_c00346{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m20_c00346{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m7_c00346{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m39_c00346{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mb_c00346{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.md_c00346{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m5_c00346{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);}
.m40_c00346{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m12_c00346{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m36_c00346{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m9_c00346{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m29_c00346{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m22_c00346{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00346{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00346{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m11_c00346{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mc_c00346{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m21_c00346{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m24_c00346{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00346{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m33_c00346{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);}
.m3c_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);}
.m2e_c00346{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00346{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m2_c00346{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00346{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m35_c00346{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m31_c00346{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m6_c00346{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m19_c00346{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m0_c00346{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m23_c00346{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00346{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m16_c00346{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m26_c00346{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);}
.m2d_c00346{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_c00346{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00346{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00346{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);}
.m44_c00346{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m4_c00346{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);}
.m13_c00346{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m14_c00346{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00346{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m10_c00346{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m17_c00346{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m25_c00346{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);}
.m28_c00346{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m3_c00346{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);}
.m30_c00346{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00346{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m18_c00346{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);}
.m41_c00346{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00346{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m43_c00346{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);}
.m45_c00346{transform:matrix(0.712500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.712500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.712500,0.000000,0.000000,0.250000,0,0);}
.v1_c00346{vertical-align:-11.520000px;}
.v2_c00346{vertical-align:-2.880000px;}
.v0_c00346{vertical-align:0.000000px;}
.v3_c00346{vertical-align:5.760000px;}
.ls1_c00346{letter-spacing:0.000000px;}
.ls0_c00346{letter-spacing:83.257680px;}
.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;}
}
.ws2_c00346{word-spacing:-1.702320px;}
.ws1_c00346{word-spacing:-0.621120px;}
.ws3_c00346{word-spacing:0.000000px;}
.ws0_c00346{word-spacing:18.082195px;}
.fc0_c00346{color:transparent;}
.fs9_c00346{font-size:37.440000px;}
.fsb_c00346{font-size:46.080000px;}
.fs3_c00346{font-size:48.960000px;}
.fs2_c00346{font-size:51.840000px;}
.fs8_c00346{font-size:54.720000px;}
.fs6_c00346{font-size:57.600000px;}
.fs0_c00346{font-size:60.480000px;}
.fsa_c00346{font-size:63.360000px;}
.fs7_c00346{font-size:66.240000px;}
.fs5_c00346{font-size:69.120000px;}
.fsc_c00346{font-size:72.000000px;}
.fs4_c00346{font-size:74.880000px;}
.fs1_c00346{font-size:77.760000px;}
.fsd_c00346{font-size:80.640000px;}
.y0_c00346{bottom:0.000000px;}
.y77_c00346{bottom:48.240000px;}
.y79_c00346{bottom:48.960000px;}
.y76_c00346{bottom:49.680000px;}
.y78_c00346{bottom:51.120000px;}
.y70_c00346{bottom:79.200000px;}
.y71_c00346{bottom:80.640000px;}
.y73_c00346{bottom:82.080000px;}
.y75_c00346{bottom:82.800000px;}
.y6f_c00346{bottom:83.520000px;}
.y72_c00346{bottom:84.240000px;}
.y74_c00346{bottom:84.960000px;}
.y6c_c00346{bottom:123.120000px;}
.y6b_c00346{bottom:123.840000px;}
.y6a_c00346{bottom:126.720000px;}
.y6e_c00346{bottom:128.160000px;}
.y6d_c00346{bottom:128.880000px;}
.y65_c00346{bottom:166.320000px;}
.y67_c00346{bottom:167.760000px;}
.y69_c00346{bottom:169.200000px;}
.y63_c00346{bottom:169.920000px;}
.y66_c00346{bottom:170.640000px;}
.y64_c00346{bottom:171.360000px;}
.y68_c00346{bottom:172.080000px;}
.y62_c00346{bottom:210.240000px;}
.y60_c00346{bottom:211.680000px;}
.y61_c00346{bottom:213.120000px;}
.y5c_c00346{bottom:241.920000px;}
.y5e_c00346{bottom:245.520000px;}
.y5b_c00346{bottom:246.240000px;}
.y5d_c00346{bottom:246.960000px;}
.y5f_c00346{bottom:247.680000px;}
.y58_c00346{bottom:285.840000px;}
.y5a_c00346{bottom:288.720000px;}
.y57_c00346{bottom:289.440000px;}
.y59_c00346{bottom:290.160000px;}
.y52_c00346{bottom:329.040000px;}
.y55_c00346{bottom:329.760000px;}
.y54_c00346{bottom:330.480000px;}
.y56_c00346{bottom:331.920000px;}
.y53_c00346{bottom:332.640000px;}
.y51_c00346{bottom:333.360000px;}
.y50_c00346{bottom:371.520000px;}
.y4f_c00346{bottom:375.840000px;}
.y4a_c00346{bottom:403.920000px;}
.y4b_c00346{bottom:406.080000px;}
.y4d_c00346{bottom:406.800000px;}
.y4e_c00346{bottom:407.520000px;}
.y49_c00346{bottom:408.240000px;}
.y4c_c00346{bottom:408.960000px;}
.y44_c00346{bottom:447.120000px;}
.y48_c00346{bottom:449.280000px;}
.y45_c00346{bottom:450.000000px;}
.y46_c00346{bottom:450.720000px;}
.y43_c00346{bottom:451.440000px;}
.y47_c00346{bottom:452.880000px;}
.y40_c00346{bottom:491.040000px;}
.y41_c00346{bottom:492.480000px;}
.y3f_c00346{bottom:493.200000px;}
.y42_c00346{bottom:493.920000px;}
.y3c_c00346{bottom:533.520000px;}
.y3d_c00346{bottom:534.960000px;}
.y3b_c00346{bottom:535.680000px;}
.y3a_c00346{bottom:536.400000px;}
.y3e_c00346{bottom:537.120000px;}
.y38_c00346{bottom:570.240000px;}
.y36_c00346{bottom:576.720000px;}
.y37_c00346{bottom:578.160000px;}
.y39_c00346{bottom:578.880000px;}
.y34_c00346{bottom:579.600000px;}
.y35_c00346{bottom:581.040000px;}
.y31_c00346{bottom:622.080000px;}
.y32_c00346{bottom:622.800000px;}
.y33_c00346{bottom:623.520000px;}
.y30_c00346{bottom:624.240000px;}
.y2c_c00346{bottom:673.920000px;}
.y2e_c00346{bottom:674.640000px;}
.y2b_c00346{bottom:675.360000px;}
.y2d_c00346{bottom:676.080000px;}
.y2f_c00346{bottom:677.520000px;}
.y27_c00346{bottom:717.120000px;}
.y26_c00346{bottom:718.560000px;}
.y29_c00346{bottom:719.280000px;}
.y28_c00346{bottom:720.720000px;}
.y2a_c00346{bottom:721.440000px;}
.y22_c00346{bottom:760.320000px;}
.y23_c00346{bottom:761.040000px;}
.y21_c00346{bottom:761.760000px;}
.y25_c00346{bottom:763.200000px;}
.y24_c00346{bottom:763.920000px;}
.y1d_c00346{bottom:803.520000px;}
.y1f_c00346{bottom:804.240000px;}
.y1c_c00346{bottom:804.960000px;}
.y1e_c00346{bottom:805.680000px;}
.y20_c00346{bottom:807.120000px;}
.y19_c00346{bottom:846.720000px;}
.y1b_c00346{bottom:847.440000px;}
.y18_c00346{bottom:848.160000px;}
.y1a_c00346{bottom:851.040000px;}
.y17_c00346{bottom:882.720000px;}
.y13_c00346{bottom:889.920000px;}
.y15_c00346{bottom:890.640000px;}
.y12_c00346{bottom:891.360000px;}
.y16_c00346{bottom:892.800000px;}
.y14_c00346{bottom:893.520000px;}
.y2_c00346{bottom:933.120000px;}
.y4_c00346{bottom:933.840000px;}
.y1_c00346{bottom:934.560000px;}
.y3_c00346{bottom:937.440000px;}
.y11_c00346{bottom:976.320000px;}
.yc_c00346{bottom:977.040000px;}
.yb_c00346{bottom:977.760000px;}
.y10_c00346{bottom:978.480000px;}
.yd_c00346{bottom:980.640000px;}
.yf_c00346{bottom:1019.520000px;}
.ya_c00346{bottom:1020.240000px;}
.y9_c00346{bottom:1020.960000px;}
.ye_c00346{bottom:1062.720000px;}
.y6_c00346{bottom:1063.440000px;}
.y7_c00346{bottom:1064.160000px;}
.y8_c00346{bottom:1064.880000px;}
.y5_c00346{bottom:1100.160000px;}
.hb_c00346{height:33.692344px;}
.hd_c00346{height:41.467500px;}
.h5_c00346{height:44.059219px;}
.h4_c00346{height:46.650937px;}
.ha_c00346{height:49.242656px;}
.h8_c00346{height:51.834375px;}
.h2_c00346{height:54.426094px;}
.hc_c00346{height:57.017812px;}
.h9_c00346{height:59.609531px;}
.h7_c00346{height:62.201250px;}
.he_c00346{height:64.792969px;}
.h6_c00346{height:67.384687px;}
.h3_c00346{height:69.976406px;}
.h10_c00346{height:70.552969px;}
.hf_c00346{height:72.568125px;}
.h0_c00346{height:1157.760000px;}
.h1_c00346{height:1158.000000px;}
.w0_c00346{width:776.880000px;}
.w1_c00346{width:777.000000px;}
.x0_c00346{left:0.000000px;}
.x1_c00346{left:69.120000px;}
.x23_c00346{left:70.560000px;}
.x2d_c00346{left:72.000000px;}
.x31_c00346{left:73.440000px;}
.xf_c00346{left:100.800000px;}
.x1d_c00346{left:121.680000px;}
.xc_c00346{left:143.280000px;}
.x2_c00346{left:144.720000px;}
.x10_c00346{left:154.080000px;}
.x2a_c00346{left:174.960000px;}
.x1e_c00346{left:177.120000px;}
.x20_c00346{left:187.920000px;}
.x1f_c00346{left:219.600000px;}
.x2b_c00346{left:230.400000px;}
.xd_c00346{left:240.480000px;}
.x3_c00346{left:241.920000px;}
.x11_c00346{left:252.000000px;}
.x28_c00346{left:263.520000px;}
.x24_c00346{left:285.120000px;}
.x32_c00346{left:294.480000px;}
.xe_c00346{left:295.920000px;}
.x12_c00346{left:306.720000px;}
.x2f_c00346{left:317.520000px;}
.x4_c00346{left:328.320000px;}
.x18_c00346{left:339.120000px;}
.x13_c00346{left:360.720000px;}
.x30_c00346{left:371.520000px;}
.x5_c00346{left:382.320000px;}
.x29_c00346{left:393.120000px;}
.x14_c00346{left:403.200000px;}
.x2c_c00346{left:414.720000px;}
.x6_c00346{left:424.800000px;}
.x19_c00346{left:435.600000px;}
.x1b_c00346{left:446.400000px;}
.x1a_c00346{left:478.800000px;}
.x2e_c00346{left:490.320000px;}
.x15_c00346{left:501.120000px;}
.x21_c00346{left:522.000000px;}
.x1c_c00346{left:543.600000px;}
.x16_c00346{left:555.120000px;}
.x26_c00346{left:565.920000px;}
.x8_c00346{left:587.520000px;}
.x22_c00346{left:598.320000px;}
.x25_c00346{left:619.920000px;}
.x17_c00346{left:621.360000px;}
.xb_c00346{left:653.040000px;}
.x9_c00346{left:663.840000px;}
.xa_c00346{left:695.520000px;}
.x27_c00346{left:715.680000px;}
.x7_c00346{left:717.120000px;}
@media print{
.v1_c00346{vertical-align:-10.240000pt;}
.v2_c00346{vertical-align:-2.560000pt;}
.v0_c00346{vertical-align:0.000000pt;}
.v3_c00346{vertical-align:5.120000pt;}
.ls1_c00346{letter-spacing:0.000000pt;}
.ls0_c00346{letter-spacing:74.006827pt;}
.ws2_c00346{word-spacing:-1.513173pt;}
.ws1_c00346{word-spacing:-0.552107pt;}
.ws3_c00346{word-spacing:0.000000pt;}
.ws0_c00346{word-spacing:16.073062pt;}
.fs9_c00346{font-size:33.280000pt;}
.fsb_c00346{font-size:40.960000pt;}
.fs3_c00346{font-size:43.520000pt;}
.fs2_c00346{font-size:46.080000pt;}
.fs8_c00346{font-size:48.640000pt;}
.fs6_c00346{font-size:51.200000pt;}
.fs0_c00346{font-size:53.760000pt;}
.fsa_c00346{font-size:56.320000pt;}
.fs7_c00346{font-size:58.880000pt;}
.fs5_c00346{font-size:61.440000pt;}
.fsc_c00346{font-size:64.000000pt;}
.fs4_c00346{font-size:66.560000pt;}
.fs1_c00346{font-size:69.120000pt;}
.fsd_c00346{font-size:71.680000pt;}
.y0_c00346{bottom:0.000000pt;}
.y77_c00346{bottom:42.880000pt;}
.y79_c00346{bottom:43.520000pt;}
.y76_c00346{bottom:44.160000pt;}
.y78_c00346{bottom:45.440000pt;}
.y70_c00346{bottom:70.400000pt;}
.y71_c00346{bottom:71.680000pt;}
.y73_c00346{bottom:72.960000pt;}
.y75_c00346{bottom:73.600000pt;}
.y6f_c00346{bottom:74.240000pt;}
.y72_c00346{bottom:74.880000pt;}
.y74_c00346{bottom:75.520000pt;}
.y6c_c00346{bottom:109.440000pt;}
.y6b_c00346{bottom:110.080000pt;}
.y6a_c00346{bottom:112.640000pt;}
.y6e_c00346{bottom:113.920000pt;}
.y6d_c00346{bottom:114.560000pt;}
.y65_c00346{bottom:147.840000pt;}
.y67_c00346{bottom:149.120000pt;}
.y69_c00346{bottom:150.400000pt;}
.y63_c00346{bottom:151.040000pt;}
.y66_c00346{bottom:151.680000pt;}
.y64_c00346{bottom:152.320000pt;}
.y68_c00346{bottom:152.960000pt;}
.y62_c00346{bottom:186.880000pt;}
.y60_c00346{bottom:188.160000pt;}
.y61_c00346{bottom:189.440000pt;}
.y5c_c00346{bottom:215.040000pt;}
.y5e_c00346{bottom:218.240000pt;}
.y5b_c00346{bottom:218.880000pt;}
.y5d_c00346{bottom:219.520000pt;}
.y5f_c00346{bottom:220.160000pt;}
.y58_c00346{bottom:254.080000pt;}
.y5a_c00346{bottom:256.640000pt;}
.y57_c00346{bottom:257.280000pt;}
.y59_c00346{bottom:257.920000pt;}
.y52_c00346{bottom:292.480000pt;}
.y55_c00346{bottom:293.120000pt;}
.y54_c00346{bottom:293.760000pt;}
.y56_c00346{bottom:295.040000pt;}
.y53_c00346{bottom:295.680000pt;}
.y51_c00346{bottom:296.320000pt;}
.y50_c00346{bottom:330.240000pt;}
.y4f_c00346{bottom:334.080000pt;}
.y4a_c00346{bottom:359.040000pt;}
.y4b_c00346{bottom:360.960000pt;}
.y4d_c00346{bottom:361.600000pt;}
.y4e_c00346{bottom:362.240000pt;}
.y49_c00346{bottom:362.880000pt;}
.y4c_c00346{bottom:363.520000pt;}
.y44_c00346{bottom:397.440000pt;}
.y48_c00346{bottom:399.360000pt;}
.y45_c00346{bottom:400.000000pt;}
.y46_c00346{bottom:400.640000pt;}
.y43_c00346{bottom:401.280000pt;}
.y47_c00346{bottom:402.560000pt;}
.y40_c00346{bottom:436.480000pt;}
.y41_c00346{bottom:437.760000pt;}
.y3f_c00346{bottom:438.400000pt;}
.y42_c00346{bottom:439.040000pt;}
.y3c_c00346{bottom:474.240000pt;}
.y3d_c00346{bottom:475.520000pt;}
.y3b_c00346{bottom:476.160000pt;}
.y3a_c00346{bottom:476.800000pt;}
.y3e_c00346{bottom:477.440000pt;}
.y38_c00346{bottom:506.880000pt;}
.y36_c00346{bottom:512.640000pt;}
.y37_c00346{bottom:513.920000pt;}
.y39_c00346{bottom:514.560000pt;}
.y34_c00346{bottom:515.200000pt;}
.y35_c00346{bottom:516.480000pt;}
.y31_c00346{bottom:552.960000pt;}
.y32_c00346{bottom:553.600000pt;}
.y33_c00346{bottom:554.240000pt;}
.y30_c00346{bottom:554.880000pt;}
.y2c_c00346{bottom:599.040000pt;}
.y2e_c00346{bottom:599.680000pt;}
.y2b_c00346{bottom:600.320000pt;}
.y2d_c00346{bottom:600.960000pt;}
.y2f_c00346{bottom:602.240000pt;}
.y27_c00346{bottom:637.440000pt;}
.y26_c00346{bottom:638.720000pt;}
.y29_c00346{bottom:639.360000pt;}
.y28_c00346{bottom:640.640000pt;}
.y2a_c00346{bottom:641.280000pt;}
.y22_c00346{bottom:675.840000pt;}
.y23_c00346{bottom:676.480000pt;}
.y21_c00346{bottom:677.120000pt;}
.y25_c00346{bottom:678.400000pt;}
.y24_c00346{bottom:679.040000pt;}
.y1d_c00346{bottom:714.240000pt;}
.y1f_c00346{bottom:714.880000pt;}
.y1c_c00346{bottom:715.520000pt;}
.y1e_c00346{bottom:716.160000pt;}
.y20_c00346{bottom:717.440000pt;}
.y19_c00346{bottom:752.640000pt;}
.y1b_c00346{bottom:753.280000pt;}
.y18_c00346{bottom:753.920000pt;}
.y1a_c00346{bottom:756.480000pt;}
.y17_c00346{bottom:784.640000pt;}
.y13_c00346{bottom:791.040000pt;}
.y15_c00346{bottom:791.680000pt;}
.y12_c00346{bottom:792.320000pt;}
.y16_c00346{bottom:793.600000pt;}
.y14_c00346{bottom:794.240000pt;}
.y2_c00346{bottom:829.440000pt;}
.y4_c00346{bottom:830.080000pt;}
.y1_c00346{bottom:830.720000pt;}
.y3_c00346{bottom:833.280000pt;}
.y11_c00346{bottom:867.840000pt;}
.yc_c00346{bottom:868.480000pt;}
.yb_c00346{bottom:869.120000pt;}
.y10_c00346{bottom:869.760000pt;}
.yd_c00346{bottom:871.680000pt;}
.yf_c00346{bottom:906.240000pt;}
.ya_c00346{bottom:906.880000pt;}
.y9_c00346{bottom:907.520000pt;}
.ye_c00346{bottom:944.640000pt;}
.y6_c00346{bottom:945.280000pt;}
.y7_c00346{bottom:945.920000pt;}
.y8_c00346{bottom:946.560000pt;}
.y5_c00346{bottom:977.920000pt;}
.hb_c00346{height:29.948750pt;}
.hd_c00346{height:36.860000pt;}
.h5_c00346{height:39.163750pt;}
.h4_c00346{height:41.467500pt;}
.ha_c00346{height:43.771250pt;}
.h8_c00346{height:46.075000pt;}
.h2_c00346{height:48.378750pt;}
.hc_c00346{height:50.682500pt;}
.h9_c00346{height:52.986250pt;}
.h7_c00346{height:55.290000pt;}
.he_c00346{height:57.593750pt;}
.h6_c00346{height:59.897500pt;}
.h3_c00346{height:62.201250pt;}
.h10_c00346{height:62.713750pt;}
.hf_c00346{height:64.505000pt;}
.h0_c00346{height:1029.120000pt;}
.h1_c00346{height:1029.333333pt;}
.w0_c00346{width:690.560000pt;}
.w1_c00346{width:690.666667pt;}
.x0_c00346{left:0.000000pt;}
.x1_c00346{left:61.440000pt;}
.x23_c00346{left:62.720000pt;}
.x2d_c00346{left:64.000000pt;}
.x31_c00346{left:65.280000pt;}
.xf_c00346{left:89.600000pt;}
.x1d_c00346{left:108.160000pt;}
.xc_c00346{left:127.360000pt;}
.x2_c00346{left:128.640000pt;}
.x10_c00346{left:136.960000pt;}
.x2a_c00346{left:155.520000pt;}
.x1e_c00346{left:157.440000pt;}
.x20_c00346{left:167.040000pt;}
.x1f_c00346{left:195.200000pt;}
.x2b_c00346{left:204.800000pt;}
.xd_c00346{left:213.760000pt;}
.x3_c00346{left:215.040000pt;}
.x11_c00346{left:224.000000pt;}
.x28_c00346{left:234.240000pt;}
.x24_c00346{left:253.440000pt;}
.x32_c00346{left:261.760000pt;}
.xe_c00346{left:263.040000pt;}
.x12_c00346{left:272.640000pt;}
.x2f_c00346{left:282.240000pt;}
.x4_c00346{left:291.840000pt;}
.x18_c00346{left:301.440000pt;}
.x13_c00346{left:320.640000pt;}
.x30_c00346{left:330.240000pt;}
.x5_c00346{left:339.840000pt;}
.x29_c00346{left:349.440000pt;}
.x14_c00346{left:358.400000pt;}
.x2c_c00346{left:368.640000pt;}
.x6_c00346{left:377.600000pt;}
.x19_c00346{left:387.200000pt;}
.x1b_c00346{left:396.800000pt;}
.x1a_c00346{left:425.600000pt;}
.x2e_c00346{left:435.840000pt;}
.x15_c00346{left:445.440000pt;}
.x21_c00346{left:464.000000pt;}
.x1c_c00346{left:483.200000pt;}
.x16_c00346{left:493.440000pt;}
.x26_c00346{left:503.040000pt;}
.x8_c00346{left:522.240000pt;}
.x22_c00346{left:531.840000pt;}
.x25_c00346{left:551.040000pt;}
.x17_c00346{left:552.320000pt;}
.xb_c00346{left:580.480000pt;}
.x9_c00346{left:590.080000pt;}
.xa_c00346{left:618.240000pt;}
.x27_c00346{left:636.160000pt;}
.x7_c00346{left:637.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6dfe7a4fd1f8517e510b6bf7.woff2')format("woff");}.ff1_c00347{font-family:ff1_c00347;line-height:1.109863;font-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_c00347{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.m47_c00347{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_c00347{transform:matrix(0.234825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234825,0.000000,0.000000,0.250000,0,0);}
.m19_c00347{transform:matrix(0.239875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239875,0.000000,0.000000,0.250000,0,0);}
.m21_c00347{transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);}
.m2e_c00347{transform:matrix(0.246775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246775,0.000000,0.000000,0.250000,0,0);}
.m41_c00347{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m36_c00347{transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);}
.m25_c00347{transform:matrix(0.248300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248300,0.000000,0.000000,0.250000,0,0);}
.m15_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);}
.m10_c00347{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m18_c00347{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m7_c00347{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.me_c00347{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00347{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m2_c00347{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m4_c00347{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);}
.m31_c00347{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m1_c00347{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m23_c00347{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00347{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mb_c00347{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m9_c00347{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m11_c00347{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m42_c00347{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m40_c00347{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m45_c00347{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.md_c00347{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00347{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m22_c00347{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m44_c00347{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m28_c00347{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.mc_c00347{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00347{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00347{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00347{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00347{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m35_c00347{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00347{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m29_c00347{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00347{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m37_c00347{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m5_c00347{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00347{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m16_c00347{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);}
.m3a_c00347{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m24_c00347{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);}
.m26_c00347{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m20_c00347{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);}
.m39_c00347{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00347{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m3_c00347{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m17_c00347{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);}
.m46_c00347{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);}
.ma_c00347{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m8_c00347{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);}
.m1d_c00347{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);}
.m14_c00347{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.mf_c00347{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m34_c00347{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);}
.m3d_c00347{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);}
.m38_c00347{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m0_c00347{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m6_c00347{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);}
.m49_c00347{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);}
.m32_c00347{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m30_c00347{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);}
.m12_c00347{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m33_c00347{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);}
.m27_c00347{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m13_c00347{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);}
.m1a_c00347{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00347{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m43_c00347{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.v0_c00347{vertical-align:0.000000px;}
.v1_c00347{vertical-align:11.520000px;}
.v2_c00347{vertical-align:14.400000px;}
.ls0_c00347{letter-spacing:0.000000px;}
.sc__c00347{text-shadow:none;}
.sc0_c00347{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00347{-webkit-text-stroke:0px transparent;}
.sc0_c00347{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00347{word-spacing:0.000000px;}
.ws1_c00347{word-spacing:2.571360px;}
.ws0_c00347{word-spacing:9.078720px;}
.fc0_c00347{color:transparent;}
.fs9_c00347{font-size:37.440000px;}
.fsd_c00347{font-size:43.200000px;}
.fs8_c00347{font-size:46.080000px;}
.fsa_c00347{font-size:48.960000px;}
.fs0_c00347{font-size:51.840000px;}
.fsb_c00347{font-size:54.720000px;}
.fs7_c00347{font-size:57.600000px;}
.fs6_c00347{font-size:60.480000px;}
.fs3_c00347{font-size:63.360000px;}
.fsc_c00347{font-size:66.240000px;}
.fs1_c00347{font-size:69.120000px;}
.fs2_c00347{font-size:72.000000px;}
.fs5_c00347{font-size:74.880000px;}
.fs4_c00347{font-size:77.760000px;}
.y0_c00347{bottom:0.000000px;}
.y5d_c00347{bottom:47.520000px;}
.y5b_c00347{bottom:49.680000px;}
.y5c_c00347{bottom:52.560000px;}
.y58_c00347{bottom:80.640000px;}
.y59_c00347{bottom:83.520000px;}
.y57_c00347{bottom:84.240000px;}
.y5a_c00347{bottom:84.960000px;}
.y81_c00347{bottom:86.400000px;}
.y82_c00347{bottom:87.120000px;}
.y56_c00347{bottom:117.360000px;}
.y52_c00347{bottom:123.840000px;}
.y53_c00347{bottom:125.280000px;}
.y54_c00347{bottom:126.000000px;}
.y55_c00347{bottom:126.720000px;}
.y51_c00347{bottom:128.160000px;}
.y7f_c00347{bottom:128.880000px;}
.y80_c00347{bottom:129.600000px;}
.y50_c00347{bottom:167.760000px;}
.y4e_c00347{bottom:168.480000px;}
.y4f_c00347{bottom:170.640000px;}
.y49_c00347{bottom:199.440000px;}
.y4a_c00347{bottom:200.880000px;}
.y4c_c00347{bottom:201.600000px;}
.y4d_c00347{bottom:202.320000px;}
.y4b_c00347{bottom:203.040000px;}
.y48_c00347{bottom:203.760000px;}
.y7e_c00347{bottom:205.200000px;}
.y43_c00347{bottom:241.920000px;}
.y45_c00347{bottom:243.360000px;}
.y46_c00347{bottom:244.080000px;}
.y44_c00347{bottom:245.520000px;}
.y42_c00347{bottom:246.240000px;}
.y47_c00347{bottom:246.960000px;}
.y40_c00347{bottom:285.840000px;}
.y3f_c00347{bottom:288.000000px;}
.y7b_c00347{bottom:288.720000px;}
.y41_c00347{bottom:289.440000px;}
.y7c_c00347{bottom:290.880000px;}
.y7d_c00347{bottom:291.600000px;}
.y3d_c00347{bottom:328.320000px;}
.y3e_c00347{bottom:329.760000px;}
.y3b_c00347{bottom:330.480000px;}
.y7a_c00347{bottom:331.920000px;}
.y3c_c00347{bottom:332.640000px;}
.y79_c00347{bottom:334.080000px;}
.y38_c00347{bottom:371.520000px;}
.y3a_c00347{bottom:372.240000px;}
.y37_c00347{bottom:373.680000px;}
.y78_c00347{bottom:374.400000px;}
.y39_c00347{bottom:375.840000px;}
.y77_c00347{bottom:376.560000px;}
.y76_c00347{bottom:377.280000px;}
.y36_c00347{bottom:414.720000px;}
.y34_c00347{bottom:415.440000px;}
.y75_c00347{bottom:416.880000px;}
.y33_c00347{bottom:418.320000px;}
.y35_c00347{bottom:419.040000px;}
.y2f_c00347{bottom:457.920000px;}
.y32_c00347{bottom:458.640000px;}
.y30_c00347{bottom:459.360000px;}
.y73_c00347{bottom:460.800000px;}
.y2e_c00347{bottom:461.520000px;}
.y31_c00347{bottom:462.240000px;}
.y74_c00347{bottom:463.680000px;}
.y2c_c00347{bottom:501.840000px;}
.y2d_c00347{bottom:502.560000px;}
.y71_c00347{bottom:504.000000px;}
.y2b_c00347{bottom:504.720000px;}
.y72_c00347{bottom:507.600000px;}
.y26_c00347{bottom:544.320000px;}
.y2a_c00347{bottom:545.760000px;}
.y70_c00347{bottom:546.480000px;}
.y29_c00347{bottom:547.200000px;}
.y25_c00347{bottom:547.920000px;}
.y27_c00347{bottom:548.640000px;}
.y28_c00347{bottom:549.360000px;}
.y24_c00347{bottom:588.240000px;}
.y23_c00347{bottom:590.400000px;}
.y6f_c00347{bottom:593.280000px;}
.y22_c00347{bottom:631.440000px;}
.y21_c00347{bottom:633.600000px;}
.y6e_c00347{bottom:636.480000px;}
.y1e_c00347{bottom:674.640000px;}
.y20_c00347{bottom:675.360000px;}
.y1d_c00347{bottom:676.800000px;}
.y1f_c00347{bottom:679.680000px;}
.y1b_c00347{bottom:718.560000px;}
.y1a_c00347{bottom:720.720000px;}
.y1c_c00347{bottom:722.160000px;}
.y6d_c00347{bottom:722.880000px;}
.y17_c00347{bottom:761.040000px;}
.y19_c00347{bottom:761.760000px;}
.y6c_c00347{bottom:762.480000px;}
.y16_c00347{bottom:763.200000px;}
.y6b_c00347{bottom:763.920000px;}
.y18_c00347{bottom:765.360000px;}
.y6a_c00347{bottom:766.800000px;}
.y13_c00347{bottom:804.240000px;}
.y12_c00347{bottom:805.680000px;}
.y14_c00347{bottom:806.400000px;}
.y15_c00347{bottom:808.560000px;}
.y10_c00347{bottom:846.720000px;}
.y11_c00347{bottom:848.160000px;}
.yf_c00347{bottom:848.880000px;}
.y68_c00347{bottom:849.600000px;}
.y69_c00347{bottom:851.760000px;}
.ye_c00347{bottom:890.640000px;}
.yd_c00347{bottom:892.080000px;}
.y66_c00347{bottom:892.800000px;}
.y67_c00347{bottom:894.240000px;}
.yb_c00347{bottom:933.840000px;}
.ya_c00347{bottom:934.560000px;}
.yc_c00347{bottom:935.280000px;}
.y65_c00347{bottom:937.440000px;}
.y9_c00347{bottom:977.040000px;}
.y8_c00347{bottom:977.760000px;}
.y62_c00347{bottom:978.480000px;}
.y63_c00347{bottom:979.920000px;}
.y64_c00347{bottom:981.360000px;}
.y5_c00347{bottom:1019.520000px;}
.y7_c00347{bottom:1020.240000px;}
.y4_c00347{bottom:1020.960000px;}
.y60_c00347{bottom:1021.680000px;}
.y6_c00347{bottom:1023.840000px;}
.y61_c00347{bottom:1024.560000px;}
.y2_c00347{bottom:1062.720000px;}
.y3_c00347{bottom:1064.160000px;}
.y1_c00347{bottom:1064.880000px;}
.y5f_c00347{bottom:1065.600000px;}
.y5e_c00347{bottom:1111.680000px;}
.hb_c00347{height:33.692344px;}
.hf_c00347{height:38.875781px;}
.ha_c00347{height:41.467500px;}
.hc_c00347{height:44.059219px;}
.h2_c00347{height:46.650937px;}
.hd_c00347{height:49.242656px;}
.h9_c00347{height:51.834375px;}
.h8_c00347{height:54.426094px;}
.h5_c00347{height:57.017812px;}
.he_c00347{height:59.609531px;}
.h3_c00347{height:62.201250px;}
.h4_c00347{height:64.792969px;}
.h7_c00347{height:67.384687px;}
.h6_c00347{height:69.976406px;}
.h0_c00347{height:1153.440000px;}
.h1_c00347{height:1153.500000px;}
.w1_c00347{width:770.250000px;}
.w0_c00347{width:770.400000px;}
.x0_c00347{left:0.000000px;}
.x1_c00347{left:72.000000px;}
.x9_c00347{left:73.440000px;}
.x15_c00347{left:74.880000px;}
.x2_c00347{left:146.880000px;}
.xc_c00347{left:148.320000px;}
.x1c_c00347{left:202.320000px;}
.x16_c00347{left:213.120000px;}
.x4_c00347{left:244.080000px;}
.x6_c00347{left:245.520000px;}
.x14_c00347{left:257.040000px;}
.x11_c00347{left:278.640000px;}
.x3_c00347{left:288.720000px;}
.x18_c00347{left:290.160000px;}
.x1a_c00347{left:298.800000px;}
.xd_c00347{left:300.240000px;}
.x12_c00347{left:311.040000px;}
.x7_c00347{left:332.640000px;}
.x5_c00347{left:343.440000px;}
.xa_c00347{left:353.520000px;}
.x17_c00347{left:365.040000px;}
.xe_c00347{left:386.640000px;}
.x13_c00347{left:397.440000px;}
.xb_c00347{left:408.240000px;}
.x1e_c00347{left:428.400000px;}
.x19_c00347{left:429.840000px;}
.xf_c00347{left:441.360000px;}
.x8_c00347{left:451.440000px;}
.x1f_c00347{left:473.040000px;}
.x1b_c00347{left:483.840000px;}
.x10_c00347{left:527.040000px;}
.x1d_c00347{left:537.840000px;}
.x21_c00347{left:560.880000px;}
.x22_c00347{left:591.840000px;}
.x27_c00347{left:624.960000px;}
.x26_c00347{left:657.360000px;}
.x24_c00347{left:666.720000px;}
.x28_c00347{left:668.160000px;}
.x20_c00347{left:689.040000px;}
.x23_c00347{left:690.480000px;}
.x2a_c00347{left:699.840000px;}
.x25_c00347{left:701.280000px;}
.x29_c00347{left:720.000000px;}
@media print{
.v0_c00347{vertical-align:0.000000pt;}
.v1_c00347{vertical-align:10.240000pt;}
.v2_c00347{vertical-align:12.800000pt;}
.ls0_c00347{letter-spacing:0.000000pt;}
.ws2_c00347{word-spacing:0.000000pt;}
.ws1_c00347{word-spacing:2.285653pt;}
.ws0_c00347{word-spacing:8.069973pt;}
.fs9_c00347{font-size:33.280000pt;}
.fsd_c00347{font-size:38.400000pt;}
.fs8_c00347{font-size:40.960000pt;}
.fsa_c00347{font-size:43.520000pt;}
.fs0_c00347{font-size:46.080000pt;}
.fsb_c00347{font-size:48.640000pt;}
.fs7_c00347{font-size:51.200000pt;}
.fs6_c00347{font-size:53.760000pt;}
.fs3_c00347{font-size:56.320000pt;}
.fsc_c00347{font-size:58.880000pt;}
.fs1_c00347{font-size:61.440000pt;}
.fs2_c00347{font-size:64.000000pt;}
.fs5_c00347{font-size:66.560000pt;}
.fs4_c00347{font-size:69.120000pt;}
.y0_c00347{bottom:0.000000pt;}
.y5d_c00347{bottom:42.240000pt;}
.y5b_c00347{bottom:44.160000pt;}
.y5c_c00347{bottom:46.720000pt;}
.y58_c00347{bottom:71.680000pt;}
.y59_c00347{bottom:74.240000pt;}
.y57_c00347{bottom:74.880000pt;}
.y5a_c00347{bottom:75.520000pt;}
.y81_c00347{bottom:76.800000pt;}
.y82_c00347{bottom:77.440000pt;}
.y56_c00347{bottom:104.320000pt;}
.y52_c00347{bottom:110.080000pt;}
.y53_c00347{bottom:111.360000pt;}
.y54_c00347{bottom:112.000000pt;}
.y55_c00347{bottom:112.640000pt;}
.y51_c00347{bottom:113.920000pt;}
.y7f_c00347{bottom:114.560000pt;}
.y80_c00347{bottom:115.200000pt;}
.y50_c00347{bottom:149.120000pt;}
.y4e_c00347{bottom:149.760000pt;}
.y4f_c00347{bottom:151.680000pt;}
.y49_c00347{bottom:177.280000pt;}
.y4a_c00347{bottom:178.560000pt;}
.y4c_c00347{bottom:179.200000pt;}
.y4d_c00347{bottom:179.840000pt;}
.y4b_c00347{bottom:180.480000pt;}
.y48_c00347{bottom:181.120000pt;}
.y7e_c00347{bottom:182.400000pt;}
.y43_c00347{bottom:215.040000pt;}
.y45_c00347{bottom:216.320000pt;}
.y46_c00347{bottom:216.960000pt;}
.y44_c00347{bottom:218.240000pt;}
.y42_c00347{bottom:218.880000pt;}
.y47_c00347{bottom:219.520000pt;}
.y40_c00347{bottom:254.080000pt;}
.y3f_c00347{bottom:256.000000pt;}
.y7b_c00347{bottom:256.640000pt;}
.y41_c00347{bottom:257.280000pt;}
.y7c_c00347{bottom:258.560000pt;}
.y7d_c00347{bottom:259.200000pt;}
.y3d_c00347{bottom:291.840000pt;}
.y3e_c00347{bottom:293.120000pt;}
.y3b_c00347{bottom:293.760000pt;}
.y7a_c00347{bottom:295.040000pt;}
.y3c_c00347{bottom:295.680000pt;}
.y79_c00347{bottom:296.960000pt;}
.y38_c00347{bottom:330.240000pt;}
.y3a_c00347{bottom:330.880000pt;}
.y37_c00347{bottom:332.160000pt;}
.y78_c00347{bottom:332.800000pt;}
.y39_c00347{bottom:334.080000pt;}
.y77_c00347{bottom:334.720000pt;}
.y76_c00347{bottom:335.360000pt;}
.y36_c00347{bottom:368.640000pt;}
.y34_c00347{bottom:369.280000pt;}
.y75_c00347{bottom:370.560000pt;}
.y33_c00347{bottom:371.840000pt;}
.y35_c00347{bottom:372.480000pt;}
.y2f_c00347{bottom:407.040000pt;}
.y32_c00347{bottom:407.680000pt;}
.y30_c00347{bottom:408.320000pt;}
.y73_c00347{bottom:409.600000pt;}
.y2e_c00347{bottom:410.240000pt;}
.y31_c00347{bottom:410.880000pt;}
.y74_c00347{bottom:412.160000pt;}
.y2c_c00347{bottom:446.080000pt;}
.y2d_c00347{bottom:446.720000pt;}
.y71_c00347{bottom:448.000000pt;}
.y2b_c00347{bottom:448.640000pt;}
.y72_c00347{bottom:451.200000pt;}
.y26_c00347{bottom:483.840000pt;}
.y2a_c00347{bottom:485.120000pt;}
.y70_c00347{bottom:485.760000pt;}
.y29_c00347{bottom:486.400000pt;}
.y25_c00347{bottom:487.040000pt;}
.y27_c00347{bottom:487.680000pt;}
.y28_c00347{bottom:488.320000pt;}
.y24_c00347{bottom:522.880000pt;}
.y23_c00347{bottom:524.800000pt;}
.y6f_c00347{bottom:527.360000pt;}
.y22_c00347{bottom:561.280000pt;}
.y21_c00347{bottom:563.200000pt;}
.y6e_c00347{bottom:565.760000pt;}
.y1e_c00347{bottom:599.680000pt;}
.y20_c00347{bottom:600.320000pt;}
.y1d_c00347{bottom:601.600000pt;}
.y1f_c00347{bottom:604.160000pt;}
.y1b_c00347{bottom:638.720000pt;}
.y1a_c00347{bottom:640.640000pt;}
.y1c_c00347{bottom:641.920000pt;}
.y6d_c00347{bottom:642.560000pt;}
.y17_c00347{bottom:676.480000pt;}
.y19_c00347{bottom:677.120000pt;}
.y6c_c00347{bottom:677.760000pt;}
.y16_c00347{bottom:678.400000pt;}
.y6b_c00347{bottom:679.040000pt;}
.y18_c00347{bottom:680.320000pt;}
.y6a_c00347{bottom:681.600000pt;}
.y13_c00347{bottom:714.880000pt;}
.y12_c00347{bottom:716.160000pt;}
.y14_c00347{bottom:716.800000pt;}
.y15_c00347{bottom:718.720000pt;}
.y10_c00347{bottom:752.640000pt;}
.y11_c00347{bottom:753.920000pt;}
.yf_c00347{bottom:754.560000pt;}
.y68_c00347{bottom:755.200000pt;}
.y69_c00347{bottom:757.120000pt;}
.ye_c00347{bottom:791.680000pt;}
.yd_c00347{bottom:792.960000pt;}
.y66_c00347{bottom:793.600000pt;}
.y67_c00347{bottom:794.880000pt;}
.yb_c00347{bottom:830.080000pt;}
.ya_c00347{bottom:830.720000pt;}
.yc_c00347{bottom:831.360000pt;}
.y65_c00347{bottom:833.280000pt;}
.y9_c00347{bottom:868.480000pt;}
.y8_c00347{bottom:869.120000pt;}
.y62_c00347{bottom:869.760000pt;}
.y63_c00347{bottom:871.040000pt;}
.y64_c00347{bottom:872.320000pt;}
.y5_c00347{bottom:906.240000pt;}
.y7_c00347{bottom:906.880000pt;}
.y4_c00347{bottom:907.520000pt;}
.y60_c00347{bottom:908.160000pt;}
.y6_c00347{bottom:910.080000pt;}
.y61_c00347{bottom:910.720000pt;}
.y2_c00347{bottom:944.640000pt;}
.y3_c00347{bottom:945.920000pt;}
.y1_c00347{bottom:946.560000pt;}
.y5f_c00347{bottom:947.200000pt;}
.y5e_c00347{bottom:988.160000pt;}
.hb_c00347{height:29.948750pt;}
.hf_c00347{height:34.556250pt;}
.ha_c00347{height:36.860000pt;}
.hc_c00347{height:39.163750pt;}
.h2_c00347{height:41.467500pt;}
.hd_c00347{height:43.771250pt;}
.h9_c00347{height:46.075000pt;}
.h8_c00347{height:48.378750pt;}
.h5_c00347{height:50.682500pt;}
.he_c00347{height:52.986250pt;}
.h3_c00347{height:55.290000pt;}
.h4_c00347{height:57.593750pt;}
.h7_c00347{height:59.897500pt;}
.h6_c00347{height:62.201250pt;}
.h0_c00347{height:1025.280000pt;}
.h1_c00347{height:1025.333333pt;}
.w1_c00347{width:684.666667pt;}
.w0_c00347{width:684.800000pt;}
.x0_c00347{left:0.000000pt;}
.x1_c00347{left:64.000000pt;}
.x9_c00347{left:65.280000pt;}
.x15_c00347{left:66.560000pt;}
.x2_c00347{left:130.560000pt;}
.xc_c00347{left:131.840000pt;}
.x1c_c00347{left:179.840000pt;}
.x16_c00347{left:189.440000pt;}
.x4_c00347{left:216.960000pt;}
.x6_c00347{left:218.240000pt;}
.x14_c00347{left:228.480000pt;}
.x11_c00347{left:247.680000pt;}
.x3_c00347{left:256.640000pt;}
.x18_c00347{left:257.920000pt;}
.x1a_c00347{left:265.600000pt;}
.xd_c00347{left:266.880000pt;}
.x12_c00347{left:276.480000pt;}
.x7_c00347{left:295.680000pt;}
.x5_c00347{left:305.280000pt;}
.xa_c00347{left:314.240000pt;}
.x17_c00347{left:324.480000pt;}
.xe_c00347{left:343.680000pt;}
.x13_c00347{left:353.280000pt;}
.xb_c00347{left:362.880000pt;}
.x1e_c00347{left:380.800000pt;}
.x19_c00347{left:382.080000pt;}
.xf_c00347{left:392.320000pt;}
.x8_c00347{left:401.280000pt;}
.x1f_c00347{left:420.480000pt;}
.x1b_c00347{left:430.080000pt;}
.x10_c00347{left:468.480000pt;}
.x1d_c00347{left:478.080000pt;}
.x21_c00347{left:498.560000pt;}
.x22_c00347{left:526.080000pt;}
.x27_c00347{left:555.520000pt;}
.x26_c00347{left:584.320000pt;}
.x24_c00347{left:592.640000pt;}
.x28_c00347{left:593.920000pt;}
.x20_c00347{left:612.480000pt;}
.x23_c00347{left:613.760000pt;}
.x2a_c00347{left:622.080000pt;}
.x25_c00347{left:623.360000pt;}
.x29_c00347{left:640.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_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_24bedca7a4860c6fe253a80b.woff2')format("woff");}.ff1_c00348{font-family:ff1_c00348;line-height:1.109863;font-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_c00348{transform:matrix(0.172375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172375,0.000000,0.000000,0.250000,0,0);}
.m8_c00348{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);}
.m2a_c00348{transform:matrix(0.224475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224475,0.000000,0.000000,0.250000,0,0);}
.m3a_c00348{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);}
.m3e_c00348{transform:matrix(0.234800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234800,0.000000,0.000000,0.250000,0,0);}
.m2c_c00348{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m42_c00348{transform:matrix(0.237375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237375,0.000000,0.000000,0.250000,0,0);}
.md_c00348{transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);}
.m48_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);}
.m25_c00348{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m17_c00348{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m2_c00348{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_c00348{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);}
.m31_c00348{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.ma_c00348{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_c00348{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m26_c00348{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_c00348{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00348{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00348{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m14_c00348{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m37_c00348{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);}
.m35_c00348{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);}
.m23_c00348{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00348{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mb_c00348{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00348{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m39_c00348{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m9_c00348{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m22_c00348{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00348{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00348{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m43_c00348{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m30_c00348{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m24_c00348{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m10_c00348{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m12_c00348{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m20_c00348{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m5_c00348{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m0_c00348{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);}
.m46_c00348{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.mf_c00348{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);}
.m44_c00348{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00348{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00348{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);}
.m15_c00348{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m29_c00348{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.mc_c00348{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);}
.m33_c00348{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m34_c00348{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_c00348{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);}
.m1b_c00348{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m21_c00348{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);}
.m3d_c00348{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m1_c00348{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m45_c00348{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00348{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m13_c00348{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);}
.m32_c00348{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);}
.m2d_c00348{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m28_c00348{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m3_c00348{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m41_c00348{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m49_c00348{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.me_c00348{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m36_c00348{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m6_c00348{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m40_c00348{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m27_c00348{transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);}
.m4_c00348{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);}
.m11_c00348{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m47_c00348{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00348{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m38_c00348{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00348{transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00348{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.v2_c00348{vertical-align:-2.880000px;}
.v0_c00348{vertical-align:0.000000px;}
.v1_c00348{vertical-align:8.640000px;}
.ls0_c00348{letter-spacing:0.000000px;}
.sc__c00348{text-shadow:none;}
.sc0_c00348{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00348{-webkit-text-stroke:0px transparent;}
.sc0_c00348{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00348{word-spacing:0.000000px;}
.ws1_c00348{word-spacing:5.256480px;}
.ws0_c00348{word-spacing:6.492000px;}
.fc0_c00348{color:transparent;}
.fs4_c00348{font-size:37.440000px;}
.fsd_c00348{font-size:43.200000px;}
.fs6_c00348{font-size:46.080000px;}
.fs8_c00348{font-size:48.960000px;}
.fs3_c00348{font-size:51.840000px;}
.fs7_c00348{font-size:54.720000px;}
.fs1_c00348{font-size:57.600000px;}
.fs5_c00348{font-size:60.480000px;}
.fsb_c00348{font-size:63.360000px;}
.fsc_c00348{font-size:66.240000px;}
.fs9_c00348{font-size:69.120000px;}
.fsa_c00348{font-size:72.000000px;}
.fs2_c00348{font-size:74.880000px;}
.fs0_c00348{font-size:77.760000px;}
.y0_c00348{bottom:0.000000px;}
.y6d_c00348{bottom:38.160000px;}
.y6e_c00348{bottom:39.600000px;}
.y6c_c00348{bottom:40.320000px;}
.y68_c00348{bottom:69.120000px;}
.y6a_c00348{bottom:70.560000px;}
.y69_c00348{bottom:71.280000px;}
.y67_c00348{bottom:72.000000px;}
.y6b_c00348{bottom:72.720000px;}
.y74_c00348{bottom:73.440000px;}
.y75_c00348{bottom:74.160000px;}
.y66_c00348{bottom:111.600000px;}
.y65_c00348{bottom:115.200000px;}
.y64_c00348{bottom:115.920000px;}
.y72_c00348{bottom:116.640000px;}
.y73_c00348{bottom:118.800000px;}
.y63_c00348{bottom:154.800000px;}
.y61_c00348{bottom:159.120000px;}
.y62_c00348{bottom:159.840000px;}
.y71_c00348{bottom:160.560000px;}
.y60_c00348{bottom:198.720000px;}
.y5e_c00348{bottom:202.320000px;}
.y5f_c00348{bottom:203.040000px;}
.y6f_c00348{bottom:203.760000px;}
.y70_c00348{bottom:205.200000px;}
.y5d_c00348{bottom:241.920000px;}
.y5c_c00348{bottom:243.360000px;}
.y5a_c00348{bottom:274.320000px;}
.y58_c00348{bottom:277.920000px;}
.y59_c00348{bottom:278.640000px;}
.y5b_c00348{bottom:279.360000px;}
.y55_c00348{bottom:317.520000px;}
.y54_c00348{bottom:318.960000px;}
.y52_c00348{bottom:320.400000px;}
.y57_c00348{bottom:321.120000px;}
.y53_c00348{bottom:321.840000px;}
.y56_c00348{bottom:322.560000px;}
.y51_c00348{bottom:363.600000px;}
.y50_c00348{bottom:365.040000px;}
.y4f_c00348{bottom:365.760000px;}
.y4c_c00348{bottom:393.120000px;}
.y4d_c00348{bottom:395.280000px;}
.y4a_c00348{bottom:396.720000px;}
.y4e_c00348{bottom:397.440000px;}
.y4b_c00348{bottom:398.160000px;}
.y49_c00348{bottom:437.040000px;}
.y47_c00348{bottom:439.920000px;}
.y48_c00348{bottom:440.640000px;}
.y42_c00348{bottom:480.240000px;}
.y44_c00348{bottom:481.680000px;}
.y43_c00348{bottom:482.400000px;}
.y40_c00348{bottom:483.120000px;}
.y45_c00348{bottom:483.840000px;}
.y41_c00348{bottom:484.560000px;}
.y46_c00348{bottom:485.280000px;}
.y39_c00348{bottom:524.160000px;}
.y38_c00348{bottom:524.880000px;}
.y3a_c00348{bottom:527.760000px;}
.y36_c00348{bottom:556.560000px;}
.y34_c00348{bottom:558.720000px;}
.y37_c00348{bottom:559.440000px;}
.y35_c00348{bottom:560.160000px;}
.y3f_c00348{bottom:560.880000px;}
.y33_c00348{bottom:599.040000px;}
.y31_c00348{bottom:600.480000px;}
.y3d_c00348{bottom:601.200000px;}
.y3e_c00348{bottom:602.640000px;}
.y32_c00348{bottom:603.360000px;}
.y2f_c00348{bottom:642.240000px;}
.y30_c00348{bottom:642.960000px;}
.y2e_c00348{bottom:643.680000px;}
.y2d_c00348{bottom:644.400000px;}
.y3b_c00348{bottom:645.840000px;}
.y3c_c00348{bottom:647.280000px;}
.y2b_c00348{bottom:686.880000px;}
.y2a_c00348{bottom:687.600000px;}
.y2c_c00348{bottom:688.320000px;}
.y29_c00348{bottom:689.040000px;}
.y26_c00348{bottom:739.440000px;}
.y25_c00348{bottom:740.160000px;}
.y27_c00348{bottom:740.880000px;}
.y28_c00348{bottom:743.040000px;}
.y22_c00348{bottom:781.920000px;}
.y24_c00348{bottom:782.640000px;}
.y21_c00348{bottom:784.080000px;}
.y23_c00348{bottom:786.240000px;}
.y20_c00348{bottom:825.840000px;}
.y1d_c00348{bottom:858.240000px;}
.y1c_c00348{bottom:858.960000px;}
.y1e_c00348{bottom:859.680000px;}
.y1f_c00348{bottom:861.840000px;}
.y1b_c00348{bottom:901.440000px;}
.y19_c00348{bottom:902.160000px;}
.y18_c00348{bottom:902.880000px;}
.y1a_c00348{bottom:905.760000px;}
.y13_c00348{bottom:944.640000px;}
.y14_c00348{bottom:945.360000px;}
.y12_c00348{bottom:946.080000px;}
.y17_c00348{bottom:946.800000px;}
.y15_c00348{bottom:948.240000px;}
.y11_c00348{bottom:988.560000px;}
.yf_c00348{bottom:989.280000px;}
.y10_c00348{bottom:992.160000px;}
.yb_c00348{bottom:1020.240000px;}
.yc_c00348{bottom:1021.680000px;}
.ya_c00348{bottom:1022.400000px;}
.y16_c00348{bottom:1023.120000px;}
.yd_c00348{bottom:1023.840000px;}
.ye_c00348{bottom:1024.560000px;}
.y7_c00348{bottom:1063.440000px;}
.y3_c00348{bottom:1064.160000px;}
.y9_c00348{bottom:1064.880000px;}
.y2_c00348{bottom:1065.600000px;}
.y8_c00348{bottom:1066.320000px;}
.y6_c00348{bottom:1067.040000px;}
.y5_c00348{bottom:1067.760000px;}
.y4_c00348{bottom:1068.480000px;}
.y1_c00348{bottom:1103.040000px;}
.h6_c00348{height:33.692344px;}
.h10_c00348{height:38.875781px;}
.h8_c00348{height:41.467500px;}
.ha_c00348{height:44.059219px;}
.h5_c00348{height:46.650937px;}
.h9_c00348{height:49.242656px;}
.h3_c00348{height:51.834375px;}
.h7_c00348{height:54.426094px;}
.hf_c00348{height:55.290938px;}
.hd_c00348{height:57.017812px;}
.he_c00348{height:59.609531px;}
.hb_c00348{height:62.201250px;}
.hc_c00348{height:64.792969px;}
.h4_c00348{height:67.384687px;}
.h2_c00348{height:69.976406px;}
.h1_c00348{height:1150.500000px;}
.h0_c00348{height:1150.560000px;}
.w0_c00348{width:764.640000px;}
.w1_c00348{width:765.000000px;}
.x0_c00348{left:0.000000px;}
.x2_c00348{left:63.360000px;}
.x14_c00348{left:64.800000px;}
.x2c_c00348{left:66.240000px;}
.x35_c00348{left:67.680000px;}
.x1e_c00348{left:118.080000px;}
.xd_c00348{left:138.960000px;}
.x3_c00348{left:140.400000px;}
.x1f_c00348{left:151.200000px;}
.x33_c00348{left:171.360000px;}
.x20_c00348{left:172.800000px;}
.x24_c00348{left:182.880000px;}
.x13_c00348{left:194.400000px;}
.x21_c00348{left:227.520000px;}
.xe_c00348{left:237.600000px;}
.x22_c00348{left:246.960000px;}
.x4_c00348{left:270.000000px;}
.x27_c00348{left:280.800000px;}
.x34_c00348{left:282.240000px;}
.x25_c00348{left:290.880000px;}
.xf_c00348{left:292.320000px;}
.x23_c00348{left:303.120000px;}
.x5_c00348{left:324.000000px;}
.x1a_c00348{left:334.800000px;}
.x2d_c00348{left:355.680000px;}
.x6_c00348{left:367.200000px;}
.x15_c00348{left:378.000000px;}
.x10_c00348{left:387.360000px;}
.x1b_c00348{left:388.800000px;}
.x2e_c00348{left:399.600000px;}
.x18_c00348{left:410.400000px;}
.x26_c00348{left:421.200000px;}
.x11_c00348{left:432.000000px;}
.x7_c00348{left:464.400000px;}
.x16_c00348{left:475.200000px;}
.x12_c00348{left:486.720000px;}
.x2f_c00348{left:496.800000px;}
.x19_c00348{left:507.600000px;}
.x8_c00348{left:518.400000px;}
.x1c_c00348{left:529.200000px;}
.x9_c00348{left:561.600000px;}
.x32_c00348{left:581.760000px;}
.x17_c00348{left:583.200000px;}
.x30_c00348{left:614.160000px;}
.x28_c00348{left:615.600000px;}
.xa_c00348{left:617.040000px;}
.x29_c00348{left:648.000000px;}
.x1d_c00348{left:649.440000px;}
.xb_c00348{left:658.800000px;}
.x36_c00348{left:680.400000px;}
.x1_c00348{left:681.840000px;}
.x31_c00348{left:689.760000px;}
.xc_c00348{left:691.200000px;}
.x2b_c00348{left:710.640000px;}
.x2a_c00348{left:712.080000px;}
@media print{
.v2_c00348{vertical-align:-2.560000pt;}
.v0_c00348{vertical-align:0.000000pt;}
.v1_c00348{vertical-align:7.680000pt;}
.ls0_c00348{letter-spacing:0.000000pt;}
.ws2_c00348{word-spacing:0.000000pt;}
.ws1_c00348{word-spacing:4.672427pt;}
.ws0_c00348{word-spacing:5.770667pt;}
.fs4_c00348{font-size:33.280000pt;}
.fsd_c00348{font-size:38.400000pt;}
.fs6_c00348{font-size:40.960000pt;}
.fs8_c00348{font-size:43.520000pt;}
.fs3_c00348{font-size:46.080000pt;}
.fs7_c00348{font-size:48.640000pt;}
.fs1_c00348{font-size:51.200000pt;}
.fs5_c00348{font-size:53.760000pt;}
.fsb_c00348{font-size:56.320000pt;}
.fsc_c00348{font-size:58.880000pt;}
.fs9_c00348{font-size:61.440000pt;}
.fsa_c00348{font-size:64.000000pt;}
.fs2_c00348{font-size:66.560000pt;}
.fs0_c00348{font-size:69.120000pt;}
.y0_c00348{bottom:0.000000pt;}
.y6d_c00348{bottom:33.920000pt;}
.y6e_c00348{bottom:35.200000pt;}
.y6c_c00348{bottom:35.840000pt;}
.y68_c00348{bottom:61.440000pt;}
.y6a_c00348{bottom:62.720000pt;}
.y69_c00348{bottom:63.360000pt;}
.y67_c00348{bottom:64.000000pt;}
.y6b_c00348{bottom:64.640000pt;}
.y74_c00348{bottom:65.280000pt;}
.y75_c00348{bottom:65.920000pt;}
.y66_c00348{bottom:99.200000pt;}
.y65_c00348{bottom:102.400000pt;}
.y64_c00348{bottom:103.040000pt;}
.y72_c00348{bottom:103.680000pt;}
.y73_c00348{bottom:105.600000pt;}
.y63_c00348{bottom:137.600000pt;}
.y61_c00348{bottom:141.440000pt;}
.y62_c00348{bottom:142.080000pt;}
.y71_c00348{bottom:142.720000pt;}
.y60_c00348{bottom:176.640000pt;}
.y5e_c00348{bottom:179.840000pt;}
.y5f_c00348{bottom:180.480000pt;}
.y6f_c00348{bottom:181.120000pt;}
.y70_c00348{bottom:182.400000pt;}
.y5d_c00348{bottom:215.040000pt;}
.y5c_c00348{bottom:216.320000pt;}
.y5a_c00348{bottom:243.840000pt;}
.y58_c00348{bottom:247.040000pt;}
.y59_c00348{bottom:247.680000pt;}
.y5b_c00348{bottom:248.320000pt;}
.y55_c00348{bottom:282.240000pt;}
.y54_c00348{bottom:283.520000pt;}
.y52_c00348{bottom:284.800000pt;}
.y57_c00348{bottom:285.440000pt;}
.y53_c00348{bottom:286.080000pt;}
.y56_c00348{bottom:286.720000pt;}
.y51_c00348{bottom:323.200000pt;}
.y50_c00348{bottom:324.480000pt;}
.y4f_c00348{bottom:325.120000pt;}
.y4c_c00348{bottom:349.440000pt;}
.y4d_c00348{bottom:351.360000pt;}
.y4a_c00348{bottom:352.640000pt;}
.y4e_c00348{bottom:353.280000pt;}
.y4b_c00348{bottom:353.920000pt;}
.y49_c00348{bottom:388.480000pt;}
.y47_c00348{bottom:391.040000pt;}
.y48_c00348{bottom:391.680000pt;}
.y42_c00348{bottom:426.880000pt;}
.y44_c00348{bottom:428.160000pt;}
.y43_c00348{bottom:428.800000pt;}
.y40_c00348{bottom:429.440000pt;}
.y45_c00348{bottom:430.080000pt;}
.y41_c00348{bottom:430.720000pt;}
.y46_c00348{bottom:431.360000pt;}
.y39_c00348{bottom:465.920000pt;}
.y38_c00348{bottom:466.560000pt;}
.y3a_c00348{bottom:469.120000pt;}
.y36_c00348{bottom:494.720000pt;}
.y34_c00348{bottom:496.640000pt;}
.y37_c00348{bottom:497.280000pt;}
.y35_c00348{bottom:497.920000pt;}
.y3f_c00348{bottom:498.560000pt;}
.y33_c00348{bottom:532.480000pt;}
.y31_c00348{bottom:533.760000pt;}
.y3d_c00348{bottom:534.400000pt;}
.y3e_c00348{bottom:535.680000pt;}
.y32_c00348{bottom:536.320000pt;}
.y2f_c00348{bottom:570.880000pt;}
.y30_c00348{bottom:571.520000pt;}
.y2e_c00348{bottom:572.160000pt;}
.y2d_c00348{bottom:572.800000pt;}
.y3b_c00348{bottom:574.080000pt;}
.y3c_c00348{bottom:575.360000pt;}
.y2b_c00348{bottom:610.560000pt;}
.y2a_c00348{bottom:611.200000pt;}
.y2c_c00348{bottom:611.840000pt;}
.y29_c00348{bottom:612.480000pt;}
.y26_c00348{bottom:657.280000pt;}
.y25_c00348{bottom:657.920000pt;}
.y27_c00348{bottom:658.560000pt;}
.y28_c00348{bottom:660.480000pt;}
.y22_c00348{bottom:695.040000pt;}
.y24_c00348{bottom:695.680000pt;}
.y21_c00348{bottom:696.960000pt;}
.y23_c00348{bottom:698.880000pt;}
.y20_c00348{bottom:734.080000pt;}
.y1d_c00348{bottom:762.880000pt;}
.y1c_c00348{bottom:763.520000pt;}
.y1e_c00348{bottom:764.160000pt;}
.y1f_c00348{bottom:766.080000pt;}
.y1b_c00348{bottom:801.280000pt;}
.y19_c00348{bottom:801.920000pt;}
.y18_c00348{bottom:802.560000pt;}
.y1a_c00348{bottom:805.120000pt;}
.y13_c00348{bottom:839.680000pt;}
.y14_c00348{bottom:840.320000pt;}
.y12_c00348{bottom:840.960000pt;}
.y17_c00348{bottom:841.600000pt;}
.y15_c00348{bottom:842.880000pt;}
.y11_c00348{bottom:878.720000pt;}
.yf_c00348{bottom:879.360000pt;}
.y10_c00348{bottom:881.920000pt;}
.yb_c00348{bottom:906.880000pt;}
.yc_c00348{bottom:908.160000pt;}
.ya_c00348{bottom:908.800000pt;}
.y16_c00348{bottom:909.440000pt;}
.yd_c00348{bottom:910.080000pt;}
.ye_c00348{bottom:910.720000pt;}
.y7_c00348{bottom:945.280000pt;}
.y3_c00348{bottom:945.920000pt;}
.y9_c00348{bottom:946.560000pt;}
.y2_c00348{bottom:947.200000pt;}
.y8_c00348{bottom:947.840000pt;}
.y6_c00348{bottom:948.480000pt;}
.y5_c00348{bottom:949.120000pt;}
.y4_c00348{bottom:949.760000pt;}
.y1_c00348{bottom:980.480000pt;}
.h6_c00348{height:29.948750pt;}
.h10_c00348{height:34.556250pt;}
.h8_c00348{height:36.860000pt;}
.ha_c00348{height:39.163750pt;}
.h5_c00348{height:41.467500pt;}
.h9_c00348{height:43.771250pt;}
.h3_c00348{height:46.075000pt;}
.h7_c00348{height:48.378750pt;}
.hf_c00348{height:49.147500pt;}
.hd_c00348{height:50.682500pt;}
.he_c00348{height:52.986250pt;}
.hb_c00348{height:55.290000pt;}
.hc_c00348{height:57.593750pt;}
.h4_c00348{height:59.897500pt;}
.h2_c00348{height:62.201250pt;}
.h1_c00348{height:1022.666667pt;}
.h0_c00348{height:1022.720000pt;}
.w0_c00348{width:679.680000pt;}
.w1_c00348{width:680.000000pt;}
.x0_c00348{left:0.000000pt;}
.x2_c00348{left:56.320000pt;}
.x14_c00348{left:57.600000pt;}
.x2c_c00348{left:58.880000pt;}
.x35_c00348{left:60.160000pt;}
.x1e_c00348{left:104.960000pt;}
.xd_c00348{left:123.520000pt;}
.x3_c00348{left:124.800000pt;}
.x1f_c00348{left:134.400000pt;}
.x33_c00348{left:152.320000pt;}
.x20_c00348{left:153.600000pt;}
.x24_c00348{left:162.560000pt;}
.x13_c00348{left:172.800000pt;}
.x21_c00348{left:202.240000pt;}
.xe_c00348{left:211.200000pt;}
.x22_c00348{left:219.520000pt;}
.x4_c00348{left:240.000000pt;}
.x27_c00348{left:249.600000pt;}
.x34_c00348{left:250.880000pt;}
.x25_c00348{left:258.560000pt;}
.xf_c00348{left:259.840000pt;}
.x23_c00348{left:269.440000pt;}
.x5_c00348{left:288.000000pt;}
.x1a_c00348{left:297.600000pt;}
.x2d_c00348{left:316.160000pt;}
.x6_c00348{left:326.400000pt;}
.x15_c00348{left:336.000000pt;}
.x10_c00348{left:344.320000pt;}
.x1b_c00348{left:345.600000pt;}
.x2e_c00348{left:355.200000pt;}
.x18_c00348{left:364.800000pt;}
.x26_c00348{left:374.400000pt;}
.x11_c00348{left:384.000000pt;}
.x7_c00348{left:412.800000pt;}
.x16_c00348{left:422.400000pt;}
.x12_c00348{left:432.640000pt;}
.x2f_c00348{left:441.600000pt;}
.x19_c00348{left:451.200000pt;}
.x8_c00348{left:460.800000pt;}
.x1c_c00348{left:470.400000pt;}
.x9_c00348{left:499.200000pt;}
.x32_c00348{left:517.120000pt;}
.x17_c00348{left:518.400000pt;}
.x30_c00348{left:545.920000pt;}
.x28_c00348{left:547.200000pt;}
.xa_c00348{left:548.480000pt;}
.x29_c00348{left:576.000000pt;}
.x1d_c00348{left:577.280000pt;}
.xb_c00348{left:585.600000pt;}
.x36_c00348{left:604.800000pt;}
.x1_c00348{left:606.080000pt;}
.x31_c00348{left:613.120000pt;}
.xc_c00348{left:614.400000pt;}
.x2b_c00348{left:631.680000pt;}
.x2a_c00348{left:632.960000pt;}
}





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




/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2c84f2695e4c5ec6ab95c6b1.woff2')format("woff");}.ff1_c00350{font-family:ff1_c00350;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4f_c00350{transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);}
.m34_c00350{transform:matrix(0.210300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210300,0.000000,0.000000,0.250000,0,0);}
.m4c_c00350{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m51_c00350{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);}
.md_c00350{transform:matrix(0.230900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230900,0.000000,0.000000,0.250000,0,0);}
.m9_c00350{transform:matrix(0.234125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234125,0.000000,0.000000,0.250000,0,0);}
.m41_c00350{transform:matrix(0.238800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238800,0.000000,0.000000,0.250000,0,0);}
.m3b_c00350{transform:matrix(0.239425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239425,0.000000,0.000000,0.250000,0,0);}
.m3c_c00350{transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);}
.m27_c00350{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00350{transform:matrix(0.245225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245225,0.000000,0.000000,0.250000,0,0);}
.m2_c00350{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);}
.m32_c00350{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);}
.m31_c00350{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);}
.m24_c00350{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);}
.m38_c00350{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00350{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_c00350{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m28_c00350{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m13_c00350{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m37_c00350{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m6_c00350{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mb_c00350{transform:matrix(0.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);}
.m47_c00350{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m5_c00350{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00350{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m42_c00350{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00350{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m46_c00350{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mf_c00350{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m43_c00350{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00350{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m10_c00350{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00350{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00350{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m45_c00350{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m18_c00350{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m26_c00350{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m11_c00350{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mc_c00350{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m20_c00350{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m48_c00350{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);}
.m33_c00350{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);}
.m40_c00350{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m12_c00350{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m25_c00350{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m0_c00350{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m35_c00350{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);}
.m30_c00350{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m3_c00350{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);}
.m2d_c00350{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m16_c00350{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1_c00350{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m22_c00350{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);}
.m17_c00350{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);}
.m3d_c00350{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m21_c00350{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);}
.m7_c00350{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m23_c00350{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);}
.m3e_c00350{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m44_c00350{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00350{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);}
.m3f_c00350{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00350{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00350{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m4_c00350{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m19_c00350{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m15_c00350{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m14_c00350{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);}
.m50_c00350{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m29_c00350{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00350{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);}
.m3a_c00350{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00350{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);}
.me_c00350{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00350{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.ma_c00350{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m36_c00350{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m39_c00350{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00350{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m49_c00350{transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00350{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.v2_c00350{vertical-align:-8.640000px;}
.v0_c00350{vertical-align:0.000000px;}
.v1_c00350{vertical-align:11.520000px;}
.ls1_c00350{letter-spacing:0.000000px;}
.ls0_c00350{letter-spacing:85.310400px;}
.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:-2.799600px;}
.ws1_c00350{word-spacing:0.000000px;}
.fc0_c00350{color:transparent;}
.fsd_c00350{font-size:34.560000px;}
.fsb_c00350{font-size:40.320000px;}
.fsa_c00350{font-size:43.200000px;}
.fs3_c00350{font-size:48.960000px;}
.fs4_c00350{font-size:51.840000px;}
.fs9_c00350{font-size:54.720000px;}
.fs7_c00350{font-size:57.600000px;}
.fs1_c00350{font-size:60.480000px;}
.fs5_c00350{font-size:63.360000px;}
.fs8_c00350{font-size:66.240000px;}
.fs6_c00350{font-size:69.120000px;}
.fs0_c00350{font-size:72.000000px;}
.fs2_c00350{font-size:74.880000px;}
.fsc_c00350{font-size:77.760000px;}
.fse_c00350{font-size:83.520000px;}
.y0_c00350{bottom:0.000000px;}
.y66_c00350{bottom:34.560000px;}
.y65_c00350{bottom:35.280000px;}
.y64_c00350{bottom:38.880000px;}
.y61_c00350{bottom:65.520000px;}
.y62_c00350{bottom:67.680000px;}
.y60_c00350{bottom:68.400000px;}
.y5f_c00350{bottom:70.560000px;}
.y7c_c00350{bottom:71.280000px;}
.y63_c00350{bottom:72.000000px;}
.y7d_c00350{bottom:72.720000px;}
.y5e_c00350{bottom:109.440000px;}
.y5c_c00350{bottom:111.600000px;}
.y5d_c00350{bottom:113.040000px;}
.y5b_c00350{bottom:114.480000px;}
.y7a_c00350{bottom:115.200000px;}
.y7b_c00350{bottom:115.920000px;}
.y59_c00350{bottom:154.800000px;}
.y5a_c00350{bottom:156.960000px;}
.y58_c00350{bottom:158.400000px;}
.y57_c00350{bottom:206.640000px;}
.y56_c00350{bottom:210.240000px;}
.y53_c00350{bottom:239.040000px;}
.y55_c00350{bottom:241.920000px;}
.y54_c00350{bottom:242.640000px;}
.y52_c00350{bottom:243.360000px;}
.y78_c00350{bottom:244.080000px;}
.y77_c00350{bottom:245.520000px;}
.y79_c00350{bottom:246.240000px;}
.y4d_c00350{bottom:282.240000px;}
.y4e_c00350{bottom:283.680000px;}
.y51_c00350{bottom:284.400000px;}
.y4f_c00350{bottom:285.120000px;}
.y4c_c00350{bottom:286.560000px;}
.y50_c00350{bottom:288.000000px;}
.y76_c00350{bottom:288.720000px;}
.y4a_c00350{bottom:325.440000px;}
.y4b_c00350{bottom:326.880000px;}
.y49_c00350{bottom:329.760000px;}
.y75_c00350{bottom:332.640000px;}
.y46_c00350{bottom:369.360000px;}
.y48_c00350{bottom:370.800000px;}
.y45_c00350{bottom:372.960000px;}
.y47_c00350{bottom:373.680000px;}
.y73_c00350{bottom:375.120000px;}
.y74_c00350{bottom:375.840000px;}
.y42_c00350{bottom:413.280000px;}
.y44_c00350{bottom:414.000000px;}
.y40_c00350{bottom:416.160000px;}
.y43_c00350{bottom:416.880000px;}
.y41_c00350{bottom:417.600000px;}
.y72_c00350{bottom:419.040000px;}
.y3b_c00350{bottom:455.040000px;}
.y3f_c00350{bottom:457.920000px;}
.y3a_c00350{bottom:459.360000px;}
.y3d_c00350{bottom:460.080000px;}
.y3c_c00350{bottom:460.800000px;}
.y3e_c00350{bottom:461.520000px;}
.y71_c00350{bottom:462.240000px;}
.y39_c00350{bottom:500.400000px;}
.y38_c00350{bottom:502.560000px;}
.y6f_c00350{bottom:503.280000px;}
.y70_c00350{bottom:504.000000px;}
.y6e_c00350{bottom:504.720000px;}
.y36_c00350{bottom:543.600000px;}
.y37_c00350{bottom:544.320000px;}
.y6d_c00350{bottom:545.040000px;}
.y35_c00350{bottom:545.760000px;}
.y6c_c00350{bottom:547.920000px;}
.y6b_c00350{bottom:548.640000px;}
.y34_c00350{bottom:586.800000px;}
.y6a_c00350{bottom:587.520000px;}
.y67_c00350{bottom:588.240000px;}
.y33_c00350{bottom:588.960000px;}
.y68_c00350{bottom:590.400000px;}
.y69_c00350{bottom:591.840000px;}
.y32_c00350{bottom:629.280000px;}
.y31_c00350{bottom:630.720000px;}
.y2f_c00350{bottom:631.440000px;}
.y30_c00350{bottom:633.600000px;}
.y2a_c00350{bottom:672.480000px;}
.y2e_c00350{bottom:673.200000px;}
.y29_c00350{bottom:673.920000px;}
.y2c_c00350{bottom:674.640000px;}
.y2d_c00350{bottom:676.080000px;}
.y2b_c00350{bottom:676.800000px;}
.y25_c00350{bottom:715.680000px;}
.y28_c00350{bottom:716.400000px;}
.y23_c00350{bottom:717.120000px;}
.y27_c00350{bottom:719.280000px;}
.y24_c00350{bottom:720.000000px;}
.y22_c00350{bottom:758.880000px;}
.y26_c00350{bottom:759.600000px;}
.y21_c00350{bottom:760.320000px;}
.y20_c00350{bottom:805.680000px;}
.y1e_c00350{bottom:833.760000px;}
.y1b_c00350{bottom:834.480000px;}
.y1f_c00350{bottom:835.200000px;}
.y1a_c00350{bottom:835.920000px;}
.y1d_c00350{bottom:838.080000px;}
.y1c_c00350{bottom:838.800000px;}
.y19_c00350{bottom:870.480000px;}
.y15_c00350{bottom:878.400000px;}
.y14_c00350{bottom:879.120000px;}
.y18_c00350{bottom:879.840000px;}
.y17_c00350{bottom:880.560000px;}
.y16_c00350{bottom:881.280000px;}
.y11_c00350{bottom:921.600000px;}
.y12_c00350{bottom:922.320000px;}
.y13_c00350{bottom:925.200000px;}
.yd_c00350{bottom:954.000000px;}
.yc_c00350{bottom:954.720000px;}
.yf_c00350{bottom:955.440000px;}
.y10_c00350{bottom:956.160000px;}
.ye_c00350{bottom:957.600000px;}
.y8_c00350{bottom:997.200000px;}
.y7_c00350{bottom:997.920000px;}
.yb_c00350{bottom:999.360000px;}
.ya_c00350{bottom:1000.080000px;}
.y9_c00350{bottom:1000.800000px;}
.y4_c00350{bottom:1039.680000px;}
.y5_c00350{bottom:1040.400000px;}
.y2_c00350{bottom:1041.120000px;}
.y6_c00350{bottom:1042.560000px;}
.y3_c00350{bottom:1044.720000px;}
.y1_c00350{bottom:1102.320000px;}
.hf_c00350{height:31.100625px;}
.hd_c00350{height:36.284062px;}
.hc_c00350{height:38.875781px;}
.h5_c00350{height:44.059219px;}
.h6_c00350{height:46.650937px;}
.hb_c00350{height:49.242656px;}
.h9_c00350{height:51.834375px;}
.h3_c00350{height:54.426094px;}
.h7_c00350{height:57.017812px;}
.ha_c00350{height:59.609531px;}
.h8_c00350{height:62.201250px;}
.h2_c00350{height:64.792969px;}
.h4_c00350{height:67.384687px;}
.he_c00350{height:69.976406px;}
.h10_c00350{height:75.159844px;}
.h1_c00350{height:1150.500000px;}
.h0_c00350{height:1150.560000px;}
.w0_c00350{width:764.640000px;}
.w1_c00350{width:765.000000px;}
.x0_c00350{left:0.000000px;}
.x2_c00350{left:60.480000px;}
.xe_c00350{left:61.920000px;}
.x23_c00350{left:63.360000px;}
.x29_c00350{left:64.800000px;}
.x30_c00350{left:66.240000px;}
.x28_c00350{left:105.840000px;}
.x2e_c00350{left:115.200000px;}
.xa_c00350{left:134.640000px;}
.x3_c00350{left:136.080000px;}
.x2f_c00350{left:146.880000px;}
.x1d_c00350{left:179.280000px;}
.x25_c00350{left:182.160000px;}
.x32_c00350{left:190.080000px;}
.x31_c00350{left:191.520000px;}
.x20_c00350{left:222.480000px;}
.xf_c00350{left:233.280000px;}
.x22_c00350{left:234.720000px;}
.x4_c00350{left:242.640000px;}
.x13_c00350{left:244.080000px;}
.x2a_c00350{left:245.520000px;}
.xb_c00350{left:265.680000px;}
.x1a_c00350{left:277.200000px;}
.x35_c00350{left:278.640000px;}
.x5_c00350{left:287.280000px;}
.x10_c00350{left:289.440000px;}
.x14_c00350{left:298.800000px;}
.x33_c00350{left:310.320000px;}
.xc_c00350{left:319.680000px;}
.x2b_c00350{left:321.120000px;}
.x15_c00350{left:331.200000px;}
.x6_c00350{left:342.000000px;}
.x24_c00350{left:363.600000px;}
.x16_c00350{left:375.120000px;}
.x26_c00350{left:396.720000px;}
.x2c_c00350{left:406.800000px;}
.x11_c00350{left:416.880000px;}
.x27_c00350{left:438.480000px;}
.x1b_c00350{left:460.080000px;}
.x7_c00350{left:481.680000px;}
.x12_c00350{left:502.560000px;}
.x34_c00350{left:511.920000px;}
.x19_c00350{left:514.080000px;}
.x2d_c00350{left:524.160000px;}
.x21_c00350{left:535.680000px;}
.x8_c00350{left:556.560000px;}
.x1f_c00350{left:558.000000px;}
.xd_c00350{left:577.440000px;}
.x1c_c00350{left:578.880000px;}
.x1e_c00350{left:589.680000px;}
.x39_c00350{left:602.640000px;}
.x36_c00350{left:609.840000px;}
.x17_c00350{left:611.280000px;}
.x3c_c00350{left:641.520000px;}
.x18_c00350{left:643.680000px;}
.x3a_c00350{left:653.040000px;}
.x37_c00350{left:654.480000px;}
.x1_c00350{left:675.360000px;}
.x3b_c00350{left:684.720000px;}
.x9_c00350{left:686.160000px;}
.x38_c00350{left:706.320000px;}
@media print{
.v2_c00350{vertical-align:-7.680000pt;}
.v0_c00350{vertical-align:0.000000pt;}
.v1_c00350{vertical-align:10.240000pt;}
.ls1_c00350{letter-spacing:0.000000pt;}
.ls0_c00350{letter-spacing:75.831467pt;}
.ws0_c00350{word-spacing:-2.488533pt;}
.ws1_c00350{word-spacing:0.000000pt;}
.fsd_c00350{font-size:30.720000pt;}
.fsb_c00350{font-size:35.840000pt;}
.fsa_c00350{font-size:38.400000pt;}
.fs3_c00350{font-size:43.520000pt;}
.fs4_c00350{font-size:46.080000pt;}
.fs9_c00350{font-size:48.640000pt;}
.fs7_c00350{font-size:51.200000pt;}
.fs1_c00350{font-size:53.760000pt;}
.fs5_c00350{font-size:56.320000pt;}
.fs8_c00350{font-size:58.880000pt;}
.fs6_c00350{font-size:61.440000pt;}
.fs0_c00350{font-size:64.000000pt;}
.fs2_c00350{font-size:66.560000pt;}
.fsc_c00350{font-size:69.120000pt;}
.fse_c00350{font-size:74.240000pt;}
.y0_c00350{bottom:0.000000pt;}
.y66_c00350{bottom:30.720000pt;}
.y65_c00350{bottom:31.360000pt;}
.y64_c00350{bottom:34.560000pt;}
.y61_c00350{bottom:58.240000pt;}
.y62_c00350{bottom:60.160000pt;}
.y60_c00350{bottom:60.800000pt;}
.y5f_c00350{bottom:62.720000pt;}
.y7c_c00350{bottom:63.360000pt;}
.y63_c00350{bottom:64.000000pt;}
.y7d_c00350{bottom:64.640000pt;}
.y5e_c00350{bottom:97.280000pt;}
.y5c_c00350{bottom:99.200000pt;}
.y5d_c00350{bottom:100.480000pt;}
.y5b_c00350{bottom:101.760000pt;}
.y7a_c00350{bottom:102.400000pt;}
.y7b_c00350{bottom:103.040000pt;}
.y59_c00350{bottom:137.600000pt;}
.y5a_c00350{bottom:139.520000pt;}
.y58_c00350{bottom:140.800000pt;}
.y57_c00350{bottom:183.680000pt;}
.y56_c00350{bottom:186.880000pt;}
.y53_c00350{bottom:212.480000pt;}
.y55_c00350{bottom:215.040000pt;}
.y54_c00350{bottom:215.680000pt;}
.y52_c00350{bottom:216.320000pt;}
.y78_c00350{bottom:216.960000pt;}
.y77_c00350{bottom:218.240000pt;}
.y79_c00350{bottom:218.880000pt;}
.y4d_c00350{bottom:250.880000pt;}
.y4e_c00350{bottom:252.160000pt;}
.y51_c00350{bottom:252.800000pt;}
.y4f_c00350{bottom:253.440000pt;}
.y4c_c00350{bottom:254.720000pt;}
.y50_c00350{bottom:256.000000pt;}
.y76_c00350{bottom:256.640000pt;}
.y4a_c00350{bottom:289.280000pt;}
.y4b_c00350{bottom:290.560000pt;}
.y49_c00350{bottom:293.120000pt;}
.y75_c00350{bottom:295.680000pt;}
.y46_c00350{bottom:328.320000pt;}
.y48_c00350{bottom:329.600000pt;}
.y45_c00350{bottom:331.520000pt;}
.y47_c00350{bottom:332.160000pt;}
.y73_c00350{bottom:333.440000pt;}
.y74_c00350{bottom:334.080000pt;}
.y42_c00350{bottom:367.360000pt;}
.y44_c00350{bottom:368.000000pt;}
.y40_c00350{bottom:369.920000pt;}
.y43_c00350{bottom:370.560000pt;}
.y41_c00350{bottom:371.200000pt;}
.y72_c00350{bottom:372.480000pt;}
.y3b_c00350{bottom:404.480000pt;}
.y3f_c00350{bottom:407.040000pt;}
.y3a_c00350{bottom:408.320000pt;}
.y3d_c00350{bottom:408.960000pt;}
.y3c_c00350{bottom:409.600000pt;}
.y3e_c00350{bottom:410.240000pt;}
.y71_c00350{bottom:410.880000pt;}
.y39_c00350{bottom:444.800000pt;}
.y38_c00350{bottom:446.720000pt;}
.y6f_c00350{bottom:447.360000pt;}
.y70_c00350{bottom:448.000000pt;}
.y6e_c00350{bottom:448.640000pt;}
.y36_c00350{bottom:483.200000pt;}
.y37_c00350{bottom:483.840000pt;}
.y6d_c00350{bottom:484.480000pt;}
.y35_c00350{bottom:485.120000pt;}
.y6c_c00350{bottom:487.040000pt;}
.y6b_c00350{bottom:487.680000pt;}
.y34_c00350{bottom:521.600000pt;}
.y6a_c00350{bottom:522.240000pt;}
.y67_c00350{bottom:522.880000pt;}
.y33_c00350{bottom:523.520000pt;}
.y68_c00350{bottom:524.800000pt;}
.y69_c00350{bottom:526.080000pt;}
.y32_c00350{bottom:559.360000pt;}
.y31_c00350{bottom:560.640000pt;}
.y2f_c00350{bottom:561.280000pt;}
.y30_c00350{bottom:563.200000pt;}
.y2a_c00350{bottom:597.760000pt;}
.y2e_c00350{bottom:598.400000pt;}
.y29_c00350{bottom:599.040000pt;}
.y2c_c00350{bottom:599.680000pt;}
.y2d_c00350{bottom:600.960000pt;}
.y2b_c00350{bottom:601.600000pt;}
.y25_c00350{bottom:636.160000pt;}
.y28_c00350{bottom:636.800000pt;}
.y23_c00350{bottom:637.440000pt;}
.y27_c00350{bottom:639.360000pt;}
.y24_c00350{bottom:640.000000pt;}
.y22_c00350{bottom:674.560000pt;}
.y26_c00350{bottom:675.200000pt;}
.y21_c00350{bottom:675.840000pt;}
.y20_c00350{bottom:716.160000pt;}
.y1e_c00350{bottom:741.120000pt;}
.y1b_c00350{bottom:741.760000pt;}
.y1f_c00350{bottom:742.400000pt;}
.y1a_c00350{bottom:743.040000pt;}
.y1d_c00350{bottom:744.960000pt;}
.y1c_c00350{bottom:745.600000pt;}
.y19_c00350{bottom:773.760000pt;}
.y15_c00350{bottom:780.800000pt;}
.y14_c00350{bottom:781.440000pt;}
.y18_c00350{bottom:782.080000pt;}
.y17_c00350{bottom:782.720000pt;}
.y16_c00350{bottom:783.360000pt;}
.y11_c00350{bottom:819.200000pt;}
.y12_c00350{bottom:819.840000pt;}
.y13_c00350{bottom:822.400000pt;}
.yd_c00350{bottom:848.000000pt;}
.yc_c00350{bottom:848.640000pt;}
.yf_c00350{bottom:849.280000pt;}
.y10_c00350{bottom:849.920000pt;}
.ye_c00350{bottom:851.200000pt;}
.y8_c00350{bottom:886.400000pt;}
.y7_c00350{bottom:887.040000pt;}
.yb_c00350{bottom:888.320000pt;}
.ya_c00350{bottom:888.960000pt;}
.y9_c00350{bottom:889.600000pt;}
.y4_c00350{bottom:924.160000pt;}
.y5_c00350{bottom:924.800000pt;}
.y2_c00350{bottom:925.440000pt;}
.y6_c00350{bottom:926.720000pt;}
.y3_c00350{bottom:928.640000pt;}
.y1_c00350{bottom:979.840000pt;}
.hf_c00350{height:27.645000pt;}
.hd_c00350{height:32.252500pt;}
.hc_c00350{height:34.556250pt;}
.h5_c00350{height:39.163750pt;}
.h6_c00350{height:41.467500pt;}
.hb_c00350{height:43.771250pt;}
.h9_c00350{height:46.075000pt;}
.h3_c00350{height:48.378750pt;}
.h7_c00350{height:50.682500pt;}
.ha_c00350{height:52.986250pt;}
.h8_c00350{height:55.290000pt;}
.h2_c00350{height:57.593750pt;}
.h4_c00350{height:59.897500pt;}
.he_c00350{height:62.201250pt;}
.h10_c00350{height:66.808750pt;}
.h1_c00350{height:1022.666667pt;}
.h0_c00350{height:1022.720000pt;}
.w0_c00350{width:679.680000pt;}
.w1_c00350{width:680.000000pt;}
.x0_c00350{left:0.000000pt;}
.x2_c00350{left:53.760000pt;}
.xe_c00350{left:55.040000pt;}
.x23_c00350{left:56.320000pt;}
.x29_c00350{left:57.600000pt;}
.x30_c00350{left:58.880000pt;}
.x28_c00350{left:94.080000pt;}
.x2e_c00350{left:102.400000pt;}
.xa_c00350{left:119.680000pt;}
.x3_c00350{left:120.960000pt;}
.x2f_c00350{left:130.560000pt;}
.x1d_c00350{left:159.360000pt;}
.x25_c00350{left:161.920000pt;}
.x32_c00350{left:168.960000pt;}
.x31_c00350{left:170.240000pt;}
.x20_c00350{left:197.760000pt;}
.xf_c00350{left:207.360000pt;}
.x22_c00350{left:208.640000pt;}
.x4_c00350{left:215.680000pt;}
.x13_c00350{left:216.960000pt;}
.x2a_c00350{left:218.240000pt;}
.xb_c00350{left:236.160000pt;}
.x1a_c00350{left:246.400000pt;}
.x35_c00350{left:247.680000pt;}
.x5_c00350{left:255.360000pt;}
.x10_c00350{left:257.280000pt;}
.x14_c00350{left:265.600000pt;}
.x33_c00350{left:275.840000pt;}
.xc_c00350{left:284.160000pt;}
.x2b_c00350{left:285.440000pt;}
.x15_c00350{left:294.400000pt;}
.x6_c00350{left:304.000000pt;}
.x24_c00350{left:323.200000pt;}
.x16_c00350{left:333.440000pt;}
.x26_c00350{left:352.640000pt;}
.x2c_c00350{left:361.600000pt;}
.x11_c00350{left:370.560000pt;}
.x27_c00350{left:389.760000pt;}
.x1b_c00350{left:408.960000pt;}
.x7_c00350{left:428.160000pt;}
.x12_c00350{left:446.720000pt;}
.x34_c00350{left:455.040000pt;}
.x19_c00350{left:456.960000pt;}
.x2d_c00350{left:465.920000pt;}
.x21_c00350{left:476.160000pt;}
.x8_c00350{left:494.720000pt;}
.x1f_c00350{left:496.000000pt;}
.xd_c00350{left:513.280000pt;}
.x1c_c00350{left:514.560000pt;}
.x1e_c00350{left:524.160000pt;}
.x39_c00350{left:535.680000pt;}
.x36_c00350{left:542.080000pt;}
.x17_c00350{left:543.360000pt;}
.x3c_c00350{left:570.240000pt;}
.x18_c00350{left:572.160000pt;}
.x3a_c00350{left:580.480000pt;}
.x37_c00350{left:581.760000pt;}
.x1_c00350{left:600.320000pt;}
.x3b_c00350{left:608.640000pt;}
.x9_c00350{left:609.920000pt;}
.x38_c00350{left:627.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6498cc85863bea8b923d08ad.woff2')format("woff");}.ff1_c00351{font-family:ff1_c00351;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4e_c00351{transform:matrix(0.151100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151100,0.000000,0.000000,0.250000,0,0);}
.m3d_c00351{transform:matrix(0.207150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207150,0.000000,0.000000,0.250000,0,0);}
.m12_c00351{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);}
.m19_c00351{transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);}
.m4d_c00351{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m2d_c00351{transform:matrix(0.239075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239075,0.000000,0.000000,0.250000,0,0);}
.m51_c00351{transform:matrix(0.245550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245550,0.000000,0.000000,0.250000,0,0);}
.m1b_c00351{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m50_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);}
.m4f_c00351{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m47_c00351{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_c00351{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.mb_c00351{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m25_c00351{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m10_c00351{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);}
.m3c_c00351{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);}
.m23_c00351{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_c00351{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);}
.m20_c00351{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00351{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m15_c00351{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);}
.m40_c00351{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_c00351{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m2_c00351{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00351{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m42_c00351{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m11_c00351{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00351{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m28_c00351{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m31_c00351{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00351{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mf_c00351{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00351{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m44_c00351{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m21_c00351{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m26_c00351{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m17_c00351{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m9_c00351{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m48_c00351{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00351{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.ma_c00351{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.me_c00351{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00351{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m5_c00351{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);}
.m46_c00351{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m38_c00351{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00351{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m14_c00351{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1_c00351{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m39_c00351{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m33_c00351{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_c00351{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);}
.m0_c00351{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00351{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);}
.m36_c00351{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);}
.m45_c00351{transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00351{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);}
.m32_c00351{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m22_c00351{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00351{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00351{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m37_c00351{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m7_c00351{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00351{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m43_c00351{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00351{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m24_c00351{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);}
.m16_c00351{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m18_c00351{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m3_c00351{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m6_c00351{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);}
.m27_c00351{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m35_c00351{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m13_c00351{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);}
.m2f_c00351{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m4_c00351{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m34_c00351{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00351{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m41_c00351{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m29_c00351{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00351{transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);}
.m49_c00351{transform:matrix(0.960000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.960000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.960000,0.000000,0.000000,0.250000,0,0);}
.v1_c00351{vertical-align:-2.880000px;}
.v0_c00351{vertical-align:0.000000px;}
.v2_c00351{vertical-align:5.760000px;}
.ls1_c00351{letter-spacing:0.000000px;}
.ls0_c00351{letter-spacing:81.206400px;}
.sc__c00351{text-shadow:none;}
.sc0_c00351{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00351{-webkit-text-stroke:0px transparent;}
.sc0_c00351{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00351{word-spacing:0.000000px;}
.ws0_c00351{word-spacing:9.212400px;}
.fc0_c00351{color:transparent;}
.fs10_c00351{font-size:17.280000px;}
.fsd_c00351{font-size:37.440000px;}
.fsc_c00351{font-size:40.320000px;}
.fsb_c00351{font-size:43.200000px;}
.fs5_c00351{font-size:48.960000px;}
.fs3_c00351{font-size:51.840000px;}
.fs8_c00351{font-size:54.720000px;}
.fsa_c00351{font-size:57.600000px;}
.fs1_c00351{font-size:60.480000px;}
.fs4_c00351{font-size:63.360000px;}
.fs7_c00351{font-size:66.240000px;}
.fs9_c00351{font-size:69.120000px;}
.fs0_c00351{font-size:72.000000px;}
.fs2_c00351{font-size:74.880000px;}
.fs6_c00351{font-size:77.760000px;}
.fse_c00351{font-size:92.160000px;}
.fsf_c00351{font-size:103.680000px;}
.y0_c00351{bottom:0.000000px;}
.y70_c00351{bottom:39.600000px;}
.y6f_c00351{bottom:43.200000px;}
.y75_c00351{bottom:43.920000px;}
.y76_c00351{bottom:45.360000px;}
.y6d_c00351{bottom:82.080000px;}
.y6e_c00351{bottom:83.520000px;}
.y6c_c00351{bottom:86.400000px;}
.y73_c00351{bottom:87.840000px;}
.y74_c00351{bottom:89.280000px;}
.y6b_c00351{bottom:125.280000px;}
.y6a_c00351{bottom:128.880000px;}
.y72_c00351{bottom:129.600000px;}
.y71_c00351{bottom:131.760000px;}
.y52_c00351{bottom:170.640000px;}
.y51_c00351{bottom:172.800000px;}
.y50_c00351{bottom:174.240000px;}
.y4c_c00351{bottom:201.600000px;}
.y4d_c00351{bottom:203.760000px;}
.y4b_c00351{bottom:205.200000px;}
.y60_c00351{bottom:205.920000px;}
.y4e_c00351{bottom:206.640000px;}
.y4f_c00351{bottom:207.360000px;}
.y61_c00351{bottom:208.080000px;}
.y69_c00351{bottom:244.800000px;}
.y5e_c00351{bottom:248.400000px;}
.y5d_c00351{bottom:249.120000px;}
.y5f_c00351{bottom:250.560000px;}
.y68_c00351{bottom:288.720000px;}
.y5b_c00351{bottom:291.600000px;}
.y5a_c00351{bottom:292.320000px;}
.y5c_c00351{bottom:293.760000px;}
.y65_c00351{bottom:331.200000px;}
.y66_c00351{bottom:333.360000px;}
.y58_c00351{bottom:334.800000px;}
.y67_c00351{bottom:335.520000px;}
.y59_c00351{bottom:336.960000px;}
.y64_c00351{bottom:374.400000px;}
.y56_c00351{bottom:377.280000px;}
.y63_c00351{bottom:378.000000px;}
.y57_c00351{bottom:379.440000px;}
.y55_c00351{bottom:380.160000px;}
.y62_c00351{bottom:417.600000px;}
.y54_c00351{bottom:420.480000px;}
.y53_c00351{bottom:421.920000px;}
.y49_c00351{bottom:462.240000px;}
.y4a_c00351{bottom:465.120000px;}
.y48_c00351{bottom:492.480000px;}
.y46_c00351{bottom:493.920000px;}
.y44_c00351{bottom:496.080000px;}
.y45_c00351{bottom:496.800000px;}
.y47_c00351{bottom:497.520000px;}
.y41_c00351{bottom:536.400000px;}
.y40_c00351{bottom:537.840000px;}
.y3e_c00351{bottom:538.560000px;}
.y42_c00351{bottom:540.000000px;}
.y3f_c00351{bottom:540.720000px;}
.y43_c00351{bottom:541.440000px;}
.y3a_c00351{bottom:573.120000px;}
.y39_c00351{bottom:579.600000px;}
.y37_c00351{bottom:580.320000px;}
.y38_c00351{bottom:581.040000px;}
.y3b_c00351{bottom:581.760000px;}
.y35_c00351{bottom:582.480000px;}
.y36_c00351{bottom:583.200000px;}
.y3c_c00351{bottom:583.920000px;}
.y3d_c00351{bottom:584.640000px;}
.y34_c00351{bottom:616.320000px;}
.y32_c00351{bottom:623.520000px;}
.y33_c00351{bottom:624.240000px;}
.y31_c00351{bottom:624.960000px;}
.y30_c00351{bottom:656.640000px;}
.y2d_c00351{bottom:657.360000px;}
.y2f_c00351{bottom:658.800000px;}
.y2e_c00351{bottom:659.520000px;}
.y29_c00351{bottom:700.560000px;}
.y28_c00351{bottom:701.280000px;}
.y2a_c00351{bottom:702.000000px;}
.y2c_c00351{bottom:702.720000px;}
.y2b_c00351{bottom:703.440000px;}
.y27_c00351{bottom:742.320000px;}
.y25_c00351{bottom:743.040000px;}
.y26_c00351{bottom:743.760000px;}
.y23_c00351{bottom:744.480000px;}
.y24_c00351{bottom:746.640000px;}
.y1f_c00351{bottom:785.520000px;}
.y1d_c00351{bottom:786.960000px;}
.y22_c00351{bottom:787.680000px;}
.y1e_c00351{bottom:788.400000px;}
.y20_c00351{bottom:789.120000px;}
.y21_c00351{bottom:789.840000px;}
.y1b_c00351{bottom:828.720000px;}
.y1a_c00351{bottom:830.160000px;}
.y1c_c00351{bottom:830.880000px;}
.y16_c00351{bottom:871.920000px;}
.y14_c00351{bottom:872.640000px;}
.y19_c00351{bottom:873.360000px;}
.y18_c00351{bottom:874.080000px;}
.y17_c00351{bottom:874.800000px;}
.y15_c00351{bottom:875.520000px;}
.y11_c00351{bottom:914.400000px;}
.y13_c00351{bottom:915.120000px;}
.yf_c00351{bottom:915.840000px;}
.y10_c00351{bottom:916.560000px;}
.y12_c00351{bottom:918.000000px;}
.yb_c00351{bottom:957.600000px;}
.y9_c00351{bottom:959.040000px;}
.ye_c00351{bottom:959.760000px;}
.ya_c00351{bottom:961.920000px;}
.y8_c00351{bottom:1000.080000px;}
.y5_c00351{bottom:1001.520000px;}
.y7_c00351{bottom:1002.240000px;}
.yd_c00351{bottom:1002.960000px;}
.y6_c00351{bottom:1004.400000px;}
.y3_c00351{bottom:1044.000000px;}
.y2_c00351{bottom:1045.440000px;}
.yc_c00351{bottom:1046.880000px;}
.y4_c00351{bottom:1047.600000px;}
.y1_c00351{bottom:1096.560000px;}
.h12_c00351{height:15.550313px;}
.hf_c00351{height:33.692344px;}
.he_c00351{height:36.284062px;}
.hd_c00351{height:38.875781px;}
.h7_c00351{height:44.059219px;}
.h5_c00351{height:46.650937px;}
.ha_c00351{height:49.242656px;}
.hc_c00351{height:51.834375px;}
.h3_c00351{height:54.426094px;}
.h6_c00351{height:57.017812px;}
.h13_c00351{height:57.594375px;}
.h9_c00351{height:59.609531px;}
.hb_c00351{height:62.201250px;}
.h2_c00351{height:64.792969px;}
.h4_c00351{height:67.384687px;}
.h8_c00351{height:69.976406px;}
.h10_c00351{height:82.935000px;}
.h11_c00351{height:93.301875px;}
.h0_c00351{height:1157.760000px;}
.h1_c00351{height:1158.000000px;}
.w0_c00351{width:776.880000px;}
.w1_c00351{width:777.000000px;}
.x0_c00351{left:0.000000px;}
.x2_c00351{left:71.280000px;}
.x2e_c00351{left:72.720000px;}
.x37_c00351{left:74.160000px;}
.x6_c00351{left:145.440000px;}
.x3_c00351{left:147.600000px;}
.x1e_c00351{left:178.560000px;}
.x7_c00351{left:190.080000px;}
.x30_c00351{left:191.520000px;}
.x10_c00351{left:200.160000px;}
.x31_c00351{left:202.320000px;}
.x1f_c00351{left:234.000000px;}
.x8_c00351{left:244.080000px;}
.x24_c00351{left:254.880000px;}
.x38_c00351{left:277.920000px;}
.x27_c00351{left:287.280000px;}
.x4_c00351{left:298.080000px;}
.x17_c00351{left:309.600000px;}
.x11_c00351{left:319.680000px;}
.x20_c00351{left:322.560000px;}
.x35_c00351{left:330.480000px;}
.x21_c00351{left:331.920000px;}
.x1b_c00351{left:340.560000px;}
.x28_c00351{left:342.000000px;}
.x5_c00351{left:352.080000px;}
.x23_c00351{left:362.880000px;}
.x2f_c00351{left:364.320000px;}
.x12_c00351{left:374.400000px;}
.x36_c00351{left:383.040000px;}
.x1c_c00351{left:384.480000px;}
.x25_c00351{left:395.280000px;}
.x2c_c00351{left:416.160000px;}
.x1d_c00351{left:427.680000px;}
.x29_c00351{left:438.480000px;}
.x18_c00351{left:449.280000px;}
.x2d_c00351{left:459.360000px;}
.x13_c00351{left:470.880000px;}
.x2b_c00351{left:503.280000px;}
.x14_c00351{left:524.160000px;}
.x26_c00351{left:535.680000px;}
.x2a_c00351{left:557.280000px;}
.x15_c00351{left:568.800000px;}
.xc_c00351{left:589.680000px;}
.x22_c00351{left:591.120000px;}
.x19_c00351{left:601.920000px;}
.xe_c00351{left:622.080000px;}
.x9_c00351{left:624.240000px;}
.x1a_c00351{left:634.320000px;}
.x32_c00351{left:654.480000px;}
.xa_c00351{left:655.920000px;}
.x16_c00351{left:666.720000px;}
.x1_c00351{left:673.200000px;}
.xb_c00351{left:689.040000px;}
.x34_c00351{left:697.680000px;}
.xd_c00351{left:699.120000px;}
.x33_c00351{left:718.560000px;}
.xf_c00351{left:720.000000px;}
@media print{
.v1_c00351{vertical-align:-2.560000pt;}
.v0_c00351{vertical-align:0.000000pt;}
.v2_c00351{vertical-align:5.120000pt;}
.ls1_c00351{letter-spacing:0.000000pt;}
.ls0_c00351{letter-spacing:72.183467pt;}
.ws1_c00351{word-spacing:0.000000pt;}
.ws0_c00351{word-spacing:8.188800pt;}
.fs10_c00351{font-size:15.360000pt;}
.fsd_c00351{font-size:33.280000pt;}
.fsc_c00351{font-size:35.840000pt;}
.fsb_c00351{font-size:38.400000pt;}
.fs5_c00351{font-size:43.520000pt;}
.fs3_c00351{font-size:46.080000pt;}
.fs8_c00351{font-size:48.640000pt;}
.fsa_c00351{font-size:51.200000pt;}
.fs1_c00351{font-size:53.760000pt;}
.fs4_c00351{font-size:56.320000pt;}
.fs7_c00351{font-size:58.880000pt;}
.fs9_c00351{font-size:61.440000pt;}
.fs0_c00351{font-size:64.000000pt;}
.fs2_c00351{font-size:66.560000pt;}
.fs6_c00351{font-size:69.120000pt;}
.fse_c00351{font-size:81.920000pt;}
.fsf_c00351{font-size:92.160000pt;}
.y0_c00351{bottom:0.000000pt;}
.y70_c00351{bottom:35.200000pt;}
.y6f_c00351{bottom:38.400000pt;}
.y75_c00351{bottom:39.040000pt;}
.y76_c00351{bottom:40.320000pt;}
.y6d_c00351{bottom:72.960000pt;}
.y6e_c00351{bottom:74.240000pt;}
.y6c_c00351{bottom:76.800000pt;}
.y73_c00351{bottom:78.080000pt;}
.y74_c00351{bottom:79.360000pt;}
.y6b_c00351{bottom:111.360000pt;}
.y6a_c00351{bottom:114.560000pt;}
.y72_c00351{bottom:115.200000pt;}
.y71_c00351{bottom:117.120000pt;}
.y52_c00351{bottom:151.680000pt;}
.y51_c00351{bottom:153.600000pt;}
.y50_c00351{bottom:154.880000pt;}
.y4c_c00351{bottom:179.200000pt;}
.y4d_c00351{bottom:181.120000pt;}
.y4b_c00351{bottom:182.400000pt;}
.y60_c00351{bottom:183.040000pt;}
.y4e_c00351{bottom:183.680000pt;}
.y4f_c00351{bottom:184.320000pt;}
.y61_c00351{bottom:184.960000pt;}
.y69_c00351{bottom:217.600000pt;}
.y5e_c00351{bottom:220.800000pt;}
.y5d_c00351{bottom:221.440000pt;}
.y5f_c00351{bottom:222.720000pt;}
.y68_c00351{bottom:256.640000pt;}
.y5b_c00351{bottom:259.200000pt;}
.y5a_c00351{bottom:259.840000pt;}
.y5c_c00351{bottom:261.120000pt;}
.y65_c00351{bottom:294.400000pt;}
.y66_c00351{bottom:296.320000pt;}
.y58_c00351{bottom:297.600000pt;}
.y67_c00351{bottom:298.240000pt;}
.y59_c00351{bottom:299.520000pt;}
.y64_c00351{bottom:332.800000pt;}
.y56_c00351{bottom:335.360000pt;}
.y63_c00351{bottom:336.000000pt;}
.y57_c00351{bottom:337.280000pt;}
.y55_c00351{bottom:337.920000pt;}
.y62_c00351{bottom:371.200000pt;}
.y54_c00351{bottom:373.760000pt;}
.y53_c00351{bottom:375.040000pt;}
.y49_c00351{bottom:410.880000pt;}
.y4a_c00351{bottom:413.440000pt;}
.y48_c00351{bottom:437.760000pt;}
.y46_c00351{bottom:439.040000pt;}
.y44_c00351{bottom:440.960000pt;}
.y45_c00351{bottom:441.600000pt;}
.y47_c00351{bottom:442.240000pt;}
.y41_c00351{bottom:476.800000pt;}
.y40_c00351{bottom:478.080000pt;}
.y3e_c00351{bottom:478.720000pt;}
.y42_c00351{bottom:480.000000pt;}
.y3f_c00351{bottom:480.640000pt;}
.y43_c00351{bottom:481.280000pt;}
.y3a_c00351{bottom:509.440000pt;}
.y39_c00351{bottom:515.200000pt;}
.y37_c00351{bottom:515.840000pt;}
.y38_c00351{bottom:516.480000pt;}
.y3b_c00351{bottom:517.120000pt;}
.y35_c00351{bottom:517.760000pt;}
.y36_c00351{bottom:518.400000pt;}
.y3c_c00351{bottom:519.040000pt;}
.y3d_c00351{bottom:519.680000pt;}
.y34_c00351{bottom:547.840000pt;}
.y32_c00351{bottom:554.240000pt;}
.y33_c00351{bottom:554.880000pt;}
.y31_c00351{bottom:555.520000pt;}
.y30_c00351{bottom:583.680000pt;}
.y2d_c00351{bottom:584.320000pt;}
.y2f_c00351{bottom:585.600000pt;}
.y2e_c00351{bottom:586.240000pt;}
.y29_c00351{bottom:622.720000pt;}
.y28_c00351{bottom:623.360000pt;}
.y2a_c00351{bottom:624.000000pt;}
.y2c_c00351{bottom:624.640000pt;}
.y2b_c00351{bottom:625.280000pt;}
.y27_c00351{bottom:659.840000pt;}
.y25_c00351{bottom:660.480000pt;}
.y26_c00351{bottom:661.120000pt;}
.y23_c00351{bottom:661.760000pt;}
.y24_c00351{bottom:663.680000pt;}
.y1f_c00351{bottom:698.240000pt;}
.y1d_c00351{bottom:699.520000pt;}
.y22_c00351{bottom:700.160000pt;}
.y1e_c00351{bottom:700.800000pt;}
.y20_c00351{bottom:701.440000pt;}
.y21_c00351{bottom:702.080000pt;}
.y1b_c00351{bottom:736.640000pt;}
.y1a_c00351{bottom:737.920000pt;}
.y1c_c00351{bottom:738.560000pt;}
.y16_c00351{bottom:775.040000pt;}
.y14_c00351{bottom:775.680000pt;}
.y19_c00351{bottom:776.320000pt;}
.y18_c00351{bottom:776.960000pt;}
.y17_c00351{bottom:777.600000pt;}
.y15_c00351{bottom:778.240000pt;}
.y11_c00351{bottom:812.800000pt;}
.y13_c00351{bottom:813.440000pt;}
.yf_c00351{bottom:814.080000pt;}
.y10_c00351{bottom:814.720000pt;}
.y12_c00351{bottom:816.000000pt;}
.yb_c00351{bottom:851.200000pt;}
.y9_c00351{bottom:852.480000pt;}
.ye_c00351{bottom:853.120000pt;}
.ya_c00351{bottom:855.040000pt;}
.y8_c00351{bottom:888.960000pt;}
.y5_c00351{bottom:890.240000pt;}
.y7_c00351{bottom:890.880000pt;}
.yd_c00351{bottom:891.520000pt;}
.y6_c00351{bottom:892.800000pt;}
.y3_c00351{bottom:928.000000pt;}
.y2_c00351{bottom:929.280000pt;}
.yc_c00351{bottom:930.560000pt;}
.y4_c00351{bottom:931.200000pt;}
.y1_c00351{bottom:974.720000pt;}
.h12_c00351{height:13.822500pt;}
.hf_c00351{height:29.948750pt;}
.he_c00351{height:32.252500pt;}
.hd_c00351{height:34.556250pt;}
.h7_c00351{height:39.163750pt;}
.h5_c00351{height:41.467500pt;}
.ha_c00351{height:43.771250pt;}
.hc_c00351{height:46.075000pt;}
.h3_c00351{height:48.378750pt;}
.h6_c00351{height:50.682500pt;}
.h13_c00351{height:51.195000pt;}
.h9_c00351{height:52.986250pt;}
.hb_c00351{height:55.290000pt;}
.h2_c00351{height:57.593750pt;}
.h4_c00351{height:59.897500pt;}
.h8_c00351{height:62.201250pt;}
.h10_c00351{height:73.720000pt;}
.h11_c00351{height:82.935000pt;}
.h0_c00351{height:1029.120000pt;}
.h1_c00351{height:1029.333333pt;}
.w0_c00351{width:690.560000pt;}
.w1_c00351{width:690.666667pt;}
.x0_c00351{left:0.000000pt;}
.x2_c00351{left:63.360000pt;}
.x2e_c00351{left:64.640000pt;}
.x37_c00351{left:65.920000pt;}
.x6_c00351{left:129.280000pt;}
.x3_c00351{left:131.200000pt;}
.x1e_c00351{left:158.720000pt;}
.x7_c00351{left:168.960000pt;}
.x30_c00351{left:170.240000pt;}
.x10_c00351{left:177.920000pt;}
.x31_c00351{left:179.840000pt;}
.x1f_c00351{left:208.000000pt;}
.x8_c00351{left:216.960000pt;}
.x24_c00351{left:226.560000pt;}
.x38_c00351{left:247.040000pt;}
.x27_c00351{left:255.360000pt;}
.x4_c00351{left:264.960000pt;}
.x17_c00351{left:275.200000pt;}
.x11_c00351{left:284.160000pt;}
.x20_c00351{left:286.720000pt;}
.x35_c00351{left:293.760000pt;}
.x21_c00351{left:295.040000pt;}
.x1b_c00351{left:302.720000pt;}
.x28_c00351{left:304.000000pt;}
.x5_c00351{left:312.960000pt;}
.x23_c00351{left:322.560000pt;}
.x2f_c00351{left:323.840000pt;}
.x12_c00351{left:332.800000pt;}
.x36_c00351{left:340.480000pt;}
.x1c_c00351{left:341.760000pt;}
.x25_c00351{left:351.360000pt;}
.x2c_c00351{left:369.920000pt;}
.x1d_c00351{left:380.160000pt;}
.x29_c00351{left:389.760000pt;}
.x18_c00351{left:399.360000pt;}
.x2d_c00351{left:408.320000pt;}
.x13_c00351{left:418.560000pt;}
.x2b_c00351{left:447.360000pt;}
.x14_c00351{left:465.920000pt;}
.x26_c00351{left:476.160000pt;}
.x2a_c00351{left:495.360000pt;}
.x15_c00351{left:505.600000pt;}
.xc_c00351{left:524.160000pt;}
.x22_c00351{left:525.440000pt;}
.x19_c00351{left:535.040000pt;}
.xe_c00351{left:552.960000pt;}
.x9_c00351{left:554.880000pt;}
.x1a_c00351{left:563.840000pt;}
.x32_c00351{left:581.760000pt;}
.xa_c00351{left:583.040000pt;}
.x16_c00351{left:592.640000pt;}
.x1_c00351{left:598.400000pt;}
.xb_c00351{left:612.480000pt;}
.x34_c00351{left:620.160000pt;}
.xd_c00351{left:621.440000pt;}
.x33_c00351{left:638.720000pt;}
.xf_c00351{left:640.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_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_d477b8afe4b3b30374f202b1.woff2')format("woff");}.ff1_c00352{font-family:ff1_c00352;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m47_c00352{transform:matrix(0.175550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175550,0.000000,0.000000,0.250000,0,0);}
.m42_c00352{transform:matrix(0.177400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177400,0.000000,0.000000,0.250000,0,0);}
.m48_c00352{transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);}
.m45_c00352{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m44_c00352{transform:matrix(0.201075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201075,0.000000,0.000000,0.250000,0,0);}
.m5e_c00352{transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);}
.m4a_c00352{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m43_c00352{transform:matrix(0.217825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217825,0.000000,0.000000,0.250000,0,0);}
.m4b_c00352{transform:matrix(0.221675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221675,0.000000,0.000000,0.250000,0,0);}
.m12_c00352{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);}
.m55_c00352{transform:matrix(0.227675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227675,0.000000,0.000000,0.250000,0,0);}
.m11_c00352{transform:matrix(0.228625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228625,0.000000,0.000000,0.250000,0,0);}
.m52_c00352{transform:matrix(0.231050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231050,0.000000,0.000000,0.250000,0,0);}
.m49_c00352{transform:matrix(0.233575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233575,0.000000,0.000000,0.250000,0,0);}
.m7_c00352{transform:matrix(0.234925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234925,0.000000,0.000000,0.250000,0,0);}
.m17_c00352{transform:matrix(0.236075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236075,0.000000,0.000000,0.250000,0,0);}
.m1d_c00352{transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);}
.m5d_c00352{transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);}
.m2b_c00352{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);}
.m57_c00352{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m18_c00352{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m5_c00352{transform:matrix(0.247275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247275,0.000000,0.000000,0.250000,0,0);}
.m60_c00352{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m13_c00352{transform:matrix(0.248050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248050,0.000000,0.000000,0.250000,0,0);}
.m20_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);}
.m23_c00352{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);}
.m4f_c00352{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1_c00352{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m4_c00352{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00352{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);}
.m53_c00352{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m26_c00352{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mc_c00352{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);}
.m4c_c00352{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m2_c00352{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);}
.m3f_c00352{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.ma_c00352{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00352{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);}
.m37_c00352{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m16_c00352{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m15_c00352{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m0_c00352{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m3_c00352{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00352{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00352{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00352{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m21_c00352{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m30_c00352{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m38_c00352{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m22_c00352{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m19_c00352{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00352{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m6_c00352{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m51_c00352{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00352{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m10_c00352{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.md_c00352{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00352{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m9_c00352{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m40_c00352{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m62_c00352{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);}
.m35_c00352{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00352{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);}
.m5b_c00352{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m33_c00352{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);}
.m41_c00352{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m61_c00352{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);}
.m39_c00352{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.me_c00352{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m50_c00352{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m59_c00352{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);}
.m5f_c00352{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);}
.m4d_c00352{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00352{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);}
.m5c_c00352{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);}
.m4e_c00352{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00352{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m36_c00352{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.mf_c00352{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.mb_c00352{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m27_c00352{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m31_c00352{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m32_c00352{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00352{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m29_c00352{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);}
.m24_c00352{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);}
.m3c_c00352{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);}
.m56_c00352{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m8_c00352{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);}
.m2d_c00352{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m28_c00352{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00352{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00352{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m14_c00352{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m34_c00352{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m25_c00352{transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);}
.m54_c00352{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m58_c00352{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m46_c00352{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.v1_c00352{vertical-align:-2.880000px;}
.v0_c00352{vertical-align:0.000000px;}
.ls0_c00352{letter-spacing:0.000000px;}
.sc__c00352{text-shadow:none;}
.sc0_c00352{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00352{-webkit-text-stroke:0px transparent;}
.sc0_c00352{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00352{word-spacing:0.000000px;}
.ws0_c00352{word-spacing:9.475200px;}
.ws2_c00352{word-spacing:11.693143px;}
.ws1_c00352{word-spacing:11.856000px;}
.fc0_c00352{color:transparent;}
.fsd_c00352{font-size:25.920000px;}
.fsc_c00352{font-size:37.440000px;}
.fse_c00352{font-size:40.320000px;}
.fsa_c00352{font-size:43.200000px;}
.fs8_c00352{font-size:48.960000px;}
.fs7_c00352{font-size:51.840000px;}
.fs6_c00352{font-size:54.720000px;}
.fs9_c00352{font-size:57.600000px;}
.fs3_c00352{font-size:60.480000px;}
.fsb_c00352{font-size:63.360000px;}
.fs0_c00352{font-size:66.240000px;}
.fs5_c00352{font-size:69.120000px;}
.fs2_c00352{font-size:72.000000px;}
.fs1_c00352{font-size:74.880000px;}
.fs4_c00352{font-size:77.760000px;}
.fsf_c00352{font-size:86.400000px;}
.y0_c00352{bottom:0.000000px;}
.y87_c00352{bottom:17.280000px;}
.y86_c00352{bottom:18.000000px;}
.y89_c00352{bottom:19.440000px;}
.y85_c00352{bottom:20.160000px;}
.y84_c00352{bottom:21.600000px;}
.y88_c00352{bottom:22.320000px;}
.y83_c00352{bottom:58.320000px;}
.y81_c00352{bottom:61.920000px;}
.y82_c00352{bottom:62.640000px;}
.y80_c00352{bottom:64.080000px;}
.y7b_c00352{bottom:91.440000px;}
.y7d_c00352{bottom:93.600000px;}
.y7e_c00352{bottom:94.320000px;}
.y7a_c00352{bottom:95.040000px;}
.y7f_c00352{bottom:95.760000px;}
.y7c_c00352{bottom:96.480000px;}
.y76_c00352{bottom:128.880000px;}
.y74_c00352{bottom:134.640000px;}
.y78_c00352{bottom:136.800000px;}
.y73_c00352{bottom:137.520000px;}
.y77_c00352{bottom:138.240000px;}
.y75_c00352{bottom:138.960000px;}
.y79_c00352{bottom:139.680000px;}
.y6d_c00352{bottom:177.120000px;}
.y6e_c00352{bottom:177.840000px;}
.y70_c00352{bottom:180.000000px;}
.y72_c00352{bottom:180.720000px;}
.y6c_c00352{bottom:181.440000px;}
.y6f_c00352{bottom:182.160000px;}
.y71_c00352{bottom:182.880000px;}
.y67_c00352{bottom:221.040000px;}
.y68_c00352{bottom:222.480000px;}
.y6b_c00352{bottom:223.200000px;}
.y6a_c00352{bottom:223.920000px;}
.y66_c00352{bottom:224.640000px;}
.y69_c00352{bottom:225.360000px;}
.y61_c00352{bottom:263.520000px;}
.y62_c00352{bottom:264.240000px;}
.y63_c00352{bottom:265.680000px;}
.y65_c00352{bottom:266.400000px;}
.y60_c00352{bottom:267.120000px;}
.y64_c00352{bottom:267.840000px;}
.y4a_c00352{bottom:307.440000px;}
.y49_c00352{bottom:308.880000px;}
.y45_c00352{bottom:339.840000px;}
.y46_c00352{bottom:341.280000px;}
.y5f_c00352{bottom:342.000000px;}
.y47_c00352{bottom:342.720000px;}
.y44_c00352{bottom:343.440000px;}
.y48_c00352{bottom:344.160000px;}
.y42_c00352{bottom:383.760000px;}
.y43_c00352{bottom:384.480000px;}
.y5e_c00352{bottom:385.920000px;}
.y41_c00352{bottom:386.640000px;}
.y5d_c00352{bottom:387.360000px;}
.y40_c00352{bottom:427.680000px;}
.y3f_c00352{bottom:430.560000px;}
.y3a_c00352{bottom:458.640000px;}
.y3c_c00352{bottom:460.800000px;}
.y5c_c00352{bottom:461.520000px;}
.y3e_c00352{bottom:462.240000px;}
.y39_c00352{bottom:462.960000px;}
.y3b_c00352{bottom:463.680000px;}
.y3d_c00352{bottom:465.840000px;}
.y37_c00352{bottom:503.280000px;}
.y36_c00352{bottom:504.000000px;}
.y38_c00352{bottom:505.440000px;}
.y35_c00352{bottom:506.160000px;}
.y30_c00352{bottom:534.960000px;}
.y32_c00352{bottom:535.680000px;}
.y2f_c00352{bottom:537.120000px;}
.y34_c00352{bottom:537.840000px;}
.y33_c00352{bottom:538.560000px;}
.y31_c00352{bottom:539.280000px;}
.y2e_c00352{bottom:578.880000px;}
.y2d_c00352{bottom:581.760000px;}
.y2c_c00352{bottom:582.480000px;}
.y29_c00352{bottom:610.560000px;}
.y5b_c00352{bottom:612.000000px;}
.y28_c00352{bottom:612.720000px;}
.y2b_c00352{bottom:614.160000px;}
.y2a_c00352{bottom:614.880000px;}
.y25_c00352{bottom:653.760000px;}
.y24_c00352{bottom:655.200000px;}
.y26_c00352{bottom:655.920000px;}
.y5a_c00352{bottom:657.360000px;}
.y27_c00352{bottom:658.080000px;}
.y21_c00352{bottom:696.960000px;}
.y59_c00352{bottom:697.680000px;}
.y20_c00352{bottom:698.400000px;}
.y23_c00352{bottom:699.840000px;}
.y22_c00352{bottom:700.560000px;}
.y1f_c00352{bottom:739.440000px;}
.y1c_c00352{bottom:740.160000px;}
.y1b_c00352{bottom:740.880000px;}
.y57_c00352{bottom:741.600000px;}
.y58_c00352{bottom:742.320000px;}
.y1e_c00352{bottom:743.040000px;}
.y1d_c00352{bottom:743.760000px;}
.y19_c00352{bottom:782.640000px;}
.y1a_c00352{bottom:784.080000px;}
.y18_c00352{bottom:784.800000px;}
.y56_c00352{bottom:785.520000px;}
.y16_c00352{bottom:825.840000px;}
.y17_c00352{bottom:826.560000px;}
.y54_c00352{bottom:827.280000px;}
.y15_c00352{bottom:828.000000px;}
.y55_c00352{bottom:828.720000px;}
.y12_c00352{bottom:869.040000px;}
.y14_c00352{bottom:869.760000px;}
.y11_c00352{bottom:870.480000px;}
.y53_c00352{bottom:871.200000px;}
.y13_c00352{bottom:873.360000px;}
.y10_c00352{bottom:912.240000px;}
.yd_c00352{bottom:912.960000px;}
.yf_c00352{bottom:913.680000px;}
.yc_c00352{bottom:914.400000px;}
.y52_c00352{bottom:915.840000px;}
.y51_c00352{bottom:916.560000px;}
.ye_c00352{bottom:917.280000px;}
.yb_c00352{bottom:948.240000px;}
.y6_c00352{bottom:955.440000px;}
.y8_c00352{bottom:956.160000px;}
.y5_c00352{bottom:956.880000px;}
.y9_c00352{bottom:957.600000px;}
.ya_c00352{bottom:958.320000px;}
.y7_c00352{bottom:959.760000px;}
.y4_c00352{bottom:999.360000px;}
.y3_c00352{bottom:1000.800000px;}
.y4f_c00352{bottom:1002.240000px;}
.y50_c00352{bottom:1002.960000px;}
.y4e_c00352{bottom:1003.680000px;}
.y2_c00352{bottom:1043.280000px;}
.y1_c00352{bottom:1044.000000px;}
.y4d_c00352{bottom:1044.720000px;}
.y4b_c00352{bottom:1045.440000px;}
.y4c_c00352{bottom:1090.800000px;}
.hf_c00352{height:23.325469px;}
.he_c00352{height:33.692344px;}
.h10_c00352{height:36.284062px;}
.hc_c00352{height:38.875781px;}
.ha_c00352{height:44.059219px;}
.h9_c00352{height:46.650937px;}
.h8_c00352{height:49.242656px;}
.hb_c00352{height:51.834375px;}
.h5_c00352{height:54.426094px;}
.hd_c00352{height:57.017812px;}
.h2_c00352{height:59.609531px;}
.h7_c00352{height:62.201250px;}
.h4_c00352{height:64.792969px;}
.h3_c00352{height:67.384687px;}
.h6_c00352{height:69.976406px;}
.h11_c00352{height:77.751563px;}
.h0_c00352{height:1155.600000px;}
.h1_c00352{height:1155.750000px;}
.w1_c00352{width:773.250000px;}
.w0_c00352{width:773.280000px;}
.x0_c00352{left:0.000000px;}
.x1_c00352{left:69.120000px;}
.x24_c00352{left:70.560000px;}
.x36_c00352{left:72.720000px;}
.x1b_c00352{left:142.560000px;}
.x2_c00352{left:144.000000px;}
.x1d_c00352{left:187.200000px;}
.x1a_c00352{left:198.000000px;}
.x11_c00352{left:231.120000px;}
.x3_c00352{left:241.200000px;}
.x26_c00352{left:252.720000px;}
.x35_c00352{left:262.080000px;}
.x16_c00352{left:263.520000px;}
.xb_c00352{left:274.320000px;}
.x18_c00352{left:284.400000px;}
.x4_c00352{left:285.840000px;}
.x5_c00352{left:295.920000px;}
.xf_c00352{left:306.720000px;}
.xc_c00352{left:328.320000px;}
.x12_c00352{left:337.680000px;}
.x6_c00352{left:348.480000px;}
.x10_c00352{left:360.720000px;}
.x13_c00352{left:382.320000px;}
.x7_c00352{left:393.120000px;}
.x23_c00352{left:403.200000px;}
.x14_c00352{left:413.280000px;}
.x20_c00352{left:414.720000px;}
.x1e_c00352{left:436.320000px;}
.x17_c00352{left:446.400000px;}
.x33_c00352{left:456.480000px;}
.x15_c00352{left:457.920000px;}
.x21_c00352{left:468.720000px;}
.x1c_c00352{left:478.080000px;}
.x19_c00352{left:479.520000px;}
.x1f_c00352{left:490.320000px;}
.x34_c00352{left:499.680000px;}
.x8_c00352{left:501.840000px;}
.x22_c00352{left:511.920000px;}
.xa_c00352{left:513.360000px;}
.xd_c00352{left:523.440000px;}
.x27_c00352{left:557.280000px;}
.x25_c00352{left:565.200000px;}
.x9_c00352{left:566.640000px;}
.xe_c00352{left:568.080000px;}
.x2e_c00352{left:587.520000px;}
.x2d_c00352{left:599.040000px;}
.x30_c00352{left:620.640000px;}
.x29_c00352{left:622.080000px;}
.x32_c00352{left:652.320000px;}
.x2a_c00352{left:654.480000px;}
.x28_c00352{left:682.560000px;}
.x2b_c00352{left:687.600000px;}
.x31_c00352{left:695.520000px;}
.x2c_c00352{left:696.960000px;}
.x2f_c00352{left:717.840000px;}
@media print{
.v1_c00352{vertical-align:-2.560000pt;}
.v0_c00352{vertical-align:0.000000pt;}
.ls0_c00352{letter-spacing:0.000000pt;}
.ws3_c00352{word-spacing:0.000000pt;}
.ws0_c00352{word-spacing:8.422400pt;}
.ws2_c00352{word-spacing:10.393905pt;}
.ws1_c00352{word-spacing:10.538667pt;}
.fsd_c00352{font-size:23.040000pt;}
.fsc_c00352{font-size:33.280000pt;}
.fse_c00352{font-size:35.840000pt;}
.fsa_c00352{font-size:38.400000pt;}
.fs8_c00352{font-size:43.520000pt;}
.fs7_c00352{font-size:46.080000pt;}
.fs6_c00352{font-size:48.640000pt;}
.fs9_c00352{font-size:51.200000pt;}
.fs3_c00352{font-size:53.760000pt;}
.fsb_c00352{font-size:56.320000pt;}
.fs0_c00352{font-size:58.880000pt;}
.fs5_c00352{font-size:61.440000pt;}
.fs2_c00352{font-size:64.000000pt;}
.fs1_c00352{font-size:66.560000pt;}
.fs4_c00352{font-size:69.120000pt;}
.fsf_c00352{font-size:76.800000pt;}
.y0_c00352{bottom:0.000000pt;}
.y87_c00352{bottom:15.360000pt;}
.y86_c00352{bottom:16.000000pt;}
.y89_c00352{bottom:17.280000pt;}
.y85_c00352{bottom:17.920000pt;}
.y84_c00352{bottom:19.200000pt;}
.y88_c00352{bottom:19.840000pt;}
.y83_c00352{bottom:51.840000pt;}
.y81_c00352{bottom:55.040000pt;}
.y82_c00352{bottom:55.680000pt;}
.y80_c00352{bottom:56.960000pt;}
.y7b_c00352{bottom:81.280000pt;}
.y7d_c00352{bottom:83.200000pt;}
.y7e_c00352{bottom:83.840000pt;}
.y7a_c00352{bottom:84.480000pt;}
.y7f_c00352{bottom:85.120000pt;}
.y7c_c00352{bottom:85.760000pt;}
.y76_c00352{bottom:114.560000pt;}
.y74_c00352{bottom:119.680000pt;}
.y78_c00352{bottom:121.600000pt;}
.y73_c00352{bottom:122.240000pt;}
.y77_c00352{bottom:122.880000pt;}
.y75_c00352{bottom:123.520000pt;}
.y79_c00352{bottom:124.160000pt;}
.y6d_c00352{bottom:157.440000pt;}
.y6e_c00352{bottom:158.080000pt;}
.y70_c00352{bottom:160.000000pt;}
.y72_c00352{bottom:160.640000pt;}
.y6c_c00352{bottom:161.280000pt;}
.y6f_c00352{bottom:161.920000pt;}
.y71_c00352{bottom:162.560000pt;}
.y67_c00352{bottom:196.480000pt;}
.y68_c00352{bottom:197.760000pt;}
.y6b_c00352{bottom:198.400000pt;}
.y6a_c00352{bottom:199.040000pt;}
.y66_c00352{bottom:199.680000pt;}
.y69_c00352{bottom:200.320000pt;}
.y61_c00352{bottom:234.240000pt;}
.y62_c00352{bottom:234.880000pt;}
.y63_c00352{bottom:236.160000pt;}
.y65_c00352{bottom:236.800000pt;}
.y60_c00352{bottom:237.440000pt;}
.y64_c00352{bottom:238.080000pt;}
.y4a_c00352{bottom:273.280000pt;}
.y49_c00352{bottom:274.560000pt;}
.y45_c00352{bottom:302.080000pt;}
.y46_c00352{bottom:303.360000pt;}
.y5f_c00352{bottom:304.000000pt;}
.y47_c00352{bottom:304.640000pt;}
.y44_c00352{bottom:305.280000pt;}
.y48_c00352{bottom:305.920000pt;}
.y42_c00352{bottom:341.120000pt;}
.y43_c00352{bottom:341.760000pt;}
.y5e_c00352{bottom:343.040000pt;}
.y41_c00352{bottom:343.680000pt;}
.y5d_c00352{bottom:344.320000pt;}
.y40_c00352{bottom:380.160000pt;}
.y3f_c00352{bottom:382.720000pt;}
.y3a_c00352{bottom:407.680000pt;}
.y3c_c00352{bottom:409.600000pt;}
.y5c_c00352{bottom:410.240000pt;}
.y3e_c00352{bottom:410.880000pt;}
.y39_c00352{bottom:411.520000pt;}
.y3b_c00352{bottom:412.160000pt;}
.y3d_c00352{bottom:414.080000pt;}
.y37_c00352{bottom:447.360000pt;}
.y36_c00352{bottom:448.000000pt;}
.y38_c00352{bottom:449.280000pt;}
.y35_c00352{bottom:449.920000pt;}
.y30_c00352{bottom:475.520000pt;}
.y32_c00352{bottom:476.160000pt;}
.y2f_c00352{bottom:477.440000pt;}
.y34_c00352{bottom:478.080000pt;}
.y33_c00352{bottom:478.720000pt;}
.y31_c00352{bottom:479.360000pt;}
.y2e_c00352{bottom:514.560000pt;}
.y2d_c00352{bottom:517.120000pt;}
.y2c_c00352{bottom:517.760000pt;}
.y29_c00352{bottom:542.720000pt;}
.y5b_c00352{bottom:544.000000pt;}
.y28_c00352{bottom:544.640000pt;}
.y2b_c00352{bottom:545.920000pt;}
.y2a_c00352{bottom:546.560000pt;}
.y25_c00352{bottom:581.120000pt;}
.y24_c00352{bottom:582.400000pt;}
.y26_c00352{bottom:583.040000pt;}
.y5a_c00352{bottom:584.320000pt;}
.y27_c00352{bottom:584.960000pt;}
.y21_c00352{bottom:619.520000pt;}
.y59_c00352{bottom:620.160000pt;}
.y20_c00352{bottom:620.800000pt;}
.y23_c00352{bottom:622.080000pt;}
.y22_c00352{bottom:622.720000pt;}
.y1f_c00352{bottom:657.280000pt;}
.y1c_c00352{bottom:657.920000pt;}
.y1b_c00352{bottom:658.560000pt;}
.y57_c00352{bottom:659.200000pt;}
.y58_c00352{bottom:659.840000pt;}
.y1e_c00352{bottom:660.480000pt;}
.y1d_c00352{bottom:661.120000pt;}
.y19_c00352{bottom:695.680000pt;}
.y1a_c00352{bottom:696.960000pt;}
.y18_c00352{bottom:697.600000pt;}
.y56_c00352{bottom:698.240000pt;}
.y16_c00352{bottom:734.080000pt;}
.y17_c00352{bottom:734.720000pt;}
.y54_c00352{bottom:735.360000pt;}
.y15_c00352{bottom:736.000000pt;}
.y55_c00352{bottom:736.640000pt;}
.y12_c00352{bottom:772.480000pt;}
.y14_c00352{bottom:773.120000pt;}
.y11_c00352{bottom:773.760000pt;}
.y53_c00352{bottom:774.400000pt;}
.y13_c00352{bottom:776.320000pt;}
.y10_c00352{bottom:810.880000pt;}
.yd_c00352{bottom:811.520000pt;}
.yf_c00352{bottom:812.160000pt;}
.yc_c00352{bottom:812.800000pt;}
.y52_c00352{bottom:814.080000pt;}
.y51_c00352{bottom:814.720000pt;}
.ye_c00352{bottom:815.360000pt;}
.yb_c00352{bottom:842.880000pt;}
.y6_c00352{bottom:849.280000pt;}
.y8_c00352{bottom:849.920000pt;}
.y5_c00352{bottom:850.560000pt;}
.y9_c00352{bottom:851.200000pt;}
.ya_c00352{bottom:851.840000pt;}
.y7_c00352{bottom:853.120000pt;}
.y4_c00352{bottom:888.320000pt;}
.y3_c00352{bottom:889.600000pt;}
.y4f_c00352{bottom:890.880000pt;}
.y50_c00352{bottom:891.520000pt;}
.y4e_c00352{bottom:892.160000pt;}
.y2_c00352{bottom:927.360000pt;}
.y1_c00352{bottom:928.000000pt;}
.y4d_c00352{bottom:928.640000pt;}
.y4b_c00352{bottom:929.280000pt;}
.y4c_c00352{bottom:969.600000pt;}
.hf_c00352{height:20.733750pt;}
.he_c00352{height:29.948750pt;}
.h10_c00352{height:32.252500pt;}
.hc_c00352{height:34.556250pt;}
.ha_c00352{height:39.163750pt;}
.h9_c00352{height:41.467500pt;}
.h8_c00352{height:43.771250pt;}
.hb_c00352{height:46.075000pt;}
.h5_c00352{height:48.378750pt;}
.hd_c00352{height:50.682500pt;}
.h2_c00352{height:52.986250pt;}
.h7_c00352{height:55.290000pt;}
.h4_c00352{height:57.593750pt;}
.h3_c00352{height:59.897500pt;}
.h6_c00352{height:62.201250pt;}
.h11_c00352{height:69.112500pt;}
.h0_c00352{height:1027.200000pt;}
.h1_c00352{height:1027.333333pt;}
.w1_c00352{width:687.333333pt;}
.w0_c00352{width:687.360000pt;}
.x0_c00352{left:0.000000pt;}
.x1_c00352{left:61.440000pt;}
.x24_c00352{left:62.720000pt;}
.x36_c00352{left:64.640000pt;}
.x1b_c00352{left:126.720000pt;}
.x2_c00352{left:128.000000pt;}
.x1d_c00352{left:166.400000pt;}
.x1a_c00352{left:176.000000pt;}
.x11_c00352{left:205.440000pt;}
.x3_c00352{left:214.400000pt;}
.x26_c00352{left:224.640000pt;}
.x35_c00352{left:232.960000pt;}
.x16_c00352{left:234.240000pt;}
.xb_c00352{left:243.840000pt;}
.x18_c00352{left:252.800000pt;}
.x4_c00352{left:254.080000pt;}
.x5_c00352{left:263.040000pt;}
.xf_c00352{left:272.640000pt;}
.xc_c00352{left:291.840000pt;}
.x12_c00352{left:300.160000pt;}
.x6_c00352{left:309.760000pt;}
.x10_c00352{left:320.640000pt;}
.x13_c00352{left:339.840000pt;}
.x7_c00352{left:349.440000pt;}
.x23_c00352{left:358.400000pt;}
.x14_c00352{left:367.360000pt;}
.x20_c00352{left:368.640000pt;}
.x1e_c00352{left:387.840000pt;}
.x17_c00352{left:396.800000pt;}
.x33_c00352{left:405.760000pt;}
.x15_c00352{left:407.040000pt;}
.x21_c00352{left:416.640000pt;}
.x1c_c00352{left:424.960000pt;}
.x19_c00352{left:426.240000pt;}
.x1f_c00352{left:435.840000pt;}
.x34_c00352{left:444.160000pt;}
.x8_c00352{left:446.080000pt;}
.x22_c00352{left:455.040000pt;}
.xa_c00352{left:456.320000pt;}
.xd_c00352{left:465.280000pt;}
.x27_c00352{left:495.360000pt;}
.x25_c00352{left:502.400000pt;}
.x9_c00352{left:503.680000pt;}
.xe_c00352{left:504.960000pt;}
.x2e_c00352{left:522.240000pt;}
.x2d_c00352{left:532.480000pt;}
.x30_c00352{left:551.680000pt;}
.x29_c00352{left:552.960000pt;}
.x32_c00352{left:579.840000pt;}
.x2a_c00352{left:581.760000pt;}
.x28_c00352{left:606.720000pt;}
.x2b_c00352{left:611.200000pt;}
.x31_c00352{left:618.240000pt;}
.x2c_c00352{left:619.520000pt;}
.x2f_c00352{left:638.080000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5d30a866bbde4a797abce29d.woff2')format("woff");}.ff1_c00353{font-family:ff1_c00353;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5a_c00353{transform:matrix(0.165075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165075,0.000000,0.000000,0.250000,0,0);}
.m4b_c00353{transform:matrix(0.183400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183400,0.000000,0.000000,0.250000,0,0);}
.m1b_c00353{transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);}
.m41_c00353{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.m4d_c00353{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mf_c00353{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);}
.m34_c00353{transform:matrix(0.227725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227725,0.000000,0.000000,0.250000,0,0);}
.m44_c00353{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m2d_c00353{transform:matrix(0.239225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239225,0.000000,0.000000,0.250000,0,0);}
.m27_c00353{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00353{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m52_c00353{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00353{transform:matrix(0.248425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248425,0.000000,0.000000,0.250000,0,0);}
.m58_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);}
.m28_c00353{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m6_c00353{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00353{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00353{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m25_c00353{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.md_c00353{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00353{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m8_c00353{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m23_c00353{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m45_c00353{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m7_c00353{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m42_c00353{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00353{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m13_c00353{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.me_c00353{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m39_c00353{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00353{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m3_c00353{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m40_c00353{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m0_c00353{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m50_c00353{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00353{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00353{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m2_c00353{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m9_c00353{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00353{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m11_c00353{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m14_c00353{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00353{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);}
.m56_c00353{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m21_c00353{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m46_c00353{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m22_c00353{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);}
.m43_c00353{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m17_c00353{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);}
.m3a_c00353{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m12_c00353{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);}
.m35_c00353{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00353{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.ma_c00353{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m24_c00353{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1_c00353{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m55_c00353{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m38_c00353{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);}
.m2c_c00353{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);}
.m36_c00353{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);}
.m5_c00353{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);}
.m3d_c00353{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m10_c00353{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m19_c00353{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m31_c00353{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);}
.m53_c00353{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00353{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m33_c00353{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);}
.m4_c00353{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00353{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m57_c00353{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m29_c00353{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00353{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m54_c00353{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m30_c00353{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);}
.m16_c00353{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m32_c00353{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);}
.m26_c00353{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m47_c00353{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);}
.mb_c00353{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m18_c00353{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);}
.m15_c00353{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00353{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m49_c00353{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);}
.m20_c00353{transform:matrix(0.525000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525000,0.000000,0.000000,0.250000,0,0);}
.mc_c00353{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m59_c00353{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m37_c00353{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);}
.m48_c00353{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00353{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m51_c00353{transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);}
.v1_c00353{vertical-align:-2.880000px;}
.v0_c00353{vertical-align:0.000000px;}
.ls0_c00353{letter-spacing:0.000000px;}
.sc__c00353{text-shadow:none;}
.sc0_c00353{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00353{-webkit-text-stroke:0px transparent;}
.sc0_c00353{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00353{word-spacing:0.000000px;}
.ws0_c00353{word-spacing:11.690400px;}
.fc0_c00353{color:transparent;}
.fs12_c00353{font-size:20.160000px;}
.fs13_c00353{font-size:31.680000px;}
.fs11_c00353{font-size:34.560000px;}
.fse_c00353{font-size:37.440000px;}
.fsc_c00353{font-size:40.320000px;}
.fs10_c00353{font-size:43.200000px;}
.fs7_c00353{font-size:46.080000px;}
.fs8_c00353{font-size:48.960000px;}
.fs2_c00353{font-size:51.840000px;}
.fs9_c00353{font-size:54.720000px;}
.fs5_c00353{font-size:57.600000px;}
.fs1_c00353{font-size:60.480000px;}
.fsa_c00353{font-size:63.360000px;}
.fs4_c00353{font-size:66.240000px;}
.fs6_c00353{font-size:69.120000px;}
.fsf_c00353{font-size:72.000000px;}
.fsb_c00353{font-size:74.880000px;}
.fs3_c00353{font-size:77.760000px;}
.fsd_c00353{font-size:80.640000px;}
.fs0_c00353{font-size:86.400000px;}
.y0_c00353{bottom:0.000000px;}
.y7e_c00353{bottom:25.920000px;}
.y7d_c00353{bottom:26.640000px;}
.y7b_c00353{bottom:28.800000px;}
.y7c_c00353{bottom:29.520000px;}
.y76_c00353{bottom:57.600000px;}
.y79_c00353{bottom:59.040000px;}
.y7f_c00353{bottom:59.760000px;}
.y77_c00353{bottom:60.480000px;}
.y78_c00353{bottom:61.200000px;}
.y7a_c00353{bottom:61.920000px;}
.y75_c00353{bottom:100.800000px;}
.y73_c00353{bottom:102.240000px;}
.y74_c00353{bottom:104.400000px;}
.y6d_c00353{bottom:133.920000px;}
.y6e_c00353{bottom:134.640000px;}
.y6f_c00353{bottom:135.360000px;}
.y71_c00353{bottom:136.080000px;}
.y6c_c00353{bottom:136.800000px;}
.y70_c00353{bottom:137.520000px;}
.y72_c00353{bottom:138.240000px;}
.y68_c00353{bottom:177.120000px;}
.y6a_c00353{bottom:179.280000px;}
.y67_c00353{bottom:180.000000px;}
.y69_c00353{bottom:180.720000px;}
.y6b_c00353{bottom:182.160000px;}
.y66_c00353{bottom:223.200000px;}
.y65_c00353{bottom:223.920000px;}
.y60_c00353{bottom:252.000000px;}
.y62_c00353{bottom:253.440000px;}
.y61_c00353{bottom:254.160000px;}
.y63_c00353{bottom:254.880000px;}
.y64_c00353{bottom:255.600000px;}
.y5e_c00353{bottom:256.320000px;}
.y5f_c00353{bottom:257.040000px;}
.y49_c00353{bottom:297.360000px;}
.y48_c00353{bottom:298.080000px;}
.y47_c00353{bottom:300.240000px;}
.y44_c00353{bottom:328.320000px;}
.y46_c00353{bottom:329.040000px;}
.y5d_c00353{bottom:330.480000px;}
.y43_c00353{bottom:331.200000px;}
.y45_c00353{bottom:331.920000px;}
.y3f_c00353{bottom:371.520000px;}
.y41_c00353{bottom:372.240000px;}
.y42_c00353{bottom:372.960000px;}
.y40_c00353{bottom:373.680000px;}
.y5c_c00353{bottom:374.400000px;}
.y3e_c00353{bottom:375.120000px;}
.y5b_c00353{bottom:376.560000px;}
.y3c_c00353{bottom:414.720000px;}
.y5a_c00353{bottom:416.160000px;}
.y3d_c00353{bottom:416.880000px;}
.y3b_c00353{bottom:417.600000px;}
.y59_c00353{bottom:419.040000px;}
.y38_c00353{bottom:457.920000px;}
.y39_c00353{bottom:459.360000px;}
.y37_c00353{bottom:460.080000px;}
.y58_c00353{bottom:460.800000px;}
.y3a_c00353{bottom:461.520000px;}
.y57_c00353{bottom:462.240000px;}
.y33_c00353{bottom:500.400000px;}
.y36_c00353{bottom:501.840000px;}
.y34_c00353{bottom:502.560000px;}
.y32_c00353{bottom:503.280000px;}
.y56_c00353{bottom:504.000000px;}
.y35_c00353{bottom:504.720000px;}
.y2e_c00353{bottom:544.320000px;}
.y30_c00353{bottom:545.760000px;}
.y2d_c00353{bottom:546.480000px;}
.y2f_c00353{bottom:547.920000px;}
.y31_c00353{bottom:548.640000px;}
.y55_c00353{bottom:550.800000px;}
.y2a_c00353{bottom:586.800000px;}
.y2c_c00353{bottom:587.520000px;}
.y54_c00353{bottom:588.960000px;}
.y29_c00353{bottom:589.680000px;}
.y2b_c00353{bottom:591.840000px;}
.y27_c00353{bottom:630.720000px;}
.y28_c00353{bottom:631.440000px;}
.y53_c00353{bottom:632.160000px;}
.y26_c00353{bottom:632.880000px;}
.y25_c00353{bottom:674.640000px;}
.y24_c00353{bottom:675.360000px;}
.y52_c00353{bottom:677.520000px;}
.y22_c00353{bottom:717.840000px;}
.y51_c00353{bottom:718.560000px;}
.y21_c00353{bottom:719.280000px;}
.y50_c00353{bottom:720.720000px;}
.y23_c00353{bottom:721.440000px;}
.y1f_c00353{bottom:761.040000px;}
.y4e_c00353{bottom:762.480000px;}
.y1e_c00353{bottom:763.200000px;}
.y20_c00353{bottom:764.640000px;}
.y4f_c00353{bottom:765.360000px;}
.y1d_c00353{bottom:804.240000px;}
.y1c_c00353{bottom:805.680000px;}
.y4d_c00353{bottom:806.400000px;}
.y4c_c00353{bottom:808.560000px;}
.y19_c00353{bottom:847.440000px;}
.y1b_c00353{bottom:848.160000px;}
.y4b_c00353{bottom:848.880000px;}
.y18_c00353{bottom:849.600000px;}
.y4a_c00353{bottom:851.040000px;}
.y1a_c00353{bottom:851.760000px;}
.y17_c00353{bottom:891.360000px;}
.y16_c00353{bottom:894.960000px;}
.y12_c00353{bottom:923.760000px;}
.y11_c00353{bottom:924.480000px;}
.y15_c00353{bottom:925.920000px;}
.y13_c00353{bottom:926.640000px;}
.y14_c00353{bottom:927.360000px;}
.ye_c00353{bottom:965.520000px;}
.yc_c00353{bottom:966.240000px;}
.yf_c00353{bottom:966.960000px;}
.yb_c00353{bottom:967.680000px;}
.y10_c00353{bottom:969.120000px;}
.yd_c00353{bottom:970.560000px;}
.ya_c00353{bottom:1008.720000px;}
.y7_c00353{bottom:1010.880000px;}
.y9_c00353{bottom:1013.040000px;}
.y8_c00353{bottom:1013.760000px;}
.y4_c00353{bottom:1052.640000px;}
.y2_c00353{bottom:1053.360000px;}
.y6_c00353{bottom:1054.800000px;}
.y5_c00353{bottom:1055.520000px;}
.y3_c00353{bottom:1057.680000px;}
.y1_c00353{bottom:1103.040000px;}
.h14_c00353{height:18.142031px;}
.h15_c00353{height:28.508906px;}
.h13_c00353{height:31.100625px;}
.h10_c00353{height:33.692344px;}
.he_c00353{height:36.284062px;}
.h12_c00353{height:38.875781px;}
.h9_c00353{height:41.467500px;}
.ha_c00353{height:44.059219px;}
.h4_c00353{height:46.650937px;}
.hb_c00353{height:49.242656px;}
.h7_c00353{height:51.834375px;}
.h3_c00353{height:54.426094px;}
.hc_c00353{height:57.017812px;}
.h6_c00353{height:59.609531px;}
.h8_c00353{height:62.201250px;}
.h11_c00353{height:64.792969px;}
.hd_c00353{height:67.384687px;}
.h5_c00353{height:69.976406px;}
.hf_c00353{height:72.568125px;}
.h2_c00353{height:77.751563px;}
.h0_c00353{height:1154.880000px;}
.h1_c00353{height:1155.000000px;}
.w1_c00353{width:772.500000px;}
.w0_c00353{width:772.560000px;}
.x0_c00353{left:0.000000px;}
.x2_c00353{left:69.120000px;}
.x38_c00353{left:70.560000px;}
.x31_c00353{left:112.320000px;}
.x23_c00353{left:141.120000px;}
.x15_c00353{left:142.560000px;}
.x3_c00353{left:144.000000px;}
.x24_c00353{left:174.960000px;}
.x33_c00353{left:185.760000px;}
.x4_c00353{left:187.920000px;}
.x37_c00353{left:196.560000px;}
.xf_c00353{left:229.680000px;}
.x17_c00353{left:239.760000px;}
.xa_c00353{left:241.920000px;}
.x10_c00353{left:274.320000px;}
.x39_c00353{left:283.680000px;}
.x16_c00353{left:285.120000px;}
.x18_c00353{left:294.480000px;}
.xb_c00353{left:295.920000px;}
.x20_c00353{left:303.840000px;}
.xc_c00353{left:306.720000px;}
.xd_c00353{left:328.320000px;}
.x1e_c00353{left:337.680000px;}
.x5_c00353{left:339.120000px;}
.x3c_c00353{left:347.040000px;}
.x21_c00353{left:348.480000px;}
.x11_c00353{left:371.520000px;}
.x3a_c00353{left:379.440000px;}
.x19_c00353{left:380.880000px;}
.x6_c00353{left:393.120000px;}
.x1f_c00353{left:401.760000px;}
.x1c_c00353{left:424.080000px;}
.x34_c00353{left:433.440000px;}
.x1a_c00353{left:435.600000px;}
.x22_c00353{left:445.680000px;}
.x32_c00353{left:455.760000px;}
.x12_c00353{left:457.200000px;}
.x35_c00353{left:477.360000px;}
.x1b_c00353{left:478.800000px;}
.x3b_c00353{left:508.320000px;}
.x13_c00353{left:511.920000px;}
.x1d_c00353{left:521.280000px;}
.x2b_c00353{left:565.920000px;}
.x2c_c00353{left:574.560000px;}
.x29_c00353{left:586.080000px;}
.x27_c00353{left:588.240000px;}
.x2f_c00353{left:596.880000px;}
.x2d_c00353{left:598.320000px;}
.xe_c00353{left:599.760000px;}
.x2e_c00353{left:609.840000px;}
.x36_c00353{left:618.480000px;}
.x25_c00353{left:619.920000px;}
.x7_c00353{left:622.080000px;}
.x30_c00353{left:652.320000px;}
.x8_c00353{left:654.480000px;}
.x28_c00353{left:663.120000px;}
.x26_c00353{left:664.560000px;}
.x1_c00353{left:684.720000px;}
.x2a_c00353{left:694.800000px;}
.x9_c00353{left:696.960000px;}
.x14_c00353{left:717.120000px;}
@media print{
.v1_c00353{vertical-align:-2.560000pt;}
.v0_c00353{vertical-align:0.000000pt;}
.ls0_c00353{letter-spacing:0.000000pt;}
.ws1_c00353{word-spacing:0.000000pt;}
.ws0_c00353{word-spacing:10.391467pt;}
.fs12_c00353{font-size:17.920000pt;}
.fs13_c00353{font-size:28.160000pt;}
.fs11_c00353{font-size:30.720000pt;}
.fse_c00353{font-size:33.280000pt;}
.fsc_c00353{font-size:35.840000pt;}
.fs10_c00353{font-size:38.400000pt;}
.fs7_c00353{font-size:40.960000pt;}
.fs8_c00353{font-size:43.520000pt;}
.fs2_c00353{font-size:46.080000pt;}
.fs9_c00353{font-size:48.640000pt;}
.fs5_c00353{font-size:51.200000pt;}
.fs1_c00353{font-size:53.760000pt;}
.fsa_c00353{font-size:56.320000pt;}
.fs4_c00353{font-size:58.880000pt;}
.fs6_c00353{font-size:61.440000pt;}
.fsf_c00353{font-size:64.000000pt;}
.fsb_c00353{font-size:66.560000pt;}
.fs3_c00353{font-size:69.120000pt;}
.fsd_c00353{font-size:71.680000pt;}
.fs0_c00353{font-size:76.800000pt;}
.y0_c00353{bottom:0.000000pt;}
.y7e_c00353{bottom:23.040000pt;}
.y7d_c00353{bottom:23.680000pt;}
.y7b_c00353{bottom:25.600000pt;}
.y7c_c00353{bottom:26.240000pt;}
.y76_c00353{bottom:51.200000pt;}
.y79_c00353{bottom:52.480000pt;}
.y7f_c00353{bottom:53.120000pt;}
.y77_c00353{bottom:53.760000pt;}
.y78_c00353{bottom:54.400000pt;}
.y7a_c00353{bottom:55.040000pt;}
.y75_c00353{bottom:89.600000pt;}
.y73_c00353{bottom:90.880000pt;}
.y74_c00353{bottom:92.800000pt;}
.y6d_c00353{bottom:119.040000pt;}
.y6e_c00353{bottom:119.680000pt;}
.y6f_c00353{bottom:120.320000pt;}
.y71_c00353{bottom:120.960000pt;}
.y6c_c00353{bottom:121.600000pt;}
.y70_c00353{bottom:122.240000pt;}
.y72_c00353{bottom:122.880000pt;}
.y68_c00353{bottom:157.440000pt;}
.y6a_c00353{bottom:159.360000pt;}
.y67_c00353{bottom:160.000000pt;}
.y69_c00353{bottom:160.640000pt;}
.y6b_c00353{bottom:161.920000pt;}
.y66_c00353{bottom:198.400000pt;}
.y65_c00353{bottom:199.040000pt;}
.y60_c00353{bottom:224.000000pt;}
.y62_c00353{bottom:225.280000pt;}
.y61_c00353{bottom:225.920000pt;}
.y63_c00353{bottom:226.560000pt;}
.y64_c00353{bottom:227.200000pt;}
.y5e_c00353{bottom:227.840000pt;}
.y5f_c00353{bottom:228.480000pt;}
.y49_c00353{bottom:264.320000pt;}
.y48_c00353{bottom:264.960000pt;}
.y47_c00353{bottom:266.880000pt;}
.y44_c00353{bottom:291.840000pt;}
.y46_c00353{bottom:292.480000pt;}
.y5d_c00353{bottom:293.760000pt;}
.y43_c00353{bottom:294.400000pt;}
.y45_c00353{bottom:295.040000pt;}
.y3f_c00353{bottom:330.240000pt;}
.y41_c00353{bottom:330.880000pt;}
.y42_c00353{bottom:331.520000pt;}
.y40_c00353{bottom:332.160000pt;}
.y5c_c00353{bottom:332.800000pt;}
.y3e_c00353{bottom:333.440000pt;}
.y5b_c00353{bottom:334.720000pt;}
.y3c_c00353{bottom:368.640000pt;}
.y5a_c00353{bottom:369.920000pt;}
.y3d_c00353{bottom:370.560000pt;}
.y3b_c00353{bottom:371.200000pt;}
.y59_c00353{bottom:372.480000pt;}
.y38_c00353{bottom:407.040000pt;}
.y39_c00353{bottom:408.320000pt;}
.y37_c00353{bottom:408.960000pt;}
.y58_c00353{bottom:409.600000pt;}
.y3a_c00353{bottom:410.240000pt;}
.y57_c00353{bottom:410.880000pt;}
.y33_c00353{bottom:444.800000pt;}
.y36_c00353{bottom:446.080000pt;}
.y34_c00353{bottom:446.720000pt;}
.y32_c00353{bottom:447.360000pt;}
.y56_c00353{bottom:448.000000pt;}
.y35_c00353{bottom:448.640000pt;}
.y2e_c00353{bottom:483.840000pt;}
.y30_c00353{bottom:485.120000pt;}
.y2d_c00353{bottom:485.760000pt;}
.y2f_c00353{bottom:487.040000pt;}
.y31_c00353{bottom:487.680000pt;}
.y55_c00353{bottom:489.600000pt;}
.y2a_c00353{bottom:521.600000pt;}
.y2c_c00353{bottom:522.240000pt;}
.y54_c00353{bottom:523.520000pt;}
.y29_c00353{bottom:524.160000pt;}
.y2b_c00353{bottom:526.080000pt;}
.y27_c00353{bottom:560.640000pt;}
.y28_c00353{bottom:561.280000pt;}
.y53_c00353{bottom:561.920000pt;}
.y26_c00353{bottom:562.560000pt;}
.y25_c00353{bottom:599.680000pt;}
.y24_c00353{bottom:600.320000pt;}
.y52_c00353{bottom:602.240000pt;}
.y22_c00353{bottom:638.080000pt;}
.y51_c00353{bottom:638.720000pt;}
.y21_c00353{bottom:639.360000pt;}
.y50_c00353{bottom:640.640000pt;}
.y23_c00353{bottom:641.280000pt;}
.y1f_c00353{bottom:676.480000pt;}
.y4e_c00353{bottom:677.760000pt;}
.y1e_c00353{bottom:678.400000pt;}
.y20_c00353{bottom:679.680000pt;}
.y4f_c00353{bottom:680.320000pt;}
.y1d_c00353{bottom:714.880000pt;}
.y1c_c00353{bottom:716.160000pt;}
.y4d_c00353{bottom:716.800000pt;}
.y4c_c00353{bottom:718.720000pt;}
.y19_c00353{bottom:753.280000pt;}
.y1b_c00353{bottom:753.920000pt;}
.y4b_c00353{bottom:754.560000pt;}
.y18_c00353{bottom:755.200000pt;}
.y4a_c00353{bottom:756.480000pt;}
.y1a_c00353{bottom:757.120000pt;}
.y17_c00353{bottom:792.320000pt;}
.y16_c00353{bottom:795.520000pt;}
.y12_c00353{bottom:821.120000pt;}
.y11_c00353{bottom:821.760000pt;}
.y15_c00353{bottom:823.040000pt;}
.y13_c00353{bottom:823.680000pt;}
.y14_c00353{bottom:824.320000pt;}
.ye_c00353{bottom:858.240000pt;}
.yc_c00353{bottom:858.880000pt;}
.yf_c00353{bottom:859.520000pt;}
.yb_c00353{bottom:860.160000pt;}
.y10_c00353{bottom:861.440000pt;}
.yd_c00353{bottom:862.720000pt;}
.ya_c00353{bottom:896.640000pt;}
.y7_c00353{bottom:898.560000pt;}
.y9_c00353{bottom:900.480000pt;}
.y8_c00353{bottom:901.120000pt;}
.y4_c00353{bottom:935.680000pt;}
.y2_c00353{bottom:936.320000pt;}
.y6_c00353{bottom:937.600000pt;}
.y5_c00353{bottom:938.240000pt;}
.y3_c00353{bottom:940.160000pt;}
.y1_c00353{bottom:980.480000pt;}
.h14_c00353{height:16.126250pt;}
.h15_c00353{height:25.341250pt;}
.h13_c00353{height:27.645000pt;}
.h10_c00353{height:29.948750pt;}
.he_c00353{height:32.252500pt;}
.h12_c00353{height:34.556250pt;}
.h9_c00353{height:36.860000pt;}
.ha_c00353{height:39.163750pt;}
.h4_c00353{height:41.467500pt;}
.hb_c00353{height:43.771250pt;}
.h7_c00353{height:46.075000pt;}
.h3_c00353{height:48.378750pt;}
.hc_c00353{height:50.682500pt;}
.h6_c00353{height:52.986250pt;}
.h8_c00353{height:55.290000pt;}
.h11_c00353{height:57.593750pt;}
.hd_c00353{height:59.897500pt;}
.h5_c00353{height:62.201250pt;}
.hf_c00353{height:64.505000pt;}
.h2_c00353{height:69.112500pt;}
.h0_c00353{height:1026.560000pt;}
.h1_c00353{height:1026.666667pt;}
.w1_c00353{width:686.666667pt;}
.w0_c00353{width:686.720000pt;}
.x0_c00353{left:0.000000pt;}
.x2_c00353{left:61.440000pt;}
.x38_c00353{left:62.720000pt;}
.x31_c00353{left:99.840000pt;}
.x23_c00353{left:125.440000pt;}
.x15_c00353{left:126.720000pt;}
.x3_c00353{left:128.000000pt;}
.x24_c00353{left:155.520000pt;}
.x33_c00353{left:165.120000pt;}
.x4_c00353{left:167.040000pt;}
.x37_c00353{left:174.720000pt;}
.xf_c00353{left:204.160000pt;}
.x17_c00353{left:213.120000pt;}
.xa_c00353{left:215.040000pt;}
.x10_c00353{left:243.840000pt;}
.x39_c00353{left:252.160000pt;}
.x16_c00353{left:253.440000pt;}
.x18_c00353{left:261.760000pt;}
.xb_c00353{left:263.040000pt;}
.x20_c00353{left:270.080000pt;}
.xc_c00353{left:272.640000pt;}
.xd_c00353{left:291.840000pt;}
.x1e_c00353{left:300.160000pt;}
.x5_c00353{left:301.440000pt;}
.x3c_c00353{left:308.480000pt;}
.x21_c00353{left:309.760000pt;}
.x11_c00353{left:330.240000pt;}
.x3a_c00353{left:337.280000pt;}
.x19_c00353{left:338.560000pt;}
.x6_c00353{left:349.440000pt;}
.x1f_c00353{left:357.120000pt;}
.x1c_c00353{left:376.960000pt;}
.x34_c00353{left:385.280000pt;}
.x1a_c00353{left:387.200000pt;}
.x22_c00353{left:396.160000pt;}
.x32_c00353{left:405.120000pt;}
.x12_c00353{left:406.400000pt;}
.x35_c00353{left:424.320000pt;}
.x1b_c00353{left:425.600000pt;}
.x3b_c00353{left:451.840000pt;}
.x13_c00353{left:455.040000pt;}
.x1d_c00353{left:463.360000pt;}
.x2b_c00353{left:503.040000pt;}
.x2c_c00353{left:510.720000pt;}
.x29_c00353{left:520.960000pt;}
.x27_c00353{left:522.880000pt;}
.x2f_c00353{left:530.560000pt;}
.x2d_c00353{left:531.840000pt;}
.xe_c00353{left:533.120000pt;}
.x2e_c00353{left:542.080000pt;}
.x36_c00353{left:549.760000pt;}
.x25_c00353{left:551.040000pt;}
.x7_c00353{left:552.960000pt;}
.x30_c00353{left:579.840000pt;}
.x8_c00353{left:581.760000pt;}
.x28_c00353{left:589.440000pt;}
.x26_c00353{left:590.720000pt;}
.x1_c00353{left:608.640000pt;}
.x2a_c00353{left:617.600000pt;}
.x9_c00353{left:619.520000pt;}
.x14_c00353{left:637.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_13a6c6770c75afd5a58baf62.woff2')format("woff");}.ff1_c00354{font-family:ff1_c00354;line-height:1.109863;font-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_c00354{transform:matrix(0.203700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203700,0.000000,0.000000,0.250000,0,0);}
.m1_c00354{transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);}
.m3b_c00354{transform:matrix(0.248225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248225,0.000000,0.000000,0.250000,0,0);}
.m11_c00354{transform:matrix(0.248425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248425,0.000000,0.000000,0.250000,0,0);}
.m39_c00354{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00354{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m17_c00354{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.mf_c00354{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.md_c00354{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);}
.m42_c00354{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);}
.m37_c00354{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);}
.m43_c00354{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m40_c00354{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00354{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00354{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00354{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00354{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);}
.m41_c00354{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);}
.m44_c00354{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m35_c00354{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00354{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m19_c00354{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m0_c00354{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m26_c00354{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m16_c00354{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m29_c00354{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m21_c00354{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m14_c00354{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mc_c00354{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m28_c00354{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m13_c00354{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m6_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);}
.m3_c00354{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m22_c00354{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00354{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);}
.m24_c00354{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);}
.m3d_c00354{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);}
.m2d_c00354{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00354{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m25_c00354{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m9_c00354{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.me_c00354{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m10_c00354{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m8_c00354{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);}
.m27_c00354{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);}
.m31_c00354{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m20_c00354{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00354{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);}
.m3f_c00354{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m23_c00354{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);}
.m18_c00354{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);}
.m3e_c00354{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);}
.m1f_c00354{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00354{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m12_c00354{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m32_c00354{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m15_c00354{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m34_c00354{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.ma_c00354{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m2_c00354{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m4_c00354{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);}
.m2c_c00354{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m36_c00354{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m38_c00354{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);}
.m33_c00354{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m30_c00354{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m7_c00354{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m5_c00354{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00354{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.v0_c00354{vertical-align:0.000000px;}
.ls0_c00354{letter-spacing:0.000000px;}
.sc__c00354{text-shadow:none;}
.sc0_c00354{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00354{-webkit-text-stroke:0px transparent;}
.sc0_c00354{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00354{word-spacing:-2.378880px;}
.ws2_c00354{word-spacing:0.000000px;}
.ws1_c00354{word-spacing:6.727553px;}
.fc0_c00354{color:transparent;}
.fs10_c00354{font-size:25.920000px;}
.fs5_c00354{font-size:34.560000px;}
.fsc_c00354{font-size:37.440000px;}
.fsf_c00354{font-size:40.320000px;}
.fs9_c00354{font-size:43.200000px;}
.fsd_c00354{font-size:46.080000px;}
.fs2_c00354{font-size:48.960000px;}
.fs6_c00354{font-size:51.840000px;}
.fs8_c00354{font-size:54.720000px;}
.fs4_c00354{font-size:57.600000px;}
.fs7_c00354{font-size:60.480000px;}
.fs3_c00354{font-size:63.360000px;}
.fse_c00354{font-size:66.240000px;}
.fsb_c00354{font-size:69.120000px;}
.fs0_c00354{font-size:72.000000px;}
.fsa_c00354{font-size:74.880000px;}
.fs1_c00354{font-size:77.760000px;}
.y0_c00354{bottom:0.000000px;}
.y55_c00354{bottom:48.240000px;}
.y56_c00354{bottom:48.960000px;}
.y52_c00354{bottom:50.400000px;}
.y53_c00354{bottom:51.840000px;}
.y54_c00354{bottom:52.560000px;}
.y67_c00354{bottom:53.280000px;}
.y4e_c00354{bottom:91.440000px;}
.y4f_c00354{bottom:92.160000px;}
.y50_c00354{bottom:92.880000px;}
.y4d_c00354{bottom:95.040000px;}
.y51_c00354{bottom:95.760000px;}
.y4b_c00354{bottom:136.080000px;}
.y4c_c00354{bottom:138.240000px;}
.y49_c00354{bottom:167.760000px;}
.y48_c00354{bottom:168.480000px;}
.y4a_c00354{bottom:169.200000px;}
.y47_c00354{bottom:169.920000px;}
.y65_c00354{bottom:170.640000px;}
.y66_c00354{bottom:172.080000px;}
.y46_c00354{bottom:210.960000px;}
.y45_c00354{bottom:213.120000px;}
.y63_c00354{bottom:213.840000px;}
.y64_c00354{bottom:215.280000px;}
.y44_c00354{bottom:254.880000px;}
.y41_c00354{bottom:285.840000px;}
.y42_c00354{bottom:286.560000px;}
.y3f_c00354{bottom:287.280000px;}
.y40_c00354{bottom:288.720000px;}
.y43_c00354{bottom:290.160000px;}
.y3c_c00354{bottom:329.760000px;}
.y3d_c00354{bottom:330.480000px;}
.y3a_c00354{bottom:331.200000px;}
.y3e_c00354{bottom:331.920000px;}
.y3b_c00354{bottom:332.640000px;}
.y62_c00354{bottom:334.080000px;}
.y39_c00354{bottom:372.960000px;}
.y37_c00354{bottom:373.680000px;}
.y60_c00354{bottom:375.120000px;}
.y38_c00354{bottom:375.840000px;}
.y61_c00354{bottom:376.560000px;}
.y35_c00354{bottom:415.440000px;}
.y33_c00354{bottom:416.880000px;}
.y34_c00354{bottom:417.600000px;}
.y36_c00354{bottom:419.040000px;}
.y5f_c00354{bottom:420.480000px;}
.y32_c00354{bottom:460.080000px;}
.y31_c00354{bottom:460.800000px;}
.y5d_c00354{bottom:461.520000px;}
.y5e_c00354{bottom:462.960000px;}
.y2f_c00354{bottom:503.280000px;}
.y2e_c00354{bottom:504.000000px;}
.y5c_c00354{bottom:504.720000px;}
.y30_c00354{bottom:506.160000px;}
.y2d_c00354{bottom:546.480000px;}
.y2b_c00354{bottom:547.200000px;}
.y5a_c00354{bottom:547.920000px;}
.y2c_c00354{bottom:548.640000px;}
.y5b_c00354{bottom:549.360000px;}
.y29_c00354{bottom:589.680000px;}
.y2a_c00354{bottom:590.400000px;}
.y27_c00354{bottom:591.120000px;}
.y28_c00354{bottom:593.280000px;}
.y26_c00354{bottom:633.600000px;}
.y24_c00354{bottom:634.320000px;}
.y25_c00354{bottom:636.480000px;}
.y23_c00354{bottom:676.800000px;}
.y21_c00354{bottom:677.520000px;}
.y59_c00354{bottom:678.240000px;}
.y22_c00354{bottom:678.960000px;}
.y57_c00354{bottom:720.000000px;}
.y58_c00354{bottom:720.720000px;}
.y1f_c00354{bottom:762.480000px;}
.y1d_c00354{bottom:763.200000px;}
.y20_c00354{bottom:763.920000px;}
.y1e_c00354{bottom:765.360000px;}
.y1a_c00354{bottom:858.240000px;}
.y18_c00354{bottom:859.680000px;}
.y1b_c00354{bottom:860.400000px;}
.y1c_c00354{bottom:861.840000px;}
.y19_c00354{bottom:862.560000px;}
.y16_c00354{bottom:901.440000px;}
.y15_c00354{bottom:902.880000px;}
.y17_c00354{bottom:905.760000px;}
.y14_c00354{bottom:945.360000px;}
.y13_c00354{bottom:948.240000px;}
.yf_c00354{bottom:977.040000px;}
.y12_c00354{bottom:977.760000px;}
.ye_c00354{bottom:978.480000px;}
.y10_c00354{bottom:979.920000px;}
.y11_c00354{bottom:980.640000px;}
.yb_c00354{bottom:1020.240000px;}
.y9_c00354{bottom:1021.680000px;}
.y8_c00354{bottom:1022.400000px;}
.ya_c00354{bottom:1023.840000px;}
.y7_c00354{bottom:1024.560000px;}
.y2_c00354{bottom:1053.360000px;}
.y1_c00354{bottom:1054.080000px;}
.y3_c00354{bottom:1054.800000px;}
.y6_c00354{bottom:1055.520000px;}
.yd_c00354{bottom:1056.240000px;}
.y4_c00354{bottom:1056.960000px;}
.y5_c00354{bottom:1057.680000px;}
.yc_c00354{bottom:1117.440000px;}
.h12_c00354{height:23.325469px;}
.h7_c00354{height:31.100625px;}
.he_c00354{height:33.692344px;}
.h11_c00354{height:36.284062px;}
.hb_c00354{height:38.875781px;}
.hf_c00354{height:41.467500px;}
.h4_c00354{height:44.059219px;}
.h8_c00354{height:46.650937px;}
.ha_c00354{height:49.242656px;}
.h6_c00354{height:51.834375px;}
.h9_c00354{height:54.426094px;}
.h5_c00354{height:57.017812px;}
.h10_c00354{height:59.609531px;}
.hd_c00354{height:62.201250px;}
.h2_c00354{height:64.792969px;}
.hc_c00354{height:67.384687px;}
.h3_c00354{height:69.976406px;}
.h0_c00354{height:1157.760000px;}
.h1_c00354{height:1158.000000px;}
.w0_c00354{width:775.440000px;}
.w1_c00354{width:775.500000px;}
.x0_c00354{left:0.000000px;}
.x1_c00354{left:65.520000px;}
.x16_c00354{left:66.960000px;}
.x26_c00354{left:68.400000px;}
.x2a_c00354{left:111.600000px;}
.xf_c00354{left:140.400000px;}
.x2_c00354{left:141.840000px;}
.x25_c00354{left:143.280000px;}
.x15_c00354{left:184.320000px;}
.x8_c00354{left:195.840000px;}
.x18_c00354{left:205.200000px;}
.x29_c00354{left:217.440000px;}
.x27_c00354{left:219.600000px;}
.x3_c00354{left:238.320000px;}
.x10_c00354{left:239.760000px;}
.x1c_c00354{left:249.120000px;}
.x20_c00354{left:281.520000px;}
.x1d_c00354{left:292.320000px;}
.x4_c00354{left:293.760000px;}
.x19_c00354{left:303.840000px;}
.x21_c00354{left:314.640000px;}
.x11_c00354{left:325.440000px;}
.x17_c00354{left:336.240000px;}
.x9_c00354{left:347.040000px;}
.x1a_c00354{left:357.840000px;}
.x12_c00354{left:378.000000px;}
.x5_c00354{left:390.240000px;}
.x1b_c00354{left:399.600000px;}
.xa_c00354{left:423.360000px;}
.x28_c00354{left:433.440000px;}
.x1e_c00354{left:443.520000px;}
.x6_c00354{left:444.960000px;}
.x24_c00354{left:454.320000px;}
.x22_c00354{left:465.120000px;}
.x7_c00354{left:487.440000px;}
.x1f_c00354{left:498.240000px;}
.x13_c00354{left:508.320000px;}
.x23_c00354{left:519.120000px;}
.x14_c00354{left:583.920000px;}
.x2c_c00354{left:615.600000px;}
.xc_c00354{left:617.760000px;}
.x2d_c00354{left:648.720000px;}
.xd_c00354{left:650.160000px;}
.x2b_c00354{left:682.560000px;}
.xe_c00354{left:694.080000px;}
.xb_c00354{left:695.520000px;}
@media print{
.v0_c00354{vertical-align:0.000000pt;}
.ls0_c00354{letter-spacing:0.000000pt;}
.ws0_c00354{word-spacing:-2.114560pt;}
.ws2_c00354{word-spacing:0.000000pt;}
.ws1_c00354{word-spacing:5.980047pt;}
.fs10_c00354{font-size:23.040000pt;}
.fs5_c00354{font-size:30.720000pt;}
.fsc_c00354{font-size:33.280000pt;}
.fsf_c00354{font-size:35.840000pt;}
.fs9_c00354{font-size:38.400000pt;}
.fsd_c00354{font-size:40.960000pt;}
.fs2_c00354{font-size:43.520000pt;}
.fs6_c00354{font-size:46.080000pt;}
.fs8_c00354{font-size:48.640000pt;}
.fs4_c00354{font-size:51.200000pt;}
.fs7_c00354{font-size:53.760000pt;}
.fs3_c00354{font-size:56.320000pt;}
.fse_c00354{font-size:58.880000pt;}
.fsb_c00354{font-size:61.440000pt;}
.fs0_c00354{font-size:64.000000pt;}
.fsa_c00354{font-size:66.560000pt;}
.fs1_c00354{font-size:69.120000pt;}
.y0_c00354{bottom:0.000000pt;}
.y55_c00354{bottom:42.880000pt;}
.y56_c00354{bottom:43.520000pt;}
.y52_c00354{bottom:44.800000pt;}
.y53_c00354{bottom:46.080000pt;}
.y54_c00354{bottom:46.720000pt;}
.y67_c00354{bottom:47.360000pt;}
.y4e_c00354{bottom:81.280000pt;}
.y4f_c00354{bottom:81.920000pt;}
.y50_c00354{bottom:82.560000pt;}
.y4d_c00354{bottom:84.480000pt;}
.y51_c00354{bottom:85.120000pt;}
.y4b_c00354{bottom:120.960000pt;}
.y4c_c00354{bottom:122.880000pt;}
.y49_c00354{bottom:149.120000pt;}
.y48_c00354{bottom:149.760000pt;}
.y4a_c00354{bottom:150.400000pt;}
.y47_c00354{bottom:151.040000pt;}
.y65_c00354{bottom:151.680000pt;}
.y66_c00354{bottom:152.960000pt;}
.y46_c00354{bottom:187.520000pt;}
.y45_c00354{bottom:189.440000pt;}
.y63_c00354{bottom:190.080000pt;}
.y64_c00354{bottom:191.360000pt;}
.y44_c00354{bottom:226.560000pt;}
.y41_c00354{bottom:254.080000pt;}
.y42_c00354{bottom:254.720000pt;}
.y3f_c00354{bottom:255.360000pt;}
.y40_c00354{bottom:256.640000pt;}
.y43_c00354{bottom:257.920000pt;}
.y3c_c00354{bottom:293.120000pt;}
.y3d_c00354{bottom:293.760000pt;}
.y3a_c00354{bottom:294.400000pt;}
.y3e_c00354{bottom:295.040000pt;}
.y3b_c00354{bottom:295.680000pt;}
.y62_c00354{bottom:296.960000pt;}
.y39_c00354{bottom:331.520000pt;}
.y37_c00354{bottom:332.160000pt;}
.y60_c00354{bottom:333.440000pt;}
.y38_c00354{bottom:334.080000pt;}
.y61_c00354{bottom:334.720000pt;}
.y35_c00354{bottom:369.280000pt;}
.y33_c00354{bottom:370.560000pt;}
.y34_c00354{bottom:371.200000pt;}
.y36_c00354{bottom:372.480000pt;}
.y5f_c00354{bottom:373.760000pt;}
.y32_c00354{bottom:408.960000pt;}
.y31_c00354{bottom:409.600000pt;}
.y5d_c00354{bottom:410.240000pt;}
.y5e_c00354{bottom:411.520000pt;}
.y2f_c00354{bottom:447.360000pt;}
.y2e_c00354{bottom:448.000000pt;}
.y5c_c00354{bottom:448.640000pt;}
.y30_c00354{bottom:449.920000pt;}
.y2d_c00354{bottom:485.760000pt;}
.y2b_c00354{bottom:486.400000pt;}
.y5a_c00354{bottom:487.040000pt;}
.y2c_c00354{bottom:487.680000pt;}
.y5b_c00354{bottom:488.320000pt;}
.y29_c00354{bottom:524.160000pt;}
.y2a_c00354{bottom:524.800000pt;}
.y27_c00354{bottom:525.440000pt;}
.y28_c00354{bottom:527.360000pt;}
.y26_c00354{bottom:563.200000pt;}
.y24_c00354{bottom:563.840000pt;}
.y25_c00354{bottom:565.760000pt;}
.y23_c00354{bottom:601.600000pt;}
.y21_c00354{bottom:602.240000pt;}
.y59_c00354{bottom:602.880000pt;}
.y22_c00354{bottom:603.520000pt;}
.y57_c00354{bottom:640.000000pt;}
.y58_c00354{bottom:640.640000pt;}
.y1f_c00354{bottom:677.760000pt;}
.y1d_c00354{bottom:678.400000pt;}
.y20_c00354{bottom:679.040000pt;}
.y1e_c00354{bottom:680.320000pt;}
.y1a_c00354{bottom:762.880000pt;}
.y18_c00354{bottom:764.160000pt;}
.y1b_c00354{bottom:764.800000pt;}
.y1c_c00354{bottom:766.080000pt;}
.y19_c00354{bottom:766.720000pt;}
.y16_c00354{bottom:801.280000pt;}
.y15_c00354{bottom:802.560000pt;}
.y17_c00354{bottom:805.120000pt;}
.y14_c00354{bottom:840.320000pt;}
.y13_c00354{bottom:842.880000pt;}
.yf_c00354{bottom:868.480000pt;}
.y12_c00354{bottom:869.120000pt;}
.ye_c00354{bottom:869.760000pt;}
.y10_c00354{bottom:871.040000pt;}
.y11_c00354{bottom:871.680000pt;}
.yb_c00354{bottom:906.880000pt;}
.y9_c00354{bottom:908.160000pt;}
.y8_c00354{bottom:908.800000pt;}
.ya_c00354{bottom:910.080000pt;}
.y7_c00354{bottom:910.720000pt;}
.y2_c00354{bottom:936.320000pt;}
.y1_c00354{bottom:936.960000pt;}
.y3_c00354{bottom:937.600000pt;}
.y6_c00354{bottom:938.240000pt;}
.yd_c00354{bottom:938.880000pt;}
.y4_c00354{bottom:939.520000pt;}
.y5_c00354{bottom:940.160000pt;}
.yc_c00354{bottom:993.280000pt;}
.h12_c00354{height:20.733750pt;}
.h7_c00354{height:27.645000pt;}
.he_c00354{height:29.948750pt;}
.h11_c00354{height:32.252500pt;}
.hb_c00354{height:34.556250pt;}
.hf_c00354{height:36.860000pt;}
.h4_c00354{height:39.163750pt;}
.h8_c00354{height:41.467500pt;}
.ha_c00354{height:43.771250pt;}
.h6_c00354{height:46.075000pt;}
.h9_c00354{height:48.378750pt;}
.h5_c00354{height:50.682500pt;}
.h10_c00354{height:52.986250pt;}
.hd_c00354{height:55.290000pt;}
.h2_c00354{height:57.593750pt;}
.hc_c00354{height:59.897500pt;}
.h3_c00354{height:62.201250pt;}
.h0_c00354{height:1029.120000pt;}
.h1_c00354{height:1029.333333pt;}
.w0_c00354{width:689.280000pt;}
.w1_c00354{width:689.333333pt;}
.x0_c00354{left:0.000000pt;}
.x1_c00354{left:58.240000pt;}
.x16_c00354{left:59.520000pt;}
.x26_c00354{left:60.800000pt;}
.x2a_c00354{left:99.200000pt;}
.xf_c00354{left:124.800000pt;}
.x2_c00354{left:126.080000pt;}
.x25_c00354{left:127.360000pt;}
.x15_c00354{left:163.840000pt;}
.x8_c00354{left:174.080000pt;}
.x18_c00354{left:182.400000pt;}
.x29_c00354{left:193.280000pt;}
.x27_c00354{left:195.200000pt;}
.x3_c00354{left:211.840000pt;}
.x10_c00354{left:213.120000pt;}
.x1c_c00354{left:221.440000pt;}
.x20_c00354{left:250.240000pt;}
.x1d_c00354{left:259.840000pt;}
.x4_c00354{left:261.120000pt;}
.x19_c00354{left:270.080000pt;}
.x21_c00354{left:279.680000pt;}
.x11_c00354{left:289.280000pt;}
.x17_c00354{left:298.880000pt;}
.x9_c00354{left:308.480000pt;}
.x1a_c00354{left:318.080000pt;}
.x12_c00354{left:336.000000pt;}
.x5_c00354{left:346.880000pt;}
.x1b_c00354{left:355.200000pt;}
.xa_c00354{left:376.320000pt;}
.x28_c00354{left:385.280000pt;}
.x1e_c00354{left:394.240000pt;}
.x6_c00354{left:395.520000pt;}
.x24_c00354{left:403.840000pt;}
.x22_c00354{left:413.440000pt;}
.x7_c00354{left:433.280000pt;}
.x1f_c00354{left:442.880000pt;}
.x13_c00354{left:451.840000pt;}
.x23_c00354{left:461.440000pt;}
.x14_c00354{left:519.040000pt;}
.x2c_c00354{left:547.200000pt;}
.xc_c00354{left:549.120000pt;}
.x2d_c00354{left:576.640000pt;}
.xd_c00354{left:577.920000pt;}
.x2b_c00354{left:606.720000pt;}
.xe_c00354{left:616.960000pt;}
.xb_c00354{left:618.240000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_dd6a3c84a0acd2bb5a46fc8e.woff2')format("woff");}.ff1_c00355{font-family:ff1_c00355;line-height:1.109863;font-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_c00355{transform:matrix(0.207050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207050,0.000000,0.000000,0.250000,0,0);}
.m29_c00355{transform:matrix(0.234200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234200,0.000000,0.000000,0.250000,0,0);}
.m40_c00355{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);}
.m46_c00355{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);}
.m45_c00355{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m23_c00355{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);}
.m3e_c00355{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);}
.m41_c00355{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);}
.m34_c00355{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_c00355{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.ma_c00355{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00355{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);}
.m2e_c00355{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);}
.m37_c00355{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m18_c00355{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00355{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m10_c00355{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m27_c00355{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00355{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m6_c00355{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m22_c00355{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m42_c00355{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m32_c00355{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1_c00355{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m0_c00355{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m38_c00355{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m4_c00355{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m3_c00355{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.md_c00355{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00355{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);}
.m30_c00355{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m8_c00355{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);}
.m36_c00355{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m15_c00355{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);}
.m2d_c00355{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.mc_c00355{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);}
.m1a_c00355{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2_c00355{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);}
.m1c_c00355{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m9_c00355{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00355{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.me_c00355{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_c00355{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m20_c00355{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);}
.m3a_c00355{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00355{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.mb_c00355{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);}
.m44_c00355{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);}
.m1e_c00355{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m43_c00355{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m28_c00355{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);}
.m13_c00355{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m21_c00355{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m7_c00355{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);}
.m24_c00355{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);}
.m5_c00355{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m14_c00355{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00355{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);}
.m31_c00355{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00355{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m33_c00355{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);}
.m25_c00355{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m35_c00355{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m19_c00355{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.mf_c00355{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);}
.m39_c00355{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);}
.m16_c00355{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00355{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);}
.m11_c00355{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m26_c00355{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00355{transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);}
.v1_c00355{vertical-align:-5.760000px;}
.v0_c00355{vertical-align:0.000000px;}
.ls0_c00355{letter-spacing:0.000000px;}
.sc__c00355{text-shadow:none;}
.sc0_c00355{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00355{-webkit-text-stroke:0px transparent;}
.sc0_c00355{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00355{word-spacing:0.000000px;}
.ws0_c00355{word-spacing:0.008880px;}
.ws1_c00355{word-spacing:9.474000px;}
.ws2_c00355{word-spacing:11.693143px;}
.ws3_c00355{word-spacing:14.243161px;}
.fc0_c00355{color:transparent;}
.fs6_c00355{font-size:37.440000px;}
.fs10_c00355{font-size:40.320000px;}
.fsd_c00355{font-size:43.200000px;}
.fs9_c00355{font-size:46.080000px;}
.fsf_c00355{font-size:48.960000px;}
.fs3_c00355{font-size:51.840000px;}
.fs8_c00355{font-size:54.720000px;}
.fsa_c00355{font-size:57.600000px;}
.fs4_c00355{font-size:60.480000px;}
.fs1_c00355{font-size:63.360000px;}
.fs2_c00355{font-size:66.240000px;}
.fs0_c00355{font-size:69.120000px;}
.fs11_c00355{font-size:72.000000px;}
.fse_c00355{font-size:74.880000px;}
.fsb_c00355{font-size:77.760000px;}
.fsc_c00355{font-size:80.640000px;}
.fs5_c00355{font-size:83.520000px;}
.fs7_c00355{font-size:103.680000px;}
.y0_c00355{bottom:0.000000px;}
.y59_c00355{bottom:38.880000px;}
.y5a_c00355{bottom:39.600000px;}
.y74_c00355{bottom:41.040000px;}
.y58_c00355{bottom:41.760000px;}
.y73_c00355{bottom:43.200000px;}
.y55_c00355{bottom:81.360000px;}
.y54_c00355{bottom:82.800000px;}
.y56_c00355{bottom:83.520000px;}
.y57_c00355{bottom:84.240000px;}
.y51_c00355{bottom:113.760000px;}
.y52_c00355{bottom:114.480000px;}
.y72_c00355{bottom:115.920000px;}
.y50_c00355{bottom:116.640000px;}
.y53_c00355{bottom:118.080000px;}
.y4e_c00355{bottom:158.400000px;}
.y4c_c00355{bottom:159.120000px;}
.y4d_c00355{bottom:159.840000px;}
.y4f_c00355{bottom:160.560000px;}
.y4b_c00355{bottom:161.280000px;}
.y48_c00355{bottom:200.160000px;}
.y49_c00355{bottom:200.880000px;}
.y47_c00355{bottom:201.600000px;}
.y4a_c00355{bottom:203.760000px;}
.y45_c00355{bottom:233.280000px;}
.y44_c00355{bottom:234.000000px;}
.y46_c00355{bottom:234.720000px;}
.y70_c00355{bottom:235.440000px;}
.y42_c00355{bottom:236.160000px;}
.y43_c00355{bottom:236.880000px;}
.y71_c00355{bottom:238.320000px;}
.y40_c00355{bottom:277.200000px;}
.y3f_c00355{bottom:277.920000px;}
.y3e_c00355{bottom:278.640000px;}
.y41_c00355{bottom:279.360000px;}
.y6f_c00355{bottom:320.400000px;}
.y3b_c00355{bottom:321.120000px;}
.y3a_c00355{bottom:321.840000px;}
.y3c_c00355{bottom:322.560000px;}
.y3d_c00355{bottom:323.280000px;}
.y38_c00355{bottom:363.600000px;}
.y6e_c00355{bottom:365.040000px;}
.y36_c00355{bottom:365.760000px;}
.y39_c00355{bottom:366.480000px;}
.y37_c00355{bottom:367.200000px;}
.y33_c00355{bottom:406.800000px;}
.y35_c00355{bottom:407.520000px;}
.y34_c00355{bottom:408.240000px;}
.y32_c00355{bottom:409.680000px;}
.y31_c00355{bottom:438.480000px;}
.y2f_c00355{bottom:439.200000px;}
.y30_c00355{bottom:439.920000px;}
.y6a_c00355{bottom:440.640000px;}
.y6b_c00355{bottom:441.360000px;}
.y2e_c00355{bottom:442.080000px;}
.y6d_c00355{bottom:442.800000px;}
.y6c_c00355{bottom:443.520000px;}
.y2d_c00355{bottom:481.680000px;}
.y68_c00355{bottom:483.840000px;}
.y2b_c00355{bottom:484.560000px;}
.y2c_c00355{bottom:485.280000px;}
.y69_c00355{bottom:486.000000px;}
.y67_c00355{bottom:486.720000px;}
.y2a_c00355{bottom:524.880000px;}
.y29_c00355{bottom:527.040000px;}
.y65_c00355{bottom:529.200000px;}
.y66_c00355{bottom:529.920000px;}
.y28_c00355{bottom:567.360000px;}
.y64_c00355{bottom:569.520000px;}
.y27_c00355{bottom:570.240000px;}
.y25_c00355{bottom:612.720000px;}
.y24_c00355{bottom:613.440000px;}
.y26_c00355{bottom:614.160000px;}
.y23_c00355{bottom:616.320000px;}
.y20_c00355{bottom:666.720000px;}
.y21_c00355{bottom:667.440000px;}
.y22_c00355{bottom:668.880000px;}
.y1f_c00355{bottom:709.200000px;}
.y1d_c00355{bottom:709.920000px;}
.y62_c00355{bottom:710.640000px;}
.y63_c00355{bottom:712.080000px;}
.y1e_c00355{bottom:712.800000px;}
.y1a_c00355{bottom:753.120000px;}
.y1b_c00355{bottom:753.840000px;}
.y61_c00355{bottom:755.280000px;}
.y1c_c00355{bottom:756.000000px;}
.y19_c00355{bottom:796.320000px;}
.y17_c00355{bottom:797.040000px;}
.y60_c00355{bottom:798.480000px;}
.y18_c00355{bottom:799.200000px;}
.y14_c00355{bottom:839.520000px;}
.y15_c00355{bottom:840.240000px;}
.y16_c00355{bottom:842.400000px;}
.y13_c00355{bottom:874.800000px;}
.y11_c00355{bottom:882.720000px;}
.yf_c00355{bottom:883.440000px;}
.y10_c00355{bottom:884.160000px;}
.y5f_c00355{bottom:884.880000px;}
.y12_c00355{bottom:886.320000px;}
.yb_c00355{bottom:925.200000px;}
.yd_c00355{bottom:925.920000px;}
.ye_c00355{bottom:926.640000px;}
.yc_c00355{bottom:927.360000px;}
.y5e_c00355{bottom:928.080000px;}
.y9_c00355{bottom:968.400000px;}
.y7_c00355{bottom:969.840000px;}
.y8_c00355{bottom:970.560000px;}
.y5d_c00355{bottom:971.280000px;}
.ya_c00355{bottom:972.000000px;}
.y6_c00355{bottom:1003.680000px;}
.y2_c00355{bottom:1011.600000px;}
.y5_c00355{bottom:1012.320000px;}
.y4_c00355{bottom:1013.040000px;}
.y3_c00355{bottom:1015.200000px;}
.y1_c00355{bottom:1056.240000px;}
.y5c_c00355{bottom:1057.680000px;}
.y5b_c00355{bottom:1110.960000px;}
.h8_c00355{height:33.692344px;}
.h12_c00355{height:36.284062px;}
.hf_c00355{height:38.875781px;}
.hb_c00355{height:41.467500px;}
.h11_c00355{height:44.059219px;}
.h5_c00355{height:46.650937px;}
.ha_c00355{height:49.242656px;}
.hc_c00355{height:51.834375px;}
.h6_c00355{height:54.426094px;}
.h3_c00355{height:57.017812px;}
.h4_c00355{height:59.609531px;}
.h2_c00355{height:62.201250px;}
.h13_c00355{height:64.792969px;}
.h10_c00355{height:67.384687px;}
.hd_c00355{height:69.976406px;}
.he_c00355{height:72.568125px;}
.h7_c00355{height:75.159844px;}
.h9_c00355{height:93.301875px;}
.h0_c00355{height:1157.760000px;}
.h1_c00355{height:1158.000000px;}
.w0_c00355{width:776.880000px;}
.w1_c00355{width:777.000000px;}
.x0_c00355{left:0.000000px;}
.x1_c00355{left:66.960000px;}
.xb_c00355{left:68.400000px;}
.x15_c00355{left:69.840000px;}
.xe_c00355{left:120.960000px;}
.xc_c00355{left:142.560000px;}
.x2_c00355{left:144.000000px;}
.xf_c00355{left:165.600000px;}
.x4_c00355{left:185.760000px;}
.x1c_c00355{left:196.560000px;}
.x10_c00355{left:198.720000px;}
.x19_c00355{left:228.960000px;}
.xd_c00355{left:239.760000px;}
.x5_c00355{left:251.280000px;}
.x1a_c00355{left:284.400000px;}
.x3_c00355{left:294.480000px;}
.x8_c00355{left:305.280000px;}
.x1d_c00355{left:337.680000px;}
.x14_c00355{left:348.480000px;}
.x11_c00355{left:359.280000px;}
.x16_c00355{left:369.360000px;}
.x12_c00355{left:390.960000px;}
.x9_c00355{left:402.480000px;}
.x17_c00355{left:434.880000px;}
.x13_c00355{left:446.400000px;}
.x6_c00355{left:456.480000px;}
.xa_c00355{left:468.000000px;}
.x1b_c00355{left:488.880000px;}
.x18_c00355{left:498.960000px;}
.x7_c00355{left:522.000000px;}
.x26_c00355{left:555.120000px;}
.x25_c00355{left:565.920000px;}
.x2a_c00355{left:585.360000px;}
.x22_c00355{left:598.320000px;}
.x27_c00355{left:618.480000px;}
.x1f_c00355{left:619.920000px;}
.x28_c00355{left:650.880000px;}
.x20_c00355{left:653.040000px;}
.x1e_c00355{left:680.400000px;}
.x21_c00355{left:685.440000px;}
.x29_c00355{left:694.080000px;}
.x23_c00355{left:695.520000px;}
.x24_c00355{left:714.960000px;}
@media print{
.v1_c00355{vertical-align:-5.120000pt;}
.v0_c00355{vertical-align:0.000000pt;}
.ls0_c00355{letter-spacing:0.000000pt;}
.ws4_c00355{word-spacing:0.000000pt;}
.ws0_c00355{word-spacing:0.007893pt;}
.ws1_c00355{word-spacing:8.421333pt;}
.ws2_c00355{word-spacing:10.393905pt;}
.ws3_c00355{word-spacing:12.660588pt;}
.fs6_c00355{font-size:33.280000pt;}
.fs10_c00355{font-size:35.840000pt;}
.fsd_c00355{font-size:38.400000pt;}
.fs9_c00355{font-size:40.960000pt;}
.fsf_c00355{font-size:43.520000pt;}
.fs3_c00355{font-size:46.080000pt;}
.fs8_c00355{font-size:48.640000pt;}
.fsa_c00355{font-size:51.200000pt;}
.fs4_c00355{font-size:53.760000pt;}
.fs1_c00355{font-size:56.320000pt;}
.fs2_c00355{font-size:58.880000pt;}
.fs0_c00355{font-size:61.440000pt;}
.fs11_c00355{font-size:64.000000pt;}
.fse_c00355{font-size:66.560000pt;}
.fsb_c00355{font-size:69.120000pt;}
.fsc_c00355{font-size:71.680000pt;}
.fs5_c00355{font-size:74.240000pt;}
.fs7_c00355{font-size:92.160000pt;}
.y0_c00355{bottom:0.000000pt;}
.y59_c00355{bottom:34.560000pt;}
.y5a_c00355{bottom:35.200000pt;}
.y74_c00355{bottom:36.480000pt;}
.y58_c00355{bottom:37.120000pt;}
.y73_c00355{bottom:38.400000pt;}
.y55_c00355{bottom:72.320000pt;}
.y54_c00355{bottom:73.600000pt;}
.y56_c00355{bottom:74.240000pt;}
.y57_c00355{bottom:74.880000pt;}
.y51_c00355{bottom:101.120000pt;}
.y52_c00355{bottom:101.760000pt;}
.y72_c00355{bottom:103.040000pt;}
.y50_c00355{bottom:103.680000pt;}
.y53_c00355{bottom:104.960000pt;}
.y4e_c00355{bottom:140.800000pt;}
.y4c_c00355{bottom:141.440000pt;}
.y4d_c00355{bottom:142.080000pt;}
.y4f_c00355{bottom:142.720000pt;}
.y4b_c00355{bottom:143.360000pt;}
.y48_c00355{bottom:177.920000pt;}
.y49_c00355{bottom:178.560000pt;}
.y47_c00355{bottom:179.200000pt;}
.y4a_c00355{bottom:181.120000pt;}
.y45_c00355{bottom:207.360000pt;}
.y44_c00355{bottom:208.000000pt;}
.y46_c00355{bottom:208.640000pt;}
.y70_c00355{bottom:209.280000pt;}
.y42_c00355{bottom:209.920000pt;}
.y43_c00355{bottom:210.560000pt;}
.y71_c00355{bottom:211.840000pt;}
.y40_c00355{bottom:246.400000pt;}
.y3f_c00355{bottom:247.040000pt;}
.y3e_c00355{bottom:247.680000pt;}
.y41_c00355{bottom:248.320000pt;}
.y6f_c00355{bottom:284.800000pt;}
.y3b_c00355{bottom:285.440000pt;}
.y3a_c00355{bottom:286.080000pt;}
.y3c_c00355{bottom:286.720000pt;}
.y3d_c00355{bottom:287.360000pt;}
.y38_c00355{bottom:323.200000pt;}
.y6e_c00355{bottom:324.480000pt;}
.y36_c00355{bottom:325.120000pt;}
.y39_c00355{bottom:325.760000pt;}
.y37_c00355{bottom:326.400000pt;}
.y33_c00355{bottom:361.600000pt;}
.y35_c00355{bottom:362.240000pt;}
.y34_c00355{bottom:362.880000pt;}
.y32_c00355{bottom:364.160000pt;}
.y31_c00355{bottom:389.760000pt;}
.y2f_c00355{bottom:390.400000pt;}
.y30_c00355{bottom:391.040000pt;}
.y6a_c00355{bottom:391.680000pt;}
.y6b_c00355{bottom:392.320000pt;}
.y2e_c00355{bottom:392.960000pt;}
.y6d_c00355{bottom:393.600000pt;}
.y6c_c00355{bottom:394.240000pt;}
.y2d_c00355{bottom:428.160000pt;}
.y68_c00355{bottom:430.080000pt;}
.y2b_c00355{bottom:430.720000pt;}
.y2c_c00355{bottom:431.360000pt;}
.y69_c00355{bottom:432.000000pt;}
.y67_c00355{bottom:432.640000pt;}
.y2a_c00355{bottom:466.560000pt;}
.y29_c00355{bottom:468.480000pt;}
.y65_c00355{bottom:470.400000pt;}
.y66_c00355{bottom:471.040000pt;}
.y28_c00355{bottom:504.320000pt;}
.y64_c00355{bottom:506.240000pt;}
.y27_c00355{bottom:506.880000pt;}
.y25_c00355{bottom:544.640000pt;}
.y24_c00355{bottom:545.280000pt;}
.y26_c00355{bottom:545.920000pt;}
.y23_c00355{bottom:547.840000pt;}
.y20_c00355{bottom:592.640000pt;}
.y21_c00355{bottom:593.280000pt;}
.y22_c00355{bottom:594.560000pt;}
.y1f_c00355{bottom:630.400000pt;}
.y1d_c00355{bottom:631.040000pt;}
.y62_c00355{bottom:631.680000pt;}
.y63_c00355{bottom:632.960000pt;}
.y1e_c00355{bottom:633.600000pt;}
.y1a_c00355{bottom:669.440000pt;}
.y1b_c00355{bottom:670.080000pt;}
.y61_c00355{bottom:671.360000pt;}
.y1c_c00355{bottom:672.000000pt;}
.y19_c00355{bottom:707.840000pt;}
.y17_c00355{bottom:708.480000pt;}
.y60_c00355{bottom:709.760000pt;}
.y18_c00355{bottom:710.400000pt;}
.y14_c00355{bottom:746.240000pt;}
.y15_c00355{bottom:746.880000pt;}
.y16_c00355{bottom:748.800000pt;}
.y13_c00355{bottom:777.600000pt;}
.y11_c00355{bottom:784.640000pt;}
.yf_c00355{bottom:785.280000pt;}
.y10_c00355{bottom:785.920000pt;}
.y5f_c00355{bottom:786.560000pt;}
.y12_c00355{bottom:787.840000pt;}
.yb_c00355{bottom:822.400000pt;}
.yd_c00355{bottom:823.040000pt;}
.ye_c00355{bottom:823.680000pt;}
.yc_c00355{bottom:824.320000pt;}
.y5e_c00355{bottom:824.960000pt;}
.y9_c00355{bottom:860.800000pt;}
.y7_c00355{bottom:862.080000pt;}
.y8_c00355{bottom:862.720000pt;}
.y5d_c00355{bottom:863.360000pt;}
.ya_c00355{bottom:864.000000pt;}
.y6_c00355{bottom:892.160000pt;}
.y2_c00355{bottom:899.200000pt;}
.y5_c00355{bottom:899.840000pt;}
.y4_c00355{bottom:900.480000pt;}
.y3_c00355{bottom:902.400000pt;}
.y1_c00355{bottom:938.880000pt;}
.y5c_c00355{bottom:940.160000pt;}
.y5b_c00355{bottom:987.520000pt;}
.h8_c00355{height:29.948750pt;}
.h12_c00355{height:32.252500pt;}
.hf_c00355{height:34.556250pt;}
.hb_c00355{height:36.860000pt;}
.h11_c00355{height:39.163750pt;}
.h5_c00355{height:41.467500pt;}
.ha_c00355{height:43.771250pt;}
.hc_c00355{height:46.075000pt;}
.h6_c00355{height:48.378750pt;}
.h3_c00355{height:50.682500pt;}
.h4_c00355{height:52.986250pt;}
.h2_c00355{height:55.290000pt;}
.h13_c00355{height:57.593750pt;}
.h10_c00355{height:59.897500pt;}
.hd_c00355{height:62.201250pt;}
.he_c00355{height:64.505000pt;}
.h7_c00355{height:66.808750pt;}
.h9_c00355{height:82.935000pt;}
.h0_c00355{height:1029.120000pt;}
.h1_c00355{height:1029.333333pt;}
.w0_c00355{width:690.560000pt;}
.w1_c00355{width:690.666667pt;}
.x0_c00355{left:0.000000pt;}
.x1_c00355{left:59.520000pt;}
.xb_c00355{left:60.800000pt;}
.x15_c00355{left:62.080000pt;}
.xe_c00355{left:107.520000pt;}
.xc_c00355{left:126.720000pt;}
.x2_c00355{left:128.000000pt;}
.xf_c00355{left:147.200000pt;}
.x4_c00355{left:165.120000pt;}
.x1c_c00355{left:174.720000pt;}
.x10_c00355{left:176.640000pt;}
.x19_c00355{left:203.520000pt;}
.xd_c00355{left:213.120000pt;}
.x5_c00355{left:223.360000pt;}
.x1a_c00355{left:252.800000pt;}
.x3_c00355{left:261.760000pt;}
.x8_c00355{left:271.360000pt;}
.x1d_c00355{left:300.160000pt;}
.x14_c00355{left:309.760000pt;}
.x11_c00355{left:319.360000pt;}
.x16_c00355{left:328.320000pt;}
.x12_c00355{left:347.520000pt;}
.x9_c00355{left:357.760000pt;}
.x17_c00355{left:386.560000pt;}
.x13_c00355{left:396.800000pt;}
.x6_c00355{left:405.760000pt;}
.xa_c00355{left:416.000000pt;}
.x1b_c00355{left:434.560000pt;}
.x18_c00355{left:443.520000pt;}
.x7_c00355{left:464.000000pt;}
.x26_c00355{left:493.440000pt;}
.x25_c00355{left:503.040000pt;}
.x2a_c00355{left:520.320000pt;}
.x22_c00355{left:531.840000pt;}
.x27_c00355{left:549.760000pt;}
.x1f_c00355{left:551.040000pt;}
.x28_c00355{left:578.560000pt;}
.x20_c00355{left:580.480000pt;}
.x1e_c00355{left:604.800000pt;}
.x21_c00355{left:609.280000pt;}
.x29_c00355{left:616.960000pt;}
.x23_c00355{left:618.240000pt;}
.x24_c00355{left:635.520000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_510e504f17815cdda3c9142b.woff2')format("woff");}.ff1_c00356{font-family:ff1_c00356;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m49_c00356{transform:matrix(0.168925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168925,0.000000,0.000000,0.250000,0,0);}
.m4c_c00356{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00356{transform:matrix(0.205350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205350,0.000000,0.000000,0.250000,0,0);}
.m42_c00356{transform:matrix(0.223525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223525,0.000000,0.000000,0.250000,0,0);}
.m51_c00356{transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);}
.m46_c00356{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);}
.m38_c00356{transform:matrix(0.231825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231825,0.000000,0.000000,0.250000,0,0);}
.m2d_c00356{transform:matrix(0.235375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235375,0.000000,0.000000,0.250000,0,0);}
.m58_c00356{transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);}
.mb_c00356{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m45_c00356{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00356{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);}
.md_c00356{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m35_c00356{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);}
.m43_c00356{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00356{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);}
.m29_c00356{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);}
.m56_c00356{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);}
.m47_c00356{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m14_c00356{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00356{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m24_c00356{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m40_c00356{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m7_c00356{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1_c00356{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m23_c00356{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00356{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m34_c00356{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m15_c00356{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m37_c00356{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00356{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00356{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mc_c00356{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m22_c00356{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m3_c00356{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m19_c00356{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m20_c00356{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m26_c00356{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.me_c00356{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00356{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m57_c00356{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m13_c00356{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00356{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m50_c00356{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);}
.m27_c00356{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);}
.m3b_c00356{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00356{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);}
.m39_c00356{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m0_c00356{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_c00356{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m33_c00356{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m10_c00356{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);}
.m8_c00356{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m17_c00356{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m11_c00356{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m48_c00356{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);}
.m16_c00356{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);}
.m54_c00356{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);}
.m59_c00356{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m5_c00356{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);}
.m30_c00356{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m25_c00356{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m4_c00356{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);}
.mf_c00356{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00356{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m6_c00356{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_c00356{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00356{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m28_c00356{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m12_c00356{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00356{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00356{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m41_c00356{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00356{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);}
.m2a_c00356{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);}
.m1b_c00356{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m32_c00356{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);}
.m18_c00356{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00356{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m31_c00356{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m52_c00356{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);}
.m2_c00356{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);}
.m3c_c00356{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m55_c00356{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00356{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m36_c00356{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00356{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m53_c00356{transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);}
.m21_c00356{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.m44_c00356{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m9_c00356{transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);}
.v1_c00356{vertical-align:-8.640000px;}
.v0_c00356{vertical-align:0.000000px;}
.ls1_c00356{letter-spacing:0.000000px;}
.ls0_c00356{letter-spacing:76.280400px;}
.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;}
}
.ws1_c00356{word-spacing:0.000000px;}
.ws0_c00356{word-spacing:43.054462px;}
.fc0_c00356{color:transparent;}
.fs10_c00356{font-size:31.680000px;}
.fsf_c00356{font-size:34.560000px;}
.fsc_c00356{font-size:37.440000px;}
.fse_c00356{font-size:40.320000px;}
.fs5_c00356{font-size:43.200000px;}
.fsb_c00356{font-size:46.080000px;}
.fs2_c00356{font-size:48.960000px;}
.fs8_c00356{font-size:51.840000px;}
.fs3_c00356{font-size:54.720000px;}
.fs7_c00356{font-size:57.600000px;}
.fs1_c00356{font-size:60.480000px;}
.fs0_c00356{font-size:63.360000px;}
.fs9_c00356{font-size:66.240000px;}
.fs4_c00356{font-size:69.120000px;}
.fsa_c00356{font-size:72.000000px;}
.fs6_c00356{font-size:74.880000px;}
.fsd_c00356{font-size:77.760000px;}
.y0_c00356{bottom:0.000000px;}
.y78_c00356{bottom:34.560000px;}
.y7b_c00356{bottom:35.280000px;}
.y79_c00356{bottom:38.160000px;}
.y77_c00356{bottom:38.880000px;}
.y7a_c00356{bottom:39.600000px;}
.y74_c00356{bottom:77.760000px;}
.y76_c00356{bottom:78.480000px;}
.y75_c00356{bottom:80.640000px;}
.y7c_c00356{bottom:81.360000px;}
.y73_c00356{bottom:82.080000px;}
.y7d_c00356{bottom:83.520000px;}
.y72_c00356{bottom:121.680000px;}
.y71_c00356{bottom:122.400000px;}
.y70_c00356{bottom:123.120000px;}
.y6d_c00356{bottom:153.360000px;}
.y6c_c00356{bottom:156.240000px;}
.y6b_c00356{bottom:157.680000px;}
.y6e_c00356{bottom:158.400000px;}
.y6f_c00356{bottom:159.120000px;}
.y67_c00356{bottom:185.760000px;}
.y69_c00356{bottom:187.920000px;}
.y68_c00356{bottom:189.360000px;}
.y66_c00356{bottom:190.080000px;}
.y6a_c00356{bottom:191.520000px;}
.y65_c00356{bottom:232.560000px;}
.y64_c00356{bottom:233.280000px;}
.y5d_c00356{bottom:261.360000px;}
.y5e_c00356{bottom:262.080000px;}
.y60_c00356{bottom:263.520000px;}
.y5c_c00356{bottom:264.240000px;}
.y5f_c00356{bottom:264.960000px;}
.y61_c00356{bottom:265.680000px;}
.y63_c00356{bottom:266.400000px;}
.y62_c00356{bottom:267.120000px;}
.y48_c00356{bottom:304.560000px;}
.y4a_c00356{bottom:305.280000px;}
.y5a_c00356{bottom:306.720000px;}
.y47_c00356{bottom:307.440000px;}
.y5b_c00356{bottom:308.160000px;}
.y49_c00356{bottom:308.880000px;}
.y44_c00356{bottom:347.760000px;}
.y46_c00356{bottom:348.480000px;}
.y43_c00356{bottom:350.640000px;}
.y45_c00356{bottom:351.360000px;}
.y58_c00356{bottom:352.080000px;}
.y59_c00356{bottom:352.800000px;}
.y41_c00356{bottom:390.960000px;}
.y40_c00356{bottom:392.400000px;}
.y55_c00356{bottom:393.120000px;}
.y56_c00356{bottom:393.840000px;}
.y42_c00356{bottom:394.560000px;}
.y57_c00356{bottom:396.000000px;}
.y3d_c00356{bottom:434.160000px;}
.y3e_c00356{bottom:435.600000px;}
.y3f_c00356{bottom:437.040000px;}
.y39_c00356{bottom:467.280000px;}
.y3b_c00356{bottom:468.000000px;}
.y3c_c00356{bottom:468.720000px;}
.y38_c00356{bottom:469.440000px;}
.y3a_c00356{bottom:470.880000px;}
.y54_c00356{bottom:471.600000px;}
.y37_c00356{bottom:509.760000px;}
.y36_c00356{bottom:510.480000px;}
.y35_c00356{bottom:514.080000px;}
.y31_c00356{bottom:542.160000px;}
.y32_c00356{bottom:544.320000px;}
.y30_c00356{bottom:545.040000px;}
.y33_c00356{bottom:545.760000px;}
.y34_c00356{bottom:546.480000px;}
.y2f_c00356{bottom:586.080000px;}
.y2d_c00356{bottom:587.520000px;}
.y52_c00356{bottom:588.240000px;}
.y2e_c00356{bottom:589.680000px;}
.y53_c00356{bottom:590.400000px;}
.y29_c00356{bottom:629.280000px;}
.y2a_c00356{bottom:630.720000px;}
.y51_c00356{bottom:631.440000px;}
.y28_c00356{bottom:632.160000px;}
.y2b_c00356{bottom:633.600000px;}
.y2c_c00356{bottom:634.320000px;}
.y24_c00356{bottom:672.480000px;}
.y50_c00356{bottom:673.920000px;}
.y25_c00356{bottom:674.640000px;}
.y23_c00356{bottom:675.360000px;}
.y26_c00356{bottom:676.080000px;}
.y27_c00356{bottom:676.800000px;}
.y20_c00356{bottom:715.680000px;}
.y21_c00356{bottom:716.400000px;}
.y4e_c00356{bottom:717.120000px;}
.y1f_c00356{bottom:717.840000px;}
.y22_c00356{bottom:719.280000px;}
.y4f_c00356{bottom:720.000000px;}
.y1e_c00356{bottom:758.880000px;}
.y1d_c00356{bottom:760.320000px;}
.y4d_c00356{bottom:762.480000px;}
.y1b_c00356{bottom:802.080000px;}
.y1a_c00356{bottom:802.800000px;}
.y4b_c00356{bottom:803.520000px;}
.y4c_c00356{bottom:804.240000px;}
.y1c_c00356{bottom:805.680000px;}
.y19_c00356{bottom:845.280000px;}
.y18_c00356{bottom:846.720000px;}
.y17_c00356{bottom:848.880000px;}
.y14_c00356{bottom:876.960000px;}
.y13_c00356{bottom:879.120000px;}
.y16_c00356{bottom:880.560000px;}
.y15_c00356{bottom:881.280000px;}
.y11_c00356{bottom:920.880000px;}
.yf_c00356{bottom:921.600000px;}
.y10_c00356{bottom:922.320000px;}
.y12_c00356{bottom:923.760000px;}
.yd_c00356{bottom:964.800000px;}
.yc_c00356{bottom:965.520000px;}
.ye_c00356{bottom:966.960000px;}
.ya_c00356{bottom:996.480000px;}
.y8_c00356{bottom:997.200000px;}
.yb_c00356{bottom:997.920000px;}
.y9_c00356{bottom:1000.080000px;}
.y6_c00356{bottom:1031.040000px;}
.y1_c00356{bottom:1040.400000px;}
.y4_c00356{bottom:1041.120000px;}
.y2_c00356{bottom:1041.840000px;}
.y5_c00356{bottom:1042.560000px;}
.y3_c00356{bottom:1044.000000px;}
.y7_c00356{bottom:1106.640000px;}
.h12_c00356{height:28.508906px;}
.h11_c00356{height:31.100625px;}
.he_c00356{height:33.692344px;}
.h10_c00356{height:36.284062px;}
.h7_c00356{height:38.875781px;}
.hd_c00356{height:41.467500px;}
.h4_c00356{height:44.059219px;}
.ha_c00356{height:46.650937px;}
.h5_c00356{height:49.242656px;}
.h9_c00356{height:51.834375px;}
.h3_c00356{height:54.426094px;}
.h2_c00356{height:57.017812px;}
.hb_c00356{height:59.609531px;}
.h6_c00356{height:62.201250px;}
.hc_c00356{height:64.792969px;}
.h8_c00356{height:67.384687px;}
.hf_c00356{height:69.976406px;}
.h0_c00356{height:1153.440000px;}
.h1_c00356{height:1153.500000px;}
.w1_c00356{width:770.250000px;}
.w0_c00356{width:770.400000px;}
.x0_c00356{left:0.000000px;}
.x1_c00356{left:62.640000px;}
.x24_c00356{left:64.080000px;}
.x37_c00356{left:65.520000px;}
.x3b_c00356{left:66.960000px;}
.x18_c00356{left:107.280000px;}
.x1e_c00356{left:136.800000px;}
.x2_c00356{left:138.240000px;}
.x3_c00356{left:181.440000px;}
.x3a_c00356{left:182.880000px;}
.x36_c00356{left:190.800000px;}
.x15_c00356{left:192.240000px;}
.x2b_c00356{left:224.640000px;}
.x4_c00356{left:235.440000px;}
.xf_c00356{left:246.240000px;}
.x29_c00356{left:257.040000px;}
.x5_c00356{left:279.360000px;}
.x2c_c00356{left:290.880000px;}
.x21_c00356{left:299.520000px;}
.x10_c00356{left:300.960000px;}
.x25_c00356{left:311.040000px;}
.x6_c00356{left:312.480000px;}
.x3c_c00356{left:322.560000px;}
.x16_c00356{left:332.640000px;}
.x11_c00356{left:344.160000px;}
.x7_c00356{left:354.240000px;}
.x26_c00356{left:365.760000px;}
.x1f_c00356{left:375.120000px;}
.x32_c00356{left:376.560000px;}
.x12_c00356{left:386.640000px;}
.x8_c00356{left:408.240000px;}
.x20_c00356{left:429.840000px;}
.x27_c00356{left:440.640000px;}
.x13_c00356{left:442.080000px;}
.x22_c00356{left:450.000000px;}
.x2a_c00356{left:451.440000px;}
.x17_c00356{left:462.240000px;}
.x33_c00356{left:483.840000px;}
.x28_c00356{left:493.200000px;}
.x23_c00356{left:494.640000px;}
.x39_c00356{left:505.440000px;}
.x9_c00356{left:516.240000px;}
.xa_c00356{left:527.760000px;}
.x1d_c00356{left:539.280000px;}
.x38_c00356{left:548.640000px;}
.x2e_c00356{left:558.720000px;}
.x19_c00356{left:560.160000px;}
.x2d_c00356{left:581.040000px;}
.x14_c00356{left:591.840000px;}
.x34_c00356{left:612.000000px;}
.x1a_c00356{left:613.440000px;}
.xc_c00356{left:614.880000px;}
.x2f_c00356{left:645.840000px;}
.xd_c00356{left:647.280000px;}
.x3d_c00356{left:656.640000px;}
.x35_c00356{left:678.240000px;}
.x1b_c00356{left:679.680000px;}
.xb_c00356{left:683.280000px;}
.x30_c00356{left:687.600000px;}
.xe_c00356{left:689.760000px;}
.x31_c00356{left:708.480000px;}
.x1c_c00356{left:710.640000px;}
@media print{
.v1_c00356{vertical-align:-7.680000pt;}
.v0_c00356{vertical-align:0.000000pt;}
.ls1_c00356{letter-spacing:0.000000pt;}
.ls0_c00356{letter-spacing:67.804800pt;}
.ws1_c00356{word-spacing:0.000000pt;}
.ws0_c00356{word-spacing:38.270633pt;}
.fs10_c00356{font-size:28.160000pt;}
.fsf_c00356{font-size:30.720000pt;}
.fsc_c00356{font-size:33.280000pt;}
.fse_c00356{font-size:35.840000pt;}
.fs5_c00356{font-size:38.400000pt;}
.fsb_c00356{font-size:40.960000pt;}
.fs2_c00356{font-size:43.520000pt;}
.fs8_c00356{font-size:46.080000pt;}
.fs3_c00356{font-size:48.640000pt;}
.fs7_c00356{font-size:51.200000pt;}
.fs1_c00356{font-size:53.760000pt;}
.fs0_c00356{font-size:56.320000pt;}
.fs9_c00356{font-size:58.880000pt;}
.fs4_c00356{font-size:61.440000pt;}
.fsa_c00356{font-size:64.000000pt;}
.fs6_c00356{font-size:66.560000pt;}
.fsd_c00356{font-size:69.120000pt;}
.y0_c00356{bottom:0.000000pt;}
.y78_c00356{bottom:30.720000pt;}
.y7b_c00356{bottom:31.360000pt;}
.y79_c00356{bottom:33.920000pt;}
.y77_c00356{bottom:34.560000pt;}
.y7a_c00356{bottom:35.200000pt;}
.y74_c00356{bottom:69.120000pt;}
.y76_c00356{bottom:69.760000pt;}
.y75_c00356{bottom:71.680000pt;}
.y7c_c00356{bottom:72.320000pt;}
.y73_c00356{bottom:72.960000pt;}
.y7d_c00356{bottom:74.240000pt;}
.y72_c00356{bottom:108.160000pt;}
.y71_c00356{bottom:108.800000pt;}
.y70_c00356{bottom:109.440000pt;}
.y6d_c00356{bottom:136.320000pt;}
.y6c_c00356{bottom:138.880000pt;}
.y6b_c00356{bottom:140.160000pt;}
.y6e_c00356{bottom:140.800000pt;}
.y6f_c00356{bottom:141.440000pt;}
.y67_c00356{bottom:165.120000pt;}
.y69_c00356{bottom:167.040000pt;}
.y68_c00356{bottom:168.320000pt;}
.y66_c00356{bottom:168.960000pt;}
.y6a_c00356{bottom:170.240000pt;}
.y65_c00356{bottom:206.720000pt;}
.y64_c00356{bottom:207.360000pt;}
.y5d_c00356{bottom:232.320000pt;}
.y5e_c00356{bottom:232.960000pt;}
.y60_c00356{bottom:234.240000pt;}
.y5c_c00356{bottom:234.880000pt;}
.y5f_c00356{bottom:235.520000pt;}
.y61_c00356{bottom:236.160000pt;}
.y63_c00356{bottom:236.800000pt;}
.y62_c00356{bottom:237.440000pt;}
.y48_c00356{bottom:270.720000pt;}
.y4a_c00356{bottom:271.360000pt;}
.y5a_c00356{bottom:272.640000pt;}
.y47_c00356{bottom:273.280000pt;}
.y5b_c00356{bottom:273.920000pt;}
.y49_c00356{bottom:274.560000pt;}
.y44_c00356{bottom:309.120000pt;}
.y46_c00356{bottom:309.760000pt;}
.y43_c00356{bottom:311.680000pt;}
.y45_c00356{bottom:312.320000pt;}
.y58_c00356{bottom:312.960000pt;}
.y59_c00356{bottom:313.600000pt;}
.y41_c00356{bottom:347.520000pt;}
.y40_c00356{bottom:348.800000pt;}
.y55_c00356{bottom:349.440000pt;}
.y56_c00356{bottom:350.080000pt;}
.y42_c00356{bottom:350.720000pt;}
.y57_c00356{bottom:352.000000pt;}
.y3d_c00356{bottom:385.920000pt;}
.y3e_c00356{bottom:387.200000pt;}
.y3f_c00356{bottom:388.480000pt;}
.y39_c00356{bottom:415.360000pt;}
.y3b_c00356{bottom:416.000000pt;}
.y3c_c00356{bottom:416.640000pt;}
.y38_c00356{bottom:417.280000pt;}
.y3a_c00356{bottom:418.560000pt;}
.y54_c00356{bottom:419.200000pt;}
.y37_c00356{bottom:453.120000pt;}
.y36_c00356{bottom:453.760000pt;}
.y35_c00356{bottom:456.960000pt;}
.y31_c00356{bottom:481.920000pt;}
.y32_c00356{bottom:483.840000pt;}
.y30_c00356{bottom:484.480000pt;}
.y33_c00356{bottom:485.120000pt;}
.y34_c00356{bottom:485.760000pt;}
.y2f_c00356{bottom:520.960000pt;}
.y2d_c00356{bottom:522.240000pt;}
.y52_c00356{bottom:522.880000pt;}
.y2e_c00356{bottom:524.160000pt;}
.y53_c00356{bottom:524.800000pt;}
.y29_c00356{bottom:559.360000pt;}
.y2a_c00356{bottom:560.640000pt;}
.y51_c00356{bottom:561.280000pt;}
.y28_c00356{bottom:561.920000pt;}
.y2b_c00356{bottom:563.200000pt;}
.y2c_c00356{bottom:563.840000pt;}
.y24_c00356{bottom:597.760000pt;}
.y50_c00356{bottom:599.040000pt;}
.y25_c00356{bottom:599.680000pt;}
.y23_c00356{bottom:600.320000pt;}
.y26_c00356{bottom:600.960000pt;}
.y27_c00356{bottom:601.600000pt;}
.y20_c00356{bottom:636.160000pt;}
.y21_c00356{bottom:636.800000pt;}
.y4e_c00356{bottom:637.440000pt;}
.y1f_c00356{bottom:638.080000pt;}
.y22_c00356{bottom:639.360000pt;}
.y4f_c00356{bottom:640.000000pt;}
.y1e_c00356{bottom:674.560000pt;}
.y1d_c00356{bottom:675.840000pt;}
.y4d_c00356{bottom:677.760000pt;}
.y1b_c00356{bottom:712.960000pt;}
.y1a_c00356{bottom:713.600000pt;}
.y4b_c00356{bottom:714.240000pt;}
.y4c_c00356{bottom:714.880000pt;}
.y1c_c00356{bottom:716.160000pt;}
.y19_c00356{bottom:751.360000pt;}
.y18_c00356{bottom:752.640000pt;}
.y17_c00356{bottom:754.560000pt;}
.y14_c00356{bottom:779.520000pt;}
.y13_c00356{bottom:781.440000pt;}
.y16_c00356{bottom:782.720000pt;}
.y15_c00356{bottom:783.360000pt;}
.y11_c00356{bottom:818.560000pt;}
.yf_c00356{bottom:819.200000pt;}
.y10_c00356{bottom:819.840000pt;}
.y12_c00356{bottom:821.120000pt;}
.yd_c00356{bottom:857.600000pt;}
.yc_c00356{bottom:858.240000pt;}
.ye_c00356{bottom:859.520000pt;}
.ya_c00356{bottom:885.760000pt;}
.y8_c00356{bottom:886.400000pt;}
.yb_c00356{bottom:887.040000pt;}
.y9_c00356{bottom:888.960000pt;}
.y6_c00356{bottom:916.480000pt;}
.y1_c00356{bottom:924.800000pt;}
.y4_c00356{bottom:925.440000pt;}
.y2_c00356{bottom:926.080000pt;}
.y5_c00356{bottom:926.720000pt;}
.y3_c00356{bottom:928.000000pt;}
.y7_c00356{bottom:983.680000pt;}
.h12_c00356{height:25.341250pt;}
.h11_c00356{height:27.645000pt;}
.he_c00356{height:29.948750pt;}
.h10_c00356{height:32.252500pt;}
.h7_c00356{height:34.556250pt;}
.hd_c00356{height:36.860000pt;}
.h4_c00356{height:39.163750pt;}
.ha_c00356{height:41.467500pt;}
.h5_c00356{height:43.771250pt;}
.h9_c00356{height:46.075000pt;}
.h3_c00356{height:48.378750pt;}
.h2_c00356{height:50.682500pt;}
.hb_c00356{height:52.986250pt;}
.h6_c00356{height:55.290000pt;}
.hc_c00356{height:57.593750pt;}
.h8_c00356{height:59.897500pt;}
.hf_c00356{height:62.201250pt;}
.h0_c00356{height:1025.280000pt;}
.h1_c00356{height:1025.333333pt;}
.w1_c00356{width:684.666667pt;}
.w0_c00356{width:684.800000pt;}
.x0_c00356{left:0.000000pt;}
.x1_c00356{left:55.680000pt;}
.x24_c00356{left:56.960000pt;}
.x37_c00356{left:58.240000pt;}
.x3b_c00356{left:59.520000pt;}
.x18_c00356{left:95.360000pt;}
.x1e_c00356{left:121.600000pt;}
.x2_c00356{left:122.880000pt;}
.x3_c00356{left:161.280000pt;}
.x3a_c00356{left:162.560000pt;}
.x36_c00356{left:169.600000pt;}
.x15_c00356{left:170.880000pt;}
.x2b_c00356{left:199.680000pt;}
.x4_c00356{left:209.280000pt;}
.xf_c00356{left:218.880000pt;}
.x29_c00356{left:228.480000pt;}
.x5_c00356{left:248.320000pt;}
.x2c_c00356{left:258.560000pt;}
.x21_c00356{left:266.240000pt;}
.x10_c00356{left:267.520000pt;}
.x25_c00356{left:276.480000pt;}
.x6_c00356{left:277.760000pt;}
.x3c_c00356{left:286.720000pt;}
.x16_c00356{left:295.680000pt;}
.x11_c00356{left:305.920000pt;}
.x7_c00356{left:314.880000pt;}
.x26_c00356{left:325.120000pt;}
.x1f_c00356{left:333.440000pt;}
.x32_c00356{left:334.720000pt;}
.x12_c00356{left:343.680000pt;}
.x8_c00356{left:362.880000pt;}
.x20_c00356{left:382.080000pt;}
.x27_c00356{left:391.680000pt;}
.x13_c00356{left:392.960000pt;}
.x22_c00356{left:400.000000pt;}
.x2a_c00356{left:401.280000pt;}
.x17_c00356{left:410.880000pt;}
.x33_c00356{left:430.080000pt;}
.x28_c00356{left:438.400000pt;}
.x23_c00356{left:439.680000pt;}
.x39_c00356{left:449.280000pt;}
.x9_c00356{left:458.880000pt;}
.xa_c00356{left:469.120000pt;}
.x1d_c00356{left:479.360000pt;}
.x38_c00356{left:487.680000pt;}
.x2e_c00356{left:496.640000pt;}
.x19_c00356{left:497.920000pt;}
.x2d_c00356{left:516.480000pt;}
.x14_c00356{left:526.080000pt;}
.x34_c00356{left:544.000000pt;}
.x1a_c00356{left:545.280000pt;}
.xc_c00356{left:546.560000pt;}
.x2f_c00356{left:574.080000pt;}
.xd_c00356{left:575.360000pt;}
.x3d_c00356{left:583.680000pt;}
.x35_c00356{left:602.880000pt;}
.x1b_c00356{left:604.160000pt;}
.xb_c00356{left:607.360000pt;}
.x30_c00356{left:611.200000pt;}
.xe_c00356{left:613.120000pt;}
.x31_c00356{left:629.760000pt;}
.x1c_c00356{left:631.680000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6914cf0d404435eac7980a85.woff2')format("woff");}.ff1_c00357{font-family:ff1_c00357;line-height:1.109863;font-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_c00357{transform:matrix(0.182675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182675,0.000000,0.000000,0.250000,0,0);}
.m31_c00357{transform:matrix(0.185775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185775,0.000000,0.000000,0.250000,0,0);}
.m28_c00357{transform:matrix(0.205350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205350,0.000000,0.000000,0.250000,0,0);}
.m2f_c00357{transform:matrix(0.206650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206650,0.000000,0.000000,0.250000,0,0);}
.m2d_c00357{transform:matrix(0.215550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215550,0.000000,0.000000,0.250000,0,0);}
.m4_c00357{transform:matrix(0.221125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221125,0.000000,0.000000,0.250000,0,0);}
.m1c_c00357{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_c00357{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m1e_c00357{transform:matrix(0.237450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237450,0.000000,0.000000,0.250000,0,0);}
.m25_c00357{transform:matrix(0.241550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241550,0.000000,0.000000,0.250000,0,0);}
.m52_c00357{transform:matrix(0.244450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244450,0.000000,0.000000,0.250000,0,0);}
.m1d_c00357{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m46_c00357{transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);}
.m3e_c00357{transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);}
.m41_c00357{transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);}
.m1_c00357{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00357{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m13_c00357{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mc_c00357{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m3c_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);}
.mf_c00357{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00357{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00357{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m6_c00357{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00357{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m22_c00357{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m17_c00357{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m44_c00357{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m30_c00357{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mb_c00357{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m37_c00357{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m38_c00357{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00357{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m7_c00357{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m27_c00357{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00357{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m39_c00357{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m36_c00357{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m5_c00357{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00357{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m9_c00357{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m0_c00357{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m35_c00357{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m21_c00357{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00357{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m45_c00357{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m10_c00357{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_c00357{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m12_c00357{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);}
.m53_c00357{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m15_c00357{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00357{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m40_c00357{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00357{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);}
.m24_c00357{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m47_c00357{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.me_c00357{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00357{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);}
.m19_c00357{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);}
.m4a_c00357{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m16_c00357{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);}
.m34_c00357{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m33_c00357{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00357{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);}
.m49_c00357{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m8_c00357{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m43_c00357{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m26_c00357{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.md_c00357{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00357{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m50_c00357{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);}
.m2b_c00357{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.ma_c00357{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m51_c00357{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m11_c00357{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);}
.m14_c00357{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m20_c00357{transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00357{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m3_c00357{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);}
.m2_c00357{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m42_c00357{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m29_c00357{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m18_c00357{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m48_c00357{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.v1_c00357{vertical-align:-8.640000px;}
.v0_c00357{vertical-align:0.000000px;}
.ls0_c00357{letter-spacing:0.000000px;}
.sc__c00357{text-shadow:none;}
.sc0_c00357{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00357{-webkit-text-stroke:0px transparent;}
.sc0_c00357{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00357{word-spacing:0.000000px;}
.ws0_c00357{word-spacing:15.600000px;}
.ws1_c00357{word-spacing:54.393523px;}
.fc0_c00357{color:transparent;}
.fsf_c00357{font-size:20.160000px;}
.fs10_c00357{font-size:34.560000px;}
.fs3_c00357{font-size:37.440000px;}
.fs8_c00357{font-size:40.320000px;}
.fsc_c00357{font-size:43.200000px;}
.fs7_c00357{font-size:48.960000px;}
.fs2_c00357{font-size:51.840000px;}
.fs4_c00357{font-size:54.720000px;}
.fs5_c00357{font-size:57.600000px;}
.fs6_c00357{font-size:60.480000px;}
.fsb_c00357{font-size:63.360000px;}
.fsa_c00357{font-size:66.240000px;}
.fs0_c00357{font-size:69.120000px;}
.fsd_c00357{font-size:72.000000px;}
.fs1_c00357{font-size:74.880000px;}
.fs9_c00357{font-size:77.760000px;}
.fse_c00357{font-size:92.160000px;}
.y0_c00357{bottom:0.000000px;}
.y74_c00357{bottom:56.880000px;}
.y77_c00357{bottom:59.040000px;}
.y75_c00357{bottom:59.760000px;}
.y73_c00357{bottom:60.480000px;}
.y76_c00357{bottom:61.920000px;}
.y78_c00357{bottom:62.640000px;}
.y6e_c00357{bottom:100.080000px;}
.y71_c00357{bottom:103.680000px;}
.y6d_c00357{bottom:104.400000px;}
.y72_c00357{bottom:105.840000px;}
.y6c_c00357{bottom:143.280000px;}
.y6b_c00357{bottom:146.880000px;}
.y6f_c00357{bottom:148.320000px;}
.y70_c00357{bottom:149.040000px;}
.y65_c00357{bottom:187.200000px;}
.y69_c00357{bottom:187.920000px;}
.y66_c00357{bottom:188.640000px;}
.y68_c00357{bottom:189.360000px;}
.y6a_c00357{bottom:190.080000px;}
.y63_c00357{bottom:190.800000px;}
.y64_c00357{bottom:191.520000px;}
.y67_c00357{bottom:195.120000px;}
.y61_c00357{bottom:241.920000px;}
.y50_c00357{bottom:244.080000px;}
.y4f_c00357{bottom:244.800000px;}
.y62_c00357{bottom:245.520000px;}
.y51_c00357{bottom:246.960000px;}
.y60_c00357{bottom:285.120000px;}
.y5f_c00357{bottom:286.560000px;}
.y4c_c00357{bottom:287.280000px;}
.y5d_c00357{bottom:288.000000px;}
.y5e_c00357{bottom:288.720000px;}
.y4d_c00357{bottom:290.160000px;}
.y4e_c00357{bottom:290.880000px;}
.y5a_c00357{bottom:327.600000px;}
.y5c_c00357{bottom:328.320000px;}
.y4a_c00357{bottom:330.480000px;}
.y59_c00357{bottom:331.200000px;}
.y5b_c00357{bottom:331.920000px;}
.y4b_c00357{bottom:332.640000px;}
.y58_c00357{bottom:371.520000px;}
.y48_c00357{bottom:373.680000px;}
.y57_c00357{bottom:374.400000px;}
.y49_c00357{bottom:376.560000px;}
.y54_c00357{bottom:414.720000px;}
.y56_c00357{bottom:415.440000px;}
.y46_c00357{bottom:416.880000px;}
.y47_c00357{bottom:417.600000px;}
.y53_c00357{bottom:418.320000px;}
.y55_c00357{bottom:419.040000px;}
.y52_c00357{bottom:457.920000px;}
.y44_c00357{bottom:460.080000px;}
.y45_c00357{bottom:460.800000px;}
.y3e_c00357{bottom:500.400000px;}
.y42_c00357{bottom:502.560000px;}
.y3c_c00357{bottom:503.280000px;}
.y43_c00357{bottom:504.000000px;}
.y3d_c00357{bottom:505.440000px;}
.y3b_c00357{bottom:544.320000px;}
.y41_c00357{bottom:545.760000px;}
.y3a_c00357{bottom:546.480000px;}
.y39_c00357{bottom:587.520000px;}
.y38_c00357{bottom:589.680000px;}
.y3f_c00357{bottom:591.840000px;}
.y40_c00357{bottom:592.560000px;}
.y35_c00357{bottom:624.240000px;}
.y36_c00357{bottom:632.880000px;}
.y37_c00357{bottom:633.600000px;}
.y32_c00357{bottom:684.000000px;}
.y2f_c00357{bottom:684.720000px;}
.y34_c00357{bottom:685.440000px;}
.y30_c00357{bottom:686.160000px;}
.y2e_c00357{bottom:686.880000px;}
.y31_c00357{bottom:688.320000px;}
.y29_c00357{bottom:727.200000px;}
.y2d_c00357{bottom:727.920000px;}
.y2a_c00357{bottom:728.640000px;}
.y2b_c00357{bottom:729.360000px;}
.y28_c00357{bottom:730.080000px;}
.y2c_c00357{bottom:731.520000px;}
.y33_c00357{bottom:732.240000px;}
.y27_c00357{bottom:771.840000px;}
.y26_c00357{bottom:775.440000px;}
.y21_c00357{bottom:804.240000px;}
.y20_c00357{bottom:804.960000px;}
.y25_c00357{bottom:805.680000px;}
.y24_c00357{bottom:806.400000px;}
.y23_c00357{bottom:807.120000px;}
.y22_c00357{bottom:807.840000px;}
.y1f_c00357{bottom:838.080000px;}
.y1b_c00357{bottom:846.720000px;}
.y1a_c00357{bottom:848.160000px;}
.y1e_c00357{bottom:848.880000px;}
.y1d_c00357{bottom:850.320000px;}
.y1c_c00357{bottom:851.040000px;}
.y17_c00357{bottom:890.640000px;}
.y16_c00357{bottom:891.360000px;}
.y19_c00357{bottom:893.520000px;}
.y18_c00357{bottom:894.240000px;}
.y15_c00357{bottom:933.840000px;}
.y13_c00357{bottom:935.280000px;}
.y14_c00357{bottom:938.160000px;}
.y10_c00357{bottom:966.240000px;}
.ya_c00357{bottom:966.960000px;}
.yc_c00357{bottom:967.680000px;}
.yb_c00357{bottom:969.120000px;}
.y12_c00357{bottom:969.840000px;}
.y11_c00357{bottom:970.560000px;}
.y9_c00357{bottom:1009.440000px;}
.ye_c00357{bottom:1010.160000px;}
.yd_c00357{bottom:1010.880000px;}
.y8_c00357{bottom:1013.040000px;}
.yf_c00357{bottom:1013.760000px;}
.y7_c00357{bottom:1052.640000px;}
.y2_c00357{bottom:1053.360000px;}
.y1_c00357{bottom:1054.080000px;}
.y6_c00357{bottom:1056.240000px;}
.y4_c00357{bottom:1056.960000px;}
.y3_c00357{bottom:1057.680000px;}
.y5_c00357{bottom:1108.800000px;}
.h11_c00357{height:18.142031px;}
.h12_c00357{height:31.100625px;}
.h5_c00357{height:33.692344px;}
.ha_c00357{height:36.284062px;}
.he_c00357{height:38.875781px;}
.h9_c00357{height:44.059219px;}
.h4_c00357{height:46.650937px;}
.h6_c00357{height:49.242656px;}
.h7_c00357{height:51.834375px;}
.h8_c00357{height:54.426094px;}
.hd_c00357{height:57.017812px;}
.hc_c00357{height:59.609531px;}
.h2_c00357{height:62.201250px;}
.hf_c00357{height:64.792969px;}
.h3_c00357{height:67.384687px;}
.hb_c00357{height:69.976406px;}
.h10_c00357{height:82.935000px;}
.h0_c00357{height:1157.040000px;}
.h1_c00357{height:1157.250000px;}
.w0_c00357{width:775.440000px;}
.w1_c00357{width:775.500000px;}
.x0_c00357{left:0.000000px;}
.x1_c00357{left:64.800000px;}
.x2a_c00357{left:66.240000px;}
.x36_c00357{left:67.680000px;}
.x20_c00357{left:117.360000px;}
.x2e_c00357{left:118.800000px;}
.x13_c00357{left:138.960000px;}
.x2_c00357{left:140.400000px;}
.x21_c00357{left:149.760000px;}
.x12_c00357{left:182.160000px;}
.x2b_c00357{left:184.320000px;}
.x2f_c00357{left:193.680000px;}
.x30_c00357{left:205.200000px;}
.x31_c00357{left:225.360000px;}
.x29_c00357{left:236.160000px;}
.x3_c00357{left:237.600000px;}
.x32_c00357{left:239.040000px;}
.x22_c00357{left:246.240000px;}
.x33_c00357{left:248.400000px;}
.x2c_c00357{left:257.760000px;}
.x14_c00357{left:280.800000px;}
.x1e_c00357{left:290.880000px;}
.x4_c00357{left:292.320000px;}
.xc_c00357{left:300.960000px;}
.x1d_c00357{left:302.400000px;}
.x15_c00357{left:311.040000px;}
.x34_c00357{left:321.840000px;}
.x5_c00357{left:333.360000px;}
.x37_c00357{left:334.800000px;}
.xd_c00357{left:345.600000px;}
.x16_c00357{left:355.680000px;}
.x2d_c00357{left:366.480000px;}
.x10_c00357{left:388.080000px;}
.xe_c00357{left:399.600000px;}
.x17_c00357{left:410.400000px;}
.x19_c00357{left:431.280000px;}
.xf_c00357{left:443.520000px;}
.x38_c00357{left:484.560000px;}
.x1a_c00357{left:486.000000px;}
.x11_c00357{left:496.800000px;}
.x1b_c00357{left:529.200000px;}
.x39_c00357{left:538.560000px;}
.x18_c00357{left:550.800000px;}
.x23_c00357{left:561.600000px;}
.x1f_c00357{left:583.200000px;}
.x26_c00357{left:594.000000px;}
.x24_c00357{left:615.600000px;}
.x7_c00357{left:617.040000px;}
.x27_c00357{left:626.400000px;}
.x3a_c00357{left:646.560000px;}
.x25_c00357{left:648.720000px;}
.x28_c00357{left:658.080000px;}
.x8_c00357{left:659.520000px;}
.x35_c00357{left:680.400000px;}
.x1c_c00357{left:691.200000px;}
.x9_c00357{left:692.640000px;}
.x6_c00357{left:700.560000px;}
.xb_c00357{left:711.360000px;}
.xa_c00357{left:712.800000px;}
@media print{
.v1_c00357{vertical-align:-7.680000pt;}
.v0_c00357{vertical-align:0.000000pt;}
.ls0_c00357{letter-spacing:0.000000pt;}
.ws2_c00357{word-spacing:0.000000pt;}
.ws0_c00357{word-spacing:13.866667pt;}
.ws1_c00357{word-spacing:48.349798pt;}
.fsf_c00357{font-size:17.920000pt;}
.fs10_c00357{font-size:30.720000pt;}
.fs3_c00357{font-size:33.280000pt;}
.fs8_c00357{font-size:35.840000pt;}
.fsc_c00357{font-size:38.400000pt;}
.fs7_c00357{font-size:43.520000pt;}
.fs2_c00357{font-size:46.080000pt;}
.fs4_c00357{font-size:48.640000pt;}
.fs5_c00357{font-size:51.200000pt;}
.fs6_c00357{font-size:53.760000pt;}
.fsb_c00357{font-size:56.320000pt;}
.fsa_c00357{font-size:58.880000pt;}
.fs0_c00357{font-size:61.440000pt;}
.fsd_c00357{font-size:64.000000pt;}
.fs1_c00357{font-size:66.560000pt;}
.fs9_c00357{font-size:69.120000pt;}
.fse_c00357{font-size:81.920000pt;}
.y0_c00357{bottom:0.000000pt;}
.y74_c00357{bottom:50.560000pt;}
.y77_c00357{bottom:52.480000pt;}
.y75_c00357{bottom:53.120000pt;}
.y73_c00357{bottom:53.760000pt;}
.y76_c00357{bottom:55.040000pt;}
.y78_c00357{bottom:55.680000pt;}
.y6e_c00357{bottom:88.960000pt;}
.y71_c00357{bottom:92.160000pt;}
.y6d_c00357{bottom:92.800000pt;}
.y72_c00357{bottom:94.080000pt;}
.y6c_c00357{bottom:127.360000pt;}
.y6b_c00357{bottom:130.560000pt;}
.y6f_c00357{bottom:131.840000pt;}
.y70_c00357{bottom:132.480000pt;}
.y65_c00357{bottom:166.400000pt;}
.y69_c00357{bottom:167.040000pt;}
.y66_c00357{bottom:167.680000pt;}
.y68_c00357{bottom:168.320000pt;}
.y6a_c00357{bottom:168.960000pt;}
.y63_c00357{bottom:169.600000pt;}
.y64_c00357{bottom:170.240000pt;}
.y67_c00357{bottom:173.440000pt;}
.y61_c00357{bottom:215.040000pt;}
.y50_c00357{bottom:216.960000pt;}
.y4f_c00357{bottom:217.600000pt;}
.y62_c00357{bottom:218.240000pt;}
.y51_c00357{bottom:219.520000pt;}
.y60_c00357{bottom:253.440000pt;}
.y5f_c00357{bottom:254.720000pt;}
.y4c_c00357{bottom:255.360000pt;}
.y5d_c00357{bottom:256.000000pt;}
.y5e_c00357{bottom:256.640000pt;}
.y4d_c00357{bottom:257.920000pt;}
.y4e_c00357{bottom:258.560000pt;}
.y5a_c00357{bottom:291.200000pt;}
.y5c_c00357{bottom:291.840000pt;}
.y4a_c00357{bottom:293.760000pt;}
.y59_c00357{bottom:294.400000pt;}
.y5b_c00357{bottom:295.040000pt;}
.y4b_c00357{bottom:295.680000pt;}
.y58_c00357{bottom:330.240000pt;}
.y48_c00357{bottom:332.160000pt;}
.y57_c00357{bottom:332.800000pt;}
.y49_c00357{bottom:334.720000pt;}
.y54_c00357{bottom:368.640000pt;}
.y56_c00357{bottom:369.280000pt;}
.y46_c00357{bottom:370.560000pt;}
.y47_c00357{bottom:371.200000pt;}
.y53_c00357{bottom:371.840000pt;}
.y55_c00357{bottom:372.480000pt;}
.y52_c00357{bottom:407.040000pt;}
.y44_c00357{bottom:408.960000pt;}
.y45_c00357{bottom:409.600000pt;}
.y3e_c00357{bottom:444.800000pt;}
.y42_c00357{bottom:446.720000pt;}
.y3c_c00357{bottom:447.360000pt;}
.y43_c00357{bottom:448.000000pt;}
.y3d_c00357{bottom:449.280000pt;}
.y3b_c00357{bottom:483.840000pt;}
.y41_c00357{bottom:485.120000pt;}
.y3a_c00357{bottom:485.760000pt;}
.y39_c00357{bottom:522.240000pt;}
.y38_c00357{bottom:524.160000pt;}
.y3f_c00357{bottom:526.080000pt;}
.y40_c00357{bottom:526.720000pt;}
.y35_c00357{bottom:554.880000pt;}
.y36_c00357{bottom:562.560000pt;}
.y37_c00357{bottom:563.200000pt;}
.y32_c00357{bottom:608.000000pt;}
.y2f_c00357{bottom:608.640000pt;}
.y34_c00357{bottom:609.280000pt;}
.y30_c00357{bottom:609.920000pt;}
.y2e_c00357{bottom:610.560000pt;}
.y31_c00357{bottom:611.840000pt;}
.y29_c00357{bottom:646.400000pt;}
.y2d_c00357{bottom:647.040000pt;}
.y2a_c00357{bottom:647.680000pt;}
.y2b_c00357{bottom:648.320000pt;}
.y28_c00357{bottom:648.960000pt;}
.y2c_c00357{bottom:650.240000pt;}
.y33_c00357{bottom:650.880000pt;}
.y27_c00357{bottom:686.080000pt;}
.y26_c00357{bottom:689.280000pt;}
.y21_c00357{bottom:714.880000pt;}
.y20_c00357{bottom:715.520000pt;}
.y25_c00357{bottom:716.160000pt;}
.y24_c00357{bottom:716.800000pt;}
.y23_c00357{bottom:717.440000pt;}
.y22_c00357{bottom:718.080000pt;}
.y1f_c00357{bottom:744.960000pt;}
.y1b_c00357{bottom:752.640000pt;}
.y1a_c00357{bottom:753.920000pt;}
.y1e_c00357{bottom:754.560000pt;}
.y1d_c00357{bottom:755.840000pt;}
.y1c_c00357{bottom:756.480000pt;}
.y17_c00357{bottom:791.680000pt;}
.y16_c00357{bottom:792.320000pt;}
.y19_c00357{bottom:794.240000pt;}
.y18_c00357{bottom:794.880000pt;}
.y15_c00357{bottom:830.080000pt;}
.y13_c00357{bottom:831.360000pt;}
.y14_c00357{bottom:833.920000pt;}
.y10_c00357{bottom:858.880000pt;}
.ya_c00357{bottom:859.520000pt;}
.yc_c00357{bottom:860.160000pt;}
.yb_c00357{bottom:861.440000pt;}
.y12_c00357{bottom:862.080000pt;}
.y11_c00357{bottom:862.720000pt;}
.y9_c00357{bottom:897.280000pt;}
.ye_c00357{bottom:897.920000pt;}
.yd_c00357{bottom:898.560000pt;}
.y8_c00357{bottom:900.480000pt;}
.yf_c00357{bottom:901.120000pt;}
.y7_c00357{bottom:935.680000pt;}
.y2_c00357{bottom:936.320000pt;}
.y1_c00357{bottom:936.960000pt;}
.y6_c00357{bottom:938.880000pt;}
.y4_c00357{bottom:939.520000pt;}
.y3_c00357{bottom:940.160000pt;}
.y5_c00357{bottom:985.600000pt;}
.h11_c00357{height:16.126250pt;}
.h12_c00357{height:27.645000pt;}
.h5_c00357{height:29.948750pt;}
.ha_c00357{height:32.252500pt;}
.he_c00357{height:34.556250pt;}
.h9_c00357{height:39.163750pt;}
.h4_c00357{height:41.467500pt;}
.h6_c00357{height:43.771250pt;}
.h7_c00357{height:46.075000pt;}
.h8_c00357{height:48.378750pt;}
.hd_c00357{height:50.682500pt;}
.hc_c00357{height:52.986250pt;}
.h2_c00357{height:55.290000pt;}
.hf_c00357{height:57.593750pt;}
.h3_c00357{height:59.897500pt;}
.hb_c00357{height:62.201250pt;}
.h10_c00357{height:73.720000pt;}
.h0_c00357{height:1028.480000pt;}
.h1_c00357{height:1028.666667pt;}
.w0_c00357{width:689.280000pt;}
.w1_c00357{width:689.333333pt;}
.x0_c00357{left:0.000000pt;}
.x1_c00357{left:57.600000pt;}
.x2a_c00357{left:58.880000pt;}
.x36_c00357{left:60.160000pt;}
.x20_c00357{left:104.320000pt;}
.x2e_c00357{left:105.600000pt;}
.x13_c00357{left:123.520000pt;}
.x2_c00357{left:124.800000pt;}
.x21_c00357{left:133.120000pt;}
.x12_c00357{left:161.920000pt;}
.x2b_c00357{left:163.840000pt;}
.x2f_c00357{left:172.160000pt;}
.x30_c00357{left:182.400000pt;}
.x31_c00357{left:200.320000pt;}
.x29_c00357{left:209.920000pt;}
.x3_c00357{left:211.200000pt;}
.x32_c00357{left:212.480000pt;}
.x22_c00357{left:218.880000pt;}
.x33_c00357{left:220.800000pt;}
.x2c_c00357{left:229.120000pt;}
.x14_c00357{left:249.600000pt;}
.x1e_c00357{left:258.560000pt;}
.x4_c00357{left:259.840000pt;}
.xc_c00357{left:267.520000pt;}
.x1d_c00357{left:268.800000pt;}
.x15_c00357{left:276.480000pt;}
.x34_c00357{left:286.080000pt;}
.x5_c00357{left:296.320000pt;}
.x37_c00357{left:297.600000pt;}
.xd_c00357{left:307.200000pt;}
.x16_c00357{left:316.160000pt;}
.x2d_c00357{left:325.760000pt;}
.x10_c00357{left:344.960000pt;}
.xe_c00357{left:355.200000pt;}
.x17_c00357{left:364.800000pt;}
.x19_c00357{left:383.360000pt;}
.xf_c00357{left:394.240000pt;}
.x38_c00357{left:430.720000pt;}
.x1a_c00357{left:432.000000pt;}
.x11_c00357{left:441.600000pt;}
.x1b_c00357{left:470.400000pt;}
.x39_c00357{left:478.720000pt;}
.x18_c00357{left:489.600000pt;}
.x23_c00357{left:499.200000pt;}
.x1f_c00357{left:518.400000pt;}
.x26_c00357{left:528.000000pt;}
.x24_c00357{left:547.200000pt;}
.x7_c00357{left:548.480000pt;}
.x27_c00357{left:556.800000pt;}
.x3a_c00357{left:574.720000pt;}
.x25_c00357{left:576.640000pt;}
.x28_c00357{left:584.960000pt;}
.x8_c00357{left:586.240000pt;}
.x35_c00357{left:604.800000pt;}
.x1c_c00357{left:614.400000pt;}
.x9_c00357{left:615.680000pt;}
.x6_c00357{left:622.720000pt;}
.xb_c00357{left:632.320000pt;}
.xa_c00357{left:633.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ba78df515e73b0f38785113c.woff2')format("woff");}.ff1_c00358{font-family:ff1_c00358;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4c_c00358{transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);}
.m4e_c00358{transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);}
.m59_c00358{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.m47_c00358{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m34_c00358{transform:matrix(0.217050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217050,0.000000,0.000000,0.250000,0,0);}
.m33_c00358{transform:matrix(0.231300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231300,0.000000,0.000000,0.250000,0,0);}
.m3e_c00358{transform:matrix(0.237200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237200,0.000000,0.000000,0.250000,0,0);}
.m3d_c00358{transform:matrix(0.243050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243050,0.000000,0.000000,0.250000,0,0);}
.m18_c00358{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m37_c00358{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m3_c00358{transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);}
.m56_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);}
.m5_c00358{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m14_c00358{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);}
.m2c_c00358{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m31_c00358{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m26_c00358{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m22_c00358{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m16_c00358{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.ma_c00358{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m28_c00358{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m29_c00358{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00358{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m12_c00358{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m15_c00358{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m27_c00358{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m7_c00358{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00358{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.md_c00358{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m24_c00358{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m19_c00358{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1_c00358{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.me_c00358{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00358{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m38_c00358{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m52_c00358{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m0_c00358{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m54_c00358{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m9_c00358{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m50_c00358{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m17_c00358{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);}
.m4a_c00358{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m51_c00358{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m48_c00358{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.mc_c00358{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m13_c00358{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);}
.m32_c00358{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00358{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00358{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);}
.m20_c00358{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00358{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m8_c00358{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m10_c00358{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m4_c00358{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);}
.m58_c00358{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);}
.m3b_c00358{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_c00358{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m25_c00358{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m45_c00358{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);}
.m44_c00358{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m40_c00358{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m46_c00358{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);}
.m43_c00358{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);}
.m1d_c00358{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m21_c00358{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);}
.m2b_c00358{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);}
.m2d_c00358{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m42_c00358{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m49_c00358{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);}
.m57_c00358{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00358{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00358{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);}
.m6_c00358{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m35_c00358{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);}
.m55_c00358{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00358{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);}
.m11_c00358{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);}
.m1c_c00358{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00358{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);}
.m1e_c00358{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m39_c00358{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.mf_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);}
.m3f_c00358{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m41_c00358{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m2_c00358{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m36_c00358{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);}
.m30_c00358{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00358{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.mb_c00358{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);}
.m53_c00358{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);}
.v0_c00358{vertical-align:0.000000px;}
.v1_c00358{vertical-align:2.880000px;}
.v2_c00358{vertical-align:14.400000px;}
.ls1_c00358{letter-spacing:0.000000px;}
.ls0_c00358{letter-spacing:157.514400px;}
.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;}
}
.ws3_c00358{word-spacing:0.000000px;}
.ws0_c00358{word-spacing:11.690400px;}
.ws2_c00358{word-spacing:31.453920px;}
.ws1_c00358{word-spacing:50.567751px;}
.fc0_c00358{color:transparent;}
.fs10_c00358{font-size:20.160000px;}
.fsc_c00358{font-size:34.560000px;}
.fsb_c00358{font-size:37.440000px;}
.fsa_c00358{font-size:40.320000px;}
.fsd_c00358{font-size:46.080000px;}
.fs4_c00358{font-size:48.960000px;}
.fs2_c00358{font-size:51.840000px;}
.fs6_c00358{font-size:54.720000px;}
.fs5_c00358{font-size:57.600000px;}
.fs3_c00358{font-size:60.480000px;}
.fs8_c00358{font-size:63.360000px;}
.fs9_c00358{font-size:66.240000px;}
.fs0_c00358{font-size:69.120000px;}
.fse_c00358{font-size:72.000000px;}
.fs1_c00358{font-size:74.880000px;}
.fs7_c00358{font-size:77.760000px;}
.fsf_c00358{font-size:80.640000px;}
.y0_c00358{bottom:0.000000px;}
.y7b_c00358{bottom:10.800000px;}
.y7c_c00358{bottom:12.960000px;}
.y82_c00358{bottom:16.560000px;}
.y7a_c00358{bottom:17.280000px;}
.y79_c00358{bottom:52.560000px;}
.y77_c00358{bottom:54.000000px;}
.y78_c00358{bottom:55.440000px;}
.y81_c00358{bottom:56.160000px;}
.y76_c00358{bottom:56.880000px;}
.y75_c00358{bottom:95.760000px;}
.y74_c00358{bottom:98.640000px;}
.y7f_c00358{bottom:99.360000px;}
.y80_c00358{bottom:101.520000px;}
.y70_c00358{bottom:139.680000px;}
.y71_c00358{bottom:140.400000px;}
.y73_c00358{bottom:141.120000px;}
.y6e_c00358{bottom:143.280000px;}
.y6f_c00358{bottom:144.000000px;}
.y7e_c00358{bottom:144.720000px;}
.y72_c00358{bottom:145.440000px;}
.y6c_c00358{bottom:182.880000px;}
.y6d_c00358{bottom:183.600000px;}
.y7d_c00358{bottom:185.760000px;}
.y6a_c00358{bottom:186.480000px;}
.y6b_c00358{bottom:187.200000px;}
.y69_c00358{bottom:226.080000px;}
.y68_c00358{bottom:226.800000px;}
.y66_c00358{bottom:228.960000px;}
.y67_c00358{bottom:229.680000px;}
.y62_c00358{bottom:268.560000px;}
.y64_c00358{bottom:271.440000px;}
.y63_c00358{bottom:272.880000px;}
.y61_c00358{bottom:273.600000px;}
.y65_c00358{bottom:274.320000px;}
.y51_c00358{bottom:314.640000px;}
.y52_c00358{bottom:315.360000px;}
.y50_c00358{bottom:317.520000px;}
.y4f_c00358{bottom:366.480000px;}
.y4d_c00358{bottom:367.200000px;}
.y4b_c00358{bottom:367.920000px;}
.y4e_c00358{bottom:368.640000px;}
.y4c_c00358{bottom:370.080000px;}
.y47_c00358{bottom:398.160000px;}
.y46_c00358{bottom:400.320000px;}
.y60_c00358{bottom:401.040000px;}
.y48_c00358{bottom:401.760000px;}
.y49_c00358{bottom:402.480000px;}
.y4a_c00358{bottom:403.200000px;}
.y5f_c00358{bottom:403.920000px;}
.y44_c00358{bottom:441.360000px;}
.y5e_c00358{bottom:443.520000px;}
.y43_c00358{bottom:444.240000px;}
.y5c_c00358{bottom:444.960000px;}
.y45_c00358{bottom:445.680000px;}
.y5d_c00358{bottom:446.400000px;}
.y42_c00358{bottom:484.560000px;}
.y3e_c00358{bottom:487.440000px;}
.y3f_c00358{bottom:488.160000px;}
.y41_c00358{bottom:488.880000px;}
.y40_c00358{bottom:489.600000px;}
.y3a_c00358{bottom:528.480000px;}
.y3d_c00358{bottom:529.200000px;}
.y39_c00358{bottom:530.640000px;}
.y5b_c00358{bottom:531.360000px;}
.y3c_c00358{bottom:532.080000px;}
.y3b_c00358{bottom:532.800000px;}
.y38_c00358{bottom:571.680000px;}
.y37_c00358{bottom:573.840000px;}
.y59_c00358{bottom:574.560000px;}
.y5a_c00358{bottom:576.720000px;}
.y35_c00358{bottom:615.600000px;}
.y57_c00358{bottom:617.040000px;}
.y34_c00358{bottom:617.760000px;}
.y36_c00358{bottom:619.200000px;}
.y58_c00358{bottom:619.920000px;}
.y33_c00358{bottom:659.520000px;}
.y31_c00358{bottom:660.240000px;}
.y2f_c00358{bottom:660.960000px;}
.y30_c00358{bottom:661.680000px;}
.y32_c00358{bottom:662.400000px;}
.y2c_c00358{bottom:691.200000px;}
.y2b_c00358{bottom:692.640000px;}
.y2d_c00358{bottom:694.080000px;}
.y2e_c00358{bottom:695.520000px;}
.y56_c00358{bottom:696.240000px;}
.y2a_c00358{bottom:734.400000px;}
.y29_c00358{bottom:736.560000px;}
.y27_c00358{bottom:766.800000px;}
.y26_c00358{bottom:768.240000px;}
.y54_c00358{bottom:768.960000px;}
.y28_c00358{bottom:770.400000px;}
.y55_c00358{bottom:771.840000px;}
.y24_c00358{bottom:810.000000px;}
.y23_c00358{bottom:810.720000px;}
.y53_c00358{bottom:812.160000px;}
.y25_c00358{bottom:813.600000px;}
.y21_c00358{bottom:853.200000px;}
.y22_c00358{bottom:853.920000px;}
.y20_c00358{bottom:854.640000px;}
.y1f_c00358{bottom:856.080000px;}
.y1e_c00358{bottom:856.800000px;}
.y18_c00358{bottom:884.880000px;}
.y1b_c00358{bottom:885.600000px;}
.y1d_c00358{bottom:886.320000px;}
.y17_c00358{bottom:887.040000px;}
.y1a_c00358{bottom:887.760000px;}
.y19_c00358{bottom:888.480000px;}
.y1c_c00358{bottom:889.200000px;}
.y13_c00358{bottom:928.080000px;}
.y12_c00358{bottom:928.800000px;}
.y15_c00358{bottom:929.520000px;}
.y16_c00358{bottom:931.680000px;}
.y14_c00358{bottom:932.400000px;}
.yf_c00358{bottom:970.560000px;}
.ye_c00358{bottom:971.280000px;}
.yc_c00358{bottom:972.000000px;}
.y11_c00358{bottom:973.440000px;}
.y10_c00358{bottom:974.160000px;}
.yd_c00358{bottom:974.880000px;}
.y5_c00358{bottom:1014.480000px;}
.y4_c00358{bottom:1015.200000px;}
.y6_c00358{bottom:1015.920000px;}
.yb_c00358{bottom:1018.080000px;}
.ya_c00358{bottom:1018.800000px;}
.y2_c00358{bottom:1057.680000px;}
.y1_c00358{bottom:1058.400000px;}
.y8_c00358{bottom:1059.120000px;}
.y9_c00358{bottom:1059.840000px;}
.y3_c00358{bottom:1061.280000px;}
.y7_c00358{bottom:1102.320000px;}
.h14_c00358{height:18.142031px;}
.he_c00358{height:31.100625px;}
.hd_c00358{height:33.692344px;}
.hc_c00358{height:36.284062px;}
.hf_c00358{height:41.467500px;}
.h6_c00358{height:44.059219px;}
.h4_c00358{height:46.650937px;}
.h8_c00358{height:49.242656px;}
.h7_c00358{height:51.834375px;}
.h5_c00358{height:54.426094px;}
.h11_c00358{height:54.714375px;}
.ha_c00358{height:57.017812px;}
.h10_c00358{height:57.306094px;}
.hb_c00358{height:59.609531px;}
.h2_c00358{height:62.201250px;}
.h12_c00358{height:64.792969px;}
.h3_c00358{height:67.384687px;}
.h9_c00358{height:69.976406px;}
.h13_c00358{height:72.568125px;}
.h15_c00358{height:81.784687px;}
.h1_c00358{height:1161.750000px;}
.h0_c00358{height:1162.080000px;}
.w0_c00358{width:775.440000px;}
.w1_c00358{width:775.500000px;}
.x0_c00358{left:0.000000px;}
.x1_c00358{left:69.120000px;}
.x36_c00358{left:70.560000px;}
.x3f_c00358{left:72.000000px;}
.x27_c00358{left:113.040000px;}
.x42_c00358{left:114.480000px;}
.x2f_c00358{left:121.680000px;}
.x2_c00358{left:143.280000px;}
.x19_c00358{left:144.720000px;}
.x28_c00358{left:177.120000px;}
.x40_c00358{left:179.280000px;}
.x2d_c00358{left:185.760000px;}
.xe_c00358{left:187.920000px;}
.x1d_c00358{left:198.000000px;}
.x30_c00358{left:208.080000px;}
.x29_c00358{left:219.600000px;}
.x41_c00358{left:222.480000px;}
.x25_c00358{left:229.680000px;}
.x15_c00358{left:231.120000px;}
.x3b_c00358{left:239.760000px;}
.x5_c00358{left:241.920000px;}
.x22_c00358{left:252.720000px;}
.x11_c00358{left:263.520000px;}
.x1e_c00358{left:273.600000px;}
.x2e_c00358{left:285.120000px;}
.x16_c00358{left:286.560000px;}
.x37_c00358{left:293.760000px;}
.x6_c00358{left:295.920000px;}
.x3_c00358{left:306.720000px;}
.x2a_c00358{left:317.520000px;}
.x26_c00358{left:328.320000px;}
.xf_c00358{left:339.120000px;}
.x3c_c00358{left:347.760000px;}
.x1c_c00358{left:349.200000px;}
.x4_c00358{left:361.440000px;}
.x23_c00358{left:371.520000px;}
.x1a_c00358{left:382.320000px;}
.x3d_c00358{left:393.840000px;}
.x1f_c00358{left:403.920000px;}
.x17_c00358{left:414.720000px;}
.x24_c00358{left:425.520000px;}
.x1b_c00358{left:436.320000px;}
.x20_c00358{left:456.480000px;}
.x2b_c00358{left:457.920000px;}
.x18_c00358{left:468.720000px;}
.x3e_c00358{left:479.520000px;}
.x38_c00358{left:490.320000px;}
.x21_c00358{left:501.120000px;}
.x2c_c00358{left:511.920000px;}
.x39_c00358{left:542.880000px;}
.x10_c00358{left:555.840000px;}
.x31_c00358{left:565.920000px;}
.x12_c00358{left:567.360000px;}
.x3a_c00358{left:586.800000px;}
.xc_c00358{left:588.240000px;}
.x43_c00358{left:598.320000px;}
.x8_c00358{left:619.920000px;}
.x13_c00358{left:621.360000px;}
.x32_c00358{left:653.040000px;}
.x9_c00358{left:654.480000px;}
.x35_c00358{left:663.120000px;}
.x14_c00358{left:686.880000px;}
.x7_c00358{left:691.200000px;}
.x34_c00358{left:694.800000px;}
.xd_c00358{left:696.240000px;}
.xa_c00358{left:697.680000px;}
.x33_c00358{left:716.400000px;}
.xb_c00358{left:717.840000px;}
@media print{
.v0_c00358{vertical-align:0.000000pt;}
.v1_c00358{vertical-align:2.560000pt;}
.v2_c00358{vertical-align:12.800000pt;}
.ls1_c00358{letter-spacing:0.000000pt;}
.ls0_c00358{letter-spacing:140.012800pt;}
.ws3_c00358{word-spacing:0.000000pt;}
.ws0_c00358{word-spacing:10.391467pt;}
.ws2_c00358{word-spacing:27.959040pt;}
.ws1_c00358{word-spacing:44.949112pt;}
.fs10_c00358{font-size:17.920000pt;}
.fsc_c00358{font-size:30.720000pt;}
.fsb_c00358{font-size:33.280000pt;}
.fsa_c00358{font-size:35.840000pt;}
.fsd_c00358{font-size:40.960000pt;}
.fs4_c00358{font-size:43.520000pt;}
.fs2_c00358{font-size:46.080000pt;}
.fs6_c00358{font-size:48.640000pt;}
.fs5_c00358{font-size:51.200000pt;}
.fs3_c00358{font-size:53.760000pt;}
.fs8_c00358{font-size:56.320000pt;}
.fs9_c00358{font-size:58.880000pt;}
.fs0_c00358{font-size:61.440000pt;}
.fse_c00358{font-size:64.000000pt;}
.fs1_c00358{font-size:66.560000pt;}
.fs7_c00358{font-size:69.120000pt;}
.fsf_c00358{font-size:71.680000pt;}
.y0_c00358{bottom:0.000000pt;}
.y7b_c00358{bottom:9.600000pt;}
.y7c_c00358{bottom:11.520000pt;}
.y82_c00358{bottom:14.720000pt;}
.y7a_c00358{bottom:15.360000pt;}
.y79_c00358{bottom:46.720000pt;}
.y77_c00358{bottom:48.000000pt;}
.y78_c00358{bottom:49.280000pt;}
.y81_c00358{bottom:49.920000pt;}
.y76_c00358{bottom:50.560000pt;}
.y75_c00358{bottom:85.120000pt;}
.y74_c00358{bottom:87.680000pt;}
.y7f_c00358{bottom:88.320000pt;}
.y80_c00358{bottom:90.240000pt;}
.y70_c00358{bottom:124.160000pt;}
.y71_c00358{bottom:124.800000pt;}
.y73_c00358{bottom:125.440000pt;}
.y6e_c00358{bottom:127.360000pt;}
.y6f_c00358{bottom:128.000000pt;}
.y7e_c00358{bottom:128.640000pt;}
.y72_c00358{bottom:129.280000pt;}
.y6c_c00358{bottom:162.560000pt;}
.y6d_c00358{bottom:163.200000pt;}
.y7d_c00358{bottom:165.120000pt;}
.y6a_c00358{bottom:165.760000pt;}
.y6b_c00358{bottom:166.400000pt;}
.y69_c00358{bottom:200.960000pt;}
.y68_c00358{bottom:201.600000pt;}
.y66_c00358{bottom:203.520000pt;}
.y67_c00358{bottom:204.160000pt;}
.y62_c00358{bottom:238.720000pt;}
.y64_c00358{bottom:241.280000pt;}
.y63_c00358{bottom:242.560000pt;}
.y61_c00358{bottom:243.200000pt;}
.y65_c00358{bottom:243.840000pt;}
.y51_c00358{bottom:279.680000pt;}
.y52_c00358{bottom:280.320000pt;}
.y50_c00358{bottom:282.240000pt;}
.y4f_c00358{bottom:325.760000pt;}
.y4d_c00358{bottom:326.400000pt;}
.y4b_c00358{bottom:327.040000pt;}
.y4e_c00358{bottom:327.680000pt;}
.y4c_c00358{bottom:328.960000pt;}
.y47_c00358{bottom:353.920000pt;}
.y46_c00358{bottom:355.840000pt;}
.y60_c00358{bottom:356.480000pt;}
.y48_c00358{bottom:357.120000pt;}
.y49_c00358{bottom:357.760000pt;}
.y4a_c00358{bottom:358.400000pt;}
.y5f_c00358{bottom:359.040000pt;}
.y44_c00358{bottom:392.320000pt;}
.y5e_c00358{bottom:394.240000pt;}
.y43_c00358{bottom:394.880000pt;}
.y5c_c00358{bottom:395.520000pt;}
.y45_c00358{bottom:396.160000pt;}
.y5d_c00358{bottom:396.800000pt;}
.y42_c00358{bottom:430.720000pt;}
.y3e_c00358{bottom:433.280000pt;}
.y3f_c00358{bottom:433.920000pt;}
.y41_c00358{bottom:434.560000pt;}
.y40_c00358{bottom:435.200000pt;}
.y3a_c00358{bottom:469.760000pt;}
.y3d_c00358{bottom:470.400000pt;}
.y39_c00358{bottom:471.680000pt;}
.y5b_c00358{bottom:472.320000pt;}
.y3c_c00358{bottom:472.960000pt;}
.y3b_c00358{bottom:473.600000pt;}
.y38_c00358{bottom:508.160000pt;}
.y37_c00358{bottom:510.080000pt;}
.y59_c00358{bottom:510.720000pt;}
.y5a_c00358{bottom:512.640000pt;}
.y35_c00358{bottom:547.200000pt;}
.y57_c00358{bottom:548.480000pt;}
.y34_c00358{bottom:549.120000pt;}
.y36_c00358{bottom:550.400000pt;}
.y58_c00358{bottom:551.040000pt;}
.y33_c00358{bottom:586.240000pt;}
.y31_c00358{bottom:586.880000pt;}
.y2f_c00358{bottom:587.520000pt;}
.y30_c00358{bottom:588.160000pt;}
.y32_c00358{bottom:588.800000pt;}
.y2c_c00358{bottom:614.400000pt;}
.y2b_c00358{bottom:615.680000pt;}
.y2d_c00358{bottom:616.960000pt;}
.y2e_c00358{bottom:618.240000pt;}
.y56_c00358{bottom:618.880000pt;}
.y2a_c00358{bottom:652.800000pt;}
.y29_c00358{bottom:654.720000pt;}
.y27_c00358{bottom:681.600000pt;}
.y26_c00358{bottom:682.880000pt;}
.y54_c00358{bottom:683.520000pt;}
.y28_c00358{bottom:684.800000pt;}
.y55_c00358{bottom:686.080000pt;}
.y24_c00358{bottom:720.000000pt;}
.y23_c00358{bottom:720.640000pt;}
.y53_c00358{bottom:721.920000pt;}
.y25_c00358{bottom:723.200000pt;}
.y21_c00358{bottom:758.400000pt;}
.y22_c00358{bottom:759.040000pt;}
.y20_c00358{bottom:759.680000pt;}
.y1f_c00358{bottom:760.960000pt;}
.y1e_c00358{bottom:761.600000pt;}
.y18_c00358{bottom:786.560000pt;}
.y1b_c00358{bottom:787.200000pt;}
.y1d_c00358{bottom:787.840000pt;}
.y17_c00358{bottom:788.480000pt;}
.y1a_c00358{bottom:789.120000pt;}
.y19_c00358{bottom:789.760000pt;}
.y1c_c00358{bottom:790.400000pt;}
.y13_c00358{bottom:824.960000pt;}
.y12_c00358{bottom:825.600000pt;}
.y15_c00358{bottom:826.240000pt;}
.y16_c00358{bottom:828.160000pt;}
.y14_c00358{bottom:828.800000pt;}
.yf_c00358{bottom:862.720000pt;}
.ye_c00358{bottom:863.360000pt;}
.yc_c00358{bottom:864.000000pt;}
.y11_c00358{bottom:865.280000pt;}
.y10_c00358{bottom:865.920000pt;}
.yd_c00358{bottom:866.560000pt;}
.y5_c00358{bottom:901.760000pt;}
.y4_c00358{bottom:902.400000pt;}
.y6_c00358{bottom:903.040000pt;}
.yb_c00358{bottom:904.960000pt;}
.ya_c00358{bottom:905.600000pt;}
.y2_c00358{bottom:940.160000pt;}
.y1_c00358{bottom:940.800000pt;}
.y8_c00358{bottom:941.440000pt;}
.y9_c00358{bottom:942.080000pt;}
.y3_c00358{bottom:943.360000pt;}
.y7_c00358{bottom:979.840000pt;}
.h14_c00358{height:16.126250pt;}
.he_c00358{height:27.645000pt;}
.hd_c00358{height:29.948750pt;}
.hc_c00358{height:32.252500pt;}
.hf_c00358{height:36.860000pt;}
.h6_c00358{height:39.163750pt;}
.h4_c00358{height:41.467500pt;}
.h8_c00358{height:43.771250pt;}
.h7_c00358{height:46.075000pt;}
.h5_c00358{height:48.378750pt;}
.h11_c00358{height:48.635000pt;}
.ha_c00358{height:50.682500pt;}
.h10_c00358{height:50.938750pt;}
.hb_c00358{height:52.986250pt;}
.h2_c00358{height:55.290000pt;}
.h12_c00358{height:57.593750pt;}
.h3_c00358{height:59.897500pt;}
.h9_c00358{height:62.201250pt;}
.h13_c00358{height:64.505000pt;}
.h15_c00358{height:72.697500pt;}
.h1_c00358{height:1032.666667pt;}
.h0_c00358{height:1032.960000pt;}
.w0_c00358{width:689.280000pt;}
.w1_c00358{width:689.333333pt;}
.x0_c00358{left:0.000000pt;}
.x1_c00358{left:61.440000pt;}
.x36_c00358{left:62.720000pt;}
.x3f_c00358{left:64.000000pt;}
.x27_c00358{left:100.480000pt;}
.x42_c00358{left:101.760000pt;}
.x2f_c00358{left:108.160000pt;}
.x2_c00358{left:127.360000pt;}
.x19_c00358{left:128.640000pt;}
.x28_c00358{left:157.440000pt;}
.x40_c00358{left:159.360000pt;}
.x2d_c00358{left:165.120000pt;}
.xe_c00358{left:167.040000pt;}
.x1d_c00358{left:176.000000pt;}
.x30_c00358{left:184.960000pt;}
.x29_c00358{left:195.200000pt;}
.x41_c00358{left:197.760000pt;}
.x25_c00358{left:204.160000pt;}
.x15_c00358{left:205.440000pt;}
.x3b_c00358{left:213.120000pt;}
.x5_c00358{left:215.040000pt;}
.x22_c00358{left:224.640000pt;}
.x11_c00358{left:234.240000pt;}
.x1e_c00358{left:243.200000pt;}
.x2e_c00358{left:253.440000pt;}
.x16_c00358{left:254.720000pt;}
.x37_c00358{left:261.120000pt;}
.x6_c00358{left:263.040000pt;}
.x3_c00358{left:272.640000pt;}
.x2a_c00358{left:282.240000pt;}
.x26_c00358{left:291.840000pt;}
.xf_c00358{left:301.440000pt;}
.x3c_c00358{left:309.120000pt;}
.x1c_c00358{left:310.400000pt;}
.x4_c00358{left:321.280000pt;}
.x23_c00358{left:330.240000pt;}
.x1a_c00358{left:339.840000pt;}
.x3d_c00358{left:350.080000pt;}
.x1f_c00358{left:359.040000pt;}
.x17_c00358{left:368.640000pt;}
.x24_c00358{left:378.240000pt;}
.x1b_c00358{left:387.840000pt;}
.x20_c00358{left:405.760000pt;}
.x2b_c00358{left:407.040000pt;}
.x18_c00358{left:416.640000pt;}
.x3e_c00358{left:426.240000pt;}
.x38_c00358{left:435.840000pt;}
.x21_c00358{left:445.440000pt;}
.x2c_c00358{left:455.040000pt;}
.x39_c00358{left:482.560000pt;}
.x10_c00358{left:494.080000pt;}
.x31_c00358{left:503.040000pt;}
.x12_c00358{left:504.320000pt;}
.x3a_c00358{left:521.600000pt;}
.xc_c00358{left:522.880000pt;}
.x43_c00358{left:531.840000pt;}
.x8_c00358{left:551.040000pt;}
.x13_c00358{left:552.320000pt;}
.x32_c00358{left:580.480000pt;}
.x9_c00358{left:581.760000pt;}
.x35_c00358{left:589.440000pt;}
.x14_c00358{left:610.560000pt;}
.x7_c00358{left:614.400000pt;}
.x34_c00358{left:617.600000pt;}
.xd_c00358{left:618.880000pt;}
.xa_c00358{left:620.160000pt;}
.x33_c00358{left:636.800000pt;}
.xb_c00358{left:638.080000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_270d3f82e7655f69ee9821f1.woff2')format("woff");}.ff1_c00359{font-family:ff1_c00359;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m50_c00359{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m3f_c00359{transform:matrix(0.238775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238775,0.000000,0.000000,0.250000,0,0);}
.m7_c00359{transform:matrix(0.241125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241125,0.000000,0.000000,0.250000,0,0);}
.m39_c00359{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m4f_c00359{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);}
.m42_c00359{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);}
.m4b_c00359{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);}
.m52_c00359{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);}
.m41_c00359{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);}
.m2b_c00359{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);}
.m44_c00359{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);}
.m2f_c00359{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);}
.m28_c00359{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m16_c00359{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_c00359{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m25_c00359{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.me_c00359{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m11_c00359{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m30_c00359{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m27_c00359{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m47_c00359{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m3_c00359{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m36_c00359{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m37_c00359{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00359{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m24_c00359{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00359{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m29_c00359{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mb_c00359{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.md_c00359{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1_c00359{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00359{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m31_c00359{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00359{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m32_c00359{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00359{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);}
.m33_c00359{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00359{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);}
.m3a_c00359{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m34_c00359{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m4_c00359{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00359{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);}
.m1d_c00359{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);}
.m0_c00359{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m8_c00359{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m26_c00359{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);}
.m6_c00359{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);}
.m19_c00359{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m13_c00359{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m35_c00359{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m2_c00359{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);}
.m45_c00359{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.mc_c00359{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00359{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m22_c00359{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m5_c00359{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00359{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00359{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00359{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m10_c00359{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m49_c00359{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m38_c00359{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m23_c00359{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);}
.m48_c00359{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_c00359{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.mf_c00359{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m17_c00359{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00359{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);}
.m43_c00359{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m15_c00359{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00359{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);}
.m14_c00359{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m20_c00359{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00359{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m46_c00359{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m12_c00359{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m18_c00359{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00359{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);}
.ma_c00359{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00359{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m40_c00359{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m51_c00359{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00359{transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);}
.v1_c00359{vertical-align:-17.280000px;}
.v0_c00359{vertical-align:0.000000px;}
.ls0_c00359{letter-spacing:0.000000px;}
.sc__c00359{text-shadow:none;}
.sc0_c00359{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00359{-webkit-text-stroke:0px transparent;}
.sc0_c00359{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00359{word-spacing:0.000000px;}
.ws0_c00359{word-spacing:0.531840px;}
.fc0_c00359{color:transparent;}
.fs4_c00359{font-size:34.560000px;}
.fsf_c00359{font-size:37.440000px;}
.fsc_c00359{font-size:40.320000px;}
.fs3_c00359{font-size:46.080000px;}
.fs7_c00359{font-size:48.960000px;}
.fs1_c00359{font-size:51.840000px;}
.fs9_c00359{font-size:54.720000px;}
.fs8_c00359{font-size:57.600000px;}
.fs0_c00359{font-size:60.480000px;}
.fs5_c00359{font-size:63.360000px;}
.fsb_c00359{font-size:66.240000px;}
.fs6_c00359{font-size:69.120000px;}
.fsd_c00359{font-size:72.000000px;}
.fsa_c00359{font-size:74.880000px;}
.fs2_c00359{font-size:77.760000px;}
.fse_c00359{font-size:100.800000px;}
.y0_c00359{bottom:0.000000px;}
.y5b_c00359{bottom:51.840000px;}
.y6b_c00359{bottom:54.000000px;}
.y5c_c00359{bottom:54.720000px;}
.y5a_c00359{bottom:55.440000px;}
.y6c_c00359{bottom:56.160000px;}
.y59_c00359{bottom:94.320000px;}
.y57_c00359{bottom:97.200000px;}
.y58_c00359{bottom:97.920000px;}
.y6a_c00359{bottom:99.360000px;}
.y56_c00359{bottom:136.800000px;}
.y67_c00359{bottom:140.400000px;}
.y55_c00359{bottom:141.120000px;}
.y69_c00359{bottom:141.840000px;}
.y68_c00359{bottom:142.560000px;}
.y54_c00359{bottom:180.720000px;}
.y63_c00359{bottom:183.600000px;}
.y53_c00359{bottom:184.320000px;}
.y65_c00359{bottom:185.040000px;}
.y64_c00359{bottom:185.760000px;}
.y66_c00359{bottom:186.480000px;}
.y52_c00359{bottom:223.920000px;}
.y50_c00359{bottom:227.520000px;}
.y51_c00359{bottom:228.960000px;}
.y61_c00359{bottom:229.680000px;}
.y62_c00359{bottom:230.400000px;}
.y4f_c00359{bottom:267.120000px;}
.y60_c00359{bottom:270.000000px;}
.y4e_c00359{bottom:270.720000px;}
.y5f_c00359{bottom:272.880000px;}
.y4d_c00359{bottom:311.040000px;}
.y4c_c00359{bottom:313.200000px;}
.y5e_c00359{bottom:313.920000px;}
.y4b_c00359{bottom:354.240000px;}
.y5d_c00359{bottom:356.400000px;}
.y4a_c00359{bottom:357.120000px;}
.y49_c00359{bottom:398.160000px;}
.y42_c00359{bottom:429.840000px;}
.y48_c00359{bottom:430.560000px;}
.y45_c00359{bottom:431.280000px;}
.y44_c00359{bottom:432.000000px;}
.y43_c00359{bottom:433.440000px;}
.y47_c00359{bottom:434.160000px;}
.y41_c00359{bottom:463.680000px;}
.y3d_c00359{bottom:464.400000px;}
.y3b_c00359{bottom:473.760000px;}
.y3f_c00359{bottom:474.480000px;}
.y3e_c00359{bottom:475.200000px;}
.y46_c00359{bottom:475.920000px;}
.y40_c00359{bottom:476.640000px;}
.y3c_c00359{bottom:477.360000px;}
.y3a_c00359{bottom:516.240000px;}
.y39_c00359{bottom:520.560000px;}
.y36_c00359{bottom:547.920000px;}
.y34_c00359{bottom:548.640000px;}
.y33_c00359{bottom:549.360000px;}
.y31_c00359{bottom:550.080000px;}
.y38_c00359{bottom:550.800000px;}
.y35_c00359{bottom:551.520000px;}
.y32_c00359{bottom:552.240000px;}
.y37_c00359{bottom:552.960000px;}
.y2e_c00359{bottom:592.560000px;}
.y2d_c00359{bottom:593.280000px;}
.y2f_c00359{bottom:594.720000px;}
.y30_c00359{bottom:595.440000px;}
.y2b_c00359{bottom:635.760000px;}
.y2c_c00359{bottom:637.920000px;}
.y29_c00359{bottom:668.160000px;}
.y27_c00359{bottom:668.880000px;}
.y2a_c00359{bottom:669.600000px;}
.y28_c00359{bottom:671.040000px;}
.y20_c00359{bottom:712.080000px;}
.y1f_c00359{bottom:714.240000px;}
.y1e_c00359{bottom:743.040000px;}
.y1a_c00359{bottom:744.480000px;}
.y1b_c00359{bottom:745.200000px;}
.y26_c00359{bottom:745.920000px;}
.y1d_c00359{bottom:746.640000px;}
.y1c_c00359{bottom:747.360000px;}
.y19_c00359{bottom:786.960000px;}
.y17_c00359{bottom:787.680000px;}
.y25_c00359{bottom:789.120000px;}
.y18_c00359{bottom:789.840000px;}
.y15_c00359{bottom:830.160000px;}
.y14_c00359{bottom:830.880000px;}
.y16_c00359{bottom:833.040000px;}
.y10_c00359{bottom:873.360000px;}
.y11_c00359{bottom:874.080000px;}
.y13_c00359{bottom:875.520000px;}
.y24_c00359{bottom:876.240000px;}
.y12_c00359{bottom:876.960000px;}
.yb_c00359{bottom:916.560000px;}
.yc_c00359{bottom:917.280000px;}
.yf_c00359{bottom:918.720000px;}
.ye_c00359{bottom:919.440000px;}
.yd_c00359{bottom:920.160000px;}
.ya_c00359{bottom:948.960000px;}
.y7_c00359{bottom:959.760000px;}
.y23_c00359{bottom:960.480000px;}
.y9_c00359{bottom:961.920000px;}
.y8_c00359{bottom:962.640000px;}
.y6_c00359{bottom:1002.240000px;}
.y4_c00359{bottom:1002.960000px;}
.y5_c00359{bottom:1005.120000px;}
.y3_c00359{bottom:1044.000000px;}
.y1_c00359{bottom:1046.160000px;}
.y2_c00359{bottom:1048.320000px;}
.y22_c00359{bottom:1049.040000px;}
.y21_c00359{bottom:1098.720000px;}
.h6_c00359{height:31.100625px;}
.h11_c00359{height:33.692344px;}
.he_c00359{height:36.284062px;}
.h5_c00359{height:41.467500px;}
.h9_c00359{height:44.059219px;}
.h3_c00359{height:46.650937px;}
.hb_c00359{height:49.242656px;}
.ha_c00359{height:51.834375px;}
.h2_c00359{height:54.426094px;}
.h7_c00359{height:57.017812px;}
.hd_c00359{height:59.609531px;}
.h8_c00359{height:62.201250px;}
.hf_c00359{height:64.792969px;}
.hc_c00359{height:67.384687px;}
.h4_c00359{height:69.976406px;}
.h10_c00359{height:90.710156px;}
.h1_c00359{height:1147.500000px;}
.h0_c00359{height:1147.680000px;}
.w0_c00359{width:774.720000px;}
.w1_c00359{width:774.750000px;}
.x0_c00359{left:0.000000px;}
.x1_c00359{left:66.960000px;}
.x1e_c00359{left:68.400000px;}
.x2b_c00359{left:69.840000px;}
.x29_c00359{left:141.120000px;}
.x2_c00359{left:142.560000px;}
.x2a_c00359{left:176.400000px;}
.x3_c00359{left:185.760000px;}
.x21_c00359{left:196.560000px;}
.x16_c00359{left:207.360000px;}
.x4_c00359{left:229.680000px;}
.xc_c00359{left:239.760000px;}
.x5_c00359{left:251.280000px;}
.x22_c00359{left:262.080000px;}
.x11_c00359{left:283.680000px;}
.xd_c00359{left:295.200000px;}
.x6_c00359{left:305.280000px;}
.x7_c00359{left:338.400000px;}
.xf_c00359{left:347.760000px;}
.x1f_c00359{left:349.200000px;}
.xe_c00359{left:359.280000px;}
.x13_c00359{left:370.080000px;}
.x8_c00359{left:380.880000px;}
.x23_c00359{left:382.320000px;}
.x10_c00359{left:391.680000px;}
.x12_c00359{left:402.480000px;}
.xa_c00359{left:424.080000px;}
.x25_c00359{left:434.880000px;}
.x9_c00359{left:436.320000px;}
.x20_c00359{left:446.400000px;}
.x14_c00359{left:467.280000px;}
.x24_c00359{left:478.800000px;}
.xb_c00359{left:521.280000px;}
.x15_c00359{left:532.080000px;}
.x26_c00359{left:545.040000px;}
.x2f_c00359{left:555.120000px;}
.x32_c00359{left:563.760000px;}
.x27_c00359{left:565.200000px;}
.x2c_c00359{left:586.800000px;}
.x2e_c00359{left:596.880000px;}
.x1d_c00359{left:598.320000px;}
.x18_c00359{left:619.920000px;}
.x28_c00359{left:651.600000px;}
.x19_c00359{left:653.040000px;}
.x17_c00359{left:678.240000px;}
.x30_c00359{left:684.720000px;}
.x1a_c00359{left:686.160000px;}
.x2d_c00359{left:694.080000px;}
.x1b_c00359{left:695.520000px;}
.x31_c00359{left:714.960000px;}
.x1c_c00359{left:716.400000px;}
@media print{
.v1_c00359{vertical-align:-15.360000pt;}
.v0_c00359{vertical-align:0.000000pt;}
.ls0_c00359{letter-spacing:0.000000pt;}
.ws1_c00359{word-spacing:0.000000pt;}
.ws0_c00359{word-spacing:0.472747pt;}
.fs4_c00359{font-size:30.720000pt;}
.fsf_c00359{font-size:33.280000pt;}
.fsc_c00359{font-size:35.840000pt;}
.fs3_c00359{font-size:40.960000pt;}
.fs7_c00359{font-size:43.520000pt;}
.fs1_c00359{font-size:46.080000pt;}
.fs9_c00359{font-size:48.640000pt;}
.fs8_c00359{font-size:51.200000pt;}
.fs0_c00359{font-size:53.760000pt;}
.fs5_c00359{font-size:56.320000pt;}
.fsb_c00359{font-size:58.880000pt;}
.fs6_c00359{font-size:61.440000pt;}
.fsd_c00359{font-size:64.000000pt;}
.fsa_c00359{font-size:66.560000pt;}
.fs2_c00359{font-size:69.120000pt;}
.fse_c00359{font-size:89.600000pt;}
.y0_c00359{bottom:0.000000pt;}
.y5b_c00359{bottom:46.080000pt;}
.y6b_c00359{bottom:48.000000pt;}
.y5c_c00359{bottom:48.640000pt;}
.y5a_c00359{bottom:49.280000pt;}
.y6c_c00359{bottom:49.920000pt;}
.y59_c00359{bottom:83.840000pt;}
.y57_c00359{bottom:86.400000pt;}
.y58_c00359{bottom:87.040000pt;}
.y6a_c00359{bottom:88.320000pt;}
.y56_c00359{bottom:121.600000pt;}
.y67_c00359{bottom:124.800000pt;}
.y55_c00359{bottom:125.440000pt;}
.y69_c00359{bottom:126.080000pt;}
.y68_c00359{bottom:126.720000pt;}
.y54_c00359{bottom:160.640000pt;}
.y63_c00359{bottom:163.200000pt;}
.y53_c00359{bottom:163.840000pt;}
.y65_c00359{bottom:164.480000pt;}
.y64_c00359{bottom:165.120000pt;}
.y66_c00359{bottom:165.760000pt;}
.y52_c00359{bottom:199.040000pt;}
.y50_c00359{bottom:202.240000pt;}
.y51_c00359{bottom:203.520000pt;}
.y61_c00359{bottom:204.160000pt;}
.y62_c00359{bottom:204.800000pt;}
.y4f_c00359{bottom:237.440000pt;}
.y60_c00359{bottom:240.000000pt;}
.y4e_c00359{bottom:240.640000pt;}
.y5f_c00359{bottom:242.560000pt;}
.y4d_c00359{bottom:276.480000pt;}
.y4c_c00359{bottom:278.400000pt;}
.y5e_c00359{bottom:279.040000pt;}
.y4b_c00359{bottom:314.880000pt;}
.y5d_c00359{bottom:316.800000pt;}
.y4a_c00359{bottom:317.440000pt;}
.y49_c00359{bottom:353.920000pt;}
.y42_c00359{bottom:382.080000pt;}
.y48_c00359{bottom:382.720000pt;}
.y45_c00359{bottom:383.360000pt;}
.y44_c00359{bottom:384.000000pt;}
.y43_c00359{bottom:385.280000pt;}
.y47_c00359{bottom:385.920000pt;}
.y41_c00359{bottom:412.160000pt;}
.y3d_c00359{bottom:412.800000pt;}
.y3b_c00359{bottom:421.120000pt;}
.y3f_c00359{bottom:421.760000pt;}
.y3e_c00359{bottom:422.400000pt;}
.y46_c00359{bottom:423.040000pt;}
.y40_c00359{bottom:423.680000pt;}
.y3c_c00359{bottom:424.320000pt;}
.y3a_c00359{bottom:458.880000pt;}
.y39_c00359{bottom:462.720000pt;}
.y36_c00359{bottom:487.040000pt;}
.y34_c00359{bottom:487.680000pt;}
.y33_c00359{bottom:488.320000pt;}
.y31_c00359{bottom:488.960000pt;}
.y38_c00359{bottom:489.600000pt;}
.y35_c00359{bottom:490.240000pt;}
.y32_c00359{bottom:490.880000pt;}
.y37_c00359{bottom:491.520000pt;}
.y2e_c00359{bottom:526.720000pt;}
.y2d_c00359{bottom:527.360000pt;}
.y2f_c00359{bottom:528.640000pt;}
.y30_c00359{bottom:529.280000pt;}
.y2b_c00359{bottom:565.120000pt;}
.y2c_c00359{bottom:567.040000pt;}
.y29_c00359{bottom:593.920000pt;}
.y27_c00359{bottom:594.560000pt;}
.y2a_c00359{bottom:595.200000pt;}
.y28_c00359{bottom:596.480000pt;}
.y20_c00359{bottom:632.960000pt;}
.y1f_c00359{bottom:634.880000pt;}
.y1e_c00359{bottom:660.480000pt;}
.y1a_c00359{bottom:661.760000pt;}
.y1b_c00359{bottom:662.400000pt;}
.y26_c00359{bottom:663.040000pt;}
.y1d_c00359{bottom:663.680000pt;}
.y1c_c00359{bottom:664.320000pt;}
.y19_c00359{bottom:699.520000pt;}
.y17_c00359{bottom:700.160000pt;}
.y25_c00359{bottom:701.440000pt;}
.y18_c00359{bottom:702.080000pt;}
.y15_c00359{bottom:737.920000pt;}
.y14_c00359{bottom:738.560000pt;}
.y16_c00359{bottom:740.480000pt;}
.y10_c00359{bottom:776.320000pt;}
.y11_c00359{bottom:776.960000pt;}
.y13_c00359{bottom:778.240000pt;}
.y24_c00359{bottom:778.880000pt;}
.y12_c00359{bottom:779.520000pt;}
.yb_c00359{bottom:814.720000pt;}
.yc_c00359{bottom:815.360000pt;}
.yf_c00359{bottom:816.640000pt;}
.ye_c00359{bottom:817.280000pt;}
.yd_c00359{bottom:817.920000pt;}
.ya_c00359{bottom:843.520000pt;}
.y7_c00359{bottom:853.120000pt;}
.y23_c00359{bottom:853.760000pt;}
.y9_c00359{bottom:855.040000pt;}
.y8_c00359{bottom:855.680000pt;}
.y6_c00359{bottom:890.880000pt;}
.y4_c00359{bottom:891.520000pt;}
.y5_c00359{bottom:893.440000pt;}
.y3_c00359{bottom:928.000000pt;}
.y1_c00359{bottom:929.920000pt;}
.y2_c00359{bottom:931.840000pt;}
.y22_c00359{bottom:932.480000pt;}
.y21_c00359{bottom:976.640000pt;}
.h6_c00359{height:27.645000pt;}
.h11_c00359{height:29.948750pt;}
.he_c00359{height:32.252500pt;}
.h5_c00359{height:36.860000pt;}
.h9_c00359{height:39.163750pt;}
.h3_c00359{height:41.467500pt;}
.hb_c00359{height:43.771250pt;}
.ha_c00359{height:46.075000pt;}
.h2_c00359{height:48.378750pt;}
.h7_c00359{height:50.682500pt;}
.hd_c00359{height:52.986250pt;}
.h8_c00359{height:55.290000pt;}
.hf_c00359{height:57.593750pt;}
.hc_c00359{height:59.897500pt;}
.h4_c00359{height:62.201250pt;}
.h10_c00359{height:80.631250pt;}
.h1_c00359{height:1020.000000pt;}
.h0_c00359{height:1020.160000pt;}
.w0_c00359{width:688.640000pt;}
.w1_c00359{width:688.666667pt;}
.x0_c00359{left:0.000000pt;}
.x1_c00359{left:59.520000pt;}
.x1e_c00359{left:60.800000pt;}
.x2b_c00359{left:62.080000pt;}
.x29_c00359{left:125.440000pt;}
.x2_c00359{left:126.720000pt;}
.x2a_c00359{left:156.800000pt;}
.x3_c00359{left:165.120000pt;}
.x21_c00359{left:174.720000pt;}
.x16_c00359{left:184.320000pt;}
.x4_c00359{left:204.160000pt;}
.xc_c00359{left:213.120000pt;}
.x5_c00359{left:223.360000pt;}
.x22_c00359{left:232.960000pt;}
.x11_c00359{left:252.160000pt;}
.xd_c00359{left:262.400000pt;}
.x6_c00359{left:271.360000pt;}
.x7_c00359{left:300.800000pt;}
.xf_c00359{left:309.120000pt;}
.x1f_c00359{left:310.400000pt;}
.xe_c00359{left:319.360000pt;}
.x13_c00359{left:328.960000pt;}
.x8_c00359{left:338.560000pt;}
.x23_c00359{left:339.840000pt;}
.x10_c00359{left:348.160000pt;}
.x12_c00359{left:357.760000pt;}
.xa_c00359{left:376.960000pt;}
.x25_c00359{left:386.560000pt;}
.x9_c00359{left:387.840000pt;}
.x20_c00359{left:396.800000pt;}
.x14_c00359{left:415.360000pt;}
.x24_c00359{left:425.600000pt;}
.xb_c00359{left:463.360000pt;}
.x15_c00359{left:472.960000pt;}
.x26_c00359{left:484.480000pt;}
.x2f_c00359{left:493.440000pt;}
.x32_c00359{left:501.120000pt;}
.x27_c00359{left:502.400000pt;}
.x2c_c00359{left:521.600000pt;}
.x2e_c00359{left:530.560000pt;}
.x1d_c00359{left:531.840000pt;}
.x18_c00359{left:551.040000pt;}
.x28_c00359{left:579.200000pt;}
.x19_c00359{left:580.480000pt;}
.x17_c00359{left:602.880000pt;}
.x30_c00359{left:608.640000pt;}
.x1a_c00359{left:609.920000pt;}
.x2d_c00359{left:616.960000pt;}
.x1b_c00359{left:618.240000pt;}
.x31_c00359{left:635.520000pt;}
.x1c_c00359{left:636.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_65e644c4bfa3a93f2eeb2c3f.woff2')format("woff");}.ff1_c00360{font-family:ff1_c00360;line-height:1.109863;font-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_c00360{transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);}
.m16_c00360{transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);}
.m4e_c00360{transform:matrix(0.218725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218725,0.000000,0.000000,0.250000,0,0);}
.m20_c00360{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);}
.m4b_c00360{transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);}
.m11_c00360{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m2_c00360{transform:matrix(0.237375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237375,0.000000,0.000000,0.250000,0,0);}
.m44_c00360{transform:matrix(0.239600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239600,0.000000,0.000000,0.250000,0,0);}
.m46_c00360{transform:matrix(0.243975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243975,0.000000,0.000000,0.250000,0,0);}
.m39_c00360{transform:matrix(0.245125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245125,0.000000,0.000000,0.250000,0,0);}
.m37_c00360{transform:matrix(0.247275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247275,0.000000,0.000000,0.250000,0,0);}
.m1c_c00360{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m3_c00360{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00360{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);}
.m40_c00360{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);}
.m32_c00360{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_c00360{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m6_c00360{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m30_c00360{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);}
.m2d_c00360{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m29_c00360{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00360{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m14_c00360{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m18_c00360{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m21_c00360{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m4_c00360{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m22_c00360{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00360{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mc_c00360{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m5_c00360{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m9_c00360{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mf_c00360{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m49_c00360{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00360{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m34_c00360{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.md_c00360{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m19_c00360{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m28_c00360{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m10_c00360{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m15_c00360{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.ma_c00360{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m36_c00360{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);}
.m35_c00360{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00360{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);}
.m24_c00360{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m48_c00360{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);}
.m0_c00360{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00360{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);}
.m3a_c00360{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.me_c00360{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1_c00360{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m38_c00360{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);}
.m2f_c00360{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m12_c00360{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);}
.m8_c00360{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m26_c00360{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);}
.m2a_c00360{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m27_c00360{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);}
.m3b_c00360{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m17_c00360{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);}
.m2c_c00360{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);}
.m2e_c00360{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m23_c00360{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);}
.m2b_c00360{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00360{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m45_c00360{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00360{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m33_c00360{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00360{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00360{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);}
.m13_c00360{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m42_c00360{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.mb_c00360{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);}
.m25_c00360{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m43_c00360{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m47_c00360{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00360{transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);}
.m7_c00360{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m41_c00360{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.v0_c00360{vertical-align:0.000000px;}
.v1_c00360{vertical-align:8.640000px;}
.ls0_c00360{letter-spacing:0.000000px;}
.sc__c00360{text-shadow:none;}
.sc0_c00360{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00360{-webkit-text-stroke:0px transparent;}
.sc0_c00360{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00360{word-spacing:0.000000px;}
.ws0_c00360{word-spacing:1148.458800px;}
.fc0_c00360{color:transparent;}
.fs6_c00360{font-size:37.440000px;}
.fs10_c00360{font-size:40.320000px;}
.fsf_c00360{font-size:43.200000px;}
.fsd_c00360{font-size:46.080000px;}
.fs9_c00360{font-size:48.960000px;}
.fs4_c00360{font-size:51.840000px;}
.fs7_c00360{font-size:54.720000px;}
.fs3_c00360{font-size:57.600000px;}
.fs1_c00360{font-size:60.480000px;}
.fsc_c00360{font-size:63.360000px;}
.fsb_c00360{font-size:66.240000px;}
.fs8_c00360{font-size:69.120000px;}
.fs0_c00360{font-size:72.000000px;}
.fsa_c00360{font-size:74.880000px;}
.fs5_c00360{font-size:77.760000px;}
.fs2_c00360{font-size:89.280000px;}
.fs11_c00360{font-size:103.680000px;}
.fse_c00360{font-size:106.560000px;}
.y0_c00360{bottom:0.000000px;}
.y78_c00360{bottom:15.840000px;}
.y75_c00360{bottom:21.600000px;}
.y77_c00360{bottom:23.040000px;}
.y79_c00360{bottom:24.480000px;}
.y76_c00360{bottom:25.200000px;}
.y74_c00360{bottom:25.920000px;}
.y71_c00360{bottom:65.520000px;}
.y72_c00360{bottom:66.960000px;}
.y6c_c00360{bottom:96.480000px;}
.y6e_c00360{bottom:97.200000px;}
.y6f_c00360{bottom:98.640000px;}
.y73_c00360{bottom:99.360000px;}
.y6d_c00360{bottom:100.080000px;}
.y70_c00360{bottom:100.800000px;}
.y6b_c00360{bottom:101.520000px;}
.y67_c00360{bottom:139.680000px;}
.y68_c00360{bottom:142.560000px;}
.y69_c00360{bottom:143.280000px;}
.y66_c00360{bottom:144.000000px;}
.y6a_c00360{bottom:144.720000px;}
.y64_c00360{bottom:176.400000px;}
.y60_c00360{bottom:182.880000px;}
.y63_c00360{bottom:185.040000px;}
.y5f_c00360{bottom:185.760000px;}
.y61_c00360{bottom:186.480000px;}
.y62_c00360{bottom:187.200000px;}
.y65_c00360{bottom:187.920000px;}
.y5a_c00360{bottom:226.080000px;}
.y5b_c00360{bottom:227.520000px;}
.y5c_c00360{bottom:228.240000px;}
.y5d_c00360{bottom:228.960000px;}
.y59_c00360{bottom:229.680000px;}
.y5e_c00360{bottom:231.120000px;}
.y56_c00360{bottom:268.560000px;}
.y58_c00360{bottom:269.280000px;}
.y57_c00360{bottom:270.720000px;}
.y52_c00360{bottom:300.960000px;}
.y53_c00360{bottom:303.120000px;}
.y50_c00360{bottom:304.560000px;}
.y51_c00360{bottom:305.280000px;}
.y54_c00360{bottom:306.000000px;}
.y55_c00360{bottom:306.720000px;}
.y4f_c00360{bottom:344.160000px;}
.y4d_c00360{bottom:346.320000px;}
.y4c_c00360{bottom:347.760000px;}
.y4e_c00360{bottom:349.200000px;}
.y48_c00360{bottom:388.080000px;}
.y4a_c00360{bottom:388.800000px;}
.y49_c00360{bottom:389.520000px;}
.y47_c00360{bottom:390.240000px;}
.y4b_c00360{bottom:391.680000px;}
.y43_c00360{bottom:431.280000px;}
.y45_c00360{bottom:432.720000px;}
.y42_c00360{bottom:433.440000px;}
.y46_c00360{bottom:434.880000px;}
.y44_c00360{bottom:436.320000px;}
.y3c_c00360{bottom:474.480000px;}
.y40_c00360{bottom:475.920000px;}
.y3b_c00360{bottom:476.640000px;}
.y41_c00360{bottom:477.360000px;}
.y3d_c00360{bottom:478.080000px;}
.y3e_c00360{bottom:478.800000px;}
.y3f_c00360{bottom:479.520000px;}
.y36_c00360{bottom:518.400000px;}
.y37_c00360{bottom:519.120000px;}
.y35_c00360{bottom:519.840000px;}
.y39_c00360{bottom:520.560000px;}
.y38_c00360{bottom:521.280000px;}
.y3a_c00360{bottom:522.000000px;}
.y31_c00360{bottom:561.600000px;}
.y32_c00360{bottom:562.320000px;}
.y34_c00360{bottom:563.040000px;}
.y30_c00360{bottom:563.760000px;}
.y33_c00360{bottom:565.200000px;}
.y2d_c00360{bottom:604.800000px;}
.y2e_c00360{bottom:606.240000px;}
.y2c_c00360{bottom:606.960000px;}
.y2f_c00360{bottom:608.400000px;}
.y2a_c00360{bottom:648.000000px;}
.y29_c00360{bottom:650.160000px;}
.y2b_c00360{bottom:650.880000px;}
.y25_c00360{bottom:691.200000px;}
.y24_c00360{bottom:692.640000px;}
.y27_c00360{bottom:693.360000px;}
.y26_c00360{bottom:694.800000px;}
.y28_c00360{bottom:695.520000px;}
.y21_c00360{bottom:734.400000px;}
.y20_c00360{bottom:735.840000px;}
.y23_c00360{bottom:737.280000px;}
.y22_c00360{bottom:738.000000px;}
.y1d_c00360{bottom:776.880000px;}
.y1e_c00360{bottom:778.320000px;}
.y1c_c00360{bottom:779.040000px;}
.y1f_c00360{bottom:780.480000px;}
.y19_c00360{bottom:819.360000px;}
.y1b_c00360{bottom:820.800000px;}
.y18_c00360{bottom:821.520000px;}
.y1a_c00360{bottom:822.240000px;}
.y14_c00360{bottom:863.280000px;}
.y16_c00360{bottom:864.000000px;}
.y13_c00360{bottom:864.720000px;}
.y15_c00360{bottom:866.160000px;}
.y17_c00360{bottom:866.880000px;}
.y12_c00360{bottom:905.760000px;}
.y10_c00360{bottom:907.200000px;}
.y11_c00360{bottom:910.080000px;}
.ye_c00360{bottom:948.240000px;}
.yd_c00360{bottom:950.400000px;}
.yf_c00360{bottom:951.120000px;}
.y8_c00360{bottom:992.160000px;}
.y7_c00360{bottom:993.600000px;}
.yc_c00360{bottom:994.320000px;}
.yb_c00360{bottom:995.040000px;}
.y9_c00360{bottom:995.760000px;}
.ya_c00360{bottom:996.480000px;}
.y3_c00360{bottom:1036.080000px;}
.y2_c00360{bottom:1036.800000px;}
.y4_c00360{bottom:1037.520000px;}
.y5_c00360{bottom:1038.960000px;}
.y6_c00360{bottom:1039.680000px;}
.y1_c00360{bottom:1085.760000px;}
.h8_c00360{height:33.692344px;}
.h12_c00360{height:36.284062px;}
.h11_c00360{height:38.875781px;}
.hf_c00360{height:41.467500px;}
.hb_c00360{height:44.059219px;}
.h6_c00360{height:46.650937px;}
.h9_c00360{height:49.242656px;}
.h5_c00360{height:51.834375px;}
.h3_c00360{height:54.426094px;}
.he_c00360{height:57.017812px;}
.hd_c00360{height:59.609531px;}
.ha_c00360{height:62.201250px;}
.h2_c00360{height:64.792969px;}
.hc_c00360{height:67.384687px;}
.h7_c00360{height:69.976406px;}
.h4_c00360{height:80.343281px;}
.h13_c00360{height:93.301875px;}
.h10_c00360{height:95.893594px;}
.h1_c00360{height:1144.500000px;}
.h0_c00360{height:1144.800000px;}
.w1_c00360{width:768.750000px;}
.w0_c00360{width:768.960000px;}
.x0_c00360{left:0.000000px;}
.x2_c00360{left:60.480000px;}
.x22_c00360{left:61.920000px;}
.x15_c00360{left:133.920000px;}
.x3_c00360{left:135.360000px;}
.xe_c00360{left:169.920000px;}
.x23_c00360{left:177.840000px;}
.x1c_c00360{left:221.760000px;}
.x2a_c00360{left:232.560000px;}
.x2d_c00360{left:253.440000px;}
.x2b_c00360{left:254.880000px;}
.x31_c00360{left:265.680000px;}
.x1d_c00360{left:276.480000px;}
.x9_c00360{left:286.560000px;}
.xf_c00360{left:298.080000px;}
.x1a_c00360{left:307.440000px;}
.x2c_c00360{left:308.880000px;}
.x24_c00360{left:319.680000px;}
.xa_c00360{left:331.200000px;}
.x10_c00360{left:341.280000px;}
.x18_c00360{left:352.080000px;}
.x16_c00360{left:384.480000px;}
.x1e_c00360{left:406.080000px;}
.x25_c00360{left:407.520000px;}
.x30_c00360{left:415.440000px;}
.x32_c00360{left:416.880000px;}
.x11_c00360{left:438.480000px;}
.x34_c00360{left:457.920000px;}
.x26_c00360{left:460.080000px;}
.x33_c00360{left:470.880000px;}
.x2e_c00360{left:481.680000px;}
.x12_c00360{left:493.200000px;}
.x27_c00360{left:503.280000px;}
.x28_c00360{left:545.760000px;}
.x1f_c00360{left:556.560000px;}
.xb_c00360{left:558.000000px;}
.x4_c00360{left:559.440000px;}
.x2f_c00360{left:568.080000px;}
.x35_c00360{left:577.440000px;}
.x13_c00360{left:578.880000px;}
.xd_c00360{left:580.320000px;}
.x20_c00360{left:589.680000px;}
.x29_c00360{left:610.560000px;}
.xc_c00360{left:612.000000px;}
.x5_c00360{left:613.440000px;}
.x17_c00360{left:644.400000px;}
.x6_c00360{left:645.840000px;}
.x1b_c00360{left:677.520000px;}
.x1_c00360{left:681.840000px;}
.x21_c00360{left:686.160000px;}
.x14_c00360{left:687.600000px;}
.x7_c00360{left:689.040000px;}
.x19_c00360{left:707.760000px;}
.x8_c00360{left:709.200000px;}
@media print{
.v0_c00360{vertical-align:0.000000pt;}
.v1_c00360{vertical-align:7.680000pt;}
.ls0_c00360{letter-spacing:0.000000pt;}
.ws1_c00360{word-spacing:0.000000pt;}
.ws0_c00360{word-spacing:1020.852267pt;}
.fs6_c00360{font-size:33.280000pt;}
.fs10_c00360{font-size:35.840000pt;}
.fsf_c00360{font-size:38.400000pt;}
.fsd_c00360{font-size:40.960000pt;}
.fs9_c00360{font-size:43.520000pt;}
.fs4_c00360{font-size:46.080000pt;}
.fs7_c00360{font-size:48.640000pt;}
.fs3_c00360{font-size:51.200000pt;}
.fs1_c00360{font-size:53.760000pt;}
.fsc_c00360{font-size:56.320000pt;}
.fsb_c00360{font-size:58.880000pt;}
.fs8_c00360{font-size:61.440000pt;}
.fs0_c00360{font-size:64.000000pt;}
.fsa_c00360{font-size:66.560000pt;}
.fs5_c00360{font-size:69.120000pt;}
.fs2_c00360{font-size:79.360000pt;}
.fs11_c00360{font-size:92.160000pt;}
.fse_c00360{font-size:94.720000pt;}
.y0_c00360{bottom:0.000000pt;}
.y78_c00360{bottom:14.080000pt;}
.y75_c00360{bottom:19.200000pt;}
.y77_c00360{bottom:20.480000pt;}
.y79_c00360{bottom:21.760000pt;}
.y76_c00360{bottom:22.400000pt;}
.y74_c00360{bottom:23.040000pt;}
.y71_c00360{bottom:58.240000pt;}
.y72_c00360{bottom:59.520000pt;}
.y6c_c00360{bottom:85.760000pt;}
.y6e_c00360{bottom:86.400000pt;}
.y6f_c00360{bottom:87.680000pt;}
.y73_c00360{bottom:88.320000pt;}
.y6d_c00360{bottom:88.960000pt;}
.y70_c00360{bottom:89.600000pt;}
.y6b_c00360{bottom:90.240000pt;}
.y67_c00360{bottom:124.160000pt;}
.y68_c00360{bottom:126.720000pt;}
.y69_c00360{bottom:127.360000pt;}
.y66_c00360{bottom:128.000000pt;}
.y6a_c00360{bottom:128.640000pt;}
.y64_c00360{bottom:156.800000pt;}
.y60_c00360{bottom:162.560000pt;}
.y63_c00360{bottom:164.480000pt;}
.y5f_c00360{bottom:165.120000pt;}
.y61_c00360{bottom:165.760000pt;}
.y62_c00360{bottom:166.400000pt;}
.y65_c00360{bottom:167.040000pt;}
.y5a_c00360{bottom:200.960000pt;}
.y5b_c00360{bottom:202.240000pt;}
.y5c_c00360{bottom:202.880000pt;}
.y5d_c00360{bottom:203.520000pt;}
.y59_c00360{bottom:204.160000pt;}
.y5e_c00360{bottom:205.440000pt;}
.y56_c00360{bottom:238.720000pt;}
.y58_c00360{bottom:239.360000pt;}
.y57_c00360{bottom:240.640000pt;}
.y52_c00360{bottom:267.520000pt;}
.y53_c00360{bottom:269.440000pt;}
.y50_c00360{bottom:270.720000pt;}
.y51_c00360{bottom:271.360000pt;}
.y54_c00360{bottom:272.000000pt;}
.y55_c00360{bottom:272.640000pt;}
.y4f_c00360{bottom:305.920000pt;}
.y4d_c00360{bottom:307.840000pt;}
.y4c_c00360{bottom:309.120000pt;}
.y4e_c00360{bottom:310.400000pt;}
.y48_c00360{bottom:344.960000pt;}
.y4a_c00360{bottom:345.600000pt;}
.y49_c00360{bottom:346.240000pt;}
.y47_c00360{bottom:346.880000pt;}
.y4b_c00360{bottom:348.160000pt;}
.y43_c00360{bottom:383.360000pt;}
.y45_c00360{bottom:384.640000pt;}
.y42_c00360{bottom:385.280000pt;}
.y46_c00360{bottom:386.560000pt;}
.y44_c00360{bottom:387.840000pt;}
.y3c_c00360{bottom:421.760000pt;}
.y40_c00360{bottom:423.040000pt;}
.y3b_c00360{bottom:423.680000pt;}
.y41_c00360{bottom:424.320000pt;}
.y3d_c00360{bottom:424.960000pt;}
.y3e_c00360{bottom:425.600000pt;}
.y3f_c00360{bottom:426.240000pt;}
.y36_c00360{bottom:460.800000pt;}
.y37_c00360{bottom:461.440000pt;}
.y35_c00360{bottom:462.080000pt;}
.y39_c00360{bottom:462.720000pt;}
.y38_c00360{bottom:463.360000pt;}
.y3a_c00360{bottom:464.000000pt;}
.y31_c00360{bottom:499.200000pt;}
.y32_c00360{bottom:499.840000pt;}
.y34_c00360{bottom:500.480000pt;}
.y30_c00360{bottom:501.120000pt;}
.y33_c00360{bottom:502.400000pt;}
.y2d_c00360{bottom:537.600000pt;}
.y2e_c00360{bottom:538.880000pt;}
.y2c_c00360{bottom:539.520000pt;}
.y2f_c00360{bottom:540.800000pt;}
.y2a_c00360{bottom:576.000000pt;}
.y29_c00360{bottom:577.920000pt;}
.y2b_c00360{bottom:578.560000pt;}
.y25_c00360{bottom:614.400000pt;}
.y24_c00360{bottom:615.680000pt;}
.y27_c00360{bottom:616.320000pt;}
.y26_c00360{bottom:617.600000pt;}
.y28_c00360{bottom:618.240000pt;}
.y21_c00360{bottom:652.800000pt;}
.y20_c00360{bottom:654.080000pt;}
.y23_c00360{bottom:655.360000pt;}
.y22_c00360{bottom:656.000000pt;}
.y1d_c00360{bottom:690.560000pt;}
.y1e_c00360{bottom:691.840000pt;}
.y1c_c00360{bottom:692.480000pt;}
.y1f_c00360{bottom:693.760000pt;}
.y19_c00360{bottom:728.320000pt;}
.y1b_c00360{bottom:729.600000pt;}
.y18_c00360{bottom:730.240000pt;}
.y1a_c00360{bottom:730.880000pt;}
.y14_c00360{bottom:767.360000pt;}
.y16_c00360{bottom:768.000000pt;}
.y13_c00360{bottom:768.640000pt;}
.y15_c00360{bottom:769.920000pt;}
.y17_c00360{bottom:770.560000pt;}
.y12_c00360{bottom:805.120000pt;}
.y10_c00360{bottom:806.400000pt;}
.y11_c00360{bottom:808.960000pt;}
.ye_c00360{bottom:842.880000pt;}
.yd_c00360{bottom:844.800000pt;}
.yf_c00360{bottom:845.440000pt;}
.y8_c00360{bottom:881.920000pt;}
.y7_c00360{bottom:883.200000pt;}
.yc_c00360{bottom:883.840000pt;}
.yb_c00360{bottom:884.480000pt;}
.y9_c00360{bottom:885.120000pt;}
.ya_c00360{bottom:885.760000pt;}
.y3_c00360{bottom:920.960000pt;}
.y2_c00360{bottom:921.600000pt;}
.y4_c00360{bottom:922.240000pt;}
.y5_c00360{bottom:923.520000pt;}
.y6_c00360{bottom:924.160000pt;}
.y1_c00360{bottom:965.120000pt;}
.h8_c00360{height:29.948750pt;}
.h12_c00360{height:32.252500pt;}
.h11_c00360{height:34.556250pt;}
.hf_c00360{height:36.860000pt;}
.hb_c00360{height:39.163750pt;}
.h6_c00360{height:41.467500pt;}
.h9_c00360{height:43.771250pt;}
.h5_c00360{height:46.075000pt;}
.h3_c00360{height:48.378750pt;}
.he_c00360{height:50.682500pt;}
.hd_c00360{height:52.986250pt;}
.ha_c00360{height:55.290000pt;}
.h2_c00360{height:57.593750pt;}
.hc_c00360{height:59.897500pt;}
.h7_c00360{height:62.201250pt;}
.h4_c00360{height:71.416250pt;}
.h13_c00360{height:82.935000pt;}
.h10_c00360{height:85.238750pt;}
.h1_c00360{height:1017.333333pt;}
.h0_c00360{height:1017.600000pt;}
.w1_c00360{width:683.333333pt;}
.w0_c00360{width:683.520000pt;}
.x0_c00360{left:0.000000pt;}
.x2_c00360{left:53.760000pt;}
.x22_c00360{left:55.040000pt;}
.x15_c00360{left:119.040000pt;}
.x3_c00360{left:120.320000pt;}
.xe_c00360{left:151.040000pt;}
.x23_c00360{left:158.080000pt;}
.x1c_c00360{left:197.120000pt;}
.x2a_c00360{left:206.720000pt;}
.x2d_c00360{left:225.280000pt;}
.x2b_c00360{left:226.560000pt;}
.x31_c00360{left:236.160000pt;}
.x1d_c00360{left:245.760000pt;}
.x9_c00360{left:254.720000pt;}
.xf_c00360{left:264.960000pt;}
.x1a_c00360{left:273.280000pt;}
.x2c_c00360{left:274.560000pt;}
.x24_c00360{left:284.160000pt;}
.xa_c00360{left:294.400000pt;}
.x10_c00360{left:303.360000pt;}
.x18_c00360{left:312.960000pt;}
.x16_c00360{left:341.760000pt;}
.x1e_c00360{left:360.960000pt;}
.x25_c00360{left:362.240000pt;}
.x30_c00360{left:369.280000pt;}
.x32_c00360{left:370.560000pt;}
.x11_c00360{left:389.760000pt;}
.x34_c00360{left:407.040000pt;}
.x26_c00360{left:408.960000pt;}
.x33_c00360{left:418.560000pt;}
.x2e_c00360{left:428.160000pt;}
.x12_c00360{left:438.400000pt;}
.x27_c00360{left:447.360000pt;}
.x28_c00360{left:485.120000pt;}
.x1f_c00360{left:494.720000pt;}
.xb_c00360{left:496.000000pt;}
.x4_c00360{left:497.280000pt;}
.x2f_c00360{left:504.960000pt;}
.x35_c00360{left:513.280000pt;}
.x13_c00360{left:514.560000pt;}
.xd_c00360{left:515.840000pt;}
.x20_c00360{left:524.160000pt;}
.x29_c00360{left:542.720000pt;}
.xc_c00360{left:544.000000pt;}
.x5_c00360{left:545.280000pt;}
.x17_c00360{left:572.800000pt;}
.x6_c00360{left:574.080000pt;}
.x1b_c00360{left:602.240000pt;}
.x1_c00360{left:606.080000pt;}
.x21_c00360{left:609.920000pt;}
.x14_c00360{left:611.200000pt;}
.x7_c00360{left:612.480000pt;}
.x19_c00360{left:629.120000pt;}
.x8_c00360{left:630.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_73cbe07d1b66a24baf401519.woff2')format("woff");}.ff1_c00361{font-family:ff1_c00361;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3a_c00361{transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);}
.m3_c00361{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00361{transform:matrix(0.220475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220475,0.000000,0.000000,0.250000,0,0);}
.m9_c00361{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_c00361{transform:matrix(0.228300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228300,0.000000,0.000000,0.250000,0,0);}
.m1c_c00361{transform:matrix(0.230325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230325,0.000000,0.000000,0.250000,0,0);}
.mb_c00361{transform:matrix(0.232100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232100,0.000000,0.000000,0.250000,0,0);}
.m3c_c00361{transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);}
.m37_c00361{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m18_c00361{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m1_c00361{transform:matrix(0.244575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244575,0.000000,0.000000,0.250000,0,0);}
.m4d_c00361{transform:matrix(0.244725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244725,0.000000,0.000000,0.250000,0,0);}
.m3b_c00361{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m5_c00361{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00361{transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);}
.m48_c00361{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);}
.m4e_c00361{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);}
.m22_c00361{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_c00361{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);}
.m3e_c00361{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m16_c00361{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00361{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);}
.m1e_c00361{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m8_c00361{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);}
.m21_c00361{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00361{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m10_c00361{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mc_c00361{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m2_c00361{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);}
.m35_c00361{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m20_c00361{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00361{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00361{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m11_c00361{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m42_c00361{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m38_c00361{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00361{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m43_c00361{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m41_c00361{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.ma_c00361{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00361{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m28_c00361{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m32_c00361{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m39_c00361{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m0_c00361{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00361{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m46_c00361{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m23_c00361{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m6_c00361{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m19_c00361{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.mf_c00361{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m14_c00361{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_c00361{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m34_c00361{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00361{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m17_c00361{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m4_c00361{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m30_c00361{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);}
.m2b_c00361{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m33_c00361{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00361{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);}
.md_c00361{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m47_c00361{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);}
.m27_c00361{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m26_c00361{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m15_c00361{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00361{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00361{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m40_c00361{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m13_c00361{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m31_c00361{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m29_c00361{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.me_c00361{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);}
.m24_c00361{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m25_c00361{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m49_c00361{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m12_c00361{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);}
.m1d_c00361{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m44_c00361{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m50_c00361{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m36_c00361{transform:matrix(0.910000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.910000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.910000,0.000000,0.000000,0.250000,0,0);}
.v2_c00361{vertical-align:-11.520000px;}
.v0_c00361{vertical-align:0.000000px;}
.v1_c00361{vertical-align:8.640000px;}
.ls0_c00361{letter-spacing:0.000000px;}
.sc__c00361{text-shadow:none;}
.sc0_c00361{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00361{-webkit-text-stroke:0px transparent;}
.sc0_c00361{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00361{word-spacing:0.000000px;}
.ws1_c00361{word-spacing:8.039520px;}
.ws0_c00361{word-spacing:13.140000px;}
.ws3_c00361{word-spacing:14.243161px;}
.ws4_c00361{word-spacing:57.036000px;}
.ws2_c00361{word-spacing:140.822116px;}
.fc0_c00361{color:transparent;}
.fsc_c00361{font-size:34.560000px;}
.fsd_c00361{font-size:43.200000px;}
.fsa_c00361{font-size:46.080000px;}
.fsb_c00361{font-size:48.960000px;}
.fs4_c00361{font-size:51.840000px;}
.fs9_c00361{font-size:54.720000px;}
.fs6_c00361{font-size:57.600000px;}
.fs3_c00361{font-size:60.480000px;}
.fs7_c00361{font-size:63.360000px;}
.fs0_c00361{font-size:66.240000px;}
.fs5_c00361{font-size:69.120000px;}
.fs2_c00361{font-size:72.000000px;}
.fs8_c00361{font-size:74.880000px;}
.fs1_c00361{font-size:77.760000px;}
.y0_c00361{bottom:0.000000px;}
.y6f_c00361{bottom:63.360000px;}
.y6e_c00361{bottom:67.680000px;}
.y6d_c00361{bottom:68.400000px;}
.y70_c00361{bottom:69.840000px;}
.y6c_c00361{bottom:107.280000px;}
.y6b_c00361{bottom:108.720000px;}
.y68_c00361{bottom:140.400000px;}
.y69_c00361{bottom:143.280000px;}
.y67_c00361{bottom:144.000000px;}
.y6a_c00361{bottom:144.720000px;}
.y63_c00361{bottom:183.600000px;}
.y65_c00361{bottom:186.480000px;}
.y62_c00361{bottom:187.200000px;}
.y64_c00361{bottom:189.360000px;}
.y66_c00361{bottom:190.080000px;}
.y5f_c00361{bottom:226.800000px;}
.y60_c00361{bottom:227.520000px;}
.y5d_c00361{bottom:230.400000px;}
.y5e_c00361{bottom:231.120000px;}
.y61_c00361{bottom:232.560000px;}
.y5c_c00361{bottom:270.720000px;}
.y5a_c00361{bottom:272.160000px;}
.y5b_c00361{bottom:274.320000px;}
.y56_c00361{bottom:303.120000px;}
.y57_c00361{bottom:303.840000px;}
.y55_c00361{bottom:306.000000px;}
.y58_c00361{bottom:306.720000px;}
.y59_c00361{bottom:307.440000px;}
.y49_c00361{bottom:346.320000px;}
.y4b_c00361{bottom:347.040000px;}
.y4a_c00361{bottom:347.760000px;}
.y48_c00361{bottom:349.920000px;}
.y47_c00361{bottom:378.720000px;}
.y45_c00361{bottom:380.160000px;}
.y53_c00361{bottom:381.600000px;}
.y46_c00361{bottom:382.320000px;}
.y52_c00361{bottom:383.040000px;}
.y54_c00361{bottom:383.760000px;}
.y41_c00361{bottom:421.200000px;}
.y44_c00361{bottom:421.920000px;}
.y43_c00361{bottom:424.080000px;}
.y40_c00361{bottom:424.800000px;}
.y42_c00361{bottom:425.520000px;}
.y51_c00361{bottom:426.960000px;}
.y3e_c00361{bottom:465.120000px;}
.y4f_c00361{bottom:466.560000px;}
.y3d_c00361{bottom:467.280000px;}
.y3f_c00361{bottom:468.720000px;}
.y50_c00361{bottom:469.440000px;}
.y3b_c00361{bottom:508.320000px;}
.y4d_c00361{bottom:509.760000px;}
.y3a_c00361{bottom:510.480000px;}
.y4e_c00361{bottom:511.200000px;}
.y3c_c00361{bottom:511.920000px;}
.y4c_c00361{bottom:512.640000px;}
.y38_c00361{bottom:551.520000px;}
.y39_c00361{bottom:552.240000px;}
.y37_c00361{bottom:552.960000px;}
.y25_c00361{bottom:594.000000px;}
.y26_c00361{bottom:594.720000px;}
.y27_c00361{bottom:595.440000px;}
.y24_c00361{bottom:596.160000px;}
.y29_c00361{bottom:596.880000px;}
.y28_c00361{bottom:597.600000px;}
.y23_c00361{bottom:637.920000px;}
.y22_c00361{bottom:638.640000px;}
.y21_c00361{bottom:640.800000px;}
.y1f_c00361{bottom:669.600000px;}
.y1e_c00361{bottom:670.320000px;}
.y36_c00361{bottom:671.760000px;}
.y20_c00361{bottom:673.200000px;}
.y1d_c00361{bottom:712.800000px;}
.y35_c00361{bottom:713.520000px;}
.y1c_c00361{bottom:714.240000px;}
.y18_c00361{bottom:756.000000px;}
.y1b_c00361{bottom:757.440000px;}
.y17_c00361{bottom:758.160000px;}
.y19_c00361{bottom:759.600000px;}
.y1a_c00361{bottom:760.320000px;}
.y16_c00361{bottom:799.920000px;}
.y33_c00361{bottom:800.640000px;}
.y15_c00361{bottom:801.360000px;}
.y34_c00361{bottom:802.080000px;}
.y13_c00361{bottom:843.120000px;}
.y12_c00361{bottom:844.560000px;}
.y32_c00361{bottom:846.000000px;}
.y14_c00361{bottom:846.720000px;}
.y10_c00361{bottom:886.320000px;}
.yf_c00361{bottom:887.040000px;}
.y31_c00361{bottom:888.480000px;}
.y11_c00361{bottom:889.920000px;}
.y30_c00361{bottom:890.640000px;}
.ye_c00361{bottom:930.240000px;}
.yc_c00361{bottom:930.960000px;}
.yd_c00361{bottom:933.840000px;}
.y8_c00361{bottom:961.920000px;}
.y7_c00361{bottom:962.640000px;}
.y9_c00361{bottom:963.360000px;}
.ya_c00361{bottom:964.800000px;}
.yb_c00361{bottom:965.520000px;}
.y5_c00361{bottom:1005.120000px;}
.y2e_c00361{bottom:1005.840000px;}
.y4_c00361{bottom:1006.560000px;}
.y2f_c00361{bottom:1007.280000px;}
.y6_c00361{bottom:1008.720000px;}
.y2_c00361{bottom:1047.600000px;}
.y1_c00361{bottom:1048.320000px;}
.y3_c00361{bottom:1049.040000px;}
.y2b_c00361{bottom:1049.760000px;}
.y2d_c00361{bottom:1051.200000px;}
.y2c_c00361{bottom:1051.920000px;}
.y2a_c00361{bottom:1091.520000px;}
.he_c00361{height:31.100625px;}
.h10_c00361{height:38.875781px;}
.hc_c00361{height:41.467500px;}
.hd_c00361{height:44.059219px;}
.h6_c00361{height:46.650937px;}
.hb_c00361{height:49.242656px;}
.h8_c00361{height:51.834375px;}
.h11_c00361{height:53.272969px;}
.h5_c00361{height:54.426094px;}
.h9_c00361{height:57.017812px;}
.h2_c00361{height:59.609531px;}
.hf_c00361{height:60.474375px;}
.h7_c00361{height:62.201250px;}
.h4_c00361{height:64.792969px;}
.ha_c00361{height:67.384687px;}
.h3_c00361{height:69.976406px;}
.h1_c00361{height:1149.000000px;}
.h0_c00361{height:1149.120000px;}
.w0_c00361{width:774.720000px;}
.w1_c00361{width:774.750000px;}
.x0_c00361{left:0.000000px;}
.x1_c00361{left:62.640000px;}
.x2e_c00361{left:64.080000px;}
.x2_c00361{left:136.800000px;}
.xe_c00361{left:138.240000px;}
.x30_c00361{left:170.640000px;}
.xf_c00361{left:180.720000px;}
.x2f_c00361{left:190.800000px;}
.x5_c00361{left:222.480000px;}
.x14_c00361{left:223.920000px;}
.x19_c00361{left:234.000000px;}
.x9_c00361{left:235.440000px;}
.x2b_c00361{left:245.520000px;}
.x10_c00361{left:257.040000px;}
.x6_c00361{left:267.840000px;}
.x12_c00361{left:278.640000px;}
.x2c_c00361{left:298.800000px;}
.x3_c00361{left:300.240000px;}
.x11_c00361{left:311.760000px;}
.x25_c00361{left:319.680000px;}
.x7_c00361{left:321.840000px;}
.x13_c00361{left:332.640000px;}
.x1a_c00361{left:344.160000px;}
.x26_c00361{left:365.040000px;}
.xa_c00361{left:375.840000px;}
.x1b_c00361{left:385.200000px;}
.x27_c00361{left:408.960000px;}
.xb_c00361{left:429.120000px;}
.x17_c00361{left:451.440000px;}
.x2d_c00361{left:462.240000px;}
.xc_c00361{left:473.040000px;}
.x15_c00361{left:483.840000px;}
.x8_c00361{left:495.360000px;}
.x18_c00361{left:505.440000px;}
.x16_c00361{left:527.040000px;}
.x2a_c00361{left:548.640000px;}
.x31_c00361{left:558.720000px;}
.xd_c00361{left:560.160000px;}
.x4_c00361{left:561.600000px;}
.x1c_c00361{left:563.760000px;}
.x22_c00361{left:581.040000px;}
.x23_c00361{left:613.440000px;}
.x1e_c00361{left:615.600000px;}
.x28_c00361{left:646.560000px;}
.x1f_c00361{left:648.000000px;}
.x1d_c00361{left:679.680000px;}
.x24_c00361{left:689.040000px;}
.x20_c00361{left:690.480000px;}
.x29_c00361{left:709.920000px;}
.x21_c00361{left:711.360000px;}
@media print{
.v2_c00361{vertical-align:-10.240000pt;}
.v0_c00361{vertical-align:0.000000pt;}
.v1_c00361{vertical-align:7.680000pt;}
.ls0_c00361{letter-spacing:0.000000pt;}
.ws5_c00361{word-spacing:0.000000pt;}
.ws1_c00361{word-spacing:7.146240pt;}
.ws0_c00361{word-spacing:11.680000pt;}
.ws3_c00361{word-spacing:12.660588pt;}
.ws4_c00361{word-spacing:50.698667pt;}
.ws2_c00361{word-spacing:125.175214pt;}
.fsc_c00361{font-size:30.720000pt;}
.fsd_c00361{font-size:38.400000pt;}
.fsa_c00361{font-size:40.960000pt;}
.fsb_c00361{font-size:43.520000pt;}
.fs4_c00361{font-size:46.080000pt;}
.fs9_c00361{font-size:48.640000pt;}
.fs6_c00361{font-size:51.200000pt;}
.fs3_c00361{font-size:53.760000pt;}
.fs7_c00361{font-size:56.320000pt;}
.fs0_c00361{font-size:58.880000pt;}
.fs5_c00361{font-size:61.440000pt;}
.fs2_c00361{font-size:64.000000pt;}
.fs8_c00361{font-size:66.560000pt;}
.fs1_c00361{font-size:69.120000pt;}
.y0_c00361{bottom:0.000000pt;}
.y6f_c00361{bottom:56.320000pt;}
.y6e_c00361{bottom:60.160000pt;}
.y6d_c00361{bottom:60.800000pt;}
.y70_c00361{bottom:62.080000pt;}
.y6c_c00361{bottom:95.360000pt;}
.y6b_c00361{bottom:96.640000pt;}
.y68_c00361{bottom:124.800000pt;}
.y69_c00361{bottom:127.360000pt;}
.y67_c00361{bottom:128.000000pt;}
.y6a_c00361{bottom:128.640000pt;}
.y63_c00361{bottom:163.200000pt;}
.y65_c00361{bottom:165.760000pt;}
.y62_c00361{bottom:166.400000pt;}
.y64_c00361{bottom:168.320000pt;}
.y66_c00361{bottom:168.960000pt;}
.y5f_c00361{bottom:201.600000pt;}
.y60_c00361{bottom:202.240000pt;}
.y5d_c00361{bottom:204.800000pt;}
.y5e_c00361{bottom:205.440000pt;}
.y61_c00361{bottom:206.720000pt;}
.y5c_c00361{bottom:240.640000pt;}
.y5a_c00361{bottom:241.920000pt;}
.y5b_c00361{bottom:243.840000pt;}
.y56_c00361{bottom:269.440000pt;}
.y57_c00361{bottom:270.080000pt;}
.y55_c00361{bottom:272.000000pt;}
.y58_c00361{bottom:272.640000pt;}
.y59_c00361{bottom:273.280000pt;}
.y49_c00361{bottom:307.840000pt;}
.y4b_c00361{bottom:308.480000pt;}
.y4a_c00361{bottom:309.120000pt;}
.y48_c00361{bottom:311.040000pt;}
.y47_c00361{bottom:336.640000pt;}
.y45_c00361{bottom:337.920000pt;}
.y53_c00361{bottom:339.200000pt;}
.y46_c00361{bottom:339.840000pt;}
.y52_c00361{bottom:340.480000pt;}
.y54_c00361{bottom:341.120000pt;}
.y41_c00361{bottom:374.400000pt;}
.y44_c00361{bottom:375.040000pt;}
.y43_c00361{bottom:376.960000pt;}
.y40_c00361{bottom:377.600000pt;}
.y42_c00361{bottom:378.240000pt;}
.y51_c00361{bottom:379.520000pt;}
.y3e_c00361{bottom:413.440000pt;}
.y4f_c00361{bottom:414.720000pt;}
.y3d_c00361{bottom:415.360000pt;}
.y3f_c00361{bottom:416.640000pt;}
.y50_c00361{bottom:417.280000pt;}
.y3b_c00361{bottom:451.840000pt;}
.y4d_c00361{bottom:453.120000pt;}
.y3a_c00361{bottom:453.760000pt;}
.y4e_c00361{bottom:454.400000pt;}
.y3c_c00361{bottom:455.040000pt;}
.y4c_c00361{bottom:455.680000pt;}
.y38_c00361{bottom:490.240000pt;}
.y39_c00361{bottom:490.880000pt;}
.y37_c00361{bottom:491.520000pt;}
.y25_c00361{bottom:528.000000pt;}
.y26_c00361{bottom:528.640000pt;}
.y27_c00361{bottom:529.280000pt;}
.y24_c00361{bottom:529.920000pt;}
.y29_c00361{bottom:530.560000pt;}
.y28_c00361{bottom:531.200000pt;}
.y23_c00361{bottom:567.040000pt;}
.y22_c00361{bottom:567.680000pt;}
.y21_c00361{bottom:569.600000pt;}
.y1f_c00361{bottom:595.200000pt;}
.y1e_c00361{bottom:595.840000pt;}
.y36_c00361{bottom:597.120000pt;}
.y20_c00361{bottom:598.400000pt;}
.y1d_c00361{bottom:633.600000pt;}
.y35_c00361{bottom:634.240000pt;}
.y1c_c00361{bottom:634.880000pt;}
.y18_c00361{bottom:672.000000pt;}
.y1b_c00361{bottom:673.280000pt;}
.y17_c00361{bottom:673.920000pt;}
.y19_c00361{bottom:675.200000pt;}
.y1a_c00361{bottom:675.840000pt;}
.y16_c00361{bottom:711.040000pt;}
.y33_c00361{bottom:711.680000pt;}
.y15_c00361{bottom:712.320000pt;}
.y34_c00361{bottom:712.960000pt;}
.y13_c00361{bottom:749.440000pt;}
.y12_c00361{bottom:750.720000pt;}
.y32_c00361{bottom:752.000000pt;}
.y14_c00361{bottom:752.640000pt;}
.y10_c00361{bottom:787.840000pt;}
.yf_c00361{bottom:788.480000pt;}
.y31_c00361{bottom:789.760000pt;}
.y11_c00361{bottom:791.040000pt;}
.y30_c00361{bottom:791.680000pt;}
.ye_c00361{bottom:826.880000pt;}
.yc_c00361{bottom:827.520000pt;}
.yd_c00361{bottom:830.080000pt;}
.y8_c00361{bottom:855.040000pt;}
.y7_c00361{bottom:855.680000pt;}
.y9_c00361{bottom:856.320000pt;}
.ya_c00361{bottom:857.600000pt;}
.yb_c00361{bottom:858.240000pt;}
.y5_c00361{bottom:893.440000pt;}
.y2e_c00361{bottom:894.080000pt;}
.y4_c00361{bottom:894.720000pt;}
.y2f_c00361{bottom:895.360000pt;}
.y6_c00361{bottom:896.640000pt;}
.y2_c00361{bottom:931.200000pt;}
.y1_c00361{bottom:931.840000pt;}
.y3_c00361{bottom:932.480000pt;}
.y2b_c00361{bottom:933.120000pt;}
.y2d_c00361{bottom:934.400000pt;}
.y2c_c00361{bottom:935.040000pt;}
.y2a_c00361{bottom:970.240000pt;}
.he_c00361{height:27.645000pt;}
.h10_c00361{height:34.556250pt;}
.hc_c00361{height:36.860000pt;}
.hd_c00361{height:39.163750pt;}
.h6_c00361{height:41.467500pt;}
.hb_c00361{height:43.771250pt;}
.h8_c00361{height:46.075000pt;}
.h11_c00361{height:47.353750pt;}
.h5_c00361{height:48.378750pt;}
.h9_c00361{height:50.682500pt;}
.h2_c00361{height:52.986250pt;}
.hf_c00361{height:53.755000pt;}
.h7_c00361{height:55.290000pt;}
.h4_c00361{height:57.593750pt;}
.ha_c00361{height:59.897500pt;}
.h3_c00361{height:62.201250pt;}
.h1_c00361{height:1021.333333pt;}
.h0_c00361{height:1021.440000pt;}
.w0_c00361{width:688.640000pt;}
.w1_c00361{width:688.666667pt;}
.x0_c00361{left:0.000000pt;}
.x1_c00361{left:55.680000pt;}
.x2e_c00361{left:56.960000pt;}
.x2_c00361{left:121.600000pt;}
.xe_c00361{left:122.880000pt;}
.x30_c00361{left:151.680000pt;}
.xf_c00361{left:160.640000pt;}
.x2f_c00361{left:169.600000pt;}
.x5_c00361{left:197.760000pt;}
.x14_c00361{left:199.040000pt;}
.x19_c00361{left:208.000000pt;}
.x9_c00361{left:209.280000pt;}
.x2b_c00361{left:218.240000pt;}
.x10_c00361{left:228.480000pt;}
.x6_c00361{left:238.080000pt;}
.x12_c00361{left:247.680000pt;}
.x2c_c00361{left:265.600000pt;}
.x3_c00361{left:266.880000pt;}
.x11_c00361{left:277.120000pt;}
.x25_c00361{left:284.160000pt;}
.x7_c00361{left:286.080000pt;}
.x13_c00361{left:295.680000pt;}
.x1a_c00361{left:305.920000pt;}
.x26_c00361{left:324.480000pt;}
.xa_c00361{left:334.080000pt;}
.x1b_c00361{left:342.400000pt;}
.x27_c00361{left:363.520000pt;}
.xb_c00361{left:381.440000pt;}
.x17_c00361{left:401.280000pt;}
.x2d_c00361{left:410.880000pt;}
.xc_c00361{left:420.480000pt;}
.x15_c00361{left:430.080000pt;}
.x8_c00361{left:440.320000pt;}
.x18_c00361{left:449.280000pt;}
.x16_c00361{left:468.480000pt;}
.x2a_c00361{left:487.680000pt;}
.x31_c00361{left:496.640000pt;}
.xd_c00361{left:497.920000pt;}
.x4_c00361{left:499.200000pt;}
.x1c_c00361{left:501.120000pt;}
.x22_c00361{left:516.480000pt;}
.x23_c00361{left:545.280000pt;}
.x1e_c00361{left:547.200000pt;}
.x28_c00361{left:574.720000pt;}
.x1f_c00361{left:576.000000pt;}
.x1d_c00361{left:604.160000pt;}
.x24_c00361{left:612.480000pt;}
.x20_c00361{left:613.760000pt;}
.x29_c00361{left:631.040000pt;}
.x21_c00361{left:632.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3515cf56c18e08edaf6b9ef4.woff2')format("woff");}.ff1_c00362{font-family:ff1_c00362;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m45_c00362{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m9_c00362{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m32_c00362{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m1_c00362{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m43_c00362{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00362{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_c00362{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m5_c00362{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);}
.m2c_c00362{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);}
.m2d_c00362{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m16_c00362{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);}
.m34_c00362{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_c00362{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m4_c00362{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m24_c00362{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m17_c00362{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m31_c00362{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m8_c00362{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m33_c00362{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m36_c00362{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00362{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00362{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m23_c00362{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.ma_c00362{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00362{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m18_c00362{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m44_c00362{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m26_c00362{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.me_c00362{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m19_c00362{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m29_c00362{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2_c00362{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00362{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m0_c00362{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m42_c00362{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);}
.m27_c00362{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);}
.m3c_c00362{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.mc_c00362{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m7_c00362{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m28_c00362{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m37_c00362{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m39_c00362{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);}
.m3a_c00362{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m14_c00362{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00362{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);}
.m1e_c00362{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m11_c00362{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m13_c00362{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m22_c00362{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);}
.m1f_c00362{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00362{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);}
.m25_c00362{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00362{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m41_c00362{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);}
.md_c00362{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00362{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m21_c00362{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.mf_c00362{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);}
.m3d_c00362{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m15_c00362{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00362{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m40_c00362{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m35_c00362{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00362{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);}
.m6_c00362{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m12_c00362{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);}
.m3_c00362{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m20_c00362{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m38_c00362{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m30_c00362{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.v2_c00362{vertical-align:-11.520000px;}
.v1_c00362{vertical-align:-8.640000px;}
.v0_c00362{vertical-align:0.000000px;}
.v4_c00362{vertical-align:2.880000px;}
.v3_c00362{vertical-align:5.760000px;}
.ls2_c00362{letter-spacing:0.000000px;}
.ls1_c00362{letter-spacing:35.388240px;}
.ls0_c00362{letter-spacing:37.476240px;}
.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:-8.388480px;}
.ws3_c00362{word-spacing:0.000000px;}
.ws2_c00362{word-spacing:1.051440px;}
.ws1_c00362{word-spacing:56.301600px;}
.fc0_c00362{color:transparent;}
.fsc_c00362{font-size:34.560000px;}
.fse_c00362{font-size:43.200000px;}
.fs8_c00362{font-size:46.080000px;}
.fs3_c00362{font-size:48.960000px;}
.fs2_c00362{font-size:51.840000px;}
.fs9_c00362{font-size:54.720000px;}
.fsb_c00362{font-size:57.600000px;}
.fs6_c00362{font-size:60.480000px;}
.fsa_c00362{font-size:63.360000px;}
.fs0_c00362{font-size:66.240000px;}
.fs7_c00362{font-size:69.120000px;}
.fs4_c00362{font-size:72.000000px;}
.fs1_c00362{font-size:74.880000px;}
.fs5_c00362{font-size:77.760000px;}
.fsd_c00362{font-size:95.040000px;}
.y0_c00362{bottom:0.000000px;}
.y65_c00362{bottom:49.680000px;}
.y64_c00362{bottom:51.120000px;}
.y63_c00362{bottom:54.000000px;}
.y62_c00362{bottom:54.720000px;}
.y67_c00362{bottom:56.160000px;}
.y61_c00362{bottom:92.880000px;}
.y60_c00362{bottom:95.040000px;}
.y5f_c00362{bottom:97.200000px;}
.y5c_c00362{bottom:126.000000px;}
.y5d_c00362{bottom:127.440000px;}
.y5e_c00362{bottom:129.600000px;}
.y5b_c00362{bottom:130.320000px;}
.y66_c00362{bottom:131.040000px;}
.y59_c00362{bottom:164.160000px;}
.y58_c00362{bottom:169.920000px;}
.y57_c00362{bottom:170.640000px;}
.y5a_c00362{bottom:172.800000px;}
.y56_c00362{bottom:173.520000px;}
.y39_c00362{bottom:212.400000px;}
.y55_c00362{bottom:214.560000px;}
.y38_c00362{bottom:216.000000px;}
.y54_c00362{bottom:217.440000px;}
.y37_c00362{bottom:255.600000px;}
.y51_c00362{bottom:257.760000px;}
.y52_c00362{bottom:258.480000px;}
.y35_c00362{bottom:259.200000px;}
.y36_c00362{bottom:259.920000px;}
.y53_c00362{bottom:260.640000px;}
.y34_c00362{bottom:298.080000px;}
.y32_c00362{bottom:300.240000px;}
.y31_c00362{bottom:301.680000px;}
.y33_c00362{bottom:302.400000px;}
.y50_c00362{bottom:303.120000px;}
.y4f_c00362{bottom:303.840000px;}
.y30_c00362{bottom:342.000000px;}
.y4e_c00362{bottom:344.160000px;}
.y2e_c00362{bottom:344.880000px;}
.y2f_c00362{bottom:345.600000px;}
.y2d_c00362{bottom:385.200000px;}
.y4c_c00362{bottom:386.640000px;}
.y2c_c00362{bottom:387.360000px;}
.y4d_c00362{bottom:390.240000px;}
.y2b_c00362{bottom:428.400000px;}
.y4a_c00362{bottom:429.840000px;}
.y29_c00362{bottom:430.560000px;}
.y2a_c00362{bottom:432.000000px;}
.y4b_c00362{bottom:432.720000px;}
.y28_c00362{bottom:471.600000px;}
.y48_c00362{bottom:473.040000px;}
.y26_c00362{bottom:474.480000px;}
.y49_c00362{bottom:475.200000px;}
.y27_c00362{bottom:475.920000px;}
.y25_c00362{bottom:517.680000px;}
.y24_c00362{bottom:519.840000px;}
.y23_c00362{bottom:569.520000px;}
.y22_c00362{bottom:571.680000px;}
.y47_c00362{bottom:573.840000px;}
.y21_c00362{bottom:614.160000px;}
.y20_c00362{bottom:614.880000px;}
.y46_c00362{bottom:616.320000px;}
.y1d_c00362{bottom:657.360000px;}
.y1c_c00362{bottom:658.080000px;}
.y45_c00362{bottom:659.520000px;}
.y1f_c00362{bottom:660.240000px;}
.y1e_c00362{bottom:660.960000px;}
.y42_c00362{bottom:699.840000px;}
.y1b_c00362{bottom:700.560000px;}
.y1a_c00362{bottom:701.280000px;}
.y44_c00362{bottom:702.720000px;}
.y43_c00362{bottom:703.440000px;}
.y40_c00362{bottom:743.760000px;}
.y18_c00362{bottom:744.480000px;}
.y41_c00362{bottom:745.920000px;}
.y19_c00362{bottom:746.640000px;}
.y17_c00362{bottom:784.800000px;}
.y14_c00362{bottom:786.960000px;}
.y16_c00362{bottom:789.120000px;}
.y15_c00362{bottom:790.560000px;}
.y13_c00362{bottom:817.200000px;}
.y12_c00362{bottom:818.640000px;}
.yf_c00362{bottom:819.360000px;}
.y11_c00362{bottom:820.080000px;}
.y10_c00362{bottom:821.520000px;}
.ye_c00362{bottom:861.120000px;}
.yc_c00362{bottom:861.840000px;}
.y3f_c00362{bottom:862.560000px;}
.yd_c00362{bottom:865.440000px;}
.yb_c00362{bottom:907.200000px;}
.ya_c00362{bottom:907.920000px;}
.y9_c00362{bottom:957.600000px;}
.y3e_c00362{bottom:958.320000px;}
.y3d_c00362{bottom:959.040000px;}
.y8_c00362{bottom:959.760000px;}
.y5_c00362{bottom:1000.800000px;}
.y7_c00362{bottom:1001.520000px;}
.y4_c00362{bottom:1002.240000px;}
.y3c_c00362{bottom:1004.400000px;}
.y6_c00362{bottom:1005.120000px;}
.y2_c00362{bottom:1044.720000px;}
.y1_c00362{bottom:1046.160000px;}
.y3b_c00362{bottom:1047.600000px;}
.y3_c00362{bottom:1048.320000px;}
.y3a_c00362{bottom:1088.640000px;}
.hf_c00362{height:31.100625px;}
.h13_c00362{height:38.875781px;}
.ha_c00362{height:41.467500px;}
.h5_c00362{height:44.059219px;}
.h8_c00362{height:45.786094px;}
.h4_c00362{height:46.650937px;}
.hc_c00362{height:49.242656px;}
.h12_c00362{height:49.530937px;}
.he_c00362{height:51.834375px;}
.h10_c00362{height:52.122656px;}
.hb_c00362{height:54.426094px;}
.hd_c00362{height:57.017812px;}
.h2_c00362{height:59.609531px;}
.h9_c00362{height:62.201250px;}
.h6_c00362{height:64.792969px;}
.h3_c00362{height:67.384687px;}
.h7_c00362{height:69.976406px;}
.h11_c00362{height:85.526719px;}
.h1_c00362{height:1149.000000px;}
.h0_c00362{height:1149.120000px;}
.w0_c00362{width:774.720000px;}
.w1_c00362{width:774.750000px;}
.x0_c00362{left:0.000000px;}
.x1_c00362{left:59.760000px;}
.x18_c00362{left:61.200000px;}
.xb_c00362{left:112.320000px;}
.x12_c00362{left:133.200000px;}
.x6_c00362{left:134.640000px;}
.x2_c00362{left:136.080000px;}
.x15_c00362{left:177.840000px;}
.xd_c00362{left:179.280000px;}
.x32_c00362{left:187.920000px;}
.x13_c00362{left:189.360000px;}
.xc_c00362{left:198.720000px;}
.x33_c00362{left:221.040000px;}
.x3_c00362{left:231.120000px;}
.x14_c00362{left:241.920000px;}
.x17_c00362{left:243.360000px;}
.x7_c00362{left:265.680000px;}
.x4_c00362{left:275.760000px;}
.xe_c00362{left:286.560000px;}
.x19_c00362{left:295.920000px;}
.x16_c00362{left:298.080000px;}
.x8_c00362{left:318.240000px;}
.x5_c00362{left:330.480000px;}
.x1a_c00362{left:340.560000px;}
.x9_c00362{left:362.880000px;}
.xf_c00362{left:372.960000px;}
.x1b_c00362{left:383.040000px;}
.xa_c00362{left:395.280000px;}
.x10_c00362{left:427.680000px;}
.x30_c00362{left:470.160000px;}
.x2f_c00362{left:513.360000px;}
.x31_c00362{left:524.160000px;}
.x11_c00362{left:557.280000px;}
.x2d_c00362{left:567.360000px;}
.x28_c00362{left:576.720000px;}
.x23_c00362{left:578.880000px;}
.x2a_c00362{left:599.760000px;}
.x2e_c00362{left:601.920000px;}
.x34_c00362{left:609.120000px;}
.x26_c00362{left:610.560000px;}
.x1d_c00362{left:612.000000px;}
.x24_c00362{left:643.680000px;}
.x20_c00362{left:645.120000px;}
.x2b_c00362{left:654.480000px;}
.x1e_c00362{left:655.920000px;}
.x25_c00362{left:676.800000px;}
.x1c_c00362{left:680.400000px;}
.x29_c00362{left:685.440000px;}
.x21_c00362{left:686.880000px;}
.x1f_c00362{left:688.320000px;}
.x2c_c00362{left:696.960000px;}
.x27_c00362{left:706.320000px;}
.x22_c00362{left:708.480000px;}
@media print{
.v2_c00362{vertical-align:-10.240000pt;}
.v1_c00362{vertical-align:-7.680000pt;}
.v0_c00362{vertical-align:0.000000pt;}
.v4_c00362{vertical-align:2.560000pt;}
.v3_c00362{vertical-align:5.120000pt;}
.ls2_c00362{letter-spacing:0.000000pt;}
.ls1_c00362{letter-spacing:31.456213pt;}
.ls0_c00362{letter-spacing:33.312213pt;}
.ws0_c00362{word-spacing:-7.456427pt;}
.ws3_c00362{word-spacing:0.000000pt;}
.ws2_c00362{word-spacing:0.934613pt;}
.ws1_c00362{word-spacing:50.045867pt;}
.fsc_c00362{font-size:30.720000pt;}
.fse_c00362{font-size:38.400000pt;}
.fs8_c00362{font-size:40.960000pt;}
.fs3_c00362{font-size:43.520000pt;}
.fs2_c00362{font-size:46.080000pt;}
.fs9_c00362{font-size:48.640000pt;}
.fsb_c00362{font-size:51.200000pt;}
.fs6_c00362{font-size:53.760000pt;}
.fsa_c00362{font-size:56.320000pt;}
.fs0_c00362{font-size:58.880000pt;}
.fs7_c00362{font-size:61.440000pt;}
.fs4_c00362{font-size:64.000000pt;}
.fs1_c00362{font-size:66.560000pt;}
.fs5_c00362{font-size:69.120000pt;}
.fsd_c00362{font-size:84.480000pt;}
.y0_c00362{bottom:0.000000pt;}
.y65_c00362{bottom:44.160000pt;}
.y64_c00362{bottom:45.440000pt;}
.y63_c00362{bottom:48.000000pt;}
.y62_c00362{bottom:48.640000pt;}
.y67_c00362{bottom:49.920000pt;}
.y61_c00362{bottom:82.560000pt;}
.y60_c00362{bottom:84.480000pt;}
.y5f_c00362{bottom:86.400000pt;}
.y5c_c00362{bottom:112.000000pt;}
.y5d_c00362{bottom:113.280000pt;}
.y5e_c00362{bottom:115.200000pt;}
.y5b_c00362{bottom:115.840000pt;}
.y66_c00362{bottom:116.480000pt;}
.y59_c00362{bottom:145.920000pt;}
.y58_c00362{bottom:151.040000pt;}
.y57_c00362{bottom:151.680000pt;}
.y5a_c00362{bottom:153.600000pt;}
.y56_c00362{bottom:154.240000pt;}
.y39_c00362{bottom:188.800000pt;}
.y55_c00362{bottom:190.720000pt;}
.y38_c00362{bottom:192.000000pt;}
.y54_c00362{bottom:193.280000pt;}
.y37_c00362{bottom:227.200000pt;}
.y51_c00362{bottom:229.120000pt;}
.y52_c00362{bottom:229.760000pt;}
.y35_c00362{bottom:230.400000pt;}
.y36_c00362{bottom:231.040000pt;}
.y53_c00362{bottom:231.680000pt;}
.y34_c00362{bottom:264.960000pt;}
.y32_c00362{bottom:266.880000pt;}
.y31_c00362{bottom:268.160000pt;}
.y33_c00362{bottom:268.800000pt;}
.y50_c00362{bottom:269.440000pt;}
.y4f_c00362{bottom:270.080000pt;}
.y30_c00362{bottom:304.000000pt;}
.y4e_c00362{bottom:305.920000pt;}
.y2e_c00362{bottom:306.560000pt;}
.y2f_c00362{bottom:307.200000pt;}
.y2d_c00362{bottom:342.400000pt;}
.y4c_c00362{bottom:343.680000pt;}
.y2c_c00362{bottom:344.320000pt;}
.y4d_c00362{bottom:346.880000pt;}
.y2b_c00362{bottom:380.800000pt;}
.y4a_c00362{bottom:382.080000pt;}
.y29_c00362{bottom:382.720000pt;}
.y2a_c00362{bottom:384.000000pt;}
.y4b_c00362{bottom:384.640000pt;}
.y28_c00362{bottom:419.200000pt;}
.y48_c00362{bottom:420.480000pt;}
.y26_c00362{bottom:421.760000pt;}
.y49_c00362{bottom:422.400000pt;}
.y27_c00362{bottom:423.040000pt;}
.y25_c00362{bottom:460.160000pt;}
.y24_c00362{bottom:462.080000pt;}
.y23_c00362{bottom:506.240000pt;}
.y22_c00362{bottom:508.160000pt;}
.y47_c00362{bottom:510.080000pt;}
.y21_c00362{bottom:545.920000pt;}
.y20_c00362{bottom:546.560000pt;}
.y46_c00362{bottom:547.840000pt;}
.y1d_c00362{bottom:584.320000pt;}
.y1c_c00362{bottom:584.960000pt;}
.y45_c00362{bottom:586.240000pt;}
.y1f_c00362{bottom:586.880000pt;}
.y1e_c00362{bottom:587.520000pt;}
.y42_c00362{bottom:622.080000pt;}
.y1b_c00362{bottom:622.720000pt;}
.y1a_c00362{bottom:623.360000pt;}
.y44_c00362{bottom:624.640000pt;}
.y43_c00362{bottom:625.280000pt;}
.y40_c00362{bottom:661.120000pt;}
.y18_c00362{bottom:661.760000pt;}
.y41_c00362{bottom:663.040000pt;}
.y19_c00362{bottom:663.680000pt;}
.y17_c00362{bottom:697.600000pt;}
.y14_c00362{bottom:699.520000pt;}
.y16_c00362{bottom:701.440000pt;}
.y15_c00362{bottom:702.720000pt;}
.y13_c00362{bottom:726.400000pt;}
.y12_c00362{bottom:727.680000pt;}
.yf_c00362{bottom:728.320000pt;}
.y11_c00362{bottom:728.960000pt;}
.y10_c00362{bottom:730.240000pt;}
.ye_c00362{bottom:765.440000pt;}
.yc_c00362{bottom:766.080000pt;}
.y3f_c00362{bottom:766.720000pt;}
.yd_c00362{bottom:769.280000pt;}
.yb_c00362{bottom:806.400000pt;}
.ya_c00362{bottom:807.040000pt;}
.y9_c00362{bottom:851.200000pt;}
.y3e_c00362{bottom:851.840000pt;}
.y3d_c00362{bottom:852.480000pt;}
.y8_c00362{bottom:853.120000pt;}
.y5_c00362{bottom:889.600000pt;}
.y7_c00362{bottom:890.240000pt;}
.y4_c00362{bottom:890.880000pt;}
.y3c_c00362{bottom:892.800000pt;}
.y6_c00362{bottom:893.440000pt;}
.y2_c00362{bottom:928.640000pt;}
.y1_c00362{bottom:929.920000pt;}
.y3b_c00362{bottom:931.200000pt;}
.y3_c00362{bottom:931.840000pt;}
.y3a_c00362{bottom:967.680000pt;}
.hf_c00362{height:27.645000pt;}
.h13_c00362{height:34.556250pt;}
.ha_c00362{height:36.860000pt;}
.h5_c00362{height:39.163750pt;}
.h8_c00362{height:40.698750pt;}
.h4_c00362{height:41.467500pt;}
.hc_c00362{height:43.771250pt;}
.h12_c00362{height:44.027500pt;}
.he_c00362{height:46.075000pt;}
.h10_c00362{height:46.331250pt;}
.hb_c00362{height:48.378750pt;}
.hd_c00362{height:50.682500pt;}
.h2_c00362{height:52.986250pt;}
.h9_c00362{height:55.290000pt;}
.h6_c00362{height:57.593750pt;}
.h3_c00362{height:59.897500pt;}
.h7_c00362{height:62.201250pt;}
.h11_c00362{height:76.023750pt;}
.h1_c00362{height:1021.333333pt;}
.h0_c00362{height:1021.440000pt;}
.w0_c00362{width:688.640000pt;}
.w1_c00362{width:688.666667pt;}
.x0_c00362{left:0.000000pt;}
.x1_c00362{left:53.120000pt;}
.x18_c00362{left:54.400000pt;}
.xb_c00362{left:99.840000pt;}
.x12_c00362{left:118.400000pt;}
.x6_c00362{left:119.680000pt;}
.x2_c00362{left:120.960000pt;}
.x15_c00362{left:158.080000pt;}
.xd_c00362{left:159.360000pt;}
.x32_c00362{left:167.040000pt;}
.x13_c00362{left:168.320000pt;}
.xc_c00362{left:176.640000pt;}
.x33_c00362{left:196.480000pt;}
.x3_c00362{left:205.440000pt;}
.x14_c00362{left:215.040000pt;}
.x17_c00362{left:216.320000pt;}
.x7_c00362{left:236.160000pt;}
.x4_c00362{left:245.120000pt;}
.xe_c00362{left:254.720000pt;}
.x19_c00362{left:263.040000pt;}
.x16_c00362{left:264.960000pt;}
.x8_c00362{left:282.880000pt;}
.x5_c00362{left:293.760000pt;}
.x1a_c00362{left:302.720000pt;}
.x9_c00362{left:322.560000pt;}
.xf_c00362{left:331.520000pt;}
.x1b_c00362{left:340.480000pt;}
.xa_c00362{left:351.360000pt;}
.x10_c00362{left:380.160000pt;}
.x30_c00362{left:417.920000pt;}
.x2f_c00362{left:456.320000pt;}
.x31_c00362{left:465.920000pt;}
.x11_c00362{left:495.360000pt;}
.x2d_c00362{left:504.320000pt;}
.x28_c00362{left:512.640000pt;}
.x23_c00362{left:514.560000pt;}
.x2a_c00362{left:533.120000pt;}
.x2e_c00362{left:535.040000pt;}
.x34_c00362{left:541.440000pt;}
.x26_c00362{left:542.720000pt;}
.x1d_c00362{left:544.000000pt;}
.x24_c00362{left:572.160000pt;}
.x20_c00362{left:573.440000pt;}
.x2b_c00362{left:581.760000pt;}
.x1e_c00362{left:583.040000pt;}
.x25_c00362{left:601.600000pt;}
.x1c_c00362{left:604.800000pt;}
.x29_c00362{left:609.280000pt;}
.x21_c00362{left:610.560000pt;}
.x1f_c00362{left:611.840000pt;}
.x2c_c00362{left:619.520000pt;}
.x27_c00362{left:627.840000pt;}
.x22_c00362{left:629.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c542b0873fdcfe4dc114b46e.woff2')format("woff");}.ff1_c00363{font-family:ff1_c00363;line-height:1.109863;font-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_c00363{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);}
.m6_c00363{transform:matrix(0.208875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208875,0.000000,0.000000,0.250000,0,0);}
.m21_c00363{transform:matrix(0.213400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213400,0.000000,0.000000,0.250000,0,0);}
.m44_c00363{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m28_c00363{transform:matrix(0.219850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219850,0.000000,0.000000,0.250000,0,0);}
.m4a_c00363{transform:matrix(0.226025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226025,0.000000,0.000000,0.250000,0,0);}
.m37_c00363{transform:matrix(0.243300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243300,0.000000,0.000000,0.250000,0,0);}
.m33_c00363{transform:matrix(0.245925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245925,0.000000,0.000000,0.250000,0,0);}
.m3e_c00363{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m10_c00363{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m29_c00363{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_c00363{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m0_c00363{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.ma_c00363{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m23_c00363{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mb_c00363{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m14_c00363{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m4_c00363{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);}
.m3a_c00363{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00363{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m12_c00363{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00363{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m20_c00363{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m5_c00363{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.md_c00363{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m26_c00363{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1b_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);}
.m2c_c00363{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m18_c00363{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mf_c00363{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00363{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m41_c00363{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m22_c00363{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m24_c00363{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m25_c00363{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00363{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);}
.m49_c00363{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);}
.m35_c00363{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m11_c00363{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);}
.m2f_c00363{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m13_c00363{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);}
.m27_c00363{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m38_c00363{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m2_c00363{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.mc_c00363{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);}
.m1e_c00363{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1_c00363{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00363{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);}
.m2e_c00363{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);}
.m3_c00363{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);}
.m9_c00363{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m30_c00363{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);}
.m45_c00363{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);}
.m40_c00363{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);}
.m3d_c00363{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m17_c00363{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);}
.me_c00363{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);}
.m39_c00363{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m48_c00363{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00363{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m42_c00363{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m46_c00363{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m47_c00363{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);}
.m31_c00363{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00363{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);}
.m1a_c00363{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m16_c00363{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);}
.m3b_c00363{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m19_c00363{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00363{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m34_c00363{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m15_c00363{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m36_c00363{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);}
.m43_c00363{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m32_c00363{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m8_c00363{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00363{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.v1_c00363{vertical-align:-8.640000px;}
.v3_c00363{vertical-align:-2.880000px;}
.v0_c00363{vertical-align:0.000000px;}
.v2_c00363{vertical-align:5.760000px;}
.ls1_c00363{letter-spacing:0.000000px;}
.ls0_c00363{letter-spacing:81.206400px;}
.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:-1.877760px;}
.ws2_c00363{word-spacing:0.000000px;}
.ws1_c00363{word-spacing:37.613520px;}
.fc0_c00363{color:transparent;}
.fsd_c00363{font-size:14.400000px;}
.fsb_c00363{font-size:34.560000px;}
.fsc_c00363{font-size:37.440000px;}
.fs2_c00363{font-size:46.080000px;}
.fs8_c00363{font-size:48.960000px;}
.fs3_c00363{font-size:51.840000px;}
.fs6_c00363{font-size:54.720000px;}
.fs4_c00363{font-size:57.600000px;}
.fs1_c00363{font-size:60.480000px;}
.fsa_c00363{font-size:63.360000px;}
.fs5_c00363{font-size:66.240000px;}
.fs7_c00363{font-size:69.120000px;}
.fse_c00363{font-size:72.000000px;}
.fs9_c00363{font-size:74.880000px;}
.fs0_c00363{font-size:77.760000px;}
.y0_c00363{bottom:0.000000px;}
.y57_c00363{bottom:20.880000px;}
.y58_c00363{bottom:21.600000px;}
.y65_c00363{bottom:24.480000px;}
.y63_c00363{bottom:25.200000px;}
.y56_c00363{bottom:25.920000px;}
.y64_c00363{bottom:27.360000px;}
.y55_c00363{bottom:63.360000px;}
.y62_c00363{bottom:66.240000px;}
.y60_c00363{bottom:66.960000px;}
.y54_c00363{bottom:67.680000px;}
.y61_c00363{bottom:68.400000px;}
.y6d_c00363{bottom:107.280000px;}
.y5e_c00363{bottom:110.160000px;}
.y6c_c00363{bottom:110.880000px;}
.y5f_c00363{bottom:112.320000px;}
.y6b_c00363{bottom:150.480000px;}
.y6a_c00363{bottom:151.920000px;}
.y5c_c00363{bottom:153.360000px;}
.y5d_c00363{bottom:154.080000px;}
.y69_c00363{bottom:193.680000px;}
.y5b_c00363{bottom:196.560000px;}
.y68_c00363{bottom:198.000000px;}
.y67_c00363{bottom:237.600000px;}
.y59_c00363{bottom:239.760000px;}
.y66_c00363{bottom:240.480000px;}
.y5a_c00363{bottom:241.920000px;}
.y51_c00363{bottom:281.520000px;}
.y50_c00363{bottom:284.400000px;}
.y4e_c00363{bottom:313.200000px;}
.y53_c00363{bottom:315.360000px;}
.y4d_c00363{bottom:316.080000px;}
.y4f_c00363{bottom:317.520000px;}
.y52_c00363{bottom:318.240000px;}
.y4c_c00363{bottom:357.840000px;}
.y4a_c00363{bottom:358.560000px;}
.y4b_c00363{bottom:360.720000px;}
.y46_c00363{bottom:389.520000px;}
.y47_c00363{bottom:390.240000px;}
.y49_c00363{bottom:391.680000px;}
.y45_c00363{bottom:392.400000px;}
.y48_c00363{bottom:393.120000px;}
.y40_c00363{bottom:432.720000px;}
.y42_c00363{bottom:433.440000px;}
.y41_c00363{bottom:434.160000px;}
.y43_c00363{bottom:434.880000px;}
.y3e_c00363{bottom:435.600000px;}
.y3f_c00363{bottom:436.320000px;}
.y44_c00363{bottom:437.760000px;}
.y3d_c00363{bottom:475.920000px;}
.y3c_c00363{bottom:479.520000px;}
.y39_c00363{bottom:508.320000px;}
.y3b_c00363{bottom:509.040000px;}
.y38_c00363{bottom:509.760000px;}
.y3a_c00363{bottom:511.920000px;}
.y36_c00363{bottom:552.240000px;}
.y37_c00363{bottom:555.120000px;}
.y32_c00363{bottom:583.200000px;}
.y34_c00363{bottom:584.640000px;}
.y31_c00363{bottom:585.360000px;}
.y33_c00363{bottom:586.800000px;}
.y35_c00363{bottom:587.520000px;}
.y2e_c00363{bottom:626.400000px;}
.y2f_c00363{bottom:630.000000px;}
.y30_c00363{bottom:630.720000px;}
.y2d_c00363{bottom:659.520000px;}
.y2a_c00363{bottom:660.240000px;}
.y2c_c00363{bottom:662.400000px;}
.y2b_c00363{bottom:663.120000px;}
.y29_c00363{bottom:702.720000px;}
.y28_c00363{bottom:703.440000px;}
.y24_c00363{bottom:745.200000px;}
.y22_c00363{bottom:746.640000px;}
.y27_c00363{bottom:747.360000px;}
.y26_c00363{bottom:748.800000px;}
.y23_c00363{bottom:749.520000px;}
.y21_c00363{bottom:788.400000px;}
.y1f_c00363{bottom:789.840000px;}
.y25_c00363{bottom:790.560000px;}
.y20_c00363{bottom:792.000000px;}
.y1d_c00363{bottom:831.600000px;}
.y1a_c00363{bottom:833.040000px;}
.y1e_c00363{bottom:833.760000px;}
.y1c_c00363{bottom:835.920000px;}
.y1b_c00363{bottom:838.800000px;}
.y16_c00363{bottom:875.520000px;}
.y19_c00363{bottom:876.960000px;}
.y17_c00363{bottom:878.400000px;}
.y18_c00363{bottom:879.120000px;}
.y12_c00363{bottom:907.920000px;}
.y11_c00363{bottom:908.640000px;}
.y14_c00363{bottom:909.360000px;}
.y15_c00363{bottom:910.800000px;}
.y13_c00363{bottom:911.520000px;}
.yf_c00363{bottom:951.120000px;}
.yc_c00363{bottom:951.840000px;}
.y10_c00363{bottom:952.560000px;}
.ye_c00363{bottom:954.000000px;}
.yd_c00363{bottom:954.720000px;}
.ya_c00363{bottom:993.600000px;}
.y8_c00363{bottom:995.040000px;}
.yb_c00363{bottom:995.760000px;}
.y9_c00363{bottom:997.200000px;}
.y5_c00363{bottom:1036.800000px;}
.y2_c00363{bottom:1037.520000px;}
.y7_c00363{bottom:1038.240000px;}
.y6_c00363{bottom:1038.960000px;}
.y4_c00363{bottom:1040.400000px;}
.y3_c00363{bottom:1041.120000px;}
.y1_c00363{bottom:1082.160000px;}
.hf_c00363{height:12.958594px;}
.hd_c00363{height:31.100625px;}
.he_c00363{height:33.692344px;}
.h4_c00363{height:41.467500px;}
.ha_c00363{height:44.059219px;}
.h5_c00363{height:46.650937px;}
.h8_c00363{height:49.242656px;}
.h6_c00363{height:51.834375px;}
.h3_c00363{height:54.426094px;}
.hc_c00363{height:57.017812px;}
.h11_c00363{height:59.321250px;}
.h7_c00363{height:59.609531px;}
.h9_c00363{height:62.201250px;}
.h10_c00363{height:64.792969px;}
.hb_c00363{height:67.384687px;}
.h2_c00363{height:69.976406px;}
.h0_c00363{height:1138.320000px;}
.h1_c00363{height:1138.500000px;}
.w0_c00363{width:758.160000px;}
.w1_c00363{width:758.250000px;}
.x0_c00363{left:0.000000px;}
.x2_c00363{left:46.080000px;}
.x2b_c00363{left:47.520000px;}
.x37_c00363{left:49.680000px;}
.x19_c00363{left:100.080000px;}
.x3_c00363{left:120.960000px;}
.x15_c00363{left:122.400000px;}
.xa_c00363{left:157.680000px;}
.xc_c00363{left:164.160000px;}
.x4_c00363{left:165.600000px;}
.x2c_c00363{left:175.680000px;}
.x33_c00363{left:197.280000px;}
.x5_c00363{left:208.080000px;}
.xd_c00363{left:209.520000px;}
.x1a_c00363{left:218.160000px;}
.x21_c00363{left:219.600000px;}
.x2a_c00363{left:228.960000px;}
.x27_c00363{left:239.760000px;}
.x34_c00363{left:241.200000px;}
.xf_c00363{left:252.720000px;}
.x1f_c00363{left:261.360000px;}
.x1b_c00363{left:263.520000px;}
.x22_c00363{left:272.880000px;}
.x2d_c00363{left:274.320000px;}
.x35_c00363{left:283.680000px;}
.x28_c00363{left:285.120000px;}
.x2f_c00363{left:295.920000px;}
.x1c_c00363{left:306.720000px;}
.x23_c00363{left:315.360000px;}
.x29_c00363{left:317.520000px;}
.x16_c00363{left:326.880000px;}
.x10_c00363{left:338.400000px;}
.x20_c00363{left:348.480000px;}
.x1d_c00363{left:350.640000px;}
.x24_c00363{left:360.720000px;}
.x17_c00363{left:381.600000px;}
.x11_c00363{left:392.400000px;}
.x30_c00363{left:424.800000px;}
.x18_c00363{left:435.600000px;}
.x25_c00363{left:445.680000px;}
.x2e_c00363{left:457.920000px;}
.x31_c00363{left:479.520000px;}
.x12_c00363{left:490.320000px;}
.x26_c00363{left:501.120000px;}
.x13_c00363{left:532.800000px;}
.x3a_c00363{left:544.320000px;}
.x1e_c00363{left:565.920000px;}
.xb_c00363{left:576.720000px;}
.x32_c00363{left:598.320000px;}
.x6_c00363{left:599.760000px;}
.xe_c00363{left:631.440000px;}
.x7_c00363{left:632.880000px;}
.x39_c00363{left:641.520000px;}
.x1_c00363{left:660.960000px;}
.x14_c00363{left:664.560000px;}
.x38_c00363{left:673.200000px;}
.x8_c00363{left:674.640000px;}
.x36_c00363{left:694.080000px;}
.x9_c00363{left:695.520000px;}
@media print{
.v1_c00363{vertical-align:-7.680000pt;}
.v3_c00363{vertical-align:-2.560000pt;}
.v0_c00363{vertical-align:0.000000pt;}
.v2_c00363{vertical-align:5.120000pt;}
.ls1_c00363{letter-spacing:0.000000pt;}
.ls0_c00363{letter-spacing:72.183467pt;}
.ws0_c00363{word-spacing:-1.669120pt;}
.ws2_c00363{word-spacing:0.000000pt;}
.ws1_c00363{word-spacing:33.434240pt;}
.fsd_c00363{font-size:12.800000pt;}
.fsb_c00363{font-size:30.720000pt;}
.fsc_c00363{font-size:33.280000pt;}
.fs2_c00363{font-size:40.960000pt;}
.fs8_c00363{font-size:43.520000pt;}
.fs3_c00363{font-size:46.080000pt;}
.fs6_c00363{font-size:48.640000pt;}
.fs4_c00363{font-size:51.200000pt;}
.fs1_c00363{font-size:53.760000pt;}
.fsa_c00363{font-size:56.320000pt;}
.fs5_c00363{font-size:58.880000pt;}
.fs7_c00363{font-size:61.440000pt;}
.fse_c00363{font-size:64.000000pt;}
.fs9_c00363{font-size:66.560000pt;}
.fs0_c00363{font-size:69.120000pt;}
.y0_c00363{bottom:0.000000pt;}
.y57_c00363{bottom:18.560000pt;}
.y58_c00363{bottom:19.200000pt;}
.y65_c00363{bottom:21.760000pt;}
.y63_c00363{bottom:22.400000pt;}
.y56_c00363{bottom:23.040000pt;}
.y64_c00363{bottom:24.320000pt;}
.y55_c00363{bottom:56.320000pt;}
.y62_c00363{bottom:58.880000pt;}
.y60_c00363{bottom:59.520000pt;}
.y54_c00363{bottom:60.160000pt;}
.y61_c00363{bottom:60.800000pt;}
.y6d_c00363{bottom:95.360000pt;}
.y5e_c00363{bottom:97.920000pt;}
.y6c_c00363{bottom:98.560000pt;}
.y5f_c00363{bottom:99.840000pt;}
.y6b_c00363{bottom:133.760000pt;}
.y6a_c00363{bottom:135.040000pt;}
.y5c_c00363{bottom:136.320000pt;}
.y5d_c00363{bottom:136.960000pt;}
.y69_c00363{bottom:172.160000pt;}
.y5b_c00363{bottom:174.720000pt;}
.y68_c00363{bottom:176.000000pt;}
.y67_c00363{bottom:211.200000pt;}
.y59_c00363{bottom:213.120000pt;}
.y66_c00363{bottom:213.760000pt;}
.y5a_c00363{bottom:215.040000pt;}
.y51_c00363{bottom:250.240000pt;}
.y50_c00363{bottom:252.800000pt;}
.y4e_c00363{bottom:278.400000pt;}
.y53_c00363{bottom:280.320000pt;}
.y4d_c00363{bottom:280.960000pt;}
.y4f_c00363{bottom:282.240000pt;}
.y52_c00363{bottom:282.880000pt;}
.y4c_c00363{bottom:318.080000pt;}
.y4a_c00363{bottom:318.720000pt;}
.y4b_c00363{bottom:320.640000pt;}
.y46_c00363{bottom:346.240000pt;}
.y47_c00363{bottom:346.880000pt;}
.y49_c00363{bottom:348.160000pt;}
.y45_c00363{bottom:348.800000pt;}
.y48_c00363{bottom:349.440000pt;}
.y40_c00363{bottom:384.640000pt;}
.y42_c00363{bottom:385.280000pt;}
.y41_c00363{bottom:385.920000pt;}
.y43_c00363{bottom:386.560000pt;}
.y3e_c00363{bottom:387.200000pt;}
.y3f_c00363{bottom:387.840000pt;}
.y44_c00363{bottom:389.120000pt;}
.y3d_c00363{bottom:423.040000pt;}
.y3c_c00363{bottom:426.240000pt;}
.y39_c00363{bottom:451.840000pt;}
.y3b_c00363{bottom:452.480000pt;}
.y38_c00363{bottom:453.120000pt;}
.y3a_c00363{bottom:455.040000pt;}
.y36_c00363{bottom:490.880000pt;}
.y37_c00363{bottom:493.440000pt;}
.y32_c00363{bottom:518.400000pt;}
.y34_c00363{bottom:519.680000pt;}
.y31_c00363{bottom:520.320000pt;}
.y33_c00363{bottom:521.600000pt;}
.y35_c00363{bottom:522.240000pt;}
.y2e_c00363{bottom:556.800000pt;}
.y2f_c00363{bottom:560.000000pt;}
.y30_c00363{bottom:560.640000pt;}
.y2d_c00363{bottom:586.240000pt;}
.y2a_c00363{bottom:586.880000pt;}
.y2c_c00363{bottom:588.800000pt;}
.y2b_c00363{bottom:589.440000pt;}
.y29_c00363{bottom:624.640000pt;}
.y28_c00363{bottom:625.280000pt;}
.y24_c00363{bottom:662.400000pt;}
.y22_c00363{bottom:663.680000pt;}
.y27_c00363{bottom:664.320000pt;}
.y26_c00363{bottom:665.600000pt;}
.y23_c00363{bottom:666.240000pt;}
.y21_c00363{bottom:700.800000pt;}
.y1f_c00363{bottom:702.080000pt;}
.y25_c00363{bottom:702.720000pt;}
.y20_c00363{bottom:704.000000pt;}
.y1d_c00363{bottom:739.200000pt;}
.y1a_c00363{bottom:740.480000pt;}
.y1e_c00363{bottom:741.120000pt;}
.y1c_c00363{bottom:743.040000pt;}
.y1b_c00363{bottom:745.600000pt;}
.y16_c00363{bottom:778.240000pt;}
.y19_c00363{bottom:779.520000pt;}
.y17_c00363{bottom:780.800000pt;}
.y18_c00363{bottom:781.440000pt;}
.y12_c00363{bottom:807.040000pt;}
.y11_c00363{bottom:807.680000pt;}
.y14_c00363{bottom:808.320000pt;}
.y15_c00363{bottom:809.600000pt;}
.y13_c00363{bottom:810.240000pt;}
.yf_c00363{bottom:845.440000pt;}
.yc_c00363{bottom:846.080000pt;}
.y10_c00363{bottom:846.720000pt;}
.ye_c00363{bottom:848.000000pt;}
.yd_c00363{bottom:848.640000pt;}
.ya_c00363{bottom:883.200000pt;}
.y8_c00363{bottom:884.480000pt;}
.yb_c00363{bottom:885.120000pt;}
.y9_c00363{bottom:886.400000pt;}
.y5_c00363{bottom:921.600000pt;}
.y2_c00363{bottom:922.240000pt;}
.y7_c00363{bottom:922.880000pt;}
.y6_c00363{bottom:923.520000pt;}
.y4_c00363{bottom:924.800000pt;}
.y3_c00363{bottom:925.440000pt;}
.y1_c00363{bottom:961.920000pt;}
.hf_c00363{height:11.518750pt;}
.hd_c00363{height:27.645000pt;}
.he_c00363{height:29.948750pt;}
.h4_c00363{height:36.860000pt;}
.ha_c00363{height:39.163750pt;}
.h5_c00363{height:41.467500pt;}
.h8_c00363{height:43.771250pt;}
.h6_c00363{height:46.075000pt;}
.h3_c00363{height:48.378750pt;}
.hc_c00363{height:50.682500pt;}
.h11_c00363{height:52.730000pt;}
.h7_c00363{height:52.986250pt;}
.h9_c00363{height:55.290000pt;}
.h10_c00363{height:57.593750pt;}
.hb_c00363{height:59.897500pt;}
.h2_c00363{height:62.201250pt;}
.h0_c00363{height:1011.840000pt;}
.h1_c00363{height:1012.000000pt;}
.w0_c00363{width:673.920000pt;}
.w1_c00363{width:674.000000pt;}
.x0_c00363{left:0.000000pt;}
.x2_c00363{left:40.960000pt;}
.x2b_c00363{left:42.240000pt;}
.x37_c00363{left:44.160000pt;}
.x19_c00363{left:88.960000pt;}
.x3_c00363{left:107.520000pt;}
.x15_c00363{left:108.800000pt;}
.xa_c00363{left:140.160000pt;}
.xc_c00363{left:145.920000pt;}
.x4_c00363{left:147.200000pt;}
.x2c_c00363{left:156.160000pt;}
.x33_c00363{left:175.360000pt;}
.x5_c00363{left:184.960000pt;}
.xd_c00363{left:186.240000pt;}
.x1a_c00363{left:193.920000pt;}
.x21_c00363{left:195.200000pt;}
.x2a_c00363{left:203.520000pt;}
.x27_c00363{left:213.120000pt;}
.x34_c00363{left:214.400000pt;}
.xf_c00363{left:224.640000pt;}
.x1f_c00363{left:232.320000pt;}
.x1b_c00363{left:234.240000pt;}
.x22_c00363{left:242.560000pt;}
.x2d_c00363{left:243.840000pt;}
.x35_c00363{left:252.160000pt;}
.x28_c00363{left:253.440000pt;}
.x2f_c00363{left:263.040000pt;}
.x1c_c00363{left:272.640000pt;}
.x23_c00363{left:280.320000pt;}
.x29_c00363{left:282.240000pt;}
.x16_c00363{left:290.560000pt;}
.x10_c00363{left:300.800000pt;}
.x20_c00363{left:309.760000pt;}
.x1d_c00363{left:311.680000pt;}
.x24_c00363{left:320.640000pt;}
.x17_c00363{left:339.200000pt;}
.x11_c00363{left:348.800000pt;}
.x30_c00363{left:377.600000pt;}
.x18_c00363{left:387.200000pt;}
.x25_c00363{left:396.160000pt;}
.x2e_c00363{left:407.040000pt;}
.x31_c00363{left:426.240000pt;}
.x12_c00363{left:435.840000pt;}
.x26_c00363{left:445.440000pt;}
.x13_c00363{left:473.600000pt;}
.x3a_c00363{left:483.840000pt;}
.x1e_c00363{left:503.040000pt;}
.xb_c00363{left:512.640000pt;}
.x32_c00363{left:531.840000pt;}
.x6_c00363{left:533.120000pt;}
.xe_c00363{left:561.280000pt;}
.x7_c00363{left:562.560000pt;}
.x39_c00363{left:570.240000pt;}
.x1_c00363{left:587.520000pt;}
.x14_c00363{left:590.720000pt;}
.x38_c00363{left:598.400000pt;}
.x8_c00363{left:599.680000pt;}
.x36_c00363{left:616.960000pt;}
.x9_c00363{left:618.240000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7de6c2a3835442e974c8bdb0.woff2')format("woff");}.ff1_c00364{font-family:ff1_c00364;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4a_c00364{transform:matrix(0.165075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165075,0.000000,0.000000,0.250000,0,0);}
.m44_c00364{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m49_c00364{transform:matrix(0.239075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239075,0.000000,0.000000,0.250000,0,0);}
.m4c_c00364{transform:matrix(0.245975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245975,0.000000,0.000000,0.250000,0,0);}
.m48_c00364{transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);}
.m2e_c00364{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m16_c00364{transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);}
.m4b_c00364{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);}
.m40_c00364{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m12_c00364{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m22_c00364{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);}
.m2b_c00364{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);}
.m42_c00364{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mf_c00364{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);}
.m46_c00364{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m19_c00364{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m47_c00364{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00364{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00364{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m23_c00364{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m27_c00364{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m20_c00364{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m34_c00364{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mc_c00364{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m32_c00364{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m18_c00364{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00364{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m45_c00364{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m9_c00364{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00364{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00364{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00364{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00364{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m30_c00364{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1_c00364{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m17_c00364{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.me_c00364{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);}
.m36_c00364{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);}
.m3f_c00364{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m28_c00364{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);}
.m1d_c00364{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m39_c00364{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_c00364{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00364{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);}
.m37_c00364{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m3_c00364{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);}
.m2a_c00364{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);}
.ma_c00364{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m5_c00364{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m0_c00364{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m4_c00364{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m31_c00364{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m24_c00364{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);}
.m1f_c00364{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m15_c00364{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);}
.m41_c00364{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);}
.m29_c00364{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.mb_c00364{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.md_c00364{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);}
.m35_c00364{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m33_c00364{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00364{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m38_c00364{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);}
.m13_c00364{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00364{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m25_c00364{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00364{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00364{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m6_c00364{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);}
.m2_c00364{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m26_c00364{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m14_c00364{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);}
.m10_c00364{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m43_c00364{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m8_c00364{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m21_c00364{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m11_c00364{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00364{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.v1_c00364{vertical-align:-2.880000px;}
.v0_c00364{vertical-align:0.000000px;}
.v2_c00364{vertical-align:11.520000px;}
.ls1_c00364{letter-spacing:0.000000px;}
.ls0_c00364{letter-spacing:83.257680px;}
.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;}
}
.ws2_c00364{word-spacing:0.000000px;}
.ws1_c00364{word-spacing:6.810720px;}
.ws0_c00364{word-spacing:9.475200px;}
.fc0_c00364{color:transparent;}
.fs7_c00364{font-size:34.560000px;}
.fs8_c00364{font-size:37.440000px;}
.fsf_c00364{font-size:40.320000px;}
.fsb_c00364{font-size:46.080000px;}
.fs2_c00364{font-size:48.960000px;}
.fs1_c00364{font-size:51.840000px;}
.fsc_c00364{font-size:54.720000px;}
.fs9_c00364{font-size:57.600000px;}
.fs0_c00364{font-size:60.480000px;}
.fsd_c00364{font-size:63.360000px;}
.fs6_c00364{font-size:66.240000px;}
.fsa_c00364{font-size:69.120000px;}
.fs4_c00364{font-size:72.000000px;}
.fs5_c00364{font-size:74.880000px;}
.fs3_c00364{font-size:77.760000px;}
.fse_c00364{font-size:103.680000px;}
.y0_c00364{bottom:0.000000px;}
.y81_c00364{bottom:21.600000px;}
.y7e_c00364{bottom:25.920000px;}
.y7f_c00364{bottom:28.080000px;}
.y7d_c00364{bottom:29.520000px;}
.y80_c00364{bottom:30.240000px;}
.y82_c00364{bottom:33.120000px;}
.y79_c00364{bottom:69.120000px;}
.y7b_c00364{bottom:69.840000px;}
.y78_c00364{bottom:72.720000px;}
.y7a_c00364{bottom:73.440000px;}
.y7c_c00364{bottom:74.880000px;}
.y75_c00364{bottom:113.040000px;}
.y77_c00364{bottom:113.760000px;}
.y74_c00364{bottom:116.640000px;}
.y76_c00364{bottom:117.360000px;}
.y70_c00364{bottom:156.960000px;}
.y71_c00364{bottom:157.680000px;}
.y6f_c00364{bottom:159.840000px;}
.y73_c00364{bottom:160.560000px;}
.y72_c00364{bottom:162.000000px;}
.y69_c00364{bottom:200.160000px;}
.y6b_c00364{bottom:200.880000px;}
.y6a_c00364{bottom:201.600000px;}
.y68_c00364{bottom:203.040000px;}
.y6d_c00364{bottom:203.760000px;}
.y6c_c00364{bottom:205.200000px;}
.y6e_c00364{bottom:205.920000px;}
.y65_c00364{bottom:237.600000px;}
.y64_c00364{bottom:243.360000px;}
.y62_c00364{bottom:246.960000px;}
.y63_c00364{bottom:247.680000px;}
.y67_c00364{bottom:248.400000px;}
.y66_c00364{bottom:249.120000px;}
.y3e_c00364{bottom:286.560000px;}
.y3f_c00364{bottom:288.000000px;}
.y60_c00364{bottom:288.720000px;}
.y3d_c00364{bottom:289.440000px;}
.y40_c00364{bottom:290.880000px;}
.y61_c00364{bottom:291.600000px;}
.y3a_c00364{bottom:329.760000px;}
.y3c_c00364{bottom:330.480000px;}
.y5e_c00364{bottom:331.200000px;}
.y5f_c00364{bottom:331.920000px;}
.y39_c00364{bottom:332.640000px;}
.y3b_c00364{bottom:333.360000px;}
.y36_c00364{bottom:372.240000px;}
.y38_c00364{bottom:372.960000px;}
.y5d_c00364{bottom:375.120000px;}
.y35_c00364{bottom:375.840000px;}
.y37_c00364{bottom:376.560000px;}
.y34_c00364{bottom:416.160000px;}
.y5b_c00364{bottom:417.600000px;}
.y33_c00364{bottom:418.320000px;}
.y5c_c00364{bottom:421.200000px;}
.y30_c00364{bottom:459.360000px;}
.y5a_c00364{bottom:460.800000px;}
.y2f_c00364{bottom:461.520000px;}
.y32_c00364{bottom:462.240000px;}
.y31_c00364{bottom:462.960000px;}
.y59_c00364{bottom:463.680000px;}
.y58_c00364{bottom:464.400000px;}
.y2e_c00364{bottom:502.560000px;}
.y57_c00364{bottom:503.280000px;}
.y2c_c00364{bottom:504.720000px;}
.y55_c00364{bottom:505.440000px;}
.y56_c00364{bottom:506.160000px;}
.y2d_c00364{bottom:506.880000px;}
.y29_c00364{bottom:546.480000px;}
.y54_c00364{bottom:547.200000px;}
.y28_c00364{bottom:547.920000px;}
.y2a_c00364{bottom:549.360000px;}
.y2b_c00364{bottom:550.080000px;}
.y26_c00364{bottom:589.680000px;}
.y27_c00364{bottom:590.400000px;}
.y25_c00364{bottom:591.120000px;}
.y52_c00364{bottom:591.840000px;}
.y53_c00364{bottom:594.000000px;}
.y24_c00364{bottom:633.600000px;}
.y22_c00364{bottom:635.040000px;}
.y51_c00364{bottom:635.760000px;}
.y23_c00364{bottom:637.200000px;}
.y20_c00364{bottom:676.080000px;}
.y21_c00364{bottom:676.800000px;}
.y1f_c00364{bottom:677.520000px;}
.y4f_c00364{bottom:678.240000px;}
.y4e_c00364{bottom:680.400000px;}
.y50_c00364{bottom:681.120000px;}
.y1d_c00364{bottom:720.000000px;}
.y4d_c00364{bottom:720.720000px;}
.y1c_c00364{bottom:721.440000px;}
.y1e_c00364{bottom:723.600000px;}
.y1a_c00364{bottom:763.200000px;}
.y19_c00364{bottom:764.640000px;}
.y4c_c00364{bottom:765.360000px;}
.y1b_c00364{bottom:766.800000px;}
.y16_c00364{bottom:805.680000px;}
.y18_c00364{bottom:806.400000px;}
.y17_c00364{bottom:807.120000px;}
.y15_c00364{bottom:807.840000px;}
.y4b_c00364{bottom:808.560000px;}
.y12_c00364{bottom:848.880000px;}
.y14_c00364{bottom:849.600000px;}
.y49_c00364{bottom:850.320000px;}
.y11_c00364{bottom:851.040000px;}
.y13_c00364{bottom:852.480000px;}
.y4a_c00364{bottom:853.200000px;}
.ye_c00364{bottom:892.080000px;}
.yd_c00364{bottom:892.800000px;}
.y48_c00364{bottom:893.520000px;}
.y47_c00364{bottom:894.960000px;}
.yf_c00364{bottom:895.680000px;}
.y10_c00364{bottom:896.400000px;}
.yc_c00364{bottom:934.560000px;}
.y46_c00364{bottom:935.280000px;}
.ya_c00364{bottom:936.000000px;}
.yb_c00364{bottom:938.880000px;}
.y9_c00364{bottom:977.760000px;}
.y7_c00364{bottom:978.480000px;}
.y44_c00364{bottom:979.200000px;}
.y43_c00364{bottom:979.920000px;}
.y45_c00364{bottom:980.640000px;}
.y42_c00364{bottom:981.360000px;}
.y8_c00364{bottom:982.080000px;}
.y6_c00364{bottom:1020.240000px;}
.y5_c00364{bottom:1054.080000px;}
.y1_c00364{bottom:1054.800000px;}
.y4_c00364{bottom:1055.520000px;}
.y3_c00364{bottom:1056.960000px;}
.y2_c00364{bottom:1057.680000px;}
.y41_c00364{bottom:1103.040000px;}
.h9_c00364{height:31.100625px;}
.ha_c00364{height:33.692344px;}
.h11_c00364{height:36.284062px;}
.hd_c00364{height:41.467500px;}
.h4_c00364{height:44.059219px;}
.h3_c00364{height:46.650937px;}
.he_c00364{height:49.242656px;}
.hb_c00364{height:51.834375px;}
.h2_c00364{height:54.426094px;}
.hf_c00364{height:57.017812px;}
.h8_c00364{height:59.609531px;}
.hc_c00364{height:62.201250px;}
.h6_c00364{height:64.792969px;}
.h7_c00364{height:67.384687px;}
.h5_c00364{height:69.976406px;}
.h10_c00364{height:93.301875px;}
.h1_c00364{height:1149.000000px;}
.h0_c00364{height:1149.120000px;}
.w0_c00364{width:775.440000px;}
.w1_c00364{width:775.500000px;}
.x0_c00364{left:0.000000px;}
.x1_c00364{left:64.080000px;}
.x1f_c00364{left:65.520000px;}
.x2e_c00364{left:66.960000px;}
.x16_c00364{left:138.960000px;}
.x2_c00364{left:140.400000px;}
.xa_c00364{left:172.800000px;}
.x3_c00364{left:183.600000px;}
.x17_c00364{left:185.040000px;}
.x1a_c00364{left:207.360000px;}
.xb_c00364{left:216.000000px;}
.xe_c00364{left:236.160000px;}
.x4_c00364{left:237.600000px;}
.x18_c00364{left:239.040000px;}
.x10_c00364{left:270.000000px;}
.xf_c00364{left:281.520000px;}
.x29_c00364{left:282.960000px;}
.x5_c00364{left:291.600000px;}
.x12_c00364{left:303.120000px;}
.x1d_c00364{left:323.280000px;}
.x11_c00364{left:324.720000px;}
.x6_c00364{left:335.520000px;}
.x1b_c00364{left:346.320000px;}
.x13_c00364{left:355.680000px;}
.x1e_c00364{left:367.200000px;}
.x7_c00364{left:378.000000px;}
.x2a_c00364{left:388.800000px;}
.x2f_c00364{left:390.240000px;}
.x14_c00364{left:399.600000px;}
.x1c_c00364{left:401.760000px;}
.x19_c00364{left:411.120000px;}
.x8_c00364{left:433.440000px;}
.x2b_c00364{left:442.080000px;}
.x15_c00364{left:443.520000px;}
.xc_c00364{left:465.120000px;}
.x30_c00364{left:475.920000px;}
.x2c_c00364{left:486.720000px;}
.x9_c00364{left:518.400000px;}
.xd_c00364{left:519.840000px;}
.x28_c00364{left:583.920000px;}
.x25_c00364{left:585.360000px;}
.x21_c00364{left:617.760000px;}
.x23_c00364{left:650.160000px;}
.x2d_c00364{left:658.800000px;}
.x26_c00364{left:660.960000px;}
.x20_c00364{left:675.360000px;}
.x27_c00364{left:691.920000px;}
.x22_c00364{left:693.360000px;}
.x24_c00364{left:713.520000px;}
@media print{
.v1_c00364{vertical-align:-2.560000pt;}
.v0_c00364{vertical-align:0.000000pt;}
.v2_c00364{vertical-align:10.240000pt;}
.ls1_c00364{letter-spacing:0.000000pt;}
.ls0_c00364{letter-spacing:74.006827pt;}
.ws2_c00364{word-spacing:0.000000pt;}
.ws1_c00364{word-spacing:6.053973pt;}
.ws0_c00364{word-spacing:8.422400pt;}
.fs7_c00364{font-size:30.720000pt;}
.fs8_c00364{font-size:33.280000pt;}
.fsf_c00364{font-size:35.840000pt;}
.fsb_c00364{font-size:40.960000pt;}
.fs2_c00364{font-size:43.520000pt;}
.fs1_c00364{font-size:46.080000pt;}
.fsc_c00364{font-size:48.640000pt;}
.fs9_c00364{font-size:51.200000pt;}
.fs0_c00364{font-size:53.760000pt;}
.fsd_c00364{font-size:56.320000pt;}
.fs6_c00364{font-size:58.880000pt;}
.fsa_c00364{font-size:61.440000pt;}
.fs4_c00364{font-size:64.000000pt;}
.fs5_c00364{font-size:66.560000pt;}
.fs3_c00364{font-size:69.120000pt;}
.fse_c00364{font-size:92.160000pt;}
.y0_c00364{bottom:0.000000pt;}
.y81_c00364{bottom:19.200000pt;}
.y7e_c00364{bottom:23.040000pt;}
.y7f_c00364{bottom:24.960000pt;}
.y7d_c00364{bottom:26.240000pt;}
.y80_c00364{bottom:26.880000pt;}
.y82_c00364{bottom:29.440000pt;}
.y79_c00364{bottom:61.440000pt;}
.y7b_c00364{bottom:62.080000pt;}
.y78_c00364{bottom:64.640000pt;}
.y7a_c00364{bottom:65.280000pt;}
.y7c_c00364{bottom:66.560000pt;}
.y75_c00364{bottom:100.480000pt;}
.y77_c00364{bottom:101.120000pt;}
.y74_c00364{bottom:103.680000pt;}
.y76_c00364{bottom:104.320000pt;}
.y70_c00364{bottom:139.520000pt;}
.y71_c00364{bottom:140.160000pt;}
.y6f_c00364{bottom:142.080000pt;}
.y73_c00364{bottom:142.720000pt;}
.y72_c00364{bottom:144.000000pt;}
.y69_c00364{bottom:177.920000pt;}
.y6b_c00364{bottom:178.560000pt;}
.y6a_c00364{bottom:179.200000pt;}
.y68_c00364{bottom:180.480000pt;}
.y6d_c00364{bottom:181.120000pt;}
.y6c_c00364{bottom:182.400000pt;}
.y6e_c00364{bottom:183.040000pt;}
.y65_c00364{bottom:211.200000pt;}
.y64_c00364{bottom:216.320000pt;}
.y62_c00364{bottom:219.520000pt;}
.y63_c00364{bottom:220.160000pt;}
.y67_c00364{bottom:220.800000pt;}
.y66_c00364{bottom:221.440000pt;}
.y3e_c00364{bottom:254.720000pt;}
.y3f_c00364{bottom:256.000000pt;}
.y60_c00364{bottom:256.640000pt;}
.y3d_c00364{bottom:257.280000pt;}
.y40_c00364{bottom:258.560000pt;}
.y61_c00364{bottom:259.200000pt;}
.y3a_c00364{bottom:293.120000pt;}
.y3c_c00364{bottom:293.760000pt;}
.y5e_c00364{bottom:294.400000pt;}
.y5f_c00364{bottom:295.040000pt;}
.y39_c00364{bottom:295.680000pt;}
.y3b_c00364{bottom:296.320000pt;}
.y36_c00364{bottom:330.880000pt;}
.y38_c00364{bottom:331.520000pt;}
.y5d_c00364{bottom:333.440000pt;}
.y35_c00364{bottom:334.080000pt;}
.y37_c00364{bottom:334.720000pt;}
.y34_c00364{bottom:369.920000pt;}
.y5b_c00364{bottom:371.200000pt;}
.y33_c00364{bottom:371.840000pt;}
.y5c_c00364{bottom:374.400000pt;}
.y30_c00364{bottom:408.320000pt;}
.y5a_c00364{bottom:409.600000pt;}
.y2f_c00364{bottom:410.240000pt;}
.y32_c00364{bottom:410.880000pt;}
.y31_c00364{bottom:411.520000pt;}
.y59_c00364{bottom:412.160000pt;}
.y58_c00364{bottom:412.800000pt;}
.y2e_c00364{bottom:446.720000pt;}
.y57_c00364{bottom:447.360000pt;}
.y2c_c00364{bottom:448.640000pt;}
.y55_c00364{bottom:449.280000pt;}
.y56_c00364{bottom:449.920000pt;}
.y2d_c00364{bottom:450.560000pt;}
.y29_c00364{bottom:485.760000pt;}
.y54_c00364{bottom:486.400000pt;}
.y28_c00364{bottom:487.040000pt;}
.y2a_c00364{bottom:488.320000pt;}
.y2b_c00364{bottom:488.960000pt;}
.y26_c00364{bottom:524.160000pt;}
.y27_c00364{bottom:524.800000pt;}
.y25_c00364{bottom:525.440000pt;}
.y52_c00364{bottom:526.080000pt;}
.y53_c00364{bottom:528.000000pt;}
.y24_c00364{bottom:563.200000pt;}
.y22_c00364{bottom:564.480000pt;}
.y51_c00364{bottom:565.120000pt;}
.y23_c00364{bottom:566.400000pt;}
.y20_c00364{bottom:600.960000pt;}
.y21_c00364{bottom:601.600000pt;}
.y1f_c00364{bottom:602.240000pt;}
.y4f_c00364{bottom:602.880000pt;}
.y4e_c00364{bottom:604.800000pt;}
.y50_c00364{bottom:605.440000pt;}
.y1d_c00364{bottom:640.000000pt;}
.y4d_c00364{bottom:640.640000pt;}
.y1c_c00364{bottom:641.280000pt;}
.y1e_c00364{bottom:643.200000pt;}
.y1a_c00364{bottom:678.400000pt;}
.y19_c00364{bottom:679.680000pt;}
.y4c_c00364{bottom:680.320000pt;}
.y1b_c00364{bottom:681.600000pt;}
.y16_c00364{bottom:716.160000pt;}
.y18_c00364{bottom:716.800000pt;}
.y17_c00364{bottom:717.440000pt;}
.y15_c00364{bottom:718.080000pt;}
.y4b_c00364{bottom:718.720000pt;}
.y12_c00364{bottom:754.560000pt;}
.y14_c00364{bottom:755.200000pt;}
.y49_c00364{bottom:755.840000pt;}
.y11_c00364{bottom:756.480000pt;}
.y13_c00364{bottom:757.760000pt;}
.y4a_c00364{bottom:758.400000pt;}
.ye_c00364{bottom:792.960000pt;}
.yd_c00364{bottom:793.600000pt;}
.y48_c00364{bottom:794.240000pt;}
.y47_c00364{bottom:795.520000pt;}
.yf_c00364{bottom:796.160000pt;}
.y10_c00364{bottom:796.800000pt;}
.yc_c00364{bottom:830.720000pt;}
.y46_c00364{bottom:831.360000pt;}
.ya_c00364{bottom:832.000000pt;}
.yb_c00364{bottom:834.560000pt;}
.y9_c00364{bottom:869.120000pt;}
.y7_c00364{bottom:869.760000pt;}
.y44_c00364{bottom:870.400000pt;}
.y43_c00364{bottom:871.040000pt;}
.y45_c00364{bottom:871.680000pt;}
.y42_c00364{bottom:872.320000pt;}
.y8_c00364{bottom:872.960000pt;}
.y6_c00364{bottom:906.880000pt;}
.y5_c00364{bottom:936.960000pt;}
.y1_c00364{bottom:937.600000pt;}
.y4_c00364{bottom:938.240000pt;}
.y3_c00364{bottom:939.520000pt;}
.y2_c00364{bottom:940.160000pt;}
.y41_c00364{bottom:980.480000pt;}
.h9_c00364{height:27.645000pt;}
.ha_c00364{height:29.948750pt;}
.h11_c00364{height:32.252500pt;}
.hd_c00364{height:36.860000pt;}
.h4_c00364{height:39.163750pt;}
.h3_c00364{height:41.467500pt;}
.he_c00364{height:43.771250pt;}
.hb_c00364{height:46.075000pt;}
.h2_c00364{height:48.378750pt;}
.hf_c00364{height:50.682500pt;}
.h8_c00364{height:52.986250pt;}
.hc_c00364{height:55.290000pt;}
.h6_c00364{height:57.593750pt;}
.h7_c00364{height:59.897500pt;}
.h5_c00364{height:62.201250pt;}
.h10_c00364{height:82.935000pt;}
.h1_c00364{height:1021.333333pt;}
.h0_c00364{height:1021.440000pt;}
.w0_c00364{width:689.280000pt;}
.w1_c00364{width:689.333333pt;}
.x0_c00364{left:0.000000pt;}
.x1_c00364{left:56.960000pt;}
.x1f_c00364{left:58.240000pt;}
.x2e_c00364{left:59.520000pt;}
.x16_c00364{left:123.520000pt;}
.x2_c00364{left:124.800000pt;}
.xa_c00364{left:153.600000pt;}
.x3_c00364{left:163.200000pt;}
.x17_c00364{left:164.480000pt;}
.x1a_c00364{left:184.320000pt;}
.xb_c00364{left:192.000000pt;}
.xe_c00364{left:209.920000pt;}
.x4_c00364{left:211.200000pt;}
.x18_c00364{left:212.480000pt;}
.x10_c00364{left:240.000000pt;}
.xf_c00364{left:250.240000pt;}
.x29_c00364{left:251.520000pt;}
.x5_c00364{left:259.200000pt;}
.x12_c00364{left:269.440000pt;}
.x1d_c00364{left:287.360000pt;}
.x11_c00364{left:288.640000pt;}
.x6_c00364{left:298.240000pt;}
.x1b_c00364{left:307.840000pt;}
.x13_c00364{left:316.160000pt;}
.x1e_c00364{left:326.400000pt;}
.x7_c00364{left:336.000000pt;}
.x2a_c00364{left:345.600000pt;}
.x2f_c00364{left:346.880000pt;}
.x14_c00364{left:355.200000pt;}
.x1c_c00364{left:357.120000pt;}
.x19_c00364{left:365.440000pt;}
.x8_c00364{left:385.280000pt;}
.x2b_c00364{left:392.960000pt;}
.x15_c00364{left:394.240000pt;}
.xc_c00364{left:413.440000pt;}
.x30_c00364{left:423.040000pt;}
.x2c_c00364{left:432.640000pt;}
.x9_c00364{left:460.800000pt;}
.xd_c00364{left:462.080000pt;}
.x28_c00364{left:519.040000pt;}
.x25_c00364{left:520.320000pt;}
.x21_c00364{left:549.120000pt;}
.x23_c00364{left:577.920000pt;}
.x2d_c00364{left:585.600000pt;}
.x26_c00364{left:587.520000pt;}
.x20_c00364{left:600.320000pt;}
.x27_c00364{left:615.040000pt;}
.x22_c00364{left:616.320000pt;}
.x24_c00364{left:634.240000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3333c71a76920061167d7109.woff2')format("woff");}.ff1_c00365{font-family:ff1_c00365;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m42_c00365{transform:matrix(0.165075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165075,0.000000,0.000000,0.250000,0,0);}
.m21_c00365{transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);}
.m43_c00365{transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);}
.m50_c00365{transform:matrix(0.201675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201675,0.000000,0.000000,0.250000,0,0);}
.m4d_c00365{transform:matrix(0.220425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220425,0.000000,0.000000,0.250000,0,0);}
.m47_c00365{transform:matrix(0.222100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222100,0.000000,0.000000,0.250000,0,0);}
.m45_c00365{transform:matrix(0.228025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228025,0.000000,0.000000,0.250000,0,0);}
.m1c_c00365{transform:matrix(0.229950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229950,0.000000,0.000000,0.250000,0,0);}
.m4b_c00365{transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);}
.m32_c00365{transform:matrix(0.236550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236550,0.000000,0.000000,0.250000,0,0);}
.m25_c00365{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m39_c00365{transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);}
.m22_c00365{transform:matrix(0.248350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248350,0.000000,0.000000,0.250000,0,0);}
.m46_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);}
.m6_c00365{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m8_c00365{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m2_c00365{transform:matrix(0.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_c00365{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m16_c00365{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m7_c00365{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);}
.m41_c00365{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00365{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m29_c00365{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mc_c00365{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00365{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m26_c00365{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mb_c00365{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m4_c00365{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m38_c00365{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00365{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.ma_c00365{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m20_c00365{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00365{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m40_c00365{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m5_c00365{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m33_c00365{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m13_c00365{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mf_c00365{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00365{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);}
.m24_c00365{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00365{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m36_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);}
.m2f_c00365{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);}
.m3a_c00365{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);}
.m3f_c00365{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m49_c00365{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);}
.m30_c00365{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m34_c00365{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00365{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);}
.m44_c00365{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);}
.m0_c00365{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m12_c00365{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);}
.m4c_c00365{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);}
.m28_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);}
.m2b_c00365{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m15_c00365{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m1_c00365{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m27_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);}
.m31_c00365{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);}
.m48_c00365{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00365{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);}
.m4a_c00365{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00365{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m51_c00365{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.me_c00365{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);}
.m37_c00365{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m35_c00365{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m23_c00365{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);}
.m2a_c00365{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00365{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);}
.m11_c00365{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);}
.m3_c00365{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00365{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);}
.m10_c00365{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00365{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m14_c00365{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00365{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m18_c00365{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m17_c00365{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m9_c00365{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00365{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m19_c00365{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.v0_c00365{vertical-align:0.000000px;}
.ls0_c00365{letter-spacing:0.000000px;}
.sc__c00365{text-shadow:none;}
.sc0_c00365{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00365{-webkit-text-stroke:0px transparent;}
.sc0_c00365{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00365{word-spacing:0.000000px;}
.fc0_c00365{color:transparent;}
.fs6_c00365{font-size:34.560000px;}
.fs8_c00365{font-size:37.440000px;}
.fsc_c00365{font-size:40.320000px;}
.fsb_c00365{font-size:46.080000px;}
.fs9_c00365{font-size:48.960000px;}
.fs3_c00365{font-size:51.840000px;}
.fs4_c00365{font-size:54.720000px;}
.fs1_c00365{font-size:57.600000px;}
.fs7_c00365{font-size:60.480000px;}
.fsf_c00365{font-size:63.360000px;}
.fsa_c00365{font-size:66.240000px;}
.fs5_c00365{font-size:69.120000px;}
.fs0_c00365{font-size:72.000000px;}
.fs2_c00365{font-size:74.880000px;}
.fsd_c00365{font-size:77.760000px;}
.fse_c00365{font-size:103.680000px;}
.y0_c00365{bottom:0.000000px;}
.y88_c00365{bottom:28.080000px;}
.y86_c00365{bottom:28.800000px;}
.y87_c00365{bottom:30.960000px;}
.y80_c00365{bottom:59.040000px;}
.y85_c00365{bottom:59.760000px;}
.y81_c00365{bottom:60.480000px;}
.y83_c00365{bottom:61.200000px;}
.y82_c00365{bottom:61.920000px;}
.y7f_c00365{bottom:62.640000px;}
.y84_c00365{bottom:63.360000px;}
.y7a_c00365{bottom:102.240000px;}
.y7b_c00365{bottom:102.960000px;}
.y7d_c00365{bottom:103.680000px;}
.y7c_c00365{bottom:104.400000px;}
.y79_c00365{bottom:106.560000px;}
.y7e_c00365{bottom:107.280000px;}
.y73_c00365{bottom:145.440000px;}
.y75_c00365{bottom:146.160000px;}
.y74_c00365{bottom:146.880000px;}
.y77_c00365{bottom:148.320000px;}
.y76_c00365{bottom:149.040000px;}
.y72_c00365{bottom:149.760000px;}
.y78_c00365{bottom:150.480000px;}
.y6f_c00365{bottom:188.640000px;}
.y71_c00365{bottom:189.360000px;}
.y70_c00365{bottom:190.080000px;}
.y6e_c00365{bottom:192.240000px;}
.y6b_c00365{bottom:231.840000px;}
.y6c_c00365{bottom:232.560000px;}
.y6d_c00365{bottom:233.280000px;}
.y6a_c00365{bottom:235.440000px;}
.y67_c00365{bottom:275.040000px;}
.y68_c00365{bottom:275.760000px;}
.y69_c00365{bottom:276.480000px;}
.y65_c00365{bottom:278.640000px;}
.y66_c00365{bottom:279.360000px;}
.y61_c00365{bottom:318.240000px;}
.y64_c00365{bottom:318.960000px;}
.y63_c00365{bottom:319.680000px;}
.y60_c00365{bottom:321.840000px;}
.y62_c00365{bottom:322.560000px;}
.y5e_c00365{bottom:354.960000px;}
.y5a_c00365{bottom:361.440000px;}
.y5d_c00365{bottom:362.160000px;}
.y5f_c00365{bottom:362.880000px;}
.y5c_c00365{bottom:363.600000px;}
.y59_c00365{bottom:365.040000px;}
.y5b_c00365{bottom:365.760000px;}
.y4e_c00365{bottom:404.640000px;}
.y51_c00365{bottom:405.360000px;}
.y58_c00365{bottom:406.080000px;}
.y4d_c00365{bottom:407.520000px;}
.y50_c00365{bottom:408.240000px;}
.y4f_c00365{bottom:408.960000px;}
.y57_c00365{bottom:409.680000px;}
.y4b_c00365{bottom:448.560000px;}
.y56_c00365{bottom:449.280000px;}
.y4a_c00365{bottom:450.720000px;}
.y55_c00365{bottom:451.440000px;}
.y4c_c00365{bottom:452.160000px;}
.y47_c00365{bottom:491.760000px;}
.y53_c00365{bottom:493.200000px;}
.y46_c00365{bottom:493.920000px;}
.y54_c00365{bottom:494.640000px;}
.y49_c00365{bottom:495.360000px;}
.y48_c00365{bottom:496.080000px;}
.y45_c00365{bottom:535.680000px;}
.y44_c00365{bottom:539.280000px;}
.y41_c00365{bottom:567.360000px;}
.y43_c00365{bottom:568.080000px;}
.y40_c00365{bottom:569.520000px;}
.y42_c00365{bottom:570.960000px;}
.y52_c00365{bottom:571.680000px;}
.y3f_c00365{bottom:610.560000px;}
.y3e_c00365{bottom:611.280000px;}
.y3c_c00365{bottom:612.000000px;}
.y3d_c00365{bottom:614.160000px;}
.y38_c00365{bottom:642.960000px;}
.y37_c00365{bottom:644.400000px;}
.y3a_c00365{bottom:645.120000px;}
.y3b_c00365{bottom:645.840000px;}
.y39_c00365{bottom:646.560000px;}
.y36_c00365{bottom:684.720000px;}
.y31_c00365{bottom:686.160000px;}
.y34_c00365{bottom:686.880000px;}
.y30_c00365{bottom:687.600000px;}
.y35_c00365{bottom:688.320000px;}
.y32_c00365{bottom:689.040000px;}
.y33_c00365{bottom:689.760000px;}
.y2f_c00365{bottom:727.920000px;}
.y2d_c00365{bottom:729.360000px;}
.y2b_c00365{bottom:730.080000px;}
.y2e_c00365{bottom:731.520000px;}
.y2c_c00365{bottom:732.240000px;}
.y28_c00365{bottom:761.040000px;}
.y27_c00365{bottom:761.760000px;}
.y26_c00365{bottom:762.480000px;}
.y2a_c00365{bottom:763.200000px;}
.y29_c00365{bottom:764.640000px;}
.y25_c00365{bottom:803.520000px;}
.y23_c00365{bottom:805.680000px;}
.y24_c00365{bottom:807.840000px;}
.y1f_c00365{bottom:836.640000px;}
.y22_c00365{bottom:837.360000px;}
.y20_c00365{bottom:838.080000px;}
.y1e_c00365{bottom:838.800000px;}
.y21_c00365{bottom:839.520000px;}
.y1c_c00365{bottom:879.120000px;}
.y1d_c00365{bottom:879.840000px;}
.y19_c00365{bottom:880.560000px;}
.y17_c00365{bottom:881.280000px;}
.y1b_c00365{bottom:882.720000px;}
.y18_c00365{bottom:883.440000px;}
.y1a_c00365{bottom:884.160000px;}
.y14_c00365{bottom:922.320000px;}
.y12_c00365{bottom:923.040000px;}
.y15_c00365{bottom:923.760000px;}
.y11_c00365{bottom:924.480000px;}
.y16_c00365{bottom:925.200000px;}
.y13_c00365{bottom:927.360000px;}
.yd_c00365{bottom:966.240000px;}
.yc_c00365{bottom:966.960000px;}
.y10_c00365{bottom:967.680000px;}
.ye_c00365{bottom:969.120000px;}
.yf_c00365{bottom:969.840000px;}
.ya_c00365{bottom:1008.720000px;}
.y7_c00365{bottom:1009.440000px;}
.y6_c00365{bottom:1010.160000px;}
.yb_c00365{bottom:1010.880000px;}
.y8_c00365{bottom:1013.040000px;}
.y9_c00365{bottom:1013.760000px;}
.y5_c00365{bottom:1051.920000px;}
.y3_c00365{bottom:1053.360000px;}
.y2_c00365{bottom:1054.080000px;}
.y4_c00365{bottom:1056.240000px;}
.y1_c00365{bottom:1099.440000px;}
.h8_c00365{height:31.100625px;}
.ha_c00365{height:33.692344px;}
.he_c00365{height:36.284062px;}
.hd_c00365{height:41.467500px;}
.hb_c00365{height:44.059219px;}
.h5_c00365{height:46.650937px;}
.h6_c00365{height:49.242656px;}
.h3_c00365{height:51.834375px;}
.h9_c00365{height:54.426094px;}
.h11_c00365{height:57.017812px;}
.hc_c00365{height:59.609531px;}
.h7_c00365{height:62.201250px;}
.h2_c00365{height:64.792969px;}
.h4_c00365{height:67.384687px;}
.hf_c00365{height:69.976406px;}
.h10_c00365{height:93.301875px;}
.h1_c00365{height:1147.500000px;}
.h0_c00365{height:1147.680000px;}
.w1_c00365{width:773.250000px;}
.w0_c00365{width:773.280000px;}
.x0_c00365{left:0.000000px;}
.x2_c00365{left:60.480000px;}
.x46_c00365{left:132.480000px;}
.x20_c00365{left:133.920000px;}
.x3_c00365{left:136.080000px;}
.x34_c00365{left:144.000000px;}
.x13_c00365{left:168.480000px;}
.x4b_c00365{left:175.680000px;}
.x29_c00365{left:177.120000px;}
.x1b_c00365{left:178.560000px;}
.x3b_c00365{left:180.000000px;}
.x10_c00365{left:190.080000px;}
.x27_c00365{left:198.720000px;}
.x24_c00365{left:231.120000px;}
.x9_c00365{left:233.280000px;}
.x2a_c00365{left:241.920000px;}
.x22_c00365{left:243.360000px;}
.x11_c00365{left:244.800000px;}
.x35_c00365{left:253.440000px;}
.x40_c00365{left:263.520000px;}
.x28_c00365{left:275.040000px;}
.x4_c00365{left:276.480000px;}
.xc_c00365{left:285.840000px;}
.xa_c00365{left:288.000000px;}
.x3c_c00365{left:296.640000px;}
.x23_c00365{left:298.080000px;}
.x36_c00365{left:306.720000px;}
.x3e_c00365{left:317.520000px;}
.x1c_c00365{left:318.960000px;}
.x5_c00365{left:330.480000px;}
.x12_c00365{left:340.560000px;}
.x37_c00365{left:350.640000px;}
.x47_c00365{left:370.800000px;}
.x25_c00365{left:372.240000px;}
.x1d_c00365{left:373.680000px;}
.x14_c00365{left:383.760000px;}
.xd_c00365{left:385.200000px;}
.x41_c00365{left:403.920000px;}
.x32_c00365{left:414.720000px;}
.x18_c00365{left:416.880000px;}
.x43_c00365{left:425.520000px;}
.xe_c00365{left:427.680000px;}
.x38_c00365{left:436.320000px;}
.x15_c00365{left:438.480000px;}
.x42_c00365{left:447.120000px;}
.x48_c00365{left:468.720000px;}
.x21_c00365{left:470.160000px;}
.x19_c00365{left:471.600000px;}
.x44_c00365{left:479.520000px;}
.x16_c00365{left:481.680000px;}
.x2b_c00365{left:490.320000px;}
.x49_c00365{left:511.200000px;}
.x1e_c00365{left:512.640000px;}
.x1a_c00365{left:514.080000px;}
.x45_c00365{left:522.000000px;}
.x26_c00365{left:524.160000px;}
.x39_c00365{left:533.520000px;}
.x2c_c00365{left:534.960000px;}
.x1f_c00365{left:557.280000px;}
.x33_c00365{left:566.640000px;}
.x3d_c00365{left:577.440000px;}
.x17_c00365{left:578.880000px;}
.x4a_c00365{left:610.560000px;}
.x2d_c00365{left:612.000000px;}
.x6_c00365{left:613.440000px;}
.x30_c00365{left:643.680000px;}
.xf_c00365{left:645.840000px;}
.x3f_c00365{left:653.760000px;}
.x2e_c00365{left:655.200000px;}
.x7_c00365{left:656.640000px;}
.x1_c00365{left:680.400000px;}
.x2f_c00365{left:687.600000px;}
.x8_c00365{left:689.040000px;}
.x3a_c00365{left:697.680000px;}
.x31_c00365{left:707.760000px;}
.xb_c00365{left:709.200000px;}
@media print{
.v0_c00365{vertical-align:0.000000pt;}
.ls0_c00365{letter-spacing:0.000000pt;}
.ws0_c00365{word-spacing:0.000000pt;}
.fs6_c00365{font-size:30.720000pt;}
.fs8_c00365{font-size:33.280000pt;}
.fsc_c00365{font-size:35.840000pt;}
.fsb_c00365{font-size:40.960000pt;}
.fs9_c00365{font-size:43.520000pt;}
.fs3_c00365{font-size:46.080000pt;}
.fs4_c00365{font-size:48.640000pt;}
.fs1_c00365{font-size:51.200000pt;}
.fs7_c00365{font-size:53.760000pt;}
.fsf_c00365{font-size:56.320000pt;}
.fsa_c00365{font-size:58.880000pt;}
.fs5_c00365{font-size:61.440000pt;}
.fs0_c00365{font-size:64.000000pt;}
.fs2_c00365{font-size:66.560000pt;}
.fsd_c00365{font-size:69.120000pt;}
.fse_c00365{font-size:92.160000pt;}
.y0_c00365{bottom:0.000000pt;}
.y88_c00365{bottom:24.960000pt;}
.y86_c00365{bottom:25.600000pt;}
.y87_c00365{bottom:27.520000pt;}
.y80_c00365{bottom:52.480000pt;}
.y85_c00365{bottom:53.120000pt;}
.y81_c00365{bottom:53.760000pt;}
.y83_c00365{bottom:54.400000pt;}
.y82_c00365{bottom:55.040000pt;}
.y7f_c00365{bottom:55.680000pt;}
.y84_c00365{bottom:56.320000pt;}
.y7a_c00365{bottom:90.880000pt;}
.y7b_c00365{bottom:91.520000pt;}
.y7d_c00365{bottom:92.160000pt;}
.y7c_c00365{bottom:92.800000pt;}
.y79_c00365{bottom:94.720000pt;}
.y7e_c00365{bottom:95.360000pt;}
.y73_c00365{bottom:129.280000pt;}
.y75_c00365{bottom:129.920000pt;}
.y74_c00365{bottom:130.560000pt;}
.y77_c00365{bottom:131.840000pt;}
.y76_c00365{bottom:132.480000pt;}
.y72_c00365{bottom:133.120000pt;}
.y78_c00365{bottom:133.760000pt;}
.y6f_c00365{bottom:167.680000pt;}
.y71_c00365{bottom:168.320000pt;}
.y70_c00365{bottom:168.960000pt;}
.y6e_c00365{bottom:170.880000pt;}
.y6b_c00365{bottom:206.080000pt;}
.y6c_c00365{bottom:206.720000pt;}
.y6d_c00365{bottom:207.360000pt;}
.y6a_c00365{bottom:209.280000pt;}
.y67_c00365{bottom:244.480000pt;}
.y68_c00365{bottom:245.120000pt;}
.y69_c00365{bottom:245.760000pt;}
.y65_c00365{bottom:247.680000pt;}
.y66_c00365{bottom:248.320000pt;}
.y61_c00365{bottom:282.880000pt;}
.y64_c00365{bottom:283.520000pt;}
.y63_c00365{bottom:284.160000pt;}
.y60_c00365{bottom:286.080000pt;}
.y62_c00365{bottom:286.720000pt;}
.y5e_c00365{bottom:315.520000pt;}
.y5a_c00365{bottom:321.280000pt;}
.y5d_c00365{bottom:321.920000pt;}
.y5f_c00365{bottom:322.560000pt;}
.y5c_c00365{bottom:323.200000pt;}
.y59_c00365{bottom:324.480000pt;}
.y5b_c00365{bottom:325.120000pt;}
.y4e_c00365{bottom:359.680000pt;}
.y51_c00365{bottom:360.320000pt;}
.y58_c00365{bottom:360.960000pt;}
.y4d_c00365{bottom:362.240000pt;}
.y50_c00365{bottom:362.880000pt;}
.y4f_c00365{bottom:363.520000pt;}
.y57_c00365{bottom:364.160000pt;}
.y4b_c00365{bottom:398.720000pt;}
.y56_c00365{bottom:399.360000pt;}
.y4a_c00365{bottom:400.640000pt;}
.y55_c00365{bottom:401.280000pt;}
.y4c_c00365{bottom:401.920000pt;}
.y47_c00365{bottom:437.120000pt;}
.y53_c00365{bottom:438.400000pt;}
.y46_c00365{bottom:439.040000pt;}
.y54_c00365{bottom:439.680000pt;}
.y49_c00365{bottom:440.320000pt;}
.y48_c00365{bottom:440.960000pt;}
.y45_c00365{bottom:476.160000pt;}
.y44_c00365{bottom:479.360000pt;}
.y41_c00365{bottom:504.320000pt;}
.y43_c00365{bottom:504.960000pt;}
.y40_c00365{bottom:506.240000pt;}
.y42_c00365{bottom:507.520000pt;}
.y52_c00365{bottom:508.160000pt;}
.y3f_c00365{bottom:542.720000pt;}
.y3e_c00365{bottom:543.360000pt;}
.y3c_c00365{bottom:544.000000pt;}
.y3d_c00365{bottom:545.920000pt;}
.y38_c00365{bottom:571.520000pt;}
.y37_c00365{bottom:572.800000pt;}
.y3a_c00365{bottom:573.440000pt;}
.y3b_c00365{bottom:574.080000pt;}
.y39_c00365{bottom:574.720000pt;}
.y36_c00365{bottom:608.640000pt;}
.y31_c00365{bottom:609.920000pt;}
.y34_c00365{bottom:610.560000pt;}
.y30_c00365{bottom:611.200000pt;}
.y35_c00365{bottom:611.840000pt;}
.y32_c00365{bottom:612.480000pt;}
.y33_c00365{bottom:613.120000pt;}
.y2f_c00365{bottom:647.040000pt;}
.y2d_c00365{bottom:648.320000pt;}
.y2b_c00365{bottom:648.960000pt;}
.y2e_c00365{bottom:650.240000pt;}
.y2c_c00365{bottom:650.880000pt;}
.y28_c00365{bottom:676.480000pt;}
.y27_c00365{bottom:677.120000pt;}
.y26_c00365{bottom:677.760000pt;}
.y2a_c00365{bottom:678.400000pt;}
.y29_c00365{bottom:679.680000pt;}
.y25_c00365{bottom:714.240000pt;}
.y23_c00365{bottom:716.160000pt;}
.y24_c00365{bottom:718.080000pt;}
.y1f_c00365{bottom:743.680000pt;}
.y22_c00365{bottom:744.320000pt;}
.y20_c00365{bottom:744.960000pt;}
.y1e_c00365{bottom:745.600000pt;}
.y21_c00365{bottom:746.240000pt;}
.y1c_c00365{bottom:781.440000pt;}
.y1d_c00365{bottom:782.080000pt;}
.y19_c00365{bottom:782.720000pt;}
.y17_c00365{bottom:783.360000pt;}
.y1b_c00365{bottom:784.640000pt;}
.y18_c00365{bottom:785.280000pt;}
.y1a_c00365{bottom:785.920000pt;}
.y14_c00365{bottom:819.840000pt;}
.y12_c00365{bottom:820.480000pt;}
.y15_c00365{bottom:821.120000pt;}
.y11_c00365{bottom:821.760000pt;}
.y16_c00365{bottom:822.400000pt;}
.y13_c00365{bottom:824.320000pt;}
.yd_c00365{bottom:858.880000pt;}
.yc_c00365{bottom:859.520000pt;}
.y10_c00365{bottom:860.160000pt;}
.ye_c00365{bottom:861.440000pt;}
.yf_c00365{bottom:862.080000pt;}
.ya_c00365{bottom:896.640000pt;}
.y7_c00365{bottom:897.280000pt;}
.y6_c00365{bottom:897.920000pt;}
.yb_c00365{bottom:898.560000pt;}
.y8_c00365{bottom:900.480000pt;}
.y9_c00365{bottom:901.120000pt;}
.y5_c00365{bottom:935.040000pt;}
.y3_c00365{bottom:936.320000pt;}
.y2_c00365{bottom:936.960000pt;}
.y4_c00365{bottom:938.880000pt;}
.y1_c00365{bottom:977.280000pt;}
.h8_c00365{height:27.645000pt;}
.ha_c00365{height:29.948750pt;}
.he_c00365{height:32.252500pt;}
.hd_c00365{height:36.860000pt;}
.hb_c00365{height:39.163750pt;}
.h5_c00365{height:41.467500pt;}
.h6_c00365{height:43.771250pt;}
.h3_c00365{height:46.075000pt;}
.h9_c00365{height:48.378750pt;}
.h11_c00365{height:50.682500pt;}
.hc_c00365{height:52.986250pt;}
.h7_c00365{height:55.290000pt;}
.h2_c00365{height:57.593750pt;}
.h4_c00365{height:59.897500pt;}
.hf_c00365{height:62.201250pt;}
.h10_c00365{height:82.935000pt;}
.h1_c00365{height:1020.000000pt;}
.h0_c00365{height:1020.160000pt;}
.w1_c00365{width:687.333333pt;}
.w0_c00365{width:687.360000pt;}
.x0_c00365{left:0.000000pt;}
.x2_c00365{left:53.760000pt;}
.x46_c00365{left:117.760000pt;}
.x20_c00365{left:119.040000pt;}
.x3_c00365{left:120.960000pt;}
.x34_c00365{left:128.000000pt;}
.x13_c00365{left:149.760000pt;}
.x4b_c00365{left:156.160000pt;}
.x29_c00365{left:157.440000pt;}
.x1b_c00365{left:158.720000pt;}
.x3b_c00365{left:160.000000pt;}
.x10_c00365{left:168.960000pt;}
.x27_c00365{left:176.640000pt;}
.x24_c00365{left:205.440000pt;}
.x9_c00365{left:207.360000pt;}
.x2a_c00365{left:215.040000pt;}
.x22_c00365{left:216.320000pt;}
.x11_c00365{left:217.600000pt;}
.x35_c00365{left:225.280000pt;}
.x40_c00365{left:234.240000pt;}
.x28_c00365{left:244.480000pt;}
.x4_c00365{left:245.760000pt;}
.xc_c00365{left:254.080000pt;}
.xa_c00365{left:256.000000pt;}
.x3c_c00365{left:263.680000pt;}
.x23_c00365{left:264.960000pt;}
.x36_c00365{left:272.640000pt;}
.x3e_c00365{left:282.240000pt;}
.x1c_c00365{left:283.520000pt;}
.x5_c00365{left:293.760000pt;}
.x12_c00365{left:302.720000pt;}
.x37_c00365{left:311.680000pt;}
.x47_c00365{left:329.600000pt;}
.x25_c00365{left:330.880000pt;}
.x1d_c00365{left:332.160000pt;}
.x14_c00365{left:341.120000pt;}
.xd_c00365{left:342.400000pt;}
.x41_c00365{left:359.040000pt;}
.x32_c00365{left:368.640000pt;}
.x18_c00365{left:370.560000pt;}
.x43_c00365{left:378.240000pt;}
.xe_c00365{left:380.160000pt;}
.x38_c00365{left:387.840000pt;}
.x15_c00365{left:389.760000pt;}
.x42_c00365{left:397.440000pt;}
.x48_c00365{left:416.640000pt;}
.x21_c00365{left:417.920000pt;}
.x19_c00365{left:419.200000pt;}
.x44_c00365{left:426.240000pt;}
.x16_c00365{left:428.160000pt;}
.x2b_c00365{left:435.840000pt;}
.x49_c00365{left:454.400000pt;}
.x1e_c00365{left:455.680000pt;}
.x1a_c00365{left:456.960000pt;}
.x45_c00365{left:464.000000pt;}
.x26_c00365{left:465.920000pt;}
.x39_c00365{left:474.240000pt;}
.x2c_c00365{left:475.520000pt;}
.x1f_c00365{left:495.360000pt;}
.x33_c00365{left:503.680000pt;}
.x3d_c00365{left:513.280000pt;}
.x17_c00365{left:514.560000pt;}
.x4a_c00365{left:542.720000pt;}
.x2d_c00365{left:544.000000pt;}
.x6_c00365{left:545.280000pt;}
.x30_c00365{left:572.160000pt;}
.xf_c00365{left:574.080000pt;}
.x3f_c00365{left:581.120000pt;}
.x2e_c00365{left:582.400000pt;}
.x7_c00365{left:583.680000pt;}
.x1_c00365{left:604.800000pt;}
.x2f_c00365{left:611.200000pt;}
.x8_c00365{left:612.480000pt;}
.x3a_c00365{left:620.160000pt;}
.x31_c00365{left:629.120000pt;}
.xb_c00365{left:630.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6154e49b8b061ca7761eaf22.woff2')format("woff");}.ff1_c00366{font-family:ff1_c00366;line-height:1.109863;font-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_c00366{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m4d_c00366{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m49_c00366{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m2c_c00366{transform:matrix(0.238300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238300,0.000000,0.000000,0.250000,0,0);}
.m4e_c00366{transform:matrix(0.238700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238700,0.000000,0.000000,0.250000,0,0);}
.m1e_c00366{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m2_c00366{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_c00366{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);}
.m25_c00366{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);}
.m39_c00366{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m12_c00366{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);}
.m3f_c00366{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m7_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);}
.m3d_c00366{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m10_c00366{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m43_c00366{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m5_c00366{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00366{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m31_c00366{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.me_c00366{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00366{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m15_c00366{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.ma_c00366{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m47_c00366{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m41_c00366{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m32_c00366{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m50_c00366{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m8_c00366{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m35_c00366{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m24_c00366{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00366{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00366{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00366{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);}
.m45_c00366{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m6_c00366{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m19_c00366{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);}
.m3e_c00366{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);}
.m34_c00366{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m0_c00366{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m13_c00366{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1_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);}
.m30_c00366{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00366{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);}
.m37_c00366{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m44_c00366{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m22_c00366{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m9_c00366{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m20_c00366{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);}
.m28_c00366{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);}
.m4_c00366{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m11_c00366{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m23_c00366{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);}
.m2b_c00366{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);}
.m17_c00366{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);}
.m14_c00366{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m29_c00366{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00366{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);}
.m3c_c00366{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00366{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m33_c00366{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);}
.m42_c00366{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m36_c00366{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00366{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00366{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00366{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m16_c00366{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);}
.mb_c00366{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m46_c00366{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00366{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);}
.mf_c00366{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);}
.m3_c00366{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m21_c00366{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);}
.m27_c00366{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00366{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);}
.m40_c00366{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00366{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.mc_c00366{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m38_c00366{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m26_c00366{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);}
.m48_c00366{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.md_c00366{transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);}
.v0_c00366{vertical-align:0.000000px;}
.v1_c00366{vertical-align:5.760000px;}
.v2_c00366{vertical-align:14.400000px;}
.ls0_c00366{letter-spacing:0.000000px;}
.sc__c00366{text-shadow:none;}
.sc0_c00366{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00366{-webkit-text-stroke:0px transparent;}
.sc0_c00366{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00366{word-spacing:0.000000px;}
.ws0_c00366{word-spacing:490.208640px;}
.ws1_c00366{word-spacing:725.111280px;}
.fc0_c00366{color:transparent;}
.fs9_c00366{font-size:34.560000px;}
.fse_c00366{font-size:37.440000px;}
.fsa_c00366{font-size:40.320000px;}
.fsf_c00366{font-size:43.200000px;}
.fs3_c00366{font-size:46.080000px;}
.fs6_c00366{font-size:48.960000px;}
.fs4_c00366{font-size:51.840000px;}
.fsb_c00366{font-size:54.720000px;}
.fsc_c00366{font-size:57.600000px;}
.fs7_c00366{font-size:60.480000px;}
.fs1_c00366{font-size:63.360000px;}
.fsd_c00366{font-size:66.240000px;}
.fs5_c00366{font-size:69.120000px;}
.fs8_c00366{font-size:72.000000px;}
.fs2_c00366{font-size:74.880000px;}
.fs0_c00366{font-size:77.760000px;}
.y0_c00366{bottom:0.000000px;}
.y85_c00366{bottom:36.000000px;}
.y86_c00366{bottom:36.720000px;}
.y88_c00366{bottom:39.600000px;}
.y87_c00366{bottom:40.320000px;}
.y84_c00366{bottom:41.040000px;}
.y7f_c00366{bottom:79.200000px;}
.y80_c00366{bottom:79.920000px;}
.y81_c00366{bottom:82.800000px;}
.y7e_c00366{bottom:83.520000px;}
.y83_c00366{bottom:84.240000px;}
.y82_c00366{bottom:84.960000px;}
.y79_c00366{bottom:122.400000px;}
.y7a_c00366{bottom:123.840000px;}
.y78_c00366{bottom:126.720000px;}
.y7c_c00366{bottom:127.440000px;}
.y7b_c00366{bottom:128.160000px;}
.y7d_c00366{bottom:129.600000px;}
.y73_c00366{bottom:165.600000px;}
.y75_c00366{bottom:166.320000px;}
.y74_c00366{bottom:167.760000px;}
.y76_c00366{bottom:168.480000px;}
.y72_c00366{bottom:169.200000px;}
.y77_c00366{bottom:172.800000px;}
.y6d_c00366{bottom:209.520000px;}
.y71_c00366{bottom:211.680000px;}
.y6c_c00366{bottom:212.400000px;}
.y6e_c00366{bottom:213.120000px;}
.y6f_c00366{bottom:213.840000px;}
.y70_c00366{bottom:215.280000px;}
.y67_c00366{bottom:252.720000px;}
.y66_c00366{bottom:254.880000px;}
.y68_c00366{bottom:255.600000px;}
.y69_c00366{bottom:256.320000px;}
.y6a_c00366{bottom:257.040000px;}
.y6b_c00366{bottom:258.480000px;}
.y60_c00366{bottom:295.200000px;}
.y62_c00366{bottom:295.920000px;}
.y65_c00366{bottom:298.080000px;}
.y61_c00366{bottom:298.800000px;}
.y5f_c00366{bottom:299.520000px;}
.y64_c00366{bottom:300.960000px;}
.y63_c00366{bottom:301.680000px;}
.y5e_c00366{bottom:333.360000px;}
.y59_c00366{bottom:339.120000px;}
.y5a_c00366{bottom:339.840000px;}
.y5c_c00366{bottom:340.560000px;}
.y5d_c00366{bottom:341.280000px;}
.y58_c00366{bottom:342.000000px;}
.y5b_c00366{bottom:342.720000px;}
.y4c_c00366{bottom:382.320000px;}
.y50_c00366{bottom:383.040000px;}
.y4e_c00366{bottom:383.760000px;}
.y52_c00366{bottom:384.480000px;}
.y4b_c00366{bottom:385.200000px;}
.y4d_c00366{bottom:385.920000px;}
.y4f_c00366{bottom:386.640000px;}
.y51_c00366{bottom:387.360000px;}
.y4a_c00366{bottom:424.800000px;}
.y49_c00366{bottom:428.400000px;}
.y48_c00366{bottom:429.120000px;}
.y45_c00366{bottom:457.920000px;}
.y46_c00366{bottom:458.640000px;}
.y53_c00366{bottom:460.080000px;}
.y44_c00366{bottom:460.800000px;}
.y47_c00366{bottom:461.520000px;}
.y55_c00366{bottom:500.400000px;}
.y57_c00366{bottom:501.840000px;}
.y56_c00366{bottom:502.560000px;}
.y54_c00366{bottom:503.280000px;}
.y42_c00366{bottom:544.320000px;}
.y41_c00366{bottom:545.040000px;}
.y43_c00366{bottom:546.480000px;}
.y3e_c00366{bottom:598.320000px;}
.y3f_c00366{bottom:599.040000px;}
.y3d_c00366{bottom:599.760000px;}
.y40_c00366{bottom:600.480000px;}
.y39_c00366{bottom:640.800000px;}
.y3b_c00366{bottom:641.520000px;}
.y3c_c00366{bottom:642.240000px;}
.y38_c00366{bottom:642.960000px;}
.y3a_c00366{bottom:644.400000px;}
.y35_c00366{bottom:684.720000px;}
.y36_c00366{bottom:685.440000px;}
.y33_c00366{bottom:686.160000px;}
.y37_c00366{bottom:686.880000px;}
.y34_c00366{bottom:688.320000px;}
.y30_c00366{bottom:727.920000px;}
.y2d_c00366{bottom:728.640000px;}
.y2e_c00366{bottom:729.360000px;}
.y2f_c00366{bottom:731.520000px;}
.y2a_c00366{bottom:760.320000px;}
.y31_c00366{bottom:761.040000px;}
.y29_c00366{bottom:762.480000px;}
.y2b_c00366{bottom:763.200000px;}
.y2c_c00366{bottom:763.920000px;}
.y32_c00366{bottom:764.640000px;}
.y23_c00366{bottom:803.520000px;}
.y26_c00366{bottom:804.240000px;}
.y25_c00366{bottom:806.400000px;}
.y24_c00366{bottom:807.840000px;}
.y1f_c00366{bottom:835.920000px;}
.y21_c00366{bottom:836.640000px;}
.y1e_c00366{bottom:837.360000px;}
.y22_c00366{bottom:838.800000px;}
.y20_c00366{bottom:839.520000px;}
.y27_c00366{bottom:840.240000px;}
.y28_c00366{bottom:840.960000px;}
.y19_c00366{bottom:879.120000px;}
.y18_c00366{bottom:879.840000px;}
.y1a_c00366{bottom:880.560000px;}
.y1c_c00366{bottom:882.000000px;}
.y1b_c00366{bottom:882.720000px;}
.y1d_c00366{bottom:883.440000px;}
.y17_c00366{bottom:921.600000px;}
.y14_c00366{bottom:922.320000px;}
.y15_c00366{bottom:923.040000px;}
.y13_c00366{bottom:923.760000px;}
.y16_c00366{bottom:926.640000px;}
.y10_c00366{bottom:965.520000px;}
.yf_c00366{bottom:966.240000px;}
.y12_c00366{bottom:968.400000px;}
.y11_c00366{bottom:969.120000px;}
.ye_c00366{bottom:1000.800000px;}
.yb_c00366{bottom:1008.000000px;}
.y8_c00366{bottom:1008.720000px;}
.y7_c00366{bottom:1009.440000px;}
.yc_c00366{bottom:1010.160000px;}
.ya_c00366{bottom:1010.880000px;}
.y9_c00366{bottom:1011.600000px;}
.yd_c00366{bottom:1012.320000px;}
.y3_c00366{bottom:1051.200000px;}
.y5_c00366{bottom:1051.920000px;}
.y2_c00366{bottom:1052.640000px;}
.y4_c00366{bottom:1054.800000px;}
.y6_c00366{bottom:1055.520000px;}
.y1_c00366{bottom:1098.000000px;}
.hb_c00366{height:31.100625px;}
.h10_c00366{height:33.692344px;}
.hc_c00366{height:36.284062px;}
.h11_c00366{height:38.875781px;}
.h5_c00366{height:41.467500px;}
.h8_c00366{height:44.059219px;}
.h6_c00366{height:46.650937px;}
.hd_c00366{height:49.242656px;}
.he_c00366{height:51.834375px;}
.h9_c00366{height:54.426094px;}
.h3_c00366{height:57.017812px;}
.hf_c00366{height:59.609531px;}
.h7_c00366{height:62.201250px;}
.ha_c00366{height:64.792969px;}
.h4_c00366{height:67.384687px;}
.h2_c00366{height:69.976406px;}
.h12_c00366{height:76.601250px;}
.h1_c00366{height:1149.750000px;}
.h0_c00366{height:1149.840000px;}
.w0_c00366{width:776.880000px;}
.w1_c00366{width:777.000000px;}
.x0_c00366{left:0.000000px;}
.x2_c00366{left:60.480000px;}
.x30_c00366{left:61.920000px;}
.x32_c00366{left:63.360000px;}
.x26_c00366{left:114.480000px;}
.x3_c00366{left:134.640000px;}
.x16_c00366{left:136.080000px;}
.x27_c00366{left:169.200000px;}
.x20_c00366{left:177.840000px;}
.x2a_c00366{left:190.080000px;}
.x28_c00366{left:210.960000px;}
.x1c_c00366{left:221.760000px;}
.x4_c00366{left:232.560000px;}
.x1d_c00366{left:244.080000px;}
.x23_c00366{left:254.160000px;}
.xa_c00366{left:264.960000px;}
.x13_c00366{left:276.480000px;}
.x5_c00366{left:287.280000px;}
.x1e_c00366{left:298.080000px;}
.x24_c00366{left:318.240000px;}
.xb_c00366{left:319.680000px;}
.x19_c00366{left:329.040000px;}
.x6_c00366{left:330.480000px;}
.x1f_c00366{left:340.560000px;}
.xc_c00366{left:362.880000px;}
.x29_c00366{left:371.520000px;}
.x14_c00366{left:372.960000px;}
.xd_c00366{left:382.320000px;}
.xe_c00366{left:406.080000px;}
.x17_c00366{left:416.160000px;}
.x2b_c00366{left:426.960000px;}
.xf_c00366{left:449.280000px;}
.x21_c00366{left:458.640000px;}
.x1a_c00366{left:470.880000px;}
.x2c_c00366{left:481.680000px;}
.x10_c00366{left:503.280000px;}
.x1b_c00366{left:513.360000px;}
.x2d_c00366{left:523.440000px;}
.x31_c00366{left:555.840000px;}
.x7_c00366{left:557.280000px;}
.x25_c00366{left:577.440000px;}
.x11_c00366{left:578.880000px;}
.x2f_c00366{left:589.680000px;}
.x2e_c00366{left:611.280000px;}
.x18_c00366{left:612.720000px;}
.x22_c00366{left:644.400000px;}
.x12_c00366{left:654.480000px;}
.x8_c00366{left:655.920000px;}
.x1_c00366{left:687.600000px;}
.x9_c00366{left:689.040000px;}
.x15_c00366{left:708.480000px;}
@media print{
.v0_c00366{vertical-align:0.000000pt;}
.v1_c00366{vertical-align:5.120000pt;}
.v2_c00366{vertical-align:12.800000pt;}
.ls0_c00366{letter-spacing:0.000000pt;}
.ws2_c00366{word-spacing:0.000000pt;}
.ws0_c00366{word-spacing:435.741013pt;}
.ws1_c00366{word-spacing:644.543360pt;}
.fs9_c00366{font-size:30.720000pt;}
.fse_c00366{font-size:33.280000pt;}
.fsa_c00366{font-size:35.840000pt;}
.fsf_c00366{font-size:38.400000pt;}
.fs3_c00366{font-size:40.960000pt;}
.fs6_c00366{font-size:43.520000pt;}
.fs4_c00366{font-size:46.080000pt;}
.fsb_c00366{font-size:48.640000pt;}
.fsc_c00366{font-size:51.200000pt;}
.fs7_c00366{font-size:53.760000pt;}
.fs1_c00366{font-size:56.320000pt;}
.fsd_c00366{font-size:58.880000pt;}
.fs5_c00366{font-size:61.440000pt;}
.fs8_c00366{font-size:64.000000pt;}
.fs2_c00366{font-size:66.560000pt;}
.fs0_c00366{font-size:69.120000pt;}
.y0_c00366{bottom:0.000000pt;}
.y85_c00366{bottom:32.000000pt;}
.y86_c00366{bottom:32.640000pt;}
.y88_c00366{bottom:35.200000pt;}
.y87_c00366{bottom:35.840000pt;}
.y84_c00366{bottom:36.480000pt;}
.y7f_c00366{bottom:70.400000pt;}
.y80_c00366{bottom:71.040000pt;}
.y81_c00366{bottom:73.600000pt;}
.y7e_c00366{bottom:74.240000pt;}
.y83_c00366{bottom:74.880000pt;}
.y82_c00366{bottom:75.520000pt;}
.y79_c00366{bottom:108.800000pt;}
.y7a_c00366{bottom:110.080000pt;}
.y78_c00366{bottom:112.640000pt;}
.y7c_c00366{bottom:113.280000pt;}
.y7b_c00366{bottom:113.920000pt;}
.y7d_c00366{bottom:115.200000pt;}
.y73_c00366{bottom:147.200000pt;}
.y75_c00366{bottom:147.840000pt;}
.y74_c00366{bottom:149.120000pt;}
.y76_c00366{bottom:149.760000pt;}
.y72_c00366{bottom:150.400000pt;}
.y77_c00366{bottom:153.600000pt;}
.y6d_c00366{bottom:186.240000pt;}
.y71_c00366{bottom:188.160000pt;}
.y6c_c00366{bottom:188.800000pt;}
.y6e_c00366{bottom:189.440000pt;}
.y6f_c00366{bottom:190.080000pt;}
.y70_c00366{bottom:191.360000pt;}
.y67_c00366{bottom:224.640000pt;}
.y66_c00366{bottom:226.560000pt;}
.y68_c00366{bottom:227.200000pt;}
.y69_c00366{bottom:227.840000pt;}
.y6a_c00366{bottom:228.480000pt;}
.y6b_c00366{bottom:229.760000pt;}
.y60_c00366{bottom:262.400000pt;}
.y62_c00366{bottom:263.040000pt;}
.y65_c00366{bottom:264.960000pt;}
.y61_c00366{bottom:265.600000pt;}
.y5f_c00366{bottom:266.240000pt;}
.y64_c00366{bottom:267.520000pt;}
.y63_c00366{bottom:268.160000pt;}
.y5e_c00366{bottom:296.320000pt;}
.y59_c00366{bottom:301.440000pt;}
.y5a_c00366{bottom:302.080000pt;}
.y5c_c00366{bottom:302.720000pt;}
.y5d_c00366{bottom:303.360000pt;}
.y58_c00366{bottom:304.000000pt;}
.y5b_c00366{bottom:304.640000pt;}
.y4c_c00366{bottom:339.840000pt;}
.y50_c00366{bottom:340.480000pt;}
.y4e_c00366{bottom:341.120000pt;}
.y52_c00366{bottom:341.760000pt;}
.y4b_c00366{bottom:342.400000pt;}
.y4d_c00366{bottom:343.040000pt;}
.y4f_c00366{bottom:343.680000pt;}
.y51_c00366{bottom:344.320000pt;}
.y4a_c00366{bottom:377.600000pt;}
.y49_c00366{bottom:380.800000pt;}
.y48_c00366{bottom:381.440000pt;}
.y45_c00366{bottom:407.040000pt;}
.y46_c00366{bottom:407.680000pt;}
.y53_c00366{bottom:408.960000pt;}
.y44_c00366{bottom:409.600000pt;}
.y47_c00366{bottom:410.240000pt;}
.y55_c00366{bottom:444.800000pt;}
.y57_c00366{bottom:446.080000pt;}
.y56_c00366{bottom:446.720000pt;}
.y54_c00366{bottom:447.360000pt;}
.y42_c00366{bottom:483.840000pt;}
.y41_c00366{bottom:484.480000pt;}
.y43_c00366{bottom:485.760000pt;}
.y3e_c00366{bottom:531.840000pt;}
.y3f_c00366{bottom:532.480000pt;}
.y3d_c00366{bottom:533.120000pt;}
.y40_c00366{bottom:533.760000pt;}
.y39_c00366{bottom:569.600000pt;}
.y3b_c00366{bottom:570.240000pt;}
.y3c_c00366{bottom:570.880000pt;}
.y38_c00366{bottom:571.520000pt;}
.y3a_c00366{bottom:572.800000pt;}
.y35_c00366{bottom:608.640000pt;}
.y36_c00366{bottom:609.280000pt;}
.y33_c00366{bottom:609.920000pt;}
.y37_c00366{bottom:610.560000pt;}
.y34_c00366{bottom:611.840000pt;}
.y30_c00366{bottom:647.040000pt;}
.y2d_c00366{bottom:647.680000pt;}
.y2e_c00366{bottom:648.320000pt;}
.y2f_c00366{bottom:650.240000pt;}
.y2a_c00366{bottom:675.840000pt;}
.y31_c00366{bottom:676.480000pt;}
.y29_c00366{bottom:677.760000pt;}
.y2b_c00366{bottom:678.400000pt;}
.y2c_c00366{bottom:679.040000pt;}
.y32_c00366{bottom:679.680000pt;}
.y23_c00366{bottom:714.240000pt;}
.y26_c00366{bottom:714.880000pt;}
.y25_c00366{bottom:716.800000pt;}
.y24_c00366{bottom:718.080000pt;}
.y1f_c00366{bottom:743.040000pt;}
.y21_c00366{bottom:743.680000pt;}
.y1e_c00366{bottom:744.320000pt;}
.y22_c00366{bottom:745.600000pt;}
.y20_c00366{bottom:746.240000pt;}
.y27_c00366{bottom:746.880000pt;}
.y28_c00366{bottom:747.520000pt;}
.y19_c00366{bottom:781.440000pt;}
.y18_c00366{bottom:782.080000pt;}
.y1a_c00366{bottom:782.720000pt;}
.y1c_c00366{bottom:784.000000pt;}
.y1b_c00366{bottom:784.640000pt;}
.y1d_c00366{bottom:785.280000pt;}
.y17_c00366{bottom:819.200000pt;}
.y14_c00366{bottom:819.840000pt;}
.y15_c00366{bottom:820.480000pt;}
.y13_c00366{bottom:821.120000pt;}
.y16_c00366{bottom:823.680000pt;}
.y10_c00366{bottom:858.240000pt;}
.yf_c00366{bottom:858.880000pt;}
.y12_c00366{bottom:860.800000pt;}
.y11_c00366{bottom:861.440000pt;}
.ye_c00366{bottom:889.600000pt;}
.yb_c00366{bottom:896.000000pt;}
.y8_c00366{bottom:896.640000pt;}
.y7_c00366{bottom:897.280000pt;}
.yc_c00366{bottom:897.920000pt;}
.ya_c00366{bottom:898.560000pt;}
.y9_c00366{bottom:899.200000pt;}
.yd_c00366{bottom:899.840000pt;}
.y3_c00366{bottom:934.400000pt;}
.y5_c00366{bottom:935.040000pt;}
.y2_c00366{bottom:935.680000pt;}
.y4_c00366{bottom:937.600000pt;}
.y6_c00366{bottom:938.240000pt;}
.y1_c00366{bottom:976.000000pt;}
.hb_c00366{height:27.645000pt;}
.h10_c00366{height:29.948750pt;}
.hc_c00366{height:32.252500pt;}
.h11_c00366{height:34.556250pt;}
.h5_c00366{height:36.860000pt;}
.h8_c00366{height:39.163750pt;}
.h6_c00366{height:41.467500pt;}
.hd_c00366{height:43.771250pt;}
.he_c00366{height:46.075000pt;}
.h9_c00366{height:48.378750pt;}
.h3_c00366{height:50.682500pt;}
.hf_c00366{height:52.986250pt;}
.h7_c00366{height:55.290000pt;}
.ha_c00366{height:57.593750pt;}
.h4_c00366{height:59.897500pt;}
.h2_c00366{height:62.201250pt;}
.h12_c00366{height:68.090000pt;}
.h1_c00366{height:1022.000000pt;}
.h0_c00366{height:1022.080000pt;}
.w0_c00366{width:690.560000pt;}
.w1_c00366{width:690.666667pt;}
.x0_c00366{left:0.000000pt;}
.x2_c00366{left:53.760000pt;}
.x30_c00366{left:55.040000pt;}
.x32_c00366{left:56.320000pt;}
.x26_c00366{left:101.760000pt;}
.x3_c00366{left:119.680000pt;}
.x16_c00366{left:120.960000pt;}
.x27_c00366{left:150.400000pt;}
.x20_c00366{left:158.080000pt;}
.x2a_c00366{left:168.960000pt;}
.x28_c00366{left:187.520000pt;}
.x1c_c00366{left:197.120000pt;}
.x4_c00366{left:206.720000pt;}
.x1d_c00366{left:216.960000pt;}
.x23_c00366{left:225.920000pt;}
.xa_c00366{left:235.520000pt;}
.x13_c00366{left:245.760000pt;}
.x5_c00366{left:255.360000pt;}
.x1e_c00366{left:264.960000pt;}
.x24_c00366{left:282.880000pt;}
.xb_c00366{left:284.160000pt;}
.x19_c00366{left:292.480000pt;}
.x6_c00366{left:293.760000pt;}
.x1f_c00366{left:302.720000pt;}
.xc_c00366{left:322.560000pt;}
.x29_c00366{left:330.240000pt;}
.x14_c00366{left:331.520000pt;}
.xd_c00366{left:339.840000pt;}
.xe_c00366{left:360.960000pt;}
.x17_c00366{left:369.920000pt;}
.x2b_c00366{left:379.520000pt;}
.xf_c00366{left:399.360000pt;}
.x21_c00366{left:407.680000pt;}
.x1a_c00366{left:418.560000pt;}
.x2c_c00366{left:428.160000pt;}
.x10_c00366{left:447.360000pt;}
.x1b_c00366{left:456.320000pt;}
.x2d_c00366{left:465.280000pt;}
.x31_c00366{left:494.080000pt;}
.x7_c00366{left:495.360000pt;}
.x25_c00366{left:513.280000pt;}
.x11_c00366{left:514.560000pt;}
.x2f_c00366{left:524.160000pt;}
.x2e_c00366{left:543.360000pt;}
.x18_c00366{left:544.640000pt;}
.x22_c00366{left:572.800000pt;}
.x12_c00366{left:581.760000pt;}
.x8_c00366{left:583.040000pt;}
.x1_c00366{left:611.200000pt;}
.x9_c00366{left:612.480000pt;}
.x15_c00366{left:629.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_52a40134fd512b83681f2038.woff2')format("woff");}.ff1_c00367{font-family:ff1_c00367;line-height:1.109863;font-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_c00367{transform:matrix(0.236800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236800,0.000000,0.000000,0.250000,0,0);}
.m46_c00367{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m4a_c00367{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m1_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);}
.mf_c00367{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m28_c00367{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m7_c00367{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m21_c00367{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);}
.m43_c00367{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m14_c00367{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00367{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m8_c00367{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);}
.m39_c00367{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m20_c00367{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);}
.m48_c00367{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m6_c00367{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00367{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m11_c00367{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m13_c00367{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00367{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m5_c00367{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m9_c00367{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m10_c00367{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m18_c00367{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00367{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00367{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.md_c00367{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mc_c00367{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mb_c00367{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);}
.m2_c00367{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);}
.m29_c00367{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.me_c00367{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);}
.m47_c00367{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m12_c00367{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);}
.m38_c00367{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m33_c00367{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00367{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);}
.m32_c00367{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00367{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);}
.m45_c00367{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);}
.m3e_c00367{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);}
.m4b_c00367{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m16_c00367{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);}
.m19_c00367{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m24_c00367{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);}
.m1c_c00367{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);}
.m42_c00367{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);}
.m30_c00367{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m40_c00367{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m49_c00367{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m0_c00367{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);}
.m36_c00367{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00367{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);}
.m44_c00367{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m27_c00367{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);}
.m41_c00367{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);}
.m34_c00367{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m4_c00367{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00367{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.ma_c00367{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);}
.m22_c00367{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00367{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);}
.m3_c00367{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m23_c00367{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);}
.m2a_c00367{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m26_c00367{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m15_c00367{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00367{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m35_c00367{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m25_c00367{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m31_c00367{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m17_c00367{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m37_c00367{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);}
.m3d_c00367{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00367{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00367{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00367{transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);}
.v0_c00367{vertical-align:0.000000px;}
.ls0_c00367{letter-spacing:0.000000px;}
.sc__c00367{text-shadow:none;}
.sc0_c00367{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00367{-webkit-text-stroke:0px transparent;}
.sc0_c00367{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00367{word-spacing:0.000000px;}
.fc0_c00367{color:transparent;}
.fsf_c00367{font-size:23.040000px;}
.fsb_c00367{font-size:34.560000px;}
.fsc_c00367{font-size:37.440000px;}
.fse_c00367{font-size:40.320000px;}
.fsd_c00367{font-size:43.200000px;}
.fs3_c00367{font-size:46.080000px;}
.fs6_c00367{font-size:48.960000px;}
.fs9_c00367{font-size:51.840000px;}
.fs0_c00367{font-size:54.720000px;}
.fs5_c00367{font-size:57.600000px;}
.fs2_c00367{font-size:60.480000px;}
.fs8_c00367{font-size:63.360000px;}
.fs7_c00367{font-size:66.240000px;}
.fs4_c00367{font-size:69.120000px;}
.fsa_c00367{font-size:72.000000px;}
.fs1_c00367{font-size:74.880000px;}
.fs10_c00367{font-size:77.760000px;}
.y0_c00367{bottom:0.000000px;}
.y6d_c00367{bottom:51.840000px;}
.y6c_c00367{bottom:56.880000px;}
.y71_c00367{bottom:58.320000px;}
.y6b_c00367{bottom:94.320000px;}
.y6a_c00367{bottom:98.640000px;}
.y69_c00367{bottom:137.520000px;}
.y68_c00367{bottom:141.120000px;}
.y6e_c00367{bottom:141.840000px;}
.y6f_c00367{bottom:142.560000px;}
.y70_c00367{bottom:143.280000px;}
.y65_c00367{bottom:182.160000px;}
.y67_c00367{bottom:183.600000px;}
.y66_c00367{bottom:185.040000px;}
.y64_c00367{bottom:185.760000px;}
.y5e_c00367{bottom:235.440000px;}
.y5d_c00367{bottom:238.320000px;}
.y5c_c00367{bottom:277.920000px;}
.y61_c00367{bottom:280.800000px;}
.y5b_c00367{bottom:281.520000px;}
.y63_c00367{bottom:282.240000px;}
.y62_c00367{bottom:282.960000px;}
.y5a_c00367{bottom:321.120000px;}
.y5f_c00367{bottom:324.000000px;}
.y59_c00367{bottom:324.720000px;}
.y60_c00367{bottom:326.160000px;}
.y58_c00367{bottom:365.760000px;}
.y57_c00367{bottom:366.480000px;}
.y56_c00367{bottom:367.920000px;}
.y54_c00367{bottom:408.240000px;}
.y53_c00367{bottom:410.400000px;}
.y55_c00367{bottom:411.120000px;}
.y51_c00367{bottom:452.880000px;}
.y52_c00367{bottom:453.600000px;}
.y50_c00367{bottom:455.760000px;}
.y4e_c00367{bottom:487.440000px;}
.y4f_c00367{bottom:488.160000px;}
.y4d_c00367{bottom:537.840000px;}
.y4a_c00367{bottom:538.560000px;}
.y4b_c00367{bottom:539.280000px;}
.y4c_c00367{bottom:541.440000px;}
.y48_c00367{bottom:573.840000px;}
.y49_c00367{bottom:574.560000px;}
.y43_c00367{bottom:602.640000px;}
.y44_c00367{bottom:604.080000px;}
.y42_c00367{bottom:605.520000px;}
.y45_c00367{bottom:606.240000px;}
.y46_c00367{bottom:606.960000px;}
.y47_c00367{bottom:607.680000px;}
.y3f_c00367{bottom:646.560000px;}
.y40_c00367{bottom:647.280000px;}
.y41_c00367{bottom:649.440000px;}
.y39_c00367{bottom:678.240000px;}
.y3c_c00367{bottom:678.960000px;}
.y3a_c00367{bottom:679.680000px;}
.y38_c00367{bottom:680.400000px;}
.y3b_c00367{bottom:681.840000px;}
.y3d_c00367{bottom:682.560000px;}
.y3e_c00367{bottom:683.280000px;}
.y35_c00367{bottom:721.440000px;}
.y33_c00367{bottom:722.160000px;}
.y34_c00367{bottom:724.320000px;}
.y32_c00367{bottom:725.040000px;}
.y2f_c00367{bottom:753.120000px;}
.y2e_c00367{bottom:754.560000px;}
.y31_c00367{bottom:756.000000px;}
.y30_c00367{bottom:756.720000px;}
.y36_c00367{bottom:757.440000px;}
.y37_c00367{bottom:758.160000px;}
.y2d_c00367{bottom:795.600000px;}
.y2b_c00367{bottom:797.040000px;}
.y2c_c00367{bottom:799.200000px;}
.y29_c00367{bottom:828.000000px;}
.y28_c00367{bottom:829.440000px;}
.y14_c00367{bottom:830.160000px;}
.y15_c00367{bottom:831.600000px;}
.y2a_c00367{bottom:832.320000px;}
.y16_c00367{bottom:833.040000px;}
.y2_c00367{bottom:870.480000px;}
.y4_c00367{bottom:871.920000px;}
.y1_c00367{bottom:872.640000px;}
.y13_c00367{bottom:873.360000px;}
.y12_c00367{bottom:874.080000px;}
.y3_c00367{bottom:874.800000px;}
.y27_c00367{bottom:913.680000px;}
.y24_c00367{bottom:914.400000px;}
.y10_c00367{bottom:915.120000px;}
.y25_c00367{bottom:915.840000px;}
.y11_c00367{bottom:916.560000px;}
.y26_c00367{bottom:918.000000px;}
.y23_c00367{bottom:951.120000px;}
.y21_c00367{bottom:957.600000px;}
.y20_c00367{bottom:958.320000px;}
.ye_c00367{bottom:959.040000px;}
.y22_c00367{bottom:961.200000px;}
.yf_c00367{bottom:962.640000px;}
.y1f_c00367{bottom:1000.080000px;}
.y1d_c00367{bottom:1000.800000px;}
.yb_c00367{bottom:1002.240000px;}
.yc_c00367{bottom:1002.960000px;}
.y1e_c00367{bottom:1003.680000px;}
.yd_c00367{bottom:1005.840000px;}
.y18_c00367{bottom:1043.280000px;}
.y1c_c00367{bottom:1044.000000px;}
.y9_c00367{bottom:1044.720000px;}
.y1a_c00367{bottom:1045.440000px;}
.y1b_c00367{bottom:1046.880000px;}
.y19_c00367{bottom:1047.600000px;}
.ya_c00367{bottom:1049.040000px;}
.y17_c00367{bottom:1087.200000px;}
.y6_c00367{bottom:1088.640000px;}
.y7_c00367{bottom:1090.800000px;}
.y8_c00367{bottom:1092.240000px;}
.y5_c00367{bottom:1128.240000px;}
.h11_c00367{height:20.733750px;}
.hd_c00367{height:31.100625px;}
.he_c00367{height:33.692344px;}
.h10_c00367{height:36.284062px;}
.hf_c00367{height:38.875781px;}
.h5_c00367{height:41.467500px;}
.h8_c00367{height:44.059219px;}
.hb_c00367{height:46.650937px;}
.h2_c00367{height:49.242656px;}
.h7_c00367{height:51.834375px;}
.h4_c00367{height:54.426094px;}
.ha_c00367{height:57.017812px;}
.h9_c00367{height:59.609531px;}
.h6_c00367{height:62.201250px;}
.hc_c00367{height:64.792969px;}
.h3_c00367{height:67.384687px;}
.h12_c00367{height:69.976406px;}
.h1_c00367{height:1179.750000px;}
.h0_c00367{height:1180.080000px;}
.w0_c00367{width:776.880000px;}
.w1_c00367{width:777.000000px;}
.x0_c00367{left:0.000000px;}
.x1_c00367{left:58.320000px;}
.x31_c00367{left:60.480000px;}
.x36_c00367{left:61.920000px;}
.x2f_c00367{left:112.320000px;}
.x2d_c00367{left:113.760000px;}
.x2_c00367{left:133.920000px;}
.x24_c00367{left:136.079730px;}
.x33_c00367{left:146.880000px;}
.x1f_c00367{left:177.120000px;}
.x2b_c00367{left:188.640000px;}
.xf_c00367{left:190.080000px;}
.x29_c00367{left:198.720000px;}
.x30_c00367{left:209.520000px;}
.x34_c00367{left:220.320000px;}
.x3_c00367{left:231.120000px;}
.x10_c00367{left:241.920000px;}
.x2e_c00367{left:253.440000px;}
.x35_c00367{left:255.600000px;}
.x19_c00367{left:263.520000px;}
.x14_c00367{left:275.040000px;}
.x17_c00367{left:285.120000px;}
.x2c_c00367{left:286.560000px;}
.x11_c00367{left:295.920000px;}
.x2a_c00367{left:297.360000px;}
.x4_c00367{left:317.520000px;}
.x18_c00367{left:328.320000px;}
.x1d_c00367{left:330.480000px;}
.x12_c00367{left:339.120000px;}
.x20_c00367{left:349.920000px;}
.x15_c00367{left:360.720000px;}
.x5_c00367{left:371.520000px;}
.x25_c00367{left:383.760000px;}
.x13_c00367{left:393.120000px;}
.x21_c00367{left:394.560000px;}
.x1b_c00367{left:403.920000px;}
.x6_c00367{left:414.720000px;}
.x26_c00367{left:425.520000px;}
.x23_c00367{left:437.040000px;}
.x16_c00367{left:457.920000px;}
.x1e_c00367{left:469.440000px;}
.x22_c00367{left:490.320000px;}
.x1c_c00367{left:501.120000px;}
.x1a_c00367{left:511.920000px;}
.x27_c00367{left:533.520000px;}
.xc_c00367{left:555.840000px;}
.xd_c00367{left:577.440000px;}
.x28_c00367{left:609.120000px;}
.x8_c00367{left:611.280000px;}
.xe_c00367{left:643.680000px;}
.x9_c00367{left:653.760000px;}
.x7_c00367{left:676.080000px;}
.x32_c00367{left:685.440000px;}
.xa_c00367{left:686.880000px;}
.xb_c00367{left:707.040000px;}
@media print{
.v0_c00367{vertical-align:0.000000pt;}
.ls0_c00367{letter-spacing:0.000000pt;}
.ws0_c00367{word-spacing:0.000000pt;}
.fsf_c00367{font-size:20.480000pt;}
.fsb_c00367{font-size:30.720000pt;}
.fsc_c00367{font-size:33.280000pt;}
.fse_c00367{font-size:35.840000pt;}
.fsd_c00367{font-size:38.400000pt;}
.fs3_c00367{font-size:40.960000pt;}
.fs6_c00367{font-size:43.520000pt;}
.fs9_c00367{font-size:46.080000pt;}
.fs0_c00367{font-size:48.640000pt;}
.fs5_c00367{font-size:51.200000pt;}
.fs2_c00367{font-size:53.760000pt;}
.fs8_c00367{font-size:56.320000pt;}
.fs7_c00367{font-size:58.880000pt;}
.fs4_c00367{font-size:61.440000pt;}
.fsa_c00367{font-size:64.000000pt;}
.fs1_c00367{font-size:66.560000pt;}
.fs10_c00367{font-size:69.120000pt;}
.y0_c00367{bottom:0.000000pt;}
.y6d_c00367{bottom:46.080000pt;}
.y6c_c00367{bottom:50.560000pt;}
.y71_c00367{bottom:51.840000pt;}
.y6b_c00367{bottom:83.840000pt;}
.y6a_c00367{bottom:87.680000pt;}
.y69_c00367{bottom:122.240000pt;}
.y68_c00367{bottom:125.440000pt;}
.y6e_c00367{bottom:126.080000pt;}
.y6f_c00367{bottom:126.720000pt;}
.y70_c00367{bottom:127.360000pt;}
.y65_c00367{bottom:161.920000pt;}
.y67_c00367{bottom:163.200000pt;}
.y66_c00367{bottom:164.480000pt;}
.y64_c00367{bottom:165.120000pt;}
.y5e_c00367{bottom:209.280000pt;}
.y5d_c00367{bottom:211.840000pt;}
.y5c_c00367{bottom:247.040000pt;}
.y61_c00367{bottom:249.600000pt;}
.y5b_c00367{bottom:250.240000pt;}
.y63_c00367{bottom:250.880000pt;}
.y62_c00367{bottom:251.520000pt;}
.y5a_c00367{bottom:285.440000pt;}
.y5f_c00367{bottom:288.000000pt;}
.y59_c00367{bottom:288.640000pt;}
.y60_c00367{bottom:289.920000pt;}
.y58_c00367{bottom:325.120000pt;}
.y57_c00367{bottom:325.760000pt;}
.y56_c00367{bottom:327.040000pt;}
.y54_c00367{bottom:362.880000pt;}
.y53_c00367{bottom:364.800000pt;}
.y55_c00367{bottom:365.440000pt;}
.y51_c00367{bottom:402.560000pt;}
.y52_c00367{bottom:403.200000pt;}
.y50_c00367{bottom:405.120000pt;}
.y4e_c00367{bottom:433.280000pt;}
.y4f_c00367{bottom:433.920000pt;}
.y4d_c00367{bottom:478.080000pt;}
.y4a_c00367{bottom:478.720000pt;}
.y4b_c00367{bottom:479.360000pt;}
.y4c_c00367{bottom:481.280000pt;}
.y48_c00367{bottom:510.080000pt;}
.y49_c00367{bottom:510.720000pt;}
.y43_c00367{bottom:535.680000pt;}
.y44_c00367{bottom:536.960000pt;}
.y42_c00367{bottom:538.240000pt;}
.y45_c00367{bottom:538.880000pt;}
.y46_c00367{bottom:539.520000pt;}
.y47_c00367{bottom:540.160000pt;}
.y3f_c00367{bottom:574.720000pt;}
.y40_c00367{bottom:575.360000pt;}
.y41_c00367{bottom:577.280000pt;}
.y39_c00367{bottom:602.880000pt;}
.y3c_c00367{bottom:603.520000pt;}
.y3a_c00367{bottom:604.160000pt;}
.y38_c00367{bottom:604.800000pt;}
.y3b_c00367{bottom:606.080000pt;}
.y3d_c00367{bottom:606.720000pt;}
.y3e_c00367{bottom:607.360000pt;}
.y35_c00367{bottom:641.280000pt;}
.y33_c00367{bottom:641.920000pt;}
.y34_c00367{bottom:643.840000pt;}
.y32_c00367{bottom:644.480000pt;}
.y2f_c00367{bottom:669.440000pt;}
.y2e_c00367{bottom:670.720000pt;}
.y31_c00367{bottom:672.000000pt;}
.y30_c00367{bottom:672.640000pt;}
.y36_c00367{bottom:673.280000pt;}
.y37_c00367{bottom:673.920000pt;}
.y2d_c00367{bottom:707.200000pt;}
.y2b_c00367{bottom:708.480000pt;}
.y2c_c00367{bottom:710.400000pt;}
.y29_c00367{bottom:736.000000pt;}
.y28_c00367{bottom:737.280000pt;}
.y14_c00367{bottom:737.920000pt;}
.y15_c00367{bottom:739.200000pt;}
.y2a_c00367{bottom:739.840000pt;}
.y16_c00367{bottom:740.480000pt;}
.y2_c00367{bottom:773.760000pt;}
.y4_c00367{bottom:775.040000pt;}
.y1_c00367{bottom:775.680000pt;}
.y13_c00367{bottom:776.320000pt;}
.y12_c00367{bottom:776.960000pt;}
.y3_c00367{bottom:777.600000pt;}
.y27_c00367{bottom:812.160000pt;}
.y24_c00367{bottom:812.800000pt;}
.y10_c00367{bottom:813.440000pt;}
.y25_c00367{bottom:814.080000pt;}
.y11_c00367{bottom:814.720000pt;}
.y26_c00367{bottom:816.000000pt;}
.y23_c00367{bottom:845.440000pt;}
.y21_c00367{bottom:851.200000pt;}
.y20_c00367{bottom:851.840000pt;}
.ye_c00367{bottom:852.480000pt;}
.y22_c00367{bottom:854.400000pt;}
.yf_c00367{bottom:855.680000pt;}
.y1f_c00367{bottom:888.960000pt;}
.y1d_c00367{bottom:889.600000pt;}
.yb_c00367{bottom:890.880000pt;}
.yc_c00367{bottom:891.520000pt;}
.y1e_c00367{bottom:892.160000pt;}
.yd_c00367{bottom:894.080000pt;}
.y18_c00367{bottom:927.360000pt;}
.y1c_c00367{bottom:928.000000pt;}
.y9_c00367{bottom:928.640000pt;}
.y1a_c00367{bottom:929.280000pt;}
.y1b_c00367{bottom:930.560000pt;}
.y19_c00367{bottom:931.200000pt;}
.ya_c00367{bottom:932.480000pt;}
.y17_c00367{bottom:966.400000pt;}
.y6_c00367{bottom:967.680000pt;}
.y7_c00367{bottom:969.600000pt;}
.y8_c00367{bottom:970.880000pt;}
.y5_c00367{bottom:1002.880000pt;}
.h11_c00367{height:18.430000pt;}
.hd_c00367{height:27.645000pt;}
.he_c00367{height:29.948750pt;}
.h10_c00367{height:32.252500pt;}
.hf_c00367{height:34.556250pt;}
.h5_c00367{height:36.860000pt;}
.h8_c00367{height:39.163750pt;}
.hb_c00367{height:41.467500pt;}
.h2_c00367{height:43.771250pt;}
.h7_c00367{height:46.075000pt;}
.h4_c00367{height:48.378750pt;}
.ha_c00367{height:50.682500pt;}
.h9_c00367{height:52.986250pt;}
.h6_c00367{height:55.290000pt;}
.hc_c00367{height:57.593750pt;}
.h3_c00367{height:59.897500pt;}
.h12_c00367{height:62.201250pt;}
.h1_c00367{height:1048.666667pt;}
.h0_c00367{height:1048.960000pt;}
.w0_c00367{width:690.560000pt;}
.w1_c00367{width:690.666667pt;}
.x0_c00367{left:0.000000pt;}
.x1_c00367{left:51.840000pt;}
.x31_c00367{left:53.760000pt;}
.x36_c00367{left:55.040000pt;}
.x2f_c00367{left:99.840000pt;}
.x2d_c00367{left:101.120000pt;}
.x2_c00367{left:119.040000pt;}
.x24_c00367{left:120.959760pt;}
.x33_c00367{left:130.560000pt;}
.x1f_c00367{left:157.440000pt;}
.x2b_c00367{left:167.680000pt;}
.xf_c00367{left:168.960000pt;}
.x29_c00367{left:176.640000pt;}
.x30_c00367{left:186.240000pt;}
.x34_c00367{left:195.840000pt;}
.x3_c00367{left:205.440000pt;}
.x10_c00367{left:215.040000pt;}
.x2e_c00367{left:225.280000pt;}
.x35_c00367{left:227.200000pt;}
.x19_c00367{left:234.240000pt;}
.x14_c00367{left:244.480000pt;}
.x17_c00367{left:253.440000pt;}
.x2c_c00367{left:254.720000pt;}
.x11_c00367{left:263.040000pt;}
.x2a_c00367{left:264.320000pt;}
.x4_c00367{left:282.240000pt;}
.x18_c00367{left:291.840000pt;}
.x1d_c00367{left:293.760000pt;}
.x12_c00367{left:301.440000pt;}
.x20_c00367{left:311.040000pt;}
.x15_c00367{left:320.640000pt;}
.x5_c00367{left:330.240000pt;}
.x25_c00367{left:341.120000pt;}
.x13_c00367{left:349.440000pt;}
.x21_c00367{left:350.720000pt;}
.x1b_c00367{left:359.040000pt;}
.x6_c00367{left:368.640000pt;}
.x26_c00367{left:378.240000pt;}
.x23_c00367{left:388.480000pt;}
.x16_c00367{left:407.040000pt;}
.x1e_c00367{left:417.280000pt;}
.x22_c00367{left:435.840000pt;}
.x1c_c00367{left:445.440000pt;}
.x1a_c00367{left:455.040000pt;}
.x27_c00367{left:474.240000pt;}
.xc_c00367{left:494.080000pt;}
.xd_c00367{left:513.280000pt;}
.x28_c00367{left:541.440000pt;}
.x8_c00367{left:543.360000pt;}
.xe_c00367{left:572.160000pt;}
.x9_c00367{left:581.120000pt;}
.x7_c00367{left:600.960000pt;}
.x32_c00367{left:609.280000pt;}
.xa_c00367{left:610.560000pt;}
.xb_c00367{left:628.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_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_478e5dd21a1a99a66263359d.woff2')format("woff");}.ff1_c00368{font-family:ff1_c00368;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m30_c00368{transform:matrix(0.175775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175775,0.000000,0.000000,0.250000,0,0);}
.m1f_c00368{transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);}
.m3c_c00368{transform:matrix(0.231075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231075,0.000000,0.000000,0.250000,0,0);}
.m47_c00368{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m37_c00368{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m44_c00368{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m34_c00368{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_c00368{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m5_c00368{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m27_c00368{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_c00368{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);}
.m31_c00368{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m7_c00368{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);}
.m32_c00368{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m26_c00368{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m4_c00368{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m12_c00368{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m10_c00368{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00368{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.me_c00368{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m15_c00368{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00368{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m2_c00368{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m14_c00368{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m3_c00368{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m42_c00368{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m22_c00368{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m13_c00368{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00368{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00368{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1_c00368{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m23_c00368{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m16_c00368{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m19_c00368{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m24_c00368{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.ma_c00368{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);}
.m28_c00368{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m9_c00368{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m21_c00368{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.mf_c00368{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m39_c00368{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m6_c00368{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.mc_c00368{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m20_c00368{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m11_c00368{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m0_c00368{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m17_c00368{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.md_c00368{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);}
.m33_c00368{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00368{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);}
.m35_c00368{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m29_c00368{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);}
.m43_c00368{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00368{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00368{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);}
.m18_c00368{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);}
.m38_c00368{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m41_c00368{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);}
.m46_c00368{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m40_c00368{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00368{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);}
.m8_c00368{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00368{transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00368{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.mb_c00368{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m48_c00368{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m25_c00368{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00368{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);}
.m45_c00368{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00368{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00368{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);}
.m1c_c00368{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00368{transform:matrix(1.147500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.147500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.147500,0.000000,0.000000,0.250000,0,0);}
.v0_c00368{vertical-align:0.000000px;}
.ls0_c00368{letter-spacing:0.000000px;}
.sc__c00368{text-shadow:none;}
.sc0_c00368{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00368{-webkit-text-stroke:0px transparent;}
.sc0_c00368{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00368{word-spacing:0.000000px;}
.ws0_c00368{word-spacing:0.734640px;}
.fc0_c00368{color:transparent;}
.fsb_c00368{font-size:23.040000px;}
.fs11_c00368{font-size:25.920000px;}
.fsd_c00368{font-size:34.560000px;}
.fsc_c00368{font-size:37.440000px;}
.fs12_c00368{font-size:43.200000px;}
.fs6_c00368{font-size:46.080000px;}
.fs7_c00368{font-size:48.960000px;}
.fs8_c00368{font-size:51.840000px;}
.fs9_c00368{font-size:54.720000px;}
.fs3_c00368{font-size:57.600000px;}
.fs4_c00368{font-size:60.480000px;}
.fs5_c00368{font-size:63.360000px;}
.fsa_c00368{font-size:66.240000px;}
.fs1_c00368{font-size:69.120000px;}
.fs2_c00368{font-size:72.000000px;}
.fs0_c00368{font-size:74.880000px;}
.fse_c00368{font-size:77.760000px;}
.fsf_c00368{font-size:92.160000px;}
.fs10_c00368{font-size:103.680000px;}
.y0_c00368{bottom:0.000000px;}
.y6f_c00368{bottom:26.640000px;}
.y70_c00368{bottom:29.520000px;}
.y6e_c00368{bottom:30.240000px;}
.y6d_c00368{bottom:69.120000px;}
.y6b_c00368{bottom:71.280000px;}
.y6c_c00368{bottom:72.720000px;}
.y68_c00368{bottom:101.520000px;}
.y6a_c00368{bottom:104.400000px;}
.y67_c00368{bottom:105.120000px;}
.y69_c00368{bottom:105.840000px;}
.y63_c00368{bottom:145.440000px;}
.y65_c00368{bottom:147.600000px;}
.y62_c00368{bottom:148.320000px;}
.y64_c00368{bottom:149.040000px;}
.y66_c00368{bottom:151.200000px;}
.y5f_c00368{bottom:189.360000px;}
.y60_c00368{bottom:190.080000px;}
.y61_c00368{bottom:191.520000px;}
.y5e_c00368{bottom:193.680000px;}
.y5d_c00368{bottom:231.840000px;}
.y5c_c00368{bottom:234.000000px;}
.y5b_c00368{bottom:235.440000px;}
.y5a_c00368{bottom:236.160000px;}
.y59_c00368{bottom:239.040000px;}
.y54_c00368{bottom:264.240000px;}
.y53_c00368{bottom:266.400000px;}
.y56_c00368{bottom:267.120000px;}
.y57_c00368{bottom:267.840000px;}
.y52_c00368{bottom:268.560000px;}
.y55_c00368{bottom:269.280000px;}
.y58_c00368{bottom:270.000000px;}
.y4f_c00368{bottom:301.680000px;}
.y4c_c00368{bottom:308.160000px;}
.y4e_c00368{bottom:309.600000px;}
.y50_c00368{bottom:311.040000px;}
.y4b_c00368{bottom:311.760000px;}
.y4d_c00368{bottom:312.480000px;}
.y51_c00368{bottom:313.920000px;}
.y48_c00368{bottom:351.360000px;}
.y49_c00368{bottom:352.080000px;}
.y4a_c00368{bottom:353.520000px;}
.y47_c00368{bottom:354.960000px;}
.y44_c00368{bottom:395.280000px;}
.y42_c00368{bottom:396.720000px;}
.y46_c00368{bottom:397.440000px;}
.y43_c00368{bottom:398.160000px;}
.y41_c00368{bottom:398.880000px;}
.y45_c00368{bottom:399.600000px;}
.y3c_c00368{bottom:437.760000px;}
.y3d_c00368{bottom:438.480000px;}
.y40_c00368{bottom:439.920000px;}
.y3f_c00368{bottom:440.640000px;}
.y3b_c00368{bottom:441.360000px;}
.y39_c00368{bottom:480.960000px;}
.y3a_c00368{bottom:481.680000px;}
.y3e_c00368{bottom:483.120000px;}
.y38_c00368{bottom:483.840000px;}
.y36_c00368{bottom:526.320000px;}
.y37_c00368{bottom:527.040000px;}
.y35_c00368{bottom:528.480000px;}
.y33_c00368{bottom:570.960000px;}
.y32_c00368{bottom:577.440000px;}
.y34_c00368{bottom:578.880000px;}
.y2f_c00368{bottom:581.040000px;}
.y30_c00368{bottom:581.760000px;}
.y31_c00368{bottom:582.480000px;}
.y2c_c00368{bottom:623.520000px;}
.y2e_c00368{bottom:624.240000px;}
.y2d_c00368{bottom:624.960000px;}
.y2b_c00368{bottom:625.680000px;}
.y29_c00368{bottom:674.640000px;}
.y27_c00368{bottom:675.360000px;}
.y2a_c00368{bottom:676.800000px;}
.y25_c00368{bottom:677.520000px;}
.y28_c00368{bottom:678.240000px;}
.y26_c00368{bottom:679.680000px;}
.y24_c00368{bottom:717.840000px;}
.y21_c00368{bottom:718.560000px;}
.y23_c00368{bottom:719.280000px;}
.y22_c00368{bottom:720.000000px;}
.y20_c00368{bottom:722.880000px;}
.y1d_c00368{bottom:750.960000px;}
.y1b_c00368{bottom:752.400000px;}
.y1f_c00368{bottom:753.120000px;}
.y1e_c00368{bottom:753.840000px;}
.y1c_c00368{bottom:754.560000px;}
.y18_c00368{bottom:794.880000px;}
.y19_c00368{bottom:795.600000px;}
.y16_c00368{bottom:796.320000px;}
.y1a_c00368{bottom:797.760000px;}
.y17_c00368{bottom:798.480000px;}
.y14_c00368{bottom:839.520000px;}
.y15_c00368{bottom:840.240000px;}
.y13_c00368{bottom:842.400000px;}
.yf_c00368{bottom:892.080000px;}
.y12_c00368{bottom:892.800000px;}
.ye_c00368{bottom:893.520000px;}
.yd_c00368{bottom:934.560000px;}
.y10_c00368{bottom:936.000000px;}
.yc_c00368{bottom:936.720000px;}
.y11_c00368{bottom:937.440000px;}
.yb_c00368{bottom:978.480000px;}
.y9_c00368{bottom:979.920000px;}
.ya_c00368{bottom:981.360000px;}
.y6_c00368{bottom:1010.880000px;}
.y5_c00368{bottom:1011.600000px;}
.y7_c00368{bottom:1012.320000px;}
.y8_c00368{bottom:1013.760000px;}
.y2_c00368{bottom:1054.080000px;}
.y4_c00368{bottom:1054.800000px;}
.y3_c00368{bottom:1055.520000px;}
.y1_c00368{bottom:1100.880000px;}
.hd_c00368{height:20.733750px;}
.h13_c00368{height:23.325469px;}
.hf_c00368{height:31.100625px;}
.he_c00368{height:33.692344px;}
.h14_c00368{height:38.875781px;}
.h8_c00368{height:41.467500px;}
.h9_c00368{height:44.059219px;}
.ha_c00368{height:46.650937px;}
.hb_c00368{height:49.242656px;}
.h5_c00368{height:51.834375px;}
.h6_c00368{height:54.426094px;}
.h7_c00368{height:57.017812px;}
.hc_c00368{height:59.609531px;}
.h3_c00368{height:62.201250px;}
.h4_c00368{height:64.792969px;}
.h2_c00368{height:67.384687px;}
.h10_c00368{height:69.976406px;}
.h11_c00368{height:82.935000px;}
.h12_c00368{height:93.301875px;}
.h1_c00368{height:1149.000000px;}
.h0_c00368{height:1149.120000px;}
.w0_c00368{width:775.440000px;}
.w1_c00368{width:775.500000px;}
.x0_c00368{left:0.000000px;}
.x2_c00368{left:56.880000px;}
.x20_c00368{left:58.320000px;}
.x34_c00368{left:60.480000px;}
.x10_c00368{left:109.440000px;}
.x1c_c00368{left:130.320000px;}
.x7_c00368{left:131.760000px;}
.x3_c00368{left:133.200000px;}
.x1d_c00368{left:142.560000px;}
.xf_c00368{left:174.960000px;}
.xd_c00368{left:186.480000px;}
.x11_c00368{left:206.640000px;}
.x1e_c00368{left:217.440000px;}
.x21_c00368{left:218.880000px;}
.x8_c00368{left:228.960000px;}
.x29_c00368{left:239.040000px;}
.x26_c00368{left:250.560000px;}
.x1f_c00368{left:252.720000px;}
.x19_c00368{left:272.160000px;}
.x9_c00368{left:282.960000px;}
.x33_c00368{left:293.760000px;}
.x2d_c00368{left:295.200000px;}
.x14_c00368{left:316.080000px;}
.x1a_c00368{left:326.880000px;}
.xa_c00368{left:328.320000px;}
.x2e_c00368{left:337.680000px;}
.x22_c00368{left:358.560000px;}
.x15_c00368{left:370.080000px;}
.x32_c00368{left:390.960000px;}
.xb_c00368{left:414.000000px;}
.x2a_c00368{left:434.880000px;}
.x2f_c00368{left:444.960000px;}
.x16_c00368{left:455.040000px;}
.xc_c00368{left:468.000000px;}
.x30_c00368{left:488.880000px;}
.x17_c00368{left:499.680000px;}
.x1b_c00368{left:510.480000px;}
.x23_c00368{left:520.560000px;}
.x31_c00368{left:542.880000px;}
.x18_c00368{left:544.320000px;}
.x2b_c00368{left:553.680000px;}
.x35_c00368{left:574.560000px;}
.x27_c00368{left:576.000000px;}
.x24_c00368{left:607.680000px;}
.x4_c00368{left:609.120000px;}
.x2c_c00368{left:640.800000px;}
.x5_c00368{left:642.240000px;}
.x25_c00368{left:673.920000px;}
.x12_c00368{left:675.360000px;}
.x1_c00368{left:676.800000px;}
.x28_c00368{left:682.560000px;}
.x6_c00368{left:684.720000px;}
.xe_c00368{left:686.160000px;}
.x13_c00368{left:706.320000px;}
@media print{
.v0_c00368{vertical-align:0.000000pt;}
.ls0_c00368{letter-spacing:0.000000pt;}
.ws1_c00368{word-spacing:0.000000pt;}
.ws0_c00368{word-spacing:0.653013pt;}
.fsb_c00368{font-size:20.480000pt;}
.fs11_c00368{font-size:23.040000pt;}
.fsd_c00368{font-size:30.720000pt;}
.fsc_c00368{font-size:33.280000pt;}
.fs12_c00368{font-size:38.400000pt;}
.fs6_c00368{font-size:40.960000pt;}
.fs7_c00368{font-size:43.520000pt;}
.fs8_c00368{font-size:46.080000pt;}
.fs9_c00368{font-size:48.640000pt;}
.fs3_c00368{font-size:51.200000pt;}
.fs4_c00368{font-size:53.760000pt;}
.fs5_c00368{font-size:56.320000pt;}
.fsa_c00368{font-size:58.880000pt;}
.fs1_c00368{font-size:61.440000pt;}
.fs2_c00368{font-size:64.000000pt;}
.fs0_c00368{font-size:66.560000pt;}
.fse_c00368{font-size:69.120000pt;}
.fsf_c00368{font-size:81.920000pt;}
.fs10_c00368{font-size:92.160000pt;}
.y0_c00368{bottom:0.000000pt;}
.y6f_c00368{bottom:23.680000pt;}
.y70_c00368{bottom:26.240000pt;}
.y6e_c00368{bottom:26.880000pt;}
.y6d_c00368{bottom:61.440000pt;}
.y6b_c00368{bottom:63.360000pt;}
.y6c_c00368{bottom:64.640000pt;}
.y68_c00368{bottom:90.240000pt;}
.y6a_c00368{bottom:92.800000pt;}
.y67_c00368{bottom:93.440000pt;}
.y69_c00368{bottom:94.080000pt;}
.y63_c00368{bottom:129.280000pt;}
.y65_c00368{bottom:131.200000pt;}
.y62_c00368{bottom:131.840000pt;}
.y64_c00368{bottom:132.480000pt;}
.y66_c00368{bottom:134.400000pt;}
.y5f_c00368{bottom:168.320000pt;}
.y60_c00368{bottom:168.960000pt;}
.y61_c00368{bottom:170.240000pt;}
.y5e_c00368{bottom:172.160000pt;}
.y5d_c00368{bottom:206.080000pt;}
.y5c_c00368{bottom:208.000000pt;}
.y5b_c00368{bottom:209.280000pt;}
.y5a_c00368{bottom:209.920000pt;}
.y59_c00368{bottom:212.480000pt;}
.y54_c00368{bottom:234.880000pt;}
.y53_c00368{bottom:236.800000pt;}
.y56_c00368{bottom:237.440000pt;}
.y57_c00368{bottom:238.080000pt;}
.y52_c00368{bottom:238.720000pt;}
.y55_c00368{bottom:239.360000pt;}
.y58_c00368{bottom:240.000000pt;}
.y4f_c00368{bottom:268.160000pt;}
.y4c_c00368{bottom:273.920000pt;}
.y4e_c00368{bottom:275.200000pt;}
.y50_c00368{bottom:276.480000pt;}
.y4b_c00368{bottom:277.120000pt;}
.y4d_c00368{bottom:277.760000pt;}
.y51_c00368{bottom:279.040000pt;}
.y48_c00368{bottom:312.320000pt;}
.y49_c00368{bottom:312.960000pt;}
.y4a_c00368{bottom:314.240000pt;}
.y47_c00368{bottom:315.520000pt;}
.y44_c00368{bottom:351.360000pt;}
.y42_c00368{bottom:352.640000pt;}
.y46_c00368{bottom:353.280000pt;}
.y43_c00368{bottom:353.920000pt;}
.y41_c00368{bottom:354.560000pt;}
.y45_c00368{bottom:355.200000pt;}
.y3c_c00368{bottom:389.120000pt;}
.y3d_c00368{bottom:389.760000pt;}
.y40_c00368{bottom:391.040000pt;}
.y3f_c00368{bottom:391.680000pt;}
.y3b_c00368{bottom:392.320000pt;}
.y39_c00368{bottom:427.520000pt;}
.y3a_c00368{bottom:428.160000pt;}
.y3e_c00368{bottom:429.440000pt;}
.y38_c00368{bottom:430.080000pt;}
.y36_c00368{bottom:467.840000pt;}
.y37_c00368{bottom:468.480000pt;}
.y35_c00368{bottom:469.760000pt;}
.y33_c00368{bottom:507.520000pt;}
.y32_c00368{bottom:513.280000pt;}
.y34_c00368{bottom:514.560000pt;}
.y2f_c00368{bottom:516.480000pt;}
.y30_c00368{bottom:517.120000pt;}
.y31_c00368{bottom:517.760000pt;}
.y2c_c00368{bottom:554.240000pt;}
.y2e_c00368{bottom:554.880000pt;}
.y2d_c00368{bottom:555.520000pt;}
.y2b_c00368{bottom:556.160000pt;}
.y29_c00368{bottom:599.680000pt;}
.y27_c00368{bottom:600.320000pt;}
.y2a_c00368{bottom:601.600000pt;}
.y25_c00368{bottom:602.240000pt;}
.y28_c00368{bottom:602.880000pt;}
.y26_c00368{bottom:604.160000pt;}
.y24_c00368{bottom:638.080000pt;}
.y21_c00368{bottom:638.720000pt;}
.y23_c00368{bottom:639.360000pt;}
.y22_c00368{bottom:640.000000pt;}
.y20_c00368{bottom:642.560000pt;}
.y1d_c00368{bottom:667.520000pt;}
.y1b_c00368{bottom:668.800000pt;}
.y1f_c00368{bottom:669.440000pt;}
.y1e_c00368{bottom:670.080000pt;}
.y1c_c00368{bottom:670.720000pt;}
.y18_c00368{bottom:706.560000pt;}
.y19_c00368{bottom:707.200000pt;}
.y16_c00368{bottom:707.840000pt;}
.y1a_c00368{bottom:709.120000pt;}
.y17_c00368{bottom:709.760000pt;}
.y14_c00368{bottom:746.240000pt;}
.y15_c00368{bottom:746.880000pt;}
.y13_c00368{bottom:748.800000pt;}
.yf_c00368{bottom:792.960000pt;}
.y12_c00368{bottom:793.600000pt;}
.ye_c00368{bottom:794.240000pt;}
.yd_c00368{bottom:830.720000pt;}
.y10_c00368{bottom:832.000000pt;}
.yc_c00368{bottom:832.640000pt;}
.y11_c00368{bottom:833.280000pt;}
.yb_c00368{bottom:869.760000pt;}
.y9_c00368{bottom:871.040000pt;}
.ya_c00368{bottom:872.320000pt;}
.y6_c00368{bottom:898.560000pt;}
.y5_c00368{bottom:899.200000pt;}
.y7_c00368{bottom:899.840000pt;}
.y8_c00368{bottom:901.120000pt;}
.y2_c00368{bottom:936.960000pt;}
.y4_c00368{bottom:937.600000pt;}
.y3_c00368{bottom:938.240000pt;}
.y1_c00368{bottom:978.560000pt;}
.hd_c00368{height:18.430000pt;}
.h13_c00368{height:20.733750pt;}
.hf_c00368{height:27.645000pt;}
.he_c00368{height:29.948750pt;}
.h14_c00368{height:34.556250pt;}
.h8_c00368{height:36.860000pt;}
.h9_c00368{height:39.163750pt;}
.ha_c00368{height:41.467500pt;}
.hb_c00368{height:43.771250pt;}
.h5_c00368{height:46.075000pt;}
.h6_c00368{height:48.378750pt;}
.h7_c00368{height:50.682500pt;}
.hc_c00368{height:52.986250pt;}
.h3_c00368{height:55.290000pt;}
.h4_c00368{height:57.593750pt;}
.h2_c00368{height:59.897500pt;}
.h10_c00368{height:62.201250pt;}
.h11_c00368{height:73.720000pt;}
.h12_c00368{height:82.935000pt;}
.h1_c00368{height:1021.333333pt;}
.h0_c00368{height:1021.440000pt;}
.w0_c00368{width:689.280000pt;}
.w1_c00368{width:689.333333pt;}
.x0_c00368{left:0.000000pt;}
.x2_c00368{left:50.560000pt;}
.x20_c00368{left:51.840000pt;}
.x34_c00368{left:53.760000pt;}
.x10_c00368{left:97.280000pt;}
.x1c_c00368{left:115.840000pt;}
.x7_c00368{left:117.120000pt;}
.x3_c00368{left:118.400000pt;}
.x1d_c00368{left:126.720000pt;}
.xf_c00368{left:155.520000pt;}
.xd_c00368{left:165.760000pt;}
.x11_c00368{left:183.680000pt;}
.x1e_c00368{left:193.280000pt;}
.x21_c00368{left:194.560000pt;}
.x8_c00368{left:203.520000pt;}
.x29_c00368{left:212.480000pt;}
.x26_c00368{left:222.720000pt;}
.x1f_c00368{left:224.640000pt;}
.x19_c00368{left:241.920000pt;}
.x9_c00368{left:251.520000pt;}
.x33_c00368{left:261.120000pt;}
.x2d_c00368{left:262.400000pt;}
.x14_c00368{left:280.960000pt;}
.x1a_c00368{left:290.560000pt;}
.xa_c00368{left:291.840000pt;}
.x2e_c00368{left:300.160000pt;}
.x22_c00368{left:318.720000pt;}
.x15_c00368{left:328.960000pt;}
.x32_c00368{left:347.520000pt;}
.xb_c00368{left:368.000000pt;}
.x2a_c00368{left:386.560000pt;}
.x2f_c00368{left:395.520000pt;}
.x16_c00368{left:404.480000pt;}
.xc_c00368{left:416.000000pt;}
.x30_c00368{left:434.560000pt;}
.x17_c00368{left:444.160000pt;}
.x1b_c00368{left:453.760000pt;}
.x23_c00368{left:462.720000pt;}
.x31_c00368{left:482.560000pt;}
.x18_c00368{left:483.840000pt;}
.x2b_c00368{left:492.160000pt;}
.x35_c00368{left:510.720000pt;}
.x27_c00368{left:512.000000pt;}
.x24_c00368{left:540.160000pt;}
.x4_c00368{left:541.440000pt;}
.x2c_c00368{left:569.600000pt;}
.x5_c00368{left:570.880000pt;}
.x25_c00368{left:599.040000pt;}
.x12_c00368{left:600.320000pt;}
.x1_c00368{left:601.600000pt;}
.x28_c00368{left:606.720000pt;}
.x6_c00368{left:608.640000pt;}
.xe_c00368{left:609.920000pt;}
.x13_c00368{left:627.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0b6c6f26fc413bc94ab209f5.woff2')format("woff");}.ff1_c00369{font-family:ff1_c00369;line-height:1.109863;font-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_c00369{transform:matrix(0.195575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195575,0.000000,0.000000,0.250000,0,0);}
.m3c_c00369{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);}
.m3d_c00369{transform:matrix(0.229950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229950,0.000000,0.000000,0.250000,0,0);}
.m42_c00369{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.me_c00369{transform:matrix(0.238800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238800,0.000000,0.000000,0.250000,0,0);}
.m1c_c00369{transform:matrix(0.239225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239225,0.000000,0.000000,0.250000,0,0);}
.m33_c00369{transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);}
.m23_c00369{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);}
.m3a_c00369{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);}
.m4c_c00369{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00369{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m46_c00369{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00369{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.md_c00369{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00369{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m13_c00369{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m30_c00369{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m7_c00369{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m6_c00369{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m28_c00369{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m15_c00369{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m47_c00369{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m39_c00369{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m41_c00369{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00369{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m9_c00369{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m2_c00369{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00369{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m22_c00369{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mb_c00369{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m3_c00369{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m29_c00369{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m49_c00369{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m14_c00369{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mc_c00369{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00369{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1_c00369{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m25_c00369{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m40_c00369{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);}
.m2a_c00369{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);}
.m21_c00369{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m43_c00369{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m31_c00369{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m8_c00369{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);}
.m18_c00369{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m20_c00369{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);}
.m3b_c00369{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m24_c00369{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);}
.m1d_c00369{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);}
.m5_c00369{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00369{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);}
.m36_c00369{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);}
.m0_c00369{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m17_c00369{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);}
.m1b_c00369{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);}
.m4_c00369{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m10_c00369{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00369{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m37_c00369{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00369{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m44_c00369{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);}
.ma_c00369{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);}
.m38_c00369{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00369{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.mf_c00369{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m26_c00369{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m19_c00369{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);}
.m1f_c00369{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);}
.m34_c00369{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m12_c00369{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);}
.m11_c00369{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m45_c00369{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);}
.m16_c00369{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m32_c00369{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);}
.m2e_c00369{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00369{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m35_c00369{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m27_c00369{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);}
.v0_c00369{vertical-align:0.000000px;}
.v1_c00369{vertical-align:8.640000px;}
.ls0_c00369{letter-spacing:0.000000px;}
.sc__c00369{text-shadow:none;}
.sc0_c00369{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00369{-webkit-text-stroke:0px transparent;}
.sc0_c00369{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00369{word-spacing:-4.164000px;}
.ws1_c00369{word-spacing:0.000000px;}
.fc0_c00369{color:transparent;}
.fsd_c00369{font-size:34.560000px;}
.fse_c00369{font-size:37.440000px;}
.fs9_c00369{font-size:40.320000px;}
.fsc_c00369{font-size:46.080000px;}
.fs7_c00369{font-size:48.960000px;}
.fs8_c00369{font-size:51.840000px;}
.fs5_c00369{font-size:54.720000px;}
.fs2_c00369{font-size:57.600000px;}
.fsa_c00369{font-size:60.480000px;}
.fs6_c00369{font-size:63.360000px;}
.fs1_c00369{font-size:66.240000px;}
.fs4_c00369{font-size:69.120000px;}
.fs0_c00369{font-size:72.000000px;}
.fs3_c00369{font-size:74.880000px;}
.fsb_c00369{font-size:77.760000px;}
.fsf_c00369{font-size:103.680000px;}
.y0_c00369{bottom:0.000000px;}
.y67_c00369{bottom:63.360000px;}
.y66_c00369{bottom:66.960000px;}
.y69_c00369{bottom:67.680000px;}
.y6a_c00369{bottom:69.120000px;}
.y6c_c00369{bottom:107.280000px;}
.y6d_c00369{bottom:108.000000px;}
.y6b_c00369{bottom:110.880000px;}
.y68_c00369{bottom:112.320000px;}
.y64_c00369{bottom:151.200000px;}
.y63_c00369{bottom:154.800000px;}
.y65_c00369{bottom:155.520000px;}
.y60_c00369{bottom:194.400000px;}
.y5f_c00369{bottom:198.000000px;}
.y61_c00369{bottom:198.720000px;}
.y62_c00369{bottom:199.440000px;}
.y5c_c00369{bottom:237.600000px;}
.y5b_c00369{bottom:240.480000px;}
.y5e_c00369{bottom:241.920000px;}
.y5d_c00369{bottom:244.080000px;}
.y58_c00369{bottom:280.800000px;}
.y57_c00369{bottom:283.680000px;}
.y59_c00369{bottom:284.400000px;}
.y5a_c00369{bottom:285.840000px;}
.y55_c00369{bottom:318.240000px;}
.y53_c00369{bottom:324.000000px;}
.y52_c00369{bottom:326.880000px;}
.y56_c00369{bottom:327.600000px;}
.y54_c00369{bottom:328.320000px;}
.y4e_c00369{bottom:367.200000px;}
.y4f_c00369{bottom:367.920000px;}
.y4d_c00369{bottom:369.360000px;}
.y50_c00369{bottom:370.080000px;}
.y51_c00369{bottom:370.800000px;}
.y4a_c00369{bottom:410.400000px;}
.y49_c00369{bottom:412.560000px;}
.y4b_c00369{bottom:413.280000px;}
.y4c_c00369{bottom:416.160000px;}
.y46_c00369{bottom:455.040000px;}
.y47_c00369{bottom:455.760000px;}
.y48_c00369{bottom:457.920000px;}
.y40_c00369{bottom:486.000000px;}
.y41_c00369{bottom:487.440000px;}
.y3f_c00369{bottom:488.160000px;}
.y45_c00369{bottom:488.880000px;}
.y44_c00369{bottom:489.600000px;}
.y42_c00369{bottom:490.320000px;}
.y43_c00369{bottom:491.040000px;}
.y3d_c00369{bottom:529.920000px;}
.y3b_c00369{bottom:531.360000px;}
.y3c_c00369{bottom:533.520000px;}
.y38_c00369{bottom:562.320000px;}
.y39_c00369{bottom:563.760000px;}
.y37_c00369{bottom:564.480000px;}
.y3e_c00369{bottom:565.920000px;}
.y3a_c00369{bottom:566.640000px;}
.y34_c00369{bottom:606.240000px;}
.y32_c00369{bottom:606.960000px;}
.y31_c00369{bottom:607.680000px;}
.y33_c00369{bottom:609.840000px;}
.y2f_c00369{bottom:637.920000px;}
.y2e_c00369{bottom:640.080000px;}
.y35_c00369{bottom:640.800000px;}
.y30_c00369{bottom:642.240000px;}
.y36_c00369{bottom:642.960000px;}
.y2b_c00369{bottom:681.840000px;}
.y29_c00369{bottom:682.560000px;}
.y2a_c00369{bottom:685.440000px;}
.y26_c00369{bottom:714.240000px;}
.y25_c00369{bottom:714.960000px;}
.y2c_c00369{bottom:715.680000px;}
.y2d_c00369{bottom:716.400000px;}
.y27_c00369{bottom:717.120000px;}
.y28_c00369{bottom:717.840000px;}
.y20_c00369{bottom:757.440000px;}
.y21_c00369{bottom:758.160000px;}
.y1f_c00369{bottom:758.880000px;}
.y24_c00369{bottom:760.320000px;}
.y23_c00369{bottom:761.040000px;}
.y22_c00369{bottom:761.760000px;}
.y1e_c00369{bottom:800.640000px;}
.y1d_c00369{bottom:801.360000px;}
.y1c_c00369{bottom:802.080000px;}
.y18_c00369{bottom:832.320000px;}
.y19_c00369{bottom:833.760000px;}
.y17_c00369{bottom:834.480000px;}
.y1b_c00369{bottom:835.920000px;}
.y1a_c00369{bottom:836.640000px;}
.y15_c00369{bottom:877.680000px;}
.y16_c00369{bottom:878.400000px;}
.y14_c00369{bottom:880.560000px;}
.y13_c00369{bottom:928.800000px;}
.y11_c00369{bottom:930.240000px;}
.y12_c00369{bottom:931.680000px;}
.y10_c00369{bottom:932.400000px;}
.yb_c00369{bottom:961.200000px;}
.yf_c00369{bottom:961.920000px;}
.ya_c00369{bottom:962.640000px;}
.ye_c00369{bottom:964.080000px;}
.yd_c00369{bottom:964.800000px;}
.yc_c00369{bottom:965.520000px;}
.y7_c00369{bottom:1004.400000px;}
.y9_c00369{bottom:1005.120000px;}
.y6_c00369{bottom:1006.560000px;}
.y8_c00369{bottom:1007.280000px;}
.y4_c00369{bottom:1047.600000px;}
.y5_c00369{bottom:1048.320000px;}
.y2_c00369{bottom:1049.040000px;}
.y3_c00369{bottom:1049.760000px;}
.y1_c00369{bottom:1100.160000px;}
.hf_c00369{height:31.100625px;}
.h10_c00369{height:33.692344px;}
.hb_c00369{height:36.284062px;}
.he_c00369{height:41.467500px;}
.h9_c00369{height:44.059219px;}
.ha_c00369{height:46.650937px;}
.h7_c00369{height:49.242656px;}
.h4_c00369{height:51.834375px;}
.hc_c00369{height:54.426094px;}
.h8_c00369{height:57.017812px;}
.h3_c00369{height:59.609531px;}
.h6_c00369{height:62.201250px;}
.h2_c00369{height:64.792969px;}
.h5_c00369{height:67.384687px;}
.hd_c00369{height:69.976406px;}
.h11_c00369{height:93.301875px;}
.h1_c00369{height:1147.500000px;}
.h0_c00369{height:1147.680000px;}
.w1_c00369{width:772.500000px;}
.w0_c00369{width:772.560000px;}
.x0_c00369{left:0.000000px;}
.x2_c00369{left:52.560000px;}
.x1c_c00369{left:54.000000px;}
.x32_c00369{left:55.440000px;}
.x14_c00369{left:107.280000px;}
.x11_c00369{left:128.160000px;}
.x3_c00369{left:129.600000px;}
.x1f_c00369{left:170.640000px;}
.x4_c00369{left:182.880000px;}
.x15_c00369{left:203.040000px;}
.x20_c00369{left:214.560000px;}
.xb_c00369{left:225.360000px;}
.x24_c00369{left:236.160000px;}
.x2d_c00369{left:247.680000px;}
.x1d_c00369{left:269.280000px;}
.x26_c00369{left:278.640000px;}
.xc_c00369{left:280.800000px;}
.x25_c00369{left:291.600000px;}
.x9_c00369{left:311.040000px;}
.x18_c00369{left:323.280000px;}
.x12_c00369{left:333.360000px;}
.x27_c00369{left:334.800000px;}
.x2b_c00369{left:355.680000px;}
.x28_c00369{left:365.760000px;}
.x5_c00369{left:367.200000px;}
.xd_c00369{left:378.000000px;}
.x30_c00369{left:386.640000px;}
.x13_c00369{left:388.800000px;}
.x19_c00369{left:409.680000px;}
.xa_c00369{left:432.000000px;}
.x16_c00369{left:442.080000px;}
.x2c_c00369{left:453.600000px;}
.x23_c00369{left:462.240000px;}
.x1a_c00369{left:463.680000px;}
.xe_c00369{left:474.480000px;}
.x1e_c00369{left:496.080000px;}
.x1b_c00369{left:506.880000px;}
.x21_c00369{left:517.680000px;}
.x17_c00369{left:540.000000px;}
.x29_c00369{left:550.800000px;}
.x6_c00369{left:572.400000px;}
.x2e_c00369{left:582.480000px;}
.x31_c00369{left:603.360000px;}
.xf_c00369{left:605.520000px;}
.x2a_c00369{left:637.200000px;}
.x7_c00369{left:638.640000px;}
.x22_c00369{left:648.000000px;}
.x1_c00369{left:671.760000px;}
.x2f_c00369{left:678.960000px;}
.x10_c00369{left:680.400000px;}
.x8_c00369{left:681.840000px;}
@media print{
.v0_c00369{vertical-align:0.000000pt;}
.v1_c00369{vertical-align:7.680000pt;}
.ls0_c00369{letter-spacing:0.000000pt;}
.ws0_c00369{word-spacing:-3.701333pt;}
.ws1_c00369{word-spacing:0.000000pt;}
.fsd_c00369{font-size:30.720000pt;}
.fse_c00369{font-size:33.280000pt;}
.fs9_c00369{font-size:35.840000pt;}
.fsc_c00369{font-size:40.960000pt;}
.fs7_c00369{font-size:43.520000pt;}
.fs8_c00369{font-size:46.080000pt;}
.fs5_c00369{font-size:48.640000pt;}
.fs2_c00369{font-size:51.200000pt;}
.fsa_c00369{font-size:53.760000pt;}
.fs6_c00369{font-size:56.320000pt;}
.fs1_c00369{font-size:58.880000pt;}
.fs4_c00369{font-size:61.440000pt;}
.fs0_c00369{font-size:64.000000pt;}
.fs3_c00369{font-size:66.560000pt;}
.fsb_c00369{font-size:69.120000pt;}
.fsf_c00369{font-size:92.160000pt;}
.y0_c00369{bottom:0.000000pt;}
.y67_c00369{bottom:56.320000pt;}
.y66_c00369{bottom:59.520000pt;}
.y69_c00369{bottom:60.160000pt;}
.y6a_c00369{bottom:61.440000pt;}
.y6c_c00369{bottom:95.360000pt;}
.y6d_c00369{bottom:96.000000pt;}
.y6b_c00369{bottom:98.560000pt;}
.y68_c00369{bottom:99.840000pt;}
.y64_c00369{bottom:134.400000pt;}
.y63_c00369{bottom:137.600000pt;}
.y65_c00369{bottom:138.240000pt;}
.y60_c00369{bottom:172.800000pt;}
.y5f_c00369{bottom:176.000000pt;}
.y61_c00369{bottom:176.640000pt;}
.y62_c00369{bottom:177.280000pt;}
.y5c_c00369{bottom:211.200000pt;}
.y5b_c00369{bottom:213.760000pt;}
.y5e_c00369{bottom:215.040000pt;}
.y5d_c00369{bottom:216.960000pt;}
.y58_c00369{bottom:249.600000pt;}
.y57_c00369{bottom:252.160000pt;}
.y59_c00369{bottom:252.800000pt;}
.y5a_c00369{bottom:254.080000pt;}
.y55_c00369{bottom:282.880000pt;}
.y53_c00369{bottom:288.000000pt;}
.y52_c00369{bottom:290.560000pt;}
.y56_c00369{bottom:291.200000pt;}
.y54_c00369{bottom:291.840000pt;}
.y4e_c00369{bottom:326.400000pt;}
.y4f_c00369{bottom:327.040000pt;}
.y4d_c00369{bottom:328.320000pt;}
.y50_c00369{bottom:328.960000pt;}
.y51_c00369{bottom:329.600000pt;}
.y4a_c00369{bottom:364.800000pt;}
.y49_c00369{bottom:366.720000pt;}
.y4b_c00369{bottom:367.360000pt;}
.y4c_c00369{bottom:369.920000pt;}
.y46_c00369{bottom:404.480000pt;}
.y47_c00369{bottom:405.120000pt;}
.y48_c00369{bottom:407.040000pt;}
.y40_c00369{bottom:432.000000pt;}
.y41_c00369{bottom:433.280000pt;}
.y3f_c00369{bottom:433.920000pt;}
.y45_c00369{bottom:434.560000pt;}
.y44_c00369{bottom:435.200000pt;}
.y42_c00369{bottom:435.840000pt;}
.y43_c00369{bottom:436.480000pt;}
.y3d_c00369{bottom:471.040000pt;}
.y3b_c00369{bottom:472.320000pt;}
.y3c_c00369{bottom:474.240000pt;}
.y38_c00369{bottom:499.840000pt;}
.y39_c00369{bottom:501.120000pt;}
.y37_c00369{bottom:501.760000pt;}
.y3e_c00369{bottom:503.040000pt;}
.y3a_c00369{bottom:503.680000pt;}
.y34_c00369{bottom:538.880000pt;}
.y32_c00369{bottom:539.520000pt;}
.y31_c00369{bottom:540.160000pt;}
.y33_c00369{bottom:542.080000pt;}
.y2f_c00369{bottom:567.040000pt;}
.y2e_c00369{bottom:568.960000pt;}
.y35_c00369{bottom:569.600000pt;}
.y30_c00369{bottom:570.880000pt;}
.y36_c00369{bottom:571.520000pt;}
.y2b_c00369{bottom:606.080000pt;}
.y29_c00369{bottom:606.720000pt;}
.y2a_c00369{bottom:609.280000pt;}
.y26_c00369{bottom:634.880000pt;}
.y25_c00369{bottom:635.520000pt;}
.y2c_c00369{bottom:636.160000pt;}
.y2d_c00369{bottom:636.800000pt;}
.y27_c00369{bottom:637.440000pt;}
.y28_c00369{bottom:638.080000pt;}
.y20_c00369{bottom:673.280000pt;}
.y21_c00369{bottom:673.920000pt;}
.y1f_c00369{bottom:674.560000pt;}
.y24_c00369{bottom:675.840000pt;}
.y23_c00369{bottom:676.480000pt;}
.y22_c00369{bottom:677.120000pt;}
.y1e_c00369{bottom:711.680000pt;}
.y1d_c00369{bottom:712.320000pt;}
.y1c_c00369{bottom:712.960000pt;}
.y18_c00369{bottom:739.840000pt;}
.y19_c00369{bottom:741.120000pt;}
.y17_c00369{bottom:741.760000pt;}
.y1b_c00369{bottom:743.040000pt;}
.y1a_c00369{bottom:743.680000pt;}
.y15_c00369{bottom:780.160000pt;}
.y16_c00369{bottom:780.800000pt;}
.y14_c00369{bottom:782.720000pt;}
.y13_c00369{bottom:825.600000pt;}
.y11_c00369{bottom:826.880000pt;}
.y12_c00369{bottom:828.160000pt;}
.y10_c00369{bottom:828.800000pt;}
.yb_c00369{bottom:854.400000pt;}
.yf_c00369{bottom:855.040000pt;}
.ya_c00369{bottom:855.680000pt;}
.ye_c00369{bottom:856.960000pt;}
.yd_c00369{bottom:857.600000pt;}
.yc_c00369{bottom:858.240000pt;}
.y7_c00369{bottom:892.800000pt;}
.y9_c00369{bottom:893.440000pt;}
.y6_c00369{bottom:894.720000pt;}
.y8_c00369{bottom:895.360000pt;}
.y4_c00369{bottom:931.200000pt;}
.y5_c00369{bottom:931.840000pt;}
.y2_c00369{bottom:932.480000pt;}
.y3_c00369{bottom:933.120000pt;}
.y1_c00369{bottom:977.920000pt;}
.hf_c00369{height:27.645000pt;}
.h10_c00369{height:29.948750pt;}
.hb_c00369{height:32.252500pt;}
.he_c00369{height:36.860000pt;}
.h9_c00369{height:39.163750pt;}
.ha_c00369{height:41.467500pt;}
.h7_c00369{height:43.771250pt;}
.h4_c00369{height:46.075000pt;}
.hc_c00369{height:48.378750pt;}
.h8_c00369{height:50.682500pt;}
.h3_c00369{height:52.986250pt;}
.h6_c00369{height:55.290000pt;}
.h2_c00369{height:57.593750pt;}
.h5_c00369{height:59.897500pt;}
.hd_c00369{height:62.201250pt;}
.h11_c00369{height:82.935000pt;}
.h1_c00369{height:1020.000000pt;}
.h0_c00369{height:1020.160000pt;}
.w1_c00369{width:686.666667pt;}
.w0_c00369{width:686.720000pt;}
.x0_c00369{left:0.000000pt;}
.x2_c00369{left:46.720000pt;}
.x1c_c00369{left:48.000000pt;}
.x32_c00369{left:49.280000pt;}
.x14_c00369{left:95.360000pt;}
.x11_c00369{left:113.920000pt;}
.x3_c00369{left:115.200000pt;}
.x1f_c00369{left:151.680000pt;}
.x4_c00369{left:162.560000pt;}
.x15_c00369{left:180.480000pt;}
.x20_c00369{left:190.720000pt;}
.xb_c00369{left:200.320000pt;}
.x24_c00369{left:209.920000pt;}
.x2d_c00369{left:220.160000pt;}
.x1d_c00369{left:239.360000pt;}
.x26_c00369{left:247.680000pt;}
.xc_c00369{left:249.600000pt;}
.x25_c00369{left:259.200000pt;}
.x9_c00369{left:276.480000pt;}
.x18_c00369{left:287.360000pt;}
.x12_c00369{left:296.320000pt;}
.x27_c00369{left:297.600000pt;}
.x2b_c00369{left:316.160000pt;}
.x28_c00369{left:325.120000pt;}
.x5_c00369{left:326.400000pt;}
.xd_c00369{left:336.000000pt;}
.x30_c00369{left:343.680000pt;}
.x13_c00369{left:345.600000pt;}
.x19_c00369{left:364.160000pt;}
.xa_c00369{left:384.000000pt;}
.x16_c00369{left:392.960000pt;}
.x2c_c00369{left:403.200000pt;}
.x23_c00369{left:410.880000pt;}
.x1a_c00369{left:412.160000pt;}
.xe_c00369{left:421.760000pt;}
.x1e_c00369{left:440.960000pt;}
.x1b_c00369{left:450.560000pt;}
.x21_c00369{left:460.160000pt;}
.x17_c00369{left:480.000000pt;}
.x29_c00369{left:489.600000pt;}
.x6_c00369{left:508.800000pt;}
.x2e_c00369{left:517.760000pt;}
.x31_c00369{left:536.320000pt;}
.xf_c00369{left:538.240000pt;}
.x2a_c00369{left:566.400000pt;}
.x7_c00369{left:567.680000pt;}
.x22_c00369{left:576.000000pt;}
.x1_c00369{left:597.120000pt;}
.x2f_c00369{left:603.520000pt;}
.x10_c00369{left:604.800000pt;}
.x8_c00369{left:606.080000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_336dae99af46847234df237d.woff2')format("woff");}.ff1_c00370{font-family:ff1_c00370;line-height:1.109863;font-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_c00370{transform:matrix(0.224925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224925,0.000000,0.000000,0.250000,0,0);}
.m4b_c00370{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);}
.m46_c00370{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m37_c00370{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m1e_c00370{transform:matrix(0.238800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238800,0.000000,0.000000,0.250000,0,0);}
.m39_c00370{transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);}
.m35_c00370{transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);}
.m3d_c00370{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.mc_c00370{transform:matrix(0.248350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248350,0.000000,0.000000,0.250000,0,0);}
.m2b_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);}
.me_c00370{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_c00370{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m10_c00370{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);}
.m3c_c00370{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m13_c00370{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m42_c00370{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m9_c00370{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m15_c00370{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m2_c00370{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.ma_c00370{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m16_c00370{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m22_c00370{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00370{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m1_c00370{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00370{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m17_c00370{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00370{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m36_c00370{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00370{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m26_c00370{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00370{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m18_c00370{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m47_c00370{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m49_c00370{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00370{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00370{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m19_c00370{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m28_c00370{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m24_c00370{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m0_c00370{transform:matrix(0.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);}
.m4a_c00370{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);}
.m43_c00370{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.mb_c00370{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.mf_c00370{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m30_c00370{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m23_c00370{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m33_c00370{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);}
.m5_c00370{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00370{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m8_c00370{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);}
.m31_c00370{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m45_c00370{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);}
.m2c_c00370{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.md_c00370{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m20_c00370{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m32_c00370{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m4_c00370{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m3_c00370{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m12_c00370{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);}
.m38_c00370{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);}
.m41_c00370{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m29_c00370{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m44_c00370{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00370{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);}
.m11_c00370{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m7_c00370{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00370{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m48_c00370{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);}
.m2f_c00370{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m25_c00370{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);}
.m27_c00370{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00370{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00370{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00370{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m21_c00370{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);}
.m34_c00370{transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);}
.m40_c00370{transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);}
.v0_c00370{vertical-align:0.000000px;}
.v1_c00370{vertical-align:2.880000px;}
.ls0_c00370{letter-spacing:0.000000px;}
.sc__c00370{text-shadow:none;}
.sc0_c00370{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00370{-webkit-text-stroke:0px transparent;}
.sc0_c00370{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00370{word-spacing:0.000000px;}
.ws0_c00370{word-spacing:157.514640px;}
.fc0_c00370{color:transparent;}
.fsd_c00370{font-size:34.560000px;}
.fsc_c00370{font-size:37.440000px;}
.fse_c00370{font-size:40.320000px;}
.fsf_c00370{font-size:43.200000px;}
.fs3_c00370{font-size:46.080000px;}
.fs5_c00370{font-size:48.960000px;}
.fs2_c00370{font-size:51.840000px;}
.fs6_c00370{font-size:54.720000px;}
.fsa_c00370{font-size:57.600000px;}
.fs1_c00370{font-size:60.480000px;}
.fs4_c00370{font-size:63.360000px;}
.fsb_c00370{font-size:66.240000px;}
.fs8_c00370{font-size:69.120000px;}
.fs7_c00370{font-size:72.000000px;}
.fs0_c00370{font-size:74.880000px;}
.fs9_c00370{font-size:77.760000px;}
.y0_c00370{bottom:0.000000px;}
.y79_c00370{bottom:25.200000px;}
.y77_c00370{bottom:26.640000px;}
.y76_c00370{bottom:27.360000px;}
.y78_c00370{bottom:29.520000px;}
.y72_c00370{bottom:58.320000px;}
.y73_c00370{bottom:59.040000px;}
.y7a_c00370{bottom:60.480000px;}
.y74_c00370{bottom:61.200000px;}
.y75_c00370{bottom:61.920000px;}
.y71_c00370{bottom:62.640000px;}
.y70_c00370{bottom:100.080000px;}
.y6e_c00370{bottom:102.240000px;}
.y6f_c00370{bottom:104.400000px;}
.y6b_c00370{bottom:133.920000px;}
.y6d_c00370{bottom:135.360000px;}
.y6c_c00370{bottom:136.800000px;}
.y6a_c00370{bottom:137.520000px;}
.y68_c00370{bottom:176.400000px;}
.y66_c00370{bottom:177.120000px;}
.y64_c00370{bottom:178.560000px;}
.y65_c00370{bottom:180.000000px;}
.y67_c00370{bottom:180.720000px;}
.y61_c00370{bottom:208.800000px;}
.y63_c00370{bottom:210.960000px;}
.y69_c00370{bottom:211.680000px;}
.y60_c00370{bottom:212.400000px;}
.y62_c00370{bottom:213.120000px;}
.y5d_c00370{bottom:252.720000px;}
.y5f_c00370{bottom:253.440000px;}
.y5e_c00370{bottom:254.160000px;}
.y5c_c00370{bottom:256.320000px;}
.y5b_c00370{bottom:298.080000px;}
.y59_c00370{bottom:298.800000px;}
.y58_c00370{bottom:301.680000px;}
.y5a_c00370{bottom:304.560000px;}
.y51_c00370{bottom:349.920000px;}
.y55_c00370{bottom:350.640000px;}
.y52_c00370{bottom:351.360000px;}
.y54_c00370{bottom:352.080000px;}
.y56_c00370{bottom:352.800000px;}
.y50_c00370{bottom:353.520000px;}
.y53_c00370{bottom:354.240000px;}
.y57_c00370{bottom:354.960000px;}
.y4a_c00370{bottom:393.120000px;}
.y4c_c00370{bottom:394.560000px;}
.y4b_c00370{bottom:395.280000px;}
.y4e_c00370{bottom:396.000000px;}
.y49_c00370{bottom:396.720000px;}
.y4d_c00370{bottom:397.440000px;}
.y4f_c00370{bottom:398.160000px;}
.y47_c00370{bottom:439.200000px;}
.y48_c00370{bottom:439.920000px;}
.y46_c00370{bottom:440.640000px;}
.y42_c00370{bottom:491.040000px;}
.y45_c00370{bottom:492.480000px;}
.y44_c00370{bottom:493.200000px;}
.y41_c00370{bottom:493.920000px;}
.y40_c00370{bottom:534.240000px;}
.y43_c00370{bottom:535.680000px;}
.y3e_c00370{bottom:536.400000px;}
.y3f_c00370{bottom:537.840000px;}
.y3c_c00370{bottom:578.880000px;}
.y3b_c00370{bottom:579.600000px;}
.y3d_c00370{bottom:580.320000px;}
.y3a_c00370{bottom:581.040000px;}
.y39_c00370{bottom:630.720000px;}
.y38_c00370{bottom:632.160000px;}
.y37_c00370{bottom:634.320000px;}
.y33_c00370{bottom:663.120000px;}
.y36_c00370{bottom:663.840000px;}
.y32_c00370{bottom:665.280000px;}
.y35_c00370{bottom:666.000000px;}
.y34_c00370{bottom:666.720000px;}
.y31_c00370{bottom:699.120000px;}
.y2f_c00370{bottom:705.600000px;}
.y2b_c00370{bottom:706.320000px;}
.y2e_c00370{bottom:707.040000px;}
.y2c_c00370{bottom:707.760000px;}
.y2a_c00370{bottom:708.480000px;}
.y2d_c00370{bottom:709.200000px;}
.y30_c00370{bottom:709.920000px;}
.y29_c00370{bottom:741.600000px;}
.y24_c00370{bottom:748.800000px;}
.y27_c00370{bottom:749.520000px;}
.y26_c00370{bottom:750.240000px;}
.y23_c00370{bottom:750.960000px;}
.y25_c00370{bottom:753.120000px;}
.y28_c00370{bottom:753.840000px;}
.y1f_c00370{bottom:792.720000px;}
.y22_c00370{bottom:794.160000px;}
.y1e_c00370{bottom:794.880000px;}
.y20_c00370{bottom:795.600000px;}
.y21_c00370{bottom:796.320000px;}
.y1c_c00370{bottom:835.920000px;}
.y1d_c00370{bottom:836.640000px;}
.y1b_c00370{bottom:837.360000px;}
.y18_c00370{bottom:879.120000px;}
.y1a_c00370{bottom:879.840000px;}
.y19_c00370{bottom:880.560000px;}
.y17_c00370{bottom:882.000000px;}
.y15_c00370{bottom:921.600000px;}
.y12_c00370{bottom:922.320000px;}
.y16_c00370{bottom:923.040000px;}
.y13_c00370{bottom:923.760000px;}
.y11_c00370{bottom:924.480000px;}
.y14_c00370{bottom:925.920000px;}
.yf_c00370{bottom:964.800000px;}
.yc_c00370{bottom:966.240000px;}
.yd_c00370{bottom:966.960000px;}
.yb_c00370{bottom:967.680000px;}
.ye_c00370{bottom:968.400000px;}
.y10_c00370{bottom:969.840000px;}
.y9_c00370{bottom:1008.000000px;}
.y6_c00370{bottom:1008.720000px;}
.ya_c00370{bottom:1009.440000px;}
.y7_c00370{bottom:1010.880000px;}
.y5_c00370{bottom:1011.600000px;}
.y8_c00370{bottom:1012.320000px;}
.y3_c00370{bottom:1053.360000px;}
.y4_c00370{bottom:1054.800000px;}
.y2_c00370{bottom:1056.960000px;}
.y1_c00370{bottom:1105.920000px;}
.hf_c00370{height:31.100625px;}
.he_c00370{height:33.692344px;}
.h10_c00370{height:36.284062px;}
.h11_c00370{height:38.875781px;}
.h5_c00370{height:41.467500px;}
.h7_c00370{height:44.059219px;}
.h4_c00370{height:46.650937px;}
.h8_c00370{height:49.242656px;}
.hc_c00370{height:51.834375px;}
.h3_c00370{height:54.426094px;}
.h6_c00370{height:57.017812px;}
.hd_c00370{height:59.609531px;}
.ha_c00370{height:62.201250px;}
.h9_c00370{height:64.792969px;}
.h2_c00370{height:67.384687px;}
.hb_c00370{height:69.976406px;}
.h1_c00370{height:1147.500000px;}
.h0_c00370{height:1147.680000px;}
.w1_c00370{width:772.500000px;}
.w0_c00370{width:772.560000px;}
.x0_c00370{left:0.000000px;}
.x6_c00370{left:58.320000px;}
.x39_c00370{left:59.760000px;}
.x1f_c00370{left:110.160000px;}
.x2_c00370{left:111.600000px;}
.x23_c00370{left:131.760000px;}
.x7_c00370{left:133.200000px;}
.x20_c00370{left:143.280000px;}
.x2e_c00370{left:145.440000px;}
.x2f_c00370{left:154.080000px;}
.x24_c00370{left:155.520000px;}
.x21_c00370{left:166.320000px;}
.x3e_c00370{left:174.960000px;}
.x37_c00370{left:185.760000px;}
.x1b_c00370{left:187.200000px;}
.x3_c00370{left:188.640000px;}
.x32_c00370{left:195.840000px;}
.x30_c00370{left:198.000000px;}
.x26_c00370{left:208.800000px;}
.x27_c00370{left:220.320000px;}
.x1c_c00370{left:228.960000px;}
.x4_c00370{left:231.120000px;}
.x22_c00370{left:240.480000px;}
.x3f_c00370{left:272.160000px;}
.x31_c00370{left:273.600000px;}
.x2a_c00370{left:282.960000px;}
.x8_c00370{left:285.840000px;}
.x33_c00370{left:294.480000px;}
.x28_c00370{left:316.080000px;}
.x15_c00370{left:317.520000px;}
.x5_c00370{left:327.600000px;}
.x1d_c00370{left:338.400000px;}
.x3a_c00370{left:348.480000px;}
.x35_c00370{left:368.640000px;}
.x11_c00370{left:370.080000px;}
.xc_c00370{left:371.520000px;}
.x19_c00370{left:381.600000px;}
.x1e_c00370{left:393.120000px;}
.x3b_c00370{left:401.760000px;}
.x29_c00370{left:413.280000px;}
.xd_c00370{left:425.520000px;}
.x1a_c00370{left:436.320000px;}
.x3c_c00370{left:445.680000px;}
.x36_c00370{left:455.760000px;}
.x16_c00370{left:468.000000px;}
.xe_c00370{left:469.440000px;}
.x12_c00370{left:479.520000px;}
.x3d_c00370{left:488.160000px;}
.x2b_c00370{left:510.480000px;}
.x17_c00370{left:522.720000px;}
.x13_c00370{left:533.520000px;}
.x2c_c00370{left:576.720000px;}
.x38_c00370{left:606.960000px;}
.x14_c00370{left:609.840000px;}
.x9_c00370{left:611.280000px;}
.x25_c00370{left:642.240000px;}
.xa_c00370{left:643.680000px;}
.x2d_c00370{left:651.600000px;}
.x18_c00370{left:653.040000px;}
.xf_c00370{left:654.480000px;}
.x34_c00370{left:683.280000px;}
.x10_c00370{left:685.440000px;}
.xb_c00370{left:686.880000px;}
.x1_c00370{left:691.920000px;}
@media print{
.v0_c00370{vertical-align:0.000000pt;}
.v1_c00370{vertical-align:2.560000pt;}
.ls0_c00370{letter-spacing:0.000000pt;}
.ws1_c00370{word-spacing:0.000000pt;}
.ws0_c00370{word-spacing:140.013013pt;}
.fsd_c00370{font-size:30.720000pt;}
.fsc_c00370{font-size:33.280000pt;}
.fse_c00370{font-size:35.840000pt;}
.fsf_c00370{font-size:38.400000pt;}
.fs3_c00370{font-size:40.960000pt;}
.fs5_c00370{font-size:43.520000pt;}
.fs2_c00370{font-size:46.080000pt;}
.fs6_c00370{font-size:48.640000pt;}
.fsa_c00370{font-size:51.200000pt;}
.fs1_c00370{font-size:53.760000pt;}
.fs4_c00370{font-size:56.320000pt;}
.fsb_c00370{font-size:58.880000pt;}
.fs8_c00370{font-size:61.440000pt;}
.fs7_c00370{font-size:64.000000pt;}
.fs0_c00370{font-size:66.560000pt;}
.fs9_c00370{font-size:69.120000pt;}
.y0_c00370{bottom:0.000000pt;}
.y79_c00370{bottom:22.400000pt;}
.y77_c00370{bottom:23.680000pt;}
.y76_c00370{bottom:24.320000pt;}
.y78_c00370{bottom:26.240000pt;}
.y72_c00370{bottom:51.840000pt;}
.y73_c00370{bottom:52.480000pt;}
.y7a_c00370{bottom:53.760000pt;}
.y74_c00370{bottom:54.400000pt;}
.y75_c00370{bottom:55.040000pt;}
.y71_c00370{bottom:55.680000pt;}
.y70_c00370{bottom:88.960000pt;}
.y6e_c00370{bottom:90.880000pt;}
.y6f_c00370{bottom:92.800000pt;}
.y6b_c00370{bottom:119.040000pt;}
.y6d_c00370{bottom:120.320000pt;}
.y6c_c00370{bottom:121.600000pt;}
.y6a_c00370{bottom:122.240000pt;}
.y68_c00370{bottom:156.800000pt;}
.y66_c00370{bottom:157.440000pt;}
.y64_c00370{bottom:158.720000pt;}
.y65_c00370{bottom:160.000000pt;}
.y67_c00370{bottom:160.640000pt;}
.y61_c00370{bottom:185.600000pt;}
.y63_c00370{bottom:187.520000pt;}
.y69_c00370{bottom:188.160000pt;}
.y60_c00370{bottom:188.800000pt;}
.y62_c00370{bottom:189.440000pt;}
.y5d_c00370{bottom:224.640000pt;}
.y5f_c00370{bottom:225.280000pt;}
.y5e_c00370{bottom:225.920000pt;}
.y5c_c00370{bottom:227.840000pt;}
.y5b_c00370{bottom:264.960000pt;}
.y59_c00370{bottom:265.600000pt;}
.y58_c00370{bottom:268.160000pt;}
.y5a_c00370{bottom:270.720000pt;}
.y51_c00370{bottom:311.040000pt;}
.y55_c00370{bottom:311.680000pt;}
.y52_c00370{bottom:312.320000pt;}
.y54_c00370{bottom:312.960000pt;}
.y56_c00370{bottom:313.600000pt;}
.y50_c00370{bottom:314.240000pt;}
.y53_c00370{bottom:314.880000pt;}
.y57_c00370{bottom:315.520000pt;}
.y4a_c00370{bottom:349.440000pt;}
.y4c_c00370{bottom:350.720000pt;}
.y4b_c00370{bottom:351.360000pt;}
.y4e_c00370{bottom:352.000000pt;}
.y49_c00370{bottom:352.640000pt;}
.y4d_c00370{bottom:353.280000pt;}
.y4f_c00370{bottom:353.920000pt;}
.y47_c00370{bottom:390.400000pt;}
.y48_c00370{bottom:391.040000pt;}
.y46_c00370{bottom:391.680000pt;}
.y42_c00370{bottom:436.480000pt;}
.y45_c00370{bottom:437.760000pt;}
.y44_c00370{bottom:438.400000pt;}
.y41_c00370{bottom:439.040000pt;}
.y40_c00370{bottom:474.880000pt;}
.y43_c00370{bottom:476.160000pt;}
.y3e_c00370{bottom:476.800000pt;}
.y3f_c00370{bottom:478.080000pt;}
.y3c_c00370{bottom:514.560000pt;}
.y3b_c00370{bottom:515.200000pt;}
.y3d_c00370{bottom:515.840000pt;}
.y3a_c00370{bottom:516.480000pt;}
.y39_c00370{bottom:560.640000pt;}
.y38_c00370{bottom:561.920000pt;}
.y37_c00370{bottom:563.840000pt;}
.y33_c00370{bottom:589.440000pt;}
.y36_c00370{bottom:590.080000pt;}
.y32_c00370{bottom:591.360000pt;}
.y35_c00370{bottom:592.000000pt;}
.y34_c00370{bottom:592.640000pt;}
.y31_c00370{bottom:621.440000pt;}
.y2f_c00370{bottom:627.200000pt;}
.y2b_c00370{bottom:627.840000pt;}
.y2e_c00370{bottom:628.480000pt;}
.y2c_c00370{bottom:629.120000pt;}
.y2a_c00370{bottom:629.760000pt;}
.y2d_c00370{bottom:630.400000pt;}
.y30_c00370{bottom:631.040000pt;}
.y29_c00370{bottom:659.200000pt;}
.y24_c00370{bottom:665.600000pt;}
.y27_c00370{bottom:666.240000pt;}
.y26_c00370{bottom:666.880000pt;}
.y23_c00370{bottom:667.520000pt;}
.y25_c00370{bottom:669.440000pt;}
.y28_c00370{bottom:670.080000pt;}
.y1f_c00370{bottom:704.640000pt;}
.y22_c00370{bottom:705.920000pt;}
.y1e_c00370{bottom:706.560000pt;}
.y20_c00370{bottom:707.200000pt;}
.y21_c00370{bottom:707.840000pt;}
.y1c_c00370{bottom:743.040000pt;}
.y1d_c00370{bottom:743.680000pt;}
.y1b_c00370{bottom:744.320000pt;}
.y18_c00370{bottom:781.440000pt;}
.y1a_c00370{bottom:782.080000pt;}
.y19_c00370{bottom:782.720000pt;}
.y17_c00370{bottom:784.000000pt;}
.y15_c00370{bottom:819.200000pt;}
.y12_c00370{bottom:819.840000pt;}
.y16_c00370{bottom:820.480000pt;}
.y13_c00370{bottom:821.120000pt;}
.y11_c00370{bottom:821.760000pt;}
.y14_c00370{bottom:823.040000pt;}
.yf_c00370{bottom:857.600000pt;}
.yc_c00370{bottom:858.880000pt;}
.yd_c00370{bottom:859.520000pt;}
.yb_c00370{bottom:860.160000pt;}
.ye_c00370{bottom:860.800000pt;}
.y10_c00370{bottom:862.080000pt;}
.y9_c00370{bottom:896.000000pt;}
.y6_c00370{bottom:896.640000pt;}
.ya_c00370{bottom:897.280000pt;}
.y7_c00370{bottom:898.560000pt;}
.y5_c00370{bottom:899.200000pt;}
.y8_c00370{bottom:899.840000pt;}
.y3_c00370{bottom:936.320000pt;}
.y4_c00370{bottom:937.600000pt;}
.y2_c00370{bottom:939.520000pt;}
.y1_c00370{bottom:983.040000pt;}
.hf_c00370{height:27.645000pt;}
.he_c00370{height:29.948750pt;}
.h10_c00370{height:32.252500pt;}
.h11_c00370{height:34.556250pt;}
.h5_c00370{height:36.860000pt;}
.h7_c00370{height:39.163750pt;}
.h4_c00370{height:41.467500pt;}
.h8_c00370{height:43.771250pt;}
.hc_c00370{height:46.075000pt;}
.h3_c00370{height:48.378750pt;}
.h6_c00370{height:50.682500pt;}
.hd_c00370{height:52.986250pt;}
.ha_c00370{height:55.290000pt;}
.h9_c00370{height:57.593750pt;}
.h2_c00370{height:59.897500pt;}
.hb_c00370{height:62.201250pt;}
.h1_c00370{height:1020.000000pt;}
.h0_c00370{height:1020.160000pt;}
.w1_c00370{width:686.666667pt;}
.w0_c00370{width:686.720000pt;}
.x0_c00370{left:0.000000pt;}
.x6_c00370{left:51.840000pt;}
.x39_c00370{left:53.120000pt;}
.x1f_c00370{left:97.920000pt;}
.x2_c00370{left:99.200000pt;}
.x23_c00370{left:117.120000pt;}
.x7_c00370{left:118.400000pt;}
.x20_c00370{left:127.360000pt;}
.x2e_c00370{left:129.280000pt;}
.x2f_c00370{left:136.960000pt;}
.x24_c00370{left:138.240000pt;}
.x21_c00370{left:147.840000pt;}
.x3e_c00370{left:155.520000pt;}
.x37_c00370{left:165.120000pt;}
.x1b_c00370{left:166.400000pt;}
.x3_c00370{left:167.680000pt;}
.x32_c00370{left:174.080000pt;}
.x30_c00370{left:176.000000pt;}
.x26_c00370{left:185.600000pt;}
.x27_c00370{left:195.840000pt;}
.x1c_c00370{left:203.520000pt;}
.x4_c00370{left:205.440000pt;}
.x22_c00370{left:213.760000pt;}
.x3f_c00370{left:241.920000pt;}
.x31_c00370{left:243.200000pt;}
.x2a_c00370{left:251.520000pt;}
.x8_c00370{left:254.080000pt;}
.x33_c00370{left:261.760000pt;}
.x28_c00370{left:280.960000pt;}
.x15_c00370{left:282.240000pt;}
.x5_c00370{left:291.200000pt;}
.x1d_c00370{left:300.800000pt;}
.x3a_c00370{left:309.760000pt;}
.x35_c00370{left:327.680000pt;}
.x11_c00370{left:328.960000pt;}
.xc_c00370{left:330.240000pt;}
.x19_c00370{left:339.200000pt;}
.x1e_c00370{left:349.440000pt;}
.x3b_c00370{left:357.120000pt;}
.x29_c00370{left:367.360000pt;}
.xd_c00370{left:378.240000pt;}
.x1a_c00370{left:387.840000pt;}
.x3c_c00370{left:396.160000pt;}
.x36_c00370{left:405.120000pt;}
.x16_c00370{left:416.000000pt;}
.xe_c00370{left:417.280000pt;}
.x12_c00370{left:426.240000pt;}
.x3d_c00370{left:433.920000pt;}
.x2b_c00370{left:453.760000pt;}
.x17_c00370{left:464.640000pt;}
.x13_c00370{left:474.240000pt;}
.x2c_c00370{left:512.640000pt;}
.x38_c00370{left:539.520000pt;}
.x14_c00370{left:542.080000pt;}
.x9_c00370{left:543.360000pt;}
.x25_c00370{left:570.880000pt;}
.xa_c00370{left:572.160000pt;}
.x2d_c00370{left:579.200000pt;}
.x18_c00370{left:580.480000pt;}
.xf_c00370{left:581.760000pt;}
.x34_c00370{left:607.360000pt;}
.x10_c00370{left:609.280000pt;}
.xb_c00370{left:610.560000pt;}
.x1_c00370{left:615.040000pt;}
}





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

.ir_c00371:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00371{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00371;src:url('chunks/assets/font_5e92fbff6e8d74bb2b8e3d29.woff2')format("woff");}.ff1_c00371{font-family:ff1_c00371;line-height:1.109863;font-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_c00371{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m1f_c00371{transform:matrix(0.247900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247900,0.000000,0.000000,0.250000,0,0);}
.m2d_c00371{transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);}
.m1_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);}
.m38_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);}
.m3b_c00371{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m44_c00371{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);}
.m41_c00371{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m23_c00371{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_c00371{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m16_c00371{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);}
.m2e_c00371{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m21_c00371{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m6_c00371{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mc_c00371{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00371{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m10_c00371{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00371{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m37_c00371{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m7_c00371{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m20_c00371{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00371{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m22_c00371{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m43_c00371{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00371{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m11_c00371{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00371{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m35_c00371{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m15_c00371{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00371{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m4_c00371{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.me_c00371{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m29_c00371{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_c00371{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m18_c00371{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m8_c00371{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.mb_c00371{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);}
.m0_c00371{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m17_c00371{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m12_c00371{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00371{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);}
.m1e_c00371{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m19_c00371{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m31_c00371{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m28_c00371{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);}
.m36_c00371{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_c00371{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);}
.m27_c00371{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.mf_c00371{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);}
.m39_c00371{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m14_c00371{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.md_c00371{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00371{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m9_c00371{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);}
.m34_c00371{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);}
.ma_c00371{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m24_c00371{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);}
.m2_c00371{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m5_c00371{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m3_c00371{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00371{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m25_c00371{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);}
.m32_c00371{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00371{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m40_c00371{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);}
.m26_c00371{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m30_c00371{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00371{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);}
.m42_c00371{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);}
.m45_c00371{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.v0_c00371{vertical-align:0.000000px;}
.v1_c00371{vertical-align:8.640000px;}
.ls0_c00371{letter-spacing:0.000000px;}
.sc__c00371{text-shadow:none;}
.sc0_c00371{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00371{-webkit-text-stroke:0px transparent;}
.sc0_c00371{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00371{word-spacing:0.000000px;}
.ws1_c00371{word-spacing:9.475200px;}
.ws0_c00371{word-spacing:44.152320px;}
.ws2_c00371{word-spacing:372.655200px;}
.fc0_c00371{color:transparent;}
.fse_c00371{font-size:37.440000px;}
.fs3_c00371{font-size:40.320000px;}
.fsb_c00371{font-size:46.080000px;}
.fs2_c00371{font-size:48.960000px;}
.fs6_c00371{font-size:51.840000px;}
.fsa_c00371{font-size:54.720000px;}
.fs9_c00371{font-size:57.600000px;}
.fs7_c00371{font-size:60.480000px;}
.fs0_c00371{font-size:63.360000px;}
.fsd_c00371{font-size:66.240000px;}
.fs5_c00371{font-size:69.120000px;}
.fs8_c00371{font-size:72.000000px;}
.fs4_c00371{font-size:74.880000px;}
.fs1_c00371{font-size:77.760000px;}
.fsc_c00371{font-size:103.680000px;}
.y0_c00371{bottom:0.000000px;}
.y60_c00371{bottom:36.720000px;}
.y63_c00371{bottom:37.440000px;}
.y61_c00371{bottom:38.160000px;}
.y64_c00371{bottom:38.880000px;}
.y5f_c00371{bottom:40.320000px;}
.y62_c00371{bottom:41.040000px;}
.y5c_c00371{bottom:80.640000px;}
.y5b_c00371{bottom:82.800000px;}
.y5d_c00371{bottom:83.520000px;}
.y5a_c00371{bottom:84.240000px;}
.y56_c00371{bottom:111.600000px;}
.y59_c00371{bottom:113.760000px;}
.y57_c00371{bottom:114.480000px;}
.y5e_c00371{bottom:115.200000px;}
.y55_c00371{bottom:115.920000px;}
.y58_c00371{bottom:116.640000px;}
.y54_c00371{bottom:155.520000px;}
.y50_c00371{bottom:158.400000px;}
.y52_c00371{bottom:159.120000px;}
.y53_c00371{bottom:159.840000px;}
.y51_c00371{bottom:160.560000px;}
.y4e_c00371{bottom:198.720000px;}
.y4d_c00371{bottom:199.440000px;}
.y4c_c00371{bottom:201.600000px;}
.y4f_c00371{bottom:203.760000px;}
.y49_c00371{bottom:244.080000px;}
.y4a_c00371{bottom:244.800000px;}
.y4b_c00371{bottom:245.520000px;}
.y48_c00371{bottom:247.680000px;}
.y45_c00371{bottom:298.800000px;}
.y47_c00371{bottom:299.520000px;}
.y46_c00371{bottom:300.960000px;}
.y42_c00371{bottom:340.560000px;}
.y44_c00371{bottom:341.280000px;}
.y41_c00371{bottom:342.720000px;}
.y43_c00371{bottom:343.440000px;}
.y3d_c00371{bottom:381.600000px;}
.y3f_c00371{bottom:383.760000px;}
.y40_c00371{bottom:384.480000px;}
.y3e_c00371{bottom:385.200000px;}
.y3c_c00371{bottom:385.920000px;}
.y38_c00371{bottom:424.800000px;}
.y3a_c00371{bottom:425.520000px;}
.y39_c00371{bottom:426.240000px;}
.y3b_c00371{bottom:426.960000px;}
.y37_c00371{bottom:428.400000px;}
.y35_c00371{bottom:470.160000px;}
.y34_c00371{bottom:470.880000px;}
.y36_c00371{bottom:471.600000px;}
.y33_c00371{bottom:473.760000px;}
.y31_c00371{bottom:522.720000px;}
.y32_c00371{bottom:524.160000px;}
.y30_c00371{bottom:524.880000px;}
.y2f_c00371{bottom:568.800000px;}
.y2e_c00371{bottom:570.960000px;}
.y2d_c00371{bottom:619.920000px;}
.y2c_c00371{bottom:624.240000px;}
.y28_c00371{bottom:653.040000px;}
.y2a_c00371{bottom:653.760000px;}
.y29_c00371{bottom:654.480000px;}
.y27_c00371{bottom:655.200000px;}
.y2b_c00371{bottom:656.640000px;}
.y20_c00371{bottom:696.240000px;}
.y24_c00371{bottom:696.960000px;}
.y21_c00371{bottom:697.680000px;}
.y26_c00371{bottom:698.400000px;}
.y25_c00371{bottom:699.120000px;}
.y23_c00371{bottom:699.840000px;}
.y22_c00371{bottom:700.560000px;}
.y1d_c00371{bottom:739.440000px;}
.y1e_c00371{bottom:740.160000px;}
.y1f_c00371{bottom:741.600000px;}
.y1c_c00371{bottom:742.320000px;}
.y1a_c00371{bottom:775.440000px;}
.y18_c00371{bottom:783.360000px;}
.y1b_c00371{bottom:784.080000px;}
.y17_c00371{bottom:784.800000px;}
.y19_c00371{bottom:786.960000px;}
.y15_c00371{bottom:828.000000px;}
.y16_c00371{bottom:829.440000px;}
.y14_c00371{bottom:830.880000px;}
.y13_c00371{bottom:856.800000px;}
.y12_c00371{bottom:861.840000px;}
.yf_c00371{bottom:911.520000px;}
.y10_c00371{bottom:912.240000px;}
.ye_c00371{bottom:913.680000px;}
.y11_c00371{bottom:915.120000px;}
.yd_c00371{bottom:954.720000px;}
.ya_c00371{bottom:955.440000px;}
.yc_c00371{bottom:956.160000px;}
.y9_c00371{bottom:956.880000px;}
.yb_c00371{bottom:958.320000px;}
.y8_c00371{bottom:1000.800000px;}
.y7_c00371{bottom:1002.960000px;}
.y5_c00371{bottom:1051.200000px;}
.y2_c00371{bottom:1051.920000px;}
.y6_c00371{bottom:1052.640000px;}
.y3_c00371{bottom:1053.360000px;}
.y1_c00371{bottom:1054.080000px;}
.y4_c00371{bottom:1055.520000px;}
.h10_c00371{height:33.692344px;}
.h5_c00371{height:36.284062px;}
.hd_c00371{height:41.467500px;}
.h4_c00371{height:44.059219px;}
.h9_c00371{height:46.650937px;}
.hc_c00371{height:49.242656px;}
.hb_c00371{height:51.834375px;}
.h8_c00371{height:54.426094px;}
.h2_c00371{height:57.017812px;}
.hf_c00371{height:59.609531px;}
.h7_c00371{height:62.201250px;}
.ha_c00371{height:64.792969px;}
.h6_c00371{height:67.384687px;}
.h3_c00371{height:69.976406px;}
.he_c00371{height:93.301875px;}
.h1_c00371{height:1149.750000px;}
.h0_c00371{height:1149.840000px;}
.w0_c00371{width:775.440000px;}
.w1_c00371{width:775.500000px;}
.x0_c00371{left:0.000000px;}
.x1_c00371{left:58.320000px;}
.x1c_c00371{left:59.760000px;}
.x34_c00371{left:79.920000px;}
.x9_c00371{left:112.320000px;}
.x15_c00371{left:113.760000px;}
.x2c_c00371{left:132.480000px;}
.x2_c00371{left:133.920000px;}
.x13_c00371{left:135.360000px;}
.x25_c00371{left:146.160000px;}
.x18_c00371{left:156.240000px;}
.x27_c00371{left:167.040000px;}
.x39_c00371{left:176.400000px;}
.x35_c00371{left:177.840000px;}
.x24_c00371{left:187.920000px;}
.x36_c00371{left:208.080000px;}
.x19_c00371{left:209.520000px;}
.x1d_c00371{left:220.320000px;}
.xa_c00371{left:231.120000px;}
.x3_c00371{left:232.560000px;}
.x16_c00371{left:253.440000px;}
.xb_c00371{left:264.240000px;}
.x1e_c00371{left:273.600000px;}
.x17_c00371{left:285.120000px;}
.x4_c00371{left:287.280000px;}
.x14_c00371{left:317.520000px;}
.xc_c00371{left:319.680000px;}
.x5_c00371{left:329.040000px;}
.x3a_c00371{left:349.920000px;}
.x22_c00371{left:360.720000px;}
.x1a_c00371{left:371.520000px;}
.x3c_c00371{left:381.600000px;}
.x28_c00371{left:393.840000px;}
.x1f_c00371{left:403.200000px;}
.xd_c00371{left:404.640000px;}
.x23_c00371{left:413.280000px;}
.x6_c00371{left:415.440000px;}
.x2f_c00371{left:436.320000px;}
.x20_c00371{left:447.120000px;}
.xe_c00371{left:458.640000px;}
.x30_c00371{left:468.720000px;}
.x7_c00371{left:470.160000px;}
.xf_c00371{left:501.840000px;}
.x31_c00371{left:511.920000px;}
.x21_c00371{left:544.320000px;}
.x2d_c00371{left:555.120000px;}
.x37_c00371{left:576.720000px;}
.x8_c00371{left:578.160000px;}
.x32_c00371{left:587.520000px;}
.x26_c00371{left:609.120000px;}
.x10_c00371{left:610.560000px;}
.x33_c00371{left:619.920000px;}
.x29_c00371{left:630.720000px;}
.x3d_c00371{left:641.520000px;}
.x2e_c00371{left:642.960000px;}
.x11_c00371{left:644.400000px;}
.x2a_c00371{left:665.280000px;}
.x38_c00371{left:676.080000px;}
.x12_c00371{left:686.160000px;}
.x1b_c00371{left:687.600000px;}
.x2b_c00371{left:697.680000px;}
.x3b_c00371{left:707.040000px;}
@media print{
.v0_c00371{vertical-align:0.000000pt;}
.v1_c00371{vertical-align:7.680000pt;}
.ls0_c00371{letter-spacing:0.000000pt;}
.ws3_c00371{word-spacing:0.000000pt;}
.ws1_c00371{word-spacing:8.422400pt;}
.ws0_c00371{word-spacing:39.246507pt;}
.ws2_c00371{word-spacing:331.249067pt;}
.fse_c00371{font-size:33.280000pt;}
.fs3_c00371{font-size:35.840000pt;}
.fsb_c00371{font-size:40.960000pt;}
.fs2_c00371{font-size:43.520000pt;}
.fs6_c00371{font-size:46.080000pt;}
.fsa_c00371{font-size:48.640000pt;}
.fs9_c00371{font-size:51.200000pt;}
.fs7_c00371{font-size:53.760000pt;}
.fs0_c00371{font-size:56.320000pt;}
.fsd_c00371{font-size:58.880000pt;}
.fs5_c00371{font-size:61.440000pt;}
.fs8_c00371{font-size:64.000000pt;}
.fs4_c00371{font-size:66.560000pt;}
.fs1_c00371{font-size:69.120000pt;}
.fsc_c00371{font-size:92.160000pt;}
.y0_c00371{bottom:0.000000pt;}
.y60_c00371{bottom:32.640000pt;}
.y63_c00371{bottom:33.280000pt;}
.y61_c00371{bottom:33.920000pt;}
.y64_c00371{bottom:34.560000pt;}
.y5f_c00371{bottom:35.840000pt;}
.y62_c00371{bottom:36.480000pt;}
.y5c_c00371{bottom:71.680000pt;}
.y5b_c00371{bottom:73.600000pt;}
.y5d_c00371{bottom:74.240000pt;}
.y5a_c00371{bottom:74.880000pt;}
.y56_c00371{bottom:99.200000pt;}
.y59_c00371{bottom:101.120000pt;}
.y57_c00371{bottom:101.760000pt;}
.y5e_c00371{bottom:102.400000pt;}
.y55_c00371{bottom:103.040000pt;}
.y58_c00371{bottom:103.680000pt;}
.y54_c00371{bottom:138.240000pt;}
.y50_c00371{bottom:140.800000pt;}
.y52_c00371{bottom:141.440000pt;}
.y53_c00371{bottom:142.080000pt;}
.y51_c00371{bottom:142.720000pt;}
.y4e_c00371{bottom:176.640000pt;}
.y4d_c00371{bottom:177.280000pt;}
.y4c_c00371{bottom:179.200000pt;}
.y4f_c00371{bottom:181.120000pt;}
.y49_c00371{bottom:216.960000pt;}
.y4a_c00371{bottom:217.600000pt;}
.y4b_c00371{bottom:218.240000pt;}
.y48_c00371{bottom:220.160000pt;}
.y45_c00371{bottom:265.600000pt;}
.y47_c00371{bottom:266.240000pt;}
.y46_c00371{bottom:267.520000pt;}
.y42_c00371{bottom:302.720000pt;}
.y44_c00371{bottom:303.360000pt;}
.y41_c00371{bottom:304.640000pt;}
.y43_c00371{bottom:305.280000pt;}
.y3d_c00371{bottom:339.200000pt;}
.y3f_c00371{bottom:341.120000pt;}
.y40_c00371{bottom:341.760000pt;}
.y3e_c00371{bottom:342.400000pt;}
.y3c_c00371{bottom:343.040000pt;}
.y38_c00371{bottom:377.600000pt;}
.y3a_c00371{bottom:378.240000pt;}
.y39_c00371{bottom:378.880000pt;}
.y3b_c00371{bottom:379.520000pt;}
.y37_c00371{bottom:380.800000pt;}
.y35_c00371{bottom:417.920000pt;}
.y34_c00371{bottom:418.560000pt;}
.y36_c00371{bottom:419.200000pt;}
.y33_c00371{bottom:421.120000pt;}
.y31_c00371{bottom:464.640000pt;}
.y32_c00371{bottom:465.920000pt;}
.y30_c00371{bottom:466.560000pt;}
.y2f_c00371{bottom:505.600000pt;}
.y2e_c00371{bottom:507.520000pt;}
.y2d_c00371{bottom:551.040000pt;}
.y2c_c00371{bottom:554.880000pt;}
.y28_c00371{bottom:580.480000pt;}
.y2a_c00371{bottom:581.120000pt;}
.y29_c00371{bottom:581.760000pt;}
.y27_c00371{bottom:582.400000pt;}
.y2b_c00371{bottom:583.680000pt;}
.y20_c00371{bottom:618.880000pt;}
.y24_c00371{bottom:619.520000pt;}
.y21_c00371{bottom:620.160000pt;}
.y26_c00371{bottom:620.800000pt;}
.y25_c00371{bottom:621.440000pt;}
.y23_c00371{bottom:622.080000pt;}
.y22_c00371{bottom:622.720000pt;}
.y1d_c00371{bottom:657.280000pt;}
.y1e_c00371{bottom:657.920000pt;}
.y1f_c00371{bottom:659.200000pt;}
.y1c_c00371{bottom:659.840000pt;}
.y1a_c00371{bottom:689.280000pt;}
.y18_c00371{bottom:696.320000pt;}
.y1b_c00371{bottom:696.960000pt;}
.y17_c00371{bottom:697.600000pt;}
.y19_c00371{bottom:699.520000pt;}
.y15_c00371{bottom:736.000000pt;}
.y16_c00371{bottom:737.280000pt;}
.y14_c00371{bottom:738.560000pt;}
.y13_c00371{bottom:761.600000pt;}
.y12_c00371{bottom:766.080000pt;}
.yf_c00371{bottom:810.240000pt;}
.y10_c00371{bottom:810.880000pt;}
.ye_c00371{bottom:812.160000pt;}
.y11_c00371{bottom:813.440000pt;}
.yd_c00371{bottom:848.640000pt;}
.ya_c00371{bottom:849.280000pt;}
.yc_c00371{bottom:849.920000pt;}
.y9_c00371{bottom:850.560000pt;}
.yb_c00371{bottom:851.840000pt;}
.y8_c00371{bottom:889.600000pt;}
.y7_c00371{bottom:891.520000pt;}
.y5_c00371{bottom:934.400000pt;}
.y2_c00371{bottom:935.040000pt;}
.y6_c00371{bottom:935.680000pt;}
.y3_c00371{bottom:936.320000pt;}
.y1_c00371{bottom:936.960000pt;}
.y4_c00371{bottom:938.240000pt;}
.h10_c00371{height:29.948750pt;}
.h5_c00371{height:32.252500pt;}
.hd_c00371{height:36.860000pt;}
.h4_c00371{height:39.163750pt;}
.h9_c00371{height:41.467500pt;}
.hc_c00371{height:43.771250pt;}
.hb_c00371{height:46.075000pt;}
.h8_c00371{height:48.378750pt;}
.h2_c00371{height:50.682500pt;}
.hf_c00371{height:52.986250pt;}
.h7_c00371{height:55.290000pt;}
.ha_c00371{height:57.593750pt;}
.h6_c00371{height:59.897500pt;}
.h3_c00371{height:62.201250pt;}
.he_c00371{height:82.935000pt;}
.h1_c00371{height:1022.000000pt;}
.h0_c00371{height:1022.080000pt;}
.w0_c00371{width:689.280000pt;}
.w1_c00371{width:689.333333pt;}
.x0_c00371{left:0.000000pt;}
.x1_c00371{left:51.840000pt;}
.x1c_c00371{left:53.120000pt;}
.x34_c00371{left:71.040000pt;}
.x9_c00371{left:99.840000pt;}
.x15_c00371{left:101.120000pt;}
.x2c_c00371{left:117.760000pt;}
.x2_c00371{left:119.040000pt;}
.x13_c00371{left:120.320000pt;}
.x25_c00371{left:129.920000pt;}
.x18_c00371{left:138.880000pt;}
.x27_c00371{left:148.480000pt;}
.x39_c00371{left:156.800000pt;}
.x35_c00371{left:158.080000pt;}
.x24_c00371{left:167.040000pt;}
.x36_c00371{left:184.960000pt;}
.x19_c00371{left:186.240000pt;}
.x1d_c00371{left:195.840000pt;}
.xa_c00371{left:205.440000pt;}
.x3_c00371{left:206.720000pt;}
.x16_c00371{left:225.280000pt;}
.xb_c00371{left:234.880000pt;}
.x1e_c00371{left:243.200000pt;}
.x17_c00371{left:253.440000pt;}
.x4_c00371{left:255.360000pt;}
.x14_c00371{left:282.240000pt;}
.xc_c00371{left:284.160000pt;}
.x5_c00371{left:292.480000pt;}
.x3a_c00371{left:311.040000pt;}
.x22_c00371{left:320.640000pt;}
.x1a_c00371{left:330.240000pt;}
.x3c_c00371{left:339.200000pt;}
.x28_c00371{left:350.080000pt;}
.x1f_c00371{left:358.400000pt;}
.xd_c00371{left:359.680000pt;}
.x23_c00371{left:367.360000pt;}
.x6_c00371{left:369.280000pt;}
.x2f_c00371{left:387.840000pt;}
.x20_c00371{left:397.440000pt;}
.xe_c00371{left:407.680000pt;}
.x30_c00371{left:416.640000pt;}
.x7_c00371{left:417.920000pt;}
.xf_c00371{left:446.080000pt;}
.x31_c00371{left:455.040000pt;}
.x21_c00371{left:483.840000pt;}
.x2d_c00371{left:493.440000pt;}
.x37_c00371{left:512.640000pt;}
.x8_c00371{left:513.920000pt;}
.x32_c00371{left:522.240000pt;}
.x26_c00371{left:541.440000pt;}
.x10_c00371{left:542.720000pt;}
.x33_c00371{left:551.040000pt;}
.x29_c00371{left:560.640000pt;}
.x3d_c00371{left:570.240000pt;}
.x2e_c00371{left:571.520000pt;}
.x11_c00371{left:572.800000pt;}
.x2a_c00371{left:591.360000pt;}
.x38_c00371{left:600.960000pt;}
.x12_c00371{left:609.920000pt;}
.x1b_c00371{left:611.200000pt;}
.x2b_c00371{left:620.160000pt;}
.x3b_c00371{left:628.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_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_2af151dca84610282f4fdf51.woff2')format("woff");}.ff1_c00372{font-family:ff1_c00372;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3a_c00372{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m44_c00372{transform:matrix(0.222100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222100,0.000000,0.000000,0.250000,0,0);}
.m26_c00372{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);}
.m35_c00372{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m40_c00372{transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);}
.m45_c00372{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m2f_c00372{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m18_c00372{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.ma_c00372{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m37_c00372{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m16_c00372{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m7_c00372{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);}
.m3d_c00372{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m30_c00372{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m29_c00372{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m2_c00372{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m14_c00372{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m5_c00372{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.md_c00372{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m21_c00372{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mb_c00372{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);}
.m2d_c00372{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00372{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mc_c00372{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m34_c00372{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00372{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m39_c00372{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m17_c00372{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00372{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m6_c00372{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00372{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m28_c00372{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m43_c00372{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m10_c00372{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m20_c00372{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.me_c00372{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);}
.m25_c00372{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m24_c00372{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m19_c00372{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00372{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_c00372{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m36_c00372{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m15_c00372{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);}
.mf_c00372{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1_c00372{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00372{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m38_c00372{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m0_c00372{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m12_c00372{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);}
.m4_c00372{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m13_c00372{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);}
.m3e_c00372{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);}
.m32_c00372{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00372{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00372{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00372{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m33_c00372{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00372{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);}
.m31_c00372{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m3_c00372{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m9_c00372{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);}
.m3b_c00372{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m8_c00372{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m42_c00372{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);}
.m22_c00372{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00372{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);}
.m41_c00372{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00372{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m23_c00372{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);}
.m27_c00372{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.v0_c00372{vertical-align:0.000000px;}
.v1_c00372{vertical-align:2.880000px;}
.ls0_c00372{letter-spacing:0.000000px;}
.sc__c00372{text-shadow:none;}
.sc0_c00372{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00372{-webkit-text-stroke:0px transparent;}
.sc0_c00372{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00372{word-spacing:-1.035120px;}
.ws3_c00372{word-spacing:0.000000px;}
.ws1_c00372{word-spacing:2.144788px;}
.ws2_c00372{word-spacing:6.727553px;}
.fc0_c00372{color:transparent;}
.fsb_c00372{font-size:34.560000px;}
.fs5_c00372{font-size:37.440000px;}
.fsf_c00372{font-size:40.320000px;}
.fsa_c00372{font-size:43.200000px;}
.fs2_c00372{font-size:46.080000px;}
.fs7_c00372{font-size:48.960000px;}
.fs3_c00372{font-size:51.840000px;}
.fs6_c00372{font-size:54.720000px;}
.fsc_c00372{font-size:57.600000px;}
.fs1_c00372{font-size:60.480000px;}
.fsd_c00372{font-size:63.360000px;}
.fs9_c00372{font-size:66.240000px;}
.fs4_c00372{font-size:69.120000px;}
.fs0_c00372{font-size:72.000000px;}
.fs8_c00372{font-size:74.880000px;}
.fse_c00372{font-size:77.760000px;}
.y0_c00372{bottom:0.000000px;}
.y5f_c00372{bottom:59.040000px;}
.y60_c00372{bottom:60.480000px;}
.y62_c00372{bottom:61.200000px;}
.y61_c00372{bottom:61.920000px;}
.y5e_c00372{bottom:63.360000px;}
.y59_c00372{bottom:156.960000px;}
.y5b_c00372{bottom:158.400000px;}
.y58_c00372{bottom:159.840000px;}
.y5a_c00372{bottom:160.560000px;}
.y5c_c00372{bottom:161.280000px;}
.y5d_c00372{bottom:162.000000px;}
.y54_c00372{bottom:199.440000px;}
.y56_c00372{bottom:200.880000px;}
.y55_c00372{bottom:201.600000px;}
.y52_c00372{bottom:202.320000px;}
.y53_c00372{bottom:203.760000px;}
.y57_c00372{bottom:204.480000px;}
.y51_c00372{bottom:244.080000px;}
.y4f_c00372{bottom:276.480000px;}
.y50_c00372{bottom:277.920000px;}
.y4c_c00372{bottom:278.640000px;}
.y4d_c00372{bottom:279.360000px;}
.y4e_c00372{bottom:280.080000px;}
.y44_c00372{bottom:318.960000px;}
.y46_c00372{bottom:319.680000px;}
.y45_c00372{bottom:320.400000px;}
.y4b_c00372{bottom:321.120000px;}
.y4a_c00372{bottom:321.840000px;}
.y43_c00372{bottom:322.560000px;}
.y42_c00372{bottom:362.160000px;}
.y49_c00372{bottom:364.320000px;}
.y48_c00372{bottom:365.040000px;}
.y41_c00372{bottom:365.760000px;}
.y40_c00372{bottom:405.360000px;}
.y3f_c00372{bottom:407.520000px;}
.y47_c00372{bottom:408.240000px;}
.y3e_c00372{bottom:408.960000px;}
.y3b_c00372{bottom:449.280000px;}
.y3d_c00372{bottom:450.000000px;}
.y3a_c00372{bottom:450.720000px;}
.y3c_c00372{bottom:451.440000px;}
.y39_c00372{bottom:452.160000px;}
.y38_c00372{bottom:546.480000px;}
.y30_c00372{bottom:547.920000px;}
.y32_c00372{bottom:548.640000px;}
.y31_c00372{bottom:550.080000px;}
.y37_c00372{bottom:588.960000px;}
.y2e_c00372{bottom:590.400000px;}
.y2f_c00372{bottom:591.120000px;}
.y35_c00372{bottom:632.160000px;}
.y2c_c00372{bottom:633.600000px;}
.y2d_c00372{bottom:634.320000px;}
.y36_c00372{bottom:636.480000px;}
.y34_c00372{bottom:674.640000px;}
.y29_c00372{bottom:676.800000px;}
.y2b_c00372{bottom:677.520000px;}
.y2a_c00372{bottom:678.240000px;}
.y33_c00372{bottom:718.560000px;}
.y27_c00372{bottom:720.000000px;}
.y28_c00372{bottom:722.160000px;}
.y23_c00372{bottom:761.760000px;}
.y26_c00372{bottom:762.480000px;}
.y22_c00372{bottom:763.200000px;}
.y25_c00372{bottom:765.360000px;}
.y21_c00372{bottom:804.960000px;}
.y24_c00372{bottom:806.400000px;}
.y20_c00372{bottom:807.120000px;}
.y1e_c00372{bottom:848.880000px;}
.y1c_c00372{bottom:849.600000px;}
.y1d_c00372{bottom:851.760000px;}
.y1b_c00372{bottom:852.480000px;}
.y19_c00372{bottom:880.560000px;}
.y17_c00372{bottom:882.000000px;}
.y1f_c00372{bottom:882.720000px;}
.y1a_c00372{bottom:884.160000px;}
.y18_c00372{bottom:884.880000px;}
.y14_c00372{bottom:916.560000px;}
.y11_c00372{bottom:923.760000px;}
.y13_c00372{bottom:924.480000px;}
.y10_c00372{bottom:925.200000px;}
.y16_c00372{bottom:925.920000px;}
.y15_c00372{bottom:927.360000px;}
.y12_c00372{bottom:928.080000px;}
.yf_c00372{bottom:966.960000px;}
.yd_c00372{bottom:967.680000px;}
.yc_c00372{bottom:968.400000px;}
.ye_c00372{bottom:970.560000px;}
.y6_c00372{bottom:1010.880000px;}
.y5_c00372{bottom:1011.600000px;}
.yb_c00372{bottom:1012.320000px;}
.y7_c00372{bottom:1013.760000px;}
.y8_c00372{bottom:1014.480000px;}
.y3_c00372{bottom:1054.080000px;}
.y9_c00372{bottom:1054.800000px;}
.y2_c00372{bottom:1055.520000px;}
.ya_c00372{bottom:1056.240000px;}
.y4_c00372{bottom:1056.960000px;}
.y1_c00372{bottom:1108.080000px;}
.hd_c00372{height:31.100625px;}
.h7_c00372{height:33.692344px;}
.h11_c00372{height:36.284062px;}
.hc_c00372{height:38.875781px;}
.h4_c00372{height:41.467500px;}
.h9_c00372{height:44.059219px;}
.h5_c00372{height:46.650937px;}
.h8_c00372{height:49.242656px;}
.he_c00372{height:51.834375px;}
.h3_c00372{height:54.426094px;}
.hf_c00372{height:57.017812px;}
.hb_c00372{height:59.609531px;}
.h6_c00372{height:62.201250px;}
.h2_c00372{height:64.792969px;}
.ha_c00372{height:67.384687px;}
.h10_c00372{height:69.976406px;}
.h1_c00372{height:1149.750000px;}
.h0_c00372{height:1149.840000px;}
.w0_c00372{width:776.880000px;}
.w1_c00372{width:777.000000px;}
.x0_c00372{left:0.000000px;}
.x2_c00372{left:59.040000px;}
.x1d_c00372{left:60.480000px;}
.x1f_c00372{left:132.480000px;}
.x3_c00372{left:133.920000px;}
.x7_c00372{left:135.360000px;}
.x15_c00372{left:177.120000px;}
.x1e_c00372{left:187.920000px;}
.x20_c00372{left:220.320000px;}
.x8_c00372{left:231.840000px;}
.x1a_c00372{left:252.720000px;}
.x4_c00372{left:263.520000px;}
.x13_c00372{left:275.040000px;}
.x28_c00372{left:285.120000px;}
.x9_c00372{left:286.560000px;}
.x5_c00372{left:318.240000px;}
.xa_c00372{left:328.320000px;}
.x1c_c00372{left:339.120000px;}
.x6_c00372{left:362.160000px;}
.xf_c00372{left:371.520000px;}
.x16_c00372{left:372.960000px;}
.x21_c00372{left:383.040000px;}
.x17_c00372{left:414.720000px;}
.x10_c00372{left:426.240000px;}
.x18_c00372{left:457.920000px;}
.x11_c00372{left:470.160000px;}
.x27_c00372{left:480.240000px;}
.x14_c00372{left:523.440000px;}
.x26_c00372{left:546.480000px;}
.x23_c00372{left:555.120000px;}
.x25_c00372{left:556.560000px;}
.x1b_c00372{left:577.440000px;}
.x12_c00372{left:578.880000px;}
.xb_c00372{left:611.280000px;}
.xe_c00372{left:644.400000px;}
.xc_c00372{left:654.480000px;}
.x22_c00372{left:676.080000px;}
.x1_c00372{left:677.520000px;}
.x24_c00372{left:685.440000px;}
.xd_c00372{left:687.600000px;}
.x19_c00372{left:708.480000px;}
@media print{
.v0_c00372{vertical-align:0.000000pt;}
.v1_c00372{vertical-align:2.560000pt;}
.ls0_c00372{letter-spacing:0.000000pt;}
.ws0_c00372{word-spacing:-0.920107pt;}
.ws3_c00372{word-spacing:0.000000pt;}
.ws1_c00372{word-spacing:1.906478pt;}
.ws2_c00372{word-spacing:5.980047pt;}
.fsb_c00372{font-size:30.720000pt;}
.fs5_c00372{font-size:33.280000pt;}
.fsf_c00372{font-size:35.840000pt;}
.fsa_c00372{font-size:38.400000pt;}
.fs2_c00372{font-size:40.960000pt;}
.fs7_c00372{font-size:43.520000pt;}
.fs3_c00372{font-size:46.080000pt;}
.fs6_c00372{font-size:48.640000pt;}
.fsc_c00372{font-size:51.200000pt;}
.fs1_c00372{font-size:53.760000pt;}
.fsd_c00372{font-size:56.320000pt;}
.fs9_c00372{font-size:58.880000pt;}
.fs4_c00372{font-size:61.440000pt;}
.fs0_c00372{font-size:64.000000pt;}
.fs8_c00372{font-size:66.560000pt;}
.fse_c00372{font-size:69.120000pt;}
.y0_c00372{bottom:0.000000pt;}
.y5f_c00372{bottom:52.480000pt;}
.y60_c00372{bottom:53.760000pt;}
.y62_c00372{bottom:54.400000pt;}
.y61_c00372{bottom:55.040000pt;}
.y5e_c00372{bottom:56.320000pt;}
.y59_c00372{bottom:139.520000pt;}
.y5b_c00372{bottom:140.800000pt;}
.y58_c00372{bottom:142.080000pt;}
.y5a_c00372{bottom:142.720000pt;}
.y5c_c00372{bottom:143.360000pt;}
.y5d_c00372{bottom:144.000000pt;}
.y54_c00372{bottom:177.280000pt;}
.y56_c00372{bottom:178.560000pt;}
.y55_c00372{bottom:179.200000pt;}
.y52_c00372{bottom:179.840000pt;}
.y53_c00372{bottom:181.120000pt;}
.y57_c00372{bottom:181.760000pt;}
.y51_c00372{bottom:216.960000pt;}
.y4f_c00372{bottom:245.760000pt;}
.y50_c00372{bottom:247.040000pt;}
.y4c_c00372{bottom:247.680000pt;}
.y4d_c00372{bottom:248.320000pt;}
.y4e_c00372{bottom:248.960000pt;}
.y44_c00372{bottom:283.520000pt;}
.y46_c00372{bottom:284.160000pt;}
.y45_c00372{bottom:284.800000pt;}
.y4b_c00372{bottom:285.440000pt;}
.y4a_c00372{bottom:286.080000pt;}
.y43_c00372{bottom:286.720000pt;}
.y42_c00372{bottom:321.920000pt;}
.y49_c00372{bottom:323.840000pt;}
.y48_c00372{bottom:324.480000pt;}
.y41_c00372{bottom:325.120000pt;}
.y40_c00372{bottom:360.320000pt;}
.y3f_c00372{bottom:362.240000pt;}
.y47_c00372{bottom:362.880000pt;}
.y3e_c00372{bottom:363.520000pt;}
.y3b_c00372{bottom:399.360000pt;}
.y3d_c00372{bottom:400.000000pt;}
.y3a_c00372{bottom:400.640000pt;}
.y3c_c00372{bottom:401.280000pt;}
.y39_c00372{bottom:401.920000pt;}
.y38_c00372{bottom:485.760000pt;}
.y30_c00372{bottom:487.040000pt;}
.y32_c00372{bottom:487.680000pt;}
.y31_c00372{bottom:488.960000pt;}
.y37_c00372{bottom:523.520000pt;}
.y2e_c00372{bottom:524.800000pt;}
.y2f_c00372{bottom:525.440000pt;}
.y35_c00372{bottom:561.920000pt;}
.y2c_c00372{bottom:563.200000pt;}
.y2d_c00372{bottom:563.840000pt;}
.y36_c00372{bottom:565.760000pt;}
.y34_c00372{bottom:599.680000pt;}
.y29_c00372{bottom:601.600000pt;}
.y2b_c00372{bottom:602.240000pt;}
.y2a_c00372{bottom:602.880000pt;}
.y33_c00372{bottom:638.720000pt;}
.y27_c00372{bottom:640.000000pt;}
.y28_c00372{bottom:641.920000pt;}
.y23_c00372{bottom:677.120000pt;}
.y26_c00372{bottom:677.760000pt;}
.y22_c00372{bottom:678.400000pt;}
.y25_c00372{bottom:680.320000pt;}
.y21_c00372{bottom:715.520000pt;}
.y24_c00372{bottom:716.800000pt;}
.y20_c00372{bottom:717.440000pt;}
.y1e_c00372{bottom:754.560000pt;}
.y1c_c00372{bottom:755.200000pt;}
.y1d_c00372{bottom:757.120000pt;}
.y1b_c00372{bottom:757.760000pt;}
.y19_c00372{bottom:782.720000pt;}
.y17_c00372{bottom:784.000000pt;}
.y1f_c00372{bottom:784.640000pt;}
.y1a_c00372{bottom:785.920000pt;}
.y18_c00372{bottom:786.560000pt;}
.y14_c00372{bottom:814.720000pt;}
.y11_c00372{bottom:821.120000pt;}
.y13_c00372{bottom:821.760000pt;}
.y10_c00372{bottom:822.400000pt;}
.y16_c00372{bottom:823.040000pt;}
.y15_c00372{bottom:824.320000pt;}
.y12_c00372{bottom:824.960000pt;}
.yf_c00372{bottom:859.520000pt;}
.yd_c00372{bottom:860.160000pt;}
.yc_c00372{bottom:860.800000pt;}
.ye_c00372{bottom:862.720000pt;}
.y6_c00372{bottom:898.560000pt;}
.y5_c00372{bottom:899.200000pt;}
.yb_c00372{bottom:899.840000pt;}
.y7_c00372{bottom:901.120000pt;}
.y8_c00372{bottom:901.760000pt;}
.y3_c00372{bottom:936.960000pt;}
.y9_c00372{bottom:937.600000pt;}
.y2_c00372{bottom:938.240000pt;}
.ya_c00372{bottom:938.880000pt;}
.y4_c00372{bottom:939.520000pt;}
.y1_c00372{bottom:984.960000pt;}
.hd_c00372{height:27.645000pt;}
.h7_c00372{height:29.948750pt;}
.h11_c00372{height:32.252500pt;}
.hc_c00372{height:34.556250pt;}
.h4_c00372{height:36.860000pt;}
.h9_c00372{height:39.163750pt;}
.h5_c00372{height:41.467500pt;}
.h8_c00372{height:43.771250pt;}
.he_c00372{height:46.075000pt;}
.h3_c00372{height:48.378750pt;}
.hf_c00372{height:50.682500pt;}
.hb_c00372{height:52.986250pt;}
.h6_c00372{height:55.290000pt;}
.h2_c00372{height:57.593750pt;}
.ha_c00372{height:59.897500pt;}
.h10_c00372{height:62.201250pt;}
.h1_c00372{height:1022.000000pt;}
.h0_c00372{height:1022.080000pt;}
.w0_c00372{width:690.560000pt;}
.w1_c00372{width:690.666667pt;}
.x0_c00372{left:0.000000pt;}
.x2_c00372{left:52.480000pt;}
.x1d_c00372{left:53.760000pt;}
.x1f_c00372{left:117.760000pt;}
.x3_c00372{left:119.040000pt;}
.x7_c00372{left:120.320000pt;}
.x15_c00372{left:157.440000pt;}
.x1e_c00372{left:167.040000pt;}
.x20_c00372{left:195.840000pt;}
.x8_c00372{left:206.080000pt;}
.x1a_c00372{left:224.640000pt;}
.x4_c00372{left:234.240000pt;}
.x13_c00372{left:244.480000pt;}
.x28_c00372{left:253.440000pt;}
.x9_c00372{left:254.720000pt;}
.x5_c00372{left:282.880000pt;}
.xa_c00372{left:291.840000pt;}
.x1c_c00372{left:301.440000pt;}
.x6_c00372{left:321.920000pt;}
.xf_c00372{left:330.240000pt;}
.x16_c00372{left:331.520000pt;}
.x21_c00372{left:340.480000pt;}
.x17_c00372{left:368.640000pt;}
.x10_c00372{left:378.880000pt;}
.x18_c00372{left:407.040000pt;}
.x11_c00372{left:417.920000pt;}
.x27_c00372{left:426.880000pt;}
.x14_c00372{left:465.280000pt;}
.x26_c00372{left:485.760000pt;}
.x23_c00372{left:493.440000pt;}
.x25_c00372{left:494.720000pt;}
.x1b_c00372{left:513.280000pt;}
.x12_c00372{left:514.560000pt;}
.xb_c00372{left:543.360000pt;}
.xe_c00372{left:572.800000pt;}
.xc_c00372{left:581.760000pt;}
.x22_c00372{left:600.960000pt;}
.x1_c00372{left:602.240000pt;}
.x24_c00372{left:609.280000pt;}
.xd_c00372{left:611.200000pt;}
.x19_c00372{left:629.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b89b121bdeca2b19e52421fa.woff2')format("woff");}.ff1_c00373{font-family:ff1_c00373;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m47_c00373{transform:matrix(0.185175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185175,0.000000,0.000000,0.250000,0,0);}
.m4a_c00373{transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);}
.m4e_c00373{transform:matrix(0.224125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224125,0.000000,0.000000,0.250000,0,0);}
.m50_c00373{transform:matrix(0.224475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224475,0.000000,0.000000,0.250000,0,0);}
.m38_c00373{transform:matrix(0.229950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229950,0.000000,0.000000,0.250000,0,0);}
.m4b_c00373{transform:matrix(0.238175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238175,0.000000,0.000000,0.250000,0,0);}
.m41_c00373{transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);}
.m2b_c00373{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m6_c00373{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);}
.m49_c00373{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m23_c00373{transform:matrix(0.248425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248425,0.000000,0.000000,0.250000,0,0);}
.m52_c00373{transform:matrix(0.249350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249350,0.000000,0.000000,0.250000,0,0);}
.m3e_c00373{transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);}
.m1_c00373{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m27_c00373{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mb_c00373{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m7_c00373{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m35_c00373{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);}
.m32_c00373{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);}
.m2d_c00373{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00373{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);}
.m30_c00373{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m18_c00373{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00373{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m8_c00373{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m56_c00373{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.me_c00373{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00373{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m31_c00373{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m3_c00373{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00373{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m51_c00373{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m29_c00373{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00373{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.md_c00373{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m34_c00373{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m20_c00373{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m54_c00373{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00373{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m16_c00373{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);}
.m37_c00373{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m5_c00373{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m0_c00373{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m21_c00373{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);}
.m33_c00373{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m55_c00373{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);}
.m24_c00373{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m11_c00373{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m22_c00373{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);}
.mf_c00373{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m28_c00373{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00373{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);}
.m25_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);}
.m13_c00373{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00373{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m26_c00373{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m42_c00373{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);}
.m4_c00373{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m10_c00373{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);}
.m3f_c00373{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);}
.m1f_c00373{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00373{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);}
.m57_c00373{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00373{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m15_c00373{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m14_c00373{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m44_c00373{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m9_c00373{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m45_c00373{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);}
.m17_c00373{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00373{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m53_c00373{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);}
.m43_c00373{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m40_c00373{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);}
.m36_c00373{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m2_c00373{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);}
.m4c_c00373{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m12_c00373{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00373{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);}
.m48_c00373{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m19_c00373{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m46_c00373{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.mc_c00373{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00373{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m39_c00373{transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00373{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);}
.m2c_c00373{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.ma_c00373{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.v1_c00373{vertical-align:-2.880000px;}
.v0_c00373{vertical-align:0.000000px;}
.ls1_c00373{letter-spacing:0.000000px;}
.ls0_c00373{letter-spacing:85.783680px;}
.sc__c00373{text-shadow:none;}
.sc0_c00373{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00373{-webkit-text-stroke:0px transparent;}
.sc0_c00373{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00373{word-spacing:0.000000px;}
.fc0_c00373{color:transparent;}
.fs7_c00373{font-size:17.280000px;}
.fs6_c00373{font-size:25.920000px;}
.fs8_c00373{font-size:34.560000px;}
.fs10_c00373{font-size:37.440000px;}
.fs2_c00373{font-size:40.320000px;}
.fs11_c00373{font-size:43.200000px;}
.fse_c00373{font-size:46.080000px;}
.fsb_c00373{font-size:48.960000px;}
.fs4_c00373{font-size:51.840000px;}
.fsa_c00373{font-size:54.720000px;}
.fsc_c00373{font-size:57.600000px;}
.fs9_c00373{font-size:60.480000px;}
.fs3_c00373{font-size:63.360000px;}
.fs0_c00373{font-size:66.240000px;}
.fsf_c00373{font-size:69.120000px;}
.fsd_c00373{font-size:72.000000px;}
.fs5_c00373{font-size:74.880000px;}
.fs1_c00373{font-size:77.760000px;}
.y0_c00373{bottom:0.000000px;}
.y85_c00373{bottom:57.600000px;}
.y89_c00373{bottom:59.040000px;}
.y86_c00373{bottom:59.760000px;}
.y87_c00373{bottom:60.480000px;}
.y84_c00373{bottom:61.200000px;}
.y88_c00373{bottom:61.920000px;}
.y8a_c00373{bottom:62.640000px;}
.y82_c00373{bottom:101.520000px;}
.y80_c00373{bottom:102.240000px;}
.y7f_c00373{bottom:102.960000px;}
.y81_c00373{bottom:104.400000px;}
.y7b_c00373{bottom:133.920000px;}
.y7c_c00373{bottom:135.360000px;}
.y83_c00373{bottom:136.800000px;}
.y7a_c00373{bottom:137.520000px;}
.y7d_c00373{bottom:138.240000px;}
.y7e_c00373{bottom:138.960000px;}
.y74_c00373{bottom:177.120000px;}
.y78_c00373{bottom:178.560000px;}
.y75_c00373{bottom:179.280000px;}
.y73_c00373{bottom:180.000000px;}
.y76_c00373{bottom:181.440000px;}
.y77_c00373{bottom:182.160000px;}
.y79_c00373{bottom:182.880000px;}
.y6e_c00373{bottom:219.600000px;}
.y70_c00373{bottom:221.040000px;}
.y71_c00373{bottom:222.480000px;}
.y6f_c00373{bottom:223.200000px;}
.y6d_c00373{bottom:223.920000px;}
.y72_c00373{bottom:224.640000px;}
.y66_c00373{bottom:263.520000px;}
.y67_c00373{bottom:264.960000px;}
.y63_c00373{bottom:265.680000px;}
.y64_c00373{bottom:267.120000px;}
.y68_c00373{bottom:267.840000px;}
.y65_c00373{bottom:268.560000px;}
.y60_c00373{bottom:295.920000px;}
.y62_c00373{bottom:298.080000px;}
.y5f_c00373{bottom:299.520000px;}
.y61_c00373{bottom:300.960000px;}
.y5d_c00373{bottom:339.120000px;}
.y6c_c00373{bottom:340.560000px;}
.y6b_c00373{bottom:341.280000px;}
.y5e_c00373{bottom:342.720000px;}
.y5c_c00373{bottom:343.440000px;}
.y58_c00373{bottom:381.600000px;}
.y5b_c00373{bottom:382.320000px;}
.y59_c00373{bottom:383.040000px;}
.y69_c00373{bottom:383.760000px;}
.y57_c00373{bottom:385.200000px;}
.y5a_c00373{bottom:385.920000px;}
.y6a_c00373{bottom:386.640000px;}
.y53_c00373{bottom:425.520000px;}
.y56_c00373{bottom:426.960000px;}
.y55_c00373{bottom:427.680000px;}
.y51_c00373{bottom:428.400000px;}
.y54_c00373{bottom:429.120000px;}
.y52_c00373{bottom:429.840000px;}
.y4a_c00373{bottom:468.000000px;}
.y4e_c00373{bottom:468.720000px;}
.y4f_c00373{bottom:469.440000px;}
.y4c_c00373{bottom:470.160000px;}
.y49_c00373{bottom:470.880000px;}
.y4d_c00373{bottom:471.600000px;}
.y4b_c00373{bottom:472.320000px;}
.y50_c00373{bottom:473.040000px;}
.y48_c00373{bottom:511.920000px;}
.y47_c00373{bottom:515.520000px;}
.y43_c00373{bottom:544.320000px;}
.y46_c00373{bottom:545.040000px;}
.y42_c00373{bottom:546.480000px;}
.y45_c00373{bottom:547.200000px;}
.y44_c00373{bottom:547.920000px;}
.y33_c00373{bottom:587.520000px;}
.y36_c00373{bottom:588.240000px;}
.y34_c00373{bottom:589.680000px;}
.y32_c00373{bottom:590.400000px;}
.y35_c00373{bottom:591.120000px;}
.y31_c00373{bottom:630.720000px;}
.y2e_c00373{bottom:631.440000px;}
.y2f_c00373{bottom:632.160000px;}
.y41_c00373{bottom:632.880000px;}
.y2d_c00373{bottom:633.600000px;}
.y30_c00373{bottom:634.320000px;}
.y40_c00373{bottom:635.040000px;}
.y2a_c00373{bottom:674.640000px;}
.y2b_c00373{bottom:675.360000px;}
.y3f_c00373{bottom:676.080000px;}
.y29_c00373{bottom:676.800000px;}
.y2c_c00373{bottom:677.520000px;}
.y25_c00373{bottom:717.840000px;}
.y28_c00373{bottom:718.560000px;}
.y27_c00373{bottom:719.280000px;}
.y24_c00373{bottom:720.000000px;}
.y26_c00373{bottom:721.440000px;}
.y22_c00373{bottom:761.760000px;}
.y21_c00373{bottom:762.480000px;}
.y20_c00373{bottom:763.200000px;}
.y23_c00373{bottom:764.640000px;}
.y3e_c00373{bottom:765.360000px;}
.y1d_c00373{bottom:804.240000px;}
.y1e_c00373{bottom:804.960000px;}
.y1c_c00373{bottom:805.680000px;}
.y1a_c00373{bottom:806.400000px;}
.y1f_c00373{bottom:807.840000px;}
.y1b_c00373{bottom:808.560000px;}
.y19_c00373{bottom:847.440000px;}
.y18_c00373{bottom:848.880000px;}
.y13_c00373{bottom:879.120000px;}
.y15_c00373{bottom:880.560000px;}
.y11_c00373{bottom:881.280000px;}
.y17_c00373{bottom:882.000000px;}
.y16_c00373{bottom:882.720000px;}
.y14_c00373{bottom:883.440000px;}
.y12_c00373{bottom:884.160000px;}
.y10_c00373{bottom:923.040000px;}
.y3c_c00373{bottom:923.760000px;}
.yf_c00373{bottom:924.480000px;}
.y3d_c00373{bottom:925.920000px;}
.ye_c00373{bottom:964.800000px;}
.yb_c00373{bottom:966.240000px;}
.yd_c00373{bottom:966.960000px;}
.y8_c00373{bottom:967.680000px;}
.y9_c00373{bottom:968.400000px;}
.yc_c00373{bottom:970.560000px;}
.ya_c00373{bottom:972.000000px;}
.y7_c00373{bottom:1008.720000px;}
.y3b_c00373{bottom:1009.440000px;}
.y3a_c00373{bottom:1010.160000px;}
.y6_c00373{bottom:1010.880000px;}
.y5_c00373{bottom:1051.200000px;}
.y2_c00373{bottom:1051.920000px;}
.y38_c00373{bottom:1052.640000px;}
.y1_c00373{bottom:1053.360000px;}
.y39_c00373{bottom:1054.080000px;}
.y4_c00373{bottom:1054.800000px;}
.y3_c00373{bottom:1055.520000px;}
.y37_c00373{bottom:1105.920000px;}
.h9_c00373{height:15.550313px;}
.h8_c00373{height:23.325469px;}
.ha_c00373{height:31.100625px;}
.h12_c00373{height:33.692344px;}
.h4_c00373{height:36.284062px;}
.h13_c00373{height:38.875781px;}
.h10_c00373{height:41.467500px;}
.hd_c00373{height:44.059219px;}
.h6_c00373{height:46.650937px;}
.hc_c00373{height:49.242656px;}
.he_c00373{height:51.834375px;}
.hb_c00373{height:54.426094px;}
.h5_c00373{height:57.017812px;}
.h2_c00373{height:59.609531px;}
.h11_c00373{height:62.201250px;}
.hf_c00373{height:64.792969px;}
.h7_c00373{height:67.384687px;}
.h3_c00373{height:69.976406px;}
.h1_c00373{height:1149.750000px;}
.h0_c00373{height:1149.840000px;}
.w0_c00373{width:775.440000px;}
.w1_c00373{width:775.500000px;}
.x0_c00373{left:0.000000px;}
.x1_c00373{left:61.200000px;}
.x7_c00373{left:105.120000px;}
.x8_c00373{left:114.480000px;}
.x1a_c00373{left:134.640000px;}
.x2_c00373{left:136.080000px;}
.xa_c00373{left:137.520000px;}
.x35_c00373{left:177.120000px;}
.xb_c00373{left:179.280000px;}
.x2e_c00373{left:188.640000px;}
.x29_c00373{left:190.080000px;}
.x3_c00373{left:223.920000px;}
.x15_c00373{left:231.840000px;}
.x10_c00373{left:234.000000px;}
.x13_c00373{left:244.080000px;}
.x36_c00373{left:264.240000px;}
.x9_c00373{left:265.680000px;}
.x4_c00373{left:267.120000px;}
.x16_c00373{left:276.480000px;}
.x31_c00373{left:285.120000px;}
.xc_c00373{left:288.000000px;}
.x14_c00373{left:298.080000px;}
.x37_c00373{left:317.520000px;}
.x2c_c00373{left:318.960000px;}
.x19_c00373{left:330.480000px;}
.x2a_c00373{left:339.840000px;}
.xd_c00373{left:342.720000px;}
.x38_c00373{left:362.880000px;}
.x2d_c00373{left:372.240000px;}
.x17_c00373{left:373.680000px;}
.x11_c00373{left:384.480000px;}
.x5_c00373{left:396.720000px;}
.x32_c00373{left:415.440000px;}
.x26_c00373{left:416.880000px;}
.xe_c00373{left:428.400000px;}
.x12_c00373{left:439.200000px;}
.x6_c00373{left:440.640000px;}
.x39_c00373{left:447.840000px;}
.x33_c00373{left:469.440000px;}
.x18_c00373{left:470.880000px;}
.x34_c00373{left:480.240000px;}
.xf_c00373{left:482.400000px;}
.x3a_c00373{left:502.560000px;}
.x27_c00373{left:514.080000px;}
.x3b_c00373{left:545.760000px;}
.x24_c00373{left:558.000000px;}
.x1c_c00373{left:559.440000px;}
.x2f_c00373{left:577.440000px;}
.x25_c00373{left:579.600000px;}
.x21_c00373{left:581.040000px;}
.x2b_c00373{left:612.000000px;}
.x1d_c00373{left:613.440000px;}
.x3c_c00373{left:644.400000px;}
.x1e_c00373{left:645.840000px;}
.x28_c00373{left:655.200000px;}
.x23_c00373{left:656.640000px;}
.x1b_c00373{left:679.680000px;}
.x30_c00373{left:686.880000px;}
.x22_c00373{left:688.320000px;}
.x1f_c00373{left:689.760000px;}
.x20_c00373{left:710.640000px;}
@media print{
.v1_c00373{vertical-align:-2.560000pt;}
.v0_c00373{vertical-align:0.000000pt;}
.ls1_c00373{letter-spacing:0.000000pt;}
.ls0_c00373{letter-spacing:76.252160pt;}
.ws0_c00373{word-spacing:0.000000pt;}
.fs7_c00373{font-size:15.360000pt;}
.fs6_c00373{font-size:23.040000pt;}
.fs8_c00373{font-size:30.720000pt;}
.fs10_c00373{font-size:33.280000pt;}
.fs2_c00373{font-size:35.840000pt;}
.fs11_c00373{font-size:38.400000pt;}
.fse_c00373{font-size:40.960000pt;}
.fsb_c00373{font-size:43.520000pt;}
.fs4_c00373{font-size:46.080000pt;}
.fsa_c00373{font-size:48.640000pt;}
.fsc_c00373{font-size:51.200000pt;}
.fs9_c00373{font-size:53.760000pt;}
.fs3_c00373{font-size:56.320000pt;}
.fs0_c00373{font-size:58.880000pt;}
.fsf_c00373{font-size:61.440000pt;}
.fsd_c00373{font-size:64.000000pt;}
.fs5_c00373{font-size:66.560000pt;}
.fs1_c00373{font-size:69.120000pt;}
.y0_c00373{bottom:0.000000pt;}
.y85_c00373{bottom:51.200000pt;}
.y89_c00373{bottom:52.480000pt;}
.y86_c00373{bottom:53.120000pt;}
.y87_c00373{bottom:53.760000pt;}
.y84_c00373{bottom:54.400000pt;}
.y88_c00373{bottom:55.040000pt;}
.y8a_c00373{bottom:55.680000pt;}
.y82_c00373{bottom:90.240000pt;}
.y80_c00373{bottom:90.880000pt;}
.y7f_c00373{bottom:91.520000pt;}
.y81_c00373{bottom:92.800000pt;}
.y7b_c00373{bottom:119.040000pt;}
.y7c_c00373{bottom:120.320000pt;}
.y83_c00373{bottom:121.600000pt;}
.y7a_c00373{bottom:122.240000pt;}
.y7d_c00373{bottom:122.880000pt;}
.y7e_c00373{bottom:123.520000pt;}
.y74_c00373{bottom:157.440000pt;}
.y78_c00373{bottom:158.720000pt;}
.y75_c00373{bottom:159.360000pt;}
.y73_c00373{bottom:160.000000pt;}
.y76_c00373{bottom:161.280000pt;}
.y77_c00373{bottom:161.920000pt;}
.y79_c00373{bottom:162.560000pt;}
.y6e_c00373{bottom:195.200000pt;}
.y70_c00373{bottom:196.480000pt;}
.y71_c00373{bottom:197.760000pt;}
.y6f_c00373{bottom:198.400000pt;}
.y6d_c00373{bottom:199.040000pt;}
.y72_c00373{bottom:199.680000pt;}
.y66_c00373{bottom:234.240000pt;}
.y67_c00373{bottom:235.520000pt;}
.y63_c00373{bottom:236.160000pt;}
.y64_c00373{bottom:237.440000pt;}
.y68_c00373{bottom:238.080000pt;}
.y65_c00373{bottom:238.720000pt;}
.y60_c00373{bottom:263.040000pt;}
.y62_c00373{bottom:264.960000pt;}
.y5f_c00373{bottom:266.240000pt;}
.y61_c00373{bottom:267.520000pt;}
.y5d_c00373{bottom:301.440000pt;}
.y6c_c00373{bottom:302.720000pt;}
.y6b_c00373{bottom:303.360000pt;}
.y5e_c00373{bottom:304.640000pt;}
.y5c_c00373{bottom:305.280000pt;}
.y58_c00373{bottom:339.200000pt;}
.y5b_c00373{bottom:339.840000pt;}
.y59_c00373{bottom:340.480000pt;}
.y69_c00373{bottom:341.120000pt;}
.y57_c00373{bottom:342.400000pt;}
.y5a_c00373{bottom:343.040000pt;}
.y6a_c00373{bottom:343.680000pt;}
.y53_c00373{bottom:378.240000pt;}
.y56_c00373{bottom:379.520000pt;}
.y55_c00373{bottom:380.160000pt;}
.y51_c00373{bottom:380.800000pt;}
.y54_c00373{bottom:381.440000pt;}
.y52_c00373{bottom:382.080000pt;}
.y4a_c00373{bottom:416.000000pt;}
.y4e_c00373{bottom:416.640000pt;}
.y4f_c00373{bottom:417.280000pt;}
.y4c_c00373{bottom:417.920000pt;}
.y49_c00373{bottom:418.560000pt;}
.y4d_c00373{bottom:419.200000pt;}
.y4b_c00373{bottom:419.840000pt;}
.y50_c00373{bottom:420.480000pt;}
.y48_c00373{bottom:455.040000pt;}
.y47_c00373{bottom:458.240000pt;}
.y43_c00373{bottom:483.840000pt;}
.y46_c00373{bottom:484.480000pt;}
.y42_c00373{bottom:485.760000pt;}
.y45_c00373{bottom:486.400000pt;}
.y44_c00373{bottom:487.040000pt;}
.y33_c00373{bottom:522.240000pt;}
.y36_c00373{bottom:522.880000pt;}
.y34_c00373{bottom:524.160000pt;}
.y32_c00373{bottom:524.800000pt;}
.y35_c00373{bottom:525.440000pt;}
.y31_c00373{bottom:560.640000pt;}
.y2e_c00373{bottom:561.280000pt;}
.y2f_c00373{bottom:561.920000pt;}
.y41_c00373{bottom:562.560000pt;}
.y2d_c00373{bottom:563.200000pt;}
.y30_c00373{bottom:563.840000pt;}
.y40_c00373{bottom:564.480000pt;}
.y2a_c00373{bottom:599.680000pt;}
.y2b_c00373{bottom:600.320000pt;}
.y3f_c00373{bottom:600.960000pt;}
.y29_c00373{bottom:601.600000pt;}
.y2c_c00373{bottom:602.240000pt;}
.y25_c00373{bottom:638.080000pt;}
.y28_c00373{bottom:638.720000pt;}
.y27_c00373{bottom:639.360000pt;}
.y24_c00373{bottom:640.000000pt;}
.y26_c00373{bottom:641.280000pt;}
.y22_c00373{bottom:677.120000pt;}
.y21_c00373{bottom:677.760000pt;}
.y20_c00373{bottom:678.400000pt;}
.y23_c00373{bottom:679.680000pt;}
.y3e_c00373{bottom:680.320000pt;}
.y1d_c00373{bottom:714.880000pt;}
.y1e_c00373{bottom:715.520000pt;}
.y1c_c00373{bottom:716.160000pt;}
.y1a_c00373{bottom:716.800000pt;}
.y1f_c00373{bottom:718.080000pt;}
.y1b_c00373{bottom:718.720000pt;}
.y19_c00373{bottom:753.280000pt;}
.y18_c00373{bottom:754.560000pt;}
.y13_c00373{bottom:781.440000pt;}
.y15_c00373{bottom:782.720000pt;}
.y11_c00373{bottom:783.360000pt;}
.y17_c00373{bottom:784.000000pt;}
.y16_c00373{bottom:784.640000pt;}
.y14_c00373{bottom:785.280000pt;}
.y12_c00373{bottom:785.920000pt;}
.y10_c00373{bottom:820.480000pt;}
.y3c_c00373{bottom:821.120000pt;}
.yf_c00373{bottom:821.760000pt;}
.y3d_c00373{bottom:823.040000pt;}
.ye_c00373{bottom:857.600000pt;}
.yb_c00373{bottom:858.880000pt;}
.yd_c00373{bottom:859.520000pt;}
.y8_c00373{bottom:860.160000pt;}
.y9_c00373{bottom:860.800000pt;}
.yc_c00373{bottom:862.720000pt;}
.ya_c00373{bottom:864.000000pt;}
.y7_c00373{bottom:896.640000pt;}
.y3b_c00373{bottom:897.280000pt;}
.y3a_c00373{bottom:897.920000pt;}
.y6_c00373{bottom:898.560000pt;}
.y5_c00373{bottom:934.400000pt;}
.y2_c00373{bottom:935.040000pt;}
.y38_c00373{bottom:935.680000pt;}
.y1_c00373{bottom:936.320000pt;}
.y39_c00373{bottom:936.960000pt;}
.y4_c00373{bottom:937.600000pt;}
.y3_c00373{bottom:938.240000pt;}
.y37_c00373{bottom:983.040000pt;}
.h9_c00373{height:13.822500pt;}
.h8_c00373{height:20.733750pt;}
.ha_c00373{height:27.645000pt;}
.h12_c00373{height:29.948750pt;}
.h4_c00373{height:32.252500pt;}
.h13_c00373{height:34.556250pt;}
.h10_c00373{height:36.860000pt;}
.hd_c00373{height:39.163750pt;}
.h6_c00373{height:41.467500pt;}
.hc_c00373{height:43.771250pt;}
.he_c00373{height:46.075000pt;}
.hb_c00373{height:48.378750pt;}
.h5_c00373{height:50.682500pt;}
.h2_c00373{height:52.986250pt;}
.h11_c00373{height:55.290000pt;}
.hf_c00373{height:57.593750pt;}
.h7_c00373{height:59.897500pt;}
.h3_c00373{height:62.201250pt;}
.h1_c00373{height:1022.000000pt;}
.h0_c00373{height:1022.080000pt;}
.w0_c00373{width:689.280000pt;}
.w1_c00373{width:689.333333pt;}
.x0_c00373{left:0.000000pt;}
.x1_c00373{left:54.400000pt;}
.x7_c00373{left:93.440000pt;}
.x8_c00373{left:101.760000pt;}
.x1a_c00373{left:119.680000pt;}
.x2_c00373{left:120.960000pt;}
.xa_c00373{left:122.240000pt;}
.x35_c00373{left:157.440000pt;}
.xb_c00373{left:159.360000pt;}
.x2e_c00373{left:167.680000pt;}
.x29_c00373{left:168.960000pt;}
.x3_c00373{left:199.040000pt;}
.x15_c00373{left:206.080000pt;}
.x10_c00373{left:208.000000pt;}
.x13_c00373{left:216.960000pt;}
.x36_c00373{left:234.880000pt;}
.x9_c00373{left:236.160000pt;}
.x4_c00373{left:237.440000pt;}
.x16_c00373{left:245.760000pt;}
.x31_c00373{left:253.440000pt;}
.xc_c00373{left:256.000000pt;}
.x14_c00373{left:264.960000pt;}
.x37_c00373{left:282.240000pt;}
.x2c_c00373{left:283.520000pt;}
.x19_c00373{left:293.760000pt;}
.x2a_c00373{left:302.080000pt;}
.xd_c00373{left:304.640000pt;}
.x38_c00373{left:322.560000pt;}
.x2d_c00373{left:330.880000pt;}
.x17_c00373{left:332.160000pt;}
.x11_c00373{left:341.760000pt;}
.x5_c00373{left:352.640000pt;}
.x32_c00373{left:369.280000pt;}
.x26_c00373{left:370.560000pt;}
.xe_c00373{left:380.800000pt;}
.x12_c00373{left:390.400000pt;}
.x6_c00373{left:391.680000pt;}
.x39_c00373{left:398.080000pt;}
.x33_c00373{left:417.280000pt;}
.x18_c00373{left:418.560000pt;}
.x34_c00373{left:426.880000pt;}
.xf_c00373{left:428.800000pt;}
.x3a_c00373{left:446.720000pt;}
.x27_c00373{left:456.960000pt;}
.x3b_c00373{left:485.120000pt;}
.x24_c00373{left:496.000000pt;}
.x1c_c00373{left:497.280000pt;}
.x2f_c00373{left:513.280000pt;}
.x25_c00373{left:515.200000pt;}
.x21_c00373{left:516.480000pt;}
.x2b_c00373{left:544.000000pt;}
.x1d_c00373{left:545.280000pt;}
.x3c_c00373{left:572.800000pt;}
.x1e_c00373{left:574.080000pt;}
.x28_c00373{left:582.400000pt;}
.x23_c00373{left:583.680000pt;}
.x1b_c00373{left:604.160000pt;}
.x30_c00373{left:610.560000pt;}
.x22_c00373{left:611.840000pt;}
.x1f_c00373{left:613.120000pt;}
.x20_c00373{left:631.680000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ccad9d1ac4dd1a7ade1a28b8.woff2')format("woff");}.ff1_c00374{font-family:ff1_c00374;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m42_c00374{transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);}
.m43_c00374{transform:matrix(0.177600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177600,0.000000,0.000000,0.250000,0,0);}
.m41_c00374{transform:matrix(0.196850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196850,0.000000,0.000000,0.250000,0,0);}
.m48_c00374{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m38_c00374{transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);}
.m39_c00374{transform:matrix(0.246625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246625,0.000000,0.000000,0.250000,0,0);}
.m3a_c00374{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,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);}
.m37_c00374{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);}
.m33_c00374{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);}
.m28_c00374{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);}
.m46_c00374{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);}
.m34_c00374{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_c00374{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m9_c00374{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00374{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m16_c00374{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);}
.m3d_c00374{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00374{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m22_c00374{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_c00374{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m14_c00374{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m44_c00374{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m35_c00374{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m32_c00374{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00374{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m24_c00374{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m8_c00374{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m20_c00374{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m29_c00374{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00374{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1_c00374{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m27_c00374{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m13_c00374{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.me_c00374{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m30_c00374{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m12_c00374{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m21_c00374{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);}
.m45_c00374{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m6_c00374{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);}
.m3e_c00374{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.mb_c00374{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m0_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);}
.m4_c00374{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m5_c00374{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);}
.m36_c00374{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00374{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);}
.m11_c00374{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.mf_c00374{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);}
.m31_c00374{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);}
.m2e_c00374{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m26_c00374{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.ma_c00374{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);}
.m2b_c00374{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m18_c00374{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m10_c00374{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m47_c00374{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00374{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.mc_c00374{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00374{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m3_c00374{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m17_c00374{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);}
.m2c_c00374{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00374{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);}
.m7_c00374{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m15_c00374{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);}
.m19_c00374{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00374{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m25_c00374{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00374{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00374{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00374{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m40_c00374{transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);}
.v0_c00374{vertical-align:0.000000px;}
.ls0_c00374{letter-spacing:0.000000px;}
.sc__c00374{text-shadow:none;}
.sc0_c00374{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00374{-webkit-text-stroke:0px transparent;}
.sc0_c00374{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00374{word-spacing:0.000000px;}
.fc0_c00374{color:transparent;}
.fs9_c00374{font-size:34.560000px;}
.fsd_c00374{font-size:43.200000px;}
.fs3_c00374{font-size:46.080000px;}
.fs5_c00374{font-size:48.960000px;}
.fs6_c00374{font-size:51.840000px;}
.fsb_c00374{font-size:54.720000px;}
.fs7_c00374{font-size:57.600000px;}
.fs4_c00374{font-size:60.480000px;}
.fsc_c00374{font-size:63.360000px;}
.fsa_c00374{font-size:66.240000px;}
.fs1_c00374{font-size:69.120000px;}
.fs8_c00374{font-size:72.000000px;}
.fs2_c00374{font-size:74.880000px;}
.fs0_c00374{font-size:77.760000px;}
.fse_c00374{font-size:80.640000px;}
.y0_c00374{bottom:0.000000px;}
.y6b_c00374{bottom:53.280000px;}
.y6d_c00374{bottom:56.880000px;}
.y6a_c00374{bottom:57.600000px;}
.y6c_c00374{bottom:58.320000px;}
.y69_c00374{bottom:89.280000px;}
.y65_c00374{bottom:96.480000px;}
.y67_c00374{bottom:97.920000px;}
.y64_c00374{bottom:99.360000px;}
.y66_c00374{bottom:100.080000px;}
.y68_c00374{bottom:100.800000px;}
.y63_c00374{bottom:141.120000px;}
.y5e_c00374{bottom:171.360000px;}
.y61_c00374{bottom:172.800000px;}
.y5f_c00374{bottom:173.520000px;}
.y5d_c00374{bottom:174.960000px;}
.y60_c00374{bottom:176.400000px;}
.y62_c00374{bottom:177.120000px;}
.y4a_c00374{bottom:213.840000px;}
.y49_c00374{bottom:217.440000px;}
.y5c_c00374{bottom:218.160000px;}
.y5b_c00374{bottom:218.880000px;}
.y48_c00374{bottom:257.040000px;}
.y47_c00374{bottom:260.640000px;}
.y44_c00374{bottom:300.960000px;}
.y46_c00374{bottom:301.680000px;}
.y43_c00374{bottom:303.840000px;}
.y5a_c00374{bottom:304.560000px;}
.y45_c00374{bottom:305.280000px;}
.y40_c00374{bottom:344.880000px;}
.y3f_c00374{bottom:347.040000px;}
.y58_c00374{bottom:347.760000px;}
.y41_c00374{bottom:348.480000px;}
.y42_c00374{bottom:349.200000px;}
.y59_c00374{bottom:349.920000px;}
.y3e_c00374{bottom:387.360000px;}
.y3d_c00374{bottom:390.240000px;}
.y57_c00374{bottom:392.400000px;}
.y3a_c00374{bottom:431.280000px;}
.y3c_c00374{bottom:432.000000px;}
.y3b_c00374{bottom:432.720000px;}
.y39_c00374{bottom:433.440000px;}
.y56_c00374{bottom:434.880000px;}
.y36_c00374{bottom:475.200000px;}
.y38_c00374{bottom:475.920000px;}
.y37_c00374{bottom:476.640000px;}
.y35_c00374{bottom:477.360000px;}
.y55_c00374{bottom:479.520000px;}
.y34_c00374{bottom:517.680000px;}
.y33_c00374{bottom:519.840000px;}
.y54_c00374{bottom:520.560000px;}
.y53_c00374{bottom:522.720000px;}
.y32_c00374{bottom:561.600000px;}
.y52_c00374{bottom:563.040000px;}
.y31_c00374{bottom:563.760000px;}
.y30_c00374{bottom:605.520000px;}
.y2f_c00374{bottom:606.240000px;}
.y2d_c00374{bottom:606.960000px;}
.y2e_c00374{bottom:607.680000px;}
.y51_c00374{bottom:608.400000px;}
.y2c_c00374{bottom:648.000000px;}
.y2a_c00374{bottom:648.720000px;}
.y4f_c00374{bottom:649.440000px;}
.y2b_c00374{bottom:650.880000px;}
.y50_c00374{bottom:651.600000px;}
.y26_c00374{bottom:689.760000px;}
.y29_c00374{bottom:690.480000px;}
.y27_c00374{bottom:691.200000px;}
.y25_c00374{bottom:691.920000px;}
.y4e_c00374{bottom:692.640000px;}
.y28_c00374{bottom:694.800000px;}
.y24_c00374{bottom:732.240000px;}
.y23_c00374{bottom:732.960000px;}
.y21_c00374{bottom:734.400000px;}
.y4d_c00374{bottom:736.560000px;}
.y22_c00374{bottom:737.280000px;}
.y20_c00374{bottom:776.160000px;}
.y1e_c00374{bottom:777.600000px;}
.y4c_c00374{bottom:778.320000px;}
.y1f_c00374{bottom:779.760000px;}
.y1d_c00374{bottom:819.360000px;}
.y1b_c00374{bottom:820.800000px;}
.y1c_c00374{bottom:822.960000px;}
.y4b_c00374{bottom:823.680000px;}
.y19_c00374{bottom:862.560000px;}
.y16_c00374{bottom:864.000000px;}
.y1a_c00374{bottom:864.720000px;}
.y17_c00374{bottom:866.160000px;}
.y18_c00374{bottom:866.880000px;}
.y15_c00374{bottom:905.760000px;}
.y14_c00374{bottom:910.080000px;}
.y11_c00374{bottom:938.160000px;}
.y10_c00374{bottom:938.880000px;}
.ye_c00374{bottom:939.600000px;}
.y13_c00374{bottom:940.320000px;}
.y12_c00374{bottom:941.760000px;}
.yf_c00374{bottom:942.480000px;}
.yc_c00374{bottom:983.520000px;}
.yd_c00374{bottom:984.960000px;}
.yb_c00374{bottom:985.680000px;}
.ya_c00374{bottom:1036.080000px;}
.y8_c00374{bottom:1036.800000px;}
.y7_c00374{bottom:1038.960000px;}
.y9_c00374{bottom:1039.680000px;}
.y3_c00374{bottom:1067.760000px;}
.y2_c00374{bottom:1069.200000px;}
.y4_c00374{bottom:1069.920000px;}
.y6_c00374{bottom:1071.360000px;}
.y5_c00374{bottom:1072.080000px;}
.y1_c00374{bottom:1107.360000px;}
.hb_c00374{height:31.100625px;}
.hf_c00374{height:38.875781px;}
.h5_c00374{height:41.467500px;}
.h7_c00374{height:44.059219px;}
.h8_c00374{height:46.650937px;}
.hd_c00374{height:49.242656px;}
.h9_c00374{height:51.834375px;}
.h6_c00374{height:54.426094px;}
.he_c00374{height:57.017812px;}
.hc_c00374{height:59.609531px;}
.h3_c00374{height:62.201250px;}
.ha_c00374{height:64.792969px;}
.h4_c00374{height:67.384687px;}
.h2_c00374{height:69.976406px;}
.h10_c00374{height:72.568125px;}
.h0_c00374{height:1142.640000px;}
.h1_c00374{height:1143.000000px;}
.w0_c00374{width:764.640000px;}
.w1_c00374{width:765.000000px;}
.x0_c00374{left:0.000000px;}
.x2_c00374{left:56.880000px;}
.x1b_c00374{left:58.320000px;}
.xe_c00374{left:111.600000px;}
.x11_c00374{left:131.760000px;}
.x3_c00374{left:133.200000px;}
.xf_c00374{left:144.720000px;}
.xa_c00374{left:174.960000px;}
.x12_c00374{left:176.400000px;}
.x19_c00374{left:208.080000px;}
.x10_c00374{left:218.160000px;}
.x24_c00374{left:219.600000px;}
.x23_c00374{left:221.040000px;}
.x4_c00374{left:229.680000px;}
.x1c_c00374{left:241.200000px;}
.x2f_c00374{left:252.000000px;}
.x25_c00374{left:262.080000px;}
.x1a_c00374{left:263.520000px;}
.x33_c00374{left:272.160000px;}
.x1d_c00374{left:273.600000px;}
.xb_c00374{left:282.960000px;}
.x5_c00374{left:285.120000px;}
.x1e_c00374{left:295.200000px;}
.x27_c00374{left:306.000000px;}
.x26_c00374{left:317.520000px;}
.xc_c00374{left:326.880000px;}
.x21_c00374{left:349.920000px;}
.x13_c00374{left:370.800000px;}
.x6_c00374{left:380.160000px;}
.xd_c00374{left:381.600000px;}
.x30_c00374{left:403.200000px;}
.x32_c00374{left:424.080000px;}
.x7_c00374{left:425.520000px;}
.x22_c00374{left:435.600000px;}
.x14_c00374{left:478.080000px;}
.x31_c00374{left:509.760000px;}
.x8_c00374{left:511.920000px;}
.x1f_c00374{left:531.360000px;}
.x15_c00374{left:533.520000px;}
.x2c_c00374{left:544.320000px;}
.x2a_c00374{left:553.680000px;}
.x2b_c00374{left:555.120000px;}
.x2d_c00374{left:575.280000px;}
.x9_c00374{left:576.720000px;}
.x28_c00374{left:587.520000px;}
.x34_c00374{left:607.680000px;}
.x16_c00374{left:609.840000px;}
.x2e_c00374{left:641.520000px;}
.x17_c00374{left:642.960000px;}
.x29_c00374{left:675.360000px;}
.x20_c00374{left:684.720000px;}
.x1_c00374{left:686.880000px;}
.x18_c00374{left:706.320000px;}
@media print{
.v0_c00374{vertical-align:0.000000pt;}
.ls0_c00374{letter-spacing:0.000000pt;}
.ws0_c00374{word-spacing:0.000000pt;}
.fs9_c00374{font-size:30.720000pt;}
.fsd_c00374{font-size:38.400000pt;}
.fs3_c00374{font-size:40.960000pt;}
.fs5_c00374{font-size:43.520000pt;}
.fs6_c00374{font-size:46.080000pt;}
.fsb_c00374{font-size:48.640000pt;}
.fs7_c00374{font-size:51.200000pt;}
.fs4_c00374{font-size:53.760000pt;}
.fsc_c00374{font-size:56.320000pt;}
.fsa_c00374{font-size:58.880000pt;}
.fs1_c00374{font-size:61.440000pt;}
.fs8_c00374{font-size:64.000000pt;}
.fs2_c00374{font-size:66.560000pt;}
.fs0_c00374{font-size:69.120000pt;}
.fse_c00374{font-size:71.680000pt;}
.y0_c00374{bottom:0.000000pt;}
.y6b_c00374{bottom:47.360000pt;}
.y6d_c00374{bottom:50.560000pt;}
.y6a_c00374{bottom:51.200000pt;}
.y6c_c00374{bottom:51.840000pt;}
.y69_c00374{bottom:79.360000pt;}
.y65_c00374{bottom:85.760000pt;}
.y67_c00374{bottom:87.040000pt;}
.y64_c00374{bottom:88.320000pt;}
.y66_c00374{bottom:88.960000pt;}
.y68_c00374{bottom:89.600000pt;}
.y63_c00374{bottom:125.440000pt;}
.y5e_c00374{bottom:152.320000pt;}
.y61_c00374{bottom:153.600000pt;}
.y5f_c00374{bottom:154.240000pt;}
.y5d_c00374{bottom:155.520000pt;}
.y60_c00374{bottom:156.800000pt;}
.y62_c00374{bottom:157.440000pt;}
.y4a_c00374{bottom:190.080000pt;}
.y49_c00374{bottom:193.280000pt;}
.y5c_c00374{bottom:193.920000pt;}
.y5b_c00374{bottom:194.560000pt;}
.y48_c00374{bottom:228.480000pt;}
.y47_c00374{bottom:231.680000pt;}
.y44_c00374{bottom:267.520000pt;}
.y46_c00374{bottom:268.160000pt;}
.y43_c00374{bottom:270.080000pt;}
.y5a_c00374{bottom:270.720000pt;}
.y45_c00374{bottom:271.360000pt;}
.y40_c00374{bottom:306.560000pt;}
.y3f_c00374{bottom:308.480000pt;}
.y58_c00374{bottom:309.120000pt;}
.y41_c00374{bottom:309.760000pt;}
.y42_c00374{bottom:310.400000pt;}
.y59_c00374{bottom:311.040000pt;}
.y3e_c00374{bottom:344.320000pt;}
.y3d_c00374{bottom:346.880000pt;}
.y57_c00374{bottom:348.800000pt;}
.y3a_c00374{bottom:383.360000pt;}
.y3c_c00374{bottom:384.000000pt;}
.y3b_c00374{bottom:384.640000pt;}
.y39_c00374{bottom:385.280000pt;}
.y56_c00374{bottom:386.560000pt;}
.y36_c00374{bottom:422.400000pt;}
.y38_c00374{bottom:423.040000pt;}
.y37_c00374{bottom:423.680000pt;}
.y35_c00374{bottom:424.320000pt;}
.y55_c00374{bottom:426.240000pt;}
.y34_c00374{bottom:460.160000pt;}
.y33_c00374{bottom:462.080000pt;}
.y54_c00374{bottom:462.720000pt;}
.y53_c00374{bottom:464.640000pt;}
.y32_c00374{bottom:499.200000pt;}
.y52_c00374{bottom:500.480000pt;}
.y31_c00374{bottom:501.120000pt;}
.y30_c00374{bottom:538.240000pt;}
.y2f_c00374{bottom:538.880000pt;}
.y2d_c00374{bottom:539.520000pt;}
.y2e_c00374{bottom:540.160000pt;}
.y51_c00374{bottom:540.800000pt;}
.y2c_c00374{bottom:576.000000pt;}
.y2a_c00374{bottom:576.640000pt;}
.y4f_c00374{bottom:577.280000pt;}
.y2b_c00374{bottom:578.560000pt;}
.y50_c00374{bottom:579.200000pt;}
.y26_c00374{bottom:613.120000pt;}
.y29_c00374{bottom:613.760000pt;}
.y27_c00374{bottom:614.400000pt;}
.y25_c00374{bottom:615.040000pt;}
.y4e_c00374{bottom:615.680000pt;}
.y28_c00374{bottom:617.600000pt;}
.y24_c00374{bottom:650.880000pt;}
.y23_c00374{bottom:651.520000pt;}
.y21_c00374{bottom:652.800000pt;}
.y4d_c00374{bottom:654.720000pt;}
.y22_c00374{bottom:655.360000pt;}
.y20_c00374{bottom:689.920000pt;}
.y1e_c00374{bottom:691.200000pt;}
.y4c_c00374{bottom:691.840000pt;}
.y1f_c00374{bottom:693.120000pt;}
.y1d_c00374{bottom:728.320000pt;}
.y1b_c00374{bottom:729.600000pt;}
.y1c_c00374{bottom:731.520000pt;}
.y4b_c00374{bottom:732.160000pt;}
.y19_c00374{bottom:766.720000pt;}
.y16_c00374{bottom:768.000000pt;}
.y1a_c00374{bottom:768.640000pt;}
.y17_c00374{bottom:769.920000pt;}
.y18_c00374{bottom:770.560000pt;}
.y15_c00374{bottom:805.120000pt;}
.y14_c00374{bottom:808.960000pt;}
.y11_c00374{bottom:833.920000pt;}
.y10_c00374{bottom:834.560000pt;}
.ye_c00374{bottom:835.200000pt;}
.y13_c00374{bottom:835.840000pt;}
.y12_c00374{bottom:837.120000pt;}
.yf_c00374{bottom:837.760000pt;}
.yc_c00374{bottom:874.240000pt;}
.yd_c00374{bottom:875.520000pt;}
.yb_c00374{bottom:876.160000pt;}
.ya_c00374{bottom:920.960000pt;}
.y8_c00374{bottom:921.600000pt;}
.y7_c00374{bottom:923.520000pt;}
.y9_c00374{bottom:924.160000pt;}
.y3_c00374{bottom:949.120000pt;}
.y2_c00374{bottom:950.400000pt;}
.y4_c00374{bottom:951.040000pt;}
.y6_c00374{bottom:952.320000pt;}
.y5_c00374{bottom:952.960000pt;}
.y1_c00374{bottom:984.320000pt;}
.hb_c00374{height:27.645000pt;}
.hf_c00374{height:34.556250pt;}
.h5_c00374{height:36.860000pt;}
.h7_c00374{height:39.163750pt;}
.h8_c00374{height:41.467500pt;}
.hd_c00374{height:43.771250pt;}
.h9_c00374{height:46.075000pt;}
.h6_c00374{height:48.378750pt;}
.he_c00374{height:50.682500pt;}
.hc_c00374{height:52.986250pt;}
.h3_c00374{height:55.290000pt;}
.ha_c00374{height:57.593750pt;}
.h4_c00374{height:59.897500pt;}
.h2_c00374{height:62.201250pt;}
.h10_c00374{height:64.505000pt;}
.h0_c00374{height:1015.680000pt;}
.h1_c00374{height:1016.000000pt;}
.w0_c00374{width:679.680000pt;}
.w1_c00374{width:680.000000pt;}
.x0_c00374{left:0.000000pt;}
.x2_c00374{left:50.560000pt;}
.x1b_c00374{left:51.840000pt;}
.xe_c00374{left:99.200000pt;}
.x11_c00374{left:117.120000pt;}
.x3_c00374{left:118.400000pt;}
.xf_c00374{left:128.640000pt;}
.xa_c00374{left:155.520000pt;}
.x12_c00374{left:156.800000pt;}
.x19_c00374{left:184.960000pt;}
.x10_c00374{left:193.920000pt;}
.x24_c00374{left:195.200000pt;}
.x23_c00374{left:196.480000pt;}
.x4_c00374{left:204.160000pt;}
.x1c_c00374{left:214.400000pt;}
.x2f_c00374{left:224.000000pt;}
.x25_c00374{left:232.960000pt;}
.x1a_c00374{left:234.240000pt;}
.x33_c00374{left:241.920000pt;}
.x1d_c00374{left:243.200000pt;}
.xb_c00374{left:251.520000pt;}
.x5_c00374{left:253.440000pt;}
.x1e_c00374{left:262.400000pt;}
.x27_c00374{left:272.000000pt;}
.x26_c00374{left:282.240000pt;}
.xc_c00374{left:290.560000pt;}
.x21_c00374{left:311.040000pt;}
.x13_c00374{left:329.600000pt;}
.x6_c00374{left:337.920000pt;}
.xd_c00374{left:339.200000pt;}
.x30_c00374{left:358.400000pt;}
.x32_c00374{left:376.960000pt;}
.x7_c00374{left:378.240000pt;}
.x22_c00374{left:387.200000pt;}
.x14_c00374{left:424.960000pt;}
.x31_c00374{left:453.120000pt;}
.x8_c00374{left:455.040000pt;}
.x1f_c00374{left:472.320000pt;}
.x15_c00374{left:474.240000pt;}
.x2c_c00374{left:483.840000pt;}
.x2a_c00374{left:492.160000pt;}
.x2b_c00374{left:493.440000pt;}
.x2d_c00374{left:511.360000pt;}
.x9_c00374{left:512.640000pt;}
.x28_c00374{left:522.240000pt;}
.x34_c00374{left:540.160000pt;}
.x16_c00374{left:542.080000pt;}
.x2e_c00374{left:570.240000pt;}
.x17_c00374{left:571.520000pt;}
.x29_c00374{left:600.320000pt;}
.x20_c00374{left:608.640000pt;}
.x1_c00374{left:610.560000pt;}
.x18_c00374{left:627.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_dbbae56ac80a2778d5610fae.woff2')format("woff");}.ff1_c00375{font-family:ff1_c00375;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m42_c00375{transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);}
.m34_c00375{transform:matrix(0.207200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207200,0.000000,0.000000,0.250000,0,0);}
.m4f_c00375{transform:matrix(0.211525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211525,0.000000,0.000000,0.250000,0,0);}
.me_c00375{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);}
.m1c_c00375{transform:matrix(0.226025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226025,0.000000,0.000000,0.250000,0,0);}
.m3b_c00375{transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);}
.m26_c00375{transform:matrix(0.233800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233800,0.000000,0.000000,0.250000,0,0);}
.m50_c00375{transform:matrix(0.236425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236425,0.000000,0.000000,0.250000,0,0);}
.m16_c00375{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m46_c00375{transform:matrix(0.240075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240075,0.000000,0.000000,0.250000,0,0);}
.m56_c00375{transform:matrix(0.244325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244325,0.000000,0.000000,0.250000,0,0);}
.m22_c00375{transform:matrix(0.245825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245825,0.000000,0.000000,0.250000,0,0);}
.m12_c00375{transform:matrix(0.247675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247675,0.000000,0.000000,0.250000,0,0);}
.m36_c00375{transform:matrix(0.248100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248100,0.000000,0.000000,0.250000,0,0);}
.m30_c00375{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);}
.m35_c00375{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m21_c00375{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m19_c00375{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);}
.m2e_c00375{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_c00375{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m1_c00375{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m3_c00375{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_c00375{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m15_c00375{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m28_c00375{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m49_c00375{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.ma_c00375{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00375{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m5_c00375{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m4_c00375{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00375{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m52_c00375{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mb_c00375{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.md_c00375{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00375{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mc_c00375{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m20_c00375{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m27_c00375{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mf_c00375{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m37_c00375{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m41_c00375{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00375{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m25_c00375{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m51_c00375{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00375{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m31_c00375{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m6_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);}
.m44_c00375{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);}
.m2b_c00375{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00375{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m9_c00375{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m2_c00375{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m54_c00375{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);}
.m3d_c00375{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m18_c00375{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);}
.m0_c00375{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00375{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m10_c00375{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);}
.m4d_c00375{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);}
.m2c_c00375{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00375{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);}
.m33_c00375{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m32_c00375{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);}
.m1b_c00375{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);}
.m17_c00375{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);}
.m40_c00375{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);}
.m43_c00375{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);}
.m3c_c00375{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00375{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00375{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m29_c00375{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m38_c00375{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m39_c00375{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m23_c00375{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m55_c00375{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);}
.m47_c00375{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m48_c00375{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);}
.m1d_c00375{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m14_c00375{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);}
.m4a_c00375{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m13_c00375{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00375{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);}
.m2f_c00375{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m24_c00375{transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);}
.m7_c00375{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);}
.m45_c00375{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.m53_c00375{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.v0_c00375{vertical-align:0.000000px;}
.v1_c00375{vertical-align:5.760000px;}
.ls0_c00375{letter-spacing:0.000000px;}
.sc__c00375{text-shadow:none;}
.sc0_c00375{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00375{-webkit-text-stroke:0px transparent;}
.sc0_c00375{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00375{word-spacing:0.000000px;}
.ws0_c00375{word-spacing:47.598000px;}
.fc0_c00375{color:transparent;}
.fs10_c00375{font-size:14.400000px;}
.fse_c00375{font-size:17.280000px;}
.fsd_c00375{font-size:37.440000px;}
.fs8_c00375{font-size:40.320000px;}
.fsf_c00375{font-size:43.200000px;}
.fsc_c00375{font-size:46.080000px;}
.fsa_c00375{font-size:48.960000px;}
.fs4_c00375{font-size:51.840000px;}
.fs5_c00375{font-size:54.720000px;}
.fs3_c00375{font-size:57.600000px;}
.fs0_c00375{font-size:60.480000px;}
.fs6_c00375{font-size:63.360000px;}
.fsb_c00375{font-size:66.240000px;}
.fs7_c00375{font-size:69.120000px;}
.fs9_c00375{font-size:72.000000px;}
.fs2_c00375{font-size:74.880000px;}
.fs1_c00375{font-size:77.760000px;}
.y0_c00375{bottom:0.000000px;}
.y79_c00375{bottom:43.920000px;}
.y7d_c00375{bottom:45.360000px;}
.y78_c00375{bottom:46.080000px;}
.y7b_c00375{bottom:46.800000px;}
.y7a_c00375{bottom:47.520000px;}
.y76_c00375{bottom:48.240000px;}
.y7c_c00375{bottom:48.960000px;}
.y77_c00375{bottom:51.840000px;}
.y70_c00375{bottom:87.120000px;}
.y71_c00375{bottom:88.560000px;}
.y75_c00375{bottom:89.280000px;}
.y73_c00375{bottom:90.000000px;}
.y72_c00375{bottom:90.720000px;}
.y6f_c00375{bottom:91.440000px;}
.y74_c00375{bottom:92.880000px;}
.y6a_c00375{bottom:131.040000px;}
.y6d_c00375{bottom:131.760000px;}
.y6b_c00375{bottom:133.200000px;}
.y69_c00375{bottom:133.920000px;}
.y6e_c00375{bottom:134.640000px;}
.y6c_c00375{bottom:135.360000px;}
.y67_c00375{bottom:174.960000px;}
.y65_c00375{bottom:175.680000px;}
.y64_c00375{bottom:176.400000px;}
.y66_c00375{bottom:177.840000px;}
.y60_c00375{bottom:206.640000px;}
.y68_c00375{bottom:208.800000px;}
.y62_c00375{bottom:209.520000px;}
.y5e_c00375{bottom:210.240000px;}
.y61_c00375{bottom:210.960000px;}
.y63_c00375{bottom:211.680000px;}
.y5f_c00375{bottom:213.840000px;}
.y5c_c00375{bottom:250.560000px;}
.y5b_c00375{bottom:251.280000px;}
.y5a_c00375{bottom:252.000000px;}
.y5d_c00375{bottom:254.160000px;}
.y55_c00375{bottom:304.560000px;}
.y56_c00375{bottom:305.280000px;}
.y58_c00375{bottom:306.000000px;}
.y54_c00375{bottom:306.720000px;}
.y59_c00375{bottom:307.440000px;}
.y52_c00375{bottom:347.760000px;}
.y57_c00375{bottom:349.200000px;}
.y51_c00375{bottom:349.920000px;}
.y53_c00375{bottom:351.360000px;}
.y4f_c00375{bottom:392.400000px;}
.y4e_c00375{bottom:393.120000px;}
.y50_c00375{bottom:393.840000px;}
.y4d_c00375{bottom:394.560000px;}
.y4b_c00375{bottom:444.240000px;}
.y4a_c00375{bottom:447.840000px;}
.y45_c00375{bottom:476.640000px;}
.y46_c00375{bottom:477.360000px;}
.y49_c00375{bottom:478.080000px;}
.y4c_c00375{bottom:478.800000px;}
.y44_c00375{bottom:479.520000px;}
.y47_c00375{bottom:480.240000px;}
.y48_c00375{bottom:480.960000px;}
.y41_c00375{bottom:519.840000px;}
.y42_c00375{bottom:521.280000px;}
.y43_c00375{bottom:522.000000px;}
.y40_c00375{bottom:522.720000px;}
.y3b_c00375{bottom:563.040000px;}
.y3e_c00375{bottom:563.760000px;}
.y3f_c00375{bottom:564.480000px;}
.y3c_c00375{bottom:565.200000px;}
.y3a_c00375{bottom:565.920000px;}
.y3d_c00375{bottom:566.640000px;}
.y36_c00375{bottom:606.960000px;}
.y39_c00375{bottom:607.680000px;}
.y37_c00375{bottom:608.400000px;}
.y35_c00375{bottom:609.120000px;}
.y38_c00375{bottom:610.560000px;}
.y33_c00375{bottom:652.320000px;}
.y34_c00375{bottom:654.480000px;}
.y32_c00375{bottom:655.200000px;}
.y2e_c00375{bottom:704.160000px;}
.y2d_c00375{bottom:704.880000px;}
.y2f_c00375{bottom:705.600000px;}
.y30_c00375{bottom:706.320000px;}
.y2c_c00375{bottom:707.040000px;}
.y31_c00375{bottom:708.480000px;}
.y29_c00375{bottom:747.360000px;}
.y26_c00375{bottom:748.080000px;}
.y2b_c00375{bottom:748.800000px;}
.y2a_c00375{bottom:749.520000px;}
.y25_c00375{bottom:750.240000px;}
.y28_c00375{bottom:750.960000px;}
.y27_c00375{bottom:751.680000px;}
.y21_c00375{bottom:790.560000px;}
.y22_c00375{bottom:792.720000px;}
.y20_c00375{bottom:793.440000px;}
.y24_c00375{bottom:794.160000px;}
.y23_c00375{bottom:794.880000px;}
.y1d_c00375{bottom:833.760000px;}
.y1f_c00375{bottom:834.480000px;}
.y14_c00375{bottom:835.200000px;}
.y13_c00375{bottom:835.920000px;}
.y15_c00375{bottom:836.640000px;}
.y1e_c00375{bottom:837.360000px;}
.y1c_c00375{bottom:877.680000px;}
.y11_c00375{bottom:878.400000px;}
.y10_c00375{bottom:879.120000px;}
.y12_c00375{bottom:881.280000px;}
.y1a_c00375{bottom:920.880000px;}
.yf_c00375{bottom:921.600000px;}
.y19_c00375{bottom:922.320000px;}
.ye_c00375{bottom:923.760000px;}
.y1b_c00375{bottom:924.480000px;}
.y2_c00375{bottom:963.360000px;}
.yc_c00375{bottom:964.800000px;}
.y1_c00375{bottom:965.520000px;}
.yd_c00375{bottom:966.960000px;}
.y17_c00375{bottom:1006.560000px;}
.y9_c00375{bottom:1007.280000px;}
.y8_c00375{bottom:1008.000000px;}
.yb_c00375{bottom:1008.720000px;}
.ya_c00375{bottom:1009.440000px;}
.y18_c00375{bottom:1010.880000px;}
.y6_c00375{bottom:1049.760000px;}
.y5_c00375{bottom:1050.480000px;}
.y16_c00375{bottom:1051.200000px;}
.y7_c00375{bottom:1051.920000px;}
.y4_c00375{bottom:1052.640000px;}
.y3_c00375{bottom:1108.080000px;}
.h13_c00375{height:12.958594px;}
.h11_c00375{height:15.550313px;}
.h10_c00375{height:33.692344px;}
.hb_c00375{height:36.284062px;}
.h12_c00375{height:38.875781px;}
.hf_c00375{height:41.467500px;}
.hd_c00375{height:44.059219px;}
.h6_c00375{height:46.650937px;}
.h7_c00375{height:49.242656px;}
.h5_c00375{height:51.834375px;}
.h2_c00375{height:54.426094px;}
.h8_c00375{height:57.017812px;}
.h9_c00375{height:57.594375px;}
.he_c00375{height:59.609531px;}
.ha_c00375{height:62.201250px;}
.hc_c00375{height:64.792969px;}
.h4_c00375{height:67.384687px;}
.h3_c00375{height:69.976406px;}
.h1_c00375{height:1149.000000px;}
.h0_c00375{height:1149.120000px;}
.w0_c00375{width:775.440000px;}
.w1_c00375{width:775.500000px;}
.x0_c00375{left:0.000000px;}
.x1_c00375{left:63.360000px;}
.x2d_c00375{left:115.200000px;}
.x1b_c00375{left:116.640000px;}
.x1d_c00375{left:136.800000px;}
.x2_c00375{left:138.240000px;}
.x25_c00375{left:149.040000px;}
.x2b_c00375{left:170.640000px;}
.x24_c00375{left:180.000000px;}
.x33_c00375{left:181.440000px;}
.x26_c00375{left:192.960000px;}
.x1c_c00375{left:212.400000px;}
.x27_c00375{left:222.480000px;}
.xd_c00375{left:225.360000px;}
.x2e_c00375{left:234.000000px;}
.x1e_c00375{left:235.440000px;}
.x21_c00375{left:256.320000px;}
.x12_c00375{left:257.760000px;}
.x10_c00375{left:268.560000px;}
.x28_c00375{left:277.200000px;}
.xe_c00375{left:279.360000px;}
.x14_c00375{left:289.440000px;}
.x19_c00375{left:311.040000px;}
.xf_c00375{left:321.840000px;}
.xc_c00375{left:332.640000px;}
.x15_c00375{left:343.440000px;}
.x22_c00375{left:354.240000px;}
.x2c_c00375{left:363.600000px;}
.x11_c00375{left:365.040000px;}
.x2f_c00375{left:376.560000px;}
.x29_c00375{left:386.640000px;}
.x13_c00375{left:398.160000px;}
.x1a_c00375{left:408.240000px;}
.x16_c00375{left:410.400000px;}
.x34_c00375{left:416.880000px;}
.x30_c00375{left:419.040000px;}
.x2a_c00375{left:429.120000px;}
.x17_c00375{left:462.240000px;}
.x31_c00375{left:473.040000px;}
.x35_c00375{left:515.520000px;}
.x23_c00375{left:527.040000px;}
.x18_c00375{left:550.080000px;}
.x4_c00375{left:560.880000px;}
.xb_c00375{left:581.760000px;}
.x5_c00375{left:614.880000px;}
.xa_c00375{left:616.320000px;}
.x6_c00375{left:648.000000px;}
.x32_c00375{left:657.360000px;}
.x1f_c00375{left:658.800000px;}
.x7_c00375{left:681.840000px;}
.x3_c00375{left:686.880000px;}
.x20_c00375{left:689.040000px;}
.x9_c00375{left:691.200000px;}
.x8_c00375{left:712.080000px;}
@media print{
.v0_c00375{vertical-align:0.000000pt;}
.v1_c00375{vertical-align:5.120000pt;}
.ls0_c00375{letter-spacing:0.000000pt;}
.ws1_c00375{word-spacing:0.000000pt;}
.ws0_c00375{word-spacing:42.309333pt;}
.fs10_c00375{font-size:12.800000pt;}
.fse_c00375{font-size:15.360000pt;}
.fsd_c00375{font-size:33.280000pt;}
.fs8_c00375{font-size:35.840000pt;}
.fsf_c00375{font-size:38.400000pt;}
.fsc_c00375{font-size:40.960000pt;}
.fsa_c00375{font-size:43.520000pt;}
.fs4_c00375{font-size:46.080000pt;}
.fs5_c00375{font-size:48.640000pt;}
.fs3_c00375{font-size:51.200000pt;}
.fs0_c00375{font-size:53.760000pt;}
.fs6_c00375{font-size:56.320000pt;}
.fsb_c00375{font-size:58.880000pt;}
.fs7_c00375{font-size:61.440000pt;}
.fs9_c00375{font-size:64.000000pt;}
.fs2_c00375{font-size:66.560000pt;}
.fs1_c00375{font-size:69.120000pt;}
.y0_c00375{bottom:0.000000pt;}
.y79_c00375{bottom:39.040000pt;}
.y7d_c00375{bottom:40.320000pt;}
.y78_c00375{bottom:40.960000pt;}
.y7b_c00375{bottom:41.600000pt;}
.y7a_c00375{bottom:42.240000pt;}
.y76_c00375{bottom:42.880000pt;}
.y7c_c00375{bottom:43.520000pt;}
.y77_c00375{bottom:46.080000pt;}
.y70_c00375{bottom:77.440000pt;}
.y71_c00375{bottom:78.720000pt;}
.y75_c00375{bottom:79.360000pt;}
.y73_c00375{bottom:80.000000pt;}
.y72_c00375{bottom:80.640000pt;}
.y6f_c00375{bottom:81.280000pt;}
.y74_c00375{bottom:82.560000pt;}
.y6a_c00375{bottom:116.480000pt;}
.y6d_c00375{bottom:117.120000pt;}
.y6b_c00375{bottom:118.400000pt;}
.y69_c00375{bottom:119.040000pt;}
.y6e_c00375{bottom:119.680000pt;}
.y6c_c00375{bottom:120.320000pt;}
.y67_c00375{bottom:155.520000pt;}
.y65_c00375{bottom:156.160000pt;}
.y64_c00375{bottom:156.800000pt;}
.y66_c00375{bottom:158.080000pt;}
.y60_c00375{bottom:183.680000pt;}
.y68_c00375{bottom:185.600000pt;}
.y62_c00375{bottom:186.240000pt;}
.y5e_c00375{bottom:186.880000pt;}
.y61_c00375{bottom:187.520000pt;}
.y63_c00375{bottom:188.160000pt;}
.y5f_c00375{bottom:190.080000pt;}
.y5c_c00375{bottom:222.720000pt;}
.y5b_c00375{bottom:223.360000pt;}
.y5a_c00375{bottom:224.000000pt;}
.y5d_c00375{bottom:225.920000pt;}
.y55_c00375{bottom:270.720000pt;}
.y56_c00375{bottom:271.360000pt;}
.y58_c00375{bottom:272.000000pt;}
.y54_c00375{bottom:272.640000pt;}
.y59_c00375{bottom:273.280000pt;}
.y52_c00375{bottom:309.120000pt;}
.y57_c00375{bottom:310.400000pt;}
.y51_c00375{bottom:311.040000pt;}
.y53_c00375{bottom:312.320000pt;}
.y4f_c00375{bottom:348.800000pt;}
.y4e_c00375{bottom:349.440000pt;}
.y50_c00375{bottom:350.080000pt;}
.y4d_c00375{bottom:350.720000pt;}
.y4b_c00375{bottom:394.880000pt;}
.y4a_c00375{bottom:398.080000pt;}
.y45_c00375{bottom:423.680000pt;}
.y46_c00375{bottom:424.320000pt;}
.y49_c00375{bottom:424.960000pt;}
.y4c_c00375{bottom:425.600000pt;}
.y44_c00375{bottom:426.240000pt;}
.y47_c00375{bottom:426.880000pt;}
.y48_c00375{bottom:427.520000pt;}
.y41_c00375{bottom:462.080000pt;}
.y42_c00375{bottom:463.360000pt;}
.y43_c00375{bottom:464.000000pt;}
.y40_c00375{bottom:464.640000pt;}
.y3b_c00375{bottom:500.480000pt;}
.y3e_c00375{bottom:501.120000pt;}
.y3f_c00375{bottom:501.760000pt;}
.y3c_c00375{bottom:502.400000pt;}
.y3a_c00375{bottom:503.040000pt;}
.y3d_c00375{bottom:503.680000pt;}
.y36_c00375{bottom:539.520000pt;}
.y39_c00375{bottom:540.160000pt;}
.y37_c00375{bottom:540.800000pt;}
.y35_c00375{bottom:541.440000pt;}
.y38_c00375{bottom:542.720000pt;}
.y33_c00375{bottom:579.840000pt;}
.y34_c00375{bottom:581.760000pt;}
.y32_c00375{bottom:582.400000pt;}
.y2e_c00375{bottom:625.920000pt;}
.y2d_c00375{bottom:626.560000pt;}
.y2f_c00375{bottom:627.200000pt;}
.y30_c00375{bottom:627.840000pt;}
.y2c_c00375{bottom:628.480000pt;}
.y31_c00375{bottom:629.760000pt;}
.y29_c00375{bottom:664.320000pt;}
.y26_c00375{bottom:664.960000pt;}
.y2b_c00375{bottom:665.600000pt;}
.y2a_c00375{bottom:666.240000pt;}
.y25_c00375{bottom:666.880000pt;}
.y28_c00375{bottom:667.520000pt;}
.y27_c00375{bottom:668.160000pt;}
.y21_c00375{bottom:702.720000pt;}
.y22_c00375{bottom:704.640000pt;}
.y20_c00375{bottom:705.280000pt;}
.y24_c00375{bottom:705.920000pt;}
.y23_c00375{bottom:706.560000pt;}
.y1d_c00375{bottom:741.120000pt;}
.y1f_c00375{bottom:741.760000pt;}
.y14_c00375{bottom:742.400000pt;}
.y13_c00375{bottom:743.040000pt;}
.y15_c00375{bottom:743.680000pt;}
.y1e_c00375{bottom:744.320000pt;}
.y1c_c00375{bottom:780.160000pt;}
.y11_c00375{bottom:780.800000pt;}
.y10_c00375{bottom:781.440000pt;}
.y12_c00375{bottom:783.360000pt;}
.y1a_c00375{bottom:818.560000pt;}
.yf_c00375{bottom:819.200000pt;}
.y19_c00375{bottom:819.840000pt;}
.ye_c00375{bottom:821.120000pt;}
.y1b_c00375{bottom:821.760000pt;}
.y2_c00375{bottom:856.320000pt;}
.yc_c00375{bottom:857.600000pt;}
.y1_c00375{bottom:858.240000pt;}
.yd_c00375{bottom:859.520000pt;}
.y17_c00375{bottom:894.720000pt;}
.y9_c00375{bottom:895.360000pt;}
.y8_c00375{bottom:896.000000pt;}
.yb_c00375{bottom:896.640000pt;}
.ya_c00375{bottom:897.280000pt;}
.y18_c00375{bottom:898.560000pt;}
.y6_c00375{bottom:933.120000pt;}
.y5_c00375{bottom:933.760000pt;}
.y16_c00375{bottom:934.400000pt;}
.y7_c00375{bottom:935.040000pt;}
.y4_c00375{bottom:935.680000pt;}
.y3_c00375{bottom:984.960000pt;}
.h13_c00375{height:11.518750pt;}
.h11_c00375{height:13.822500pt;}
.h10_c00375{height:29.948750pt;}
.hb_c00375{height:32.252500pt;}
.h12_c00375{height:34.556250pt;}
.hf_c00375{height:36.860000pt;}
.hd_c00375{height:39.163750pt;}
.h6_c00375{height:41.467500pt;}
.h7_c00375{height:43.771250pt;}
.h5_c00375{height:46.075000pt;}
.h2_c00375{height:48.378750pt;}
.h8_c00375{height:50.682500pt;}
.h9_c00375{height:51.195000pt;}
.he_c00375{height:52.986250pt;}
.ha_c00375{height:55.290000pt;}
.hc_c00375{height:57.593750pt;}
.h4_c00375{height:59.897500pt;}
.h3_c00375{height:62.201250pt;}
.h1_c00375{height:1021.333333pt;}
.h0_c00375{height:1021.440000pt;}
.w0_c00375{width:689.280000pt;}
.w1_c00375{width:689.333333pt;}
.x0_c00375{left:0.000000pt;}
.x1_c00375{left:56.320000pt;}
.x2d_c00375{left:102.400000pt;}
.x1b_c00375{left:103.680000pt;}
.x1d_c00375{left:121.600000pt;}
.x2_c00375{left:122.880000pt;}
.x25_c00375{left:132.480000pt;}
.x2b_c00375{left:151.680000pt;}
.x24_c00375{left:160.000000pt;}
.x33_c00375{left:161.280000pt;}
.x26_c00375{left:171.520000pt;}
.x1c_c00375{left:188.800000pt;}
.x27_c00375{left:197.760000pt;}
.xd_c00375{left:200.320000pt;}
.x2e_c00375{left:208.000000pt;}
.x1e_c00375{left:209.280000pt;}
.x21_c00375{left:227.840000pt;}
.x12_c00375{left:229.120000pt;}
.x10_c00375{left:238.720000pt;}
.x28_c00375{left:246.400000pt;}
.xe_c00375{left:248.320000pt;}
.x14_c00375{left:257.280000pt;}
.x19_c00375{left:276.480000pt;}
.xf_c00375{left:286.080000pt;}
.xc_c00375{left:295.680000pt;}
.x15_c00375{left:305.280000pt;}
.x22_c00375{left:314.880000pt;}
.x2c_c00375{left:323.200000pt;}
.x11_c00375{left:324.480000pt;}
.x2f_c00375{left:334.720000pt;}
.x29_c00375{left:343.680000pt;}
.x13_c00375{left:353.920000pt;}
.x1a_c00375{left:362.880000pt;}
.x16_c00375{left:364.800000pt;}
.x34_c00375{left:370.560000pt;}
.x30_c00375{left:372.480000pt;}
.x2a_c00375{left:381.440000pt;}
.x17_c00375{left:410.880000pt;}
.x31_c00375{left:420.480000pt;}
.x35_c00375{left:458.240000pt;}
.x23_c00375{left:468.480000pt;}
.x18_c00375{left:488.960000pt;}
.x4_c00375{left:498.560000pt;}
.xb_c00375{left:517.120000pt;}
.x5_c00375{left:546.560000pt;}
.xa_c00375{left:547.840000pt;}
.x6_c00375{left:576.000000pt;}
.x32_c00375{left:584.320000pt;}
.x1f_c00375{left:585.600000pt;}
.x7_c00375{left:606.080000pt;}
.x3_c00375{left:610.560000pt;}
.x20_c00375{left:612.480000pt;}
.x9_c00375{left:614.400000pt;}
.x8_c00375{left:632.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_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_9d3fa419749521bdb7bbdaf2.woff2')format("woff");}.ff1_c00376{font-family:ff1_c00376;line-height:1.109863;font-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_c00376{transform:matrix(0.188550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188550,0.000000,0.000000,0.250000,0,0);}
.m4d_c00376{transform:matrix(0.202475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202475,0.000000,0.000000,0.250000,0,0);}
.m40_c00376{transform:matrix(0.229950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229950,0.000000,0.000000,0.250000,0,0);}
.m3e_c00376{transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);}
.m47_c00376{transform:matrix(0.234275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234275,0.000000,0.000000,0.250000,0,0);}
.m28_c00376{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m3b_c00376{transform:matrix(0.236800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236800,0.000000,0.000000,0.250000,0,0);}
.m1e_c00376{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m32_c00376{transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);}
.m42_c00376{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m45_c00376{transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);}
.m4c_c00376{transform:matrix(0.249350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249350,0.000000,0.000000,0.250000,0,0);}
.m37_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);}
.m1b_c00376{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);}
.m22_c00376{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m24_c00376{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_c00376{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m16_c00376{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m25_c00376{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.ma_c00376{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.mf_c00376{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_c00376{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m8_c00376{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m46_c00376{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.md_c00376{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m31_c00376{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m21_c00376{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m26_c00376{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m30_c00376{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m49_c00376{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mc_c00376{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00376{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00376{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00376{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m29_c00376{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m27_c00376{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m15_c00376{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m5_c00376{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m0_c00376{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m18_c00376{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00376{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m20_c00376{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.me_c00376{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m34_c00376{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00376{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_c00376{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m17_c00376{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m23_c00376{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.mb_c00376{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00376{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00376{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00376{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m9_c00376{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00376{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m2_c00376{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);}
.m12_c00376{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m4_c00376{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);}
.m48_c00376{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m13_c00376{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m7_c00376{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00376{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);}
.m39_c00376{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);}
.m41_c00376{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m36_c00376{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);}
.m3d_c00376{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m38_c00376{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m6_c00376{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00376{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m44_c00376{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);}
.m35_c00376{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00376{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00376{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m3_c00376{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);}
.m1c_c00376{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00376{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m33_c00376{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m43_c00376{transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00376{transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);}
.m14_c00376{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.v2_c00376{vertical-align:-11.520000px;}
.v1_c00376{vertical-align:-2.880000px;}
.v0_c00376{vertical-align:0.000000px;}
.v3_c00376{vertical-align:20.160000px;}
.ls2_c00376{letter-spacing:0.000000px;}
.ls0_c00376{letter-spacing:88.309680px;}
.ls1_c00376{letter-spacing:90.638400px;}
.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;}
}
.ws2_c00376{word-spacing:0.000000px;}
.ws1_c00376{word-spacing:54.393523px;}
.ws0_c00376{word-spacing:507.203280px;}
.fc0_c00376{color:transparent;}
.fs10_c00376{font-size:20.160000px;}
.fsa_c00376{font-size:31.680000px;}
.fs11_c00376{font-size:34.560000px;}
.fsf_c00376{font-size:37.440000px;}
.fsd_c00376{font-size:40.320000px;}
.fse_c00376{font-size:46.080000px;}
.fs4_c00376{font-size:48.960000px;}
.fs2_c00376{font-size:51.840000px;}
.fsb_c00376{font-size:54.720000px;}
.fsc_c00376{font-size:57.600000px;}
.fs6_c00376{font-size:60.480000px;}
.fs3_c00376{font-size:63.360000px;}
.fs8_c00376{font-size:66.240000px;}
.fs0_c00376{font-size:69.120000px;}
.fs1_c00376{font-size:72.000000px;}
.fs5_c00376{font-size:74.880000px;}
.fs7_c00376{font-size:77.760000px;}
.fs9_c00376{font-size:89.280000px;}
.y0_c00376{bottom:0.000000px;}
.y77_c00376{bottom:11.520000px;}
.y72_c00376{bottom:12.240000px;}
.y74_c00376{bottom:14.400000px;}
.y73_c00376{bottom:15.840000px;}
.y71_c00376{bottom:16.560000px;}
.y75_c00376{bottom:18.000000px;}
.y76_c00376{bottom:18.720000px;}
.y6b_c00376{bottom:54.000000px;}
.y6d_c00376{bottom:55.440000px;}
.y6c_c00376{bottom:56.160000px;}
.y70_c00376{bottom:57.600000px;}
.y6a_c00376{bottom:58.320000px;}
.y6e_c00376{bottom:59.040000px;}
.y6f_c00376{bottom:59.760000px;}
.y65_c00376{bottom:96.480000px;}
.y66_c00376{bottom:97.920000px;}
.y67_c00376{bottom:98.640000px;}
.y69_c00376{bottom:100.080000px;}
.y64_c00376{bottom:100.800000px;}
.y68_c00376{bottom:102.240000px;}
.y5f_c00376{bottom:141.120000px;}
.y62_c00376{bottom:141.840000px;}
.y60_c00376{bottom:142.560000px;}
.y63_c00376{bottom:143.280000px;}
.y5e_c00376{bottom:144.000000px;}
.y61_c00376{bottom:145.440000px;}
.y5b_c00376{bottom:184.320000px;}
.y5c_c00376{bottom:185.760000px;}
.y5a_c00376{bottom:187.920000px;}
.y5d_c00376{bottom:189.360000px;}
.y59_c00376{bottom:227.520000px;}
.y57_c00376{bottom:228.960000px;}
.y58_c00376{bottom:231.120000px;}
.y56_c00376{bottom:252.000000px;}
.y50_c00376{bottom:259.200000px;}
.y51_c00376{bottom:261.360000px;}
.y4f_c00376{bottom:262.080000px;}
.y55_c00376{bottom:262.800000px;}
.y52_c00376{bottom:263.520000px;}
.y53_c00376{bottom:264.240000px;}
.y54_c00376{bottom:265.680000px;}
.y4e_c00376{bottom:295.920000px;}
.y49_c00376{bottom:303.120000px;}
.y4c_c00376{bottom:303.840000px;}
.y4a_c00376{bottom:304.560000px;}
.y48_c00376{bottom:306.000000px;}
.y4b_c00376{bottom:306.720000px;}
.y4d_c00376{bottom:308.160000px;}
.y46_c00376{bottom:347.040000px;}
.y45_c00376{bottom:350.640000px;}
.y42_c00376{bottom:378.720000px;}
.y44_c00376{bottom:380.160000px;}
.y41_c00376{bottom:381.600000px;}
.y43_c00376{bottom:383.040000px;}
.y47_c00376{bottom:383.760000px;}
.y40_c00376{bottom:422.640000px;}
.y3e_c00376{bottom:424.080000px;}
.y3f_c00376{bottom:426.240000px;}
.y3a_c00376{bottom:455.040000px;}
.y3b_c00376{bottom:455.760000px;}
.y3d_c00376{bottom:456.480000px;}
.y39_c00376{bottom:457.920000px;}
.y3c_c00376{bottom:458.640000px;}
.y38_c00376{bottom:498.960000px;}
.y36_c00376{bottom:499.680000px;}
.y37_c00376{bottom:501.840000px;}
.y33_c00376{bottom:529.920000px;}
.y34_c00376{bottom:532.080000px;}
.y32_c00376{bottom:532.800000px;}
.y35_c00376{bottom:534.240000px;}
.y31_c00376{bottom:574.560000px;}
.y2f_c00376{bottom:575.280000px;}
.y30_c00376{bottom:577.440000px;}
.y2b_c00376{bottom:606.960000px;}
.y2c_c00376{bottom:608.400000px;}
.y2a_c00376{bottom:609.120000px;}
.y2e_c00376{bottom:609.840000px;}
.y2d_c00376{bottom:610.560000px;}
.y1c_c00376{bottom:649.440000px;}
.y29_c00376{bottom:650.880000px;}
.y28_c00376{bottom:651.600000px;}
.y1a_c00376{bottom:652.320000px;}
.y1b_c00376{bottom:653.040000px;}
.y19_c00376{bottom:692.640000px;}
.y17_c00376{bottom:694.080000px;}
.y27_c00376{bottom:694.800000px;}
.y18_c00376{bottom:696.960000px;}
.y16_c00376{bottom:735.840000px;}
.y26_c00376{bottom:737.280000px;}
.y13_c00376{bottom:738.000000px;}
.y14_c00376{bottom:738.720000px;}
.y15_c00376{bottom:739.440000px;}
.y10_c00376{bottom:772.560000px;}
.y11_c00376{bottom:780.480000px;}
.y12_c00376{bottom:781.920000px;}
.yf_c00376{bottom:832.320000px;}
.ye_c00376{bottom:833.760000px;}
.y25_c00376{bottom:834.480000px;}
.yd_c00376{bottom:875.520000px;}
.yc_c00376{bottom:876.960000px;}
.y24_c00376{bottom:877.680000px;}
.yb_c00376{bottom:919.440000px;}
.ya_c00376{bottom:920.160000px;}
.y23_c00376{bottom:922.320000px;}
.y9_c00376{bottom:962.640000px;}
.y8_c00376{bottom:963.360000px;}
.y22_c00376{bottom:964.080000px;}
.y7_c00376{bottom:1005.120000px;}
.y6_c00376{bottom:1006.560000px;}
.y20_c00376{bottom:1007.280000px;}
.y21_c00376{bottom:1008.720000px;}
.y5_c00376{bottom:1049.040000px;}
.y4_c00376{bottom:1052.640000px;}
.y1_c00376{bottom:1082.160000px;}
.y1f_c00376{bottom:1082.880000px;}
.y1e_c00376{bottom:1083.600000px;}
.y3_c00376{bottom:1084.320000px;}
.y2_c00376{bottom:1085.040000px;}
.y1d_c00376{bottom:1133.280000px;}
.h12_c00376{height:18.142031px;}
.hc_c00376{height:28.508906px;}
.h14_c00376{height:31.100625px;}
.h11_c00376{height:33.692344px;}
.hf_c00376{height:36.284062px;}
.h10_c00376{height:41.467500px;}
.h6_c00376{height:44.059219px;}
.h4_c00376{height:46.650937px;}
.hd_c00376{height:49.242656px;}
.he_c00376{height:51.834375px;}
.h8_c00376{height:54.426094px;}
.h5_c00376{height:57.017812px;}
.ha_c00376{height:59.609531px;}
.h2_c00376{height:62.201250px;}
.h3_c00376{height:64.792969px;}
.h7_c00376{height:67.384687px;}
.h9_c00376{height:69.976406px;}
.h13_c00376{height:71.994375px;}
.hb_c00376{height:80.343281px;}
.h0_c00376{height:1177.920000px;}
.h1_c00376{height:1178.250000px;}
.w1_c00376{width:768.750000px;}
.w0_c00376{width:768.960000px;}
.x0_c00376{left:0.000000px;}
.x1_c00376{left:54.000000px;}
.x2a_c00376{left:55.440000px;}
.xc_c00376{left:98.640000px;}
.x9_c00376{left:107.280000px;}
.xd_c00376{left:128.160000px;}
.x2_c00376{left:129.600000px;}
.xa_c00376{left:140.400000px;}
.x10_c00376{left:150.480000px;}
.xe_c00376{left:160.560000px;}
.x22_c00376{left:171.360000px;}
.x8_c00376{left:172.800000px;}
.x27_c00376{left:183.600000px;}
.xf_c00376{left:205.200000px;}
.xb_c00376{left:214.560000px;}
.x24_c00376{left:226.080000px;}
.x3_c00376{left:227.520000px;}
.x28_c00376{left:248.400000px;}
.x2f_c00376{left:259.200000px;}
.x23_c00376{left:270.000000px;}
.x11_c00376{left:280.800000px;}
.x4_c00376{left:313.920000px;}
.x12_c00376{left:334.800000px;}
.x30_c00376{left:344.880000px;}
.x1f_c00376{left:366.480000px;}
.x5_c00376{left:367.920000px;}
.x2d_c00376{left:388.800000px;}
.x31_c00376{left:399.600000px;}
.x6_c00376{left:410.400000px;}
.x25_c00376{left:420.480000px;}
.x2e_c00376{left:432.000000px;}
.x32_c00376{left:442.800000px;}
.x20_c00376{left:452.160000px;}
.x2b_c00376{left:463.680000px;}
.x26_c00376{left:465.120000px;}
.x21_c00376{left:507.600000px;}
.x7_c00376{left:519.120000px;}
.x1c_c00376{left:551.520000px;}
.x1b_c00376{left:572.400000px;}
.x18_c00376{left:573.840000px;}
.x1d_c00376{left:605.520000px;}
.x14_c00376{left:606.960000px;}
.x19_c00376{left:630.720000px;}
.x17_c00376{left:639.360000px;}
.x2c_c00376{left:644.400000px;}
.x29_c00376{left:648.720000px;}
.x15_c00376{left:650.160000px;}
.x13_c00376{left:667.440000px;}
.x16_c00376{left:681.840000px;}
.x1a_c00376{left:683.280000px;}
.x1e_c00376{left:702.720000px;}
@media print{
.v2_c00376{vertical-align:-10.240000pt;}
.v1_c00376{vertical-align:-2.560000pt;}
.v0_c00376{vertical-align:0.000000pt;}
.v3_c00376{vertical-align:17.920000pt;}
.ls2_c00376{letter-spacing:0.000000pt;}
.ls0_c00376{letter-spacing:78.497493pt;}
.ls1_c00376{letter-spacing:80.567467pt;}
.ws2_c00376{word-spacing:0.000000pt;}
.ws1_c00376{word-spacing:48.349798pt;}
.ws0_c00376{word-spacing:450.847360pt;}
.fs10_c00376{font-size:17.920000pt;}
.fsa_c00376{font-size:28.160000pt;}
.fs11_c00376{font-size:30.720000pt;}
.fsf_c00376{font-size:33.280000pt;}
.fsd_c00376{font-size:35.840000pt;}
.fse_c00376{font-size:40.960000pt;}
.fs4_c00376{font-size:43.520000pt;}
.fs2_c00376{font-size:46.080000pt;}
.fsb_c00376{font-size:48.640000pt;}
.fsc_c00376{font-size:51.200000pt;}
.fs6_c00376{font-size:53.760000pt;}
.fs3_c00376{font-size:56.320000pt;}
.fs8_c00376{font-size:58.880000pt;}
.fs0_c00376{font-size:61.440000pt;}
.fs1_c00376{font-size:64.000000pt;}
.fs5_c00376{font-size:66.560000pt;}
.fs7_c00376{font-size:69.120000pt;}
.fs9_c00376{font-size:79.360000pt;}
.y0_c00376{bottom:0.000000pt;}
.y77_c00376{bottom:10.240000pt;}
.y72_c00376{bottom:10.880000pt;}
.y74_c00376{bottom:12.800000pt;}
.y73_c00376{bottom:14.080000pt;}
.y71_c00376{bottom:14.720000pt;}
.y75_c00376{bottom:16.000000pt;}
.y76_c00376{bottom:16.640000pt;}
.y6b_c00376{bottom:48.000000pt;}
.y6d_c00376{bottom:49.280000pt;}
.y6c_c00376{bottom:49.920000pt;}
.y70_c00376{bottom:51.200000pt;}
.y6a_c00376{bottom:51.840000pt;}
.y6e_c00376{bottom:52.480000pt;}
.y6f_c00376{bottom:53.120000pt;}
.y65_c00376{bottom:85.760000pt;}
.y66_c00376{bottom:87.040000pt;}
.y67_c00376{bottom:87.680000pt;}
.y69_c00376{bottom:88.960000pt;}
.y64_c00376{bottom:89.600000pt;}
.y68_c00376{bottom:90.880000pt;}
.y5f_c00376{bottom:125.440000pt;}
.y62_c00376{bottom:126.080000pt;}
.y60_c00376{bottom:126.720000pt;}
.y63_c00376{bottom:127.360000pt;}
.y5e_c00376{bottom:128.000000pt;}
.y61_c00376{bottom:129.280000pt;}
.y5b_c00376{bottom:163.840000pt;}
.y5c_c00376{bottom:165.120000pt;}
.y5a_c00376{bottom:167.040000pt;}
.y5d_c00376{bottom:168.320000pt;}
.y59_c00376{bottom:202.240000pt;}
.y57_c00376{bottom:203.520000pt;}
.y58_c00376{bottom:205.440000pt;}
.y56_c00376{bottom:224.000000pt;}
.y50_c00376{bottom:230.400000pt;}
.y51_c00376{bottom:232.320000pt;}
.y4f_c00376{bottom:232.960000pt;}
.y55_c00376{bottom:233.600000pt;}
.y52_c00376{bottom:234.240000pt;}
.y53_c00376{bottom:234.880000pt;}
.y54_c00376{bottom:236.160000pt;}
.y4e_c00376{bottom:263.040000pt;}
.y49_c00376{bottom:269.440000pt;}
.y4c_c00376{bottom:270.080000pt;}
.y4a_c00376{bottom:270.720000pt;}
.y48_c00376{bottom:272.000000pt;}
.y4b_c00376{bottom:272.640000pt;}
.y4d_c00376{bottom:273.920000pt;}
.y46_c00376{bottom:308.480000pt;}
.y45_c00376{bottom:311.680000pt;}
.y42_c00376{bottom:336.640000pt;}
.y44_c00376{bottom:337.920000pt;}
.y41_c00376{bottom:339.200000pt;}
.y43_c00376{bottom:340.480000pt;}
.y47_c00376{bottom:341.120000pt;}
.y40_c00376{bottom:375.680000pt;}
.y3e_c00376{bottom:376.960000pt;}
.y3f_c00376{bottom:378.880000pt;}
.y3a_c00376{bottom:404.480000pt;}
.y3b_c00376{bottom:405.120000pt;}
.y3d_c00376{bottom:405.760000pt;}
.y39_c00376{bottom:407.040000pt;}
.y3c_c00376{bottom:407.680000pt;}
.y38_c00376{bottom:443.520000pt;}
.y36_c00376{bottom:444.160000pt;}
.y37_c00376{bottom:446.080000pt;}
.y33_c00376{bottom:471.040000pt;}
.y34_c00376{bottom:472.960000pt;}
.y32_c00376{bottom:473.600000pt;}
.y35_c00376{bottom:474.880000pt;}
.y31_c00376{bottom:510.720000pt;}
.y2f_c00376{bottom:511.360000pt;}
.y30_c00376{bottom:513.280000pt;}
.y2b_c00376{bottom:539.520000pt;}
.y2c_c00376{bottom:540.800000pt;}
.y2a_c00376{bottom:541.440000pt;}
.y2e_c00376{bottom:542.080000pt;}
.y2d_c00376{bottom:542.720000pt;}
.y1c_c00376{bottom:577.280000pt;}
.y29_c00376{bottom:578.560000pt;}
.y28_c00376{bottom:579.200000pt;}
.y1a_c00376{bottom:579.840000pt;}
.y1b_c00376{bottom:580.480000pt;}
.y19_c00376{bottom:615.680000pt;}
.y17_c00376{bottom:616.960000pt;}
.y27_c00376{bottom:617.600000pt;}
.y18_c00376{bottom:619.520000pt;}
.y16_c00376{bottom:654.080000pt;}
.y26_c00376{bottom:655.360000pt;}
.y13_c00376{bottom:656.000000pt;}
.y14_c00376{bottom:656.640000pt;}
.y15_c00376{bottom:657.280000pt;}
.y10_c00376{bottom:686.720000pt;}
.y11_c00376{bottom:693.760000pt;}
.y12_c00376{bottom:695.040000pt;}
.yf_c00376{bottom:739.840000pt;}
.ye_c00376{bottom:741.120000pt;}
.y25_c00376{bottom:741.760000pt;}
.yd_c00376{bottom:778.240000pt;}
.yc_c00376{bottom:779.520000pt;}
.y24_c00376{bottom:780.160000pt;}
.yb_c00376{bottom:817.280000pt;}
.ya_c00376{bottom:817.920000pt;}
.y23_c00376{bottom:819.840000pt;}
.y9_c00376{bottom:855.680000pt;}
.y8_c00376{bottom:856.320000pt;}
.y22_c00376{bottom:856.960000pt;}
.y7_c00376{bottom:893.440000pt;}
.y6_c00376{bottom:894.720000pt;}
.y20_c00376{bottom:895.360000pt;}
.y21_c00376{bottom:896.640000pt;}
.y5_c00376{bottom:932.480000pt;}
.y4_c00376{bottom:935.680000pt;}
.y1_c00376{bottom:961.920000pt;}
.y1f_c00376{bottom:962.560000pt;}
.y1e_c00376{bottom:963.200000pt;}
.y3_c00376{bottom:963.840000pt;}
.y2_c00376{bottom:964.480000pt;}
.y1d_c00376{bottom:1007.360000pt;}
.h12_c00376{height:16.126250pt;}
.hc_c00376{height:25.341250pt;}
.h14_c00376{height:27.645000pt;}
.h11_c00376{height:29.948750pt;}
.hf_c00376{height:32.252500pt;}
.h10_c00376{height:36.860000pt;}
.h6_c00376{height:39.163750pt;}
.h4_c00376{height:41.467500pt;}
.hd_c00376{height:43.771250pt;}
.he_c00376{height:46.075000pt;}
.h8_c00376{height:48.378750pt;}
.h5_c00376{height:50.682500pt;}
.ha_c00376{height:52.986250pt;}
.h2_c00376{height:55.290000pt;}
.h3_c00376{height:57.593750pt;}
.h7_c00376{height:59.897500pt;}
.h9_c00376{height:62.201250pt;}
.h13_c00376{height:63.995000pt;}
.hb_c00376{height:71.416250pt;}
.h0_c00376{height:1047.040000pt;}
.h1_c00376{height:1047.333333pt;}
.w1_c00376{width:683.333333pt;}
.w0_c00376{width:683.520000pt;}
.x0_c00376{left:0.000000pt;}
.x1_c00376{left:48.000000pt;}
.x2a_c00376{left:49.280000pt;}
.xc_c00376{left:87.680000pt;}
.x9_c00376{left:95.360000pt;}
.xd_c00376{left:113.920000pt;}
.x2_c00376{left:115.200000pt;}
.xa_c00376{left:124.800000pt;}
.x10_c00376{left:133.760000pt;}
.xe_c00376{left:142.720000pt;}
.x22_c00376{left:152.320000pt;}
.x8_c00376{left:153.600000pt;}
.x27_c00376{left:163.200000pt;}
.xf_c00376{left:182.400000pt;}
.xb_c00376{left:190.720000pt;}
.x24_c00376{left:200.960000pt;}
.x3_c00376{left:202.240000pt;}
.x28_c00376{left:220.800000pt;}
.x2f_c00376{left:230.400000pt;}
.x23_c00376{left:240.000000pt;}
.x11_c00376{left:249.600000pt;}
.x4_c00376{left:279.040000pt;}
.x12_c00376{left:297.600000pt;}
.x30_c00376{left:306.560000pt;}
.x1f_c00376{left:325.760000pt;}
.x5_c00376{left:327.040000pt;}
.x2d_c00376{left:345.600000pt;}
.x31_c00376{left:355.200000pt;}
.x6_c00376{left:364.800000pt;}
.x25_c00376{left:373.760000pt;}
.x2e_c00376{left:384.000000pt;}
.x32_c00376{left:393.600000pt;}
.x20_c00376{left:401.920000pt;}
.x2b_c00376{left:412.160000pt;}
.x26_c00376{left:413.440000pt;}
.x21_c00376{left:451.200000pt;}
.x7_c00376{left:461.440000pt;}
.x1c_c00376{left:490.240000pt;}
.x1b_c00376{left:508.800000pt;}
.x18_c00376{left:510.080000pt;}
.x1d_c00376{left:538.240000pt;}
.x14_c00376{left:539.520000pt;}
.x19_c00376{left:560.640000pt;}
.x17_c00376{left:568.320000pt;}
.x2c_c00376{left:572.800000pt;}
.x29_c00376{left:576.640000pt;}
.x15_c00376{left:577.920000pt;}
.x13_c00376{left:593.280000pt;}
.x16_c00376{left:606.080000pt;}
.x1a_c00376{left:607.360000pt;}
.x1e_c00376{left:624.640000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d3892c1812a542911573fd57.woff2')format("woff");}.ff1_c00377{font-family:ff1_c00377;line-height:1.109863;font-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_c00377{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m46_c00377{transform:matrix(0.177600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177600,0.000000,0.000000,0.250000,0,0);}
.m37_c00377{transform:matrix(0.210775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210775,0.000000,0.000000,0.250000,0,0);}
.m2d_c00377{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00377{transform:matrix(0.233775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233775,0.000000,0.000000,0.250000,0,0);}
.m13_c00377{transform:matrix(0.239875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239875,0.000000,0.000000,0.250000,0,0);}
.m29_c00377{transform:matrix(0.245025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245025,0.000000,0.000000,0.250000,0,0);}
.m39_c00377{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m31_c00377{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m8_c00377{transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);}
.m21_c00377{transform:matrix(0.249050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249050,0.000000,0.000000,0.250000,0,0);}
.m1_c00377{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m18_c00377{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);}
.m23_c00377{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mc_c00377{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);}
.m2f_c00377{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);}
.m2c_c00377{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m36_c00377{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);}
.m3b_c00377{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00377{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00377{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m41_c00377{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mb_c00377{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m15_c00377{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m6_c00377{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m30_c00377{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m42_c00377{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00377{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m12_c00377{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00377{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m44_c00377{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m35_c00377{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m32_c00377{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m0_c00377{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m33_c00377{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00377{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m19_c00377{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m22_c00377{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m20_c00377{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mf_c00377{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m17_c00377{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.ma_c00377{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);}
.m47_c00377{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m4_c00377{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00377{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00377{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);}
.m3a_c00377{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m43_c00377{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);}
.m1d_c00377{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m7_c00377{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m11_c00377{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_c00377{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m5_c00377{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);}
.m34_c00377{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);}
.m38_c00377{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);}
.m3_c00377{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m16_c00377{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00377{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.md_c00377{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.me_c00377{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m40_c00377{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m9_c00377{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m26_c00377{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m25_c00377{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m14_c00377{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);}
.m1b_c00377{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00377{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);}
.m27_c00377{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m2_c00377{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m28_c00377{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m24_c00377{transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);}
.m45_c00377{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.v1_c00377{vertical-align:-2.880000px;}
.v0_c00377{vertical-align:0.000000px;}
.v2_c00377{vertical-align:2.880000px;}
.v3_c00377{vertical-align:5.760000px;}
.ls1_c00377{letter-spacing:0.000000px;}
.ls0_c00377{letter-spacing:87.974400px;}
.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:-6.902400px;}
.ws2_c00377{word-spacing:0.000000px;}
.ws1_c00377{word-spacing:9.474000px;}
.fc0_c00377{color:transparent;}
.fsc_c00377{font-size:5.760000px;}
.fs8_c00377{font-size:43.200000px;}
.fsa_c00377{font-size:46.080000px;}
.fs5_c00377{font-size:48.960000px;}
.fs2_c00377{font-size:51.840000px;}
.fs6_c00377{font-size:54.720000px;}
.fsd_c00377{font-size:57.600000px;}
.fs3_c00377{font-size:60.480000px;}
.fsb_c00377{font-size:63.360000px;}
.fs9_c00377{font-size:66.240000px;}
.fs0_c00377{font-size:69.120000px;}
.fs7_c00377{font-size:72.000000px;}
.fs1_c00377{font-size:74.880000px;}
.fs4_c00377{font-size:77.760000px;}
.fse_c00377{font-size:92.160000px;}
.y0_c00377{bottom:0.000000px;}
.y66_c00377{bottom:48.240000px;}
.y67_c00377{bottom:48.960000px;}
.y75_c00377{bottom:51.120000px;}
.y76_c00377{bottom:51.840000px;}
.y65_c00377{bottom:52.560000px;}
.y62_c00377{bottom:92.160000px;}
.y63_c00377{bottom:92.880000px;}
.y64_c00377{bottom:93.600000px;}
.y73_c00377{bottom:95.040000px;}
.y74_c00377{bottom:95.760000px;}
.y61_c00377{bottom:96.480000px;}
.y5f_c00377{bottom:136.080000px;}
.y71_c00377{bottom:138.240000px;}
.y5e_c00377{bottom:138.960000px;}
.y72_c00377{bottom:140.400000px;}
.y60_c00377{bottom:141.120000px;}
.y5b_c00377{bottom:179.280000px;}
.y5d_c00377{bottom:180.720000px;}
.y6e_c00377{bottom:182.160000px;}
.y5c_c00377{bottom:182.880000px;}
.y5a_c00377{bottom:183.600000px;}
.y70_c00377{bottom:184.320000px;}
.y6f_c00377{bottom:185.040000px;}
.y59_c00377{bottom:223.200000px;}
.y6c_c00377{bottom:224.640000px;}
.y58_c00377{bottom:225.360000px;}
.y6d_c00377{bottom:226.080000px;}
.y57_c00377{bottom:266.400000px;}
.y6b_c00377{bottom:268.560000px;}
.y56_c00377{bottom:269.280000px;}
.y55_c00377{bottom:309.600000px;}
.y54_c00377{bottom:312.480000px;}
.y69_c00377{bottom:313.920000px;}
.y6a_c00377{bottom:314.640000px;}
.y52_c00377{bottom:352.800000px;}
.y51_c00377{bottom:354.240000px;}
.y68_c00377{bottom:354.960000px;}
.y4f_c00377{bottom:355.680000px;}
.y50_c00377{bottom:356.400000px;}
.y53_c00377{bottom:357.120000px;}
.y4d_c00377{bottom:390.240000px;}
.y4e_c00377{bottom:398.160000px;}
.y4a_c00377{bottom:450.000000px;}
.y4b_c00377{bottom:451.440000px;}
.y4c_c00377{bottom:452.160000px;}
.y49_c00377{bottom:452.880000px;}
.y46_c00377{bottom:492.480000px;}
.y48_c00377{bottom:494.640000px;}
.y45_c00377{bottom:495.360000px;}
.y47_c00377{bottom:496.800000px;}
.y43_c00377{bottom:535.680000px;}
.y44_c00377{bottom:537.120000px;}
.y42_c00377{bottom:538.560000px;}
.y40_c00377{bottom:578.880000px;}
.y41_c00377{bottom:580.320000px;}
.y3f_c00377{bottom:581.760000px;}
.y3d_c00377{bottom:622.080000px;}
.y3e_c00377{bottom:623.520000px;}
.y3c_c00377{bottom:624.240000px;}
.y35_c00377{bottom:666.000000px;}
.y32_c00377{bottom:666.720000px;}
.y33_c00377{bottom:668.160000px;}
.y34_c00377{bottom:669.600000px;}
.y31_c00377{bottom:670.320000px;}
.y2d_c00377{bottom:698.400000px;}
.y30_c00377{bottom:699.840000px;}
.y2c_c00377{bottom:700.560000px;}
.y2e_c00377{bottom:702.000000px;}
.y2f_c00377{bottom:702.720000px;}
.y29_c00377{bottom:741.600000px;}
.y2b_c00377{bottom:742.320000px;}
.y3b_c00377{bottom:743.040000px;}
.y28_c00377{bottom:743.760000px;}
.y2a_c00377{bottom:745.920000px;}
.y23_c00377{bottom:784.800000px;}
.y26_c00377{bottom:785.520000px;}
.y24_c00377{bottom:786.240000px;}
.y22_c00377{bottom:786.960000px;}
.y27_c00377{bottom:788.400000px;}
.y25_c00377{bottom:789.120000px;}
.y1d_c00377{bottom:828.000000px;}
.y21_c00377{bottom:828.720000px;}
.y1c_c00377{bottom:829.440000px;}
.y1f_c00377{bottom:830.160000px;}
.y20_c00377{bottom:831.600000px;}
.y1e_c00377{bottom:832.320000px;}
.y17_c00377{bottom:871.200000px;}
.y1b_c00377{bottom:871.920000px;}
.y16_c00377{bottom:872.640000px;}
.y19_c00377{bottom:873.360000px;}
.y18_c00377{bottom:874.080000px;}
.y1a_c00377{bottom:875.520000px;}
.y3a_c00377{bottom:876.240000px;}
.y12_c00377{bottom:915.120000px;}
.y11_c00377{bottom:915.840000px;}
.y15_c00377{bottom:916.560000px;}
.y38_c00377{bottom:917.280000px;}
.y14_c00377{bottom:918.000000px;}
.y13_c00377{bottom:918.720000px;}
.y39_c00377{bottom:919.440000px;}
.yd_c00377{bottom:957.600000px;}
.yf_c00377{bottom:958.320000px;}
.yc_c00377{bottom:959.040000px;}
.ye_c00377{bottom:959.760000px;}
.y10_c00377{bottom:961.200000px;}
.y8_c00377{bottom:1000.080000px;}
.yb_c00377{bottom:1000.800000px;}
.y9_c00377{bottom:1001.520000px;}
.y7_c00377{bottom:1002.240000px;}
.ya_c00377{bottom:1004.400000px;}
.y37_c00377{bottom:1005.120000px;}
.y6_c00377{bottom:1043.280000px;}
.y2_c00377{bottom:1044.000000px;}
.y1_c00377{bottom:1044.720000px;}
.y5_c00377{bottom:1045.440000px;}
.y4_c00377{bottom:1046.880000px;}
.y3_c00377{bottom:1047.600000px;}
.y36_c00377{bottom:1106.640000px;}
.he_c00377{height:5.183438px;}
.ha_c00377{height:38.875781px;}
.hc_c00377{height:41.467500px;}
.h7_c00377{height:44.059219px;}
.h4_c00377{height:46.650937px;}
.h8_c00377{height:49.242656px;}
.hf_c00377{height:51.834375px;}
.h5_c00377{height:54.426094px;}
.hd_c00377{height:57.017812px;}
.h11_c00377{height:57.594375px;}
.hb_c00377{height:59.609531px;}
.h2_c00377{height:62.201250px;}
.h9_c00377{height:64.792969px;}
.h3_c00377{height:67.384687px;}
.h6_c00377{height:69.976406px;}
.h10_c00377{height:82.935000px;}
.h1_c00377{height:1145.250000px;}
.h0_c00377{height:1145.520000px;}
.w1_c00377{width:765.000000px;}
.w0_c00377{width:765.360000px;}
.x0_c00377{left:0.000000px;}
.x1_c00377{left:51.120000px;}
.x22_c00377{left:52.560000px;}
.x28_c00377{left:54.000000px;}
.x23_c00377{left:104.400000px;}
.x2_c00377{left:126.720000px;}
.x24_c00377{left:137.520000px;}
.x25_c00377{left:168.480000px;}
.x2d_c00377{left:169.920000px;}
.x13_c00377{left:213.840000px;}
.xe_c00377{left:222.480000px;}
.x3_c00377{left:223.920000px;}
.x18_c00377{left:234.720000px;}
.x15_c00377{left:244.800000px;}
.x14_c00377{left:256.320000px;}
.xf_c00377{left:267.840000px;}
.x4_c00377{left:277.920000px;}
.x2a_c00377{left:279.360000px;}
.x16_c00377{left:289.440000px;}
.xc_c00377{left:311.040000px;}
.x5_c00377{left:321.120000px;}
.x11_c00377{left:323.280000px;}
.x17_c00377{left:343.440000px;}
.x26_c00377{left:353.520000px;}
.x9_c00377{left:365.040000px;}
.x12_c00377{left:371.520000px;}
.xd_c00377{left:408.240000px;}
.xa_c00377{left:419.040000px;}
.x6_c00377{left:429.840000px;}
.x27_c00377{left:440.640000px;}
.xb_c00377{left:462.240000px;}
.x2b_c00377{left:463.680000px;}
.x7_c00377{left:483.840000px;}
.x10_c00377{left:505.440000px;}
.x8_c00377{left:527.040000px;}
.x29_c00377{left:540.000000px;}
.x2c_c00377{left:549.360000px;}
.x2f_c00377{left:550.800000px;}
.x2e_c00377{left:570.960000px;}
.x1f_c00377{left:572.400000px;}
.x21_c00377{left:583.200000px;}
.x1a_c00377{left:603.360000px;}
.x1d_c00377{left:604.800000px;}
.x31_c00377{left:635.760000px;}
.x1b_c00377{left:637.200000px;}
.x1e_c00377{left:647.280000px;}
.x30_c00377{left:669.600000px;}
.x19_c00377{left:678.240000px;}
.x1c_c00377{left:679.680000px;}
.x20_c00377{left:681.120000px;}
.x32_c00377{left:701.280000px;}
@media print{
.v1_c00377{vertical-align:-2.560000pt;}
.v0_c00377{vertical-align:0.000000pt;}
.v2_c00377{vertical-align:2.560000pt;}
.v3_c00377{vertical-align:5.120000pt;}
.ls1_c00377{letter-spacing:0.000000pt;}
.ls0_c00377{letter-spacing:78.199467pt;}
.ws0_c00377{word-spacing:-6.135467pt;}
.ws2_c00377{word-spacing:0.000000pt;}
.ws1_c00377{word-spacing:8.421333pt;}
.fsc_c00377{font-size:5.120000pt;}
.fs8_c00377{font-size:38.400000pt;}
.fsa_c00377{font-size:40.960000pt;}
.fs5_c00377{font-size:43.520000pt;}
.fs2_c00377{font-size:46.080000pt;}
.fs6_c00377{font-size:48.640000pt;}
.fsd_c00377{font-size:51.200000pt;}
.fs3_c00377{font-size:53.760000pt;}
.fsb_c00377{font-size:56.320000pt;}
.fs9_c00377{font-size:58.880000pt;}
.fs0_c00377{font-size:61.440000pt;}
.fs7_c00377{font-size:64.000000pt;}
.fs1_c00377{font-size:66.560000pt;}
.fs4_c00377{font-size:69.120000pt;}
.fse_c00377{font-size:81.920000pt;}
.y0_c00377{bottom:0.000000pt;}
.y66_c00377{bottom:42.880000pt;}
.y67_c00377{bottom:43.520000pt;}
.y75_c00377{bottom:45.440000pt;}
.y76_c00377{bottom:46.080000pt;}
.y65_c00377{bottom:46.720000pt;}
.y62_c00377{bottom:81.920000pt;}
.y63_c00377{bottom:82.560000pt;}
.y64_c00377{bottom:83.200000pt;}
.y73_c00377{bottom:84.480000pt;}
.y74_c00377{bottom:85.120000pt;}
.y61_c00377{bottom:85.760000pt;}
.y5f_c00377{bottom:120.960000pt;}
.y71_c00377{bottom:122.880000pt;}
.y5e_c00377{bottom:123.520000pt;}
.y72_c00377{bottom:124.800000pt;}
.y60_c00377{bottom:125.440000pt;}
.y5b_c00377{bottom:159.360000pt;}
.y5d_c00377{bottom:160.640000pt;}
.y6e_c00377{bottom:161.920000pt;}
.y5c_c00377{bottom:162.560000pt;}
.y5a_c00377{bottom:163.200000pt;}
.y70_c00377{bottom:163.840000pt;}
.y6f_c00377{bottom:164.480000pt;}
.y59_c00377{bottom:198.400000pt;}
.y6c_c00377{bottom:199.680000pt;}
.y58_c00377{bottom:200.320000pt;}
.y6d_c00377{bottom:200.960000pt;}
.y57_c00377{bottom:236.800000pt;}
.y6b_c00377{bottom:238.720000pt;}
.y56_c00377{bottom:239.360000pt;}
.y55_c00377{bottom:275.200000pt;}
.y54_c00377{bottom:277.760000pt;}
.y69_c00377{bottom:279.040000pt;}
.y6a_c00377{bottom:279.680000pt;}
.y52_c00377{bottom:313.600000pt;}
.y51_c00377{bottom:314.880000pt;}
.y68_c00377{bottom:315.520000pt;}
.y4f_c00377{bottom:316.160000pt;}
.y50_c00377{bottom:316.800000pt;}
.y53_c00377{bottom:317.440000pt;}
.y4d_c00377{bottom:346.880000pt;}
.y4e_c00377{bottom:353.920000pt;}
.y4a_c00377{bottom:400.000000pt;}
.y4b_c00377{bottom:401.280000pt;}
.y4c_c00377{bottom:401.920000pt;}
.y49_c00377{bottom:402.560000pt;}
.y46_c00377{bottom:437.760000pt;}
.y48_c00377{bottom:439.680000pt;}
.y45_c00377{bottom:440.320000pt;}
.y47_c00377{bottom:441.600000pt;}
.y43_c00377{bottom:476.160000pt;}
.y44_c00377{bottom:477.440000pt;}
.y42_c00377{bottom:478.720000pt;}
.y40_c00377{bottom:514.560000pt;}
.y41_c00377{bottom:515.840000pt;}
.y3f_c00377{bottom:517.120000pt;}
.y3d_c00377{bottom:552.960000pt;}
.y3e_c00377{bottom:554.240000pt;}
.y3c_c00377{bottom:554.880000pt;}
.y35_c00377{bottom:592.000000pt;}
.y32_c00377{bottom:592.640000pt;}
.y33_c00377{bottom:593.920000pt;}
.y34_c00377{bottom:595.200000pt;}
.y31_c00377{bottom:595.840000pt;}
.y2d_c00377{bottom:620.800000pt;}
.y30_c00377{bottom:622.080000pt;}
.y2c_c00377{bottom:622.720000pt;}
.y2e_c00377{bottom:624.000000pt;}
.y2f_c00377{bottom:624.640000pt;}
.y29_c00377{bottom:659.200000pt;}
.y2b_c00377{bottom:659.840000pt;}
.y3b_c00377{bottom:660.480000pt;}
.y28_c00377{bottom:661.120000pt;}
.y2a_c00377{bottom:663.040000pt;}
.y23_c00377{bottom:697.600000pt;}
.y26_c00377{bottom:698.240000pt;}
.y24_c00377{bottom:698.880000pt;}
.y22_c00377{bottom:699.520000pt;}
.y27_c00377{bottom:700.800000pt;}
.y25_c00377{bottom:701.440000pt;}
.y1d_c00377{bottom:736.000000pt;}
.y21_c00377{bottom:736.640000pt;}
.y1c_c00377{bottom:737.280000pt;}
.y1f_c00377{bottom:737.920000pt;}
.y20_c00377{bottom:739.200000pt;}
.y1e_c00377{bottom:739.840000pt;}
.y17_c00377{bottom:774.400000pt;}
.y1b_c00377{bottom:775.040000pt;}
.y16_c00377{bottom:775.680000pt;}
.y19_c00377{bottom:776.320000pt;}
.y18_c00377{bottom:776.960000pt;}
.y1a_c00377{bottom:778.240000pt;}
.y3a_c00377{bottom:778.880000pt;}
.y12_c00377{bottom:813.440000pt;}
.y11_c00377{bottom:814.080000pt;}
.y15_c00377{bottom:814.720000pt;}
.y38_c00377{bottom:815.360000pt;}
.y14_c00377{bottom:816.000000pt;}
.y13_c00377{bottom:816.640000pt;}
.y39_c00377{bottom:817.280000pt;}
.yd_c00377{bottom:851.200000pt;}
.yf_c00377{bottom:851.840000pt;}
.yc_c00377{bottom:852.480000pt;}
.ye_c00377{bottom:853.120000pt;}
.y10_c00377{bottom:854.400000pt;}
.y8_c00377{bottom:888.960000pt;}
.yb_c00377{bottom:889.600000pt;}
.y9_c00377{bottom:890.240000pt;}
.y7_c00377{bottom:890.880000pt;}
.ya_c00377{bottom:892.800000pt;}
.y37_c00377{bottom:893.440000pt;}
.y6_c00377{bottom:927.360000pt;}
.y2_c00377{bottom:928.000000pt;}
.y1_c00377{bottom:928.640000pt;}
.y5_c00377{bottom:929.280000pt;}
.y4_c00377{bottom:930.560000pt;}
.y3_c00377{bottom:931.200000pt;}
.y36_c00377{bottom:983.680000pt;}
.he_c00377{height:4.607500pt;}
.ha_c00377{height:34.556250pt;}
.hc_c00377{height:36.860000pt;}
.h7_c00377{height:39.163750pt;}
.h4_c00377{height:41.467500pt;}
.h8_c00377{height:43.771250pt;}
.hf_c00377{height:46.075000pt;}
.h5_c00377{height:48.378750pt;}
.hd_c00377{height:50.682500pt;}
.h11_c00377{height:51.195000pt;}
.hb_c00377{height:52.986250pt;}
.h2_c00377{height:55.290000pt;}
.h9_c00377{height:57.593750pt;}
.h3_c00377{height:59.897500pt;}
.h6_c00377{height:62.201250pt;}
.h10_c00377{height:73.720000pt;}
.h1_c00377{height:1018.000000pt;}
.h0_c00377{height:1018.240000pt;}
.w1_c00377{width:680.000000pt;}
.w0_c00377{width:680.320000pt;}
.x0_c00377{left:0.000000pt;}
.x1_c00377{left:45.440000pt;}
.x22_c00377{left:46.720000pt;}
.x28_c00377{left:48.000000pt;}
.x23_c00377{left:92.800000pt;}
.x2_c00377{left:112.640000pt;}
.x24_c00377{left:122.240000pt;}
.x25_c00377{left:149.760000pt;}
.x2d_c00377{left:151.040000pt;}
.x13_c00377{left:190.080000pt;}
.xe_c00377{left:197.760000pt;}
.x3_c00377{left:199.040000pt;}
.x18_c00377{left:208.640000pt;}
.x15_c00377{left:217.600000pt;}
.x14_c00377{left:227.840000pt;}
.xf_c00377{left:238.080000pt;}
.x4_c00377{left:247.040000pt;}
.x2a_c00377{left:248.320000pt;}
.x16_c00377{left:257.280000pt;}
.xc_c00377{left:276.480000pt;}
.x5_c00377{left:285.440000pt;}
.x11_c00377{left:287.360000pt;}
.x17_c00377{left:305.280000pt;}
.x26_c00377{left:314.240000pt;}
.x9_c00377{left:324.480000pt;}
.x12_c00377{left:330.240000pt;}
.xd_c00377{left:362.880000pt;}
.xa_c00377{left:372.480000pt;}
.x6_c00377{left:382.080000pt;}
.x27_c00377{left:391.680000pt;}
.xb_c00377{left:410.880000pt;}
.x2b_c00377{left:412.160000pt;}
.x7_c00377{left:430.080000pt;}
.x10_c00377{left:449.280000pt;}
.x8_c00377{left:468.480000pt;}
.x29_c00377{left:480.000000pt;}
.x2c_c00377{left:488.320000pt;}
.x2f_c00377{left:489.600000pt;}
.x2e_c00377{left:507.520000pt;}
.x1f_c00377{left:508.800000pt;}
.x21_c00377{left:518.400000pt;}
.x1a_c00377{left:536.320000pt;}
.x1d_c00377{left:537.600000pt;}
.x31_c00377{left:565.120000pt;}
.x1b_c00377{left:566.400000pt;}
.x1e_c00377{left:575.360000pt;}
.x30_c00377{left:595.200000pt;}
.x19_c00377{left:602.880000pt;}
.x1c_c00377{left:604.160000pt;}
.x20_c00377{left:605.440000pt;}
.x32_c00377{left:623.360000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_45c96ae39983236f5862b936.woff2')format("woff");}.ff1_c00378{font-family:ff1_c00378;line-height:1.109863;font-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_c00378{transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);}
.m35_c00378{transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);}
.m12_c00378{transform:matrix(0.202600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202600,0.000000,0.000000,0.250000,0,0);}
.m2_c00378{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00378{transform:matrix(0.221150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221150,0.000000,0.000000,0.250000,0,0);}
.m1f_c00378{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);}
.m25_c00378{transform:matrix(0.230325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230325,0.000000,0.000000,0.250000,0,0);}
.m20_c00378{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m2a_c00378{transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);}
.m43_c00378{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_c00378{transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);}
.m22_c00378{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m31_c00378{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m47_c00378{transform:matrix(0.247050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247050,0.000000,0.000000,0.250000,0,0);}
.m41_c00378{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m34_c00378{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);}
.m1e_c00378{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);}
.m23_c00378{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m9_c00378{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);}
.m1b_c00378{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.me_c00378{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);}
.m2e_c00378{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m15_c00378{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m17_c00378{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00378{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.ma_c00378{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mb_c00378{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m3_c00378{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m7_c00378{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m26_c00378{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mc_c00378{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.md_c00378{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m48_c00378{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m6_c00378{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m30_c00378{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m32_c00378{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00378{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m8_c00378{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m37_c00378{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mf_c00378{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m24_c00378{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00378{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m19_c00378{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m5_c00378{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m14_c00378{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1_c00378{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m29_c00378{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m13_c00378{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);}
.m18_c00378{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m44_c00378{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m10_c00378{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);}
.m4a_c00378{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00378{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m0_c00378{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);}
.m4c_c00378{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m45_c00378{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);}
.m46_c00378{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);}
.m4_c00378{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);}
.m33_c00378{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m42_c00378{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00378{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m16_c00378{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00378{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m28_c00378{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);}
.m4b_c00378{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);}
.m11_c00378{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m49_c00378{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);}
.m39_c00378{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00378{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00378{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);}
.m2b_c00378{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m38_c00378{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);}
.m27_c00378{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m40_c00378{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);}
.m2c_c00378{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00378{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);}
.m36_c00378{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00378{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.v1_c00378{vertical-align:-2.880000px;}
.v0_c00378{vertical-align:0.000000px;}
.ls1_c00378{letter-spacing:0.000000px;}
.ls0_c00378{letter-spacing:74.941680px;}
.sc__c00378{text-shadow:none;}
.sc0_c00378{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00378{-webkit-text-stroke:0px transparent;}
.sc0_c00378{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00378{word-spacing:0.000000px;}
.ws1_c00378{word-spacing:15.598771px;}
.ws0_c00378{word-spacing:47.598000px;}
.fc0_c00378{color:transparent;}
.fs11_c00378{font-size:6.000000px;}
.fse_c00378{font-size:14.400000px;}
.fsf_c00378{font-size:31.680000px;}
.fsc_c00378{font-size:34.560000px;}
.fs10_c00378{font-size:37.440000px;}
.fs12_c00378{font-size:40.320000px;}
.fsb_c00378{font-size:46.080000px;}
.fs9_c00378{font-size:48.960000px;}
.fs8_c00378{font-size:51.840000px;}
.fs4_c00378{font-size:54.720000px;}
.fs7_c00378{font-size:57.600000px;}
.fs6_c00378{font-size:60.480000px;}
.fs3_c00378{font-size:63.360000px;}
.fs1_c00378{font-size:66.240000px;}
.fs5_c00378{font-size:69.120000px;}
.fs2_c00378{font-size:72.000000px;}
.fs0_c00378{font-size:74.880000px;}
.fsa_c00378{font-size:77.760000px;}
.fsd_c00378{font-size:103.680000px;}
.y0_c00378{bottom:0.000000px;}
.y70_c00378{bottom:79.920000px;}
.y71_c00378{bottom:80.640000px;}
.y74_c00378{bottom:81.360000px;}
.y73_c00378{bottom:82.080000px;}
.y75_c00378{bottom:82.800000px;}
.y72_c00378{bottom:83.520000px;}
.y6f_c00378{bottom:84.960000px;}
.y69_c00378{bottom:123.120000px;}
.y6b_c00378{bottom:123.840000px;}
.y6a_c00378{bottom:125.280000px;}
.y6e_c00378{bottom:126.000000px;}
.y6c_c00378{bottom:126.720000px;}
.y68_c00378{bottom:127.440000px;}
.y6d_c00378{bottom:128.160000px;}
.y65_c00378{bottom:166.320000px;}
.y66_c00378{bottom:169.200000px;}
.y63_c00378{bottom:169.920000px;}
.y64_c00378{bottom:170.640000px;}
.y67_c00378{bottom:171.360000px;}
.y60_c00378{bottom:210.960000px;}
.y62_c00378{bottom:211.680000px;}
.y61_c00378{bottom:213.120000px;}
.y5f_c00378{bottom:213.840000px;}
.y5e_c00378{bottom:246.240000px;}
.y5d_c00378{bottom:253.440000px;}
.y5c_c00378{bottom:254.160000px;}
.y57_c00378{bottom:255.600000px;}
.y59_c00378{bottom:256.320000px;}
.y5b_c00378{bottom:257.040000px;}
.y58_c00378{bottom:259.920000px;}
.y5a_c00378{bottom:262.080000px;}
.y56_c00378{bottom:297.360000px;}
.y54_c00378{bottom:298.800000px;}
.y55_c00378{bottom:299.520000px;}
.y51_c00378{bottom:339.840000px;}
.y4e_c00378{bottom:341.280000px;}
.y52_c00378{bottom:342.000000px;}
.y50_c00378{bottom:342.720000px;}
.y4f_c00378{bottom:343.440000px;}
.y53_c00378{bottom:344.160000px;}
.y46_c00378{bottom:382.320000px;}
.y48_c00378{bottom:383.760000px;}
.y47_c00378{bottom:384.480000px;}
.y45_c00378{bottom:385.200000px;}
.y4d_c00378{bottom:385.920000px;}
.y44_c00378{bottom:426.240000px;}
.y43_c00378{bottom:427.680000px;}
.y4b_c00378{bottom:428.400000px;}
.y49_c00378{bottom:429.120000px;}
.y4a_c00378{bottom:429.840000px;}
.y4c_c00378{bottom:431.280000px;}
.y41_c00378{bottom:462.240000px;}
.y3e_c00378{bottom:469.440000px;}
.y42_c00378{bottom:471.600000px;}
.y3d_c00378{bottom:472.320000px;}
.y3f_c00378{bottom:473.040000px;}
.y40_c00378{bottom:473.760000px;}
.y3c_c00378{bottom:511.920000px;}
.y3b_c00378{bottom:514.800000px;}
.y39_c00378{bottom:544.320000px;}
.y3a_c00378{bottom:546.480000px;}
.y31_c00378{bottom:547.200000px;}
.y30_c00378{bottom:548.640000px;}
.y32_c00378{bottom:549.360000px;}
.y33_c00378{bottom:550.080000px;}
.y20_c00378{bottom:588.240000px;}
.y21_c00378{bottom:588.960000px;}
.y2e_c00378{bottom:589.680000px;}
.y1f_c00378{bottom:590.400000px;}
.y2f_c00378{bottom:591.120000px;}
.y38_c00378{bottom:631.440000px;}
.y2b_c00378{bottom:633.600000px;}
.y2c_c00378{bottom:634.320000px;}
.y2d_c00378{bottom:635.760000px;}
.y37_c00378{bottom:674.640000px;}
.y29_c00378{bottom:676.080000px;}
.y28_c00378{bottom:676.800000px;}
.y2a_c00378{bottom:679.680000px;}
.y36_c00378{bottom:717.840000px;}
.y27_c00378{bottom:719.280000px;}
.y26_c00378{bottom:720.000000px;}
.y34_c00378{bottom:761.040000px;}
.y35_c00378{bottom:761.760000px;}
.y25_c00378{bottom:762.480000px;}
.y24_c00378{bottom:763.200000px;}
.y1e_c00378{bottom:804.240000px;}
.y1d_c00378{bottom:805.680000px;}
.y22_c00378{bottom:807.840000px;}
.y23_c00378{bottom:808.560000px;}
.y19_c00378{bottom:846.720000px;}
.y1c_c00378{bottom:847.440000px;}
.y1b_c00378{bottom:848.160000px;}
.y1a_c00378{bottom:848.880000px;}
.y18_c00378{bottom:850.320000px;}
.y15_c00378{bottom:879.840000px;}
.y13_c00378{bottom:880.560000px;}
.y17_c00378{bottom:881.280000px;}
.y16_c00378{bottom:882.720000px;}
.y14_c00378{bottom:883.440000px;}
.ya_c00378{bottom:923.040000px;}
.y9_c00378{bottom:923.760000px;}
.y12_c00378{bottom:924.480000px;}
.y11_c00378{bottom:925.920000px;}
.y8_c00378{bottom:966.240000px;}
.y7_c00378{bottom:966.960000px;}
.yf_c00378{bottom:968.400000px;}
.y10_c00378{bottom:969.120000px;}
.ye_c00378{bottom:969.840000px;}
.y6_c00378{bottom:1009.440000px;}
.y5_c00378{bottom:1010.160000px;}
.yd_c00378{bottom:1010.880000px;}
.yc_c00378{bottom:1011.600000px;}
.y4_c00378{bottom:1052.640000px;}
.y3_c00378{bottom:1053.360000px;}
.y2_c00378{bottom:1054.080000px;}
.yb_c00378{bottom:1056.240000px;}
.y1_c00378{bottom:1120.320000px;}
.h13_c00378{height:5.399414px;}
.h10_c00378{height:12.958594px;}
.h11_c00378{height:28.508906px;}
.he_c00378{height:31.100625px;}
.h12_c00378{height:33.692344px;}
.h14_c00378{height:36.284062px;}
.hd_c00378{height:41.467500px;}
.hb_c00378{height:44.059219px;}
.ha_c00378{height:46.650937px;}
.h6_c00378{height:49.242656px;}
.h9_c00378{height:51.834375px;}
.h8_c00378{height:54.426094px;}
.h5_c00378{height:57.017812px;}
.h3_c00378{height:59.609531px;}
.h7_c00378{height:62.201250px;}
.h4_c00378{height:64.792969px;}
.h2_c00378{height:67.384687px;}
.hc_c00378{height:69.976406px;}
.hf_c00378{height:93.301875px;}
.h0_c00378{height:1159.920000px;}
.h1_c00378{height:1160.250000px;}
.w1_c00378{width:768.750000px;}
.w0_c00378{width:768.960000px;}
.x0_c00378{left:0.000000px;}
.x2_c00378{left:51.120000px;}
.x1b_c00378{left:52.560000px;}
.x22_c00378{left:54.000000px;}
.x23_c00378{left:105.120000px;}
.x12_c00378{left:117.360000px;}
.x3_c00378{left:126.000000px;}
.x1f_c00378{left:127.440000px;}
.xc_c00378{left:169.920000px;}
.x1a_c00378{left:181.440000px;}
.x1c_c00378{left:212.400000px;}
.x15_c00378{left:213.840000px;}
.x4_c00378{left:224.640000px;}
.x2b_c00378{left:234.720000px;}
.x17_c00378{left:257.040000px;}
.xd_c00378{left:266.400000px;}
.x6_c00378{left:267.840000px;}
.x20_c00378{left:278.640000px;}
.x2c_c00378{left:289.440000px;}
.xe_c00378{left:311.040000px;}
.x24_c00378{left:322.560000px;}
.x18_c00378{left:343.440000px;}
.x5_c00378{left:354.240000px;}
.xf_c00378{left:365.040000px;}
.x13_c00378{left:397.440000px;}
.x25_c00378{left:408.240000px;}
.x2a_c00378{left:419.760000px;}
.x19_c00378{left:440.640000px;}
.x14_c00378{left:452.160000px;}
.x26_c00378{left:462.240000px;}
.x28_c00378{left:465.120000px;}
.x2e_c00378{left:473.040000px;}
.x10_c00378{left:495.360000px;}
.x27_c00378{left:516.240000px;}
.x29_c00378{left:519.840000px;}
.x2d_c00378{left:527.760000px;}
.x11_c00378{left:539.280000px;}
.x7_c00378{left:549.360000px;}
.x8_c00378{left:570.240000px;}
.x2f_c00378{left:571.680000px;}
.xa_c00378{left:604.080000px;}
.xb_c00378{left:637.200000px;}
.x21_c00378{left:646.560000px;}
.x1e_c00378{left:669.600000px;}
.x16_c00378{left:678.960000px;}
.x9_c00378{left:680.400000px;}
.x1_c00378{left:691.200000px;}
.x1d_c00378{left:699.840000px;}
@media print{
.v1_c00378{vertical-align:-2.560000pt;}
.v0_c00378{vertical-align:0.000000pt;}
.ls1_c00378{letter-spacing:0.000000pt;}
.ls0_c00378{letter-spacing:66.614827pt;}
.ws2_c00378{word-spacing:0.000000pt;}
.ws1_c00378{word-spacing:13.865574pt;}
.ws0_c00378{word-spacing:42.309333pt;}
.fs11_c00378{font-size:5.333333pt;}
.fse_c00378{font-size:12.800000pt;}
.fsf_c00378{font-size:28.160000pt;}
.fsc_c00378{font-size:30.720000pt;}
.fs10_c00378{font-size:33.280000pt;}
.fs12_c00378{font-size:35.840000pt;}
.fsb_c00378{font-size:40.960000pt;}
.fs9_c00378{font-size:43.520000pt;}
.fs8_c00378{font-size:46.080000pt;}
.fs4_c00378{font-size:48.640000pt;}
.fs7_c00378{font-size:51.200000pt;}
.fs6_c00378{font-size:53.760000pt;}
.fs3_c00378{font-size:56.320000pt;}
.fs1_c00378{font-size:58.880000pt;}
.fs5_c00378{font-size:61.440000pt;}
.fs2_c00378{font-size:64.000000pt;}
.fs0_c00378{font-size:66.560000pt;}
.fsa_c00378{font-size:69.120000pt;}
.fsd_c00378{font-size:92.160000pt;}
.y0_c00378{bottom:0.000000pt;}
.y70_c00378{bottom:71.040000pt;}
.y71_c00378{bottom:71.680000pt;}
.y74_c00378{bottom:72.320000pt;}
.y73_c00378{bottom:72.960000pt;}
.y75_c00378{bottom:73.600000pt;}
.y72_c00378{bottom:74.240000pt;}
.y6f_c00378{bottom:75.520000pt;}
.y69_c00378{bottom:109.440000pt;}
.y6b_c00378{bottom:110.080000pt;}
.y6a_c00378{bottom:111.360000pt;}
.y6e_c00378{bottom:112.000000pt;}
.y6c_c00378{bottom:112.640000pt;}
.y68_c00378{bottom:113.280000pt;}
.y6d_c00378{bottom:113.920000pt;}
.y65_c00378{bottom:147.840000pt;}
.y66_c00378{bottom:150.400000pt;}
.y63_c00378{bottom:151.040000pt;}
.y64_c00378{bottom:151.680000pt;}
.y67_c00378{bottom:152.320000pt;}
.y60_c00378{bottom:187.520000pt;}
.y62_c00378{bottom:188.160000pt;}
.y61_c00378{bottom:189.440000pt;}
.y5f_c00378{bottom:190.080000pt;}
.y5e_c00378{bottom:218.880000pt;}
.y5d_c00378{bottom:225.280000pt;}
.y5c_c00378{bottom:225.920000pt;}
.y57_c00378{bottom:227.200000pt;}
.y59_c00378{bottom:227.840000pt;}
.y5b_c00378{bottom:228.480000pt;}
.y58_c00378{bottom:231.040000pt;}
.y5a_c00378{bottom:232.960000pt;}
.y56_c00378{bottom:264.320000pt;}
.y54_c00378{bottom:265.600000pt;}
.y55_c00378{bottom:266.240000pt;}
.y51_c00378{bottom:302.080000pt;}
.y4e_c00378{bottom:303.360000pt;}
.y52_c00378{bottom:304.000000pt;}
.y50_c00378{bottom:304.640000pt;}
.y4f_c00378{bottom:305.280000pt;}
.y53_c00378{bottom:305.920000pt;}
.y46_c00378{bottom:339.840000pt;}
.y48_c00378{bottom:341.120000pt;}
.y47_c00378{bottom:341.760000pt;}
.y45_c00378{bottom:342.400000pt;}
.y4d_c00378{bottom:343.040000pt;}
.y44_c00378{bottom:378.880000pt;}
.y43_c00378{bottom:380.160000pt;}
.y4b_c00378{bottom:380.800000pt;}
.y49_c00378{bottom:381.440000pt;}
.y4a_c00378{bottom:382.080000pt;}
.y4c_c00378{bottom:383.360000pt;}
.y41_c00378{bottom:410.880000pt;}
.y3e_c00378{bottom:417.280000pt;}
.y42_c00378{bottom:419.200000pt;}
.y3d_c00378{bottom:419.840000pt;}
.y3f_c00378{bottom:420.480000pt;}
.y40_c00378{bottom:421.120000pt;}
.y3c_c00378{bottom:455.040000pt;}
.y3b_c00378{bottom:457.600000pt;}
.y39_c00378{bottom:483.840000pt;}
.y3a_c00378{bottom:485.760000pt;}
.y31_c00378{bottom:486.400000pt;}
.y30_c00378{bottom:487.680000pt;}
.y32_c00378{bottom:488.320000pt;}
.y33_c00378{bottom:488.960000pt;}
.y20_c00378{bottom:522.880000pt;}
.y21_c00378{bottom:523.520000pt;}
.y2e_c00378{bottom:524.160000pt;}
.y1f_c00378{bottom:524.800000pt;}
.y2f_c00378{bottom:525.440000pt;}
.y38_c00378{bottom:561.280000pt;}
.y2b_c00378{bottom:563.200000pt;}
.y2c_c00378{bottom:563.840000pt;}
.y2d_c00378{bottom:565.120000pt;}
.y37_c00378{bottom:599.680000pt;}
.y29_c00378{bottom:600.960000pt;}
.y28_c00378{bottom:601.600000pt;}
.y2a_c00378{bottom:604.160000pt;}
.y36_c00378{bottom:638.080000pt;}
.y27_c00378{bottom:639.360000pt;}
.y26_c00378{bottom:640.000000pt;}
.y34_c00378{bottom:676.480000pt;}
.y35_c00378{bottom:677.120000pt;}
.y25_c00378{bottom:677.760000pt;}
.y24_c00378{bottom:678.400000pt;}
.y1e_c00378{bottom:714.880000pt;}
.y1d_c00378{bottom:716.160000pt;}
.y22_c00378{bottom:718.080000pt;}
.y23_c00378{bottom:718.720000pt;}
.y19_c00378{bottom:752.640000pt;}
.y1c_c00378{bottom:753.280000pt;}
.y1b_c00378{bottom:753.920000pt;}
.y1a_c00378{bottom:754.560000pt;}
.y18_c00378{bottom:755.840000pt;}
.y15_c00378{bottom:782.080000pt;}
.y13_c00378{bottom:782.720000pt;}
.y17_c00378{bottom:783.360000pt;}
.y16_c00378{bottom:784.640000pt;}
.y14_c00378{bottom:785.280000pt;}
.ya_c00378{bottom:820.480000pt;}
.y9_c00378{bottom:821.120000pt;}
.y12_c00378{bottom:821.760000pt;}
.y11_c00378{bottom:823.040000pt;}
.y8_c00378{bottom:858.880000pt;}
.y7_c00378{bottom:859.520000pt;}
.yf_c00378{bottom:860.800000pt;}
.y10_c00378{bottom:861.440000pt;}
.ye_c00378{bottom:862.080000pt;}
.y6_c00378{bottom:897.280000pt;}
.y5_c00378{bottom:897.920000pt;}
.yd_c00378{bottom:898.560000pt;}
.yc_c00378{bottom:899.200000pt;}
.y4_c00378{bottom:935.680000pt;}
.y3_c00378{bottom:936.320000pt;}
.y2_c00378{bottom:936.960000pt;}
.yb_c00378{bottom:938.880000pt;}
.y1_c00378{bottom:995.840000pt;}
.h13_c00378{height:4.799479pt;}
.h10_c00378{height:11.518750pt;}
.h11_c00378{height:25.341250pt;}
.he_c00378{height:27.645000pt;}
.h12_c00378{height:29.948750pt;}
.h14_c00378{height:32.252500pt;}
.hd_c00378{height:36.860000pt;}
.hb_c00378{height:39.163750pt;}
.ha_c00378{height:41.467500pt;}
.h6_c00378{height:43.771250pt;}
.h9_c00378{height:46.075000pt;}
.h8_c00378{height:48.378750pt;}
.h5_c00378{height:50.682500pt;}
.h3_c00378{height:52.986250pt;}
.h7_c00378{height:55.290000pt;}
.h4_c00378{height:57.593750pt;}
.h2_c00378{height:59.897500pt;}
.hc_c00378{height:62.201250pt;}
.hf_c00378{height:82.935000pt;}
.h0_c00378{height:1031.040000pt;}
.h1_c00378{height:1031.333333pt;}
.w1_c00378{width:683.333333pt;}
.w0_c00378{width:683.520000pt;}
.x0_c00378{left:0.000000pt;}
.x2_c00378{left:45.440000pt;}
.x1b_c00378{left:46.720000pt;}
.x22_c00378{left:48.000000pt;}
.x23_c00378{left:93.440000pt;}
.x12_c00378{left:104.320000pt;}
.x3_c00378{left:112.000000pt;}
.x1f_c00378{left:113.280000pt;}
.xc_c00378{left:151.040000pt;}
.x1a_c00378{left:161.280000pt;}
.x1c_c00378{left:188.800000pt;}
.x15_c00378{left:190.080000pt;}
.x4_c00378{left:199.680000pt;}
.x2b_c00378{left:208.640000pt;}
.x17_c00378{left:228.480000pt;}
.xd_c00378{left:236.800000pt;}
.x6_c00378{left:238.080000pt;}
.x20_c00378{left:247.680000pt;}
.x2c_c00378{left:257.280000pt;}
.xe_c00378{left:276.480000pt;}
.x24_c00378{left:286.720000pt;}
.x18_c00378{left:305.280000pt;}
.x5_c00378{left:314.880000pt;}
.xf_c00378{left:324.480000pt;}
.x13_c00378{left:353.280000pt;}
.x25_c00378{left:362.880000pt;}
.x2a_c00378{left:373.120000pt;}
.x19_c00378{left:391.680000pt;}
.x14_c00378{left:401.920000pt;}
.x26_c00378{left:410.880000pt;}
.x28_c00378{left:413.440000pt;}
.x2e_c00378{left:420.480000pt;}
.x10_c00378{left:440.320000pt;}
.x27_c00378{left:458.880000pt;}
.x29_c00378{left:462.080000pt;}
.x2d_c00378{left:469.120000pt;}
.x11_c00378{left:479.360000pt;}
.x7_c00378{left:488.320000pt;}
.x8_c00378{left:506.880000pt;}
.x2f_c00378{left:508.160000pt;}
.xa_c00378{left:536.960000pt;}
.xb_c00378{left:566.400000pt;}
.x21_c00378{left:574.720000pt;}
.x1e_c00378{left:595.200000pt;}
.x16_c00378{left:603.520000pt;}
.x9_c00378{left:604.800000pt;}
.x1_c00378{left:614.400000pt;}
.x1d_c00378{left:622.080000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b41130a6806b6405ab9b5e8b.woff2')format("woff");}.ff1_c00379{font-family:ff1_c00379;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3e_c00379{transform:matrix(0.174225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174225,0.000000,0.000000,0.250000,0,0);}
.m24_c00379{transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);}
.m58_c00379{transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);}
.m35_c00379{transform:matrix(0.186450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186450,0.000000,0.000000,0.250000,0,0);}
.m55_c00379{transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);}
.m51_c00379{transform:matrix(0.191050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191050,0.000000,0.000000,0.250000,0,0);}
.m50_c00379{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m52_c00379{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.m53_c00379{transform:matrix(0.201075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201075,0.000000,0.000000,0.250000,0,0);}
.m4_c00379{transform:matrix(0.217225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217225,0.000000,0.000000,0.250000,0,0);}
.m2e_c00379{transform:matrix(0.224125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224125,0.000000,0.000000,0.250000,0,0);}
.m43_c00379{transform:matrix(0.229050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229050,0.000000,0.000000,0.250000,0,0);}
.m20_c00379{transform:matrix(0.237275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237275,0.000000,0.000000,0.250000,0,0);}
.m28_c00379{transform:matrix(0.239875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239875,0.000000,0.000000,0.250000,0,0);}
.mc_c00379{transform:matrix(0.241950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241950,0.000000,0.000000,0.250000,0,0);}
.m10_c00379{transform:matrix(0.243075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243075,0.000000,0.000000,0.250000,0,0);}
.m40_c00379{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m1_c00379{transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);}
.m46_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);}
.m38_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);}
.m4c_c00379{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m44_c00379{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00379{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);}
.m37_c00379{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mf_c00379{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m16_c00379{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m6_c00379{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m2_c00379{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);}
.m59_c00379{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);}
.m57_c00379{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00379{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m14_c00379{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);}
.m1e_c00379{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00379{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m31_c00379{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m54_c00379{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00379{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m45_c00379{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00379{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m34_c00379{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m41_c00379{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00379{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00379{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m5_c00379{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m19_c00379{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m29_c00379{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m27_c00379{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mb_c00379{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00379{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m21_c00379{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m18_c00379{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m0_c00379{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m56_c00379{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m9_c00379{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m8_c00379{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m49_c00379{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00379{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m11_c00379{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);}
.me_c00379{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m17_c00379{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);}
.m4d_c00379{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m12_c00379{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m23_c00379{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);}
.m3f_c00379{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m13_c00379{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);}
.m25_c00379{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);}
.m39_c00379{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00379{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m32_c00379{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);}
.m42_c00379{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m33_c00379{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);}
.m26_c00379{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m22_c00379{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m47_c00379{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.md_c00379{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m48_c00379{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m3_c00379{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00379{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00379{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00379{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);}
.m30_c00379{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);}
.m2f_c00379{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00379{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m7_c00379{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);}
.m36_c00379{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00379{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);}
.ma_c00379{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00379{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m15_c00379{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);}
.m3c_c00379{transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00379{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.v0_c00379{vertical-align:0.000000px;}
.v1_c00379{vertical-align:2.880000px;}
.ls0_c00379{letter-spacing:0.000000px;}
.sc__c00379{text-shadow:none;}
.sc0_c00379{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00379{-webkit-text-stroke:0px transparent;}
.sc0_c00379{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00379{word-spacing:0.000000px;}
.ws0_c00379{word-spacing:12.615600px;}
.fc0_c00379{color:transparent;}
.fs10_c00379{font-size:25.920000px;}
.fs5_c00379{font-size:37.440000px;}
.fse_c00379{font-size:40.320000px;}
.fsf_c00379{font-size:43.200000px;}
.fsa_c00379{font-size:46.080000px;}
.fs9_c00379{font-size:48.960000px;}
.fs3_c00379{font-size:51.840000px;}
.fs7_c00379{font-size:54.720000px;}
.fsd_c00379{font-size:57.600000px;}
.fs8_c00379{font-size:60.480000px;}
.fs6_c00379{font-size:63.360000px;}
.fs0_c00379{font-size:66.240000px;}
.fs2_c00379{font-size:69.120000px;}
.fsb_c00379{font-size:72.000000px;}
.fs4_c00379{font-size:74.880000px;}
.fs1_c00379{font-size:77.760000px;}
.fs11_c00379{font-size:89.280000px;}
.fsc_c00379{font-size:100.800000px;}
.y0_c00379{bottom:0.000000px;}
.y60_c00379{bottom:13.680000px;}
.y61_c00379{bottom:14.400000px;}
.y5f_c00379{bottom:16.560000px;}
.y62_c00379{bottom:18.000000px;}
.y5b_c00379{bottom:43.200000px;}
.y5e_c00379{bottom:45.360000px;}
.y5d_c00379{bottom:46.080000px;}
.y7b_c00379{bottom:46.800000px;}
.y5c_c00379{bottom:47.520000px;}
.y5a_c00379{bottom:48.240000px;}
.y59_c00379{bottom:86.400000px;}
.y7a_c00379{bottom:89.280000px;}
.y58_c00379{bottom:90.000000px;}
.y79_c00379{bottom:90.720000px;}
.y57_c00379{bottom:131.040000px;}
.y56_c00379{bottom:133.920000px;}
.y78_c00379{bottom:134.640000px;}
.y77_c00379{bottom:135.360000px;}
.y52_c00379{bottom:173.520000px;}
.y55_c00379{bottom:174.960000px;}
.y54_c00379{bottom:176.400000px;}
.y53_c00379{bottom:177.120000px;}
.y51_c00379{bottom:177.840000px;}
.y4d_c00379{bottom:211.680000px;}
.y4e_c00379{bottom:218.880000px;}
.y4f_c00379{bottom:219.600000px;}
.y50_c00379{bottom:220.320000px;}
.y4c_c00379{bottom:271.440000px;}
.y76_c00379{bottom:273.600000px;}
.y75_c00379{bottom:274.320000px;}
.y4b_c00379{bottom:275.040000px;}
.y48_c00379{bottom:315.360000px;}
.y4a_c00379{bottom:316.080000px;}
.y47_c00379{bottom:317.520000px;}
.y74_c00379{bottom:318.240000px;}
.y49_c00379{bottom:321.840000px;}
.y45_c00379{bottom:357.840000px;}
.y46_c00379{bottom:358.560000px;}
.y73_c00379{bottom:360.000000px;}
.y72_c00379{bottom:360.720000px;}
.y44_c00379{bottom:361.440000px;}
.y42_c00379{bottom:401.040000px;}
.y43_c00379{bottom:401.760000px;}
.y71_c00379{bottom:403.920000px;}
.y41_c00379{bottom:404.640000px;}
.y3e_c00379{bottom:444.240000px;}
.y40_c00379{bottom:444.960000px;}
.y70_c00379{bottom:446.400000px;}
.y3d_c00379{bottom:447.120000px;}
.y3f_c00379{bottom:448.560000px;}
.y39_c00379{bottom:487.440000px;}
.y3c_c00379{bottom:488.160000px;}
.y3a_c00379{bottom:488.880000px;}
.y38_c00379{bottom:489.600000px;}
.y6e_c00379{bottom:490.320000px;}
.y3b_c00379{bottom:491.040000px;}
.y6f_c00379{bottom:491.760000px;}
.y32_c00379{bottom:530.640000px;}
.y37_c00379{bottom:531.360000px;}
.y36_c00379{bottom:532.080000px;}
.y35_c00379{bottom:532.800000px;}
.y31_c00379{bottom:533.520000px;}
.y34_c00379{bottom:534.240000px;}
.y33_c00379{bottom:534.960000px;}
.y30_c00379{bottom:574.560000px;}
.y2e_c00379{bottom:575.280000px;}
.y2f_c00379{bottom:577.440000px;}
.y2b_c00379{bottom:606.240000px;}
.y2a_c00379{bottom:608.400000px;}
.y2d_c00379{bottom:609.840000px;}
.y2c_c00379{bottom:610.560000px;}
.y27_c00379{bottom:641.520000px;}
.y28_c00379{bottom:652.320000px;}
.y29_c00379{bottom:653.040000px;}
.y24_c00379{bottom:704.160000px;}
.y26_c00379{bottom:704.880000px;}
.y23_c00379{bottom:705.600000px;}
.y6c_c00379{bottom:706.320000px;}
.y25_c00379{bottom:707.760000px;}
.y6d_c00379{bottom:708.480000px;}
.y20_c00379{bottom:748.080000px;}
.y21_c00379{bottom:748.800000px;}
.y1f_c00379{bottom:749.520000px;}
.y22_c00379{bottom:751.680000px;}
.y6b_c00379{bottom:752.400000px;}
.y1c_c00379{bottom:791.280000px;}
.y1d_c00379{bottom:792.000000px;}
.y1b_c00379{bottom:792.720000px;}
.y1e_c00379{bottom:794.160000px;}
.y6a_c00379{bottom:794.880000px;}
.y17_c00379{bottom:834.480000px;}
.y1a_c00379{bottom:835.200000px;}
.y15_c00379{bottom:835.920000px;}
.y18_c00379{bottom:836.640000px;}
.y16_c00379{bottom:837.360000px;}
.y19_c00379{bottom:838.080000px;}
.y69_c00379{bottom:838.800000px;}
.y10_c00379{bottom:877.680000px;}
.y13_c00379{bottom:878.400000px;}
.yf_c00379{bottom:879.120000px;}
.y12_c00379{bottom:879.840000px;}
.y68_c00379{bottom:880.560000px;}
.y14_c00379{bottom:881.280000px;}
.y11_c00379{bottom:882.000000px;}
.y67_c00379{bottom:882.720000px;}
.yc_c00379{bottom:920.880000px;}
.yb_c00379{bottom:922.320000px;}
.ye_c00379{bottom:924.480000px;}
.yd_c00379{bottom:925.200000px;}
.y8_c00379{bottom:964.080000px;}
.y7_c00379{bottom:965.520000px;}
.ya_c00379{bottom:967.680000px;}
.y9_c00379{bottom:968.400000px;}
.y5_c00379{bottom:1007.280000px;}
.y4_c00379{bottom:1008.000000px;}
.y66_c00379{bottom:1010.160000px;}
.y6_c00379{bottom:1010.880000px;}
.y2_c00379{bottom:1049.760000px;}
.y65_c00379{bottom:1050.480000px;}
.y64_c00379{bottom:1051.200000px;}
.y1_c00379{bottom:1051.920000px;}
.y3_c00379{bottom:1054.080000px;}
.y63_c00379{bottom:1114.560000px;}
.h12_c00379{height:23.325469px;}
.h7_c00379{height:33.692344px;}
.h10_c00379{height:36.284062px;}
.h11_c00379{height:38.875781px;}
.hc_c00379{height:41.467500px;}
.hb_c00379{height:44.059219px;}
.h5_c00379{height:46.650937px;}
.h9_c00379{height:49.242656px;}
.hf_c00379{height:51.834375px;}
.h14_c00379{height:52.122656px;}
.ha_c00379{height:54.426094px;}
.h8_c00379{height:57.017812px;}
.h2_c00379{height:59.609531px;}
.h4_c00379{height:62.201250px;}
.hd_c00379{height:64.792969px;}
.h6_c00379{height:67.384687px;}
.h3_c00379{height:69.976406px;}
.h13_c00379{height:80.343281px;}
.he_c00379{height:90.710156px;}
.h0_c00379{height:1160.640000px;}
.h1_c00379{height:1161.000000px;}
.w1_c00379{width:767.250000px;}
.w0_c00379{width:767.520000px;}
.x0_c00379{left:0.000000px;}
.x1_c00379{left:53.280000px;}
.x17_c00379{left:54.720000px;}
.x1f_c00379{left:56.160000px;}
.xd_c00379{left:97.920000px;}
.x13_c00379{left:106.560000px;}
.x22_c00379{left:127.440000px;}
.x2_c00379{left:128.880000px;}
.x14_c00379{left:139.680000px;}
.x20_c00379{left:150.480000px;}
.x21_c00379{left:172.800000px;}
.xe_c00379{left:183.600000px;}
.x15_c00379{left:214.560000px;}
.x23_c00379{left:216.720000px;}
.x3_c00379{left:226.080000px;}
.x6_c00379{left:227.520000px;}
.xf_c00379{left:236.880000px;}
.x1e_c00379{left:247.680000px;}
.x1c_c00379{left:259.200000px;}
.x7_c00379{left:270.000000px;}
.x8_c00379{left:281.520000px;}
.x18_c00379{left:291.600000px;}
.x1d_c00379{left:312.480000px;}
.x24_c00379{left:313.920000px;}
.x9_c00379{left:324.000000px;}
.x25_c00379{left:325.440000px;}
.x4_c00379{left:345.600000px;}
.xa_c00379{left:356.400000px;}
.x10_c00379{left:367.200000px;}
.x19_c00379{left:378.000000px;}
.x5_c00379{left:400.320000px;}
.xb_c00379{left:410.400000px;}
.x11_c00379{left:421.200000px;}
.x1a_c00379{left:432.720000px;}
.xc_c00379{left:454.320000px;}
.x12_c00379{left:464.400000px;}
.x1b_c00379{left:475.200000px;}
.x16_c00379{left:506.880000px;}
.x27_c00379{left:550.800000px;}
.x2a_c00379{left:573.120000px;}
.x2f_c00379{left:574.560000px;}
.x2b_c00379{left:584.640000px;}
.x2c_c00379{left:596.880000px;}
.x30_c00379{left:604.800000px;}
.x2d_c00379{left:606.960000px;}
.x2e_c00379{left:639.360000px;}
.x28_c00379{left:650.160000px;}
.x31_c00379{left:671.760000px;}
.x29_c00379{left:682.560000px;}
.x26_c00379{left:699.840000px;}
.x32_c00379{left:703.440000px;}
@media print{
.v0_c00379{vertical-align:0.000000pt;}
.v1_c00379{vertical-align:2.560000pt;}
.ls0_c00379{letter-spacing:0.000000pt;}
.ws1_c00379{word-spacing:0.000000pt;}
.ws0_c00379{word-spacing:11.213867pt;}
.fs10_c00379{font-size:23.040000pt;}
.fs5_c00379{font-size:33.280000pt;}
.fse_c00379{font-size:35.840000pt;}
.fsf_c00379{font-size:38.400000pt;}
.fsa_c00379{font-size:40.960000pt;}
.fs9_c00379{font-size:43.520000pt;}
.fs3_c00379{font-size:46.080000pt;}
.fs7_c00379{font-size:48.640000pt;}
.fsd_c00379{font-size:51.200000pt;}
.fs8_c00379{font-size:53.760000pt;}
.fs6_c00379{font-size:56.320000pt;}
.fs0_c00379{font-size:58.880000pt;}
.fs2_c00379{font-size:61.440000pt;}
.fsb_c00379{font-size:64.000000pt;}
.fs4_c00379{font-size:66.560000pt;}
.fs1_c00379{font-size:69.120000pt;}
.fs11_c00379{font-size:79.360000pt;}
.fsc_c00379{font-size:89.600000pt;}
.y0_c00379{bottom:0.000000pt;}
.y60_c00379{bottom:12.160000pt;}
.y61_c00379{bottom:12.800000pt;}
.y5f_c00379{bottom:14.720000pt;}
.y62_c00379{bottom:16.000000pt;}
.y5b_c00379{bottom:38.400000pt;}
.y5e_c00379{bottom:40.320000pt;}
.y5d_c00379{bottom:40.960000pt;}
.y7b_c00379{bottom:41.600000pt;}
.y5c_c00379{bottom:42.240000pt;}
.y5a_c00379{bottom:42.880000pt;}
.y59_c00379{bottom:76.800000pt;}
.y7a_c00379{bottom:79.360000pt;}
.y58_c00379{bottom:80.000000pt;}
.y79_c00379{bottom:80.640000pt;}
.y57_c00379{bottom:116.480000pt;}
.y56_c00379{bottom:119.040000pt;}
.y78_c00379{bottom:119.680000pt;}
.y77_c00379{bottom:120.320000pt;}
.y52_c00379{bottom:154.240000pt;}
.y55_c00379{bottom:155.520000pt;}
.y54_c00379{bottom:156.800000pt;}
.y53_c00379{bottom:157.440000pt;}
.y51_c00379{bottom:158.080000pt;}
.y4d_c00379{bottom:188.160000pt;}
.y4e_c00379{bottom:194.560000pt;}
.y4f_c00379{bottom:195.200000pt;}
.y50_c00379{bottom:195.840000pt;}
.y4c_c00379{bottom:241.280000pt;}
.y76_c00379{bottom:243.200000pt;}
.y75_c00379{bottom:243.840000pt;}
.y4b_c00379{bottom:244.480000pt;}
.y48_c00379{bottom:280.320000pt;}
.y4a_c00379{bottom:280.960000pt;}
.y47_c00379{bottom:282.240000pt;}
.y74_c00379{bottom:282.880000pt;}
.y49_c00379{bottom:286.080000pt;}
.y45_c00379{bottom:318.080000pt;}
.y46_c00379{bottom:318.720000pt;}
.y73_c00379{bottom:320.000000pt;}
.y72_c00379{bottom:320.640000pt;}
.y44_c00379{bottom:321.280000pt;}
.y42_c00379{bottom:356.480000pt;}
.y43_c00379{bottom:357.120000pt;}
.y71_c00379{bottom:359.040000pt;}
.y41_c00379{bottom:359.680000pt;}
.y3e_c00379{bottom:394.880000pt;}
.y40_c00379{bottom:395.520000pt;}
.y70_c00379{bottom:396.800000pt;}
.y3d_c00379{bottom:397.440000pt;}
.y3f_c00379{bottom:398.720000pt;}
.y39_c00379{bottom:433.280000pt;}
.y3c_c00379{bottom:433.920000pt;}
.y3a_c00379{bottom:434.560000pt;}
.y38_c00379{bottom:435.200000pt;}
.y6e_c00379{bottom:435.840000pt;}
.y3b_c00379{bottom:436.480000pt;}
.y6f_c00379{bottom:437.120000pt;}
.y32_c00379{bottom:471.680000pt;}
.y37_c00379{bottom:472.320000pt;}
.y36_c00379{bottom:472.960000pt;}
.y35_c00379{bottom:473.600000pt;}
.y31_c00379{bottom:474.240000pt;}
.y34_c00379{bottom:474.880000pt;}
.y33_c00379{bottom:475.520000pt;}
.y30_c00379{bottom:510.720000pt;}
.y2e_c00379{bottom:511.360000pt;}
.y2f_c00379{bottom:513.280000pt;}
.y2b_c00379{bottom:538.880000pt;}
.y2a_c00379{bottom:540.800000pt;}
.y2d_c00379{bottom:542.080000pt;}
.y2c_c00379{bottom:542.720000pt;}
.y27_c00379{bottom:570.240000pt;}
.y28_c00379{bottom:579.840000pt;}
.y29_c00379{bottom:580.480000pt;}
.y24_c00379{bottom:625.920000pt;}
.y26_c00379{bottom:626.560000pt;}
.y23_c00379{bottom:627.200000pt;}
.y6c_c00379{bottom:627.840000pt;}
.y25_c00379{bottom:629.120000pt;}
.y6d_c00379{bottom:629.760000pt;}
.y20_c00379{bottom:664.960000pt;}
.y21_c00379{bottom:665.600000pt;}
.y1f_c00379{bottom:666.240000pt;}
.y22_c00379{bottom:668.160000pt;}
.y6b_c00379{bottom:668.800000pt;}
.y1c_c00379{bottom:703.360000pt;}
.y1d_c00379{bottom:704.000000pt;}
.y1b_c00379{bottom:704.640000pt;}
.y1e_c00379{bottom:705.920000pt;}
.y6a_c00379{bottom:706.560000pt;}
.y17_c00379{bottom:741.760000pt;}
.y1a_c00379{bottom:742.400000pt;}
.y15_c00379{bottom:743.040000pt;}
.y18_c00379{bottom:743.680000pt;}
.y16_c00379{bottom:744.320000pt;}
.y19_c00379{bottom:744.960000pt;}
.y69_c00379{bottom:745.600000pt;}
.y10_c00379{bottom:780.160000pt;}
.y13_c00379{bottom:780.800000pt;}
.yf_c00379{bottom:781.440000pt;}
.y12_c00379{bottom:782.080000pt;}
.y68_c00379{bottom:782.720000pt;}
.y14_c00379{bottom:783.360000pt;}
.y11_c00379{bottom:784.000000pt;}
.y67_c00379{bottom:784.640000pt;}
.yc_c00379{bottom:818.560000pt;}
.yb_c00379{bottom:819.840000pt;}
.ye_c00379{bottom:821.760000pt;}
.yd_c00379{bottom:822.400000pt;}
.y8_c00379{bottom:856.960000pt;}
.y7_c00379{bottom:858.240000pt;}
.ya_c00379{bottom:860.160000pt;}
.y9_c00379{bottom:860.800000pt;}
.y5_c00379{bottom:895.360000pt;}
.y4_c00379{bottom:896.000000pt;}
.y66_c00379{bottom:897.920000pt;}
.y6_c00379{bottom:898.560000pt;}
.y2_c00379{bottom:933.120000pt;}
.y65_c00379{bottom:933.760000pt;}
.y64_c00379{bottom:934.400000pt;}
.y1_c00379{bottom:935.040000pt;}
.y3_c00379{bottom:936.960000pt;}
.y63_c00379{bottom:990.720000pt;}
.h12_c00379{height:20.733750pt;}
.h7_c00379{height:29.948750pt;}
.h10_c00379{height:32.252500pt;}
.h11_c00379{height:34.556250pt;}
.hc_c00379{height:36.860000pt;}
.hb_c00379{height:39.163750pt;}
.h5_c00379{height:41.467500pt;}
.h9_c00379{height:43.771250pt;}
.hf_c00379{height:46.075000pt;}
.h14_c00379{height:46.331250pt;}
.ha_c00379{height:48.378750pt;}
.h8_c00379{height:50.682500pt;}
.h2_c00379{height:52.986250pt;}
.h4_c00379{height:55.290000pt;}
.hd_c00379{height:57.593750pt;}
.h6_c00379{height:59.897500pt;}
.h3_c00379{height:62.201250pt;}
.h13_c00379{height:71.416250pt;}
.he_c00379{height:80.631250pt;}
.h0_c00379{height:1031.680000pt;}
.h1_c00379{height:1032.000000pt;}
.w1_c00379{width:682.000000pt;}
.w0_c00379{width:682.240000pt;}
.x0_c00379{left:0.000000pt;}
.x1_c00379{left:47.360000pt;}
.x17_c00379{left:48.640000pt;}
.x1f_c00379{left:49.920000pt;}
.xd_c00379{left:87.040000pt;}
.x13_c00379{left:94.720000pt;}
.x22_c00379{left:113.280000pt;}
.x2_c00379{left:114.560000pt;}
.x14_c00379{left:124.160000pt;}
.x20_c00379{left:133.760000pt;}
.x21_c00379{left:153.600000pt;}
.xe_c00379{left:163.200000pt;}
.x15_c00379{left:190.720000pt;}
.x23_c00379{left:192.640000pt;}
.x3_c00379{left:200.960000pt;}
.x6_c00379{left:202.240000pt;}
.xf_c00379{left:210.560000pt;}
.x1e_c00379{left:220.160000pt;}
.x1c_c00379{left:230.400000pt;}
.x7_c00379{left:240.000000pt;}
.x8_c00379{left:250.240000pt;}
.x18_c00379{left:259.200000pt;}
.x1d_c00379{left:277.760000pt;}
.x24_c00379{left:279.040000pt;}
.x9_c00379{left:288.000000pt;}
.x25_c00379{left:289.280000pt;}
.x4_c00379{left:307.200000pt;}
.xa_c00379{left:316.800000pt;}
.x10_c00379{left:326.400000pt;}
.x19_c00379{left:336.000000pt;}
.x5_c00379{left:355.840000pt;}
.xb_c00379{left:364.800000pt;}
.x11_c00379{left:374.400000pt;}
.x1a_c00379{left:384.640000pt;}
.xc_c00379{left:403.840000pt;}
.x12_c00379{left:412.800000pt;}
.x1b_c00379{left:422.400000pt;}
.x16_c00379{left:450.560000pt;}
.x27_c00379{left:489.600000pt;}
.x2a_c00379{left:509.440000pt;}
.x2f_c00379{left:510.720000pt;}
.x2b_c00379{left:519.680000pt;}
.x2c_c00379{left:530.560000pt;}
.x30_c00379{left:537.600000pt;}
.x2d_c00379{left:539.520000pt;}
.x2e_c00379{left:568.320000pt;}
.x28_c00379{left:577.920000pt;}
.x31_c00379{left:597.120000pt;}
.x29_c00379{left:606.720000pt;}
.x26_c00379{left:622.080000pt;}
.x32_c00379{left:625.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c73e2e9f0070c14a5dd09a84.woff2')format("woff");}.ff1_c00380{font-family:ff1_c00380;line-height:1.109863;font-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_c00380{transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);}
.m12_c00380{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m2b_c00380{transform:matrix(0.248350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248350,0.000000,0.000000,0.250000,0,0);}
.m35_c00380{transform:matrix(0.248800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248800,0.000000,0.000000,0.250000,0,0);}
.m25_c00380{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m2_c00380{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m10_c00380{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00380{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00380{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);}
.m2f_c00380{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);}
.m37_c00380{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_c00380{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m6_c00380{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m21_c00380{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m19_c00380{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m11_c00380{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mb_c00380{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);}
.m3c_c00380{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00380{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00380{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m4_c00380{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00380{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.ma_c00380{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00380{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m38_c00380{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m29_c00380{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m9_c00380{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00380{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m34_c00380{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.md_c00380{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m0_c00380{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m27_c00380{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m5_c00380{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00380{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m26_c00380{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00380{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);}
.m3b_c00380{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m20_c00380{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m8_c00380{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1_c00380{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.mc_c00380{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m28_c00380{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);}
.m33_c00380{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.me_c00380{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_c00380{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00380{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);}
.m1c_c00380{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m7_c00380{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m32_c00380{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m30_c00380{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m24_c00380{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m22_c00380{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m36_c00380{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m18_c00380{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00380{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m3_c00380{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00380{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m17_c00380{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m16_c00380{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m39_c00380{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.mf_c00380{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m23_c00380{transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);}
.m14_c00380{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.v3_c00380{vertical-align:-11.520000px;}
.v2_c00380{vertical-align:-2.880000px;}
.v0_c00380{vertical-align:0.000000px;}
.v1_c00380{vertical-align:5.760000px;}
.ls1_c00380{letter-spacing:0.000000px;}
.ls0_c00380{letter-spacing:81.576960px;}
.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;}
}
.ws2_c00380{word-spacing:0.000000px;}
.ws1_c00380{word-spacing:3.613920px;}
.ws0_c00380{word-spacing:122.430000px;}
.fc0_c00380{color:transparent;}
.fsd_c00380{font-size:31.680000px;}
.fsb_c00380{font-size:34.560000px;}
.fsc_c00380{font-size:43.200000px;}
.fs9_c00380{font-size:46.080000px;}
.fs2_c00380{font-size:48.960000px;}
.fs6_c00380{font-size:51.840000px;}
.fs8_c00380{font-size:54.720000px;}
.fs7_c00380{font-size:57.600000px;}
.fsa_c00380{font-size:60.480000px;}
.fs1_c00380{font-size:63.360000px;}
.fs4_c00380{font-size:66.240000px;}
.fs3_c00380{font-size:69.120000px;}
.fs5_c00380{font-size:72.000000px;}
.fs0_c00380{font-size:74.880000px;}
.fse_c00380{font-size:103.680000px;}
.y0_c00380{bottom:0.000000px;}
.y68_c00380{bottom:109.440000px;}
.y6f_c00380{bottom:112.320000px;}
.y67_c00380{bottom:113.040000px;}
.y66_c00380{bottom:152.640000px;}
.y6e_c00380{bottom:155.520000px;}
.y65_c00380{bottom:156.240000px;}
.y6d_c00380{bottom:159.120000px;}
.y64_c00380{bottom:195.840000px;}
.y6b_c00380{bottom:199.440000px;}
.y6c_c00380{bottom:200.160000px;}
.y63_c00380{bottom:200.880000px;}
.y62_c00380{bottom:239.760000px;}
.y69_c00380{bottom:242.640000px;}
.y61_c00380{bottom:243.360000px;}
.y6a_c00380{bottom:244.800000px;}
.y57_c00380{bottom:282.240000px;}
.y58_c00380{bottom:283.680000px;}
.y5e_c00380{bottom:285.120000px;}
.y5f_c00380{bottom:285.840000px;}
.y56_c00380{bottom:286.560000px;}
.y5c_c00380{bottom:328.320000px;}
.y5d_c00380{bottom:329.040000px;}
.y60_c00380{bottom:369.360000px;}
.y59_c00380{bottom:370.800000px;}
.y5b_c00380{bottom:371.520000px;}
.y5a_c00380{bottom:372.240000px;}
.y55_c00380{bottom:412.560000px;}
.y54_c00380{bottom:414.720000px;}
.y51_c00380{bottom:415.440000px;}
.y53_c00380{bottom:416.880000px;}
.y52_c00380{bottom:417.600000px;}
.y4e_c00380{bottom:456.480000px;}
.y4f_c00380{bottom:457.920000px;}
.y4b_c00380{bottom:458.640000px;}
.y50_c00380{bottom:459.360000px;}
.y4d_c00380{bottom:460.080000px;}
.y4c_c00380{bottom:460.800000px;}
.y4a_c00380{bottom:493.200000px;}
.y45_c00380{bottom:500.400000px;}
.y46_c00380{bottom:501.840000px;}
.y44_c00380{bottom:502.560000px;}
.y48_c00380{bottom:504.000000px;}
.y47_c00380{bottom:504.720000px;}
.y49_c00380{bottom:505.440000px;}
.y40_c00380{bottom:543.600000px;}
.y43_c00380{bottom:544.320000px;}
.y42_c00380{bottom:545.040000px;}
.y3f_c00380{bottom:545.760000px;}
.y41_c00380{bottom:547.200000px;}
.y3e_c00380{bottom:587.520000px;}
.y3d_c00380{bottom:588.240000px;}
.y3c_c00380{bottom:591.120000px;}
.y39_c00380{bottom:619.200000px;}
.y38_c00380{bottom:621.360000px;}
.y3b_c00380{bottom:622.800000px;}
.y3a_c00380{bottom:623.520000px;}
.y36_c00380{bottom:655.200000px;}
.y31_c00380{bottom:662.400000px;}
.y33_c00380{bottom:663.840000px;}
.y37_c00380{bottom:664.560000px;}
.y30_c00380{bottom:665.280000px;}
.y34_c00380{bottom:666.000000px;}
.y32_c00380{bottom:666.720000px;}
.y35_c00380{bottom:667.440000px;}
.y2c_c00380{bottom:706.320000px;}
.y2e_c00380{bottom:707.040000px;}
.y2b_c00380{bottom:707.760000px;}
.y2f_c00380{bottom:708.480000px;}
.y2d_c00380{bottom:709.920000px;}
.y26_c00380{bottom:749.520000px;}
.y29_c00380{bottom:750.240000px;}
.y25_c00380{bottom:750.960000px;}
.y2a_c00380{bottom:751.680000px;}
.y28_c00380{bottom:753.120000px;}
.y27_c00380{bottom:753.840000px;}
.y20_c00380{bottom:792.720000px;}
.y22_c00380{bottom:793.440000px;}
.y1f_c00380{bottom:794.160000px;}
.y24_c00380{bottom:794.880000px;}
.y23_c00380{bottom:796.320000px;}
.y21_c00380{bottom:797.040000px;}
.y1c_c00380{bottom:835.920000px;}
.y1b_c00380{bottom:836.640000px;}
.y1e_c00380{bottom:838.080000px;}
.y1d_c00380{bottom:838.800000px;}
.y19_c00380{bottom:878.400000px;}
.y16_c00380{bottom:879.120000px;}
.y15_c00380{bottom:879.840000px;}
.y1a_c00380{bottom:880.560000px;}
.y18_c00380{bottom:882.000000px;}
.y17_c00380{bottom:882.720000px;}
.y11_c00380{bottom:923.040000px;}
.y12_c00380{bottom:923.760000px;}
.y13_c00380{bottom:925.200000px;}
.y14_c00380{bottom:925.920000px;}
.yd_c00380{bottom:964.800000px;}
.ye_c00380{bottom:965.520000px;}
.yc_c00380{bottom:966.240000px;}
.yf_c00380{bottom:966.960000px;}
.y10_c00380{bottom:968.400000px;}
.y7_c00380{bottom:1008.720000px;}
.y6_c00380{bottom:1009.440000px;}
.yb_c00380{bottom:1010.160000px;}
.ya_c00380{bottom:1011.600000px;}
.y8_c00380{bottom:1012.320000px;}
.y3_c00380{bottom:1051.200000px;}
.y5_c00380{bottom:1052.640000px;}
.y2_c00380{bottom:1053.360000px;}
.y9_c00380{bottom:1054.080000px;}
.y4_c00380{bottom:1055.520000px;}
.y1_c00380{bottom:1100.160000px;}
.hf_c00380{height:28.508906px;}
.hd_c00380{height:31.100625px;}
.he_c00380{height:38.875781px;}
.hb_c00380{height:41.467500px;}
.h4_c00380{height:44.059219px;}
.h8_c00380{height:46.650937px;}
.ha_c00380{height:49.242656px;}
.h9_c00380{height:51.834375px;}
.hc_c00380{height:54.426094px;}
.h3_c00380{height:57.017812px;}
.h6_c00380{height:59.609531px;}
.h5_c00380{height:62.201250px;}
.h7_c00380{height:64.792969px;}
.h2_c00380{height:67.384687px;}
.h10_c00380{height:93.301875px;}
.h0_c00380{height:1160.640000px;}
.h1_c00380{height:1161.000000px;}
.w0_c00380{width:762.480000px;}
.w1_c00380{width:762.750000px;}
.x0_c00380{left:0.000000px;}
.x2_c00380{left:51.840000px;}
.x2d_c00380{left:53.280000px;}
.x3_c00380{left:127.440000px;}
.x2e_c00380{left:169.200000px;}
.x2a_c00380{left:170.640000px;}
.xe_c00380{left:213.840000px;}
.xc_c00380{left:215.280000px;}
.x11_c00380{left:223.920000px;}
.x17_c00380{left:226.080000px;}
.x1c_c00380{left:257.040000px;}
.x4_c00380{left:258.480000px;}
.xf_c00380{left:268.560000px;}
.x2b_c00380{left:278.640000px;}
.x1d_c00380{left:280.080000px;}
.x6_c00380{left:290.160000px;}
.x18_c00380{left:311.040000px;}
.x5_c00380{left:312.480000px;}
.x23_c00380{left:321.840000px;}
.x21_c00380{left:323.280000px;}
.x7_c00380{left:334.080000px;}
.x12_c00380{left:354.960000px;}
.x1e_c00380{left:365.040000px;}
.x19_c00380{left:366.480000px;}
.x2c_c00380{left:376.560000px;}
.x13_c00380{left:409.680000px;}
.x24_c00380{left:419.040000px;}
.x1f_c00380{left:420.480000px;}
.x22_c00380{left:441.360000px;}
.x14_c00380{left:452.880000px;}
.x20_c00380{left:463.680000px;}
.x25_c00380{left:474.480000px;}
.x27_c00380{left:484.560000px;}
.x29_c00380{left:496.080000px;}
.x26_c00380{left:517.680000px;}
.x28_c00380{left:539.280000px;}
.x8_c00380{left:541.440000px;}
.xd_c00380{left:550.800000px;}
.x31_c00380{left:571.680000px;}
.x1a_c00380{left:573.120000px;}
.x15_c00380{left:583.200000px;}
.x9_c00380{left:604.800000px;}
.x2f_c00380{left:637.200000px;}
.xa_c00380{left:638.640000px;}
.x1b_c00380{left:648.720000px;}
.x30_c00380{left:669.600000px;}
.x1_c00380{left:671.760000px;}
.x16_c00380{left:680.400000px;}
.x10_c00380{left:681.840000px;}
.xb_c00380{left:702.000000px;}
@media print{
.v3_c00380{vertical-align:-10.240000pt;}
.v2_c00380{vertical-align:-2.560000pt;}
.v0_c00380{vertical-align:0.000000pt;}
.v1_c00380{vertical-align:5.120000pt;}
.ls1_c00380{letter-spacing:0.000000pt;}
.ls0_c00380{letter-spacing:72.512853pt;}
.ws2_c00380{word-spacing:0.000000pt;}
.ws1_c00380{word-spacing:3.212373pt;}
.ws0_c00380{word-spacing:108.826667pt;}
.fsd_c00380{font-size:28.160000pt;}
.fsb_c00380{font-size:30.720000pt;}
.fsc_c00380{font-size:38.400000pt;}
.fs9_c00380{font-size:40.960000pt;}
.fs2_c00380{font-size:43.520000pt;}
.fs6_c00380{font-size:46.080000pt;}
.fs8_c00380{font-size:48.640000pt;}
.fs7_c00380{font-size:51.200000pt;}
.fsa_c00380{font-size:53.760000pt;}
.fs1_c00380{font-size:56.320000pt;}
.fs4_c00380{font-size:58.880000pt;}
.fs3_c00380{font-size:61.440000pt;}
.fs5_c00380{font-size:64.000000pt;}
.fs0_c00380{font-size:66.560000pt;}
.fse_c00380{font-size:92.160000pt;}
.y0_c00380{bottom:0.000000pt;}
.y68_c00380{bottom:97.280000pt;}
.y6f_c00380{bottom:99.840000pt;}
.y67_c00380{bottom:100.480000pt;}
.y66_c00380{bottom:135.680000pt;}
.y6e_c00380{bottom:138.240000pt;}
.y65_c00380{bottom:138.880000pt;}
.y6d_c00380{bottom:141.440000pt;}
.y64_c00380{bottom:174.080000pt;}
.y6b_c00380{bottom:177.280000pt;}
.y6c_c00380{bottom:177.920000pt;}
.y63_c00380{bottom:178.560000pt;}
.y62_c00380{bottom:213.120000pt;}
.y69_c00380{bottom:215.680000pt;}
.y61_c00380{bottom:216.320000pt;}
.y6a_c00380{bottom:217.600000pt;}
.y57_c00380{bottom:250.880000pt;}
.y58_c00380{bottom:252.160000pt;}
.y5e_c00380{bottom:253.440000pt;}
.y5f_c00380{bottom:254.080000pt;}
.y56_c00380{bottom:254.720000pt;}
.y5c_c00380{bottom:291.840000pt;}
.y5d_c00380{bottom:292.480000pt;}
.y60_c00380{bottom:328.320000pt;}
.y59_c00380{bottom:329.600000pt;}
.y5b_c00380{bottom:330.240000pt;}
.y5a_c00380{bottom:330.880000pt;}
.y55_c00380{bottom:366.720000pt;}
.y54_c00380{bottom:368.640000pt;}
.y51_c00380{bottom:369.280000pt;}
.y53_c00380{bottom:370.560000pt;}
.y52_c00380{bottom:371.200000pt;}
.y4e_c00380{bottom:405.760000pt;}
.y4f_c00380{bottom:407.040000pt;}
.y4b_c00380{bottom:407.680000pt;}
.y50_c00380{bottom:408.320000pt;}
.y4d_c00380{bottom:408.960000pt;}
.y4c_c00380{bottom:409.600000pt;}
.y4a_c00380{bottom:438.400000pt;}
.y45_c00380{bottom:444.800000pt;}
.y46_c00380{bottom:446.080000pt;}
.y44_c00380{bottom:446.720000pt;}
.y48_c00380{bottom:448.000000pt;}
.y47_c00380{bottom:448.640000pt;}
.y49_c00380{bottom:449.280000pt;}
.y40_c00380{bottom:483.200000pt;}
.y43_c00380{bottom:483.840000pt;}
.y42_c00380{bottom:484.480000pt;}
.y3f_c00380{bottom:485.120000pt;}
.y41_c00380{bottom:486.400000pt;}
.y3e_c00380{bottom:522.240000pt;}
.y3d_c00380{bottom:522.880000pt;}
.y3c_c00380{bottom:525.440000pt;}
.y39_c00380{bottom:550.400000pt;}
.y38_c00380{bottom:552.320000pt;}
.y3b_c00380{bottom:553.600000pt;}
.y3a_c00380{bottom:554.240000pt;}
.y36_c00380{bottom:582.400000pt;}
.y31_c00380{bottom:588.800000pt;}
.y33_c00380{bottom:590.080000pt;}
.y37_c00380{bottom:590.720000pt;}
.y30_c00380{bottom:591.360000pt;}
.y34_c00380{bottom:592.000000pt;}
.y32_c00380{bottom:592.640000pt;}
.y35_c00380{bottom:593.280000pt;}
.y2c_c00380{bottom:627.840000pt;}
.y2e_c00380{bottom:628.480000pt;}
.y2b_c00380{bottom:629.120000pt;}
.y2f_c00380{bottom:629.760000pt;}
.y2d_c00380{bottom:631.040000pt;}
.y26_c00380{bottom:666.240000pt;}
.y29_c00380{bottom:666.880000pt;}
.y25_c00380{bottom:667.520000pt;}
.y2a_c00380{bottom:668.160000pt;}
.y28_c00380{bottom:669.440000pt;}
.y27_c00380{bottom:670.080000pt;}
.y20_c00380{bottom:704.640000pt;}
.y22_c00380{bottom:705.280000pt;}
.y1f_c00380{bottom:705.920000pt;}
.y24_c00380{bottom:706.560000pt;}
.y23_c00380{bottom:707.840000pt;}
.y21_c00380{bottom:708.480000pt;}
.y1c_c00380{bottom:743.040000pt;}
.y1b_c00380{bottom:743.680000pt;}
.y1e_c00380{bottom:744.960000pt;}
.y1d_c00380{bottom:745.600000pt;}
.y19_c00380{bottom:780.800000pt;}
.y16_c00380{bottom:781.440000pt;}
.y15_c00380{bottom:782.080000pt;}
.y1a_c00380{bottom:782.720000pt;}
.y18_c00380{bottom:784.000000pt;}
.y17_c00380{bottom:784.640000pt;}
.y11_c00380{bottom:820.480000pt;}
.y12_c00380{bottom:821.120000pt;}
.y13_c00380{bottom:822.400000pt;}
.y14_c00380{bottom:823.040000pt;}
.yd_c00380{bottom:857.600000pt;}
.ye_c00380{bottom:858.240000pt;}
.yc_c00380{bottom:858.880000pt;}
.yf_c00380{bottom:859.520000pt;}
.y10_c00380{bottom:860.800000pt;}
.y7_c00380{bottom:896.640000pt;}
.y6_c00380{bottom:897.280000pt;}
.yb_c00380{bottom:897.920000pt;}
.ya_c00380{bottom:899.200000pt;}
.y8_c00380{bottom:899.840000pt;}
.y3_c00380{bottom:934.400000pt;}
.y5_c00380{bottom:935.680000pt;}
.y2_c00380{bottom:936.320000pt;}
.y9_c00380{bottom:936.960000pt;}
.y4_c00380{bottom:938.240000pt;}
.y1_c00380{bottom:977.920000pt;}
.hf_c00380{height:25.341250pt;}
.hd_c00380{height:27.645000pt;}
.he_c00380{height:34.556250pt;}
.hb_c00380{height:36.860000pt;}
.h4_c00380{height:39.163750pt;}
.h8_c00380{height:41.467500pt;}
.ha_c00380{height:43.771250pt;}
.h9_c00380{height:46.075000pt;}
.hc_c00380{height:48.378750pt;}
.h3_c00380{height:50.682500pt;}
.h6_c00380{height:52.986250pt;}
.h5_c00380{height:55.290000pt;}
.h7_c00380{height:57.593750pt;}
.h2_c00380{height:59.897500pt;}
.h10_c00380{height:82.935000pt;}
.h0_c00380{height:1031.680000pt;}
.h1_c00380{height:1032.000000pt;}
.w0_c00380{width:677.760000pt;}
.w1_c00380{width:678.000000pt;}
.x0_c00380{left:0.000000pt;}
.x2_c00380{left:46.080000pt;}
.x2d_c00380{left:47.360000pt;}
.x3_c00380{left:113.280000pt;}
.x2e_c00380{left:150.400000pt;}
.x2a_c00380{left:151.680000pt;}
.xe_c00380{left:190.080000pt;}
.xc_c00380{left:191.360000pt;}
.x11_c00380{left:199.040000pt;}
.x17_c00380{left:200.960000pt;}
.x1c_c00380{left:228.480000pt;}
.x4_c00380{left:229.760000pt;}
.xf_c00380{left:238.720000pt;}
.x2b_c00380{left:247.680000pt;}
.x1d_c00380{left:248.960000pt;}
.x6_c00380{left:257.920000pt;}
.x18_c00380{left:276.480000pt;}
.x5_c00380{left:277.760000pt;}
.x23_c00380{left:286.080000pt;}
.x21_c00380{left:287.360000pt;}
.x7_c00380{left:296.960000pt;}
.x12_c00380{left:315.520000pt;}
.x1e_c00380{left:324.480000pt;}
.x19_c00380{left:325.760000pt;}
.x2c_c00380{left:334.720000pt;}
.x13_c00380{left:364.160000pt;}
.x24_c00380{left:372.480000pt;}
.x1f_c00380{left:373.760000pt;}
.x22_c00380{left:392.320000pt;}
.x14_c00380{left:402.560000pt;}
.x20_c00380{left:412.160000pt;}
.x25_c00380{left:421.760000pt;}
.x27_c00380{left:430.720000pt;}
.x29_c00380{left:440.960000pt;}
.x26_c00380{left:460.160000pt;}
.x28_c00380{left:479.360000pt;}
.x8_c00380{left:481.280000pt;}
.xd_c00380{left:489.600000pt;}
.x31_c00380{left:508.160000pt;}
.x1a_c00380{left:509.440000pt;}
.x15_c00380{left:518.400000pt;}
.x9_c00380{left:537.600000pt;}
.x2f_c00380{left:566.400000pt;}
.xa_c00380{left:567.680000pt;}
.x1b_c00380{left:576.640000pt;}
.x30_c00380{left:595.200000pt;}
.x1_c00380{left:597.120000pt;}
.x16_c00380{left:604.800000pt;}
.x10_c00380{left:606.080000pt;}
.xb_c00380{left:624.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_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_370a377eac28b5bde46cc5a5.woff2')format("woff");}.ff1_c00381{font-family:ff1_c00381;line-height:1.109863;font-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_c00381{transform:matrix(0.182525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182525,0.000000,0.000000,0.250000,0,0);}
.m32_c00381{transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);}
.m28_c00381{transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);}
.m4a_c00381{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m11_c00381{transform:matrix(0.201075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201075,0.000000,0.000000,0.250000,0,0);}
.m24_c00381{transform:matrix(0.230925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230925,0.000000,0.000000,0.250000,0,0);}
.m3c_c00381{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m45_c00381{transform:matrix(0.246550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246550,0.000000,0.000000,0.250000,0,0);}
.m41_c00381{transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);}
.m10_c00381{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);}
.m25_c00381{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);}
.m37_c00381{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);}
.m2b_c00381{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00381{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m30_c00381{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);}
.m34_c00381{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.mf_c00381{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);}
.m2e_c00381{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m36_c00381{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m14_c00381{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m26_c00381{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m21_c00381{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.ma_c00381{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00381{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m49_c00381{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m2_c00381{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m6_c00381{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m29_c00381{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m0_c00381{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.mb_c00381{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00381{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m35_c00381{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m8_c00381{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m38_c00381{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m13_c00381{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m17_c00381{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m31_c00381{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00381{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.md_c00381{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m42_c00381{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m5_c00381{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00381{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);}
.m2f_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);}
.m22_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);}
.m48_c00381{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00381{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);}
.m20_c00381{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m43_c00381{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);}
.me_c00381{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);}
.m39_c00381{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m3_c00381{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00381{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m16_c00381{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);}
.m40_c00381{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00381{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m4_c00381{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m9_c00381{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00381{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);}
.m44_c00381{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m23_c00381{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m47_c00381{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m18_c00381{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);}
.m1c_c00381{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);}
.m12_c00381{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m46_c00381{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);}
.m1e_c00381{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.mc_c00381{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);}
.m7_c00381{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m19_c00381{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);}
.m3d_c00381{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00381{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00381{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m15_c00381{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);}
.m27_c00381{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);}
.m33_c00381{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.v0_c00381{vertical-align:0.000000px;}
.v2_c00381{vertical-align:2.880000px;}
.v1_c00381{vertical-align:11.520000px;}
.ls0_c00381{letter-spacing:0.000000px;}
.sc__c00381{text-shadow:none;}
.sc0_c00381{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00381{-webkit-text-stroke:0px transparent;}
.sc0_c00381{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00381{word-spacing:-2.344080px;}
.ws2_c00381{word-spacing:0.000000px;}
.ws1_c00381{word-spacing:9.474000px;}
.fc0_c00381{color:transparent;}
.fsf_c00381{font-size:20.160000px;}
.fsc_c00381{font-size:37.440000px;}
.fsd_c00381{font-size:40.320000px;}
.fsb_c00381{font-size:46.080000px;}
.fs6_c00381{font-size:48.960000px;}
.fs4_c00381{font-size:51.840000px;}
.fsa_c00381{font-size:54.720000px;}
.fs3_c00381{font-size:57.600000px;}
.fs2_c00381{font-size:60.480000px;}
.fse_c00381{font-size:63.360000px;}
.fs5_c00381{font-size:66.240000px;}
.fs9_c00381{font-size:69.120000px;}
.fs8_c00381{font-size:72.000000px;}
.fs0_c00381{font-size:74.880000px;}
.fs7_c00381{font-size:77.760000px;}
.fs1_c00381{font-size:89.280000px;}
.y0_c00381{bottom:0.000000px;}
.y6d_c00381{bottom:79.200000px;}
.y68_c00381{bottom:85.680000px;}
.y6b_c00381{bottom:87.120000px;}
.y69_c00381{bottom:87.840000px;}
.y67_c00381{bottom:89.280000px;}
.y6a_c00381{bottom:90.000000px;}
.y6c_c00381{bottom:90.720000px;}
.y63_c00381{bottom:129.600000px;}
.y66_c00381{bottom:130.320000px;}
.y65_c00381{bottom:131.040000px;}
.y64_c00381{bottom:131.760000px;}
.y62_c00381{bottom:133.200000px;}
.y5d_c00381{bottom:172.800000px;}
.y60_c00381{bottom:173.520000px;}
.y5f_c00381{bottom:174.240000px;}
.y61_c00381{bottom:174.960000px;}
.y5c_c00381{bottom:176.400000px;}
.y5e_c00381{bottom:177.120000px;}
.y58_c00381{bottom:216.720000px;}
.y5b_c00381{bottom:218.160000px;}
.y57_c00381{bottom:219.600000px;}
.y59_c00381{bottom:220.320000px;}
.y5a_c00381{bottom:221.040000px;}
.y53_c00381{bottom:259.920000px;}
.y55_c00381{bottom:262.080000px;}
.y54_c00381{bottom:262.800000px;}
.y52_c00381{bottom:263.520000px;}
.y56_c00381{bottom:264.240000px;}
.y50_c00381{bottom:305.280000px;}
.y51_c00381{bottom:306.720000px;}
.y4f_c00381{bottom:308.880000px;}
.y47_c00381{bottom:357.120000px;}
.y4d_c00381{bottom:360.000000px;}
.y46_c00381{bottom:361.440000px;}
.y4e_c00381{bottom:362.160000px;}
.y45_c00381{bottom:401.040000px;}
.y4b_c00381{bottom:403.200000px;}
.y44_c00381{bottom:403.920000px;}
.y4c_c00381{bottom:405.360000px;}
.y43_c00381{bottom:444.240000px;}
.y4a_c00381{bottom:444.960000px;}
.y49_c00381{bottom:445.680000px;}
.y42_c00381{bottom:446.400000px;}
.y40_c00381{bottom:487.440000px;}
.y41_c00381{bottom:488.160000px;}
.y48_c00381{bottom:488.880000px;}
.y3f_c00381{bottom:490.320000px;}
.y3e_c00381{bottom:530.640000px;}
.y3d_c00381{bottom:531.360000px;}
.y3a_c00381{bottom:532.800000px;}
.y3c_c00381{bottom:533.520000px;}
.y3b_c00381{bottom:534.960000px;}
.y33_c00381{bottom:573.840000px;}
.y39_c00381{bottom:575.280000px;}
.y32_c00381{bottom:576.720000px;}
.y31_c00381{bottom:617.040000px;}
.y38_c00381{bottom:618.480000px;}
.y30_c00381{bottom:619.200000px;}
.y2d_c00381{bottom:660.240000px;}
.y2f_c00381{bottom:660.960000px;}
.y36_c00381{bottom:661.680000px;}
.y2c_c00381{bottom:662.400000px;}
.y37_c00381{bottom:663.120000px;}
.y2e_c00381{bottom:664.560000px;}
.y26_c00381{bottom:704.160000px;}
.y34_c00381{bottom:705.600000px;}
.y25_c00381{bottom:706.320000px;}
.y35_c00381{bottom:707.040000px;}
.y24_c00381{bottom:747.360000px;}
.y2b_c00381{bottom:748.800000px;}
.y23_c00381{bottom:749.520000px;}
.y20_c00381{bottom:790.560000px;}
.y22_c00381{bottom:791.280000px;}
.y29_c00381{bottom:792.720000px;}
.y1f_c00381{bottom:793.440000px;}
.y21_c00381{bottom:794.160000px;}
.y2a_c00381{bottom:794.880000px;}
.y1a_c00381{bottom:833.760000px;}
.y1e_c00381{bottom:834.480000px;}
.y28_c00381{bottom:835.920000px;}
.y19_c00381{bottom:836.640000px;}
.y1d_c00381{bottom:837.360000px;}
.y1b_c00381{bottom:838.080000px;}
.y1c_c00381{bottom:838.800000px;}
.y18_c00381{bottom:876.960000px;}
.y16_c00381{bottom:879.120000px;}
.y27_c00381{bottom:879.840000px;}
.y17_c00381{bottom:881.280000px;}
.y15_c00381{bottom:920.160000px;}
.y11_c00381{bottom:922.320000px;}
.y14_c00381{bottom:924.480000px;}
.y13_c00381{bottom:925.200000px;}
.y12_c00381{bottom:925.920000px;}
.ye_c00381{bottom:963.360000px;}
.yb_c00381{bottom:965.520000px;}
.y10_c00381{bottom:966.240000px;}
.yf_c00381{bottom:966.960000px;}
.yd_c00381{bottom:967.680000px;}
.yc_c00381{bottom:968.400000px;}
.y7_c00381{bottom:1006.560000px;}
.ya_c00381{bottom:1008.000000px;}
.y6_c00381{bottom:1008.720000px;}
.y9_c00381{bottom:1009.440000px;}
.y8_c00381{bottom:1010.880000px;}
.y2_c00381{bottom:1044.720000px;}
.y3_c00381{bottom:1051.920000px;}
.y4_c00381{bottom:1052.640000px;}
.y5_c00381{bottom:1054.080000px;}
.y1_c00381{bottom:1088.640000px;}
.h12_c00381{height:18.142031px;}
.hd_c00381{height:33.692344px;}
.he_c00381{height:36.284062px;}
.hc_c00381{height:41.467500px;}
.hf_c00381{height:44.059219px;}
.h6_c00381{height:46.650937px;}
.hb_c00381{height:49.242656px;}
.h5_c00381{height:51.834375px;}
.h4_c00381{height:54.426094px;}
.h11_c00381{height:54.714375px;}
.h10_c00381{height:57.017812px;}
.h7_c00381{height:59.609531px;}
.ha_c00381{height:62.201250px;}
.h9_c00381{height:64.792969px;}
.h2_c00381{height:67.384687px;}
.h8_c00381{height:69.976406px;}
.h3_c00381{height:80.343281px;}
.h1_c00381{height:1161.750000px;}
.h0_c00381{height:1162.080000px;}
.w0_c00381{width:763.200000px;}
.w1_c00381{width:763.500000px;}
.x0_c00381{left:0.000000px;}
.x6_c00381{left:47.520000px;}
.x1e_c00381{left:48.960000px;}
.x2_c00381{left:101.520000px;}
.xf_c00381{left:123.120000px;}
.x15_c00381{left:124.560000px;}
.x3_c00381{left:145.440000px;}
.x7_c00381{left:166.320000px;}
.x10_c00381{left:167.760000px;}
.x25_c00381{left:177.120000px;}
.x4_c00381{left:179.280000px;}
.x27_c00381{left:198.720000px;}
.x11_c00381{left:210.240000px;}
.x5_c00381{left:220.320000px;}
.x18_c00381{left:243.360000px;}
.x2f_c00381{left:254.160000px;}
.x29_c00381{left:263.520000px;}
.x16_c00381{left:265.680000px;}
.x20_c00381{left:275.040000px;}
.x8_c00381{left:276.480000px;}
.x26_c00381{left:285.840000px;}
.x30_c00381{left:287.280000px;}
.x19_c00381{left:295.920000px;}
.x17_c00381{left:306.720000px;}
.x2d_c00381{left:319.680000px;}
.x1c_c00381{left:329.040000px;}
.x9_c00381{left:330.480000px;}
.x1a_c00381{left:340.560000px;}
.x2e_c00381{left:362.880000px;}
.x31_c00381{left:364.320000px;}
.x32_c00381{left:373.680000px;}
.x1b_c00381{left:383.040000px;}
.x21_c00381{left:384.480000px;}
.x1d_c00381{left:393.840000px;}
.x33_c00381{left:414.720000px;}
.xa_c00381{left:416.160000px;}
.x22_c00381{left:437.040000px;}
.x2a_c00381{left:449.280000px;}
.x34_c00381{left:459.360000px;}
.xb_c00381{left:470.880000px;}
.x2b_c00381{left:503.280000px;}
.x37_c00381{left:512.640000px;}
.x35_c00381{left:514.080000px;}
.x28_c00381{left:546.480000px;}
.x2c_c00381{left:565.920000px;}
.x1f_c00381{left:568.080000px;}
.x14_c00381{left:569.520000px;}
.x24_c00381{left:600.480000px;}
.xc_c00381{left:601.920000px;}
.xd_c00381{left:632.880000px;}
.x12_c00381{left:635.040000px;}
.x36_c00381{left:643.680000px;}
.x1_c00381{left:666.720000px;}
.x23_c00381{left:676.080000px;}
.x13_c00381{left:677.520000px;}
.xe_c00381{left:697.680000px;}
@media print{
.v0_c00381{vertical-align:0.000000pt;}
.v2_c00381{vertical-align:2.560000pt;}
.v1_c00381{vertical-align:10.240000pt;}
.ls0_c00381{letter-spacing:0.000000pt;}
.ws0_c00381{word-spacing:-2.083627pt;}
.ws2_c00381{word-spacing:0.000000pt;}
.ws1_c00381{word-spacing:8.421333pt;}
.fsf_c00381{font-size:17.920000pt;}
.fsc_c00381{font-size:33.280000pt;}
.fsd_c00381{font-size:35.840000pt;}
.fsb_c00381{font-size:40.960000pt;}
.fs6_c00381{font-size:43.520000pt;}
.fs4_c00381{font-size:46.080000pt;}
.fsa_c00381{font-size:48.640000pt;}
.fs3_c00381{font-size:51.200000pt;}
.fs2_c00381{font-size:53.760000pt;}
.fse_c00381{font-size:56.320000pt;}
.fs5_c00381{font-size:58.880000pt;}
.fs9_c00381{font-size:61.440000pt;}
.fs8_c00381{font-size:64.000000pt;}
.fs0_c00381{font-size:66.560000pt;}
.fs7_c00381{font-size:69.120000pt;}
.fs1_c00381{font-size:79.360000pt;}
.y0_c00381{bottom:0.000000pt;}
.y6d_c00381{bottom:70.400000pt;}
.y68_c00381{bottom:76.160000pt;}
.y6b_c00381{bottom:77.440000pt;}
.y69_c00381{bottom:78.080000pt;}
.y67_c00381{bottom:79.360000pt;}
.y6a_c00381{bottom:80.000000pt;}
.y6c_c00381{bottom:80.640000pt;}
.y63_c00381{bottom:115.200000pt;}
.y66_c00381{bottom:115.840000pt;}
.y65_c00381{bottom:116.480000pt;}
.y64_c00381{bottom:117.120000pt;}
.y62_c00381{bottom:118.400000pt;}
.y5d_c00381{bottom:153.600000pt;}
.y60_c00381{bottom:154.240000pt;}
.y5f_c00381{bottom:154.880000pt;}
.y61_c00381{bottom:155.520000pt;}
.y5c_c00381{bottom:156.800000pt;}
.y5e_c00381{bottom:157.440000pt;}
.y58_c00381{bottom:192.640000pt;}
.y5b_c00381{bottom:193.920000pt;}
.y57_c00381{bottom:195.200000pt;}
.y59_c00381{bottom:195.840000pt;}
.y5a_c00381{bottom:196.480000pt;}
.y53_c00381{bottom:231.040000pt;}
.y55_c00381{bottom:232.960000pt;}
.y54_c00381{bottom:233.600000pt;}
.y52_c00381{bottom:234.240000pt;}
.y56_c00381{bottom:234.880000pt;}
.y50_c00381{bottom:271.360000pt;}
.y51_c00381{bottom:272.640000pt;}
.y4f_c00381{bottom:274.560000pt;}
.y47_c00381{bottom:317.440000pt;}
.y4d_c00381{bottom:320.000000pt;}
.y46_c00381{bottom:321.280000pt;}
.y4e_c00381{bottom:321.920000pt;}
.y45_c00381{bottom:356.480000pt;}
.y4b_c00381{bottom:358.400000pt;}
.y44_c00381{bottom:359.040000pt;}
.y4c_c00381{bottom:360.320000pt;}
.y43_c00381{bottom:394.880000pt;}
.y4a_c00381{bottom:395.520000pt;}
.y49_c00381{bottom:396.160000pt;}
.y42_c00381{bottom:396.800000pt;}
.y40_c00381{bottom:433.280000pt;}
.y41_c00381{bottom:433.920000pt;}
.y48_c00381{bottom:434.560000pt;}
.y3f_c00381{bottom:435.840000pt;}
.y3e_c00381{bottom:471.680000pt;}
.y3d_c00381{bottom:472.320000pt;}
.y3a_c00381{bottom:473.600000pt;}
.y3c_c00381{bottom:474.240000pt;}
.y3b_c00381{bottom:475.520000pt;}
.y33_c00381{bottom:510.080000pt;}
.y39_c00381{bottom:511.360000pt;}
.y32_c00381{bottom:512.640000pt;}
.y31_c00381{bottom:548.480000pt;}
.y38_c00381{bottom:549.760000pt;}
.y30_c00381{bottom:550.400000pt;}
.y2d_c00381{bottom:586.880000pt;}
.y2f_c00381{bottom:587.520000pt;}
.y36_c00381{bottom:588.160000pt;}
.y2c_c00381{bottom:588.800000pt;}
.y37_c00381{bottom:589.440000pt;}
.y2e_c00381{bottom:590.720000pt;}
.y26_c00381{bottom:625.920000pt;}
.y34_c00381{bottom:627.200000pt;}
.y25_c00381{bottom:627.840000pt;}
.y35_c00381{bottom:628.480000pt;}
.y24_c00381{bottom:664.320000pt;}
.y2b_c00381{bottom:665.600000pt;}
.y23_c00381{bottom:666.240000pt;}
.y20_c00381{bottom:702.720000pt;}
.y22_c00381{bottom:703.360000pt;}
.y29_c00381{bottom:704.640000pt;}
.y1f_c00381{bottom:705.280000pt;}
.y21_c00381{bottom:705.920000pt;}
.y2a_c00381{bottom:706.560000pt;}
.y1a_c00381{bottom:741.120000pt;}
.y1e_c00381{bottom:741.760000pt;}
.y28_c00381{bottom:743.040000pt;}
.y19_c00381{bottom:743.680000pt;}
.y1d_c00381{bottom:744.320000pt;}
.y1b_c00381{bottom:744.960000pt;}
.y1c_c00381{bottom:745.600000pt;}
.y18_c00381{bottom:779.520000pt;}
.y16_c00381{bottom:781.440000pt;}
.y27_c00381{bottom:782.080000pt;}
.y17_c00381{bottom:783.360000pt;}
.y15_c00381{bottom:817.920000pt;}
.y11_c00381{bottom:819.840000pt;}
.y14_c00381{bottom:821.760000pt;}
.y13_c00381{bottom:822.400000pt;}
.y12_c00381{bottom:823.040000pt;}
.ye_c00381{bottom:856.320000pt;}
.yb_c00381{bottom:858.240000pt;}
.y10_c00381{bottom:858.880000pt;}
.yf_c00381{bottom:859.520000pt;}
.yd_c00381{bottom:860.160000pt;}
.yc_c00381{bottom:860.800000pt;}
.y7_c00381{bottom:894.720000pt;}
.ya_c00381{bottom:896.000000pt;}
.y6_c00381{bottom:896.640000pt;}
.y9_c00381{bottom:897.280000pt;}
.y8_c00381{bottom:898.560000pt;}
.y2_c00381{bottom:928.640000pt;}
.y3_c00381{bottom:935.040000pt;}
.y4_c00381{bottom:935.680000pt;}
.y5_c00381{bottom:936.960000pt;}
.y1_c00381{bottom:967.680000pt;}
.h12_c00381{height:16.126250pt;}
.hd_c00381{height:29.948750pt;}
.he_c00381{height:32.252500pt;}
.hc_c00381{height:36.860000pt;}
.hf_c00381{height:39.163750pt;}
.h6_c00381{height:41.467500pt;}
.hb_c00381{height:43.771250pt;}
.h5_c00381{height:46.075000pt;}
.h4_c00381{height:48.378750pt;}
.h11_c00381{height:48.635000pt;}
.h10_c00381{height:50.682500pt;}
.h7_c00381{height:52.986250pt;}
.ha_c00381{height:55.290000pt;}
.h9_c00381{height:57.593750pt;}
.h2_c00381{height:59.897500pt;}
.h8_c00381{height:62.201250pt;}
.h3_c00381{height:71.416250pt;}
.h1_c00381{height:1032.666667pt;}
.h0_c00381{height:1032.960000pt;}
.w0_c00381{width:678.400000pt;}
.w1_c00381{width:678.666667pt;}
.x0_c00381{left:0.000000pt;}
.x6_c00381{left:42.240000pt;}
.x1e_c00381{left:43.520000pt;}
.x2_c00381{left:90.240000pt;}
.xf_c00381{left:109.440000pt;}
.x15_c00381{left:110.720000pt;}
.x3_c00381{left:129.280000pt;}
.x7_c00381{left:147.840000pt;}
.x10_c00381{left:149.120000pt;}
.x25_c00381{left:157.440000pt;}
.x4_c00381{left:159.360000pt;}
.x27_c00381{left:176.640000pt;}
.x11_c00381{left:186.880000pt;}
.x5_c00381{left:195.840000pt;}
.x18_c00381{left:216.320000pt;}
.x2f_c00381{left:225.920000pt;}
.x29_c00381{left:234.240000pt;}
.x16_c00381{left:236.160000pt;}
.x20_c00381{left:244.480000pt;}
.x8_c00381{left:245.760000pt;}
.x26_c00381{left:254.080000pt;}
.x30_c00381{left:255.360000pt;}
.x19_c00381{left:263.040000pt;}
.x17_c00381{left:272.640000pt;}
.x2d_c00381{left:284.160000pt;}
.x1c_c00381{left:292.480000pt;}
.x9_c00381{left:293.760000pt;}
.x1a_c00381{left:302.720000pt;}
.x2e_c00381{left:322.560000pt;}
.x31_c00381{left:323.840000pt;}
.x32_c00381{left:332.160000pt;}
.x1b_c00381{left:340.480000pt;}
.x21_c00381{left:341.760000pt;}
.x1d_c00381{left:350.080000pt;}
.x33_c00381{left:368.640000pt;}
.xa_c00381{left:369.920000pt;}
.x22_c00381{left:388.480000pt;}
.x2a_c00381{left:399.360000pt;}
.x34_c00381{left:408.320000pt;}
.xb_c00381{left:418.560000pt;}
.x2b_c00381{left:447.360000pt;}
.x37_c00381{left:455.680000pt;}
.x35_c00381{left:456.960000pt;}
.x28_c00381{left:485.760000pt;}
.x2c_c00381{left:503.040000pt;}
.x1f_c00381{left:504.960000pt;}
.x14_c00381{left:506.240000pt;}
.x24_c00381{left:533.760000pt;}
.xc_c00381{left:535.040000pt;}
.xd_c00381{left:562.560000pt;}
.x12_c00381{left:564.480000pt;}
.x36_c00381{left:572.160000pt;}
.x1_c00381{left:592.640000pt;}
.x23_c00381{left:600.960000pt;}
.x13_c00381{left:602.240000pt;}
.xe_c00381{left:620.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4047ea21369c3d9cdb6fcf63.woff2')format("woff");}.ff1_c00382{font-family:ff1_c00382;line-height:1.109863;font-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_c00382{transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00382{transform:matrix(0.175550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175550,0.000000,0.000000,0.250000,0,0);}
.m20_c00382{transform:matrix(0.178950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178950,0.000000,0.000000,0.250000,0,0);}
.m37_c00382{transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);}
.m30_c00382{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m2e_c00382{transform:matrix(0.248350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248350,0.000000,0.000000,0.250000,0,0);}
.mf_c00382{transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);}
.m13_c00382{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m19_c00382{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);}
.m34_c00382{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);}
.m31_c00382{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m18_c00382{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_c00382{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1_c00382{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m27_c00382{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m12_c00382{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.me_c00382{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);}
.m1e_c00382{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.ma_c00382{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m26_c00382{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m22_c00382{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00382{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00382{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mc_c00382{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m36_c00382{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m5_c00382{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00382{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00382{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m21_c00382{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.md_c00382{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m4_c00382{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m7_c00382{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m2_c00382{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.mb_c00382{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);}
.m38_c00382{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m16_c00382{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);}
.m3b_c00382{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m29_c00382{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m32_c00382{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m0_c00382{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00382{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);}
.m33_c00382{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);}
.m2b_c00382{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);}
.m14_c00382{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00382{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);}
.m9_c00382{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);}
.m1b_c00382{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m11_c00382{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);}
.m3_c00382{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_c00382{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m39_c00382{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m8_c00382{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m6_c00382{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00382{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m35_c00382{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);}
.m3d_c00382{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m24_c00382{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);}
.m15_c00382{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m28_c00382{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m23_c00382{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m25_c00382{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00382{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.v0_c00382{vertical-align:0.000000px;}
.v1_c00382{vertical-align:2.880000px;}
.v2_c00382{vertical-align:8.640000px;}
.ls0_c00382{letter-spacing:0.000000px;}
.sc__c00382{text-shadow:none;}
.sc0_c00382{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00382{-webkit-text-stroke:0px transparent;}
.sc0_c00382{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00382{word-spacing:-0.978480px;}
.ws2_c00382{word-spacing:0.000000px;}
.ws0_c00382{word-spacing:33.022560px;}
.fc0_c00382{color:transparent;}
.fsd_c00382{font-size:37.440000px;}
.fsf_c00382{font-size:40.320000px;}
.fse_c00382{font-size:46.080000px;}
.fs1_c00382{font-size:48.960000px;}
.fs3_c00382{font-size:51.840000px;}
.fs6_c00382{font-size:54.720000px;}
.fsb_c00382{font-size:57.600000px;}
.fs2_c00382{font-size:60.480000px;}
.fsc_c00382{font-size:63.360000px;}
.fs4_c00382{font-size:66.240000px;}
.fs7_c00382{font-size:69.120000px;}
.fs5_c00382{font-size:72.000000px;}
.fs0_c00382{font-size:74.880000px;}
.fs8_c00382{font-size:77.760000px;}
.fsa_c00382{font-size:95.040000px;}
.fs9_c00382{font-size:100.800000px;}
.y0_c00382{bottom:0.000000px;}
.y61_c00382{bottom:74.160000px;}
.y5f_c00382{bottom:75.600000px;}
.y60_c00382{bottom:77.040000px;}
.y56_c00382{bottom:105.840000px;}
.y57_c00382{bottom:106.560000px;}
.y58_c00382{bottom:108.000000px;}
.y5a_c00382{bottom:109.440000px;}
.y55_c00382{bottom:110.160000px;}
.y59_c00382{bottom:110.880000px;}
.y54_c00382{bottom:149.040000px;}
.y51_c00382{bottom:181.440000px;}
.y53_c00382{bottom:183.600000px;}
.y5d_c00382{bottom:184.320000px;}
.y50_c00382{bottom:185.040000px;}
.y52_c00382{bottom:185.760000px;}
.y5e_c00382{bottom:186.480000px;}
.y5c_c00382{bottom:187.200000px;}
.y4c_c00382{bottom:224.640000px;}
.y4f_c00382{bottom:225.360000px;}
.y4d_c00382{bottom:226.800000px;}
.y5b_c00382{bottom:227.520000px;}
.y4b_c00382{bottom:228.240000px;}
.y4e_c00382{bottom:228.960000px;}
.y4a_c00382{bottom:323.280000px;}
.y44_c00382{bottom:355.680000px;}
.y47_c00382{bottom:356.400000px;}
.y46_c00382{bottom:357.120000px;}
.y43_c00382{bottom:357.840000px;}
.y49_c00382{bottom:358.560000px;}
.y45_c00382{bottom:359.280000px;}
.y48_c00382{bottom:360.000000px;}
.y40_c00382{bottom:398.160000px;}
.y3c_c00382{bottom:398.880000px;}
.y3e_c00382{bottom:399.600000px;}
.y3d_c00382{bottom:400.320000px;}
.y41_c00382{bottom:401.040000px;}
.y3b_c00382{bottom:401.760000px;}
.y3f_c00382{bottom:402.480000px;}
.y42_c00382{bottom:403.920000px;}
.y39_c00382{bottom:442.080000px;}
.y35_c00382{bottom:442.800000px;}
.y37_c00382{bottom:443.520000px;}
.y3a_c00382{bottom:444.240000px;}
.y34_c00382{bottom:444.960000px;}
.y38_c00382{bottom:445.680000px;}
.y36_c00382{bottom:446.400000px;}
.y33_c00382{bottom:477.360000px;}
.y2f_c00382{bottom:486.000000px;}
.y32_c00382{bottom:486.720000px;}
.y2e_c00382{bottom:488.160000px;}
.y31_c00382{bottom:488.880000px;}
.y30_c00382{bottom:489.600000px;}
.y2b_c00382{bottom:529.200000px;}
.y2d_c00382{bottom:529.920000px;}
.y2a_c00382{bottom:530.640000px;}
.y2c_c00382{bottom:532.080000px;}
.y26_c00382{bottom:572.400000px;}
.y28_c00382{bottom:573.840000px;}
.y25_c00382{bottom:574.560000px;}
.y27_c00382{bottom:575.280000px;}
.y29_c00382{bottom:576.000000px;}
.y23_c00382{bottom:614.880000px;}
.y22_c00382{bottom:616.320000px;}
.y24_c00382{bottom:618.480000px;}
.y21_c00382{bottom:668.880000px;}
.y20_c00382{bottom:670.320000px;}
.y1e_c00382{bottom:711.360000px;}
.y1f_c00382{bottom:712.800000px;}
.y1d_c00382{bottom:713.520000px;}
.y1a_c00382{bottom:745.920000px;}
.y1b_c00382{bottom:756.720000px;}
.y1c_c00382{bottom:758.160000px;}
.y17_c00382{bottom:808.560000px;}
.y16_c00382{bottom:809.280000px;}
.y18_c00382{bottom:810.000000px;}
.y19_c00382{bottom:812.160000px;}
.y13_c00382{bottom:843.120000px;}
.y14_c00382{bottom:853.920000px;}
.y15_c00382{bottom:855.360000px;}
.y12_c00382{bottom:898.560000px;}
.yf_c00382{bottom:905.760000px;}
.ye_c00382{bottom:907.200000px;}
.y11_c00382{bottom:909.360000px;}
.y10_c00382{bottom:910.080000px;}
.yb_c00382{bottom:948.960000px;}
.yc_c00382{bottom:949.680000px;}
.ya_c00382{bottom:950.400000px;}
.yd_c00382{bottom:952.560000px;}
.y8_c00382{bottom:992.160000px;}
.y6_c00382{bottom:992.880000px;}
.y5_c00382{bottom:993.600000px;}
.y9_c00382{bottom:995.760000px;}
.y7_c00382{bottom:996.480000px;}
.y3_c00382{bottom:1037.520000px;}
.y4_c00382{bottom:1038.960000px;}
.y2_c00382{bottom:1039.680000px;}
.y1_c00382{bottom:1069.200000px;}
.hf_c00382{height:33.692344px;}
.h12_c00382{height:36.284062px;}
.h11_c00382{height:41.467500px;}
.h3_c00382{height:44.059219px;}
.h5_c00382{height:46.650937px;}
.h8_c00382{height:49.242656px;}
.h10_c00382{height:51.834375px;}
.h4_c00382{height:54.426094px;}
.he_c00382{height:57.017812px;}
.h6_c00382{height:59.609531px;}
.hd_c00382{height:60.474375px;}
.h9_c00382{height:62.201250px;}
.h7_c00382{height:64.792969px;}
.h2_c00382{height:67.384687px;}
.ha_c00382{height:69.976406px;}
.hc_c00382{height:85.526719px;}
.hb_c00382{height:90.710156px;}
.h1_c00382{height:1149.750000px;}
.h0_c00382{height:1149.840000px;}
.w0_c00382{width:744.480000px;}
.w1_c00382{width:744.750000px;}
.x0_c00382{left:0.000000px;}
.x5_c00382{left:38.880000px;}
.x27_c00382{left:40.320000px;}
.x2b_c00382{left:42.480000px;}
.x2_c00382{left:92.880000px;}
.x6_c00382{left:114.480000px;}
.x3_c00382{left:125.280000px;}
.x14_c00382{left:135.360000px;}
.x17_c00382{left:147.600000px;}
.x18_c00382{left:189.360000px;}
.x4_c00382{left:199.440000px;}
.x2e_c00382{left:200.880000px;}
.x15_c00382{left:210.240000px;}
.x7_c00382{left:211.680000px;}
.x22_c00382{left:254.880000px;}
.x1a_c00382{left:256.320000px;}
.x1e_c00382{left:265.680000px;}
.x8_c00382{left:267.120000px;}
.xe_c00382{left:298.080000px;}
.x23_c00382{left:309.600000px;}
.x19_c00382{left:318.960000px;}
.x28_c00382{left:341.280000px;}
.x9_c00382{left:352.080000px;}
.x24_c00382{left:353.520000px;}
.x1f_c00382{left:362.880000px;}
.xf_c00382{left:395.280000px;}
.x2a_c00382{left:396.720000px;}
.xa_c00382{left:406.800000px;}
.x20_c00382{left:417.600000px;}
.x1b_c00382{left:428.400000px;}
.x25_c00382{left:439.200000px;}
.xb_c00382{left:450.000000px;}
.x21_c00382{left:460.080000px;}
.x1c_c00382{left:471.600000px;}
.x26_c00382{left:493.200000px;}
.x10_c00382{left:504.720000px;}
.x1d_c00382{left:514.800000px;}
.x2c_c00382{left:546.480000px;}
.x13_c00382{left:548.640000px;}
.x16_c00382{left:558.000000px;}
.xc_c00382{left:559.440000px;}
.x2d_c00382{left:590.400000px;}
.x11_c00382{left:591.840000px;}
.x29_c00382{left:624.240000px;}
.x1_c00382{left:625.680000px;}
.x12_c00382{left:635.040000px;}
.xd_c00382{left:667.440000px;}
@media print{
.v0_c00382{vertical-align:0.000000pt;}
.v1_c00382{vertical-align:2.560000pt;}
.v2_c00382{vertical-align:7.680000pt;}
.ls0_c00382{letter-spacing:0.000000pt;}
.ws1_c00382{word-spacing:-0.869760pt;}
.ws2_c00382{word-spacing:0.000000pt;}
.ws0_c00382{word-spacing:29.353387pt;}
.fsd_c00382{font-size:33.280000pt;}
.fsf_c00382{font-size:35.840000pt;}
.fse_c00382{font-size:40.960000pt;}
.fs1_c00382{font-size:43.520000pt;}
.fs3_c00382{font-size:46.080000pt;}
.fs6_c00382{font-size:48.640000pt;}
.fsb_c00382{font-size:51.200000pt;}
.fs2_c00382{font-size:53.760000pt;}
.fsc_c00382{font-size:56.320000pt;}
.fs4_c00382{font-size:58.880000pt;}
.fs7_c00382{font-size:61.440000pt;}
.fs5_c00382{font-size:64.000000pt;}
.fs0_c00382{font-size:66.560000pt;}
.fs8_c00382{font-size:69.120000pt;}
.fsa_c00382{font-size:84.480000pt;}
.fs9_c00382{font-size:89.600000pt;}
.y0_c00382{bottom:0.000000pt;}
.y61_c00382{bottom:65.920000pt;}
.y5f_c00382{bottom:67.200000pt;}
.y60_c00382{bottom:68.480000pt;}
.y56_c00382{bottom:94.080000pt;}
.y57_c00382{bottom:94.720000pt;}
.y58_c00382{bottom:96.000000pt;}
.y5a_c00382{bottom:97.280000pt;}
.y55_c00382{bottom:97.920000pt;}
.y59_c00382{bottom:98.560000pt;}
.y54_c00382{bottom:132.480000pt;}
.y51_c00382{bottom:161.280000pt;}
.y53_c00382{bottom:163.200000pt;}
.y5d_c00382{bottom:163.840000pt;}
.y50_c00382{bottom:164.480000pt;}
.y52_c00382{bottom:165.120000pt;}
.y5e_c00382{bottom:165.760000pt;}
.y5c_c00382{bottom:166.400000pt;}
.y4c_c00382{bottom:199.680000pt;}
.y4f_c00382{bottom:200.320000pt;}
.y4d_c00382{bottom:201.600000pt;}
.y5b_c00382{bottom:202.240000pt;}
.y4b_c00382{bottom:202.880000pt;}
.y4e_c00382{bottom:203.520000pt;}
.y4a_c00382{bottom:287.360000pt;}
.y44_c00382{bottom:316.160000pt;}
.y47_c00382{bottom:316.800000pt;}
.y46_c00382{bottom:317.440000pt;}
.y43_c00382{bottom:318.080000pt;}
.y49_c00382{bottom:318.720000pt;}
.y45_c00382{bottom:319.360000pt;}
.y48_c00382{bottom:320.000000pt;}
.y40_c00382{bottom:353.920000pt;}
.y3c_c00382{bottom:354.560000pt;}
.y3e_c00382{bottom:355.200000pt;}
.y3d_c00382{bottom:355.840000pt;}
.y41_c00382{bottom:356.480000pt;}
.y3b_c00382{bottom:357.120000pt;}
.y3f_c00382{bottom:357.760000pt;}
.y42_c00382{bottom:359.040000pt;}
.y39_c00382{bottom:392.960000pt;}
.y35_c00382{bottom:393.600000pt;}
.y37_c00382{bottom:394.240000pt;}
.y3a_c00382{bottom:394.880000pt;}
.y34_c00382{bottom:395.520000pt;}
.y38_c00382{bottom:396.160000pt;}
.y36_c00382{bottom:396.800000pt;}
.y33_c00382{bottom:424.320000pt;}
.y2f_c00382{bottom:432.000000pt;}
.y32_c00382{bottom:432.640000pt;}
.y2e_c00382{bottom:433.920000pt;}
.y31_c00382{bottom:434.560000pt;}
.y30_c00382{bottom:435.200000pt;}
.y2b_c00382{bottom:470.400000pt;}
.y2d_c00382{bottom:471.040000pt;}
.y2a_c00382{bottom:471.680000pt;}
.y2c_c00382{bottom:472.960000pt;}
.y26_c00382{bottom:508.800000pt;}
.y28_c00382{bottom:510.080000pt;}
.y25_c00382{bottom:510.720000pt;}
.y27_c00382{bottom:511.360000pt;}
.y29_c00382{bottom:512.000000pt;}
.y23_c00382{bottom:546.560000pt;}
.y22_c00382{bottom:547.840000pt;}
.y24_c00382{bottom:549.760000pt;}
.y21_c00382{bottom:594.560000pt;}
.y20_c00382{bottom:595.840000pt;}
.y1e_c00382{bottom:632.320000pt;}
.y1f_c00382{bottom:633.600000pt;}
.y1d_c00382{bottom:634.240000pt;}
.y1a_c00382{bottom:663.040000pt;}
.y1b_c00382{bottom:672.640000pt;}
.y1c_c00382{bottom:673.920000pt;}
.y17_c00382{bottom:718.720000pt;}
.y16_c00382{bottom:719.360000pt;}
.y18_c00382{bottom:720.000000pt;}
.y19_c00382{bottom:721.920000pt;}
.y13_c00382{bottom:749.440000pt;}
.y14_c00382{bottom:759.040000pt;}
.y15_c00382{bottom:760.320000pt;}
.y12_c00382{bottom:798.720000pt;}
.yf_c00382{bottom:805.120000pt;}
.ye_c00382{bottom:806.400000pt;}
.y11_c00382{bottom:808.320000pt;}
.y10_c00382{bottom:808.960000pt;}
.yb_c00382{bottom:843.520000pt;}
.yc_c00382{bottom:844.160000pt;}
.ya_c00382{bottom:844.800000pt;}
.yd_c00382{bottom:846.720000pt;}
.y8_c00382{bottom:881.920000pt;}
.y6_c00382{bottom:882.560000pt;}
.y5_c00382{bottom:883.200000pt;}
.y9_c00382{bottom:885.120000pt;}
.y7_c00382{bottom:885.760000pt;}
.y3_c00382{bottom:922.240000pt;}
.y4_c00382{bottom:923.520000pt;}
.y2_c00382{bottom:924.160000pt;}
.y1_c00382{bottom:950.400000pt;}
.hf_c00382{height:29.948750pt;}
.h12_c00382{height:32.252500pt;}
.h11_c00382{height:36.860000pt;}
.h3_c00382{height:39.163750pt;}
.h5_c00382{height:41.467500pt;}
.h8_c00382{height:43.771250pt;}
.h10_c00382{height:46.075000pt;}
.h4_c00382{height:48.378750pt;}
.he_c00382{height:50.682500pt;}
.h6_c00382{height:52.986250pt;}
.hd_c00382{height:53.755000pt;}
.h9_c00382{height:55.290000pt;}
.h7_c00382{height:57.593750pt;}
.h2_c00382{height:59.897500pt;}
.ha_c00382{height:62.201250pt;}
.hc_c00382{height:76.023750pt;}
.hb_c00382{height:80.631250pt;}
.h1_c00382{height:1022.000000pt;}
.h0_c00382{height:1022.080000pt;}
.w0_c00382{width:661.760000pt;}
.w1_c00382{width:662.000000pt;}
.x0_c00382{left:0.000000pt;}
.x5_c00382{left:34.560000pt;}
.x27_c00382{left:35.840000pt;}
.x2b_c00382{left:37.760000pt;}
.x2_c00382{left:82.560000pt;}
.x6_c00382{left:101.760000pt;}
.x3_c00382{left:111.360000pt;}
.x14_c00382{left:120.320000pt;}
.x17_c00382{left:131.200000pt;}
.x18_c00382{left:168.320000pt;}
.x4_c00382{left:177.280000pt;}
.x2e_c00382{left:178.560000pt;}
.x15_c00382{left:186.880000pt;}
.x7_c00382{left:188.160000pt;}
.x22_c00382{left:226.560000pt;}
.x1a_c00382{left:227.840000pt;}
.x1e_c00382{left:236.160000pt;}
.x8_c00382{left:237.440000pt;}
.xe_c00382{left:264.960000pt;}
.x23_c00382{left:275.200000pt;}
.x19_c00382{left:283.520000pt;}
.x28_c00382{left:303.360000pt;}
.x9_c00382{left:312.960000pt;}
.x24_c00382{left:314.240000pt;}
.x1f_c00382{left:322.560000pt;}
.xf_c00382{left:351.360000pt;}
.x2a_c00382{left:352.640000pt;}
.xa_c00382{left:361.600000pt;}
.x20_c00382{left:371.200000pt;}
.x1b_c00382{left:380.800000pt;}
.x25_c00382{left:390.400000pt;}
.xb_c00382{left:400.000000pt;}
.x21_c00382{left:408.960000pt;}
.x1c_c00382{left:419.200000pt;}
.x26_c00382{left:438.400000pt;}
.x10_c00382{left:448.640000pt;}
.x1d_c00382{left:457.600000pt;}
.x2c_c00382{left:485.760000pt;}
.x13_c00382{left:487.680000pt;}
.x16_c00382{left:496.000000pt;}
.xc_c00382{left:497.280000pt;}
.x2d_c00382{left:524.800000pt;}
.x11_c00382{left:526.080000pt;}
.x29_c00382{left:554.880000pt;}
.x1_c00382{left:556.160000pt;}
.x12_c00382{left:564.480000pt;}
.xd_c00382{left:593.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_de4addfaef7ba8a558eb6ec1.woff2')format("woff");}.ff1_c00383{font-family:ff1_c00383;line-height:1.109863;font-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_c00383{transform:matrix(0.142675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142675,0.000000,0.000000,0.250000,0,0);}
.m4e_c00383{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m11_c00383{transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);}
.m21_c00383{transform:matrix(0.202325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202325,0.000000,0.000000,0.250000,0,0);}
.m30_c00383{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m57_c00383{transform:matrix(0.221200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221200,0.000000,0.000000,0.250000,0,0);}
.m53_c00383{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);}
.m4_c00383{transform:matrix(0.229175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229175,0.000000,0.000000,0.250000,0,0);}
.m20_c00383{transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);}
.m0_c00383{transform:matrix(0.233800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233800,0.000000,0.000000,0.250000,0,0);}
.m12_c00383{transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);}
.m4a_c00383{transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);}
.m59_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);}
.m6_c00383{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00383{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);}
.m43_c00383{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_c00383{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);}
.m45_c00383{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);}
.m55_c00383{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_c00383{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);}
.m2c_c00383{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00383{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m58_c00383{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00383{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.me_c00383{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);}
.m2a_c00383{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m24_c00383{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m42_c00383{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m54_c00383{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m2_c00383{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00383{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00383{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00383{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m48_c00383{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m7_c00383{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.ma_c00383{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m17_c00383{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mb_c00383{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00383{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00383{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m51_c00383{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m10_c00383{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);}
.m32_c00383{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_c00383{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m3_c00383{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m28_c00383{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m8_c00383{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00383{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);}
.m2b_c00383{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m34_c00383{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m14_c00383{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);}
.m5_c00383{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m22_c00383{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m33_c00383{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);}
.m26_c00383{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);}
.m35_c00383{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_c00383{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00383{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.mc_c00383{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00383{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);}
.m37_c00383{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);}
.m23_c00383{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);}
.m3d_c00383{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00383{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_c00383{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00383{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m38_c00383{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m9_c00383{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m47_c00383{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m31_c00383{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m16_c00383{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00383{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);}
.m18_c00383{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00383{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m25_c00383{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);}
.m56_c00383{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);}
.m29_c00383{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m1_c00383{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m49_c00383{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00383{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);}
.m3a_c00383{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m15_c00383{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m39_c00383{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);}
.m36_c00383{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m27_c00383{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m44_c00383{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m50_c00383{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m40_c00383{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);}
.m46_c00383{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m52_c00383{transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);}
.v0_c00383{vertical-align:0.000000px;}
.ls0_c00383{letter-spacing:0.000000px;}
.sc__c00383{text-shadow:none;}
.sc0_c00383{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00383{-webkit-text-stroke:0px transparent;}
.sc0_c00383{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00383{word-spacing:0.000000px;}
.ws0_c00383{word-spacing:16.615757px;}
.fc0_c00383{color:transparent;}
.fs13_c00383{font-size:20.160000px;}
.fs2_c00383{font-size:25.920000px;}
.fs1_c00383{font-size:31.680000px;}
.fs3_c00383{font-size:34.560000px;}
.fs11_c00383{font-size:37.440000px;}
.fs12_c00383{font-size:40.320000px;}
.fsb_c00383{font-size:43.200000px;}
.fsf_c00383{font-size:46.080000px;}
.fs8_c00383{font-size:48.960000px;}
.fs6_c00383{font-size:51.840000px;}
.fsc_c00383{font-size:54.720000px;}
.fs9_c00383{font-size:57.600000px;}
.fs4_c00383{font-size:60.480000px;}
.fs7_c00383{font-size:63.360000px;}
.fs10_c00383{font-size:66.240000px;}
.fsd_c00383{font-size:69.120000px;}
.fs0_c00383{font-size:72.000000px;}
.fs5_c00383{font-size:74.880000px;}
.fsa_c00383{font-size:77.760000px;}
.fse_c00383{font-size:86.400000px;}
.y0_c00383{bottom:0.000000px;}
.y6f_c00383{bottom:78.480000px;}
.y71_c00383{bottom:81.360000px;}
.y70_c00383{bottom:82.080000px;}
.y72_c00383{bottom:82.800000px;}
.y6e_c00383{bottom:83.520000px;}
.y6c_c00383{bottom:122.400000px;}
.y6d_c00383{bottom:125.280000px;}
.y6b_c00383{bottom:126.000000px;}
.y6a_c00383{bottom:126.720000px;}
.y5e_c00383{bottom:165.600000px;}
.y60_c00383{bottom:167.760000px;}
.y5f_c00383{bottom:168.480000px;}
.y5c_c00383{bottom:169.200000px;}
.y5d_c00383{bottom:169.920000px;}
.y68_c00383{bottom:208.800000px;}
.y69_c00383{bottom:209.520000px;}
.y66_c00383{bottom:212.400000px;}
.y64_c00383{bottom:214.560000px;}
.y65_c00383{bottom:216.720000px;}
.y67_c00383{bottom:252.720000px;}
.y62_c00383{bottom:255.600000px;}
.y63_c00383{bottom:257.760000px;}
.y61_c00383{bottom:258.480000px;}
.y59_c00383{bottom:296.640000px;}
.y58_c00383{bottom:297.360000px;}
.y57_c00383{bottom:298.800000px;}
.y56_c00383{bottom:299.520000px;}
.y5a_c00383{bottom:300.240000px;}
.y53_c00383{bottom:327.600000px;}
.y55_c00383{bottom:329.040000px;}
.y54_c00383{bottom:329.760000px;}
.y51_c00383{bottom:330.480000px;}
.y5b_c00383{bottom:331.200000px;}
.y52_c00383{bottom:331.920000px;}
.y4c_c00383{bottom:372.960000px;}
.y50_c00383{bottom:373.680000px;}
.y4d_c00383{bottom:374.400000px;}
.y4e_c00383{bottom:375.120000px;}
.y4f_c00383{bottom:375.840000px;}
.y48_c00383{bottom:414.720000px;}
.y47_c00383{bottom:416.160000px;}
.y4b_c00383{bottom:416.880000px;}
.y45_c00383{bottom:417.600000px;}
.y46_c00383{bottom:418.320000px;}
.y49_c00383{bottom:419.040000px;}
.y4a_c00383{bottom:419.760000px;}
.y44_c00383{bottom:458.640000px;}
.y43_c00383{bottom:459.360000px;}
.y42_c00383{bottom:461.520000px;}
.y41_c00383{bottom:491.040000px;}
.y32_c00383{bottom:491.760000px;}
.y30_c00383{bottom:492.480000px;}
.y40_c00383{bottom:493.920000px;}
.y31_c00383{bottom:494.640000px;}
.y3d_c00383{bottom:534.240000px;}
.y3e_c00383{bottom:534.960000px;}
.y3c_c00383{bottom:535.680000px;}
.y2e_c00383{bottom:536.400000px;}
.y3f_c00383{bottom:537.840000px;}
.y2f_c00383{bottom:538.560000px;}
.y24_c00383{bottom:578.880000px;}
.y21_c00383{bottom:579.600000px;}
.y23_c00383{bottom:580.320000px;}
.y22_c00383{bottom:581.040000px;}
.y2d_c00383{bottom:581.760000px;}
.y3b_c00383{bottom:621.360000px;}
.y2a_c00383{bottom:622.080000px;}
.y39_c00383{bottom:622.800000px;}
.y3a_c00383{bottom:624.240000px;}
.y2c_c00383{bottom:624.960000px;}
.y2b_c00383{bottom:625.680000px;}
.y28_c00383{bottom:665.280000px;}
.y29_c00383{bottom:666.000000px;}
.y27_c00383{bottom:666.720000px;}
.y38_c00383{bottom:667.440000px;}
.y37_c00383{bottom:668.160000px;}
.y34_c00383{bottom:707.040000px;}
.y35_c00383{bottom:707.760000px;}
.y33_c00383{bottom:708.480000px;}
.y25_c00383{bottom:709.200000px;}
.y36_c00383{bottom:711.360000px;}
.y26_c00383{bottom:712.080000px;}
.y1d_c00383{bottom:751.680000px;}
.y1e_c00383{bottom:752.400000px;}
.y20_c00383{bottom:753.120000px;}
.y1f_c00383{bottom:754.560000px;}
.y1a_c00383{bottom:788.400000px;}
.y1b_c00383{bottom:795.600000px;}
.y1c_c00383{bottom:797.760000px;}
.y17_c00383{bottom:847.440000px;}
.y16_c00383{bottom:848.880000px;}
.y15_c00383{bottom:890.640000px;}
.y14_c00383{bottom:891.360000px;}
.y18_c00383{bottom:892.080000px;}
.y19_c00383{bottom:892.800000px;}
.y13_c00383{bottom:933.840000px;}
.y11_c00383{bottom:934.560000px;}
.y12_c00383{bottom:937.440000px;}
.yd_c00383{bottom:965.520000px;}
.ye_c00383{bottom:966.960000px;}
.yc_c00383{bottom:967.680000px;}
.y10_c00383{bottom:968.400000px;}
.yf_c00383{bottom:969.840000px;}
.yb_c00383{bottom:1009.440000px;}
.y9_c00383{bottom:1010.160000px;}
.y8_c00383{bottom:1010.880000px;}
.ya_c00383{bottom:1013.040000px;}
.y5_c00383{bottom:1041.840000px;}
.y4_c00383{bottom:1042.560000px;}
.y6_c00383{bottom:1043.280000px;}
.y7_c00383{bottom:1044.720000px;}
.y3_c00383{bottom:1110.960000px;}
.y1_c00383{bottom:1112.400000px;}
.y2_c00383{bottom:1121.760000px;}
.h14_c00383{height:18.142031px;}
.h3_c00383{height:23.325469px;}
.h2_c00383{height:28.508906px;}
.h4_c00383{height:31.100625px;}
.h12_c00383{height:33.692344px;}
.h13_c00383{height:36.284062px;}
.hc_c00383{height:38.875781px;}
.h10_c00383{height:41.467500px;}
.h9_c00383{height:44.059219px;}
.h7_c00383{height:46.650937px;}
.hd_c00383{height:49.242656px;}
.ha_c00383{height:51.834375px;}
.h5_c00383{height:54.426094px;}
.h8_c00383{height:57.017812px;}
.h11_c00383{height:59.609531px;}
.he_c00383{height:62.201250px;}
.h1_c00383{height:64.792969px;}
.h6_c00383{height:67.384687px;}
.hb_c00383{height:69.976406px;}
.hf_c00383{height:77.751563px;}
.h0_c00383{height:1152.000000px;}
.w1_c00383{width:772.500000px;}
.w0_c00383{width:772.560000px;}
.x0_c00383{left:0.000000px;}
.x5_c00383{left:60.480000px;}
.x19_c00383{left:62.640000px;}
.x28_c00383{left:64.080000px;}
.x14_c00383{left:113.760000px;}
.x6_c00383{left:136.800000px;}
.x2c_c00383{left:138.240000px;}
.x15_c00383{left:146.880000px;}
.x2d_c00383{left:168.480000px;}
.x17_c00383{left:179.280000px;}
.x22_c00383{left:180.720000px;}
.x11_c00383{left:190.800000px;}
.x2e_c00383{left:213.840000px;}
.x2f_c00383{left:223.920000px;}
.x7_c00383{left:233.280000px;}
.x16_c00383{left:244.080000px;}
.x26_c00383{left:245.520000px;}
.x30_c00383{left:278.640000px;}
.x8_c00383{left:288.000000px;}
.x29_c00383{left:289.440000px;}
.x1d_c00383{left:298.800000px;}
.x31_c00383{left:321.120000px;}
.xc_c00383{left:331.200000px;}
.x20_c00383{left:332.640000px;}
.x1e_c00383{left:342.720000px;}
.x18_c00383{left:352.800000px;}
.x1f_c00383{left:374.400000px;}
.x9_c00383{left:385.200000px;}
.x23_c00383{left:428.400000px;}
.x21_c00383{left:429.840000px;}
.xa_c00383{left:439.920000px;}
.x10_c00383{left:482.400000px;}
.x24_c00383{left:483.840000px;}
.xb_c00383{left:524.880000px;}
.x2a_c00383{left:560.160000px;}
.x2b_c00383{left:569.520000px;}
.x13_c00383{left:581.040000px;}
.x12_c00383{left:612.000000px;}
.xd_c00383{left:613.440000px;}
.xe_c00383{left:645.840000px;}
.x27_c00383{left:647.280000px;}
.x25_c00383{left:656.640000px;}
.x1a_c00383{left:678.960000px;}
.x1_c00383{left:680.400000px;}
.xf_c00383{left:689.040000px;}
.x1b_c00383{left:690.480000px;}
.x2_c00383{left:698.400000px;}
.x1c_c00383{left:710.640000px;}
.x4_c00383{left:716.400000px;}
.x3_c00383{left:719.280000px;}
@media print{
.v0_c00383{vertical-align:0.000000pt;}
.ls0_c00383{letter-spacing:0.000000pt;}
.ws1_c00383{word-spacing:0.000000pt;}
.ws0_c00383{word-spacing:14.769562pt;}
.fs13_c00383{font-size:17.920000pt;}
.fs2_c00383{font-size:23.040000pt;}
.fs1_c00383{font-size:28.160000pt;}
.fs3_c00383{font-size:30.720000pt;}
.fs11_c00383{font-size:33.280000pt;}
.fs12_c00383{font-size:35.840000pt;}
.fsb_c00383{font-size:38.400000pt;}
.fsf_c00383{font-size:40.960000pt;}
.fs8_c00383{font-size:43.520000pt;}
.fs6_c00383{font-size:46.080000pt;}
.fsc_c00383{font-size:48.640000pt;}
.fs9_c00383{font-size:51.200000pt;}
.fs4_c00383{font-size:53.760000pt;}
.fs7_c00383{font-size:56.320000pt;}
.fs10_c00383{font-size:58.880000pt;}
.fsd_c00383{font-size:61.440000pt;}
.fs0_c00383{font-size:64.000000pt;}
.fs5_c00383{font-size:66.560000pt;}
.fsa_c00383{font-size:69.120000pt;}
.fse_c00383{font-size:76.800000pt;}
.y0_c00383{bottom:0.000000pt;}
.y6f_c00383{bottom:69.760000pt;}
.y71_c00383{bottom:72.320000pt;}
.y70_c00383{bottom:72.960000pt;}
.y72_c00383{bottom:73.600000pt;}
.y6e_c00383{bottom:74.240000pt;}
.y6c_c00383{bottom:108.800000pt;}
.y6d_c00383{bottom:111.360000pt;}
.y6b_c00383{bottom:112.000000pt;}
.y6a_c00383{bottom:112.640000pt;}
.y5e_c00383{bottom:147.200000pt;}
.y60_c00383{bottom:149.120000pt;}
.y5f_c00383{bottom:149.760000pt;}
.y5c_c00383{bottom:150.400000pt;}
.y5d_c00383{bottom:151.040000pt;}
.y68_c00383{bottom:185.600000pt;}
.y69_c00383{bottom:186.240000pt;}
.y66_c00383{bottom:188.800000pt;}
.y64_c00383{bottom:190.720000pt;}
.y65_c00383{bottom:192.640000pt;}
.y67_c00383{bottom:224.640000pt;}
.y62_c00383{bottom:227.200000pt;}
.y63_c00383{bottom:229.120000pt;}
.y61_c00383{bottom:229.760000pt;}
.y59_c00383{bottom:263.680000pt;}
.y58_c00383{bottom:264.320000pt;}
.y57_c00383{bottom:265.600000pt;}
.y56_c00383{bottom:266.240000pt;}
.y5a_c00383{bottom:266.880000pt;}
.y53_c00383{bottom:291.200000pt;}
.y55_c00383{bottom:292.480000pt;}
.y54_c00383{bottom:293.120000pt;}
.y51_c00383{bottom:293.760000pt;}
.y5b_c00383{bottom:294.400000pt;}
.y52_c00383{bottom:295.040000pt;}
.y4c_c00383{bottom:331.520000pt;}
.y50_c00383{bottom:332.160000pt;}
.y4d_c00383{bottom:332.800000pt;}
.y4e_c00383{bottom:333.440000pt;}
.y4f_c00383{bottom:334.080000pt;}
.y48_c00383{bottom:368.640000pt;}
.y47_c00383{bottom:369.920000pt;}
.y4b_c00383{bottom:370.560000pt;}
.y45_c00383{bottom:371.200000pt;}
.y46_c00383{bottom:371.840000pt;}
.y49_c00383{bottom:372.480000pt;}
.y4a_c00383{bottom:373.120000pt;}
.y44_c00383{bottom:407.680000pt;}
.y43_c00383{bottom:408.320000pt;}
.y42_c00383{bottom:410.240000pt;}
.y41_c00383{bottom:436.480000pt;}
.y32_c00383{bottom:437.120000pt;}
.y30_c00383{bottom:437.760000pt;}
.y40_c00383{bottom:439.040000pt;}
.y31_c00383{bottom:439.680000pt;}
.y3d_c00383{bottom:474.880000pt;}
.y3e_c00383{bottom:475.520000pt;}
.y3c_c00383{bottom:476.160000pt;}
.y2e_c00383{bottom:476.800000pt;}
.y3f_c00383{bottom:478.080000pt;}
.y2f_c00383{bottom:478.720000pt;}
.y24_c00383{bottom:514.560000pt;}
.y21_c00383{bottom:515.200000pt;}
.y23_c00383{bottom:515.840000pt;}
.y22_c00383{bottom:516.480000pt;}
.y2d_c00383{bottom:517.120000pt;}
.y3b_c00383{bottom:552.320000pt;}
.y2a_c00383{bottom:552.960000pt;}
.y39_c00383{bottom:553.600000pt;}
.y3a_c00383{bottom:554.880000pt;}
.y2c_c00383{bottom:555.520000pt;}
.y2b_c00383{bottom:556.160000pt;}
.y28_c00383{bottom:591.360000pt;}
.y29_c00383{bottom:592.000000pt;}
.y27_c00383{bottom:592.640000pt;}
.y38_c00383{bottom:593.280000pt;}
.y37_c00383{bottom:593.920000pt;}
.y34_c00383{bottom:628.480000pt;}
.y35_c00383{bottom:629.120000pt;}
.y33_c00383{bottom:629.760000pt;}
.y25_c00383{bottom:630.400000pt;}
.y36_c00383{bottom:632.320000pt;}
.y26_c00383{bottom:632.960000pt;}
.y1d_c00383{bottom:668.160000pt;}
.y1e_c00383{bottom:668.800000pt;}
.y20_c00383{bottom:669.440000pt;}
.y1f_c00383{bottom:670.720000pt;}
.y1a_c00383{bottom:700.800000pt;}
.y1b_c00383{bottom:707.200000pt;}
.y1c_c00383{bottom:709.120000pt;}
.y17_c00383{bottom:753.280000pt;}
.y16_c00383{bottom:754.560000pt;}
.y15_c00383{bottom:791.680000pt;}
.y14_c00383{bottom:792.320000pt;}
.y18_c00383{bottom:792.960000pt;}
.y19_c00383{bottom:793.600000pt;}
.y13_c00383{bottom:830.080000pt;}
.y11_c00383{bottom:830.720000pt;}
.y12_c00383{bottom:833.280000pt;}
.yd_c00383{bottom:858.240000pt;}
.ye_c00383{bottom:859.520000pt;}
.yc_c00383{bottom:860.160000pt;}
.y10_c00383{bottom:860.800000pt;}
.yf_c00383{bottom:862.080000pt;}
.yb_c00383{bottom:897.280000pt;}
.y9_c00383{bottom:897.920000pt;}
.y8_c00383{bottom:898.560000pt;}
.ya_c00383{bottom:900.480000pt;}
.y5_c00383{bottom:926.080000pt;}
.y4_c00383{bottom:926.720000pt;}
.y6_c00383{bottom:927.360000pt;}
.y7_c00383{bottom:928.640000pt;}
.y3_c00383{bottom:987.520000pt;}
.y1_c00383{bottom:988.800000pt;}
.y2_c00383{bottom:997.120000pt;}
.h14_c00383{height:16.126250pt;}
.h3_c00383{height:20.733750pt;}
.h2_c00383{height:25.341250pt;}
.h4_c00383{height:27.645000pt;}
.h12_c00383{height:29.948750pt;}
.h13_c00383{height:32.252500pt;}
.hc_c00383{height:34.556250pt;}
.h10_c00383{height:36.860000pt;}
.h9_c00383{height:39.163750pt;}
.h7_c00383{height:41.467500pt;}
.hd_c00383{height:43.771250pt;}
.ha_c00383{height:46.075000pt;}
.h5_c00383{height:48.378750pt;}
.h8_c00383{height:50.682500pt;}
.h11_c00383{height:52.986250pt;}
.he_c00383{height:55.290000pt;}
.h1_c00383{height:57.593750pt;}
.h6_c00383{height:59.897500pt;}
.hb_c00383{height:62.201250pt;}
.hf_c00383{height:69.112500pt;}
.h0_c00383{height:1024.000000pt;}
.w1_c00383{width:686.666667pt;}
.w0_c00383{width:686.720000pt;}
.x0_c00383{left:0.000000pt;}
.x5_c00383{left:53.760000pt;}
.x19_c00383{left:55.680000pt;}
.x28_c00383{left:56.960000pt;}
.x14_c00383{left:101.120000pt;}
.x6_c00383{left:121.600000pt;}
.x2c_c00383{left:122.880000pt;}
.x15_c00383{left:130.560000pt;}
.x2d_c00383{left:149.760000pt;}
.x17_c00383{left:159.360000pt;}
.x22_c00383{left:160.640000pt;}
.x11_c00383{left:169.600000pt;}
.x2e_c00383{left:190.080000pt;}
.x2f_c00383{left:199.040000pt;}
.x7_c00383{left:207.360000pt;}
.x16_c00383{left:216.960000pt;}
.x26_c00383{left:218.240000pt;}
.x30_c00383{left:247.680000pt;}
.x8_c00383{left:256.000000pt;}
.x29_c00383{left:257.280000pt;}
.x1d_c00383{left:265.600000pt;}
.x31_c00383{left:285.440000pt;}
.xc_c00383{left:294.400000pt;}
.x20_c00383{left:295.680000pt;}
.x1e_c00383{left:304.640000pt;}
.x18_c00383{left:313.600000pt;}
.x1f_c00383{left:332.800000pt;}
.x9_c00383{left:342.400000pt;}
.x23_c00383{left:380.800000pt;}
.x21_c00383{left:382.080000pt;}
.xa_c00383{left:391.040000pt;}
.x10_c00383{left:428.800000pt;}
.x24_c00383{left:430.080000pt;}
.xb_c00383{left:466.560000pt;}
.x2a_c00383{left:497.920000pt;}
.x2b_c00383{left:506.240000pt;}
.x13_c00383{left:516.480000pt;}
.x12_c00383{left:544.000000pt;}
.xd_c00383{left:545.280000pt;}
.xe_c00383{left:574.080000pt;}
.x27_c00383{left:575.360000pt;}
.x25_c00383{left:583.680000pt;}
.x1a_c00383{left:603.520000pt;}
.x1_c00383{left:604.800000pt;}
.xf_c00383{left:612.480000pt;}
.x1b_c00383{left:613.760000pt;}
.x2_c00383{left:620.800000pt;}
.x1c_c00383{left:631.680000pt;}
.x4_c00383{left:636.800000pt;}
.x3_c00383{left:639.360000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9ccaddd533cc5a9140c4c5f4.woff2')format("woff");}.ff1_c00384{font-family:ff1_c00384;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m34_c00384{transform:matrix(0.205350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205350,0.000000,0.000000,0.250000,0,0);}
.m2f_c00384{transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);}
.m2b_c00384{transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);}
.m29_c00384{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);}
.m1_c00384{transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);}
.m20_c00384{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);}
.m2e_c00384{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m17_c00384{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m26_c00384{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m21_c00384{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);}
.m25_c00384{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mf_c00384{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m4_c00384{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m3_c00384{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m10_c00384{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m5_c00384{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.ma_c00384{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);}
.m28_c00384{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m14_c00384{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m7_c00384{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00384{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00384{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mc_c00384{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.md_c00384{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m35_c00384{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m33_c00384{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00384{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m22_c00384{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m27_c00384{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00384{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m9_c00384{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00384{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m23_c00384{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.mb_c00384{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m18_c00384{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.me_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);}
.m1a_c00384{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m31_c00384{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m16_c00384{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m8_c00384{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);}
.m0_c00384{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00384{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m24_c00384{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);}
.m15_c00384{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);}
.m12_c00384{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00384{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m11_c00384{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);}
.m30_c00384{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m19_c00384{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);}
.m13_c00384{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m6_c00384{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m2_c00384{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m32_c00384{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00384{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.v0_c00384{vertical-align:0.000000px;}
.v1_c00384{vertical-align:5.760000px;}
.ls0_c00384{letter-spacing:0.000000px;}
.sc__c00384{text-shadow:none;}
.sc0_c00384{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00384{-webkit-text-stroke:0px transparent;}
.sc0_c00384{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00384{word-spacing:0.000000px;}
.ws1_c00384{word-spacing:14.957055px;}
.ws0_c00384{word-spacing:19.521600px;}
.fc0_c00384{color:transparent;}
.fs9_c00384{font-size:37.440000px;}
.fs7_c00384{font-size:48.960000px;}
.fs2_c00384{font-size:51.840000px;}
.fs6_c00384{font-size:54.720000px;}
.fs8_c00384{font-size:57.600000px;}
.fs0_c00384{font-size:60.480000px;}
.fs5_c00384{font-size:63.360000px;}
.fsa_c00384{font-size:66.240000px;}
.fs3_c00384{font-size:69.120000px;}
.fs1_c00384{font-size:72.000000px;}
.fs4_c00384{font-size:74.880000px;}
.fsb_c00384{font-size:77.760000px;}
.y0_c00384{bottom:0.000000px;}
.y3e_c00384{bottom:47.520000px;}
.y40_c00384{bottom:48.240000px;}
.y68_c00384{bottom:49.680000px;}
.y67_c00384{bottom:50.400000px;}
.y3f_c00384{bottom:51.120000px;}
.y3d_c00384{bottom:51.840000px;}
.y3c_c00384{bottom:90.720000px;}
.y65_c00384{bottom:93.600000px;}
.y64_c00384{bottom:94.320000px;}
.y3b_c00384{bottom:95.040000px;}
.y66_c00384{bottom:95.760000px;}
.y39_c00384{bottom:133.200000px;}
.y63_c00384{bottom:136.800000px;}
.y38_c00384{bottom:137.520000px;}
.y3a_c00384{bottom:138.240000px;}
.y37_c00384{bottom:177.120000px;}
.y36_c00384{bottom:180.720000px;}
.y61_c00384{bottom:181.440000px;}
.y62_c00384{bottom:182.880000px;}
.y35_c00384{bottom:221.040000px;}
.y34_c00384{bottom:223.920000px;}
.y60_c00384{bottom:224.640000px;}
.y32_c00384{bottom:264.240000px;}
.y33_c00384{bottom:264.960000px;}
.y31_c00384{bottom:267.840000px;}
.y5e_c00384{bottom:268.560000px;}
.y5f_c00384{bottom:269.280000px;}
.y30_c00384{bottom:308.160000px;}
.y5d_c00384{bottom:309.600000px;}
.y5c_c00384{bottom:310.320000px;}
.y2f_c00384{bottom:311.040000px;}
.y2c_c00384{bottom:351.360000px;}
.y2e_c00384{bottom:352.080000px;}
.y5b_c00384{bottom:352.800000px;}
.y59_c00384{bottom:353.520000px;}
.y2b_c00384{bottom:354.240000px;}
.y2d_c00384{bottom:354.960000px;}
.y5a_c00384{bottom:355.680000px;}
.y2a_c00384{bottom:394.560000px;}
.y58_c00384{bottom:396.720000px;}
.y29_c00384{bottom:397.440000px;}
.y28_c00384{bottom:437.760000px;}
.y57_c00384{bottom:439.920000px;}
.y27_c00384{bottom:440.640000px;}
.y26_c00384{bottom:480.960000px;}
.y25_c00384{bottom:482.400000px;}
.y55_c00384{bottom:483.120000px;}
.y56_c00384{bottom:484.560000px;}
.y20_c00384{bottom:523.440000px;}
.y24_c00384{bottom:524.160000px;}
.y23_c00384{bottom:524.880000px;}
.y1f_c00384{bottom:525.600000px;}
.y22_c00384{bottom:527.040000px;}
.y21_c00384{bottom:527.760000px;}
.y54_c00384{bottom:528.480000px;}
.y1e_c00384{bottom:566.640000px;}
.y52_c00384{bottom:568.080000px;}
.y1d_c00384{bottom:568.800000px;}
.y53_c00384{bottom:570.240000px;}
.y1c_c00384{bottom:609.840000px;}
.y1b_c00384{bottom:610.560000px;}
.y51_c00384{bottom:611.280000px;}
.y19_c00384{bottom:612.000000px;}
.y1a_c00384{bottom:613.440000px;}
.y50_c00384{bottom:614.160000px;}
.y18_c00384{bottom:652.320000px;}
.y4f_c00384{bottom:653.760000px;}
.y17_c00384{bottom:655.200000px;}
.y15_c00384{bottom:696.240000px;}
.y14_c00384{bottom:698.400000px;}
.y16_c00384{bottom:699.120000px;}
.y4e_c00384{bottom:700.560000px;}
.y13_c00384{bottom:739.440000px;}
.y12_c00384{bottom:740.880000px;}
.y4d_c00384{bottom:741.600000px;}
.y4c_c00384{bottom:743.040000px;}
.y11_c00384{bottom:782.640000px;}
.y49_c00384{bottom:784.080000px;}
.y10_c00384{bottom:784.800000px;}
.y4b_c00384{bottom:786.240000px;}
.y4a_c00384{bottom:786.960000px;}
.yf_c00384{bottom:825.840000px;}
.ye_c00384{bottom:827.280000px;}
.y47_c00384{bottom:828.720000px;}
.y48_c00384{bottom:829.440000px;}
.yd_c00384{bottom:869.040000px;}
.yc_c00384{bottom:870.480000px;}
.y46_c00384{bottom:871.200000px;}
.y45_c00384{bottom:873.360000px;}
.yb_c00384{bottom:912.960000px;}
.ya_c00384{bottom:913.680000px;}
.y43_c00384{bottom:914.400000px;}
.y44_c00384{bottom:915.840000px;}
.y9_c00384{bottom:955.440000px;}
.y8_c00384{bottom:956.880000px;}
.y5_c00384{bottom:997.920000px;}
.y6_c00384{bottom:999.360000px;}
.y4_c00384{bottom:1000.080000px;}
.y7_c00384{bottom:1001.520000px;}
.y2_c00384{bottom:1041.840000px;}
.y1_c00384{bottom:1042.560000px;}
.y42_c00384{bottom:1044.000000px;}
.y3_c00384{bottom:1044.720000px;}
.y41_c00384{bottom:1107.360000px;}
.hb_c00384{height:33.692344px;}
.h9_c00384{height:44.059219px;}
.h4_c00384{height:46.650937px;}
.h8_c00384{height:49.242656px;}
.ha_c00384{height:51.834375px;}
.h2_c00384{height:54.426094px;}
.he_c00384{height:55.002656px;}
.h7_c00384{height:57.017812px;}
.hc_c00384{height:59.609531px;}
.h5_c00384{height:62.201250px;}
.h3_c00384{height:64.792969px;}
.h6_c00384{height:67.384687px;}
.hd_c00384{height:69.976406px;}
.h0_c00384{height:1157.040000px;}
.h1_c00384{height:1157.250000px;}
.w1_c00384{width:771.000000px;}
.w0_c00384{width:771.120000px;}
.x0_c00384{left:0.000000px;}
.x1_c00384{left:56.160000px;}
.x10_c00384{left:57.600000px;}
.x2_c00384{left:130.320000px;}
.xb_c00384{left:174.960000px;}
.xd_c00384{left:216.720000px;}
.xc_c00384{left:218.160000px;}
.x3_c00384{left:239.760000px;}
.x5_c00384{left:251.280000px;}
.x9_c00384{left:261.360000px;}
.x8_c00384{left:272.160000px;}
.x12_c00384{left:293.040000px;}
.x4_c00384{left:294.480000px;}
.x11_c00384{left:304.560000px;}
.xa_c00384{left:315.360000px;}
.x13_c00384{left:337.680000px;}
.xe_c00384{left:358.560000px;}
.x6_c00384{left:390.960000px;}
.x7_c00384{left:444.960000px;}
.xf_c00384{left:488.160000px;}
.x15_c00384{left:552.960000px;}
.x1a_c00384{left:554.400000px;}
.x16_c00384{left:574.560000px;}
.x1b_c00384{left:606.960000px;}
.x18_c00384{left:608.400000px;}
.x19_c00384{left:641.520000px;}
.x14_c00384{left:657.360000px;}
.x1d_c00384{left:682.560000px;}
.x17_c00384{left:684.000000px;}
.x1c_c00384{left:704.880000px;}
@media print{
.v0_c00384{vertical-align:0.000000pt;}
.v1_c00384{vertical-align:5.120000pt;}
.ls0_c00384{letter-spacing:0.000000pt;}
.ws2_c00384{word-spacing:0.000000pt;}
.ws1_c00384{word-spacing:13.295160pt;}
.ws0_c00384{word-spacing:17.352533pt;}
.fs9_c00384{font-size:33.280000pt;}
.fs7_c00384{font-size:43.520000pt;}
.fs2_c00384{font-size:46.080000pt;}
.fs6_c00384{font-size:48.640000pt;}
.fs8_c00384{font-size:51.200000pt;}
.fs0_c00384{font-size:53.760000pt;}
.fs5_c00384{font-size:56.320000pt;}
.fsa_c00384{font-size:58.880000pt;}
.fs3_c00384{font-size:61.440000pt;}
.fs1_c00384{font-size:64.000000pt;}
.fs4_c00384{font-size:66.560000pt;}
.fsb_c00384{font-size:69.120000pt;}
.y0_c00384{bottom:0.000000pt;}
.y3e_c00384{bottom:42.240000pt;}
.y40_c00384{bottom:42.880000pt;}
.y68_c00384{bottom:44.160000pt;}
.y67_c00384{bottom:44.800000pt;}
.y3f_c00384{bottom:45.440000pt;}
.y3d_c00384{bottom:46.080000pt;}
.y3c_c00384{bottom:80.640000pt;}
.y65_c00384{bottom:83.200000pt;}
.y64_c00384{bottom:83.840000pt;}
.y3b_c00384{bottom:84.480000pt;}
.y66_c00384{bottom:85.120000pt;}
.y39_c00384{bottom:118.400000pt;}
.y63_c00384{bottom:121.600000pt;}
.y38_c00384{bottom:122.240000pt;}
.y3a_c00384{bottom:122.880000pt;}
.y37_c00384{bottom:157.440000pt;}
.y36_c00384{bottom:160.640000pt;}
.y61_c00384{bottom:161.280000pt;}
.y62_c00384{bottom:162.560000pt;}
.y35_c00384{bottom:196.480000pt;}
.y34_c00384{bottom:199.040000pt;}
.y60_c00384{bottom:199.680000pt;}
.y32_c00384{bottom:234.880000pt;}
.y33_c00384{bottom:235.520000pt;}
.y31_c00384{bottom:238.080000pt;}
.y5e_c00384{bottom:238.720000pt;}
.y5f_c00384{bottom:239.360000pt;}
.y30_c00384{bottom:273.920000pt;}
.y5d_c00384{bottom:275.200000pt;}
.y5c_c00384{bottom:275.840000pt;}
.y2f_c00384{bottom:276.480000pt;}
.y2c_c00384{bottom:312.320000pt;}
.y2e_c00384{bottom:312.960000pt;}
.y5b_c00384{bottom:313.600000pt;}
.y59_c00384{bottom:314.240000pt;}
.y2b_c00384{bottom:314.880000pt;}
.y2d_c00384{bottom:315.520000pt;}
.y5a_c00384{bottom:316.160000pt;}
.y2a_c00384{bottom:350.720000pt;}
.y58_c00384{bottom:352.640000pt;}
.y29_c00384{bottom:353.280000pt;}
.y28_c00384{bottom:389.120000pt;}
.y57_c00384{bottom:391.040000pt;}
.y27_c00384{bottom:391.680000pt;}
.y26_c00384{bottom:427.520000pt;}
.y25_c00384{bottom:428.800000pt;}
.y55_c00384{bottom:429.440000pt;}
.y56_c00384{bottom:430.720000pt;}
.y20_c00384{bottom:465.280000pt;}
.y24_c00384{bottom:465.920000pt;}
.y23_c00384{bottom:466.560000pt;}
.y1f_c00384{bottom:467.200000pt;}
.y22_c00384{bottom:468.480000pt;}
.y21_c00384{bottom:469.120000pt;}
.y54_c00384{bottom:469.760000pt;}
.y1e_c00384{bottom:503.680000pt;}
.y52_c00384{bottom:504.960000pt;}
.y1d_c00384{bottom:505.600000pt;}
.y53_c00384{bottom:506.880000pt;}
.y1c_c00384{bottom:542.080000pt;}
.y1b_c00384{bottom:542.720000pt;}
.y51_c00384{bottom:543.360000pt;}
.y19_c00384{bottom:544.000000pt;}
.y1a_c00384{bottom:545.280000pt;}
.y50_c00384{bottom:545.920000pt;}
.y18_c00384{bottom:579.840000pt;}
.y4f_c00384{bottom:581.120000pt;}
.y17_c00384{bottom:582.400000pt;}
.y15_c00384{bottom:618.880000pt;}
.y14_c00384{bottom:620.800000pt;}
.y16_c00384{bottom:621.440000pt;}
.y4e_c00384{bottom:622.720000pt;}
.y13_c00384{bottom:657.280000pt;}
.y12_c00384{bottom:658.560000pt;}
.y4d_c00384{bottom:659.200000pt;}
.y4c_c00384{bottom:660.480000pt;}
.y11_c00384{bottom:695.680000pt;}
.y49_c00384{bottom:696.960000pt;}
.y10_c00384{bottom:697.600000pt;}
.y4b_c00384{bottom:698.880000pt;}
.y4a_c00384{bottom:699.520000pt;}
.yf_c00384{bottom:734.080000pt;}
.ye_c00384{bottom:735.360000pt;}
.y47_c00384{bottom:736.640000pt;}
.y48_c00384{bottom:737.280000pt;}
.yd_c00384{bottom:772.480000pt;}
.yc_c00384{bottom:773.760000pt;}
.y46_c00384{bottom:774.400000pt;}
.y45_c00384{bottom:776.320000pt;}
.yb_c00384{bottom:811.520000pt;}
.ya_c00384{bottom:812.160000pt;}
.y43_c00384{bottom:812.800000pt;}
.y44_c00384{bottom:814.080000pt;}
.y9_c00384{bottom:849.280000pt;}
.y8_c00384{bottom:850.560000pt;}
.y5_c00384{bottom:887.040000pt;}
.y6_c00384{bottom:888.320000pt;}
.y4_c00384{bottom:888.960000pt;}
.y7_c00384{bottom:890.240000pt;}
.y2_c00384{bottom:926.080000pt;}
.y1_c00384{bottom:926.720000pt;}
.y42_c00384{bottom:928.000000pt;}
.y3_c00384{bottom:928.640000pt;}
.y41_c00384{bottom:984.320000pt;}
.hb_c00384{height:29.948750pt;}
.h9_c00384{height:39.163750pt;}
.h4_c00384{height:41.467500pt;}
.h8_c00384{height:43.771250pt;}
.ha_c00384{height:46.075000pt;}
.h2_c00384{height:48.378750pt;}
.he_c00384{height:48.891250pt;}
.h7_c00384{height:50.682500pt;}
.hc_c00384{height:52.986250pt;}
.h5_c00384{height:55.290000pt;}
.h3_c00384{height:57.593750pt;}
.h6_c00384{height:59.897500pt;}
.hd_c00384{height:62.201250pt;}
.h0_c00384{height:1028.480000pt;}
.h1_c00384{height:1028.666667pt;}
.w1_c00384{width:685.333333pt;}
.w0_c00384{width:685.440000pt;}
.x0_c00384{left:0.000000pt;}
.x1_c00384{left:49.920000pt;}
.x10_c00384{left:51.200000pt;}
.x2_c00384{left:115.840000pt;}
.xb_c00384{left:155.520000pt;}
.xd_c00384{left:192.640000pt;}
.xc_c00384{left:193.920000pt;}
.x3_c00384{left:213.120000pt;}
.x5_c00384{left:223.360000pt;}
.x9_c00384{left:232.320000pt;}
.x8_c00384{left:241.920000pt;}
.x12_c00384{left:260.480000pt;}
.x4_c00384{left:261.760000pt;}
.x11_c00384{left:270.720000pt;}
.xa_c00384{left:280.320000pt;}
.x13_c00384{left:300.160000pt;}
.xe_c00384{left:318.720000pt;}
.x6_c00384{left:347.520000pt;}
.x7_c00384{left:395.520000pt;}
.xf_c00384{left:433.920000pt;}
.x15_c00384{left:491.520000pt;}
.x1a_c00384{left:492.800000pt;}
.x16_c00384{left:510.720000pt;}
.x1b_c00384{left:539.520000pt;}
.x18_c00384{left:540.800000pt;}
.x19_c00384{left:570.240000pt;}
.x14_c00384{left:584.320000pt;}
.x1d_c00384{left:606.720000pt;}
.x17_c00384{left:608.000000pt;}
.x1c_c00384{left:626.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4f58a3800f19cc49cacd6ab2.woff2')format("woff");}.ff1_c00385{font-family:ff1_c00385;line-height:1.109863;font-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_c00385{transform:matrix(0.171425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171425,0.000000,0.000000,0.250000,0,0);}
.m3c_c00385{transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);}
.m31_c00385{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00385{transform:matrix(0.222350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222350,0.000000,0.000000,0.250000,0,0);}
.m1_c00385{transform:matrix(0.224450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224450,0.000000,0.000000,0.250000,0,0);}
.m35_c00385{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_c00385{transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);}
.m41_c00385{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m6_c00385{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);}
.m3b_c00385{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.md_c00385{transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);}
.m1c_c00385{transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);}
.m3e_c00385{transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);}
.m17_c00385{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);}
.m28_c00385{transform:matrix(0.245325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245325,0.000000,0.000000,0.250000,0,0);}
.m33_c00385{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.me_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);}
.m8_c00385{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m25_c00385{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);}
.m24_c00385{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m15_c00385{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);}
.m20_c00385{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_c00385{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m3_c00385{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00385{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_c00385{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00385{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00385{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);}
.m39_c00385{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);}
.m37_c00385{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mb_c00385{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m32_c00385{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m11_c00385{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m9_c00385{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m36_c00385{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m38_c00385{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m40_c00385{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m30_c00385{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m5_c00385{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m29_c00385{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00385{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mf_c00385{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m19_c00385{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m34_c00385{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.ma_c00385{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00385{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);}
.m23_c00385{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);}
.m42_c00385{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);}
.m2b_c00385{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m2e_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);}
.m27_c00385{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m14_c00385{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.mc_c00385{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);}
.m0_c00385{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m26_c00385{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);}
.m16_c00385{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_c00385{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m4_c00385{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m18_c00385{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00385{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m21_c00385{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00385{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);}
.m12_c00385{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m10_c00385{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m22_c00385{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m2_c00385{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00385{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);}
.v1_c00385{vertical-align:-2.880000px;}
.v0_c00385{vertical-align:0.000000px;}
.ls1_c00385{letter-spacing:0.000000px;}
.ls0_c00385{letter-spacing:39.817680px;}
.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;}
.fc0_c00385{color:transparent;}
.fs2_c00385{font-size:34.560000px;}
.fsa_c00385{font-size:48.960000px;}
.fs7_c00385{font-size:51.840000px;}
.fsb_c00385{font-size:54.720000px;}
.fs4_c00385{font-size:57.600000px;}
.fs0_c00385{font-size:60.480000px;}
.fs8_c00385{font-size:63.360000px;}
.fs6_c00385{font-size:66.240000px;}
.fsc_c00385{font-size:69.120000px;}
.fs3_c00385{font-size:72.000000px;}
.fs1_c00385{font-size:74.880000px;}
.fs5_c00385{font-size:77.760000px;}
.fs9_c00385{font-size:100.800000px;}
.y0_c00385{bottom:0.000000px;}
.y3d_c00385{bottom:89.280000px;}
.y3e_c00385{bottom:90.000000px;}
.y68_c00385{bottom:92.880000px;}
.y3c_c00385{bottom:93.600000px;}
.y69_c00385{bottom:94.320000px;}
.y3b_c00385{bottom:95.040000px;}
.y3a_c00385{bottom:133.200000px;}
.y66_c00385{bottom:136.800000px;}
.y39_c00385{bottom:137.520000px;}
.y67_c00385{bottom:138.960000px;}
.y38_c00385{bottom:176.400000px;}
.y64_c00385{bottom:179.280000px;}
.y65_c00385{bottom:180.000000px;}
.y37_c00385{bottom:180.720000px;}
.y36_c00385{bottom:219.600000px;}
.y35_c00385{bottom:222.480000px;}
.y63_c00385{bottom:224.640000px;}
.y34_c00385{bottom:262.080000px;}
.y61_c00385{bottom:264.960000px;}
.y62_c00385{bottom:265.680000px;}
.y33_c00385{bottom:266.400000px;}
.y60_c00385{bottom:268.560000px;}
.y32_c00385{bottom:305.280000px;}
.y5e_c00385{bottom:308.160000px;}
.y31_c00385{bottom:308.880000px;}
.y5d_c00385{bottom:310.320000px;}
.y5f_c00385{bottom:311.040000px;}
.y2f_c00385{bottom:348.480000px;}
.y30_c00385{bottom:349.200000px;}
.y5b_c00385{bottom:351.360000px;}
.y2e_c00385{bottom:352.080000px;}
.y5c_c00385{bottom:353.520000px;}
.y2d_c00385{bottom:391.680000px;}
.y59_c00385{bottom:394.560000px;}
.y2c_c00385{bottom:395.280000px;}
.y5a_c00385{bottom:396.720000px;}
.y2a_c00385{bottom:434.880000px;}
.y2b_c00385{bottom:435.600000px;}
.y57_c00385{bottom:437.040000px;}
.y58_c00385{bottom:437.760000px;}
.y29_c00385{bottom:438.480000px;}
.y56_c00385{bottom:440.640000px;}
.y26_c00385{bottom:478.800000px;}
.y27_c00385{bottom:480.240000px;}
.y55_c00385{bottom:480.960000px;}
.y25_c00385{bottom:481.680000px;}
.y28_c00385{bottom:483.120000px;}
.y54_c00385{bottom:483.840000px;}
.y24_c00385{bottom:522.000000px;}
.y53_c00385{bottom:524.160000px;}
.y23_c00385{bottom:524.880000px;}
.y52_c00385{bottom:526.320000px;}
.y22_c00385{bottom:565.920000px;}
.y51_c00385{bottom:567.360000px;}
.y21_c00385{bottom:568.080000px;}
.y1f_c00385{bottom:609.120000px;}
.y1e_c00385{bottom:610.560000px;}
.y50_c00385{bottom:611.280000px;}
.y1d_c00385{bottom:612.000000px;}
.y20_c00385{bottom:612.720000px;}
.y1b_c00385{bottom:652.320000px;}
.y4f_c00385{bottom:653.760000px;}
.y1a_c00385{bottom:654.480000px;}
.y1c_c00385{bottom:655.920000px;}
.y19_c00385{bottom:695.520000px;}
.y4e_c00385{bottom:696.960000px;}
.y18_c00385{bottom:697.680000px;}
.y4d_c00385{bottom:699.840000px;}
.y17_c00385{bottom:731.520000px;}
.y13_c00385{bottom:738.720000px;}
.y16_c00385{bottom:740.160000px;}
.y12_c00385{bottom:740.880000px;}
.y14_c00385{bottom:742.320000px;}
.y15_c00385{bottom:743.040000px;}
.y10_c00385{bottom:781.920000px;}
.y11_c00385{bottom:782.640000px;}
.yf_c00385{bottom:783.360000px;}
.ye_c00385{bottom:825.120000px;}
.y4b_c00385{bottom:825.840000px;}
.yd_c00385{bottom:826.560000px;}
.y4c_c00385{bottom:828.000000px;}
.yc_c00385{bottom:867.600000px;}
.y4a_c00385{bottom:868.320000px;}
.yb_c00385{bottom:869.040000px;}
.y49_c00385{bottom:869.760000px;}
.y9_c00385{bottom:910.080000px;}
.ya_c00385{bottom:910.800000px;}
.y48_c00385{bottom:911.520000px;}
.y8_c00385{bottom:912.240000px;}
.y7_c00385{bottom:953.280000px;}
.y47_c00385{bottom:954.000000px;}
.y46_c00385{bottom:954.720000px;}
.y6_c00385{bottom:956.160000px;}
.y5_c00385{bottom:996.480000px;}
.y43_c00385{bottom:997.920000px;}
.y4_c00385{bottom:998.640000px;}
.y45_c00385{bottom:999.360000px;}
.y44_c00385{bottom:1000.080000px;}
.y2_c00385{bottom:1040.400000px;}
.y1_c00385{bottom:1041.120000px;}
.y41_c00385{bottom:1041.840000px;}
.y42_c00385{bottom:1042.560000px;}
.y3_c00385{bottom:1044.720000px;}
.y3f_c00385{bottom:1100.880000px;}
.y40_c00385{bottom:1101.600000px;}
.h4_c00385{height:31.100625px;}
.hc_c00385{height:44.059219px;}
.h9_c00385{height:46.650937px;}
.hf_c00385{height:49.242656px;}
.h6_c00385{height:51.834375px;}
.h2_c00385{height:54.426094px;}
.ha_c00385{height:57.017812px;}
.hd_c00385{height:59.321250px;}
.h8_c00385{height:59.609531px;}
.he_c00385{height:62.201250px;}
.h5_c00385{height:64.792969px;}
.h3_c00385{height:67.384687px;}
.h7_c00385{height:69.976406px;}
.hb_c00385{height:90.710156px;}
.h0_c00385{height:1157.760000px;}
.h1_c00385{height:1158.000000px;}
.w1_c00385{width:772.500000px;}
.w0_c00385{width:772.560000px;}
.x0_c00385{left:0.000000px;}
.x1_c00385{left:59.040000px;}
.x12_c00385{left:60.480000px;}
.x13_c00385{left:61.920000px;}
.xd_c00385{left:92.160000px;}
.x2_c00385{left:133.920000px;}
.xe_c00385{left:144.720000px;}
.x14_c00385{left:177.120000px;}
.x7_c00385{left:220.320000px;}
.x3_c00385{left:221.760000px;}
.x6_c00385{left:264.240000px;}
.x4_c00385{left:265.680000px;}
.x5_c00385{left:275.760000px;}
.x10_c00385{left:296.640000px;}
.x8_c00385{left:318.960000px;}
.xf_c00385{left:329.040000px;}
.x11_c00385{left:352.080000px;}
.xb_c00385{left:371.520000px;}
.xc_c00385{left:415.440000px;}
.x9_c00385{left:447.840000px;}
.xa_c00385{left:500.400000px;}
.x20_c00385{left:544.320000px;}
.x17_c00385{left:555.840000px;}
.x19_c00385{left:557.280000px;}
.x1c_c00385{left:577.440000px;}
.x1f_c00385{left:609.840000px;}
.x1a_c00385{left:611.280000px;}
.x1b_c00385{left:643.680000px;}
.x15_c00385{left:654.480000px;}
.x1d_c00385{left:676.800000px;}
.x18_c00385{left:686.880000px;}
.x16_c00385{left:690.480000px;}
.x1e_c00385{left:707.760000px;}
@media print{
.v1_c00385{vertical-align:-2.560000pt;}
.v0_c00385{vertical-align:0.000000pt;}
.ls1_c00385{letter-spacing:0.000000pt;}
.ls0_c00385{letter-spacing:35.393493pt;}
.ws0_c00385{word-spacing:0.000000pt;}
.fs2_c00385{font-size:30.720000pt;}
.fsa_c00385{font-size:43.520000pt;}
.fs7_c00385{font-size:46.080000pt;}
.fsb_c00385{font-size:48.640000pt;}
.fs4_c00385{font-size:51.200000pt;}
.fs0_c00385{font-size:53.760000pt;}
.fs8_c00385{font-size:56.320000pt;}
.fs6_c00385{font-size:58.880000pt;}
.fsc_c00385{font-size:61.440000pt;}
.fs3_c00385{font-size:64.000000pt;}
.fs1_c00385{font-size:66.560000pt;}
.fs5_c00385{font-size:69.120000pt;}
.fs9_c00385{font-size:89.600000pt;}
.y0_c00385{bottom:0.000000pt;}
.y3d_c00385{bottom:79.360000pt;}
.y3e_c00385{bottom:80.000000pt;}
.y68_c00385{bottom:82.560000pt;}
.y3c_c00385{bottom:83.200000pt;}
.y69_c00385{bottom:83.840000pt;}
.y3b_c00385{bottom:84.480000pt;}
.y3a_c00385{bottom:118.400000pt;}
.y66_c00385{bottom:121.600000pt;}
.y39_c00385{bottom:122.240000pt;}
.y67_c00385{bottom:123.520000pt;}
.y38_c00385{bottom:156.800000pt;}
.y64_c00385{bottom:159.360000pt;}
.y65_c00385{bottom:160.000000pt;}
.y37_c00385{bottom:160.640000pt;}
.y36_c00385{bottom:195.200000pt;}
.y35_c00385{bottom:197.760000pt;}
.y63_c00385{bottom:199.680000pt;}
.y34_c00385{bottom:232.960000pt;}
.y61_c00385{bottom:235.520000pt;}
.y62_c00385{bottom:236.160000pt;}
.y33_c00385{bottom:236.800000pt;}
.y60_c00385{bottom:238.720000pt;}
.y32_c00385{bottom:271.360000pt;}
.y5e_c00385{bottom:273.920000pt;}
.y31_c00385{bottom:274.560000pt;}
.y5d_c00385{bottom:275.840000pt;}
.y5f_c00385{bottom:276.480000pt;}
.y2f_c00385{bottom:309.760000pt;}
.y30_c00385{bottom:310.400000pt;}
.y5b_c00385{bottom:312.320000pt;}
.y2e_c00385{bottom:312.960000pt;}
.y5c_c00385{bottom:314.240000pt;}
.y2d_c00385{bottom:348.160000pt;}
.y59_c00385{bottom:350.720000pt;}
.y2c_c00385{bottom:351.360000pt;}
.y5a_c00385{bottom:352.640000pt;}
.y2a_c00385{bottom:386.560000pt;}
.y2b_c00385{bottom:387.200000pt;}
.y57_c00385{bottom:388.480000pt;}
.y58_c00385{bottom:389.120000pt;}
.y29_c00385{bottom:389.760000pt;}
.y56_c00385{bottom:391.680000pt;}
.y26_c00385{bottom:425.600000pt;}
.y27_c00385{bottom:426.880000pt;}
.y55_c00385{bottom:427.520000pt;}
.y25_c00385{bottom:428.160000pt;}
.y28_c00385{bottom:429.440000pt;}
.y54_c00385{bottom:430.080000pt;}
.y24_c00385{bottom:464.000000pt;}
.y53_c00385{bottom:465.920000pt;}
.y23_c00385{bottom:466.560000pt;}
.y52_c00385{bottom:467.840000pt;}
.y22_c00385{bottom:503.040000pt;}
.y51_c00385{bottom:504.320000pt;}
.y21_c00385{bottom:504.960000pt;}
.y1f_c00385{bottom:541.440000pt;}
.y1e_c00385{bottom:542.720000pt;}
.y50_c00385{bottom:543.360000pt;}
.y1d_c00385{bottom:544.000000pt;}
.y20_c00385{bottom:544.640000pt;}
.y1b_c00385{bottom:579.840000pt;}
.y4f_c00385{bottom:581.120000pt;}
.y1a_c00385{bottom:581.760000pt;}
.y1c_c00385{bottom:583.040000pt;}
.y19_c00385{bottom:618.240000pt;}
.y4e_c00385{bottom:619.520000pt;}
.y18_c00385{bottom:620.160000pt;}
.y4d_c00385{bottom:622.080000pt;}
.y17_c00385{bottom:650.240000pt;}
.y13_c00385{bottom:656.640000pt;}
.y16_c00385{bottom:657.920000pt;}
.y12_c00385{bottom:658.560000pt;}
.y14_c00385{bottom:659.840000pt;}
.y15_c00385{bottom:660.480000pt;}
.y10_c00385{bottom:695.040000pt;}
.y11_c00385{bottom:695.680000pt;}
.yf_c00385{bottom:696.320000pt;}
.ye_c00385{bottom:733.440000pt;}
.y4b_c00385{bottom:734.080000pt;}
.yd_c00385{bottom:734.720000pt;}
.y4c_c00385{bottom:736.000000pt;}
.yc_c00385{bottom:771.200000pt;}
.y4a_c00385{bottom:771.840000pt;}
.yb_c00385{bottom:772.480000pt;}
.y49_c00385{bottom:773.120000pt;}
.y9_c00385{bottom:808.960000pt;}
.ya_c00385{bottom:809.600000pt;}
.y48_c00385{bottom:810.240000pt;}
.y8_c00385{bottom:810.880000pt;}
.y7_c00385{bottom:847.360000pt;}
.y47_c00385{bottom:848.000000pt;}
.y46_c00385{bottom:848.640000pt;}
.y6_c00385{bottom:849.920000pt;}
.y5_c00385{bottom:885.760000pt;}
.y43_c00385{bottom:887.040000pt;}
.y4_c00385{bottom:887.680000pt;}
.y45_c00385{bottom:888.320000pt;}
.y44_c00385{bottom:888.960000pt;}
.y2_c00385{bottom:924.800000pt;}
.y1_c00385{bottom:925.440000pt;}
.y41_c00385{bottom:926.080000pt;}
.y42_c00385{bottom:926.720000pt;}
.y3_c00385{bottom:928.640000pt;}
.y3f_c00385{bottom:978.560000pt;}
.y40_c00385{bottom:979.200000pt;}
.h4_c00385{height:27.645000pt;}
.hc_c00385{height:39.163750pt;}
.h9_c00385{height:41.467500pt;}
.hf_c00385{height:43.771250pt;}
.h6_c00385{height:46.075000pt;}
.h2_c00385{height:48.378750pt;}
.ha_c00385{height:50.682500pt;}
.hd_c00385{height:52.730000pt;}
.h8_c00385{height:52.986250pt;}
.he_c00385{height:55.290000pt;}
.h5_c00385{height:57.593750pt;}
.h3_c00385{height:59.897500pt;}
.h7_c00385{height:62.201250pt;}
.hb_c00385{height:80.631250pt;}
.h0_c00385{height:1029.120000pt;}
.h1_c00385{height:1029.333333pt;}
.w1_c00385{width:686.666667pt;}
.w0_c00385{width:686.720000pt;}
.x0_c00385{left:0.000000pt;}
.x1_c00385{left:52.480000pt;}
.x12_c00385{left:53.760000pt;}
.x13_c00385{left:55.040000pt;}
.xd_c00385{left:81.920000pt;}
.x2_c00385{left:119.040000pt;}
.xe_c00385{left:128.640000pt;}
.x14_c00385{left:157.440000pt;}
.x7_c00385{left:195.840000pt;}
.x3_c00385{left:197.120000pt;}
.x6_c00385{left:234.880000pt;}
.x4_c00385{left:236.160000pt;}
.x5_c00385{left:245.120000pt;}
.x10_c00385{left:263.680000pt;}
.x8_c00385{left:283.520000pt;}
.xf_c00385{left:292.480000pt;}
.x11_c00385{left:312.960000pt;}
.xb_c00385{left:330.240000pt;}
.xc_c00385{left:369.280000pt;}
.x9_c00385{left:398.080000pt;}
.xa_c00385{left:444.800000pt;}
.x20_c00385{left:483.840000pt;}
.x17_c00385{left:494.080000pt;}
.x19_c00385{left:495.360000pt;}
.x1c_c00385{left:513.280000pt;}
.x1f_c00385{left:542.080000pt;}
.x1a_c00385{left:543.360000pt;}
.x1b_c00385{left:572.160000pt;}
.x15_c00385{left:581.760000pt;}
.x1d_c00385{left:601.600000pt;}
.x18_c00385{left:610.560000pt;}
.x16_c00385{left:613.760000pt;}
.x1e_c00385{left:629.120000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_bd47a5b560238b714be95946.woff2')format("woff");}.ff1_c00386{font-family:ff1_c00386;line-height:1.109863;font-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_c00386{transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);}
.m2a_c00386{transform:matrix(0.187525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187525,0.000000,0.000000,0.250000,0,0);}
.m4e_c00386{transform:matrix(0.207700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207700,0.000000,0.000000,0.250000,0,0);}
.m35_c00386{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);}
.m26_c00386{transform:matrix(0.236800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236800,0.000000,0.000000,0.250000,0,0);}
.m19_c00386{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m4c_c00386{transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);}
.m1e_c00386{transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);}
.m39_c00386{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00386{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mc_c00386{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00386{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m10_c00386{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m40_c00386{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mf_c00386{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.ma_c00386{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);}
.m48_c00386{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m4_c00386{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00386{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m12_c00386{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1_c00386{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m13_c00386{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_c00386{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m47_c00386{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m34_c00386{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m5_c00386{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00386{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m49_c00386{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m2_c00386{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00386{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3_c00386{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00386{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00386{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m8_c00386{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m46_c00386{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.md_c00386{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m33_c00386{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m43_c00386{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m6_c00386{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m18_c00386{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m22_c00386{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);}
.m45_c00386{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);}
.m3c_c00386{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m0_c00386{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.mb_c00386{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);}
.m24_c00386{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00386{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m28_c00386{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);}
.me_c00386{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00386{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m29_c00386{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);}
.m21_c00386{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);}
.m37_c00386{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m41_c00386{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);}
.m2b_c00386{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m14_c00386{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);}
.m4a_c00386{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m44_c00386{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);}
.m38_c00386{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m25_c00386{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);}
.m27_c00386{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00386{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m20_c00386{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);}
.m9_c00386{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00386{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m42_c00386{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);}
.m7_c00386{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m23_c00386{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00386{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);}
.m15_c00386{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m11_c00386{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);}
.m3d_c00386{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m36_c00386{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m16_c00386{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m31_c00386{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00386{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m30_c00386{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m32_c00386{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);}
.m3b_c00386{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.v2_c00386{vertical-align:-11.520000px;}
.v0_c00386{vertical-align:0.000000px;}
.v1_c00386{vertical-align:5.760000px;}
.ls1_c00386{letter-spacing:0.000000px;}
.ls0_c00386{letter-spacing:83.257680px;}
.sc__c00386{text-shadow:none;}
.sc0_c00386{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00386{-webkit-text-stroke:0px transparent;}
.sc0_c00386{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00386{word-spacing:0.000000px;}
.ws0_c00386{word-spacing:757.710000px;}
.fc0_c00386{color:transparent;}
.fsb_c00386{font-size:34.560000px;}
.fsc_c00386{font-size:37.440000px;}
.fse_c00386{font-size:40.320000px;}
.fs7_c00386{font-size:46.080000px;}
.fs6_c00386{font-size:48.960000px;}
.fs3_c00386{font-size:51.840000px;}
.fs2_c00386{font-size:54.720000px;}
.fs4_c00386{font-size:57.600000px;}
.fs9_c00386{font-size:60.480000px;}
.fs1_c00386{font-size:63.360000px;}
.fs5_c00386{font-size:66.240000px;}
.fsf_c00386{font-size:69.120000px;}
.fsa_c00386{font-size:72.000000px;}
.fs0_c00386{font-size:74.880000px;}
.fs8_c00386{font-size:77.760000px;}
.fs10_c00386{font-size:103.680000px;}
.fsd_c00386{font-size:112.320000px;}
.y0_c00386{bottom:0.000000px;}
.y82_c00386{bottom:55.440000px;}
.y85_c00386{bottom:56.160000px;}
.y87_c00386{bottom:56.880000px;}
.y84_c00386{bottom:57.600000px;}
.y83_c00386{bottom:59.040000px;}
.y81_c00386{bottom:59.760000px;}
.y86_c00386{bottom:60.480000px;}
.y7e_c00386{bottom:92.880000px;}
.y7c_c00386{bottom:99.360000px;}
.y7d_c00386{bottom:101.520000px;}
.y80_c00386{bottom:102.240000px;}
.y7b_c00386{bottom:102.960000px;}
.y7f_c00386{bottom:103.680000px;}
.y75_c00386{bottom:142.560000px;}
.y78_c00386{bottom:143.280000px;}
.y77_c00386{bottom:144.720000px;}
.y79_c00386{bottom:145.440000px;}
.y76_c00386{bottom:146.160000px;}
.y74_c00386{bottom:146.880000px;}
.y7a_c00386{bottom:147.600000px;}
.y6f_c00386{bottom:185.760000px;}
.y70_c00386{bottom:187.200000px;}
.y72_c00386{bottom:188.640000px;}
.y6e_c00386{bottom:189.360000px;}
.y71_c00386{bottom:190.080000px;}
.y73_c00386{bottom:190.800000px;}
.y6b_c00386{bottom:228.960000px;}
.y6d_c00386{bottom:229.680000px;}
.y6c_c00386{bottom:232.560000px;}
.y6a_c00386{bottom:233.280000px;}
.y69_c00386{bottom:234.000000px;}
.y65_c00386{bottom:272.160000px;}
.y67_c00386{bottom:272.880000px;}
.y68_c00386{bottom:274.320000px;}
.y64_c00386{bottom:275.760000px;}
.y66_c00386{bottom:276.480000px;}
.y5f_c00386{bottom:315.360000px;}
.y61_c00386{bottom:316.800000px;}
.y62_c00386{bottom:317.520000px;}
.y63_c00386{bottom:318.240000px;}
.y5e_c00386{bottom:318.960000px;}
.y60_c00386{bottom:319.680000px;}
.y58_c00386{bottom:359.280000px;}
.y5b_c00386{bottom:360.000000px;}
.y5d_c00386{bottom:360.720000px;}
.y5c_c00386{bottom:361.440000px;}
.y57_c00386{bottom:362.160000px;}
.y5a_c00386{bottom:362.880000px;}
.y59_c00386{bottom:363.600000px;}
.y52_c00386{bottom:402.480000px;}
.y55_c00386{bottom:403.200000px;}
.y54_c00386{bottom:403.920000px;}
.y56_c00386{bottom:404.640000px;}
.y51_c00386{bottom:406.080000px;}
.y53_c00386{bottom:406.800000px;}
.y4d_c00386{bottom:445.680000px;}
.y50_c00386{bottom:447.120000px;}
.y4c_c00386{bottom:448.560000px;}
.y4e_c00386{bottom:449.280000px;}
.y4f_c00386{bottom:450.000000px;}
.y48_c00386{bottom:488.880000px;}
.y4b_c00386{bottom:490.320000px;}
.y47_c00386{bottom:491.760000px;}
.y49_c00386{bottom:492.480000px;}
.y4a_c00386{bottom:493.200000px;}
.y43_c00386{bottom:532.080000px;}
.y46_c00386{bottom:532.800000px;}
.y45_c00386{bottom:533.520000px;}
.y42_c00386{bottom:534.240000px;}
.y44_c00386{bottom:535.680000px;}
.y3c_c00386{bottom:575.280000px;}
.y41_c00386{bottom:576.000000px;}
.y40_c00386{bottom:576.720000px;}
.y3b_c00386{bottom:577.440000px;}
.y3d_c00386{bottom:578.160000px;}
.y3e_c00386{bottom:578.880000px;}
.y3f_c00386{bottom:579.600000px;}
.y39_c00386{bottom:611.280000px;}
.y37_c00386{bottom:618.480000px;}
.y3a_c00386{bottom:619.200000px;}
.y35_c00386{bottom:619.920000px;}
.y36_c00386{bottom:621.360000px;}
.y38_c00386{bottom:622.080000px;}
.y2e_c00386{bottom:660.960000px;}
.y30_c00386{bottom:661.680000px;}
.y2d_c00386{bottom:663.120000px;}
.y2f_c00386{bottom:665.280000px;}
.y34_c00386{bottom:666.000000px;}
.y2b_c00386{bottom:704.160000px;}
.y33_c00386{bottom:705.600000px;}
.y2a_c00386{bottom:706.320000px;}
.y2c_c00386{bottom:707.760000px;}
.y32_c00386{bottom:708.480000px;}
.y27_c00386{bottom:747.360000px;}
.y28_c00386{bottom:748.800000px;}
.y26_c00386{bottom:749.520000px;}
.y29_c00386{bottom:750.960000px;}
.y31_c00386{bottom:752.400000px;}
.y24_c00386{bottom:790.560000px;}
.y22_c00386{bottom:791.280000px;}
.y25_c00386{bottom:792.000000px;}
.y21_c00386{bottom:792.720000px;}
.y23_c00386{bottom:794.160000px;}
.y1d_c00386{bottom:833.760000px;}
.y20_c00386{bottom:834.480000px;}
.y1c_c00386{bottom:835.200000px;}
.y1f_c00386{bottom:837.360000px;}
.y1e_c00386{bottom:838.080000px;}
.y18_c00386{bottom:876.960000px;}
.y1a_c00386{bottom:877.680000px;}
.y17_c00386{bottom:878.400000px;}
.y1b_c00386{bottom:879.120000px;}
.y19_c00386{bottom:881.280000px;}
.y14_c00386{bottom:920.880000px;}
.y16_c00386{bottom:921.600000px;}
.y13_c00386{bottom:923.040000px;}
.y15_c00386{bottom:924.480000px;}
.yf_c00386{bottom:962.640000px;}
.y11_c00386{bottom:963.360000px;}
.ye_c00386{bottom:964.080000px;}
.y12_c00386{bottom:964.800000px;}
.yd_c00386{bottom:965.520000px;}
.y10_c00386{bottom:966.960000px;}
.yb_c00386{bottom:1005.840000px;}
.y9_c00386{bottom:1006.560000px;}
.yc_c00386{bottom:1007.280000px;}
.ya_c00386{bottom:1008.000000px;}
.y7_c00386{bottom:1008.720000px;}
.y8_c00386{bottom:1010.880000px;}
.y3_c00386{bottom:1049.760000px;}
.y6_c00386{bottom:1050.480000px;}
.y4_c00386{bottom:1051.200000px;}
.y2_c00386{bottom:1051.920000px;}
.y5_c00386{bottom:1054.080000px;}
.y1_c00386{bottom:1105.200000px;}
.hd_c00386{height:31.100625px;}
.he_c00386{height:33.692344px;}
.h10_c00386{height:36.284062px;}
.h9_c00386{height:41.467500px;}
.h8_c00386{height:44.059219px;}
.h5_c00386{height:46.650937px;}
.h4_c00386{height:49.242656px;}
.h6_c00386{height:51.834375px;}
.hb_c00386{height:54.426094px;}
.h3_c00386{height:57.017812px;}
.h7_c00386{height:59.609531px;}
.h11_c00386{height:62.201250px;}
.hc_c00386{height:64.792969px;}
.h2_c00386{height:67.384687px;}
.ha_c00386{height:69.976406px;}
.h12_c00386{height:93.301875px;}
.hf_c00386{height:101.077031px;}
.h0_c00386{height:1157.040000px;}
.h1_c00386{height:1157.250000px;}
.w1_c00386{width:770.250000px;}
.w0_c00386{width:770.400000px;}
.x0_c00386{left:0.000000px;}
.x2_c00386{left:59.040630px;}
.x19_c00386{left:60.480000px;}
.x3_c00386{left:134.640000px;}
.xf_c00386{left:136.080000px;}
.x8_c00386{left:179.280000px;}
.x31_c00386{left:220.320000px;}
.xc_c00386{left:222.480000px;}
.x1e_c00386{left:231.120000px;}
.x10_c00386{left:232.560000px;}
.x1a_c00386{left:264.240000px;}
.x16_c00386{left:275.040000px;}
.x1d_c00386{left:285.840000px;}
.x11_c00386{left:287.280000px;}
.x2e_c00386{left:316.800000px;}
.x1b_c00386{left:318.960000px;}
.x1f_c00386{left:328.320000px;}
.x9_c00386{left:329.760000px;}
.x27_c00386{left:349.920000px;}
.x1c_c00386{left:361.440000px;}
.x21_c00386{left:371.520000px;}
.x17_c00386{left:372.960000px;}
.xa_c00386{left:383.040000px;}
.x25_c00386{left:393.120000px;}
.x28_c00386{left:404.640000px;}
.xd_c00386{left:415.440000px;}
.x22_c00386{left:425.520000px;}
.x18_c00386{left:426.960000px;}
.x2a_c00386{left:436.320000px;}
.x29_c00386{left:447.120000px;}
.x23_c00386{left:468.720000px;}
.xe_c00386{left:470.160000px;}
.x2b_c00386{left:489.600000px;}
.x2f_c00386{left:501.120000px;}
.x24_c00386{left:511.920000px;}
.x2c_c00386{left:533.520000px;}
.x32_c00386{left:544.320000px;}
.xb_c00386{left:547.200000px;}
.x30_c00386{left:555.120000px;}
.x4_c00386{left:556.560000px;}
.x26_c00386{left:576.720000px;}
.x12_c00386{left:578.160000px;}
.x2d_c00386{left:610.560000px;}
.x5_c00386{left:612.000000px;}
.x20_c00386{left:643.680000px;}
.x6_c00386{left:645.120000px;}
.x14_c00386{left:654.480000px;}
.x1_c00386{left:665.280000px;}
.x7_c00386{left:686.880000px;}
.x13_c00386{left:688.320000px;}
.x15_c00386{left:707.760000px;}
@media print{
.v2_c00386{vertical-align:-10.240000pt;}
.v0_c00386{vertical-align:0.000000pt;}
.v1_c00386{vertical-align:5.120000pt;}
.ls1_c00386{letter-spacing:0.000000pt;}
.ls0_c00386{letter-spacing:74.006827pt;}
.ws1_c00386{word-spacing:0.000000pt;}
.ws0_c00386{word-spacing:673.520000pt;}
.fsb_c00386{font-size:30.720000pt;}
.fsc_c00386{font-size:33.280000pt;}
.fse_c00386{font-size:35.840000pt;}
.fs7_c00386{font-size:40.960000pt;}
.fs6_c00386{font-size:43.520000pt;}
.fs3_c00386{font-size:46.080000pt;}
.fs2_c00386{font-size:48.640000pt;}
.fs4_c00386{font-size:51.200000pt;}
.fs9_c00386{font-size:53.760000pt;}
.fs1_c00386{font-size:56.320000pt;}
.fs5_c00386{font-size:58.880000pt;}
.fsf_c00386{font-size:61.440000pt;}
.fsa_c00386{font-size:64.000000pt;}
.fs0_c00386{font-size:66.560000pt;}
.fs8_c00386{font-size:69.120000pt;}
.fs10_c00386{font-size:92.160000pt;}
.fsd_c00386{font-size:99.840000pt;}
.y0_c00386{bottom:0.000000pt;}
.y82_c00386{bottom:49.280000pt;}
.y85_c00386{bottom:49.920000pt;}
.y87_c00386{bottom:50.560000pt;}
.y84_c00386{bottom:51.200000pt;}
.y83_c00386{bottom:52.480000pt;}
.y81_c00386{bottom:53.120000pt;}
.y86_c00386{bottom:53.760000pt;}
.y7e_c00386{bottom:82.560000pt;}
.y7c_c00386{bottom:88.320000pt;}
.y7d_c00386{bottom:90.240000pt;}
.y80_c00386{bottom:90.880000pt;}
.y7b_c00386{bottom:91.520000pt;}
.y7f_c00386{bottom:92.160000pt;}
.y75_c00386{bottom:126.720000pt;}
.y78_c00386{bottom:127.360000pt;}
.y77_c00386{bottom:128.640000pt;}
.y79_c00386{bottom:129.280000pt;}
.y76_c00386{bottom:129.920000pt;}
.y74_c00386{bottom:130.560000pt;}
.y7a_c00386{bottom:131.200000pt;}
.y6f_c00386{bottom:165.120000pt;}
.y70_c00386{bottom:166.400000pt;}
.y72_c00386{bottom:167.680000pt;}
.y6e_c00386{bottom:168.320000pt;}
.y71_c00386{bottom:168.960000pt;}
.y73_c00386{bottom:169.600000pt;}
.y6b_c00386{bottom:203.520000pt;}
.y6d_c00386{bottom:204.160000pt;}
.y6c_c00386{bottom:206.720000pt;}
.y6a_c00386{bottom:207.360000pt;}
.y69_c00386{bottom:208.000000pt;}
.y65_c00386{bottom:241.920000pt;}
.y67_c00386{bottom:242.560000pt;}
.y68_c00386{bottom:243.840000pt;}
.y64_c00386{bottom:245.120000pt;}
.y66_c00386{bottom:245.760000pt;}
.y5f_c00386{bottom:280.320000pt;}
.y61_c00386{bottom:281.600000pt;}
.y62_c00386{bottom:282.240000pt;}
.y63_c00386{bottom:282.880000pt;}
.y5e_c00386{bottom:283.520000pt;}
.y60_c00386{bottom:284.160000pt;}
.y58_c00386{bottom:319.360000pt;}
.y5b_c00386{bottom:320.000000pt;}
.y5d_c00386{bottom:320.640000pt;}
.y5c_c00386{bottom:321.280000pt;}
.y57_c00386{bottom:321.920000pt;}
.y5a_c00386{bottom:322.560000pt;}
.y59_c00386{bottom:323.200000pt;}
.y52_c00386{bottom:357.760000pt;}
.y55_c00386{bottom:358.400000pt;}
.y54_c00386{bottom:359.040000pt;}
.y56_c00386{bottom:359.680000pt;}
.y51_c00386{bottom:360.960000pt;}
.y53_c00386{bottom:361.600000pt;}
.y4d_c00386{bottom:396.160000pt;}
.y50_c00386{bottom:397.440000pt;}
.y4c_c00386{bottom:398.720000pt;}
.y4e_c00386{bottom:399.360000pt;}
.y4f_c00386{bottom:400.000000pt;}
.y48_c00386{bottom:434.560000pt;}
.y4b_c00386{bottom:435.840000pt;}
.y47_c00386{bottom:437.120000pt;}
.y49_c00386{bottom:437.760000pt;}
.y4a_c00386{bottom:438.400000pt;}
.y43_c00386{bottom:472.960000pt;}
.y46_c00386{bottom:473.600000pt;}
.y45_c00386{bottom:474.240000pt;}
.y42_c00386{bottom:474.880000pt;}
.y44_c00386{bottom:476.160000pt;}
.y3c_c00386{bottom:511.360000pt;}
.y41_c00386{bottom:512.000000pt;}
.y40_c00386{bottom:512.640000pt;}
.y3b_c00386{bottom:513.280000pt;}
.y3d_c00386{bottom:513.920000pt;}
.y3e_c00386{bottom:514.560000pt;}
.y3f_c00386{bottom:515.200000pt;}
.y39_c00386{bottom:543.360000pt;}
.y37_c00386{bottom:549.760000pt;}
.y3a_c00386{bottom:550.400000pt;}
.y35_c00386{bottom:551.040000pt;}
.y36_c00386{bottom:552.320000pt;}
.y38_c00386{bottom:552.960000pt;}
.y2e_c00386{bottom:587.520000pt;}
.y30_c00386{bottom:588.160000pt;}
.y2d_c00386{bottom:589.440000pt;}
.y2f_c00386{bottom:591.360000pt;}
.y34_c00386{bottom:592.000000pt;}
.y2b_c00386{bottom:625.920000pt;}
.y33_c00386{bottom:627.200000pt;}
.y2a_c00386{bottom:627.840000pt;}
.y2c_c00386{bottom:629.120000pt;}
.y32_c00386{bottom:629.760000pt;}
.y27_c00386{bottom:664.320000pt;}
.y28_c00386{bottom:665.600000pt;}
.y26_c00386{bottom:666.240000pt;}
.y29_c00386{bottom:667.520000pt;}
.y31_c00386{bottom:668.800000pt;}
.y24_c00386{bottom:702.720000pt;}
.y22_c00386{bottom:703.360000pt;}
.y25_c00386{bottom:704.000000pt;}
.y21_c00386{bottom:704.640000pt;}
.y23_c00386{bottom:705.920000pt;}
.y1d_c00386{bottom:741.120000pt;}
.y20_c00386{bottom:741.760000pt;}
.y1c_c00386{bottom:742.400000pt;}
.y1f_c00386{bottom:744.320000pt;}
.y1e_c00386{bottom:744.960000pt;}
.y18_c00386{bottom:779.520000pt;}
.y1a_c00386{bottom:780.160000pt;}
.y17_c00386{bottom:780.800000pt;}
.y1b_c00386{bottom:781.440000pt;}
.y19_c00386{bottom:783.360000pt;}
.y14_c00386{bottom:818.560000pt;}
.y16_c00386{bottom:819.200000pt;}
.y13_c00386{bottom:820.480000pt;}
.y15_c00386{bottom:821.760000pt;}
.yf_c00386{bottom:855.680000pt;}
.y11_c00386{bottom:856.320000pt;}
.ye_c00386{bottom:856.960000pt;}
.y12_c00386{bottom:857.600000pt;}
.yd_c00386{bottom:858.240000pt;}
.y10_c00386{bottom:859.520000pt;}
.yb_c00386{bottom:894.080000pt;}
.y9_c00386{bottom:894.720000pt;}
.yc_c00386{bottom:895.360000pt;}
.ya_c00386{bottom:896.000000pt;}
.y7_c00386{bottom:896.640000pt;}
.y8_c00386{bottom:898.560000pt;}
.y3_c00386{bottom:933.120000pt;}
.y6_c00386{bottom:933.760000pt;}
.y4_c00386{bottom:934.400000pt;}
.y2_c00386{bottom:935.040000pt;}
.y5_c00386{bottom:936.960000pt;}
.y1_c00386{bottom:982.400000pt;}
.hd_c00386{height:27.645000pt;}
.he_c00386{height:29.948750pt;}
.h10_c00386{height:32.252500pt;}
.h9_c00386{height:36.860000pt;}
.h8_c00386{height:39.163750pt;}
.h5_c00386{height:41.467500pt;}
.h4_c00386{height:43.771250pt;}
.h6_c00386{height:46.075000pt;}
.hb_c00386{height:48.378750pt;}
.h3_c00386{height:50.682500pt;}
.h7_c00386{height:52.986250pt;}
.h11_c00386{height:55.290000pt;}
.hc_c00386{height:57.593750pt;}
.h2_c00386{height:59.897500pt;}
.ha_c00386{height:62.201250pt;}
.h12_c00386{height:82.935000pt;}
.hf_c00386{height:89.846250pt;}
.h0_c00386{height:1028.480000pt;}
.h1_c00386{height:1028.666667pt;}
.w1_c00386{width:684.666667pt;}
.w0_c00386{width:684.800000pt;}
.x0_c00386{left:0.000000pt;}
.x2_c00386{left:52.480560pt;}
.x19_c00386{left:53.760000pt;}
.x3_c00386{left:119.680000pt;}
.xf_c00386{left:120.960000pt;}
.x8_c00386{left:159.360000pt;}
.x31_c00386{left:195.840000pt;}
.xc_c00386{left:197.760000pt;}
.x1e_c00386{left:205.440000pt;}
.x10_c00386{left:206.720000pt;}
.x1a_c00386{left:234.880000pt;}
.x16_c00386{left:244.480000pt;}
.x1d_c00386{left:254.080000pt;}
.x11_c00386{left:255.360000pt;}
.x2e_c00386{left:281.600000pt;}
.x1b_c00386{left:283.520000pt;}
.x1f_c00386{left:291.840000pt;}
.x9_c00386{left:293.120000pt;}
.x27_c00386{left:311.040000pt;}
.x1c_c00386{left:321.280000pt;}
.x21_c00386{left:330.240000pt;}
.x17_c00386{left:331.520000pt;}
.xa_c00386{left:340.480000pt;}
.x25_c00386{left:349.440000pt;}
.x28_c00386{left:359.680000pt;}
.xd_c00386{left:369.280000pt;}
.x22_c00386{left:378.240000pt;}
.x18_c00386{left:379.520000pt;}
.x2a_c00386{left:387.840000pt;}
.x29_c00386{left:397.440000pt;}
.x23_c00386{left:416.640000pt;}
.xe_c00386{left:417.920000pt;}
.x2b_c00386{left:435.200000pt;}
.x2f_c00386{left:445.440000pt;}
.x24_c00386{left:455.040000pt;}
.x2c_c00386{left:474.240000pt;}
.x32_c00386{left:483.840000pt;}
.xb_c00386{left:486.400000pt;}
.x30_c00386{left:493.440000pt;}
.x4_c00386{left:494.720000pt;}
.x26_c00386{left:512.640000pt;}
.x12_c00386{left:513.920000pt;}
.x2d_c00386{left:542.720000pt;}
.x5_c00386{left:544.000000pt;}
.x20_c00386{left:572.160000pt;}
.x6_c00386{left:573.440000pt;}
.x14_c00386{left:581.760000pt;}
.x1_c00386{left:591.360000pt;}
.x7_c00386{left:610.560000pt;}
.x13_c00386{left:611.840000pt;}
.x15_c00386{left:629.120000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_beba9449e9b5c55d7fa53ce0.woff2')format("woff");}.ff1_c00387{font-family:ff1_c00387;line-height:1.109863;font-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_c00387{transform:matrix(0.194025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194025,0.000000,0.000000,0.250000,0,0);}
.m3f_c00387{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m2_c00387{transform:matrix(0.238800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238800,0.000000,0.000000,0.250000,0,0);}
.m27_c00387{transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);}
.m44_c00387{transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);}
.m41_c00387{transform:matrix(0.246975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246975,0.000000,0.000000,0.250000,0,0);}
.m3b_c00387{transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);}
.mc_c00387{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m12_c00387{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m25_c00387{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);}
.m2c_c00387{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_c00387{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);}
.m3e_c00387{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m20_c00387{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);}
.m38_c00387{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);}
.m2a_c00387{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m23_c00387{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m10_c00387{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00387{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m8_c00387{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m28_c00387{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00387{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m24_c00387{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m17_c00387{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m15_c00387{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00387{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m21_c00387{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m46_c00387{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00387{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.ma_c00387{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00387{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00387{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00387{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m0_c00387{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);}
.m26_c00387{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.md_c00387{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m9_c00387{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m31_c00387{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);}
.m45_c00387{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m5_c00387{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.mb_c00387{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);}
.m40_c00387{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m13_c00387{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00387{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m43_c00387{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);}
.m11_c00387{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00387{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);}
.m34_c00387{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);}
.m37_c00387{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_c00387{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m1_c00387{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m7_c00387{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_c00387{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);}
.m32_c00387{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m47_c00387{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_c00387{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);}
.m35_c00387{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m36_c00387{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m48_c00387{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m42_c00387{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);}
.me_c00387{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m6_c00387{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m30_c00387{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00387{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m19_c00387{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);}
.m3_c00387{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00387{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);}
.m14_c00387{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m29_c00387{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m4_c00387{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m33_c00387{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);}
.m16_c00387{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m39_c00387{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.v0_c00387{vertical-align:0.000000px;}
.v1_c00387{vertical-align:5.760000px;}
.ls0_c00387{letter-spacing:0.000000px;}
.sc__c00387{text-shadow:none;}
.sc0_c00387{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00387{-webkit-text-stroke:0px transparent;}
.sc0_c00387{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00387{word-spacing:0.000000px;}
.ws0_c00387{word-spacing:681.048000px;}
.fc0_c00387{color:transparent;}
.fs3_c00387{font-size:34.560000px;}
.fs9_c00387{font-size:37.440000px;}
.fs5_c00387{font-size:46.080000px;}
.fs7_c00387{font-size:48.960000px;}
.fs2_c00387{font-size:51.840000px;}
.fs6_c00387{font-size:54.720000px;}
.fs1_c00387{font-size:57.600000px;}
.fs4_c00387{font-size:60.480000px;}
.fs8_c00387{font-size:63.360000px;}
.fsc_c00387{font-size:66.240000px;}
.fsb_c00387{font-size:69.120000px;}
.fsa_c00387{font-size:72.000000px;}
.fs0_c00387{font-size:74.880000px;}
.fsd_c00387{font-size:77.760000px;}
.y0_c00387{bottom:0.000000px;}
.y7e_c00387{bottom:63.360000px;}
.y80_c00387{bottom:66.240000px;}
.y7f_c00387{bottom:66.960000px;}
.y7d_c00387{bottom:68.400000px;}
.y81_c00387{bottom:69.120000px;}
.y78_c00387{bottom:107.280000px;}
.y7a_c00387{bottom:108.000000px;}
.y7b_c00387{bottom:110.160000px;}
.y79_c00387{bottom:110.880000px;}
.y77_c00387{bottom:111.600000px;}
.y7c_c00387{bottom:113.040000px;}
.y72_c00387{bottom:150.480000px;}
.y74_c00387{bottom:151.920000px;}
.y76_c00387{bottom:153.360000px;}
.y75_c00387{bottom:154.080000px;}
.y73_c00387{bottom:154.800000px;}
.y71_c00387{bottom:155.520000px;}
.y6e_c00387{bottom:194.400000px;}
.y6f_c00387{bottom:196.560000px;}
.y6d_c00387{bottom:197.280000px;}
.y70_c00387{bottom:199.440000px;}
.y67_c00387{bottom:237.600000px;}
.y68_c00387{bottom:238.320000px;}
.y6c_c00387{bottom:239.040000px;}
.y69_c00387{bottom:239.760000px;}
.y66_c00387{bottom:241.200000px;}
.y6b_c00387{bottom:241.920000px;}
.y6a_c00387{bottom:242.640000px;}
.y61_c00387{bottom:280.080000px;}
.y62_c00387{bottom:280.800000px;}
.y65_c00387{bottom:282.240000px;}
.y60_c00387{bottom:282.960000px;}
.y63_c00387{bottom:283.680000px;}
.y64_c00387{bottom:285.120000px;}
.y5e_c00387{bottom:324.000000px;}
.y5f_c00387{bottom:325.440000px;}
.y5d_c00387{bottom:326.160000px;}
.y59_c00387{bottom:366.480000px;}
.y5a_c00387{bottom:367.200000px;}
.y58_c00387{bottom:368.640000px;}
.y5c_c00387{bottom:369.360000px;}
.y5b_c00387{bottom:371.520000px;}
.y53_c00387{bottom:409.680000px;}
.y55_c00387{bottom:411.120000px;}
.y56_c00387{bottom:411.840000px;}
.y52_c00387{bottom:412.560000px;}
.y54_c00387{bottom:414.000000px;}
.y57_c00387{bottom:414.720000px;}
.y4e_c00387{bottom:452.880000px;}
.y50_c00387{bottom:454.320000px;}
.y4d_c00387{bottom:455.760000px;}
.y51_c00387{bottom:456.480000px;}
.y4f_c00387{bottom:457.200000px;}
.y48_c00387{bottom:496.800000px;}
.y4c_c00387{bottom:497.520000px;}
.y4b_c00387{bottom:498.240000px;}
.y47_c00387{bottom:498.960000px;}
.y4a_c00387{bottom:500.400000px;}
.y49_c00387{bottom:501.120000px;}
.y42_c00387{bottom:540.000000px;}
.y44_c00387{bottom:540.720000px;}
.y46_c00387{bottom:541.440000px;}
.y41_c00387{bottom:542.160000px;}
.y45_c00387{bottom:542.880000px;}
.y43_c00387{bottom:544.320000px;}
.y3b_c00387{bottom:583.200000px;}
.y3e_c00387{bottom:583.920000px;}
.y3f_c00387{bottom:585.360000px;}
.y3a_c00387{bottom:586.080000px;}
.y3c_c00387{bottom:586.800000px;}
.y3d_c00387{bottom:587.520000px;}
.y40_c00387{bottom:588.960000px;}
.y37_c00387{bottom:627.120000px;}
.y35_c00387{bottom:627.840000px;}
.y34_c00387{bottom:628.560000px;}
.y36_c00387{bottom:630.000000px;}
.y30_c00387{bottom:659.520000px;}
.y32_c00387{bottom:660.960000px;}
.y2f_c00387{bottom:661.680000px;}
.y38_c00387{bottom:662.400000px;}
.y33_c00387{bottom:663.120000px;}
.y31_c00387{bottom:663.840000px;}
.y39_c00387{bottom:664.560000px;}
.y2e_c00387{bottom:702.000000px;}
.y2b_c00387{bottom:704.160000px;}
.y2c_c00387{bottom:704.880000px;}
.y2d_c00387{bottom:706.320000px;}
.y27_c00387{bottom:734.400000px;}
.y26_c00387{bottom:736.560000px;}
.y2a_c00387{bottom:737.280000px;}
.y28_c00387{bottom:738.720000px;}
.y29_c00387{bottom:739.440000px;}
.y20_c00387{bottom:777.600000px;}
.y1d_c00387{bottom:779.040000px;}
.y1e_c00387{bottom:779.760000px;}
.y1f_c00387{bottom:781.920000px;}
.y19_c00387{bottom:810.000000px;}
.y1b_c00387{bottom:811.440000px;}
.y18_c00387{bottom:812.160000px;}
.y1a_c00387{bottom:813.600000px;}
.y1c_c00387{bottom:814.320000px;}
.y25_c00387{bottom:815.040000px;}
.y17_c00387{bottom:853.920000px;}
.y16_c00387{bottom:854.640000px;}
.y15_c00387{bottom:856.800000px;}
.y13_c00387{bottom:885.600000px;}
.y12_c00387{bottom:886.320000px;}
.y14_c00387{bottom:889.200000px;}
.y24_c00387{bottom:889.920000px;}
.y11_c00387{bottom:928.800000px;}
.yf_c00387{bottom:930.240000px;}
.y10_c00387{bottom:932.400000px;}
.yc_c00387{bottom:961.200000px;}
.yb_c00387{bottom:961.920000px;}
.y22_c00387{bottom:963.360000px;}
.ye_c00387{bottom:964.080000px;}
.yd_c00387{bottom:964.800000px;}
.y23_c00387{bottom:965.520000px;}
.y8_c00387{bottom:1004.400000px;}
.y7_c00387{bottom:1005.120000px;}
.y9_c00387{bottom:1005.840000px;}
.ya_c00387{bottom:1008.000000px;}
.y21_c00387{bottom:1008.720000px;}
.y3_c00387{bottom:1047.600000px;}
.y2_c00387{bottom:1049.040000px;}
.y6_c00387{bottom:1049.760000px;}
.y4_c00387{bottom:1051.200000px;}
.y5_c00387{bottom:1051.920000px;}
.y1_c00387{bottom:1110.240000px;}
.h5_c00387{height:31.100625px;}
.hb_c00387{height:33.692344px;}
.h7_c00387{height:41.467500px;}
.h9_c00387{height:44.059219px;}
.h4_c00387{height:46.650937px;}
.h8_c00387{height:49.242656px;}
.h3_c00387{height:51.834375px;}
.h6_c00387{height:54.426094px;}
.ha_c00387{height:57.017812px;}
.he_c00387{height:59.609531px;}
.hd_c00387{height:62.201250px;}
.hc_c00387{height:64.792969px;}
.h10_c00387{height:65.369531px;}
.h2_c00387{height:67.384687px;}
.hf_c00387{height:69.976406px;}
.h0_c00387{height:1157.040000px;}
.h1_c00387{height:1157.250000px;}
.w1_c00387{width:770.250000px;}
.w0_c00387{width:770.400000px;}
.x0_c00387{left:0.000000px;}
.x2_c00387{left:59.040000px;}
.x1b_c00387{left:60.480000px;}
.x2d_c00387{left:62.640000px;}
.x33_c00387{left:64.080000px;}
.x3_c00387{left:135.360000px;}
.x1f_c00387{left:138.240000px;}
.x29_c00387{left:177.120000px;}
.x14_c00387{left:178.560000px;}
.x26_c00387{left:200.160000px;}
.x2f_c00387{left:222.480000px;}
.x10_c00387{left:231.120000px;}
.x4_c00387{left:232.560000px;}
.x31_c00387{left:234.000000px;}
.x20_c00387{left:244.080000px;}
.x27_c00387{left:254.880000px;}
.x11_c00387{left:275.760000px;}
.x35_c00387{left:277.200000px;}
.x5_c00387{left:286.560000px;}
.x30_c00387{left:288.000000px;}
.x21_c00387{left:298.080000px;}
.xd_c00387{left:318.960000px;}
.x6_c00387{left:329.040000px;}
.x15_c00387{left:330.480000px;}
.x19_c00387{left:341.280000px;}
.x16_c00387{left:372.240000px;}
.xe_c00387{left:373.680000px;}
.x1a_c00387{left:383.760000px;}
.xf_c00387{left:416.160000px;}
.x1c_c00387{left:426.960000px;}
.x7_c00387{left:437.040000px;}
.x12_c00387{left:459.360000px;}
.x17_c00387{left:470.160000px;}
.x2e_c00387{left:471.600000px;}
.x1d_c00387{left:480.240000px;}
.x8_c00387{left:491.760000px;}
.x13_c00387{left:502.560000px;}
.x28_c00387{left:514.080000px;}
.x18_c00387{left:523.440000px;}
.x1e_c00387{left:524.880000px;}
.x9_c00387{left:534.960000px;}
.x24_c00387{left:546.480000px;}
.x2b_c00387{left:579.600000px;}
.x34_c00387{left:591.120000px;}
.xa_c00387{left:611.280000px;}
.x23_c00387{left:612.720000px;}
.x2c_c00387{left:636.480000px;}
.x25_c00387{left:645.840000px;}
.x1_c00387{left:649.440000px;}
.xb_c00387{left:654.480000px;}
.x22_c00387{left:655.920000px;}
.xc_c00387{left:688.320000px;}
.x32_c00387{left:689.760000px;}
.x2a_c00387{left:709.200000px;}
@media print{
.v0_c00387{vertical-align:0.000000pt;}
.v1_c00387{vertical-align:5.120000pt;}
.ls0_c00387{letter-spacing:0.000000pt;}
.ws1_c00387{word-spacing:0.000000pt;}
.ws0_c00387{word-spacing:605.376000pt;}
.fs3_c00387{font-size:30.720000pt;}
.fs9_c00387{font-size:33.280000pt;}
.fs5_c00387{font-size:40.960000pt;}
.fs7_c00387{font-size:43.520000pt;}
.fs2_c00387{font-size:46.080000pt;}
.fs6_c00387{font-size:48.640000pt;}
.fs1_c00387{font-size:51.200000pt;}
.fs4_c00387{font-size:53.760000pt;}
.fs8_c00387{font-size:56.320000pt;}
.fsc_c00387{font-size:58.880000pt;}
.fsb_c00387{font-size:61.440000pt;}
.fsa_c00387{font-size:64.000000pt;}
.fs0_c00387{font-size:66.560000pt;}
.fsd_c00387{font-size:69.120000pt;}
.y0_c00387{bottom:0.000000pt;}
.y7e_c00387{bottom:56.320000pt;}
.y80_c00387{bottom:58.880000pt;}
.y7f_c00387{bottom:59.520000pt;}
.y7d_c00387{bottom:60.800000pt;}
.y81_c00387{bottom:61.440000pt;}
.y78_c00387{bottom:95.360000pt;}
.y7a_c00387{bottom:96.000000pt;}
.y7b_c00387{bottom:97.920000pt;}
.y79_c00387{bottom:98.560000pt;}
.y77_c00387{bottom:99.200000pt;}
.y7c_c00387{bottom:100.480000pt;}
.y72_c00387{bottom:133.760000pt;}
.y74_c00387{bottom:135.040000pt;}
.y76_c00387{bottom:136.320000pt;}
.y75_c00387{bottom:136.960000pt;}
.y73_c00387{bottom:137.600000pt;}
.y71_c00387{bottom:138.240000pt;}
.y6e_c00387{bottom:172.800000pt;}
.y6f_c00387{bottom:174.720000pt;}
.y6d_c00387{bottom:175.360000pt;}
.y70_c00387{bottom:177.280000pt;}
.y67_c00387{bottom:211.200000pt;}
.y68_c00387{bottom:211.840000pt;}
.y6c_c00387{bottom:212.480000pt;}
.y69_c00387{bottom:213.120000pt;}
.y66_c00387{bottom:214.400000pt;}
.y6b_c00387{bottom:215.040000pt;}
.y6a_c00387{bottom:215.680000pt;}
.y61_c00387{bottom:248.960000pt;}
.y62_c00387{bottom:249.600000pt;}
.y65_c00387{bottom:250.880000pt;}
.y60_c00387{bottom:251.520000pt;}
.y63_c00387{bottom:252.160000pt;}
.y64_c00387{bottom:253.440000pt;}
.y5e_c00387{bottom:288.000000pt;}
.y5f_c00387{bottom:289.280000pt;}
.y5d_c00387{bottom:289.920000pt;}
.y59_c00387{bottom:325.760000pt;}
.y5a_c00387{bottom:326.400000pt;}
.y58_c00387{bottom:327.680000pt;}
.y5c_c00387{bottom:328.320000pt;}
.y5b_c00387{bottom:330.240000pt;}
.y53_c00387{bottom:364.160000pt;}
.y55_c00387{bottom:365.440000pt;}
.y56_c00387{bottom:366.080000pt;}
.y52_c00387{bottom:366.720000pt;}
.y54_c00387{bottom:368.000000pt;}
.y57_c00387{bottom:368.640000pt;}
.y4e_c00387{bottom:402.560000pt;}
.y50_c00387{bottom:403.840000pt;}
.y4d_c00387{bottom:405.120000pt;}
.y51_c00387{bottom:405.760000pt;}
.y4f_c00387{bottom:406.400000pt;}
.y48_c00387{bottom:441.600000pt;}
.y4c_c00387{bottom:442.240000pt;}
.y4b_c00387{bottom:442.880000pt;}
.y47_c00387{bottom:443.520000pt;}
.y4a_c00387{bottom:444.800000pt;}
.y49_c00387{bottom:445.440000pt;}
.y42_c00387{bottom:480.000000pt;}
.y44_c00387{bottom:480.640000pt;}
.y46_c00387{bottom:481.280000pt;}
.y41_c00387{bottom:481.920000pt;}
.y45_c00387{bottom:482.560000pt;}
.y43_c00387{bottom:483.840000pt;}
.y3b_c00387{bottom:518.400000pt;}
.y3e_c00387{bottom:519.040000pt;}
.y3f_c00387{bottom:520.320000pt;}
.y3a_c00387{bottom:520.960000pt;}
.y3c_c00387{bottom:521.600000pt;}
.y3d_c00387{bottom:522.240000pt;}
.y40_c00387{bottom:523.520000pt;}
.y37_c00387{bottom:557.440000pt;}
.y35_c00387{bottom:558.080000pt;}
.y34_c00387{bottom:558.720000pt;}
.y36_c00387{bottom:560.000000pt;}
.y30_c00387{bottom:586.240000pt;}
.y32_c00387{bottom:587.520000pt;}
.y2f_c00387{bottom:588.160000pt;}
.y38_c00387{bottom:588.800000pt;}
.y33_c00387{bottom:589.440000pt;}
.y31_c00387{bottom:590.080000pt;}
.y39_c00387{bottom:590.720000pt;}
.y2e_c00387{bottom:624.000000pt;}
.y2b_c00387{bottom:625.920000pt;}
.y2c_c00387{bottom:626.560000pt;}
.y2d_c00387{bottom:627.840000pt;}
.y27_c00387{bottom:652.800000pt;}
.y26_c00387{bottom:654.720000pt;}
.y2a_c00387{bottom:655.360000pt;}
.y28_c00387{bottom:656.640000pt;}
.y29_c00387{bottom:657.280000pt;}
.y20_c00387{bottom:691.200000pt;}
.y1d_c00387{bottom:692.480000pt;}
.y1e_c00387{bottom:693.120000pt;}
.y1f_c00387{bottom:695.040000pt;}
.y19_c00387{bottom:720.000000pt;}
.y1b_c00387{bottom:721.280000pt;}
.y18_c00387{bottom:721.920000pt;}
.y1a_c00387{bottom:723.200000pt;}
.y1c_c00387{bottom:723.840000pt;}
.y25_c00387{bottom:724.480000pt;}
.y17_c00387{bottom:759.040000pt;}
.y16_c00387{bottom:759.680000pt;}
.y15_c00387{bottom:761.600000pt;}
.y13_c00387{bottom:787.200000pt;}
.y12_c00387{bottom:787.840000pt;}
.y14_c00387{bottom:790.400000pt;}
.y24_c00387{bottom:791.040000pt;}
.y11_c00387{bottom:825.600000pt;}
.yf_c00387{bottom:826.880000pt;}
.y10_c00387{bottom:828.800000pt;}
.yc_c00387{bottom:854.400000pt;}
.yb_c00387{bottom:855.040000pt;}
.y22_c00387{bottom:856.320000pt;}
.ye_c00387{bottom:856.960000pt;}
.yd_c00387{bottom:857.600000pt;}
.y23_c00387{bottom:858.240000pt;}
.y8_c00387{bottom:892.800000pt;}
.y7_c00387{bottom:893.440000pt;}
.y9_c00387{bottom:894.080000pt;}
.ya_c00387{bottom:896.000000pt;}
.y21_c00387{bottom:896.640000pt;}
.y3_c00387{bottom:931.200000pt;}
.y2_c00387{bottom:932.480000pt;}
.y6_c00387{bottom:933.120000pt;}
.y4_c00387{bottom:934.400000pt;}
.y5_c00387{bottom:935.040000pt;}
.y1_c00387{bottom:986.880000pt;}
.h5_c00387{height:27.645000pt;}
.hb_c00387{height:29.948750pt;}
.h7_c00387{height:36.860000pt;}
.h9_c00387{height:39.163750pt;}
.h4_c00387{height:41.467500pt;}
.h8_c00387{height:43.771250pt;}
.h3_c00387{height:46.075000pt;}
.h6_c00387{height:48.378750pt;}
.ha_c00387{height:50.682500pt;}
.he_c00387{height:52.986250pt;}
.hd_c00387{height:55.290000pt;}
.hc_c00387{height:57.593750pt;}
.h10_c00387{height:58.106250pt;}
.h2_c00387{height:59.897500pt;}
.hf_c00387{height:62.201250pt;}
.h0_c00387{height:1028.480000pt;}
.h1_c00387{height:1028.666667pt;}
.w1_c00387{width:684.666667pt;}
.w0_c00387{width:684.800000pt;}
.x0_c00387{left:0.000000pt;}
.x2_c00387{left:52.480000pt;}
.x1b_c00387{left:53.760000pt;}
.x2d_c00387{left:55.680000pt;}
.x33_c00387{left:56.960000pt;}
.x3_c00387{left:120.320000pt;}
.x1f_c00387{left:122.880000pt;}
.x29_c00387{left:157.440000pt;}
.x14_c00387{left:158.720000pt;}
.x26_c00387{left:177.920000pt;}
.x2f_c00387{left:197.760000pt;}
.x10_c00387{left:205.440000pt;}
.x4_c00387{left:206.720000pt;}
.x31_c00387{left:208.000000pt;}
.x20_c00387{left:216.960000pt;}
.x27_c00387{left:226.560000pt;}
.x11_c00387{left:245.120000pt;}
.x35_c00387{left:246.400000pt;}
.x5_c00387{left:254.720000pt;}
.x30_c00387{left:256.000000pt;}
.x21_c00387{left:264.960000pt;}
.xd_c00387{left:283.520000pt;}
.x6_c00387{left:292.480000pt;}
.x15_c00387{left:293.760000pt;}
.x19_c00387{left:303.360000pt;}
.x16_c00387{left:330.880000pt;}
.xe_c00387{left:332.160000pt;}
.x1a_c00387{left:341.120000pt;}
.xf_c00387{left:369.920000pt;}
.x1c_c00387{left:379.520000pt;}
.x7_c00387{left:388.480000pt;}
.x12_c00387{left:408.320000pt;}
.x17_c00387{left:417.920000pt;}
.x2e_c00387{left:419.200000pt;}
.x1d_c00387{left:426.880000pt;}
.x8_c00387{left:437.120000pt;}
.x13_c00387{left:446.720000pt;}
.x28_c00387{left:456.960000pt;}
.x18_c00387{left:465.280000pt;}
.x1e_c00387{left:466.560000pt;}
.x9_c00387{left:475.520000pt;}
.x24_c00387{left:485.760000pt;}
.x2b_c00387{left:515.200000pt;}
.x34_c00387{left:525.440000pt;}
.xa_c00387{left:543.360000pt;}
.x23_c00387{left:544.640000pt;}
.x2c_c00387{left:565.760000pt;}
.x25_c00387{left:574.080000pt;}
.x1_c00387{left:577.280000pt;}
.xb_c00387{left:581.760000pt;}
.x22_c00387{left:583.040000pt;}
.xc_c00387{left:611.840000pt;}
.x32_c00387{left:613.120000pt;}
.x2a_c00387{left:630.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e26944bcea8eafa584d57b7a.woff2')format("woff");}.ff1_c00388{font-family:ff1_c00388;line-height:1.109863;font-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_c00388{transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);}
.m36_c00388{transform:matrix(0.238075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238075,0.000000,0.000000,0.250000,0,0);}
.m15_c00388{transform:matrix(0.244350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244350,0.000000,0.000000,0.250000,0,0);}
.m23_c00388{transform:matrix(0.249300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249300,0.000000,0.000000,0.250000,0,0);}
.m2f_c00388{transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);}
.m44_c00388{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m5_c00388{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00388{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m19_c00388{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m2_c00388{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);}
.m35_c00388{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);}
.m2a_c00388{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);}
.m39_c00388{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m3_c00388{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00388{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m20_c00388{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);}
.m2e_c00388{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m40_c00388{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m28_c00388{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m24_c00388{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m9_c00388{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00388{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.mc_c00388{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m12_c00388{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m41_c00388{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mb_c00388{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00388{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m25_c00388{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m21_c00388{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m42_c00388{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.me_c00388{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.ma_c00388{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m13_c00388{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m4_c00388{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);}
.m3d_c00388{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m43_c00388{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m10_c00388{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.md_c00388{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m8_c00388{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m37_c00388{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1_c00388{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m0_c00388{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);}
.m32_c00388{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.mf_c00388{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_c00388{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);}
.m22_c00388{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_c00388{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);}
.m34_c00388{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);}
.m33_c00388{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);}
.m1d_c00388{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00388{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m45_c00388{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);}
.m16_c00388{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);}
.m3f_c00388{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m7_c00388{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m38_c00388{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00388{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);}
.m30_c00388{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00388{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00388{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);}
.m29_c00388{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00388{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m26_c00388{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);}
.m11_c00388{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00388{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);}
.m27_c00388{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00388{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00388{transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);}
.m14_c00388{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00388{transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);}
.v1_c00388{vertical-align:-8.640000px;}
.v0_c00388{vertical-align:0.000000px;}
.ls0_c00388{letter-spacing:0.000000px;}
.sc__c00388{text-shadow:none;}
.sc0_c00388{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00388{-webkit-text-stroke:0px transparent;}
.sc0_c00388{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00388{word-spacing:0.000000px;}
.ws0_c00388{word-spacing:2.202480px;}
.fc0_c00388{color:transparent;}
.fse_c00388{font-size:20.160000px;}
.fsc_c00388{font-size:34.560000px;}
.fsa_c00388{font-size:37.440000px;}
.fsf_c00388{font-size:40.320000px;}
.fs8_c00388{font-size:46.080000px;}
.fs5_c00388{font-size:48.960000px;}
.fs7_c00388{font-size:51.840000px;}
.fs4_c00388{font-size:54.720000px;}
.fs6_c00388{font-size:57.600000px;}
.fs1_c00388{font-size:60.480000px;}
.fs10_c00388{font-size:63.360000px;}
.fsb_c00388{font-size:66.240000px;}
.fs3_c00388{font-size:69.120000px;}
.fs2_c00388{font-size:72.000000px;}
.fs0_c00388{font-size:74.880000px;}
.fsd_c00388{font-size:77.760000px;}
.fs9_c00388{font-size:103.680000px;}
.y0_c00388{bottom:0.000000px;}
.y87_c00388{bottom:56.880000px;}
.y86_c00388{bottom:60.480000px;}
.y81_c00388{bottom:88.560000px;}
.y82_c00388{bottom:90.000000px;}
.y84_c00388{bottom:90.720000px;}
.y83_c00388{bottom:91.440000px;}
.y80_c00388{bottom:92.880000px;}
.y85_c00388{bottom:93.600000px;}
.y7d_c00388{bottom:131.760000px;}
.y7f_c00388{bottom:132.480000px;}
.y7e_c00388{bottom:133.200000px;}
.y79_c00388{bottom:133.920000px;}
.y7c_c00388{bottom:135.360000px;}
.y7a_c00388{bottom:136.080000px;}
.y7b_c00388{bottom:136.800000px;}
.y75_c00388{bottom:175.680000px;}
.y76_c00388{bottom:177.120000px;}
.y77_c00388{bottom:178.560000px;}
.y74_c00388{bottom:179.280000px;}
.y78_c00388{bottom:180.720000px;}
.y72_c00388{bottom:212.400000px;}
.y70_c00388{bottom:218.880000px;}
.y71_c00388{bottom:220.320000px;}
.y6f_c00388{bottom:222.480000px;}
.y73_c00388{bottom:223.920000px;}
.y6c_c00388{bottom:262.800000px;}
.y6a_c00388{bottom:263.520000px;}
.y6b_c00388{bottom:265.680000px;}
.y66_c00388{bottom:295.200000px;}
.y67_c00388{bottom:295.920000px;}
.y69_c00388{bottom:296.640000px;}
.y6e_c00388{bottom:297.360000px;}
.y65_c00388{bottom:298.080000px;}
.y68_c00388{bottom:298.800000px;}
.y6d_c00388{bottom:299.520000px;}
.y62_c00388{bottom:337.680000px;}
.y64_c00388{bottom:339.120000px;}
.y5f_c00388{bottom:339.840000px;}
.y61_c00388{bottom:340.560000px;}
.y60_c00388{bottom:341.280000px;}
.y63_c00388{bottom:342.000000px;}
.y58_c00388{bottom:381.600000px;}
.y5d_c00388{bottom:382.320000px;}
.y5a_c00388{bottom:383.040000px;}
.y5e_c00388{bottom:383.760000px;}
.y57_c00388{bottom:384.480000px;}
.y5b_c00388{bottom:385.200000px;}
.y59_c00388{bottom:385.920000px;}
.y5c_c00388{bottom:386.640000px;}
.y56_c00388{bottom:418.320000px;}
.y51_c00388{bottom:424.800000px;}
.y55_c00388{bottom:425.520000px;}
.y53_c00388{bottom:426.240000px;}
.y54_c00388{bottom:426.960000px;}
.y50_c00388{bottom:427.680000px;}
.y52_c00388{bottom:428.400000px;}
.y4d_c00388{bottom:468.720000px;}
.y4f_c00388{bottom:470.880000px;}
.y4e_c00388{bottom:471.600000px;}
.y48_c00388{bottom:499.680000px;}
.y4b_c00388{bottom:501.120000px;}
.y49_c00388{bottom:501.840000px;}
.y47_c00388{bottom:502.560000px;}
.y4c_c00388{bottom:503.280000px;}
.y4a_c00388{bottom:504.000000px;}
.y43_c00388{bottom:542.880000px;}
.y45_c00388{bottom:544.320000px;}
.y42_c00388{bottom:545.040000px;}
.y44_c00388{bottom:547.200000px;}
.y46_c00388{bottom:548.640000px;}
.y3d_c00388{bottom:586.080000px;}
.y40_c00388{bottom:587.520000px;}
.y3c_c00388{bottom:588.240000px;}
.y3e_c00388{bottom:589.680000px;}
.y41_c00388{bottom:590.400000px;}
.y38_c00388{bottom:628.560000px;}
.y3b_c00388{bottom:629.280000px;}
.y39_c00388{bottom:630.720000px;}
.y37_c00388{bottom:631.440000px;}
.y3a_c00388{bottom:632.880000px;}
.y3f_c00388{bottom:634.320000px;}
.y32_c00388{bottom:672.480000px;}
.y34_c00388{bottom:673.200000px;}
.y31_c00388{bottom:673.920000px;}
.y35_c00388{bottom:675.360000px;}
.y36_c00388{bottom:676.080000px;}
.y33_c00388{bottom:676.800000px;}
.y2c_c00388{bottom:715.680000px;}
.y2a_c00388{bottom:716.400000px;}
.y2f_c00388{bottom:717.120000px;}
.y29_c00388{bottom:717.840000px;}
.y2b_c00388{bottom:719.280000px;}
.y30_c00388{bottom:720.000000px;}
.y25_c00388{bottom:758.880000px;}
.y28_c00388{bottom:759.600000px;}
.y2e_c00388{bottom:760.320000px;}
.y24_c00388{bottom:761.040000px;}
.y2d_c00388{bottom:761.760000px;}
.y26_c00388{bottom:762.480000px;}
.y27_c00388{bottom:763.200000px;}
.y20_c00388{bottom:802.800000px;}
.y22_c00388{bottom:803.520000px;}
.y1f_c00388{bottom:804.240000px;}
.y23_c00388{bottom:804.960000px;}
.y21_c00388{bottom:806.400000px;}
.y1a_c00388{bottom:845.280000px;}
.y1d_c00388{bottom:846.720000px;}
.y19_c00388{bottom:847.440000px;}
.y1e_c00388{bottom:848.160000px;}
.y1c_c00388{bottom:848.880000px;}
.y1b_c00388{bottom:849.600000px;}
.y16_c00388{bottom:881.280000px;}
.y13_c00388{bottom:888.480000px;}
.y12_c00388{bottom:889.920000px;}
.y17_c00388{bottom:890.640000px;}
.y15_c00388{bottom:892.080000px;}
.y18_c00388{bottom:892.800000px;}
.y14_c00388{bottom:893.520000px;}
.ye_c00388{bottom:931.680000px;}
.yd_c00388{bottom:933.840000px;}
.y11_c00388{bottom:934.560000px;}
.y10_c00388{bottom:935.280000px;}
.yf_c00388{bottom:936.000000px;}
.ya_c00388{bottom:975.600000px;}
.y9_c00388{bottom:976.320000px;}
.yc_c00388{bottom:977.040000px;}
.yb_c00388{bottom:979.200000px;}
.y6_c00388{bottom:1018.800000px;}
.y5_c00388{bottom:1019.520000px;}
.y7_c00388{bottom:1020.240000px;}
.y8_c00388{bottom:1022.400000px;}
.y3_c00388{bottom:1062.000000px;}
.y2_c00388{bottom:1062.720000px;}
.y4_c00388{bottom:1063.440000px;}
.y1_c00388{bottom:1119.600000px;}
.h10_c00388{height:18.142031px;}
.he_c00388{height:31.100625px;}
.hc_c00388{height:33.692344px;}
.h11_c00388{height:36.284062px;}
.ha_c00388{height:41.467500px;}
.h7_c00388{height:44.059219px;}
.h9_c00388{height:46.650937px;}
.h6_c00388{height:49.242656px;}
.h8_c00388{height:51.834375px;}
.h3_c00388{height:54.426094px;}
.h12_c00388{height:57.017812px;}
.hd_c00388{height:59.609531px;}
.h5_c00388{height:62.201250px;}
.h4_c00388{height:64.792969px;}
.h2_c00388{height:67.384687px;}
.hf_c00388{height:69.976406px;}
.hb_c00388{height:93.301875px;}
.h0_c00388{height:1155.600000px;}
.h1_c00388{height:1155.750000px;}
.w1_c00388{width:768.750000px;}
.w0_c00388{width:768.960000px;}
.x0_c00388{left:0.000000px;}
.x2_c00388{left:60.480000px;}
.x1b_c00388{left:61.920000px;}
.x28_c00388{left:63.360000px;}
.x3_c00388{left:134.640000px;}
.x1f_c00388{left:147.600000px;}
.x20_c00388{left:157.680000px;}
.x29_c00388{left:178.560000px;}
.x21_c00388{left:198.720000px;}
.x27_c00388{left:220.320000px;}
.x9_c00388{left:231.840000px;}
.x4_c00388{left:233.280000px;}
.x22_c00388{left:242.640000px;}
.x10_c00388{left:264.960000px;}
.xa_c00388{left:276.480000px;}
.x1c_c00388{left:285.120000px;}
.x1a_c00388{left:287.280000px;}
.x17_c00388{left:297.360000px;}
.x11_c00388{left:319.680000px;}
.xb_c00388{left:330.480000px;}
.x18_c00388{left:352.080000px;}
.x15_c00388{left:360.720000px;}
.x12_c00388{left:362.160000px;}
.x25_c00388{left:371.520000px;}
.x19_c00388{left:394.560000px;}
.x16_c00388{left:406.080000px;}
.x1d_c00388{left:416.160000px;}
.x24_c00388{left:437.760000px;}
.xe_c00388{left:459.360000px;}
.x13_c00388{left:470.880000px;}
.x23_c00388{left:491.760000px;}
.x26_c00388{left:501.120000px;}
.x1e_c00388{left:513.360000px;}
.xf_c00388{left:545.040000px;}
.x5_c00388{left:578.880000px;}
.xc_c00388{left:612.720000px;}
.xd_c00388{left:645.120000px;}
.x6_c00388{left:655.200000px;}
.x1_c00388{left:675.360000px;}
.x14_c00388{left:686.880000px;}
.x7_c00388{left:688.320000px;}
.x8_c00388{left:708.480000px;}
@media print{
.v1_c00388{vertical-align:-7.680000pt;}
.v0_c00388{vertical-align:0.000000pt;}
.ls0_c00388{letter-spacing:0.000000pt;}
.ws1_c00388{word-spacing:0.000000pt;}
.ws0_c00388{word-spacing:1.957760pt;}
.fse_c00388{font-size:17.920000pt;}
.fsc_c00388{font-size:30.720000pt;}
.fsa_c00388{font-size:33.280000pt;}
.fsf_c00388{font-size:35.840000pt;}
.fs8_c00388{font-size:40.960000pt;}
.fs5_c00388{font-size:43.520000pt;}
.fs7_c00388{font-size:46.080000pt;}
.fs4_c00388{font-size:48.640000pt;}
.fs6_c00388{font-size:51.200000pt;}
.fs1_c00388{font-size:53.760000pt;}
.fs10_c00388{font-size:56.320000pt;}
.fsb_c00388{font-size:58.880000pt;}
.fs3_c00388{font-size:61.440000pt;}
.fs2_c00388{font-size:64.000000pt;}
.fs0_c00388{font-size:66.560000pt;}
.fsd_c00388{font-size:69.120000pt;}
.fs9_c00388{font-size:92.160000pt;}
.y0_c00388{bottom:0.000000pt;}
.y87_c00388{bottom:50.560000pt;}
.y86_c00388{bottom:53.760000pt;}
.y81_c00388{bottom:78.720000pt;}
.y82_c00388{bottom:80.000000pt;}
.y84_c00388{bottom:80.640000pt;}
.y83_c00388{bottom:81.280000pt;}
.y80_c00388{bottom:82.560000pt;}
.y85_c00388{bottom:83.200000pt;}
.y7d_c00388{bottom:117.120000pt;}
.y7f_c00388{bottom:117.760000pt;}
.y7e_c00388{bottom:118.400000pt;}
.y79_c00388{bottom:119.040000pt;}
.y7c_c00388{bottom:120.320000pt;}
.y7a_c00388{bottom:120.960000pt;}
.y7b_c00388{bottom:121.600000pt;}
.y75_c00388{bottom:156.160000pt;}
.y76_c00388{bottom:157.440000pt;}
.y77_c00388{bottom:158.720000pt;}
.y74_c00388{bottom:159.360000pt;}
.y78_c00388{bottom:160.640000pt;}
.y72_c00388{bottom:188.800000pt;}
.y70_c00388{bottom:194.560000pt;}
.y71_c00388{bottom:195.840000pt;}
.y6f_c00388{bottom:197.760000pt;}
.y73_c00388{bottom:199.040000pt;}
.y6c_c00388{bottom:233.600000pt;}
.y6a_c00388{bottom:234.240000pt;}
.y6b_c00388{bottom:236.160000pt;}
.y66_c00388{bottom:262.400000pt;}
.y67_c00388{bottom:263.040000pt;}
.y69_c00388{bottom:263.680000pt;}
.y6e_c00388{bottom:264.320000pt;}
.y65_c00388{bottom:264.960000pt;}
.y68_c00388{bottom:265.600000pt;}
.y6d_c00388{bottom:266.240000pt;}
.y62_c00388{bottom:300.160000pt;}
.y64_c00388{bottom:301.440000pt;}
.y5f_c00388{bottom:302.080000pt;}
.y61_c00388{bottom:302.720000pt;}
.y60_c00388{bottom:303.360000pt;}
.y63_c00388{bottom:304.000000pt;}
.y58_c00388{bottom:339.200000pt;}
.y5d_c00388{bottom:339.840000pt;}
.y5a_c00388{bottom:340.480000pt;}
.y5e_c00388{bottom:341.120000pt;}
.y57_c00388{bottom:341.760000pt;}
.y5b_c00388{bottom:342.400000pt;}
.y59_c00388{bottom:343.040000pt;}
.y5c_c00388{bottom:343.680000pt;}
.y56_c00388{bottom:371.840000pt;}
.y51_c00388{bottom:377.600000pt;}
.y55_c00388{bottom:378.240000pt;}
.y53_c00388{bottom:378.880000pt;}
.y54_c00388{bottom:379.520000pt;}
.y50_c00388{bottom:380.160000pt;}
.y52_c00388{bottom:380.800000pt;}
.y4d_c00388{bottom:416.640000pt;}
.y4f_c00388{bottom:418.560000pt;}
.y4e_c00388{bottom:419.200000pt;}
.y48_c00388{bottom:444.160000pt;}
.y4b_c00388{bottom:445.440000pt;}
.y49_c00388{bottom:446.080000pt;}
.y47_c00388{bottom:446.720000pt;}
.y4c_c00388{bottom:447.360000pt;}
.y4a_c00388{bottom:448.000000pt;}
.y43_c00388{bottom:482.560000pt;}
.y45_c00388{bottom:483.840000pt;}
.y42_c00388{bottom:484.480000pt;}
.y44_c00388{bottom:486.400000pt;}
.y46_c00388{bottom:487.680000pt;}
.y3d_c00388{bottom:520.960000pt;}
.y40_c00388{bottom:522.240000pt;}
.y3c_c00388{bottom:522.880000pt;}
.y3e_c00388{bottom:524.160000pt;}
.y41_c00388{bottom:524.800000pt;}
.y38_c00388{bottom:558.720000pt;}
.y3b_c00388{bottom:559.360000pt;}
.y39_c00388{bottom:560.640000pt;}
.y37_c00388{bottom:561.280000pt;}
.y3a_c00388{bottom:562.560000pt;}
.y3f_c00388{bottom:563.840000pt;}
.y32_c00388{bottom:597.760000pt;}
.y34_c00388{bottom:598.400000pt;}
.y31_c00388{bottom:599.040000pt;}
.y35_c00388{bottom:600.320000pt;}
.y36_c00388{bottom:600.960000pt;}
.y33_c00388{bottom:601.600000pt;}
.y2c_c00388{bottom:636.160000pt;}
.y2a_c00388{bottom:636.800000pt;}
.y2f_c00388{bottom:637.440000pt;}
.y29_c00388{bottom:638.080000pt;}
.y2b_c00388{bottom:639.360000pt;}
.y30_c00388{bottom:640.000000pt;}
.y25_c00388{bottom:674.560000pt;}
.y28_c00388{bottom:675.200000pt;}
.y2e_c00388{bottom:675.840000pt;}
.y24_c00388{bottom:676.480000pt;}
.y2d_c00388{bottom:677.120000pt;}
.y26_c00388{bottom:677.760000pt;}
.y27_c00388{bottom:678.400000pt;}
.y20_c00388{bottom:713.600000pt;}
.y22_c00388{bottom:714.240000pt;}
.y1f_c00388{bottom:714.880000pt;}
.y23_c00388{bottom:715.520000pt;}
.y21_c00388{bottom:716.800000pt;}
.y1a_c00388{bottom:751.360000pt;}
.y1d_c00388{bottom:752.640000pt;}
.y19_c00388{bottom:753.280000pt;}
.y1e_c00388{bottom:753.920000pt;}
.y1c_c00388{bottom:754.560000pt;}
.y1b_c00388{bottom:755.200000pt;}
.y16_c00388{bottom:783.360000pt;}
.y13_c00388{bottom:789.760000pt;}
.y12_c00388{bottom:791.040000pt;}
.y17_c00388{bottom:791.680000pt;}
.y15_c00388{bottom:792.960000pt;}
.y18_c00388{bottom:793.600000pt;}
.y14_c00388{bottom:794.240000pt;}
.ye_c00388{bottom:828.160000pt;}
.yd_c00388{bottom:830.080000pt;}
.y11_c00388{bottom:830.720000pt;}
.y10_c00388{bottom:831.360000pt;}
.yf_c00388{bottom:832.000000pt;}
.ya_c00388{bottom:867.200000pt;}
.y9_c00388{bottom:867.840000pt;}
.yc_c00388{bottom:868.480000pt;}
.yb_c00388{bottom:870.400000pt;}
.y6_c00388{bottom:905.600000pt;}
.y5_c00388{bottom:906.240000pt;}
.y7_c00388{bottom:906.880000pt;}
.y8_c00388{bottom:908.800000pt;}
.y3_c00388{bottom:944.000000pt;}
.y2_c00388{bottom:944.640000pt;}
.y4_c00388{bottom:945.280000pt;}
.y1_c00388{bottom:995.200000pt;}
.h10_c00388{height:16.126250pt;}
.he_c00388{height:27.645000pt;}
.hc_c00388{height:29.948750pt;}
.h11_c00388{height:32.252500pt;}
.ha_c00388{height:36.860000pt;}
.h7_c00388{height:39.163750pt;}
.h9_c00388{height:41.467500pt;}
.h6_c00388{height:43.771250pt;}
.h8_c00388{height:46.075000pt;}
.h3_c00388{height:48.378750pt;}
.h12_c00388{height:50.682500pt;}
.hd_c00388{height:52.986250pt;}
.h5_c00388{height:55.290000pt;}
.h4_c00388{height:57.593750pt;}
.h2_c00388{height:59.897500pt;}
.hf_c00388{height:62.201250pt;}
.hb_c00388{height:82.935000pt;}
.h0_c00388{height:1027.200000pt;}
.h1_c00388{height:1027.333333pt;}
.w1_c00388{width:683.333333pt;}
.w0_c00388{width:683.520000pt;}
.x0_c00388{left:0.000000pt;}
.x2_c00388{left:53.760000pt;}
.x1b_c00388{left:55.040000pt;}
.x28_c00388{left:56.320000pt;}
.x3_c00388{left:119.680000pt;}
.x1f_c00388{left:131.200000pt;}
.x20_c00388{left:140.160000pt;}
.x29_c00388{left:158.720000pt;}
.x21_c00388{left:176.640000pt;}
.x27_c00388{left:195.840000pt;}
.x9_c00388{left:206.080000pt;}
.x4_c00388{left:207.360000pt;}
.x22_c00388{left:215.680000pt;}
.x10_c00388{left:235.520000pt;}
.xa_c00388{left:245.760000pt;}
.x1c_c00388{left:253.440000pt;}
.x1a_c00388{left:255.360000pt;}
.x17_c00388{left:264.320000pt;}
.x11_c00388{left:284.160000pt;}
.xb_c00388{left:293.760000pt;}
.x18_c00388{left:312.960000pt;}
.x15_c00388{left:320.640000pt;}
.x12_c00388{left:321.920000pt;}
.x25_c00388{left:330.240000pt;}
.x19_c00388{left:350.720000pt;}
.x16_c00388{left:360.960000pt;}
.x1d_c00388{left:369.920000pt;}
.x24_c00388{left:389.120000pt;}
.xe_c00388{left:408.320000pt;}
.x13_c00388{left:418.560000pt;}
.x23_c00388{left:437.120000pt;}
.x26_c00388{left:445.440000pt;}
.x1e_c00388{left:456.320000pt;}
.xf_c00388{left:484.480000pt;}
.x5_c00388{left:514.560000pt;}
.xc_c00388{left:544.640000pt;}
.xd_c00388{left:573.440000pt;}
.x6_c00388{left:582.400000pt;}
.x1_c00388{left:600.320000pt;}
.x14_c00388{left:610.560000pt;}
.x7_c00388{left:611.840000pt;}
.x8_c00388{left:629.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8bb3e7c548b3619d3cfc8496.woff2')format("woff");}.ff1_c00389{font-family:ff1_c00389;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m43_c00389{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m23_c00389{transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);}
.m37_c00389{transform:matrix(0.197300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197300,0.000000,0.000000,0.250000,0,0);}
.m42_c00389{transform:matrix(0.220350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220350,0.000000,0.000000,0.250000,0,0);}
.m2a_c00389{transform:matrix(0.228025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228025,0.000000,0.000000,0.250000,0,0);}
.m24_c00389{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m3d_c00389{transform:matrix(0.239250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00389{transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);}
.m26_c00389{transform:matrix(0.242375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242375,0.000000,0.000000,0.250000,0,0);}
.m33_c00389{transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);}
.m17_c00389{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m54_c00389{transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);}
.m30_c00389{transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);}
.ma_c00389{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m19_c00389{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m11_c00389{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m38_c00389{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m3a_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);}
.m29_c00389{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m3_c00389{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.me_c00389{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00389{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1_c00389{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mb_c00389{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m10_c00389{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mf_c00389{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m9_c00389{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m6_c00389{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00389{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m8_c00389{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m25_c00389{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00389{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m12_c00389{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00389{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m40_c00389{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m32_c00389{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m46_c00389{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m45_c00389{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m14_c00389{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00389{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00389{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m27_c00389{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m49_c00389{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m7_c00389{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00389{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);}
.m2_c00389{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m52_c00389{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);}
.m4b_c00389{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m0_c00389{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m13_c00389{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00389{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00389{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);}
.m50_c00389{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);}
.m53_c00389{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);}
.mc_c00389{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00389{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m4_c00389{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);}
.m3e_c00389{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);}
.m47_c00389{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00389{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00389{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.md_c00389{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);}
.m4f_c00389{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00389{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m34_c00389{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m31_c00389{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);}
.m2b_c00389{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m18_c00389{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m15_c00389{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);}
.m39_c00389{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m41_c00389{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);}
.m35_c00389{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);}
.m28_c00389{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m44_c00389{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);}
.m4a_c00389{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00389{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_c00389{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m20_c00389{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);}
.m36_c00389{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m21_c00389{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m51_c00389{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m5_c00389{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00389{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m48_c00389{transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);}
.m22_c00389{transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);}
.v1_c00389{vertical-align:-11.520000px;}
.v0_c00389{vertical-align:0.000000px;}
.ls1_c00389{letter-spacing:0.000000px;}
.ls0_c00389{letter-spacing:98.989362px;}
.sc__c00389{text-shadow:none;}
.sc0_c00389{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00389{-webkit-text-stroke:0px transparent;}
.sc0_c00389{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00389{word-spacing:0.000000px;}
.fc0_c00389{color:transparent;}
.fs13_c00389{font-size:2.880000px;}
.fsc_c00389{font-size:11.520000px;}
.fs11_c00389{font-size:34.560000px;}
.fs3_c00389{font-size:37.440000px;}
.fsb_c00389{font-size:40.320000px;}
.fsf_c00389{font-size:43.200000px;}
.fsd_c00389{font-size:46.080000px;}
.fs8_c00389{font-size:48.960000px;}
.fs2_c00389{font-size:51.840000px;}
.fsa_c00389{font-size:54.720000px;}
.fs6_c00389{font-size:57.600000px;}
.fs1_c00389{font-size:60.480000px;}
.fs7_c00389{font-size:63.360000px;}
.fs5_c00389{font-size:69.120000px;}
.fs4_c00389{font-size:72.000000px;}
.fs0_c00389{font-size:74.880000px;}
.fs9_c00389{font-size:77.760000px;}
.fs14_c00389{font-size:92.160000px;}
.fse_c00389{font-size:97.920000px;}
.fs12_c00389{font-size:100.800000px;}
.fs10_c00389{font-size:103.680000px;}
.y0_c00389{bottom:0.000000px;}
.y89_c00389{bottom:56.160000px;}
.y88_c00389{bottom:59.040000px;}
.y8b_c00389{bottom:59.760000px;}
.y8a_c00389{bottom:60.480000px;}
.y85_c00389{bottom:92.880000px;}
.y83_c00389{bottom:99.360000px;}
.y84_c00389{bottom:100.800000px;}
.y86_c00389{bottom:101.520000px;}
.y81_c00389{bottom:102.240000px;}
.y82_c00389{bottom:102.960000px;}
.y87_c00389{bottom:103.680000px;}
.y7d_c00389{bottom:143.280000px;}
.y7e_c00389{bottom:144.000000px;}
.y80_c00389{bottom:144.720000px;}
.y7b_c00389{bottom:145.440000px;}
.y7c_c00389{bottom:146.160000px;}
.y7f_c00389{bottom:146.880000px;}
.y78_c00389{bottom:187.200000px;}
.y7a_c00389{bottom:187.920000px;}
.y79_c00389{bottom:188.640000px;}
.y77_c00389{bottom:189.360000px;}
.y76_c00389{bottom:222.480000px;}
.y74_c00389{bottom:230.400000px;}
.y75_c00389{bottom:231.120000px;}
.y73_c00389{bottom:234.000000px;}
.y72_c00389{bottom:282.240000px;}
.y70_c00389{bottom:283.680000px;}
.y71_c00389{bottom:285.840000px;}
.y6a_c00389{bottom:313.920000px;}
.y6b_c00389{bottom:316.080000px;}
.y6d_c00389{bottom:316.800000px;}
.y69_c00389{bottom:317.520000px;}
.y6c_c00389{bottom:318.240000px;}
.y6e_c00389{bottom:318.960000px;}
.y6f_c00389{bottom:319.680000px;}
.y68_c00389{bottom:357.840000px;}
.y66_c00389{bottom:359.280000px;}
.y67_c00389{bottom:360.000000px;}
.y65_c00389{bottom:361.440000px;}
.y5e_c00389{bottom:389.520000px;}
.y5f_c00389{bottom:390.960000px;}
.y62_c00389{bottom:391.680000px;}
.y64_c00389{bottom:392.400000px;}
.y5d_c00389{bottom:393.120000px;}
.y61_c00389{bottom:393.840000px;}
.y60_c00389{bottom:394.560000px;}
.y63_c00389{bottom:395.280000px;}
.y5c_c00389{bottom:434.160000px;}
.y5b_c00389{bottom:434.880000px;}
.y59_c00389{bottom:437.040000px;}
.y5a_c00389{bottom:437.760000px;}
.y53_c00389{bottom:465.840000px;}
.y54_c00389{bottom:467.280000px;}
.y56_c00389{bottom:468.000000px;}
.y52_c00389{bottom:468.720000px;}
.y57_c00389{bottom:469.440000px;}
.y55_c00389{bottom:470.160000px;}
.y58_c00389{bottom:470.880000px;}
.y51_c00389{bottom:502.560000px;}
.y4f_c00389{bottom:503.280000px;}
.y4c_c00389{bottom:509.760000px;}
.y4d_c00389{bottom:511.200000px;}
.y50_c00389{bottom:511.920000px;}
.y4b_c00389{bottom:512.640000px;}
.y4e_c00389{bottom:513.360000px;}
.y46_c00389{bottom:553.680000px;}
.y49_c00389{bottom:554.400000px;}
.y45_c00389{bottom:555.120000px;}
.y47_c00389{bottom:555.840000px;}
.y48_c00389{bottom:557.280000px;}
.y4a_c00389{bottom:558.000000px;}
.y42_c00389{bottom:589.680000px;}
.y3e_c00389{bottom:596.880000px;}
.y3f_c00389{bottom:597.600000px;}
.y3d_c00389{bottom:598.320000px;}
.y40_c00389{bottom:599.040000px;}
.y41_c00389{bottom:600.480000px;}
.y44_c00389{bottom:601.200000px;}
.y43_c00389{bottom:601.920000px;}
.y37_c00389{bottom:639.360000px;}
.y39_c00389{bottom:640.800000px;}
.y36_c00389{bottom:641.520000px;}
.y3c_c00389{bottom:642.240000px;}
.y3b_c00389{bottom:642.960000px;}
.y3a_c00389{bottom:643.680000px;}
.y38_c00389{bottom:644.400000px;}
.y33_c00389{bottom:683.280000px;}
.y34_c00389{bottom:684.720000px;}
.y32_c00389{bottom:685.440000px;}
.y35_c00389{bottom:686.880000px;}
.y2d_c00389{bottom:719.280000px;}
.y2c_c00389{bottom:725.760000px;}
.y30_c00389{bottom:727.200000px;}
.y2b_c00389{bottom:727.920000px;}
.y31_c00389{bottom:728.640000px;}
.y2e_c00389{bottom:730.080000px;}
.y2f_c00389{bottom:730.800000px;}
.y27_c00389{bottom:769.680000px;}
.y26_c00389{bottom:770.400000px;}
.y29_c00389{bottom:771.120000px;}
.y2a_c00389{bottom:771.840000px;}
.y28_c00389{bottom:773.280000px;}
.y25_c00389{bottom:812.880000px;}
.y23_c00389{bottom:813.600000px;}
.y22_c00389{bottom:814.320000px;}
.y24_c00389{bottom:815.760000px;}
.y1d_c00389{bottom:845.280000px;}
.y1e_c00389{bottom:846.000000px;}
.y1c_c00389{bottom:846.720000px;}
.y21_c00389{bottom:847.440000px;}
.y20_c00389{bottom:848.160000px;}
.y1f_c00389{bottom:848.880000px;}
.y17_c00389{bottom:887.760000px;}
.y19_c00389{bottom:888.480000px;}
.y16_c00389{bottom:889.200000px;}
.y18_c00389{bottom:889.920000px;}
.y1a_c00389{bottom:891.360000px;}
.y1b_c00389{bottom:892.080000px;}
.y15_c00389{bottom:930.960000px;}
.y13_c00389{bottom:932.400000px;}
.y14_c00389{bottom:934.560000px;}
.ye_c00389{bottom:963.360000px;}
.yf_c00389{bottom:964.080000px;}
.yd_c00389{bottom:964.800000px;}
.y11_c00389{bottom:966.240000px;}
.y10_c00389{bottom:966.960000px;}
.y12_c00389{bottom:967.680000px;}
.yb_c00389{bottom:1005.840000px;}
.y8_c00389{bottom:1006.560000px;}
.y9_c00389{bottom:1007.280000px;}
.y7_c00389{bottom:1008.000000px;}
.yc_c00389{bottom:1008.720000px;}
.ya_c00389{bottom:1009.440000px;}
.y4_c00389{bottom:1050.480000px;}
.y2_c00389{bottom:1051.200000px;}
.y5_c00389{bottom:1051.920000px;}
.y6_c00389{bottom:1053.360000px;}
.y3_c00389{bottom:1054.080000px;}
.y1_c00389{bottom:1123.920000px;}
.h15_c00389{height:2.591719px;}
.he_c00389{height:10.366875px;}
.h13_c00389{height:31.100625px;}
.h5_c00389{height:33.692344px;}
.hd_c00389{height:36.284062px;}
.h11_c00389{height:38.875781px;}
.hf_c00389{height:41.467500px;}
.ha_c00389{height:44.059219px;}
.h4_c00389{height:46.650937px;}
.hc_c00389{height:49.242656px;}
.h8_c00389{height:51.834375px;}
.h3_c00389{height:54.426094px;}
.h9_c00389{height:57.017812px;}
.h7_c00389{height:62.201250px;}
.h6_c00389{height:64.792969px;}
.h2_c00389{height:67.384687px;}
.hb_c00389{height:69.976406px;}
.h16_c00389{height:82.935000px;}
.h10_c00389{height:88.118437px;}
.h14_c00389{height:90.710156px;}
.h12_c00389{height:93.301875px;}
.h0_c00389{height:1157.760000px;}
.h1_c00389{height:1158.000000px;}
.w1_c00389{width:772.500000px;}
.w0_c00389{width:772.560000px;}
.x0_c00389{left:0.000000px;}
.x2_c00389{left:61.200000px;}
.x25_c00389{left:62.640000px;}
.x3c_c00389{left:64.080000px;}
.x33_c00389{left:113.040000px;}
.x36_c00389{left:125.280000px;}
.x2c_c00389{left:133.920000px;}
.x3_c00389{left:136.080000px;}
.x34_c00389{left:145.440000px;}
.x14_c00389{left:177.840000px;}
.x4_c00389{left:180.000000px;}
.x2d_c00389{left:221.040000px;}
.x1b_c00389{left:231.120000px;}
.x5_c00389{left:232.560000px;}
.x27_c00389{left:234.000000px;}
.x35_c00389{left:241.920000px;}
.x37_c00389{left:243.360000px;}
.x30_c00389{left:264.960000px;}
.x6_c00389{left:276.480000px;}
.xe_c00389{left:285.840000px;}
.x16_c00389{left:287.280000px;}
.x2e_c00389{left:288.720000px;}
.x38_c00389{left:298.080000px;}
.x7_c00389{left:318.240000px;}
.x15_c00389{left:319.680000px;}
.x1e_c00389{left:329.760000px;}
.xf_c00389{left:331.200000px;}
.x39_c00389{left:352.080000px;}
.x1c_c00389{left:362.880000px;}
.xb_c00389{left:372.960000px;}
.x31_c00389{left:374.400000px;}
.x17_c00389{left:384.480000px;}
.x10_c00389{left:415.440000px;}
.xc_c00389{left:416.880000px;}
.x1f_c00389{left:426.960000px;}
.x3d_c00389{left:428.400000px;}
.x18_c00389{left:439.200000px;}
.x3a_c00389{left:448.560000px;}
.x11_c00389{left:460.080000px;}
.x32_c00389{left:469.440000px;}
.x22_c00389{left:470.880000px;}
.x19_c00389{left:481.680000px;}
.x2f_c00389{left:483.120000px;}
.x20_c00389{left:492.480000px;}
.x3b_c00389{left:493.920000px;}
.x28_c00389{left:503.280000px;}
.x23_c00389{left:514.080000px;}
.x12_c00389{left:515.520000px;}
.x24_c00389{left:524.880000px;}
.x1a_c00389{left:527.040000px;}
.x21_c00389{left:535.680000px;}
.x29_c00389{left:540.000000px;}
.x26_c00389{left:558.000000px;}
.x8_c00389{left:578.880000px;}
.x13_c00389{left:580.320000px;}
.x3e_c00389{left:612.000000px;}
.xd_c00389{left:613.440000px;}
.x2a_c00389{left:645.840000px;}
.x9_c00389{left:655.920000px;}
.x1d_c00389{left:657.360000px;}
.x1_c00389{left:672.480000px;}
.x3f_c00389{left:678.240000px;}
.x2b_c00389{left:686.880000px;}
.xa_c00389{left:689.040000px;}
@media print{
.v1_c00389{vertical-align:-10.240000pt;}
.v0_c00389{vertical-align:0.000000pt;}
.ls1_c00389{letter-spacing:0.000000pt;}
.ls0_c00389{letter-spacing:87.990544pt;}
.ws0_c00389{word-spacing:0.000000pt;}
.fs13_c00389{font-size:2.560000pt;}
.fsc_c00389{font-size:10.240000pt;}
.fs11_c00389{font-size:30.720000pt;}
.fs3_c00389{font-size:33.280000pt;}
.fsb_c00389{font-size:35.840000pt;}
.fsf_c00389{font-size:38.400000pt;}
.fsd_c00389{font-size:40.960000pt;}
.fs8_c00389{font-size:43.520000pt;}
.fs2_c00389{font-size:46.080000pt;}
.fsa_c00389{font-size:48.640000pt;}
.fs6_c00389{font-size:51.200000pt;}
.fs1_c00389{font-size:53.760000pt;}
.fs7_c00389{font-size:56.320000pt;}
.fs5_c00389{font-size:61.440000pt;}
.fs4_c00389{font-size:64.000000pt;}
.fs0_c00389{font-size:66.560000pt;}
.fs9_c00389{font-size:69.120000pt;}
.fs14_c00389{font-size:81.920000pt;}
.fse_c00389{font-size:87.040000pt;}
.fs12_c00389{font-size:89.600000pt;}
.fs10_c00389{font-size:92.160000pt;}
.y0_c00389{bottom:0.000000pt;}
.y89_c00389{bottom:49.920000pt;}
.y88_c00389{bottom:52.480000pt;}
.y8b_c00389{bottom:53.120000pt;}
.y8a_c00389{bottom:53.760000pt;}
.y85_c00389{bottom:82.560000pt;}
.y83_c00389{bottom:88.320000pt;}
.y84_c00389{bottom:89.600000pt;}
.y86_c00389{bottom:90.240000pt;}
.y81_c00389{bottom:90.880000pt;}
.y82_c00389{bottom:91.520000pt;}
.y87_c00389{bottom:92.160000pt;}
.y7d_c00389{bottom:127.360000pt;}
.y7e_c00389{bottom:128.000000pt;}
.y80_c00389{bottom:128.640000pt;}
.y7b_c00389{bottom:129.280000pt;}
.y7c_c00389{bottom:129.920000pt;}
.y7f_c00389{bottom:130.560000pt;}
.y78_c00389{bottom:166.400000pt;}
.y7a_c00389{bottom:167.040000pt;}
.y79_c00389{bottom:167.680000pt;}
.y77_c00389{bottom:168.320000pt;}
.y76_c00389{bottom:197.760000pt;}
.y74_c00389{bottom:204.800000pt;}
.y75_c00389{bottom:205.440000pt;}
.y73_c00389{bottom:208.000000pt;}
.y72_c00389{bottom:250.880000pt;}
.y70_c00389{bottom:252.160000pt;}
.y71_c00389{bottom:254.080000pt;}
.y6a_c00389{bottom:279.040000pt;}
.y6b_c00389{bottom:280.960000pt;}
.y6d_c00389{bottom:281.600000pt;}
.y69_c00389{bottom:282.240000pt;}
.y6c_c00389{bottom:282.880000pt;}
.y6e_c00389{bottom:283.520000pt;}
.y6f_c00389{bottom:284.160000pt;}
.y68_c00389{bottom:318.080000pt;}
.y66_c00389{bottom:319.360000pt;}
.y67_c00389{bottom:320.000000pt;}
.y65_c00389{bottom:321.280000pt;}
.y5e_c00389{bottom:346.240000pt;}
.y5f_c00389{bottom:347.520000pt;}
.y62_c00389{bottom:348.160000pt;}
.y64_c00389{bottom:348.800000pt;}
.y5d_c00389{bottom:349.440000pt;}
.y61_c00389{bottom:350.080000pt;}
.y60_c00389{bottom:350.720000pt;}
.y63_c00389{bottom:351.360000pt;}
.y5c_c00389{bottom:385.920000pt;}
.y5b_c00389{bottom:386.560000pt;}
.y59_c00389{bottom:388.480000pt;}
.y5a_c00389{bottom:389.120000pt;}
.y53_c00389{bottom:414.080000pt;}
.y54_c00389{bottom:415.360000pt;}
.y56_c00389{bottom:416.000000pt;}
.y52_c00389{bottom:416.640000pt;}
.y57_c00389{bottom:417.280000pt;}
.y55_c00389{bottom:417.920000pt;}
.y58_c00389{bottom:418.560000pt;}
.y51_c00389{bottom:446.720000pt;}
.y4f_c00389{bottom:447.360000pt;}
.y4c_c00389{bottom:453.120000pt;}
.y4d_c00389{bottom:454.400000pt;}
.y50_c00389{bottom:455.040000pt;}
.y4b_c00389{bottom:455.680000pt;}
.y4e_c00389{bottom:456.320000pt;}
.y46_c00389{bottom:492.160000pt;}
.y49_c00389{bottom:492.800000pt;}
.y45_c00389{bottom:493.440000pt;}
.y47_c00389{bottom:494.080000pt;}
.y48_c00389{bottom:495.360000pt;}
.y4a_c00389{bottom:496.000000pt;}
.y42_c00389{bottom:524.160000pt;}
.y3e_c00389{bottom:530.560000pt;}
.y3f_c00389{bottom:531.200000pt;}
.y3d_c00389{bottom:531.840000pt;}
.y40_c00389{bottom:532.480000pt;}
.y41_c00389{bottom:533.760000pt;}
.y44_c00389{bottom:534.400000pt;}
.y43_c00389{bottom:535.040000pt;}
.y37_c00389{bottom:568.320000pt;}
.y39_c00389{bottom:569.600000pt;}
.y36_c00389{bottom:570.240000pt;}
.y3c_c00389{bottom:570.880000pt;}
.y3b_c00389{bottom:571.520000pt;}
.y3a_c00389{bottom:572.160000pt;}
.y38_c00389{bottom:572.800000pt;}
.y33_c00389{bottom:607.360000pt;}
.y34_c00389{bottom:608.640000pt;}
.y32_c00389{bottom:609.280000pt;}
.y35_c00389{bottom:610.560000pt;}
.y2d_c00389{bottom:639.360000pt;}
.y2c_c00389{bottom:645.120000pt;}
.y30_c00389{bottom:646.400000pt;}
.y2b_c00389{bottom:647.040000pt;}
.y31_c00389{bottom:647.680000pt;}
.y2e_c00389{bottom:648.960000pt;}
.y2f_c00389{bottom:649.600000pt;}
.y27_c00389{bottom:684.160000pt;}
.y26_c00389{bottom:684.800000pt;}
.y29_c00389{bottom:685.440000pt;}
.y2a_c00389{bottom:686.080000pt;}
.y28_c00389{bottom:687.360000pt;}
.y25_c00389{bottom:722.560000pt;}
.y23_c00389{bottom:723.200000pt;}
.y22_c00389{bottom:723.840000pt;}
.y24_c00389{bottom:725.120000pt;}
.y1d_c00389{bottom:751.360000pt;}
.y1e_c00389{bottom:752.000000pt;}
.y1c_c00389{bottom:752.640000pt;}
.y21_c00389{bottom:753.280000pt;}
.y20_c00389{bottom:753.920000pt;}
.y1f_c00389{bottom:754.560000pt;}
.y17_c00389{bottom:789.120000pt;}
.y19_c00389{bottom:789.760000pt;}
.y16_c00389{bottom:790.400000pt;}
.y18_c00389{bottom:791.040000pt;}
.y1a_c00389{bottom:792.320000pt;}
.y1b_c00389{bottom:792.960000pt;}
.y15_c00389{bottom:827.520000pt;}
.y13_c00389{bottom:828.800000pt;}
.y14_c00389{bottom:830.720000pt;}
.ye_c00389{bottom:856.320000pt;}
.yf_c00389{bottom:856.960000pt;}
.yd_c00389{bottom:857.600000pt;}
.y11_c00389{bottom:858.880000pt;}
.y10_c00389{bottom:859.520000pt;}
.y12_c00389{bottom:860.160000pt;}
.yb_c00389{bottom:894.080000pt;}
.y8_c00389{bottom:894.720000pt;}
.y9_c00389{bottom:895.360000pt;}
.y7_c00389{bottom:896.000000pt;}
.yc_c00389{bottom:896.640000pt;}
.ya_c00389{bottom:897.280000pt;}
.y4_c00389{bottom:933.760000pt;}
.y2_c00389{bottom:934.400000pt;}
.y5_c00389{bottom:935.040000pt;}
.y6_c00389{bottom:936.320000pt;}
.y3_c00389{bottom:936.960000pt;}
.y1_c00389{bottom:999.040000pt;}
.h15_c00389{height:2.303750pt;}
.he_c00389{height:9.215000pt;}
.h13_c00389{height:27.645000pt;}
.h5_c00389{height:29.948750pt;}
.hd_c00389{height:32.252500pt;}
.h11_c00389{height:34.556250pt;}
.hf_c00389{height:36.860000pt;}
.ha_c00389{height:39.163750pt;}
.h4_c00389{height:41.467500pt;}
.hc_c00389{height:43.771250pt;}
.h8_c00389{height:46.075000pt;}
.h3_c00389{height:48.378750pt;}
.h9_c00389{height:50.682500pt;}
.h7_c00389{height:55.290000pt;}
.h6_c00389{height:57.593750pt;}
.h2_c00389{height:59.897500pt;}
.hb_c00389{height:62.201250pt;}
.h16_c00389{height:73.720000pt;}
.h10_c00389{height:78.327500pt;}
.h14_c00389{height:80.631250pt;}
.h12_c00389{height:82.935000pt;}
.h0_c00389{height:1029.120000pt;}
.h1_c00389{height:1029.333333pt;}
.w1_c00389{width:686.666667pt;}
.w0_c00389{width:686.720000pt;}
.x0_c00389{left:0.000000pt;}
.x2_c00389{left:54.400000pt;}
.x25_c00389{left:55.680000pt;}
.x3c_c00389{left:56.960000pt;}
.x33_c00389{left:100.480000pt;}
.x36_c00389{left:111.360000pt;}
.x2c_c00389{left:119.040000pt;}
.x3_c00389{left:120.960000pt;}
.x34_c00389{left:129.280000pt;}
.x14_c00389{left:158.080000pt;}
.x4_c00389{left:160.000000pt;}
.x2d_c00389{left:196.480000pt;}
.x1b_c00389{left:205.440000pt;}
.x5_c00389{left:206.720000pt;}
.x27_c00389{left:208.000000pt;}
.x35_c00389{left:215.040000pt;}
.x37_c00389{left:216.320000pt;}
.x30_c00389{left:235.520000pt;}
.x6_c00389{left:245.760000pt;}
.xe_c00389{left:254.080000pt;}
.x16_c00389{left:255.360000pt;}
.x2e_c00389{left:256.640000pt;}
.x38_c00389{left:264.960000pt;}
.x7_c00389{left:282.880000pt;}
.x15_c00389{left:284.160000pt;}
.x1e_c00389{left:293.120000pt;}
.xf_c00389{left:294.400000pt;}
.x39_c00389{left:312.960000pt;}
.x1c_c00389{left:322.560000pt;}
.xb_c00389{left:331.520000pt;}
.x31_c00389{left:332.800000pt;}
.x17_c00389{left:341.760000pt;}
.x10_c00389{left:369.280000pt;}
.xc_c00389{left:370.560000pt;}
.x1f_c00389{left:379.520000pt;}
.x3d_c00389{left:380.800000pt;}
.x18_c00389{left:390.400000pt;}
.x3a_c00389{left:398.720000pt;}
.x11_c00389{left:408.960000pt;}
.x32_c00389{left:417.280000pt;}
.x22_c00389{left:418.560000pt;}
.x19_c00389{left:428.160000pt;}
.x2f_c00389{left:429.440000pt;}
.x20_c00389{left:437.760000pt;}
.x3b_c00389{left:439.040000pt;}
.x28_c00389{left:447.360000pt;}
.x23_c00389{left:456.960000pt;}
.x12_c00389{left:458.240000pt;}
.x24_c00389{left:466.560000pt;}
.x1a_c00389{left:468.480000pt;}
.x21_c00389{left:476.160000pt;}
.x29_c00389{left:480.000000pt;}
.x26_c00389{left:496.000000pt;}
.x8_c00389{left:514.560000pt;}
.x13_c00389{left:515.840000pt;}
.x3e_c00389{left:544.000000pt;}
.xd_c00389{left:545.280000pt;}
.x2a_c00389{left:574.080000pt;}
.x9_c00389{left:583.040000pt;}
.x1d_c00389{left:584.320000pt;}
.x1_c00389{left:597.760000pt;}
.x3f_c00389{left:602.880000pt;}
.x2b_c00389{left:610.560000pt;}
.xa_c00389{left:612.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_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_5fd7ed692ccaa1e733814c13.woff2')format("woff");}.ff1_c00390{font-family:ff1_c00390;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4f_c00390{transform:matrix(0.236475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236475,0.000000,0.000000,0.250000,0,0);}
.md_c00390{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m11_c00390{transform:matrix(0.244100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244100,0.000000,0.000000,0.250000,0,0);}
.m4c_c00390{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);}
.m39_c00390{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m37_c00390{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m34_c00390{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);}
.m47_c00390{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00390{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m46_c00390{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m44_c00390{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m17_c00390{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00390{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00390{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m38_c00390{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m48_c00390{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m8_c00390{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m15_c00390{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m45_c00390{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m7_c00390{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2_c00390{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m23_c00390{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m4_c00390{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m42_c00390{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.ma_c00390{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00390{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m41_c00390{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m32_c00390{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00390{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m35_c00390{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mf_c00390{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m26_c00390{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m28_c00390{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.me_c00390{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m0_c00390{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00390{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00390{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);}
.m43_c00390{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m14_c00390{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m36_c00390{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00390{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);}
.m49_c00390{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m25_c00390{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m1_c00390{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);}
.m2e_c00390{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m24_c00390{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);}
.mc_c00390{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m13_c00390{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00390{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);}
.m30_c00390{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00390{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_c00390{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m10_c00390{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);}
.m9_c00390{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m29_c00390{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m21_c00390{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);}
.m27_c00390{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m22_c00390{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00390{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m50_c00390{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m18_c00390{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);}
.m1f_c00390{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m40_c00390{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00390{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);}
.m3_c00390{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00390{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m6_c00390{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m20_c00390{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);}
.m1d_c00390{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m16_c00390{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m31_c00390{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00390{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);}
.m3c_c00390{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00390{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m19_c00390{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m5_c00390{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00390{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m12_c00390{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);}
.m33_c00390{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00390{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.mb_c00390{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.v3_c00390{vertical-align:-5.760000px;}
.v0_c00390{vertical-align:0.000000px;}
.v1_c00390{vertical-align:5.760000px;}
.v2_c00390{vertical-align:11.520000px;}
.ls0_c00390{letter-spacing:0.000000px;}
.sc__c00390{text-shadow:none;}
.sc0_c00390{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00390{-webkit-text-stroke:0px transparent;}
.sc0_c00390{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00390{word-spacing:0.000000px;}
.ws1_c00390{word-spacing:5.560800px;}
.ws2_c00390{word-spacing:10.267200px;}
.ws0_c00390{word-spacing:11.821200px;}
.fc0_c00390{color:transparent;}
.fsa_c00390{font-size:34.560000px;}
.fsc_c00390{font-size:37.440000px;}
.fs6_c00390{font-size:43.200000px;}
.fs8_c00390{font-size:46.080000px;}
.fs3_c00390{font-size:48.960000px;}
.fs4_c00390{font-size:51.840000px;}
.fs5_c00390{font-size:54.720000px;}
.fs2_c00390{font-size:57.600000px;}
.fs1_c00390{font-size:60.480000px;}
.fsd_c00390{font-size:63.360000px;}
.fsb_c00390{font-size:66.240000px;}
.fs7_c00390{font-size:69.120000px;}
.fs9_c00390{font-size:72.000000px;}
.fs0_c00390{font-size:74.880000px;}
.fse_c00390{font-size:77.760000px;}
.y0_c00390{bottom:0.000000px;}
.y72_c00390{bottom:38.880000px;}
.y76_c00390{bottom:41.040000px;}
.y74_c00390{bottom:41.760000px;}
.y73_c00390{bottom:42.480000px;}
.y71_c00390{bottom:43.200000px;}
.y75_c00390{bottom:43.920000px;}
.y78_c00390{bottom:44.640000px;}
.y77_c00390{bottom:45.360000px;}
.y6f_c00390{bottom:82.080000px;}
.y70_c00390{bottom:82.800000px;}
.y6e_c00390{bottom:86.400000px;}
.y69_c00390{bottom:125.280000px;}
.y6b_c00390{bottom:126.720000px;}
.y6a_c00390{bottom:128.880000px;}
.y6c_c00390{bottom:129.600000px;}
.y68_c00390{bottom:130.320000px;}
.y6d_c00390{bottom:131.760000px;}
.y66_c00390{bottom:169.200000px;}
.y67_c00390{bottom:172.800000px;}
.y65_c00390{bottom:173.520000px;}
.y62_c00390{bottom:212.400000px;}
.y61_c00390{bottom:215.280000px;}
.y63_c00390{bottom:216.000000px;}
.y64_c00390{bottom:216.720000px;}
.y5c_c00390{bottom:255.600000px;}
.y5d_c00390{bottom:257.760000px;}
.y5b_c00390{bottom:259.920000px;}
.y60_c00390{bottom:260.640000px;}
.y5e_c00390{bottom:261.360000px;}
.y5f_c00390{bottom:262.080000px;}
.y58_c00390{bottom:299.520000px;}
.y57_c00390{bottom:302.400000px;}
.y5a_c00390{bottom:303.120000px;}
.y59_c00390{bottom:304.560000px;}
.y53_c00390{bottom:342.720000px;}
.y54_c00390{bottom:344.880000px;}
.y52_c00390{bottom:345.600000px;}
.y56_c00390{bottom:347.760000px;}
.y55_c00390{bottom:348.480000px;}
.y4f_c00390{bottom:385.920000px;}
.y4e_c00390{bottom:388.080000px;}
.y51_c00390{bottom:388.800000px;}
.y50_c00390{bottom:391.680000px;}
.y4b_c00390{bottom:429.840000px;}
.y49_c00390{bottom:431.280000px;}
.y4c_c00390{bottom:432.000000px;}
.y4d_c00390{bottom:432.720000px;}
.y4a_c00390{bottom:434.160000px;}
.y45_c00390{bottom:472.320000px;}
.y44_c00390{bottom:474.480000px;}
.y47_c00390{bottom:475.200000px;}
.y46_c00390{bottom:477.360000px;}
.y48_c00390{bottom:478.080000px;}
.y3f_c00390{bottom:515.520000px;}
.y40_c00390{bottom:517.680000px;}
.y3e_c00390{bottom:518.400000px;}
.y42_c00390{bottom:519.120000px;}
.y43_c00390{bottom:520.560000px;}
.y41_c00390{bottom:521.280000px;}
.y3a_c00390{bottom:558.720000px;}
.y3b_c00390{bottom:559.440000px;}
.y39_c00390{bottom:560.880000px;}
.y3c_c00390{bottom:561.600000px;}
.y3d_c00390{bottom:562.320000px;}
.y36_c00390{bottom:601.920000px;}
.y37_c00390{bottom:603.360000px;}
.y33_c00390{bottom:604.080000px;}
.y38_c00390{bottom:604.800000px;}
.y35_c00390{bottom:605.520000px;}
.y34_c00390{bottom:606.240000px;}
.y31_c00390{bottom:646.560000px;}
.y32_c00390{bottom:648.720000px;}
.y2d_c00390{bottom:677.520000px;}
.y2b_c00390{bottom:678.240000px;}
.y2f_c00390{bottom:678.960000px;}
.y2e_c00390{bottom:679.680000px;}
.y2c_c00390{bottom:681.120000px;}
.y30_c00390{bottom:682.560000px;}
.y27_c00390{bottom:721.440000px;}
.y25_c00390{bottom:722.160000px;}
.y26_c00390{bottom:723.600000px;}
.y28_c00390{bottom:724.320000px;}
.y29_c00390{bottom:725.040000px;}
.y2a_c00390{bottom:725.760000px;}
.y23_c00390{bottom:764.640000px;}
.y21_c00390{bottom:766.080000px;}
.y24_c00390{bottom:766.800000px;}
.y22_c00390{bottom:767.520000px;}
.y1d_c00390{bottom:808.560000px;}
.y20_c00390{bottom:809.280000px;}
.y1e_c00390{bottom:810.720000px;}
.y1f_c00390{bottom:811.440000px;}
.y1c_c00390{bottom:852.480000px;}
.y1b_c00390{bottom:853.920000px;}
.y1a_c00390{bottom:883.440000px;}
.y16_c00390{bottom:884.160000px;}
.y19_c00390{bottom:885.600000px;}
.y17_c00390{bottom:886.320000px;}
.y18_c00390{bottom:887.040000px;}
.y13_c00390{bottom:926.640000px;}
.y12_c00390{bottom:928.080000px;}
.y15_c00390{bottom:928.800000px;}
.y14_c00390{bottom:929.520000px;}
.yf_c00390{bottom:958.320000px;}
.ye_c00390{bottom:959.040000px;}
.yc_c00390{bottom:959.760000px;}
.y11_c00390{bottom:960.480000px;}
.yd_c00390{bottom:961.920000px;}
.y10_c00390{bottom:962.640000px;}
.ya_c00390{bottom:1002.240000px;}
.y7_c00390{bottom:1002.960000px;}
.yb_c00390{bottom:1004.400000px;}
.y8_c00390{bottom:1005.120000px;}
.y9_c00390{bottom:1005.840000px;}
.y2_c00390{bottom:1044.720000px;}
.y3_c00390{bottom:1046.160000px;}
.y4_c00390{bottom:1047.600000px;}
.y5_c00390{bottom:1048.320000px;}
.y6_c00390{bottom:1049.040000px;}
.y1_c00390{bottom:1108.800000px;}
.hc_c00390{height:31.100625px;}
.he_c00390{height:33.692344px;}
.h8_c00390{height:38.875781px;}
.ha_c00390{height:41.467500px;}
.h5_c00390{height:44.059219px;}
.h6_c00390{height:46.650937px;}
.h7_c00390{height:49.242656px;}
.h4_c00390{height:51.834375px;}
.hf_c00390{height:52.410938px;}
.h3_c00390{height:54.426094px;}
.h11_c00390{height:55.579219px;}
.h10_c00390{height:57.017812px;}
.hd_c00390{height:59.609531px;}
.h9_c00390{height:62.201250px;}
.hb_c00390{height:64.792969px;}
.h2_c00390{height:67.384687px;}
.h12_c00390{height:69.976406px;}
.h0_c00390{height:1154.880000px;}
.h1_c00390{height:1155.000000px;}
.w1_c00390{width:768.000000px;}
.w0_c00390{width:768.240000px;}
.x0_c00390{left:0.000000px;}
.x2_c00390{left:59.760000px;}
.x26_c00390{left:61.200000px;}
.x2e_c00390{left:62.640000px;}
.x3_c00390{left:134.640000px;}
.x1c_c00390{left:136.080000px;}
.x4_c00390{left:177.840000px;}
.x16_c00390{left:179.280000px;}
.xf_c00390{left:187.920000px;}
.x17_c00390{left:220.320000px;}
.x5_c00390{left:231.120000px;}
.x32_c00390{left:233.280000px;}
.x10_c00390{left:242.640000px;}
.x23_c00390{left:254.160000px;}
.x27_c00390{left:265.680000px;}
.x6_c00390{left:275.040000px;}
.xb_c00390{left:286.560000px;}
.x33_c00390{left:288.000000px;}
.x11_c00390{left:297.360000px;}
.x30_c00390{left:298.800000px;}
.x2f_c00390{left:318.960000px;}
.x18_c00390{left:328.320000px;}
.x24_c00390{left:330.480000px;}
.x7_c00390{left:339.840000px;}
.x19_c00390{left:351.360000px;}
.x20_c00390{left:373.680000px;}
.x12_c00390{left:383.040000px;}
.x1f_c00390{left:394.560000px;}
.x2c_c00390{left:405.360000px;}
.x34_c00390{left:416.880000px;}
.x21_c00390{left:427.680000px;}
.x13_c00390{left:437.040000px;}
.x1a_c00390{left:458.640000px;}
.x35_c00390{left:470.880000px;}
.x22_c00390{left:512.640000px;}
.x1b_c00390{left:514.080000px;}
.x14_c00390{left:523.440000px;}
.x2d_c00390{left:547.200000px;}
.x28_c00390{left:558.000000px;}
.x25_c00390{left:578.160000px;}
.x1d_c00390{left:589.680000px;}
.x8_c00390{left:600.480000px;}
.xc_c00390{left:611.280000px;}
.x29_c00390{left:612.720000px;}
.x9_c00390{left:633.600000px;}
.xd_c00390{left:643.680000px;}
.x1e_c00390{left:645.120000px;}
.x1_c00390{left:667.440000px;}
.xa_c00390{left:676.080000px;}
.xe_c00390{left:677.520000px;}
.x15_c00390{left:686.880000px;}
.x2a_c00390{left:688.320000px;}
.x31_c00390{left:689.760000px;}
.x2b_c00390{left:708.480000px;}
@media print{
.v3_c00390{vertical-align:-5.120000pt;}
.v0_c00390{vertical-align:0.000000pt;}
.v1_c00390{vertical-align:5.120000pt;}
.v2_c00390{vertical-align:10.240000pt;}
.ls0_c00390{letter-spacing:0.000000pt;}
.ws3_c00390{word-spacing:0.000000pt;}
.ws1_c00390{word-spacing:4.942933pt;}
.ws2_c00390{word-spacing:9.126400pt;}
.ws0_c00390{word-spacing:10.507733pt;}
.fsa_c00390{font-size:30.720000pt;}
.fsc_c00390{font-size:33.280000pt;}
.fs6_c00390{font-size:38.400000pt;}
.fs8_c00390{font-size:40.960000pt;}
.fs3_c00390{font-size:43.520000pt;}
.fs4_c00390{font-size:46.080000pt;}
.fs5_c00390{font-size:48.640000pt;}
.fs2_c00390{font-size:51.200000pt;}
.fs1_c00390{font-size:53.760000pt;}
.fsd_c00390{font-size:56.320000pt;}
.fsb_c00390{font-size:58.880000pt;}
.fs7_c00390{font-size:61.440000pt;}
.fs9_c00390{font-size:64.000000pt;}
.fs0_c00390{font-size:66.560000pt;}
.fse_c00390{font-size:69.120000pt;}
.y0_c00390{bottom:0.000000pt;}
.y72_c00390{bottom:34.560000pt;}
.y76_c00390{bottom:36.480000pt;}
.y74_c00390{bottom:37.120000pt;}
.y73_c00390{bottom:37.760000pt;}
.y71_c00390{bottom:38.400000pt;}
.y75_c00390{bottom:39.040000pt;}
.y78_c00390{bottom:39.680000pt;}
.y77_c00390{bottom:40.320000pt;}
.y6f_c00390{bottom:72.960000pt;}
.y70_c00390{bottom:73.600000pt;}
.y6e_c00390{bottom:76.800000pt;}
.y69_c00390{bottom:111.360000pt;}
.y6b_c00390{bottom:112.640000pt;}
.y6a_c00390{bottom:114.560000pt;}
.y6c_c00390{bottom:115.200000pt;}
.y68_c00390{bottom:115.840000pt;}
.y6d_c00390{bottom:117.120000pt;}
.y66_c00390{bottom:150.400000pt;}
.y67_c00390{bottom:153.600000pt;}
.y65_c00390{bottom:154.240000pt;}
.y62_c00390{bottom:188.800000pt;}
.y61_c00390{bottom:191.360000pt;}
.y63_c00390{bottom:192.000000pt;}
.y64_c00390{bottom:192.640000pt;}
.y5c_c00390{bottom:227.200000pt;}
.y5d_c00390{bottom:229.120000pt;}
.y5b_c00390{bottom:231.040000pt;}
.y60_c00390{bottom:231.680000pt;}
.y5e_c00390{bottom:232.320000pt;}
.y5f_c00390{bottom:232.960000pt;}
.y58_c00390{bottom:266.240000pt;}
.y57_c00390{bottom:268.800000pt;}
.y5a_c00390{bottom:269.440000pt;}
.y59_c00390{bottom:270.720000pt;}
.y53_c00390{bottom:304.640000pt;}
.y54_c00390{bottom:306.560000pt;}
.y52_c00390{bottom:307.200000pt;}
.y56_c00390{bottom:309.120000pt;}
.y55_c00390{bottom:309.760000pt;}
.y4f_c00390{bottom:343.040000pt;}
.y4e_c00390{bottom:344.960000pt;}
.y51_c00390{bottom:345.600000pt;}
.y50_c00390{bottom:348.160000pt;}
.y4b_c00390{bottom:382.080000pt;}
.y49_c00390{bottom:383.360000pt;}
.y4c_c00390{bottom:384.000000pt;}
.y4d_c00390{bottom:384.640000pt;}
.y4a_c00390{bottom:385.920000pt;}
.y45_c00390{bottom:419.840000pt;}
.y44_c00390{bottom:421.760000pt;}
.y47_c00390{bottom:422.400000pt;}
.y46_c00390{bottom:424.320000pt;}
.y48_c00390{bottom:424.960000pt;}
.y3f_c00390{bottom:458.240000pt;}
.y40_c00390{bottom:460.160000pt;}
.y3e_c00390{bottom:460.800000pt;}
.y42_c00390{bottom:461.440000pt;}
.y43_c00390{bottom:462.720000pt;}
.y41_c00390{bottom:463.360000pt;}
.y3a_c00390{bottom:496.640000pt;}
.y3b_c00390{bottom:497.280000pt;}
.y39_c00390{bottom:498.560000pt;}
.y3c_c00390{bottom:499.200000pt;}
.y3d_c00390{bottom:499.840000pt;}
.y36_c00390{bottom:535.040000pt;}
.y37_c00390{bottom:536.320000pt;}
.y33_c00390{bottom:536.960000pt;}
.y38_c00390{bottom:537.600000pt;}
.y35_c00390{bottom:538.240000pt;}
.y34_c00390{bottom:538.880000pt;}
.y31_c00390{bottom:574.720000pt;}
.y32_c00390{bottom:576.640000pt;}
.y2d_c00390{bottom:602.240000pt;}
.y2b_c00390{bottom:602.880000pt;}
.y2f_c00390{bottom:603.520000pt;}
.y2e_c00390{bottom:604.160000pt;}
.y2c_c00390{bottom:605.440000pt;}
.y30_c00390{bottom:606.720000pt;}
.y27_c00390{bottom:641.280000pt;}
.y25_c00390{bottom:641.920000pt;}
.y26_c00390{bottom:643.200000pt;}
.y28_c00390{bottom:643.840000pt;}
.y29_c00390{bottom:644.480000pt;}
.y2a_c00390{bottom:645.120000pt;}
.y23_c00390{bottom:679.680000pt;}
.y21_c00390{bottom:680.960000pt;}
.y24_c00390{bottom:681.600000pt;}
.y22_c00390{bottom:682.240000pt;}
.y1d_c00390{bottom:718.720000pt;}
.y20_c00390{bottom:719.360000pt;}
.y1e_c00390{bottom:720.640000pt;}
.y1f_c00390{bottom:721.280000pt;}
.y1c_c00390{bottom:757.760000pt;}
.y1b_c00390{bottom:759.040000pt;}
.y1a_c00390{bottom:785.280000pt;}
.y16_c00390{bottom:785.920000pt;}
.y19_c00390{bottom:787.200000pt;}
.y17_c00390{bottom:787.840000pt;}
.y18_c00390{bottom:788.480000pt;}
.y13_c00390{bottom:823.680000pt;}
.y12_c00390{bottom:824.960000pt;}
.y15_c00390{bottom:825.600000pt;}
.y14_c00390{bottom:826.240000pt;}
.yf_c00390{bottom:851.840000pt;}
.ye_c00390{bottom:852.480000pt;}
.yc_c00390{bottom:853.120000pt;}
.y11_c00390{bottom:853.760000pt;}
.yd_c00390{bottom:855.040000pt;}
.y10_c00390{bottom:855.680000pt;}
.ya_c00390{bottom:890.880000pt;}
.y7_c00390{bottom:891.520000pt;}
.yb_c00390{bottom:892.800000pt;}
.y8_c00390{bottom:893.440000pt;}
.y9_c00390{bottom:894.080000pt;}
.y2_c00390{bottom:928.640000pt;}
.y3_c00390{bottom:929.920000pt;}
.y4_c00390{bottom:931.200000pt;}
.y5_c00390{bottom:931.840000pt;}
.y6_c00390{bottom:932.480000pt;}
.y1_c00390{bottom:985.600000pt;}
.hc_c00390{height:27.645000pt;}
.he_c00390{height:29.948750pt;}
.h8_c00390{height:34.556250pt;}
.ha_c00390{height:36.860000pt;}
.h5_c00390{height:39.163750pt;}
.h6_c00390{height:41.467500pt;}
.h7_c00390{height:43.771250pt;}
.h4_c00390{height:46.075000pt;}
.hf_c00390{height:46.587500pt;}
.h3_c00390{height:48.378750pt;}
.h11_c00390{height:49.403750pt;}
.h10_c00390{height:50.682500pt;}
.hd_c00390{height:52.986250pt;}
.h9_c00390{height:55.290000pt;}
.hb_c00390{height:57.593750pt;}
.h2_c00390{height:59.897500pt;}
.h12_c00390{height:62.201250pt;}
.h0_c00390{height:1026.560000pt;}
.h1_c00390{height:1026.666667pt;}
.w1_c00390{width:682.666667pt;}
.w0_c00390{width:682.880000pt;}
.x0_c00390{left:0.000000pt;}
.x2_c00390{left:53.120000pt;}
.x26_c00390{left:54.400000pt;}
.x2e_c00390{left:55.680000pt;}
.x3_c00390{left:119.680000pt;}
.x1c_c00390{left:120.960000pt;}
.x4_c00390{left:158.080000pt;}
.x16_c00390{left:159.360000pt;}
.xf_c00390{left:167.040000pt;}
.x17_c00390{left:195.840000pt;}
.x5_c00390{left:205.440000pt;}
.x32_c00390{left:207.360000pt;}
.x10_c00390{left:215.680000pt;}
.x23_c00390{left:225.920000pt;}
.x27_c00390{left:236.160000pt;}
.x6_c00390{left:244.480000pt;}
.xb_c00390{left:254.720000pt;}
.x33_c00390{left:256.000000pt;}
.x11_c00390{left:264.320000pt;}
.x30_c00390{left:265.600000pt;}
.x2f_c00390{left:283.520000pt;}
.x18_c00390{left:291.840000pt;}
.x24_c00390{left:293.760000pt;}
.x7_c00390{left:302.080000pt;}
.x19_c00390{left:312.320000pt;}
.x20_c00390{left:332.160000pt;}
.x12_c00390{left:340.480000pt;}
.x1f_c00390{left:350.720000pt;}
.x2c_c00390{left:360.320000pt;}
.x34_c00390{left:370.560000pt;}
.x21_c00390{left:380.160000pt;}
.x13_c00390{left:388.480000pt;}
.x1a_c00390{left:407.680000pt;}
.x35_c00390{left:418.560000pt;}
.x22_c00390{left:455.680000pt;}
.x1b_c00390{left:456.960000pt;}
.x14_c00390{left:465.280000pt;}
.x2d_c00390{left:486.400000pt;}
.x28_c00390{left:496.000000pt;}
.x25_c00390{left:513.920000pt;}
.x1d_c00390{left:524.160000pt;}
.x8_c00390{left:533.760000pt;}
.xc_c00390{left:543.360000pt;}
.x29_c00390{left:544.640000pt;}
.x9_c00390{left:563.200000pt;}
.xd_c00390{left:572.160000pt;}
.x1e_c00390{left:573.440000pt;}
.x1_c00390{left:593.280000pt;}
.xa_c00390{left:600.960000pt;}
.xe_c00390{left:602.240000pt;}
.x15_c00390{left:610.560000pt;}
.x2a_c00390{left:611.840000pt;}
.x31_c00390{left:613.120000pt;}
.x2b_c00390{left:629.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_643c330f4fe38704c19fbee7.woff2')format("woff");}.ff1_c00391{font-family:ff1_c00391;line-height:1.109863;font-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_c00391{transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);}
.m27_c00391{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m41_c00391{transform:matrix(0.231875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231875,0.000000,0.000000,0.250000,0,0);}
.m31_c00391{transform:matrix(0.232125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232125,0.000000,0.000000,0.250000,0,0);}
.m25_c00391{transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);}
.m26_c00391{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m2d_c00391{transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);}
.m46_c00391{transform:matrix(0.246975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246975,0.000000,0.000000,0.250000,0,0);}
.m1f_c00391{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m2_c00391{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m39_c00391{transform:matrix(0.248350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248350,0.000000,0.000000,0.250000,0,0);}
.m36_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);}
.me_c00391{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m13_c00391{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m3_c00391{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);}
.m33_c00391{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_c00391{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m11_c00391{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00391{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m44_c00391{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);}
.m23_c00391{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);}
.m3f_c00391{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m17_c00391{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m7_c00391{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00391{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mf_c00391{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00391{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m10_c00391{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m16_c00391{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m45_c00391{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m15_c00391{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m12_c00391{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m43_c00391{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m40_c00391{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m5_c00391{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m6_c00391{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m22_c00391{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m18_c00391{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m14_c00391{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m21_c00391{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);}
.m2a_c00391{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m32_c00391{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m0_c00391{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.md_c00391{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m34_c00391{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00391{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);}
.m1d_c00391{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00391{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);}
.m29_c00391{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00391{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m1_c00391{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m4_c00391{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m8_c00391{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);}
.m28_c00391{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);}
.m20_c00391{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00391{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);}
.m3e_c00391{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);}
.m49_c00391{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m24_c00391{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00391{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m47_c00391{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m42_c00391{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);}
.m37_c00391{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);}
.m35_c00391{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m30_c00391{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.mc_c00391{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00391{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00391{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);}
.m38_c00391{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.ma_c00391{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);}
.mb_c00391{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m48_c00391{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);}
.m19_c00391{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00391{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.v1_c00391{vertical-align:-2.880000px;}
.v0_c00391{vertical-align:0.000000px;}
.ls0_c00391{letter-spacing:0.000000px;}
.sc__c00391{text-shadow:none;}
.sc0_c00391{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00391{-webkit-text-stroke:0px transparent;}
.sc0_c00391{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00391{word-spacing:0.000000px;}
.ws0_c00391{word-spacing:51.331200px;}
.fc0_c00391{color:transparent;}
.fsf_c00391{font-size:34.560000px;}
.fs7_c00391{font-size:37.440000px;}
.fsd_c00391{font-size:40.320000px;}
.fse_c00391{font-size:43.200000px;}
.fs8_c00391{font-size:46.080000px;}
.fs5_c00391{font-size:48.960000px;}
.fs6_c00391{font-size:51.840000px;}
.fsa_c00391{font-size:54.720000px;}
.fs4_c00391{font-size:57.600000px;}
.fs1_c00391{font-size:60.480000px;}
.fsc_c00391{font-size:63.360000px;}
.fsb_c00391{font-size:66.240000px;}
.fs3_c00391{font-size:69.120000px;}
.fs9_c00391{font-size:72.000000px;}
.fs2_c00391{font-size:74.880000px;}
.fs0_c00391{font-size:77.760000px;}
.y0_c00391{bottom:0.000000px;}
.y70_c00391{bottom:24.480000px;}
.y6e_c00391{bottom:25.920000px;}
.y6f_c00391{bottom:27.360000px;}
.y69_c00391{bottom:55.440000px;}
.y72_c00391{bottom:56.160000px;}
.y6b_c00391{bottom:56.880000px;}
.y71_c00391{bottom:57.600000px;}
.y68_c00391{bottom:58.320000px;}
.y6d_c00391{bottom:59.040000px;}
.y6c_c00391{bottom:59.760000px;}
.y6a_c00391{bottom:60.480000px;}
.y65_c00391{bottom:98.640000px;}
.y67_c00391{bottom:100.080000px;}
.y64_c00391{bottom:102.240000px;}
.y66_c00391{bottom:102.960000px;}
.y61_c00391{bottom:142.560000px;}
.y63_c00391{bottom:143.280000px;}
.y3d_c00391{bottom:144.000000px;}
.y3c_c00391{bottom:144.720000px;}
.y3e_c00391{bottom:145.440000px;}
.y60_c00391{bottom:146.160000px;}
.y62_c00391{bottom:146.880000px;}
.y3b_c00391{bottom:185.760000px;}
.y5f_c00391{bottom:186.480000px;}
.y3a_c00391{bottom:187.200000px;}
.y39_c00391{bottom:187.920000px;}
.y5e_c00391{bottom:190.080000px;}
.y5b_c00391{bottom:228.960000px;}
.y37_c00391{bottom:229.680000px;}
.y5d_c00391{bottom:230.400000px;}
.y36_c00391{bottom:231.120000px;}
.y38_c00391{bottom:231.840000px;}
.y5a_c00391{bottom:232.560000px;}
.y5c_c00391{bottom:233.280000px;}
.y35_c00391{bottom:272.880000px;}
.y59_c00391{bottom:273.600000px;}
.y34_c00391{bottom:274.320000px;}
.y57_c00391{bottom:275.760000px;}
.y58_c00391{bottom:276.480000px;}
.y55_c00391{bottom:315.360000px;}
.y32_c00391{bottom:316.080000px;}
.y31_c00391{bottom:316.800000px;}
.y33_c00391{bottom:318.240000px;}
.y56_c00391{bottom:318.960000px;}
.y30_c00391{bottom:357.840000px;}
.y9_c00391{bottom:358.560000px;}
.y2f_c00391{bottom:359.280000px;}
.y8_c00391{bottom:361.440000px;}
.ya_c00391{bottom:362.160000px;}
.y2e_c00391{bottom:401.040000px;}
.y2d_c00391{bottom:401.760000px;}
.y2c_c00391{bottom:403.200000px;}
.y54_c00391{bottom:405.360000px;}
.y53_c00391{bottom:444.240000px;}
.y2b_c00391{bottom:444.960000px;}
.y52_c00391{bottom:448.560000px;}
.y51_c00391{bottom:488.160000px;}
.y29_c00391{bottom:488.880000px;}
.y28_c00391{bottom:489.600000px;}
.y2a_c00391{bottom:490.320000px;}
.y50_c00391{bottom:491.040000px;}
.y27_c00391{bottom:531.360000px;}
.y26_c00391{bottom:532.800000px;}
.y4e_c00391{bottom:533.520000px;}
.y4f_c00391{bottom:534.960000px;}
.y4d_c00391{bottom:574.560000px;}
.y4c_c00391{bottom:575.280000px;}
.y23_c00391{bottom:576.000000px;}
.y4a_c00391{bottom:576.720000px;}
.y24_c00391{bottom:577.440000px;}
.y25_c00391{bottom:578.160000px;}
.y4b_c00391{bottom:579.600000px;}
.y22_c00391{bottom:618.480000px;}
.y49_c00391{bottom:619.920000px;}
.y21_c00391{bottom:621.360000px;}
.y20_c00391{bottom:661.680000px;}
.y1f_c00391{bottom:662.400000px;}
.y48_c00391{bottom:663.840000px;}
.y47_c00391{bottom:704.880000px;}
.y1c_c00391{bottom:705.600000px;}
.y1e_c00391{bottom:707.040000px;}
.y1d_c00391{bottom:708.480000px;}
.y46_c00391{bottom:747.360000px;}
.y1b_c00391{bottom:748.080000px;}
.y1a_c00391{bottom:748.800000px;}
.y44_c00391{bottom:750.240000px;}
.y45_c00391{bottom:752.400000px;}
.y19_c00391{bottom:791.280000px;}
.y18_c00391{bottom:792.000000px;}
.y43_c00391{bottom:793.440000px;}
.y16_c00391{bottom:834.480000px;}
.y41_c00391{bottom:835.200000px;}
.y15_c00391{bottom:835.920000px;}
.y17_c00391{bottom:836.640000px;}
.y42_c00391{bottom:837.360000px;}
.y13_c00391{bottom:877.680000px;}
.y11_c00391{bottom:878.400000px;}
.y14_c00391{bottom:879.120000px;}
.y12_c00391{bottom:879.840000px;}
.y10_c00391{bottom:919.440000px;}
.yf_c00391{bottom:920.880000px;}
.y3f_c00391{bottom:922.320000px;}
.y40_c00391{bottom:923.760000px;}
.ye_c00391{bottom:963.360000px;}
.y7_c00391{bottom:964.080000px;}
.y6_c00391{bottom:964.800000px;}
.yc_c00391{bottom:1005.840000px;}
.yd_c00391{bottom:1006.560000px;}
.y5_c00391{bottom:1007.280000px;}
.y4_c00391{bottom:1008.720000px;}
.yb_c00391{bottom:1010.160000px;}
.y3_c00391{bottom:1049.760000px;}
.y2_c00391{bottom:1051.920000px;}
.y1_c00391{bottom:1121.040000px;}
.h11_c00391{height:31.100625px;}
.h9_c00391{height:33.692344px;}
.hf_c00391{height:36.284062px;}
.h10_c00391{height:38.875781px;}
.ha_c00391{height:41.467500px;}
.h7_c00391{height:44.059219px;}
.h8_c00391{height:46.650937px;}
.hc_c00391{height:49.242656px;}
.h6_c00391{height:51.834375px;}
.h3_c00391{height:54.426094px;}
.he_c00391{height:57.017812px;}
.hd_c00391{height:59.609531px;}
.h5_c00391{height:62.201250px;}
.hb_c00391{height:64.792969px;}
.h4_c00391{height:67.384687px;}
.h2_c00391{height:69.976406px;}
.h0_c00391{height:1157.760000px;}
.h1_c00391{height:1158.000000px;}
.w1_c00391{width:772.500000px;}
.w0_c00391{width:772.560000px;}
.x0_c00391{left:0.000000px;}
.x2_c00391{left:63.360000px;}
.x5_c00391{left:136.080000px;}
.x3_c00391{left:137.520000px;}
.x2b_c00391{left:177.120000px;}
.x1d_c00391{left:180.000000px;}
.x21_c00391{left:189.360000px;}
.x6_c00391{left:221.760000px;}
.x4_c00391{left:224.640000px;}
.x20_c00391{left:232.560000px;}
.x22_c00391{left:241.920000px;}
.x1e_c00391{left:266.400000px;}
.x7_c00391{left:276.480000px;}
.x1a_c00391{left:288.000000px;}
.x1f_c00391{left:310.320000px;}
.x28_c00391{left:318.240000px;}
.x2c_c00391{left:319.680000px;}
.x8_c00391{left:330.480000px;}
.x1b_c00391{left:332.640000px;}
.x1c_c00391{left:342.720000px;}
.x23_c00391{left:373.680000px;}
.x9_c00391{left:384.480000px;}
.x29_c00391{left:416.160000px;}
.x24_c00391{left:427.680000px;}
.x25_c00391{left:470.880000px;}
.x26_c00391{left:481.680000px;}
.x2a_c00391{left:512.640000px;}
.x27_c00391{left:524.880000px;}
.x14_c00391{left:547.200000px;}
.x12_c00391{left:558.720000px;}
.xa_c00391{left:560.160000px;}
.xe_c00391{left:561.600000px;}
.x15_c00391{left:578.880000px;}
.xf_c00391{left:581.040000px;}
.x19_c00391{left:612.000000px;}
.x13_c00391{left:613.440000px;}
.xb_c00391{left:614.880000px;}
.xc_c00391{left:646.560000px;}
.x17_c00391{left:655.200000px;}
.x1_c00391{left:683.280000px;}
.x18_c00391{left:688.320000px;}
.x10_c00391{left:689.760000px;}
.xd_c00391{left:691.200000px;}
.x16_c00391{left:709.920000px;}
.x11_c00391{left:711.360000px;}
@media print{
.v1_c00391{vertical-align:-2.560000pt;}
.v0_c00391{vertical-align:0.000000pt;}
.ls0_c00391{letter-spacing:0.000000pt;}
.ws1_c00391{word-spacing:0.000000pt;}
.ws0_c00391{word-spacing:45.627733pt;}
.fsf_c00391{font-size:30.720000pt;}
.fs7_c00391{font-size:33.280000pt;}
.fsd_c00391{font-size:35.840000pt;}
.fse_c00391{font-size:38.400000pt;}
.fs8_c00391{font-size:40.960000pt;}
.fs5_c00391{font-size:43.520000pt;}
.fs6_c00391{font-size:46.080000pt;}
.fsa_c00391{font-size:48.640000pt;}
.fs4_c00391{font-size:51.200000pt;}
.fs1_c00391{font-size:53.760000pt;}
.fsc_c00391{font-size:56.320000pt;}
.fsb_c00391{font-size:58.880000pt;}
.fs3_c00391{font-size:61.440000pt;}
.fs9_c00391{font-size:64.000000pt;}
.fs2_c00391{font-size:66.560000pt;}
.fs0_c00391{font-size:69.120000pt;}
.y0_c00391{bottom:0.000000pt;}
.y70_c00391{bottom:21.760000pt;}
.y6e_c00391{bottom:23.040000pt;}
.y6f_c00391{bottom:24.320000pt;}
.y69_c00391{bottom:49.280000pt;}
.y72_c00391{bottom:49.920000pt;}
.y6b_c00391{bottom:50.560000pt;}
.y71_c00391{bottom:51.200000pt;}
.y68_c00391{bottom:51.840000pt;}
.y6d_c00391{bottom:52.480000pt;}
.y6c_c00391{bottom:53.120000pt;}
.y6a_c00391{bottom:53.760000pt;}
.y65_c00391{bottom:87.680000pt;}
.y67_c00391{bottom:88.960000pt;}
.y64_c00391{bottom:90.880000pt;}
.y66_c00391{bottom:91.520000pt;}
.y61_c00391{bottom:126.720000pt;}
.y63_c00391{bottom:127.360000pt;}
.y3d_c00391{bottom:128.000000pt;}
.y3c_c00391{bottom:128.640000pt;}
.y3e_c00391{bottom:129.280000pt;}
.y60_c00391{bottom:129.920000pt;}
.y62_c00391{bottom:130.560000pt;}
.y3b_c00391{bottom:165.120000pt;}
.y5f_c00391{bottom:165.760000pt;}
.y3a_c00391{bottom:166.400000pt;}
.y39_c00391{bottom:167.040000pt;}
.y5e_c00391{bottom:168.960000pt;}
.y5b_c00391{bottom:203.520000pt;}
.y37_c00391{bottom:204.160000pt;}
.y5d_c00391{bottom:204.800000pt;}
.y36_c00391{bottom:205.440000pt;}
.y38_c00391{bottom:206.080000pt;}
.y5a_c00391{bottom:206.720000pt;}
.y5c_c00391{bottom:207.360000pt;}
.y35_c00391{bottom:242.560000pt;}
.y59_c00391{bottom:243.200000pt;}
.y34_c00391{bottom:243.840000pt;}
.y57_c00391{bottom:245.120000pt;}
.y58_c00391{bottom:245.760000pt;}
.y55_c00391{bottom:280.320000pt;}
.y32_c00391{bottom:280.960000pt;}
.y31_c00391{bottom:281.600000pt;}
.y33_c00391{bottom:282.880000pt;}
.y56_c00391{bottom:283.520000pt;}
.y30_c00391{bottom:318.080000pt;}
.y9_c00391{bottom:318.720000pt;}
.y2f_c00391{bottom:319.360000pt;}
.y8_c00391{bottom:321.280000pt;}
.ya_c00391{bottom:321.920000pt;}
.y2e_c00391{bottom:356.480000pt;}
.y2d_c00391{bottom:357.120000pt;}
.y2c_c00391{bottom:358.400000pt;}
.y54_c00391{bottom:360.320000pt;}
.y53_c00391{bottom:394.880000pt;}
.y2b_c00391{bottom:395.520000pt;}
.y52_c00391{bottom:398.720000pt;}
.y51_c00391{bottom:433.920000pt;}
.y29_c00391{bottom:434.560000pt;}
.y28_c00391{bottom:435.200000pt;}
.y2a_c00391{bottom:435.840000pt;}
.y50_c00391{bottom:436.480000pt;}
.y27_c00391{bottom:472.320000pt;}
.y26_c00391{bottom:473.600000pt;}
.y4e_c00391{bottom:474.240000pt;}
.y4f_c00391{bottom:475.520000pt;}
.y4d_c00391{bottom:510.720000pt;}
.y4c_c00391{bottom:511.360000pt;}
.y23_c00391{bottom:512.000000pt;}
.y4a_c00391{bottom:512.640000pt;}
.y24_c00391{bottom:513.280000pt;}
.y25_c00391{bottom:513.920000pt;}
.y4b_c00391{bottom:515.200000pt;}
.y22_c00391{bottom:549.760000pt;}
.y49_c00391{bottom:551.040000pt;}
.y21_c00391{bottom:552.320000pt;}
.y20_c00391{bottom:588.160000pt;}
.y1f_c00391{bottom:588.800000pt;}
.y48_c00391{bottom:590.080000pt;}
.y47_c00391{bottom:626.560000pt;}
.y1c_c00391{bottom:627.200000pt;}
.y1e_c00391{bottom:628.480000pt;}
.y1d_c00391{bottom:629.760000pt;}
.y46_c00391{bottom:664.320000pt;}
.y1b_c00391{bottom:664.960000pt;}
.y1a_c00391{bottom:665.600000pt;}
.y44_c00391{bottom:666.880000pt;}
.y45_c00391{bottom:668.800000pt;}
.y19_c00391{bottom:703.360000pt;}
.y18_c00391{bottom:704.000000pt;}
.y43_c00391{bottom:705.280000pt;}
.y16_c00391{bottom:741.760000pt;}
.y41_c00391{bottom:742.400000pt;}
.y15_c00391{bottom:743.040000pt;}
.y17_c00391{bottom:743.680000pt;}
.y42_c00391{bottom:744.320000pt;}
.y13_c00391{bottom:780.160000pt;}
.y11_c00391{bottom:780.800000pt;}
.y14_c00391{bottom:781.440000pt;}
.y12_c00391{bottom:782.080000pt;}
.y10_c00391{bottom:817.280000pt;}
.yf_c00391{bottom:818.560000pt;}
.y3f_c00391{bottom:819.840000pt;}
.y40_c00391{bottom:821.120000pt;}
.ye_c00391{bottom:856.320000pt;}
.y7_c00391{bottom:856.960000pt;}
.y6_c00391{bottom:857.600000pt;}
.yc_c00391{bottom:894.080000pt;}
.yd_c00391{bottom:894.720000pt;}
.y5_c00391{bottom:895.360000pt;}
.y4_c00391{bottom:896.640000pt;}
.yb_c00391{bottom:897.920000pt;}
.y3_c00391{bottom:933.120000pt;}
.y2_c00391{bottom:935.040000pt;}
.y1_c00391{bottom:996.480000pt;}
.h11_c00391{height:27.645000pt;}
.h9_c00391{height:29.948750pt;}
.hf_c00391{height:32.252500pt;}
.h10_c00391{height:34.556250pt;}
.ha_c00391{height:36.860000pt;}
.h7_c00391{height:39.163750pt;}
.h8_c00391{height:41.467500pt;}
.hc_c00391{height:43.771250pt;}
.h6_c00391{height:46.075000pt;}
.h3_c00391{height:48.378750pt;}
.he_c00391{height:50.682500pt;}
.hd_c00391{height:52.986250pt;}
.h5_c00391{height:55.290000pt;}
.hb_c00391{height:57.593750pt;}
.h4_c00391{height:59.897500pt;}
.h2_c00391{height:62.201250pt;}
.h0_c00391{height:1029.120000pt;}
.h1_c00391{height:1029.333333pt;}
.w1_c00391{width:686.666667pt;}
.w0_c00391{width:686.720000pt;}
.x0_c00391{left:0.000000pt;}
.x2_c00391{left:56.320000pt;}
.x5_c00391{left:120.960000pt;}
.x3_c00391{left:122.240000pt;}
.x2b_c00391{left:157.440000pt;}
.x1d_c00391{left:160.000000pt;}
.x21_c00391{left:168.320000pt;}
.x6_c00391{left:197.120000pt;}
.x4_c00391{left:199.680000pt;}
.x20_c00391{left:206.720000pt;}
.x22_c00391{left:215.040000pt;}
.x1e_c00391{left:236.800000pt;}
.x7_c00391{left:245.760000pt;}
.x1a_c00391{left:256.000000pt;}
.x1f_c00391{left:275.840000pt;}
.x28_c00391{left:282.880000pt;}
.x2c_c00391{left:284.160000pt;}
.x8_c00391{left:293.760000pt;}
.x1b_c00391{left:295.680000pt;}
.x1c_c00391{left:304.640000pt;}
.x23_c00391{left:332.160000pt;}
.x9_c00391{left:341.760000pt;}
.x29_c00391{left:369.920000pt;}
.x24_c00391{left:380.160000pt;}
.x25_c00391{left:418.560000pt;}
.x26_c00391{left:428.160000pt;}
.x2a_c00391{left:455.680000pt;}
.x27_c00391{left:466.560000pt;}
.x14_c00391{left:486.400000pt;}
.x12_c00391{left:496.640000pt;}
.xa_c00391{left:497.920000pt;}
.xe_c00391{left:499.200000pt;}
.x15_c00391{left:514.560000pt;}
.xf_c00391{left:516.480000pt;}
.x19_c00391{left:544.000000pt;}
.x13_c00391{left:545.280000pt;}
.xb_c00391{left:546.560000pt;}
.xc_c00391{left:574.720000pt;}
.x17_c00391{left:582.400000pt;}
.x1_c00391{left:607.360000pt;}
.x18_c00391{left:611.840000pt;}
.x10_c00391{left:613.120000pt;}
.xd_c00391{left:614.400000pt;}
.x16_c00391{left:631.040000pt;}
.x11_c00391{left:632.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ed8bbfc60e69903ab1d6347c.woff2')format("woff");}.ff1_c00392{font-family:ff1_c00392;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m35_c00392{transform:matrix(0.185150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185150,0.000000,0.000000,0.250000,0,0);}
.m3d_c00392{transform:matrix(0.229950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229950,0.000000,0.000000,0.250000,0,0);}
.m24_c00392{transform:matrix(0.232125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232125,0.000000,0.000000,0.250000,0,0);}
.m3b_c00392{transform:matrix(0.236800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236800,0.000000,0.000000,0.250000,0,0);}
.m1_c00392{transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);}
.m39_c00392{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00392{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00392{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);}
.m21_c00392{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);}
.m1f_c00392{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_c00392{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m12_c00392{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m8_c00392{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mf_c00392{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);}
.m31_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);}
.m2a_c00392{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.me_c00392{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m6_c00392{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m10_c00392{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m25_c00392{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00392{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m19_c00392{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.ma_c00392{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m18_c00392{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m42_c00392{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00392{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m13_c00392{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m43_c00392{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m20_c00392{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m0_c00392{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m14_c00392{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m28_c00392{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m34_c00392{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00392{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3_c00392{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m15_c00392{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00392{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m16_c00392{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00392{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);}
.m30_c00392{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m5_c00392{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m9_c00392{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m4_c00392{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);}
.m38_c00392{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m27_c00392{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m7_c00392{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m37_c00392{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);}
.m3c_c00392{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.mc_c00392{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00392{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);}
.m36_c00392{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);}
.m29_c00392{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00392{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m11_c00392{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);}
.m33_c00392{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);}
.m2c_c00392{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00392{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);}
.m3e_c00392{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m17_c00392{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);}
.m2_c00392{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m26_c00392{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m32_c00392{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);}
.m40_c00392{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);}
.m23_c00392{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);}
.md_c00392{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m22_c00392{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m41_c00392{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00392{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.v1_c00392{vertical-align:-8.640000px;}
.v0_c00392{vertical-align:0.000000px;}
.ls1_c00392{letter-spacing:0.000000px;}
.ls0_c00392{letter-spacing:90.638400px;}
.sc__c00392{text-shadow:none;}
.sc0_c00392{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00392{-webkit-text-stroke:0px transparent;}
.sc0_c00392{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00392{word-spacing:0.000000px;}
.fc0_c00392{color:transparent;}
.fse_c00392{font-size:34.560000px;}
.fsa_c00392{font-size:37.440000px;}
.fsc_c00392{font-size:46.080000px;}
.fs2_c00392{font-size:48.960000px;}
.fs3_c00392{font-size:51.840000px;}
.fs4_c00392{font-size:54.720000px;}
.fs7_c00392{font-size:57.600000px;}
.fs5_c00392{font-size:60.480000px;}
.fsb_c00392{font-size:63.360000px;}
.fs9_c00392{font-size:66.240000px;}
.fs0_c00392{font-size:69.120000px;}
.fs6_c00392{font-size:72.000000px;}
.fs1_c00392{font-size:74.880000px;}
.fs8_c00392{font-size:77.760000px;}
.fsd_c00392{font-size:97.920000px;}
.y0_c00392{bottom:0.000000px;}
.y73_c00392{bottom:57.600000px;}
.y6c_c00392{bottom:59.040000px;}
.y6d_c00392{bottom:59.760000px;}
.y6e_c00392{bottom:60.480000px;}
.y6a_c00392{bottom:100.800000px;}
.y69_c00392{bottom:101.520000px;}
.y6b_c00392{bottom:102.240000px;}
.y68_c00392{bottom:103.680000px;}
.y64_c00392{bottom:152.640000px;}
.y67_c00392{bottom:154.080000px;}
.y65_c00392{bottom:154.800000px;}
.y71_c00392{bottom:155.520000px;}
.y63_c00392{bottom:156.960000px;}
.y66_c00392{bottom:157.680000px;}
.y72_c00392{bottom:158.400000px;}
.y60_c00392{bottom:196.560000px;}
.y62_c00392{bottom:197.280000px;}
.y5f_c00392{bottom:198.720000px;}
.y61_c00392{bottom:200.160000px;}
.y5b_c00392{bottom:239.760000px;}
.y5e_c00392{bottom:240.480000px;}
.y5a_c00392{bottom:241.920000px;}
.y6f_c00392{bottom:242.640000px;}
.y5c_c00392{bottom:243.360000px;}
.y5d_c00392{bottom:244.080000px;}
.y70_c00392{bottom:244.800000px;}
.y54_c00392{bottom:282.960000px;}
.y58_c00392{bottom:283.680000px;}
.y55_c00392{bottom:284.400000px;}
.y57_c00392{bottom:285.120000px;}
.y53_c00392{bottom:285.840000px;}
.y56_c00392{bottom:286.560000px;}
.y59_c00392{bottom:287.280000px;}
.y52_c00392{bottom:326.880000px;}
.y50_c00392{bottom:327.600000px;}
.y51_c00392{bottom:329.760000px;}
.y4c_c00392{bottom:358.560000px;}
.y4d_c00392{bottom:360.720000px;}
.y4b_c00392{bottom:361.440000px;}
.y4e_c00392{bottom:362.880000px;}
.y4f_c00392{bottom:364.320000px;}
.y48_c00392{bottom:393.840000px;}
.y49_c00392{bottom:404.640000px;}
.y4a_c00392{bottom:405.360000px;}
.y45_c00392{bottom:456.480000px;}
.y44_c00392{bottom:458.640000px;}
.y40_c00392{bottom:498.960000px;}
.y43_c00392{bottom:500.400000px;}
.y41_c00392{bottom:501.120000px;}
.y3f_c00392{bottom:501.840000px;}
.y42_c00392{bottom:503.280000px;}
.y47_c00392{bottom:504.720000px;}
.y3c_c00392{bottom:542.880000px;}
.y3d_c00392{bottom:544.320000px;}
.y3b_c00392{bottom:545.040000px;}
.y3e_c00392{bottom:546.480000px;}
.y46_c00392{bottom:547.920000px;}
.y37_c00392{bottom:586.080000px;}
.y39_c00392{bottom:586.800000px;}
.y36_c00392{bottom:587.520000px;}
.y38_c00392{bottom:589.680000px;}
.y3a_c00392{bottom:590.400000px;}
.y35_c00392{bottom:629.280000px;}
.y33_c00392{bottom:630.720000px;}
.y34_c00392{bottom:632.880000px;}
.y2e_c00392{bottom:660.960000px;}
.y2f_c00392{bottom:662.400000px;}
.y2d_c00392{bottom:663.120000px;}
.y32_c00392{bottom:663.840000px;}
.y31_c00392{bottom:664.560000px;}
.y30_c00392{bottom:665.280000px;}
.y29_c00392{bottom:704.160000px;}
.y2b_c00392{bottom:704.880000px;}
.y28_c00392{bottom:705.600000px;}
.y2c_c00392{bottom:707.040000px;}
.y2a_c00392{bottom:708.480000px;}
.y23_c00392{bottom:747.360000px;}
.y22_c00392{bottom:748.800000px;}
.y25_c00392{bottom:749.520000px;}
.y24_c00392{bottom:750.960000px;}
.y27_c00392{bottom:751.680000px;}
.y26_c00392{bottom:752.400000px;}
.y1e_c00392{bottom:790.560000px;}
.y20_c00392{bottom:791.280000px;}
.y1d_c00392{bottom:792.000000px;}
.y21_c00392{bottom:792.720000px;}
.y1f_c00392{bottom:794.160000px;}
.y14_c00392{bottom:833.760000px;}
.y13_c00392{bottom:835.200000px;}
.y1c_c00392{bottom:838.080000px;}
.yf_c00392{bottom:876.960000px;}
.y12_c00392{bottom:877.680000px;}
.ye_c00392{bottom:878.400000px;}
.y1b_c00392{bottom:879.840000px;}
.y11_c00392{bottom:880.560000px;}
.y10_c00392{bottom:881.280000px;}
.yd_c00392{bottom:920.880000px;}
.yc_c00392{bottom:921.600000px;}
.y1a_c00392{bottom:922.320000px;}
.y9_c00392{bottom:963.360000px;}
.y8_c00392{bottom:964.800000px;}
.y19_c00392{bottom:965.520000px;}
.yb_c00392{bottom:966.960000px;}
.ya_c00392{bottom:967.680000px;}
.y6_c00392{bottom:1007.280000px;}
.y5_c00392{bottom:1008.000000px;}
.y18_c00392{bottom:1008.720000px;}
.y7_c00392{bottom:1010.880000px;}
.y2_c00392{bottom:1049.760000px;}
.y1_c00392{bottom:1051.200000px;}
.y16_c00392{bottom:1051.920000px;}
.y4_c00392{bottom:1052.640000px;}
.y3_c00392{bottom:1053.360000px;}
.y17_c00392{bottom:1054.080000px;}
.y15_c00392{bottom:1117.440000px;}
.h10_c00392{height:31.100625px;}
.hc_c00392{height:33.692344px;}
.he_c00392{height:41.467500px;}
.h4_c00392{height:44.059219px;}
.h5_c00392{height:46.650937px;}
.h6_c00392{height:49.242656px;}
.h9_c00392{height:51.834375px;}
.h7_c00392{height:54.426094px;}
.hd_c00392{height:57.017812px;}
.hb_c00392{height:59.609531px;}
.h2_c00392{height:62.201250px;}
.h8_c00392{height:64.792969px;}
.h3_c00392{height:67.384687px;}
.ha_c00392{height:69.976406px;}
.hf_c00392{height:88.118437px;}
.h0_c00392{height:1157.040000px;}
.h1_c00392{height:1157.250000px;}
.w1_c00392{width:770.250000px;}
.w0_c00392{width:770.400000px;}
.x0_c00392{left:0.000000px;}
.x1_c00392{left:58.320000px;}
.x14_c00392{left:59.760000px;}
.x26_c00392{left:61.200000px;}
.x21_c00392{left:111.600000px;}
.x2_c00392{left:132.480000px;}
.xb_c00392{left:133.920000px;}
.x22_c00392{left:144.720000px;}
.x27_c00392{left:167.040000px;}
.x28_c00392{left:177.120000px;}
.x1b_c00392{left:187.920000px;}
.x8_c00392{left:228.960000px;}
.x3_c00392{left:230.400000px;}
.x24_c00392{left:231.840000px;}
.x23_c00392{left:241.200000px;}
.x15_c00392{left:262.800000px;}
.xa_c00392{left:264.240000px;}
.x9_c00392{left:275.040000px;}
.x4_c00392{left:283.680000px;}
.x17_c00392{left:285.840000px;}
.x16_c00392{left:306.720000px;}
.x1e_c00392{left:317.520000px;}
.x5_c00392{left:328.320000px;}
.x1c_c00392{left:360.720000px;}
.x19_c00392{left:370.800000px;}
.x6_c00392{left:414.720000px;}
.x1f_c00392{left:426.240000px;}
.x1d_c00392{left:457.920000px;}
.x7_c00392{left:468.720000px;}
.x1a_c00392{left:470.160000px;}
.x25_c00392{left:512.640000px;}
.x10_c00392{left:576.720000px;}
.x18_c00392{left:578.160000px;}
.x13_c00392{left:588.960000px;}
.x11_c00392{left:609.840000px;}
.xd_c00392{left:611.280000px;}
.x20_c00392{left:643.680000px;}
.xe_c00392{left:653.760000px;}
.xc_c00392{left:673.920000px;}
.xf_c00392{left:686.880000px;}
.x29_c00392{left:688.320000px;}
.x12_c00392{left:707.040000px;}
@media print{
.v1_c00392{vertical-align:-7.680000pt;}
.v0_c00392{vertical-align:0.000000pt;}
.ls1_c00392{letter-spacing:0.000000pt;}
.ls0_c00392{letter-spacing:80.567467pt;}
.ws0_c00392{word-spacing:0.000000pt;}
.fse_c00392{font-size:30.720000pt;}
.fsa_c00392{font-size:33.280000pt;}
.fsc_c00392{font-size:40.960000pt;}
.fs2_c00392{font-size:43.520000pt;}
.fs3_c00392{font-size:46.080000pt;}
.fs4_c00392{font-size:48.640000pt;}
.fs7_c00392{font-size:51.200000pt;}
.fs5_c00392{font-size:53.760000pt;}
.fsb_c00392{font-size:56.320000pt;}
.fs9_c00392{font-size:58.880000pt;}
.fs0_c00392{font-size:61.440000pt;}
.fs6_c00392{font-size:64.000000pt;}
.fs1_c00392{font-size:66.560000pt;}
.fs8_c00392{font-size:69.120000pt;}
.fsd_c00392{font-size:87.040000pt;}
.y0_c00392{bottom:0.000000pt;}
.y73_c00392{bottom:51.200000pt;}
.y6c_c00392{bottom:52.480000pt;}
.y6d_c00392{bottom:53.120000pt;}
.y6e_c00392{bottom:53.760000pt;}
.y6a_c00392{bottom:89.600000pt;}
.y69_c00392{bottom:90.240000pt;}
.y6b_c00392{bottom:90.880000pt;}
.y68_c00392{bottom:92.160000pt;}
.y64_c00392{bottom:135.680000pt;}
.y67_c00392{bottom:136.960000pt;}
.y65_c00392{bottom:137.600000pt;}
.y71_c00392{bottom:138.240000pt;}
.y63_c00392{bottom:139.520000pt;}
.y66_c00392{bottom:140.160000pt;}
.y72_c00392{bottom:140.800000pt;}
.y60_c00392{bottom:174.720000pt;}
.y62_c00392{bottom:175.360000pt;}
.y5f_c00392{bottom:176.640000pt;}
.y61_c00392{bottom:177.920000pt;}
.y5b_c00392{bottom:213.120000pt;}
.y5e_c00392{bottom:213.760000pt;}
.y5a_c00392{bottom:215.040000pt;}
.y6f_c00392{bottom:215.680000pt;}
.y5c_c00392{bottom:216.320000pt;}
.y5d_c00392{bottom:216.960000pt;}
.y70_c00392{bottom:217.600000pt;}
.y54_c00392{bottom:251.520000pt;}
.y58_c00392{bottom:252.160000pt;}
.y55_c00392{bottom:252.800000pt;}
.y57_c00392{bottom:253.440000pt;}
.y53_c00392{bottom:254.080000pt;}
.y56_c00392{bottom:254.720000pt;}
.y59_c00392{bottom:255.360000pt;}
.y52_c00392{bottom:290.560000pt;}
.y50_c00392{bottom:291.200000pt;}
.y51_c00392{bottom:293.120000pt;}
.y4c_c00392{bottom:318.720000pt;}
.y4d_c00392{bottom:320.640000pt;}
.y4b_c00392{bottom:321.280000pt;}
.y4e_c00392{bottom:322.560000pt;}
.y4f_c00392{bottom:323.840000pt;}
.y48_c00392{bottom:350.080000pt;}
.y49_c00392{bottom:359.680000pt;}
.y4a_c00392{bottom:360.320000pt;}
.y45_c00392{bottom:405.760000pt;}
.y44_c00392{bottom:407.680000pt;}
.y40_c00392{bottom:443.520000pt;}
.y43_c00392{bottom:444.800000pt;}
.y41_c00392{bottom:445.440000pt;}
.y3f_c00392{bottom:446.080000pt;}
.y42_c00392{bottom:447.360000pt;}
.y47_c00392{bottom:448.640000pt;}
.y3c_c00392{bottom:482.560000pt;}
.y3d_c00392{bottom:483.840000pt;}
.y3b_c00392{bottom:484.480000pt;}
.y3e_c00392{bottom:485.760000pt;}
.y46_c00392{bottom:487.040000pt;}
.y37_c00392{bottom:520.960000pt;}
.y39_c00392{bottom:521.600000pt;}
.y36_c00392{bottom:522.240000pt;}
.y38_c00392{bottom:524.160000pt;}
.y3a_c00392{bottom:524.800000pt;}
.y35_c00392{bottom:559.360000pt;}
.y33_c00392{bottom:560.640000pt;}
.y34_c00392{bottom:562.560000pt;}
.y2e_c00392{bottom:587.520000pt;}
.y2f_c00392{bottom:588.800000pt;}
.y2d_c00392{bottom:589.440000pt;}
.y32_c00392{bottom:590.080000pt;}
.y31_c00392{bottom:590.720000pt;}
.y30_c00392{bottom:591.360000pt;}
.y29_c00392{bottom:625.920000pt;}
.y2b_c00392{bottom:626.560000pt;}
.y28_c00392{bottom:627.200000pt;}
.y2c_c00392{bottom:628.480000pt;}
.y2a_c00392{bottom:629.760000pt;}
.y23_c00392{bottom:664.320000pt;}
.y22_c00392{bottom:665.600000pt;}
.y25_c00392{bottom:666.240000pt;}
.y24_c00392{bottom:667.520000pt;}
.y27_c00392{bottom:668.160000pt;}
.y26_c00392{bottom:668.800000pt;}
.y1e_c00392{bottom:702.720000pt;}
.y20_c00392{bottom:703.360000pt;}
.y1d_c00392{bottom:704.000000pt;}
.y21_c00392{bottom:704.640000pt;}
.y1f_c00392{bottom:705.920000pt;}
.y14_c00392{bottom:741.120000pt;}
.y13_c00392{bottom:742.400000pt;}
.y1c_c00392{bottom:744.960000pt;}
.yf_c00392{bottom:779.520000pt;}
.y12_c00392{bottom:780.160000pt;}
.ye_c00392{bottom:780.800000pt;}
.y1b_c00392{bottom:782.080000pt;}
.y11_c00392{bottom:782.720000pt;}
.y10_c00392{bottom:783.360000pt;}
.yd_c00392{bottom:818.560000pt;}
.yc_c00392{bottom:819.200000pt;}
.y1a_c00392{bottom:819.840000pt;}
.y9_c00392{bottom:856.320000pt;}
.y8_c00392{bottom:857.600000pt;}
.y19_c00392{bottom:858.240000pt;}
.yb_c00392{bottom:859.520000pt;}
.ya_c00392{bottom:860.160000pt;}
.y6_c00392{bottom:895.360000pt;}
.y5_c00392{bottom:896.000000pt;}
.y18_c00392{bottom:896.640000pt;}
.y7_c00392{bottom:898.560000pt;}
.y2_c00392{bottom:933.120000pt;}
.y1_c00392{bottom:934.400000pt;}
.y16_c00392{bottom:935.040000pt;}
.y4_c00392{bottom:935.680000pt;}
.y3_c00392{bottom:936.320000pt;}
.y17_c00392{bottom:936.960000pt;}
.y15_c00392{bottom:993.280000pt;}
.h10_c00392{height:27.645000pt;}
.hc_c00392{height:29.948750pt;}
.he_c00392{height:36.860000pt;}
.h4_c00392{height:39.163750pt;}
.h5_c00392{height:41.467500pt;}
.h6_c00392{height:43.771250pt;}
.h9_c00392{height:46.075000pt;}
.h7_c00392{height:48.378750pt;}
.hd_c00392{height:50.682500pt;}
.hb_c00392{height:52.986250pt;}
.h2_c00392{height:55.290000pt;}
.h8_c00392{height:57.593750pt;}
.h3_c00392{height:59.897500pt;}
.ha_c00392{height:62.201250pt;}
.hf_c00392{height:78.327500pt;}
.h0_c00392{height:1028.480000pt;}
.h1_c00392{height:1028.666667pt;}
.w1_c00392{width:684.666667pt;}
.w0_c00392{width:684.800000pt;}
.x0_c00392{left:0.000000pt;}
.x1_c00392{left:51.840000pt;}
.x14_c00392{left:53.120000pt;}
.x26_c00392{left:54.400000pt;}
.x21_c00392{left:99.200000pt;}
.x2_c00392{left:117.760000pt;}
.xb_c00392{left:119.040000pt;}
.x22_c00392{left:128.640000pt;}
.x27_c00392{left:148.480000pt;}
.x28_c00392{left:157.440000pt;}
.x1b_c00392{left:167.040000pt;}
.x8_c00392{left:203.520000pt;}
.x3_c00392{left:204.800000pt;}
.x24_c00392{left:206.080000pt;}
.x23_c00392{left:214.400000pt;}
.x15_c00392{left:233.600000pt;}
.xa_c00392{left:234.880000pt;}
.x9_c00392{left:244.480000pt;}
.x4_c00392{left:252.160000pt;}
.x17_c00392{left:254.080000pt;}
.x16_c00392{left:272.640000pt;}
.x1e_c00392{left:282.240000pt;}
.x5_c00392{left:291.840000pt;}
.x1c_c00392{left:320.640000pt;}
.x19_c00392{left:329.600000pt;}
.x6_c00392{left:368.640000pt;}
.x1f_c00392{left:378.880000pt;}
.x1d_c00392{left:407.040000pt;}
.x7_c00392{left:416.640000pt;}
.x1a_c00392{left:417.920000pt;}
.x25_c00392{left:455.680000pt;}
.x10_c00392{left:512.640000pt;}
.x18_c00392{left:513.920000pt;}
.x13_c00392{left:523.520000pt;}
.x11_c00392{left:542.080000pt;}
.xd_c00392{left:543.360000pt;}
.x20_c00392{left:572.160000pt;}
.xe_c00392{left:581.120000pt;}
.xc_c00392{left:599.040000pt;}
.xf_c00392{left:610.560000pt;}
.x29_c00392{left:611.840000pt;}
.x12_c00392{left:628.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_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_fd8aa4469c2f5d695f399f6f.woff2')format("woff");}.ff1_c00393{font-family:ff1_c00393;line-height:1.109863;font-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_c00393{transform:matrix(0.221050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221050,0.000000,0.000000,0.250000,0,0);}
.m39_c00393{transform:matrix(0.230325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230325,0.000000,0.000000,0.250000,0,0);}
.m3d_c00393{transform:matrix(0.233525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233525,0.000000,0.000000,0.250000,0,0);}
.m4c_c00393{transform:matrix(0.235350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235350,0.000000,0.000000,0.250000,0,0);}
.m51_c00393{transform:matrix(0.236200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236200,0.000000,0.000000,0.250000,0,0);}
.m23_c00393{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m24_c00393{transform:matrix(0.237700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237700,0.000000,0.000000,0.250000,0,0);}
.m2a_c00393{transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);}
.m18_c00393{transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);}
.m40_c00393{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);}
.m4f_c00393{transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);}
.m42_c00393{transform:matrix(0.244525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244525,0.000000,0.000000,0.250000,0,0);}
.m1b_c00393{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00393{transform:matrix(0.246775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246775,0.000000,0.000000,0.250000,0,0);}
.m55_c00393{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m31_c00393{transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);}
.m11_c00393{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);}
.m4a_c00393{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);}
.m34_c00393{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);}
.m2f_c00393{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_c00393{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m0_c00393{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);}
.m28_c00393{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m5_c00393{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m14_c00393{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m47_c00393{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);}
.m2e_c00393{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);}
.m36_c00393{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mc_c00393{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);}
.m43_c00393{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.md_c00393{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m3_c00393{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m17_c00393{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00393{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00393{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m29_c00393{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1_c00393{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.me_c00393{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m32_c00393{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m25_c00393{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m12_c00393{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00393{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m8_c00393{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m6_c00393{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00393{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);}
.m4d_c00393{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m10_c00393{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);}
.m30_c00393{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m20_c00393{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);}
.m2b_c00393{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m38_c00393{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.ma_c00393{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m21_c00393{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m41_c00393{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00393{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);}
.m35_c00393{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);}
.m2d_c00393{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);}
.m52_c00393{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m54_c00393{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);}
.m26_c00393{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00393{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_c00393{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m16_c00393{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);}
.m44_c00393{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m37_c00393{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);}
.m22_c00393{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m48_c00393{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m49_c00393{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m50_c00393{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m53_c00393{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m15_c00393{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);}
.m13_c00393{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00393{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m7_c00393{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);}
.m4e_c00393{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00393{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m4_c00393{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m2_c00393{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);}
.m19_c00393{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m46_c00393{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);}
.m45_c00393{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m27_c00393{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m33_c00393{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.mf_c00393{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00393{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00393{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.v0_c00393{vertical-align:0.000000px;}
.v1_c00393{vertical-align:8.640000px;}
.v2_c00393{vertical-align:11.520000px;}
.ls0_c00393{letter-spacing:0.000000px;}
.sc__c00393{text-shadow:none;}
.sc0_c00393{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00393{-webkit-text-stroke:0px transparent;}
.sc0_c00393{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00393{word-spacing:0.000000px;}
.ws1_c00393{word-spacing:6.492000px;}
.ws3_c00393{word-spacing:14.235552px;}
.ws4_c00393{word-spacing:59.701133px;}
.ws0_c00393{word-spacing:134.393299px;}
.ws2_c00393{word-spacing:537.422640px;}
.fc0_c00393{color:transparent;}
.fse_c00393{font-size:34.560000px;}
.fs4_c00393{font-size:37.440000px;}
.fs5_c00393{font-size:40.320000px;}
.fsb_c00393{font-size:43.200000px;}
.fsd_c00393{font-size:46.080000px;}
.fs9_c00393{font-size:48.960000px;}
.fs2_c00393{font-size:51.840000px;}
.fsc_c00393{font-size:54.720000px;}
.fs6_c00393{font-size:57.600000px;}
.fs7_c00393{font-size:60.480000px;}
.fsa_c00393{font-size:63.360000px;}
.fsf_c00393{font-size:66.240000px;}
.fs1_c00393{font-size:69.120000px;}
.fs8_c00393{font-size:72.000000px;}
.fs3_c00393{font-size:74.880000px;}
.fs0_c00393{font-size:77.760000px;}
.y0_c00393{bottom:0.000000px;}
.y7f_c00393{bottom:43.200000px;}
.y80_c00393{bottom:43.920000px;}
.y81_c00393{bottom:45.360000px;}
.y83_c00393{bottom:46.080000px;}
.y7e_c00393{bottom:46.800000px;}
.y82_c00393{bottom:47.520000px;}
.y7b_c00393{bottom:87.120000px;}
.y79_c00393{bottom:87.840000px;}
.y7a_c00393{bottom:90.720000px;}
.y74_c00393{bottom:118.800000px;}
.y75_c00393{bottom:120.240000px;}
.y7d_c00393{bottom:120.960000px;}
.y73_c00393{bottom:121.680000px;}
.y7c_c00393{bottom:122.400000px;}
.y76_c00393{bottom:123.120000px;}
.y77_c00393{bottom:123.840000px;}
.y78_c00393{bottom:124.560000px;}
.y6e_c00393{bottom:162.000000px;}
.y6f_c00393{bottom:164.160000px;}
.y70_c00393{bottom:164.880000px;}
.y6d_c00393{bottom:165.600000px;}
.y71_c00393{bottom:166.320000px;}
.y72_c00393{bottom:167.760000px;}
.y68_c00393{bottom:205.920000px;}
.y69_c00393{bottom:206.640000px;}
.y6a_c00393{bottom:207.360000px;}
.y67_c00393{bottom:208.080000px;}
.y6c_c00393{bottom:208.800000px;}
.y6b_c00393{bottom:210.240000px;}
.y60_c00393{bottom:248.400000px;}
.y63_c00393{bottom:249.840000px;}
.y61_c00393{bottom:250.560000px;}
.y66_c00393{bottom:251.280000px;}
.y5f_c00393{bottom:252.000000px;}
.y64_c00393{bottom:252.720000px;}
.y62_c00393{bottom:253.440000px;}
.y65_c00393{bottom:254.160000px;}
.y5b_c00393{bottom:292.320000px;}
.y5e_c00393{bottom:293.760000px;}
.y5a_c00393{bottom:295.200000px;}
.y5c_c00393{bottom:295.920000px;}
.y5d_c00393{bottom:298.080000px;}
.y58_c00393{bottom:336.960000px;}
.y59_c00393{bottom:338.400000px;}
.y57_c00393{bottom:339.840000px;}
.y52_c00393{bottom:389.520000px;}
.y55_c00393{bottom:390.240000px;}
.y51_c00393{bottom:391.680000px;}
.y54_c00393{bottom:392.400000px;}
.y53_c00393{bottom:393.120000px;}
.y56_c00393{bottom:394.560000px;}
.y4c_c00393{bottom:432.000000px;}
.y4e_c00393{bottom:433.440000px;}
.y4b_c00393{bottom:434.880000px;}
.y4f_c00393{bottom:435.600000px;}
.y4d_c00393{bottom:436.320000px;}
.y50_c00393{bottom:437.040000px;}
.y46_c00393{bottom:475.200000px;}
.y48_c00393{bottom:476.640000px;}
.y45_c00393{bottom:478.800000px;}
.y47_c00393{bottom:479.520000px;}
.y49_c00393{bottom:480.240000px;}
.y4a_c00393{bottom:480.960000px;}
.y43_c00393{bottom:519.840000px;}
.y42_c00393{bottom:520.560000px;}
.y44_c00393{bottom:522.720000px;}
.y3f_c00393{bottom:551.520000px;}
.y40_c00393{bottom:552.240000px;}
.y3d_c00393{bottom:552.960000px;}
.y3e_c00393{bottom:555.120000px;}
.y41_c00393{bottom:555.840000px;}
.y36_c00393{bottom:582.480000px;}
.y38_c00393{bottom:583.920000px;}
.y3a_c00393{bottom:585.360000px;}
.y3c_c00393{bottom:586.080000px;}
.y3b_c00393{bottom:586.800000px;}
.y37_c00393{bottom:587.520000px;}
.y39_c00393{bottom:588.240000px;}
.y31_c00393{bottom:626.400000px;}
.y33_c00393{bottom:627.120000px;}
.y34_c00393{bottom:629.280000px;}
.y30_c00393{bottom:630.000000px;}
.y32_c00393{bottom:630.720000px;}
.y35_c00393{bottom:631.440000px;}
.y2c_c00393{bottom:670.320000px;}
.y2b_c00393{bottom:671.760000px;}
.y2e_c00393{bottom:672.480000px;}
.y2d_c00393{bottom:674.640000px;}
.y2f_c00393{bottom:675.360000px;}
.y28_c00393{bottom:713.520000px;}
.y27_c00393{bottom:715.680000px;}
.y29_c00393{bottom:716.400000px;}
.y2a_c00393{bottom:717.120000px;}
.y22_c00393{bottom:756.720000px;}
.y23_c00393{bottom:757.440000px;}
.y24_c00393{bottom:758.880000px;}
.y26_c00393{bottom:759.600000px;}
.y25_c00393{bottom:761.040000px;}
.y21_c00393{bottom:799.920000px;}
.y1f_c00393{bottom:802.080000px;}
.y20_c00393{bottom:804.240000px;}
.y1e_c00393{bottom:832.320000px;}
.y1d_c00393{bottom:833.040000px;}
.y1c_c00393{bottom:833.760000px;}
.y18_c00393{bottom:864.720000px;}
.y16_c00393{bottom:866.160000px;}
.y19_c00393{bottom:866.880000px;}
.y1b_c00393{bottom:867.600000px;}
.y1a_c00393{bottom:868.320000px;}
.y17_c00393{bottom:869.040000px;}
.y13_c00393{bottom:907.200000px;}
.y12_c00393{bottom:909.360000px;}
.y15_c00393{bottom:910.080000px;}
.y14_c00393{bottom:911.520000px;}
.yd_c00393{bottom:950.400000px;}
.yf_c00393{bottom:951.120000px;}
.yc_c00393{bottom:951.840000px;}
.y11_c00393{bottom:952.560000px;}
.y10_c00393{bottom:954.000000px;}
.ye_c00393{bottom:954.720000px;}
.y9_c00393{bottom:994.320000px;}
.y8_c00393{bottom:995.040000px;}
.yb_c00393{bottom:997.200000px;}
.ya_c00393{bottom:998.640000px;}
.y6_c00393{bottom:1036.800000px;}
.y4_c00393{bottom:1037.520000px;}
.y2_c00393{bottom:1038.240000px;}
.y7_c00393{bottom:1039.680000px;}
.y5_c00393{bottom:1040.400000px;}
.y3_c00393{bottom:1041.120000px;}
.y1_c00393{bottom:1111.680000px;}
.h11_c00393{height:31.100625px;}
.h6_c00393{height:33.692344px;}
.h7_c00393{height:36.284062px;}
.hd_c00393{height:38.875781px;}
.h10_c00393{height:41.467500px;}
.hb_c00393{height:44.059219px;}
.h4_c00393{height:46.650937px;}
.he_c00393{height:49.242656px;}
.h8_c00393{height:51.834375px;}
.h9_c00393{height:54.426094px;}
.hf_c00393{height:55.290937px;}
.hc_c00393{height:57.017812px;}
.h12_c00393{height:59.609531px;}
.h3_c00393{height:62.201250px;}
.ha_c00393{height:64.792969px;}
.h5_c00393{height:67.384687px;}
.h2_c00393{height:69.976406px;}
.h0_c00393{height:1157.760000px;}
.h1_c00393{height:1158.000000px;}
.w1_c00393{width:771.000000px;}
.w0_c00393{width:771.120000px;}
.x0_c00393{left:0.000000px;}
.x2_c00393{left:62.640000px;}
.x30_c00393{left:64.080000px;}
.x2d_c00393{left:115.200000px;}
.xc_c00393{left:136.800000px;}
.x3_c00393{left:138.240000px;}
.x2e_c00393{left:147.600000px;}
.x23_c00393{left:180.000000px;}
.x4_c00393{left:181.440000px;}
.x1c_c00393{left:190.080000px;}
.x27_c00393{left:223.200000px;}
.x1e_c00393{left:224.640000px;}
.x10_c00393{left:233.280000px;}
.xd_c00393{left:235.440000px;}
.x2f_c00393{left:244.800000px;}
.x29_c00393{left:267.120000px;}
.x24_c00393{left:276.480000px;}
.x5_c00393{left:278.640000px;}
.x14_c00393{left:289.440000px;}
.x21_c00393{left:300.240000px;}
.x2a_c00393{left:319.680000px;}
.x1d_c00393{left:321.120000px;}
.x15_c00393{left:331.200000px;}
.x6_c00393{left:332.640000px;}
.x22_c00393{left:353.520000px;}
.x1f_c00393{left:364.320000px;}
.x7_c00393{left:375.120000px;}
.x2b_c00393{left:407.520000px;}
.x25_c00393{left:418.320000px;}
.x1b_c00393{left:429.120000px;}
.x28_c00393{left:460.800000px;}
.x18_c00393{left:462.240000px;}
.x31_c00393{left:472.320000px;}
.x8_c00393{left:493.200000px;}
.x19_c00393{left:516.240000px;}
.x9_c00393{left:537.840000px;}
.x26_c00393{left:548.640000px;}
.x1a_c00393{left:560.160000px;}
.xa_c00393{left:581.040000px;}
.x11_c00393{left:591.840000px;}
.x12_c00393{left:604.800000px;}
.x2c_c00393{left:612.720000px;}
.x16_c00393{left:614.160000px;}
.xe_c00393{left:647.280000px;}
.x13_c00393{left:657.360000px;}
.x1_c00393{left:669.600000px;}
.x20_c00393{left:680.400000px;}
.x17_c00393{left:689.040000px;}
.xb_c00393{left:690.480000px;}
.xf_c00393{left:710.640000px;}
@media print{
.v0_c00393{vertical-align:0.000000pt;}
.v1_c00393{vertical-align:7.680000pt;}
.v2_c00393{vertical-align:10.240000pt;}
.ls0_c00393{letter-spacing:0.000000pt;}
.ws5_c00393{word-spacing:0.000000pt;}
.ws1_c00393{word-spacing:5.770667pt;}
.ws3_c00393{word-spacing:12.653824pt;}
.ws4_c00393{word-spacing:53.067674pt;}
.ws0_c00393{word-spacing:119.460710pt;}
.ws2_c00393{word-spacing:477.709013pt;}
.fse_c00393{font-size:30.720000pt;}
.fs4_c00393{font-size:33.280000pt;}
.fs5_c00393{font-size:35.840000pt;}
.fsb_c00393{font-size:38.400000pt;}
.fsd_c00393{font-size:40.960000pt;}
.fs9_c00393{font-size:43.520000pt;}
.fs2_c00393{font-size:46.080000pt;}
.fsc_c00393{font-size:48.640000pt;}
.fs6_c00393{font-size:51.200000pt;}
.fs7_c00393{font-size:53.760000pt;}
.fsa_c00393{font-size:56.320000pt;}
.fsf_c00393{font-size:58.880000pt;}
.fs1_c00393{font-size:61.440000pt;}
.fs8_c00393{font-size:64.000000pt;}
.fs3_c00393{font-size:66.560000pt;}
.fs0_c00393{font-size:69.120000pt;}
.y0_c00393{bottom:0.000000pt;}
.y7f_c00393{bottom:38.400000pt;}
.y80_c00393{bottom:39.040000pt;}
.y81_c00393{bottom:40.320000pt;}
.y83_c00393{bottom:40.960000pt;}
.y7e_c00393{bottom:41.600000pt;}
.y82_c00393{bottom:42.240000pt;}
.y7b_c00393{bottom:77.440000pt;}
.y79_c00393{bottom:78.080000pt;}
.y7a_c00393{bottom:80.640000pt;}
.y74_c00393{bottom:105.600000pt;}
.y75_c00393{bottom:106.880000pt;}
.y7d_c00393{bottom:107.520000pt;}
.y73_c00393{bottom:108.160000pt;}
.y7c_c00393{bottom:108.800000pt;}
.y76_c00393{bottom:109.440000pt;}
.y77_c00393{bottom:110.080000pt;}
.y78_c00393{bottom:110.720000pt;}
.y6e_c00393{bottom:144.000000pt;}
.y6f_c00393{bottom:145.920000pt;}
.y70_c00393{bottom:146.560000pt;}
.y6d_c00393{bottom:147.200000pt;}
.y71_c00393{bottom:147.840000pt;}
.y72_c00393{bottom:149.120000pt;}
.y68_c00393{bottom:183.040000pt;}
.y69_c00393{bottom:183.680000pt;}
.y6a_c00393{bottom:184.320000pt;}
.y67_c00393{bottom:184.960000pt;}
.y6c_c00393{bottom:185.600000pt;}
.y6b_c00393{bottom:186.880000pt;}
.y60_c00393{bottom:220.800000pt;}
.y63_c00393{bottom:222.080000pt;}
.y61_c00393{bottom:222.720000pt;}
.y66_c00393{bottom:223.360000pt;}
.y5f_c00393{bottom:224.000000pt;}
.y64_c00393{bottom:224.640000pt;}
.y62_c00393{bottom:225.280000pt;}
.y65_c00393{bottom:225.920000pt;}
.y5b_c00393{bottom:259.840000pt;}
.y5e_c00393{bottom:261.120000pt;}
.y5a_c00393{bottom:262.400000pt;}
.y5c_c00393{bottom:263.040000pt;}
.y5d_c00393{bottom:264.960000pt;}
.y58_c00393{bottom:299.520000pt;}
.y59_c00393{bottom:300.800000pt;}
.y57_c00393{bottom:302.080000pt;}
.y52_c00393{bottom:346.240000pt;}
.y55_c00393{bottom:346.880000pt;}
.y51_c00393{bottom:348.160000pt;}
.y54_c00393{bottom:348.800000pt;}
.y53_c00393{bottom:349.440000pt;}
.y56_c00393{bottom:350.720000pt;}
.y4c_c00393{bottom:384.000000pt;}
.y4e_c00393{bottom:385.280000pt;}
.y4b_c00393{bottom:386.560000pt;}
.y4f_c00393{bottom:387.200000pt;}
.y4d_c00393{bottom:387.840000pt;}
.y50_c00393{bottom:388.480000pt;}
.y46_c00393{bottom:422.400000pt;}
.y48_c00393{bottom:423.680000pt;}
.y45_c00393{bottom:425.600000pt;}
.y47_c00393{bottom:426.240000pt;}
.y49_c00393{bottom:426.880000pt;}
.y4a_c00393{bottom:427.520000pt;}
.y43_c00393{bottom:462.080000pt;}
.y42_c00393{bottom:462.720000pt;}
.y44_c00393{bottom:464.640000pt;}
.y3f_c00393{bottom:490.240000pt;}
.y40_c00393{bottom:490.880000pt;}
.y3d_c00393{bottom:491.520000pt;}
.y3e_c00393{bottom:493.440000pt;}
.y41_c00393{bottom:494.080000pt;}
.y36_c00393{bottom:517.760000pt;}
.y38_c00393{bottom:519.040000pt;}
.y3a_c00393{bottom:520.320000pt;}
.y3c_c00393{bottom:520.960000pt;}
.y3b_c00393{bottom:521.600000pt;}
.y37_c00393{bottom:522.240000pt;}
.y39_c00393{bottom:522.880000pt;}
.y31_c00393{bottom:556.800000pt;}
.y33_c00393{bottom:557.440000pt;}
.y34_c00393{bottom:559.360000pt;}
.y30_c00393{bottom:560.000000pt;}
.y32_c00393{bottom:560.640000pt;}
.y35_c00393{bottom:561.280000pt;}
.y2c_c00393{bottom:595.840000pt;}
.y2b_c00393{bottom:597.120000pt;}
.y2e_c00393{bottom:597.760000pt;}
.y2d_c00393{bottom:599.680000pt;}
.y2f_c00393{bottom:600.320000pt;}
.y28_c00393{bottom:634.240000pt;}
.y27_c00393{bottom:636.160000pt;}
.y29_c00393{bottom:636.800000pt;}
.y2a_c00393{bottom:637.440000pt;}
.y22_c00393{bottom:672.640000pt;}
.y23_c00393{bottom:673.280000pt;}
.y24_c00393{bottom:674.560000pt;}
.y26_c00393{bottom:675.200000pt;}
.y25_c00393{bottom:676.480000pt;}
.y21_c00393{bottom:711.040000pt;}
.y1f_c00393{bottom:712.960000pt;}
.y20_c00393{bottom:714.880000pt;}
.y1e_c00393{bottom:739.840000pt;}
.y1d_c00393{bottom:740.480000pt;}
.y1c_c00393{bottom:741.120000pt;}
.y18_c00393{bottom:768.640000pt;}
.y16_c00393{bottom:769.920000pt;}
.y19_c00393{bottom:770.560000pt;}
.y1b_c00393{bottom:771.200000pt;}
.y1a_c00393{bottom:771.840000pt;}
.y17_c00393{bottom:772.480000pt;}
.y13_c00393{bottom:806.400000pt;}
.y12_c00393{bottom:808.320000pt;}
.y15_c00393{bottom:808.960000pt;}
.y14_c00393{bottom:810.240000pt;}
.yd_c00393{bottom:844.800000pt;}
.yf_c00393{bottom:845.440000pt;}
.yc_c00393{bottom:846.080000pt;}
.y11_c00393{bottom:846.720000pt;}
.y10_c00393{bottom:848.000000pt;}
.ye_c00393{bottom:848.640000pt;}
.y9_c00393{bottom:883.840000pt;}
.y8_c00393{bottom:884.480000pt;}
.yb_c00393{bottom:886.400000pt;}
.ya_c00393{bottom:887.680000pt;}
.y6_c00393{bottom:921.600000pt;}
.y4_c00393{bottom:922.240000pt;}
.y2_c00393{bottom:922.880000pt;}
.y7_c00393{bottom:924.160000pt;}
.y5_c00393{bottom:924.800000pt;}
.y3_c00393{bottom:925.440000pt;}
.y1_c00393{bottom:988.160000pt;}
.h11_c00393{height:27.645000pt;}
.h6_c00393{height:29.948750pt;}
.h7_c00393{height:32.252500pt;}
.hd_c00393{height:34.556250pt;}
.h10_c00393{height:36.860000pt;}
.hb_c00393{height:39.163750pt;}
.h4_c00393{height:41.467500pt;}
.he_c00393{height:43.771250pt;}
.h8_c00393{height:46.075000pt;}
.h9_c00393{height:48.378750pt;}
.hf_c00393{height:49.147500pt;}
.hc_c00393{height:50.682500pt;}
.h12_c00393{height:52.986250pt;}
.h3_c00393{height:55.290000pt;}
.ha_c00393{height:57.593750pt;}
.h5_c00393{height:59.897500pt;}
.h2_c00393{height:62.201250pt;}
.h0_c00393{height:1029.120000pt;}
.h1_c00393{height:1029.333333pt;}
.w1_c00393{width:685.333333pt;}
.w0_c00393{width:685.440000pt;}
.x0_c00393{left:0.000000pt;}
.x2_c00393{left:55.680000pt;}
.x30_c00393{left:56.960000pt;}
.x2d_c00393{left:102.400000pt;}
.xc_c00393{left:121.600000pt;}
.x3_c00393{left:122.880000pt;}
.x2e_c00393{left:131.200000pt;}
.x23_c00393{left:160.000000pt;}
.x4_c00393{left:161.280000pt;}
.x1c_c00393{left:168.960000pt;}
.x27_c00393{left:198.400000pt;}
.x1e_c00393{left:199.680000pt;}
.x10_c00393{left:207.360000pt;}
.xd_c00393{left:209.280000pt;}
.x2f_c00393{left:217.600000pt;}
.x29_c00393{left:237.440000pt;}
.x24_c00393{left:245.760000pt;}
.x5_c00393{left:247.680000pt;}
.x14_c00393{left:257.280000pt;}
.x21_c00393{left:266.880000pt;}
.x2a_c00393{left:284.160000pt;}
.x1d_c00393{left:285.440000pt;}
.x15_c00393{left:294.400000pt;}
.x6_c00393{left:295.680000pt;}
.x22_c00393{left:314.240000pt;}
.x1f_c00393{left:323.840000pt;}
.x7_c00393{left:333.440000pt;}
.x2b_c00393{left:362.240000pt;}
.x25_c00393{left:371.840000pt;}
.x1b_c00393{left:381.440000pt;}
.x28_c00393{left:409.600000pt;}
.x18_c00393{left:410.880000pt;}
.x31_c00393{left:419.840000pt;}
.x8_c00393{left:438.400000pt;}
.x19_c00393{left:458.880000pt;}
.x9_c00393{left:478.080000pt;}
.x26_c00393{left:487.680000pt;}
.x1a_c00393{left:497.920000pt;}
.xa_c00393{left:516.480000pt;}
.x11_c00393{left:526.080000pt;}
.x12_c00393{left:537.600000pt;}
.x2c_c00393{left:544.640000pt;}
.x16_c00393{left:545.920000pt;}
.xe_c00393{left:575.360000pt;}
.x13_c00393{left:584.320000pt;}
.x1_c00393{left:595.200000pt;}
.x20_c00393{left:604.800000pt;}
.x17_c00393{left:612.480000pt;}
.xb_c00393{left:613.760000pt;}
.xf_c00393{left:631.680000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b39480873a9af4709bf97727.woff2')format("woff");}.ff1_c00394{font-family:ff1_c00394;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m45_c00394{transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);}
.m51_c00394{transform:matrix(0.195075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195075,0.000000,0.000000,0.250000,0,0);}
.m25_c00394{transform:matrix(0.233450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233450,0.000000,0.000000,0.250000,0,0);}
.m9_c00394{transform:matrix(0.234825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234825,0.000000,0.000000,0.250000,0,0);}
.m18_c00394{transform:matrix(0.236800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236800,0.000000,0.000000,0.250000,0,0);}
.m4f_c00394{transform:matrix(0.238725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238725,0.000000,0.000000,0.250000,0,0);}
.m22_c00394{transform:matrix(0.238800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238800,0.000000,0.000000,0.250000,0,0);}
.m11_c00394{transform:matrix(0.244200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244200,0.000000,0.000000,0.250000,0,0);}
.m1_c00394{transform:matrix(0.246275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246275,0.000000,0.000000,0.250000,0,0);}
.m30_c00394{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m2f_c00394{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);}
.m27_c00394{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);}
.m40_c00394{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);}
.m43_c00394{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);}
.m3f_c00394{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);}
.m4e_c00394{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);}
.m41_c00394{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);}
.m32_c00394{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_c00394{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00394{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);}
.m2b_c00394{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m33_c00394{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m49_c00394{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00394{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mf_c00394{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m38_c00394{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m34_c00394{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00394{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m46_c00394{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00394{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m48_c00394{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m7_c00394{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00394{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00394{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00394{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00394{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.md_c00394{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00394{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m8_c00394{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);}
.m2a_c00394{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m4_c00394{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00394{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m23_c00394{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00394{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m13_c00394{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m36_c00394{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);}
.m31_c00394{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m29_c00394{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m20_c00394{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m42_c00394{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);}
.m28_c00394{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_c00394{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m10_c00394{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.ma_c00394{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m6_c00394{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);}
.m26_c00394{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);}
.m16_c00394{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m17_c00394{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m0_c00394{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);}
.m15_c00394{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m21_c00394{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);}
.m39_c00394{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00394{transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00394{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);}
.m4a_c00394{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);}
.m50_c00394{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m35_c00394{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m24_c00394{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m5_c00394{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.me_c00394{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00394{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m3_c00394{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);}
.m1a_c00394{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m37_c00394{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m2_c00394{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.mb_c00394{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m14_c00394{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m44_c00394{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m47_c00394{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);}
.m12_c00394{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00394{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);}
.m3c_c00394{transform:matrix(1.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.192500,0.000000,0.000000,0.250000,0,0);}
.v0_c00394{vertical-align:0.000000px;}
.ls0_c00394{letter-spacing:0.000000px;}
.sc__c00394{text-shadow:none;}
.sc0_c00394{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00394{-webkit-text-stroke:0px transparent;}
.sc0_c00394{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00394{word-spacing:0.000000px;}
.fc0_c00394{color:transparent;}
.fsb_c00394{font-size:34.560000px;}
.fs3_c00394{font-size:37.440000px;}
.fsf_c00394{font-size:40.320000px;}
.fsd_c00394{font-size:43.200000px;}
.fs9_c00394{font-size:46.080000px;}
.fs5_c00394{font-size:48.960000px;}
.fs2_c00394{font-size:51.840000px;}
.fs0_c00394{font-size:54.720000px;}
.fsa_c00394{font-size:57.600000px;}
.fs4_c00394{font-size:60.480000px;}
.fs7_c00394{font-size:63.360000px;}
.fse_c00394{font-size:66.240000px;}
.fs6_c00394{font-size:69.120000px;}
.fs1_c00394{font-size:72.000000px;}
.fs8_c00394{font-size:74.880000px;}
.fsc_c00394{font-size:77.760000px;}
.y0_c00394{bottom:0.000000px;}
.y81_c00394{bottom:14.400000px;}
.y82_c00394{bottom:16.560000px;}
.y80_c00394{bottom:17.280000px;}
.y86_c00394{bottom:18.720000px;}
.y83_c00394{bottom:19.440000px;}
.y7d_c00394{bottom:56.160000px;}
.y7f_c00394{bottom:56.880000px;}
.y7e_c00394{bottom:58.320000px;}
.y7c_c00394{bottom:59.040000px;}
.y84_c00394{bottom:59.760000px;}
.y85_c00394{bottom:60.480000px;}
.y78_c00394{bottom:99.360000px;}
.y7b_c00394{bottom:100.080000px;}
.y79_c00394{bottom:100.800000px;}
.y77_c00394{bottom:102.240000px;}
.y7a_c00394{bottom:103.680000px;}
.y76_c00394{bottom:144.000000px;}
.y75_c00394{bottom:144.720000px;}
.y71_c00394{bottom:196.560000px;}
.y73_c00394{bottom:198.000000px;}
.y72_c00394{bottom:198.720000px;}
.y70_c00394{bottom:199.440000px;}
.y74_c00394{bottom:200.160000px;}
.y65_c00394{bottom:239.760000px;}
.y66_c00394{bottom:242.640000px;}
.y64_c00394{bottom:243.360000px;}
.y67_c00394{bottom:244.080000px;}
.y62_c00394{bottom:285.120000px;}
.y63_c00394{bottom:285.840000px;}
.y61_c00394{bottom:287.280000px;}
.y5d_c00394{bottom:336.960000px;}
.y5e_c00394{bottom:338.400000px;}
.y60_c00394{bottom:339.120000px;}
.y6f_c00394{bottom:339.840000px;}
.y5c_c00394{bottom:340.560000px;}
.y5f_c00394{bottom:341.280000px;}
.y6e_c00394{bottom:342.000000px;}
.y5b_c00394{bottom:380.880000px;}
.y59_c00394{bottom:381.600000px;}
.y58_c00394{bottom:382.320000px;}
.y5a_c00394{bottom:383.760000px;}
.y53_c00394{bottom:413.280000px;}
.y54_c00394{bottom:414.000000px;}
.y56_c00394{bottom:414.720000px;}
.y52_c00394{bottom:415.440000px;}
.y6d_c00394{bottom:416.160000px;}
.y55_c00394{bottom:416.880000px;}
.y57_c00394{bottom:417.600000px;}
.y4e_c00394{bottom:456.480000px;}
.y51_c00394{bottom:457.200000px;}
.y4f_c00394{bottom:457.920000px;}
.y4d_c00394{bottom:458.640000px;}
.y6c_c00394{bottom:459.360000px;}
.y6b_c00394{bottom:460.080000px;}
.y50_c00394{bottom:460.800000px;}
.y4a_c00394{bottom:499.680000px;}
.y4b_c00394{bottom:501.120000px;}
.y48_c00394{bottom:502.560000px;}
.y4c_c00394{bottom:503.280000px;}
.y49_c00394{bottom:504.720000px;}
.y6a_c00394{bottom:505.440000px;}
.y45_c00394{bottom:543.600000px;}
.y46_c00394{bottom:544.320000px;}
.y44_c00394{bottom:545.040000px;}
.y69_c00394{bottom:545.760000px;}
.y68_c00394{bottom:546.480000px;}
.y47_c00394{bottom:547.200000px;}
.y40_c00394{bottom:586.080000px;}
.y41_c00394{bottom:586.800000px;}
.y43_c00394{bottom:587.520000px;}
.y42_c00394{bottom:588.240000px;}
.y3d_c00394{bottom:617.760000px;}
.y3b_c00394{bottom:618.480000px;}
.y3a_c00394{bottom:619.920000px;}
.y39_c00394{bottom:620.640000px;}
.y3f_c00394{bottom:621.360000px;}
.y3c_c00394{bottom:622.080000px;}
.y3e_c00394{bottom:624.240000px;}
.y2c_c00394{bottom:661.680000px;}
.y28_c00394{bottom:662.400000px;}
.y2a_c00394{bottom:663.120000px;}
.y29_c00394{bottom:664.560000px;}
.y2b_c00394{bottom:665.280000px;}
.y24_c00394{bottom:693.360000px;}
.y25_c00394{bottom:694.800000px;}
.y23_c00394{bottom:695.520000px;}
.y37_c00394{bottom:696.240000px;}
.y26_c00394{bottom:696.960000px;}
.y27_c00394{bottom:697.680000px;}
.y38_c00394{bottom:698.400000px;}
.y1e_c00394{bottom:736.560000px;}
.y22_c00394{bottom:737.280000px;}
.y20_c00394{bottom:738.000000px;}
.y1d_c00394{bottom:738.720000px;}
.y1f_c00394{bottom:740.160000px;}
.y21_c00394{bottom:740.880000px;}
.y36_c00394{bottom:741.600000px;}
.y1c_c00394{bottom:781.920000px;}
.y1b_c00394{bottom:784.800000px;}
.y1a_c00394{bottom:834.480000px;}
.y19_c00394{bottom:835.200000px;}
.y18_c00394{bottom:837.360000px;}
.y14_c00394{bottom:866.160000px;}
.y15_c00394{bottom:866.880000px;}
.y13_c00394{bottom:867.600000px;}
.y35_c00394{bottom:869.040000px;}
.y16_c00394{bottom:869.760000px;}
.y17_c00394{bottom:870.480000px;}
.y34_c00394{bottom:871.200000px;}
.y12_c00394{bottom:910.080000px;}
.y10_c00394{bottom:910.800000px;}
.y11_c00394{bottom:913.680000px;}
.yd_c00394{bottom:942.480000px;}
.yc_c00394{bottom:943.200000px;}
.yf_c00394{bottom:943.920000px;}
.y32_c00394{bottom:944.640000px;}
.y33_c00394{bottom:945.360000px;}
.ye_c00394{bottom:946.080000px;}
.y31_c00394{bottom:946.800000px;}
.yb_c00394{bottom:985.680000px;}
.y9_c00394{bottom:986.400000px;}
.ya_c00394{bottom:989.280000px;}
.y5_c00394{bottom:1017.360000px;}
.y6_c00394{bottom:1018.800000px;}
.y4_c00394{bottom:1019.520000px;}
.y7_c00394{bottom:1020.240000px;}
.y8_c00394{bottom:1021.680000px;}
.y30_c00394{bottom:1023.120000px;}
.y2_c00394{bottom:1062.000000px;}
.y1_c00394{bottom:1062.720000px;}
.y3_c00394{bottom:1064.880000px;}
.y2e_c00394{bottom:1066.320000px;}
.y2f_c00394{bottom:1067.040000px;}
.y2d_c00394{bottom:1134.000000px;}
.hd_c00394{height:31.100625px;}
.h5_c00394{height:33.692344px;}
.h11_c00394{height:36.284062px;}
.hf_c00394{height:38.875781px;}
.hb_c00394{height:41.467500px;}
.h7_c00394{height:44.059219px;}
.h4_c00394{height:46.650937px;}
.h2_c00394{height:49.242656px;}
.hc_c00394{height:51.834375px;}
.h6_c00394{height:54.426094px;}
.h9_c00394{height:57.017812px;}
.h10_c00394{height:59.609531px;}
.h8_c00394{height:62.201250px;}
.h3_c00394{height:64.792969px;}
.ha_c00394{height:67.384687px;}
.he_c00394{height:69.976406px;}
.h0_c00394{height:1157.760000px;}
.h1_c00394{height:1158.000000px;}
.w1_c00394{width:772.500000px;}
.w0_c00394{width:772.560000px;}
.x0_c00394{left:0.000000px;}
.x1_c00394{left:62.640000px;}
.x2a_c00394{left:64.080000px;}
.x43_c00394{left:65.520000px;}
.x17_c00394{left:115.920000px;}
.x33_c00394{left:117.360000px;}
.xb_c00394{left:136.080000px;}
.x2_c00394{left:137.520000px;}
.x3b_c00394{left:138.960000px;}
.x34_c00394{left:149.040000px;}
.x2b_c00394{left:159.840000px;}
.x3e_c00394{left:172.080000px;}
.x24_c00394{left:182.880000px;}
.xc_c00394{left:190.080000px;}
.x13_c00394{left:191.520000px;}
.x3f_c00394{left:213.840000px;}
.x31_c00394{left:223.920000px;}
.x3_c00394{left:234.000000px;}
.x40_c00394{left:235.440000px;}
.x1d_c00394{left:244.080000px;}
.x2d_c00394{left:267.120000px;}
.xd_c00394{left:276.480000px;}
.x29_c00394{left:277.920000px;}
.x14_c00394{left:288.000000px;}
.x4_c00394{left:289.440000px;}
.x25_c00394{left:298.800000px;}
.x3c_c00394{left:311.040000px;}
.x2e_c00394{left:319.680000px;}
.x32_c00394{left:321.840000px;}
.x5_c00394{left:330.480000px;}
.x28_c00394{left:332.640000px;}
.x15_c00394{left:342.720000px;}
.x26_c00394{left:353.520000px;}
.xe_c00394{left:364.320000px;}
.x41_c00394{left:366.480000px;}
.x9_c00394{left:373.680000px;}
.x1a_c00394{left:375.840000px;}
.x11_c00394{left:385.200000px;}
.x16_c00394{left:386.640000px;}
.x27_c00394{left:396.000000px;}
.xf_c00394{left:417.600000px;}
.x44_c00394{left:419.760000px;}
.x6_c00394{left:428.400000px;}
.x2c_c00394{left:429.840000px;}
.x12_c00394{left:439.920000px;}
.x2f_c00394{left:451.440000px;}
.x10_c00394{left:460.080000px;}
.x1b_c00394{left:461.520000px;}
.xa_c00394{left:472.320000px;}
.x7_c00394{left:482.400000px;}
.x42_c00394{left:483.840000px;}
.x18_c00394{left:493.920000px;}
.x30_c00394{left:503.280000px;}
.x3d_c00394{left:505.440000px;}
.x1c_c00394{left:515.520000px;}
.x8_c00394{left:525.600000px;}
.x19_c00394{left:537.120000px;}
.x39_c00394{left:559.440000px;}
.x35_c00394{left:580.320000px;}
.x37_c00394{left:581.760000px;}
.x3a_c00394{left:605.520000px;}
.x1f_c00394{left:613.440000px;}
.x45_c00394{left:614.880000px;}
.x22_c00394{left:646.560000px;}
.x38_c00394{left:648.000000px;}
.x20_c00394{left:656.640000px;}
.x36_c00394{left:658.080000px;}
.x1e_c00394{left:680.400000px;}
.x21_c00394{left:689.040000px;}
.x23_c00394{left:690.480000px;}
.x46_c00394{left:712.080000px;}
@media print{
.v0_c00394{vertical-align:0.000000pt;}
.ls0_c00394{letter-spacing:0.000000pt;}
.ws0_c00394{word-spacing:0.000000pt;}
.fsb_c00394{font-size:30.720000pt;}
.fs3_c00394{font-size:33.280000pt;}
.fsf_c00394{font-size:35.840000pt;}
.fsd_c00394{font-size:38.400000pt;}
.fs9_c00394{font-size:40.960000pt;}
.fs5_c00394{font-size:43.520000pt;}
.fs2_c00394{font-size:46.080000pt;}
.fs0_c00394{font-size:48.640000pt;}
.fsa_c00394{font-size:51.200000pt;}
.fs4_c00394{font-size:53.760000pt;}
.fs7_c00394{font-size:56.320000pt;}
.fse_c00394{font-size:58.880000pt;}
.fs6_c00394{font-size:61.440000pt;}
.fs1_c00394{font-size:64.000000pt;}
.fs8_c00394{font-size:66.560000pt;}
.fsc_c00394{font-size:69.120000pt;}
.y0_c00394{bottom:0.000000pt;}
.y81_c00394{bottom:12.800000pt;}
.y82_c00394{bottom:14.720000pt;}
.y80_c00394{bottom:15.360000pt;}
.y86_c00394{bottom:16.640000pt;}
.y83_c00394{bottom:17.280000pt;}
.y7d_c00394{bottom:49.920000pt;}
.y7f_c00394{bottom:50.560000pt;}
.y7e_c00394{bottom:51.840000pt;}
.y7c_c00394{bottom:52.480000pt;}
.y84_c00394{bottom:53.120000pt;}
.y85_c00394{bottom:53.760000pt;}
.y78_c00394{bottom:88.320000pt;}
.y7b_c00394{bottom:88.960000pt;}
.y79_c00394{bottom:89.600000pt;}
.y77_c00394{bottom:90.880000pt;}
.y7a_c00394{bottom:92.160000pt;}
.y76_c00394{bottom:128.000000pt;}
.y75_c00394{bottom:128.640000pt;}
.y71_c00394{bottom:174.720000pt;}
.y73_c00394{bottom:176.000000pt;}
.y72_c00394{bottom:176.640000pt;}
.y70_c00394{bottom:177.280000pt;}
.y74_c00394{bottom:177.920000pt;}
.y65_c00394{bottom:213.120000pt;}
.y66_c00394{bottom:215.680000pt;}
.y64_c00394{bottom:216.320000pt;}
.y67_c00394{bottom:216.960000pt;}
.y62_c00394{bottom:253.440000pt;}
.y63_c00394{bottom:254.080000pt;}
.y61_c00394{bottom:255.360000pt;}
.y5d_c00394{bottom:299.520000pt;}
.y5e_c00394{bottom:300.800000pt;}
.y60_c00394{bottom:301.440000pt;}
.y6f_c00394{bottom:302.080000pt;}
.y5c_c00394{bottom:302.720000pt;}
.y5f_c00394{bottom:303.360000pt;}
.y6e_c00394{bottom:304.000000pt;}
.y5b_c00394{bottom:338.560000pt;}
.y59_c00394{bottom:339.200000pt;}
.y58_c00394{bottom:339.840000pt;}
.y5a_c00394{bottom:341.120000pt;}
.y53_c00394{bottom:367.360000pt;}
.y54_c00394{bottom:368.000000pt;}
.y56_c00394{bottom:368.640000pt;}
.y52_c00394{bottom:369.280000pt;}
.y6d_c00394{bottom:369.920000pt;}
.y55_c00394{bottom:370.560000pt;}
.y57_c00394{bottom:371.200000pt;}
.y4e_c00394{bottom:405.760000pt;}
.y51_c00394{bottom:406.400000pt;}
.y4f_c00394{bottom:407.040000pt;}
.y4d_c00394{bottom:407.680000pt;}
.y6c_c00394{bottom:408.320000pt;}
.y6b_c00394{bottom:408.960000pt;}
.y50_c00394{bottom:409.600000pt;}
.y4a_c00394{bottom:444.160000pt;}
.y4b_c00394{bottom:445.440000pt;}
.y48_c00394{bottom:446.720000pt;}
.y4c_c00394{bottom:447.360000pt;}
.y49_c00394{bottom:448.640000pt;}
.y6a_c00394{bottom:449.280000pt;}
.y45_c00394{bottom:483.200000pt;}
.y46_c00394{bottom:483.840000pt;}
.y44_c00394{bottom:484.480000pt;}
.y69_c00394{bottom:485.120000pt;}
.y68_c00394{bottom:485.760000pt;}
.y47_c00394{bottom:486.400000pt;}
.y40_c00394{bottom:520.960000pt;}
.y41_c00394{bottom:521.600000pt;}
.y43_c00394{bottom:522.240000pt;}
.y42_c00394{bottom:522.880000pt;}
.y3d_c00394{bottom:549.120000pt;}
.y3b_c00394{bottom:549.760000pt;}
.y3a_c00394{bottom:551.040000pt;}
.y39_c00394{bottom:551.680000pt;}
.y3f_c00394{bottom:552.320000pt;}
.y3c_c00394{bottom:552.960000pt;}
.y3e_c00394{bottom:554.880000pt;}
.y2c_c00394{bottom:588.160000pt;}
.y28_c00394{bottom:588.800000pt;}
.y2a_c00394{bottom:589.440000pt;}
.y29_c00394{bottom:590.720000pt;}
.y2b_c00394{bottom:591.360000pt;}
.y24_c00394{bottom:616.320000pt;}
.y25_c00394{bottom:617.600000pt;}
.y23_c00394{bottom:618.240000pt;}
.y37_c00394{bottom:618.880000pt;}
.y26_c00394{bottom:619.520000pt;}
.y27_c00394{bottom:620.160000pt;}
.y38_c00394{bottom:620.800000pt;}
.y1e_c00394{bottom:654.720000pt;}
.y22_c00394{bottom:655.360000pt;}
.y20_c00394{bottom:656.000000pt;}
.y1d_c00394{bottom:656.640000pt;}
.y1f_c00394{bottom:657.920000pt;}
.y21_c00394{bottom:658.560000pt;}
.y36_c00394{bottom:659.200000pt;}
.y1c_c00394{bottom:695.040000pt;}
.y1b_c00394{bottom:697.600000pt;}
.y1a_c00394{bottom:741.760000pt;}
.y19_c00394{bottom:742.400000pt;}
.y18_c00394{bottom:744.320000pt;}
.y14_c00394{bottom:769.920000pt;}
.y15_c00394{bottom:770.560000pt;}
.y13_c00394{bottom:771.200000pt;}
.y35_c00394{bottom:772.480000pt;}
.y16_c00394{bottom:773.120000pt;}
.y17_c00394{bottom:773.760000pt;}
.y34_c00394{bottom:774.400000pt;}
.y12_c00394{bottom:808.960000pt;}
.y10_c00394{bottom:809.600000pt;}
.y11_c00394{bottom:812.160000pt;}
.yd_c00394{bottom:837.760000pt;}
.yc_c00394{bottom:838.400000pt;}
.yf_c00394{bottom:839.040000pt;}
.y32_c00394{bottom:839.680000pt;}
.y33_c00394{bottom:840.320000pt;}
.ye_c00394{bottom:840.960000pt;}
.y31_c00394{bottom:841.600000pt;}
.yb_c00394{bottom:876.160000pt;}
.y9_c00394{bottom:876.800000pt;}
.ya_c00394{bottom:879.360000pt;}
.y5_c00394{bottom:904.320000pt;}
.y6_c00394{bottom:905.600000pt;}
.y4_c00394{bottom:906.240000pt;}
.y7_c00394{bottom:906.880000pt;}
.y8_c00394{bottom:908.160000pt;}
.y30_c00394{bottom:909.440000pt;}
.y2_c00394{bottom:944.000000pt;}
.y1_c00394{bottom:944.640000pt;}
.y3_c00394{bottom:946.560000pt;}
.y2e_c00394{bottom:947.840000pt;}
.y2f_c00394{bottom:948.480000pt;}
.y2d_c00394{bottom:1008.000000pt;}
.hd_c00394{height:27.645000pt;}
.h5_c00394{height:29.948750pt;}
.h11_c00394{height:32.252500pt;}
.hf_c00394{height:34.556250pt;}
.hb_c00394{height:36.860000pt;}
.h7_c00394{height:39.163750pt;}
.h4_c00394{height:41.467500pt;}
.h2_c00394{height:43.771250pt;}
.hc_c00394{height:46.075000pt;}
.h6_c00394{height:48.378750pt;}
.h9_c00394{height:50.682500pt;}
.h10_c00394{height:52.986250pt;}
.h8_c00394{height:55.290000pt;}
.h3_c00394{height:57.593750pt;}
.ha_c00394{height:59.897500pt;}
.he_c00394{height:62.201250pt;}
.h0_c00394{height:1029.120000pt;}
.h1_c00394{height:1029.333333pt;}
.w1_c00394{width:686.666667pt;}
.w0_c00394{width:686.720000pt;}
.x0_c00394{left:0.000000pt;}
.x1_c00394{left:55.680000pt;}
.x2a_c00394{left:56.960000pt;}
.x43_c00394{left:58.240000pt;}
.x17_c00394{left:103.040000pt;}
.x33_c00394{left:104.320000pt;}
.xb_c00394{left:120.960000pt;}
.x2_c00394{left:122.240000pt;}
.x3b_c00394{left:123.520000pt;}
.x34_c00394{left:132.480000pt;}
.x2b_c00394{left:142.080000pt;}
.x3e_c00394{left:152.960000pt;}
.x24_c00394{left:162.560000pt;}
.xc_c00394{left:168.960000pt;}
.x13_c00394{left:170.240000pt;}
.x3f_c00394{left:190.080000pt;}
.x31_c00394{left:199.040000pt;}
.x3_c00394{left:208.000000pt;}
.x40_c00394{left:209.280000pt;}
.x1d_c00394{left:216.960000pt;}
.x2d_c00394{left:237.440000pt;}
.xd_c00394{left:245.760000pt;}
.x29_c00394{left:247.040000pt;}
.x14_c00394{left:256.000000pt;}
.x4_c00394{left:257.280000pt;}
.x25_c00394{left:265.600000pt;}
.x3c_c00394{left:276.480000pt;}
.x2e_c00394{left:284.160000pt;}
.x32_c00394{left:286.080000pt;}
.x5_c00394{left:293.760000pt;}
.x28_c00394{left:295.680000pt;}
.x15_c00394{left:304.640000pt;}
.x26_c00394{left:314.240000pt;}
.xe_c00394{left:323.840000pt;}
.x41_c00394{left:325.760000pt;}
.x9_c00394{left:332.160000pt;}
.x1a_c00394{left:334.080000pt;}
.x11_c00394{left:342.400000pt;}
.x16_c00394{left:343.680000pt;}
.x27_c00394{left:352.000000pt;}
.xf_c00394{left:371.200000pt;}
.x44_c00394{left:373.120000pt;}
.x6_c00394{left:380.800000pt;}
.x2c_c00394{left:382.080000pt;}
.x12_c00394{left:391.040000pt;}
.x2f_c00394{left:401.280000pt;}
.x10_c00394{left:408.960000pt;}
.x1b_c00394{left:410.240000pt;}
.xa_c00394{left:419.840000pt;}
.x7_c00394{left:428.800000pt;}
.x42_c00394{left:430.080000pt;}
.x18_c00394{left:439.040000pt;}
.x30_c00394{left:447.360000pt;}
.x3d_c00394{left:449.280000pt;}
.x1c_c00394{left:458.240000pt;}
.x8_c00394{left:467.200000pt;}
.x19_c00394{left:477.440000pt;}
.x39_c00394{left:497.280000pt;}
.x35_c00394{left:515.840000pt;}
.x37_c00394{left:517.120000pt;}
.x3a_c00394{left:538.240000pt;}
.x1f_c00394{left:545.280000pt;}
.x45_c00394{left:546.560000pt;}
.x22_c00394{left:574.720000pt;}
.x38_c00394{left:576.000000pt;}
.x20_c00394{left:583.680000pt;}
.x36_c00394{left:584.960000pt;}
.x1e_c00394{left:604.800000pt;}
.x21_c00394{left:612.480000pt;}
.x23_c00394{left:613.760000pt;}
.x46_c00394{left:632.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_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_95b68256ba592721210e6191.woff2')format("woff");}.ff1_c00395{font-family:ff1_c00395;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m43_c00395{transform:matrix(0.157825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157825,0.000000,0.000000,0.250000,0,0);}
.m4a_c00395{transform:matrix(0.169675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169675,0.000000,0.000000,0.250000,0,0);}
.m1c_c00395{transform:matrix(0.177700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177700,0.000000,0.000000,0.250000,0,0);}
.m50_c00395{transform:matrix(0.231350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231350,0.000000,0.000000,0.250000,0,0);}
.m4e_c00395{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m24_c00395{transform:matrix(0.245475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245475,0.000000,0.000000,0.250000,0,0);}
.m13_c00395{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);}
.m4d_c00395{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m48_c00395{transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);}
.m1_c00395{transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);}
.m40_c00395{transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);}
.m2d_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);}
.m2b_c00395{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m44_c00395{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m10_c00395{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m15_c00395{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00395{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.ma_c00395{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m7_c00395{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00395{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);}
.m3f_c00395{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m5_c00395{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00395{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00395{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m30_c00395{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00395{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00395{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mf_c00395{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m9_c00395{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m35_c00395{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.me_c00395{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00395{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m6_c00395{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m8_c00395{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m17_c00395{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m31_c00395{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m22_c00395{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m11_c00395{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m49_c00395{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m14_c00395{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m37_c00395{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.md_c00395{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m3_c00395{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.mc_c00395{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m20_c00395{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00395{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m4_c00395{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m21_c00395{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m18_c00395{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m32_c00395{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);}
.m0_c00395{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m39_c00395{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00395{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);}
.m23_c00395{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m26_c00395{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00395{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);}
.m12_c00395{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);}
.m45_c00395{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m46_c00395{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00395{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);}
.m16_c00395{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_c00395{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00395{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00395{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m2_c00395{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m33_c00395{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.mb_c00395{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m36_c00395{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m42_c00395{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00395{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);}
.m25_c00395{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m28_c00395{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);}
.m19_c00395{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m38_c00395{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00395{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00395{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);}
.m27_c00395{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m41_c00395{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m29_c00395{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m34_c00395{transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);}
.m47_c00395{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.v4_c00395{vertical-align:-8.640000px;}
.v3_c00395{vertical-align:-5.760000px;}
.v2_c00395{vertical-align:-2.880000px;}
.v0_c00395{vertical-align:0.000000px;}
.v1_c00395{vertical-align:8.640000px;}
.ls3_c00395{letter-spacing:0.000000px;}
.ls2_c00395{letter-spacing:83.257680px;}
.ls1_c00395{letter-spacing:85.783680px;}
.ls0_c00395{letter-spacing:87.974400px;}
.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;}
}
.ws1_c00395{word-spacing:0.000000px;}
.ws0_c00395{word-spacing:2.995440px;}
.fc0_c00395{color:transparent;}
.fse_c00395{font-size:34.560000px;}
.fsb_c00395{font-size:37.440000px;}
.fsd_c00395{font-size:46.080000px;}
.fs5_c00395{font-size:48.960000px;}
.fs2_c00395{font-size:51.840000px;}
.fs4_c00395{font-size:54.720000px;}
.fsa_c00395{font-size:57.600000px;}
.fs0_c00395{font-size:60.480000px;}
.fs6_c00395{font-size:63.360000px;}
.fs8_c00395{font-size:66.240000px;}
.fs7_c00395{font-size:69.120000px;}
.fs9_c00395{font-size:72.000000px;}
.fs1_c00395{font-size:74.880000px;}
.fs3_c00395{font-size:77.760000px;}
.fsc_c00395{font-size:103.680000px;}
.y0_c00395{bottom:0.000000px;}
.y6b_c00395{bottom:56.880000px;}
.y69_c00395{bottom:63.360000px;}
.y6a_c00395{bottom:64.800000px;}
.y68_c00395{bottom:66.960000px;}
.y67_c00395{bottom:67.680000px;}
.y79_c00395{bottom:68.400000px;}
.y78_c00395{bottom:69.120000px;}
.y63_c00395{bottom:106.560000px;}
.y64_c00395{bottom:108.720000px;}
.y66_c00395{bottom:109.440000px;}
.y77_c00395{bottom:110.160000px;}
.y62_c00395{bottom:110.880000px;}
.y65_c00395{bottom:112.320000px;}
.y61_c00395{bottom:144.720000px;}
.y5d_c00395{bottom:150.480000px;}
.y5e_c00395{bottom:151.920000px;}
.y60_c00395{bottom:152.640000px;}
.y75_c00395{bottom:153.360000px;}
.y76_c00395{bottom:154.080000px;}
.y5c_c00395{bottom:154.800000px;}
.y5f_c00395{bottom:155.520000px;}
.y58_c00395{bottom:195.120000px;}
.y5a_c00395{bottom:195.840000px;}
.y59_c00395{bottom:196.560000px;}
.y74_c00395{bottom:197.280000px;}
.y57_c00395{bottom:198.000000px;}
.y5b_c00395{bottom:198.720000px;}
.y56_c00395{bottom:238.320000px;}
.y72_c00395{bottom:239.760000px;}
.y73_c00395{bottom:240.480000px;}
.y55_c00395{bottom:241.200000px;}
.y53_c00395{bottom:280.800000px;}
.y54_c00395{bottom:281.520000px;}
.y71_c00395{bottom:283.680000px;}
.y6f_c00395{bottom:284.400000px;}
.y52_c00395{bottom:285.120000px;}
.y70_c00395{bottom:285.840000px;}
.y51_c00395{bottom:324.000000px;}
.y6e_c00395{bottom:326.160000px;}
.y50_c00395{bottom:326.880000px;}
.y6c_c00395{bottom:327.600000px;}
.y6d_c00395{bottom:329.040000px;}
.y4f_c00395{bottom:369.360000px;}
.y4e_c00395{bottom:371.520000px;}
.y4c_c00395{bottom:422.640000px;}
.y4d_c00395{bottom:423.360000px;}
.y4b_c00395{bottom:424.800000px;}
.y4a_c00395{bottom:425.520000px;}
.y49_c00395{bottom:426.240000px;}
.y45_c00395{bottom:454.320000px;}
.y46_c00395{bottom:455.040000px;}
.y47_c00395{bottom:455.760000px;}
.y44_c00395{bottom:456.480000px;}
.y48_c00395{bottom:457.920000px;}
.y43_c00395{bottom:497.520000px;}
.y42_c00395{bottom:498.240000px;}
.y3e_c00395{bottom:529.920000px;}
.y41_c00395{bottom:530.640000px;}
.y3f_c00395{bottom:531.360000px;}
.y3d_c00395{bottom:532.080000px;}
.y40_c00395{bottom:533.520000px;}
.y3c_c00395{bottom:573.120000px;}
.y3a_c00395{bottom:574.560000px;}
.y3b_c00395{bottom:576.720000px;}
.y35_c00395{bottom:605.520000px;}
.y36_c00395{bottom:606.960000px;}
.y34_c00395{bottom:607.680000px;}
.y39_c00395{bottom:608.400000px;}
.y38_c00395{bottom:609.120000px;}
.y37_c00395{bottom:609.840000px;}
.y2c_c00395{bottom:648.720000px;}
.y30_c00395{bottom:649.440000px;}
.y2b_c00395{bottom:650.160000px;}
.y2f_c00395{bottom:650.880000px;}
.y2e_c00395{bottom:652.320000px;}
.y2d_c00395{bottom:653.040000px;}
.y28_c00395{bottom:691.920000px;}
.y29_c00395{bottom:693.360000px;}
.y27_c00395{bottom:694.080000px;}
.y33_c00395{bottom:694.800000px;}
.y2a_c00395{bottom:695.520000px;}
.y32_c00395{bottom:696.240000px;}
.y26_c00395{bottom:735.840000px;}
.y23_c00395{bottom:736.560000px;}
.y24_c00395{bottom:737.280000px;}
.y25_c00395{bottom:738.720000px;}
.y20_c00395{bottom:767.520000px;}
.y1f_c00395{bottom:769.680000px;}
.y31_c00395{bottom:770.400000px;}
.y21_c00395{bottom:771.840000px;}
.y22_c00395{bottom:772.560000px;}
.y1e_c00395{bottom:812.160000px;}
.y1c_c00395{bottom:843.840000px;}
.y1b_c00395{bottom:845.280000px;}
.y1d_c00395{bottom:847.440000px;}
.y19_c00395{bottom:879.840000px;}
.y15_c00395{bottom:887.040000px;}
.y14_c00395{bottom:887.760000px;}
.y18_c00395{bottom:888.480000px;}
.y16_c00395{bottom:890.640000px;}
.y17_c00395{bottom:891.360000px;}
.y1a_c00395{bottom:892.080000px;}
.yf_c00395{bottom:930.240000px;}
.ye_c00395{bottom:930.960000px;}
.y10_c00395{bottom:931.680000px;}
.y12_c00395{bottom:933.120000px;}
.y11_c00395{bottom:933.840000px;}
.y13_c00395{bottom:934.560000px;}
.yd_c00395{bottom:972.720000px;}
.yc_c00395{bottom:976.320000px;}
.y9_c00395{bottom:1005.120000px;}
.y8_c00395{bottom:1006.560000px;}
.ya_c00395{bottom:1008.720000px;}
.yb_c00395{bottom:1009.440000px;}
.y3_c00395{bottom:1047.600000px;}
.y2_c00395{bottom:1048.320000px;}
.y1_c00395{bottom:1049.760000px;}
.y5_c00395{bottom:1050.480000px;}
.y6_c00395{bottom:1051.920000px;}
.y7_c00395{bottom:1052.640000px;}
.y4_c00395{bottom:1112.400000px;}
.h10_c00395{height:31.100625px;}
.hd_c00395{height:33.692344px;}
.hf_c00395{height:41.467500px;}
.h7_c00395{height:44.059219px;}
.h4_c00395{height:46.650937px;}
.h6_c00395{height:49.242656px;}
.hc_c00395{height:51.834375px;}
.h2_c00395{height:54.426094px;}
.h11_c00395{height:55.290938px;}
.h8_c00395{height:57.017812px;}
.ha_c00395{height:59.609531px;}
.h9_c00395{height:62.201250px;}
.hb_c00395{height:64.792969px;}
.h3_c00395{height:67.384687px;}
.h5_c00395{height:69.976406px;}
.he_c00395{height:93.301875px;}
.h0_c00395{height:1157.760000px;}
.h1_c00395{height:1158.000000px;}
.w1_c00395{width:771.000000px;}
.w0_c00395{width:771.120000px;}
.x0_c00395{left:0.000000px;}
.x1_c00395{left:63.360000px;}
.x11_c00395{left:64.800000px;}
.x2f_c00395{left:66.240000px;}
.x35_c00395{left:108.000000px;}
.x2d_c00395{left:117.360000px;}
.x2_c00395{left:138.240000px;}
.x1c_c00395{left:140.400000px;}
.xf_c00395{left:181.440000px;}
.x1d_c00395{left:192.960000px;}
.x12_c00395{left:224.640000px;}
.x26_c00395{left:226.080000px;}
.x3_c00395{left:235.440000px;}
.x28_c00395{left:237.600000px;}
.x1e_c00395{left:247.680000px;}
.x1f_c00395{left:268.560000px;}
.x27_c00395{left:270.000000px;}
.x2e_c00395{left:278.640000px;}
.x13_c00395{left:280.080000px;}
.x25_c00395{left:289.440000px;}
.x4_c00395{left:290.880000px;}
.x33_c00395{left:292.320000px;}
.x36_c00395{left:302.400000px;}
.x14_c00395{left:321.840000px;}
.x20_c00395{left:324.000000px;}
.x10_c00395{left:333.360000px;}
.x19_c00395{left:334.800000px;}
.x31_c00395{left:345.600000px;}
.x29_c00395{left:355.680000px;}
.x5_c00395{left:376.560000px;}
.x30_c00395{left:378.000000px;}
.x2b_c00395{left:388.080000px;}
.x21_c00395{left:409.680000px;}
.xb_c00395{left:420.480000px;}
.x1a_c00395{left:430.560000px;}
.x34_c00395{left:432.000000px;}
.x2c_c00395{left:442.800000px;}
.x2a_c00395{left:452.880000px;}
.x6_c00395{left:462.960000px;}
.x32_c00395{left:464.400000px;}
.x15_c00395{left:474.480000px;}
.x1b_c00395{left:486.000000px;}
.x37_c00395{left:496.800000px;}
.xc_c00395{left:506.880000px;}
.x16_c00395{left:516.960000px;}
.x22_c00395{left:518.400000px;}
.x17_c00395{left:527.760000px;}
.x38_c00395{left:563.040000px;}
.xd_c00395{left:581.760000px;}
.x18_c00395{left:583.200000px;}
.x3d_c00395{left:584.640000px;}
.x8_c00395{left:616.320000px;}
.x39_c00395{left:617.760000px;}
.x3b_c00395{left:640.800000px;}
.x9_c00395{left:648.720000px;}
.x24_c00395{left:650.160000px;}
.xe_c00395{left:659.520000px;}
.x3c_c00395{left:660.960000px;}
.x7_c00395{left:689.760000px;}
.xa_c00395{left:691.920000px;}
.x23_c00395{left:693.360000px;}
.x3a_c00395{left:713.520000px;}
@media print{
.v4_c00395{vertical-align:-7.680000pt;}
.v3_c00395{vertical-align:-5.120000pt;}
.v2_c00395{vertical-align:-2.560000pt;}
.v0_c00395{vertical-align:0.000000pt;}
.v1_c00395{vertical-align:7.680000pt;}
.ls3_c00395{letter-spacing:0.000000pt;}
.ls2_c00395{letter-spacing:74.006827pt;}
.ls1_c00395{letter-spacing:76.252160pt;}
.ls0_c00395{letter-spacing:78.199467pt;}
.ws1_c00395{word-spacing:0.000000pt;}
.ws0_c00395{word-spacing:2.662613pt;}
.fse_c00395{font-size:30.720000pt;}
.fsb_c00395{font-size:33.280000pt;}
.fsd_c00395{font-size:40.960000pt;}
.fs5_c00395{font-size:43.520000pt;}
.fs2_c00395{font-size:46.080000pt;}
.fs4_c00395{font-size:48.640000pt;}
.fsa_c00395{font-size:51.200000pt;}
.fs0_c00395{font-size:53.760000pt;}
.fs6_c00395{font-size:56.320000pt;}
.fs8_c00395{font-size:58.880000pt;}
.fs7_c00395{font-size:61.440000pt;}
.fs9_c00395{font-size:64.000000pt;}
.fs1_c00395{font-size:66.560000pt;}
.fs3_c00395{font-size:69.120000pt;}
.fsc_c00395{font-size:92.160000pt;}
.y0_c00395{bottom:0.000000pt;}
.y6b_c00395{bottom:50.560000pt;}
.y69_c00395{bottom:56.320000pt;}
.y6a_c00395{bottom:57.600000pt;}
.y68_c00395{bottom:59.520000pt;}
.y67_c00395{bottom:60.160000pt;}
.y79_c00395{bottom:60.800000pt;}
.y78_c00395{bottom:61.440000pt;}
.y63_c00395{bottom:94.720000pt;}
.y64_c00395{bottom:96.640000pt;}
.y66_c00395{bottom:97.280000pt;}
.y77_c00395{bottom:97.920000pt;}
.y62_c00395{bottom:98.560000pt;}
.y65_c00395{bottom:99.840000pt;}
.y61_c00395{bottom:128.640000pt;}
.y5d_c00395{bottom:133.760000pt;}
.y5e_c00395{bottom:135.040000pt;}
.y60_c00395{bottom:135.680000pt;}
.y75_c00395{bottom:136.320000pt;}
.y76_c00395{bottom:136.960000pt;}
.y5c_c00395{bottom:137.600000pt;}
.y5f_c00395{bottom:138.240000pt;}
.y58_c00395{bottom:173.440000pt;}
.y5a_c00395{bottom:174.080000pt;}
.y59_c00395{bottom:174.720000pt;}
.y74_c00395{bottom:175.360000pt;}
.y57_c00395{bottom:176.000000pt;}
.y5b_c00395{bottom:176.640000pt;}
.y56_c00395{bottom:211.840000pt;}
.y72_c00395{bottom:213.120000pt;}
.y73_c00395{bottom:213.760000pt;}
.y55_c00395{bottom:214.400000pt;}
.y53_c00395{bottom:249.600000pt;}
.y54_c00395{bottom:250.240000pt;}
.y71_c00395{bottom:252.160000pt;}
.y6f_c00395{bottom:252.800000pt;}
.y52_c00395{bottom:253.440000pt;}
.y70_c00395{bottom:254.080000pt;}
.y51_c00395{bottom:288.000000pt;}
.y6e_c00395{bottom:289.920000pt;}
.y50_c00395{bottom:290.560000pt;}
.y6c_c00395{bottom:291.200000pt;}
.y6d_c00395{bottom:292.480000pt;}
.y4f_c00395{bottom:328.320000pt;}
.y4e_c00395{bottom:330.240000pt;}
.y4c_c00395{bottom:375.680000pt;}
.y4d_c00395{bottom:376.320000pt;}
.y4b_c00395{bottom:377.600000pt;}
.y4a_c00395{bottom:378.240000pt;}
.y49_c00395{bottom:378.880000pt;}
.y45_c00395{bottom:403.840000pt;}
.y46_c00395{bottom:404.480000pt;}
.y47_c00395{bottom:405.120000pt;}
.y44_c00395{bottom:405.760000pt;}
.y48_c00395{bottom:407.040000pt;}
.y43_c00395{bottom:442.240000pt;}
.y42_c00395{bottom:442.880000pt;}
.y3e_c00395{bottom:471.040000pt;}
.y41_c00395{bottom:471.680000pt;}
.y3f_c00395{bottom:472.320000pt;}
.y3d_c00395{bottom:472.960000pt;}
.y40_c00395{bottom:474.240000pt;}
.y3c_c00395{bottom:509.440000pt;}
.y3a_c00395{bottom:510.720000pt;}
.y3b_c00395{bottom:512.640000pt;}
.y35_c00395{bottom:538.240000pt;}
.y36_c00395{bottom:539.520000pt;}
.y34_c00395{bottom:540.160000pt;}
.y39_c00395{bottom:540.800000pt;}
.y38_c00395{bottom:541.440000pt;}
.y37_c00395{bottom:542.080000pt;}
.y2c_c00395{bottom:576.640000pt;}
.y30_c00395{bottom:577.280000pt;}
.y2b_c00395{bottom:577.920000pt;}
.y2f_c00395{bottom:578.560000pt;}
.y2e_c00395{bottom:579.840000pt;}
.y2d_c00395{bottom:580.480000pt;}
.y28_c00395{bottom:615.040000pt;}
.y29_c00395{bottom:616.320000pt;}
.y27_c00395{bottom:616.960000pt;}
.y33_c00395{bottom:617.600000pt;}
.y2a_c00395{bottom:618.240000pt;}
.y32_c00395{bottom:618.880000pt;}
.y26_c00395{bottom:654.080000pt;}
.y23_c00395{bottom:654.720000pt;}
.y24_c00395{bottom:655.360000pt;}
.y25_c00395{bottom:656.640000pt;}
.y20_c00395{bottom:682.240000pt;}
.y1f_c00395{bottom:684.160000pt;}
.y31_c00395{bottom:684.800000pt;}
.y21_c00395{bottom:686.080000pt;}
.y22_c00395{bottom:686.720000pt;}
.y1e_c00395{bottom:721.920000pt;}
.y1c_c00395{bottom:750.080000pt;}
.y1b_c00395{bottom:751.360000pt;}
.y1d_c00395{bottom:753.280000pt;}
.y19_c00395{bottom:782.080000pt;}
.y15_c00395{bottom:788.480000pt;}
.y14_c00395{bottom:789.120000pt;}
.y18_c00395{bottom:789.760000pt;}
.y16_c00395{bottom:791.680000pt;}
.y17_c00395{bottom:792.320000pt;}
.y1a_c00395{bottom:792.960000pt;}
.yf_c00395{bottom:826.880000pt;}
.ye_c00395{bottom:827.520000pt;}
.y10_c00395{bottom:828.160000pt;}
.y12_c00395{bottom:829.440000pt;}
.y11_c00395{bottom:830.080000pt;}
.y13_c00395{bottom:830.720000pt;}
.yd_c00395{bottom:864.640000pt;}
.yc_c00395{bottom:867.840000pt;}
.y9_c00395{bottom:893.440000pt;}
.y8_c00395{bottom:894.720000pt;}
.ya_c00395{bottom:896.640000pt;}
.yb_c00395{bottom:897.280000pt;}
.y3_c00395{bottom:931.200000pt;}
.y2_c00395{bottom:931.840000pt;}
.y1_c00395{bottom:933.120000pt;}
.y5_c00395{bottom:933.760000pt;}
.y6_c00395{bottom:935.040000pt;}
.y7_c00395{bottom:935.680000pt;}
.y4_c00395{bottom:988.800000pt;}
.h10_c00395{height:27.645000pt;}
.hd_c00395{height:29.948750pt;}
.hf_c00395{height:36.860000pt;}
.h7_c00395{height:39.163750pt;}
.h4_c00395{height:41.467500pt;}
.h6_c00395{height:43.771250pt;}
.hc_c00395{height:46.075000pt;}
.h2_c00395{height:48.378750pt;}
.h11_c00395{height:49.147500pt;}
.h8_c00395{height:50.682500pt;}
.ha_c00395{height:52.986250pt;}
.h9_c00395{height:55.290000pt;}
.hb_c00395{height:57.593750pt;}
.h3_c00395{height:59.897500pt;}
.h5_c00395{height:62.201250pt;}
.he_c00395{height:82.935000pt;}
.h0_c00395{height:1029.120000pt;}
.h1_c00395{height:1029.333333pt;}
.w1_c00395{width:685.333333pt;}
.w0_c00395{width:685.440000pt;}
.x0_c00395{left:0.000000pt;}
.x1_c00395{left:56.320000pt;}
.x11_c00395{left:57.600000pt;}
.x2f_c00395{left:58.880000pt;}
.x35_c00395{left:96.000000pt;}
.x2d_c00395{left:104.320000pt;}
.x2_c00395{left:122.880000pt;}
.x1c_c00395{left:124.800000pt;}
.xf_c00395{left:161.280000pt;}
.x1d_c00395{left:171.520000pt;}
.x12_c00395{left:199.680000pt;}
.x26_c00395{left:200.960000pt;}
.x3_c00395{left:209.280000pt;}
.x28_c00395{left:211.200000pt;}
.x1e_c00395{left:220.160000pt;}
.x1f_c00395{left:238.720000pt;}
.x27_c00395{left:240.000000pt;}
.x2e_c00395{left:247.680000pt;}
.x13_c00395{left:248.960000pt;}
.x25_c00395{left:257.280000pt;}
.x4_c00395{left:258.560000pt;}
.x33_c00395{left:259.840000pt;}
.x36_c00395{left:268.800000pt;}
.x14_c00395{left:286.080000pt;}
.x20_c00395{left:288.000000pt;}
.x10_c00395{left:296.320000pt;}
.x19_c00395{left:297.600000pt;}
.x31_c00395{left:307.200000pt;}
.x29_c00395{left:316.160000pt;}
.x5_c00395{left:334.720000pt;}
.x30_c00395{left:336.000000pt;}
.x2b_c00395{left:344.960000pt;}
.x21_c00395{left:364.160000pt;}
.xb_c00395{left:373.760000pt;}
.x1a_c00395{left:382.720000pt;}
.x34_c00395{left:384.000000pt;}
.x2c_c00395{left:393.600000pt;}
.x2a_c00395{left:402.560000pt;}
.x6_c00395{left:411.520000pt;}
.x32_c00395{left:412.800000pt;}
.x15_c00395{left:421.760000pt;}
.x1b_c00395{left:432.000000pt;}
.x37_c00395{left:441.600000pt;}
.xc_c00395{left:450.560000pt;}
.x16_c00395{left:459.520000pt;}
.x22_c00395{left:460.800000pt;}
.x17_c00395{left:469.120000pt;}
.x38_c00395{left:500.480000pt;}
.xd_c00395{left:517.120000pt;}
.x18_c00395{left:518.400000pt;}
.x3d_c00395{left:519.680000pt;}
.x8_c00395{left:547.840000pt;}
.x39_c00395{left:549.120000pt;}
.x3b_c00395{left:569.600000pt;}
.x9_c00395{left:576.640000pt;}
.x24_c00395{left:577.920000pt;}
.xe_c00395{left:586.240000pt;}
.x3c_c00395{left:587.520000pt;}
.x7_c00395{left:613.120000pt;}
.xa_c00395{left:615.040000pt;}
.x23_c00395{left:616.320000pt;}
.x3a_c00395{left:634.240000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4c149d35bbb3dbee1a57b7e4.woff2')format("woff");}.ff1_c00396{font-family:ff1_c00396;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m67_c00396{transform:matrix(0.201075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201075,0.000000,0.000000,0.250000,0,0);}
.m64_c00396{transform:matrix(0.203425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203425,0.000000,0.000000,0.250000,0,0);}
.m65_c00396{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m63_c00396{transform:matrix(0.232850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232850,0.000000,0.000000,0.250000,0,0);}
.m28_c00396{transform:matrix(0.236800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236800,0.000000,0.000000,0.250000,0,0);}
.m25_c00396{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m19_c00396{transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);}
.m26_c00396{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m5c_c00396{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m61_c00396{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m46_c00396{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);}
.m66_c00396{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.ma_c00396{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_c00396{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m1_c00396{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);}
.m3b_c00396{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m23_c00396{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);}
.m37_c00396{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);}
.m5b_c00396{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.md_c00396{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00396{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m9_c00396{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);}
.m59_c00396{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m21_c00396{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);}
.m5e_c00396{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m13_c00396{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00396{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m24_c00396{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00396{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00396{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00396{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m44_c00396{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00396{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00396{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m8_c00396{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m11_c00396{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m14_c00396{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00396{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00396{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m15_c00396{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m29_c00396{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m20_c00396{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m0_c00396{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.mb_c00396{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m5_c00396{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);}
.m48_c00396{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00396{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00396{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m18_c00396{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m2_c00396{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);}
.m4f_c00396{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);}
.m27_c00396{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);}
.m4c_c00396{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.me_c00396{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);}
.m30_c00396{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m41_c00396{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);}
.m7_c00396{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);}
.m32_c00396{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);}
.m40_c00396{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m56_c00396{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m54_c00396{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m17_c00396{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00396{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);}
.m33_c00396{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00396{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);}
.m57_c00396{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);}
.m58_c00396{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00396{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m38_c00396{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00396{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m42_c00396{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);}
.m3d_c00396{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m51_c00396{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);}
.m4a_c00396{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m39_c00396{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m60_c00396{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m53_c00396{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m22_c00396{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);}
.m36_c00396{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);}
.m50_c00396{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m52_c00396{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00396{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.mc_c00396{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);}
.m49_c00396{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);}
.m10_c00396{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00396{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);}
.m31_c00396{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m45_c00396{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m6_c00396{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m16_c00396{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m3_c00396{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m55_c00396{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);}
.m34_c00396{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00396{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00396{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00396{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00396{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m12_c00396{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);}
.m47_c00396{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m43_c00396{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);}
.m4_c00396{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00396{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m35_c00396{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m62_c00396{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);}
.v2_c00396{vertical-align:-8.640000px;}
.v0_c00396{vertical-align:0.000000px;}
.v1_c00396{vertical-align:8.640000px;}
.ls1_c00396{letter-spacing:0.000000px;}
.ls0_c00396{letter-spacing:207.974400px;}
.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;}
}
.ws2_c00396{word-spacing:0.000000px;}
.ws0_c00396{word-spacing:138.110331px;}
.ws1_c00396{word-spacing:160.802400px;}
.fc0_c00396{color:transparent;}
.fs10_c00396{font-size:23.040000px;}
.fs5_c00396{font-size:34.560000px;}
.fsa_c00396{font-size:37.440000px;}
.fsf_c00396{font-size:40.320000px;}
.fsc_c00396{font-size:43.200000px;}
.fs3_c00396{font-size:46.080000px;}
.fsd_c00396{font-size:48.960000px;}
.fs4_c00396{font-size:51.840000px;}
.fs6_c00396{font-size:54.720000px;}
.fs9_c00396{font-size:57.600000px;}
.fs7_c00396{font-size:60.480000px;}
.fs1_c00396{font-size:63.360000px;}
.fse_c00396{font-size:66.240000px;}
.fsb_c00396{font-size:69.120000px;}
.fs2_c00396{font-size:72.000000px;}
.fs8_c00396{font-size:74.880000px;}
.fs0_c00396{font-size:77.760000px;}
.fs14_c00396{font-size:83.520000px;}
.fs11_c00396{font-size:126.720000px;}
.fs12_c00396{font-size:129.600000px;}
.fs13_c00396{font-size:135.360000px;}
.y0_c00396{bottom:0.000000px;}
.y83_c00396{bottom:9.360000px;}
.y86_c00396{bottom:10.080000px;}
.y82_c00396{bottom:10.800000px;}
.y75_c00396{bottom:11.520000px;}
.y85_c00396{bottom:12.960000px;}
.y74_c00396{bottom:27.360000px;}
.y84_c00396{bottom:30.960000px;}
.y72_c00396{bottom:48.240000px;}
.y73_c00396{bottom:48.960000px;}
.y80_c00396{bottom:49.680000px;}
.y81_c00396{bottom:51.120000px;}
.y7f_c00396{bottom:51.840000px;}
.y7c_c00396{bottom:69.120000px;}
.y7d_c00396{bottom:69.840000px;}
.y70_c00396{bottom:70.560000px;}
.y71_c00396{bottom:71.280000px;}
.y7e_c00396{bottom:72.000000px;}
.y6f_c00396{bottom:90.720000px;}
.y79_c00396{bottom:91.440000px;}
.y6d_c00396{bottom:92.160000px;}
.y6e_c00396{bottom:92.880000px;}
.y7a_c00396{bottom:93.600000px;}
.y7b_c00396{bottom:94.320000px;}
.y77_c00396{bottom:114.480000px;}
.y6c_c00396{bottom:115.200000px;}
.y76_c00396{bottom:115.920000px;}
.y78_c00396{bottom:116.640000px;}
.y6b_c00396{bottom:136.080000px;}
.y66_c00396{bottom:176.400000px;}
.y67_c00396{bottom:177.120000px;}
.y6a_c00396{bottom:178.560000px;}
.y68_c00396{bottom:180.000000px;}
.y65_c00396{bottom:180.720000px;}
.y69_c00396{bottom:181.440000px;}
.y62_c00396{bottom:219.600000px;}
.y60_c00396{bottom:220.320000px;}
.y61_c00396{bottom:222.480000px;}
.y63_c00396{bottom:223.200000px;}
.y64_c00396{bottom:223.920000px;}
.y5f_c00396{bottom:224.640000px;}
.y5d_c00396{bottom:263.520000px;}
.y5b_c00396{bottom:264.960000px;}
.y5a_c00396{bottom:265.680000px;}
.y5c_c00396{bottom:266.400000px;}
.y5e_c00396{bottom:267.120000px;}
.y56_c00396{bottom:316.800000px;}
.y55_c00396{bottom:317.520000px;}
.y54_c00396{bottom:318.240000px;}
.y58_c00396{bottom:319.680000px;}
.y57_c00396{bottom:320.400000px;}
.y59_c00396{bottom:321.120000px;}
.y53_c00396{bottom:360.720000px;}
.y52_c00396{bottom:361.440000px;}
.y51_c00396{bottom:363.600000px;}
.y50_c00396{bottom:416.160000px;}
.y4d_c00396{bottom:457.920000px;}
.y4f_c00396{bottom:458.640000px;}
.y4b_c00396{bottom:459.360000px;}
.y4c_c00396{bottom:460.800000px;}
.y4e_c00396{bottom:461.520000px;}
.y48_c00396{bottom:501.120000px;}
.y44_c00396{bottom:501.840000px;}
.y45_c00396{bottom:502.560000px;}
.y4a_c00396{bottom:503.280000px;}
.y46_c00396{bottom:504.000000px;}
.y47_c00396{bottom:504.720000px;}
.y49_c00396{bottom:505.440000px;}
.y43_c00396{bottom:543.600000px;}
.y3f_c00396{bottom:545.040000px;}
.y42_c00396{bottom:545.760000px;}
.y40_c00396{bottom:546.480000px;}
.y3e_c00396{bottom:547.920000px;}
.y41_c00396{bottom:548.640000px;}
.y3b_c00396{bottom:588.960000px;}
.y3a_c00396{bottom:590.400000px;}
.y3c_c00396{bottom:591.120000px;}
.y3d_c00396{bottom:591.840000px;}
.y35_c00396{bottom:641.520000px;}
.y39_c00396{bottom:642.960000px;}
.y38_c00396{bottom:644.400000px;}
.y36_c00396{bottom:645.120000px;}
.y37_c00396{bottom:645.840000px;}
.y31_c00396{bottom:684.720000px;}
.y34_c00396{bottom:685.440000px;}
.y33_c00396{bottom:687.600000px;}
.y30_c00396{bottom:688.320000px;}
.y32_c00396{bottom:689.040000px;}
.y2d_c00396{bottom:738.000000px;}
.y2c_c00396{bottom:738.720000px;}
.y2e_c00396{bottom:739.440000px;}
.y2f_c00396{bottom:743.040000px;}
.y26_c00396{bottom:780.480000px;}
.y2a_c00396{bottom:781.200000px;}
.y28_c00396{bottom:781.920000px;}
.y25_c00396{bottom:782.640000px;}
.y2b_c00396{bottom:783.360000px;}
.y29_c00396{bottom:784.080000px;}
.y27_c00396{bottom:784.800000px;}
.y22_c00396{bottom:823.680000px;}
.y1f_c00396{bottom:824.400000px;}
.y23_c00396{bottom:825.120000px;}
.y1e_c00396{bottom:825.840000px;}
.y20_c00396{bottom:827.280000px;}
.y21_c00396{bottom:828.000000px;}
.y24_c00396{bottom:828.720000px;}
.y1a_c00396{bottom:866.880000px;}
.y1d_c00396{bottom:868.320000px;}
.y19_c00396{bottom:869.040000px;}
.y1b_c00396{bottom:870.480000px;}
.y1c_c00396{bottom:871.200000px;}
.y15_c00396{bottom:909.360000px;}
.y18_c00396{bottom:910.800000px;}
.y14_c00396{bottom:911.520000px;}
.y16_c00396{bottom:913.680000px;}
.y17_c00396{bottom:914.400000px;}
.y13_c00396{bottom:953.280000px;}
.y11_c00396{bottom:956.160000px;}
.y12_c00396{bottom:957.600000px;}
.ye_c00396{bottom:986.400000px;}
.y10_c00396{bottom:987.120000px;}
.yd_c00396{bottom:987.840000px;}
.yf_c00396{bottom:989.280000px;}
.yc_c00396{bottom:1028.880000px;}
.y9_c00396{bottom:1030.320000px;}
.ya_c00396{bottom:1031.040000px;}
.yb_c00396{bottom:1032.480000px;}
.y3_c00396{bottom:1062.000000px;}
.y2_c00396{bottom:1062.720000px;}
.y8_c00396{bottom:1063.440000px;}
.y7_c00396{bottom:1064.160000px;}
.y5_c00396{bottom:1064.880000px;}
.y6_c00396{bottom:1065.600000px;}
.y4_c00396{bottom:1066.320000px;}
.y1_c00396{bottom:1131.840000px;}
.h12_c00396{height:20.733750px;}
.h7_c00396{height:31.100625px;}
.hc_c00396{height:33.692344px;}
.h11_c00396{height:36.284062px;}
.he_c00396{height:38.875781px;}
.h5_c00396{height:41.467500px;}
.hf_c00396{height:44.059219px;}
.h6_c00396{height:46.650937px;}
.h8_c00396{height:49.242656px;}
.hb_c00396{height:51.834375px;}
.h9_c00396{height:54.426094px;}
.h3_c00396{height:57.017812px;}
.h10_c00396{height:59.609531px;}
.h14_c00396{height:60.474375px;}
.hd_c00396{height:62.201250px;}
.h4_c00396{height:64.792969px;}
.ha_c00396{height:67.384687px;}
.h2_c00396{height:69.976406px;}
.h17_c00396{height:75.159844px;}
.h13_c00396{height:114.035625px;}
.h15_c00396{height:116.627344px;}
.h16_c00396{height:121.810781px;}
.h1_c00396{height:1166.250000px;}
.h0_c00396{height:1166.400000px;}
.w1_c00396{width:766.500000px;}
.w0_c00396{width:766.800000px;}
.x0_c00396{left:0.000000px;}
.x28_c00396{left:54.000000px;}
.x2_c00396{left:56.159550px;}
.x29_c00396{left:76.320000px;}
.x4a_c00396{left:87.120000px;}
.x44_c00396{left:96.480000px;}
.x31_c00396{left:118.800000px;}
.x3d_c00396{left:120.240000px;}
.x52_c00396{left:128.160000px;}
.xd_c00396{left:129.600000px;}
.x3_c00396{left:131.040000px;}
.x55_c00396{left:149.760000px;}
.x53_c00396{left:151.200000px;}
.x23_c00396{left:162.000000px;}
.x47_c00396{left:163.440000px;}
.x2a_c00396{left:172.080000px;}
.x3e_c00396{left:173.520000px;}
.x37_c00396{left:174.960000px;}
.x54_c00396{left:183.600000px;}
.x18_c00396{left:185.040000px;}
.x24_c00396{left:194.400000px;}
.x51_c00396{left:196.560000px;}
.x2b_c00396{left:216.720000px;}
.x20_c00396{left:226.800000px;}
.x11_c00396{left:228.240000px;}
.x4f_c00396{left:237.600000px;}
.xe_c00396{left:239.040000px;}
.x59_c00396{left:246.960000px;}
.x3f_c00396{left:248.400000px;}
.x58_c00396{left:250.559685px;}
.x4_c00396{left:259.200000px;}
.x56_c00396{left:261.360000px;}
.x4b_c00396{left:270.000000px;}
.x21_c00396{left:271.440000px;}
.x12_c00396{left:280.800000px;}
.x19_c00396{left:282.960000px;}
.x32_c00396{left:291.600000px;}
.xf_c00396{left:293.760000px;}
.x5_c00396{left:303.120000px;}
.x5a_c00396{left:311.760000px;}
.x48_c00396{left:313.920000px;}
.x50_c00396{left:315.360000px;}
.x1a_c00396{left:324.720000px;}
.x13_c00396{left:326.160000px;}
.x45_c00396{left:334.080000px;}
.x38_c00396{left:335.520000px;}
.x10_c00396{left:336.960000px;}
.x40_c00396{left:347.040000px;}
.x2d_c00396{left:356.400000px;}
.x6_c00396{left:357.840000px;}
.x14_c00396{left:369.360000px;}
.x1d_c00396{left:371.520000px;}
.x25_c00396{left:379.440000px;}
.x5b_c00396{left:388.080000px;}
.x57_c00396{left:390.960000px;}
.x7_c00396{left:400.320000px;}
.x33_c00396{left:401.760000px;}
.x15_c00396{left:411.120000px;}
.x22_c00396{left:412.560000px;}
.x1b_c00396{left:422.640000px;}
.x41_c00396{left:432.000000px;}
.x49_c00396{left:443.520000px;}
.x39_c00396{left:444.960000px;}
.x5e_c00396{left:452.160000px;}
.x34_c00396{left:453.600000px;}
.x16_c00396{left:455.040000px;}
.x5c_c00396{left:464.400000px;}
.x1c_c00396{left:465.840000px;}
.x2c_c00396{left:475.920000px;}
.x35_c00396{left:486.000000px;}
.x42_c00396{left:497.520000px;}
.x8_c00396{left:498.960000px;}
.x43_c00396{left:507.600000px;}
.x2e_c00396{left:509.040000px;}
.x5f_c00396{left:516.960000px;}
.x46_c00396{left:522.720000px;}
.x4c_c00396{left:530.640000px;}
.x36_c00396{left:540.720000px;}
.x9_c00396{left:552.960000px;}
.x4d_c00396{left:562.320000px;}
.x3a_c00396{left:573.120000px;}
.x17_c00396{left:574.560000px;}
.x5d_c00396{left:582.480000px;}
.x26_c00396{left:584.640000px;}
.x3b_c00396{left:596.160000px;}
.xa_c00396{left:607.680000px;}
.x3c_c00396{left:616.320000px;}
.x27_c00396{left:617.760000px;}
.x2f_c00396{left:639.360000px;}
.x1e_c00396{left:640.800000px;}
.xb_c00396{left:650.880000px;}
.x4e_c00396{left:660.960000px;}
.x30_c00396{left:671.760000px;}
.x1_c00396{left:673.920000px;}
.xc_c00396{left:684.720000px;}
.x1f_c00396{left:704.160000px;}
@media print{
.v2_c00396{vertical-align:-7.680000pt;}
.v0_c00396{vertical-align:0.000000pt;}
.v1_c00396{vertical-align:7.680000pt;}
.ls1_c00396{letter-spacing:0.000000pt;}
.ls0_c00396{letter-spacing:184.866133pt;}
.ws2_c00396{word-spacing:0.000000pt;}
.ws0_c00396{word-spacing:122.764739pt;}
.ws1_c00396{word-spacing:142.935467pt;}
.fs10_c00396{font-size:20.480000pt;}
.fs5_c00396{font-size:30.720000pt;}
.fsa_c00396{font-size:33.280000pt;}
.fsf_c00396{font-size:35.840000pt;}
.fsc_c00396{font-size:38.400000pt;}
.fs3_c00396{font-size:40.960000pt;}
.fsd_c00396{font-size:43.520000pt;}
.fs4_c00396{font-size:46.080000pt;}
.fs6_c00396{font-size:48.640000pt;}
.fs9_c00396{font-size:51.200000pt;}
.fs7_c00396{font-size:53.760000pt;}
.fs1_c00396{font-size:56.320000pt;}
.fse_c00396{font-size:58.880000pt;}
.fsb_c00396{font-size:61.440000pt;}
.fs2_c00396{font-size:64.000000pt;}
.fs8_c00396{font-size:66.560000pt;}
.fs0_c00396{font-size:69.120000pt;}
.fs14_c00396{font-size:74.240000pt;}
.fs11_c00396{font-size:112.640000pt;}
.fs12_c00396{font-size:115.200000pt;}
.fs13_c00396{font-size:120.320000pt;}
.y0_c00396{bottom:0.000000pt;}
.y83_c00396{bottom:8.320000pt;}
.y86_c00396{bottom:8.960000pt;}
.y82_c00396{bottom:9.600000pt;}
.y75_c00396{bottom:10.240000pt;}
.y85_c00396{bottom:11.520000pt;}
.y74_c00396{bottom:24.320000pt;}
.y84_c00396{bottom:27.520000pt;}
.y72_c00396{bottom:42.880000pt;}
.y73_c00396{bottom:43.520000pt;}
.y80_c00396{bottom:44.160000pt;}
.y81_c00396{bottom:45.440000pt;}
.y7f_c00396{bottom:46.080000pt;}
.y7c_c00396{bottom:61.440000pt;}
.y7d_c00396{bottom:62.080000pt;}
.y70_c00396{bottom:62.720000pt;}
.y71_c00396{bottom:63.360000pt;}
.y7e_c00396{bottom:64.000000pt;}
.y6f_c00396{bottom:80.640000pt;}
.y79_c00396{bottom:81.280000pt;}
.y6d_c00396{bottom:81.920000pt;}
.y6e_c00396{bottom:82.560000pt;}
.y7a_c00396{bottom:83.200000pt;}
.y7b_c00396{bottom:83.840000pt;}
.y77_c00396{bottom:101.760000pt;}
.y6c_c00396{bottom:102.400000pt;}
.y76_c00396{bottom:103.040000pt;}
.y78_c00396{bottom:103.680000pt;}
.y6b_c00396{bottom:120.960000pt;}
.y66_c00396{bottom:156.800000pt;}
.y67_c00396{bottom:157.440000pt;}
.y6a_c00396{bottom:158.720000pt;}
.y68_c00396{bottom:160.000000pt;}
.y65_c00396{bottom:160.640000pt;}
.y69_c00396{bottom:161.280000pt;}
.y62_c00396{bottom:195.200000pt;}
.y60_c00396{bottom:195.840000pt;}
.y61_c00396{bottom:197.760000pt;}
.y63_c00396{bottom:198.400000pt;}
.y64_c00396{bottom:199.040000pt;}
.y5f_c00396{bottom:199.680000pt;}
.y5d_c00396{bottom:234.240000pt;}
.y5b_c00396{bottom:235.520000pt;}
.y5a_c00396{bottom:236.160000pt;}
.y5c_c00396{bottom:236.800000pt;}
.y5e_c00396{bottom:237.440000pt;}
.y56_c00396{bottom:281.600000pt;}
.y55_c00396{bottom:282.240000pt;}
.y54_c00396{bottom:282.880000pt;}
.y58_c00396{bottom:284.160000pt;}
.y57_c00396{bottom:284.800000pt;}
.y59_c00396{bottom:285.440000pt;}
.y53_c00396{bottom:320.640000pt;}
.y52_c00396{bottom:321.280000pt;}
.y51_c00396{bottom:323.200000pt;}
.y50_c00396{bottom:369.920000pt;}
.y4d_c00396{bottom:407.040000pt;}
.y4f_c00396{bottom:407.680000pt;}
.y4b_c00396{bottom:408.320000pt;}
.y4c_c00396{bottom:409.600000pt;}
.y4e_c00396{bottom:410.240000pt;}
.y48_c00396{bottom:445.440000pt;}
.y44_c00396{bottom:446.080000pt;}
.y45_c00396{bottom:446.720000pt;}
.y4a_c00396{bottom:447.360000pt;}
.y46_c00396{bottom:448.000000pt;}
.y47_c00396{bottom:448.640000pt;}
.y49_c00396{bottom:449.280000pt;}
.y43_c00396{bottom:483.200000pt;}
.y3f_c00396{bottom:484.480000pt;}
.y42_c00396{bottom:485.120000pt;}
.y40_c00396{bottom:485.760000pt;}
.y3e_c00396{bottom:487.040000pt;}
.y41_c00396{bottom:487.680000pt;}
.y3b_c00396{bottom:523.520000pt;}
.y3a_c00396{bottom:524.800000pt;}
.y3c_c00396{bottom:525.440000pt;}
.y3d_c00396{bottom:526.080000pt;}
.y35_c00396{bottom:570.240000pt;}
.y39_c00396{bottom:571.520000pt;}
.y38_c00396{bottom:572.800000pt;}
.y36_c00396{bottom:573.440000pt;}
.y37_c00396{bottom:574.080000pt;}
.y31_c00396{bottom:608.640000pt;}
.y34_c00396{bottom:609.280000pt;}
.y33_c00396{bottom:611.200000pt;}
.y30_c00396{bottom:611.840000pt;}
.y32_c00396{bottom:612.480000pt;}
.y2d_c00396{bottom:656.000000pt;}
.y2c_c00396{bottom:656.640000pt;}
.y2e_c00396{bottom:657.280000pt;}
.y2f_c00396{bottom:660.480000pt;}
.y26_c00396{bottom:693.760000pt;}
.y2a_c00396{bottom:694.400000pt;}
.y28_c00396{bottom:695.040000pt;}
.y25_c00396{bottom:695.680000pt;}
.y2b_c00396{bottom:696.320000pt;}
.y29_c00396{bottom:696.960000pt;}
.y27_c00396{bottom:697.600000pt;}
.y22_c00396{bottom:732.160000pt;}
.y1f_c00396{bottom:732.800000pt;}
.y23_c00396{bottom:733.440000pt;}
.y1e_c00396{bottom:734.080000pt;}
.y20_c00396{bottom:735.360000pt;}
.y21_c00396{bottom:736.000000pt;}
.y24_c00396{bottom:736.640000pt;}
.y1a_c00396{bottom:770.560000pt;}
.y1d_c00396{bottom:771.840000pt;}
.y19_c00396{bottom:772.480000pt;}
.y1b_c00396{bottom:773.760000pt;}
.y1c_c00396{bottom:774.400000pt;}
.y15_c00396{bottom:808.320000pt;}
.y18_c00396{bottom:809.600000pt;}
.y14_c00396{bottom:810.240000pt;}
.y16_c00396{bottom:812.160000pt;}
.y17_c00396{bottom:812.800000pt;}
.y13_c00396{bottom:847.360000pt;}
.y11_c00396{bottom:849.920000pt;}
.y12_c00396{bottom:851.200000pt;}
.ye_c00396{bottom:876.800000pt;}
.y10_c00396{bottom:877.440000pt;}
.yd_c00396{bottom:878.080000pt;}
.yf_c00396{bottom:879.360000pt;}
.yc_c00396{bottom:914.560000pt;}
.y9_c00396{bottom:915.840000pt;}
.ya_c00396{bottom:916.480000pt;}
.yb_c00396{bottom:917.760000pt;}
.y3_c00396{bottom:944.000000pt;}
.y2_c00396{bottom:944.640000pt;}
.y8_c00396{bottom:945.280000pt;}
.y7_c00396{bottom:945.920000pt;}
.y5_c00396{bottom:946.560000pt;}
.y6_c00396{bottom:947.200000pt;}
.y4_c00396{bottom:947.840000pt;}
.y1_c00396{bottom:1006.080000pt;}
.h12_c00396{height:18.430000pt;}
.h7_c00396{height:27.645000pt;}
.hc_c00396{height:29.948750pt;}
.h11_c00396{height:32.252500pt;}
.he_c00396{height:34.556250pt;}
.h5_c00396{height:36.860000pt;}
.hf_c00396{height:39.163750pt;}
.h6_c00396{height:41.467500pt;}
.h8_c00396{height:43.771250pt;}
.hb_c00396{height:46.075000pt;}
.h9_c00396{height:48.378750pt;}
.h3_c00396{height:50.682500pt;}
.h10_c00396{height:52.986250pt;}
.h14_c00396{height:53.755000pt;}
.hd_c00396{height:55.290000pt;}
.h4_c00396{height:57.593750pt;}
.ha_c00396{height:59.897500pt;}
.h2_c00396{height:62.201250pt;}
.h17_c00396{height:66.808750pt;}
.h13_c00396{height:101.365000pt;}
.h15_c00396{height:103.668750pt;}
.h16_c00396{height:108.276250pt;}
.h1_c00396{height:1036.666667pt;}
.h0_c00396{height:1036.800000pt;}
.w1_c00396{width:681.333333pt;}
.w0_c00396{width:681.600000pt;}
.x0_c00396{left:0.000000pt;}
.x28_c00396{left:48.000000pt;}
.x2_c00396{left:49.919600pt;}
.x29_c00396{left:67.840000pt;}
.x4a_c00396{left:77.440000pt;}
.x44_c00396{left:85.760000pt;}
.x31_c00396{left:105.600000pt;}
.x3d_c00396{left:106.880000pt;}
.x52_c00396{left:113.920000pt;}
.xd_c00396{left:115.200000pt;}
.x3_c00396{left:116.480000pt;}
.x55_c00396{left:133.120000pt;}
.x53_c00396{left:134.400000pt;}
.x23_c00396{left:144.000000pt;}
.x47_c00396{left:145.280000pt;}
.x2a_c00396{left:152.960000pt;}
.x3e_c00396{left:154.240000pt;}
.x37_c00396{left:155.520000pt;}
.x54_c00396{left:163.200000pt;}
.x18_c00396{left:164.480000pt;}
.x24_c00396{left:172.800000pt;}
.x51_c00396{left:174.720000pt;}
.x2b_c00396{left:192.640000pt;}
.x20_c00396{left:201.600000pt;}
.x11_c00396{left:202.880000pt;}
.x4f_c00396{left:211.200000pt;}
.xe_c00396{left:212.480000pt;}
.x59_c00396{left:219.520000pt;}
.x3f_c00396{left:220.800000pt;}
.x58_c00396{left:222.719720pt;}
.x4_c00396{left:230.400000pt;}
.x56_c00396{left:232.320000pt;}
.x4b_c00396{left:240.000000pt;}
.x21_c00396{left:241.280000pt;}
.x12_c00396{left:249.600000pt;}
.x19_c00396{left:251.520000pt;}
.x32_c00396{left:259.200000pt;}
.xf_c00396{left:261.120000pt;}
.x5_c00396{left:269.440000pt;}
.x5a_c00396{left:277.120000pt;}
.x48_c00396{left:279.040000pt;}
.x50_c00396{left:280.320000pt;}
.x1a_c00396{left:288.640000pt;}
.x13_c00396{left:289.920000pt;}
.x45_c00396{left:296.960000pt;}
.x38_c00396{left:298.240000pt;}
.x10_c00396{left:299.520000pt;}
.x40_c00396{left:308.480000pt;}
.x2d_c00396{left:316.800000pt;}
.x6_c00396{left:318.080000pt;}
.x14_c00396{left:328.320000pt;}
.x1d_c00396{left:330.240000pt;}
.x25_c00396{left:337.280000pt;}
.x5b_c00396{left:344.960000pt;}
.x57_c00396{left:347.520000pt;}
.x7_c00396{left:355.840000pt;}
.x33_c00396{left:357.120000pt;}
.x15_c00396{left:365.440000pt;}
.x22_c00396{left:366.720000pt;}
.x1b_c00396{left:375.680000pt;}
.x41_c00396{left:384.000000pt;}
.x49_c00396{left:394.240000pt;}
.x39_c00396{left:395.520000pt;}
.x5e_c00396{left:401.920000pt;}
.x34_c00396{left:403.200000pt;}
.x16_c00396{left:404.480000pt;}
.x5c_c00396{left:412.800000pt;}
.x1c_c00396{left:414.080000pt;}
.x2c_c00396{left:423.040000pt;}
.x35_c00396{left:432.000000pt;}
.x42_c00396{left:442.240000pt;}
.x8_c00396{left:443.520000pt;}
.x43_c00396{left:451.200000pt;}
.x2e_c00396{left:452.480000pt;}
.x5f_c00396{left:459.520000pt;}
.x46_c00396{left:464.640000pt;}
.x4c_c00396{left:471.680000pt;}
.x36_c00396{left:480.640000pt;}
.x9_c00396{left:491.520000pt;}
.x4d_c00396{left:499.840000pt;}
.x3a_c00396{left:509.440000pt;}
.x17_c00396{left:510.720000pt;}
.x5d_c00396{left:517.760000pt;}
.x26_c00396{left:519.680000pt;}
.x3b_c00396{left:529.920000pt;}
.xa_c00396{left:540.160000pt;}
.x3c_c00396{left:547.840000pt;}
.x27_c00396{left:549.120000pt;}
.x2f_c00396{left:568.320000pt;}
.x1e_c00396{left:569.600000pt;}
.xb_c00396{left:578.560000pt;}
.x4e_c00396{left:587.520000pt;}
.x30_c00396{left:597.120000pt;}
.x1_c00396{left:599.040000pt;}
.xc_c00396{left:608.640000pt;}
.x1f_c00396{left:625.920000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_bff32b1a8f6e1248f2836a3f.woff2')format("woff");}.ff1_c00397{font-family:ff1_c00397;line-height:1.109863;font-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_c00397{transform:matrix(0.221150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221150,0.000000,0.000000,0.250000,0,0);}
.mc_c00397{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m27_c00397{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m31_c00397{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m18_c00397{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m36_c00397{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m2b_c00397{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);}
.m2d_c00397{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m16_c00397{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m34_c00397{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m38_c00397{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00397{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m33_c00397{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m28_c00397{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m37_c00397{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);}
.m24_c00397{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m23_c00397{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m30_c00397{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00397{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m12_c00397{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00397{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m29_c00397{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mf_c00397{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m14_c00397{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m10_c00397{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m17_c00397{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.ma_c00397{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m19_c00397{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m25_c00397{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m20_c00397{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m11_c00397{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00397{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00397{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00397{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.me_c00397{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m13_c00397{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m0_c00397{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m4_c00397{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m35_c00397{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00397{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m6_c00397{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m21_c00397{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);}
.m8_c00397{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);}
.m2f_c00397{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);}
.m2_c00397{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m5_c00397{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m1_c00397{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);}
.m32_c00397{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.mb_c00397{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m3_c00397{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m15_c00397{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m7_c00397{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m9_c00397{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00397{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);}
.m22_c00397{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m26_c00397{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00397{transform:matrix(0.700000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.700000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.700000,0.000000,0.000000,0.250000,0,0);}
.v0_c00397{vertical-align:0.000000px;}
.v1_c00397{vertical-align:5.760000px;}
.ls1_c00397{letter-spacing:0.000000px;}
.ls0_c00397{letter-spacing:327.974400px;}
.sc__c00397{text-shadow:none;}
.sc0_c00397{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00397{-webkit-text-stroke:0px transparent;}
.sc0_c00397{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00397{word-spacing:0.000000px;}
.fc0_c00397{color:transparent;}
.fsa_c00397{font-size:17.280000px;}
.fs9_c00397{font-size:34.560000px;}
.fsb_c00397{font-size:37.440000px;}
.fs7_c00397{font-size:46.080000px;}
.fs5_c00397{font-size:48.960000px;}
.fs6_c00397{font-size:51.840000px;}
.fs1_c00397{font-size:54.720000px;}
.fs4_c00397{font-size:57.600000px;}
.fs2_c00397{font-size:60.480000px;}
.fs3_c00397{font-size:63.360000px;}
.fs8_c00397{font-size:66.240000px;}
.fsc_c00397{font-size:69.120000px;}
.fs0_c00397{font-size:74.880000px;}
.y0_c00397{bottom:0.000000px;}
.y4c_c00397{bottom:198.720000px;}
.y4b_c00397{bottom:199.440000px;}
.y4d_c00397{bottom:200.160000px;}
.y4e_c00397{bottom:200.880000px;}
.y48_c00397{bottom:243.360000px;}
.y47_c00397{bottom:244.080000px;}
.y49_c00397{bottom:245.520000px;}
.y4a_c00397{bottom:246.240000px;}
.y46_c00397{bottom:247.680000px;}
.y43_c00397{bottom:285.840000px;}
.y42_c00397{bottom:286.560000px;}
.y45_c00397{bottom:287.280000px;}
.y44_c00397{bottom:288.720000px;}
.y40_c00397{bottom:330.480000px;}
.y41_c00397{bottom:331.200000px;}
.y3f_c00397{bottom:331.920000px;}
.y3e_c00397{bottom:332.640000px;}
.y3b_c00397{bottom:372.960000px;}
.y3c_c00397{bottom:373.680000px;}
.y3d_c00397{bottom:374.400000px;}
.y39_c00397{bottom:416.160000px;}
.y3a_c00397{bottom:417.600000px;}
.y37_c00397{bottom:419.760000px;}
.y38_c00397{bottom:420.480000px;}
.y33_c00397{bottom:459.360000px;}
.y35_c00397{bottom:460.080000px;}
.y34_c00397{bottom:460.800000px;}
.y36_c00397{bottom:462.240000px;}
.y32_c00397{bottom:462.960000px;}
.y31_c00397{bottom:504.720000px;}
.y2f_c00397{bottom:505.440000px;}
.y30_c00397{bottom:507.600000px;}
.y2d_c00397{bottom:546.480000px;}
.y2e_c00397{bottom:547.200000px;}
.y2c_c00397{bottom:549.360000px;}
.y2b_c00397{bottom:589.680000px;}
.y29_c00397{bottom:591.120000px;}
.y2a_c00397{bottom:591.840000px;}
.y27_c00397{bottom:632.160000px;}
.y28_c00397{bottom:632.880000px;}
.y26_c00397{bottom:634.320000px;}
.y25_c00397{bottom:675.360000px;}
.y23_c00397{bottom:676.080000px;}
.y22_c00397{bottom:678.240000px;}
.y24_c00397{bottom:678.960000px;}
.y1e_c00397{bottom:718.560000px;}
.y1f_c00397{bottom:719.280000px;}
.y20_c00397{bottom:720.000000px;}
.y21_c00397{bottom:721.440000px;}
.y1c_c00397{bottom:762.480000px;}
.y1b_c00397{bottom:763.200000px;}
.y1d_c00397{bottom:763.920000px;}
.y19_c00397{bottom:764.640000px;}
.y1a_c00397{bottom:765.360000px;}
.y16_c00397{bottom:805.680000px;}
.y17_c00397{bottom:806.400000px;}
.y18_c00397{bottom:807.120000px;}
.y15_c00397{bottom:807.840000px;}
.y14_c00397{bottom:808.560000px;}
.y12_c00397{bottom:849.600000px;}
.y13_c00397{bottom:850.320000px;}
.y11_c00397{bottom:851.760000px;}
.ye_c00397{bottom:892.080000px;}
.y10_c00397{bottom:892.800000px;}
.yf_c00397{bottom:894.960000px;}
.yd_c00397{bottom:895.680000px;}
.yc_c00397{bottom:935.280000px;}
.yb_c00397{bottom:936.000000px;}
.ya_c00397{bottom:936.720000px;}
.y9_c00397{bottom:938.160000px;}
.y7_c00397{bottom:978.480000px;}
.y8_c00397{bottom:979.200000px;}
.y6_c00397{bottom:980.640000px;}
.y5_c00397{bottom:1032.480000px;}
.y4_c00397{bottom:1033.200000px;}
.y3_c00397{bottom:1054.080000px;}
.y2_c00397{bottom:1054.800000px;}
.y1_c00397{bottom:1134.000000px;}
.hc_c00397{height:15.550313px;}
.hb_c00397{height:31.100625px;}
.hd_c00397{height:33.692344px;}
.h9_c00397{height:41.467500px;}
.h7_c00397{height:44.059219px;}
.h8_c00397{height:46.650937px;}
.h3_c00397{height:49.242656px;}
.h6_c00397{height:51.834375px;}
.h4_c00397{height:54.426094px;}
.h5_c00397{height:57.017812px;}
.he_c00397{height:57.594375px;}
.ha_c00397{height:59.609531px;}
.hf_c00397{height:62.201250px;}
.h2_c00397{height:67.384687px;}
.h1_c00397{height:1168.500000px;}
.h0_c00397{height:1168.560000px;}
.w1_c00397{width:772.500000px;}
.w0_c00397{width:772.560000px;}
.x0_c00397{left:0.000000px;}
.x9_c00397{left:60.480000px;}
.x21_c00397{left:69.840000px;}
.x23_c00397{left:71.280000px;}
.x1e_c00397{left:79.920000px;}
.xa_c00397{left:92.160000px;}
.xf_c00397{left:101.520000px;}
.x14_c00397{left:102.960000px;}
.x7_c00397{left:136.080000px;}
.x2_c00397{left:146.880000px;}
.x18_c00397{left:156.240000px;}
.x1d_c00397{left:157.680000px;}
.x15_c00397{left:168.480000px;}
.x3_c00397{left:232.560000px;}
.x19_c00397{left:244.080000px;}
.x22_c00397{left:253.440000px;}
.x10_c00397{left:254.880000px;}
.xb_c00397{left:266.400000px;}
.x4_c00397{left:330.480000px;}
.x1a_c00397{left:342.000000px;}
.x11_c00397{left:351.360000px;}
.x1b_c00397{left:352.800000px;}
.xc_c00397{left:361.440000px;}
.x16_c00397{left:362.880000px;}
.x8_c00397{left:426.960000px;}
.x5_c00397{left:428.400000px;}
.x24_c00397{left:439.200000px;}
.x12_c00397{left:450.000000px;}
.xd_c00397{left:459.360000px;}
.x1c_c00397{left:460.800000px;}
.x25_c00397{left:525.600000px;}
.x6_c00397{left:535.680000px;}
.x13_c00397{left:537.120000px;}
.x17_c00397{left:547.200000px;}
.xe_c00397{left:548.640000px;}
.x1f_c00397{left:557.280000px;}
.x20_c00397{left:558.720000px;}
.x1_c00397{left:668.880000px;}
@media print{
.v0_c00397{vertical-align:0.000000pt;}
.v1_c00397{vertical-align:5.120000pt;}
.ls1_c00397{letter-spacing:0.000000pt;}
.ls0_c00397{letter-spacing:291.532800pt;}
.ws0_c00397{word-spacing:0.000000pt;}
.fsa_c00397{font-size:15.360000pt;}
.fs9_c00397{font-size:30.720000pt;}
.fsb_c00397{font-size:33.280000pt;}
.fs7_c00397{font-size:40.960000pt;}
.fs5_c00397{font-size:43.520000pt;}
.fs6_c00397{font-size:46.080000pt;}
.fs1_c00397{font-size:48.640000pt;}
.fs4_c00397{font-size:51.200000pt;}
.fs2_c00397{font-size:53.760000pt;}
.fs3_c00397{font-size:56.320000pt;}
.fs8_c00397{font-size:58.880000pt;}
.fsc_c00397{font-size:61.440000pt;}
.fs0_c00397{font-size:66.560000pt;}
.y0_c00397{bottom:0.000000pt;}
.y4c_c00397{bottom:176.640000pt;}
.y4b_c00397{bottom:177.280000pt;}
.y4d_c00397{bottom:177.920000pt;}
.y4e_c00397{bottom:178.560000pt;}
.y48_c00397{bottom:216.320000pt;}
.y47_c00397{bottom:216.960000pt;}
.y49_c00397{bottom:218.240000pt;}
.y4a_c00397{bottom:218.880000pt;}
.y46_c00397{bottom:220.160000pt;}
.y43_c00397{bottom:254.080000pt;}
.y42_c00397{bottom:254.720000pt;}
.y45_c00397{bottom:255.360000pt;}
.y44_c00397{bottom:256.640000pt;}
.y40_c00397{bottom:293.760000pt;}
.y41_c00397{bottom:294.400000pt;}
.y3f_c00397{bottom:295.040000pt;}
.y3e_c00397{bottom:295.680000pt;}
.y3b_c00397{bottom:331.520000pt;}
.y3c_c00397{bottom:332.160000pt;}
.y3d_c00397{bottom:332.800000pt;}
.y39_c00397{bottom:369.920000pt;}
.y3a_c00397{bottom:371.200000pt;}
.y37_c00397{bottom:373.120000pt;}
.y38_c00397{bottom:373.760000pt;}
.y33_c00397{bottom:408.320000pt;}
.y35_c00397{bottom:408.960000pt;}
.y34_c00397{bottom:409.600000pt;}
.y36_c00397{bottom:410.880000pt;}
.y32_c00397{bottom:411.520000pt;}
.y31_c00397{bottom:448.640000pt;}
.y2f_c00397{bottom:449.280000pt;}
.y30_c00397{bottom:451.200000pt;}
.y2d_c00397{bottom:485.760000pt;}
.y2e_c00397{bottom:486.400000pt;}
.y2c_c00397{bottom:488.320000pt;}
.y2b_c00397{bottom:524.160000pt;}
.y29_c00397{bottom:525.440000pt;}
.y2a_c00397{bottom:526.080000pt;}
.y27_c00397{bottom:561.920000pt;}
.y28_c00397{bottom:562.560000pt;}
.y26_c00397{bottom:563.840000pt;}
.y25_c00397{bottom:600.320000pt;}
.y23_c00397{bottom:600.960000pt;}
.y22_c00397{bottom:602.880000pt;}
.y24_c00397{bottom:603.520000pt;}
.y1e_c00397{bottom:638.720000pt;}
.y1f_c00397{bottom:639.360000pt;}
.y20_c00397{bottom:640.000000pt;}
.y21_c00397{bottom:641.280000pt;}
.y1c_c00397{bottom:677.760000pt;}
.y1b_c00397{bottom:678.400000pt;}
.y1d_c00397{bottom:679.040000pt;}
.y19_c00397{bottom:679.680000pt;}
.y1a_c00397{bottom:680.320000pt;}
.y16_c00397{bottom:716.160000pt;}
.y17_c00397{bottom:716.800000pt;}
.y18_c00397{bottom:717.440000pt;}
.y15_c00397{bottom:718.080000pt;}
.y14_c00397{bottom:718.720000pt;}
.y12_c00397{bottom:755.200000pt;}
.y13_c00397{bottom:755.840000pt;}
.y11_c00397{bottom:757.120000pt;}
.ye_c00397{bottom:792.960000pt;}
.y10_c00397{bottom:793.600000pt;}
.yf_c00397{bottom:795.520000pt;}
.yd_c00397{bottom:796.160000pt;}
.yc_c00397{bottom:831.360000pt;}
.yb_c00397{bottom:832.000000pt;}
.ya_c00397{bottom:832.640000pt;}
.y9_c00397{bottom:833.920000pt;}
.y7_c00397{bottom:869.760000pt;}
.y8_c00397{bottom:870.400000pt;}
.y6_c00397{bottom:871.680000pt;}
.y5_c00397{bottom:917.760000pt;}
.y4_c00397{bottom:918.400000pt;}
.y3_c00397{bottom:936.960000pt;}
.y2_c00397{bottom:937.600000pt;}
.y1_c00397{bottom:1008.000000pt;}
.hc_c00397{height:13.822500pt;}
.hb_c00397{height:27.645000pt;}
.hd_c00397{height:29.948750pt;}
.h9_c00397{height:36.860000pt;}
.h7_c00397{height:39.163750pt;}
.h8_c00397{height:41.467500pt;}
.h3_c00397{height:43.771250pt;}
.h6_c00397{height:46.075000pt;}
.h4_c00397{height:48.378750pt;}
.h5_c00397{height:50.682500pt;}
.he_c00397{height:51.195000pt;}
.ha_c00397{height:52.986250pt;}
.hf_c00397{height:55.290000pt;}
.h2_c00397{height:59.897500pt;}
.h1_c00397{height:1038.666667pt;}
.h0_c00397{height:1038.720000pt;}
.w1_c00397{width:686.666667pt;}
.w0_c00397{width:686.720000pt;}
.x0_c00397{left:0.000000pt;}
.x9_c00397{left:53.760000pt;}
.x21_c00397{left:62.080000pt;}
.x23_c00397{left:63.360000pt;}
.x1e_c00397{left:71.040000pt;}
.xa_c00397{left:81.920000pt;}
.xf_c00397{left:90.240000pt;}
.x14_c00397{left:91.520000pt;}
.x7_c00397{left:120.960000pt;}
.x2_c00397{left:130.560000pt;}
.x18_c00397{left:138.880000pt;}
.x1d_c00397{left:140.160000pt;}
.x15_c00397{left:149.760000pt;}
.x3_c00397{left:206.720000pt;}
.x19_c00397{left:216.960000pt;}
.x22_c00397{left:225.280000pt;}
.x10_c00397{left:226.560000pt;}
.xb_c00397{left:236.800000pt;}
.x4_c00397{left:293.760000pt;}
.x1a_c00397{left:304.000000pt;}
.x11_c00397{left:312.320000pt;}
.x1b_c00397{left:313.600000pt;}
.xc_c00397{left:321.280000pt;}
.x16_c00397{left:322.560000pt;}
.x8_c00397{left:379.520000pt;}
.x5_c00397{left:380.800000pt;}
.x24_c00397{left:390.400000pt;}
.x12_c00397{left:400.000000pt;}
.xd_c00397{left:408.320000pt;}
.x1c_c00397{left:409.600000pt;}
.x25_c00397{left:467.200000pt;}
.x6_c00397{left:476.160000pt;}
.x13_c00397{left:477.440000pt;}
.x17_c00397{left:486.400000pt;}
.xe_c00397{left:487.680000pt;}
.x1f_c00397{left:495.360000pt;}
.x20_c00397{left:496.640000pt;}
.x1_c00397{left:594.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_cb5fb180b29f890c5450a992.woff2')format("woff");}.ff1_c00398{font-family:ff1_c00398;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m30_c00398{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00398{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mc_c00398{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);}
.m1c_c00398{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);}
.m3b_c00398{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);}
.m5c_c00398{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);}
.m21_c00398{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00398{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m19_c00398{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_c00398{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m18_c00398{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1_c00398{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00398{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m15_c00398{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m12_c00398{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2_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);}
.m9_c00398{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m59_c00398{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00398{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00398{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m14_c00398{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);}
.m33_c00398{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m22_c00398{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);}
.m3c_c00398{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);}
.m42_c00398{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00398{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m37_c00398{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);}
.m3a_c00398{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.mf_c00398{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m32_c00398{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00398{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m0_c00398{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00398{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m13_c00398{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);}
.m47_c00398{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00398{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m16_c00398{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);}
.mb_c00398{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);}
.m10_c00398{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00398{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00398{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00398{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);}
.m41_c00398{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_c00398{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);}
.m52_c00398{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.me_c00398{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m34_c00398{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m45_c00398{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);}
.m39_c00398{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);}
.m2b_c00398{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m38_c00398{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);}
.m4_c00398{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);}
.m23_c00398{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m27_c00398{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m31_c00398{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m44_c00398{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00398{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);}
.m49_c00398{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00398{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m4d_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);}
.m25_c00398{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m48_c00398{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m7_c00398{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00398{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00398{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);}
.m56_c00398{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m26_c00398{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);}
.m1f_c00398{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m58_c00398{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m35_c00398{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m29_c00398{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m6_c00398{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m40_c00398{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);}
.m5_c00398{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);}
.m3e_c00398{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m24_c00398{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m11_c00398{transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);}
.ma_c00398{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m36_c00398{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m53_c00398{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m3_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);}
.m5a_c00398{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m8_c00398{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m54_c00398{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m55_c00398{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);}
.m43_c00398{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m50_c00398{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m57_c00398{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);}
.m5d_c00398{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);}
.md_c00398{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m20_c00398{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m51_c00398{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00398{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);}
.m1b_c00398{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);}
.m60_c00398{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m46_c00398{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m28_c00398{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.v1_c00398{vertical-align:-11.520000px;}
.v0_c00398{vertical-align:0.000000px;}
.ls1_c00398{letter-spacing:0.000000px;}
.ls0_c00398{letter-spacing:30.662640px;}
.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;}
}
.ws1_c00398{word-spacing:0.000000px;}
.ws0_c00398{word-spacing:3.906480px;}
.fc0_c00398{color:transparent;}
.fsb_c00398{font-size:23.040000px;}
.fs8_c00398{font-size:34.560000px;}
.fs6_c00398{font-size:37.440000px;}
.fs3_c00398{font-size:40.320000px;}
.fs10_c00398{font-size:43.200000px;}
.fsf_c00398{font-size:46.080000px;}
.fs9_c00398{font-size:48.960000px;}
.fs1_c00398{font-size:51.840000px;}
.fsd_c00398{font-size:54.720000px;}
.fsa_c00398{font-size:57.600000px;}
.fs2_c00398{font-size:60.480000px;}
.fs7_c00398{font-size:63.360000px;}
.fs4_c00398{font-size:66.240000px;}
.fs5_c00398{font-size:69.120000px;}
.fsc_c00398{font-size:72.000000px;}
.fs0_c00398{font-size:74.880000px;}
.fse_c00398{font-size:103.680000px;}
.y0_c00398{bottom:0.000000px;}
.y65_c00398{bottom:45.360000px;}
.y68_c00398{bottom:46.800000px;}
.y64_c00398{bottom:47.520000px;}
.y67_c00398{bottom:48.240000px;}
.y66_c00398{bottom:48.960000px;}
.y69_c00398{bottom:49.680000px;}
.y61_c00398{bottom:89.280000px;}
.y63_c00398{bottom:90.000000px;}
.y60_c00398{bottom:90.720000px;}
.y62_c00398{bottom:91.440000px;}
.y5f_c00398{bottom:92.160000px;}
.y5c_c00398{bottom:131.760000px;}
.y5e_c00398{bottom:133.920000px;}
.y5d_c00398{bottom:134.640000px;}
.y5b_c00398{bottom:135.360000px;}
.y5a_c00398{bottom:136.800000px;}
.y56_c00398{bottom:174.960000px;}
.y57_c00398{bottom:175.680000px;}
.y59_c00398{bottom:176.400000px;}
.y54_c00398{bottom:177.120000px;}
.y55_c00398{bottom:177.840000px;}
.y58_c00398{bottom:178.560000px;}
.y50_c00398{bottom:216.720000px;}
.y51_c00398{bottom:217.440000px;}
.y4e_c00398{bottom:218.160000px;}
.y52_c00398{bottom:220.320000px;}
.y4f_c00398{bottom:221.040000px;}
.y53_c00398{bottom:221.760000px;}
.y4c_c00398{bottom:262.080000px;}
.y4d_c00398{bottom:263.520000px;}
.y4b_c00398{bottom:264.240000px;}
.y4a_c00398{bottom:264.960000px;}
.y48_c00398{bottom:304.560000px;}
.y44_c00398{bottom:305.280000px;}
.y43_c00398{bottom:306.000000px;}
.y49_c00398{bottom:306.720000px;}
.y46_c00398{bottom:307.440000px;}
.y45_c00398{bottom:308.160000px;}
.y47_c00398{bottom:308.880000px;}
.y3e_c00398{bottom:347.760000px;}
.y3f_c00398{bottom:348.480000px;}
.y40_c00398{bottom:349.200000px;}
.y41_c00398{bottom:350.640000px;}
.y42_c00398{bottom:352.080000px;}
.y3b_c00398{bottom:394.560000px;}
.y3c_c00398{bottom:395.280000px;}
.y3d_c00398{bottom:396.000000px;}
.y38_c00398{bottom:435.600000px;}
.y3a_c00398{bottom:437.760000px;}
.y37_c00398{bottom:438.480000px;}
.y39_c00398{bottom:439.200000px;}
.y35_c00398{bottom:478.800000px;}
.y34_c00398{bottom:479.520000px;}
.y36_c00398{bottom:480.960000px;}
.y33_c00398{bottom:481.680000px;}
.y31_c00398{bottom:522.720000px;}
.y30_c00398{bottom:524.880000px;}
.y32_c00398{bottom:525.600000px;}
.y2e_c00398{bottom:565.200000px;}
.y2f_c00398{bottom:565.920000px;}
.y2d_c00398{bottom:568.080000px;}
.y2c_c00398{bottom:568.800000px;}
.y2a_c00398{bottom:608.400000px;}
.y29_c00398{bottom:609.120000px;}
.y28_c00398{bottom:611.280000px;}
.y2b_c00398{bottom:612.000000px;}
.y24_c00398{bottom:662.400000px;}
.y25_c00398{bottom:663.120000px;}
.y26_c00398{bottom:663.840000px;}
.y23_c00398{bottom:664.560000px;}
.y22_c00398{bottom:665.280000px;}
.y27_c00398{bottom:666.000000px;}
.y1d_c00398{bottom:704.160000px;}
.y21_c00398{bottom:704.880000px;}
.y20_c00398{bottom:705.600000px;}
.y1f_c00398{bottom:707.760000px;}
.y1e_c00398{bottom:708.480000px;}
.y1c_c00398{bottom:750.960000px;}
.y1b_c00398{bottom:751.680000px;}
.y19_c00398{bottom:792.000000px;}
.y1a_c00398{bottom:794.880000px;}
.y17_c00398{bottom:834.480000px;}
.y18_c00398{bottom:837.360000px;}
.y15_c00398{bottom:877.680000px;}
.y16_c00398{bottom:878.400000px;}
.y14_c00398{bottom:881.280000px;}
.y13_c00398{bottom:882.000000px;}
.yf_c00398{bottom:933.120000px;}
.ye_c00398{bottom:933.840000px;}
.y10_c00398{bottom:934.560000px;}
.yd_c00398{bottom:935.280000px;}
.yc_c00398{bottom:936.000000px;}
.y12_c00398{bottom:938.880000px;}
.y11_c00398{bottom:967.680000px;}
.yb_c00398{bottom:968.400000px;}
.y5_c00398{bottom:1008.000000px;}
.y8_c00398{bottom:1008.720000px;}
.ya_c00398{bottom:1010.160000px;}
.y7_c00398{bottom:1010.880000px;}
.y6_c00398{bottom:1011.600000px;}
.y9_c00398{bottom:1012.320000px;}
.y3_c00398{bottom:1051.920000px;}
.y2_c00398{bottom:1054.080000px;}
.y4_c00398{bottom:1054.800000px;}
.y1_c00398{bottom:1129.680000px;}
.hd_c00398{height:20.733750px;}
.ha_c00398{height:31.100625px;}
.h8_c00398{height:33.692344px;}
.h5_c00398{height:36.284062px;}
.h12_c00398{height:38.875781px;}
.h11_c00398{height:41.467500px;}
.hb_c00398{height:44.059219px;}
.h3_c00398{height:46.650937px;}
.hf_c00398{height:49.242656px;}
.hc_c00398{height:51.834375px;}
.h4_c00398{height:54.426094px;}
.h9_c00398{height:57.017812px;}
.h6_c00398{height:59.609531px;}
.h7_c00398{height:62.201250px;}
.he_c00398{height:64.792969px;}
.h2_c00398{height:67.384687px;}
.h10_c00398{height:93.301875px;}
.h1_c00398{height:1166.250000px;}
.h0_c00398{height:1166.400000px;}
.w1_c00398{width:768.750000px;}
.w0_c00398{width:768.960000px;}
.x0_c00398{left:0.000000px;}
.xa_c00398{left:54.720000px;}
.x35_c00398{left:56.160000px;}
.x27_c00398{left:76.320000px;}
.x37_c00398{left:99.360000px;}
.x28_c00398{left:108.000000px;}
.x4b_c00398{left:110.160000px;}
.x40_c00398{left:118.800000px;}
.x45_c00398{left:130.320000px;}
.x2d_c00398{left:141.120000px;}
.xb_c00398{left:151.920000px;}
.x3a_c00398{left:161.280000px;}
.x2_c00398{left:162.720000px;}
.x29_c00398{left:173.520000px;}
.x49_c00398{left:184.320000px;}
.x14_c00398{left:185.760000px;}
.xc_c00398{left:194.400000px;}
.x1f_c00398{left:195.840000px;}
.x3b_c00398{left:205.920000px;}
.x13_c00398{left:207.360000px;}
.x3_c00398{left:217.440000px;}
.x3f_c00398{left:227.520000px;}
.x22_c00398{left:228.960000px;}
.x46_c00398{left:239.760000px;}
.x41_c00398{left:249.840000px;}
.xd_c00398{left:270.720000px;}
.x16_c00398{left:272.160000px;}
.x4d_c00398{left:281.520000px;}
.x15_c00398{left:282.960000px;}
.x23_c00398{left:293.040000px;}
.x20_c00398{left:304.560000px;}
.x4_c00398{left:314.640000px;}
.x32_c00398{left:324.720000px;}
.x4e_c00398{left:335.520000px;}
.xe_c00398{left:336.960000px;}
.x5_c00398{left:347.760000px;}
.x17_c00398{left:358.560000px;}
.x33_c00398{left:368.640000px;}
.xf_c00398{left:378.000000px;}
.x3c_c00398{left:379.440000px;}
.x36_c00398{left:400.320000px;}
.x21_c00398{left:401.760000px;}
.x24_c00398{left:411.840000px;}
.x4c_c00398{left:413.280000px;}
.x38_c00398{left:421.920000px;}
.x19_c00398{left:424.080000px;}
.x3d_c00398{left:432.000000px;}
.x18_c00398{left:434.160000px;}
.x47_c00398{left:444.960000px;}
.x42_c00398{left:454.320000px;}
.x6_c00398{left:455.760000px;}
.x2e_c00398{left:466.560000px;}
.x2a_c00398{left:475.200000px;}
.x10_c00398{left:477.360000px;}
.x2f_c00398{left:488.160000px;}
.x25_c00398{left:498.960000px;}
.x11_c00398{left:509.040000px;}
.x1a_c00398{left:510.480000px;}
.x44_c00398{left:519.120000px;}
.x30_c00398{left:520.560000px;}
.x26_c00398{left:531.360000px;}
.x7_c00398{left:542.880000px;}
.x2b_c00398{left:552.960000px;}
.x31_c00398{left:564.480000px;}
.x8_c00398{left:574.560000px;}
.x1c_c00398{left:576.000000px;}
.x2c_c00398{left:583.920000px;}
.x1b_c00398{left:586.080000px;}
.x12_c00398{left:595.440000px;}
.x48_c00398{left:596.880000px;}
.x34_c00398{left:606.960000px;}
.x1d_c00398{left:617.760000px;}
.x4a_c00398{left:619.200000px;}
.x1e_c00398{left:640.800000px;}
.x39_c00398{left:650.160000px;}
.x43_c00398{left:652.320000px;}
.x9_c00398{left:660.960000px;}
.x1_c00398{left:666.720000px;}
.x3e_c00398{left:683.280000px;}
@media print{
.v1_c00398{vertical-align:-10.240000pt;}
.v0_c00398{vertical-align:0.000000pt;}
.ls1_c00398{letter-spacing:0.000000pt;}
.ls0_c00398{letter-spacing:27.255680pt;}
.ws1_c00398{word-spacing:0.000000pt;}
.ws0_c00398{word-spacing:3.472427pt;}
.fsb_c00398{font-size:20.480000pt;}
.fs8_c00398{font-size:30.720000pt;}
.fs6_c00398{font-size:33.280000pt;}
.fs3_c00398{font-size:35.840000pt;}
.fs10_c00398{font-size:38.400000pt;}
.fsf_c00398{font-size:40.960000pt;}
.fs9_c00398{font-size:43.520000pt;}
.fs1_c00398{font-size:46.080000pt;}
.fsd_c00398{font-size:48.640000pt;}
.fsa_c00398{font-size:51.200000pt;}
.fs2_c00398{font-size:53.760000pt;}
.fs7_c00398{font-size:56.320000pt;}
.fs4_c00398{font-size:58.880000pt;}
.fs5_c00398{font-size:61.440000pt;}
.fsc_c00398{font-size:64.000000pt;}
.fs0_c00398{font-size:66.560000pt;}
.fse_c00398{font-size:92.160000pt;}
.y0_c00398{bottom:0.000000pt;}
.y65_c00398{bottom:40.320000pt;}
.y68_c00398{bottom:41.600000pt;}
.y64_c00398{bottom:42.240000pt;}
.y67_c00398{bottom:42.880000pt;}
.y66_c00398{bottom:43.520000pt;}
.y69_c00398{bottom:44.160000pt;}
.y61_c00398{bottom:79.360000pt;}
.y63_c00398{bottom:80.000000pt;}
.y60_c00398{bottom:80.640000pt;}
.y62_c00398{bottom:81.280000pt;}
.y5f_c00398{bottom:81.920000pt;}
.y5c_c00398{bottom:117.120000pt;}
.y5e_c00398{bottom:119.040000pt;}
.y5d_c00398{bottom:119.680000pt;}
.y5b_c00398{bottom:120.320000pt;}
.y5a_c00398{bottom:121.600000pt;}
.y56_c00398{bottom:155.520000pt;}
.y57_c00398{bottom:156.160000pt;}
.y59_c00398{bottom:156.800000pt;}
.y54_c00398{bottom:157.440000pt;}
.y55_c00398{bottom:158.080000pt;}
.y58_c00398{bottom:158.720000pt;}
.y50_c00398{bottom:192.640000pt;}
.y51_c00398{bottom:193.280000pt;}
.y4e_c00398{bottom:193.920000pt;}
.y52_c00398{bottom:195.840000pt;}
.y4f_c00398{bottom:196.480000pt;}
.y53_c00398{bottom:197.120000pt;}
.y4c_c00398{bottom:232.960000pt;}
.y4d_c00398{bottom:234.240000pt;}
.y4b_c00398{bottom:234.880000pt;}
.y4a_c00398{bottom:235.520000pt;}
.y48_c00398{bottom:270.720000pt;}
.y44_c00398{bottom:271.360000pt;}
.y43_c00398{bottom:272.000000pt;}
.y49_c00398{bottom:272.640000pt;}
.y46_c00398{bottom:273.280000pt;}
.y45_c00398{bottom:273.920000pt;}
.y47_c00398{bottom:274.560000pt;}
.y3e_c00398{bottom:309.120000pt;}
.y3f_c00398{bottom:309.760000pt;}
.y40_c00398{bottom:310.400000pt;}
.y41_c00398{bottom:311.680000pt;}
.y42_c00398{bottom:312.960000pt;}
.y3b_c00398{bottom:350.720000pt;}
.y3c_c00398{bottom:351.360000pt;}
.y3d_c00398{bottom:352.000000pt;}
.y38_c00398{bottom:387.200000pt;}
.y3a_c00398{bottom:389.120000pt;}
.y37_c00398{bottom:389.760000pt;}
.y39_c00398{bottom:390.400000pt;}
.y35_c00398{bottom:425.600000pt;}
.y34_c00398{bottom:426.240000pt;}
.y36_c00398{bottom:427.520000pt;}
.y33_c00398{bottom:428.160000pt;}
.y31_c00398{bottom:464.640000pt;}
.y30_c00398{bottom:466.560000pt;}
.y32_c00398{bottom:467.200000pt;}
.y2e_c00398{bottom:502.400000pt;}
.y2f_c00398{bottom:503.040000pt;}
.y2d_c00398{bottom:504.960000pt;}
.y2c_c00398{bottom:505.600000pt;}
.y2a_c00398{bottom:540.800000pt;}
.y29_c00398{bottom:541.440000pt;}
.y28_c00398{bottom:543.360000pt;}
.y2b_c00398{bottom:544.000000pt;}
.y24_c00398{bottom:588.800000pt;}
.y25_c00398{bottom:589.440000pt;}
.y26_c00398{bottom:590.080000pt;}
.y23_c00398{bottom:590.720000pt;}
.y22_c00398{bottom:591.360000pt;}
.y27_c00398{bottom:592.000000pt;}
.y1d_c00398{bottom:625.920000pt;}
.y21_c00398{bottom:626.560000pt;}
.y20_c00398{bottom:627.200000pt;}
.y1f_c00398{bottom:629.120000pt;}
.y1e_c00398{bottom:629.760000pt;}
.y1c_c00398{bottom:667.520000pt;}
.y1b_c00398{bottom:668.160000pt;}
.y19_c00398{bottom:704.000000pt;}
.y1a_c00398{bottom:706.560000pt;}
.y17_c00398{bottom:741.760000pt;}
.y18_c00398{bottom:744.320000pt;}
.y15_c00398{bottom:780.160000pt;}
.y16_c00398{bottom:780.800000pt;}
.y14_c00398{bottom:783.360000pt;}
.y13_c00398{bottom:784.000000pt;}
.yf_c00398{bottom:829.440000pt;}
.ye_c00398{bottom:830.080000pt;}
.y10_c00398{bottom:830.720000pt;}
.yd_c00398{bottom:831.360000pt;}
.yc_c00398{bottom:832.000000pt;}
.y12_c00398{bottom:834.560000pt;}
.y11_c00398{bottom:860.160000pt;}
.yb_c00398{bottom:860.800000pt;}
.y5_c00398{bottom:896.000000pt;}
.y8_c00398{bottom:896.640000pt;}
.ya_c00398{bottom:897.920000pt;}
.y7_c00398{bottom:898.560000pt;}
.y6_c00398{bottom:899.200000pt;}
.y9_c00398{bottom:899.840000pt;}
.y3_c00398{bottom:935.040000pt;}
.y2_c00398{bottom:936.960000pt;}
.y4_c00398{bottom:937.600000pt;}
.y1_c00398{bottom:1004.160000pt;}
.hd_c00398{height:18.430000pt;}
.ha_c00398{height:27.645000pt;}
.h8_c00398{height:29.948750pt;}
.h5_c00398{height:32.252500pt;}
.h12_c00398{height:34.556250pt;}
.h11_c00398{height:36.860000pt;}
.hb_c00398{height:39.163750pt;}
.h3_c00398{height:41.467500pt;}
.hf_c00398{height:43.771250pt;}
.hc_c00398{height:46.075000pt;}
.h4_c00398{height:48.378750pt;}
.h9_c00398{height:50.682500pt;}
.h6_c00398{height:52.986250pt;}
.h7_c00398{height:55.290000pt;}
.he_c00398{height:57.593750pt;}
.h2_c00398{height:59.897500pt;}
.h10_c00398{height:82.935000pt;}
.h1_c00398{height:1036.666667pt;}
.h0_c00398{height:1036.800000pt;}
.w1_c00398{width:683.333333pt;}
.w0_c00398{width:683.520000pt;}
.x0_c00398{left:0.000000pt;}
.xa_c00398{left:48.640000pt;}
.x35_c00398{left:49.920000pt;}
.x27_c00398{left:67.840000pt;}
.x37_c00398{left:88.320000pt;}
.x28_c00398{left:96.000000pt;}
.x4b_c00398{left:97.920000pt;}
.x40_c00398{left:105.600000pt;}
.x45_c00398{left:115.840000pt;}
.x2d_c00398{left:125.440000pt;}
.xb_c00398{left:135.040000pt;}
.x3a_c00398{left:143.360000pt;}
.x2_c00398{left:144.640000pt;}
.x29_c00398{left:154.240000pt;}
.x49_c00398{left:163.840000pt;}
.x14_c00398{left:165.120000pt;}
.xc_c00398{left:172.800000pt;}
.x1f_c00398{left:174.080000pt;}
.x3b_c00398{left:183.040000pt;}
.x13_c00398{left:184.320000pt;}
.x3_c00398{left:193.280000pt;}
.x3f_c00398{left:202.240000pt;}
.x22_c00398{left:203.520000pt;}
.x46_c00398{left:213.120000pt;}
.x41_c00398{left:222.080000pt;}
.xd_c00398{left:240.640000pt;}
.x16_c00398{left:241.920000pt;}
.x4d_c00398{left:250.240000pt;}
.x15_c00398{left:251.520000pt;}
.x23_c00398{left:260.480000pt;}
.x20_c00398{left:270.720000pt;}
.x4_c00398{left:279.680000pt;}
.x32_c00398{left:288.640000pt;}
.x4e_c00398{left:298.240000pt;}
.xe_c00398{left:299.520000pt;}
.x5_c00398{left:309.120000pt;}
.x17_c00398{left:318.720000pt;}
.x33_c00398{left:327.680000pt;}
.xf_c00398{left:336.000000pt;}
.x3c_c00398{left:337.280000pt;}
.x36_c00398{left:355.840000pt;}
.x21_c00398{left:357.120000pt;}
.x24_c00398{left:366.080000pt;}
.x4c_c00398{left:367.360000pt;}
.x38_c00398{left:375.040000pt;}
.x19_c00398{left:376.960000pt;}
.x3d_c00398{left:384.000000pt;}
.x18_c00398{left:385.920000pt;}
.x47_c00398{left:395.520000pt;}
.x42_c00398{left:403.840000pt;}
.x6_c00398{left:405.120000pt;}
.x2e_c00398{left:414.720000pt;}
.x2a_c00398{left:422.400000pt;}
.x10_c00398{left:424.320000pt;}
.x2f_c00398{left:433.920000pt;}
.x25_c00398{left:443.520000pt;}
.x11_c00398{left:452.480000pt;}
.x1a_c00398{left:453.760000pt;}
.x44_c00398{left:461.440000pt;}
.x30_c00398{left:462.720000pt;}
.x26_c00398{left:472.320000pt;}
.x7_c00398{left:482.560000pt;}
.x2b_c00398{left:491.520000pt;}
.x31_c00398{left:501.760000pt;}
.x8_c00398{left:510.720000pt;}
.x1c_c00398{left:512.000000pt;}
.x2c_c00398{left:519.040000pt;}
.x1b_c00398{left:520.960000pt;}
.x12_c00398{left:529.280000pt;}
.x48_c00398{left:530.560000pt;}
.x34_c00398{left:539.520000pt;}
.x1d_c00398{left:549.120000pt;}
.x4a_c00398{left:550.400000pt;}
.x1e_c00398{left:569.600000pt;}
.x39_c00398{left:577.920000pt;}
.x43_c00398{left:579.840000pt;}
.x9_c00398{left:587.520000pt;}
.x1_c00398{left:592.640000pt;}
.x3e_c00398{left:607.360000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9802369dba0fb480e8104b73.woff2')format("woff");}.ff1_c00399{font-family:ff1_c00399;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5e_c00399{transform:matrix(0.189200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189200,0.000000,0.000000,0.250000,0,0);}
.m53_c00399{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m3e_c00399{transform:matrix(0.229625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229625,0.000000,0.000000,0.250000,0,0);}
.m54_c00399{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m5f_c00399{transform:matrix(0.245625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245625,0.000000,0.000000,0.250000,0,0);}
.m5a_c00399{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m56_c00399{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00399{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);}
.m55_c00399{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);}
.m48_c00399{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);}
.m60_c00399{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m50_c00399{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_c00399{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);}
.m4d_c00399{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00399{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00399{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);}
.m37_c00399{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m49_c00399{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m59_c00399{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m38_c00399{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00399{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m7_c00399{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m27_c00399{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m57_c00399{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2_c00399{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00399{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m35_c00399{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m8_c00399{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m63_c00399{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m21_c00399{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00399{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m12_c00399{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00399{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);}
.m2b_c00399{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m1_c00399{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00399{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);}
.m45_c00399{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m10_c00399{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m15_c00399{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m33_c00399{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m16_c00399{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m23_c00399{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m0_c00399{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m18_c00399{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m24_c00399{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m4_c00399{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.mf_c00399{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m6_c00399{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m30_c00399{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);}
.m1d_c00399{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m51_c00399{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);}
.m64_c00399{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);}
.m58_c00399{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);}
.m31_c00399{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.md_c00399{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m9_c00399{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00399{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);}
.m2c_c00399{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);}
.m46_c00399{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);}
.m26_c00399{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m17_c00399{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m11_c00399{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m29_c00399{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m25_c00399{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);}
.m2d_c00399{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00399{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m3_c00399{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);}
.m1e_c00399{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m42_c00399{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);}
.m39_c00399{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m32_c00399{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m19_c00399{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00399{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m22_c00399{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);}
.m1b_c00399{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m65_c00399{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m13_c00399{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00399{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m36_c00399{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00399{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m69_c00399{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);}
.m5_c00399{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.ma_c00399{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m20_c00399{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);}
.m41_c00399{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m28_c00399{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m68_c00399{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);}
.m6c_c00399{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m43_c00399{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.me_c00399{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00399{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);}
.m66_c00399{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);}
.m6b_c00399{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00399{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m47_c00399{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.mb_c00399{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00399{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);}
.m34_c00399{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m67_c00399{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m40_c00399{transform:matrix(0.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680000,0.000000,0.000000,0.250000,0,0);}
.m14_c00399{transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);}
.m44_c00399{transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00399{transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);}
.m52_c00399{transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);}
.m62_c00399{transform:matrix(2.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.835000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00399{transform:matrix(3.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.540000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00399{transform:matrix(3.647500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.647500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.647500,0.000000,0.000000,0.250000,0,0);}
.m61_c00399{transform:matrix(3.755000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.755000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.755000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00399{transform:matrix(5.147500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.147500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.147500,0.000000,0.000000,0.250000,0,0);}
.v3_c00399{vertical-align:-8.640000px;}
.v0_c00399{vertical-align:0.000000px;}
.v2_c00399{vertical-align:2.880000px;}
.v1_c00399{vertical-align:14.400000px;}
.ls0_c00399{letter-spacing:0.000000px;}
.sc__c00399{text-shadow:none;}
.sc0_c00399{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00399{-webkit-text-stroke:0px transparent;}
.sc0_c00399{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00399{word-spacing:-2.031600px;}
.ws0_c00399{word-spacing:-0.760320px;}
.ws4_c00399{word-spacing:0.000000px;}
.ws2_c00399{word-spacing:80.877600px;}
.ws3_c00399{word-spacing:344.384400px;}
.fc0_c00399{color:transparent;}
.fse_c00399{font-size:17.280000px;}
.fsd_c00399{font-size:20.160000px;}
.fs10_c00399{font-size:25.920000px;}
.fsa_c00399{font-size:34.560000px;}
.fs9_c00399{font-size:37.440000px;}
.fsc_c00399{font-size:40.320000px;}
.fs8_c00399{font-size:46.080000px;}
.fs6_c00399{font-size:48.960000px;}
.fs4_c00399{font-size:51.840000px;}
.fs3_c00399{font-size:54.720000px;}
.fs2_c00399{font-size:57.600000px;}
.fs5_c00399{font-size:60.480000px;}
.fs1_c00399{font-size:63.360000px;}
.fs7_c00399{font-size:66.240000px;}
.fsb_c00399{font-size:69.120000px;}
.fs0_c00399{font-size:74.880000px;}
.fsf_c00399{font-size:77.760000px;}
.y0_c00399{bottom:0.000000px;}
.y71_c00399{bottom:74.880000px;}
.y70_c00399{bottom:78.480000px;}
.y72_c00399{bottom:79.920000px;}
.y73_c00399{bottom:80.640000px;}
.y6e_c00399{bottom:81.360000px;}
.y6f_c00399{bottom:82.080000px;}
.y6c_c00399{bottom:123.840000px;}
.y6b_c00399{bottom:124.560000px;}
.y6d_c00399{bottom:125.280000px;}
.y68_c00399{bottom:164.880000px;}
.y69_c00399{bottom:165.600000px;}
.y67_c00399{bottom:167.040000px;}
.y66_c00399{bottom:167.760000px;}
.y6a_c00399{bottom:168.480000px;}
.y65_c00399{bottom:218.880000px;}
.y64_c00399{bottom:219.600000px;}
.y62_c00399{bottom:236.160000px;}
.y63_c00399{bottom:236.880000px;}
.y3f_c00399{bottom:242.640000px;}
.y61_c00399{bottom:244.080000px;}
.y3e_c00399{bottom:263.520000px;}
.y5f_c00399{bottom:266.400000px;}
.y60_c00399{bottom:267.840000px;}
.y5e_c00399{bottom:285.120000px;}
.y3d_c00399{bottom:285.840000px;}
.y5d_c00399{bottom:286.560000px;}
.y5c_c00399{bottom:287.280000px;}
.y5a_c00399{bottom:306.720000px;}
.y3c_c00399{bottom:307.440000px;}
.y59_c00399{bottom:308.880000px;}
.y5b_c00399{bottom:311.760000px;}
.y56_c00399{bottom:349.920000px;}
.y57_c00399{bottom:350.640000px;}
.y58_c00399{bottom:352.800000px;}
.y51_c00399{bottom:367.200000px;}
.y55_c00399{bottom:367.920000px;}
.y54_c00399{bottom:368.640000px;}
.y3b_c00399{bottom:372.960000px;}
.y52_c00399{bottom:373.680000px;}
.y53_c00399{bottom:374.400000px;}
.y50_c00399{bottom:375.840000px;}
.y4f_c00399{bottom:393.840000px;}
.y3a_c00399{bottom:394.560000px;}
.y4d_c00399{bottom:415.440000px;}
.y39_c00399{bottom:416.160000px;}
.y4e_c00399{bottom:418.320000px;}
.y4c_c00399{bottom:419.760000px;}
.y38_c00399{bottom:437.040000px;}
.y4b_c00399{bottom:437.760000px;}
.y49_c00399{bottom:439.200000px;}
.y4a_c00399{bottom:439.920000px;}
.y48_c00399{bottom:441.360000px;}
.y37_c00399{bottom:458.640000px;}
.y46_c00399{bottom:459.360000px;}
.y44_c00399{bottom:460.080000px;}
.y47_c00399{bottom:461.520000px;}
.y45_c00399{bottom:462.240000px;}
.y40_c00399{bottom:480.240000px;}
.y42_c00399{bottom:480.960000px;}
.y43_c00399{bottom:481.680000px;}
.y41_c00399{bottom:484.560000px;}
.y36_c00399{bottom:524.160000px;}
.y35_c00399{bottom:525.600000px;}
.y31_c00399{bottom:565.200000px;}
.y32_c00399{bottom:565.920000px;}
.y30_c00399{bottom:566.640000px;}
.y33_c00399{bottom:568.800000px;}
.y34_c00399{bottom:569.520000px;}
.y2f_c00399{bottom:609.120000px;}
.y2e_c00399{bottom:609.840000px;}
.y2d_c00399{bottom:612.000000px;}
.y2b_c00399{bottom:652.320000px;}
.y2a_c00399{bottom:653.040000px;}
.y29_c00399{bottom:654.480000px;}
.y2c_c00399{bottom:655.200000px;}
.y25_c00399{bottom:694.800000px;}
.y24_c00399{bottom:695.520000px;}
.y26_c00399{bottom:696.240000px;}
.y27_c00399{bottom:696.960000px;}
.y28_c00399{bottom:697.680000px;}
.y23_c00399{bottom:738.000000px;}
.y21_c00399{bottom:738.720000px;}
.y20_c00399{bottom:740.160000px;}
.y22_c00399{bottom:741.600000px;}
.y1d_c00399{bottom:781.200000px;}
.y1e_c00399{bottom:784.080000px;}
.y1f_c00399{bottom:784.800000px;}
.y1c_c00399{bottom:825.120000px;}
.y1b_c00399{bottom:825.840000px;}
.y1a_c00399{bottom:827.280000px;}
.y18_c00399{bottom:828.000000px;}
.y19_c00399{bottom:828.720000px;}
.y17_c00399{bottom:881.280000px;}
.y16_c00399{bottom:882.000000px;}
.y13_c00399{bottom:921.600000px;}
.y10_c00399{bottom:922.320000px;}
.y14_c00399{bottom:923.040000px;}
.y11_c00399{bottom:925.200000px;}
.y15_c00399{bottom:925.920000px;}
.y12_c00399{bottom:926.640000px;}
.yc_c00399{bottom:965.520000px;}
.yd_c00399{bottom:966.240000px;}
.ye_c00399{bottom:968.400000px;}
.yf_c00399{bottom:969.120000px;}
.y7_c00399{bottom:1008.720000px;}
.ya_c00399{bottom:1009.440000px;}
.yb_c00399{bottom:1010.160000px;}
.y9_c00399{bottom:1011.600000px;}
.y8_c00399{bottom:1012.320000px;}
.y2_c00399{bottom:1051.920000px;}
.y3_c00399{bottom:1053.360000px;}
.y6_c00399{bottom:1054.800000px;}
.y4_c00399{bottom:1055.520000px;}
.y5_c00399{bottom:1056.240000px;}
.y1_c00399{bottom:1133.280000px;}
.h12_c00399{height:15.550313px;}
.h11_c00399{height:18.142031px;}
.h14_c00399{height:23.325469px;}
.hc_c00399{height:31.100625px;}
.hb_c00399{height:33.692344px;}
.he_c00399{height:36.284062px;}
.ha_c00399{height:41.467500px;}
.h8_c00399{height:44.059219px;}
.h6_c00399{height:46.650937px;}
.h5_c00399{height:49.242656px;}
.h4_c00399{height:51.834375px;}
.h7_c00399{height:54.426094px;}
.h3_c00399{height:57.017812px;}
.h10_c00399{height:57.306094px;}
.h9_c00399{height:59.609531px;}
.hf_c00399{height:61.050938px;}
.hd_c00399{height:62.201250px;}
.h2_c00399{height:67.384687px;}
.h13_c00399{height:69.976406px;}
.h1_c00399{height:1167.000000px;}
.h0_c00399{height:1167.120000px;}
.w1_c00399{width:770.250000px;}
.w0_c00399{width:770.400000px;}
.x0_c00399{left:0.000000px;}
.x2_c00399{left:51.840000px;}
.x3c_c00399{left:54.000000px;}
.x3b_c00399{left:74.160000px;}
.x3d_c00399{left:75.600000px;}
.x22_c00399{left:84.960000px;}
.xb_c00399{left:95.040000px;}
.x3_c00399{left:105.840000px;}
.x2c_c00399{left:115.200000px;}
.x15_c00399{left:117.360000px;}
.xc_c00399{left:127.440000px;}
.x3e_c00399{left:128.880000px;}
.x1d_c00399{left:138.960000px;}
.x47_c00399{left:146.880000px;}
.x49_c00399{left:150.480000px;}
.xd_c00399{left:159.120000px;}
.x44_c00399{left:160.560000px;}
.x39_c00399{left:170.640000px;}
.x4_c00399{left:191.520000px;}
.xe_c00399{left:203.040000px;}
.x2f_c00399{left:213.840000px;}
.x16_c00399{left:224.640000px;}
.x50_c00399{left:236.160000px;}
.xf_c00399{left:246.240000px;}
.x46_c00399{left:255.600000px;}
.x4b_c00399{left:257.760000px;}
.x45_c00399{left:259.200000px;}
.x17_c00399{left:268.560000px;}
.x41_c00399{left:270.000000px;}
.x10_c00399{left:278.640000px;}
.x1e_c00399{left:280.080000px;}
.x23_c00399{left:289.440000px;}
.x33_c00399{left:291.600000px;}
.x4c_c00399{left:301.680000px;}
.x3a_c00399{left:321.840000px;}
.x18_c00399{left:323.280000px;}
.x4d_c00399{left:332.640000px;}
.x36_c00399{left:334.080000px;}
.x5_c00399{left:343.440000px;}
.x4e_c00399{left:355.680000px;}
.x1f_c00399{left:365.760000px;}
.x11_c00399{left:375.840000px;}
.x4a_c00399{left:378.000000px;}
.x29_c00399{left:386.640000px;}
.x2d_c00399{left:388.800000px;}
.x20_c00399{left:397.440000px;}
.x42_c00399{left:399.600000px;}
.x19_c00399{left:408.960000px;}
.x34_c00399{left:410.400000px;}
.x4f_c00399{left:421.200000px;}
.x2a_c00399{left:430.560000px;}
.x21_c00399{left:432.000000px;}
.x1a_c00399{left:440.640000px;}
.x6_c00399{left:442.080000px;}
.x25_c00399{left:464.400000px;}
.x7_c00399{left:475.200000px;}
.x48_c00399{left:483.120000px;}
.x30_c00399{left:486.000000px;}
.x12_c00399{left:495.360000px;}
.x3f_c00399{left:496.800000px;}
.x2b_c00399{left:506.880000px;}
.x26_c00399{left:517.680000px;}
.x1b_c00399{left:529.200000px;}
.x31_c00399{left:537.840000px;}
.x35_c00399{left:540.000000px;}
.x27_c00399{left:550.800000px;}
.x8_c00399{left:560.880000px;}
.x24_c00399{left:570.240000px;}
.x37_c00399{left:572.400000px;}
.x1c_c00399{left:581.040000px;}
.x9_c00399{left:582.480000px;}
.x40_c00399{left:583.920000px;}
.x28_c00399{left:593.280000px;}
.x43_c00399{left:594.720000px;}
.x13_c00399{left:614.880000px;}
.xa_c00399{left:616.320000px;}
.x32_c00399{left:626.400000px;}
.x2e_c00399{left:648.000000px;}
.x51_c00399{left:649.440000px;}
.x14_c00399{left:658.800000px;}
.x1_c00399{left:666.000000px;}
.x38_c00399{left:670.320000px;}
@media print{
.v3_c00399{vertical-align:-7.680000pt;}
.v0_c00399{vertical-align:0.000000pt;}
.v2_c00399{vertical-align:2.560000pt;}
.v1_c00399{vertical-align:12.800000pt;}
.ls0_c00399{letter-spacing:0.000000pt;}
.ws1_c00399{word-spacing:-1.805867pt;}
.ws0_c00399{word-spacing:-0.675840pt;}
.ws4_c00399{word-spacing:0.000000pt;}
.ws2_c00399{word-spacing:71.891200pt;}
.ws3_c00399{word-spacing:306.119467pt;}
.fse_c00399{font-size:15.360000pt;}
.fsd_c00399{font-size:17.920000pt;}
.fs10_c00399{font-size:23.040000pt;}
.fsa_c00399{font-size:30.720000pt;}
.fs9_c00399{font-size:33.280000pt;}
.fsc_c00399{font-size:35.840000pt;}
.fs8_c00399{font-size:40.960000pt;}
.fs6_c00399{font-size:43.520000pt;}
.fs4_c00399{font-size:46.080000pt;}
.fs3_c00399{font-size:48.640000pt;}
.fs2_c00399{font-size:51.200000pt;}
.fs5_c00399{font-size:53.760000pt;}
.fs1_c00399{font-size:56.320000pt;}
.fs7_c00399{font-size:58.880000pt;}
.fsb_c00399{font-size:61.440000pt;}
.fs0_c00399{font-size:66.560000pt;}
.fsf_c00399{font-size:69.120000pt;}
.y0_c00399{bottom:0.000000pt;}
.y71_c00399{bottom:66.560000pt;}
.y70_c00399{bottom:69.760000pt;}
.y72_c00399{bottom:71.040000pt;}
.y73_c00399{bottom:71.680000pt;}
.y6e_c00399{bottom:72.320000pt;}
.y6f_c00399{bottom:72.960000pt;}
.y6c_c00399{bottom:110.080000pt;}
.y6b_c00399{bottom:110.720000pt;}
.y6d_c00399{bottom:111.360000pt;}
.y68_c00399{bottom:146.560000pt;}
.y69_c00399{bottom:147.200000pt;}
.y67_c00399{bottom:148.480000pt;}
.y66_c00399{bottom:149.120000pt;}
.y6a_c00399{bottom:149.760000pt;}
.y65_c00399{bottom:194.560000pt;}
.y64_c00399{bottom:195.200000pt;}
.y62_c00399{bottom:209.920000pt;}
.y63_c00399{bottom:210.560000pt;}
.y3f_c00399{bottom:215.680000pt;}
.y61_c00399{bottom:216.960000pt;}
.y3e_c00399{bottom:234.240000pt;}
.y5f_c00399{bottom:236.800000pt;}
.y60_c00399{bottom:238.080000pt;}
.y5e_c00399{bottom:253.440000pt;}
.y3d_c00399{bottom:254.080000pt;}
.y5d_c00399{bottom:254.720000pt;}
.y5c_c00399{bottom:255.360000pt;}
.y5a_c00399{bottom:272.640000pt;}
.y3c_c00399{bottom:273.280000pt;}
.y59_c00399{bottom:274.560000pt;}
.y5b_c00399{bottom:277.120000pt;}
.y56_c00399{bottom:311.040000pt;}
.y57_c00399{bottom:311.680000pt;}
.y58_c00399{bottom:313.600000pt;}
.y51_c00399{bottom:326.400000pt;}
.y55_c00399{bottom:327.040000pt;}
.y54_c00399{bottom:327.680000pt;}
.y3b_c00399{bottom:331.520000pt;}
.y52_c00399{bottom:332.160000pt;}
.y53_c00399{bottom:332.800000pt;}
.y50_c00399{bottom:334.080000pt;}
.y4f_c00399{bottom:350.080000pt;}
.y3a_c00399{bottom:350.720000pt;}
.y4d_c00399{bottom:369.280000pt;}
.y39_c00399{bottom:369.920000pt;}
.y4e_c00399{bottom:371.840000pt;}
.y4c_c00399{bottom:373.120000pt;}
.y38_c00399{bottom:388.480000pt;}
.y4b_c00399{bottom:389.120000pt;}
.y49_c00399{bottom:390.400000pt;}
.y4a_c00399{bottom:391.040000pt;}
.y48_c00399{bottom:392.320000pt;}
.y37_c00399{bottom:407.680000pt;}
.y46_c00399{bottom:408.320000pt;}
.y44_c00399{bottom:408.960000pt;}
.y47_c00399{bottom:410.240000pt;}
.y45_c00399{bottom:410.880000pt;}
.y40_c00399{bottom:426.880000pt;}
.y42_c00399{bottom:427.520000pt;}
.y43_c00399{bottom:428.160000pt;}
.y41_c00399{bottom:430.720000pt;}
.y36_c00399{bottom:465.920000pt;}
.y35_c00399{bottom:467.200000pt;}
.y31_c00399{bottom:502.400000pt;}
.y32_c00399{bottom:503.040000pt;}
.y30_c00399{bottom:503.680000pt;}
.y33_c00399{bottom:505.600000pt;}
.y34_c00399{bottom:506.240000pt;}
.y2f_c00399{bottom:541.440000pt;}
.y2e_c00399{bottom:542.080000pt;}
.y2d_c00399{bottom:544.000000pt;}
.y2b_c00399{bottom:579.840000pt;}
.y2a_c00399{bottom:580.480000pt;}
.y29_c00399{bottom:581.760000pt;}
.y2c_c00399{bottom:582.400000pt;}
.y25_c00399{bottom:617.600000pt;}
.y24_c00399{bottom:618.240000pt;}
.y26_c00399{bottom:618.880000pt;}
.y27_c00399{bottom:619.520000pt;}
.y28_c00399{bottom:620.160000pt;}
.y23_c00399{bottom:656.000000pt;}
.y21_c00399{bottom:656.640000pt;}
.y20_c00399{bottom:657.920000pt;}
.y22_c00399{bottom:659.200000pt;}
.y1d_c00399{bottom:694.400000pt;}
.y1e_c00399{bottom:696.960000pt;}
.y1f_c00399{bottom:697.600000pt;}
.y1c_c00399{bottom:733.440000pt;}
.y1b_c00399{bottom:734.080000pt;}
.y1a_c00399{bottom:735.360000pt;}
.y18_c00399{bottom:736.000000pt;}
.y19_c00399{bottom:736.640000pt;}
.y17_c00399{bottom:783.360000pt;}
.y16_c00399{bottom:784.000000pt;}
.y13_c00399{bottom:819.200000pt;}
.y10_c00399{bottom:819.840000pt;}
.y14_c00399{bottom:820.480000pt;}
.y11_c00399{bottom:822.400000pt;}
.y15_c00399{bottom:823.040000pt;}
.y12_c00399{bottom:823.680000pt;}
.yc_c00399{bottom:858.240000pt;}
.yd_c00399{bottom:858.880000pt;}
.ye_c00399{bottom:860.800000pt;}
.yf_c00399{bottom:861.440000pt;}
.y7_c00399{bottom:896.640000pt;}
.ya_c00399{bottom:897.280000pt;}
.yb_c00399{bottom:897.920000pt;}
.y9_c00399{bottom:899.200000pt;}
.y8_c00399{bottom:899.840000pt;}
.y2_c00399{bottom:935.040000pt;}
.y3_c00399{bottom:936.320000pt;}
.y6_c00399{bottom:937.600000pt;}
.y4_c00399{bottom:938.240000pt;}
.y5_c00399{bottom:938.880000pt;}
.y1_c00399{bottom:1007.360000pt;}
.h12_c00399{height:13.822500pt;}
.h11_c00399{height:16.126250pt;}
.h14_c00399{height:20.733750pt;}
.hc_c00399{height:27.645000pt;}
.hb_c00399{height:29.948750pt;}
.he_c00399{height:32.252500pt;}
.ha_c00399{height:36.860000pt;}
.h8_c00399{height:39.163750pt;}
.h6_c00399{height:41.467500pt;}
.h5_c00399{height:43.771250pt;}
.h4_c00399{height:46.075000pt;}
.h7_c00399{height:48.378750pt;}
.h3_c00399{height:50.682500pt;}
.h10_c00399{height:50.938750pt;}
.h9_c00399{height:52.986250pt;}
.hf_c00399{height:54.267500pt;}
.hd_c00399{height:55.290000pt;}
.h2_c00399{height:59.897500pt;}
.h13_c00399{height:62.201250pt;}
.h1_c00399{height:1037.333333pt;}
.h0_c00399{height:1037.440000pt;}
.w1_c00399{width:684.666667pt;}
.w0_c00399{width:684.800000pt;}
.x0_c00399{left:0.000000pt;}
.x2_c00399{left:46.080000pt;}
.x3c_c00399{left:48.000000pt;}
.x3b_c00399{left:65.920000pt;}
.x3d_c00399{left:67.200000pt;}
.x22_c00399{left:75.520000pt;}
.xb_c00399{left:84.480000pt;}
.x3_c00399{left:94.080000pt;}
.x2c_c00399{left:102.400000pt;}
.x15_c00399{left:104.320000pt;}
.xc_c00399{left:113.280000pt;}
.x3e_c00399{left:114.560000pt;}
.x1d_c00399{left:123.520000pt;}
.x47_c00399{left:130.560000pt;}
.x49_c00399{left:133.760000pt;}
.xd_c00399{left:141.440000pt;}
.x44_c00399{left:142.720000pt;}
.x39_c00399{left:151.680000pt;}
.x4_c00399{left:170.240000pt;}
.xe_c00399{left:180.480000pt;}
.x2f_c00399{left:190.080000pt;}
.x16_c00399{left:199.680000pt;}
.x50_c00399{left:209.920000pt;}
.xf_c00399{left:218.880000pt;}
.x46_c00399{left:227.200000pt;}
.x4b_c00399{left:229.120000pt;}
.x45_c00399{left:230.400000pt;}
.x17_c00399{left:238.720000pt;}
.x41_c00399{left:240.000000pt;}
.x10_c00399{left:247.680000pt;}
.x1e_c00399{left:248.960000pt;}
.x23_c00399{left:257.280000pt;}
.x33_c00399{left:259.200000pt;}
.x4c_c00399{left:268.160000pt;}
.x3a_c00399{left:286.080000pt;}
.x18_c00399{left:287.360000pt;}
.x4d_c00399{left:295.680000pt;}
.x36_c00399{left:296.960000pt;}
.x5_c00399{left:305.280000pt;}
.x4e_c00399{left:316.160000pt;}
.x1f_c00399{left:325.120000pt;}
.x11_c00399{left:334.080000pt;}
.x4a_c00399{left:336.000000pt;}
.x29_c00399{left:343.680000pt;}
.x2d_c00399{left:345.600000pt;}
.x20_c00399{left:353.280000pt;}
.x42_c00399{left:355.200000pt;}
.x19_c00399{left:363.520000pt;}
.x34_c00399{left:364.800000pt;}
.x4f_c00399{left:374.400000pt;}
.x2a_c00399{left:382.720000pt;}
.x21_c00399{left:384.000000pt;}
.x1a_c00399{left:391.680000pt;}
.x6_c00399{left:392.960000pt;}
.x25_c00399{left:412.800000pt;}
.x7_c00399{left:422.400000pt;}
.x48_c00399{left:429.440000pt;}
.x30_c00399{left:432.000000pt;}
.x12_c00399{left:440.320000pt;}
.x3f_c00399{left:441.600000pt;}
.x2b_c00399{left:450.560000pt;}
.x26_c00399{left:460.160000pt;}
.x1b_c00399{left:470.400000pt;}
.x31_c00399{left:478.080000pt;}
.x35_c00399{left:480.000000pt;}
.x27_c00399{left:489.600000pt;}
.x8_c00399{left:498.560000pt;}
.x24_c00399{left:506.880000pt;}
.x37_c00399{left:508.800000pt;}
.x1c_c00399{left:516.480000pt;}
.x9_c00399{left:517.760000pt;}
.x40_c00399{left:519.040000pt;}
.x28_c00399{left:527.360000pt;}
.x43_c00399{left:528.640000pt;}
.x13_c00399{left:546.560000pt;}
.xa_c00399{left:547.840000pt;}
.x32_c00399{left:556.800000pt;}
.x2e_c00399{left:576.000000pt;}
.x51_c00399{left:577.280000pt;}
.x14_c00399{left:585.600000pt;}
.x1_c00399{left:592.000000pt;}
.x38_c00399{left:595.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4f821d6098859d400f157713.woff2')format("woff");}.ff1_c00400{font-family:ff1_c00400;line-height:1.109863;font-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_c00400{transform:matrix(0.191725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191725,0.000000,0.000000,0.250000,0,0);}
.m54_c00400{transform:matrix(0.199450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199450,0.000000,0.000000,0.250000,0,0);}
.m62_c00400{transform:matrix(0.208025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208025,0.000000,0.000000,0.250000,0,0);}
.m57_c00400{transform:matrix(0.219900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219900,0.000000,0.000000,0.250000,0,0);}
.m41_c00400{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m48_c00400{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_c00400{transform:matrix(0.235925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235925,0.000000,0.000000,0.250000,0,0);}
.m49_c00400{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m44_c00400{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m4c_c00400{transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);}
.m59_c00400{transform:matrix(0.247125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247125,0.000000,0.000000,0.250000,0,0);}
.m42_c00400{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m5b_c00400{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);}
.m3b_c00400{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m11_c00400{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00400{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m38_c00400{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00400{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00400{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m37_c00400{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00400{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m39_c00400{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m45_c00400{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m16_c00400{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m40_c00400{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m10_c00400{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m26_c00400{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m27_c00400{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00400{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m36_c00400{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00400{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00400{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m6_c00400{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00400{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m30_c00400{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m60_c00400{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m0_c00400{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m53_c00400{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m23_c00400{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.md_c00400{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m31_c00400{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_c00400{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m8_c00400{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m13_c00400{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_c00400{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);}
.mc_c00400{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00400{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);}
.m24_c00400{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);}
.m4d_c00400{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m51_c00400{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m52_c00400{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);}
.me_c00400{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);}
.m5_c00400{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m4_c00400{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m3_c00400{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);}
.m58_c00400{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);}
.m3c_c00400{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);}
.m50_c00400{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m29_c00400{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m34_c00400{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);}
.m3d_c00400{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00400{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00400{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m19_c00400{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m25_c00400{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);}
.m56_c00400{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00400{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);}
.m21_c00400{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m20_c00400{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m33_c00400{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m28_c00400{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.mb_c00400{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m35_c00400{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m15_c00400{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m32_c00400{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);}
.m12_c00400{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.mf_c00400{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m14_c00400{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00400{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m2_c00400{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);}
.m2b_c00400{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00400{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m1_c00400{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m46_c00400{transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00400{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00400{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m7_c00400{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);}
.m22_c00400{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00400{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m55_c00400{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m17_c00400{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);}
.m1d_c00400{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00400{transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00400{transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);}
.m47_c00400{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00400{transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);}
.m43_c00400{transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);}
.m61_c00400{transform:matrix(4.692500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.692500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.692500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00400{transform:matrix(5.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.362500,0.000000,0.000000,0.250000,0,0);}
.v0_c00400{vertical-align:0.000000px;}
.ls0_c00400{letter-spacing:0.000000px;}
.sc__c00400{text-shadow:none;}
.sc0_c00400{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00400{-webkit-text-stroke:0px transparent;}
.sc0_c00400{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00400{word-spacing:0.000000px;}
.ws1_c00400{word-spacing:38.571276px;}
.ws0_c00400{word-spacing:42.457478px;}
.fc0_c00400{color:transparent;}
.fsf_c00400{font-size:17.280000px;}
.fs10_c00400{font-size:20.160000px;}
.fsb_c00400{font-size:23.040000px;}
.fs6_c00400{font-size:37.440000px;}
.fse_c00400{font-size:40.320000px;}
.fsc_c00400{font-size:43.200000px;}
.fs2_c00400{font-size:46.080000px;}
.fs1_c00400{font-size:48.960000px;}
.fs3_c00400{font-size:51.840000px;}
.fs4_c00400{font-size:54.720000px;}
.fs9_c00400{font-size:57.600000px;}
.fs7_c00400{font-size:60.480000px;}
.fs8_c00400{font-size:63.360000px;}
.fs5_c00400{font-size:66.240000px;}
.fsd_c00400{font-size:69.120000px;}
.fsa_c00400{font-size:72.000000px;}
.fs11_c00400{font-size:74.880000px;}
.fs0_c00400{font-size:77.760000px;}
.fs12_c00400{font-size:80.640000px;}
.y0_c00400{bottom:0.000000px;}
.y57_c00400{bottom:36.720000px;}
.y56_c00400{bottom:37.440000px;}
.y55_c00400{bottom:38.160000px;}
.y54_c00400{bottom:38.880000px;}
.y53_c00400{bottom:39.600000px;}
.y52_c00400{bottom:40.320000px;}
.y4e_c00400{bottom:79.920000px;}
.y51_c00400{bottom:80.640000px;}
.y4f_c00400{bottom:81.360000px;}
.y4d_c00400{bottom:82.080000px;}
.y4c_c00400{bottom:82.800000px;}
.y50_c00400{bottom:83.520000px;}
.y63_c00400{bottom:134.640000px;}
.y79_c00400{bottom:135.360000px;}
.y7a_c00400{bottom:156.960000px;}
.y62_c00400{bottom:158.400000px;}
.y61_c00400{bottom:159.840000px;}
.y78_c00400{bottom:174.240000px;}
.y60_c00400{bottom:174.960000px;}
.y36_c00400{bottom:179.280000px;}
.y77_c00400{bottom:180.720000px;}
.y5f_c00400{bottom:181.440000px;}
.y5e_c00400{bottom:185.040000px;}
.y35_c00400{bottom:212.400000px;}
.y76_c00400{bottom:213.840000px;}
.y4b_c00400{bottom:214.560000px;}
.y75_c00400{bottom:216.000000px;}
.y34_c00400{bottom:244.800000px;}
.y71_c00400{bottom:245.520000px;}
.y5d_c00400{bottom:246.240000px;}
.y73_c00400{bottom:246.960000px;}
.y74_c00400{bottom:249.120000px;}
.y33_c00400{bottom:276.480000px;}
.y69_c00400{bottom:277.200000px;}
.y70_c00400{bottom:277.920000px;}
.y5c_c00400{bottom:278.640000px;}
.y6a_c00400{bottom:280.800000px;}
.y5b_c00400{bottom:308.160000px;}
.y32_c00400{bottom:308.880000px;}
.y72_c00400{bottom:310.320000px;}
.y4a_c00400{bottom:340.560000px;}
.y31_c00400{bottom:341.280000px;}
.y68_c00400{bottom:342.000000px;}
.y5a_c00400{bottom:343.440000px;}
.y6e_c00400{bottom:345.600000px;}
.y6f_c00400{bottom:346.320000px;}
.y30_c00400{bottom:372.960000px;}
.y6c_c00400{bottom:373.680000px;}
.y59_c00400{bottom:375.120000px;}
.y67_c00400{bottom:375.840000px;}
.y6d_c00400{bottom:378.000000px;}
.y2f_c00400{bottom:406.080000px;}
.y49_c00400{bottom:407.520000px;}
.y66_c00400{bottom:408.240000px;}
.y6b_c00400{bottom:410.400000px;}
.y48_c00400{bottom:439.200000px;}
.y65_c00400{bottom:439.920000px;}
.y2e_c00400{bottom:440.640000px;}
.y64_c00400{bottom:442.080000px;}
.y2d_c00400{bottom:470.160000px;}
.y58_c00400{bottom:470.880000px;}
.y41_c00400{bottom:472.320000px;}
.y43_c00400{bottom:474.480000px;}
.y2c_c00400{bottom:502.560000px;}
.y42_c00400{bottom:504.000000px;}
.y47_c00400{bottom:504.720000px;}
.y2b_c00400{bottom:534.960000px;}
.y3f_c00400{bottom:535.680000px;}
.y3e_c00400{bottom:537.120000px;}
.y40_c00400{bottom:540.000000px;}
.y46_c00400{bottom:568.800000px;}
.y2a_c00400{bottom:569.520000px;}
.y3d_c00400{bottom:572.400000px;}
.y45_c00400{bottom:599.760000px;}
.y3a_c00400{bottom:600.480000px;}
.y29_c00400{bottom:601.200000px;}
.y3c_c00400{bottom:601.920000px;}
.y3b_c00400{bottom:602.640000px;}
.y38_c00400{bottom:632.880000px;}
.y28_c00400{bottom:635.040000px;}
.y39_c00400{bottom:637.200000px;}
.y37_c00400{bottom:665.280000px;}
.y44_c00400{bottom:666.000000px;}
.y25_c00400{bottom:707.760000px;}
.y26_c00400{bottom:709.920000px;}
.y27_c00400{bottom:710.640000px;}
.y21_c00400{bottom:749.520000px;}
.y24_c00400{bottom:750.240000px;}
.y23_c00400{bottom:751.680000px;}
.y20_c00400{bottom:753.840000px;}
.y22_c00400{bottom:754.560000px;}
.y1d_c00400{bottom:804.240000px;}
.y1e_c00400{bottom:804.960000px;}
.y1f_c00400{bottom:807.120000px;}
.y17_c00400{bottom:846.720000px;}
.y1a_c00400{bottom:847.440000px;}
.y19_c00400{bottom:848.160000px;}
.y1b_c00400{bottom:848.880000px;}
.y18_c00400{bottom:849.600000px;}
.y1c_c00400{bottom:850.320000px;}
.y16_c00400{bottom:851.040000px;}
.y14_c00400{bottom:890.640000px;}
.y15_c00400{bottom:891.360000px;}
.y11_c00400{bottom:892.080000px;}
.y13_c00400{bottom:892.800000px;}
.y12_c00400{bottom:893.520000px;}
.ye_c00400{bottom:933.840000px;}
.yc_c00400{bottom:935.280000px;}
.yd_c00400{bottom:936.000000px;}
.yf_c00400{bottom:936.720000px;}
.y10_c00400{bottom:938.880000px;}
.ya_c00400{bottom:975.600000px;}
.yb_c00400{bottom:976.320000px;}
.y8_c00400{bottom:977.040000px;}
.y7_c00400{bottom:978.480000px;}
.y9_c00400{bottom:979.200000px;}
.y5_c00400{bottom:1018.800000px;}
.y3_c00400{bottom:1020.240000px;}
.y6_c00400{bottom:1020.960000px;}
.y4_c00400{bottom:1021.680000px;}
.y2_c00400{bottom:1022.400000px;}
.y1_c00400{bottom:1134.720000px;}
.h11_c00400{height:15.550313px;}
.h12_c00400{height:18.142031px;}
.hd_c00400{height:20.733750px;}
.h8_c00400{height:33.692344px;}
.h10_c00400{height:36.284062px;}
.he_c00400{height:38.875781px;}
.h4_c00400{height:41.467500px;}
.h3_c00400{height:44.059219px;}
.h5_c00400{height:46.650937px;}
.h6_c00400{height:49.242656px;}
.hb_c00400{height:51.834375px;}
.h9_c00400{height:54.426094px;}
.ha_c00400{height:57.017812px;}
.h7_c00400{height:59.609531px;}
.hf_c00400{height:62.201250px;}
.hc_c00400{height:64.792969px;}
.h13_c00400{height:67.384687px;}
.h2_c00400{height:69.976406px;}
.h14_c00400{height:72.568125px;}
.h1_c00400{height:1162.500000px;}
.h0_c00400{height:1162.800000px;}
.w0_c00400{width:763.920000px;}
.w1_c00400{width:764.250000px;}
.x0_c00400{left:0.000000px;}
.x2_c00400{left:46.080000px;}
.x25_c00400{left:47.520000px;}
.x34_c00400{left:48.959280px;}
.x26_c00400{left:78.480000px;}
.xc_c00400{left:89.280000px;}
.x2b_c00400{left:100.080000px;}
.x42_c00400{left:110.160000px;}
.x1f_c00400{left:120.960000px;}
.x35_c00400{left:123.120000px;}
.x4b_c00400{left:140.400000px;}
.x3_c00400{left:143.280000px;}
.x36_c00400{left:144.720000px;}
.x2f_c00400{left:153.360000px;}
.x3a_c00400{left:155.520000px;}
.xd_c00400{left:166.320000px;}
.x17_c00400{left:175.680000px;}
.x40_c00400{left:186.480000px;}
.x4_c00400{left:187.920000px;}
.xe_c00400{left:198.720000px;}
.x32_c00400{left:208.800000px;}
.x20_c00400{left:219.600000px;}
.x47_c00400{left:227.520000px;}
.x48_c00400{left:231.120000px;}
.x37_c00400{left:241.920000px;}
.x21_c00400{left:251.280000px;}
.x33_c00400{left:252.720000px;}
.x5_c00400{left:274.320000px;}
.x18_c00400{left:283.680000px;}
.x43_c00400{left:285.120000px;}
.x22_c00400{left:306.720000px;}
.x6_c00400{left:317.520000px;}
.x27_c00400{left:326.880000px;}
.x41_c00400{left:328.320000px;}
.xf_c00400{left:338.400000px;}
.x2c_c00400{left:349.200000px;}
.x49_c00400{left:357.840000px;}
.x19_c00400{left:360.000000px;}
.x4a_c00400{left:362.160000px;}
.x39_c00400{left:370.080000px;}
.x10_c00400{left:371.520000px;}
.x2d_c00400{left:391.680000px;}
.x1a_c00400{left:393.120000px;}
.x23_c00400{left:403.200000px;}
.x7_c00400{left:424.800000px;}
.x11_c00400{left:436.320000px;}
.x24_c00400{left:447.120000px;}
.x28_c00400{left:457.920000px;}
.x45_c00400{left:466.560000px;}
.x12_c00400{left:468.720000px;}
.x38_c00400{left:470.160000px;}
.x29_c00400{left:479.520000px;}
.x30_c00400{left:489.600000px;}
.x2e_c00400{left:501.120000px;}
.x13_c00400{left:511.200000px;}
.x46_c00400{left:520.560000px;}
.x2a_c00400{left:522.720000px;}
.x3b_c00400{left:534.960000px;}
.x8_c00400{left:544.320000px;}
.x3e_c00400{left:545.760000px;}
.x31_c00400{left:554.400000px;}
.x1b_c00400{left:566.640000px;}
.x9_c00400{left:578.160000px;}
.x14_c00400{left:587.520000px;}
.x3c_c00400{left:588.960000px;}
.x1c_c00400{left:599.040000px;}
.x3f_c00400{left:600.480000px;}
.x15_c00400{left:609.120000px;}
.xa_c00400{left:610.560000px;}
.x3d_c00400{left:622.080000px;}
.x1d_c00400{left:630.720000px;}
.x44_c00400{left:632.880000px;}
.xb_c00400{left:642.240000px;}
.x16_c00400{left:653.760000px;}
.x1_c00400{left:656.640000px;}
.x1e_c00400{left:695.520000px;}
@media print{
.v0_c00400{vertical-align:0.000000pt;}
.ls0_c00400{letter-spacing:0.000000pt;}
.ws2_c00400{word-spacing:0.000000pt;}
.ws1_c00400{word-spacing:34.285578pt;}
.ws0_c00400{word-spacing:37.739981pt;}
.fsf_c00400{font-size:15.360000pt;}
.fs10_c00400{font-size:17.920000pt;}
.fsb_c00400{font-size:20.480000pt;}
.fs6_c00400{font-size:33.280000pt;}
.fse_c00400{font-size:35.840000pt;}
.fsc_c00400{font-size:38.400000pt;}
.fs2_c00400{font-size:40.960000pt;}
.fs1_c00400{font-size:43.520000pt;}
.fs3_c00400{font-size:46.080000pt;}
.fs4_c00400{font-size:48.640000pt;}
.fs9_c00400{font-size:51.200000pt;}
.fs7_c00400{font-size:53.760000pt;}
.fs8_c00400{font-size:56.320000pt;}
.fs5_c00400{font-size:58.880000pt;}
.fsd_c00400{font-size:61.440000pt;}
.fsa_c00400{font-size:64.000000pt;}
.fs11_c00400{font-size:66.560000pt;}
.fs0_c00400{font-size:69.120000pt;}
.fs12_c00400{font-size:71.680000pt;}
.y0_c00400{bottom:0.000000pt;}
.y57_c00400{bottom:32.640000pt;}
.y56_c00400{bottom:33.280000pt;}
.y55_c00400{bottom:33.920000pt;}
.y54_c00400{bottom:34.560000pt;}
.y53_c00400{bottom:35.200000pt;}
.y52_c00400{bottom:35.840000pt;}
.y4e_c00400{bottom:71.040000pt;}
.y51_c00400{bottom:71.680000pt;}
.y4f_c00400{bottom:72.320000pt;}
.y4d_c00400{bottom:72.960000pt;}
.y4c_c00400{bottom:73.600000pt;}
.y50_c00400{bottom:74.240000pt;}
.y63_c00400{bottom:119.680000pt;}
.y79_c00400{bottom:120.320000pt;}
.y7a_c00400{bottom:139.520000pt;}
.y62_c00400{bottom:140.800000pt;}
.y61_c00400{bottom:142.080000pt;}
.y78_c00400{bottom:154.880000pt;}
.y60_c00400{bottom:155.520000pt;}
.y36_c00400{bottom:159.360000pt;}
.y77_c00400{bottom:160.640000pt;}
.y5f_c00400{bottom:161.280000pt;}
.y5e_c00400{bottom:164.480000pt;}
.y35_c00400{bottom:188.800000pt;}
.y76_c00400{bottom:190.080000pt;}
.y4b_c00400{bottom:190.720000pt;}
.y75_c00400{bottom:192.000000pt;}
.y34_c00400{bottom:217.600000pt;}
.y71_c00400{bottom:218.240000pt;}
.y5d_c00400{bottom:218.880000pt;}
.y73_c00400{bottom:219.520000pt;}
.y74_c00400{bottom:221.440000pt;}
.y33_c00400{bottom:245.760000pt;}
.y69_c00400{bottom:246.400000pt;}
.y70_c00400{bottom:247.040000pt;}
.y5c_c00400{bottom:247.680000pt;}
.y6a_c00400{bottom:249.600000pt;}
.y5b_c00400{bottom:273.920000pt;}
.y32_c00400{bottom:274.560000pt;}
.y72_c00400{bottom:275.840000pt;}
.y4a_c00400{bottom:302.720000pt;}
.y31_c00400{bottom:303.360000pt;}
.y68_c00400{bottom:304.000000pt;}
.y5a_c00400{bottom:305.280000pt;}
.y6e_c00400{bottom:307.200000pt;}
.y6f_c00400{bottom:307.840000pt;}
.y30_c00400{bottom:331.520000pt;}
.y6c_c00400{bottom:332.160000pt;}
.y59_c00400{bottom:333.440000pt;}
.y67_c00400{bottom:334.080000pt;}
.y6d_c00400{bottom:336.000000pt;}
.y2f_c00400{bottom:360.960000pt;}
.y49_c00400{bottom:362.240000pt;}
.y66_c00400{bottom:362.880000pt;}
.y6b_c00400{bottom:364.800000pt;}
.y48_c00400{bottom:390.400000pt;}
.y65_c00400{bottom:391.040000pt;}
.y2e_c00400{bottom:391.680000pt;}
.y64_c00400{bottom:392.960000pt;}
.y2d_c00400{bottom:417.920000pt;}
.y58_c00400{bottom:418.560000pt;}
.y41_c00400{bottom:419.840000pt;}
.y43_c00400{bottom:421.760000pt;}
.y2c_c00400{bottom:446.720000pt;}
.y42_c00400{bottom:448.000000pt;}
.y47_c00400{bottom:448.640000pt;}
.y2b_c00400{bottom:475.520000pt;}
.y3f_c00400{bottom:476.160000pt;}
.y3e_c00400{bottom:477.440000pt;}
.y40_c00400{bottom:480.000000pt;}
.y46_c00400{bottom:505.600000pt;}
.y2a_c00400{bottom:506.240000pt;}
.y3d_c00400{bottom:508.800000pt;}
.y45_c00400{bottom:533.120000pt;}
.y3a_c00400{bottom:533.760000pt;}
.y29_c00400{bottom:534.400000pt;}
.y3c_c00400{bottom:535.040000pt;}
.y3b_c00400{bottom:535.680000pt;}
.y38_c00400{bottom:562.560000pt;}
.y28_c00400{bottom:564.480000pt;}
.y39_c00400{bottom:566.400000pt;}
.y37_c00400{bottom:591.360000pt;}
.y44_c00400{bottom:592.000000pt;}
.y25_c00400{bottom:629.120000pt;}
.y26_c00400{bottom:631.040000pt;}
.y27_c00400{bottom:631.680000pt;}
.y21_c00400{bottom:666.240000pt;}
.y24_c00400{bottom:666.880000pt;}
.y23_c00400{bottom:668.160000pt;}
.y20_c00400{bottom:670.080000pt;}
.y22_c00400{bottom:670.720000pt;}
.y1d_c00400{bottom:714.880000pt;}
.y1e_c00400{bottom:715.520000pt;}
.y1f_c00400{bottom:717.440000pt;}
.y17_c00400{bottom:752.640000pt;}
.y1a_c00400{bottom:753.280000pt;}
.y19_c00400{bottom:753.920000pt;}
.y1b_c00400{bottom:754.560000pt;}
.y18_c00400{bottom:755.200000pt;}
.y1c_c00400{bottom:755.840000pt;}
.y16_c00400{bottom:756.480000pt;}
.y14_c00400{bottom:791.680000pt;}
.y15_c00400{bottom:792.320000pt;}
.y11_c00400{bottom:792.960000pt;}
.y13_c00400{bottom:793.600000pt;}
.y12_c00400{bottom:794.240000pt;}
.ye_c00400{bottom:830.080000pt;}
.yc_c00400{bottom:831.360000pt;}
.yd_c00400{bottom:832.000000pt;}
.yf_c00400{bottom:832.640000pt;}
.y10_c00400{bottom:834.560000pt;}
.ya_c00400{bottom:867.200000pt;}
.yb_c00400{bottom:867.840000pt;}
.y8_c00400{bottom:868.480000pt;}
.y7_c00400{bottom:869.760000pt;}
.y9_c00400{bottom:870.400000pt;}
.y5_c00400{bottom:905.600000pt;}
.y3_c00400{bottom:906.880000pt;}
.y6_c00400{bottom:907.520000pt;}
.y4_c00400{bottom:908.160000pt;}
.y2_c00400{bottom:908.800000pt;}
.y1_c00400{bottom:1008.640000pt;}
.h11_c00400{height:13.822500pt;}
.h12_c00400{height:16.126250pt;}
.hd_c00400{height:18.430000pt;}
.h8_c00400{height:29.948750pt;}
.h10_c00400{height:32.252500pt;}
.he_c00400{height:34.556250pt;}
.h4_c00400{height:36.860000pt;}
.h3_c00400{height:39.163750pt;}
.h5_c00400{height:41.467500pt;}
.h6_c00400{height:43.771250pt;}
.hb_c00400{height:46.075000pt;}
.h9_c00400{height:48.378750pt;}
.ha_c00400{height:50.682500pt;}
.h7_c00400{height:52.986250pt;}
.hf_c00400{height:55.290000pt;}
.hc_c00400{height:57.593750pt;}
.h13_c00400{height:59.897500pt;}
.h2_c00400{height:62.201250pt;}
.h14_c00400{height:64.505000pt;}
.h1_c00400{height:1033.333333pt;}
.h0_c00400{height:1033.600000pt;}
.w0_c00400{width:679.040000pt;}
.w1_c00400{width:679.333333pt;}
.x0_c00400{left:0.000000pt;}
.x2_c00400{left:40.960000pt;}
.x25_c00400{left:42.240000pt;}
.x34_c00400{left:43.519360pt;}
.x26_c00400{left:69.760000pt;}
.xc_c00400{left:79.360000pt;}
.x2b_c00400{left:88.960000pt;}
.x42_c00400{left:97.920000pt;}
.x1f_c00400{left:107.520000pt;}
.x35_c00400{left:109.440000pt;}
.x4b_c00400{left:124.800000pt;}
.x3_c00400{left:127.360000pt;}
.x36_c00400{left:128.640000pt;}
.x2f_c00400{left:136.320000pt;}
.x3a_c00400{left:138.240000pt;}
.xd_c00400{left:147.840000pt;}
.x17_c00400{left:156.160000pt;}
.x40_c00400{left:165.760000pt;}
.x4_c00400{left:167.040000pt;}
.xe_c00400{left:176.640000pt;}
.x32_c00400{left:185.600000pt;}
.x20_c00400{left:195.200000pt;}
.x47_c00400{left:202.240000pt;}
.x48_c00400{left:205.440000pt;}
.x37_c00400{left:215.040000pt;}
.x21_c00400{left:223.360000pt;}
.x33_c00400{left:224.640000pt;}
.x5_c00400{left:243.840000pt;}
.x18_c00400{left:252.160000pt;}
.x43_c00400{left:253.440000pt;}
.x22_c00400{left:272.640000pt;}
.x6_c00400{left:282.240000pt;}
.x27_c00400{left:290.560000pt;}
.x41_c00400{left:291.840000pt;}
.xf_c00400{left:300.800000pt;}
.x2c_c00400{left:310.400000pt;}
.x49_c00400{left:318.080000pt;}
.x19_c00400{left:320.000000pt;}
.x4a_c00400{left:321.920000pt;}
.x39_c00400{left:328.960000pt;}
.x10_c00400{left:330.240000pt;}
.x2d_c00400{left:348.160000pt;}
.x1a_c00400{left:349.440000pt;}
.x23_c00400{left:358.400000pt;}
.x7_c00400{left:377.600000pt;}
.x11_c00400{left:387.840000pt;}
.x24_c00400{left:397.440000pt;}
.x28_c00400{left:407.040000pt;}
.x45_c00400{left:414.720000pt;}
.x12_c00400{left:416.640000pt;}
.x38_c00400{left:417.920000pt;}
.x29_c00400{left:426.240000pt;}
.x30_c00400{left:435.200000pt;}
.x2e_c00400{left:445.440000pt;}
.x13_c00400{left:454.400000pt;}
.x46_c00400{left:462.720000pt;}
.x2a_c00400{left:464.640000pt;}
.x3b_c00400{left:475.520000pt;}
.x8_c00400{left:483.840000pt;}
.x3e_c00400{left:485.120000pt;}
.x31_c00400{left:492.800000pt;}
.x1b_c00400{left:503.680000pt;}
.x9_c00400{left:513.920000pt;}
.x14_c00400{left:522.240000pt;}
.x3c_c00400{left:523.520000pt;}
.x1c_c00400{left:532.480000pt;}
.x3f_c00400{left:533.760000pt;}
.x15_c00400{left:541.440000pt;}
.xa_c00400{left:542.720000pt;}
.x3d_c00400{left:552.960000pt;}
.x1d_c00400{left:560.640000pt;}
.x44_c00400{left:562.560000pt;}
.xb_c00400{left:570.880000pt;}
.x16_c00400{left:581.120000pt;}
.x1_c00400{left:583.680000pt;}
.x1e_c00400{left:618.240000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1696e4d2e9c33ae293ba76d3.woff2')format("woff");}.ff1_c00401{font-family:ff1_c00401;line-height:1.109863;font-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_c00401{transform:matrix(0.189325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189325,0.000000,0.000000,0.250000,0,0);}
.m2f_c00401{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);}
.m3c_c00401{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);}
.m23_c00401{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);}
.m45_c00401{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m51_c00401{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m27_c00401{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m49_c00401{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);}
.m38_c00401{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00401{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00401{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00401{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m8_c00401{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00401{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m5_c00401{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00401{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00401{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mc_c00401{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m10_c00401{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);}
.m4e_c00401{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);}
.m40_c00401{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m48_c00401{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m0_c00401{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);}
.m5a_c00401{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.mf_c00401{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m19_c00401{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);}
.m44_c00401{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);}
.m26_c00401{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m20_c00401{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);}
.m32_c00401{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m18_c00401{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.ma_c00401{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);}
.m2e_c00401{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m57_c00401{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);}
.mb_c00401{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);}
.m46_c00401{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m35_c00401{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m22_c00401{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m53_c00401{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m15_c00401{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m4_c00401{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);}
.m3e_c00401{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m43_c00401{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);}
.m5e_c00401{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);}
.m54_c00401{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m21_c00401{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00401{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m41_c00401{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);}
.m42_c00401{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m2_c00401{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m6_c00401{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);}
.m55_c00401{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m33_c00401{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);}
.m1e_c00401{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m58_c00401{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m1_c00401{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00401{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m3_c00401{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);}
.m3f_c00401{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m12_c00401{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m7_c00401{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00401{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);}
.m1b_c00401{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m11_c00401{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m14_c00401{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m50_c00401{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m34_c00401{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m37_c00401{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m17_c00401{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m39_c00401{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00401{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);}
.me_c00401{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m25_c00401{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00401{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m59_c00401{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);}
.m13_c00401{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m52_c00401{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00401{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m47_c00401{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m9_c00401{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00401{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.m29_c00401{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.md_c00401{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);}
.m4c_c00401{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00401{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00401{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00401{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m16_c00401{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00401{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m56_c00401{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);}
.m5f_c00401{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m28_c00401{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);}
.m30_c00401{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m24_c00401{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00401{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m36_c00401{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.v2_c00401{vertical-align:-11.520000px;}
.v0_c00401{vertical-align:0.000000px;}
.v1_c00401{vertical-align:5.760000px;}
.ls0_c00401{letter-spacing:0.000000px;}
.sc__c00401{text-shadow:none;}
.sc0_c00401{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00401{-webkit-text-stroke:0px transparent;}
.sc0_c00401{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00401{word-spacing:-6.024000px;}
.ws0_c00401{word-spacing:-5.082000px;}
.ws2_c00401{word-spacing:0.000000px;}
.fc0_c00401{color:transparent;}
.fsf_c00401{font-size:20.160000px;}
.fs8_c00401{font-size:34.560000px;}
.fsc_c00401{font-size:37.440000px;}
.fs2_c00401{font-size:40.320000px;}
.fsd_c00401{font-size:43.200000px;}
.fsa_c00401{font-size:46.080000px;}
.fs5_c00401{font-size:48.960000px;}
.fs1_c00401{font-size:51.840000px;}
.fs3_c00401{font-size:54.720000px;}
.fsb_c00401{font-size:57.600000px;}
.fs6_c00401{font-size:60.480000px;}
.fs7_c00401{font-size:63.360000px;}
.fs4_c00401{font-size:66.240000px;}
.fs9_c00401{font-size:69.120000px;}
.fse_c00401{font-size:72.000000px;}
.fs10_c00401{font-size:74.880000px;}
.fs0_c00401{font-size:77.760000px;}
.y0_c00401{bottom:0.000000px;}
.y6b_c00401{bottom:87.120000px;}
.y6c_c00401{bottom:87.840000px;}
.y69_c00401{bottom:88.560000px;}
.y6a_c00401{bottom:89.280000px;}
.y68_c00401{bottom:90.000000px;}
.y67_c00401{bottom:90.720000px;}
.y63_c00401{bottom:130.320000px;}
.y65_c00401{bottom:132.480000px;}
.y64_c00401{bottom:133.200000px;}
.y66_c00401{bottom:133.920000px;}
.y60_c00401{bottom:173.520000px;}
.y62_c00401{bottom:174.960000px;}
.y61_c00401{bottom:175.680000px;}
.y5f_c00401{bottom:176.400000px;}
.y5d_c00401{bottom:216.000000px;}
.y5c_c00401{bottom:218.880000px;}
.y5e_c00401{bottom:219.600000px;}
.y58_c00401{bottom:259.920000px;}
.y59_c00401{bottom:260.640000px;}
.y5a_c00401{bottom:262.080000px;}
.y5b_c00401{bottom:262.800000px;}
.y57_c00401{bottom:263.520000px;}
.y56_c00401{bottom:303.840000px;}
.y55_c00401{bottom:304.560000px;}
.y54_c00401{bottom:306.000000px;}
.y53_c00401{bottom:306.720000px;}
.y51_c00401{bottom:346.320000px;}
.y4f_c00401{bottom:347.040000px;}
.y50_c00401{bottom:347.760000px;}
.y52_c00401{bottom:348.480000px;}
.y4e_c00401{bottom:349.200000px;}
.y4d_c00401{bottom:349.920000px;}
.y4b_c00401{bottom:390.240000px;}
.y4a_c00401{bottom:390.960000px;}
.y49_c00401{bottom:393.120000px;}
.y4c_c00401{bottom:393.840000px;}
.y45_c00401{bottom:433.440000px;}
.y48_c00401{bottom:434.160000px;}
.y46_c00401{bottom:435.600000px;}
.y47_c00401{bottom:436.320000px;}
.y44_c00401{bottom:437.040000px;}
.y41_c00401{bottom:475.920000px;}
.y42_c00401{bottom:476.640000px;}
.y40_c00401{bottom:477.360000px;}
.y3f_c00401{bottom:480.240000px;}
.y43_c00401{bottom:480.960000px;}
.y3a_c00401{bottom:520.560000px;}
.y3e_c00401{bottom:522.000000px;}
.y3c_c00401{bottom:522.720000px;}
.y3b_c00401{bottom:523.440000px;}
.y3d_c00401{bottom:524.160000px;}
.y39_c00401{bottom:563.760000px;}
.y37_c00401{bottom:564.480000px;}
.y38_c00401{bottom:565.920000px;}
.y36_c00401{bottom:566.640000px;}
.y35_c00401{bottom:567.360000px;}
.y32_c00401{bottom:605.520000px;}
.y34_c00401{bottom:606.240000px;}
.y30_c00401{bottom:606.960000px;}
.y31_c00401{bottom:609.120000px;}
.y33_c00401{bottom:609.840000px;}
.y2e_c00401{bottom:649.440000px;}
.y2c_c00401{bottom:650.160000px;}
.y2f_c00401{bottom:652.320000px;}
.y2b_c00401{bottom:653.040000px;}
.y2d_c00401{bottom:653.760000px;}
.y29_c00401{bottom:691.920000px;}
.y28_c00401{bottom:692.640000px;}
.y26_c00401{bottom:693.360000px;}
.y27_c00401{bottom:695.520000px;}
.y2a_c00401{bottom:696.240000px;}
.y20_c00401{bottom:735.840000px;}
.y21_c00401{bottom:736.560000px;}
.y24_c00401{bottom:738.000000px;}
.y23_c00401{bottom:738.720000px;}
.y22_c00401{bottom:740.160000px;}
.y25_c00401{bottom:741.600000px;}
.y1f_c00401{bottom:779.040000px;}
.y1d_c00401{bottom:781.200000px;}
.y1e_c00401{bottom:781.920000px;}
.y1c_c00401{bottom:782.640000px;}
.y19_c00401{bottom:822.240000px;}
.y1a_c00401{bottom:822.960000px;}
.y18_c00401{bottom:824.400000px;}
.y1b_c00401{bottom:825.120000px;}
.y17_c00401{bottom:825.840000px;}
.y16_c00401{bottom:865.440000px;}
.y15_c00401{bottom:866.160000px;}
.y13_c00401{bottom:866.880000px;}
.y12_c00401{bottom:868.320000px;}
.y14_c00401{bottom:869.040000px;}
.yf_c00401{bottom:908.640000px;}
.y11_c00401{bottom:909.360000px;}
.ye_c00401{bottom:910.080000px;}
.y10_c00401{bottom:911.520000px;}
.yd_c00401{bottom:912.240000px;}
.yb_c00401{bottom:953.280000px;}
.yc_c00401{bottom:954.720000px;}
.ya_c00401{bottom:955.440000px;}
.y9_c00401{bottom:956.160000px;}
.y8_c00401{bottom:1007.280000px;}
.y6_c00401{bottom:1009.440000px;}
.y7_c00401{bottom:1010.160000px;}
.y4_c00401{bottom:1049.760000px;}
.y5_c00401{bottom:1050.480000px;}
.y3_c00401{bottom:1052.640000px;}
.y2_c00401{bottom:1053.360000px;}
.y1_c00401{bottom:1135.440000px;}
.h12_c00401{height:18.142031px;}
.ha_c00401{height:31.100625px;}
.he_c00401{height:33.692344px;}
.h4_c00401{height:36.284062px;}
.hf_c00401{height:38.875781px;}
.hc_c00401{height:41.467500px;}
.h7_c00401{height:44.059219px;}
.h3_c00401{height:46.650937px;}
.h5_c00401{height:49.242656px;}
.hd_c00401{height:51.834375px;}
.h10_c00401{height:52.410938px;}
.h8_c00401{height:54.426094px;}
.h9_c00401{height:57.017812px;}
.h6_c00401{height:59.609531px;}
.hb_c00401{height:62.201250px;}
.h11_c00401{height:64.792969px;}
.h13_c00401{height:67.384687px;}
.h2_c00401{height:69.976406px;}
.h1_c00401{height:1161.750000px;}
.h0_c00401{height:1162.080000px;}
.w0_c00401{width:761.760000px;}
.w1_c00401{width:762.000000px;}
.x0_c00401{left:0.000000px;}
.x2_c00401{left:43.200000px;}
.x20_c00401{left:44.640000px;}
.x57_c00401{left:47.520000px;}
.x4f_c00401{left:74.880000px;}
.xb_c00401{left:76.320000px;}
.x19_c00401{left:77.760000px;}
.x21_c00401{left:86.400000px;}
.x3f_c00401{left:97.200000px;}
.x34_c00401{left:99.360000px;}
.x3a_c00401{left:107.280000px;}
.xc_c00401{left:108.720000px;}
.x43_c00401{left:118.800000px;}
.x55_c00401{left:120.960000px;}
.x3_c00401{left:130.320000px;}
.x40_c00401{left:140.400000px;}
.x58_c00401{left:150.480000px;}
.x12_c00401{left:151.920000px;}
.x22_c00401{left:162.720000px;}
.x3b_c00401{left:172.800000px;}
.x2e_c00401{left:174.240000px;}
.x4_c00401{left:184.320000px;}
.x2f_c00401{left:194.400000px;}
.x1a_c00401{left:196.560000px;}
.x13_c00401{left:205.920000px;}
.x3c_c00401{left:215.280000px;}
.x41_c00401{left:226.800000px;}
.x47_c00401{left:229.680000px;}
.x27_c00401{left:238.320000px;}
.x14_c00401{left:239.760000px;}
.x32_c00401{left:249.120000px;}
.x5_c00401{left:251.280000px;}
.x2a_c00401{left:259.920000px;}
.xd_c00401{left:271.440000px;}
.x28_c00401{left:280.800000px;}
.x50_c00401{left:291.600000px;}
.x1b_c00401{left:303.120000px;}
.xe_c00401{left:313.920000px;}
.x35_c00401{left:324.000000px;}
.x53_c00401{left:334.800000px;}
.x44_c00401{left:336.960000px;}
.x48_c00401{left:345.600000px;}
.x15_c00401{left:347.040000px;}
.x52_c00401{left:356.400000px;}
.xf_c00401{left:358.560000px;}
.x1c_c00401{left:367.200000px;}
.x6_c00401{left:369.360000px;}
.x49_c00401{left:378.000000px;}
.x16_c00401{left:379.440000px;}
.x23_c00401{left:389.520000px;}
.x10_c00401{left:390.960000px;}
.x3d_c00401{left:399.600000px;}
.x2b_c00401{left:401.040000px;}
.x36_c00401{left:411.840000px;}
.x45_c00401{left:421.200000px;}
.x11_c00401{left:422.640000px;}
.x1d_c00401{left:434.160000px;}
.x2c_c00401{left:444.240000px;}
.x17_c00401{left:455.760000px;}
.x42_c00401{left:465.120000px;}
.x4a_c00401{left:466.560000px;}
.x7_c00401{left:476.640000px;}
.x24_c00401{left:488.160000px;}
.x37_c00401{left:496.800000px;}
.x33_c00401{left:498.240000px;}
.x46_c00401{left:509.040000px;}
.x4e_c00401{left:519.120000px;}
.x25_c00401{left:520.560000px;}
.x56_c00401{left:529.920000px;}
.x30_c00401{left:531.360000px;}
.x54_c00401{left:540.720000px;}
.x8_c00401{left:542.160000px;}
.x51_c00401{left:550.800000px;}
.x3e_c00401{left:552.960000px;}
.x38_c00401{left:562.320000px;}
.x31_c00401{left:563.760000px;}
.x4b_c00401{left:574.560000px;}
.x1e_c00401{left:576.000000px;}
.x2d_c00401{left:584.640000px;}
.x9_c00401{left:586.080000px;}
.x4c_c00401{left:606.240000px;}
.x29_c00401{left:617.760000px;}
.xa_c00401{left:619.200000px;}
.x26_c00401{left:629.280000px;}
.x39_c00401{left:631.440000px;}
.x1f_c00401{left:639.360000px;}
.x4d_c00401{left:649.440000px;}
.x18_c00401{left:650.880000px;}
.x1_c00401{left:660.960000px;}
@media print{
.v2_c00401{vertical-align:-10.240000pt;}
.v0_c00401{vertical-align:0.000000pt;}
.v1_c00401{vertical-align:5.120000pt;}
.ls0_c00401{letter-spacing:0.000000pt;}
.ws1_c00401{word-spacing:-5.354667pt;}
.ws0_c00401{word-spacing:-4.517333pt;}
.ws2_c00401{word-spacing:0.000000pt;}
.fsf_c00401{font-size:17.920000pt;}
.fs8_c00401{font-size:30.720000pt;}
.fsc_c00401{font-size:33.280000pt;}
.fs2_c00401{font-size:35.840000pt;}
.fsd_c00401{font-size:38.400000pt;}
.fsa_c00401{font-size:40.960000pt;}
.fs5_c00401{font-size:43.520000pt;}
.fs1_c00401{font-size:46.080000pt;}
.fs3_c00401{font-size:48.640000pt;}
.fsb_c00401{font-size:51.200000pt;}
.fs6_c00401{font-size:53.760000pt;}
.fs7_c00401{font-size:56.320000pt;}
.fs4_c00401{font-size:58.880000pt;}
.fs9_c00401{font-size:61.440000pt;}
.fse_c00401{font-size:64.000000pt;}
.fs10_c00401{font-size:66.560000pt;}
.fs0_c00401{font-size:69.120000pt;}
.y0_c00401{bottom:0.000000pt;}
.y6b_c00401{bottom:77.440000pt;}
.y6c_c00401{bottom:78.080000pt;}
.y69_c00401{bottom:78.720000pt;}
.y6a_c00401{bottom:79.360000pt;}
.y68_c00401{bottom:80.000000pt;}
.y67_c00401{bottom:80.640000pt;}
.y63_c00401{bottom:115.840000pt;}
.y65_c00401{bottom:117.760000pt;}
.y64_c00401{bottom:118.400000pt;}
.y66_c00401{bottom:119.040000pt;}
.y60_c00401{bottom:154.240000pt;}
.y62_c00401{bottom:155.520000pt;}
.y61_c00401{bottom:156.160000pt;}
.y5f_c00401{bottom:156.800000pt;}
.y5d_c00401{bottom:192.000000pt;}
.y5c_c00401{bottom:194.560000pt;}
.y5e_c00401{bottom:195.200000pt;}
.y58_c00401{bottom:231.040000pt;}
.y59_c00401{bottom:231.680000pt;}
.y5a_c00401{bottom:232.960000pt;}
.y5b_c00401{bottom:233.600000pt;}
.y57_c00401{bottom:234.240000pt;}
.y56_c00401{bottom:270.080000pt;}
.y55_c00401{bottom:270.720000pt;}
.y54_c00401{bottom:272.000000pt;}
.y53_c00401{bottom:272.640000pt;}
.y51_c00401{bottom:307.840000pt;}
.y4f_c00401{bottom:308.480000pt;}
.y50_c00401{bottom:309.120000pt;}
.y52_c00401{bottom:309.760000pt;}
.y4e_c00401{bottom:310.400000pt;}
.y4d_c00401{bottom:311.040000pt;}
.y4b_c00401{bottom:346.880000pt;}
.y4a_c00401{bottom:347.520000pt;}
.y49_c00401{bottom:349.440000pt;}
.y4c_c00401{bottom:350.080000pt;}
.y45_c00401{bottom:385.280000pt;}
.y48_c00401{bottom:385.920000pt;}
.y46_c00401{bottom:387.200000pt;}
.y47_c00401{bottom:387.840000pt;}
.y44_c00401{bottom:388.480000pt;}
.y41_c00401{bottom:423.040000pt;}
.y42_c00401{bottom:423.680000pt;}
.y40_c00401{bottom:424.320000pt;}
.y3f_c00401{bottom:426.880000pt;}
.y43_c00401{bottom:427.520000pt;}
.y3a_c00401{bottom:462.720000pt;}
.y3e_c00401{bottom:464.000000pt;}
.y3c_c00401{bottom:464.640000pt;}
.y3b_c00401{bottom:465.280000pt;}
.y3d_c00401{bottom:465.920000pt;}
.y39_c00401{bottom:501.120000pt;}
.y37_c00401{bottom:501.760000pt;}
.y38_c00401{bottom:503.040000pt;}
.y36_c00401{bottom:503.680000pt;}
.y35_c00401{bottom:504.320000pt;}
.y32_c00401{bottom:538.240000pt;}
.y34_c00401{bottom:538.880000pt;}
.y30_c00401{bottom:539.520000pt;}
.y31_c00401{bottom:541.440000pt;}
.y33_c00401{bottom:542.080000pt;}
.y2e_c00401{bottom:577.280000pt;}
.y2c_c00401{bottom:577.920000pt;}
.y2f_c00401{bottom:579.840000pt;}
.y2b_c00401{bottom:580.480000pt;}
.y2d_c00401{bottom:581.120000pt;}
.y29_c00401{bottom:615.040000pt;}
.y28_c00401{bottom:615.680000pt;}
.y26_c00401{bottom:616.320000pt;}
.y27_c00401{bottom:618.240000pt;}
.y2a_c00401{bottom:618.880000pt;}
.y20_c00401{bottom:654.080000pt;}
.y21_c00401{bottom:654.720000pt;}
.y24_c00401{bottom:656.000000pt;}
.y23_c00401{bottom:656.640000pt;}
.y22_c00401{bottom:657.920000pt;}
.y25_c00401{bottom:659.200000pt;}
.y1f_c00401{bottom:692.480000pt;}
.y1d_c00401{bottom:694.400000pt;}
.y1e_c00401{bottom:695.040000pt;}
.y1c_c00401{bottom:695.680000pt;}
.y19_c00401{bottom:730.880000pt;}
.y1a_c00401{bottom:731.520000pt;}
.y18_c00401{bottom:732.800000pt;}
.y1b_c00401{bottom:733.440000pt;}
.y17_c00401{bottom:734.080000pt;}
.y16_c00401{bottom:769.280000pt;}
.y15_c00401{bottom:769.920000pt;}
.y13_c00401{bottom:770.560000pt;}
.y12_c00401{bottom:771.840000pt;}
.y14_c00401{bottom:772.480000pt;}
.yf_c00401{bottom:807.680000pt;}
.y11_c00401{bottom:808.320000pt;}
.ye_c00401{bottom:808.960000pt;}
.y10_c00401{bottom:810.240000pt;}
.yd_c00401{bottom:810.880000pt;}
.yb_c00401{bottom:847.360000pt;}
.yc_c00401{bottom:848.640000pt;}
.ya_c00401{bottom:849.280000pt;}
.y9_c00401{bottom:849.920000pt;}
.y8_c00401{bottom:895.360000pt;}
.y6_c00401{bottom:897.280000pt;}
.y7_c00401{bottom:897.920000pt;}
.y4_c00401{bottom:933.120000pt;}
.y5_c00401{bottom:933.760000pt;}
.y3_c00401{bottom:935.680000pt;}
.y2_c00401{bottom:936.320000pt;}
.y1_c00401{bottom:1009.280000pt;}
.h12_c00401{height:16.126250pt;}
.ha_c00401{height:27.645000pt;}
.he_c00401{height:29.948750pt;}
.h4_c00401{height:32.252500pt;}
.hf_c00401{height:34.556250pt;}
.hc_c00401{height:36.860000pt;}
.h7_c00401{height:39.163750pt;}
.h3_c00401{height:41.467500pt;}
.h5_c00401{height:43.771250pt;}
.hd_c00401{height:46.075000pt;}
.h10_c00401{height:46.587500pt;}
.h8_c00401{height:48.378750pt;}
.h9_c00401{height:50.682500pt;}
.h6_c00401{height:52.986250pt;}
.hb_c00401{height:55.290000pt;}
.h11_c00401{height:57.593750pt;}
.h13_c00401{height:59.897500pt;}
.h2_c00401{height:62.201250pt;}
.h1_c00401{height:1032.666667pt;}
.h0_c00401{height:1032.960000pt;}
.w0_c00401{width:677.120000pt;}
.w1_c00401{width:677.333333pt;}
.x0_c00401{left:0.000000pt;}
.x2_c00401{left:38.400000pt;}
.x20_c00401{left:39.680000pt;}
.x57_c00401{left:42.240000pt;}
.x4f_c00401{left:66.560000pt;}
.xb_c00401{left:67.840000pt;}
.x19_c00401{left:69.120000pt;}
.x21_c00401{left:76.800000pt;}
.x3f_c00401{left:86.400000pt;}
.x34_c00401{left:88.320000pt;}
.x3a_c00401{left:95.360000pt;}
.xc_c00401{left:96.640000pt;}
.x43_c00401{left:105.600000pt;}
.x55_c00401{left:107.520000pt;}
.x3_c00401{left:115.840000pt;}
.x40_c00401{left:124.800000pt;}
.x58_c00401{left:133.760000pt;}
.x12_c00401{left:135.040000pt;}
.x22_c00401{left:144.640000pt;}
.x3b_c00401{left:153.600000pt;}
.x2e_c00401{left:154.880000pt;}
.x4_c00401{left:163.840000pt;}
.x2f_c00401{left:172.800000pt;}
.x1a_c00401{left:174.720000pt;}
.x13_c00401{left:183.040000pt;}
.x3c_c00401{left:191.360000pt;}
.x41_c00401{left:201.600000pt;}
.x47_c00401{left:204.160000pt;}
.x27_c00401{left:211.840000pt;}
.x14_c00401{left:213.120000pt;}
.x32_c00401{left:221.440000pt;}
.x5_c00401{left:223.360000pt;}
.x2a_c00401{left:231.040000pt;}
.xd_c00401{left:241.280000pt;}
.x28_c00401{left:249.600000pt;}
.x50_c00401{left:259.200000pt;}
.x1b_c00401{left:269.440000pt;}
.xe_c00401{left:279.040000pt;}
.x35_c00401{left:288.000000pt;}
.x53_c00401{left:297.600000pt;}
.x44_c00401{left:299.520000pt;}
.x48_c00401{left:307.200000pt;}
.x15_c00401{left:308.480000pt;}
.x52_c00401{left:316.800000pt;}
.xf_c00401{left:318.720000pt;}
.x1c_c00401{left:326.400000pt;}
.x6_c00401{left:328.320000pt;}
.x49_c00401{left:336.000000pt;}
.x16_c00401{left:337.280000pt;}
.x23_c00401{left:346.240000pt;}
.x10_c00401{left:347.520000pt;}
.x3d_c00401{left:355.200000pt;}
.x2b_c00401{left:356.480000pt;}
.x36_c00401{left:366.080000pt;}
.x45_c00401{left:374.400000pt;}
.x11_c00401{left:375.680000pt;}
.x1d_c00401{left:385.920000pt;}
.x2c_c00401{left:394.880000pt;}
.x17_c00401{left:405.120000pt;}
.x42_c00401{left:413.440000pt;}
.x4a_c00401{left:414.720000pt;}
.x7_c00401{left:423.680000pt;}
.x24_c00401{left:433.920000pt;}
.x37_c00401{left:441.600000pt;}
.x33_c00401{left:442.880000pt;}
.x46_c00401{left:452.480000pt;}
.x4e_c00401{left:461.440000pt;}
.x25_c00401{left:462.720000pt;}
.x56_c00401{left:471.040000pt;}
.x30_c00401{left:472.320000pt;}
.x54_c00401{left:480.640000pt;}
.x8_c00401{left:481.920000pt;}
.x51_c00401{left:489.600000pt;}
.x3e_c00401{left:491.520000pt;}
.x38_c00401{left:499.840000pt;}
.x31_c00401{left:501.120000pt;}
.x4b_c00401{left:510.720000pt;}
.x1e_c00401{left:512.000000pt;}
.x2d_c00401{left:519.680000pt;}
.x9_c00401{left:520.960000pt;}
.x4c_c00401{left:538.880000pt;}
.x29_c00401{left:549.120000pt;}
.xa_c00401{left:550.400000pt;}
.x26_c00401{left:559.360000pt;}
.x39_c00401{left:561.280000pt;}
.x1f_c00401{left:568.320000pt;}
.x4d_c00401{left:577.280000pt;}
.x18_c00401{left:578.560000pt;}
.x1_c00401{left:587.520000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_eeec999f2f4be9dc5b4780c0.woff2')format("woff");}.ff1_c00402{font-family:ff1_c00402;line-height:1.109863;font-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_c00402{transform:matrix(0.181100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181100,0.000000,0.000000,0.250000,0,0);}
.m30_c00402{transform:matrix(0.210775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210775,0.000000,0.000000,0.250000,0,0);}
.m2f_c00402{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m34_c00402{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);}
.m63_c00402{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00402{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m44_c00402{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m60_c00402{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mb_c00402{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m40_c00402{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m56_c00402{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m47_c00402{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m46_c00402{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00402{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m37_c00402{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m59_c00402{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m24_c00402{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00402{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00402{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m16_c00402{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00402{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m50_c00402{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00402{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);}
.m5c_c00402{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m19_c00402{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m62_c00402{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1_c00402{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m42_c00402{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m12_c00402{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);}
.m39_c00402{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m54_c00402{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m6_c00402{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00402{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m0_c00402{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);}
.m28_c00402{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m49_c00402{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m65_c00402{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);}
.m1b_c00402{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m14_c00402{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m20_c00402{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00402{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m3_c00402{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);}
.m9_c00402{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);}
.m13_c00402{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);}
.m2a_c00402{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m48_c00402{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m2_c00402{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m8_c00402{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);}
.m64_c00402{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00402{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00402{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);}
.m1f_c00402{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);}
.m43_c00402{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m35_c00402{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00402{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m55_c00402{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.mf_c00402{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);}
.m29_c00402{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00402{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.me_c00402{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);}
.m4_c00402{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m22_c00402{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);}
.mc_c00402{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m5_c00402{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.ma_c00402{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00402{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m17_c00402{transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00402{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00402{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m7_c00402{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);}
.m27_c00402{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.md_c00402{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m31_c00402{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m51_c00402{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m36_c00402{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m23_c00402{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);}
.m61_c00402{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m10_c00402{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m53_c00402{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00402{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);}
.m57_c00402{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m58_c00402{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00402{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);}
.m3c_c00402{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m11_c00402{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m45_c00402{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m26_c00402{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00402{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m25_c00402{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);}
.m5f_c00402{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);}
.m15_c00402{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m18_c00402{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m38_c00402{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00402{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m41_c00402{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00402{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);}
.m52_c00402{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);}
.m21_c00402{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m33_c00402{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00402{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00402{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00402{transform:matrix(0.952500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.952500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.952500,0.000000,0.000000,0.250000,0,0);}
.v0_c00402{vertical-align:0.000000px;}
.ls0_c00402{letter-spacing:0.000000px;}
.sc__c00402{text-shadow:none;}
.sc0_c00402{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00402{-webkit-text-stroke:0px transparent;}
.sc0_c00402{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00402{word-spacing:0.000000px;}
.fc0_c00402{color:transparent;}
.fsd_c00402{font-size:25.920000px;}
.fs8_c00402{font-size:34.560000px;}
.fsb_c00402{font-size:37.440000px;}
.fs7_c00402{font-size:40.320000px;}
.fs4_c00402{font-size:43.200000px;}
.fs5_c00402{font-size:46.080000px;}
.fs3_c00402{font-size:48.960000px;}
.fs2_c00402{font-size:51.840000px;}
.fsc_c00402{font-size:54.720000px;}
.fs11_c00402{font-size:57.600000px;}
.fs1_c00402{font-size:60.480000px;}
.fsa_c00402{font-size:63.360000px;}
.fs12_c00402{font-size:66.240000px;}
.fs9_c00402{font-size:69.120000px;}
.fs6_c00402{font-size:72.000000px;}
.fs0_c00402{font-size:74.880000px;}
.fse_c00402{font-size:77.760000px;}
.fsf_c00402{font-size:92.160000px;}
.fs10_c00402{font-size:103.680000px;}
.y0_c00402{bottom:0.000000px;}
.y6e_c00402{bottom:41.760000px;}
.y6d_c00402{bottom:43.200000px;}
.y70_c00402{bottom:43.920000px;}
.y6f_c00402{bottom:44.640000px;}
.y69_c00402{bottom:84.960000px;}
.y6b_c00402{bottom:85.680000px;}
.y6a_c00402{bottom:87.120000px;}
.y6c_c00402{bottom:87.840000px;}
.y65_c00402{bottom:128.880000px;}
.y67_c00402{bottom:130.320000px;}
.y66_c00402{bottom:131.040000px;}
.y68_c00402{bottom:131.760000px;}
.y63_c00402{bottom:171.360000px;}
.y62_c00402{bottom:172.080000px;}
.y61_c00402{bottom:173.520000px;}
.y60_c00402{bottom:174.240000px;}
.y64_c00402{bottom:174.960000px;}
.y5f_c00402{bottom:175.680000px;}
.y5d_c00402{bottom:214.560000px;}
.y5c_c00402{bottom:216.720000px;}
.y5e_c00402{bottom:217.440000px;}
.y5b_c00402{bottom:218.160000px;}
.y5a_c00402{bottom:257.760000px;}
.y57_c00402{bottom:258.480000px;}
.y55_c00402{bottom:259.200000px;}
.y58_c00402{bottom:259.920000px;}
.y56_c00402{bottom:260.640000px;}
.y59_c00402{bottom:261.360000px;}
.y54_c00402{bottom:262.080000px;}
.y52_c00402{bottom:301.680000px;}
.y53_c00402{bottom:303.840000px;}
.y51_c00402{bottom:304.560000px;}
.y4c_c00402{bottom:344.160000px;}
.y50_c00402{bottom:344.880000px;}
.y4f_c00402{bottom:346.320000px;}
.y4e_c00402{bottom:347.040000px;}
.y4d_c00402{bottom:347.760000px;}
.y4b_c00402{bottom:386.640000px;}
.y4a_c00402{bottom:390.240000px;}
.y49_c00402{bottom:390.960000px;}
.y48_c00402{bottom:429.840000px;}
.y47_c00402{bottom:431.280000px;}
.y46_c00402{bottom:434.160000px;}
.y43_c00402{bottom:484.560000px;}
.y45_c00402{bottom:485.280000px;}
.y42_c00402{bottom:486.000000px;}
.y44_c00402{bottom:487.440000px;}
.y41_c00402{bottom:488.160000px;}
.y3d_c00402{bottom:528.480000px;}
.y3f_c00402{bottom:529.200000px;}
.y3e_c00402{bottom:531.360000px;}
.y40_c00402{bottom:532.080000px;}
.y3a_c00402{bottom:571.680000px;}
.y39_c00402{bottom:572.400000px;}
.y3b_c00402{bottom:574.560000px;}
.y3c_c00402{bottom:575.280000px;}
.y35_c00402{bottom:614.880000px;}
.y38_c00402{bottom:617.040000px;}
.y37_c00402{bottom:617.760000px;}
.y36_c00402{bottom:618.480000px;}
.y30_c00402{bottom:658.800000px;}
.y34_c00402{bottom:659.520000px;}
.y2f_c00402{bottom:660.240000px;}
.y32_c00402{bottom:660.960000px;}
.y33_c00402{bottom:661.680000px;}
.y31_c00402{bottom:662.400000px;}
.y2c_c00402{bottom:702.000000px;}
.y29_c00402{bottom:702.720000px;}
.y2e_c00402{bottom:703.440000px;}
.y2b_c00402{bottom:704.160000px;}
.y2a_c00402{bottom:704.880000px;}
.y2d_c00402{bottom:705.600000px;}
.y27_c00402{bottom:745.200000px;}
.y26_c00402{bottom:745.920000px;}
.y28_c00402{bottom:747.360000px;}
.y25_c00402{bottom:748.080000px;}
.y24_c00402{bottom:748.800000px;}
.y22_c00402{bottom:778.320000px;}
.y20_c00402{bottom:781.920000px;}
.y1f_c00402{bottom:788.400000px;}
.y21_c00402{bottom:789.120000px;}
.y23_c00402{bottom:789.840000px;}
.y1d_c00402{bottom:791.280000px;}
.y1e_c00402{bottom:792.000000px;}
.y18_c00402{bottom:831.600000px;}
.y19_c00402{bottom:832.320000px;}
.y1c_c00402{bottom:833.760000px;}
.y1a_c00402{bottom:834.480000px;}
.y1b_c00402{bottom:835.200000px;}
.y17_c00402{bottom:874.080000px;}
.y16_c00402{bottom:876.960000px;}
.y14_c00402{bottom:877.680000px;}
.y15_c00402{bottom:878.400000px;}
.y12_c00402{bottom:918.000000px;}
.y10_c00402{bottom:918.720000px;}
.yf_c00402{bottom:920.160000px;}
.y13_c00402{bottom:920.880000px;}
.y11_c00402{bottom:921.600000px;}
.yd_c00402{bottom:960.480000px;}
.ye_c00402{bottom:961.200000px;}
.yb_c00402{bottom:963.360000px;}
.yc_c00402{bottom:964.080000px;}
.y7_c00402{bottom:1003.680000px;}
.y8_c00402{bottom:1004.400000px;}
.y9_c00402{bottom:1006.560000px;}
.ya_c00402{bottom:1007.280000px;}
.y6_c00402{bottom:1046.160000px;}
.y3_c00402{bottom:1047.600000px;}
.y5_c00402{bottom:1049.040000px;}
.y2_c00402{bottom:1049.760000px;}
.y4_c00402{bottom:1050.480000px;}
.y1_c00402{bottom:1115.280000px;}
.hf_c00402{height:23.325469px;}
.ha_c00402{height:31.100625px;}
.hd_c00402{height:33.692344px;}
.h9_c00402{height:36.284062px;}
.h6_c00402{height:38.875781px;}
.h7_c00402{height:41.467500px;}
.h5_c00402{height:44.059219px;}
.h4_c00402{height:46.650937px;}
.he_c00402{height:49.242656px;}
.h13_c00402{height:51.834375px;}
.h3_c00402{height:54.426094px;}
.hc_c00402{height:57.017812px;}
.h14_c00402{height:59.609531px;}
.hb_c00402{height:62.201250px;}
.h8_c00402{height:64.792969px;}
.h2_c00402{height:67.384687px;}
.h10_c00402{height:69.976406px;}
.h11_c00402{height:82.935000px;}
.h12_c00402{height:93.301875px;}
.h1_c00402{height:1164.000000px;}
.h0_c00402{height:1164.240000px;}
.w1_c00402{width:765.750000px;}
.w0_c00402{width:766.080000px;}
.x0_c00402{left:0.000000px;}
.x2_c00402{left:47.520000px;}
.x3c_c00402{left:48.960000px;}
.x56_c00402{left:79.200000px;}
.x1f_c00402{left:90.000000px;}
.x29_c00402{left:100.800000px;}
.x52_c00402{left:110.880000px;}
.x13_c00402{left:113.040000px;}
.x20_c00402{left:123.120000px;}
.x31_c00402{left:132.480000px;}
.x3_c00402{left:133.920000px;}
.x4f_c00402{left:144.720000px;}
.x21_c00402{left:154.080000px;}
.xd_c00402{left:155.520000px;}
.x50_c00402{left:166.320000px;}
.x32_c00402{left:177.120000px;}
.x38_c00402{left:187.200000px;}
.xe_c00402{left:188.640000px;}
.x14_c00402{left:198.720000px;}
.x4a_c00402{left:208.080000px;}
.x2a_c00402{left:209.520000px;}
.x58_c00402{left:210.960000px;}
.x3d_c00402{left:220.320000px;}
.x5a_c00402{left:221.760000px;}
.x1a_c00402{left:231.840000px;}
.x47_c00402{left:241.920000px;}
.x42_c00402{left:243.360000px;}
.x5e_c00402{left:251.280000px;}
.x33_c00402{left:252.720000px;}
.x4_c00402{left:254.160000px;}
.xf_c00402{left:264.240000px;}
.x25_c00402{left:274.320000px;}
.x5b_c00402{left:285.120000px;}
.x5_c00402{left:296.640000px;}
.x2b_c00402{left:306.720000px;}
.x15_c00402{left:308.160000px;}
.x3e_c00402{left:318.240000px;}
.x34_c00402{left:329.040000px;}
.x4e_c00402{left:330.480000px;}
.x2c_c00402{left:339.120000px;}
.x10_c00402{left:341.280000px;}
.x6_c00402{left:349.920000px;}
.x3f_c00402{left:352.080000px;}
.x35_c00402{left:362.160000px;}
.x2d_c00402{left:371.520000px;}
.x11_c00402{left:372.960000px;}
.x39_c00402{left:383.040000px;}
.x2e_c00402{left:393.840000px;}
.x22_c00402{left:395.280000px;}
.x59_c00402{left:403.920000px;}
.x7_c00402{left:406.080000px;}
.x26_c00402{left:415.440000px;}
.x40_c00402{left:416.880000px;}
.x51_c00402{left:426.240000px;}
.x23_c00402{left:427.680000px;}
.x8_c00402{left:437.040000px;}
.x16_c00402{left:438.480000px;}
.x41_c00402{left:447.840000px;}
.x1b_c00402{left:449.280000px;}
.x4c_c00402{left:457.920000px;}
.x17_c00402{left:459.360000px;}
.x5c_c00402{left:469.440000px;}
.x53_c00402{left:470.880000px;}
.x44_c00402{left:480.240000px;}
.x12_c00402{left:481.680000px;}
.x18_c00402{left:492.480000px;}
.x3a_c00402{left:501.840000px;}
.x54_c00402{left:503.280000px;}
.x5d_c00402{left:511.920000px;}
.x9_c00402{left:513.360000px;}
.x2f_c00402{left:523.440000px;}
.x57_c00402{left:524.880000px;}
.x24_c00402{left:527.040000px;}
.x1c_c00402{left:546.480000px;}
.x48_c00402{left:557.280000px;}
.xa_c00402{left:565.920000px;}
.x4b_c00402{left:568.080000px;}
.x1d_c00402{left:578.160000px;}
.x30_c00402{left:579.600000px;}
.x36_c00402{left:589.680000px;}
.x27_c00402{left:600.480000px;}
.x55_c00402{left:609.840000px;}
.xb_c00402{left:611.280000px;}
.x45_c00402{left:619.920000px;}
.x4d_c00402{left:622.080000px;}
.x37_c00402{left:633.600000px;}
.x28_c00402{left:635.040000px;}
.x19_c00402{left:642.960000px;}
.x49_c00402{left:644.400000px;}
.x43_c00402{left:645.840000px;}
.x1e_c00402{left:654.480000px;}
.xc_c00402{left:655.920000px;}
.x46_c00402{left:665.280000px;}
.x1_c00402{left:673.200000px;}
.x3b_c00402{left:678.240000px;}
@media print{
.v0_c00402{vertical-align:0.000000pt;}
.ls0_c00402{letter-spacing:0.000000pt;}
.ws0_c00402{word-spacing:0.000000pt;}
.fsd_c00402{font-size:23.040000pt;}
.fs8_c00402{font-size:30.720000pt;}
.fsb_c00402{font-size:33.280000pt;}
.fs7_c00402{font-size:35.840000pt;}
.fs4_c00402{font-size:38.400000pt;}
.fs5_c00402{font-size:40.960000pt;}
.fs3_c00402{font-size:43.520000pt;}
.fs2_c00402{font-size:46.080000pt;}
.fsc_c00402{font-size:48.640000pt;}
.fs11_c00402{font-size:51.200000pt;}
.fs1_c00402{font-size:53.760000pt;}
.fsa_c00402{font-size:56.320000pt;}
.fs12_c00402{font-size:58.880000pt;}
.fs9_c00402{font-size:61.440000pt;}
.fs6_c00402{font-size:64.000000pt;}
.fs0_c00402{font-size:66.560000pt;}
.fse_c00402{font-size:69.120000pt;}
.fsf_c00402{font-size:81.920000pt;}
.fs10_c00402{font-size:92.160000pt;}
.y0_c00402{bottom:0.000000pt;}
.y6e_c00402{bottom:37.120000pt;}
.y6d_c00402{bottom:38.400000pt;}
.y70_c00402{bottom:39.040000pt;}
.y6f_c00402{bottom:39.680000pt;}
.y69_c00402{bottom:75.520000pt;}
.y6b_c00402{bottom:76.160000pt;}
.y6a_c00402{bottom:77.440000pt;}
.y6c_c00402{bottom:78.080000pt;}
.y65_c00402{bottom:114.560000pt;}
.y67_c00402{bottom:115.840000pt;}
.y66_c00402{bottom:116.480000pt;}
.y68_c00402{bottom:117.120000pt;}
.y63_c00402{bottom:152.320000pt;}
.y62_c00402{bottom:152.960000pt;}
.y61_c00402{bottom:154.240000pt;}
.y60_c00402{bottom:154.880000pt;}
.y64_c00402{bottom:155.520000pt;}
.y5f_c00402{bottom:156.160000pt;}
.y5d_c00402{bottom:190.720000pt;}
.y5c_c00402{bottom:192.640000pt;}
.y5e_c00402{bottom:193.280000pt;}
.y5b_c00402{bottom:193.920000pt;}
.y5a_c00402{bottom:229.120000pt;}
.y57_c00402{bottom:229.760000pt;}
.y55_c00402{bottom:230.400000pt;}
.y58_c00402{bottom:231.040000pt;}
.y56_c00402{bottom:231.680000pt;}
.y59_c00402{bottom:232.320000pt;}
.y54_c00402{bottom:232.960000pt;}
.y52_c00402{bottom:268.160000pt;}
.y53_c00402{bottom:270.080000pt;}
.y51_c00402{bottom:270.720000pt;}
.y4c_c00402{bottom:305.920000pt;}
.y50_c00402{bottom:306.560000pt;}
.y4f_c00402{bottom:307.840000pt;}
.y4e_c00402{bottom:308.480000pt;}
.y4d_c00402{bottom:309.120000pt;}
.y4b_c00402{bottom:343.680000pt;}
.y4a_c00402{bottom:346.880000pt;}
.y49_c00402{bottom:347.520000pt;}
.y48_c00402{bottom:382.080000pt;}
.y47_c00402{bottom:383.360000pt;}
.y46_c00402{bottom:385.920000pt;}
.y43_c00402{bottom:430.720000pt;}
.y45_c00402{bottom:431.360000pt;}
.y42_c00402{bottom:432.000000pt;}
.y44_c00402{bottom:433.280000pt;}
.y41_c00402{bottom:433.920000pt;}
.y3d_c00402{bottom:469.760000pt;}
.y3f_c00402{bottom:470.400000pt;}
.y3e_c00402{bottom:472.320000pt;}
.y40_c00402{bottom:472.960000pt;}
.y3a_c00402{bottom:508.160000pt;}
.y39_c00402{bottom:508.800000pt;}
.y3b_c00402{bottom:510.720000pt;}
.y3c_c00402{bottom:511.360000pt;}
.y35_c00402{bottom:546.560000pt;}
.y38_c00402{bottom:548.480000pt;}
.y37_c00402{bottom:549.120000pt;}
.y36_c00402{bottom:549.760000pt;}
.y30_c00402{bottom:585.600000pt;}
.y34_c00402{bottom:586.240000pt;}
.y2f_c00402{bottom:586.880000pt;}
.y32_c00402{bottom:587.520000pt;}
.y33_c00402{bottom:588.160000pt;}
.y31_c00402{bottom:588.800000pt;}
.y2c_c00402{bottom:624.000000pt;}
.y29_c00402{bottom:624.640000pt;}
.y2e_c00402{bottom:625.280000pt;}
.y2b_c00402{bottom:625.920000pt;}
.y2a_c00402{bottom:626.560000pt;}
.y2d_c00402{bottom:627.200000pt;}
.y27_c00402{bottom:662.400000pt;}
.y26_c00402{bottom:663.040000pt;}
.y28_c00402{bottom:664.320000pt;}
.y25_c00402{bottom:664.960000pt;}
.y24_c00402{bottom:665.600000pt;}
.y22_c00402{bottom:691.840000pt;}
.y20_c00402{bottom:695.040000pt;}
.y1f_c00402{bottom:700.800000pt;}
.y21_c00402{bottom:701.440000pt;}
.y23_c00402{bottom:702.080000pt;}
.y1d_c00402{bottom:703.360000pt;}
.y1e_c00402{bottom:704.000000pt;}
.y18_c00402{bottom:739.200000pt;}
.y19_c00402{bottom:739.840000pt;}
.y1c_c00402{bottom:741.120000pt;}
.y1a_c00402{bottom:741.760000pt;}
.y1b_c00402{bottom:742.400000pt;}
.y17_c00402{bottom:776.960000pt;}
.y16_c00402{bottom:779.520000pt;}
.y14_c00402{bottom:780.160000pt;}
.y15_c00402{bottom:780.800000pt;}
.y12_c00402{bottom:816.000000pt;}
.y10_c00402{bottom:816.640000pt;}
.yf_c00402{bottom:817.920000pt;}
.y13_c00402{bottom:818.560000pt;}
.y11_c00402{bottom:819.200000pt;}
.yd_c00402{bottom:853.760000pt;}
.ye_c00402{bottom:854.400000pt;}
.yb_c00402{bottom:856.320000pt;}
.yc_c00402{bottom:856.960000pt;}
.y7_c00402{bottom:892.160000pt;}
.y8_c00402{bottom:892.800000pt;}
.y9_c00402{bottom:894.720000pt;}
.ya_c00402{bottom:895.360000pt;}
.y6_c00402{bottom:929.920000pt;}
.y3_c00402{bottom:931.200000pt;}
.y5_c00402{bottom:932.480000pt;}
.y2_c00402{bottom:933.120000pt;}
.y4_c00402{bottom:933.760000pt;}
.y1_c00402{bottom:991.360000pt;}
.hf_c00402{height:20.733750pt;}
.ha_c00402{height:27.645000pt;}
.hd_c00402{height:29.948750pt;}
.h9_c00402{height:32.252500pt;}
.h6_c00402{height:34.556250pt;}
.h7_c00402{height:36.860000pt;}
.h5_c00402{height:39.163750pt;}
.h4_c00402{height:41.467500pt;}
.he_c00402{height:43.771250pt;}
.h13_c00402{height:46.075000pt;}
.h3_c00402{height:48.378750pt;}
.hc_c00402{height:50.682500pt;}
.h14_c00402{height:52.986250pt;}
.hb_c00402{height:55.290000pt;}
.h8_c00402{height:57.593750pt;}
.h2_c00402{height:59.897500pt;}
.h10_c00402{height:62.201250pt;}
.h11_c00402{height:73.720000pt;}
.h12_c00402{height:82.935000pt;}
.h1_c00402{height:1034.666667pt;}
.h0_c00402{height:1034.880000pt;}
.w1_c00402{width:680.666667pt;}
.w0_c00402{width:680.960000pt;}
.x0_c00402{left:0.000000pt;}
.x2_c00402{left:42.240000pt;}
.x3c_c00402{left:43.520000pt;}
.x56_c00402{left:70.400000pt;}
.x1f_c00402{left:80.000000pt;}
.x29_c00402{left:89.600000pt;}
.x52_c00402{left:98.560000pt;}
.x13_c00402{left:100.480000pt;}
.x20_c00402{left:109.440000pt;}
.x31_c00402{left:117.760000pt;}
.x3_c00402{left:119.040000pt;}
.x4f_c00402{left:128.640000pt;}
.x21_c00402{left:136.960000pt;}
.xd_c00402{left:138.240000pt;}
.x50_c00402{left:147.840000pt;}
.x32_c00402{left:157.440000pt;}
.x38_c00402{left:166.400000pt;}
.xe_c00402{left:167.680000pt;}
.x14_c00402{left:176.640000pt;}
.x4a_c00402{left:184.960000pt;}
.x2a_c00402{left:186.240000pt;}
.x58_c00402{left:187.520000pt;}
.x3d_c00402{left:195.840000pt;}
.x5a_c00402{left:197.120000pt;}
.x1a_c00402{left:206.080000pt;}
.x47_c00402{left:215.040000pt;}
.x42_c00402{left:216.320000pt;}
.x5e_c00402{left:223.360000pt;}
.x33_c00402{left:224.640000pt;}
.x4_c00402{left:225.920000pt;}
.xf_c00402{left:234.880000pt;}
.x25_c00402{left:243.840000pt;}
.x5b_c00402{left:253.440000pt;}
.x5_c00402{left:263.680000pt;}
.x2b_c00402{left:272.640000pt;}
.x15_c00402{left:273.920000pt;}
.x3e_c00402{left:282.880000pt;}
.x34_c00402{left:292.480000pt;}
.x4e_c00402{left:293.760000pt;}
.x2c_c00402{left:301.440000pt;}
.x10_c00402{left:303.360000pt;}
.x6_c00402{left:311.040000pt;}
.x3f_c00402{left:312.960000pt;}
.x35_c00402{left:321.920000pt;}
.x2d_c00402{left:330.240000pt;}
.x11_c00402{left:331.520000pt;}
.x39_c00402{left:340.480000pt;}
.x2e_c00402{left:350.080000pt;}
.x22_c00402{left:351.360000pt;}
.x59_c00402{left:359.040000pt;}
.x7_c00402{left:360.960000pt;}
.x26_c00402{left:369.280000pt;}
.x40_c00402{left:370.560000pt;}
.x51_c00402{left:378.880000pt;}
.x23_c00402{left:380.160000pt;}
.x8_c00402{left:388.480000pt;}
.x16_c00402{left:389.760000pt;}
.x41_c00402{left:398.080000pt;}
.x1b_c00402{left:399.360000pt;}
.x4c_c00402{left:407.040000pt;}
.x17_c00402{left:408.320000pt;}
.x5c_c00402{left:417.280000pt;}
.x53_c00402{left:418.560000pt;}
.x44_c00402{left:426.880000pt;}
.x12_c00402{left:428.160000pt;}
.x18_c00402{left:437.760000pt;}
.x3a_c00402{left:446.080000pt;}
.x54_c00402{left:447.360000pt;}
.x5d_c00402{left:455.040000pt;}
.x9_c00402{left:456.320000pt;}
.x2f_c00402{left:465.280000pt;}
.x57_c00402{left:466.560000pt;}
.x24_c00402{left:468.480000pt;}
.x1c_c00402{left:485.760000pt;}
.x48_c00402{left:495.360000pt;}
.xa_c00402{left:503.040000pt;}
.x4b_c00402{left:504.960000pt;}
.x1d_c00402{left:513.920000pt;}
.x30_c00402{left:515.200000pt;}
.x36_c00402{left:524.160000pt;}
.x27_c00402{left:533.760000pt;}
.x55_c00402{left:542.080000pt;}
.xb_c00402{left:543.360000pt;}
.x45_c00402{left:551.040000pt;}
.x4d_c00402{left:552.960000pt;}
.x37_c00402{left:563.200000pt;}
.x28_c00402{left:564.480000pt;}
.x19_c00402{left:571.520000pt;}
.x49_c00402{left:572.800000pt;}
.x43_c00402{left:574.080000pt;}
.x1e_c00402{left:581.760000pt;}
.xc_c00402{left:583.040000pt;}
.x46_c00402{left:591.360000pt;}
.x1_c00402{left:598.400000pt;}
.x3b_c00402{left:602.880000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_827385be1fe882deacddf715.woff2')format("woff");}.ff1_c00403{font-family:ff1_c00403;line-height:1.109863;font-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_c00403{transform:matrix(0.210900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210900,0.000000,0.000000,0.250000,0,0);}
.m45_c00403{transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);}
.m44_c00403{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);}
.m4f_c00403{transform:matrix(0.233425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233425,0.000000,0.000000,0.250000,0,0);}
.m5a_c00403{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);}
.m42_c00403{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);}
.m37_c00403{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);}
.m41_c00403{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);}
.m40_c00403{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m0_c00403{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);}
.m3f_c00403{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);}
.m3b_c00403{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m36_c00403{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);}
.m3c_c00403{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);}
.m34_c00403{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m49_c00403{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);}
.m3d_c00403{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m46_c00403{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00403{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00403{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00403{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m31_c00403{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m35_c00403{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00403{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00403{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m17_c00403{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00403{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m59_c00403{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00403{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.ma_c00403{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);}
.m3a_c00403{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1_c00403{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00403{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m15_c00403{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m13_c00403{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);}
.m1d_c00403{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m27_c00403{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);}
.m33_c00403{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m57_c00403{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);}
.m10_c00403{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);}
.m30_c00403{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m7_c00403{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);}
.m39_c00403{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);}
.m26_c00403{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);}
.m24_c00403{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m43_c00403{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00403{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);}
.m20_c00403{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m11_c00403{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);}
.m2d_c00403{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.md_c00403{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m28_c00403{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m3_c00403{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);}
.m51_c00403{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m38_c00403{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m23_c00403{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);}
.m58_c00403{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);}
.m4_c00403{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m9_c00403{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m21_c00403{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.mb_c00403{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);}
.m56_c00403{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00403{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.mf_c00403{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);}
.m53_c00403{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m8_c00403{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);}
.m54_c00403{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m5_c00403{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m2_c00403{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);}
.m2c_c00403{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m55_c00403{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00403{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m19_c00403{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);}
.m4c_c00403{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m50_c00403{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m16_c00403{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m6_c00403{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);}
.m14_c00403{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);}
.m52_c00403{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00403{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);}
.mc_c00403{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m32_c00403{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_c00403{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m12_c00403{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.me_c00403{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m25_c00403{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00403{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00403{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m22_c00403{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m18_c00403{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m47_c00403{transform:matrix(3.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.190000,0.000000,0.000000,0.250000,0,0);}
.m48_c00403{transform:matrix(3.647500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.647500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.647500,0.000000,0.000000,0.250000,0,0);}
.v3_c00403{vertical-align:-23.040000px;}
.v2_c00403{vertical-align:-8.640000px;}
.v5_c00403{vertical-align:-5.760000px;}
.v0_c00403{vertical-align:0.000000px;}
.v1_c00403{vertical-align:5.760000px;}
.v4_c00403{vertical-align:8.640000px;}
.ls1_c00403{letter-spacing:0.000000px;}
.ls0_c00403{letter-spacing:196.945680px;}
.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;}
}
.ws4_c00403{word-spacing:0.000000px;}
.ws3_c00403{word-spacing:2.988000px;}
.ws0_c00403{word-spacing:7.595040px;}
.ws1_c00403{word-spacing:58.943280px;}
.ws2_c00403{word-spacing:79.859520px;}
.fc0_c00403{color:transparent;}
.fs7_c00403{font-size:20.160000px;}
.fs11_c00403{font-size:23.040000px;}
.fs9_c00403{font-size:34.560000px;}
.fs2_c00403{font-size:37.440000px;}
.fs5_c00403{font-size:40.320000px;}
.fs8_c00403{font-size:43.200000px;}
.fsd_c00403{font-size:46.080000px;}
.fsa_c00403{font-size:48.960000px;}
.fs1_c00403{font-size:51.840000px;}
.fs4_c00403{font-size:54.720000px;}
.fs3_c00403{font-size:57.600000px;}
.fs6_c00403{font-size:60.480000px;}
.fsb_c00403{font-size:63.360000px;}
.fsf_c00403{font-size:66.240000px;}
.fse_c00403{font-size:69.120000px;}
.fs10_c00403{font-size:74.880000px;}
.fs0_c00403{font-size:77.760000px;}
.fsc_c00403{font-size:103.680000px;}
.y0_c00403{bottom:0.000000px;}
.y55_c00403{bottom:95.760000px;}
.y57_c00403{bottom:96.480000px;}
.y54_c00403{bottom:97.200000px;}
.y53_c00403{bottom:97.920000px;}
.y56_c00403{bottom:98.640000px;}
.y59_c00403{bottom:99.360000px;}
.y58_c00403{bottom:100.080000px;}
.y5a_c00403{bottom:100.800000px;}
.y50_c00403{bottom:140.400000px;}
.y52_c00403{bottom:141.120000px;}
.y51_c00403{bottom:141.840000px;}
.y4f_c00403{bottom:142.560000px;}
.y4d_c00403{bottom:182.880000px;}
.y4c_c00403{bottom:185.760000px;}
.y4e_c00403{bottom:186.480000px;}
.y4a_c00403{bottom:226.800000px;}
.y48_c00403{bottom:228.960000px;}
.y49_c00403{bottom:229.680000px;}
.y4b_c00403{bottom:230.400000px;}
.y46_c00403{bottom:269.280000px;}
.y47_c00403{bottom:271.440000px;}
.y45_c00403{bottom:272.160000px;}
.y43_c00403{bottom:313.200000px;}
.y42_c00403{bottom:316.080000px;}
.y44_c00403{bottom:316.800000px;}
.y41_c00403{bottom:357.120000px;}
.y40_c00403{bottom:358.560000px;}
.y3f_c00403{bottom:403.200000px;}
.y3e_c00403{bottom:486.720000px;}
.y3c_c00403{bottom:488.160000px;}
.y3b_c00403{bottom:488.880000px;}
.y3d_c00403{bottom:489.600000px;}
.y39_c00403{bottom:529.920000px;}
.y37_c00403{bottom:532.080000px;}
.y3a_c00403{bottom:532.800000px;}
.y38_c00403{bottom:533.520000px;}
.y36_c00403{bottom:584.640000px;}
.y35_c00403{bottom:585.360000px;}
.y33_c00403{bottom:601.920000px;}
.y30_c00403{bottom:602.640000px;}
.y2f_c00403{bottom:606.240000px;}
.y2e_c00403{bottom:606.960000px;}
.y31_c00403{bottom:607.680000px;}
.y34_c00403{bottom:608.400000px;}
.y32_c00403{bottom:609.120000px;}
.y2b_c00403{bottom:638.640000px;}
.y2a_c00403{bottom:639.360000px;}
.y2c_c00403{bottom:640.080000px;}
.y2d_c00403{bottom:640.800000px;}
.y27_c00403{bottom:671.040000px;}
.y26_c00403{bottom:671.760000px;}
.y29_c00403{bottom:673.200000px;}
.y28_c00403{bottom:673.920000px;}
.y25_c00403{bottom:703.440000px;}
.y23_c00403{bottom:704.160000px;}
.y24_c00403{bottom:704.880000px;}
.y21_c00403{bottom:705.600000px;}
.y22_c00403{bottom:706.320000px;}
.y1e_c00403{bottom:745.200000px;}
.y1d_c00403{bottom:745.920000px;}
.y20_c00403{bottom:747.360000px;}
.y1f_c00403{bottom:748.800000px;}
.y1c_c00403{bottom:787.680000px;}
.y1b_c00403{bottom:790.560000px;}
.y1a_c00403{bottom:791.280000px;}
.y19_c00403{bottom:792.000000px;}
.y18_c00403{bottom:831.600000px;}
.y17_c00403{bottom:835.200000px;}
.y16_c00403{bottom:875.520000px;}
.y13_c00403{bottom:877.680000px;}
.y15_c00403{bottom:878.400000px;}
.y14_c00403{bottom:879.120000px;}
.y12_c00403{bottom:918.720000px;}
.yf_c00403{bottom:919.440000px;}
.yd_c00403{bottom:920.160000px;}
.y11_c00403{bottom:920.880000px;}
.yc_c00403{bottom:921.600000px;}
.ye_c00403{bottom:922.320000px;}
.y10_c00403{bottom:926.640000px;}
.ya_c00403{bottom:961.920000px;}
.y7_c00403{bottom:964.080000px;}
.y9_c00403{bottom:964.800000px;}
.y8_c00403{bottom:965.520000px;}
.yb_c00403{bottom:966.960000px;}
.y5_c00403{bottom:1007.280000px;}
.y6_c00403{bottom:1008.000000px;}
.y4_c00403{bottom:1051.200000px;}
.y2_c00403{bottom:1051.920000px;}
.y3_c00403{bottom:1052.640000px;}
.y1_c00403{bottom:1121.760000px;}
.ha_c00403{height:18.142031px;}
.h14_c00403{height:20.733750px;}
.hc_c00403{height:31.100625px;}
.h4_c00403{height:33.692344px;}
.h7_c00403{height:36.284062px;}
.hb_c00403{height:38.875781px;}
.h10_c00403{height:41.467500px;}
.hd_c00403{height:44.059219px;}
.h3_c00403{height:46.650937px;}
.h16_c00403{height:48.666094px;}
.h6_c00403{height:49.242656px;}
.h5_c00403{height:51.834375px;}
.h9_c00403{height:54.426094px;}
.h15_c00403{height:55.290937px;}
.he_c00403{height:57.017812px;}
.h12_c00403{height:59.609531px;}
.h8_c00403{height:60.186094px;}
.h11_c00403{height:62.201250px;}
.h13_c00403{height:67.384687px;}
.h2_c00403{height:69.976406px;}
.hf_c00403{height:93.301875px;}
.h0_c00403{height:1159.920000px;}
.h1_c00403{height:1160.250000px;}
.w0_c00403{width:778.320000px;}
.w1_c00403{width:778.500000px;}
.x0_c00403{left:0.000000px;}
.x8_c00403{left:60.480000px;}
.x20_c00403{left:61.920000px;}
.x42_c00403{left:63.360000px;}
.x26_c00403{left:84.240000px;}
.x43_c00403{left:116.640000px;}
.x9_c00403{left:125.280000px;}
.x31_c00403{left:138.240000px;}
.x34_c00403{left:149.040000px;}
.x21_c00403{left:158.400000px;}
.x2_c00403{left:170.640000px;}
.x27_c00403{left:179.280000px;}
.x11_c00403{left:191.520000px;}
.x23_c00403{left:200.880000px;}
.x3a_c00403{left:211.680000px;}
.xa_c00403{left:213.120000px;}
.x12_c00403{left:223.200000px;}
.x2f_c00403{left:225.360000px;}
.x17_c00403{left:234.000000px;}
.x2b_c00403{left:235.440000px;}
.x28_c00403{left:244.800000px;}
.x3_c00403{left:257.040000px;}
.x18_c00403{left:267.120000px;}
.x4_c00403{left:276.480000px;}
.x44_c00403{left:278.640000px;}
.x24_c00403{left:288.720000px;}
.x30_c00403{left:290.160000px;}
.x19_c00403{left:300.240000px;}
.x36_c00403{left:311.040000px;}
.xb_c00403{left:320.400000px;}
.x25_c00403{left:321.840000px;}
.x3b_c00403{left:331.200000px;}
.x3e_c00403{left:332.640000px;}
.x13_c00403{left:353.520000px;}
.x32_c00403{left:362.160000px;}
.x2c_c00403{left:365.040000px;}
.x29_c00403{left:375.120000px;}
.xc_c00403{left:386.640000px;}
.x14_c00403{left:397.440000px;}
.xd_c00403{left:407.520000px;}
.x1a_c00403{left:408.960000px;}
.x5_c00403{left:419.040000px;}
.x22_c00403{left:428.400000px;}
.x2a_c00403{left:429.840000px;}
.x6_c00403{left:439.200000px;}
.x2d_c00403{left:440.640000px;}
.x40_c00403{left:450.720000px;}
.x1b_c00403{left:460.080000px;}
.x3c_c00403{left:473.760000px;}
.x37_c00403{left:483.120000px;}
.x33_c00403{left:491.760000px;}
.xe_c00403{left:493.920000px;}
.x1c_c00403{left:504.720000px;}
.x38_c00403{left:516.240000px;}
.xf_c00403{left:537.840000px;}
.x1d_c00403{left:548.640000px;}
.x7_c00403{left:558.000000px;}
.x35_c00403{left:559.440000px;}
.x2e_c00403{left:569.520000px;}
.x1e_c00403{left:578.880000px;}
.x41_c00403{left:581.040000px;}
.x3f_c00403{left:591.840000px;}
.x3d_c00403{left:613.440000px;}
.x39_c00403{left:624.240000px;}
.x45_c00403{left:626.400000px;}
.x15_c00403{left:634.320000px;}
.x46_c00403{left:646.560000px;}
.x10_c00403{left:656.640000px;}
.x1f_c00403{left:666.720000px;}
.x1_c00403{left:677.520000px;}
.x16_c00403{left:689.040000px;}
@media print{
.v3_c00403{vertical-align:-20.480000pt;}
.v2_c00403{vertical-align:-7.680000pt;}
.v5_c00403{vertical-align:-5.120000pt;}
.v0_c00403{vertical-align:0.000000pt;}
.v1_c00403{vertical-align:5.120000pt;}
.v4_c00403{vertical-align:7.680000pt;}
.ls1_c00403{letter-spacing:0.000000pt;}
.ls0_c00403{letter-spacing:175.062827pt;}
.ws4_c00403{word-spacing:0.000000pt;}
.ws3_c00403{word-spacing:2.656000pt;}
.ws0_c00403{word-spacing:6.751147pt;}
.ws1_c00403{word-spacing:52.394027pt;}
.ws2_c00403{word-spacing:70.986240pt;}
.fs7_c00403{font-size:17.920000pt;}
.fs11_c00403{font-size:20.480000pt;}
.fs9_c00403{font-size:30.720000pt;}
.fs2_c00403{font-size:33.280000pt;}
.fs5_c00403{font-size:35.840000pt;}
.fs8_c00403{font-size:38.400000pt;}
.fsd_c00403{font-size:40.960000pt;}
.fsa_c00403{font-size:43.520000pt;}
.fs1_c00403{font-size:46.080000pt;}
.fs4_c00403{font-size:48.640000pt;}
.fs3_c00403{font-size:51.200000pt;}
.fs6_c00403{font-size:53.760000pt;}
.fsb_c00403{font-size:56.320000pt;}
.fsf_c00403{font-size:58.880000pt;}
.fse_c00403{font-size:61.440000pt;}
.fs10_c00403{font-size:66.560000pt;}
.fs0_c00403{font-size:69.120000pt;}
.fsc_c00403{font-size:92.160000pt;}
.y0_c00403{bottom:0.000000pt;}
.y55_c00403{bottom:85.120000pt;}
.y57_c00403{bottom:85.760000pt;}
.y54_c00403{bottom:86.400000pt;}
.y53_c00403{bottom:87.040000pt;}
.y56_c00403{bottom:87.680000pt;}
.y59_c00403{bottom:88.320000pt;}
.y58_c00403{bottom:88.960000pt;}
.y5a_c00403{bottom:89.600000pt;}
.y50_c00403{bottom:124.800000pt;}
.y52_c00403{bottom:125.440000pt;}
.y51_c00403{bottom:126.080000pt;}
.y4f_c00403{bottom:126.720000pt;}
.y4d_c00403{bottom:162.560000pt;}
.y4c_c00403{bottom:165.120000pt;}
.y4e_c00403{bottom:165.760000pt;}
.y4a_c00403{bottom:201.600000pt;}
.y48_c00403{bottom:203.520000pt;}
.y49_c00403{bottom:204.160000pt;}
.y4b_c00403{bottom:204.800000pt;}
.y46_c00403{bottom:239.360000pt;}
.y47_c00403{bottom:241.280000pt;}
.y45_c00403{bottom:241.920000pt;}
.y43_c00403{bottom:278.400000pt;}
.y42_c00403{bottom:280.960000pt;}
.y44_c00403{bottom:281.600000pt;}
.y41_c00403{bottom:317.440000pt;}
.y40_c00403{bottom:318.720000pt;}
.y3f_c00403{bottom:358.400000pt;}
.y3e_c00403{bottom:432.640000pt;}
.y3c_c00403{bottom:433.920000pt;}
.y3b_c00403{bottom:434.560000pt;}
.y3d_c00403{bottom:435.200000pt;}
.y39_c00403{bottom:471.040000pt;}
.y37_c00403{bottom:472.960000pt;}
.y3a_c00403{bottom:473.600000pt;}
.y38_c00403{bottom:474.240000pt;}
.y36_c00403{bottom:519.680000pt;}
.y35_c00403{bottom:520.320000pt;}
.y33_c00403{bottom:535.040000pt;}
.y30_c00403{bottom:535.680000pt;}
.y2f_c00403{bottom:538.880000pt;}
.y2e_c00403{bottom:539.520000pt;}
.y31_c00403{bottom:540.160000pt;}
.y34_c00403{bottom:540.800000pt;}
.y32_c00403{bottom:541.440000pt;}
.y2b_c00403{bottom:567.680000pt;}
.y2a_c00403{bottom:568.320000pt;}
.y2c_c00403{bottom:568.960000pt;}
.y2d_c00403{bottom:569.600000pt;}
.y27_c00403{bottom:596.480000pt;}
.y26_c00403{bottom:597.120000pt;}
.y29_c00403{bottom:598.400000pt;}
.y28_c00403{bottom:599.040000pt;}
.y25_c00403{bottom:625.280000pt;}
.y23_c00403{bottom:625.920000pt;}
.y24_c00403{bottom:626.560000pt;}
.y21_c00403{bottom:627.200000pt;}
.y22_c00403{bottom:627.840000pt;}
.y1e_c00403{bottom:662.400000pt;}
.y1d_c00403{bottom:663.040000pt;}
.y20_c00403{bottom:664.320000pt;}
.y1f_c00403{bottom:665.600000pt;}
.y1c_c00403{bottom:700.160000pt;}
.y1b_c00403{bottom:702.720000pt;}
.y1a_c00403{bottom:703.360000pt;}
.y19_c00403{bottom:704.000000pt;}
.y18_c00403{bottom:739.200000pt;}
.y17_c00403{bottom:742.400000pt;}
.y16_c00403{bottom:778.240000pt;}
.y13_c00403{bottom:780.160000pt;}
.y15_c00403{bottom:780.800000pt;}
.y14_c00403{bottom:781.440000pt;}
.y12_c00403{bottom:816.640000pt;}
.yf_c00403{bottom:817.280000pt;}
.yd_c00403{bottom:817.920000pt;}
.y11_c00403{bottom:818.560000pt;}
.yc_c00403{bottom:819.200000pt;}
.ye_c00403{bottom:819.840000pt;}
.y10_c00403{bottom:823.680000pt;}
.ya_c00403{bottom:855.040000pt;}
.y7_c00403{bottom:856.960000pt;}
.y9_c00403{bottom:857.600000pt;}
.y8_c00403{bottom:858.240000pt;}
.yb_c00403{bottom:859.520000pt;}
.y5_c00403{bottom:895.360000pt;}
.y6_c00403{bottom:896.000000pt;}
.y4_c00403{bottom:934.400000pt;}
.y2_c00403{bottom:935.040000pt;}
.y3_c00403{bottom:935.680000pt;}
.y1_c00403{bottom:997.120000pt;}
.ha_c00403{height:16.126250pt;}
.h14_c00403{height:18.430000pt;}
.hc_c00403{height:27.645000pt;}
.h4_c00403{height:29.948750pt;}
.h7_c00403{height:32.252500pt;}
.hb_c00403{height:34.556250pt;}
.h10_c00403{height:36.860000pt;}
.hd_c00403{height:39.163750pt;}
.h3_c00403{height:41.467500pt;}
.h16_c00403{height:43.258750pt;}
.h6_c00403{height:43.771250pt;}
.h5_c00403{height:46.075000pt;}
.h9_c00403{height:48.378750pt;}
.h15_c00403{height:49.147500pt;}
.he_c00403{height:50.682500pt;}
.h12_c00403{height:52.986250pt;}
.h8_c00403{height:53.498750pt;}
.h11_c00403{height:55.290000pt;}
.h13_c00403{height:59.897500pt;}
.h2_c00403{height:62.201250pt;}
.hf_c00403{height:82.935000pt;}
.h0_c00403{height:1031.040000pt;}
.h1_c00403{height:1031.333333pt;}
.w0_c00403{width:691.840000pt;}
.w1_c00403{width:692.000000pt;}
.x0_c00403{left:0.000000pt;}
.x8_c00403{left:53.760000pt;}
.x20_c00403{left:55.040000pt;}
.x42_c00403{left:56.320000pt;}
.x26_c00403{left:74.880000pt;}
.x43_c00403{left:103.680000pt;}
.x9_c00403{left:111.360000pt;}
.x31_c00403{left:122.880000pt;}
.x34_c00403{left:132.480000pt;}
.x21_c00403{left:140.800000pt;}
.x2_c00403{left:151.680000pt;}
.x27_c00403{left:159.360000pt;}
.x11_c00403{left:170.240000pt;}
.x23_c00403{left:178.560000pt;}
.x3a_c00403{left:188.160000pt;}
.xa_c00403{left:189.440000pt;}
.x12_c00403{left:198.400000pt;}
.x2f_c00403{left:200.320000pt;}
.x17_c00403{left:208.000000pt;}
.x2b_c00403{left:209.280000pt;}
.x28_c00403{left:217.600000pt;}
.x3_c00403{left:228.480000pt;}
.x18_c00403{left:237.440000pt;}
.x4_c00403{left:245.760000pt;}
.x44_c00403{left:247.680000pt;}
.x24_c00403{left:256.640000pt;}
.x30_c00403{left:257.920000pt;}
.x19_c00403{left:266.880000pt;}
.x36_c00403{left:276.480000pt;}
.xb_c00403{left:284.800000pt;}
.x25_c00403{left:286.080000pt;}
.x3b_c00403{left:294.400000pt;}
.x3e_c00403{left:295.680000pt;}
.x13_c00403{left:314.240000pt;}
.x32_c00403{left:321.920000pt;}
.x2c_c00403{left:324.480000pt;}
.x29_c00403{left:333.440000pt;}
.xc_c00403{left:343.680000pt;}
.x14_c00403{left:353.280000pt;}
.xd_c00403{left:362.240000pt;}
.x1a_c00403{left:363.520000pt;}
.x5_c00403{left:372.480000pt;}
.x22_c00403{left:380.800000pt;}
.x2a_c00403{left:382.080000pt;}
.x6_c00403{left:390.400000pt;}
.x2d_c00403{left:391.680000pt;}
.x40_c00403{left:400.640000pt;}
.x1b_c00403{left:408.960000pt;}
.x3c_c00403{left:421.120000pt;}
.x37_c00403{left:429.440000pt;}
.x33_c00403{left:437.120000pt;}
.xe_c00403{left:439.040000pt;}
.x1c_c00403{left:448.640000pt;}
.x38_c00403{left:458.880000pt;}
.xf_c00403{left:478.080000pt;}
.x1d_c00403{left:487.680000pt;}
.x7_c00403{left:496.000000pt;}
.x35_c00403{left:497.280000pt;}
.x2e_c00403{left:506.240000pt;}
.x1e_c00403{left:514.560000pt;}
.x41_c00403{left:516.480000pt;}
.x3f_c00403{left:526.080000pt;}
.x3d_c00403{left:545.280000pt;}
.x39_c00403{left:554.880000pt;}
.x45_c00403{left:556.800000pt;}
.x15_c00403{left:563.840000pt;}
.x46_c00403{left:574.720000pt;}
.x10_c00403{left:583.680000pt;}
.x1f_c00403{left:592.640000pt;}
.x1_c00403{left:602.240000pt;}
.x16_c00403{left:612.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_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_52f3ed9f09057f2f839a1948.woff2')format("woff");}.ff1_c00404{font-family:ff1_c00404;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m30_c00404{transform:matrix(0.193700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193700,0.000000,0.000000,0.250000,0,0);}
.m5b_c00404{transform:matrix(0.220925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220925,0.000000,0.000000,0.250000,0,0);}
.m5_c00404{transform:matrix(0.234825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234825,0.000000,0.000000,0.250000,0,0);}
.m36_c00404{transform:matrix(0.241425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241425,0.000000,0.000000,0.250000,0,0);}
.m2f_c00404{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);}
.m46_c00404{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);}
.m4b_c00404{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);}
.m2e_c00404{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);}
.m54_c00404{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);}
.m39_c00404{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m3_c00404{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00404{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m8_c00404{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m38_c00404{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00404{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m41_c00404{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00404{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00404{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mf_c00404{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m34_c00404{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00404{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00404{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m56_c00404{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1_c00404{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.me_c00404{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m16_c00404{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);}
.m53_c00404{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00404{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m23_c00404{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.md_c00404{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);}
.m48_c00404{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00404{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);}
.m1a_c00404{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m13_c00404{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m0_c00404{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);}
.m37_c00404{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m19_c00404{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);}
.m45_c00404{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);}
.m1c_c00404{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);}
.m22_c00404{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);}
.m2c_c00404{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00404{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m11_c00404{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);}
.m21_c00404{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m42_c00404{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m18_c00404{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00404{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);}
.m59_c00404{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m24_c00404{transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00404{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);}
.m28_c00404{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m20_c00404{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m32_c00404{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m12_c00404{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m57_c00404{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);}
.m6_c00404{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);}
.m29_c00404{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.ma_c00404{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00404{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m9_c00404{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m49_c00404{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);}
.m43_c00404{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m44_c00404{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m35_c00404{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.mc_c00404{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);}
.m27_c00404{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m58_c00404{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m10_c00404{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m4_c00404{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m52_c00404{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00404{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m26_c00404{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m31_c00404{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);}
.mb_c00404{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m55_c00404{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m15_c00404{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00404{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m7_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);}
.m33_c00404{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00404{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00404{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);}
.m4d_c00404{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m25_c00404{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m2_c00404{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);}
.m40_c00404{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);}
.m14_c00404{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m17_c00404{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m47_c00404{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00404{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m51_c00404{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);}
.m50_c00404{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);}
.m4e_c00404{transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00404{transform:matrix(0.942500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.942500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.942500,0.000000,0.000000,0.250000,0,0);}
.v0_c00404{vertical-align:0.000000px;}
.ls0_c00404{letter-spacing:0.000000px;}
.sc__c00404{text-shadow:none;}
.sc0_c00404{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00404{-webkit-text-stroke:0px transparent;}
.sc0_c00404{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00404{word-spacing:0.000000px;}
.fc0_c00404{color:transparent;}
.fs10_c00404{font-size:20.160000px;}
.fsd_c00404{font-size:34.560000px;}
.fs2_c00404{font-size:37.440000px;}
.fsa_c00404{font-size:40.320000px;}
.fsb_c00404{font-size:43.200000px;}
.fs3_c00404{font-size:46.080000px;}
.fs6_c00404{font-size:48.960000px;}
.fs1_c00404{font-size:51.840000px;}
.fs5_c00404{font-size:54.720000px;}
.fs7_c00404{font-size:57.600000px;}
.fs4_c00404{font-size:60.480000px;}
.fs9_c00404{font-size:63.360000px;}
.fs8_c00404{font-size:66.240000px;}
.fse_c00404{font-size:69.120000px;}
.fsc_c00404{font-size:72.000000px;}
.fs0_c00404{font-size:74.880000px;}
.fsf_c00404{font-size:77.760000px;}
.y0_c00404{bottom:0.000000px;}
.y6f_c00404{bottom:117.360000px;}
.y70_c00404{bottom:118.080000px;}
.y72_c00404{bottom:118.800000px;}
.y6e_c00404{bottom:119.520000px;}
.y6d_c00404{bottom:120.240000px;}
.y71_c00404{bottom:120.960000px;}
.y6c_c00404{bottom:121.680000px;}
.y6b_c00404{bottom:162.000000px;}
.y6a_c00404{bottom:163.440000px;}
.y69_c00404{bottom:164.160000px;}
.y68_c00404{bottom:165.600000px;}
.y64_c00404{bottom:204.480000px;}
.y65_c00404{bottom:205.920000px;}
.y66_c00404{bottom:207.360000px;}
.y67_c00404{bottom:208.080000px;}
.y63_c00404{bottom:208.800000px;}
.y61_c00404{bottom:247.680000px;}
.y5f_c00404{bottom:249.120000px;}
.y5e_c00404{bottom:249.840000px;}
.y60_c00404{bottom:250.560000px;}
.y62_c00404{bottom:251.280000px;}
.y5a_c00404{bottom:291.600000px;}
.y5d_c00404{bottom:292.320000px;}
.y5c_c00404{bottom:293.040000px;}
.y5b_c00404{bottom:293.760000px;}
.y54_c00404{bottom:334.800000px;}
.y57_c00404{bottom:335.520000px;}
.y56_c00404{bottom:336.240000px;}
.y55_c00404{bottom:336.960000px;}
.y58_c00404{bottom:337.680000px;}
.y53_c00404{bottom:339.120000px;}
.y59_c00404{bottom:340.560000px;}
.y50_c00404{bottom:376.560000px;}
.y4f_c00404{bottom:378.000000px;}
.y51_c00404{bottom:379.440000px;}
.y52_c00404{bottom:380.160000px;}
.y4e_c00404{bottom:380.880000px;}
.y4c_c00404{bottom:420.480000px;}
.y4d_c00404{bottom:421.200000px;}
.y49_c00404{bottom:421.920000px;}
.y4a_c00404{bottom:422.640000px;}
.y4b_c00404{bottom:423.360000px;}
.y48_c00404{bottom:463.680000px;}
.y47_c00404{bottom:465.840000px;}
.y46_c00404{bottom:466.560000px;}
.y45_c00404{bottom:467.280000px;}
.y44_c00404{bottom:518.400000px;}
.y43_c00404{bottom:519.840000px;}
.y42_c00404{bottom:520.560000px;}
.y3f_c00404{bottom:560.880000px;}
.y3d_c00404{bottom:561.600000px;}
.y41_c00404{bottom:563.040000px;}
.y40_c00404{bottom:563.760000px;}
.y3e_c00404{bottom:564.480000px;}
.y3b_c00404{bottom:604.800000px;}
.y38_c00404{bottom:605.520000px;}
.y3c_c00404{bottom:606.240000px;}
.y3a_c00404{bottom:606.960000px;}
.y39_c00404{bottom:607.680000px;}
.y37_c00404{bottom:608.400000px;}
.y32_c00404{bottom:648.000000px;}
.y33_c00404{bottom:648.720000px;}
.y36_c00404{bottom:649.440000px;}
.y34_c00404{bottom:650.160000px;}
.y35_c00404{bottom:650.880000px;}
.y2f_c00404{bottom:690.480000px;}
.y2d_c00404{bottom:691.200000px;}
.y2c_c00404{bottom:691.920000px;}
.y30_c00404{bottom:693.360000px;}
.y31_c00404{bottom:694.080000px;}
.y2e_c00404{bottom:694.800000px;}
.y29_c00404{bottom:733.680000px;}
.y2a_c00404{bottom:734.400000px;}
.y26_c00404{bottom:735.840000px;}
.y2b_c00404{bottom:736.560000px;}
.y28_c00404{bottom:737.280000px;}
.y25_c00404{bottom:738.000000px;}
.y27_c00404{bottom:738.720000px;}
.y23_c00404{bottom:776.880000px;}
.y24_c00404{bottom:777.600000px;}
.y22_c00404{bottom:779.040000px;}
.y1f_c00404{bottom:780.480000px;}
.y21_c00404{bottom:781.200000px;}
.y20_c00404{bottom:781.920000px;}
.y1c_c00404{bottom:820.080000px;}
.y1e_c00404{bottom:822.960000px;}
.y1a_c00404{bottom:823.680000px;}
.y1b_c00404{bottom:824.400000px;}
.y1d_c00404{bottom:825.120000px;}
.y19_c00404{bottom:864.000000px;}
.y17_c00404{bottom:865.440000px;}
.y18_c00404{bottom:866.160000px;}
.y15_c00404{bottom:866.880000px;}
.y16_c00404{bottom:867.600000px;}
.y13_c00404{bottom:906.480000px;}
.y14_c00404{bottom:907.200000px;}
.y11_c00404{bottom:907.920000px;}
.y12_c00404{bottom:909.360000px;}
.y10_c00404{bottom:910.800000px;}
.yf_c00404{bottom:960.480000px;}
.ye_c00404{bottom:963.360000px;}
.yc_c00404{bottom:964.080000px;}
.yd_c00404{bottom:964.800000px;}
.yb_c00404{bottom:1004.400000px;}
.y8_c00404{bottom:1006.560000px;}
.y9_c00404{bottom:1007.280000px;}
.ya_c00404{bottom:1008.000000px;}
.y7_c00404{bottom:1046.160000px;}
.y5_c00404{bottom:1047.600000px;}
.y4_c00404{bottom:1049.040000px;}
.y6_c00404{bottom:1049.760000px;}
.y2_c00404{bottom:1050.480000px;}
.y3_c00404{bottom:1051.200000px;}
.y1_c00404{bottom:1109.520000px;}
.h12_c00404{height:18.142031px;}
.hf_c00404{height:31.100625px;}
.h4_c00404{height:33.692344px;}
.hc_c00404{height:36.284062px;}
.hd_c00404{height:38.875781px;}
.h5_c00404{height:41.467500px;}
.h8_c00404{height:44.059219px;}
.h3_c00404{height:46.650937px;}
.h7_c00404{height:49.242656px;}
.h9_c00404{height:51.834375px;}
.h6_c00404{height:54.426094px;}
.hb_c00404{height:57.017812px;}
.ha_c00404{height:59.609531px;}
.h10_c00404{height:62.201250px;}
.he_c00404{height:64.792969px;}
.h2_c00404{height:67.384687px;}
.h11_c00404{height:69.976406px;}
.h0_c00404{height:1157.760000px;}
.h1_c00404{height:1158.000000px;}
.w0_c00404{width:775.440000px;}
.w1_c00404{width:775.500000px;}
.x0_c00404{left:0.000000px;}
.x2_c00404{left:58.320000px;}
.xe_c00404{left:59.760000px;}
.x4d_c00404{left:90.720000px;}
.xf_c00404{left:92.160000px;}
.x57_c00404{left:100.080000px;}
.x33_c00404{left:101.520000px;}
.x18_c00404{left:113.760000px;}
.x3_c00404{left:123.120000px;}
.x10_c00404{left:124.560000px;}
.x39_c00404{left:133.920000px;}
.x55_c00404{left:144.720000px;}
.x49_c00404{left:155.520000px;}
.x24_c00404{left:156.960000px;}
.x58_c00404{left:164.880000px;}
.x2e_c00404{left:167.040000px;}
.x1e_c00404{left:168.480000px;}
.x34_c00404{left:177.840000px;}
.x2a_c00404{left:187.920000px;}
.x19_c00404{left:189.360000px;}
.x52_c00404{left:198.720000px;}
.x3a_c00404{left:200.160000px;}
.x35_c00404{left:210.240000px;}
.x4_c00404{left:211.680000px;}
.x4a_c00404{left:220.320000px;}
.x1a_c00404{left:221.760000px;}
.x40_c00404{left:231.120000px;}
.x5_c00404{left:242.640000px;}
.x11_c00404{left:244.080000px;}
.x2f_c00404{left:253.440000px;}
.x1b_c00404{left:254.880000px;}
.x25_c00404{left:264.240000px;}
.x6_c00404{left:265.680000px;}
.x12_c00404{left:276.480000px;}
.x30_c00404{left:285.840000px;}
.x4e_c00404{left:287.280000px;}
.x7_c00404{left:297.360000px;}
.x42_c00404{left:307.440000px;}
.x59_c00404{left:317.520000px;}
.x13_c00404{left:319.680000px;}
.x2b_c00404{left:329.040000px;}
.x1f_c00404{left:330.480000px;}
.x3b_c00404{left:339.120000px;}
.x8_c00404{left:340.560000px;}
.x53_c00404{left:349.920000px;}
.x41_c00404{left:351.360000px;}
.x20_c00404{left:362.160000px;}
.x9_c00404{left:372.960000px;}
.x36_c00404{left:383.040000px;}
.x31_c00404{left:393.840000px;}
.x3c_c00404{left:395.280000px;}
.x5a_c00404{left:403.920000px;}
.x1c_c00404{left:406.080000px;}
.x14_c00404{left:415.440000px;}
.x26_c00404{left:416.880000px;}
.x32_c00404{left:426.240000px;}
.xa_c00404{left:437.040000px;}
.x37_c00404{left:440.640000px;}
.x4f_c00404{left:447.120000px;}
.x56_c00404{left:448.560000px;}
.x45_c00404{left:457.920000px;}
.x21_c00404{left:460.080000px;}
.x1d_c00404{left:470.160000px;}
.x50_c00404{left:479.520000px;}
.x15_c00404{left:481.680000px;}
.x5b_c00404{left:489.600000px;}
.x2c_c00404{left:491.040000px;}
.x46_c00404{left:501.120000px;}
.x3d_c00404{left:502.560000px;}
.x54_c00404{left:511.200000px;}
.x27_c00404{left:513.360000px;}
.x3e_c00404{left:523.440000px;}
.x4b_c00404{left:524.880000px;}
.x47_c00404{left:533.520000px;}
.x51_c00404{left:544.320000px;}
.xb_c00404{left:546.480000px;}
.x38_c00404{left:557.280000px;}
.x22_c00404{left:567.360000px;}
.x16_c00404{left:578.880000px;}
.x28_c00404{left:588.240000px;}
.x43_c00404{left:599.760000px;}
.x2d_c00404{left:610.560000px;}
.x17_c00404{left:612.000000px;}
.x4c_c00404{left:619.920000px;}
.x48_c00404{left:621.360000px;}
.x44_c00404{left:631.440000px;}
.xc_c00404{left:632.880000px;}
.x23_c00404{left:642.960000px;}
.x29_c00404{left:655.200000px;}
.xd_c00404{left:665.280000px;}
.x3f_c00404{left:676.080000px;}
.x1_c00404{left:686.160000px;}
@media print{
.v0_c00404{vertical-align:0.000000pt;}
.ls0_c00404{letter-spacing:0.000000pt;}
.ws0_c00404{word-spacing:0.000000pt;}
.fs10_c00404{font-size:17.920000pt;}
.fsd_c00404{font-size:30.720000pt;}
.fs2_c00404{font-size:33.280000pt;}
.fsa_c00404{font-size:35.840000pt;}
.fsb_c00404{font-size:38.400000pt;}
.fs3_c00404{font-size:40.960000pt;}
.fs6_c00404{font-size:43.520000pt;}
.fs1_c00404{font-size:46.080000pt;}
.fs5_c00404{font-size:48.640000pt;}
.fs7_c00404{font-size:51.200000pt;}
.fs4_c00404{font-size:53.760000pt;}
.fs9_c00404{font-size:56.320000pt;}
.fs8_c00404{font-size:58.880000pt;}
.fse_c00404{font-size:61.440000pt;}
.fsc_c00404{font-size:64.000000pt;}
.fs0_c00404{font-size:66.560000pt;}
.fsf_c00404{font-size:69.120000pt;}
.y0_c00404{bottom:0.000000pt;}
.y6f_c00404{bottom:104.320000pt;}
.y70_c00404{bottom:104.960000pt;}
.y72_c00404{bottom:105.600000pt;}
.y6e_c00404{bottom:106.240000pt;}
.y6d_c00404{bottom:106.880000pt;}
.y71_c00404{bottom:107.520000pt;}
.y6c_c00404{bottom:108.160000pt;}
.y6b_c00404{bottom:144.000000pt;}
.y6a_c00404{bottom:145.280000pt;}
.y69_c00404{bottom:145.920000pt;}
.y68_c00404{bottom:147.200000pt;}
.y64_c00404{bottom:181.760000pt;}
.y65_c00404{bottom:183.040000pt;}
.y66_c00404{bottom:184.320000pt;}
.y67_c00404{bottom:184.960000pt;}
.y63_c00404{bottom:185.600000pt;}
.y61_c00404{bottom:220.160000pt;}
.y5f_c00404{bottom:221.440000pt;}
.y5e_c00404{bottom:222.080000pt;}
.y60_c00404{bottom:222.720000pt;}
.y62_c00404{bottom:223.360000pt;}
.y5a_c00404{bottom:259.200000pt;}
.y5d_c00404{bottom:259.840000pt;}
.y5c_c00404{bottom:260.480000pt;}
.y5b_c00404{bottom:261.120000pt;}
.y54_c00404{bottom:297.600000pt;}
.y57_c00404{bottom:298.240000pt;}
.y56_c00404{bottom:298.880000pt;}
.y55_c00404{bottom:299.520000pt;}
.y58_c00404{bottom:300.160000pt;}
.y53_c00404{bottom:301.440000pt;}
.y59_c00404{bottom:302.720000pt;}
.y50_c00404{bottom:334.720000pt;}
.y4f_c00404{bottom:336.000000pt;}
.y51_c00404{bottom:337.280000pt;}
.y52_c00404{bottom:337.920000pt;}
.y4e_c00404{bottom:338.560000pt;}
.y4c_c00404{bottom:373.760000pt;}
.y4d_c00404{bottom:374.400000pt;}
.y49_c00404{bottom:375.040000pt;}
.y4a_c00404{bottom:375.680000pt;}
.y4b_c00404{bottom:376.320000pt;}
.y48_c00404{bottom:412.160000pt;}
.y47_c00404{bottom:414.080000pt;}
.y46_c00404{bottom:414.720000pt;}
.y45_c00404{bottom:415.360000pt;}
.y44_c00404{bottom:460.800000pt;}
.y43_c00404{bottom:462.080000pt;}
.y42_c00404{bottom:462.720000pt;}
.y3f_c00404{bottom:498.560000pt;}
.y3d_c00404{bottom:499.200000pt;}
.y41_c00404{bottom:500.480000pt;}
.y40_c00404{bottom:501.120000pt;}
.y3e_c00404{bottom:501.760000pt;}
.y3b_c00404{bottom:537.600000pt;}
.y38_c00404{bottom:538.240000pt;}
.y3c_c00404{bottom:538.880000pt;}
.y3a_c00404{bottom:539.520000pt;}
.y39_c00404{bottom:540.160000pt;}
.y37_c00404{bottom:540.800000pt;}
.y32_c00404{bottom:576.000000pt;}
.y33_c00404{bottom:576.640000pt;}
.y36_c00404{bottom:577.280000pt;}
.y34_c00404{bottom:577.920000pt;}
.y35_c00404{bottom:578.560000pt;}
.y2f_c00404{bottom:613.760000pt;}
.y2d_c00404{bottom:614.400000pt;}
.y2c_c00404{bottom:615.040000pt;}
.y30_c00404{bottom:616.320000pt;}
.y31_c00404{bottom:616.960000pt;}
.y2e_c00404{bottom:617.600000pt;}
.y29_c00404{bottom:652.160000pt;}
.y2a_c00404{bottom:652.800000pt;}
.y26_c00404{bottom:654.080000pt;}
.y2b_c00404{bottom:654.720000pt;}
.y28_c00404{bottom:655.360000pt;}
.y25_c00404{bottom:656.000000pt;}
.y27_c00404{bottom:656.640000pt;}
.y23_c00404{bottom:690.560000pt;}
.y24_c00404{bottom:691.200000pt;}
.y22_c00404{bottom:692.480000pt;}
.y1f_c00404{bottom:693.760000pt;}
.y21_c00404{bottom:694.400000pt;}
.y20_c00404{bottom:695.040000pt;}
.y1c_c00404{bottom:728.960000pt;}
.y1e_c00404{bottom:731.520000pt;}
.y1a_c00404{bottom:732.160000pt;}
.y1b_c00404{bottom:732.800000pt;}
.y1d_c00404{bottom:733.440000pt;}
.y19_c00404{bottom:768.000000pt;}
.y17_c00404{bottom:769.280000pt;}
.y18_c00404{bottom:769.920000pt;}
.y15_c00404{bottom:770.560000pt;}
.y16_c00404{bottom:771.200000pt;}
.y13_c00404{bottom:805.760000pt;}
.y14_c00404{bottom:806.400000pt;}
.y11_c00404{bottom:807.040000pt;}
.y12_c00404{bottom:808.320000pt;}
.y10_c00404{bottom:809.600000pt;}
.yf_c00404{bottom:853.760000pt;}
.ye_c00404{bottom:856.320000pt;}
.yc_c00404{bottom:856.960000pt;}
.yd_c00404{bottom:857.600000pt;}
.yb_c00404{bottom:892.800000pt;}
.y8_c00404{bottom:894.720000pt;}
.y9_c00404{bottom:895.360000pt;}
.ya_c00404{bottom:896.000000pt;}
.y7_c00404{bottom:929.920000pt;}
.y5_c00404{bottom:931.200000pt;}
.y4_c00404{bottom:932.480000pt;}
.y6_c00404{bottom:933.120000pt;}
.y2_c00404{bottom:933.760000pt;}
.y3_c00404{bottom:934.400000pt;}
.y1_c00404{bottom:986.240000pt;}
.h12_c00404{height:16.126250pt;}
.hf_c00404{height:27.645000pt;}
.h4_c00404{height:29.948750pt;}
.hc_c00404{height:32.252500pt;}
.hd_c00404{height:34.556250pt;}
.h5_c00404{height:36.860000pt;}
.h8_c00404{height:39.163750pt;}
.h3_c00404{height:41.467500pt;}
.h7_c00404{height:43.771250pt;}
.h9_c00404{height:46.075000pt;}
.h6_c00404{height:48.378750pt;}
.hb_c00404{height:50.682500pt;}
.ha_c00404{height:52.986250pt;}
.h10_c00404{height:55.290000pt;}
.he_c00404{height:57.593750pt;}
.h2_c00404{height:59.897500pt;}
.h11_c00404{height:62.201250pt;}
.h0_c00404{height:1029.120000pt;}
.h1_c00404{height:1029.333333pt;}
.w0_c00404{width:689.280000pt;}
.w1_c00404{width:689.333333pt;}
.x0_c00404{left:0.000000pt;}
.x2_c00404{left:51.840000pt;}
.xe_c00404{left:53.120000pt;}
.x4d_c00404{left:80.640000pt;}
.xf_c00404{left:81.920000pt;}
.x57_c00404{left:88.960000pt;}
.x33_c00404{left:90.240000pt;}
.x18_c00404{left:101.120000pt;}
.x3_c00404{left:109.440000pt;}
.x10_c00404{left:110.720000pt;}
.x39_c00404{left:119.040000pt;}
.x55_c00404{left:128.640000pt;}
.x49_c00404{left:138.240000pt;}
.x24_c00404{left:139.520000pt;}
.x58_c00404{left:146.560000pt;}
.x2e_c00404{left:148.480000pt;}
.x1e_c00404{left:149.760000pt;}
.x34_c00404{left:158.080000pt;}
.x2a_c00404{left:167.040000pt;}
.x19_c00404{left:168.320000pt;}
.x52_c00404{left:176.640000pt;}
.x3a_c00404{left:177.920000pt;}
.x35_c00404{left:186.880000pt;}
.x4_c00404{left:188.160000pt;}
.x4a_c00404{left:195.840000pt;}
.x1a_c00404{left:197.120000pt;}
.x40_c00404{left:205.440000pt;}
.x5_c00404{left:215.680000pt;}
.x11_c00404{left:216.960000pt;}
.x2f_c00404{left:225.280000pt;}
.x1b_c00404{left:226.560000pt;}
.x25_c00404{left:234.880000pt;}
.x6_c00404{left:236.160000pt;}
.x12_c00404{left:245.760000pt;}
.x30_c00404{left:254.080000pt;}
.x4e_c00404{left:255.360000pt;}
.x7_c00404{left:264.320000pt;}
.x42_c00404{left:273.280000pt;}
.x59_c00404{left:282.240000pt;}
.x13_c00404{left:284.160000pt;}
.x2b_c00404{left:292.480000pt;}
.x1f_c00404{left:293.760000pt;}
.x3b_c00404{left:301.440000pt;}
.x8_c00404{left:302.720000pt;}
.x53_c00404{left:311.040000pt;}
.x41_c00404{left:312.320000pt;}
.x20_c00404{left:321.920000pt;}
.x9_c00404{left:331.520000pt;}
.x36_c00404{left:340.480000pt;}
.x31_c00404{left:350.080000pt;}
.x3c_c00404{left:351.360000pt;}
.x5a_c00404{left:359.040000pt;}
.x1c_c00404{left:360.960000pt;}
.x14_c00404{left:369.280000pt;}
.x26_c00404{left:370.560000pt;}
.x32_c00404{left:378.880000pt;}
.xa_c00404{left:388.480000pt;}
.x37_c00404{left:391.680000pt;}
.x4f_c00404{left:397.440000pt;}
.x56_c00404{left:398.720000pt;}
.x45_c00404{left:407.040000pt;}
.x21_c00404{left:408.960000pt;}
.x1d_c00404{left:417.920000pt;}
.x50_c00404{left:426.240000pt;}
.x15_c00404{left:428.160000pt;}
.x5b_c00404{left:435.200000pt;}
.x2c_c00404{left:436.480000pt;}
.x46_c00404{left:445.440000pt;}
.x3d_c00404{left:446.720000pt;}
.x54_c00404{left:454.400000pt;}
.x27_c00404{left:456.320000pt;}
.x3e_c00404{left:465.280000pt;}
.x4b_c00404{left:466.560000pt;}
.x47_c00404{left:474.240000pt;}
.x51_c00404{left:483.840000pt;}
.xb_c00404{left:485.760000pt;}
.x38_c00404{left:495.360000pt;}
.x22_c00404{left:504.320000pt;}
.x16_c00404{left:514.560000pt;}
.x28_c00404{left:522.880000pt;}
.x43_c00404{left:533.120000pt;}
.x2d_c00404{left:542.720000pt;}
.x17_c00404{left:544.000000pt;}
.x4c_c00404{left:551.040000pt;}
.x48_c00404{left:552.320000pt;}
.x44_c00404{left:561.280000pt;}
.xc_c00404{left:562.560000pt;}
.x23_c00404{left:571.520000pt;}
.x29_c00404{left:582.400000pt;}
.xd_c00404{left:591.360000pt;}
.x3f_c00404{left:600.960000pt;}
.x1_c00404{left:609.920000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_59e2052142e2d348928248d6.woff2')format("woff");}.ff1_c00405{font-family:ff1_c00405;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m37_c00405{transform:matrix(0.195025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195025,0.000000,0.000000,0.250000,0,0);}
.m43_c00405{transform:matrix(0.204475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204475,0.000000,0.000000,0.250000,0,0);}
.m24_c00405{transform:matrix(0.207225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207225,0.000000,0.000000,0.250000,0,0);}
.m5_c00405{transform:matrix(0.210900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210900,0.000000,0.000000,0.250000,0,0);}
.me_c00405{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m16_c00405{transform:matrix(0.218725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218725,0.000000,0.000000,0.250000,0,0);}
.m46_c00405{transform:matrix(0.221050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221050,0.000000,0.000000,0.250000,0,0);}
.m13_c00405{transform:matrix(0.221150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221150,0.000000,0.000000,0.250000,0,0);}
.m14_c00405{transform:matrix(0.225100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225100,0.000000,0.000000,0.250000,0,0);}
.m31_c00405{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);}
.ma_c00405{transform:matrix(0.226525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226525,0.000000,0.000000,0.250000,0,0);}
.m48_c00405{transform:matrix(0.230025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230025,0.000000,0.000000,0.250000,0,0);}
.m8_c00405{transform:matrix(0.233425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233425,0.000000,0.000000,0.250000,0,0);}
.m44_c00405{transform:matrix(0.235550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235550,0.000000,0.000000,0.250000,0,0);}
.m5f_c00405{transform:matrix(0.239250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239250,0.000000,0.000000,0.250000,0,0);}
.m35_c00405{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);}
.m59_c00405{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m6_c00405{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);}
.m32_c00405{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);}
.m5e_c00405{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m56_c00405{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mb_c00405{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m23_c00405{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.md_c00405{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);}
.m2e_c00405{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m15_c00405{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m3b_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);}
.m47_c00405{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m36_c00405{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m22_c00405{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m17_c00405{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m12_c00405{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m9_c00405{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m40_c00405{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00405{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m10_c00405{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1_c00405{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00405{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m4_c00405{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m7_c00405{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m3_c00405{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00405{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m0_c00405{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);}
.m3f_c00405{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m53_c00405{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00405{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.mc_c00405{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00405{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m19_c00405{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m61_c00405{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);}
.m2a_c00405{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m2_c00405{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.mf_c00405{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m21_c00405{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m11_c00405{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);}
.m2b_c00405{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m42_c00405{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);}
.m3e_c00405{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m38_c00405{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);}
.m5c_c00405{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);}
.m41_c00405{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);}
.m33_c00405{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00405{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00405{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00405{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);}
.m4a_c00405{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00405{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);}
.m26_c00405{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);}
.m30_c00405{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00405{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m18_c00405{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m27_c00405{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);}
.m52_c00405{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00405{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00405{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);}
.m28_c00405{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m54_c00405{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00405{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);}
.m57_c00405{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m60_c00405{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00405{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);}
.m3d_c00405{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m25_c00405{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00405{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00405{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);}
.m49_c00405{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m50_c00405{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00405{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m20_c00405{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m55_c00405{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m34_c00405{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_c00405{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m51_c00405{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m29_c00405{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);}
.m5b_c00405{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m39_c00405{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m58_c00405{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);}
.m45_c00405{transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);}
.m62_c00405{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);}
.v3_c00405{vertical-align:-20.160000px;}
.v2_c00405{vertical-align:-2.880000px;}
.v0_c00405{vertical-align:0.000000px;}
.v1_c00405{vertical-align:2.880000px;}
.ls0_c00405{letter-spacing:0.000000px;}
.sc__c00405{text-shadow:none;}
.sc0_c00405{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00405{-webkit-text-stroke:0px transparent;}
.sc0_c00405{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00405{word-spacing:0.000000px;}
.ws2_c00405{word-spacing:0.629520px;}
.ws1_c00405{word-spacing:7.178880px;}
.ws0_c00405{word-spacing:247.346400px;}
.fc0_c00405{color:transparent;}
.fs10_c00405{font-size:23.040000px;}
.fs15_c00405{font-size:34.560000px;}
.fsa_c00405{font-size:37.440000px;}
.fsb_c00405{font-size:40.320000px;}
.fs13_c00405{font-size:43.200000px;}
.fs4_c00405{font-size:46.080000px;}
.fs7_c00405{font-size:48.960000px;}
.fs6_c00405{font-size:51.840000px;}
.fsd_c00405{font-size:54.720000px;}
.fse_c00405{font-size:57.600000px;}
.fs3_c00405{font-size:60.480000px;}
.fs2_c00405{font-size:63.360000px;}
.fsc_c00405{font-size:66.240000px;}
.fs1_c00405{font-size:69.120000px;}
.fs11_c00405{font-size:72.000000px;}
.fs14_c00405{font-size:74.880000px;}
.fs0_c00405{font-size:77.760000px;}
.fs12_c00405{font-size:86.400000px;}
.fsf_c00405{font-size:95.040000px;}
.fs8_c00405{font-size:103.680000px;}
.fs5_c00405{font-size:106.560000px;}
.fs9_c00405{font-size:109.440000px;}
.y0_c00405{bottom:0.000000px;}
.y5d_c00405{bottom:34.560000px;}
.y5e_c00405{bottom:35.280000px;}
.y5f_c00405{bottom:37.440000px;}
.y5c_c00405{bottom:38.160000px;}
.y60_c00405{bottom:38.880000px;}
.y5a_c00405{bottom:77.760000px;}
.y58_c00405{bottom:78.480000px;}
.y56_c00405{bottom:79.920000px;}
.y59_c00405{bottom:80.640000px;}
.y57_c00405{bottom:81.360000px;}
.y5b_c00405{bottom:82.080000px;}
.y50_c00405{bottom:120.240000px;}
.y51_c00405{bottom:120.960000px;}
.y55_c00405{bottom:121.680000px;}
.y52_c00405{bottom:123.120000px;}
.y4f_c00405{bottom:123.840000px;}
.y53_c00405{bottom:124.560000px;}
.y54_c00405{bottom:125.280000px;}
.y4e_c00405{bottom:126.000000px;}
.y49_c00405{bottom:163.440000px;}
.y4a_c00405{bottom:164.160000px;}
.y4b_c00405{bottom:165.600000px;}
.y48_c00405{bottom:167.040000px;}
.y4c_c00405{bottom:167.760000px;}
.y4d_c00405{bottom:168.480000px;}
.y45_c00405{bottom:252.720000px;}
.y46_c00405{bottom:253.440000px;}
.y47_c00405{bottom:254.160000px;}
.y44_c00405{bottom:254.880000px;}
.y40_c00405{bottom:336.240000px;}
.y43_c00405{bottom:338.400000px;}
.y41_c00405{bottom:339.840000px;}
.y42_c00405{bottom:340.560000px;}
.y3e_c00405{bottom:424.080000px;}
.y3f_c00405{bottom:425.520000px;}
.y3c_c00405{bottom:426.240000px;}
.y3d_c00405{bottom:426.960000px;}
.y39_c00405{bottom:466.560000px;}
.y38_c00405{bottom:467.280000px;}
.y3b_c00405{bottom:469.440000px;}
.y3a_c00405{bottom:470.160000px;}
.y32_c00405{bottom:510.480000px;}
.y34_c00405{bottom:511.200000px;}
.y37_c00405{bottom:511.920000px;}
.y35_c00405{bottom:512.640000px;}
.y33_c00405{bottom:513.360000px;}
.y36_c00405{bottom:516.240000px;}
.y31_c00405{bottom:553.680000px;}
.y2e_c00405{bottom:554.400000px;}
.y30_c00405{bottom:555.840000px;}
.y2f_c00405{bottom:556.560000px;}
.y29_c00405{bottom:682.560000px;}
.y2d_c00405{bottom:683.280000px;}
.y2b_c00405{bottom:684.000000px;}
.y2a_c00405{bottom:684.720000px;}
.y2c_c00405{bottom:686.160000px;}
.y28_c00405{bottom:686.880000px;}
.y26_c00405{bottom:726.480000px;}
.y24_c00405{bottom:727.200000px;}
.y25_c00405{bottom:727.920000px;}
.y27_c00405{bottom:728.640000px;}
.y22_c00405{bottom:729.360000px;}
.y23_c00405{bottom:730.080000px;}
.y21_c00405{bottom:770.400000px;}
.y1f_c00405{bottom:771.840000px;}
.y20_c00405{bottom:772.560000px;}
.y1c_c00405{bottom:812.160000px;}
.y1e_c00405{bottom:812.880000px;}
.y1b_c00405{bottom:813.600000px;}
.y1a_c00405{bottom:814.320000px;}
.y1d_c00405{bottom:815.040000px;}
.y17_c00405{bottom:856.080000px;}
.y19_c00405{bottom:857.520000px;}
.y18_c00405{bottom:858.240000px;}
.y16_c00405{bottom:858.960000px;}
.y15_c00405{bottom:908.640000px;}
.y13_c00405{bottom:909.360000px;}
.y10_c00405{bottom:910.800000px;}
.y14_c00405{bottom:912.240000px;}
.y12_c00405{bottom:912.960000px;}
.y11_c00405{bottom:913.680000px;}
.yf_c00405{bottom:962.640000px;}
.yd_c00405{bottom:963.360000px;}
.y9_c00405{bottom:964.080000px;}
.yb_c00405{bottom:964.800000px;}
.ye_c00405{bottom:966.240000px;}
.ya_c00405{bottom:966.960000px;}
.yc_c00405{bottom:967.680000px;}
.y7_c00405{bottom:1017.360000px;}
.y3_c00405{bottom:1018.080000px;}
.y4_c00405{bottom:1018.800000px;}
.y8_c00405{bottom:1020.240000px;}
.y6_c00405{bottom:1020.960000px;}
.y5_c00405{bottom:1021.680000px;}
.y2_c00405{bottom:1040.400000px;}
.y1_c00405{bottom:1112.400000px;}
.h12_c00405{height:20.733750px;}
.h18_c00405{height:31.100625px;}
.hc_c00405{height:33.692344px;}
.hd_c00405{height:36.284062px;}
.h16_c00405{height:38.875781px;}
.h6_c00405{height:41.467500px;}
.h9_c00405{height:44.059219px;}
.h8_c00405{height:46.650937px;}
.hf_c00405{height:49.242656px;}
.h10_c00405{height:51.834375px;}
.h5_c00405{height:54.426094px;}
.h4_c00405{height:57.017812px;}
.h13_c00405{height:59.321250px;}
.he_c00405{height:59.609531px;}
.h3_c00405{height:62.201250px;}
.h14_c00405{height:64.792969px;}
.h17_c00405{height:67.384687px;}
.h2_c00405{height:69.976406px;}
.h15_c00405{height:77.751563px;}
.h11_c00405{height:85.526719px;}
.ha_c00405{height:93.301875px;}
.h7_c00405{height:95.893594px;}
.hb_c00405{height:98.485312px;}
.h0_c00405{height:1159.200000px;}
.h1_c00405{height:1159.500000px;}
.w0_c00405{width:777.600000px;}
.w1_c00405{width:777.750000px;}
.x0_c00405{left:0.000000px;}
.x2_c00405{left:57.600000px;}
.x3b_c00405{left:59.760000px;}
.x4a_c00405{left:61.200000px;}
.x27_c00405{left:90.000000px;}
.x21_c00405{left:92.160000px;}
.x3_c00405{left:101.520000px;}
.x47_c00405{left:113.040000px;}
.x2c_c00405{left:114.480000px;}
.x1e_c00405{left:122.400000px;}
.x32_c00405{left:133.920000px;}
.x37_c00405{left:144.720000px;}
.x17_c00405{left:154.800000px;}
.x11_c00405{left:166.320000px;}
.x22_c00405{left:177.120000px;}
.x4_c00405{left:187.920000px;}
.x12_c00405{left:198.000000px;}
.x2f_c00405{left:220.320000px;}
.x5_c00405{left:231.120000px;}
.x33_c00405{left:252.720000px;}
.x28_c00405{left:261.360000px;}
.x13_c00405{left:263.520000px;}
.x23_c00405{left:273.600000px;}
.x6_c00405{left:275.040000px;}
.x30_c00405{left:285.840000px;}
.x14_c00405{left:295.200000px;}
.x18_c00405{left:306.720000px;}
.xd_c00405{left:317.520000px;}
.x38_c00405{left:328.320000px;}
.x29_c00405{left:338.400000px;}
.x48_c00405{left:350.640000px;}
.x7_c00405{left:360.000000px;}
.x3c_c00405{left:361.440000px;}
.x3f_c00405{left:372.960000px;}
.x34_c00405{left:382.320000px;}
.x49_c00405{left:383.760000px;}
.x2a_c00405{left:393.120000px;}
.x8_c00405{left:403.200000px;}
.x19_c00405{left:405.360000px;}
.x43_c00405{left:415.440000px;}
.x1f_c00405{left:425.520000px;}
.x2d_c00405{left:427.680000px;}
.x35_c00405{left:436.320000px;}
.x9_c00405{left:447.120000px;}
.x20_c00405{left:457.920000px;}
.x31_c00405{left:468.720000px;}
.x24_c00405{left:479.520000px;}
.x40_c00405{left:480.960000px;}
.x44_c00405{left:482.400000px;}
.xa_c00405{left:490.320000px;}
.x39_c00405{left:501.120000px;}
.x25_c00405{left:502.560000px;}
.x3d_c00405{left:511.200000px;}
.x1a_c00405{left:513.360000px;}
.x26_c00405{left:522.000000px;}
.x15_c00405{left:523.440000px;}
.xb_c00405{left:534.240000px;}
.xe_c00405{left:545.040000px;}
.x3e_c00405{left:555.120000px;}
.x41_c00405{left:556.560000px;}
.x3a_c00405{left:567.360000px;}
.x1b_c00405{left:576.720000px;}
.xf_c00405{left:587.520000px;}
.x1c_c00405{left:598.320000px;}
.x2b_c00405{left:599.760000px;}
.x45_c00405{left:609.120000px;}
.xc_c00405{left:620.640000px;}
.x42_c00405{left:622.080000px;}
.x10_c00405{left:631.440000px;}
.x36_c00405{left:632.880000px;}
.x1d_c00405{left:641.520000px;}
.x2e_c00405{left:642.960000px;}
.x16_c00405{left:652.320000px;}
.x46_c00405{left:655.200000px;}
.x1_c00405{left:665.280000px;}
@media print{
.v3_c00405{vertical-align:-17.920000pt;}
.v2_c00405{vertical-align:-2.560000pt;}
.v0_c00405{vertical-align:0.000000pt;}
.v1_c00405{vertical-align:2.560000pt;}
.ls0_c00405{letter-spacing:0.000000pt;}
.ws3_c00405{word-spacing:0.000000pt;}
.ws2_c00405{word-spacing:0.559573pt;}
.ws1_c00405{word-spacing:6.381227pt;}
.ws0_c00405{word-spacing:219.863467pt;}
.fs10_c00405{font-size:20.480000pt;}
.fs15_c00405{font-size:30.720000pt;}
.fsa_c00405{font-size:33.280000pt;}
.fsb_c00405{font-size:35.840000pt;}
.fs13_c00405{font-size:38.400000pt;}
.fs4_c00405{font-size:40.960000pt;}
.fs7_c00405{font-size:43.520000pt;}
.fs6_c00405{font-size:46.080000pt;}
.fsd_c00405{font-size:48.640000pt;}
.fse_c00405{font-size:51.200000pt;}
.fs3_c00405{font-size:53.760000pt;}
.fs2_c00405{font-size:56.320000pt;}
.fsc_c00405{font-size:58.880000pt;}
.fs1_c00405{font-size:61.440000pt;}
.fs11_c00405{font-size:64.000000pt;}
.fs14_c00405{font-size:66.560000pt;}
.fs0_c00405{font-size:69.120000pt;}
.fs12_c00405{font-size:76.800000pt;}
.fsf_c00405{font-size:84.480000pt;}
.fs8_c00405{font-size:92.160000pt;}
.fs5_c00405{font-size:94.720000pt;}
.fs9_c00405{font-size:97.280000pt;}
.y0_c00405{bottom:0.000000pt;}
.y5d_c00405{bottom:30.720000pt;}
.y5e_c00405{bottom:31.360000pt;}
.y5f_c00405{bottom:33.280000pt;}
.y5c_c00405{bottom:33.920000pt;}
.y60_c00405{bottom:34.560000pt;}
.y5a_c00405{bottom:69.120000pt;}
.y58_c00405{bottom:69.760000pt;}
.y56_c00405{bottom:71.040000pt;}
.y59_c00405{bottom:71.680000pt;}
.y57_c00405{bottom:72.320000pt;}
.y5b_c00405{bottom:72.960000pt;}
.y50_c00405{bottom:106.880000pt;}
.y51_c00405{bottom:107.520000pt;}
.y55_c00405{bottom:108.160000pt;}
.y52_c00405{bottom:109.440000pt;}
.y4f_c00405{bottom:110.080000pt;}
.y53_c00405{bottom:110.720000pt;}
.y54_c00405{bottom:111.360000pt;}
.y4e_c00405{bottom:112.000000pt;}
.y49_c00405{bottom:145.280000pt;}
.y4a_c00405{bottom:145.920000pt;}
.y4b_c00405{bottom:147.200000pt;}
.y48_c00405{bottom:148.480000pt;}
.y4c_c00405{bottom:149.120000pt;}
.y4d_c00405{bottom:149.760000pt;}
.y45_c00405{bottom:224.640000pt;}
.y46_c00405{bottom:225.280000pt;}
.y47_c00405{bottom:225.920000pt;}
.y44_c00405{bottom:226.560000pt;}
.y40_c00405{bottom:298.880000pt;}
.y43_c00405{bottom:300.800000pt;}
.y41_c00405{bottom:302.080000pt;}
.y42_c00405{bottom:302.720000pt;}
.y3e_c00405{bottom:376.960000pt;}
.y3f_c00405{bottom:378.240000pt;}
.y3c_c00405{bottom:378.880000pt;}
.y3d_c00405{bottom:379.520000pt;}
.y39_c00405{bottom:414.720000pt;}
.y38_c00405{bottom:415.360000pt;}
.y3b_c00405{bottom:417.280000pt;}
.y3a_c00405{bottom:417.920000pt;}
.y32_c00405{bottom:453.760000pt;}
.y34_c00405{bottom:454.400000pt;}
.y37_c00405{bottom:455.040000pt;}
.y35_c00405{bottom:455.680000pt;}
.y33_c00405{bottom:456.320000pt;}
.y36_c00405{bottom:458.880000pt;}
.y31_c00405{bottom:492.160000pt;}
.y2e_c00405{bottom:492.800000pt;}
.y30_c00405{bottom:494.080000pt;}
.y2f_c00405{bottom:494.720000pt;}
.y29_c00405{bottom:606.720000pt;}
.y2d_c00405{bottom:607.360000pt;}
.y2b_c00405{bottom:608.000000pt;}
.y2a_c00405{bottom:608.640000pt;}
.y2c_c00405{bottom:609.920000pt;}
.y28_c00405{bottom:610.560000pt;}
.y26_c00405{bottom:645.760000pt;}
.y24_c00405{bottom:646.400000pt;}
.y25_c00405{bottom:647.040000pt;}
.y27_c00405{bottom:647.680000pt;}
.y22_c00405{bottom:648.320000pt;}
.y23_c00405{bottom:648.960000pt;}
.y21_c00405{bottom:684.800000pt;}
.y1f_c00405{bottom:686.080000pt;}
.y20_c00405{bottom:686.720000pt;}
.y1c_c00405{bottom:721.920000pt;}
.y1e_c00405{bottom:722.560000pt;}
.y1b_c00405{bottom:723.200000pt;}
.y1a_c00405{bottom:723.840000pt;}
.y1d_c00405{bottom:724.480000pt;}
.y17_c00405{bottom:760.960000pt;}
.y19_c00405{bottom:762.240000pt;}
.y18_c00405{bottom:762.880000pt;}
.y16_c00405{bottom:763.520000pt;}
.y15_c00405{bottom:807.680000pt;}
.y13_c00405{bottom:808.320000pt;}
.y10_c00405{bottom:809.600000pt;}
.y14_c00405{bottom:810.880000pt;}
.y12_c00405{bottom:811.520000pt;}
.y11_c00405{bottom:812.160000pt;}
.yf_c00405{bottom:855.680000pt;}
.yd_c00405{bottom:856.320000pt;}
.y9_c00405{bottom:856.960000pt;}
.yb_c00405{bottom:857.600000pt;}
.ye_c00405{bottom:858.880000pt;}
.ya_c00405{bottom:859.520000pt;}
.yc_c00405{bottom:860.160000pt;}
.y7_c00405{bottom:904.320000pt;}
.y3_c00405{bottom:904.960000pt;}
.y4_c00405{bottom:905.600000pt;}
.y8_c00405{bottom:906.880000pt;}
.y6_c00405{bottom:907.520000pt;}
.y5_c00405{bottom:908.160000pt;}
.y2_c00405{bottom:924.800000pt;}
.y1_c00405{bottom:988.800000pt;}
.h12_c00405{height:18.430000pt;}
.h18_c00405{height:27.645000pt;}
.hc_c00405{height:29.948750pt;}
.hd_c00405{height:32.252500pt;}
.h16_c00405{height:34.556250pt;}
.h6_c00405{height:36.860000pt;}
.h9_c00405{height:39.163750pt;}
.h8_c00405{height:41.467500pt;}
.hf_c00405{height:43.771250pt;}
.h10_c00405{height:46.075000pt;}
.h5_c00405{height:48.378750pt;}
.h4_c00405{height:50.682500pt;}
.h13_c00405{height:52.730000pt;}
.he_c00405{height:52.986250pt;}
.h3_c00405{height:55.290000pt;}
.h14_c00405{height:57.593750pt;}
.h17_c00405{height:59.897500pt;}
.h2_c00405{height:62.201250pt;}
.h15_c00405{height:69.112500pt;}
.h11_c00405{height:76.023750pt;}
.ha_c00405{height:82.935000pt;}
.h7_c00405{height:85.238750pt;}
.hb_c00405{height:87.542500pt;}
.h0_c00405{height:1030.400000pt;}
.h1_c00405{height:1030.666667pt;}
.w0_c00405{width:691.200000pt;}
.w1_c00405{width:691.333333pt;}
.x0_c00405{left:0.000000pt;}
.x2_c00405{left:51.200000pt;}
.x3b_c00405{left:53.120000pt;}
.x4a_c00405{left:54.400000pt;}
.x27_c00405{left:80.000000pt;}
.x21_c00405{left:81.920000pt;}
.x3_c00405{left:90.240000pt;}
.x47_c00405{left:100.480000pt;}
.x2c_c00405{left:101.760000pt;}
.x1e_c00405{left:108.800000pt;}
.x32_c00405{left:119.040000pt;}
.x37_c00405{left:128.640000pt;}
.x17_c00405{left:137.600000pt;}
.x11_c00405{left:147.840000pt;}
.x22_c00405{left:157.440000pt;}
.x4_c00405{left:167.040000pt;}
.x12_c00405{left:176.000000pt;}
.x2f_c00405{left:195.840000pt;}
.x5_c00405{left:205.440000pt;}
.x33_c00405{left:224.640000pt;}
.x28_c00405{left:232.320000pt;}
.x13_c00405{left:234.240000pt;}
.x23_c00405{left:243.200000pt;}
.x6_c00405{left:244.480000pt;}
.x30_c00405{left:254.080000pt;}
.x14_c00405{left:262.400000pt;}
.x18_c00405{left:272.640000pt;}
.xd_c00405{left:282.240000pt;}
.x38_c00405{left:291.840000pt;}
.x29_c00405{left:300.800000pt;}
.x48_c00405{left:311.680000pt;}
.x7_c00405{left:320.000000pt;}
.x3c_c00405{left:321.280000pt;}
.x3f_c00405{left:331.520000pt;}
.x34_c00405{left:339.840000pt;}
.x49_c00405{left:341.120000pt;}
.x2a_c00405{left:349.440000pt;}
.x8_c00405{left:358.400000pt;}
.x19_c00405{left:360.320000pt;}
.x43_c00405{left:369.280000pt;}
.x1f_c00405{left:378.240000pt;}
.x2d_c00405{left:380.160000pt;}
.x35_c00405{left:387.840000pt;}
.x9_c00405{left:397.440000pt;}
.x20_c00405{left:407.040000pt;}
.x31_c00405{left:416.640000pt;}
.x24_c00405{left:426.240000pt;}
.x40_c00405{left:427.520000pt;}
.x44_c00405{left:428.800000pt;}
.xa_c00405{left:435.840000pt;}
.x39_c00405{left:445.440000pt;}
.x25_c00405{left:446.720000pt;}
.x3d_c00405{left:454.400000pt;}
.x1a_c00405{left:456.320000pt;}
.x26_c00405{left:464.000000pt;}
.x15_c00405{left:465.280000pt;}
.xb_c00405{left:474.880000pt;}
.xe_c00405{left:484.480000pt;}
.x3e_c00405{left:493.440000pt;}
.x41_c00405{left:494.720000pt;}
.x3a_c00405{left:504.320000pt;}
.x1b_c00405{left:512.640000pt;}
.xf_c00405{left:522.240000pt;}
.x1c_c00405{left:531.840000pt;}
.x2b_c00405{left:533.120000pt;}
.x45_c00405{left:541.440000pt;}
.xc_c00405{left:551.680000pt;}
.x42_c00405{left:552.960000pt;}
.x10_c00405{left:561.280000pt;}
.x36_c00405{left:562.560000pt;}
.x1d_c00405{left:570.240000pt;}
.x2e_c00405{left:571.520000pt;}
.x16_c00405{left:579.840000pt;}
.x46_c00405{left:582.400000pt;}
.x1_c00405{left:591.360000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_51366a66addc037e8f9975c6.woff2')format("woff");}.ff1_c00406{font-family:ff1_c00406;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4e_c00406{transform:matrix(0.210900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210900,0.000000,0.000000,0.250000,0,0);}
.m2a_c00406{transform:matrix(0.219325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219325,0.000000,0.000000,0.250000,0,0);}
.m44_c00406{transform:matrix(0.227150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227150,0.000000,0.000000,0.250000,0,0);}
.m4d_c00406{transform:matrix(0.233425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233425,0.000000,0.000000,0.250000,0,0);}
.m5f_c00406{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00406{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);}
.m5c_c00406{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m45_c00406{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_c00406{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);}
.m4c_c00406{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);}
.m1c_c00406{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m16_c00406{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00406{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00406{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m57_c00406{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m12_c00406{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.md_c00406{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m58_c00406{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00406{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m53_c00406{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00406{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.me_c00406{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m25_c00406{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m43_c00406{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00406{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m56_c00406{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00406{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m6_c00406{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00406{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m3_c00406{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00406{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m47_c00406{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);}
.m52_c00406{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00406{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m0_c00406{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m22_c00406{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);}
.m2f_c00406{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m32_c00406{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m4_c00406{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.mf_c00406{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);}
.m24_c00406{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);}
.m4a_c00406{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m14_c00406{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);}
.m31_c00406{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m23_c00406{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);}
.m36_c00406{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m39_c00406{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);}
.m20_c00406{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m26_c00406{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);}
.m38_c00406{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);}
.m3d_c00406{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);}
.m1f_c00406{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m11_c00406{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m51_c00406{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.mb_c00406{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m59_c00406{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);}
.m17_c00406{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m27_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);}
.m9_c00406{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);}
.m30_c00406{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00406{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m41_c00406{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m2_c00406{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);}
.m21_c00406{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00406{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m18_c00406{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00406{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00406{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m54_c00406{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m35_c00406{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);}
.m50_c00406{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00406{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00406{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);}
.m10_c00406{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m55_c00406{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m1_c00406{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m34_c00406{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m5_c00406{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00406{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m8_c00406{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m33_c00406{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m13_c00406{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);}
.m37_c00406{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m42_c00406{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m28_c00406{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m29_c00406{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);}
.m40_c00406{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.mc_c00406{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m49_c00406{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m15_c00406{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);}
.m7_c00406{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.ma_c00406{transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00406{transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);}
.m48_c00406{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m46_c00406{transform:matrix(0.967500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.967500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.967500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00406{transform:matrix(1.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.160000,0.000000,0.000000,0.250000,0,0);}
.v0_c00406{vertical-align:0.000000px;}
.ls0_c00406{letter-spacing:0.000000px;}
.sc__c00406{text-shadow:none;}
.sc0_c00406{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00406{-webkit-text-stroke:0px transparent;}
.sc0_c00406{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00406{word-spacing:0.000000px;}
.fc0_c00406{color:transparent;}
.fs10_c00406{font-size:20.160000px;}
.fs11_c00406{font-size:28.800000px;}
.fs14_c00406{font-size:31.680000px;}
.fsb_c00406{font-size:34.560000px;}
.fs1_c00406{font-size:37.440000px;}
.fs9_c00406{font-size:40.320000px;}
.fse_c00406{font-size:43.200000px;}
.fs4_c00406{font-size:46.080000px;}
.fs7_c00406{font-size:48.960000px;}
.fs5_c00406{font-size:51.840000px;}
.fs2_c00406{font-size:54.720000px;}
.fsf_c00406{font-size:57.600000px;}
.fsa_c00406{font-size:60.480000px;}
.fs3_c00406{font-size:63.360000px;}
.fs8_c00406{font-size:66.240000px;}
.fs6_c00406{font-size:69.120000px;}
.fsd_c00406{font-size:72.000000px;}
.fsc_c00406{font-size:74.880000px;}
.fs0_c00406{font-size:77.760000px;}
.fs13_c00406{font-size:103.680000px;}
.fs12_c00406{font-size:112.320000px;}
.y0_c00406{bottom:0.000000px;}
.y62_c00406{bottom:120.240000px;}
.y61_c00406{bottom:122.400000px;}
.y63_c00406{bottom:123.120000px;}
.y60_c00406{bottom:163.440000px;}
.y5e_c00406{bottom:164.160000px;}
.y5f_c00406{bottom:165.600000px;}
.y5d_c00406{bottom:168.480000px;}
.y5c_c00406{bottom:205.200000px;}
.y5b_c00406{bottom:205.920000px;}
.y57_c00406{bottom:206.640000px;}
.y5a_c00406{bottom:208.080000px;}
.y58_c00406{bottom:208.800000px;}
.y59_c00406{bottom:210.240000px;}
.y52_c00406{bottom:248.400000px;}
.y51_c00406{bottom:249.120000px;}
.y54_c00406{bottom:249.840000px;}
.y56_c00406{bottom:250.560000px;}
.y53_c00406{bottom:251.280000px;}
.y4f_c00406{bottom:252.000000px;}
.y50_c00406{bottom:252.720000px;}
.y55_c00406{bottom:253.440000px;}
.y4a_c00406{bottom:292.320000px;}
.y4e_c00406{bottom:293.040000px;}
.y4b_c00406{bottom:293.760000px;}
.y4d_c00406{bottom:294.480000px;}
.y4c_c00406{bottom:295.920000px;}
.y47_c00406{bottom:336.240000px;}
.y49_c00406{bottom:336.960000px;}
.y48_c00406{bottom:339.120000px;}
.y46_c00406{bottom:339.840000px;}
.y43_c00406{bottom:380.160000px;}
.y44_c00406{bottom:381.600000px;}
.y45_c00406{bottom:382.320000px;}
.y42_c00406{bottom:383.040000px;}
.y41_c00406{bottom:383.760000px;}
.y3d_c00406{bottom:422.640000px;}
.y3f_c00406{bottom:423.360000px;}
.y40_c00406{bottom:424.080000px;}
.y3c_c00406{bottom:424.800000px;}
.y3e_c00406{bottom:425.520000px;}
.y3b_c00406{bottom:426.240000px;}
.y37_c00406{bottom:466.560000px;}
.y39_c00406{bottom:468.720000px;}
.y36_c00406{bottom:469.440000px;}
.y38_c00406{bottom:470.160000px;}
.y3a_c00406{bottom:472.320000px;}
.y32_c00406{bottom:509.760000px;}
.y34_c00406{bottom:510.480000px;}
.y31_c00406{bottom:511.200000px;}
.y2f_c00406{bottom:511.920000px;}
.y30_c00406{bottom:512.640000px;}
.y35_c00406{bottom:513.360000px;}
.y33_c00406{bottom:515.520000px;}
.y2c_c00406{bottom:553.680000px;}
.y2e_c00406{bottom:555.120000px;}
.y2d_c00406{bottom:555.840000px;}
.y2b_c00406{bottom:596.160000px;}
.y2a_c00406{bottom:597.600000px;}
.y28_c00406{bottom:598.320000px;}
.y29_c00406{bottom:599.040000px;}
.y27_c00406{bottom:639.360000px;}
.y26_c00406{bottom:641.520000px;}
.y25_c00406{bottom:642.240000px;}
.y23_c00406{bottom:682.560000px;}
.y24_c00406{bottom:684.000000px;}
.y22_c00406{bottom:684.720000px;}
.y21_c00406{bottom:685.440000px;}
.y1f_c00406{bottom:735.120000px;}
.y20_c00406{bottom:736.560000px;}
.y1e_c00406{bottom:738.720000px;}
.y1d_c00406{bottom:739.440000px;}
.y1c_c00406{bottom:779.040000px;}
.y1b_c00406{bottom:779.760000px;}
.y18_c00406{bottom:780.480000px;}
.y1a_c00406{bottom:781.920000px;}
.y19_c00406{bottom:782.640000px;}
.y15_c00406{bottom:822.240000px;}
.y17_c00406{bottom:824.400000px;}
.y14_c00406{bottom:825.120000px;}
.y16_c00406{bottom:825.840000px;}
.y13_c00406{bottom:865.440000px;}
.y11_c00406{bottom:866.160000px;}
.y12_c00406{bottom:868.320000px;}
.y10_c00406{bottom:869.040000px;}
.ye_c00406{bottom:909.360000px;}
.yd_c00406{bottom:910.080000px;}
.yf_c00406{bottom:911.520000px;}
.yc_c00406{bottom:912.240000px;}
.yb_c00406{bottom:952.560000px;}
.y9_c00406{bottom:954.720000px;}
.ya_c00406{bottom:956.160000px;}
.y7_c00406{bottom:995.760000px;}
.y5_c00406{bottom:996.480000px;}
.y8_c00406{bottom:997.920000px;}
.y6_c00406{bottom:998.640000px;}
.y4_c00406{bottom:999.360000px;}
.y3_c00406{bottom:1051.200000px;}
.y2_c00406{bottom:1053.360000px;}
.y1_c00406{bottom:1113.120000px;}
.h12_c00406{height:18.142031px;}
.h13_c00406{height:25.917187px;}
.h16_c00406{height:28.508906px;}
.hd_c00406{height:31.100625px;}
.h3_c00406{height:33.692344px;}
.hb_c00406{height:36.284062px;}
.h10_c00406{height:38.875781px;}
.h6_c00406{height:41.467500px;}
.h9_c00406{height:44.059219px;}
.h7_c00406{height:46.650937px;}
.h4_c00406{height:49.242656px;}
.h11_c00406{height:51.834375px;}
.hc_c00406{height:54.426094px;}
.h5_c00406{height:57.017812px;}
.ha_c00406{height:59.609531px;}
.h8_c00406{height:62.201250px;}
.hf_c00406{height:64.792969px;}
.he_c00406{height:67.384687px;}
.h2_c00406{height:69.976406px;}
.h15_c00406{height:93.301875px;}
.h14_c00406{height:101.077031px;}
.h0_c00406{height:1157.760000px;}
.h1_c00406{height:1158.000000px;}
.w0_c00406{width:775.440000px;}
.w1_c00406{width:775.500000px;}
.x0_c00406{left:0.000000px;}
.xe_c00406{left:58.320000px;}
.x2_c00406{left:59.760000px;}
.x51_c00406{left:79.200000px;}
.x3_c00406{left:90.720000px;}
.x26_c00406{left:101.520000px;}
.x1b_c00406{left:111.600000px;}
.x2d_c00406{left:123.120000px;}
.x4_c00406{left:133.920000px;}
.xf_c00406{left:144.720000px;}
.x21_c00406{left:155.520000px;}
.x30_c00406{left:166.320000px;}
.x5_c00406{left:167.760000px;}
.x3a_c00406{left:177.120000px;}
.x4d_c00406{left:187.200000px;}
.x10_c00406{left:188.640000px;}
.x31_c00406{left:198.000000px;}
.x6_c00406{left:200.160000px;}
.x3b_c00406{left:209.520000px;}
.x27_c00406{left:220.320000px;}
.x11_c00406{left:222.480000px;}
.x49_c00406{left:231.120000px;}
.x7_c00406{left:232.560000px;}
.x22_c00406{left:242.640000px;}
.x3c_c00406{left:252.720000px;}
.x1c_c00406{left:264.240000px;}
.x28_c00406{left:274.320000px;}
.x32_c00406{left:275.760000px;}
.x4e_c00406{left:283.680000px;}
.x15_c00406{left:285.840000px;}
.x46_c00406{left:295.920000px;}
.x2e_c00406{left:297.360000px;}
.x47_c00406{left:306.720000px;}
.x29_c00406{left:318.240000px;}
.x41_c00406{left:319.680000px;}
.x8_c00406{left:329.040000px;}
.x23_c00406{left:339.120000px;}
.x48_c00406{left:349.920000px;}
.x16_c00406{left:360.720000px;}
.x9_c00406{left:362.160000px;}
.x33_c00406{left:371.520000px;}
.x37_c00406{left:382.320000px;}
.x1d_c00406{left:393.120000px;}
.x2a_c00406{left:394.560000px;}
.x17_c00406{left:403.920000px;}
.x2f_c00406{left:406.080000px;}
.x3f_c00406{left:416.160000px;}
.x42_c00406{left:424.800000px;}
.x34_c00406{left:426.240000px;}
.x1e_c00406{left:436.320000px;}
.x12_c00406{left:447.840000px;}
.x4a_c00406{left:457.920000px;}
.x35_c00406{left:460.080000px;}
.x3d_c00406{left:468.720000px;}
.xa_c00406{left:470.880000px;}
.x24_c00406{left:479.520000px;}
.x43_c00406{left:489.600000px;}
.x13_c00406{left:491.040000px;}
.x1f_c00406{left:492.480000px;}
.x18_c00406{left:501.840000px;}
.x3e_c00406{left:511.920000px;}
.x4f_c00406{left:513.360000px;}
.x38_c00406{left:522.720000px;}
.x25_c00406{left:524.880000px;}
.x4b_c00406{left:533.520000px;}
.x40_c00406{left:535.680000px;}
.x44_c00406{left:544.320000px;}
.xb_c00406{left:555.840000px;}
.x14_c00406{left:566.640000px;}
.x36_c00406{left:568.080000px;}
.x45_c00406{left:577.440000px;}
.x39_c00406{left:588.240000px;}
.x2b_c00406{left:599.040000px;}
.xc_c00406{left:600.480000px;}
.x19_c00406{left:611.280000px;}
.x20_c00406{left:632.160000px;}
.x4c_c00406{left:641.520000px;}
.x1a_c00406{left:643.680000px;}
.x2c_c00406{left:653.760000px;}
.xd_c00406{left:665.280000px;}
.x50_c00406{left:676.080000px;}
.x1_c00406{left:679.680000px;}
@media print{
.v0_c00406{vertical-align:0.000000pt;}
.ls0_c00406{letter-spacing:0.000000pt;}
.ws0_c00406{word-spacing:0.000000pt;}
.fs10_c00406{font-size:17.920000pt;}
.fs11_c00406{font-size:25.600000pt;}
.fs14_c00406{font-size:28.160000pt;}
.fsb_c00406{font-size:30.720000pt;}
.fs1_c00406{font-size:33.280000pt;}
.fs9_c00406{font-size:35.840000pt;}
.fse_c00406{font-size:38.400000pt;}
.fs4_c00406{font-size:40.960000pt;}
.fs7_c00406{font-size:43.520000pt;}
.fs5_c00406{font-size:46.080000pt;}
.fs2_c00406{font-size:48.640000pt;}
.fsf_c00406{font-size:51.200000pt;}
.fsa_c00406{font-size:53.760000pt;}
.fs3_c00406{font-size:56.320000pt;}
.fs8_c00406{font-size:58.880000pt;}
.fs6_c00406{font-size:61.440000pt;}
.fsd_c00406{font-size:64.000000pt;}
.fsc_c00406{font-size:66.560000pt;}
.fs0_c00406{font-size:69.120000pt;}
.fs13_c00406{font-size:92.160000pt;}
.fs12_c00406{font-size:99.840000pt;}
.y0_c00406{bottom:0.000000pt;}
.y62_c00406{bottom:106.880000pt;}
.y61_c00406{bottom:108.800000pt;}
.y63_c00406{bottom:109.440000pt;}
.y60_c00406{bottom:145.280000pt;}
.y5e_c00406{bottom:145.920000pt;}
.y5f_c00406{bottom:147.200000pt;}
.y5d_c00406{bottom:149.760000pt;}
.y5c_c00406{bottom:182.400000pt;}
.y5b_c00406{bottom:183.040000pt;}
.y57_c00406{bottom:183.680000pt;}
.y5a_c00406{bottom:184.960000pt;}
.y58_c00406{bottom:185.600000pt;}
.y59_c00406{bottom:186.880000pt;}
.y52_c00406{bottom:220.800000pt;}
.y51_c00406{bottom:221.440000pt;}
.y54_c00406{bottom:222.080000pt;}
.y56_c00406{bottom:222.720000pt;}
.y53_c00406{bottom:223.360000pt;}
.y4f_c00406{bottom:224.000000pt;}
.y50_c00406{bottom:224.640000pt;}
.y55_c00406{bottom:225.280000pt;}
.y4a_c00406{bottom:259.840000pt;}
.y4e_c00406{bottom:260.480000pt;}
.y4b_c00406{bottom:261.120000pt;}
.y4d_c00406{bottom:261.760000pt;}
.y4c_c00406{bottom:263.040000pt;}
.y47_c00406{bottom:298.880000pt;}
.y49_c00406{bottom:299.520000pt;}
.y48_c00406{bottom:301.440000pt;}
.y46_c00406{bottom:302.080000pt;}
.y43_c00406{bottom:337.920000pt;}
.y44_c00406{bottom:339.200000pt;}
.y45_c00406{bottom:339.840000pt;}
.y42_c00406{bottom:340.480000pt;}
.y41_c00406{bottom:341.120000pt;}
.y3d_c00406{bottom:375.680000pt;}
.y3f_c00406{bottom:376.320000pt;}
.y40_c00406{bottom:376.960000pt;}
.y3c_c00406{bottom:377.600000pt;}
.y3e_c00406{bottom:378.240000pt;}
.y3b_c00406{bottom:378.880000pt;}
.y37_c00406{bottom:414.720000pt;}
.y39_c00406{bottom:416.640000pt;}
.y36_c00406{bottom:417.280000pt;}
.y38_c00406{bottom:417.920000pt;}
.y3a_c00406{bottom:419.840000pt;}
.y32_c00406{bottom:453.120000pt;}
.y34_c00406{bottom:453.760000pt;}
.y31_c00406{bottom:454.400000pt;}
.y2f_c00406{bottom:455.040000pt;}
.y30_c00406{bottom:455.680000pt;}
.y35_c00406{bottom:456.320000pt;}
.y33_c00406{bottom:458.240000pt;}
.y2c_c00406{bottom:492.160000pt;}
.y2e_c00406{bottom:493.440000pt;}
.y2d_c00406{bottom:494.080000pt;}
.y2b_c00406{bottom:529.920000pt;}
.y2a_c00406{bottom:531.200000pt;}
.y28_c00406{bottom:531.840000pt;}
.y29_c00406{bottom:532.480000pt;}
.y27_c00406{bottom:568.320000pt;}
.y26_c00406{bottom:570.240000pt;}
.y25_c00406{bottom:570.880000pt;}
.y23_c00406{bottom:606.720000pt;}
.y24_c00406{bottom:608.000000pt;}
.y22_c00406{bottom:608.640000pt;}
.y21_c00406{bottom:609.280000pt;}
.y1f_c00406{bottom:653.440000pt;}
.y20_c00406{bottom:654.720000pt;}
.y1e_c00406{bottom:656.640000pt;}
.y1d_c00406{bottom:657.280000pt;}
.y1c_c00406{bottom:692.480000pt;}
.y1b_c00406{bottom:693.120000pt;}
.y18_c00406{bottom:693.760000pt;}
.y1a_c00406{bottom:695.040000pt;}
.y19_c00406{bottom:695.680000pt;}
.y15_c00406{bottom:730.880000pt;}
.y17_c00406{bottom:732.800000pt;}
.y14_c00406{bottom:733.440000pt;}
.y16_c00406{bottom:734.080000pt;}
.y13_c00406{bottom:769.280000pt;}
.y11_c00406{bottom:769.920000pt;}
.y12_c00406{bottom:771.840000pt;}
.y10_c00406{bottom:772.480000pt;}
.ye_c00406{bottom:808.320000pt;}
.yd_c00406{bottom:808.960000pt;}
.yf_c00406{bottom:810.240000pt;}
.yc_c00406{bottom:810.880000pt;}
.yb_c00406{bottom:846.720000pt;}
.y9_c00406{bottom:848.640000pt;}
.ya_c00406{bottom:849.920000pt;}
.y7_c00406{bottom:885.120000pt;}
.y5_c00406{bottom:885.760000pt;}
.y8_c00406{bottom:887.040000pt;}
.y6_c00406{bottom:887.680000pt;}
.y4_c00406{bottom:888.320000pt;}
.y3_c00406{bottom:934.400000pt;}
.y2_c00406{bottom:936.320000pt;}
.y1_c00406{bottom:989.440000pt;}
.h12_c00406{height:16.126250pt;}
.h13_c00406{height:23.037500pt;}
.h16_c00406{height:25.341250pt;}
.hd_c00406{height:27.645000pt;}
.h3_c00406{height:29.948750pt;}
.hb_c00406{height:32.252500pt;}
.h10_c00406{height:34.556250pt;}
.h6_c00406{height:36.860000pt;}
.h9_c00406{height:39.163750pt;}
.h7_c00406{height:41.467500pt;}
.h4_c00406{height:43.771250pt;}
.h11_c00406{height:46.075000pt;}
.hc_c00406{height:48.378750pt;}
.h5_c00406{height:50.682500pt;}
.ha_c00406{height:52.986250pt;}
.h8_c00406{height:55.290000pt;}
.hf_c00406{height:57.593750pt;}
.he_c00406{height:59.897500pt;}
.h2_c00406{height:62.201250pt;}
.h15_c00406{height:82.935000pt;}
.h14_c00406{height:89.846250pt;}
.h0_c00406{height:1029.120000pt;}
.h1_c00406{height:1029.333333pt;}
.w0_c00406{width:689.280000pt;}
.w1_c00406{width:689.333333pt;}
.x0_c00406{left:0.000000pt;}
.xe_c00406{left:51.840000pt;}
.x2_c00406{left:53.120000pt;}
.x51_c00406{left:70.400000pt;}
.x3_c00406{left:80.640000pt;}
.x26_c00406{left:90.240000pt;}
.x1b_c00406{left:99.200000pt;}
.x2d_c00406{left:109.440000pt;}
.x4_c00406{left:119.040000pt;}
.xf_c00406{left:128.640000pt;}
.x21_c00406{left:138.240000pt;}
.x30_c00406{left:147.840000pt;}
.x5_c00406{left:149.120000pt;}
.x3a_c00406{left:157.440000pt;}
.x4d_c00406{left:166.400000pt;}
.x10_c00406{left:167.680000pt;}
.x31_c00406{left:176.000000pt;}
.x6_c00406{left:177.920000pt;}
.x3b_c00406{left:186.240000pt;}
.x27_c00406{left:195.840000pt;}
.x11_c00406{left:197.760000pt;}
.x49_c00406{left:205.440000pt;}
.x7_c00406{left:206.720000pt;}
.x22_c00406{left:215.680000pt;}
.x3c_c00406{left:224.640000pt;}
.x1c_c00406{left:234.880000pt;}
.x28_c00406{left:243.840000pt;}
.x32_c00406{left:245.120000pt;}
.x4e_c00406{left:252.160000pt;}
.x15_c00406{left:254.080000pt;}
.x46_c00406{left:263.040000pt;}
.x2e_c00406{left:264.320000pt;}
.x47_c00406{left:272.640000pt;}
.x29_c00406{left:282.880000pt;}
.x41_c00406{left:284.160000pt;}
.x8_c00406{left:292.480000pt;}
.x23_c00406{left:301.440000pt;}
.x48_c00406{left:311.040000pt;}
.x16_c00406{left:320.640000pt;}
.x9_c00406{left:321.920000pt;}
.x33_c00406{left:330.240000pt;}
.x37_c00406{left:339.840000pt;}
.x1d_c00406{left:349.440000pt;}
.x2a_c00406{left:350.720000pt;}
.x17_c00406{left:359.040000pt;}
.x2f_c00406{left:360.960000pt;}
.x3f_c00406{left:369.920000pt;}
.x42_c00406{left:377.600000pt;}
.x34_c00406{left:378.880000pt;}
.x1e_c00406{left:387.840000pt;}
.x12_c00406{left:398.080000pt;}
.x4a_c00406{left:407.040000pt;}
.x35_c00406{left:408.960000pt;}
.x3d_c00406{left:416.640000pt;}
.xa_c00406{left:418.560000pt;}
.x24_c00406{left:426.240000pt;}
.x43_c00406{left:435.200000pt;}
.x13_c00406{left:436.480000pt;}
.x1f_c00406{left:437.760000pt;}
.x18_c00406{left:446.080000pt;}
.x3e_c00406{left:455.040000pt;}
.x4f_c00406{left:456.320000pt;}
.x38_c00406{left:464.640000pt;}
.x25_c00406{left:466.560000pt;}
.x4b_c00406{left:474.240000pt;}
.x40_c00406{left:476.160000pt;}
.x44_c00406{left:483.840000pt;}
.xb_c00406{left:494.080000pt;}
.x14_c00406{left:503.680000pt;}
.x36_c00406{left:504.960000pt;}
.x45_c00406{left:513.280000pt;}
.x39_c00406{left:522.880000pt;}
.x2b_c00406{left:532.480000pt;}
.xc_c00406{left:533.760000pt;}
.x19_c00406{left:543.360000pt;}
.x20_c00406{left:561.920000pt;}
.x4c_c00406{left:570.240000pt;}
.x1a_c00406{left:572.160000pt;}
.x2c_c00406{left:581.120000pt;}
.xd_c00406{left:591.360000pt;}
.x50_c00406{left:600.960000pt;}
.x1_c00406{left:604.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f8493687a45cda2ce4a3146c.woff2')format("woff");}.ff1_c00407{font-family:ff1_c00407;line-height:1.109863;font-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_c00407{transform:matrix(0.116900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116900,0.000000,0.000000,0.250000,0,0);}
.m5b_c00407{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00407{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_c00407{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);}
.m5d_c00407{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00407{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);}
.m5e_c00407{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m36_c00407{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00407{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m35_c00407{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m11_c00407{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m53_c00407{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m37_c00407{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m57_c00407{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m52_c00407{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00407{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00407{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00407{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m33_c00407{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00407{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mf_c00407{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m56_c00407{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m0_c00407{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);}
.m26_c00407{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00407{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);}
.m2e_c00407{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_c00407{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);}
.m2d_c00407{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.mb_c00407{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m21_c00407{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);}
.m49_c00407{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m51_c00407{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m14_c00407{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m42_c00407{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);}
.m34_c00407{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);}
.m43_c00407{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.ma_c00407{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m9_c00407{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);}
.m45_c00407{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);}
.m7_c00407{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);}
.m2_c00407{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.md_c00407{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);}
.m20_c00407{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);}
.m5a_c00407{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m13_c00407{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m3_c00407{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m23_c00407{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);}
.m5_c00407{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00407{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);}
.mc_c00407{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m18_c00407{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);}
.me_c00407{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);}
.m17_c00407{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m38_c00407{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m28_c00407{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m22_c00407{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m54_c00407{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);}
.m55_c00407{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00407{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00407{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);}
.m3d_c00407{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m29_c00407{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);}
.m3e_c00407{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00407{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00407{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m41_c00407{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);}
.m19_c00407{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00407{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00407{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m58_c00407{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);}
.m2c_c00407{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m16_c00407{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m8_c00407{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m25_c00407{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00407{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m59_c00407{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);}
.m32_c00407{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);}
.m30_c00407{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m47_c00407{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m6_c00407{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);}
.m48_c00407{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00407{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00407{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m4_c00407{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00407{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m31_c00407{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m39_c00407{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m10_c00407{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m15_c00407{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m46_c00407{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);}
.m40_c00407{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m44_c00407{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m50_c00407{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.m27_c00407{transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00407{transform:matrix(0.967500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.967500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.967500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00407{transform:matrix(1.027500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.027500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.027500,0.000000,0.000000,0.250000,0,0);}
.v1_c00407{vertical-align:-11.520000px;}
.v2_c00407{vertical-align:-2.880000px;}
.v0_c00407{vertical-align:0.000000px;}
.v3_c00407{vertical-align:5.760000px;}
.ls0_c00407{letter-spacing:0.000000px;}
.sc__c00407{text-shadow:none;}
.sc0_c00407{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00407{-webkit-text-stroke:0px transparent;}
.sc0_c00407{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00407{word-spacing:-1.030560px;}
.ws4_c00407{word-spacing:0.000000px;}
.ws3_c00407{word-spacing:0.334800px;}
.ws0_c00407{word-spacing:2.647200px;}
.ws1_c00407{word-spacing:4.852800px;}
.fc0_c00407{color:transparent;}
.fs13_c00407{font-size:20.160000px;}
.fsf_c00407{font-size:23.040000px;}
.fs12_c00407{font-size:25.920000px;}
.fsd_c00407{font-size:28.800000px;}
.fs11_c00407{font-size:34.560000px;}
.fsb_c00407{font-size:37.440000px;}
.fs6_c00407{font-size:40.320000px;}
.fs10_c00407{font-size:43.200000px;}
.fsa_c00407{font-size:46.080000px;}
.fs3_c00407{font-size:48.960000px;}
.fs1_c00407{font-size:51.840000px;}
.fs2_c00407{font-size:54.720000px;}
.fs9_c00407{font-size:57.600000px;}
.fs5_c00407{font-size:60.480000px;}
.fs4_c00407{font-size:63.360000px;}
.fs8_c00407{font-size:66.240000px;}
.fs7_c00407{font-size:69.120000px;}
.fsc_c00407{font-size:72.000000px;}
.fs0_c00407{font-size:74.880000px;}
.fse_c00407{font-size:77.760000px;}
.y0_c00407{bottom:0.000000px;}
.y7a_c00407{bottom:33.840000px;}
.y7c_c00407{bottom:34.560000px;}
.y7b_c00407{bottom:35.280000px;}
.y79_c00407{bottom:36.000000px;}
.y78_c00407{bottom:36.720000px;}
.y77_c00407{bottom:37.440000px;}
.y76_c00407{bottom:75.600000px;}
.y75_c00407{bottom:76.320000px;}
.y73_c00407{bottom:78.480000px;}
.y74_c00407{bottom:79.200000px;}
.y71_c00407{bottom:120.240000px;}
.y72_c00407{bottom:120.960000px;}
.y70_c00407{bottom:121.680000px;}
.y6f_c00407{bottom:123.120000px;}
.y69_c00407{bottom:164.160000px;}
.y6a_c00407{bottom:164.880000px;}
.y6d_c00407{bottom:165.600000px;}
.y6e_c00407{bottom:166.320000px;}
.y6c_c00407{bottom:167.040000px;}
.y6b_c00407{bottom:167.760000px;}
.y68_c00407{bottom:206.640000px;}
.y67_c00407{bottom:207.360000px;}
.y65_c00407{bottom:208.800000px;}
.y66_c00407{bottom:209.520000px;}
.y5f_c00407{bottom:249.120000px;}
.y61_c00407{bottom:249.840000px;}
.y64_c00407{bottom:251.280000px;}
.y62_c00407{bottom:252.000000px;}
.y60_c00407{bottom:252.720000px;}
.y63_c00407{bottom:253.440000px;}
.y5e_c00407{bottom:254.160000px;}
.y5d_c00407{bottom:293.760000px;}
.y5b_c00407{bottom:294.480000px;}
.y5c_c00407{bottom:295.200000px;}
.y5a_c00407{bottom:295.920000px;}
.y59_c00407{bottom:297.360000px;}
.y58_c00407{bottom:336.240000px;}
.y57_c00407{bottom:337.680000px;}
.y55_c00407{bottom:338.400000px;}
.y56_c00407{bottom:339.120000px;}
.y54_c00407{bottom:340.560000px;}
.y52_c00407{bottom:378.720000px;}
.y53_c00407{bottom:380.160000px;}
.y51_c00407{bottom:380.880000px;}
.y4f_c00407{bottom:381.600000px;}
.y50_c00407{bottom:382.320000px;}
.y4e_c00407{bottom:383.040000px;}
.y4a_c00407{bottom:422.640000px;}
.y4d_c00407{bottom:423.360000px;}
.y4c_c00407{bottom:424.080000px;}
.y49_c00407{bottom:424.800000px;}
.y4b_c00407{bottom:425.520000px;}
.y48_c00407{bottom:426.240000px;}
.y46_c00407{bottom:464.400000px;}
.y47_c00407{bottom:465.840000px;}
.y44_c00407{bottom:466.560000px;}
.y45_c00407{bottom:468.720000px;}
.y3f_c00407{bottom:509.040000px;}
.y3e_c00407{bottom:509.760000px;}
.y42_c00407{bottom:511.200000px;}
.y40_c00407{bottom:511.920000px;}
.y3d_c00407{bottom:512.640000px;}
.y41_c00407{bottom:513.360000px;}
.y43_c00407{bottom:514.080000px;}
.y3c_c00407{bottom:554.400000px;}
.y3a_c00407{bottom:555.120000px;}
.y39_c00407{bottom:555.840000px;}
.y3b_c00407{bottom:556.560000px;}
.y35_c00407{bottom:595.440000px;}
.y33_c00407{bottom:596.160000px;}
.y37_c00407{bottom:596.880000px;}
.y32_c00407{bottom:598.320000px;}
.y36_c00407{bottom:599.040000px;}
.y34_c00407{bottom:599.760000px;}
.y38_c00407{bottom:600.480000px;}
.y2f_c00407{bottom:639.360000px;}
.y30_c00407{bottom:641.520000px;}
.y2e_c00407{bottom:642.240000px;}
.y2d_c00407{bottom:642.960000px;}
.y31_c00407{bottom:643.680000px;}
.y2a_c00407{bottom:691.200000px;}
.y28_c00407{bottom:693.360000px;}
.y2c_c00407{bottom:695.520000px;}
.y2b_c00407{bottom:696.240000px;}
.y29_c00407{bottom:696.960000px;}
.y23_c00407{bottom:736.560000px;}
.y25_c00407{bottom:737.280000px;}
.y26_c00407{bottom:738.000000px;}
.y24_c00407{bottom:738.720000px;}
.y20_c00407{bottom:739.440000px;}
.y22_c00407{bottom:740.160000px;}
.y21_c00407{bottom:740.880000px;}
.y27_c00407{bottom:743.760000px;}
.y1c_c00407{bottom:779.760000px;}
.y1f_c00407{bottom:780.480000px;}
.y1d_c00407{bottom:781.920000px;}
.y1e_c00407{bottom:782.640000px;}
.y1b_c00407{bottom:822.960000px;}
.y1a_c00407{bottom:823.680000px;}
.y19_c00407{bottom:824.400000px;}
.y17_c00407{bottom:825.120000px;}
.y18_c00407{bottom:825.840000px;}
.y16_c00407{bottom:865.440000px;}
.y14_c00407{bottom:866.160000px;}
.y12_c00407{bottom:866.880000px;}
.y15_c00407{bottom:868.320000px;}
.y13_c00407{bottom:869.760000px;}
.y10_c00407{bottom:921.600000px;}
.y11_c00407{bottom:922.320000px;}
.yf_c00407{bottom:962.640000px;}
.ye_c00407{bottom:963.360000px;}
.yb_c00407{bottom:964.800000px;}
.yc_c00407{bottom:965.520000px;}
.yd_c00407{bottom:966.240000px;}
.ya_c00407{bottom:1005.120000px;}
.y9_c00407{bottom:1005.840000px;}
.y8_c00407{bottom:1006.560000px;}
.y6_c00407{bottom:1007.280000px;}
.y7_c00407{bottom:1008.000000px;}
.y2_c00407{bottom:1048.320000px;}
.y4_c00407{bottom:1049.040000px;}
.y3_c00407{bottom:1051.200000px;}
.y5_c00407{bottom:1051.920000px;}
.y1_c00407{bottom:1117.440000px;}
.h16_c00407{height:18.142031px;}
.h12_c00407{height:20.733750px;}
.h15_c00407{height:23.325469px;}
.h10_c00407{height:25.917187px;}
.h14_c00407{height:31.100625px;}
.hd_c00407{height:33.692344px;}
.h8_c00407{height:36.284062px;}
.h13_c00407{height:38.875781px;}
.hc_c00407{height:41.467500px;}
.h5_c00407{height:44.059219px;}
.h3_c00407{height:46.650937px;}
.hf_c00407{height:48.089531px;}
.h4_c00407{height:49.242656px;}
.hb_c00407{height:51.834375px;}
.h7_c00407{height:54.426094px;}
.h6_c00407{height:57.017812px;}
.h17_c00407{height:57.594375px;}
.ha_c00407{height:59.609531px;}
.h9_c00407{height:62.201250px;}
.he_c00407{height:64.792969px;}
.h2_c00407{height:67.384687px;}
.h11_c00407{height:69.976406px;}
.h0_c00407{height:1157.760000px;}
.h1_c00407{height:1158.000000px;}
.w0_c00407{width:774.000000px;}
.x0_c00407{left:0.000000px;}
.x2_c00407{left:56.160000px;}
.x2b_c00407{left:57.600000px;}
.x31_c00407{left:78.480000px;}
.x2c_c00407{left:88.560000px;}
.x4d_c00407{left:97.920000px;}
.x3_c00407{left:99.360000px;}
.x1e_c00407{left:100.800000px;}
.x1a_c00407{left:110.160000px;}
.x32_c00407{left:111.600000px;}
.x25_c00407{left:121.680000px;}
.x41_c00407{left:131.760000px;}
.x52_c00407{left:141.840000px;}
.xa_c00407{left:143.280000px;}
.x3e_c00407{left:144.720000px;}
.x10_c00407{left:153.360000px;}
.x26_c00407{left:164.160000px;}
.xb_c00407{left:174.960000px;}
.x11_c00407{left:185.760000px;}
.x35_c00407{left:197.280000px;}
.x46_c00407{left:198.720000px;}
.x39_c00407{left:208.080000px;}
.x55_c00407{left:218.160000px;}
.x27_c00407{left:229.680000px;}
.x4_c00407{left:239.760000px;}
.xc_c00407{left:241.200000px;}
.x33_c00407{left:261.360000px;}
.x40_c00407{left:262.800000px;}
.x12_c00407{left:272.880000px;}
.x28_c00407{left:274.320000px;}
.x5_c00407{left:283.680000px;}
.x4e_c00407{left:293.760000px;}
.x34_c00407{left:296.640000px;}
.x13_c00407{left:306.000000px;}
.x6_c00407{left:316.080000px;}
.x4b_c00407{left:317.520000px;}
.x47_c00407{left:326.880000px;}
.x36_c00407{left:337.680000px;}
.x14_c00407{left:339.120000px;}
.x42_c00407{left:347.760000px;}
.x1b_c00407{left:359.280000px;}
.x51_c00407{left:370.080000px;}
.x3f_c00407{left:371.520000px;}
.x2d_c00407{left:382.320000px;}
.xd_c00407{left:391.680000px;}
.x4c_c00407{left:402.480000px;}
.x3a_c00407{left:403.920000px;}
.x37_c00407{left:414.000000px;}
.x1c_c00407{left:425.520000px;}
.x45_c00407{left:429.840000px;}
.x3b_c00407{left:434.880000px;}
.x48_c00407{left:436.320000px;}
.x1f_c00407{left:445.680000px;}
.x15_c00407{left:447.120000px;}
.x7_c00407{left:457.200000px;}
.x53_c00407{left:466.560000px;}
.x56_c00407{left:477.360000px;}
.x38_c00407{left:478.800000px;}
.x29_c00407{left:488.880000px;}
.x16_c00407{left:499.680000px;}
.x50_c00407{left:501.120000px;}
.x20_c00407{left:511.200000px;}
.x43_c00407{left:521.280000px;}
.x3c_c00407{left:522.720000px;}
.x2a_c00407{left:532.080000px;}
.x17_c00407{left:533.520000px;}
.x4f_c00407{left:542.880000px;}
.x49_c00407{left:544.320000px;}
.xe_c00407{left:554.400000px;}
.x57_c00407{left:564.480000px;}
.x54_c00407{left:574.560000px;}
.x21_c00407{left:576.000000px;}
.x4a_c00407{left:586.080000px;}
.x8_c00407{left:587.520000px;}
.x22_c00407{left:596.880000px;}
.xf_c00407{left:598.320000px;}
.x2e_c00407{left:609.120000px;}
.x9_c00407{left:618.480000px;}
.x44_c00407{left:619.920000px;}
.x2f_c00407{left:622.080000px;}
.x30_c00407{left:630.720000px;}
.x23_c00407{left:632.160000px;}
.x1d_c00407{left:642.240000px;}
.x18_c00407{left:652.320000px;}
.x24_c00407{left:663.120000px;}
.x19_c00407{left:673.920000px;}
.x1_c00407{left:683.280000px;}
.x3d_c00407{left:684.720000px;}
@media print{
.v1_c00407{vertical-align:-10.240000pt;}
.v2_c00407{vertical-align:-2.560000pt;}
.v0_c00407{vertical-align:0.000000pt;}
.v3_c00407{vertical-align:5.120000pt;}
.ls0_c00407{letter-spacing:0.000000pt;}
.ws2_c00407{word-spacing:-0.916053pt;}
.ws4_c00407{word-spacing:0.000000pt;}
.ws3_c00407{word-spacing:0.297600pt;}
.ws0_c00407{word-spacing:2.353067pt;}
.ws1_c00407{word-spacing:4.313600pt;}
.fs13_c00407{font-size:17.920000pt;}
.fsf_c00407{font-size:20.480000pt;}
.fs12_c00407{font-size:23.040000pt;}
.fsd_c00407{font-size:25.600000pt;}
.fs11_c00407{font-size:30.720000pt;}
.fsb_c00407{font-size:33.280000pt;}
.fs6_c00407{font-size:35.840000pt;}
.fs10_c00407{font-size:38.400000pt;}
.fsa_c00407{font-size:40.960000pt;}
.fs3_c00407{font-size:43.520000pt;}
.fs1_c00407{font-size:46.080000pt;}
.fs2_c00407{font-size:48.640000pt;}
.fs9_c00407{font-size:51.200000pt;}
.fs5_c00407{font-size:53.760000pt;}
.fs4_c00407{font-size:56.320000pt;}
.fs8_c00407{font-size:58.880000pt;}
.fs7_c00407{font-size:61.440000pt;}
.fsc_c00407{font-size:64.000000pt;}
.fs0_c00407{font-size:66.560000pt;}
.fse_c00407{font-size:69.120000pt;}
.y0_c00407{bottom:0.000000pt;}
.y7a_c00407{bottom:30.080000pt;}
.y7c_c00407{bottom:30.720000pt;}
.y7b_c00407{bottom:31.360000pt;}
.y79_c00407{bottom:32.000000pt;}
.y78_c00407{bottom:32.640000pt;}
.y77_c00407{bottom:33.280000pt;}
.y76_c00407{bottom:67.200000pt;}
.y75_c00407{bottom:67.840000pt;}
.y73_c00407{bottom:69.760000pt;}
.y74_c00407{bottom:70.400000pt;}
.y71_c00407{bottom:106.880000pt;}
.y72_c00407{bottom:107.520000pt;}
.y70_c00407{bottom:108.160000pt;}
.y6f_c00407{bottom:109.440000pt;}
.y69_c00407{bottom:145.920000pt;}
.y6a_c00407{bottom:146.560000pt;}
.y6d_c00407{bottom:147.200000pt;}
.y6e_c00407{bottom:147.840000pt;}
.y6c_c00407{bottom:148.480000pt;}
.y6b_c00407{bottom:149.120000pt;}
.y68_c00407{bottom:183.680000pt;}
.y67_c00407{bottom:184.320000pt;}
.y65_c00407{bottom:185.600000pt;}
.y66_c00407{bottom:186.240000pt;}
.y5f_c00407{bottom:221.440000pt;}
.y61_c00407{bottom:222.080000pt;}
.y64_c00407{bottom:223.360000pt;}
.y62_c00407{bottom:224.000000pt;}
.y60_c00407{bottom:224.640000pt;}
.y63_c00407{bottom:225.280000pt;}
.y5e_c00407{bottom:225.920000pt;}
.y5d_c00407{bottom:261.120000pt;}
.y5b_c00407{bottom:261.760000pt;}
.y5c_c00407{bottom:262.400000pt;}
.y5a_c00407{bottom:263.040000pt;}
.y59_c00407{bottom:264.320000pt;}
.y58_c00407{bottom:298.880000pt;}
.y57_c00407{bottom:300.160000pt;}
.y55_c00407{bottom:300.800000pt;}
.y56_c00407{bottom:301.440000pt;}
.y54_c00407{bottom:302.720000pt;}
.y52_c00407{bottom:336.640000pt;}
.y53_c00407{bottom:337.920000pt;}
.y51_c00407{bottom:338.560000pt;}
.y4f_c00407{bottom:339.200000pt;}
.y50_c00407{bottom:339.840000pt;}
.y4e_c00407{bottom:340.480000pt;}
.y4a_c00407{bottom:375.680000pt;}
.y4d_c00407{bottom:376.320000pt;}
.y4c_c00407{bottom:376.960000pt;}
.y49_c00407{bottom:377.600000pt;}
.y4b_c00407{bottom:378.240000pt;}
.y48_c00407{bottom:378.880000pt;}
.y46_c00407{bottom:412.800000pt;}
.y47_c00407{bottom:414.080000pt;}
.y44_c00407{bottom:414.720000pt;}
.y45_c00407{bottom:416.640000pt;}
.y3f_c00407{bottom:452.480000pt;}
.y3e_c00407{bottom:453.120000pt;}
.y42_c00407{bottom:454.400000pt;}
.y40_c00407{bottom:455.040000pt;}
.y3d_c00407{bottom:455.680000pt;}
.y41_c00407{bottom:456.320000pt;}
.y43_c00407{bottom:456.960000pt;}
.y3c_c00407{bottom:492.800000pt;}
.y3a_c00407{bottom:493.440000pt;}
.y39_c00407{bottom:494.080000pt;}
.y3b_c00407{bottom:494.720000pt;}
.y35_c00407{bottom:529.280000pt;}
.y33_c00407{bottom:529.920000pt;}
.y37_c00407{bottom:530.560000pt;}
.y32_c00407{bottom:531.840000pt;}
.y36_c00407{bottom:532.480000pt;}
.y34_c00407{bottom:533.120000pt;}
.y38_c00407{bottom:533.760000pt;}
.y2f_c00407{bottom:568.320000pt;}
.y30_c00407{bottom:570.240000pt;}
.y2e_c00407{bottom:570.880000pt;}
.y2d_c00407{bottom:571.520000pt;}
.y31_c00407{bottom:572.160000pt;}
.y2a_c00407{bottom:614.400000pt;}
.y28_c00407{bottom:616.320000pt;}
.y2c_c00407{bottom:618.240000pt;}
.y2b_c00407{bottom:618.880000pt;}
.y29_c00407{bottom:619.520000pt;}
.y23_c00407{bottom:654.720000pt;}
.y25_c00407{bottom:655.360000pt;}
.y26_c00407{bottom:656.000000pt;}
.y24_c00407{bottom:656.640000pt;}
.y20_c00407{bottom:657.280000pt;}
.y22_c00407{bottom:657.920000pt;}
.y21_c00407{bottom:658.560000pt;}
.y27_c00407{bottom:661.120000pt;}
.y1c_c00407{bottom:693.120000pt;}
.y1f_c00407{bottom:693.760000pt;}
.y1d_c00407{bottom:695.040000pt;}
.y1e_c00407{bottom:695.680000pt;}
.y1b_c00407{bottom:731.520000pt;}
.y1a_c00407{bottom:732.160000pt;}
.y19_c00407{bottom:732.800000pt;}
.y17_c00407{bottom:733.440000pt;}
.y18_c00407{bottom:734.080000pt;}
.y16_c00407{bottom:769.280000pt;}
.y14_c00407{bottom:769.920000pt;}
.y12_c00407{bottom:770.560000pt;}
.y15_c00407{bottom:771.840000pt;}
.y13_c00407{bottom:773.120000pt;}
.y10_c00407{bottom:819.200000pt;}
.y11_c00407{bottom:819.840000pt;}
.yf_c00407{bottom:855.680000pt;}
.ye_c00407{bottom:856.320000pt;}
.yb_c00407{bottom:857.600000pt;}
.yc_c00407{bottom:858.240000pt;}
.yd_c00407{bottom:858.880000pt;}
.ya_c00407{bottom:893.440000pt;}
.y9_c00407{bottom:894.080000pt;}
.y8_c00407{bottom:894.720000pt;}
.y6_c00407{bottom:895.360000pt;}
.y7_c00407{bottom:896.000000pt;}
.y2_c00407{bottom:931.840000pt;}
.y4_c00407{bottom:932.480000pt;}
.y3_c00407{bottom:934.400000pt;}
.y5_c00407{bottom:935.040000pt;}
.y1_c00407{bottom:993.280000pt;}
.h16_c00407{height:16.126250pt;}
.h12_c00407{height:18.430000pt;}
.h15_c00407{height:20.733750pt;}
.h10_c00407{height:23.037500pt;}
.h14_c00407{height:27.645000pt;}
.hd_c00407{height:29.948750pt;}
.h8_c00407{height:32.252500pt;}
.h13_c00407{height:34.556250pt;}
.hc_c00407{height:36.860000pt;}
.h5_c00407{height:39.163750pt;}
.h3_c00407{height:41.467500pt;}
.hf_c00407{height:42.746250pt;}
.h4_c00407{height:43.771250pt;}
.hb_c00407{height:46.075000pt;}
.h7_c00407{height:48.378750pt;}
.h6_c00407{height:50.682500pt;}
.h17_c00407{height:51.195000pt;}
.ha_c00407{height:52.986250pt;}
.h9_c00407{height:55.290000pt;}
.he_c00407{height:57.593750pt;}
.h2_c00407{height:59.897500pt;}
.h11_c00407{height:62.201250pt;}
.h0_c00407{height:1029.120000pt;}
.h1_c00407{height:1029.333333pt;}
.w0_c00407{width:688.000000pt;}
.x0_c00407{left:0.000000pt;}
.x2_c00407{left:49.920000pt;}
.x2b_c00407{left:51.200000pt;}
.x31_c00407{left:69.760000pt;}
.x2c_c00407{left:78.720000pt;}
.x4d_c00407{left:87.040000pt;}
.x3_c00407{left:88.320000pt;}
.x1e_c00407{left:89.600000pt;}
.x1a_c00407{left:97.920000pt;}
.x32_c00407{left:99.200000pt;}
.x25_c00407{left:108.160000pt;}
.x41_c00407{left:117.120000pt;}
.x52_c00407{left:126.080000pt;}
.xa_c00407{left:127.360000pt;}
.x3e_c00407{left:128.640000pt;}
.x10_c00407{left:136.320000pt;}
.x26_c00407{left:145.920000pt;}
.xb_c00407{left:155.520000pt;}
.x11_c00407{left:165.120000pt;}
.x35_c00407{left:175.360000pt;}
.x46_c00407{left:176.640000pt;}
.x39_c00407{left:184.960000pt;}
.x55_c00407{left:193.920000pt;}
.x27_c00407{left:204.160000pt;}
.x4_c00407{left:213.120000pt;}
.xc_c00407{left:214.400000pt;}
.x33_c00407{left:232.320000pt;}
.x40_c00407{left:233.600000pt;}
.x12_c00407{left:242.560000pt;}
.x28_c00407{left:243.840000pt;}
.x5_c00407{left:252.160000pt;}
.x4e_c00407{left:261.120000pt;}
.x34_c00407{left:263.680000pt;}
.x13_c00407{left:272.000000pt;}
.x6_c00407{left:280.960000pt;}
.x4b_c00407{left:282.240000pt;}
.x47_c00407{left:290.560000pt;}
.x36_c00407{left:300.160000pt;}
.x14_c00407{left:301.440000pt;}
.x42_c00407{left:309.120000pt;}
.x1b_c00407{left:319.360000pt;}
.x51_c00407{left:328.960000pt;}
.x3f_c00407{left:330.240000pt;}
.x2d_c00407{left:339.840000pt;}
.xd_c00407{left:348.160000pt;}
.x4c_c00407{left:357.760000pt;}
.x3a_c00407{left:359.040000pt;}
.x37_c00407{left:368.000000pt;}
.x1c_c00407{left:378.240000pt;}
.x45_c00407{left:382.080000pt;}
.x3b_c00407{left:386.560000pt;}
.x48_c00407{left:387.840000pt;}
.x1f_c00407{left:396.160000pt;}
.x15_c00407{left:397.440000pt;}
.x7_c00407{left:406.400000pt;}
.x53_c00407{left:414.720000pt;}
.x56_c00407{left:424.320000pt;}
.x38_c00407{left:425.600000pt;}
.x29_c00407{left:434.560000pt;}
.x16_c00407{left:444.160000pt;}
.x50_c00407{left:445.440000pt;}
.x20_c00407{left:454.400000pt;}
.x43_c00407{left:463.360000pt;}
.x3c_c00407{left:464.640000pt;}
.x2a_c00407{left:472.960000pt;}
.x17_c00407{left:474.240000pt;}
.x4f_c00407{left:482.560000pt;}
.x49_c00407{left:483.840000pt;}
.xe_c00407{left:492.800000pt;}
.x57_c00407{left:501.760000pt;}
.x54_c00407{left:510.720000pt;}
.x21_c00407{left:512.000000pt;}
.x4a_c00407{left:520.960000pt;}
.x8_c00407{left:522.240000pt;}
.x22_c00407{left:530.560000pt;}
.xf_c00407{left:531.840000pt;}
.x2e_c00407{left:541.440000pt;}
.x9_c00407{left:549.760000pt;}
.x44_c00407{left:551.040000pt;}
.x2f_c00407{left:552.960000pt;}
.x30_c00407{left:560.640000pt;}
.x23_c00407{left:561.920000pt;}
.x1d_c00407{left:570.880000pt;}
.x18_c00407{left:579.840000pt;}
.x24_c00407{left:589.440000pt;}
.x19_c00407{left:599.040000pt;}
.x1_c00407{left:607.360000pt;}
.x3d_c00407{left:608.640000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4178916fc7bbc058827772fd.woff2')format("woff");}.ff1_c00408{font-family:ff1_c00408;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4a_c00408{transform:matrix(0.180475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180475,0.000000,0.000000,0.250000,0,0);}
.m56_c00408{transform:matrix(0.183775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183775,0.000000,0.000000,0.250000,0,0);}
.m33_c00408{transform:matrix(0.223975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223975,0.000000,0.000000,0.250000,0,0);}
.m49_c00408{transform:matrix(0.228075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228075,0.000000,0.000000,0.250000,0,0);}
.m46_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);}
.m47_c00408{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m21_c00408{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_c00408{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);}
.m57_c00408{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m58_c00408{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m32_c00408{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00408{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);}
.m2a_c00408{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m50_c00408{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00408{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m25_c00408{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m41_c00408{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m14_c00408{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.mb_c00408{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m23_c00408{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m44_c00408{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00408{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00408{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m17_c00408{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m18_c00408{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00408{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1_c00408{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_c00408{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);}
.m39_c00408{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.mf_c00408{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);}
.m3b_c00408{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m29_c00408{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);}
.m37_c00408{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m28_c00408{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);}
.m3d_c00408{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m42_c00408{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.ma_c00408{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m4_c00408{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m5_c00408{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);}
.m0_c00408{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m51_c00408{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);}
.m1b_c00408{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);}
.m9_c00408{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m38_c00408{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m34_c00408{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m40_c00408{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m55_c00408{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);}
.mc_c00408{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00408{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);}
.m3c_c00408{transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);}
.m19_c00408{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m53_c00408{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00408{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m13_c00408{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);}
.m6_c00408{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00408{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);}
.m16_c00408{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m3_c00408{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00408{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m22_c00408{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m24_c00408{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);}
.m3e_c00408{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m11_c00408{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m52_c00408{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);}
.m54_c00408{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m7_c00408{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00408{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00408{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m48_c00408{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);}
.m30_c00408{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00408{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m12_c00408{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);}
.m2_c00408{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m31_c00408{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00408{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00408{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00408{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_c00408{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m15_c00408{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.md_c00408{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m36_c00408{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);}
.m35_c00408{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m26_c00408{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m8_c00408{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);}
.m1a_c00408{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m10_c00408{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m43_c00408{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00408{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);}
.m45_c00408{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);}
.v0_c00408{vertical-align:0.000000px;}
.ls0_c00408{letter-spacing:0.000000px;}
.sc__c00408{text-shadow:none;}
.sc0_c00408{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00408{-webkit-text-stroke:0px transparent;}
.sc0_c00408{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00408{word-spacing:-4.128019px;}
.ws1_c00408{word-spacing:0.000000px;}
.fc0_c00408{color:transparent;}
.fse_c00408{font-size:20.160000px;}
.fsb_c00408{font-size:34.560000px;}
.fs4_c00408{font-size:37.440000px;}
.fsa_c00408{font-size:40.320000px;}
.fs9_c00408{font-size:43.200000px;}
.fs10_c00408{font-size:46.080000px;}
.fs2_c00408{font-size:48.960000px;}
.fs1_c00408{font-size:51.840000px;}
.fs7_c00408{font-size:54.720000px;}
.fs8_c00408{font-size:57.600000px;}
.fs5_c00408{font-size:60.480000px;}
.fs3_c00408{font-size:63.360000px;}
.fsd_c00408{font-size:66.240000px;}
.fs6_c00408{font-size:69.120000px;}
.fs0_c00408{font-size:72.000000px;}
.fsc_c00408{font-size:74.880000px;}
.fsf_c00408{font-size:77.760000px;}
.y0_c00408{bottom:0.000000px;}
.y64_c00408{bottom:69.120000px;}
.y62_c00408{bottom:69.840000px;}
.y61_c00408{bottom:70.560000px;}
.y63_c00408{bottom:72.000000px;}
.y5d_c00408{bottom:113.760000px;}
.y60_c00408{bottom:114.480000px;}
.y5e_c00408{bottom:115.920000px;}
.y5f_c00408{bottom:116.640000px;}
.y5b_c00408{bottom:156.240000px;}
.y5c_c00408{bottom:157.680000px;}
.y5a_c00408{bottom:159.840000px;}
.y59_c00408{bottom:161.280000px;}
.y58_c00408{bottom:202.320000px;}
.y57_c00408{bottom:203.040000px;}
.y56_c00408{bottom:205.200000px;}
.y54_c00408{bottom:243.360000px;}
.y51_c00408{bottom:244.080000px;}
.y52_c00408{bottom:244.800000px;}
.y53_c00408{bottom:246.240000px;}
.y55_c00408{bottom:246.960000px;}
.y50_c00408{bottom:287.280000px;}
.y4f_c00408{bottom:289.440000px;}
.y4e_c00408{bottom:290.880000px;}
.y4d_c00408{bottom:291.600000px;}
.y4b_c00408{bottom:329.760000px;}
.y4c_c00408{bottom:330.480000px;}
.y47_c00408{bottom:331.200000px;}
.y4a_c00408{bottom:332.640000px;}
.y49_c00408{bottom:333.360000px;}
.y48_c00408{bottom:334.080000px;}
.y46_c00408{bottom:373.680000px;}
.y43_c00408{bottom:374.400000px;}
.y45_c00408{bottom:375.840000px;}
.y44_c00408{bottom:376.560000px;}
.y40_c00408{bottom:419.040000px;}
.y41_c00408{bottom:419.760000px;}
.y3f_c00408{bottom:420.480000px;}
.y42_c00408{bottom:422.640000px;}
.y3c_c00408{bottom:460.080000px;}
.y3e_c00408{bottom:460.800000px;}
.y3a_c00408{bottom:461.520000px;}
.y38_c00408{bottom:462.240000px;}
.y39_c00408{bottom:462.960000px;}
.y3b_c00408{bottom:463.680000px;}
.y3d_c00408{bottom:464.400000px;}
.y35_c00408{bottom:503.280000px;}
.y37_c00408{bottom:504.000000px;}
.y36_c00408{bottom:506.160000px;}
.y34_c00408{bottom:506.880000px;}
.y2f_c00408{bottom:546.480000px;}
.y30_c00408{bottom:547.200000px;}
.y31_c00408{bottom:547.920000px;}
.y33_c00408{bottom:548.640000px;}
.y32_c00408{bottom:549.360000px;}
.y2d_c00408{bottom:589.680000px;}
.y2e_c00408{bottom:591.840000px;}
.y2c_c00408{bottom:593.280000px;}
.y28_c00408{bottom:632.160000px;}
.y29_c00408{bottom:632.880000px;}
.y2a_c00408{bottom:635.040000px;}
.y27_c00408{bottom:635.760000px;}
.y2b_c00408{bottom:636.480000px;}
.y23_c00408{bottom:676.080000px;}
.y25_c00408{bottom:676.800000px;}
.y24_c00408{bottom:678.240000px;}
.y26_c00408{bottom:678.960000px;}
.y22_c00408{bottom:729.360000px;}
.y21_c00408{bottom:773.280000px;}
.y1f_c00408{bottom:774.000000px;}
.y1c_c00408{bottom:774.720000px;}
.y20_c00408{bottom:775.440000px;}
.y1e_c00408{bottom:776.160000px;}
.y1d_c00408{bottom:776.880000px;}
.y18_c00408{bottom:816.480000px;}
.y1a_c00408{bottom:817.200000px;}
.y19_c00408{bottom:818.640000px;}
.y1b_c00408{bottom:819.360000px;}
.y17_c00408{bottom:820.080000px;}
.y15_c00408{bottom:860.400000px;}
.y13_c00408{bottom:861.840000px;}
.y16_c00408{bottom:862.560000px;}
.y14_c00408{bottom:863.280000px;}
.y12_c00408{bottom:902.160000px;}
.y11_c00408{bottom:905.040000px;}
.yf_c00408{bottom:905.760000px;}
.ye_c00408{bottom:906.480000px;}
.y10_c00408{bottom:907.200000px;}
.yb_c00408{bottom:956.880000px;}
.yd_c00408{bottom:958.320000px;}
.y9_c00408{bottom:959.040000px;}
.yc_c00408{bottom:959.760000px;}
.ya_c00408{bottom:960.480000px;}
.y6_c00408{bottom:1000.800000px;}
.y7_c00408{bottom:1001.520000px;}
.y8_c00408{bottom:1003.680000px;}
.y4_c00408{bottom:1044.000000px;}
.y2_c00408{bottom:1045.440000px;}
.y3_c00408{bottom:1046.160000px;}
.y5_c00408{bottom:1046.880000px;}
.y1_c00408{bottom:1122.480000px;}
.h10_c00408{height:18.142031px;}
.hd_c00408{height:31.100625px;}
.h6_c00408{height:33.692344px;}
.hc_c00408{height:36.284062px;}
.hb_c00408{height:38.875781px;}
.h12_c00408{height:41.467500px;}
.h4_c00408{height:44.059219px;}
.h3_c00408{height:46.650937px;}
.h9_c00408{height:49.242656px;}
.ha_c00408{height:51.834375px;}
.h7_c00408{height:54.426094px;}
.h5_c00408{height:57.017812px;}
.hf_c00408{height:59.609531px;}
.h8_c00408{height:62.201250px;}
.h2_c00408{height:64.792969px;}
.he_c00408{height:67.384687px;}
.h11_c00408{height:69.976406px;}
.h0_c00408{height:1155.600000px;}
.h1_c00408{height:1155.750000px;}
.w1_c00408{width:771.750000px;}
.w0_c00408{width:771.840000px;}
.x0_c00408{left:0.000000px;}
.x2_c00408{left:55.440000px;}
.x2d_c00408{left:56.880000px;}
.x42_c00408{left:58.320000px;}
.x3_c00408{left:87.120000px;}
.x50_c00408{left:88.560000px;}
.x3a_c00408{left:98.640000px;}
.x12_c00408{left:108.720000px;}
.x33_c00408{left:110.880000px;}
.x4a_c00408{left:120.960000px;}
.x4_c00408{left:130.320000px;}
.x26_c00408{left:131.760000px;}
.x13_c00408{left:141.120000px;}
.x3e_c00408{left:142.560000px;}
.x29_c00408{left:151.920000px;}
.x43_c00408{left:153.360000px;}
.x48_c00408{left:162.000000px;}
.x1a_c00408{left:163.440000px;}
.xb_c00408{left:174.960000px;}
.x4e_c00408{left:185.040000px;}
.x1b_c00408{left:196.560000px;}
.x14_c00408{left:205.920000px;}
.x2a_c00408{left:207.360000px;}
.x5_c00408{left:218.160000px;}
.x2b_c00408{left:239.760000px;}
.x44_c00408{left:241.200000px;}
.xc_c00408{left:251.280000px;}
.x15_c00408{left:261.360000px;}
.x6_c00408{left:271.440000px;}
.x3b_c00408{left:273.600000px;}
.x1c_c00408{left:280.800000px;}
.xd_c00408{left:282.240000px;}
.x4f_c00408{left:283.680000px;}
.x3f_c00408{left:294.480000px;}
.x30_c00408{left:303.120000px;}
.x34_c00408{left:305.280000px;}
.x21_c00408{left:314.640000px;}
.x45_c00408{left:316.800000px;}
.x4b_c00408{left:326.160000px;}
.x53_c00408{left:327.600000px;}
.x16_c00408{left:335.520000px;}
.x40_c00408{left:336.960000px;}
.x52_c00408{left:338.400000px;}
.x7_c00408{left:345.600000px;}
.x1d_c00408{left:347.040000px;}
.x4c_c00408{left:360.000000px;}
.x27_c00408{left:369.360000px;}
.x46_c00408{left:370.800000px;}
.x2c_c00408{left:378.720000px;}
.x22_c00408{left:380.160000px;}
.x31_c00408{left:390.960000px;}
.x17_c00408{left:401.040000px;}
.x41_c00408{left:402.480000px;}
.x1e_c00408{left:412.560000px;}
.xe_c00408{left:422.640000px;}
.x35_c00408{left:424.080000px;}
.x1f_c00408{left:433.440000px;}
.x3c_c00408{left:436.320000px;}
.x18_c00408{left:444.960000px;}
.x36_c00408{left:455.040000px;}
.x57_c00408{left:457.920000px;}
.x20_c00408{left:467.280000px;}
.x19_c00408{left:477.360000px;}
.x23_c00408{left:488.160000px;}
.x8_c00408{left:497.520000px;}
.x3d_c00408{left:498.960000px;}
.x2e_c00408{left:509.760000px;}
.x54_c00408{left:514.080000px;}
.xf_c00408{left:520.560000px;}
.x28_c00408{left:531.360000px;}
.x37_c00408{left:542.880000px;}
.x10_c00408{left:552.960000px;}
.x49_c00408{left:554.400000px;}
.x4d_c00408{left:565.920000px;}
.x9_c00408{left:573.840000px;}
.x38_c00408{left:575.280000px;}
.x55_c00408{left:585.360000px;}
.x11_c00408{left:586.800000px;}
.x24_c00408{left:598.320000px;}
.x39_c00408{left:607.680000px;}
.x56_c00408{left:609.120000px;}
.xa_c00408{left:616.320000px;}
.x51_c00408{left:619.920000px;}
.x32_c00408{left:629.280000px;}
.x58_c00408{left:630.720000px;}
.x2f_c00408{left:650.160000px;}
.x25_c00408{left:661.680000px;}
.x1_c00408{left:669.600000px;}
.x47_c00408{left:673.200000px;}
@media print{
.v0_c00408{vertical-align:0.000000pt;}
.ls0_c00408{letter-spacing:0.000000pt;}
.ws0_c00408{word-spacing:-3.669350pt;}
.ws1_c00408{word-spacing:0.000000pt;}
.fse_c00408{font-size:17.920000pt;}
.fsb_c00408{font-size:30.720000pt;}
.fs4_c00408{font-size:33.280000pt;}
.fsa_c00408{font-size:35.840000pt;}
.fs9_c00408{font-size:38.400000pt;}
.fs10_c00408{font-size:40.960000pt;}
.fs2_c00408{font-size:43.520000pt;}
.fs1_c00408{font-size:46.080000pt;}
.fs7_c00408{font-size:48.640000pt;}
.fs8_c00408{font-size:51.200000pt;}
.fs5_c00408{font-size:53.760000pt;}
.fs3_c00408{font-size:56.320000pt;}
.fsd_c00408{font-size:58.880000pt;}
.fs6_c00408{font-size:61.440000pt;}
.fs0_c00408{font-size:64.000000pt;}
.fsc_c00408{font-size:66.560000pt;}
.fsf_c00408{font-size:69.120000pt;}
.y0_c00408{bottom:0.000000pt;}
.y64_c00408{bottom:61.440000pt;}
.y62_c00408{bottom:62.080000pt;}
.y61_c00408{bottom:62.720000pt;}
.y63_c00408{bottom:64.000000pt;}
.y5d_c00408{bottom:101.120000pt;}
.y60_c00408{bottom:101.760000pt;}
.y5e_c00408{bottom:103.040000pt;}
.y5f_c00408{bottom:103.680000pt;}
.y5b_c00408{bottom:138.880000pt;}
.y5c_c00408{bottom:140.160000pt;}
.y5a_c00408{bottom:142.080000pt;}
.y59_c00408{bottom:143.360000pt;}
.y58_c00408{bottom:179.840000pt;}
.y57_c00408{bottom:180.480000pt;}
.y56_c00408{bottom:182.400000pt;}
.y54_c00408{bottom:216.320000pt;}
.y51_c00408{bottom:216.960000pt;}
.y52_c00408{bottom:217.600000pt;}
.y53_c00408{bottom:218.880000pt;}
.y55_c00408{bottom:219.520000pt;}
.y50_c00408{bottom:255.360000pt;}
.y4f_c00408{bottom:257.280000pt;}
.y4e_c00408{bottom:258.560000pt;}
.y4d_c00408{bottom:259.200000pt;}
.y4b_c00408{bottom:293.120000pt;}
.y4c_c00408{bottom:293.760000pt;}
.y47_c00408{bottom:294.400000pt;}
.y4a_c00408{bottom:295.680000pt;}
.y49_c00408{bottom:296.320000pt;}
.y48_c00408{bottom:296.960000pt;}
.y46_c00408{bottom:332.160000pt;}
.y43_c00408{bottom:332.800000pt;}
.y45_c00408{bottom:334.080000pt;}
.y44_c00408{bottom:334.720000pt;}
.y40_c00408{bottom:372.480000pt;}
.y41_c00408{bottom:373.120000pt;}
.y3f_c00408{bottom:373.760000pt;}
.y42_c00408{bottom:375.680000pt;}
.y3c_c00408{bottom:408.960000pt;}
.y3e_c00408{bottom:409.600000pt;}
.y3a_c00408{bottom:410.240000pt;}
.y38_c00408{bottom:410.880000pt;}
.y39_c00408{bottom:411.520000pt;}
.y3b_c00408{bottom:412.160000pt;}
.y3d_c00408{bottom:412.800000pt;}
.y35_c00408{bottom:447.360000pt;}
.y37_c00408{bottom:448.000000pt;}
.y36_c00408{bottom:449.920000pt;}
.y34_c00408{bottom:450.560000pt;}
.y2f_c00408{bottom:485.760000pt;}
.y30_c00408{bottom:486.400000pt;}
.y31_c00408{bottom:487.040000pt;}
.y33_c00408{bottom:487.680000pt;}
.y32_c00408{bottom:488.320000pt;}
.y2d_c00408{bottom:524.160000pt;}
.y2e_c00408{bottom:526.080000pt;}
.y2c_c00408{bottom:527.360000pt;}
.y28_c00408{bottom:561.920000pt;}
.y29_c00408{bottom:562.560000pt;}
.y2a_c00408{bottom:564.480000pt;}
.y27_c00408{bottom:565.120000pt;}
.y2b_c00408{bottom:565.760000pt;}
.y23_c00408{bottom:600.960000pt;}
.y25_c00408{bottom:601.600000pt;}
.y24_c00408{bottom:602.880000pt;}
.y26_c00408{bottom:603.520000pt;}
.y22_c00408{bottom:648.320000pt;}
.y21_c00408{bottom:687.360000pt;}
.y1f_c00408{bottom:688.000000pt;}
.y1c_c00408{bottom:688.640000pt;}
.y20_c00408{bottom:689.280000pt;}
.y1e_c00408{bottom:689.920000pt;}
.y1d_c00408{bottom:690.560000pt;}
.y18_c00408{bottom:725.760000pt;}
.y1a_c00408{bottom:726.400000pt;}
.y19_c00408{bottom:727.680000pt;}
.y1b_c00408{bottom:728.320000pt;}
.y17_c00408{bottom:728.960000pt;}
.y15_c00408{bottom:764.800000pt;}
.y13_c00408{bottom:766.080000pt;}
.y16_c00408{bottom:766.720000pt;}
.y14_c00408{bottom:767.360000pt;}
.y12_c00408{bottom:801.920000pt;}
.y11_c00408{bottom:804.480000pt;}
.yf_c00408{bottom:805.120000pt;}
.ye_c00408{bottom:805.760000pt;}
.y10_c00408{bottom:806.400000pt;}
.yb_c00408{bottom:850.560000pt;}
.yd_c00408{bottom:851.840000pt;}
.y9_c00408{bottom:852.480000pt;}
.yc_c00408{bottom:853.120000pt;}
.ya_c00408{bottom:853.760000pt;}
.y6_c00408{bottom:889.600000pt;}
.y7_c00408{bottom:890.240000pt;}
.y8_c00408{bottom:892.160000pt;}
.y4_c00408{bottom:928.000000pt;}
.y2_c00408{bottom:929.280000pt;}
.y3_c00408{bottom:929.920000pt;}
.y5_c00408{bottom:930.560000pt;}
.y1_c00408{bottom:997.760000pt;}
.h10_c00408{height:16.126250pt;}
.hd_c00408{height:27.645000pt;}
.h6_c00408{height:29.948750pt;}
.hc_c00408{height:32.252500pt;}
.hb_c00408{height:34.556250pt;}
.h12_c00408{height:36.860000pt;}
.h4_c00408{height:39.163750pt;}
.h3_c00408{height:41.467500pt;}
.h9_c00408{height:43.771250pt;}
.ha_c00408{height:46.075000pt;}
.h7_c00408{height:48.378750pt;}
.h5_c00408{height:50.682500pt;}
.hf_c00408{height:52.986250pt;}
.h8_c00408{height:55.290000pt;}
.h2_c00408{height:57.593750pt;}
.he_c00408{height:59.897500pt;}
.h11_c00408{height:62.201250pt;}
.h0_c00408{height:1027.200000pt;}
.h1_c00408{height:1027.333333pt;}
.w1_c00408{width:686.000000pt;}
.w0_c00408{width:686.080000pt;}
.x0_c00408{left:0.000000pt;}
.x2_c00408{left:49.280000pt;}
.x2d_c00408{left:50.560000pt;}
.x42_c00408{left:51.840000pt;}
.x3_c00408{left:77.440000pt;}
.x50_c00408{left:78.720000pt;}
.x3a_c00408{left:87.680000pt;}
.x12_c00408{left:96.640000pt;}
.x33_c00408{left:98.560000pt;}
.x4a_c00408{left:107.520000pt;}
.x4_c00408{left:115.840000pt;}
.x26_c00408{left:117.120000pt;}
.x13_c00408{left:125.440000pt;}
.x3e_c00408{left:126.720000pt;}
.x29_c00408{left:135.040000pt;}
.x43_c00408{left:136.320000pt;}
.x48_c00408{left:144.000000pt;}
.x1a_c00408{left:145.280000pt;}
.xb_c00408{left:155.520000pt;}
.x4e_c00408{left:164.480000pt;}
.x1b_c00408{left:174.720000pt;}
.x14_c00408{left:183.040000pt;}
.x2a_c00408{left:184.320000pt;}
.x5_c00408{left:193.920000pt;}
.x2b_c00408{left:213.120000pt;}
.x44_c00408{left:214.400000pt;}
.xc_c00408{left:223.360000pt;}
.x15_c00408{left:232.320000pt;}
.x6_c00408{left:241.280000pt;}
.x3b_c00408{left:243.200000pt;}
.x1c_c00408{left:249.600000pt;}
.xd_c00408{left:250.880000pt;}
.x4f_c00408{left:252.160000pt;}
.x3f_c00408{left:261.760000pt;}
.x30_c00408{left:269.440000pt;}
.x34_c00408{left:271.360000pt;}
.x21_c00408{left:279.680000pt;}
.x45_c00408{left:281.600000pt;}
.x4b_c00408{left:289.920000pt;}
.x53_c00408{left:291.200000pt;}
.x16_c00408{left:298.240000pt;}
.x40_c00408{left:299.520000pt;}
.x52_c00408{left:300.800000pt;}
.x7_c00408{left:307.200000pt;}
.x1d_c00408{left:308.480000pt;}
.x4c_c00408{left:320.000000pt;}
.x27_c00408{left:328.320000pt;}
.x46_c00408{left:329.600000pt;}
.x2c_c00408{left:336.640000pt;}
.x22_c00408{left:337.920000pt;}
.x31_c00408{left:347.520000pt;}
.x17_c00408{left:356.480000pt;}
.x41_c00408{left:357.760000pt;}
.x1e_c00408{left:366.720000pt;}
.xe_c00408{left:375.680000pt;}
.x35_c00408{left:376.960000pt;}
.x1f_c00408{left:385.280000pt;}
.x3c_c00408{left:387.840000pt;}
.x18_c00408{left:395.520000pt;}
.x36_c00408{left:404.480000pt;}
.x57_c00408{left:407.040000pt;}
.x20_c00408{left:415.360000pt;}
.x19_c00408{left:424.320000pt;}
.x23_c00408{left:433.920000pt;}
.x8_c00408{left:442.240000pt;}
.x3d_c00408{left:443.520000pt;}
.x2e_c00408{left:453.120000pt;}
.x54_c00408{left:456.960000pt;}
.xf_c00408{left:462.720000pt;}
.x28_c00408{left:472.320000pt;}
.x37_c00408{left:482.560000pt;}
.x10_c00408{left:491.520000pt;}
.x49_c00408{left:492.800000pt;}
.x4d_c00408{left:503.040000pt;}
.x9_c00408{left:510.080000pt;}
.x38_c00408{left:511.360000pt;}
.x55_c00408{left:520.320000pt;}
.x11_c00408{left:521.600000pt;}
.x24_c00408{left:531.840000pt;}
.x39_c00408{left:540.160000pt;}
.x56_c00408{left:541.440000pt;}
.xa_c00408{left:547.840000pt;}
.x51_c00408{left:551.040000pt;}
.x32_c00408{left:559.360000pt;}
.x58_c00408{left:560.640000pt;}
.x2f_c00408{left:577.920000pt;}
.x25_c00408{left:588.160000pt;}
.x1_c00408{left:595.200000pt;}
.x47_c00408{left:598.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3e2a7dacb4c8a413bbdd21ab.woff2')format("woff");}.ff1_c00409{font-family:ff1_c00409;line-height:1.109863;font-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_c00409{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);}
.m42_c00409{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);}
.m2c_c00409{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);}
.m50_c00409{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m11_c00409{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m12_c00409{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00409{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m57_c00409{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m27_c00409{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m59_c00409{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m58_c00409{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mf_c00409{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00409{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1_c00409{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m26_c00409{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m14_c00409{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m21_c00409{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m2_c00409{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m41_c00409{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.md_c00409{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m40_c00409{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m13_c00409{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);}
.m34_c00409{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);}
.m32_c00409{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);}
.m31_c00409{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00409{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m8_c00409{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m29_c00409{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m54_c00409{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m0_c00409{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00409{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m22_c00409{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);}
.m4a_c00409{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m38_c00409{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00409{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);}
.m35_c00409{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);}
.me_c00409{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m20_c00409{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m15_c00409{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);}
.m2b_c00409{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m7_c00409{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);}
.m5_c00409{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);}
.m30_c00409{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m48_c00409{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00409{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);}
.m46_c00409{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m52_c00409{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);}
.m1e_c00409{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m36_c00409{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);}
.m3f_c00409{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00409{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m53_c00409{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00409{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m18_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);}
.m23_c00409{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m43_c00409{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m3_c00409{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_c00409{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m6_c00409{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);}
.m16_c00409{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m45_c00409{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00409{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m25_c00409{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);}
.mb_c00409{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m49_c00409{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);}
.m33_c00409{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m37_c00409{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00409{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m28_c00409{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00409{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);}
.m4_c00409{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_c00409{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m19_c00409{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m47_c00409{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.mc_c00409{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);}
.m51_c00409{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m17_c00409{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m39_c00409{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m55_c00409{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);}
.m4d_c00409{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00409{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00409{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m24_c00409{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);}
.m1d_c00409{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00409{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m56_c00409{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00409{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m44_c00409{transform:matrix(0.650000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.650000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.650000,0.000000,0.000000,0.250000,0,0);}
.ma_c00409{transform:matrix(0.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00409{transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);}
.v0_c00409{vertical-align:0.000000px;}
.v1_c00409{vertical-align:8.640000px;}
.ls1_c00409{letter-spacing:0.000000px;}
.ls0_c00409{letter-spacing:26.250000px;}
.sc__c00409{text-shadow:none;}
.sc0_c00409{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00409{-webkit-text-stroke:0px transparent;}
.sc0_c00409{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00409{word-spacing:0.000000px;}
.ws0_c00409{word-spacing:5.466960px;}
.fc0_c00409{color:transparent;}
.fsd_c00409{font-size:20.160000px;}
.fs10_c00409{font-size:25.920000px;}
.fs6_c00409{font-size:34.560000px;}
.fsb_c00409{font-size:37.440000px;}
.fs5_c00409{font-size:40.320000px;}
.fsa_c00409{font-size:43.200000px;}
.fsf_c00409{font-size:46.080000px;}
.fs8_c00409{font-size:48.960000px;}
.fs3_c00409{font-size:51.840000px;}
.fs9_c00409{font-size:54.720000px;}
.fsc_c00409{font-size:57.600000px;}
.fs2_c00409{font-size:60.480000px;}
.fs4_c00409{font-size:63.360000px;}
.fs1_c00409{font-size:66.240000px;}
.fs7_c00409{font-size:69.120000px;}
.fse_c00409{font-size:72.000000px;}
.fs0_c00409{font-size:74.880000px;}
.y0_c00409{bottom:0.000000px;}
.y70_c00409{bottom:37.440000px;}
.y71_c00409{bottom:38.160000px;}
.y6e_c00409{bottom:38.880000px;}
.y74_c00409{bottom:39.600000px;}
.y73_c00409{bottom:40.320000px;}
.y6f_c00409{bottom:41.040000px;}
.y72_c00409{bottom:42.480000px;}
.y6d_c00409{bottom:43.200000px;}
.y6b_c00409{bottom:81.360000px;}
.y68_c00409{bottom:82.800000px;}
.y6a_c00409{bottom:83.520000px;}
.y69_c00409{bottom:84.240000px;}
.y6c_c00409{bottom:84.960000px;}
.y67_c00409{bottom:85.680000px;}
.y64_c00409{bottom:126.000000px;}
.y63_c00409{bottom:126.720000px;}
.y62_c00409{bottom:127.440000px;}
.y61_c00409{bottom:128.160000px;}
.y66_c00409{bottom:128.880000px;}
.y65_c00409{bottom:130.320000px;}
.y5f_c00409{bottom:167.040000px;}
.y5e_c00409{bottom:170.640000px;}
.y5d_c00409{bottom:171.360000px;}
.y60_c00409{bottom:172.080000px;}
.y5c_c00409{bottom:223.200000px;}
.y5b_c00409{bottom:225.360000px;}
.y59_c00409{bottom:264.960000px;}
.y55_c00409{bottom:265.680000px;}
.y57_c00409{bottom:267.120000px;}
.y58_c00409{bottom:267.840000px;}
.y5a_c00409{bottom:268.560000px;}
.y56_c00409{bottom:269.280000px;}
.y53_c00409{bottom:308.160000px;}
.y54_c00409{bottom:308.880000px;}
.y51_c00409{bottom:310.320000px;}
.y52_c00409{bottom:311.040000px;}
.y50_c00409{bottom:311.760000px;}
.y4f_c00409{bottom:312.480000px;}
.y4d_c00409{bottom:351.360000px;}
.y4c_c00409{bottom:352.080000px;}
.y4a_c00409{bottom:353.520000px;}
.y4b_c00409{bottom:354.240000px;}
.y4e_c00409{bottom:354.960000px;}
.y44_c00409{bottom:394.560000px;}
.y46_c00409{bottom:395.280000px;}
.y49_c00409{bottom:396.000000px;}
.y47_c00409{bottom:396.720000px;}
.y45_c00409{bottom:397.440000px;}
.y48_c00409{bottom:398.160000px;}
.y42_c00409{bottom:437.040000px;}
.y41_c00409{bottom:437.760000px;}
.y40_c00409{bottom:438.480000px;}
.y3f_c00409{bottom:439.920000px;}
.y43_c00409{bottom:442.800000px;}
.y3a_c00409{bottom:480.960000px;}
.y3c_c00409{bottom:482.400000px;}
.y3e_c00409{bottom:483.120000px;}
.y3d_c00409{bottom:483.840000px;}
.y3b_c00409{bottom:484.560000px;}
.y36_c00409{bottom:524.160000px;}
.y39_c00409{bottom:524.880000px;}
.y37_c00409{bottom:527.040000px;}
.y38_c00409{bottom:527.760000px;}
.y32_c00409{bottom:568.080000px;}
.y35_c00409{bottom:568.800000px;}
.y34_c00409{bottom:570.240000px;}
.y33_c00409{bottom:570.960000px;}
.y31_c00409{bottom:571.680000px;}
.y2f_c00409{bottom:611.280000px;}
.y30_c00409{bottom:613.440000px;}
.y2e_c00409{bottom:614.160000px;}
.y2d_c00409{bottom:614.880000px;}
.y2c_c00409{bottom:654.480000px;}
.y2b_c00409{bottom:655.200000px;}
.y2a_c00409{bottom:657.360000px;}
.y29_c00409{bottom:658.080000px;}
.y28_c00409{bottom:697.680000px;}
.y27_c00409{bottom:699.120000px;}
.y24_c00409{bottom:700.560000px;}
.y26_c00409{bottom:701.280000px;}
.y25_c00409{bottom:702.000000px;}
.y21_c00409{bottom:741.600000px;}
.y23_c00409{bottom:743.760000px;}
.y20_c00409{bottom:744.480000px;}
.y22_c00409{bottom:745.200000px;}
.y1f_c00409{bottom:783.360000px;}
.y1d_c00409{bottom:786.960000px;}
.y1e_c00409{bottom:787.680000px;}
.y1b_c00409{bottom:826.560000px;}
.y1a_c00409{bottom:827.280000px;}
.y18_c00409{bottom:828.000000px;}
.y1c_c00409{bottom:830.160000px;}
.y19_c00409{bottom:830.880000px;}
.y15_c00409{bottom:869.760000px;}
.y16_c00409{bottom:870.480000px;}
.y14_c00409{bottom:871.200000px;}
.y17_c00409{bottom:872.640000px;}
.y12_c00409{bottom:873.360000px;}
.y13_c00409{bottom:874.080000px;}
.y11_c00409{bottom:912.960000px;}
.yf_c00409{bottom:913.680000px;}
.y10_c00409{bottom:915.840000px;}
.ye_c00409{bottom:916.560000px;}
.yc_c00409{bottom:967.680000px;}
.yd_c00409{bottom:968.400000px;}
.y9_c00409{bottom:1010.160000px;}
.yb_c00409{bottom:1010.880000px;}
.ya_c00409{bottom:1012.320000px;}
.y7_c00409{bottom:1013.040000px;}
.y8_c00409{bottom:1013.760000px;}
.y2_c00409{bottom:1053.360000px;}
.y3_c00409{bottom:1054.080000px;}
.y6_c00409{bottom:1055.520000px;}
.y5_c00409{bottom:1056.240000px;}
.y4_c00409{bottom:1056.960000px;}
.y1_c00409{bottom:1121.760000px;}
.h11_c00409{height:18.142031px;}
.h14_c00409{height:23.325469px;}
.h8_c00409{height:31.100625px;}
.hd_c00409{height:33.692344px;}
.h7_c00409{height:36.284062px;}
.hc_c00409{height:38.875781px;}
.h13_c00409{height:41.467500px;}
.he_c00409{height:44.059219px;}
.h5_c00409{height:46.650937px;}
.hb_c00409{height:49.242656px;}
.hf_c00409{height:51.834375px;}
.h4_c00409{height:54.426094px;}
.h6_c00409{height:57.017812px;}
.ha_c00409{height:57.882656px;}
.h3_c00409{height:59.609531px;}
.h10_c00409{height:60.474375px;}
.h9_c00409{height:62.201250px;}
.h12_c00409{height:64.792969px;}
.h2_c00409{height:67.384687px;}
.h1_c00409{height:1164.750000px;}
.h0_c00409{height:1164.960000px;}
.w0_c00409{width:777.600000px;}
.w1_c00409{width:777.750000px;}
.x0_c00409{left:0.000000px;}
.x2e_c00409{left:49.680000px;}
.x2_c00409{left:59.040000px;}
.x11_c00409{left:61.200000px;}
.x50_c00409{left:82.080000px;}
.x2b_c00409{left:91.440000px;}
.x49_c00409{left:102.240000px;}
.x2f_c00409{left:113.040000px;}
.x24_c00409{left:114.480000px;}
.x1e_c00409{left:123.120000px;}
.x4a_c00409{left:133.920000px;}
.x3f_c00409{left:144.000000px;}
.x3_c00409{left:145.440000px;}
.x1f_c00409{left:156.240000px;}
.x12_c00409{left:157.680000px;}
.xb_c00409{left:167.040000px;}
.x13_c00409{left:168.480000px;}
.x37_c00409{left:177.840000px;}
.x2c_c00409{left:188.640000px;}
.xc_c00409{left:199.440000px;}
.x32_c00409{left:200.880000px;}
.x20_c00409{left:210.240000px;}
.x30_c00409{left:220.320000px;}
.x14_c00409{left:221.760000px;}
.x4b_c00409{left:231.120000px;}
.x19_c00409{left:233.280000px;}
.x25_c00409{left:241.920000px;}
.x21_c00409{left:243.360000px;}
.x4_c00409{left:254.160000px;}
.x4e_c00409{left:263.520000px;}
.x51_c00409{left:264.960000px;}
.x40_c00409{left:274.320000px;}
.x31_c00409{left:275.760000px;}
.xd_c00409{left:285.840000px;}
.x26_c00409{left:287.280000px;}
.x5_c00409{left:297.360000px;}
.x15_c00409{left:308.160000px;}
.x1a_c00409{left:318.960000px;}
.xe_c00409{left:321.120000px;}
.x3a_c00409{left:329.760000px;}
.x4c_c00409{left:339.120000px;}
.x6_c00409{left:340.560000px;}
.x1b_c00409{left:352.080000px;}
.x38_c00409{left:362.160000px;}
.x44_c00409{left:371.520000px;}
.x3b_c00409{left:372.960000px;}
.x46_c00409{left:383.040000px;}
.x7_c00409{left:384.480000px;}
.x27_c00409{left:394.560000px;}
.x55_c00409{left:396.000000px;}
.x3c_c00409{left:403.920000px;}
.x22_c00409{left:405.360000px;}
.x33_c00409{left:414.720000px;}
.x16_c00409{left:416.160000px;}
.x28_c00409{left:426.960000px;}
.x4f_c00409{left:436.320000px;}
.x2d_c00409{left:437.760000px;}
.x47_c00409{left:448.560000px;}
.x1c_c00409{left:458.640000px;}
.x29_c00409{left:460.080000px;}
.x17_c00409{left:469.440000px;}
.x8_c00409{left:470.880000px;}
.x54_c00409{left:490.320000px;}
.x41_c00409{left:491.760000px;}
.x52_c00409{left:501.840000px;}
.x3d_c00409{left:503.280000px;}
.x34_c00409{left:513.360000px;}
.x4d_c00409{left:522.720000px;}
.xf_c00409{left:524.880000px;}
.x53_c00409{left:533.520000px;}
.x39_c00409{left:535.680000px;}
.x35_c00409{left:545.760000px;}
.x42_c00409{left:556.560000px;}
.x48_c00409{left:565.920000px;}
.x23_c00409{left:568.080000px;}
.x10_c00409{left:578.160000px;}
.x43_c00409{left:588.240000px;}
.x56_c00409{left:589.680000px;}
.x9_c00409{left:600.480000px;}
.x2a_c00409{left:610.560000px;}
.x18_c00409{left:622.080000px;}
.x36_c00409{left:632.880000px;}
.x3e_c00409{left:642.960000px;}
.x1d_c00409{left:654.480000px;}
.x1_c00409{left:665.280000px;}
.xa_c00409{left:676.080000px;}
.x45_c00409{left:697.680000px;}
@media print{
.v0_c00409{vertical-align:0.000000pt;}
.v1_c00409{vertical-align:7.680000pt;}
.ls1_c00409{letter-spacing:0.000000pt;}
.ls0_c00409{letter-spacing:23.333333pt;}
.ws1_c00409{word-spacing:0.000000pt;}
.ws0_c00409{word-spacing:4.859520pt;}
.fsd_c00409{font-size:17.920000pt;}
.fs10_c00409{font-size:23.040000pt;}
.fs6_c00409{font-size:30.720000pt;}
.fsb_c00409{font-size:33.280000pt;}
.fs5_c00409{font-size:35.840000pt;}
.fsa_c00409{font-size:38.400000pt;}
.fsf_c00409{font-size:40.960000pt;}
.fs8_c00409{font-size:43.520000pt;}
.fs3_c00409{font-size:46.080000pt;}
.fs9_c00409{font-size:48.640000pt;}
.fsc_c00409{font-size:51.200000pt;}
.fs2_c00409{font-size:53.760000pt;}
.fs4_c00409{font-size:56.320000pt;}
.fs1_c00409{font-size:58.880000pt;}
.fs7_c00409{font-size:61.440000pt;}
.fse_c00409{font-size:64.000000pt;}
.fs0_c00409{font-size:66.560000pt;}
.y0_c00409{bottom:0.000000pt;}
.y70_c00409{bottom:33.280000pt;}
.y71_c00409{bottom:33.920000pt;}
.y6e_c00409{bottom:34.560000pt;}
.y74_c00409{bottom:35.200000pt;}
.y73_c00409{bottom:35.840000pt;}
.y6f_c00409{bottom:36.480000pt;}
.y72_c00409{bottom:37.760000pt;}
.y6d_c00409{bottom:38.400000pt;}
.y6b_c00409{bottom:72.320000pt;}
.y68_c00409{bottom:73.600000pt;}
.y6a_c00409{bottom:74.240000pt;}
.y69_c00409{bottom:74.880000pt;}
.y6c_c00409{bottom:75.520000pt;}
.y67_c00409{bottom:76.160000pt;}
.y64_c00409{bottom:112.000000pt;}
.y63_c00409{bottom:112.640000pt;}
.y62_c00409{bottom:113.280000pt;}
.y61_c00409{bottom:113.920000pt;}
.y66_c00409{bottom:114.560000pt;}
.y65_c00409{bottom:115.840000pt;}
.y5f_c00409{bottom:148.480000pt;}
.y5e_c00409{bottom:151.680000pt;}
.y5d_c00409{bottom:152.320000pt;}
.y60_c00409{bottom:152.960000pt;}
.y5c_c00409{bottom:198.400000pt;}
.y5b_c00409{bottom:200.320000pt;}
.y59_c00409{bottom:235.520000pt;}
.y55_c00409{bottom:236.160000pt;}
.y57_c00409{bottom:237.440000pt;}
.y58_c00409{bottom:238.080000pt;}
.y5a_c00409{bottom:238.720000pt;}
.y56_c00409{bottom:239.360000pt;}
.y53_c00409{bottom:273.920000pt;}
.y54_c00409{bottom:274.560000pt;}
.y51_c00409{bottom:275.840000pt;}
.y52_c00409{bottom:276.480000pt;}
.y50_c00409{bottom:277.120000pt;}
.y4f_c00409{bottom:277.760000pt;}
.y4d_c00409{bottom:312.320000pt;}
.y4c_c00409{bottom:312.960000pt;}
.y4a_c00409{bottom:314.240000pt;}
.y4b_c00409{bottom:314.880000pt;}
.y4e_c00409{bottom:315.520000pt;}
.y44_c00409{bottom:350.720000pt;}
.y46_c00409{bottom:351.360000pt;}
.y49_c00409{bottom:352.000000pt;}
.y47_c00409{bottom:352.640000pt;}
.y45_c00409{bottom:353.280000pt;}
.y48_c00409{bottom:353.920000pt;}
.y42_c00409{bottom:388.480000pt;}
.y41_c00409{bottom:389.120000pt;}
.y40_c00409{bottom:389.760000pt;}
.y3f_c00409{bottom:391.040000pt;}
.y43_c00409{bottom:393.600000pt;}
.y3a_c00409{bottom:427.520000pt;}
.y3c_c00409{bottom:428.800000pt;}
.y3e_c00409{bottom:429.440000pt;}
.y3d_c00409{bottom:430.080000pt;}
.y3b_c00409{bottom:430.720000pt;}
.y36_c00409{bottom:465.920000pt;}
.y39_c00409{bottom:466.560000pt;}
.y37_c00409{bottom:468.480000pt;}
.y38_c00409{bottom:469.120000pt;}
.y32_c00409{bottom:504.960000pt;}
.y35_c00409{bottom:505.600000pt;}
.y34_c00409{bottom:506.880000pt;}
.y33_c00409{bottom:507.520000pt;}
.y31_c00409{bottom:508.160000pt;}
.y2f_c00409{bottom:543.360000pt;}
.y30_c00409{bottom:545.280000pt;}
.y2e_c00409{bottom:545.920000pt;}
.y2d_c00409{bottom:546.560000pt;}
.y2c_c00409{bottom:581.760000pt;}
.y2b_c00409{bottom:582.400000pt;}
.y2a_c00409{bottom:584.320000pt;}
.y29_c00409{bottom:584.960000pt;}
.y28_c00409{bottom:620.160000pt;}
.y27_c00409{bottom:621.440000pt;}
.y24_c00409{bottom:622.720000pt;}
.y26_c00409{bottom:623.360000pt;}
.y25_c00409{bottom:624.000000pt;}
.y21_c00409{bottom:659.200000pt;}
.y23_c00409{bottom:661.120000pt;}
.y20_c00409{bottom:661.760000pt;}
.y22_c00409{bottom:662.400000pt;}
.y1f_c00409{bottom:696.320000pt;}
.y1d_c00409{bottom:699.520000pt;}
.y1e_c00409{bottom:700.160000pt;}
.y1b_c00409{bottom:734.720000pt;}
.y1a_c00409{bottom:735.360000pt;}
.y18_c00409{bottom:736.000000pt;}
.y1c_c00409{bottom:737.920000pt;}
.y19_c00409{bottom:738.560000pt;}
.y15_c00409{bottom:773.120000pt;}
.y16_c00409{bottom:773.760000pt;}
.y14_c00409{bottom:774.400000pt;}
.y17_c00409{bottom:775.680000pt;}
.y12_c00409{bottom:776.320000pt;}
.y13_c00409{bottom:776.960000pt;}
.y11_c00409{bottom:811.520000pt;}
.yf_c00409{bottom:812.160000pt;}
.y10_c00409{bottom:814.080000pt;}
.ye_c00409{bottom:814.720000pt;}
.yc_c00409{bottom:860.160000pt;}
.yd_c00409{bottom:860.800000pt;}
.y9_c00409{bottom:897.920000pt;}
.yb_c00409{bottom:898.560000pt;}
.ya_c00409{bottom:899.840000pt;}
.y7_c00409{bottom:900.480000pt;}
.y8_c00409{bottom:901.120000pt;}
.y2_c00409{bottom:936.320000pt;}
.y3_c00409{bottom:936.960000pt;}
.y6_c00409{bottom:938.240000pt;}
.y5_c00409{bottom:938.880000pt;}
.y4_c00409{bottom:939.520000pt;}
.y1_c00409{bottom:997.120000pt;}
.h11_c00409{height:16.126250pt;}
.h14_c00409{height:20.733750pt;}
.h8_c00409{height:27.645000pt;}
.hd_c00409{height:29.948750pt;}
.h7_c00409{height:32.252500pt;}
.hc_c00409{height:34.556250pt;}
.h13_c00409{height:36.860000pt;}
.he_c00409{height:39.163750pt;}
.h5_c00409{height:41.467500pt;}
.hb_c00409{height:43.771250pt;}
.hf_c00409{height:46.075000pt;}
.h4_c00409{height:48.378750pt;}
.h6_c00409{height:50.682500pt;}
.ha_c00409{height:51.451250pt;}
.h3_c00409{height:52.986250pt;}
.h10_c00409{height:53.755000pt;}
.h9_c00409{height:55.290000pt;}
.h12_c00409{height:57.593750pt;}
.h2_c00409{height:59.897500pt;}
.h1_c00409{height:1035.333333pt;}
.h0_c00409{height:1035.520000pt;}
.w0_c00409{width:691.200000pt;}
.w1_c00409{width:691.333333pt;}
.x0_c00409{left:0.000000pt;}
.x2e_c00409{left:44.160000pt;}
.x2_c00409{left:52.480000pt;}
.x11_c00409{left:54.400000pt;}
.x50_c00409{left:72.960000pt;}
.x2b_c00409{left:81.280000pt;}
.x49_c00409{left:90.880000pt;}
.x2f_c00409{left:100.480000pt;}
.x24_c00409{left:101.760000pt;}
.x1e_c00409{left:109.440000pt;}
.x4a_c00409{left:119.040000pt;}
.x3f_c00409{left:128.000000pt;}
.x3_c00409{left:129.280000pt;}
.x1f_c00409{left:138.880000pt;}
.x12_c00409{left:140.160000pt;}
.xb_c00409{left:148.480000pt;}
.x13_c00409{left:149.760000pt;}
.x37_c00409{left:158.080000pt;}
.x2c_c00409{left:167.680000pt;}
.xc_c00409{left:177.280000pt;}
.x32_c00409{left:178.560000pt;}
.x20_c00409{left:186.880000pt;}
.x30_c00409{left:195.840000pt;}
.x14_c00409{left:197.120000pt;}
.x4b_c00409{left:205.440000pt;}
.x19_c00409{left:207.360000pt;}
.x25_c00409{left:215.040000pt;}
.x21_c00409{left:216.320000pt;}
.x4_c00409{left:225.920000pt;}
.x4e_c00409{left:234.240000pt;}
.x51_c00409{left:235.520000pt;}
.x40_c00409{left:243.840000pt;}
.x31_c00409{left:245.120000pt;}
.xd_c00409{left:254.080000pt;}
.x26_c00409{left:255.360000pt;}
.x5_c00409{left:264.320000pt;}
.x15_c00409{left:273.920000pt;}
.x1a_c00409{left:283.520000pt;}
.xe_c00409{left:285.440000pt;}
.x3a_c00409{left:293.120000pt;}
.x4c_c00409{left:301.440000pt;}
.x6_c00409{left:302.720000pt;}
.x1b_c00409{left:312.960000pt;}
.x38_c00409{left:321.920000pt;}
.x44_c00409{left:330.240000pt;}
.x3b_c00409{left:331.520000pt;}
.x46_c00409{left:340.480000pt;}
.x7_c00409{left:341.760000pt;}
.x27_c00409{left:350.720000pt;}
.x55_c00409{left:352.000000pt;}
.x3c_c00409{left:359.040000pt;}
.x22_c00409{left:360.320000pt;}
.x33_c00409{left:368.640000pt;}
.x16_c00409{left:369.920000pt;}
.x28_c00409{left:379.520000pt;}
.x4f_c00409{left:387.840000pt;}
.x2d_c00409{left:389.120000pt;}
.x47_c00409{left:398.720000pt;}
.x1c_c00409{left:407.680000pt;}
.x29_c00409{left:408.960000pt;}
.x17_c00409{left:417.280000pt;}
.x8_c00409{left:418.560000pt;}
.x54_c00409{left:435.840000pt;}
.x41_c00409{left:437.120000pt;}
.x52_c00409{left:446.080000pt;}
.x3d_c00409{left:447.360000pt;}
.x34_c00409{left:456.320000pt;}
.x4d_c00409{left:464.640000pt;}
.xf_c00409{left:466.560000pt;}
.x53_c00409{left:474.240000pt;}
.x39_c00409{left:476.160000pt;}
.x35_c00409{left:485.120000pt;}
.x42_c00409{left:494.720000pt;}
.x48_c00409{left:503.040000pt;}
.x23_c00409{left:504.960000pt;}
.x10_c00409{left:513.920000pt;}
.x43_c00409{left:522.880000pt;}
.x56_c00409{left:524.160000pt;}
.x9_c00409{left:533.760000pt;}
.x2a_c00409{left:542.720000pt;}
.x18_c00409{left:552.960000pt;}
.x36_c00409{left:562.560000pt;}
.x3e_c00409{left:571.520000pt;}
.x1d_c00409{left:581.760000pt;}
.x1_c00409{left:591.360000pt;}
.xa_c00409{left:600.960000pt;}
.x45_c00409{left:620.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ea34da30fc02147bd0fd2df2.woff2')format("woff");}.ff1_c00410{font-family:ff1_c00410;line-height:1.109863;font-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_c00410{transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);}
.m19_c00410{transform:matrix(0.224925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224925,0.000000,0.000000,0.250000,0,0);}
.me_c00410{transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);}
.mf_c00410{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);}
.m5b_c00410{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);}
.m5c_c00410{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);}
.m43_c00410{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00410{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m58_c00410{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m57_c00410{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m26_c00410{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m23_c00410{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m47_c00410{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m51_c00410{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m11_c00410{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m28_c00410{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00410{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00410{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m6_c00410{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m30_c00410{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m35_c00410{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1_c00410{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00410{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);}
.m4d_c00410{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m0_c00410{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m2_c00410{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m14_c00410{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m21_c00410{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.ma_c00410{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);}
.m2b_c00410{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.md_c00410{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);}
.m3c_c00410{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);}
.m40_c00410{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m25_c00410{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m32_c00410{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);}
.m7_c00410{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m20_c00410{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00410{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);}
.m9_c00410{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m13_c00410{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);}
.m3_c00410{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m16_c00410{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);}
.m3a_c00410{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00410{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m31_c00410{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m41_c00410{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);}
.m48_c00410{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m50_c00410{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);}
.m49_c00410{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);}
.m4a_c00410{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m38_c00410{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00410{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m4_c00410{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m56_c00410{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);}
.m4b_c00410{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m8_c00410{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m36_c00410{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);}
.m15_c00410{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00410{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);}
.m10_c00410{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m33_c00410{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m53_c00410{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m12_c00410{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m37_c00410{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);}
.m54_c00410{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00410{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m5_c00410{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00410{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);}
.m42_c00410{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00410{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00410{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m39_c00410{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m22_c00410{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00410{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);}
.m18_c00410{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00410{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00410{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m46_c00410{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m59_c00410{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.mb_c00410{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m55_c00410{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m45_c00410{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m24_c00410{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);}
.m52_c00410{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00410{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00410{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);}
.m3d_c00410{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);}
.m44_c00410{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.mc_c00410{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00410{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m34_c00410{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m27_c00410{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m29_c00410{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);}
.m5f_c00410{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m17_c00410{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00410{transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);}
.v2_c00410{vertical-align:-11.520000px;}
.v1_c00410{vertical-align:-2.880000px;}
.v0_c00410{vertical-align:0.000000px;}
.ls0_c00410{letter-spacing:0.000000px;}
.sc__c00410{text-shadow:none;}
.sc0_c00410{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00410{-webkit-text-stroke:0px transparent;}
.sc0_c00410{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00410{word-spacing:-5.060640px;}
.ws2_c00410{word-spacing:-3.388800px;}
.ws0_c00410{word-spacing:-1.153339px;}
.ws4_c00410{word-spacing:0.000000px;}
.ws3_c00410{word-spacing:0.428160px;}
.fc0_c00410{color:transparent;}
.fsb_c00410{font-size:34.560000px;}
.fs7_c00410{font-size:37.440000px;}
.fse_c00410{font-size:40.320000px;}
.fsd_c00410{font-size:43.200000px;}
.fsc_c00410{font-size:46.080000px;}
.fs5_c00410{font-size:48.960000px;}
.fs1_c00410{font-size:51.840000px;}
.fsa_c00410{font-size:54.720000px;}
.fs6_c00410{font-size:57.600000px;}
.fs3_c00410{font-size:60.480000px;}
.fs4_c00410{font-size:63.360000px;}
.fs2_c00410{font-size:66.240000px;}
.fs8_c00410{font-size:69.120000px;}
.fsf_c00410{font-size:72.000000px;}
.fs0_c00410{font-size:74.880000px;}
.fs10_c00410{font-size:77.760000px;}
.fs9_c00410{font-size:95.040000px;}
.y0_c00410{bottom:0.000000px;}
.y75_c00410{bottom:38.160000px;}
.y76_c00410{bottom:38.880000px;}
.y78_c00410{bottom:41.040000px;}
.y74_c00410{bottom:41.760000px;}
.y79_c00410{bottom:42.480000px;}
.y77_c00410{bottom:43.200000px;}
.y73_c00410{bottom:44.640000px;}
.y70_c00410{bottom:79.920000px;}
.y71_c00410{bottom:80.640000px;}
.y72_c00410{bottom:81.360000px;}
.y6f_c00410{bottom:83.520000px;}
.y6e_c00410{bottom:84.960000px;}
.y6d_c00410{bottom:124.560000px;}
.y6a_c00410{bottom:126.000000px;}
.y6b_c00410{bottom:126.720000px;}
.y6c_c00410{bottom:127.440000px;}
.y69_c00410{bottom:128.160000px;}
.y68_c00410{bottom:128.880000px;}
.y67_c00410{bottom:168.480000px;}
.y64_c00410{bottom:169.200000px;}
.y66_c00410{bottom:169.920000px;}
.y63_c00410{bottom:170.640000px;}
.y62_c00410{bottom:171.360000px;}
.y65_c00410{bottom:175.680000px;}
.y5e_c00410{bottom:210.960000px;}
.y60_c00410{bottom:211.680000px;}
.y5f_c00410{bottom:212.400000px;}
.y5d_c00410{bottom:213.840000px;}
.y61_c00410{bottom:214.560000px;}
.y5c_c00410{bottom:266.400000px;}
.y5b_c00410{bottom:269.280000px;}
.y59_c00410{bottom:308.160000px;}
.y58_c00410{bottom:308.880000px;}
.y56_c00410{bottom:309.600000px;}
.y57_c00410{bottom:311.760000px;}
.y5a_c00410{bottom:312.480000px;}
.y51_c00410{bottom:352.080000px;}
.y52_c00410{bottom:352.800000px;}
.y55_c00410{bottom:353.520000px;}
.y53_c00410{bottom:354.240000px;}
.y54_c00410{bottom:354.960000px;}
.y50_c00410{bottom:355.680000px;}
.y4c_c00410{bottom:395.280000px;}
.y4d_c00410{bottom:396.000000px;}
.y4f_c00410{bottom:396.720000px;}
.y4b_c00410{bottom:398.160000px;}
.y4e_c00410{bottom:398.880000px;}
.y48_c00410{bottom:438.480000px;}
.y46_c00410{bottom:439.200000px;}
.y49_c00410{bottom:441.360000px;}
.y47_c00410{bottom:442.080000px;}
.y4a_c00410{bottom:442.800000px;}
.y43_c00410{bottom:482.400000px;}
.y40_c00410{bottom:483.120000px;}
.y42_c00410{bottom:483.840000px;}
.y44_c00410{bottom:484.560000px;}
.y3f_c00410{bottom:485.280000px;}
.y45_c00410{bottom:486.000000px;}
.y41_c00410{bottom:490.320000px;}
.y3d_c00410{bottom:525.600000px;}
.y3a_c00410{bottom:526.320000px;}
.y3b_c00410{bottom:527.760000px;}
.y3e_c00410{bottom:528.480000px;}
.y3c_c00410{bottom:529.200000px;}
.y38_c00410{bottom:568.080000px;}
.y36_c00410{bottom:568.800000px;}
.y35_c00410{bottom:570.960000px;}
.y37_c00410{bottom:571.680000px;}
.y39_c00410{bottom:572.400000px;}
.y33_c00410{bottom:622.800000px;}
.y34_c00410{bottom:624.960000px;}
.y32_c00410{bottom:625.680000px;}
.y2e_c00410{bottom:666.000000px;}
.y31_c00410{bottom:667.440000px;}
.y30_c00410{bottom:668.160000px;}
.y2d_c00410{bottom:668.880000px;}
.y2f_c00410{bottom:669.600000px;}
.y2a_c00410{bottom:708.480000px;}
.y2b_c00410{bottom:709.200000px;}
.y2c_c00410{bottom:710.640000px;}
.y29_c00410{bottom:711.360000px;}
.y28_c00410{bottom:712.080000px;}
.y27_c00410{bottom:751.680000px;}
.y25_c00410{bottom:753.840000px;}
.y26_c00410{bottom:754.560000px;}
.y22_c00410{bottom:795.600000px;}
.y21_c00410{bottom:797.040000px;}
.y24_c00410{bottom:797.760000px;}
.y23_c00410{bottom:798.480000px;}
.y1f_c00410{bottom:836.640000px;}
.y20_c00410{bottom:838.080000px;}
.y1e_c00410{bottom:840.240000px;}
.y1c_c00410{bottom:840.960000px;}
.y1d_c00410{bottom:841.680000px;}
.y1a_c00410{bottom:880.560000px;}
.y16_c00410{bottom:881.280000px;}
.y19_c00410{bottom:882.000000px;}
.y17_c00410{bottom:883.440000px;}
.y18_c00410{bottom:884.160000px;}
.y1b_c00410{bottom:884.880000px;}
.y15_c00410{bottom:924.480000px;}
.y12_c00410{bottom:925.200000px;}
.y14_c00410{bottom:928.080000px;}
.y13_c00410{bottom:928.800000px;}
.yd_c00410{bottom:967.680000px;}
.ye_c00410{bottom:969.120000px;}
.y11_c00410{bottom:969.840000px;}
.y10_c00410{bottom:970.560000px;}
.yf_c00410{bottom:971.280000px;}
.yb_c00410{bottom:1010.160000px;}
.yc_c00410{bottom:1010.880000px;}
.ya_c00410{bottom:1011.600000px;}
.y7_c00410{bottom:1012.320000px;}
.y6_c00410{bottom:1013.760000px;}
.y8_c00410{bottom:1014.480000px;}
.y9_c00410{bottom:1015.200000px;}
.y3_c00410{bottom:1054.800000px;}
.y5_c00410{bottom:1055.520000px;}
.y2_c00410{bottom:1056.960000px;}
.y4_c00410{bottom:1057.680000px;}
.y1_c00410{bottom:1118.880000px;}
.hd_c00410{height:31.100625px;}
.h9_c00410{height:33.692344px;}
.h10_c00410{height:36.284062px;}
.hf_c00410{height:38.875781px;}
.he_c00410{height:41.467500px;}
.h7_c00410{height:44.059219px;}
.h3_c00410{height:46.650937px;}
.hc_c00410{height:49.242656px;}
.h8_c00410{height:51.834375px;}
.h5_c00410{height:54.426094px;}
.h6_c00410{height:57.017812px;}
.h4_c00410{height:59.609531px;}
.ha_c00410{height:62.201250px;}
.h11_c00410{height:64.792969px;}
.h2_c00410{height:67.384687px;}
.h12_c00410{height:69.976406px;}
.hb_c00410{height:85.526719px;}
.h1_c00410{height:1164.750000px;}
.h0_c00410{height:1164.960000px;}
.w0_c00410{width:776.160000px;}
.w1_c00410{width:776.250000px;}
.x0_c00410{left:0.000000px;}
.x2_c00410{left:59.040000px;}
.xd_c00410{left:60.480000px;}
.x4f_c00410{left:61.920000px;}
.x14_c00410{left:80.640000px;}
.x2b_c00410{left:90.720000px;}
.x3_c00410{left:92.160000px;}
.x39_c00410{left:101.520000px;}
.xe_c00410{left:113.040000px;}
.x25_c00410{left:122.400000px;}
.x45_c00410{left:124.560000px;}
.x3d_c00410{left:134.640000px;}
.x15_c00410{left:136.080000px;}
.x33_c00410{left:156.960000px;}
.x36_c00410{left:167.040000px;}
.x48_c00410{left:177.840000px;}
.x41_c00410{left:180.720000px;}
.x4_c00410{left:187.920000px;}
.x26_c00410{left:189.360000px;}
.x3e_c00410{left:198.720000px;}
.x2c_c00410{left:200.160000px;}
.xf_c00410{left:210.960000px;}
.x16_c00410{left:221.760000px;}
.x5_c00410{left:231.120000px;}
.x3a_c00410{left:232.560000px;}
.x10_c00410{left:243.360000px;}
.x34_c00410{left:254.160000px;}
.x27_c00410{left:255.600000px;}
.x42_c00410{left:264.240000px;}
.x11_c00410{left:275.040000px;}
.x50_c00410{left:276.480000px;}
.x1b_c00410{left:285.840000px;}
.x43_c00410{left:287.280000px;}
.x4c_c00410{left:289.440000px;}
.x6_c00410{left:296.640000px;}
.x2d_c00410{left:298.080000px;}
.x17_c00410{left:308.880000px;}
.x52_c00410{left:318.960000px;}
.x46_c00410{left:329.040000px;}
.x1c_c00410{left:330.480000px;}
.x7_c00410{left:339.120000px;}
.x4a_c00410{left:340.560000px;}
.x2e_c00410{left:352.080000px;}
.x1d_c00410{left:362.160000px;}
.x21_c00410{left:372.960000px;}
.x30_c00410{left:384.480000px;}
.x37_c00410{left:393.840000px;}
.x4d_c00410{left:395.280000px;}
.x22_c00410{left:406.080000px;}
.x18_c00410{left:416.160000px;}
.x44_c00410{left:427.680000px;}
.x31_c00410{left:436.320000px;}
.x3f_c00410{left:438.480000px;}
.x1e_c00410{left:447.840000px;}
.x19_c00410{left:449.280000px;}
.x49_c00410{left:459.360000px;}
.x2f_c00410{left:470.880000px;}
.x28_c00410{left:480.960000px;}
.x47_c00410{left:482.400000px;}
.x3b_c00410{left:491.040000px;}
.x8_c00410{left:493.200000px;}
.x1a_c00410{left:502.560000px;}
.x12_c00410{left:504.000000px;}
.x23_c00410{left:512.640000px;}
.x9_c00410{left:514.080000px;}
.x29_c00410{left:524.160000px;}
.x1f_c00410{left:525.600000px;}
.x32_c00410{left:534.960000px;}
.xa_c00410{left:545.760000px;}
.x3c_c00410{left:557.280000px;}
.x4e_c00410{left:568.080000px;}
.xb_c00410{left:579.600000px;}
.x2a_c00410{left:589.680000px;}
.x53_c00410{left:591.120000px;}
.x40_c00410{left:600.480000px;}
.x24_c00410{left:611.280000px;}
.x51_c00410{left:621.360000px;}
.x20_c00410{left:622.800000px;}
.x38_c00410{left:632.880000px;}
.x4b_c00410{left:643.680000px;}
.x1_c00410{left:654.480000px;}
.x35_c00410{left:655.920000px;}
.xc_c00410{left:665.280000px;}
.x13_c00410{left:678.240000px;}
@media print{
.v2_c00410{vertical-align:-10.240000pt;}
.v1_c00410{vertical-align:-2.560000pt;}
.v0_c00410{vertical-align:0.000000pt;}
.ls0_c00410{letter-spacing:0.000000pt;}
.ws1_c00410{word-spacing:-4.498347pt;}
.ws2_c00410{word-spacing:-3.012267pt;}
.ws0_c00410{word-spacing:-1.025190pt;}
.ws4_c00410{word-spacing:0.000000pt;}
.ws3_c00410{word-spacing:0.380587pt;}
.fsb_c00410{font-size:30.720000pt;}
.fs7_c00410{font-size:33.280000pt;}
.fse_c00410{font-size:35.840000pt;}
.fsd_c00410{font-size:38.400000pt;}
.fsc_c00410{font-size:40.960000pt;}
.fs5_c00410{font-size:43.520000pt;}
.fs1_c00410{font-size:46.080000pt;}
.fsa_c00410{font-size:48.640000pt;}
.fs6_c00410{font-size:51.200000pt;}
.fs3_c00410{font-size:53.760000pt;}
.fs4_c00410{font-size:56.320000pt;}
.fs2_c00410{font-size:58.880000pt;}
.fs8_c00410{font-size:61.440000pt;}
.fsf_c00410{font-size:64.000000pt;}
.fs0_c00410{font-size:66.560000pt;}
.fs10_c00410{font-size:69.120000pt;}
.fs9_c00410{font-size:84.480000pt;}
.y0_c00410{bottom:0.000000pt;}
.y75_c00410{bottom:33.920000pt;}
.y76_c00410{bottom:34.560000pt;}
.y78_c00410{bottom:36.480000pt;}
.y74_c00410{bottom:37.120000pt;}
.y79_c00410{bottom:37.760000pt;}
.y77_c00410{bottom:38.400000pt;}
.y73_c00410{bottom:39.680000pt;}
.y70_c00410{bottom:71.040000pt;}
.y71_c00410{bottom:71.680000pt;}
.y72_c00410{bottom:72.320000pt;}
.y6f_c00410{bottom:74.240000pt;}
.y6e_c00410{bottom:75.520000pt;}
.y6d_c00410{bottom:110.720000pt;}
.y6a_c00410{bottom:112.000000pt;}
.y6b_c00410{bottom:112.640000pt;}
.y6c_c00410{bottom:113.280000pt;}
.y69_c00410{bottom:113.920000pt;}
.y68_c00410{bottom:114.560000pt;}
.y67_c00410{bottom:149.760000pt;}
.y64_c00410{bottom:150.400000pt;}
.y66_c00410{bottom:151.040000pt;}
.y63_c00410{bottom:151.680000pt;}
.y62_c00410{bottom:152.320000pt;}
.y65_c00410{bottom:156.160000pt;}
.y5e_c00410{bottom:187.520000pt;}
.y60_c00410{bottom:188.160000pt;}
.y5f_c00410{bottom:188.800000pt;}
.y5d_c00410{bottom:190.080000pt;}
.y61_c00410{bottom:190.720000pt;}
.y5c_c00410{bottom:236.800000pt;}
.y5b_c00410{bottom:239.360000pt;}
.y59_c00410{bottom:273.920000pt;}
.y58_c00410{bottom:274.560000pt;}
.y56_c00410{bottom:275.200000pt;}
.y57_c00410{bottom:277.120000pt;}
.y5a_c00410{bottom:277.760000pt;}
.y51_c00410{bottom:312.960000pt;}
.y52_c00410{bottom:313.600000pt;}
.y55_c00410{bottom:314.240000pt;}
.y53_c00410{bottom:314.880000pt;}
.y54_c00410{bottom:315.520000pt;}
.y50_c00410{bottom:316.160000pt;}
.y4c_c00410{bottom:351.360000pt;}
.y4d_c00410{bottom:352.000000pt;}
.y4f_c00410{bottom:352.640000pt;}
.y4b_c00410{bottom:353.920000pt;}
.y4e_c00410{bottom:354.560000pt;}
.y48_c00410{bottom:389.760000pt;}
.y46_c00410{bottom:390.400000pt;}
.y49_c00410{bottom:392.320000pt;}
.y47_c00410{bottom:392.960000pt;}
.y4a_c00410{bottom:393.600000pt;}
.y43_c00410{bottom:428.800000pt;}
.y40_c00410{bottom:429.440000pt;}
.y42_c00410{bottom:430.080000pt;}
.y44_c00410{bottom:430.720000pt;}
.y3f_c00410{bottom:431.360000pt;}
.y45_c00410{bottom:432.000000pt;}
.y41_c00410{bottom:435.840000pt;}
.y3d_c00410{bottom:467.200000pt;}
.y3a_c00410{bottom:467.840000pt;}
.y3b_c00410{bottom:469.120000pt;}
.y3e_c00410{bottom:469.760000pt;}
.y3c_c00410{bottom:470.400000pt;}
.y38_c00410{bottom:504.960000pt;}
.y36_c00410{bottom:505.600000pt;}
.y35_c00410{bottom:507.520000pt;}
.y37_c00410{bottom:508.160000pt;}
.y39_c00410{bottom:508.800000pt;}
.y33_c00410{bottom:553.600000pt;}
.y34_c00410{bottom:555.520000pt;}
.y32_c00410{bottom:556.160000pt;}
.y2e_c00410{bottom:592.000000pt;}
.y31_c00410{bottom:593.280000pt;}
.y30_c00410{bottom:593.920000pt;}
.y2d_c00410{bottom:594.560000pt;}
.y2f_c00410{bottom:595.200000pt;}
.y2a_c00410{bottom:629.760000pt;}
.y2b_c00410{bottom:630.400000pt;}
.y2c_c00410{bottom:631.680000pt;}
.y29_c00410{bottom:632.320000pt;}
.y28_c00410{bottom:632.960000pt;}
.y27_c00410{bottom:668.160000pt;}
.y25_c00410{bottom:670.080000pt;}
.y26_c00410{bottom:670.720000pt;}
.y22_c00410{bottom:707.200000pt;}
.y21_c00410{bottom:708.480000pt;}
.y24_c00410{bottom:709.120000pt;}
.y23_c00410{bottom:709.760000pt;}
.y1f_c00410{bottom:743.680000pt;}
.y20_c00410{bottom:744.960000pt;}
.y1e_c00410{bottom:746.880000pt;}
.y1c_c00410{bottom:747.520000pt;}
.y1d_c00410{bottom:748.160000pt;}
.y1a_c00410{bottom:782.720000pt;}
.y16_c00410{bottom:783.360000pt;}
.y19_c00410{bottom:784.000000pt;}
.y17_c00410{bottom:785.280000pt;}
.y18_c00410{bottom:785.920000pt;}
.y1b_c00410{bottom:786.560000pt;}
.y15_c00410{bottom:821.760000pt;}
.y12_c00410{bottom:822.400000pt;}
.y14_c00410{bottom:824.960000pt;}
.y13_c00410{bottom:825.600000pt;}
.yd_c00410{bottom:860.160000pt;}
.ye_c00410{bottom:861.440000pt;}
.y11_c00410{bottom:862.080000pt;}
.y10_c00410{bottom:862.720000pt;}
.yf_c00410{bottom:863.360000pt;}
.yb_c00410{bottom:897.920000pt;}
.yc_c00410{bottom:898.560000pt;}
.ya_c00410{bottom:899.200000pt;}
.y7_c00410{bottom:899.840000pt;}
.y6_c00410{bottom:901.120000pt;}
.y8_c00410{bottom:901.760000pt;}
.y9_c00410{bottom:902.400000pt;}
.y3_c00410{bottom:937.600000pt;}
.y5_c00410{bottom:938.240000pt;}
.y2_c00410{bottom:939.520000pt;}
.y4_c00410{bottom:940.160000pt;}
.y1_c00410{bottom:994.560000pt;}
.hd_c00410{height:27.645000pt;}
.h9_c00410{height:29.948750pt;}
.h10_c00410{height:32.252500pt;}
.hf_c00410{height:34.556250pt;}
.he_c00410{height:36.860000pt;}
.h7_c00410{height:39.163750pt;}
.h3_c00410{height:41.467500pt;}
.hc_c00410{height:43.771250pt;}
.h8_c00410{height:46.075000pt;}
.h5_c00410{height:48.378750pt;}
.h6_c00410{height:50.682500pt;}
.h4_c00410{height:52.986250pt;}
.ha_c00410{height:55.290000pt;}
.h11_c00410{height:57.593750pt;}
.h2_c00410{height:59.897500pt;}
.h12_c00410{height:62.201250pt;}
.hb_c00410{height:76.023750pt;}
.h1_c00410{height:1035.333333pt;}
.h0_c00410{height:1035.520000pt;}
.w0_c00410{width:689.920000pt;}
.w1_c00410{width:690.000000pt;}
.x0_c00410{left:0.000000pt;}
.x2_c00410{left:52.480000pt;}
.xd_c00410{left:53.760000pt;}
.x4f_c00410{left:55.040000pt;}
.x14_c00410{left:71.680000pt;}
.x2b_c00410{left:80.640000pt;}
.x3_c00410{left:81.920000pt;}
.x39_c00410{left:90.240000pt;}
.xe_c00410{left:100.480000pt;}
.x25_c00410{left:108.800000pt;}
.x45_c00410{left:110.720000pt;}
.x3d_c00410{left:119.680000pt;}
.x15_c00410{left:120.960000pt;}
.x33_c00410{left:139.520000pt;}
.x36_c00410{left:148.480000pt;}
.x48_c00410{left:158.080000pt;}
.x41_c00410{left:160.640000pt;}
.x4_c00410{left:167.040000pt;}
.x26_c00410{left:168.320000pt;}
.x3e_c00410{left:176.640000pt;}
.x2c_c00410{left:177.920000pt;}
.xf_c00410{left:187.520000pt;}
.x16_c00410{left:197.120000pt;}
.x5_c00410{left:205.440000pt;}
.x3a_c00410{left:206.720000pt;}
.x10_c00410{left:216.320000pt;}
.x34_c00410{left:225.920000pt;}
.x27_c00410{left:227.200000pt;}
.x42_c00410{left:234.880000pt;}
.x11_c00410{left:244.480000pt;}
.x50_c00410{left:245.760000pt;}
.x1b_c00410{left:254.080000pt;}
.x43_c00410{left:255.360000pt;}
.x4c_c00410{left:257.280000pt;}
.x6_c00410{left:263.680000pt;}
.x2d_c00410{left:264.960000pt;}
.x17_c00410{left:274.560000pt;}
.x52_c00410{left:283.520000pt;}
.x46_c00410{left:292.480000pt;}
.x1c_c00410{left:293.760000pt;}
.x7_c00410{left:301.440000pt;}
.x4a_c00410{left:302.720000pt;}
.x2e_c00410{left:312.960000pt;}
.x1d_c00410{left:321.920000pt;}
.x21_c00410{left:331.520000pt;}
.x30_c00410{left:341.760000pt;}
.x37_c00410{left:350.080000pt;}
.x4d_c00410{left:351.360000pt;}
.x22_c00410{left:360.960000pt;}
.x18_c00410{left:369.920000pt;}
.x44_c00410{left:380.160000pt;}
.x31_c00410{left:387.840000pt;}
.x3f_c00410{left:389.760000pt;}
.x1e_c00410{left:398.080000pt;}
.x19_c00410{left:399.360000pt;}
.x49_c00410{left:408.320000pt;}
.x2f_c00410{left:418.560000pt;}
.x28_c00410{left:427.520000pt;}
.x47_c00410{left:428.800000pt;}
.x3b_c00410{left:436.480000pt;}
.x8_c00410{left:438.400000pt;}
.x1a_c00410{left:446.720000pt;}
.x12_c00410{left:448.000000pt;}
.x23_c00410{left:455.680000pt;}
.x9_c00410{left:456.960000pt;}
.x29_c00410{left:465.920000pt;}
.x1f_c00410{left:467.200000pt;}
.x32_c00410{left:475.520000pt;}
.xa_c00410{left:485.120000pt;}
.x3c_c00410{left:495.360000pt;}
.x4e_c00410{left:504.960000pt;}
.xb_c00410{left:515.200000pt;}
.x2a_c00410{left:524.160000pt;}
.x53_c00410{left:525.440000pt;}
.x40_c00410{left:533.760000pt;}
.x24_c00410{left:543.360000pt;}
.x51_c00410{left:552.320000pt;}
.x20_c00410{left:553.600000pt;}
.x38_c00410{left:562.560000pt;}
.x4b_c00410{left:572.160000pt;}
.x1_c00410{left:581.760000pt;}
.x35_c00410{left:583.040000pt;}
.xc_c00410{left:591.360000pt;}
.x13_c00410{left:602.880000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e31bf5d70747e85fc36e220f.woff2')format("woff");}.ff1_c00411{font-family:ff1_c00411;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4f_c00411{transform:matrix(0.228025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228025,0.000000,0.000000,0.250000,0,0);}
.m46_c00411{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m41_c00411{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m42_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);}
.m52_c00411{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);}
.m4e_c00411{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m45_c00411{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00411{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m17_c00411{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00411{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m10_c00411{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00411{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m43_c00411{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m28_c00411{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00411{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m40_c00411{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m4_c00411{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m9_c00411{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00411{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00411{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m48_c00411{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1_c00411{transform:matrix(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);}
.m49_c00411{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m27_c00411{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m8_c00411{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);}
.m55_c00411{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m6_c00411{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00411{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00411{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);}
.m54_c00411{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.ma_c00411{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00411{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);}
.m1c_c00411{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);}
.m44_c00411{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m37_c00411{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.md_c00411{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m0_c00411{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m23_c00411{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_c00411{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);}
.m19_c00411{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m13_c00411{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);}
.m5_c00411{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);}
.m3c_c00411{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);}
.mf_c00411{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m47_c00411{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m24_c00411{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);}
.m4d_c00411{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m18_c00411{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);}
.m12_c00411{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.mc_c00411{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);}
.m14_c00411{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);}
.m3_c00411{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m22_c00411{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m11_c00411{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m53_c00411{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m7_c00411{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);}
.m2d_c00411{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m16_c00411{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m32_c00411{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);}
.m2b_c00411{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m34_c00411{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_c00411{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m50_c00411{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00411{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00411{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m51_c00411{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);}
.me_c00411{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.mb_c00411{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m35_c00411{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);}
.m3a_c00411{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00411{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m30_c00411{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m39_c00411{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);}
.m26_c00411{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m15_c00411{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m21_c00411{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);}
.m1d_c00411{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m58_c00411{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m2_c00411{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);}
.m57_c00411{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m59_c00411{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00411{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m56_c00411{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);}
.m29_c00411{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m33_c00411{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00411{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m25_c00411{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00411{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);}
.m36_c00411{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);}
.m38_c00411{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);}
.m5c_c00411{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00411{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00411{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00411{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.v0_c00411{vertical-align:0.000000px;}
.v3_c00411{vertical-align:2.880000px;}
.v2_c00411{vertical-align:8.640000px;}
.v1_c00411{vertical-align:11.520000px;}
.ls1_c00411{letter-spacing:0.000000px;}
.ls0_c00411{letter-spacing:22.920000px;}
.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;}
}
.ws1_c00411{word-spacing:-1.829040px;}
.ws3_c00411{word-spacing:0.000000px;}
.ws0_c00411{word-spacing:1.277040px;}
.ws2_c00411{word-spacing:1.588560px;}
.fc0_c00411{color:transparent;}
.fs11_c00411{font-size:17.280000px;}
.fsc_c00411{font-size:34.560000px;}
.fsa_c00411{font-size:37.440000px;}
.fsd_c00411{font-size:40.320000px;}
.fs2_c00411{font-size:43.200000px;}
.fsb_c00411{font-size:46.080000px;}
.fs5_c00411{font-size:48.960000px;}
.fs4_c00411{font-size:51.840000px;}
.fs3_c00411{font-size:54.720000px;}
.fs6_c00411{font-size:57.600000px;}
.fs8_c00411{font-size:60.480000px;}
.fs7_c00411{font-size:63.360000px;}
.fs9_c00411{font-size:66.240000px;}
.fs1_c00411{font-size:69.120000px;}
.fs0_c00411{font-size:72.000000px;}
.fs10_c00411{font-size:80.640000px;}
.fsf_c00411{font-size:83.520000px;}
.fse_c00411{font-size:109.440000px;}
.y0_c00411{bottom:0.000000px;}
.y67_c00411{bottom:30.960000px;}
.y6a_c00411{bottom:31.680000px;}
.y68_c00411{bottom:32.400000px;}
.y6b_c00411{bottom:33.120000px;}
.y69_c00411{bottom:35.280000px;}
.y66_c00411{bottom:71.280000px;}
.y63_c00411{bottom:72.000000px;}
.y65_c00411{bottom:72.720000px;}
.y62_c00411{bottom:73.440000px;}
.y64_c00411{bottom:74.160000px;}
.y61_c00411{bottom:74.880000px;}
.y5c_c00411{bottom:115.200000px;}
.y60_c00411{bottom:116.640000px;}
.y5e_c00411{bottom:117.360000px;}
.y5d_c00411{bottom:118.080000px;}
.y5f_c00411{bottom:118.800000px;}
.y5b_c00411{bottom:120.240000px;}
.y59_c00411{bottom:160.560000px;}
.y58_c00411{bottom:161.280000px;}
.y5a_c00411{bottom:162.000000px;}
.y57_c00411{bottom:202.320000px;}
.y55_c00411{bottom:203.760000px;}
.y56_c00411{bottom:204.480000px;}
.y53_c00411{bottom:244.800000px;}
.y52_c00411{bottom:245.520000px;}
.y51_c00411{bottom:246.960000px;}
.y50_c00411{bottom:247.680000px;}
.y54_c00411{bottom:248.400000px;}
.y4f_c00411{bottom:296.640000px;}
.y4d_c00411{bottom:299.520000px;}
.y4c_c00411{bottom:300.240000px;}
.y4b_c00411{bottom:301.680000px;}
.y4e_c00411{bottom:302.400000px;}
.y4a_c00411{bottom:332.640000px;}
.y46_c00411{bottom:350.640000px;}
.y48_c00411{bottom:354.240000px;}
.y45_c00411{bottom:354.960000px;}
.y47_c00411{bottom:356.400000px;}
.y44_c00411{bottom:357.120000px;}
.y49_c00411{bottom:365.760000px;}
.y41_c00411{bottom:386.640000px;}
.y43_c00411{bottom:388.080000px;}
.y42_c00411{bottom:388.800000px;}
.y40_c00411{bottom:389.520000px;}
.y3e_c00411{bottom:419.040000px;}
.y3c_c00411{bottom:419.760000px;}
.y3f_c00411{bottom:420.480000px;}
.y3d_c00411{bottom:421.920000px;}
.y3b_c00411{bottom:423.360000px;}
.y39_c00411{bottom:441.360000px;}
.y3a_c00411{bottom:451.440000px;}
.y37_c00411{bottom:452.160000px;}
.y38_c00411{bottom:454.320000px;}
.y36_c00411{bottom:455.760000px;}
.y35_c00411{bottom:484.560000px;}
.y33_c00411{bottom:485.280000px;}
.y34_c00411{bottom:486.000000px;}
.y31_c00411{bottom:516.240000px;}
.y32_c00411{bottom:518.400000px;}
.y30_c00411{bottom:519.120000px;}
.y2b_c00411{bottom:558.720000px;}
.y2f_c00411{bottom:559.440000px;}
.y2d_c00411{bottom:560.880000px;}
.y2c_c00411{bottom:561.600000px;}
.y2e_c00411{bottom:562.320000px;}
.y28_c00411{bottom:601.920000px;}
.y27_c00411{bottom:602.640000px;}
.y2a_c00411{bottom:604.080000px;}
.y29_c00411{bottom:604.800000px;}
.y26_c00411{bottom:605.520000px;}
.y25_c00411{bottom:645.840000px;}
.y24_c00411{bottom:646.560000px;}
.y23_c00411{bottom:648.000000px;}
.y22_c00411{bottom:648.720000px;}
.y20_c00411{bottom:688.320000px;}
.y1f_c00411{bottom:689.040000px;}
.y21_c00411{bottom:689.760000px;}
.y1e_c00411{bottom:691.200000px;}
.y1c_c00411{bottom:731.520000px;}
.y1d_c00411{bottom:733.680000px;}
.y1b_c00411{bottom:734.400000px;}
.y19_c00411{bottom:785.520000px;}
.y18_c00411{bottom:787.680000px;}
.y1a_c00411{bottom:788.400000px;}
.y17_c00411{bottom:828.000000px;}
.y15_c00411{bottom:828.720000px;}
.y14_c00411{bottom:829.440000px;}
.y16_c00411{bottom:830.880000px;}
.y13_c00411{bottom:831.600000px;}
.y12_c00411{bottom:871.920000px;}
.y10_c00411{bottom:874.080000px;}
.yf_c00411{bottom:874.800000px;}
.y11_c00411{bottom:875.520000px;}
.yc_c00411{bottom:915.840000px;}
.yd_c00411{bottom:917.280000px;}
.ye_c00411{bottom:918.000000px;}
.yb_c00411{bottom:957.600000px;}
.y9_c00411{bottom:958.320000px;}
.ya_c00411{bottom:959.040000px;}
.y8_c00411{bottom:961.200000px;}
.y7_c00411{bottom:1000.800000px;}
.y5_c00411{bottom:1001.520000px;}
.y6_c00411{bottom:1004.400000px;}
.y2_c00411{bottom:1045.440000px;}
.y3_c00411{bottom:1046.880000px;}
.y4_c00411{bottom:1047.600000px;}
.y1_c00411{bottom:1126.800000px;}
.h17_c00411{height:15.550313px;}
.h10_c00411{height:31.100625px;}
.he_c00411{height:33.692344px;}
.h12_c00411{height:36.284062px;}
.h4_c00411{height:38.875781px;}
.hf_c00411{height:41.467500px;}
.ha_c00411{height:44.059219px;}
.h6_c00411{height:46.650937px;}
.h13_c00411{height:46.939219px;}
.h5_c00411{height:49.242656px;}
.h8_c00411{height:51.834375px;}
.hb_c00411{height:54.426094px;}
.h11_c00411{height:55.290937px;}
.hc_c00411{height:55.579219px;}
.h9_c00411{height:57.017812px;}
.h7_c00411{height:58.170937px;}
.hd_c00411{height:59.609531px;}
.h3_c00411{height:62.201250px;}
.h2_c00411{height:64.792969px;}
.h16_c00411{height:72.568125px;}
.h15_c00411{height:75.159844px;}
.h14_c00411{height:98.485312px;}
.h1_c00411{height:1164.000000px;}
.h0_c00411{height:1164.240000px;}
.w1_c00411{width:771.000000px;}
.w0_c00411{width:771.120000px;}
.x0_c00411{left:0.000000px;}
.x7_c00411{left:56.160000px;}
.x2_c00411{left:57.600000px;}
.x4c_c00411{left:77.760000px;}
.xe_c00411{left:88.560000px;}
.x15_c00411{left:98.640000px;}
.x28_c00411{left:110.160000px;}
.x44_c00411{left:120.240000px;}
.x39_c00411{left:131.040000px;}
.x3f_c00411{left:133.200000px;}
.x35_c00411{left:142.560000px;}
.x3e_c00411{left:151.920000px;}
.x8_c00411{left:154.080000px;}
.x4d_c00411{left:163.440000px;}
.xf_c00411{left:164.880000px;}
.x3c_c00411{left:175.680000px;}
.x36_c00411{left:185.760000px;}
.x16_c00411{left:187.200000px;}
.x2c_c00411{left:196.560000px;}
.x1f_c00411{left:198.720000px;}
.x10_c00411{left:207.360000px;}
.x25_c00411{left:218.160000px;}
.x40_c00411{left:220.320000px;}
.x17_c00411{left:229.680000px;}
.x31_c00411{left:250.560000px;}
.x41_c00411{left:252.000000px;}
.x18_c00411{left:272.880000px;}
.x20_c00411{left:283.680000px;}
.x9_c00411{left:294.480000px;}
.x2b_c00411{left:305.280000px;}
.x11_c00411{left:316.080000px;}
.x43_c00411{left:317.520000px;}
.x32_c00411{left:326.880000px;}
.x3d_c00411{left:336.960000px;}
.x21_c00411{left:338.400000px;}
.x2d_c00411{left:348.480000px;}
.x26_c00411{left:359.280000px;}
.x47_c00411{left:370.080000px;}
.x19_c00411{left:380.160000px;}
.x12_c00411{left:382.320000px;}
.x2e_c00411{left:391.680000px;}
.x3_c00411{left:402.480000px;}
.x4f_c00411{left:412.560000px;}
.x45_c00411{left:414.000000px;}
.x22_c00411{left:424.080000px;}
.x4_c00411{left:425.520000px;}
.x29_c00411{left:434.880000px;}
.xa_c00411{left:445.680000px;}
.x48_c00411{left:447.120000px;}
.x46_c00411{left:455.040000px;}
.x23_c00411{left:456.480000px;}
.x2a_c00411{left:466.560000px;}
.x2f_c00411{left:468.000000px;}
.x1a_c00411{left:478.080000px;}
.x24_c00411{left:490.320000px;}
.x49_c00411{left:498.960000px;}
.x33_c00411{left:500.400000px;}
.x5_c00411{left:501.840000px;}
.x1b_c00411{left:511.200000px;}
.x37_c00411{left:521.280000px;}
.xb_c00411{left:522.720000px;}
.x3a_c00411{left:532.080000px;}
.x13_c00411{left:543.600000px;}
.x4e_c00411{left:553.680000px;}
.x3b_c00411{left:555.120000px;}
.x4a_c00411{left:564.480000px;}
.x38_c00411{left:575.280000px;}
.xc_c00411{left:576.720000px;}
.x1c_c00411{left:586.800000px;}
.x42_c00411{left:599.040000px;}
.x4b_c00411{left:607.680000px;}
.x30_c00411{left:609.120000px;}
.x14_c00411{left:619.200000px;}
.x34_c00411{left:630.000000px;}
.x6_c00411{left:640.800000px;}
.x1d_c00411{left:652.320000px;}
.x27_c00411{left:663.840000px;}
.x1_c00411{left:671.040000px;}
.xd_c00411{left:673.920000px;}
.x1e_c00411{left:684.720000px;}
@media print{
.v0_c00411{vertical-align:0.000000pt;}
.v3_c00411{vertical-align:2.560000pt;}
.v2_c00411{vertical-align:7.680000pt;}
.v1_c00411{vertical-align:10.240000pt;}
.ls1_c00411{letter-spacing:0.000000pt;}
.ls0_c00411{letter-spacing:20.373333pt;}
.ws1_c00411{word-spacing:-1.625813pt;}
.ws3_c00411{word-spacing:0.000000pt;}
.ws0_c00411{word-spacing:1.135147pt;}
.ws2_c00411{word-spacing:1.412053pt;}
.fs11_c00411{font-size:15.360000pt;}
.fsc_c00411{font-size:30.720000pt;}
.fsa_c00411{font-size:33.280000pt;}
.fsd_c00411{font-size:35.840000pt;}
.fs2_c00411{font-size:38.400000pt;}
.fsb_c00411{font-size:40.960000pt;}
.fs5_c00411{font-size:43.520000pt;}
.fs4_c00411{font-size:46.080000pt;}
.fs3_c00411{font-size:48.640000pt;}
.fs6_c00411{font-size:51.200000pt;}
.fs8_c00411{font-size:53.760000pt;}
.fs7_c00411{font-size:56.320000pt;}
.fs9_c00411{font-size:58.880000pt;}
.fs1_c00411{font-size:61.440000pt;}
.fs0_c00411{font-size:64.000000pt;}
.fs10_c00411{font-size:71.680000pt;}
.fsf_c00411{font-size:74.240000pt;}
.fse_c00411{font-size:97.280000pt;}
.y0_c00411{bottom:0.000000pt;}
.y67_c00411{bottom:27.520000pt;}
.y6a_c00411{bottom:28.160000pt;}
.y68_c00411{bottom:28.800000pt;}
.y6b_c00411{bottom:29.440000pt;}
.y69_c00411{bottom:31.360000pt;}
.y66_c00411{bottom:63.360000pt;}
.y63_c00411{bottom:64.000000pt;}
.y65_c00411{bottom:64.640000pt;}
.y62_c00411{bottom:65.280000pt;}
.y64_c00411{bottom:65.920000pt;}
.y61_c00411{bottom:66.560000pt;}
.y5c_c00411{bottom:102.400000pt;}
.y60_c00411{bottom:103.680000pt;}
.y5e_c00411{bottom:104.320000pt;}
.y5d_c00411{bottom:104.960000pt;}
.y5f_c00411{bottom:105.600000pt;}
.y5b_c00411{bottom:106.880000pt;}
.y59_c00411{bottom:142.720000pt;}
.y58_c00411{bottom:143.360000pt;}
.y5a_c00411{bottom:144.000000pt;}
.y57_c00411{bottom:179.840000pt;}
.y55_c00411{bottom:181.120000pt;}
.y56_c00411{bottom:181.760000pt;}
.y53_c00411{bottom:217.600000pt;}
.y52_c00411{bottom:218.240000pt;}
.y51_c00411{bottom:219.520000pt;}
.y50_c00411{bottom:220.160000pt;}
.y54_c00411{bottom:220.800000pt;}
.y4f_c00411{bottom:263.680000pt;}
.y4d_c00411{bottom:266.240000pt;}
.y4c_c00411{bottom:266.880000pt;}
.y4b_c00411{bottom:268.160000pt;}
.y4e_c00411{bottom:268.800000pt;}
.y4a_c00411{bottom:295.680000pt;}
.y46_c00411{bottom:311.680000pt;}
.y48_c00411{bottom:314.880000pt;}
.y45_c00411{bottom:315.520000pt;}
.y47_c00411{bottom:316.800000pt;}
.y44_c00411{bottom:317.440000pt;}
.y49_c00411{bottom:325.120000pt;}
.y41_c00411{bottom:343.680000pt;}
.y43_c00411{bottom:344.960000pt;}
.y42_c00411{bottom:345.600000pt;}
.y40_c00411{bottom:346.240000pt;}
.y3e_c00411{bottom:372.480000pt;}
.y3c_c00411{bottom:373.120000pt;}
.y3f_c00411{bottom:373.760000pt;}
.y3d_c00411{bottom:375.040000pt;}
.y3b_c00411{bottom:376.320000pt;}
.y39_c00411{bottom:392.320000pt;}
.y3a_c00411{bottom:401.280000pt;}
.y37_c00411{bottom:401.920000pt;}
.y38_c00411{bottom:403.840000pt;}
.y36_c00411{bottom:405.120000pt;}
.y35_c00411{bottom:430.720000pt;}
.y33_c00411{bottom:431.360000pt;}
.y34_c00411{bottom:432.000000pt;}
.y31_c00411{bottom:458.880000pt;}
.y32_c00411{bottom:460.800000pt;}
.y30_c00411{bottom:461.440000pt;}
.y2b_c00411{bottom:496.640000pt;}
.y2f_c00411{bottom:497.280000pt;}
.y2d_c00411{bottom:498.560000pt;}
.y2c_c00411{bottom:499.200000pt;}
.y2e_c00411{bottom:499.840000pt;}
.y28_c00411{bottom:535.040000pt;}
.y27_c00411{bottom:535.680000pt;}
.y2a_c00411{bottom:536.960000pt;}
.y29_c00411{bottom:537.600000pt;}
.y26_c00411{bottom:538.240000pt;}
.y25_c00411{bottom:574.080000pt;}
.y24_c00411{bottom:574.720000pt;}
.y23_c00411{bottom:576.000000pt;}
.y22_c00411{bottom:576.640000pt;}
.y20_c00411{bottom:611.840000pt;}
.y1f_c00411{bottom:612.480000pt;}
.y21_c00411{bottom:613.120000pt;}
.y1e_c00411{bottom:614.400000pt;}
.y1c_c00411{bottom:650.240000pt;}
.y1d_c00411{bottom:652.160000pt;}
.y1b_c00411{bottom:652.800000pt;}
.y19_c00411{bottom:698.240000pt;}
.y18_c00411{bottom:700.160000pt;}
.y1a_c00411{bottom:700.800000pt;}
.y17_c00411{bottom:736.000000pt;}
.y15_c00411{bottom:736.640000pt;}
.y14_c00411{bottom:737.280000pt;}
.y16_c00411{bottom:738.560000pt;}
.y13_c00411{bottom:739.200000pt;}
.y12_c00411{bottom:775.040000pt;}
.y10_c00411{bottom:776.960000pt;}
.yf_c00411{bottom:777.600000pt;}
.y11_c00411{bottom:778.240000pt;}
.yc_c00411{bottom:814.080000pt;}
.yd_c00411{bottom:815.360000pt;}
.ye_c00411{bottom:816.000000pt;}
.yb_c00411{bottom:851.200000pt;}
.y9_c00411{bottom:851.840000pt;}
.ya_c00411{bottom:852.480000pt;}
.y8_c00411{bottom:854.400000pt;}
.y7_c00411{bottom:889.600000pt;}
.y5_c00411{bottom:890.240000pt;}
.y6_c00411{bottom:892.800000pt;}
.y2_c00411{bottom:929.280000pt;}
.y3_c00411{bottom:930.560000pt;}
.y4_c00411{bottom:931.200000pt;}
.y1_c00411{bottom:1001.600000pt;}
.h17_c00411{height:13.822500pt;}
.h10_c00411{height:27.645000pt;}
.he_c00411{height:29.948750pt;}
.h12_c00411{height:32.252500pt;}
.h4_c00411{height:34.556250pt;}
.hf_c00411{height:36.860000pt;}
.ha_c00411{height:39.163750pt;}
.h6_c00411{height:41.467500pt;}
.h13_c00411{height:41.723750pt;}
.h5_c00411{height:43.771250pt;}
.h8_c00411{height:46.075000pt;}
.hb_c00411{height:48.378750pt;}
.h11_c00411{height:49.147500pt;}
.hc_c00411{height:49.403750pt;}
.h9_c00411{height:50.682500pt;}
.h7_c00411{height:51.707500pt;}
.hd_c00411{height:52.986250pt;}
.h3_c00411{height:55.290000pt;}
.h2_c00411{height:57.593750pt;}
.h16_c00411{height:64.505000pt;}
.h15_c00411{height:66.808750pt;}
.h14_c00411{height:87.542500pt;}
.h1_c00411{height:1034.666667pt;}
.h0_c00411{height:1034.880000pt;}
.w1_c00411{width:685.333333pt;}
.w0_c00411{width:685.440000pt;}
.x0_c00411{left:0.000000pt;}
.x7_c00411{left:49.920000pt;}
.x2_c00411{left:51.200000pt;}
.x4c_c00411{left:69.120000pt;}
.xe_c00411{left:78.720000pt;}
.x15_c00411{left:87.680000pt;}
.x28_c00411{left:97.920000pt;}
.x44_c00411{left:106.880000pt;}
.x39_c00411{left:116.480000pt;}
.x3f_c00411{left:118.400000pt;}
.x35_c00411{left:126.720000pt;}
.x3e_c00411{left:135.040000pt;}
.x8_c00411{left:136.960000pt;}
.x4d_c00411{left:145.280000pt;}
.xf_c00411{left:146.560000pt;}
.x3c_c00411{left:156.160000pt;}
.x36_c00411{left:165.120000pt;}
.x16_c00411{left:166.400000pt;}
.x2c_c00411{left:174.720000pt;}
.x1f_c00411{left:176.640000pt;}
.x10_c00411{left:184.320000pt;}
.x25_c00411{left:193.920000pt;}
.x40_c00411{left:195.840000pt;}
.x17_c00411{left:204.160000pt;}
.x31_c00411{left:222.720000pt;}
.x41_c00411{left:224.000000pt;}
.x18_c00411{left:242.560000pt;}
.x20_c00411{left:252.160000pt;}
.x9_c00411{left:261.760000pt;}
.x2b_c00411{left:271.360000pt;}
.x11_c00411{left:280.960000pt;}
.x43_c00411{left:282.240000pt;}
.x32_c00411{left:290.560000pt;}
.x3d_c00411{left:299.520000pt;}
.x21_c00411{left:300.800000pt;}
.x2d_c00411{left:309.760000pt;}
.x26_c00411{left:319.360000pt;}
.x47_c00411{left:328.960000pt;}
.x19_c00411{left:337.920000pt;}
.x12_c00411{left:339.840000pt;}
.x2e_c00411{left:348.160000pt;}
.x3_c00411{left:357.760000pt;}
.x4f_c00411{left:366.720000pt;}
.x45_c00411{left:368.000000pt;}
.x22_c00411{left:376.960000pt;}
.x4_c00411{left:378.240000pt;}
.x29_c00411{left:386.560000pt;}
.xa_c00411{left:396.160000pt;}
.x48_c00411{left:397.440000pt;}
.x46_c00411{left:404.480000pt;}
.x23_c00411{left:405.760000pt;}
.x2a_c00411{left:414.720000pt;}
.x2f_c00411{left:416.000000pt;}
.x1a_c00411{left:424.960000pt;}
.x24_c00411{left:435.840000pt;}
.x49_c00411{left:443.520000pt;}
.x33_c00411{left:444.800000pt;}
.x5_c00411{left:446.080000pt;}
.x1b_c00411{left:454.400000pt;}
.x37_c00411{left:463.360000pt;}
.xb_c00411{left:464.640000pt;}
.x3a_c00411{left:472.960000pt;}
.x13_c00411{left:483.200000pt;}
.x4e_c00411{left:492.160000pt;}
.x3b_c00411{left:493.440000pt;}
.x4a_c00411{left:501.760000pt;}
.x38_c00411{left:511.360000pt;}
.xc_c00411{left:512.640000pt;}
.x1c_c00411{left:521.600000pt;}
.x42_c00411{left:532.480000pt;}
.x4b_c00411{left:540.160000pt;}
.x30_c00411{left:541.440000pt;}
.x14_c00411{left:550.400000pt;}
.x34_c00411{left:560.000000pt;}
.x6_c00411{left:569.600000pt;}
.x1d_c00411{left:579.840000pt;}
.x27_c00411{left:590.080000pt;}
.x1_c00411{left:596.480000pt;}
.xd_c00411{left:599.040000pt;}
.x1e_c00411{left:608.640000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e6e0a53b22938d1a640e780e.woff2')format("woff");}.ff1_c00412{font-family:ff1_c00412;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m51_c00412{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m45_c00412{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_c00412{transform:matrix(0.228575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228575,0.000000,0.000000,0.250000,0,0);}
.m27_c00412{transform:matrix(0.238675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238675,0.000000,0.000000,0.250000,0,0);}
.m3c_c00412{transform:matrix(0.244150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244150,0.000000,0.000000,0.250000,0,0);}
.m52_c00412{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m31_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);}
.m38_c00412{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);}
.m3e_c00412{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);}
.m49_c00412{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m15_c00412{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m12_c00412{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m44_c00412{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00412{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m14_c00412{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);}
.m43_c00412{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00412{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00412{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);}
.m4c_c00412{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);}
.m2d_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);}
.m48_c00412{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00412{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00412{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m24_c00412{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m47_c00412{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m40_c00412{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m42_c00412{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00412{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m19_c00412{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m28_c00412{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m26_c00412{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m16_c00412{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00412{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m29_c00412{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m21_c00412{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00412{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);}
.m39_c00412{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m10_c00412{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);}
.m32_c00412{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m9_c00412{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m5_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);}
.m4d_c00412{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m34_c00412{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m22_c00412{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);}
.me_c00412{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m2_c00412{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.md_c00412{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);}
.m0_c00412{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.mf_c00412{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m3_c00412{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);}
.m4e_c00412{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);}
.m4b_c00412{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m37_c00412{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m7_c00412{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.mc_c00412{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m25_c00412{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00412{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m17_c00412{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m13_c00412{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);}
.m2f_c00412{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);}
.m4a_c00412{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00412{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00412{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);}
.m11_c00412{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00412{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m35_c00412{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m6_c00412{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);}
.m41_c00412{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m33_c00412{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m50_c00412{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);}
.m1_c00412{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.ma_c00412{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_c00412{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00412{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m4_c00412{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);}
.mb_c00412{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);}
.m4f_c00412{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m36_c00412{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m23_c00412{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);}
.m30_c00412{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);}
.m18_c00412{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00412{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m46_c00412{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.v1_c00412{vertical-align:-2.880000px;}
.v0_c00412{vertical-align:0.000000px;}
.ls1_c00412{letter-spacing:0.000000px;}
.ls0_c00412{letter-spacing:83.257680px;}
.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;}
}
.ws1_c00412{word-spacing:0.000000px;}
.ws0_c00412{word-spacing:197.900400px;}
.fc0_c00412{color:transparent;}
.fs9_c00412{font-size:34.560000px;}
.fs3_c00412{font-size:37.440000px;}
.fse_c00412{font-size:43.200000px;}
.fs7_c00412{font-size:46.080000px;}
.fs2_c00412{font-size:48.960000px;}
.fs1_c00412{font-size:51.840000px;}
.fs5_c00412{font-size:54.720000px;}
.fs4_c00412{font-size:57.600000px;}
.fs8_c00412{font-size:60.480000px;}
.fs6_c00412{font-size:63.360000px;}
.fsf_c00412{font-size:66.240000px;}
.fsc_c00412{font-size:69.120000px;}
.fs0_c00412{font-size:72.000000px;}
.fsb_c00412{font-size:74.880000px;}
.fsa_c00412{font-size:77.760000px;}
.fsd_c00412{font-size:103.680000px;}
.y0_c00412{bottom:0.000000px;}
.y71_c00412{bottom:81.360000px;}
.y7a_c00412{bottom:82.800000px;}
.y78_c00412{bottom:83.520000px;}
.y79_c00412{bottom:84.240000px;}
.y70_c00412{bottom:85.680000px;}
.y6d_c00412{bottom:124.560000px;}
.y6f_c00412{bottom:125.280000px;}
.y6e_c00412{bottom:126.000000px;}
.y77_c00412{bottom:126.720000px;}
.y6b_c00412{bottom:128.880000px;}
.y6c_c00412{bottom:129.600000px;}
.y6a_c00412{bottom:167.760000px;}
.y75_c00412{bottom:169.920000px;}
.y76_c00412{bottom:170.640000px;}
.y74_c00412{bottom:171.360000px;}
.y68_c00412{bottom:172.080000px;}
.y69_c00412{bottom:172.800000px;}
.y67_c00412{bottom:211.680000px;}
.y73_c00412{bottom:213.120000px;}
.y72_c00412{bottom:213.840000px;}
.y66_c00412{bottom:215.280000px;}
.y62_c00412{bottom:254.880000px;}
.y65_c00412{bottom:255.600000px;}
.y64_c00412{bottom:256.320000px;}
.y63_c00412{bottom:257.760000px;}
.y61_c00412{bottom:258.480000px;}
.y60_c00412{bottom:259.200000px;}
.y5b_c00412{bottom:298.080000px;}
.y5e_c00412{bottom:298.800000px;}
.y5f_c00412{bottom:299.520000px;}
.y5a_c00412{bottom:300.240000px;}
.y5c_c00412{bottom:301.680000px;}
.y5d_c00412{bottom:302.400000px;}
.y44_c00412{bottom:341.280000px;}
.y59_c00412{bottom:342.720000px;}
.y42_c00412{bottom:344.160000px;}
.y43_c00412{bottom:344.880000px;}
.y3f_c00412{bottom:383.760000px;}
.y41_c00412{bottom:384.480000px;}
.y40_c00412{bottom:385.200000px;}
.y3d_c00412{bottom:385.920000px;}
.y58_c00412{bottom:386.640000px;}
.y3e_c00412{bottom:388.080000px;}
.y3c_c00412{bottom:426.960000px;}
.y57_c00412{bottom:427.680000px;}
.y56_c00412{bottom:428.400000px;}
.y55_c00412{bottom:429.120000px;}
.y39_c00412{bottom:429.840000px;}
.y3b_c00412{bottom:431.280000px;}
.y3a_c00412{bottom:432.000000px;}
.y38_c00412{bottom:470.160000px;}
.y54_c00412{bottom:471.600000px;}
.y53_c00412{bottom:472.320000px;}
.y52_c00412{bottom:473.040000px;}
.y36_c00412{bottom:473.760000px;}
.y37_c00412{bottom:474.480000px;}
.y35_c00412{bottom:514.080000px;}
.y51_c00412{bottom:515.520000px;}
.y33_c00412{bottom:516.960000px;}
.y34_c00412{bottom:518.400000px;}
.y31_c00412{bottom:558.000000px;}
.y50_c00412{bottom:558.720000px;}
.y4f_c00412{bottom:559.440000px;}
.y30_c00412{bottom:560.880000px;}
.y32_c00412{bottom:561.600000px;}
.y2f_c00412{bottom:600.480000px;}
.y4e_c00412{bottom:602.640000px;}
.y4d_c00412{bottom:603.360000px;}
.y2e_c00412{bottom:604.800000px;}
.y2d_c00412{bottom:644.400000px;}
.y4b_c00412{bottom:645.840000px;}
.y4a_c00412{bottom:646.560000px;}
.y2b_c00412{bottom:647.280000px;}
.y4c_c00412{bottom:648.000000px;}
.y2c_c00412{bottom:648.720000px;}
.y2a_c00412{bottom:687.600000px;}
.y49_c00412{bottom:689.040000px;}
.y48_c00412{bottom:689.760000px;}
.y27_c00412{bottom:690.480000px;}
.y28_c00412{bottom:691.200000px;}
.y29_c00412{bottom:691.920000px;}
.y26_c00412{bottom:730.800000px;}
.y24_c00412{bottom:732.240000px;}
.y47_c00412{bottom:732.960000px;}
.y22_c00412{bottom:733.680000px;}
.y23_c00412{bottom:734.400000px;}
.y25_c00412{bottom:736.560000px;}
.y21_c00412{bottom:774.000000px;}
.y1e_c00412{bottom:774.720000px;}
.y1f_c00412{bottom:775.440000px;}
.y46_c00412{bottom:776.160000px;}
.y1c_c00412{bottom:776.880000px;}
.y20_c00412{bottom:777.600000px;}
.y1d_c00412{bottom:778.320000px;}
.y1b_c00412{bottom:810.000000px;}
.y17_c00412{bottom:817.200000px;}
.y18_c00412{bottom:818.640000px;}
.y15_c00412{bottom:819.360000px;}
.y1a_c00412{bottom:820.080000px;}
.y19_c00412{bottom:820.800000px;}
.y45_c00412{bottom:821.520000px;}
.y16_c00412{bottom:822.240000px;}
.y10_c00412{bottom:860.400000px;}
.y14_c00412{bottom:861.840000px;}
.y13_c00412{bottom:862.560000px;}
.ye_c00412{bottom:863.280000px;}
.yf_c00412{bottom:864.000000px;}
.yd_c00412{bottom:902.880000px;}
.y12_c00412{bottom:905.040000px;}
.yc_c00412{bottom:906.480000px;}
.y8_c00412{bottom:948.240000px;}
.ya_c00412{bottom:948.960000px;}
.yb_c00412{bottom:949.680000px;}
.y11_c00412{bottom:950.400000px;}
.y7_c00412{bottom:951.120000px;}
.y9_c00412{bottom:954.720000px;}
.y5_c00412{bottom:1002.960000px;}
.y6_c00412{bottom:1004.400000px;}
.y4_c00412{bottom:1046.160000px;}
.y2_c00412{bottom:1046.880000px;}
.y3_c00412{bottom:1047.600000px;}
.y1_c00412{bottom:1111.680000px;}
.hb_c00412{height:31.100625px;}
.h5_c00412{height:33.692344px;}
.h10_c00412{height:38.875781px;}
.h9_c00412{height:41.467500px;}
.h4_c00412{height:44.059219px;}
.h3_c00412{height:46.650937px;}
.h7_c00412{height:49.242656px;}
.h6_c00412{height:51.834375px;}
.ha_c00412{height:54.426094px;}
.h8_c00412{height:57.017812px;}
.h11_c00412{height:59.609531px;}
.he_c00412{height:62.201250px;}
.h2_c00412{height:64.792969px;}
.hd_c00412{height:67.384687px;}
.hc_c00412{height:69.976406px;}
.hf_c00412{height:93.301875px;}
.h1_c00412{height:1166.250000px;}
.h0_c00412{height:1166.400000px;}
.w1_c00412{width:773.250000px;}
.w0_c00412{width:773.280000px;}
.x0_c00412{left:0.000000px;}
.x2_c00412{left:61.200000px;}
.x14_c00412{left:62.640000px;}
.x10_c00412{left:82.800000px;}
.x11_c00412{left:105.840000px;}
.xe_c00412{left:126.720000px;}
.x16_c00412{left:136.080000px;}
.x15_c00412{left:138.240000px;}
.x3_c00412{left:148.320000px;}
.x12_c00412{left:150.480000px;}
.x13_c00412{left:159.840000px;}
.xf_c00412{left:170.640000px;}
.x4_c00412{left:180.000000px;}
.x26_c00412{left:181.440000px;}
.x22_c00412{left:213.120000px;}
.x24_c00412{left:224.640000px;}
.x5_c00412{left:234.000000px;}
.x23_c00412{left:235.440000px;}
.x27_c00412{left:255.600000px;}
.x25_c00412{left:267.120000px;}
.x6_c00412{left:278.640000px;}
.x20_c00412{left:288.000000px;}
.x1c_c00412{left:289.440000px;}
.x36_c00412{left:299.520000px;}
.x33_c00412{left:308.880000px;}
.x7_c00412{left:311.040000px;}
.x29_c00412{left:319.680000px;}
.x37_c00412{left:321.840000px;}
.x1d_c00412{left:342.000000px;}
.x21_c00412{left:343.440000px;}
.x8_c00412{left:354.240000px;}
.x34_c00412{left:365.040000px;}
.x35_c00412{left:375.120000px;}
.x1e_c00412{left:386.640000px;}
.x28_c00412{left:408.240000px;}
.x9_c00412{left:462.960000px;}
.x1f_c00412{left:473.040000px;}
.xa_c00412{left:494.640000px;}
.x17_c00412{left:527.760000px;}
.xb_c00412{left:560.160000px;}
.x1b_c00412{left:566.640000px;}
.x38_c00412{left:579.600000px;}
.x31_c00412{left:581.040000px;}
.xc_c00412{left:592.560000px;}
.x2d_c00412{left:602.640000px;}
.x30_c00412{left:604.080000px;}
.x32_c00412{left:613.440000px;}
.x2a_c00412{left:615.600000px;}
.x18_c00412{left:624.240000px;}
.x2e_c00412{left:637.200000px;}
.x39_c00412{left:646.560000px;}
.x2b_c00412{left:648.000000px;}
.xd_c00412{left:658.080000px;}
.x1_c00412{left:679.680000px;}
.x19_c00412{left:690.480000px;}
.x2f_c00412{left:700.560000px;}
.x2c_c00412{left:711.360000px;}
.x1a_c00412{left:722.880000px;}
@media print{
.v1_c00412{vertical-align:-2.560000pt;}
.v0_c00412{vertical-align:0.000000pt;}
.ls1_c00412{letter-spacing:0.000000pt;}
.ls0_c00412{letter-spacing:74.006827pt;}
.ws1_c00412{word-spacing:0.000000pt;}
.ws0_c00412{word-spacing:175.911467pt;}
.fs9_c00412{font-size:30.720000pt;}
.fs3_c00412{font-size:33.280000pt;}
.fse_c00412{font-size:38.400000pt;}
.fs7_c00412{font-size:40.960000pt;}
.fs2_c00412{font-size:43.520000pt;}
.fs1_c00412{font-size:46.080000pt;}
.fs5_c00412{font-size:48.640000pt;}
.fs4_c00412{font-size:51.200000pt;}
.fs8_c00412{font-size:53.760000pt;}
.fs6_c00412{font-size:56.320000pt;}
.fsf_c00412{font-size:58.880000pt;}
.fsc_c00412{font-size:61.440000pt;}
.fs0_c00412{font-size:64.000000pt;}
.fsb_c00412{font-size:66.560000pt;}
.fsa_c00412{font-size:69.120000pt;}
.fsd_c00412{font-size:92.160000pt;}
.y0_c00412{bottom:0.000000pt;}
.y71_c00412{bottom:72.320000pt;}
.y7a_c00412{bottom:73.600000pt;}
.y78_c00412{bottom:74.240000pt;}
.y79_c00412{bottom:74.880000pt;}
.y70_c00412{bottom:76.160000pt;}
.y6d_c00412{bottom:110.720000pt;}
.y6f_c00412{bottom:111.360000pt;}
.y6e_c00412{bottom:112.000000pt;}
.y77_c00412{bottom:112.640000pt;}
.y6b_c00412{bottom:114.560000pt;}
.y6c_c00412{bottom:115.200000pt;}
.y6a_c00412{bottom:149.120000pt;}
.y75_c00412{bottom:151.040000pt;}
.y76_c00412{bottom:151.680000pt;}
.y74_c00412{bottom:152.320000pt;}
.y68_c00412{bottom:152.960000pt;}
.y69_c00412{bottom:153.600000pt;}
.y67_c00412{bottom:188.160000pt;}
.y73_c00412{bottom:189.440000pt;}
.y72_c00412{bottom:190.080000pt;}
.y66_c00412{bottom:191.360000pt;}
.y62_c00412{bottom:226.560000pt;}
.y65_c00412{bottom:227.200000pt;}
.y64_c00412{bottom:227.840000pt;}
.y63_c00412{bottom:229.120000pt;}
.y61_c00412{bottom:229.760000pt;}
.y60_c00412{bottom:230.400000pt;}
.y5b_c00412{bottom:264.960000pt;}
.y5e_c00412{bottom:265.600000pt;}
.y5f_c00412{bottom:266.240000pt;}
.y5a_c00412{bottom:266.880000pt;}
.y5c_c00412{bottom:268.160000pt;}
.y5d_c00412{bottom:268.800000pt;}
.y44_c00412{bottom:303.360000pt;}
.y59_c00412{bottom:304.640000pt;}
.y42_c00412{bottom:305.920000pt;}
.y43_c00412{bottom:306.560000pt;}
.y3f_c00412{bottom:341.120000pt;}
.y41_c00412{bottom:341.760000pt;}
.y40_c00412{bottom:342.400000pt;}
.y3d_c00412{bottom:343.040000pt;}
.y58_c00412{bottom:343.680000pt;}
.y3e_c00412{bottom:344.960000pt;}
.y3c_c00412{bottom:379.520000pt;}
.y57_c00412{bottom:380.160000pt;}
.y56_c00412{bottom:380.800000pt;}
.y55_c00412{bottom:381.440000pt;}
.y39_c00412{bottom:382.080000pt;}
.y3b_c00412{bottom:383.360000pt;}
.y3a_c00412{bottom:384.000000pt;}
.y38_c00412{bottom:417.920000pt;}
.y54_c00412{bottom:419.200000pt;}
.y53_c00412{bottom:419.840000pt;}
.y52_c00412{bottom:420.480000pt;}
.y36_c00412{bottom:421.120000pt;}
.y37_c00412{bottom:421.760000pt;}
.y35_c00412{bottom:456.960000pt;}
.y51_c00412{bottom:458.240000pt;}
.y33_c00412{bottom:459.520000pt;}
.y34_c00412{bottom:460.800000pt;}
.y31_c00412{bottom:496.000000pt;}
.y50_c00412{bottom:496.640000pt;}
.y4f_c00412{bottom:497.280000pt;}
.y30_c00412{bottom:498.560000pt;}
.y32_c00412{bottom:499.200000pt;}
.y2f_c00412{bottom:533.760000pt;}
.y4e_c00412{bottom:535.680000pt;}
.y4d_c00412{bottom:536.320000pt;}
.y2e_c00412{bottom:537.600000pt;}
.y2d_c00412{bottom:572.800000pt;}
.y4b_c00412{bottom:574.080000pt;}
.y4a_c00412{bottom:574.720000pt;}
.y2b_c00412{bottom:575.360000pt;}
.y4c_c00412{bottom:576.000000pt;}
.y2c_c00412{bottom:576.640000pt;}
.y2a_c00412{bottom:611.200000pt;}
.y49_c00412{bottom:612.480000pt;}
.y48_c00412{bottom:613.120000pt;}
.y27_c00412{bottom:613.760000pt;}
.y28_c00412{bottom:614.400000pt;}
.y29_c00412{bottom:615.040000pt;}
.y26_c00412{bottom:649.600000pt;}
.y24_c00412{bottom:650.880000pt;}
.y47_c00412{bottom:651.520000pt;}
.y22_c00412{bottom:652.160000pt;}
.y23_c00412{bottom:652.800000pt;}
.y25_c00412{bottom:654.720000pt;}
.y21_c00412{bottom:688.000000pt;}
.y1e_c00412{bottom:688.640000pt;}
.y1f_c00412{bottom:689.280000pt;}
.y46_c00412{bottom:689.920000pt;}
.y1c_c00412{bottom:690.560000pt;}
.y20_c00412{bottom:691.200000pt;}
.y1d_c00412{bottom:691.840000pt;}
.y1b_c00412{bottom:720.000000pt;}
.y17_c00412{bottom:726.400000pt;}
.y18_c00412{bottom:727.680000pt;}
.y15_c00412{bottom:728.320000pt;}
.y1a_c00412{bottom:728.960000pt;}
.y19_c00412{bottom:729.600000pt;}
.y45_c00412{bottom:730.240000pt;}
.y16_c00412{bottom:730.880000pt;}
.y10_c00412{bottom:764.800000pt;}
.y14_c00412{bottom:766.080000pt;}
.y13_c00412{bottom:766.720000pt;}
.ye_c00412{bottom:767.360000pt;}
.yf_c00412{bottom:768.000000pt;}
.yd_c00412{bottom:802.560000pt;}
.y12_c00412{bottom:804.480000pt;}
.yc_c00412{bottom:805.760000pt;}
.y8_c00412{bottom:842.880000pt;}
.ya_c00412{bottom:843.520000pt;}
.yb_c00412{bottom:844.160000pt;}
.y11_c00412{bottom:844.800000pt;}
.y7_c00412{bottom:845.440000pt;}
.y9_c00412{bottom:848.640000pt;}
.y5_c00412{bottom:891.520000pt;}
.y6_c00412{bottom:892.800000pt;}
.y4_c00412{bottom:929.920000pt;}
.y2_c00412{bottom:930.560000pt;}
.y3_c00412{bottom:931.200000pt;}
.y1_c00412{bottom:988.160000pt;}
.hb_c00412{height:27.645000pt;}
.h5_c00412{height:29.948750pt;}
.h10_c00412{height:34.556250pt;}
.h9_c00412{height:36.860000pt;}
.h4_c00412{height:39.163750pt;}
.h3_c00412{height:41.467500pt;}
.h7_c00412{height:43.771250pt;}
.h6_c00412{height:46.075000pt;}
.ha_c00412{height:48.378750pt;}
.h8_c00412{height:50.682500pt;}
.h11_c00412{height:52.986250pt;}
.he_c00412{height:55.290000pt;}
.h2_c00412{height:57.593750pt;}
.hd_c00412{height:59.897500pt;}
.hc_c00412{height:62.201250pt;}
.hf_c00412{height:82.935000pt;}
.h1_c00412{height:1036.666667pt;}
.h0_c00412{height:1036.800000pt;}
.w1_c00412{width:687.333333pt;}
.w0_c00412{width:687.360000pt;}
.x0_c00412{left:0.000000pt;}
.x2_c00412{left:54.400000pt;}
.x14_c00412{left:55.680000pt;}
.x10_c00412{left:73.600000pt;}
.x11_c00412{left:94.080000pt;}
.xe_c00412{left:112.640000pt;}
.x16_c00412{left:120.960000pt;}
.x15_c00412{left:122.880000pt;}
.x3_c00412{left:131.840000pt;}
.x12_c00412{left:133.760000pt;}
.x13_c00412{left:142.080000pt;}
.xf_c00412{left:151.680000pt;}
.x4_c00412{left:160.000000pt;}
.x26_c00412{left:161.280000pt;}
.x22_c00412{left:189.440000pt;}
.x24_c00412{left:199.680000pt;}
.x5_c00412{left:208.000000pt;}
.x23_c00412{left:209.280000pt;}
.x27_c00412{left:227.200000pt;}
.x25_c00412{left:237.440000pt;}
.x6_c00412{left:247.680000pt;}
.x20_c00412{left:256.000000pt;}
.x1c_c00412{left:257.280000pt;}
.x36_c00412{left:266.240000pt;}
.x33_c00412{left:274.560000pt;}
.x7_c00412{left:276.480000pt;}
.x29_c00412{left:284.160000pt;}
.x37_c00412{left:286.080000pt;}
.x1d_c00412{left:304.000000pt;}
.x21_c00412{left:305.280000pt;}
.x8_c00412{left:314.880000pt;}
.x34_c00412{left:324.480000pt;}
.x35_c00412{left:333.440000pt;}
.x1e_c00412{left:343.680000pt;}
.x28_c00412{left:362.880000pt;}
.x9_c00412{left:411.520000pt;}
.x1f_c00412{left:420.480000pt;}
.xa_c00412{left:439.680000pt;}
.x17_c00412{left:469.120000pt;}
.xb_c00412{left:497.920000pt;}
.x1b_c00412{left:503.680000pt;}
.x38_c00412{left:515.200000pt;}
.x31_c00412{left:516.480000pt;}
.xc_c00412{left:526.720000pt;}
.x2d_c00412{left:535.680000pt;}
.x30_c00412{left:536.960000pt;}
.x32_c00412{left:545.280000pt;}
.x2a_c00412{left:547.200000pt;}
.x18_c00412{left:554.880000pt;}
.x2e_c00412{left:566.400000pt;}
.x39_c00412{left:574.720000pt;}
.x2b_c00412{left:576.000000pt;}
.xd_c00412{left:584.960000pt;}
.x1_c00412{left:604.160000pt;}
.x19_c00412{left:613.760000pt;}
.x2f_c00412{left:622.720000pt;}
.x2c_c00412{left:632.320000pt;}
.x1a_c00412{left:642.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d257e716b541606e291e21dc.woff2')format("woff");}.ff1_c00413{font-family:ff1_c00413;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m37_c00413{transform:matrix(0.188875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188875,0.000000,0.000000,0.250000,0,0);}
.m49_c00413{transform:matrix(0.196625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196625,0.000000,0.000000,0.250000,0,0);}
.m44_c00413{transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);}
.m4a_c00413{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m42_c00413{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);}
.m47_c00413{transform:matrix(0.233800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233800,0.000000,0.000000,0.250000,0,0);}
.m43_c00413{transform:matrix(0.235625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235625,0.000000,0.000000,0.250000,0,0);}
.m8_c00413{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m20_c00413{transform:matrix(0.237400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237400,0.000000,0.000000,0.250000,0,0);}
.m26_c00413{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m3d_c00413{transform:matrix(0.244525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244525,0.000000,0.000000,0.250000,0,0);}
.m45_c00413{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00413{transform:matrix(0.245625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245625,0.000000,0.000000,0.250000,0,0);}
.m35_c00413{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m48_c00413{transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);}
.m40_c00413{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);}
.m3f_c00413{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);}
.m33_c00413{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_c00413{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);}
.m41_c00413{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);}
.m21_c00413{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m18_c00413{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);}
.m31_c00413{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.mc_c00413{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.md_c00413{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m6_c00413{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m14_c00413{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00413{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);}
.m2c_c00413{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m17_c00413{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m5_c00413{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mf_c00413{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00413{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m7_c00413{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m15_c00413{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00413{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m29_c00413{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m39_c00413{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m4_c00413{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m16_c00413{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m2_c00413{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00413{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m38_c00413{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00413{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00413{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m34_c00413{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);}
.m3e_c00413{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m12_c00413{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m27_c00413{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00413{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m0_c00413{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m23_c00413{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.me_c00413{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m25_c00413{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);}
.m1a_c00413{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m3_c00413{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m1_c00413{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m24_c00413{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);}
.m3b_c00413{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.ma_c00413{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);}
.m2e_c00413{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);}
.m22_c00413{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00413{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00413{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m19_c00413{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m32_c00413{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00413{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m28_c00413{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m36_c00413{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m11_c00413{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);}
.m1d_c00413{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.mb_c00413{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);}
.m13_c00413{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m30_c00413{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m9_c00413{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m46_c00413{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00413{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.v1_c00413{vertical-align:-5.760000px;}
.v0_c00413{vertical-align:0.000000px;}
.v3_c00413{vertical-align:8.640000px;}
.v2_c00413{vertical-align:11.520000px;}
.ls0_c00413{letter-spacing:0.000000px;}
.sc__c00413{text-shadow:none;}
.sc0_c00413{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00413{-webkit-text-stroke:0px transparent;}
.sc0_c00413{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00413{word-spacing:0.000000px;}
.ws3_c00413{word-spacing:10.937051px;}
.ws0_c00413{word-spacing:181.749600px;}
.ws2_c00413{word-spacing:312.578640px;}
.ws1_c00413{word-spacing:527.252640px;}
.fc0_c00413{color:transparent;}
.fs4_c00413{font-size:37.440000px;}
.fs9_c00413{font-size:46.080000px;}
.fsa_c00413{font-size:48.960000px;}
.fs2_c00413{font-size:51.840000px;}
.fs3_c00413{font-size:54.720000px;}
.fs1_c00413{font-size:57.600000px;}
.fs6_c00413{font-size:60.480000px;}
.fsb_c00413{font-size:63.360000px;}
.fs7_c00413{font-size:66.240000px;}
.fs8_c00413{font-size:69.120000px;}
.fsc_c00413{font-size:72.000000px;}
.fs0_c00413{font-size:74.880000px;}
.fs5_c00413{font-size:77.760000px;}
.fsd_c00413{font-size:92.160000px;}
.y0_c00413{bottom:0.000000px;}
.y7c_c00413{bottom:56.880000px;}
.y7d_c00413{bottom:57.600000px;}
.y7e_c00413{bottom:59.040000px;}
.y7f_c00413{bottom:59.760000px;}
.y7b_c00413{bottom:60.480000px;}
.y76_c00413{bottom:100.080000px;}
.y78_c00413{bottom:100.800000px;}
.y7a_c00413{bottom:101.520000px;}
.y79_c00413{bottom:102.240000px;}
.y75_c00413{bottom:102.960000px;}
.y77_c00413{bottom:104.400000px;}
.y71_c00413{bottom:142.560000px;}
.y72_c00413{bottom:143.280000px;}
.y73_c00413{bottom:145.440000px;}
.y70_c00413{bottom:146.880000px;}
.y74_c00413{bottom:147.600000px;}
.y6c_c00413{bottom:186.480000px;}
.y6b_c00413{bottom:188.640000px;}
.y6e_c00413{bottom:189.360000px;}
.y6d_c00413{bottom:190.080000px;}
.y6f_c00413{bottom:190.800000px;}
.y66_c00413{bottom:229.680000px;}
.y67_c00413{bottom:230.400000px;}
.y69_c00413{bottom:231.840000px;}
.y68_c00413{bottom:232.560000px;}
.y65_c00413{bottom:233.280000px;}
.y6a_c00413{bottom:234.000000px;}
.y61_c00413{bottom:273.600000px;}
.y64_c00413{bottom:275.040000px;}
.y62_c00413{bottom:275.760000px;}
.y60_c00413{bottom:277.200000px;}
.y63_c00413{bottom:277.920000px;}
.y5d_c00413{bottom:316.080000px;}
.y5e_c00413{bottom:316.800000px;}
.y5f_c00413{bottom:318.960000px;}
.y5c_c00413{bottom:319.680000px;}
.y59_c00413{bottom:359.280000px;}
.y5a_c00413{bottom:360.000000px;}
.y5b_c00413{bottom:362.160000px;}
.y58_c00413{bottom:362.880000px;}
.y55_c00413{bottom:403.200000px;}
.y57_c00413{bottom:403.920000px;}
.y56_c00413{bottom:405.360000px;}
.y54_c00413{bottom:406.800000px;}
.y51_c00413{bottom:446.400000px;}
.y50_c00413{bottom:448.560000px;}
.y4f_c00413{bottom:449.280000px;}
.y52_c00413{bottom:450.720000px;}
.y53_c00413{bottom:451.440000px;}
.y4c_c00413{bottom:489.600000px;}
.y4d_c00413{bottom:491.760000px;}
.y49_c00413{bottom:492.480000px;}
.y4b_c00413{bottom:493.200000px;}
.y4a_c00413{bottom:493.920000px;}
.y4e_c00413{bottom:495.360000px;}
.y46_c00413{bottom:532.800000px;}
.y47_c00413{bottom:534.960000px;}
.y43_c00413{bottom:535.680000px;}
.y45_c00413{bottom:536.400000px;}
.y44_c00413{bottom:537.120000px;}
.y48_c00413{bottom:537.840000px;}
.y40_c00413{bottom:569.520000px;}
.y3f_c00413{bottom:576.000000px;}
.y42_c00413{bottom:577.440000px;}
.y41_c00413{bottom:578.160000px;}
.y3c_c00413{bottom:578.880000px;}
.y3d_c00413{bottom:579.600000px;}
.y3e_c00413{bottom:580.320000px;}
.y37_c00413{bottom:619.200000px;}
.y3b_c00413{bottom:620.640000px;}
.y36_c00413{bottom:621.360000px;}
.y3a_c00413{bottom:622.080000px;}
.y39_c00413{bottom:622.800000px;}
.y38_c00413{bottom:623.520000px;}
.y30_c00413{bottom:662.400000px;}
.y33_c00413{bottom:663.120000px;}
.y34_c00413{bottom:664.560000px;}
.y2f_c00413{bottom:665.280000px;}
.y32_c00413{bottom:666.000000px;}
.y31_c00413{bottom:666.720000px;}
.y35_c00413{bottom:667.440000px;}
.y2c_c00413{bottom:707.040000px;}
.y2d_c00413{bottom:709.200000px;}
.y2e_c00413{bottom:709.920000px;}
.y27_c00413{bottom:738.000000px;}
.y2b_c00413{bottom:738.720000px;}
.y28_c00413{bottom:739.440000px;}
.y26_c00413{bottom:740.880000px;}
.y2a_c00413{bottom:741.600000px;}
.y29_c00413{bottom:742.320000px;}
.y22_c00413{bottom:781.200000px;}
.y24_c00413{bottom:781.920000px;}
.y21_c00413{bottom:784.080000px;}
.y25_c00413{bottom:784.800000px;}
.y23_c00413{bottom:785.520000px;}
.y1e_c00413{bottom:825.120000px;}
.y1f_c00413{bottom:825.840000px;}
.y1d_c00413{bottom:826.560000px;}
.y1a_c00413{bottom:827.280000px;}
.y1c_c00413{bottom:828.000000px;}
.y1b_c00413{bottom:828.720000px;}
.y20_c00413{bottom:829.440000px;}
.y17_c00413{bottom:868.320000px;}
.y18_c00413{bottom:869.760000px;}
.y15_c00413{bottom:870.480000px;}
.y19_c00413{bottom:871.920000px;}
.y16_c00413{bottom:872.640000px;}
.y13_c00413{bottom:911.520000px;}
.y14_c00413{bottom:912.960000px;}
.y11_c00413{bottom:913.680000px;}
.y12_c00413{bottom:915.840000px;}
.ye_c00413{bottom:954.720000px;}
.y10_c00413{bottom:956.160000px;}
.yf_c00413{bottom:956.880000px;}
.yb_c00413{bottom:957.600000px;}
.yd_c00413{bottom:959.040000px;}
.yc_c00413{bottom:959.760000px;}
.y9_c00413{bottom:997.920000px;}
.ya_c00413{bottom:999.360000px;}
.y7_c00413{bottom:1001.520000px;}
.y8_c00413{bottom:1002.240000px;}
.y5_c00413{bottom:1041.840000px;}
.y6_c00413{bottom:1043.280000px;}
.y2_c00413{bottom:1044.720000px;}
.y4_c00413{bottom:1045.440000px;}
.y3_c00413{bottom:1046.160000px;}
.y1_c00413{bottom:1132.560000px;}
.h6_c00413{height:33.692344px;}
.hb_c00413{height:41.467500px;}
.hc_c00413{height:44.059219px;}
.h4_c00413{height:46.650937px;}
.h5_c00413{height:49.242656px;}
.h3_c00413{height:51.834375px;}
.h8_c00413{height:54.426094px;}
.hd_c00413{height:57.017812px;}
.h9_c00413{height:59.609531px;}
.ha_c00413{height:62.201250px;}
.he_c00413{height:64.792969px;}
.h2_c00413{height:67.384687px;}
.h7_c00413{height:69.976406px;}
.hf_c00413{height:82.935000px;}
.h1_c00413{height:1162.500000px;}
.h0_c00413{height:1162.800000px;}
.w1_c00413{width:768.750000px;}
.w0_c00413{width:768.960000px;}
.x0_c00413{left:0.000000px;}
.x2_c00413{left:55.440000px;}
.x2d_c00413{left:56.880000px;}
.x3_c00413{left:130.320000px;}
.x16_c00413{left:131.760000px;}
.x1f_c00413{left:153.360000px;}
.xd_c00413{left:172.800000px;}
.x4_c00413{left:174.240000px;}
.x20_c00413{left:195.840000px;}
.xb_c00413{left:208.080000px;}
.x14_c00413{left:209.520000px;}
.x5_c00413{left:217.440000px;}
.x23_c00413{left:228.240000px;}
.x10_c00413{left:229.680000px;}
.x17_c00413{left:250.560000px;}
.x15_c00413{left:261.360000px;}
.x1b_c00413{left:270.720000px;}
.xe_c00413{left:272.160000px;}
.x18_c00413{left:293.040000px;}
.x2f_c00413{left:303.840000px;}
.x21_c00413{left:313.920000px;}
.x1c_c00413{left:315.360000px;}
.x27_c00413{left:326.160000px;}
.x2e_c00413{left:358.560000px;}
.x28_c00413{left:369.360000px;}
.x29_c00413{left:401.760000px;}
.x19_c00413{left:411.120000px;}
.x1d_c00413{left:412.560000px;}
.x24_c00413{left:423.360000px;}
.x1a_c00413{left:455.760000px;}
.x1e_c00413{left:466.560000px;}
.x25_c00413{left:475.920000px;}
.x6_c00413{left:532.080000px;}
.x2a_c00413{left:543.600000px;}
.x2b_c00413{left:563.760000px;}
.x2c_c00413{left:565.200000px;}
.x26_c00413{left:585.360000px;}
.x11_c00413{left:586.800000px;}
.xc_c00413{left:597.600000px;}
.x30_c00413{left:607.680000px;}
.xf_c00413{left:618.480000px;}
.x7_c00413{left:619.920000px;}
.x12_c00413{left:643.680000px;}
.x8_c00413{left:652.320000px;}
.x22_c00413{left:663.120000px;}
.x1_c00413{left:671.760000px;}
.x13_c00413{left:685.440000px;}
.x9_c00413{left:695.520000px;}
.x31_c00413{left:707.040000px;}
.xa_c00413{left:715.680000px;}
@media print{
.v1_c00413{vertical-align:-5.120000pt;}
.v0_c00413{vertical-align:0.000000pt;}
.v3_c00413{vertical-align:7.680000pt;}
.v2_c00413{vertical-align:10.240000pt;}
.ls0_c00413{letter-spacing:0.000000pt;}
.ws4_c00413{word-spacing:0.000000pt;}
.ws3_c00413{word-spacing:9.721823pt;}
.ws0_c00413{word-spacing:161.555200pt;}
.ws2_c00413{word-spacing:277.847680pt;}
.ws1_c00413{word-spacing:468.669013pt;}
.fs4_c00413{font-size:33.280000pt;}
.fs9_c00413{font-size:40.960000pt;}
.fsa_c00413{font-size:43.520000pt;}
.fs2_c00413{font-size:46.080000pt;}
.fs3_c00413{font-size:48.640000pt;}
.fs1_c00413{font-size:51.200000pt;}
.fs6_c00413{font-size:53.760000pt;}
.fsb_c00413{font-size:56.320000pt;}
.fs7_c00413{font-size:58.880000pt;}
.fs8_c00413{font-size:61.440000pt;}
.fsc_c00413{font-size:64.000000pt;}
.fs0_c00413{font-size:66.560000pt;}
.fs5_c00413{font-size:69.120000pt;}
.fsd_c00413{font-size:81.920000pt;}
.y0_c00413{bottom:0.000000pt;}
.y7c_c00413{bottom:50.560000pt;}
.y7d_c00413{bottom:51.200000pt;}
.y7e_c00413{bottom:52.480000pt;}
.y7f_c00413{bottom:53.120000pt;}
.y7b_c00413{bottom:53.760000pt;}
.y76_c00413{bottom:88.960000pt;}
.y78_c00413{bottom:89.600000pt;}
.y7a_c00413{bottom:90.240000pt;}
.y79_c00413{bottom:90.880000pt;}
.y75_c00413{bottom:91.520000pt;}
.y77_c00413{bottom:92.800000pt;}
.y71_c00413{bottom:126.720000pt;}
.y72_c00413{bottom:127.360000pt;}
.y73_c00413{bottom:129.280000pt;}
.y70_c00413{bottom:130.560000pt;}
.y74_c00413{bottom:131.200000pt;}
.y6c_c00413{bottom:165.760000pt;}
.y6b_c00413{bottom:167.680000pt;}
.y6e_c00413{bottom:168.320000pt;}
.y6d_c00413{bottom:168.960000pt;}
.y6f_c00413{bottom:169.600000pt;}
.y66_c00413{bottom:204.160000pt;}
.y67_c00413{bottom:204.800000pt;}
.y69_c00413{bottom:206.080000pt;}
.y68_c00413{bottom:206.720000pt;}
.y65_c00413{bottom:207.360000pt;}
.y6a_c00413{bottom:208.000000pt;}
.y61_c00413{bottom:243.200000pt;}
.y64_c00413{bottom:244.480000pt;}
.y62_c00413{bottom:245.120000pt;}
.y60_c00413{bottom:246.400000pt;}
.y63_c00413{bottom:247.040000pt;}
.y5d_c00413{bottom:280.960000pt;}
.y5e_c00413{bottom:281.600000pt;}
.y5f_c00413{bottom:283.520000pt;}
.y5c_c00413{bottom:284.160000pt;}
.y59_c00413{bottom:319.360000pt;}
.y5a_c00413{bottom:320.000000pt;}
.y5b_c00413{bottom:321.920000pt;}
.y58_c00413{bottom:322.560000pt;}
.y55_c00413{bottom:358.400000pt;}
.y57_c00413{bottom:359.040000pt;}
.y56_c00413{bottom:360.320000pt;}
.y54_c00413{bottom:361.600000pt;}
.y51_c00413{bottom:396.800000pt;}
.y50_c00413{bottom:398.720000pt;}
.y4f_c00413{bottom:399.360000pt;}
.y52_c00413{bottom:400.640000pt;}
.y53_c00413{bottom:401.280000pt;}
.y4c_c00413{bottom:435.200000pt;}
.y4d_c00413{bottom:437.120000pt;}
.y49_c00413{bottom:437.760000pt;}
.y4b_c00413{bottom:438.400000pt;}
.y4a_c00413{bottom:439.040000pt;}
.y4e_c00413{bottom:440.320000pt;}
.y46_c00413{bottom:473.600000pt;}
.y47_c00413{bottom:475.520000pt;}
.y43_c00413{bottom:476.160000pt;}
.y45_c00413{bottom:476.800000pt;}
.y44_c00413{bottom:477.440000pt;}
.y48_c00413{bottom:478.080000pt;}
.y40_c00413{bottom:506.240000pt;}
.y3f_c00413{bottom:512.000000pt;}
.y42_c00413{bottom:513.280000pt;}
.y41_c00413{bottom:513.920000pt;}
.y3c_c00413{bottom:514.560000pt;}
.y3d_c00413{bottom:515.200000pt;}
.y3e_c00413{bottom:515.840000pt;}
.y37_c00413{bottom:550.400000pt;}
.y3b_c00413{bottom:551.680000pt;}
.y36_c00413{bottom:552.320000pt;}
.y3a_c00413{bottom:552.960000pt;}
.y39_c00413{bottom:553.600000pt;}
.y38_c00413{bottom:554.240000pt;}
.y30_c00413{bottom:588.800000pt;}
.y33_c00413{bottom:589.440000pt;}
.y34_c00413{bottom:590.720000pt;}
.y2f_c00413{bottom:591.360000pt;}
.y32_c00413{bottom:592.000000pt;}
.y31_c00413{bottom:592.640000pt;}
.y35_c00413{bottom:593.280000pt;}
.y2c_c00413{bottom:628.480000pt;}
.y2d_c00413{bottom:630.400000pt;}
.y2e_c00413{bottom:631.040000pt;}
.y27_c00413{bottom:656.000000pt;}
.y2b_c00413{bottom:656.640000pt;}
.y28_c00413{bottom:657.280000pt;}
.y26_c00413{bottom:658.560000pt;}
.y2a_c00413{bottom:659.200000pt;}
.y29_c00413{bottom:659.840000pt;}
.y22_c00413{bottom:694.400000pt;}
.y24_c00413{bottom:695.040000pt;}
.y21_c00413{bottom:696.960000pt;}
.y25_c00413{bottom:697.600000pt;}
.y23_c00413{bottom:698.240000pt;}
.y1e_c00413{bottom:733.440000pt;}
.y1f_c00413{bottom:734.080000pt;}
.y1d_c00413{bottom:734.720000pt;}
.y1a_c00413{bottom:735.360000pt;}
.y1c_c00413{bottom:736.000000pt;}
.y1b_c00413{bottom:736.640000pt;}
.y20_c00413{bottom:737.280000pt;}
.y17_c00413{bottom:771.840000pt;}
.y18_c00413{bottom:773.120000pt;}
.y15_c00413{bottom:773.760000pt;}
.y19_c00413{bottom:775.040000pt;}
.y16_c00413{bottom:775.680000pt;}
.y13_c00413{bottom:810.240000pt;}
.y14_c00413{bottom:811.520000pt;}
.y11_c00413{bottom:812.160000pt;}
.y12_c00413{bottom:814.080000pt;}
.ye_c00413{bottom:848.640000pt;}
.y10_c00413{bottom:849.920000pt;}
.yf_c00413{bottom:850.560000pt;}
.yb_c00413{bottom:851.200000pt;}
.yd_c00413{bottom:852.480000pt;}
.yc_c00413{bottom:853.120000pt;}
.y9_c00413{bottom:887.040000pt;}
.ya_c00413{bottom:888.320000pt;}
.y7_c00413{bottom:890.240000pt;}
.y8_c00413{bottom:890.880000pt;}
.y5_c00413{bottom:926.080000pt;}
.y6_c00413{bottom:927.360000pt;}
.y2_c00413{bottom:928.640000pt;}
.y4_c00413{bottom:929.280000pt;}
.y3_c00413{bottom:929.920000pt;}
.y1_c00413{bottom:1006.720000pt;}
.h6_c00413{height:29.948750pt;}
.hb_c00413{height:36.860000pt;}
.hc_c00413{height:39.163750pt;}
.h4_c00413{height:41.467500pt;}
.h5_c00413{height:43.771250pt;}
.h3_c00413{height:46.075000pt;}
.h8_c00413{height:48.378750pt;}
.hd_c00413{height:50.682500pt;}
.h9_c00413{height:52.986250pt;}
.ha_c00413{height:55.290000pt;}
.he_c00413{height:57.593750pt;}
.h2_c00413{height:59.897500pt;}
.h7_c00413{height:62.201250pt;}
.hf_c00413{height:73.720000pt;}
.h1_c00413{height:1033.333333pt;}
.h0_c00413{height:1033.600000pt;}
.w1_c00413{width:683.333333pt;}
.w0_c00413{width:683.520000pt;}
.x0_c00413{left:0.000000pt;}
.x2_c00413{left:49.280000pt;}
.x2d_c00413{left:50.560000pt;}
.x3_c00413{left:115.840000pt;}
.x16_c00413{left:117.120000pt;}
.x1f_c00413{left:136.320000pt;}
.xd_c00413{left:153.600000pt;}
.x4_c00413{left:154.880000pt;}
.x20_c00413{left:174.080000pt;}
.xb_c00413{left:184.960000pt;}
.x14_c00413{left:186.240000pt;}
.x5_c00413{left:193.280000pt;}
.x23_c00413{left:202.880000pt;}
.x10_c00413{left:204.160000pt;}
.x17_c00413{left:222.720000pt;}
.x15_c00413{left:232.320000pt;}
.x1b_c00413{left:240.640000pt;}
.xe_c00413{left:241.920000pt;}
.x18_c00413{left:260.480000pt;}
.x2f_c00413{left:270.080000pt;}
.x21_c00413{left:279.040000pt;}
.x1c_c00413{left:280.320000pt;}
.x27_c00413{left:289.920000pt;}
.x2e_c00413{left:318.720000pt;}
.x28_c00413{left:328.320000pt;}
.x29_c00413{left:357.120000pt;}
.x19_c00413{left:365.440000pt;}
.x1d_c00413{left:366.720000pt;}
.x24_c00413{left:376.320000pt;}
.x1a_c00413{left:405.120000pt;}
.x1e_c00413{left:414.720000pt;}
.x25_c00413{left:423.040000pt;}
.x6_c00413{left:472.960000pt;}
.x2a_c00413{left:483.200000pt;}
.x2b_c00413{left:501.120000pt;}
.x2c_c00413{left:502.400000pt;}
.x26_c00413{left:520.320000pt;}
.x11_c00413{left:521.600000pt;}
.xc_c00413{left:531.200000pt;}
.x30_c00413{left:540.160000pt;}
.xf_c00413{left:549.760000pt;}
.x7_c00413{left:551.040000pt;}
.x12_c00413{left:572.160000pt;}
.x8_c00413{left:579.840000pt;}
.x22_c00413{left:589.440000pt;}
.x1_c00413{left:597.120000pt;}
.x13_c00413{left:609.280000pt;}
.x9_c00413{left:618.240000pt;}
.x31_c00413{left:628.480000pt;}
.xa_c00413{left:636.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f47cb3cd9169d346b999f686.woff2')format("woff");}.ff1_c00414{font-family:ff1_c00414;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m53_c00414{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m51_c00414{transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);}
.m4c_c00414{transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);}
.m50_c00414{transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);}
.m41_c00414{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00414{transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);}
.m1d_c00414{transform:matrix(0.217575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217575,0.000000,0.000000,0.250000,0,0);}
.m42_c00414{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);}
.m6_c00414{transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);}
.m30_c00414{transform:matrix(0.227325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227325,0.000000,0.000000,0.250000,0,0);}
.m17_c00414{transform:matrix(0.230325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230325,0.000000,0.000000,0.250000,0,0);}
.m28_c00414{transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);}
.m1e_c00414{transform:matrix(0.234925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234925,0.000000,0.000000,0.250000,0,0);}
.m46_c00414{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m14_c00414{transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);}
.m38_c00414{transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);}
.ma_c00414{transform:matrix(0.243100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243100,0.000000,0.000000,0.250000,0,0);}
.m34_c00414{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m21_c00414{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);}
.m52_c00414{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m32_c00414{transform:matrix(0.245425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245425,0.000000,0.000000,0.250000,0,0);}
.m3a_c00414{transform:matrix(0.245625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245625,0.000000,0.000000,0.250000,0,0);}
.m4e_c00414{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m19_c00414{transform:matrix(0.248050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248050,0.000000,0.000000,0.250000,0,0);}
.m1_c00414{transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);}
.m2a_c00414{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00414{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mf_c00414{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_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);}
.m11_c00414{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_c00414{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m7_c00414{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);}
.m29_c00414{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m24_c00414{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);}
.m3f_c00414{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m36_c00414{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m3_c00414{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m10_c00414{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);}
.m2f_c00414{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m12_c00414{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m45_c00414{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m18_c00414{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m48_c00414{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00414{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00414{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00414{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00414{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m35_c00414{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00414{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00414{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m39_c00414{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m44_c00414{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mc_c00414{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00414{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m13_c00414{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m26_c00414{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);}
.m40_c00414{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00414{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m5_c00414{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.me_c00414{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);}
.m33_c00414{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m9_c00414{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);}
.m27_c00414{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m22_c00414{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00414{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.md_c00414{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m0_c00414{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00414{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00414{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m25_c00414{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00414{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);}
.m54_c00414{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m23_c00414{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00414{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m49_c00414{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m20_c00414{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);}
.mb_c00414{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m37_c00414{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m47_c00414{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);}
.m15_c00414{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m2_c00414{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m4_c00414{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00414{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m31_c00414{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m43_c00414{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);}
.v1_c00414{vertical-align:-2.880000px;}
.v0_c00414{vertical-align:0.000000px;}
.v2_c00414{vertical-align:5.760000px;}
.ls1_c00414{letter-spacing:0.000000px;}
.ls0_c00414{letter-spacing:45.308400px;}
.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.106800px;}
.ws2_c00414{word-spacing:0.000000px;}
.ws1_c00414{word-spacing:9.212400px;}
.fc0_c00414{color:transparent;}
.fse_c00414{font-size:34.560000px;}
.fsc_c00414{font-size:40.320000px;}
.fs7_c00414{font-size:46.080000px;}
.fsb_c00414{font-size:48.960000px;}
.fs2_c00414{font-size:51.840000px;}
.fs6_c00414{font-size:54.720000px;}
.fs5_c00414{font-size:57.600000px;}
.fs0_c00414{font-size:60.480000px;}
.fs3_c00414{font-size:63.360000px;}
.fs9_c00414{font-size:66.240000px;}
.fsd_c00414{font-size:69.120000px;}
.fs4_c00414{font-size:72.000000px;}
.fs8_c00414{font-size:74.880000px;}
.fs1_c00414{font-size:77.760000px;}
.fsf_c00414{font-size:80.640000px;}
.fsa_c00414{font-size:112.320000px;}
.y0_c00414{bottom:0.000000px;}
.y56_c00414{bottom:66.240000px;}
.y58_c00414{bottom:66.960000px;}
.y55_c00414{bottom:68.400000px;}
.y7a_c00414{bottom:69.120000px;}
.y57_c00414{bottom:69.840000px;}
.y53_c00414{bottom:110.160000px;}
.y54_c00414{bottom:110.880000px;}
.y79_c00414{bottom:111.600000px;}
.y78_c00414{bottom:113.040000px;}
.y52_c00414{bottom:113.760000px;}
.y50_c00414{bottom:153.360000px;}
.y51_c00414{bottom:154.800000px;}
.y4f_c00414{bottom:156.240000px;}
.y77_c00414{bottom:158.400000px;}
.y76_c00414{bottom:159.840000px;}
.y4d_c00414{bottom:197.280000px;}
.y4e_c00414{bottom:198.000000px;}
.y4c_c00414{bottom:199.440000px;}
.y74_c00414{bottom:200.160000px;}
.y75_c00414{bottom:202.320000px;}
.y4a_c00414{bottom:239.760000px;}
.y4b_c00414{bottom:241.200000px;}
.y73_c00414{bottom:242.640000px;}
.y49_c00414{bottom:243.360000px;}
.y72_c00414{bottom:244.080000px;}
.y47_c00414{bottom:283.680000px;}
.y46_c00414{bottom:285.840000px;}
.y71_c00414{bottom:286.560000px;}
.y48_c00414{bottom:288.000000px;}
.y41_c00414{bottom:326.880000px;}
.y42_c00414{bottom:327.600000px;}
.y43_c00414{bottom:328.320000px;}
.y6f_c00414{bottom:329.040000px;}
.y40_c00414{bottom:329.760000px;}
.y70_c00414{bottom:330.480000px;}
.y44_c00414{bottom:331.200000px;}
.y45_c00414{bottom:331.920000px;}
.y3d_c00414{bottom:369.360000px;}
.y3f_c00414{bottom:370.080000px;}
.y3c_c00414{bottom:371.520000px;}
.y6c_c00414{bottom:372.240000px;}
.y6d_c00414{bottom:372.960000px;}
.y3e_c00414{bottom:373.680000px;}
.y6e_c00414{bottom:375.120000px;}
.y3a_c00414{bottom:412.560000px;}
.y3b_c00414{bottom:414.000000px;}
.y6b_c00414{bottom:414.720000px;}
.y39_c00414{bottom:415.440000px;}
.y6a_c00414{bottom:416.160000px;}
.y37_c00414{bottom:456.480000px;}
.y38_c00414{bottom:457.200000px;}
.y69_c00414{bottom:457.920000px;}
.y68_c00414{bottom:458.640000px;}
.y36_c00414{bottom:459.360000px;}
.y34_c00414{bottom:499.680000px;}
.y35_c00414{bottom:500.400000px;}
.y33_c00414{bottom:501.840000px;}
.y67_c00414{bottom:502.560000px;}
.y31_c00414{bottom:543.600000px;}
.y32_c00414{bottom:544.320000px;}
.y30_c00414{bottom:545.040000px;}
.y65_c00414{bottom:545.760000px;}
.y66_c00414{bottom:546.480000px;}
.y2d_c00414{bottom:586.080000px;}
.y2f_c00414{bottom:586.800000px;}
.y64_c00414{bottom:588.240000px;}
.y2c_c00414{bottom:588.960000px;}
.y2e_c00414{bottom:590.400000px;}
.y2b_c00414{bottom:630.000000px;}
.y2a_c00414{bottom:631.440000px;}
.y27_c00414{bottom:662.400000px;}
.y26_c00414{bottom:664.560000px;}
.y29_c00414{bottom:666.000000px;}
.y28_c00414{bottom:666.720000px;}
.y23_c00414{bottom:705.600000px;}
.y22_c00414{bottom:707.760000px;}
.y63_c00414{bottom:708.480000px;}
.y25_c00414{bottom:709.200000px;}
.y24_c00414{bottom:709.920000px;}
.y21_c00414{bottom:740.160000px;}
.y1e_c00414{bottom:748.800000px;}
.y1f_c00414{bottom:750.960000px;}
.y1d_c00414{bottom:751.680000px;}
.y20_c00414{bottom:753.120000px;}
.y1b_c00414{bottom:792.000000px;}
.y1a_c00414{bottom:793.440000px;}
.y60_c00414{bottom:794.160000px;}
.y1c_c00414{bottom:794.880000px;}
.y61_c00414{bottom:796.320000px;}
.y62_c00414{bottom:797.040000px;}
.y17_c00414{bottom:834.480000px;}
.y19_c00414{bottom:835.920000px;}
.y5f_c00414{bottom:836.640000px;}
.y16_c00414{bottom:837.360000px;}
.y5e_c00414{bottom:838.080000px;}
.y18_c00414{bottom:839.520000px;}
.y13_c00414{bottom:878.400000px;}
.y5d_c00414{bottom:879.840000px;}
.y12_c00414{bottom:880.560000px;}
.y14_c00414{bottom:882.000000px;}
.y15_c00414{bottom:882.720000px;}
.yb_c00414{bottom:920.880000px;}
.yd_c00414{bottom:921.600000px;}
.ya_c00414{bottom:923.040000px;}
.y5c_c00414{bottom:923.760000px;}
.yc_c00414{bottom:925.200000px;}
.y6_c00414{bottom:964.080000px;}
.y9_c00414{bottom:965.520000px;}
.y5_c00414{bottom:966.240000px;}
.y5b_c00414{bottom:966.960000px;}
.y7_c00414{bottom:967.680000px;}
.y8_c00414{bottom:968.400000px;}
.y2_c00414{bottom:1007.280000px;}
.y4_c00414{bottom:1008.720000px;}
.y1_c00414{bottom:1009.440000px;}
.y3_c00414{bottom:1011.600000px;}
.yf_c00414{bottom:1051.200000px;}
.y11_c00414{bottom:1051.920000px;}
.ye_c00414{bottom:1053.360000px;}
.y10_c00414{bottom:1054.800000px;}
.y5a_c00414{bottom:1056.240000px;}
.y59_c00414{bottom:1127.520000px;}
.h11_c00414{height:31.100625px;}
.hf_c00414{height:36.284062px;}
.h9_c00414{height:41.467500px;}
.he_c00414{height:44.059219px;}
.h4_c00414{height:46.650937px;}
.h8_c00414{height:49.242656px;}
.h7_c00414{height:51.834375px;}
.h2_c00414{height:54.426094px;}
.h5_c00414{height:57.017812px;}
.h13_c00414{height:57.594375px;}
.hc_c00414{height:59.609531px;}
.h14_c00414{height:60.186094px;}
.h10_c00414{height:62.201250px;}
.hb_c00414{height:64.504687px;}
.h6_c00414{height:64.792969px;}
.ha_c00414{height:67.384687px;}
.h3_c00414{height:69.976406px;}
.h12_c00414{height:72.568125px;}
.hd_c00414{height:101.077031px;}
.h1_c00414{height:1162.500000px;}
.h0_c00414{height:1162.800000px;}
.w1_c00414{width:768.750000px;}
.w0_c00414{width:768.960000px;}
.x0_c00414{left:0.000000px;}
.x1_c00414{left:51.840000px;}
.x13_c00414{left:53.280000px;}
.x1e_c00414{left:54.720000px;}
.x23_c00414{left:97.200000px;}
.x2_c00414{left:127.440000px;}
.x22_c00414{left:128.880000px;}
.x19_c00414{left:130.320000px;}
.x1a_c00414{left:203.760000px;}
.xf_c00414{left:213.120000px;}
.x3_c00414{left:214.560000px;}
.x1b_c00414{left:216.000000px;}
.x1c_c00414{left:248.400000px;}
.x14_c00414{left:257.040000px;}
.xa_c00414{left:258.480000px;}
.x4_c00414{left:269.280000px;}
.x10_c00414{left:290.160000px;}
.x24_c00414{left:291.600000px;}
.x15_c00414{left:302.400000px;}
.xb_c00414{left:311.040000px;}
.xe_c00414{left:312.480000px;}
.x11_c00414{left:334.800000px;}
.x12_c00414{left:344.880000px;}
.xc_c00414{left:354.960000px;}
.x21_c00414{left:356.400000px;}
.x1f_c00414{left:367.200000px;}
.x5_c00414{left:398.160000px;}
.x16_c00414{left:409.680000px;}
.x20_c00414{left:421.200000px;}
.x1d_c00414{left:431.280000px;}
.xd_c00414{left:442.080000px;}
.x6_c00414{left:451.440000px;}
.x17_c00414{left:464.400000px;}
.x18_c00414{left:475.200000px;}
.x7_c00414{left:496.800000px;}
.x8_c00414{left:540.720000px;}
.x31_c00414{left:542.160000px;}
.x9_c00414{left:562.320000px;}
.x2f_c00414{left:563.760000px;}
.x2b_c00414{left:583.200000px;}
.x26_c00414{left:616.320000px;}
.x2e_c00414{left:617.760000px;}
.x27_c00414{left:648.720000px;}
.x2a_c00414{left:650.160000px;}
.x25_c00414{left:665.280000px;}
.x2c_c00414{left:682.560000px;}
.x28_c00414{left:691.920000px;}
.x2d_c00414{left:693.360000px;}
.x29_c00414{left:712.800000px;}
.x30_c00414{left:714.240000px;}
@media print{
.v1_c00414{vertical-align:-2.560000pt;}
.v0_c00414{vertical-align:0.000000pt;}
.v2_c00414{vertical-align:5.120000pt;}
.ls1_c00414{letter-spacing:0.000000pt;}
.ls0_c00414{letter-spacing:40.274133pt;}
.ws0_c00414{word-spacing:-0.094933pt;}
.ws2_c00414{word-spacing:0.000000pt;}
.ws1_c00414{word-spacing:8.188800pt;}
.fse_c00414{font-size:30.720000pt;}
.fsc_c00414{font-size:35.840000pt;}
.fs7_c00414{font-size:40.960000pt;}
.fsb_c00414{font-size:43.520000pt;}
.fs2_c00414{font-size:46.080000pt;}
.fs6_c00414{font-size:48.640000pt;}
.fs5_c00414{font-size:51.200000pt;}
.fs0_c00414{font-size:53.760000pt;}
.fs3_c00414{font-size:56.320000pt;}
.fs9_c00414{font-size:58.880000pt;}
.fsd_c00414{font-size:61.440000pt;}
.fs4_c00414{font-size:64.000000pt;}
.fs8_c00414{font-size:66.560000pt;}
.fs1_c00414{font-size:69.120000pt;}
.fsf_c00414{font-size:71.680000pt;}
.fsa_c00414{font-size:99.840000pt;}
.y0_c00414{bottom:0.000000pt;}
.y56_c00414{bottom:58.880000pt;}
.y58_c00414{bottom:59.520000pt;}
.y55_c00414{bottom:60.800000pt;}
.y7a_c00414{bottom:61.440000pt;}
.y57_c00414{bottom:62.080000pt;}
.y53_c00414{bottom:97.920000pt;}
.y54_c00414{bottom:98.560000pt;}
.y79_c00414{bottom:99.200000pt;}
.y78_c00414{bottom:100.480000pt;}
.y52_c00414{bottom:101.120000pt;}
.y50_c00414{bottom:136.320000pt;}
.y51_c00414{bottom:137.600000pt;}
.y4f_c00414{bottom:138.880000pt;}
.y77_c00414{bottom:140.800000pt;}
.y76_c00414{bottom:142.080000pt;}
.y4d_c00414{bottom:175.360000pt;}
.y4e_c00414{bottom:176.000000pt;}
.y4c_c00414{bottom:177.280000pt;}
.y74_c00414{bottom:177.920000pt;}
.y75_c00414{bottom:179.840000pt;}
.y4a_c00414{bottom:213.120000pt;}
.y4b_c00414{bottom:214.400000pt;}
.y73_c00414{bottom:215.680000pt;}
.y49_c00414{bottom:216.320000pt;}
.y72_c00414{bottom:216.960000pt;}
.y47_c00414{bottom:252.160000pt;}
.y46_c00414{bottom:254.080000pt;}
.y71_c00414{bottom:254.720000pt;}
.y48_c00414{bottom:256.000000pt;}
.y41_c00414{bottom:290.560000pt;}
.y42_c00414{bottom:291.200000pt;}
.y43_c00414{bottom:291.840000pt;}
.y6f_c00414{bottom:292.480000pt;}
.y40_c00414{bottom:293.120000pt;}
.y70_c00414{bottom:293.760000pt;}
.y44_c00414{bottom:294.400000pt;}
.y45_c00414{bottom:295.040000pt;}
.y3d_c00414{bottom:328.320000pt;}
.y3f_c00414{bottom:328.960000pt;}
.y3c_c00414{bottom:330.240000pt;}
.y6c_c00414{bottom:330.880000pt;}
.y6d_c00414{bottom:331.520000pt;}
.y3e_c00414{bottom:332.160000pt;}
.y6e_c00414{bottom:333.440000pt;}
.y3a_c00414{bottom:366.720000pt;}
.y3b_c00414{bottom:368.000000pt;}
.y6b_c00414{bottom:368.640000pt;}
.y39_c00414{bottom:369.280000pt;}
.y6a_c00414{bottom:369.920000pt;}
.y37_c00414{bottom:405.760000pt;}
.y38_c00414{bottom:406.400000pt;}
.y69_c00414{bottom:407.040000pt;}
.y68_c00414{bottom:407.680000pt;}
.y36_c00414{bottom:408.320000pt;}
.y34_c00414{bottom:444.160000pt;}
.y35_c00414{bottom:444.800000pt;}
.y33_c00414{bottom:446.080000pt;}
.y67_c00414{bottom:446.720000pt;}
.y31_c00414{bottom:483.200000pt;}
.y32_c00414{bottom:483.840000pt;}
.y30_c00414{bottom:484.480000pt;}
.y65_c00414{bottom:485.120000pt;}
.y66_c00414{bottom:485.760000pt;}
.y2d_c00414{bottom:520.960000pt;}
.y2f_c00414{bottom:521.600000pt;}
.y64_c00414{bottom:522.880000pt;}
.y2c_c00414{bottom:523.520000pt;}
.y2e_c00414{bottom:524.800000pt;}
.y2b_c00414{bottom:560.000000pt;}
.y2a_c00414{bottom:561.280000pt;}
.y27_c00414{bottom:588.800000pt;}
.y26_c00414{bottom:590.720000pt;}
.y29_c00414{bottom:592.000000pt;}
.y28_c00414{bottom:592.640000pt;}
.y23_c00414{bottom:627.200000pt;}
.y22_c00414{bottom:629.120000pt;}
.y63_c00414{bottom:629.760000pt;}
.y25_c00414{bottom:630.400000pt;}
.y24_c00414{bottom:631.040000pt;}
.y21_c00414{bottom:657.920000pt;}
.y1e_c00414{bottom:665.600000pt;}
.y1f_c00414{bottom:667.520000pt;}
.y1d_c00414{bottom:668.160000pt;}
.y20_c00414{bottom:669.440000pt;}
.y1b_c00414{bottom:704.000000pt;}
.y1a_c00414{bottom:705.280000pt;}
.y60_c00414{bottom:705.920000pt;}
.y1c_c00414{bottom:706.560000pt;}
.y61_c00414{bottom:707.840000pt;}
.y62_c00414{bottom:708.480000pt;}
.y17_c00414{bottom:741.760000pt;}
.y19_c00414{bottom:743.040000pt;}
.y5f_c00414{bottom:743.680000pt;}
.y16_c00414{bottom:744.320000pt;}
.y5e_c00414{bottom:744.960000pt;}
.y18_c00414{bottom:746.240000pt;}
.y13_c00414{bottom:780.800000pt;}
.y5d_c00414{bottom:782.080000pt;}
.y12_c00414{bottom:782.720000pt;}
.y14_c00414{bottom:784.000000pt;}
.y15_c00414{bottom:784.640000pt;}
.yb_c00414{bottom:818.560000pt;}
.yd_c00414{bottom:819.200000pt;}
.ya_c00414{bottom:820.480000pt;}
.y5c_c00414{bottom:821.120000pt;}
.yc_c00414{bottom:822.400000pt;}
.y6_c00414{bottom:856.960000pt;}
.y9_c00414{bottom:858.240000pt;}
.y5_c00414{bottom:858.880000pt;}
.y5b_c00414{bottom:859.520000pt;}
.y7_c00414{bottom:860.160000pt;}
.y8_c00414{bottom:860.800000pt;}
.y2_c00414{bottom:895.360000pt;}
.y4_c00414{bottom:896.640000pt;}
.y1_c00414{bottom:897.280000pt;}
.y3_c00414{bottom:899.200000pt;}
.yf_c00414{bottom:934.400000pt;}
.y11_c00414{bottom:935.040000pt;}
.ye_c00414{bottom:936.320000pt;}
.y10_c00414{bottom:937.600000pt;}
.y5a_c00414{bottom:938.880000pt;}
.y59_c00414{bottom:1002.240000pt;}
.h11_c00414{height:27.645000pt;}
.hf_c00414{height:32.252500pt;}
.h9_c00414{height:36.860000pt;}
.he_c00414{height:39.163750pt;}
.h4_c00414{height:41.467500pt;}
.h8_c00414{height:43.771250pt;}
.h7_c00414{height:46.075000pt;}
.h2_c00414{height:48.378750pt;}
.h5_c00414{height:50.682500pt;}
.h13_c00414{height:51.195000pt;}
.hc_c00414{height:52.986250pt;}
.h14_c00414{height:53.498750pt;}
.h10_c00414{height:55.290000pt;}
.hb_c00414{height:57.337500pt;}
.h6_c00414{height:57.593750pt;}
.ha_c00414{height:59.897500pt;}
.h3_c00414{height:62.201250pt;}
.h12_c00414{height:64.505000pt;}
.hd_c00414{height:89.846250pt;}
.h1_c00414{height:1033.333333pt;}
.h0_c00414{height:1033.600000pt;}
.w1_c00414{width:683.333333pt;}
.w0_c00414{width:683.520000pt;}
.x0_c00414{left:0.000000pt;}
.x1_c00414{left:46.080000pt;}
.x13_c00414{left:47.360000pt;}
.x1e_c00414{left:48.640000pt;}
.x23_c00414{left:86.400000pt;}
.x2_c00414{left:113.280000pt;}
.x22_c00414{left:114.560000pt;}
.x19_c00414{left:115.840000pt;}
.x1a_c00414{left:181.120000pt;}
.xf_c00414{left:189.440000pt;}
.x3_c00414{left:190.720000pt;}
.x1b_c00414{left:192.000000pt;}
.x1c_c00414{left:220.800000pt;}
.x14_c00414{left:228.480000pt;}
.xa_c00414{left:229.760000pt;}
.x4_c00414{left:239.360000pt;}
.x10_c00414{left:257.920000pt;}
.x24_c00414{left:259.200000pt;}
.x15_c00414{left:268.800000pt;}
.xb_c00414{left:276.480000pt;}
.xe_c00414{left:277.760000pt;}
.x11_c00414{left:297.600000pt;}
.x12_c00414{left:306.560000pt;}
.xc_c00414{left:315.520000pt;}
.x21_c00414{left:316.800000pt;}
.x1f_c00414{left:326.400000pt;}
.x5_c00414{left:353.920000pt;}
.x16_c00414{left:364.160000pt;}
.x20_c00414{left:374.400000pt;}
.x1d_c00414{left:383.360000pt;}
.xd_c00414{left:392.960000pt;}
.x6_c00414{left:401.280000pt;}
.x17_c00414{left:412.800000pt;}
.x18_c00414{left:422.400000pt;}
.x7_c00414{left:441.600000pt;}
.x8_c00414{left:480.640000pt;}
.x31_c00414{left:481.920000pt;}
.x9_c00414{left:499.840000pt;}
.x2f_c00414{left:501.120000pt;}
.x2b_c00414{left:518.400000pt;}
.x26_c00414{left:547.840000pt;}
.x2e_c00414{left:549.120000pt;}
.x27_c00414{left:576.640000pt;}
.x2a_c00414{left:577.920000pt;}
.x25_c00414{left:591.360000pt;}
.x2c_c00414{left:606.720000pt;}
.x28_c00414{left:615.040000pt;}
.x2d_c00414{left:616.320000pt;}
.x29_c00414{left:633.600000pt;}
.x30_c00414{left:634.880000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b519ade9aa0f74803bfcc682.woff2')format("woff");}.ff1_c00415{font-family:ff1_c00415;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m34_c00415{transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);}
.m2e_c00415{transform:matrix(0.211650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211650,0.000000,0.000000,0.250000,0,0);}
.m32_c00415{transform:matrix(0.215825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215825,0.000000,0.000000,0.250000,0,0);}
.m1_c00415{transform:matrix(0.216150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216150,0.000000,0.000000,0.250000,0,0);}
.m39_c00415{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m35_c00415{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m28_c00415{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_c00415{transform:matrix(0.231300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231300,0.000000,0.000000,0.250000,0,0);}
.m16_c00415{transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);}
.m3_c00415{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m2d_c00415{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m2a_c00415{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m30_c00415{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m12_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);}
.m31_c00415{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mf_c00415{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_c00415{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m11_c00415{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m2_c00415{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);}
.m38_c00415{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m17_c00415{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m6_c00415{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_c00415{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00415{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00415{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m4_c00415{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m26_c00415{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.me_c00415{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);}
.m2b_c00415{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m22_c00415{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m33_c00415{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m27_c00415{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00415{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m23_c00415{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m25_c00415{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m21_c00415{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m29_c00415{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m37_c00415{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00415{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mb_c00415{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mc_c00415{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00415{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m20_c00415{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m5_c00415{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);}
.m0_c00415{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m14_c00415{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m8_c00415{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m19_c00415{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m13_c00415{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);}
.m24_c00415{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.ma_c00415{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00415{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m18_c00415{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00415{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m7_c00415{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.md_c00415{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m10_c00415{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m36_c00415{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.v1_c00415{vertical-align:-5.760000px;}
.v0_c00415{vertical-align:0.000000px;}
.v2_c00415{vertical-align:2.880000px;}
.v3_c00415{vertical-align:8.640000px;}
.ls2_c00415{letter-spacing:0.000000px;}
.ls1_c00415{letter-spacing:149.869680px;}
.ls0_c00415{letter-spacing:156.523680px;}
.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;}
}
.ws2_c00415{word-spacing:0.000000px;}
.ws1_c00415{word-spacing:11.856000px;}
.ws0_c00415{word-spacing:13.463637px;}
.fc0_c00415{color:transparent;}
.fsb_c00415{font-size:46.080000px;}
.fs9_c00415{font-size:48.960000px;}
.fs4_c00415{font-size:51.840000px;}
.fs3_c00415{font-size:54.720000px;}
.fs5_c00415{font-size:57.600000px;}
.fs6_c00415{font-size:60.480000px;}
.fs0_c00415{font-size:63.360000px;}
.fsa_c00415{font-size:66.240000px;}
.fs7_c00415{font-size:69.120000px;}
.fs8_c00415{font-size:72.000000px;}
.fs2_c00415{font-size:74.880000px;}
.fs1_c00415{font-size:77.760000px;}
.y0_c00415{bottom:0.000000px;}
.y40_c00415{bottom:67.680000px;}
.y74_c00415{bottom:70.560000px;}
.y3f_c00415{bottom:71.280000px;}
.y73_c00415{bottom:72.720000px;}
.y3e_c00415{bottom:111.600000px;}
.y72_c00415{bottom:113.760000px;}
.y3d_c00415{bottom:114.480000px;}
.y71_c00415{bottom:116.640000px;}
.y3a_c00415{bottom:154.800000px;}
.y3c_c00415{bottom:156.240000px;}
.y39_c00415{bottom:157.680000px;}
.y3b_c00415{bottom:158.400000px;}
.y70_c00415{bottom:159.840000px;}
.y38_c00415{bottom:198.000000px;}
.y6e_c00415{bottom:200.880000px;}
.y37_c00415{bottom:201.600000px;}
.y6f_c00415{bottom:203.040000px;}
.y36_c00415{bottom:241.200000px;}
.y35_c00415{bottom:244.080000px;}
.y6d_c00415{bottom:246.240000px;}
.y34_c00415{bottom:285.120000px;}
.y33_c00415{bottom:287.280000px;}
.y6c_c00415{bottom:288.000000px;}
.y6b_c00415{bottom:290.160000px;}
.y32_c00415{bottom:328.320000px;}
.y6a_c00415{bottom:330.480000px;}
.y69_c00415{bottom:331.200000px;}
.y31_c00415{bottom:331.920000px;}
.y68_c00415{bottom:332.640000px;}
.y30_c00415{bottom:371.520000px;}
.y66_c00415{bottom:374.400000px;}
.y2f_c00415{bottom:375.120000px;}
.y67_c00415{bottom:375.840000px;}
.y65_c00415{bottom:376.560000px;}
.y2e_c00415{bottom:414.720000px;}
.y63_c00415{bottom:417.600000px;}
.y64_c00415{bottom:418.320000px;}
.y2d_c00415{bottom:419.040000px;}
.y2c_c00415{bottom:457.920000px;}
.y62_c00415{bottom:460.800000px;}
.y61_c00415{bottom:461.520000px;}
.y2b_c00415{bottom:462.240000px;}
.y60_c00415{bottom:463.680000px;}
.y2a_c00415{bottom:501.840000px;}
.y5e_c00415{bottom:503.280000px;}
.y29_c00415{bottom:504.000000px;}
.y5f_c00415{bottom:505.440000px;}
.y5d_c00415{bottom:506.880000px;}
.y28_c00415{bottom:545.040000px;}
.y27_c00415{bottom:546.480000px;}
.y5c_c00415{bottom:547.200000px;}
.y5a_c00415{bottom:547.920000px;}
.y59_c00415{bottom:548.640000px;}
.y5b_c00415{bottom:549.360000px;}
.y26_c00415{bottom:587.520000px;}
.y57_c00415{bottom:589.680000px;}
.y58_c00415{bottom:590.400000px;}
.y25_c00415{bottom:591.120000px;}
.y56_c00415{bottom:591.840000px;}
.y24_c00415{bottom:630.720000px;}
.y55_c00415{bottom:632.880000px;}
.y23_c00415{bottom:634.320000px;}
.y53_c00415{bottom:635.760000px;}
.y54_c00415{bottom:636.480000px;}
.y22_c00415{bottom:673.920000px;}
.y52_c00415{bottom:676.080000px;}
.y21_c00415{bottom:676.800000px;}
.y51_c00415{bottom:677.520000px;}
.y50_c00415{bottom:679.680000px;}
.y20_c00415{bottom:717.120000px;}
.y1f_c00415{bottom:719.280000px;}
.y4f_c00415{bottom:720.000000px;}
.y4e_c00415{bottom:721.440000px;}
.y1d_c00415{bottom:760.320000px;}
.y4d_c00415{bottom:762.480000px;}
.y1c_c00415{bottom:763.200000px;}
.y4c_c00415{bottom:763.920000px;}
.y1e_c00415{bottom:764.640000px;}
.y4b_c00415{bottom:765.360000px;}
.y1a_c00415{bottom:804.240000px;}
.y1b_c00415{bottom:804.960000px;}
.y4a_c00415{bottom:805.680000px;}
.y47_c00415{bottom:806.400000px;}
.y19_c00415{bottom:807.120000px;}
.y48_c00415{bottom:807.840000px;}
.y49_c00415{bottom:808.560000px;}
.y17_c00415{bottom:847.440000px;}
.y18_c00415{bottom:848.160000px;}
.y45_c00415{bottom:849.600000px;}
.y16_c00415{bottom:850.320000px;}
.y46_c00415{bottom:851.760000px;}
.y12_c00415{bottom:891.360000px;}
.y15_c00415{bottom:892.080000px;}
.y13_c00415{bottom:892.800000px;}
.y43_c00415{bottom:893.520000px;}
.y11_c00415{bottom:894.240000px;}
.y14_c00415{bottom:894.960000px;}
.y44_c00415{bottom:895.680000px;}
.yf_c00415{bottom:934.560000px;}
.y41_c00415{bottom:936.000000px;}
.y42_c00415{bottom:936.720000px;}
.ye_c00415{bottom:937.440000px;}
.y10_c00415{bottom:938.880000px;}
.yd_c00415{bottom:978.480000px;}
.yc_c00415{bottom:979.200000px;}
.y8_c00415{bottom:1010.160000px;}
.y9_c00415{bottom:1010.880000px;}
.ya_c00415{bottom:1011.600000px;}
.yb_c00415{bottom:1012.320000px;}
.y7_c00415{bottom:1013.760000px;}
.y2_c00415{bottom:1053.360000px;}
.y3_c00415{bottom:1054.080000px;}
.y1_c00415{bottom:1055.520000px;}
.y4_c00415{bottom:1056.240000px;}
.y5_c00415{bottom:1057.680000px;}
.y6_c00415{bottom:1058.400000px;}
.h10_c00415{height:41.467500px;}
.hc_c00415{height:44.059219px;}
.h7_c00415{height:46.650937px;}
.h5_c00415{height:49.242656px;}
.h6_c00415{height:51.257812px;}
.h8_c00415{height:51.834375px;}
.h9_c00415{height:54.426094px;}
.he_c00415{height:54.714375px;}
.h2_c00415{height:57.017812px;}
.hf_c00415{height:57.882656px;}
.hd_c00415{height:59.609531px;}
.ha_c00415{height:62.201250px;}
.hb_c00415{height:64.792969px;}
.h4_c00415{height:67.384687px;}
.h3_c00415{height:69.976406px;}
.h1_c00415{height:1164.000000px;}
.h0_c00415{height:1164.240000px;}
.w1_c00415{width:771.000000px;}
.w0_c00415{width:771.120000px;}
.x0_c00415{left:0.000000px;}
.x1_c00415{left:56.160000px;}
.x16_c00415{left:57.600000px;}
.xd_c00415{left:130.320000px;}
.x2_c00415{left:131.760000px;}
.x3_c00415{left:218.160000px;}
.xf_c00415{left:251.280000px;}
.x12_c00415{left:262.080000px;}
.x9_c00415{left:271.440000px;}
.xe_c00415{left:273.600000px;}
.x13_c00415{left:282.960000px;}
.xa_c00415{left:316.800000px;}
.x14_c00415{left:337.680000px;}
.x15_c00415{left:380.880000px;}
.xb_c00415{left:402.480000px;}
.x10_c00415{left:445.680000px;}
.xc_c00415{left:457.920000px;}
.x11_c00415{left:488.880000px;}
.x4_c00415{left:544.320000px;}
.x1b_c00415{left:564.480000px;}
.x5_c00415{left:565.920000px;}
.x1c_c00415{left:586.080000px;}
.x18_c00415{left:587.520000px;}
.x1a_c00415{left:598.320000px;}
.x17_c00415{left:620.640000px;}
.x6_c00415{left:653.040000px;}
.x1d_c00415{left:654.480000px;}
.x7_c00415{left:696.240000px;}
.x19_c00415{left:697.680000px;}
.x8_c00415{left:716.400000px;}
@media print{
.v1_c00415{vertical-align:-5.120000pt;}
.v0_c00415{vertical-align:0.000000pt;}
.v2_c00415{vertical-align:2.560000pt;}
.v3_c00415{vertical-align:7.680000pt;}
.ls2_c00415{letter-spacing:0.000000pt;}
.ls1_c00415{letter-spacing:133.217493pt;}
.ls0_c00415{letter-spacing:139.132160pt;}
.ws2_c00415{word-spacing:0.000000pt;}
.ws1_c00415{word-spacing:10.538667pt;}
.ws0_c00415{word-spacing:11.967677pt;}
.fsb_c00415{font-size:40.960000pt;}
.fs9_c00415{font-size:43.520000pt;}
.fs4_c00415{font-size:46.080000pt;}
.fs3_c00415{font-size:48.640000pt;}
.fs5_c00415{font-size:51.200000pt;}
.fs6_c00415{font-size:53.760000pt;}
.fs0_c00415{font-size:56.320000pt;}
.fsa_c00415{font-size:58.880000pt;}
.fs7_c00415{font-size:61.440000pt;}
.fs8_c00415{font-size:64.000000pt;}
.fs2_c00415{font-size:66.560000pt;}
.fs1_c00415{font-size:69.120000pt;}
.y0_c00415{bottom:0.000000pt;}
.y40_c00415{bottom:60.160000pt;}
.y74_c00415{bottom:62.720000pt;}
.y3f_c00415{bottom:63.360000pt;}
.y73_c00415{bottom:64.640000pt;}
.y3e_c00415{bottom:99.200000pt;}
.y72_c00415{bottom:101.120000pt;}
.y3d_c00415{bottom:101.760000pt;}
.y71_c00415{bottom:103.680000pt;}
.y3a_c00415{bottom:137.600000pt;}
.y3c_c00415{bottom:138.880000pt;}
.y39_c00415{bottom:140.160000pt;}
.y3b_c00415{bottom:140.800000pt;}
.y70_c00415{bottom:142.080000pt;}
.y38_c00415{bottom:176.000000pt;}
.y6e_c00415{bottom:178.560000pt;}
.y37_c00415{bottom:179.200000pt;}
.y6f_c00415{bottom:180.480000pt;}
.y36_c00415{bottom:214.400000pt;}
.y35_c00415{bottom:216.960000pt;}
.y6d_c00415{bottom:218.880000pt;}
.y34_c00415{bottom:253.440000pt;}
.y33_c00415{bottom:255.360000pt;}
.y6c_c00415{bottom:256.000000pt;}
.y6b_c00415{bottom:257.920000pt;}
.y32_c00415{bottom:291.840000pt;}
.y6a_c00415{bottom:293.760000pt;}
.y69_c00415{bottom:294.400000pt;}
.y31_c00415{bottom:295.040000pt;}
.y68_c00415{bottom:295.680000pt;}
.y30_c00415{bottom:330.240000pt;}
.y66_c00415{bottom:332.800000pt;}
.y2f_c00415{bottom:333.440000pt;}
.y67_c00415{bottom:334.080000pt;}
.y65_c00415{bottom:334.720000pt;}
.y2e_c00415{bottom:368.640000pt;}
.y63_c00415{bottom:371.200000pt;}
.y64_c00415{bottom:371.840000pt;}
.y2d_c00415{bottom:372.480000pt;}
.y2c_c00415{bottom:407.040000pt;}
.y62_c00415{bottom:409.600000pt;}
.y61_c00415{bottom:410.240000pt;}
.y2b_c00415{bottom:410.880000pt;}
.y60_c00415{bottom:412.160000pt;}
.y2a_c00415{bottom:446.080000pt;}
.y5e_c00415{bottom:447.360000pt;}
.y29_c00415{bottom:448.000000pt;}
.y5f_c00415{bottom:449.280000pt;}
.y5d_c00415{bottom:450.560000pt;}
.y28_c00415{bottom:484.480000pt;}
.y27_c00415{bottom:485.760000pt;}
.y5c_c00415{bottom:486.400000pt;}
.y5a_c00415{bottom:487.040000pt;}
.y59_c00415{bottom:487.680000pt;}
.y5b_c00415{bottom:488.320000pt;}
.y26_c00415{bottom:522.240000pt;}
.y57_c00415{bottom:524.160000pt;}
.y58_c00415{bottom:524.800000pt;}
.y25_c00415{bottom:525.440000pt;}
.y56_c00415{bottom:526.080000pt;}
.y24_c00415{bottom:560.640000pt;}
.y55_c00415{bottom:562.560000pt;}
.y23_c00415{bottom:563.840000pt;}
.y53_c00415{bottom:565.120000pt;}
.y54_c00415{bottom:565.760000pt;}
.y22_c00415{bottom:599.040000pt;}
.y52_c00415{bottom:600.960000pt;}
.y21_c00415{bottom:601.600000pt;}
.y51_c00415{bottom:602.240000pt;}
.y50_c00415{bottom:604.160000pt;}
.y20_c00415{bottom:637.440000pt;}
.y1f_c00415{bottom:639.360000pt;}
.y4f_c00415{bottom:640.000000pt;}
.y4e_c00415{bottom:641.280000pt;}
.y1d_c00415{bottom:675.840000pt;}
.y4d_c00415{bottom:677.760000pt;}
.y1c_c00415{bottom:678.400000pt;}
.y4c_c00415{bottom:679.040000pt;}
.y1e_c00415{bottom:679.680000pt;}
.y4b_c00415{bottom:680.320000pt;}
.y1a_c00415{bottom:714.880000pt;}
.y1b_c00415{bottom:715.520000pt;}
.y4a_c00415{bottom:716.160000pt;}
.y47_c00415{bottom:716.800000pt;}
.y19_c00415{bottom:717.440000pt;}
.y48_c00415{bottom:718.080000pt;}
.y49_c00415{bottom:718.720000pt;}
.y17_c00415{bottom:753.280000pt;}
.y18_c00415{bottom:753.920000pt;}
.y45_c00415{bottom:755.200000pt;}
.y16_c00415{bottom:755.840000pt;}
.y46_c00415{bottom:757.120000pt;}
.y12_c00415{bottom:792.320000pt;}
.y15_c00415{bottom:792.960000pt;}
.y13_c00415{bottom:793.600000pt;}
.y43_c00415{bottom:794.240000pt;}
.y11_c00415{bottom:794.880000pt;}
.y14_c00415{bottom:795.520000pt;}
.y44_c00415{bottom:796.160000pt;}
.yf_c00415{bottom:830.720000pt;}
.y41_c00415{bottom:832.000000pt;}
.y42_c00415{bottom:832.640000pt;}
.ye_c00415{bottom:833.280000pt;}
.y10_c00415{bottom:834.560000pt;}
.yd_c00415{bottom:869.760000pt;}
.yc_c00415{bottom:870.400000pt;}
.y8_c00415{bottom:897.920000pt;}
.y9_c00415{bottom:898.560000pt;}
.ya_c00415{bottom:899.200000pt;}
.yb_c00415{bottom:899.840000pt;}
.y7_c00415{bottom:901.120000pt;}
.y2_c00415{bottom:936.320000pt;}
.y3_c00415{bottom:936.960000pt;}
.y1_c00415{bottom:938.240000pt;}
.y4_c00415{bottom:938.880000pt;}
.y5_c00415{bottom:940.160000pt;}
.y6_c00415{bottom:940.800000pt;}
.h10_c00415{height:36.860000pt;}
.hc_c00415{height:39.163750pt;}
.h7_c00415{height:41.467500pt;}
.h5_c00415{height:43.771250pt;}
.h6_c00415{height:45.562500pt;}
.h8_c00415{height:46.075000pt;}
.h9_c00415{height:48.378750pt;}
.he_c00415{height:48.635000pt;}
.h2_c00415{height:50.682500pt;}
.hf_c00415{height:51.451250pt;}
.hd_c00415{height:52.986250pt;}
.ha_c00415{height:55.290000pt;}
.hb_c00415{height:57.593750pt;}
.h4_c00415{height:59.897500pt;}
.h3_c00415{height:62.201250pt;}
.h1_c00415{height:1034.666667pt;}
.h0_c00415{height:1034.880000pt;}
.w1_c00415{width:685.333333pt;}
.w0_c00415{width:685.440000pt;}
.x0_c00415{left:0.000000pt;}
.x1_c00415{left:49.920000pt;}
.x16_c00415{left:51.200000pt;}
.xd_c00415{left:115.840000pt;}
.x2_c00415{left:117.120000pt;}
.x3_c00415{left:193.920000pt;}
.xf_c00415{left:223.360000pt;}
.x12_c00415{left:232.960000pt;}
.x9_c00415{left:241.280000pt;}
.xe_c00415{left:243.200000pt;}
.x13_c00415{left:251.520000pt;}
.xa_c00415{left:281.600000pt;}
.x14_c00415{left:300.160000pt;}
.x15_c00415{left:338.560000pt;}
.xb_c00415{left:357.760000pt;}
.x10_c00415{left:396.160000pt;}
.xc_c00415{left:407.040000pt;}
.x11_c00415{left:434.560000pt;}
.x4_c00415{left:483.840000pt;}
.x1b_c00415{left:501.760000pt;}
.x5_c00415{left:503.040000pt;}
.x1c_c00415{left:520.960000pt;}
.x18_c00415{left:522.240000pt;}
.x1a_c00415{left:531.840000pt;}
.x17_c00415{left:551.680000pt;}
.x6_c00415{left:580.480000pt;}
.x1d_c00415{left:581.760000pt;}
.x7_c00415{left:618.880000pt;}
.x19_c00415{left:620.160000pt;}
.x8_c00415{left:636.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4cb6038f482104e9d7ee6835.woff2')format("woff");}.ff1_c00416{font-family:ff1_c00416;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m36_c00416{transform:matrix(0.157200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157200,0.000000,0.000000,0.250000,0,0);}
.m2d_c00416{transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00416{transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);}
.m37_c00416{transform:matrix(0.182775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182775,0.000000,0.000000,0.250000,0,0);}
.m31_c00416{transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);}
.m3e_c00416{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m39_c00416{transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);}
.m2b_c00416{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_c00416{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m30_c00416{transform:matrix(0.237725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237725,0.000000,0.000000,0.250000,0,0);}
.m27_c00416{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m22_c00416{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m29_c00416{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m20_c00416{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);}
.m3d_c00416{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m10_c00416{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);}
.m25_c00416{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00416{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_c00416{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);}
.m2c_c00416{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m28_c00416{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);}
.m3c_c00416{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);}
.m3b_c00416{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m3_c00416{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.ma_c00416{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m23_c00416{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m17_c00416{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1_c00416{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m24_c00416{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m19_c00416{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00416{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m8_c00416{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m9_c00416{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m6_c00416{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m21_c00416{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.mc_c00416{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00416{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m15_c00416{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.me_c00416{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00416{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m16_c00416{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00416{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m11_c00416{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mb_c00416{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m32_c00416{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00416{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.mf_c00416{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m7_c00416{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);}
.m33_c00416{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m0_c00416{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.md_c00416{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m2_c00416{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m4_c00416{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);}
.m34_c00416{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m18_c00416{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m35_c00416{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00416{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m14_c00416{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);}
.m1b_c00416{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m12_c00416{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m13_c00416{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);}
.m38_c00416{transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);}
.m26_c00416{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.v1_c00416{vertical-align:-8.640000px;}
.v0_c00416{vertical-align:0.000000px;}
.v2_c00416{vertical-align:2.880000px;}
.v3_c00416{vertical-align:11.520000px;}
.ls1_c00416{letter-spacing:0.000000px;}
.ls0_c00416{letter-spacing:47.972400px;}
.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;}
}
.ws2_c00416{word-spacing:0.000000px;}
.ws1_c00416{word-spacing:6.728400px;}
.ws0_c00416{word-spacing:9.474000px;}
.fc0_c00416{color:transparent;}
.fs7_c00416{font-size:37.440000px;}
.fsb_c00416{font-size:43.200000px;}
.fs6_c00416{font-size:46.080000px;}
.fs8_c00416{font-size:48.960000px;}
.fsa_c00416{font-size:51.840000px;}
.fsd_c00416{font-size:54.720000px;}
.fse_c00416{font-size:57.600000px;}
.fs2_c00416{font-size:60.480000px;}
.fs0_c00416{font-size:63.360000px;}
.fs5_c00416{font-size:66.240000px;}
.fs9_c00416{font-size:69.120000px;}
.fsc_c00416{font-size:72.000000px;}
.fs1_c00416{font-size:74.880000px;}
.fs3_c00416{font-size:77.760000px;}
.fs4_c00416{font-size:80.640000px;}
.y0_c00416{bottom:0.000000px;}
.y35_c00416{bottom:57.600000px;}
.y6f_c00416{bottom:59.760000px;}
.y34_c00416{bottom:60.480000px;}
.y70_c00416{bottom:61.200000px;}
.y6e_c00416{bottom:63.360000px;}
.y33_c00416{bottom:100.800000px;}
.y32_c00416{bottom:103.680000px;}
.y6d_c00416{bottom:104.400000px;}
.y6c_c00416{bottom:105.840000px;}
.y31_c00416{bottom:144.720000px;}
.y6b_c00416{bottom:146.880000px;}
.y6a_c00416{bottom:147.600000px;}
.y30_c00416{bottom:148.320000px;}
.y69_c00416{bottom:149.760000px;}
.y2f_c00416{bottom:187.920000px;}
.y68_c00416{bottom:190.800000px;}
.y2e_c00416{bottom:191.520000px;}
.y67_c00416{bottom:192.240000px;}
.y2d_c00416{bottom:231.120000px;}
.y2c_c00416{bottom:234.000000px;}
.y66_c00416{bottom:234.720000px;}
.y65_c00416{bottom:236.160000px;}
.y29_c00416{bottom:274.320000px;}
.y2a_c00416{bottom:275.760000px;}
.y64_c00416{bottom:276.480000px;}
.y28_c00416{bottom:277.200000px;}
.y2b_c00416{bottom:278.640000px;}
.y63_c00416{bottom:280.080000px;}
.y27_c00416{bottom:317.520000px;}
.y62_c00416{bottom:319.680000px;}
.y26_c00416{bottom:320.400000px;}
.y61_c00416{bottom:322.560000px;}
.y25_c00416{bottom:360.720000px;}
.y24_c00416{bottom:362.160000px;}
.y5f_c00416{bottom:362.880000px;}
.y60_c00416{bottom:363.600000px;}
.y5e_c00416{bottom:365.040000px;}
.y23_c00416{bottom:403.920000px;}
.y22_c00416{bottom:406.080000px;}
.y5d_c00416{bottom:406.800000px;}
.y5c_c00416{bottom:408.960000px;}
.y1f_c00416{bottom:447.120000px;}
.y20_c00416{bottom:448.560000px;}
.y1e_c00416{bottom:449.280000px;}
.y21_c00416{bottom:450.720000px;}
.y5b_c00416{bottom:452.160000px;}
.y1c_c00416{bottom:490.320000px;}
.y1b_c00416{bottom:492.480000px;}
.y5a_c00416{bottom:493.200000px;}
.y1d_c00416{bottom:493.920000px;}
.y59_c00416{bottom:495.360000px;}
.y1a_c00416{bottom:533.520000px;}
.y19_c00416{bottom:536.400000px;}
.y57_c00416{bottom:537.120000px;}
.y58_c00416{bottom:537.840000px;}
.y56_c00416{bottom:538.560000px;}
.y18_c00416{bottom:577.440000px;}
.y55_c00416{bottom:578.880000px;}
.y54_c00416{bottom:579.600000px;}
.y17_c00416{bottom:580.320000px;}
.y53_c00416{bottom:581.760000px;}
.y16_c00416{bottom:620.640000px;}
.y52_c00416{bottom:622.800000px;}
.y15_c00416{bottom:623.520000px;}
.y51_c00416{bottom:625.680000px;}
.y14_c00416{bottom:663.840000px;}
.y50_c00416{bottom:666.000000px;}
.y13_c00416{bottom:666.720000px;}
.y4f_c00416{bottom:668.160000px;}
.y12_c00416{bottom:707.040000px;}
.y11_c00416{bottom:709.200000px;}
.y4d_c00416{bottom:709.920000px;}
.y4e_c00416{bottom:710.640000px;}
.y4c_c00416{bottom:712.080000px;}
.y10_c00416{bottom:750.240000px;}
.yf_c00416{bottom:753.120000px;}
.y4b_c00416{bottom:755.280000px;}
.ye_c00416{bottom:793.440000px;}
.y49_c00416{bottom:795.600000px;}
.yd_c00416{bottom:797.040000px;}
.y48_c00416{bottom:797.760000px;}
.y4a_c00416{bottom:798.480000px;}
.y47_c00416{bottom:799.200000px;}
.yc_c00416{bottom:836.640000px;}
.yb_c00416{bottom:838.800000px;}
.y46_c00416{bottom:839.520000px;}
.y45_c00416{bottom:840.960000px;}
.ya_c00416{bottom:879.840000px;}
.y43_c00416{bottom:882.000000px;}
.y9_c00416{bottom:882.720000px;}
.y42_c00416{bottom:884.160000px;}
.y44_c00416{bottom:884.880000px;}
.y8_c00416{bottom:922.320000px;}
.y7_c00416{bottom:925.200000px;}
.y41_c00416{bottom:926.640000px;}
.y40_c00416{bottom:927.360000px;}
.y3f_c00416{bottom:928.080000px;}
.y6_c00416{bottom:965.520000px;}
.y5_c00416{bottom:968.400000px;}
.y3e_c00416{bottom:969.120000px;}
.y3d_c00416{bottom:970.560000px;}
.y3c_c00416{bottom:971.280000px;}
.y4_c00416{bottom:1008.720000px;}
.y3_c00416{bottom:1011.600000px;}
.y3b_c00416{bottom:1012.320000px;}
.y2_c00416{bottom:1052.640000px;}
.y1_c00416{bottom:1054.080000px;}
.y39_c00416{bottom:1054.800000px;}
.y38_c00416{bottom:1055.520000px;}
.y3a_c00416{bottom:1056.960000px;}
.y37_c00416{bottom:1057.680000px;}
.y36_c00416{bottom:1134.000000px;}
.h9_c00416{height:33.692344px;}
.hd_c00416{height:38.875781px;}
.h8_c00416{height:41.467500px;}
.ha_c00416{height:44.059219px;}
.hc_c00416{height:46.650937px;}
.hf_c00416{height:49.242656px;}
.h10_c00416{height:51.834375px;}
.h4_c00416{height:54.426094px;}
.h11_c00416{height:54.714375px;}
.h2_c00416{height:57.017812px;}
.h12_c00416{height:58.170937px;}
.h7_c00416{height:59.609531px;}
.hb_c00416{height:62.201250px;}
.he_c00416{height:64.792969px;}
.h3_c00416{height:67.384687px;}
.h5_c00416{height:69.976406px;}
.h6_c00416{height:72.568125px;}
.h1_c00416{height:1164.000000px;}
.h0_c00416{height:1164.240000px;}
.w1_c00416{width:769.500000px;}
.w0_c00416{width:769.680000px;}
.x0_c00416{left:0.000000px;}
.x1_c00416{left:53.280000px;}
.x4_c00416{left:54.720000px;}
.xc_c00416{left:56.160000px;}
.x3_c00416{left:127.440000px;}
.x2_c00416{left:128.880000px;}
.x5_c00416{left:280.800000px;}
.x7_c00416{left:313.200000px;}
.x6_c00416{left:335.520000px;}
.x9_c00416{left:367.200000px;}
.x8_c00416{left:368.640000px;}
.xa_c00416{left:411.840000px;}
.xb_c00416{left:455.760000px;}
.x18_c00416{left:531.360000px;}
.xe_c00416{left:542.160000px;}
.xf_c00416{left:562.320000px;}
.x14_c00416{left:563.760000px;}
.x17_c00416{left:583.920000px;}
.x10_c00416{left:617.760000px;}
.x11_c00416{left:650.160000px;}
.x16_c00416{left:651.600000px;}
.xd_c00416{left:662.400000px;}
.x19_c00416{left:684.000000px;}
.x12_c00416{left:693.360000px;}
.x13_c00416{left:694.800000px;}
.x15_c00416{left:714.960000px;}
@media print{
.v1_c00416{vertical-align:-7.680000pt;}
.v0_c00416{vertical-align:0.000000pt;}
.v2_c00416{vertical-align:2.560000pt;}
.v3_c00416{vertical-align:10.240000pt;}
.ls1_c00416{letter-spacing:0.000000pt;}
.ls0_c00416{letter-spacing:42.642133pt;}
.ws2_c00416{word-spacing:0.000000pt;}
.ws1_c00416{word-spacing:5.980800pt;}
.ws0_c00416{word-spacing:8.421333pt;}
.fs7_c00416{font-size:33.280000pt;}
.fsb_c00416{font-size:38.400000pt;}
.fs6_c00416{font-size:40.960000pt;}
.fs8_c00416{font-size:43.520000pt;}
.fsa_c00416{font-size:46.080000pt;}
.fsd_c00416{font-size:48.640000pt;}
.fse_c00416{font-size:51.200000pt;}
.fs2_c00416{font-size:53.760000pt;}
.fs0_c00416{font-size:56.320000pt;}
.fs5_c00416{font-size:58.880000pt;}
.fs9_c00416{font-size:61.440000pt;}
.fsc_c00416{font-size:64.000000pt;}
.fs1_c00416{font-size:66.560000pt;}
.fs3_c00416{font-size:69.120000pt;}
.fs4_c00416{font-size:71.680000pt;}
.y0_c00416{bottom:0.000000pt;}
.y35_c00416{bottom:51.200000pt;}
.y6f_c00416{bottom:53.120000pt;}
.y34_c00416{bottom:53.760000pt;}
.y70_c00416{bottom:54.400000pt;}
.y6e_c00416{bottom:56.320000pt;}
.y33_c00416{bottom:89.600000pt;}
.y32_c00416{bottom:92.160000pt;}
.y6d_c00416{bottom:92.800000pt;}
.y6c_c00416{bottom:94.080000pt;}
.y31_c00416{bottom:128.640000pt;}
.y6b_c00416{bottom:130.560000pt;}
.y6a_c00416{bottom:131.200000pt;}
.y30_c00416{bottom:131.840000pt;}
.y69_c00416{bottom:133.120000pt;}
.y2f_c00416{bottom:167.040000pt;}
.y68_c00416{bottom:169.600000pt;}
.y2e_c00416{bottom:170.240000pt;}
.y67_c00416{bottom:170.880000pt;}
.y2d_c00416{bottom:205.440000pt;}
.y2c_c00416{bottom:208.000000pt;}
.y66_c00416{bottom:208.640000pt;}
.y65_c00416{bottom:209.920000pt;}
.y29_c00416{bottom:243.840000pt;}
.y2a_c00416{bottom:245.120000pt;}
.y64_c00416{bottom:245.760000pt;}
.y28_c00416{bottom:246.400000pt;}
.y2b_c00416{bottom:247.680000pt;}
.y63_c00416{bottom:248.960000pt;}
.y27_c00416{bottom:282.240000pt;}
.y62_c00416{bottom:284.160000pt;}
.y26_c00416{bottom:284.800000pt;}
.y61_c00416{bottom:286.720000pt;}
.y25_c00416{bottom:320.640000pt;}
.y24_c00416{bottom:321.920000pt;}
.y5f_c00416{bottom:322.560000pt;}
.y60_c00416{bottom:323.200000pt;}
.y5e_c00416{bottom:324.480000pt;}
.y23_c00416{bottom:359.040000pt;}
.y22_c00416{bottom:360.960000pt;}
.y5d_c00416{bottom:361.600000pt;}
.y5c_c00416{bottom:363.520000pt;}
.y1f_c00416{bottom:397.440000pt;}
.y20_c00416{bottom:398.720000pt;}
.y1e_c00416{bottom:399.360000pt;}
.y21_c00416{bottom:400.640000pt;}
.y5b_c00416{bottom:401.920000pt;}
.y1c_c00416{bottom:435.840000pt;}
.y1b_c00416{bottom:437.760000pt;}
.y5a_c00416{bottom:438.400000pt;}
.y1d_c00416{bottom:439.040000pt;}
.y59_c00416{bottom:440.320000pt;}
.y1a_c00416{bottom:474.240000pt;}
.y19_c00416{bottom:476.800000pt;}
.y57_c00416{bottom:477.440000pt;}
.y58_c00416{bottom:478.080000pt;}
.y56_c00416{bottom:478.720000pt;}
.y18_c00416{bottom:513.280000pt;}
.y55_c00416{bottom:514.560000pt;}
.y54_c00416{bottom:515.200000pt;}
.y17_c00416{bottom:515.840000pt;}
.y53_c00416{bottom:517.120000pt;}
.y16_c00416{bottom:551.680000pt;}
.y52_c00416{bottom:553.600000pt;}
.y15_c00416{bottom:554.240000pt;}
.y51_c00416{bottom:556.160000pt;}
.y14_c00416{bottom:590.080000pt;}
.y50_c00416{bottom:592.000000pt;}
.y13_c00416{bottom:592.640000pt;}
.y4f_c00416{bottom:593.920000pt;}
.y12_c00416{bottom:628.480000pt;}
.y11_c00416{bottom:630.400000pt;}
.y4d_c00416{bottom:631.040000pt;}
.y4e_c00416{bottom:631.680000pt;}
.y4c_c00416{bottom:632.960000pt;}
.y10_c00416{bottom:666.880000pt;}
.yf_c00416{bottom:669.440000pt;}
.y4b_c00416{bottom:671.360000pt;}
.ye_c00416{bottom:705.280000pt;}
.y49_c00416{bottom:707.200000pt;}
.yd_c00416{bottom:708.480000pt;}
.y48_c00416{bottom:709.120000pt;}
.y4a_c00416{bottom:709.760000pt;}
.y47_c00416{bottom:710.400000pt;}
.yc_c00416{bottom:743.680000pt;}
.yb_c00416{bottom:745.600000pt;}
.y46_c00416{bottom:746.240000pt;}
.y45_c00416{bottom:747.520000pt;}
.ya_c00416{bottom:782.080000pt;}
.y43_c00416{bottom:784.000000pt;}
.y9_c00416{bottom:784.640000pt;}
.y42_c00416{bottom:785.920000pt;}
.y44_c00416{bottom:786.560000pt;}
.y8_c00416{bottom:819.840000pt;}
.y7_c00416{bottom:822.400000pt;}
.y41_c00416{bottom:823.680000pt;}
.y40_c00416{bottom:824.320000pt;}
.y3f_c00416{bottom:824.960000pt;}
.y6_c00416{bottom:858.240000pt;}
.y5_c00416{bottom:860.800000pt;}
.y3e_c00416{bottom:861.440000pt;}
.y3d_c00416{bottom:862.720000pt;}
.y3c_c00416{bottom:863.360000pt;}
.y4_c00416{bottom:896.640000pt;}
.y3_c00416{bottom:899.200000pt;}
.y3b_c00416{bottom:899.840000pt;}
.y2_c00416{bottom:935.680000pt;}
.y1_c00416{bottom:936.960000pt;}
.y39_c00416{bottom:937.600000pt;}
.y38_c00416{bottom:938.240000pt;}
.y3a_c00416{bottom:939.520000pt;}
.y37_c00416{bottom:940.160000pt;}
.y36_c00416{bottom:1008.000000pt;}
.h9_c00416{height:29.948750pt;}
.hd_c00416{height:34.556250pt;}
.h8_c00416{height:36.860000pt;}
.ha_c00416{height:39.163750pt;}
.hc_c00416{height:41.467500pt;}
.hf_c00416{height:43.771250pt;}
.h10_c00416{height:46.075000pt;}
.h4_c00416{height:48.378750pt;}
.h11_c00416{height:48.635000pt;}
.h2_c00416{height:50.682500pt;}
.h12_c00416{height:51.707500pt;}
.h7_c00416{height:52.986250pt;}
.hb_c00416{height:55.290000pt;}
.he_c00416{height:57.593750pt;}
.h3_c00416{height:59.897500pt;}
.h5_c00416{height:62.201250pt;}
.h6_c00416{height:64.505000pt;}
.h1_c00416{height:1034.666667pt;}
.h0_c00416{height:1034.880000pt;}
.w1_c00416{width:684.000000pt;}
.w0_c00416{width:684.160000pt;}
.x0_c00416{left:0.000000pt;}
.x1_c00416{left:47.360000pt;}
.x4_c00416{left:48.640000pt;}
.xc_c00416{left:49.920000pt;}
.x3_c00416{left:113.280000pt;}
.x2_c00416{left:114.560000pt;}
.x5_c00416{left:249.600000pt;}
.x7_c00416{left:278.400000pt;}
.x6_c00416{left:298.240000pt;}
.x9_c00416{left:326.400000pt;}
.x8_c00416{left:327.680000pt;}
.xa_c00416{left:366.080000pt;}
.xb_c00416{left:405.120000pt;}
.x18_c00416{left:472.320000pt;}
.xe_c00416{left:481.920000pt;}
.xf_c00416{left:499.840000pt;}
.x14_c00416{left:501.120000pt;}
.x17_c00416{left:519.040000pt;}
.x10_c00416{left:549.120000pt;}
.x11_c00416{left:577.920000pt;}
.x16_c00416{left:579.200000pt;}
.xd_c00416{left:588.800000pt;}
.x19_c00416{left:608.000000pt;}
.x12_c00416{left:616.320000pt;}
.x13_c00416{left:617.600000pt;}
.x15_c00416{left:635.520000pt;}
}





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

.ir_c00417:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00417{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00417;src:url('chunks/assets/font_2312885aebacb32acfda4b81.woff2')format("woff");}.ff1_c00417{font-family:ff1_c00417;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m37_c00417{transform:matrix(0.151100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151100,0.000000,0.000000,0.250000,0,0);}
.m21_c00417{transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);}
.m2f_c00417{transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);}
.m32_c00417{transform:matrix(0.222700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222700,0.000000,0.000000,0.250000,0,0);}
.ma_c00417{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m7_c00417{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);}
.m19_c00417{transform:matrix(0.235175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235175,0.000000,0.000000,0.250000,0,0);}
.m4_c00417{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.mb_c00417{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m25_c00417{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m14_c00417{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m23_c00417{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m44_c00417{transform:matrix(0.245275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245275,0.000000,0.000000,0.250000,0,0);}
.m1a_c00417{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m3f_c00417{transform:matrix(0.249725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249725,0.000000,0.000000,0.250000,0,0);}
.m3_c00417{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m3d_c00417{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m2_c00417{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00417{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00417{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m39_c00417{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m15_c00417{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00417{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m9_c00417{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m17_c00417{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m42_c00417{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m10_c00417{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.me_c00417{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m22_c00417{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m26_c00417{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00417{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m11_c00417{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m6_c00417{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mc_c00417{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m30_c00417{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00417{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m38_c00417{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m20_c00417{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m5_c00417{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m12_c00417{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m28_c00417{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00417{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00417{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mf_c00417{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00417{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m0_c00417{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m18_c00417{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00417{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);}
.m34_c00417{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);}
.m2c_c00417{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m16_c00417{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1_c00417{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m36_c00417{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);}
.m2e_c00417{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00417{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.md_c00417{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00417{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m40_c00417{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m43_c00417{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m41_c00417{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m27_c00417{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m35_c00417{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00417{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m8_c00417{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m33_c00417{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);}
.m31_c00417{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);}
.m29_c00417{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);}
.m24_c00417{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m45_c00417{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m13_c00417{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.v0_c00417{vertical-align:0.000000px;}
.v2_c00417{vertical-align:2.880000px;}
.v1_c00417{vertical-align:8.640000px;}
.ls0_c00417{letter-spacing:0.000000px;}
.sc__c00417{text-shadow:none;}
.sc0_c00417{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00417{-webkit-text-stroke:0px transparent;}
.sc0_c00417{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00417{word-spacing:0.000000px;}
.ws0_c00417{word-spacing:2.634000px;}
.ws1_c00417{word-spacing:20.653747px;}
.ws2_c00417{word-spacing:38.336640px;}
.fc0_c00417{color:transparent;}
.fs10_c00417{font-size:17.280000px;}
.fsd_c00417{font-size:31.680000px;}
.fsb_c00417{font-size:37.440000px;}
.fs7_c00417{font-size:46.080000px;}
.fs8_c00417{font-size:48.960000px;}
.fs3_c00417{font-size:51.840000px;}
.fs4_c00417{font-size:54.720000px;}
.fs5_c00417{font-size:57.600000px;}
.fs1_c00417{font-size:60.480000px;}
.fsc_c00417{font-size:63.360000px;}
.fse_c00417{font-size:66.240000px;}
.fs9_c00417{font-size:69.120000px;}
.fs0_c00417{font-size:72.000000px;}
.fs6_c00417{font-size:74.880000px;}
.fs2_c00417{font-size:77.760000px;}
.fsa_c00417{font-size:80.640000px;}
.fsf_c00417{font-size:83.520000px;}
.y0_c00417{bottom:0.000000px;}
.y77_c00417{bottom:33.840000px;}
.y78_c00417{bottom:35.280000px;}
.y7d_c00417{bottom:37.440000px;}
.y76_c00417{bottom:38.160000px;}
.y75_c00417{bottom:38.880000px;}
.y7e_c00417{bottom:41.040000px;}
.y74_c00417{bottom:77.760000px;}
.y73_c00417{bottom:79.920000px;}
.y72_c00417{bottom:80.640000px;}
.y79_c00417{bottom:81.360000px;}
.y7a_c00417{bottom:82.800000px;}
.y7c_c00417{bottom:83.520000px;}
.y7b_c00417{bottom:85.680000px;}
.y71_c00417{bottom:120.960000px;}
.y6d_c00417{bottom:154.080000px;}
.y6f_c00417{bottom:155.520000px;}
.y6c_c00417{bottom:156.240000px;}
.y6e_c00417{bottom:157.680000px;}
.y70_c00417{bottom:158.400000px;}
.y6b_c00417{bottom:197.280000px;}
.y6a_c00417{bottom:198.000000px;}
.y69_c00417{bottom:199.440000px;}
.y65_c00417{bottom:229.680000px;}
.y66_c00417{bottom:230.400000px;}
.y67_c00417{bottom:231.840000px;}
.y63_c00417{bottom:232.560000px;}
.y64_c00417{bottom:234.000000px;}
.y68_c00417{bottom:234.720000px;}
.y60_c00417{bottom:272.160000px;}
.y61_c00417{bottom:272.880000px;}
.y62_c00417{bottom:275.760000px;}
.y5e_c00417{bottom:276.480000px;}
.y5f_c00417{bottom:277.200000px;}
.y5a_c00417{bottom:316.080000px;}
.y5c_c00417{bottom:316.800000px;}
.y5b_c00417{bottom:318.240000px;}
.y5d_c00417{bottom:318.960000px;}
.y58_c00417{bottom:319.680000px;}
.y59_c00417{bottom:320.400000px;}
.y54_c00417{bottom:360.000000px;}
.y56_c00417{bottom:360.720000px;}
.y57_c00417{bottom:361.440000px;}
.y52_c00417{bottom:362.160000px;}
.y55_c00417{bottom:363.600000px;}
.y53_c00417{bottom:364.320000px;}
.y4d_c00417{bottom:403.200000px;}
.y50_c00417{bottom:405.360000px;}
.y51_c00417{bottom:406.080000px;}
.y4c_c00417{bottom:406.800000px;}
.y4e_c00417{bottom:407.520000px;}
.y4f_c00417{bottom:408.240000px;}
.y48_c00417{bottom:446.400000px;}
.y4b_c00417{bottom:448.560000px;}
.y4a_c00417{bottom:449.280000px;}
.y47_c00417{bottom:450.720000px;}
.y49_c00417{bottom:451.440000px;}
.y44_c00417{bottom:490.320000px;}
.y43_c00417{bottom:492.480000px;}
.y46_c00417{bottom:493.920000px;}
.y45_c00417{bottom:494.640000px;}
.y3f_c00417{bottom:533.520000px;}
.y42_c00417{bottom:534.960000px;}
.y41_c00417{bottom:535.680000px;}
.y3e_c00417{bottom:536.400000px;}
.y40_c00417{bottom:537.840000px;}
.y3b_c00417{bottom:576.720000px;}
.y3d_c00417{bottom:578.880000px;}
.y3a_c00417{bottom:579.600000px;}
.y3c_c00417{bottom:581.040000px;}
.y35_c00417{bottom:619.920000px;}
.y36_c00417{bottom:621.360000px;}
.y34_c00417{bottom:622.800000px;}
.y37_c00417{bottom:623.520000px;}
.y38_c00417{bottom:624.240000px;}
.y39_c00417{bottom:624.960000px;}
.y31_c00417{bottom:662.400000px;}
.y33_c00417{bottom:664.560000px;}
.y2f_c00417{bottom:665.280000px;}
.y30_c00417{bottom:666.000000px;}
.y32_c00417{bottom:666.720000px;}
.y2b_c00417{bottom:705.600000px;}
.y2e_c00417{bottom:707.760000px;}
.y2d_c00417{bottom:708.480000px;}
.y2a_c00417{bottom:709.200000px;}
.y2c_c00417{bottom:710.640000px;}
.y26_c00417{bottom:748.800000px;}
.y28_c00417{bottom:750.960000px;}
.y29_c00417{bottom:751.680000px;}
.y25_c00417{bottom:752.400000px;}
.y27_c00417{bottom:753.120000px;}
.y21_c00417{bottom:792.720000px;}
.y23_c00417{bottom:794.160000px;}
.y24_c00417{bottom:794.880000px;}
.y20_c00417{bottom:796.320000px;}
.y22_c00417{bottom:797.040000px;}
.y1d_c00417{bottom:829.440000px;}
.y1a_c00417{bottom:835.920000px;}
.y1b_c00417{bottom:836.640000px;}
.y1e_c00417{bottom:838.080000px;}
.y19_c00417{bottom:838.800000px;}
.y1c_c00417{bottom:839.520000px;}
.y1f_c00417{bottom:840.240000px;}
.y16_c00417{bottom:879.120000px;}
.y15_c00417{bottom:880.560000px;}
.y18_c00417{bottom:881.280000px;}
.y17_c00417{bottom:883.440000px;}
.y12_c00417{bottom:922.320000px;}
.y14_c00417{bottom:923.760000px;}
.y11_c00417{bottom:925.200000px;}
.y13_c00417{bottom:926.640000px;}
.yc_c00417{bottom:966.240000px;}
.yf_c00417{bottom:968.400000px;}
.yb_c00417{bottom:969.120000px;}
.ye_c00417{bottom:969.840000px;}
.y10_c00417{bottom:970.560000px;}
.yd_c00417{bottom:971.280000px;}
.y7_c00417{bottom:1009.440000px;}
.ya_c00417{bottom:1010.880000px;}
.y6_c00417{bottom:1011.600000px;}
.y8_c00417{bottom:1013.040000px;}
.y9_c00417{bottom:1013.760000px;}
.y3_c00417{bottom:1052.640000px;}
.y2_c00417{bottom:1054.800000px;}
.y4_c00417{bottom:1056.240000px;}
.y5_c00417{bottom:1056.960000px;}
.y1_c00417{bottom:1128.960000px;}
.h13_c00417{height:15.550313px;}
.hf_c00417{height:28.508906px;}
.hd_c00417{height:33.692344px;}
.h9_c00417{height:41.467500px;}
.ha_c00417{height:44.059219px;}
.h5_c00417{height:46.650937px;}
.h6_c00417{height:49.242656px;}
.h7_c00417{height:51.834375px;}
.h3_c00417{height:54.426094px;}
.h10_c00417{height:55.290937px;}
.he_c00417{height:57.017812px;}
.h11_c00417{height:59.609531px;}
.hb_c00417{height:62.201250px;}
.h2_c00417{height:64.792969px;}
.h8_c00417{height:67.384687px;}
.h4_c00417{height:69.976406px;}
.hc_c00417{height:72.568125px;}
.h12_c00417{height:75.159844px;}
.h1_c00417{height:1164.750000px;}
.h0_c00417{height:1164.960000px;}
.w1_c00417{width:771.750000px;}
.w0_c00417{width:771.840000px;}
.x0_c00417{left:0.000000px;}
.x2_c00417{left:51.840000px;}
.x17_c00417{left:53.280000px;}
.x11_c00417{left:95.760000px;}
.x16_c00417{left:126.000000px;}
.x3_c00417{left:127.440000px;}
.x19_c00417{left:169.920000px;}
.x20_c00417{left:181.440000px;}
.x1e_c00417{left:224.640000px;}
.x1a_c00417{left:267.840000px;}
.xc_c00417{left:278.640000px;}
.x1f_c00417{left:280.080000px;}
.x13_c00417{left:311.040000px;}
.x1b_c00417{left:322.560000px;}
.xd_c00417{left:334.080000px;}
.x23_c00417{left:344.160000px;}
.x14_c00417{left:365.040000px;}
.x1c_c00417{left:375.840000px;}
.x15_c00417{left:409.680000px;}
.xe_c00417{left:419.040000px;}
.xf_c00417{left:462.960000px;}
.x21_c00417{left:484.560000px;}
.x10_c00417{left:494.640000px;}
.x1d_c00417{left:506.880000px;}
.x12_c00417{left:529.200000px;}
.x4_c00417{left:540.000000px;}
.x18_c00417{left:560.160000px;}
.x5_c00417{left:562.320000px;}
.x24_c00417{left:571.680000px;}
.xa_c00417{left:582.480000px;}
.x6_c00417{left:615.600000px;}
.xb_c00417{left:617.040000px;}
.x7_c00417{left:649.440000px;}
.x22_c00417{left:681.840000px;}
.x1_c00417{left:687.600000px;}
.x8_c00417{left:691.920000px;}
.x25_c00417{left:693.360000px;}
.x9_c00417{left:712.800000px;}
@media print{
.v0_c00417{vertical-align:0.000000pt;}
.v2_c00417{vertical-align:2.560000pt;}
.v1_c00417{vertical-align:7.680000pt;}
.ls0_c00417{letter-spacing:0.000000pt;}
.ws3_c00417{word-spacing:0.000000pt;}
.ws0_c00417{word-spacing:2.341333pt;}
.ws1_c00417{word-spacing:18.358886pt;}
.ws2_c00417{word-spacing:34.077013pt;}
.fs10_c00417{font-size:15.360000pt;}
.fsd_c00417{font-size:28.160000pt;}
.fsb_c00417{font-size:33.280000pt;}
.fs7_c00417{font-size:40.960000pt;}
.fs8_c00417{font-size:43.520000pt;}
.fs3_c00417{font-size:46.080000pt;}
.fs4_c00417{font-size:48.640000pt;}
.fs5_c00417{font-size:51.200000pt;}
.fs1_c00417{font-size:53.760000pt;}
.fsc_c00417{font-size:56.320000pt;}
.fse_c00417{font-size:58.880000pt;}
.fs9_c00417{font-size:61.440000pt;}
.fs0_c00417{font-size:64.000000pt;}
.fs6_c00417{font-size:66.560000pt;}
.fs2_c00417{font-size:69.120000pt;}
.fsa_c00417{font-size:71.680000pt;}
.fsf_c00417{font-size:74.240000pt;}
.y0_c00417{bottom:0.000000pt;}
.y77_c00417{bottom:30.080000pt;}
.y78_c00417{bottom:31.360000pt;}
.y7d_c00417{bottom:33.280000pt;}
.y76_c00417{bottom:33.920000pt;}
.y75_c00417{bottom:34.560000pt;}
.y7e_c00417{bottom:36.480000pt;}
.y74_c00417{bottom:69.120000pt;}
.y73_c00417{bottom:71.040000pt;}
.y72_c00417{bottom:71.680000pt;}
.y79_c00417{bottom:72.320000pt;}
.y7a_c00417{bottom:73.600000pt;}
.y7c_c00417{bottom:74.240000pt;}
.y7b_c00417{bottom:76.160000pt;}
.y71_c00417{bottom:107.520000pt;}
.y6d_c00417{bottom:136.960000pt;}
.y6f_c00417{bottom:138.240000pt;}
.y6c_c00417{bottom:138.880000pt;}
.y6e_c00417{bottom:140.160000pt;}
.y70_c00417{bottom:140.800000pt;}
.y6b_c00417{bottom:175.360000pt;}
.y6a_c00417{bottom:176.000000pt;}
.y69_c00417{bottom:177.280000pt;}
.y65_c00417{bottom:204.160000pt;}
.y66_c00417{bottom:204.800000pt;}
.y67_c00417{bottom:206.080000pt;}
.y63_c00417{bottom:206.720000pt;}
.y64_c00417{bottom:208.000000pt;}
.y68_c00417{bottom:208.640000pt;}
.y60_c00417{bottom:241.920000pt;}
.y61_c00417{bottom:242.560000pt;}
.y62_c00417{bottom:245.120000pt;}
.y5e_c00417{bottom:245.760000pt;}
.y5f_c00417{bottom:246.400000pt;}
.y5a_c00417{bottom:280.960000pt;}
.y5c_c00417{bottom:281.600000pt;}
.y5b_c00417{bottom:282.880000pt;}
.y5d_c00417{bottom:283.520000pt;}
.y58_c00417{bottom:284.160000pt;}
.y59_c00417{bottom:284.800000pt;}
.y54_c00417{bottom:320.000000pt;}
.y56_c00417{bottom:320.640000pt;}
.y57_c00417{bottom:321.280000pt;}
.y52_c00417{bottom:321.920000pt;}
.y55_c00417{bottom:323.200000pt;}
.y53_c00417{bottom:323.840000pt;}
.y4d_c00417{bottom:358.400000pt;}
.y50_c00417{bottom:360.320000pt;}
.y51_c00417{bottom:360.960000pt;}
.y4c_c00417{bottom:361.600000pt;}
.y4e_c00417{bottom:362.240000pt;}
.y4f_c00417{bottom:362.880000pt;}
.y48_c00417{bottom:396.800000pt;}
.y4b_c00417{bottom:398.720000pt;}
.y4a_c00417{bottom:399.360000pt;}
.y47_c00417{bottom:400.640000pt;}
.y49_c00417{bottom:401.280000pt;}
.y44_c00417{bottom:435.840000pt;}
.y43_c00417{bottom:437.760000pt;}
.y46_c00417{bottom:439.040000pt;}
.y45_c00417{bottom:439.680000pt;}
.y3f_c00417{bottom:474.240000pt;}
.y42_c00417{bottom:475.520000pt;}
.y41_c00417{bottom:476.160000pt;}
.y3e_c00417{bottom:476.800000pt;}
.y40_c00417{bottom:478.080000pt;}
.y3b_c00417{bottom:512.640000pt;}
.y3d_c00417{bottom:514.560000pt;}
.y3a_c00417{bottom:515.200000pt;}
.y3c_c00417{bottom:516.480000pt;}
.y35_c00417{bottom:551.040000pt;}
.y36_c00417{bottom:552.320000pt;}
.y34_c00417{bottom:553.600000pt;}
.y37_c00417{bottom:554.240000pt;}
.y38_c00417{bottom:554.880000pt;}
.y39_c00417{bottom:555.520000pt;}
.y31_c00417{bottom:588.800000pt;}
.y33_c00417{bottom:590.720000pt;}
.y2f_c00417{bottom:591.360000pt;}
.y30_c00417{bottom:592.000000pt;}
.y32_c00417{bottom:592.640000pt;}
.y2b_c00417{bottom:627.200000pt;}
.y2e_c00417{bottom:629.120000pt;}
.y2d_c00417{bottom:629.760000pt;}
.y2a_c00417{bottom:630.400000pt;}
.y2c_c00417{bottom:631.680000pt;}
.y26_c00417{bottom:665.600000pt;}
.y28_c00417{bottom:667.520000pt;}
.y29_c00417{bottom:668.160000pt;}
.y25_c00417{bottom:668.800000pt;}
.y27_c00417{bottom:669.440000pt;}
.y21_c00417{bottom:704.640000pt;}
.y23_c00417{bottom:705.920000pt;}
.y24_c00417{bottom:706.560000pt;}
.y20_c00417{bottom:707.840000pt;}
.y22_c00417{bottom:708.480000pt;}
.y1d_c00417{bottom:737.280000pt;}
.y1a_c00417{bottom:743.040000pt;}
.y1b_c00417{bottom:743.680000pt;}
.y1e_c00417{bottom:744.960000pt;}
.y19_c00417{bottom:745.600000pt;}
.y1c_c00417{bottom:746.240000pt;}
.y1f_c00417{bottom:746.880000pt;}
.y16_c00417{bottom:781.440000pt;}
.y15_c00417{bottom:782.720000pt;}
.y18_c00417{bottom:783.360000pt;}
.y17_c00417{bottom:785.280000pt;}
.y12_c00417{bottom:819.840000pt;}
.y14_c00417{bottom:821.120000pt;}
.y11_c00417{bottom:822.400000pt;}
.y13_c00417{bottom:823.680000pt;}
.yc_c00417{bottom:858.880000pt;}
.yf_c00417{bottom:860.800000pt;}
.yb_c00417{bottom:861.440000pt;}
.ye_c00417{bottom:862.080000pt;}
.y10_c00417{bottom:862.720000pt;}
.yd_c00417{bottom:863.360000pt;}
.y7_c00417{bottom:897.280000pt;}
.ya_c00417{bottom:898.560000pt;}
.y6_c00417{bottom:899.200000pt;}
.y8_c00417{bottom:900.480000pt;}
.y9_c00417{bottom:901.120000pt;}
.y3_c00417{bottom:935.680000pt;}
.y2_c00417{bottom:937.600000pt;}
.y4_c00417{bottom:938.880000pt;}
.y5_c00417{bottom:939.520000pt;}
.y1_c00417{bottom:1003.520000pt;}
.h13_c00417{height:13.822500pt;}
.hf_c00417{height:25.341250pt;}
.hd_c00417{height:29.948750pt;}
.h9_c00417{height:36.860000pt;}
.ha_c00417{height:39.163750pt;}
.h5_c00417{height:41.467500pt;}
.h6_c00417{height:43.771250pt;}
.h7_c00417{height:46.075000pt;}
.h3_c00417{height:48.378750pt;}
.h10_c00417{height:49.147500pt;}
.he_c00417{height:50.682500pt;}
.h11_c00417{height:52.986250pt;}
.hb_c00417{height:55.290000pt;}
.h2_c00417{height:57.593750pt;}
.h8_c00417{height:59.897500pt;}
.h4_c00417{height:62.201250pt;}
.hc_c00417{height:64.505000pt;}
.h12_c00417{height:66.808750pt;}
.h1_c00417{height:1035.333333pt;}
.h0_c00417{height:1035.520000pt;}
.w1_c00417{width:686.000000pt;}
.w0_c00417{width:686.080000pt;}
.x0_c00417{left:0.000000pt;}
.x2_c00417{left:46.080000pt;}
.x17_c00417{left:47.360000pt;}
.x11_c00417{left:85.120000pt;}
.x16_c00417{left:112.000000pt;}
.x3_c00417{left:113.280000pt;}
.x19_c00417{left:151.040000pt;}
.x20_c00417{left:161.280000pt;}
.x1e_c00417{left:199.680000pt;}
.x1a_c00417{left:238.080000pt;}
.xc_c00417{left:247.680000pt;}
.x1f_c00417{left:248.960000pt;}
.x13_c00417{left:276.480000pt;}
.x1b_c00417{left:286.720000pt;}
.xd_c00417{left:296.960000pt;}
.x23_c00417{left:305.920000pt;}
.x14_c00417{left:324.480000pt;}
.x1c_c00417{left:334.080000pt;}
.x15_c00417{left:364.160000pt;}
.xe_c00417{left:372.480000pt;}
.xf_c00417{left:411.520000pt;}
.x21_c00417{left:430.720000pt;}
.x10_c00417{left:439.680000pt;}
.x1d_c00417{left:450.560000pt;}
.x12_c00417{left:470.400000pt;}
.x4_c00417{left:480.000000pt;}
.x18_c00417{left:497.920000pt;}
.x5_c00417{left:499.840000pt;}
.x24_c00417{left:508.160000pt;}
.xa_c00417{left:517.760000pt;}
.x6_c00417{left:547.200000pt;}
.xb_c00417{left:548.480000pt;}
.x7_c00417{left:577.280000pt;}
.x22_c00417{left:606.080000pt;}
.x1_c00417{left:611.200000pt;}
.x8_c00417{left:615.040000pt;}
.x25_c00417{left:616.320000pt;}
.x9_c00417{left:633.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ed5449e97f3f0b534f574f09.woff2')format("woff");}.ff1_c00418{font-family:ff1_c00418;line-height:1.109863;font-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_c00418{transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);}
.m4e_c00418{transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);}
.m4c_c00418{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m53_c00418{transform:matrix(0.196625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196625,0.000000,0.000000,0.250000,0,0);}
.m52_c00418{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);}
.m39_c00418{transform:matrix(0.235925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235925,0.000000,0.000000,0.250000,0,0);}
.m43_c00418{transform:matrix(0.239100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239100,0.000000,0.000000,0.250000,0,0);}
.m3f_c00418{transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);}
.m3a_c00418{transform:matrix(0.242350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242350,0.000000,0.000000,0.250000,0,0);}
.m3_c00418{transform:matrix(0.244450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244450,0.000000,0.000000,0.250000,0,0);}
.ma_c00418{transform:matrix(0.245625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245625,0.000000,0.000000,0.250000,0,0);}
.m41_c00418{transform:matrix(0.246300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246300,0.000000,0.000000,0.250000,0,0);}
.m5_c00418{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m2b_c00418{transform:matrix(0.248700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248700,0.000000,0.000000,0.250000,0,0);}
.m47_c00418{transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);}
.m42_c00418{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m45_c00418{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m19_c00418{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00418{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mb_c00418{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00418{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.md_c00418{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m40_c00418{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00418{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);}
.m49_c00418{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m14_c00418{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00418{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m15_c00418{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m28_c00418{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m2_c00418{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.me_c00418{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00418{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1_c00418{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m36_c00418{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00418{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00418{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m7_c00418{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m46_c00418{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m10_c00418{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00418{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m8_c00418{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m51_c00418{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00418{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m18_c00418{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m33_c00418{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m50_c00418{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m25_c00418{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m6_c00418{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.mf_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);}
.m1c_c00418{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m4_c00418{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00418{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m32_c00418{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m0_c00418{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00418{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m21_c00418{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);}
.m11_c00418{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);}
.m26_c00418{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m38_c00418{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);}
.m29_c00418{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m31_c00418{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);}
.m22_c00418{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m27_c00418{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m35_c00418{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m48_c00418{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m37_c00418{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.mc_c00418{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);}
.m44_c00418{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m20_c00418{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m30_c00418{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m34_c00418{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);}
.m2c_c00418{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m16_c00418{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00418{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m12_c00418{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m17_c00418{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m13_c00418{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00418{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00418{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00418{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m24_c00418{transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);}
.m23_c00418{transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00418{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00418{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);}
.v1_c00418{vertical-align:-8.640000px;}
.v2_c00418{vertical-align:-2.880000px;}
.v0_c00418{vertical-align:0.000000px;}
.ls0_c00418{letter-spacing:0.000000px;}
.sc__c00418{text-shadow:none;}
.sc0_c00418{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00418{-webkit-text-stroke:0px transparent;}
.sc0_c00418{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00418{word-spacing:-2.892960px;}
.ws3_c00418{word-spacing:0.000000px;}
.ws0_c00418{word-spacing:15.127200px;}
.ws2_c00418{word-spacing:16.837572px;}
.fc0_c00418{color:transparent;}
.fsb_c00418{font-size:20.160000px;}
.fs9_c00418{font-size:23.040000px;}
.fse_c00418{font-size:31.680000px;}
.fsd_c00418{font-size:40.320000px;}
.fsa_c00418{font-size:46.080000px;}
.fs8_c00418{font-size:48.960000px;}
.fs6_c00418{font-size:51.840000px;}
.fs4_c00418{font-size:54.720000px;}
.fs1_c00418{font-size:57.600000px;}
.fs0_c00418{font-size:60.480000px;}
.fs7_c00418{font-size:63.360000px;}
.fs10_c00418{font-size:66.240000px;}
.fs5_c00418{font-size:69.120000px;}
.fsf_c00418{font-size:72.000000px;}
.fs3_c00418{font-size:74.880000px;}
.fs2_c00418{font-size:77.760000px;}
.fsc_c00418{font-size:80.640000px;}
.y0_c00418{bottom:0.000000px;}
.y5a_c00418{bottom:33.120000px;}
.y85_c00418{bottom:36.000000px;}
.y59_c00418{bottom:36.720000px;}
.y84_c00418{bottom:38.160000px;}
.y58_c00418{bottom:76.320000px;}
.y83_c00418{bottom:78.480000px;}
.y82_c00418{bottom:79.200000px;}
.y57_c00418{bottom:79.920000px;}
.y81_c00418{bottom:81.360000px;}
.y54_c00418{bottom:119.520000px;}
.y56_c00418{bottom:121.680000px;}
.y53_c00418{bottom:122.400000px;}
.y55_c00418{bottom:123.840000px;}
.y7e_c00418{bottom:124.560000px;}
.y7f_c00418{bottom:125.280000px;}
.y52_c00418{bottom:162.720000px;}
.y51_c00418{bottom:166.320000px;}
.y7d_c00418{bottom:167.760000px;}
.y80_c00418{bottom:169.200000px;}
.y50_c00418{bottom:206.640000px;}
.y4f_c00418{bottom:208.800000px;}
.y7c_c00418{bottom:209.520000px;}
.y7b_c00418{bottom:210.960000px;}
.y4e_c00418{bottom:249.840000px;}
.y4d_c00418{bottom:252.720000px;}
.y79_c00418{bottom:253.440000px;}
.y7a_c00418{bottom:254.160000px;}
.y78_c00418{bottom:255.600000px;}
.y49_c00418{bottom:292.320000px;}
.y4c_c00418{bottom:294.480000px;}
.y48_c00418{bottom:295.920000px;}
.y4a_c00418{bottom:296.640000px;}
.y4b_c00418{bottom:297.360000px;}
.y77_c00418{bottom:298.080000px;}
.y46_c00418{bottom:336.240000px;}
.y47_c00418{bottom:336.960000px;}
.y76_c00418{bottom:338.400000px;}
.y45_c00418{bottom:339.120000px;}
.y65_c00418{bottom:339.840000px;}
.y64_c00418{bottom:340.560000px;}
.y44_c00418{bottom:378.720000px;}
.y75_c00418{bottom:381.600000px;}
.y43_c00418{bottom:383.040000px;}
.y63_c00418{bottom:384.480000px;}
.y41_c00418{bottom:421.920000px;}
.y42_c00418{bottom:422.640000px;}
.y74_c00418{bottom:424.800000px;}
.y40_c00418{bottom:425.520000px;}
.y61_c00418{bottom:426.960000px;}
.y62_c00418{bottom:428.400000px;}
.y3c_c00418{bottom:465.840000px;}
.y3e_c00418{bottom:467.280000px;}
.y60_c00418{bottom:468.000000px;}
.y3b_c00418{bottom:468.720000px;}
.y3f_c00418{bottom:469.440000px;}
.y3d_c00418{bottom:470.160000px;}
.y3a_c00418{bottom:509.760000px;}
.y5f_c00418{bottom:511.200000px;}
.y39_c00418{bottom:511.920000px;}
.y5e_c00418{bottom:512.640000px;}
.y38_c00418{bottom:552.960000px;}
.y73_c00418{bottom:554.400000px;}
.y37_c00418{bottom:555.120000px;}
.y5d_c00418{bottom:555.840000px;}
.y5c_c00418{bottom:556.560000px;}
.y72_c00418{bottom:557.280000px;}
.y33_c00418{bottom:596.160000px;}
.y35_c00418{bottom:596.880000px;}
.y71_c00418{bottom:598.320000px;}
.y32_c00418{bottom:599.040000px;}
.y36_c00418{bottom:599.760000px;}
.y34_c00418{bottom:600.480000px;}
.y2f_c00418{bottom:639.360000px;}
.y31_c00418{bottom:640.800000px;}
.y2e_c00418{bottom:642.240000px;}
.y30_c00418{bottom:642.960000px;}
.y70_c00418{bottom:644.400000px;}
.y2a_c00418{bottom:683.280000px;}
.y2d_c00418{bottom:684.000000px;}
.y2b_c00418{bottom:684.720000px;}
.y29_c00418{bottom:685.440000px;}
.y2c_c00418{bottom:686.880000px;}
.y6f_c00418{bottom:687.600000px;}
.y25_c00418{bottom:727.200000px;}
.y28_c00418{bottom:727.920000px;}
.y26_c00418{bottom:728.640000px;}
.y24_c00418{bottom:729.360000px;}
.y27_c00418{bottom:730.080000px;}
.y21_c00418{bottom:758.880000px;}
.y23_c00418{bottom:759.600000px;}
.y6d_c00418{bottom:760.320000px;}
.y20_c00418{bottom:761.040000px;}
.y6e_c00418{bottom:762.480000px;}
.y22_c00418{bottom:763.200000px;}
.y1f_c00418{bottom:801.360000px;}
.y1e_c00418{bottom:803.520000px;}
.y1b_c00418{bottom:804.240000px;}
.y1c_c00418{bottom:804.960000px;}
.y1d_c00418{bottom:805.680000px;}
.y6c_c00418{bottom:806.400000px;}
.y17_c00418{bottom:844.560000px;}
.y19_c00418{bottom:846.000000px;}
.y15_c00418{bottom:846.720000px;}
.y5b_c00418{bottom:847.440000px;}
.y6b_c00418{bottom:848.160000px;}
.y18_c00418{bottom:848.880000px;}
.y1a_c00418{bottom:849.600000px;}
.y16_c00418{bottom:851.760000px;}
.y10_c00418{bottom:889.920000px;}
.y12_c00418{bottom:890.640000px;}
.y14_c00418{bottom:892.080000px;}
.y13_c00418{bottom:892.800000px;}
.y11_c00418{bottom:895.680000px;}
.yf_c00418{bottom:922.320000px;}
.yd_c00418{bottom:923.040000px;}
.ye_c00418{bottom:924.480000px;}
.y6a_c00418{bottom:925.200000px;}
.yc_c00418{bottom:963.360000px;}
.y68_c00418{bottom:964.800000px;}
.ya_c00418{bottom:965.520000px;}
.yb_c00418{bottom:967.680000px;}
.y69_c00418{bottom:968.400000px;}
.y7_c00418{bottom:1006.560000px;}
.y8_c00418{bottom:1007.280000px;}
.y6_c00418{bottom:1008.000000px;}
.y66_c00418{bottom:1008.720000px;}
.y67_c00418{bottom:1009.440000px;}
.y9_c00418{bottom:1010.880000px;}
.y2_c00418{bottom:1049.760000px;}
.y4_c00418{bottom:1051.200000px;}
.y5_c00418{bottom:1051.920000px;}
.y1_c00418{bottom:1052.640000px;}
.y3_c00418{bottom:1137.600000px;}
.he_c00418{height:18.142031px;}
.hc_c00418{height:20.733750px;}
.h11_c00418{height:28.508906px;}
.h10_c00418{height:36.284062px;}
.hd_c00418{height:41.467500px;}
.ha_c00418{height:44.059219px;}
.h8_c00418{height:46.650937px;}
.h6_c00418{height:49.242656px;}
.h3_c00418{height:51.834375px;}
.h2_c00418{height:54.426094px;}
.h9_c00418{height:57.017812px;}
.hb_c00418{height:58.744688px;}
.h13_c00418{height:59.609531px;}
.h7_c00418{height:62.201250px;}
.h12_c00418{height:64.792969px;}
.h5_c00418{height:67.384687px;}
.h4_c00418{height:69.976406px;}
.hf_c00418{height:72.568125px;}
.h1_c00418{height:1164.750000px;}
.h0_c00418{height:1164.960000px;}
.w1_c00418{width:771.750000px;}
.w0_c00418{width:771.840000px;}
.x0_c00418{left:0.000000px;}
.x1_c00418{left:62.640000px;}
.x24_c00418{left:64.080000px;}
.x1f_c00418{left:106.560000px;}
.x1c_c00418{left:115.200000px;}
.x2_c00418{left:136.080000px;}
.xe_c00418{left:138.240000px;}
.x18_c00418{left:148.320000px;}
.x19_c00418{left:159.840000px;}
.xf_c00418{left:180.720000px;}
.x3_c00418{left:191.520000px;}
.x1a_c00418{left:202.320000px;}
.x10_c00418{left:235.440000px;}
.x21_c00418{left:246.240000px;}
.x1b_c00418{left:257.040000px;}
.xb_c00418{left:277.920000px;}
.x26_c00418{left:279.360000px;}
.x11_c00418{left:289.440000px;}
.x20_c00418{left:300.240000px;}
.x23_c00418{left:310.320000px;}
.x25_c00418{left:311.760000px;}
.x22_c00418{left:332.640000px;}
.x27_c00418{left:334.080000px;}
.x12_c00418{left:343.440000px;}
.x4_c00418{left:354.240000px;}
.x28_c00418{left:365.760000px;}
.xc_c00418{left:385.920000px;}
.x14_c00418{left:397.440000px;}
.x1d_c00418{left:408.240000px;}
.xd_c00418{left:440.640000px;}
.x15_c00418{left:452.160000px;}
.x1e_c00418{left:462.240000px;}
.x16_c00418{left:505.440000px;}
.x13_c00418{left:539.280000px;}
.x6_c00418{left:550.080000px;}
.x7_c00418{left:570.960000px;}
.x17_c00418{left:572.400000px;}
.x2e_c00418{left:591.840000px;}
.x30_c00418{left:593.280000px;}
.x8_c00418{left:624.240000px;}
.x29_c00418{left:625.680000px;}
.x2d_c00418{left:627.120000px;}
.x9_c00418{left:658.800000px;}
.x2c_c00418{left:660.240000px;}
.x5_c00418{left:686.880000px;}
.x2f_c00418{left:693.360000px;}
.xa_c00418{left:702.000000px;}
.x2b_c00418{left:703.440000px;}
.x2a_c00418{left:722.160000px;}
@media print{
.v1_c00418{vertical-align:-7.680000pt;}
.v2_c00418{vertical-align:-2.560000pt;}
.v0_c00418{vertical-align:0.000000pt;}
.ls0_c00418{letter-spacing:0.000000pt;}
.ws1_c00418{word-spacing:-2.571520pt;}
.ws3_c00418{word-spacing:0.000000pt;}
.ws0_c00418{word-spacing:13.446400pt;}
.ws2_c00418{word-spacing:14.966730pt;}
.fsb_c00418{font-size:17.920000pt;}
.fs9_c00418{font-size:20.480000pt;}
.fse_c00418{font-size:28.160000pt;}
.fsd_c00418{font-size:35.840000pt;}
.fsa_c00418{font-size:40.960000pt;}
.fs8_c00418{font-size:43.520000pt;}
.fs6_c00418{font-size:46.080000pt;}
.fs4_c00418{font-size:48.640000pt;}
.fs1_c00418{font-size:51.200000pt;}
.fs0_c00418{font-size:53.760000pt;}
.fs7_c00418{font-size:56.320000pt;}
.fs10_c00418{font-size:58.880000pt;}
.fs5_c00418{font-size:61.440000pt;}
.fsf_c00418{font-size:64.000000pt;}
.fs3_c00418{font-size:66.560000pt;}
.fs2_c00418{font-size:69.120000pt;}
.fsc_c00418{font-size:71.680000pt;}
.y0_c00418{bottom:0.000000pt;}
.y5a_c00418{bottom:29.440000pt;}
.y85_c00418{bottom:32.000000pt;}
.y59_c00418{bottom:32.640000pt;}
.y84_c00418{bottom:33.920000pt;}
.y58_c00418{bottom:67.840000pt;}
.y83_c00418{bottom:69.760000pt;}
.y82_c00418{bottom:70.400000pt;}
.y57_c00418{bottom:71.040000pt;}
.y81_c00418{bottom:72.320000pt;}
.y54_c00418{bottom:106.240000pt;}
.y56_c00418{bottom:108.160000pt;}
.y53_c00418{bottom:108.800000pt;}
.y55_c00418{bottom:110.080000pt;}
.y7e_c00418{bottom:110.720000pt;}
.y7f_c00418{bottom:111.360000pt;}
.y52_c00418{bottom:144.640000pt;}
.y51_c00418{bottom:147.840000pt;}
.y7d_c00418{bottom:149.120000pt;}
.y80_c00418{bottom:150.400000pt;}
.y50_c00418{bottom:183.680000pt;}
.y4f_c00418{bottom:185.600000pt;}
.y7c_c00418{bottom:186.240000pt;}
.y7b_c00418{bottom:187.520000pt;}
.y4e_c00418{bottom:222.080000pt;}
.y4d_c00418{bottom:224.640000pt;}
.y79_c00418{bottom:225.280000pt;}
.y7a_c00418{bottom:225.920000pt;}
.y78_c00418{bottom:227.200000pt;}
.y49_c00418{bottom:259.840000pt;}
.y4c_c00418{bottom:261.760000pt;}
.y48_c00418{bottom:263.040000pt;}
.y4a_c00418{bottom:263.680000pt;}
.y4b_c00418{bottom:264.320000pt;}
.y77_c00418{bottom:264.960000pt;}
.y46_c00418{bottom:298.880000pt;}
.y47_c00418{bottom:299.520000pt;}
.y76_c00418{bottom:300.800000pt;}
.y45_c00418{bottom:301.440000pt;}
.y65_c00418{bottom:302.080000pt;}
.y64_c00418{bottom:302.720000pt;}
.y44_c00418{bottom:336.640000pt;}
.y75_c00418{bottom:339.200000pt;}
.y43_c00418{bottom:340.480000pt;}
.y63_c00418{bottom:341.760000pt;}
.y41_c00418{bottom:375.040000pt;}
.y42_c00418{bottom:375.680000pt;}
.y74_c00418{bottom:377.600000pt;}
.y40_c00418{bottom:378.240000pt;}
.y61_c00418{bottom:379.520000pt;}
.y62_c00418{bottom:380.800000pt;}
.y3c_c00418{bottom:414.080000pt;}
.y3e_c00418{bottom:415.360000pt;}
.y60_c00418{bottom:416.000000pt;}
.y3b_c00418{bottom:416.640000pt;}
.y3f_c00418{bottom:417.280000pt;}
.y3d_c00418{bottom:417.920000pt;}
.y3a_c00418{bottom:453.120000pt;}
.y5f_c00418{bottom:454.400000pt;}
.y39_c00418{bottom:455.040000pt;}
.y5e_c00418{bottom:455.680000pt;}
.y38_c00418{bottom:491.520000pt;}
.y73_c00418{bottom:492.800000pt;}
.y37_c00418{bottom:493.440000pt;}
.y5d_c00418{bottom:494.080000pt;}
.y5c_c00418{bottom:494.720000pt;}
.y72_c00418{bottom:495.360000pt;}
.y33_c00418{bottom:529.920000pt;}
.y35_c00418{bottom:530.560000pt;}
.y71_c00418{bottom:531.840000pt;}
.y32_c00418{bottom:532.480000pt;}
.y36_c00418{bottom:533.120000pt;}
.y34_c00418{bottom:533.760000pt;}
.y2f_c00418{bottom:568.320000pt;}
.y31_c00418{bottom:569.600000pt;}
.y2e_c00418{bottom:570.880000pt;}
.y30_c00418{bottom:571.520000pt;}
.y70_c00418{bottom:572.800000pt;}
.y2a_c00418{bottom:607.360000pt;}
.y2d_c00418{bottom:608.000000pt;}
.y2b_c00418{bottom:608.640000pt;}
.y29_c00418{bottom:609.280000pt;}
.y2c_c00418{bottom:610.560000pt;}
.y6f_c00418{bottom:611.200000pt;}
.y25_c00418{bottom:646.400000pt;}
.y28_c00418{bottom:647.040000pt;}
.y26_c00418{bottom:647.680000pt;}
.y24_c00418{bottom:648.320000pt;}
.y27_c00418{bottom:648.960000pt;}
.y21_c00418{bottom:674.560000pt;}
.y23_c00418{bottom:675.200000pt;}
.y6d_c00418{bottom:675.840000pt;}
.y20_c00418{bottom:676.480000pt;}
.y6e_c00418{bottom:677.760000pt;}
.y22_c00418{bottom:678.400000pt;}
.y1f_c00418{bottom:712.320000pt;}
.y1e_c00418{bottom:714.240000pt;}
.y1b_c00418{bottom:714.880000pt;}
.y1c_c00418{bottom:715.520000pt;}
.y1d_c00418{bottom:716.160000pt;}
.y6c_c00418{bottom:716.800000pt;}
.y17_c00418{bottom:750.720000pt;}
.y19_c00418{bottom:752.000000pt;}
.y15_c00418{bottom:752.640000pt;}
.y5b_c00418{bottom:753.280000pt;}
.y6b_c00418{bottom:753.920000pt;}
.y18_c00418{bottom:754.560000pt;}
.y1a_c00418{bottom:755.200000pt;}
.y16_c00418{bottom:757.120000pt;}
.y10_c00418{bottom:791.040000pt;}
.y12_c00418{bottom:791.680000pt;}
.y14_c00418{bottom:792.960000pt;}
.y13_c00418{bottom:793.600000pt;}
.y11_c00418{bottom:796.160000pt;}
.yf_c00418{bottom:819.840000pt;}
.yd_c00418{bottom:820.480000pt;}
.ye_c00418{bottom:821.760000pt;}
.y6a_c00418{bottom:822.400000pt;}
.yc_c00418{bottom:856.320000pt;}
.y68_c00418{bottom:857.600000pt;}
.ya_c00418{bottom:858.240000pt;}
.yb_c00418{bottom:860.160000pt;}
.y69_c00418{bottom:860.800000pt;}
.y7_c00418{bottom:894.720000pt;}
.y8_c00418{bottom:895.360000pt;}
.y6_c00418{bottom:896.000000pt;}
.y66_c00418{bottom:896.640000pt;}
.y67_c00418{bottom:897.280000pt;}
.y9_c00418{bottom:898.560000pt;}
.y2_c00418{bottom:933.120000pt;}
.y4_c00418{bottom:934.400000pt;}
.y5_c00418{bottom:935.040000pt;}
.y1_c00418{bottom:935.680000pt;}
.y3_c00418{bottom:1011.200000pt;}
.he_c00418{height:16.126250pt;}
.hc_c00418{height:18.430000pt;}
.h11_c00418{height:25.341250pt;}
.h10_c00418{height:32.252500pt;}
.hd_c00418{height:36.860000pt;}
.ha_c00418{height:39.163750pt;}
.h8_c00418{height:41.467500pt;}
.h6_c00418{height:43.771250pt;}
.h3_c00418{height:46.075000pt;}
.h2_c00418{height:48.378750pt;}
.h9_c00418{height:50.682500pt;}
.hb_c00418{height:52.217500pt;}
.h13_c00418{height:52.986250pt;}
.h7_c00418{height:55.290000pt;}
.h12_c00418{height:57.593750pt;}
.h5_c00418{height:59.897500pt;}
.h4_c00418{height:62.201250pt;}
.hf_c00418{height:64.505000pt;}
.h1_c00418{height:1035.333333pt;}
.h0_c00418{height:1035.520000pt;}
.w1_c00418{width:686.000000pt;}
.w0_c00418{width:686.080000pt;}
.x0_c00418{left:0.000000pt;}
.x1_c00418{left:55.680000pt;}
.x24_c00418{left:56.960000pt;}
.x1f_c00418{left:94.720000pt;}
.x1c_c00418{left:102.400000pt;}
.x2_c00418{left:120.960000pt;}
.xe_c00418{left:122.880000pt;}
.x18_c00418{left:131.840000pt;}
.x19_c00418{left:142.080000pt;}
.xf_c00418{left:160.640000pt;}
.x3_c00418{left:170.240000pt;}
.x1a_c00418{left:179.840000pt;}
.x10_c00418{left:209.280000pt;}
.x21_c00418{left:218.880000pt;}
.x1b_c00418{left:228.480000pt;}
.xb_c00418{left:247.040000pt;}
.x26_c00418{left:248.320000pt;}
.x11_c00418{left:257.280000pt;}
.x20_c00418{left:266.880000pt;}
.x23_c00418{left:275.840000pt;}
.x25_c00418{left:277.120000pt;}
.x22_c00418{left:295.680000pt;}
.x27_c00418{left:296.960000pt;}
.x12_c00418{left:305.280000pt;}
.x4_c00418{left:314.880000pt;}
.x28_c00418{left:325.120000pt;}
.xc_c00418{left:343.040000pt;}
.x14_c00418{left:353.280000pt;}
.x1d_c00418{left:362.880000pt;}
.xd_c00418{left:391.680000pt;}
.x15_c00418{left:401.920000pt;}
.x1e_c00418{left:410.880000pt;}
.x16_c00418{left:449.280000pt;}
.x13_c00418{left:479.360000pt;}
.x6_c00418{left:488.960000pt;}
.x7_c00418{left:507.520000pt;}
.x17_c00418{left:508.800000pt;}
.x2e_c00418{left:526.080000pt;}
.x30_c00418{left:527.360000pt;}
.x8_c00418{left:554.880000pt;}
.x29_c00418{left:556.160000pt;}
.x2d_c00418{left:557.440000pt;}
.x9_c00418{left:585.600000pt;}
.x2c_c00418{left:586.880000pt;}
.x5_c00418{left:610.560000pt;}
.x2f_c00418{left:616.320000pt;}
.xa_c00418{left:624.000000pt;}
.x2b_c00418{left:625.280000pt;}
.x2a_c00418{left:641.920000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c68f16ca58ab23e6d0c2b0d4.woff2')format("woff");}.ff1_c00419{font-family:ff1_c00419;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m42_c00419{transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);}
.m43_c00419{transform:matrix(0.232225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232225,0.000000,0.000000,0.250000,0,0);}
.m10_c00419{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m2_c00419{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);}
.m2e_c00419{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m32_c00419{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_c00419{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_c00419{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00419{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m17_c00419{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m26_c00419{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m6_c00419{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m22_c00419{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m21_c00419{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m48_c00419{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m4_c00419{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m9_c00419{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00419{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m3_c00419{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m5_c00419{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00419{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m16_c00419{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m41_c00419{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m14_c00419{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m46_c00419{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00419{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m24_c00419{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m33_c00419{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m19_c00419{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m8_c00419{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.me_c00419{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);}
.m3e_c00419{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_c00419{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00419{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.mc_c00419{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00419{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);}
.m0_c00419{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00419{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);}
.m12_c00419{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1_c00419{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m47_c00419{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m39_c00419{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);}
.m1e_c00419{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m34_c00419{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_c00419{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m23_c00419{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);}
.m3d_c00419{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00419{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);}
.m49_c00419{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);}
.m36_c00419{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m28_c00419{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m13_c00419{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m15_c00419{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m27_c00419{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.md_c00419{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00419{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.mb_c00419{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m25_c00419{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.ma_c00419{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);}
.m3f_c00419{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m38_c00419{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m35_c00419{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00419{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00419{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m20_c00419{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);}
.m29_c00419{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m31_c00419{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);}
.mf_c00419{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m37_c00419{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);}
.m30_c00419{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m44_c00419{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m40_c00419{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00419{transform:matrix(0.892500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.892500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.892500,0.000000,0.000000,0.250000,0,0);}
.m45_c00419{transform:matrix(1.082500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.082500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.082500,0.000000,0.000000,0.250000,0,0);}
.v0_c00419{vertical-align:0.000000px;}
.v1_c00419{vertical-align:2.880000px;}
.v2_c00419{vertical-align:5.760000px;}
.ls0_c00419{letter-spacing:0.000000px;}
.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;}
}
.ws4_c00419{word-spacing:0.000000px;}
.ws1_c00419{word-spacing:9.210378px;}
.ws3_c00419{word-spacing:9.212400px;}
.ws0_c00419{word-spacing:11.856000px;}
.ws2_c00419{word-spacing:13.136947px;}
.fc0_c00419{color:transparent;}
.fs12_c00419{font-size:17.280000px;}
.fs11_c00419{font-size:20.160000px;}
.fse_c00419{font-size:28.800000px;}
.fs9_c00419{font-size:31.680000px;}
.fsf_c00419{font-size:34.560000px;}
.fsa_c00419{font-size:37.440000px;}
.fs10_c00419{font-size:40.320000px;}
.fsd_c00419{font-size:43.200000px;}
.fs6_c00419{font-size:48.960000px;}
.fs3_c00419{font-size:51.840000px;}
.fs2_c00419{font-size:54.720000px;}
.fs4_c00419{font-size:57.600000px;}
.fs1_c00419{font-size:60.480000px;}
.fs5_c00419{font-size:63.360000px;}
.fs8_c00419{font-size:66.240000px;}
.fsb_c00419{font-size:69.120000px;}
.fsc_c00419{font-size:72.000000px;}
.fs0_c00419{font-size:74.880000px;}
.fs7_c00419{font-size:77.760000px;}
.y0_c00419{bottom:0.000000px;}
.y70_c00419{bottom:64.800000px;}
.y6f_c00419{bottom:65.520000px;}
.y73_c00419{bottom:66.240000px;}
.y72_c00419{bottom:66.960000px;}
.y6e_c00419{bottom:67.680000px;}
.y71_c00419{bottom:68.400000px;}
.y6b_c00419{bottom:108.000000px;}
.y6a_c00419{bottom:109.440000px;}
.y6c_c00419{bottom:110.160000px;}
.y69_c00419{bottom:110.880000px;}
.y6d_c00419{bottom:111.600000px;}
.y66_c00419{bottom:151.920000px;}
.y68_c00419{bottom:152.640000px;}
.y65_c00419{bottom:153.360000px;}
.y63_c00419{bottom:154.800000px;}
.y67_c00419{bottom:156.240000px;}
.y64_c00419{bottom:157.680000px;}
.y60_c00419{bottom:195.120000px;}
.y5e_c00419{bottom:195.840000px;}
.y5d_c00419{bottom:196.560000px;}
.y62_c00419{bottom:197.280000px;}
.y5f_c00419{bottom:198.000000px;}
.y61_c00419{bottom:198.720000px;}
.y59_c00419{bottom:238.320000px;}
.y5b_c00419{bottom:239.040000px;}
.y5c_c00419{bottom:239.760000px;}
.y58_c00419{bottom:240.480000px;}
.y5a_c00419{bottom:241.200000px;}
.y55_c00419{bottom:281.520000px;}
.y53_c00419{bottom:282.240000px;}
.y57_c00419{bottom:282.960000px;}
.y56_c00419{bottom:283.680000px;}
.y54_c00419{bottom:284.400000px;}
.y51_c00419{bottom:325.440000px;}
.y50_c00419{bottom:326.160000px;}
.y4e_c00419{bottom:326.880000px;}
.y4f_c00419{bottom:328.320000px;}
.y52_c00419{bottom:329.040000px;}
.y4d_c00419{bottom:368.640000px;}
.y4c_c00419{bottom:369.360000px;}
.y4a_c00419{bottom:370.080000px;}
.y4b_c00419{bottom:371.520000px;}
.y48_c00419{bottom:411.120000px;}
.y47_c00419{bottom:412.560000px;}
.y45_c00419{bottom:413.280000px;}
.y49_c00419{bottom:414.720000px;}
.y46_c00419{bottom:415.440000px;}
.y42_c00419{bottom:456.480000px;}
.y41_c00419{bottom:457.200000px;}
.y44_c00419{bottom:457.920000px;}
.y43_c00419{bottom:458.640000px;}
.y3e_c00419{bottom:498.960000px;}
.y3f_c00419{bottom:499.680000px;}
.y3c_c00419{bottom:501.120000px;}
.y3d_c00419{bottom:501.840000px;}
.y40_c00419{bottom:502.560000px;}
.y39_c00419{bottom:542.160000px;}
.y3a_c00419{bottom:542.880000px;}
.y37_c00419{bottom:544.320000px;}
.y38_c00419{bottom:545.760000px;}
.y3b_c00419{bottom:546.480000px;}
.y34_c00419{bottom:585.360000px;}
.y33_c00419{bottom:586.080000px;}
.y35_c00419{bottom:586.800000px;}
.y31_c00419{bottom:587.520000px;}
.y32_c00419{bottom:588.240000px;}
.y36_c00419{bottom:588.960000px;}
.y2f_c00419{bottom:627.840000px;}
.y2e_c00419{bottom:629.280000px;}
.y30_c00419{bottom:630.000000px;}
.y2c_c00419{bottom:630.720000px;}
.y2d_c00419{bottom:631.440000px;}
.y29_c00419{bottom:671.760000px;}
.y28_c00419{bottom:672.480000px;}
.y2b_c00419{bottom:673.200000px;}
.y26_c00419{bottom:673.920000px;}
.y2a_c00419{bottom:674.640000px;}
.y27_c00419{bottom:675.360000px;}
.y24_c00419{bottom:714.960000px;}
.y25_c00419{bottom:715.680000px;}
.y22_c00419{bottom:716.400000px;}
.y23_c00419{bottom:717.840000px;}
.y20_c00419{bottom:758.160000px;}
.y21_c00419{bottom:758.880000px;}
.y1e_c00419{bottom:760.320000px;}
.y1f_c00419{bottom:761.040000px;}
.y1c_c00419{bottom:800.640000px;}
.y1d_c00419{bottom:801.360000px;}
.y1a_c00419{bottom:802.080000px;}
.y1b_c00419{bottom:804.240000px;}
.y19_c00419{bottom:844.560000px;}
.y17_c00419{bottom:845.280000px;}
.y18_c00419{bottom:847.440000px;}
.y16_c00419{bottom:887.760000px;}
.y15_c00419{bottom:888.480000px;}
.y13_c00419{bottom:889.200000px;}
.y14_c00419{bottom:890.640000px;}
.y10_c00419{bottom:930.960000px;}
.y11_c00419{bottom:931.680000px;}
.ye_c00419{bottom:933.120000px;}
.y12_c00419{bottom:933.840000px;}
.yf_c00419{bottom:934.560000px;}
.yc_c00419{bottom:972.720000px;}
.yd_c00419{bottom:973.440000px;}
.yb_c00419{bottom:977.040000px;}
.ya_c00419{bottom:1006.560000px;}
.y8_c00419{bottom:1007.280000px;}
.y9_c00419{bottom:1008.000000px;}
.y6_c00419{bottom:1008.720000px;}
.y7_c00419{bottom:1009.440000px;}
.y3_c00419{bottom:1049.760000px;}
.y5_c00419{bottom:1050.480000px;}
.y4_c00419{bottom:1051.200000px;}
.y2_c00419{bottom:1052.640000px;}
.y1_c00419{bottom:1131.120000px;}
.h16_c00419{height:15.550313px;}
.h15_c00419{height:18.142031px;}
.h11_c00419{height:25.917187px;}
.hc_c00419{height:28.508906px;}
.h13_c00419{height:31.100625px;}
.hd_c00419{height:33.692344px;}
.h14_c00419{height:36.284062px;}
.h10_c00419{height:38.875781px;}
.h8_c00419{height:44.059219px;}
.h5_c00419{height:46.650937px;}
.h4_c00419{height:49.242656px;}
.h6_c00419{height:51.834375px;}
.h3_c00419{height:54.426094px;}
.ha_c00419{height:54.714375px;}
.h7_c00419{height:57.017812px;}
.hb_c00419{height:59.609531px;}
.h12_c00419{height:60.186094px;}
.he_c00419{height:62.201250px;}
.hf_c00419{height:64.792969px;}
.h2_c00419{height:67.384687px;}
.h9_c00419{height:69.976406px;}
.h0_c00419{height:1160.640000px;}
.h1_c00419{height:1161.000000px;}
.w1_c00419{width:765.000000px;}
.w0_c00419{width:765.360000px;}
.x0_c00419{left:0.000000px;}
.x2_c00419{left:49.680000px;}
.x1b_c00419{left:51.120000px;}
.x1c_c00419{left:92.160000px;}
.x17_c00419{left:93.600000px;}
.x1d_c00419{left:102.240000px;}
.x3_c00419{left:125.280000px;}
.x16_c00419{left:167.040000px;}
.x9_c00419{left:168.480000px;}
.x10_c00419{left:179.280000px;}
.x19_c00419{left:221.040000px;}
.xa_c00419{left:222.480000px;}
.xb_c00419{left:276.480000px;}
.x15_c00419{left:287.280000px;}
.xc_c00419{left:331.200000px;}
.x18_c00419{left:342.000000px;}
.x11_c00419{left:362.880000px;}
.xd_c00419{left:416.880000px;}
.xe_c00419{left:470.880000px;}
.x13_c00419{left:524.880000px;}
.x1a_c00419{left:526.320000px;}
.xf_c00419{left:531.360000px;}
.x4_c00419{left:535.680000px;}
.x5_c00419{left:557.280000px;}
.x14_c00419{left:611.280000px;}
.x6_c00419{left:613.440000px;}
.x7_c00419{left:645.840000px;}
.x1_c00419{left:673.920000px;}
.x12_c00419{left:678.240000px;}
.x8_c00419{left:689.040000px;}
@media print{
.v0_c00419{vertical-align:0.000000pt;}
.v1_c00419{vertical-align:2.560000pt;}
.v2_c00419{vertical-align:5.120000pt;}
.ls0_c00419{letter-spacing:0.000000pt;}
.ws4_c00419{word-spacing:0.000000pt;}
.ws1_c00419{word-spacing:8.187003pt;}
.ws3_c00419{word-spacing:8.188800pt;}
.ws0_c00419{word-spacing:10.538667pt;}
.ws2_c00419{word-spacing:11.677286pt;}
.fs12_c00419{font-size:15.360000pt;}
.fs11_c00419{font-size:17.920000pt;}
.fse_c00419{font-size:25.600000pt;}
.fs9_c00419{font-size:28.160000pt;}
.fsf_c00419{font-size:30.720000pt;}
.fsa_c00419{font-size:33.280000pt;}
.fs10_c00419{font-size:35.840000pt;}
.fsd_c00419{font-size:38.400000pt;}
.fs6_c00419{font-size:43.520000pt;}
.fs3_c00419{font-size:46.080000pt;}
.fs2_c00419{font-size:48.640000pt;}
.fs4_c00419{font-size:51.200000pt;}
.fs1_c00419{font-size:53.760000pt;}
.fs5_c00419{font-size:56.320000pt;}
.fs8_c00419{font-size:58.880000pt;}
.fsb_c00419{font-size:61.440000pt;}
.fsc_c00419{font-size:64.000000pt;}
.fs0_c00419{font-size:66.560000pt;}
.fs7_c00419{font-size:69.120000pt;}
.y0_c00419{bottom:0.000000pt;}
.y70_c00419{bottom:57.600000pt;}
.y6f_c00419{bottom:58.240000pt;}
.y73_c00419{bottom:58.880000pt;}
.y72_c00419{bottom:59.520000pt;}
.y6e_c00419{bottom:60.160000pt;}
.y71_c00419{bottom:60.800000pt;}
.y6b_c00419{bottom:96.000000pt;}
.y6a_c00419{bottom:97.280000pt;}
.y6c_c00419{bottom:97.920000pt;}
.y69_c00419{bottom:98.560000pt;}
.y6d_c00419{bottom:99.200000pt;}
.y66_c00419{bottom:135.040000pt;}
.y68_c00419{bottom:135.680000pt;}
.y65_c00419{bottom:136.320000pt;}
.y63_c00419{bottom:137.600000pt;}
.y67_c00419{bottom:138.880000pt;}
.y64_c00419{bottom:140.160000pt;}
.y60_c00419{bottom:173.440000pt;}
.y5e_c00419{bottom:174.080000pt;}
.y5d_c00419{bottom:174.720000pt;}
.y62_c00419{bottom:175.360000pt;}
.y5f_c00419{bottom:176.000000pt;}
.y61_c00419{bottom:176.640000pt;}
.y59_c00419{bottom:211.840000pt;}
.y5b_c00419{bottom:212.480000pt;}
.y5c_c00419{bottom:213.120000pt;}
.y58_c00419{bottom:213.760000pt;}
.y5a_c00419{bottom:214.400000pt;}
.y55_c00419{bottom:250.240000pt;}
.y53_c00419{bottom:250.880000pt;}
.y57_c00419{bottom:251.520000pt;}
.y56_c00419{bottom:252.160000pt;}
.y54_c00419{bottom:252.800000pt;}
.y51_c00419{bottom:289.280000pt;}
.y50_c00419{bottom:289.920000pt;}
.y4e_c00419{bottom:290.560000pt;}
.y4f_c00419{bottom:291.840000pt;}
.y52_c00419{bottom:292.480000pt;}
.y4d_c00419{bottom:327.680000pt;}
.y4c_c00419{bottom:328.320000pt;}
.y4a_c00419{bottom:328.960000pt;}
.y4b_c00419{bottom:330.240000pt;}
.y48_c00419{bottom:365.440000pt;}
.y47_c00419{bottom:366.720000pt;}
.y45_c00419{bottom:367.360000pt;}
.y49_c00419{bottom:368.640000pt;}
.y46_c00419{bottom:369.280000pt;}
.y42_c00419{bottom:405.760000pt;}
.y41_c00419{bottom:406.400000pt;}
.y44_c00419{bottom:407.040000pt;}
.y43_c00419{bottom:407.680000pt;}
.y3e_c00419{bottom:443.520000pt;}
.y3f_c00419{bottom:444.160000pt;}
.y3c_c00419{bottom:445.440000pt;}
.y3d_c00419{bottom:446.080000pt;}
.y40_c00419{bottom:446.720000pt;}
.y39_c00419{bottom:481.920000pt;}
.y3a_c00419{bottom:482.560000pt;}
.y37_c00419{bottom:483.840000pt;}
.y38_c00419{bottom:485.120000pt;}
.y3b_c00419{bottom:485.760000pt;}
.y34_c00419{bottom:520.320000pt;}
.y33_c00419{bottom:520.960000pt;}
.y35_c00419{bottom:521.600000pt;}
.y31_c00419{bottom:522.240000pt;}
.y32_c00419{bottom:522.880000pt;}
.y36_c00419{bottom:523.520000pt;}
.y2f_c00419{bottom:558.080000pt;}
.y2e_c00419{bottom:559.360000pt;}
.y30_c00419{bottom:560.000000pt;}
.y2c_c00419{bottom:560.640000pt;}
.y2d_c00419{bottom:561.280000pt;}
.y29_c00419{bottom:597.120000pt;}
.y28_c00419{bottom:597.760000pt;}
.y2b_c00419{bottom:598.400000pt;}
.y26_c00419{bottom:599.040000pt;}
.y2a_c00419{bottom:599.680000pt;}
.y27_c00419{bottom:600.320000pt;}
.y24_c00419{bottom:635.520000pt;}
.y25_c00419{bottom:636.160000pt;}
.y22_c00419{bottom:636.800000pt;}
.y23_c00419{bottom:638.080000pt;}
.y20_c00419{bottom:673.920000pt;}
.y21_c00419{bottom:674.560000pt;}
.y1e_c00419{bottom:675.840000pt;}
.y1f_c00419{bottom:676.480000pt;}
.y1c_c00419{bottom:711.680000pt;}
.y1d_c00419{bottom:712.320000pt;}
.y1a_c00419{bottom:712.960000pt;}
.y1b_c00419{bottom:714.880000pt;}
.y19_c00419{bottom:750.720000pt;}
.y17_c00419{bottom:751.360000pt;}
.y18_c00419{bottom:753.280000pt;}
.y16_c00419{bottom:789.120000pt;}
.y15_c00419{bottom:789.760000pt;}
.y13_c00419{bottom:790.400000pt;}
.y14_c00419{bottom:791.680000pt;}
.y10_c00419{bottom:827.520000pt;}
.y11_c00419{bottom:828.160000pt;}
.ye_c00419{bottom:829.440000pt;}
.y12_c00419{bottom:830.080000pt;}
.yf_c00419{bottom:830.720000pt;}
.yc_c00419{bottom:864.640000pt;}
.yd_c00419{bottom:865.280000pt;}
.yb_c00419{bottom:868.480000pt;}
.ya_c00419{bottom:894.720000pt;}
.y8_c00419{bottom:895.360000pt;}
.y9_c00419{bottom:896.000000pt;}
.y6_c00419{bottom:896.640000pt;}
.y7_c00419{bottom:897.280000pt;}
.y3_c00419{bottom:933.120000pt;}
.y5_c00419{bottom:933.760000pt;}
.y4_c00419{bottom:934.400000pt;}
.y2_c00419{bottom:935.680000pt;}
.y1_c00419{bottom:1005.440000pt;}
.h16_c00419{height:13.822500pt;}
.h15_c00419{height:16.126250pt;}
.h11_c00419{height:23.037500pt;}
.hc_c00419{height:25.341250pt;}
.h13_c00419{height:27.645000pt;}
.hd_c00419{height:29.948750pt;}
.h14_c00419{height:32.252500pt;}
.h10_c00419{height:34.556250pt;}
.h8_c00419{height:39.163750pt;}
.h5_c00419{height:41.467500pt;}
.h4_c00419{height:43.771250pt;}
.h6_c00419{height:46.075000pt;}
.h3_c00419{height:48.378750pt;}
.ha_c00419{height:48.635000pt;}
.h7_c00419{height:50.682500pt;}
.hb_c00419{height:52.986250pt;}
.h12_c00419{height:53.498750pt;}
.he_c00419{height:55.290000pt;}
.hf_c00419{height:57.593750pt;}
.h2_c00419{height:59.897500pt;}
.h9_c00419{height:62.201250pt;}
.h0_c00419{height:1031.680000pt;}
.h1_c00419{height:1032.000000pt;}
.w1_c00419{width:680.000000pt;}
.w0_c00419{width:680.320000pt;}
.x0_c00419{left:0.000000pt;}
.x2_c00419{left:44.160000pt;}
.x1b_c00419{left:45.440000pt;}
.x1c_c00419{left:81.920000pt;}
.x17_c00419{left:83.200000pt;}
.x1d_c00419{left:90.880000pt;}
.x3_c00419{left:111.360000pt;}
.x16_c00419{left:148.480000pt;}
.x9_c00419{left:149.760000pt;}
.x10_c00419{left:159.360000pt;}
.x19_c00419{left:196.480000pt;}
.xa_c00419{left:197.760000pt;}
.xb_c00419{left:245.760000pt;}
.x15_c00419{left:255.360000pt;}
.xc_c00419{left:294.400000pt;}
.x18_c00419{left:304.000000pt;}
.x11_c00419{left:322.560000pt;}
.xd_c00419{left:370.560000pt;}
.xe_c00419{left:418.560000pt;}
.x13_c00419{left:466.560000pt;}
.x1a_c00419{left:467.840000pt;}
.xf_c00419{left:472.320000pt;}
.x4_c00419{left:476.160000pt;}
.x5_c00419{left:495.360000pt;}
.x14_c00419{left:543.360000pt;}
.x6_c00419{left:545.280000pt;}
.x7_c00419{left:574.080000pt;}
.x1_c00419{left:599.040000pt;}
.x12_c00419{left:602.880000pt;}
.x8_c00419{left:612.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_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_cbf6116802da6c65eb795573.woff2')format("woff");}.ff1_c00420{font-family:ff1_c00420;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3a_c00420{transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);}
.m53_c00420{transform:matrix(0.243050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243050,0.000000,0.000000,0.250000,0,0);}
.m34_c00420{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m41_c00420{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);}
.m2d_c00420{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);}
.m4b_c00420{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_c00420{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m25_c00420{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);}
.m3e_c00420{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);}
.m4d_c00420{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);}
.m2b_c00420{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.mc_c00420{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m50_c00420{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m2_c00420{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00420{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m8_c00420{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m11_c00420{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m24_c00420{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00420{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m21_c00420{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m27_c00420{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00420{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m19_c00420{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m5_c00420{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mb_c00420{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1_c00420{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m39_c00420{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00420{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m46_c00420{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m7_c00420{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m0_c00420{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.ma_c00420{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);}
.m29_c00420{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);}
.m26_c00420{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m37_c00420{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);}
.m44_c00420{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m2e_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);}
.md_c00420{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00420{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);}
.m4c_c00420{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_c00420{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m49_c00420{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m12_c00420{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);}
.m28_c00420{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);}
.m2c_c00420{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);}
.m14_c00420{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00420{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_c00420{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);}
.m45_c00420{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);}
.m42_c00420{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00420{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.me_c00420{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00420{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m3_c00420{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);}
.m2f_c00420{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00420{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m23_c00420{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);}
.m48_c00420{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m47_c00420{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m22_c00420{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m55_c00420{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m32_c00420{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);}
.m56_c00420{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m43_c00420{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);}
.m17_c00420{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00420{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m16_c00420{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m6_c00420{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.mf_c00420{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m10_c00420{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);}
.m20_c00420{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m54_c00420{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);}
.m4_c00420{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);}
.m38_c00420{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m31_c00420{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m30_c00420{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m13_c00420{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00420{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m36_c00420{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m40_c00420{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m51_c00420{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);}
.m52_c00420{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m18_c00420{transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00420{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m35_c00420{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.m33_c00420{transform:matrix(0.860000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.860000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.860000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00420{transform:matrix(0.885000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.885000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.885000,0.000000,0.000000,0.250000,0,0);}
.v3_c00420{vertical-align:-2.880000px;}
.v0_c00420{vertical-align:0.000000px;}
.v1_c00420{vertical-align:5.760000px;}
.v2_c00420{vertical-align:8.640000px;}
.ls0_c00420{letter-spacing:0.000000px;}
.sc__c00420{text-shadow:none;}
.sc0_c00420{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00420{-webkit-text-stroke:0px transparent;}
.sc0_c00420{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00420{word-spacing:-0.106800px;}
.ws3_c00420{word-spacing:0.000000px;}
.ws0_c00420{word-spacing:10.749600px;}
.ws1_c00420{word-spacing:187.886400px;}
.fc0_c00420{color:transparent;}
.fs3_c00420{font-size:34.560000px;}
.fs8_c00420{font-size:37.440000px;}
.fsd_c00420{font-size:40.320000px;}
.fse_c00420{font-size:43.200000px;}
.fsb_c00420{font-size:46.080000px;}
.fs9_c00420{font-size:48.960000px;}
.fs4_c00420{font-size:51.840000px;}
.fs5_c00420{font-size:54.720000px;}
.fs6_c00420{font-size:57.600000px;}
.fs7_c00420{font-size:60.480000px;}
.fs2_c00420{font-size:63.360000px;}
.fsa_c00420{font-size:66.240000px;}
.fs1_c00420{font-size:69.120000px;}
.fsc_c00420{font-size:72.000000px;}
.fs0_c00420{font-size:74.880000px;}
.fsf_c00420{font-size:77.760000px;}
.y0_c00420{bottom:0.000000px;}
.y83_c00420{bottom:45.360000px;}
.y84_c00420{bottom:46.080000px;}
.y82_c00420{bottom:46.800000px;}
.y80_c00420{bottom:75.600000px;}
.y81_c00420{bottom:76.320000px;}
.y7e_c00420{bottom:77.040000px;}
.y7f_c00420{bottom:78.480000px;}
.y7c_c00420{bottom:108.000000px;}
.y79_c00420{bottom:108.720000px;}
.y7d_c00420{bottom:109.440000px;}
.y7b_c00420{bottom:110.160000px;}
.y78_c00420{bottom:110.880000px;}
.y7a_c00420{bottom:111.600000px;}
.y74_c00420{bottom:151.920000px;}
.y73_c00420{bottom:152.640000px;}
.y77_c00420{bottom:153.360000px;}
.y72_c00420{bottom:154.080000px;}
.y76_c00420{bottom:154.800000px;}
.y75_c00420{bottom:155.520000px;}
.y71_c00420{bottom:187.200000px;}
.y6d_c00420{bottom:195.120000px;}
.y6f_c00420{bottom:195.840000px;}
.y6c_c00420{bottom:196.560000px;}
.y6b_c00420{bottom:197.280000px;}
.y6e_c00420{bottom:198.000000px;}
.y70_c00420{bottom:199.440000px;}
.y67_c00420{bottom:239.040000px;}
.y69_c00420{bottom:239.760000px;}
.y6a_c00420{bottom:240.480000px;}
.y68_c00420{bottom:241.200000px;}
.y66_c00420{bottom:241.920000px;}
.y64_c00420{bottom:282.240000px;}
.y62_c00420{bottom:282.960000px;}
.y65_c00420{bottom:283.680000px;}
.y60_c00420{bottom:284.400000px;}
.y61_c00420{bottom:285.120000px;}
.y63_c00420{bottom:285.840000px;}
.y5c_c00420{bottom:325.440000px;}
.y5f_c00420{bottom:326.160000px;}
.y5a_c00420{bottom:326.880000px;}
.y5b_c00420{bottom:327.600000px;}
.y5e_c00420{bottom:328.320000px;}
.y5d_c00420{bottom:329.040000px;}
.y58_c00420{bottom:368.640000px;}
.y59_c00420{bottom:370.080000px;}
.y56_c00420{bottom:370.800000px;}
.y57_c00420{bottom:371.520000px;}
.y54_c00420{bottom:411.840000px;}
.y52_c00420{bottom:412.560000px;}
.y55_c00420{bottom:413.280000px;}
.y53_c00420{bottom:414.720000px;}
.y50_c00420{bottom:455.040000px;}
.y4f_c00420{bottom:455.760000px;}
.y4d_c00420{bottom:456.480000px;}
.y4e_c00420{bottom:457.200000px;}
.y51_c00420{bottom:457.920000px;}
.y4c_c00420{bottom:497.520000px;}
.y4a_c00420{bottom:498.240000px;}
.y4b_c00420{bottom:498.960000px;}
.y47_c00420{bottom:499.680000px;}
.y49_c00420{bottom:500.400000px;}
.y48_c00420{bottom:501.120000px;}
.y45_c00420{bottom:540.720000px;}
.y44_c00420{bottom:541.440000px;}
.y46_c00420{bottom:542.160000px;}
.y40_c00420{bottom:542.880000px;}
.y43_c00420{bottom:543.600000px;}
.y41_c00420{bottom:544.320000px;}
.y42_c00420{bottom:545.040000px;}
.y3f_c00420{bottom:587.520000px;}
.y3e_c00420{bottom:588.240000px;}
.y3b_c00420{bottom:617.040000px;}
.y3d_c00420{bottom:617.760000px;}
.y38_c00420{bottom:618.480000px;}
.y3c_c00420{bottom:619.200000px;}
.y39_c00420{bottom:619.920000px;}
.y3a_c00420{bottom:620.640000px;}
.y37_c00420{bottom:660.240000px;}
.y36_c00420{bottom:660.960000px;}
.y35_c00420{bottom:661.680000px;}
.y32_c00420{bottom:662.400000px;}
.y34_c00420{bottom:663.120000px;}
.y33_c00420{bottom:663.840000px;}
.y2f_c00420{bottom:704.160000px;}
.y31_c00420{bottom:704.880000px;}
.y2d_c00420{bottom:705.600000px;}
.y30_c00420{bottom:707.040000px;}
.y2e_c00420{bottom:707.760000px;}
.y2b_c00420{bottom:746.640000px;}
.y2a_c00420{bottom:747.360000px;}
.y2c_c00420{bottom:748.800000px;}
.y27_c00420{bottom:749.520000px;}
.y29_c00420{bottom:750.240000px;}
.y28_c00420{bottom:750.960000px;}
.y24_c00420{bottom:790.560000px;}
.y23_c00420{bottom:791.280000px;}
.y22_c00420{bottom:792.000000px;}
.y26_c00420{bottom:792.720000px;}
.y25_c00420{bottom:793.440000px;}
.y1f_c00420{bottom:833.760000px;}
.y1e_c00420{bottom:834.480000px;}
.y1d_c00420{bottom:835.200000px;}
.y21_c00420{bottom:835.920000px;}
.y20_c00420{bottom:836.640000px;}
.y1b_c00420{bottom:876.240000px;}
.y19_c00420{bottom:877.680000px;}
.y1c_c00420{bottom:879.120000px;}
.y1a_c00420{bottom:879.840000px;}
.y16_c00420{bottom:919.440000px;}
.y15_c00420{bottom:920.160000px;}
.y14_c00420{bottom:920.880000px;}
.y17_c00420{bottom:921.600000px;}
.y18_c00420{bottom:922.320000px;}
.y13_c00420{bottom:923.040000px;}
.yf_c00420{bottom:962.640000px;}
.y12_c00420{bottom:963.360000px;}
.yd_c00420{bottom:964.080000px;}
.y10_c00420{bottom:964.800000px;}
.y11_c00420{bottom:965.520000px;}
.ye_c00420{bottom:966.240000px;}
.yc_c00420{bottom:1005.120000px;}
.y9_c00420{bottom:1006.560000px;}
.y8_c00420{bottom:1007.280000px;}
.yb_c00420{bottom:1008.000000px;}
.ya_c00420{bottom:1008.720000px;}
.y7_c00420{bottom:1048.320000px;}
.y5_c00420{bottom:1049.040000px;}
.y3_c00420{bottom:1049.760000px;}
.y2_c00420{bottom:1050.480000px;}
.y6_c00420{bottom:1051.920000px;}
.y4_c00420{bottom:1052.640000px;}
.y1_c00420{bottom:1127.520000px;}
.h5_c00420{height:31.100625px;}
.ha_c00420{height:33.692344px;}
.h10_c00420{height:36.284062px;}
.h11_c00420{height:38.875781px;}
.he_c00420{height:41.467500px;}
.hb_c00420{height:44.059219px;}
.h6_c00420{height:46.650937px;}
.h7_c00420{height:49.242656px;}
.h8_c00420{height:51.834375px;}
.h9_c00420{height:54.426094px;}
.hd_c00420{height:55.002656px;}
.h12_c00420{height:55.290938px;}
.h4_c00420{height:57.017812px;}
.hc_c00420{height:59.609531px;}
.h3_c00420{height:62.201250px;}
.hf_c00420{height:64.792969px;}
.h2_c00420{height:67.384687px;}
.h13_c00420{height:69.976406px;}
.h1_c00420{height:1162.500000px;}
.h0_c00420{height:1162.800000px;}
.w1_c00420{width:769.500000px;}
.w0_c00420{width:769.680000px;}
.x0_c00420{left:0.000000px;}
.x23_c00420{left:56.160000px;}
.x2_c00420{left:57.600000px;}
.x22_c00420{left:131.040000px;}
.x16_c00420{left:132.480000px;}
.x3_c00420{left:133.920000px;}
.x2b_c00420{left:173.520000px;}
.x19_c00420{left:174.960000px;}
.x4_c00420{left:176.400000px;}
.x5_c00420{left:208.800000px;}
.x2f_c00420{left:218.160000px;}
.x39_c00420{left:228.240000px;}
.x15_c00420{left:229.680000px;}
.x6_c00420{left:231.120000px;}
.x27_c00420{left:239.760000px;}
.x3b_c00420{left:261.360000px;}
.x30_c00420{left:272.160000px;}
.x24_c00420{left:282.960000px;}
.x7_c00420{left:284.400000px;}
.x1a_c00420{left:294.480000px;}
.xc_c00420{left:295.920000px;}
.x3c_c00420{left:313.920000px;}
.x31_c00420{left:325.440000px;}
.x28_c00420{left:336.960000px;}
.x17_c00420{left:338.400000px;}
.x26_c00420{left:347.760000px;}
.x1c_c00420{left:349.200000px;}
.xd_c00420{left:350.640000px;}
.x3d_c00420{left:358.560000px;}
.x1f_c00420{left:393.120000px;}
.x3a_c00420{left:401.760000px;}
.xf_c00420{left:403.920000px;}
.x32_c00420{left:421.920000px;}
.x29_c00420{left:434.160000px;}
.x35_c00420{left:444.240000px;}
.x12_c00420{left:446.400000px;}
.x37_c00420{left:454.320000px;}
.x20_c00420{left:467.280000px;}
.x33_c00420{left:477.360000px;}
.x2a_c00420{left:488.160000px;}
.x36_c00420{left:498.960000px;}
.x13_c00420{left:501.120000px;}
.x1d_c00420{left:532.080000px;}
.x8_c00420{left:533.520000px;}
.xe_c00420{left:534.960000px;}
.x14_c00420{left:545.040000px;}
.x25_c00420{left:586.080000px;}
.x34_c00420{left:596.880000px;}
.x2c_c00420{left:617.760000px;}
.x1b_c00420{left:619.920000px;}
.x9_c00420{left:621.360000px;}
.x2d_c00420{left:651.600000px;}
.x18_c00420{left:653.040000px;}
.xa_c00420{left:654.480000px;}
.x1e_c00420{left:663.840000px;}
.x1_c00420{left:673.920000px;}
.x2e_c00420{left:685.440000px;}
.xb_c00420{left:686.880000px;}
.x38_c00420{left:694.800000px;}
.x21_c00420{left:696.240000px;}
.x10_c00420{left:697.680000px;}
.x11_c00420{left:717.840000px;}
@media print{
.v3_c00420{vertical-align:-2.560000pt;}
.v0_c00420{vertical-align:0.000000pt;}
.v1_c00420{vertical-align:5.120000pt;}
.v2_c00420{vertical-align:7.680000pt;}
.ls0_c00420{letter-spacing:0.000000pt;}
.ws2_c00420{word-spacing:-0.094933pt;}
.ws3_c00420{word-spacing:0.000000pt;}
.ws0_c00420{word-spacing:9.555200pt;}
.ws1_c00420{word-spacing:167.010133pt;}
.fs3_c00420{font-size:30.720000pt;}
.fs8_c00420{font-size:33.280000pt;}
.fsd_c00420{font-size:35.840000pt;}
.fse_c00420{font-size:38.400000pt;}
.fsb_c00420{font-size:40.960000pt;}
.fs9_c00420{font-size:43.520000pt;}
.fs4_c00420{font-size:46.080000pt;}
.fs5_c00420{font-size:48.640000pt;}
.fs6_c00420{font-size:51.200000pt;}
.fs7_c00420{font-size:53.760000pt;}
.fs2_c00420{font-size:56.320000pt;}
.fsa_c00420{font-size:58.880000pt;}
.fs1_c00420{font-size:61.440000pt;}
.fsc_c00420{font-size:64.000000pt;}
.fs0_c00420{font-size:66.560000pt;}
.fsf_c00420{font-size:69.120000pt;}
.y0_c00420{bottom:0.000000pt;}
.y83_c00420{bottom:40.320000pt;}
.y84_c00420{bottom:40.960000pt;}
.y82_c00420{bottom:41.600000pt;}
.y80_c00420{bottom:67.200000pt;}
.y81_c00420{bottom:67.840000pt;}
.y7e_c00420{bottom:68.480000pt;}
.y7f_c00420{bottom:69.760000pt;}
.y7c_c00420{bottom:96.000000pt;}
.y79_c00420{bottom:96.640000pt;}
.y7d_c00420{bottom:97.280000pt;}
.y7b_c00420{bottom:97.920000pt;}
.y78_c00420{bottom:98.560000pt;}
.y7a_c00420{bottom:99.200000pt;}
.y74_c00420{bottom:135.040000pt;}
.y73_c00420{bottom:135.680000pt;}
.y77_c00420{bottom:136.320000pt;}
.y72_c00420{bottom:136.960000pt;}
.y76_c00420{bottom:137.600000pt;}
.y75_c00420{bottom:138.240000pt;}
.y71_c00420{bottom:166.400000pt;}
.y6d_c00420{bottom:173.440000pt;}
.y6f_c00420{bottom:174.080000pt;}
.y6c_c00420{bottom:174.720000pt;}
.y6b_c00420{bottom:175.360000pt;}
.y6e_c00420{bottom:176.000000pt;}
.y70_c00420{bottom:177.280000pt;}
.y67_c00420{bottom:212.480000pt;}
.y69_c00420{bottom:213.120000pt;}
.y6a_c00420{bottom:213.760000pt;}
.y68_c00420{bottom:214.400000pt;}
.y66_c00420{bottom:215.040000pt;}
.y64_c00420{bottom:250.880000pt;}
.y62_c00420{bottom:251.520000pt;}
.y65_c00420{bottom:252.160000pt;}
.y60_c00420{bottom:252.800000pt;}
.y61_c00420{bottom:253.440000pt;}
.y63_c00420{bottom:254.080000pt;}
.y5c_c00420{bottom:289.280000pt;}
.y5f_c00420{bottom:289.920000pt;}
.y5a_c00420{bottom:290.560000pt;}
.y5b_c00420{bottom:291.200000pt;}
.y5e_c00420{bottom:291.840000pt;}
.y5d_c00420{bottom:292.480000pt;}
.y58_c00420{bottom:327.680000pt;}
.y59_c00420{bottom:328.960000pt;}
.y56_c00420{bottom:329.600000pt;}
.y57_c00420{bottom:330.240000pt;}
.y54_c00420{bottom:366.080000pt;}
.y52_c00420{bottom:366.720000pt;}
.y55_c00420{bottom:367.360000pt;}
.y53_c00420{bottom:368.640000pt;}
.y50_c00420{bottom:404.480000pt;}
.y4f_c00420{bottom:405.120000pt;}
.y4d_c00420{bottom:405.760000pt;}
.y4e_c00420{bottom:406.400000pt;}
.y51_c00420{bottom:407.040000pt;}
.y4c_c00420{bottom:442.240000pt;}
.y4a_c00420{bottom:442.880000pt;}
.y4b_c00420{bottom:443.520000pt;}
.y47_c00420{bottom:444.160000pt;}
.y49_c00420{bottom:444.800000pt;}
.y48_c00420{bottom:445.440000pt;}
.y45_c00420{bottom:480.640000pt;}
.y44_c00420{bottom:481.280000pt;}
.y46_c00420{bottom:481.920000pt;}
.y40_c00420{bottom:482.560000pt;}
.y43_c00420{bottom:483.200000pt;}
.y41_c00420{bottom:483.840000pt;}
.y42_c00420{bottom:484.480000pt;}
.y3f_c00420{bottom:522.240000pt;}
.y3e_c00420{bottom:522.880000pt;}
.y3b_c00420{bottom:548.480000pt;}
.y3d_c00420{bottom:549.120000pt;}
.y38_c00420{bottom:549.760000pt;}
.y3c_c00420{bottom:550.400000pt;}
.y39_c00420{bottom:551.040000pt;}
.y3a_c00420{bottom:551.680000pt;}
.y37_c00420{bottom:586.880000pt;}
.y36_c00420{bottom:587.520000pt;}
.y35_c00420{bottom:588.160000pt;}
.y32_c00420{bottom:588.800000pt;}
.y34_c00420{bottom:589.440000pt;}
.y33_c00420{bottom:590.080000pt;}
.y2f_c00420{bottom:625.920000pt;}
.y31_c00420{bottom:626.560000pt;}
.y2d_c00420{bottom:627.200000pt;}
.y30_c00420{bottom:628.480000pt;}
.y2e_c00420{bottom:629.120000pt;}
.y2b_c00420{bottom:663.680000pt;}
.y2a_c00420{bottom:664.320000pt;}
.y2c_c00420{bottom:665.600000pt;}
.y27_c00420{bottom:666.240000pt;}
.y29_c00420{bottom:666.880000pt;}
.y28_c00420{bottom:667.520000pt;}
.y24_c00420{bottom:702.720000pt;}
.y23_c00420{bottom:703.360000pt;}
.y22_c00420{bottom:704.000000pt;}
.y26_c00420{bottom:704.640000pt;}
.y25_c00420{bottom:705.280000pt;}
.y1f_c00420{bottom:741.120000pt;}
.y1e_c00420{bottom:741.760000pt;}
.y1d_c00420{bottom:742.400000pt;}
.y21_c00420{bottom:743.040000pt;}
.y20_c00420{bottom:743.680000pt;}
.y1b_c00420{bottom:778.880000pt;}
.y19_c00420{bottom:780.160000pt;}
.y1c_c00420{bottom:781.440000pt;}
.y1a_c00420{bottom:782.080000pt;}
.y16_c00420{bottom:817.280000pt;}
.y15_c00420{bottom:817.920000pt;}
.y14_c00420{bottom:818.560000pt;}
.y17_c00420{bottom:819.200000pt;}
.y18_c00420{bottom:819.840000pt;}
.y13_c00420{bottom:820.480000pt;}
.yf_c00420{bottom:855.680000pt;}
.y12_c00420{bottom:856.320000pt;}
.yd_c00420{bottom:856.960000pt;}
.y10_c00420{bottom:857.600000pt;}
.y11_c00420{bottom:858.240000pt;}
.ye_c00420{bottom:858.880000pt;}
.yc_c00420{bottom:893.440000pt;}
.y9_c00420{bottom:894.720000pt;}
.y8_c00420{bottom:895.360000pt;}
.yb_c00420{bottom:896.000000pt;}
.ya_c00420{bottom:896.640000pt;}
.y7_c00420{bottom:931.840000pt;}
.y5_c00420{bottom:932.480000pt;}
.y3_c00420{bottom:933.120000pt;}
.y2_c00420{bottom:933.760000pt;}
.y6_c00420{bottom:935.040000pt;}
.y4_c00420{bottom:935.680000pt;}
.y1_c00420{bottom:1002.240000pt;}
.h5_c00420{height:27.645000pt;}
.ha_c00420{height:29.948750pt;}
.h10_c00420{height:32.252500pt;}
.h11_c00420{height:34.556250pt;}
.he_c00420{height:36.860000pt;}
.hb_c00420{height:39.163750pt;}
.h6_c00420{height:41.467500pt;}
.h7_c00420{height:43.771250pt;}
.h8_c00420{height:46.075000pt;}
.h9_c00420{height:48.378750pt;}
.hd_c00420{height:48.891250pt;}
.h12_c00420{height:49.147500pt;}
.h4_c00420{height:50.682500pt;}
.hc_c00420{height:52.986250pt;}
.h3_c00420{height:55.290000pt;}
.hf_c00420{height:57.593750pt;}
.h2_c00420{height:59.897500pt;}
.h13_c00420{height:62.201250pt;}
.h1_c00420{height:1033.333333pt;}
.h0_c00420{height:1033.600000pt;}
.w1_c00420{width:684.000000pt;}
.w0_c00420{width:684.160000pt;}
.x0_c00420{left:0.000000pt;}
.x23_c00420{left:49.920000pt;}
.x2_c00420{left:51.200000pt;}
.x22_c00420{left:116.480000pt;}
.x16_c00420{left:117.760000pt;}
.x3_c00420{left:119.040000pt;}
.x2b_c00420{left:154.240000pt;}
.x19_c00420{left:155.520000pt;}
.x4_c00420{left:156.800000pt;}
.x5_c00420{left:185.600000pt;}
.x2f_c00420{left:193.920000pt;}
.x39_c00420{left:202.880000pt;}
.x15_c00420{left:204.160000pt;}
.x6_c00420{left:205.440000pt;}
.x27_c00420{left:213.120000pt;}
.x3b_c00420{left:232.320000pt;}
.x30_c00420{left:241.920000pt;}
.x24_c00420{left:251.520000pt;}
.x7_c00420{left:252.800000pt;}
.x1a_c00420{left:261.760000pt;}
.xc_c00420{left:263.040000pt;}
.x3c_c00420{left:279.040000pt;}
.x31_c00420{left:289.280000pt;}
.x28_c00420{left:299.520000pt;}
.x17_c00420{left:300.800000pt;}
.x26_c00420{left:309.120000pt;}
.x1c_c00420{left:310.400000pt;}
.xd_c00420{left:311.680000pt;}
.x3d_c00420{left:318.720000pt;}
.x1f_c00420{left:349.440000pt;}
.x3a_c00420{left:357.120000pt;}
.xf_c00420{left:359.040000pt;}
.x32_c00420{left:375.040000pt;}
.x29_c00420{left:385.920000pt;}
.x35_c00420{left:394.880000pt;}
.x12_c00420{left:396.800000pt;}
.x37_c00420{left:403.840000pt;}
.x20_c00420{left:415.360000pt;}
.x33_c00420{left:424.320000pt;}
.x2a_c00420{left:433.920000pt;}
.x36_c00420{left:443.520000pt;}
.x13_c00420{left:445.440000pt;}
.x1d_c00420{left:472.960000pt;}
.x8_c00420{left:474.240000pt;}
.xe_c00420{left:475.520000pt;}
.x14_c00420{left:484.480000pt;}
.x25_c00420{left:520.960000pt;}
.x34_c00420{left:530.560000pt;}
.x2c_c00420{left:549.120000pt;}
.x1b_c00420{left:551.040000pt;}
.x9_c00420{left:552.320000pt;}
.x2d_c00420{left:579.200000pt;}
.x18_c00420{left:580.480000pt;}
.xa_c00420{left:581.760000pt;}
.x1e_c00420{left:590.080000pt;}
.x1_c00420{left:599.040000pt;}
.x2e_c00420{left:609.280000pt;}
.xb_c00420{left:610.560000pt;}
.x38_c00420{left:617.600000pt;}
.x21_c00420{left:618.880000pt;}
.x10_c00420{left:620.160000pt;}
.x11_c00420{left:638.080000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_390d696a58edbb075e519726.woff2')format("woff");}.ff1_c00421{font-family:ff1_c00421;line-height:1.109863;font-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_c00421{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);}
.m37_c00421{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);}
.m44_c00421{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);}
.m42_c00421{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);}
.m25_c00421{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);}
.m2c_c00421{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m12_c00421{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m5_c00421{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m38_c00421{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.me_c00421{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);}
.m3b_c00421{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.ma_c00421{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m15_c00421{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m28_c00421{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m34_c00421{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m26_c00421{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00421{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00421{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m36_c00421{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00421{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m9_c00421{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m35_c00421{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m1_c00421{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00421{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m10_c00421{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m14_c00421{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_c00421{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00421{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m17_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);}
.m33_c00421{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.mc_c00421{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);}
.m31_c00421{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2_c00421{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);}
.m30_c00421{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);}
.m0_c00421{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m27_c00421{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m24_c00421{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);}
.m3e_c00421{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_c00421{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00421{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);}
.mf_c00421{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00421{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);}
.m21_c00421{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);}
.m3_c00421{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);}
.m41_c00421{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00421{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m4_c00421{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m18_c00421{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00421{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m13_c00421{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.mb_c00421{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m20_c00421{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m23_c00421{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m8_c00421{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00421{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);}
.md_c00421{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m19_c00421{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m40_c00421{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);}
.m22_c00421{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00421{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m16_c00421{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);}
.m2e_c00421{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m11_c00421{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);}
.m1c_c00421{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m6_c00421{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);}
.m1d_c00421{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m29_c00421{transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);}
.m39_c00421{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m43_c00421{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.v1_c00421{vertical-align:-2.880000px;}
.v0_c00421{vertical-align:0.000000px;}
.v3_c00421{vertical-align:5.760000px;}
.v2_c00421{vertical-align:11.520000px;}
.ls0_c00421{letter-spacing:0.000000px;}
.sc__c00421{text-shadow:none;}
.sc0_c00421{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00421{-webkit-text-stroke:0px transparent;}
.sc0_c00421{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00421{word-spacing:0.000000px;}
.ws0_c00421{word-spacing:1.156800px;}
.ws2_c00421{word-spacing:50.925120px;}
.ws1_c00421{word-spacing:1201.726320px;}
.fc0_c00421{color:transparent;}
.fsd_c00421{font-size:31.680000px;}
.fsa_c00421{font-size:34.560000px;}
.fs8_c00421{font-size:40.320000px;}
.fsb_c00421{font-size:43.200000px;}
.fs9_c00421{font-size:46.080000px;}
.fs6_c00421{font-size:48.960000px;}
.fs1_c00421{font-size:51.840000px;}
.fs4_c00421{font-size:54.720000px;}
.fs7_c00421{font-size:57.600000px;}
.fs0_c00421{font-size:60.480000px;}
.fs2_c00421{font-size:63.360000px;}
.fs3_c00421{font-size:66.240000px;}
.fsc_c00421{font-size:69.120000px;}
.fs5_c00421{font-size:72.000000px;}
.fsf_c00421{font-size:74.880000px;}
.fse_c00421{font-size:77.760000px;}
.y0_c00421{bottom:0.000000px;}
.y67_c00421{bottom:85.680000px;}
.y69_c00421{bottom:87.840000px;}
.y66_c00421{bottom:88.560000px;}
.y68_c00421{bottom:89.280000px;}
.y62_c00421{bottom:128.880000px;}
.y65_c00421{bottom:131.040000px;}
.y64_c00421{bottom:131.760000px;}
.y63_c00421{bottom:132.480000px;}
.y61_c00421{bottom:133.200000px;}
.y5e_c00421{bottom:172.080000px;}
.y5f_c00421{bottom:174.960000px;}
.y5d_c00421{bottom:175.680000px;}
.y60_c00421{bottom:177.120000px;}
.y58_c00421{bottom:214.560000px;}
.y5b_c00421{bottom:216.000000px;}
.y5a_c00421{bottom:217.440000px;}
.y5c_c00421{bottom:218.160000px;}
.y59_c00421{bottom:218.880000px;}
.y57_c00421{bottom:219.600000px;}
.y55_c00421{bottom:259.920000px;}
.y54_c00421{bottom:260.640000px;}
.y53_c00421{bottom:262.080000px;}
.y56_c00421{bottom:262.800000px;}
.y50_c00421{bottom:293.040000px;}
.y4f_c00421{bottom:293.760000px;}
.y51_c00421{bottom:294.480000px;}
.y52_c00421{bottom:295.920000px;}
.y4e_c00421{bottom:336.240000px;}
.y4c_c00421{bottom:336.960000px;}
.y4d_c00421{bottom:338.400000px;}
.y4b_c00421{bottom:339.120000px;}
.y49_c00421{bottom:368.640000px;}
.y46_c00421{bottom:369.360000px;}
.y45_c00421{bottom:370.080000px;}
.y47_c00421{bottom:370.800000px;}
.y48_c00421{bottom:371.520000px;}
.y4a_c00421{bottom:372.240000px;}
.y3e_c00421{bottom:412.560000px;}
.y3c_c00421{bottom:413.280000px;}
.y3d_c00421{bottom:414.720000px;}
.y3b_c00421{bottom:415.440000px;}
.y37_c00421{bottom:444.960000px;}
.y39_c00421{bottom:445.680000px;}
.y36_c00421{bottom:446.400000px;}
.y38_c00421{bottom:447.120000px;}
.y3a_c00421{bottom:447.840000px;}
.y34_c00421{bottom:488.160000px;}
.y35_c00421{bottom:491.040000px;}
.y33_c00421{bottom:520.560000px;}
.y32_c00421{bottom:521.280000px;}
.y43_c00421{bottom:522.000000px;}
.y31_c00421{bottom:523.440000px;}
.y44_c00421{bottom:524.160000px;}
.y2e_c00421{bottom:563.760000px;}
.y30_c00421{bottom:564.480000px;}
.y2f_c00421{bottom:566.640000px;}
.y2b_c00421{bottom:596.880000px;}
.y2d_c00421{bottom:597.600000px;}
.y29_c00421{bottom:598.320000px;}
.y2c_c00421{bottom:599.040000px;}
.y2a_c00421{bottom:599.760000px;}
.y27_c00421{bottom:639.360000px;}
.y28_c00421{bottom:640.080000px;}
.y26_c00421{bottom:640.800000px;}
.y42_c00421{bottom:642.240000px;}
.y25_c00421{bottom:685.440000px;}
.y24_c00421{bottom:714.960000px;}
.y22_c00421{bottom:715.680000px;}
.y21_c00421{bottom:716.400000px;}
.y23_c00421{bottom:717.840000px;}
.y1f_c00421{bottom:760.320000px;}
.y20_c00421{bottom:761.040000px;}
.y1c_c00421{bottom:790.560000px;}
.y1e_c00421{bottom:791.280000px;}
.y1d_c00421{bottom:792.000000px;}
.y1b_c00421{bottom:792.720000px;}
.y41_c00421{bottom:794.160000px;}
.y19_c00421{bottom:833.760000px;}
.y1a_c00421{bottom:835.920000px;}
.y18_c00421{bottom:836.640000px;}
.y16_c00421{bottom:866.160000px;}
.y14_c00421{bottom:866.880000px;}
.y17_c00421{bottom:867.600000px;}
.y40_c00421{bottom:868.320000px;}
.y15_c00421{bottom:869.040000px;}
.y13_c00421{bottom:898.560000px;}
.y10_c00421{bottom:909.360000px;}
.y12_c00421{bottom:911.520000px;}
.y11_c00421{bottom:912.240000px;}
.yf_c00421{bottom:941.760000px;}
.ye_c00421{bottom:942.480000px;}
.yc_c00421{bottom:943.920000px;}
.yd_c00421{bottom:944.640000px;}
.y9_c00421{bottom:984.960000px;}
.ya_c00421{bottom:987.840000px;}
.yb_c00421{bottom:988.560000px;}
.y8_c00421{bottom:1017.360000px;}
.y6_c00421{bottom:1018.800000px;}
.y7_c00421{bottom:1020.240000px;}
.y4_c00421{bottom:1049.760000px;}
.y3_c00421{bottom:1050.480000px;}
.y1_c00421{bottom:1051.200000px;}
.y5_c00421{bottom:1052.640000px;}
.y2_c00421{bottom:1053.360000px;}
.y3f_c00421{bottom:1128.960000px;}
.hf_c00421{height:28.508906px;}
.hc_c00421{height:31.100625px;}
.ha_c00421{height:36.284062px;}
.hd_c00421{height:38.875781px;}
.hb_c00421{height:41.467500px;}
.h8_c00421{height:44.059219px;}
.h3_c00421{height:46.650937px;}
.h6_c00421{height:49.242656px;}
.h9_c00421{height:51.834375px;}
.h2_c00421{height:54.426094px;}
.h4_c00421{height:57.017812px;}
.h5_c00421{height:59.609531px;}
.he_c00421{height:62.201250px;}
.h7_c00421{height:64.792969px;}
.h11_c00421{height:67.384687px;}
.h10_c00421{height:69.976406px;}
.h12_c00421{height:73.721250px;}
.h0_c00421{height:1160.640000px;}
.h1_c00421{height:1161.000000px;}
.w1_c00421{width:766.500000px;}
.w0_c00421{width:766.800000px;}
.x0_c00421{left:0.000000px;}
.x1_c00421{left:57.600000px;}
.x1c_c00421{left:101.520000px;}
.xf_c00421{left:123.840225px;}
.x1a_c00421{left:132.480000px;}
.x2_c00421{left:133.920000px;}
.x1d_c00421{left:174.960000px;}
.x3_c00421{left:176.400000px;}
.xc_c00421{left:186.480000px;}
.x15_c00421{left:187.920000px;}
.x20_c00421{left:197.280000px;}
.x2e_c00421{left:209.520000px;}
.x10_c00421{left:219.600000px;}
.x4_c00421{left:230.400000px;}
.x2f_c00421{left:252.000000px;}
.x11_c00421{left:273.600000px;}
.x8_c00421{left:285.120000px;}
.x1e_c00421{left:294.480000px;}
.x5_c00421{left:295.920000px;}
.x16_c00421{left:305.280000px;}
.x23_c00421{left:316.800000px;}
.x12_c00421{left:328.320000px;}
.x9_c00421{left:338.400000px;}
.x6_c00421{left:350.640000px;}
.x17_c00421{left:360.720000px;}
.x2d_c00421{left:370.080000px;}
.x24_c00421{left:371.520000px;}
.x1f_c00421{left:381.600000px;}
.xa_c00421{left:393.120000px;}
.x22_c00421{left:413.280000px;}
.x18_c00421{left:424.800000px;}
.xe_c00421{left:434.880000px;}
.x14_c00421{left:436.320000px;}
.x7_c00421{left:446.400000px;}
.xb_c00421{left:447.840000px;}
.x1b_c00421{left:457.920000px;}
.x21_c00421{left:468.000000px;}
.x19_c00421{left:479.520000px;}
.x13_c00421{left:489.600000px;}
.xd_c00421{left:533.520000px;}
.x30_c00421{left:588.240000px;}
.x31_c00421{left:599.040000px;}
.x29_c00421{left:619.920000px;}
.x26_c00421{left:621.360000px;}
.x27_c00421{left:654.480000px;}
.x32_c00421{left:664.560000px;}
.x25_c00421{left:666.720000px;}
.x2a_c00421{left:687.600000px;}
.x2c_c00421{left:696.240000px;}
.x28_c00421{left:697.680000px;}
.x2b_c00421{left:717.840000px;}
@media print{
.v1_c00421{vertical-align:-2.560000pt;}
.v0_c00421{vertical-align:0.000000pt;}
.v3_c00421{vertical-align:5.120000pt;}
.v2_c00421{vertical-align:10.240000pt;}
.ls0_c00421{letter-spacing:0.000000pt;}
.ws3_c00421{word-spacing:0.000000pt;}
.ws0_c00421{word-spacing:1.028267pt;}
.ws2_c00421{word-spacing:45.266773pt;}
.ws1_c00421{word-spacing:1068.201173pt;}
.fsd_c00421{font-size:28.160000pt;}
.fsa_c00421{font-size:30.720000pt;}
.fs8_c00421{font-size:35.840000pt;}
.fsb_c00421{font-size:38.400000pt;}
.fs9_c00421{font-size:40.960000pt;}
.fs6_c00421{font-size:43.520000pt;}
.fs1_c00421{font-size:46.080000pt;}
.fs4_c00421{font-size:48.640000pt;}
.fs7_c00421{font-size:51.200000pt;}
.fs0_c00421{font-size:53.760000pt;}
.fs2_c00421{font-size:56.320000pt;}
.fs3_c00421{font-size:58.880000pt;}
.fsc_c00421{font-size:61.440000pt;}
.fs5_c00421{font-size:64.000000pt;}
.fsf_c00421{font-size:66.560000pt;}
.fse_c00421{font-size:69.120000pt;}
.y0_c00421{bottom:0.000000pt;}
.y67_c00421{bottom:76.160000pt;}
.y69_c00421{bottom:78.080000pt;}
.y66_c00421{bottom:78.720000pt;}
.y68_c00421{bottom:79.360000pt;}
.y62_c00421{bottom:114.560000pt;}
.y65_c00421{bottom:116.480000pt;}
.y64_c00421{bottom:117.120000pt;}
.y63_c00421{bottom:117.760000pt;}
.y61_c00421{bottom:118.400000pt;}
.y5e_c00421{bottom:152.960000pt;}
.y5f_c00421{bottom:155.520000pt;}
.y5d_c00421{bottom:156.160000pt;}
.y60_c00421{bottom:157.440000pt;}
.y58_c00421{bottom:190.720000pt;}
.y5b_c00421{bottom:192.000000pt;}
.y5a_c00421{bottom:193.280000pt;}
.y5c_c00421{bottom:193.920000pt;}
.y59_c00421{bottom:194.560000pt;}
.y57_c00421{bottom:195.200000pt;}
.y55_c00421{bottom:231.040000pt;}
.y54_c00421{bottom:231.680000pt;}
.y53_c00421{bottom:232.960000pt;}
.y56_c00421{bottom:233.600000pt;}
.y50_c00421{bottom:260.480000pt;}
.y4f_c00421{bottom:261.120000pt;}
.y51_c00421{bottom:261.760000pt;}
.y52_c00421{bottom:263.040000pt;}
.y4e_c00421{bottom:298.880000pt;}
.y4c_c00421{bottom:299.520000pt;}
.y4d_c00421{bottom:300.800000pt;}
.y4b_c00421{bottom:301.440000pt;}
.y49_c00421{bottom:327.680000pt;}
.y46_c00421{bottom:328.320000pt;}
.y45_c00421{bottom:328.960000pt;}
.y47_c00421{bottom:329.600000pt;}
.y48_c00421{bottom:330.240000pt;}
.y4a_c00421{bottom:330.880000pt;}
.y3e_c00421{bottom:366.720000pt;}
.y3c_c00421{bottom:367.360000pt;}
.y3d_c00421{bottom:368.640000pt;}
.y3b_c00421{bottom:369.280000pt;}
.y37_c00421{bottom:395.520000pt;}
.y39_c00421{bottom:396.160000pt;}
.y36_c00421{bottom:396.800000pt;}
.y38_c00421{bottom:397.440000pt;}
.y3a_c00421{bottom:398.080000pt;}
.y34_c00421{bottom:433.920000pt;}
.y35_c00421{bottom:436.480000pt;}
.y33_c00421{bottom:462.720000pt;}
.y32_c00421{bottom:463.360000pt;}
.y43_c00421{bottom:464.000000pt;}
.y31_c00421{bottom:465.280000pt;}
.y44_c00421{bottom:465.920000pt;}
.y2e_c00421{bottom:501.120000pt;}
.y30_c00421{bottom:501.760000pt;}
.y2f_c00421{bottom:503.680000pt;}
.y2b_c00421{bottom:530.560000pt;}
.y2d_c00421{bottom:531.200000pt;}
.y29_c00421{bottom:531.840000pt;}
.y2c_c00421{bottom:532.480000pt;}
.y2a_c00421{bottom:533.120000pt;}
.y27_c00421{bottom:568.320000pt;}
.y28_c00421{bottom:568.960000pt;}
.y26_c00421{bottom:569.600000pt;}
.y42_c00421{bottom:570.880000pt;}
.y25_c00421{bottom:609.280000pt;}
.y24_c00421{bottom:635.520000pt;}
.y22_c00421{bottom:636.160000pt;}
.y21_c00421{bottom:636.800000pt;}
.y23_c00421{bottom:638.080000pt;}
.y1f_c00421{bottom:675.840000pt;}
.y20_c00421{bottom:676.480000pt;}
.y1c_c00421{bottom:702.720000pt;}
.y1e_c00421{bottom:703.360000pt;}
.y1d_c00421{bottom:704.000000pt;}
.y1b_c00421{bottom:704.640000pt;}
.y41_c00421{bottom:705.920000pt;}
.y19_c00421{bottom:741.120000pt;}
.y1a_c00421{bottom:743.040000pt;}
.y18_c00421{bottom:743.680000pt;}
.y16_c00421{bottom:769.920000pt;}
.y14_c00421{bottom:770.560000pt;}
.y17_c00421{bottom:771.200000pt;}
.y40_c00421{bottom:771.840000pt;}
.y15_c00421{bottom:772.480000pt;}
.y13_c00421{bottom:798.720000pt;}
.y10_c00421{bottom:808.320000pt;}
.y12_c00421{bottom:810.240000pt;}
.y11_c00421{bottom:810.880000pt;}
.yf_c00421{bottom:837.120000pt;}
.ye_c00421{bottom:837.760000pt;}
.yc_c00421{bottom:839.040000pt;}
.yd_c00421{bottom:839.680000pt;}
.y9_c00421{bottom:875.520000pt;}
.ya_c00421{bottom:878.080000pt;}
.yb_c00421{bottom:878.720000pt;}
.y8_c00421{bottom:904.320000pt;}
.y6_c00421{bottom:905.600000pt;}
.y7_c00421{bottom:906.880000pt;}
.y4_c00421{bottom:933.120000pt;}
.y3_c00421{bottom:933.760000pt;}
.y1_c00421{bottom:934.400000pt;}
.y5_c00421{bottom:935.680000pt;}
.y2_c00421{bottom:936.320000pt;}
.y3f_c00421{bottom:1003.520000pt;}
.hf_c00421{height:25.341250pt;}
.hc_c00421{height:27.645000pt;}
.ha_c00421{height:32.252500pt;}
.hd_c00421{height:34.556250pt;}
.hb_c00421{height:36.860000pt;}
.h8_c00421{height:39.163750pt;}
.h3_c00421{height:41.467500pt;}
.h6_c00421{height:43.771250pt;}
.h9_c00421{height:46.075000pt;}
.h2_c00421{height:48.378750pt;}
.h4_c00421{height:50.682500pt;}
.h5_c00421{height:52.986250pt;}
.he_c00421{height:55.290000pt;}
.h7_c00421{height:57.593750pt;}
.h11_c00421{height:59.897500pt;}
.h10_c00421{height:62.201250pt;}
.h12_c00421{height:65.530000pt;}
.h0_c00421{height:1031.680000pt;}
.h1_c00421{height:1032.000000pt;}
.w1_c00421{width:681.333333pt;}
.w0_c00421{width:681.600000pt;}
.x0_c00421{left:0.000000pt;}
.x1_c00421{left:51.200000pt;}
.x1c_c00421{left:90.240000pt;}
.xf_c00421{left:110.080200pt;}
.x1a_c00421{left:117.760000pt;}
.x2_c00421{left:119.040000pt;}
.x1d_c00421{left:155.520000pt;}
.x3_c00421{left:156.800000pt;}
.xc_c00421{left:165.760000pt;}
.x15_c00421{left:167.040000pt;}
.x20_c00421{left:175.360000pt;}
.x2e_c00421{left:186.240000pt;}
.x10_c00421{left:195.200000pt;}
.x4_c00421{left:204.800000pt;}
.x2f_c00421{left:224.000000pt;}
.x11_c00421{left:243.200000pt;}
.x8_c00421{left:253.440000pt;}
.x1e_c00421{left:261.760000pt;}
.x5_c00421{left:263.040000pt;}
.x16_c00421{left:271.360000pt;}
.x23_c00421{left:281.600000pt;}
.x12_c00421{left:291.840000pt;}
.x9_c00421{left:300.800000pt;}
.x6_c00421{left:311.680000pt;}
.x17_c00421{left:320.640000pt;}
.x2d_c00421{left:328.960000pt;}
.x24_c00421{left:330.240000pt;}
.x1f_c00421{left:339.200000pt;}
.xa_c00421{left:349.440000pt;}
.x22_c00421{left:367.360000pt;}
.x18_c00421{left:377.600000pt;}
.xe_c00421{left:386.560000pt;}
.x14_c00421{left:387.840000pt;}
.x7_c00421{left:396.800000pt;}
.xb_c00421{left:398.080000pt;}
.x1b_c00421{left:407.040000pt;}
.x21_c00421{left:416.000000pt;}
.x19_c00421{left:426.240000pt;}
.x13_c00421{left:435.200000pt;}
.xd_c00421{left:474.240000pt;}
.x30_c00421{left:522.880000pt;}
.x31_c00421{left:532.480000pt;}
.x29_c00421{left:551.040000pt;}
.x26_c00421{left:552.320000pt;}
.x27_c00421{left:581.760000pt;}
.x32_c00421{left:590.720000pt;}
.x25_c00421{left:592.640000pt;}
.x2a_c00421{left:611.200000pt;}
.x2c_c00421{left:618.880000pt;}
.x28_c00421{left:620.160000pt;}
.x2b_c00421{left:638.080000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9b667584eeef5851fa298ed6.woff2')format("woff");}.ff1_c00422{font-family:ff1_c00422;line-height:1.109863;font-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_c00422{transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);}
.m2_c00422{transform:matrix(0.224425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224425,0.000000,0.000000,0.250000,0,0);}
.m1b_c00422{transform:matrix(0.232550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232550,0.000000,0.000000,0.250000,0,0);}
.m42_c00422{transform:matrix(0.232725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232725,0.000000,0.000000,0.250000,0,0);}
.m1c_c00422{transform:matrix(0.234475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234475,0.000000,0.000000,0.250000,0,0);}
.m35_c00422{transform:matrix(0.235925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235925,0.000000,0.000000,0.250000,0,0);}
.md_c00422{transform:matrix(0.238075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238075,0.000000,0.000000,0.250000,0,0);}
.m1f_c00422{transform:matrix(0.239225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239225,0.000000,0.000000,0.250000,0,0);}
.m3f_c00422{transform:matrix(0.241175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241175,0.000000,0.000000,0.250000,0,0);}
.m16_c00422{transform:matrix(0.241950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241950,0.000000,0.000000,0.250000,0,0);}
.m40_c00422{transform:matrix(0.243050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243050,0.000000,0.000000,0.250000,0,0);}
.m33_c00422{transform:matrix(0.243300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243300,0.000000,0.000000,0.250000,0,0);}
.m27_c00422{transform:matrix(0.244350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244350,0.000000,0.000000,0.250000,0,0);}
.m21_c00422{transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);}
.m9_c00422{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m37_c00422{transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);}
.m26_c00422{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m7_c00422{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_c00422{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m4_c00422{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00422{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m23_c00422{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00422{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m19_c00422{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m22_c00422{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00422{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00422{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00422{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m28_c00422{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mc_c00422{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m38_c00422{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m3_c00422{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m47_c00422{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m43_c00422{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m15_c00422{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m10_c00422{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m12_c00422{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m34_c00422{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00422{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m41_c00422{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m6_c00422{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m8_c00422{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m49_c00422{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.ma_c00422{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mf_c00422{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m13_c00422{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m20_c00422{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m5_c00422{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);}
.m45_c00422{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);}
.m24_c00422{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);}
.m2a_c00422{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m18_c00422{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);}
.m3c_c00422{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m48_c00422{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m29_c00422{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);}
.m1a_c00422{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00422{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);}
.m0_c00422{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00422{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m1_c00422{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m30_c00422{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);}
.m25_c00422{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00422{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m14_c00422{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m44_c00422{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.me_c00422{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m36_c00422{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m39_c00422{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00422{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m11_c00422{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00422{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m31_c00422{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m46_c00422{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00422{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m32_c00422{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);}
.v1_c00422{vertical-align:-8.640000px;}
.v0_c00422{vertical-align:0.000000px;}
.ls1_c00422{letter-spacing:0.000000px;}
.ls0_c00422{letter-spacing:90.638400px;}
.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;}
}
.ws2_c00422{word-spacing:0.000000px;}
.ws0_c00422{word-spacing:0.054480px;}
.ws1_c00422{word-spacing:51.358496px;}
.fc0_c00422{color:transparent;}
.fsd_c00422{font-size:20.160000px;}
.fsc_c00422{font-size:34.560000px;}
.fsb_c00422{font-size:40.320000px;}
.fs5_c00422{font-size:48.960000px;}
.fs4_c00422{font-size:51.840000px;}
.fs9_c00422{font-size:54.720000px;}
.fs1_c00422{font-size:57.600000px;}
.fs8_c00422{font-size:60.480000px;}
.fsa_c00422{font-size:63.360000px;}
.fs6_c00422{font-size:66.240000px;}
.fs7_c00422{font-size:69.120000px;}
.fs0_c00422{font-size:72.000000px;}
.fs3_c00422{font-size:74.880000px;}
.fs2_c00422{font-size:77.760000px;}
.fsf_c00422{font-size:80.640000px;}
.fs10_c00422{font-size:83.520000px;}
.fse_c00422{font-size:106.560000px;}
.y0_c00422{bottom:0.000000px;}
.y6b_c00422{bottom:74.160000px;}
.y6c_c00422{bottom:74.880000px;}
.y7d_c00422{bottom:77.040000px;}
.y6a_c00422{bottom:78.480000px;}
.y7b_c00422{bottom:79.200000px;}
.y7c_c00422{bottom:79.920000px;}
.y68_c00422{bottom:118.800000px;}
.y69_c00422{bottom:119.520000px;}
.y67_c00422{bottom:121.680000px;}
.y7a_c00422{bottom:122.400000px;}
.y63_c00422{bottom:162.000000px;}
.y66_c00422{bottom:163.440000px;}
.y78_c00422{bottom:164.880000px;}
.y62_c00422{bottom:165.600000px;}
.y65_c00422{bottom:166.320000px;}
.y64_c00422{bottom:167.040000px;}
.y79_c00422{bottom:167.760000px;}
.y5e_c00422{bottom:205.200000px;}
.y61_c00422{bottom:205.920000px;}
.y5d_c00422{bottom:208.080000px;}
.y77_c00422{bottom:208.800000px;}
.y5f_c00422{bottom:209.520000px;}
.y60_c00422{bottom:210.240000px;}
.y5a_c00422{bottom:249.120000px;}
.y5b_c00422{bottom:249.840000px;}
.y59_c00422{bottom:251.280000px;}
.y75_c00422{bottom:252.000000px;}
.y5c_c00422{bottom:252.720000px;}
.y76_c00422{bottom:254.160000px;}
.y58_c00422{bottom:292.320000px;}
.y55_c00422{bottom:293.040000px;}
.y56_c00422{bottom:293.760000px;}
.y74_c00422{bottom:295.200000px;}
.y71_c00422{bottom:295.920000px;}
.y57_c00422{bottom:296.640000px;}
.y73_c00422{bottom:297.360000px;}
.y72_c00422{bottom:298.080000px;}
.y51_c00422{bottom:335.520000px;}
.y52_c00422{bottom:336.240000px;}
.y70_c00422{bottom:337.680000px;}
.y50_c00422{bottom:338.400000px;}
.y53_c00422{bottom:339.120000px;}
.y54_c00422{bottom:339.840000px;}
.y4f_c00422{bottom:378.720000px;}
.y6e_c00422{bottom:380.880000px;}
.y4e_c00422{bottom:381.600000px;}
.y6f_c00422{bottom:383.760000px;}
.y4a_c00422{bottom:421.920000px;}
.y4d_c00422{bottom:422.640000px;}
.y49_c00422{bottom:423.360000px;}
.y4c_c00422{bottom:424.080000px;}
.y4b_c00422{bottom:424.800000px;}
.y6d_c00422{bottom:425.520000px;}
.y48_c00422{bottom:465.120000px;}
.y47_c00422{bottom:465.840000px;}
.y45_c00422{bottom:466.560000px;}
.y46_c00422{bottom:468.720000px;}
.y43_c00422{bottom:469.440000px;}
.y44_c00422{bottom:471.600000px;}
.y3f_c00422{bottom:496.800000px;}
.y40_c00422{bottom:498.960000px;}
.y3e_c00422{bottom:499.680000px;}
.y42_c00422{bottom:500.400000px;}
.y41_c00422{bottom:501.840000px;}
.y35_c00422{bottom:540.720000px;}
.y38_c00422{bottom:541.440000px;}
.y37_c00422{bottom:542.160000px;}
.y34_c00422{bottom:542.880000px;}
.y36_c00422{bottom:545.040000px;}
.y31_c00422{bottom:583.920000px;}
.y33_c00422{bottom:584.640000px;}
.y32_c00422{bottom:586.080000px;}
.y30_c00422{bottom:586.800000px;}
.y3d_c00422{bottom:588.960000px;}
.y2e_c00422{bottom:627.840000px;}
.y2f_c00422{bottom:629.280000px;}
.y2d_c00422{bottom:630.000000px;}
.y3c_c00422{bottom:630.720000px;}
.y2c_c00422{bottom:671.040000px;}
.y3b_c00422{bottom:672.480000px;}
.y39_c00422{bottom:673.200000px;}
.y2b_c00422{bottom:674.640000px;}
.y3a_c00422{bottom:676.080000px;}
.y23_c00422{bottom:714.240000px;}
.y22_c00422{bottom:714.960000px;}
.y28_c00422{bottom:716.400000px;}
.y29_c00422{bottom:717.840000px;}
.y2a_c00422{bottom:720.000000px;}
.y1e_c00422{bottom:757.440000px;}
.y21_c00422{bottom:758.160000px;}
.y1f_c00422{bottom:759.600000px;}
.y1d_c00422{bottom:760.320000px;}
.y20_c00422{bottom:761.760000px;}
.y1b_c00422{bottom:800.640000px;}
.y1a_c00422{bottom:802.800000px;}
.y1c_c00422{bottom:803.520000px;}
.y27_c00422{bottom:806.400000px;}
.y18_c00422{bottom:843.840000px;}
.y19_c00422{bottom:844.560000px;}
.y17_c00422{bottom:846.000000px;}
.y25_c00422{bottom:846.720000px;}
.y26_c00422{bottom:849.600000px;}
.y16_c00422{bottom:887.040000px;}
.y15_c00422{bottom:889.200000px;}
.y24_c00422{bottom:889.920000px;}
.y14_c00422{bottom:929.520000px;}
.y11_c00422{bottom:933.120000px;}
.y12_c00422{bottom:933.840000px;}
.y13_c00422{bottom:934.560000px;}
.yd_c00422{bottom:962.640000px;}
.ye_c00422{bottom:964.080000px;}
.yc_c00422{bottom:964.800000px;}
.y10_c00422{bottom:965.520000px;}
.yf_c00422{bottom:966.240000px;}
.y5_c00422{bottom:1005.120000px;}
.y7_c00422{bottom:1005.840000px;}
.y9_c00422{bottom:1007.280000px;}
.y4_c00422{bottom:1008.000000px;}
.yb_c00422{bottom:1008.720000px;}
.y6_c00422{bottom:1009.440000px;}
.ya_c00422{bottom:1010.160000px;}
.y3_c00422{bottom:1049.040000px;}
.y8_c00422{bottom:1050.480000px;}
.y2_c00422{bottom:1051.200000px;}
.y1_c00422{bottom:1121.040000px;}
.hf_c00422{height:18.142031px;}
.he_c00422{height:31.100625px;}
.hd_c00422{height:36.284062px;}
.hb_c00422{height:44.059219px;}
.h6_c00422{height:46.650937px;}
.ha_c00422{height:49.242656px;}
.h3_c00422{height:51.834375px;}
.h9_c00422{height:54.426094px;}
.hc_c00422{height:57.017812px;}
.h7_c00422{height:59.609531px;}
.h8_c00422{height:62.201250px;}
.h2_c00422{height:64.792969px;}
.h5_c00422{height:67.384687px;}
.h4_c00422{height:69.976406px;}
.h11_c00422{height:72.568125px;}
.h12_c00422{height:75.159844px;}
.h10_c00422{height:95.893594px;}
.h0_c00422{height:1160.640000px;}
.h1_c00422{height:1161.000000px;}
.w1_c00422{width:765.000000px;}
.w0_c00422{width:765.360000px;}
.x0_c00422{left:0.000000px;}
.x2_c00422{left:54.720000px;}
.x16_c00422{left:56.160000px;}
.x28_c00422{left:57.600000px;}
.x3_c00422{left:129.600000px;}
.x20_c00422{left:131.040000px;}
.x23_c00422{left:174.240000px;}
.x12_c00422{left:185.760000px;}
.x27_c00422{left:218.160000px;}
.xc_c00422{left:227.520000px;}
.x17_c00422{left:228.960000px;}
.x4_c00422{left:238.320000px;}
.x5_c00422{left:259.200000px;}
.x15_c00422{left:261.360000px;}
.x13_c00422{left:271.440000px;}
.x29_c00422{left:272.880000px;}
.xd_c00422{left:280.800000px;}
.x1b_c00422{left:282.960000px;}
.x14_c00422{left:304.560000px;}
.x1a_c00422{left:315.360000px;}
.xe_c00422{left:326.160000px;}
.x2a_c00422{left:327.600000px;}
.x25_c00422{left:337.680000px;}
.x6_c00422{left:357.840000px;}
.x24_c00422{left:369.360000px;}
.x26_c00422{left:391.680000px;}
.x21_c00422{left:434.160000px;}
.xf_c00422{left:444.960000px;}
.x22_c00422{left:488.160000px;}
.x10_c00422{left:498.960000px;}
.x7_c00422{left:531.360000px;}
.x1d_c00422{left:532.800000px;}
.x11_c00422{left:563.760000px;}
.x32_c00422{left:565.920000px;}
.x2e_c00422{left:576.720000px;}
.x8_c00422{left:584.640000px;}
.x18_c00422{left:586.080000px;}
.x2b_c00422{left:587.520000px;}
.xa_c00422{left:619.200000px;}
.x31_c00422{left:620.640000px;}
.x2f_c00422{left:630.720000px;}
.x1f_c00422{left:652.320000px;}
.x2d_c00422{left:653.760000px;}
.xb_c00422{left:661.680000px;}
.x1e_c00422{left:663.120000px;}
.x1_c00422{left:668.880000px;}
.x9_c00422{left:695.520000px;}
.x2c_c00422{left:696.960000px;}
.x30_c00422{left:707.760000px;}
.x19_c00422{left:714.960000px;}
.x1c_c00422{left:716.400000px;}
@media print{
.v1_c00422{vertical-align:-7.680000pt;}
.v0_c00422{vertical-align:0.000000pt;}
.ls1_c00422{letter-spacing:0.000000pt;}
.ls0_c00422{letter-spacing:80.567467pt;}
.ws2_c00422{word-spacing:0.000000pt;}
.ws0_c00422{word-spacing:0.048427pt;}
.ws1_c00422{word-spacing:45.651996pt;}
.fsd_c00422{font-size:17.920000pt;}
.fsc_c00422{font-size:30.720000pt;}
.fsb_c00422{font-size:35.840000pt;}
.fs5_c00422{font-size:43.520000pt;}
.fs4_c00422{font-size:46.080000pt;}
.fs9_c00422{font-size:48.640000pt;}
.fs1_c00422{font-size:51.200000pt;}
.fs8_c00422{font-size:53.760000pt;}
.fsa_c00422{font-size:56.320000pt;}
.fs6_c00422{font-size:58.880000pt;}
.fs7_c00422{font-size:61.440000pt;}
.fs0_c00422{font-size:64.000000pt;}
.fs3_c00422{font-size:66.560000pt;}
.fs2_c00422{font-size:69.120000pt;}
.fsf_c00422{font-size:71.680000pt;}
.fs10_c00422{font-size:74.240000pt;}
.fse_c00422{font-size:94.720000pt;}
.y0_c00422{bottom:0.000000pt;}
.y6b_c00422{bottom:65.920000pt;}
.y6c_c00422{bottom:66.560000pt;}
.y7d_c00422{bottom:68.480000pt;}
.y6a_c00422{bottom:69.760000pt;}
.y7b_c00422{bottom:70.400000pt;}
.y7c_c00422{bottom:71.040000pt;}
.y68_c00422{bottom:105.600000pt;}
.y69_c00422{bottom:106.240000pt;}
.y67_c00422{bottom:108.160000pt;}
.y7a_c00422{bottom:108.800000pt;}
.y63_c00422{bottom:144.000000pt;}
.y66_c00422{bottom:145.280000pt;}
.y78_c00422{bottom:146.560000pt;}
.y62_c00422{bottom:147.200000pt;}
.y65_c00422{bottom:147.840000pt;}
.y64_c00422{bottom:148.480000pt;}
.y79_c00422{bottom:149.120000pt;}
.y5e_c00422{bottom:182.400000pt;}
.y61_c00422{bottom:183.040000pt;}
.y5d_c00422{bottom:184.960000pt;}
.y77_c00422{bottom:185.600000pt;}
.y5f_c00422{bottom:186.240000pt;}
.y60_c00422{bottom:186.880000pt;}
.y5a_c00422{bottom:221.440000pt;}
.y5b_c00422{bottom:222.080000pt;}
.y59_c00422{bottom:223.360000pt;}
.y75_c00422{bottom:224.000000pt;}
.y5c_c00422{bottom:224.640000pt;}
.y76_c00422{bottom:225.920000pt;}
.y58_c00422{bottom:259.840000pt;}
.y55_c00422{bottom:260.480000pt;}
.y56_c00422{bottom:261.120000pt;}
.y74_c00422{bottom:262.400000pt;}
.y71_c00422{bottom:263.040000pt;}
.y57_c00422{bottom:263.680000pt;}
.y73_c00422{bottom:264.320000pt;}
.y72_c00422{bottom:264.960000pt;}
.y51_c00422{bottom:298.240000pt;}
.y52_c00422{bottom:298.880000pt;}
.y70_c00422{bottom:300.160000pt;}
.y50_c00422{bottom:300.800000pt;}
.y53_c00422{bottom:301.440000pt;}
.y54_c00422{bottom:302.080000pt;}
.y4f_c00422{bottom:336.640000pt;}
.y6e_c00422{bottom:338.560000pt;}
.y4e_c00422{bottom:339.200000pt;}
.y6f_c00422{bottom:341.120000pt;}
.y4a_c00422{bottom:375.040000pt;}
.y4d_c00422{bottom:375.680000pt;}
.y49_c00422{bottom:376.320000pt;}
.y4c_c00422{bottom:376.960000pt;}
.y4b_c00422{bottom:377.600000pt;}
.y6d_c00422{bottom:378.240000pt;}
.y48_c00422{bottom:413.440000pt;}
.y47_c00422{bottom:414.080000pt;}
.y45_c00422{bottom:414.720000pt;}
.y46_c00422{bottom:416.640000pt;}
.y43_c00422{bottom:417.280000pt;}
.y44_c00422{bottom:419.200000pt;}
.y3f_c00422{bottom:441.600000pt;}
.y40_c00422{bottom:443.520000pt;}
.y3e_c00422{bottom:444.160000pt;}
.y42_c00422{bottom:444.800000pt;}
.y41_c00422{bottom:446.080000pt;}
.y35_c00422{bottom:480.640000pt;}
.y38_c00422{bottom:481.280000pt;}
.y37_c00422{bottom:481.920000pt;}
.y34_c00422{bottom:482.560000pt;}
.y36_c00422{bottom:484.480000pt;}
.y31_c00422{bottom:519.040000pt;}
.y33_c00422{bottom:519.680000pt;}
.y32_c00422{bottom:520.960000pt;}
.y30_c00422{bottom:521.600000pt;}
.y3d_c00422{bottom:523.520000pt;}
.y2e_c00422{bottom:558.080000pt;}
.y2f_c00422{bottom:559.360000pt;}
.y2d_c00422{bottom:560.000000pt;}
.y3c_c00422{bottom:560.640000pt;}
.y2c_c00422{bottom:596.480000pt;}
.y3b_c00422{bottom:597.760000pt;}
.y39_c00422{bottom:598.400000pt;}
.y2b_c00422{bottom:599.680000pt;}
.y3a_c00422{bottom:600.960000pt;}
.y23_c00422{bottom:634.880000pt;}
.y22_c00422{bottom:635.520000pt;}
.y28_c00422{bottom:636.800000pt;}
.y29_c00422{bottom:638.080000pt;}
.y2a_c00422{bottom:640.000000pt;}
.y1e_c00422{bottom:673.280000pt;}
.y21_c00422{bottom:673.920000pt;}
.y1f_c00422{bottom:675.200000pt;}
.y1d_c00422{bottom:675.840000pt;}
.y20_c00422{bottom:677.120000pt;}
.y1b_c00422{bottom:711.680000pt;}
.y1a_c00422{bottom:713.600000pt;}
.y1c_c00422{bottom:714.240000pt;}
.y27_c00422{bottom:716.800000pt;}
.y18_c00422{bottom:750.080000pt;}
.y19_c00422{bottom:750.720000pt;}
.y17_c00422{bottom:752.000000pt;}
.y25_c00422{bottom:752.640000pt;}
.y26_c00422{bottom:755.200000pt;}
.y16_c00422{bottom:788.480000pt;}
.y15_c00422{bottom:790.400000pt;}
.y24_c00422{bottom:791.040000pt;}
.y14_c00422{bottom:826.240000pt;}
.y11_c00422{bottom:829.440000pt;}
.y12_c00422{bottom:830.080000pt;}
.y13_c00422{bottom:830.720000pt;}
.yd_c00422{bottom:855.680000pt;}
.ye_c00422{bottom:856.960000pt;}
.yc_c00422{bottom:857.600000pt;}
.y10_c00422{bottom:858.240000pt;}
.yf_c00422{bottom:858.880000pt;}
.y5_c00422{bottom:893.440000pt;}
.y7_c00422{bottom:894.080000pt;}
.y9_c00422{bottom:895.360000pt;}
.y4_c00422{bottom:896.000000pt;}
.yb_c00422{bottom:896.640000pt;}
.y6_c00422{bottom:897.280000pt;}
.ya_c00422{bottom:897.920000pt;}
.y3_c00422{bottom:932.480000pt;}
.y8_c00422{bottom:933.760000pt;}
.y2_c00422{bottom:934.400000pt;}
.y1_c00422{bottom:996.480000pt;}
.hf_c00422{height:16.126250pt;}
.he_c00422{height:27.645000pt;}
.hd_c00422{height:32.252500pt;}
.hb_c00422{height:39.163750pt;}
.h6_c00422{height:41.467500pt;}
.ha_c00422{height:43.771250pt;}
.h3_c00422{height:46.075000pt;}
.h9_c00422{height:48.378750pt;}
.hc_c00422{height:50.682500pt;}
.h7_c00422{height:52.986250pt;}
.h8_c00422{height:55.290000pt;}
.h2_c00422{height:57.593750pt;}
.h5_c00422{height:59.897500pt;}
.h4_c00422{height:62.201250pt;}
.h11_c00422{height:64.505000pt;}
.h12_c00422{height:66.808750pt;}
.h10_c00422{height:85.238750pt;}
.h0_c00422{height:1031.680000pt;}
.h1_c00422{height:1032.000000pt;}
.w1_c00422{width:680.000000pt;}
.w0_c00422{width:680.320000pt;}
.x0_c00422{left:0.000000pt;}
.x2_c00422{left:48.640000pt;}
.x16_c00422{left:49.920000pt;}
.x28_c00422{left:51.200000pt;}
.x3_c00422{left:115.200000pt;}
.x20_c00422{left:116.480000pt;}
.x23_c00422{left:154.880000pt;}
.x12_c00422{left:165.120000pt;}
.x27_c00422{left:193.920000pt;}
.xc_c00422{left:202.240000pt;}
.x17_c00422{left:203.520000pt;}
.x4_c00422{left:211.840000pt;}
.x5_c00422{left:230.400000pt;}
.x15_c00422{left:232.320000pt;}
.x13_c00422{left:241.280000pt;}
.x29_c00422{left:242.560000pt;}
.xd_c00422{left:249.600000pt;}
.x1b_c00422{left:251.520000pt;}
.x14_c00422{left:270.720000pt;}
.x1a_c00422{left:280.320000pt;}
.xe_c00422{left:289.920000pt;}
.x2a_c00422{left:291.200000pt;}
.x25_c00422{left:300.160000pt;}
.x6_c00422{left:318.080000pt;}
.x24_c00422{left:328.320000pt;}
.x26_c00422{left:348.160000pt;}
.x21_c00422{left:385.920000pt;}
.xf_c00422{left:395.520000pt;}
.x22_c00422{left:433.920000pt;}
.x10_c00422{left:443.520000pt;}
.x7_c00422{left:472.320000pt;}
.x1d_c00422{left:473.600000pt;}
.x11_c00422{left:501.120000pt;}
.x32_c00422{left:503.040000pt;}
.x2e_c00422{left:512.640000pt;}
.x8_c00422{left:519.680000pt;}
.x18_c00422{left:520.960000pt;}
.x2b_c00422{left:522.240000pt;}
.xa_c00422{left:550.400000pt;}
.x31_c00422{left:551.680000pt;}
.x2f_c00422{left:560.640000pt;}
.x1f_c00422{left:579.840000pt;}
.x2d_c00422{left:581.120000pt;}
.xb_c00422{left:588.160000pt;}
.x1e_c00422{left:589.440000pt;}
.x1_c00422{left:594.560000pt;}
.x9_c00422{left:618.240000pt;}
.x2c_c00422{left:619.520000pt;}
.x30_c00422{left:629.120000pt;}
.x19_c00422{left:635.520000pt;}
.x1c_c00422{left:636.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1b1ad6635f1542ed7224b3fc.woff2')format("woff");}.ff1_c00423{font-family:ff1_c00423;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m42_c00423{transform:matrix(0.165075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165075,0.000000,0.000000,0.250000,0,0);}
.m23_c00423{transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);}
.m36_c00423{transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);}
.mc_c00423{transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);}
.m3b_c00423{transform:matrix(0.211200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211200,0.000000,0.000000,0.250000,0,0);}
.m3d_c00423{transform:matrix(0.214475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214475,0.000000,0.000000,0.250000,0,0);}
.m1d_c00423{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);}
.m2a_c00423{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m20_c00423{transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);}
.m44_c00423{transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);}
.m30_c00423{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m1b_c00423{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m3f_c00423{transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);}
.m2b_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);}
.m2e_c00423{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mf_c00423{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);}
.m25_c00423{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m9_c00423{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_c00423{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_c00423{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_c00423{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m11_c00423{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m35_c00423{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m28_c00423{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mb_c00423{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);}
.m2f_c00423{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m8_c00423{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m22_c00423{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m41_c00423{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m10_c00423{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m13_c00423{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m26_c00423{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m46_c00423{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m21_c00423{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m33_c00423{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00423{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m12_c00423{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00423{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m43_c00423{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m40_c00423{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00423{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m18_c00423{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m27_c00423{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00423{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);}
.m29_c00423{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00423{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00423{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m3_c00423{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_c00423{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1_c00423{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00423{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.me_c00423{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m6_c00423{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);}
.m37_c00423{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m4_c00423{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);}
.m32_c00423{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m48_c00423{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);}
.m47_c00423{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m5_c00423{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);}
.m31_c00423{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m38_c00423{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m15_c00423{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m49_c00423{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m19_c00423{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m34_c00423{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);}
.m0_c00423{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.md_c00423{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);}
.m24_c00423{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m2_c00423{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00423{transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);}
.m39_c00423{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);}
.m14_c00423{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m45_c00423{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m16_c00423{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.v1_c00423{vertical-align:-2.880000px;}
.v0_c00423{vertical-align:0.000000px;}
.v2_c00423{vertical-align:8.640000px;}
.ls1_c00423{letter-spacing:0.000000px;}
.ls0_c00423{letter-spacing:83.257680px;}
.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;}
}
.ws2_c00423{word-spacing:0.000000px;}
.ws1_c00423{word-spacing:213.510470px;}
.ws0_c00423{word-spacing:552.896640px;}
.fc0_c00423{color:transparent;}
.fsd_c00423{font-size:14.400000px;}
.fs3_c00423{font-size:20.160000px;}
.fs2_c00423{font-size:25.920000px;}
.fs4_c00423{font-size:31.680000px;}
.fs0_c00423{font-size:34.560000px;}
.fs11_c00423{font-size:37.440000px;}
.fs14_c00423{font-size:40.320000px;}
.fs1_c00423{font-size:46.080000px;}
.fsb_c00423{font-size:48.960000px;}
.fsc_c00423{font-size:51.840000px;}
.fs8_c00423{font-size:54.720000px;}
.fsf_c00423{font-size:57.600000px;}
.fs5_c00423{font-size:60.480000px;}
.fsa_c00423{font-size:63.360000px;}
.fs7_c00423{font-size:66.240000px;}
.fse_c00423{font-size:69.120000px;}
.fs6_c00423{font-size:72.000000px;}
.fs9_c00423{font-size:74.880000px;}
.fs10_c00423{font-size:77.760000px;}
.fs12_c00423{font-size:80.640000px;}
.fs13_c00423{font-size:92.160000px;}
.y0_c00423{bottom:0.000000px;}
.y83_c00423{bottom:59.040000px;}
.y84_c00423{bottom:59.760000px;}
.y86_c00423{bottom:60.480000px;}
.y82_c00423{bottom:61.920000px;}
.y85_c00423{bottom:62.640000px;}
.y87_c00423{bottom:63.360000px;}
.y7f_c00423{bottom:102.240000px;}
.y80_c00423{bottom:103.680000px;}
.y7e_c00423{bottom:104.400000px;}
.y81_c00423{bottom:105.840000px;}
.y79_c00423{bottom:145.440000px;}
.y7a_c00423{bottom:146.160000px;}
.y78_c00423{bottom:146.880000px;}
.y7c_c00423{bottom:147.600000px;}
.y7d_c00423{bottom:148.320000px;}
.y7b_c00423{bottom:149.040000px;}
.y74_c00423{bottom:188.640000px;}
.y76_c00423{bottom:189.360000px;}
.y75_c00423{bottom:190.080000px;}
.y77_c00423{bottom:190.800000px;}
.y73_c00423{bottom:192.240000px;}
.y6e_c00423{bottom:231.840000px;}
.y6f_c00423{bottom:232.560000px;}
.y72_c00423{bottom:233.280000px;}
.y6d_c00423{bottom:234.000000px;}
.y71_c00423{bottom:234.720000px;}
.y70_c00423{bottom:235.440000px;}
.y6a_c00423{bottom:275.040000px;}
.y6b_c00423{bottom:276.480000px;}
.y6c_c00423{bottom:277.920000px;}
.y69_c00423{bottom:278.640000px;}
.y66_c00423{bottom:318.960000px;}
.y67_c00423{bottom:319.680000px;}
.y65_c00423{bottom:321.120000px;}
.y68_c00423{bottom:322.560000px;}
.y60_c00423{bottom:361.440000px;}
.y63_c00423{bottom:362.160000px;}
.y64_c00423{bottom:362.880000px;}
.y61_c00423{bottom:363.600000px;}
.y5f_c00423{bottom:364.320000px;}
.y62_c00423{bottom:365.040000px;}
.y5b_c00423{bottom:396.000000px;}
.y5e_c00423{bottom:398.880000px;}
.y5a_c00423{bottom:404.640000px;}
.y5c_c00423{bottom:405.360000px;}
.y58_c00423{bottom:406.080000px;}
.y5d_c00423{bottom:406.800000px;}
.y59_c00423{bottom:407.520000px;}
.y57_c00423{bottom:408.960000px;}
.y56_c00423{bottom:419.760000px;}
.y51_c00423{bottom:447.840000px;}
.y55_c00423{bottom:448.560000px;}
.y52_c00423{bottom:450.000000px;}
.y50_c00423{bottom:450.720000px;}
.y54_c00423{bottom:451.440000px;}
.y53_c00423{bottom:452.880000px;}
.y4d_c00423{bottom:491.760000px;}
.y4e_c00423{bottom:493.200000px;}
.y4c_c00423{bottom:493.920000px;}
.y4f_c00423{bottom:495.360000px;}
.y47_c00423{bottom:534.960000px;}
.y48_c00423{bottom:536.400000px;}
.y4b_c00423{bottom:537.120000px;}
.y46_c00423{bottom:537.840000px;}
.y49_c00423{bottom:538.560000px;}
.y4a_c00423{bottom:539.280000px;}
.y42_c00423{bottom:578.160000px;}
.y43_c00423{bottom:579.600000px;}
.y41_c00423{bottom:580.320000px;}
.y45_c00423{bottom:581.040000px;}
.y44_c00423{bottom:581.760000px;}
.y3d_c00423{bottom:620.640000px;}
.y3e_c00423{bottom:621.360000px;}
.y40_c00423{bottom:622.080000px;}
.y3f_c00423{bottom:622.800000px;}
.y3c_c00423{bottom:623.520000px;}
.y38_c00423{bottom:663.840000px;}
.y39_c00423{bottom:664.560000px;}
.y3a_c00423{bottom:666.000000px;}
.y37_c00423{bottom:666.720000px;}
.y3b_c00423{bottom:668.160000px;}
.y32_c00423{bottom:707.040000px;}
.y34_c00423{bottom:707.760000px;}
.y35_c00423{bottom:708.480000px;}
.y33_c00423{bottom:709.200000px;}
.y31_c00423{bottom:709.920000px;}
.y36_c00423{bottom:711.360000px;}
.y2e_c00423{bottom:750.240000px;}
.y2d_c00423{bottom:750.960000px;}
.y2f_c00423{bottom:751.680000px;}
.y2c_c00423{bottom:752.400000px;}
.y30_c00423{bottom:754.560000px;}
.y28_c00423{bottom:793.440000px;}
.y29_c00423{bottom:794.880000px;}
.y2a_c00423{bottom:795.600000px;}
.y27_c00423{bottom:796.320000px;}
.y2b_c00423{bottom:798.480000px;}
.y22_c00423{bottom:836.640000px;}
.y23_c00423{bottom:837.360000px;}
.y25_c00423{bottom:838.080000px;}
.y21_c00423{bottom:838.800000px;}
.y24_c00423{bottom:839.520000px;}
.y26_c00423{bottom:840.240000px;}
.y1d_c00423{bottom:879.840000px;}
.y1f_c00423{bottom:880.560000px;}
.y1e_c00423{bottom:881.280000px;}
.y1c_c00423{bottom:882.000000px;}
.y20_c00423{bottom:884.880000px;}
.y18_c00423{bottom:923.040000px;}
.y19_c00423{bottom:925.200000px;}
.y17_c00423{bottom:925.920000px;}
.y1b_c00423{bottom:926.640000px;}
.y1a_c00423{bottom:927.360000px;}
.y16_c00423{bottom:966.240000px;}
.y12_c00423{bottom:966.960000px;}
.y13_c00423{bottom:967.680000px;}
.y14_c00423{bottom:968.400000px;}
.y10_c00423{bottom:969.120000px;}
.y15_c00423{bottom:969.840000px;}
.y11_c00423{bottom:973.440000px;}
.yb_c00423{bottom:1009.440000px;}
.yc_c00423{bottom:1010.160000px;}
.ya_c00423{bottom:1011.600000px;}
.ye_c00423{bottom:1012.320000px;}
.yf_c00423{bottom:1013.040000px;}
.yd_c00423{bottom:1013.760000px;}
.y7_c00423{bottom:1053.360000px;}
.y8_c00423{bottom:1054.800000px;}
.y6_c00423{bottom:1055.520000px;}
.y9_c00423{bottom:1056.960000px;}
.y5_c00423{bottom:1128.240000px;}
.y4_c00423{bottom:1129.680000px;}
.y2_c00423{bottom:1135.440000px;}
.y1_c00423{bottom:1139.040000px;}
.y3_c00423{bottom:1139.760000px;}
.hf_c00423{height:12.958594px;}
.h5_c00423{height:18.142031px;}
.h4_c00423{height:23.325469px;}
.h6_c00423{height:28.508906px;}
.h2_c00423{height:31.100625px;}
.h13_c00423{height:33.692344px;}
.h16_c00423{height:36.284062px;}
.h3_c00423{height:41.467500px;}
.hd_c00423{height:44.059219px;}
.he_c00423{height:46.650937px;}
.ha_c00423{height:49.242656px;}
.h11_c00423{height:51.834375px;}
.h7_c00423{height:54.426094px;}
.hc_c00423{height:57.017812px;}
.h9_c00423{height:59.609531px;}
.h10_c00423{height:62.201250px;}
.h8_c00423{height:64.792969px;}
.hb_c00423{height:67.384687px;}
.h12_c00423{height:69.976406px;}
.h14_c00423{height:72.568125px;}
.h15_c00423{height:82.935000px;}
.h1_c00423{height:1161.750000px;}
.h0_c00423{height:1162.080000px;}
.w1_c00423{width:767.250000px;}
.w0_c00423{width:767.520000px;}
.x0_c00423{left:0.000000px;}
.x6_c00423{left:55.440000px;}
.x20_c00423{left:56.880000px;}
.xf_c00423{left:87.120000px;}
.x10_c00423{left:108.720000px;}
.x7_c00423{left:130.320000px;}
.x1e_c00423{left:226.800000px;}
.x8_c00423{left:228.960000px;}
.x1f_c00423{left:239.760000px;}
.x14_c00423{left:261.360000px;}
.x18_c00423{left:282.960000px;}
.x11_c00423{left:314.640000px;}
.x1b_c00423{left:326.160000px;}
.x15_c00423{left:347.760000px;}
.x12_c00423{left:369.360000px;}
.x13_c00423{left:412.560000px;}
.x1c_c00423{left:434.160000px;}
.x1d_c00423{left:488.880000px;}
.x9_c00423{left:532.080000px;}
.x16_c00423{left:533.520000px;}
.x17_c00423{left:565.200000px;}
.xa_c00423{left:586.080000px;}
.xe_c00423{left:619.920000px;}
.x1a_c00423{left:653.040000px;}
.xb_c00423{left:662.400000px;}
.x19_c00423{left:663.840000px;}
.x4_c00423{left:681.840000px;}
.x1_c00423{left:684.000000px;}
.xc_c00423{left:695.520000px;}
.x2_c00423{left:699.840000px;}
.xd_c00423{left:715.680000px;}
.x5_c00423{left:717.840000px;}
.x3_c00423{left:720.720000px;}
@media print{
.v1_c00423{vertical-align:-2.560000pt;}
.v0_c00423{vertical-align:0.000000pt;}
.v2_c00423{vertical-align:7.680000pt;}
.ls1_c00423{letter-spacing:0.000000pt;}
.ls0_c00423{letter-spacing:74.006827pt;}
.ws2_c00423{word-spacing:0.000000pt;}
.ws1_c00423{word-spacing:189.787085pt;}
.ws0_c00423{word-spacing:491.463680pt;}
.fsd_c00423{font-size:12.800000pt;}
.fs3_c00423{font-size:17.920000pt;}
.fs2_c00423{font-size:23.040000pt;}
.fs4_c00423{font-size:28.160000pt;}
.fs0_c00423{font-size:30.720000pt;}
.fs11_c00423{font-size:33.280000pt;}
.fs14_c00423{font-size:35.840000pt;}
.fs1_c00423{font-size:40.960000pt;}
.fsb_c00423{font-size:43.520000pt;}
.fsc_c00423{font-size:46.080000pt;}
.fs8_c00423{font-size:48.640000pt;}
.fsf_c00423{font-size:51.200000pt;}
.fs5_c00423{font-size:53.760000pt;}
.fsa_c00423{font-size:56.320000pt;}
.fs7_c00423{font-size:58.880000pt;}
.fse_c00423{font-size:61.440000pt;}
.fs6_c00423{font-size:64.000000pt;}
.fs9_c00423{font-size:66.560000pt;}
.fs10_c00423{font-size:69.120000pt;}
.fs12_c00423{font-size:71.680000pt;}
.fs13_c00423{font-size:81.920000pt;}
.y0_c00423{bottom:0.000000pt;}
.y83_c00423{bottom:52.480000pt;}
.y84_c00423{bottom:53.120000pt;}
.y86_c00423{bottom:53.760000pt;}
.y82_c00423{bottom:55.040000pt;}
.y85_c00423{bottom:55.680000pt;}
.y87_c00423{bottom:56.320000pt;}
.y7f_c00423{bottom:90.880000pt;}
.y80_c00423{bottom:92.160000pt;}
.y7e_c00423{bottom:92.800000pt;}
.y81_c00423{bottom:94.080000pt;}
.y79_c00423{bottom:129.280000pt;}
.y7a_c00423{bottom:129.920000pt;}
.y78_c00423{bottom:130.560000pt;}
.y7c_c00423{bottom:131.200000pt;}
.y7d_c00423{bottom:131.840000pt;}
.y7b_c00423{bottom:132.480000pt;}
.y74_c00423{bottom:167.680000pt;}
.y76_c00423{bottom:168.320000pt;}
.y75_c00423{bottom:168.960000pt;}
.y77_c00423{bottom:169.600000pt;}
.y73_c00423{bottom:170.880000pt;}
.y6e_c00423{bottom:206.080000pt;}
.y6f_c00423{bottom:206.720000pt;}
.y72_c00423{bottom:207.360000pt;}
.y6d_c00423{bottom:208.000000pt;}
.y71_c00423{bottom:208.640000pt;}
.y70_c00423{bottom:209.280000pt;}
.y6a_c00423{bottom:244.480000pt;}
.y6b_c00423{bottom:245.760000pt;}
.y6c_c00423{bottom:247.040000pt;}
.y69_c00423{bottom:247.680000pt;}
.y66_c00423{bottom:283.520000pt;}
.y67_c00423{bottom:284.160000pt;}
.y65_c00423{bottom:285.440000pt;}
.y68_c00423{bottom:286.720000pt;}
.y60_c00423{bottom:321.280000pt;}
.y63_c00423{bottom:321.920000pt;}
.y64_c00423{bottom:322.560000pt;}
.y61_c00423{bottom:323.200000pt;}
.y5f_c00423{bottom:323.840000pt;}
.y62_c00423{bottom:324.480000pt;}
.y5b_c00423{bottom:352.000000pt;}
.y5e_c00423{bottom:354.560000pt;}
.y5a_c00423{bottom:359.680000pt;}
.y5c_c00423{bottom:360.320000pt;}
.y58_c00423{bottom:360.960000pt;}
.y5d_c00423{bottom:361.600000pt;}
.y59_c00423{bottom:362.240000pt;}
.y57_c00423{bottom:363.520000pt;}
.y56_c00423{bottom:373.120000pt;}
.y51_c00423{bottom:398.080000pt;}
.y55_c00423{bottom:398.720000pt;}
.y52_c00423{bottom:400.000000pt;}
.y50_c00423{bottom:400.640000pt;}
.y54_c00423{bottom:401.280000pt;}
.y53_c00423{bottom:402.560000pt;}
.y4d_c00423{bottom:437.120000pt;}
.y4e_c00423{bottom:438.400000pt;}
.y4c_c00423{bottom:439.040000pt;}
.y4f_c00423{bottom:440.320000pt;}
.y47_c00423{bottom:475.520000pt;}
.y48_c00423{bottom:476.800000pt;}
.y4b_c00423{bottom:477.440000pt;}
.y46_c00423{bottom:478.080000pt;}
.y49_c00423{bottom:478.720000pt;}
.y4a_c00423{bottom:479.360000pt;}
.y42_c00423{bottom:513.920000pt;}
.y43_c00423{bottom:515.200000pt;}
.y41_c00423{bottom:515.840000pt;}
.y45_c00423{bottom:516.480000pt;}
.y44_c00423{bottom:517.120000pt;}
.y3d_c00423{bottom:551.680000pt;}
.y3e_c00423{bottom:552.320000pt;}
.y40_c00423{bottom:552.960000pt;}
.y3f_c00423{bottom:553.600000pt;}
.y3c_c00423{bottom:554.240000pt;}
.y38_c00423{bottom:590.080000pt;}
.y39_c00423{bottom:590.720000pt;}
.y3a_c00423{bottom:592.000000pt;}
.y37_c00423{bottom:592.640000pt;}
.y3b_c00423{bottom:593.920000pt;}
.y32_c00423{bottom:628.480000pt;}
.y34_c00423{bottom:629.120000pt;}
.y35_c00423{bottom:629.760000pt;}
.y33_c00423{bottom:630.400000pt;}
.y31_c00423{bottom:631.040000pt;}
.y36_c00423{bottom:632.320000pt;}
.y2e_c00423{bottom:666.880000pt;}
.y2d_c00423{bottom:667.520000pt;}
.y2f_c00423{bottom:668.160000pt;}
.y2c_c00423{bottom:668.800000pt;}
.y30_c00423{bottom:670.720000pt;}
.y28_c00423{bottom:705.280000pt;}
.y29_c00423{bottom:706.560000pt;}
.y2a_c00423{bottom:707.200000pt;}
.y27_c00423{bottom:707.840000pt;}
.y2b_c00423{bottom:709.760000pt;}
.y22_c00423{bottom:743.680000pt;}
.y23_c00423{bottom:744.320000pt;}
.y25_c00423{bottom:744.960000pt;}
.y21_c00423{bottom:745.600000pt;}
.y24_c00423{bottom:746.240000pt;}
.y26_c00423{bottom:746.880000pt;}
.y1d_c00423{bottom:782.080000pt;}
.y1f_c00423{bottom:782.720000pt;}
.y1e_c00423{bottom:783.360000pt;}
.y1c_c00423{bottom:784.000000pt;}
.y20_c00423{bottom:786.560000pt;}
.y18_c00423{bottom:820.480000pt;}
.y19_c00423{bottom:822.400000pt;}
.y17_c00423{bottom:823.040000pt;}
.y1b_c00423{bottom:823.680000pt;}
.y1a_c00423{bottom:824.320000pt;}
.y16_c00423{bottom:858.880000pt;}
.y12_c00423{bottom:859.520000pt;}
.y13_c00423{bottom:860.160000pt;}
.y14_c00423{bottom:860.800000pt;}
.y10_c00423{bottom:861.440000pt;}
.y15_c00423{bottom:862.080000pt;}
.y11_c00423{bottom:865.280000pt;}
.yb_c00423{bottom:897.280000pt;}
.yc_c00423{bottom:897.920000pt;}
.ya_c00423{bottom:899.200000pt;}
.ye_c00423{bottom:899.840000pt;}
.yf_c00423{bottom:900.480000pt;}
.yd_c00423{bottom:901.120000pt;}
.y7_c00423{bottom:936.320000pt;}
.y8_c00423{bottom:937.600000pt;}
.y6_c00423{bottom:938.240000pt;}
.y9_c00423{bottom:939.520000pt;}
.y5_c00423{bottom:1002.880000pt;}
.y4_c00423{bottom:1004.160000pt;}
.y2_c00423{bottom:1009.280000pt;}
.y1_c00423{bottom:1012.480000pt;}
.y3_c00423{bottom:1013.120000pt;}
.hf_c00423{height:11.518750pt;}
.h5_c00423{height:16.126250pt;}
.h4_c00423{height:20.733750pt;}
.h6_c00423{height:25.341250pt;}
.h2_c00423{height:27.645000pt;}
.h13_c00423{height:29.948750pt;}
.h16_c00423{height:32.252500pt;}
.h3_c00423{height:36.860000pt;}
.hd_c00423{height:39.163750pt;}
.he_c00423{height:41.467500pt;}
.ha_c00423{height:43.771250pt;}
.h11_c00423{height:46.075000pt;}
.h7_c00423{height:48.378750pt;}
.hc_c00423{height:50.682500pt;}
.h9_c00423{height:52.986250pt;}
.h10_c00423{height:55.290000pt;}
.h8_c00423{height:57.593750pt;}
.hb_c00423{height:59.897500pt;}
.h12_c00423{height:62.201250pt;}
.h14_c00423{height:64.505000pt;}
.h15_c00423{height:73.720000pt;}
.h1_c00423{height:1032.666667pt;}
.h0_c00423{height:1032.960000pt;}
.w1_c00423{width:682.000000pt;}
.w0_c00423{width:682.240000pt;}
.x0_c00423{left:0.000000pt;}
.x6_c00423{left:49.280000pt;}
.x20_c00423{left:50.560000pt;}
.xf_c00423{left:77.440000pt;}
.x10_c00423{left:96.640000pt;}
.x7_c00423{left:115.840000pt;}
.x1e_c00423{left:201.600000pt;}
.x8_c00423{left:203.520000pt;}
.x1f_c00423{left:213.120000pt;}
.x14_c00423{left:232.320000pt;}
.x18_c00423{left:251.520000pt;}
.x11_c00423{left:279.680000pt;}
.x1b_c00423{left:289.920000pt;}
.x15_c00423{left:309.120000pt;}
.x12_c00423{left:328.320000pt;}
.x13_c00423{left:366.720000pt;}
.x1c_c00423{left:385.920000pt;}
.x1d_c00423{left:434.560000pt;}
.x9_c00423{left:472.960000pt;}
.x16_c00423{left:474.240000pt;}
.x17_c00423{left:502.400000pt;}
.xa_c00423{left:520.960000pt;}
.xe_c00423{left:551.040000pt;}
.x1a_c00423{left:580.480000pt;}
.xb_c00423{left:588.800000pt;}
.x19_c00423{left:590.080000pt;}
.x4_c00423{left:606.080000pt;}
.x1_c00423{left:608.000000pt;}
.xc_c00423{left:618.240000pt;}
.x2_c00423{left:622.080000pt;}
.xd_c00423{left:636.160000pt;}
.x5_c00423{left:638.080000pt;}
.x3_c00423{left:640.640000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_fcf2e2a81c8a796d3aac5bd4.woff2')format("woff");}.ff1_c00424{font-family:ff1_c00424;line-height:1.109863;font-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_c00424{transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);}
.m3d_c00424{transform:matrix(0.218725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218725,0.000000,0.000000,0.250000,0,0);}
.m20_c00424{transform:matrix(0.229400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229400,0.000000,0.000000,0.250000,0,0);}
.m1e_c00424{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m3f_c00424{transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);}
.m2a_c00424{transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);}
.m2_c00424{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);}
.m3a_c00424{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);}
.m32_c00424{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m16_c00424{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00424{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);}
.m37_c00424{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);}
.m34_c00424{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m9_c00424{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mb_c00424{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00424{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m6_c00424{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m5_c00424{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m8_c00424{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m14_c00424{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m11_c00424{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mf_c00424{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m10_c00424{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m13_c00424{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00424{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m12_c00424{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m35_c00424{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m19_c00424{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m30_c00424{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m36_c00424{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m39_c00424{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m7_c00424{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m43_c00424{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m18_c00424{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m15_c00424{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00424{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);}
.m2f_c00424{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);}
.m33_c00424{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m17_c00424{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);}
.m3c_c00424{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m29_c00424{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m23_c00424{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1_c00424{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m31_c00424{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m0_c00424{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.md_c00424{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m4_c00424{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);}
.m22_c00424{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);}
.m1d_c00424{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m28_c00424{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);}
.m27_c00424{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m24_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);}
.m2e_c00424{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.mc_c00424{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00424{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00424{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);}
.m3_c00424{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m38_c00424{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m40_c00424{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);}
.m42_c00424{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);}
.m3b_c00424{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m41_c00424{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);}
.m3e_c00424{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m44_c00424{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m25_c00424{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m26_c00424{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00424{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00424{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.ma_c00424{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.m45_c00424{transform:matrix(1.107500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.107500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.107500,0.000000,0.000000,0.250000,0,0);}
.v1_c00424{vertical-align:-11.520000px;}
.v2_c00424{vertical-align:-8.640000px;}
.v4_c00424{vertical-align:-5.760000px;}
.v0_c00424{vertical-align:0.000000px;}
.v3_c00424{vertical-align:8.640000px;}
.ls2_c00424{letter-spacing:0.000000px;}
.ls1_c00424{letter-spacing:88.309680px;}
.ls0_c00424{letter-spacing:90.638400px;}
.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;}
}
.ws2_c00424{word-spacing:0.000000px;}
.ws0_c00424{word-spacing:4.350480px;}
.ws1_c00424{word-spacing:244.322640px;}
.fc0_c00424{color:transparent;}
.fse_c00424{font-size:20.160000px;}
.fsd_c00424{font-size:34.560000px;}
.fsc_c00424{font-size:37.440000px;}
.fs3_c00424{font-size:46.080000px;}
.fs8_c00424{font-size:48.960000px;}
.fs4_c00424{font-size:51.840000px;}
.fsa_c00424{font-size:54.720000px;}
.fs6_c00424{font-size:57.600000px;}
.fs1_c00424{font-size:60.480000px;}
.fsb_c00424{font-size:63.360000px;}
.fs9_c00424{font-size:66.240000px;}
.fs7_c00424{font-size:69.120000px;}
.fs0_c00424{font-size:72.000000px;}
.fs5_c00424{font-size:74.880000px;}
.fs2_c00424{font-size:77.760000px;}
.y0_c00424{bottom:0.000000px;}
.y7e_c00424{bottom:10.800000px;}
.y79_c00424{bottom:45.360000px;}
.y7c_c00424{bottom:46.080000px;}
.y7b_c00424{bottom:46.800000px;}
.y7a_c00424{bottom:47.520000px;}
.y7d_c00424{bottom:48.240000px;}
.y78_c00424{bottom:48.960000px;}
.y74_c00424{bottom:88.560000px;}
.y76_c00424{bottom:90.000000px;}
.y75_c00424{bottom:90.720000px;}
.y77_c00424{bottom:91.440000px;}
.y73_c00424{bottom:92.160000px;}
.y6f_c00424{bottom:131.040000px;}
.y70_c00424{bottom:132.480000px;}
.y71_c00424{bottom:133.920000px;}
.y72_c00424{bottom:134.640000px;}
.y6e_c00424{bottom:135.360000px;}
.y6d_c00424{bottom:175.680000px;}
.y6c_c00424{bottom:179.280000px;}
.y69_c00424{bottom:208.080000px;}
.y6a_c00424{bottom:209.520000px;}
.y68_c00424{bottom:210.240000px;}
.y6b_c00424{bottom:211.680000px;}
.y66_c00424{bottom:252.720000px;}
.y67_c00424{bottom:254.880000px;}
.y61_c00424{bottom:283.680000px;}
.y63_c00424{bottom:284.400000px;}
.y64_c00424{bottom:285.120000px;}
.y60_c00424{bottom:285.840000px;}
.y62_c00424{bottom:286.560000px;}
.y65_c00424{bottom:287.280000px;}
.y5d_c00424{bottom:326.880000px;}
.y5c_c00424{bottom:328.320000px;}
.y5f_c00424{bottom:329.040000px;}
.y5e_c00424{bottom:330.480000px;}
.y57_c00424{bottom:370.080000px;}
.y59_c00424{bottom:370.800000px;}
.y5a_c00424{bottom:371.520000px;}
.y56_c00424{bottom:372.960000px;}
.y58_c00424{bottom:373.680000px;}
.y5b_c00424{bottom:375.120000px;}
.y52_c00424{bottom:413.280000px;}
.y53_c00424{bottom:414.000000px;}
.y54_c00424{bottom:414.720000px;}
.y55_c00424{bottom:415.440000px;}
.y51_c00424{bottom:416.160000px;}
.y4b_c00424{bottom:455.760000px;}
.y4d_c00424{bottom:456.480000px;}
.y4c_c00424{bottom:457.200000px;}
.y4f_c00424{bottom:457.920000px;}
.y4e_c00424{bottom:459.360000px;}
.y4a_c00424{bottom:460.080000px;}
.y50_c00424{bottom:460.800000px;}
.y46_c00424{bottom:498.960000px;}
.y47_c00424{bottom:500.400000px;}
.y49_c00424{bottom:501.120000px;}
.y45_c00424{bottom:501.840000px;}
.y48_c00424{bottom:503.280000px;}
.y40_c00424{bottom:542.160000px;}
.y41_c00424{bottom:543.600000px;}
.y43_c00424{bottom:544.320000px;}
.y3f_c00424{bottom:545.040000px;}
.y42_c00424{bottom:545.760000px;}
.y44_c00424{bottom:546.480000px;}
.y3a_c00424{bottom:585.360000px;}
.y3b_c00424{bottom:586.080000px;}
.y3e_c00424{bottom:586.800000px;}
.y3d_c00424{bottom:587.520000px;}
.y39_c00424{bottom:588.240000px;}
.y3c_c00424{bottom:589.680000px;}
.y35_c00424{bottom:629.280000px;}
.y36_c00424{bottom:630.000000px;}
.y38_c00424{bottom:630.720000px;}
.y34_c00424{bottom:631.440000px;}
.y37_c00424{bottom:632.880000px;}
.y31_c00424{bottom:672.480000px;}
.y32_c00424{bottom:673.920000px;}
.y30_c00424{bottom:674.640000px;}
.y33_c00424{bottom:676.080000px;}
.y2c_c00424{bottom:714.960000px;}
.y2f_c00424{bottom:715.680000px;}
.y2d_c00424{bottom:717.120000px;}
.y2b_c00424{bottom:717.840000px;}
.y2e_c00424{bottom:719.280000px;}
.y28_c00424{bottom:758.880000px;}
.y29_c00424{bottom:760.320000px;}
.y27_c00424{bottom:761.040000px;}
.y2a_c00424{bottom:762.480000px;}
.y22_c00424{bottom:801.360000px;}
.y24_c00424{bottom:802.080000px;}
.y25_c00424{bottom:803.520000px;}
.y21_c00424{bottom:804.240000px;}
.y23_c00424{bottom:805.680000px;}
.y26_c00424{bottom:807.120000px;}
.y1c_c00424{bottom:845.280000px;}
.y1f_c00424{bottom:846.000000px;}
.y1d_c00424{bottom:846.720000px;}
.y20_c00424{bottom:847.440000px;}
.y1b_c00424{bottom:848.160000px;}
.y1e_c00424{bottom:849.600000px;}
.y17_c00424{bottom:889.200000px;}
.y18_c00424{bottom:889.920000px;}
.y16_c00424{bottom:890.640000px;}
.y19_c00424{bottom:892.080000px;}
.y1a_c00424{bottom:892.800000px;}
.y12_c00424{bottom:930.960000px;}
.y15_c00424{bottom:931.680000px;}
.y13_c00424{bottom:933.120000px;}
.y11_c00424{bottom:933.840000px;}
.y14_c00424{bottom:935.280000px;}
.yd_c00424{bottom:974.880000px;}
.ye_c00424{bottom:975.600000px;}
.y10_c00424{bottom:976.320000px;}
.yc_c00424{bottom:977.760000px;}
.yf_c00424{bottom:978.480000px;}
.yb_c00424{bottom:1017.360000px;}
.y8_c00424{bottom:1018.080000px;}
.y9_c00424{bottom:1018.800000px;}
.y7_c00424{bottom:1019.520000px;}
.ya_c00424{bottom:1020.960000px;}
.y3_c00424{bottom:1060.560000px;}
.y6_c00424{bottom:1061.280000px;}
.y4_c00424{bottom:1062.000000px;}
.y2_c00424{bottom:1063.440000px;}
.y5_c00424{bottom:1064.160000px;}
.y1_c00424{bottom:1128.960000px;}
.h10_c00424{height:18.142031px;}
.hf_c00424{height:31.100625px;}
.he_c00424{height:33.692344px;}
.h5_c00424{height:41.467500px;}
.ha_c00424{height:44.059219px;}
.h6_c00424{height:46.650937px;}
.hc_c00424{height:49.242656px;}
.h8_c00424{height:51.834375px;}
.h3_c00424{height:54.426094px;}
.hd_c00424{height:57.017812px;}
.hb_c00424{height:59.609531px;}
.h9_c00424{height:62.201250px;}
.h2_c00424{height:64.792969px;}
.h7_c00424{height:67.384687px;}
.h4_c00424{height:69.976406px;}
.h0_c00424{height:1172.880000px;}
.h1_c00424{height:1173.000000px;}
.w1_c00424{width:771.750000px;}
.w0_c00424{width:771.840000px;}
.x0_c00424{left:0.000000px;}
.x2_c00424{left:62.640000px;}
.x24_c00424{left:64.080000px;}
.x3_c00424{left:137.520000px;}
.x15_c00424{left:138.960000px;}
.x22_c00424{left:181.440000px;}
.x16_c00424{left:191.520000px;}
.x21_c00424{left:223.200000px;}
.x1c_c00424{left:233.280000px;}
.x4_c00424{left:235.440000px;}
.x11_c00424{left:246.240000px;}
.xf_c00424{left:267.840000px;}
.x12_c00424{left:278.640000px;}
.x5_c00424{left:289.440000px;}
.x13_c00424{left:300.960000px;}
.x19_c00424{left:321.840000px;}
.x6_c00424{left:332.640000px;}
.x14_c00424{left:343.440000px;}
.x1d_c00424{left:365.040000px;}
.x1a_c00424{left:375.840000px;}
.x1b_c00424{left:419.040000px;}
.x1f_c00424{left:429.840000px;}
.x17_c00424{left:440.640000px;}
.x1e_c00424{left:462.960000px;}
.x20_c00424{left:473.040000px;}
.x18_c00424{left:495.360000px;}
.x7_c00424{left:540.000000px;}
.x8_c00424{left:593.280000px;}
.xe_c00424{left:626.400000px;}
.xc_c00424{left:649.440000px;}
.x9_c00424{left:659.520000px;}
.xd_c00424{left:669.600000px;}
.x1_c00424{left:691.920000px;}
.xa_c00424{left:702.000000px;}
.x10_c00424{left:703.440000px;}
.xb_c00424{left:722.160000px;}
.x23_c00424{left:723.600000px;}
@media print{
.v1_c00424{vertical-align:-10.240000pt;}
.v2_c00424{vertical-align:-7.680000pt;}
.v4_c00424{vertical-align:-5.120000pt;}
.v0_c00424{vertical-align:0.000000pt;}
.v3_c00424{vertical-align:7.680000pt;}
.ls2_c00424{letter-spacing:0.000000pt;}
.ls1_c00424{letter-spacing:78.497493pt;}
.ls0_c00424{letter-spacing:80.567467pt;}
.ws2_c00424{word-spacing:0.000000pt;}
.ws0_c00424{word-spacing:3.867093pt;}
.ws1_c00424{word-spacing:217.175680pt;}
.fse_c00424{font-size:17.920000pt;}
.fsd_c00424{font-size:30.720000pt;}
.fsc_c00424{font-size:33.280000pt;}
.fs3_c00424{font-size:40.960000pt;}
.fs8_c00424{font-size:43.520000pt;}
.fs4_c00424{font-size:46.080000pt;}
.fsa_c00424{font-size:48.640000pt;}
.fs6_c00424{font-size:51.200000pt;}
.fs1_c00424{font-size:53.760000pt;}
.fsb_c00424{font-size:56.320000pt;}
.fs9_c00424{font-size:58.880000pt;}
.fs7_c00424{font-size:61.440000pt;}
.fs0_c00424{font-size:64.000000pt;}
.fs5_c00424{font-size:66.560000pt;}
.fs2_c00424{font-size:69.120000pt;}
.y0_c00424{bottom:0.000000pt;}
.y7e_c00424{bottom:9.600000pt;}
.y79_c00424{bottom:40.320000pt;}
.y7c_c00424{bottom:40.960000pt;}
.y7b_c00424{bottom:41.600000pt;}
.y7a_c00424{bottom:42.240000pt;}
.y7d_c00424{bottom:42.880000pt;}
.y78_c00424{bottom:43.520000pt;}
.y74_c00424{bottom:78.720000pt;}
.y76_c00424{bottom:80.000000pt;}
.y75_c00424{bottom:80.640000pt;}
.y77_c00424{bottom:81.280000pt;}
.y73_c00424{bottom:81.920000pt;}
.y6f_c00424{bottom:116.480000pt;}
.y70_c00424{bottom:117.760000pt;}
.y71_c00424{bottom:119.040000pt;}
.y72_c00424{bottom:119.680000pt;}
.y6e_c00424{bottom:120.320000pt;}
.y6d_c00424{bottom:156.160000pt;}
.y6c_c00424{bottom:159.360000pt;}
.y69_c00424{bottom:184.960000pt;}
.y6a_c00424{bottom:186.240000pt;}
.y68_c00424{bottom:186.880000pt;}
.y6b_c00424{bottom:188.160000pt;}
.y66_c00424{bottom:224.640000pt;}
.y67_c00424{bottom:226.560000pt;}
.y61_c00424{bottom:252.160000pt;}
.y63_c00424{bottom:252.800000pt;}
.y64_c00424{bottom:253.440000pt;}
.y60_c00424{bottom:254.080000pt;}
.y62_c00424{bottom:254.720000pt;}
.y65_c00424{bottom:255.360000pt;}
.y5d_c00424{bottom:290.560000pt;}
.y5c_c00424{bottom:291.840000pt;}
.y5f_c00424{bottom:292.480000pt;}
.y5e_c00424{bottom:293.760000pt;}
.y57_c00424{bottom:328.960000pt;}
.y59_c00424{bottom:329.600000pt;}
.y5a_c00424{bottom:330.240000pt;}
.y56_c00424{bottom:331.520000pt;}
.y58_c00424{bottom:332.160000pt;}
.y5b_c00424{bottom:333.440000pt;}
.y52_c00424{bottom:367.360000pt;}
.y53_c00424{bottom:368.000000pt;}
.y54_c00424{bottom:368.640000pt;}
.y55_c00424{bottom:369.280000pt;}
.y51_c00424{bottom:369.920000pt;}
.y4b_c00424{bottom:405.120000pt;}
.y4d_c00424{bottom:405.760000pt;}
.y4c_c00424{bottom:406.400000pt;}
.y4f_c00424{bottom:407.040000pt;}
.y4e_c00424{bottom:408.320000pt;}
.y4a_c00424{bottom:408.960000pt;}
.y50_c00424{bottom:409.600000pt;}
.y46_c00424{bottom:443.520000pt;}
.y47_c00424{bottom:444.800000pt;}
.y49_c00424{bottom:445.440000pt;}
.y45_c00424{bottom:446.080000pt;}
.y48_c00424{bottom:447.360000pt;}
.y40_c00424{bottom:481.920000pt;}
.y41_c00424{bottom:483.200000pt;}
.y43_c00424{bottom:483.840000pt;}
.y3f_c00424{bottom:484.480000pt;}
.y42_c00424{bottom:485.120000pt;}
.y44_c00424{bottom:485.760000pt;}
.y3a_c00424{bottom:520.320000pt;}
.y3b_c00424{bottom:520.960000pt;}
.y3e_c00424{bottom:521.600000pt;}
.y3d_c00424{bottom:522.240000pt;}
.y39_c00424{bottom:522.880000pt;}
.y3c_c00424{bottom:524.160000pt;}
.y35_c00424{bottom:559.360000pt;}
.y36_c00424{bottom:560.000000pt;}
.y38_c00424{bottom:560.640000pt;}
.y34_c00424{bottom:561.280000pt;}
.y37_c00424{bottom:562.560000pt;}
.y31_c00424{bottom:597.760000pt;}
.y32_c00424{bottom:599.040000pt;}
.y30_c00424{bottom:599.680000pt;}
.y33_c00424{bottom:600.960000pt;}
.y2c_c00424{bottom:635.520000pt;}
.y2f_c00424{bottom:636.160000pt;}
.y2d_c00424{bottom:637.440000pt;}
.y2b_c00424{bottom:638.080000pt;}
.y2e_c00424{bottom:639.360000pt;}
.y28_c00424{bottom:674.560000pt;}
.y29_c00424{bottom:675.840000pt;}
.y27_c00424{bottom:676.480000pt;}
.y2a_c00424{bottom:677.760000pt;}
.y22_c00424{bottom:712.320000pt;}
.y24_c00424{bottom:712.960000pt;}
.y25_c00424{bottom:714.240000pt;}
.y21_c00424{bottom:714.880000pt;}
.y23_c00424{bottom:716.160000pt;}
.y26_c00424{bottom:717.440000pt;}
.y1c_c00424{bottom:751.360000pt;}
.y1f_c00424{bottom:752.000000pt;}
.y1d_c00424{bottom:752.640000pt;}
.y20_c00424{bottom:753.280000pt;}
.y1b_c00424{bottom:753.920000pt;}
.y1e_c00424{bottom:755.200000pt;}
.y17_c00424{bottom:790.400000pt;}
.y18_c00424{bottom:791.040000pt;}
.y16_c00424{bottom:791.680000pt;}
.y19_c00424{bottom:792.960000pt;}
.y1a_c00424{bottom:793.600000pt;}
.y12_c00424{bottom:827.520000pt;}
.y15_c00424{bottom:828.160000pt;}
.y13_c00424{bottom:829.440000pt;}
.y11_c00424{bottom:830.080000pt;}
.y14_c00424{bottom:831.360000pt;}
.yd_c00424{bottom:866.560000pt;}
.ye_c00424{bottom:867.200000pt;}
.y10_c00424{bottom:867.840000pt;}
.yc_c00424{bottom:869.120000pt;}
.yf_c00424{bottom:869.760000pt;}
.yb_c00424{bottom:904.320000pt;}
.y8_c00424{bottom:904.960000pt;}
.y9_c00424{bottom:905.600000pt;}
.y7_c00424{bottom:906.240000pt;}
.ya_c00424{bottom:907.520000pt;}
.y3_c00424{bottom:942.720000pt;}
.y6_c00424{bottom:943.360000pt;}
.y4_c00424{bottom:944.000000pt;}
.y2_c00424{bottom:945.280000pt;}
.y5_c00424{bottom:945.920000pt;}
.y1_c00424{bottom:1003.520000pt;}
.h10_c00424{height:16.126250pt;}
.hf_c00424{height:27.645000pt;}
.he_c00424{height:29.948750pt;}
.h5_c00424{height:36.860000pt;}
.ha_c00424{height:39.163750pt;}
.h6_c00424{height:41.467500pt;}
.hc_c00424{height:43.771250pt;}
.h8_c00424{height:46.075000pt;}
.h3_c00424{height:48.378750pt;}
.hd_c00424{height:50.682500pt;}
.hb_c00424{height:52.986250pt;}
.h9_c00424{height:55.290000pt;}
.h2_c00424{height:57.593750pt;}
.h7_c00424{height:59.897500pt;}
.h4_c00424{height:62.201250pt;}
.h0_c00424{height:1042.560000pt;}
.h1_c00424{height:1042.666667pt;}
.w1_c00424{width:686.000000pt;}
.w0_c00424{width:686.080000pt;}
.x0_c00424{left:0.000000pt;}
.x2_c00424{left:55.680000pt;}
.x24_c00424{left:56.960000pt;}
.x3_c00424{left:122.240000pt;}
.x15_c00424{left:123.520000pt;}
.x22_c00424{left:161.280000pt;}
.x16_c00424{left:170.240000pt;}
.x21_c00424{left:198.400000pt;}
.x1c_c00424{left:207.360000pt;}
.x4_c00424{left:209.280000pt;}
.x11_c00424{left:218.880000pt;}
.xf_c00424{left:238.080000pt;}
.x12_c00424{left:247.680000pt;}
.x5_c00424{left:257.280000pt;}
.x13_c00424{left:267.520000pt;}
.x19_c00424{left:286.080000pt;}
.x6_c00424{left:295.680000pt;}
.x14_c00424{left:305.280000pt;}
.x1d_c00424{left:324.480000pt;}
.x1a_c00424{left:334.080000pt;}
.x1b_c00424{left:372.480000pt;}
.x1f_c00424{left:382.080000pt;}
.x17_c00424{left:391.680000pt;}
.x1e_c00424{left:411.520000pt;}
.x20_c00424{left:420.480000pt;}
.x18_c00424{left:440.320000pt;}
.x7_c00424{left:480.000000pt;}
.x8_c00424{left:527.360000pt;}
.xe_c00424{left:556.800000pt;}
.xc_c00424{left:577.280000pt;}
.x9_c00424{left:586.240000pt;}
.xd_c00424{left:595.200000pt;}
.x1_c00424{left:615.040000pt;}
.xa_c00424{left:624.000000pt;}
.x10_c00424{left:625.280000pt;}
.xb_c00424{left:641.920000pt;}
.x23_c00424{left:643.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_bf6e8f38b9007c219252e8cc.woff2')format("woff");}.ff1_c00425{font-family:ff1_c00425;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m49_c00425{transform:matrix(0.185175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185175,0.000000,0.000000,0.250000,0,0);}
.m1e_c00425{transform:matrix(0.229150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229150,0.000000,0.000000,0.250000,0,0);}
.m43_c00425{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m22_c00425{transform:matrix(0.238800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238800,0.000000,0.000000,0.250000,0,0);}
.m21_c00425{transform:matrix(0.241675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241675,0.000000,0.000000,0.250000,0,0);}
.m2e_c00425{transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);}
.m18_c00425{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m4b_c00425{transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);}
.m46_c00425{transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);}
.m2a_c00425{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m3a_c00425{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4_c00425{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);}
.m26_c00425{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m9_c00425{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m12_c00425{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);}
.m31_c00425{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m10_c00425{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);}
.m34_c00425{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.mc_c00425{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_c00425{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);}
.m25_c00425{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m3_c00425{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m2_c00425{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00425{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m30_c00425{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m17_c00425{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m41_c00425{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00425{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m37_c00425{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m27_c00425{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m13_c00425{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00425{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m7_c00425{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m29_c00425{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m28_c00425{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m35_c00425{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m40_c00425{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m42_c00425{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m15_c00425{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m14_c00425{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.md_c00425{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);}
.m32_c00425{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00425{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m23_c00425{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00425{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);}
.m3b_c00425{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);}
.m3f_c00425{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m0_c00425{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1_c00425{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.mf_c00425{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);}
.m47_c00425{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);}
.m5_c00425{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);}
.m2f_c00425{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);}
.m36_c00425{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);}
.m39_c00425{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m44_c00425{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);}
.m1d_c00425{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00425{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.me_c00425{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);}
.m24_c00425{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00425{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m48_c00425{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m11_c00425{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00425{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m33_c00425{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_c00425{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.ma_c00425{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);}
.m19_c00425{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00425{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);}
.m16_c00425{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m6_c00425{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00425{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00425{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m8_c00425{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.m38_c00425{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00425{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m45_c00425{transform:matrix(1.065000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.065000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.065000,0.000000,0.000000,0.250000,0,0);}
.v2_c00425{vertical-align:-11.520000px;}
.v0_c00425{vertical-align:0.000000px;}
.v1_c00425{vertical-align:8.640000px;}
.ls1_c00425{letter-spacing:0.000000px;}
.ls0_c00425{letter-spacing:88.309680px;}
.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;}
}
.ws1_c00425{word-spacing:0.000000px;}
.ws0_c00425{word-spacing:900.038640px;}
.fc0_c00425{color:transparent;}
.fsf_c00425{font-size:28.800000px;}
.fsc_c00425{font-size:34.560000px;}
.fs7_c00425{font-size:37.440000px;}
.fsd_c00425{font-size:40.320000px;}
.fsb_c00425{font-size:46.080000px;}
.fs5_c00425{font-size:48.960000px;}
.fs6_c00425{font-size:51.840000px;}
.fs9_c00425{font-size:54.720000px;}
.fs4_c00425{font-size:57.600000px;}
.fs1_c00425{font-size:60.480000px;}
.fs8_c00425{font-size:63.360000px;}
.fsa_c00425{font-size:66.240000px;}
.fs3_c00425{font-size:69.120000px;}
.fs2_c00425{font-size:72.000000px;}
.fs0_c00425{font-size:74.880000px;}
.fse_c00425{font-size:77.760000px;}
.y0_c00425{bottom:0.000000px;}
.y81_c00425{bottom:67.680000px;}
.y82_c00425{bottom:68.400000px;}
.y85_c00425{bottom:69.120000px;}
.y83_c00425{bottom:70.560000px;}
.y80_c00425{bottom:71.280000px;}
.y84_c00425{bottom:72.720000px;}
.y7b_c00425{bottom:110.880000px;}
.y7e_c00425{bottom:111.600000px;}
.y7c_c00425{bottom:112.320000px;}
.y7f_c00425{bottom:113.040000px;}
.y7a_c00425{bottom:113.760000px;}
.y7d_c00425{bottom:114.480000px;}
.y79_c00425{bottom:148.320000px;}
.y72_c00425{bottom:153.360000px;}
.y76_c00425{bottom:154.800000px;}
.y73_c00425{bottom:155.520000px;}
.y78_c00425{bottom:156.240000px;}
.y71_c00425{bottom:156.960000px;}
.y74_c00425{bottom:157.680000px;}
.y75_c00425{bottom:158.400000px;}
.y77_c00425{bottom:159.120000px;}
.y6e_c00425{bottom:197.280000px;}
.y70_c00425{bottom:198.000000px;}
.y6c_c00425{bottom:199.440000px;}
.y6d_c00425{bottom:200.160000px;}
.y6f_c00425{bottom:200.880000px;}
.y69_c00425{bottom:240.480000px;}
.y6b_c00425{bottom:242.640000px;}
.y68_c00425{bottom:243.360000px;}
.y6a_c00425{bottom:244.800000px;}
.y67_c00425{bottom:284.400000px;}
.y66_c00425{bottom:288.000000px;}
.y61_c00425{bottom:316.080000px;}
.y64_c00425{bottom:318.240000px;}
.y60_c00425{bottom:318.960000px;}
.y62_c00425{bottom:319.680000px;}
.y63_c00425{bottom:320.400000px;}
.y65_c00425{bottom:321.840000px;}
.y59_c00425{bottom:360.000000px;}
.y5c_c00425{bottom:360.720000px;}
.y5f_c00425{bottom:361.440000px;}
.y5d_c00425{bottom:362.160000px;}
.y58_c00425{bottom:362.880000px;}
.y5a_c00425{bottom:363.600000px;}
.y5b_c00425{bottom:364.320000px;}
.y5e_c00425{bottom:365.040000px;}
.y55_c00425{bottom:403.920000px;}
.y54_c00425{bottom:405.360000px;}
.y57_c00425{bottom:406.080000px;}
.y56_c00425{bottom:407.520000px;}
.y50_c00425{bottom:447.120000px;}
.y53_c00425{bottom:448.560000px;}
.y51_c00425{bottom:449.280000px;}
.y4f_c00425{bottom:450.000000px;}
.y52_c00425{bottom:452.160000px;}
.y4d_c00425{bottom:491.760000px;}
.y4e_c00425{bottom:493.920000px;}
.y4a_c00425{bottom:522.720000px;}
.y49_c00425{bottom:525.600000px;}
.y4b_c00425{bottom:527.040000px;}
.y4c_c00425{bottom:527.760000px;}
.y44_c00425{bottom:566.640000px;}
.y45_c00425{bottom:567.360000px;}
.y47_c00425{bottom:568.080000px;}
.y43_c00425{bottom:568.800000px;}
.y46_c00425{bottom:569.520000px;}
.y48_c00425{bottom:570.240000px;}
.y40_c00425{bottom:609.840000px;}
.y41_c00425{bottom:611.280000px;}
.y3e_c00425{bottom:612.000000px;}
.y3f_c00425{bottom:613.440000px;}
.y42_c00425{bottom:614.160000px;}
.y39_c00425{bottom:652.320000px;}
.y3b_c00425{bottom:653.040000px;}
.y3c_c00425{bottom:654.480000px;}
.y38_c00425{bottom:655.200000px;}
.y3a_c00425{bottom:656.640000px;}
.y3d_c00425{bottom:658.080000px;}
.y33_c00425{bottom:696.240000px;}
.y32_c00425{bottom:697.680000px;}
.y36_c00425{bottom:698.400000px;}
.y34_c00425{bottom:699.120000px;}
.y37_c00425{bottom:699.840000px;}
.y35_c00425{bottom:700.560000px;}
.y2d_c00425{bottom:738.720000px;}
.y30_c00425{bottom:739.440000px;}
.y31_c00425{bottom:740.160000px;}
.y2c_c00425{bottom:740.880000px;}
.y2e_c00425{bottom:742.320000px;}
.y2f_c00425{bottom:743.040000px;}
.y26_c00425{bottom:781.920000px;}
.y29_c00425{bottom:782.640000px;}
.y25_c00425{bottom:783.360000px;}
.y2a_c00425{bottom:784.080000px;}
.y28_c00425{bottom:785.520000px;}
.y27_c00425{bottom:786.240000px;}
.y2b_c00425{bottom:786.960000px;}
.y20_c00425{bottom:825.120000px;}
.y23_c00425{bottom:825.840000px;}
.y24_c00425{bottom:826.560000px;}
.y1f_c00425{bottom:827.280000px;}
.y21_c00425{bottom:828.720000px;}
.y22_c00425{bottom:829.440000px;}
.y19_c00425{bottom:868.320000px;}
.y1c_c00425{bottom:869.040000px;}
.y1d_c00425{bottom:869.760000px;}
.y18_c00425{bottom:870.480000px;}
.y1a_c00425{bottom:871.920000px;}
.y1b_c00425{bottom:872.640000px;}
.y1e_c00425{bottom:873.360000px;}
.y14_c00425{bottom:912.240000px;}
.y17_c00425{bottom:912.960000px;}
.y13_c00425{bottom:913.680000px;}
.y15_c00425{bottom:915.120000px;}
.y16_c00425{bottom:915.840000px;}
.ye_c00425{bottom:955.440000px;}
.y10_c00425{bottom:956.160000px;}
.yd_c00425{bottom:956.880000px;}
.yf_c00425{bottom:958.320000px;}
.y12_c00425{bottom:959.040000px;}
.y11_c00425{bottom:960.480000px;}
.ya_c00425{bottom:997.920000px;}
.y8_c00425{bottom:998.640000px;}
.y7_c00425{bottom:1000.080000px;}
.yb_c00425{bottom:1000.800000px;}
.y9_c00425{bottom:1002.240000px;}
.yc_c00425{bottom:1002.960000px;}
.y3_c00425{bottom:1042.560000px;}
.y4_c00425{bottom:1043.280000px;}
.y2_c00425{bottom:1044.000000px;}
.y6_c00425{bottom:1045.440000px;}
.y5_c00425{bottom:1046.160000px;}
.y1_c00425{bottom:1131.840000px;}
.h11_c00425{height:25.917187px;}
.he_c00425{height:31.100625px;}
.h9_c00425{height:33.692344px;}
.hf_c00425{height:36.284062px;}
.hd_c00425{height:41.467500px;}
.h7_c00425{height:44.059219px;}
.h8_c00425{height:46.650937px;}
.hb_c00425{height:49.242656px;}
.h6_c00425{height:51.834375px;}
.h3_c00425{height:54.426094px;}
.ha_c00425{height:57.017812px;}
.hc_c00425{height:59.609531px;}
.h5_c00425{height:62.201250px;}
.h4_c00425{height:64.792969px;}
.h2_c00425{height:67.384687px;}
.h10_c00425{height:69.976406px;}
.h1_c00425{height:1151.250000px;}
.h0_c00425{height:1151.280000px;}
.w0_c00425{width:764.640000px;}
.w1_c00425{width:765.000000px;}
.x0_c00425{left:0.000000px;}
.xa_c00425{left:47.520000px;}
.x29_c00425{left:48.960000px;}
.x2_c00425{left:58.320000px;}
.x2c_c00425{left:92.880000px;}
.xb_c00425{left:122.400000px;}
.x11_c00425{left:123.840000px;}
.x27_c00425{left:125.280000px;}
.x3_c00425{left:133.920000px;}
.x23_c00425{left:156.960000px;}
.x2b_c00425{left:166.320000px;}
.x28_c00425{left:198.720000px;}
.xc_c00425{left:219.600000px;}
.xf_c00425{left:221.040000px;}
.x2e_c00425{left:222.480000px;}
.x16_c00425{left:231.120000px;}
.x1f_c00425{left:252.720000px;}
.xd_c00425{left:264.240000px;}
.x22_c00425{left:274.320000px;}
.x4_c00425{left:275.760000px;}
.x17_c00425{left:286.560000px;}
.x20_c00425{left:296.640000px;}
.xe_c00425{left:306.720000px;}
.x10_c00425{left:317.520000px;}
.x12_c00425{left:318.960000px;}
.x18_c00425{left:328.320000px;}
.x2f_c00425{left:340.560000px;}
.x1b_c00425{left:349.920000px;}
.x21_c00425{left:352.080000px;}
.x13_c00425{left:360.720000px;}
.x25_c00425{left:362.880000px;}
.x1c_c00425{left:393.840000px;}
.x34_c00425{left:395.280000px;}
.x14_c00425{left:403.920000px;}
.x19_c00425{left:426.960000px;}
.x33_c00425{left:437.040000px;}
.x30_c00425{left:438.480000px;}
.x1d_c00425{left:448.560000px;}
.x2a_c00425{left:470.880000px;}
.x1a_c00425{left:480.240000px;}
.x31_c00425{left:481.680000px;}
.x5_c00425{left:524.880000px;}
.x2d_c00425{left:526.320000px;}
.x6_c00425{left:578.880000px;}
.x15_c00425{left:612.000000px;}
.x35_c00425{left:613.440000px;}
.x26_c00425{left:645.840000px;}
.x7_c00425{left:654.480000px;}
.x24_c00425{left:655.920000px;}
.x1_c00425{left:669.600000px;}
.x8_c00425{left:687.600000px;}
.x1e_c00425{left:689.040000px;}
.x9_c00425{left:708.480000px;}
.x32_c00425{left:709.920000px;}
@media print{
.v2_c00425{vertical-align:-10.240000pt;}
.v0_c00425{vertical-align:0.000000pt;}
.v1_c00425{vertical-align:7.680000pt;}
.ls1_c00425{letter-spacing:0.000000pt;}
.ls0_c00425{letter-spacing:78.497493pt;}
.ws1_c00425{word-spacing:0.000000pt;}
.ws0_c00425{word-spacing:800.034347pt;}
.fsf_c00425{font-size:25.600000pt;}
.fsc_c00425{font-size:30.720000pt;}
.fs7_c00425{font-size:33.280000pt;}
.fsd_c00425{font-size:35.840000pt;}
.fsb_c00425{font-size:40.960000pt;}
.fs5_c00425{font-size:43.520000pt;}
.fs6_c00425{font-size:46.080000pt;}
.fs9_c00425{font-size:48.640000pt;}
.fs4_c00425{font-size:51.200000pt;}
.fs1_c00425{font-size:53.760000pt;}
.fs8_c00425{font-size:56.320000pt;}
.fsa_c00425{font-size:58.880000pt;}
.fs3_c00425{font-size:61.440000pt;}
.fs2_c00425{font-size:64.000000pt;}
.fs0_c00425{font-size:66.560000pt;}
.fse_c00425{font-size:69.120000pt;}
.y0_c00425{bottom:0.000000pt;}
.y81_c00425{bottom:60.160000pt;}
.y82_c00425{bottom:60.800000pt;}
.y85_c00425{bottom:61.440000pt;}
.y83_c00425{bottom:62.720000pt;}
.y80_c00425{bottom:63.360000pt;}
.y84_c00425{bottom:64.640000pt;}
.y7b_c00425{bottom:98.560000pt;}
.y7e_c00425{bottom:99.200000pt;}
.y7c_c00425{bottom:99.840000pt;}
.y7f_c00425{bottom:100.480000pt;}
.y7a_c00425{bottom:101.120000pt;}
.y7d_c00425{bottom:101.760000pt;}
.y79_c00425{bottom:131.840000pt;}
.y72_c00425{bottom:136.320000pt;}
.y76_c00425{bottom:137.600000pt;}
.y73_c00425{bottom:138.240000pt;}
.y78_c00425{bottom:138.880000pt;}
.y71_c00425{bottom:139.520000pt;}
.y74_c00425{bottom:140.160000pt;}
.y75_c00425{bottom:140.800000pt;}
.y77_c00425{bottom:141.440000pt;}
.y6e_c00425{bottom:175.360000pt;}
.y70_c00425{bottom:176.000000pt;}
.y6c_c00425{bottom:177.280000pt;}
.y6d_c00425{bottom:177.920000pt;}
.y6f_c00425{bottom:178.560000pt;}
.y69_c00425{bottom:213.760000pt;}
.y6b_c00425{bottom:215.680000pt;}
.y68_c00425{bottom:216.320000pt;}
.y6a_c00425{bottom:217.600000pt;}
.y67_c00425{bottom:252.800000pt;}
.y66_c00425{bottom:256.000000pt;}
.y61_c00425{bottom:280.960000pt;}
.y64_c00425{bottom:282.880000pt;}
.y60_c00425{bottom:283.520000pt;}
.y62_c00425{bottom:284.160000pt;}
.y63_c00425{bottom:284.800000pt;}
.y65_c00425{bottom:286.080000pt;}
.y59_c00425{bottom:320.000000pt;}
.y5c_c00425{bottom:320.640000pt;}
.y5f_c00425{bottom:321.280000pt;}
.y5d_c00425{bottom:321.920000pt;}
.y58_c00425{bottom:322.560000pt;}
.y5a_c00425{bottom:323.200000pt;}
.y5b_c00425{bottom:323.840000pt;}
.y5e_c00425{bottom:324.480000pt;}
.y55_c00425{bottom:359.040000pt;}
.y54_c00425{bottom:360.320000pt;}
.y57_c00425{bottom:360.960000pt;}
.y56_c00425{bottom:362.240000pt;}
.y50_c00425{bottom:397.440000pt;}
.y53_c00425{bottom:398.720000pt;}
.y51_c00425{bottom:399.360000pt;}
.y4f_c00425{bottom:400.000000pt;}
.y52_c00425{bottom:401.920000pt;}
.y4d_c00425{bottom:437.120000pt;}
.y4e_c00425{bottom:439.040000pt;}
.y4a_c00425{bottom:464.640000pt;}
.y49_c00425{bottom:467.200000pt;}
.y4b_c00425{bottom:468.480000pt;}
.y4c_c00425{bottom:469.120000pt;}
.y44_c00425{bottom:503.680000pt;}
.y45_c00425{bottom:504.320000pt;}
.y47_c00425{bottom:504.960000pt;}
.y43_c00425{bottom:505.600000pt;}
.y46_c00425{bottom:506.240000pt;}
.y48_c00425{bottom:506.880000pt;}
.y40_c00425{bottom:542.080000pt;}
.y41_c00425{bottom:543.360000pt;}
.y3e_c00425{bottom:544.000000pt;}
.y3f_c00425{bottom:545.280000pt;}
.y42_c00425{bottom:545.920000pt;}
.y39_c00425{bottom:579.840000pt;}
.y3b_c00425{bottom:580.480000pt;}
.y3c_c00425{bottom:581.760000pt;}
.y38_c00425{bottom:582.400000pt;}
.y3a_c00425{bottom:583.680000pt;}
.y3d_c00425{bottom:584.960000pt;}
.y33_c00425{bottom:618.880000pt;}
.y32_c00425{bottom:620.160000pt;}
.y36_c00425{bottom:620.800000pt;}
.y34_c00425{bottom:621.440000pt;}
.y37_c00425{bottom:622.080000pt;}
.y35_c00425{bottom:622.720000pt;}
.y2d_c00425{bottom:656.640000pt;}
.y30_c00425{bottom:657.280000pt;}
.y31_c00425{bottom:657.920000pt;}
.y2c_c00425{bottom:658.560000pt;}
.y2e_c00425{bottom:659.840000pt;}
.y2f_c00425{bottom:660.480000pt;}
.y26_c00425{bottom:695.040000pt;}
.y29_c00425{bottom:695.680000pt;}
.y25_c00425{bottom:696.320000pt;}
.y2a_c00425{bottom:696.960000pt;}
.y28_c00425{bottom:698.240000pt;}
.y27_c00425{bottom:698.880000pt;}
.y2b_c00425{bottom:699.520000pt;}
.y20_c00425{bottom:733.440000pt;}
.y23_c00425{bottom:734.080000pt;}
.y24_c00425{bottom:734.720000pt;}
.y1f_c00425{bottom:735.360000pt;}
.y21_c00425{bottom:736.640000pt;}
.y22_c00425{bottom:737.280000pt;}
.y19_c00425{bottom:771.840000pt;}
.y1c_c00425{bottom:772.480000pt;}
.y1d_c00425{bottom:773.120000pt;}
.y18_c00425{bottom:773.760000pt;}
.y1a_c00425{bottom:775.040000pt;}
.y1b_c00425{bottom:775.680000pt;}
.y1e_c00425{bottom:776.320000pt;}
.y14_c00425{bottom:810.880000pt;}
.y17_c00425{bottom:811.520000pt;}
.y13_c00425{bottom:812.160000pt;}
.y15_c00425{bottom:813.440000pt;}
.y16_c00425{bottom:814.080000pt;}
.ye_c00425{bottom:849.280000pt;}
.y10_c00425{bottom:849.920000pt;}
.yd_c00425{bottom:850.560000pt;}
.yf_c00425{bottom:851.840000pt;}
.y12_c00425{bottom:852.480000pt;}
.y11_c00425{bottom:853.760000pt;}
.ya_c00425{bottom:887.040000pt;}
.y8_c00425{bottom:887.680000pt;}
.y7_c00425{bottom:888.960000pt;}
.yb_c00425{bottom:889.600000pt;}
.y9_c00425{bottom:890.880000pt;}
.yc_c00425{bottom:891.520000pt;}
.y3_c00425{bottom:926.720000pt;}
.y4_c00425{bottom:927.360000pt;}
.y2_c00425{bottom:928.000000pt;}
.y6_c00425{bottom:929.280000pt;}
.y5_c00425{bottom:929.920000pt;}
.y1_c00425{bottom:1006.080000pt;}
.h11_c00425{height:23.037500pt;}
.he_c00425{height:27.645000pt;}
.h9_c00425{height:29.948750pt;}
.hf_c00425{height:32.252500pt;}
.hd_c00425{height:36.860000pt;}
.h7_c00425{height:39.163750pt;}
.h8_c00425{height:41.467500pt;}
.hb_c00425{height:43.771250pt;}
.h6_c00425{height:46.075000pt;}
.h3_c00425{height:48.378750pt;}
.ha_c00425{height:50.682500pt;}
.hc_c00425{height:52.986250pt;}
.h5_c00425{height:55.290000pt;}
.h4_c00425{height:57.593750pt;}
.h2_c00425{height:59.897500pt;}
.h10_c00425{height:62.201250pt;}
.h1_c00425{height:1023.333333pt;}
.h0_c00425{height:1023.360000pt;}
.w0_c00425{width:679.680000pt;}
.w1_c00425{width:680.000000pt;}
.x0_c00425{left:0.000000pt;}
.xa_c00425{left:42.240000pt;}
.x29_c00425{left:43.520000pt;}
.x2_c00425{left:51.840000pt;}
.x2c_c00425{left:82.560000pt;}
.xb_c00425{left:108.800000pt;}
.x11_c00425{left:110.080000pt;}
.x27_c00425{left:111.360000pt;}
.x3_c00425{left:119.040000pt;}
.x23_c00425{left:139.520000pt;}
.x2b_c00425{left:147.840000pt;}
.x28_c00425{left:176.640000pt;}
.xc_c00425{left:195.200000pt;}
.xf_c00425{left:196.480000pt;}
.x2e_c00425{left:197.760000pt;}
.x16_c00425{left:205.440000pt;}
.x1f_c00425{left:224.640000pt;}
.xd_c00425{left:234.880000pt;}
.x22_c00425{left:243.840000pt;}
.x4_c00425{left:245.120000pt;}
.x17_c00425{left:254.720000pt;}
.x20_c00425{left:263.680000pt;}
.xe_c00425{left:272.640000pt;}
.x10_c00425{left:282.240000pt;}
.x12_c00425{left:283.520000pt;}
.x18_c00425{left:291.840000pt;}
.x2f_c00425{left:302.720000pt;}
.x1b_c00425{left:311.040000pt;}
.x21_c00425{left:312.960000pt;}
.x13_c00425{left:320.640000pt;}
.x25_c00425{left:322.560000pt;}
.x1c_c00425{left:350.080000pt;}
.x34_c00425{left:351.360000pt;}
.x14_c00425{left:359.040000pt;}
.x19_c00425{left:379.520000pt;}
.x33_c00425{left:388.480000pt;}
.x30_c00425{left:389.760000pt;}
.x1d_c00425{left:398.720000pt;}
.x2a_c00425{left:418.560000pt;}
.x1a_c00425{left:426.880000pt;}
.x31_c00425{left:428.160000pt;}
.x5_c00425{left:466.560000pt;}
.x2d_c00425{left:467.840000pt;}
.x6_c00425{left:514.560000pt;}
.x15_c00425{left:544.000000pt;}
.x35_c00425{left:545.280000pt;}
.x26_c00425{left:574.080000pt;}
.x7_c00425{left:581.760000pt;}
.x24_c00425{left:583.040000pt;}
.x1_c00425{left:595.200000pt;}
.x8_c00425{left:611.200000pt;}
.x1e_c00425{left:612.480000pt;}
.x9_c00425{left:629.760000pt;}
.x32_c00425{left:631.040000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f8d0b3fb9d8f3889a97c4b05.woff2')format("woff");}.ff1_c00426{font-family:ff1_c00426;line-height:1.109863;font-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_c00426{transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);}
.m4b_c00426{transform:matrix(0.226950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226950,0.000000,0.000000,0.250000,0,0);}
.m36_c00426{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00426{transform:matrix(0.231075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231075,0.000000,0.000000,0.250000,0,0);}
.m44_c00426{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m4a_c00426{transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);}
.m23_c00426{transform:matrix(0.239875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239875,0.000000,0.000000,0.250000,0,0);}
.m3a_c00426{transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);}
.m37_c00426{transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);}
.m41_c00426{transform:matrix(0.245975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245975,0.000000,0.000000,0.250000,0,0);}
.m34_c00426{transform:matrix(0.247200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247200,0.000000,0.000000,0.250000,0,0);}
.m30_c00426{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m27_c00426{transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);}
.m31_c00426{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m1d_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);}
.m5_c00426{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m10_c00426{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m19_c00426{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m14_c00426{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m2_c00426{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00426{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m22_c00426{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00426{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m32_c00426{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);}
.m3d_c00426{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m24_c00426{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m35_c00426{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m9_c00426{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m20_c00426{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m15_c00426{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00426{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00426{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m18_c00426{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00426{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00426{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m8_c00426{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m6_c00426{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m25_c00426{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m7_c00426{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m21_c00426{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m28_c00426{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m45_c00426{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);}
.m26_c00426{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00426{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mf_c00426{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m42_c00426{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_c00426{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m40_c00426{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);}
.m38_c00426{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1_c00426{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);}
.m0_c00426{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m47_c00426{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);}
.m49_c00426{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.mb_c00426{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00426{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m17_c00426{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);}
.m2d_c00426{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);}
.m12_c00426{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);}
.m29_c00426{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m43_c00426{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.ma_c00426{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m39_c00426{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m33_c00426{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m48_c00426{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);}
.mc_c00426{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.md_c00426{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);}
.m11_c00426{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00426{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);}
.m4d_c00426{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00426{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00426{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);}
.m46_c00426{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m3_c00426{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00426{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m4_c00426{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m16_c00426{transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00426{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00426{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.v1_c00426{vertical-align:-11.520000px;}
.v2_c00426{vertical-align:-2.880000px;}
.v0_c00426{vertical-align:0.000000px;}
.ls2_c00426{letter-spacing:0.000000px;}
.ls0_c00426{letter-spacing:83.257680px;}
.ls1_c00426{letter-spacing:90.638400px;}
.sc__c00426{text-shadow:none;}
.sc0_c00426{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00426{-webkit-text-stroke:0px transparent;}
.sc0_c00426{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00426{word-spacing:0.000000px;}
.fc0_c00426{color:transparent;}
.fs4_c00426{font-size:34.560000px;}
.fs9_c00426{font-size:37.440000px;}
.fs10_c00426{font-size:40.320000px;}
.fsf_c00426{font-size:43.200000px;}
.fs3_c00426{font-size:48.960000px;}
.fsa_c00426{font-size:51.840000px;}
.fs7_c00426{font-size:54.720000px;}
.fs6_c00426{font-size:57.600000px;}
.fs8_c00426{font-size:60.480000px;}
.fs1_c00426{font-size:63.360000px;}
.fsd_c00426{font-size:66.240000px;}
.fsc_c00426{font-size:69.120000px;}
.fs2_c00426{font-size:72.000000px;}
.fs0_c00426{font-size:74.880000px;}
.fs5_c00426{font-size:77.760000px;}
.fsb_c00426{font-size:97.920000px;}
.fse_c00426{font-size:103.680000px;}
.fs11_c00426{font-size:109.440000px;}
.fs12_c00426{font-size:112.320000px;}
.y0_c00426{bottom:0.000000px;}
.y7b_c00426{bottom:78.480000px;}
.y7c_c00426{bottom:79.920000px;}
.y7f_c00426{bottom:81.360000px;}
.y79_c00426{bottom:87.120000px;}
.y78_c00426{bottom:89.280000px;}
.y7d_c00426{bottom:90.000000px;}
.y7e_c00426{bottom:90.720000px;}
.y7a_c00426{bottom:91.440000px;}
.y72_c00426{bottom:131.040000px;}
.y75_c00426{bottom:132.480000px;}
.y76_c00426{bottom:133.200000px;}
.y71_c00426{bottom:133.920000px;}
.y73_c00426{bottom:134.640000px;}
.y74_c00426{bottom:135.360000px;}
.y77_c00426{bottom:136.080000px;}
.y6c_c00426{bottom:174.960000px;}
.y6e_c00426{bottom:175.680000px;}
.y6b_c00426{bottom:176.400000px;}
.y6f_c00426{bottom:177.120000px;}
.y6d_c00426{bottom:178.560000px;}
.y70_c00426{bottom:180.000000px;}
.y66_c00426{bottom:218.160000px;}
.y68_c00426{bottom:218.880000px;}
.y65_c00426{bottom:219.600000px;}
.y69_c00426{bottom:220.320000px;}
.y6a_c00426{bottom:221.040000px;}
.y67_c00426{bottom:221.760000px;}
.y60_c00426{bottom:260.640000px;}
.y62_c00426{bottom:262.080000px;}
.y64_c00426{bottom:262.800000px;}
.y5f_c00426{bottom:263.520000px;}
.y63_c00426{bottom:264.240000px;}
.y61_c00426{bottom:264.960000px;}
.y5c_c00426{bottom:304.560000px;}
.y5e_c00426{bottom:306.000000px;}
.y5d_c00426{bottom:306.720000px;}
.y5b_c00426{bottom:307.440000px;}
.y54_c00426{bottom:347.760000px;}
.y57_c00426{bottom:348.480000px;}
.y5a_c00426{bottom:349.200000px;}
.y53_c00426{bottom:349.920000px;}
.y58_c00426{bottom:350.640000px;}
.y56_c00426{bottom:351.360000px;}
.y55_c00426{bottom:352.080000px;}
.y59_c00426{bottom:352.800000px;}
.y4d_c00426{bottom:390.960000px;}
.y4f_c00426{bottom:391.680000px;}
.y4c_c00426{bottom:392.400000px;}
.y51_c00426{bottom:393.120000px;}
.y50_c00426{bottom:393.840000px;}
.y4e_c00426{bottom:394.560000px;}
.y52_c00426{bottom:395.280000px;}
.y48_c00426{bottom:433.440000px;}
.y46_c00426{bottom:434.160000px;}
.y45_c00426{bottom:436.320000px;}
.y4a_c00426{bottom:437.040000px;}
.y47_c00426{bottom:437.760000px;}
.y49_c00426{bottom:438.480000px;}
.y4b_c00426{bottom:439.200000px;}
.y40_c00426{bottom:476.640000px;}
.y42_c00426{bottom:477.360000px;}
.y43_c00426{bottom:478.800000px;}
.y3f_c00426{bottom:479.520000px;}
.y41_c00426{bottom:480.960000px;}
.y44_c00426{bottom:482.400000px;}
.y3c_c00426{bottom:520.560000px;}
.y3b_c00426{bottom:522.720000px;}
.y3d_c00426{bottom:524.160000px;}
.y3e_c00426{bottom:524.880000px;}
.y37_c00426{bottom:563.760000px;}
.y3a_c00426{bottom:564.480000px;}
.y39_c00426{bottom:565.200000px;}
.y36_c00426{bottom:565.920000px;}
.y38_c00426{bottom:567.360000px;}
.y32_c00426{bottom:606.960000px;}
.y33_c00426{bottom:607.680000px;}
.y31_c00426{bottom:608.400000px;}
.y35_c00426{bottom:609.120000px;}
.y34_c00426{bottom:610.560000px;}
.y2e_c00426{bottom:650.880000px;}
.y2d_c00426{bottom:652.320000px;}
.y30_c00426{bottom:653.760000px;}
.y2f_c00426{bottom:654.480000px;}
.y2b_c00426{bottom:694.080000px;}
.y2a_c00426{bottom:695.520000px;}
.y2c_c00426{bottom:697.680000px;}
.y26_c00426{bottom:737.280000px;}
.y28_c00426{bottom:738.720000px;}
.y25_c00426{bottom:739.440000px;}
.y27_c00426{bottom:740.880000px;}
.y29_c00426{bottom:741.600000px;}
.y21_c00426{bottom:779.760000px;}
.y22_c00426{bottom:781.200000px;}
.y20_c00426{bottom:782.640000px;}
.y23_c00426{bottom:784.080000px;}
.y24_c00426{bottom:784.800000px;}
.y1c_c00426{bottom:823.680000px;}
.y1f_c00426{bottom:825.120000px;}
.y1e_c00426{bottom:825.840000px;}
.y1b_c00426{bottom:826.560000px;}
.y1d_c00426{bottom:827.280000px;}
.y17_c00426{bottom:867.600000px;}
.y18_c00426{bottom:868.320000px;}
.y16_c00426{bottom:869.040000px;}
.y1a_c00426{bottom:870.480000px;}
.y19_c00426{bottom:871.920000px;}
.y13_c00426{bottom:910.800000px;}
.y14_c00426{bottom:911.520000px;}
.y12_c00426{bottom:912.240000px;}
.y15_c00426{bottom:912.960000px;}
.y11_c00426{bottom:945.360000px;}
.yf_c00426{bottom:946.800000px;}
.yc_c00426{bottom:953.280000px;}
.yb_c00426{bottom:954.720000px;}
.y10_c00426{bottom:955.440000px;}
.ye_c00426{bottom:956.160000px;}
.yd_c00426{bottom:956.880000px;}
.y8_c00426{bottom:996.480000px;}
.y7_c00426{bottom:997.920000px;}
.y9_c00426{bottom:999.360000px;}
.ya_c00426{bottom:1000.080000px;}
.y5_c00426{bottom:1038.960000px;}
.y3_c00426{bottom:1039.680000px;}
.y2_c00426{bottom:1040.400000px;}
.y6_c00426{bottom:1041.120000px;}
.y4_c00426{bottom:1043.280000px;}
.y1_c00426{bottom:1108.800000px;}
.h6_c00426{height:31.100625px;}
.hb_c00426{height:33.692344px;}
.h12_c00426{height:36.284062px;}
.h11_c00426{height:38.875781px;}
.h5_c00426{height:44.059219px;}
.hc_c00426{height:46.650937px;}
.h9_c00426{height:49.242656px;}
.h8_c00426{height:51.834375px;}
.ha_c00426{height:54.426094px;}
.h3_c00426{height:57.017812px;}
.hf_c00426{height:59.609531px;}
.he_c00426{height:62.201250px;}
.h4_c00426{height:64.792969px;}
.h2_c00426{height:67.384687px;}
.h7_c00426{height:69.976406px;}
.hd_c00426{height:88.118437px;}
.h10_c00426{height:93.301875px;}
.h13_c00426{height:98.485312px;}
.h14_c00426{height:101.077031px;}
.h1_c00426{height:1151.250000px;}
.h0_c00426{height:1151.280000px;}
.w0_c00426{width:764.640000px;}
.w1_c00426{width:765.000000px;}
.x0_c00426{left:0.000000px;}
.x2_c00426{left:47.520000px;}
.x3_c00426{left:123.120000px;}
.x11_c00426{left:218.880000px;}
.x4_c00426{left:220.320000px;}
.x12_c00426{left:263.520000px;}
.x5_c00426{left:274.320000px;}
.x17_c00426{left:306.000000px;}
.x18_c00426{left:307.440000px;}
.x6_c00426{left:317.520000px;}
.x13_c00426{left:359.280000px;}
.x19_c00426{left:403.920000px;}
.xc_c00426{left:413.280000px;}
.x1a_c00426{left:436.320000px;}
.x10_c00426{left:447.120000px;}
.xd_c00426{left:457.920000px;}
.x7_c00426{left:522.720000px;}
.xe_c00426{left:524.160000px;}
.xf_c00426{left:576.720000px;}
.x16_c00426{left:578.160000px;}
.x8_c00426{left:611.280000px;}
.x14_c00426{left:644.400000px;}
.x9_c00426{left:653.760000px;}
.x1_c00426{left:666.720000px;}
.xa_c00426{left:686.880000px;}
.x15_c00426{left:688.320000px;}
.xb_c00426{left:707.760000px;}
@media print{
.v1_c00426{vertical-align:-10.240000pt;}
.v2_c00426{vertical-align:-2.560000pt;}
.v0_c00426{vertical-align:0.000000pt;}
.ls2_c00426{letter-spacing:0.000000pt;}
.ls0_c00426{letter-spacing:74.006827pt;}
.ls1_c00426{letter-spacing:80.567467pt;}
.ws0_c00426{word-spacing:0.000000pt;}
.fs4_c00426{font-size:30.720000pt;}
.fs9_c00426{font-size:33.280000pt;}
.fs10_c00426{font-size:35.840000pt;}
.fsf_c00426{font-size:38.400000pt;}
.fs3_c00426{font-size:43.520000pt;}
.fsa_c00426{font-size:46.080000pt;}
.fs7_c00426{font-size:48.640000pt;}
.fs6_c00426{font-size:51.200000pt;}
.fs8_c00426{font-size:53.760000pt;}
.fs1_c00426{font-size:56.320000pt;}
.fsd_c00426{font-size:58.880000pt;}
.fsc_c00426{font-size:61.440000pt;}
.fs2_c00426{font-size:64.000000pt;}
.fs0_c00426{font-size:66.560000pt;}
.fs5_c00426{font-size:69.120000pt;}
.fsb_c00426{font-size:87.040000pt;}
.fse_c00426{font-size:92.160000pt;}
.fs11_c00426{font-size:97.280000pt;}
.fs12_c00426{font-size:99.840000pt;}
.y0_c00426{bottom:0.000000pt;}
.y7b_c00426{bottom:69.760000pt;}
.y7c_c00426{bottom:71.040000pt;}
.y7f_c00426{bottom:72.320000pt;}
.y79_c00426{bottom:77.440000pt;}
.y78_c00426{bottom:79.360000pt;}
.y7d_c00426{bottom:80.000000pt;}
.y7e_c00426{bottom:80.640000pt;}
.y7a_c00426{bottom:81.280000pt;}
.y72_c00426{bottom:116.480000pt;}
.y75_c00426{bottom:117.760000pt;}
.y76_c00426{bottom:118.400000pt;}
.y71_c00426{bottom:119.040000pt;}
.y73_c00426{bottom:119.680000pt;}
.y74_c00426{bottom:120.320000pt;}
.y77_c00426{bottom:120.960000pt;}
.y6c_c00426{bottom:155.520000pt;}
.y6e_c00426{bottom:156.160000pt;}
.y6b_c00426{bottom:156.800000pt;}
.y6f_c00426{bottom:157.440000pt;}
.y6d_c00426{bottom:158.720000pt;}
.y70_c00426{bottom:160.000000pt;}
.y66_c00426{bottom:193.920000pt;}
.y68_c00426{bottom:194.560000pt;}
.y65_c00426{bottom:195.200000pt;}
.y69_c00426{bottom:195.840000pt;}
.y6a_c00426{bottom:196.480000pt;}
.y67_c00426{bottom:197.120000pt;}
.y60_c00426{bottom:231.680000pt;}
.y62_c00426{bottom:232.960000pt;}
.y64_c00426{bottom:233.600000pt;}
.y5f_c00426{bottom:234.240000pt;}
.y63_c00426{bottom:234.880000pt;}
.y61_c00426{bottom:235.520000pt;}
.y5c_c00426{bottom:270.720000pt;}
.y5e_c00426{bottom:272.000000pt;}
.y5d_c00426{bottom:272.640000pt;}
.y5b_c00426{bottom:273.280000pt;}
.y54_c00426{bottom:309.120000pt;}
.y57_c00426{bottom:309.760000pt;}
.y5a_c00426{bottom:310.400000pt;}
.y53_c00426{bottom:311.040000pt;}
.y58_c00426{bottom:311.680000pt;}
.y56_c00426{bottom:312.320000pt;}
.y55_c00426{bottom:312.960000pt;}
.y59_c00426{bottom:313.600000pt;}
.y4d_c00426{bottom:347.520000pt;}
.y4f_c00426{bottom:348.160000pt;}
.y4c_c00426{bottom:348.800000pt;}
.y51_c00426{bottom:349.440000pt;}
.y50_c00426{bottom:350.080000pt;}
.y4e_c00426{bottom:350.720000pt;}
.y52_c00426{bottom:351.360000pt;}
.y48_c00426{bottom:385.280000pt;}
.y46_c00426{bottom:385.920000pt;}
.y45_c00426{bottom:387.840000pt;}
.y4a_c00426{bottom:388.480000pt;}
.y47_c00426{bottom:389.120000pt;}
.y49_c00426{bottom:389.760000pt;}
.y4b_c00426{bottom:390.400000pt;}
.y40_c00426{bottom:423.680000pt;}
.y42_c00426{bottom:424.320000pt;}
.y43_c00426{bottom:425.600000pt;}
.y3f_c00426{bottom:426.240000pt;}
.y41_c00426{bottom:427.520000pt;}
.y44_c00426{bottom:428.800000pt;}
.y3c_c00426{bottom:462.720000pt;}
.y3b_c00426{bottom:464.640000pt;}
.y3d_c00426{bottom:465.920000pt;}
.y3e_c00426{bottom:466.560000pt;}
.y37_c00426{bottom:501.120000pt;}
.y3a_c00426{bottom:501.760000pt;}
.y39_c00426{bottom:502.400000pt;}
.y36_c00426{bottom:503.040000pt;}
.y38_c00426{bottom:504.320000pt;}
.y32_c00426{bottom:539.520000pt;}
.y33_c00426{bottom:540.160000pt;}
.y31_c00426{bottom:540.800000pt;}
.y35_c00426{bottom:541.440000pt;}
.y34_c00426{bottom:542.720000pt;}
.y2e_c00426{bottom:578.560000pt;}
.y2d_c00426{bottom:579.840000pt;}
.y30_c00426{bottom:581.120000pt;}
.y2f_c00426{bottom:581.760000pt;}
.y2b_c00426{bottom:616.960000pt;}
.y2a_c00426{bottom:618.240000pt;}
.y2c_c00426{bottom:620.160000pt;}
.y26_c00426{bottom:655.360000pt;}
.y28_c00426{bottom:656.640000pt;}
.y25_c00426{bottom:657.280000pt;}
.y27_c00426{bottom:658.560000pt;}
.y29_c00426{bottom:659.200000pt;}
.y21_c00426{bottom:693.120000pt;}
.y22_c00426{bottom:694.400000pt;}
.y20_c00426{bottom:695.680000pt;}
.y23_c00426{bottom:696.960000pt;}
.y24_c00426{bottom:697.600000pt;}
.y1c_c00426{bottom:732.160000pt;}
.y1f_c00426{bottom:733.440000pt;}
.y1e_c00426{bottom:734.080000pt;}
.y1b_c00426{bottom:734.720000pt;}
.y1d_c00426{bottom:735.360000pt;}
.y17_c00426{bottom:771.200000pt;}
.y18_c00426{bottom:771.840000pt;}
.y16_c00426{bottom:772.480000pt;}
.y1a_c00426{bottom:773.760000pt;}
.y19_c00426{bottom:775.040000pt;}
.y13_c00426{bottom:809.600000pt;}
.y14_c00426{bottom:810.240000pt;}
.y12_c00426{bottom:810.880000pt;}
.y15_c00426{bottom:811.520000pt;}
.y11_c00426{bottom:840.320000pt;}
.yf_c00426{bottom:841.600000pt;}
.yc_c00426{bottom:847.360000pt;}
.yb_c00426{bottom:848.640000pt;}
.y10_c00426{bottom:849.280000pt;}
.ye_c00426{bottom:849.920000pt;}
.yd_c00426{bottom:850.560000pt;}
.y8_c00426{bottom:885.760000pt;}
.y7_c00426{bottom:887.040000pt;}
.y9_c00426{bottom:888.320000pt;}
.ya_c00426{bottom:888.960000pt;}
.y5_c00426{bottom:923.520000pt;}
.y3_c00426{bottom:924.160000pt;}
.y2_c00426{bottom:924.800000pt;}
.y6_c00426{bottom:925.440000pt;}
.y4_c00426{bottom:927.360000pt;}
.y1_c00426{bottom:985.600000pt;}
.h6_c00426{height:27.645000pt;}
.hb_c00426{height:29.948750pt;}
.h12_c00426{height:32.252500pt;}
.h11_c00426{height:34.556250pt;}
.h5_c00426{height:39.163750pt;}
.hc_c00426{height:41.467500pt;}
.h9_c00426{height:43.771250pt;}
.h8_c00426{height:46.075000pt;}
.ha_c00426{height:48.378750pt;}
.h3_c00426{height:50.682500pt;}
.hf_c00426{height:52.986250pt;}
.he_c00426{height:55.290000pt;}
.h4_c00426{height:57.593750pt;}
.h2_c00426{height:59.897500pt;}
.h7_c00426{height:62.201250pt;}
.hd_c00426{height:78.327500pt;}
.h10_c00426{height:82.935000pt;}
.h13_c00426{height:87.542500pt;}
.h14_c00426{height:89.846250pt;}
.h1_c00426{height:1023.333333pt;}
.h0_c00426{height:1023.360000pt;}
.w0_c00426{width:679.680000pt;}
.w1_c00426{width:680.000000pt;}
.x0_c00426{left:0.000000pt;}
.x2_c00426{left:42.240000pt;}
.x3_c00426{left:109.440000pt;}
.x11_c00426{left:194.560000pt;}
.x4_c00426{left:195.840000pt;}
.x12_c00426{left:234.240000pt;}
.x5_c00426{left:243.840000pt;}
.x17_c00426{left:272.000000pt;}
.x18_c00426{left:273.280000pt;}
.x6_c00426{left:282.240000pt;}
.x13_c00426{left:319.360000pt;}
.x19_c00426{left:359.040000pt;}
.xc_c00426{left:367.360000pt;}
.x1a_c00426{left:387.840000pt;}
.x10_c00426{left:397.440000pt;}
.xd_c00426{left:407.040000pt;}
.x7_c00426{left:464.640000pt;}
.xe_c00426{left:465.920000pt;}
.xf_c00426{left:512.640000pt;}
.x16_c00426{left:513.920000pt;}
.x8_c00426{left:543.360000pt;}
.x14_c00426{left:572.800000pt;}
.x9_c00426{left:581.120000pt;}
.x1_c00426{left:592.640000pt;}
.xa_c00426{left:610.560000pt;}
.x15_c00426{left:611.840000pt;}
.xb_c00426{left:629.120000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8c065353d703703b39dcbc72.woff2')format("woff");}.ff1_c00427{font-family:ff1_c00427;line-height:1.109863;font-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_c00427{transform:matrix(0.201050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201050,0.000000,0.000000,0.250000,0,0);}
.m42_c00427{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m43_c00427{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00427{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m48_c00427{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m6_c00427{transform:matrix(0.241200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241200,0.000000,0.000000,0.250000,0,0);}
.m4a_c00427{transform:matrix(0.241350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241350,0.000000,0.000000,0.250000,0,0);}
.m32_c00427{transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);}
.m37_c00427{transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);}
.m3f_c00427{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m30_c00427{transform:matrix(0.245450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245450,0.000000,0.000000,0.250000,0,0);}
.m23_c00427{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m45_c00427{transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);}
.m2_c00427{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.ma_c00427{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m14_c00427{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);}
.m31_c00427{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_c00427{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);}
.m25_c00427{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m11_c00427{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);}
.m36_c00427{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m22_c00427{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);}
.m35_c00427{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m7_c00427{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m44_c00427{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m8_c00427{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m26_c00427{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m5_c00427{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m49_c00427{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m41_c00427{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00427{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m10_c00427{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00427{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00427{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00427{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m38_c00427{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00427{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m28_c00427{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m46_c00427{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00427{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m17_c00427{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mf_c00427{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00427{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m16_c00427{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.me_c00427{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m29_c00427{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m9_c00427{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.mc_c00427{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m0_c00427{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m40_c00427{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m12_c00427{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1_c00427{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);}
.m39_c00427{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);}
.m1f_c00427{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00427{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);}
.m2a_c00427{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);}
.m3b_c00427{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00427{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m34_c00427{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00427{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m33_c00427{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m15_c00427{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00427{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00427{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);}
.m4_c00427{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00427{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);}
.m1c_c00427{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m24_c00427{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_c00427{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m21_c00427{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);}
.mb_c00427{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m18_c00427{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m3_c00427{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.md_c00427{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m47_c00427{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m27_c00427{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m13_c00427{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.v2_c00427{vertical-align:-11.520000px;}
.v4_c00427{vertical-align:-8.640000px;}
.v1_c00427{vertical-align:-2.880000px;}
.v0_c00427{vertical-align:0.000000px;}
.v3_c00427{vertical-align:8.640000px;}
.v5_c00427{vertical-align:11.520000px;}
.ls2_c00427{letter-spacing:0.000000px;}
.ls0_c00427{letter-spacing:85.783680px;}
.ls1_c00427{letter-spacing:90.638400px;}
.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;}
}
.ws1_c00427{word-spacing:-0.718560px;}
.ws3_c00427{word-spacing:0.000000px;}
.ws0_c00427{word-spacing:59.734524px;}
.ws2_c00427{word-spacing:245.015280px;}
.fc0_c00427{color:transparent;}
.fsa_c00427{font-size:34.560000px;}
.fs9_c00427{font-size:37.440000px;}
.fs4_c00427{font-size:40.320000px;}
.fs7_c00427{font-size:46.080000px;}
.fs8_c00427{font-size:48.960000px;}
.fs3_c00427{font-size:51.840000px;}
.fs6_c00427{font-size:54.720000px;}
.fsc_c00427{font-size:57.600000px;}
.fsb_c00427{font-size:60.480000px;}
.fs1_c00427{font-size:63.360000px;}
.fsd_c00427{font-size:66.240000px;}
.fs5_c00427{font-size:69.120000px;}
.fs0_c00427{font-size:72.000000px;}
.fs2_c00427{font-size:74.880000px;}
.fse_c00427{font-size:77.760000px;}
.fsf_c00427{font-size:103.680000px;}
.y0_c00427{bottom:0.000000px;}
.y85_c00427{bottom:43.200000px;}
.y81_c00427{bottom:49.680000px;}
.y86_c00427{bottom:51.120000px;}
.y84_c00427{bottom:51.840000px;}
.y80_c00427{bottom:52.560000px;}
.y82_c00427{bottom:53.280000px;}
.y83_c00427{bottom:54.000000px;}
.y7a_c00427{bottom:93.600000px;}
.y7e_c00427{bottom:94.320000px;}
.y7c_c00427{bottom:95.040000px;}
.y7f_c00427{bottom:95.760000px;}
.y79_c00427{bottom:96.480000px;}
.y7b_c00427{bottom:97.200000px;}
.y7d_c00427{bottom:98.640000px;}
.y78_c00427{bottom:140.400000px;}
.y77_c00427{bottom:141.120000px;}
.y72_c00427{bottom:169.200000px;}
.y75_c00427{bottom:169.920000px;}
.y73_c00427{bottom:170.640000px;}
.y76_c00427{bottom:171.360000px;}
.y71_c00427{bottom:172.080000px;}
.y74_c00427{bottom:172.800000px;}
.y6d_c00427{bottom:212.400000px;}
.y6e_c00427{bottom:213.840000px;}
.y6f_c00427{bottom:214.560000px;}
.y6c_c00427{bottom:215.280000px;}
.y70_c00427{bottom:216.000000px;}
.y65_c00427{bottom:254.880000px;}
.y69_c00427{bottom:256.320000px;}
.y68_c00427{bottom:257.040000px;}
.y66_c00427{bottom:257.760000px;}
.y64_c00427{bottom:258.480000px;}
.y6b_c00427{bottom:259.200000px;}
.y67_c00427{bottom:259.920000px;}
.y6a_c00427{bottom:260.640000px;}
.y62_c00427{bottom:298.800000px;}
.y5f_c00427{bottom:299.520000px;}
.y61_c00427{bottom:300.240000px;}
.y60_c00427{bottom:300.960000px;}
.y63_c00427{bottom:301.680000px;}
.y5e_c00427{bottom:302.400000px;}
.y5c_c00427{bottom:342.720000px;}
.y59_c00427{bottom:343.440000px;}
.y5b_c00427{bottom:344.160000px;}
.y5a_c00427{bottom:344.880000px;}
.y58_c00427{bottom:345.600000px;}
.y5d_c00427{bottom:347.040000px;}
.y54_c00427{bottom:386.640000px;}
.y56_c00427{bottom:387.360000px;}
.y55_c00427{bottom:388.800000px;}
.y53_c00427{bottom:389.520000px;}
.y57_c00427{bottom:390.240000px;}
.y4f_c00427{bottom:429.840000px;}
.y51_c00427{bottom:430.560000px;}
.y50_c00427{bottom:431.280000px;}
.y4e_c00427{bottom:432.000000px;}
.y52_c00427{bottom:433.440000px;}
.y4d_c00427{bottom:466.560000px;}
.y48_c00427{bottom:473.760000px;}
.y4c_c00427{bottom:474.480000px;}
.y4b_c00427{bottom:475.200000px;}
.y47_c00427{bottom:475.920000px;}
.y4a_c00427{bottom:476.640000px;}
.y49_c00427{bottom:477.360000px;}
.y42_c00427{bottom:516.240000px;}
.y43_c00427{bottom:516.960000px;}
.y44_c00427{bottom:517.680000px;}
.y41_c00427{bottom:518.400000px;}
.y45_c00427{bottom:519.840000px;}
.y46_c00427{bottom:520.560000px;}
.y3c_c00427{bottom:560.160000px;}
.y40_c00427{bottom:560.880000px;}
.y3d_c00427{bottom:561.600000px;}
.y3b_c00427{bottom:562.320000px;}
.y3f_c00427{bottom:563.040000px;}
.y3e_c00427{bottom:563.760000px;}
.y3a_c00427{bottom:595.440000px;}
.y37_c00427{bottom:603.360000px;}
.y39_c00427{bottom:604.080000px;}
.y36_c00427{bottom:604.800000px;}
.y38_c00427{bottom:606.960000px;}
.y35_c00427{bottom:638.640000px;}
.y30_c00427{bottom:645.840000px;}
.y33_c00427{bottom:646.560000px;}
.y32_c00427{bottom:647.280000px;}
.y2f_c00427{bottom:648.000000px;}
.y34_c00427{bottom:649.440000px;}
.y31_c00427{bottom:650.160000px;}
.y2e_c00427{bottom:689.760000px;}
.y2d_c00427{bottom:692.640000px;}
.y28_c00427{bottom:721.440000px;}
.y2b_c00427{bottom:722.160000px;}
.y27_c00427{bottom:722.880000px;}
.y2c_c00427{bottom:724.320000px;}
.y29_c00427{bottom:725.040000px;}
.y2a_c00427{bottom:725.760000px;}
.y25_c00427{bottom:766.080000px;}
.y26_c00427{bottom:768.240000px;}
.y1f_c00427{bottom:796.320000px;}
.y22_c00427{bottom:797.040000px;}
.y21_c00427{bottom:797.760000px;}
.y1e_c00427{bottom:798.480000px;}
.y24_c00427{bottom:799.200000px;}
.y23_c00427{bottom:799.920000px;}
.y20_c00427{bottom:800.640000px;}
.y1a_c00427{bottom:839.520000px;}
.y18_c00427{bottom:840.240000px;}
.y1d_c00427{bottom:840.960000px;}
.y1b_c00427{bottom:841.680000px;}
.y17_c00427{bottom:842.400000px;}
.y1c_c00427{bottom:843.120000px;}
.y19_c00427{bottom:843.840000px;}
.y16_c00427{bottom:883.440000px;}
.y15_c00427{bottom:884.880000px;}
.y14_c00427{bottom:887.040000px;}
.y10_c00427{bottom:915.840000px;}
.y11_c00427{bottom:916.560000px;}
.yf_c00427{bottom:917.280000px;}
.y12_c00427{bottom:918.720000px;}
.y13_c00427{bottom:919.440000px;}
.yc_c00427{bottom:960.480000px;}
.yd_c00427{bottom:962.640000px;}
.ye_c00427{bottom:963.360000px;}
.y8_c00427{bottom:991.440000px;}
.yb_c00427{bottom:992.160000px;}
.y7_c00427{bottom:992.880000px;}
.ya_c00427{bottom:994.320000px;}
.y9_c00427{bottom:995.040000px;}
.y3_c00427{bottom:1034.640000px;}
.y6_c00427{bottom:1035.360000px;}
.y2_c00427{bottom:1036.080000px;}
.y5_c00427{bottom:1037.520000px;}
.y4_c00427{bottom:1038.960000px;}
.y1_c00427{bottom:1107.360000px;}
.hc_c00427{height:31.100625px;}
.hb_c00427{height:33.692344px;}
.h6_c00427{height:36.284062px;}
.h9_c00427{height:41.467500px;}
.ha_c00427{height:44.059219px;}
.h5_c00427{height:46.650937px;}
.h8_c00427{height:49.242656px;}
.he_c00427{height:51.834375px;}
.hd_c00427{height:54.426094px;}
.h12_c00427{height:55.290938px;}
.h3_c00427{height:57.017812px;}
.hf_c00427{height:59.609531px;}
.h7_c00427{height:62.201250px;}
.h2_c00427{height:64.792969px;}
.h4_c00427{height:67.384687px;}
.h10_c00427{height:69.976406px;}
.h11_c00427{height:93.301875px;}
.h1_c00427{height:1151.250000px;}
.h0_c00427{height:1151.280000px;}
.w0_c00427{width:763.200000px;}
.w1_c00427{width:763.500000px;}
.x0_c00427{left:0.000000px;}
.x2_c00427{left:38.880000px;}
.x1c_c00427{left:113.040000px;}
.x3_c00427{left:115.200000px;}
.x29_c00427{left:144.720000px;}
.x21_c00427{left:146.880000px;}
.x18_c00427{left:157.680000px;}
.x1a_c00427{left:178.560000px;}
.xe_c00427{left:189.360000px;}
.x4_c00427{left:211.680000px;}
.x1b_c00427{left:222.480000px;}
.xf_c00427{left:234.000000px;}
.x10_c00427{left:244.080000px;}
.x22_c00427{left:245.520000px;}
.x1d_c00427{left:254.880000px;}
.xb_c00427{left:265.680000px;}
.x5_c00427{left:267.120000px;}
.x19_c00427{left:276.480000px;}
.x23_c00427{left:287.280000px;}
.x27_c00427{left:298.080000px;}
.x11_c00427{left:299.520000px;}
.x6_c00427{left:308.880000px;}
.x1e_c00427{left:310.320000px;}
.x24_c00427{left:342.720000px;}
.xc_c00427{left:352.080000px;}
.x12_c00427{left:384.480000px;}
.x1f_c00427{left:396.000000px;}
.xd_c00427{left:406.800000px;}
.x13_c00427{left:428.400000px;}
.x20_c00427{left:450.000000px;}
.x25_c00427{left:472.320000px;}
.x2a_c00427{left:482.400000px;}
.x7_c00427{left:516.240000px;}
.x26_c00427{left:548.640000px;}
.x2b_c00427{left:568.080000px;}
.x8_c00427{left:569.520000px;}
.x28_c00427{left:601.920000px;}
.x14_c00427{left:603.360000px;}
.x15_c00427{left:635.760000px;}
.x9_c00427{left:645.840000px;}
.x1_c00427{left:661.680000px;}
.x16_c00427{left:678.240000px;}
.xa_c00427{left:679.680000px;}
.x17_c00427{left:699.840000px;}
@media print{
.v2_c00427{vertical-align:-10.240000pt;}
.v4_c00427{vertical-align:-7.680000pt;}
.v1_c00427{vertical-align:-2.560000pt;}
.v0_c00427{vertical-align:0.000000pt;}
.v3_c00427{vertical-align:7.680000pt;}
.v5_c00427{vertical-align:10.240000pt;}
.ls2_c00427{letter-spacing:0.000000pt;}
.ls0_c00427{letter-spacing:76.252160pt;}
.ls1_c00427{letter-spacing:80.567467pt;}
.ws1_c00427{word-spacing:-0.638720pt;}
.ws3_c00427{word-spacing:0.000000pt;}
.ws0_c00427{word-spacing:53.097354pt;}
.ws2_c00427{word-spacing:217.791360pt;}
.fsa_c00427{font-size:30.720000pt;}
.fs9_c00427{font-size:33.280000pt;}
.fs4_c00427{font-size:35.840000pt;}
.fs7_c00427{font-size:40.960000pt;}
.fs8_c00427{font-size:43.520000pt;}
.fs3_c00427{font-size:46.080000pt;}
.fs6_c00427{font-size:48.640000pt;}
.fsc_c00427{font-size:51.200000pt;}
.fsb_c00427{font-size:53.760000pt;}
.fs1_c00427{font-size:56.320000pt;}
.fsd_c00427{font-size:58.880000pt;}
.fs5_c00427{font-size:61.440000pt;}
.fs0_c00427{font-size:64.000000pt;}
.fs2_c00427{font-size:66.560000pt;}
.fse_c00427{font-size:69.120000pt;}
.fsf_c00427{font-size:92.160000pt;}
.y0_c00427{bottom:0.000000pt;}
.y85_c00427{bottom:38.400000pt;}
.y81_c00427{bottom:44.160000pt;}
.y86_c00427{bottom:45.440000pt;}
.y84_c00427{bottom:46.080000pt;}
.y80_c00427{bottom:46.720000pt;}
.y82_c00427{bottom:47.360000pt;}
.y83_c00427{bottom:48.000000pt;}
.y7a_c00427{bottom:83.200000pt;}
.y7e_c00427{bottom:83.840000pt;}
.y7c_c00427{bottom:84.480000pt;}
.y7f_c00427{bottom:85.120000pt;}
.y79_c00427{bottom:85.760000pt;}
.y7b_c00427{bottom:86.400000pt;}
.y7d_c00427{bottom:87.680000pt;}
.y78_c00427{bottom:124.800000pt;}
.y77_c00427{bottom:125.440000pt;}
.y72_c00427{bottom:150.400000pt;}
.y75_c00427{bottom:151.040000pt;}
.y73_c00427{bottom:151.680000pt;}
.y76_c00427{bottom:152.320000pt;}
.y71_c00427{bottom:152.960000pt;}
.y74_c00427{bottom:153.600000pt;}
.y6d_c00427{bottom:188.800000pt;}
.y6e_c00427{bottom:190.080000pt;}
.y6f_c00427{bottom:190.720000pt;}
.y6c_c00427{bottom:191.360000pt;}
.y70_c00427{bottom:192.000000pt;}
.y65_c00427{bottom:226.560000pt;}
.y69_c00427{bottom:227.840000pt;}
.y68_c00427{bottom:228.480000pt;}
.y66_c00427{bottom:229.120000pt;}
.y64_c00427{bottom:229.760000pt;}
.y6b_c00427{bottom:230.400000pt;}
.y67_c00427{bottom:231.040000pt;}
.y6a_c00427{bottom:231.680000pt;}
.y62_c00427{bottom:265.600000pt;}
.y5f_c00427{bottom:266.240000pt;}
.y61_c00427{bottom:266.880000pt;}
.y60_c00427{bottom:267.520000pt;}
.y63_c00427{bottom:268.160000pt;}
.y5e_c00427{bottom:268.800000pt;}
.y5c_c00427{bottom:304.640000pt;}
.y59_c00427{bottom:305.280000pt;}
.y5b_c00427{bottom:305.920000pt;}
.y5a_c00427{bottom:306.560000pt;}
.y58_c00427{bottom:307.200000pt;}
.y5d_c00427{bottom:308.480000pt;}
.y54_c00427{bottom:343.680000pt;}
.y56_c00427{bottom:344.320000pt;}
.y55_c00427{bottom:345.600000pt;}
.y53_c00427{bottom:346.240000pt;}
.y57_c00427{bottom:346.880000pt;}
.y4f_c00427{bottom:382.080000pt;}
.y51_c00427{bottom:382.720000pt;}
.y50_c00427{bottom:383.360000pt;}
.y4e_c00427{bottom:384.000000pt;}
.y52_c00427{bottom:385.280000pt;}
.y4d_c00427{bottom:414.720000pt;}
.y48_c00427{bottom:421.120000pt;}
.y4c_c00427{bottom:421.760000pt;}
.y4b_c00427{bottom:422.400000pt;}
.y47_c00427{bottom:423.040000pt;}
.y4a_c00427{bottom:423.680000pt;}
.y49_c00427{bottom:424.320000pt;}
.y42_c00427{bottom:458.880000pt;}
.y43_c00427{bottom:459.520000pt;}
.y44_c00427{bottom:460.160000pt;}
.y41_c00427{bottom:460.800000pt;}
.y45_c00427{bottom:462.080000pt;}
.y46_c00427{bottom:462.720000pt;}
.y3c_c00427{bottom:497.920000pt;}
.y40_c00427{bottom:498.560000pt;}
.y3d_c00427{bottom:499.200000pt;}
.y3b_c00427{bottom:499.840000pt;}
.y3f_c00427{bottom:500.480000pt;}
.y3e_c00427{bottom:501.120000pt;}
.y3a_c00427{bottom:529.280000pt;}
.y37_c00427{bottom:536.320000pt;}
.y39_c00427{bottom:536.960000pt;}
.y36_c00427{bottom:537.600000pt;}
.y38_c00427{bottom:539.520000pt;}
.y35_c00427{bottom:567.680000pt;}
.y30_c00427{bottom:574.080000pt;}
.y33_c00427{bottom:574.720000pt;}
.y32_c00427{bottom:575.360000pt;}
.y2f_c00427{bottom:576.000000pt;}
.y34_c00427{bottom:577.280000pt;}
.y31_c00427{bottom:577.920000pt;}
.y2e_c00427{bottom:613.120000pt;}
.y2d_c00427{bottom:615.680000pt;}
.y28_c00427{bottom:641.280000pt;}
.y2b_c00427{bottom:641.920000pt;}
.y27_c00427{bottom:642.560000pt;}
.y2c_c00427{bottom:643.840000pt;}
.y29_c00427{bottom:644.480000pt;}
.y2a_c00427{bottom:645.120000pt;}
.y25_c00427{bottom:680.960000pt;}
.y26_c00427{bottom:682.880000pt;}
.y1f_c00427{bottom:707.840000pt;}
.y22_c00427{bottom:708.480000pt;}
.y21_c00427{bottom:709.120000pt;}
.y1e_c00427{bottom:709.760000pt;}
.y24_c00427{bottom:710.400000pt;}
.y23_c00427{bottom:711.040000pt;}
.y20_c00427{bottom:711.680000pt;}
.y1a_c00427{bottom:746.240000pt;}
.y18_c00427{bottom:746.880000pt;}
.y1d_c00427{bottom:747.520000pt;}
.y1b_c00427{bottom:748.160000pt;}
.y17_c00427{bottom:748.800000pt;}
.y1c_c00427{bottom:749.440000pt;}
.y19_c00427{bottom:750.080000pt;}
.y16_c00427{bottom:785.280000pt;}
.y15_c00427{bottom:786.560000pt;}
.y14_c00427{bottom:788.480000pt;}
.y10_c00427{bottom:814.080000pt;}
.y11_c00427{bottom:814.720000pt;}
.yf_c00427{bottom:815.360000pt;}
.y12_c00427{bottom:816.640000pt;}
.y13_c00427{bottom:817.280000pt;}
.yc_c00427{bottom:853.760000pt;}
.yd_c00427{bottom:855.680000pt;}
.ye_c00427{bottom:856.320000pt;}
.y8_c00427{bottom:881.280000pt;}
.yb_c00427{bottom:881.920000pt;}
.y7_c00427{bottom:882.560000pt;}
.ya_c00427{bottom:883.840000pt;}
.y9_c00427{bottom:884.480000pt;}
.y3_c00427{bottom:919.680000pt;}
.y6_c00427{bottom:920.320000pt;}
.y2_c00427{bottom:920.960000pt;}
.y5_c00427{bottom:922.240000pt;}
.y4_c00427{bottom:923.520000pt;}
.y1_c00427{bottom:984.320000pt;}
.hc_c00427{height:27.645000pt;}
.hb_c00427{height:29.948750pt;}
.h6_c00427{height:32.252500pt;}
.h9_c00427{height:36.860000pt;}
.ha_c00427{height:39.163750pt;}
.h5_c00427{height:41.467500pt;}
.h8_c00427{height:43.771250pt;}
.he_c00427{height:46.075000pt;}
.hd_c00427{height:48.378750pt;}
.h12_c00427{height:49.147500pt;}
.h3_c00427{height:50.682500pt;}
.hf_c00427{height:52.986250pt;}
.h7_c00427{height:55.290000pt;}
.h2_c00427{height:57.593750pt;}
.h4_c00427{height:59.897500pt;}
.h10_c00427{height:62.201250pt;}
.h11_c00427{height:82.935000pt;}
.h1_c00427{height:1023.333333pt;}
.h0_c00427{height:1023.360000pt;}
.w0_c00427{width:678.400000pt;}
.w1_c00427{width:678.666667pt;}
.x0_c00427{left:0.000000pt;}
.x2_c00427{left:34.560000pt;}
.x1c_c00427{left:100.480000pt;}
.x3_c00427{left:102.400000pt;}
.x29_c00427{left:128.640000pt;}
.x21_c00427{left:130.560000pt;}
.x18_c00427{left:140.160000pt;}
.x1a_c00427{left:158.720000pt;}
.xe_c00427{left:168.320000pt;}
.x4_c00427{left:188.160000pt;}
.x1b_c00427{left:197.760000pt;}
.xf_c00427{left:208.000000pt;}
.x10_c00427{left:216.960000pt;}
.x22_c00427{left:218.240000pt;}
.x1d_c00427{left:226.560000pt;}
.xb_c00427{left:236.160000pt;}
.x5_c00427{left:237.440000pt;}
.x19_c00427{left:245.760000pt;}
.x23_c00427{left:255.360000pt;}
.x27_c00427{left:264.960000pt;}
.x11_c00427{left:266.240000pt;}
.x6_c00427{left:274.560000pt;}
.x1e_c00427{left:275.840000pt;}
.x24_c00427{left:304.640000pt;}
.xc_c00427{left:312.960000pt;}
.x12_c00427{left:341.760000pt;}
.x1f_c00427{left:352.000000pt;}
.xd_c00427{left:361.600000pt;}
.x13_c00427{left:380.800000pt;}
.x20_c00427{left:400.000000pt;}
.x25_c00427{left:419.840000pt;}
.x2a_c00427{left:428.800000pt;}
.x7_c00427{left:458.880000pt;}
.x26_c00427{left:487.680000pt;}
.x2b_c00427{left:504.960000pt;}
.x8_c00427{left:506.240000pt;}
.x28_c00427{left:535.040000pt;}
.x14_c00427{left:536.320000pt;}
.x15_c00427{left:565.120000pt;}
.x9_c00427{left:574.080000pt;}
.x1_c00427{left:588.160000pt;}
.x16_c00427{left:602.880000pt;}
.xa_c00427{left:604.160000pt;}
.x17_c00427{left:622.080000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5e333d8a06474a0ae4aa3d5e.woff2')format("woff");}.ff1_c00428{font-family:ff1_c00428;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m54_c00428{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m52_c00428{transform:matrix(0.144875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144875,0.000000,0.000000,0.250000,0,0);}
.m25_c00428{transform:matrix(0.157950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157950,0.000000,0.000000,0.250000,0,0);}
.m53_c00428{transform:matrix(0.165075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165075,0.000000,0.000000,0.250000,0,0);}
.m47_c00428{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00428{transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);}
.m3c_c00428{transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);}
.m56_c00428{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00428{transform:matrix(0.192625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192625,0.000000,0.000000,0.250000,0,0);}
.m34_c00428{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m20_c00428{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);}
.m26_c00428{transform:matrix(0.231350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231350,0.000000,0.000000,0.250000,0,0);}
.m55_c00428{transform:matrix(0.233400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233400,0.000000,0.000000,0.250000,0,0);}
.m48_c00428{transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);}
.m45_c00428{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m2a_c00428{transform:matrix(0.238800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238800,0.000000,0.000000,0.250000,0,0);}
.m3a_c00428{transform:matrix(0.239400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239400,0.000000,0.000000,0.250000,0,0);}
.m1e_c00428{transform:matrix(0.240150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240150,0.000000,0.000000,0.250000,0,0);}
.m3e_c00428{transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);}
.m37_c00428{transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);}
.m17_c00428{transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);}
.m46_c00428{transform:matrix(0.246075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246075,0.000000,0.000000,0.250000,0,0);}
.m3b_c00428{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m13_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);}
.m2_c00428{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);}
.m27_c00428{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mc_c00428{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_c00428{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m7_c00428{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m9_c00428{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);}
.m33_c00428{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m11_c00428{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m23_c00428{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m10_c00428{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m6_c00428{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m24_c00428{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00428{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00428{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m30_c00428{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00428{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.ma_c00428{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00428{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00428{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m15_c00428{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m8_c00428{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m42_c00428{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mf_c00428{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m14_c00428{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00428{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m28_c00428{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m38_c00428{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m3_c00428{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m29_c00428{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);}
.m32_c00428{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.md_c00428{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.mb_c00428{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m21_c00428{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m36_c00428{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1_c00428{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m16_c00428{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m22_c00428{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);}
.m31_c00428{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);}
.m0_c00428{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00428{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);}
.m18_c00428{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);}
.m50_c00428{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00428{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m5_c00428{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);}
.m35_c00428{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m44_c00428{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);}
.m39_c00428{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00428{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00428{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m4_c00428{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00428{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00428{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00428{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m41_c00428{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m12_c00428{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);}
.m4a_c00428{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m40_c00428{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00428{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);}
.me_c00428{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m49_c00428{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m43_c00428{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00428{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m51_c00428{transform:matrix(0.747500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.747500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.747500,0.000000,0.000000,0.250000,0,0);}
.v1_c00428{vertical-align:-5.760000px;}
.v0_c00428{vertical-align:0.000000px;}
.ls1_c00428{letter-spacing:0.000000px;}
.ls0_c00428{letter-spacing:83.257680px;}
.sc__c00428{text-shadow:none;}
.sc0_c00428{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00428{-webkit-text-stroke:0px transparent;}
.sc0_c00428{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00428{word-spacing:0.000000px;}
.fc0_c00428{color:transparent;}
.fs12_c00428{font-size:2.880000px;}
.fs10_c00428{font-size:20.160000px;}
.fse_c00428{font-size:34.560000px;}
.fs8_c00428{font-size:37.440000px;}
.fsb_c00428{font-size:40.320000px;}
.fsd_c00428{font-size:43.200000px;}
.fs11_c00428{font-size:46.080000px;}
.fs3_c00428{font-size:48.960000px;}
.fs7_c00428{font-size:51.840000px;}
.fs5_c00428{font-size:54.720000px;}
.fs6_c00428{font-size:57.600000px;}
.fs1_c00428{font-size:60.480000px;}
.fs4_c00428{font-size:63.360000px;}
.fsa_c00428{font-size:66.240000px;}
.fs9_c00428{font-size:69.120000px;}
.fs0_c00428{font-size:72.000000px;}
.fs2_c00428{font-size:74.880000px;}
.fsc_c00428{font-size:77.760000px;}
.fsf_c00428{font-size:103.680000px;}
.fs13_c00428{font-size:106.560000px;}
.y0_c00428{bottom:0.000000px;}
.y88_c00428{bottom:46.080000px;}
.y86_c00428{bottom:52.560000px;}
.y87_c00428{bottom:54.000000px;}
.y89_c00428{bottom:54.720000px;}
.y85_c00428{bottom:55.440000px;}
.y83_c00428{bottom:89.280000px;}
.y82_c00428{bottom:90.000000px;}
.y84_c00428{bottom:95.040000px;}
.y7e_c00428{bottom:96.480000px;}
.y7f_c00428{bottom:97.920000px;}
.y7d_c00428{bottom:98.640000px;}
.y80_c00428{bottom:100.800000px;}
.y81_c00428{bottom:102.240000px;}
.y7b_c00428{bottom:133.200000px;}
.y77_c00428{bottom:140.400000px;}
.y78_c00428{bottom:141.120000px;}
.y76_c00428{bottom:141.840000px;}
.y7a_c00428{bottom:142.560000px;}
.y7c_c00428{bottom:143.280000px;}
.y79_c00428{bottom:144.000000px;}
.y74_c00428{bottom:177.120000px;}
.y70_c00428{bottom:183.600000px;}
.y73_c00428{bottom:185.040000px;}
.y71_c00428{bottom:185.760000px;}
.y75_c00428{bottom:186.480000px;}
.y6f_c00428{bottom:187.200000px;}
.y72_c00428{bottom:190.800000px;}
.y6d_c00428{bottom:220.320000px;}
.y6a_c00428{bottom:226.800000px;}
.y6c_c00428{bottom:228.240000px;}
.y6e_c00428{bottom:228.960000px;}
.y69_c00428{bottom:229.680000px;}
.y6b_c00428{bottom:230.400000px;}
.y63_c00428{bottom:269.280000px;}
.y66_c00428{bottom:270.000000px;}
.y67_c00428{bottom:272.160000px;}
.y62_c00428{bottom:272.880000px;}
.y65_c00428{bottom:273.600000px;}
.y64_c00428{bottom:274.320000px;}
.y68_c00428{bottom:275.040000px;}
.y61_c00428{bottom:306.720000px;}
.y5c_c00428{bottom:313.200000px;}
.y5f_c00428{bottom:313.920000px;}
.y5e_c00428{bottom:314.640000px;}
.y5b_c00428{bottom:316.080000px;}
.y5d_c00428{bottom:316.800000px;}
.y60_c00428{bottom:317.520000px;}
.y57_c00428{bottom:355.680000px;}
.y59_c00428{bottom:357.840000px;}
.y5a_c00428{bottom:358.560000px;}
.y56_c00428{bottom:359.280000px;}
.y58_c00428{bottom:360.000000px;}
.y53_c00428{bottom:398.880000px;}
.y54_c00428{bottom:400.320000px;}
.y55_c00428{bottom:403.200000px;}
.y4f_c00428{bottom:432.000000px;}
.y51_c00428{bottom:433.440000px;}
.y52_c00428{bottom:434.160000px;}
.y4e_c00428{bottom:434.880000px;}
.y50_c00428{bottom:435.600000px;}
.y4d_c00428{bottom:475.200000px;}
.y4c_c00428{bottom:478.800000px;}
.y47_c00428{bottom:506.880000px;}
.y4b_c00428{bottom:508.320000px;}
.y4a_c00428{bottom:509.040000px;}
.y46_c00428{bottom:509.760000px;}
.y48_c00428{bottom:511.200000px;}
.y49_c00428{bottom:511.920000px;}
.y45_c00428{bottom:543.600000px;}
.y42_c00428{bottom:550.800000px;}
.y3f_c00428{bottom:551.520000px;}
.y41_c00428{bottom:552.240000px;}
.y43_c00428{bottom:552.960000px;}
.y3e_c00428{bottom:553.680000px;}
.y40_c00428{bottom:554.400000px;}
.y44_c00428{bottom:555.120000px;}
.y3a_c00428{bottom:594.720000px;}
.y3d_c00428{bottom:595.440000px;}
.y3b_c00428{bottom:596.160000px;}
.y39_c00428{bottom:596.880000px;}
.y3c_c00428{bottom:598.320000px;}
.y34_c00428{bottom:637.920000px;}
.y35_c00428{bottom:639.360000px;}
.y33_c00428{bottom:640.080000px;}
.y37_c00428{bottom:640.800000px;}
.y36_c00428{bottom:641.520000px;}
.y38_c00428{bottom:642.240000px;}
.y2e_c00428{bottom:681.120000px;}
.y30_c00428{bottom:682.560000px;}
.y2f_c00428{bottom:683.280000px;}
.y2d_c00428{bottom:684.000000px;}
.y31_c00428{bottom:684.720000px;}
.y32_c00428{bottom:685.440000px;}
.y29_c00428{bottom:724.320000px;}
.y28_c00428{bottom:725.760000px;}
.y2a_c00428{bottom:726.480000px;}
.y2c_c00428{bottom:727.200000px;}
.y2b_c00428{bottom:727.920000px;}
.y26_c00428{bottom:767.520000px;}
.y24_c00428{bottom:768.240000px;}
.y25_c00428{bottom:768.960000px;}
.y23_c00428{bottom:770.400000px;}
.y27_c00428{bottom:771.840000px;}
.y22_c00428{bottom:810.000000px;}
.y1e_c00428{bottom:811.440000px;}
.y20_c00428{bottom:812.160000px;}
.y1d_c00428{bottom:812.880000px;}
.y21_c00428{bottom:813.600000px;}
.y1f_c00428{bottom:815.040000px;}
.y1b_c00428{bottom:854.640000px;}
.y1c_c00428{bottom:856.800000px;}
.y17_c00428{bottom:886.320000px;}
.y1a_c00428{bottom:887.040000px;}
.y16_c00428{bottom:887.760000px;}
.y19_c00428{bottom:889.200000px;}
.y18_c00428{bottom:889.920000px;}
.y15_c00428{bottom:928.800000px;}
.y14_c00428{bottom:932.400000px;}
.yf_c00428{bottom:961.200000px;}
.y12_c00428{bottom:961.920000px;}
.y11_c00428{bottom:962.640000px;}
.ye_c00428{bottom:963.360000px;}
.y10_c00428{bottom:964.800000px;}
.y13_c00428{bottom:965.520000px;}
.yd_c00428{bottom:996.480000px;}
.yb_c00428{bottom:1004.400000px;}
.y8_c00428{bottom:1005.120000px;}
.yc_c00428{bottom:1005.840000px;}
.y7_c00428{bottom:1006.560000px;}
.ya_c00428{bottom:1008.000000px;}
.y9_c00428{bottom:1008.720000px;}
.y3_c00428{bottom:1047.600000px;}
.y5_c00428{bottom:1048.320000px;}
.y4_c00428{bottom:1049.040000px;}
.y2_c00428{bottom:1050.480000px;}
.y6_c00428{bottom:1051.200000px;}
.y1_c00428{bottom:1116.000000px;}
.h14_c00428{height:2.591719px;}
.h12_c00428{height:18.142031px;}
.h10_c00428{height:31.100625px;}
.ha_c00428{height:33.692344px;}
.hd_c00428{height:36.284062px;}
.hf_c00428{height:38.875781px;}
.h13_c00428{height:41.467500px;}
.h5_c00428{height:44.059219px;}
.h9_c00428{height:46.650937px;}
.h7_c00428{height:49.242656px;}
.h8_c00428{height:51.834375px;}
.h3_c00428{height:54.426094px;}
.h6_c00428{height:57.017812px;}
.hc_c00428{height:59.609531px;}
.hb_c00428{height:62.201250px;}
.h2_c00428{height:64.792969px;}
.h4_c00428{height:67.384687px;}
.he_c00428{height:69.976406px;}
.h11_c00428{height:93.301875px;}
.h15_c00428{height:95.893594px;}
.h0_c00428{height:1154.880000px;}
.h1_c00428{height:1155.000000px;}
.w1_c00428{width:768.750000px;}
.w0_c00428{width:768.960000px;}
.x0_c00428{left:0.000000px;}
.x2_c00428{left:52.560000px;}
.x2e_c00428{left:54.000000px;}
.x2d_c00428{left:97.200000px;}
.x27_c00428{left:127.440000px;}
.x3_c00428{left:128.880000px;}
.x13_c00428{left:171.360000px;}
.xc_c00428{left:224.640000px;}
.x4_c00428{left:226.800000px;}
.x28_c00428{left:236.880000px;}
.x1d_c00428{left:257.760000px;}
.x18_c00428{left:259.200000px;}
.xd_c00428{left:269.280000px;}
.x24_c00428{left:278.640000px;}
.x14_c00428{left:280.800000px;}
.x29_c00428{left:291.600000px;}
.x19_c00428{left:301.680000px;}
.x5_c00428{left:311.760000px;}
.x1e_c00428{left:313.200000px;}
.x11_c00428{left:322.560000px;}
.xe_c00428{left:324.000000px;}
.x2a_c00428{left:355.680000px;}
.x6_c00428{left:366.480000px;}
.x15_c00428{left:378.000000px;}
.x1a_c00428{left:388.080000px;}
.x1f_c00428{left:398.880000px;}
.x7_c00428{left:410.400000px;}
.x16_c00428{left:420.480000px;}
.x2c_c00428{left:431.280000px;}
.x1b_c00428{left:442.080000px;}
.x20_c00428{left:453.600000px;}
.xf_c00428{left:464.400000px;}
.x12_c00428{left:474.480000px;}
.x1c_c00428{left:486.000000px;}
.x21_c00428{left:496.800000px;}
.x2f_c00428{left:523.440000px;}
.x8_c00428{left:529.920000px;}
.x25_c00428{left:583.200000px;}
.x30_c00428{left:584.640000px;}
.x9_c00428{left:616.320000px;}
.x22_c00428{left:617.760000px;}
.x2b_c00428{left:640.800000px;}
.x17_c00428{left:650.160000px;}
.xa_c00428{left:660.240000px;}
.x1_c00428{left:670.320000px;}
.x23_c00428{left:680.400000px;}
.x26_c00428{left:682.560000px;}
.xb_c00428{left:691.200000px;}
.x10_c00428{left:693.360000px;}
@media print{
.v1_c00428{vertical-align:-5.120000pt;}
.v0_c00428{vertical-align:0.000000pt;}
.ls1_c00428{letter-spacing:0.000000pt;}
.ls0_c00428{letter-spacing:74.006827pt;}
.ws0_c00428{word-spacing:0.000000pt;}
.fs12_c00428{font-size:2.560000pt;}
.fs10_c00428{font-size:17.920000pt;}
.fse_c00428{font-size:30.720000pt;}
.fs8_c00428{font-size:33.280000pt;}
.fsb_c00428{font-size:35.840000pt;}
.fsd_c00428{font-size:38.400000pt;}
.fs11_c00428{font-size:40.960000pt;}
.fs3_c00428{font-size:43.520000pt;}
.fs7_c00428{font-size:46.080000pt;}
.fs5_c00428{font-size:48.640000pt;}
.fs6_c00428{font-size:51.200000pt;}
.fs1_c00428{font-size:53.760000pt;}
.fs4_c00428{font-size:56.320000pt;}
.fsa_c00428{font-size:58.880000pt;}
.fs9_c00428{font-size:61.440000pt;}
.fs0_c00428{font-size:64.000000pt;}
.fs2_c00428{font-size:66.560000pt;}
.fsc_c00428{font-size:69.120000pt;}
.fsf_c00428{font-size:92.160000pt;}
.fs13_c00428{font-size:94.720000pt;}
.y0_c00428{bottom:0.000000pt;}
.y88_c00428{bottom:40.960000pt;}
.y86_c00428{bottom:46.720000pt;}
.y87_c00428{bottom:48.000000pt;}
.y89_c00428{bottom:48.640000pt;}
.y85_c00428{bottom:49.280000pt;}
.y83_c00428{bottom:79.360000pt;}
.y82_c00428{bottom:80.000000pt;}
.y84_c00428{bottom:84.480000pt;}
.y7e_c00428{bottom:85.760000pt;}
.y7f_c00428{bottom:87.040000pt;}
.y7d_c00428{bottom:87.680000pt;}
.y80_c00428{bottom:89.600000pt;}
.y81_c00428{bottom:90.880000pt;}
.y7b_c00428{bottom:118.400000pt;}
.y77_c00428{bottom:124.800000pt;}
.y78_c00428{bottom:125.440000pt;}
.y76_c00428{bottom:126.080000pt;}
.y7a_c00428{bottom:126.720000pt;}
.y7c_c00428{bottom:127.360000pt;}
.y79_c00428{bottom:128.000000pt;}
.y74_c00428{bottom:157.440000pt;}
.y70_c00428{bottom:163.200000pt;}
.y73_c00428{bottom:164.480000pt;}
.y71_c00428{bottom:165.120000pt;}
.y75_c00428{bottom:165.760000pt;}
.y6f_c00428{bottom:166.400000pt;}
.y72_c00428{bottom:169.600000pt;}
.y6d_c00428{bottom:195.840000pt;}
.y6a_c00428{bottom:201.600000pt;}
.y6c_c00428{bottom:202.880000pt;}
.y6e_c00428{bottom:203.520000pt;}
.y69_c00428{bottom:204.160000pt;}
.y6b_c00428{bottom:204.800000pt;}
.y63_c00428{bottom:239.360000pt;}
.y66_c00428{bottom:240.000000pt;}
.y67_c00428{bottom:241.920000pt;}
.y62_c00428{bottom:242.560000pt;}
.y65_c00428{bottom:243.200000pt;}
.y64_c00428{bottom:243.840000pt;}
.y68_c00428{bottom:244.480000pt;}
.y61_c00428{bottom:272.640000pt;}
.y5c_c00428{bottom:278.400000pt;}
.y5f_c00428{bottom:279.040000pt;}
.y5e_c00428{bottom:279.680000pt;}
.y5b_c00428{bottom:280.960000pt;}
.y5d_c00428{bottom:281.600000pt;}
.y60_c00428{bottom:282.240000pt;}
.y57_c00428{bottom:316.160000pt;}
.y59_c00428{bottom:318.080000pt;}
.y5a_c00428{bottom:318.720000pt;}
.y56_c00428{bottom:319.360000pt;}
.y58_c00428{bottom:320.000000pt;}
.y53_c00428{bottom:354.560000pt;}
.y54_c00428{bottom:355.840000pt;}
.y55_c00428{bottom:358.400000pt;}
.y4f_c00428{bottom:384.000000pt;}
.y51_c00428{bottom:385.280000pt;}
.y52_c00428{bottom:385.920000pt;}
.y4e_c00428{bottom:386.560000pt;}
.y50_c00428{bottom:387.200000pt;}
.y4d_c00428{bottom:422.400000pt;}
.y4c_c00428{bottom:425.600000pt;}
.y47_c00428{bottom:450.560000pt;}
.y4b_c00428{bottom:451.840000pt;}
.y4a_c00428{bottom:452.480000pt;}
.y46_c00428{bottom:453.120000pt;}
.y48_c00428{bottom:454.400000pt;}
.y49_c00428{bottom:455.040000pt;}
.y45_c00428{bottom:483.200000pt;}
.y42_c00428{bottom:489.600000pt;}
.y3f_c00428{bottom:490.240000pt;}
.y41_c00428{bottom:490.880000pt;}
.y43_c00428{bottom:491.520000pt;}
.y3e_c00428{bottom:492.160000pt;}
.y40_c00428{bottom:492.800000pt;}
.y44_c00428{bottom:493.440000pt;}
.y3a_c00428{bottom:528.640000pt;}
.y3d_c00428{bottom:529.280000pt;}
.y3b_c00428{bottom:529.920000pt;}
.y39_c00428{bottom:530.560000pt;}
.y3c_c00428{bottom:531.840000pt;}
.y34_c00428{bottom:567.040000pt;}
.y35_c00428{bottom:568.320000pt;}
.y33_c00428{bottom:568.960000pt;}
.y37_c00428{bottom:569.600000pt;}
.y36_c00428{bottom:570.240000pt;}
.y38_c00428{bottom:570.880000pt;}
.y2e_c00428{bottom:605.440000pt;}
.y30_c00428{bottom:606.720000pt;}
.y2f_c00428{bottom:607.360000pt;}
.y2d_c00428{bottom:608.000000pt;}
.y31_c00428{bottom:608.640000pt;}
.y32_c00428{bottom:609.280000pt;}
.y29_c00428{bottom:643.840000pt;}
.y28_c00428{bottom:645.120000pt;}
.y2a_c00428{bottom:645.760000pt;}
.y2c_c00428{bottom:646.400000pt;}
.y2b_c00428{bottom:647.040000pt;}
.y26_c00428{bottom:682.240000pt;}
.y24_c00428{bottom:682.880000pt;}
.y25_c00428{bottom:683.520000pt;}
.y23_c00428{bottom:684.800000pt;}
.y27_c00428{bottom:686.080000pt;}
.y22_c00428{bottom:720.000000pt;}
.y1e_c00428{bottom:721.280000pt;}
.y20_c00428{bottom:721.920000pt;}
.y1d_c00428{bottom:722.560000pt;}
.y21_c00428{bottom:723.200000pt;}
.y1f_c00428{bottom:724.480000pt;}
.y1b_c00428{bottom:759.680000pt;}
.y1c_c00428{bottom:761.600000pt;}
.y17_c00428{bottom:787.840000pt;}
.y1a_c00428{bottom:788.480000pt;}
.y16_c00428{bottom:789.120000pt;}
.y19_c00428{bottom:790.400000pt;}
.y18_c00428{bottom:791.040000pt;}
.y15_c00428{bottom:825.600000pt;}
.y14_c00428{bottom:828.800000pt;}
.yf_c00428{bottom:854.400000pt;}
.y12_c00428{bottom:855.040000pt;}
.y11_c00428{bottom:855.680000pt;}
.ye_c00428{bottom:856.320000pt;}
.y10_c00428{bottom:857.600000pt;}
.y13_c00428{bottom:858.240000pt;}
.yd_c00428{bottom:885.760000pt;}
.yb_c00428{bottom:892.800000pt;}
.y8_c00428{bottom:893.440000pt;}
.yc_c00428{bottom:894.080000pt;}
.y7_c00428{bottom:894.720000pt;}
.ya_c00428{bottom:896.000000pt;}
.y9_c00428{bottom:896.640000pt;}
.y3_c00428{bottom:931.200000pt;}
.y5_c00428{bottom:931.840000pt;}
.y4_c00428{bottom:932.480000pt;}
.y2_c00428{bottom:933.760000pt;}
.y6_c00428{bottom:934.400000pt;}
.y1_c00428{bottom:992.000000pt;}
.h14_c00428{height:2.303750pt;}
.h12_c00428{height:16.126250pt;}
.h10_c00428{height:27.645000pt;}
.ha_c00428{height:29.948750pt;}
.hd_c00428{height:32.252500pt;}
.hf_c00428{height:34.556250pt;}
.h13_c00428{height:36.860000pt;}
.h5_c00428{height:39.163750pt;}
.h9_c00428{height:41.467500pt;}
.h7_c00428{height:43.771250pt;}
.h8_c00428{height:46.075000pt;}
.h3_c00428{height:48.378750pt;}
.h6_c00428{height:50.682500pt;}
.hc_c00428{height:52.986250pt;}
.hb_c00428{height:55.290000pt;}
.h2_c00428{height:57.593750pt;}
.h4_c00428{height:59.897500pt;}
.he_c00428{height:62.201250pt;}
.h11_c00428{height:82.935000pt;}
.h15_c00428{height:85.238750pt;}
.h0_c00428{height:1026.560000pt;}
.h1_c00428{height:1026.666667pt;}
.w1_c00428{width:683.333333pt;}
.w0_c00428{width:683.520000pt;}
.x0_c00428{left:0.000000pt;}
.x2_c00428{left:46.720000pt;}
.x2e_c00428{left:48.000000pt;}
.x2d_c00428{left:86.400000pt;}
.x27_c00428{left:113.280000pt;}
.x3_c00428{left:114.560000pt;}
.x13_c00428{left:152.320000pt;}
.xc_c00428{left:199.680000pt;}
.x4_c00428{left:201.600000pt;}
.x28_c00428{left:210.560000pt;}
.x1d_c00428{left:229.120000pt;}
.x18_c00428{left:230.400000pt;}
.xd_c00428{left:239.360000pt;}
.x24_c00428{left:247.680000pt;}
.x14_c00428{left:249.600000pt;}
.x29_c00428{left:259.200000pt;}
.x19_c00428{left:268.160000pt;}
.x5_c00428{left:277.120000pt;}
.x1e_c00428{left:278.400000pt;}
.x11_c00428{left:286.720000pt;}
.xe_c00428{left:288.000000pt;}
.x2a_c00428{left:316.160000pt;}
.x6_c00428{left:325.760000pt;}
.x15_c00428{left:336.000000pt;}
.x1a_c00428{left:344.960000pt;}
.x1f_c00428{left:354.560000pt;}
.x7_c00428{left:364.800000pt;}
.x16_c00428{left:373.760000pt;}
.x2c_c00428{left:383.360000pt;}
.x1b_c00428{left:392.960000pt;}
.x20_c00428{left:403.200000pt;}
.xf_c00428{left:412.800000pt;}
.x12_c00428{left:421.760000pt;}
.x1c_c00428{left:432.000000pt;}
.x21_c00428{left:441.600000pt;}
.x2f_c00428{left:465.280000pt;}
.x8_c00428{left:471.040000pt;}
.x25_c00428{left:518.400000pt;}
.x30_c00428{left:519.680000pt;}
.x9_c00428{left:547.840000pt;}
.x22_c00428{left:549.120000pt;}
.x2b_c00428{left:569.600000pt;}
.x17_c00428{left:577.920000pt;}
.xa_c00428{left:586.880000pt;}
.x1_c00428{left:595.840000pt;}
.x23_c00428{left:604.800000pt;}
.x26_c00428{left:606.720000pt;}
.xb_c00428{left:614.400000pt;}
.x10_c00428{left:616.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_bc8f0ab403af3c73f0f741c4.woff2')format("woff");}.ff1_c00429{font-family:ff1_c00429;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m41_c00429{transform:matrix(0.151550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151550,0.000000,0.000000,0.250000,0,0);}
.me_c00429{transform:matrix(0.197325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197325,0.000000,0.000000,0.250000,0,0);}
.m36_c00429{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m2_c00429{transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);}
.m23_c00429{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m14_c00429{transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);}
.m1a_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);}
.m10_c00429{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00429{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);}
.m47_c00429{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.ma_c00429{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_c00429{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m13_c00429{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m18_c00429{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m46_c00429{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m24_c00429{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m26_c00429{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00429{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00429{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m15_c00429{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00429{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m8_c00429{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m25_c00429{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m32_c00429{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mb_c00429{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m21_c00429{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m27_c00429{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m39_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);}
.m3_c00429{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m22_c00429{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m31_c00429{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m29_c00429{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m43_c00429{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00429{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00429{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m19_c00429{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m5_c00429{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m9_c00429{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m34_c00429{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_c00429{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);}
.m28_c00429{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00429{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_c00429{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m35_c00429{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);}
.m45_c00429{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m0_c00429{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);}
.mf_c00429{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1_c00429{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);}
.m1d_c00429{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m6_c00429{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);}
.m17_c00429{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);}
.m30_c00429{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m37_c00429{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.md_c00429{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);}
.m40_c00429{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);}
.m42_c00429{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00429{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00429{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);}
.mc_c00429{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00429{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m38_c00429{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);}
.m20_c00429{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m44_c00429{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);}
.m3b_c00429{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00429{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m12_c00429{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);}
.m11_c00429{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00429{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00429{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m4_c00429{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00429{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m7_c00429{transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);}
.v1_c00429{vertical-align:-8.640000px;}
.v0_c00429{vertical-align:0.000000px;}
.ls1_c00429{letter-spacing:0.000000px;}
.ls0_c00429{letter-spacing:96.961680px;}
.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;}
}
.ws2_c00429{word-spacing:0.000000px;}
.ws0_c00429{word-spacing:15.598771px;}
.ws1_c00429{word-spacing:53.884480px;}
.fc0_c00429{color:transparent;}
.fs5_c00429{font-size:34.560000px;}
.fs10_c00429{font-size:37.440000px;}
.fsf_c00429{font-size:40.320000px;}
.fs11_c00429{font-size:43.200000px;}
.fsd_c00429{font-size:46.080000px;}
.fs3_c00429{font-size:48.960000px;}
.fs4_c00429{font-size:51.840000px;}
.fs7_c00429{font-size:54.720000px;}
.fse_c00429{font-size:57.600000px;}
.fs1_c00429{font-size:60.480000px;}
.fsc_c00429{font-size:63.360000px;}
.fsb_c00429{font-size:66.240000px;}
.fs6_c00429{font-size:69.120000px;}
.fs8_c00429{font-size:72.000000px;}
.fs0_c00429{font-size:74.880000px;}
.fs2_c00429{font-size:77.760000px;}
.fs9_c00429{font-size:97.920000px;}
.fsa_c00429{font-size:103.680000px;}
.y0_c00429{bottom:0.000000px;}
.y7e_c00429{bottom:13.680000px;}
.y7d_c00429{bottom:17.280000px;}
.y7c_c00429{bottom:46.080000px;}
.y7a_c00429{bottom:46.800000px;}
.y79_c00429{bottom:48.240000px;}
.y7b_c00429{bottom:48.960000px;}
.y74_c00429{bottom:76.320000px;}
.y75_c00429{bottom:77.760000px;}
.y76_c00429{bottom:78.480000px;}
.y73_c00429{bottom:79.200000px;}
.y78_c00429{bottom:80.640000px;}
.y77_c00429{bottom:81.360000px;}
.y72_c00429{bottom:113.760000px;}
.y6e_c00429{bottom:119.520000px;}
.y6f_c00429{bottom:121.680000px;}
.y71_c00429{bottom:122.400000px;}
.y6d_c00429{bottom:123.120000px;}
.y70_c00429{bottom:124.560000px;}
.y6b_c00429{bottom:164.160000px;}
.y6a_c00429{bottom:164.880000px;}
.y6c_c00429{bottom:167.760000px;}
.y65_c00429{bottom:195.840000px;}
.y66_c00429{bottom:196.560000px;}
.y68_c00429{bottom:197.280000px;}
.y64_c00429{bottom:198.000000px;}
.y82_c00429{bottom:198.720000px;}
.y67_c00429{bottom:199.440000px;}
.y69_c00429{bottom:200.160000px;}
.y81_c00429{bottom:200.880000px;}
.y63_c00429{bottom:239.040000px;}
.y62_c00429{bottom:240.480000px;}
.y61_c00429{bottom:242.640000px;}
.y5d_c00429{bottom:272.160000px;}
.y5e_c00429{bottom:272.880000px;}
.y80_c00429{bottom:273.600000px;}
.y5c_c00429{bottom:274.320000px;}
.y60_c00429{bottom:275.040000px;}
.y5f_c00429{bottom:275.760000px;}
.y5b_c00429{bottom:315.360000px;}
.y5a_c00429{bottom:316.800000px;}
.y57_c00429{bottom:347.040000px;}
.y58_c00429{bottom:349.200000px;}
.y56_c00429{bottom:349.920000px;}
.y7f_c00429{bottom:350.640000px;}
.y59_c00429{bottom:351.360000px;}
.y55_c00429{bottom:391.680000px;}
.y53_c00429{bottom:392.400000px;}
.y54_c00429{bottom:395.280000px;}
.y50_c00429{bottom:423.360000px;}
.y4f_c00429{bottom:425.520000px;}
.y51_c00429{bottom:426.960000px;}
.y52_c00429{bottom:427.680000px;}
.y49_c00429{bottom:467.280000px;}
.y47_c00429{bottom:468.720000px;}
.y46_c00429{bottom:469.440000px;}
.y48_c00429{bottom:470.880000px;}
.y44_c00429{bottom:499.680000px;}
.y4d_c00429{bottom:501.120000px;}
.y43_c00429{bottom:501.840000px;}
.y45_c00429{bottom:503.280000px;}
.y4e_c00429{bottom:504.720000px;}
.y42_c00429{bottom:542.880000px;}
.y40_c00429{bottom:544.320000px;}
.y3f_c00429{bottom:545.040000px;}
.y41_c00429{bottom:546.480000px;}
.y3c_c00429{bottom:575.280000px;}
.y3d_c00429{bottom:576.720000px;}
.y3b_c00429{bottom:577.440000px;}
.y4c_c00429{bottom:578.160000px;}
.y3e_c00429{bottom:578.880000px;}
.y4b_c00429{bottom:579.600000px;}
.y3a_c00429{bottom:618.480000px;}
.y37_c00429{bottom:619.920000px;}
.y38_c00429{bottom:620.640000px;}
.y39_c00429{bottom:622.080000px;}
.y34_c00429{bottom:650.160000px;}
.y36_c00429{bottom:652.320000px;}
.y33_c00429{bottom:653.040000px;}
.y35_c00429{bottom:654.480000px;}
.y4a_c00429{bottom:655.200000px;}
.y32_c00429{bottom:694.080000px;}
.y30_c00429{bottom:695.520000px;}
.y31_c00429{bottom:697.680000px;}
.y2b_c00429{bottom:725.760000px;}
.y2e_c00429{bottom:727.200000px;}
.y2a_c00429{bottom:727.920000px;}
.y2f_c00429{bottom:728.640000px;}
.y2d_c00429{bottom:729.360000px;}
.y2c_c00429{bottom:730.080000px;}
.y23_c00429{bottom:769.680000px;}
.y21_c00429{bottom:771.120000px;}
.y22_c00429{bottom:772.560000px;}
.y1f_c00429{bottom:801.360000px;}
.y1e_c00429{bottom:803.520000px;}
.y29_c00429{bottom:804.240000px;}
.y20_c00429{bottom:804.960000px;}
.y28_c00429{bottom:805.680000px;}
.y1d_c00429{bottom:838.080000px;}
.y1a_c00429{bottom:844.560000px;}
.y1b_c00429{bottom:846.000000px;}
.y19_c00429{bottom:846.720000px;}
.y27_c00429{bottom:847.440000px;}
.y1c_c00429{bottom:848.160000px;}
.y18_c00429{bottom:888.480000px;}
.y16_c00429{bottom:889.200000px;}
.y17_c00429{bottom:891.360000px;}
.y13_c00429{bottom:920.160000px;}
.y14_c00429{bottom:922.320000px;}
.y12_c00429{bottom:923.040000px;}
.y15_c00429{bottom:923.760000px;}
.y11_c00429{bottom:956.880000px;}
.yf_c00429{bottom:964.080000px;}
.y10_c00429{bottom:965.520000px;}
.y25_c00429{bottom:966.240000px;}
.ye_c00429{bottom:966.960000px;}
.yd_c00429{bottom:967.680000px;}
.y24_c00429{bottom:968.400000px;}
.y26_c00429{bottom:969.120000px;}
.yc_c00429{bottom:1008.000000px;}
.ya_c00429{bottom:1008.720000px;}
.y9_c00429{bottom:1009.440000px;}
.yb_c00429{bottom:1010.880000px;}
.y3_c00429{bottom:1039.680000px;}
.y8_c00429{bottom:1041.120000px;}
.y4_c00429{bottom:1041.840000px;}
.y2_c00429{bottom:1042.560000px;}
.y6_c00429{bottom:1043.280000px;}
.y5_c00429{bottom:1044.000000px;}
.y7_c00429{bottom:1044.720000px;}
.y1_c00429{bottom:1134.000000px;}
.h7_c00429{height:31.100625px;}
.h12_c00429{height:33.692344px;}
.h11_c00429{height:36.284062px;}
.h13_c00429{height:38.875781px;}
.hf_c00429{height:41.467500px;}
.h5_c00429{height:44.059219px;}
.h6_c00429{height:46.650937px;}
.h9_c00429{height:49.242656px;}
.h10_c00429{height:51.834375px;}
.h3_c00429{height:54.426094px;}
.he_c00429{height:57.017812px;}
.hd_c00429{height:59.609531px;}
.h8_c00429{height:62.201250px;}
.ha_c00429{height:64.792969px;}
.h2_c00429{height:67.384687px;}
.h4_c00429{height:69.976406px;}
.hb_c00429{height:88.118437px;}
.hc_c00429{height:93.301875px;}
.h1_c00429{height:1161.000000px;}
.h0_c00429{height:1161.360000px;}
.w0_c00429{width:756.720000px;}
.w1_c00429{width:756.750000px;}
.x0_c00429{left:0.000000px;}
.x2_c00429{left:48.960000px;}
.x27_c00429{left:50.400000px;}
.x23_c00429{left:123.120000px;}
.x3_c00429{left:124.560000px;}
.xc_c00429{left:167.760000px;}
.x10_c00429{left:178.560000px;}
.x25_c00429{left:210.960000px;}
.x15_c00429{left:221.040000px;}
.x4_c00429{left:222.480000px;}
.x1c_c00429{left:253.440000px;}
.x19_c00429{left:254.880000px;}
.xd_c00429{left:264.960000px;}
.x18_c00429{left:276.480000px;}
.x1d_c00429{left:298.080000px;}
.x5_c00429{left:308.880000px;}
.x16_c00429{left:319.680000px;}
.xf_c00429{left:341.280000px;}
.x11_c00429{left:352.080000px;}
.x6_c00429{left:361.440000px;}
.x28_c00429{left:362.880000px;}
.x1e_c00429{left:383.760000px;}
.xe_c00429{left:394.560000px;}
.x7_c00429{left:406.080000px;}
.x21_c00429{left:417.600000px;}
.x1f_c00429{left:427.680000px;}
.x17_c00429{left:438.480000px;}
.x8_c00429{left:449.280000px;}
.x24_c00429{left:460.080000px;}
.x22_c00429{left:471.600000px;}
.x12_c00429{left:492.480000px;}
.x1a_c00429{left:493.920000px;}
.x26_c00429{left:516.240000px;}
.x9_c00429{left:526.320000px;}
.x1b_c00429{left:537.840000px;}
.xa_c00429{left:578.880000px;}
.x13_c00429{left:613.440000px;}
.x29_c00429{left:646.560000px;}
.x14_c00429{left:656.640000px;}
.x1_c00429{left:673.200000px;}
.xb_c00429{left:689.040000px;}
.x20_c00429{left:690.480000px;}
@media print{
.v1_c00429{vertical-align:-7.680000pt;}
.v0_c00429{vertical-align:0.000000pt;}
.ls1_c00429{letter-spacing:0.000000pt;}
.ls0_c00429{letter-spacing:86.188160pt;}
.ws2_c00429{word-spacing:0.000000pt;}
.ws0_c00429{word-spacing:13.865574pt;}
.ws1_c00429{word-spacing:47.897316pt;}
.fs5_c00429{font-size:30.720000pt;}
.fs10_c00429{font-size:33.280000pt;}
.fsf_c00429{font-size:35.840000pt;}
.fs11_c00429{font-size:38.400000pt;}
.fsd_c00429{font-size:40.960000pt;}
.fs3_c00429{font-size:43.520000pt;}
.fs4_c00429{font-size:46.080000pt;}
.fs7_c00429{font-size:48.640000pt;}
.fse_c00429{font-size:51.200000pt;}
.fs1_c00429{font-size:53.760000pt;}
.fsc_c00429{font-size:56.320000pt;}
.fsb_c00429{font-size:58.880000pt;}
.fs6_c00429{font-size:61.440000pt;}
.fs8_c00429{font-size:64.000000pt;}
.fs0_c00429{font-size:66.560000pt;}
.fs2_c00429{font-size:69.120000pt;}
.fs9_c00429{font-size:87.040000pt;}
.fsa_c00429{font-size:92.160000pt;}
.y0_c00429{bottom:0.000000pt;}
.y7e_c00429{bottom:12.160000pt;}
.y7d_c00429{bottom:15.360000pt;}
.y7c_c00429{bottom:40.960000pt;}
.y7a_c00429{bottom:41.600000pt;}
.y79_c00429{bottom:42.880000pt;}
.y7b_c00429{bottom:43.520000pt;}
.y74_c00429{bottom:67.840000pt;}
.y75_c00429{bottom:69.120000pt;}
.y76_c00429{bottom:69.760000pt;}
.y73_c00429{bottom:70.400000pt;}
.y78_c00429{bottom:71.680000pt;}
.y77_c00429{bottom:72.320000pt;}
.y72_c00429{bottom:101.120000pt;}
.y6e_c00429{bottom:106.240000pt;}
.y6f_c00429{bottom:108.160000pt;}
.y71_c00429{bottom:108.800000pt;}
.y6d_c00429{bottom:109.440000pt;}
.y70_c00429{bottom:110.720000pt;}
.y6b_c00429{bottom:145.920000pt;}
.y6a_c00429{bottom:146.560000pt;}
.y6c_c00429{bottom:149.120000pt;}
.y65_c00429{bottom:174.080000pt;}
.y66_c00429{bottom:174.720000pt;}
.y68_c00429{bottom:175.360000pt;}
.y64_c00429{bottom:176.000000pt;}
.y82_c00429{bottom:176.640000pt;}
.y67_c00429{bottom:177.280000pt;}
.y69_c00429{bottom:177.920000pt;}
.y81_c00429{bottom:178.560000pt;}
.y63_c00429{bottom:212.480000pt;}
.y62_c00429{bottom:213.760000pt;}
.y61_c00429{bottom:215.680000pt;}
.y5d_c00429{bottom:241.920000pt;}
.y5e_c00429{bottom:242.560000pt;}
.y80_c00429{bottom:243.200000pt;}
.y5c_c00429{bottom:243.840000pt;}
.y60_c00429{bottom:244.480000pt;}
.y5f_c00429{bottom:245.120000pt;}
.y5b_c00429{bottom:280.320000pt;}
.y5a_c00429{bottom:281.600000pt;}
.y57_c00429{bottom:308.480000pt;}
.y58_c00429{bottom:310.400000pt;}
.y56_c00429{bottom:311.040000pt;}
.y7f_c00429{bottom:311.680000pt;}
.y59_c00429{bottom:312.320000pt;}
.y55_c00429{bottom:348.160000pt;}
.y53_c00429{bottom:348.800000pt;}
.y54_c00429{bottom:351.360000pt;}
.y50_c00429{bottom:376.320000pt;}
.y4f_c00429{bottom:378.240000pt;}
.y51_c00429{bottom:379.520000pt;}
.y52_c00429{bottom:380.160000pt;}
.y49_c00429{bottom:415.360000pt;}
.y47_c00429{bottom:416.640000pt;}
.y46_c00429{bottom:417.280000pt;}
.y48_c00429{bottom:418.560000pt;}
.y44_c00429{bottom:444.160000pt;}
.y4d_c00429{bottom:445.440000pt;}
.y43_c00429{bottom:446.080000pt;}
.y45_c00429{bottom:447.360000pt;}
.y4e_c00429{bottom:448.640000pt;}
.y42_c00429{bottom:482.560000pt;}
.y40_c00429{bottom:483.840000pt;}
.y3f_c00429{bottom:484.480000pt;}
.y41_c00429{bottom:485.760000pt;}
.y3c_c00429{bottom:511.360000pt;}
.y3d_c00429{bottom:512.640000pt;}
.y3b_c00429{bottom:513.280000pt;}
.y4c_c00429{bottom:513.920000pt;}
.y3e_c00429{bottom:514.560000pt;}
.y4b_c00429{bottom:515.200000pt;}
.y3a_c00429{bottom:549.760000pt;}
.y37_c00429{bottom:551.040000pt;}
.y38_c00429{bottom:551.680000pt;}
.y39_c00429{bottom:552.960000pt;}
.y34_c00429{bottom:577.920000pt;}
.y36_c00429{bottom:579.840000pt;}
.y33_c00429{bottom:580.480000pt;}
.y35_c00429{bottom:581.760000pt;}
.y4a_c00429{bottom:582.400000pt;}
.y32_c00429{bottom:616.960000pt;}
.y30_c00429{bottom:618.240000pt;}
.y31_c00429{bottom:620.160000pt;}
.y2b_c00429{bottom:645.120000pt;}
.y2e_c00429{bottom:646.400000pt;}
.y2a_c00429{bottom:647.040000pt;}
.y2f_c00429{bottom:647.680000pt;}
.y2d_c00429{bottom:648.320000pt;}
.y2c_c00429{bottom:648.960000pt;}
.y23_c00429{bottom:684.160000pt;}
.y21_c00429{bottom:685.440000pt;}
.y22_c00429{bottom:686.720000pt;}
.y1f_c00429{bottom:712.320000pt;}
.y1e_c00429{bottom:714.240000pt;}
.y29_c00429{bottom:714.880000pt;}
.y20_c00429{bottom:715.520000pt;}
.y28_c00429{bottom:716.160000pt;}
.y1d_c00429{bottom:744.960000pt;}
.y1a_c00429{bottom:750.720000pt;}
.y1b_c00429{bottom:752.000000pt;}
.y19_c00429{bottom:752.640000pt;}
.y27_c00429{bottom:753.280000pt;}
.y1c_c00429{bottom:753.920000pt;}
.y18_c00429{bottom:789.760000pt;}
.y16_c00429{bottom:790.400000pt;}
.y17_c00429{bottom:792.320000pt;}
.y13_c00429{bottom:817.920000pt;}
.y14_c00429{bottom:819.840000pt;}
.y12_c00429{bottom:820.480000pt;}
.y15_c00429{bottom:821.120000pt;}
.y11_c00429{bottom:850.560000pt;}
.yf_c00429{bottom:856.960000pt;}
.y10_c00429{bottom:858.240000pt;}
.y25_c00429{bottom:858.880000pt;}
.ye_c00429{bottom:859.520000pt;}
.yd_c00429{bottom:860.160000pt;}
.y24_c00429{bottom:860.800000pt;}
.y26_c00429{bottom:861.440000pt;}
.yc_c00429{bottom:896.000000pt;}
.ya_c00429{bottom:896.640000pt;}
.y9_c00429{bottom:897.280000pt;}
.yb_c00429{bottom:898.560000pt;}
.y3_c00429{bottom:924.160000pt;}
.y8_c00429{bottom:925.440000pt;}
.y4_c00429{bottom:926.080000pt;}
.y2_c00429{bottom:926.720000pt;}
.y6_c00429{bottom:927.360000pt;}
.y5_c00429{bottom:928.000000pt;}
.y7_c00429{bottom:928.640000pt;}
.y1_c00429{bottom:1008.000000pt;}
.h7_c00429{height:27.645000pt;}
.h12_c00429{height:29.948750pt;}
.h11_c00429{height:32.252500pt;}
.h13_c00429{height:34.556250pt;}
.hf_c00429{height:36.860000pt;}
.h5_c00429{height:39.163750pt;}
.h6_c00429{height:41.467500pt;}
.h9_c00429{height:43.771250pt;}
.h10_c00429{height:46.075000pt;}
.h3_c00429{height:48.378750pt;}
.he_c00429{height:50.682500pt;}
.hd_c00429{height:52.986250pt;}
.h8_c00429{height:55.290000pt;}
.ha_c00429{height:57.593750pt;}
.h2_c00429{height:59.897500pt;}
.h4_c00429{height:62.201250pt;}
.hb_c00429{height:78.327500pt;}
.hc_c00429{height:82.935000pt;}
.h1_c00429{height:1032.000000pt;}
.h0_c00429{height:1032.320000pt;}
.w0_c00429{width:672.640000pt;}
.w1_c00429{width:672.666667pt;}
.x0_c00429{left:0.000000pt;}
.x2_c00429{left:43.520000pt;}
.x27_c00429{left:44.800000pt;}
.x23_c00429{left:109.440000pt;}
.x3_c00429{left:110.720000pt;}
.xc_c00429{left:149.120000pt;}
.x10_c00429{left:158.720000pt;}
.x25_c00429{left:187.520000pt;}
.x15_c00429{left:196.480000pt;}
.x4_c00429{left:197.760000pt;}
.x1c_c00429{left:225.280000pt;}
.x19_c00429{left:226.560000pt;}
.xd_c00429{left:235.520000pt;}
.x18_c00429{left:245.760000pt;}
.x1d_c00429{left:264.960000pt;}
.x5_c00429{left:274.560000pt;}
.x16_c00429{left:284.160000pt;}
.xf_c00429{left:303.360000pt;}
.x11_c00429{left:312.960000pt;}
.x6_c00429{left:321.280000pt;}
.x28_c00429{left:322.560000pt;}
.x1e_c00429{left:341.120000pt;}
.xe_c00429{left:350.720000pt;}
.x7_c00429{left:360.960000pt;}
.x21_c00429{left:371.200000pt;}
.x1f_c00429{left:380.160000pt;}
.x17_c00429{left:389.760000pt;}
.x8_c00429{left:399.360000pt;}
.x24_c00429{left:408.960000pt;}
.x22_c00429{left:419.200000pt;}
.x12_c00429{left:437.760000pt;}
.x1a_c00429{left:439.040000pt;}
.x26_c00429{left:458.880000pt;}
.x9_c00429{left:467.840000pt;}
.x1b_c00429{left:478.080000pt;}
.xa_c00429{left:514.560000pt;}
.x13_c00429{left:545.280000pt;}
.x29_c00429{left:574.720000pt;}
.x14_c00429{left:583.680000pt;}
.x1_c00429{left:598.400000pt;}
.xb_c00429{left:612.480000pt;}
.x20_c00429{left:613.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_99651e9b9cd909ac597af459.woff2')format("woff");}.ff1_c00430{font-family:ff1_c00430;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3d_c00430{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.m3f_c00430{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m10_c00430{transform:matrix(0.233450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233450,0.000000,0.000000,0.250000,0,0);}
.m45_c00430{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m38_c00430{transform:matrix(0.239425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239425,0.000000,0.000000,0.250000,0,0);}
.m40_c00430{transform:matrix(0.243775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243775,0.000000,0.000000,0.250000,0,0);}
.m44_c00430{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);}
.m29_c00430{transform:matrix(0.247275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247275,0.000000,0.000000,0.250000,0,0);}
.m36_c00430{transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);}
.m7_c00430{transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);}
.m39_c00430{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);}
.m2e_c00430{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);}
.m42_c00430{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);}
.m23_c00430{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m2_c00430{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m14_c00430{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m22_c00430{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);}
.m3b_c00430{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_c00430{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);}
.m48_c00430{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m9_c00430{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.md_c00430{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_c00430{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m12_c00430{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00430{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m13_c00430{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m20_c00430{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m8_c00430{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m5_c00430{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m11_c00430{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.ma_c00430{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00430{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m19_c00430{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m16_c00430{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m37_c00430{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m28_c00430{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m25_c00430{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m32_c00430{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.mc_c00430{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00430{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00430{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00430{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m15_c00430{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m1_c00430{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m41_c00430{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m0_c00430{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);}
.m1d_c00430{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.mb_c00430{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);}
.m27_c00430{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);}
.m1c_c00430{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.mf_c00430{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);}
.m2d_c00430{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);}
.m3a_c00430{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.me_c00430{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m49_c00430{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m47_c00430{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m34_c00430{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);}
.m35_c00430{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m21_c00430{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);}
.m2b_c00430{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m24_c00430{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m31_c00430{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);}
.m30_c00430{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00430{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00430{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m4_c00430{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);}
.m3_c00430{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m26_c00430{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);}
.m1e_c00430{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);}
.m6_c00430{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m33_c00430{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m46_c00430{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00430{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00430{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);}
.m43_c00430{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.v4_c00430{vertical-align:-2.880000px;}
.v0_c00430{vertical-align:0.000000px;}
.v2_c00430{vertical-align:2.880000px;}
.v3_c00430{vertical-align:8.640000px;}
.v1_c00430{vertical-align:14.400000px;}
.ls0_c00430{letter-spacing:0.000000px;}
.sc__c00430{text-shadow:none;}
.sc0_c00430{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00430{-webkit-text-stroke:0px transparent;}
.sc0_c00430{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00430{word-spacing:-4.433040px;}
.ws5_c00430{word-spacing:0.000000px;}
.ws0_c00430{word-spacing:3.584640px;}
.ws4_c00430{word-spacing:10.267200px;}
.ws1_c00430{word-spacing:190.368000px;}
.ws2_c00430{word-spacing:470.689200px;}
.fc0_c00430{color:transparent;}
.fs4_c00430{font-size:37.440000px;}
.fsa_c00430{font-size:43.200000px;}
.fsb_c00430{font-size:46.080000px;}
.fs7_c00430{font-size:48.960000px;}
.fs3_c00430{font-size:51.840000px;}
.fs6_c00430{font-size:54.720000px;}
.fs9_c00430{font-size:57.600000px;}
.fs5_c00430{font-size:60.480000px;}
.fs1_c00430{font-size:63.360000px;}
.fsd_c00430{font-size:66.240000px;}
.fsc_c00430{font-size:69.120000px;}
.fs0_c00430{font-size:72.000000px;}
.fs2_c00430{font-size:74.880000px;}
.fs8_c00430{font-size:77.760000px;}
.y0_c00430{bottom:0.000000px;}
.y82_c00430{bottom:56.160000px;}
.y83_c00430{bottom:56.880000px;}
.y7f_c00430{bottom:59.040000px;}
.y81_c00430{bottom:60.480000px;}
.y80_c00430{bottom:61.200000px;}
.y7b_c00430{bottom:99.360000px;}
.y79_c00430{bottom:101.520000px;}
.y7d_c00430{bottom:102.240000px;}
.y7a_c00430{bottom:102.960000px;}
.y7e_c00430{bottom:103.680000px;}
.y7c_c00430{bottom:104.400000px;}
.y75_c00430{bottom:142.560000px;}
.y78_c00430{bottom:144.720000px;}
.y77_c00430{bottom:145.440000px;}
.y72_c00430{bottom:146.160000px;}
.y74_c00430{bottom:146.880000px;}
.y73_c00430{bottom:147.600000px;}
.y76_c00430{bottom:148.320000px;}
.y6e_c00430{bottom:187.200000px;}
.y70_c00430{bottom:188.640000px;}
.y6c_c00430{bottom:189.360000px;}
.y71_c00430{bottom:190.080000px;}
.y6f_c00430{bottom:190.800000px;}
.y6d_c00430{bottom:191.520000px;}
.y6a_c00430{bottom:230.400000px;}
.y67_c00430{bottom:232.560000px;}
.y69_c00430{bottom:234.000000px;}
.y68_c00430{bottom:234.720000px;}
.y6b_c00430{bottom:235.440000px;}
.y64_c00430{bottom:272.880000px;}
.y66_c00430{bottom:274.320000px;}
.y63_c00430{bottom:275.760000px;}
.y65_c00430{bottom:277.920000px;}
.y5e_c00430{bottom:316.800000px;}
.y60_c00430{bottom:317.520000px;}
.y62_c00430{bottom:318.240000px;}
.y5d_c00430{bottom:319.680000px;}
.y5f_c00430{bottom:321.120000px;}
.y61_c00430{bottom:321.840000px;}
.y58_c00430{bottom:360.000000px;}
.y5a_c00430{bottom:360.720000px;}
.y5c_c00430{bottom:361.440000px;}
.y57_c00430{bottom:362.160000px;}
.y5b_c00430{bottom:362.880000px;}
.y59_c00430{bottom:364.320000px;}
.y53_c00430{bottom:403.200000px;}
.y56_c00430{bottom:404.640000px;}
.y55_c00430{bottom:405.360000px;}
.y51_c00430{bottom:406.080000px;}
.y54_c00430{bottom:406.800000px;}
.y52_c00430{bottom:407.520000px;}
.y4d_c00430{bottom:446.400000px;}
.y4f_c00430{bottom:447.840000px;}
.y4c_c00430{bottom:448.560000px;}
.y50_c00430{bottom:449.280000px;}
.y4e_c00430{bottom:450.000000px;}
.y47_c00430{bottom:489.600000px;}
.y4a_c00430{bottom:491.040000px;}
.y4b_c00430{bottom:491.760000px;}
.y46_c00430{bottom:492.480000px;}
.y49_c00430{bottom:493.200000px;}
.y48_c00430{bottom:493.920000px;}
.y43_c00430{bottom:534.240000px;}
.y44_c00430{bottom:534.960000px;}
.y45_c00430{bottom:537.120000px;}
.y41_c00430{bottom:565.200000px;}
.y3d_c00430{bottom:565.920000px;}
.y40_c00430{bottom:566.640000px;}
.y42_c00430{bottom:567.360000px;}
.y3c_c00430{bottom:568.080000px;}
.y3e_c00430{bottom:568.800000px;}
.y3f_c00430{bottom:569.520000px;}
.y39_c00430{bottom:608.400000px;}
.y36_c00430{bottom:609.120000px;}
.y37_c00430{bottom:610.560000px;}
.y35_c00430{bottom:611.280000px;}
.y38_c00430{bottom:612.000000px;}
.y3a_c00430{bottom:612.720000px;}
.y3b_c00430{bottom:613.440000px;}
.y30_c00430{bottom:651.600000px;}
.y33_c00430{bottom:652.320000px;}
.y31_c00430{bottom:653.760000px;}
.y2f_c00430{bottom:654.480000px;}
.y34_c00430{bottom:655.200000px;}
.y32_c00430{bottom:655.920000px;}
.y2d_c00430{bottom:696.240000px;}
.y2e_c00430{bottom:699.840000px;}
.y29_c00430{bottom:727.920000px;}
.y28_c00430{bottom:729.360000px;}
.y2a_c00430{bottom:730.080000px;}
.y2c_c00430{bottom:731.520000px;}
.y2b_c00430{bottom:732.240000px;}
.y27_c00430{bottom:771.840000px;}
.y25_c00430{bottom:773.280000px;}
.y26_c00430{bottom:775.440000px;}
.y21_c00430{bottom:804.240000px;}
.y20_c00430{bottom:805.680000px;}
.y24_c00430{bottom:806.400000px;}
.y23_c00430{bottom:807.120000px;}
.y22_c00430{bottom:807.840000px;}
.y1f_c00430{bottom:846.720000px;}
.y1e_c00430{bottom:848.880000px;}
.y1d_c00430{bottom:849.600000px;}
.y19_c00430{bottom:879.120000px;}
.y1a_c00430{bottom:880.560000px;}
.y1c_c00430{bottom:881.280000px;}
.y17_c00430{bottom:882.000000px;}
.y1b_c00430{bottom:882.720000px;}
.y18_c00430{bottom:884.160000px;}
.y15_c00430{bottom:923.040000px;}
.y13_c00430{bottom:924.480000px;}
.y16_c00430{bottom:925.200000px;}
.y14_c00430{bottom:926.640000px;}
.y11_c00430{bottom:965.520000px;}
.y12_c00430{bottom:966.960000px;}
.yf_c00430{bottom:967.680000px;}
.y10_c00430{bottom:969.120000px;}
.yb_c00430{bottom:1008.720000px;}
.ye_c00430{bottom:1009.440000px;}
.yd_c00430{bottom:1010.160000px;}
.y9_c00430{bottom:1010.880000px;}
.yc_c00430{bottom:1011.600000px;}
.ya_c00430{bottom:1013.040000px;}
.y6_c00430{bottom:1051.200000px;}
.y3_c00430{bottom:1051.920000px;}
.y2_c00430{bottom:1053.360000px;}
.y7_c00430{bottom:1054.080000px;}
.y5_c00430{bottom:1054.800000px;}
.y4_c00430{bottom:1055.520000px;}
.y8_c00430{bottom:1056.240000px;}
.y1_c00430{bottom:1114.560000px;}
.h6_c00430{height:33.692344px;}
.hc_c00430{height:38.875781px;}
.hd_c00430{height:41.467500px;}
.h9_c00430{height:44.059219px;}
.h5_c00430{height:46.650937px;}
.h8_c00430{height:49.242656px;}
.hb_c00430{height:51.834375px;}
.h7_c00430{height:54.426094px;}
.h11_c00430{height:54.714375px;}
.h3_c00430{height:57.017812px;}
.hf_c00430{height:59.609531px;}
.he_c00430{height:62.201250px;}
.h2_c00430{height:64.792969px;}
.h4_c00430{height:67.384687px;}
.h10_c00430{height:68.826094px;}
.ha_c00430{height:69.976406px;}
.h1_c00430{height:1164.000000px;}
.h0_c00430{height:1164.240000px;}
.w0_c00430{width:762.480000px;}
.w1_c00430{width:762.750000px;}
.x0_c00430{left:0.000000px;}
.x2_c00430{left:44.640000px;}
.x15_c00430{left:119.520000px;}
.x3_c00430{left:120.960000px;}
.x1e_c00430{left:122.400000px;}
.x22_c00430{left:141.840000px;}
.xd_c00430{left:164.160000px;}
.x28_c00430{left:173.520000px;}
.x27_c00430{left:174.960000px;}
.x23_c00430{left:185.040000px;}
.x1a_c00430{left:195.120000px;}
.x4_c00430{left:207.360000px;}
.x14_c00430{left:216.720000px;}
.x20_c00430{left:227.520000px;}
.x16_c00430{left:228.960000px;}
.x24_c00430{left:239.760000px;}
.x1b_c00430{left:250.560000px;}
.x5_c00430{left:261.360000px;}
.x25_c00430{left:281.520000px;}
.x17_c00430{left:282.960000px;}
.x6_c00430{left:303.840000px;}
.x1c_c00430{left:314.640000px;}
.x26_c00430{left:325.440000px;}
.x21_c00430{left:336.960000px;}
.x1f_c00430{left:347.760000px;}
.xe_c00430{left:369.360000px;}
.x7_c00430{left:401.760000px;}
.x18_c00430{left:412.560000px;}
.xf_c00430{left:423.360000px;}
.x8_c00430{left:455.760000px;}
.x10_c00430{left:467.280000px;}
.x11_c00430{left:511.200000px;}
.x12_c00430{left:521.280000px;}
.x9_c00430{left:522.720000px;}
.x1d_c00430{left:574.560000px;}
.x29_c00430{left:607.680000px;}
.xa_c00430{left:609.120000px;}
.x13_c00430{left:641.520000px;}
.xb_c00430{left:651.600000px;}
.x1_c00430{left:655.200000px;}
.xc_c00430{left:684.720000px;}
.x19_c00430{left:705.600000px;}
@media print{
.v4_c00430{vertical-align:-2.560000pt;}
.v0_c00430{vertical-align:0.000000pt;}
.v2_c00430{vertical-align:2.560000pt;}
.v3_c00430{vertical-align:7.680000pt;}
.v1_c00430{vertical-align:12.800000pt;}
.ls0_c00430{letter-spacing:0.000000pt;}
.ws3_c00430{word-spacing:-3.940480pt;}
.ws5_c00430{word-spacing:0.000000pt;}
.ws0_c00430{word-spacing:3.186347pt;}
.ws4_c00430{word-spacing:9.126400pt;}
.ws1_c00430{word-spacing:169.216000pt;}
.ws2_c00430{word-spacing:418.390400pt;}
.fs4_c00430{font-size:33.280000pt;}
.fsa_c00430{font-size:38.400000pt;}
.fsb_c00430{font-size:40.960000pt;}
.fs7_c00430{font-size:43.520000pt;}
.fs3_c00430{font-size:46.080000pt;}
.fs6_c00430{font-size:48.640000pt;}
.fs9_c00430{font-size:51.200000pt;}
.fs5_c00430{font-size:53.760000pt;}
.fs1_c00430{font-size:56.320000pt;}
.fsd_c00430{font-size:58.880000pt;}
.fsc_c00430{font-size:61.440000pt;}
.fs0_c00430{font-size:64.000000pt;}
.fs2_c00430{font-size:66.560000pt;}
.fs8_c00430{font-size:69.120000pt;}
.y0_c00430{bottom:0.000000pt;}
.y82_c00430{bottom:49.920000pt;}
.y83_c00430{bottom:50.560000pt;}
.y7f_c00430{bottom:52.480000pt;}
.y81_c00430{bottom:53.760000pt;}
.y80_c00430{bottom:54.400000pt;}
.y7b_c00430{bottom:88.320000pt;}
.y79_c00430{bottom:90.240000pt;}
.y7d_c00430{bottom:90.880000pt;}
.y7a_c00430{bottom:91.520000pt;}
.y7e_c00430{bottom:92.160000pt;}
.y7c_c00430{bottom:92.800000pt;}
.y75_c00430{bottom:126.720000pt;}
.y78_c00430{bottom:128.640000pt;}
.y77_c00430{bottom:129.280000pt;}
.y72_c00430{bottom:129.920000pt;}
.y74_c00430{bottom:130.560000pt;}
.y73_c00430{bottom:131.200000pt;}
.y76_c00430{bottom:131.840000pt;}
.y6e_c00430{bottom:166.400000pt;}
.y70_c00430{bottom:167.680000pt;}
.y6c_c00430{bottom:168.320000pt;}
.y71_c00430{bottom:168.960000pt;}
.y6f_c00430{bottom:169.600000pt;}
.y6d_c00430{bottom:170.240000pt;}
.y6a_c00430{bottom:204.800000pt;}
.y67_c00430{bottom:206.720000pt;}
.y69_c00430{bottom:208.000000pt;}
.y68_c00430{bottom:208.640000pt;}
.y6b_c00430{bottom:209.280000pt;}
.y64_c00430{bottom:242.560000pt;}
.y66_c00430{bottom:243.840000pt;}
.y63_c00430{bottom:245.120000pt;}
.y65_c00430{bottom:247.040000pt;}
.y5e_c00430{bottom:281.600000pt;}
.y60_c00430{bottom:282.240000pt;}
.y62_c00430{bottom:282.880000pt;}
.y5d_c00430{bottom:284.160000pt;}
.y5f_c00430{bottom:285.440000pt;}
.y61_c00430{bottom:286.080000pt;}
.y58_c00430{bottom:320.000000pt;}
.y5a_c00430{bottom:320.640000pt;}
.y5c_c00430{bottom:321.280000pt;}
.y57_c00430{bottom:321.920000pt;}
.y5b_c00430{bottom:322.560000pt;}
.y59_c00430{bottom:323.840000pt;}
.y53_c00430{bottom:358.400000pt;}
.y56_c00430{bottom:359.680000pt;}
.y55_c00430{bottom:360.320000pt;}
.y51_c00430{bottom:360.960000pt;}
.y54_c00430{bottom:361.600000pt;}
.y52_c00430{bottom:362.240000pt;}
.y4d_c00430{bottom:396.800000pt;}
.y4f_c00430{bottom:398.080000pt;}
.y4c_c00430{bottom:398.720000pt;}
.y50_c00430{bottom:399.360000pt;}
.y4e_c00430{bottom:400.000000pt;}
.y47_c00430{bottom:435.200000pt;}
.y4a_c00430{bottom:436.480000pt;}
.y4b_c00430{bottom:437.120000pt;}
.y46_c00430{bottom:437.760000pt;}
.y49_c00430{bottom:438.400000pt;}
.y48_c00430{bottom:439.040000pt;}
.y43_c00430{bottom:474.880000pt;}
.y44_c00430{bottom:475.520000pt;}
.y45_c00430{bottom:477.440000pt;}
.y41_c00430{bottom:502.400000pt;}
.y3d_c00430{bottom:503.040000pt;}
.y40_c00430{bottom:503.680000pt;}
.y42_c00430{bottom:504.320000pt;}
.y3c_c00430{bottom:504.960000pt;}
.y3e_c00430{bottom:505.600000pt;}
.y3f_c00430{bottom:506.240000pt;}
.y39_c00430{bottom:540.800000pt;}
.y36_c00430{bottom:541.440000pt;}
.y37_c00430{bottom:542.720000pt;}
.y35_c00430{bottom:543.360000pt;}
.y38_c00430{bottom:544.000000pt;}
.y3a_c00430{bottom:544.640000pt;}
.y3b_c00430{bottom:545.280000pt;}
.y30_c00430{bottom:579.200000pt;}
.y33_c00430{bottom:579.840000pt;}
.y31_c00430{bottom:581.120000pt;}
.y2f_c00430{bottom:581.760000pt;}
.y34_c00430{bottom:582.400000pt;}
.y32_c00430{bottom:583.040000pt;}
.y2d_c00430{bottom:618.880000pt;}
.y2e_c00430{bottom:622.080000pt;}
.y29_c00430{bottom:647.040000pt;}
.y28_c00430{bottom:648.320000pt;}
.y2a_c00430{bottom:648.960000pt;}
.y2c_c00430{bottom:650.240000pt;}
.y2b_c00430{bottom:650.880000pt;}
.y27_c00430{bottom:686.080000pt;}
.y25_c00430{bottom:687.360000pt;}
.y26_c00430{bottom:689.280000pt;}
.y21_c00430{bottom:714.880000pt;}
.y20_c00430{bottom:716.160000pt;}
.y24_c00430{bottom:716.800000pt;}
.y23_c00430{bottom:717.440000pt;}
.y22_c00430{bottom:718.080000pt;}
.y1f_c00430{bottom:752.640000pt;}
.y1e_c00430{bottom:754.560000pt;}
.y1d_c00430{bottom:755.200000pt;}
.y19_c00430{bottom:781.440000pt;}
.y1a_c00430{bottom:782.720000pt;}
.y1c_c00430{bottom:783.360000pt;}
.y17_c00430{bottom:784.000000pt;}
.y1b_c00430{bottom:784.640000pt;}
.y18_c00430{bottom:785.920000pt;}
.y15_c00430{bottom:820.480000pt;}
.y13_c00430{bottom:821.760000pt;}
.y16_c00430{bottom:822.400000pt;}
.y14_c00430{bottom:823.680000pt;}
.y11_c00430{bottom:858.240000pt;}
.y12_c00430{bottom:859.520000pt;}
.yf_c00430{bottom:860.160000pt;}
.y10_c00430{bottom:861.440000pt;}
.yb_c00430{bottom:896.640000pt;}
.ye_c00430{bottom:897.280000pt;}
.yd_c00430{bottom:897.920000pt;}
.y9_c00430{bottom:898.560000pt;}
.yc_c00430{bottom:899.200000pt;}
.ya_c00430{bottom:900.480000pt;}
.y6_c00430{bottom:934.400000pt;}
.y3_c00430{bottom:935.040000pt;}
.y2_c00430{bottom:936.320000pt;}
.y7_c00430{bottom:936.960000pt;}
.y5_c00430{bottom:937.600000pt;}
.y4_c00430{bottom:938.240000pt;}
.y8_c00430{bottom:938.880000pt;}
.y1_c00430{bottom:990.720000pt;}
.h6_c00430{height:29.948750pt;}
.hc_c00430{height:34.556250pt;}
.hd_c00430{height:36.860000pt;}
.h9_c00430{height:39.163750pt;}
.h5_c00430{height:41.467500pt;}
.h8_c00430{height:43.771250pt;}
.hb_c00430{height:46.075000pt;}
.h7_c00430{height:48.378750pt;}
.h11_c00430{height:48.635000pt;}
.h3_c00430{height:50.682500pt;}
.hf_c00430{height:52.986250pt;}
.he_c00430{height:55.290000pt;}
.h2_c00430{height:57.593750pt;}
.h4_c00430{height:59.897500pt;}
.h10_c00430{height:61.178750pt;}
.ha_c00430{height:62.201250pt;}
.h1_c00430{height:1034.666667pt;}
.h0_c00430{height:1034.880000pt;}
.w0_c00430{width:677.760000pt;}
.w1_c00430{width:678.000000pt;}
.x0_c00430{left:0.000000pt;}
.x2_c00430{left:39.680000pt;}
.x15_c00430{left:106.240000pt;}
.x3_c00430{left:107.520000pt;}
.x1e_c00430{left:108.800000pt;}
.x22_c00430{left:126.080000pt;}
.xd_c00430{left:145.920000pt;}
.x28_c00430{left:154.240000pt;}
.x27_c00430{left:155.520000pt;}
.x23_c00430{left:164.480000pt;}
.x1a_c00430{left:173.440000pt;}
.x4_c00430{left:184.320000pt;}
.x14_c00430{left:192.640000pt;}
.x20_c00430{left:202.240000pt;}
.x16_c00430{left:203.520000pt;}
.x24_c00430{left:213.120000pt;}
.x1b_c00430{left:222.720000pt;}
.x5_c00430{left:232.320000pt;}
.x25_c00430{left:250.240000pt;}
.x17_c00430{left:251.520000pt;}
.x6_c00430{left:270.080000pt;}
.x1c_c00430{left:279.680000pt;}
.x26_c00430{left:289.280000pt;}
.x21_c00430{left:299.520000pt;}
.x1f_c00430{left:309.120000pt;}
.xe_c00430{left:328.320000pt;}
.x7_c00430{left:357.120000pt;}
.x18_c00430{left:366.720000pt;}
.xf_c00430{left:376.320000pt;}
.x8_c00430{left:405.120000pt;}
.x10_c00430{left:415.360000pt;}
.x11_c00430{left:454.400000pt;}
.x12_c00430{left:463.360000pt;}
.x9_c00430{left:464.640000pt;}
.x1d_c00430{left:510.720000pt;}
.x29_c00430{left:540.160000pt;}
.xa_c00430{left:541.440000pt;}
.x13_c00430{left:570.240000pt;}
.xb_c00430{left:579.200000pt;}
.x1_c00430{left:582.400000pt;}
.xc_c00430{left:608.640000pt;}
.x19_c00430{left:627.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_cf627ca6deacc9abe6192e2d.woff2')format("woff");}.ff1_c00431{font-family:ff1_c00431;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m37_c00431{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00431{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m39_c00431{transform:matrix(0.233975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233975,0.000000,0.000000,0.250000,0,0);}
.m9_c00431{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m4c_c00431{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m4b_c00431{transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);}
.m34_c00431{transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);}
.m3c_c00431{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m3a_c00431{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);}
.m47_c00431{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);}
.m45_c00431{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m23_c00431{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);}
.m3b_c00431{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m6_c00431{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00431{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);}
.m50_c00431{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_c00431{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);}
.m38_c00431{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.mc_c00431{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m13_c00431{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m43_c00431{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m2_c00431{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);}
.m2c_c00431{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00431{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.md_c00431{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m18_c00431{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m42_c00431{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m17_c00431{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m25_c00431{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.me_c00431{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m48_c00431{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m19_c00431{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m16_c00431{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00431{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m46_c00431{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m7_c00431{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m22_c00431{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m14_c00431{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00431{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m36_c00431{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m21_c00431{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);}
.m4e_c00431{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);}
.m32_c00431{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00431{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m41_c00431{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m15_c00431{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m11_c00431{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00431{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m10_c00431{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);}
.m3f_c00431{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1_c00431{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m44_c00431{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m0_c00431{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);}
.m2a_c00431{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m28_c00431{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00431{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);}
.m3e_c00431{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);}
.m33_c00431{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00431{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m20_c00431{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m30_c00431{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);}
.m24_c00431{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m27_c00431{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m31_c00431{transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00431{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_c00431{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_c00431{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);}
.m29_c00431{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m4_c00431{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);}
.m35_c00431{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);}
.m2b_c00431{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.mb_c00431{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m5_c00431{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m3_c00431{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00431{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m40_c00431{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.m26_c00431{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);}
.ma_c00431{transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);}
.m49_c00431{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00431{transform:matrix(0.980000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.980000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.980000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00431{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.v2_c00431{vertical-align:-5.760000px;}
.v0_c00431{vertical-align:0.000000px;}
.v3_c00431{vertical-align:5.760000px;}
.v1_c00431{vertical-align:11.520000px;}
.ls0_c00431{letter-spacing:0.000000px;}
.sc__c00431{text-shadow:none;}
.sc0_c00431{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00431{-webkit-text-stroke:0px transparent;}
.sc0_c00431{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00431{word-spacing:0.000000px;}
.ws2_c00431{word-spacing:26.326320px;}
.ws3_c00431{word-spacing:30.368157px;}
.ws1_c00431{word-spacing:64.368320px;}
.ws4_c00431{word-spacing:133.794000px;}
.ws5_c00431{word-spacing:134.619600px;}
.ws6_c00431{word-spacing:139.704000px;}
.ws0_c00431{word-spacing:193.708754px;}
.fc0_c00431{color:transparent;}
.fs9_c00431{font-size:14.400000px;}
.fsf_c00431{font-size:17.280000px;}
.fsa_c00431{font-size:20.160000px;}
.fs3_c00431{font-size:34.560000px;}
.fs8_c00431{font-size:43.200000px;}
.fs7_c00431{font-size:46.080000px;}
.fs4_c00431{font-size:48.960000px;}
.fs5_c00431{font-size:51.840000px;}
.fs2_c00431{font-size:54.720000px;}
.fs6_c00431{font-size:57.600000px;}
.fs1_c00431{font-size:60.480000px;}
.fse_c00431{font-size:63.360000px;}
.fsb_c00431{font-size:66.240000px;}
.fsc_c00431{font-size:69.120000px;}
.fs0_c00431{font-size:72.000000px;}
.fs10_c00431{font-size:74.880000px;}
.fsd_c00431{font-size:77.760000px;}
.y0_c00431{bottom:0.000000px;}
.y9f_c00431{bottom:141.120000px;}
.y9e_c00431{bottom:141.840000px;}
.y9c_c00431{bottom:144.000000px;}
.y9d_c00431{bottom:145.440000px;}
.y99_c00431{bottom:163.440000px;}
.y98_c00431{bottom:164.160000px;}
.y97_c00431{bottom:165.600000px;}
.y9a_c00431{bottom:166.320000px;}
.y9b_c00431{bottom:167.040000px;}
.y94_c00431{bottom:185.040000px;}
.y96_c00431{bottom:185.760000px;}
.y95_c00431{bottom:186.480000px;}
.y92_c00431{bottom:187.920000px;}
.y93_c00431{bottom:188.640000px;}
.y90_c00431{bottom:206.640000px;}
.y91_c00431{bottom:207.360000px;}
.y8e_c00431{bottom:209.520000px;}
.y8f_c00431{bottom:210.240000px;}
.y8c_c00431{bottom:228.240000px;}
.y8d_c00431{bottom:228.960000px;}
.y8a_c00431{bottom:230.400000px;}
.y8b_c00431{bottom:231.120000px;}
.y88_c00431{bottom:249.840000px;}
.y89_c00431{bottom:250.560000px;}
.y86_c00431{bottom:252.000000px;}
.y87_c00431{bottom:253.440000px;}
.y83_c00431{bottom:267.840000px;}
.y84_c00431{bottom:271.440000px;}
.y82_c00431{bottom:272.160000px;}
.y81_c00431{bottom:272.880000px;}
.y85_c00431{bottom:275.040000px;}
.y7e_c00431{bottom:293.040000px;}
.y7f_c00431{bottom:293.760000px;}
.y80_c00431{bottom:294.480000px;}
.y7b_c00431{bottom:295.200000px;}
.y7d_c00431{bottom:295.920000px;}
.y7c_c00431{bottom:296.640000px;}
.y78_c00431{bottom:314.640000px;}
.y79_c00431{bottom:315.360000px;}
.y77_c00431{bottom:316.800000px;}
.y7a_c00431{bottom:318.240000px;}
.y74_c00431{bottom:336.240000px;}
.y73_c00431{bottom:336.960000px;}
.y75_c00431{bottom:337.680000px;}
.y72_c00431{bottom:338.400000px;}
.y76_c00431{bottom:339.120000px;}
.y70_c00431{bottom:358.560000px;}
.y71_c00431{bottom:359.280000px;}
.y6e_c00431{bottom:360.720000px;}
.y6f_c00431{bottom:361.440000px;}
.y6c_c00431{bottom:380.880000px;}
.y6b_c00431{bottom:381.600000px;}
.y6d_c00431{bottom:382.320000px;}
.y67_c00431{bottom:401.760000px;}
.y6a_c00431{bottom:402.480000px;}
.y69_c00431{bottom:403.200000px;}
.y66_c00431{bottom:403.920000px;}
.y68_c00431{bottom:404.640000px;}
.y64_c00431{bottom:424.080000px;}
.y61_c00431{bottom:425.520000px;}
.y63_c00431{bottom:426.240000px;}
.y62_c00431{bottom:426.960000px;}
.y65_c00431{bottom:427.680000px;}
.y5e_c00431{bottom:444.960000px;}
.y60_c00431{bottom:445.680000px;}
.y5f_c00431{bottom:446.400000px;}
.y5d_c00431{bottom:447.840000px;}
.y5c_c00431{bottom:449.280000px;}
.y59_c00431{bottom:467.280000px;}
.y5a_c00431{bottom:468.000000px;}
.y5b_c00431{bottom:470.160000px;}
.y58_c00431{bottom:470.880000px;}
.y56_c00431{bottom:488.880000px;}
.y57_c00431{bottom:489.600000px;}
.y55_c00431{bottom:492.480000px;}
.y54_c00431{bottom:493.200000px;}
.y53_c00431{bottom:510.480000px;}
.y51_c00431{bottom:511.200000px;}
.y52_c00431{bottom:511.920000px;}
.y50_c00431{bottom:514.800000px;}
.y4f_c00431{bottom:532.080000px;}
.y4e_c00431{bottom:532.800000px;}
.y4d_c00431{bottom:533.520000px;}
.y4b_c00431{bottom:554.400000px;}
.y4c_c00431{bottom:555.120000px;}
.y49_c00431{bottom:555.840000px;}
.y4a_c00431{bottom:556.560000px;}
.y47_c00431{bottom:576.000000px;}
.y48_c00431{bottom:576.720000px;}
.y45_c00431{bottom:577.440000px;}
.y46_c00431{bottom:579.600000px;}
.y44_c00431{bottom:597.600000px;}
.y42_c00431{bottom:598.320000px;}
.y43_c00431{bottom:600.480000px;}
.y40_c00431{bottom:619.200000px;}
.y3f_c00431{bottom:619.920000px;}
.y41_c00431{bottom:622.080000px;}
.y3e_c00431{bottom:622.800000px;}
.y3c_c00431{bottom:640.800000px;}
.y3b_c00431{bottom:643.680000px;}
.y3d_c00431{bottom:644.400000px;}
.y37_c00431{bottom:669.600000px;}
.y3a_c00431{bottom:673.200000px;}
.y39_c00431{bottom:673.920000px;}
.y38_c00431{bottom:674.640000px;}
.y36_c00431{bottom:675.360000px;}
.y35_c00431{bottom:676.080000px;}
.y34_c00431{bottom:726.480000px;}
.y32_c00431{bottom:727.200000px;}
.y33_c00431{bottom:727.920000px;}
.y31_c00431{bottom:748.080000px;}
.y2e_c00431{bottom:748.800000px;}
.y2f_c00431{bottom:750.240000px;}
.y30_c00431{bottom:753.840000px;}
.y2c_c00431{bottom:770.400000px;}
.y2d_c00431{bottom:771.120000px;}
.y2b_c00431{bottom:812.160000px;}
.y29_c00431{bottom:813.600000px;}
.y28_c00431{bottom:815.760000px;}
.y2a_c00431{bottom:816.480000px;}
.y27_c00431{bottom:844.560000px;}
.y25_c00431{bottom:845.280000px;}
.y26_c00431{bottom:846.000000px;}
.y24_c00431{bottom:846.720000px;}
.y23_c00431{bottom:876.960000px;}
.y22_c00431{bottom:877.680000px;}
.y1f_c00431{bottom:878.400000px;}
.y21_c00431{bottom:879.120000px;}
.y1e_c00431{bottom:879.840000px;}
.y20_c00431{bottom:880.560000px;}
.y1d_c00431{bottom:910.080000px;}
.y1b_c00431{bottom:910.800000px;}
.y1c_c00431{bottom:911.520000px;}
.y19_c00431{bottom:912.240000px;}
.y1a_c00431{bottom:912.960000px;}
.y18_c00431{bottom:951.840000px;}
.y17_c00431{bottom:953.280000px;}
.y13_c00431{bottom:954.000000px;}
.y12_c00431{bottom:955.440000px;}
.y14_c00431{bottom:956.160000px;}
.y15_c00431{bottom:957.600000px;}
.y16_c00431{bottom:958.320000px;}
.ye_c00431{bottom:964.800000px;}
.yf_c00431{bottom:966.240000px;}
.yd_c00431{bottom:968.400000px;}
.y11_c00431{bottom:977.040000px;}
.y10_c00431{bottom:977.760000px;}
.yc_c00431{bottom:1017.360000px;}
.ya_c00431{bottom:1018.080000px;}
.y8_c00431{bottom:1018.800000px;}
.yb_c00431{bottom:1020.240000px;}
.y9_c00431{bottom:1020.960000px;}
.y5_c00431{bottom:1061.280000px;}
.y6_c00431{bottom:1062.000000px;}
.y2_c00431{bottom:1062.720000px;}
.y7_c00431{bottom:1063.440000px;}
.y3_c00431{bottom:1064.160000px;}
.y4_c00431{bottom:1064.880000px;}
.y1_c00431{bottom:1115.280000px;}
.hb_c00431{height:12.958594px;}
.h12_c00431{height:15.550313px;}
.hc_c00431{height:18.142031px;}
.h5_c00431{height:31.100625px;}
.ha_c00431{height:38.875781px;}
.h9_c00431{height:41.467500px;}
.h6_c00431{height:44.059219px;}
.h7_c00431{height:46.650937px;}
.h4_c00431{height:49.242656px;}
.h8_c00431{height:51.834375px;}
.h11_c00431{height:52.987500px;}
.h3_c00431{height:54.426094px;}
.h10_c00431{height:57.017812px;}
.hd_c00431{height:59.609531px;}
.he_c00431{height:62.201250px;}
.h2_c00431{height:64.792969px;}
.h13_c00431{height:67.384687px;}
.hf_c00431{height:69.976406px;}
.h1_c00431{height:1167.750000px;}
.h0_c00431{height:1167.840000px;}
.w0_c00431{width:781.920000px;}
.w1_c00431{width:782.250000px;}
.x0_c00431{left:0.000000px;}
.x36_c00431{left:61.920000px;}
.x30_c00431{left:69.120000px;}
.x2_c00431{left:70.560000px;}
.x41_c00431{left:79.920000px;}
.x3b_c00431{left:81.360000px;}
.xc_c00431{left:91.440000px;}
.x20_c00431{left:101.520000px;}
.x42_c00431{left:102.960000px;}
.x31_c00431{left:112.320000px;}
.x3c_c00431{left:123.120000px;}
.x45_c00431{left:133.200000px;}
.x3f_c00431{left:134.640000px;}
.x21_c00431{left:136.080000px;}
.x2b_c00431{left:144.720000px;}
.x3_c00431{left:146.880000px;}
.x32_c00431{left:155.520000px;}
.x33_c00431{left:177.120000px;}
.x4b_c00431{left:187.200000px;}
.x4_c00431{left:188.640000px;}
.x40_c00431{left:190.080000px;}
.x22_c00431{left:200.880000px;}
.x2c_c00431{left:209.520000px;}
.x37_c00431{left:210.960000px;}
.x28_c00431{left:221.040000px;}
.x23_c00431{left:222.480000px;}
.x18_c00431{left:231.840000px;}
.x5_c00431{left:243.360000px;}
.x4a_c00431{left:252.720000px;}
.x34_c00431{left:254.160000px;}
.x29_c00431{left:264.960000px;}
.x24_c00431{left:266.400000px;}
.x2d_c00431{left:275.760000px;}
.x13_c00431{left:277.200000px;}
.x2f_c00431{left:285.120000px;}
.x35_c00431{left:286.560000px;}
.xd_c00431{left:288.000000px;}
.x6_c00431{left:298.080000px;}
.x25_c00431{left:330.480000px;}
.x19_c00431{left:331.920000px;}
.x2a_c00431{left:339.840000px;}
.x14_c00431{left:341.280000px;}
.xe_c00431{left:352.080000px;}
.x1a_c00431{left:361.440000px;}
.x26_c00431{left:372.960000px;}
.x1b_c00431{left:395.280000px;}
.xf_c00431{left:416.880000px;}
.x49_c00431{left:426.240000px;}
.x38_c00431{left:427.680000px;}
.x2e_c00431{left:458.640000px;}
.x1c_c00431{left:460.080000px;}
.x39_c00431{left:470.880000px;}
.x46_c00431{left:480.240000px;}
.x27_c00431{left:481.680000px;}
.x10_c00431{left:483.120000px;}
.x43_c00431{left:491.040000px;}
.x3d_c00431{left:493.200000px;}
.x1d_c00431{left:515.520000px;}
.x47_c00431{left:535.680000px;}
.x48_c00431{left:544.320000px;}
.x44_c00431{left:545.760000px;}
.x7_c00431{left:547.200000px;}
.x11_c00431{left:558.000000px;}
.x1e_c00431{left:568.080000px;}
.x4c_c00431{left:600.480000px;}
.x3e_c00431{left:611.280000px;}
.x3a_c00431{left:612.720000px;}
.x12_c00431{left:622.800000px;}
.x1f_c00431{left:624.240000px;}
.x8_c00431{left:635.040000px;}
.x15_c00431{left:654.480000px;}
.x16_c00431{left:676.800000px;}
.x9_c00431{left:678.240000px;}
.x1_c00431{left:700.560000px;}
.xa_c00431{left:710.640000px;}
.x17_c00431{left:720.000000px;}
.xb_c00431{left:730.800000px;}
@media print{
.v2_c00431{vertical-align:-5.120000pt;}
.v0_c00431{vertical-align:0.000000pt;}
.v3_c00431{vertical-align:5.120000pt;}
.v1_c00431{vertical-align:10.240000pt;}
.ls0_c00431{letter-spacing:0.000000pt;}
.ws7_c00431{word-spacing:0.000000pt;}
.ws2_c00431{word-spacing:23.401173pt;}
.ws3_c00431{word-spacing:26.993917pt;}
.ws1_c00431{word-spacing:57.216284pt;}
.ws4_c00431{word-spacing:118.928000pt;}
.ws5_c00431{word-spacing:119.661867pt;}
.ws6_c00431{word-spacing:124.181333pt;}
.ws0_c00431{word-spacing:172.185559pt;}
.fs9_c00431{font-size:12.800000pt;}
.fsf_c00431{font-size:15.360000pt;}
.fsa_c00431{font-size:17.920000pt;}
.fs3_c00431{font-size:30.720000pt;}
.fs8_c00431{font-size:38.400000pt;}
.fs7_c00431{font-size:40.960000pt;}
.fs4_c00431{font-size:43.520000pt;}
.fs5_c00431{font-size:46.080000pt;}
.fs2_c00431{font-size:48.640000pt;}
.fs6_c00431{font-size:51.200000pt;}
.fs1_c00431{font-size:53.760000pt;}
.fse_c00431{font-size:56.320000pt;}
.fsb_c00431{font-size:58.880000pt;}
.fsc_c00431{font-size:61.440000pt;}
.fs0_c00431{font-size:64.000000pt;}
.fs10_c00431{font-size:66.560000pt;}
.fsd_c00431{font-size:69.120000pt;}
.y0_c00431{bottom:0.000000pt;}
.y9f_c00431{bottom:125.440000pt;}
.y9e_c00431{bottom:126.080000pt;}
.y9c_c00431{bottom:128.000000pt;}
.y9d_c00431{bottom:129.280000pt;}
.y99_c00431{bottom:145.280000pt;}
.y98_c00431{bottom:145.920000pt;}
.y97_c00431{bottom:147.200000pt;}
.y9a_c00431{bottom:147.840000pt;}
.y9b_c00431{bottom:148.480000pt;}
.y94_c00431{bottom:164.480000pt;}
.y96_c00431{bottom:165.120000pt;}
.y95_c00431{bottom:165.760000pt;}
.y92_c00431{bottom:167.040000pt;}
.y93_c00431{bottom:167.680000pt;}
.y90_c00431{bottom:183.680000pt;}
.y91_c00431{bottom:184.320000pt;}
.y8e_c00431{bottom:186.240000pt;}
.y8f_c00431{bottom:186.880000pt;}
.y8c_c00431{bottom:202.880000pt;}
.y8d_c00431{bottom:203.520000pt;}
.y8a_c00431{bottom:204.800000pt;}
.y8b_c00431{bottom:205.440000pt;}
.y88_c00431{bottom:222.080000pt;}
.y89_c00431{bottom:222.720000pt;}
.y86_c00431{bottom:224.000000pt;}
.y87_c00431{bottom:225.280000pt;}
.y83_c00431{bottom:238.080000pt;}
.y84_c00431{bottom:241.280000pt;}
.y82_c00431{bottom:241.920000pt;}
.y81_c00431{bottom:242.560000pt;}
.y85_c00431{bottom:244.480000pt;}
.y7e_c00431{bottom:260.480000pt;}
.y7f_c00431{bottom:261.120000pt;}
.y80_c00431{bottom:261.760000pt;}
.y7b_c00431{bottom:262.400000pt;}
.y7d_c00431{bottom:263.040000pt;}
.y7c_c00431{bottom:263.680000pt;}
.y78_c00431{bottom:279.680000pt;}
.y79_c00431{bottom:280.320000pt;}
.y77_c00431{bottom:281.600000pt;}
.y7a_c00431{bottom:282.880000pt;}
.y74_c00431{bottom:298.880000pt;}
.y73_c00431{bottom:299.520000pt;}
.y75_c00431{bottom:300.160000pt;}
.y72_c00431{bottom:300.800000pt;}
.y76_c00431{bottom:301.440000pt;}
.y70_c00431{bottom:318.720000pt;}
.y71_c00431{bottom:319.360000pt;}
.y6e_c00431{bottom:320.640000pt;}
.y6f_c00431{bottom:321.280000pt;}
.y6c_c00431{bottom:338.560000pt;}
.y6b_c00431{bottom:339.200000pt;}
.y6d_c00431{bottom:339.840000pt;}
.y67_c00431{bottom:357.120000pt;}
.y6a_c00431{bottom:357.760000pt;}
.y69_c00431{bottom:358.400000pt;}
.y66_c00431{bottom:359.040000pt;}
.y68_c00431{bottom:359.680000pt;}
.y64_c00431{bottom:376.960000pt;}
.y61_c00431{bottom:378.240000pt;}
.y63_c00431{bottom:378.880000pt;}
.y62_c00431{bottom:379.520000pt;}
.y65_c00431{bottom:380.160000pt;}
.y5e_c00431{bottom:395.520000pt;}
.y60_c00431{bottom:396.160000pt;}
.y5f_c00431{bottom:396.800000pt;}
.y5d_c00431{bottom:398.080000pt;}
.y5c_c00431{bottom:399.360000pt;}
.y59_c00431{bottom:415.360000pt;}
.y5a_c00431{bottom:416.000000pt;}
.y5b_c00431{bottom:417.920000pt;}
.y58_c00431{bottom:418.560000pt;}
.y56_c00431{bottom:434.560000pt;}
.y57_c00431{bottom:435.200000pt;}
.y55_c00431{bottom:437.760000pt;}
.y54_c00431{bottom:438.400000pt;}
.y53_c00431{bottom:453.760000pt;}
.y51_c00431{bottom:454.400000pt;}
.y52_c00431{bottom:455.040000pt;}
.y50_c00431{bottom:457.600000pt;}
.y4f_c00431{bottom:472.960000pt;}
.y4e_c00431{bottom:473.600000pt;}
.y4d_c00431{bottom:474.240000pt;}
.y4b_c00431{bottom:492.800000pt;}
.y4c_c00431{bottom:493.440000pt;}
.y49_c00431{bottom:494.080000pt;}
.y4a_c00431{bottom:494.720000pt;}
.y47_c00431{bottom:512.000000pt;}
.y48_c00431{bottom:512.640000pt;}
.y45_c00431{bottom:513.280000pt;}
.y46_c00431{bottom:515.200000pt;}
.y44_c00431{bottom:531.200000pt;}
.y42_c00431{bottom:531.840000pt;}
.y43_c00431{bottom:533.760000pt;}
.y40_c00431{bottom:550.400000pt;}
.y3f_c00431{bottom:551.040000pt;}
.y41_c00431{bottom:552.960000pt;}
.y3e_c00431{bottom:553.600000pt;}
.y3c_c00431{bottom:569.600000pt;}
.y3b_c00431{bottom:572.160000pt;}
.y3d_c00431{bottom:572.800000pt;}
.y37_c00431{bottom:595.200000pt;}
.y3a_c00431{bottom:598.400000pt;}
.y39_c00431{bottom:599.040000pt;}
.y38_c00431{bottom:599.680000pt;}
.y36_c00431{bottom:600.320000pt;}
.y35_c00431{bottom:600.960000pt;}
.y34_c00431{bottom:645.760000pt;}
.y32_c00431{bottom:646.400000pt;}
.y33_c00431{bottom:647.040000pt;}
.y31_c00431{bottom:664.960000pt;}
.y2e_c00431{bottom:665.600000pt;}
.y2f_c00431{bottom:666.880000pt;}
.y30_c00431{bottom:670.080000pt;}
.y2c_c00431{bottom:684.800000pt;}
.y2d_c00431{bottom:685.440000pt;}
.y2b_c00431{bottom:721.920000pt;}
.y29_c00431{bottom:723.200000pt;}
.y28_c00431{bottom:725.120000pt;}
.y2a_c00431{bottom:725.760000pt;}
.y27_c00431{bottom:750.720000pt;}
.y25_c00431{bottom:751.360000pt;}
.y26_c00431{bottom:752.000000pt;}
.y24_c00431{bottom:752.640000pt;}
.y23_c00431{bottom:779.520000pt;}
.y22_c00431{bottom:780.160000pt;}
.y1f_c00431{bottom:780.800000pt;}
.y21_c00431{bottom:781.440000pt;}
.y1e_c00431{bottom:782.080000pt;}
.y20_c00431{bottom:782.720000pt;}
.y1d_c00431{bottom:808.960000pt;}
.y1b_c00431{bottom:809.600000pt;}
.y1c_c00431{bottom:810.240000pt;}
.y19_c00431{bottom:810.880000pt;}
.y1a_c00431{bottom:811.520000pt;}
.y18_c00431{bottom:846.080000pt;}
.y17_c00431{bottom:847.360000pt;}
.y13_c00431{bottom:848.000000pt;}
.y12_c00431{bottom:849.280000pt;}
.y14_c00431{bottom:849.920000pt;}
.y15_c00431{bottom:851.200000pt;}
.y16_c00431{bottom:851.840000pt;}
.ye_c00431{bottom:857.600000pt;}
.yf_c00431{bottom:858.880000pt;}
.yd_c00431{bottom:860.800000pt;}
.y11_c00431{bottom:868.480000pt;}
.y10_c00431{bottom:869.120000pt;}
.yc_c00431{bottom:904.320000pt;}
.ya_c00431{bottom:904.960000pt;}
.y8_c00431{bottom:905.600000pt;}
.yb_c00431{bottom:906.880000pt;}
.y9_c00431{bottom:907.520000pt;}
.y5_c00431{bottom:943.360000pt;}
.y6_c00431{bottom:944.000000pt;}
.y2_c00431{bottom:944.640000pt;}
.y7_c00431{bottom:945.280000pt;}
.y3_c00431{bottom:945.920000pt;}
.y4_c00431{bottom:946.560000pt;}
.y1_c00431{bottom:991.360000pt;}
.hb_c00431{height:11.518750pt;}
.h12_c00431{height:13.822500pt;}
.hc_c00431{height:16.126250pt;}
.h5_c00431{height:27.645000pt;}
.ha_c00431{height:34.556250pt;}
.h9_c00431{height:36.860000pt;}
.h6_c00431{height:39.163750pt;}
.h7_c00431{height:41.467500pt;}
.h4_c00431{height:43.771250pt;}
.h8_c00431{height:46.075000pt;}
.h11_c00431{height:47.100000pt;}
.h3_c00431{height:48.378750pt;}
.h10_c00431{height:50.682500pt;}
.hd_c00431{height:52.986250pt;}
.he_c00431{height:55.290000pt;}
.h2_c00431{height:57.593750pt;}
.h13_c00431{height:59.897500pt;}
.hf_c00431{height:62.201250pt;}
.h1_c00431{height:1038.000000pt;}
.h0_c00431{height:1038.080000pt;}
.w0_c00431{width:695.040000pt;}
.w1_c00431{width:695.333333pt;}
.x0_c00431{left:0.000000pt;}
.x36_c00431{left:55.040000pt;}
.x30_c00431{left:61.440000pt;}
.x2_c00431{left:62.720000pt;}
.x41_c00431{left:71.040000pt;}
.x3b_c00431{left:72.320000pt;}
.xc_c00431{left:81.280000pt;}
.x20_c00431{left:90.240000pt;}
.x42_c00431{left:91.520000pt;}
.x31_c00431{left:99.840000pt;}
.x3c_c00431{left:109.440000pt;}
.x45_c00431{left:118.400000pt;}
.x3f_c00431{left:119.680000pt;}
.x21_c00431{left:120.960000pt;}
.x2b_c00431{left:128.640000pt;}
.x3_c00431{left:130.560000pt;}
.x32_c00431{left:138.240000pt;}
.x33_c00431{left:157.440000pt;}
.x4b_c00431{left:166.400000pt;}
.x4_c00431{left:167.680000pt;}
.x40_c00431{left:168.960000pt;}
.x22_c00431{left:178.560000pt;}
.x2c_c00431{left:186.240000pt;}
.x37_c00431{left:187.520000pt;}
.x28_c00431{left:196.480000pt;}
.x23_c00431{left:197.760000pt;}
.x18_c00431{left:206.080000pt;}
.x5_c00431{left:216.320000pt;}
.x4a_c00431{left:224.640000pt;}
.x34_c00431{left:225.920000pt;}
.x29_c00431{left:235.520000pt;}
.x24_c00431{left:236.800000pt;}
.x2d_c00431{left:245.120000pt;}
.x13_c00431{left:246.400000pt;}
.x2f_c00431{left:253.440000pt;}
.x35_c00431{left:254.720000pt;}
.xd_c00431{left:256.000000pt;}
.x6_c00431{left:264.960000pt;}
.x25_c00431{left:293.760000pt;}
.x19_c00431{left:295.040000pt;}
.x2a_c00431{left:302.080000pt;}
.x14_c00431{left:303.360000pt;}
.xe_c00431{left:312.960000pt;}
.x1a_c00431{left:321.280000pt;}
.x26_c00431{left:331.520000pt;}
.x1b_c00431{left:351.360000pt;}
.xf_c00431{left:370.560000pt;}
.x49_c00431{left:378.880000pt;}
.x38_c00431{left:380.160000pt;}
.x2e_c00431{left:407.680000pt;}
.x1c_c00431{left:408.960000pt;}
.x39_c00431{left:418.560000pt;}
.x46_c00431{left:426.880000pt;}
.x27_c00431{left:428.160000pt;}
.x10_c00431{left:429.440000pt;}
.x43_c00431{left:436.480000pt;}
.x3d_c00431{left:438.400000pt;}
.x1d_c00431{left:458.240000pt;}
.x47_c00431{left:476.160000pt;}
.x48_c00431{left:483.840000pt;}
.x44_c00431{left:485.120000pt;}
.x7_c00431{left:486.400000pt;}
.x11_c00431{left:496.000000pt;}
.x1e_c00431{left:504.960000pt;}
.x4c_c00431{left:533.760000pt;}
.x3e_c00431{left:543.360000pt;}
.x3a_c00431{left:544.640000pt;}
.x12_c00431{left:553.600000pt;}
.x1f_c00431{left:554.880000pt;}
.x8_c00431{left:564.480000pt;}
.x15_c00431{left:581.760000pt;}
.x16_c00431{left:601.600000pt;}
.x9_c00431{left:602.880000pt;}
.x1_c00431{left:622.720000pt;}
.xa_c00431{left:631.680000pt;}
.x17_c00431{left:640.000000pt;}
.xb_c00431{left:649.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a94bd14f7513ef331b3d8db4.woff2')format("woff");}.ff1_c00432{font-family:ff1_c00432;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4d_c00432{transform:matrix(0.234525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234525,0.000000,0.000000,0.250000,0,0);}
.m4e_c00432{transform:matrix(0.238150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238150,0.000000,0.000000,0.250000,0,0);}
.m43_c00432{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m46_c00432{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m42_c00432{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);}
.m3a_c00432{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);}
.m38_c00432{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);}
.m3e_c00432{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);}
.m3c_c00432{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);}
.m45_c00432{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);}
.m4a_c00432{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);}
.m2b_c00432{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);}
.m2d_c00432{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m47_c00432{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00432{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);}
.m2c_c00432{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00432{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00432{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m36_c00432{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m9_c00432{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m18_c00432{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m44_c00432{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00432{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00432{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m32_c00432{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00432{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mc_c00432{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m31_c00432{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m4_c00432{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m35_c00432{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m7_c00432{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.md_c00432{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m13_c00432{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m16_c00432{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00432{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);}
.m40_c00432{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m8_c00432{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);}
.m19_c00432{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);}
.m39_c00432{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m12_c00432{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);}
.m30_c00432{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);}
.m3_c00432{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m33_c00432{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m0_c00432{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);}
.me_c00432{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);}
.ma_c00432{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m22_c00432{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);}
.m26_c00432{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m15_c00432{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);}
.m24_c00432{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);}
.m29_c00432{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00432{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m5_c00432{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m1_c00432{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);}
.m3f_c00432{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);}
.m1d_c00432{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);}
.m2_c00432{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00432{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m41_c00432{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m11_c00432{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m49_c00432{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.mf_c00432{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m34_c00432{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00432{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m10_c00432{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m21_c00432{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m14_c00432{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m20_c00432{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m27_c00432{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m17_c00432{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00432{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.mb_c00432{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);}
.m25_c00432{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m6_c00432{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00432{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00432{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);}
.m28_c00432{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m37_c00432{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m23_c00432{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);}
.m48_c00432{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.v0_c00432{vertical-align:0.000000px;}
.v1_c00432{vertical-align:2.880000px;}
.ls0_c00432{letter-spacing:0.000000px;}
.sc__c00432{text-shadow:none;}
.sc0_c00432{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00432{-webkit-text-stroke:0px transparent;}
.sc0_c00432{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00432{word-spacing:0.000000px;}
.ws0_c00432{word-spacing:9.474000px;}
.ws1_c00432{word-spacing:11.693143px;}
.fc0_c00432{color:transparent;}
.fs8_c00432{font-size:37.440000px;}
.fs0_c00432{font-size:48.960000px;}
.fs2_c00432{font-size:51.840000px;}
.fs4_c00432{font-size:54.720000px;}
.fs7_c00432{font-size:57.600000px;}
.fs1_c00432{font-size:60.480000px;}
.fs3_c00432{font-size:63.360000px;}
.fs5_c00432{font-size:66.240000px;}
.fs6_c00432{font-size:69.120000px;}
.fs9_c00432{font-size:72.000000px;}
.fsb_c00432{font-size:74.880000px;}
.fsa_c00432{font-size:77.760000px;}
.y0_c00432{bottom:0.000000px;}
.y6f_c00432{bottom:15.840000px;}
.y70_c00432{bottom:17.280000px;}
.y72_c00432{bottom:18.720000px;}
.y6e_c00432{bottom:19.440000px;}
.y73_c00432{bottom:20.160000px;}
.y71_c00432{bottom:20.880000px;}
.y75_c00432{bottom:21.600000px;}
.y74_c00432{bottom:22.320000px;}
.y6d_c00432{bottom:58.320000px;}
.y6b_c00432{bottom:59.040000px;}
.y6a_c00432{bottom:59.760000px;}
.y6c_c00432{bottom:61.200000px;}
.y67_c00432{bottom:90.720000px;}
.y68_c00432{bottom:92.160000px;}
.y76_c00432{bottom:92.880000px;}
.y66_c00432{bottom:93.600000px;}
.y69_c00432{bottom:94.320000px;}
.y64_c00432{bottom:133.920000px;}
.y62_c00432{bottom:135.360000px;}
.y63_c00432{bottom:137.520000px;}
.y5f_c00432{bottom:166.320000px;}
.y60_c00432{bottom:167.760000px;}
.y5e_c00432{bottom:169.920000px;}
.y61_c00432{bottom:170.640000px;}
.y65_c00432{bottom:171.360000px;}
.y5d_c00432{bottom:209.520000px;}
.y5c_c00432{bottom:213.840000px;}
.y57_c00432{bottom:242.640000px;}
.y5b_c00432{bottom:243.360000px;}
.y5a_c00432{bottom:244.080000px;}
.y56_c00432{bottom:244.800000px;}
.y58_c00432{bottom:245.520000px;}
.y59_c00432{bottom:246.240000px;}
.y52_c00432{bottom:285.120000px;}
.y54_c00432{bottom:285.840000px;}
.y53_c00432{bottom:287.280000px;}
.y55_c00432{bottom:288.000000px;}
.y51_c00432{bottom:288.720000px;}
.y4e_c00432{bottom:329.040000px;}
.y4d_c00432{bottom:329.760000px;}
.y4c_c00432{bottom:330.480000px;}
.y4b_c00432{bottom:331.200000px;}
.y4f_c00432{bottom:332.640000px;}
.y50_c00432{bottom:333.360000px;}
.y4a_c00432{bottom:372.960000px;}
.y48_c00432{bottom:373.680000px;}
.y49_c00432{bottom:375.840000px;}
.y46_c00432{bottom:405.360000px;}
.y44_c00432{bottom:406.800000px;}
.y47_c00432{bottom:407.520000px;}
.y45_c00432{bottom:408.240000px;}
.y3b_c00432{bottom:448.560000px;}
.y3a_c00432{bottom:451.440000px;}
.y38_c00432{bottom:480.960000px;}
.y37_c00432{bottom:481.680000px;}
.y35_c00432{bottom:482.400000px;}
.y39_c00432{bottom:483.120000px;}
.y36_c00432{bottom:483.840000px;}
.y32_c00432{bottom:523.440000px;}
.y34_c00432{bottom:524.880000px;}
.y33_c00432{bottom:527.040000px;}
.y31_c00432{bottom:556.560000px;}
.y2f_c00432{bottom:557.280000px;}
.y2d_c00432{bottom:558.000000px;}
.y30_c00432{bottom:558.720000px;}
.y2e_c00432{bottom:559.440000px;}
.y2b_c00432{bottom:600.480000px;}
.y2c_c00432{bottom:603.360000px;}
.y27_c00432{bottom:632.880000px;}
.y29_c00432{bottom:633.600000px;}
.y2a_c00432{bottom:634.320000px;}
.y43_c00432{bottom:635.040000px;}
.y28_c00432{bottom:635.760000px;}
.y25_c00432{bottom:676.080000px;}
.y26_c00432{bottom:679.680000px;}
.y24_c00432{bottom:708.480000px;}
.y23_c00432{bottom:709.200000px;}
.y21_c00432{bottom:709.920000px;}
.y22_c00432{bottom:711.360000px;}
.y20_c00432{bottom:751.680000px;}
.y1e_c00432{bottom:752.400000px;}
.y1c_c00432{bottom:753.120000px;}
.y1f_c00432{bottom:754.560000px;}
.y1d_c00432{bottom:755.280000px;}
.y1a_c00432{bottom:794.880000px;}
.y1b_c00432{bottom:795.600000px;}
.y18_c00432{bottom:796.320000px;}
.y19_c00432{bottom:798.480000px;}
.y16_c00432{bottom:838.080000px;}
.y15_c00432{bottom:838.800000px;}
.y42_c00432{bottom:839.520000px;}
.y13_c00432{bottom:840.240000px;}
.y17_c00432{bottom:840.960000px;}
.y14_c00432{bottom:841.680000px;}
.y41_c00432{bottom:881.280000px;}
.y11_c00432{bottom:882.000000px;}
.yf_c00432{bottom:882.720000px;}
.y12_c00432{bottom:884.160000px;}
.y10_c00432{bottom:884.880000px;}
.y3f_c00432{bottom:924.480000px;}
.yd_c00432{bottom:925.200000px;}
.yb_c00432{bottom:925.920000px;}
.y40_c00432{bottom:926.640000px;}
.ye_c00432{bottom:927.360000px;}
.yc_c00432{bottom:928.080000px;}
.y3e_c00432{bottom:967.680000px;}
.y8_c00432{bottom:968.400000px;}
.ya_c00432{bottom:970.560000px;}
.y9_c00432{bottom:971.280000px;}
.y3d_c00432{bottom:1010.160000px;}
.y6_c00432{bottom:1010.880000px;}
.y5_c00432{bottom:1011.600000px;}
.y3_c00432{bottom:1012.320000px;}
.y7_c00432{bottom:1013.040000px;}
.y4_c00432{bottom:1013.760000px;}
.y2_c00432{bottom:1055.520000px;}
.y1_c00432{bottom:1057.680000px;}
.y3c_c00432{bottom:1113.120000px;}
.ha_c00432{height:33.692344px;}
.h2_c00432{height:44.059219px;}
.h4_c00432{height:46.650937px;}
.h6_c00432{height:49.242656px;}
.h9_c00432{height:51.834375px;}
.h3_c00432{height:54.426094px;}
.hc_c00432{height:54.714375px;}
.h5_c00432{height:57.017812px;}
.h7_c00432{height:59.609531px;}
.h8_c00432{height:62.201250px;}
.hb_c00432{height:64.792969px;}
.he_c00432{height:67.384687px;}
.hd_c00432{height:69.976406px;}
.h1_c00432{height:1165.500000px;}
.h0_c00432{height:1165.680000px;}
.w0_c00432{width:778.320000px;}
.w1_c00432{width:778.500000px;}
.x0_c00432{left:0.000000px;}
.x4_c00432{left:69.120000px;}
.x1_c00432{left:123.120000px;}
.x18_c00432{left:142.560000px;}
.x2_c00432{left:144.000000px;}
.xa_c00432{left:186.480000px;}
.x5_c00432{left:187.920000px;}
.x2d_c00432{left:196.560000px;}
.xf_c00432{left:198.000000px;}
.x13_c00432{left:208.080000px;}
.x1d_c00432{left:229.680000px;}
.x3_c00432{left:240.480000px;}
.x8_c00432{left:241.920000px;}
.x10_c00432{left:262.080000px;}
.x28_c00432{left:272.880000px;}
.x1f_c00432{left:284.400000px;}
.xc_c00432{left:295.200000px;}
.x6_c00432{left:306.000000px;}
.x29_c00432{left:327.600000px;}
.x20_c00432{left:338.400000px;}
.x21_c00432{left:349.200000px;}
.xd_c00432{left:360.000000px;}
.x2a_c00432{left:370.080000px;}
.x9_c00432{left:381.600000px;}
.x11_c00432{left:391.680000px;}
.xb_c00432{left:393.120000px;}
.x14_c00432{left:402.480000px;}
.x2c_c00432{left:413.280000px;}
.x2e_c00432{left:423.360000px;}
.x12_c00432{left:446.400000px;}
.x15_c00432{left:457.920000px;}
.x2f_c00432{left:467.280000px;}
.x2b_c00432{left:478.080000px;}
.xe_c00432{left:489.600000px;}
.x16_c00432{left:510.480000px;}
.x7_c00432{left:544.320000px;}
.x17_c00432{left:565.200000px;}
.x30_c00432{left:598.320000px;}
.x25_c00432{left:630.000000px;}
.x1a_c00432{left:632.160000px;}
.x22_c00432{left:642.960000px;}
.x1e_c00432{left:663.840000px;}
.x1b_c00432{left:665.280000px;}
.x31_c00432{left:673.920000px;}
.x23_c00432{left:675.360000px;}
.x19_c00432{left:681.840000px;}
.x1c_c00432{left:697.680000px;}
.x26_c00432{left:707.040000px;}
.x24_c00432{left:708.480000px;}
.x27_c00432{left:727.920000px;}
@media print{
.v0_c00432{vertical-align:0.000000pt;}
.v1_c00432{vertical-align:2.560000pt;}
.ls0_c00432{letter-spacing:0.000000pt;}
.ws2_c00432{word-spacing:0.000000pt;}
.ws0_c00432{word-spacing:8.421333pt;}
.ws1_c00432{word-spacing:10.393905pt;}
.fs8_c00432{font-size:33.280000pt;}
.fs0_c00432{font-size:43.520000pt;}
.fs2_c00432{font-size:46.080000pt;}
.fs4_c00432{font-size:48.640000pt;}
.fs7_c00432{font-size:51.200000pt;}
.fs1_c00432{font-size:53.760000pt;}
.fs3_c00432{font-size:56.320000pt;}
.fs5_c00432{font-size:58.880000pt;}
.fs6_c00432{font-size:61.440000pt;}
.fs9_c00432{font-size:64.000000pt;}
.fsb_c00432{font-size:66.560000pt;}
.fsa_c00432{font-size:69.120000pt;}
.y0_c00432{bottom:0.000000pt;}
.y6f_c00432{bottom:14.080000pt;}
.y70_c00432{bottom:15.360000pt;}
.y72_c00432{bottom:16.640000pt;}
.y6e_c00432{bottom:17.280000pt;}
.y73_c00432{bottom:17.920000pt;}
.y71_c00432{bottom:18.560000pt;}
.y75_c00432{bottom:19.200000pt;}
.y74_c00432{bottom:19.840000pt;}
.y6d_c00432{bottom:51.840000pt;}
.y6b_c00432{bottom:52.480000pt;}
.y6a_c00432{bottom:53.120000pt;}
.y6c_c00432{bottom:54.400000pt;}
.y67_c00432{bottom:80.640000pt;}
.y68_c00432{bottom:81.920000pt;}
.y76_c00432{bottom:82.560000pt;}
.y66_c00432{bottom:83.200000pt;}
.y69_c00432{bottom:83.840000pt;}
.y64_c00432{bottom:119.040000pt;}
.y62_c00432{bottom:120.320000pt;}
.y63_c00432{bottom:122.240000pt;}
.y5f_c00432{bottom:147.840000pt;}
.y60_c00432{bottom:149.120000pt;}
.y5e_c00432{bottom:151.040000pt;}
.y61_c00432{bottom:151.680000pt;}
.y65_c00432{bottom:152.320000pt;}
.y5d_c00432{bottom:186.240000pt;}
.y5c_c00432{bottom:190.080000pt;}
.y57_c00432{bottom:215.680000pt;}
.y5b_c00432{bottom:216.320000pt;}
.y5a_c00432{bottom:216.960000pt;}
.y56_c00432{bottom:217.600000pt;}
.y58_c00432{bottom:218.240000pt;}
.y59_c00432{bottom:218.880000pt;}
.y52_c00432{bottom:253.440000pt;}
.y54_c00432{bottom:254.080000pt;}
.y53_c00432{bottom:255.360000pt;}
.y55_c00432{bottom:256.000000pt;}
.y51_c00432{bottom:256.640000pt;}
.y4e_c00432{bottom:292.480000pt;}
.y4d_c00432{bottom:293.120000pt;}
.y4c_c00432{bottom:293.760000pt;}
.y4b_c00432{bottom:294.400000pt;}
.y4f_c00432{bottom:295.680000pt;}
.y50_c00432{bottom:296.320000pt;}
.y4a_c00432{bottom:331.520000pt;}
.y48_c00432{bottom:332.160000pt;}
.y49_c00432{bottom:334.080000pt;}
.y46_c00432{bottom:360.320000pt;}
.y44_c00432{bottom:361.600000pt;}
.y47_c00432{bottom:362.240000pt;}
.y45_c00432{bottom:362.880000pt;}
.y3b_c00432{bottom:398.720000pt;}
.y3a_c00432{bottom:401.280000pt;}
.y38_c00432{bottom:427.520000pt;}
.y37_c00432{bottom:428.160000pt;}
.y35_c00432{bottom:428.800000pt;}
.y39_c00432{bottom:429.440000pt;}
.y36_c00432{bottom:430.080000pt;}
.y32_c00432{bottom:465.280000pt;}
.y34_c00432{bottom:466.560000pt;}
.y33_c00432{bottom:468.480000pt;}
.y31_c00432{bottom:494.720000pt;}
.y2f_c00432{bottom:495.360000pt;}
.y2d_c00432{bottom:496.000000pt;}
.y30_c00432{bottom:496.640000pt;}
.y2e_c00432{bottom:497.280000pt;}
.y2b_c00432{bottom:533.760000pt;}
.y2c_c00432{bottom:536.320000pt;}
.y27_c00432{bottom:562.560000pt;}
.y29_c00432{bottom:563.200000pt;}
.y2a_c00432{bottom:563.840000pt;}
.y43_c00432{bottom:564.480000pt;}
.y28_c00432{bottom:565.120000pt;}
.y25_c00432{bottom:600.960000pt;}
.y26_c00432{bottom:604.160000pt;}
.y24_c00432{bottom:629.760000pt;}
.y23_c00432{bottom:630.400000pt;}
.y21_c00432{bottom:631.040000pt;}
.y22_c00432{bottom:632.320000pt;}
.y20_c00432{bottom:668.160000pt;}
.y1e_c00432{bottom:668.800000pt;}
.y1c_c00432{bottom:669.440000pt;}
.y1f_c00432{bottom:670.720000pt;}
.y1d_c00432{bottom:671.360000pt;}
.y1a_c00432{bottom:706.560000pt;}
.y1b_c00432{bottom:707.200000pt;}
.y18_c00432{bottom:707.840000pt;}
.y19_c00432{bottom:709.760000pt;}
.y16_c00432{bottom:744.960000pt;}
.y15_c00432{bottom:745.600000pt;}
.y42_c00432{bottom:746.240000pt;}
.y13_c00432{bottom:746.880000pt;}
.y17_c00432{bottom:747.520000pt;}
.y14_c00432{bottom:748.160000pt;}
.y41_c00432{bottom:783.360000pt;}
.y11_c00432{bottom:784.000000pt;}
.yf_c00432{bottom:784.640000pt;}
.y12_c00432{bottom:785.920000pt;}
.y10_c00432{bottom:786.560000pt;}
.y3f_c00432{bottom:821.760000pt;}
.yd_c00432{bottom:822.400000pt;}
.yb_c00432{bottom:823.040000pt;}
.y40_c00432{bottom:823.680000pt;}
.ye_c00432{bottom:824.320000pt;}
.yc_c00432{bottom:824.960000pt;}
.y3e_c00432{bottom:860.160000pt;}
.y8_c00432{bottom:860.800000pt;}
.ya_c00432{bottom:862.720000pt;}
.y9_c00432{bottom:863.360000pt;}
.y3d_c00432{bottom:897.920000pt;}
.y6_c00432{bottom:898.560000pt;}
.y5_c00432{bottom:899.200000pt;}
.y3_c00432{bottom:899.840000pt;}
.y7_c00432{bottom:900.480000pt;}
.y4_c00432{bottom:901.120000pt;}
.y2_c00432{bottom:938.240000pt;}
.y1_c00432{bottom:940.160000pt;}
.y3c_c00432{bottom:989.440000pt;}
.ha_c00432{height:29.948750pt;}
.h2_c00432{height:39.163750pt;}
.h4_c00432{height:41.467500pt;}
.h6_c00432{height:43.771250pt;}
.h9_c00432{height:46.075000pt;}
.h3_c00432{height:48.378750pt;}
.hc_c00432{height:48.635000pt;}
.h5_c00432{height:50.682500pt;}
.h7_c00432{height:52.986250pt;}
.h8_c00432{height:55.290000pt;}
.hb_c00432{height:57.593750pt;}
.he_c00432{height:59.897500pt;}
.hd_c00432{height:62.201250pt;}
.h1_c00432{height:1036.000000pt;}
.h0_c00432{height:1036.160000pt;}
.w0_c00432{width:691.840000pt;}
.w1_c00432{width:692.000000pt;}
.x0_c00432{left:0.000000pt;}
.x4_c00432{left:61.440000pt;}
.x1_c00432{left:109.440000pt;}
.x18_c00432{left:126.720000pt;}
.x2_c00432{left:128.000000pt;}
.xa_c00432{left:165.760000pt;}
.x5_c00432{left:167.040000pt;}
.x2d_c00432{left:174.720000pt;}
.xf_c00432{left:176.000000pt;}
.x13_c00432{left:184.960000pt;}
.x1d_c00432{left:204.160000pt;}
.x3_c00432{left:213.760000pt;}
.x8_c00432{left:215.040000pt;}
.x10_c00432{left:232.960000pt;}
.x28_c00432{left:242.560000pt;}
.x1f_c00432{left:252.800000pt;}
.xc_c00432{left:262.400000pt;}
.x6_c00432{left:272.000000pt;}
.x29_c00432{left:291.200000pt;}
.x20_c00432{left:300.800000pt;}
.x21_c00432{left:310.400000pt;}
.xd_c00432{left:320.000000pt;}
.x2a_c00432{left:328.960000pt;}
.x9_c00432{left:339.200000pt;}
.x11_c00432{left:348.160000pt;}
.xb_c00432{left:349.440000pt;}
.x14_c00432{left:357.760000pt;}
.x2c_c00432{left:367.360000pt;}
.x2e_c00432{left:376.320000pt;}
.x12_c00432{left:396.800000pt;}
.x15_c00432{left:407.040000pt;}
.x2f_c00432{left:415.360000pt;}
.x2b_c00432{left:424.960000pt;}
.xe_c00432{left:435.200000pt;}
.x16_c00432{left:453.760000pt;}
.x7_c00432{left:483.840000pt;}
.x17_c00432{left:502.400000pt;}
.x30_c00432{left:531.840000pt;}
.x25_c00432{left:560.000000pt;}
.x1a_c00432{left:561.920000pt;}
.x22_c00432{left:571.520000pt;}
.x1e_c00432{left:590.080000pt;}
.x1b_c00432{left:591.360000pt;}
.x31_c00432{left:599.040000pt;}
.x23_c00432{left:600.320000pt;}
.x19_c00432{left:606.080000pt;}
.x1c_c00432{left:620.160000pt;}
.x26_c00432{left:628.480000pt;}
.x24_c00432{left:629.760000pt;}
.x27_c00432{left:647.040000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4c0c9a099814d65c5ea0d913.woff2')format("woff");}.ff1_c00433{font-family:ff1_c00433;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m57_c00433{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.m50_c00433{transform:matrix(0.214225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214225,0.000000,0.000000,0.250000,0,0);}
.m3b_c00433{transform:matrix(0.216525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216525,0.000000,0.000000,0.250000,0,0);}
.m18_c00433{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.mf_c00433{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);}
.m54_c00433{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m26_c00433{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m2f_c00433{transform:matrix(0.239175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239175,0.000000,0.000000,0.250000,0,0);}
.m44_c00433{transform:matrix(0.240975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240975,0.000000,0.000000,0.250000,0,0);}
.m46_c00433{transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);}
.m4a_c00433{transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);}
.m3a_c00433{transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);}
.m3d_c00433{transform:matrix(0.246850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246850,0.000000,0.000000,0.250000,0,0);}
.m4d_c00433{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m2d_c00433{transform:matrix(0.249475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249475,0.000000,0.000000,0.250000,0,0);}
.m58_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);}
.m2b_c00433{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);}
.m27_c00433{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);}
.m37_c00433{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00433{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m41_c00433{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);}
.m53_c00433{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m7_c00433{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m5_c00433{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);}
.m3c_c00433{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);}
.m59_c00433{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.md_c00433{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m24_c00433{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m25_c00433{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m8_c00433{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00433{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.ma_c00433{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00433{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00433{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m17_c00433{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m6_c00433{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m21_c00433{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m12_c00433{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00433{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m16_c00433{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m49_c00433{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m33_c00433{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m4_c00433{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00433{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m23_c00433{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m36_c00433{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m51_c00433{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m0_c00433{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00433{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00433{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);}
.m19_c00433{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m22_c00433{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m14_c00433{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);}
.m3f_c00433{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);}
.m2a_c00433{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m2_c00433{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m20_c00433{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);}
.m9_c00433{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_c00433{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m31_c00433{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);}
.m42_c00433{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00433{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m1_c00433{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);}
.m29_c00433{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);}
.m28_c00433{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m32_c00433{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00433{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m40_c00433{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.me_c00433{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m15_c00433{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m48_c00433{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m39_c00433{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m56_c00433{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m43_c00433{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m45_c00433{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);}
.m5a_c00433{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m47_c00433{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);}
.m30_c00433{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.mb_c00433{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);}
.m3e_c00433{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m34_c00433{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);}
.m13_c00433{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m55_c00433{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m38_c00433{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m35_c00433{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m3_c00433{transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00433{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);}
.m11_c00433{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);}
.m4c_c00433{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m52_c00433{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.mc_c00433{transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);}
.v1_c00433{vertical-align:-8.640000px;}
.v2_c00433{vertical-align:-2.880000px;}
.v0_c00433{vertical-align:0.000000px;}
.ls2_c00433{letter-spacing:0.000000px;}
.ls0_c00433{letter-spacing:87.974400px;}
.ls1_c00433{letter-spacing:90.638400px;}
.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;}
}
.ws1_c00433{word-spacing:0.000000px;}
.ws0_c00433{word-spacing:11.726957px;}
.fc0_c00433{color:transparent;}
.fs7_c00433{font-size:17.280000px;}
.fs8_c00433{font-size:34.560000px;}
.fs3_c00433{font-size:40.320000px;}
.fs12_c00433{font-size:43.200000px;}
.fs2_c00433{font-size:46.080000px;}
.fs0_c00433{font-size:48.960000px;}
.fs6_c00433{font-size:51.840000px;}
.fs5_c00433{font-size:54.720000px;}
.fs4_c00433{font-size:57.600000px;}
.fs1_c00433{font-size:60.480000px;}
.fsb_c00433{font-size:63.360000px;}
.fsd_c00433{font-size:66.240000px;}
.fsc_c00433{font-size:69.120000px;}
.fsf_c00433{font-size:72.000000px;}
.fse_c00433{font-size:74.880000px;}
.fs10_c00433{font-size:77.760000px;}
.fs9_c00433{font-size:80.640000px;}
.fsa_c00433{font-size:83.520000px;}
.fs11_c00433{font-size:103.680000px;}
.y0_c00433{bottom:0.000000px;}
.y73_c00433{bottom:50.400000px;}
.y71_c00433{bottom:51.120000px;}
.y72_c00433{bottom:54.000000px;}
.y6c_c00433{bottom:82.080000px;}
.y70_c00433{bottom:82.800000px;}
.y6e_c00433{bottom:84.240000px;}
.y8f_c00433{bottom:84.960000px;}
.y6b_c00433{bottom:85.680000px;}
.y6d_c00433{bottom:86.400000px;}
.y6f_c00433{bottom:87.120000px;}
.y6a_c00433{bottom:126.000000px;}
.y8e_c00433{bottom:127.440000px;}
.y69_c00433{bottom:128.160000px;}
.y66_c00433{bottom:168.480000px;}
.y68_c00433{bottom:169.200000px;}
.y8b_c00433{bottom:170.640000px;}
.y8c_c00433{bottom:171.360000px;}
.y65_c00433{bottom:172.080000px;}
.y67_c00433{bottom:172.800000px;}
.y8d_c00433{bottom:173.520000px;}
.y64_c00433{bottom:205.200000px;}
.y61_c00433{bottom:210.960000px;}
.y63_c00433{bottom:213.120000px;}
.y60_c00433{bottom:213.840000px;}
.y89_c00433{bottom:214.560000px;}
.y62_c00433{bottom:215.280000px;}
.y8a_c00433{bottom:216.000000px;}
.y5c_c00433{bottom:254.880000px;}
.y5f_c00433{bottom:255.600000px;}
.y5d_c00433{bottom:256.320000px;}
.y87_c00433{bottom:257.040000px;}
.y5b_c00433{bottom:257.760000px;}
.y5e_c00433{bottom:258.480000px;}
.y88_c00433{bottom:259.200000px;}
.y58_c00433{bottom:298.080000px;}
.y59_c00433{bottom:298.800000px;}
.y86_c00433{bottom:299.520000px;}
.y85_c00433{bottom:300.240000px;}
.y57_c00433{bottom:300.960000px;}
.y5a_c00433{bottom:302.400000px;}
.y54_c00433{bottom:342.000000px;}
.y56_c00433{bottom:342.720000px;}
.y83_c00433{bottom:344.160000px;}
.y53_c00433{bottom:344.880000px;}
.y55_c00433{bottom:345.600000px;}
.y84_c00433{bottom:346.320000px;}
.y50_c00433{bottom:384.480000px;}
.y52_c00433{bottom:385.200000px;}
.y82_c00433{bottom:385.920000px;}
.y81_c00433{bottom:386.640000px;}
.y4f_c00433{bottom:387.360000px;}
.y80_c00433{bottom:388.080000px;}
.y51_c00433{bottom:388.800000px;}
.y4e_c00433{bottom:428.400000px;}
.y4d_c00433{bottom:429.120000px;}
.y7f_c00433{bottom:429.840000px;}
.y7d_c00433{bottom:430.560000px;}
.y4c_c00433{bottom:431.280000px;}
.y7e_c00433{bottom:432.720000px;}
.y4b_c00433{bottom:471.600000px;}
.y4a_c00433{bottom:472.320000px;}
.y7b_c00433{bottom:473.760000px;}
.y49_c00433{bottom:474.480000px;}
.y7c_c00433{bottom:475.920000px;}
.y48_c00433{bottom:508.320000px;}
.y45_c00433{bottom:515.520000px;}
.y7a_c00433{bottom:516.240000px;}
.y46_c00433{bottom:516.960000px;}
.y44_c00433{bottom:517.680000px;}
.y47_c00433{bottom:519.120000px;}
.y43_c00433{bottom:552.240000px;}
.y3d_c00433{bottom:558.000000px;}
.y42_c00433{bottom:559.440000px;}
.y41_c00433{bottom:560.160000px;}
.y3c_c00433{bottom:560.880000px;}
.y79_c00433{bottom:561.600000px;}
.y40_c00433{bottom:562.320000px;}
.y3e_c00433{bottom:563.040000px;}
.y3f_c00433{bottom:563.760000px;}
.y3b_c00433{bottom:601.920000px;}
.y78_c00433{bottom:602.640000px;}
.y39_c00433{bottom:604.080000px;}
.y3a_c00433{bottom:605.520000px;}
.y77_c00433{bottom:606.240000px;}
.y37_c00433{bottom:648.720000px;}
.y38_c00433{bottom:649.440000px;}
.y36_c00433{bottom:678.240000px;}
.y33_c00433{bottom:678.960000px;}
.y31_c00433{bottom:679.680000px;}
.y35_c00433{bottom:680.400000px;}
.y32_c00433{bottom:681.120000px;}
.y34_c00433{bottom:681.840000px;}
.y2e_c00433{bottom:720.000000px;}
.y30_c00433{bottom:720.720000px;}
.y2d_c00433{bottom:722.160000px;}
.y75_c00433{bottom:722.880000px;}
.y2f_c00433{bottom:723.600000px;}
.y76_c00433{bottom:724.320000px;}
.y74_c00433{bottom:725.040000px;}
.y2b_c00433{bottom:763.200000px;}
.y2a_c00433{bottom:765.360000px;}
.y2c_c00433{bottom:767.520000px;}
.y28_c00433{bottom:808.560000px;}
.y29_c00433{bottom:809.280000px;}
.y27_c00433{bottom:810.000000px;}
.y24_c00433{bottom:873.360000px;}
.y26_c00433{bottom:874.800000px;}
.y25_c00433{bottom:875.520000px;}
.y23_c00433{bottom:892.800000px;}
.y22_c00433{bottom:894.240000px;}
.y21_c00433{bottom:894.960000px;}
.y1f_c00433{bottom:896.400000px;}
.y20_c00433{bottom:897.120000px;}
.y1e_c00433{bottom:915.840000px;}
.y1c_c00433{bottom:916.560000px;}
.y1d_c00433{bottom:918.720000px;}
.y18_c00433{bottom:929.520000px;}
.y19_c00433{bottom:938.160000px;}
.y1b_c00433{bottom:939.600000px;}
.y1a_c00433{bottom:940.320000px;}
.y14_c00433{bottom:959.040000px;}
.y16_c00433{bottom:960.480000px;}
.y17_c00433{bottom:961.200000px;}
.y15_c00433{bottom:961.920000px;}
.y13_c00433{bottom:987.840000px;}
.y12_c00433{bottom:988.560000px;}
.y10_c00433{bottom:992.880000px;}
.y11_c00433{bottom:993.600000px;}
.ye_c00433{bottom:994.320000px;}
.yf_c00433{bottom:995.040000px;}
.y5_c00433{bottom:1046.160000px;}
.yd_c00433{bottom:1046.880000px;}
.y7_c00433{bottom:1047.600000px;}
.yc_c00433{bottom:1056.240000px;}
.yb_c00433{bottom:1056.960000px;}
.y2_c00433{bottom:1058.400000px;}
.y3_c00433{bottom:1059.120000px;}
.y1_c00433{bottom:1059.840000px;}
.ya_c00433{bottom:1061.280000px;}
.y8_c00433{bottom:1067.760000px;}
.y9_c00433{bottom:1068.480000px;}
.y6_c00433{bottom:1069.920000px;}
.y4_c00433{bottom:1070.640000px;}
.h9_c00433{height:15.550313px;}
.ha_c00433{height:31.100625px;}
.h5_c00433{height:36.284062px;}
.h14_c00433{height:38.875781px;}
.h4_c00433{height:41.467500px;}
.h2_c00433{height:44.059219px;}
.h8_c00433{height:46.650937px;}
.h7_c00433{height:49.242656px;}
.h6_c00433{height:51.834375px;}
.h3_c00433{height:54.426094px;}
.hd_c00433{height:57.017812px;}
.hf_c00433{height:59.609531px;}
.he_c00433{height:62.201250px;}
.h11_c00433{height:64.792969px;}
.h10_c00433{height:67.384687px;}
.h12_c00433{height:69.976406px;}
.hb_c00433{height:72.568125px;}
.hc_c00433{height:75.159844px;}
.h13_c00433{height:93.301875px;}
.h1_c00433{height:1166.250000px;}
.h0_c00433{height:1166.400000px;}
.w0_c00433{width:779.760000px;}
.w1_c00433{width:780.000000px;}
.x0_c00433{left:0.000000px;}
.x1_c00433{left:66.960000px;}
.x2_c00433{left:87.840000px;}
.x17_c00433{left:97.920000px;}
.x1b_c00433{left:119.520000px;}
.x15_c00433{left:131.760000px;}
.x1e_c00433{left:141.120000px;}
.x11_c00433{left:142.560000px;}
.x1c_c00433{left:152.640000px;}
.x3_c00433{left:184.320000px;}
.x22_c00433{left:195.120000px;}
.x4_c00433{left:207.360000px;}
.x1f_c00433{left:228.960000px;}
.x27_c00433{left:237.600000px;}
.x20_c00433{left:239.760000px;}
.x1d_c00433{left:249.120000px;}
.x1a_c00433{left:282.240000px;}
.x5_c00433{left:283.680000px;}
.x21_c00433{left:293.760000px;}
.x12_c00433{left:326.160000px;}
.x28_c00433{left:336.240000px;}
.x7_c00433{left:338.400000px;}
.x6_c00433{left:348.480000px;}
.x23_c00433{left:368.640000px;}
.x29_c00433{left:380.160000px;}
.x2a_c00433{left:389.520000px;}
.x18_c00433{left:391.680000px;}
.x16_c00433{left:402.480000px;}
.x25_c00433{left:411.840000px;}
.x13_c00433{left:424.080000px;}
.x2b_c00433{left:434.160000px;}
.xa_c00433{left:447.120000px;}
.x26_c00433{left:455.760000px;}
.x19_c00433{left:457.200000px;}
.x24_c00433{left:466.560000px;}
.x14_c00433{left:468.000000px;}
.xb_c00433{left:477.360000px;}
.xc_c00433{left:520.560000px;}
.x35_c00433{left:542.880000px;}
.xd_c00433{left:544.320000px;}
.x2c_c00433{left:554.400000px;}
.xe_c00433{left:574.560000px;}
.x30_c00433{left:576.720000px;}
.x36_c00433{left:596.160000px;}
.x34_c00433{left:597.600000px;}
.x31_c00433{left:629.280000px;}
.x8_c00433{left:630.720000px;}
.xf_c00433{left:641.520000px;}
.x9_c00433{left:660.960000px;}
.x10_c00433{left:662.400000px;}
.x2d_c00433{left:663.840000px;}
.x33_c00433{left:673.920000px;}
.x2e_c00433{left:707.040000px;}
.x32_c00433{left:726.480000px;}
.x2f_c00433{left:727.920000px;}
@media print{
.v1_c00433{vertical-align:-7.680000pt;}
.v2_c00433{vertical-align:-2.560000pt;}
.v0_c00433{vertical-align:0.000000pt;}
.ls2_c00433{letter-spacing:0.000000pt;}
.ls0_c00433{letter-spacing:78.199467pt;}
.ls1_c00433{letter-spacing:80.567467pt;}
.ws1_c00433{word-spacing:0.000000pt;}
.ws0_c00433{word-spacing:10.423962pt;}
.fs7_c00433{font-size:15.360000pt;}
.fs8_c00433{font-size:30.720000pt;}
.fs3_c00433{font-size:35.840000pt;}
.fs12_c00433{font-size:38.400000pt;}
.fs2_c00433{font-size:40.960000pt;}
.fs0_c00433{font-size:43.520000pt;}
.fs6_c00433{font-size:46.080000pt;}
.fs5_c00433{font-size:48.640000pt;}
.fs4_c00433{font-size:51.200000pt;}
.fs1_c00433{font-size:53.760000pt;}
.fsb_c00433{font-size:56.320000pt;}
.fsd_c00433{font-size:58.880000pt;}
.fsc_c00433{font-size:61.440000pt;}
.fsf_c00433{font-size:64.000000pt;}
.fse_c00433{font-size:66.560000pt;}
.fs10_c00433{font-size:69.120000pt;}
.fs9_c00433{font-size:71.680000pt;}
.fsa_c00433{font-size:74.240000pt;}
.fs11_c00433{font-size:92.160000pt;}
.y0_c00433{bottom:0.000000pt;}
.y73_c00433{bottom:44.800000pt;}
.y71_c00433{bottom:45.440000pt;}
.y72_c00433{bottom:48.000000pt;}
.y6c_c00433{bottom:72.960000pt;}
.y70_c00433{bottom:73.600000pt;}
.y6e_c00433{bottom:74.880000pt;}
.y8f_c00433{bottom:75.520000pt;}
.y6b_c00433{bottom:76.160000pt;}
.y6d_c00433{bottom:76.800000pt;}
.y6f_c00433{bottom:77.440000pt;}
.y6a_c00433{bottom:112.000000pt;}
.y8e_c00433{bottom:113.280000pt;}
.y69_c00433{bottom:113.920000pt;}
.y66_c00433{bottom:149.760000pt;}
.y68_c00433{bottom:150.400000pt;}
.y8b_c00433{bottom:151.680000pt;}
.y8c_c00433{bottom:152.320000pt;}
.y65_c00433{bottom:152.960000pt;}
.y67_c00433{bottom:153.600000pt;}
.y8d_c00433{bottom:154.240000pt;}
.y64_c00433{bottom:182.400000pt;}
.y61_c00433{bottom:187.520000pt;}
.y63_c00433{bottom:189.440000pt;}
.y60_c00433{bottom:190.080000pt;}
.y89_c00433{bottom:190.720000pt;}
.y62_c00433{bottom:191.360000pt;}
.y8a_c00433{bottom:192.000000pt;}
.y5c_c00433{bottom:226.560000pt;}
.y5f_c00433{bottom:227.200000pt;}
.y5d_c00433{bottom:227.840000pt;}
.y87_c00433{bottom:228.480000pt;}
.y5b_c00433{bottom:229.120000pt;}
.y5e_c00433{bottom:229.760000pt;}
.y88_c00433{bottom:230.400000pt;}
.y58_c00433{bottom:264.960000pt;}
.y59_c00433{bottom:265.600000pt;}
.y86_c00433{bottom:266.240000pt;}
.y85_c00433{bottom:266.880000pt;}
.y57_c00433{bottom:267.520000pt;}
.y5a_c00433{bottom:268.800000pt;}
.y54_c00433{bottom:304.000000pt;}
.y56_c00433{bottom:304.640000pt;}
.y83_c00433{bottom:305.920000pt;}
.y53_c00433{bottom:306.560000pt;}
.y55_c00433{bottom:307.200000pt;}
.y84_c00433{bottom:307.840000pt;}
.y50_c00433{bottom:341.760000pt;}
.y52_c00433{bottom:342.400000pt;}
.y82_c00433{bottom:343.040000pt;}
.y81_c00433{bottom:343.680000pt;}
.y4f_c00433{bottom:344.320000pt;}
.y80_c00433{bottom:344.960000pt;}
.y51_c00433{bottom:345.600000pt;}
.y4e_c00433{bottom:380.800000pt;}
.y4d_c00433{bottom:381.440000pt;}
.y7f_c00433{bottom:382.080000pt;}
.y7d_c00433{bottom:382.720000pt;}
.y4c_c00433{bottom:383.360000pt;}
.y7e_c00433{bottom:384.640000pt;}
.y4b_c00433{bottom:419.200000pt;}
.y4a_c00433{bottom:419.840000pt;}
.y7b_c00433{bottom:421.120000pt;}
.y49_c00433{bottom:421.760000pt;}
.y7c_c00433{bottom:423.040000pt;}
.y48_c00433{bottom:451.840000pt;}
.y45_c00433{bottom:458.240000pt;}
.y7a_c00433{bottom:458.880000pt;}
.y46_c00433{bottom:459.520000pt;}
.y44_c00433{bottom:460.160000pt;}
.y47_c00433{bottom:461.440000pt;}
.y43_c00433{bottom:490.880000pt;}
.y3d_c00433{bottom:496.000000pt;}
.y42_c00433{bottom:497.280000pt;}
.y41_c00433{bottom:497.920000pt;}
.y3c_c00433{bottom:498.560000pt;}
.y79_c00433{bottom:499.200000pt;}
.y40_c00433{bottom:499.840000pt;}
.y3e_c00433{bottom:500.480000pt;}
.y3f_c00433{bottom:501.120000pt;}
.y3b_c00433{bottom:535.040000pt;}
.y78_c00433{bottom:535.680000pt;}
.y39_c00433{bottom:536.960000pt;}
.y3a_c00433{bottom:538.240000pt;}
.y77_c00433{bottom:538.880000pt;}
.y37_c00433{bottom:576.640000pt;}
.y38_c00433{bottom:577.280000pt;}
.y36_c00433{bottom:602.880000pt;}
.y33_c00433{bottom:603.520000pt;}
.y31_c00433{bottom:604.160000pt;}
.y35_c00433{bottom:604.800000pt;}
.y32_c00433{bottom:605.440000pt;}
.y34_c00433{bottom:606.080000pt;}
.y2e_c00433{bottom:640.000000pt;}
.y30_c00433{bottom:640.640000pt;}
.y2d_c00433{bottom:641.920000pt;}
.y75_c00433{bottom:642.560000pt;}
.y2f_c00433{bottom:643.200000pt;}
.y76_c00433{bottom:643.840000pt;}
.y74_c00433{bottom:644.480000pt;}
.y2b_c00433{bottom:678.400000pt;}
.y2a_c00433{bottom:680.320000pt;}
.y2c_c00433{bottom:682.240000pt;}
.y28_c00433{bottom:718.720000pt;}
.y29_c00433{bottom:719.360000pt;}
.y27_c00433{bottom:720.000000pt;}
.y24_c00433{bottom:776.320000pt;}
.y26_c00433{bottom:777.600000pt;}
.y25_c00433{bottom:778.240000pt;}
.y23_c00433{bottom:793.600000pt;}
.y22_c00433{bottom:794.880000pt;}
.y21_c00433{bottom:795.520000pt;}
.y1f_c00433{bottom:796.800000pt;}
.y20_c00433{bottom:797.440000pt;}
.y1e_c00433{bottom:814.080000pt;}
.y1c_c00433{bottom:814.720000pt;}
.y1d_c00433{bottom:816.640000pt;}
.y18_c00433{bottom:826.240000pt;}
.y19_c00433{bottom:833.920000pt;}
.y1b_c00433{bottom:835.200000pt;}
.y1a_c00433{bottom:835.840000pt;}
.y14_c00433{bottom:852.480000pt;}
.y16_c00433{bottom:853.760000pt;}
.y17_c00433{bottom:854.400000pt;}
.y15_c00433{bottom:855.040000pt;}
.y13_c00433{bottom:878.080000pt;}
.y12_c00433{bottom:878.720000pt;}
.y10_c00433{bottom:882.560000pt;}
.y11_c00433{bottom:883.200000pt;}
.ye_c00433{bottom:883.840000pt;}
.yf_c00433{bottom:884.480000pt;}
.y5_c00433{bottom:929.920000pt;}
.yd_c00433{bottom:930.560000pt;}
.y7_c00433{bottom:931.200000pt;}
.yc_c00433{bottom:938.880000pt;}
.yb_c00433{bottom:939.520000pt;}
.y2_c00433{bottom:940.800000pt;}
.y3_c00433{bottom:941.440000pt;}
.y1_c00433{bottom:942.080000pt;}
.ya_c00433{bottom:943.360000pt;}
.y8_c00433{bottom:949.120000pt;}
.y9_c00433{bottom:949.760000pt;}
.y6_c00433{bottom:951.040000pt;}
.y4_c00433{bottom:951.680000pt;}
.h9_c00433{height:13.822500pt;}
.ha_c00433{height:27.645000pt;}
.h5_c00433{height:32.252500pt;}
.h14_c00433{height:34.556250pt;}
.h4_c00433{height:36.860000pt;}
.h2_c00433{height:39.163750pt;}
.h8_c00433{height:41.467500pt;}
.h7_c00433{height:43.771250pt;}
.h6_c00433{height:46.075000pt;}
.h3_c00433{height:48.378750pt;}
.hd_c00433{height:50.682500pt;}
.hf_c00433{height:52.986250pt;}
.he_c00433{height:55.290000pt;}
.h11_c00433{height:57.593750pt;}
.h10_c00433{height:59.897500pt;}
.h12_c00433{height:62.201250pt;}
.hb_c00433{height:64.505000pt;}
.hc_c00433{height:66.808750pt;}
.h13_c00433{height:82.935000pt;}
.h1_c00433{height:1036.666667pt;}
.h0_c00433{height:1036.800000pt;}
.w0_c00433{width:693.120000pt;}
.w1_c00433{width:693.333333pt;}
.x0_c00433{left:0.000000pt;}
.x1_c00433{left:59.520000pt;}
.x2_c00433{left:78.080000pt;}
.x17_c00433{left:87.040000pt;}
.x1b_c00433{left:106.240000pt;}
.x15_c00433{left:117.120000pt;}
.x1e_c00433{left:125.440000pt;}
.x11_c00433{left:126.720000pt;}
.x1c_c00433{left:135.680000pt;}
.x3_c00433{left:163.840000pt;}
.x22_c00433{left:173.440000pt;}
.x4_c00433{left:184.320000pt;}
.x1f_c00433{left:203.520000pt;}
.x27_c00433{left:211.200000pt;}
.x20_c00433{left:213.120000pt;}
.x1d_c00433{left:221.440000pt;}
.x1a_c00433{left:250.880000pt;}
.x5_c00433{left:252.160000pt;}
.x21_c00433{left:261.120000pt;}
.x12_c00433{left:289.920000pt;}
.x28_c00433{left:298.880000pt;}
.x7_c00433{left:300.800000pt;}
.x6_c00433{left:309.760000pt;}
.x23_c00433{left:327.680000pt;}
.x29_c00433{left:337.920000pt;}
.x2a_c00433{left:346.240000pt;}
.x18_c00433{left:348.160000pt;}
.x16_c00433{left:357.760000pt;}
.x25_c00433{left:366.080000pt;}
.x13_c00433{left:376.960000pt;}
.x2b_c00433{left:385.920000pt;}
.xa_c00433{left:397.440000pt;}
.x26_c00433{left:405.120000pt;}
.x19_c00433{left:406.400000pt;}
.x24_c00433{left:414.720000pt;}
.x14_c00433{left:416.000000pt;}
.xb_c00433{left:424.320000pt;}
.xc_c00433{left:462.720000pt;}
.x35_c00433{left:482.560000pt;}
.xd_c00433{left:483.840000pt;}
.x2c_c00433{left:492.800000pt;}
.xe_c00433{left:510.720000pt;}
.x30_c00433{left:512.640000pt;}
.x36_c00433{left:529.920000pt;}
.x34_c00433{left:531.200000pt;}
.x31_c00433{left:559.360000pt;}
.x8_c00433{left:560.640000pt;}
.xf_c00433{left:570.240000pt;}
.x9_c00433{left:587.520000pt;}
.x10_c00433{left:588.800000pt;}
.x2d_c00433{left:590.080000pt;}
.x33_c00433{left:599.040000pt;}
.x2e_c00433{left:628.480000pt;}
.x32_c00433{left:645.760000pt;}
.x2f_c00433{left:647.040000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2b87493d15bc757709b6f972.woff2')format("woff");}.ff1_c00434{font-family:ff1_c00434;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3a_c00434{transform:matrix(0.172775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172775,0.000000,0.000000,0.250000,0,0);}
.m30_c00434{transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);}
.m9_c00434{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m26_c00434{transform:matrix(0.201075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201075,0.000000,0.000000,0.250000,0,0);}
.m3f_c00434{transform:matrix(0.211650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211650,0.000000,0.000000,0.250000,0,0);}
.m55_c00434{transform:matrix(0.224175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224175,0.000000,0.000000,0.250000,0,0);}
.m5b_c00434{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m3b_c00434{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);}
.m57_c00434{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m39_c00434{transform:matrix(0.240450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240450,0.000000,0.000000,0.250000,0,0);}
.m31_c00434{transform:matrix(0.240975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240975,0.000000,0.000000,0.250000,0,0);}
.m2_c00434{transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);}
.m17_c00434{transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);}
.m58_c00434{transform:matrix(0.246050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246050,0.000000,0.000000,0.250000,0,0);}
.m4b_c00434{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m2a_c00434{transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);}
.m35_c00434{transform:matrix(0.249300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249300,0.000000,0.000000,0.250000,0,0);}
.m8_c00434{transform:matrix(0.249375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249375,0.000000,0.000000,0.250000,0,0);}
.m52_c00434{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m7_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);}
.md_c00434{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);}
.m4a_c00434{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);}
.m40_c00434{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m13_c00434{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);}
.m1f_c00434{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.ma_c00434{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m22_c00434{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00434{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);}
.m2f_c00434{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m15_c00434{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);}
.m36_c00434{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m0_c00434{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);}
.m27_c00434{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m25_c00434{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m29_c00434{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m12_c00434{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00434{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m42_c00434{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m14_c00434{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m43_c00434{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00434{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00434{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m23_c00434{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m44_c00434{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00434{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mf_c00434{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m32_c00434{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m37_c00434{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mc_c00434{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m34_c00434{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m18_c00434{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m5_c00434{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m3_c00434{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00434{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);}
.m5e_c00434{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m16_c00434{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);}
.m45_c00434{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00434{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);}
.m46_c00434{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00434{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);}
.m20_c00434{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00434{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);}
.m1c_c00434{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m11_c00434{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);}
.m5d_c00434{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m50_c00434{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m28_c00434{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m38_c00434{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m56_c00434{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);}
.m19_c00434{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00434{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);}
.m48_c00434{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00434{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m24_c00434{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m10_c00434{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00434{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m21_c00434{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m6_c00434{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m47_c00434{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m1_c00434{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00434{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);}
.m2c_c00434{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m4_c00434{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.mb_c00434{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);}
.me_c00434{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m33_c00434{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m49_c00434{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00434{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m41_c00434{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m53_c00434{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m59_c00434{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00434{transform:matrix(0.700000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.700000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.700000,0.000000,0.000000,0.250000,0,0);}
.m51_c00434{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00434{transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);}
.m54_c00434{transform:matrix(1.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.547500,0.000000,0.000000,0.250000,0,0);}
.v1_c00434{vertical-align:-2.880000px;}
.v0_c00434{vertical-align:0.000000px;}
.ls0_c00434{letter-spacing:0.000000px;}
.sc__c00434{text-shadow:none;}
.sc0_c00434{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00434{-webkit-text-stroke:0px transparent;}
.sc0_c00434{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00434{word-spacing:0.000000px;}
.ws0_c00434{word-spacing:211.430400px;}
.fc0_c00434{color:transparent;}
.fs15_c00434{font-size:17.280000px;}
.fs14_c00434{font-size:20.160000px;}
.fsf_c00434{font-size:23.040000px;}
.fs13_c00434{font-size:25.920000px;}
.fs1_c00434{font-size:34.560000px;}
.fsa_c00434{font-size:37.440000px;}
.fse_c00434{font-size:40.320000px;}
.fs10_c00434{font-size:43.200000px;}
.fsc_c00434{font-size:46.080000px;}
.fs6_c00434{font-size:48.960000px;}
.fs3_c00434{font-size:51.840000px;}
.fs4_c00434{font-size:54.720000px;}
.fs9_c00434{font-size:57.600000px;}
.fs5_c00434{font-size:60.480000px;}
.fs0_c00434{font-size:63.360000px;}
.fsb_c00434{font-size:66.240000px;}
.fs8_c00434{font-size:69.120000px;}
.fsd_c00434{font-size:72.000000px;}
.fs7_c00434{font-size:74.880000px;}
.fs2_c00434{font-size:77.760000px;}
.fs12_c00434{font-size:92.160000px;}
.fs11_c00434{font-size:103.680000px;}
.y0_c00434{bottom:0.000000px;}
.y91_c00434{bottom:52.560000px;}
.y90_c00434{bottom:55.440000px;}
.y8e_c00434{bottom:74.160000px;}
.y8f_c00434{bottom:74.880000px;}
.y8b_c00434{bottom:75.600000px;}
.y8d_c00434{bottom:76.320000px;}
.y8a_c00434{bottom:77.040000px;}
.y8c_c00434{bottom:78.480000px;}
.y88_c00434{bottom:106.560000px;}
.y89_c00434{bottom:107.280000px;}
.y85_c00434{bottom:108.720000px;}
.y86_c00434{bottom:109.440000px;}
.y84_c00434{bottom:110.160000px;}
.y87_c00434{bottom:110.880000px;}
.y83_c00434{bottom:149.760000px;}
.y81_c00434{bottom:152.640000px;}
.y80_c00434{bottom:153.360000px;}
.y7b_c00434{bottom:160.560000px;}
.y7a_c00434{bottom:161.280000px;}
.y7c_c00434{bottom:162.000000px;}
.y7f_c00434{bottom:162.720000px;}
.y79_c00434{bottom:163.440000px;}
.y82_c00434{bottom:165.600000px;}
.y7d_c00434{bottom:174.240000px;}
.y7e_c00434{bottom:174.960000px;}
.y78_c00434{bottom:203.760000px;}
.y76_c00434{bottom:204.480000px;}
.y74_c00434{bottom:205.920000px;}
.y75_c00434{bottom:206.640000px;}
.y77_c00434{bottom:207.360000px;}
.y70_c00434{bottom:234.720000px;}
.y6f_c00434{bottom:236.880000px;}
.y73_c00434{bottom:237.600000px;}
.y71_c00434{bottom:238.320000px;}
.y72_c00434{bottom:239.040000px;}
.y6e_c00434{bottom:278.640000px;}
.y6c_c00434{bottom:279.360000px;}
.y6d_c00434{bottom:281.520000px;}
.y69_c00434{bottom:310.320000px;}
.y6a_c00434{bottom:312.480000px;}
.y68_c00434{bottom:313.200000px;}
.y6b_c00434{bottom:313.920000px;}
.y66_c00434{bottom:354.240000px;}
.y64_c00434{bottom:354.960000px;}
.y65_c00434{bottom:357.840000px;}
.y60_c00434{bottom:385.920000px;}
.y61_c00434{bottom:387.360000px;}
.y67_c00434{bottom:388.080000px;}
.y63_c00434{bottom:388.800000px;}
.y5f_c00434{bottom:389.520000px;}
.y62_c00434{bottom:390.240000px;}
.y5e_c00434{bottom:429.120000px;}
.y5c_c00434{bottom:431.280000px;}
.y5d_c00434{bottom:433.440000px;}
.y58_c00434{bottom:461.520000px;}
.y5b_c00434{bottom:462.960000px;}
.y59_c00434{bottom:463.680000px;}
.y57_c00434{bottom:464.400000px;}
.y5a_c00434{bottom:465.120000px;}
.y56_c00434{bottom:506.160000px;}
.y54_c00434{bottom:506.880000px;}
.y55_c00434{bottom:509.040000px;}
.y50_c00434{bottom:537.120000px;}
.y51_c00434{bottom:538.560000px;}
.y4f_c00434{bottom:539.280000px;}
.y53_c00434{bottom:540.000000px;}
.y52_c00434{bottom:541.440000px;}
.y4d_c00434{bottom:573.840000px;}
.y49_c00434{bottom:580.320000px;}
.y4b_c00434{bottom:581.760000px;}
.y4a_c00434{bottom:582.480000px;}
.y48_c00434{bottom:583.200000px;}
.y4e_c00434{bottom:583.920000px;}
.y4c_c00434{bottom:584.640000px;}
.y47_c00434{bottom:617.040000px;}
.y41_c00434{bottom:623.520000px;}
.y44_c00434{bottom:624.240000px;}
.y43_c00434{bottom:624.960000px;}
.y40_c00434{bottom:625.680000px;}
.y45_c00434{bottom:626.400000px;}
.y42_c00434{bottom:627.840000px;}
.y46_c00434{bottom:628.560000px;}
.y3c_c00434{bottom:666.720000px;}
.y3f_c00434{bottom:667.440000px;}
.y3e_c00434{bottom:668.160000px;}
.y3d_c00434{bottom:668.880000px;}
.y3b_c00434{bottom:669.600000px;}
.y35_c00434{bottom:710.640000px;}
.y37_c00434{bottom:711.360000px;}
.y36_c00434{bottom:712.080000px;}
.y34_c00434{bottom:712.800000px;}
.y39_c00434{bottom:713.520000px;}
.y38_c00434{bottom:714.240000px;}
.y3a_c00434{bottom:714.960000px;}
.y2f_c00434{bottom:754.560000px;}
.y2e_c00434{bottom:756.000000px;}
.y32_c00434{bottom:756.720000px;}
.y30_c00434{bottom:757.440000px;}
.y31_c00434{bottom:758.160000px;}
.y33_c00434{bottom:758.880000px;}
.y28_c00434{bottom:797.040000px;}
.y2b_c00434{bottom:797.760000px;}
.y29_c00434{bottom:798.480000px;}
.y27_c00434{bottom:799.200000px;}
.y2c_c00434{bottom:799.920000px;}
.y2a_c00434{bottom:800.640000px;}
.y2d_c00434{bottom:801.360000px;}
.y25_c00434{bottom:840.240000px;}
.y22_c00434{bottom:840.960000px;}
.y23_c00434{bottom:841.680000px;}
.y26_c00434{bottom:842.400000px;}
.y21_c00434{bottom:843.120000px;}
.y24_c00434{bottom:843.840000px;}
.y1e_c00434{bottom:883.440000px;}
.y1b_c00434{bottom:884.160000px;}
.y1f_c00434{bottom:884.880000px;}
.y1c_c00434{bottom:885.600000px;}
.y1a_c00434{bottom:886.320000px;}
.y1d_c00434{bottom:887.760000px;}
.y20_c00434{bottom:889.200000px;}
.y16_c00434{bottom:927.360000px;}
.y17_c00434{bottom:928.800000px;}
.y15_c00434{bottom:929.520000px;}
.y18_c00434{bottom:930.960000px;}
.y19_c00434{bottom:932.400000px;}
.y10_c00434{bottom:969.840000px;}
.y13_c00434{bottom:971.280000px;}
.y11_c00434{bottom:972.000000px;}
.yf_c00434{bottom:972.720000px;}
.y12_c00434{bottom:973.440000px;}
.y14_c00434{bottom:974.160000px;}
.yd_c00434{bottom:1013.040000px;}
.y9_c00434{bottom:1013.760000px;}
.yb_c00434{bottom:1014.480000px;}
.y8_c00434{bottom:1015.200000px;}
.ye_c00434{bottom:1015.920000px;}
.yc_c00434{bottom:1016.640000px;}
.ya_c00434{bottom:1017.360000px;}
.y7_c00434{bottom:1049.040000px;}
.y3_c00434{bottom:1056.240000px;}
.y6_c00434{bottom:1057.680000px;}
.y1_c00434{bottom:1058.400000px;}
.y2_c00434{bottom:1059.120000px;}
.y4_c00434{bottom:1059.840000px;}
.y5_c00434{bottom:1060.560000px;}
.h17_c00434{height:15.550313px;}
.h16_c00434{height:18.142031px;}
.h11_c00434{height:20.733750px;}
.h15_c00434{height:23.325469px;}
.h3_c00434{height:31.100625px;}
.hc_c00434{height:33.692344px;}
.h10_c00434{height:36.284062px;}
.h12_c00434{height:38.875781px;}
.he_c00434{height:41.467500px;}
.h8_c00434{height:44.059219px;}
.h5_c00434{height:46.650937px;}
.h6_c00434{height:49.242656px;}
.hb_c00434{height:51.834375px;}
.h7_c00434{height:54.426094px;}
.h2_c00434{height:57.017812px;}
.hd_c00434{height:59.609531px;}
.ha_c00434{height:62.201250px;}
.hf_c00434{height:64.792969px;}
.h9_c00434{height:67.384687px;}
.h4_c00434{height:69.976406px;}
.h14_c00434{height:82.935000px;}
.h13_c00434{height:93.301875px;}
.h1_c00434{height:1167.750000px;}
.h0_c00434{height:1167.840000px;}
.w0_c00434{width:780.480000px;}
.w1_c00434{width:780.750000px;}
.x0_c00434{left:0.000000px;}
.x1_c00434{left:69.840000px;}
.x17_c00434{left:71.280000px;}
.x34_c00434{left:72.720000px;}
.x3c_c00434{left:92.880000px;}
.x2b_c00434{left:102.240000px;}
.x3d_c00434{left:113.760000px;}
.x2_c00434{left:115.200000px;}
.x35_c00434{left:136.080000px;}
.x1f_c00434{left:145.440000px;}
.x3_c00434{left:146.880000px;}
.x1d_c00434{left:157.680000px;}
.x28_c00434{left:167.760000px;}
.x2c_c00434{left:179.280000px;}
.x2d_c00434{left:198.720000px;}
.x18_c00434{left:200.880000px;}
.x3e_c00434{left:209.520000px;}
.x23_c00434{left:210.960000px;}
.x29_c00434{left:221.760000px;}
.x4_c00434{left:241.920000px;}
.xd_c00434{left:244.080000px;}
.x1e_c00434{left:254.160000px;}
.x36_c00434{left:264.240000px;}
.x24_c00434{left:265.680000px;}
.x2e_c00434{left:267.120000px;}
.x15_c00434{left:276.480000px;}
.x5_c00434{left:286.560000px;}
.xe_c00434{left:297.360000px;}
.x25_c00434{left:308.880000px;}
.x37_c00434{left:317.520000px;}
.x2f_c00434{left:320.400000px;}
.x19_c00434{left:328.320000px;}
.x11_c00434{left:329.760000px;}
.x3f_c00434{left:339.120000px;}
.x6_c00434{left:341.280000px;}
.x38_c00434{left:371.520000px;}
.x30_c00434{left:374.400000px;}
.xf_c00434{left:383.040000px;}
.x1a_c00434{left:384.480000px;}
.x20_c00434{left:395.280000px;}
.x1b_c00434{left:415.440000px;}
.x2a_c00434{left:416.880000px;}
.x39_c00434{left:425.520000px;}
.x7_c00434{left:426.960000px;}
.x10_c00434{left:437.760000px;}
.x21_c00434{left:447.840000px;}
.x26_c00434{left:449.280000px;}
.x16_c00434{left:460.080000px;}
.x8_c00434{left:480.960000px;}
.x22_c00434{left:492.480000px;}
.x1c_c00434{left:514.080000px;}
.x33_c00434{left:524.880000px;}
.x3a_c00434{left:533.520000px;}
.x40_c00434{left:536.400000px;}
.x43_c00434{left:544.320000px;}
.x9_c00434{left:547.200000px;}
.x41_c00434{left:576.720000px;}
.x12_c00434{left:578.880000px;}
.x3b_c00434{left:589.680000px;}
.xa_c00434{left:601.200000px;}
.x44_c00434{left:609.120000px;}
.x14_c00434{left:634.320000px;}
.x31_c00434{left:645.840000px;}
.x42_c00434{left:663.840000px;}
.xb_c00434{left:676.800000px;}
.x13_c00434{left:678.240000px;}
.xc_c00434{left:709.920000px;}
.x27_c00434{left:711.360000px;}
.x32_c00434{left:734.400000px;}
@media print{
.v1_c00434{vertical-align:-2.560000pt;}
.v0_c00434{vertical-align:0.000000pt;}
.ls0_c00434{letter-spacing:0.000000pt;}
.ws1_c00434{word-spacing:0.000000pt;}
.ws0_c00434{word-spacing:187.938133pt;}
.fs15_c00434{font-size:15.360000pt;}
.fs14_c00434{font-size:17.920000pt;}
.fsf_c00434{font-size:20.480000pt;}
.fs13_c00434{font-size:23.040000pt;}
.fs1_c00434{font-size:30.720000pt;}
.fsa_c00434{font-size:33.280000pt;}
.fse_c00434{font-size:35.840000pt;}
.fs10_c00434{font-size:38.400000pt;}
.fsc_c00434{font-size:40.960000pt;}
.fs6_c00434{font-size:43.520000pt;}
.fs3_c00434{font-size:46.080000pt;}
.fs4_c00434{font-size:48.640000pt;}
.fs9_c00434{font-size:51.200000pt;}
.fs5_c00434{font-size:53.760000pt;}
.fs0_c00434{font-size:56.320000pt;}
.fsb_c00434{font-size:58.880000pt;}
.fs8_c00434{font-size:61.440000pt;}
.fsd_c00434{font-size:64.000000pt;}
.fs7_c00434{font-size:66.560000pt;}
.fs2_c00434{font-size:69.120000pt;}
.fs12_c00434{font-size:81.920000pt;}
.fs11_c00434{font-size:92.160000pt;}
.y0_c00434{bottom:0.000000pt;}
.y91_c00434{bottom:46.720000pt;}
.y90_c00434{bottom:49.280000pt;}
.y8e_c00434{bottom:65.920000pt;}
.y8f_c00434{bottom:66.560000pt;}
.y8b_c00434{bottom:67.200000pt;}
.y8d_c00434{bottom:67.840000pt;}
.y8a_c00434{bottom:68.480000pt;}
.y8c_c00434{bottom:69.760000pt;}
.y88_c00434{bottom:94.720000pt;}
.y89_c00434{bottom:95.360000pt;}
.y85_c00434{bottom:96.640000pt;}
.y86_c00434{bottom:97.280000pt;}
.y84_c00434{bottom:97.920000pt;}
.y87_c00434{bottom:98.560000pt;}
.y83_c00434{bottom:133.120000pt;}
.y81_c00434{bottom:135.680000pt;}
.y80_c00434{bottom:136.320000pt;}
.y7b_c00434{bottom:142.720000pt;}
.y7a_c00434{bottom:143.360000pt;}
.y7c_c00434{bottom:144.000000pt;}
.y7f_c00434{bottom:144.640000pt;}
.y79_c00434{bottom:145.280000pt;}
.y82_c00434{bottom:147.200000pt;}
.y7d_c00434{bottom:154.880000pt;}
.y7e_c00434{bottom:155.520000pt;}
.y78_c00434{bottom:181.120000pt;}
.y76_c00434{bottom:181.760000pt;}
.y74_c00434{bottom:183.040000pt;}
.y75_c00434{bottom:183.680000pt;}
.y77_c00434{bottom:184.320000pt;}
.y70_c00434{bottom:208.640000pt;}
.y6f_c00434{bottom:210.560000pt;}
.y73_c00434{bottom:211.200000pt;}
.y71_c00434{bottom:211.840000pt;}
.y72_c00434{bottom:212.480000pt;}
.y6e_c00434{bottom:247.680000pt;}
.y6c_c00434{bottom:248.320000pt;}
.y6d_c00434{bottom:250.240000pt;}
.y69_c00434{bottom:275.840000pt;}
.y6a_c00434{bottom:277.760000pt;}
.y68_c00434{bottom:278.400000pt;}
.y6b_c00434{bottom:279.040000pt;}
.y66_c00434{bottom:314.880000pt;}
.y64_c00434{bottom:315.520000pt;}
.y65_c00434{bottom:318.080000pt;}
.y60_c00434{bottom:343.040000pt;}
.y61_c00434{bottom:344.320000pt;}
.y67_c00434{bottom:344.960000pt;}
.y63_c00434{bottom:345.600000pt;}
.y5f_c00434{bottom:346.240000pt;}
.y62_c00434{bottom:346.880000pt;}
.y5e_c00434{bottom:381.440000pt;}
.y5c_c00434{bottom:383.360000pt;}
.y5d_c00434{bottom:385.280000pt;}
.y58_c00434{bottom:410.240000pt;}
.y5b_c00434{bottom:411.520000pt;}
.y59_c00434{bottom:412.160000pt;}
.y57_c00434{bottom:412.800000pt;}
.y5a_c00434{bottom:413.440000pt;}
.y56_c00434{bottom:449.920000pt;}
.y54_c00434{bottom:450.560000pt;}
.y55_c00434{bottom:452.480000pt;}
.y50_c00434{bottom:477.440000pt;}
.y51_c00434{bottom:478.720000pt;}
.y4f_c00434{bottom:479.360000pt;}
.y53_c00434{bottom:480.000000pt;}
.y52_c00434{bottom:481.280000pt;}
.y4d_c00434{bottom:510.080000pt;}
.y49_c00434{bottom:515.840000pt;}
.y4b_c00434{bottom:517.120000pt;}
.y4a_c00434{bottom:517.760000pt;}
.y48_c00434{bottom:518.400000pt;}
.y4e_c00434{bottom:519.040000pt;}
.y4c_c00434{bottom:519.680000pt;}
.y47_c00434{bottom:548.480000pt;}
.y41_c00434{bottom:554.240000pt;}
.y44_c00434{bottom:554.880000pt;}
.y43_c00434{bottom:555.520000pt;}
.y40_c00434{bottom:556.160000pt;}
.y45_c00434{bottom:556.800000pt;}
.y42_c00434{bottom:558.080000pt;}
.y46_c00434{bottom:558.720000pt;}
.y3c_c00434{bottom:592.640000pt;}
.y3f_c00434{bottom:593.280000pt;}
.y3e_c00434{bottom:593.920000pt;}
.y3d_c00434{bottom:594.560000pt;}
.y3b_c00434{bottom:595.200000pt;}
.y35_c00434{bottom:631.680000pt;}
.y37_c00434{bottom:632.320000pt;}
.y36_c00434{bottom:632.960000pt;}
.y34_c00434{bottom:633.600000pt;}
.y39_c00434{bottom:634.240000pt;}
.y38_c00434{bottom:634.880000pt;}
.y3a_c00434{bottom:635.520000pt;}
.y2f_c00434{bottom:670.720000pt;}
.y2e_c00434{bottom:672.000000pt;}
.y32_c00434{bottom:672.640000pt;}
.y30_c00434{bottom:673.280000pt;}
.y31_c00434{bottom:673.920000pt;}
.y33_c00434{bottom:674.560000pt;}
.y28_c00434{bottom:708.480000pt;}
.y2b_c00434{bottom:709.120000pt;}
.y29_c00434{bottom:709.760000pt;}
.y27_c00434{bottom:710.400000pt;}
.y2c_c00434{bottom:711.040000pt;}
.y2a_c00434{bottom:711.680000pt;}
.y2d_c00434{bottom:712.320000pt;}
.y25_c00434{bottom:746.880000pt;}
.y22_c00434{bottom:747.520000pt;}
.y23_c00434{bottom:748.160000pt;}
.y26_c00434{bottom:748.800000pt;}
.y21_c00434{bottom:749.440000pt;}
.y24_c00434{bottom:750.080000pt;}
.y1e_c00434{bottom:785.280000pt;}
.y1b_c00434{bottom:785.920000pt;}
.y1f_c00434{bottom:786.560000pt;}
.y1c_c00434{bottom:787.200000pt;}
.y1a_c00434{bottom:787.840000pt;}
.y1d_c00434{bottom:789.120000pt;}
.y20_c00434{bottom:790.400000pt;}
.y16_c00434{bottom:824.320000pt;}
.y17_c00434{bottom:825.600000pt;}
.y15_c00434{bottom:826.240000pt;}
.y18_c00434{bottom:827.520000pt;}
.y19_c00434{bottom:828.800000pt;}
.y10_c00434{bottom:862.080000pt;}
.y13_c00434{bottom:863.360000pt;}
.y11_c00434{bottom:864.000000pt;}
.yf_c00434{bottom:864.640000pt;}
.y12_c00434{bottom:865.280000pt;}
.y14_c00434{bottom:865.920000pt;}
.yd_c00434{bottom:900.480000pt;}
.y9_c00434{bottom:901.120000pt;}
.yb_c00434{bottom:901.760000pt;}
.y8_c00434{bottom:902.400000pt;}
.ye_c00434{bottom:903.040000pt;}
.yc_c00434{bottom:903.680000pt;}
.ya_c00434{bottom:904.320000pt;}
.y7_c00434{bottom:932.480000pt;}
.y3_c00434{bottom:938.880000pt;}
.y6_c00434{bottom:940.160000pt;}
.y1_c00434{bottom:940.800000pt;}
.y2_c00434{bottom:941.440000pt;}
.y4_c00434{bottom:942.080000pt;}
.y5_c00434{bottom:942.720000pt;}
.h17_c00434{height:13.822500pt;}
.h16_c00434{height:16.126250pt;}
.h11_c00434{height:18.430000pt;}
.h15_c00434{height:20.733750pt;}
.h3_c00434{height:27.645000pt;}
.hc_c00434{height:29.948750pt;}
.h10_c00434{height:32.252500pt;}
.h12_c00434{height:34.556250pt;}
.he_c00434{height:36.860000pt;}
.h8_c00434{height:39.163750pt;}
.h5_c00434{height:41.467500pt;}
.h6_c00434{height:43.771250pt;}
.hb_c00434{height:46.075000pt;}
.h7_c00434{height:48.378750pt;}
.h2_c00434{height:50.682500pt;}
.hd_c00434{height:52.986250pt;}
.ha_c00434{height:55.290000pt;}
.hf_c00434{height:57.593750pt;}
.h9_c00434{height:59.897500pt;}
.h4_c00434{height:62.201250pt;}
.h14_c00434{height:73.720000pt;}
.h13_c00434{height:82.935000pt;}
.h1_c00434{height:1038.000000pt;}
.h0_c00434{height:1038.080000pt;}
.w0_c00434{width:693.760000pt;}
.w1_c00434{width:694.000000pt;}
.x0_c00434{left:0.000000pt;}
.x1_c00434{left:62.080000pt;}
.x17_c00434{left:63.360000pt;}
.x34_c00434{left:64.640000pt;}
.x3c_c00434{left:82.560000pt;}
.x2b_c00434{left:90.880000pt;}
.x3d_c00434{left:101.120000pt;}
.x2_c00434{left:102.400000pt;}
.x35_c00434{left:120.960000pt;}
.x1f_c00434{left:129.280000pt;}
.x3_c00434{left:130.560000pt;}
.x1d_c00434{left:140.160000pt;}
.x28_c00434{left:149.120000pt;}
.x2c_c00434{left:159.360000pt;}
.x2d_c00434{left:176.640000pt;}
.x18_c00434{left:178.560000pt;}
.x3e_c00434{left:186.240000pt;}
.x23_c00434{left:187.520000pt;}
.x29_c00434{left:197.120000pt;}
.x4_c00434{left:215.040000pt;}
.xd_c00434{left:216.960000pt;}
.x1e_c00434{left:225.920000pt;}
.x36_c00434{left:234.880000pt;}
.x24_c00434{left:236.160000pt;}
.x2e_c00434{left:237.440000pt;}
.x15_c00434{left:245.760000pt;}
.x5_c00434{left:254.720000pt;}
.xe_c00434{left:264.320000pt;}
.x25_c00434{left:274.560000pt;}
.x37_c00434{left:282.240000pt;}
.x2f_c00434{left:284.800000pt;}
.x19_c00434{left:291.840000pt;}
.x11_c00434{left:293.120000pt;}
.x3f_c00434{left:301.440000pt;}
.x6_c00434{left:303.360000pt;}
.x38_c00434{left:330.240000pt;}
.x30_c00434{left:332.800000pt;}
.xf_c00434{left:340.480000pt;}
.x1a_c00434{left:341.760000pt;}
.x20_c00434{left:351.360000pt;}
.x1b_c00434{left:369.280000pt;}
.x2a_c00434{left:370.560000pt;}
.x39_c00434{left:378.240000pt;}
.x7_c00434{left:379.520000pt;}
.x10_c00434{left:389.120000pt;}
.x21_c00434{left:398.080000pt;}
.x26_c00434{left:399.360000pt;}
.x16_c00434{left:408.960000pt;}
.x8_c00434{left:427.520000pt;}
.x22_c00434{left:437.760000pt;}
.x1c_c00434{left:456.960000pt;}
.x33_c00434{left:466.560000pt;}
.x3a_c00434{left:474.240000pt;}
.x40_c00434{left:476.800000pt;}
.x43_c00434{left:483.840000pt;}
.x9_c00434{left:486.400000pt;}
.x41_c00434{left:512.640000pt;}
.x12_c00434{left:514.560000pt;}
.x3b_c00434{left:524.160000pt;}
.xa_c00434{left:534.400000pt;}
.x44_c00434{left:541.440000pt;}
.x14_c00434{left:563.840000pt;}
.x31_c00434{left:574.080000pt;}
.x42_c00434{left:590.080000pt;}
.xb_c00434{left:601.600000pt;}
.x13_c00434{left:602.880000pt;}
.xc_c00434{left:631.040000pt;}
.x27_c00434{left:632.320000pt;}
.x32_c00434{left:652.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c90e5e77631bfb45bc7e2c37.woff2')format("woff");}.ff1_c00435{font-family:ff1_c00435;line-height:1.109863;font-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_c00435{transform:matrix(0.200875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200875,0.000000,0.000000,0.250000,0,0);}
.m15_c00435{transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);}
.m4a_c00435{transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);}
.m1_c00435{transform:matrix(0.228375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228375,0.000000,0.000000,0.250000,0,0);}
.m12_c00435{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m39_c00435{transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);}
.m3d_c00435{transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);}
.m23_c00435{transform:matrix(0.245125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245125,0.000000,0.000000,0.250000,0,0);}
.m18_c00435{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m17_c00435{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m30_c00435{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);}
.m4c_c00435{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_c00435{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);}
.m29_c00435{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00435{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00435{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_c00435{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);}
.m52_c00435{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m14_c00435{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);}
.m20_c00435{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.md_c00435{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2_c00435{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m24_c00435{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_c00435{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00435{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m34_c00435{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m31_c00435{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.ma_c00435{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m11_c00435{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m27_c00435{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m16_c00435{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m5_c00435{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00435{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m43_c00435{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00435{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00435{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m25_c00435{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m13_c00435{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00435{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.me_c00435{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m50_c00435{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mb_c00435{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m36_c00435{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.mc_c00435{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00435{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m10_c00435{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00435{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);}
.m0_c00435{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00435{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m19_c00435{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);}
.m6_c00435{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m37_c00435{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);}
.m4_c00435{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);}
.m48_c00435{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m33_c00435{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);}
.m1c_c00435{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m40_c00435{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);}
.m4d_c00435{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m42_c00435{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);}
.m21_c00435{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);}
.m4e_c00435{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);}
.m49_c00435{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m22_c00435{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00435{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m26_c00435{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00435{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);}
.m35_c00435{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m47_c00435{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00435{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m45_c00435{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m3_c00435{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m32_c00435{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m51_c00435{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00435{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00435{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);}
.m46_c00435{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m28_c00435{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);}
.m3a_c00435{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m7_c00435{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);}
.m3c_c00435{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m38_c00435{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00435{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m53_c00435{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.m41_c00435{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.v1_c00435{vertical-align:-5.760000px;}
.v0_c00435{vertical-align:0.000000px;}
.ls0_c00435{letter-spacing:0.000000px;}
.sc__c00435{text-shadow:none;}
.sc0_c00435{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00435{-webkit-text-stroke:0px transparent;}
.sc0_c00435{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00435{word-spacing:0.000000px;}
.ws1_c00435{word-spacing:31.875319px;}
.ws0_c00435{word-spacing:87.106320px;}
.fc0_c00435{color:transparent;}
.fsf_c00435{font-size:14.400000px;}
.fse_c00435{font-size:23.040000px;}
.fsb_c00435{font-size:37.440000px;}
.fsd_c00435{font-size:40.320000px;}
.fs9_c00435{font-size:46.080000px;}
.fsa_c00435{font-size:48.960000px;}
.fs5_c00435{font-size:51.840000px;}
.fs4_c00435{font-size:54.720000px;}
.fs7_c00435{font-size:57.600000px;}
.fs6_c00435{font-size:60.480000px;}
.fs3_c00435{font-size:63.360000px;}
.fs8_c00435{font-size:66.240000px;}
.fs1_c00435{font-size:69.120000px;}
.fsc_c00435{font-size:72.000000px;}
.fs0_c00435{font-size:74.880000px;}
.fs2_c00435{font-size:77.760000px;}
.fs10_c00435{font-size:80.640000px;}
.fs11_c00435{font-size:86.400000px;}
.y0_c00435{bottom:0.000000px;}
.y89_c00435{bottom:41.040000px;}
.y86_c00435{bottom:42.480000px;}
.y8b_c00435{bottom:43.200000px;}
.y87_c00435{bottom:43.920000px;}
.y88_c00435{bottom:44.640000px;}
.y85_c00435{bottom:83.520000px;}
.y84_c00435{bottom:84.240000px;}
.y8a_c00435{bottom:85.680000px;}
.y83_c00435{bottom:86.400000px;}
.y80_c00435{bottom:126.000000px;}
.y7f_c00435{bottom:128.880000px;}
.y82_c00435{bottom:129.600000px;}
.y81_c00435{bottom:130.320000px;}
.y7c_c00435{bottom:164.160000px;}
.y7d_c00435{bottom:171.360000px;}
.y7e_c00435{bottom:173.520000px;}
.y7a_c00435{bottom:238.320000px;}
.y7b_c00435{bottom:239.760000px;}
.y77_c00435{bottom:258.480000px;}
.y78_c00435{bottom:259.200000px;}
.y79_c00435{bottom:259.920000px;}
.y76_c00435{bottom:271.440000px;}
.y75_c00435{bottom:273.600000px;}
.y73_c00435{bottom:291.600000px;}
.y74_c00435{bottom:293.760000px;}
.y6c_c00435{bottom:301.680000px;}
.y72_c00435{bottom:302.400000px;}
.y6b_c00435{bottom:303.840000px;}
.y71_c00435{bottom:304.560000px;}
.y6a_c00435{bottom:306.000000px;}
.y6d_c00435{bottom:312.480000px;}
.y70_c00435{bottom:313.200000px;}
.y6f_c00435{bottom:313.920000px;}
.y6e_c00435{bottom:315.360000px;}
.y68_c00435{bottom:324.000000px;}
.y69_c00435{bottom:325.440000px;}
.y65_c00435{bottom:334.080000px;}
.y67_c00435{bottom:334.800000px;}
.y64_c00435{bottom:335.520000px;}
.y66_c00435{bottom:336.240000px;}
.y63_c00435{bottom:362.880000px;}
.y62_c00435{bottom:367.920000px;}
.y61_c00435{bottom:368.640000px;}
.y60_c00435{bottom:369.360000px;}
.y5a_c00435{bottom:409.680000px;}
.y58_c00435{bottom:410.400000px;}
.y57_c00435{bottom:411.840000px;}
.y5f_c00435{bottom:419.760000px;}
.y54_c00435{bottom:420.480000px;}
.y55_c00435{bottom:421.200000px;}
.y5c_c00435{bottom:421.920000px;}
.y53_c00435{bottom:422.640000px;}
.y5e_c00435{bottom:423.360000px;}
.y5b_c00435{bottom:424.080000px;}
.y5d_c00435{bottom:425.520000px;}
.y56_c00435{bottom:432.720000px;}
.y59_c00435{bottom:434.160000px;}
.y52_c00435{bottom:472.320000px;}
.y50_c00435{bottom:473.760000px;}
.y51_c00435{bottom:475.200000px;}
.y4c_c00435{bottom:504.720000px;}
.y4d_c00435{bottom:506.160000px;}
.y4b_c00435{bottom:506.880000px;}
.y4f_c00435{bottom:507.600000px;}
.y4e_c00435{bottom:508.320000px;}
.y4a_c00435{bottom:548.640000px;}
.y49_c00435{bottom:549.360000px;}
.y48_c00435{bottom:551.520000px;}
.y42_c00435{bottom:580.320000px;}
.y43_c00435{bottom:581.040000px;}
.y45_c00435{bottom:581.760000px;}
.y41_c00435{bottom:582.480000px;}
.y47_c00435{bottom:583.200000px;}
.y44_c00435{bottom:583.920000px;}
.y46_c00435{bottom:584.640000px;}
.y40_c00435{bottom:624.240000px;}
.y3e_c00435{bottom:624.960000px;}
.y3d_c00435{bottom:625.680000px;}
.y3f_c00435{bottom:627.840000px;}
.y38_c00435{bottom:656.640000px;}
.y39_c00435{bottom:657.360000px;}
.y3a_c00435{bottom:658.080000px;}
.y37_c00435{bottom:658.800000px;}
.y3b_c00435{bottom:660.240000px;}
.y3c_c00435{bottom:660.960000px;}
.y32_c00435{bottom:699.840000px;}
.y33_c00435{bottom:700.560000px;}
.y34_c00435{bottom:701.280000px;}
.y31_c00435{bottom:702.000000px;}
.y35_c00435{bottom:703.440000px;}
.y36_c00435{bottom:704.160000px;}
.y2f_c00435{bottom:735.840000px;}
.y2c_c00435{bottom:743.760000px;}
.y2d_c00435{bottom:744.480000px;}
.y2e_c00435{bottom:745.200000px;}
.y2a_c00435{bottom:745.920000px;}
.y2b_c00435{bottom:746.640000px;}
.y30_c00435{bottom:748.080000px;}
.y25_c00435{bottom:786.960000px;}
.y26_c00435{bottom:787.680000px;}
.y24_c00435{bottom:788.400000px;}
.y29_c00435{bottom:789.840000px;}
.y27_c00435{bottom:790.560000px;}
.y28_c00435{bottom:791.280000px;}
.y1f_c00435{bottom:829.440000px;}
.y20_c00435{bottom:830.160000px;}
.y23_c00435{bottom:830.880000px;}
.y1e_c00435{bottom:831.600000px;}
.y21_c00435{bottom:833.040000px;}
.y22_c00435{bottom:833.760000px;}
.y1c_c00435{bottom:874.800000px;}
.y1d_c00435{bottom:875.520000px;}
.y1b_c00435{bottom:876.960000px;}
.y17_c00435{bottom:938.880000px;}
.y19_c00435{bottom:939.600000px;}
.y1a_c00435{bottom:940.320000px;}
.y18_c00435{bottom:941.040000px;}
.y16_c00435{bottom:959.760000px;}
.y14_c00435{bottom:960.480000px;}
.y15_c00435{bottom:961.200000px;}
.y13_c00435{bottom:981.360000px;}
.y10_c00435{bottom:982.080000px;}
.y12_c00435{bottom:982.800000px;}
.y11_c00435{bottom:983.520000px;}
.yf_c00435{bottom:1002.240000px;}
.yb_c00435{bottom:1002.960000px;}
.ye_c00435{bottom:1003.680000px;}
.yd_c00435{bottom:1005.120000px;}
.yc_c00435{bottom:1005.840000px;}
.y7_c00435{bottom:1023.840000px;}
.y9_c00435{bottom:1024.560000px;}
.ya_c00435{bottom:1025.280000px;}
.y8_c00435{bottom:1027.440000px;}
.y2_c00435{bottom:1052.640000px;}
.y6_c00435{bottom:1053.360000px;}
.y3_c00435{bottom:1054.080000px;}
.y4_c00435{bottom:1057.680000px;}
.y5_c00435{bottom:1058.400000px;}
.y1_c00435{bottom:1126.800000px;}
.h11_c00435{height:12.958594px;}
.h10_c00435{height:20.733750px;}
.hd_c00435{height:33.692344px;}
.hf_c00435{height:36.284062px;}
.hb_c00435{height:41.467500px;}
.hc_c00435{height:44.059219px;}
.h7_c00435{height:46.650937px;}
.h6_c00435{height:49.242656px;}
.h9_c00435{height:51.834375px;}
.h8_c00435{height:54.426094px;}
.h5_c00435{height:57.017812px;}
.ha_c00435{height:59.609531px;}
.h3_c00435{height:62.201250px;}
.he_c00435{height:64.792969px;}
.h2_c00435{height:67.384687px;}
.h4_c00435{height:69.976406px;}
.h12_c00435{height:72.568125px;}
.h13_c00435{height:77.751563px;}
.h1_c00435{height:1168.500000px;}
.h0_c00435{height:1168.560000px;}
.w1_c00435{width:783.750000px;}
.w0_c00435{width:784.080000px;}
.x0_c00435{left:0.000000px;}
.x2_c00435{left:71.280000px;}
.x3f_c00435{left:72.720000px;}
.xa_c00435{left:82.800000px;}
.x47_c00435{left:91.440000px;}
.x43_c00435{left:92.880000px;}
.x36_c00435{left:103.680000px;}
.x3_c00435{left:114.480000px;}
.x15_c00435{left:126.000000px;}
.xb_c00435{left:136.800000px;}
.x4b_c00435{left:145.440000px;}
.x1a_c00435{left:146.880000px;}
.x48_c00435{left:148.320000px;}
.x18_c00435{left:157.680000px;}
.x49_c00435{left:168.480000px;}
.x16_c00435{left:179.280000px;}
.x4c_c00435{left:188.640000px;}
.x25_c00435{left:190.080000px;}
.xc_c00435{left:191.520000px;}
.x37_c00435{left:200.160000px;}
.x4_c00435{left:212.400000px;}
.x38_c00435{left:234.000000px;}
.x26_c00435{left:244.080000px;}
.x19_c00435{left:254.160000px;}
.x5_c00435{left:265.680000px;}
.x12_c00435{left:267.120000px;}
.xd_c00435{left:277.920000px;}
.x30_c00435{left:287.280000px;}
.x22_c00435{left:298.080000px;}
.x11_c00435{left:300.240000px;}
.x1b_c00435{left:309.600000px;}
.x2a_c00435{left:330.480000px;}
.x39_c00435{left:331.920000px;}
.x2f_c00435{left:342.000000px;}
.x23_c00435{left:352.800000px;}
.x2b_c00435{left:384.480000px;}
.x3a_c00435{left:385.920000px;}
.x31_c00435{left:396.000000px;}
.x40_c00435{left:406.800000px;}
.x44_c00435{left:419.040000px;}
.x6_c00435{left:428.400000px;}
.xe_c00435{left:429.840000px;}
.x2d_c00435{left:439.200000px;}
.x3b_c00435{left:440.640000px;}
.x32_c00435{left:449.280000px;}
.x41_c00435{left:450.720000px;}
.x28_c00435{left:460.800000px;}
.x7_c00435{left:471.600000px;}
.x2e_c00435{left:481.680000px;}
.x27_c00435{left:491.760000px;}
.x13_c00435{left:493.200000px;}
.xf_c00435{left:494.640000px;}
.x3c_c00435{left:514.080000px;}
.x29_c00435{left:515.520000px;}
.x14_c00435{left:537.840000px;}
.x4a_c00435{left:547.200000px;}
.x10_c00435{left:548.640000px;}
.x3d_c00435{left:557.280000px;}
.x1c_c00435{left:559.440000px;}
.x8_c00435{left:569.520000px;}
.x42_c00435{left:570.960000px;}
.x45_c00435{left:578.880000px;}
.x1d_c00435{left:580.320000px;}
.x24_c00435{left:601.200000px;}
.x17_c00435{left:602.640000px;}
.x9_c00435{left:613.440000px;}
.x33_c00435{left:624.240000px;}
.x1e_c00435{left:635.040000px;}
.x46_c00435{left:644.400000px;}
.x34_c00435{left:657.360000px;}
.x1f_c00435{left:668.160000px;}
.x2c_c00435{left:678.240000px;}
.x1_c00435{left:682.560000px;}
.x3e_c00435{left:687.600000px;}
.x35_c00435{left:699.840000px;}
.x20_c00435{left:710.640000px;}
.x21_c00435{left:732.240000px;}
@media print{
.v1_c00435{vertical-align:-5.120000pt;}
.v0_c00435{vertical-align:0.000000pt;}
.ls0_c00435{letter-spacing:0.000000pt;}
.ws2_c00435{word-spacing:0.000000pt;}
.ws1_c00435{word-spacing:28.333617pt;}
.ws0_c00435{word-spacing:77.427840pt;}
.fsf_c00435{font-size:12.800000pt;}
.fse_c00435{font-size:20.480000pt;}
.fsb_c00435{font-size:33.280000pt;}
.fsd_c00435{font-size:35.840000pt;}
.fs9_c00435{font-size:40.960000pt;}
.fsa_c00435{font-size:43.520000pt;}
.fs5_c00435{font-size:46.080000pt;}
.fs4_c00435{font-size:48.640000pt;}
.fs7_c00435{font-size:51.200000pt;}
.fs6_c00435{font-size:53.760000pt;}
.fs3_c00435{font-size:56.320000pt;}
.fs8_c00435{font-size:58.880000pt;}
.fs1_c00435{font-size:61.440000pt;}
.fsc_c00435{font-size:64.000000pt;}
.fs0_c00435{font-size:66.560000pt;}
.fs2_c00435{font-size:69.120000pt;}
.fs10_c00435{font-size:71.680000pt;}
.fs11_c00435{font-size:76.800000pt;}
.y0_c00435{bottom:0.000000pt;}
.y89_c00435{bottom:36.480000pt;}
.y86_c00435{bottom:37.760000pt;}
.y8b_c00435{bottom:38.400000pt;}
.y87_c00435{bottom:39.040000pt;}
.y88_c00435{bottom:39.680000pt;}
.y85_c00435{bottom:74.240000pt;}
.y84_c00435{bottom:74.880000pt;}
.y8a_c00435{bottom:76.160000pt;}
.y83_c00435{bottom:76.800000pt;}
.y80_c00435{bottom:112.000000pt;}
.y7f_c00435{bottom:114.560000pt;}
.y82_c00435{bottom:115.200000pt;}
.y81_c00435{bottom:115.840000pt;}
.y7c_c00435{bottom:145.920000pt;}
.y7d_c00435{bottom:152.320000pt;}
.y7e_c00435{bottom:154.240000pt;}
.y7a_c00435{bottom:211.840000pt;}
.y7b_c00435{bottom:213.120000pt;}
.y77_c00435{bottom:229.760000pt;}
.y78_c00435{bottom:230.400000pt;}
.y79_c00435{bottom:231.040000pt;}
.y76_c00435{bottom:241.280000pt;}
.y75_c00435{bottom:243.200000pt;}
.y73_c00435{bottom:259.200000pt;}
.y74_c00435{bottom:261.120000pt;}
.y6c_c00435{bottom:268.160000pt;}
.y72_c00435{bottom:268.800000pt;}
.y6b_c00435{bottom:270.080000pt;}
.y71_c00435{bottom:270.720000pt;}
.y6a_c00435{bottom:272.000000pt;}
.y6d_c00435{bottom:277.760000pt;}
.y70_c00435{bottom:278.400000pt;}
.y6f_c00435{bottom:279.040000pt;}
.y6e_c00435{bottom:280.320000pt;}
.y68_c00435{bottom:288.000000pt;}
.y69_c00435{bottom:289.280000pt;}
.y65_c00435{bottom:296.960000pt;}
.y67_c00435{bottom:297.600000pt;}
.y64_c00435{bottom:298.240000pt;}
.y66_c00435{bottom:298.880000pt;}
.y63_c00435{bottom:322.560000pt;}
.y62_c00435{bottom:327.040000pt;}
.y61_c00435{bottom:327.680000pt;}
.y60_c00435{bottom:328.320000pt;}
.y5a_c00435{bottom:364.160000pt;}
.y58_c00435{bottom:364.800000pt;}
.y57_c00435{bottom:366.080000pt;}
.y5f_c00435{bottom:373.120000pt;}
.y54_c00435{bottom:373.760000pt;}
.y55_c00435{bottom:374.400000pt;}
.y5c_c00435{bottom:375.040000pt;}
.y53_c00435{bottom:375.680000pt;}
.y5e_c00435{bottom:376.320000pt;}
.y5b_c00435{bottom:376.960000pt;}
.y5d_c00435{bottom:378.240000pt;}
.y56_c00435{bottom:384.640000pt;}
.y59_c00435{bottom:385.920000pt;}
.y52_c00435{bottom:419.840000pt;}
.y50_c00435{bottom:421.120000pt;}
.y51_c00435{bottom:422.400000pt;}
.y4c_c00435{bottom:448.640000pt;}
.y4d_c00435{bottom:449.920000pt;}
.y4b_c00435{bottom:450.560000pt;}
.y4f_c00435{bottom:451.200000pt;}
.y4e_c00435{bottom:451.840000pt;}
.y4a_c00435{bottom:487.680000pt;}
.y49_c00435{bottom:488.320000pt;}
.y48_c00435{bottom:490.240000pt;}
.y42_c00435{bottom:515.840000pt;}
.y43_c00435{bottom:516.480000pt;}
.y45_c00435{bottom:517.120000pt;}
.y41_c00435{bottom:517.760000pt;}
.y47_c00435{bottom:518.400000pt;}
.y44_c00435{bottom:519.040000pt;}
.y46_c00435{bottom:519.680000pt;}
.y40_c00435{bottom:554.880000pt;}
.y3e_c00435{bottom:555.520000pt;}
.y3d_c00435{bottom:556.160000pt;}
.y3f_c00435{bottom:558.080000pt;}
.y38_c00435{bottom:583.680000pt;}
.y39_c00435{bottom:584.320000pt;}
.y3a_c00435{bottom:584.960000pt;}
.y37_c00435{bottom:585.600000pt;}
.y3b_c00435{bottom:586.880000pt;}
.y3c_c00435{bottom:587.520000pt;}
.y32_c00435{bottom:622.080000pt;}
.y33_c00435{bottom:622.720000pt;}
.y34_c00435{bottom:623.360000pt;}
.y31_c00435{bottom:624.000000pt;}
.y35_c00435{bottom:625.280000pt;}
.y36_c00435{bottom:625.920000pt;}
.y2f_c00435{bottom:654.080000pt;}
.y2c_c00435{bottom:661.120000pt;}
.y2d_c00435{bottom:661.760000pt;}
.y2e_c00435{bottom:662.400000pt;}
.y2a_c00435{bottom:663.040000pt;}
.y2b_c00435{bottom:663.680000pt;}
.y30_c00435{bottom:664.960000pt;}
.y25_c00435{bottom:699.520000pt;}
.y26_c00435{bottom:700.160000pt;}
.y24_c00435{bottom:700.800000pt;}
.y29_c00435{bottom:702.080000pt;}
.y27_c00435{bottom:702.720000pt;}
.y28_c00435{bottom:703.360000pt;}
.y1f_c00435{bottom:737.280000pt;}
.y20_c00435{bottom:737.920000pt;}
.y23_c00435{bottom:738.560000pt;}
.y1e_c00435{bottom:739.200000pt;}
.y21_c00435{bottom:740.480000pt;}
.y22_c00435{bottom:741.120000pt;}
.y1c_c00435{bottom:777.600000pt;}
.y1d_c00435{bottom:778.240000pt;}
.y1b_c00435{bottom:779.520000pt;}
.y17_c00435{bottom:834.560000pt;}
.y19_c00435{bottom:835.200000pt;}
.y1a_c00435{bottom:835.840000pt;}
.y18_c00435{bottom:836.480000pt;}
.y16_c00435{bottom:853.120000pt;}
.y14_c00435{bottom:853.760000pt;}
.y15_c00435{bottom:854.400000pt;}
.y13_c00435{bottom:872.320000pt;}
.y10_c00435{bottom:872.960000pt;}
.y12_c00435{bottom:873.600000pt;}
.y11_c00435{bottom:874.240000pt;}
.yf_c00435{bottom:890.880000pt;}
.yb_c00435{bottom:891.520000pt;}
.ye_c00435{bottom:892.160000pt;}
.yd_c00435{bottom:893.440000pt;}
.yc_c00435{bottom:894.080000pt;}
.y7_c00435{bottom:910.080000pt;}
.y9_c00435{bottom:910.720000pt;}
.ya_c00435{bottom:911.360000pt;}
.y8_c00435{bottom:913.280000pt;}
.y2_c00435{bottom:935.680000pt;}
.y6_c00435{bottom:936.320000pt;}
.y3_c00435{bottom:936.960000pt;}
.y4_c00435{bottom:940.160000pt;}
.y5_c00435{bottom:940.800000pt;}
.y1_c00435{bottom:1001.600000pt;}
.h11_c00435{height:11.518750pt;}
.h10_c00435{height:18.430000pt;}
.hd_c00435{height:29.948750pt;}
.hf_c00435{height:32.252500pt;}
.hb_c00435{height:36.860000pt;}
.hc_c00435{height:39.163750pt;}
.h7_c00435{height:41.467500pt;}
.h6_c00435{height:43.771250pt;}
.h9_c00435{height:46.075000pt;}
.h8_c00435{height:48.378750pt;}
.h5_c00435{height:50.682500pt;}
.ha_c00435{height:52.986250pt;}
.h3_c00435{height:55.290000pt;}
.he_c00435{height:57.593750pt;}
.h2_c00435{height:59.897500pt;}
.h4_c00435{height:62.201250pt;}
.h12_c00435{height:64.505000pt;}
.h13_c00435{height:69.112500pt;}
.h1_c00435{height:1038.666667pt;}
.h0_c00435{height:1038.720000pt;}
.w1_c00435{width:696.666667pt;}
.w0_c00435{width:696.960000pt;}
.x0_c00435{left:0.000000pt;}
.x2_c00435{left:63.360000pt;}
.x3f_c00435{left:64.640000pt;}
.xa_c00435{left:73.600000pt;}
.x47_c00435{left:81.280000pt;}
.x43_c00435{left:82.560000pt;}
.x36_c00435{left:92.160000pt;}
.x3_c00435{left:101.760000pt;}
.x15_c00435{left:112.000000pt;}
.xb_c00435{left:121.600000pt;}
.x4b_c00435{left:129.280000pt;}
.x1a_c00435{left:130.560000pt;}
.x48_c00435{left:131.840000pt;}
.x18_c00435{left:140.160000pt;}
.x49_c00435{left:149.760000pt;}
.x16_c00435{left:159.360000pt;}
.x4c_c00435{left:167.680000pt;}
.x25_c00435{left:168.960000pt;}
.xc_c00435{left:170.240000pt;}
.x37_c00435{left:177.920000pt;}
.x4_c00435{left:188.800000pt;}
.x38_c00435{left:208.000000pt;}
.x26_c00435{left:216.960000pt;}
.x19_c00435{left:225.920000pt;}
.x5_c00435{left:236.160000pt;}
.x12_c00435{left:237.440000pt;}
.xd_c00435{left:247.040000pt;}
.x30_c00435{left:255.360000pt;}
.x22_c00435{left:264.960000pt;}
.x11_c00435{left:266.880000pt;}
.x1b_c00435{left:275.200000pt;}
.x2a_c00435{left:293.760000pt;}
.x39_c00435{left:295.040000pt;}
.x2f_c00435{left:304.000000pt;}
.x23_c00435{left:313.600000pt;}
.x2b_c00435{left:341.760000pt;}
.x3a_c00435{left:343.040000pt;}
.x31_c00435{left:352.000000pt;}
.x40_c00435{left:361.600000pt;}
.x44_c00435{left:372.480000pt;}
.x6_c00435{left:380.800000pt;}
.xe_c00435{left:382.080000pt;}
.x2d_c00435{left:390.400000pt;}
.x3b_c00435{left:391.680000pt;}
.x32_c00435{left:399.360000pt;}
.x41_c00435{left:400.640000pt;}
.x28_c00435{left:409.600000pt;}
.x7_c00435{left:419.200000pt;}
.x2e_c00435{left:428.160000pt;}
.x27_c00435{left:437.120000pt;}
.x13_c00435{left:438.400000pt;}
.xf_c00435{left:439.680000pt;}
.x3c_c00435{left:456.960000pt;}
.x29_c00435{left:458.240000pt;}
.x14_c00435{left:478.080000pt;}
.x4a_c00435{left:486.400000pt;}
.x10_c00435{left:487.680000pt;}
.x3d_c00435{left:495.360000pt;}
.x1c_c00435{left:497.280000pt;}
.x8_c00435{left:506.240000pt;}
.x42_c00435{left:507.520000pt;}
.x45_c00435{left:514.560000pt;}
.x1d_c00435{left:515.840000pt;}
.x24_c00435{left:534.400000pt;}
.x17_c00435{left:535.680000pt;}
.x9_c00435{left:545.280000pt;}
.x33_c00435{left:554.880000pt;}
.x1e_c00435{left:564.480000pt;}
.x46_c00435{left:572.800000pt;}
.x34_c00435{left:584.320000pt;}
.x1f_c00435{left:593.920000pt;}
.x2c_c00435{left:602.880000pt;}
.x1_c00435{left:606.720000pt;}
.x3e_c00435{left:611.200000pt;}
.x35_c00435{left:622.080000pt;}
.x20_c00435{left:631.680000pt;}
.x21_c00435{left:650.880000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7b7335ba6e531c803a32e972.woff2')format("woff");}.ff1_c00436{font-family:ff1_c00436;line-height:1.109863;font-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_c00436{transform:matrix(0.165075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165075,0.000000,0.000000,0.250000,0,0);}
.m4f_c00436{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00436{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.m29_c00436{transform:matrix(0.184775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184775,0.000000,0.000000,0.250000,0,0);}
.m4c_c00436{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.m45_c00436{transform:matrix(0.203600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203600,0.000000,0.000000,0.250000,0,0);}
.m6_c00436{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m50_c00436{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m49_c00436{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);}
.m4e_c00436{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m3_c00436{transform:matrix(0.239600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239600,0.000000,0.000000,0.250000,0,0);}
.m44_c00436{transform:matrix(0.245075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245075,0.000000,0.000000,0.250000,0,0);}
.ma_c00436{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00436{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00436{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);}
.m3a_c00436{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_c00436{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);}
.m43_c00436{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);}
.m2b_c00436{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m12_c00436{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m4_c00436{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m13_c00436{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.mc_c00436{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m30_c00436{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mb_c00436{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);}
.m3e_c00436{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m19_c00436{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00436{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00436{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00436{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m48_c00436{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m20_c00436{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m5_c00436{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m32_c00436{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m23_c00436{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m31_c00436{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m25_c00436{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m27_c00436{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m28_c00436{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1_c00436{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00436{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00436{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00436{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m0_c00436{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);}
.m35_c00436{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.mf_c00436{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);}
.m39_c00436{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00436{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m46_c00436{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m33_c00436{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);}
.m36_c00436{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m8_c00436{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00436{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m14_c00436{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);}
.m3c_c00436{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);}
.m38_c00436{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);}
.m2_c00436{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);}
.m4d_c00436{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m17_c00436{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);}
.m10_c00436{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m34_c00436{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m9_c00436{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m21_c00436{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.me_c00436{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m40_c00436{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00436{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);}
.m37_c00436{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m11_c00436{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_c00436{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m47_c00436{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m7_c00436{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_c00436{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m24_c00436{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00436{transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);}
.m18_c00436{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);}
.m4b_c00436{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m41_c00436{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m16_c00436{transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);}
.m42_c00436{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);}
.m4a_c00436{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m15_c00436{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.v2_c00436{vertical-align:-5.760000px;}
.v0_c00436{vertical-align:0.000000px;}
.v1_c00436{vertical-align:5.760000px;}
.ls1_c00436{letter-spacing:0.000000px;}
.ls0_c00436{letter-spacing:73.656666px;}
.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;}
}
.ws1_c00436{word-spacing:0.000000px;}
.ws0_c00436{word-spacing:40.826640px;}
.fc0_c00436{color:transparent;}
.fsb_c00436{font-size:28.800000px;}
.fsf_c00436{font-size:34.560000px;}
.fsc_c00436{font-size:37.440000px;}
.fsa_c00436{font-size:40.320000px;}
.fs10_c00436{font-size:43.200000px;}
.fsd_c00436{font-size:46.080000px;}
.fs9_c00436{font-size:48.960000px;}
.fs2_c00436{font-size:51.840000px;}
.fs6_c00436{font-size:54.720000px;}
.fs8_c00436{font-size:57.600000px;}
.fs5_c00436{font-size:60.480000px;}
.fs3_c00436{font-size:63.360000px;}
.fs1_c00436{font-size:66.240000px;}
.fs4_c00436{font-size:69.120000px;}
.fs7_c00436{font-size:74.880000px;}
.fs0_c00436{font-size:77.760000px;}
.fs12_c00436{font-size:80.640000px;}
.fse_c00436{font-size:95.040000px;}
.fs11_c00436{font-size:103.680000px;}
.y0_c00436{bottom:0.000000px;}
.y6a_c00436{bottom:102.960000px;}
.y69_c00436{bottom:105.840000px;}
.y81_c00436{bottom:108.000000px;}
.y68_c00436{bottom:146.160000px;}
.y7f_c00436{bottom:148.320000px;}
.y67_c00436{bottom:149.040000px;}
.y7e_c00436{bottom:149.760000px;}
.y7d_c00436{bottom:150.480000px;}
.y80_c00436{bottom:151.200000px;}
.y7c_c00436{bottom:151.920000px;}
.y66_c00436{bottom:189.360000px;}
.y65_c00436{bottom:192.240000px;}
.y6c_c00436{bottom:192.960000px;}
.y6b_c00436{bottom:195.120000px;}
.y64_c00436{bottom:232.560000px;}
.y63_c00436{bottom:235.440000px;}
.y7b_c00436{bottom:236.880000px;}
.y7a_c00436{bottom:237.600000px;}
.y79_c00436{bottom:238.320000px;}
.y61_c00436{bottom:276.480000px;}
.y60_c00436{bottom:278.640000px;}
.y5f_c00436{bottom:279.360000px;}
.y77_c00436{bottom:280.080000px;}
.y78_c00436{bottom:280.800000px;}
.y5e_c00436{bottom:320.400000px;}
.y5b_c00436{bottom:321.120000px;}
.y5d_c00436{bottom:321.840000px;}
.y62_c00436{bottom:322.560000px;}
.y5c_c00436{bottom:324.000000px;}
.y76_c00436{bottom:324.720000px;}
.y5a_c00436{bottom:356.400000px;}
.y58_c00436{bottom:362.880000px;}
.y57_c00436{bottom:365.040000px;}
.y74_c00436{bottom:365.760000px;}
.y56_c00436{bottom:366.480000px;}
.y59_c00436{bottom:367.200000px;}
.y75_c00436{bottom:367.920000px;}
.y52_c00436{bottom:405.360000px;}
.y54_c00436{bottom:407.520000px;}
.y71_c00436{bottom:408.240000px;}
.y51_c00436{bottom:408.960000px;}
.y72_c00436{bottom:409.680000px;}
.y53_c00436{bottom:410.400000px;}
.y73_c00436{bottom:411.120000px;}
.y55_c00436{bottom:411.840000px;}
.y4d_c00436{bottom:449.280000px;}
.y50_c00436{bottom:450.720000px;}
.y4f_c00436{bottom:451.440000px;}
.y4b_c00436{bottom:452.160000px;}
.y70_c00436{bottom:452.880000px;}
.y4e_c00436{bottom:453.600000px;}
.y4c_c00436{bottom:454.320000px;}
.y4a_c00436{bottom:493.920000px;}
.y6f_c00436{bottom:495.360000px;}
.y48_c00436{bottom:496.080000px;}
.y49_c00436{bottom:497.520000px;}
.y47_c00436{bottom:530.640000px;}
.y44_c00436{bottom:537.120000px;}
.y45_c00436{bottom:538.560000px;}
.y42_c00436{bottom:539.280000px;}
.y46_c00436{bottom:540.720000px;}
.y43_c00436{bottom:541.440000px;}
.y40_c00436{bottom:580.320000px;}
.y3e_c00436{bottom:582.480000px;}
.y41_c00436{bottom:583.200000px;}
.y6e_c00436{bottom:583.920000px;}
.y3f_c00436{bottom:584.640000px;}
.y3d_c00436{bottom:623.520000px;}
.y3b_c00436{bottom:625.680000px;}
.y3c_c00436{bottom:627.120000px;}
.y38_c00436{bottom:655.920000px;}
.y35_c00436{bottom:657.360000px;}
.y3a_c00436{bottom:658.080000px;}
.y37_c00436{bottom:658.800000px;}
.y39_c00436{bottom:659.520000px;}
.y36_c00436{bottom:660.240000px;}
.y34_c00436{bottom:698.400000px;}
.y31_c00436{bottom:700.560000px;}
.y6d_c00436{bottom:701.280000px;}
.y33_c00436{bottom:702.000000px;}
.y32_c00436{bottom:702.720000px;}
.y2e_c00436{bottom:741.600000px;}
.y30_c00436{bottom:743.040000px;}
.y2b_c00436{bottom:743.760000px;}
.y2f_c00436{bottom:744.480000px;}
.y2d_c00436{bottom:745.200000px;}
.y2c_c00436{bottom:745.920000px;}
.y29_c00436{bottom:775.440000px;}
.y27_c00436{bottom:777.600000px;}
.y2a_c00436{bottom:779.040000px;}
.y23_c00436{bottom:784.800000px;}
.y28_c00436{bottom:785.520000px;}
.y21_c00436{bottom:786.240000px;}
.y24_c00436{bottom:786.960000px;}
.y26_c00436{bottom:787.680000px;}
.y25_c00436{bottom:788.400000px;}
.y22_c00436{bottom:789.120000px;}
.y1f_c00436{bottom:828.000000px;}
.y20_c00436{bottom:830.160000px;}
.y1d_c00436{bottom:830.880000px;}
.y1e_c00436{bottom:832.320000px;}
.y1a_c00436{bottom:871.200000px;}
.y1c_c00436{bottom:872.640000px;}
.y18_c00436{bottom:873.360000px;}
.y1b_c00436{bottom:874.080000px;}
.y19_c00436{bottom:875.520000px;}
.y15_c00436{bottom:915.120000px;}
.y17_c00436{bottom:915.840000px;}
.y12_c00436{bottom:916.560000px;}
.y16_c00436{bottom:918.000000px;}
.y13_c00436{bottom:918.720000px;}
.y14_c00436{bottom:919.440000px;}
.yf_c00436{bottom:958.320000px;}
.y10_c00436{bottom:959.760000px;}
.yc_c00436{bottom:960.480000px;}
.ye_c00436{bottom:961.920000px;}
.yd_c00436{bottom:962.640000px;}
.y11_c00436{bottom:963.360000px;}
.y9_c00436{bottom:1002.240000px;}
.yb_c00436{bottom:1002.960000px;}
.ya_c00436{bottom:1003.680000px;}
.y7_c00436{bottom:1004.400000px;}
.y8_c00436{bottom:1005.120000px;}
.y4_c00436{bottom:1045.440000px;}
.y2_c00436{bottom:1046.160000px;}
.y6_c00436{bottom:1046.880000px;}
.y5_c00436{bottom:1047.600000px;}
.y3_c00436{bottom:1049.040000px;}
.y1_c00436{bottom:1129.680000px;}
.hd_c00436{height:25.917187px;}
.h11_c00436{height:31.100625px;}
.he_c00436{height:33.692344px;}
.hc_c00436{height:36.284062px;}
.h12_c00436{height:38.875781px;}
.hf_c00436{height:41.467500px;}
.hb_c00436{height:44.059219px;}
.h4_c00436{height:46.650937px;}
.h8_c00436{height:49.242656px;}
.ha_c00436{height:51.834375px;}
.h7_c00436{height:54.426094px;}
.h5_c00436{height:57.017812px;}
.h3_c00436{height:59.609531px;}
.h6_c00436{height:62.201250px;}
.h9_c00436{height:67.384687px;}
.h2_c00436{height:69.976406px;}
.h14_c00436{height:72.568125px;}
.h10_c00436{height:85.526719px;}
.h13_c00436{height:93.301875px;}
.h1_c00436{height:1168.500000px;}
.h0_c00436{height:1168.560000px;}
.w0_c00436{width:782.640000px;}
.w1_c00436{width:783.000000px;}
.x0_c00436{left:0.000000px;}
.xd_c00436{left:67.680000px;}
.x2_c00436{left:69.840000px;}
.x2c_c00436{left:71.280000px;}
.xe_c00436{left:114.480000px;}
.x3_c00436{left:144.720000px;}
.x26_c00436{left:146.160000px;}
.x11_c00436{left:187.920000px;}
.x4_c00436{left:189.360000px;}
.x1d_c00436{left:199.440000px;}
.xb_c00436{left:231.120000px;}
.x19_c00436{left:241.920000px;}
.x27_c00436{left:264.960000px;}
.x1e_c00436{left:275.040000px;}
.x1a_c00436{left:286.560000px;}
.x12_c00436{left:295.920000px;}
.x21_c00436{left:297.360000px;}
.x28_c00436{left:307.440000px;}
.x1b_c00436{left:329.040000px;}
.x22_c00436{left:341.280000px;}
.x13_c00436{left:349.920000px;}
.x2b_c00436{left:372.240000px;}
.x23_c00436{left:382.320000px;}
.x14_c00436{left:395.280000px;}
.x1c_c00436{left:403.920000px;}
.x1f_c00436{left:425.520000px;}
.x24_c00436{left:426.960000px;}
.x17_c00436{left:447.840000px;}
.x29_c00436{left:459.360000px;}
.x20_c00436{left:470.160000px;}
.x15_c00436{left:479.520000px;}
.x25_c00436{left:480.960000px;}
.x2a_c00436{left:501.840000px;}
.x18_c00436{left:524.160000px;}
.x16_c00436{left:535.680000px;}
.x5_c00436{left:546.480000px;}
.x2f_c00436{left:558.000000px;}
.x10_c00436{left:578.880000px;}
.x6_c00436{left:600.480000px;}
.x9_c00436{left:622.800000px;}
.x2d_c00436{left:633.600000px;}
.xa_c00436{left:666.720000px;}
.x2e_c00436{left:676.800000px;}
.x1_c00436{left:689.040000px;}
.xc_c00436{left:699.840000px;}
.xf_c00436{left:708.480000px;}
.x7_c00436{left:709.920000px;}
.x8_c00436{left:730.080000px;}
@media print{
.v2_c00436{vertical-align:-5.120000pt;}
.v0_c00436{vertical-align:0.000000pt;}
.v1_c00436{vertical-align:5.120000pt;}
.ls1_c00436{letter-spacing:0.000000pt;}
.ls0_c00436{letter-spacing:65.472592pt;}
.ws1_c00436{word-spacing:0.000000pt;}
.ws0_c00436{word-spacing:36.290347pt;}
.fsb_c00436{font-size:25.600000pt;}
.fsf_c00436{font-size:30.720000pt;}
.fsc_c00436{font-size:33.280000pt;}
.fsa_c00436{font-size:35.840000pt;}
.fs10_c00436{font-size:38.400000pt;}
.fsd_c00436{font-size:40.960000pt;}
.fs9_c00436{font-size:43.520000pt;}
.fs2_c00436{font-size:46.080000pt;}
.fs6_c00436{font-size:48.640000pt;}
.fs8_c00436{font-size:51.200000pt;}
.fs5_c00436{font-size:53.760000pt;}
.fs3_c00436{font-size:56.320000pt;}
.fs1_c00436{font-size:58.880000pt;}
.fs4_c00436{font-size:61.440000pt;}
.fs7_c00436{font-size:66.560000pt;}
.fs0_c00436{font-size:69.120000pt;}
.fs12_c00436{font-size:71.680000pt;}
.fse_c00436{font-size:84.480000pt;}
.fs11_c00436{font-size:92.160000pt;}
.y0_c00436{bottom:0.000000pt;}
.y6a_c00436{bottom:91.520000pt;}
.y69_c00436{bottom:94.080000pt;}
.y81_c00436{bottom:96.000000pt;}
.y68_c00436{bottom:129.920000pt;}
.y7f_c00436{bottom:131.840000pt;}
.y67_c00436{bottom:132.480000pt;}
.y7e_c00436{bottom:133.120000pt;}
.y7d_c00436{bottom:133.760000pt;}
.y80_c00436{bottom:134.400000pt;}
.y7c_c00436{bottom:135.040000pt;}
.y66_c00436{bottom:168.320000pt;}
.y65_c00436{bottom:170.880000pt;}
.y6c_c00436{bottom:171.520000pt;}
.y6b_c00436{bottom:173.440000pt;}
.y64_c00436{bottom:206.720000pt;}
.y63_c00436{bottom:209.280000pt;}
.y7b_c00436{bottom:210.560000pt;}
.y7a_c00436{bottom:211.200000pt;}
.y79_c00436{bottom:211.840000pt;}
.y61_c00436{bottom:245.760000pt;}
.y60_c00436{bottom:247.680000pt;}
.y5f_c00436{bottom:248.320000pt;}
.y77_c00436{bottom:248.960000pt;}
.y78_c00436{bottom:249.600000pt;}
.y5e_c00436{bottom:284.800000pt;}
.y5b_c00436{bottom:285.440000pt;}
.y5d_c00436{bottom:286.080000pt;}
.y62_c00436{bottom:286.720000pt;}
.y5c_c00436{bottom:288.000000pt;}
.y76_c00436{bottom:288.640000pt;}
.y5a_c00436{bottom:316.800000pt;}
.y58_c00436{bottom:322.560000pt;}
.y57_c00436{bottom:324.480000pt;}
.y74_c00436{bottom:325.120000pt;}
.y56_c00436{bottom:325.760000pt;}
.y59_c00436{bottom:326.400000pt;}
.y75_c00436{bottom:327.040000pt;}
.y52_c00436{bottom:360.320000pt;}
.y54_c00436{bottom:362.240000pt;}
.y71_c00436{bottom:362.880000pt;}
.y51_c00436{bottom:363.520000pt;}
.y72_c00436{bottom:364.160000pt;}
.y53_c00436{bottom:364.800000pt;}
.y73_c00436{bottom:365.440000pt;}
.y55_c00436{bottom:366.080000pt;}
.y4d_c00436{bottom:399.360000pt;}
.y50_c00436{bottom:400.640000pt;}
.y4f_c00436{bottom:401.280000pt;}
.y4b_c00436{bottom:401.920000pt;}
.y70_c00436{bottom:402.560000pt;}
.y4e_c00436{bottom:403.200000pt;}
.y4c_c00436{bottom:403.840000pt;}
.y4a_c00436{bottom:439.040000pt;}
.y6f_c00436{bottom:440.320000pt;}
.y48_c00436{bottom:440.960000pt;}
.y49_c00436{bottom:442.240000pt;}
.y47_c00436{bottom:471.680000pt;}
.y44_c00436{bottom:477.440000pt;}
.y45_c00436{bottom:478.720000pt;}
.y42_c00436{bottom:479.360000pt;}
.y46_c00436{bottom:480.640000pt;}
.y43_c00436{bottom:481.280000pt;}
.y40_c00436{bottom:515.840000pt;}
.y3e_c00436{bottom:517.760000pt;}
.y41_c00436{bottom:518.400000pt;}
.y6e_c00436{bottom:519.040000pt;}
.y3f_c00436{bottom:519.680000pt;}
.y3d_c00436{bottom:554.240000pt;}
.y3b_c00436{bottom:556.160000pt;}
.y3c_c00436{bottom:557.440000pt;}
.y38_c00436{bottom:583.040000pt;}
.y35_c00436{bottom:584.320000pt;}
.y3a_c00436{bottom:584.960000pt;}
.y37_c00436{bottom:585.600000pt;}
.y39_c00436{bottom:586.240000pt;}
.y36_c00436{bottom:586.880000pt;}
.y34_c00436{bottom:620.800000pt;}
.y31_c00436{bottom:622.720000pt;}
.y6d_c00436{bottom:623.360000pt;}
.y33_c00436{bottom:624.000000pt;}
.y32_c00436{bottom:624.640000pt;}
.y2e_c00436{bottom:659.200000pt;}
.y30_c00436{bottom:660.480000pt;}
.y2b_c00436{bottom:661.120000pt;}
.y2f_c00436{bottom:661.760000pt;}
.y2d_c00436{bottom:662.400000pt;}
.y2c_c00436{bottom:663.040000pt;}
.y29_c00436{bottom:689.280000pt;}
.y27_c00436{bottom:691.200000pt;}
.y2a_c00436{bottom:692.480000pt;}
.y23_c00436{bottom:697.600000pt;}
.y28_c00436{bottom:698.240000pt;}
.y21_c00436{bottom:698.880000pt;}
.y24_c00436{bottom:699.520000pt;}
.y26_c00436{bottom:700.160000pt;}
.y25_c00436{bottom:700.800000pt;}
.y22_c00436{bottom:701.440000pt;}
.y1f_c00436{bottom:736.000000pt;}
.y20_c00436{bottom:737.920000pt;}
.y1d_c00436{bottom:738.560000pt;}
.y1e_c00436{bottom:739.840000pt;}
.y1a_c00436{bottom:774.400000pt;}
.y1c_c00436{bottom:775.680000pt;}
.y18_c00436{bottom:776.320000pt;}
.y1b_c00436{bottom:776.960000pt;}
.y19_c00436{bottom:778.240000pt;}
.y15_c00436{bottom:813.440000pt;}
.y17_c00436{bottom:814.080000pt;}
.y12_c00436{bottom:814.720000pt;}
.y16_c00436{bottom:816.000000pt;}
.y13_c00436{bottom:816.640000pt;}
.y14_c00436{bottom:817.280000pt;}
.yf_c00436{bottom:851.840000pt;}
.y10_c00436{bottom:853.120000pt;}
.yc_c00436{bottom:853.760000pt;}
.ye_c00436{bottom:855.040000pt;}
.yd_c00436{bottom:855.680000pt;}
.y11_c00436{bottom:856.320000pt;}
.y9_c00436{bottom:890.880000pt;}
.yb_c00436{bottom:891.520000pt;}
.ya_c00436{bottom:892.160000pt;}
.y7_c00436{bottom:892.800000pt;}
.y8_c00436{bottom:893.440000pt;}
.y4_c00436{bottom:929.280000pt;}
.y2_c00436{bottom:929.920000pt;}
.y6_c00436{bottom:930.560000pt;}
.y5_c00436{bottom:931.200000pt;}
.y3_c00436{bottom:932.480000pt;}
.y1_c00436{bottom:1004.160000pt;}
.hd_c00436{height:23.037500pt;}
.h11_c00436{height:27.645000pt;}
.he_c00436{height:29.948750pt;}
.hc_c00436{height:32.252500pt;}
.h12_c00436{height:34.556250pt;}
.hf_c00436{height:36.860000pt;}
.hb_c00436{height:39.163750pt;}
.h4_c00436{height:41.467500pt;}
.h8_c00436{height:43.771250pt;}
.ha_c00436{height:46.075000pt;}
.h7_c00436{height:48.378750pt;}
.h5_c00436{height:50.682500pt;}
.h3_c00436{height:52.986250pt;}
.h6_c00436{height:55.290000pt;}
.h9_c00436{height:59.897500pt;}
.h2_c00436{height:62.201250pt;}
.h14_c00436{height:64.505000pt;}
.h10_c00436{height:76.023750pt;}
.h13_c00436{height:82.935000pt;}
.h1_c00436{height:1038.666667pt;}
.h0_c00436{height:1038.720000pt;}
.w0_c00436{width:695.680000pt;}
.w1_c00436{width:696.000000pt;}
.x0_c00436{left:0.000000pt;}
.xd_c00436{left:60.160000pt;}
.x2_c00436{left:62.080000pt;}
.x2c_c00436{left:63.360000pt;}
.xe_c00436{left:101.760000pt;}
.x3_c00436{left:128.640000pt;}
.x26_c00436{left:129.920000pt;}
.x11_c00436{left:167.040000pt;}
.x4_c00436{left:168.320000pt;}
.x1d_c00436{left:177.280000pt;}
.xb_c00436{left:205.440000pt;}
.x19_c00436{left:215.040000pt;}
.x27_c00436{left:235.520000pt;}
.x1e_c00436{left:244.480000pt;}
.x1a_c00436{left:254.720000pt;}
.x12_c00436{left:263.040000pt;}
.x21_c00436{left:264.320000pt;}
.x28_c00436{left:273.280000pt;}
.x1b_c00436{left:292.480000pt;}
.x22_c00436{left:303.360000pt;}
.x13_c00436{left:311.040000pt;}
.x2b_c00436{left:330.880000pt;}
.x23_c00436{left:339.840000pt;}
.x14_c00436{left:351.360000pt;}
.x1c_c00436{left:359.040000pt;}
.x1f_c00436{left:378.240000pt;}
.x24_c00436{left:379.520000pt;}
.x17_c00436{left:398.080000pt;}
.x29_c00436{left:408.320000pt;}
.x20_c00436{left:417.920000pt;}
.x15_c00436{left:426.240000pt;}
.x25_c00436{left:427.520000pt;}
.x2a_c00436{left:446.080000pt;}
.x18_c00436{left:465.920000pt;}
.x16_c00436{left:476.160000pt;}
.x5_c00436{left:485.760000pt;}
.x2f_c00436{left:496.000000pt;}
.x10_c00436{left:514.560000pt;}
.x6_c00436{left:533.760000pt;}
.x9_c00436{left:553.600000pt;}
.x2d_c00436{left:563.200000pt;}
.xa_c00436{left:592.640000pt;}
.x2e_c00436{left:601.600000pt;}
.x1_c00436{left:612.480000pt;}
.xc_c00436{left:622.080000pt;}
.xf_c00436{left:629.760000pt;}
.x7_c00436{left:631.040000pt;}
.x8_c00436{left:648.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_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_b13d898ea23990df1ef5f52c.woff2')format("woff");}.ff1_c00437{font-family:ff1_c00437;line-height:1.109863;font-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_c00437{transform:matrix(0.178950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178950,0.000000,0.000000,0.250000,0,0);}
.m3a_c00437{transform:matrix(0.199975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199975,0.000000,0.000000,0.250000,0,0);}
.m1b_c00437{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m42_c00437{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);}
.m37_c00437{transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);}
.m16_c00437{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m39_c00437{transform:matrix(0.236600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236600,0.000000,0.000000,0.250000,0,0);}
.m5_c00437{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m41_c00437{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);}
.m34_c00437{transform:matrix(0.246925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246925,0.000000,0.000000,0.250000,0,0);}
.ma_c00437{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m32_c00437{transform:matrix(0.247400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247400,0.000000,0.000000,0.250000,0,0);}
.m20_c00437{transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);}
.m2e_c00437{transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);}
.m3f_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);}
.m3b_c00437{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);}
.m30_c00437{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m19_c00437{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);}
.m3e_c00437{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_c00437{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m17_c00437{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_c00437{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m9_c00437{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m4_c00437{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00437{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m12_c00437{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);}
.m40_c00437{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m7_c00437{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m6_c00437{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m11_c00437{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00437{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1_c00437{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mb_c00437{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00437{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m24_c00437{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00437{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00437{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.me_c00437{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m13_c00437{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m0_c00437{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00437{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m36_c00437{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m8_c00437{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mf_c00437{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m25_c00437{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);}
.m27_c00437{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00437{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_c00437{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00437{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m22_c00437{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);}
.m2b_c00437{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_c00437{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m2_c00437{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m45_c00437{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m26_c00437{transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);}
.m44_c00437{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m38_c00437{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m18_c00437{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);}
.m29_c00437{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m33_c00437{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);}
.m15_c00437{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m35_c00437{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00437{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m43_c00437{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);}
.m10_c00437{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.m28_c00437{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.m23_c00437{transform:matrix(0.810000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.810000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.810000,0.000000,0.000000,0.250000,0,0);}
.m31_c00437{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00437{transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);}
.m3_c00437{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.v4_c00437{vertical-align:-8.640000px;}
.v2_c00437{vertical-align:-5.760000px;}
.v0_c00437{vertical-align:0.000000px;}
.v3_c00437{vertical-align:5.760000px;}
.v1_c00437{vertical-align:11.520000px;}
.ls1_c00437{letter-spacing:0.000000px;}
.ls0_c00437{letter-spacing:50.642400px;}
.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;}
}
.ws3_c00437{word-spacing:-0.571920px;}
.ws6_c00437{word-spacing:0.000000px;}
.ws1_c00437{word-spacing:9.210378px;}
.ws0_c00437{word-spacing:11.693143px;}
.ws4_c00437{word-spacing:15.600000px;}
.ws2_c00437{word-spacing:47.042880px;}
.ws5_c00437{word-spacing:807.740640px;}
.fc0_c00437{color:transparent;}
.fs3_c00437{font-size:14.400000px;}
.fs2_c00437{font-size:25.920000px;}
.fsf_c00437{font-size:37.440000px;}
.fsb_c00437{font-size:46.080000px;}
.fs5_c00437{font-size:48.960000px;}
.fsd_c00437{font-size:51.840000px;}
.fs8_c00437{font-size:54.720000px;}
.fs6_c00437{font-size:57.600000px;}
.fs1_c00437{font-size:60.480000px;}
.fs9_c00437{font-size:63.360000px;}
.fs7_c00437{font-size:66.240000px;}
.fsa_c00437{font-size:69.120000px;}
.fsc_c00437{font-size:72.000000px;}
.fs0_c00437{font-size:74.880000px;}
.fs4_c00437{font-size:77.760000px;}
.fs10_c00437{font-size:80.640000px;}
.fse_c00437{font-size:103.680000px;}
.y0_c00437{bottom:0.000000px;}
.y7e_c00437{bottom:130.320000px;}
.y7f_c00437{bottom:131.040000px;}
.y81_c00437{bottom:132.480000px;}
.y7d_c00437{bottom:133.200000px;}
.y80_c00437{bottom:134.640000px;}
.y82_c00437{bottom:135.360000px;}
.y79_c00437{bottom:174.240000px;}
.y7c_c00437{bottom:175.680000px;}
.y78_c00437{bottom:177.120000px;}
.y7b_c00437{bottom:178.560000px;}
.y7a_c00437{bottom:179.280000px;}
.y74_c00437{bottom:217.440000px;}
.y76_c00437{bottom:218.160000px;}
.y73_c00437{bottom:219.600000px;}
.y77_c00437{bottom:220.320000px;}
.y75_c00437{bottom:221.040000px;}
.y6c_c00437{bottom:259.920000px;}
.y70_c00437{bottom:261.360000px;}
.y6e_c00437{bottom:262.080000px;}
.y6b_c00437{bottom:262.800000px;}
.y72_c00437{bottom:263.520000px;}
.y6f_c00437{bottom:264.240000px;}
.y6d_c00437{bottom:264.960000px;}
.y71_c00437{bottom:265.680000px;}
.y67_c00437{bottom:303.840000px;}
.y66_c00437{bottom:305.280000px;}
.y6a_c00437{bottom:306.000000px;}
.y68_c00437{bottom:307.440000px;}
.y69_c00437{bottom:308.160000px;}
.y61_c00437{bottom:346.320000px;}
.y65_c00437{bottom:347.760000px;}
.y62_c00437{bottom:348.480000px;}
.y60_c00437{bottom:349.200000px;}
.y63_c00437{bottom:351.360000px;}
.y64_c00437{bottom:352.080000px;}
.y5b_c00437{bottom:389.520000px;}
.y5d_c00437{bottom:390.960000px;}
.y5e_c00437{bottom:391.680000px;}
.y5a_c00437{bottom:392.400000px;}
.y5f_c00437{bottom:393.120000px;}
.y5c_c00437{bottom:393.840000px;}
.y58_c00437{bottom:426.240000px;}
.y56_c00437{bottom:432.000000px;}
.y55_c00437{bottom:434.880000px;}
.y59_c00437{bottom:435.600000px;}
.y57_c00437{bottom:436.320000px;}
.y50_c00437{bottom:475.920000px;}
.y52_c00437{bottom:476.640000px;}
.y54_c00437{bottom:477.360000px;}
.y4f_c00437{bottom:478.800000px;}
.y51_c00437{bottom:479.520000px;}
.y53_c00437{bottom:480.240000px;}
.y49_c00437{bottom:519.120000px;}
.y4c_c00437{bottom:519.840000px;}
.y4d_c00437{bottom:520.560000px;}
.y48_c00437{bottom:521.280000px;}
.y4e_c00437{bottom:522.000000px;}
.y4a_c00437{bottom:522.720000px;}
.y4b_c00437{bottom:523.440000px;}
.y43_c00437{bottom:562.320000px;}
.y46_c00437{bottom:563.760000px;}
.y44_c00437{bottom:564.480000px;}
.y42_c00437{bottom:565.200000px;}
.y45_c00437{bottom:565.920000px;}
.y47_c00437{bottom:566.640000px;}
.y40_c00437{bottom:599.040000px;}
.y3c_c00437{bottom:606.240000px;}
.y3e_c00437{bottom:606.960000px;}
.y41_c00437{bottom:607.680000px;}
.y3b_c00437{bottom:608.400000px;}
.y3f_c00437{bottom:609.120000px;}
.y3d_c00437{bottom:609.840000px;}
.y36_c00437{bottom:649.440000px;}
.y3a_c00437{bottom:650.160000px;}
.y39_c00437{bottom:650.880000px;}
.y35_c00437{bottom:651.600000px;}
.y38_c00437{bottom:652.320000px;}
.y37_c00437{bottom:653.040000px;}
.y34_c00437{bottom:692.640000px;}
.y32_c00437{bottom:694.080000px;}
.y33_c00437{bottom:694.800000px;}
.y31_c00437{bottom:696.240000px;}
.y2d_c00437{bottom:724.320000px;}
.y2f_c00437{bottom:726.480000px;}
.y30_c00437{bottom:727.200000px;}
.y2c_c00437{bottom:727.920000px;}
.y2e_c00437{bottom:728.640000px;}
.y27_c00437{bottom:768.240000px;}
.y2a_c00437{bottom:769.680000px;}
.y26_c00437{bottom:770.400000px;}
.y2b_c00437{bottom:771.120000px;}
.y28_c00437{bottom:771.840000px;}
.y29_c00437{bottom:772.560000px;}
.y22_c00437{bottom:811.440000px;}
.y25_c00437{bottom:812.880000px;}
.y21_c00437{bottom:814.320000px;}
.y24_c00437{bottom:815.040000px;}
.y23_c00437{bottom:815.760000px;}
.y1d_c00437{bottom:853.920000px;}
.y20_c00437{bottom:855.360000px;}
.y1c_c00437{bottom:856.080000px;}
.y1f_c00437{bottom:856.800000px;}
.y1e_c00437{bottom:858.240000px;}
.y18_c00437{bottom:897.120000px;}
.y1a_c00437{bottom:897.840000px;}
.y17_c00437{bottom:898.560000px;}
.y19_c00437{bottom:899.280000px;}
.y1b_c00437{bottom:900.000000px;}
.y13_c00437{bottom:939.600000px;}
.y16_c00437{bottom:941.040000px;}
.y15_c00437{bottom:941.760000px;}
.y12_c00437{bottom:942.480000px;}
.y14_c00437{bottom:943.200000px;}
.yd_c00437{bottom:983.520000px;}
.y11_c00437{bottom:984.240000px;}
.yc_c00437{bottom:984.960000px;}
.ye_c00437{bottom:986.400000px;}
.y10_c00437{bottom:987.120000px;}
.yf_c00437{bottom:987.840000px;}
.ya_c00437{bottom:1026.000000px;}
.yb_c00437{bottom:1026.720000px;}
.y9_c00437{bottom:1027.440000px;}
.y4_c00437{bottom:1069.200000px;}
.y8_c00437{bottom:1069.920000px;}
.y6_c00437{bottom:1070.640000px;}
.y7_c00437{bottom:1071.360000px;}
.y2_c00437{bottom:1072.080000px;}
.y5_c00437{bottom:1072.800000px;}
.y3_c00437{bottom:1076.400000px;}
.y1_c00437{bottom:1128.240000px;}
.h5_c00437{height:12.958594px;}
.h4_c00437{height:23.325469px;}
.h11_c00437{height:33.692344px;}
.hd_c00437{height:41.467500px;}
.h7_c00437{height:44.059219px;}
.hf_c00437{height:46.650937px;}
.ha_c00437{height:49.242656px;}
.h8_c00437{height:51.834375px;}
.h3_c00437{height:54.426094px;}
.hb_c00437{height:57.017812px;}
.h14_c00437{height:57.594375px;}
.h9_c00437{height:59.609531px;}
.hc_c00437{height:62.201250px;}
.h13_c00437{height:64.216406px;}
.he_c00437{height:64.792969px;}
.h2_c00437{height:67.384687px;}
.h6_c00437{height:69.976406px;}
.h12_c00437{height:72.568125px;}
.h10_c00437{height:93.301875px;}
.h1_c00437{height:1168.500000px;}
.h0_c00437{height:1168.560000px;}
.w1_c00437{width:783.750000px;}
.w0_c00437{width:784.080000px;}
.x0_c00437{left:0.000000px;}
.x24_c00437{left:64.800000px;}
.x2_c00437{left:66.240000px;}
.x3_c00437{left:110.160000px;}
.x4_c00437{left:120.240000px;}
.x35_c00437{left:138.960000px;}
.x10_c00437{left:140.400000px;}
.x5_c00437{left:141.840000px;}
.x18_c00437{left:183.600000px;}
.x28_c00437{left:194.400000px;}
.x2b_c00437{left:226.800000px;}
.x14_c00437{left:228.240000px;}
.x19_c00437{left:236.880000px;}
.x29_c00437{left:249.120000px;}
.x33_c00437{left:259.920000px;}
.x2f_c00437{left:270.000000px;}
.x1b_c00437{left:271.440000px;}
.x2c_c00437{left:281.520000px;}
.x15_c00437{left:282.960000px;}
.x1a_c00437{left:292.320000px;}
.x34_c00437{left:302.400000px;}
.x36_c00437{left:313.200000px;}
.x1c_c00437{left:314.640000px;}
.x30_c00437{left:324.720000px;}
.x21_c00437{left:326.160000px;}
.x32_c00437{left:336.240000px;}
.x25_c00437{left:357.120000px;}
.x39_c00437{left:378.000000px;}
.x16_c00437{left:411.840000px;}
.x3a_c00437{left:421.200000px;}
.x2d_c00437{left:432.000000px;}
.x22_c00437{left:455.040000px;}
.x2e_c00437{left:475.920000px;}
.x23_c00437{left:509.760000px;}
.x2a_c00437{left:542.160000px;}
.xf_c00437{left:543.600000px;}
.x1d_c00437{left:552.960000px;}
.x6_c00437{left:554.400000px;}
.x37_c00437{left:573.120000px;}
.x7_c00437{left:574.560000px;}
.xc_c00437{left:576.720000px;}
.x11_c00437{left:586.080000px;}
.x3b_c00437{left:594.000000px;}
.x31_c00437{left:595.440000px;}
.xd_c00437{left:607.680000px;}
.x26_c00437{left:628.560000px;}
.x8_c00437{left:630.000000px;}
.x1e_c00437{left:639.360000px;}
.x12_c00437{left:641.520000px;}
.x27_c00437{left:661.680000px;}
.xa_c00437{left:663.120000px;}
.x1f_c00437{left:671.760000px;}
.x13_c00437{left:673.920000px;}
.x1_c00437{left:695.520000px;}
.x9_c00437{left:704.880000px;}
.xb_c00437{left:707.040000px;}
.x17_c00437{left:717.120000px;}
.x38_c00437{left:725.040000px;}
.xe_c00437{left:726.480000px;}
.x20_c00437{left:737.280000px;}
@media print{
.v4_c00437{vertical-align:-7.680000pt;}
.v2_c00437{vertical-align:-5.120000pt;}
.v0_c00437{vertical-align:0.000000pt;}
.v3_c00437{vertical-align:5.120000pt;}
.v1_c00437{vertical-align:10.240000pt;}
.ls1_c00437{letter-spacing:0.000000pt;}
.ls0_c00437{letter-spacing:45.015467pt;}
.ws3_c00437{word-spacing:-0.508373pt;}
.ws6_c00437{word-spacing:0.000000pt;}
.ws1_c00437{word-spacing:8.187003pt;}
.ws0_c00437{word-spacing:10.393905pt;}
.ws4_c00437{word-spacing:13.866667pt;}
.ws2_c00437{word-spacing:41.815893pt;}
.ws5_c00437{word-spacing:717.991680pt;}
.fs3_c00437{font-size:12.800000pt;}
.fs2_c00437{font-size:23.040000pt;}
.fsf_c00437{font-size:33.280000pt;}
.fsb_c00437{font-size:40.960000pt;}
.fs5_c00437{font-size:43.520000pt;}
.fsd_c00437{font-size:46.080000pt;}
.fs8_c00437{font-size:48.640000pt;}
.fs6_c00437{font-size:51.200000pt;}
.fs1_c00437{font-size:53.760000pt;}
.fs9_c00437{font-size:56.320000pt;}
.fs7_c00437{font-size:58.880000pt;}
.fsa_c00437{font-size:61.440000pt;}
.fsc_c00437{font-size:64.000000pt;}
.fs0_c00437{font-size:66.560000pt;}
.fs4_c00437{font-size:69.120000pt;}
.fs10_c00437{font-size:71.680000pt;}
.fse_c00437{font-size:92.160000pt;}
.y0_c00437{bottom:0.000000pt;}
.y7e_c00437{bottom:115.840000pt;}
.y7f_c00437{bottom:116.480000pt;}
.y81_c00437{bottom:117.760000pt;}
.y7d_c00437{bottom:118.400000pt;}
.y80_c00437{bottom:119.680000pt;}
.y82_c00437{bottom:120.320000pt;}
.y79_c00437{bottom:154.880000pt;}
.y7c_c00437{bottom:156.160000pt;}
.y78_c00437{bottom:157.440000pt;}
.y7b_c00437{bottom:158.720000pt;}
.y7a_c00437{bottom:159.360000pt;}
.y74_c00437{bottom:193.280000pt;}
.y76_c00437{bottom:193.920000pt;}
.y73_c00437{bottom:195.200000pt;}
.y77_c00437{bottom:195.840000pt;}
.y75_c00437{bottom:196.480000pt;}
.y6c_c00437{bottom:231.040000pt;}
.y70_c00437{bottom:232.320000pt;}
.y6e_c00437{bottom:232.960000pt;}
.y6b_c00437{bottom:233.600000pt;}
.y72_c00437{bottom:234.240000pt;}
.y6f_c00437{bottom:234.880000pt;}
.y6d_c00437{bottom:235.520000pt;}
.y71_c00437{bottom:236.160000pt;}
.y67_c00437{bottom:270.080000pt;}
.y66_c00437{bottom:271.360000pt;}
.y6a_c00437{bottom:272.000000pt;}
.y68_c00437{bottom:273.280000pt;}
.y69_c00437{bottom:273.920000pt;}
.y61_c00437{bottom:307.840000pt;}
.y65_c00437{bottom:309.120000pt;}
.y62_c00437{bottom:309.760000pt;}
.y60_c00437{bottom:310.400000pt;}
.y63_c00437{bottom:312.320000pt;}
.y64_c00437{bottom:312.960000pt;}
.y5b_c00437{bottom:346.240000pt;}
.y5d_c00437{bottom:347.520000pt;}
.y5e_c00437{bottom:348.160000pt;}
.y5a_c00437{bottom:348.800000pt;}
.y5f_c00437{bottom:349.440000pt;}
.y5c_c00437{bottom:350.080000pt;}
.y58_c00437{bottom:378.880000pt;}
.y56_c00437{bottom:384.000000pt;}
.y55_c00437{bottom:386.560000pt;}
.y59_c00437{bottom:387.200000pt;}
.y57_c00437{bottom:387.840000pt;}
.y50_c00437{bottom:423.040000pt;}
.y52_c00437{bottom:423.680000pt;}
.y54_c00437{bottom:424.320000pt;}
.y4f_c00437{bottom:425.600000pt;}
.y51_c00437{bottom:426.240000pt;}
.y53_c00437{bottom:426.880000pt;}
.y49_c00437{bottom:461.440000pt;}
.y4c_c00437{bottom:462.080000pt;}
.y4d_c00437{bottom:462.720000pt;}
.y48_c00437{bottom:463.360000pt;}
.y4e_c00437{bottom:464.000000pt;}
.y4a_c00437{bottom:464.640000pt;}
.y4b_c00437{bottom:465.280000pt;}
.y43_c00437{bottom:499.840000pt;}
.y46_c00437{bottom:501.120000pt;}
.y44_c00437{bottom:501.760000pt;}
.y42_c00437{bottom:502.400000pt;}
.y45_c00437{bottom:503.040000pt;}
.y47_c00437{bottom:503.680000pt;}
.y40_c00437{bottom:532.480000pt;}
.y3c_c00437{bottom:538.880000pt;}
.y3e_c00437{bottom:539.520000pt;}
.y41_c00437{bottom:540.160000pt;}
.y3b_c00437{bottom:540.800000pt;}
.y3f_c00437{bottom:541.440000pt;}
.y3d_c00437{bottom:542.080000pt;}
.y36_c00437{bottom:577.280000pt;}
.y3a_c00437{bottom:577.920000pt;}
.y39_c00437{bottom:578.560000pt;}
.y35_c00437{bottom:579.200000pt;}
.y38_c00437{bottom:579.840000pt;}
.y37_c00437{bottom:580.480000pt;}
.y34_c00437{bottom:615.680000pt;}
.y32_c00437{bottom:616.960000pt;}
.y33_c00437{bottom:617.600000pt;}
.y31_c00437{bottom:618.880000pt;}
.y2d_c00437{bottom:643.840000pt;}
.y2f_c00437{bottom:645.760000pt;}
.y30_c00437{bottom:646.400000pt;}
.y2c_c00437{bottom:647.040000pt;}
.y2e_c00437{bottom:647.680000pt;}
.y27_c00437{bottom:682.880000pt;}
.y2a_c00437{bottom:684.160000pt;}
.y26_c00437{bottom:684.800000pt;}
.y2b_c00437{bottom:685.440000pt;}
.y28_c00437{bottom:686.080000pt;}
.y29_c00437{bottom:686.720000pt;}
.y22_c00437{bottom:721.280000pt;}
.y25_c00437{bottom:722.560000pt;}
.y21_c00437{bottom:723.840000pt;}
.y24_c00437{bottom:724.480000pt;}
.y23_c00437{bottom:725.120000pt;}
.y1d_c00437{bottom:759.040000pt;}
.y20_c00437{bottom:760.320000pt;}
.y1c_c00437{bottom:760.960000pt;}
.y1f_c00437{bottom:761.600000pt;}
.y1e_c00437{bottom:762.880000pt;}
.y18_c00437{bottom:797.440000pt;}
.y1a_c00437{bottom:798.080000pt;}
.y17_c00437{bottom:798.720000pt;}
.y19_c00437{bottom:799.360000pt;}
.y1b_c00437{bottom:800.000000pt;}
.y13_c00437{bottom:835.200000pt;}
.y16_c00437{bottom:836.480000pt;}
.y15_c00437{bottom:837.120000pt;}
.y12_c00437{bottom:837.760000pt;}
.y14_c00437{bottom:838.400000pt;}
.yd_c00437{bottom:874.240000pt;}
.y11_c00437{bottom:874.880000pt;}
.yc_c00437{bottom:875.520000pt;}
.ye_c00437{bottom:876.800000pt;}
.y10_c00437{bottom:877.440000pt;}
.yf_c00437{bottom:878.080000pt;}
.ya_c00437{bottom:912.000000pt;}
.yb_c00437{bottom:912.640000pt;}
.y9_c00437{bottom:913.280000pt;}
.y4_c00437{bottom:950.400000pt;}
.y8_c00437{bottom:951.040000pt;}
.y6_c00437{bottom:951.680000pt;}
.y7_c00437{bottom:952.320000pt;}
.y2_c00437{bottom:952.960000pt;}
.y5_c00437{bottom:953.600000pt;}
.y3_c00437{bottom:956.800000pt;}
.y1_c00437{bottom:1002.880000pt;}
.h5_c00437{height:11.518750pt;}
.h4_c00437{height:20.733750pt;}
.h11_c00437{height:29.948750pt;}
.hd_c00437{height:36.860000pt;}
.h7_c00437{height:39.163750pt;}
.hf_c00437{height:41.467500pt;}
.ha_c00437{height:43.771250pt;}
.h8_c00437{height:46.075000pt;}
.h3_c00437{height:48.378750pt;}
.hb_c00437{height:50.682500pt;}
.h14_c00437{height:51.195000pt;}
.h9_c00437{height:52.986250pt;}
.hc_c00437{height:55.290000pt;}
.h13_c00437{height:57.081250pt;}
.he_c00437{height:57.593750pt;}
.h2_c00437{height:59.897500pt;}
.h6_c00437{height:62.201250pt;}
.h12_c00437{height:64.505000pt;}
.h10_c00437{height:82.935000pt;}
.h1_c00437{height:1038.666667pt;}
.h0_c00437{height:1038.720000pt;}
.w1_c00437{width:696.666667pt;}
.w0_c00437{width:696.960000pt;}
.x0_c00437{left:0.000000pt;}
.x24_c00437{left:57.600000pt;}
.x2_c00437{left:58.880000pt;}
.x3_c00437{left:97.920000pt;}
.x4_c00437{left:106.880000pt;}
.x35_c00437{left:123.520000pt;}
.x10_c00437{left:124.800000pt;}
.x5_c00437{left:126.080000pt;}
.x18_c00437{left:163.200000pt;}
.x28_c00437{left:172.800000pt;}
.x2b_c00437{left:201.600000pt;}
.x14_c00437{left:202.880000pt;}
.x19_c00437{left:210.560000pt;}
.x29_c00437{left:221.440000pt;}
.x33_c00437{left:231.040000pt;}
.x2f_c00437{left:240.000000pt;}
.x1b_c00437{left:241.280000pt;}
.x2c_c00437{left:250.240000pt;}
.x15_c00437{left:251.520000pt;}
.x1a_c00437{left:259.840000pt;}
.x34_c00437{left:268.800000pt;}
.x36_c00437{left:278.400000pt;}
.x1c_c00437{left:279.680000pt;}
.x30_c00437{left:288.640000pt;}
.x21_c00437{left:289.920000pt;}
.x32_c00437{left:298.880000pt;}
.x25_c00437{left:317.440000pt;}
.x39_c00437{left:336.000000pt;}
.x16_c00437{left:366.080000pt;}
.x3a_c00437{left:374.400000pt;}
.x2d_c00437{left:384.000000pt;}
.x22_c00437{left:404.480000pt;}
.x2e_c00437{left:423.040000pt;}
.x23_c00437{left:453.120000pt;}
.x2a_c00437{left:481.920000pt;}
.xf_c00437{left:483.200000pt;}
.x1d_c00437{left:491.520000pt;}
.x6_c00437{left:492.800000pt;}
.x37_c00437{left:509.440000pt;}
.x7_c00437{left:510.720000pt;}
.xc_c00437{left:512.640000pt;}
.x11_c00437{left:520.960000pt;}
.x3b_c00437{left:528.000000pt;}
.x31_c00437{left:529.280000pt;}
.xd_c00437{left:540.160000pt;}
.x26_c00437{left:558.720000pt;}
.x8_c00437{left:560.000000pt;}
.x1e_c00437{left:568.320000pt;}
.x12_c00437{left:570.240000pt;}
.x27_c00437{left:588.160000pt;}
.xa_c00437{left:589.440000pt;}
.x1f_c00437{left:597.120000pt;}
.x13_c00437{left:599.040000pt;}
.x1_c00437{left:618.240000pt;}
.x9_c00437{left:626.560000pt;}
.xb_c00437{left:628.480000pt;}
.x17_c00437{left:637.440000pt;}
.x38_c00437{left:644.480000pt;}
.xe_c00437{left:645.760000pt;}
.x20_c00437{left:655.360000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7d9de543468c6234c646e6da.woff2')format("woff");}.ff1_c00438{font-family:ff1_c00438;line-height:1.109863;font-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_c00438{transform:matrix(0.172100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172100,0.000000,0.000000,0.250000,0,0);}
.m1d_c00438{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m3d_c00438{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00438{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m49_c00438{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.me_c00438{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m21_c00438{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.mc_c00438{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m11_c00438{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m6_c00438{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1_c00438{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m5_c00438{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m9_c00438{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00438{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m15_c00438{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m8_c00438{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);}
.m47_c00438{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mb_c00438{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00438{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m3_c00438{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.md_c00438{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00438{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m27_c00438{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m2_c00438{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m20_c00438{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m25_c00438{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m29_c00438{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m36_c00438{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00438{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m12_c00438{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m35_c00438{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m0_c00438{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m38_c00438{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m17_c00438{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m23_c00438{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_c00438{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00438{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);}
.m45_c00438{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m42_c00438{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);}
.m3e_c00438{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m22_c00438{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m14_c00438{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);}
.m7_c00438{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m4_c00438{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m10_c00438{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);}
.m3b_c00438{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m46_c00438{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);}
.m39_c00438{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m16_c00438{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m13_c00438{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00438{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00438{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m48_c00438{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);}
.m32_c00438{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00438{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m31_c00438{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00438{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);}
.m43_c00438{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m33_c00438{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m30_c00438{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00438{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);}
.m41_c00438{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m26_c00438{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m34_c00438{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m37_c00438{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00438{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.mf_c00438{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00438{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00438{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00438{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_c00438{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m40_c00438{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m18_c00438{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00438{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00438{transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);}
.m28_c00438{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.v0_c00438{vertical-align:0.000000px;}
.v1_c00438{vertical-align:5.760000px;}
.ls1_c00438{letter-spacing:0.000000px;}
.ls0_c00438{letter-spacing:45.576960px;}
.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;}
}
.ws3_c00438{word-spacing:0.000000px;}
.ws0_c00438{word-spacing:8.131104px;}
.ws2_c00438{word-spacing:12.954505px;}
.ws1_c00438{word-spacing:56.301600px;}
.fc0_c00438{color:transparent;}
.fsf_c00438{font-size:11.520000px;}
.fs7_c00438{font-size:34.560000px;}
.fsc_c00438{font-size:43.200000px;}
.fs8_c00438{font-size:46.080000px;}
.fsa_c00438{font-size:48.960000px;}
.fs6_c00438{font-size:51.840000px;}
.fs5_c00438{font-size:54.720000px;}
.fsb_c00438{font-size:57.600000px;}
.fs2_c00438{font-size:60.480000px;}
.fse_c00438{font-size:63.360000px;}
.fs0_c00438{font-size:66.240000px;}
.fs3_c00438{font-size:69.120000px;}
.fs1_c00438{font-size:72.000000px;}
.fs4_c00438{font-size:74.880000px;}
.fs10_c00438{font-size:77.760000px;}
.fs9_c00438{font-size:92.160000px;}
.fsd_c00438{font-size:112.320000px;}
.y0_c00438{bottom:0.000000px;}
.y6d_c00438{bottom:47.520000px;}
.y73_c00438{bottom:49.680000px;}
.y66_c00438{bottom:50.400000px;}
.y6b_c00438{bottom:51.120000px;}
.y6c_c00438{bottom:51.840000px;}
.y6a_c00438{bottom:90.000000px;}
.y65_c00438{bottom:93.600000px;}
.y68_c00438{bottom:94.320000px;}
.y69_c00438{bottom:95.040000px;}
.y72_c00438{bottom:133.920000px;}
.y64_c00438{bottom:136.080000px;}
.y71_c00438{bottom:136.800000px;}
.y67_c00438{bottom:137.520000px;}
.y70_c00438{bottom:138.960000px;}
.y6f_c00438{bottom:178.560000px;}
.y63_c00438{bottom:179.280000px;}
.y61_c00438{bottom:180.000000px;}
.y62_c00438{bottom:180.720000px;}
.y5f_c00438{bottom:223.200000px;}
.y5d_c00438{bottom:253.440000px;}
.y60_c00438{bottom:254.160000px;}
.y5c_c00438{bottom:254.880000px;}
.y5e_c00438{bottom:255.600000px;}
.y5a_c00438{bottom:296.640000px;}
.y59_c00438{bottom:298.080000px;}
.y5b_c00438{bottom:298.800000px;}
.y6e_c00438{bottom:299.520000px;}
.y57_c00438{bottom:340.560000px;}
.y58_c00438{bottom:342.000000px;}
.y56_c00438{bottom:371.520000px;}
.y54_c00438{bottom:372.240000px;}
.y52_c00438{bottom:373.680000px;}
.y53_c00438{bottom:374.400000px;}
.y55_c00438{bottom:375.120000px;}
.y51_c00438{bottom:407.520000px;}
.y4f_c00438{bottom:414.720000px;}
.y4e_c00438{bottom:415.440000px;}
.y50_c00438{bottom:416.880000px;}
.y4d_c00438{bottom:417.600000px;}
.y4a_c00438{bottom:446.400000px;}
.y4c_c00438{bottom:447.120000px;}
.y48_c00438{bottom:448.560000px;}
.y4b_c00438{bottom:449.280000px;}
.y49_c00438{bottom:450.000000px;}
.y43_c00438{bottom:489.600000px;}
.y45_c00438{bottom:490.320000px;}
.y46_c00438{bottom:492.480000px;}
.y44_c00438{bottom:493.200000px;}
.y41_c00438{bottom:522.000000px;}
.y42_c00438{bottom:522.720000px;}
.y40_c00438{bottom:524.160000px;}
.y3e_c00438{bottom:524.880000px;}
.y3f_c00438{bottom:525.600000px;}
.y3c_c00438{bottom:554.400000px;}
.y47_c00438{bottom:555.120000px;}
.y3a_c00438{bottom:555.840000px;}
.y3b_c00438{bottom:556.560000px;}
.y3d_c00438{bottom:557.280000px;}
.y32_c00438{bottom:596.160000px;}
.y39_c00438{bottom:596.880000px;}
.y38_c00438{bottom:597.600000px;}
.y2f_c00438{bottom:598.320000px;}
.y31_c00438{bottom:600.480000px;}
.y30_c00438{bottom:603.360000px;}
.y2c_c00438{bottom:638.640000px;}
.y2e_c00438{bottom:639.360000px;}
.y37_c00438{bottom:640.080000px;}
.y2b_c00438{bottom:640.800000px;}
.y2d_c00438{bottom:642.240000px;}
.y2a_c00438{bottom:681.840000px;}
.y36_c00438{bottom:683.280000px;}
.y29_c00438{bottom:684.000000px;}
.y35_c00438{bottom:686.160000px;}
.y28_c00438{bottom:714.240000px;}
.y25_c00438{bottom:724.320000px;}
.y33_c00438{bottom:725.760000px;}
.y24_c00438{bottom:726.480000px;}
.y34_c00438{bottom:727.200000px;}
.y26_c00438{bottom:727.920000px;}
.y27_c00438{bottom:728.640000px;}
.y21_c00438{bottom:767.520000px;}
.y23_c00438{bottom:768.960000px;}
.y20_c00438{bottom:769.680000px;}
.y1f_c00438{bottom:811.440000px;}
.y1e_c00438{bottom:815.040000px;}
.y1a_c00438{bottom:843.120000px;}
.y1c_c00438{bottom:843.840000px;}
.y19_c00438{bottom:844.560000px;}
.y1d_c00438{bottom:845.280000px;}
.y1b_c00438{bottom:846.720000px;}
.y22_c00438{bottom:847.440000px;}
.y14_c00438{bottom:886.320000px;}
.y18_c00438{bottom:887.040000px;}
.y13_c00438{bottom:887.760000px;}
.y15_c00438{bottom:889.200000px;}
.y17_c00438{bottom:891.360000px;}
.ye_c00438{bottom:928.800000px;}
.yd_c00438{bottom:930.240000px;}
.y11_c00438{bottom:930.960000px;}
.y10_c00438{bottom:931.680000px;}
.yf_c00438{bottom:932.400000px;}
.y12_c00438{bottom:933.120000px;}
.yc_c00438{bottom:964.800000px;}
.ya_c00438{bottom:972.000000px;}
.y9_c00438{bottom:973.440000px;}
.yb_c00438{bottom:975.600000px;}
.y4_c00438{bottom:1014.480000px;}
.y3_c00438{bottom:1016.640000px;}
.y16_c00438{bottom:1018.800000px;}
.y2_c00438{bottom:1057.680000px;}
.y7_c00438{bottom:1058.400000px;}
.y1_c00438{bottom:1059.120000px;}
.y8_c00438{bottom:1059.840000px;}
.y6_c00438{bottom:1062.000000px;}
.y5_c00438{bottom:1116.720000px;}
.h13_c00438{height:10.366875px;}
.h9_c00438{height:31.100625px;}
.hf_c00438{height:38.875781px;}
.ha_c00438{height:41.467500px;}
.hc_c00438{height:44.059219px;}
.h8_c00438{height:46.650937px;}
.h7_c00438{height:49.242656px;}
.hd_c00438{height:51.834375px;}
.h11_c00438{height:52.410938px;}
.h4_c00438{height:54.426094px;}
.he_c00438{height:55.002656px;}
.h12_c00438{height:57.017812px;}
.h2_c00438{height:59.609531px;}
.h5_c00438{height:62.201250px;}
.h3_c00438{height:64.792969px;}
.h6_c00438{height:67.384687px;}
.h14_c00438{height:69.976406px;}
.hb_c00438{height:82.935000px;}
.h10_c00438{height:101.077031px;}
.h1_c00438{height:1165.500000px;}
.h0_c00438{height:1165.680000px;}
.w0_c00438{width:777.600000px;}
.w1_c00438{width:777.750000px;}
.x0_c00438{left:0.000000px;}
.x1_c00438{left:54.720000px;}
.x2e_c00438{left:56.160000px;}
.x1d_c00438{left:108.000000px;}
.x2a_c00438{left:120.960000px;}
.x2_c00438{left:129.600000px;}
.x26_c00438{left:131.040000px;}
.x36_c00438{left:162.000000px;}
.x1e_c00438{left:163.440000px;}
.x19_c00438{left:172.800000px;}
.x31_c00438{left:184.320000px;}
.x24_c00438{left:194.400000px;}
.x37_c00438{left:205.200000px;}
.x32_c00438{left:216.000000px;}
.x3_c00438{left:217.440000px;}
.x20_c00438{left:226.800000px;}
.x1c_c00438{left:248.400000px;}
.x5_c00438{left:249.840000px;}
.x1a_c00438{left:259.200000px;}
.xc_c00438{left:260.640000px;}
.x33_c00438{left:270.720000px;}
.x15_c00438{left:272.160000px;}
.x27_c00438{left:280.800000px;}
.x21_c00438{left:291.600000px;}
.x38_c00438{left:302.400000px;}
.x1b_c00438{left:303.840000px;}
.x2f_c00438{left:313.920000px;}
.x34_c00438{left:325.440000px;}
.x2b_c00438{left:335.520000px;}
.x35_c00438{left:336.960000px;}
.x28_c00438{left:345.600000px;}
.x4_c00438{left:347.040000px;}
.x11_c00438{left:357.840000px;}
.x2c_c00438{left:379.440000px;}
.xf_c00438{left:389.520000px;}
.x12_c00438{left:400.320000px;}
.xd_c00438{left:410.400000px;}
.x30_c00438{left:421.920000px;}
.x10_c00438{left:432.720000px;}
.x16_c00438{left:444.240000px;}
.xe_c00438{left:454.320000px;}
.x25_c00438{left:466.560000px;}
.x22_c00438{left:475.920000px;}
.x29_c00438{left:486.720000px;}
.x17_c00438{left:497.520000px;}
.x2d_c00438{left:508.320000px;}
.x23_c00438{left:530.640000px;}
.x18_c00438{left:537.120000px;}
.x7_c00438{left:542.160000px;}
.x8_c00438{left:563.760000px;}
.x9_c00438{left:585.360000px;}
.x13_c00438{left:618.480000px;}
.x3a_c00438{left:650.160000px;}
.xa_c00438{left:651.600000px;}
.x39_c00438{left:684.000000px;}
.x6_c00438{left:685.440000px;}
.x1f_c00438{left:693.360000px;}
.xb_c00438{left:694.800000px;}
.x14_c00438{left:714.960000px;}
@media print{
.v0_c00438{vertical-align:0.000000pt;}
.v1_c00438{vertical-align:5.120000pt;}
.ls1_c00438{letter-spacing:0.000000pt;}
.ls0_c00438{letter-spacing:40.512853pt;}
.ws3_c00438{word-spacing:0.000000pt;}
.ws0_c00438{word-spacing:7.227648pt;}
.ws2_c00438{word-spacing:11.515116pt;}
.ws1_c00438{word-spacing:50.045867pt;}
.fsf_c00438{font-size:10.240000pt;}
.fs7_c00438{font-size:30.720000pt;}
.fsc_c00438{font-size:38.400000pt;}
.fs8_c00438{font-size:40.960000pt;}
.fsa_c00438{font-size:43.520000pt;}
.fs6_c00438{font-size:46.080000pt;}
.fs5_c00438{font-size:48.640000pt;}
.fsb_c00438{font-size:51.200000pt;}
.fs2_c00438{font-size:53.760000pt;}
.fse_c00438{font-size:56.320000pt;}
.fs0_c00438{font-size:58.880000pt;}
.fs3_c00438{font-size:61.440000pt;}
.fs1_c00438{font-size:64.000000pt;}
.fs4_c00438{font-size:66.560000pt;}
.fs10_c00438{font-size:69.120000pt;}
.fs9_c00438{font-size:81.920000pt;}
.fsd_c00438{font-size:99.840000pt;}
.y0_c00438{bottom:0.000000pt;}
.y6d_c00438{bottom:42.240000pt;}
.y73_c00438{bottom:44.160000pt;}
.y66_c00438{bottom:44.800000pt;}
.y6b_c00438{bottom:45.440000pt;}
.y6c_c00438{bottom:46.080000pt;}
.y6a_c00438{bottom:80.000000pt;}
.y65_c00438{bottom:83.200000pt;}
.y68_c00438{bottom:83.840000pt;}
.y69_c00438{bottom:84.480000pt;}
.y72_c00438{bottom:119.040000pt;}
.y64_c00438{bottom:120.960000pt;}
.y71_c00438{bottom:121.600000pt;}
.y67_c00438{bottom:122.240000pt;}
.y70_c00438{bottom:123.520000pt;}
.y6f_c00438{bottom:158.720000pt;}
.y63_c00438{bottom:159.360000pt;}
.y61_c00438{bottom:160.000000pt;}
.y62_c00438{bottom:160.640000pt;}
.y5f_c00438{bottom:198.400000pt;}
.y5d_c00438{bottom:225.280000pt;}
.y60_c00438{bottom:225.920000pt;}
.y5c_c00438{bottom:226.560000pt;}
.y5e_c00438{bottom:227.200000pt;}
.y5a_c00438{bottom:263.680000pt;}
.y59_c00438{bottom:264.960000pt;}
.y5b_c00438{bottom:265.600000pt;}
.y6e_c00438{bottom:266.240000pt;}
.y57_c00438{bottom:302.720000pt;}
.y58_c00438{bottom:304.000000pt;}
.y56_c00438{bottom:330.240000pt;}
.y54_c00438{bottom:330.880000pt;}
.y52_c00438{bottom:332.160000pt;}
.y53_c00438{bottom:332.800000pt;}
.y55_c00438{bottom:333.440000pt;}
.y51_c00438{bottom:362.240000pt;}
.y4f_c00438{bottom:368.640000pt;}
.y4e_c00438{bottom:369.280000pt;}
.y50_c00438{bottom:370.560000pt;}
.y4d_c00438{bottom:371.200000pt;}
.y4a_c00438{bottom:396.800000pt;}
.y4c_c00438{bottom:397.440000pt;}
.y48_c00438{bottom:398.720000pt;}
.y4b_c00438{bottom:399.360000pt;}
.y49_c00438{bottom:400.000000pt;}
.y43_c00438{bottom:435.200000pt;}
.y45_c00438{bottom:435.840000pt;}
.y46_c00438{bottom:437.760000pt;}
.y44_c00438{bottom:438.400000pt;}
.y41_c00438{bottom:464.000000pt;}
.y42_c00438{bottom:464.640000pt;}
.y40_c00438{bottom:465.920000pt;}
.y3e_c00438{bottom:466.560000pt;}
.y3f_c00438{bottom:467.200000pt;}
.y3c_c00438{bottom:492.800000pt;}
.y47_c00438{bottom:493.440000pt;}
.y3a_c00438{bottom:494.080000pt;}
.y3b_c00438{bottom:494.720000pt;}
.y3d_c00438{bottom:495.360000pt;}
.y32_c00438{bottom:529.920000pt;}
.y39_c00438{bottom:530.560000pt;}
.y38_c00438{bottom:531.200000pt;}
.y2f_c00438{bottom:531.840000pt;}
.y31_c00438{bottom:533.760000pt;}
.y30_c00438{bottom:536.320000pt;}
.y2c_c00438{bottom:567.680000pt;}
.y2e_c00438{bottom:568.320000pt;}
.y37_c00438{bottom:568.960000pt;}
.y2b_c00438{bottom:569.600000pt;}
.y2d_c00438{bottom:570.880000pt;}
.y2a_c00438{bottom:606.080000pt;}
.y36_c00438{bottom:607.360000pt;}
.y29_c00438{bottom:608.000000pt;}
.y35_c00438{bottom:609.920000pt;}
.y28_c00438{bottom:634.880000pt;}
.y25_c00438{bottom:643.840000pt;}
.y33_c00438{bottom:645.120000pt;}
.y24_c00438{bottom:645.760000pt;}
.y34_c00438{bottom:646.400000pt;}
.y26_c00438{bottom:647.040000pt;}
.y27_c00438{bottom:647.680000pt;}
.y21_c00438{bottom:682.240000pt;}
.y23_c00438{bottom:683.520000pt;}
.y20_c00438{bottom:684.160000pt;}
.y1f_c00438{bottom:721.280000pt;}
.y1e_c00438{bottom:724.480000pt;}
.y1a_c00438{bottom:749.440000pt;}
.y1c_c00438{bottom:750.080000pt;}
.y19_c00438{bottom:750.720000pt;}
.y1d_c00438{bottom:751.360000pt;}
.y1b_c00438{bottom:752.640000pt;}
.y22_c00438{bottom:753.280000pt;}
.y14_c00438{bottom:787.840000pt;}
.y18_c00438{bottom:788.480000pt;}
.y13_c00438{bottom:789.120000pt;}
.y15_c00438{bottom:790.400000pt;}
.y17_c00438{bottom:792.320000pt;}
.ye_c00438{bottom:825.600000pt;}
.yd_c00438{bottom:826.880000pt;}
.y11_c00438{bottom:827.520000pt;}
.y10_c00438{bottom:828.160000pt;}
.yf_c00438{bottom:828.800000pt;}
.y12_c00438{bottom:829.440000pt;}
.yc_c00438{bottom:857.600000pt;}
.ya_c00438{bottom:864.000000pt;}
.y9_c00438{bottom:865.280000pt;}
.yb_c00438{bottom:867.200000pt;}
.y4_c00438{bottom:901.760000pt;}
.y3_c00438{bottom:903.680000pt;}
.y16_c00438{bottom:905.600000pt;}
.y2_c00438{bottom:940.160000pt;}
.y7_c00438{bottom:940.800000pt;}
.y1_c00438{bottom:941.440000pt;}
.y8_c00438{bottom:942.080000pt;}
.y6_c00438{bottom:944.000000pt;}
.y5_c00438{bottom:992.640000pt;}
.h13_c00438{height:9.215000pt;}
.h9_c00438{height:27.645000pt;}
.hf_c00438{height:34.556250pt;}
.ha_c00438{height:36.860000pt;}
.hc_c00438{height:39.163750pt;}
.h8_c00438{height:41.467500pt;}
.h7_c00438{height:43.771250pt;}
.hd_c00438{height:46.075000pt;}
.h11_c00438{height:46.587500pt;}
.h4_c00438{height:48.378750pt;}
.he_c00438{height:48.891250pt;}
.h12_c00438{height:50.682500pt;}
.h2_c00438{height:52.986250pt;}
.h5_c00438{height:55.290000pt;}
.h3_c00438{height:57.593750pt;}
.h6_c00438{height:59.897500pt;}
.h14_c00438{height:62.201250pt;}
.hb_c00438{height:73.720000pt;}
.h10_c00438{height:89.846250pt;}
.h1_c00438{height:1036.000000pt;}
.h0_c00438{height:1036.160000pt;}
.w0_c00438{width:691.200000pt;}
.w1_c00438{width:691.333333pt;}
.x0_c00438{left:0.000000pt;}
.x1_c00438{left:48.640000pt;}
.x2e_c00438{left:49.920000pt;}
.x1d_c00438{left:96.000000pt;}
.x2a_c00438{left:107.520000pt;}
.x2_c00438{left:115.200000pt;}
.x26_c00438{left:116.480000pt;}
.x36_c00438{left:144.000000pt;}
.x1e_c00438{left:145.280000pt;}
.x19_c00438{left:153.600000pt;}
.x31_c00438{left:163.840000pt;}
.x24_c00438{left:172.800000pt;}
.x37_c00438{left:182.400000pt;}
.x32_c00438{left:192.000000pt;}
.x3_c00438{left:193.280000pt;}
.x20_c00438{left:201.600000pt;}
.x1c_c00438{left:220.800000pt;}
.x5_c00438{left:222.080000pt;}
.x1a_c00438{left:230.400000pt;}
.xc_c00438{left:231.680000pt;}
.x33_c00438{left:240.640000pt;}
.x15_c00438{left:241.920000pt;}
.x27_c00438{left:249.600000pt;}
.x21_c00438{left:259.200000pt;}
.x38_c00438{left:268.800000pt;}
.x1b_c00438{left:270.080000pt;}
.x2f_c00438{left:279.040000pt;}
.x34_c00438{left:289.280000pt;}
.x2b_c00438{left:298.240000pt;}
.x35_c00438{left:299.520000pt;}
.x28_c00438{left:307.200000pt;}
.x4_c00438{left:308.480000pt;}
.x11_c00438{left:318.080000pt;}
.x2c_c00438{left:337.280000pt;}
.xf_c00438{left:346.240000pt;}
.x12_c00438{left:355.840000pt;}
.xd_c00438{left:364.800000pt;}
.x30_c00438{left:375.040000pt;}
.x10_c00438{left:384.640000pt;}
.x16_c00438{left:394.880000pt;}
.xe_c00438{left:403.840000pt;}
.x25_c00438{left:414.720000pt;}
.x22_c00438{left:423.040000pt;}
.x29_c00438{left:432.640000pt;}
.x17_c00438{left:442.240000pt;}
.x2d_c00438{left:451.840000pt;}
.x23_c00438{left:471.680000pt;}
.x18_c00438{left:477.440000pt;}
.x7_c00438{left:481.920000pt;}
.x8_c00438{left:501.120000pt;}
.x9_c00438{left:520.320000pt;}
.x13_c00438{left:549.760000pt;}
.x3a_c00438{left:577.920000pt;}
.xa_c00438{left:579.200000pt;}
.x39_c00438{left:608.000000pt;}
.x6_c00438{left:609.280000pt;}
.x1f_c00438{left:616.320000pt;}
.xb_c00438{left:617.600000pt;}
.x14_c00438{left:635.520000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6d2e986497a3efe5a983e670.woff2')format("woff");}.ff1_c00439{font-family:ff1_c00439;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m41_c00439{transform:matrix(0.166575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166575,0.000000,0.000000,0.250000,0,0);}
.m4b_c00439{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m15_c00439{transform:matrix(0.246275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246275,0.000000,0.000000,0.250000,0,0);}
.m8_c00439{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m1d_c00439{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m46_c00439{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m5_c00439{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00439{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m24_c00439{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00439{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.mc_c00439{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);}
.m2e_c00439{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m19_c00439{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mb_c00439{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00439{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);}
.m25_c00439{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m29_c00439{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m44_c00439{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mf_c00439{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);}
.m22_c00439{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m7_c00439{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2_c00439{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00439{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m13_c00439{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m4_c00439{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m45_c00439{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.me_c00439{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00439{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m40_c00439{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m21_c00439{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00439{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00439{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m12_c00439{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m18_c00439{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m1_c00439{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m26_c00439{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);}
.m33_c00439{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00439{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m6_c00439{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m32_c00439{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);}
.m38_c00439{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m23_c00439{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m20_c00439{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00439{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);}
.m9_c00439{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);}
.md_c00439{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m0_c00439{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m28_c00439{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);}
.m2d_c00439{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.ma_c00439{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m35_c00439{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m42_c00439{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);}
.m43_c00439{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);}
.m30_c00439{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m37_c00439{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m11_c00439{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m10_c00439{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);}
.m49_c00439{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);}
.m2f_c00439{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);}
.m27_c00439{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00439{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00439{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m36_c00439{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m16_c00439{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m34_c00439{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m31_c00439{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m17_c00439{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m39_c00439{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00439{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m48_c00439{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00439{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);}
.m3_c00439{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00439{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m47_c00439{transform:matrix(0.805000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.805000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.805000,0.000000,0.000000,0.250000,0,0);}
.m14_c00439{transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00439{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.v0_c00439{vertical-align:0.000000px;}
.ls0_c00439{letter-spacing:0.000000px;}
.sc__c00439{text-shadow:none;}
.sc0_c00439{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00439{-webkit-text-stroke:0px transparent;}
.sc0_c00439{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00439{word-spacing:0.000000px;}
.ws0_c00439{word-spacing:205.012584px;}
.fc0_c00439{color:transparent;}
.fsf_c00439{font-size:11.520000px;}
.fse_c00439{font-size:23.040000px;}
.fs3_c00439{font-size:34.560000px;}
.fsc_c00439{font-size:43.200000px;}
.fs9_c00439{font-size:46.080000px;}
.fs7_c00439{font-size:48.960000px;}
.fs2_c00439{font-size:51.840000px;}
.fsa_c00439{font-size:54.720000px;}
.fs5_c00439{font-size:57.600000px;}
.fs6_c00439{font-size:60.480000px;}
.fs8_c00439{font-size:63.360000px;}
.fs1_c00439{font-size:66.240000px;}
.fsb_c00439{font-size:69.120000px;}
.fs0_c00439{font-size:72.000000px;}
.fs4_c00439{font-size:74.880000px;}
.fsd_c00439{font-size:89.280000px;}
.y0_c00439{bottom:0.000000px;}
.y7a_c00439{bottom:116.640000px;}
.y79_c00439{bottom:117.360000px;}
.y76_c00439{bottom:125.280000px;}
.y75_c00439{bottom:126.000000px;}
.y73_c00439{bottom:127.440000px;}
.y72_c00439{bottom:129.600000px;}
.y74_c00439{bottom:131.040000px;}
.y78_c00439{bottom:137.520000px;}
.y77_c00439{bottom:138.960000px;}
.y71_c00439{bottom:179.280000px;}
.y6c_c00439{bottom:180.000000px;}
.y70_c00439{bottom:180.720000px;}
.y6d_c00439{bottom:182.160000px;}
.y6e_c00439{bottom:182.880000px;}
.y67_c00439{bottom:183.600000px;}
.y6f_c00439{bottom:185.760000px;}
.y68_c00439{bottom:190.080000px;}
.y69_c00439{bottom:191.520000px;}
.y6a_c00439{bottom:203.760000px;}
.y6b_c00439{bottom:204.480000px;}
.y62_c00439{bottom:253.440000px;}
.y66_c00439{bottom:254.880000px;}
.y61_c00439{bottom:255.600000px;}
.y64_c00439{bottom:256.320000px;}
.y63_c00439{bottom:257.040000px;}
.y65_c00439{bottom:257.760000px;}
.y5d_c00439{bottom:295.920000px;}
.y5f_c00439{bottom:296.640000px;}
.y60_c00439{bottom:298.080000px;}
.y5c_c00439{bottom:298.800000px;}
.y5e_c00439{bottom:299.520000px;}
.y5a_c00439{bottom:338.400000px;}
.y5b_c00439{bottom:339.120000px;}
.y58_c00439{bottom:339.840000px;}
.y59_c00439{bottom:341.280000px;}
.y57_c00439{bottom:342.000000px;}
.y55_c00439{bottom:381.600000px;}
.y56_c00439{bottom:383.040000px;}
.y54_c00439{bottom:383.760000px;}
.y51_c00439{bottom:424.080000px;}
.y50_c00439{bottom:425.520000px;}
.y53_c00439{bottom:426.240000px;}
.y4f_c00439{bottom:426.960000px;}
.y52_c00439{bottom:428.400000px;}
.y4b_c00439{bottom:466.560000px;}
.y4d_c00439{bottom:468.720000px;}
.y4c_c00439{bottom:469.440000px;}
.y4a_c00439{bottom:470.160000px;}
.y4e_c00439{bottom:471.600000px;}
.y49_c00439{bottom:503.280000px;}
.y46_c00439{bottom:510.480000px;}
.y48_c00439{bottom:511.920000px;}
.y45_c00439{bottom:512.640000px;}
.y47_c00439{bottom:514.080000px;}
.y40_c00439{bottom:553.680000px;}
.y41_c00439{bottom:554.400000px;}
.y43_c00439{bottom:555.120000px;}
.y3f_c00439{bottom:555.840000px;}
.y42_c00439{bottom:557.280000px;}
.y44_c00439{bottom:558.000000px;}
.y3b_c00439{bottom:596.160000px;}
.y3e_c00439{bottom:596.880000px;}
.y3c_c00439{bottom:597.600000px;}
.y3a_c00439{bottom:598.320000px;}
.y3d_c00439{bottom:599.760000px;}
.y35_c00439{bottom:639.360000px;}
.y39_c00439{bottom:640.080000px;}
.y34_c00439{bottom:640.800000px;}
.y37_c00439{bottom:641.520000px;}
.y38_c00439{bottom:642.240000px;}
.y36_c00439{bottom:642.960000px;}
.y33_c00439{bottom:682.560000px;}
.y31_c00439{bottom:683.280000px;}
.y32_c00439{bottom:686.160000px;}
.y2d_c00439{bottom:714.240000px;}
.y2f_c00439{bottom:714.960000px;}
.y2c_c00439{bottom:716.400000px;}
.y30_c00439{bottom:717.840000px;}
.y2e_c00439{bottom:718.560000px;}
.y2a_c00439{bottom:757.440000px;}
.y28_c00439{bottom:758.160000px;}
.y29_c00439{bottom:758.880000px;}
.y27_c00439{bottom:759.600000px;}
.y2b_c00439{bottom:760.320000px;}
.y22_c00439{bottom:799.920000px;}
.y23_c00439{bottom:800.640000px;}
.y21_c00439{bottom:801.360000px;}
.y24_c00439{bottom:802.080000px;}
.y26_c00439{bottom:802.800000px;}
.y25_c00439{bottom:804.240000px;}
.y1d_c00439{bottom:843.120000px;}
.y1c_c00439{bottom:843.840000px;}
.y1e_c00439{bottom:845.280000px;}
.y1f_c00439{bottom:846.720000px;}
.y20_c00439{bottom:847.440000px;}
.y17_c00439{bottom:885.600000px;}
.y19_c00439{bottom:886.320000px;}
.y16_c00439{bottom:887.040000px;}
.y1a_c00439{bottom:887.760000px;}
.y1b_c00439{bottom:888.480000px;}
.y18_c00439{bottom:889.200000px;}
.y12_c00439{bottom:928.080000px;}
.y14_c00439{bottom:928.800000px;}
.y11_c00439{bottom:929.520000px;}
.y15_c00439{bottom:930.240000px;}
.y13_c00439{bottom:931.680000px;}
.yd_c00439{bottom:970.560000px;}
.yf_c00439{bottom:971.280000px;}
.yb_c00439{bottom:972.000000px;}
.ye_c00439{bottom:972.720000px;}
.y10_c00439{bottom:974.160000px;}
.yc_c00439{bottom:974.880000px;}
.y8_c00439{bottom:1013.760000px;}
.y6_c00439{bottom:1014.480000px;}
.y9_c00439{bottom:1015.200000px;}
.y7_c00439{bottom:1017.360000px;}
.ya_c00439{bottom:1018.080000px;}
.y5_c00439{bottom:1056.240000px;}
.y2_c00439{bottom:1057.680000px;}
.y3_c00439{bottom:1059.840000px;}
.y4_c00439{bottom:1060.560000px;}
.y1_c00439{bottom:1119.600000px;}
.h11_c00439{height:10.366875px;}
.h10_c00439{height:20.733750px;}
.h5_c00439{height:31.100625px;}
.he_c00439{height:38.875781px;}
.hb_c00439{height:41.467500px;}
.h9_c00439{height:44.059219px;}
.h4_c00439{height:46.650937px;}
.hc_c00439{height:49.242656px;}
.h7_c00439{height:51.834375px;}
.h8_c00439{height:54.426094px;}
.ha_c00439{height:57.017812px;}
.h3_c00439{height:59.609531px;}
.hd_c00439{height:62.201250px;}
.h2_c00439{height:64.792969px;}
.h6_c00439{height:67.384687px;}
.hf_c00439{height:80.343281px;}
.h1_c00439{height:1167.750000px;}
.h0_c00439{height:1167.840000px;}
.w0_c00439{width:781.920000px;}
.w1_c00439{width:782.250000px;}
.x0_c00439{left:0.000000px;}
.x2_c00439{left:54.000000px;}
.x26_c00439{left:55.440000px;}
.x36_c00439{left:86.400000px;}
.x2b_c00439{left:96.480000px;}
.x1d_c00439{left:128.160000px;}
.x3_c00439{left:129.600000px;}
.x37_c00439{left:151.200000px;}
.x4_c00439{left:160.560000px;}
.x38_c00439{left:182.880000px;}
.x2c_c00439{left:192.960000px;}
.x2a_c00439{left:203.760000px;}
.x5_c00439{left:205.200000px;}
.x27_c00439{left:214.560000px;}
.xd_c00439{left:224.640000px;}
.x17_c00439{left:226.800000px;}
.x1e_c00439{left:236.880000px;}
.x39_c00439{left:249.120000px;}
.x12_c00439{left:257.760000px;}
.x28_c00439{left:259.200000px;}
.xe_c00439{left:270.000000px;}
.x2d_c00439{left:271.440000px;}
.x25_c00439{left:279.360000px;}
.x21_c00439{left:280.800000px;}
.x1a_c00439{left:291.600000px;}
.x13_c00439{left:302.400000px;}
.x18_c00439{left:313.200000px;}
.x31_c00439{left:314.640000px;}
.xf_c00439{left:324.000000px;}
.x1f_c00439{left:334.800000px;}
.x10_c00439{left:366.480000px;}
.x2e_c00439{left:367.920000px;}
.x14_c00439{left:388.800000px;}
.x19_c00439{left:410.400000px;}
.x2f_c00439{left:411.840000px;}
.x32_c00439{left:422.640000px;}
.x1b_c00439{left:432.000000px;}
.x15_c00439{left:443.520000px;}
.x23_c00439{left:464.400000px;}
.x33_c00439{left:465.840000px;}
.x30_c00439{left:475.920000px;}
.x1c_c00439{left:486.000000px;}
.x6_c00439{left:529.200000px;}
.xc_c00439{left:530.640000px;}
.x29_c00439{left:541.440000px;}
.x34_c00439{left:561.600000px;}
.x11_c00439{left:563.040000px;}
.x7_c00439{left:583.200000px;}
.x20_c00439{left:584.640000px;}
.x24_c00439{left:595.440000px;}
.xa_c00439{left:617.760000px;}
.x35_c00439{left:648.720000px;}
.x8_c00439{left:650.160000px;}
.x16_c00439{left:660.960000px;}
.x1_c00439{left:671.040000px;}
.x9_c00439{left:692.640000px;}
.x22_c00439{left:694.080000px;}
.xb_c00439{left:713.520000px;}
@media print{
.v0_c00439{vertical-align:0.000000pt;}
.ls0_c00439{letter-spacing:0.000000pt;}
.ws1_c00439{word-spacing:0.000000pt;}
.ws0_c00439{word-spacing:182.233408pt;}
.fsf_c00439{font-size:10.240000pt;}
.fse_c00439{font-size:20.480000pt;}
.fs3_c00439{font-size:30.720000pt;}
.fsc_c00439{font-size:38.400000pt;}
.fs9_c00439{font-size:40.960000pt;}
.fs7_c00439{font-size:43.520000pt;}
.fs2_c00439{font-size:46.080000pt;}
.fsa_c00439{font-size:48.640000pt;}
.fs5_c00439{font-size:51.200000pt;}
.fs6_c00439{font-size:53.760000pt;}
.fs8_c00439{font-size:56.320000pt;}
.fs1_c00439{font-size:58.880000pt;}
.fsb_c00439{font-size:61.440000pt;}
.fs0_c00439{font-size:64.000000pt;}
.fs4_c00439{font-size:66.560000pt;}
.fsd_c00439{font-size:79.360000pt;}
.y0_c00439{bottom:0.000000pt;}
.y7a_c00439{bottom:103.680000pt;}
.y79_c00439{bottom:104.320000pt;}
.y76_c00439{bottom:111.360000pt;}
.y75_c00439{bottom:112.000000pt;}
.y73_c00439{bottom:113.280000pt;}
.y72_c00439{bottom:115.200000pt;}
.y74_c00439{bottom:116.480000pt;}
.y78_c00439{bottom:122.240000pt;}
.y77_c00439{bottom:123.520000pt;}
.y71_c00439{bottom:159.360000pt;}
.y6c_c00439{bottom:160.000000pt;}
.y70_c00439{bottom:160.640000pt;}
.y6d_c00439{bottom:161.920000pt;}
.y6e_c00439{bottom:162.560000pt;}
.y67_c00439{bottom:163.200000pt;}
.y6f_c00439{bottom:165.120000pt;}
.y68_c00439{bottom:168.960000pt;}
.y69_c00439{bottom:170.240000pt;}
.y6a_c00439{bottom:181.120000pt;}
.y6b_c00439{bottom:181.760000pt;}
.y62_c00439{bottom:225.280000pt;}
.y66_c00439{bottom:226.560000pt;}
.y61_c00439{bottom:227.200000pt;}
.y64_c00439{bottom:227.840000pt;}
.y63_c00439{bottom:228.480000pt;}
.y65_c00439{bottom:229.120000pt;}
.y5d_c00439{bottom:263.040000pt;}
.y5f_c00439{bottom:263.680000pt;}
.y60_c00439{bottom:264.960000pt;}
.y5c_c00439{bottom:265.600000pt;}
.y5e_c00439{bottom:266.240000pt;}
.y5a_c00439{bottom:300.800000pt;}
.y5b_c00439{bottom:301.440000pt;}
.y58_c00439{bottom:302.080000pt;}
.y59_c00439{bottom:303.360000pt;}
.y57_c00439{bottom:304.000000pt;}
.y55_c00439{bottom:339.200000pt;}
.y56_c00439{bottom:340.480000pt;}
.y54_c00439{bottom:341.120000pt;}
.y51_c00439{bottom:376.960000pt;}
.y50_c00439{bottom:378.240000pt;}
.y53_c00439{bottom:378.880000pt;}
.y4f_c00439{bottom:379.520000pt;}
.y52_c00439{bottom:380.800000pt;}
.y4b_c00439{bottom:414.720000pt;}
.y4d_c00439{bottom:416.640000pt;}
.y4c_c00439{bottom:417.280000pt;}
.y4a_c00439{bottom:417.920000pt;}
.y4e_c00439{bottom:419.200000pt;}
.y49_c00439{bottom:447.360000pt;}
.y46_c00439{bottom:453.760000pt;}
.y48_c00439{bottom:455.040000pt;}
.y45_c00439{bottom:455.680000pt;}
.y47_c00439{bottom:456.960000pt;}
.y40_c00439{bottom:492.160000pt;}
.y41_c00439{bottom:492.800000pt;}
.y43_c00439{bottom:493.440000pt;}
.y3f_c00439{bottom:494.080000pt;}
.y42_c00439{bottom:495.360000pt;}
.y44_c00439{bottom:496.000000pt;}
.y3b_c00439{bottom:529.920000pt;}
.y3e_c00439{bottom:530.560000pt;}
.y3c_c00439{bottom:531.200000pt;}
.y3a_c00439{bottom:531.840000pt;}
.y3d_c00439{bottom:533.120000pt;}
.y35_c00439{bottom:568.320000pt;}
.y39_c00439{bottom:568.960000pt;}
.y34_c00439{bottom:569.600000pt;}
.y37_c00439{bottom:570.240000pt;}
.y38_c00439{bottom:570.880000pt;}
.y36_c00439{bottom:571.520000pt;}
.y33_c00439{bottom:606.720000pt;}
.y31_c00439{bottom:607.360000pt;}
.y32_c00439{bottom:609.920000pt;}
.y2d_c00439{bottom:634.880000pt;}
.y2f_c00439{bottom:635.520000pt;}
.y2c_c00439{bottom:636.800000pt;}
.y30_c00439{bottom:638.080000pt;}
.y2e_c00439{bottom:638.720000pt;}
.y2a_c00439{bottom:673.280000pt;}
.y28_c00439{bottom:673.920000pt;}
.y29_c00439{bottom:674.560000pt;}
.y27_c00439{bottom:675.200000pt;}
.y2b_c00439{bottom:675.840000pt;}
.y22_c00439{bottom:711.040000pt;}
.y23_c00439{bottom:711.680000pt;}
.y21_c00439{bottom:712.320000pt;}
.y24_c00439{bottom:712.960000pt;}
.y26_c00439{bottom:713.600000pt;}
.y25_c00439{bottom:714.880000pt;}
.y1d_c00439{bottom:749.440000pt;}
.y1c_c00439{bottom:750.080000pt;}
.y1e_c00439{bottom:751.360000pt;}
.y1f_c00439{bottom:752.640000pt;}
.y20_c00439{bottom:753.280000pt;}
.y17_c00439{bottom:787.200000pt;}
.y19_c00439{bottom:787.840000pt;}
.y16_c00439{bottom:788.480000pt;}
.y1a_c00439{bottom:789.120000pt;}
.y1b_c00439{bottom:789.760000pt;}
.y18_c00439{bottom:790.400000pt;}
.y12_c00439{bottom:824.960000pt;}
.y14_c00439{bottom:825.600000pt;}
.y11_c00439{bottom:826.240000pt;}
.y15_c00439{bottom:826.880000pt;}
.y13_c00439{bottom:828.160000pt;}
.yd_c00439{bottom:862.720000pt;}
.yf_c00439{bottom:863.360000pt;}
.yb_c00439{bottom:864.000000pt;}
.ye_c00439{bottom:864.640000pt;}
.y10_c00439{bottom:865.920000pt;}
.yc_c00439{bottom:866.560000pt;}
.y8_c00439{bottom:901.120000pt;}
.y6_c00439{bottom:901.760000pt;}
.y9_c00439{bottom:902.400000pt;}
.y7_c00439{bottom:904.320000pt;}
.ya_c00439{bottom:904.960000pt;}
.y5_c00439{bottom:938.880000pt;}
.y2_c00439{bottom:940.160000pt;}
.y3_c00439{bottom:942.080000pt;}
.y4_c00439{bottom:942.720000pt;}
.y1_c00439{bottom:995.200000pt;}
.h11_c00439{height:9.215000pt;}
.h10_c00439{height:18.430000pt;}
.h5_c00439{height:27.645000pt;}
.he_c00439{height:34.556250pt;}
.hb_c00439{height:36.860000pt;}
.h9_c00439{height:39.163750pt;}
.h4_c00439{height:41.467500pt;}
.hc_c00439{height:43.771250pt;}
.h7_c00439{height:46.075000pt;}
.h8_c00439{height:48.378750pt;}
.ha_c00439{height:50.682500pt;}
.h3_c00439{height:52.986250pt;}
.hd_c00439{height:55.290000pt;}
.h2_c00439{height:57.593750pt;}
.h6_c00439{height:59.897500pt;}
.hf_c00439{height:71.416250pt;}
.h1_c00439{height:1038.000000pt;}
.h0_c00439{height:1038.080000pt;}
.w0_c00439{width:695.040000pt;}
.w1_c00439{width:695.333333pt;}
.x0_c00439{left:0.000000pt;}
.x2_c00439{left:48.000000pt;}
.x26_c00439{left:49.280000pt;}
.x36_c00439{left:76.800000pt;}
.x2b_c00439{left:85.760000pt;}
.x1d_c00439{left:113.920000pt;}
.x3_c00439{left:115.200000pt;}
.x37_c00439{left:134.400000pt;}
.x4_c00439{left:142.720000pt;}
.x38_c00439{left:162.560000pt;}
.x2c_c00439{left:171.520000pt;}
.x2a_c00439{left:181.120000pt;}
.x5_c00439{left:182.400000pt;}
.x27_c00439{left:190.720000pt;}
.xd_c00439{left:199.680000pt;}
.x17_c00439{left:201.600000pt;}
.x1e_c00439{left:210.560000pt;}
.x39_c00439{left:221.440000pt;}
.x12_c00439{left:229.120000pt;}
.x28_c00439{left:230.400000pt;}
.xe_c00439{left:240.000000pt;}
.x2d_c00439{left:241.280000pt;}
.x25_c00439{left:248.320000pt;}
.x21_c00439{left:249.600000pt;}
.x1a_c00439{left:259.200000pt;}
.x13_c00439{left:268.800000pt;}
.x18_c00439{left:278.400000pt;}
.x31_c00439{left:279.680000pt;}
.xf_c00439{left:288.000000pt;}
.x1f_c00439{left:297.600000pt;}
.x10_c00439{left:325.760000pt;}
.x2e_c00439{left:327.040000pt;}
.x14_c00439{left:345.600000pt;}
.x19_c00439{left:364.800000pt;}
.x2f_c00439{left:366.080000pt;}
.x32_c00439{left:375.680000pt;}
.x1b_c00439{left:384.000000pt;}
.x15_c00439{left:394.240000pt;}
.x23_c00439{left:412.800000pt;}
.x33_c00439{left:414.080000pt;}
.x30_c00439{left:423.040000pt;}
.x1c_c00439{left:432.000000pt;}
.x6_c00439{left:470.400000pt;}
.xc_c00439{left:471.680000pt;}
.x29_c00439{left:481.280000pt;}
.x34_c00439{left:499.200000pt;}
.x11_c00439{left:500.480000pt;}
.x7_c00439{left:518.400000pt;}
.x20_c00439{left:519.680000pt;}
.x24_c00439{left:529.280000pt;}
.xa_c00439{left:549.120000pt;}
.x35_c00439{left:576.640000pt;}
.x8_c00439{left:577.920000pt;}
.x16_c00439{left:587.520000pt;}
.x1_c00439{left:596.480000pt;}
.x9_c00439{left:615.680000pt;}
.x22_c00439{left:616.960000pt;}
.xb_c00439{left:634.240000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_108c9b152108ce1f353a53b3.woff2')format("woff");}.ff1_c00440{font-family:ff1_c00440;line-height:1.109863;font-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_c00440{transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);}
.m34_c00440{transform:matrix(0.190975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190975,0.000000,0.000000,0.250000,0,0);}
.m41_c00440{transform:matrix(0.192175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192175,0.000000,0.000000,0.250000,0,0);}
.m23_c00440{transform:matrix(0.210350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210350,0.000000,0.000000,0.250000,0,0);}
.m18_c00440{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m4e_c00440{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m4c_c00440{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00440{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m6_c00440{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m3_c00440{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);}
.m3e_c00440{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m9_c00440{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);}
.m25_c00440{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_c00440{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);}
.m2e_c00440{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m51_c00440{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);}
.m3b_c00440{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m29_c00440{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);}
.m39_c00440{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.me_c00440{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m14_c00440{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);}
.m36_c00440{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);}
.m37_c00440{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m33_c00440{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mf_c00440{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.ma_c00440{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m27_c00440{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1_c00440{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m21_c00440{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m11_c00440{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m46_c00440{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00440{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m47_c00440{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m4_c00440{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00440{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00440{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m19_c00440{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00440{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00440{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00440{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00440{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m0_c00440{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);}
.m50_c00440{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m7_c00440{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);}
.m38_c00440{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);}
.m2a_c00440{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00440{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);}
.m2d_c00440{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m24_c00440{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00440{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.mc_c00440{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m35_c00440{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m10_c00440{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);}
.m30_c00440{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);}
.m15_c00440{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00440{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);}
.m28_c00440{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00440{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);}
.m31_c00440{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00440{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m26_c00440{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);}
.m32_c00440{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m16_c00440{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m42_c00440{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);}
.m2_c00440{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m20_c00440{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m13_c00440{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);}
.m1a_c00440{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m17_c00440{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00440{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m12_c00440{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00440{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m43_c00440{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m48_c00440{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m49_c00440{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00440{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);}
.m5_c00440{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m44_c00440{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);}
.m8_c00440{transform:matrix(0.700000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.700000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.700000,0.000000,0.000000,0.250000,0,0);}
.m40_c00440{transform:matrix(0.707500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.707500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.707500,0.000000,0.000000,0.250000,0,0);}
.md_c00440{transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);}
.m52_c00440{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.mb_c00440{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.v0_c00440{vertical-align:0.000000px;}
.ls0_c00440{letter-spacing:0.000000px;}
.sc__c00440{text-shadow:none;}
.sc0_c00440{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00440{-webkit-text-stroke:0px transparent;}
.sc0_c00440{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00440{word-spacing:0.000000px;}
.ws1_c00440{word-spacing:8.974310px;}
.ws0_c00440{word-spacing:35.838480px;}
.fc0_c00440{color:transparent;}
.fs8_c00440{font-size:11.520000px;}
.fs5_c00440{font-size:34.560000px;}
.fs7_c00440{font-size:43.200000px;}
.fs1_c00440{font-size:46.080000px;}
.fs2_c00440{font-size:48.960000px;}
.fs4_c00440{font-size:51.840000px;}
.fs6_c00440{font-size:54.720000px;}
.fs3_c00440{font-size:57.600000px;}
.fsa_c00440{font-size:60.480000px;}
.fsd_c00440{font-size:63.360000px;}
.fs9_c00440{font-size:66.240000px;}
.fsb_c00440{font-size:69.120000px;}
.fsf_c00440{font-size:72.000000px;}
.fs0_c00440{font-size:74.880000px;}
.fsc_c00440{font-size:77.760000px;}
.fse_c00440{font-size:86.400000px;}
.y0_c00440{bottom:0.000000px;}
.yaf_c00440{bottom:46.080000px;}
.yb3_c00440{bottom:46.800000px;}
.yb2_c00440{bottom:47.520000px;}
.yb1_c00440{bottom:48.240000px;}
.yae_c00440{bottom:48.960000px;}
.yb0_c00440{bottom:51.840000px;}
.yab_c00440{bottom:89.280000px;}
.yac_c00440{bottom:91.440000px;}
.yad_c00440{bottom:92.160000px;}
.yaa_c00440{bottom:92.880000px;}
.ya8_c00440{bottom:132.480000px;}
.ya7_c00440{bottom:133.920000px;}
.ya6_c00440{bottom:134.640000px;}
.ya9_c00440{bottom:135.360000px;}
.ya5_c00440{bottom:168.480000px;}
.ya1_c00440{bottom:175.680000px;}
.ya3_c00440{bottom:176.400000px;}
.ya4_c00440{bottom:177.120000px;}
.ya0_c00440{bottom:178.560000px;}
.ya2_c00440{bottom:179.280000px;}
.y9b_c00440{bottom:217.440000px;}
.y9d_c00440{bottom:218.160000px;}
.y9e_c00440{bottom:219.600000px;}
.y9a_c00440{bottom:220.320000px;}
.y9f_c00440{bottom:221.040000px;}
.y9c_c00440{bottom:221.760000px;}
.y99_c00440{bottom:254.160000px;}
.y93_c00440{bottom:259.920000px;}
.y97_c00440{bottom:260.640000px;}
.y95_c00440{bottom:261.360000px;}
.y98_c00440{bottom:262.080000px;}
.y92_c00440{bottom:263.520000px;}
.y94_c00440{bottom:264.240000px;}
.y96_c00440{bottom:264.960000px;}
.y90_c00440{bottom:303.120000px;}
.y91_c00440{bottom:305.280000px;}
.y8d_c00440{bottom:306.000000px;}
.y8f_c00440{bottom:307.440000px;}
.y8e_c00440{bottom:308.160000px;}
.y89_c00440{bottom:346.320000px;}
.y8b_c00440{bottom:347.040000px;}
.y8a_c00440{bottom:348.480000px;}
.y8c_c00440{bottom:349.200000px;}
.y88_c00440{bottom:349.920000px;}
.y85_c00440{bottom:388.800000px;}
.y87_c00440{bottom:390.240000px;}
.y86_c00440{bottom:391.680000px;}
.y82_c00440{bottom:392.400000px;}
.y84_c00440{bottom:393.120000px;}
.y83_c00440{bottom:393.840000px;}
.y7f_c00440{bottom:432.000000px;}
.y81_c00440{bottom:433.440000px;}
.y80_c00440{bottom:434.160000px;}
.y7d_c00440{bottom:435.600000px;}
.y7e_c00440{bottom:437.040000px;}
.y7a_c00440{bottom:475.200000px;}
.y7c_c00440{bottom:476.640000px;}
.y7b_c00440{bottom:477.360000px;}
.y77_c00440{bottom:478.080000px;}
.y79_c00440{bottom:478.800000px;}
.y78_c00440{bottom:479.520000px;}
.y74_c00440{bottom:513.360000px;}
.y75_c00440{bottom:520.560000px;}
.y76_c00440{bottom:522.000000px;}
.y73_c00440{bottom:584.640000px;}
.y70_c00440{bottom:585.360000px;}
.y72_c00440{bottom:586.800000px;}
.y71_c00440{bottom:587.520000px;}
.y6a_c00440{bottom:606.240000px;}
.y6c_c00440{bottom:606.960000px;}
.y6b_c00440{bottom:609.120000px;}
.y6e_c00440{bottom:617.040000px;}
.y6d_c00440{bottom:617.760000px;}
.y6f_c00440{bottom:619.200000px;}
.y67_c00440{bottom:627.840000px;}
.y69_c00440{bottom:628.560000px;}
.y68_c00440{bottom:630.720000px;}
.y65_c00440{bottom:638.640000px;}
.y66_c00440{bottom:641.520000px;}
.y61_c00440{bottom:648.720000px;}
.y63_c00440{bottom:649.440000px;}
.y64_c00440{bottom:650.160000px;}
.y62_c00440{bottom:652.320000px;}
.y5f_c00440{bottom:659.520000px;}
.y5e_c00440{bottom:660.240000px;}
.y60_c00440{bottom:660.960000px;}
.y5a_c00440{bottom:669.600000px;}
.y5d_c00440{bottom:670.320000px;}
.y5c_c00440{bottom:671.040000px;}
.y5b_c00440{bottom:673.200000px;}
.y59_c00440{bottom:681.120000px;}
.y58_c00440{bottom:681.840000px;}
.y54_c00440{bottom:691.920000px;}
.y52_c00440{bottom:692.640000px;}
.y53_c00440{bottom:694.800000px;}
.y55_c00440{bottom:702.720000px;}
.y57_c00440{bottom:703.440000px;}
.y56_c00440{bottom:705.600000px;}
.y51_c00440{bottom:713.520000px;}
.y4f_c00440{bottom:715.680000px;}
.y50_c00440{bottom:716.400000px;}
.y4e_c00440{bottom:723.600000px;}
.y4d_c00440{bottom:724.320000px;}
.y4c_c00440{bottom:725.040000px;}
.y4b_c00440{bottom:735.120000px;}
.y49_c00440{bottom:737.280000px;}
.y4a_c00440{bottom:738.000000px;}
.y47_c00440{bottom:745.920000px;}
.y45_c00440{bottom:746.640000px;}
.y48_c00440{bottom:748.080000px;}
.y46_c00440{bottom:748.800000px;}
.y44_c00440{bottom:756.000000px;}
.y43_c00440{bottom:756.720000px;}
.y42_c00440{bottom:758.880000px;}
.y41_c00440{bottom:766.800000px;}
.y3f_c00440{bottom:768.960000px;}
.y40_c00440{bottom:769.680000px;}
.y3b_c00440{bottom:775.440000px;}
.y3c_c00440{bottom:777.600000px;}
.y3a_c00440{bottom:780.480000px;}
.y3e_c00440{bottom:787.680000px;}
.y3d_c00440{bottom:788.400000px;}
.y38_c00440{bottom:798.480000px;}
.y39_c00440{bottom:799.200000px;}
.y37_c00440{bottom:809.280000px;}
.y35_c00440{bottom:810.000000px;}
.y36_c00440{bottom:812.880000px;}
.y31_c00440{bottom:820.080000px;}
.y34_c00440{bottom:820.800000px;}
.y32_c00440{bottom:821.520000px;}
.y33_c00440{bottom:822.240000px;}
.y2e_c00440{bottom:830.880000px;}
.y30_c00440{bottom:833.040000px;}
.y2f_c00440{bottom:833.760000px;}
.y2c_c00440{bottom:841.680000px;}
.y2d_c00440{bottom:851.760000px;}
.y27_c00440{bottom:863.280000px;}
.y28_c00440{bottom:865.440000px;}
.y2b_c00440{bottom:873.360000px;}
.y29_c00440{bottom:874.080000px;}
.y2a_c00440{bottom:876.240000px;}
.y23_c00440{bottom:884.160000px;}
.y22_c00440{bottom:884.880000px;}
.y21_c00440{bottom:887.040000px;}
.y26_c00440{bottom:894.240000px;}
.y24_c00440{bottom:894.960000px;}
.y25_c00440{bottom:897.120000px;}
.y1e_c00440{bottom:912.960000px;}
.y1c_c00440{bottom:913.680000px;}
.y20_c00440{bottom:916.560000px;}
.y1d_c00440{bottom:917.280000px;}
.y1b_c00440{bottom:918.000000px;}
.y1f_c00440{bottom:918.720000px;}
.y19_c00440{bottom:959.040000px;}
.y18_c00440{bottom:959.760000px;}
.y1a_c00440{bottom:961.200000px;}
.y17_c00440{bottom:961.920000px;}
.y16_c00440{bottom:962.640000px;}
.y15_c00440{bottom:980.640000px;}
.y14_c00440{bottom:982.800000px;}
.y13_c00440{bottom:990.720000px;}
.y10_c00440{bottom:991.440000px;}
.yf_c00440{bottom:992.160000px;}
.ye_c00440{bottom:994.320000px;}
.y11_c00440{bottom:995.040000px;}
.y12_c00440{bottom:997.200000px;}
.yc_c00440{bottom:1012.320000px;}
.yd_c00440{bottom:1015.200000px;}
.ya_c00440{bottom:1023.840000px;}
.y9_c00440{bottom:1026.000000px;}
.yb_c00440{bottom:1026.720000px;}
.y4_c00440{bottom:1056.240000px;}
.y6_c00440{bottom:1056.960000px;}
.y2_c00440{bottom:1057.680000px;}
.y3_c00440{bottom:1058.400000px;}
.y8_c00440{bottom:1059.120000px;}
.y5_c00440{bottom:1059.840000px;}
.y7_c00440{bottom:1061.280000px;}
.y1_c00440{bottom:1114.560000px;}
.ha_c00440{height:10.366875px;}
.h7_c00440{height:31.100625px;}
.h9_c00440{height:38.875781px;}
.h3_c00440{height:41.467500px;}
.h4_c00440{height:44.059219px;}
.h6_c00440{height:46.650937px;}
.h8_c00440{height:49.242656px;}
.h5_c00440{height:51.834375px;}
.hc_c00440{height:54.426094px;}
.hf_c00440{height:57.017812px;}
.hb_c00440{height:59.609531px;}
.hd_c00440{height:62.201250px;}
.h11_c00440{height:64.792969px;}
.h2_c00440{height:67.384687px;}
.he_c00440{height:69.976406px;}
.h10_c00440{height:77.751563px;}
.h1_c00440{height:1161.750000px;}
.h0_c00440{height:1162.080000px;}
.w0_c00440{width:777.600000px;}
.w1_c00440{width:777.750000px;}
.x0_c00440{left:0.000000px;}
.x2_c00440{left:46.080000px;}
.x2d_c00440{left:47.520000px;}
.x27_c00440{left:56.160000px;}
.x23_c00440{left:58.320000px;}
.x3_c00440{left:67.680000px;}
.xf_c00440{left:77.760000px;}
.x1d_c00440{left:89.280000px;}
.x2e_c00440{left:101.520000px;}
.x18_c00440{left:110.160000px;}
.x4_c00440{left:112.320000px;}
.x31_c00440{left:120.960000px;}
.x38_c00440{left:122.400000px;}
.x2f_c00440{left:143.280000px;}
.x10_c00440{left:154.800000px;}
.x24_c00440{left:164.880000px;}
.x26_c00440{left:166.320000px;}
.x11_c00440{left:176.400000px;}
.x5_c00440{left:185.760000px;}
.x1e_c00440{left:187.920000px;}
.x25_c00440{left:198.000000px;}
.x36_c00440{left:208.800000px;}
.x12_c00440{left:218.880000px;}
.x28_c00440{left:220.320000px;}
.x1f_c00440{left:231.120000px;}
.x30_c00440{left:239.760000px;}
.x39_c00440{left:251.280000px;}
.x3e_c00440{left:252.720000px;}
.x6_c00440{left:262.800000px;}
.x1c_c00440{left:272.160000px;}
.x7_c00440{left:283.680000px;}
.x13_c00440{left:304.560000px;}
.x19_c00440{left:316.080000px;}
.x8_c00440{left:339.120000px;}
.x32_c00440{left:348.480000px;}
.x3a_c00440{left:382.320000px;}
.x9_c00440{left:390.960000px;}
.x14_c00440{left:393.120000px;}
.x40_c00440{left:403.200000px;}
.xa_c00440{left:424.080000px;}
.x3b_c00440{left:434.880000px;}
.x20_c00440{left:436.320000px;}
.x41_c00440{left:446.400000px;}
.x2a_c00440{left:447.840000px;}
.xb_c00440{left:457.920000px;}
.x3d_c00440{left:468.000000px;}
.x3c_c00440{left:479.520000px;}
.x2b_c00440{left:501.840000px;}
.xc_c00440{left:511.920000px;}
.x15_c00440{left:514.080000px;}
.x1a_c00440{left:521.280000px;}
.x33_c00440{left:522.720000px;}
.x21_c00440{left:534.240000px;}
.xd_c00440{left:543.600000px;}
.x16_c00440{left:555.120000px;}
.xe_c00440{left:566.640000px;}
.x29_c00440{left:576.720000px;}
.x22_c00440{left:578.160000px;}
.x1b_c00440{left:587.520000px;}
.x3f_c00440{left:609.120000px;}
.x2c_c00440{left:610.560000px;}
.x17_c00440{left:641.520000px;}
.x34_c00440{left:642.960000px;}
.x1_c00440{left:658.800000px;}
.x42_c00440{left:676.080000px;}
.x35_c00440{left:686.160000px;}
.x37_c00440{left:707.040000px;}
@media print{
.v0_c00440{vertical-align:0.000000pt;}
.ls0_c00440{letter-spacing:0.000000pt;}
.ws2_c00440{word-spacing:0.000000pt;}
.ws1_c00440{word-spacing:7.977165pt;}
.ws0_c00440{word-spacing:31.856427pt;}
.fs8_c00440{font-size:10.240000pt;}
.fs5_c00440{font-size:30.720000pt;}
.fs7_c00440{font-size:38.400000pt;}
.fs1_c00440{font-size:40.960000pt;}
.fs2_c00440{font-size:43.520000pt;}
.fs4_c00440{font-size:46.080000pt;}
.fs6_c00440{font-size:48.640000pt;}
.fs3_c00440{font-size:51.200000pt;}
.fsa_c00440{font-size:53.760000pt;}
.fsd_c00440{font-size:56.320000pt;}
.fs9_c00440{font-size:58.880000pt;}
.fsb_c00440{font-size:61.440000pt;}
.fsf_c00440{font-size:64.000000pt;}
.fs0_c00440{font-size:66.560000pt;}
.fsc_c00440{font-size:69.120000pt;}
.fse_c00440{font-size:76.800000pt;}
.y0_c00440{bottom:0.000000pt;}
.yaf_c00440{bottom:40.960000pt;}
.yb3_c00440{bottom:41.600000pt;}
.yb2_c00440{bottom:42.240000pt;}
.yb1_c00440{bottom:42.880000pt;}
.yae_c00440{bottom:43.520000pt;}
.yb0_c00440{bottom:46.080000pt;}
.yab_c00440{bottom:79.360000pt;}
.yac_c00440{bottom:81.280000pt;}
.yad_c00440{bottom:81.920000pt;}
.yaa_c00440{bottom:82.560000pt;}
.ya8_c00440{bottom:117.760000pt;}
.ya7_c00440{bottom:119.040000pt;}
.ya6_c00440{bottom:119.680000pt;}
.ya9_c00440{bottom:120.320000pt;}
.ya5_c00440{bottom:149.760000pt;}
.ya1_c00440{bottom:156.160000pt;}
.ya3_c00440{bottom:156.800000pt;}
.ya4_c00440{bottom:157.440000pt;}
.ya0_c00440{bottom:158.720000pt;}
.ya2_c00440{bottom:159.360000pt;}
.y9b_c00440{bottom:193.280000pt;}
.y9d_c00440{bottom:193.920000pt;}
.y9e_c00440{bottom:195.200000pt;}
.y9a_c00440{bottom:195.840000pt;}
.y9f_c00440{bottom:196.480000pt;}
.y9c_c00440{bottom:197.120000pt;}
.y99_c00440{bottom:225.920000pt;}
.y93_c00440{bottom:231.040000pt;}
.y97_c00440{bottom:231.680000pt;}
.y95_c00440{bottom:232.320000pt;}
.y98_c00440{bottom:232.960000pt;}
.y92_c00440{bottom:234.240000pt;}
.y94_c00440{bottom:234.880000pt;}
.y96_c00440{bottom:235.520000pt;}
.y90_c00440{bottom:269.440000pt;}
.y91_c00440{bottom:271.360000pt;}
.y8d_c00440{bottom:272.000000pt;}
.y8f_c00440{bottom:273.280000pt;}
.y8e_c00440{bottom:273.920000pt;}
.y89_c00440{bottom:307.840000pt;}
.y8b_c00440{bottom:308.480000pt;}
.y8a_c00440{bottom:309.760000pt;}
.y8c_c00440{bottom:310.400000pt;}
.y88_c00440{bottom:311.040000pt;}
.y85_c00440{bottom:345.600000pt;}
.y87_c00440{bottom:346.880000pt;}
.y86_c00440{bottom:348.160000pt;}
.y82_c00440{bottom:348.800000pt;}
.y84_c00440{bottom:349.440000pt;}
.y83_c00440{bottom:350.080000pt;}
.y7f_c00440{bottom:384.000000pt;}
.y81_c00440{bottom:385.280000pt;}
.y80_c00440{bottom:385.920000pt;}
.y7d_c00440{bottom:387.200000pt;}
.y7e_c00440{bottom:388.480000pt;}
.y7a_c00440{bottom:422.400000pt;}
.y7c_c00440{bottom:423.680000pt;}
.y7b_c00440{bottom:424.320000pt;}
.y77_c00440{bottom:424.960000pt;}
.y79_c00440{bottom:425.600000pt;}
.y78_c00440{bottom:426.240000pt;}
.y74_c00440{bottom:456.320000pt;}
.y75_c00440{bottom:462.720000pt;}
.y76_c00440{bottom:464.000000pt;}
.y73_c00440{bottom:519.680000pt;}
.y70_c00440{bottom:520.320000pt;}
.y72_c00440{bottom:521.600000pt;}
.y71_c00440{bottom:522.240000pt;}
.y6a_c00440{bottom:538.880000pt;}
.y6c_c00440{bottom:539.520000pt;}
.y6b_c00440{bottom:541.440000pt;}
.y6e_c00440{bottom:548.480000pt;}
.y6d_c00440{bottom:549.120000pt;}
.y6f_c00440{bottom:550.400000pt;}
.y67_c00440{bottom:558.080000pt;}
.y69_c00440{bottom:558.720000pt;}
.y68_c00440{bottom:560.640000pt;}
.y65_c00440{bottom:567.680000pt;}
.y66_c00440{bottom:570.240000pt;}
.y61_c00440{bottom:576.640000pt;}
.y63_c00440{bottom:577.280000pt;}
.y64_c00440{bottom:577.920000pt;}
.y62_c00440{bottom:579.840000pt;}
.y5f_c00440{bottom:586.240000pt;}
.y5e_c00440{bottom:586.880000pt;}
.y60_c00440{bottom:587.520000pt;}
.y5a_c00440{bottom:595.200000pt;}
.y5d_c00440{bottom:595.840000pt;}
.y5c_c00440{bottom:596.480000pt;}
.y5b_c00440{bottom:598.400000pt;}
.y59_c00440{bottom:605.440000pt;}
.y58_c00440{bottom:606.080000pt;}
.y54_c00440{bottom:615.040000pt;}
.y52_c00440{bottom:615.680000pt;}
.y53_c00440{bottom:617.600000pt;}
.y55_c00440{bottom:624.640000pt;}
.y57_c00440{bottom:625.280000pt;}
.y56_c00440{bottom:627.200000pt;}
.y51_c00440{bottom:634.240000pt;}
.y4f_c00440{bottom:636.160000pt;}
.y50_c00440{bottom:636.800000pt;}
.y4e_c00440{bottom:643.200000pt;}
.y4d_c00440{bottom:643.840000pt;}
.y4c_c00440{bottom:644.480000pt;}
.y4b_c00440{bottom:653.440000pt;}
.y49_c00440{bottom:655.360000pt;}
.y4a_c00440{bottom:656.000000pt;}
.y47_c00440{bottom:663.040000pt;}
.y45_c00440{bottom:663.680000pt;}
.y48_c00440{bottom:664.960000pt;}
.y46_c00440{bottom:665.600000pt;}
.y44_c00440{bottom:672.000000pt;}
.y43_c00440{bottom:672.640000pt;}
.y42_c00440{bottom:674.560000pt;}
.y41_c00440{bottom:681.600000pt;}
.y3f_c00440{bottom:683.520000pt;}
.y40_c00440{bottom:684.160000pt;}
.y3b_c00440{bottom:689.280000pt;}
.y3c_c00440{bottom:691.200000pt;}
.y3a_c00440{bottom:693.760000pt;}
.y3e_c00440{bottom:700.160000pt;}
.y3d_c00440{bottom:700.800000pt;}
.y38_c00440{bottom:709.760000pt;}
.y39_c00440{bottom:710.400000pt;}
.y37_c00440{bottom:719.360000pt;}
.y35_c00440{bottom:720.000000pt;}
.y36_c00440{bottom:722.560000pt;}
.y31_c00440{bottom:728.960000pt;}
.y34_c00440{bottom:729.600000pt;}
.y32_c00440{bottom:730.240000pt;}
.y33_c00440{bottom:730.880000pt;}
.y2e_c00440{bottom:738.560000pt;}
.y30_c00440{bottom:740.480000pt;}
.y2f_c00440{bottom:741.120000pt;}
.y2c_c00440{bottom:748.160000pt;}
.y2d_c00440{bottom:757.120000pt;}
.y27_c00440{bottom:767.360000pt;}
.y28_c00440{bottom:769.280000pt;}
.y2b_c00440{bottom:776.320000pt;}
.y29_c00440{bottom:776.960000pt;}
.y2a_c00440{bottom:778.880000pt;}
.y23_c00440{bottom:785.920000pt;}
.y22_c00440{bottom:786.560000pt;}
.y21_c00440{bottom:788.480000pt;}
.y26_c00440{bottom:794.880000pt;}
.y24_c00440{bottom:795.520000pt;}
.y25_c00440{bottom:797.440000pt;}
.y1e_c00440{bottom:811.520000pt;}
.y1c_c00440{bottom:812.160000pt;}
.y20_c00440{bottom:814.720000pt;}
.y1d_c00440{bottom:815.360000pt;}
.y1b_c00440{bottom:816.000000pt;}
.y1f_c00440{bottom:816.640000pt;}
.y19_c00440{bottom:852.480000pt;}
.y18_c00440{bottom:853.120000pt;}
.y1a_c00440{bottom:854.400000pt;}
.y17_c00440{bottom:855.040000pt;}
.y16_c00440{bottom:855.680000pt;}
.y15_c00440{bottom:871.680000pt;}
.y14_c00440{bottom:873.600000pt;}
.y13_c00440{bottom:880.640000pt;}
.y10_c00440{bottom:881.280000pt;}
.yf_c00440{bottom:881.920000pt;}
.ye_c00440{bottom:883.840000pt;}
.y11_c00440{bottom:884.480000pt;}
.y12_c00440{bottom:886.400000pt;}
.yc_c00440{bottom:899.840000pt;}
.yd_c00440{bottom:902.400000pt;}
.ya_c00440{bottom:910.080000pt;}
.y9_c00440{bottom:912.000000pt;}
.yb_c00440{bottom:912.640000pt;}
.y4_c00440{bottom:938.880000pt;}
.y6_c00440{bottom:939.520000pt;}
.y2_c00440{bottom:940.160000pt;}
.y3_c00440{bottom:940.800000pt;}
.y8_c00440{bottom:941.440000pt;}
.y5_c00440{bottom:942.080000pt;}
.y7_c00440{bottom:943.360000pt;}
.y1_c00440{bottom:990.720000pt;}
.ha_c00440{height:9.215000pt;}
.h7_c00440{height:27.645000pt;}
.h9_c00440{height:34.556250pt;}
.h3_c00440{height:36.860000pt;}
.h4_c00440{height:39.163750pt;}
.h6_c00440{height:41.467500pt;}
.h8_c00440{height:43.771250pt;}
.h5_c00440{height:46.075000pt;}
.hc_c00440{height:48.378750pt;}
.hf_c00440{height:50.682500pt;}
.hb_c00440{height:52.986250pt;}
.hd_c00440{height:55.290000pt;}
.h11_c00440{height:57.593750pt;}
.h2_c00440{height:59.897500pt;}
.he_c00440{height:62.201250pt;}
.h10_c00440{height:69.112500pt;}
.h1_c00440{height:1032.666667pt;}
.h0_c00440{height:1032.960000pt;}
.w0_c00440{width:691.200000pt;}
.w1_c00440{width:691.333333pt;}
.x0_c00440{left:0.000000pt;}
.x2_c00440{left:40.960000pt;}
.x2d_c00440{left:42.240000pt;}
.x27_c00440{left:49.920000pt;}
.x23_c00440{left:51.840000pt;}
.x3_c00440{left:60.160000pt;}
.xf_c00440{left:69.120000pt;}
.x1d_c00440{left:79.360000pt;}
.x2e_c00440{left:90.240000pt;}
.x18_c00440{left:97.920000pt;}
.x4_c00440{left:99.840000pt;}
.x31_c00440{left:107.520000pt;}
.x38_c00440{left:108.800000pt;}
.x2f_c00440{left:127.360000pt;}
.x10_c00440{left:137.600000pt;}
.x24_c00440{left:146.560000pt;}
.x26_c00440{left:147.840000pt;}
.x11_c00440{left:156.800000pt;}
.x5_c00440{left:165.120000pt;}
.x1e_c00440{left:167.040000pt;}
.x25_c00440{left:176.000000pt;}
.x36_c00440{left:185.600000pt;}
.x12_c00440{left:194.560000pt;}
.x28_c00440{left:195.840000pt;}
.x1f_c00440{left:205.440000pt;}
.x30_c00440{left:213.120000pt;}
.x39_c00440{left:223.360000pt;}
.x3e_c00440{left:224.640000pt;}
.x6_c00440{left:233.600000pt;}
.x1c_c00440{left:241.920000pt;}
.x7_c00440{left:252.160000pt;}
.x13_c00440{left:270.720000pt;}
.x19_c00440{left:280.960000pt;}
.x8_c00440{left:301.440000pt;}
.x32_c00440{left:309.760000pt;}
.x3a_c00440{left:339.840000pt;}
.x9_c00440{left:347.520000pt;}
.x14_c00440{left:349.440000pt;}
.x40_c00440{left:358.400000pt;}
.xa_c00440{left:376.960000pt;}
.x3b_c00440{left:386.560000pt;}
.x20_c00440{left:387.840000pt;}
.x41_c00440{left:396.800000pt;}
.x2a_c00440{left:398.080000pt;}
.xb_c00440{left:407.040000pt;}
.x3d_c00440{left:416.000000pt;}
.x3c_c00440{left:426.240000pt;}
.x2b_c00440{left:446.080000pt;}
.xc_c00440{left:455.040000pt;}
.x15_c00440{left:456.960000pt;}
.x1a_c00440{left:463.360000pt;}
.x33_c00440{left:464.640000pt;}
.x21_c00440{left:474.880000pt;}
.xd_c00440{left:483.200000pt;}
.x16_c00440{left:493.440000pt;}
.xe_c00440{left:503.680000pt;}
.x29_c00440{left:512.640000pt;}
.x22_c00440{left:513.920000pt;}
.x1b_c00440{left:522.240000pt;}
.x3f_c00440{left:541.440000pt;}
.x2c_c00440{left:542.720000pt;}
.x17_c00440{left:570.240000pt;}
.x34_c00440{left:571.520000pt;}
.x1_c00440{left:585.600000pt;}
.x42_c00440{left:600.960000pt;}
.x35_c00440{left:609.920000pt;}
.x37_c00440{left:628.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_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_ede826ab4ada64b929abe1a5.woff2')format("woff");}.ff1_c00441{font-family:ff1_c00441;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4f_c00441{transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);}
.m3d_c00441{transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);}
.ma_c00441{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m3_c00441{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m47_c00441{transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);}
.m28_c00441{transform:matrix(0.244350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244350,0.000000,0.000000,0.250000,0,0);}
.m4b_c00441{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m2b_c00441{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);}
.m2e_c00441{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);}
.m3a_c00441{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);}
.m1e_c00441{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m34_c00441{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m19_c00441{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_c00441{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_c00441{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m10_c00441{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m7_c00441{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m11_c00441{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);}
.m36_c00441{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m4_c00441{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m2_c00441{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m6_c00441{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m21_c00441{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m24_c00441{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00441{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m17_c00441{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00441{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00441{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00441{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00441{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m35_c00441{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00441{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m5_c00441{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m20_c00441{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00441{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00441{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m37_c00441{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00441{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m22_c00441{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_c00441{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m31_c00441{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);}
.m52_c00441{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m33_c00441{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);}
.m29_c00441{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1_c00441{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_c00441{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m50_c00441{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m0_c00441{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00441{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);}
.m1f_c00441{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m9_c00441{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m51_c00441{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m45_c00441{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);}
.m15_c00441{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);}
.m53_c00441{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m38_c00441{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00441{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m39_c00441{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00441{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);}
.m44_c00441{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m42_c00441{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);}
.m2c_c00441{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);}
.m41_c00441{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m40_c00441{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m23_c00441{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00441{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m8_c00441{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);}
.m26_c00441{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.me_c00441{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m14_c00441{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m25_c00441{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00441{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);}
.m48_c00441{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m27_c00441{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);}
.mf_c00441{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m32_c00441{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m46_c00441{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.mb_c00441{transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);}
.m49_c00441{transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);}
.m18_c00441{transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);}
.m12_c00441{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00441{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m43_c00441{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00441{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.v2_c00441{vertical-align:-5.760000px;}
.v0_c00441{vertical-align:0.000000px;}
.v3_c00441{vertical-align:2.880000px;}
.v1_c00441{vertical-align:5.760000px;}
.ls0_c00441{letter-spacing:0.000000px;}
.sc__c00441{text-shadow:none;}
.sc0_c00441{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00441{-webkit-text-stroke:0px transparent;}
.sc0_c00441{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00441{word-spacing:-21.945600px;}
.ws3_c00441{word-spacing:0.000000px;}
.ws0_c00441{word-spacing:12.615600px;}
.ws2_c00441{word-spacing:31.876320px;}
.fc0_c00441{color:transparent;}
.fsf_c00441{font-size:11.520000px;}
.fs8_c00441{font-size:34.560000px;}
.fse_c00441{font-size:37.440000px;}
.fsa_c00441{font-size:46.080000px;}
.fs2_c00441{font-size:48.960000px;}
.fs5_c00441{font-size:51.840000px;}
.fs3_c00441{font-size:54.720000px;}
.fs9_c00441{font-size:57.600000px;}
.fs4_c00441{font-size:60.480000px;}
.fs1_c00441{font-size:63.360000px;}
.fsb_c00441{font-size:66.240000px;}
.fs7_c00441{font-size:69.120000px;}
.fs6_c00441{font-size:72.000000px;}
.fs0_c00441{font-size:74.880000px;}
.fsc_c00441{font-size:77.760000px;}
.fsd_c00441{font-size:86.400000px;}
.y0_c00441{bottom:0.000000px;}
.y93_c00441{bottom:56.160000px;}
.y92_c00441{bottom:59.040000px;}
.y8f_c00441{bottom:76.320000px;}
.y90_c00441{bottom:77.040000px;}
.y8e_c00441{bottom:77.760000px;}
.y8d_c00441{bottom:79.200000px;}
.y91_c00441{bottom:80.640000px;}
.y8b_c00441{bottom:99.360000px;}
.y8c_c00441{bottom:100.080000px;}
.y89_c00441{bottom:100.800000px;}
.y8a_c00441{bottom:101.520000px;}
.y86_c00441{bottom:120.240000px;}
.y88_c00441{bottom:120.960000px;}
.y87_c00441{bottom:121.680000px;}
.y85_c00441{bottom:123.120000px;}
.y84_c00441{bottom:124.560000px;}
.y82_c00441{bottom:141.120000px;}
.y80_c00441{bottom:141.840000px;}
.y81_c00441{bottom:142.560000px;}
.y7e_c00441{bottom:143.280000px;}
.y7f_c00441{bottom:144.000000px;}
.y83_c00441{bottom:145.440000px;}
.y7a_c00441{bottom:163.440000px;}
.y7b_c00441{bottom:164.160000px;}
.y7d_c00441{bottom:164.880000px;}
.y78_c00441{bottom:165.600000px;}
.y79_c00441{bottom:166.320000px;}
.y7c_c00441{bottom:167.040000px;}
.y75_c00441{bottom:185.040000px;}
.y74_c00441{bottom:185.760000px;}
.y76_c00441{bottom:186.480000px;}
.y72_c00441{bottom:187.200000px;}
.y73_c00441{bottom:187.920000px;}
.y77_c00441{bottom:188.640000px;}
.y6f_c00441{bottom:206.640000px;}
.y71_c00441{bottom:208.080000px;}
.y6e_c00441{bottom:208.800000px;}
.y70_c00441{bottom:209.520000px;}
.y6d_c00441{bottom:210.960000px;}
.y67_c00441{bottom:228.960000px;}
.y66_c00441{bottom:231.120000px;}
.y65_c00441{bottom:231.840000px;}
.y6c_c00441{bottom:239.040000px;}
.y69_c00441{bottom:239.760000px;}
.y6a_c00441{bottom:241.920000px;}
.y68_c00441{bottom:242.640000px;}
.y6b_c00441{bottom:244.800000px;}
.y61_c00441{bottom:257.760000px;}
.y60_c00441{bottom:262.080000px;}
.y5f_c00441{bottom:263.520000px;}
.y62_c00441{bottom:274.320000px;}
.y63_c00441{bottom:275.040000px;}
.y64_c00441{bottom:275.760000px;}
.y5d_c00441{bottom:303.120000px;}
.y5a_c00441{bottom:305.280000px;}
.y5e_c00441{bottom:306.000000px;}
.y5c_c00441{bottom:306.720000px;}
.y59_c00441{bottom:307.440000px;}
.y5b_c00441{bottom:308.880000px;}
.y58_c00441{bottom:347.040000px;}
.y57_c00441{bottom:347.760000px;}
.y55_c00441{bottom:349.200000px;}
.y56_c00441{bottom:349.920000px;}
.y50_c00441{bottom:350.640000px;}
.y51_c00441{bottom:357.840000px;}
.y52_c00441{bottom:359.280000px;}
.y54_c00441{bottom:370.800000px;}
.y53_c00441{bottom:371.520000px;}
.y4a_c00441{bottom:420.480000px;}
.y4c_c00441{bottom:421.200000px;}
.y4f_c00441{bottom:421.920000px;}
.y4e_c00441{bottom:422.640000px;}
.y4d_c00441{bottom:423.360000px;}
.y49_c00441{bottom:424.080000px;}
.y4b_c00441{bottom:424.800000px;}
.y45_c00441{bottom:463.680000px;}
.y46_c00441{bottom:464.400000px;}
.y43_c00441{bottom:465.840000px;}
.y47_c00441{bottom:467.280000px;}
.y44_c00441{bottom:468.000000px;}
.y48_c00441{bottom:468.720000px;}
.y40_c00441{bottom:506.880000px;}
.y41_c00441{bottom:508.320000px;}
.y3f_c00441{bottom:509.040000px;}
.y42_c00441{bottom:511.200000px;}
.y3d_c00441{bottom:550.800000px;}
.y3c_c00441{bottom:551.520000px;}
.y3e_c00441{bottom:552.240000px;}
.y39_c00441{bottom:591.120000px;}
.y3b_c00441{bottom:593.280000px;}
.y38_c00441{bottom:594.000000px;}
.y3a_c00441{bottom:594.720000px;}
.y37_c00441{bottom:628.560000px;}
.y33_c00441{bottom:635.040000px;}
.y36_c00441{bottom:636.480000px;}
.y32_c00441{bottom:637.920000px;}
.y34_c00441{bottom:638.640000px;}
.y35_c00441{bottom:639.360000px;}
.y2c_c00441{bottom:677.520000px;}
.y2e_c00441{bottom:678.240000px;}
.y31_c00441{bottom:679.680000px;}
.y2b_c00441{bottom:680.400000px;}
.y2f_c00441{bottom:681.120000px;}
.y2d_c00441{bottom:681.840000px;}
.y30_c00441{bottom:682.560000px;}
.y29_c00441{bottom:725.040000px;}
.y27_c00441{bottom:754.560000px;}
.y26_c00441{bottom:755.280000px;}
.y2a_c00441{bottom:756.000000px;}
.y28_c00441{bottom:757.440000px;}
.y23_c00441{bottom:796.320000px;}
.y25_c00441{bottom:797.760000px;}
.y22_c00441{bottom:798.480000px;}
.y24_c00441{bottom:801.360000px;}
.y1e_c00441{bottom:840.240000px;}
.y21_c00441{bottom:840.960000px;}
.y1d_c00441{bottom:841.680000px;}
.y20_c00441{bottom:843.840000px;}
.y1f_c00441{bottom:844.560000px;}
.y1b_c00441{bottom:882.720000px;}
.y19_c00441{bottom:883.440000px;}
.y1a_c00441{bottom:884.160000px;}
.y18_c00441{bottom:884.880000px;}
.y1c_c00441{bottom:886.320000px;}
.y13_c00441{bottom:925.920000px;}
.y15_c00441{bottom:926.640000px;}
.y12_c00441{bottom:927.360000px;}
.y17_c00441{bottom:928.080000px;}
.y16_c00441{bottom:928.800000px;}
.y14_c00441{bottom:929.520000px;}
.y10_c00441{bottom:968.400000px;}
.ye_c00441{bottom:969.120000px;}
.y11_c00441{bottom:969.840000px;}
.yd_c00441{bottom:970.560000px;}
.yf_c00441{bottom:972.720000px;}
.y8_c00441{bottom:1011.600000px;}
.yc_c00441{bottom:1012.320000px;}
.ya_c00441{bottom:1013.040000px;}
.y7_c00441{bottom:1013.760000px;}
.y9_c00441{bottom:1014.480000px;}
.yb_c00441{bottom:1015.200000px;}
.y3_c00441{bottom:1054.080000px;}
.y5_c00441{bottom:1054.800000px;}
.y2_c00441{bottom:1056.240000px;}
.y4_c00441{bottom:1057.680000px;}
.y6_c00441{bottom:1059.120000px;}
.y1_c00441{bottom:1120.320000px;}
.h13_c00441{height:10.366875px;}
.ha_c00441{height:31.100625px;}
.h12_c00441{height:33.692344px;}
.hd_c00441{height:41.467500px;}
.h4_c00441{height:44.059219px;}
.h7_c00441{height:46.650937px;}
.h5_c00441{height:49.242656px;}
.hc_c00441{height:51.834375px;}
.h6_c00441{height:54.426094px;}
.hb_c00441{height:55.002656px;}
.h3_c00441{height:57.017812px;}
.h14_c00441{height:57.306094px;}
.he_c00441{height:59.609531px;}
.h10_c00441{height:61.624687px;}
.h9_c00441{height:62.201250px;}
.h8_c00441{height:64.792969px;}
.h2_c00441{height:67.384687px;}
.hf_c00441{height:69.976406px;}
.h11_c00441{height:77.751563px;}
.h1_c00441{height:1164.750000px;}
.h0_c00441{height:1164.960000px;}
.w1_c00441{width:783.750000px;}
.w0_c00441{width:784.080000px;}
.x0_c00441{left:0.000000px;}
.x2_c00441{left:46.080000px;}
.x26_c00441{left:47.520000px;}
.x40_c00441{left:56.880000px;}
.x37_c00441{left:58.319925px;}
.x2c_c00441{left:77.760000px;}
.x27_c00441{left:88.560000px;}
.x38_c00441{left:112.320000px;}
.x3_c00441{left:120.960000px;}
.x16_c00441{left:122.400000px;}
.x22_c00441{left:144.720000px;}
.x43_c00441{left:155.520000px;}
.x39_c00441{left:164.880000px;}
.x41_c00441{left:166.320000px;}
.x2d_c00441{left:174.960000px;}
.x1a_c00441{left:185.760000px;}
.x33_c00441{left:187.920000px;}
.x21_c00441{left:197.280000px;}
.xb_c00441{left:208.800000px;}
.x1c_c00441{left:218.160000px;}
.x3c_c00441{left:220.320000px;}
.x1e_c00441{left:229.680000px;}
.x23_c00441{left:241.200000px;}
.xe_c00441{left:252.000000px;}
.x2e_c00441{left:261.360000px;}
.xc_c00441{left:262.800000px;}
.x1f_c00441{left:294.480000px;}
.x24_c00441{left:295.920000px;}
.xd_c00441{left:306.000000px;}
.x17_c00441{left:316.800000px;}
.x25_c00441{left:337.680000px;}
.x2f_c00441{left:360.720000px;}
.x11_c00441{left:370.800000px;}
.x30_c00441{left:380.880000px;}
.x3a_c00441{left:382.320000px;}
.x3d_c00441{left:403.920000px;}
.xf_c00441{left:414.000000px;}
.x28_c00441{left:425.520000px;}
.x34_c00441{left:447.120000px;}
.x20_c00441{left:456.480000px;}
.x10_c00441{left:457.920000px;}
.x18_c00441{left:468.000000px;}
.x42_c00441{left:469.440000px;}
.x31_c00441{left:478.080000px;}
.x29_c00441{left:479.520000px;}
.x3e_c00441{left:501.120000px;}
.x2a_c00441{left:511.200000px;}
.x35_c00441{left:512.640000px;}
.x19_c00441{left:522.720000px;}
.x13_c00441{left:532.800000px;}
.x4_c00441{left:534.240000px;}
.x3f_c00441{left:545.040000px;}
.x5_c00441{left:555.840000px;}
.x2b_c00441{left:564.480000px;}
.x14_c00441{left:576.000000px;}
.x36_c00441{left:577.440000px;}
.xa_c00441{left:587.520000px;}
.x32_c00441{left:598.320000px;}
.x6_c00441{left:609.840000px;}
.x3b_c00441{left:630.720000px;}
.x15_c00441{left:633.600000px;}
.x7_c00441{left:642.240000px;}
.x1b_c00441{left:643.680000px;}
.x1d_c00441{left:653.760000px;}
.x12_c00441{left:676.080000px;}
.x8_c00441{left:686.160000px;}
.x1_c00441{left:691.200000px;}
.x9_c00441{left:706.320000px;}
@media print{
.v2_c00441{vertical-align:-5.120000pt;}
.v0_c00441{vertical-align:0.000000pt;}
.v3_c00441{vertical-align:2.560000pt;}
.v1_c00441{vertical-align:5.120000pt;}
.ls0_c00441{letter-spacing:0.000000pt;}
.ws1_c00441{word-spacing:-19.507200pt;}
.ws3_c00441{word-spacing:0.000000pt;}
.ws0_c00441{word-spacing:11.213867pt;}
.ws2_c00441{word-spacing:28.334507pt;}
.fsf_c00441{font-size:10.240000pt;}
.fs8_c00441{font-size:30.720000pt;}
.fse_c00441{font-size:33.280000pt;}
.fsa_c00441{font-size:40.960000pt;}
.fs2_c00441{font-size:43.520000pt;}
.fs5_c00441{font-size:46.080000pt;}
.fs3_c00441{font-size:48.640000pt;}
.fs9_c00441{font-size:51.200000pt;}
.fs4_c00441{font-size:53.760000pt;}
.fs1_c00441{font-size:56.320000pt;}
.fsb_c00441{font-size:58.880000pt;}
.fs7_c00441{font-size:61.440000pt;}
.fs6_c00441{font-size:64.000000pt;}
.fs0_c00441{font-size:66.560000pt;}
.fsc_c00441{font-size:69.120000pt;}
.fsd_c00441{font-size:76.800000pt;}
.y0_c00441{bottom:0.000000pt;}
.y93_c00441{bottom:49.920000pt;}
.y92_c00441{bottom:52.480000pt;}
.y8f_c00441{bottom:67.840000pt;}
.y90_c00441{bottom:68.480000pt;}
.y8e_c00441{bottom:69.120000pt;}
.y8d_c00441{bottom:70.400000pt;}
.y91_c00441{bottom:71.680000pt;}
.y8b_c00441{bottom:88.320000pt;}
.y8c_c00441{bottom:88.960000pt;}
.y89_c00441{bottom:89.600000pt;}
.y8a_c00441{bottom:90.240000pt;}
.y86_c00441{bottom:106.880000pt;}
.y88_c00441{bottom:107.520000pt;}
.y87_c00441{bottom:108.160000pt;}
.y85_c00441{bottom:109.440000pt;}
.y84_c00441{bottom:110.720000pt;}
.y82_c00441{bottom:125.440000pt;}
.y80_c00441{bottom:126.080000pt;}
.y81_c00441{bottom:126.720000pt;}
.y7e_c00441{bottom:127.360000pt;}
.y7f_c00441{bottom:128.000000pt;}
.y83_c00441{bottom:129.280000pt;}
.y7a_c00441{bottom:145.280000pt;}
.y7b_c00441{bottom:145.920000pt;}
.y7d_c00441{bottom:146.560000pt;}
.y78_c00441{bottom:147.200000pt;}
.y79_c00441{bottom:147.840000pt;}
.y7c_c00441{bottom:148.480000pt;}
.y75_c00441{bottom:164.480000pt;}
.y74_c00441{bottom:165.120000pt;}
.y76_c00441{bottom:165.760000pt;}
.y72_c00441{bottom:166.400000pt;}
.y73_c00441{bottom:167.040000pt;}
.y77_c00441{bottom:167.680000pt;}
.y6f_c00441{bottom:183.680000pt;}
.y71_c00441{bottom:184.960000pt;}
.y6e_c00441{bottom:185.600000pt;}
.y70_c00441{bottom:186.240000pt;}
.y6d_c00441{bottom:187.520000pt;}
.y67_c00441{bottom:203.520000pt;}
.y66_c00441{bottom:205.440000pt;}
.y65_c00441{bottom:206.080000pt;}
.y6c_c00441{bottom:212.480000pt;}
.y69_c00441{bottom:213.120000pt;}
.y6a_c00441{bottom:215.040000pt;}
.y68_c00441{bottom:215.680000pt;}
.y6b_c00441{bottom:217.600000pt;}
.y61_c00441{bottom:229.120000pt;}
.y60_c00441{bottom:232.960000pt;}
.y5f_c00441{bottom:234.240000pt;}
.y62_c00441{bottom:243.840000pt;}
.y63_c00441{bottom:244.480000pt;}
.y64_c00441{bottom:245.120000pt;}
.y5d_c00441{bottom:269.440000pt;}
.y5a_c00441{bottom:271.360000pt;}
.y5e_c00441{bottom:272.000000pt;}
.y5c_c00441{bottom:272.640000pt;}
.y59_c00441{bottom:273.280000pt;}
.y5b_c00441{bottom:274.560000pt;}
.y58_c00441{bottom:308.480000pt;}
.y57_c00441{bottom:309.120000pt;}
.y55_c00441{bottom:310.400000pt;}
.y56_c00441{bottom:311.040000pt;}
.y50_c00441{bottom:311.680000pt;}
.y51_c00441{bottom:318.080000pt;}
.y52_c00441{bottom:319.360000pt;}
.y54_c00441{bottom:329.600000pt;}
.y53_c00441{bottom:330.240000pt;}
.y4a_c00441{bottom:373.760000pt;}
.y4c_c00441{bottom:374.400000pt;}
.y4f_c00441{bottom:375.040000pt;}
.y4e_c00441{bottom:375.680000pt;}
.y4d_c00441{bottom:376.320000pt;}
.y49_c00441{bottom:376.960000pt;}
.y4b_c00441{bottom:377.600000pt;}
.y45_c00441{bottom:412.160000pt;}
.y46_c00441{bottom:412.800000pt;}
.y43_c00441{bottom:414.080000pt;}
.y47_c00441{bottom:415.360000pt;}
.y44_c00441{bottom:416.000000pt;}
.y48_c00441{bottom:416.640000pt;}
.y40_c00441{bottom:450.560000pt;}
.y41_c00441{bottom:451.840000pt;}
.y3f_c00441{bottom:452.480000pt;}
.y42_c00441{bottom:454.400000pt;}
.y3d_c00441{bottom:489.600000pt;}
.y3c_c00441{bottom:490.240000pt;}
.y3e_c00441{bottom:490.880000pt;}
.y39_c00441{bottom:525.440000pt;}
.y3b_c00441{bottom:527.360000pt;}
.y38_c00441{bottom:528.000000pt;}
.y3a_c00441{bottom:528.640000pt;}
.y37_c00441{bottom:558.720000pt;}
.y33_c00441{bottom:564.480000pt;}
.y36_c00441{bottom:565.760000pt;}
.y32_c00441{bottom:567.040000pt;}
.y34_c00441{bottom:567.680000pt;}
.y35_c00441{bottom:568.320000pt;}
.y2c_c00441{bottom:602.240000pt;}
.y2e_c00441{bottom:602.880000pt;}
.y31_c00441{bottom:604.160000pt;}
.y2b_c00441{bottom:604.800000pt;}
.y2f_c00441{bottom:605.440000pt;}
.y2d_c00441{bottom:606.080000pt;}
.y30_c00441{bottom:606.720000pt;}
.y29_c00441{bottom:644.480000pt;}
.y27_c00441{bottom:670.720000pt;}
.y26_c00441{bottom:671.360000pt;}
.y2a_c00441{bottom:672.000000pt;}
.y28_c00441{bottom:673.280000pt;}
.y23_c00441{bottom:707.840000pt;}
.y25_c00441{bottom:709.120000pt;}
.y22_c00441{bottom:709.760000pt;}
.y24_c00441{bottom:712.320000pt;}
.y1e_c00441{bottom:746.880000pt;}
.y21_c00441{bottom:747.520000pt;}
.y1d_c00441{bottom:748.160000pt;}
.y20_c00441{bottom:750.080000pt;}
.y1f_c00441{bottom:750.720000pt;}
.y1b_c00441{bottom:784.640000pt;}
.y19_c00441{bottom:785.280000pt;}
.y1a_c00441{bottom:785.920000pt;}
.y18_c00441{bottom:786.560000pt;}
.y1c_c00441{bottom:787.840000pt;}
.y13_c00441{bottom:823.040000pt;}
.y15_c00441{bottom:823.680000pt;}
.y12_c00441{bottom:824.320000pt;}
.y17_c00441{bottom:824.960000pt;}
.y16_c00441{bottom:825.600000pt;}
.y14_c00441{bottom:826.240000pt;}
.y10_c00441{bottom:860.800000pt;}
.ye_c00441{bottom:861.440000pt;}
.y11_c00441{bottom:862.080000pt;}
.yd_c00441{bottom:862.720000pt;}
.yf_c00441{bottom:864.640000pt;}
.y8_c00441{bottom:899.200000pt;}
.yc_c00441{bottom:899.840000pt;}
.ya_c00441{bottom:900.480000pt;}
.y7_c00441{bottom:901.120000pt;}
.y9_c00441{bottom:901.760000pt;}
.yb_c00441{bottom:902.400000pt;}
.y3_c00441{bottom:936.960000pt;}
.y5_c00441{bottom:937.600000pt;}
.y2_c00441{bottom:938.880000pt;}
.y4_c00441{bottom:940.160000pt;}
.y6_c00441{bottom:941.440000pt;}
.y1_c00441{bottom:995.840000pt;}
.h13_c00441{height:9.215000pt;}
.ha_c00441{height:27.645000pt;}
.h12_c00441{height:29.948750pt;}
.hd_c00441{height:36.860000pt;}
.h4_c00441{height:39.163750pt;}
.h7_c00441{height:41.467500pt;}
.h5_c00441{height:43.771250pt;}
.hc_c00441{height:46.075000pt;}
.h6_c00441{height:48.378750pt;}
.hb_c00441{height:48.891250pt;}
.h3_c00441{height:50.682500pt;}
.h14_c00441{height:50.938750pt;}
.he_c00441{height:52.986250pt;}
.h10_c00441{height:54.777500pt;}
.h9_c00441{height:55.290000pt;}
.h8_c00441{height:57.593750pt;}
.h2_c00441{height:59.897500pt;}
.hf_c00441{height:62.201250pt;}
.h11_c00441{height:69.112500pt;}
.h1_c00441{height:1035.333333pt;}
.h0_c00441{height:1035.520000pt;}
.w1_c00441{width:696.666667pt;}
.w0_c00441{width:696.960000pt;}
.x0_c00441{left:0.000000pt;}
.x2_c00441{left:40.960000pt;}
.x26_c00441{left:42.240000pt;}
.x40_c00441{left:50.560000pt;}
.x37_c00441{left:51.839933pt;}
.x2c_c00441{left:69.120000pt;}
.x27_c00441{left:78.720000pt;}
.x38_c00441{left:99.840000pt;}
.x3_c00441{left:107.520000pt;}
.x16_c00441{left:108.800000pt;}
.x22_c00441{left:128.640000pt;}
.x43_c00441{left:138.240000pt;}
.x39_c00441{left:146.560000pt;}
.x41_c00441{left:147.840000pt;}
.x2d_c00441{left:155.520000pt;}
.x1a_c00441{left:165.120000pt;}
.x33_c00441{left:167.040000pt;}
.x21_c00441{left:175.360000pt;}
.xb_c00441{left:185.600000pt;}
.x1c_c00441{left:193.920000pt;}
.x3c_c00441{left:195.840000pt;}
.x1e_c00441{left:204.160000pt;}
.x23_c00441{left:214.400000pt;}
.xe_c00441{left:224.000000pt;}
.x2e_c00441{left:232.320000pt;}
.xc_c00441{left:233.600000pt;}
.x1f_c00441{left:261.760000pt;}
.x24_c00441{left:263.040000pt;}
.xd_c00441{left:272.000000pt;}
.x17_c00441{left:281.600000pt;}
.x25_c00441{left:300.160000pt;}
.x2f_c00441{left:320.640000pt;}
.x11_c00441{left:329.600000pt;}
.x30_c00441{left:338.560000pt;}
.x3a_c00441{left:339.840000pt;}
.x3d_c00441{left:359.040000pt;}
.xf_c00441{left:368.000000pt;}
.x28_c00441{left:378.240000pt;}
.x34_c00441{left:397.440000pt;}
.x20_c00441{left:405.760000pt;}
.x10_c00441{left:407.040000pt;}
.x18_c00441{left:416.000000pt;}
.x42_c00441{left:417.280000pt;}
.x31_c00441{left:424.960000pt;}
.x29_c00441{left:426.240000pt;}
.x3e_c00441{left:445.440000pt;}
.x2a_c00441{left:454.400000pt;}
.x35_c00441{left:455.680000pt;}
.x19_c00441{left:464.640000pt;}
.x13_c00441{left:473.600000pt;}
.x4_c00441{left:474.880000pt;}
.x3f_c00441{left:484.480000pt;}
.x5_c00441{left:494.080000pt;}
.x2b_c00441{left:501.760000pt;}
.x14_c00441{left:512.000000pt;}
.x36_c00441{left:513.280000pt;}
.xa_c00441{left:522.240000pt;}
.x32_c00441{left:531.840000pt;}
.x6_c00441{left:542.080000pt;}
.x3b_c00441{left:560.640000pt;}
.x15_c00441{left:563.200000pt;}
.x7_c00441{left:570.880000pt;}
.x1b_c00441{left:572.160000pt;}
.x1d_c00441{left:581.120000pt;}
.x12_c00441{left:600.960000pt;}
.x8_c00441{left:609.920000pt;}
.x1_c00441{left:614.400000pt;}
.x9_c00441{left:627.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_86478b91f364555f19c3acb4.woff2')format("woff");}.ff1_c00442{font-family:ff1_c00442;line-height:1.109863;font-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_c00442{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m49_c00442{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m4a_c00442{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m40_c00442{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m47_c00442{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);}
.m26_c00442{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.me_c00442{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00442{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m10_c00442{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m43_c00442{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m48_c00442{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00442{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);}
.m2a_c00442{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m18_c00442{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m3_c00442{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m41_c00442{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m5_c00442{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m15_c00442{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m23_c00442{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.ma_c00442{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m17_c00442{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mc_c00442{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m27_c00442{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m13_c00442{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m45_c00442{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m46_c00442{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00442{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mb_c00442{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m25_c00442{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00442{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00442{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m16_c00442{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m4_c00442{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00442{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m33_c00442{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m7_c00442{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m1_c00442{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00442{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);}
.m29_c00442{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m19_c00442{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);}
.m2b_c00442{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00442{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);}
.m3b_c00442{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m37_c00442{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m0_c00442{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);}
.m20_c00442{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00442{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.md_c00442{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);}
.m9_c00442{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m39_c00442{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m31_c00442{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);}
.m1d_c00442{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);}
.m2_c00442{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);}
.m34_c00442{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.mf_c00442{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);}
.m14_c00442{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m32_c00442{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);}
.m30_c00442{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m22_c00442{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);}
.m38_c00442{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m6_c00442{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m21_c00442{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);}
.m42_c00442{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);}
.m36_c00442{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m8_c00442{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m11_c00442{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m24_c00442{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00442{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00442{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);}
.m3d_c00442{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m12_c00442{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);}
.m28_c00442{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m35_c00442{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00442{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);}
.m2d_c00442{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m44_c00442{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.v0_c00442{vertical-align:0.000000px;}
.v2_c00442{vertical-align:5.760000px;}
.v1_c00442{vertical-align:8.640000px;}
.ls0_c00442{letter-spacing:0.000000px;}
.sc__c00442{text-shadow:none;}
.sc0_c00442{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00442{-webkit-text-stroke:0px transparent;}
.sc0_c00442{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00442{word-spacing:-1.232160px;}
.ws3_c00442{word-spacing:0.000000px;}
.ws0_c00442{word-spacing:187.886400px;}
.ws2_c00442{word-spacing:587.634000px;}
.fc0_c00442{color:transparent;}
.fs9_c00442{font-size:34.560000px;}
.fsc_c00442{font-size:43.200000px;}
.fs2_c00442{font-size:46.080000px;}
.fs6_c00442{font-size:48.960000px;}
.fs5_c00442{font-size:51.840000px;}
.fs3_c00442{font-size:54.720000px;}
.fs8_c00442{font-size:57.600000px;}
.fsa_c00442{font-size:60.480000px;}
.fs1_c00442{font-size:63.360000px;}
.fs4_c00442{font-size:66.240000px;}
.fsb_c00442{font-size:69.120000px;}
.fs7_c00442{font-size:72.000000px;}
.fs0_c00442{font-size:74.880000px;}
.fsd_c00442{font-size:77.760000px;}
.y0_c00442{bottom:0.000000px;}
.y78_c00442{bottom:35.280000px;}
.y7c_c00442{bottom:36.720000px;}
.y7b_c00442{bottom:37.440000px;}
.y7a_c00442{bottom:38.880000px;}
.y77_c00442{bottom:39.600000px;}
.y79_c00442{bottom:40.320000px;}
.y73_c00442{bottom:79.200000px;}
.y76_c00442{bottom:79.920000px;}
.y75_c00442{bottom:80.640000px;}
.y72_c00442{bottom:81.360000px;}
.y74_c00442{bottom:83.520000px;}
.y6e_c00442{bottom:121.680000px;}
.y71_c00442{bottom:123.120000px;}
.y6d_c00442{bottom:123.840000px;}
.y70_c00442{bottom:124.560000px;}
.y6f_c00442{bottom:126.000000px;}
.y69_c00442{bottom:164.880000px;}
.y6c_c00442{bottom:166.320000px;}
.y6b_c00442{bottom:167.040000px;}
.y68_c00442{bottom:168.480000px;}
.y6a_c00442{bottom:169.920000px;}
.y64_c00442{bottom:208.080000px;}
.y67_c00442{bottom:208.800000px;}
.y66_c00442{bottom:209.520000px;}
.y63_c00442{bottom:211.680000px;}
.y65_c00442{bottom:212.400000px;}
.y5f_c00442{bottom:250.560000px;}
.y62_c00442{bottom:252.000000px;}
.y61_c00442{bottom:252.720000px;}
.y5e_c00442{bottom:254.160000px;}
.y60_c00442{bottom:254.880000px;}
.y59_c00442{bottom:293.040000px;}
.y5a_c00442{bottom:293.760000px;}
.y5c_c00442{bottom:294.480000px;}
.y5b_c00442{bottom:295.200000px;}
.y5d_c00442{bottom:295.920000px;}
.y57_c00442{bottom:296.640000px;}
.y58_c00442{bottom:297.360000px;}
.y56_c00442{bottom:336.240000px;}
.y54_c00442{bottom:338.400000px;}
.y53_c00442{bottom:339.120000px;}
.y55_c00442{bottom:339.840000px;}
.y4f_c00442{bottom:379.440000px;}
.y52_c00442{bottom:380.160000px;}
.y4e_c00442{bottom:382.320000px;}
.y50_c00442{bottom:383.040000px;}
.y51_c00442{bottom:383.760000px;}
.y4b_c00442{bottom:421.920000px;}
.y4d_c00442{bottom:424.080000px;}
.y4c_c00442{bottom:424.800000px;}
.y4a_c00442{bottom:425.520000px;}
.y45_c00442{bottom:465.120000px;}
.y47_c00442{bottom:466.560000px;}
.y48_c00442{bottom:467.280000px;}
.y44_c00442{bottom:468.000000px;}
.y46_c00442{bottom:469.440000px;}
.y49_c00442{bottom:470.160000px;}
.y40_c00442{bottom:509.040000px;}
.y43_c00442{bottom:509.760000px;}
.y42_c00442{bottom:510.480000px;}
.y3e_c00442{bottom:511.200000px;}
.y41_c00442{bottom:511.920000px;}
.y3f_c00442{bottom:512.640000px;}
.y3d_c00442{bottom:551.520000px;}
.y3c_c00442{bottom:555.840000px;}
.y38_c00442{bottom:584.640000px;}
.y39_c00442{bottom:585.360000px;}
.y3b_c00442{bottom:586.080000px;}
.y36_c00442{bottom:586.800000px;}
.y3a_c00442{bottom:588.240000px;}
.y37_c00442{bottom:588.960000px;}
.y33_c00442{bottom:627.840000px;}
.y34_c00442{bottom:628.560000px;}
.y31_c00442{bottom:629.280000px;}
.y35_c00442{bottom:630.720000px;}
.y32_c00442{bottom:631.440000px;}
.y2f_c00442{bottom:670.320000px;}
.y30_c00442{bottom:671.760000px;}
.y2c_c00442{bottom:672.480000px;}
.y2e_c00442{bottom:673.920000px;}
.y2d_c00442{bottom:674.640000px;}
.y29_c00442{bottom:712.800000px;}
.y2a_c00442{bottom:714.240000px;}
.y27_c00442{bottom:714.960000px;}
.y2b_c00442{bottom:716.400000px;}
.y28_c00442{bottom:717.120000px;}
.y23_c00442{bottom:755.280000px;}
.y24_c00442{bottom:756.000000px;}
.y25_c00442{bottom:756.720000px;}
.y21_c00442{bottom:757.440000px;}
.y26_c00442{bottom:758.880000px;}
.y22_c00442{bottom:759.600000px;}
.y20_c00442{bottom:798.480000px;}
.y1e_c00442{bottom:799.920000px;}
.y1f_c00442{bottom:802.080000px;}
.y1b_c00442{bottom:840.960000px;}
.y1c_c00442{bottom:842.400000px;}
.y19_c00442{bottom:843.120000px;}
.y1d_c00442{bottom:843.840000px;}
.y1a_c00442{bottom:845.280000px;}
.y16_c00442{bottom:884.160000px;}
.y18_c00442{bottom:884.880000px;}
.y17_c00442{bottom:885.600000px;}
.y14_c00442{bottom:886.320000px;}
.y15_c00442{bottom:888.480000px;}
.y11_c00442{bottom:926.640000px;}
.y13_c00442{bottom:927.360000px;}
.ye_c00442{bottom:928.080000px;}
.y12_c00442{bottom:929.520000px;}
.y10_c00442{bottom:930.240000px;}
.yf_c00442{bottom:930.960000px;}
.ya_c00442{bottom:969.120000px;}
.yd_c00442{bottom:969.840000px;}
.yc_c00442{bottom:970.560000px;}
.y9_c00442{bottom:971.280000px;}
.yb_c00442{bottom:973.440000px;}
.y5_c00442{bottom:1012.320000px;}
.y8_c00442{bottom:1013.040000px;}
.y4_c00442{bottom:1013.760000px;}
.y6_c00442{bottom:1015.920000px;}
.y7_c00442{bottom:1016.640000px;}
.y2_c00442{bottom:1056.240000px;}
.y3_c00442{bottom:1057.680000px;}
.y1_c00442{bottom:1093.680000px;}
.hb_c00442{height:31.100625px;}
.hf_c00442{height:38.875781px;}
.h4_c00442{height:41.467500px;}
.h8_c00442{height:44.059219px;}
.h7_c00442{height:46.650937px;}
.h5_c00442{height:49.242656px;}
.ha_c00442{height:51.834375px;}
.hc_c00442{height:54.426094px;}
.he_c00442{height:55.290937px;}
.h3_c00442{height:57.017812px;}
.h6_c00442{height:59.609531px;}
.hd_c00442{height:62.201250px;}
.h9_c00442{height:64.792969px;}
.h2_c00442{height:67.384687px;}
.h10_c00442{height:69.976406px;}
.h1_c00442{height:1166.250000px;}
.h0_c00442{height:1166.400000px;}
.w1_c00442{width:784.500000px;}
.w0_c00442{width:784.800000px;}
.x0_c00442{left:0.000000px;}
.x5_c00442{left:43.920000px;}
.x2b_c00442{left:45.360000px;}
.x2_c00442{left:97.200000px;}
.x19_c00442{left:118.080000px;}
.x6_c00442{left:119.520000px;}
.x15_c00442{left:162.000000px;}
.x1a_c00442{left:163.440000px;}
.x3_c00442{left:172.800000px;}
.x1d_c00442{left:196.560000px;}
.x7_c00442{left:205.920000px;}
.x18_c00442{left:216.000000px;}
.x4_c00442{left:228.960000px;}
.x8_c00442{left:259.920000px;}
.x11_c00442{left:261.360000px;}
.x1e_c00442{left:270.000000px;}
.x22_c00442{left:271.440000px;}
.x12_c00442{left:303.120000px;}
.x1f_c00442{left:325.440000px;}
.x9_c00442{left:346.320000px;}
.x13_c00442{left:357.120000px;}
.x27_c00442{left:367.920000px;}
.xa_c00442{left:401.040000px;}
.x20_c00442{left:410.400000px;}
.x28_c00442{left:422.640000px;}
.xb_c00442{left:443.520000px;}
.x21_c00442{left:454.320000px;}
.xc_c00442{left:520.560000px;}
.x2a_c00442{left:531.360000px;}
.x1b_c00442{left:552.960000px;}
.x16_c00442{left:573.120000px;}
.x14_c00442{left:574.560000px;}
.x29_c00442{left:589.680000px;}
.x23_c00442{left:596.160000px;}
.xd_c00442{left:606.960000px;}
.x24_c00442{left:629.280000px;}
.x1c_c00442{left:630.720000px;}
.xe_c00442{left:640.080000px;}
.x1_c00442{left:661.680000px;}
.x25_c00442{left:673.200000px;}
.x17_c00442{left:682.560000px;}
.xf_c00442{left:684.000000px;}
.x26_c00442{left:693.360000px;}
.x10_c00442{left:704.160000px;}
@media print{
.v0_c00442{vertical-align:0.000000pt;}
.v2_c00442{vertical-align:5.120000pt;}
.v1_c00442{vertical-align:7.680000pt;}
.ls0_c00442{letter-spacing:0.000000pt;}
.ws1_c00442{word-spacing:-1.095253pt;}
.ws3_c00442{word-spacing:0.000000pt;}
.ws0_c00442{word-spacing:167.010133pt;}
.ws2_c00442{word-spacing:522.341333pt;}
.fs9_c00442{font-size:30.720000pt;}
.fsc_c00442{font-size:38.400000pt;}
.fs2_c00442{font-size:40.960000pt;}
.fs6_c00442{font-size:43.520000pt;}
.fs5_c00442{font-size:46.080000pt;}
.fs3_c00442{font-size:48.640000pt;}
.fs8_c00442{font-size:51.200000pt;}
.fsa_c00442{font-size:53.760000pt;}
.fs1_c00442{font-size:56.320000pt;}
.fs4_c00442{font-size:58.880000pt;}
.fsb_c00442{font-size:61.440000pt;}
.fs7_c00442{font-size:64.000000pt;}
.fs0_c00442{font-size:66.560000pt;}
.fsd_c00442{font-size:69.120000pt;}
.y0_c00442{bottom:0.000000pt;}
.y78_c00442{bottom:31.360000pt;}
.y7c_c00442{bottom:32.640000pt;}
.y7b_c00442{bottom:33.280000pt;}
.y7a_c00442{bottom:34.560000pt;}
.y77_c00442{bottom:35.200000pt;}
.y79_c00442{bottom:35.840000pt;}
.y73_c00442{bottom:70.400000pt;}
.y76_c00442{bottom:71.040000pt;}
.y75_c00442{bottom:71.680000pt;}
.y72_c00442{bottom:72.320000pt;}
.y74_c00442{bottom:74.240000pt;}
.y6e_c00442{bottom:108.160000pt;}
.y71_c00442{bottom:109.440000pt;}
.y6d_c00442{bottom:110.080000pt;}
.y70_c00442{bottom:110.720000pt;}
.y6f_c00442{bottom:112.000000pt;}
.y69_c00442{bottom:146.560000pt;}
.y6c_c00442{bottom:147.840000pt;}
.y6b_c00442{bottom:148.480000pt;}
.y68_c00442{bottom:149.760000pt;}
.y6a_c00442{bottom:151.040000pt;}
.y64_c00442{bottom:184.960000pt;}
.y67_c00442{bottom:185.600000pt;}
.y66_c00442{bottom:186.240000pt;}
.y63_c00442{bottom:188.160000pt;}
.y65_c00442{bottom:188.800000pt;}
.y5f_c00442{bottom:222.720000pt;}
.y62_c00442{bottom:224.000000pt;}
.y61_c00442{bottom:224.640000pt;}
.y5e_c00442{bottom:225.920000pt;}
.y60_c00442{bottom:226.560000pt;}
.y59_c00442{bottom:260.480000pt;}
.y5a_c00442{bottom:261.120000pt;}
.y5c_c00442{bottom:261.760000pt;}
.y5b_c00442{bottom:262.400000pt;}
.y5d_c00442{bottom:263.040000pt;}
.y57_c00442{bottom:263.680000pt;}
.y58_c00442{bottom:264.320000pt;}
.y56_c00442{bottom:298.880000pt;}
.y54_c00442{bottom:300.800000pt;}
.y53_c00442{bottom:301.440000pt;}
.y55_c00442{bottom:302.080000pt;}
.y4f_c00442{bottom:337.280000pt;}
.y52_c00442{bottom:337.920000pt;}
.y4e_c00442{bottom:339.840000pt;}
.y50_c00442{bottom:340.480000pt;}
.y51_c00442{bottom:341.120000pt;}
.y4b_c00442{bottom:375.040000pt;}
.y4d_c00442{bottom:376.960000pt;}
.y4c_c00442{bottom:377.600000pt;}
.y4a_c00442{bottom:378.240000pt;}
.y45_c00442{bottom:413.440000pt;}
.y47_c00442{bottom:414.720000pt;}
.y48_c00442{bottom:415.360000pt;}
.y44_c00442{bottom:416.000000pt;}
.y46_c00442{bottom:417.280000pt;}
.y49_c00442{bottom:417.920000pt;}
.y40_c00442{bottom:452.480000pt;}
.y43_c00442{bottom:453.120000pt;}
.y42_c00442{bottom:453.760000pt;}
.y3e_c00442{bottom:454.400000pt;}
.y41_c00442{bottom:455.040000pt;}
.y3f_c00442{bottom:455.680000pt;}
.y3d_c00442{bottom:490.240000pt;}
.y3c_c00442{bottom:494.080000pt;}
.y38_c00442{bottom:519.680000pt;}
.y39_c00442{bottom:520.320000pt;}
.y3b_c00442{bottom:520.960000pt;}
.y36_c00442{bottom:521.600000pt;}
.y3a_c00442{bottom:522.880000pt;}
.y37_c00442{bottom:523.520000pt;}
.y33_c00442{bottom:558.080000pt;}
.y34_c00442{bottom:558.720000pt;}
.y31_c00442{bottom:559.360000pt;}
.y35_c00442{bottom:560.640000pt;}
.y32_c00442{bottom:561.280000pt;}
.y2f_c00442{bottom:595.840000pt;}
.y30_c00442{bottom:597.120000pt;}
.y2c_c00442{bottom:597.760000pt;}
.y2e_c00442{bottom:599.040000pt;}
.y2d_c00442{bottom:599.680000pt;}
.y29_c00442{bottom:633.600000pt;}
.y2a_c00442{bottom:634.880000pt;}
.y27_c00442{bottom:635.520000pt;}
.y2b_c00442{bottom:636.800000pt;}
.y28_c00442{bottom:637.440000pt;}
.y23_c00442{bottom:671.360000pt;}
.y24_c00442{bottom:672.000000pt;}
.y25_c00442{bottom:672.640000pt;}
.y21_c00442{bottom:673.280000pt;}
.y26_c00442{bottom:674.560000pt;}
.y22_c00442{bottom:675.200000pt;}
.y20_c00442{bottom:709.760000pt;}
.y1e_c00442{bottom:711.040000pt;}
.y1f_c00442{bottom:712.960000pt;}
.y1b_c00442{bottom:747.520000pt;}
.y1c_c00442{bottom:748.800000pt;}
.y19_c00442{bottom:749.440000pt;}
.y1d_c00442{bottom:750.080000pt;}
.y1a_c00442{bottom:751.360000pt;}
.y16_c00442{bottom:785.920000pt;}
.y18_c00442{bottom:786.560000pt;}
.y17_c00442{bottom:787.200000pt;}
.y14_c00442{bottom:787.840000pt;}
.y15_c00442{bottom:789.760000pt;}
.y11_c00442{bottom:823.680000pt;}
.y13_c00442{bottom:824.320000pt;}
.ye_c00442{bottom:824.960000pt;}
.y12_c00442{bottom:826.240000pt;}
.y10_c00442{bottom:826.880000pt;}
.yf_c00442{bottom:827.520000pt;}
.ya_c00442{bottom:861.440000pt;}
.yd_c00442{bottom:862.080000pt;}
.yc_c00442{bottom:862.720000pt;}
.y9_c00442{bottom:863.360000pt;}
.yb_c00442{bottom:865.280000pt;}
.y5_c00442{bottom:899.840000pt;}
.y8_c00442{bottom:900.480000pt;}
.y4_c00442{bottom:901.120000pt;}
.y6_c00442{bottom:903.040000pt;}
.y7_c00442{bottom:903.680000pt;}
.y2_c00442{bottom:938.880000pt;}
.y3_c00442{bottom:940.160000pt;}
.y1_c00442{bottom:972.160000pt;}
.hb_c00442{height:27.645000pt;}
.hf_c00442{height:34.556250pt;}
.h4_c00442{height:36.860000pt;}
.h8_c00442{height:39.163750pt;}
.h7_c00442{height:41.467500pt;}
.h5_c00442{height:43.771250pt;}
.ha_c00442{height:46.075000pt;}
.hc_c00442{height:48.378750pt;}
.he_c00442{height:49.147500pt;}
.h3_c00442{height:50.682500pt;}
.h6_c00442{height:52.986250pt;}
.hd_c00442{height:55.290000pt;}
.h9_c00442{height:57.593750pt;}
.h2_c00442{height:59.897500pt;}
.h10_c00442{height:62.201250pt;}
.h1_c00442{height:1036.666667pt;}
.h0_c00442{height:1036.800000pt;}
.w1_c00442{width:697.333333pt;}
.w0_c00442{width:697.600000pt;}
.x0_c00442{left:0.000000pt;}
.x5_c00442{left:39.040000pt;}
.x2b_c00442{left:40.320000pt;}
.x2_c00442{left:86.400000pt;}
.x19_c00442{left:104.960000pt;}
.x6_c00442{left:106.240000pt;}
.x15_c00442{left:144.000000pt;}
.x1a_c00442{left:145.280000pt;}
.x3_c00442{left:153.600000pt;}
.x1d_c00442{left:174.720000pt;}
.x7_c00442{left:183.040000pt;}
.x18_c00442{left:192.000000pt;}
.x4_c00442{left:203.520000pt;}
.x8_c00442{left:231.040000pt;}
.x11_c00442{left:232.320000pt;}
.x1e_c00442{left:240.000000pt;}
.x22_c00442{left:241.280000pt;}
.x12_c00442{left:269.440000pt;}
.x1f_c00442{left:289.280000pt;}
.x9_c00442{left:307.840000pt;}
.x13_c00442{left:317.440000pt;}
.x27_c00442{left:327.040000pt;}
.xa_c00442{left:356.480000pt;}
.x20_c00442{left:364.800000pt;}
.x28_c00442{left:375.680000pt;}
.xb_c00442{left:394.240000pt;}
.x21_c00442{left:403.840000pt;}
.xc_c00442{left:462.720000pt;}
.x2a_c00442{left:472.320000pt;}
.x1b_c00442{left:491.520000pt;}
.x16_c00442{left:509.440000pt;}
.x14_c00442{left:510.720000pt;}
.x29_c00442{left:524.160000pt;}
.x23_c00442{left:529.920000pt;}
.xd_c00442{left:539.520000pt;}
.x24_c00442{left:559.360000pt;}
.x1c_c00442{left:560.640000pt;}
.xe_c00442{left:568.960000pt;}
.x1_c00442{left:588.160000pt;}
.x25_c00442{left:598.400000pt;}
.x17_c00442{left:606.720000pt;}
.xf_c00442{left:608.000000pt;}
.x26_c00442{left:616.320000pt;}
.x10_c00442{left:625.920000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a3329c8d3364ca8a581d6169.woff2')format("woff");}.ff1_c00443{font-family:ff1_c00443;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00443{transform:matrix(0.014325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014325,0.000000,0.000000,0.250000,0,0);}
.m2_c00443{transform:matrix(0.066700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066700,0.000000,0.000000,0.250000,0,0);}
.m1_c00443{transform:matrix(0.069250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00443{transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);}
.m2b_c00443{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);}
.m28_c00443{transform:matrix(0.227325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227325,0.000000,0.000000,0.250000,0,0);}
.m41_c00443{transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);}
.me_c00443{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m3d_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);}
.m5_c00443{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);}
.m48_c00443{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.mc_c00443{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);}
.m32_c00443{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00443{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00443{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m36_c00443{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m18_c00443{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);}
.m4e_c00443{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m14_c00443{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00443{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m6_c00443{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m8_c00443{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m4_c00443{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m23_c00443{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00443{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.md_c00443{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m12_c00443{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m10_c00443{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m40_c00443{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m17_c00443{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m43_c00443{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m20_c00443{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.ma_c00443{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00443{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m29_c00443{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m11_c00443{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00443{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mb_c00443{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00443{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m34_c00443{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m7_c00443{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m47_c00443{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.mf_c00443{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00443{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m30_c00443{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m38_c00443{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00443{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);}
.m1c_c00443{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00443{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m9_c00443{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m44_c00443{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m31_c00443{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);}
.m16_c00443{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m3_c00443{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m22_c00443{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00443{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);}
.m25_c00443{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);}
.m45_c00443{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);}
.m13_c00443{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00443{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m21_c00443{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);}
.m26_c00443{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m35_c00443{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m33_c00443{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m15_c00443{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);}
.m49_c00443{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00443{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00443{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m37_c00443{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m39_c00443{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m42_c00443{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m19_c00443{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);}
.m27_c00443{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00443{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m46_c00443{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00443{transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00443{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00443{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.m24_c00443{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.v1_c00443{vertical-align:-5.760000px;}
.v0_c00443{vertical-align:0.000000px;}
.ls1_c00443{letter-spacing:0.000000px;}
.ls0_c00443{letter-spacing:164.101680px;}
.sc__c00443{text-shadow:none;}
.sc0_c00443{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00443{-webkit-text-stroke:0px transparent;}
.sc0_c00443{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00443{word-spacing:0.000000px;}
.fc0_c00443{color:transparent;}
.fsc_c00443{font-size:34.560000px;}
.fs4_c00443{font-size:46.080000px;}
.fsb_c00443{font-size:48.960000px;}
.fsa_c00443{font-size:51.840000px;}
.fs5_c00443{font-size:54.720000px;}
.fs3_c00443{font-size:57.600000px;}
.fs7_c00443{font-size:60.480000px;}
.fsd_c00443{font-size:63.360000px;}
.fs9_c00443{font-size:66.240000px;}
.fs6_c00443{font-size:69.120000px;}
.fs8_c00443{font-size:72.000000px;}
.fs1_c00443{font-size:74.880000px;}
.fs2_c00443{font-size:77.760000px;}
.fs0_c00443{font-size:181.440000px;}
.y0_c00443{bottom:0.000000px;}
.y7d_c00443{bottom:20.880000px;}
.y7e_c00443{bottom:21.600000px;}
.y7f_c00443{bottom:22.320000px;}
.y81_c00443{bottom:23.040000px;}
.y80_c00443{bottom:23.760000px;}
.y7c_c00443{bottom:24.480000px;}
.y7a_c00443{bottom:66.960000px;}
.y76_c00443{bottom:72.720000px;}
.y77_c00443{bottom:73.440000px;}
.y78_c00443{bottom:74.880000px;}
.y79_c00443{bottom:75.600000px;}
.y75_c00443{bottom:76.320000px;}
.y7b_c00443{bottom:77.040000px;}
.y73_c00443{bottom:107.280000px;}
.y6f_c00443{bottom:115.920000px;}
.y71_c00443{bottom:116.640000px;}
.y72_c00443{bottom:118.800000px;}
.y6e_c00443{bottom:119.520000px;}
.y70_c00443{bottom:120.240000px;}
.y74_c00443{bottom:120.960000px;}
.y6c_c00443{bottom:159.120000px;}
.y6a_c00443{bottom:161.280000px;}
.y6b_c00443{bottom:163.440000px;}
.y68_c00443{bottom:191.520000px;}
.y69_c00443{bottom:192.240000px;}
.y3_c00443{bottom:192.960000px;}
.y6d_c00443{bottom:193.680000px;}
.y66_c00443{bottom:194.400000px;}
.y67_c00443{bottom:196.560000px;}
.y2_c00443{bottom:231.840000px;}
.y62_c00443{bottom:235.440000px;}
.y63_c00443{bottom:237.600000px;}
.y65_c00443{bottom:238.320000px;}
.y61_c00443{bottom:239.040000px;}
.y64_c00443{bottom:239.760000px;}
.y1_c00443{bottom:251.280000px;}
.y60_c00443{bottom:278.640000px;}
.y5b_c00443{bottom:310.320000px;}
.y5c_c00443{bottom:311.040000px;}
.y5d_c00443{bottom:312.480000px;}
.y5e_c00443{bottom:313.200000px;}
.y59_c00443{bottom:313.920000px;}
.y5a_c00443{bottom:314.640000px;}
.y5f_c00443{bottom:315.360000px;}
.y57_c00443{bottom:354.240000px;}
.y58_c00443{bottom:355.680000px;}
.y52_c00443{bottom:385.920000px;}
.y53_c00443{bottom:386.640000px;}
.y54_c00443{bottom:388.080000px;}
.y55_c00443{bottom:388.800000px;}
.y50_c00443{bottom:389.520000px;}
.y51_c00443{bottom:390.240000px;}
.y56_c00443{bottom:390.960000px;}
.y4d_c00443{bottom:423.360000px;}
.y4a_c00443{bottom:429.120000px;}
.y4b_c00443{bottom:429.840000px;}
.y4c_c00443{bottom:431.280000px;}
.y48_c00443{bottom:432.000000px;}
.y49_c00443{bottom:433.440000px;}
.y47_c00443{bottom:472.320000px;}
.y46_c00443{bottom:476.640000px;}
.y43_c00443{bottom:504.720000px;}
.y45_c00443{bottom:505.440000px;}
.y4e_c00443{bottom:506.160000px;}
.y4f_c00443{bottom:506.880000px;}
.y41_c00443{bottom:507.600000px;}
.y44_c00443{bottom:508.320000px;}
.y42_c00443{bottom:509.040000px;}
.y40_c00443{bottom:547.920000px;}
.y3c_c00443{bottom:578.880000px;}
.y3d_c00443{bottom:579.600000px;}
.y3f_c00443{bottom:581.040000px;}
.y3a_c00443{bottom:581.760000px;}
.y3e_c00443{bottom:583.200000px;}
.y3b_c00443{bottom:583.920000px;}
.y38_c00443{bottom:615.600000px;}
.y35_c00443{bottom:622.080000px;}
.y36_c00443{bottom:623.520000px;}
.y39_c00443{bottom:624.240000px;}
.y37_c00443{bottom:625.680000px;}
.y34_c00443{bottom:626.400000px;}
.y2f_c00443{bottom:665.280000px;}
.y32_c00443{bottom:666.720000px;}
.y2e_c00443{bottom:667.440000px;}
.y33_c00443{bottom:668.160000px;}
.y31_c00443{bottom:668.880000px;}
.y30_c00443{bottom:669.600000px;}
.y29_c00443{bottom:707.760000px;}
.y2a_c00443{bottom:709.200000px;}
.y2d_c00443{bottom:709.920000px;}
.y28_c00443{bottom:710.640000px;}
.y2b_c00443{bottom:712.080000px;}
.y2c_c00443{bottom:712.800000px;}
.y26_c00443{bottom:751.680000px;}
.y25_c00443{bottom:753.120000px;}
.y27_c00443{bottom:755.280000px;}
.y22_c00443{bottom:794.880000px;}
.y24_c00443{bottom:796.320000px;}
.y21_c00443{bottom:797.760000px;}
.y23_c00443{bottom:798.480000px;}
.y1c_c00443{bottom:837.360000px;}
.y1e_c00443{bottom:839.520000px;}
.y1b_c00443{bottom:840.240000px;}
.y20_c00443{bottom:840.960000px;}
.y1d_c00443{bottom:841.680000px;}
.y1f_c00443{bottom:842.400000px;}
.y17_c00443{bottom:880.560000px;}
.y1a_c00443{bottom:882.000000px;}
.y16_c00443{bottom:883.440000px;}
.y19_c00443{bottom:884.160000px;}
.y18_c00443{bottom:884.880000px;}
.y13_c00443{bottom:923.040000px;}
.y15_c00443{bottom:924.480000px;}
.y12_c00443{bottom:925.200000px;}
.y14_c00443{bottom:927.360000px;}
.yf_c00443{bottom:966.960000px;}
.y11_c00443{bottom:967.680000px;}
.ye_c00443{bottom:969.840000px;}
.y10_c00443{bottom:970.560000px;}
.ya_c00443{bottom:1009.440000px;}
.yd_c00443{bottom:1010.160000px;}
.yc_c00443{bottom:1010.880000px;}
.y9_c00443{bottom:1011.600000px;}
.yb_c00443{bottom:1013.040000px;}
.y5_c00443{bottom:1051.920000px;}
.y8_c00443{bottom:1052.640000px;}
.y7_c00443{bottom:1054.080000px;}
.y4_c00443{bottom:1055.520000px;}
.y6_c00443{bottom:1056.240000px;}
.he_c00443{height:31.100625px;}
.h6_c00443{height:41.467500px;}
.hd_c00443{height:44.059219px;}
.hc_c00443{height:46.650937px;}
.h7_c00443{height:49.242656px;}
.h5_c00443{height:51.834375px;}
.h9_c00443{height:54.426094px;}
.hf_c00443{height:57.017812px;}
.hb_c00443{height:59.609531px;}
.h8_c00443{height:62.201250px;}
.ha_c00443{height:64.792969px;}
.h3_c00443{height:67.384687px;}
.h4_c00443{height:69.976406px;}
.h2_c00443{height:163.278281px;}
.h1_c00443{height:1164.750000px;}
.h0_c00443{height:1164.960000px;}
.w0_c00443{width:782.640000px;}
.w1_c00443{width:783.000000px;}
.x0_c00443{left:0.000000px;}
.x3_c00443{left:44.640000px;}
.x29_c00443{left:46.080000px;}
.x4_c00443{left:118.800000px;}
.x20_c00443{left:120.960000px;}
.x18_c00443{left:163.440000px;}
.x26_c00443{left:172.800000px;}
.x23_c00443{left:207.360000px;}
.x21_c00443{left:216.720000px;}
.x24_c00443{left:250.560000px;}
.x1f_c00443{left:260.640000px;}
.x11_c00443{left:271.440000px;}
.x2a_c00443{left:282.960000px;}
.x19_c00443{left:314.640000px;}
.x13_c00443{left:324.720000px;}
.x12_c00443{left:326.160000px;}
.x1b_c00443{left:336.960000px;}
.x14_c00443{left:370.080000px;}
.x1c_c00443{left:390.240000px;}
.x1a_c00443{left:411.120000px;}
.x15_c00443{left:414.000000px;}
.x1d_c00443{left:434.160000px;}
.x2b_c00443{left:444.960000px;}
.x16_c00443{left:455.760000px;}
.x1e_c00443{left:467.280000px;}
.x28_c00443{left:469.440000px;}
.x17_c00443{left:477.360000px;}
.x27_c00443{left:488.160000px;}
.x2c_c00443{left:498.240000px;}
.x2d_c00443{left:499.680000px;}
.x10_c00443{left:522.000000px;}
.x25_c00443{left:531.360000px;}
.x5_c00443{left:532.800000px;}
.x6_c00443{left:552.960000px;}
.xa_c00443{left:554.400000px;}
.xf_c00443{left:565.200000px;}
.x7_c00443{left:574.560000px;}
.xe_c00443{left:607.680000px;}
.xc_c00443{left:609.120000px;}
.x8_c00443{left:641.520000px;}
.x22_c00443{left:673.920000px;}
.xb_c00443{left:683.280000px;}
.x9_c00443{left:684.720000px;}
.xd_c00443{left:704.880000px;}
.x2_c00443{left:778.320000px;}
.x1_c00443{left:781.200000px;}
@media print{
.v1_c00443{vertical-align:-5.120000pt;}
.v0_c00443{vertical-align:0.000000pt;}
.ls1_c00443{letter-spacing:0.000000pt;}
.ls0_c00443{letter-spacing:145.868160pt;}
.ws0_c00443{word-spacing:0.000000pt;}
.fsc_c00443{font-size:30.720000pt;}
.fs4_c00443{font-size:40.960000pt;}
.fsb_c00443{font-size:43.520000pt;}
.fsa_c00443{font-size:46.080000pt;}
.fs5_c00443{font-size:48.640000pt;}
.fs3_c00443{font-size:51.200000pt;}
.fs7_c00443{font-size:53.760000pt;}
.fsd_c00443{font-size:56.320000pt;}
.fs9_c00443{font-size:58.880000pt;}
.fs6_c00443{font-size:61.440000pt;}
.fs8_c00443{font-size:64.000000pt;}
.fs1_c00443{font-size:66.560000pt;}
.fs2_c00443{font-size:69.120000pt;}
.fs0_c00443{font-size:161.280000pt;}
.y0_c00443{bottom:0.000000pt;}
.y7d_c00443{bottom:18.560000pt;}
.y7e_c00443{bottom:19.200000pt;}
.y7f_c00443{bottom:19.840000pt;}
.y81_c00443{bottom:20.480000pt;}
.y80_c00443{bottom:21.120000pt;}
.y7c_c00443{bottom:21.760000pt;}
.y7a_c00443{bottom:59.520000pt;}
.y76_c00443{bottom:64.640000pt;}
.y77_c00443{bottom:65.280000pt;}
.y78_c00443{bottom:66.560000pt;}
.y79_c00443{bottom:67.200000pt;}
.y75_c00443{bottom:67.840000pt;}
.y7b_c00443{bottom:68.480000pt;}
.y73_c00443{bottom:95.360000pt;}
.y6f_c00443{bottom:103.040000pt;}
.y71_c00443{bottom:103.680000pt;}
.y72_c00443{bottom:105.600000pt;}
.y6e_c00443{bottom:106.240000pt;}
.y70_c00443{bottom:106.880000pt;}
.y74_c00443{bottom:107.520000pt;}
.y6c_c00443{bottom:141.440000pt;}
.y6a_c00443{bottom:143.360000pt;}
.y6b_c00443{bottom:145.280000pt;}
.y68_c00443{bottom:170.240000pt;}
.y69_c00443{bottom:170.880000pt;}
.y3_c00443{bottom:171.520000pt;}
.y6d_c00443{bottom:172.160000pt;}
.y66_c00443{bottom:172.800000pt;}
.y67_c00443{bottom:174.720000pt;}
.y2_c00443{bottom:206.080000pt;}
.y62_c00443{bottom:209.280000pt;}
.y63_c00443{bottom:211.200000pt;}
.y65_c00443{bottom:211.840000pt;}
.y61_c00443{bottom:212.480000pt;}
.y64_c00443{bottom:213.120000pt;}
.y1_c00443{bottom:223.360000pt;}
.y60_c00443{bottom:247.680000pt;}
.y5b_c00443{bottom:275.840000pt;}
.y5c_c00443{bottom:276.480000pt;}
.y5d_c00443{bottom:277.760000pt;}
.y5e_c00443{bottom:278.400000pt;}
.y59_c00443{bottom:279.040000pt;}
.y5a_c00443{bottom:279.680000pt;}
.y5f_c00443{bottom:280.320000pt;}
.y57_c00443{bottom:314.880000pt;}
.y58_c00443{bottom:316.160000pt;}
.y52_c00443{bottom:343.040000pt;}
.y53_c00443{bottom:343.680000pt;}
.y54_c00443{bottom:344.960000pt;}
.y55_c00443{bottom:345.600000pt;}
.y50_c00443{bottom:346.240000pt;}
.y51_c00443{bottom:346.880000pt;}
.y56_c00443{bottom:347.520000pt;}
.y4d_c00443{bottom:376.320000pt;}
.y4a_c00443{bottom:381.440000pt;}
.y4b_c00443{bottom:382.080000pt;}
.y4c_c00443{bottom:383.360000pt;}
.y48_c00443{bottom:384.000000pt;}
.y49_c00443{bottom:385.280000pt;}
.y47_c00443{bottom:419.840000pt;}
.y46_c00443{bottom:423.680000pt;}
.y43_c00443{bottom:448.640000pt;}
.y45_c00443{bottom:449.280000pt;}
.y4e_c00443{bottom:449.920000pt;}
.y4f_c00443{bottom:450.560000pt;}
.y41_c00443{bottom:451.200000pt;}
.y44_c00443{bottom:451.840000pt;}
.y42_c00443{bottom:452.480000pt;}
.y40_c00443{bottom:487.040000pt;}
.y3c_c00443{bottom:514.560000pt;}
.y3d_c00443{bottom:515.200000pt;}
.y3f_c00443{bottom:516.480000pt;}
.y3a_c00443{bottom:517.120000pt;}
.y3e_c00443{bottom:518.400000pt;}
.y3b_c00443{bottom:519.040000pt;}
.y38_c00443{bottom:547.200000pt;}
.y35_c00443{bottom:552.960000pt;}
.y36_c00443{bottom:554.240000pt;}
.y39_c00443{bottom:554.880000pt;}
.y37_c00443{bottom:556.160000pt;}
.y34_c00443{bottom:556.800000pt;}
.y2f_c00443{bottom:591.360000pt;}
.y32_c00443{bottom:592.640000pt;}
.y2e_c00443{bottom:593.280000pt;}
.y33_c00443{bottom:593.920000pt;}
.y31_c00443{bottom:594.560000pt;}
.y30_c00443{bottom:595.200000pt;}
.y29_c00443{bottom:629.120000pt;}
.y2a_c00443{bottom:630.400000pt;}
.y2d_c00443{bottom:631.040000pt;}
.y28_c00443{bottom:631.680000pt;}
.y2b_c00443{bottom:632.960000pt;}
.y2c_c00443{bottom:633.600000pt;}
.y26_c00443{bottom:668.160000pt;}
.y25_c00443{bottom:669.440000pt;}
.y27_c00443{bottom:671.360000pt;}
.y22_c00443{bottom:706.560000pt;}
.y24_c00443{bottom:707.840000pt;}
.y21_c00443{bottom:709.120000pt;}
.y23_c00443{bottom:709.760000pt;}
.y1c_c00443{bottom:744.320000pt;}
.y1e_c00443{bottom:746.240000pt;}
.y1b_c00443{bottom:746.880000pt;}
.y20_c00443{bottom:747.520000pt;}
.y1d_c00443{bottom:748.160000pt;}
.y1f_c00443{bottom:748.800000pt;}
.y17_c00443{bottom:782.720000pt;}
.y1a_c00443{bottom:784.000000pt;}
.y16_c00443{bottom:785.280000pt;}
.y19_c00443{bottom:785.920000pt;}
.y18_c00443{bottom:786.560000pt;}
.y13_c00443{bottom:820.480000pt;}
.y15_c00443{bottom:821.760000pt;}
.y12_c00443{bottom:822.400000pt;}
.y14_c00443{bottom:824.320000pt;}
.yf_c00443{bottom:859.520000pt;}
.y11_c00443{bottom:860.160000pt;}
.ye_c00443{bottom:862.080000pt;}
.y10_c00443{bottom:862.720000pt;}
.ya_c00443{bottom:897.280000pt;}
.yd_c00443{bottom:897.920000pt;}
.yc_c00443{bottom:898.560000pt;}
.y9_c00443{bottom:899.200000pt;}
.yb_c00443{bottom:900.480000pt;}
.y5_c00443{bottom:935.040000pt;}
.y8_c00443{bottom:935.680000pt;}
.y7_c00443{bottom:936.960000pt;}
.y4_c00443{bottom:938.240000pt;}
.y6_c00443{bottom:938.880000pt;}
.he_c00443{height:27.645000pt;}
.h6_c00443{height:36.860000pt;}
.hd_c00443{height:39.163750pt;}
.hc_c00443{height:41.467500pt;}
.h7_c00443{height:43.771250pt;}
.h5_c00443{height:46.075000pt;}
.h9_c00443{height:48.378750pt;}
.hf_c00443{height:50.682500pt;}
.hb_c00443{height:52.986250pt;}
.h8_c00443{height:55.290000pt;}
.ha_c00443{height:57.593750pt;}
.h3_c00443{height:59.897500pt;}
.h4_c00443{height:62.201250pt;}
.h2_c00443{height:145.136250pt;}
.h1_c00443{height:1035.333333pt;}
.h0_c00443{height:1035.520000pt;}
.w0_c00443{width:695.680000pt;}
.w1_c00443{width:696.000000pt;}
.x0_c00443{left:0.000000pt;}
.x3_c00443{left:39.680000pt;}
.x29_c00443{left:40.960000pt;}
.x4_c00443{left:105.600000pt;}
.x20_c00443{left:107.520000pt;}
.x18_c00443{left:145.280000pt;}
.x26_c00443{left:153.600000pt;}
.x23_c00443{left:184.320000pt;}
.x21_c00443{left:192.640000pt;}
.x24_c00443{left:222.720000pt;}
.x1f_c00443{left:231.680000pt;}
.x11_c00443{left:241.280000pt;}
.x2a_c00443{left:251.520000pt;}
.x19_c00443{left:279.680000pt;}
.x13_c00443{left:288.640000pt;}
.x12_c00443{left:289.920000pt;}
.x1b_c00443{left:299.520000pt;}
.x14_c00443{left:328.960000pt;}
.x1c_c00443{left:346.880000pt;}
.x1a_c00443{left:365.440000pt;}
.x15_c00443{left:368.000000pt;}
.x1d_c00443{left:385.920000pt;}
.x2b_c00443{left:395.520000pt;}
.x16_c00443{left:405.120000pt;}
.x1e_c00443{left:415.360000pt;}
.x28_c00443{left:417.280000pt;}
.x17_c00443{left:424.320000pt;}
.x27_c00443{left:433.920000pt;}
.x2c_c00443{left:442.880000pt;}
.x2d_c00443{left:444.160000pt;}
.x10_c00443{left:464.000000pt;}
.x25_c00443{left:472.320000pt;}
.x5_c00443{left:473.600000pt;}
.x6_c00443{left:491.520000pt;}
.xa_c00443{left:492.800000pt;}
.xf_c00443{left:502.400000pt;}
.x7_c00443{left:510.720000pt;}
.xe_c00443{left:540.160000pt;}
.xc_c00443{left:541.440000pt;}
.x8_c00443{left:570.240000pt;}
.x22_c00443{left:599.040000pt;}
.xb_c00443{left:607.360000pt;}
.x9_c00443{left:608.640000pt;}
.xd_c00443{left:626.560000pt;}
.x2_c00443{left:691.840000pt;}
.x1_c00443{left:694.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a790d6af135af9eeb33f9ad0.woff2')format("woff");}.ff1_c00444{font-family:ff1_c00444;line-height:1.109863;font-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_c00444{transform:matrix(0.239175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239175,0.000000,0.000000,0.250000,0,0);}
.mc_c00444{transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);}
.m1_c00444{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m29_c00444{transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);}
.m1e_c00444{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m25_c00444{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);}
.m41_c00444{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.mb_c00444{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);}
.m2c_c00444{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m27_c00444{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m9_c00444{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_c00444{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m17_c00444{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00444{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_c00444{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m15_c00444{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.md_c00444{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_c00444{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m3_c00444{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m23_c00444{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m11_c00444{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00444{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m26_c00444{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m20_c00444{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m7_c00444{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m43_c00444{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m30_c00444{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m18_c00444{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m10_c00444{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00444{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m19_c00444{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m16_c00444{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00444{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m38_c00444{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m6_c00444{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m4_c00444{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_c00444{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m37_c00444{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);}
.m35_c00444{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m24_c00444{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m13_c00444{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);}
.m31_c00444{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m28_c00444{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);}
.m0_c00444{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m33_c00444{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);}
.me_c00444{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00444{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.ma_c00444{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00444{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m42_c00444{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m34_c00444{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00444{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00444{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);}
.m3e_c00444{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m5_c00444{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m39_c00444{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m8_c00444{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m36_c00444{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);}
.m2e_c00444{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00444{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m22_c00444{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00444{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);}
.m21_c00444{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m2_c00444{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m32_c00444{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00444{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m40_c00444{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.m12_c00444{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.v1_c00444{vertical-align:-5.760000px;}
.v0_c00444{vertical-align:0.000000px;}
.v2_c00444{vertical-align:11.520000px;}
.ls1_c00444{letter-spacing:0.000000px;}
.ls0_c00444{letter-spacing:52.651680px;}
.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;}
}
.ws3_c00444{word-spacing:0.000000px;}
.ws1_c00444{word-spacing:3.734880px;}
.ws2_c00444{word-spacing:12.615860px;}
.ws0_c00444{word-spacing:13.463637px;}
.fc0_c00444{color:transparent;}
.fsc_c00444{font-size:34.560000px;}
.fs5_c00444{font-size:40.320000px;}
.fsd_c00444{font-size:43.200000px;}
.fs4_c00444{font-size:46.080000px;}
.fs2_c00444{font-size:48.960000px;}
.fs9_c00444{font-size:51.840000px;}
.fs7_c00444{font-size:54.720000px;}
.fs6_c00444{font-size:57.600000px;}
.fs0_c00444{font-size:60.480000px;}
.fsb_c00444{font-size:63.360000px;}
.fsa_c00444{font-size:66.240000px;}
.fs3_c00444{font-size:69.120000px;}
.fs1_c00444{font-size:72.000000px;}
.fs8_c00444{font-size:74.880000px;}
.y0_c00444{bottom:0.000000px;}
.y82_c00444{bottom:15.840000px;}
.y84_c00444{bottom:16.560000px;}
.y83_c00444{bottom:19.440000px;}
.y7f_c00444{bottom:46.800000px;}
.y81_c00444{bottom:47.520000px;}
.y7d_c00444{bottom:48.240000px;}
.y80_c00444{bottom:48.960000px;}
.y7e_c00444{bottom:49.680000px;}
.y7b_c00444{bottom:90.000000px;}
.y7c_c00444{bottom:92.160000px;}
.y78_c00444{bottom:122.400000px;}
.y76_c00444{bottom:123.120000px;}
.y7a_c00444{bottom:123.840000px;}
.y79_c00444{bottom:124.560000px;}
.y77_c00444{bottom:125.280000px;}
.y74_c00444{bottom:165.600000px;}
.y72_c00444{bottom:167.040000px;}
.y75_c00444{bottom:167.760000px;}
.y73_c00444{bottom:168.480000px;}
.y70_c00444{bottom:208.800000px;}
.y6e_c00444{bottom:209.520000px;}
.y71_c00444{bottom:210.240000px;}
.y6f_c00444{bottom:210.960000px;}
.y92_c00444{bottom:212.400000px;}
.y6c_c00444{bottom:251.280000px;}
.y6a_c00444{bottom:252.000000px;}
.y6d_c00444{bottom:252.720000px;}
.y6b_c00444{bottom:254.160000px;}
.y91_c00444{bottom:254.880000px;}
.y69_c00444{bottom:294.480000px;}
.y67_c00444{bottom:295.200000px;}
.y90_c00444{bottom:295.920000px;}
.y68_c00444{bottom:296.640000px;}
.y8f_c00444{bottom:298.080000px;}
.y65_c00444{bottom:336.960000px;}
.y63_c00444{bottom:337.680000px;}
.y66_c00444{bottom:338.400000px;}
.y64_c00444{bottom:339.840000px;}
.y8d_c00444{bottom:340.560000px;}
.y8e_c00444{bottom:341.280000px;}
.y60_c00444{bottom:380.160000px;}
.y62_c00444{bottom:381.600000px;}
.y61_c00444{bottom:382.320000px;}
.y8c_c00444{bottom:383.040000px;}
.y5b_c00444{bottom:421.200000px;}
.y5d_c00444{bottom:422.640000px;}
.y5a_c00444{bottom:423.360000px;}
.y89_c00444{bottom:424.080000px;}
.y8a_c00444{bottom:424.800000px;}
.y5c_c00444{bottom:425.520000px;}
.y5f_c00444{bottom:426.240000px;}
.y5e_c00444{bottom:426.960000px;}
.y8b_c00444{bottom:427.680000px;}
.y55_c00444{bottom:464.400000px;}
.y57_c00444{bottom:465.120000px;}
.y53_c00444{bottom:466.560000px;}
.y59_c00444{bottom:467.280000px;}
.y56_c00444{bottom:468.000000px;}
.y54_c00444{bottom:468.720000px;}
.y58_c00444{bottom:469.440000px;}
.y52_c00444{bottom:507.600000px;}
.y2b_c00444{bottom:509.760000px;}
.y2a_c00444{bottom:510.480000px;}
.y2c_c00444{bottom:512.640000px;}
.y51_c00444{bottom:550.080000px;}
.y50_c00444{bottom:552.240000px;}
.y28_c00444{bottom:552.960000px;}
.y27_c00444{bottom:553.680000px;}
.y29_c00444{bottom:555.840000px;}
.y4e_c00444{bottom:593.280000px;}
.y4f_c00444{bottom:594.000000px;}
.y4d_c00444{bottom:595.440000px;}
.y25_c00444{bottom:596.160000px;}
.y26_c00444{bottom:596.880000px;}
.y4a_c00444{bottom:636.480000px;}
.y4c_c00444{bottom:637.920000px;}
.y49_c00444{bottom:638.640000px;}
.y23_c00444{bottom:639.360000px;}
.y4b_c00444{bottom:640.800000px;}
.y22_c00444{bottom:641.520000px;}
.y24_c00444{bottom:642.960000px;}
.y46_c00444{bottom:679.680000px;}
.y48_c00444{bottom:680.400000px;}
.y45_c00444{bottom:681.120000px;}
.y1f_c00444{bottom:682.560000px;}
.y47_c00444{bottom:683.280000px;}
.y20_c00444{bottom:684.000000px;}
.y21_c00444{bottom:685.440000px;}
.y43_c00444{bottom:722.160000px;}
.y44_c00444{bottom:723.600000px;}
.y42_c00444{bottom:724.320000px;}
.y1d_c00444{bottom:725.760000px;}
.y1e_c00444{bottom:726.480000px;}
.y1c_c00444{bottom:727.200000px;}
.y41_c00444{bottom:766.080000px;}
.y40_c00444{bottom:766.800000px;}
.y1a_c00444{bottom:767.520000px;}
.y19_c00444{bottom:770.400000px;}
.y1b_c00444{bottom:771.120000px;}
.y3f_c00444{bottom:809.280000px;}
.y3e_c00444{bottom:810.000000px;}
.y17_c00444{bottom:810.720000px;}
.y16_c00444{bottom:812.160000px;}
.y15_c00444{bottom:812.880000px;}
.y18_c00444{bottom:814.320000px;}
.y38_c00444{bottom:851.040000px;}
.y39_c00444{bottom:851.760000px;}
.y37_c00444{bottom:852.480000px;}
.y3c_c00444{bottom:853.920000px;}
.y3d_c00444{bottom:854.640000px;}
.y88_c00444{bottom:857.520000px;}
.y34_c00444{bottom:893.520000px;}
.y36_c00444{bottom:894.240000px;}
.y33_c00444{bottom:894.960000px;}
.y86_c00444{bottom:896.400000px;}
.y3b_c00444{bottom:897.120000px;}
.y35_c00444{bottom:897.840000px;}
.y3a_c00444{bottom:898.560000px;}
.y87_c00444{bottom:899.280000px;}
.y2e_c00444{bottom:936.000000px;}
.y31_c00444{bottom:937.440000px;}
.y2d_c00444{bottom:938.160000px;}
.y32_c00444{bottom:938.880000px;}
.y2f_c00444{bottom:939.600000px;}
.y30_c00444{bottom:940.320000px;}
.y85_c00444{bottom:942.480000px;}
.ya_c00444{bottom:979.200000px;}
.yc_c00444{bottom:979.920000px;}
.y9_c00444{bottom:980.640000px;}
.y13_c00444{bottom:982.080000px;}
.yb_c00444{bottom:983.520000px;}
.y14_c00444{bottom:984.960000px;}
.y7_c00444{bottom:1022.400000px;}
.y6_c00444{bottom:1024.560000px;}
.y11_c00444{bottom:1025.280000px;}
.y8_c00444{bottom:1026.000000px;}
.y12_c00444{bottom:1026.720000px;}
.y5_c00444{bottom:1058.400000px;}
.y2_c00444{bottom:1064.880000px;}
.y1_c00444{bottom:1066.320000px;}
.ye_c00444{bottom:1067.760000px;}
.yf_c00444{bottom:1068.480000px;}
.y3_c00444{bottom:1069.200000px;}
.y10_c00444{bottom:1069.920000px;}
.y4_c00444{bottom:1070.640000px;}
.yd_c00444{bottom:1126.080000px;}
.he_c00444{height:31.100625px;}
.h7_c00444{height:36.284062px;}
.hf_c00444{height:38.875781px;}
.h6_c00444{height:41.467500px;}
.h4_c00444{height:44.059219px;}
.hb_c00444{height:46.650937px;}
.h9_c00444{height:49.242656px;}
.h8_c00444{height:51.834375px;}
.h2_c00444{height:54.426094px;}
.hd_c00444{height:57.017812px;}
.hc_c00444{height:59.609531px;}
.h5_c00444{height:62.201250px;}
.h3_c00444{height:64.792969px;}
.ha_c00444{height:67.384687px;}
.h1_c00444{height:1168.500000px;}
.h0_c00444{height:1168.560000px;}
.w0_c00444{width:780.480000px;}
.w1_c00444{width:780.750000px;}
.x0_c00444{left:0.000000px;}
.x1_c00444{left:41.040000px;}
.x2d_c00444{left:42.480000px;}
.x2_c00444{left:115.920000px;}
.x32_c00444{left:117.360000px;}
.x2e_c00444{left:160.560000px;}
.x30_c00444{left:171.360000px;}
.x36_c00444{left:181.440000px;}
.x3_c00444{left:203.040000px;}
.x29_c00444{left:214.560000px;}
.x23_c00444{left:246.240000px;}
.x4_c00444{left:257.760000px;}
.x2a_c00444{left:269.280000px;}
.xa_c00444{left:278.640000px;}
.x33_c00444{left:280.080000px;}
.x24_c00444{left:300.960000px;}
.x38_c00444{left:302.400000px;}
.x28_c00444{left:311.040000px;}
.x2b_c00444{left:312.480000px;}
.xb_c00444{left:321.840000px;}
.x31_c00444{left:333.360000px;}
.x2c_c00444{left:354.960000px;}
.x2f_c00444{left:365.760000px;}
.x34_c00444{left:367.200000px;}
.xe_c00444{left:387.360000px;}
.x5_c00444{left:407.520000px;}
.x25_c00444{left:429.840000px;}
.x35_c00444{left:432.000000px;}
.xf_c00444{left:441.360000px;}
.x6_c00444{left:451.440000px;}
.x9_c00444{left:462.240000px;}
.x37_c00444{left:463.680000px;}
.x26_c00444{left:484.560000px;}
.x7_c00444{left:517.680000px;}
.x1a_c00444{left:519.120000px;}
.x1e_c00444{left:527.760000px;}
.xc_c00444{left:529.200000px;}
.x8_c00444{left:540.000000px;}
.x27_c00444{left:548.640000px;}
.xd_c00444{left:550.080000px;}
.x1f_c00444{left:551.520000px;}
.x19_c00444{left:570.960000px;}
.x11_c00444{left:594.000000px;}
.x15_c00444{left:603.360000px;}
.x1c_c00444{left:604.800000px;}
.x20_c00444{left:606.240000px;}
.x12_c00444{left:626.400000px;}
.x16_c00444{left:637.200000px;}
.x1d_c00444{left:638.640000px;}
.x13_c00444{left:668.880000px;}
.x39_c00444{left:670.320000px;}
.x1b_c00444{left:671.760000px;}
.x17_c00444{left:680.400000px;}
.x21_c00444{left:681.840000px;}
.x10_c00444{left:684.720000px;}
.x14_c00444{left:690.480000px;}
.x18_c00444{left:701.280000px;}
.x22_c00444{left:702.720000px;}
@media print{
.v1_c00444{vertical-align:-5.120000pt;}
.v0_c00444{vertical-align:0.000000pt;}
.v2_c00444{vertical-align:10.240000pt;}
.ls1_c00444{letter-spacing:0.000000pt;}
.ls0_c00444{letter-spacing:46.801493pt;}
.ws3_c00444{word-spacing:0.000000pt;}
.ws1_c00444{word-spacing:3.319893pt;}
.ws2_c00444{word-spacing:11.214098pt;}
.ws0_c00444{word-spacing:11.967677pt;}
.fsc_c00444{font-size:30.720000pt;}
.fs5_c00444{font-size:35.840000pt;}
.fsd_c00444{font-size:38.400000pt;}
.fs4_c00444{font-size:40.960000pt;}
.fs2_c00444{font-size:43.520000pt;}
.fs9_c00444{font-size:46.080000pt;}
.fs7_c00444{font-size:48.640000pt;}
.fs6_c00444{font-size:51.200000pt;}
.fs0_c00444{font-size:53.760000pt;}
.fsb_c00444{font-size:56.320000pt;}
.fsa_c00444{font-size:58.880000pt;}
.fs3_c00444{font-size:61.440000pt;}
.fs1_c00444{font-size:64.000000pt;}
.fs8_c00444{font-size:66.560000pt;}
.y0_c00444{bottom:0.000000pt;}
.y82_c00444{bottom:14.080000pt;}
.y84_c00444{bottom:14.720000pt;}
.y83_c00444{bottom:17.280000pt;}
.y7f_c00444{bottom:41.600000pt;}
.y81_c00444{bottom:42.240000pt;}
.y7d_c00444{bottom:42.880000pt;}
.y80_c00444{bottom:43.520000pt;}
.y7e_c00444{bottom:44.160000pt;}
.y7b_c00444{bottom:80.000000pt;}
.y7c_c00444{bottom:81.920000pt;}
.y78_c00444{bottom:108.800000pt;}
.y76_c00444{bottom:109.440000pt;}
.y7a_c00444{bottom:110.080000pt;}
.y79_c00444{bottom:110.720000pt;}
.y77_c00444{bottom:111.360000pt;}
.y74_c00444{bottom:147.200000pt;}
.y72_c00444{bottom:148.480000pt;}
.y75_c00444{bottom:149.120000pt;}
.y73_c00444{bottom:149.760000pt;}
.y70_c00444{bottom:185.600000pt;}
.y6e_c00444{bottom:186.240000pt;}
.y71_c00444{bottom:186.880000pt;}
.y6f_c00444{bottom:187.520000pt;}
.y92_c00444{bottom:188.800000pt;}
.y6c_c00444{bottom:223.360000pt;}
.y6a_c00444{bottom:224.000000pt;}
.y6d_c00444{bottom:224.640000pt;}
.y6b_c00444{bottom:225.920000pt;}
.y91_c00444{bottom:226.560000pt;}
.y69_c00444{bottom:261.760000pt;}
.y67_c00444{bottom:262.400000pt;}
.y90_c00444{bottom:263.040000pt;}
.y68_c00444{bottom:263.680000pt;}
.y8f_c00444{bottom:264.960000pt;}
.y65_c00444{bottom:299.520000pt;}
.y63_c00444{bottom:300.160000pt;}
.y66_c00444{bottom:300.800000pt;}
.y64_c00444{bottom:302.080000pt;}
.y8d_c00444{bottom:302.720000pt;}
.y8e_c00444{bottom:303.360000pt;}
.y60_c00444{bottom:337.920000pt;}
.y62_c00444{bottom:339.200000pt;}
.y61_c00444{bottom:339.840000pt;}
.y8c_c00444{bottom:340.480000pt;}
.y5b_c00444{bottom:374.400000pt;}
.y5d_c00444{bottom:375.680000pt;}
.y5a_c00444{bottom:376.320000pt;}
.y89_c00444{bottom:376.960000pt;}
.y8a_c00444{bottom:377.600000pt;}
.y5c_c00444{bottom:378.240000pt;}
.y5f_c00444{bottom:378.880000pt;}
.y5e_c00444{bottom:379.520000pt;}
.y8b_c00444{bottom:380.160000pt;}
.y55_c00444{bottom:412.800000pt;}
.y57_c00444{bottom:413.440000pt;}
.y53_c00444{bottom:414.720000pt;}
.y59_c00444{bottom:415.360000pt;}
.y56_c00444{bottom:416.000000pt;}
.y54_c00444{bottom:416.640000pt;}
.y58_c00444{bottom:417.280000pt;}
.y52_c00444{bottom:451.200000pt;}
.y2b_c00444{bottom:453.120000pt;}
.y2a_c00444{bottom:453.760000pt;}
.y2c_c00444{bottom:455.680000pt;}
.y51_c00444{bottom:488.960000pt;}
.y50_c00444{bottom:490.880000pt;}
.y28_c00444{bottom:491.520000pt;}
.y27_c00444{bottom:492.160000pt;}
.y29_c00444{bottom:494.080000pt;}
.y4e_c00444{bottom:527.360000pt;}
.y4f_c00444{bottom:528.000000pt;}
.y4d_c00444{bottom:529.280000pt;}
.y25_c00444{bottom:529.920000pt;}
.y26_c00444{bottom:530.560000pt;}
.y4a_c00444{bottom:565.760000pt;}
.y4c_c00444{bottom:567.040000pt;}
.y49_c00444{bottom:567.680000pt;}
.y23_c00444{bottom:568.320000pt;}
.y4b_c00444{bottom:569.600000pt;}
.y22_c00444{bottom:570.240000pt;}
.y24_c00444{bottom:571.520000pt;}
.y46_c00444{bottom:604.160000pt;}
.y48_c00444{bottom:604.800000pt;}
.y45_c00444{bottom:605.440000pt;}
.y1f_c00444{bottom:606.720000pt;}
.y47_c00444{bottom:607.360000pt;}
.y20_c00444{bottom:608.000000pt;}
.y21_c00444{bottom:609.280000pt;}
.y43_c00444{bottom:641.920000pt;}
.y44_c00444{bottom:643.200000pt;}
.y42_c00444{bottom:643.840000pt;}
.y1d_c00444{bottom:645.120000pt;}
.y1e_c00444{bottom:645.760000pt;}
.y1c_c00444{bottom:646.400000pt;}
.y41_c00444{bottom:680.960000pt;}
.y40_c00444{bottom:681.600000pt;}
.y1a_c00444{bottom:682.240000pt;}
.y19_c00444{bottom:684.800000pt;}
.y1b_c00444{bottom:685.440000pt;}
.y3f_c00444{bottom:719.360000pt;}
.y3e_c00444{bottom:720.000000pt;}
.y17_c00444{bottom:720.640000pt;}
.y16_c00444{bottom:721.920000pt;}
.y15_c00444{bottom:722.560000pt;}
.y18_c00444{bottom:723.840000pt;}
.y38_c00444{bottom:756.480000pt;}
.y39_c00444{bottom:757.120000pt;}
.y37_c00444{bottom:757.760000pt;}
.y3c_c00444{bottom:759.040000pt;}
.y3d_c00444{bottom:759.680000pt;}
.y88_c00444{bottom:762.240000pt;}
.y34_c00444{bottom:794.240000pt;}
.y36_c00444{bottom:794.880000pt;}
.y33_c00444{bottom:795.520000pt;}
.y86_c00444{bottom:796.800000pt;}
.y3b_c00444{bottom:797.440000pt;}
.y35_c00444{bottom:798.080000pt;}
.y3a_c00444{bottom:798.720000pt;}
.y87_c00444{bottom:799.360000pt;}
.y2e_c00444{bottom:832.000000pt;}
.y31_c00444{bottom:833.280000pt;}
.y2d_c00444{bottom:833.920000pt;}
.y32_c00444{bottom:834.560000pt;}
.y2f_c00444{bottom:835.200000pt;}
.y30_c00444{bottom:835.840000pt;}
.y85_c00444{bottom:837.760000pt;}
.ya_c00444{bottom:870.400000pt;}
.yc_c00444{bottom:871.040000pt;}
.y9_c00444{bottom:871.680000pt;}
.y13_c00444{bottom:872.960000pt;}
.yb_c00444{bottom:874.240000pt;}
.y14_c00444{bottom:875.520000pt;}
.y7_c00444{bottom:908.800000pt;}
.y6_c00444{bottom:910.720000pt;}
.y11_c00444{bottom:911.360000pt;}
.y8_c00444{bottom:912.000000pt;}
.y12_c00444{bottom:912.640000pt;}
.y5_c00444{bottom:940.800000pt;}
.y2_c00444{bottom:946.560000pt;}
.y1_c00444{bottom:947.840000pt;}
.ye_c00444{bottom:949.120000pt;}
.yf_c00444{bottom:949.760000pt;}
.y3_c00444{bottom:950.400000pt;}
.y10_c00444{bottom:951.040000pt;}
.y4_c00444{bottom:951.680000pt;}
.yd_c00444{bottom:1000.960000pt;}
.he_c00444{height:27.645000pt;}
.h7_c00444{height:32.252500pt;}
.hf_c00444{height:34.556250pt;}
.h6_c00444{height:36.860000pt;}
.h4_c00444{height:39.163750pt;}
.hb_c00444{height:41.467500pt;}
.h9_c00444{height:43.771250pt;}
.h8_c00444{height:46.075000pt;}
.h2_c00444{height:48.378750pt;}
.hd_c00444{height:50.682500pt;}
.hc_c00444{height:52.986250pt;}
.h5_c00444{height:55.290000pt;}
.h3_c00444{height:57.593750pt;}
.ha_c00444{height:59.897500pt;}
.h1_c00444{height:1038.666667pt;}
.h0_c00444{height:1038.720000pt;}
.w0_c00444{width:693.760000pt;}
.w1_c00444{width:694.000000pt;}
.x0_c00444{left:0.000000pt;}
.x1_c00444{left:36.480000pt;}
.x2d_c00444{left:37.760000pt;}
.x2_c00444{left:103.040000pt;}
.x32_c00444{left:104.320000pt;}
.x2e_c00444{left:142.720000pt;}
.x30_c00444{left:152.320000pt;}
.x36_c00444{left:161.280000pt;}
.x3_c00444{left:180.480000pt;}
.x29_c00444{left:190.720000pt;}
.x23_c00444{left:218.880000pt;}
.x4_c00444{left:229.120000pt;}
.x2a_c00444{left:239.360000pt;}
.xa_c00444{left:247.680000pt;}
.x33_c00444{left:248.960000pt;}
.x24_c00444{left:267.520000pt;}
.x38_c00444{left:268.800000pt;}
.x28_c00444{left:276.480000pt;}
.x2b_c00444{left:277.760000pt;}
.xb_c00444{left:286.080000pt;}
.x31_c00444{left:296.320000pt;}
.x2c_c00444{left:315.520000pt;}
.x2f_c00444{left:325.120000pt;}
.x34_c00444{left:326.400000pt;}
.xe_c00444{left:344.320000pt;}
.x5_c00444{left:362.240000pt;}
.x25_c00444{left:382.080000pt;}
.x35_c00444{left:384.000000pt;}
.xf_c00444{left:392.320000pt;}
.x6_c00444{left:401.280000pt;}
.x9_c00444{left:410.880000pt;}
.x37_c00444{left:412.160000pt;}
.x26_c00444{left:430.720000pt;}
.x7_c00444{left:460.160000pt;}
.x1a_c00444{left:461.440000pt;}
.x1e_c00444{left:469.120000pt;}
.xc_c00444{left:470.400000pt;}
.x8_c00444{left:480.000000pt;}
.x27_c00444{left:487.680000pt;}
.xd_c00444{left:488.960000pt;}
.x1f_c00444{left:490.240000pt;}
.x19_c00444{left:507.520000pt;}
.x11_c00444{left:528.000000pt;}
.x15_c00444{left:536.320000pt;}
.x1c_c00444{left:537.600000pt;}
.x20_c00444{left:538.880000pt;}
.x12_c00444{left:556.800000pt;}
.x16_c00444{left:566.400000pt;}
.x1d_c00444{left:567.680000pt;}
.x13_c00444{left:594.560000pt;}
.x39_c00444{left:595.840000pt;}
.x1b_c00444{left:597.120000pt;}
.x17_c00444{left:604.800000pt;}
.x21_c00444{left:606.080000pt;}
.x10_c00444{left:608.640000pt;}
.x14_c00444{left:613.760000pt;}
.x18_c00444{left:623.360000pt;}
.x22_c00444{left:624.640000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d29d2526cfed20bedbc989b5.woff2')format("woff");}.ff1_c00445{font-family:ff1_c00445;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m46_c00445{transform:matrix(0.162325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162325,0.000000,0.000000,0.250000,0,0);}
.m2a_c00445{transform:matrix(0.170150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170150,0.000000,0.000000,0.250000,0,0);}
.m3d_c00445{transform:matrix(0.194225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194225,0.000000,0.000000,0.250000,0,0);}
.m6_c00445{transform:matrix(0.222300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222300,0.000000,0.000000,0.250000,0,0);}
.m35_c00445{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m50_c00445{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m3a_c00445{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m4f_c00445{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00445{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_c00445{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);}
.m4e_c00445{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);}
.m47_c00445{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m11_c00445{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m41_c00445{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00445{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m27_c00445{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m7_c00445{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);}
.m37_c00445{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m19_c00445{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m34_c00445{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m12_c00445{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m44_c00445{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00445{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m9_c00445{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00445{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m13_c00445{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00445{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m48_c00445{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m20_c00445{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.ma_c00445{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00445{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00445{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m8_c00445{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.md_c00445{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m28_c00445{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m3_c00445{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m2_c00445{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00445{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);}
.m4a_c00445{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m51_c00445{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00445{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);}
.m2d_c00445{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00445{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);}
.m0_c00445{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m17_c00445{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1_c00445{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.mc_c00445{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00445{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.mf_c00445{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);}
.m36_c00445{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);}
.m39_c00445{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m33_c00445{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);}
.m24_c00445{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m38_c00445{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);}
.m15_c00445{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m5_c00445{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m31_c00445{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);}
.m26_c00445{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m10_c00445{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m23_c00445{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m21_c00445{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);}
.mb_c00445{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m40_c00445{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m43_c00445{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00445{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.me_c00445{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00445{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);}
.m22_c00445{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m16_c00445{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m42_c00445{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m29_c00445{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m45_c00445{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00445{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m4_c00445{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m18_c00445{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m49_c00445{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m30_c00445{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00445{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00445{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m32_c00445{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m14_c00445{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00445{transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);}
.v0_c00445{vertical-align:0.000000px;}
.ls0_c00445{letter-spacing:0.000000px;}
.sc__c00445{text-shadow:none;}
.sc0_c00445{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00445{-webkit-text-stroke:0px transparent;}
.sc0_c00445{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00445{word-spacing:0.000000px;}
.ws1_c00445{word-spacing:12.615860px;}
.ws0_c00445{word-spacing:14.957055px;}
.fc0_c00445{color:transparent;}
.fs8_c00445{font-size:34.560000px;}
.fs9_c00445{font-size:43.200000px;}
.fs7_c00445{font-size:46.080000px;}
.fs2_c00445{font-size:48.960000px;}
.fs5_c00445{font-size:51.840000px;}
.fs4_c00445{font-size:54.720000px;}
.fs6_c00445{font-size:57.600000px;}
.fs1_c00445{font-size:60.480000px;}
.fsc_c00445{font-size:63.360000px;}
.fsf_c00445{font-size:66.240000px;}
.fsa_c00445{font-size:69.120000px;}
.fsd_c00445{font-size:72.000000px;}
.fs0_c00445{font-size:74.880000px;}
.fsb_c00445{font-size:92.160000px;}
.fs3_c00445{font-size:95.040000px;}
.fse_c00445{font-size:100.800000px;}
.y0_c00445{bottom:0.000000px;}
.y7b_c00445{bottom:49.680000px;}
.y79_c00445{bottom:50.400000px;}
.y7d_c00445{bottom:51.840000px;}
.y7c_c00445{bottom:52.560000px;}
.y78_c00445{bottom:53.280000px;}
.y7a_c00445{bottom:54.000000px;}
.y7e_c00445{bottom:54.720000px;}
.y75_c00445{bottom:92.880000px;}
.y77_c00445{bottom:94.320000px;}
.y74_c00445{bottom:95.760000px;}
.y76_c00445{bottom:97.200000px;}
.y6f_c00445{bottom:136.080000px;}
.y71_c00445{bottom:136.800000px;}
.y72_c00445{bottom:137.520000px;}
.y6e_c00445{bottom:138.960000px;}
.y70_c00445{bottom:139.680000px;}
.y73_c00445{bottom:141.120000px;}
.y68_c00445{bottom:179.280000px;}
.y6b_c00445{bottom:180.000000px;}
.y6a_c00445{bottom:180.720000px;}
.y6d_c00445{bottom:181.440000px;}
.y67_c00445{bottom:182.160000px;}
.y69_c00445{bottom:182.880000px;}
.y6c_c00445{bottom:183.600000px;}
.y62_c00445{bottom:221.760000px;}
.y63_c00445{bottom:222.480000px;}
.y65_c00445{bottom:223.200000px;}
.y64_c00445{bottom:223.920000px;}
.y61_c00445{bottom:225.360000px;}
.y66_c00445{bottom:226.080000px;}
.y5c_c00445{bottom:264.960000px;}
.y5e_c00445{bottom:265.680000px;}
.y5f_c00445{bottom:266.400000px;}
.y5d_c00445{bottom:267.120000px;}
.y5b_c00445{bottom:268.560000px;}
.y60_c00445{bottom:269.280000px;}
.y58_c00445{bottom:307.440000px;}
.y5a_c00445{bottom:309.600000px;}
.y56_c00445{bottom:310.320000px;}
.y59_c00445{bottom:311.760000px;}
.y57_c00445{bottom:312.480000px;}
.y54_c00445{bottom:344.880000px;}
.y50_c00445{bottom:351.360000px;}
.y53_c00445{bottom:352.800000px;}
.y55_c00445{bottom:353.520000px;}
.y4f_c00445{bottom:354.240000px;}
.y51_c00445{bottom:354.960000px;}
.y52_c00445{bottom:355.680000px;}
.y4e_c00445{bottom:394.560000px;}
.y4d_c00445{bottom:396.000000px;}
.y48_c00445{bottom:426.960000px;}
.y4a_c00445{bottom:428.400000px;}
.y4c_c00445{bottom:429.120000px;}
.y47_c00445{bottom:429.840000px;}
.y49_c00445{bottom:430.560000px;}
.y4b_c00445{bottom:431.280000px;}
.y44_c00445{bottom:469.440000px;}
.y43_c00445{bottom:471.600000px;}
.y42_c00445{bottom:472.320000px;}
.y46_c00445{bottom:473.760000px;}
.y45_c00445{bottom:474.480000px;}
.y3f_c00445{bottom:506.160000px;}
.y41_c00445{bottom:514.080000px;}
.y3d_c00445{bottom:514.800000px;}
.y40_c00445{bottom:515.520000px;}
.y3e_c00445{bottom:516.960000px;}
.y3c_c00445{bottom:550.080000px;}
.y39_c00445{bottom:557.280000px;}
.y3b_c00445{bottom:558.000000px;}
.y38_c00445{bottom:560.160000px;}
.y3a_c00445{bottom:560.880000px;}
.y37_c00445{bottom:600.480000px;}
.y36_c00445{bottom:601.200000px;}
.y35_c00445{bottom:602.640000px;}
.y33_c00445{bottom:642.960000px;}
.y34_c00445{bottom:643.680000px;}
.y31_c00445{bottom:644.400000px;}
.y30_c00445{bottom:645.120000px;}
.y32_c00445{bottom:645.840000px;}
.y2e_c00445{bottom:686.160000px;}
.y2c_c00445{bottom:686.880000px;}
.y2f_c00445{bottom:688.320000px;}
.y2d_c00445{bottom:689.040000px;}
.y29_c00445{bottom:728.640000px;}
.y27_c00445{bottom:729.360000px;}
.y2b_c00445{bottom:730.080000px;}
.y2a_c00445{bottom:730.800000px;}
.y28_c00445{bottom:731.520000px;}
.y25_c00445{bottom:763.200000px;}
.y26_c00445{bottom:763.920000px;}
.y24_c00445{bottom:771.120000px;}
.y22_c00445{bottom:771.840000px;}
.y21_c00445{bottom:772.560000px;}
.y23_c00445{bottom:774.000000px;}
.y20_c00445{bottom:814.320000px;}
.y1e_c00445{bottom:815.040000px;}
.y1f_c00445{bottom:816.480000px;}
.y1a_c00445{bottom:857.520000px;}
.y1d_c00445{bottom:858.240000px;}
.y1b_c00445{bottom:859.680000px;}
.y1c_c00445{bottom:860.400000px;}
.y16_c00445{bottom:900.000000px;}
.y18_c00445{bottom:900.720000px;}
.y14_c00445{bottom:901.440000px;}
.y17_c00445{bottom:902.160000px;}
.y15_c00445{bottom:902.880000px;}
.y19_c00445{bottom:903.600000px;}
.y11_c00445{bottom:943.200000px;}
.yf_c00445{bottom:943.920000px;}
.y13_c00445{bottom:944.640000px;}
.y12_c00445{bottom:945.360000px;}
.y10_c00445{bottom:946.080000px;}
.yd_c00445{bottom:988.560000px;}
.ye_c00445{bottom:989.280000px;}
.ya_c00445{bottom:1018.800000px;}
.y9_c00445{bottom:1019.520000px;}
.yb_c00445{bottom:1020.960000px;}
.yc_c00445{bottom:1021.680000px;}
.y8_c00445{bottom:1051.200000px;}
.y5_c00445{bottom:1053.360000px;}
.y2_c00445{bottom:1062.000000px;}
.y6_c00445{bottom:1062.720000px;}
.y4_c00445{bottom:1064.160000px;}
.y3_c00445{bottom:1064.880000px;}
.y7_c00445{bottom:1065.600000px;}
.y1_c00445{bottom:1128.960000px;}
.h9_c00445{height:31.100625px;}
.ha_c00445{height:38.875781px;}
.h8_c00445{height:41.467500px;}
.h3_c00445{height:44.059219px;}
.h6_c00445{height:46.650937px;}
.h5_c00445{height:49.242656px;}
.h7_c00445{height:51.834375px;}
.h2_c00445{height:54.426094px;}
.hd_c00445{height:57.017812px;}
.h10_c00445{height:59.609531px;}
.hb_c00445{height:62.201250px;}
.he_c00445{height:64.792969px;}
.h1_c00445{height:67.384687px;}
.hc_c00445{height:82.935000px;}
.h4_c00445{height:85.526719px;}
.hf_c00445{height:90.710156px;}
.h0_c00445{height:1170.000000px;}
.w0_c00445{width:781.920000px;}
.w1_c00445{width:782.250000px;}
.x0_c00445{left:0.000000px;}
.x2_c00445{left:59.040000px;}
.x20_c00445{left:133.200000px;}
.x3_c00445{left:134.640000px;}
.x11_c00445{left:177.120000px;}
.x10_c00445{left:187.920000px;}
.x4_c00445{left:220.320000px;}
.xd_c00445{left:221.760000px;}
.x2e_c00445{left:229.680000px;}
.x16_c00445{left:231.120000px;}
.x12_c00445{left:232.560000px;}
.x22_c00445{left:241.920000px;}
.x28_c00445{left:263.520000px;}
.x5_c00445{left:274.320000px;}
.x13_c00445{left:285.120000px;}
.x17_c00445{left:296.640000px;}
.x24_c00445{left:317.520000px;}
.x2a_c00445{left:318.960000px;}
.x6_c00445{left:329.040000px;}
.x14_c00445{left:339.840000px;}
.x18_c00445{left:350.640000px;}
.x2b_c00445{left:360.720000px;}
.x15_c00445{left:383.040000px;}
.x1d_c00445{left:404.640000px;}
.x2c_c00445{left:406.800000px;}
.x21_c00445{left:416.160000px;}
.x19_c00445{left:437.040000px;}
.x1e_c00445{left:447.120000px;}
.x7_c00445{left:458.640000px;}
.x2d_c00445{left:461.520000px;}
.xc_c00445{left:469.440000px;}
.x25_c00445{left:479.520000px;}
.x1a_c00445{left:490.320000px;}
.x1c_c00445{left:501.840000px;}
.x8_c00445{left:535.680000px;}
.x1b_c00445{left:568.080000px;}
.x1f_c00445{left:588.240000px;}
.x26_c00445{left:589.680000px;}
.x9_c00445{left:622.080000px;}
.x29_c00445{left:645.840000px;}
.xa_c00445{left:655.200000px;}
.x23_c00445{left:666.000000px;}
.x1_c00445{left:681.120000px;}
.xb_c00445{left:688.320000px;}
.xe_c00445{left:698.400000px;}
.x27_c00445{left:699.840000px;}
.xf_c00445{left:719.280000px;}
@media print{
.v0_c00445{vertical-align:0.000000pt;}
.ls0_c00445{letter-spacing:0.000000pt;}
.ws2_c00445{word-spacing:0.000000pt;}
.ws1_c00445{word-spacing:11.214098pt;}
.ws0_c00445{word-spacing:13.295160pt;}
.fs8_c00445{font-size:30.720000pt;}
.fs9_c00445{font-size:38.400000pt;}
.fs7_c00445{font-size:40.960000pt;}
.fs2_c00445{font-size:43.520000pt;}
.fs5_c00445{font-size:46.080000pt;}
.fs4_c00445{font-size:48.640000pt;}
.fs6_c00445{font-size:51.200000pt;}
.fs1_c00445{font-size:53.760000pt;}
.fsc_c00445{font-size:56.320000pt;}
.fsf_c00445{font-size:58.880000pt;}
.fsa_c00445{font-size:61.440000pt;}
.fsd_c00445{font-size:64.000000pt;}
.fs0_c00445{font-size:66.560000pt;}
.fsb_c00445{font-size:81.920000pt;}
.fs3_c00445{font-size:84.480000pt;}
.fse_c00445{font-size:89.600000pt;}
.y0_c00445{bottom:0.000000pt;}
.y7b_c00445{bottom:44.160000pt;}
.y79_c00445{bottom:44.800000pt;}
.y7d_c00445{bottom:46.080000pt;}
.y7c_c00445{bottom:46.720000pt;}
.y78_c00445{bottom:47.360000pt;}
.y7a_c00445{bottom:48.000000pt;}
.y7e_c00445{bottom:48.640000pt;}
.y75_c00445{bottom:82.560000pt;}
.y77_c00445{bottom:83.840000pt;}
.y74_c00445{bottom:85.120000pt;}
.y76_c00445{bottom:86.400000pt;}
.y6f_c00445{bottom:120.960000pt;}
.y71_c00445{bottom:121.600000pt;}
.y72_c00445{bottom:122.240000pt;}
.y6e_c00445{bottom:123.520000pt;}
.y70_c00445{bottom:124.160000pt;}
.y73_c00445{bottom:125.440000pt;}
.y68_c00445{bottom:159.360000pt;}
.y6b_c00445{bottom:160.000000pt;}
.y6a_c00445{bottom:160.640000pt;}
.y6d_c00445{bottom:161.280000pt;}
.y67_c00445{bottom:161.920000pt;}
.y69_c00445{bottom:162.560000pt;}
.y6c_c00445{bottom:163.200000pt;}
.y62_c00445{bottom:197.120000pt;}
.y63_c00445{bottom:197.760000pt;}
.y65_c00445{bottom:198.400000pt;}
.y64_c00445{bottom:199.040000pt;}
.y61_c00445{bottom:200.320000pt;}
.y66_c00445{bottom:200.960000pt;}
.y5c_c00445{bottom:235.520000pt;}
.y5e_c00445{bottom:236.160000pt;}
.y5f_c00445{bottom:236.800000pt;}
.y5d_c00445{bottom:237.440000pt;}
.y5b_c00445{bottom:238.720000pt;}
.y60_c00445{bottom:239.360000pt;}
.y58_c00445{bottom:273.280000pt;}
.y5a_c00445{bottom:275.200000pt;}
.y56_c00445{bottom:275.840000pt;}
.y59_c00445{bottom:277.120000pt;}
.y57_c00445{bottom:277.760000pt;}
.y54_c00445{bottom:306.560000pt;}
.y50_c00445{bottom:312.320000pt;}
.y53_c00445{bottom:313.600000pt;}
.y55_c00445{bottom:314.240000pt;}
.y4f_c00445{bottom:314.880000pt;}
.y51_c00445{bottom:315.520000pt;}
.y52_c00445{bottom:316.160000pt;}
.y4e_c00445{bottom:350.720000pt;}
.y4d_c00445{bottom:352.000000pt;}
.y48_c00445{bottom:379.520000pt;}
.y4a_c00445{bottom:380.800000pt;}
.y4c_c00445{bottom:381.440000pt;}
.y47_c00445{bottom:382.080000pt;}
.y49_c00445{bottom:382.720000pt;}
.y4b_c00445{bottom:383.360000pt;}
.y44_c00445{bottom:417.280000pt;}
.y43_c00445{bottom:419.200000pt;}
.y42_c00445{bottom:419.840000pt;}
.y46_c00445{bottom:421.120000pt;}
.y45_c00445{bottom:421.760000pt;}
.y3f_c00445{bottom:449.920000pt;}
.y41_c00445{bottom:456.960000pt;}
.y3d_c00445{bottom:457.600000pt;}
.y40_c00445{bottom:458.240000pt;}
.y3e_c00445{bottom:459.520000pt;}
.y3c_c00445{bottom:488.960000pt;}
.y39_c00445{bottom:495.360000pt;}
.y3b_c00445{bottom:496.000000pt;}
.y38_c00445{bottom:497.920000pt;}
.y3a_c00445{bottom:498.560000pt;}
.y37_c00445{bottom:533.760000pt;}
.y36_c00445{bottom:534.400000pt;}
.y35_c00445{bottom:535.680000pt;}
.y33_c00445{bottom:571.520000pt;}
.y34_c00445{bottom:572.160000pt;}
.y31_c00445{bottom:572.800000pt;}
.y30_c00445{bottom:573.440000pt;}
.y32_c00445{bottom:574.080000pt;}
.y2e_c00445{bottom:609.920000pt;}
.y2c_c00445{bottom:610.560000pt;}
.y2f_c00445{bottom:611.840000pt;}
.y2d_c00445{bottom:612.480000pt;}
.y29_c00445{bottom:647.680000pt;}
.y27_c00445{bottom:648.320000pt;}
.y2b_c00445{bottom:648.960000pt;}
.y2a_c00445{bottom:649.600000pt;}
.y28_c00445{bottom:650.240000pt;}
.y25_c00445{bottom:678.400000pt;}
.y26_c00445{bottom:679.040000pt;}
.y24_c00445{bottom:685.440000pt;}
.y22_c00445{bottom:686.080000pt;}
.y21_c00445{bottom:686.720000pt;}
.y23_c00445{bottom:688.000000pt;}
.y20_c00445{bottom:723.840000pt;}
.y1e_c00445{bottom:724.480000pt;}
.y1f_c00445{bottom:725.760000pt;}
.y1a_c00445{bottom:762.240000pt;}
.y1d_c00445{bottom:762.880000pt;}
.y1b_c00445{bottom:764.160000pt;}
.y1c_c00445{bottom:764.800000pt;}
.y16_c00445{bottom:800.000000pt;}
.y18_c00445{bottom:800.640000pt;}
.y14_c00445{bottom:801.280000pt;}
.y17_c00445{bottom:801.920000pt;}
.y15_c00445{bottom:802.560000pt;}
.y19_c00445{bottom:803.200000pt;}
.y11_c00445{bottom:838.400000pt;}
.yf_c00445{bottom:839.040000pt;}
.y13_c00445{bottom:839.680000pt;}
.y12_c00445{bottom:840.320000pt;}
.y10_c00445{bottom:840.960000pt;}
.yd_c00445{bottom:878.720000pt;}
.ye_c00445{bottom:879.360000pt;}
.ya_c00445{bottom:905.600000pt;}
.y9_c00445{bottom:906.240000pt;}
.yb_c00445{bottom:907.520000pt;}
.yc_c00445{bottom:908.160000pt;}
.y8_c00445{bottom:934.400000pt;}
.y5_c00445{bottom:936.320000pt;}
.y2_c00445{bottom:944.000000pt;}
.y6_c00445{bottom:944.640000pt;}
.y4_c00445{bottom:945.920000pt;}
.y3_c00445{bottom:946.560000pt;}
.y7_c00445{bottom:947.200000pt;}
.y1_c00445{bottom:1003.520000pt;}
.h9_c00445{height:27.645000pt;}
.ha_c00445{height:34.556250pt;}
.h8_c00445{height:36.860000pt;}
.h3_c00445{height:39.163750pt;}
.h6_c00445{height:41.467500pt;}
.h5_c00445{height:43.771250pt;}
.h7_c00445{height:46.075000pt;}
.h2_c00445{height:48.378750pt;}
.hd_c00445{height:50.682500pt;}
.h10_c00445{height:52.986250pt;}
.hb_c00445{height:55.290000pt;}
.he_c00445{height:57.593750pt;}
.h1_c00445{height:59.897500pt;}
.hc_c00445{height:73.720000pt;}
.h4_c00445{height:76.023750pt;}
.hf_c00445{height:80.631250pt;}
.h0_c00445{height:1040.000000pt;}
.w0_c00445{width:695.040000pt;}
.w1_c00445{width:695.333333pt;}
.x0_c00445{left:0.000000pt;}
.x2_c00445{left:52.480000pt;}
.x20_c00445{left:118.400000pt;}
.x3_c00445{left:119.680000pt;}
.x11_c00445{left:157.440000pt;}
.x10_c00445{left:167.040000pt;}
.x4_c00445{left:195.840000pt;}
.xd_c00445{left:197.120000pt;}
.x2e_c00445{left:204.160000pt;}
.x16_c00445{left:205.440000pt;}
.x12_c00445{left:206.720000pt;}
.x22_c00445{left:215.040000pt;}
.x28_c00445{left:234.240000pt;}
.x5_c00445{left:243.840000pt;}
.x13_c00445{left:253.440000pt;}
.x17_c00445{left:263.680000pt;}
.x24_c00445{left:282.240000pt;}
.x2a_c00445{left:283.520000pt;}
.x6_c00445{left:292.480000pt;}
.x14_c00445{left:302.080000pt;}
.x18_c00445{left:311.680000pt;}
.x2b_c00445{left:320.640000pt;}
.x15_c00445{left:340.480000pt;}
.x1d_c00445{left:359.680000pt;}
.x2c_c00445{left:361.600000pt;}
.x21_c00445{left:369.920000pt;}
.x19_c00445{left:388.480000pt;}
.x1e_c00445{left:397.440000pt;}
.x7_c00445{left:407.680000pt;}
.x2d_c00445{left:410.240000pt;}
.xc_c00445{left:417.280000pt;}
.x25_c00445{left:426.240000pt;}
.x1a_c00445{left:435.840000pt;}
.x1c_c00445{left:446.080000pt;}
.x8_c00445{left:476.160000pt;}
.x1b_c00445{left:504.960000pt;}
.x1f_c00445{left:522.880000pt;}
.x26_c00445{left:524.160000pt;}
.x9_c00445{left:552.960000pt;}
.x29_c00445{left:574.080000pt;}
.xa_c00445{left:582.400000pt;}
.x23_c00445{left:592.000000pt;}
.x1_c00445{left:605.440000pt;}
.xb_c00445{left:611.840000pt;}
.xe_c00445{left:620.800000pt;}
.x27_c00445{left:622.080000pt;}
.xf_c00445{left:639.360000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_52f66bddbbd8fd618ac3ffb2.woff2')format("woff");}.ff1_c00446{font-family:ff1_c00446;line-height:1.109863;font-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_c00446{transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);}
.m2d_c00446{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m26_c00446{transform:matrix(0.244350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244350,0.000000,0.000000,0.250000,0,0);}
.m3e_c00446{transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);}
.m11_c00446{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m1a_c00446{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_c00446{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);}
.m37_c00446{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m7_c00446{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_c00446{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m29_c00446{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m12_c00446{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);}
.m31_c00446{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);}
.m39_c00446{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2_c00446{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.ma_c00446{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mc_c00446{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00446{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m14_c00446{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m6_c00446{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m41_c00446{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m21_c00446{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.mf_c00446{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m27_c00446{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m15_c00446{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m35_c00446{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m13_c00446{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m36_c00446{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00446{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m19_c00446{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m8_c00446{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m0_c00446{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00446{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m10_c00446{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m17_c00446{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00446{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m42_c00446{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);}
.m23_c00446{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m32_c00446{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m16_c00446{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1_c00446{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);}
.mb_c00446{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00446{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);}
.m25_c00446{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_c00446{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m28_c00446{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);}
.m22_c00446{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m34_c00446{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m30_c00446{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00446{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00446{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);}
.m44_c00446{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m20_c00446{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m33_c00446{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);}
.m3b_c00446{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m43_c00446{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);}
.md_c00446{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00446{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m18_c00446{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);}
.m4_c00446{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m3_c00446{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00446{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m38_c00446{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00446{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m40_c00446{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m5_c00446{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);}
.m24_c00446{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00446{transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00446{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.v2_c00446{vertical-align:-14.400000px;}
.v1_c00446{vertical-align:-8.640000px;}
.v0_c00446{vertical-align:0.000000px;}
.v3_c00446{vertical-align:5.760000px;}
.ls1_c00446{letter-spacing:0.000000px;}
.ls0_c00446{letter-spacing:96.961680px;}
.sc__c00446{text-shadow:none;}
.sc0_c00446{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00446{-webkit-text-stroke:0px transparent;}
.sc0_c00446{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00446{word-spacing:0.000000px;}
.ws0_c00446{word-spacing:544.542000px;}
.fc0_c00446{color:transparent;}
.fs5_c00446{font-size:34.560000px;}
.fse_c00446{font-size:37.440000px;}
.fsa_c00446{font-size:43.200000px;}
.fs3_c00446{font-size:46.080000px;}
.fs4_c00446{font-size:48.960000px;}
.fsb_c00446{font-size:51.840000px;}
.fs9_c00446{font-size:54.720000px;}
.fsd_c00446{font-size:57.600000px;}
.fs1_c00446{font-size:60.480000px;}
.fsc_c00446{font-size:63.360000px;}
.fs7_c00446{font-size:66.240000px;}
.fs8_c00446{font-size:69.120000px;}
.fs6_c00446{font-size:72.000000px;}
.fs2_c00446{font-size:74.880000px;}
.fs0_c00446{font-size:77.760000px;}
.y0_c00446{bottom:0.000000px;}
.y91_c00446{bottom:70.560000px;}
.y92_c00446{bottom:72.000000px;}
.y90_c00446{bottom:72.720000px;}
.y94_c00446{bottom:73.440000px;}
.y93_c00446{bottom:74.160000px;}
.y8a_c00446{bottom:113.760000px;}
.y8d_c00446{bottom:114.480000px;}
.y8b_c00446{bottom:115.200000px;}
.y8f_c00446{bottom:115.920000px;}
.y8e_c00446{bottom:116.640000px;}
.y89_c00446{bottom:117.360000px;}
.y8c_c00446{bottom:118.080000px;}
.y88_c00446{bottom:157.680000px;}
.y84_c00446{bottom:158.400000px;}
.y85_c00446{bottom:159.120000px;}
.y86_c00446{bottom:159.840000px;}
.y82_c00446{bottom:160.560000px;}
.y83_c00446{bottom:161.280000px;}
.y87_c00446{bottom:162.000000px;}
.y7d_c00446{bottom:200.880000px;}
.y80_c00446{bottom:202.320000px;}
.y7f_c00446{bottom:203.040000px;}
.y7c_c00446{bottom:203.760000px;}
.y7e_c00446{bottom:204.480000px;}
.y81_c00446{bottom:205.200000px;}
.y78_c00446{bottom:244.080000px;}
.y7a_c00446{bottom:244.800000px;}
.y7b_c00446{bottom:245.520000px;}
.y77_c00446{bottom:246.240000px;}
.y79_c00446{bottom:247.680000px;}
.y73_c00446{bottom:286.560000px;}
.y74_c00446{bottom:287.280000px;}
.y76_c00446{bottom:288.000000px;}
.y75_c00446{bottom:288.720000px;}
.y72_c00446{bottom:290.160000px;}
.y6b_c00446{bottom:329.760000px;}
.y6f_c00446{bottom:330.480000px;}
.y6c_c00446{bottom:331.200000px;}
.y70_c00446{bottom:331.920000px;}
.y6a_c00446{bottom:332.640000px;}
.y6e_c00446{bottom:333.360000px;}
.y6d_c00446{bottom:334.080000px;}
.y71_c00446{bottom:334.800000px;}
.y64_c00446{bottom:372.240000px;}
.y66_c00446{bottom:372.960000px;}
.y68_c00446{bottom:373.680000px;}
.y67_c00446{bottom:374.400000px;}
.y63_c00446{bottom:375.120000px;}
.y65_c00446{bottom:375.840000px;}
.y69_c00446{bottom:376.560000px;}
.y5d_c00446{bottom:414.720000px;}
.y5f_c00446{bottom:415.440000px;}
.y61_c00446{bottom:416.880000px;}
.y60_c00446{bottom:417.600000px;}
.y5c_c00446{bottom:418.320000px;}
.y5e_c00446{bottom:419.040000px;}
.y62_c00446{bottom:419.760000px;}
.y58_c00446{bottom:457.920000px;}
.y5a_c00446{bottom:458.640000px;}
.y5b_c00446{bottom:460.080000px;}
.y59_c00446{bottom:461.520000px;}
.y57_c00446{bottom:462.240000px;}
.y53_c00446{bottom:501.120000px;}
.y55_c00446{bottom:501.840000px;}
.y56_c00446{bottom:502.560000px;}
.y52_c00446{bottom:503.280000px;}
.y54_c00446{bottom:504.720000px;}
.y4c_c00446{bottom:543.600000px;}
.y4e_c00446{bottom:544.320000px;}
.y50_c00446{bottom:545.040000px;}
.y4f_c00446{bottom:545.760000px;}
.y4b_c00446{bottom:547.200000px;}
.y4d_c00446{bottom:547.920000px;}
.y51_c00446{bottom:548.640000px;}
.y47_c00446{bottom:586.800000px;}
.y48_c00446{bottom:588.240000px;}
.y46_c00446{bottom:588.960000px;}
.y49_c00446{bottom:591.120000px;}
.y4a_c00446{bottom:591.840000px;}
.y40_c00446{bottom:629.280000px;}
.y41_c00446{bottom:630.000000px;}
.y43_c00446{bottom:630.720000px;}
.y3f_c00446{bottom:631.440000px;}
.y42_c00446{bottom:632.160000px;}
.y44_c00446{bottom:634.320000px;}
.y45_c00446{bottom:635.040000px;}
.y3a_c00446{bottom:672.480000px;}
.y3b_c00446{bottom:673.200000px;}
.y3e_c00446{bottom:673.920000px;}
.y39_c00446{bottom:674.640000px;}
.y3c_c00446{bottom:675.360000px;}
.y3d_c00446{bottom:677.520000px;}
.y32_c00446{bottom:715.680000px;}
.y34_c00446{bottom:716.400000px;}
.y36_c00446{bottom:717.120000px;}
.y35_c00446{bottom:717.840000px;}
.y31_c00446{bottom:718.560000px;}
.y33_c00446{bottom:719.280000px;}
.y38_c00446{bottom:720.000000px;}
.y37_c00446{bottom:720.720000px;}
.y2b_c00446{bottom:758.880000px;}
.y2d_c00446{bottom:759.600000px;}
.y2f_c00446{bottom:760.320000px;}
.y2e_c00446{bottom:761.040000px;}
.y2c_c00446{bottom:761.760000px;}
.y2a_c00446{bottom:762.480000px;}
.y30_c00446{bottom:763.920000px;}
.y25_c00446{bottom:801.360000px;}
.y26_c00446{bottom:802.080000px;}
.y28_c00446{bottom:802.800000px;}
.y27_c00446{bottom:804.240000px;}
.y24_c00446{bottom:804.960000px;}
.y29_c00446{bottom:807.120000px;}
.y20_c00446{bottom:845.280000px;}
.y1f_c00446{bottom:846.000000px;}
.y23_c00446{bottom:847.440000px;}
.y21_c00446{bottom:848.160000px;}
.y22_c00446{bottom:848.880000px;}
.y1a_c00446{bottom:887.760000px;}
.y1d_c00446{bottom:888.480000px;}
.y19_c00446{bottom:889.200000px;}
.y1e_c00446{bottom:889.920000px;}
.y1b_c00446{bottom:891.360000px;}
.y1c_c00446{bottom:892.080000px;}
.y15_c00446{bottom:930.240000px;}
.y16_c00446{bottom:931.680000px;}
.y14_c00446{bottom:932.400000px;}
.y18_c00446{bottom:933.840000px;}
.y17_c00446{bottom:935.280000px;}
.yf_c00446{bottom:972.720000px;}
.y10_c00446{bottom:973.440000px;}
.y12_c00446{bottom:974.160000px;}
.y11_c00446{bottom:974.880000px;}
.ye_c00446{bottom:975.600000px;}
.y13_c00446{bottom:977.760000px;}
.ya_c00446{bottom:1015.920000px;}
.yc_c00446{bottom:1016.640000px;}
.y9_c00446{bottom:1017.360000px;}
.yb_c00446{bottom:1020.240000px;}
.yd_c00446{bottom:1020.960000px;}
.y3_c00446{bottom:1058.400000px;}
.y6_c00446{bottom:1059.120000px;}
.y2_c00446{bottom:1059.840000px;}
.y7_c00446{bottom:1060.560000px;}
.y8_c00446{bottom:1061.280000px;}
.y5_c00446{bottom:1062.000000px;}
.y4_c00446{bottom:1062.720000px;}
.y1_c00446{bottom:1130.400000px;}
.h7_c00446{height:31.100625px;}
.h10_c00446{height:33.692344px;}
.hc_c00446{height:38.875781px;}
.h5_c00446{height:41.467500px;}
.h6_c00446{height:44.059219px;}
.hd_c00446{height:46.650937px;}
.hb_c00446{height:49.242656px;}
.hf_c00446{height:51.834375px;}
.h3_c00446{height:54.426094px;}
.he_c00446{height:57.017812px;}
.h9_c00446{height:59.609531px;}
.ha_c00446{height:62.201250px;}
.h8_c00446{height:64.792969px;}
.h4_c00446{height:67.384687px;}
.h2_c00446{height:69.976406px;}
.h0_c00446{height:1172.160000px;}
.h1_c00446{height:1172.250000px;}
.w1_c00446{width:783.750000px;}
.w0_c00446{width:784.080000px;}
.x0_c00446{left:0.000000px;}
.x2_c00446{left:54.000000px;}
.x1e_c00446{left:55.440000px;}
.x3_c00446{left:128.880000px;}
.x4_c00446{left:226.080000px;}
.x14_c00446{left:227.520000px;}
.x11_c00446{left:259.920000px;}
.x5_c00446{left:270.000000px;}
.x22_c00446{left:271.440000px;}
.xd_c00446{left:280.080000px;}
.x1b_c00446{left:282.240000px;}
.x15_c00446{left:314.640000px;}
.x1f_c00446{left:324.000000px;}
.x6_c00446{left:325.440000px;}
.x16_c00446{left:357.120000px;}
.x7_c00446{left:367.200000px;}
.x20_c00446{left:369.360000px;}
.x17_c00446{left:400.320000px;}
.x8_c00446{left:410.400000px;}
.x13_c00446{left:497.520000px;}
.x9_c00446{left:530.640000px;}
.xe_c00446{left:542.160000px;}
.x21_c00446{left:563.760000px;}
.xf_c00446{left:573.840000px;}
.x18_c00446{left:583.920000px;}
.xa_c00446{left:585.360000px;}
.x23_c00446{left:609.840000px;}
.x1d_c00446{left:619.200000px;}
.x19_c00446{left:642.240000px;}
.xb_c00446{left:660.960000px;}
.x1a_c00446{left:662.400000px;}
.x1_c00446{left:672.480000px;}
.xc_c00446{left:694.080000px;}
.x1c_c00446{left:695.520000px;}
.x10_c00446{left:705.600000px;}
.x12_c00446{left:714.960000px;}
@media print{
.v2_c00446{vertical-align:-12.800000pt;}
.v1_c00446{vertical-align:-7.680000pt;}
.v0_c00446{vertical-align:0.000000pt;}
.v3_c00446{vertical-align:5.120000pt;}
.ls1_c00446{letter-spacing:0.000000pt;}
.ls0_c00446{letter-spacing:86.188160pt;}
.ws1_c00446{word-spacing:0.000000pt;}
.ws0_c00446{word-spacing:484.037333pt;}
.fs5_c00446{font-size:30.720000pt;}
.fse_c00446{font-size:33.280000pt;}
.fsa_c00446{font-size:38.400000pt;}
.fs3_c00446{font-size:40.960000pt;}
.fs4_c00446{font-size:43.520000pt;}
.fsb_c00446{font-size:46.080000pt;}
.fs9_c00446{font-size:48.640000pt;}
.fsd_c00446{font-size:51.200000pt;}
.fs1_c00446{font-size:53.760000pt;}
.fsc_c00446{font-size:56.320000pt;}
.fs7_c00446{font-size:58.880000pt;}
.fs8_c00446{font-size:61.440000pt;}
.fs6_c00446{font-size:64.000000pt;}
.fs2_c00446{font-size:66.560000pt;}
.fs0_c00446{font-size:69.120000pt;}
.y0_c00446{bottom:0.000000pt;}
.y91_c00446{bottom:62.720000pt;}
.y92_c00446{bottom:64.000000pt;}
.y90_c00446{bottom:64.640000pt;}
.y94_c00446{bottom:65.280000pt;}
.y93_c00446{bottom:65.920000pt;}
.y8a_c00446{bottom:101.120000pt;}
.y8d_c00446{bottom:101.760000pt;}
.y8b_c00446{bottom:102.400000pt;}
.y8f_c00446{bottom:103.040000pt;}
.y8e_c00446{bottom:103.680000pt;}
.y89_c00446{bottom:104.320000pt;}
.y8c_c00446{bottom:104.960000pt;}
.y88_c00446{bottom:140.160000pt;}
.y84_c00446{bottom:140.800000pt;}
.y85_c00446{bottom:141.440000pt;}
.y86_c00446{bottom:142.080000pt;}
.y82_c00446{bottom:142.720000pt;}
.y83_c00446{bottom:143.360000pt;}
.y87_c00446{bottom:144.000000pt;}
.y7d_c00446{bottom:178.560000pt;}
.y80_c00446{bottom:179.840000pt;}
.y7f_c00446{bottom:180.480000pt;}
.y7c_c00446{bottom:181.120000pt;}
.y7e_c00446{bottom:181.760000pt;}
.y81_c00446{bottom:182.400000pt;}
.y78_c00446{bottom:216.960000pt;}
.y7a_c00446{bottom:217.600000pt;}
.y7b_c00446{bottom:218.240000pt;}
.y77_c00446{bottom:218.880000pt;}
.y79_c00446{bottom:220.160000pt;}
.y73_c00446{bottom:254.720000pt;}
.y74_c00446{bottom:255.360000pt;}
.y76_c00446{bottom:256.000000pt;}
.y75_c00446{bottom:256.640000pt;}
.y72_c00446{bottom:257.920000pt;}
.y6b_c00446{bottom:293.120000pt;}
.y6f_c00446{bottom:293.760000pt;}
.y6c_c00446{bottom:294.400000pt;}
.y70_c00446{bottom:295.040000pt;}
.y6a_c00446{bottom:295.680000pt;}
.y6e_c00446{bottom:296.320000pt;}
.y6d_c00446{bottom:296.960000pt;}
.y71_c00446{bottom:297.600000pt;}
.y64_c00446{bottom:330.880000pt;}
.y66_c00446{bottom:331.520000pt;}
.y68_c00446{bottom:332.160000pt;}
.y67_c00446{bottom:332.800000pt;}
.y63_c00446{bottom:333.440000pt;}
.y65_c00446{bottom:334.080000pt;}
.y69_c00446{bottom:334.720000pt;}
.y5d_c00446{bottom:368.640000pt;}
.y5f_c00446{bottom:369.280000pt;}
.y61_c00446{bottom:370.560000pt;}
.y60_c00446{bottom:371.200000pt;}
.y5c_c00446{bottom:371.840000pt;}
.y5e_c00446{bottom:372.480000pt;}
.y62_c00446{bottom:373.120000pt;}
.y58_c00446{bottom:407.040000pt;}
.y5a_c00446{bottom:407.680000pt;}
.y5b_c00446{bottom:408.960000pt;}
.y59_c00446{bottom:410.240000pt;}
.y57_c00446{bottom:410.880000pt;}
.y53_c00446{bottom:445.440000pt;}
.y55_c00446{bottom:446.080000pt;}
.y56_c00446{bottom:446.720000pt;}
.y52_c00446{bottom:447.360000pt;}
.y54_c00446{bottom:448.640000pt;}
.y4c_c00446{bottom:483.200000pt;}
.y4e_c00446{bottom:483.840000pt;}
.y50_c00446{bottom:484.480000pt;}
.y4f_c00446{bottom:485.120000pt;}
.y4b_c00446{bottom:486.400000pt;}
.y4d_c00446{bottom:487.040000pt;}
.y51_c00446{bottom:487.680000pt;}
.y47_c00446{bottom:521.600000pt;}
.y48_c00446{bottom:522.880000pt;}
.y46_c00446{bottom:523.520000pt;}
.y49_c00446{bottom:525.440000pt;}
.y4a_c00446{bottom:526.080000pt;}
.y40_c00446{bottom:559.360000pt;}
.y41_c00446{bottom:560.000000pt;}
.y43_c00446{bottom:560.640000pt;}
.y3f_c00446{bottom:561.280000pt;}
.y42_c00446{bottom:561.920000pt;}
.y44_c00446{bottom:563.840000pt;}
.y45_c00446{bottom:564.480000pt;}
.y3a_c00446{bottom:597.760000pt;}
.y3b_c00446{bottom:598.400000pt;}
.y3e_c00446{bottom:599.040000pt;}
.y39_c00446{bottom:599.680000pt;}
.y3c_c00446{bottom:600.320000pt;}
.y3d_c00446{bottom:602.240000pt;}
.y32_c00446{bottom:636.160000pt;}
.y34_c00446{bottom:636.800000pt;}
.y36_c00446{bottom:637.440000pt;}
.y35_c00446{bottom:638.080000pt;}
.y31_c00446{bottom:638.720000pt;}
.y33_c00446{bottom:639.360000pt;}
.y38_c00446{bottom:640.000000pt;}
.y37_c00446{bottom:640.640000pt;}
.y2b_c00446{bottom:674.560000pt;}
.y2d_c00446{bottom:675.200000pt;}
.y2f_c00446{bottom:675.840000pt;}
.y2e_c00446{bottom:676.480000pt;}
.y2c_c00446{bottom:677.120000pt;}
.y2a_c00446{bottom:677.760000pt;}
.y30_c00446{bottom:679.040000pt;}
.y25_c00446{bottom:712.320000pt;}
.y26_c00446{bottom:712.960000pt;}
.y28_c00446{bottom:713.600000pt;}
.y27_c00446{bottom:714.880000pt;}
.y24_c00446{bottom:715.520000pt;}
.y29_c00446{bottom:717.440000pt;}
.y20_c00446{bottom:751.360000pt;}
.y1f_c00446{bottom:752.000000pt;}
.y23_c00446{bottom:753.280000pt;}
.y21_c00446{bottom:753.920000pt;}
.y22_c00446{bottom:754.560000pt;}
.y1a_c00446{bottom:789.120000pt;}
.y1d_c00446{bottom:789.760000pt;}
.y19_c00446{bottom:790.400000pt;}
.y1e_c00446{bottom:791.040000pt;}
.y1b_c00446{bottom:792.320000pt;}
.y1c_c00446{bottom:792.960000pt;}
.y15_c00446{bottom:826.880000pt;}
.y16_c00446{bottom:828.160000pt;}
.y14_c00446{bottom:828.800000pt;}
.y18_c00446{bottom:830.080000pt;}
.y17_c00446{bottom:831.360000pt;}
.yf_c00446{bottom:864.640000pt;}
.y10_c00446{bottom:865.280000pt;}
.y12_c00446{bottom:865.920000pt;}
.y11_c00446{bottom:866.560000pt;}
.ye_c00446{bottom:867.200000pt;}
.y13_c00446{bottom:869.120000pt;}
.ya_c00446{bottom:903.040000pt;}
.yc_c00446{bottom:903.680000pt;}
.y9_c00446{bottom:904.320000pt;}
.yb_c00446{bottom:906.880000pt;}
.yd_c00446{bottom:907.520000pt;}
.y3_c00446{bottom:940.800000pt;}
.y6_c00446{bottom:941.440000pt;}
.y2_c00446{bottom:942.080000pt;}
.y7_c00446{bottom:942.720000pt;}
.y8_c00446{bottom:943.360000pt;}
.y5_c00446{bottom:944.000000pt;}
.y4_c00446{bottom:944.640000pt;}
.y1_c00446{bottom:1004.800000pt;}
.h7_c00446{height:27.645000pt;}
.h10_c00446{height:29.948750pt;}
.hc_c00446{height:34.556250pt;}
.h5_c00446{height:36.860000pt;}
.h6_c00446{height:39.163750pt;}
.hd_c00446{height:41.467500pt;}
.hb_c00446{height:43.771250pt;}
.hf_c00446{height:46.075000pt;}
.h3_c00446{height:48.378750pt;}
.he_c00446{height:50.682500pt;}
.h9_c00446{height:52.986250pt;}
.ha_c00446{height:55.290000pt;}
.h8_c00446{height:57.593750pt;}
.h4_c00446{height:59.897500pt;}
.h2_c00446{height:62.201250pt;}
.h0_c00446{height:1041.920000pt;}
.h1_c00446{height:1042.000000pt;}
.w1_c00446{width:696.666667pt;}
.w0_c00446{width:696.960000pt;}
.x0_c00446{left:0.000000pt;}
.x2_c00446{left:48.000000pt;}
.x1e_c00446{left:49.280000pt;}
.x3_c00446{left:114.560000pt;}
.x4_c00446{left:200.960000pt;}
.x14_c00446{left:202.240000pt;}
.x11_c00446{left:231.040000pt;}
.x5_c00446{left:240.000000pt;}
.x22_c00446{left:241.280000pt;}
.xd_c00446{left:248.960000pt;}
.x1b_c00446{left:250.880000pt;}
.x15_c00446{left:279.680000pt;}
.x1f_c00446{left:288.000000pt;}
.x6_c00446{left:289.280000pt;}
.x16_c00446{left:317.440000pt;}
.x7_c00446{left:326.400000pt;}
.x20_c00446{left:328.320000pt;}
.x17_c00446{left:355.840000pt;}
.x8_c00446{left:364.800000pt;}
.x13_c00446{left:442.240000pt;}
.x9_c00446{left:471.680000pt;}
.xe_c00446{left:481.920000pt;}
.x21_c00446{left:501.120000pt;}
.xf_c00446{left:510.080000pt;}
.x18_c00446{left:519.040000pt;}
.xa_c00446{left:520.320000pt;}
.x23_c00446{left:542.080000pt;}
.x1d_c00446{left:550.400000pt;}
.x19_c00446{left:570.880000pt;}
.xb_c00446{left:587.520000pt;}
.x1a_c00446{left:588.800000pt;}
.x1_c00446{left:597.760000pt;}
.xc_c00446{left:616.960000pt;}
.x1c_c00446{left:618.240000pt;}
.x10_c00446{left:627.200000pt;}
.x12_c00446{left:635.520000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_efa5e72543c9002a67c1d268.woff2')format("woff");}.ff1_c00447{font-family:ff1_c00447;line-height:1.109863;font-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_c00447{transform:matrix(0.168600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168600,0.000000,0.000000,0.250000,0,0);}
.m46_c00447{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m3e_c00447{transform:matrix(0.236800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236800,0.000000,0.000000,0.250000,0,0);}
.m19_c00447{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m4d_c00447{transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);}
.m11_c00447{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m53_c00447{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m40_c00447{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m7_c00447{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_c00447{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_c00447{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);}
.m42_c00447{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m2_c00447{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_c00447{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);}
.m38_c00447{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00447{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.mb_c00447{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00447{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m5_c00447{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m28_c00447{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.ma_c00447{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m30_c00447{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m6_c00447{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.me_c00447{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m17_c00447{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00447{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00447{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m31_c00447{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m25_c00447{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m37_c00447{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m29_c00447{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00447{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m13_c00447{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m22_c00447{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00447{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m0_c00447{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m52_c00447{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m41_c00447{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m18_c00447{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mc_c00447{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);}
.m24_c00447{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m10_c00447{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m26_c00447{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);}
.m3b_c00447{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1_c00447{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);}
.m2d_c00447{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m50_c00447{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00447{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00447{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.md_c00447{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m8_c00447{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m43_c00447{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);}
.m51_c00447{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);}
.m12_c00447{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m47_c00447{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m35_c00447{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m4_c00447{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00447{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);}
.m2a_c00447{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);}
.m33_c00447{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m49_c00447{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);}
.m1e_c00447{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m14_c00447{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);}
.m16_c00447{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);}
.m3_c00447{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00447{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00447{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m48_c00447{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);}
.m9_c00447{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00447{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m36_c00447{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);}
.m4e_c00447{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m45_c00447{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.mf_c00447{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m34_c00447{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m20_c00447{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m39_c00447{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);}
.m3f_c00447{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00447{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);}
.m23_c00447{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00447{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00447{transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);}
.m44_c00447{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.m32_c00447{transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);}
.v0_c00447{vertical-align:0.000000px;}
.v1_c00447{vertical-align:8.640000px;}
.ls0_c00447{letter-spacing:0.000000px;}
.sc__c00447{text-shadow:none;}
.sc0_c00447{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00447{-webkit-text-stroke:0px transparent;}
.sc0_c00447{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00447{word-spacing:0.000000px;}
.ws0_c00447{word-spacing:67.827902px;}
.ws1_c00447{word-spacing:888.120000px;}
.fc0_c00447{color:transparent;}
.fsa_c00447{font-size:34.560000px;}
.fs10_c00447{font-size:37.440000px;}
.fsf_c00447{font-size:40.320000px;}
.fs8_c00447{font-size:43.200000px;}
.fs3_c00447{font-size:46.080000px;}
.fs4_c00447{font-size:48.960000px;}
.fsb_c00447{font-size:51.840000px;}
.fs5_c00447{font-size:54.720000px;}
.fs9_c00447{font-size:57.600000px;}
.fs7_c00447{font-size:60.480000px;}
.fs1_c00447{font-size:63.360000px;}
.fs6_c00447{font-size:66.240000px;}
.fsd_c00447{font-size:69.120000px;}
.fs2_c00447{font-size:72.000000px;}
.fsc_c00447{font-size:74.880000px;}
.fs0_c00447{font-size:77.760000px;}
.fse_c00447{font-size:95.040000px;}
.y0_c00447{bottom:0.000000px;}
.y87_c00447{bottom:8.640000px;}
.y88_c00447{bottom:9.360000px;}
.y89_c00447{bottom:10.080000px;}
.y8a_c00447{bottom:10.800000px;}
.y86_c00447{bottom:12.960000px;}
.y82_c00447{bottom:48.960000px;}
.y83_c00447{bottom:49.680000px;}
.y85_c00447{bottom:50.400000px;}
.y84_c00447{bottom:51.840000px;}
.y81_c00447{bottom:52.560000px;}
.y7b_c00447{bottom:92.160000px;}
.y7d_c00447{bottom:92.880000px;}
.y7f_c00447{bottom:93.600000px;}
.y80_c00447{bottom:94.320000px;}
.y7e_c00447{bottom:95.040000px;}
.y7a_c00447{bottom:95.760000px;}
.y7c_c00447{bottom:96.480000px;}
.y75_c00447{bottom:135.360000px;}
.y78_c00447{bottom:136.080000px;}
.y79_c00447{bottom:136.800000px;}
.y74_c00447{bottom:138.240000px;}
.y76_c00447{bottom:138.960000px;}
.y77_c00447{bottom:139.680000px;}
.y70_c00447{bottom:178.560000px;}
.y73_c00447{bottom:180.000000px;}
.y72_c00447{bottom:180.720000px;}
.y71_c00447{bottom:181.440000px;}
.y6f_c00447{bottom:182.160000px;}
.y6a_c00447{bottom:221.040000px;}
.y6d_c00447{bottom:221.760000px;}
.y6e_c00447{bottom:222.480000px;}
.y6c_c00447{bottom:223.200000px;}
.y69_c00447{bottom:223.920000px;}
.y6b_c00447{bottom:224.640000px;}
.y63_c00447{bottom:263.520000px;}
.y65_c00447{bottom:264.960000px;}
.y66_c00447{bottom:265.680000px;}
.y62_c00447{bottom:266.400000px;}
.y64_c00447{bottom:267.120000px;}
.y68_c00447{bottom:267.840000px;}
.y67_c00447{bottom:269.280000px;}
.y5d_c00447{bottom:307.440000px;}
.y5f_c00447{bottom:308.160000px;}
.y5c_c00447{bottom:308.880000px;}
.y5e_c00447{bottom:309.600000px;}
.y60_c00447{bottom:310.320000px;}
.y61_c00447{bottom:311.760000px;}
.y57_c00447{bottom:349.920000px;}
.y58_c00447{bottom:350.640000px;}
.y5a_c00447{bottom:351.360000px;}
.y59_c00447{bottom:352.800000px;}
.y56_c00447{bottom:353.520000px;}
.y5b_c00447{bottom:354.240000px;}
.y51_c00447{bottom:393.840000px;}
.y54_c00447{bottom:394.560000px;}
.y53_c00447{bottom:395.280000px;}
.y50_c00447{bottom:396.000000px;}
.y52_c00447{bottom:396.720000px;}
.y55_c00447{bottom:398.160000px;}
.y4a_c00447{bottom:436.320000px;}
.y4d_c00447{bottom:437.040000px;}
.y4c_c00447{bottom:437.760000px;}
.y4f_c00447{bottom:438.480000px;}
.y49_c00447{bottom:439.200000px;}
.y4e_c00447{bottom:439.920000px;}
.y4b_c00447{bottom:440.640000px;}
.y44_c00447{bottom:479.520000px;}
.y47_c00447{bottom:480.240000px;}
.y46_c00447{bottom:480.960000px;}
.y43_c00447{bottom:482.400000px;}
.y45_c00447{bottom:483.120000px;}
.y48_c00447{bottom:483.840000px;}
.y42_c00447{bottom:523.440000px;}
.y41_c00447{bottom:527.040000px;}
.y3e_c00447{bottom:555.120000px;}
.y40_c00447{bottom:556.560000px;}
.y3c_c00447{bottom:557.280000px;}
.y3f_c00447{bottom:558.720000px;}
.y3d_c00447{bottom:559.440000px;}
.y3b_c00447{bottom:599.040000px;}
.y3a_c00447{bottom:601.920000px;}
.y35_c00447{bottom:630.000000px;}
.y36_c00447{bottom:631.440000px;}
.y34_c00447{bottom:632.160000px;}
.y37_c00447{bottom:632.880000px;}
.y38_c00447{bottom:634.320000px;}
.y39_c00447{bottom:635.040000px;}
.y2f_c00447{bottom:673.200000px;}
.y32_c00447{bottom:673.920000px;}
.y30_c00447{bottom:674.640000px;}
.y2e_c00447{bottom:675.360000px;}
.y31_c00447{bottom:676.800000px;}
.y33_c00447{bottom:677.520000px;}
.y2d_c00447{bottom:709.920000px;}
.y29_c00447{bottom:716.400000px;}
.y2b_c00447{bottom:717.120000px;}
.y2c_c00447{bottom:717.840000px;}
.y28_c00447{bottom:718.560000px;}
.y2a_c00447{bottom:720.000000px;}
.y27_c00447{bottom:758.880000px;}
.y26_c00447{bottom:763.200000px;}
.y20_c00447{bottom:790.560000px;}
.y24_c00447{bottom:792.000000px;}
.y1f_c00447{bottom:792.720000px;}
.y25_c00447{bottom:793.440000px;}
.y22_c00447{bottom:794.160000px;}
.y23_c00447{bottom:794.880000px;}
.y21_c00447{bottom:795.600000px;}
.y1c_c00447{bottom:834.480000px;}
.y1d_c00447{bottom:835.200000px;}
.y1b_c00447{bottom:835.920000px;}
.y1e_c00447{bottom:838.080000px;}
.y18_c00447{bottom:876.960000px;}
.y19_c00447{bottom:877.680000px;}
.y17_c00447{bottom:878.400000px;}
.y1a_c00447{bottom:880.560000px;}
.y13_c00447{bottom:919.440000px;}
.y16_c00447{bottom:920.160000px;}
.y15_c00447{bottom:920.880000px;}
.y12_c00447{bottom:921.600000px;}
.y14_c00447{bottom:923.040000px;}
.ye_c00447{bottom:962.640000px;}
.y10_c00447{bottom:963.360000px;}
.yd_c00447{bottom:964.080000px;}
.y11_c00447{bottom:964.800000px;}
.yf_c00447{bottom:966.240000px;}
.yb_c00447{bottom:1005.120000px;}
.y8_c00447{bottom:1005.840000px;}
.yc_c00447{bottom:1006.560000px;}
.y9_c00447{bottom:1007.280000px;}
.y7_c00447{bottom:1008.000000px;}
.ya_c00447{bottom:1008.720000px;}
.y3_c00447{bottom:1049.040000px;}
.y6_c00447{bottom:1049.760000px;}
.y4_c00447{bottom:1050.480000px;}
.y2_c00447{bottom:1051.200000px;}
.y5_c00447{bottom:1052.640000px;}
.y1_c00447{bottom:1128.240000px;}
.hb_c00447{height:31.100625px;}
.h11_c00447{height:33.692344px;}
.h10_c00447{height:36.284062px;}
.h9_c00447{height:38.875781px;}
.h4_c00447{height:41.467500px;}
.h5_c00447{height:44.059219px;}
.hc_c00447{height:46.650937px;}
.h6_c00447{height:49.242656px;}
.ha_c00447{height:51.834375px;}
.h8_c00447{height:54.426094px;}
.h2_c00447{height:57.017812px;}
.h7_c00447{height:59.609531px;}
.he_c00447{height:62.201250px;}
.h3_c00447{height:64.792969px;}
.hd_c00447{height:67.384687px;}
.h1_c00447{height:69.976406px;}
.hf_c00447{height:85.526719px;}
.h0_c00447{height:1170.000000px;}
.w0_c00447{width:781.920000px;}
.w1_c00447{width:782.250000px;}
.x0_c00447{left:0.000000px;}
.x2_c00447{left:58.320000px;}
.x27_c00447{left:59.760000px;}
.x3_c00447{left:133.200000px;}
.x21_c00447{left:154.800000px;}
.x12_c00447{left:177.120000px;}
.x17_c00447{left:188.640000px;}
.x1a_c00447{left:199.440000px;}
.x22_c00447{left:209.520000px;}
.x25_c00447{left:229.680000px;}
.x4_c00447{left:231.120000px;}
.x23_c00447{left:241.200000px;}
.x1b_c00447{left:252.000000px;}
.x29_c00447{left:263.520000px;}
.xe_c00447{left:274.320000px;}
.x5_c00447{left:285.120000px;}
.x1c_c00447{left:295.920000px;}
.x15_c00447{left:317.520000px;}
.x6_c00447{left:328.320000px;}
.xf_c00447{left:329.760000px;}
.x24_c00447{left:339.120000px;}
.x1d_c00447{left:350.640000px;}
.x18_c00447{left:360.720000px;}
.x10_c00447{left:371.520000px;}
.x2c_c00447{left:382.320000px;}
.x1e_c00447{left:393.120000px;}
.x2a_c00447{left:403.920000px;}
.x16_c00447{left:415.440000px;}
.x13_c00447{left:425.520000px;}
.xb_c00447{left:436.320000px;}
.x19_c00447{left:447.120000px;}
.x11_c00447{left:469.440000px;}
.x14_c00447{left:480.240000px;}
.xc_c00447{left:492.480000px;}
.x7_c00447{left:535.680000px;}
.x28_c00447{left:588.240000px;}
.x8_c00447{left:589.680000px;}
.x26_c00447{left:600.480000px;}
.x2b_c00447{left:613.440000px;}
.x1f_c00447{left:622.080000px;}
.x20_c00447{left:655.920000px;}
.x9_c00447{left:665.280000px;}
.x2d_c00447{left:666.720000px;}
.x1_c00447{left:686.880000px;}
.xa_c00447{left:698.400000px;}
.xd_c00447{left:719.280000px;}
@media print{
.v0_c00447{vertical-align:0.000000pt;}
.v1_c00447{vertical-align:7.680000pt;}
.ls0_c00447{letter-spacing:0.000000pt;}
.ws2_c00447{word-spacing:0.000000pt;}
.ws0_c00447{word-spacing:60.291469pt;}
.ws1_c00447{word-spacing:789.440000pt;}
.fsa_c00447{font-size:30.720000pt;}
.fs10_c00447{font-size:33.280000pt;}
.fsf_c00447{font-size:35.840000pt;}
.fs8_c00447{font-size:38.400000pt;}
.fs3_c00447{font-size:40.960000pt;}
.fs4_c00447{font-size:43.520000pt;}
.fsb_c00447{font-size:46.080000pt;}
.fs5_c00447{font-size:48.640000pt;}
.fs9_c00447{font-size:51.200000pt;}
.fs7_c00447{font-size:53.760000pt;}
.fs1_c00447{font-size:56.320000pt;}
.fs6_c00447{font-size:58.880000pt;}
.fsd_c00447{font-size:61.440000pt;}
.fs2_c00447{font-size:64.000000pt;}
.fsc_c00447{font-size:66.560000pt;}
.fs0_c00447{font-size:69.120000pt;}
.fse_c00447{font-size:84.480000pt;}
.y0_c00447{bottom:0.000000pt;}
.y87_c00447{bottom:7.680000pt;}
.y88_c00447{bottom:8.320000pt;}
.y89_c00447{bottom:8.960000pt;}
.y8a_c00447{bottom:9.600000pt;}
.y86_c00447{bottom:11.520000pt;}
.y82_c00447{bottom:43.520000pt;}
.y83_c00447{bottom:44.160000pt;}
.y85_c00447{bottom:44.800000pt;}
.y84_c00447{bottom:46.080000pt;}
.y81_c00447{bottom:46.720000pt;}
.y7b_c00447{bottom:81.920000pt;}
.y7d_c00447{bottom:82.560000pt;}
.y7f_c00447{bottom:83.200000pt;}
.y80_c00447{bottom:83.840000pt;}
.y7e_c00447{bottom:84.480000pt;}
.y7a_c00447{bottom:85.120000pt;}
.y7c_c00447{bottom:85.760000pt;}
.y75_c00447{bottom:120.320000pt;}
.y78_c00447{bottom:120.960000pt;}
.y79_c00447{bottom:121.600000pt;}
.y74_c00447{bottom:122.880000pt;}
.y76_c00447{bottom:123.520000pt;}
.y77_c00447{bottom:124.160000pt;}
.y70_c00447{bottom:158.720000pt;}
.y73_c00447{bottom:160.000000pt;}
.y72_c00447{bottom:160.640000pt;}
.y71_c00447{bottom:161.280000pt;}
.y6f_c00447{bottom:161.920000pt;}
.y6a_c00447{bottom:196.480000pt;}
.y6d_c00447{bottom:197.120000pt;}
.y6e_c00447{bottom:197.760000pt;}
.y6c_c00447{bottom:198.400000pt;}
.y69_c00447{bottom:199.040000pt;}
.y6b_c00447{bottom:199.680000pt;}
.y63_c00447{bottom:234.240000pt;}
.y65_c00447{bottom:235.520000pt;}
.y66_c00447{bottom:236.160000pt;}
.y62_c00447{bottom:236.800000pt;}
.y64_c00447{bottom:237.440000pt;}
.y68_c00447{bottom:238.080000pt;}
.y67_c00447{bottom:239.360000pt;}
.y5d_c00447{bottom:273.280000pt;}
.y5f_c00447{bottom:273.920000pt;}
.y5c_c00447{bottom:274.560000pt;}
.y5e_c00447{bottom:275.200000pt;}
.y60_c00447{bottom:275.840000pt;}
.y61_c00447{bottom:277.120000pt;}
.y57_c00447{bottom:311.040000pt;}
.y58_c00447{bottom:311.680000pt;}
.y5a_c00447{bottom:312.320000pt;}
.y59_c00447{bottom:313.600000pt;}
.y56_c00447{bottom:314.240000pt;}
.y5b_c00447{bottom:314.880000pt;}
.y51_c00447{bottom:350.080000pt;}
.y54_c00447{bottom:350.720000pt;}
.y53_c00447{bottom:351.360000pt;}
.y50_c00447{bottom:352.000000pt;}
.y52_c00447{bottom:352.640000pt;}
.y55_c00447{bottom:353.920000pt;}
.y4a_c00447{bottom:387.840000pt;}
.y4d_c00447{bottom:388.480000pt;}
.y4c_c00447{bottom:389.120000pt;}
.y4f_c00447{bottom:389.760000pt;}
.y49_c00447{bottom:390.400000pt;}
.y4e_c00447{bottom:391.040000pt;}
.y4b_c00447{bottom:391.680000pt;}
.y44_c00447{bottom:426.240000pt;}
.y47_c00447{bottom:426.880000pt;}
.y46_c00447{bottom:427.520000pt;}
.y43_c00447{bottom:428.800000pt;}
.y45_c00447{bottom:429.440000pt;}
.y48_c00447{bottom:430.080000pt;}
.y42_c00447{bottom:465.280000pt;}
.y41_c00447{bottom:468.480000pt;}
.y3e_c00447{bottom:493.440000pt;}
.y40_c00447{bottom:494.720000pt;}
.y3c_c00447{bottom:495.360000pt;}
.y3f_c00447{bottom:496.640000pt;}
.y3d_c00447{bottom:497.280000pt;}
.y3b_c00447{bottom:532.480000pt;}
.y3a_c00447{bottom:535.040000pt;}
.y35_c00447{bottom:560.000000pt;}
.y36_c00447{bottom:561.280000pt;}
.y34_c00447{bottom:561.920000pt;}
.y37_c00447{bottom:562.560000pt;}
.y38_c00447{bottom:563.840000pt;}
.y39_c00447{bottom:564.480000pt;}
.y2f_c00447{bottom:598.400000pt;}
.y32_c00447{bottom:599.040000pt;}
.y30_c00447{bottom:599.680000pt;}
.y2e_c00447{bottom:600.320000pt;}
.y31_c00447{bottom:601.600000pt;}
.y33_c00447{bottom:602.240000pt;}
.y2d_c00447{bottom:631.040000pt;}
.y29_c00447{bottom:636.800000pt;}
.y2b_c00447{bottom:637.440000pt;}
.y2c_c00447{bottom:638.080000pt;}
.y28_c00447{bottom:638.720000pt;}
.y2a_c00447{bottom:640.000000pt;}
.y27_c00447{bottom:674.560000pt;}
.y26_c00447{bottom:678.400000pt;}
.y20_c00447{bottom:702.720000pt;}
.y24_c00447{bottom:704.000000pt;}
.y1f_c00447{bottom:704.640000pt;}
.y25_c00447{bottom:705.280000pt;}
.y22_c00447{bottom:705.920000pt;}
.y23_c00447{bottom:706.560000pt;}
.y21_c00447{bottom:707.200000pt;}
.y1c_c00447{bottom:741.760000pt;}
.y1d_c00447{bottom:742.400000pt;}
.y1b_c00447{bottom:743.040000pt;}
.y1e_c00447{bottom:744.960000pt;}
.y18_c00447{bottom:779.520000pt;}
.y19_c00447{bottom:780.160000pt;}
.y17_c00447{bottom:780.800000pt;}
.y1a_c00447{bottom:782.720000pt;}
.y13_c00447{bottom:817.280000pt;}
.y16_c00447{bottom:817.920000pt;}
.y15_c00447{bottom:818.560000pt;}
.y12_c00447{bottom:819.200000pt;}
.y14_c00447{bottom:820.480000pt;}
.ye_c00447{bottom:855.680000pt;}
.y10_c00447{bottom:856.320000pt;}
.yd_c00447{bottom:856.960000pt;}
.y11_c00447{bottom:857.600000pt;}
.yf_c00447{bottom:858.880000pt;}
.yb_c00447{bottom:893.440000pt;}
.y8_c00447{bottom:894.080000pt;}
.yc_c00447{bottom:894.720000pt;}
.y9_c00447{bottom:895.360000pt;}
.y7_c00447{bottom:896.000000pt;}
.ya_c00447{bottom:896.640000pt;}
.y3_c00447{bottom:932.480000pt;}
.y6_c00447{bottom:933.120000pt;}
.y4_c00447{bottom:933.760000pt;}
.y2_c00447{bottom:934.400000pt;}
.y5_c00447{bottom:935.680000pt;}
.y1_c00447{bottom:1002.880000pt;}
.hb_c00447{height:27.645000pt;}
.h11_c00447{height:29.948750pt;}
.h10_c00447{height:32.252500pt;}
.h9_c00447{height:34.556250pt;}
.h4_c00447{height:36.860000pt;}
.h5_c00447{height:39.163750pt;}
.hc_c00447{height:41.467500pt;}
.h6_c00447{height:43.771250pt;}
.ha_c00447{height:46.075000pt;}
.h8_c00447{height:48.378750pt;}
.h2_c00447{height:50.682500pt;}
.h7_c00447{height:52.986250pt;}
.he_c00447{height:55.290000pt;}
.h3_c00447{height:57.593750pt;}
.hd_c00447{height:59.897500pt;}
.h1_c00447{height:62.201250pt;}
.hf_c00447{height:76.023750pt;}
.h0_c00447{height:1040.000000pt;}
.w0_c00447{width:695.040000pt;}
.w1_c00447{width:695.333333pt;}
.x0_c00447{left:0.000000pt;}
.x2_c00447{left:51.840000pt;}
.x27_c00447{left:53.120000pt;}
.x3_c00447{left:118.400000pt;}
.x21_c00447{left:137.600000pt;}
.x12_c00447{left:157.440000pt;}
.x17_c00447{left:167.680000pt;}
.x1a_c00447{left:177.280000pt;}
.x22_c00447{left:186.240000pt;}
.x25_c00447{left:204.160000pt;}
.x4_c00447{left:205.440000pt;}
.x23_c00447{left:214.400000pt;}
.x1b_c00447{left:224.000000pt;}
.x29_c00447{left:234.240000pt;}
.xe_c00447{left:243.840000pt;}
.x5_c00447{left:253.440000pt;}
.x1c_c00447{left:263.040000pt;}
.x15_c00447{left:282.240000pt;}
.x6_c00447{left:291.840000pt;}
.xf_c00447{left:293.120000pt;}
.x24_c00447{left:301.440000pt;}
.x1d_c00447{left:311.680000pt;}
.x18_c00447{left:320.640000pt;}
.x10_c00447{left:330.240000pt;}
.x2c_c00447{left:339.840000pt;}
.x1e_c00447{left:349.440000pt;}
.x2a_c00447{left:359.040000pt;}
.x16_c00447{left:369.280000pt;}
.x13_c00447{left:378.240000pt;}
.xb_c00447{left:387.840000pt;}
.x19_c00447{left:397.440000pt;}
.x11_c00447{left:417.280000pt;}
.x14_c00447{left:426.880000pt;}
.xc_c00447{left:437.760000pt;}
.x7_c00447{left:476.160000pt;}
.x28_c00447{left:522.880000pt;}
.x8_c00447{left:524.160000pt;}
.x26_c00447{left:533.760000pt;}
.x2b_c00447{left:545.280000pt;}
.x1f_c00447{left:552.960000pt;}
.x20_c00447{left:583.040000pt;}
.x9_c00447{left:591.360000pt;}
.x2d_c00447{left:592.640000pt;}
.x1_c00447{left:610.560000pt;}
.xa_c00447{left:620.800000pt;}
.xd_c00447{left:639.360000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ee2c0239ecd4fdaf03e7c9e5.woff2')format("woff");}.ff1_c00448{font-family:ff1_c00448;line-height:1.109863;font-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_c00448{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.me_c00448{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);}
.m41_c00448{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m39_c00448{transform:matrix(0.238800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238800,0.000000,0.000000,0.250000,0,0);}
.m35_c00448{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m3c_c00448{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m4_c00448{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00448{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);}
.m29_c00448{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m7_c00448{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_c00448{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);}
.m2c_c00448{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m10_c00448{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m3_c00448{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);}
.m25_c00448{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m5_c00448{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m15_c00448{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m9_c00448{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m2_c00448{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00448{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m40_c00448{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m8_c00448{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m18_c00448{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m21_c00448{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m20_c00448{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mb_c00448{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00448{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m42_c00448{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m26_c00448{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m30_c00448{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m46_c00448{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m12_c00448{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00448{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m32_c00448{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mc_c00448{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.md_c00448{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_c00448{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m22_c00448{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);}
.m28_c00448{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m36_c00448{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m17_c00448{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00448{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m13_c00448{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m6_c00448{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m0_c00448{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m31_c00448{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);}
.m3f_c00448{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);}
.m24_c00448{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00448{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00448{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);}
.m34_c00448{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);}
.mf_c00448{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00448{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m44_c00448{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m43_c00448{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00448{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);}
.m38_c00448{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00448{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00448{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.ma_c00448{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m23_c00448{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);}
.m33_c00448{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00448{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m19_c00448{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m16_c00448{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m37_c00448{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00448{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00448{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00448{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m45_c00448{transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);}
.m27_c00448{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.v3_c00448{vertical-align:-8.640000px;}
.v1_c00448{vertical-align:-5.760000px;}
.v2_c00448{vertical-align:-2.880000px;}
.v0_c00448{vertical-align:0.000000px;}
.ls3_c00448{letter-spacing:0.000000px;}
.ls1_c00448{letter-spacing:79.176960px;}
.ls0_c00448{letter-spacing:83.257680px;}
.ls2_c00448{letter-spacing:96.961680px;}
.sc__c00448{text-shadow:none;}
.sc0_c00448{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00448{-webkit-text-stroke:0px transparent;}
.sc0_c00448{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00448{word-spacing:0.000000px;}
.fc0_c00448{color:transparent;}
.fsb_c00448{font-size:34.560000px;}
.fs9_c00448{font-size:43.200000px;}
.fs7_c00448{font-size:46.080000px;}
.fsc_c00448{font-size:48.960000px;}
.fs5_c00448{font-size:51.840000px;}
.fs6_c00448{font-size:54.720000px;}
.fs8_c00448{font-size:57.600000px;}
.fs0_c00448{font-size:60.480000px;}
.fs2_c00448{font-size:63.360000px;}
.fsa_c00448{font-size:66.240000px;}
.fs4_c00448{font-size:69.120000px;}
.fs1_c00448{font-size:72.000000px;}
.fs3_c00448{font-size:74.880000px;}
.y0_c00448{bottom:0.000000px;}
.y86_c00448{bottom:41.040000px;}
.y84_c00448{bottom:41.760000px;}
.y83_c00448{bottom:42.480000px;}
.y85_c00448{bottom:44.640000px;}
.y7e_c00448{bottom:72.000000px;}
.y7f_c00448{bottom:73.440000px;}
.y82_c00448{bottom:74.880000px;}
.y7d_c00448{bottom:75.600000px;}
.y80_c00448{bottom:76.320000px;}
.y81_c00448{bottom:77.040000px;}
.y78_c00448{bottom:115.200000px;}
.y7b_c00448{bottom:115.920000px;}
.y7a_c00448{bottom:117.360000px;}
.y7c_c00448{bottom:118.080000px;}
.y77_c00448{bottom:118.800000px;}
.y79_c00448{bottom:119.520000px;}
.y73_c00448{bottom:158.400000px;}
.y75_c00448{bottom:159.120000px;}
.y74_c00448{bottom:159.840000px;}
.y87_c00448{bottom:160.560000px;}
.y76_c00448{bottom:161.280000px;}
.y72_c00448{bottom:162.000000px;}
.y71_c00448{bottom:201.600000px;}
.y6f_c00448{bottom:203.040000px;}
.y70_c00448{bottom:205.200000px;}
.y6b_c00448{bottom:234.000000px;}
.y6c_c00448{bottom:235.440000px;}
.y6a_c00448{bottom:236.880000px;}
.y6e_c00448{bottom:237.600000px;}
.y6d_c00448{bottom:238.320000px;}
.y62_c00448{bottom:276.480000px;}
.y65_c00448{bottom:277.200000px;}
.y69_c00448{bottom:277.920000px;}
.y63_c00448{bottom:278.640000px;}
.y68_c00448{bottom:279.360000px;}
.y61_c00448{bottom:280.080000px;}
.y64_c00448{bottom:280.800000px;}
.y5d_c00448{bottom:320.400000px;}
.y60_c00448{bottom:321.120000px;}
.y5e_c00448{bottom:321.840000px;}
.y67_c00448{bottom:322.560000px;}
.y5c_c00448{bottom:323.280000px;}
.y5f_c00448{bottom:324.000000px;}
.y66_c00448{bottom:324.720000px;}
.y5b_c00448{bottom:363.600000px;}
.y59_c00448{bottom:365.040000px;}
.y5a_c00448{bottom:366.480000px;}
.y58_c00448{bottom:367.920000px;}
.y55_c00448{bottom:396.000000px;}
.y56_c00448{bottom:397.440000px;}
.y54_c00448{bottom:398.160000px;}
.y57_c00448{bottom:399.600000px;}
.y53_c00448{bottom:432.000000px;}
.y4d_c00448{bottom:438.480000px;}
.y50_c00448{bottom:439.200000px;}
.y4f_c00448{bottom:439.920000px;}
.y52_c00448{bottom:440.640000px;}
.y51_c00448{bottom:441.360000px;}
.y4c_c00448{bottom:442.080000px;}
.y4e_c00448{bottom:442.800000px;}
.y4b_c00448{bottom:482.400000px;}
.y49_c00448{bottom:483.120000px;}
.y4a_c00448{bottom:486.000000px;}
.y45_c00448{bottom:514.080000px;}
.y46_c00448{bottom:514.800000px;}
.y47_c00448{bottom:515.520000px;}
.y44_c00448{bottom:516.240000px;}
.y48_c00448{bottom:517.680000px;}
.y3f_c00448{bottom:556.560000px;}
.y43_c00448{bottom:557.280000px;}
.y40_c00448{bottom:558.000000px;}
.y41_c00448{bottom:558.720000px;}
.y3e_c00448{bottom:559.440000px;}
.y42_c00448{bottom:560.160000px;}
.y39_c00448{bottom:599.760000px;}
.y3b_c00448{bottom:600.480000px;}
.y3d_c00448{bottom:601.200000px;}
.y38_c00448{bottom:601.920000px;}
.y3c_c00448{bottom:602.640000px;}
.y3a_c00448{bottom:603.360000px;}
.y32_c00448{bottom:642.240000px;}
.y34_c00448{bottom:642.960000px;}
.y35_c00448{bottom:643.680000px;}
.y37_c00448{bottom:644.400000px;}
.y31_c00448{bottom:645.120000px;}
.y36_c00448{bottom:645.840000px;}
.y33_c00448{bottom:646.560000px;}
.y2c_c00448{bottom:684.720000px;}
.y2f_c00448{bottom:685.440000px;}
.y2d_c00448{bottom:686.160000px;}
.y30_c00448{bottom:686.880000px;}
.y2b_c00448{bottom:687.600000px;}
.y2e_c00448{bottom:688.320000px;}
.y29_c00448{bottom:727.920000px;}
.y26_c00448{bottom:728.640000px;}
.y27_c00448{bottom:729.360000px;}
.y25_c00448{bottom:730.800000px;}
.y28_c00448{bottom:731.520000px;}
.y24_c00448{bottom:740.880000px;}
.y22_c00448{bottom:771.120000px;}
.y2a_c00448{bottom:771.840000px;}
.y21_c00448{bottom:772.560000px;}
.y23_c00448{bottom:774.720000px;}
.y20_c00448{bottom:814.320000px;}
.y1f_c00448{bottom:818.640000px;}
.y1b_c00448{bottom:846.720000px;}
.y1e_c00448{bottom:847.440000px;}
.y1a_c00448{bottom:848.160000px;}
.y1d_c00448{bottom:849.600000px;}
.y1c_c00448{bottom:850.320000px;}
.yd_c00448{bottom:889.200000px;}
.y19_c00448{bottom:889.920000px;}
.yf_c00448{bottom:890.640000px;}
.yc_c00448{bottom:891.360000px;}
.ye_c00448{bottom:892.800000px;}
.ya_c00448{bottom:931.680000px;}
.yb_c00448{bottom:932.400000px;}
.y17_c00448{bottom:933.120000px;}
.y9_c00448{bottom:933.840000px;}
.y18_c00448{bottom:936.720000px;}
.y7_c00448{bottom:974.880000px;}
.y8_c00448{bottom:975.600000px;}
.y6_c00448{bottom:976.320000px;}
.y16_c00448{bottom:977.040000px;}
.y5_c00448{bottom:1017.360000px;}
.y14_c00448{bottom:1018.800000px;}
.y4_c00448{bottom:1019.520000px;}
.y13_c00448{bottom:1020.240000px;}
.y15_c00448{bottom:1020.960000px;}
.y2_c00448{bottom:1061.280000px;}
.y1_c00448{bottom:1062.000000px;}
.y3_c00448{bottom:1062.720000px;}
.y11_c00448{bottom:1064.160000px;}
.y12_c00448{bottom:1065.600000px;}
.y10_c00448{bottom:1122.480000px;}
.hd_c00448{height:31.100625px;}
.hb_c00448{height:38.875781px;}
.h9_c00448{height:41.467500px;}
.he_c00448{height:44.059219px;}
.h7_c00448{height:46.650937px;}
.h8_c00448{height:49.242656px;}
.ha_c00448{height:51.834375px;}
.h2_c00448{height:54.426094px;}
.h4_c00448{height:57.017812px;}
.hc_c00448{height:59.609531px;}
.h6_c00448{height:62.201250px;}
.h3_c00448{height:64.792969px;}
.h5_c00448{height:67.384687px;}
.h0_c00448{height:1172.160000px;}
.h1_c00448{height:1172.250000px;}
.w0_c00448{width:781.920000px;}
.w1_c00448{width:782.250000px;}
.x0_c00448{left:0.000000px;}
.x1_c00448{left:61.200000px;}
.x14_c00448{left:62.640000px;}
.x2_c00448{left:136.800000px;}
.x30_c00448{left:138.240000px;}
.x13_c00448{left:179.280000px;}
.x2c_c00448{left:190.080000px;}
.x3_c00448{left:234.000000px;}
.x19_c00448{left:235.440000px;}
.x31_c00448{left:245.520000px;}
.x1c_c00448{left:266.400000px;}
.x18_c00448{left:267.840000px;}
.x15_c00448{left:277.920000px;}
.x2a_c00448{left:287.280000px;}
.x5_c00448{left:289.440000px;}
.xf_c00448{left:300.240000px;}
.x28_c00448{left:311.040000px;}
.x29_c00448{left:320.400000px;}
.x1d_c00448{left:321.840000px;}
.x16_c00448{left:332.640000px;}
.x10_c00448{left:342.000000px;}
.x26_c00448{left:352.800000px;}
.x22_c00448{left:363.600000px;}
.x6_c00448{left:375.120000px;}
.x2d_c00448{left:386.640000px;}
.x23_c00448{left:396.720000px;}
.x1e_c00448{left:407.520000px;}
.x11_c00448{left:417.600000px;}
.x2b_c00448{left:419.040000px;}
.x17_c00448{left:428.400000px;}
.x2f_c00448{left:440.640000px;}
.x27_c00448{left:451.440000px;}
.x1f_c00448{left:462.240000px;}
.x24_c00448{left:473.040000px;}
.x12_c00448{left:483.120000px;}
.x20_c00448{left:498.960000px;}
.x25_c00448{left:516.240000px;}
.x4_c00448{left:537.840000px;}
.x21_c00448{left:543.600000px;}
.x2e_c00448{left:548.640000px;}
.xe_c00448{left:570.240000px;}
.xb_c00448{left:591.120000px;}
.x1b_c00448{left:592.560000px;}
.x8_c00448{left:624.960000px;}
.x1a_c00448{left:658.080000px;}
.x9_c00448{left:667.440000px;}
.xc_c00448{left:668.880000px;}
.x7_c00448{left:689.040000px;}
.xa_c00448{left:701.280000px;}
.xd_c00448{left:721.440000px;}
@media print{
.v3_c00448{vertical-align:-7.680000pt;}
.v1_c00448{vertical-align:-5.120000pt;}
.v2_c00448{vertical-align:-2.560000pt;}
.v0_c00448{vertical-align:0.000000pt;}
.ls3_c00448{letter-spacing:0.000000pt;}
.ls1_c00448{letter-spacing:70.379520pt;}
.ls0_c00448{letter-spacing:74.006827pt;}
.ls2_c00448{letter-spacing:86.188160pt;}
.ws0_c00448{word-spacing:0.000000pt;}
.fsb_c00448{font-size:30.720000pt;}
.fs9_c00448{font-size:38.400000pt;}
.fs7_c00448{font-size:40.960000pt;}
.fsc_c00448{font-size:43.520000pt;}
.fs5_c00448{font-size:46.080000pt;}
.fs6_c00448{font-size:48.640000pt;}
.fs8_c00448{font-size:51.200000pt;}
.fs0_c00448{font-size:53.760000pt;}
.fs2_c00448{font-size:56.320000pt;}
.fsa_c00448{font-size:58.880000pt;}
.fs4_c00448{font-size:61.440000pt;}
.fs1_c00448{font-size:64.000000pt;}
.fs3_c00448{font-size:66.560000pt;}
.y0_c00448{bottom:0.000000pt;}
.y86_c00448{bottom:36.480000pt;}
.y84_c00448{bottom:37.120000pt;}
.y83_c00448{bottom:37.760000pt;}
.y85_c00448{bottom:39.680000pt;}
.y7e_c00448{bottom:64.000000pt;}
.y7f_c00448{bottom:65.280000pt;}
.y82_c00448{bottom:66.560000pt;}
.y7d_c00448{bottom:67.200000pt;}
.y80_c00448{bottom:67.840000pt;}
.y81_c00448{bottom:68.480000pt;}
.y78_c00448{bottom:102.400000pt;}
.y7b_c00448{bottom:103.040000pt;}
.y7a_c00448{bottom:104.320000pt;}
.y7c_c00448{bottom:104.960000pt;}
.y77_c00448{bottom:105.600000pt;}
.y79_c00448{bottom:106.240000pt;}
.y73_c00448{bottom:140.800000pt;}
.y75_c00448{bottom:141.440000pt;}
.y74_c00448{bottom:142.080000pt;}
.y87_c00448{bottom:142.720000pt;}
.y76_c00448{bottom:143.360000pt;}
.y72_c00448{bottom:144.000000pt;}
.y71_c00448{bottom:179.200000pt;}
.y6f_c00448{bottom:180.480000pt;}
.y70_c00448{bottom:182.400000pt;}
.y6b_c00448{bottom:208.000000pt;}
.y6c_c00448{bottom:209.280000pt;}
.y6a_c00448{bottom:210.560000pt;}
.y6e_c00448{bottom:211.200000pt;}
.y6d_c00448{bottom:211.840000pt;}
.y62_c00448{bottom:245.760000pt;}
.y65_c00448{bottom:246.400000pt;}
.y69_c00448{bottom:247.040000pt;}
.y63_c00448{bottom:247.680000pt;}
.y68_c00448{bottom:248.320000pt;}
.y61_c00448{bottom:248.960000pt;}
.y64_c00448{bottom:249.600000pt;}
.y5d_c00448{bottom:284.800000pt;}
.y60_c00448{bottom:285.440000pt;}
.y5e_c00448{bottom:286.080000pt;}
.y67_c00448{bottom:286.720000pt;}
.y5c_c00448{bottom:287.360000pt;}
.y5f_c00448{bottom:288.000000pt;}
.y66_c00448{bottom:288.640000pt;}
.y5b_c00448{bottom:323.200000pt;}
.y59_c00448{bottom:324.480000pt;}
.y5a_c00448{bottom:325.760000pt;}
.y58_c00448{bottom:327.040000pt;}
.y55_c00448{bottom:352.000000pt;}
.y56_c00448{bottom:353.280000pt;}
.y54_c00448{bottom:353.920000pt;}
.y57_c00448{bottom:355.200000pt;}
.y53_c00448{bottom:384.000000pt;}
.y4d_c00448{bottom:389.760000pt;}
.y50_c00448{bottom:390.400000pt;}
.y4f_c00448{bottom:391.040000pt;}
.y52_c00448{bottom:391.680000pt;}
.y51_c00448{bottom:392.320000pt;}
.y4c_c00448{bottom:392.960000pt;}
.y4e_c00448{bottom:393.600000pt;}
.y4b_c00448{bottom:428.800000pt;}
.y49_c00448{bottom:429.440000pt;}
.y4a_c00448{bottom:432.000000pt;}
.y45_c00448{bottom:456.960000pt;}
.y46_c00448{bottom:457.600000pt;}
.y47_c00448{bottom:458.240000pt;}
.y44_c00448{bottom:458.880000pt;}
.y48_c00448{bottom:460.160000pt;}
.y3f_c00448{bottom:494.720000pt;}
.y43_c00448{bottom:495.360000pt;}
.y40_c00448{bottom:496.000000pt;}
.y41_c00448{bottom:496.640000pt;}
.y3e_c00448{bottom:497.280000pt;}
.y42_c00448{bottom:497.920000pt;}
.y39_c00448{bottom:533.120000pt;}
.y3b_c00448{bottom:533.760000pt;}
.y3d_c00448{bottom:534.400000pt;}
.y38_c00448{bottom:535.040000pt;}
.y3c_c00448{bottom:535.680000pt;}
.y3a_c00448{bottom:536.320000pt;}
.y32_c00448{bottom:570.880000pt;}
.y34_c00448{bottom:571.520000pt;}
.y35_c00448{bottom:572.160000pt;}
.y37_c00448{bottom:572.800000pt;}
.y31_c00448{bottom:573.440000pt;}
.y36_c00448{bottom:574.080000pt;}
.y33_c00448{bottom:574.720000pt;}
.y2c_c00448{bottom:608.640000pt;}
.y2f_c00448{bottom:609.280000pt;}
.y2d_c00448{bottom:609.920000pt;}
.y30_c00448{bottom:610.560000pt;}
.y2b_c00448{bottom:611.200000pt;}
.y2e_c00448{bottom:611.840000pt;}
.y29_c00448{bottom:647.040000pt;}
.y26_c00448{bottom:647.680000pt;}
.y27_c00448{bottom:648.320000pt;}
.y25_c00448{bottom:649.600000pt;}
.y28_c00448{bottom:650.240000pt;}
.y24_c00448{bottom:658.560000pt;}
.y22_c00448{bottom:685.440000pt;}
.y2a_c00448{bottom:686.080000pt;}
.y21_c00448{bottom:686.720000pt;}
.y23_c00448{bottom:688.640000pt;}
.y20_c00448{bottom:723.840000pt;}
.y1f_c00448{bottom:727.680000pt;}
.y1b_c00448{bottom:752.640000pt;}
.y1e_c00448{bottom:753.280000pt;}
.y1a_c00448{bottom:753.920000pt;}
.y1d_c00448{bottom:755.200000pt;}
.y1c_c00448{bottom:755.840000pt;}
.yd_c00448{bottom:790.400000pt;}
.y19_c00448{bottom:791.040000pt;}
.yf_c00448{bottom:791.680000pt;}
.yc_c00448{bottom:792.320000pt;}
.ye_c00448{bottom:793.600000pt;}
.ya_c00448{bottom:828.160000pt;}
.yb_c00448{bottom:828.800000pt;}
.y17_c00448{bottom:829.440000pt;}
.y9_c00448{bottom:830.080000pt;}
.y18_c00448{bottom:832.640000pt;}
.y7_c00448{bottom:866.560000pt;}
.y8_c00448{bottom:867.200000pt;}
.y6_c00448{bottom:867.840000pt;}
.y16_c00448{bottom:868.480000pt;}
.y5_c00448{bottom:904.320000pt;}
.y14_c00448{bottom:905.600000pt;}
.y4_c00448{bottom:906.240000pt;}
.y13_c00448{bottom:906.880000pt;}
.y15_c00448{bottom:907.520000pt;}
.y2_c00448{bottom:943.360000pt;}
.y1_c00448{bottom:944.000000pt;}
.y3_c00448{bottom:944.640000pt;}
.y11_c00448{bottom:945.920000pt;}
.y12_c00448{bottom:947.200000pt;}
.y10_c00448{bottom:997.760000pt;}
.hd_c00448{height:27.645000pt;}
.hb_c00448{height:34.556250pt;}
.h9_c00448{height:36.860000pt;}
.he_c00448{height:39.163750pt;}
.h7_c00448{height:41.467500pt;}
.h8_c00448{height:43.771250pt;}
.ha_c00448{height:46.075000pt;}
.h2_c00448{height:48.378750pt;}
.h4_c00448{height:50.682500pt;}
.hc_c00448{height:52.986250pt;}
.h6_c00448{height:55.290000pt;}
.h3_c00448{height:57.593750pt;}
.h5_c00448{height:59.897500pt;}
.h0_c00448{height:1041.920000pt;}
.h1_c00448{height:1042.000000pt;}
.w0_c00448{width:695.040000pt;}
.w1_c00448{width:695.333333pt;}
.x0_c00448{left:0.000000pt;}
.x1_c00448{left:54.400000pt;}
.x14_c00448{left:55.680000pt;}
.x2_c00448{left:121.600000pt;}
.x30_c00448{left:122.880000pt;}
.x13_c00448{left:159.360000pt;}
.x2c_c00448{left:168.960000pt;}
.x3_c00448{left:208.000000pt;}
.x19_c00448{left:209.280000pt;}
.x31_c00448{left:218.240000pt;}
.x1c_c00448{left:236.800000pt;}
.x18_c00448{left:238.080000pt;}
.x15_c00448{left:247.040000pt;}
.x2a_c00448{left:255.360000pt;}
.x5_c00448{left:257.280000pt;}
.xf_c00448{left:266.880000pt;}
.x28_c00448{left:276.480000pt;}
.x29_c00448{left:284.800000pt;}
.x1d_c00448{left:286.080000pt;}
.x16_c00448{left:295.680000pt;}
.x10_c00448{left:304.000000pt;}
.x26_c00448{left:313.600000pt;}
.x22_c00448{left:323.200000pt;}
.x6_c00448{left:333.440000pt;}
.x2d_c00448{left:343.680000pt;}
.x23_c00448{left:352.640000pt;}
.x1e_c00448{left:362.240000pt;}
.x11_c00448{left:371.200000pt;}
.x2b_c00448{left:372.480000pt;}
.x17_c00448{left:380.800000pt;}
.x2f_c00448{left:391.680000pt;}
.x27_c00448{left:401.280000pt;}
.x1f_c00448{left:410.880000pt;}
.x24_c00448{left:420.480000pt;}
.x12_c00448{left:429.440000pt;}
.x20_c00448{left:443.520000pt;}
.x25_c00448{left:458.880000pt;}
.x4_c00448{left:478.080000pt;}
.x21_c00448{left:483.200000pt;}
.x2e_c00448{left:487.680000pt;}
.xe_c00448{left:506.880000pt;}
.xb_c00448{left:525.440000pt;}
.x1b_c00448{left:526.720000pt;}
.x8_c00448{left:555.520000pt;}
.x1a_c00448{left:584.960000pt;}
.x9_c00448{left:593.280000pt;}
.xc_c00448{left:594.560000pt;}
.x7_c00448{left:612.480000pt;}
.xa_c00448{left:623.360000pt;}
.xd_c00448{left:641.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_093f9879d2b6f0eed0fa9ab0.woff2')format("woff");}.ff1_c00449{font-family:ff1_c00449;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m19_c00449{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m23_c00449{transform:matrix(0.244200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244200,0.000000,0.000000,0.250000,0,0);}
.m13_c00449{transform:matrix(0.246275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246275,0.000000,0.000000,0.250000,0,0);}
.m3c_c00449{transform:matrix(0.246775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246775,0.000000,0.000000,0.250000,0,0);}
.m42_c00449{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m35_c00449{transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);}
.m29_c00449{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00449{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);}
.m40_c00449{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m12_c00449{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m9_c00449{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_c00449{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m38_c00449{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m5_c00449{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1_c00449{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m10_c00449{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00449{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);}
.m3f_c00449{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m39_c00449{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00449{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m11_c00449{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00449{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00449{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m36_c00449{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.mc_c00449{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m24_c00449{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m17_c00449{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00449{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m33_c00449{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m37_c00449{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3_c00449{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m21_c00449{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m4_c00449{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m2_c00449{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.ma_c00449{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.mf_c00449{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m30_c00449{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);}
.m18_c00449{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m26_c00449{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_c00449{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00449{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m14_c00449{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);}
.m0_c00449{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m20_c00449{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);}
.m28_c00449{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);}
.me_c00449{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m7_c00449{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00449{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m16_c00449{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);}
.m3e_c00449{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00449{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m27_c00449{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m34_c00449{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);}
.m6_c00449{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.md_c00449{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);}
.m2a_c00449{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00449{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m31_c00449{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00449{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m25_c00449{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00449{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00449{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m32_c00449{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m15_c00449{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00449{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00449{transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);}
.m41_c00449{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.v0_c00449{vertical-align:0.000000px;}
.v1_c00449{vertical-align:2.880000px;}
.ls0_c00449{letter-spacing:0.000000px;}
.sc__c00449{text-shadow:none;}
.sc0_c00449{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00449{-webkit-text-stroke:0px transparent;}
.sc0_c00449{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00449{word-spacing:0.000000px;}
.ws0_c00449{word-spacing:1.100880px;}
.fc0_c00449{color:transparent;}
.fsb_c00449{font-size:34.560000px;}
.fs8_c00449{font-size:37.440000px;}
.fse_c00449{font-size:43.200000px;}
.fs3_c00449{font-size:46.080000px;}
.fs4_c00449{font-size:48.960000px;}
.fs6_c00449{font-size:51.840000px;}
.fsa_c00449{font-size:54.720000px;}
.fs7_c00449{font-size:57.600000px;}
.fs0_c00449{font-size:60.480000px;}
.fsc_c00449{font-size:63.360000px;}
.fs9_c00449{font-size:66.240000px;}
.fs5_c00449{font-size:69.120000px;}
.fs1_c00449{font-size:72.000000px;}
.fsd_c00449{font-size:74.880000px;}
.fs2_c00449{font-size:100.800000px;}
.y0_c00449{bottom:0.000000px;}
.y7d_c00449{bottom:62.640000px;}
.y7c_c00449{bottom:65.520000px;}
.y8b_c00449{bottom:66.240000px;}
.y8c_c00449{bottom:66.960000px;}
.y80_c00449{bottom:67.680000px;}
.y8d_c00449{bottom:69.120000px;}
.y7b_c00449{bottom:105.840000px;}
.y89_c00449{bottom:108.720000px;}
.y79_c00449{bottom:109.440000px;}
.y7a_c00449{bottom:110.160000px;}
.y7f_c00449{bottom:111.600000px;}
.y8a_c00449{bottom:112.320000px;}
.y78_c00449{bottom:149.040000px;}
.y76_c00449{bottom:151.920000px;}
.y77_c00449{bottom:152.640000px;}
.y88_c00449{bottom:153.360000px;}
.y7e_c00449{bottom:154.080000px;}
.y6d_c00449{bottom:192.240000px;}
.y6f_c00449{bottom:192.960000px;}
.y86_c00449{bottom:195.120000px;}
.y6c_c00449{bottom:195.840000px;}
.y6e_c00449{bottom:196.560000px;}
.y87_c00449{bottom:198.000000px;}
.y69_c00449{bottom:234.720000px;}
.y6b_c00449{bottom:236.160000px;}
.y68_c00449{bottom:237.600000px;}
.y75_c00449{bottom:238.320000px;}
.y6a_c00449{bottom:239.040000px;}
.y85_c00449{bottom:240.480000px;}
.y65_c00449{bottom:277.920000px;}
.y67_c00449{bottom:278.640000px;}
.y81_c00449{bottom:280.080000px;}
.y64_c00449{bottom:280.800000px;}
.y66_c00449{bottom:282.240000px;}
.y84_c00449{bottom:282.960000px;}
.y83_c00449{bottom:283.680000px;}
.y82_c00449{bottom:284.400000px;}
.y60_c00449{bottom:320.400000px;}
.y63_c00449{bottom:321.840000px;}
.y5f_c00449{bottom:323.280000px;}
.y73_c00449{bottom:324.000000px;}
.y61_c00449{bottom:324.720000px;}
.y62_c00449{bottom:325.440000px;}
.y74_c00449{bottom:326.160000px;}
.y5b_c00449{bottom:363.600000px;}
.y5e_c00449{bottom:364.320000px;}
.y70_c00449{bottom:365.760000px;}
.y5a_c00449{bottom:366.480000px;}
.y5c_c00449{bottom:367.200000px;}
.y5d_c00449{bottom:367.920000px;}
.y71_c00449{bottom:368.640000px;}
.y72_c00449{bottom:370.080000px;}
.y4d_c00449{bottom:406.080000px;}
.y4f_c00449{bottom:408.240000px;}
.y4c_c00449{bottom:409.680000px;}
.y4e_c00449{bottom:410.400000px;}
.y58_c00449{bottom:411.840000px;}
.y59_c00449{bottom:412.560000px;}
.y4b_c00449{bottom:450.000000px;}
.y49_c00449{bottom:450.720000px;}
.y4a_c00449{bottom:451.440000px;}
.y48_c00449{bottom:454.320000px;}
.y43_c00449{bottom:482.400000px;}
.y44_c00449{bottom:483.840000px;}
.y42_c00449{bottom:484.560000px;}
.y47_c00449{bottom:485.280000px;}
.y45_c00449{bottom:486.000000px;}
.y46_c00449{bottom:486.720000px;}
.y57_c00449{bottom:488.160000px;}
.y41_c00449{bottom:525.600000px;}
.y3f_c00449{bottom:527.760000px;}
.y40_c00449{bottom:529.200000px;}
.y3b_c00449{bottom:557.280000px;}
.y3d_c00449{bottom:559.440000px;}
.y3a_c00449{bottom:560.160000px;}
.y3e_c00449{bottom:560.880000px;}
.y3c_c00449{bottom:561.600000px;}
.y55_c00449{bottom:563.040000px;}
.y56_c00449{bottom:563.760000px;}
.y34_c00449{bottom:601.920000px;}
.y37_c00449{bottom:602.640000px;}
.y38_c00449{bottom:603.360000px;}
.y35_c00449{bottom:604.080000px;}
.y36_c00449{bottom:604.800000px;}
.y39_c00449{bottom:605.520000px;}
.y30_c00449{bottom:632.880000px;}
.y31_c00449{bottom:634.320000px;}
.y2f_c00449{bottom:635.040000px;}
.y33_c00449{bottom:635.760000px;}
.y32_c00449{bottom:637.920000px;}
.y2e_c00449{bottom:677.520000px;}
.y2d_c00449{bottom:679.680000px;}
.y2a_c00449{bottom:709.200000px;}
.y29_c00449{bottom:709.920000px;}
.y2c_c00449{bottom:710.640000px;}
.y53_c00449{bottom:711.360000px;}
.y54_c00449{bottom:712.080000px;}
.y2b_c00449{bottom:712.800000px;}
.y28_c00449{bottom:752.400000px;}
.y26_c00449{bottom:753.120000px;}
.y27_c00449{bottom:755.280000px;}
.y22_c00449{bottom:784.080000px;}
.y23_c00449{bottom:784.800000px;}
.y21_c00449{bottom:785.520000px;}
.y52_c00449{bottom:786.240000px;}
.y24_c00449{bottom:786.960000px;}
.y25_c00449{bottom:787.680000px;}
.y51_c00449{bottom:788.400000px;}
.y20_c00449{bottom:826.560000px;}
.y1e_c00449{bottom:828.000000px;}
.y1f_c00449{bottom:830.160000px;}
.y1a_c00449{bottom:858.240000px;}
.y1c_c00449{bottom:858.960000px;}
.y19_c00449{bottom:860.400000px;}
.y50_c00449{bottom:861.120000px;}
.y1b_c00449{bottom:861.840000px;}
.y1d_c00449{bottom:862.560000px;}
.y18_c00449{bottom:901.440000px;}
.y16_c00449{bottom:902.880000px;}
.y17_c00449{bottom:905.040000px;}
.y11_c00449{bottom:933.840000px;}
.y12_c00449{bottom:934.560000px;}
.y10_c00449{bottom:935.280000px;}
.y15_c00449{bottom:936.000000px;}
.y13_c00449{bottom:936.720000px;}
.y14_c00449{bottom:937.440000px;}
.yc_c00449{bottom:968.400000px;}
.y8_c00449{bottom:976.320000px;}
.yb_c00449{bottom:977.040000px;}
.y7_c00449{bottom:977.760000px;}
.yf_c00449{bottom:978.480000px;}
.ya_c00449{bottom:979.200000px;}
.y9_c00449{bottom:979.920000px;}
.y6_c00449{bottom:1019.520000px;}
.y4_c00449{bottom:1020.960000px;}
.y5_c00449{bottom:1023.120000px;}
.y2_c00449{bottom:1051.920000px;}
.y3_c00449{bottom:1052.640000px;}
.y1_c00449{bottom:1053.360000px;}
.ye_c00449{bottom:1054.080000px;}
.yd_c00449{bottom:1128.240000px;}
.hd_c00449{height:31.100625px;}
.ha_c00449{height:33.692344px;}
.h10_c00449{height:38.875781px;}
.h5_c00449{height:41.467500px;}
.h6_c00449{height:44.059219px;}
.h8_c00449{height:46.650937px;}
.hc_c00449{height:49.242656px;}
.h9_c00449{height:51.834375px;}
.h2_c00449{height:54.426094px;}
.he_c00449{height:57.017812px;}
.hb_c00449{height:59.609531px;}
.h7_c00449{height:62.201250px;}
.h3_c00449{height:64.792969px;}
.hf_c00449{height:67.384687px;}
.h4_c00449{height:90.710156px;}
.h1_c00449{height:1167.750000px;}
.h0_c00449{height:1167.840000px;}
.w0_c00449{width:775.440000px;}
.w1_c00449{width:775.500000px;}
.x0_c00449{left:0.000000px;}
.x1_c00449{left:54.000000px;}
.x27_c00449{left:55.440000px;}
.x38_c00449{left:56.880000px;}
.x7_c00449{left:128.160000px;}
.x2_c00449{left:129.600000px;}
.x35_c00449{left:131.040000px;}
.x21_c00449{left:172.800000px;}
.x2b_c00449{left:174.240000px;}
.x8_c00449{left:183.600000px;}
.x39_c00449{left:185.040000px;}
.x17_c00449{left:193.680000px;}
.x9_c00449{left:226.080000px;}
.x1d_c00449{left:227.520000px;}
.x25_c00449{left:236.160000px;}
.x2d_c00449{left:237.600000px;}
.x36_c00449{left:239.040000px;}
.x18_c00449{left:248.400000px;}
.x1b_c00449{left:259.200000px;}
.x13_c00449{left:280.800000px;}
.x3_c00449{left:291.600000px;}
.x37_c00449{left:293.760000px;}
.x1c_c00449{left:302.400000px;}
.xa_c00449{left:311.760000px;}
.x1e_c00449{left:313.200000px;}
.x19_c00449{left:323.280000px;}
.x29_c00449{left:324.720000px;}
.x2e_c00449{left:335.520000px;}
.x2c_c00449{left:346.320000px;}
.xb_c00449{left:355.680000px;}
.x14_c00449{left:366.480000px;}
.x28_c00449{left:367.920000px;}
.x4_c00449{left:375.840000px;}
.x22_c00449{left:378.000000px;}
.x1f_c00449{left:410.400000px;}
.x5_c00449{left:420.480000px;}
.x23_c00449{left:432.000000px;}
.xc_c00449{left:442.080000px;}
.x2a_c00449{left:454.320000px;}
.x15_c00449{left:463.680000px;}
.x1a_c00449{left:473.040000px;}
.x24_c00449{left:475.200000px;}
.xd_c00449{left:486.000000px;}
.x26_c00449{left:518.400000px;}
.x6_c00449{left:529.200000px;}
.x20_c00449{left:530.640000px;}
.x16_c00449{left:582.480000px;}
.xf_c00449{left:583.920000px;}
.x2f_c00449{left:616.320000px;}
.x32_c00449{left:617.760000px;}
.x31_c00449{left:650.160000px;}
.x11_c00449{left:659.520000px;}
.x30_c00449{left:660.960000px;}
.xe_c00449{left:689.040000px;}
.x10_c00449{left:691.920000px;}
.x12_c00449{left:693.360000px;}
.x33_c00449{left:694.800000px;}
.x34_c00449{left:714.960000px;}
@media print{
.v0_c00449{vertical-align:0.000000pt;}
.v1_c00449{vertical-align:2.560000pt;}
.ls0_c00449{letter-spacing:0.000000pt;}
.ws1_c00449{word-spacing:0.000000pt;}
.ws0_c00449{word-spacing:0.978560pt;}
.fsb_c00449{font-size:30.720000pt;}
.fs8_c00449{font-size:33.280000pt;}
.fse_c00449{font-size:38.400000pt;}
.fs3_c00449{font-size:40.960000pt;}
.fs4_c00449{font-size:43.520000pt;}
.fs6_c00449{font-size:46.080000pt;}
.fsa_c00449{font-size:48.640000pt;}
.fs7_c00449{font-size:51.200000pt;}
.fs0_c00449{font-size:53.760000pt;}
.fsc_c00449{font-size:56.320000pt;}
.fs9_c00449{font-size:58.880000pt;}
.fs5_c00449{font-size:61.440000pt;}
.fs1_c00449{font-size:64.000000pt;}
.fsd_c00449{font-size:66.560000pt;}
.fs2_c00449{font-size:89.600000pt;}
.y0_c00449{bottom:0.000000pt;}
.y7d_c00449{bottom:55.680000pt;}
.y7c_c00449{bottom:58.240000pt;}
.y8b_c00449{bottom:58.880000pt;}
.y8c_c00449{bottom:59.520000pt;}
.y80_c00449{bottom:60.160000pt;}
.y8d_c00449{bottom:61.440000pt;}
.y7b_c00449{bottom:94.080000pt;}
.y89_c00449{bottom:96.640000pt;}
.y79_c00449{bottom:97.280000pt;}
.y7a_c00449{bottom:97.920000pt;}
.y7f_c00449{bottom:99.200000pt;}
.y8a_c00449{bottom:99.840000pt;}
.y78_c00449{bottom:132.480000pt;}
.y76_c00449{bottom:135.040000pt;}
.y77_c00449{bottom:135.680000pt;}
.y88_c00449{bottom:136.320000pt;}
.y7e_c00449{bottom:136.960000pt;}
.y6d_c00449{bottom:170.880000pt;}
.y6f_c00449{bottom:171.520000pt;}
.y86_c00449{bottom:173.440000pt;}
.y6c_c00449{bottom:174.080000pt;}
.y6e_c00449{bottom:174.720000pt;}
.y87_c00449{bottom:176.000000pt;}
.y69_c00449{bottom:208.640000pt;}
.y6b_c00449{bottom:209.920000pt;}
.y68_c00449{bottom:211.200000pt;}
.y75_c00449{bottom:211.840000pt;}
.y6a_c00449{bottom:212.480000pt;}
.y85_c00449{bottom:213.760000pt;}
.y65_c00449{bottom:247.040000pt;}
.y67_c00449{bottom:247.680000pt;}
.y81_c00449{bottom:248.960000pt;}
.y64_c00449{bottom:249.600000pt;}
.y66_c00449{bottom:250.880000pt;}
.y84_c00449{bottom:251.520000pt;}
.y83_c00449{bottom:252.160000pt;}
.y82_c00449{bottom:252.800000pt;}
.y60_c00449{bottom:284.800000pt;}
.y63_c00449{bottom:286.080000pt;}
.y5f_c00449{bottom:287.360000pt;}
.y73_c00449{bottom:288.000000pt;}
.y61_c00449{bottom:288.640000pt;}
.y62_c00449{bottom:289.280000pt;}
.y74_c00449{bottom:289.920000pt;}
.y5b_c00449{bottom:323.200000pt;}
.y5e_c00449{bottom:323.840000pt;}
.y70_c00449{bottom:325.120000pt;}
.y5a_c00449{bottom:325.760000pt;}
.y5c_c00449{bottom:326.400000pt;}
.y5d_c00449{bottom:327.040000pt;}
.y71_c00449{bottom:327.680000pt;}
.y72_c00449{bottom:328.960000pt;}
.y4d_c00449{bottom:360.960000pt;}
.y4f_c00449{bottom:362.880000pt;}
.y4c_c00449{bottom:364.160000pt;}
.y4e_c00449{bottom:364.800000pt;}
.y58_c00449{bottom:366.080000pt;}
.y59_c00449{bottom:366.720000pt;}
.y4b_c00449{bottom:400.000000pt;}
.y49_c00449{bottom:400.640000pt;}
.y4a_c00449{bottom:401.280000pt;}
.y48_c00449{bottom:403.840000pt;}
.y43_c00449{bottom:428.800000pt;}
.y44_c00449{bottom:430.080000pt;}
.y42_c00449{bottom:430.720000pt;}
.y47_c00449{bottom:431.360000pt;}
.y45_c00449{bottom:432.000000pt;}
.y46_c00449{bottom:432.640000pt;}
.y57_c00449{bottom:433.920000pt;}
.y41_c00449{bottom:467.200000pt;}
.y3f_c00449{bottom:469.120000pt;}
.y40_c00449{bottom:470.400000pt;}
.y3b_c00449{bottom:495.360000pt;}
.y3d_c00449{bottom:497.280000pt;}
.y3a_c00449{bottom:497.920000pt;}
.y3e_c00449{bottom:498.560000pt;}
.y3c_c00449{bottom:499.200000pt;}
.y55_c00449{bottom:500.480000pt;}
.y56_c00449{bottom:501.120000pt;}
.y34_c00449{bottom:535.040000pt;}
.y37_c00449{bottom:535.680000pt;}
.y38_c00449{bottom:536.320000pt;}
.y35_c00449{bottom:536.960000pt;}
.y36_c00449{bottom:537.600000pt;}
.y39_c00449{bottom:538.240000pt;}
.y30_c00449{bottom:562.560000pt;}
.y31_c00449{bottom:563.840000pt;}
.y2f_c00449{bottom:564.480000pt;}
.y33_c00449{bottom:565.120000pt;}
.y32_c00449{bottom:567.040000pt;}
.y2e_c00449{bottom:602.240000pt;}
.y2d_c00449{bottom:604.160000pt;}
.y2a_c00449{bottom:630.400000pt;}
.y29_c00449{bottom:631.040000pt;}
.y2c_c00449{bottom:631.680000pt;}
.y53_c00449{bottom:632.320000pt;}
.y54_c00449{bottom:632.960000pt;}
.y2b_c00449{bottom:633.600000pt;}
.y28_c00449{bottom:668.800000pt;}
.y26_c00449{bottom:669.440000pt;}
.y27_c00449{bottom:671.360000pt;}
.y22_c00449{bottom:696.960000pt;}
.y23_c00449{bottom:697.600000pt;}
.y21_c00449{bottom:698.240000pt;}
.y52_c00449{bottom:698.880000pt;}
.y24_c00449{bottom:699.520000pt;}
.y25_c00449{bottom:700.160000pt;}
.y51_c00449{bottom:700.800000pt;}
.y20_c00449{bottom:734.720000pt;}
.y1e_c00449{bottom:736.000000pt;}
.y1f_c00449{bottom:737.920000pt;}
.y1a_c00449{bottom:762.880000pt;}
.y1c_c00449{bottom:763.520000pt;}
.y19_c00449{bottom:764.800000pt;}
.y50_c00449{bottom:765.440000pt;}
.y1b_c00449{bottom:766.080000pt;}
.y1d_c00449{bottom:766.720000pt;}
.y18_c00449{bottom:801.280000pt;}
.y16_c00449{bottom:802.560000pt;}
.y17_c00449{bottom:804.480000pt;}
.y11_c00449{bottom:830.080000pt;}
.y12_c00449{bottom:830.720000pt;}
.y10_c00449{bottom:831.360000pt;}
.y15_c00449{bottom:832.000000pt;}
.y13_c00449{bottom:832.640000pt;}
.y14_c00449{bottom:833.280000pt;}
.yc_c00449{bottom:860.800000pt;}
.y8_c00449{bottom:867.840000pt;}
.yb_c00449{bottom:868.480000pt;}
.y7_c00449{bottom:869.120000pt;}
.yf_c00449{bottom:869.760000pt;}
.ya_c00449{bottom:870.400000pt;}
.y9_c00449{bottom:871.040000pt;}
.y6_c00449{bottom:906.240000pt;}
.y4_c00449{bottom:907.520000pt;}
.y5_c00449{bottom:909.440000pt;}
.y2_c00449{bottom:935.040000pt;}
.y3_c00449{bottom:935.680000pt;}
.y1_c00449{bottom:936.320000pt;}
.ye_c00449{bottom:936.960000pt;}
.yd_c00449{bottom:1002.880000pt;}
.hd_c00449{height:27.645000pt;}
.ha_c00449{height:29.948750pt;}
.h10_c00449{height:34.556250pt;}
.h5_c00449{height:36.860000pt;}
.h6_c00449{height:39.163750pt;}
.h8_c00449{height:41.467500pt;}
.hc_c00449{height:43.771250pt;}
.h9_c00449{height:46.075000pt;}
.h2_c00449{height:48.378750pt;}
.he_c00449{height:50.682500pt;}
.hb_c00449{height:52.986250pt;}
.h7_c00449{height:55.290000pt;}
.h3_c00449{height:57.593750pt;}
.hf_c00449{height:59.897500pt;}
.h4_c00449{height:80.631250pt;}
.h1_c00449{height:1038.000000pt;}
.h0_c00449{height:1038.080000pt;}
.w0_c00449{width:689.280000pt;}
.w1_c00449{width:689.333333pt;}
.x0_c00449{left:0.000000pt;}
.x1_c00449{left:48.000000pt;}
.x27_c00449{left:49.280000pt;}
.x38_c00449{left:50.560000pt;}
.x7_c00449{left:113.920000pt;}
.x2_c00449{left:115.200000pt;}
.x35_c00449{left:116.480000pt;}
.x21_c00449{left:153.600000pt;}
.x2b_c00449{left:154.880000pt;}
.x8_c00449{left:163.200000pt;}
.x39_c00449{left:164.480000pt;}
.x17_c00449{left:172.160000pt;}
.x9_c00449{left:200.960000pt;}
.x1d_c00449{left:202.240000pt;}
.x25_c00449{left:209.920000pt;}
.x2d_c00449{left:211.200000pt;}
.x36_c00449{left:212.480000pt;}
.x18_c00449{left:220.800000pt;}
.x1b_c00449{left:230.400000pt;}
.x13_c00449{left:249.600000pt;}
.x3_c00449{left:259.200000pt;}
.x37_c00449{left:261.120000pt;}
.x1c_c00449{left:268.800000pt;}
.xa_c00449{left:277.120000pt;}
.x1e_c00449{left:278.400000pt;}
.x19_c00449{left:287.360000pt;}
.x29_c00449{left:288.640000pt;}
.x2e_c00449{left:298.240000pt;}
.x2c_c00449{left:307.840000pt;}
.xb_c00449{left:316.160000pt;}
.x14_c00449{left:325.760000pt;}
.x28_c00449{left:327.040000pt;}
.x4_c00449{left:334.080000pt;}
.x22_c00449{left:336.000000pt;}
.x1f_c00449{left:364.800000pt;}
.x5_c00449{left:373.760000pt;}
.x23_c00449{left:384.000000pt;}
.xc_c00449{left:392.960000pt;}
.x2a_c00449{left:403.840000pt;}
.x15_c00449{left:412.160000pt;}
.x1a_c00449{left:420.480000pt;}
.x24_c00449{left:422.400000pt;}
.xd_c00449{left:432.000000pt;}
.x26_c00449{left:460.800000pt;}
.x6_c00449{left:470.400000pt;}
.x20_c00449{left:471.680000pt;}
.x16_c00449{left:517.760000pt;}
.xf_c00449{left:519.040000pt;}
.x2f_c00449{left:547.840000pt;}
.x32_c00449{left:549.120000pt;}
.x31_c00449{left:577.920000pt;}
.x11_c00449{left:586.240000pt;}
.x30_c00449{left:587.520000pt;}
.xe_c00449{left:612.480000pt;}
.x10_c00449{left:615.040000pt;}
.x12_c00449{left:616.320000pt;}
.x33_c00449{left:617.600000pt;}
.x34_c00449{left:635.520000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_63d2fb108231cdd362ca0ef3.woff2')format("woff");}.ff1_c00450{font-family:ff1_c00450;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m37_c00450{transform:matrix(0.115650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115650,0.000000,0.000000,0.250000,0,0);}
.m57_c00450{transform:matrix(0.151950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151950,0.000000,0.000000,0.250000,0,0);}
.m35_c00450{transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);}
.m3a_c00450{transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);}
.m42_c00450{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m38_c00450{transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);}
.m3e_c00450{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m19_c00450{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);}
.m46_c00450{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);}
.m2e_c00450{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m6_c00450{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);}
.m39_c00450{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m26_c00450{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);}
.m50_c00450{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m7_c00450{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_c00450{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m23_c00450{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);}
.m3f_c00450{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00450{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.me_c00450{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m12_c00450{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m10_c00450{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m13_c00450{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m11_c00450{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m15_c00450{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mc_c00450{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m17_c00450{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m8_c00450{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m21_c00450{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00450{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m4_c00450{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3_c00450{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m5_c00450{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00450{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m45_c00450{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00450{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m34_c00450{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00450{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);}
.m32_c00450{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.md_c00450{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1_c00450{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_c00450{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m28_c00450{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m2_c00450{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m36_c00450{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);}
.m3c_c00450{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);}
.mf_c00450{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m0_c00450{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.mb_c00450{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);}
.m40_c00450{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m31_c00450{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);}
.m3b_c00450{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00450{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);}
.m43_c00450{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);}
.m4f_c00450{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m22_c00450{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00450{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m24_c00450{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);}
.m44_c00450{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00450{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);}
.m47_c00450{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00450{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m51_c00450{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m30_c00450{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);}
.m29_c00450{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m14_c00450{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m41_c00450{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);}
.m49_c00450{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);}
.m1e_c00450{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);}
.m52_c00450{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00450{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m48_c00450{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m56_c00450{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m20_c00450{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);}
.m1c_c00450{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00450{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m9_c00450{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);}
.m55_c00450{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m53_c00450{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.ma_c00450{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m33_c00450{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);}
.m54_c00450{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);}
.m25_c00450{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00450{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);}
.m4d_c00450{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.m58_c00450{transform:matrix(0.887500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.887500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.887500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00450{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);}
.m1f_c00450{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.m27_c00450{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.v2_c00450{vertical-align:-8.640000px;}
.v1_c00450{vertical-align:-2.880000px;}
.v0_c00450{vertical-align:0.000000px;}
.v3_c00450{vertical-align:2.880000px;}
.ls1_c00450{letter-spacing:0.000000px;}
.ls0_c00450{letter-spacing:148.722720px;}
.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;}
}
.ws3_c00450{word-spacing:0.000000px;}
.ws2_c00450{word-spacing:30.328800px;}
.ws0_c00450{word-spacing:133.794000px;}
.ws1_c00450{word-spacing:137.317680px;}
.fc0_c00450{color:transparent;}
.fsc_c00450{font-size:11.520000px;}
.fsb_c00450{font-size:20.160000px;}
.fs10_c00450{font-size:31.680000px;}
.fsd_c00450{font-size:34.560000px;}
.fsa_c00450{font-size:43.200000px;}
.fs9_c00450{font-size:46.080000px;}
.fs2_c00450{font-size:48.960000px;}
.fs7_c00450{font-size:51.840000px;}
.fs4_c00450{font-size:54.720000px;}
.fs8_c00450{font-size:57.600000px;}
.fs6_c00450{font-size:60.480000px;}
.fs1_c00450{font-size:63.360000px;}
.fse_c00450{font-size:66.240000px;}
.fs0_c00450{font-size:69.120000px;}
.fs5_c00450{font-size:72.000000px;}
.fs3_c00450{font-size:74.880000px;}
.fsf_c00450{font-size:97.920000px;}
.y0_c00450{bottom:0.000000px;}
.y9e_c00450{bottom:69.120000px;}
.y9b_c00450{bottom:74.880000px;}
.y9c_c00450{bottom:76.320000px;}
.y9f_c00450{bottom:77.040000px;}
.y99_c00450{bottom:77.760000px;}
.y9d_c00450{bottom:78.480000px;}
.y9a_c00450{bottom:79.200000px;}
.y97_c00450{bottom:118.800000px;}
.y95_c00450{bottom:120.240000px;}
.y98_c00450{bottom:120.960000px;}
.y96_c00450{bottom:121.680000px;}
.y93_c00450{bottom:122.400000px;}
.y94_c00450{bottom:123.120000px;}
.y90_c00450{bottom:161.280000px;}
.y92_c00450{bottom:162.720000px;}
.y91_c00450{bottom:163.440000px;}
.y8e_c00450{bottom:164.880000px;}
.y8f_c00450{bottom:165.600000px;}
.y8b_c00450{bottom:205.920000px;}
.y8c_c00450{bottom:206.640000px;}
.y8d_c00450{bottom:208.800000px;}
.y89_c00450{bottom:270.000000px;}
.y8a_c00450{bottom:270.720000px;}
.y87_c00450{bottom:271.440000px;}
.y88_c00450{bottom:272.880000px;}
.y84_c00450{bottom:291.600000px;}
.y82_c00450{bottom:293.040000px;}
.y85_c00450{bottom:293.760000px;}
.y83_c00450{bottom:294.480000px;}
.y86_c00450{bottom:295.200000px;}
.y7f_c00450{bottom:313.200000px;}
.y81_c00450{bottom:313.920000px;}
.y7c_c00450{bottom:314.640000px;}
.y7e_c00450{bottom:315.360000px;}
.y80_c00450{bottom:316.080000px;}
.y7d_c00450{bottom:316.800000px;}
.y7a_c00450{bottom:334.800000px;}
.y7b_c00450{bottom:335.520000px;}
.y78_c00450{bottom:336.240000px;}
.y79_c00450{bottom:337.680000px;}
.y73_c00450{bottom:357.120000px;}
.y77_c00450{bottom:357.840000px;}
.y75_c00450{bottom:358.560000px;}
.y76_c00450{bottom:359.280000px;}
.y74_c00450{bottom:360.000000px;}
.y6f_c00450{bottom:378.000000px;}
.y6d_c00450{bottom:378.720000px;}
.y70_c00450{bottom:379.440000px;}
.y6e_c00450{bottom:380.880000px;}
.y72_c00450{bottom:381.600000px;}
.y71_c00450{bottom:382.320000px;}
.y6a_c00450{bottom:399.600000px;}
.y6b_c00450{bottom:400.320000px;}
.y6c_c00450{bottom:401.040000px;}
.y69_c00450{bottom:401.760000px;}
.y68_c00450{bottom:402.480000px;}
.y67_c00450{bottom:403.200000px;}
.y65_c00450{bottom:420.480000px;}
.y63_c00450{bottom:421.920000px;}
.y66_c00450{bottom:422.640000px;}
.y64_c00450{bottom:424.800000px;}
.y60_c00450{bottom:442.080000px;}
.y5e_c00450{bottom:443.520000px;}
.y62_c00450{bottom:444.240000px;}
.y61_c00450{bottom:445.680000px;}
.y5f_c00450{bottom:446.400000px;}
.y5b_c00450{bottom:464.400000px;}
.y5d_c00450{bottom:465.120000px;}
.y5c_c00450{bottom:466.560000px;}
.y5a_c00450{bottom:467.280000px;}
.y59_c00450{bottom:486.000000px;}
.y56_c00450{bottom:486.720000px;}
.y58_c00450{bottom:487.440000px;}
.y57_c00450{bottom:488.160000px;}
.y55_c00450{bottom:488.880000px;}
.y53_c00450{bottom:507.600000px;}
.y54_c00450{bottom:508.320000px;}
.y52_c00450{bottom:509.760000px;}
.y51_c00450{bottom:510.480000px;}
.y50_c00450{bottom:528.480000px;}
.y4e_c00450{bottom:529.200000px;}
.y4f_c00450{bottom:531.360000px;}
.y4c_c00450{bottom:550.080000px;}
.y4d_c00450{bottom:550.800000px;}
.y4b_c00450{bottom:552.240000px;}
.y49_c00450{bottom:570.960000px;}
.y47_c00450{bottom:571.680000px;}
.y4a_c00450{bottom:572.400000px;}
.y48_c00450{bottom:573.840000px;}
.y45_c00450{bottom:592.560000px;}
.y43_c00450{bottom:593.280000px;}
.y44_c00450{bottom:594.720000px;}
.y46_c00450{bottom:595.440000px;}
.y41_c00450{bottom:613.440000px;}
.y42_c00450{bottom:614.160000px;}
.y3f_c00450{bottom:614.880000px;}
.y40_c00450{bottom:616.320000px;}
.y3d_c00450{bottom:635.040000px;}
.y3e_c00450{bottom:635.760000px;}
.y3c_c00450{bottom:637.920000px;}
.y3b_c00450{bottom:638.640000px;}
.y39_c00450{bottom:656.640000px;}
.y38_c00450{bottom:657.360000px;}
.y3a_c00450{bottom:658.800000px;}
.y37_c00450{bottom:659.520000px;}
.y36_c00450{bottom:689.760000px;}
.y35_c00450{bottom:691.200000px;}
.y34_c00450{bottom:691.920000px;}
.y32_c00450{bottom:730.800000px;}
.y31_c00450{bottom:731.520000px;}
.y33_c00450{bottom:732.960000px;}
.y30_c00450{bottom:734.400000px;}
.y2f_c00450{bottom:735.120000px;}
.y2e_c00450{bottom:762.480000px;}
.y2d_c00450{bottom:763.920000px;}
.y2a_c00450{bottom:764.640000px;}
.y2b_c00450{bottom:766.080000px;}
.y29_c00450{bottom:766.800000px;}
.y2c_c00450{bottom:767.520000px;}
.y28_c00450{bottom:787.680000px;}
.y27_c00450{bottom:796.320000px;}
.y24_c00450{bottom:797.040000px;}
.y23_c00450{bottom:798.480000px;}
.y25_c00450{bottom:799.200000px;}
.y26_c00450{bottom:801.360000px;}
.y21_c00450{bottom:839.520000px;}
.y22_c00450{bottom:840.240000px;}
.y1e_c00450{bottom:848.880000px;}
.y1d_c00450{bottom:849.600000px;}
.y1b_c00450{bottom:851.040000px;}
.y1a_c00450{bottom:851.760000px;}
.y1c_c00450{bottom:855.360000px;}
.y20_c00450{bottom:861.120000px;}
.y1f_c00450{bottom:862.560000px;}
.y19_c00450{bottom:892.080000px;}
.y18_c00450{bottom:892.800000px;}
.y15_c00450{bottom:894.960000px;}
.y16_c00450{bottom:895.680000px;}
.y17_c00450{bottom:897.840000px;}
.y11_c00450{bottom:904.320000px;}
.y13_c00450{bottom:915.840000px;}
.y14_c00450{bottom:916.560000px;}
.y12_c00450{bottom:917.280000px;}
.yf_c00450{bottom:966.240000px;}
.y10_c00450{bottom:967.680000px;}
.ye_c00450{bottom:968.400000px;}
.yb_c00450{bottom:1008.720000px;}
.y8_c00450{bottom:1009.440000px;}
.y9_c00450{bottom:1010.160000px;}
.y7_c00450{bottom:1010.880000px;}
.yd_c00450{bottom:1011.600000px;}
.ya_c00450{bottom:1012.320000px;}
.yc_c00450{bottom:1013.040000px;}
.y4_c00450{bottom:1051.920000px;}
.y2_c00450{bottom:1053.360000px;}
.y6_c00450{bottom:1054.080000px;}
.y5_c00450{bottom:1055.520000px;}
.y3_c00450{bottom:1056.240000px;}
.y1_c00450{bottom:1117.440000px;}
.he_c00450{height:10.366875px;}
.hd_c00450{height:18.142031px;}
.h13_c00450{height:28.508906px;}
.hf_c00450{height:31.100625px;}
.hc_c00450{height:38.875781px;}
.hb_c00450{height:41.467500px;}
.h4_c00450{height:44.059219px;}
.h9_c00450{height:46.650937px;}
.h6_c00450{height:49.242656px;}
.ha_c00450{height:51.834375px;}
.h8_c00450{height:54.426094px;}
.h11_c00450{height:54.714375px;}
.h3_c00450{height:57.017812px;}
.h10_c00450{height:59.609531px;}
.h2_c00450{height:62.201250px;}
.h7_c00450{height:64.792969px;}
.h5_c00450{height:67.384687px;}
.h12_c00450{height:88.118437px;}
.h0_c00450{height:1174.320000px;}
.h1_c00450{height:1174.500000px;}
.w1_c00450{width:784.500000px;}
.w0_c00450{width:784.800000px;}
.x0_c00450{left:0.000000px;}
.x2_c00450{left:58.320000px;}
.x3c_c00450{left:59.760000px;}
.x33_c00450{left:69.840000px;}
.x20_c00450{left:78.480000px;}
.x2e_c00450{left:79.920000px;}
.x19_c00450{left:100.800000px;}
.x28_c00450{left:112.320000px;}
.x3d_c00450{left:122.400000px;}
.x37_c00450{left:123.840000px;}
.x3_c00450{left:133.920000px;}
.x1a_c00450{left:144.000000px;}
.x14_c00450{left:166.320000px;}
.xf_c00450{left:177.120000px;}
.x38_c00450{left:178.560000px;}
.x4_c00450{left:187.920000px;}
.x30_c00450{left:199.440000px;}
.x1b_c00450{left:209.520000px;}
.x29_c00450{left:210.960000px;}
.x10_c00450{left:231.120000px;}
.x39_c00450{left:232.560000px;}
.x21_c00450{left:241.920000px;}
.x2a_c00450{left:243.360000px;}
.x8_c00450{left:252.720000px;}
.x22_c00450{left:263.520000px;}
.x1c_c00450{left:264.960000px;}
.x1e_c00450{left:275.040000px;}
.x11_c00450{left:285.840000px;}
.x1d_c00450{left:305.280000px;}
.x1f_c00450{left:306.720000px;}
.x23_c00450{left:318.960000px;}
.x9_c00450{left:338.400000px;}
.x15_c00450{left:350.640000px;}
.x2b_c00450{left:360.720000px;}
.x2f_c00450{left:381.600000px;}
.x42_c00450{left:384.480000px;}
.xa_c00450{left:393.120000px;}
.x34_c00450{left:394.560000px;}
.x12_c00450{left:403.920000px;}
.x24_c00450{left:415.440000px;}
.x31_c00450{left:437.040000px;}
.xb_c00450{left:446.400000px;}
.x3a_c00450{left:449.280000px;}
.x13_c00450{left:458.640000px;}
.x35_c00450{left:460.080000px;}
.x25_c00450{left:468.000000px;}
.x43_c00450{left:469.440000px;}
.x16_c00450{left:501.120000px;}
.x3b_c00450{left:503.280000px;}
.x36_c00450{left:513.360000px;}
.x17_c00450{left:524.160000px;}
.x5_c00450{left:533.520000px;}
.x32_c00450{left:535.680000px;}
.x18_c00450{left:565.920000px;}
.x3f_c00450{left:568.080000px;}
.x2c_c00450{left:576.720000px;}
.x26_c00450{left:578.160000px;}
.x6_c00450{left:587.520000px;}
.x40_c00450{left:589.680000px;}
.x27_c00450{left:598.320000px;}
.x3e_c00450{left:611.280000px;}
.xd_c00450{left:621.360000px;}
.x2d_c00450{left:632.160000px;}
.xe_c00450{left:654.480000px;}
.xc_c00450{left:665.280000px;}
.x1_c00450{left:677.520000px;}
.x7_c00450{left:697.680000px;}
.x41_c00450{left:699.840000px;}
@media print{
.v2_c00450{vertical-align:-7.680000pt;}
.v1_c00450{vertical-align:-2.560000pt;}
.v0_c00450{vertical-align:0.000000pt;}
.v3_c00450{vertical-align:2.560000pt;}
.ls1_c00450{letter-spacing:0.000000pt;}
.ls0_c00450{letter-spacing:132.197973pt;}
.ws3_c00450{word-spacing:0.000000pt;}
.ws2_c00450{word-spacing:26.958933pt;}
.ws0_c00450{word-spacing:118.928000pt;}
.ws1_c00450{word-spacing:122.060160pt;}
.fsc_c00450{font-size:10.240000pt;}
.fsb_c00450{font-size:17.920000pt;}
.fs10_c00450{font-size:28.160000pt;}
.fsd_c00450{font-size:30.720000pt;}
.fsa_c00450{font-size:38.400000pt;}
.fs9_c00450{font-size:40.960000pt;}
.fs2_c00450{font-size:43.520000pt;}
.fs7_c00450{font-size:46.080000pt;}
.fs4_c00450{font-size:48.640000pt;}
.fs8_c00450{font-size:51.200000pt;}
.fs6_c00450{font-size:53.760000pt;}
.fs1_c00450{font-size:56.320000pt;}
.fse_c00450{font-size:58.880000pt;}
.fs0_c00450{font-size:61.440000pt;}
.fs5_c00450{font-size:64.000000pt;}
.fs3_c00450{font-size:66.560000pt;}
.fsf_c00450{font-size:87.040000pt;}
.y0_c00450{bottom:0.000000pt;}
.y9e_c00450{bottom:61.440000pt;}
.y9b_c00450{bottom:66.560000pt;}
.y9c_c00450{bottom:67.840000pt;}
.y9f_c00450{bottom:68.480000pt;}
.y99_c00450{bottom:69.120000pt;}
.y9d_c00450{bottom:69.760000pt;}
.y9a_c00450{bottom:70.400000pt;}
.y97_c00450{bottom:105.600000pt;}
.y95_c00450{bottom:106.880000pt;}
.y98_c00450{bottom:107.520000pt;}
.y96_c00450{bottom:108.160000pt;}
.y93_c00450{bottom:108.800000pt;}
.y94_c00450{bottom:109.440000pt;}
.y90_c00450{bottom:143.360000pt;}
.y92_c00450{bottom:144.640000pt;}
.y91_c00450{bottom:145.280000pt;}
.y8e_c00450{bottom:146.560000pt;}
.y8f_c00450{bottom:147.200000pt;}
.y8b_c00450{bottom:183.040000pt;}
.y8c_c00450{bottom:183.680000pt;}
.y8d_c00450{bottom:185.600000pt;}
.y89_c00450{bottom:240.000000pt;}
.y8a_c00450{bottom:240.640000pt;}
.y87_c00450{bottom:241.280000pt;}
.y88_c00450{bottom:242.560000pt;}
.y84_c00450{bottom:259.200000pt;}
.y82_c00450{bottom:260.480000pt;}
.y85_c00450{bottom:261.120000pt;}
.y83_c00450{bottom:261.760000pt;}
.y86_c00450{bottom:262.400000pt;}
.y7f_c00450{bottom:278.400000pt;}
.y81_c00450{bottom:279.040000pt;}
.y7c_c00450{bottom:279.680000pt;}
.y7e_c00450{bottom:280.320000pt;}
.y80_c00450{bottom:280.960000pt;}
.y7d_c00450{bottom:281.600000pt;}
.y7a_c00450{bottom:297.600000pt;}
.y7b_c00450{bottom:298.240000pt;}
.y78_c00450{bottom:298.880000pt;}
.y79_c00450{bottom:300.160000pt;}
.y73_c00450{bottom:317.440000pt;}
.y77_c00450{bottom:318.080000pt;}
.y75_c00450{bottom:318.720000pt;}
.y76_c00450{bottom:319.360000pt;}
.y74_c00450{bottom:320.000000pt;}
.y6f_c00450{bottom:336.000000pt;}
.y6d_c00450{bottom:336.640000pt;}
.y70_c00450{bottom:337.280000pt;}
.y6e_c00450{bottom:338.560000pt;}
.y72_c00450{bottom:339.200000pt;}
.y71_c00450{bottom:339.840000pt;}
.y6a_c00450{bottom:355.200000pt;}
.y6b_c00450{bottom:355.840000pt;}
.y6c_c00450{bottom:356.480000pt;}
.y69_c00450{bottom:357.120000pt;}
.y68_c00450{bottom:357.760000pt;}
.y67_c00450{bottom:358.400000pt;}
.y65_c00450{bottom:373.760000pt;}
.y63_c00450{bottom:375.040000pt;}
.y66_c00450{bottom:375.680000pt;}
.y64_c00450{bottom:377.600000pt;}
.y60_c00450{bottom:392.960000pt;}
.y5e_c00450{bottom:394.240000pt;}
.y62_c00450{bottom:394.880000pt;}
.y61_c00450{bottom:396.160000pt;}
.y5f_c00450{bottom:396.800000pt;}
.y5b_c00450{bottom:412.800000pt;}
.y5d_c00450{bottom:413.440000pt;}
.y5c_c00450{bottom:414.720000pt;}
.y5a_c00450{bottom:415.360000pt;}
.y59_c00450{bottom:432.000000pt;}
.y56_c00450{bottom:432.640000pt;}
.y58_c00450{bottom:433.280000pt;}
.y57_c00450{bottom:433.920000pt;}
.y55_c00450{bottom:434.560000pt;}
.y53_c00450{bottom:451.200000pt;}
.y54_c00450{bottom:451.840000pt;}
.y52_c00450{bottom:453.120000pt;}
.y51_c00450{bottom:453.760000pt;}
.y50_c00450{bottom:469.760000pt;}
.y4e_c00450{bottom:470.400000pt;}
.y4f_c00450{bottom:472.320000pt;}
.y4c_c00450{bottom:488.960000pt;}
.y4d_c00450{bottom:489.600000pt;}
.y4b_c00450{bottom:490.880000pt;}
.y49_c00450{bottom:507.520000pt;}
.y47_c00450{bottom:508.160000pt;}
.y4a_c00450{bottom:508.800000pt;}
.y48_c00450{bottom:510.080000pt;}
.y45_c00450{bottom:526.720000pt;}
.y43_c00450{bottom:527.360000pt;}
.y44_c00450{bottom:528.640000pt;}
.y46_c00450{bottom:529.280000pt;}
.y41_c00450{bottom:545.280000pt;}
.y42_c00450{bottom:545.920000pt;}
.y3f_c00450{bottom:546.560000pt;}
.y40_c00450{bottom:547.840000pt;}
.y3d_c00450{bottom:564.480000pt;}
.y3e_c00450{bottom:565.120000pt;}
.y3c_c00450{bottom:567.040000pt;}
.y3b_c00450{bottom:567.680000pt;}
.y39_c00450{bottom:583.680000pt;}
.y38_c00450{bottom:584.320000pt;}
.y3a_c00450{bottom:585.600000pt;}
.y37_c00450{bottom:586.240000pt;}
.y36_c00450{bottom:613.120000pt;}
.y35_c00450{bottom:614.400000pt;}
.y34_c00450{bottom:615.040000pt;}
.y32_c00450{bottom:649.600000pt;}
.y31_c00450{bottom:650.240000pt;}
.y33_c00450{bottom:651.520000pt;}
.y30_c00450{bottom:652.800000pt;}
.y2f_c00450{bottom:653.440000pt;}
.y2e_c00450{bottom:677.760000pt;}
.y2d_c00450{bottom:679.040000pt;}
.y2a_c00450{bottom:679.680000pt;}
.y2b_c00450{bottom:680.960000pt;}
.y29_c00450{bottom:681.600000pt;}
.y2c_c00450{bottom:682.240000pt;}
.y28_c00450{bottom:700.160000pt;}
.y27_c00450{bottom:707.840000pt;}
.y24_c00450{bottom:708.480000pt;}
.y23_c00450{bottom:709.760000pt;}
.y25_c00450{bottom:710.400000pt;}
.y26_c00450{bottom:712.320000pt;}
.y21_c00450{bottom:746.240000pt;}
.y22_c00450{bottom:746.880000pt;}
.y1e_c00450{bottom:754.560000pt;}
.y1d_c00450{bottom:755.200000pt;}
.y1b_c00450{bottom:756.480000pt;}
.y1a_c00450{bottom:757.120000pt;}
.y1c_c00450{bottom:760.320000pt;}
.y20_c00450{bottom:765.440000pt;}
.y1f_c00450{bottom:766.720000pt;}
.y19_c00450{bottom:792.960000pt;}
.y18_c00450{bottom:793.600000pt;}
.y15_c00450{bottom:795.520000pt;}
.y16_c00450{bottom:796.160000pt;}
.y17_c00450{bottom:798.080000pt;}
.y11_c00450{bottom:803.840000pt;}
.y13_c00450{bottom:814.080000pt;}
.y14_c00450{bottom:814.720000pt;}
.y12_c00450{bottom:815.360000pt;}
.yf_c00450{bottom:858.880000pt;}
.y10_c00450{bottom:860.160000pt;}
.ye_c00450{bottom:860.800000pt;}
.yb_c00450{bottom:896.640000pt;}
.y8_c00450{bottom:897.280000pt;}
.y9_c00450{bottom:897.920000pt;}
.y7_c00450{bottom:898.560000pt;}
.yd_c00450{bottom:899.200000pt;}
.ya_c00450{bottom:899.840000pt;}
.yc_c00450{bottom:900.480000pt;}
.y4_c00450{bottom:935.040000pt;}
.y2_c00450{bottom:936.320000pt;}
.y6_c00450{bottom:936.960000pt;}
.y5_c00450{bottom:938.240000pt;}
.y3_c00450{bottom:938.880000pt;}
.y1_c00450{bottom:993.280000pt;}
.he_c00450{height:9.215000pt;}
.hd_c00450{height:16.126250pt;}
.h13_c00450{height:25.341250pt;}
.hf_c00450{height:27.645000pt;}
.hc_c00450{height:34.556250pt;}
.hb_c00450{height:36.860000pt;}
.h4_c00450{height:39.163750pt;}
.h9_c00450{height:41.467500pt;}
.h6_c00450{height:43.771250pt;}
.ha_c00450{height:46.075000pt;}
.h8_c00450{height:48.378750pt;}
.h11_c00450{height:48.635000pt;}
.h3_c00450{height:50.682500pt;}
.h10_c00450{height:52.986250pt;}
.h2_c00450{height:55.290000pt;}
.h7_c00450{height:57.593750pt;}
.h5_c00450{height:59.897500pt;}
.h12_c00450{height:78.327500pt;}
.h0_c00450{height:1043.840000pt;}
.h1_c00450{height:1044.000000pt;}
.w1_c00450{width:697.333333pt;}
.w0_c00450{width:697.600000pt;}
.x0_c00450{left:0.000000pt;}
.x2_c00450{left:51.840000pt;}
.x3c_c00450{left:53.120000pt;}
.x33_c00450{left:62.080000pt;}
.x20_c00450{left:69.760000pt;}
.x2e_c00450{left:71.040000pt;}
.x19_c00450{left:89.600000pt;}
.x28_c00450{left:99.840000pt;}
.x3d_c00450{left:108.800000pt;}
.x37_c00450{left:110.080000pt;}
.x3_c00450{left:119.040000pt;}
.x1a_c00450{left:128.000000pt;}
.x14_c00450{left:147.840000pt;}
.xf_c00450{left:157.440000pt;}
.x38_c00450{left:158.720000pt;}
.x4_c00450{left:167.040000pt;}
.x30_c00450{left:177.280000pt;}
.x1b_c00450{left:186.240000pt;}
.x29_c00450{left:187.520000pt;}
.x10_c00450{left:205.440000pt;}
.x39_c00450{left:206.720000pt;}
.x21_c00450{left:215.040000pt;}
.x2a_c00450{left:216.320000pt;}
.x8_c00450{left:224.640000pt;}
.x22_c00450{left:234.240000pt;}
.x1c_c00450{left:235.520000pt;}
.x1e_c00450{left:244.480000pt;}
.x11_c00450{left:254.080000pt;}
.x1d_c00450{left:271.360000pt;}
.x1f_c00450{left:272.640000pt;}
.x23_c00450{left:283.520000pt;}
.x9_c00450{left:300.800000pt;}
.x15_c00450{left:311.680000pt;}
.x2b_c00450{left:320.640000pt;}
.x2f_c00450{left:339.200000pt;}
.x42_c00450{left:341.760000pt;}
.xa_c00450{left:349.440000pt;}
.x34_c00450{left:350.720000pt;}
.x12_c00450{left:359.040000pt;}
.x24_c00450{left:369.280000pt;}
.x31_c00450{left:388.480000pt;}
.xb_c00450{left:396.800000pt;}
.x3a_c00450{left:399.360000pt;}
.x13_c00450{left:407.680000pt;}
.x35_c00450{left:408.960000pt;}
.x25_c00450{left:416.000000pt;}
.x43_c00450{left:417.280000pt;}
.x16_c00450{left:445.440000pt;}
.x3b_c00450{left:447.360000pt;}
.x36_c00450{left:456.320000pt;}
.x17_c00450{left:465.920000pt;}
.x5_c00450{left:474.240000pt;}
.x32_c00450{left:476.160000pt;}
.x18_c00450{left:503.040000pt;}
.x3f_c00450{left:504.960000pt;}
.x2c_c00450{left:512.640000pt;}
.x26_c00450{left:513.920000pt;}
.x6_c00450{left:522.240000pt;}
.x40_c00450{left:524.160000pt;}
.x27_c00450{left:531.840000pt;}
.x3e_c00450{left:543.360000pt;}
.xd_c00450{left:552.320000pt;}
.x2d_c00450{left:561.920000pt;}
.xe_c00450{left:581.760000pt;}
.xc_c00450{left:591.360000pt;}
.x1_c00450{left:602.240000pt;}
.x7_c00450{left:620.160000pt;}
.x41_c00450{left:622.080000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5cbfb4a16f9f0c02ae026aa4.woff2')format("woff");}.ff1_c00451{font-family:ff1_c00451;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3d_c00451{transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);}
.m1a_c00451{transform:matrix(0.222525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222525,0.000000,0.000000,0.250000,0,0);}
.m3b_c00451{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m39_c00451{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m38_c00451{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m34_c00451{transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);}
.m37_c00451{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m28_c00451{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m10_c00451{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00451{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);}
.m25_c00451{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);}
.m2f_c00451{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);}
.m32_c00451{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);}
.m35_c00451{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);}
.m31_c00451{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m20_c00451{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00451{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);}
.m2b_c00451{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m12_c00451{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);}
.m27_c00451{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00451{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m8_c00451{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m14_c00451{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m4_c00451{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m30_c00451{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m16_c00451{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.mc_c00451{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m36_c00451{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00451{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.me_c00451{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mf_c00451{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00451{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m21_c00451{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1_c00451{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00451{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m13_c00451{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m2_c00451{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m15_c00451{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m0_c00451{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);}
.m24_c00451{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m3_c00451{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m22_c00451{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m17_c00451{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);}
.md_c00451{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);}
.m33_c00451{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.ma_c00451{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m5_c00451{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m29_c00451{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m11_c00451{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);}
.m1d_c00451{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);}
.m6_c00451{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m18_c00451{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m23_c00451{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00451{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00451{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);}
.m9_c00451{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m7_c00451{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m26_c00451{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m19_c00451{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.mb_c00451{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);}
.m3c_c00451{transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00451{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.v1_c00451{vertical-align:-2.880000px;}
.v0_c00451{vertical-align:0.000000px;}
.ls1_c00451{letter-spacing:0.000000px;}
.ls0_c00451{letter-spacing:79.176960px;}
.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;}
}
.ws2_c00451{word-spacing:0.000000px;}
.ws0_c00451{word-spacing:62.289308px;}
.ws1_c00451{word-spacing:132.200127px;}
.fc0_c00451{color:transparent;}
.fs6_c00451{font-size:34.560000px;}
.fsb_c00451{font-size:43.200000px;}
.fsa_c00451{font-size:46.080000px;}
.fs1_c00451{font-size:48.960000px;}
.fs9_c00451{font-size:51.840000px;}
.fs5_c00451{font-size:54.720000px;}
.fs3_c00451{font-size:57.600000px;}
.fs8_c00451{font-size:60.480000px;}
.fs0_c00451{font-size:63.360000px;}
.fs7_c00451{font-size:66.240000px;}
.fs4_c00451{font-size:69.120000px;}
.fs2_c00451{font-size:72.000000px;}
.fsc_c00451{font-size:74.880000px;}
.y0_c00451{bottom:0.000000px;}
.y52_c00451{bottom:30.960000px;}
.y54_c00451{bottom:32.400000px;}
.y53_c00451{bottom:33.120000px;}
.y80_c00451{bottom:34.560000px;}
.y51_c00451{bottom:35.280000px;}
.y7f_c00451{bottom:36.720000px;}
.y4d_c00451{bottom:74.160000px;}
.y4f_c00451{bottom:74.880000px;}
.y4c_c00451{bottom:77.040000px;}
.y7e_c00451{bottom:77.760000px;}
.y4e_c00451{bottom:78.480000px;}
.y50_c00451{bottom:79.200000px;}
.y4b_c00451{bottom:118.080000px;}
.y7d_c00451{bottom:120.240000px;}
.y4a_c00451{bottom:121.680000px;}
.y7c_c00451{bottom:123.120000px;}
.y48_c00451{bottom:161.280000px;}
.y49_c00451{bottom:162.000000px;}
.y7a_c00451{bottom:162.720000px;}
.y7b_c00451{bottom:163.440000px;}
.y47_c00451{bottom:164.160000px;}
.y45_c00451{bottom:204.480000px;}
.y46_c00451{bottom:205.200000px;}
.y78_c00451{bottom:205.920000px;}
.y77_c00451{bottom:206.640000px;}
.y44_c00451{bottom:207.360000px;}
.y79_c00451{bottom:208.800000px;}
.y41_c00451{bottom:247.680000px;}
.y43_c00451{bottom:248.400000px;}
.y40_c00451{bottom:249.120000px;}
.y75_c00451{bottom:249.840000px;}
.y42_c00451{bottom:251.280000px;}
.y76_c00451{bottom:252.000000px;}
.y3c_c00451{bottom:290.160000px;}
.y3f_c00451{bottom:290.880000px;}
.y3e_c00451{bottom:291.600000px;}
.y3b_c00451{bottom:292.320000px;}
.y74_c00451{bottom:293.040000px;}
.y3d_c00451{bottom:293.760000px;}
.y73_c00451{bottom:295.200000px;}
.y3a_c00451{bottom:333.360000px;}
.y71_c00451{bottom:334.800000px;}
.y39_c00451{bottom:335.520000px;}
.y72_c00451{bottom:336.240000px;}
.y70_c00451{bottom:337.680000px;}
.y38_c00451{bottom:375.840000px;}
.y6f_c00451{bottom:377.280000px;}
.y6e_c00451{bottom:378.000000px;}
.y37_c00451{bottom:380.160000px;}
.y6d_c00451{bottom:380.880000px;}
.y36_c00451{bottom:419.040000px;}
.y6c_c00451{bottom:420.480000px;}
.y35_c00451{bottom:422.640000px;}
.y6b_c00451{bottom:423.360000px;}
.y34_c00451{bottom:461.520000px;}
.y6a_c00451{bottom:462.960000px;}
.y69_c00451{bottom:463.680000px;}
.y68_c00451{bottom:464.400000px;}
.y33_c00451{bottom:465.120000px;}
.y67_c00451{bottom:465.840000px;}
.y32_c00451{bottom:504.720000px;}
.y66_c00451{bottom:505.440000px;}
.y65_c00451{bottom:506.880000px;}
.y31_c00451{bottom:507.600000px;}
.y64_c00451{bottom:509.040000px;}
.y30_c00451{bottom:547.920000px;}
.y63_c00451{bottom:549.360000px;}
.y2f_c00451{bottom:550.080000px;}
.y61_c00451{bottom:551.520000px;}
.y62_c00451{bottom:552.240000px;}
.y2e_c00451{bottom:591.120000px;}
.y5f_c00451{bottom:593.280000px;}
.y2d_c00451{bottom:594.000000px;}
.y60_c00451{bottom:596.160000px;}
.y2b_c00451{bottom:634.320000px;}
.y5e_c00451{bottom:635.760000px;}
.y2c_c00451{bottom:636.480000px;}
.y2a_c00451{bottom:637.200000px;}
.y5d_c00451{bottom:637.920000px;}
.y5c_c00451{bottom:638.640000px;}
.y29_c00451{bottom:677.520000px;}
.y5a_c00451{bottom:678.240000px;}
.y5b_c00451{bottom:678.960000px;}
.y28_c00451{bottom:679.680000px;}
.y59_c00451{bottom:681.840000px;}
.y27_c00451{bottom:720.720000px;}
.y26_c00451{bottom:722.160000px;}
.y58_c00451{bottom:722.880000px;}
.y57_c00451{bottom:724.320000px;}
.y25_c00451{bottom:763.920000px;}
.y56_c00451{bottom:764.640000px;}
.y24_c00451{bottom:765.360000px;}
.y23_c00451{bottom:807.120000px;}
.y22_c00451{bottom:807.840000px;}
.y55_c00451{bottom:810.000000px;}
.y1f_c00451{bottom:849.600000px;}
.y21_c00451{bottom:850.320000px;}
.y1e_c00451{bottom:851.040000px;}
.y20_c00451{bottom:853.200000px;}
.y1c_c00451{bottom:892.080000px;}
.y1b_c00451{bottom:893.520000px;}
.y19_c00451{bottom:894.240000px;}
.y1d_c00451{bottom:894.960000px;}
.y1a_c00451{bottom:895.680000px;}
.y14_c00451{bottom:934.560000px;}
.y17_c00451{bottom:935.280000px;}
.y13_c00451{bottom:936.720000px;}
.y18_c00451{bottom:937.440000px;}
.y16_c00451{bottom:938.160000px;}
.y15_c00451{bottom:938.880000px;}
.ye_c00451{bottom:977.040000px;}
.yb_c00451{bottom:977.760000px;}
.y12_c00451{bottom:978.480000px;}
.ya_c00451{bottom:979.200000px;}
.yd_c00451{bottom:980.640000px;}
.yc_c00451{bottom:981.360000px;}
.y9_c00451{bottom:1019.520000px;}
.y7_c00451{bottom:1020.240000px;}
.y11_c00451{bottom:1020.960000px;}
.y6_c00451{bottom:1021.680000px;}
.y8_c00451{bottom:1023.840000px;}
.y5_c00451{bottom:1062.720000px;}
.y3_c00451{bottom:1063.440000px;}
.y4_c00451{bottom:1064.160000px;}
.y1_c00451{bottom:1065.600000px;}
.y10_c00451{bottom:1066.320000px;}
.y2_c00451{bottom:1067.760000px;}
.yf_c00451{bottom:1128.960000px;}
.h8_c00451{height:31.100625px;}
.hd_c00451{height:38.875781px;}
.hc_c00451{height:41.467500px;}
.h3_c00451{height:44.059219px;}
.hb_c00451{height:46.650937px;}
.h7_c00451{height:49.242656px;}
.h5_c00451{height:51.834375px;}
.ha_c00451{height:54.426094px;}
.h2_c00451{height:57.017812px;}
.h9_c00451{height:59.609531px;}
.h6_c00451{height:62.201250px;}
.h4_c00451{height:64.792969px;}
.he_c00451{height:67.384687px;}
.h0_c00451{height:1172.880000px;}
.h1_c00451{height:1173.000000px;}
.w0_c00451{width:782.640000px;}
.w1_c00451{width:783.000000px;}
.x0_c00451{left:0.000000px;}
.x1_c00451{left:52.560000px;}
.x22_c00451{left:54.000000px;}
.x1d_c00451{left:126.000000px;}
.x2_c00451{left:127.440000px;}
.x3_c00451{left:170.640000px;}
.x6_c00451{left:214.560000px;}
.x18_c00451{left:225.360000px;}
.x11_c00451{left:245.520000px;}
.x1e_c00451{left:256.320000px;}
.x1b_c00451{left:267.840000px;}
.x7_c00451{left:269.280000px;}
.x4_c00451{left:279.360000px;}
.x12_c00451{left:290.160000px;}
.x20_c00451{left:300.240000px;}
.x8_c00451{left:311.040000px;}
.x1c_c00451{left:321.840000px;}
.x13_c00451{left:344.160000px;}
.x9_c00451{left:354.240000px;}
.x5_c00451{left:365.040000px;}
.x21_c00451{left:408.240000px;}
.x23_c00451{left:418.320000px;}
.x14_c00451{left:429.840000px;}
.x1f_c00451{left:451.440000px;}
.x15_c00451{left:462.240000px;}
.x16_c00451{left:484.560000px;}
.xb_c00451{left:528.480000px;}
.x24_c00451{left:537.840000px;}
.x19_c00451{left:540.000000px;}
.x26_c00451{left:548.640000px;}
.x1a_c00451{left:560.160000px;}
.x27_c00451{left:570.240000px;}
.xf_c00451{left:581.760000px;}
.xc_c00451{left:583.200000px;}
.x2b_c00451{left:605.520000px;}
.x17_c00451{left:615.600000px;}
.x2c_c00451{left:638.640000px;}
.x29_c00451{left:648.000000px;}
.x10_c00451{left:658.800000px;}
.x28_c00451{left:680.400000px;}
.x25_c00451{left:690.480000px;}
.xd_c00451{left:691.920000px;}
.xa_c00451{left:702.720000px;}
.x2a_c00451{left:711.360000px;}
.xe_c00451{left:712.800000px;}
@media print{
.v1_c00451{vertical-align:-2.560000pt;}
.v0_c00451{vertical-align:0.000000pt;}
.ls1_c00451{letter-spacing:0.000000pt;}
.ls0_c00451{letter-spacing:70.379520pt;}
.ws2_c00451{word-spacing:0.000000pt;}
.ws0_c00451{word-spacing:55.368274pt;}
.ws1_c00451{word-spacing:117.511224pt;}
.fs6_c00451{font-size:30.720000pt;}
.fsb_c00451{font-size:38.400000pt;}
.fsa_c00451{font-size:40.960000pt;}
.fs1_c00451{font-size:43.520000pt;}
.fs9_c00451{font-size:46.080000pt;}
.fs5_c00451{font-size:48.640000pt;}
.fs3_c00451{font-size:51.200000pt;}
.fs8_c00451{font-size:53.760000pt;}
.fs0_c00451{font-size:56.320000pt;}
.fs7_c00451{font-size:58.880000pt;}
.fs4_c00451{font-size:61.440000pt;}
.fs2_c00451{font-size:64.000000pt;}
.fsc_c00451{font-size:66.560000pt;}
.y0_c00451{bottom:0.000000pt;}
.y52_c00451{bottom:27.520000pt;}
.y54_c00451{bottom:28.800000pt;}
.y53_c00451{bottom:29.440000pt;}
.y80_c00451{bottom:30.720000pt;}
.y51_c00451{bottom:31.360000pt;}
.y7f_c00451{bottom:32.640000pt;}
.y4d_c00451{bottom:65.920000pt;}
.y4f_c00451{bottom:66.560000pt;}
.y4c_c00451{bottom:68.480000pt;}
.y7e_c00451{bottom:69.120000pt;}
.y4e_c00451{bottom:69.760000pt;}
.y50_c00451{bottom:70.400000pt;}
.y4b_c00451{bottom:104.960000pt;}
.y7d_c00451{bottom:106.880000pt;}
.y4a_c00451{bottom:108.160000pt;}
.y7c_c00451{bottom:109.440000pt;}
.y48_c00451{bottom:143.360000pt;}
.y49_c00451{bottom:144.000000pt;}
.y7a_c00451{bottom:144.640000pt;}
.y7b_c00451{bottom:145.280000pt;}
.y47_c00451{bottom:145.920000pt;}
.y45_c00451{bottom:181.760000pt;}
.y46_c00451{bottom:182.400000pt;}
.y78_c00451{bottom:183.040000pt;}
.y77_c00451{bottom:183.680000pt;}
.y44_c00451{bottom:184.320000pt;}
.y79_c00451{bottom:185.600000pt;}
.y41_c00451{bottom:220.160000pt;}
.y43_c00451{bottom:220.800000pt;}
.y40_c00451{bottom:221.440000pt;}
.y75_c00451{bottom:222.080000pt;}
.y42_c00451{bottom:223.360000pt;}
.y76_c00451{bottom:224.000000pt;}
.y3c_c00451{bottom:257.920000pt;}
.y3f_c00451{bottom:258.560000pt;}
.y3e_c00451{bottom:259.200000pt;}
.y3b_c00451{bottom:259.840000pt;}
.y74_c00451{bottom:260.480000pt;}
.y3d_c00451{bottom:261.120000pt;}
.y73_c00451{bottom:262.400000pt;}
.y3a_c00451{bottom:296.320000pt;}
.y71_c00451{bottom:297.600000pt;}
.y39_c00451{bottom:298.240000pt;}
.y72_c00451{bottom:298.880000pt;}
.y70_c00451{bottom:300.160000pt;}
.y38_c00451{bottom:334.080000pt;}
.y6f_c00451{bottom:335.360000pt;}
.y6e_c00451{bottom:336.000000pt;}
.y37_c00451{bottom:337.920000pt;}
.y6d_c00451{bottom:338.560000pt;}
.y36_c00451{bottom:372.480000pt;}
.y6c_c00451{bottom:373.760000pt;}
.y35_c00451{bottom:375.680000pt;}
.y6b_c00451{bottom:376.320000pt;}
.y34_c00451{bottom:410.240000pt;}
.y6a_c00451{bottom:411.520000pt;}
.y69_c00451{bottom:412.160000pt;}
.y68_c00451{bottom:412.800000pt;}
.y33_c00451{bottom:413.440000pt;}
.y67_c00451{bottom:414.080000pt;}
.y32_c00451{bottom:448.640000pt;}
.y66_c00451{bottom:449.280000pt;}
.y65_c00451{bottom:450.560000pt;}
.y31_c00451{bottom:451.200000pt;}
.y64_c00451{bottom:452.480000pt;}
.y30_c00451{bottom:487.040000pt;}
.y63_c00451{bottom:488.320000pt;}
.y2f_c00451{bottom:488.960000pt;}
.y61_c00451{bottom:490.240000pt;}
.y62_c00451{bottom:490.880000pt;}
.y2e_c00451{bottom:525.440000pt;}
.y5f_c00451{bottom:527.360000pt;}
.y2d_c00451{bottom:528.000000pt;}
.y60_c00451{bottom:529.920000pt;}
.y2b_c00451{bottom:563.840000pt;}
.y5e_c00451{bottom:565.120000pt;}
.y2c_c00451{bottom:565.760000pt;}
.y2a_c00451{bottom:566.400000pt;}
.y5d_c00451{bottom:567.040000pt;}
.y5c_c00451{bottom:567.680000pt;}
.y29_c00451{bottom:602.240000pt;}
.y5a_c00451{bottom:602.880000pt;}
.y5b_c00451{bottom:603.520000pt;}
.y28_c00451{bottom:604.160000pt;}
.y59_c00451{bottom:606.080000pt;}
.y27_c00451{bottom:640.640000pt;}
.y26_c00451{bottom:641.920000pt;}
.y58_c00451{bottom:642.560000pt;}
.y57_c00451{bottom:643.840000pt;}
.y25_c00451{bottom:679.040000pt;}
.y56_c00451{bottom:679.680000pt;}
.y24_c00451{bottom:680.320000pt;}
.y23_c00451{bottom:717.440000pt;}
.y22_c00451{bottom:718.080000pt;}
.y55_c00451{bottom:720.000000pt;}
.y1f_c00451{bottom:755.200000pt;}
.y21_c00451{bottom:755.840000pt;}
.y1e_c00451{bottom:756.480000pt;}
.y20_c00451{bottom:758.400000pt;}
.y1c_c00451{bottom:792.960000pt;}
.y1b_c00451{bottom:794.240000pt;}
.y19_c00451{bottom:794.880000pt;}
.y1d_c00451{bottom:795.520000pt;}
.y1a_c00451{bottom:796.160000pt;}
.y14_c00451{bottom:830.720000pt;}
.y17_c00451{bottom:831.360000pt;}
.y13_c00451{bottom:832.640000pt;}
.y18_c00451{bottom:833.280000pt;}
.y16_c00451{bottom:833.920000pt;}
.y15_c00451{bottom:834.560000pt;}
.ye_c00451{bottom:868.480000pt;}
.yb_c00451{bottom:869.120000pt;}
.y12_c00451{bottom:869.760000pt;}
.ya_c00451{bottom:870.400000pt;}
.yd_c00451{bottom:871.680000pt;}
.yc_c00451{bottom:872.320000pt;}
.y9_c00451{bottom:906.240000pt;}
.y7_c00451{bottom:906.880000pt;}
.y11_c00451{bottom:907.520000pt;}
.y6_c00451{bottom:908.160000pt;}
.y8_c00451{bottom:910.080000pt;}
.y5_c00451{bottom:944.640000pt;}
.y3_c00451{bottom:945.280000pt;}
.y4_c00451{bottom:945.920000pt;}
.y1_c00451{bottom:947.200000pt;}
.y10_c00451{bottom:947.840000pt;}
.y2_c00451{bottom:949.120000pt;}
.yf_c00451{bottom:1003.520000pt;}
.h8_c00451{height:27.645000pt;}
.hd_c00451{height:34.556250pt;}
.hc_c00451{height:36.860000pt;}
.h3_c00451{height:39.163750pt;}
.hb_c00451{height:41.467500pt;}
.h7_c00451{height:43.771250pt;}
.h5_c00451{height:46.075000pt;}
.ha_c00451{height:48.378750pt;}
.h2_c00451{height:50.682500pt;}
.h9_c00451{height:52.986250pt;}
.h6_c00451{height:55.290000pt;}
.h4_c00451{height:57.593750pt;}
.he_c00451{height:59.897500pt;}
.h0_c00451{height:1042.560000pt;}
.h1_c00451{height:1042.666667pt;}
.w0_c00451{width:695.680000pt;}
.w1_c00451{width:696.000000pt;}
.x0_c00451{left:0.000000pt;}
.x1_c00451{left:46.720000pt;}
.x22_c00451{left:48.000000pt;}
.x1d_c00451{left:112.000000pt;}
.x2_c00451{left:113.280000pt;}
.x3_c00451{left:151.680000pt;}
.x6_c00451{left:190.720000pt;}
.x18_c00451{left:200.320000pt;}
.x11_c00451{left:218.240000pt;}
.x1e_c00451{left:227.840000pt;}
.x1b_c00451{left:238.080000pt;}
.x7_c00451{left:239.360000pt;}
.x4_c00451{left:248.320000pt;}
.x12_c00451{left:257.920000pt;}
.x20_c00451{left:266.880000pt;}
.x8_c00451{left:276.480000pt;}
.x1c_c00451{left:286.080000pt;}
.x13_c00451{left:305.920000pt;}
.x9_c00451{left:314.880000pt;}
.x5_c00451{left:324.480000pt;}
.x21_c00451{left:362.880000pt;}
.x23_c00451{left:371.840000pt;}
.x14_c00451{left:382.080000pt;}
.x1f_c00451{left:401.280000pt;}
.x15_c00451{left:410.880000pt;}
.x16_c00451{left:430.720000pt;}
.xb_c00451{left:469.760000pt;}
.x24_c00451{left:478.080000pt;}
.x19_c00451{left:480.000000pt;}
.x26_c00451{left:487.680000pt;}
.x1a_c00451{left:497.920000pt;}
.x27_c00451{left:506.880000pt;}
.xf_c00451{left:517.120000pt;}
.xc_c00451{left:518.400000pt;}
.x2b_c00451{left:538.240000pt;}
.x17_c00451{left:547.200000pt;}
.x2c_c00451{left:567.680000pt;}
.x29_c00451{left:576.000000pt;}
.x10_c00451{left:585.600000pt;}
.x28_c00451{left:604.800000pt;}
.x25_c00451{left:613.760000pt;}
.xd_c00451{left:615.040000pt;}
.xa_c00451{left:624.640000pt;}
.x2a_c00451{left:632.320000pt;}
.xe_c00451{left:633.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_acbcb39c853133abf292b67a.woff2')format("woff");}.ff1_c00452{font-family:ff1_c00452;line-height:1.109863;font-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_c00452{transform:matrix(0.207975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207975,0.000000,0.000000,0.250000,0,0);}
.m2e_c00452{transform:matrix(0.236350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236350,0.000000,0.000000,0.250000,0,0);}
.m28_c00452{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m15_c00452{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.md_c00452{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00452{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);}
.m2c_c00452{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m1_c00452{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m12_c00452{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_c00452{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m4_c00452{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m6_c00452{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00452{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2_c00452{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.ma_c00452{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m25_c00452{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m40_c00452{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mf_c00452{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00452{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00452{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m11_c00452{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m22_c00452{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m10_c00452{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00452{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m13_c00452{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mb_c00452{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m29_c00452{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m5_c00452{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m39_c00452{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mc_c00452{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m20_c00452{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m19_c00452{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.me_c00452{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m0_c00452{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);}
.m38_c00452{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m14_c00452{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m26_c00452{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);}
.m16_c00452{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m7_c00452{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m34_c00452{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m21_c00452{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);}
.m9_c00452{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m3_c00452{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);}
.m31_c00452{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00452{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);}
.m3a_c00452{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m23_c00452{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);}
.m32_c00452{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m35_c00452{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);}
.m36_c00452{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m33_c00452{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00452{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00452{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_c00452{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m37_c00452{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00452{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m30_c00452{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00452{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m17_c00452{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00452{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);}
.m1a_c00452{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00452{transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);}
.m24_c00452{transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);}
.m27_c00452{transform:matrix(0.877500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.877500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.877500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00452{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.v2_c00452{vertical-align:-2.880000px;}
.v0_c00452{vertical-align:0.000000px;}
.v1_c00452{vertical-align:8.640000px;}
.ls1_c00452{letter-spacing:0.000000px;}
.ls0_c00452{letter-spacing:88.992960px;}
.sc__c00452{text-shadow:none;}
.sc0_c00452{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00452{-webkit-text-stroke:0px transparent;}
.sc0_c00452{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00452{word-spacing:0.000000px;}
.ws1_c00452{word-spacing:12.954505px;}
.ws0_c00452{word-spacing:13.463637px;}
.ws2_c00452{word-spacing:22.368000px;}
.fc0_c00452{color:transparent;}
.fsd_c00452{font-size:8.640000px;}
.fsb_c00452{font-size:34.560000px;}
.fsc_c00452{font-size:43.200000px;}
.fs7_c00452{font-size:46.080000px;}
.fs8_c00452{font-size:48.960000px;}
.fs9_c00452{font-size:51.840000px;}
.fs6_c00452{font-size:54.720000px;}
.fs3_c00452{font-size:57.600000px;}
.fs5_c00452{font-size:60.480000px;}
.fs0_c00452{font-size:63.360000px;}
.fs4_c00452{font-size:66.240000px;}
.fs2_c00452{font-size:69.120000px;}
.fs1_c00452{font-size:72.000000px;}
.fsf_c00452{font-size:77.760000px;}
.fse_c00452{font-size:80.640000px;}
.fsa_c00452{font-size:100.800000px;}
.y0_c00452{bottom:0.000000px;}
.y68_c00452{bottom:72.720000px;}
.y67_c00452{bottom:74.160000px;}
.y69_c00452{bottom:74.880000px;}
.y75_c00452{bottom:75.600000px;}
.y65_c00452{bottom:115.920000px;}
.y73_c00452{bottom:116.640000px;}
.y64_c00452{bottom:117.360000px;}
.y66_c00452{bottom:118.080000px;}
.y74_c00452{bottom:119.520000px;}
.y62_c00452{bottom:158.400000px;}
.y72_c00452{bottom:159.840000px;}
.y61_c00452{bottom:160.560000px;}
.y63_c00452{bottom:161.280000px;}
.y60_c00452{bottom:201.600000px;}
.y6a_c00452{bottom:202.320000px;}
.y5f_c00452{bottom:203.760000px;}
.y5d_c00452{bottom:244.080000px;}
.y5e_c00452{bottom:246.960000px;}
.y5c_c00452{bottom:276.480000px;}
.y5b_c00452{bottom:277.200000px;}
.y71_c00452{bottom:277.920000px;}
.y59_c00452{bottom:319.680000px;}
.y5a_c00452{bottom:321.840000px;}
.y56_c00452{bottom:351.360000px;}
.y6f_c00452{bottom:352.800000px;}
.y55_c00452{bottom:353.520000px;}
.y58_c00452{bottom:354.240000px;}
.y57_c00452{bottom:354.960000px;}
.y70_c00452{bottom:355.680000px;}
.y53_c00452{bottom:394.560000px;}
.y54_c00452{bottom:397.440000px;}
.y51_c00452{bottom:426.960000px;}
.y6e_c00452{bottom:427.680000px;}
.y50_c00452{bottom:428.400000px;}
.y52_c00452{bottom:429.840000px;}
.y4f_c00452{bottom:470.160000px;}
.y4e_c00452{bottom:473.040000px;}
.y4d_c00452{bottom:501.840000px;}
.y4b_c00452{bottom:502.560000px;}
.y6d_c00452{bottom:503.280000px;}
.y4a_c00452{bottom:504.000000px;}
.y4c_c00452{bottom:505.440000px;}
.y44_c00452{bottom:544.320000px;}
.y45_c00452{bottom:545.040000px;}
.y47_c00452{bottom:545.760000px;}
.y42_c00452{bottom:546.480000px;}
.y49_c00452{bottom:547.200000px;}
.y48_c00452{bottom:547.920000px;}
.y46_c00452{bottom:548.640000px;}
.y43_c00452{bottom:551.520000px;}
.y31_c00452{bottom:587.520000px;}
.y41_c00452{bottom:588.960000px;}
.y6b_c00452{bottom:589.680000px;}
.y30_c00452{bottom:590.400000px;}
.y6c_c00452{bottom:591.120000px;}
.y40_c00452{bottom:591.840000px;}
.y2f_c00452{bottom:630.000000px;}
.y3e_c00452{bottom:630.720000px;}
.y3d_c00452{bottom:631.440000px;}
.y3c_c00452{bottom:632.160000px;}
.y2e_c00452{bottom:632.880000px;}
.y3f_c00452{bottom:634.320000px;}
.y2c_c00452{bottom:672.480000px;}
.y2d_c00452{bottom:673.200000px;}
.y3a_c00452{bottom:673.920000px;}
.y39_c00452{bottom:674.640000px;}
.y2b_c00452{bottom:676.080000px;}
.y3b_c00452{bottom:676.800000px;}
.y27_c00452{bottom:715.680000px;}
.y28_c00452{bottom:716.400000px;}
.y38_c00452{bottom:717.120000px;}
.y26_c00452{bottom:717.840000px;}
.y2a_c00452{bottom:718.560000px;}
.y29_c00452{bottom:719.280000px;}
.y24_c00452{bottom:758.160000px;}
.y23_c00452{bottom:758.880000px;}
.y33_c00452{bottom:759.600000px;}
.y37_c00452{bottom:760.320000px;}
.y21_c00452{bottom:761.040000px;}
.y25_c00452{bottom:761.760000px;}
.y22_c00452{bottom:762.480000px;}
.y20_c00452{bottom:800.640000px;}
.y1f_c00452{bottom:802.800000px;}
.y36_c00452{bottom:803.520000px;}
.y32_c00452{bottom:804.240000px;}
.y1e_c00452{bottom:843.120000px;}
.y1c_c00452{bottom:843.840000px;}
.y34_c00452{bottom:845.280000px;}
.y1b_c00452{bottom:846.000000px;}
.y1d_c00452{bottom:847.440000px;}
.y35_c00452{bottom:848.160000px;}
.y19_c00452{bottom:879.120000px;}
.y15_c00452{bottom:886.320000px;}
.y18_c00452{bottom:887.040000px;}
.y1a_c00452{bottom:888.480000px;}
.y14_c00452{bottom:889.200000px;}
.y17_c00452{bottom:889.920000px;}
.y16_c00452{bottom:890.640000px;}
.y8_c00452{bottom:929.520000px;}
.y12_c00452{bottom:930.240000px;}
.y7_c00452{bottom:932.400000px;}
.y11_c00452{bottom:933.120000px;}
.y13_c00452{bottom:934.560000px;}
.y6_c00452{bottom:972.720000px;}
.y5_c00452{bottom:974.160000px;}
.yd_c00452{bottom:974.880000px;}
.y10_c00452{bottom:975.600000px;}
.yc_c00452{bottom:976.320000px;}
.y4_c00452{bottom:1015.920000px;}
.ye_c00452{bottom:1017.360000px;}
.y3_c00452{bottom:1018.800000px;}
.yb_c00452{bottom:1019.520000px;}
.yf_c00452{bottom:1020.240000px;}
.y2_c00452{bottom:1059.120000px;}
.ya_c00452{bottom:1059.840000px;}
.y1_c00452{bottom:1060.560000px;}
.y9_c00452{bottom:1126.080000px;}
.h10_c00452{height:7.775156px;}
.hd_c00452{height:31.100625px;}
.he_c00452{height:38.875781px;}
.h9_c00452{height:41.467500px;}
.ha_c00452{height:44.059219px;}
.hb_c00452{height:46.650937px;}
.h8_c00452{height:49.242656px;}
.h5_c00452{height:51.834375px;}
.h7_c00452{height:54.426094px;}
.hf_c00452{height:55.290937px;}
.h2_c00452{height:57.017812px;}
.h6_c00452{height:59.609531px;}
.h4_c00452{height:62.201250px;}
.h3_c00452{height:64.792969px;}
.h12_c00452{height:69.976406px;}
.h11_c00452{height:72.568125px;}
.hc_c00452{height:90.710156px;}
.h1_c00452{height:1167.750000px;}
.h0_c00452{height:1167.840000px;}
.w0_c00452{width:777.600000px;}
.w1_c00452{width:777.750000px;}
.x0_c00452{left:0.000000px;}
.x1_c00452{left:57.600000px;}
.x2a_c00452{left:59.760000px;}
.x1e_c00452{left:110.880000px;}
.x2_c00452{left:131.760000px;}
.x23_c00452{left:133.920000px;}
.x14_c00452{left:176.400000px;}
.x24_c00452{left:187.920000px;}
.x28_c00452{left:198.000000px;}
.x3_c00452{left:218.880000px;}
.x15_c00452{left:220.320000px;}
.xc_c00452{left:228.960000px;}
.x25_c00452{left:231.840000px;}
.x13_c00452{left:241.920000px;}
.x29_c00452{left:252.000000px;}
.xd_c00452{left:273.600000px;}
.x26_c00452{left:285.120000px;}
.x11_c00452{left:306.720000px;}
.x1f_c00452{left:317.520000px;}
.xe_c00452{left:328.320000px;}
.x27_c00452{left:338.400000px;}
.x16_c00452{left:349.200000px;}
.x12_c00452{left:360.720000px;}
.x17_c00452{left:401.760000px;}
.x20_c00452{left:414.000000px;}
.x18_c00452{left:447.120000px;}
.xf_c00452{left:457.920000px;}
.x21_c00452{left:459.360000px;}
.x22_c00452{left:491.760000px;}
.x8_c00452{left:534.240000px;}
.x5_c00452{left:544.320000px;}
.x9_c00452{left:565.920000px;}
.x1d_c00452{left:567.360000px;}
.x6_c00452{left:586.800000px;}
.x1c_c00452{left:599.040000px;}
.x19_c00452{left:619.920000px;}
.xa_c00452{left:621.360000px;}
.xb_c00452{left:653.760000px;}
.x1b_c00452{left:665.280000px;}
.x4_c00452{left:677.520000px;}
.x10_c00452{left:686.880000px;}
.x7_c00452{left:697.680000px;}
.x1a_c00452{left:717.840000px;}
@media print{
.v2_c00452{vertical-align:-2.560000pt;}
.v0_c00452{vertical-align:0.000000pt;}
.v1_c00452{vertical-align:7.680000pt;}
.ls1_c00452{letter-spacing:0.000000pt;}
.ls0_c00452{letter-spacing:79.104853pt;}
.ws3_c00452{word-spacing:0.000000pt;}
.ws1_c00452{word-spacing:11.515116pt;}
.ws0_c00452{word-spacing:11.967677pt;}
.ws2_c00452{word-spacing:19.882667pt;}
.fsd_c00452{font-size:7.680000pt;}
.fsb_c00452{font-size:30.720000pt;}
.fsc_c00452{font-size:38.400000pt;}
.fs7_c00452{font-size:40.960000pt;}
.fs8_c00452{font-size:43.520000pt;}
.fs9_c00452{font-size:46.080000pt;}
.fs6_c00452{font-size:48.640000pt;}
.fs3_c00452{font-size:51.200000pt;}
.fs5_c00452{font-size:53.760000pt;}
.fs0_c00452{font-size:56.320000pt;}
.fs4_c00452{font-size:58.880000pt;}
.fs2_c00452{font-size:61.440000pt;}
.fs1_c00452{font-size:64.000000pt;}
.fsf_c00452{font-size:69.120000pt;}
.fse_c00452{font-size:71.680000pt;}
.fsa_c00452{font-size:89.600000pt;}
.y0_c00452{bottom:0.000000pt;}
.y68_c00452{bottom:64.640000pt;}
.y67_c00452{bottom:65.920000pt;}
.y69_c00452{bottom:66.560000pt;}
.y75_c00452{bottom:67.200000pt;}
.y65_c00452{bottom:103.040000pt;}
.y73_c00452{bottom:103.680000pt;}
.y64_c00452{bottom:104.320000pt;}
.y66_c00452{bottom:104.960000pt;}
.y74_c00452{bottom:106.240000pt;}
.y62_c00452{bottom:140.800000pt;}
.y72_c00452{bottom:142.080000pt;}
.y61_c00452{bottom:142.720000pt;}
.y63_c00452{bottom:143.360000pt;}
.y60_c00452{bottom:179.200000pt;}
.y6a_c00452{bottom:179.840000pt;}
.y5f_c00452{bottom:181.120000pt;}
.y5d_c00452{bottom:216.960000pt;}
.y5e_c00452{bottom:219.520000pt;}
.y5c_c00452{bottom:245.760000pt;}
.y5b_c00452{bottom:246.400000pt;}
.y71_c00452{bottom:247.040000pt;}
.y59_c00452{bottom:284.160000pt;}
.y5a_c00452{bottom:286.080000pt;}
.y56_c00452{bottom:312.320000pt;}
.y6f_c00452{bottom:313.600000pt;}
.y55_c00452{bottom:314.240000pt;}
.y58_c00452{bottom:314.880000pt;}
.y57_c00452{bottom:315.520000pt;}
.y70_c00452{bottom:316.160000pt;}
.y53_c00452{bottom:350.720000pt;}
.y54_c00452{bottom:353.280000pt;}
.y51_c00452{bottom:379.520000pt;}
.y6e_c00452{bottom:380.160000pt;}
.y50_c00452{bottom:380.800000pt;}
.y52_c00452{bottom:382.080000pt;}
.y4f_c00452{bottom:417.920000pt;}
.y4e_c00452{bottom:420.480000pt;}
.y4d_c00452{bottom:446.080000pt;}
.y4b_c00452{bottom:446.720000pt;}
.y6d_c00452{bottom:447.360000pt;}
.y4a_c00452{bottom:448.000000pt;}
.y4c_c00452{bottom:449.280000pt;}
.y44_c00452{bottom:483.840000pt;}
.y45_c00452{bottom:484.480000pt;}
.y47_c00452{bottom:485.120000pt;}
.y42_c00452{bottom:485.760000pt;}
.y49_c00452{bottom:486.400000pt;}
.y48_c00452{bottom:487.040000pt;}
.y46_c00452{bottom:487.680000pt;}
.y43_c00452{bottom:490.240000pt;}
.y31_c00452{bottom:522.240000pt;}
.y41_c00452{bottom:523.520000pt;}
.y6b_c00452{bottom:524.160000pt;}
.y30_c00452{bottom:524.800000pt;}
.y6c_c00452{bottom:525.440000pt;}
.y40_c00452{bottom:526.080000pt;}
.y2f_c00452{bottom:560.000000pt;}
.y3e_c00452{bottom:560.640000pt;}
.y3d_c00452{bottom:561.280000pt;}
.y3c_c00452{bottom:561.920000pt;}
.y2e_c00452{bottom:562.560000pt;}
.y3f_c00452{bottom:563.840000pt;}
.y2c_c00452{bottom:597.760000pt;}
.y2d_c00452{bottom:598.400000pt;}
.y3a_c00452{bottom:599.040000pt;}
.y39_c00452{bottom:599.680000pt;}
.y2b_c00452{bottom:600.960000pt;}
.y3b_c00452{bottom:601.600000pt;}
.y27_c00452{bottom:636.160000pt;}
.y28_c00452{bottom:636.800000pt;}
.y38_c00452{bottom:637.440000pt;}
.y26_c00452{bottom:638.080000pt;}
.y2a_c00452{bottom:638.720000pt;}
.y29_c00452{bottom:639.360000pt;}
.y24_c00452{bottom:673.920000pt;}
.y23_c00452{bottom:674.560000pt;}
.y33_c00452{bottom:675.200000pt;}
.y37_c00452{bottom:675.840000pt;}
.y21_c00452{bottom:676.480000pt;}
.y25_c00452{bottom:677.120000pt;}
.y22_c00452{bottom:677.760000pt;}
.y20_c00452{bottom:711.680000pt;}
.y1f_c00452{bottom:713.600000pt;}
.y36_c00452{bottom:714.240000pt;}
.y32_c00452{bottom:714.880000pt;}
.y1e_c00452{bottom:749.440000pt;}
.y1c_c00452{bottom:750.080000pt;}
.y34_c00452{bottom:751.360000pt;}
.y1b_c00452{bottom:752.000000pt;}
.y1d_c00452{bottom:753.280000pt;}
.y35_c00452{bottom:753.920000pt;}
.y19_c00452{bottom:781.440000pt;}
.y15_c00452{bottom:787.840000pt;}
.y18_c00452{bottom:788.480000pt;}
.y1a_c00452{bottom:789.760000pt;}
.y14_c00452{bottom:790.400000pt;}
.y17_c00452{bottom:791.040000pt;}
.y16_c00452{bottom:791.680000pt;}
.y8_c00452{bottom:826.240000pt;}
.y12_c00452{bottom:826.880000pt;}
.y7_c00452{bottom:828.800000pt;}
.y11_c00452{bottom:829.440000pt;}
.y13_c00452{bottom:830.720000pt;}
.y6_c00452{bottom:864.640000pt;}
.y5_c00452{bottom:865.920000pt;}
.yd_c00452{bottom:866.560000pt;}
.y10_c00452{bottom:867.200000pt;}
.yc_c00452{bottom:867.840000pt;}
.y4_c00452{bottom:903.040000pt;}
.ye_c00452{bottom:904.320000pt;}
.y3_c00452{bottom:905.600000pt;}
.yb_c00452{bottom:906.240000pt;}
.yf_c00452{bottom:906.880000pt;}
.y2_c00452{bottom:941.440000pt;}
.ya_c00452{bottom:942.080000pt;}
.y1_c00452{bottom:942.720000pt;}
.y9_c00452{bottom:1000.960000pt;}
.h10_c00452{height:6.911250pt;}
.hd_c00452{height:27.645000pt;}
.he_c00452{height:34.556250pt;}
.h9_c00452{height:36.860000pt;}
.ha_c00452{height:39.163750pt;}
.hb_c00452{height:41.467500pt;}
.h8_c00452{height:43.771250pt;}
.h5_c00452{height:46.075000pt;}
.h7_c00452{height:48.378750pt;}
.hf_c00452{height:49.147500pt;}
.h2_c00452{height:50.682500pt;}
.h6_c00452{height:52.986250pt;}
.h4_c00452{height:55.290000pt;}
.h3_c00452{height:57.593750pt;}
.h12_c00452{height:62.201250pt;}
.h11_c00452{height:64.505000pt;}
.hc_c00452{height:80.631250pt;}
.h1_c00452{height:1038.000000pt;}
.h0_c00452{height:1038.080000pt;}
.w0_c00452{width:691.200000pt;}
.w1_c00452{width:691.333333pt;}
.x0_c00452{left:0.000000pt;}
.x1_c00452{left:51.200000pt;}
.x2a_c00452{left:53.120000pt;}
.x1e_c00452{left:98.560000pt;}
.x2_c00452{left:117.120000pt;}
.x23_c00452{left:119.040000pt;}
.x14_c00452{left:156.800000pt;}
.x24_c00452{left:167.040000pt;}
.x28_c00452{left:176.000000pt;}
.x3_c00452{left:194.560000pt;}
.x15_c00452{left:195.840000pt;}
.xc_c00452{left:203.520000pt;}
.x25_c00452{left:206.080000pt;}
.x13_c00452{left:215.040000pt;}
.x29_c00452{left:224.000000pt;}
.xd_c00452{left:243.200000pt;}
.x26_c00452{left:253.440000pt;}
.x11_c00452{left:272.640000pt;}
.x1f_c00452{left:282.240000pt;}
.xe_c00452{left:291.840000pt;}
.x27_c00452{left:300.800000pt;}
.x16_c00452{left:310.400000pt;}
.x12_c00452{left:320.640000pt;}
.x17_c00452{left:357.120000pt;}
.x20_c00452{left:368.000000pt;}
.x18_c00452{left:397.440000pt;}
.xf_c00452{left:407.040000pt;}
.x21_c00452{left:408.320000pt;}
.x22_c00452{left:437.120000pt;}
.x8_c00452{left:474.880000pt;}
.x5_c00452{left:483.840000pt;}
.x9_c00452{left:503.040000pt;}
.x1d_c00452{left:504.320000pt;}
.x6_c00452{left:521.600000pt;}
.x1c_c00452{left:532.480000pt;}
.x19_c00452{left:551.040000pt;}
.xa_c00452{left:552.320000pt;}
.xb_c00452{left:581.120000pt;}
.x1b_c00452{left:591.360000pt;}
.x4_c00452{left:602.240000pt;}
.x10_c00452{left:610.560000pt;}
.x7_c00452{left:620.160000pt;}
.x1a_c00452{left:638.080000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ce0f3ea7a646ffecfaae35ba.woff2')format("woff");}.ff1_c00453{font-family:ff1_c00453;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3e_c00453{transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);}
.m39_c00453{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m44_c00453{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m1c_c00453{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);}
.m2e_c00453{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);}
.m28_c00453{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);}
.m3b_c00453{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);}
.m20_c00453{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);}
.m31_c00453{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00453{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);}
.m3f_c00453{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_c00453{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_c00453{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_c00453{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m10_c00453{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00453{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m0_c00453{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mf_c00453{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m23_c00453{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m15_c00453{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m6_c00453{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m45_c00453{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m2_c00453{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00453{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00453{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m41_c00453{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.md_c00453{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m38_c00453{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00453{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m7_c00453{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m16_c00453{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00453{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);}
.m25_c00453{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);}
.m1b_c00453{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m11_c00453{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);}
.m32_c00453{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1_c00453{transform:matrix(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);}
.m36_c00453{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m34_c00453{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);}
.m29_c00453{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m13_c00453{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m22_c00453{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m19_c00453{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m9_c00453{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m12_c00453{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m42_c00453{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);}
.m46_c00453{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);}
.m5_c00453{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.mc_c00453{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m40_c00453{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m43_c00453{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.ma_c00453{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m21_c00453{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m35_c00453{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);}
.m2d_c00453{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);}
.m2f_c00453{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);}
.m4_c00453{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00453{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m26_c00453{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00453{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m18_c00453{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m24_c00453{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m3_c00453{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m14_c00453{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m37_c00453{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m17_c00453{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.mb_c00453{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00453{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m27_c00453{transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);}
.m33_c00453{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.m30_c00453{transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);}
.v0_c00453{vertical-align:0.000000px;}
.v2_c00453{vertical-align:5.760000px;}
.v1_c00453{vertical-align:8.640000px;}
.ls0_c00453{letter-spacing:0.000000px;}
.sc__c00453{text-shadow:none;}
.sc0_c00453{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00453{-webkit-text-stroke:0px transparent;}
.sc0_c00453{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00453{word-spacing:0.000000px;}
.ws3_c00453{word-spacing:202.569600px;}
.ws4_c00453{word-spacing:547.068000px;}
.ws2_c00453{word-spacing:582.438000px;}
.ws0_c00453{word-spacing:872.220000px;}
.ws1_c00453{word-spacing:883.068000px;}
.fc0_c00453{color:transparent;}
.fsa_c00453{font-size:34.560000px;}
.fsb_c00453{font-size:43.200000px;}
.fs3_c00453{font-size:46.080000px;}
.fs4_c00453{font-size:48.960000px;}
.fs7_c00453{font-size:51.840000px;}
.fs8_c00453{font-size:54.720000px;}
.fs5_c00453{font-size:57.600000px;}
.fs2_c00453{font-size:60.480000px;}
.fs1_c00453{font-size:63.360000px;}
.fs9_c00453{font-size:66.240000px;}
.fs6_c00453{font-size:69.120000px;}
.fs0_c00453{font-size:72.000000px;}
.fsc_c00453{font-size:74.880000px;}
.y0_c00453{bottom:0.000000px;}
.y83_c00453{bottom:72.000000px;}
.y86_c00453{bottom:72.720000px;}
.y84_c00453{bottom:73.440000px;}
.y87_c00453{bottom:74.160000px;}
.y82_c00453{bottom:74.880000px;}
.y85_c00453{bottom:75.600000px;}
.y7e_c00453{bottom:115.920000px;}
.y7f_c00453{bottom:117.360000px;}
.y81_c00453{bottom:118.080000px;}
.y7d_c00453{bottom:118.800000px;}
.y80_c00453{bottom:119.520000px;}
.y79_c00453{bottom:159.120000px;}
.y7a_c00453{bottom:159.840000px;}
.y7c_c00453{bottom:160.560000px;}
.y78_c00453{bottom:161.280000px;}
.y7b_c00453{bottom:162.720000px;}
.y73_c00453{bottom:202.320000px;}
.y74_c00453{bottom:203.040000px;}
.y76_c00453{bottom:203.760000px;}
.y72_c00453{bottom:204.480000px;}
.y75_c00453{bottom:205.920000px;}
.y77_c00453{bottom:206.640000px;}
.y6c_c00453{bottom:244.800000px;}
.y70_c00453{bottom:245.520000px;}
.y6d_c00453{bottom:246.240000px;}
.y6e_c00453{bottom:246.960000px;}
.y6b_c00453{bottom:247.680000px;}
.y6f_c00453{bottom:249.120000px;}
.y71_c00453{bottom:249.840000px;}
.y66_c00453{bottom:288.000000px;}
.y68_c00453{bottom:288.720000px;}
.y67_c00453{bottom:289.440000px;}
.y69_c00453{bottom:290.160000px;}
.y65_c00453{bottom:290.880000px;}
.y6a_c00453{bottom:293.040000px;}
.y5f_c00453{bottom:330.480000px;}
.y61_c00453{bottom:331.920000px;}
.y63_c00453{bottom:332.640000px;}
.y62_c00453{bottom:333.360000px;}
.y5e_c00453{bottom:334.080000px;}
.y60_c00453{bottom:334.800000px;}
.y64_c00453{bottom:335.520000px;}
.y5a_c00453{bottom:373.680000px;}
.y5b_c00453{bottom:374.400000px;}
.y5d_c00453{bottom:375.120000px;}
.y5c_c00453{bottom:375.840000px;}
.y59_c00453{bottom:377.280000px;}
.y55_c00453{bottom:416.880000px;}
.y58_c00453{bottom:417.600000px;}
.y53_c00453{bottom:419.040000px;}
.y54_c00453{bottom:420.480000px;}
.y57_c00453{bottom:421.200000px;}
.y56_c00453{bottom:421.920000px;}
.y4f_c00453{bottom:459.360000px;}
.y51_c00453{bottom:460.080000px;}
.y52_c00453{bottom:461.520000px;}
.y50_c00453{bottom:462.240000px;}
.y4d_c00453{bottom:462.960000px;}
.y4e_c00453{bottom:463.680000px;}
.y49_c00453{bottom:502.560000px;}
.y4c_c00453{bottom:503.280000px;}
.y4a_c00453{bottom:504.000000px;}
.y48_c00453{bottom:504.720000px;}
.y4b_c00453{bottom:506.160000px;}
.y46_c00453{bottom:545.760000px;}
.y44_c00453{bottom:547.200000px;}
.y47_c00453{bottom:547.920000px;}
.y45_c00453{bottom:549.360000px;}
.y3f_c00453{bottom:588.240000px;}
.y40_c00453{bottom:588.960000px;}
.y41_c00453{bottom:589.680000px;}
.y42_c00453{bottom:590.400000px;}
.y3e_c00453{bottom:591.120000px;}
.y43_c00453{bottom:593.280000px;}
.y38_c00453{bottom:631.440000px;}
.y3a_c00453{bottom:632.160000px;}
.y3c_c00453{bottom:632.880000px;}
.y37_c00453{bottom:633.600000px;}
.y3b_c00453{bottom:634.320000px;}
.y39_c00453{bottom:635.760000px;}
.y3d_c00453{bottom:636.480000px;}
.y33_c00453{bottom:674.640000px;}
.y35_c00453{bottom:676.080000px;}
.y32_c00453{bottom:676.800000px;}
.y34_c00453{bottom:678.240000px;}
.y36_c00453{bottom:678.960000px;}
.y2c_c00453{bottom:717.120000px;}
.y2f_c00453{bottom:718.560000px;}
.y2d_c00453{bottom:719.280000px;}
.y2b_c00453{bottom:720.000000px;}
.y31_c00453{bottom:720.720000px;}
.y2e_c00453{bottom:721.440000px;}
.y30_c00453{bottom:722.160000px;}
.y26_c00453{bottom:760.320000px;}
.y28_c00453{bottom:761.040000px;}
.y29_c00453{bottom:761.760000px;}
.y25_c00453{bottom:762.480000px;}
.y27_c00453{bottom:763.920000px;}
.y2a_c00453{bottom:765.360000px;}
.y1f_c00453{bottom:802.800000px;}
.y20_c00453{bottom:803.520000px;}
.y22_c00453{bottom:804.240000px;}
.y21_c00453{bottom:804.960000px;}
.y1e_c00453{bottom:805.680000px;}
.y24_c00453{bottom:806.400000px;}
.y23_c00453{bottom:807.840000px;}
.y1a_c00453{bottom:846.000000px;}
.y1b_c00453{bottom:846.720000px;}
.y19_c00453{bottom:847.440000px;}
.y1c_c00453{bottom:848.160000px;}
.y1d_c00453{bottom:850.320000px;}
.y16_c00453{bottom:888.480000px;}
.y15_c00453{bottom:889.920000px;}
.y17_c00453{bottom:892.080000px;}
.y18_c00453{bottom:893.520000px;}
.y13_c00453{bottom:931.680000px;}
.yf_c00453{bottom:932.400000px;}
.y10_c00453{bottom:933.120000px;}
.y12_c00453{bottom:933.840000px;}
.y11_c00453{bottom:934.560000px;}
.y14_c00453{bottom:935.280000px;}
.yc_c00453{bottom:974.160000px;}
.ya_c00453{bottom:974.880000px;}
.yd_c00453{bottom:975.600000px;}
.ye_c00453{bottom:976.320000px;}
.yb_c00453{bottom:977.040000px;}
.y6_c00453{bottom:1017.360000px;}
.y9_c00453{bottom:1018.080000px;}
.y8_c00453{bottom:1019.520000px;}
.y7_c00453{bottom:1020.240000px;}
.y4_c00453{bottom:1059.840000px;}
.y2_c00453{bottom:1060.560000px;}
.y5_c00453{bottom:1062.000000px;}
.y3_c00453{bottom:1062.720000px;}
.y1_c00453{bottom:1134.000000px;}
.hc_c00453{height:31.100625px;}
.hd_c00453{height:38.875781px;}
.h5_c00453{height:41.467500px;}
.h6_c00453{height:44.059219px;}
.h9_c00453{height:46.650937px;}
.ha_c00453{height:49.242656px;}
.h7_c00453{height:51.834375px;}
.h4_c00453{height:54.426094px;}
.h10_c00453{height:55.002656px;}
.h3_c00453{height:57.017812px;}
.hb_c00453{height:59.609531px;}
.h8_c00453{height:62.201250px;}
.h2_c00453{height:64.792969px;}
.hf_c00453{height:65.657813px;}
.he_c00453{height:67.384687px;}
.h1_c00453{height:1168.500000px;}
.h0_c00453{height:1168.560000px;}
.w0_c00453{width:779.760000px;}
.w1_c00453{width:780.000000px;}
.x0_c00453{left:0.000000px;}
.x2_c00453{left:47.520000px;}
.x17_c00453{left:48.960000px;}
.x26_c00453{left:50.400000px;}
.x33_c00453{left:51.839700px;}
.x3_c00453{left:123.120000px;}
.x27_c00453{left:124.560000px;}
.x23_c00453{left:169.200000px;}
.x4_c00453{left:209.520000px;}
.x12_c00453{left:220.320000px;}
.x20_c00453{left:221.760000px;}
.x29_c00453{left:223.200000px;}
.x34_c00453{left:233.280000px;}
.x21_c00453{left:252.720000px;}
.x2b_c00453{left:255.600000px;}
.x5_c00453{left:262.800000px;}
.xa_c00453{left:274.320000px;}
.x18_c00453{left:275.760000px;}
.x35_c00453{left:287.280000px;}
.x22_c00453{left:298.080000px;}
.x2a_c00453{left:308.880000px;}
.x6_c00453{left:317.520000px;}
.x19_c00453{left:319.680000px;}
.xb_c00453{left:328.320000px;}
.x36_c00453{left:331.200000px;}
.x2c_c00453{left:341.280000px;}
.x11_c00453{left:360.720000px;}
.x1a_c00453{left:362.160000px;}
.x2d_c00453{left:373.680000px;}
.x2e_c00453{left:396.000000px;}
.x1d_c00453{left:405.360000px;}
.x2f_c00453{left:438.480000px;}
.x1e_c00453{left:460.080000px;}
.x7_c00453{left:524.160000px;}
.x24_c00453{left:525.600000px;}
.x31_c00453{left:527.040000px;}
.x8_c00453{left:555.840000px;}
.x1b_c00453{left:557.280000px;}
.x38_c00453{left:558.720000px;}
.x15_c00453{left:578.880000px;}
.x25_c00453{left:580.320000px;}
.xe_c00453{left:600.480000px;}
.xc_c00453{left:611.280000px;}
.x1f_c00453{left:612.720000px;}
.xf_c00453{left:633.600000px;}
.x30_c00453{left:637.200000px;}
.xd_c00453{left:644.400000px;}
.x37_c00453{left:645.840000px;}
.x13_c00453{left:655.200000px;}
.x1c_c00453{left:656.640000px;}
.x10_c00453{left:676.080000px;}
.x1_c00453{left:685.440000px;}
.x9_c00453{left:686.880000px;}
.x14_c00453{left:689.040000px;}
.x32_c00453{left:690.480000px;}
.x16_c00453{left:708.480000px;}
.x28_c00453{left:709.920000px;}
@media print{
.v0_c00453{vertical-align:0.000000pt;}
.v2_c00453{vertical-align:5.120000pt;}
.v1_c00453{vertical-align:7.680000pt;}
.ls0_c00453{letter-spacing:0.000000pt;}
.ws5_c00453{word-spacing:0.000000pt;}
.ws3_c00453{word-spacing:180.061867pt;}
.ws4_c00453{word-spacing:486.282667pt;}
.ws2_c00453{word-spacing:517.722667pt;}
.ws0_c00453{word-spacing:775.306667pt;}
.ws1_c00453{word-spacing:784.949333pt;}
.fsa_c00453{font-size:30.720000pt;}
.fsb_c00453{font-size:38.400000pt;}
.fs3_c00453{font-size:40.960000pt;}
.fs4_c00453{font-size:43.520000pt;}
.fs7_c00453{font-size:46.080000pt;}
.fs8_c00453{font-size:48.640000pt;}
.fs5_c00453{font-size:51.200000pt;}
.fs2_c00453{font-size:53.760000pt;}
.fs1_c00453{font-size:56.320000pt;}
.fs9_c00453{font-size:58.880000pt;}
.fs6_c00453{font-size:61.440000pt;}
.fs0_c00453{font-size:64.000000pt;}
.fsc_c00453{font-size:66.560000pt;}
.y0_c00453{bottom:0.000000pt;}
.y83_c00453{bottom:64.000000pt;}
.y86_c00453{bottom:64.640000pt;}
.y84_c00453{bottom:65.280000pt;}
.y87_c00453{bottom:65.920000pt;}
.y82_c00453{bottom:66.560000pt;}
.y85_c00453{bottom:67.200000pt;}
.y7e_c00453{bottom:103.040000pt;}
.y7f_c00453{bottom:104.320000pt;}
.y81_c00453{bottom:104.960000pt;}
.y7d_c00453{bottom:105.600000pt;}
.y80_c00453{bottom:106.240000pt;}
.y79_c00453{bottom:141.440000pt;}
.y7a_c00453{bottom:142.080000pt;}
.y7c_c00453{bottom:142.720000pt;}
.y78_c00453{bottom:143.360000pt;}
.y7b_c00453{bottom:144.640000pt;}
.y73_c00453{bottom:179.840000pt;}
.y74_c00453{bottom:180.480000pt;}
.y76_c00453{bottom:181.120000pt;}
.y72_c00453{bottom:181.760000pt;}
.y75_c00453{bottom:183.040000pt;}
.y77_c00453{bottom:183.680000pt;}
.y6c_c00453{bottom:217.600000pt;}
.y70_c00453{bottom:218.240000pt;}
.y6d_c00453{bottom:218.880000pt;}
.y6e_c00453{bottom:219.520000pt;}
.y6b_c00453{bottom:220.160000pt;}
.y6f_c00453{bottom:221.440000pt;}
.y71_c00453{bottom:222.080000pt;}
.y66_c00453{bottom:256.000000pt;}
.y68_c00453{bottom:256.640000pt;}
.y67_c00453{bottom:257.280000pt;}
.y69_c00453{bottom:257.920000pt;}
.y65_c00453{bottom:258.560000pt;}
.y6a_c00453{bottom:260.480000pt;}
.y5f_c00453{bottom:293.760000pt;}
.y61_c00453{bottom:295.040000pt;}
.y63_c00453{bottom:295.680000pt;}
.y62_c00453{bottom:296.320000pt;}
.y5e_c00453{bottom:296.960000pt;}
.y60_c00453{bottom:297.600000pt;}
.y64_c00453{bottom:298.240000pt;}
.y5a_c00453{bottom:332.160000pt;}
.y5b_c00453{bottom:332.800000pt;}
.y5d_c00453{bottom:333.440000pt;}
.y5c_c00453{bottom:334.080000pt;}
.y59_c00453{bottom:335.360000pt;}
.y55_c00453{bottom:370.560000pt;}
.y58_c00453{bottom:371.200000pt;}
.y53_c00453{bottom:372.480000pt;}
.y54_c00453{bottom:373.760000pt;}
.y57_c00453{bottom:374.400000pt;}
.y56_c00453{bottom:375.040000pt;}
.y4f_c00453{bottom:408.320000pt;}
.y51_c00453{bottom:408.960000pt;}
.y52_c00453{bottom:410.240000pt;}
.y50_c00453{bottom:410.880000pt;}
.y4d_c00453{bottom:411.520000pt;}
.y4e_c00453{bottom:412.160000pt;}
.y49_c00453{bottom:446.720000pt;}
.y4c_c00453{bottom:447.360000pt;}
.y4a_c00453{bottom:448.000000pt;}
.y48_c00453{bottom:448.640000pt;}
.y4b_c00453{bottom:449.920000pt;}
.y46_c00453{bottom:485.120000pt;}
.y44_c00453{bottom:486.400000pt;}
.y47_c00453{bottom:487.040000pt;}
.y45_c00453{bottom:488.320000pt;}
.y3f_c00453{bottom:522.880000pt;}
.y40_c00453{bottom:523.520000pt;}
.y41_c00453{bottom:524.160000pt;}
.y42_c00453{bottom:524.800000pt;}
.y3e_c00453{bottom:525.440000pt;}
.y43_c00453{bottom:527.360000pt;}
.y38_c00453{bottom:561.280000pt;}
.y3a_c00453{bottom:561.920000pt;}
.y3c_c00453{bottom:562.560000pt;}
.y37_c00453{bottom:563.200000pt;}
.y3b_c00453{bottom:563.840000pt;}
.y39_c00453{bottom:565.120000pt;}
.y3d_c00453{bottom:565.760000pt;}
.y33_c00453{bottom:599.680000pt;}
.y35_c00453{bottom:600.960000pt;}
.y32_c00453{bottom:601.600000pt;}
.y34_c00453{bottom:602.880000pt;}
.y36_c00453{bottom:603.520000pt;}
.y2c_c00453{bottom:637.440000pt;}
.y2f_c00453{bottom:638.720000pt;}
.y2d_c00453{bottom:639.360000pt;}
.y2b_c00453{bottom:640.000000pt;}
.y31_c00453{bottom:640.640000pt;}
.y2e_c00453{bottom:641.280000pt;}
.y30_c00453{bottom:641.920000pt;}
.y26_c00453{bottom:675.840000pt;}
.y28_c00453{bottom:676.480000pt;}
.y29_c00453{bottom:677.120000pt;}
.y25_c00453{bottom:677.760000pt;}
.y27_c00453{bottom:679.040000pt;}
.y2a_c00453{bottom:680.320000pt;}
.y1f_c00453{bottom:713.600000pt;}
.y20_c00453{bottom:714.240000pt;}
.y22_c00453{bottom:714.880000pt;}
.y21_c00453{bottom:715.520000pt;}
.y1e_c00453{bottom:716.160000pt;}
.y24_c00453{bottom:716.800000pt;}
.y23_c00453{bottom:718.080000pt;}
.y1a_c00453{bottom:752.000000pt;}
.y1b_c00453{bottom:752.640000pt;}
.y19_c00453{bottom:753.280000pt;}
.y1c_c00453{bottom:753.920000pt;}
.y1d_c00453{bottom:755.840000pt;}
.y16_c00453{bottom:789.760000pt;}
.y15_c00453{bottom:791.040000pt;}
.y17_c00453{bottom:792.960000pt;}
.y18_c00453{bottom:794.240000pt;}
.y13_c00453{bottom:828.160000pt;}
.yf_c00453{bottom:828.800000pt;}
.y10_c00453{bottom:829.440000pt;}
.y12_c00453{bottom:830.080000pt;}
.y11_c00453{bottom:830.720000pt;}
.y14_c00453{bottom:831.360000pt;}
.yc_c00453{bottom:865.920000pt;}
.ya_c00453{bottom:866.560000pt;}
.yd_c00453{bottom:867.200000pt;}
.ye_c00453{bottom:867.840000pt;}
.yb_c00453{bottom:868.480000pt;}
.y6_c00453{bottom:904.320000pt;}
.y9_c00453{bottom:904.960000pt;}
.y8_c00453{bottom:906.240000pt;}
.y7_c00453{bottom:906.880000pt;}
.y4_c00453{bottom:942.080000pt;}
.y2_c00453{bottom:942.720000pt;}
.y5_c00453{bottom:944.000000pt;}
.y3_c00453{bottom:944.640000pt;}
.y1_c00453{bottom:1008.000000pt;}
.hc_c00453{height:27.645000pt;}
.hd_c00453{height:34.556250pt;}
.h5_c00453{height:36.860000pt;}
.h6_c00453{height:39.163750pt;}
.h9_c00453{height:41.467500pt;}
.ha_c00453{height:43.771250pt;}
.h7_c00453{height:46.075000pt;}
.h4_c00453{height:48.378750pt;}
.h10_c00453{height:48.891250pt;}
.h3_c00453{height:50.682500pt;}
.hb_c00453{height:52.986250pt;}
.h8_c00453{height:55.290000pt;}
.h2_c00453{height:57.593750pt;}
.hf_c00453{height:58.362500pt;}
.he_c00453{height:59.897500pt;}
.h1_c00453{height:1038.666667pt;}
.h0_c00453{height:1038.720000pt;}
.w0_c00453{width:693.120000pt;}
.w1_c00453{width:693.333333pt;}
.x0_c00453{left:0.000000pt;}
.x2_c00453{left:42.240000pt;}
.x17_c00453{left:43.520000pt;}
.x26_c00453{left:44.800000pt;}
.x33_c00453{left:46.079733pt;}
.x3_c00453{left:109.440000pt;}
.x27_c00453{left:110.720000pt;}
.x23_c00453{left:150.400000pt;}
.x4_c00453{left:186.240000pt;}
.x12_c00453{left:195.840000pt;}
.x20_c00453{left:197.120000pt;}
.x29_c00453{left:198.400000pt;}
.x34_c00453{left:207.360000pt;}
.x21_c00453{left:224.640000pt;}
.x2b_c00453{left:227.200000pt;}
.x5_c00453{left:233.600000pt;}
.xa_c00453{left:243.840000pt;}
.x18_c00453{left:245.120000pt;}
.x35_c00453{left:255.360000pt;}
.x22_c00453{left:264.960000pt;}
.x2a_c00453{left:274.560000pt;}
.x6_c00453{left:282.240000pt;}
.x19_c00453{left:284.160000pt;}
.xb_c00453{left:291.840000pt;}
.x36_c00453{left:294.400000pt;}
.x2c_c00453{left:303.360000pt;}
.x11_c00453{left:320.640000pt;}
.x1a_c00453{left:321.920000pt;}
.x2d_c00453{left:332.160000pt;}
.x2e_c00453{left:352.000000pt;}
.x1d_c00453{left:360.320000pt;}
.x2f_c00453{left:389.760000pt;}
.x1e_c00453{left:408.960000pt;}
.x7_c00453{left:465.920000pt;}
.x24_c00453{left:467.200000pt;}
.x31_c00453{left:468.480000pt;}
.x8_c00453{left:494.080000pt;}
.x1b_c00453{left:495.360000pt;}
.x38_c00453{left:496.640000pt;}
.x15_c00453{left:514.560000pt;}
.x25_c00453{left:515.840000pt;}
.xe_c00453{left:533.760000pt;}
.xc_c00453{left:543.360000pt;}
.x1f_c00453{left:544.640000pt;}
.xf_c00453{left:563.200000pt;}
.x30_c00453{left:566.400000pt;}
.xd_c00453{left:572.800000pt;}
.x37_c00453{left:574.080000pt;}
.x13_c00453{left:582.400000pt;}
.x1c_c00453{left:583.680000pt;}
.x10_c00453{left:600.960000pt;}
.x1_c00453{left:609.280000pt;}
.x9_c00453{left:610.560000pt;}
.x14_c00453{left:612.480000pt;}
.x32_c00453{left:613.760000pt;}
.x16_c00453{left:629.760000pt;}
.x28_c00453{left:631.040000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e767af1d20f7b2e4585c833f.woff2')format("woff");}.ff1_c00454{font-family:ff1_c00454;line-height:1.109863;font-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_c00454{transform:matrix(0.175650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175650,0.000000,0.000000,0.250000,0,0);}
.m43_c00454{transform:matrix(0.204400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204400,0.000000,0.000000,0.250000,0,0);}
.m23_c00454{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m2b_c00454{transform:matrix(0.246275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246275,0.000000,0.000000,0.250000,0,0);}
.m19_c00454{transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);}
.m49_c00454{transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);}
.m5_c00454{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m3f_c00454{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00454{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1_c00454{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);}
.m39_c00454{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m45_c00454{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mf_c00454{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_c00454{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.mc_c00454{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);}
.m4b_c00454{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);}
.m25_c00454{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m28_c00454{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m4_c00454{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m18_c00454{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m15_c00454{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);}
.m37_c00454{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00454{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m29_c00454{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m16_c00454{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m12_c00454{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m34_c00454{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.md_c00454{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m11_c00454{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m41_c00454{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m26_c00454{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m21_c00454{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mb_c00454{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00454{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);}
.m35_c00454{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);}
.m20_c00454{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m13_c00454{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);}
.m30_c00454{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m7_c00454{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00454{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);}
.m2a_c00454{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m17_c00454{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);}
.m27_c00454{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);}
.m0_c00454{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m33_c00454{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m36_c00454{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);}
.m1e_c00454{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);}
.m24_c00454{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00454{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m48_c00454{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_c00454{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m3_c00454{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m6_c00454{transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);}
.m10_c00454{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m9_c00454{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);}
.m40_c00454{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);}
.m2_c00454{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00454{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00454{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);}
.m22_c00454{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00454{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00454{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m42_c00454{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00454{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00454{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m32_c00454{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m46_c00454{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m44_c00454{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00454{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m31_c00454{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m14_c00454{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00454{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00454{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.m47_c00454{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m38_c00454{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.me_c00454{transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00454{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.v3_c00454{vertical-align:-11.520000px;}
.v2_c00454{vertical-align:-5.760000px;}
.v0_c00454{vertical-align:0.000000px;}
.v1_c00454{vertical-align:5.760000px;}
.ls2_c00454{letter-spacing:0.000000px;}
.ls1_c00454{letter-spacing:83.257680px;}
.ls0_c00454{letter-spacing:94.189680px;}
.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;}
}
.ws6_c00454{word-spacing:0.000000px;}
.ws5_c00454{word-spacing:58.828487px;}
.ws4_c00454{word-spacing:200.213856px;}
.ws3_c00454{word-spacing:206.016000px;}
.ws1_c00454{word-spacing:210.407757px;}
.ws2_c00454{word-spacing:547.068000px;}
.ws0_c00454{word-spacing:549.594000px;}
.fc0_c00454{color:transparent;}
.fse_c00454{font-size:8.640000px;}
.fs11_c00454{font-size:14.400000px;}
.fsa_c00454{font-size:34.560000px;}
.fs10_c00454{font-size:37.440000px;}
.fsc_c00454{font-size:43.200000px;}
.fs3_c00454{font-size:46.080000px;}
.fs8_c00454{font-size:48.960000px;}
.fs5_c00454{font-size:51.840000px;}
.fs4_c00454{font-size:54.720000px;}
.fs6_c00454{font-size:57.600000px;}
.fs1_c00454{font-size:60.480000px;}
.fs7_c00454{font-size:63.360000px;}
.fsb_c00454{font-size:66.240000px;}
.fs9_c00454{font-size:69.120000px;}
.fs0_c00454{font-size:72.000000px;}
.fs2_c00454{font-size:74.880000px;}
.fsd_c00454{font-size:89.280000px;}
.fsf_c00454{font-size:100.800000px;}
.y0_c00454{bottom:0.000000px;}
.y88_c00454{bottom:84.240000px;}
.y83_c00454{bottom:89.280000px;}
.y86_c00454{bottom:92.160000px;}
.y82_c00454{bottom:92.880000px;}
.y84_c00454{bottom:93.600000px;}
.y85_c00454{bottom:94.320000px;}
.y87_c00454{bottom:95.040000px;}
.y7e_c00454{bottom:132.480000px;}
.y7f_c00454{bottom:134.640000px;}
.y80_c00454{bottom:135.360000px;}
.y7d_c00454{bottom:136.080000px;}
.y81_c00454{bottom:137.520000px;}
.y7c_c00454{bottom:177.120000px;}
.y7b_c00454{bottom:179.280000px;}
.y7a_c00454{bottom:180.000000px;}
.y76_c00454{bottom:208.080000px;}
.y77_c00454{bottom:210.240000px;}
.y75_c00454{bottom:210.960000px;}
.y78_c00454{bottom:212.400000px;}
.y79_c00454{bottom:213.120000px;}
.y74_c00454{bottom:244.800000px;}
.y72_c00454{bottom:245.520000px;}
.y6e_c00454{bottom:251.280000px;}
.y71_c00454{bottom:252.720000px;}
.y6d_c00454{bottom:253.440000px;}
.y73_c00454{bottom:254.160000px;}
.y6f_c00454{bottom:254.880000px;}
.y70_c00454{bottom:255.600000px;}
.y67_c00454{bottom:294.480000px;}
.y69_c00454{bottom:295.200000px;}
.y6a_c00454{bottom:295.920000px;}
.y6b_c00454{bottom:296.640000px;}
.y66_c00454{bottom:297.360000px;}
.y68_c00454{bottom:298.080000px;}
.y6c_c00454{bottom:298.800000px;}
.y61_c00454{bottom:336.960000px;}
.y63_c00454{bottom:337.680000px;}
.y65_c00454{bottom:339.120000px;}
.y64_c00454{bottom:339.840000px;}
.y60_c00454{bottom:340.560000px;}
.y62_c00454{bottom:341.280000px;}
.y5d_c00454{bottom:380.880000px;}
.y5f_c00454{bottom:383.040000px;}
.y5b_c00454{bottom:383.760000px;}
.y5e_c00454{bottom:384.480000px;}
.y5c_c00454{bottom:388.080000px;}
.y57_c00454{bottom:424.080000px;}
.y56_c00454{bottom:424.800000px;}
.y59_c00454{bottom:426.240000px;}
.y58_c00454{bottom:427.680000px;}
.y5a_c00454{bottom:428.400000px;}
.y51_c00454{bottom:467.280000px;}
.y55_c00454{bottom:468.000000px;}
.y50_c00454{bottom:469.440000px;}
.y54_c00454{bottom:470.160000px;}
.y53_c00454{bottom:470.880000px;}
.y52_c00454{bottom:471.600000px;}
.y4b_c00454{bottom:510.480000px;}
.y4e_c00454{bottom:511.200000px;}
.y4d_c00454{bottom:511.920000px;}
.y4a_c00454{bottom:513.360000px;}
.y4c_c00454{bottom:514.080000px;}
.y4f_c00454{bottom:514.800000px;}
.y46_c00454{bottom:553.680000px;}
.y48_c00454{bottom:555.120000px;}
.y45_c00454{bottom:555.840000px;}
.y47_c00454{bottom:556.560000px;}
.y49_c00454{bottom:558.000000px;}
.y42_c00454{bottom:596.160000px;}
.y44_c00454{bottom:597.600000px;}
.y41_c00454{bottom:599.040000px;}
.y43_c00454{bottom:599.760000px;}
.y40_c00454{bottom:639.360000px;}
.y3f_c00454{bottom:642.240000px;}
.y3a_c00454{bottom:671.040000px;}
.y3e_c00454{bottom:671.760000px;}
.y39_c00454{bottom:672.480000px;}
.y3d_c00454{bottom:673.200000px;}
.y3b_c00454{bottom:673.920000px;}
.y3c_c00454{bottom:674.640000px;}
.y35_c00454{bottom:713.520000px;}
.y37_c00454{bottom:714.240000px;}
.y34_c00454{bottom:715.680000px;}
.y36_c00454{bottom:717.120000px;}
.y38_c00454{bottom:717.840000px;}
.y2f_c00454{bottom:756.720000px;}
.y32_c00454{bottom:757.440000px;}
.y31_c00454{bottom:758.160000px;}
.y2e_c00454{bottom:759.600000px;}
.y30_c00454{bottom:760.320000px;}
.y33_c00454{bottom:761.040000px;}
.y2c_c00454{bottom:798.480000px;}
.y2d_c00454{bottom:799.200000px;}
.y2a_c00454{bottom:799.920000px;}
.y2b_c00454{bottom:802.080000px;}
.y29_c00454{bottom:802.800000px;}
.y28_c00454{bottom:841.680000px;}
.y24_c00454{bottom:842.400000px;}
.y26_c00454{bottom:843.120000px;}
.y27_c00454{bottom:843.840000px;}
.y23_c00454{bottom:845.280000px;}
.y25_c00454{bottom:846.000000px;}
.y22_c00454{bottom:884.160000px;}
.y1c_c00454{bottom:884.880000px;}
.y1f_c00454{bottom:885.600000px;}
.y20_c00454{bottom:886.320000px;}
.y21_c00454{bottom:887.040000px;}
.y1b_c00454{bottom:887.760000px;}
.y1e_c00454{bottom:888.480000px;}
.y1d_c00454{bottom:889.200000px;}
.y19_c00454{bottom:927.360000px;}
.y15_c00454{bottom:928.080000px;}
.y1a_c00454{bottom:928.800000px;}
.y16_c00454{bottom:929.520000px;}
.y14_c00454{bottom:930.240000px;}
.y18_c00454{bottom:931.680000px;}
.y17_c00454{bottom:932.400000px;}
.y12_c00454{bottom:970.560000px;}
.yf_c00454{bottom:971.280000px;}
.y13_c00454{bottom:972.000000px;}
.y10_c00454{bottom:972.720000px;}
.ye_c00454{bottom:973.440000px;}
.y11_c00454{bottom:974.160000px;}
.y9_c00454{bottom:1013.760000px;}
.yc_c00454{bottom:1014.480000px;}
.ya_c00454{bottom:1015.200000px;}
.y8_c00454{bottom:1015.920000px;}
.yb_c00454{bottom:1017.360000px;}
.yd_c00454{bottom:1018.080000px;}
.y3_c00454{bottom:1056.960000px;}
.y7_c00454{bottom:1057.680000px;}
.y6_c00454{bottom:1058.400000px;}
.y4_c00454{bottom:1059.120000px;}
.y2_c00454{bottom:1059.840000px;}
.y5_c00454{bottom:1061.280000px;}
.y1_c00454{bottom:1116.000000px;}
.h10_c00454{height:7.775156px;}
.h13_c00454{height:12.958594px;}
.hc_c00454{height:31.100625px;}
.h12_c00454{height:33.692344px;}
.he_c00454{height:38.875781px;}
.h5_c00454{height:41.467500px;}
.ha_c00454{height:44.059219px;}
.h6_c00454{height:46.650937px;}
.h7_c00454{height:49.242656px;}
.h8_c00454{height:51.834375px;}
.h3_c00454{height:54.426094px;}
.h9_c00454{height:57.017812px;}
.hd_c00454{height:59.609531px;}
.hb_c00454{height:62.201250px;}
.h2_c00454{height:64.792969px;}
.h4_c00454{height:67.384687px;}
.hf_c00454{height:80.343281px;}
.h11_c00454{height:90.710156px;}
.h1_c00454{height:1167.750000px;}
.h0_c00454{height:1167.840000px;}
.w0_c00454{width:777.600000px;}
.w1_c00454{width:777.750000px;}
.x0_c00454{left:0.000000px;}
.x2_c00454{left:49.680780px;}
.x24_c00454{left:51.120000px;}
.x25_c00454{left:102.960000px;}
.x29_c00454{left:113.760000px;}
.x1c_c00454{left:123.840000px;}
.x3_c00454{left:125.280000px;}
.x2a_c00454{left:156.960000px;}
.x1d_c00454{left:168.480000px;}
.x2b_c00454{left:202.320000px;}
.x1e_c00454{left:211.680000px;}
.x1a_c00454{left:221.040000px;}
.x4_c00454{left:222.480000px;}
.xb_c00454{left:254.880000px;}
.x17_c00454{left:265.680000px;}
.x5_c00454{left:276.480000px;}
.x13_c00454{left:286.560000px;}
.x14_c00454{left:308.880000px;}
.x6_c00454{left:319.680000px;}
.x26_c00454{left:352.080000px;}
.xf_c00454{left:362.880000px;}
.x16_c00454{left:373.680000px;}
.x10_c00454{left:395.280000px;}
.x15_c00454{left:406.080000px;}
.x11_c00454{left:416.880000px;}
.x1b_c00454{left:418.320000px;}
.x27_c00454{left:449.280000px;}
.x12_c00454{left:460.080000px;}
.x2c_c00454{left:471.600000px;}
.x28_c00454{left:492.480000px;}
.x18_c00454{left:525.600000px;}
.xc_c00454{left:527.040000px;}
.x19_c00454{left:578.880000px;}
.xa_c00454{left:580.320000px;}
.xd_c00454{left:591.120000px;}
.x1f_c00454{left:602.640000px;}
.x23_c00454{left:613.440000px;}
.x22_c00454{left:636.480000px;}
.xe_c00454{left:645.840000px;}
.x7_c00454{left:656.640000px;}
.x1_c00454{left:663.840000px;}
.x20_c00454{left:678.240000px;}
.x8_c00454{left:689.040000px;}
.x21_c00454{left:699.120000px;}
.x9_c00454{left:709.920000px;}
@media print{
.v3_c00454{vertical-align:-10.240000pt;}
.v2_c00454{vertical-align:-5.120000pt;}
.v0_c00454{vertical-align:0.000000pt;}
.v1_c00454{vertical-align:5.120000pt;}
.ls2_c00454{letter-spacing:0.000000pt;}
.ls1_c00454{letter-spacing:74.006827pt;}
.ls0_c00454{letter-spacing:83.724160pt;}
.ws6_c00454{word-spacing:0.000000pt;}
.ws5_c00454{word-spacing:52.291988pt;}
.ws4_c00454{word-spacing:177.967872pt;}
.ws3_c00454{word-spacing:183.125333pt;}
.ws1_c00454{word-spacing:187.029117pt;}
.ws2_c00454{word-spacing:486.282667pt;}
.ws0_c00454{word-spacing:488.528000pt;}
.fse_c00454{font-size:7.680000pt;}
.fs11_c00454{font-size:12.800000pt;}
.fsa_c00454{font-size:30.720000pt;}
.fs10_c00454{font-size:33.280000pt;}
.fsc_c00454{font-size:38.400000pt;}
.fs3_c00454{font-size:40.960000pt;}
.fs8_c00454{font-size:43.520000pt;}
.fs5_c00454{font-size:46.080000pt;}
.fs4_c00454{font-size:48.640000pt;}
.fs6_c00454{font-size:51.200000pt;}
.fs1_c00454{font-size:53.760000pt;}
.fs7_c00454{font-size:56.320000pt;}
.fsb_c00454{font-size:58.880000pt;}
.fs9_c00454{font-size:61.440000pt;}
.fs0_c00454{font-size:64.000000pt;}
.fs2_c00454{font-size:66.560000pt;}
.fsd_c00454{font-size:79.360000pt;}
.fsf_c00454{font-size:89.600000pt;}
.y0_c00454{bottom:0.000000pt;}
.y88_c00454{bottom:74.880000pt;}
.y83_c00454{bottom:79.360000pt;}
.y86_c00454{bottom:81.920000pt;}
.y82_c00454{bottom:82.560000pt;}
.y84_c00454{bottom:83.200000pt;}
.y85_c00454{bottom:83.840000pt;}
.y87_c00454{bottom:84.480000pt;}
.y7e_c00454{bottom:117.760000pt;}
.y7f_c00454{bottom:119.680000pt;}
.y80_c00454{bottom:120.320000pt;}
.y7d_c00454{bottom:120.960000pt;}
.y81_c00454{bottom:122.240000pt;}
.y7c_c00454{bottom:157.440000pt;}
.y7b_c00454{bottom:159.360000pt;}
.y7a_c00454{bottom:160.000000pt;}
.y76_c00454{bottom:184.960000pt;}
.y77_c00454{bottom:186.880000pt;}
.y75_c00454{bottom:187.520000pt;}
.y78_c00454{bottom:188.800000pt;}
.y79_c00454{bottom:189.440000pt;}
.y74_c00454{bottom:217.600000pt;}
.y72_c00454{bottom:218.240000pt;}
.y6e_c00454{bottom:223.360000pt;}
.y71_c00454{bottom:224.640000pt;}
.y6d_c00454{bottom:225.280000pt;}
.y73_c00454{bottom:225.920000pt;}
.y6f_c00454{bottom:226.560000pt;}
.y70_c00454{bottom:227.200000pt;}
.y67_c00454{bottom:261.760000pt;}
.y69_c00454{bottom:262.400000pt;}
.y6a_c00454{bottom:263.040000pt;}
.y6b_c00454{bottom:263.680000pt;}
.y66_c00454{bottom:264.320000pt;}
.y68_c00454{bottom:264.960000pt;}
.y6c_c00454{bottom:265.600000pt;}
.y61_c00454{bottom:299.520000pt;}
.y63_c00454{bottom:300.160000pt;}
.y65_c00454{bottom:301.440000pt;}
.y64_c00454{bottom:302.080000pt;}
.y60_c00454{bottom:302.720000pt;}
.y62_c00454{bottom:303.360000pt;}
.y5d_c00454{bottom:338.560000pt;}
.y5f_c00454{bottom:340.480000pt;}
.y5b_c00454{bottom:341.120000pt;}
.y5e_c00454{bottom:341.760000pt;}
.y5c_c00454{bottom:344.960000pt;}
.y57_c00454{bottom:376.960000pt;}
.y56_c00454{bottom:377.600000pt;}
.y59_c00454{bottom:378.880000pt;}
.y58_c00454{bottom:380.160000pt;}
.y5a_c00454{bottom:380.800000pt;}
.y51_c00454{bottom:415.360000pt;}
.y55_c00454{bottom:416.000000pt;}
.y50_c00454{bottom:417.280000pt;}
.y54_c00454{bottom:417.920000pt;}
.y53_c00454{bottom:418.560000pt;}
.y52_c00454{bottom:419.200000pt;}
.y4b_c00454{bottom:453.760000pt;}
.y4e_c00454{bottom:454.400000pt;}
.y4d_c00454{bottom:455.040000pt;}
.y4a_c00454{bottom:456.320000pt;}
.y4c_c00454{bottom:456.960000pt;}
.y4f_c00454{bottom:457.600000pt;}
.y46_c00454{bottom:492.160000pt;}
.y48_c00454{bottom:493.440000pt;}
.y45_c00454{bottom:494.080000pt;}
.y47_c00454{bottom:494.720000pt;}
.y49_c00454{bottom:496.000000pt;}
.y42_c00454{bottom:529.920000pt;}
.y44_c00454{bottom:531.200000pt;}
.y41_c00454{bottom:532.480000pt;}
.y43_c00454{bottom:533.120000pt;}
.y40_c00454{bottom:568.320000pt;}
.y3f_c00454{bottom:570.880000pt;}
.y3a_c00454{bottom:596.480000pt;}
.y3e_c00454{bottom:597.120000pt;}
.y39_c00454{bottom:597.760000pt;}
.y3d_c00454{bottom:598.400000pt;}
.y3b_c00454{bottom:599.040000pt;}
.y3c_c00454{bottom:599.680000pt;}
.y35_c00454{bottom:634.240000pt;}
.y37_c00454{bottom:634.880000pt;}
.y34_c00454{bottom:636.160000pt;}
.y36_c00454{bottom:637.440000pt;}
.y38_c00454{bottom:638.080000pt;}
.y2f_c00454{bottom:672.640000pt;}
.y32_c00454{bottom:673.280000pt;}
.y31_c00454{bottom:673.920000pt;}
.y2e_c00454{bottom:675.200000pt;}
.y30_c00454{bottom:675.840000pt;}
.y33_c00454{bottom:676.480000pt;}
.y2c_c00454{bottom:709.760000pt;}
.y2d_c00454{bottom:710.400000pt;}
.y2a_c00454{bottom:711.040000pt;}
.y2b_c00454{bottom:712.960000pt;}
.y29_c00454{bottom:713.600000pt;}
.y28_c00454{bottom:748.160000pt;}
.y24_c00454{bottom:748.800000pt;}
.y26_c00454{bottom:749.440000pt;}
.y27_c00454{bottom:750.080000pt;}
.y23_c00454{bottom:751.360000pt;}
.y25_c00454{bottom:752.000000pt;}
.y22_c00454{bottom:785.920000pt;}
.y1c_c00454{bottom:786.560000pt;}
.y1f_c00454{bottom:787.200000pt;}
.y20_c00454{bottom:787.840000pt;}
.y21_c00454{bottom:788.480000pt;}
.y1b_c00454{bottom:789.120000pt;}
.y1e_c00454{bottom:789.760000pt;}
.y1d_c00454{bottom:790.400000pt;}
.y19_c00454{bottom:824.320000pt;}
.y15_c00454{bottom:824.960000pt;}
.y1a_c00454{bottom:825.600000pt;}
.y16_c00454{bottom:826.240000pt;}
.y14_c00454{bottom:826.880000pt;}
.y18_c00454{bottom:828.160000pt;}
.y17_c00454{bottom:828.800000pt;}
.y12_c00454{bottom:862.720000pt;}
.yf_c00454{bottom:863.360000pt;}
.y13_c00454{bottom:864.000000pt;}
.y10_c00454{bottom:864.640000pt;}
.ye_c00454{bottom:865.280000pt;}
.y11_c00454{bottom:865.920000pt;}
.y9_c00454{bottom:901.120000pt;}
.yc_c00454{bottom:901.760000pt;}
.ya_c00454{bottom:902.400000pt;}
.y8_c00454{bottom:903.040000pt;}
.yb_c00454{bottom:904.320000pt;}
.yd_c00454{bottom:904.960000pt;}
.y3_c00454{bottom:939.520000pt;}
.y7_c00454{bottom:940.160000pt;}
.y6_c00454{bottom:940.800000pt;}
.y4_c00454{bottom:941.440000pt;}
.y2_c00454{bottom:942.080000pt;}
.y5_c00454{bottom:943.360000pt;}
.y1_c00454{bottom:992.000000pt;}
.h10_c00454{height:6.911250pt;}
.h13_c00454{height:11.518750pt;}
.hc_c00454{height:27.645000pt;}
.h12_c00454{height:29.948750pt;}
.he_c00454{height:34.556250pt;}
.h5_c00454{height:36.860000pt;}
.ha_c00454{height:39.163750pt;}
.h6_c00454{height:41.467500pt;}
.h7_c00454{height:43.771250pt;}
.h8_c00454{height:46.075000pt;}
.h3_c00454{height:48.378750pt;}
.h9_c00454{height:50.682500pt;}
.hd_c00454{height:52.986250pt;}
.hb_c00454{height:55.290000pt;}
.h2_c00454{height:57.593750pt;}
.h4_c00454{height:59.897500pt;}
.hf_c00454{height:71.416250pt;}
.h11_c00454{height:80.631250pt;}
.h1_c00454{height:1038.000000pt;}
.h0_c00454{height:1038.080000pt;}
.w0_c00454{width:691.200000pt;}
.w1_c00454{width:691.333333pt;}
.x0_c00454{left:0.000000pt;}
.x2_c00454{left:44.160693pt;}
.x24_c00454{left:45.440000pt;}
.x25_c00454{left:91.520000pt;}
.x29_c00454{left:101.120000pt;}
.x1c_c00454{left:110.080000pt;}
.x3_c00454{left:111.360000pt;}
.x2a_c00454{left:139.520000pt;}
.x1d_c00454{left:149.760000pt;}
.x2b_c00454{left:179.840000pt;}
.x1e_c00454{left:188.160000pt;}
.x1a_c00454{left:196.480000pt;}
.x4_c00454{left:197.760000pt;}
.xb_c00454{left:226.560000pt;}
.x17_c00454{left:236.160000pt;}
.x5_c00454{left:245.760000pt;}
.x13_c00454{left:254.720000pt;}
.x14_c00454{left:274.560000pt;}
.x6_c00454{left:284.160000pt;}
.x26_c00454{left:312.960000pt;}
.xf_c00454{left:322.560000pt;}
.x16_c00454{left:332.160000pt;}
.x10_c00454{left:351.360000pt;}
.x15_c00454{left:360.960000pt;}
.x11_c00454{left:370.560000pt;}
.x1b_c00454{left:371.840000pt;}
.x27_c00454{left:399.360000pt;}
.x12_c00454{left:408.960000pt;}
.x2c_c00454{left:419.200000pt;}
.x28_c00454{left:437.760000pt;}
.x18_c00454{left:467.200000pt;}
.xc_c00454{left:468.480000pt;}
.x19_c00454{left:514.560000pt;}
.xa_c00454{left:515.840000pt;}
.xd_c00454{left:525.440000pt;}
.x1f_c00454{left:535.680000pt;}
.x23_c00454{left:545.280000pt;}
.x22_c00454{left:565.760000pt;}
.xe_c00454{left:574.080000pt;}
.x7_c00454{left:583.680000pt;}
.x1_c00454{left:590.080000pt;}
.x20_c00454{left:602.880000pt;}
.x8_c00454{left:612.480000pt;}
.x21_c00454{left:621.440000pt;}
.x9_c00454{left:631.040000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_83effed84f3112963b0b1ca8.woff2')format("woff");}.ff1_c00455{font-family:ff1_c00455;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m36_c00455{transform:matrix(0.149350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149350,0.000000,0.000000,0.250000,0,0);}
.m3c_c00455{transform:matrix(0.236800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236800,0.000000,0.000000,0.250000,0,0);}
.m45_c00455{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m1_c00455{transform:matrix(0.244200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244200,0.000000,0.000000,0.250000,0,0);}
.m32_c00455{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m1e_c00455{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m44_c00455{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m13_c00455{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m9_c00455{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);}
.m3f_c00455{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);}
.m2d_c00455{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m18_c00455{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);}
.m33_c00455{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m7_c00455{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m40_c00455{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00455{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m17_c00455{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m12_c00455{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_c00455{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00455{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m6_c00455{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m35_c00455{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m10_c00455{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00455{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m31_c00455{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m43_c00455{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00455{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m14_c00455{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m46_c00455{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m38_c00455{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00455{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);}
.m41_c00455{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00455{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);}
.m3e_c00455{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m16_c00455{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m3_c00455{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.md_c00455{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m0_c00455{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m29_c00455{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m37_c00455{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);}
.m34_c00455{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m30_c00455{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m8_c00455{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.ma_c00455{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);}
.m23_c00455{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_c00455{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00455{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);}
.m19_c00455{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m27_c00455{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.mc_c00455{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.mf_c00455{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m25_c00455{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m5_c00455{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);}
.m28_c00455{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00455{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00455{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00455{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m15_c00455{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);}
.m39_c00455{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m24_c00455{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);}
.m4_c00455{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00455{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m22_c00455{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m21_c00455{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.me_c00455{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m42_c00455{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.mb_c00455{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m2_c00455{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00455{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00455{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m20_c00455{transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);}
.v2_c00455{vertical-align:-11.520000px;}
.v1_c00455{vertical-align:-8.640000px;}
.v0_c00455{vertical-align:0.000000px;}
.ls2_c00455{letter-spacing:0.000000px;}
.ls1_c00455{letter-spacing:94.189680px;}
.ls0_c00455{letter-spacing:96.961680px;}
.sc__c00455{text-shadow:none;}
.sc0_c00455{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00455{-webkit-text-stroke:0px transparent;}
.sc0_c00455{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00455{word-spacing:0.000000px;}
.fc0_c00455{color:transparent;}
.fsc_c00455{font-size:31.680000px;}
.fs2_c00455{font-size:34.560000px;}
.fs7_c00455{font-size:43.200000px;}
.fs4_c00455{font-size:46.080000px;}
.fs5_c00455{font-size:48.960000px;}
.fsb_c00455{font-size:51.840000px;}
.fs8_c00455{font-size:54.720000px;}
.fs9_c00455{font-size:57.600000px;}
.fs3_c00455{font-size:60.480000px;}
.fs0_c00455{font-size:63.360000px;}
.fsd_c00455{font-size:66.240000px;}
.fs6_c00455{font-size:69.120000px;}
.fs1_c00455{font-size:72.000000px;}
.fsa_c00455{font-size:74.880000px;}
.y0_c00455{bottom:0.000000px;}
.y7a_c00455{bottom:85.680000px;}
.y7d_c00455{bottom:86.400000px;}
.y79_c00455{bottom:87.120000px;}
.y89_c00455{bottom:88.560000px;}
.y7b_c00455{bottom:89.280000px;}
.y7c_c00455{bottom:90.000000px;}
.y8a_c00455{bottom:90.720000px;}
.y78_c00455{bottom:128.880000px;}
.y87_c00455{bottom:130.320000px;}
.y76_c00455{bottom:131.760000px;}
.y77_c00455{bottom:132.480000px;}
.y86_c00455{bottom:133.200000px;}
.y88_c00455{bottom:133.920000px;}
.y75_c00455{bottom:172.080000px;}
.y85_c00455{bottom:173.520000px;}
.y73_c00455{bottom:174.960000px;}
.y74_c00455{bottom:175.680000px;}
.y84_c00455{bottom:176.400000px;}
.y71_c00455{bottom:213.840000px;}
.y72_c00455{bottom:214.560000px;}
.y83_c00455{bottom:216.720000px;}
.y6f_c00455{bottom:217.440000px;}
.y70_c00455{bottom:218.160000px;}
.y82_c00455{bottom:219.600000px;}
.y6a_c00455{bottom:257.040000px;}
.y6e_c00455{bottom:258.480000px;}
.y6d_c00455{bottom:259.200000px;}
.y80_c00455{bottom:259.920000px;}
.y69_c00455{bottom:260.640000px;}
.y6b_c00455{bottom:261.360000px;}
.y6c_c00455{bottom:262.080000px;}
.y81_c00455{bottom:262.800000px;}
.y68_c00455{bottom:300.960000px;}
.y65_c00455{bottom:301.680000px;}
.y66_c00455{bottom:302.400000px;}
.y64_c00455{bottom:303.840000px;}
.y67_c00455{bottom:304.560000px;}
.y61_c00455{bottom:331.920000px;}
.y62_c00455{bottom:334.080000px;}
.y7e_c00455{bottom:335.520000px;}
.y60_c00455{bottom:336.240000px;}
.y63_c00455{bottom:336.960000px;}
.y7f_c00455{bottom:337.680000px;}
.y5f_c00455{bottom:375.840000px;}
.y5c_c00455{bottom:376.560000px;}
.y5d_c00455{bottom:377.280000px;}
.y5a_c00455{bottom:378.720000px;}
.y5b_c00455{bottom:379.440000px;}
.y5e_c00455{bottom:380.160000px;}
.y51_c00455{bottom:407.520000px;}
.y52_c00455{bottom:408.960000px;}
.y58_c00455{bottom:409.680000px;}
.y50_c00455{bottom:410.400000px;}
.y59_c00455{bottom:411.120000px;}
.y53_c00455{bottom:411.840000px;}
.y4f_c00455{bottom:451.440000px;}
.y4d_c00455{bottom:452.160000px;}
.y4e_c00455{bottom:454.320000px;}
.y48_c00455{bottom:483.120000px;}
.y49_c00455{bottom:483.840000px;}
.y4b_c00455{bottom:484.560000px;}
.y4c_c00455{bottom:485.280000px;}
.y47_c00455{bottom:486.000000px;}
.y4a_c00455{bottom:486.720000px;}
.y45_c00455{bottom:527.040000px;}
.y46_c00455{bottom:527.760000px;}
.y44_c00455{bottom:529.920000px;}
.y40_c00455{bottom:558.000000px;}
.y3f_c00455{bottom:560.160000px;}
.y42_c00455{bottom:561.600000px;}
.y41_c00455{bottom:562.320000px;}
.y3e_c00455{bottom:601.920000px;}
.y3b_c00455{bottom:602.640000px;}
.y3c_c00455{bottom:603.360000px;}
.y3d_c00455{bottom:604.800000px;}
.y3a_c00455{bottom:605.520000px;}
.y37_c00455{bottom:633.600000px;}
.y39_c00455{bottom:635.040000px;}
.y36_c00455{bottom:635.760000px;}
.y38_c00455{bottom:637.200000px;}
.y35_c00455{bottom:676.800000px;}
.y33_c00455{bottom:678.240000px;}
.y34_c00455{bottom:678.960000px;}
.y32_c00455{bottom:680.400000px;}
.y2e_c00455{bottom:709.200000px;}
.y31_c00455{bottom:709.920000px;}
.y2d_c00455{bottom:710.640000px;}
.y43_c00455{bottom:711.360000px;}
.y2f_c00455{bottom:712.080000px;}
.y30_c00455{bottom:712.800000px;}
.y57_c00455{bottom:713.520000px;}
.y2c_c00455{bottom:751.680000px;}
.y2b_c00455{bottom:753.120000px;}
.y28_c00455{bottom:753.840000px;}
.y2a_c00455{bottom:755.280000px;}
.y29_c00455{bottom:756.000000px;}
.y26_c00455{bottom:783.360000px;}
.y27_c00455{bottom:785.520000px;}
.y54_c00455{bottom:786.240000px;}
.y25_c00455{bottom:787.680000px;}
.y55_c00455{bottom:788.400000px;}
.y56_c00455{bottom:789.120000px;}
.y23_c00455{bottom:827.280000px;}
.y20_c00455{bottom:828.000000px;}
.y21_c00455{bottom:828.720000px;}
.y22_c00455{bottom:830.160000px;}
.y1f_c00455{bottom:830.880000px;}
.y1c_c00455{bottom:858.960000px;}
.y1d_c00455{bottom:860.400000px;}
.y24_c00455{bottom:861.120000px;}
.y1b_c00455{bottom:862.560000px;}
.y1e_c00455{bottom:863.280000px;}
.y1a_c00455{bottom:902.160000px;}
.y18_c00455{bottom:902.880000px;}
.y17_c00455{bottom:903.600000px;}
.y19_c00455{bottom:905.040000px;}
.y10_c00455{bottom:933.840000px;}
.y15_c00455{bottom:934.560000px;}
.y16_c00455{bottom:935.280000px;}
.y14_c00455{bottom:936.000000px;}
.y13_c00455{bottom:936.720000px;}
.y12_c00455{bottom:937.440000px;}
.y11_c00455{bottom:938.160000px;}
.ye_c00455{bottom:977.040000px;}
.yd_c00455{bottom:980.640000px;}
.y7_c00455{bottom:1008.720000px;}
.ya_c00455{bottom:1009.440000px;}
.yb_c00455{bottom:1010.160000px;}
.yc_c00455{bottom:1010.880000px;}
.y6_c00455{bottom:1011.600000px;}
.y9_c00455{bottom:1012.320000px;}
.y8_c00455{bottom:1013.040000px;}
.y2_c00455{bottom:1051.920000px;}
.y4_c00455{bottom:1052.640000px;}
.y5_c00455{bottom:1053.360000px;}
.y1_c00455{bottom:1054.080000px;}
.y3_c00455{bottom:1055.520000px;}
.yf_c00455{bottom:1116.720000px;}
.he_c00455{height:28.508906px;}
.h4_c00455{height:31.100625px;}
.h9_c00455{height:38.875781px;}
.h6_c00455{height:41.467500px;}
.h7_c00455{height:44.059219px;}
.hd_c00455{height:46.650937px;}
.ha_c00455{height:49.242656px;}
.hb_c00455{height:51.834375px;}
.h5_c00455{height:54.426094px;}
.h2_c00455{height:57.017812px;}
.hf_c00455{height:59.609531px;}
.h8_c00455{height:62.201250px;}
.h3_c00455{height:64.792969px;}
.hc_c00455{height:67.384687px;}
.h1_c00455{height:1162.500000px;}
.h0_c00455{height:1162.800000px;}
.w0_c00455{width:782.640000px;}
.w1_c00455{width:783.000000px;}
.x0_c00455{left:0.000000px;}
.x1_c00455{left:59.040000px;}
.x2d_c00455{left:60.480000px;}
.x19_c00455{left:123.840000px;}
.x1f_c00455{left:133.920000px;}
.x2_c00455{left:135.360000px;}
.x20_c00455{left:156.240000px;}
.x1a_c00455{left:166.320000px;}
.xd_c00455{left:177.840000px;}
.x2c_c00455{left:188.640000px;}
.x21_c00455{left:210.240000px;}
.x14_c00455{left:221.040000px;}
.x36_c00455{left:222.480000px;}
.x9_c00455{left:231.120000px;}
.x3_c00455{left:232.560000px;}
.x38_c00455{left:243.360000px;}
.x22_c00455{left:253.440000px;}
.x1b_c00455{left:264.960000px;}
.x4_c00455{left:274.320000px;}
.x28_c00455{left:275.760000px;}
.x24_c00455{left:285.840000px;}
.x1c_c00455{left:287.280000px;}
.x39_c00455{left:296.640000px;}
.x15_c00455{left:317.520000px;}
.x26_c00455{left:318.960000px;}
.xa_c00455{left:329.760000px;}
.x25_c00455{left:340.560000px;}
.x5_c00455{left:360.720000px;}
.x27_c00455{left:362.160000px;}
.xb_c00455{left:372.240000px;}
.x1d_c00455{left:383.760000px;}
.x37_c00455{left:406.080000px;}
.x6_c00455{left:414.720000px;}
.x23_c00455{left:416.160000px;}
.x16_c00455{left:425.520000px;}
.x29_c00455{left:426.960000px;}
.x1e_c00455{left:437.760000px;}
.x35_c00455{left:449.280000px;}
.x7_c00455{left:459.360000px;}
.x17_c00455{left:469.440000px;}
.xc_c00455{left:480.240000px;}
.x2a_c00455{left:481.680000px;}
.x33_c00455{left:514.080000px;}
.x2b_c00455{left:524.880000px;}
.x8_c00455{left:535.680000px;}
.x3b_c00455{left:537.120000px;}
.x18_c00455{left:568.080000px;}
.x34_c00455{left:578.880000px;}
.x13_c00455{left:588.960000px;}
.x32_c00455{left:611.280000px;}
.x30_c00455{left:612.720000px;}
.xf_c00455{left:622.080000px;}
.x2f_c00455{left:623.520000px;}
.x31_c00455{left:655.200000px;}
.x3c_c00455{left:656.640000px;}
.x10_c00455{left:666.000000px;}
.x3a_c00455{left:667.440000px;}
.xe_c00455{left:689.040000px;}
.x11_c00455{left:698.400000px;}
.x2e_c00455{left:699.840000px;}
.x12_c00455{left:719.280000px;}
.x3d_c00455{left:720.720000px;}
@media print{
.v2_c00455{vertical-align:-10.240000pt;}
.v1_c00455{vertical-align:-7.680000pt;}
.v0_c00455{vertical-align:0.000000pt;}
.ls2_c00455{letter-spacing:0.000000pt;}
.ls1_c00455{letter-spacing:83.724160pt;}
.ls0_c00455{letter-spacing:86.188160pt;}
.ws0_c00455{word-spacing:0.000000pt;}
.fsc_c00455{font-size:28.160000pt;}
.fs2_c00455{font-size:30.720000pt;}
.fs7_c00455{font-size:38.400000pt;}
.fs4_c00455{font-size:40.960000pt;}
.fs5_c00455{font-size:43.520000pt;}
.fsb_c00455{font-size:46.080000pt;}
.fs8_c00455{font-size:48.640000pt;}
.fs9_c00455{font-size:51.200000pt;}
.fs3_c00455{font-size:53.760000pt;}
.fs0_c00455{font-size:56.320000pt;}
.fsd_c00455{font-size:58.880000pt;}
.fs6_c00455{font-size:61.440000pt;}
.fs1_c00455{font-size:64.000000pt;}
.fsa_c00455{font-size:66.560000pt;}
.y0_c00455{bottom:0.000000pt;}
.y7a_c00455{bottom:76.160000pt;}
.y7d_c00455{bottom:76.800000pt;}
.y79_c00455{bottom:77.440000pt;}
.y89_c00455{bottom:78.720000pt;}
.y7b_c00455{bottom:79.360000pt;}
.y7c_c00455{bottom:80.000000pt;}
.y8a_c00455{bottom:80.640000pt;}
.y78_c00455{bottom:114.560000pt;}
.y87_c00455{bottom:115.840000pt;}
.y76_c00455{bottom:117.120000pt;}
.y77_c00455{bottom:117.760000pt;}
.y86_c00455{bottom:118.400000pt;}
.y88_c00455{bottom:119.040000pt;}
.y75_c00455{bottom:152.960000pt;}
.y85_c00455{bottom:154.240000pt;}
.y73_c00455{bottom:155.520000pt;}
.y74_c00455{bottom:156.160000pt;}
.y84_c00455{bottom:156.800000pt;}
.y71_c00455{bottom:190.080000pt;}
.y72_c00455{bottom:190.720000pt;}
.y83_c00455{bottom:192.640000pt;}
.y6f_c00455{bottom:193.280000pt;}
.y70_c00455{bottom:193.920000pt;}
.y82_c00455{bottom:195.200000pt;}
.y6a_c00455{bottom:228.480000pt;}
.y6e_c00455{bottom:229.760000pt;}
.y6d_c00455{bottom:230.400000pt;}
.y80_c00455{bottom:231.040000pt;}
.y69_c00455{bottom:231.680000pt;}
.y6b_c00455{bottom:232.320000pt;}
.y6c_c00455{bottom:232.960000pt;}
.y81_c00455{bottom:233.600000pt;}
.y68_c00455{bottom:267.520000pt;}
.y65_c00455{bottom:268.160000pt;}
.y66_c00455{bottom:268.800000pt;}
.y64_c00455{bottom:270.080000pt;}
.y67_c00455{bottom:270.720000pt;}
.y61_c00455{bottom:295.040000pt;}
.y62_c00455{bottom:296.960000pt;}
.y7e_c00455{bottom:298.240000pt;}
.y60_c00455{bottom:298.880000pt;}
.y63_c00455{bottom:299.520000pt;}
.y7f_c00455{bottom:300.160000pt;}
.y5f_c00455{bottom:334.080000pt;}
.y5c_c00455{bottom:334.720000pt;}
.y5d_c00455{bottom:335.360000pt;}
.y5a_c00455{bottom:336.640000pt;}
.y5b_c00455{bottom:337.280000pt;}
.y5e_c00455{bottom:337.920000pt;}
.y51_c00455{bottom:362.240000pt;}
.y52_c00455{bottom:363.520000pt;}
.y58_c00455{bottom:364.160000pt;}
.y50_c00455{bottom:364.800000pt;}
.y59_c00455{bottom:365.440000pt;}
.y53_c00455{bottom:366.080000pt;}
.y4f_c00455{bottom:401.280000pt;}
.y4d_c00455{bottom:401.920000pt;}
.y4e_c00455{bottom:403.840000pt;}
.y48_c00455{bottom:429.440000pt;}
.y49_c00455{bottom:430.080000pt;}
.y4b_c00455{bottom:430.720000pt;}
.y4c_c00455{bottom:431.360000pt;}
.y47_c00455{bottom:432.000000pt;}
.y4a_c00455{bottom:432.640000pt;}
.y45_c00455{bottom:468.480000pt;}
.y46_c00455{bottom:469.120000pt;}
.y44_c00455{bottom:471.040000pt;}
.y40_c00455{bottom:496.000000pt;}
.y3f_c00455{bottom:497.920000pt;}
.y42_c00455{bottom:499.200000pt;}
.y41_c00455{bottom:499.840000pt;}
.y3e_c00455{bottom:535.040000pt;}
.y3b_c00455{bottom:535.680000pt;}
.y3c_c00455{bottom:536.320000pt;}
.y3d_c00455{bottom:537.600000pt;}
.y3a_c00455{bottom:538.240000pt;}
.y37_c00455{bottom:563.200000pt;}
.y39_c00455{bottom:564.480000pt;}
.y36_c00455{bottom:565.120000pt;}
.y38_c00455{bottom:566.400000pt;}
.y35_c00455{bottom:601.600000pt;}
.y33_c00455{bottom:602.880000pt;}
.y34_c00455{bottom:603.520000pt;}
.y32_c00455{bottom:604.800000pt;}
.y2e_c00455{bottom:630.400000pt;}
.y31_c00455{bottom:631.040000pt;}
.y2d_c00455{bottom:631.680000pt;}
.y43_c00455{bottom:632.320000pt;}
.y2f_c00455{bottom:632.960000pt;}
.y30_c00455{bottom:633.600000pt;}
.y57_c00455{bottom:634.240000pt;}
.y2c_c00455{bottom:668.160000pt;}
.y2b_c00455{bottom:669.440000pt;}
.y28_c00455{bottom:670.080000pt;}
.y2a_c00455{bottom:671.360000pt;}
.y29_c00455{bottom:672.000000pt;}
.y26_c00455{bottom:696.320000pt;}
.y27_c00455{bottom:698.240000pt;}
.y54_c00455{bottom:698.880000pt;}
.y25_c00455{bottom:700.160000pt;}
.y55_c00455{bottom:700.800000pt;}
.y56_c00455{bottom:701.440000pt;}
.y23_c00455{bottom:735.360000pt;}
.y20_c00455{bottom:736.000000pt;}
.y21_c00455{bottom:736.640000pt;}
.y22_c00455{bottom:737.920000pt;}
.y1f_c00455{bottom:738.560000pt;}
.y1c_c00455{bottom:763.520000pt;}
.y1d_c00455{bottom:764.800000pt;}
.y24_c00455{bottom:765.440000pt;}
.y1b_c00455{bottom:766.720000pt;}
.y1e_c00455{bottom:767.360000pt;}
.y1a_c00455{bottom:801.920000pt;}
.y18_c00455{bottom:802.560000pt;}
.y17_c00455{bottom:803.200000pt;}
.y19_c00455{bottom:804.480000pt;}
.y10_c00455{bottom:830.080000pt;}
.y15_c00455{bottom:830.720000pt;}
.y16_c00455{bottom:831.360000pt;}
.y14_c00455{bottom:832.000000pt;}
.y13_c00455{bottom:832.640000pt;}
.y12_c00455{bottom:833.280000pt;}
.y11_c00455{bottom:833.920000pt;}
.ye_c00455{bottom:868.480000pt;}
.yd_c00455{bottom:871.680000pt;}
.y7_c00455{bottom:896.640000pt;}
.ya_c00455{bottom:897.280000pt;}
.yb_c00455{bottom:897.920000pt;}
.yc_c00455{bottom:898.560000pt;}
.y6_c00455{bottom:899.200000pt;}
.y9_c00455{bottom:899.840000pt;}
.y8_c00455{bottom:900.480000pt;}
.y2_c00455{bottom:935.040000pt;}
.y4_c00455{bottom:935.680000pt;}
.y5_c00455{bottom:936.320000pt;}
.y1_c00455{bottom:936.960000pt;}
.y3_c00455{bottom:938.240000pt;}
.yf_c00455{bottom:992.640000pt;}
.he_c00455{height:25.341250pt;}
.h4_c00455{height:27.645000pt;}
.h9_c00455{height:34.556250pt;}
.h6_c00455{height:36.860000pt;}
.h7_c00455{height:39.163750pt;}
.hd_c00455{height:41.467500pt;}
.ha_c00455{height:43.771250pt;}
.hb_c00455{height:46.075000pt;}
.h5_c00455{height:48.378750pt;}
.h2_c00455{height:50.682500pt;}
.hf_c00455{height:52.986250pt;}
.h8_c00455{height:55.290000pt;}
.h3_c00455{height:57.593750pt;}
.hc_c00455{height:59.897500pt;}
.h1_c00455{height:1033.333333pt;}
.h0_c00455{height:1033.600000pt;}
.w0_c00455{width:695.680000pt;}
.w1_c00455{width:696.000000pt;}
.x0_c00455{left:0.000000pt;}
.x1_c00455{left:52.480000pt;}
.x2d_c00455{left:53.760000pt;}
.x19_c00455{left:110.080000pt;}
.x1f_c00455{left:119.040000pt;}
.x2_c00455{left:120.320000pt;}
.x20_c00455{left:138.880000pt;}
.x1a_c00455{left:147.840000pt;}
.xd_c00455{left:158.080000pt;}
.x2c_c00455{left:167.680000pt;}
.x21_c00455{left:186.880000pt;}
.x14_c00455{left:196.480000pt;}
.x36_c00455{left:197.760000pt;}
.x9_c00455{left:205.440000pt;}
.x3_c00455{left:206.720000pt;}
.x38_c00455{left:216.320000pt;}
.x22_c00455{left:225.280000pt;}
.x1b_c00455{left:235.520000pt;}
.x4_c00455{left:243.840000pt;}
.x28_c00455{left:245.120000pt;}
.x24_c00455{left:254.080000pt;}
.x1c_c00455{left:255.360000pt;}
.x39_c00455{left:263.680000pt;}
.x15_c00455{left:282.240000pt;}
.x26_c00455{left:283.520000pt;}
.xa_c00455{left:293.120000pt;}
.x25_c00455{left:302.720000pt;}
.x5_c00455{left:320.640000pt;}
.x27_c00455{left:321.920000pt;}
.xb_c00455{left:330.880000pt;}
.x1d_c00455{left:341.120000pt;}
.x37_c00455{left:360.960000pt;}
.x6_c00455{left:368.640000pt;}
.x23_c00455{left:369.920000pt;}
.x16_c00455{left:378.240000pt;}
.x29_c00455{left:379.520000pt;}
.x1e_c00455{left:389.120000pt;}
.x35_c00455{left:399.360000pt;}
.x7_c00455{left:408.320000pt;}
.x17_c00455{left:417.280000pt;}
.xc_c00455{left:426.880000pt;}
.x2a_c00455{left:428.160000pt;}
.x33_c00455{left:456.960000pt;}
.x2b_c00455{left:466.560000pt;}
.x8_c00455{left:476.160000pt;}
.x3b_c00455{left:477.440000pt;}
.x18_c00455{left:504.960000pt;}
.x34_c00455{left:514.560000pt;}
.x13_c00455{left:523.520000pt;}
.x32_c00455{left:543.360000pt;}
.x30_c00455{left:544.640000pt;}
.xf_c00455{left:552.960000pt;}
.x2f_c00455{left:554.240000pt;}
.x31_c00455{left:582.400000pt;}
.x3c_c00455{left:583.680000pt;}
.x10_c00455{left:592.000000pt;}
.x3a_c00455{left:593.280000pt;}
.xe_c00455{left:612.480000pt;}
.x11_c00455{left:620.800000pt;}
.x2e_c00455{left:622.080000pt;}
.x12_c00455{left:639.360000pt;}
.x3d_c00455{left:640.640000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_16580ed8c8e55dca19da9bce.woff2')format("woff");}.ff1_c00456{font-family:ff1_c00456;line-height:1.109863;font-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_c00456{transform:matrix(0.116625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116625,0.000000,0.000000,0.250000,0,0);}
.m3d_c00456{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m33_c00456{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m9_c00456{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m45_c00456{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m36_c00456{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m2c_c00456{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);}
.m47_c00456{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m2_c00456{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m8_c00456{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_c00456{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);}
.m3c_c00456{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);}
.m38_c00456{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);}
.m29_c00456{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.me_c00456{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00456{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m13_c00456{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m14_c00456{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m10_c00456{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m46_c00456{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m11_c00456{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00456{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00456{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00456{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m5_c00456{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m35_c00456{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m40_c00456{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mf_c00456{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m28_c00456{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.md_c00456{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m19_c00456{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m22_c00456{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m23_c00456{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00456{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m16_c00456{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m32_c00456{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m7_c00456{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m43_c00456{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m17_c00456{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00456{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00456{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1_c00456{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m15_c00456{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m12_c00456{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m0_c00456{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m20_c00456{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m42_c00456{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);}
.mb_c00456{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m34_c00456{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00456{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);}
.m37_c00456{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);}
.m31_c00456{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);}
.m2d_c00456{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00456{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00456{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m39_c00456{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m41_c00456{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00456{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);}
.m30_c00456{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00456{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);}
.m21_c00456{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m26_c00456{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);}
.ma_c00456{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);}
.m24_c00456{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m18_c00456{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m27_c00456{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m48_c00456{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m3_c00456{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m4_c00456{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m44_c00456{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m25_c00456{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);}
.mc_c00456{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00456{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.v3_c00456{vertical-align:-8.640000px;}
.v1_c00456{vertical-align:-2.880000px;}
.v0_c00456{vertical-align:0.000000px;}
.v2_c00456{vertical-align:2.880000px;}
.ls0_c00456{letter-spacing:0.000000px;}
.sc__c00456{text-shadow:none;}
.sc0_c00456{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00456{-webkit-text-stroke:0px transparent;}
.sc0_c00456{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00456{word-spacing:-9.697680px;}
.ws5_c00456{word-spacing:0.000000px;}
.ws4_c00456{word-spacing:14.955600px;}
.ws1_c00456{word-spacing:61.570714px;}
.ws0_c00456{word-spacing:74.493840px;}
.ws2_c00456{word-spacing:192.909600px;}
.fc0_c00456{color:transparent;}
.fsc_c00456{font-size:11.520000px;}
.fse_c00456{font-size:25.920000px;}
.fs3_c00456{font-size:34.560000px;}
.fsb_c00456{font-size:37.440000px;}
.fsd_c00456{font-size:43.200000px;}
.fsa_c00456{font-size:46.080000px;}
.fs6_c00456{font-size:48.960000px;}
.fs2_c00456{font-size:51.840000px;}
.fs5_c00456{font-size:54.720000px;}
.fs9_c00456{font-size:57.600000px;}
.fs7_c00456{font-size:60.480000px;}
.fs1_c00456{font-size:63.360000px;}
.fsf_c00456{font-size:66.240000px;}
.fs4_c00456{font-size:69.120000px;}
.fs8_c00456{font-size:72.000000px;}
.fs0_c00456{font-size:74.880000px;}
.y0_c00456{bottom:0.000000px;}
.y94_c00456{bottom:66.240000px;}
.y91_c00456{bottom:98.640000px;}
.y8e_c00456{bottom:99.360000px;}
.y90_c00456{bottom:100.080000px;}
.y92_c00456{bottom:100.800000px;}
.y93_c00456{bottom:101.520000px;}
.y8d_c00456{bottom:102.240000px;}
.y8f_c00456{bottom:102.960000px;}
.y88_c00456{bottom:141.840000px;}
.y89_c00456{bottom:142.560000px;}
.y87_c00456{bottom:143.280000px;}
.y8a_c00456{bottom:144.000000px;}
.y86_c00456{bottom:144.720000px;}
.y8c_c00456{bottom:145.440000px;}
.y8b_c00456{bottom:146.160000px;}
.y7f_c00456{bottom:184.320000px;}
.y80_c00456{bottom:185.040000px;}
.y85_c00456{bottom:185.760000px;}
.y83_c00456{bottom:186.480000px;}
.y81_c00456{bottom:187.200000px;}
.y7e_c00456{bottom:187.920000px;}
.y84_c00456{bottom:188.640000px;}
.y82_c00456{bottom:189.360000px;}
.y79_c00456{bottom:227.520000px;}
.y7b_c00456{bottom:228.240000px;}
.y7d_c00456{bottom:228.960000px;}
.y7c_c00456{bottom:229.680000px;}
.y78_c00456{bottom:230.400000px;}
.y7a_c00456{bottom:231.120000px;}
.y74_c00456{bottom:270.720000px;}
.y75_c00456{bottom:271.440000px;}
.y77_c00456{bottom:272.160000px;}
.y76_c00456{bottom:272.880000px;}
.y73_c00456{bottom:273.600000px;}
.y6f_c00456{bottom:313.920000px;}
.y72_c00456{bottom:314.640000px;}
.y71_c00456{bottom:315.360000px;}
.y6e_c00456{bottom:316.800000px;}
.y70_c00456{bottom:318.240000px;}
.y6a_c00456{bottom:357.120000px;}
.y6c_c00456{bottom:357.840000px;}
.y6b_c00456{bottom:358.560000px;}
.y6d_c00456{bottom:359.280000px;}
.y69_c00456{bottom:360.720000px;}
.y67_c00456{bottom:402.480000px;}
.y68_c00456{bottom:403.200000px;}
.y66_c00456{bottom:403.920000px;}
.y63_c00456{bottom:465.840000px;}
.y61_c00456{bottom:466.560000px;}
.y64_c00456{bottom:467.280000px;}
.y62_c00456{bottom:468.720000px;}
.y65_c00456{bottom:469.440000px;}
.y5f_c00456{bottom:487.440000px;}
.y5e_c00456{bottom:488.160000px;}
.y60_c00456{bottom:488.880000px;}
.y5c_c00456{bottom:490.320000px;}
.y5d_c00456{bottom:491.040000px;}
.y5a_c00456{bottom:509.760000px;}
.y5b_c00456{bottom:511.920000px;}
.y58_c00456{bottom:530.640000px;}
.y57_c00456{bottom:531.360000px;}
.y59_c00456{bottom:532.800000px;}
.y55_c00456{bottom:533.520000px;}
.y56_c00456{bottom:534.240000px;}
.y53_c00456{bottom:551.520000px;}
.y52_c00456{bottom:552.240000px;}
.y54_c00456{bottom:552.960000px;}
.y51_c00456{bottom:554.400000px;}
.y4e_c00456{bottom:573.120000px;}
.y4d_c00456{bottom:573.840000px;}
.y4f_c00456{bottom:575.280000px;}
.y50_c00456{bottom:576.000000px;}
.y4c_c00456{bottom:576.720000px;}
.y48_c00456{bottom:594.000000px;}
.y49_c00456{bottom:594.720000px;}
.y4b_c00456{bottom:595.440000px;}
.y4a_c00456{bottom:596.160000px;}
.y47_c00456{bottom:596.880000px;}
.y45_c00456{bottom:597.600000px;}
.y46_c00456{bottom:598.320000px;}
.y44_c00456{bottom:615.600000px;}
.y43_c00456{bottom:616.320000px;}
.y41_c00456{bottom:617.040000px;}
.y42_c00456{bottom:619.200000px;}
.y3f_c00456{bottom:637.200000px;}
.y3d_c00456{bottom:637.920000px;}
.y40_c00456{bottom:638.640000px;}
.y3e_c00456{bottom:640.080000px;}
.y3c_c00456{bottom:658.800000px;}
.y3b_c00456{bottom:659.520000px;}
.y3a_c00456{bottom:679.680000px;}
.y39_c00456{bottom:680.400000px;}
.y38_c00456{bottom:681.840000px;}
.y37_c00456{bottom:683.280000px;}
.y36_c00456{bottom:684.000000px;}
.y35_c00456{bottom:701.280000px;}
.y33_c00456{bottom:702.000000px;}
.y34_c00456{bottom:703.440000px;}
.y31_c00456{bottom:704.160000px;}
.y32_c00456{bottom:704.880000px;}
.y30_c00456{bottom:733.680000px;}
.y2e_c00456{bottom:734.400000px;}
.y2c_c00456{bottom:735.120000px;}
.y2b_c00456{bottom:735.840000px;}
.y2f_c00456{bottom:736.560000px;}
.y2d_c00456{bottom:743.040000px;}
.y29_c00456{bottom:776.160000px;}
.y2a_c00456{bottom:776.880000px;}
.y23_c00456{bottom:808.560000px;}
.y28_c00456{bottom:809.280000px;}
.y27_c00456{bottom:810.000000px;}
.y26_c00456{bottom:810.720000px;}
.y25_c00456{bottom:811.440000px;}
.y24_c00456{bottom:812.160000px;}
.y1f_c00456{bottom:840.960000px;}
.y21_c00456{bottom:841.680000px;}
.y22_c00456{bottom:843.120000px;}
.y1e_c00456{bottom:843.840000px;}
.y20_c00456{bottom:846.000000px;}
.y1d_c00456{bottom:873.360000px;}
.y1c_c00456{bottom:874.080000px;}
.y1b_c00456{bottom:876.240000px;}
.y19_c00456{bottom:905.760000px;}
.y1a_c00456{bottom:907.200000px;}
.y18_c00456{bottom:925.920000px;}
.y16_c00456{bottom:926.640000px;}
.y13_c00456{bottom:927.360000px;}
.y15_c00456{bottom:928.800000px;}
.y14_c00456{bottom:929.520000px;}
.y17_c00456{bottom:931.680000px;}
.yd_c00456{bottom:937.440000px;}
.ye_c00456{bottom:940.320000px;}
.y12_c00456{bottom:949.680000px;}
.y11_c00456{bottom:950.400000px;}
.yf_c00456{bottom:951.120000px;}
.y10_c00456{bottom:951.840000px;}
.ya_c00456{bottom:1000.080000px;}
.y7_c00456{bottom:1000.800000px;}
.yb_c00456{bottom:1001.520000px;}
.yc_c00456{bottom:1002.240000px;}
.y6_c00456{bottom:1002.960000px;}
.y8_c00456{bottom:1003.680000px;}
.y9_c00456{bottom:1004.400000px;}
.y3_c00456{bottom:1043.280000px;}
.y5_c00456{bottom:1044.720000px;}
.y2_c00456{bottom:1045.440000px;}
.y4_c00456{bottom:1046.880000px;}
.y1_c00456{bottom:1118.160000px;}
.he_c00456{height:10.366875px;}
.h10_c00456{height:23.325469px;}
.h5_c00456{height:31.100625px;}
.hd_c00456{height:33.692344px;}
.hf_c00456{height:38.875781px;}
.hc_c00456{height:41.467500px;}
.h8_c00456{height:44.059219px;}
.h4_c00456{height:46.650937px;}
.h7_c00456{height:49.242656px;}
.hb_c00456{height:51.834375px;}
.h9_c00456{height:54.426094px;}
.h3_c00456{height:57.017812px;}
.h11_c00456{height:59.609531px;}
.h6_c00456{height:62.201250px;}
.ha_c00456{height:64.792969px;}
.h2_c00456{height:67.384687px;}
.h1_c00456{height:1161.750000px;}
.h0_c00456{height:1162.080000px;}
.w1_c00456{width:789.750000px;}
.w0_c00456{width:789.840000px;}
.x0_c00456{left:0.000000px;}
.x2_c00456{left:51.840000px;}
.x38_c00456{left:53.280000px;}
.x2c_c00456{left:63.360000px;}
.x1d_c00456{left:72.000000px;}
.x1f_c00456{left:73.440000px;}
.x29_c00456{left:95.040000px;}
.x2d_c00456{left:106.560000px;}
.x31_c00456{left:115.920000px;}
.x30_c00456{left:117.360000px;}
.x3b_c00456{left:126.000000px;}
.x3_c00456{left:127.440000px;}
.x20_c00456{left:138.240000px;}
.x26_c00456{left:139.680000px;}
.x21_c00456{left:160.560000px;}
.x1e_c00456{left:169.920000px;}
.xf_c00456{left:172.080000px;}
.x41_c00456{left:181.440000px;}
.x2a_c00456{left:192.960000px;}
.x3c_c00456{left:213.120000px;}
.x3f_c00456{left:214.560000px;}
.x15_c00456{left:224.640000px;}
.x32_c00456{left:226.080000px;}
.x3a_c00456{left:234.000000px;}
.xc_c00456{left:235.440000px;}
.x10_c00456{left:236.880000px;}
.x22_c00456{left:246.960000px;}
.x27_c00456{left:257.040000px;}
.x37_c00456{left:258.480000px;}
.x4_c00456{left:267.840000px;}
.x16_c00456{left:279.360000px;}
.xd_c00456{left:290.160000px;}
.x23_c00456{left:311.760000px;}
.x5_c00456{left:322.560000px;}
.xe_c00456{left:332.640000px;}
.x11_c00456{left:344.160000px;}
.x17_c00456{left:355.680000px;}
.x6_c00456{left:365.040000px;}
.x24_c00456{left:375.840000px;}
.x18_c00456{left:398.880000px;}
.x12_c00456{left:408.240000px;}
.x2e_c00456{left:409.680000px;}
.x19_c00456{left:429.840000px;}
.x25_c00456{left:452.160000px;}
.x42_c00456{left:462.960000px;}
.x35_c00456{left:464.400000px;}
.x33_c00456{left:473.040000px;}
.x2f_c00456{left:474.480000px;}
.x36_c00456{left:517.680000px;}
.x7_c00456{left:528.480000px;}
.x3d_c00456{left:539.280000px;}
.x28_c00456{left:550.800000px;}
.x3e_c00456{left:560.880000px;}
.x40_c00456{left:581.040000px;}
.x39_c00456{left:583.200000px;}
.x34_c00456{left:592.560000px;}
.x2b_c00456{left:594.000000px;}
.x8_c00456{left:614.880000px;}
.x1a_c00456{left:624.960000px;}
.x1b_c00456{left:648.000000px;}
.x9_c00456{left:658.800000px;}
.x1_c00456{left:667.440000px;}
.x13_c00456{left:680.400000px;}
.xa_c00456{left:691.920000px;}
.x1c_c00456{left:702.000000px;}
.xb_c00456{left:711.360000px;}
.x14_c00456{left:722.160000px;}
@media print{
.v3_c00456{vertical-align:-7.680000pt;}
.v1_c00456{vertical-align:-2.560000pt;}
.v0_c00456{vertical-align:0.000000pt;}
.v2_c00456{vertical-align:2.560000pt;}
.ls0_c00456{letter-spacing:0.000000pt;}
.ws3_c00456{word-spacing:-8.620160pt;}
.ws5_c00456{word-spacing:0.000000pt;}
.ws4_c00456{word-spacing:13.293867pt;}
.ws1_c00456{word-spacing:54.729523pt;}
.ws0_c00456{word-spacing:66.216747pt;}
.ws2_c00456{word-spacing:171.475200pt;}
.fsc_c00456{font-size:10.240000pt;}
.fse_c00456{font-size:23.040000pt;}
.fs3_c00456{font-size:30.720000pt;}
.fsb_c00456{font-size:33.280000pt;}
.fsd_c00456{font-size:38.400000pt;}
.fsa_c00456{font-size:40.960000pt;}
.fs6_c00456{font-size:43.520000pt;}
.fs2_c00456{font-size:46.080000pt;}
.fs5_c00456{font-size:48.640000pt;}
.fs9_c00456{font-size:51.200000pt;}
.fs7_c00456{font-size:53.760000pt;}
.fs1_c00456{font-size:56.320000pt;}
.fsf_c00456{font-size:58.880000pt;}
.fs4_c00456{font-size:61.440000pt;}
.fs8_c00456{font-size:64.000000pt;}
.fs0_c00456{font-size:66.560000pt;}
.y0_c00456{bottom:0.000000pt;}
.y94_c00456{bottom:58.880000pt;}
.y91_c00456{bottom:87.680000pt;}
.y8e_c00456{bottom:88.320000pt;}
.y90_c00456{bottom:88.960000pt;}
.y92_c00456{bottom:89.600000pt;}
.y93_c00456{bottom:90.240000pt;}
.y8d_c00456{bottom:90.880000pt;}
.y8f_c00456{bottom:91.520000pt;}
.y88_c00456{bottom:126.080000pt;}
.y89_c00456{bottom:126.720000pt;}
.y87_c00456{bottom:127.360000pt;}
.y8a_c00456{bottom:128.000000pt;}
.y86_c00456{bottom:128.640000pt;}
.y8c_c00456{bottom:129.280000pt;}
.y8b_c00456{bottom:129.920000pt;}
.y7f_c00456{bottom:163.840000pt;}
.y80_c00456{bottom:164.480000pt;}
.y85_c00456{bottom:165.120000pt;}
.y83_c00456{bottom:165.760000pt;}
.y81_c00456{bottom:166.400000pt;}
.y7e_c00456{bottom:167.040000pt;}
.y84_c00456{bottom:167.680000pt;}
.y82_c00456{bottom:168.320000pt;}
.y79_c00456{bottom:202.240000pt;}
.y7b_c00456{bottom:202.880000pt;}
.y7d_c00456{bottom:203.520000pt;}
.y7c_c00456{bottom:204.160000pt;}
.y78_c00456{bottom:204.800000pt;}
.y7a_c00456{bottom:205.440000pt;}
.y74_c00456{bottom:240.640000pt;}
.y75_c00456{bottom:241.280000pt;}
.y77_c00456{bottom:241.920000pt;}
.y76_c00456{bottom:242.560000pt;}
.y73_c00456{bottom:243.200000pt;}
.y6f_c00456{bottom:279.040000pt;}
.y72_c00456{bottom:279.680000pt;}
.y71_c00456{bottom:280.320000pt;}
.y6e_c00456{bottom:281.600000pt;}
.y70_c00456{bottom:282.880000pt;}
.y6a_c00456{bottom:317.440000pt;}
.y6c_c00456{bottom:318.080000pt;}
.y6b_c00456{bottom:318.720000pt;}
.y6d_c00456{bottom:319.360000pt;}
.y69_c00456{bottom:320.640000pt;}
.y67_c00456{bottom:357.760000pt;}
.y68_c00456{bottom:358.400000pt;}
.y66_c00456{bottom:359.040000pt;}
.y63_c00456{bottom:414.080000pt;}
.y61_c00456{bottom:414.720000pt;}
.y64_c00456{bottom:415.360000pt;}
.y62_c00456{bottom:416.640000pt;}
.y65_c00456{bottom:417.280000pt;}
.y5f_c00456{bottom:433.280000pt;}
.y5e_c00456{bottom:433.920000pt;}
.y60_c00456{bottom:434.560000pt;}
.y5c_c00456{bottom:435.840000pt;}
.y5d_c00456{bottom:436.480000pt;}
.y5a_c00456{bottom:453.120000pt;}
.y5b_c00456{bottom:455.040000pt;}
.y58_c00456{bottom:471.680000pt;}
.y57_c00456{bottom:472.320000pt;}
.y59_c00456{bottom:473.600000pt;}
.y55_c00456{bottom:474.240000pt;}
.y56_c00456{bottom:474.880000pt;}
.y53_c00456{bottom:490.240000pt;}
.y52_c00456{bottom:490.880000pt;}
.y54_c00456{bottom:491.520000pt;}
.y51_c00456{bottom:492.800000pt;}
.y4e_c00456{bottom:509.440000pt;}
.y4d_c00456{bottom:510.080000pt;}
.y4f_c00456{bottom:511.360000pt;}
.y50_c00456{bottom:512.000000pt;}
.y4c_c00456{bottom:512.640000pt;}
.y48_c00456{bottom:528.000000pt;}
.y49_c00456{bottom:528.640000pt;}
.y4b_c00456{bottom:529.280000pt;}
.y4a_c00456{bottom:529.920000pt;}
.y47_c00456{bottom:530.560000pt;}
.y45_c00456{bottom:531.200000pt;}
.y46_c00456{bottom:531.840000pt;}
.y44_c00456{bottom:547.200000pt;}
.y43_c00456{bottom:547.840000pt;}
.y41_c00456{bottom:548.480000pt;}
.y42_c00456{bottom:550.400000pt;}
.y3f_c00456{bottom:566.400000pt;}
.y3d_c00456{bottom:567.040000pt;}
.y40_c00456{bottom:567.680000pt;}
.y3e_c00456{bottom:568.960000pt;}
.y3c_c00456{bottom:585.600000pt;}
.y3b_c00456{bottom:586.240000pt;}
.y3a_c00456{bottom:604.160000pt;}
.y39_c00456{bottom:604.800000pt;}
.y38_c00456{bottom:606.080000pt;}
.y37_c00456{bottom:607.360000pt;}
.y36_c00456{bottom:608.000000pt;}
.y35_c00456{bottom:623.360000pt;}
.y33_c00456{bottom:624.000000pt;}
.y34_c00456{bottom:625.280000pt;}
.y31_c00456{bottom:625.920000pt;}
.y32_c00456{bottom:626.560000pt;}
.y30_c00456{bottom:652.160000pt;}
.y2e_c00456{bottom:652.800000pt;}
.y2c_c00456{bottom:653.440000pt;}
.y2b_c00456{bottom:654.080000pt;}
.y2f_c00456{bottom:654.720000pt;}
.y2d_c00456{bottom:660.480000pt;}
.y29_c00456{bottom:689.920000pt;}
.y2a_c00456{bottom:690.560000pt;}
.y23_c00456{bottom:718.720000pt;}
.y28_c00456{bottom:719.360000pt;}
.y27_c00456{bottom:720.000000pt;}
.y26_c00456{bottom:720.640000pt;}
.y25_c00456{bottom:721.280000pt;}
.y24_c00456{bottom:721.920000pt;}
.y1f_c00456{bottom:747.520000pt;}
.y21_c00456{bottom:748.160000pt;}
.y22_c00456{bottom:749.440000pt;}
.y1e_c00456{bottom:750.080000pt;}
.y20_c00456{bottom:752.000000pt;}
.y1d_c00456{bottom:776.320000pt;}
.y1c_c00456{bottom:776.960000pt;}
.y1b_c00456{bottom:778.880000pt;}
.y19_c00456{bottom:805.120000pt;}
.y1a_c00456{bottom:806.400000pt;}
.y18_c00456{bottom:823.040000pt;}
.y16_c00456{bottom:823.680000pt;}
.y13_c00456{bottom:824.320000pt;}
.y15_c00456{bottom:825.600000pt;}
.y14_c00456{bottom:826.240000pt;}
.y17_c00456{bottom:828.160000pt;}
.yd_c00456{bottom:833.280000pt;}
.ye_c00456{bottom:835.840000pt;}
.y12_c00456{bottom:844.160000pt;}
.y11_c00456{bottom:844.800000pt;}
.yf_c00456{bottom:845.440000pt;}
.y10_c00456{bottom:846.080000pt;}
.ya_c00456{bottom:888.960000pt;}
.y7_c00456{bottom:889.600000pt;}
.yb_c00456{bottom:890.240000pt;}
.yc_c00456{bottom:890.880000pt;}
.y6_c00456{bottom:891.520000pt;}
.y8_c00456{bottom:892.160000pt;}
.y9_c00456{bottom:892.800000pt;}
.y3_c00456{bottom:927.360000pt;}
.y5_c00456{bottom:928.640000pt;}
.y2_c00456{bottom:929.280000pt;}
.y4_c00456{bottom:930.560000pt;}
.y1_c00456{bottom:993.920000pt;}
.he_c00456{height:9.215000pt;}
.h10_c00456{height:20.733750pt;}
.h5_c00456{height:27.645000pt;}
.hd_c00456{height:29.948750pt;}
.hf_c00456{height:34.556250pt;}
.hc_c00456{height:36.860000pt;}
.h8_c00456{height:39.163750pt;}
.h4_c00456{height:41.467500pt;}
.h7_c00456{height:43.771250pt;}
.hb_c00456{height:46.075000pt;}
.h9_c00456{height:48.378750pt;}
.h3_c00456{height:50.682500pt;}
.h11_c00456{height:52.986250pt;}
.h6_c00456{height:55.290000pt;}
.ha_c00456{height:57.593750pt;}
.h2_c00456{height:59.897500pt;}
.h1_c00456{height:1032.666667pt;}
.h0_c00456{height:1032.960000pt;}
.w1_c00456{width:702.000000pt;}
.w0_c00456{width:702.080000pt;}
.x0_c00456{left:0.000000pt;}
.x2_c00456{left:46.080000pt;}
.x38_c00456{left:47.360000pt;}
.x2c_c00456{left:56.320000pt;}
.x1d_c00456{left:64.000000pt;}
.x1f_c00456{left:65.280000pt;}
.x29_c00456{left:84.480000pt;}
.x2d_c00456{left:94.720000pt;}
.x31_c00456{left:103.040000pt;}
.x30_c00456{left:104.320000pt;}
.x3b_c00456{left:112.000000pt;}
.x3_c00456{left:113.280000pt;}
.x20_c00456{left:122.880000pt;}
.x26_c00456{left:124.160000pt;}
.x21_c00456{left:142.720000pt;}
.x1e_c00456{left:151.040000pt;}
.xf_c00456{left:152.960000pt;}
.x41_c00456{left:161.280000pt;}
.x2a_c00456{left:171.520000pt;}
.x3c_c00456{left:189.440000pt;}
.x3f_c00456{left:190.720000pt;}
.x15_c00456{left:199.680000pt;}
.x32_c00456{left:200.960000pt;}
.x3a_c00456{left:208.000000pt;}
.xc_c00456{left:209.280000pt;}
.x10_c00456{left:210.560000pt;}
.x22_c00456{left:219.520000pt;}
.x27_c00456{left:228.480000pt;}
.x37_c00456{left:229.760000pt;}
.x4_c00456{left:238.080000pt;}
.x16_c00456{left:248.320000pt;}
.xd_c00456{left:257.920000pt;}
.x23_c00456{left:277.120000pt;}
.x5_c00456{left:286.720000pt;}
.xe_c00456{left:295.680000pt;}
.x11_c00456{left:305.920000pt;}
.x17_c00456{left:316.160000pt;}
.x6_c00456{left:324.480000pt;}
.x24_c00456{left:334.080000pt;}
.x18_c00456{left:354.560000pt;}
.x12_c00456{left:362.880000pt;}
.x2e_c00456{left:364.160000pt;}
.x19_c00456{left:382.080000pt;}
.x25_c00456{left:401.920000pt;}
.x42_c00456{left:411.520000pt;}
.x35_c00456{left:412.800000pt;}
.x33_c00456{left:420.480000pt;}
.x2f_c00456{left:421.760000pt;}
.x36_c00456{left:460.160000pt;}
.x7_c00456{left:469.760000pt;}
.x3d_c00456{left:479.360000pt;}
.x28_c00456{left:489.600000pt;}
.x3e_c00456{left:498.560000pt;}
.x40_c00456{left:516.480000pt;}
.x39_c00456{left:518.400000pt;}
.x34_c00456{left:526.720000pt;}
.x2b_c00456{left:528.000000pt;}
.x8_c00456{left:546.560000pt;}
.x1a_c00456{left:555.520000pt;}
.x1b_c00456{left:576.000000pt;}
.x9_c00456{left:585.600000pt;}
.x1_c00456{left:593.280000pt;}
.x13_c00456{left:604.800000pt;}
.xa_c00456{left:615.040000pt;}
.x1c_c00456{left:624.000000pt;}
.xb_c00456{left:632.320000pt;}
.x14_c00456{left:641.920000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6311fd25c73585266f3261f7.woff2')format("woff");}.ff1_c00457{font-family:ff1_c00457;line-height:1.109863;font-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_c00457{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m17_c00457{transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);}
.m4e_c00457{transform:matrix(0.244200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244200,0.000000,0.000000,0.250000,0,0);}
.m13_c00457{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00457{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m5_c00457{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m39_c00457{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);}
.m34_c00457{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_c00457{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m23_c00457{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00457{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m18_c00457{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00457{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);}
.m35_c00457{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);}
.m47_c00457{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m14_c00457{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.md_c00457{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);}
.m44_c00457{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);}
.m41_c00457{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m15_c00457{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m7_c00457{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00457{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00457{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00457{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m42_c00457{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00457{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00457{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m8_c00457{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m46_c00457{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00457{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m6_c00457{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m37_c00457{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m43_c00457{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m11_c00457{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);}
.m24_c00457{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00457{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mc_c00457{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m0_c00457{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m19_c00457{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);}
.m36_c00457{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m29_c00457{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_c00457{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m53_c00457{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);}
.m1c_c00457{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m21_c00457{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);}
.m40_c00457{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1_c00457{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00457{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00457{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);}
.m9_c00457{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m25_c00457{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00457{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00457{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);}
.m4a_c00457{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m2_c00457{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);}
.ma_c00457{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m4_c00457{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);}
.m16_c00457{transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);}
.m3_c00457{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m10_c00457{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m32_c00457{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00457{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m30_c00457{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m45_c00457{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);}
.m1a_c00457{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m49_c00457{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m20_c00457{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00457{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m50_c00457{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m12_c00457{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m22_c00457{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m31_c00457{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m26_c00457{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.mf_c00457{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m33_c00457{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00457{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);}
.m2b_c00457{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);}
.m27_c00457{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m51_c00457{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00457{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m28_c00457{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m54_c00457{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);}
.m52_c00457{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m55_c00457{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.m38_c00457{transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00457{transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.845000,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;}
}
.ws1_c00457{word-spacing:0.000000px;}
.ws0_c00457{word-spacing:62.289308px;}
.fc0_c00457{color:transparent;}
.fs8_c00457{font-size:34.560000px;}
.fsf_c00457{font-size:37.440000px;}
.fsc_c00457{font-size:43.200000px;}
.fs7_c00457{font-size:46.080000px;}
.fs9_c00457{font-size:48.960000px;}
.fs4_c00457{font-size:51.840000px;}
.fs3_c00457{font-size:54.720000px;}
.fs5_c00457{font-size:57.600000px;}
.fs1_c00457{font-size:60.480000px;}
.fsa_c00457{font-size:63.360000px;}
.fse_c00457{font-size:66.240000px;}
.fsd_c00457{font-size:69.120000px;}
.fsb_c00457{font-size:72.000000px;}
.fs0_c00457{font-size:74.880000px;}
.fs2_c00457{font-size:89.280000px;}
.fs6_c00457{font-size:92.160000px;}
.y0_c00457{bottom:0.000000px;}
.y81_c00457{bottom:51.840000px;}
.y7f_c00457{bottom:54.720000px;}
.y80_c00457{bottom:55.440000px;}
.y7a_c00457{bottom:84.960000px;}
.y79_c00457{bottom:86.400000px;}
.y7e_c00457{bottom:87.120000px;}
.y7b_c00457{bottom:87.840000px;}
.y7c_c00457{bottom:88.560000px;}
.y7d_c00457{bottom:89.280000px;}
.y73_c00457{bottom:126.720000px;}
.y77_c00457{bottom:128.880000px;}
.y75_c00457{bottom:129.600000px;}
.y72_c00457{bottom:130.320000px;}
.y74_c00457{bottom:131.040000px;}
.y76_c00457{bottom:131.760000px;}
.y78_c00457{bottom:132.480000px;}
.y71_c00457{bottom:170.640000px;}
.y70_c00457{bottom:171.360000px;}
.y6b_c00457{bottom:203.040000px;}
.y6c_c00457{bottom:203.760000px;}
.y6f_c00457{bottom:205.200000px;}
.y6a_c00457{bottom:205.920000px;}
.y6d_c00457{bottom:206.640000px;}
.y6e_c00457{bottom:207.360000px;}
.y64_c00457{bottom:246.240000px;}
.y67_c00457{bottom:246.960000px;}
.y65_c00457{bottom:247.680000px;}
.y68_c00457{bottom:248.400000px;}
.y63_c00457{bottom:249.120000px;}
.y66_c00457{bottom:249.840000px;}
.y69_c00457{bottom:251.280000px;}
.y5e_c00457{bottom:289.440000px;}
.y5f_c00457{bottom:290.160000px;}
.y5d_c00457{bottom:291.600000px;}
.y61_c00457{bottom:292.320000px;}
.y60_c00457{bottom:293.040000px;}
.y62_c00457{bottom:293.760000px;}
.y59_c00457{bottom:331.920000px;}
.y5c_c00457{bottom:332.640000px;}
.y5a_c00457{bottom:333.360000px;}
.y58_c00457{bottom:334.080000px;}
.y57_c00457{bottom:334.800000px;}
.y5b_c00457{bottom:336.240000px;}
.y50_c00457{bottom:374.400000px;}
.y52_c00457{bottom:375.120000px;}
.y56_c00457{bottom:375.840000px;}
.y4f_c00457{bottom:376.560000px;}
.y53_c00457{bottom:377.280000px;}
.y51_c00457{bottom:378.720000px;}
.y54_c00457{bottom:379.440000px;}
.y55_c00457{bottom:380.160000px;}
.y49_c00457{bottom:417.600000px;}
.y4b_c00457{bottom:418.320000px;}
.y4e_c00457{bottom:419.040000px;}
.y4c_c00457{bottom:419.760000px;}
.y48_c00457{bottom:420.480000px;}
.y4a_c00457{bottom:421.200000px;}
.y4d_c00457{bottom:421.920000px;}
.y43_c00457{bottom:460.080000px;}
.y45_c00457{bottom:460.800000px;}
.y46_c00457{bottom:462.240000px;}
.y42_c00457{bottom:462.960000px;}
.y44_c00457{bottom:464.400000px;}
.y47_c00457{bottom:465.120000px;}
.y3e_c00457{bottom:503.280000px;}
.y3f_c00457{bottom:504.000000px;}
.y3d_c00457{bottom:505.440000px;}
.y40_c00457{bottom:506.160000px;}
.y41_c00457{bottom:507.600000px;}
.y39_c00457{bottom:546.480000px;}
.y3a_c00457{bottom:547.200000px;}
.y38_c00457{bottom:547.920000px;}
.y3b_c00457{bottom:548.640000px;}
.y3c_c00457{bottom:550.800000px;}
.y35_c00457{bottom:590.400000px;}
.y33_c00457{bottom:591.120000px;}
.y32_c00457{bottom:591.840000px;}
.y36_c00457{bottom:592.560000px;}
.y34_c00457{bottom:593.280000px;}
.y37_c00457{bottom:594.000000px;}
.y2f_c00457{bottom:632.880000px;}
.y2d_c00457{bottom:634.320000px;}
.y31_c00457{bottom:635.040000px;}
.y30_c00457{bottom:635.760000px;}
.y2e_c00457{bottom:636.480000px;}
.y2a_c00457{bottom:676.800000px;}
.y2c_c00457{bottom:678.960000px;}
.y2b_c00457{bottom:679.680000px;}
.y29_c00457{bottom:708.480000px;}
.y27_c00457{bottom:709.200000px;}
.y26_c00457{bottom:709.920000px;}
.y28_c00457{bottom:711.360000px;}
.y24_c00457{bottom:750.960000px;}
.y25_c00457{bottom:753.840000px;}
.y20_c00457{bottom:783.360000px;}
.y21_c00457{bottom:784.080000px;}
.y1f_c00457{bottom:784.800000px;}
.y22_c00457{bottom:786.240000px;}
.y23_c00457{bottom:786.960000px;}
.y1c_c00457{bottom:825.120000px;}
.y1b_c00457{bottom:826.560000px;}
.y1d_c00457{bottom:827.280000px;}
.y19_c00457{bottom:828.000000px;}
.y1a_c00457{bottom:829.440000px;}
.y1e_c00457{bottom:830.160000px;}
.y16_c00457{bottom:869.040000px;}
.y15_c00457{bottom:869.760000px;}
.y18_c00457{bottom:870.480000px;}
.y17_c00457{bottom:871.200000px;}
.y12_c00457{bottom:911.520000px;}
.y11_c00457{bottom:912.240000px;}
.y13_c00457{bottom:914.400000px;}
.y14_c00457{bottom:915.120000px;}
.yf_c00457{bottom:954.000000px;}
.ye_c00457{bottom:954.720000px;}
.yd_c00457{bottom:955.440000px;}
.y10_c00457{bottom:956.880000px;}
.ya_c00457{bottom:988.560000px;}
.y9_c00457{bottom:996.480000px;}
.y8_c00457{bottom:997.200000px;}
.y7_c00457{bottom:997.920000px;}
.yb_c00457{bottom:999.360000px;}
.yc_c00457{bottom:1000.800000px;}
.y4_c00457{bottom:1031.760000px;}
.y3_c00457{bottom:1039.680000px;}
.y2_c00457{bottom:1040.400000px;}
.y5_c00457{bottom:1041.120000px;}
.y6_c00457{bottom:1043.280000px;}
.y1_c00457{bottom:1108.800000px;}
.ha_c00457{height:31.100625px;}
.h11_c00457{height:33.692344px;}
.he_c00457{height:38.875781px;}
.h9_c00457{height:41.467500px;}
.hb_c00457{height:44.059219px;}
.h6_c00457{height:46.650937px;}
.h5_c00457{height:49.242656px;}
.h7_c00457{height:51.834375px;}
.h3_c00457{height:54.426094px;}
.hc_c00457{height:57.017812px;}
.h10_c00457{height:59.609531px;}
.hf_c00457{height:62.201250px;}
.hd_c00457{height:64.792969px;}
.h2_c00457{height:67.384687px;}
.h4_c00457{height:80.343281px;}
.h8_c00457{height:82.935000px;}
.h0_c00457{height:1160.640000px;}
.h1_c00457{height:1161.000000px;}
.w1_c00457{width:788.250000px;}
.w0_c00457{width:788.400000px;}
.x0_c00457{left:0.000000px;}
.x2_c00457{left:54.000000px;}
.x1f_c00457{left:55.440000px;}
.x2a_c00457{left:128.160000px;}
.x3_c00457{left:129.600000px;}
.x28_c00457{left:131.040000px;}
.x23_c00457{left:174.960000px;}
.x30_c00457{left:185.040000px;}
.x4_c00457{left:216.000000px;}
.x2b_c00457{left:217.440000px;}
.x1c_c00457{left:227.520000px;}
.x10_c00457{left:237.600000px;}
.x2c_c00457{left:261.360000px;}
.x11_c00457{left:270.000000px;}
.x20_c00457{left:272.160000px;}
.x5_c00457{left:280.800000px;}
.x21_c00457{left:282.240000px;}
.x2d_c00457{left:303.120000px;}
.x12_c00457{left:324.720000px;}
.x2f_c00457{left:326.160000px;}
.xc_c00457{left:335.520000px;}
.x13_c00457{left:367.200000px;}
.x24_c00457{left:369.360000px;}
.x15_c00457{left:378.720000px;}
.x17_c00457{left:401.040000px;}
.x25_c00457{left:411.840000px;}
.x16_c00457{left:421.920000px;}
.xa_c00457{left:432.000000px;}
.x29_c00457{left:434.160000px;}
.x2e_c00457{left:444.240000px;}
.x6_c00457{left:453.600000px;}
.xd_c00457{left:465.120000px;}
.xb_c00457{left:475.200000px;}
.x1a_c00457{left:476.640000px;}
.x7_c00457{left:529.200000px;}
.xe_c00457{left:530.640000px;}
.x26_c00457{left:532.080000px;}
.x18_c00457{left:584.640000px;}
.x1d_c00457{left:609.120000px;}
.x8_c00457{left:617.760000px;}
.x22_c00457{left:619.200000px;}
.x9_c00457{left:650.160000px;}
.x14_c00457{left:651.600000px;}
.x19_c00457{left:660.960000px;}
.x27_c00457{left:663.120000px;}
.x1_c00457{left:684.000000px;}
.xf_c00457{left:693.360000px;}
.x1e_c00457{left:694.800000px;}
.x1b_c00457{left:714.960000px;}
@media print{
.v0_c00457{vertical-align:0.000000pt;}
.ls0_c00457{letter-spacing:0.000000pt;}
.ws1_c00457{word-spacing:0.000000pt;}
.ws0_c00457{word-spacing:55.368274pt;}
.fs8_c00457{font-size:30.720000pt;}
.fsf_c00457{font-size:33.280000pt;}
.fsc_c00457{font-size:38.400000pt;}
.fs7_c00457{font-size:40.960000pt;}
.fs9_c00457{font-size:43.520000pt;}
.fs4_c00457{font-size:46.080000pt;}
.fs3_c00457{font-size:48.640000pt;}
.fs5_c00457{font-size:51.200000pt;}
.fs1_c00457{font-size:53.760000pt;}
.fsa_c00457{font-size:56.320000pt;}
.fse_c00457{font-size:58.880000pt;}
.fsd_c00457{font-size:61.440000pt;}
.fsb_c00457{font-size:64.000000pt;}
.fs0_c00457{font-size:66.560000pt;}
.fs2_c00457{font-size:79.360000pt;}
.fs6_c00457{font-size:81.920000pt;}
.y0_c00457{bottom:0.000000pt;}
.y81_c00457{bottom:46.080000pt;}
.y7f_c00457{bottom:48.640000pt;}
.y80_c00457{bottom:49.280000pt;}
.y7a_c00457{bottom:75.520000pt;}
.y79_c00457{bottom:76.800000pt;}
.y7e_c00457{bottom:77.440000pt;}
.y7b_c00457{bottom:78.080000pt;}
.y7c_c00457{bottom:78.720000pt;}
.y7d_c00457{bottom:79.360000pt;}
.y73_c00457{bottom:112.640000pt;}
.y77_c00457{bottom:114.560000pt;}
.y75_c00457{bottom:115.200000pt;}
.y72_c00457{bottom:115.840000pt;}
.y74_c00457{bottom:116.480000pt;}
.y76_c00457{bottom:117.120000pt;}
.y78_c00457{bottom:117.760000pt;}
.y71_c00457{bottom:151.680000pt;}
.y70_c00457{bottom:152.320000pt;}
.y6b_c00457{bottom:180.480000pt;}
.y6c_c00457{bottom:181.120000pt;}
.y6f_c00457{bottom:182.400000pt;}
.y6a_c00457{bottom:183.040000pt;}
.y6d_c00457{bottom:183.680000pt;}
.y6e_c00457{bottom:184.320000pt;}
.y64_c00457{bottom:218.880000pt;}
.y67_c00457{bottom:219.520000pt;}
.y65_c00457{bottom:220.160000pt;}
.y68_c00457{bottom:220.800000pt;}
.y63_c00457{bottom:221.440000pt;}
.y66_c00457{bottom:222.080000pt;}
.y69_c00457{bottom:223.360000pt;}
.y5e_c00457{bottom:257.280000pt;}
.y5f_c00457{bottom:257.920000pt;}
.y5d_c00457{bottom:259.200000pt;}
.y61_c00457{bottom:259.840000pt;}
.y60_c00457{bottom:260.480000pt;}
.y62_c00457{bottom:261.120000pt;}
.y59_c00457{bottom:295.040000pt;}
.y5c_c00457{bottom:295.680000pt;}
.y5a_c00457{bottom:296.320000pt;}
.y58_c00457{bottom:296.960000pt;}
.y57_c00457{bottom:297.600000pt;}
.y5b_c00457{bottom:298.880000pt;}
.y50_c00457{bottom:332.800000pt;}
.y52_c00457{bottom:333.440000pt;}
.y56_c00457{bottom:334.080000pt;}
.y4f_c00457{bottom:334.720000pt;}
.y53_c00457{bottom:335.360000pt;}
.y51_c00457{bottom:336.640000pt;}
.y54_c00457{bottom:337.280000pt;}
.y55_c00457{bottom:337.920000pt;}
.y49_c00457{bottom:371.200000pt;}
.y4b_c00457{bottom:371.840000pt;}
.y4e_c00457{bottom:372.480000pt;}
.y4c_c00457{bottom:373.120000pt;}
.y48_c00457{bottom:373.760000pt;}
.y4a_c00457{bottom:374.400000pt;}
.y4d_c00457{bottom:375.040000pt;}
.y43_c00457{bottom:408.960000pt;}
.y45_c00457{bottom:409.600000pt;}
.y46_c00457{bottom:410.880000pt;}
.y42_c00457{bottom:411.520000pt;}
.y44_c00457{bottom:412.800000pt;}
.y47_c00457{bottom:413.440000pt;}
.y3e_c00457{bottom:447.360000pt;}
.y3f_c00457{bottom:448.000000pt;}
.y3d_c00457{bottom:449.280000pt;}
.y40_c00457{bottom:449.920000pt;}
.y41_c00457{bottom:451.200000pt;}
.y39_c00457{bottom:485.760000pt;}
.y3a_c00457{bottom:486.400000pt;}
.y38_c00457{bottom:487.040000pt;}
.y3b_c00457{bottom:487.680000pt;}
.y3c_c00457{bottom:489.600000pt;}
.y35_c00457{bottom:524.800000pt;}
.y33_c00457{bottom:525.440000pt;}
.y32_c00457{bottom:526.080000pt;}
.y36_c00457{bottom:526.720000pt;}
.y34_c00457{bottom:527.360000pt;}
.y37_c00457{bottom:528.000000pt;}
.y2f_c00457{bottom:562.560000pt;}
.y2d_c00457{bottom:563.840000pt;}
.y31_c00457{bottom:564.480000pt;}
.y30_c00457{bottom:565.120000pt;}
.y2e_c00457{bottom:565.760000pt;}
.y2a_c00457{bottom:601.600000pt;}
.y2c_c00457{bottom:603.520000pt;}
.y2b_c00457{bottom:604.160000pt;}
.y29_c00457{bottom:629.760000pt;}
.y27_c00457{bottom:630.400000pt;}
.y26_c00457{bottom:631.040000pt;}
.y28_c00457{bottom:632.320000pt;}
.y24_c00457{bottom:667.520000pt;}
.y25_c00457{bottom:670.080000pt;}
.y20_c00457{bottom:696.320000pt;}
.y21_c00457{bottom:696.960000pt;}
.y1f_c00457{bottom:697.600000pt;}
.y22_c00457{bottom:698.880000pt;}
.y23_c00457{bottom:699.520000pt;}
.y1c_c00457{bottom:733.440000pt;}
.y1b_c00457{bottom:734.720000pt;}
.y1d_c00457{bottom:735.360000pt;}
.y19_c00457{bottom:736.000000pt;}
.y1a_c00457{bottom:737.280000pt;}
.y1e_c00457{bottom:737.920000pt;}
.y16_c00457{bottom:772.480000pt;}
.y15_c00457{bottom:773.120000pt;}
.y18_c00457{bottom:773.760000pt;}
.y17_c00457{bottom:774.400000pt;}
.y12_c00457{bottom:810.240000pt;}
.y11_c00457{bottom:810.880000pt;}
.y13_c00457{bottom:812.800000pt;}
.y14_c00457{bottom:813.440000pt;}
.yf_c00457{bottom:848.000000pt;}
.ye_c00457{bottom:848.640000pt;}
.yd_c00457{bottom:849.280000pt;}
.y10_c00457{bottom:850.560000pt;}
.ya_c00457{bottom:878.720000pt;}
.y9_c00457{bottom:885.760000pt;}
.y8_c00457{bottom:886.400000pt;}
.y7_c00457{bottom:887.040000pt;}
.yb_c00457{bottom:888.320000pt;}
.yc_c00457{bottom:889.600000pt;}
.y4_c00457{bottom:917.120000pt;}
.y3_c00457{bottom:924.160000pt;}
.y2_c00457{bottom:924.800000pt;}
.y5_c00457{bottom:925.440000pt;}
.y6_c00457{bottom:927.360000pt;}
.y1_c00457{bottom:985.600000pt;}
.ha_c00457{height:27.645000pt;}
.h11_c00457{height:29.948750pt;}
.he_c00457{height:34.556250pt;}
.h9_c00457{height:36.860000pt;}
.hb_c00457{height:39.163750pt;}
.h6_c00457{height:41.467500pt;}
.h5_c00457{height:43.771250pt;}
.h7_c00457{height:46.075000pt;}
.h3_c00457{height:48.378750pt;}
.hc_c00457{height:50.682500pt;}
.h10_c00457{height:52.986250pt;}
.hf_c00457{height:55.290000pt;}
.hd_c00457{height:57.593750pt;}
.h2_c00457{height:59.897500pt;}
.h4_c00457{height:71.416250pt;}
.h8_c00457{height:73.720000pt;}
.h0_c00457{height:1031.680000pt;}
.h1_c00457{height:1032.000000pt;}
.w1_c00457{width:700.666667pt;}
.w0_c00457{width:700.800000pt;}
.x0_c00457{left:0.000000pt;}
.x2_c00457{left:48.000000pt;}
.x1f_c00457{left:49.280000pt;}
.x2a_c00457{left:113.920000pt;}
.x3_c00457{left:115.200000pt;}
.x28_c00457{left:116.480000pt;}
.x23_c00457{left:155.520000pt;}
.x30_c00457{left:164.480000pt;}
.x4_c00457{left:192.000000pt;}
.x2b_c00457{left:193.280000pt;}
.x1c_c00457{left:202.240000pt;}
.x10_c00457{left:211.200000pt;}
.x2c_c00457{left:232.320000pt;}
.x11_c00457{left:240.000000pt;}
.x20_c00457{left:241.920000pt;}
.x5_c00457{left:249.600000pt;}
.x21_c00457{left:250.880000pt;}
.x2d_c00457{left:269.440000pt;}
.x12_c00457{left:288.640000pt;}
.x2f_c00457{left:289.920000pt;}
.xc_c00457{left:298.240000pt;}
.x13_c00457{left:326.400000pt;}
.x24_c00457{left:328.320000pt;}
.x15_c00457{left:336.640000pt;}
.x17_c00457{left:356.480000pt;}
.x25_c00457{left:366.080000pt;}
.x16_c00457{left:375.040000pt;}
.xa_c00457{left:384.000000pt;}
.x29_c00457{left:385.920000pt;}
.x2e_c00457{left:394.880000pt;}
.x6_c00457{left:403.200000pt;}
.xd_c00457{left:413.440000pt;}
.xb_c00457{left:422.400000pt;}
.x1a_c00457{left:423.680000pt;}
.x7_c00457{left:470.400000pt;}
.xe_c00457{left:471.680000pt;}
.x26_c00457{left:472.960000pt;}
.x18_c00457{left:519.680000pt;}
.x1d_c00457{left:541.440000pt;}
.x8_c00457{left:549.120000pt;}
.x22_c00457{left:550.400000pt;}
.x9_c00457{left:577.920000pt;}
.x14_c00457{left:579.200000pt;}
.x19_c00457{left:587.520000pt;}
.x27_c00457{left:589.440000pt;}
.x1_c00457{left:608.000000pt;}
.xf_c00457{left:616.320000pt;}
.x1e_c00457{left:617.600000pt;}
.x1b_c00457{left:635.520000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c6a265ee3a8f4edb87844a00.woff2')format("woff");}.ff1_c00458{font-family:ff1_c00458;line-height:1.109863;font-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_c00458{transform:matrix(0.130525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130525,0.000000,0.000000,0.250000,0,0);}
.m33_c00458{transform:matrix(0.211550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211550,0.000000,0.000000,0.250000,0,0);}
.m37_c00458{transform:matrix(0.214225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214225,0.000000,0.000000,0.250000,0,0);}
.m40_c00458{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m3e_c00458{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m3b_c00458{transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);}
.m46_c00458{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m57_c00458{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m24_c00458{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.mc_c00458{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);}
.m2b_c00458{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m12_c00458{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_c00458{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m17_c00458{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m2_c00458{transform:matrix(0.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);}
.m32_c00458{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);}
.m42_c00458{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m5_c00458{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mb_c00458{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);}
.m55_c00458{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00458{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);}
.m51_c00458{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m9_c00458{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m10_c00458{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00458{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m52_c00458{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m20_c00458{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m22_c00458{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m16_c00458{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m18_c00458{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.md_c00458{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00458{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00458{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m21_c00458{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00458{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m13_c00458{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_c00458{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m49_c00458{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00458{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.me_c00458{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);}
.m30_c00458{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00458{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);}
.m45_c00458{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);}
.m3f_c00458{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00458{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m0_c00458{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00458{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m1_c00458{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);}
.m11_c00458{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m44_c00458{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m27_c00458{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);}
.m47_c00458{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m23_c00458{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_c00458{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.ma_c00458{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m3_c00458{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m48_c00458{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);}
.m4b_c00458{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);}
.m15_c00458{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m31_c00458{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m7_c00458{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m43_c00458{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);}
.m1e_c00458{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);}
.m29_c00458{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00458{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m36_c00458{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00458{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m26_c00458{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);}
.m50_c00458{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);}
.m56_c00458{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_c00458{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.mf_c00458{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);}
.m58_c00458{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m19_c00458{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m14_c00458{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00458{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m38_c00458{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);}
.m54_c00458{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m35_c00458{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);}
.m8_c00458{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m6_c00458{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m39_c00458{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);}
.m2e_c00458{transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);}
.m34_c00458{transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00458{transform:matrix(0.810000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.810000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.810000,0.000000,0.000000,0.250000,0,0);}
.m53_c00458{transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00458{transform:matrix(0.877500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.877500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.877500,0.000000,0.000000,0.250000,0,0);}
.m25_c00458{transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);}
.m28_c00458{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.v0_c00458{vertical-align:0.000000px;}
.v1_c00458{vertical-align:5.760000px;}
.v2_c00458{vertical-align:11.520000px;}
.ls0_c00458{letter-spacing:0.000000px;}
.sc__c00458{text-shadow:none;}
.sc0_c00458{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00458{-webkit-text-stroke:0px transparent;}
.sc0_c00458{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00458{word-spacing:-1.232160px;}
.ws4_c00458{word-spacing:0.000000px;}
.ws3_c00458{word-spacing:65.058304px;}
.ws0_c00458{word-spacing:92.131200px;}
.ws2_c00458{word-spacing:604.692000px;}
.fc0_c00458{color:transparent;}
.fse_c00458{font-size:8.640000px;}
.fsd_c00458{font-size:17.280000px;}
.fs13_c00458{font-size:25.920000px;}
.fs12_c00458{font-size:28.800000px;}
.fs11_c00458{font-size:31.680000px;}
.fs6_c00458{font-size:34.560000px;}
.fsb_c00458{font-size:43.200000px;}
.fs5_c00458{font-size:46.080000px;}
.fs3_c00458{font-size:48.960000px;}
.fsa_c00458{font-size:51.840000px;}
.fs7_c00458{font-size:54.720000px;}
.fsc_c00458{font-size:57.600000px;}
.fs1_c00458{font-size:60.480000px;}
.fs9_c00458{font-size:63.360000px;}
.fs8_c00458{font-size:66.240000px;}
.fs4_c00458{font-size:69.120000px;}
.fs2_c00458{font-size:72.000000px;}
.fs0_c00458{font-size:74.880000px;}
.fsf_c00458{font-size:86.400000px;}
.fs10_c00458{font-size:112.320000px;}
.y0_c00458{bottom:0.000000px;}
.y88_c00458{bottom:81.360000px;}
.y86_c00458{bottom:82.080000px;}
.y85_c00458{bottom:82.800000px;}
.y8a_c00458{bottom:83.520000px;}
.y89_c00458{bottom:84.240000px;}
.y87_c00458{bottom:84.960000px;}
.y82_c00458{bottom:123.840000px;}
.y7f_c00458{bottom:125.280000px;}
.y83_c00458{bottom:126.000000px;}
.y84_c00458{bottom:126.720000px;}
.y81_c00458{bottom:127.440000px;}
.y80_c00458{bottom:128.160000px;}
.y7c_c00458{bottom:166.320000px;}
.y7e_c00458{bottom:167.760000px;}
.y7a_c00458{bottom:169.200000px;}
.y7b_c00458{bottom:169.920000px;}
.y7d_c00458{bottom:170.640000px;}
.y78_c00458{bottom:210.240000px;}
.y74_c00458{bottom:210.960000px;}
.y79_c00458{bottom:211.680000px;}
.y76_c00458{bottom:212.400000px;}
.y77_c00458{bottom:213.120000px;}
.y75_c00458{bottom:213.840000px;}
.y71_c00458{bottom:252.000000px;}
.y6e_c00458{bottom:253.440000px;}
.y72_c00458{bottom:254.880000px;}
.y70_c00458{bottom:255.600000px;}
.y6f_c00458{bottom:256.320000px;}
.y73_c00458{bottom:257.040000px;}
.y6c_c00458{bottom:295.200000px;}
.y6d_c00458{bottom:297.360000px;}
.y6a_c00458{bottom:298.080000px;}
.y6b_c00458{bottom:299.520000px;}
.y67_c00458{bottom:338.400000px;}
.y68_c00458{bottom:339.840000px;}
.y69_c00458{bottom:340.560000px;}
.y64_c00458{bottom:341.280000px;}
.y66_c00458{bottom:342.000000px;}
.y65_c00458{bottom:343.440000px;}
.y61_c00458{bottom:381.600000px;}
.y63_c00458{bottom:383.040000px;}
.y5f_c00458{bottom:383.760000px;}
.y62_c00458{bottom:384.480000px;}
.y60_c00458{bottom:385.920000px;}
.y5e_c00458{bottom:426.960000px;}
.y5d_c00458{bottom:429.840000px;}
.y5b_c00458{bottom:491.040000px;}
.y59_c00458{bottom:491.760000px;}
.y5a_c00458{bottom:493.200000px;}
.y5c_c00458{bottom:494.640000px;}
.y55_c00458{bottom:512.640000px;}
.y57_c00458{bottom:513.360000px;}
.y56_c00458{bottom:514.800000px;}
.y58_c00458{bottom:516.240000px;}
.y50_c00458{bottom:533.520000px;}
.y52_c00458{bottom:534.240000px;}
.y54_c00458{bottom:534.960000px;}
.y51_c00458{bottom:536.400000px;}
.y53_c00458{bottom:537.120000px;}
.y4c_c00458{bottom:555.120000px;}
.y4e_c00458{bottom:555.840000px;}
.y4f_c00458{bottom:556.560000px;}
.y4d_c00458{bottom:558.000000px;}
.y49_c00458{bottom:577.440000px;}
.y4b_c00458{bottom:578.160000px;}
.y4a_c00458{bottom:579.600000px;}
.y48_c00458{bottom:592.560000px;}
.y43_c00458{bottom:597.600000px;}
.y44_c00458{bottom:598.320000px;}
.y45_c00458{bottom:599.040000px;}
.y47_c00458{bottom:599.760000px;}
.y46_c00458{bottom:600.480000px;}
.y41_c00458{bottom:619.200000px;}
.y40_c00458{bottom:619.920000px;}
.y42_c00458{bottom:620.640000px;}
.y3f_c00458{bottom:621.360000px;}
.y3e_c00458{bottom:622.080000px;}
.y3c_c00458{bottom:652.320000px;}
.y3b_c00458{bottom:653.040000px;}
.y3a_c00458{bottom:653.760000px;}
.y3d_c00458{bottom:660.960000px;}
.y38_c00458{bottom:694.800000px;}
.y39_c00458{bottom:696.240000px;}
.y37_c00458{bottom:696.960000px;}
.y33_c00458{bottom:725.760000px;}
.y32_c00458{bottom:726.480000px;}
.y35_c00458{bottom:727.200000px;}
.y31_c00458{bottom:727.920000px;}
.y30_c00458{bottom:728.640000px;}
.y34_c00458{bottom:730.080000px;}
.y36_c00458{bottom:732.240000px;}
.y2e_c00458{bottom:758.880000px;}
.y2c_c00458{bottom:760.320000px;}
.y2d_c00458{bottom:761.040000px;}
.y2f_c00458{bottom:761.760000px;}
.y2b_c00458{bottom:784.800000px;}
.y2a_c00458{bottom:794.880000px;}
.y29_c00458{bottom:804.960000px;}
.y25_c00458{bottom:812.160000px;}
.y26_c00458{bottom:812.880000px;}
.y27_c00458{bottom:817.920000px;}
.y28_c00458{bottom:818.640000px;}
.y1e_c00458{bottom:820.800000px;}
.y1f_c00458{bottom:822.960000px;}
.y23_c00458{bottom:824.400000px;}
.y20_c00458{bottom:825.120000px;}
.y24_c00458{bottom:825.840000px;}
.y21_c00458{bottom:835.920000px;}
.y22_c00458{bottom:836.640000px;}
.y1a_c00458{bottom:885.600000px;}
.y18_c00458{bottom:887.040000px;}
.y1c_c00458{bottom:887.760000px;}
.y19_c00458{bottom:889.200000px;}
.y1b_c00458{bottom:889.920000px;}
.y1d_c00458{bottom:891.360000px;}
.y17_c00458{bottom:928.800000px;}
.y16_c00458{bottom:930.240000px;}
.y15_c00458{bottom:931.680000px;}
.y14_c00458{bottom:932.400000px;}
.yd_c00458{bottom:960.480000px;}
.yc_c00458{bottom:961.200000px;}
.yf_c00458{bottom:961.920000px;}
.y10_c00458{bottom:962.640000px;}
.y11_c00458{bottom:963.360000px;}
.ye_c00458{bottom:964.080000px;}
.y12_c00458{bottom:964.800000px;}
.y13_c00458{bottom:966.960000px;}
.yb_c00458{bottom:1003.680000px;}
.ya_c00458{bottom:1004.400000px;}
.y8_c00458{bottom:1005.120000px;}
.y9_c00458{bottom:1007.280000px;}
.y3_c00458{bottom:1036.080000px;}
.y2_c00458{bottom:1036.800000px;}
.y6_c00458{bottom:1038.240000px;}
.y4_c00458{bottom:1039.680000px;}
.y5_c00458{bottom:1040.400000px;}
.y7_c00458{bottom:1041.120000px;}
.y1_c00458{bottom:1102.320000px;}
.h11_c00458{height:7.775156px;}
.h10_c00458{height:15.550313px;}
.h16_c00458{height:23.325469px;}
.h15_c00458{height:25.917187px;}
.h14_c00458{height:28.508906px;}
.h8_c00458{height:31.100625px;}
.hd_c00458{height:38.875781px;}
.h7_c00458{height:41.467500px;}
.h5_c00458{height:44.059219px;}
.hc_c00458{height:46.650937px;}
.h9_c00458{height:49.242656px;}
.he_c00458{height:51.834375px;}
.hf_c00458{height:52.410938px;}
.h3_c00458{height:54.426094px;}
.hb_c00458{height:57.017812px;}
.ha_c00458{height:59.609531px;}
.h6_c00458{height:62.201250px;}
.h4_c00458{height:64.792969px;}
.h17_c00458{height:65.946094px;}
.h2_c00458{height:67.384687px;}
.h12_c00458{height:77.751563px;}
.h13_c00458{height:101.077031px;}
.h0_c00458{height:1157.760000px;}
.h1_c00458{height:1158.000000px;}
.w0_c00458{width:781.920000px;}
.w1_c00458{width:782.250000px;}
.x0_c00458{left:0.000000px;}
.x2_c00458{left:45.360000px;}
.x25_c00458{left:46.800000px;}
.x37_c00458{left:57.600000px;}
.x26_c00458{left:66.960000px;}
.x30_c00458{left:77.760000px;}
.x3b_c00458{left:99.360000px;}
.x27_c00458{left:100.800000px;}
.x3_c00458{left:120.960000px;}
.x13_c00458{left:141.120000px;}
.x38_c00458{left:144.000000px;}
.x28_c00458{left:154.800000px;}
.x31_c00458{left:165.600000px;}
.x16_c00458{left:174.960000px;}
.x29_c00458{left:176.400000px;}
.x14_c00458{left:185.760000px;}
.xe_c00458{left:205.920000px;}
.x32_c00458{left:208.800000px;}
.x10_c00458{left:218.880000px;}
.x43_c00458{left:228.960000px;}
.x15_c00458{left:239.760000px;}
.x4_c00458{left:250.560000px;}
.x19_c00458{left:252.720000px;}
.x42_c00458{left:263.520000px;}
.x2a_c00458{left:273.600000px;}
.x5_c00458{left:293.760000px;}
.x1d_c00458{left:295.920000px;}
.xf_c00458{left:304.560000px;}
.x1a_c00458{left:306.000000px;}
.x2d_c00458{left:316.080000px;}
.x6_c00458{left:317.520000px;}
.x33_c00458{left:337.680000px;}
.x2b_c00458{left:349.200000px;}
.x11_c00458{left:358.560000px;}
.x1b_c00458{left:360.000000px;}
.x3a_c00458{left:361.440000px;}
.x7_c00458{left:368.640000px;}
.x1e_c00458{left:380.880000px;}
.x39_c00458{left:393.120000px;}
.x12_c00458{left:401.040000px;}
.x1f_c00458{left:403.920000px;}
.x8_c00458{left:423.360000px;}
.x34_c00458{left:425.520000px;}
.x2e_c00458{left:456.480000px;}
.x2c_c00458{left:457.920000px;}
.x9_c00458{left:465.840000px;}
.x35_c00458{left:468.720000px;}
.x20_c00458{left:501.120000px;}
.x36_c00458{left:502.560000px;}
.xa_c00458{left:522.000000px;}
.x41_c00458{left:523.440000px;}
.x21_c00458{left:565.200000px;}
.x3c_c00458{left:577.440000px;}
.x22_c00458{left:588.240000px;}
.xb_c00458{left:609.120000px;}
.x3f_c00458{left:610.560000px;}
.x17_c00458{left:641.520000px;}
.x40_c00458{left:643.680000px;}
.xc_c00458{left:652.320000px;}
.x1c_c00458{left:653.760000px;}
.x23_c00458{left:663.840000px;}
.x1_c00458{left:667.440000px;}
.x24_c00458{left:683.280000px;}
.xd_c00458{left:684.720000px;}
.x3d_c00458{left:686.880000px;}
.x18_c00458{left:705.600000px;}
.x3e_c00458{left:707.040000px;}
.x2f_c00458{left:716.400000px;}
@media print{
.v0_c00458{vertical-align:0.000000pt;}
.v1_c00458{vertical-align:5.120000pt;}
.v2_c00458{vertical-align:10.240000pt;}
.ls0_c00458{letter-spacing:0.000000pt;}
.ws1_c00458{word-spacing:-1.095253pt;}
.ws4_c00458{word-spacing:0.000000pt;}
.ws3_c00458{word-spacing:57.829604pt;}
.ws0_c00458{word-spacing:81.894400pt;}
.ws2_c00458{word-spacing:537.504000pt;}
.fse_c00458{font-size:7.680000pt;}
.fsd_c00458{font-size:15.360000pt;}
.fs13_c00458{font-size:23.040000pt;}
.fs12_c00458{font-size:25.600000pt;}
.fs11_c00458{font-size:28.160000pt;}
.fs6_c00458{font-size:30.720000pt;}
.fsb_c00458{font-size:38.400000pt;}
.fs5_c00458{font-size:40.960000pt;}
.fs3_c00458{font-size:43.520000pt;}
.fsa_c00458{font-size:46.080000pt;}
.fs7_c00458{font-size:48.640000pt;}
.fsc_c00458{font-size:51.200000pt;}
.fs1_c00458{font-size:53.760000pt;}
.fs9_c00458{font-size:56.320000pt;}
.fs8_c00458{font-size:58.880000pt;}
.fs4_c00458{font-size:61.440000pt;}
.fs2_c00458{font-size:64.000000pt;}
.fs0_c00458{font-size:66.560000pt;}
.fsf_c00458{font-size:76.800000pt;}
.fs10_c00458{font-size:99.840000pt;}
.y0_c00458{bottom:0.000000pt;}
.y88_c00458{bottom:72.320000pt;}
.y86_c00458{bottom:72.960000pt;}
.y85_c00458{bottom:73.600000pt;}
.y8a_c00458{bottom:74.240000pt;}
.y89_c00458{bottom:74.880000pt;}
.y87_c00458{bottom:75.520000pt;}
.y82_c00458{bottom:110.080000pt;}
.y7f_c00458{bottom:111.360000pt;}
.y83_c00458{bottom:112.000000pt;}
.y84_c00458{bottom:112.640000pt;}
.y81_c00458{bottom:113.280000pt;}
.y80_c00458{bottom:113.920000pt;}
.y7c_c00458{bottom:147.840000pt;}
.y7e_c00458{bottom:149.120000pt;}
.y7a_c00458{bottom:150.400000pt;}
.y7b_c00458{bottom:151.040000pt;}
.y7d_c00458{bottom:151.680000pt;}
.y78_c00458{bottom:186.880000pt;}
.y74_c00458{bottom:187.520000pt;}
.y79_c00458{bottom:188.160000pt;}
.y76_c00458{bottom:188.800000pt;}
.y77_c00458{bottom:189.440000pt;}
.y75_c00458{bottom:190.080000pt;}
.y71_c00458{bottom:224.000000pt;}
.y6e_c00458{bottom:225.280000pt;}
.y72_c00458{bottom:226.560000pt;}
.y70_c00458{bottom:227.200000pt;}
.y6f_c00458{bottom:227.840000pt;}
.y73_c00458{bottom:228.480000pt;}
.y6c_c00458{bottom:262.400000pt;}
.y6d_c00458{bottom:264.320000pt;}
.y6a_c00458{bottom:264.960000pt;}
.y6b_c00458{bottom:266.240000pt;}
.y67_c00458{bottom:300.800000pt;}
.y68_c00458{bottom:302.080000pt;}
.y69_c00458{bottom:302.720000pt;}
.y64_c00458{bottom:303.360000pt;}
.y66_c00458{bottom:304.000000pt;}
.y65_c00458{bottom:305.280000pt;}
.y61_c00458{bottom:339.200000pt;}
.y63_c00458{bottom:340.480000pt;}
.y5f_c00458{bottom:341.120000pt;}
.y62_c00458{bottom:341.760000pt;}
.y60_c00458{bottom:343.040000pt;}
.y5e_c00458{bottom:379.520000pt;}
.y5d_c00458{bottom:382.080000pt;}
.y5b_c00458{bottom:436.480000pt;}
.y59_c00458{bottom:437.120000pt;}
.y5a_c00458{bottom:438.400000pt;}
.y5c_c00458{bottom:439.680000pt;}
.y55_c00458{bottom:455.680000pt;}
.y57_c00458{bottom:456.320000pt;}
.y56_c00458{bottom:457.600000pt;}
.y58_c00458{bottom:458.880000pt;}
.y50_c00458{bottom:474.240000pt;}
.y52_c00458{bottom:474.880000pt;}
.y54_c00458{bottom:475.520000pt;}
.y51_c00458{bottom:476.800000pt;}
.y53_c00458{bottom:477.440000pt;}
.y4c_c00458{bottom:493.440000pt;}
.y4e_c00458{bottom:494.080000pt;}
.y4f_c00458{bottom:494.720000pt;}
.y4d_c00458{bottom:496.000000pt;}
.y49_c00458{bottom:513.280000pt;}
.y4b_c00458{bottom:513.920000pt;}
.y4a_c00458{bottom:515.200000pt;}
.y48_c00458{bottom:526.720000pt;}
.y43_c00458{bottom:531.200000pt;}
.y44_c00458{bottom:531.840000pt;}
.y45_c00458{bottom:532.480000pt;}
.y47_c00458{bottom:533.120000pt;}
.y46_c00458{bottom:533.760000pt;}
.y41_c00458{bottom:550.400000pt;}
.y40_c00458{bottom:551.040000pt;}
.y42_c00458{bottom:551.680000pt;}
.y3f_c00458{bottom:552.320000pt;}
.y3e_c00458{bottom:552.960000pt;}
.y3c_c00458{bottom:579.840000pt;}
.y3b_c00458{bottom:580.480000pt;}
.y3a_c00458{bottom:581.120000pt;}
.y3d_c00458{bottom:587.520000pt;}
.y38_c00458{bottom:617.600000pt;}
.y39_c00458{bottom:618.880000pt;}
.y37_c00458{bottom:619.520000pt;}
.y33_c00458{bottom:645.120000pt;}
.y32_c00458{bottom:645.760000pt;}
.y35_c00458{bottom:646.400000pt;}
.y31_c00458{bottom:647.040000pt;}
.y30_c00458{bottom:647.680000pt;}
.y34_c00458{bottom:648.960000pt;}
.y36_c00458{bottom:650.880000pt;}
.y2e_c00458{bottom:674.560000pt;}
.y2c_c00458{bottom:675.840000pt;}
.y2d_c00458{bottom:676.480000pt;}
.y2f_c00458{bottom:677.120000pt;}
.y2b_c00458{bottom:697.600000pt;}
.y2a_c00458{bottom:706.560000pt;}
.y29_c00458{bottom:715.520000pt;}
.y25_c00458{bottom:721.920000pt;}
.y26_c00458{bottom:722.560000pt;}
.y27_c00458{bottom:727.040000pt;}
.y28_c00458{bottom:727.680000pt;}
.y1e_c00458{bottom:729.600000pt;}
.y1f_c00458{bottom:731.520000pt;}
.y23_c00458{bottom:732.800000pt;}
.y20_c00458{bottom:733.440000pt;}
.y24_c00458{bottom:734.080000pt;}
.y21_c00458{bottom:743.040000pt;}
.y22_c00458{bottom:743.680000pt;}
.y1a_c00458{bottom:787.200000pt;}
.y18_c00458{bottom:788.480000pt;}
.y1c_c00458{bottom:789.120000pt;}
.y19_c00458{bottom:790.400000pt;}
.y1b_c00458{bottom:791.040000pt;}
.y1d_c00458{bottom:792.320000pt;}
.y17_c00458{bottom:825.600000pt;}
.y16_c00458{bottom:826.880000pt;}
.y15_c00458{bottom:828.160000pt;}
.y14_c00458{bottom:828.800000pt;}
.yd_c00458{bottom:853.760000pt;}
.yc_c00458{bottom:854.400000pt;}
.yf_c00458{bottom:855.040000pt;}
.y10_c00458{bottom:855.680000pt;}
.y11_c00458{bottom:856.320000pt;}
.ye_c00458{bottom:856.960000pt;}
.y12_c00458{bottom:857.600000pt;}
.y13_c00458{bottom:859.520000pt;}
.yb_c00458{bottom:892.160000pt;}
.ya_c00458{bottom:892.800000pt;}
.y8_c00458{bottom:893.440000pt;}
.y9_c00458{bottom:895.360000pt;}
.y3_c00458{bottom:920.960000pt;}
.y2_c00458{bottom:921.600000pt;}
.y6_c00458{bottom:922.880000pt;}
.y4_c00458{bottom:924.160000pt;}
.y5_c00458{bottom:924.800000pt;}
.y7_c00458{bottom:925.440000pt;}
.y1_c00458{bottom:979.840000pt;}
.h11_c00458{height:6.911250pt;}
.h10_c00458{height:13.822500pt;}
.h16_c00458{height:20.733750pt;}
.h15_c00458{height:23.037500pt;}
.h14_c00458{height:25.341250pt;}
.h8_c00458{height:27.645000pt;}
.hd_c00458{height:34.556250pt;}
.h7_c00458{height:36.860000pt;}
.h5_c00458{height:39.163750pt;}
.hc_c00458{height:41.467500pt;}
.h9_c00458{height:43.771250pt;}
.he_c00458{height:46.075000pt;}
.hf_c00458{height:46.587500pt;}
.h3_c00458{height:48.378750pt;}
.hb_c00458{height:50.682500pt;}
.ha_c00458{height:52.986250pt;}
.h6_c00458{height:55.290000pt;}
.h4_c00458{height:57.593750pt;}
.h17_c00458{height:58.618750pt;}
.h2_c00458{height:59.897500pt;}
.h12_c00458{height:69.112500pt;}
.h13_c00458{height:89.846250pt;}
.h0_c00458{height:1029.120000pt;}
.h1_c00458{height:1029.333333pt;}
.w0_c00458{width:695.040000pt;}
.w1_c00458{width:695.333333pt;}
.x0_c00458{left:0.000000pt;}
.x2_c00458{left:40.320000pt;}
.x25_c00458{left:41.600000pt;}
.x37_c00458{left:51.200000pt;}
.x26_c00458{left:59.520000pt;}
.x30_c00458{left:69.120000pt;}
.x3b_c00458{left:88.320000pt;}
.x27_c00458{left:89.600000pt;}
.x3_c00458{left:107.520000pt;}
.x13_c00458{left:125.440000pt;}
.x38_c00458{left:128.000000pt;}
.x28_c00458{left:137.600000pt;}
.x31_c00458{left:147.200000pt;}
.x16_c00458{left:155.520000pt;}
.x29_c00458{left:156.800000pt;}
.x14_c00458{left:165.120000pt;}
.xe_c00458{left:183.040000pt;}
.x32_c00458{left:185.600000pt;}
.x10_c00458{left:194.560000pt;}
.x43_c00458{left:203.520000pt;}
.x15_c00458{left:213.120000pt;}
.x4_c00458{left:222.720000pt;}
.x19_c00458{left:224.640000pt;}
.x42_c00458{left:234.240000pt;}
.x2a_c00458{left:243.200000pt;}
.x5_c00458{left:261.120000pt;}
.x1d_c00458{left:263.040000pt;}
.xf_c00458{left:270.720000pt;}
.x1a_c00458{left:272.000000pt;}
.x2d_c00458{left:280.960000pt;}
.x6_c00458{left:282.240000pt;}
.x33_c00458{left:300.160000pt;}
.x2b_c00458{left:310.400000pt;}
.x11_c00458{left:318.720000pt;}
.x1b_c00458{left:320.000000pt;}
.x3a_c00458{left:321.280000pt;}
.x7_c00458{left:327.680000pt;}
.x1e_c00458{left:338.560000pt;}
.x39_c00458{left:349.440000pt;}
.x12_c00458{left:356.480000pt;}
.x1f_c00458{left:359.040000pt;}
.x8_c00458{left:376.320000pt;}
.x34_c00458{left:378.240000pt;}
.x2e_c00458{left:405.760000pt;}
.x2c_c00458{left:407.040000pt;}
.x9_c00458{left:414.080000pt;}
.x35_c00458{left:416.640000pt;}
.x20_c00458{left:445.440000pt;}
.x36_c00458{left:446.720000pt;}
.xa_c00458{left:464.000000pt;}
.x41_c00458{left:465.280000pt;}
.x21_c00458{left:502.400000pt;}
.x3c_c00458{left:513.280000pt;}
.x22_c00458{left:522.880000pt;}
.xb_c00458{left:541.440000pt;}
.x3f_c00458{left:542.720000pt;}
.x17_c00458{left:570.240000pt;}
.x40_c00458{left:572.160000pt;}
.xc_c00458{left:579.840000pt;}
.x1c_c00458{left:581.120000pt;}
.x23_c00458{left:590.080000pt;}
.x1_c00458{left:593.280000pt;}
.x24_c00458{left:607.360000pt;}
.xd_c00458{left:608.640000pt;}
.x3d_c00458{left:610.560000pt;}
.x18_c00458{left:627.200000pt;}
.x3e_c00458{left:628.480000pt;}
.x2f_c00458{left:636.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b0886d220427cc665b2e2556.woff2')format("woff");}.ff1_c00459{font-family:ff1_c00459;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m50_c00459{transform:matrix(0.182375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182375,0.000000,0.000000,0.250000,0,0);}
.m16_c00459{transform:matrix(0.183300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183300,0.000000,0.000000,0.250000,0,0);}
.m34_c00459{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00459{transform:matrix(0.210875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210875,0.000000,0.000000,0.250000,0,0);}
.m35_c00459{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m3a_c00459{transform:matrix(0.226875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226875,0.000000,0.000000,0.250000,0,0);}
.m44_c00459{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);}
.m24_c00459{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m47_c00459{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m52_c00459{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m11_c00459{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);}
.m46_c00459{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m18_c00459{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);}
.m45_c00459{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);}
.m3d_c00459{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_c00459{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_c00459{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);}
.m31_c00459{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m22_c00459{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);}
.m41_c00459{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m8_c00459{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mb_c00459{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00459{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m28_c00459{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m7_c00459{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00459{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m17_c00459{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m26_c00459{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m12_c00459{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00459{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m39_c00459{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m14_c00459{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00459{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00459{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00459{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m5_c00459{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m43_c00459{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m9_c00459{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.mc_c00459{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);}
.m23_c00459{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m32_c00459{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.mf_c00459{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);}
.m4d_c00459{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.ma_c00459{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m38_c00459{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m0_c00459{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1_c00459{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00459{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);}
.m40_c00459{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);}
.m25_c00459{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);}
.m21_c00459{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);}
.m27_c00459{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00459{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m13_c00459{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00459{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.me_c00459{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);}
.m2a_c00459{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m29_c00459{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m20_c00459{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m15_c00459{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);}
.m3_c00459{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m33_c00459{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00459{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00459{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);}
.m1b_c00459{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);}
.m30_c00459{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00459{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00459{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m6_c00459{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m42_c00459{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m49_c00459{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m2_c00459{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);}
.m37_c00459{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);}
.m3c_c00459{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);}
.m51_c00459{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00459{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00459{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.m4_c00459{transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);}
.m36_c00459{transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00459{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m19_c00459{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00459{transform:matrix(0.762500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.762500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.762500,0.000000,0.000000,0.250000,0,0);}
.m48_c00459{transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);}
.v1_c00459{vertical-align:-5.760000px;}
.v3_c00459{vertical-align:-2.880000px;}
.v0_c00459{vertical-align:0.000000px;}
.v4_c00459{vertical-align:2.880000px;}
.v2_c00459{vertical-align:8.640000px;}
.ls0_c00459{letter-spacing:0.000000px;}
.sc__c00459{text-shadow:none;}
.sc0_c00459{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00459{-webkit-text-stroke:0px transparent;}
.sc0_c00459{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00459{word-spacing:0.000000px;}
.ws3_c00459{word-spacing:4.865280px;}
.ws0_c00459{word-spacing:6.653760px;}
.ws2_c00459{word-spacing:52.524000px;}
.ws1_c00459{word-spacing:719.298000px;}
.fc0_c00459{color:transparent;}
.fse_c00459{font-size:14.400000px;}
.fs4_c00459{font-size:31.680000px;}
.fs5_c00459{font-size:34.560000px;}
.fs10_c00459{font-size:37.440000px;}
.fs3_c00459{font-size:43.200000px;}
.fs2_c00459{font-size:46.080000px;}
.fsd_c00459{font-size:48.960000px;}
.fs8_c00459{font-size:51.840000px;}
.fsc_c00459{font-size:54.720000px;}
.fs9_c00459{font-size:57.600000px;}
.fs1_c00459{font-size:60.480000px;}
.fsa_c00459{font-size:63.360000px;}
.fs7_c00459{font-size:66.240000px;}
.fsf_c00459{font-size:69.120000px;}
.fs6_c00459{font-size:72.000000px;}
.fs0_c00459{font-size:74.880000px;}
.fsb_c00459{font-size:97.920000px;}
.fs11_c00459{font-size:100.800000px;}
.fs12_c00459{font-size:103.680000px;}
.y0_c00459{bottom:0.000000px;}
.y83_c00459{bottom:33.840000px;}
.y85_c00459{bottom:36.000000px;}
.y82_c00459{bottom:36.720000px;}
.y84_c00459{bottom:39.600000px;}
.y80_c00459{bottom:71.280000px;}
.y7c_c00459{bottom:77.040000px;}
.y7b_c00459{bottom:79.200000px;}
.y7d_c00459{bottom:79.920000px;}
.y7e_c00459{bottom:80.640000px;}
.y7f_c00459{bottom:81.360000px;}
.y81_c00459{bottom:82.080000px;}
.y78_c00459{bottom:120.240000px;}
.y77_c00459{bottom:121.680000px;}
.y7a_c00459{bottom:122.400000px;}
.y76_c00459{bottom:123.120000px;}
.y79_c00459{bottom:125.280000px;}
.y74_c00459{bottom:163.440000px;}
.y75_c00459{bottom:165.600000px;}
.y73_c00459{bottom:166.320000px;}
.y6f_c00459{bottom:206.640000px;}
.y71_c00459{bottom:208.080000px;}
.y6d_c00459{bottom:208.800000px;}
.y70_c00459{bottom:209.520000px;}
.y6e_c00459{bottom:210.240000px;}
.y72_c00459{bottom:210.960000px;}
.y6a_c00459{bottom:249.840000px;}
.y68_c00459{bottom:252.000000px;}
.y6c_c00459{bottom:252.720000px;}
.y69_c00459{bottom:253.440000px;}
.y6b_c00459{bottom:254.160000px;}
.y65_c00459{bottom:293.040000px;}
.y62_c00459{bottom:294.480000px;}
.y66_c00459{bottom:295.200000px;}
.y63_c00459{bottom:295.920000px;}
.y64_c00459{bottom:296.640000px;}
.y67_c00459{bottom:297.360000px;}
.y5f_c00459{bottom:335.520000px;}
.y5d_c00459{bottom:337.680000px;}
.y60_c00459{bottom:338.400000px;}
.y5e_c00459{bottom:339.120000px;}
.y61_c00459{bottom:339.840000px;}
.y5b_c00459{bottom:378.720000px;}
.y5c_c00459{bottom:380.160000px;}
.y59_c00459{bottom:380.880000px;}
.y5a_c00459{bottom:382.320000px;}
.y55_c00459{bottom:421.200000px;}
.y56_c00459{bottom:421.920000px;}
.y58_c00459{bottom:422.640000px;}
.y54_c00459{bottom:423.360000px;}
.y57_c00459{bottom:424.800000px;}
.y52_c00459{bottom:464.400000px;}
.y53_c00459{bottom:465.840000px;}
.y51_c00459{bottom:466.560000px;}
.y4e_c00459{bottom:506.880000px;}
.y4c_c00459{bottom:508.320000px;}
.y4a_c00459{bottom:509.040000px;}
.y50_c00459{bottom:509.760000px;}
.y4b_c00459{bottom:510.480000px;}
.y4d_c00459{bottom:511.200000px;}
.y4f_c00459{bottom:511.920000px;}
.y49_c00459{bottom:550.080000px;}
.y47_c00459{bottom:551.520000px;}
.y46_c00459{bottom:552.240000px;}
.y48_c00459{bottom:553.680000px;}
.y44_c00459{bottom:593.280000px;}
.y41_c00459{bottom:594.720000px;}
.y45_c00459{bottom:595.440000px;}
.y42_c00459{bottom:596.880000px;}
.y43_c00459{bottom:597.600000px;}
.y3d_c00459{bottom:636.480000px;}
.y3f_c00459{bottom:637.200000px;}
.y3b_c00459{bottom:637.920000px;}
.y40_c00459{bottom:639.360000px;}
.y3e_c00459{bottom:640.080000px;}
.y3c_c00459{bottom:640.800000px;}
.y3a_c00459{bottom:671.760000px;}
.y38_c00459{bottom:672.480000px;}
.y36_c00459{bottom:679.680000px;}
.y37_c00459{bottom:680.400000px;}
.y34_c00459{bottom:681.120000px;}
.y39_c00459{bottom:681.840000px;}
.y35_c00459{bottom:683.280000px;}
.y30_c00459{bottom:722.160000px;}
.y32_c00459{bottom:722.880000px;}
.y2e_c00459{bottom:723.600000px;}
.y33_c00459{bottom:724.320000px;}
.y31_c00459{bottom:725.040000px;}
.y2f_c00459{bottom:726.480000px;}
.y2a_c00459{bottom:765.360000px;}
.y2c_c00459{bottom:766.080000px;}
.y2d_c00459{bottom:766.800000px;}
.y28_c00459{bottom:767.520000px;}
.y2b_c00459{bottom:768.960000px;}
.y29_c00459{bottom:769.680000px;}
.y24_c00459{bottom:807.840000px;}
.y27_c00459{bottom:809.280000px;}
.y22_c00459{bottom:810.000000px;}
.y25_c00459{bottom:810.720000px;}
.y26_c00459{bottom:811.440000px;}
.y23_c00459{bottom:812.160000px;}
.y1f_c00459{bottom:850.320000px;}
.y20_c00459{bottom:851.760000px;}
.y1d_c00459{bottom:852.480000px;}
.y21_c00459{bottom:853.920000px;}
.y1e_c00459{bottom:854.640000px;}
.y19_c00459{bottom:893.520000px;}
.y1c_c00459{bottom:894.240000px;}
.y17_c00459{bottom:894.960000px;}
.y1a_c00459{bottom:896.400000px;}
.y1b_c00459{bottom:897.120000px;}
.y18_c00459{bottom:897.840000px;}
.y15_c00459{bottom:928.800000px;}
.y12_c00459{bottom:936.000000px;}
.y13_c00459{bottom:936.720000px;}
.y16_c00459{bottom:937.440000px;}
.y10_c00459{bottom:938.160000px;}
.y14_c00459{bottom:939.600000px;}
.y11_c00459{bottom:940.320000px;}
.yd_c00459{bottom:978.480000px;}
.ye_c00459{bottom:979.920000px;}
.yb_c00459{bottom:980.640000px;}
.yf_c00459{bottom:982.080000px;}
.yc_c00459{bottom:982.800000px;}
.y9_c00459{bottom:1020.960000px;}
.ya_c00459{bottom:1022.400000px;}
.y7_c00459{bottom:1023.120000px;}
.y8_c00459{bottom:1025.280000px;}
.y5_c00459{bottom:1064.160000px;}
.y2_c00459{bottom:1065.600000px;}
.y6_c00459{bottom:1066.320000px;}
.y4_c00459{bottom:1067.760000px;}
.y3_c00459{bottom:1068.480000px;}
.y1_c00459{bottom:1111.680000px;}
.h10_c00459{height:12.958594px;}
.h6_c00459{height:28.508906px;}
.h7_c00459{height:31.100625px;}
.h12_c00459{height:33.692344px;}
.h5_c00459{height:38.875781px;}
.h4_c00459{height:41.467500px;}
.hf_c00459{height:44.059219px;}
.ha_c00459{height:46.650937px;}
.he_c00459{height:49.242656px;}
.hb_c00459{height:51.834375px;}
.h3_c00459{height:54.426094px;}
.h14_c00459{height:56.729531px;}
.hc_c00459{height:57.017812px;}
.h9_c00459{height:59.609531px;}
.h11_c00459{height:62.201250px;}
.h8_c00459{height:64.792969px;}
.h2_c00459{height:67.384687px;}
.hd_c00459{height:88.118437px;}
.h13_c00459{height:90.710156px;}
.h15_c00459{height:93.301875px;}
.h0_c00459{height:1157.760000px;}
.h1_c00459{height:1158.000000px;}
.w1_c00459{width:783.750000px;}
.w0_c00459{width:784.080000px;}
.x0_c00459{left:0.000000px;}
.x2_c00459{left:48.960000px;}
.x1e_c00459{left:50.400000px;}
.x32_c00459{left:51.840000px;}
.x3_c00459{left:123.840000px;}
.x19_c00459{left:125.280000px;}
.x34_c00459{left:126.720000px;}
.x4_c00459{left:168.480000px;}
.x2b_c00459{left:170.640000px;}
.x25_c00459{left:178.560000px;}
.x5_c00459{left:200.160000px;}
.x1f_c00459{left:201.600000px;}
.x2c_c00459{left:211.680000px;}
.x31_c00459{left:213.120000px;}
.x6_c00459{left:221.040000px;}
.x26_c00459{left:222.480000px;}
.x20_c00459{left:223.920000px;}
.x7_c00459{left:265.680000px;}
.x33_c00459{left:267.840000px;}
.x10_c00459{left:276.480000px;}
.x1b_c00459{left:277.920000px;}
.x8_c00459{left:309.600000px;}
.x14_c00459{left:311.040000px;}
.x15_c00459{left:321.120000px;}
.x11_c00459{left:329.760000px;}
.x22_c00459{left:331.920000px;}
.x2d_c00459{left:352.080000px;}
.x16_c00459{left:362.160000px;}
.x1c_c00459{left:363.600000px;}
.x18_c00459{left:374.400000px;}
.x2e_c00459{left:396.720000px;}
.x17_c00459{left:406.080000px;}
.x1d_c00459{left:417.600000px;}
.x35_c00459{left:419.040000px;}
.x24_c00459{left:438.480000px;}
.x2f_c00459{left:439.920000px;}
.x12_c00459{left:459.360000px;}
.x36_c00459{left:473.040000px;}
.x23_c00459{left:482.400000px;}
.x9_c00459{left:524.880000px;}
.x21_c00459{left:526.320000px;}
.x37_c00459{left:538.560000px;}
.x38_c00459{left:559.440000px;}
.xa_c00459{left:578.880000px;}
.xc_c00459{left:580.320000px;}
.x29_c00459{left:591.840000px;}
.x13_c00459{left:612.000000px;}
.xe_c00459{left:613.440000px;}
.xf_c00459{left:645.840000px;}
.x27_c00459{left:647.280000px;}
.x2a_c00459{left:656.640000px;}
.x28_c00459{left:679.680000px;}
.xb_c00459{left:688.320000px;}
.x1_c00459{left:689.760000px;}
.x30_c00459{left:691.200000px;}
.xd_c00459{left:709.200000px;}
.x1a_c00459{left:710.640000px;}
@media print{
.v1_c00459{vertical-align:-5.120000pt;}
.v3_c00459{vertical-align:-2.560000pt;}
.v0_c00459{vertical-align:0.000000pt;}
.v4_c00459{vertical-align:2.560000pt;}
.v2_c00459{vertical-align:7.680000pt;}
.ls0_c00459{letter-spacing:0.000000pt;}
.ws4_c00459{word-spacing:0.000000pt;}
.ws3_c00459{word-spacing:4.324693pt;}
.ws0_c00459{word-spacing:5.914453pt;}
.ws2_c00459{word-spacing:46.688000pt;}
.ws1_c00459{word-spacing:639.376000pt;}
.fse_c00459{font-size:12.800000pt;}
.fs4_c00459{font-size:28.160000pt;}
.fs5_c00459{font-size:30.720000pt;}
.fs10_c00459{font-size:33.280000pt;}
.fs3_c00459{font-size:38.400000pt;}
.fs2_c00459{font-size:40.960000pt;}
.fsd_c00459{font-size:43.520000pt;}
.fs8_c00459{font-size:46.080000pt;}
.fsc_c00459{font-size:48.640000pt;}
.fs9_c00459{font-size:51.200000pt;}
.fs1_c00459{font-size:53.760000pt;}
.fsa_c00459{font-size:56.320000pt;}
.fs7_c00459{font-size:58.880000pt;}
.fsf_c00459{font-size:61.440000pt;}
.fs6_c00459{font-size:64.000000pt;}
.fs0_c00459{font-size:66.560000pt;}
.fsb_c00459{font-size:87.040000pt;}
.fs11_c00459{font-size:89.600000pt;}
.fs12_c00459{font-size:92.160000pt;}
.y0_c00459{bottom:0.000000pt;}
.y83_c00459{bottom:30.080000pt;}
.y85_c00459{bottom:32.000000pt;}
.y82_c00459{bottom:32.640000pt;}
.y84_c00459{bottom:35.200000pt;}
.y80_c00459{bottom:63.360000pt;}
.y7c_c00459{bottom:68.480000pt;}
.y7b_c00459{bottom:70.400000pt;}
.y7d_c00459{bottom:71.040000pt;}
.y7e_c00459{bottom:71.680000pt;}
.y7f_c00459{bottom:72.320000pt;}
.y81_c00459{bottom:72.960000pt;}
.y78_c00459{bottom:106.880000pt;}
.y77_c00459{bottom:108.160000pt;}
.y7a_c00459{bottom:108.800000pt;}
.y76_c00459{bottom:109.440000pt;}
.y79_c00459{bottom:111.360000pt;}
.y74_c00459{bottom:145.280000pt;}
.y75_c00459{bottom:147.200000pt;}
.y73_c00459{bottom:147.840000pt;}
.y6f_c00459{bottom:183.680000pt;}
.y71_c00459{bottom:184.960000pt;}
.y6d_c00459{bottom:185.600000pt;}
.y70_c00459{bottom:186.240000pt;}
.y6e_c00459{bottom:186.880000pt;}
.y72_c00459{bottom:187.520000pt;}
.y6a_c00459{bottom:222.080000pt;}
.y68_c00459{bottom:224.000000pt;}
.y6c_c00459{bottom:224.640000pt;}
.y69_c00459{bottom:225.280000pt;}
.y6b_c00459{bottom:225.920000pt;}
.y65_c00459{bottom:260.480000pt;}
.y62_c00459{bottom:261.760000pt;}
.y66_c00459{bottom:262.400000pt;}
.y63_c00459{bottom:263.040000pt;}
.y64_c00459{bottom:263.680000pt;}
.y67_c00459{bottom:264.320000pt;}
.y5f_c00459{bottom:298.240000pt;}
.y5d_c00459{bottom:300.160000pt;}
.y60_c00459{bottom:300.800000pt;}
.y5e_c00459{bottom:301.440000pt;}
.y61_c00459{bottom:302.080000pt;}
.y5b_c00459{bottom:336.640000pt;}
.y5c_c00459{bottom:337.920000pt;}
.y59_c00459{bottom:338.560000pt;}
.y5a_c00459{bottom:339.840000pt;}
.y55_c00459{bottom:374.400000pt;}
.y56_c00459{bottom:375.040000pt;}
.y58_c00459{bottom:375.680000pt;}
.y54_c00459{bottom:376.320000pt;}
.y57_c00459{bottom:377.600000pt;}
.y52_c00459{bottom:412.800000pt;}
.y53_c00459{bottom:414.080000pt;}
.y51_c00459{bottom:414.720000pt;}
.y4e_c00459{bottom:450.560000pt;}
.y4c_c00459{bottom:451.840000pt;}
.y4a_c00459{bottom:452.480000pt;}
.y50_c00459{bottom:453.120000pt;}
.y4b_c00459{bottom:453.760000pt;}
.y4d_c00459{bottom:454.400000pt;}
.y4f_c00459{bottom:455.040000pt;}
.y49_c00459{bottom:488.960000pt;}
.y47_c00459{bottom:490.240000pt;}
.y46_c00459{bottom:490.880000pt;}
.y48_c00459{bottom:492.160000pt;}
.y44_c00459{bottom:527.360000pt;}
.y41_c00459{bottom:528.640000pt;}
.y45_c00459{bottom:529.280000pt;}
.y42_c00459{bottom:530.560000pt;}
.y43_c00459{bottom:531.200000pt;}
.y3d_c00459{bottom:565.760000pt;}
.y3f_c00459{bottom:566.400000pt;}
.y3b_c00459{bottom:567.040000pt;}
.y40_c00459{bottom:568.320000pt;}
.y3e_c00459{bottom:568.960000pt;}
.y3c_c00459{bottom:569.600000pt;}
.y3a_c00459{bottom:597.120000pt;}
.y38_c00459{bottom:597.760000pt;}
.y36_c00459{bottom:604.160000pt;}
.y37_c00459{bottom:604.800000pt;}
.y34_c00459{bottom:605.440000pt;}
.y39_c00459{bottom:606.080000pt;}
.y35_c00459{bottom:607.360000pt;}
.y30_c00459{bottom:641.920000pt;}
.y32_c00459{bottom:642.560000pt;}
.y2e_c00459{bottom:643.200000pt;}
.y33_c00459{bottom:643.840000pt;}
.y31_c00459{bottom:644.480000pt;}
.y2f_c00459{bottom:645.760000pt;}
.y2a_c00459{bottom:680.320000pt;}
.y2c_c00459{bottom:680.960000pt;}
.y2d_c00459{bottom:681.600000pt;}
.y28_c00459{bottom:682.240000pt;}
.y2b_c00459{bottom:683.520000pt;}
.y29_c00459{bottom:684.160000pt;}
.y24_c00459{bottom:718.080000pt;}
.y27_c00459{bottom:719.360000pt;}
.y22_c00459{bottom:720.000000pt;}
.y25_c00459{bottom:720.640000pt;}
.y26_c00459{bottom:721.280000pt;}
.y23_c00459{bottom:721.920000pt;}
.y1f_c00459{bottom:755.840000pt;}
.y20_c00459{bottom:757.120000pt;}
.y1d_c00459{bottom:757.760000pt;}
.y21_c00459{bottom:759.040000pt;}
.y1e_c00459{bottom:759.680000pt;}
.y19_c00459{bottom:794.240000pt;}
.y1c_c00459{bottom:794.880000pt;}
.y17_c00459{bottom:795.520000pt;}
.y1a_c00459{bottom:796.800000pt;}
.y1b_c00459{bottom:797.440000pt;}
.y18_c00459{bottom:798.080000pt;}
.y15_c00459{bottom:825.600000pt;}
.y12_c00459{bottom:832.000000pt;}
.y13_c00459{bottom:832.640000pt;}
.y16_c00459{bottom:833.280000pt;}
.y10_c00459{bottom:833.920000pt;}
.y14_c00459{bottom:835.200000pt;}
.y11_c00459{bottom:835.840000pt;}
.yd_c00459{bottom:869.760000pt;}
.ye_c00459{bottom:871.040000pt;}
.yb_c00459{bottom:871.680000pt;}
.yf_c00459{bottom:872.960000pt;}
.yc_c00459{bottom:873.600000pt;}
.y9_c00459{bottom:907.520000pt;}
.ya_c00459{bottom:908.800000pt;}
.y7_c00459{bottom:909.440000pt;}
.y8_c00459{bottom:911.360000pt;}
.y5_c00459{bottom:945.920000pt;}
.y2_c00459{bottom:947.200000pt;}
.y6_c00459{bottom:947.840000pt;}
.y4_c00459{bottom:949.120000pt;}
.y3_c00459{bottom:949.760000pt;}
.y1_c00459{bottom:988.160000pt;}
.h10_c00459{height:11.518750pt;}
.h6_c00459{height:25.341250pt;}
.h7_c00459{height:27.645000pt;}
.h12_c00459{height:29.948750pt;}
.h5_c00459{height:34.556250pt;}
.h4_c00459{height:36.860000pt;}
.hf_c00459{height:39.163750pt;}
.ha_c00459{height:41.467500pt;}
.he_c00459{height:43.771250pt;}
.hb_c00459{height:46.075000pt;}
.h3_c00459{height:48.378750pt;}
.h14_c00459{height:50.426250pt;}
.hc_c00459{height:50.682500pt;}
.h9_c00459{height:52.986250pt;}
.h11_c00459{height:55.290000pt;}
.h8_c00459{height:57.593750pt;}
.h2_c00459{height:59.897500pt;}
.hd_c00459{height:78.327500pt;}
.h13_c00459{height:80.631250pt;}
.h15_c00459{height:82.935000pt;}
.h0_c00459{height:1029.120000pt;}
.h1_c00459{height:1029.333333pt;}
.w1_c00459{width:696.666667pt;}
.w0_c00459{width:696.960000pt;}
.x0_c00459{left:0.000000pt;}
.x2_c00459{left:43.520000pt;}
.x1e_c00459{left:44.800000pt;}
.x32_c00459{left:46.080000pt;}
.x3_c00459{left:110.080000pt;}
.x19_c00459{left:111.360000pt;}
.x34_c00459{left:112.640000pt;}
.x4_c00459{left:149.760000pt;}
.x2b_c00459{left:151.680000pt;}
.x25_c00459{left:158.720000pt;}
.x5_c00459{left:177.920000pt;}
.x1f_c00459{left:179.200000pt;}
.x2c_c00459{left:188.160000pt;}
.x31_c00459{left:189.440000pt;}
.x6_c00459{left:196.480000pt;}
.x26_c00459{left:197.760000pt;}
.x20_c00459{left:199.040000pt;}
.x7_c00459{left:236.160000pt;}
.x33_c00459{left:238.080000pt;}
.x10_c00459{left:245.760000pt;}
.x1b_c00459{left:247.040000pt;}
.x8_c00459{left:275.200000pt;}
.x14_c00459{left:276.480000pt;}
.x15_c00459{left:285.440000pt;}
.x11_c00459{left:293.120000pt;}
.x22_c00459{left:295.040000pt;}
.x2d_c00459{left:312.960000pt;}
.x16_c00459{left:321.920000pt;}
.x1c_c00459{left:323.200000pt;}
.x18_c00459{left:332.800000pt;}
.x2e_c00459{left:352.640000pt;}
.x17_c00459{left:360.960000pt;}
.x1d_c00459{left:371.200000pt;}
.x35_c00459{left:372.480000pt;}
.x24_c00459{left:389.760000pt;}
.x2f_c00459{left:391.040000pt;}
.x12_c00459{left:408.320000pt;}
.x36_c00459{left:420.480000pt;}
.x23_c00459{left:428.800000pt;}
.x9_c00459{left:466.560000pt;}
.x21_c00459{left:467.840000pt;}
.x37_c00459{left:478.720000pt;}
.x38_c00459{left:497.280000pt;}
.xa_c00459{left:514.560000pt;}
.xc_c00459{left:515.840000pt;}
.x29_c00459{left:526.080000pt;}
.x13_c00459{left:544.000000pt;}
.xe_c00459{left:545.280000pt;}
.xf_c00459{left:574.080000pt;}
.x27_c00459{left:575.360000pt;}
.x2a_c00459{left:583.680000pt;}
.x28_c00459{left:604.160000pt;}
.xb_c00459{left:611.840000pt;}
.x1_c00459{left:613.120000pt;}
.x30_c00459{left:614.400000pt;}
.xd_c00459{left:630.400000pt;}
.x1a_c00459{left:631.680000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_36ea9f232d3bf4452de093b2.woff2')format("woff");}.ff1_c00460{font-family:ff1_c00460;line-height:1.109863;font-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_c00460{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m1c_c00460{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.me_c00460{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m1a_c00460{transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);}
.m13_c00460{transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);}
.m29_c00460{transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);}
.m23_c00460{transform:matrix(0.244025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244025,0.000000,0.000000,0.250000,0,0);}
.m2d_c00460{transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);}
.m2f_c00460{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00460{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m34_c00460{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.ma_c00460{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m31_c00460{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m6_c00460{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);}
.m35_c00460{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.mc_c00460{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00460{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_c00460{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m3_c00460{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m1_c00460{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_c00460{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m4_c00460{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_c00460{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);}
.m39_c00460{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m9_c00460{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m15_c00460{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m7_c00460{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00460{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m38_c00460{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00460{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00460{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00460{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m30_c00460{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m37_c00460{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m8_c00460{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m20_c00460{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m27_c00460{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m12_c00460{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mb_c00460{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.md_c00460{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);}
.m21_c00460{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m5_c00460{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);}
.m24_c00460{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00460{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2_c00460{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);}
.m0_c00460{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00460{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);}
.m25_c00460{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m16_c00460{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);}
.m14_c00460{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m10_c00460{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00460{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m33_c00460{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m19_c00460{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m26_c00460{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);}
.m22_c00460{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m28_c00460{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00460{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m36_c00460{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.v1_c00460{vertical-align:-11.520000px;}
.v0_c00460{vertical-align:0.000000px;}
.v2_c00460{vertical-align:5.760000px;}
.ls2_c00460{letter-spacing:0.000000px;}
.ls1_c00460{letter-spacing:52.651680px;}
.ls0_c00460{letter-spacing:55.423680px;}
.sc__c00460{text-shadow:none;}
.sc0_c00460{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00460{-webkit-text-stroke:0px transparent;}
.sc0_c00460{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00460{word-spacing:0.000000px;}
.ws0_c00460{word-spacing:19.499875px;}
.fc0_c00460{color:transparent;}
.fsd_c00460{font-size:34.560000px;}
.fsc_c00460{font-size:37.440000px;}
.fsa_c00460{font-size:43.200000px;}
.fs4_c00460{font-size:46.080000px;}
.fs9_c00460{font-size:48.960000px;}
.fs5_c00460{font-size:51.840000px;}
.fs8_c00460{font-size:54.720000px;}
.fs6_c00460{font-size:57.600000px;}
.fs0_c00460{font-size:60.480000px;}
.fsb_c00460{font-size:63.360000px;}
.fs7_c00460{font-size:66.240000px;}
.fs2_c00460{font-size:69.120000px;}
.fs1_c00460{font-size:72.000000px;}
.fs3_c00460{font-size:74.880000px;}
.y0_c00460{bottom:0.000000px;}
.y69_c00460{bottom:76.320000px;}
.y6a_c00460{bottom:77.040000px;}
.y6c_c00460{bottom:77.760000px;}
.y6b_c00460{bottom:78.480000px;}
.y68_c00460{bottom:79.200000px;}
.y63_c00460{bottom:119.520000px;}
.y66_c00460{bottom:120.240000px;}
.y65_c00460{bottom:120.960000px;}
.y67_c00460{bottom:121.680000px;}
.y62_c00460{bottom:122.400000px;}
.y64_c00460{bottom:123.120000px;}
.y5f_c00460{bottom:162.000000px;}
.y61_c00460{bottom:163.440000px;}
.y60_c00460{bottom:164.880000px;}
.y5e_c00460{bottom:165.600000px;}
.y5a_c00460{bottom:205.200000px;}
.y5b_c00460{bottom:207.360000px;}
.y59_c00460{bottom:208.080000px;}
.y5c_c00460{bottom:208.800000px;}
.y5d_c00460{bottom:209.520000px;}
.y55_c00460{bottom:248.400000px;}
.y56_c00460{bottom:249.120000px;}
.y58_c00460{bottom:249.840000px;}
.y57_c00460{bottom:250.560000px;}
.y54_c00460{bottom:251.280000px;}
.y4e_c00460{bottom:290.880000px;}
.y4f_c00460{bottom:291.600000px;}
.y50_c00460{bottom:293.040000px;}
.y4d_c00460{bottom:293.760000px;}
.y4c_c00460{bottom:326.880000px;}
.y48_c00460{bottom:334.080000px;}
.y4a_c00460{bottom:334.800000px;}
.y4b_c00460{bottom:335.520000px;}
.y47_c00460{bottom:336.240000px;}
.y49_c00460{bottom:337.680000px;}
.y46_c00460{bottom:370.080000px;}
.y42_c00460{bottom:377.280000px;}
.y44_c00460{bottom:378.720000px;}
.y41_c00460{bottom:379.440000px;}
.y43_c00460{bottom:380.880000px;}
.y45_c00460{bottom:382.320000px;}
.y3e_c00460{bottom:420.480000px;}
.y53_c00460{bottom:421.200000px;}
.y3d_c00460{bottom:421.920000px;}
.y40_c00460{bottom:422.640000px;}
.y3f_c00460{bottom:424.080000px;}
.y38_c00460{bottom:462.960000px;}
.y37_c00460{bottom:465.120000px;}
.y52_c00460{bottom:465.840000px;}
.y3c_c00460{bottom:468.000000px;}
.y36_c00460{bottom:506.160000px;}
.y35_c00460{bottom:508.320000px;}
.y3b_c00460{bottom:510.480000px;}
.y51_c00460{bottom:511.200000px;}
.y34_c00460{bottom:549.360000px;}
.y3a_c00460{bottom:550.800000px;}
.y33_c00460{bottom:551.520000px;}
.y39_c00460{bottom:553.680000px;}
.y32_c00460{bottom:592.560000px;}
.y2f_c00460{bottom:594.000000px;}
.y31_c00460{bottom:594.720000px;}
.y30_c00460{bottom:595.440000px;}
.y2e_c00460{bottom:596.880000px;}
.y2a_c00460{bottom:635.040000px;}
.y29_c00460{bottom:637.200000px;}
.y2d_c00460{bottom:637.920000px;}
.y2c_c00460{bottom:639.360000px;}
.y2b_c00460{bottom:640.080000px;}
.y22_c00460{bottom:678.240000px;}
.y27_c00460{bottom:679.680000px;}
.y21_c00460{bottom:680.400000px;}
.y28_c00460{bottom:681.120000px;}
.y26_c00460{bottom:682.560000px;}
.y20_c00460{bottom:720.720000px;}
.y1f_c00460{bottom:722.880000px;}
.y25_c00460{bottom:723.600000px;}
.y24_c00460{bottom:725.760000px;}
.y1e_c00460{bottom:763.200000px;}
.y1d_c00460{bottom:765.360000px;}
.y23_c00460{bottom:767.520000px;}
.y1c_c00460{bottom:806.400000px;}
.y1b_c00460{bottom:807.840000px;}
.y1a_c00460{bottom:808.560000px;}
.y19_c00460{bottom:810.720000px;}
.y15_c00460{bottom:848.160000px;}
.y14_c00460{bottom:850.320000px;}
.y18_c00460{bottom:851.040000px;}
.y17_c00460{bottom:852.480000px;}
.y16_c00460{bottom:853.200000px;}
.ya_c00460{bottom:892.080000px;}
.y9_c00460{bottom:893.520000px;}
.y13_c00460{bottom:894.960000px;}
.y12_c00460{bottom:895.680000px;}
.y8_c00460{bottom:934.560000px;}
.y7_c00460{bottom:936.000000px;}
.y11_c00460{bottom:936.720000px;}
.y10_c00460{bottom:938.880000px;}
.y6_c00460{bottom:977.760000px;}
.y5_c00460{bottom:979.200000px;}
.yf_c00460{bottom:981.360000px;}
.y4_c00460{bottom:1020.240000px;}
.y3_c00460{bottom:1022.400000px;}
.ye_c00460{bottom:1023.840000px;}
.y2_c00460{bottom:1063.440000px;}
.yd_c00460{bottom:1064.160000px;}
.y1_c00460{bottom:1065.600000px;}
.yc_c00460{bottom:1067.760000px;}
.yb_c00460{bottom:1123.200000px;}
.hf_c00460{height:31.100625px;}
.he_c00460{height:33.692344px;}
.hc_c00460{height:38.875781px;}
.h6_c00460{height:41.467500px;}
.hb_c00460{height:44.059219px;}
.h7_c00460{height:46.650937px;}
.ha_c00460{height:49.242656px;}
.h8_c00460{height:51.834375px;}
.h2_c00460{height:54.426094px;}
.h10_c00460{height:55.002656px;}
.hd_c00460{height:57.017812px;}
.h9_c00460{height:59.609531px;}
.h4_c00460{height:62.201250px;}
.h3_c00460{height:64.792969px;}
.h5_c00460{height:67.384687px;}
.h0_c00460{height:1158.480000px;}
.h1_c00460{height:1158.750000px;}
.w1_c00460{width:753.750000px;}
.w0_c00460{width:753.840000px;}
.x0_c00460{left:0.000000px;}
.x1_c00460{left:40.320000px;}
.x1f_c00460{left:41.760000px;}
.x13_c00460{left:110.880000px;}
.x2_c00460{left:115.200000px;}
.x17_c00460{left:201.600000px;}
.x26_c00460{left:203.040000px;}
.x14_c00460{left:246.240000px;}
.x27_c00460{left:257.760000px;}
.xb_c00460{left:266.400000px;}
.x1a_c00460{left:279.360000px;}
.x15_c00460{left:300.240000px;}
.x28_c00460{left:301.680000px;}
.xc_c00460{left:311.040000px;}
.x1b_c00460{left:332.640000px;}
.x16_c00460{left:343.440000px;}
.x23_c00460{left:354.960000px;}
.x1c_c00460{left:376.560000px;}
.x24_c00460{left:408.240000px;}
.x18_c00460{left:452.160000px;}
.x25_c00460{left:453.600000px;}
.x19_c00460{left:462.960000px;}
.x29_c00460{left:474.480000px;}
.x1d_c00460{left:484.560000px;}
.x1e_c00460{left:496.080000px;}
.x4_c00460{left:527.760000px;}
.xd_c00460{left:529.200000px;}
.x5_c00460{left:548.640000px;}
.x8_c00460{left:550.080000px;}
.x6_c00460{left:570.240000px;}
.x12_c00460{left:571.680000px;}
.xf_c00460{left:595.440000px;}
.x9_c00460{left:604.080000px;}
.x20_c00460{left:605.520000px;}
.x10_c00460{left:628.560000px;}
.xa_c00460{left:637.200000px;}
.x21_c00460{left:638.640000px;}
.x3_c00460{left:676.800000px;}
.x7_c00460{left:679.680000px;}
.xe_c00460{left:681.120000px;}
.x22_c00460{left:682.560000px;}
.x11_c00460{left:701.280000px;}
@media print{
.v1_c00460{vertical-align:-10.240000pt;}
.v0_c00460{vertical-align:0.000000pt;}
.v2_c00460{vertical-align:5.120000pt;}
.ls2_c00460{letter-spacing:0.000000pt;}
.ls1_c00460{letter-spacing:46.801493pt;}
.ls0_c00460{letter-spacing:49.265493pt;}
.ws1_c00460{word-spacing:0.000000pt;}
.ws0_c00460{word-spacing:17.333222pt;}
.fsd_c00460{font-size:30.720000pt;}
.fsc_c00460{font-size:33.280000pt;}
.fsa_c00460{font-size:38.400000pt;}
.fs4_c00460{font-size:40.960000pt;}
.fs9_c00460{font-size:43.520000pt;}
.fs5_c00460{font-size:46.080000pt;}
.fs8_c00460{font-size:48.640000pt;}
.fs6_c00460{font-size:51.200000pt;}
.fs0_c00460{font-size:53.760000pt;}
.fsb_c00460{font-size:56.320000pt;}
.fs7_c00460{font-size:58.880000pt;}
.fs2_c00460{font-size:61.440000pt;}
.fs1_c00460{font-size:64.000000pt;}
.fs3_c00460{font-size:66.560000pt;}
.y0_c00460{bottom:0.000000pt;}
.y69_c00460{bottom:67.840000pt;}
.y6a_c00460{bottom:68.480000pt;}
.y6c_c00460{bottom:69.120000pt;}
.y6b_c00460{bottom:69.760000pt;}
.y68_c00460{bottom:70.400000pt;}
.y63_c00460{bottom:106.240000pt;}
.y66_c00460{bottom:106.880000pt;}
.y65_c00460{bottom:107.520000pt;}
.y67_c00460{bottom:108.160000pt;}
.y62_c00460{bottom:108.800000pt;}
.y64_c00460{bottom:109.440000pt;}
.y5f_c00460{bottom:144.000000pt;}
.y61_c00460{bottom:145.280000pt;}
.y60_c00460{bottom:146.560000pt;}
.y5e_c00460{bottom:147.200000pt;}
.y5a_c00460{bottom:182.400000pt;}
.y5b_c00460{bottom:184.320000pt;}
.y59_c00460{bottom:184.960000pt;}
.y5c_c00460{bottom:185.600000pt;}
.y5d_c00460{bottom:186.240000pt;}
.y55_c00460{bottom:220.800000pt;}
.y56_c00460{bottom:221.440000pt;}
.y58_c00460{bottom:222.080000pt;}
.y57_c00460{bottom:222.720000pt;}
.y54_c00460{bottom:223.360000pt;}
.y4e_c00460{bottom:258.560000pt;}
.y4f_c00460{bottom:259.200000pt;}
.y50_c00460{bottom:260.480000pt;}
.y4d_c00460{bottom:261.120000pt;}
.y4c_c00460{bottom:290.560000pt;}
.y48_c00460{bottom:296.960000pt;}
.y4a_c00460{bottom:297.600000pt;}
.y4b_c00460{bottom:298.240000pt;}
.y47_c00460{bottom:298.880000pt;}
.y49_c00460{bottom:300.160000pt;}
.y46_c00460{bottom:328.960000pt;}
.y42_c00460{bottom:335.360000pt;}
.y44_c00460{bottom:336.640000pt;}
.y41_c00460{bottom:337.280000pt;}
.y43_c00460{bottom:338.560000pt;}
.y45_c00460{bottom:339.840000pt;}
.y3e_c00460{bottom:373.760000pt;}
.y53_c00460{bottom:374.400000pt;}
.y3d_c00460{bottom:375.040000pt;}
.y40_c00460{bottom:375.680000pt;}
.y3f_c00460{bottom:376.960000pt;}
.y38_c00460{bottom:411.520000pt;}
.y37_c00460{bottom:413.440000pt;}
.y52_c00460{bottom:414.080000pt;}
.y3c_c00460{bottom:416.000000pt;}
.y36_c00460{bottom:449.920000pt;}
.y35_c00460{bottom:451.840000pt;}
.y3b_c00460{bottom:453.760000pt;}
.y51_c00460{bottom:454.400000pt;}
.y34_c00460{bottom:488.320000pt;}
.y3a_c00460{bottom:489.600000pt;}
.y33_c00460{bottom:490.240000pt;}
.y39_c00460{bottom:492.160000pt;}
.y32_c00460{bottom:526.720000pt;}
.y2f_c00460{bottom:528.000000pt;}
.y31_c00460{bottom:528.640000pt;}
.y30_c00460{bottom:529.280000pt;}
.y2e_c00460{bottom:530.560000pt;}
.y2a_c00460{bottom:564.480000pt;}
.y29_c00460{bottom:566.400000pt;}
.y2d_c00460{bottom:567.040000pt;}
.y2c_c00460{bottom:568.320000pt;}
.y2b_c00460{bottom:568.960000pt;}
.y22_c00460{bottom:602.880000pt;}
.y27_c00460{bottom:604.160000pt;}
.y21_c00460{bottom:604.800000pt;}
.y28_c00460{bottom:605.440000pt;}
.y26_c00460{bottom:606.720000pt;}
.y20_c00460{bottom:640.640000pt;}
.y1f_c00460{bottom:642.560000pt;}
.y25_c00460{bottom:643.200000pt;}
.y24_c00460{bottom:645.120000pt;}
.y1e_c00460{bottom:678.400000pt;}
.y1d_c00460{bottom:680.320000pt;}
.y23_c00460{bottom:682.240000pt;}
.y1c_c00460{bottom:716.800000pt;}
.y1b_c00460{bottom:718.080000pt;}
.y1a_c00460{bottom:718.720000pt;}
.y19_c00460{bottom:720.640000pt;}
.y15_c00460{bottom:753.920000pt;}
.y14_c00460{bottom:755.840000pt;}
.y18_c00460{bottom:756.480000pt;}
.y17_c00460{bottom:757.760000pt;}
.y16_c00460{bottom:758.400000pt;}
.ya_c00460{bottom:792.960000pt;}
.y9_c00460{bottom:794.240000pt;}
.y13_c00460{bottom:795.520000pt;}
.y12_c00460{bottom:796.160000pt;}
.y8_c00460{bottom:830.720000pt;}
.y7_c00460{bottom:832.000000pt;}
.y11_c00460{bottom:832.640000pt;}
.y10_c00460{bottom:834.560000pt;}
.y6_c00460{bottom:869.120000pt;}
.y5_c00460{bottom:870.400000pt;}
.yf_c00460{bottom:872.320000pt;}
.y4_c00460{bottom:906.880000pt;}
.y3_c00460{bottom:908.800000pt;}
.ye_c00460{bottom:910.080000pt;}
.y2_c00460{bottom:945.280000pt;}
.yd_c00460{bottom:945.920000pt;}
.y1_c00460{bottom:947.200000pt;}
.yc_c00460{bottom:949.120000pt;}
.yb_c00460{bottom:998.400000pt;}
.hf_c00460{height:27.645000pt;}
.he_c00460{height:29.948750pt;}
.hc_c00460{height:34.556250pt;}
.h6_c00460{height:36.860000pt;}
.hb_c00460{height:39.163750pt;}
.h7_c00460{height:41.467500pt;}
.ha_c00460{height:43.771250pt;}
.h8_c00460{height:46.075000pt;}
.h2_c00460{height:48.378750pt;}
.h10_c00460{height:48.891250pt;}
.hd_c00460{height:50.682500pt;}
.h9_c00460{height:52.986250pt;}
.h4_c00460{height:55.290000pt;}
.h3_c00460{height:57.593750pt;}
.h5_c00460{height:59.897500pt;}
.h0_c00460{height:1029.760000pt;}
.h1_c00460{height:1030.000000pt;}
.w1_c00460{width:670.000000pt;}
.w0_c00460{width:670.080000pt;}
.x0_c00460{left:0.000000pt;}
.x1_c00460{left:35.840000pt;}
.x1f_c00460{left:37.120000pt;}
.x13_c00460{left:98.560000pt;}
.x2_c00460{left:102.400000pt;}
.x17_c00460{left:179.200000pt;}
.x26_c00460{left:180.480000pt;}
.x14_c00460{left:218.880000pt;}
.x27_c00460{left:229.120000pt;}
.xb_c00460{left:236.800000pt;}
.x1a_c00460{left:248.320000pt;}
.x15_c00460{left:266.880000pt;}
.x28_c00460{left:268.160000pt;}
.xc_c00460{left:276.480000pt;}
.x1b_c00460{left:295.680000pt;}
.x16_c00460{left:305.280000pt;}
.x23_c00460{left:315.520000pt;}
.x1c_c00460{left:334.720000pt;}
.x24_c00460{left:362.880000pt;}
.x18_c00460{left:401.920000pt;}
.x25_c00460{left:403.200000pt;}
.x19_c00460{left:411.520000pt;}
.x29_c00460{left:421.760000pt;}
.x1d_c00460{left:430.720000pt;}
.x1e_c00460{left:440.960000pt;}
.x4_c00460{left:469.120000pt;}
.xd_c00460{left:470.400000pt;}
.x5_c00460{left:487.680000pt;}
.x8_c00460{left:488.960000pt;}
.x6_c00460{left:506.880000pt;}
.x12_c00460{left:508.160000pt;}
.xf_c00460{left:529.280000pt;}
.x9_c00460{left:536.960000pt;}
.x20_c00460{left:538.240000pt;}
.x10_c00460{left:558.720000pt;}
.xa_c00460{left:566.400000pt;}
.x21_c00460{left:567.680000pt;}
.x3_c00460{left:601.600000pt;}
.x7_c00460{left:604.160000pt;}
.xe_c00460{left:605.440000pt;}
.x22_c00460{left:606.720000pt;}
.x11_c00460{left:623.360000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2d5779d2be4258ee1819b386.woff2')format("woff");}.ff1_c00461{font-family:ff1_c00461;line-height:1.109863;font-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_c00461{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m19_c00461{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m23_c00461{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m2a_c00461{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m5_c00461{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_c00461{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);}
.m35_c00461{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m2_c00461{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m25_c00461{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_c00461{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);}
.m22_c00461{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m6_c00461{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m9_c00461{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m4_c00461{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mb_c00461{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00461{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m11_c00461{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m12_c00461{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m7_c00461{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m38_c00461{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00461{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m16_c00461{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00461{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00461{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m30_c00461{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.md_c00461{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m13_c00461{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m10_c00461{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_c00461{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1_c00461{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);}
.m2b_c00461{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m32_c00461{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m28_c00461{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m24_c00461{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);}
.mf_c00461{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m18_c00461{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m29_c00461{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);}
.m0_c00461{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m21_c00461{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);}
.me_c00461{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);}
.m33_c00461{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m26_c00461{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);}
.m15_c00461{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m31_c00461{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);}
.m37_c00461{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.ma_c00461{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00461{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m39_c00461{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);}
.m1c_c00461{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00461{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m3_c00461{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m27_c00461{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m36_c00461{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m20_c00461{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00461{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m8_c00461{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00461{transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);}
.m34_c00461{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00461{transform:matrix(0.907500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.907500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.907500,0.000000,0.000000,0.250000,0,0);}
.v1_c00461{vertical-align:-2.880000px;}
.v0_c00461{vertical-align:0.000000px;}
.v2_c00461{vertical-align:5.760000px;}
.ls1_c00461{letter-spacing:0.000000px;}
.ls0_c00461{letter-spacing:52.651680px;}
.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:-1.748880px;}
.ws2_c00461{word-spacing:-0.139200px;}
.ws3_c00461{word-spacing:0.000000px;}
.ws1_c00461{word-spacing:19.499875px;}
.fc0_c00461{color:transparent;}
.fsc_c00461{font-size:20.160000px;}
.fsd_c00461{font-size:28.800000px;}
.fsb_c00461{font-size:34.560000px;}
.fs8_c00461{font-size:43.200000px;}
.fs6_c00461{font-size:46.080000px;}
.fs2_c00461{font-size:48.960000px;}
.fs7_c00461{font-size:51.840000px;}
.fs4_c00461{font-size:54.720000px;}
.fs5_c00461{font-size:57.600000px;}
.fs9_c00461{font-size:60.480000px;}
.fs1_c00461{font-size:63.360000px;}
.fsa_c00461{font-size:66.240000px;}
.fs3_c00461{font-size:69.120000px;}
.fs0_c00461{font-size:72.000000px;}
.fse_c00461{font-size:74.880000px;}
.fsf_c00461{font-size:77.760000px;}
.y0_c00461{bottom:0.000000px;}
.y7f_c00461{bottom:59.760000px;}
.y82_c00461{bottom:62.640000px;}
.y81_c00461{bottom:63.360000px;}
.y7e_c00461{bottom:64.080000px;}
.y80_c00461{bottom:64.800000px;}
.y7a_c00461{bottom:103.680000px;}
.y79_c00461{bottom:105.840000px;}
.y7c_c00461{bottom:106.560000px;}
.y7d_c00461{bottom:108.000000px;}
.y7b_c00461{bottom:108.720000px;}
.y76_c00461{bottom:146.160000px;}
.y75_c00461{bottom:149.040000px;}
.y77_c00461{bottom:149.760000px;}
.y78_c00461{bottom:151.920000px;}
.y70_c00461{bottom:188.640000px;}
.y71_c00461{bottom:191.520000px;}
.y6f_c00461{bottom:192.240000px;}
.y74_c00461{bottom:192.960000px;}
.y72_c00461{bottom:193.680000px;}
.y73_c00461{bottom:195.120000px;}
.y6b_c00461{bottom:233.280000px;}
.y6e_c00461{bottom:235.440000px;}
.y6a_c00461{bottom:236.160000px;}
.y6c_c00461{bottom:237.600000px;}
.y6d_c00461{bottom:238.320000px;}
.y67_c00461{bottom:275.760000px;}
.y66_c00461{bottom:278.640000px;}
.y69_c00461{bottom:279.360000px;}
.y68_c00461{bottom:280.800000px;}
.y61_c00461{bottom:319.680000px;}
.y60_c00461{bottom:321.840000px;}
.y63_c00461{bottom:322.560000px;}
.y65_c00461{bottom:323.280000px;}
.y62_c00461{bottom:324.000000px;}
.y64_c00461{bottom:324.720000px;}
.y5d_c00461{bottom:362.160000px;}
.y5f_c00461{bottom:364.320000px;}
.y5c_c00461{bottom:365.040000px;}
.y5e_c00461{bottom:366.480000px;}
.y56_c00461{bottom:404.640000px;}
.y58_c00461{bottom:405.360000px;}
.y57_c00461{bottom:406.080000px;}
.y5b_c00461{bottom:406.800000px;}
.y55_c00461{bottom:407.520000px;}
.y59_c00461{bottom:409.680000px;}
.y5a_c00461{bottom:410.400000px;}
.y4f_c00461{bottom:447.840000px;}
.y51_c00461{bottom:448.560000px;}
.y53_c00461{bottom:449.280000px;}
.y4e_c00461{bottom:450.000000px;}
.y50_c00461{bottom:450.720000px;}
.y52_c00461{bottom:451.440000px;}
.y54_c00461{bottom:452.160000px;}
.y47_c00461{bottom:490.320000px;}
.y4a_c00461{bottom:491.040000px;}
.y48_c00461{bottom:491.760000px;}
.y4b_c00461{bottom:492.480000px;}
.y46_c00461{bottom:493.200000px;}
.y49_c00461{bottom:493.920000px;}
.y4d_c00461{bottom:494.640000px;}
.y4c_c00461{bottom:501.120000px;}
.y41_c00461{bottom:533.520000px;}
.y42_c00461{bottom:534.240000px;}
.y40_c00461{bottom:535.680000px;}
.y43_c00461{bottom:536.400000px;}
.y45_c00461{bottom:537.120000px;}
.y44_c00461{bottom:537.840000px;}
.y3c_c00461{bottom:576.720000px;}
.y3e_c00461{bottom:577.440000px;}
.y3b_c00461{bottom:578.160000px;}
.y3f_c00461{bottom:578.880000px;}
.y3d_c00461{bottom:580.320000px;}
.y37_c00461{bottom:619.920000px;}
.y36_c00461{bottom:620.640000px;}
.y38_c00461{bottom:621.360000px;}
.y39_c00461{bottom:622.080000px;}
.y3a_c00461{bottom:624.240000px;}
.y31_c00461{bottom:662.400000px;}
.y33_c00461{bottom:663.120000px;}
.y35_c00461{bottom:663.840000px;}
.y34_c00461{bottom:664.560000px;}
.y30_c00461{bottom:665.280000px;}
.y32_c00461{bottom:666.000000px;}
.y2d_c00461{bottom:705.600000px;}
.y2f_c00461{bottom:707.040000px;}
.y2c_c00461{bottom:707.760000px;}
.y2e_c00461{bottom:709.200000px;}
.y29_c00461{bottom:748.080000px;}
.y2a_c00461{bottom:748.800000px;}
.y28_c00461{bottom:750.240000px;}
.y2b_c00461{bottom:750.960000px;}
.y27_c00461{bottom:791.280000px;}
.y26_c00461{bottom:792.720000px;}
.y25_c00461{bottom:795.600000px;}
.y20_c00461{bottom:822.960000px;}
.y21_c00461{bottom:824.400000px;}
.y1f_c00461{bottom:825.120000px;}
.y23_c00461{bottom:825.840000px;}
.y22_c00461{bottom:826.560000px;}
.y24_c00461{bottom:828.000000px;}
.y1a_c00461{bottom:866.160000px;}
.y1b_c00461{bottom:866.880000px;}
.y1c_c00461{bottom:868.320000px;}
.y19_c00461{bottom:869.040000px;}
.y1e_c00461{bottom:869.760000px;}
.y1d_c00461{bottom:870.480000px;}
.y13_c00461{bottom:909.360000px;}
.y16_c00461{bottom:910.080000px;}
.y12_c00461{bottom:910.800000px;}
.y18_c00461{bottom:911.520000px;}
.y14_c00461{bottom:912.240000px;}
.y15_c00461{bottom:912.960000px;}
.y17_c00461{bottom:913.680000px;}
.ye_c00461{bottom:951.840000px;}
.y11_c00461{bottom:953.280000px;}
.yd_c00461{bottom:954.000000px;}
.y10_c00461{bottom:954.720000px;}
.yf_c00461{bottom:955.440000px;}
.ya_c00461{bottom:993.600000px;}
.y8_c00461{bottom:994.320000px;}
.y7_c00461{bottom:995.760000px;}
.yb_c00461{bottom:996.480000px;}
.y9_c00461{bottom:997.920000px;}
.yc_c00461{bottom:998.640000px;}
.y3_c00461{bottom:1036.800000px;}
.y5_c00461{bottom:1037.520000px;}
.y6_c00461{bottom:1038.240000px;}
.y2_c00461{bottom:1038.960000px;}
.y4_c00461{bottom:1040.400000px;}
.y1_c00461{bottom:1094.400000px;}
.he_c00461{height:18.142031px;}
.hf_c00461{height:25.917187px;}
.hd_c00461{height:31.100625px;}
.ha_c00461{height:38.875781px;}
.h8_c00461{height:41.467500px;}
.h4_c00461{height:44.059219px;}
.h9_c00461{height:46.650937px;}
.h6_c00461{height:49.242656px;}
.h7_c00461{height:51.834375px;}
.hb_c00461{height:54.426094px;}
.h10_c00461{height:55.002656px;}
.h3_c00461{height:57.017812px;}
.hc_c00461{height:59.609531px;}
.h5_c00461{height:62.201250px;}
.h2_c00461{height:64.792969px;}
.h11_c00461{height:67.384687px;}
.h12_c00461{height:69.976406px;}
.h1_c00461{height:1143.000000px;}
.h0_c00461{height:1143.360000px;}
.w1_c00461{width:773.250000px;}
.w0_c00461{width:773.280000px;}
.x0_c00461{left:0.000000px;}
.x2_c00461{left:55.440000px;}
.x25_c00461{left:56.880000px;}
.x3_c00461{left:129.600000px;}
.x16_c00461{left:131.040000px;}
.x17_c00461{left:185.760000px;}
.x1d_c00461{left:216.000000px;}
.x4_c00461{left:217.440000px;}
.x12_c00461{left:260.640000px;}
.x5_c00461{left:272.160000px;}
.xd_c00461{left:293.760000px;}
.x13_c00461{left:303.840000px;}
.x18_c00461{left:315.360000px;}
.xe_c00461{left:346.320000px;}
.x19_c00461{left:347.760000px;}
.x14_c00461{left:357.120000px;}
.xb_c00461{left:379.440000px;}
.xf_c00461{left:390.240000px;}
.x15_c00461{left:401.040000px;}
.x1e_c00461{left:402.480000px;}
.xc_c00461{left:422.640000px;}
.x1f_c00461{left:532.800000px;}
.x6_c00461{left:542.880000px;}
.x10_c00461{left:563.760000px;}
.x1b_c00461{left:565.920000px;}
.x11_c00461{left:585.360000px;}
.x23_c00461{left:610.560000px;}
.x7_c00461{left:618.480000px;}
.x1c_c00461{left:619.920000px;}
.x24_c00461{left:642.960000px;}
.x8_c00461{left:652.320000px;}
.x21_c00461{left:662.400000px;}
.x1_c00461{left:675.360000px;}
.x20_c00461{left:684.720000px;}
.x1a_c00461{left:694.080000px;}
.x9_c00461{left:695.520000px;}
.xa_c00461{left:714.960000px;}
.x22_c00461{left:716.400000px;}
@media print{
.v1_c00461{vertical-align:-2.560000pt;}
.v0_c00461{vertical-align:0.000000pt;}
.v2_c00461{vertical-align:5.120000pt;}
.ls1_c00461{letter-spacing:0.000000pt;}
.ls0_c00461{letter-spacing:46.801493pt;}
.ws0_c00461{word-spacing:-1.554560pt;}
.ws2_c00461{word-spacing:-0.123733pt;}
.ws3_c00461{word-spacing:0.000000pt;}
.ws1_c00461{word-spacing:17.333222pt;}
.fsc_c00461{font-size:17.920000pt;}
.fsd_c00461{font-size:25.600000pt;}
.fsb_c00461{font-size:30.720000pt;}
.fs8_c00461{font-size:38.400000pt;}
.fs6_c00461{font-size:40.960000pt;}
.fs2_c00461{font-size:43.520000pt;}
.fs7_c00461{font-size:46.080000pt;}
.fs4_c00461{font-size:48.640000pt;}
.fs5_c00461{font-size:51.200000pt;}
.fs9_c00461{font-size:53.760000pt;}
.fs1_c00461{font-size:56.320000pt;}
.fsa_c00461{font-size:58.880000pt;}
.fs3_c00461{font-size:61.440000pt;}
.fs0_c00461{font-size:64.000000pt;}
.fse_c00461{font-size:66.560000pt;}
.fsf_c00461{font-size:69.120000pt;}
.y0_c00461{bottom:0.000000pt;}
.y7f_c00461{bottom:53.120000pt;}
.y82_c00461{bottom:55.680000pt;}
.y81_c00461{bottom:56.320000pt;}
.y7e_c00461{bottom:56.960000pt;}
.y80_c00461{bottom:57.600000pt;}
.y7a_c00461{bottom:92.160000pt;}
.y79_c00461{bottom:94.080000pt;}
.y7c_c00461{bottom:94.720000pt;}
.y7d_c00461{bottom:96.000000pt;}
.y7b_c00461{bottom:96.640000pt;}
.y76_c00461{bottom:129.920000pt;}
.y75_c00461{bottom:132.480000pt;}
.y77_c00461{bottom:133.120000pt;}
.y78_c00461{bottom:135.040000pt;}
.y70_c00461{bottom:167.680000pt;}
.y71_c00461{bottom:170.240000pt;}
.y6f_c00461{bottom:170.880000pt;}
.y74_c00461{bottom:171.520000pt;}
.y72_c00461{bottom:172.160000pt;}
.y73_c00461{bottom:173.440000pt;}
.y6b_c00461{bottom:207.360000pt;}
.y6e_c00461{bottom:209.280000pt;}
.y6a_c00461{bottom:209.920000pt;}
.y6c_c00461{bottom:211.200000pt;}
.y6d_c00461{bottom:211.840000pt;}
.y67_c00461{bottom:245.120000pt;}
.y66_c00461{bottom:247.680000pt;}
.y69_c00461{bottom:248.320000pt;}
.y68_c00461{bottom:249.600000pt;}
.y61_c00461{bottom:284.160000pt;}
.y60_c00461{bottom:286.080000pt;}
.y63_c00461{bottom:286.720000pt;}
.y65_c00461{bottom:287.360000pt;}
.y62_c00461{bottom:288.000000pt;}
.y64_c00461{bottom:288.640000pt;}
.y5d_c00461{bottom:321.920000pt;}
.y5f_c00461{bottom:323.840000pt;}
.y5c_c00461{bottom:324.480000pt;}
.y5e_c00461{bottom:325.760000pt;}
.y56_c00461{bottom:359.680000pt;}
.y58_c00461{bottom:360.320000pt;}
.y57_c00461{bottom:360.960000pt;}
.y5b_c00461{bottom:361.600000pt;}
.y55_c00461{bottom:362.240000pt;}
.y59_c00461{bottom:364.160000pt;}
.y5a_c00461{bottom:364.800000pt;}
.y4f_c00461{bottom:398.080000pt;}
.y51_c00461{bottom:398.720000pt;}
.y53_c00461{bottom:399.360000pt;}
.y4e_c00461{bottom:400.000000pt;}
.y50_c00461{bottom:400.640000pt;}
.y52_c00461{bottom:401.280000pt;}
.y54_c00461{bottom:401.920000pt;}
.y47_c00461{bottom:435.840000pt;}
.y4a_c00461{bottom:436.480000pt;}
.y48_c00461{bottom:437.120000pt;}
.y4b_c00461{bottom:437.760000pt;}
.y46_c00461{bottom:438.400000pt;}
.y49_c00461{bottom:439.040000pt;}
.y4d_c00461{bottom:439.680000pt;}
.y4c_c00461{bottom:445.440000pt;}
.y41_c00461{bottom:474.240000pt;}
.y42_c00461{bottom:474.880000pt;}
.y40_c00461{bottom:476.160000pt;}
.y43_c00461{bottom:476.800000pt;}
.y45_c00461{bottom:477.440000pt;}
.y44_c00461{bottom:478.080000pt;}
.y3c_c00461{bottom:512.640000pt;}
.y3e_c00461{bottom:513.280000pt;}
.y3b_c00461{bottom:513.920000pt;}
.y3f_c00461{bottom:514.560000pt;}
.y3d_c00461{bottom:515.840000pt;}
.y37_c00461{bottom:551.040000pt;}
.y36_c00461{bottom:551.680000pt;}
.y38_c00461{bottom:552.320000pt;}
.y39_c00461{bottom:552.960000pt;}
.y3a_c00461{bottom:554.880000pt;}
.y31_c00461{bottom:588.800000pt;}
.y33_c00461{bottom:589.440000pt;}
.y35_c00461{bottom:590.080000pt;}
.y34_c00461{bottom:590.720000pt;}
.y30_c00461{bottom:591.360000pt;}
.y32_c00461{bottom:592.000000pt;}
.y2d_c00461{bottom:627.200000pt;}
.y2f_c00461{bottom:628.480000pt;}
.y2c_c00461{bottom:629.120000pt;}
.y2e_c00461{bottom:630.400000pt;}
.y29_c00461{bottom:664.960000pt;}
.y2a_c00461{bottom:665.600000pt;}
.y28_c00461{bottom:666.880000pt;}
.y2b_c00461{bottom:667.520000pt;}
.y27_c00461{bottom:703.360000pt;}
.y26_c00461{bottom:704.640000pt;}
.y25_c00461{bottom:707.200000pt;}
.y20_c00461{bottom:731.520000pt;}
.y21_c00461{bottom:732.800000pt;}
.y1f_c00461{bottom:733.440000pt;}
.y23_c00461{bottom:734.080000pt;}
.y22_c00461{bottom:734.720000pt;}
.y24_c00461{bottom:736.000000pt;}
.y1a_c00461{bottom:769.920000pt;}
.y1b_c00461{bottom:770.560000pt;}
.y1c_c00461{bottom:771.840000pt;}
.y19_c00461{bottom:772.480000pt;}
.y1e_c00461{bottom:773.120000pt;}
.y1d_c00461{bottom:773.760000pt;}
.y13_c00461{bottom:808.320000pt;}
.y16_c00461{bottom:808.960000pt;}
.y12_c00461{bottom:809.600000pt;}
.y18_c00461{bottom:810.240000pt;}
.y14_c00461{bottom:810.880000pt;}
.y15_c00461{bottom:811.520000pt;}
.y17_c00461{bottom:812.160000pt;}
.ye_c00461{bottom:846.080000pt;}
.y11_c00461{bottom:847.360000pt;}
.yd_c00461{bottom:848.000000pt;}
.y10_c00461{bottom:848.640000pt;}
.yf_c00461{bottom:849.280000pt;}
.ya_c00461{bottom:883.200000pt;}
.y8_c00461{bottom:883.840000pt;}
.y7_c00461{bottom:885.120000pt;}
.yb_c00461{bottom:885.760000pt;}
.y9_c00461{bottom:887.040000pt;}
.yc_c00461{bottom:887.680000pt;}
.y3_c00461{bottom:921.600000pt;}
.y5_c00461{bottom:922.240000pt;}
.y6_c00461{bottom:922.880000pt;}
.y2_c00461{bottom:923.520000pt;}
.y4_c00461{bottom:924.800000pt;}
.y1_c00461{bottom:972.800000pt;}
.he_c00461{height:16.126250pt;}
.hf_c00461{height:23.037500pt;}
.hd_c00461{height:27.645000pt;}
.ha_c00461{height:34.556250pt;}
.h8_c00461{height:36.860000pt;}
.h4_c00461{height:39.163750pt;}
.h9_c00461{height:41.467500pt;}
.h6_c00461{height:43.771250pt;}
.h7_c00461{height:46.075000pt;}
.hb_c00461{height:48.378750pt;}
.h10_c00461{height:48.891250pt;}
.h3_c00461{height:50.682500pt;}
.hc_c00461{height:52.986250pt;}
.h5_c00461{height:55.290000pt;}
.h2_c00461{height:57.593750pt;}
.h11_c00461{height:59.897500pt;}
.h12_c00461{height:62.201250pt;}
.h1_c00461{height:1016.000000pt;}
.h0_c00461{height:1016.320000pt;}
.w1_c00461{width:687.333333pt;}
.w0_c00461{width:687.360000pt;}
.x0_c00461{left:0.000000pt;}
.x2_c00461{left:49.280000pt;}
.x25_c00461{left:50.560000pt;}
.x3_c00461{left:115.200000pt;}
.x16_c00461{left:116.480000pt;}
.x17_c00461{left:165.120000pt;}
.x1d_c00461{left:192.000000pt;}
.x4_c00461{left:193.280000pt;}
.x12_c00461{left:231.680000pt;}
.x5_c00461{left:241.920000pt;}
.xd_c00461{left:261.120000pt;}
.x13_c00461{left:270.080000pt;}
.x18_c00461{left:280.320000pt;}
.xe_c00461{left:307.840000pt;}
.x19_c00461{left:309.120000pt;}
.x14_c00461{left:317.440000pt;}
.xb_c00461{left:337.280000pt;}
.xf_c00461{left:346.880000pt;}
.x15_c00461{left:356.480000pt;}
.x1e_c00461{left:357.760000pt;}
.xc_c00461{left:375.680000pt;}
.x1f_c00461{left:473.600000pt;}
.x6_c00461{left:482.560000pt;}
.x10_c00461{left:501.120000pt;}
.x1b_c00461{left:503.040000pt;}
.x11_c00461{left:520.320000pt;}
.x23_c00461{left:542.720000pt;}
.x7_c00461{left:549.760000pt;}
.x1c_c00461{left:551.040000pt;}
.x24_c00461{left:571.520000pt;}
.x8_c00461{left:579.840000pt;}
.x21_c00461{left:588.800000pt;}
.x1_c00461{left:600.320000pt;}
.x20_c00461{left:608.640000pt;}
.x1a_c00461{left:616.960000pt;}
.x9_c00461{left:618.240000pt;}
.xa_c00461{left:635.520000pt;}
.x22_c00461{left:636.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8e479b904bb99cab710c98c6.woff2')format("woff");}.ff1_c00462{font-family:ff1_c00462;line-height:1.109863;font-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_c00462{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m23_c00462{transform:matrix(0.244425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244425,0.000000,0.000000,0.250000,0,0);}
.m12_c00462{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m44_c00462{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m46_c00462{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m47_c00462{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m6_c00462{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.me_c00462{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m17_c00462{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m18_c00462{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m4_c00462{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m2_c00462{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_c00462{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m11_c00462{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.ma_c00462{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m16_c00462{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);}
.m41_c00462{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00462{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m30_c00462{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m35_c00462{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m8_c00462{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m24_c00462{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00462{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00462{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m25_c00462{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00462{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00462{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m5_c00462{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m20_c00462{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m26_c00462{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00462{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m9_c00462{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mb_c00462{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00462{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m15_c00462{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);}
.m27_c00462{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);}
.m32_c00462{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.mc_c00462{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m13_c00462{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m3_c00462{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_c00462{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);}
.m48_c00462{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00462{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);}
.m28_c00462{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m31_c00462{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);}
.m43_c00462{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);}
.m0_c00462{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.md_c00462{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);}
.m19_c00462{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00462{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);}
.m3d_c00462{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00462{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m14_c00462{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);}
.m22_c00462{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m1_c00462{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);}
.m49_c00462{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m37_c00462{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m36_c00462{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00462{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m38_c00462{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00462{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m21_c00462{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);}
.m3e_c00462{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00462{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);}
.m2f_c00462{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00462{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m40_c00462{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00462{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.mf_c00462{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m10_c00462{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m45_c00462{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m34_c00462{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m29_c00462{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m39_c00462{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);}
.m42_c00462{transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);}
.v2_c00462{vertical-align:-2.880000px;}
.v0_c00462{vertical-align:0.000000px;}
.v1_c00462{vertical-align:2.880000px;}
.v3_c00462{vertical-align:8.640000px;}
.ls1_c00462{letter-spacing:0.000000px;}
.ls0_c00462{letter-spacing:45.576960px;}
.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;}
}
.ws6_c00462{word-spacing:0.000000px;}
.ws3_c00462{word-spacing:7.593120px;}
.ws1_c00462{word-spacing:10.946400px;}
.ws0_c00462{word-spacing:14.957055px;}
.ws4_c00462{word-spacing:15.331058px;}
.ws2_c00462{word-spacing:17.731094px;}
.ws5_c00462{word-spacing:21.299725px;}
.fc0_c00462{color:transparent;}
.fs9_c00462{font-size:34.560000px;}
.fs7_c00462{font-size:43.200000px;}
.fsb_c00462{font-size:46.080000px;}
.fs3_c00462{font-size:48.960000px;}
.fs5_c00462{font-size:51.840000px;}
.fs1_c00462{font-size:54.720000px;}
.fs8_c00462{font-size:57.600000px;}
.fsa_c00462{font-size:60.480000px;}
.fs2_c00462{font-size:63.360000px;}
.fs4_c00462{font-size:66.240000px;}
.fs6_c00462{font-size:69.120000px;}
.fs0_c00462{font-size:72.000000px;}
.fsc_c00462{font-size:74.880000px;}
.y0_c00462{bottom:0.000000px;}
.y77_c00462{bottom:48.960000px;}
.y78_c00462{bottom:49.680000px;}
.y76_c00462{bottom:50.400000px;}
.y7a_c00462{bottom:51.120000px;}
.y79_c00462{bottom:51.840000px;}
.y7c_c00462{bottom:52.560000px;}
.y7b_c00462{bottom:53.280000px;}
.y74_c00462{bottom:92.160000px;}
.y73_c00462{bottom:92.880000px;}
.y75_c00462{bottom:95.040000px;}
.y6e_c00462{bottom:123.120000px;}
.y70_c00462{bottom:125.280000px;}
.y6d_c00462{bottom:126.000000px;}
.y6f_c00462{bottom:126.720000px;}
.y72_c00462{bottom:127.440000px;}
.y71_c00462{bottom:128.160000px;}
.y68_c00462{bottom:167.040000px;}
.y6a_c00462{bottom:167.760000px;}
.y69_c00462{bottom:170.640000px;}
.y65_c00462{bottom:198.720000px;}
.y66_c00462{bottom:199.440000px;}
.y64_c00462{bottom:200.160000px;}
.y6b_c00462{bottom:200.880000px;}
.y6c_c00462{bottom:201.600000px;}
.y67_c00462{bottom:203.040000px;}
.y60_c00462{bottom:241.920000px;}
.y5f_c00462{bottom:242.640000px;}
.y62_c00462{bottom:243.360000px;}
.y61_c00462{bottom:245.520000px;}
.y63_c00462{bottom:246.240000px;}
.y5d_c00462{bottom:274.320000px;}
.y5b_c00462{bottom:275.040000px;}
.y5e_c00462{bottom:275.760000px;}
.y5a_c00462{bottom:276.480000px;}
.y5c_c00462{bottom:277.200000px;}
.y56_c00462{bottom:317.520000px;}
.y58_c00462{bottom:318.240000px;}
.y57_c00462{bottom:320.400000px;}
.y59_c00462{bottom:321.120000px;}
.y52_c00462{bottom:348.480000px;}
.y54_c00462{bottom:349.920000px;}
.y55_c00462{bottom:350.640000px;}
.y51_c00462{bottom:351.360000px;}
.y53_c00462{bottom:352.800000px;}
.y4f_c00462{bottom:391.680000px;}
.y4c_c00462{bottom:393.120000px;}
.y50_c00462{bottom:393.840000px;}
.y4b_c00462{bottom:394.560000px;}
.y4d_c00462{bottom:395.280000px;}
.y4e_c00462{bottom:396.000000px;}
.y47_c00462{bottom:436.320000px;}
.y48_c00462{bottom:439.200000px;}
.y45_c00462{bottom:467.280000px;}
.y4a_c00462{bottom:468.720000px;}
.y44_c00462{bottom:469.440000px;}
.y49_c00462{bottom:470.160000px;}
.y46_c00462{bottom:470.880000px;}
.y41_c00462{bottom:510.480000px;}
.y40_c00462{bottom:512.640000px;}
.y42_c00462{bottom:514.080000px;}
.y43_c00462{bottom:514.800000px;}
.y3e_c00462{bottom:552.960000px;}
.y3f_c00462{bottom:553.680000px;}
.y3b_c00462{bottom:554.400000px;}
.y3d_c00462{bottom:555.120000px;}
.y3a_c00462{bottom:555.840000px;}
.y3c_c00462{bottom:557.280000px;}
.y38_c00462{bottom:597.600000px;}
.y39_c00462{bottom:600.480000px;}
.y34_c00462{bottom:629.280000px;}
.y33_c00462{bottom:630.000000px;}
.y37_c00462{bottom:630.720000px;}
.y36_c00462{bottom:632.160000px;}
.y35_c00462{bottom:632.880000px;}
.y30_c00462{bottom:671.040000px;}
.y31_c00462{bottom:672.480000px;}
.y2e_c00462{bottom:673.200000px;}
.y2f_c00462{bottom:673.920000px;}
.y32_c00462{bottom:675.360000px;}
.y2c_c00462{bottom:714.240000px;}
.y2d_c00462{bottom:714.960000px;}
.y29_c00462{bottom:745.920000px;}
.y2b_c00462{bottom:746.640000px;}
.y27_c00462{bottom:747.360000px;}
.y28_c00462{bottom:748.080000px;}
.y2a_c00462{bottom:749.520000px;}
.y25_c00462{bottom:788.400000px;}
.y23_c00462{bottom:789.840000px;}
.y24_c00462{bottom:790.560000px;}
.y26_c00462{bottom:791.280000px;}
.y20_c00462{bottom:830.880000px;}
.y1e_c00462{bottom:831.600000px;}
.y21_c00462{bottom:832.320000px;}
.y1c_c00462{bottom:833.040000px;}
.y1f_c00462{bottom:834.480000px;}
.y1d_c00462{bottom:835.200000px;}
.y22_c00462{bottom:835.920000px;}
.y19_c00462{bottom:873.360000px;}
.y17_c00462{bottom:874.080000px;}
.y1b_c00462{bottom:874.800000px;}
.y1a_c00462{bottom:875.520000px;}
.y15_c00462{bottom:876.240000px;}
.y18_c00462{bottom:877.680000px;}
.y16_c00462{bottom:878.400000px;}
.y14_c00462{bottom:909.360000px;}
.yf_c00462{bottom:917.280000px;}
.y13_c00462{bottom:918.000000px;}
.ye_c00462{bottom:918.720000px;}
.y12_c00462{bottom:919.440000px;}
.y11_c00462{bottom:920.160000px;}
.y10_c00462{bottom:920.880000px;}
.y7_c00462{bottom:960.480000px;}
.yc_c00462{bottom:961.200000px;}
.y6_c00462{bottom:961.920000px;}
.yd_c00462{bottom:964.080000px;}
.y5_c00462{bottom:1002.960000px;}
.y4_c00462{bottom:1004.400000px;}
.yb_c00462{bottom:1006.560000px;}
.y3_c00462{bottom:1046.160000px;}
.ya_c00462{bottom:1046.880000px;}
.y9_c00462{bottom:1047.600000px;}
.y2_c00462{bottom:1048.320000px;}
.y8_c00462{bottom:1049.040000px;}
.y1_c00462{bottom:1105.920000px;}
.hb_c00462{height:31.100625px;}
.h9_c00462{height:38.875781px;}
.hd_c00462{height:41.467500px;}
.h4_c00462{height:44.059219px;}
.h6_c00462{height:46.650937px;}
.h2_c00462{height:49.242656px;}
.h7_c00462{height:49.530938px;}
.ha_c00462{height:51.834375px;}
.hc_c00462{height:54.426094px;}
.h3_c00462{height:57.017812px;}
.h5_c00462{height:59.609531px;}
.h8_c00462{height:62.201250px;}
.h1_c00462{height:64.792969px;}
.he_c00462{height:67.384687px;}
.h0_c00462{height:1152.000000px;}
.w1_c00462{width:767.250000px;}
.w0_c00462{width:767.520000px;}
.x0_c00462{left:0.000000px;}
.x2_c00462{left:43.200000px;}
.x2f_c00462{left:44.640000px;}
.x34_c00462{left:110.160000px;}
.x3_c00462{left:118.800000px;}
.x1e_c00462{left:120.240000px;}
.x11_c00462{left:162.720000px;}
.x19_c00462{left:173.520000px;}
.x28_c00462{left:183.600000px;}
.xa_c00462{left:205.920000px;}
.x31_c00462{left:216.720000px;}
.x1f_c00462{left:227.520000px;}
.x29_c00462{left:238.320000px;}
.x22_c00462{left:248.400000px;}
.x25_c00462{left:259.200000px;}
.xb_c00462{left:260.640000px;}
.x1b_c00462{left:270.720000px;}
.x2a_c00462{left:291.600000px;}
.xc_c00462{left:302.400000px;}
.x27_c00462{left:303.840000px;}
.x18_c00462{left:315.360000px;}
.x2c_c00462{left:324.000000px;}
.x1c_c00462{left:325.440000px;}
.x1a_c00462{left:334.800000px;}
.x23_c00462{left:346.320000px;}
.x12_c00462{left:356.400000px;}
.x2d_c00462{left:378.720000px;}
.x2b_c00462{left:389.520000px;}
.x26_c00462{left:411.120000px;}
.x33_c00462{left:421.920000px;}
.x13_c00462{left:442.800000px;}
.x32_c00462{left:465.120000px;}
.x1d_c00462{left:475.200000px;}
.x30_c00462{left:476.640000px;}
.x24_c00462{left:486.720000px;}
.xd_c00462{left:508.320000px;}
.x35_c00462{left:519.120000px;}
.x4_c00462{left:520.560000px;}
.x9_c00462{left:529.920000px;}
.x14_c00462{left:531.360000px;}
.x15_c00462{left:551.520000px;}
.x5_c00462{left:552.960000px;}
.x2e_c00462{left:562.320000px;}
.xe_c00462{left:563.760000px;}
.x6_c00462{left:573.120000px;}
.xf_c00462{left:578.880000px;}
.x20_c00462{left:606.240000px;}
.x16_c00462{left:607.680000px;}
.x17_c00462{left:640.080000px;}
.x7_c00462{left:650.880000px;}
.x1_c00462{left:660.960000px;}
.x21_c00462{left:673.200000px;}
.x10_c00462{left:682.560000px;}
.x8_c00462{left:684.000000px;}
@media print{
.v2_c00462{vertical-align:-2.560000pt;}
.v0_c00462{vertical-align:0.000000pt;}
.v1_c00462{vertical-align:2.560000pt;}
.v3_c00462{vertical-align:7.680000pt;}
.ls1_c00462{letter-spacing:0.000000pt;}
.ls0_c00462{letter-spacing:40.512853pt;}
.ws6_c00462{word-spacing:0.000000pt;}
.ws3_c00462{word-spacing:6.749440pt;}
.ws1_c00462{word-spacing:9.730133pt;}
.ws0_c00462{word-spacing:13.295160pt;}
.ws4_c00462{word-spacing:13.627607pt;}
.ws2_c00462{word-spacing:15.760973pt;}
.ws5_c00462{word-spacing:18.933089pt;}
.fs9_c00462{font-size:30.720000pt;}
.fs7_c00462{font-size:38.400000pt;}
.fsb_c00462{font-size:40.960000pt;}
.fs3_c00462{font-size:43.520000pt;}
.fs5_c00462{font-size:46.080000pt;}
.fs1_c00462{font-size:48.640000pt;}
.fs8_c00462{font-size:51.200000pt;}
.fsa_c00462{font-size:53.760000pt;}
.fs2_c00462{font-size:56.320000pt;}
.fs4_c00462{font-size:58.880000pt;}
.fs6_c00462{font-size:61.440000pt;}
.fs0_c00462{font-size:64.000000pt;}
.fsc_c00462{font-size:66.560000pt;}
.y0_c00462{bottom:0.000000pt;}
.y77_c00462{bottom:43.520000pt;}
.y78_c00462{bottom:44.160000pt;}
.y76_c00462{bottom:44.800000pt;}
.y7a_c00462{bottom:45.440000pt;}
.y79_c00462{bottom:46.080000pt;}
.y7c_c00462{bottom:46.720000pt;}
.y7b_c00462{bottom:47.360000pt;}
.y74_c00462{bottom:81.920000pt;}
.y73_c00462{bottom:82.560000pt;}
.y75_c00462{bottom:84.480000pt;}
.y6e_c00462{bottom:109.440000pt;}
.y70_c00462{bottom:111.360000pt;}
.y6d_c00462{bottom:112.000000pt;}
.y6f_c00462{bottom:112.640000pt;}
.y72_c00462{bottom:113.280000pt;}
.y71_c00462{bottom:113.920000pt;}
.y68_c00462{bottom:148.480000pt;}
.y6a_c00462{bottom:149.120000pt;}
.y69_c00462{bottom:151.680000pt;}
.y65_c00462{bottom:176.640000pt;}
.y66_c00462{bottom:177.280000pt;}
.y64_c00462{bottom:177.920000pt;}
.y6b_c00462{bottom:178.560000pt;}
.y6c_c00462{bottom:179.200000pt;}
.y67_c00462{bottom:180.480000pt;}
.y60_c00462{bottom:215.040000pt;}
.y5f_c00462{bottom:215.680000pt;}
.y62_c00462{bottom:216.320000pt;}
.y61_c00462{bottom:218.240000pt;}
.y63_c00462{bottom:218.880000pt;}
.y5d_c00462{bottom:243.840000pt;}
.y5b_c00462{bottom:244.480000pt;}
.y5e_c00462{bottom:245.120000pt;}
.y5a_c00462{bottom:245.760000pt;}
.y5c_c00462{bottom:246.400000pt;}
.y56_c00462{bottom:282.240000pt;}
.y58_c00462{bottom:282.880000pt;}
.y57_c00462{bottom:284.800000pt;}
.y59_c00462{bottom:285.440000pt;}
.y52_c00462{bottom:309.760000pt;}
.y54_c00462{bottom:311.040000pt;}
.y55_c00462{bottom:311.680000pt;}
.y51_c00462{bottom:312.320000pt;}
.y53_c00462{bottom:313.600000pt;}
.y4f_c00462{bottom:348.160000pt;}
.y4c_c00462{bottom:349.440000pt;}
.y50_c00462{bottom:350.080000pt;}
.y4b_c00462{bottom:350.720000pt;}
.y4d_c00462{bottom:351.360000pt;}
.y4e_c00462{bottom:352.000000pt;}
.y47_c00462{bottom:387.840000pt;}
.y48_c00462{bottom:390.400000pt;}
.y45_c00462{bottom:415.360000pt;}
.y4a_c00462{bottom:416.640000pt;}
.y44_c00462{bottom:417.280000pt;}
.y49_c00462{bottom:417.920000pt;}
.y46_c00462{bottom:418.560000pt;}
.y41_c00462{bottom:453.760000pt;}
.y40_c00462{bottom:455.680000pt;}
.y42_c00462{bottom:456.960000pt;}
.y43_c00462{bottom:457.600000pt;}
.y3e_c00462{bottom:491.520000pt;}
.y3f_c00462{bottom:492.160000pt;}
.y3b_c00462{bottom:492.800000pt;}
.y3d_c00462{bottom:493.440000pt;}
.y3a_c00462{bottom:494.080000pt;}
.y3c_c00462{bottom:495.360000pt;}
.y38_c00462{bottom:531.200000pt;}
.y39_c00462{bottom:533.760000pt;}
.y34_c00462{bottom:559.360000pt;}
.y33_c00462{bottom:560.000000pt;}
.y37_c00462{bottom:560.640000pt;}
.y36_c00462{bottom:561.920000pt;}
.y35_c00462{bottom:562.560000pt;}
.y30_c00462{bottom:596.480000pt;}
.y31_c00462{bottom:597.760000pt;}
.y2e_c00462{bottom:598.400000pt;}
.y2f_c00462{bottom:599.040000pt;}
.y32_c00462{bottom:600.320000pt;}
.y2c_c00462{bottom:634.880000pt;}
.y2d_c00462{bottom:635.520000pt;}
.y29_c00462{bottom:663.040000pt;}
.y2b_c00462{bottom:663.680000pt;}
.y27_c00462{bottom:664.320000pt;}
.y28_c00462{bottom:664.960000pt;}
.y2a_c00462{bottom:666.240000pt;}
.y25_c00462{bottom:700.800000pt;}
.y23_c00462{bottom:702.080000pt;}
.y24_c00462{bottom:702.720000pt;}
.y26_c00462{bottom:703.360000pt;}
.y20_c00462{bottom:738.560000pt;}
.y1e_c00462{bottom:739.200000pt;}
.y21_c00462{bottom:739.840000pt;}
.y1c_c00462{bottom:740.480000pt;}
.y1f_c00462{bottom:741.760000pt;}
.y1d_c00462{bottom:742.400000pt;}
.y22_c00462{bottom:743.040000pt;}
.y19_c00462{bottom:776.320000pt;}
.y17_c00462{bottom:776.960000pt;}
.y1b_c00462{bottom:777.600000pt;}
.y1a_c00462{bottom:778.240000pt;}
.y15_c00462{bottom:778.880000pt;}
.y18_c00462{bottom:780.160000pt;}
.y16_c00462{bottom:780.800000pt;}
.y14_c00462{bottom:808.320000pt;}
.yf_c00462{bottom:815.360000pt;}
.y13_c00462{bottom:816.000000pt;}
.ye_c00462{bottom:816.640000pt;}
.y12_c00462{bottom:817.280000pt;}
.y11_c00462{bottom:817.920000pt;}
.y10_c00462{bottom:818.560000pt;}
.y7_c00462{bottom:853.760000pt;}
.yc_c00462{bottom:854.400000pt;}
.y6_c00462{bottom:855.040000pt;}
.yd_c00462{bottom:856.960000pt;}
.y5_c00462{bottom:891.520000pt;}
.y4_c00462{bottom:892.800000pt;}
.yb_c00462{bottom:894.720000pt;}
.y3_c00462{bottom:929.920000pt;}
.ya_c00462{bottom:930.560000pt;}
.y9_c00462{bottom:931.200000pt;}
.y2_c00462{bottom:931.840000pt;}
.y8_c00462{bottom:932.480000pt;}
.y1_c00462{bottom:983.040000pt;}
.hb_c00462{height:27.645000pt;}
.h9_c00462{height:34.556250pt;}
.hd_c00462{height:36.860000pt;}
.h4_c00462{height:39.163750pt;}
.h6_c00462{height:41.467500pt;}
.h2_c00462{height:43.771250pt;}
.h7_c00462{height:44.027500pt;}
.ha_c00462{height:46.075000pt;}
.hc_c00462{height:48.378750pt;}
.h3_c00462{height:50.682500pt;}
.h5_c00462{height:52.986250pt;}
.h8_c00462{height:55.290000pt;}
.h1_c00462{height:57.593750pt;}
.he_c00462{height:59.897500pt;}
.h0_c00462{height:1024.000000pt;}
.w1_c00462{width:682.000000pt;}
.w0_c00462{width:682.240000pt;}
.x0_c00462{left:0.000000pt;}
.x2_c00462{left:38.400000pt;}
.x2f_c00462{left:39.680000pt;}
.x34_c00462{left:97.920000pt;}
.x3_c00462{left:105.600000pt;}
.x1e_c00462{left:106.880000pt;}
.x11_c00462{left:144.640000pt;}
.x19_c00462{left:154.240000pt;}
.x28_c00462{left:163.200000pt;}
.xa_c00462{left:183.040000pt;}
.x31_c00462{left:192.640000pt;}
.x1f_c00462{left:202.240000pt;}
.x29_c00462{left:211.840000pt;}
.x22_c00462{left:220.800000pt;}
.x25_c00462{left:230.400000pt;}
.xb_c00462{left:231.680000pt;}
.x1b_c00462{left:240.640000pt;}
.x2a_c00462{left:259.200000pt;}
.xc_c00462{left:268.800000pt;}
.x27_c00462{left:270.080000pt;}
.x18_c00462{left:280.320000pt;}
.x2c_c00462{left:288.000000pt;}
.x1c_c00462{left:289.280000pt;}
.x1a_c00462{left:297.600000pt;}
.x23_c00462{left:307.840000pt;}
.x12_c00462{left:316.800000pt;}
.x2d_c00462{left:336.640000pt;}
.x2b_c00462{left:346.240000pt;}
.x26_c00462{left:365.440000pt;}
.x33_c00462{left:375.040000pt;}
.x13_c00462{left:393.600000pt;}
.x32_c00462{left:413.440000pt;}
.x1d_c00462{left:422.400000pt;}
.x30_c00462{left:423.680000pt;}
.x24_c00462{left:432.640000pt;}
.xd_c00462{left:451.840000pt;}
.x35_c00462{left:461.440000pt;}
.x4_c00462{left:462.720000pt;}
.x9_c00462{left:471.040000pt;}
.x14_c00462{left:472.320000pt;}
.x15_c00462{left:490.240000pt;}
.x5_c00462{left:491.520000pt;}
.x2e_c00462{left:499.840000pt;}
.xe_c00462{left:501.120000pt;}
.x6_c00462{left:509.440000pt;}
.xf_c00462{left:514.560000pt;}
.x20_c00462{left:538.880000pt;}
.x16_c00462{left:540.160000pt;}
.x17_c00462{left:568.960000pt;}
.x7_c00462{left:578.560000pt;}
.x1_c00462{left:587.520000pt;}
.x21_c00462{left:598.400000pt;}
.x10_c00462{left:606.720000pt;}
.x8_c00462{left:608.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_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_38eb04275a73536d903234be.woff2')format("woff");}.ff1_c00463{font-family:ff1_c00463;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00463{transform:matrix(0.246075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246075,0.000000,0.000000,0.250000,0,0);}
.m44_c00463{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m29_c00463{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);}
.m35_c00463{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_c00463{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m23_c00463{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00463{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);}
.m3b_c00463{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m12_c00463{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m33_c00463{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m15_c00463{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m18_c00463{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.md_c00463{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m6_c00463{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m13_c00463{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mc_c00463{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mf_c00463{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m37_c00463{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m2_c00463{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m40_c00463{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00463{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m5_c00463{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);}
.m2e_c00463{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m47_c00463{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m28_c00463{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m25_c00463{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1_c00463{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);}
.m38_c00463{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m41_c00463{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);}
.m8_c00463{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m9_c00463{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);}
.me_c00463{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m14_c00463{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m46_c00463{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m7_c00463{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m16_c00463{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00463{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m36_c00463{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m24_c00463{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);}
.m2b_c00463{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00463{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);}
.m17_c00463{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);}
.ma_c00463{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_c00463{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m3_c00463{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m21_c00463{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);}
.m1d_c00463{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m27_c00463{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m45_c00463{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);}
.m31_c00463{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00463{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);}
.m42_c00463{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00463{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);}
.mb_c00463{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m4_c00463{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m26_c00463{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m22_c00463{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00463{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00463{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m11_c00463{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);}
.m1a_c00463{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00463{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m20_c00463{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m34_c00463{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m43_c00463{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00463{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00463{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);}
.m19_c00463{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00463{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m32_c00463{transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);}
.m48_c00463{transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);}
.m30_c00463{transform:matrix(0.822500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.822500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.822500,0.000000,0.000000,0.250000,0,0);}
.m39_c00463{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.v2_c00463{vertical-align:-5.760000px;}
.v1_c00463{vertical-align:-2.880000px;}
.v0_c00463{vertical-align:0.000000px;}
.ls0_c00463{letter-spacing:0.000000px;}
.sc__c00463{text-shadow:none;}
.sc0_c00463{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00463{-webkit-text-stroke:0px transparent;}
.sc0_c00463{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00463{word-spacing:0.000000px;}
.ws0_c00463{word-spacing:1.463760px;}
.ws2_c00463{word-spacing:19.520649px;}
.ws1_c00463{word-spacing:75.999600px;}
.fc0_c00463{color:transparent;}
.fsd_c00463{font-size:8.640000px;}
.fsb_c00463{font-size:31.680000px;}
.fsa_c00463{font-size:34.560000px;}
.fs8_c00463{font-size:43.200000px;}
.fs5_c00463{font-size:46.080000px;}
.fs6_c00463{font-size:48.960000px;}
.fs3_c00463{font-size:51.840000px;}
.fs4_c00463{font-size:54.720000px;}
.fs7_c00463{font-size:57.600000px;}
.fs2_c00463{font-size:60.480000px;}
.fs1_c00463{font-size:63.360000px;}
.fs9_c00463{font-size:66.240000px;}
.fsc_c00463{font-size:69.120000px;}
.fs0_c00463{font-size:77.760000px;}
.y0_c00463{bottom:0.000000px;}
.y70_c00463{bottom:43.920000px;}
.y73_c00463{bottom:44.640000px;}
.y6f_c00463{bottom:45.360000px;}
.y71_c00463{bottom:46.800000px;}
.y72_c00463{bottom:47.520000px;}
.y6a_c00463{bottom:86.400000px;}
.y6b_c00463{bottom:87.120000px;}
.y6e_c00463{bottom:87.840000px;}
.y69_c00463{bottom:88.560000px;}
.y6c_c00463{bottom:90.000000px;}
.y6d_c00463{bottom:90.720000px;}
.y65_c00463{bottom:130.320000px;}
.y63_c00463{bottom:131.040000px;}
.y67_c00463{bottom:131.760000px;}
.y64_c00463{bottom:132.480000px;}
.y66_c00463{bottom:133.200000px;}
.y68_c00463{bottom:133.920000px;}
.y5f_c00463{bottom:173.520000px;}
.y5e_c00463{bottom:174.240000px;}
.y61_c00463{bottom:174.960000px;}
.y62_c00463{bottom:175.680000px;}
.y60_c00463{bottom:176.400000px;}
.y59_c00463{bottom:216.720000px;}
.y5d_c00463{bottom:217.440000px;}
.y5c_c00463{bottom:218.160000px;}
.y5b_c00463{bottom:218.880000px;}
.y5a_c00463{bottom:219.600000px;}
.y55_c00463{bottom:259.920000px;}
.y54_c00463{bottom:260.640000px;}
.y58_c00463{bottom:261.360000px;}
.y57_c00463{bottom:262.080000px;}
.y56_c00463{bottom:262.800000px;}
.y4f_c00463{bottom:302.400000px;}
.y4e_c00463{bottom:303.120000px;}
.y50_c00463{bottom:303.840000px;}
.y4c_c00463{bottom:304.560000px;}
.y53_c00463{bottom:305.280000px;}
.y51_c00463{bottom:306.000000px;}
.y52_c00463{bottom:306.720000px;}
.y4d_c00463{bottom:308.880000px;}
.y4b_c00463{bottom:345.600000px;}
.y48_c00463{bottom:346.320000px;}
.y46_c00463{bottom:347.040000px;}
.y4a_c00463{bottom:347.760000px;}
.y49_c00463{bottom:348.480000px;}
.y47_c00463{bottom:352.080000px;}
.y43_c00463{bottom:388.800000px;}
.y42_c00463{bottom:389.520000px;}
.y41_c00463{bottom:390.240000px;}
.y45_c00463{bottom:390.960000px;}
.y44_c00463{bottom:391.680000px;}
.y3d_c00463{bottom:432.000000px;}
.y3f_c00463{bottom:432.720000px;}
.y3c_c00463{bottom:433.440000px;}
.y3e_c00463{bottom:434.160000px;}
.y40_c00463{bottom:434.880000px;}
.y38_c00463{bottom:474.480000px;}
.y37_c00463{bottom:475.200000px;}
.y3b_c00463{bottom:475.920000px;}
.y39_c00463{bottom:477.360000px;}
.y3a_c00463{bottom:478.080000px;}
.y35_c00463{bottom:517.680000px;}
.y34_c00463{bottom:518.400000px;}
.y36_c00463{bottom:519.840000px;}
.y31_c00463{bottom:560.160000px;}
.y30_c00463{bottom:560.880000px;}
.y32_c00463{bottom:562.320000px;}
.y33_c00463{bottom:563.040000px;}
.y2d_c00463{bottom:603.360000px;}
.y2c_c00463{bottom:604.080000px;}
.y2e_c00463{bottom:605.520000px;}
.y2f_c00463{bottom:606.240000px;}
.y29_c00463{bottom:645.840000px;}
.y28_c00463{bottom:646.560000px;}
.y27_c00463{bottom:647.280000px;}
.y2b_c00463{bottom:648.000000px;}
.y2a_c00463{bottom:648.720000px;}
.y24_c00463{bottom:689.040000px;}
.y26_c00463{bottom:691.200000px;}
.y25_c00463{bottom:692.640000px;}
.y21_c00463{bottom:721.440000px;}
.y20_c00463{bottom:722.160000px;}
.y23_c00463{bottom:722.880000px;}
.y22_c00463{bottom:723.600000px;}
.y1f_c00463{bottom:766.800000px;}
.y1e_c00463{bottom:767.520000px;}
.y1b_c00463{bottom:796.320000px;}
.y1d_c00463{bottom:797.040000px;}
.y1a_c00463{bottom:797.760000px;}
.y1c_c00463{bottom:798.480000px;}
.y19_c00463{bottom:842.400000px;}
.y18_c00463{bottom:843.120000px;}
.y16_c00463{bottom:871.200000px;}
.y15_c00463{bottom:871.920000px;}
.y14_c00463{bottom:872.640000px;}
.y17_c00463{bottom:874.800000px;}
.y10_c00463{bottom:914.400000px;}
.yf_c00463{bottom:915.120000px;}
.y11_c00463{bottom:916.560000px;}
.y12_c00463{bottom:917.280000px;}
.y13_c00463{bottom:918.000000px;}
.yd_c00463{bottom:956.880000px;}
.yc_c00463{bottom:957.600000px;}
.yb_c00463{bottom:958.320000px;}
.ye_c00463{bottom:959.760000px;}
.y8_c00463{bottom:999.360000px;}
.y6_c00463{bottom:1000.080000px;}
.ya_c00463{bottom:1000.800000px;}
.y7_c00463{bottom:1001.520000px;}
.y9_c00463{bottom:1002.960000px;}
.y3_c00463{bottom:1042.560000px;}
.y2_c00463{bottom:1043.280000px;}
.y4_c00463{bottom:1044.720000px;}
.y5_c00463{bottom:1045.440000px;}
.y1_c00463{bottom:1112.400000px;}
.h10_c00463{height:7.775156px;}
.he_c00463{height:28.508906px;}
.hd_c00463{height:31.100625px;}
.hb_c00463{height:38.875781px;}
.h7_c00463{height:41.467500px;}
.h8_c00463{height:44.059219px;}
.h5_c00463{height:46.650937px;}
.h6_c00463{height:49.242656px;}
.ha_c00463{height:51.546094px;}
.h9_c00463{height:51.834375px;}
.h4_c00463{height:54.426094px;}
.h11_c00463{height:56.441250px;}
.h3_c00463{height:57.017812px;}
.hc_c00463{height:59.609531px;}
.hf_c00463{height:62.201250px;}
.h2_c00463{height:69.976406px;}
.h1_c00463{height:1161.750000px;}
.h0_c00463{height:1162.080000px;}
.w0_c00463{width:780.480000px;}
.w1_c00463{width:780.750000px;}
.x0_c00463{left:0.000000px;}
.x2_c00463{left:44.640000px;}
.x19_c00463{left:97.920000px;}
.x10_c00463{left:119.520000px;}
.x3_c00463{left:120.960000px;}
.xd_c00463{left:174.240000px;}
.x11_c00463{left:185.760000px;}
.x4_c00463{left:206.640000px;}
.xf_c00463{left:228.240000px;}
.x12_c00463{left:239.040000px;}
.x17_c00463{left:249.840000px;}
.x5_c00463{left:260.640000px;}
.xa_c00463{left:271.440000px;}
.x18_c00463{left:304.560000px;}
.x13_c00463{left:314.640000px;}
.xe_c00463{left:325.440000px;}
.x16_c00463{left:357.840000px;}
.x1e_c00463{left:369.360000px;}
.x1b_c00463{left:423.360000px;}
.xb_c00463{left:444.240000px;}
.x1c_c00463{left:465.840000px;}
.x6_c00463{left:520.560000px;}
.x14_c00463{left:574.560000px;}
.x7_c00463{left:608.400000px;}
.xc_c00463{left:618.480000px;}
.x8_c00463{left:640.800000px;}
.x1_c00463{left:665.280000px;}
.x9_c00463{left:673.920000px;}
.x1a_c00463{left:683.280000px;}
.x15_c00463{left:684.720000px;}
.x1d_c00463{left:705.600000px;}
@media print{
.v2_c00463{vertical-align:-5.120000pt;}
.v1_c00463{vertical-align:-2.560000pt;}
.v0_c00463{vertical-align:0.000000pt;}
.ls0_c00463{letter-spacing:0.000000pt;}
.ws3_c00463{word-spacing:0.000000pt;}
.ws0_c00463{word-spacing:1.301120pt;}
.ws2_c00463{word-spacing:17.351688pt;}
.ws1_c00463{word-spacing:67.555200pt;}
.fsd_c00463{font-size:7.680000pt;}
.fsb_c00463{font-size:28.160000pt;}
.fsa_c00463{font-size:30.720000pt;}
.fs8_c00463{font-size:38.400000pt;}
.fs5_c00463{font-size:40.960000pt;}
.fs6_c00463{font-size:43.520000pt;}
.fs3_c00463{font-size:46.080000pt;}
.fs4_c00463{font-size:48.640000pt;}
.fs7_c00463{font-size:51.200000pt;}
.fs2_c00463{font-size:53.760000pt;}
.fs1_c00463{font-size:56.320000pt;}
.fs9_c00463{font-size:58.880000pt;}
.fsc_c00463{font-size:61.440000pt;}
.fs0_c00463{font-size:69.120000pt;}
.y0_c00463{bottom:0.000000pt;}
.y70_c00463{bottom:39.040000pt;}
.y73_c00463{bottom:39.680000pt;}
.y6f_c00463{bottom:40.320000pt;}
.y71_c00463{bottom:41.600000pt;}
.y72_c00463{bottom:42.240000pt;}
.y6a_c00463{bottom:76.800000pt;}
.y6b_c00463{bottom:77.440000pt;}
.y6e_c00463{bottom:78.080000pt;}
.y69_c00463{bottom:78.720000pt;}
.y6c_c00463{bottom:80.000000pt;}
.y6d_c00463{bottom:80.640000pt;}
.y65_c00463{bottom:115.840000pt;}
.y63_c00463{bottom:116.480000pt;}
.y67_c00463{bottom:117.120000pt;}
.y64_c00463{bottom:117.760000pt;}
.y66_c00463{bottom:118.400000pt;}
.y68_c00463{bottom:119.040000pt;}
.y5f_c00463{bottom:154.240000pt;}
.y5e_c00463{bottom:154.880000pt;}
.y61_c00463{bottom:155.520000pt;}
.y62_c00463{bottom:156.160000pt;}
.y60_c00463{bottom:156.800000pt;}
.y59_c00463{bottom:192.640000pt;}
.y5d_c00463{bottom:193.280000pt;}
.y5c_c00463{bottom:193.920000pt;}
.y5b_c00463{bottom:194.560000pt;}
.y5a_c00463{bottom:195.200000pt;}
.y55_c00463{bottom:231.040000pt;}
.y54_c00463{bottom:231.680000pt;}
.y58_c00463{bottom:232.320000pt;}
.y57_c00463{bottom:232.960000pt;}
.y56_c00463{bottom:233.600000pt;}
.y4f_c00463{bottom:268.800000pt;}
.y4e_c00463{bottom:269.440000pt;}
.y50_c00463{bottom:270.080000pt;}
.y4c_c00463{bottom:270.720000pt;}
.y53_c00463{bottom:271.360000pt;}
.y51_c00463{bottom:272.000000pt;}
.y52_c00463{bottom:272.640000pt;}
.y4d_c00463{bottom:274.560000pt;}
.y4b_c00463{bottom:307.200000pt;}
.y48_c00463{bottom:307.840000pt;}
.y46_c00463{bottom:308.480000pt;}
.y4a_c00463{bottom:309.120000pt;}
.y49_c00463{bottom:309.760000pt;}
.y47_c00463{bottom:312.960000pt;}
.y43_c00463{bottom:345.600000pt;}
.y42_c00463{bottom:346.240000pt;}
.y41_c00463{bottom:346.880000pt;}
.y45_c00463{bottom:347.520000pt;}
.y44_c00463{bottom:348.160000pt;}
.y3d_c00463{bottom:384.000000pt;}
.y3f_c00463{bottom:384.640000pt;}
.y3c_c00463{bottom:385.280000pt;}
.y3e_c00463{bottom:385.920000pt;}
.y40_c00463{bottom:386.560000pt;}
.y38_c00463{bottom:421.760000pt;}
.y37_c00463{bottom:422.400000pt;}
.y3b_c00463{bottom:423.040000pt;}
.y39_c00463{bottom:424.320000pt;}
.y3a_c00463{bottom:424.960000pt;}
.y35_c00463{bottom:460.160000pt;}
.y34_c00463{bottom:460.800000pt;}
.y36_c00463{bottom:462.080000pt;}
.y31_c00463{bottom:497.920000pt;}
.y30_c00463{bottom:498.560000pt;}
.y32_c00463{bottom:499.840000pt;}
.y33_c00463{bottom:500.480000pt;}
.y2d_c00463{bottom:536.320000pt;}
.y2c_c00463{bottom:536.960000pt;}
.y2e_c00463{bottom:538.240000pt;}
.y2f_c00463{bottom:538.880000pt;}
.y29_c00463{bottom:574.080000pt;}
.y28_c00463{bottom:574.720000pt;}
.y27_c00463{bottom:575.360000pt;}
.y2b_c00463{bottom:576.000000pt;}
.y2a_c00463{bottom:576.640000pt;}
.y24_c00463{bottom:612.480000pt;}
.y26_c00463{bottom:614.400000pt;}
.y25_c00463{bottom:615.680000pt;}
.y21_c00463{bottom:641.280000pt;}
.y20_c00463{bottom:641.920000pt;}
.y23_c00463{bottom:642.560000pt;}
.y22_c00463{bottom:643.200000pt;}
.y1f_c00463{bottom:681.600000pt;}
.y1e_c00463{bottom:682.240000pt;}
.y1b_c00463{bottom:707.840000pt;}
.y1d_c00463{bottom:708.480000pt;}
.y1a_c00463{bottom:709.120000pt;}
.y1c_c00463{bottom:709.760000pt;}
.y19_c00463{bottom:748.800000pt;}
.y18_c00463{bottom:749.440000pt;}
.y16_c00463{bottom:774.400000pt;}
.y15_c00463{bottom:775.040000pt;}
.y14_c00463{bottom:775.680000pt;}
.y17_c00463{bottom:777.600000pt;}
.y10_c00463{bottom:812.800000pt;}
.yf_c00463{bottom:813.440000pt;}
.y11_c00463{bottom:814.720000pt;}
.y12_c00463{bottom:815.360000pt;}
.y13_c00463{bottom:816.000000pt;}
.yd_c00463{bottom:850.560000pt;}
.yc_c00463{bottom:851.200000pt;}
.yb_c00463{bottom:851.840000pt;}
.ye_c00463{bottom:853.120000pt;}
.y8_c00463{bottom:888.320000pt;}
.y6_c00463{bottom:888.960000pt;}
.ya_c00463{bottom:889.600000pt;}
.y7_c00463{bottom:890.240000pt;}
.y9_c00463{bottom:891.520000pt;}
.y3_c00463{bottom:926.720000pt;}
.y2_c00463{bottom:927.360000pt;}
.y4_c00463{bottom:928.640000pt;}
.y5_c00463{bottom:929.280000pt;}
.y1_c00463{bottom:988.800000pt;}
.h10_c00463{height:6.911250pt;}
.he_c00463{height:25.341250pt;}
.hd_c00463{height:27.645000pt;}
.hb_c00463{height:34.556250pt;}
.h7_c00463{height:36.860000pt;}
.h8_c00463{height:39.163750pt;}
.h5_c00463{height:41.467500pt;}
.h6_c00463{height:43.771250pt;}
.ha_c00463{height:45.818750pt;}
.h9_c00463{height:46.075000pt;}
.h4_c00463{height:48.378750pt;}
.h11_c00463{height:50.170000pt;}
.h3_c00463{height:50.682500pt;}
.hc_c00463{height:52.986250pt;}
.hf_c00463{height:55.290000pt;}
.h2_c00463{height:62.201250pt;}
.h1_c00463{height:1032.666667pt;}
.h0_c00463{height:1032.960000pt;}
.w0_c00463{width:693.760000pt;}
.w1_c00463{width:694.000000pt;}
.x0_c00463{left:0.000000pt;}
.x2_c00463{left:39.680000pt;}
.x19_c00463{left:87.040000pt;}
.x10_c00463{left:106.240000pt;}
.x3_c00463{left:107.520000pt;}
.xd_c00463{left:154.880000pt;}
.x11_c00463{left:165.120000pt;}
.x4_c00463{left:183.680000pt;}
.xf_c00463{left:202.880000pt;}
.x12_c00463{left:212.480000pt;}
.x17_c00463{left:222.080000pt;}
.x5_c00463{left:231.680000pt;}
.xa_c00463{left:241.280000pt;}
.x18_c00463{left:270.720000pt;}
.x13_c00463{left:279.680000pt;}
.xe_c00463{left:289.280000pt;}
.x16_c00463{left:318.080000pt;}
.x1e_c00463{left:328.320000pt;}
.x1b_c00463{left:376.320000pt;}
.xb_c00463{left:394.880000pt;}
.x1c_c00463{left:414.080000pt;}
.x6_c00463{left:462.720000pt;}
.x14_c00463{left:510.720000pt;}
.x7_c00463{left:540.800000pt;}
.xc_c00463{left:549.760000pt;}
.x8_c00463{left:569.600000pt;}
.x1_c00463{left:591.360000pt;}
.x9_c00463{left:599.040000pt;}
.x1a_c00463{left:607.360000pt;}
.x15_c00463{left:608.640000pt;}
.x1d_c00463{left:627.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f23708827dc61d3a7119295f.woff2')format("woff");}.ff1_c00464{font-family:ff1_c00464;line-height:1.109863;font-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_c00464{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m9_c00464{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m36_c00464{transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);}
.m2a_c00464{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m24_c00464{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.ma_c00464{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);}
.m31_c00464{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00464{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);}
.m35_c00464{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m12_c00464{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m17_c00464{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00464{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m23_c00464{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00464{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mb_c00464{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00464{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m16_c00464{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.md_c00464{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00464{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m40_c00464{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m11_c00464{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00464{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00464{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m2_c00464{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m14_c00464{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m8_c00464{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m7_c00464{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m0_c00464{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00464{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m20_c00464{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m19_c00464{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1_c00464{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);}
.m30_c00464{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00464{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);}
.m29_c00464{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00464{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);}
.m2d_c00464{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m18_c00464{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00464{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.mc_c00464{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);}
.m21_c00464{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m10_c00464{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m28_c00464{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00464{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);}
.m39_c00464{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m13_c00464{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);}
.m38_c00464{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m41_c00464{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);}
.m3_c00464{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m27_c00464{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m22_c00464{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m42_c00464{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00464{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00464{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m34_c00464{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00464{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m33_c00464{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.me_c00464{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.mf_c00464{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m5_c00464{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m4_c00464{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m15_c00464{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00464{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m43_c00464{transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);}
.m26_c00464{transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);}
.m37_c00464{transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);}
.m32_c00464{transform:matrix(0.817500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.817500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.817500,0.000000,0.000000,0.250000,0,0);}
.m6_c00464{transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);}
.v2_c00464{vertical-align:-8.640000px;}
.v1_c00464{vertical-align:-2.880000px;}
.v0_c00464{vertical-align:0.000000px;}
.ls0_c00464{letter-spacing:0.000000px;}
.sc__c00464{text-shadow:none;}
.sc0_c00464{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00464{-webkit-text-stroke:0px transparent;}
.sc0_c00464{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00464{word-spacing:0.000000px;}
.ws0_c00464{word-spacing:14.041200px;}
.ws2_c00464{word-spacing:20.419102px;}
.ws1_c00464{word-spacing:180.193200px;}
.fc0_c00464{color:transparent;}
.fsc_c00464{font-size:31.680000px;}
.fs4_c00464{font-size:34.560000px;}
.fsb_c00464{font-size:43.200000px;}
.fs5_c00464{font-size:46.080000px;}
.fs3_c00464{font-size:48.960000px;}
.fs6_c00464{font-size:51.840000px;}
.fs8_c00464{font-size:54.720000px;}
.fs9_c00464{font-size:57.600000px;}
.fs2_c00464{font-size:60.480000px;}
.fs1_c00464{font-size:63.360000px;}
.fs7_c00464{font-size:66.240000px;}
.fsa_c00464{font-size:69.120000px;}
.fs0_c00464{font-size:77.760000px;}
.y0_c00464{bottom:0.000000px;}
.y6c_c00464{bottom:58.320000px;}
.y6e_c00464{bottom:60.480000px;}
.y6d_c00464{bottom:61.920000px;}
.y68_c00464{bottom:91.440000px;}
.y66_c00464{bottom:92.160000px;}
.y6a_c00464{bottom:92.880000px;}
.y67_c00464{bottom:93.600000px;}
.y69_c00464{bottom:94.320000px;}
.y6b_c00464{bottom:95.040000px;}
.y65_c00464{bottom:136.080000px;}
.y64_c00464{bottom:136.800000px;}
.y5f_c00464{bottom:166.320000px;}
.y5e_c00464{bottom:167.040000px;}
.y62_c00464{bottom:168.480000px;}
.y60_c00464{bottom:169.200000px;}
.y61_c00464{bottom:169.920000px;}
.y63_c00464{bottom:170.640000px;}
.y5c_c00464{bottom:209.520000px;}
.y5d_c00464{bottom:211.680000px;}
.y58_c00464{bottom:241.200000px;}
.y5a_c00464{bottom:241.920000px;}
.y57_c00464{bottom:242.640000px;}
.y59_c00464{bottom:244.080000px;}
.y5b_c00464{bottom:244.800000px;}
.y54_c00464{bottom:285.120000px;}
.y55_c00464{bottom:286.560000px;}
.y56_c00464{bottom:287.280000px;}
.y50_c00464{bottom:316.080000px;}
.y51_c00464{bottom:316.800000px;}
.y4f_c00464{bottom:317.520000px;}
.y52_c00464{bottom:319.680000px;}
.y53_c00464{bottom:320.400000px;}
.y4d_c00464{bottom:360.000000px;}
.y4e_c00464{bottom:362.160000px;}
.y49_c00464{bottom:391.680000px;}
.y4c_c00464{bottom:392.400000px;}
.y48_c00464{bottom:393.120000px;}
.y4b_c00464{bottom:393.840000px;}
.y4a_c00464{bottom:394.560000px;}
.y47_c00464{bottom:437.760000px;}
.y45_c00464{bottom:467.280000px;}
.y44_c00464{bottom:468.000000px;}
.y46_c00464{bottom:470.160000px;}
.y43_c00464{bottom:512.640000px;}
.y42_c00464{bottom:513.360000px;}
.y3e_c00464{bottom:542.880000px;}
.y3d_c00464{bottom:543.600000px;}
.y41_c00464{bottom:544.320000px;}
.y3f_c00464{bottom:545.040000px;}
.y40_c00464{bottom:545.760000px;}
.y3b_c00464{bottom:586.080000px;}
.y3a_c00464{bottom:586.800000px;}
.y3c_c00464{bottom:588.240000px;}
.y37_c00464{bottom:628.560000px;}
.y35_c00464{bottom:629.280000px;}
.y36_c00464{bottom:630.000000px;}
.y38_c00464{bottom:631.440000px;}
.y39_c00464{bottom:632.160000px;}
.y33_c00464{bottom:671.760000px;}
.y31_c00464{bottom:672.480000px;}
.y32_c00464{bottom:673.920000px;}
.y34_c00464{bottom:674.640000px;}
.y30_c00464{bottom:713.520000px;}
.y2c_c00464{bottom:714.960000px;}
.y2d_c00464{bottom:715.680000px;}
.y2f_c00464{bottom:716.400000px;}
.y2e_c00464{bottom:717.120000px;}
.y28_c00464{bottom:756.000000px;}
.y27_c00464{bottom:756.720000px;}
.y26_c00464{bottom:758.160000px;}
.y2a_c00464{bottom:758.880000px;}
.y29_c00464{bottom:759.600000px;}
.y2b_c00464{bottom:760.320000px;}
.y22_c00464{bottom:799.920000px;}
.y21_c00464{bottom:800.640000px;}
.y24_c00464{bottom:801.360000px;}
.y23_c00464{bottom:802.080000px;}
.y25_c00464{bottom:802.800000px;}
.y1d_c00464{bottom:842.400000px;}
.y1f_c00464{bottom:843.120000px;}
.y1e_c00464{bottom:844.560000px;}
.y20_c00464{bottom:845.280000px;}
.y1a_c00464{bottom:884.160000px;}
.y19_c00464{bottom:884.880000px;}
.y18_c00464{bottom:885.600000px;}
.y1b_c00464{bottom:887.040000px;}
.y1c_c00464{bottom:887.760000px;}
.y14_c00464{bottom:927.360000px;}
.y13_c00464{bottom:928.080000px;}
.y12_c00464{bottom:928.800000px;}
.y16_c00464{bottom:929.520000px;}
.y15_c00464{bottom:930.240000px;}
.y17_c00464{bottom:930.960000px;}
.ye_c00464{bottom:970.560000px;}
.yd_c00464{bottom:971.280000px;}
.yc_c00464{bottom:972.000000px;}
.y10_c00464{bottom:972.720000px;}
.yf_c00464{bottom:973.440000px;}
.y11_c00464{bottom:974.160000px;}
.yb_c00464{bottom:1013.040000px;}
.y8_c00464{bottom:1013.760000px;}
.y7_c00464{bottom:1014.480000px;}
.ya_c00464{bottom:1015.200000px;}
.y9_c00464{bottom:1015.920000px;}
.y6_c00464{bottom:1056.240000px;}
.y3_c00464{bottom:1056.960000px;}
.y2_c00464{bottom:1057.680000px;}
.y5_c00464{bottom:1059.120000px;}
.y4_c00464{bottom:1059.840000px;}
.y1_c00464{bottom:1118.160000px;}
.he_c00464{height:28.508906px;}
.h6_c00464{height:31.100625px;}
.hd_c00464{height:38.875781px;}
.h7_c00464{height:41.467500px;}
.h5_c00464{height:44.059219px;}
.h8_c00464{height:46.650937px;}
.ha_c00464{height:49.242656px;}
.hb_c00464{height:51.834375px;}
.h4_c00464{height:54.426094px;}
.h3_c00464{height:57.017812px;}
.h9_c00464{height:59.609531px;}
.hc_c00464{height:62.201250px;}
.h2_c00464{height:69.976406px;}
.h0_c00464{height:1160.640000px;}
.h1_c00464{height:1161.000000px;}
.w0_c00464{width:779.760000px;}
.w1_c00464{width:780.000000px;}
.x0_c00464{left:0.000000px;}
.x2_c00464{left:47.520000px;}
.x3_c00464{left:123.840000px;}
.x1d_c00464{left:155.520000px;}
.x1b_c00464{left:177.840000px;}
.x4_c00464{left:209.520000px;}
.x1c_c00464{left:210.960000px;}
.x1f_c00464{left:221.040000px;}
.xd_c00464{left:253.440000px;}
.x11_c00464{left:263.520000px;}
.x5_c00464{left:274.320000px;}
.x20_c00464{left:275.760000px;}
.xe_c00464{left:307.440000px;}
.x12_c00464{left:318.240000px;}
.x6_c00464{left:329.040000px;}
.x21_c00464{left:330.480000px;}
.xf_c00464{left:361.440000px;}
.x7_c00464{left:371.520000px;}
.x18_c00464{left:372.960000px;}
.x10_c00464{left:404.640000px;}
.x1a_c00464{left:447.840000px;}
.x1e_c00464{left:459.360000px;}
.x8_c00464{left:522.720000px;}
.x13_c00464{left:524.880000px;}
.x9_c00464{left:577.440000px;}
.x14_c00464{left:611.280000px;}
.xa_c00464{left:635.040000px;}
.x15_c00464{left:644.400000px;}
.xb_c00464{left:654.480000px;}
.x1_c00464{left:663.840000px;}
.x16_c00464{left:677.520000px;}
.xc_c00464{left:687.600000px;}
.x19_c00464{left:689.040000px;}
.x17_c00464{left:708.480000px;}
@media print{
.v2_c00464{vertical-align:-7.680000pt;}
.v1_c00464{vertical-align:-2.560000pt;}
.v0_c00464{vertical-align:0.000000pt;}
.ls0_c00464{letter-spacing:0.000000pt;}
.ws3_c00464{word-spacing:0.000000pt;}
.ws0_c00464{word-spacing:12.481067pt;}
.ws2_c00464{word-spacing:18.150313pt;}
.ws1_c00464{word-spacing:160.171733pt;}
.fsc_c00464{font-size:28.160000pt;}
.fs4_c00464{font-size:30.720000pt;}
.fsb_c00464{font-size:38.400000pt;}
.fs5_c00464{font-size:40.960000pt;}
.fs3_c00464{font-size:43.520000pt;}
.fs6_c00464{font-size:46.080000pt;}
.fs8_c00464{font-size:48.640000pt;}
.fs9_c00464{font-size:51.200000pt;}
.fs2_c00464{font-size:53.760000pt;}
.fs1_c00464{font-size:56.320000pt;}
.fs7_c00464{font-size:58.880000pt;}
.fsa_c00464{font-size:61.440000pt;}
.fs0_c00464{font-size:69.120000pt;}
.y0_c00464{bottom:0.000000pt;}
.y6c_c00464{bottom:51.840000pt;}
.y6e_c00464{bottom:53.760000pt;}
.y6d_c00464{bottom:55.040000pt;}
.y68_c00464{bottom:81.280000pt;}
.y66_c00464{bottom:81.920000pt;}
.y6a_c00464{bottom:82.560000pt;}
.y67_c00464{bottom:83.200000pt;}
.y69_c00464{bottom:83.840000pt;}
.y6b_c00464{bottom:84.480000pt;}
.y65_c00464{bottom:120.960000pt;}
.y64_c00464{bottom:121.600000pt;}
.y5f_c00464{bottom:147.840000pt;}
.y5e_c00464{bottom:148.480000pt;}
.y62_c00464{bottom:149.760000pt;}
.y60_c00464{bottom:150.400000pt;}
.y61_c00464{bottom:151.040000pt;}
.y63_c00464{bottom:151.680000pt;}
.y5c_c00464{bottom:186.240000pt;}
.y5d_c00464{bottom:188.160000pt;}
.y58_c00464{bottom:214.400000pt;}
.y5a_c00464{bottom:215.040000pt;}
.y57_c00464{bottom:215.680000pt;}
.y59_c00464{bottom:216.960000pt;}
.y5b_c00464{bottom:217.600000pt;}
.y54_c00464{bottom:253.440000pt;}
.y55_c00464{bottom:254.720000pt;}
.y56_c00464{bottom:255.360000pt;}
.y50_c00464{bottom:280.960000pt;}
.y51_c00464{bottom:281.600000pt;}
.y4f_c00464{bottom:282.240000pt;}
.y52_c00464{bottom:284.160000pt;}
.y53_c00464{bottom:284.800000pt;}
.y4d_c00464{bottom:320.000000pt;}
.y4e_c00464{bottom:321.920000pt;}
.y49_c00464{bottom:348.160000pt;}
.y4c_c00464{bottom:348.800000pt;}
.y48_c00464{bottom:349.440000pt;}
.y4b_c00464{bottom:350.080000pt;}
.y4a_c00464{bottom:350.720000pt;}
.y47_c00464{bottom:389.120000pt;}
.y45_c00464{bottom:415.360000pt;}
.y44_c00464{bottom:416.000000pt;}
.y46_c00464{bottom:417.920000pt;}
.y43_c00464{bottom:455.680000pt;}
.y42_c00464{bottom:456.320000pt;}
.y3e_c00464{bottom:482.560000pt;}
.y3d_c00464{bottom:483.200000pt;}
.y41_c00464{bottom:483.840000pt;}
.y3f_c00464{bottom:484.480000pt;}
.y40_c00464{bottom:485.120000pt;}
.y3b_c00464{bottom:520.960000pt;}
.y3a_c00464{bottom:521.600000pt;}
.y3c_c00464{bottom:522.880000pt;}
.y37_c00464{bottom:558.720000pt;}
.y35_c00464{bottom:559.360000pt;}
.y36_c00464{bottom:560.000000pt;}
.y38_c00464{bottom:561.280000pt;}
.y39_c00464{bottom:561.920000pt;}
.y33_c00464{bottom:597.120000pt;}
.y31_c00464{bottom:597.760000pt;}
.y32_c00464{bottom:599.040000pt;}
.y34_c00464{bottom:599.680000pt;}
.y30_c00464{bottom:634.240000pt;}
.y2c_c00464{bottom:635.520000pt;}
.y2d_c00464{bottom:636.160000pt;}
.y2f_c00464{bottom:636.800000pt;}
.y2e_c00464{bottom:637.440000pt;}
.y28_c00464{bottom:672.000000pt;}
.y27_c00464{bottom:672.640000pt;}
.y26_c00464{bottom:673.920000pt;}
.y2a_c00464{bottom:674.560000pt;}
.y29_c00464{bottom:675.200000pt;}
.y2b_c00464{bottom:675.840000pt;}
.y22_c00464{bottom:711.040000pt;}
.y21_c00464{bottom:711.680000pt;}
.y24_c00464{bottom:712.320000pt;}
.y23_c00464{bottom:712.960000pt;}
.y25_c00464{bottom:713.600000pt;}
.y1d_c00464{bottom:748.800000pt;}
.y1f_c00464{bottom:749.440000pt;}
.y1e_c00464{bottom:750.720000pt;}
.y20_c00464{bottom:751.360000pt;}
.y1a_c00464{bottom:785.920000pt;}
.y19_c00464{bottom:786.560000pt;}
.y18_c00464{bottom:787.200000pt;}
.y1b_c00464{bottom:788.480000pt;}
.y1c_c00464{bottom:789.120000pt;}
.y14_c00464{bottom:824.320000pt;}
.y13_c00464{bottom:824.960000pt;}
.y12_c00464{bottom:825.600000pt;}
.y16_c00464{bottom:826.240000pt;}
.y15_c00464{bottom:826.880000pt;}
.y17_c00464{bottom:827.520000pt;}
.ye_c00464{bottom:862.720000pt;}
.yd_c00464{bottom:863.360000pt;}
.yc_c00464{bottom:864.000000pt;}
.y10_c00464{bottom:864.640000pt;}
.yf_c00464{bottom:865.280000pt;}
.y11_c00464{bottom:865.920000pt;}
.yb_c00464{bottom:900.480000pt;}
.y8_c00464{bottom:901.120000pt;}
.y7_c00464{bottom:901.760000pt;}
.ya_c00464{bottom:902.400000pt;}
.y9_c00464{bottom:903.040000pt;}
.y6_c00464{bottom:938.880000pt;}
.y3_c00464{bottom:939.520000pt;}
.y2_c00464{bottom:940.160000pt;}
.y5_c00464{bottom:941.440000pt;}
.y4_c00464{bottom:942.080000pt;}
.y1_c00464{bottom:993.920000pt;}
.he_c00464{height:25.341250pt;}
.h6_c00464{height:27.645000pt;}
.hd_c00464{height:34.556250pt;}
.h7_c00464{height:36.860000pt;}
.h5_c00464{height:39.163750pt;}
.h8_c00464{height:41.467500pt;}
.ha_c00464{height:43.771250pt;}
.hb_c00464{height:46.075000pt;}
.h4_c00464{height:48.378750pt;}
.h3_c00464{height:50.682500pt;}
.h9_c00464{height:52.986250pt;}
.hc_c00464{height:55.290000pt;}
.h2_c00464{height:62.201250pt;}
.h0_c00464{height:1031.680000pt;}
.h1_c00464{height:1032.000000pt;}
.w0_c00464{width:693.120000pt;}
.w1_c00464{width:693.333333pt;}
.x0_c00464{left:0.000000pt;}
.x2_c00464{left:42.240000pt;}
.x3_c00464{left:110.080000pt;}
.x1d_c00464{left:138.240000pt;}
.x1b_c00464{left:158.080000pt;}
.x4_c00464{left:186.240000pt;}
.x1c_c00464{left:187.520000pt;}
.x1f_c00464{left:196.480000pt;}
.xd_c00464{left:225.280000pt;}
.x11_c00464{left:234.240000pt;}
.x5_c00464{left:243.840000pt;}
.x20_c00464{left:245.120000pt;}
.xe_c00464{left:273.280000pt;}
.x12_c00464{left:282.880000pt;}
.x6_c00464{left:292.480000pt;}
.x21_c00464{left:293.760000pt;}
.xf_c00464{left:321.280000pt;}
.x7_c00464{left:330.240000pt;}
.x18_c00464{left:331.520000pt;}
.x10_c00464{left:359.680000pt;}
.x1a_c00464{left:398.080000pt;}
.x1e_c00464{left:408.320000pt;}
.x8_c00464{left:464.640000pt;}
.x13_c00464{left:466.560000pt;}
.x9_c00464{left:513.280000pt;}
.x14_c00464{left:543.360000pt;}
.xa_c00464{left:564.480000pt;}
.x15_c00464{left:572.800000pt;}
.xb_c00464{left:581.760000pt;}
.x1_c00464{left:590.080000pt;}
.x16_c00464{left:602.240000pt;}
.xc_c00464{left:611.200000pt;}
.x19_c00464{left:612.480000pt;}
.x17_c00464{left:629.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_507a31a16796174b023aa58e.woff2')format("woff");}.ff1_c00465{font-family:ff1_c00465;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3a_c00465{transform:matrix(0.192375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192375,0.000000,0.000000,0.250000,0,0);}
.m42_c00465{transform:matrix(0.233875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233875,0.000000,0.000000,0.250000,0,0);}
.m37_c00465{transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);}
.m7_c00465{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.ma_c00465{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);}
.m3f_c00465{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_c00465{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m12_c00465{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00465{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m11_c00465{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00465{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00465{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);}
.m32_c00465{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);}
.m25_c00465{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m9_c00465{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m13_c00465{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m30_c00465{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m23_c00465{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m39_c00465{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00465{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m34_c00465{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m0_c00465{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m6_c00465{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m8_c00465{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00465{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m16_c00465{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.md_c00465{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m33_c00465{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m24_c00465{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);}
.m45_c00465{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.mf_c00465{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m5_c00465{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);}
.m3b_c00465{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m19_c00465{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);}
.m2e_c00465{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m20_c00465{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1_c00465{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m2_c00465{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);}
.m2a_c00465{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);}
.m31_c00465{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00465{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m35_c00465{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m28_c00465{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);}
.m2d_c00465{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);}
.m3_c00465{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m21_c00465{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.me_c00465{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);}
.m1e_c00465{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m44_c00465{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);}
.m29_c00465{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m38_c00465{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m4_c00465{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m22_c00465{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00465{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);}
.m26_c00465{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);}
.m1d_c00465{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m15_c00465{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.mb_c00465{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.mc_c00465{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m10_c00465{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m41_c00465{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);}
.m2c_c00465{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m27_c00465{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);}
.m14_c00465{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m18_c00465{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00465{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00465{transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);}
.m40_c00465{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.m43_c00465{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.m36_c00465{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.v0_c00465{vertical-align:0.000000px;}
.ls0_c00465{letter-spacing:0.000000px;}
.sc__c00465{text-shadow:none;}
.sc0_c00465{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00465{-webkit-text-stroke:0px transparent;}
.sc0_c00465{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00465{word-spacing:0.000000px;}
.fc0_c00465{color:transparent;}
.fsd_c00465{font-size:11.520000px;}
.fsb_c00465{font-size:20.160000px;}
.fs6_c00465{font-size:34.560000px;}
.fsc_c00465{font-size:37.440000px;}
.fs3_c00465{font-size:43.200000px;}
.fs9_c00465{font-size:46.080000px;}
.fs2_c00465{font-size:48.960000px;}
.fs4_c00465{font-size:51.840000px;}
.fs5_c00465{font-size:54.720000px;}
.fs8_c00465{font-size:57.600000px;}
.fs1_c00465{font-size:60.480000px;}
.fsf_c00465{font-size:63.360000px;}
.fs7_c00465{font-size:66.240000px;}
.fsa_c00465{font-size:69.120000px;}
.fs10_c00465{font-size:72.000000px;}
.fs0_c00465{font-size:74.880000px;}
.fs11_c00465{font-size:89.280000px;}
.fse_c00465{font-size:92.160000px;}
.y0_c00465{bottom:0.000000px;}
.y6d_c00465{bottom:73.440000px;}
.y6e_c00465{bottom:74.160000px;}
.y6c_c00465{bottom:74.880000px;}
.y72_c00465{bottom:75.600000px;}
.y6f_c00465{bottom:77.040000px;}
.y70_c00465{bottom:77.760000px;}
.y71_c00465{bottom:78.480000px;}
.y68_c00465{bottom:117.360000px;}
.y6b_c00465{bottom:118.080000px;}
.y67_c00465{bottom:118.800000px;}
.y6a_c00465{bottom:119.520000px;}
.y69_c00465{bottom:120.240000px;}
.y64_c00465{bottom:153.360000px;}
.y62_c00465{bottom:160.560000px;}
.y65_c00465{bottom:162.000000px;}
.y61_c00465{bottom:162.720000px;}
.y63_c00465{bottom:163.440000px;}
.y66_c00465{bottom:164.160000px;}
.y5f_c00465{bottom:203.760000px;}
.y60_c00465{bottom:206.640000px;}
.y5c_c00465{bottom:234.720000px;}
.y5b_c00465{bottom:236.880000px;}
.y5e_c00465{bottom:237.600000px;}
.y5a_c00465{bottom:238.320000px;}
.y5d_c00465{bottom:239.040000px;}
.y55_c00465{bottom:279.360000px;}
.y59_c00465{bottom:280.080000px;}
.y54_c00465{bottom:280.800000px;}
.y57_c00465{bottom:281.520000px;}
.y56_c00465{bottom:282.240000px;}
.y58_c00465{bottom:282.960000px;}
.y52_c00465{bottom:322.560000px;}
.y50_c00465{bottom:323.280000px;}
.y53_c00465{bottom:324.000000px;}
.y51_c00465{bottom:325.440000px;}
.y4e_c00465{bottom:357.120000px;}
.y4c_c00465{bottom:365.760000px;}
.y4b_c00465{bottom:366.480000px;}
.y4f_c00465{bottom:367.200000px;}
.y4d_c00465{bottom:367.920000px;}
.y49_c00465{bottom:401.040000px;}
.y46_c00465{bottom:408.960000px;}
.y4a_c00465{bottom:409.680000px;}
.y44_c00465{bottom:410.400000px;}
.y48_c00465{bottom:411.120000px;}
.y47_c00465{bottom:411.840000px;}
.y45_c00465{bottom:414.720000px;}
.y42_c00465{bottom:453.600000px;}
.y43_c00465{bottom:454.320000px;}
.y3f_c00465{bottom:483.840000px;}
.y3e_c00465{bottom:484.560000px;}
.y40_c00465{bottom:486.720000px;}
.y41_c00465{bottom:487.440000px;}
.y3c_c00465{bottom:527.040000px;}
.y3d_c00465{bottom:529.200000px;}
.y38_c00465{bottom:558.720000px;}
.y37_c00465{bottom:559.440000px;}
.y39_c00465{bottom:560.880000px;}
.y3a_c00465{bottom:561.600000px;}
.y3b_c00465{bottom:562.320000px;}
.y36_c00465{bottom:601.200000px;}
.y35_c00465{bottom:604.080000px;}
.y31_c00465{bottom:632.880000px;}
.y30_c00465{bottom:633.600000px;}
.y2f_c00465{bottom:634.320000px;}
.y32_c00465{bottom:635.760000px;}
.y34_c00465{bottom:636.480000px;}
.y33_c00465{bottom:637.200000px;}
.y2b_c00465{bottom:676.080000px;}
.y2c_c00465{bottom:676.800000px;}
.y2a_c00465{bottom:677.520000px;}
.y2d_c00465{bottom:678.960000px;}
.y2e_c00465{bottom:679.680000px;}
.y28_c00465{bottom:719.280000px;}
.y27_c00465{bottom:722.160000px;}
.y29_c00465{bottom:722.880000px;}
.y23_c00465{bottom:751.680000px;}
.y22_c00465{bottom:753.120000px;}
.y24_c00465{bottom:753.840000px;}
.y25_c00465{bottom:754.560000px;}
.y26_c00465{bottom:755.280000px;}
.y1f_c00465{bottom:794.880000px;}
.y21_c00465{bottom:797.040000px;}
.y20_c00465{bottom:797.760000px;}
.y1b_c00465{bottom:827.280000px;}
.y1d_c00465{bottom:828.000000px;}
.y19_c00465{bottom:828.720000px;}
.y1c_c00465{bottom:829.440000px;}
.y1a_c00465{bottom:830.160000px;}
.y1e_c00465{bottom:830.880000px;}
.y17_c00465{bottom:870.480000px;}
.y16_c00465{bottom:871.920000px;}
.y18_c00465{bottom:872.640000px;}
.y13_c00465{bottom:901.440000px;}
.y12_c00465{bottom:902.160000px;}
.y11_c00465{bottom:902.880000px;}
.y14_c00465{bottom:905.040000px;}
.y15_c00465{bottom:905.760000px;}
.yf_c00465{bottom:945.360000px;}
.y10_c00465{bottom:947.520000px;}
.ye_c00465{bottom:948.240000px;}
.ya_c00465{bottom:977.040000px;}
.y9_c00465{bottom:977.760000px;}
.yd_c00465{bottom:978.480000px;}
.yc_c00465{bottom:979.200000px;}
.yb_c00465{bottom:979.920000px;}
.y8_c00465{bottom:1022.400000px;}
.y4_c00465{bottom:1051.920000px;}
.y2_c00465{bottom:1052.640000px;}
.y7_c00465{bottom:1053.360000px;}
.y3_c00465{bottom:1054.800000px;}
.y6_c00465{bottom:1055.520000px;}
.y5_c00465{bottom:1056.240000px;}
.y1_c00465{bottom:1119.600000px;}
.hf_c00465{height:10.366875px;}
.hd_c00465{height:18.142031px;}
.h8_c00465{height:31.100625px;}
.he_c00465{height:33.692344px;}
.h5_c00465{height:38.875781px;}
.hb_c00465{height:41.467500px;}
.h4_c00465{height:44.059219px;}
.h6_c00465{height:46.650937px;}
.h7_c00465{height:49.242656px;}
.ha_c00465{height:51.834375px;}
.h3_c00465{height:54.426094px;}
.h11_c00465{height:57.017812px;}
.h9_c00465{height:59.609531px;}
.hc_c00465{height:62.201250px;}
.h12_c00465{height:64.792969px;}
.h2_c00465{height:67.384687px;}
.h13_c00465{height:80.343281px;}
.h10_c00465{height:82.935000px;}
.h1_c00465{height:1164.000000px;}
.h0_c00465{height:1164.240000px;}
.w1_c00465{width:783.750000px;}
.w0_c00465{width:784.080000px;}
.x0_c00465{left:0.000000px;}
.x2_c00465{left:54.720000px;}
.x24_c00465{left:108.000000px;}
.x21_c00465{left:118.080000px;}
.x14_c00465{left:120.960000px;}
.x22_c00465{left:129.600000px;}
.x3_c00465{left:131.040000px;}
.x29_c00465{left:174.240000px;}
.xc_c00465{left:185.760000px;}
.x4_c00465{left:216.720000px;}
.x15_c00465{left:218.160000px;}
.x1b_c00465{left:226.800000px;}
.x23_c00465{left:228.960000px;}
.x1d_c00465{left:260.640000px;}
.x16_c00465{left:271.440000px;}
.x5_c00465{left:281.520000px;}
.x2d_c00465{left:291.600000px;}
.x1e_c00465{left:313.200000px;}
.xe_c00465{left:314.640000px;}
.x17_c00465{left:325.440000px;}
.x6_c00465{left:336.240000px;}
.x2e_c00465{left:347.040000px;}
.x1f_c00465{left:358.560000px;}
.xf_c00465{left:368.640000px;}
.x1c_c00465{left:380.160000px;}
.x2a_c00465{left:390.240000px;}
.x20_c00465{left:400.320000px;}
.x18_c00465{left:411.120000px;}
.x10_c00465{left:422.640000px;}
.x11_c00465{left:432.720000px;}
.x28_c00465{left:434.160000px;}
.x2b_c00465{left:444.960000px;}
.x26_c00465{left:455.040000px;}
.x7_c00465{left:465.840000px;}
.x25_c00465{left:475.920000px;}
.x19_c00465{left:477.360000px;}
.x12_c00465{left:487.440000px;}
.x8_c00465{left:531.360000px;}
.x9_c00465{left:618.480000px;}
.x27_c00465{left:619.920000px;}
.xa_c00465{left:652.320000px;}
.xd_c00465{left:662.400000px;}
.x1_c00465{left:671.760000px;}
.x1a_c00465{left:684.720000px;}
.xb_c00465{left:694.080000px;}
.x13_c00465{left:695.520000px;}
.x2c_c00465{left:715.680000px;}
@media print{
.v0_c00465{vertical-align:0.000000pt;}
.ls0_c00465{letter-spacing:0.000000pt;}
.ws0_c00465{word-spacing:0.000000pt;}
.fsd_c00465{font-size:10.240000pt;}
.fsb_c00465{font-size:17.920000pt;}
.fs6_c00465{font-size:30.720000pt;}
.fsc_c00465{font-size:33.280000pt;}
.fs3_c00465{font-size:38.400000pt;}
.fs9_c00465{font-size:40.960000pt;}
.fs2_c00465{font-size:43.520000pt;}
.fs4_c00465{font-size:46.080000pt;}
.fs5_c00465{font-size:48.640000pt;}
.fs8_c00465{font-size:51.200000pt;}
.fs1_c00465{font-size:53.760000pt;}
.fsf_c00465{font-size:56.320000pt;}
.fs7_c00465{font-size:58.880000pt;}
.fsa_c00465{font-size:61.440000pt;}
.fs10_c00465{font-size:64.000000pt;}
.fs0_c00465{font-size:66.560000pt;}
.fs11_c00465{font-size:79.360000pt;}
.fse_c00465{font-size:81.920000pt;}
.y0_c00465{bottom:0.000000pt;}
.y6d_c00465{bottom:65.280000pt;}
.y6e_c00465{bottom:65.920000pt;}
.y6c_c00465{bottom:66.560000pt;}
.y72_c00465{bottom:67.200000pt;}
.y6f_c00465{bottom:68.480000pt;}
.y70_c00465{bottom:69.120000pt;}
.y71_c00465{bottom:69.760000pt;}
.y68_c00465{bottom:104.320000pt;}
.y6b_c00465{bottom:104.960000pt;}
.y67_c00465{bottom:105.600000pt;}
.y6a_c00465{bottom:106.240000pt;}
.y69_c00465{bottom:106.880000pt;}
.y64_c00465{bottom:136.320000pt;}
.y62_c00465{bottom:142.720000pt;}
.y65_c00465{bottom:144.000000pt;}
.y61_c00465{bottom:144.640000pt;}
.y63_c00465{bottom:145.280000pt;}
.y66_c00465{bottom:145.920000pt;}
.y5f_c00465{bottom:181.120000pt;}
.y60_c00465{bottom:183.680000pt;}
.y5c_c00465{bottom:208.640000pt;}
.y5b_c00465{bottom:210.560000pt;}
.y5e_c00465{bottom:211.200000pt;}
.y5a_c00465{bottom:211.840000pt;}
.y5d_c00465{bottom:212.480000pt;}
.y55_c00465{bottom:248.320000pt;}
.y59_c00465{bottom:248.960000pt;}
.y54_c00465{bottom:249.600000pt;}
.y57_c00465{bottom:250.240000pt;}
.y56_c00465{bottom:250.880000pt;}
.y58_c00465{bottom:251.520000pt;}
.y52_c00465{bottom:286.720000pt;}
.y50_c00465{bottom:287.360000pt;}
.y53_c00465{bottom:288.000000pt;}
.y51_c00465{bottom:289.280000pt;}
.y4e_c00465{bottom:317.440000pt;}
.y4c_c00465{bottom:325.120000pt;}
.y4b_c00465{bottom:325.760000pt;}
.y4f_c00465{bottom:326.400000pt;}
.y4d_c00465{bottom:327.040000pt;}
.y49_c00465{bottom:356.480000pt;}
.y46_c00465{bottom:363.520000pt;}
.y4a_c00465{bottom:364.160000pt;}
.y44_c00465{bottom:364.800000pt;}
.y48_c00465{bottom:365.440000pt;}
.y47_c00465{bottom:366.080000pt;}
.y45_c00465{bottom:368.640000pt;}
.y42_c00465{bottom:403.200000pt;}
.y43_c00465{bottom:403.840000pt;}
.y3f_c00465{bottom:430.080000pt;}
.y3e_c00465{bottom:430.720000pt;}
.y40_c00465{bottom:432.640000pt;}
.y41_c00465{bottom:433.280000pt;}
.y3c_c00465{bottom:468.480000pt;}
.y3d_c00465{bottom:470.400000pt;}
.y38_c00465{bottom:496.640000pt;}
.y37_c00465{bottom:497.280000pt;}
.y39_c00465{bottom:498.560000pt;}
.y3a_c00465{bottom:499.200000pt;}
.y3b_c00465{bottom:499.840000pt;}
.y36_c00465{bottom:534.400000pt;}
.y35_c00465{bottom:536.960000pt;}
.y31_c00465{bottom:562.560000pt;}
.y30_c00465{bottom:563.200000pt;}
.y2f_c00465{bottom:563.840000pt;}
.y32_c00465{bottom:565.120000pt;}
.y34_c00465{bottom:565.760000pt;}
.y33_c00465{bottom:566.400000pt;}
.y2b_c00465{bottom:600.960000pt;}
.y2c_c00465{bottom:601.600000pt;}
.y2a_c00465{bottom:602.240000pt;}
.y2d_c00465{bottom:603.520000pt;}
.y2e_c00465{bottom:604.160000pt;}
.y28_c00465{bottom:639.360000pt;}
.y27_c00465{bottom:641.920000pt;}
.y29_c00465{bottom:642.560000pt;}
.y23_c00465{bottom:668.160000pt;}
.y22_c00465{bottom:669.440000pt;}
.y24_c00465{bottom:670.080000pt;}
.y25_c00465{bottom:670.720000pt;}
.y26_c00465{bottom:671.360000pt;}
.y1f_c00465{bottom:706.560000pt;}
.y21_c00465{bottom:708.480000pt;}
.y20_c00465{bottom:709.120000pt;}
.y1b_c00465{bottom:735.360000pt;}
.y1d_c00465{bottom:736.000000pt;}
.y19_c00465{bottom:736.640000pt;}
.y1c_c00465{bottom:737.280000pt;}
.y1a_c00465{bottom:737.920000pt;}
.y1e_c00465{bottom:738.560000pt;}
.y17_c00465{bottom:773.760000pt;}
.y16_c00465{bottom:775.040000pt;}
.y18_c00465{bottom:775.680000pt;}
.y13_c00465{bottom:801.280000pt;}
.y12_c00465{bottom:801.920000pt;}
.y11_c00465{bottom:802.560000pt;}
.y14_c00465{bottom:804.480000pt;}
.y15_c00465{bottom:805.120000pt;}
.yf_c00465{bottom:840.320000pt;}
.y10_c00465{bottom:842.240000pt;}
.ye_c00465{bottom:842.880000pt;}
.ya_c00465{bottom:868.480000pt;}
.y9_c00465{bottom:869.120000pt;}
.yd_c00465{bottom:869.760000pt;}
.yc_c00465{bottom:870.400000pt;}
.yb_c00465{bottom:871.040000pt;}
.y8_c00465{bottom:908.800000pt;}
.y4_c00465{bottom:935.040000pt;}
.y2_c00465{bottom:935.680000pt;}
.y7_c00465{bottom:936.320000pt;}
.y3_c00465{bottom:937.600000pt;}
.y6_c00465{bottom:938.240000pt;}
.y5_c00465{bottom:938.880000pt;}
.y1_c00465{bottom:995.200000pt;}
.hf_c00465{height:9.215000pt;}
.hd_c00465{height:16.126250pt;}
.h8_c00465{height:27.645000pt;}
.he_c00465{height:29.948750pt;}
.h5_c00465{height:34.556250pt;}
.hb_c00465{height:36.860000pt;}
.h4_c00465{height:39.163750pt;}
.h6_c00465{height:41.467500pt;}
.h7_c00465{height:43.771250pt;}
.ha_c00465{height:46.075000pt;}
.h3_c00465{height:48.378750pt;}
.h11_c00465{height:50.682500pt;}
.h9_c00465{height:52.986250pt;}
.hc_c00465{height:55.290000pt;}
.h12_c00465{height:57.593750pt;}
.h2_c00465{height:59.897500pt;}
.h13_c00465{height:71.416250pt;}
.h10_c00465{height:73.720000pt;}
.h1_c00465{height:1034.666667pt;}
.h0_c00465{height:1034.880000pt;}
.w1_c00465{width:696.666667pt;}
.w0_c00465{width:696.960000pt;}
.x0_c00465{left:0.000000pt;}
.x2_c00465{left:48.640000pt;}
.x24_c00465{left:96.000000pt;}
.x21_c00465{left:104.960000pt;}
.x14_c00465{left:107.520000pt;}
.x22_c00465{left:115.200000pt;}
.x3_c00465{left:116.480000pt;}
.x29_c00465{left:154.880000pt;}
.xc_c00465{left:165.120000pt;}
.x4_c00465{left:192.640000pt;}
.x15_c00465{left:193.920000pt;}
.x1b_c00465{left:201.600000pt;}
.x23_c00465{left:203.520000pt;}
.x1d_c00465{left:231.680000pt;}
.x16_c00465{left:241.280000pt;}
.x5_c00465{left:250.240000pt;}
.x2d_c00465{left:259.200000pt;}
.x1e_c00465{left:278.400000pt;}
.xe_c00465{left:279.680000pt;}
.x17_c00465{left:289.280000pt;}
.x6_c00465{left:298.880000pt;}
.x2e_c00465{left:308.480000pt;}
.x1f_c00465{left:318.720000pt;}
.xf_c00465{left:327.680000pt;}
.x1c_c00465{left:337.920000pt;}
.x2a_c00465{left:346.880000pt;}
.x20_c00465{left:355.840000pt;}
.x18_c00465{left:365.440000pt;}
.x10_c00465{left:375.680000pt;}
.x11_c00465{left:384.640000pt;}
.x28_c00465{left:385.920000pt;}
.x2b_c00465{left:395.520000pt;}
.x26_c00465{left:404.480000pt;}
.x7_c00465{left:414.080000pt;}
.x25_c00465{left:423.040000pt;}
.x19_c00465{left:424.320000pt;}
.x12_c00465{left:433.280000pt;}
.x8_c00465{left:472.320000pt;}
.x9_c00465{left:549.760000pt;}
.x27_c00465{left:551.040000pt;}
.xa_c00465{left:579.840000pt;}
.xd_c00465{left:588.800000pt;}
.x1_c00465{left:597.120000pt;}
.x1a_c00465{left:608.640000pt;}
.xb_c00465{left:616.960000pt;}
.x13_c00465{left:618.240000pt;}
.x2c_c00465{left:636.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_af19f8a463bd58452e62a2a5.woff2')format("woff");}.ff1_c00466{font-family:ff1_c00466;line-height:1.109863;font-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_c00466{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.mb_c00466{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m32_c00466{transform:matrix(0.238700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238700,0.000000,0.000000,0.250000,0,0);}
.m38_c00466{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00466{transform:matrix(0.244425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244425,0.000000,0.000000,0.250000,0,0);}
.m3f_c00466{transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);}
.m1c_c00466{transform:matrix(0.249050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249050,0.000000,0.000000,0.250000,0,0);}
.mf_c00466{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m1f_c00466{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m28_c00466{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);}
.m22_c00466{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m35_c00466{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00466{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m6_c00466{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m21_c00466{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m9_c00466{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m11_c00466{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00466{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.ma_c00466{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m4_c00466{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m26_c00466{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.md_c00466{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m15_c00466{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00466{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m17_c00466{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m19_c00466{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3_c00466{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m8_c00466{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.me_c00466{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m25_c00466{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m12_c00466{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mc_c00466{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m31_c00466{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m2_c00466{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m16_c00466{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);}
.m1b_c00466{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m1_c00466{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);}
.m30_c00466{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m0_c00466{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00466{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00466{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);}
.m20_c00466{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);}
.m2d_c00466{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m37_c00466{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);}
.m39_c00466{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m5_c00466{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);}
.m36_c00466{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m29_c00466{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m27_c00466{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);}
.m1e_c00466{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_c00466{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m34_c00466{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m14_c00466{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m7_c00466{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);}
.m33_c00466{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00466{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00466{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);}
.m40_c00466{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00466{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m23_c00466{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);}
.m3c_c00466{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m13_c00466{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m24_c00466{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m10_c00466{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);}
.m3b_c00466{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.v1_c00466{vertical-align:-8.640000px;}
.v0_c00466{vertical-align:0.000000px;}
.ls1_c00466{letter-spacing:0.000000px;}
.ls0_c00466{letter-spacing:91.614960px;}
.sc__c00466{text-shadow:none;}
.sc0_c00466{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00466{-webkit-text-stroke:0px transparent;}
.sc0_c00466{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00466{word-spacing:0.000000px;}
.fc0_c00466{color:transparent;}
.fsb_c00466{font-size:34.560000px;}
.fsc_c00466{font-size:43.200000px;}
.fs6_c00466{font-size:46.080000px;}
.fs2_c00466{font-size:48.960000px;}
.fs4_c00466{font-size:51.840000px;}
.fs5_c00466{font-size:54.720000px;}
.fs7_c00466{font-size:57.600000px;}
.fsa_c00466{font-size:60.480000px;}
.fs1_c00466{font-size:63.360000px;}
.fs8_c00466{font-size:66.240000px;}
.fs9_c00466{font-size:69.120000px;}
.fs3_c00466{font-size:72.000000px;}
.fs0_c00466{font-size:74.880000px;}
.y0_c00466{bottom:0.000000px;}
.y7e_c00466{bottom:64.800000px;}
.y81_c00466{bottom:66.240000px;}
.y7f_c00466{bottom:66.960000px;}
.y7d_c00466{bottom:67.680000px;}
.y82_c00466{bottom:68.400000px;}
.y80_c00466{bottom:69.120000px;}
.y83_c00466{bottom:69.840000px;}
.y78_c00466{bottom:108.720000px;}
.y79_c00466{bottom:109.440000px;}
.y7b_c00466{bottom:110.160000px;}
.y7c_c00466{bottom:110.880000px;}
.y7a_c00466{bottom:111.600000px;}
.y77_c00466{bottom:112.320000px;}
.y71_c00466{bottom:151.920000px;}
.y76_c00466{bottom:152.640000px;}
.y74_c00466{bottom:153.360000px;}
.y72_c00466{bottom:154.080000px;}
.y70_c00466{bottom:154.800000px;}
.y73_c00466{bottom:156.240000px;}
.y75_c00466{bottom:156.960000px;}
.y6a_c00466{bottom:194.400000px;}
.y6d_c00466{bottom:195.840000px;}
.y6e_c00466{bottom:196.560000px;}
.y69_c00466{bottom:197.280000px;}
.y6b_c00466{bottom:198.000000px;}
.y6c_c00466{bottom:198.720000px;}
.y6f_c00466{bottom:199.440000px;}
.y64_c00466{bottom:237.600000px;}
.y68_c00466{bottom:238.320000px;}
.y66_c00466{bottom:239.040000px;}
.y63_c00466{bottom:239.760000px;}
.y65_c00466{bottom:240.480000px;}
.y67_c00466{bottom:241.920000px;}
.y5f_c00466{bottom:280.800000px;}
.y60_c00466{bottom:281.520000px;}
.y61_c00466{bottom:282.240000px;}
.y5e_c00466{bottom:283.680000px;}
.y62_c00466{bottom:284.400000px;}
.y5a_c00466{bottom:324.000000px;}
.y5b_c00466{bottom:324.720000px;}
.y59_c00466{bottom:326.160000px;}
.y5c_c00466{bottom:326.880000px;}
.y5d_c00466{bottom:328.320000px;}
.y53_c00466{bottom:366.480000px;}
.y54_c00466{bottom:367.200000px;}
.y56_c00466{bottom:367.920000px;}
.y57_c00466{bottom:368.640000px;}
.y55_c00466{bottom:369.360000px;}
.y52_c00466{bottom:370.080000px;}
.y58_c00466{bottom:370.800000px;}
.y4c_c00466{bottom:409.680000px;}
.y4e_c00466{bottom:410.400000px;}
.y50_c00466{bottom:411.120000px;}
.y4f_c00466{bottom:411.840000px;}
.y4b_c00466{bottom:412.560000px;}
.y4d_c00466{bottom:413.280000px;}
.y51_c00466{bottom:414.000000px;}
.y49_c00466{bottom:452.880000px;}
.y47_c00466{bottom:455.040000px;}
.y4a_c00466{bottom:456.480000px;}
.y48_c00466{bottom:457.200000px;}
.y44_c00466{bottom:496.080000px;}
.y45_c00466{bottom:496.800000px;}
.y46_c00466{bottom:497.520000px;}
.y42_c00466{bottom:498.240000px;}
.y43_c00466{bottom:500.400000px;}
.y3f_c00466{bottom:539.280000px;}
.y40_c00466{bottom:540.000000px;}
.y3e_c00466{bottom:540.720000px;}
.y41_c00466{bottom:543.600000px;}
.y3a_c00466{bottom:581.760000px;}
.y3c_c00466{bottom:583.200000px;}
.y3b_c00466{bottom:583.920000px;}
.y39_c00466{bottom:584.640000px;}
.y3d_c00466{bottom:586.800000px;}
.y35_c00466{bottom:624.960000px;}
.y36_c00466{bottom:625.680000px;}
.y37_c00466{bottom:626.400000px;}
.y34_c00466{bottom:627.120000px;}
.y38_c00466{bottom:628.560000px;}
.y2f_c00466{bottom:667.440000px;}
.y30_c00466{bottom:668.160000px;}
.y31_c00466{bottom:668.880000px;}
.y2e_c00466{bottom:669.600000px;}
.y32_c00466{bottom:671.760000px;}
.y33_c00466{bottom:673.200000px;}
.y2a_c00466{bottom:710.640000px;}
.y2b_c00466{bottom:711.360000px;}
.y29_c00466{bottom:712.800000px;}
.y2c_c00466{bottom:714.240000px;}
.y2d_c00466{bottom:714.960000px;}
.y25_c00466{bottom:753.120000px;}
.y28_c00466{bottom:753.840000px;}
.y26_c00466{bottom:754.560000px;}
.y24_c00466{bottom:755.280000px;}
.y27_c00466{bottom:756.720000px;}
.y1f_c00466{bottom:796.320000px;}
.y21_c00466{bottom:797.760000px;}
.y1e_c00466{bottom:798.480000px;}
.y22_c00466{bottom:799.200000px;}
.y20_c00466{bottom:799.920000px;}
.y23_c00466{bottom:800.640000px;}
.y1a_c00466{bottom:838.800000px;}
.y1c_c00466{bottom:839.520000px;}
.y1b_c00466{bottom:840.240000px;}
.y19_c00466{bottom:840.960000px;}
.y1d_c00466{bottom:843.120000px;}
.y15_c00466{bottom:882.000000px;}
.y16_c00466{bottom:882.720000px;}
.y14_c00466{bottom:883.440000px;}
.y17_c00466{bottom:884.880000px;}
.y18_c00466{bottom:885.600000px;}
.y13_c00466{bottom:924.480000px;}
.y11_c00466{bottom:925.200000px;}
.y10_c00466{bottom:925.920000px;}
.y12_c00466{bottom:928.080000px;}
.ye_c00466{bottom:967.680000px;}
.yc_c00466{bottom:969.120000px;}
.yf_c00466{bottom:970.560000px;}
.yd_c00466{bottom:971.280000px;}
.y9_c00466{bottom:1010.160000px;}
.yb_c00466{bottom:1011.600000px;}
.y7_c00466{bottom:1012.320000px;}
.ya_c00466{bottom:1013.040000px;}
.y8_c00466{bottom:1014.480000px;}
.y4_c00466{bottom:1054.080000px;}
.y6_c00466{bottom:1055.520000px;}
.y2_c00466{bottom:1056.240000px;}
.y5_c00466{bottom:1056.960000px;}
.y3_c00466{bottom:1057.680000px;}
.y1_c00466{bottom:1116.000000px;}
.hd_c00466{height:31.100625px;}
.he_c00466{height:38.875781px;}
.h8_c00466{height:41.467500px;}
.h4_c00466{height:44.059219px;}
.h6_c00466{height:46.650937px;}
.h7_c00466{height:49.242656px;}
.h9_c00466{height:51.834375px;}
.hc_c00466{height:54.426094px;}
.h3_c00466{height:57.017812px;}
.ha_c00466{height:59.609531px;}
.hb_c00466{height:62.201250px;}
.h5_c00466{height:64.792969px;}
.h2_c00466{height:67.384687px;}
.h1_c00466{height:1162.500000px;}
.h0_c00466{height:1162.800000px;}
.w0_c00466{width:782.640000px;}
.w1_c00466{width:783.000000px;}
.x0_c00466{left:0.000000px;}
.x2_c00466{left:51.840000px;}
.x3_c00466{left:127.440000px;}
.x1f_c00466{left:128.880000px;}
.x4_c00466{left:170.640000px;}
.x21_c00466{left:172.800000px;}
.x20_c00466{left:182.160000px;}
.x1a_c00466{left:205.200000px;}
.xc_c00466{left:213.840000px;}
.x12_c00466{left:215.280000px;}
.x17_c00466{left:223.920000px;}
.x16_c00466{left:225.360000px;}
.xd_c00466{left:257.760000px;}
.x18_c00466{left:268.560000px;}
.x22_c00466{left:278.640000px;}
.x1b_c00466{left:290.880000px;}
.x13_c00466{left:300.240000px;}
.xe_c00466{left:311.760000px;}
.x19_c00466{left:322.560000px;}
.x1c_c00466{left:332.640000px;}
.x14_c00466{left:354.960000px;}
.x15_c00466{left:397.440000px;}
.x24_c00466{left:408.960000px;}
.xf_c00466{left:430.560000px;}
.x25_c00466{left:464.400000px;}
.x10_c00466{left:473.040000px;}
.x5_c00466{left:527.760000px;}
.xa_c00466{left:529.200000px;}
.x23_c00466{left:561.600000px;}
.x11_c00466{left:581.760000px;}
.x1d_c00466{left:583.200000px;}
.x6_c00466{left:615.600000px;}
.x7_c00466{left:648.720000px;}
.xb_c00466{left:659.520000px;}
.x1_c00466{left:676.080000px;}
.x8_c00466{left:691.920000px;}
.x1e_c00466{left:693.360000px;}
.x9_c00466{left:712.080000px;}
@media print{
.v1_c00466{vertical-align:-7.680000pt;}
.v0_c00466{vertical-align:0.000000pt;}
.ls1_c00466{letter-spacing:0.000000pt;}
.ls0_c00466{letter-spacing:81.435520pt;}
.ws0_c00466{word-spacing:0.000000pt;}
.fsb_c00466{font-size:30.720000pt;}
.fsc_c00466{font-size:38.400000pt;}
.fs6_c00466{font-size:40.960000pt;}
.fs2_c00466{font-size:43.520000pt;}
.fs4_c00466{font-size:46.080000pt;}
.fs5_c00466{font-size:48.640000pt;}
.fs7_c00466{font-size:51.200000pt;}
.fsa_c00466{font-size:53.760000pt;}
.fs1_c00466{font-size:56.320000pt;}
.fs8_c00466{font-size:58.880000pt;}
.fs9_c00466{font-size:61.440000pt;}
.fs3_c00466{font-size:64.000000pt;}
.fs0_c00466{font-size:66.560000pt;}
.y0_c00466{bottom:0.000000pt;}
.y7e_c00466{bottom:57.600000pt;}
.y81_c00466{bottom:58.880000pt;}
.y7f_c00466{bottom:59.520000pt;}
.y7d_c00466{bottom:60.160000pt;}
.y82_c00466{bottom:60.800000pt;}
.y80_c00466{bottom:61.440000pt;}
.y83_c00466{bottom:62.080000pt;}
.y78_c00466{bottom:96.640000pt;}
.y79_c00466{bottom:97.280000pt;}
.y7b_c00466{bottom:97.920000pt;}
.y7c_c00466{bottom:98.560000pt;}
.y7a_c00466{bottom:99.200000pt;}
.y77_c00466{bottom:99.840000pt;}
.y71_c00466{bottom:135.040000pt;}
.y76_c00466{bottom:135.680000pt;}
.y74_c00466{bottom:136.320000pt;}
.y72_c00466{bottom:136.960000pt;}
.y70_c00466{bottom:137.600000pt;}
.y73_c00466{bottom:138.880000pt;}
.y75_c00466{bottom:139.520000pt;}
.y6a_c00466{bottom:172.800000pt;}
.y6d_c00466{bottom:174.080000pt;}
.y6e_c00466{bottom:174.720000pt;}
.y69_c00466{bottom:175.360000pt;}
.y6b_c00466{bottom:176.000000pt;}
.y6c_c00466{bottom:176.640000pt;}
.y6f_c00466{bottom:177.280000pt;}
.y64_c00466{bottom:211.200000pt;}
.y68_c00466{bottom:211.840000pt;}
.y66_c00466{bottom:212.480000pt;}
.y63_c00466{bottom:213.120000pt;}
.y65_c00466{bottom:213.760000pt;}
.y67_c00466{bottom:215.040000pt;}
.y5f_c00466{bottom:249.600000pt;}
.y60_c00466{bottom:250.240000pt;}
.y61_c00466{bottom:250.880000pt;}
.y5e_c00466{bottom:252.160000pt;}
.y62_c00466{bottom:252.800000pt;}
.y5a_c00466{bottom:288.000000pt;}
.y5b_c00466{bottom:288.640000pt;}
.y59_c00466{bottom:289.920000pt;}
.y5c_c00466{bottom:290.560000pt;}
.y5d_c00466{bottom:291.840000pt;}
.y53_c00466{bottom:325.760000pt;}
.y54_c00466{bottom:326.400000pt;}
.y56_c00466{bottom:327.040000pt;}
.y57_c00466{bottom:327.680000pt;}
.y55_c00466{bottom:328.320000pt;}
.y52_c00466{bottom:328.960000pt;}
.y58_c00466{bottom:329.600000pt;}
.y4c_c00466{bottom:364.160000pt;}
.y4e_c00466{bottom:364.800000pt;}
.y50_c00466{bottom:365.440000pt;}
.y4f_c00466{bottom:366.080000pt;}
.y4b_c00466{bottom:366.720000pt;}
.y4d_c00466{bottom:367.360000pt;}
.y51_c00466{bottom:368.000000pt;}
.y49_c00466{bottom:402.560000pt;}
.y47_c00466{bottom:404.480000pt;}
.y4a_c00466{bottom:405.760000pt;}
.y48_c00466{bottom:406.400000pt;}
.y44_c00466{bottom:440.960000pt;}
.y45_c00466{bottom:441.600000pt;}
.y46_c00466{bottom:442.240000pt;}
.y42_c00466{bottom:442.880000pt;}
.y43_c00466{bottom:444.800000pt;}
.y3f_c00466{bottom:479.360000pt;}
.y40_c00466{bottom:480.000000pt;}
.y3e_c00466{bottom:480.640000pt;}
.y41_c00466{bottom:483.200000pt;}
.y3a_c00466{bottom:517.120000pt;}
.y3c_c00466{bottom:518.400000pt;}
.y3b_c00466{bottom:519.040000pt;}
.y39_c00466{bottom:519.680000pt;}
.y3d_c00466{bottom:521.600000pt;}
.y35_c00466{bottom:555.520000pt;}
.y36_c00466{bottom:556.160000pt;}
.y37_c00466{bottom:556.800000pt;}
.y34_c00466{bottom:557.440000pt;}
.y38_c00466{bottom:558.720000pt;}
.y2f_c00466{bottom:593.280000pt;}
.y30_c00466{bottom:593.920000pt;}
.y31_c00466{bottom:594.560000pt;}
.y2e_c00466{bottom:595.200000pt;}
.y32_c00466{bottom:597.120000pt;}
.y33_c00466{bottom:598.400000pt;}
.y2a_c00466{bottom:631.680000pt;}
.y2b_c00466{bottom:632.320000pt;}
.y29_c00466{bottom:633.600000pt;}
.y2c_c00466{bottom:634.880000pt;}
.y2d_c00466{bottom:635.520000pt;}
.y25_c00466{bottom:669.440000pt;}
.y28_c00466{bottom:670.080000pt;}
.y26_c00466{bottom:670.720000pt;}
.y24_c00466{bottom:671.360000pt;}
.y27_c00466{bottom:672.640000pt;}
.y1f_c00466{bottom:707.840000pt;}
.y21_c00466{bottom:709.120000pt;}
.y1e_c00466{bottom:709.760000pt;}
.y22_c00466{bottom:710.400000pt;}
.y20_c00466{bottom:711.040000pt;}
.y23_c00466{bottom:711.680000pt;}
.y1a_c00466{bottom:745.600000pt;}
.y1c_c00466{bottom:746.240000pt;}
.y1b_c00466{bottom:746.880000pt;}
.y19_c00466{bottom:747.520000pt;}
.y1d_c00466{bottom:749.440000pt;}
.y15_c00466{bottom:784.000000pt;}
.y16_c00466{bottom:784.640000pt;}
.y14_c00466{bottom:785.280000pt;}
.y17_c00466{bottom:786.560000pt;}
.y18_c00466{bottom:787.200000pt;}
.y13_c00466{bottom:821.760000pt;}
.y11_c00466{bottom:822.400000pt;}
.y10_c00466{bottom:823.040000pt;}
.y12_c00466{bottom:824.960000pt;}
.ye_c00466{bottom:860.160000pt;}
.yc_c00466{bottom:861.440000pt;}
.yf_c00466{bottom:862.720000pt;}
.yd_c00466{bottom:863.360000pt;}
.y9_c00466{bottom:897.920000pt;}
.yb_c00466{bottom:899.200000pt;}
.y7_c00466{bottom:899.840000pt;}
.ya_c00466{bottom:900.480000pt;}
.y8_c00466{bottom:901.760000pt;}
.y4_c00466{bottom:936.960000pt;}
.y6_c00466{bottom:938.240000pt;}
.y2_c00466{bottom:938.880000pt;}
.y5_c00466{bottom:939.520000pt;}
.y3_c00466{bottom:940.160000pt;}
.y1_c00466{bottom:992.000000pt;}
.hd_c00466{height:27.645000pt;}
.he_c00466{height:34.556250pt;}
.h8_c00466{height:36.860000pt;}
.h4_c00466{height:39.163750pt;}
.h6_c00466{height:41.467500pt;}
.h7_c00466{height:43.771250pt;}
.h9_c00466{height:46.075000pt;}
.hc_c00466{height:48.378750pt;}
.h3_c00466{height:50.682500pt;}
.ha_c00466{height:52.986250pt;}
.hb_c00466{height:55.290000pt;}
.h5_c00466{height:57.593750pt;}
.h2_c00466{height:59.897500pt;}
.h1_c00466{height:1033.333333pt;}
.h0_c00466{height:1033.600000pt;}
.w0_c00466{width:695.680000pt;}
.w1_c00466{width:696.000000pt;}
.x0_c00466{left:0.000000pt;}
.x2_c00466{left:46.080000pt;}
.x3_c00466{left:113.280000pt;}
.x1f_c00466{left:114.560000pt;}
.x4_c00466{left:151.680000pt;}
.x21_c00466{left:153.600000pt;}
.x20_c00466{left:161.920000pt;}
.x1a_c00466{left:182.400000pt;}
.xc_c00466{left:190.080000pt;}
.x12_c00466{left:191.360000pt;}
.x17_c00466{left:199.040000pt;}
.x16_c00466{left:200.320000pt;}
.xd_c00466{left:229.120000pt;}
.x18_c00466{left:238.720000pt;}
.x22_c00466{left:247.680000pt;}
.x1b_c00466{left:258.560000pt;}
.x13_c00466{left:266.880000pt;}
.xe_c00466{left:277.120000pt;}
.x19_c00466{left:286.720000pt;}
.x1c_c00466{left:295.680000pt;}
.x14_c00466{left:315.520000pt;}
.x15_c00466{left:353.280000pt;}
.x24_c00466{left:363.520000pt;}
.xf_c00466{left:382.720000pt;}
.x25_c00466{left:412.800000pt;}
.x10_c00466{left:420.480000pt;}
.x5_c00466{left:469.120000pt;}
.xa_c00466{left:470.400000pt;}
.x23_c00466{left:499.200000pt;}
.x11_c00466{left:517.120000pt;}
.x1d_c00466{left:518.400000pt;}
.x6_c00466{left:547.200000pt;}
.x7_c00466{left:576.640000pt;}
.xb_c00466{left:586.240000pt;}
.x1_c00466{left:600.960000pt;}
.x8_c00466{left:615.040000pt;}
.x1e_c00466{left:616.320000pt;}
.x9_c00466{left:632.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_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_98e2950ba5b6be72fa39f31c.woff2')format("woff");}.ff1_c00467{font-family:ff1_c00467;line-height:1.109863;font-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_c00467{transform:matrix(0.240050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240050,0.000000,0.000000,0.250000,0,0);}
.m2_c00467{transform:matrix(0.244350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244350,0.000000,0.000000,0.250000,0,0);}
.m13_c00467{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m8_c00467{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mc_c00467{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_c00467{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m24_c00467{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m4_c00467{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m21_c00467{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.mb_c00467{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m16_c00467{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m3_c00467{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m38_c00467{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m11_c00467{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m9_c00467{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m0_c00467{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m17_c00467{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00467{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00467{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00467{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m6_c00467{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m35_c00467{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m23_c00467{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1_c00467{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m12_c00467{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00467{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00467{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.ma_c00467{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m30_c00467{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m29_c00467{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);}
.m27_c00467{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m5_c00467{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);}
.m20_c00467{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);}
.m34_c00467{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m26_c00467{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m22_c00467{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m36_c00467{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m10_c00467{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m18_c00467{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m7_c00467{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m15_c00467{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);}
.me_c00467{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00467{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);}
.m39_c00467{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00467{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);}
.m32_c00467{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m33_c00467{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m25_c00467{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);}
.md_c00467{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);}
.m1e_c00467{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00467{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m31_c00467{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.mf_c00467{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00467{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00467{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m37_c00467{transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);}
.m28_c00467{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.m14_c00467{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00467{transform:matrix(0.817500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.817500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.817500,0.000000,0.000000,0.250000,0,0);}
.v0_c00467{vertical-align:0.000000px;}
.ls0_c00467{letter-spacing:0.000000px;}
.sc__c00467{text-shadow:none;}
.sc0_c00467{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00467{-webkit-text-stroke:0px transparent;}
.sc0_c00467{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00467{word-spacing:0.000000px;}
.fc0_c00467{color:transparent;}
.fsd_c00467{font-size:34.560000px;}
.fs8_c00467{font-size:37.440000px;}
.fsc_c00467{font-size:43.200000px;}
.fs5_c00467{font-size:46.080000px;}
.fs9_c00467{font-size:48.960000px;}
.fsa_c00467{font-size:51.840000px;}
.fs4_c00467{font-size:54.720000px;}
.fs7_c00467{font-size:57.600000px;}
.fs6_c00467{font-size:60.480000px;}
.fs3_c00467{font-size:63.360000px;}
.fsb_c00467{font-size:66.240000px;}
.fs1_c00467{font-size:69.120000px;}
.fs2_c00467{font-size:72.000000px;}
.fs0_c00467{font-size:74.880000px;}
.y0_c00467{bottom:0.000000px;}
.y80_c00467{bottom:56.160000px;}
.y82_c00467{bottom:56.880000px;}
.y83_c00467{bottom:58.320000px;}
.y7f_c00467{bottom:59.040000px;}
.y81_c00467{bottom:59.760000px;}
.y84_c00467{bottom:60.480000px;}
.y79_c00467{bottom:99.360000px;}
.y7b_c00467{bottom:100.080000px;}
.y7e_c00467{bottom:100.800000px;}
.y7c_c00467{bottom:101.520000px;}
.y78_c00467{bottom:102.240000px;}
.y7a_c00467{bottom:102.960000px;}
.y7d_c00467{bottom:105.120000px;}
.y76_c00467{bottom:142.560000px;}
.y77_c00467{bottom:144.720000px;}
.y74_c00467{bottom:145.440000px;}
.y75_c00467{bottom:146.160000px;}
.y70_c00467{bottom:185.760000px;}
.y71_c00467{bottom:186.480000px;}
.y73_c00467{bottom:187.920000px;}
.y6e_c00467{bottom:188.640000px;}
.y6f_c00467{bottom:190.080000px;}
.y72_c00467{bottom:190.800000px;}
.y6a_c00467{bottom:228.960000px;}
.y6d_c00467{bottom:229.680000px;}
.y68_c00467{bottom:231.120000px;}
.y6b_c00467{bottom:231.840000px;}
.y69_c00467{bottom:232.560000px;}
.y6c_c00467{bottom:233.280000px;}
.y62_c00467{bottom:272.160000px;}
.y65_c00467{bottom:273.600000px;}
.y64_c00467{bottom:274.320000px;}
.y61_c00467{bottom:275.040000px;}
.y63_c00467{bottom:275.760000px;}
.y67_c00467{bottom:276.480000px;}
.y66_c00467{bottom:277.200000px;}
.y5c_c00467{bottom:315.360000px;}
.y5d_c00467{bottom:316.800000px;}
.y5b_c00467{bottom:317.520000px;}
.y5e_c00467{bottom:318.960000px;}
.y60_c00467{bottom:319.680000px;}
.y5f_c00467{bottom:320.400000px;}
.y57_c00467{bottom:358.560000px;}
.y5a_c00467{bottom:359.280000px;}
.y56_c00467{bottom:360.720000px;}
.y59_c00467{bottom:361.440000px;}
.y58_c00467{bottom:362.160000px;}
.y52_c00467{bottom:401.760000px;}
.y54_c00467{bottom:402.480000px;}
.y50_c00467{bottom:403.200000px;}
.y53_c00467{bottom:403.920000px;}
.y51_c00467{bottom:405.360000px;}
.y55_c00467{bottom:406.080000px;}
.y4b_c00467{bottom:444.240000px;}
.y4c_c00467{bottom:444.960000px;}
.y4e_c00467{bottom:445.680000px;}
.y49_c00467{bottom:446.400000px;}
.y4d_c00467{bottom:447.120000px;}
.y4a_c00467{bottom:448.560000px;}
.y4f_c00467{bottom:449.280000px;}
.y44_c00467{bottom:487.440000px;}
.y45_c00467{bottom:488.160000px;}
.y43_c00467{bottom:488.880000px;}
.y47_c00467{bottom:489.600000px;}
.y46_c00467{bottom:491.040000px;}
.y48_c00467{bottom:491.760000px;}
.y3f_c00467{bottom:529.920000px;}
.y41_c00467{bottom:530.640000px;}
.y42_c00467{bottom:531.360000px;}
.y3d_c00467{bottom:532.080000px;}
.y3e_c00467{bottom:533.520000px;}
.y40_c00467{bottom:534.240000px;}
.y37_c00467{bottom:572.400000px;}
.y3b_c00467{bottom:573.120000px;}
.y3c_c00467{bottom:573.840000px;}
.y36_c00467{bottom:574.560000px;}
.y39_c00467{bottom:575.280000px;}
.y38_c00467{bottom:576.000000px;}
.y3a_c00467{bottom:576.720000px;}
.y34_c00467{bottom:615.600000px;}
.y35_c00467{bottom:617.040000px;}
.y32_c00467{bottom:617.760000px;}
.y33_c00467{bottom:619.200000px;}
.y2e_c00467{bottom:658.800000px;}
.y2f_c00467{bottom:659.520000px;}
.y2c_c00467{bottom:660.240000px;}
.y30_c00467{bottom:660.960000px;}
.y2d_c00467{bottom:662.400000px;}
.y31_c00467{bottom:663.120000px;}
.y27_c00467{bottom:701.280000px;}
.y2b_c00467{bottom:702.000000px;}
.y2a_c00467{bottom:702.720000px;}
.y26_c00467{bottom:703.440000px;}
.y29_c00467{bottom:704.880000px;}
.y28_c00467{bottom:705.600000px;}
.y23_c00467{bottom:744.480000px;}
.y25_c00467{bottom:745.200000px;}
.y24_c00467{bottom:745.920000px;}
.y21_c00467{bottom:746.640000px;}
.y22_c00467{bottom:748.800000px;}
.y1e_c00467{bottom:787.680000px;}
.y1f_c00467{bottom:789.120000px;}
.y1d_c00467{bottom:789.840000px;}
.y20_c00467{bottom:790.560000px;}
.y19_c00467{bottom:830.160000px;}
.y1b_c00467{bottom:830.880000px;}
.y18_c00467{bottom:831.600000px;}
.y1c_c00467{bottom:832.320000px;}
.y1a_c00467{bottom:833.760000px;}
.y14_c00467{bottom:872.640000px;}
.y16_c00467{bottom:873.360000px;}
.y17_c00467{bottom:874.080000px;}
.y13_c00467{bottom:875.520000px;}
.y15_c00467{bottom:876.240000px;}
.y10_c00467{bottom:916.560000px;}
.yf_c00467{bottom:918.000000px;}
.y11_c00467{bottom:918.720000px;}
.y12_c00467{bottom:919.440000px;}
.y9_c00467{bottom:959.040000px;}
.yc_c00467{bottom:959.760000px;}
.y8_c00467{bottom:960.480000px;}
.yd_c00467{bottom:961.200000px;}
.ya_c00467{bottom:961.920000px;}
.yb_c00467{bottom:962.640000px;}
.ye_c00467{bottom:963.360000px;}
.y7_c00467{bottom:1002.240000px;}
.y6_c00467{bottom:1002.960000px;}
.y3_c00467{bottom:1044.720000px;}
.y4_c00467{bottom:1045.440000px;}
.y2_c00467{bottom:1046.160000px;}
.y5_c00467{bottom:1049.040000px;}
.y1_c00467{bottom:1119.600000px;}
.hf_c00467{height:31.100625px;}
.ha_c00467{height:33.692344px;}
.he_c00467{height:38.875781px;}
.h7_c00467{height:41.467500px;}
.hb_c00467{height:44.059219px;}
.hc_c00467{height:46.650937px;}
.h6_c00467{height:49.242656px;}
.h9_c00467{height:51.834375px;}
.h8_c00467{height:54.426094px;}
.h5_c00467{height:57.017812px;}
.hd_c00467{height:59.609531px;}
.h3_c00467{height:62.201250px;}
.h4_c00467{height:64.792969px;}
.h2_c00467{height:67.384687px;}
.h1_c00467{height:1162.500000px;}
.h0_c00467{height:1162.800000px;}
.w1_c00467{width:783.750000px;}
.w0_c00467{width:784.080000px;}
.x0_c00467{left:0.000000px;}
.x2_c00467{left:54.000000px;}
.x3_c00467{left:128.880000px;}
.x11_c00467{left:174.240000px;}
.x13_c00467{left:225.360000px;}
.x4_c00467{left:226.800000px;}
.x1b_c00467{left:257.760000px;}
.xc_c00467{left:270.000000px;}
.xe_c00467{left:281.520000px;}
.x1c_c00467{left:302.400000px;}
.xd_c00467{left:313.200000px;}
.x14_c00467{left:324.720000px;}
.x17_c00467{left:334.800000px;}
.x1d_c00467{left:345.600000px;}
.xf_c00467{left:367.920000px;}
.x18_c00467{left:389.520000px;}
.x5_c00467{left:529.920000px;}
.x6_c00467{left:563.040000px;}
.x10_c00467{left:583.200000px;}
.x9_c00467{left:584.640000px;}
.x12_c00467{left:595.440000px;}
.x19_c00467{left:609.120000px;}
.x15_c00467{left:617.760000px;}
.xa_c00467{left:640.800000px;}
.x16_c00467{left:650.880000px;}
.x7_c00467{left:660.960000px;}
.x1_c00467{left:667.440000px;}
.x8_c00467{left:693.360000px;}
.x1a_c00467{left:694.800000px;}
.xb_c00467{left:714.240000px;}
@media print{
.v0_c00467{vertical-align:0.000000pt;}
.ls0_c00467{letter-spacing:0.000000pt;}
.ws0_c00467{word-spacing:0.000000pt;}
.fsd_c00467{font-size:30.720000pt;}
.fs8_c00467{font-size:33.280000pt;}
.fsc_c00467{font-size:38.400000pt;}
.fs5_c00467{font-size:40.960000pt;}
.fs9_c00467{font-size:43.520000pt;}
.fsa_c00467{font-size:46.080000pt;}
.fs4_c00467{font-size:48.640000pt;}
.fs7_c00467{font-size:51.200000pt;}
.fs6_c00467{font-size:53.760000pt;}
.fs3_c00467{font-size:56.320000pt;}
.fsb_c00467{font-size:58.880000pt;}
.fs1_c00467{font-size:61.440000pt;}
.fs2_c00467{font-size:64.000000pt;}
.fs0_c00467{font-size:66.560000pt;}
.y0_c00467{bottom:0.000000pt;}
.y80_c00467{bottom:49.920000pt;}
.y82_c00467{bottom:50.560000pt;}
.y83_c00467{bottom:51.840000pt;}
.y7f_c00467{bottom:52.480000pt;}
.y81_c00467{bottom:53.120000pt;}
.y84_c00467{bottom:53.760000pt;}
.y79_c00467{bottom:88.320000pt;}
.y7b_c00467{bottom:88.960000pt;}
.y7e_c00467{bottom:89.600000pt;}
.y7c_c00467{bottom:90.240000pt;}
.y78_c00467{bottom:90.880000pt;}
.y7a_c00467{bottom:91.520000pt;}
.y7d_c00467{bottom:93.440000pt;}
.y76_c00467{bottom:126.720000pt;}
.y77_c00467{bottom:128.640000pt;}
.y74_c00467{bottom:129.280000pt;}
.y75_c00467{bottom:129.920000pt;}
.y70_c00467{bottom:165.120000pt;}
.y71_c00467{bottom:165.760000pt;}
.y73_c00467{bottom:167.040000pt;}
.y6e_c00467{bottom:167.680000pt;}
.y6f_c00467{bottom:168.960000pt;}
.y72_c00467{bottom:169.600000pt;}
.y6a_c00467{bottom:203.520000pt;}
.y6d_c00467{bottom:204.160000pt;}
.y68_c00467{bottom:205.440000pt;}
.y6b_c00467{bottom:206.080000pt;}
.y69_c00467{bottom:206.720000pt;}
.y6c_c00467{bottom:207.360000pt;}
.y62_c00467{bottom:241.920000pt;}
.y65_c00467{bottom:243.200000pt;}
.y64_c00467{bottom:243.840000pt;}
.y61_c00467{bottom:244.480000pt;}
.y63_c00467{bottom:245.120000pt;}
.y67_c00467{bottom:245.760000pt;}
.y66_c00467{bottom:246.400000pt;}
.y5c_c00467{bottom:280.320000pt;}
.y5d_c00467{bottom:281.600000pt;}
.y5b_c00467{bottom:282.240000pt;}
.y5e_c00467{bottom:283.520000pt;}
.y60_c00467{bottom:284.160000pt;}
.y5f_c00467{bottom:284.800000pt;}
.y57_c00467{bottom:318.720000pt;}
.y5a_c00467{bottom:319.360000pt;}
.y56_c00467{bottom:320.640000pt;}
.y59_c00467{bottom:321.280000pt;}
.y58_c00467{bottom:321.920000pt;}
.y52_c00467{bottom:357.120000pt;}
.y54_c00467{bottom:357.760000pt;}
.y50_c00467{bottom:358.400000pt;}
.y53_c00467{bottom:359.040000pt;}
.y51_c00467{bottom:360.320000pt;}
.y55_c00467{bottom:360.960000pt;}
.y4b_c00467{bottom:394.880000pt;}
.y4c_c00467{bottom:395.520000pt;}
.y4e_c00467{bottom:396.160000pt;}
.y49_c00467{bottom:396.800000pt;}
.y4d_c00467{bottom:397.440000pt;}
.y4a_c00467{bottom:398.720000pt;}
.y4f_c00467{bottom:399.360000pt;}
.y44_c00467{bottom:433.280000pt;}
.y45_c00467{bottom:433.920000pt;}
.y43_c00467{bottom:434.560000pt;}
.y47_c00467{bottom:435.200000pt;}
.y46_c00467{bottom:436.480000pt;}
.y48_c00467{bottom:437.120000pt;}
.y3f_c00467{bottom:471.040000pt;}
.y41_c00467{bottom:471.680000pt;}
.y42_c00467{bottom:472.320000pt;}
.y3d_c00467{bottom:472.960000pt;}
.y3e_c00467{bottom:474.240000pt;}
.y40_c00467{bottom:474.880000pt;}
.y37_c00467{bottom:508.800000pt;}
.y3b_c00467{bottom:509.440000pt;}
.y3c_c00467{bottom:510.080000pt;}
.y36_c00467{bottom:510.720000pt;}
.y39_c00467{bottom:511.360000pt;}
.y38_c00467{bottom:512.000000pt;}
.y3a_c00467{bottom:512.640000pt;}
.y34_c00467{bottom:547.200000pt;}
.y35_c00467{bottom:548.480000pt;}
.y32_c00467{bottom:549.120000pt;}
.y33_c00467{bottom:550.400000pt;}
.y2e_c00467{bottom:585.600000pt;}
.y2f_c00467{bottom:586.240000pt;}
.y2c_c00467{bottom:586.880000pt;}
.y30_c00467{bottom:587.520000pt;}
.y2d_c00467{bottom:588.800000pt;}
.y31_c00467{bottom:589.440000pt;}
.y27_c00467{bottom:623.360000pt;}
.y2b_c00467{bottom:624.000000pt;}
.y2a_c00467{bottom:624.640000pt;}
.y26_c00467{bottom:625.280000pt;}
.y29_c00467{bottom:626.560000pt;}
.y28_c00467{bottom:627.200000pt;}
.y23_c00467{bottom:661.760000pt;}
.y25_c00467{bottom:662.400000pt;}
.y24_c00467{bottom:663.040000pt;}
.y21_c00467{bottom:663.680000pt;}
.y22_c00467{bottom:665.600000pt;}
.y1e_c00467{bottom:700.160000pt;}
.y1f_c00467{bottom:701.440000pt;}
.y1d_c00467{bottom:702.080000pt;}
.y20_c00467{bottom:702.720000pt;}
.y19_c00467{bottom:737.920000pt;}
.y1b_c00467{bottom:738.560000pt;}
.y18_c00467{bottom:739.200000pt;}
.y1c_c00467{bottom:739.840000pt;}
.y1a_c00467{bottom:741.120000pt;}
.y14_c00467{bottom:775.680000pt;}
.y16_c00467{bottom:776.320000pt;}
.y17_c00467{bottom:776.960000pt;}
.y13_c00467{bottom:778.240000pt;}
.y15_c00467{bottom:778.880000pt;}
.y10_c00467{bottom:814.720000pt;}
.yf_c00467{bottom:816.000000pt;}
.y11_c00467{bottom:816.640000pt;}
.y12_c00467{bottom:817.280000pt;}
.y9_c00467{bottom:852.480000pt;}
.yc_c00467{bottom:853.120000pt;}
.y8_c00467{bottom:853.760000pt;}
.yd_c00467{bottom:854.400000pt;}
.ya_c00467{bottom:855.040000pt;}
.yb_c00467{bottom:855.680000pt;}
.ye_c00467{bottom:856.320000pt;}
.y7_c00467{bottom:890.880000pt;}
.y6_c00467{bottom:891.520000pt;}
.y3_c00467{bottom:928.640000pt;}
.y4_c00467{bottom:929.280000pt;}
.y2_c00467{bottom:929.920000pt;}
.y5_c00467{bottom:932.480000pt;}
.y1_c00467{bottom:995.200000pt;}
.hf_c00467{height:27.645000pt;}
.ha_c00467{height:29.948750pt;}
.he_c00467{height:34.556250pt;}
.h7_c00467{height:36.860000pt;}
.hb_c00467{height:39.163750pt;}
.hc_c00467{height:41.467500pt;}
.h6_c00467{height:43.771250pt;}
.h9_c00467{height:46.075000pt;}
.h8_c00467{height:48.378750pt;}
.h5_c00467{height:50.682500pt;}
.hd_c00467{height:52.986250pt;}
.h3_c00467{height:55.290000pt;}
.h4_c00467{height:57.593750pt;}
.h2_c00467{height:59.897500pt;}
.h1_c00467{height:1033.333333pt;}
.h0_c00467{height:1033.600000pt;}
.w1_c00467{width:696.666667pt;}
.w0_c00467{width:696.960000pt;}
.x0_c00467{left:0.000000pt;}
.x2_c00467{left:48.000000pt;}
.x3_c00467{left:114.560000pt;}
.x11_c00467{left:154.880000pt;}
.x13_c00467{left:200.320000pt;}
.x4_c00467{left:201.600000pt;}
.x1b_c00467{left:229.120000pt;}
.xc_c00467{left:240.000000pt;}
.xe_c00467{left:250.240000pt;}
.x1c_c00467{left:268.800000pt;}
.xd_c00467{left:278.400000pt;}
.x14_c00467{left:288.640000pt;}
.x17_c00467{left:297.600000pt;}
.x1d_c00467{left:307.200000pt;}
.xf_c00467{left:327.040000pt;}
.x18_c00467{left:346.240000pt;}
.x5_c00467{left:471.040000pt;}
.x6_c00467{left:500.480000pt;}
.x10_c00467{left:518.400000pt;}
.x9_c00467{left:519.680000pt;}
.x12_c00467{left:529.280000pt;}
.x19_c00467{left:541.440000pt;}
.x15_c00467{left:549.120000pt;}
.xa_c00467{left:569.600000pt;}
.x16_c00467{left:578.560000pt;}
.x7_c00467{left:587.520000pt;}
.x1_c00467{left:593.280000pt;}
.x8_c00467{left:616.320000pt;}
.x1a_c00467{left:617.600000pt;}
.xb_c00467{left:634.880000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f2e7f0fd49ec7a95d0a0190a.woff2')format("woff");}.ff1_c00468{font-family:ff1_c00468;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m34_c00468{transform:matrix(0.201825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201825,0.000000,0.000000,0.250000,0,0);}
.m4a_c00468{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m46_c00468{transform:matrix(0.238800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238800,0.000000,0.000000,0.250000,0,0);}
.m4c_c00468{transform:matrix(0.241875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241875,0.000000,0.000000,0.250000,0,0);}
.m28_c00468{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00468{transform:matrix(0.246275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246275,0.000000,0.000000,0.250000,0,0);}
.m39_c00468{transform:matrix(0.248350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248350,0.000000,0.000000,0.250000,0,0);}
.m13_c00468{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m49_c00468{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4_c00468{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m48_c00468{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m6_c00468{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);}
.m4d_c00468{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);}
.m3b_c00468{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m17_c00468{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m9_c00468{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);}
.m1c_c00468{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_c00468{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);}
.m2a_c00468{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m24_c00468{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m2_c00468{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);}
.m41_c00468{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);}
.m3a_c00468{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m12_c00468{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m3_c00468{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m19_c00468{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m10_c00468{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mb_c00468{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00468{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m35_c00468{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m37_c00468{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m42_c00468{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m5_c00468{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m11_c00468{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00468{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m21_c00468{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00468{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m23_c00468{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m18_c00468{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);}
.m36_c00468{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.mc_c00468{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00468{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);}
.m4e_c00468{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00468{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);}
.m40_c00468{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m47_c00468{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);}
.m2e_c00468{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m29_c00468{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.md_c00468{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);}
.m15_c00468{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m30_c00468{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);}
.m0_c00468{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m20_c00468{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m1_c00468{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00468{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);}
.m2c_c00468{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00468{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00468{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m33_c00468{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);}
.m32_c00468{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m8_c00468{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);}
.m44_c00468{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m25_c00468{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m14_c00468{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00468{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);}
.m2b_c00468{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.ma_c00468{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);}
.m2f_c00468{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m22_c00468{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m31_c00468{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.me_c00468{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m7_c00468{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m27_c00468{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.mf_c00468{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m50_c00468{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m26_c00468{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);}
.m1e_c00468{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m43_c00468{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m45_c00468{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00468{transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);}
.m38_c00468{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.v0_c00468{vertical-align:0.000000px;}
.ls0_c00468{letter-spacing:0.000000px;}
.sc__c00468{text-shadow:none;}
.sc0_c00468{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00468{-webkit-text-stroke:0px transparent;}
.sc0_c00468{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00468{word-spacing:0.000000px;}
.fc0_c00468{color:transparent;}
.fsd_c00468{font-size:8.640000px;}
.fsf_c00468{font-size:20.160000px;}
.fs10_c00468{font-size:28.800000px;}
.fs9_c00468{font-size:34.560000px;}
.fsb_c00468{font-size:43.200000px;}
.fs6_c00468{font-size:46.080000px;}
.fs5_c00468{font-size:48.960000px;}
.fs8_c00468{font-size:51.840000px;}
.fs4_c00468{font-size:54.720000px;}
.fs1_c00468{font-size:57.600000px;}
.fsa_c00468{font-size:60.480000px;}
.fs3_c00468{font-size:63.360000px;}
.fs7_c00468{font-size:66.240000px;}
.fs2_c00468{font-size:69.120000px;}
.fs0_c00468{font-size:72.000000px;}
.fse_c00468{font-size:74.880000px;}
.fsc_c00468{font-size:103.680000px;}
.y0_c00468{bottom:0.000000px;}
.y7d_c00468{bottom:44.640000px;}
.y7f_c00468{bottom:46.080000px;}
.y80_c00468{bottom:46.800000px;}
.y7c_c00468{bottom:47.520000px;}
.y7e_c00468{bottom:48.960000px;}
.y7b_c00468{bottom:88.560000px;}
.y7a_c00468{bottom:91.440000px;}
.y76_c00468{bottom:120.240000px;}
.y79_c00468{bottom:121.680000px;}
.y75_c00468{bottom:123.120000px;}
.y77_c00468{bottom:123.840000px;}
.y78_c00468{bottom:124.560000px;}
.y70_c00468{bottom:163.440000px;}
.y72_c00468{bottom:164.880000px;}
.y73_c00468{bottom:166.320000px;}
.y6f_c00468{bottom:167.040000px;}
.y71_c00468{bottom:167.760000px;}
.y74_c00468{bottom:168.480000px;}
.y6b_c00468{bottom:206.640000px;}
.y69_c00468{bottom:207.360000px;}
.y6e_c00468{bottom:208.080000px;}
.y6c_c00468{bottom:208.800000px;}
.y68_c00468{bottom:209.520000px;}
.y6a_c00468{bottom:210.240000px;}
.y6d_c00468{bottom:216.720000px;}
.y62_c00468{bottom:249.120000px;}
.y65_c00468{bottom:250.560000px;}
.y66_c00468{bottom:251.280000px;}
.y61_c00468{bottom:252.000000px;}
.y64_c00468{bottom:252.720000px;}
.y63_c00468{bottom:253.440000px;}
.y67_c00468{bottom:254.160000px;}
.y5d_c00468{bottom:292.320000px;}
.y5f_c00468{bottom:293.040000px;}
.y5c_c00468{bottom:295.200000px;}
.y5e_c00468{bottom:295.920000px;}
.y60_c00468{bottom:296.640000px;}
.y56_c00468{bottom:335.520000px;}
.y58_c00468{bottom:336.240000px;}
.y5a_c00468{bottom:336.960000px;}
.y59_c00468{bottom:337.680000px;}
.y55_c00468{bottom:338.400000px;}
.y57_c00468{bottom:339.120000px;}
.y5b_c00468{bottom:339.840000px;}
.y51_c00468{bottom:378.000000px;}
.y54_c00468{bottom:380.160000px;}
.y50_c00468{bottom:380.880000px;}
.y52_c00468{bottom:381.600000px;}
.y53_c00468{bottom:382.320000px;}
.y4b_c00468{bottom:421.200000px;}
.y4f_c00468{bottom:421.920000px;}
.y4d_c00468{bottom:422.640000px;}
.y49_c00468{bottom:423.360000px;}
.y4c_c00468{bottom:424.800000px;}
.y4e_c00468{bottom:425.520000px;}
.y4a_c00468{bottom:428.400000px;}
.y48_c00468{bottom:464.400000px;}
.y47_c00468{bottom:468.000000px;}
.y43_c00468{bottom:496.800000px;}
.y46_c00468{bottom:497.520000px;}
.y44_c00468{bottom:498.240000px;}
.y42_c00468{bottom:498.960000px;}
.y45_c00468{bottom:500.400000px;}
.y40_c00468{bottom:532.080000px;}
.y3f_c00468{bottom:539.280000px;}
.y3d_c00468{bottom:540.000000px;}
.y3c_c00468{bottom:541.440000px;}
.y41_c00468{bottom:542.160000px;}
.y3e_c00468{bottom:543.600000px;}
.y36_c00468{bottom:582.480000px;}
.y38_c00468{bottom:583.200000px;}
.y35_c00468{bottom:584.640000px;}
.y39_c00468{bottom:585.360000px;}
.y37_c00468{bottom:586.080000px;}
.y3a_c00468{bottom:586.800000px;}
.y3b_c00468{bottom:587.520000px;}
.y31_c00468{bottom:625.680000px;}
.y33_c00468{bottom:626.400000px;}
.y30_c00468{bottom:627.120000px;}
.y34_c00468{bottom:628.560000px;}
.y32_c00468{bottom:629.280000px;}
.y2e_c00468{bottom:669.600000px;}
.y2d_c00468{bottom:670.320000px;}
.y2f_c00468{bottom:672.480000px;}
.y28_c00468{bottom:712.080000px;}
.y2a_c00468{bottom:712.800000px;}
.y27_c00468{bottom:713.520000px;}
.y29_c00468{bottom:715.680000px;}
.y2b_c00468{bottom:716.400000px;}
.y2c_c00468{bottom:717.120000px;}
.y24_c00468{bottom:754.560000px;}
.y26_c00468{bottom:755.280000px;}
.y23_c00468{bottom:756.000000px;}
.y25_c00468{bottom:758.160000px;}
.y1f_c00468{bottom:797.760000px;}
.y1e_c00468{bottom:799.200000px;}
.y22_c00468{bottom:799.920000px;}
.y21_c00468{bottom:800.640000px;}
.y20_c00468{bottom:801.360000px;}
.y19_c00468{bottom:839.520000px;}
.y1a_c00468{bottom:840.240000px;}
.y1c_c00468{bottom:840.960000px;}
.y18_c00468{bottom:841.680000px;}
.y1b_c00468{bottom:842.400000px;}
.y1d_c00468{bottom:843.120000px;}
.y14_c00468{bottom:882.720000px;}
.y15_c00468{bottom:883.440000px;}
.y17_c00468{bottom:884.160000px;}
.y12_c00468{bottom:884.880000px;}
.y13_c00468{bottom:886.320000px;}
.y16_c00468{bottom:887.040000px;}
.y10_c00468{bottom:925.920000px;}
.y11_c00468{bottom:926.640000px;}
.ye_c00468{bottom:927.360000px;}
.yf_c00468{bottom:930.240000px;}
.yb_c00468{bottom:968.400000px;}
.ya_c00468{bottom:969.840000px;}
.yd_c00468{bottom:971.280000px;}
.yc_c00468{bottom:972.000000px;}
.y7_c00468{bottom:1010.880000px;}
.y9_c00468{bottom:1011.600000px;}
.y8_c00468{bottom:1012.320000px;}
.y6_c00468{bottom:1013.040000px;}
.y3_c00468{bottom:1054.800000px;}
.y4_c00468{bottom:1055.520000px;}
.y2_c00468{bottom:1056.240000px;}
.y5_c00468{bottom:1057.680000px;}
.y1_c00468{bottom:1114.560000px;}
.hf_c00468{height:7.775156px;}
.h11_c00468{height:18.142031px;}
.h12_c00468{height:25.917187px;}
.hb_c00468{height:31.100625px;}
.hd_c00468{height:38.875781px;}
.h8_c00468{height:41.467500px;}
.h7_c00468{height:44.059219px;}
.ha_c00468{height:46.650937px;}
.h6_c00468{height:49.242656px;}
.h3_c00468{height:51.834375px;}
.hc_c00468{height:54.426094px;}
.h5_c00468{height:57.017812px;}
.h9_c00468{height:59.609531px;}
.h4_c00468{height:62.201250px;}
.h2_c00468{height:64.792969px;}
.h10_c00468{height:67.384687px;}
.he_c00468{height:93.301875px;}
.h0_c00468{height:1159.920000px;}
.h1_c00468{height:1160.250000px;}
.w0_c00468{width:777.600000px;}
.w1_c00468{width:777.750000px;}
.x0_c00468{left:0.000000px;}
.x2_c00468{left:56.160000px;}
.x1c_c00468{left:108.720000px;}
.x3_c00468{left:131.040000px;}
.x1b_c00468{left:174.240000px;}
.x11_c00468{left:176.400000px;}
.xb_c00468{left:227.520000px;}
.x4_c00468{left:228.960000px;}
.x14_c00468{left:239.040000px;}
.xc_c00468{left:272.160000px;}
.x9_c00468{left:282.960000px;}
.x15_c00468{left:293.760000px;}
.x20_c00468{left:325.440000px;}
.xd_c00468{left:326.880000px;}
.x16_c00468{left:347.760000px;}
.xe_c00468{left:368.640000px;}
.x1e_c00468{left:390.240000px;}
.x19_c00468{left:391.680000px;}
.x23_c00468{left:423.360000px;}
.x1f_c00468{left:434.160000px;}
.x17_c00468{left:455.760000px;}
.x24_c00468{left:466.560000px;}
.x1a_c00468{left:477.360000px;}
.x18_c00468{left:499.680000px;}
.x5_c00468{left:532.800000px;}
.xa_c00468{left:565.200000px;}
.x12_c00468{left:585.360000px;}
.x6_c00468{left:586.800000px;}
.x1d_c00468{left:609.120000px;}
.xf_c00468{left:619.920000px;}
.x21_c00468{left:642.960000px;}
.x10_c00468{left:652.320000px;}
.x13_c00468{left:663.120000px;}
.x1_c00468{left:686.160000px;}
.x7_c00468{left:695.520000px;}
.x22_c00468{left:696.960000px;}
.x8_c00468{left:716.400000px;}
@media print{
.v0_c00468{vertical-align:0.000000pt;}
.ls0_c00468{letter-spacing:0.000000pt;}
.ws0_c00468{word-spacing:0.000000pt;}
.fsd_c00468{font-size:7.680000pt;}
.fsf_c00468{font-size:17.920000pt;}
.fs10_c00468{font-size:25.600000pt;}
.fs9_c00468{font-size:30.720000pt;}
.fsb_c00468{font-size:38.400000pt;}
.fs6_c00468{font-size:40.960000pt;}
.fs5_c00468{font-size:43.520000pt;}
.fs8_c00468{font-size:46.080000pt;}
.fs4_c00468{font-size:48.640000pt;}
.fs1_c00468{font-size:51.200000pt;}
.fsa_c00468{font-size:53.760000pt;}
.fs3_c00468{font-size:56.320000pt;}
.fs7_c00468{font-size:58.880000pt;}
.fs2_c00468{font-size:61.440000pt;}
.fs0_c00468{font-size:64.000000pt;}
.fse_c00468{font-size:66.560000pt;}
.fsc_c00468{font-size:92.160000pt;}
.y0_c00468{bottom:0.000000pt;}
.y7d_c00468{bottom:39.680000pt;}
.y7f_c00468{bottom:40.960000pt;}
.y80_c00468{bottom:41.600000pt;}
.y7c_c00468{bottom:42.240000pt;}
.y7e_c00468{bottom:43.520000pt;}
.y7b_c00468{bottom:78.720000pt;}
.y7a_c00468{bottom:81.280000pt;}
.y76_c00468{bottom:106.880000pt;}
.y79_c00468{bottom:108.160000pt;}
.y75_c00468{bottom:109.440000pt;}
.y77_c00468{bottom:110.080000pt;}
.y78_c00468{bottom:110.720000pt;}
.y70_c00468{bottom:145.280000pt;}
.y72_c00468{bottom:146.560000pt;}
.y73_c00468{bottom:147.840000pt;}
.y6f_c00468{bottom:148.480000pt;}
.y71_c00468{bottom:149.120000pt;}
.y74_c00468{bottom:149.760000pt;}
.y6b_c00468{bottom:183.680000pt;}
.y69_c00468{bottom:184.320000pt;}
.y6e_c00468{bottom:184.960000pt;}
.y6c_c00468{bottom:185.600000pt;}
.y68_c00468{bottom:186.240000pt;}
.y6a_c00468{bottom:186.880000pt;}
.y6d_c00468{bottom:192.640000pt;}
.y62_c00468{bottom:221.440000pt;}
.y65_c00468{bottom:222.720000pt;}
.y66_c00468{bottom:223.360000pt;}
.y61_c00468{bottom:224.000000pt;}
.y64_c00468{bottom:224.640000pt;}
.y63_c00468{bottom:225.280000pt;}
.y67_c00468{bottom:225.920000pt;}
.y5d_c00468{bottom:259.840000pt;}
.y5f_c00468{bottom:260.480000pt;}
.y5c_c00468{bottom:262.400000pt;}
.y5e_c00468{bottom:263.040000pt;}
.y60_c00468{bottom:263.680000pt;}
.y56_c00468{bottom:298.240000pt;}
.y58_c00468{bottom:298.880000pt;}
.y5a_c00468{bottom:299.520000pt;}
.y59_c00468{bottom:300.160000pt;}
.y55_c00468{bottom:300.800000pt;}
.y57_c00468{bottom:301.440000pt;}
.y5b_c00468{bottom:302.080000pt;}
.y51_c00468{bottom:336.000000pt;}
.y54_c00468{bottom:337.920000pt;}
.y50_c00468{bottom:338.560000pt;}
.y52_c00468{bottom:339.200000pt;}
.y53_c00468{bottom:339.840000pt;}
.y4b_c00468{bottom:374.400000pt;}
.y4f_c00468{bottom:375.040000pt;}
.y4d_c00468{bottom:375.680000pt;}
.y49_c00468{bottom:376.320000pt;}
.y4c_c00468{bottom:377.600000pt;}
.y4e_c00468{bottom:378.240000pt;}
.y4a_c00468{bottom:380.800000pt;}
.y48_c00468{bottom:412.800000pt;}
.y47_c00468{bottom:416.000000pt;}
.y43_c00468{bottom:441.600000pt;}
.y46_c00468{bottom:442.240000pt;}
.y44_c00468{bottom:442.880000pt;}
.y42_c00468{bottom:443.520000pt;}
.y45_c00468{bottom:444.800000pt;}
.y40_c00468{bottom:472.960000pt;}
.y3f_c00468{bottom:479.360000pt;}
.y3d_c00468{bottom:480.000000pt;}
.y3c_c00468{bottom:481.280000pt;}
.y41_c00468{bottom:481.920000pt;}
.y3e_c00468{bottom:483.200000pt;}
.y36_c00468{bottom:517.760000pt;}
.y38_c00468{bottom:518.400000pt;}
.y35_c00468{bottom:519.680000pt;}
.y39_c00468{bottom:520.320000pt;}
.y37_c00468{bottom:520.960000pt;}
.y3a_c00468{bottom:521.600000pt;}
.y3b_c00468{bottom:522.240000pt;}
.y31_c00468{bottom:556.160000pt;}
.y33_c00468{bottom:556.800000pt;}
.y30_c00468{bottom:557.440000pt;}
.y34_c00468{bottom:558.720000pt;}
.y32_c00468{bottom:559.360000pt;}
.y2e_c00468{bottom:595.200000pt;}
.y2d_c00468{bottom:595.840000pt;}
.y2f_c00468{bottom:597.760000pt;}
.y28_c00468{bottom:632.960000pt;}
.y2a_c00468{bottom:633.600000pt;}
.y27_c00468{bottom:634.240000pt;}
.y29_c00468{bottom:636.160000pt;}
.y2b_c00468{bottom:636.800000pt;}
.y2c_c00468{bottom:637.440000pt;}
.y24_c00468{bottom:670.720000pt;}
.y26_c00468{bottom:671.360000pt;}
.y23_c00468{bottom:672.000000pt;}
.y25_c00468{bottom:673.920000pt;}
.y1f_c00468{bottom:709.120000pt;}
.y1e_c00468{bottom:710.400000pt;}
.y22_c00468{bottom:711.040000pt;}
.y21_c00468{bottom:711.680000pt;}
.y20_c00468{bottom:712.320000pt;}
.y19_c00468{bottom:746.240000pt;}
.y1a_c00468{bottom:746.880000pt;}
.y1c_c00468{bottom:747.520000pt;}
.y18_c00468{bottom:748.160000pt;}
.y1b_c00468{bottom:748.800000pt;}
.y1d_c00468{bottom:749.440000pt;}
.y14_c00468{bottom:784.640000pt;}
.y15_c00468{bottom:785.280000pt;}
.y17_c00468{bottom:785.920000pt;}
.y12_c00468{bottom:786.560000pt;}
.y13_c00468{bottom:787.840000pt;}
.y16_c00468{bottom:788.480000pt;}
.y10_c00468{bottom:823.040000pt;}
.y11_c00468{bottom:823.680000pt;}
.ye_c00468{bottom:824.320000pt;}
.yf_c00468{bottom:826.880000pt;}
.yb_c00468{bottom:860.800000pt;}
.ya_c00468{bottom:862.080000pt;}
.yd_c00468{bottom:863.360000pt;}
.yc_c00468{bottom:864.000000pt;}
.y7_c00468{bottom:898.560000pt;}
.y9_c00468{bottom:899.200000pt;}
.y8_c00468{bottom:899.840000pt;}
.y6_c00468{bottom:900.480000pt;}
.y3_c00468{bottom:937.600000pt;}
.y4_c00468{bottom:938.240000pt;}
.y2_c00468{bottom:938.880000pt;}
.y5_c00468{bottom:940.160000pt;}
.y1_c00468{bottom:990.720000pt;}
.hf_c00468{height:6.911250pt;}
.h11_c00468{height:16.126250pt;}
.h12_c00468{height:23.037500pt;}
.hb_c00468{height:27.645000pt;}
.hd_c00468{height:34.556250pt;}
.h8_c00468{height:36.860000pt;}
.h7_c00468{height:39.163750pt;}
.ha_c00468{height:41.467500pt;}
.h6_c00468{height:43.771250pt;}
.h3_c00468{height:46.075000pt;}
.hc_c00468{height:48.378750pt;}
.h5_c00468{height:50.682500pt;}
.h9_c00468{height:52.986250pt;}
.h4_c00468{height:55.290000pt;}
.h2_c00468{height:57.593750pt;}
.h10_c00468{height:59.897500pt;}
.he_c00468{height:82.935000pt;}
.h0_c00468{height:1031.040000pt;}
.h1_c00468{height:1031.333333pt;}
.w0_c00468{width:691.200000pt;}
.w1_c00468{width:691.333333pt;}
.x0_c00468{left:0.000000pt;}
.x2_c00468{left:49.920000pt;}
.x1c_c00468{left:96.640000pt;}
.x3_c00468{left:116.480000pt;}
.x1b_c00468{left:154.880000pt;}
.x11_c00468{left:156.800000pt;}
.xb_c00468{left:202.240000pt;}
.x4_c00468{left:203.520000pt;}
.x14_c00468{left:212.480000pt;}
.xc_c00468{left:241.920000pt;}
.x9_c00468{left:251.520000pt;}
.x15_c00468{left:261.120000pt;}
.x20_c00468{left:289.280000pt;}
.xd_c00468{left:290.560000pt;}
.x16_c00468{left:309.120000pt;}
.xe_c00468{left:327.680000pt;}
.x1e_c00468{left:346.880000pt;}
.x19_c00468{left:348.160000pt;}
.x23_c00468{left:376.320000pt;}
.x1f_c00468{left:385.920000pt;}
.x17_c00468{left:405.120000pt;}
.x24_c00468{left:414.720000pt;}
.x1a_c00468{left:424.320000pt;}
.x18_c00468{left:444.160000pt;}
.x5_c00468{left:473.600000pt;}
.xa_c00468{left:502.400000pt;}
.x12_c00468{left:520.320000pt;}
.x6_c00468{left:521.600000pt;}
.x1d_c00468{left:541.440000pt;}
.xf_c00468{left:551.040000pt;}
.x21_c00468{left:571.520000pt;}
.x10_c00468{left:579.840000pt;}
.x13_c00468{left:589.440000pt;}
.x1_c00468{left:609.920000pt;}
.x7_c00468{left:618.240000pt;}
.x22_c00468{left:619.520000pt;}
.x8_c00468{left:636.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a2acbe6aa46c6688da7946e8.woff2')format("woff");}.ff1_c00469{font-family:ff1_c00469;line-height:1.109863;font-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_c00469{transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);}
.m23_c00469{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m29_c00469{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m2b_c00469{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00469{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m11_c00469{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.md_c00469{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00469{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);}
.m34_c00469{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m25_c00469{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1_c00469{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.ma_c00469{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m14_c00469{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m13_c00469{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00469{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m17_c00469{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m37_c00469{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00469{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m7_c00469{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mf_c00469{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m30_c00469{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m42_c00469{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00469{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m38_c00469{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m39_c00469{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m6_c00469{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m20_c00469{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m33_c00469{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00469{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m28_c00469{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00469{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m44_c00469{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m8_c00469{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mb_c00469{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m10_c00469{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);}
.m3c_c00469{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00469{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m26_c00469{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.mc_c00469{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);}
.m31_c00469{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m0_c00469{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);}
.m22_c00469{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00469{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m3_c00469{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);}
.m43_c00469{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_c00469{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);}
.m12_c00469{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.me_c00469{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00469{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_c00469{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m45_c00469{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);}
.m5_c00469{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m46_c00469{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m21_c00469{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);}
.m3f_c00469{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00469{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);}
.m4_c00469{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m24_c00469{transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);}
.m18_c00469{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m2_c00469{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00469{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m15_c00469{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00469{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m36_c00469{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);}
.m16_c00469{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m27_c00469{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00469{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00469{transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);}
.m32_c00469{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.m35_c00469{transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);}
.m40_c00469{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.v2_c00469{vertical-align:-2.880000px;}
.v0_c00469{vertical-align:0.000000px;}
.v1_c00469{vertical-align:11.520000px;}
.ls1_c00469{letter-spacing:0.000000px;}
.ls0_c00469{letter-spacing:79.176960px;}
.sc__c00469{text-shadow:none;}
.sc0_c00469{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00469{-webkit-text-stroke:0px transparent;}
.sc0_c00469{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00469{word-spacing:0.000000px;}
.ws0_c00469{word-spacing:911.912640px;}
.fc0_c00469{color:transparent;}
.fsd_c00469{font-size:14.400000px;}
.fs1_c00469{font-size:34.560000px;}
.fsb_c00469{font-size:43.200000px;}
.fs4_c00469{font-size:46.080000px;}
.fs2_c00469{font-size:48.960000px;}
.fs3_c00469{font-size:51.840000px;}
.fsa_c00469{font-size:54.720000px;}
.fs6_c00469{font-size:57.600000px;}
.fsc_c00469{font-size:60.480000px;}
.fs8_c00469{font-size:63.360000px;}
.fs7_c00469{font-size:66.240000px;}
.fs5_c00469{font-size:69.120000px;}
.fs9_c00469{font-size:72.000000px;}
.fs0_c00469{font-size:74.880000px;}
.y0_c00469{bottom:0.000000px;}
.y8e_c00469{bottom:84.960000px;}
.y8c_c00469{bottom:85.680000px;}
.y8d_c00469{bottom:87.840000px;}
.y86_c00469{bottom:115.920000px;}
.y87_c00469{bottom:117.360000px;}
.y89_c00469{bottom:118.080000px;}
.y85_c00469{bottom:118.800000px;}
.y8a_c00469{bottom:119.520000px;}
.y88_c00469{bottom:120.240000px;}
.y8b_c00469{bottom:120.960000px;}
.y84_c00469{bottom:153.360000px;}
.y7f_c00469{bottom:159.120000px;}
.y81_c00469{bottom:160.560000px;}
.y7e_c00469{bottom:161.280000px;}
.y82_c00469{bottom:162.000000px;}
.y80_c00469{bottom:163.440000px;}
.y83_c00469{bottom:164.160000px;}
.y7d_c00469{bottom:202.320000px;}
.y7c_c00469{bottom:205.920000px;}
.y77_c00469{bottom:234.720000px;}
.y79_c00469{bottom:236.160000px;}
.y76_c00469{bottom:236.880000px;}
.y7a_c00469{bottom:237.600000px;}
.y78_c00469{bottom:238.320000px;}
.y7b_c00469{bottom:239.040000px;}
.y75_c00469{bottom:271.440000px;}
.y6f_c00469{bottom:277.920000px;}
.y73_c00469{bottom:278.640000px;}
.y71_c00469{bottom:279.360000px;}
.y6e_c00469{bottom:280.080000px;}
.y74_c00469{bottom:280.800000px;}
.y70_c00469{bottom:281.520000px;}
.y72_c00469{bottom:282.240000px;}
.y68_c00469{bottom:321.120000px;}
.y6b_c00469{bottom:321.840000px;}
.y6a_c00469{bottom:322.560000px;}
.y67_c00469{bottom:323.280000px;}
.y6c_c00469{bottom:324.000000px;}
.y69_c00469{bottom:324.720000px;}
.y6d_c00469{bottom:325.440000px;}
.y63_c00469{bottom:363.600000px;}
.y65_c00469{bottom:365.040000px;}
.y66_c00469{bottom:365.760000px;}
.y60_c00469{bottom:366.480000px;}
.y64_c00469{bottom:367.200000px;}
.y61_c00469{bottom:367.920000px;}
.y62_c00469{bottom:370.080000px;}
.y5d_c00469{bottom:406.800000px;}
.y5e_c00469{bottom:408.240000px;}
.y5f_c00469{bottom:408.960000px;}
.y5c_c00469{bottom:409.680000px;}
.y5a_c00469{bottom:450.000000px;}
.y5b_c00469{bottom:450.720000px;}
.y59_c00469{bottom:451.440000px;}
.y58_c00469{bottom:452.160000px;}
.y53_c00469{bottom:493.200000px;}
.y54_c00469{bottom:493.920000px;}
.y55_c00469{bottom:494.640000px;}
.y52_c00469{bottom:495.360000px;}
.y57_c00469{bottom:496.800000px;}
.y56_c00469{bottom:497.520000px;}
.y4c_c00469{bottom:535.680000px;}
.y4f_c00469{bottom:536.400000px;}
.y51_c00469{bottom:537.120000px;}
.y50_c00469{bottom:537.840000px;}
.y4b_c00469{bottom:538.560000px;}
.y4d_c00469{bottom:539.280000px;}
.y4e_c00469{bottom:540.000000px;}
.y47_c00469{bottom:578.880000px;}
.y49_c00469{bottom:580.320000px;}
.y46_c00469{bottom:581.040000px;}
.y48_c00469{bottom:582.480000px;}
.y4a_c00469{bottom:583.200000px;}
.y42_c00469{bottom:621.360000px;}
.y44_c00469{bottom:622.080000px;}
.y45_c00469{bottom:622.800000px;}
.y40_c00469{bottom:623.520000px;}
.y43_c00469{bottom:624.960000px;}
.y41_c00469{bottom:625.680000px;}
.y3a_c00469{bottom:664.560000px;}
.y3d_c00469{bottom:665.280000px;}
.y39_c00469{bottom:666.000000px;}
.y3e_c00469{bottom:666.720000px;}
.y3b_c00469{bottom:667.440000px;}
.y3c_c00469{bottom:668.160000px;}
.y3f_c00469{bottom:668.880000px;}
.y34_c00469{bottom:707.040000px;}
.y37_c00469{bottom:707.760000px;}
.y36_c00469{bottom:708.480000px;}
.y33_c00469{bottom:709.200000px;}
.y35_c00469{bottom:710.640000px;}
.y38_c00469{bottom:711.360000px;}
.y2e_c00469{bottom:749.520000px;}
.y31_c00469{bottom:750.240000px;}
.y32_c00469{bottom:751.680000px;}
.y2d_c00469{bottom:752.400000px;}
.y2f_c00469{bottom:753.120000px;}
.y30_c00469{bottom:753.840000px;}
.y29_c00469{bottom:792.720000px;}
.y26_c00469{bottom:793.440000px;}
.y2a_c00469{bottom:794.160000px;}
.y25_c00469{bottom:794.880000px;}
.y2b_c00469{bottom:795.600000px;}
.y27_c00469{bottom:796.320000px;}
.y28_c00469{bottom:797.040000px;}
.y2c_c00469{bottom:797.760000px;}
.y21_c00469{bottom:835.920000px;}
.y23_c00469{bottom:836.640000px;}
.y20_c00469{bottom:838.080000px;}
.y22_c00469{bottom:839.520000px;}
.y24_c00469{bottom:840.240000px;}
.y1b_c00469{bottom:879.120000px;}
.y1a_c00469{bottom:880.560000px;}
.y1f_c00469{bottom:881.280000px;}
.y1e_c00469{bottom:882.000000px;}
.y1d_c00469{bottom:882.720000px;}
.y1c_c00469{bottom:883.440000px;}
.y17_c00469{bottom:921.600000px;}
.y14_c00469{bottom:922.320000px;}
.y18_c00469{bottom:923.760000px;}
.y13_c00469{bottom:924.480000px;}
.y16_c00469{bottom:925.200000px;}
.y15_c00469{bottom:925.920000px;}
.y19_c00469{bottom:927.360000px;}
.y10_c00469{bottom:965.520000px;}
.ye_c00469{bottom:966.240000px;}
.yf_c00469{bottom:966.960000px;}
.y11_c00469{bottom:968.400000px;}
.y12_c00469{bottom:969.840000px;}
.y9_c00469{bottom:1008.000000px;}
.yb_c00469{bottom:1008.720000px;}
.y8_c00469{bottom:1009.440000px;}
.yc_c00469{bottom:1010.880000px;}
.ya_c00469{bottom:1011.600000px;}
.yd_c00469{bottom:1013.040000px;}
.y2_c00469{bottom:1050.480000px;}
.y6_c00469{bottom:1051.920000px;}
.y5_c00469{bottom:1052.640000px;}
.y4_c00469{bottom:1054.080000px;}
.y3_c00469{bottom:1054.800000px;}
.y7_c00469{bottom:1055.520000px;}
.y1_c00469{bottom:1113.120000px;}
.h10_c00469{height:12.958594px;}
.h3_c00469{height:31.100625px;}
.hd_c00469{height:38.875781px;}
.h6_c00469{height:41.467500px;}
.h4_c00469{height:44.059219px;}
.h5_c00469{height:46.650937px;}
.hc_c00469{height:49.242656px;}
.h8_c00469{height:51.834375px;}
.he_c00469{height:54.426094px;}
.ha_c00469{height:57.017812px;}
.h9_c00469{height:59.609531px;}
.h7_c00469{height:62.201250px;}
.hb_c00469{height:64.792969px;}
.h2_c00469{height:67.384687px;}
.hf_c00469{height:68.537812px;}
.h0_c00469{height:1160.640000px;}
.h1_c00469{height:1161.000000px;}
.w0_c00469{width:780.480000px;}
.w1_c00469{width:780.750000px;}
.x0_c00469{left:0.000000px;}
.x2_c00469{left:56.880000px;}
.x26_c00469{left:68.400000px;}
.x23_c00469{left:101.520000px;}
.x24_c00469{left:109.440000px;}
.x1d_c00469{left:131.760000px;}
.xd_c00469{left:133.200000px;}
.x10_c00469{left:177.120000px;}
.x29_c00469{left:185.760000px;}
.x3_c00469{left:220.320000px;}
.x19_c00469{left:228.960000px;}
.xe_c00469{left:230.400000px;}
.x4_c00469{left:261.360000px;}
.xf_c00469{left:273.600000px;}
.x13_c00469{left:282.960000px;}
.x1e_c00469{left:284.400000px;}
.x25_c00469{left:316.080000px;}
.x1f_c00469{left:326.160000px;}
.x14_c00469{left:327.600000px;}
.x5_c00469{left:360.000000px;}
.x15_c00469{left:369.360000px;}
.x20_c00469{left:380.160000px;}
.x11_c00469{left:391.680000px;}
.x2a_c00469{left:412.560000px;}
.x6_c00469{left:414.000000px;}
.x1c_c00469{left:424.080000px;}
.x1a_c00469{left:425.520000px;}
.x12_c00469{left:434.160000px;}
.x7_c00469{left:456.480000px;}
.x27_c00469{left:467.280000px;}
.x21_c00469{left:532.080000px;}
.x8_c00469{left:533.520000px;}
.x22_c00469{left:565.200000px;}
.x9_c00469{left:586.800000px;}
.x16_c00469{left:619.920000px;}
.x1b_c00469{left:621.360000px;}
.xa_c00469{left:643.680000px;}
.x17_c00469{left:653.760000px;}
.xb_c00469{left:663.840000px;}
.x1_c00469{left:669.600000px;}
.x28_c00469{left:695.520000px;}
.xc_c00469{left:696.960000px;}
.x18_c00469{left:717.840000px;}
@media print{
.v2_c00469{vertical-align:-2.560000pt;}
.v0_c00469{vertical-align:0.000000pt;}
.v1_c00469{vertical-align:10.240000pt;}
.ls1_c00469{letter-spacing:0.000000pt;}
.ls0_c00469{letter-spacing:70.379520pt;}
.ws1_c00469{word-spacing:0.000000pt;}
.ws0_c00469{word-spacing:810.589013pt;}
.fsd_c00469{font-size:12.800000pt;}
.fs1_c00469{font-size:30.720000pt;}
.fsb_c00469{font-size:38.400000pt;}
.fs4_c00469{font-size:40.960000pt;}
.fs2_c00469{font-size:43.520000pt;}
.fs3_c00469{font-size:46.080000pt;}
.fsa_c00469{font-size:48.640000pt;}
.fs6_c00469{font-size:51.200000pt;}
.fsc_c00469{font-size:53.760000pt;}
.fs8_c00469{font-size:56.320000pt;}
.fs7_c00469{font-size:58.880000pt;}
.fs5_c00469{font-size:61.440000pt;}
.fs9_c00469{font-size:64.000000pt;}
.fs0_c00469{font-size:66.560000pt;}
.y0_c00469{bottom:0.000000pt;}
.y8e_c00469{bottom:75.520000pt;}
.y8c_c00469{bottom:76.160000pt;}
.y8d_c00469{bottom:78.080000pt;}
.y86_c00469{bottom:103.040000pt;}
.y87_c00469{bottom:104.320000pt;}
.y89_c00469{bottom:104.960000pt;}
.y85_c00469{bottom:105.600000pt;}
.y8a_c00469{bottom:106.240000pt;}
.y88_c00469{bottom:106.880000pt;}
.y8b_c00469{bottom:107.520000pt;}
.y84_c00469{bottom:136.320000pt;}
.y7f_c00469{bottom:141.440000pt;}
.y81_c00469{bottom:142.720000pt;}
.y7e_c00469{bottom:143.360000pt;}
.y82_c00469{bottom:144.000000pt;}
.y80_c00469{bottom:145.280000pt;}
.y83_c00469{bottom:145.920000pt;}
.y7d_c00469{bottom:179.840000pt;}
.y7c_c00469{bottom:183.040000pt;}
.y77_c00469{bottom:208.640000pt;}
.y79_c00469{bottom:209.920000pt;}
.y76_c00469{bottom:210.560000pt;}
.y7a_c00469{bottom:211.200000pt;}
.y78_c00469{bottom:211.840000pt;}
.y7b_c00469{bottom:212.480000pt;}
.y75_c00469{bottom:241.280000pt;}
.y6f_c00469{bottom:247.040000pt;}
.y73_c00469{bottom:247.680000pt;}
.y71_c00469{bottom:248.320000pt;}
.y6e_c00469{bottom:248.960000pt;}
.y74_c00469{bottom:249.600000pt;}
.y70_c00469{bottom:250.240000pt;}
.y72_c00469{bottom:250.880000pt;}
.y68_c00469{bottom:285.440000pt;}
.y6b_c00469{bottom:286.080000pt;}
.y6a_c00469{bottom:286.720000pt;}
.y67_c00469{bottom:287.360000pt;}
.y6c_c00469{bottom:288.000000pt;}
.y69_c00469{bottom:288.640000pt;}
.y6d_c00469{bottom:289.280000pt;}
.y63_c00469{bottom:323.200000pt;}
.y65_c00469{bottom:324.480000pt;}
.y66_c00469{bottom:325.120000pt;}
.y60_c00469{bottom:325.760000pt;}
.y64_c00469{bottom:326.400000pt;}
.y61_c00469{bottom:327.040000pt;}
.y62_c00469{bottom:328.960000pt;}
.y5d_c00469{bottom:361.600000pt;}
.y5e_c00469{bottom:362.880000pt;}
.y5f_c00469{bottom:363.520000pt;}
.y5c_c00469{bottom:364.160000pt;}
.y5a_c00469{bottom:400.000000pt;}
.y5b_c00469{bottom:400.640000pt;}
.y59_c00469{bottom:401.280000pt;}
.y58_c00469{bottom:401.920000pt;}
.y53_c00469{bottom:438.400000pt;}
.y54_c00469{bottom:439.040000pt;}
.y55_c00469{bottom:439.680000pt;}
.y52_c00469{bottom:440.320000pt;}
.y57_c00469{bottom:441.600000pt;}
.y56_c00469{bottom:442.240000pt;}
.y4c_c00469{bottom:476.160000pt;}
.y4f_c00469{bottom:476.800000pt;}
.y51_c00469{bottom:477.440000pt;}
.y50_c00469{bottom:478.080000pt;}
.y4b_c00469{bottom:478.720000pt;}
.y4d_c00469{bottom:479.360000pt;}
.y4e_c00469{bottom:480.000000pt;}
.y47_c00469{bottom:514.560000pt;}
.y49_c00469{bottom:515.840000pt;}
.y46_c00469{bottom:516.480000pt;}
.y48_c00469{bottom:517.760000pt;}
.y4a_c00469{bottom:518.400000pt;}
.y42_c00469{bottom:552.320000pt;}
.y44_c00469{bottom:552.960000pt;}
.y45_c00469{bottom:553.600000pt;}
.y40_c00469{bottom:554.240000pt;}
.y43_c00469{bottom:555.520000pt;}
.y41_c00469{bottom:556.160000pt;}
.y3a_c00469{bottom:590.720000pt;}
.y3d_c00469{bottom:591.360000pt;}
.y39_c00469{bottom:592.000000pt;}
.y3e_c00469{bottom:592.640000pt;}
.y3b_c00469{bottom:593.280000pt;}
.y3c_c00469{bottom:593.920000pt;}
.y3f_c00469{bottom:594.560000pt;}
.y34_c00469{bottom:628.480000pt;}
.y37_c00469{bottom:629.120000pt;}
.y36_c00469{bottom:629.760000pt;}
.y33_c00469{bottom:630.400000pt;}
.y35_c00469{bottom:631.680000pt;}
.y38_c00469{bottom:632.320000pt;}
.y2e_c00469{bottom:666.240000pt;}
.y31_c00469{bottom:666.880000pt;}
.y32_c00469{bottom:668.160000pt;}
.y2d_c00469{bottom:668.800000pt;}
.y2f_c00469{bottom:669.440000pt;}
.y30_c00469{bottom:670.080000pt;}
.y29_c00469{bottom:704.640000pt;}
.y26_c00469{bottom:705.280000pt;}
.y2a_c00469{bottom:705.920000pt;}
.y25_c00469{bottom:706.560000pt;}
.y2b_c00469{bottom:707.200000pt;}
.y27_c00469{bottom:707.840000pt;}
.y28_c00469{bottom:708.480000pt;}
.y2c_c00469{bottom:709.120000pt;}
.y21_c00469{bottom:743.040000pt;}
.y23_c00469{bottom:743.680000pt;}
.y20_c00469{bottom:744.960000pt;}
.y22_c00469{bottom:746.240000pt;}
.y24_c00469{bottom:746.880000pt;}
.y1b_c00469{bottom:781.440000pt;}
.y1a_c00469{bottom:782.720000pt;}
.y1f_c00469{bottom:783.360000pt;}
.y1e_c00469{bottom:784.000000pt;}
.y1d_c00469{bottom:784.640000pt;}
.y1c_c00469{bottom:785.280000pt;}
.y17_c00469{bottom:819.200000pt;}
.y14_c00469{bottom:819.840000pt;}
.y18_c00469{bottom:821.120000pt;}
.y13_c00469{bottom:821.760000pt;}
.y16_c00469{bottom:822.400000pt;}
.y15_c00469{bottom:823.040000pt;}
.y19_c00469{bottom:824.320000pt;}
.y10_c00469{bottom:858.240000pt;}
.ye_c00469{bottom:858.880000pt;}
.yf_c00469{bottom:859.520000pt;}
.y11_c00469{bottom:860.800000pt;}
.y12_c00469{bottom:862.080000pt;}
.y9_c00469{bottom:896.000000pt;}
.yb_c00469{bottom:896.640000pt;}
.y8_c00469{bottom:897.280000pt;}
.yc_c00469{bottom:898.560000pt;}
.ya_c00469{bottom:899.200000pt;}
.yd_c00469{bottom:900.480000pt;}
.y2_c00469{bottom:933.760000pt;}
.y6_c00469{bottom:935.040000pt;}
.y5_c00469{bottom:935.680000pt;}
.y4_c00469{bottom:936.960000pt;}
.y3_c00469{bottom:937.600000pt;}
.y7_c00469{bottom:938.240000pt;}
.y1_c00469{bottom:989.440000pt;}
.h10_c00469{height:11.518750pt;}
.h3_c00469{height:27.645000pt;}
.hd_c00469{height:34.556250pt;}
.h6_c00469{height:36.860000pt;}
.h4_c00469{height:39.163750pt;}
.h5_c00469{height:41.467500pt;}
.hc_c00469{height:43.771250pt;}
.h8_c00469{height:46.075000pt;}
.he_c00469{height:48.378750pt;}
.ha_c00469{height:50.682500pt;}
.h9_c00469{height:52.986250pt;}
.h7_c00469{height:55.290000pt;}
.hb_c00469{height:57.593750pt;}
.h2_c00469{height:59.897500pt;}
.hf_c00469{height:60.922500pt;}
.h0_c00469{height:1031.680000pt;}
.h1_c00469{height:1032.000000pt;}
.w0_c00469{width:693.760000pt;}
.w1_c00469{width:694.000000pt;}
.x0_c00469{left:0.000000pt;}
.x2_c00469{left:50.560000pt;}
.x26_c00469{left:60.800000pt;}
.x23_c00469{left:90.240000pt;}
.x24_c00469{left:97.280000pt;}
.x1d_c00469{left:117.120000pt;}
.xd_c00469{left:118.400000pt;}
.x10_c00469{left:157.440000pt;}
.x29_c00469{left:165.120000pt;}
.x3_c00469{left:195.840000pt;}
.x19_c00469{left:203.520000pt;}
.xe_c00469{left:204.800000pt;}
.x4_c00469{left:232.320000pt;}
.xf_c00469{left:243.200000pt;}
.x13_c00469{left:251.520000pt;}
.x1e_c00469{left:252.800000pt;}
.x25_c00469{left:280.960000pt;}
.x1f_c00469{left:289.920000pt;}
.x14_c00469{left:291.200000pt;}
.x5_c00469{left:320.000000pt;}
.x15_c00469{left:328.320000pt;}
.x20_c00469{left:337.920000pt;}
.x11_c00469{left:348.160000pt;}
.x2a_c00469{left:366.720000pt;}
.x6_c00469{left:368.000000pt;}
.x1c_c00469{left:376.960000pt;}
.x1a_c00469{left:378.240000pt;}
.x12_c00469{left:385.920000pt;}
.x7_c00469{left:405.760000pt;}
.x27_c00469{left:415.360000pt;}
.x21_c00469{left:472.960000pt;}
.x8_c00469{left:474.240000pt;}
.x22_c00469{left:502.400000pt;}
.x9_c00469{left:521.600000pt;}
.x16_c00469{left:551.040000pt;}
.x1b_c00469{left:552.320000pt;}
.xa_c00469{left:572.160000pt;}
.x17_c00469{left:581.120000pt;}
.xb_c00469{left:590.080000pt;}
.x1_c00469{left:595.200000pt;}
.x28_c00469{left:618.240000pt;}
.xc_c00469{left:619.520000pt;}
.x18_c00469{left:638.080000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_30782882f1eade508d151465.woff2')format("woff");}.ff1_c00470{font-family:ff1_c00470;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5e_c00470{transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);}
.m50_c00470{transform:matrix(0.189925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189925,0.000000,0.000000,0.250000,0,0);}
.m54_c00470{transform:matrix(0.227350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227350,0.000000,0.000000,0.250000,0,0);}
.m4c_c00470{transform:matrix(0.228150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228150,0.000000,0.000000,0.250000,0,0);}
.m48_c00470{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.mb_c00470{transform:matrix(0.236800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236800,0.000000,0.000000,0.250000,0,0);}
.m32_c00470{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m44_c00470{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);}
.m55_c00470{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00470{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m4f_c00470{transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);}
.m11_c00470{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m3e_c00470{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mf_c00470{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m21_c00470{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m19_c00470{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1_c00470{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);}
.m3c_c00470{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m6_c00470{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);}
.m29_c00470{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00470{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m10_c00470{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);}
.m53_c00470{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);}
.m34_c00470{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m27_c00470{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m23_c00470{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m12_c00470{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00470{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);}
.m25_c00470{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m17_c00470{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m61_c00470{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00470{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m24_c00470{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.md_c00470{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m9_c00470{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m33_c00470{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2_c00470{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00470{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00470{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00470{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m20_c00470{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m36_c00470{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00470{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m47_c00470{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.ma_c00470{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m60_c00470{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m15_c00470{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);}
.m56_c00470{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);}
.m52_c00470{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00470{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_c00470{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00470{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);}
.m3d_c00470{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m5_c00470{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);}
.m46_c00470{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00470{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m14_c00470{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m18_c00470{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m39_c00470{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00470{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00470{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);}
.m51_c00470{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);}
.m57_c00470{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m30_c00470{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);}
.m0_c00470{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00470{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);}
.m5b_c00470{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);}
.m4_c00470{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00470{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m59_c00470{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m58_c00470{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m43_c00470{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00470{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);}
.m49_c00470{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m26_c00470{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m8_c00470{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00470{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00470{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);}
.m7_c00470{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m37_c00470{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m28_c00470{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.mc_c00470{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m22_c00470{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m16_c00470{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00470{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);}
.m3_c00470{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.me_c00470{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m13_c00470{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00470{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);}
.m45_c00470{transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);}
.m41_c00470{transform:matrix(0.700000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.700000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.700000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00470{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);}
.m40_c00470{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);}
.m35_c00470{transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00470{transform:matrix(0.785000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.785000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.785000,0.000000,0.000000,0.250000,0,0);}
.m31_c00470{transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);}
.m42_c00470{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.m38_c00470{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.v3_c00470{vertical-align:-8.640000px;}
.v1_c00470{vertical-align:-2.880000px;}
.v0_c00470{vertical-align:0.000000px;}
.v2_c00470{vertical-align:8.640000px;}
.ls2_c00470{letter-spacing:0.000000px;}
.ls0_c00470{letter-spacing:122.376960px;}
.ls1_c00470{letter-spacing:128.268960px;}
.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;}
}
.ws4_c00470{word-spacing:0.000000px;}
.ws0_c00470{word-spacing:5.355372px;}
.ws3_c00470{word-spacing:99.702000px;}
.ws2_c00470{word-spacing:116.774888px;}
.ws1_c00470{word-spacing:125.461680px;}
.fc0_c00470{color:transparent;}
.fse_c00470{font-size:11.520000px;}
.fsf_c00470{font-size:20.160000px;}
.fs10_c00470{font-size:25.920000px;}
.fs9_c00470{font-size:34.560000px;}
.fs4_c00470{font-size:43.200000px;}
.fs5_c00470{font-size:46.080000px;}
.fs3_c00470{font-size:48.960000px;}
.fsc_c00470{font-size:51.840000px;}
.fsb_c00470{font-size:54.720000px;}
.fs0_c00470{font-size:57.600000px;}
.fs2_c00470{font-size:60.480000px;}
.fsa_c00470{font-size:63.360000px;}
.fs7_c00470{font-size:66.240000px;}
.fs6_c00470{font-size:69.120000px;}
.fs1_c00470{font-size:72.000000px;}
.fs8_c00470{font-size:74.880000px;}
.fsd_c00470{font-size:77.760000px;}
.y0_c00470{bottom:0.000000px;}
.y70_c00470{bottom:136.800000px;}
.y6f_c00470{bottom:138.240000px;}
.y6e_c00470{bottom:158.400000px;}
.y84_c00470{bottom:159.120000px;}
.y6d_c00470{bottom:159.840000px;}
.ya1_c00470{bottom:160.560000px;}
.y8f_c00470{bottom:162.000000px;}
.y6c_c00470{bottom:180.000000px;}
.y8e_c00470{bottom:180.720000px;}
.y88_c00470{bottom:181.440000px;}
.y7a_c00470{bottom:182.160000px;}
.y94_c00470{bottom:182.880000px;}
.y6b_c00470{bottom:183.600000px;}
.ya0_c00470{bottom:184.320000px;}
.y6a_c00470{bottom:201.600000px;}
.y83_c00470{bottom:202.320000px;}
.y9f_c00470{bottom:203.040000px;}
.y79_c00470{bottom:203.760000px;}
.y8d_c00470{bottom:205.200000px;}
.y68_c00470{bottom:223.200000px;}
.y82_c00470{bottom:223.920000px;}
.y9e_c00470{bottom:224.640000px;}
.ya2_c00470{bottom:226.080000px;}
.y69_c00470{bottom:226.800000px;}
.y78_c00470{bottom:244.080000px;}
.y81_c00470{bottom:244.800000px;}
.y67_c00470{bottom:245.520000px;}
.y9c_c00470{bottom:246.240000px;}
.y93_c00470{bottom:246.960000px;}
.y9d_c00470{bottom:247.680000px;}
.y77_c00470{bottom:265.680000px;}
.y66_c00470{bottom:266.400000px;}
.y87_c00470{bottom:267.120000px;}
.y97_c00470{bottom:267.840000px;}
.y9b_c00470{bottom:268.560000px;}
.y8c_c00470{bottom:269.280000px;}
.y76_c00470{bottom:287.280000px;}
.y80_c00470{bottom:288.000000px;}
.y8b_c00470{bottom:288.720000px;}
.y65_c00470{bottom:290.160000px;}
.y64_c00470{bottom:290.880000px;}
.y75_c00470{bottom:308.160000px;}
.y86_c00470{bottom:308.880000px;}
.y7f_c00470{bottom:309.600000px;}
.y85_c00470{bottom:311.040000px;}
.y63_c00470{bottom:311.760000px;}
.y7e_c00470{bottom:330.480000px;}
.y96_c00470{bottom:331.200000px;}
.y74_c00470{bottom:332.640000px;}
.y62_c00470{bottom:333.360000px;}
.y73_c00470{bottom:351.360000px;}
.y92_c00470{bottom:352.080000px;}
.y60_c00470{bottom:352.800000px;}
.y61_c00470{bottom:354.240000px;}
.y9a_c00470{bottom:355.680000px;}
.y7d_c00470{bottom:372.960000px;}
.y5f_c00470{bottom:373.680000px;}
.y5e_c00470{bottom:374.400000px;}
.y72_c00470{bottom:375.120000px;}
.y91_c00470{bottom:375.840000px;}
.y95_c00470{bottom:376.560000px;}
.y71_c00470{bottom:394.560000px;}
.y7c_c00470{bottom:395.280000px;}
.y5d_c00470{bottom:396.000000px;}
.y8a_c00470{bottom:398.160000px;}
.y7b_c00470{bottom:416.160000px;}
.y90_c00470{bottom:416.880000px;}
.y99_c00470{bottom:417.600000px;}
.y5c_c00470{bottom:418.320000px;}
.y89_c00470{bottom:419.040000px;}
.y5b_c00470{bottom:419.760000px;}
.y34_c00470{bottom:449.280000px;}
.y5a_c00470{bottom:450.000000px;}
.y33_c00470{bottom:450.720000px;}
.y98_c00470{bottom:451.440000px;}
.y59_c00470{bottom:457.920000px;}
.y35_c00470{bottom:492.480000px;}
.y56_c00470{bottom:493.200000px;}
.y32_c00470{bottom:493.920000px;}
.y31_c00470{bottom:494.640000px;}
.y58_c00470{bottom:496.080000px;}
.y57_c00470{bottom:497.520000px;}
.y30_c00470{bottom:524.160000px;}
.y54_c00470{bottom:524.880000px;}
.y55_c00470{bottom:525.600000px;}
.y53_c00470{bottom:527.040000px;}
.y52_c00470{bottom:555.840000px;}
.y2e_c00470{bottom:558.720000px;}
.y2f_c00470{bottom:559.440000px;}
.y51_c00470{bottom:589.680000px;}
.y50_c00470{bottom:593.280000px;}
.y39_c00470{bottom:611.280000px;}
.y37_c00470{bottom:612.720000px;}
.y3a_c00470{bottom:613.440000px;}
.y4d_c00470{bottom:614.160000px;}
.y4f_c00470{bottom:616.320000px;}
.y2c_c00470{bottom:620.640000px;}
.y2d_c00470{bottom:621.360000px;}
.y2b_c00470{bottom:623.520000px;}
.y36_c00470{bottom:634.320000px;}
.y38_c00470{bottom:635.040000px;}
.y4e_c00470{bottom:636.480000px;}
.y28_c00470{bottom:684.000000px;}
.y2a_c00470{bottom:684.720000px;}
.y27_c00470{bottom:685.440000px;}
.y29_c00470{bottom:687.600000px;}
.y4c_c00470{bottom:689.040000px;}
.y24_c00470{bottom:726.480000px;}
.y26_c00470{bottom:727.200000px;}
.y23_c00470{bottom:728.640000px;}
.y4a_c00470{bottom:729.360000px;}
.y25_c00470{bottom:730.080000px;}
.y4b_c00470{bottom:731.520000px;}
.y22_c00470{bottom:768.960000px;}
.y20_c00470{bottom:771.120000px;}
.y47_c00470{bottom:772.560000px;}
.y21_c00470{bottom:773.280000px;}
.y46_c00470{bottom:774.000000px;}
.y49_c00470{bottom:774.720000px;}
.y48_c00470{bottom:775.440000px;}
.y1f_c00470{bottom:811.440000px;}
.y1d_c00470{bottom:814.320000px;}
.y44_c00470{bottom:815.040000px;}
.y45_c00470{bottom:815.760000px;}
.y1e_c00470{bottom:816.480000px;}
.y1c_c00470{bottom:854.640000px;}
.y1a_c00470{bottom:856.080000px;}
.y41_c00470{bottom:856.800000px;}
.y1b_c00470{bottom:858.240000px;}
.y40_c00470{bottom:858.960000px;}
.y42_c00470{bottom:859.680000px;}
.y43_c00470{bottom:860.400000px;}
.y19_c00470{bottom:897.120000px;}
.y17_c00470{bottom:897.840000px;}
.y3d_c00470{bottom:900.000000px;}
.y3b_c00470{bottom:900.720000px;}
.y18_c00470{bottom:901.440000px;}
.y3f_c00470{bottom:902.160000px;}
.y3e_c00470{bottom:902.880000px;}
.y10_c00470{bottom:941.040000px;}
.y13_c00470{bottom:942.480000px;}
.y12_c00470{bottom:943.200000px;}
.y11_c00470{bottom:943.920000px;}
.y14_c00470{bottom:944.640000px;}
.ya_c00470{bottom:971.280000px;}
.yb_c00470{bottom:972.720000px;}
.y9_c00470{bottom:973.440000px;}
.ye_c00470{bottom:974.160000px;}
.y16_c00470{bottom:974.880000px;}
.yc_c00470{bottom:975.600000px;}
.yd_c00470{bottom:976.320000px;}
.y15_c00470{bottom:977.760000px;}
.y8_c00470{bottom:1015.920000px;}
.y6_c00470{bottom:1016.640000px;}
.y7_c00470{bottom:1019.520000px;}
.y2_c00470{bottom:1047.600000px;}
.y3_c00470{bottom:1048.320000px;}
.y1_c00470{bottom:1049.040000px;}
.y5_c00470{bottom:1049.760000px;}
.yf_c00470{bottom:1050.480000px;}
.y4_c00470{bottom:1051.200000px;}
.y3c_c00470{bottom:1119.600000px;}
.h10_c00470{height:10.366875px;}
.h12_c00470{height:18.142031px;}
.h13_c00470{height:23.325469px;}
.hb_c00470{height:31.100625px;}
.h6_c00470{height:38.875781px;}
.h7_c00470{height:41.467500px;}
.h5_c00470{height:44.059219px;}
.he_c00470{height:46.650937px;}
.h11_c00470{height:47.515781px;}
.hd_c00470{height:49.242656px;}
.h2_c00470{height:51.834375px;}
.h4_c00470{height:54.426094px;}
.hc_c00470{height:57.017812px;}
.h9_c00470{height:59.609531px;}
.h8_c00470{height:62.201250px;}
.h3_c00470{height:64.792969px;}
.ha_c00470{height:67.384687px;}
.hf_c00470{height:69.976406px;}
.h0_c00470{height:1156.320000px;}
.h1_c00470{height:1156.500000px;}
.w1_c00470{width:773.250000px;}
.w0_c00470{width:773.280000px;}
.x0_c00470{left:0.000000px;}
.x1_c00470{left:47.520000px;}
.x18_c00470{left:48.960000px;}
.x47_c00470{left:51.120000px;}
.x45_c00470{left:59.760000px;}
.x43_c00470{left:61.200000px;}
.x19_c00470{left:69.840000px;}
.x1c_c00470{left:79.920000px;}
.x1d_c00470{left:81.360000px;}
.x44_c00470{left:92.880000px;}
.x49_c00470{left:94.320000px;}
.x46_c00470{left:103.680000px;}
.x48_c00470{left:105.120000px;}
.x1a_c00470{left:114.480000px;}
.x2_c00470{left:123.120000px;}
.x15_c00470{left:124.560000px;}
.x1b_c00470{left:144.720000px;}
.x4a_c00470{left:146.880000px;}
.x4b_c00470{left:148.320000px;}
.x1e_c00470{left:157.680000px;}
.x42_c00470{left:168.480000px;}
.x4c_c00470{left:169.920000px;}
.x8_c00470{left:177.120000px;}
.x14_c00470{left:178.560000px;}
.x36_c00470{left:188.640000px;}
.x40_c00470{left:190.080000px;}
.x20_c00470{left:200.880000px;}
.x1f_c00470{left:211.680000px;}
.x4f_c00470{left:213.120000px;}
.x3_c00470{left:220.320000px;}
.x41_c00470{left:223.200000px;}
.x16_c00470{left:231.840000px;}
.x4d_c00470{left:244.800000px;}
.x50_c00470{left:246.240000px;}
.xe_c00470{left:252.720000px;}
.x22_c00470{left:254.880000px;}
.x21_c00470{left:265.680000px;}
.x9_c00470{left:275.760000px;}
.x17_c00470{left:287.280000px;}
.x4e_c00470{left:288.720000px;}
.x4_c00470{left:306.720000px;}
.x23_c00470{left:319.680000px;}
.x24_c00470{left:329.760000px;}
.x53_c00470{left:331.920000px;}
.x55_c00470{left:341.280000px;}
.x54_c00470{left:342.720000px;}
.xf_c00470{left:350.640000px;}
.x5_c00470{left:360.720000px;}
.x37_c00470{left:372.960000px;}
.x25_c00470{left:384.480000px;}
.x56_c00470{left:385.920000px;}
.x10_c00470{left:393.120000px;}
.x3b_c00470{left:395.280000px;}
.x6_c00470{left:403.920000px;}
.x51_c00470{left:407.520000px;}
.x3d_c00470{left:429.120000px;}
.x2e_c00470{left:438.480000px;}
.x57_c00470{left:449.280000px;}
.x52_c00470{left:450.720000px;}
.x59_c00470{left:452.160000px;}
.xa_c00470{left:459.360000px;}
.x38_c00470{left:471.600000px;}
.x58_c00470{left:473.760000px;}
.x30_c00470{left:482.400000px;}
.x11_c00470{left:490.320000px;}
.x3e_c00470{left:492.480000px;}
.x7_c00470{left:524.880000px;}
.x5b_c00470{left:527.040000px;}
.x12_c00470{left:545.760000px;}
.x31_c00470{left:557.280000px;}
.x39_c00470{left:568.080000px;}
.x3c_c00470{left:569.520000px;}
.x5d_c00470{left:570.960000px;}
.x29_c00470{left:578.160000px;}
.x32_c00470{left:580.320000px;}
.x5c_c00470{left:581.760000px;}
.x13_c00470{left:589.680000px;}
.x3f_c00470{left:601.200000px;}
.xb_c00470{left:611.280000px;}
.x2a_c00470{left:612.720000px;}
.x60_c00470{left:614.880000px;}
.x3a_c00470{left:624.240000px;}
.x5e_c00470{left:625.680000px;}
.x27_c00470{left:644.400000px;}
.x2b_c00470{left:645.840000px;}
.x5f_c00470{left:648.000000px;}
.xc_c00470{left:654.480000px;}
.x2d_c00470{left:655.920000px;}
.x33_c00470{left:667.440000px;}
.x26_c00470{left:676.080000px;}
.x35_c00470{left:678.240000px;}
.x61_c00470{left:680.400000px;}
.xd_c00470{left:687.600000px;}
.x2c_c00470{left:689.040000px;}
.x5a_c00470{left:690.480000px;}
.x2f_c00470{left:698.400000px;}
.x34_c00470{left:699.840000px;}
.x28_c00470{left:708.480000px;}
@media print{
.v3_c00470{vertical-align:-7.680000pt;}
.v1_c00470{vertical-align:-2.560000pt;}
.v0_c00470{vertical-align:0.000000pt;}
.v2_c00470{vertical-align:7.680000pt;}
.ls2_c00470{letter-spacing:0.000000pt;}
.ls0_c00470{letter-spacing:108.779520pt;}
.ls1_c00470{letter-spacing:114.016853pt;}
.ws4_c00470{word-spacing:0.000000pt;}
.ws0_c00470{word-spacing:4.760330pt;}
.ws3_c00470{word-spacing:88.624000pt;}
.ws2_c00470{word-spacing:103.799900pt;}
.ws1_c00470{word-spacing:111.521493pt;}
.fse_c00470{font-size:10.240000pt;}
.fsf_c00470{font-size:17.920000pt;}
.fs10_c00470{font-size:23.040000pt;}
.fs9_c00470{font-size:30.720000pt;}
.fs4_c00470{font-size:38.400000pt;}
.fs5_c00470{font-size:40.960000pt;}
.fs3_c00470{font-size:43.520000pt;}
.fsc_c00470{font-size:46.080000pt;}
.fsb_c00470{font-size:48.640000pt;}
.fs0_c00470{font-size:51.200000pt;}
.fs2_c00470{font-size:53.760000pt;}
.fsa_c00470{font-size:56.320000pt;}
.fs7_c00470{font-size:58.880000pt;}
.fs6_c00470{font-size:61.440000pt;}
.fs1_c00470{font-size:64.000000pt;}
.fs8_c00470{font-size:66.560000pt;}
.fsd_c00470{font-size:69.120000pt;}
.y0_c00470{bottom:0.000000pt;}
.y70_c00470{bottom:121.600000pt;}
.y6f_c00470{bottom:122.880000pt;}
.y6e_c00470{bottom:140.800000pt;}
.y84_c00470{bottom:141.440000pt;}
.y6d_c00470{bottom:142.080000pt;}
.ya1_c00470{bottom:142.720000pt;}
.y8f_c00470{bottom:144.000000pt;}
.y6c_c00470{bottom:160.000000pt;}
.y8e_c00470{bottom:160.640000pt;}
.y88_c00470{bottom:161.280000pt;}
.y7a_c00470{bottom:161.920000pt;}
.y94_c00470{bottom:162.560000pt;}
.y6b_c00470{bottom:163.200000pt;}
.ya0_c00470{bottom:163.840000pt;}
.y6a_c00470{bottom:179.200000pt;}
.y83_c00470{bottom:179.840000pt;}
.y9f_c00470{bottom:180.480000pt;}
.y79_c00470{bottom:181.120000pt;}
.y8d_c00470{bottom:182.400000pt;}
.y68_c00470{bottom:198.400000pt;}
.y82_c00470{bottom:199.040000pt;}
.y9e_c00470{bottom:199.680000pt;}
.ya2_c00470{bottom:200.960000pt;}
.y69_c00470{bottom:201.600000pt;}
.y78_c00470{bottom:216.960000pt;}
.y81_c00470{bottom:217.600000pt;}
.y67_c00470{bottom:218.240000pt;}
.y9c_c00470{bottom:218.880000pt;}
.y93_c00470{bottom:219.520000pt;}
.y9d_c00470{bottom:220.160000pt;}
.y77_c00470{bottom:236.160000pt;}
.y66_c00470{bottom:236.800000pt;}
.y87_c00470{bottom:237.440000pt;}
.y97_c00470{bottom:238.080000pt;}
.y9b_c00470{bottom:238.720000pt;}
.y8c_c00470{bottom:239.360000pt;}
.y76_c00470{bottom:255.360000pt;}
.y80_c00470{bottom:256.000000pt;}
.y8b_c00470{bottom:256.640000pt;}
.y65_c00470{bottom:257.920000pt;}
.y64_c00470{bottom:258.560000pt;}
.y75_c00470{bottom:273.920000pt;}
.y86_c00470{bottom:274.560000pt;}
.y7f_c00470{bottom:275.200000pt;}
.y85_c00470{bottom:276.480000pt;}
.y63_c00470{bottom:277.120000pt;}
.y7e_c00470{bottom:293.760000pt;}
.y96_c00470{bottom:294.400000pt;}
.y74_c00470{bottom:295.680000pt;}
.y62_c00470{bottom:296.320000pt;}
.y73_c00470{bottom:312.320000pt;}
.y92_c00470{bottom:312.960000pt;}
.y60_c00470{bottom:313.600000pt;}
.y61_c00470{bottom:314.880000pt;}
.y9a_c00470{bottom:316.160000pt;}
.y7d_c00470{bottom:331.520000pt;}
.y5f_c00470{bottom:332.160000pt;}
.y5e_c00470{bottom:332.800000pt;}
.y72_c00470{bottom:333.440000pt;}
.y91_c00470{bottom:334.080000pt;}
.y95_c00470{bottom:334.720000pt;}
.y71_c00470{bottom:350.720000pt;}
.y7c_c00470{bottom:351.360000pt;}
.y5d_c00470{bottom:352.000000pt;}
.y8a_c00470{bottom:353.920000pt;}
.y7b_c00470{bottom:369.920000pt;}
.y90_c00470{bottom:370.560000pt;}
.y99_c00470{bottom:371.200000pt;}
.y5c_c00470{bottom:371.840000pt;}
.y89_c00470{bottom:372.480000pt;}
.y5b_c00470{bottom:373.120000pt;}
.y34_c00470{bottom:399.360000pt;}
.y5a_c00470{bottom:400.000000pt;}
.y33_c00470{bottom:400.640000pt;}
.y98_c00470{bottom:401.280000pt;}
.y59_c00470{bottom:407.040000pt;}
.y35_c00470{bottom:437.760000pt;}
.y56_c00470{bottom:438.400000pt;}
.y32_c00470{bottom:439.040000pt;}
.y31_c00470{bottom:439.680000pt;}
.y58_c00470{bottom:440.960000pt;}
.y57_c00470{bottom:442.240000pt;}
.y30_c00470{bottom:465.920000pt;}
.y54_c00470{bottom:466.560000pt;}
.y55_c00470{bottom:467.200000pt;}
.y53_c00470{bottom:468.480000pt;}
.y52_c00470{bottom:494.080000pt;}
.y2e_c00470{bottom:496.640000pt;}
.y2f_c00470{bottom:497.280000pt;}
.y51_c00470{bottom:524.160000pt;}
.y50_c00470{bottom:527.360000pt;}
.y39_c00470{bottom:543.360000pt;}
.y37_c00470{bottom:544.640000pt;}
.y3a_c00470{bottom:545.280000pt;}
.y4d_c00470{bottom:545.920000pt;}
.y4f_c00470{bottom:547.840000pt;}
.y2c_c00470{bottom:551.680000pt;}
.y2d_c00470{bottom:552.320000pt;}
.y2b_c00470{bottom:554.240000pt;}
.y36_c00470{bottom:563.840000pt;}
.y38_c00470{bottom:564.480000pt;}
.y4e_c00470{bottom:565.760000pt;}
.y28_c00470{bottom:608.000000pt;}
.y2a_c00470{bottom:608.640000pt;}
.y27_c00470{bottom:609.280000pt;}
.y29_c00470{bottom:611.200000pt;}
.y4c_c00470{bottom:612.480000pt;}
.y24_c00470{bottom:645.760000pt;}
.y26_c00470{bottom:646.400000pt;}
.y23_c00470{bottom:647.680000pt;}
.y4a_c00470{bottom:648.320000pt;}
.y25_c00470{bottom:648.960000pt;}
.y4b_c00470{bottom:650.240000pt;}
.y22_c00470{bottom:683.520000pt;}
.y20_c00470{bottom:685.440000pt;}
.y47_c00470{bottom:686.720000pt;}
.y21_c00470{bottom:687.360000pt;}
.y46_c00470{bottom:688.000000pt;}
.y49_c00470{bottom:688.640000pt;}
.y48_c00470{bottom:689.280000pt;}
.y1f_c00470{bottom:721.280000pt;}
.y1d_c00470{bottom:723.840000pt;}
.y44_c00470{bottom:724.480000pt;}
.y45_c00470{bottom:725.120000pt;}
.y1e_c00470{bottom:725.760000pt;}
.y1c_c00470{bottom:759.680000pt;}
.y1a_c00470{bottom:760.960000pt;}
.y41_c00470{bottom:761.600000pt;}
.y1b_c00470{bottom:762.880000pt;}
.y40_c00470{bottom:763.520000pt;}
.y42_c00470{bottom:764.160000pt;}
.y43_c00470{bottom:764.800000pt;}
.y19_c00470{bottom:797.440000pt;}
.y17_c00470{bottom:798.080000pt;}
.y3d_c00470{bottom:800.000000pt;}
.y3b_c00470{bottom:800.640000pt;}
.y18_c00470{bottom:801.280000pt;}
.y3f_c00470{bottom:801.920000pt;}
.y3e_c00470{bottom:802.560000pt;}
.y10_c00470{bottom:836.480000pt;}
.y13_c00470{bottom:837.760000pt;}
.y12_c00470{bottom:838.400000pt;}
.y11_c00470{bottom:839.040000pt;}
.y14_c00470{bottom:839.680000pt;}
.ya_c00470{bottom:863.360000pt;}
.yb_c00470{bottom:864.640000pt;}
.y9_c00470{bottom:865.280000pt;}
.ye_c00470{bottom:865.920000pt;}
.y16_c00470{bottom:866.560000pt;}
.yc_c00470{bottom:867.200000pt;}
.yd_c00470{bottom:867.840000pt;}
.y15_c00470{bottom:869.120000pt;}
.y8_c00470{bottom:903.040000pt;}
.y6_c00470{bottom:903.680000pt;}
.y7_c00470{bottom:906.240000pt;}
.y2_c00470{bottom:931.200000pt;}
.y3_c00470{bottom:931.840000pt;}
.y1_c00470{bottom:932.480000pt;}
.y5_c00470{bottom:933.120000pt;}
.yf_c00470{bottom:933.760000pt;}
.y4_c00470{bottom:934.400000pt;}
.y3c_c00470{bottom:995.200000pt;}
.h10_c00470{height:9.215000pt;}
.h12_c00470{height:16.126250pt;}
.h13_c00470{height:20.733750pt;}
.hb_c00470{height:27.645000pt;}
.h6_c00470{height:34.556250pt;}
.h7_c00470{height:36.860000pt;}
.h5_c00470{height:39.163750pt;}
.he_c00470{height:41.467500pt;}
.h11_c00470{height:42.236250pt;}
.hd_c00470{height:43.771250pt;}
.h2_c00470{height:46.075000pt;}
.h4_c00470{height:48.378750pt;}
.hc_c00470{height:50.682500pt;}
.h9_c00470{height:52.986250pt;}
.h8_c00470{height:55.290000pt;}
.h3_c00470{height:57.593750pt;}
.ha_c00470{height:59.897500pt;}
.hf_c00470{height:62.201250pt;}
.h0_c00470{height:1027.840000pt;}
.h1_c00470{height:1028.000000pt;}
.w1_c00470{width:687.333333pt;}
.w0_c00470{width:687.360000pt;}
.x0_c00470{left:0.000000pt;}
.x1_c00470{left:42.240000pt;}
.x18_c00470{left:43.520000pt;}
.x47_c00470{left:45.440000pt;}
.x45_c00470{left:53.120000pt;}
.x43_c00470{left:54.400000pt;}
.x19_c00470{left:62.080000pt;}
.x1c_c00470{left:71.040000pt;}
.x1d_c00470{left:72.320000pt;}
.x44_c00470{left:82.560000pt;}
.x49_c00470{left:83.840000pt;}
.x46_c00470{left:92.160000pt;}
.x48_c00470{left:93.440000pt;}
.x1a_c00470{left:101.760000pt;}
.x2_c00470{left:109.440000pt;}
.x15_c00470{left:110.720000pt;}
.x1b_c00470{left:128.640000pt;}
.x4a_c00470{left:130.560000pt;}
.x4b_c00470{left:131.840000pt;}
.x1e_c00470{left:140.160000pt;}
.x42_c00470{left:149.760000pt;}
.x4c_c00470{left:151.040000pt;}
.x8_c00470{left:157.440000pt;}
.x14_c00470{left:158.720000pt;}
.x36_c00470{left:167.680000pt;}
.x40_c00470{left:168.960000pt;}
.x20_c00470{left:178.560000pt;}
.x1f_c00470{left:188.160000pt;}
.x4f_c00470{left:189.440000pt;}
.x3_c00470{left:195.840000pt;}
.x41_c00470{left:198.400000pt;}
.x16_c00470{left:206.080000pt;}
.x4d_c00470{left:217.600000pt;}
.x50_c00470{left:218.880000pt;}
.xe_c00470{left:224.640000pt;}
.x22_c00470{left:226.560000pt;}
.x21_c00470{left:236.160000pt;}
.x9_c00470{left:245.120000pt;}
.x17_c00470{left:255.360000pt;}
.x4e_c00470{left:256.640000pt;}
.x4_c00470{left:272.640000pt;}
.x23_c00470{left:284.160000pt;}
.x24_c00470{left:293.120000pt;}
.x53_c00470{left:295.040000pt;}
.x55_c00470{left:303.360000pt;}
.x54_c00470{left:304.640000pt;}
.xf_c00470{left:311.680000pt;}
.x5_c00470{left:320.640000pt;}
.x37_c00470{left:331.520000pt;}
.x25_c00470{left:341.760000pt;}
.x56_c00470{left:343.040000pt;}
.x10_c00470{left:349.440000pt;}
.x3b_c00470{left:351.360000pt;}
.x6_c00470{left:359.040000pt;}
.x51_c00470{left:362.240000pt;}
.x3d_c00470{left:381.440000pt;}
.x2e_c00470{left:389.760000pt;}
.x57_c00470{left:399.360000pt;}
.x52_c00470{left:400.640000pt;}
.x59_c00470{left:401.920000pt;}
.xa_c00470{left:408.320000pt;}
.x38_c00470{left:419.200000pt;}
.x58_c00470{left:421.120000pt;}
.x30_c00470{left:428.800000pt;}
.x11_c00470{left:435.840000pt;}
.x3e_c00470{left:437.760000pt;}
.x7_c00470{left:466.560000pt;}
.x5b_c00470{left:468.480000pt;}
.x12_c00470{left:485.120000pt;}
.x31_c00470{left:495.360000pt;}
.x39_c00470{left:504.960000pt;}
.x3c_c00470{left:506.240000pt;}
.x5d_c00470{left:507.520000pt;}
.x29_c00470{left:513.920000pt;}
.x32_c00470{left:515.840000pt;}
.x5c_c00470{left:517.120000pt;}
.x13_c00470{left:524.160000pt;}
.x3f_c00470{left:534.400000pt;}
.xb_c00470{left:543.360000pt;}
.x2a_c00470{left:544.640000pt;}
.x60_c00470{left:546.560000pt;}
.x3a_c00470{left:554.880000pt;}
.x5e_c00470{left:556.160000pt;}
.x27_c00470{left:572.800000pt;}
.x2b_c00470{left:574.080000pt;}
.x5f_c00470{left:576.000000pt;}
.xc_c00470{left:581.760000pt;}
.x2d_c00470{left:583.040000pt;}
.x33_c00470{left:593.280000pt;}
.x26_c00470{left:600.960000pt;}
.x35_c00470{left:602.880000pt;}
.x61_c00470{left:604.800000pt;}
.xd_c00470{left:611.200000pt;}
.x2c_c00470{left:612.480000pt;}
.x5a_c00470{left:613.760000pt;}
.x2f_c00470{left:620.800000pt;}
.x34_c00470{left:622.080000pt;}
.x28_c00470{left:629.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_67395192f7b6165e56f40c01.woff2')format("woff");}.ff1_c00471{font-family:ff1_c00471;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m36_c00471{transform:matrix(0.242475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242475,0.000000,0.000000,0.250000,0,0);}
.m30_c00471{transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);}
.m2c_c00471{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m10_c00471{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m15_c00471{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m19_c00471{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);}
.m38_c00471{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00471{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m14_c00471{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m6_c00471{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00471{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mf_c00471{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m27_c00471{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m9_c00471{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m16_c00471{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m5_c00471{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00471{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m13_c00471{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m7_c00471{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.md_c00471{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00471{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m12_c00471{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.me_c00471{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m28_c00471{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m8_c00471{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00471{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m4_c00471{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m20_c00471{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m17_c00471{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m37_c00471{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m1_c00471{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.mb_c00471{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00471{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00471{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m0_c00471{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m24_c00471{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);}
.m34_c00471{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m25_c00471{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m11_c00471{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);}
.m2b_c00471{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);}
.m31_c00471{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00471{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);}
.m18_c00471{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m2_c00471{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);}
.m39_c00471{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);}
.m29_c00471{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);}
.m26_c00471{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m3_c00471{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);}
.m22_c00471{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m35_c00471{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00471{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m32_c00471{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m23_c00471{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);}
.m21_c00471{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m33_c00471{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00471{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.ma_c00471{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00471{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.v1_c00471{vertical-align:-8.640000px;}
.v0_c00471{vertical-align:0.000000px;}
.v2_c00471{vertical-align:2.880000px;}
.ls0_c00471{letter-spacing:0.000000px;}
.sc__c00471{text-shadow:none;}
.sc0_c00471{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00471{-webkit-text-stroke:0px transparent;}
.sc0_c00471{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00471{word-spacing:0.000000px;}
.ws2_c00471{word-spacing:5.224781px;}
.ws1_c00471{word-spacing:15.600000px;}
.ws3_c00471{word-spacing:18.084000px;}
.ws0_c00471{word-spacing:20.652000px;}
.fc0_c00471{color:transparent;}
.fsb_c00471{font-size:31.680000px;}
.fs9_c00471{font-size:46.080000px;}
.fs1_c00471{font-size:48.960000px;}
.fs3_c00471{font-size:51.840000px;}
.fs7_c00471{font-size:54.720000px;}
.fs5_c00471{font-size:57.600000px;}
.fs2_c00471{font-size:60.480000px;}
.fsa_c00471{font-size:63.360000px;}
.fs4_c00471{font-size:66.240000px;}
.fs8_c00471{font-size:69.120000px;}
.fs6_c00471{font-size:72.000000px;}
.fs0_c00471{font-size:74.880000px;}
.fsc_c00471{font-size:95.040000px;}
.y0_c00471{bottom:0.000000px;}
.y68_c00471{bottom:56.160000px;}
.y65_c00471{bottom:86.400000px;}
.y67_c00471{bottom:87.120000px;}
.y64_c00471{bottom:87.840000px;}
.y66_c00471{bottom:88.560000px;}
.y62_c00471{bottom:122.400000px;}
.y61_c00471{bottom:129.600000px;}
.y60_c00471{bottom:131.040000px;}
.y63_c00471{bottom:133.200000px;}
.y5e_c00471{bottom:165.600000px;}
.y5d_c00471{bottom:172.800000px;}
.y5c_c00471{bottom:173.520000px;}
.y5b_c00471{bottom:174.240000px;}
.y5f_c00471{bottom:176.400000px;}
.y59_c00471{bottom:208.080000px;}
.y57_c00471{bottom:216.000000px;}
.y58_c00471{bottom:216.720000px;}
.y55_c00471{bottom:217.440000px;}
.y56_c00471{bottom:218.880000px;}
.y5a_c00471{bottom:219.600000px;}
.y53_c00471{bottom:259.200000px;}
.y54_c00471{bottom:262.080000px;}
.y51_c00471{bottom:291.600000px;}
.y50_c00471{bottom:292.320000px;}
.y4f_c00471{bottom:293.040000px;}
.y52_c00471{bottom:294.480000px;}
.y4d_c00471{bottom:334.800000px;}
.y4e_c00471{bottom:337.680000px;}
.y49_c00471{bottom:367.200000px;}
.y4a_c00471{bottom:367.920000px;}
.y48_c00471{bottom:368.640000px;}
.y4b_c00471{bottom:369.360000px;}
.y4c_c00471{bottom:370.080000px;}
.y45_c00471{bottom:402.480000px;}
.y44_c00471{bottom:410.400000px;}
.y43_c00471{bottom:411.120000px;}
.y47_c00471{bottom:411.840000px;}
.y46_c00471{bottom:413.280000px;}
.y41_c00471{bottom:444.960000px;}
.y40_c00471{bottom:452.880000px;}
.y3f_c00471{bottom:453.600000px;}
.y42_c00471{bottom:454.320000px;}
.y3e_c00471{bottom:455.040000px;}
.y3d_c00471{bottom:488.160000px;}
.y3c_c00471{bottom:496.080000px;}
.y3b_c00471{bottom:496.800000px;}
.y3a_c00471{bottom:497.520000px;}
.y38_c00471{bottom:531.360000px;}
.y37_c00471{bottom:540.000000px;}
.y39_c00471{bottom:540.720000px;}
.y32_c00471{bottom:581.760000px;}
.y31_c00471{bottom:582.480000px;}
.y34_c00471{bottom:583.200000px;}
.y35_c00471{bottom:583.920000px;}
.y33_c00471{bottom:585.360000px;}
.y36_c00471{bottom:586.080000px;}
.y2d_c00471{bottom:624.960000px;}
.y2f_c00471{bottom:625.680000px;}
.y30_c00471{bottom:626.400000px;}
.y2e_c00471{bottom:627.840000px;}
.y29_c00471{bottom:668.160000px;}
.y2b_c00471{bottom:668.880000px;}
.y2a_c00471{bottom:670.320000px;}
.y2c_c00471{bottom:671.040000px;}
.y27_c00471{bottom:710.640000px;}
.y26_c00471{bottom:711.360000px;}
.y25_c00471{bottom:712.080000px;}
.y28_c00471{bottom:714.240000px;}
.y22_c00471{bottom:753.840000px;}
.y21_c00471{bottom:754.560000px;}
.y24_c00471{bottom:755.280000px;}
.y23_c00471{bottom:756.720000px;}
.y1c_c00471{bottom:795.600000px;}
.y1b_c00471{bottom:797.760000px;}
.y1e_c00471{bottom:798.480000px;}
.y1f_c00471{bottom:799.200000px;}
.y1d_c00471{bottom:799.920000px;}
.y20_c00471{bottom:800.640000px;}
.y16_c00471{bottom:838.800000px;}
.y15_c00471{bottom:840.240000px;}
.y18_c00471{bottom:840.960000px;}
.y19_c00471{bottom:841.680000px;}
.y1a_c00471{bottom:843.120000px;}
.y17_c00471{bottom:843.840000px;}
.y11_c00471{bottom:882.000000px;}
.y10_c00471{bottom:883.440000px;}
.y12_c00471{bottom:884.160000px;}
.y14_c00471{bottom:884.880000px;}
.y13_c00471{bottom:887.040000px;}
.yd_c00471{bottom:925.200000px;}
.yc_c00471{bottom:926.640000px;}
.ye_c00471{bottom:927.360000px;}
.yf_c00471{bottom:929.520000px;}
.ya_c00471{bottom:967.680000px;}
.y7_c00471{bottom:969.120000px;}
.yb_c00471{bottom:969.840000px;}
.y8_c00471{bottom:970.560000px;}
.y9_c00471{bottom:972.000000px;}
.y6_c00471{bottom:1010.880000px;}
.y4_c00471{bottom:1012.320000px;}
.y5_c00471{bottom:1013.040000px;}
.y3_c00471{bottom:1056.240000px;}
.y2_c00471{bottom:1058.400000px;}
.y1_c00471{bottom:1113.120000px;}
.he_c00471{height:28.508906px;}
.hb_c00471{height:41.467500px;}
.h3_c00471{height:44.059219px;}
.h5_c00471{height:46.650937px;}
.h9_c00471{height:49.242656px;}
.h7_c00471{height:51.834375px;}
.h4_c00471{height:54.426094px;}
.hc_c00471{height:54.714375px;}
.hd_c00471{height:57.017812px;}
.h6_c00471{height:59.609531px;}
.ha_c00471{height:62.201250px;}
.h8_c00471{height:64.792969px;}
.h2_c00471{height:67.384687px;}
.hf_c00471{height:85.526719px;}
.h0_c00471{height:1159.920000px;}
.h1_c00471{height:1160.250000px;}
.w0_c00471{width:778.320000px;}
.w1_c00471{width:778.500000px;}
.x0_c00471{left:0.000000px;}
.x5_c00471{left:41.040000px;}
.x15_c00471{left:42.480000px;}
.x2_c00471{left:95.760000px;}
.x3_c00471{left:116.640000px;}
.x1c_c00471{left:118.080000px;}
.x9_c00471{left:159.840000px;}
.x6_c00471{left:170.640000px;}
.x19_c00471{left:181.440000px;}
.x4_c00471{left:191.520000px;}
.x13_c00471{left:203.040000px;}
.x12_c00471{left:204.480000px;}
.xa_c00471{left:213.120000px;}
.xb_c00471{left:257.040000px;}
.x14_c00471{left:267.840000px;}
.x1a_c00471{left:269.280000px;}
.x11_c00471{left:289.440000px;}
.x1d_c00471{left:324.000000px;}
.x16_c00471{left:354.240000px;}
.x1b_c00471{left:409.680000px;}
.x17_c00471{left:452.880000px;}
.x7_c00471{left:517.680000px;}
.x1e_c00471{left:519.120000px;}
.xe_c00471{left:550.800000px;}
.x8_c00471{left:570.960000px;}
.xc_c00471{left:572.400000px;}
.xf_c00471{left:605.520000px;}
.x10_c00471{left:637.920000px;}
.x18_c00471{left:639.360000px;}
.x1_c00471{left:671.040000px;}
.xd_c00471{left:681.840000px;}
@media print{
.v1_c00471{vertical-align:-7.680000pt;}
.v0_c00471{vertical-align:0.000000pt;}
.v2_c00471{vertical-align:2.560000pt;}
.ls0_c00471{letter-spacing:0.000000pt;}
.ws4_c00471{word-spacing:0.000000pt;}
.ws2_c00471{word-spacing:4.644250pt;}
.ws1_c00471{word-spacing:13.866667pt;}
.ws3_c00471{word-spacing:16.074667pt;}
.ws0_c00471{word-spacing:18.357333pt;}
.fsb_c00471{font-size:28.160000pt;}
.fs9_c00471{font-size:40.960000pt;}
.fs1_c00471{font-size:43.520000pt;}
.fs3_c00471{font-size:46.080000pt;}
.fs7_c00471{font-size:48.640000pt;}
.fs5_c00471{font-size:51.200000pt;}
.fs2_c00471{font-size:53.760000pt;}
.fsa_c00471{font-size:56.320000pt;}
.fs4_c00471{font-size:58.880000pt;}
.fs8_c00471{font-size:61.440000pt;}
.fs6_c00471{font-size:64.000000pt;}
.fs0_c00471{font-size:66.560000pt;}
.fsc_c00471{font-size:84.480000pt;}
.y0_c00471{bottom:0.000000pt;}
.y68_c00471{bottom:49.920000pt;}
.y65_c00471{bottom:76.800000pt;}
.y67_c00471{bottom:77.440000pt;}
.y64_c00471{bottom:78.080000pt;}
.y66_c00471{bottom:78.720000pt;}
.y62_c00471{bottom:108.800000pt;}
.y61_c00471{bottom:115.200000pt;}
.y60_c00471{bottom:116.480000pt;}
.y63_c00471{bottom:118.400000pt;}
.y5e_c00471{bottom:147.200000pt;}
.y5d_c00471{bottom:153.600000pt;}
.y5c_c00471{bottom:154.240000pt;}
.y5b_c00471{bottom:154.880000pt;}
.y5f_c00471{bottom:156.800000pt;}
.y59_c00471{bottom:184.960000pt;}
.y57_c00471{bottom:192.000000pt;}
.y58_c00471{bottom:192.640000pt;}
.y55_c00471{bottom:193.280000pt;}
.y56_c00471{bottom:194.560000pt;}
.y5a_c00471{bottom:195.200000pt;}
.y53_c00471{bottom:230.400000pt;}
.y54_c00471{bottom:232.960000pt;}
.y51_c00471{bottom:259.200000pt;}
.y50_c00471{bottom:259.840000pt;}
.y4f_c00471{bottom:260.480000pt;}
.y52_c00471{bottom:261.760000pt;}
.y4d_c00471{bottom:297.600000pt;}
.y4e_c00471{bottom:300.160000pt;}
.y49_c00471{bottom:326.400000pt;}
.y4a_c00471{bottom:327.040000pt;}
.y48_c00471{bottom:327.680000pt;}
.y4b_c00471{bottom:328.320000pt;}
.y4c_c00471{bottom:328.960000pt;}
.y45_c00471{bottom:357.760000pt;}
.y44_c00471{bottom:364.800000pt;}
.y43_c00471{bottom:365.440000pt;}
.y47_c00471{bottom:366.080000pt;}
.y46_c00471{bottom:367.360000pt;}
.y41_c00471{bottom:395.520000pt;}
.y40_c00471{bottom:402.560000pt;}
.y3f_c00471{bottom:403.200000pt;}
.y42_c00471{bottom:403.840000pt;}
.y3e_c00471{bottom:404.480000pt;}
.y3d_c00471{bottom:433.920000pt;}
.y3c_c00471{bottom:440.960000pt;}
.y3b_c00471{bottom:441.600000pt;}
.y3a_c00471{bottom:442.240000pt;}
.y38_c00471{bottom:472.320000pt;}
.y37_c00471{bottom:480.000000pt;}
.y39_c00471{bottom:480.640000pt;}
.y32_c00471{bottom:517.120000pt;}
.y31_c00471{bottom:517.760000pt;}
.y34_c00471{bottom:518.400000pt;}
.y35_c00471{bottom:519.040000pt;}
.y33_c00471{bottom:520.320000pt;}
.y36_c00471{bottom:520.960000pt;}
.y2d_c00471{bottom:555.520000pt;}
.y2f_c00471{bottom:556.160000pt;}
.y30_c00471{bottom:556.800000pt;}
.y2e_c00471{bottom:558.080000pt;}
.y29_c00471{bottom:593.920000pt;}
.y2b_c00471{bottom:594.560000pt;}
.y2a_c00471{bottom:595.840000pt;}
.y2c_c00471{bottom:596.480000pt;}
.y27_c00471{bottom:631.680000pt;}
.y26_c00471{bottom:632.320000pt;}
.y25_c00471{bottom:632.960000pt;}
.y28_c00471{bottom:634.880000pt;}
.y22_c00471{bottom:670.080000pt;}
.y21_c00471{bottom:670.720000pt;}
.y24_c00471{bottom:671.360000pt;}
.y23_c00471{bottom:672.640000pt;}
.y1c_c00471{bottom:707.200000pt;}
.y1b_c00471{bottom:709.120000pt;}
.y1e_c00471{bottom:709.760000pt;}
.y1f_c00471{bottom:710.400000pt;}
.y1d_c00471{bottom:711.040000pt;}
.y20_c00471{bottom:711.680000pt;}
.y16_c00471{bottom:745.600000pt;}
.y15_c00471{bottom:746.880000pt;}
.y18_c00471{bottom:747.520000pt;}
.y19_c00471{bottom:748.160000pt;}
.y1a_c00471{bottom:749.440000pt;}
.y17_c00471{bottom:750.080000pt;}
.y11_c00471{bottom:784.000000pt;}
.y10_c00471{bottom:785.280000pt;}
.y12_c00471{bottom:785.920000pt;}
.y14_c00471{bottom:786.560000pt;}
.y13_c00471{bottom:788.480000pt;}
.yd_c00471{bottom:822.400000pt;}
.yc_c00471{bottom:823.680000pt;}
.ye_c00471{bottom:824.320000pt;}
.yf_c00471{bottom:826.240000pt;}
.ya_c00471{bottom:860.160000pt;}
.y7_c00471{bottom:861.440000pt;}
.yb_c00471{bottom:862.080000pt;}
.y8_c00471{bottom:862.720000pt;}
.y9_c00471{bottom:864.000000pt;}
.y6_c00471{bottom:898.560000pt;}
.y4_c00471{bottom:899.840000pt;}
.y5_c00471{bottom:900.480000pt;}
.y3_c00471{bottom:938.880000pt;}
.y2_c00471{bottom:940.800000pt;}
.y1_c00471{bottom:989.440000pt;}
.he_c00471{height:25.341250pt;}
.hb_c00471{height:36.860000pt;}
.h3_c00471{height:39.163750pt;}
.h5_c00471{height:41.467500pt;}
.h9_c00471{height:43.771250pt;}
.h7_c00471{height:46.075000pt;}
.h4_c00471{height:48.378750pt;}
.hc_c00471{height:48.635000pt;}
.hd_c00471{height:50.682500pt;}
.h6_c00471{height:52.986250pt;}
.ha_c00471{height:55.290000pt;}
.h8_c00471{height:57.593750pt;}
.h2_c00471{height:59.897500pt;}
.hf_c00471{height:76.023750pt;}
.h0_c00471{height:1031.040000pt;}
.h1_c00471{height:1031.333333pt;}
.w0_c00471{width:691.840000pt;}
.w1_c00471{width:692.000000pt;}
.x0_c00471{left:0.000000pt;}
.x5_c00471{left:36.480000pt;}
.x15_c00471{left:37.760000pt;}
.x2_c00471{left:85.120000pt;}
.x3_c00471{left:103.680000pt;}
.x1c_c00471{left:104.960000pt;}
.x9_c00471{left:142.080000pt;}
.x6_c00471{left:151.680000pt;}
.x19_c00471{left:161.280000pt;}
.x4_c00471{left:170.240000pt;}
.x13_c00471{left:180.480000pt;}
.x12_c00471{left:181.760000pt;}
.xa_c00471{left:189.440000pt;}
.xb_c00471{left:228.480000pt;}
.x14_c00471{left:238.080000pt;}
.x1a_c00471{left:239.360000pt;}
.x11_c00471{left:257.280000pt;}
.x1d_c00471{left:288.000000pt;}
.x16_c00471{left:314.880000pt;}
.x1b_c00471{left:364.160000pt;}
.x17_c00471{left:402.560000pt;}
.x7_c00471{left:460.160000pt;}
.x1e_c00471{left:461.440000pt;}
.xe_c00471{left:489.600000pt;}
.x8_c00471{left:507.520000pt;}
.xc_c00471{left:508.800000pt;}
.xf_c00471{left:538.240000pt;}
.x10_c00471{left:567.040000pt;}
.x18_c00471{left:568.320000pt;}
.x1_c00471{left:596.480000pt;}
.xd_c00471{left:606.080000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0c7d0482cec5efeb4b1010b1.woff2')format("woff");}.ff1_c00472{font-family:ff1_c00472;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m36_c00472{transform:matrix(0.178950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178950,0.000000,0.000000,0.250000,0,0);}
.m13_c00472{transform:matrix(0.191700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191700,0.000000,0.000000,0.250000,0,0);}
.m4c_c00472{transform:matrix(0.222650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222650,0.000000,0.000000,0.250000,0,0);}
.m34_c00472{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.me_c00472{transform:matrix(0.244350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244350,0.000000,0.000000,0.250000,0,0);}
.m50_c00472{transform:matrix(0.245225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245225,0.000000,0.000000,0.250000,0,0);}
.m17_c00472{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m39_c00472{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);}
.m49_c00472{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.ma_c00472{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m5_c00472{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00472{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m27_c00472{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);}
.m43_c00472{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);}
.m2f_c00472{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m52_c00472{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m38_c00472{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);}
.m4f_c00472{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m9_c00472{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m19_c00472{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m8_c00472{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m54_c00472{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);}
.m26_c00472{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00472{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mc_c00472{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m11_c00472{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00472{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00472{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00472{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.md_c00472{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00472{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00472{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m14_c00472{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mb_c00472{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m7_c00472{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00472{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m15_c00472{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m12_c00472{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00472{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m40_c00472{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00472{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m29_c00472{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00472{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m44_c00472{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00472{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m23_c00472{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m0_c00472{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00472{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m28_c00472{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);}
.m3b_c00472{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m37_c00472{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);}
.m6_c00472{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m4_c00472{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m30_c00472{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m10_c00472{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);}
.m1b_c00472{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);}
.m21_c00472{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);}
.m47_c00472{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m45_c00472{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m32_c00472{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00472{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);}
.m25_c00472{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m46_c00472{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);}
.m1_c00472{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m48_c00472{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);}
.m2_c00472{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00472{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m41_c00472{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m16_c00472{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);}
.m24_c00472{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.mf_c00472{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m3_c00472{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);}
.m1a_c00472{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m35_c00472{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);}
.m20_c00472{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m18_c00472{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m51_c00472{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m42_c00472{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m22_c00472{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00472{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);}
.m4d_c00472{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m53_c00472{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m33_c00472{transform:matrix(0.832500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00472{transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);}
.m31_c00472{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.v0_c00472{vertical-align:0.000000px;}
.ls0_c00472{letter-spacing:0.000000px;}
.sc__c00472{text-shadow:none;}
.sc0_c00472{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00472{-webkit-text-stroke:0px transparent;}
.sc0_c00472{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00472{word-spacing:0.000000px;}
.ws0_c00472{word-spacing:140.457300px;}
.ws1_c00472{word-spacing:192.748032px;}
.fc0_c00472{color:transparent;}
.fse_c00472{font-size:11.520000px;}
.fsf_c00472{font-size:17.280000px;}
.fsd_c00472{font-size:23.040000px;}
.fsa_c00472{font-size:34.560000px;}
.fsc_c00472{font-size:37.440000px;}
.fs8_c00472{font-size:46.080000px;}
.fs6_c00472{font-size:48.960000px;}
.fs2_c00472{font-size:51.840000px;}
.fs4_c00472{font-size:54.720000px;}
.fs5_c00472{font-size:57.600000px;}
.fs1_c00472{font-size:60.480000px;}
.fs0_c00472{font-size:63.360000px;}
.fs11_c00472{font-size:66.240000px;}
.fs7_c00472{font-size:69.120000px;}
.fsb_c00472{font-size:72.000000px;}
.fs3_c00472{font-size:74.880000px;}
.fs10_c00472{font-size:77.760000px;}
.fs9_c00472{font-size:103.680000px;}
.y0_c00472{bottom:0.000000px;}
.y8c_c00472{bottom:53.280000px;}
.y8b_c00472{bottom:55.440000px;}
.y8a_c00472{bottom:56.160000px;}
.y8d_c00472{bottom:56.880000px;}
.y8e_c00472{bottom:59.040000px;}
.y86_c00472{bottom:97.200000px;}
.y87_c00472{bottom:97.920000px;}
.y85_c00472{bottom:99.360000px;}
.y88_c00472{bottom:100.080000px;}
.y84_c00472{bottom:100.800000px;}
.y89_c00472{bottom:101.520000px;}
.y7f_c00472{bottom:140.400000px;}
.y81_c00472{bottom:141.120000px;}
.y7e_c00472{bottom:142.560000px;}
.y82_c00472{bottom:143.280000px;}
.y80_c00472{bottom:144.720000px;}
.y83_c00472{bottom:146.160000px;}
.y7b_c00472{bottom:182.880000px;}
.y7d_c00472{bottom:185.040000px;}
.y7c_c00472{bottom:185.760000px;}
.y7a_c00472{bottom:186.480000px;}
.y75_c00472{bottom:226.080000px;}
.y77_c00472{bottom:226.800000px;}
.y76_c00472{bottom:227.520000px;}
.y78_c00472{bottom:228.240000px;}
.y73_c00472{bottom:228.960000px;}
.y79_c00472{bottom:229.680000px;}
.y74_c00472{bottom:230.400000px;}
.y6f_c00472{bottom:268.560000px;}
.y71_c00472{bottom:270.000000px;}
.y72_c00472{bottom:270.720000px;}
.y6d_c00472{bottom:272.160000px;}
.y70_c00472{bottom:272.880000px;}
.y6e_c00472{bottom:273.600000px;}
.y69_c00472{bottom:311.760000px;}
.y67_c00472{bottom:313.920000px;}
.y6a_c00472{bottom:314.640000px;}
.y6c_c00472{bottom:315.360000px;}
.y68_c00472{bottom:316.080000px;}
.y6b_c00472{bottom:316.800000px;}
.y64_c00472{bottom:354.960000px;}
.y66_c00472{bottom:356.400000px;}
.y62_c00472{bottom:357.120000px;}
.y65_c00472{bottom:357.840000px;}
.y63_c00472{bottom:359.280000px;}
.y5f_c00472{bottom:397.440000px;}
.y61_c00472{bottom:399.600000px;}
.y5d_c00472{bottom:400.320000px;}
.y60_c00472{bottom:401.040000px;}
.y5e_c00472{bottom:402.480000px;}
.y5b_c00472{bottom:442.800000px;}
.y5c_c00472{bottom:444.240000px;}
.y5a_c00472{bottom:445.680000px;}
.y4d_c00472{bottom:508.320000px;}
.y46_c00472{bottom:509.040000px;}
.y59_c00472{bottom:510.480000px;}
.y47_c00472{bottom:511.200000px;}
.y57_c00472{bottom:518.400000px;}
.y56_c00472{bottom:520.560000px;}
.y44_c00472{bottom:529.920000px;}
.y45_c00472{bottom:530.640000px;}
.y54_c00472{bottom:550.800000px;}
.y42_c00472{bottom:551.520000px;}
.y55_c00472{bottom:552.960000px;}
.y43_c00472{bottom:553.680000px;}
.y40_c00472{bottom:573.120000px;}
.y58_c00472{bottom:573.840000px;}
.y41_c00472{bottom:575.280000px;}
.y4c_c00472{bottom:594.720000px;}
.y3e_c00472{bottom:595.440000px;}
.y3f_c00472{bottom:596.880000px;}
.y53_c00472{bottom:607.680000px;}
.y52_c00472{bottom:608.400000px;}
.y3d_c00472{bottom:616.320000px;}
.y51_c00472{bottom:637.200000px;}
.y4b_c00472{bottom:637.920000px;}
.y3b_c00472{bottom:638.640000px;}
.y3c_c00472{bottom:640.080000px;}
.y4a_c00472{bottom:658.800000px;}
.y39_c00472{bottom:659.520000px;}
.y3a_c00472{bottom:662.400000px;}
.y4f_c00472{bottom:671.760000px;}
.y50_c00472{bottom:672.480000px;}
.y49_c00472{bottom:680.400000px;}
.y37_c00472{bottom:681.120000px;}
.y38_c00472{bottom:683.280000px;}
.y48_c00472{bottom:702.000000px;}
.y36_c00472{bottom:702.720000px;}
.y4e_c00472{bottom:704.160000px;}
.y35_c00472{bottom:704.880000px;}
.y33_c00472{bottom:735.120000px;}
.y34_c00472{bottom:735.840000px;}
.y31_c00472{bottom:736.560000px;}
.y32_c00472{bottom:737.280000px;}
.y30_c00472{bottom:779.040000px;}
.y2f_c00472{bottom:779.760000px;}
.y29_c00472{bottom:786.960000px;}
.y24_c00472{bottom:787.680000px;}
.y2c_c00472{bottom:788.400000px;}
.y26_c00472{bottom:789.840000px;}
.y27_c00472{bottom:790.560000px;}
.y23_c00472{bottom:791.280000px;}
.y28_c00472{bottom:793.440000px;}
.y21_c00472{bottom:798.480000px;}
.y2d_c00472{bottom:799.200000px;}
.y2e_c00472{bottom:799.920000px;}
.y20_c00472{bottom:800.640000px;}
.y25_c00472{bottom:810.720000px;}
.y22_c00472{bottom:811.440000px;}
.y1f_c00472{bottom:850.320000px;}
.y1e_c00472{bottom:851.040000px;}
.y1d_c00472{bottom:851.760000px;}
.y1b_c00472{bottom:853.200000px;}
.y1c_c00472{bottom:853.920000px;}
.y18_c00472{bottom:882.720000px;}
.y17_c00472{bottom:883.440000px;}
.y2a_c00472{bottom:884.160000px;}
.y1a_c00472{bottom:885.600000px;}
.y19_c00472{bottom:886.320000px;}
.y2b_c00472{bottom:887.040000px;}
.y13_c00472{bottom:925.200000px;}
.y15_c00472{bottom:925.920000px;}
.y12_c00472{bottom:926.640000px;}
.y16_c00472{bottom:927.360000px;}
.y14_c00472{bottom:928.800000px;}
.yf_c00472{bottom:960.480000px;}
.yc_c00472{bottom:967.680000px;}
.yb_c00472{bottom:969.120000px;}
.y10_c00472{bottom:969.840000px;}
.y11_c00472{bottom:970.560000px;}
.ye_c00472{bottom:971.280000px;}
.yd_c00472{bottom:972.000000px;}
.y5_c00472{bottom:1010.880000px;}
.y4_c00472{bottom:1012.320000px;}
.y9_c00472{bottom:1013.040000px;}
.ya_c00472{bottom:1014.480000px;}
.y8_c00472{bottom:1015.200000px;}
.y1_c00472{bottom:1055.520000px;}
.y2_c00472{bottom:1056.240000px;}
.y7_c00472{bottom:1056.960000px;}
.y3_c00472{bottom:1057.680000px;}
.y6_c00472{bottom:1120.320000px;}
.h10_c00472{height:10.366875px;}
.h11_c00472{height:15.550313px;}
.hf_c00472{height:20.733750px;}
.hc_c00472{height:31.100625px;}
.he_c00472{height:33.692344px;}
.ha_c00472{height:41.467500px;}
.h8_c00472{height:44.059219px;}
.h4_c00472{height:46.650937px;}
.h6_c00472{height:49.242656px;}
.h7_c00472{height:51.834375px;}
.h3_c00472{height:54.426094px;}
.h2_c00472{height:57.017812px;}
.h13_c00472{height:59.609531px;}
.h9_c00472{height:62.201250px;}
.hd_c00472{height:64.792969px;}
.h5_c00472{height:67.384687px;}
.h12_c00472{height:69.976406px;}
.hb_c00472{height:93.301875px;}
.h1_c00472{height:1164.000000px;}
.h0_c00472{height:1164.240000px;}
.w1_c00472{width:784.500000px;}
.w0_c00472{width:784.800000px;}
.x0_c00472{left:0.000000px;}
.x1_c00472{left:50.400000px;}
.x2b_c00472{left:51.840000px;}
.x35_c00472{left:60.480000px;}
.x21_c00472{left:71.280000px;}
.x32_c00472{left:82.800000px;}
.x2c_c00472{left:93.600000px;}
.x38_c00472{left:104.400000px;}
.x5_c00472{left:125.280000px;}
.x2_c00472{left:126.720000px;}
.x39_c00472{left:136.800000px;}
.x1d_c00472{left:169.200000px;}
.x3c_c00472{left:170.640000px;}
.x34_c00472{left:180.000000px;}
.x3a_c00472{left:181.440000px;}
.x33_c00472{left:190.080000px;}
.x31_c00472{left:201.600000px;}
.x22_c00472{left:203.040000px;}
.x3_c00472{left:212.400000px;}
.xe_c00472{left:223.200000px;}
.x41_c00472{left:224.640000px;}
.x23_c00472{left:256.320000px;}
.x3d_c00472{left:257.760000px;}
.x15_c00472{left:266.400000px;}
.x4_c00472{left:276.480000px;}
.x1a_c00472{left:278.640000px;}
.x24_c00472{left:311.040000px;}
.x1e_c00472{left:320.400000px;}
.xf_c00472{left:321.840000px;}
.x2e_c00472{left:353.520000px;}
.x25_c00472{left:365.040000px;}
.x1f_c00472{left:375.120000px;}
.x2f_c00472{left:376.560000px;}
.x16_c00472{left:385.920000px;}
.x1b_c00472{left:396.720000px;}
.x30_c00472{left:408.960000px;}
.x20_c00472{left:418.320000px;}
.x10_c00472{left:438.480000px;}
.x17_c00472{left:439.920000px;}
.x42_c00472{left:441.360000px;}
.x1c_c00472{left:449.280000px;}
.x3f_c00472{left:451.440000px;}
.x37_c00472{left:473.760000px;}
.x11_c00472{left:482.400000px;}
.x2d_c00472{left:483.840000px;}
.x36_c00472{left:494.640000px;}
.x26_c00472{left:516.240000px;}
.x7_c00472{left:526.320000px;}
.xb_c00472{left:527.760000px;}
.xc_c00472{left:559.440000px;}
.x29_c00472{left:560.880000px;}
.x18_c00472{left:580.320000px;}
.x3e_c00472{left:581.760000px;}
.x44_c00472{left:583.200000px;}
.x40_c00472{left:593.280000px;}
.x27_c00472{left:603.360000px;}
.x12_c00472{left:613.440000px;}
.xd_c00472{left:614.880000px;}
.x8_c00472{left:624.240000px;}
.x2a_c00472{left:637.200000px;}
.x9_c00472{left:647.280000px;}
.x43_c00472{left:648.720000px;}
.x28_c00472{left:658.800000px;}
.x6_c00472{left:667.440000px;}
.xa_c00472{left:680.400000px;}
.x19_c00472{left:689.760000px;}
.x13_c00472{left:691.200000px;}
.x14_c00472{left:710.640000px;}
.x3b_c00472{left:712.080000px;}
@media print{
.v0_c00472{vertical-align:0.000000pt;}
.ls0_c00472{letter-spacing:0.000000pt;}
.ws2_c00472{word-spacing:0.000000pt;}
.ws0_c00472{word-spacing:124.850934pt;}
.ws1_c00472{word-spacing:171.331584pt;}
.fse_c00472{font-size:10.240000pt;}
.fsf_c00472{font-size:15.360000pt;}
.fsd_c00472{font-size:20.480000pt;}
.fsa_c00472{font-size:30.720000pt;}
.fsc_c00472{font-size:33.280000pt;}
.fs8_c00472{font-size:40.960000pt;}
.fs6_c00472{font-size:43.520000pt;}
.fs2_c00472{font-size:46.080000pt;}
.fs4_c00472{font-size:48.640000pt;}
.fs5_c00472{font-size:51.200000pt;}
.fs1_c00472{font-size:53.760000pt;}
.fs0_c00472{font-size:56.320000pt;}
.fs11_c00472{font-size:58.880000pt;}
.fs7_c00472{font-size:61.440000pt;}
.fsb_c00472{font-size:64.000000pt;}
.fs3_c00472{font-size:66.560000pt;}
.fs10_c00472{font-size:69.120000pt;}
.fs9_c00472{font-size:92.160000pt;}
.y0_c00472{bottom:0.000000pt;}
.y8c_c00472{bottom:47.360000pt;}
.y8b_c00472{bottom:49.280000pt;}
.y8a_c00472{bottom:49.920000pt;}
.y8d_c00472{bottom:50.560000pt;}
.y8e_c00472{bottom:52.480000pt;}
.y86_c00472{bottom:86.400000pt;}
.y87_c00472{bottom:87.040000pt;}
.y85_c00472{bottom:88.320000pt;}
.y88_c00472{bottom:88.960000pt;}
.y84_c00472{bottom:89.600000pt;}
.y89_c00472{bottom:90.240000pt;}
.y7f_c00472{bottom:124.800000pt;}
.y81_c00472{bottom:125.440000pt;}
.y7e_c00472{bottom:126.720000pt;}
.y82_c00472{bottom:127.360000pt;}
.y80_c00472{bottom:128.640000pt;}
.y83_c00472{bottom:129.920000pt;}
.y7b_c00472{bottom:162.560000pt;}
.y7d_c00472{bottom:164.480000pt;}
.y7c_c00472{bottom:165.120000pt;}
.y7a_c00472{bottom:165.760000pt;}
.y75_c00472{bottom:200.960000pt;}
.y77_c00472{bottom:201.600000pt;}
.y76_c00472{bottom:202.240000pt;}
.y78_c00472{bottom:202.880000pt;}
.y73_c00472{bottom:203.520000pt;}
.y79_c00472{bottom:204.160000pt;}
.y74_c00472{bottom:204.800000pt;}
.y6f_c00472{bottom:238.720000pt;}
.y71_c00472{bottom:240.000000pt;}
.y72_c00472{bottom:240.640000pt;}
.y6d_c00472{bottom:241.920000pt;}
.y70_c00472{bottom:242.560000pt;}
.y6e_c00472{bottom:243.200000pt;}
.y69_c00472{bottom:277.120000pt;}
.y67_c00472{bottom:279.040000pt;}
.y6a_c00472{bottom:279.680000pt;}
.y6c_c00472{bottom:280.320000pt;}
.y68_c00472{bottom:280.960000pt;}
.y6b_c00472{bottom:281.600000pt;}
.y64_c00472{bottom:315.520000pt;}
.y66_c00472{bottom:316.800000pt;}
.y62_c00472{bottom:317.440000pt;}
.y65_c00472{bottom:318.080000pt;}
.y63_c00472{bottom:319.360000pt;}
.y5f_c00472{bottom:353.280000pt;}
.y61_c00472{bottom:355.200000pt;}
.y5d_c00472{bottom:355.840000pt;}
.y60_c00472{bottom:356.480000pt;}
.y5e_c00472{bottom:357.760000pt;}
.y5b_c00472{bottom:393.600000pt;}
.y5c_c00472{bottom:394.880000pt;}
.y5a_c00472{bottom:396.160000pt;}
.y4d_c00472{bottom:451.840000pt;}
.y46_c00472{bottom:452.480000pt;}
.y59_c00472{bottom:453.760000pt;}
.y47_c00472{bottom:454.400000pt;}
.y57_c00472{bottom:460.800000pt;}
.y56_c00472{bottom:462.720000pt;}
.y44_c00472{bottom:471.040000pt;}
.y45_c00472{bottom:471.680000pt;}
.y54_c00472{bottom:489.600000pt;}
.y42_c00472{bottom:490.240000pt;}
.y55_c00472{bottom:491.520000pt;}
.y43_c00472{bottom:492.160000pt;}
.y40_c00472{bottom:509.440000pt;}
.y58_c00472{bottom:510.080000pt;}
.y41_c00472{bottom:511.360000pt;}
.y4c_c00472{bottom:528.640000pt;}
.y3e_c00472{bottom:529.280000pt;}
.y3f_c00472{bottom:530.560000pt;}
.y53_c00472{bottom:540.160000pt;}
.y52_c00472{bottom:540.800000pt;}
.y3d_c00472{bottom:547.840000pt;}
.y51_c00472{bottom:566.400000pt;}
.y4b_c00472{bottom:567.040000pt;}
.y3b_c00472{bottom:567.680000pt;}
.y3c_c00472{bottom:568.960000pt;}
.y4a_c00472{bottom:585.600000pt;}
.y39_c00472{bottom:586.240000pt;}
.y3a_c00472{bottom:588.800000pt;}
.y4f_c00472{bottom:597.120000pt;}
.y50_c00472{bottom:597.760000pt;}
.y49_c00472{bottom:604.800000pt;}
.y37_c00472{bottom:605.440000pt;}
.y38_c00472{bottom:607.360000pt;}
.y48_c00472{bottom:624.000000pt;}
.y36_c00472{bottom:624.640000pt;}
.y4e_c00472{bottom:625.920000pt;}
.y35_c00472{bottom:626.560000pt;}
.y33_c00472{bottom:653.440000pt;}
.y34_c00472{bottom:654.080000pt;}
.y31_c00472{bottom:654.720000pt;}
.y32_c00472{bottom:655.360000pt;}
.y30_c00472{bottom:692.480000pt;}
.y2f_c00472{bottom:693.120000pt;}
.y29_c00472{bottom:699.520000pt;}
.y24_c00472{bottom:700.160000pt;}
.y2c_c00472{bottom:700.800000pt;}
.y26_c00472{bottom:702.080000pt;}
.y27_c00472{bottom:702.720000pt;}
.y23_c00472{bottom:703.360000pt;}
.y28_c00472{bottom:705.280000pt;}
.y21_c00472{bottom:709.760000pt;}
.y2d_c00472{bottom:710.400000pt;}
.y2e_c00472{bottom:711.040000pt;}
.y20_c00472{bottom:711.680000pt;}
.y25_c00472{bottom:720.640000pt;}
.y22_c00472{bottom:721.280000pt;}
.y1f_c00472{bottom:755.840000pt;}
.y1e_c00472{bottom:756.480000pt;}
.y1d_c00472{bottom:757.120000pt;}
.y1b_c00472{bottom:758.400000pt;}
.y1c_c00472{bottom:759.040000pt;}
.y18_c00472{bottom:784.640000pt;}
.y17_c00472{bottom:785.280000pt;}
.y2a_c00472{bottom:785.920000pt;}
.y1a_c00472{bottom:787.200000pt;}
.y19_c00472{bottom:787.840000pt;}
.y2b_c00472{bottom:788.480000pt;}
.y13_c00472{bottom:822.400000pt;}
.y15_c00472{bottom:823.040000pt;}
.y12_c00472{bottom:823.680000pt;}
.y16_c00472{bottom:824.320000pt;}
.y14_c00472{bottom:825.600000pt;}
.yf_c00472{bottom:853.760000pt;}
.yc_c00472{bottom:860.160000pt;}
.yb_c00472{bottom:861.440000pt;}
.y10_c00472{bottom:862.080000pt;}
.y11_c00472{bottom:862.720000pt;}
.ye_c00472{bottom:863.360000pt;}
.yd_c00472{bottom:864.000000pt;}
.y5_c00472{bottom:898.560000pt;}
.y4_c00472{bottom:899.840000pt;}
.y9_c00472{bottom:900.480000pt;}
.ya_c00472{bottom:901.760000pt;}
.y8_c00472{bottom:902.400000pt;}
.y1_c00472{bottom:938.240000pt;}
.y2_c00472{bottom:938.880000pt;}
.y7_c00472{bottom:939.520000pt;}
.y3_c00472{bottom:940.160000pt;}
.y6_c00472{bottom:995.840000pt;}
.h10_c00472{height:9.215000pt;}
.h11_c00472{height:13.822500pt;}
.hf_c00472{height:18.430000pt;}
.hc_c00472{height:27.645000pt;}
.he_c00472{height:29.948750pt;}
.ha_c00472{height:36.860000pt;}
.h8_c00472{height:39.163750pt;}
.h4_c00472{height:41.467500pt;}
.h6_c00472{height:43.771250pt;}
.h7_c00472{height:46.075000pt;}
.h3_c00472{height:48.378750pt;}
.h2_c00472{height:50.682500pt;}
.h13_c00472{height:52.986250pt;}
.h9_c00472{height:55.290000pt;}
.hd_c00472{height:57.593750pt;}
.h5_c00472{height:59.897500pt;}
.h12_c00472{height:62.201250pt;}
.hb_c00472{height:82.935000pt;}
.h1_c00472{height:1034.666667pt;}
.h0_c00472{height:1034.880000pt;}
.w1_c00472{width:697.333333pt;}
.w0_c00472{width:697.600000pt;}
.x0_c00472{left:0.000000pt;}
.x1_c00472{left:44.800000pt;}
.x2b_c00472{left:46.080000pt;}
.x35_c00472{left:53.760000pt;}
.x21_c00472{left:63.360000pt;}
.x32_c00472{left:73.600000pt;}
.x2c_c00472{left:83.200000pt;}
.x38_c00472{left:92.800000pt;}
.x5_c00472{left:111.360000pt;}
.x2_c00472{left:112.640000pt;}
.x39_c00472{left:121.600000pt;}
.x1d_c00472{left:150.400000pt;}
.x3c_c00472{left:151.680000pt;}
.x34_c00472{left:160.000000pt;}
.x3a_c00472{left:161.280000pt;}
.x33_c00472{left:168.960000pt;}
.x31_c00472{left:179.200000pt;}
.x22_c00472{left:180.480000pt;}
.x3_c00472{left:188.800000pt;}
.xe_c00472{left:198.400000pt;}
.x41_c00472{left:199.680000pt;}
.x23_c00472{left:227.840000pt;}
.x3d_c00472{left:229.120000pt;}
.x15_c00472{left:236.800000pt;}
.x4_c00472{left:245.760000pt;}
.x1a_c00472{left:247.680000pt;}
.x24_c00472{left:276.480000pt;}
.x1e_c00472{left:284.800000pt;}
.xf_c00472{left:286.080000pt;}
.x2e_c00472{left:314.240000pt;}
.x25_c00472{left:324.480000pt;}
.x1f_c00472{left:333.440000pt;}
.x2f_c00472{left:334.720000pt;}
.x16_c00472{left:343.040000pt;}
.x1b_c00472{left:352.640000pt;}
.x30_c00472{left:363.520000pt;}
.x20_c00472{left:371.840000pt;}
.x10_c00472{left:389.760000pt;}
.x17_c00472{left:391.040000pt;}
.x42_c00472{left:392.320000pt;}
.x1c_c00472{left:399.360000pt;}
.x3f_c00472{left:401.280000pt;}
.x37_c00472{left:421.120000pt;}
.x11_c00472{left:428.800000pt;}
.x2d_c00472{left:430.080000pt;}
.x36_c00472{left:439.680000pt;}
.x26_c00472{left:458.880000pt;}
.x7_c00472{left:467.840000pt;}
.xb_c00472{left:469.120000pt;}
.xc_c00472{left:497.280000pt;}
.x29_c00472{left:498.560000pt;}
.x18_c00472{left:515.840000pt;}
.x3e_c00472{left:517.120000pt;}
.x44_c00472{left:518.400000pt;}
.x40_c00472{left:527.360000pt;}
.x27_c00472{left:536.320000pt;}
.x12_c00472{left:545.280000pt;}
.xd_c00472{left:546.560000pt;}
.x8_c00472{left:554.880000pt;}
.x2a_c00472{left:566.400000pt;}
.x9_c00472{left:575.360000pt;}
.x43_c00472{left:576.640000pt;}
.x28_c00472{left:585.600000pt;}
.x6_c00472{left:593.280000pt;}
.xa_c00472{left:604.800000pt;}
.x19_c00472{left:613.120000pt;}
.x13_c00472{left:614.400000pt;}
.x14_c00472{left:631.680000pt;}
.x3b_c00472{left:632.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_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_a0005c9d28233fe72449616c.woff2')format("woff");}.ff1_c00473{font-family:ff1_c00473;line-height:1.109863;font-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_c00473{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m30_c00473{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m1a_c00473{transform:matrix(0.239175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239175,0.000000,0.000000,0.250000,0,0);}
.m26_c00473{transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);}
.m28_c00473{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_c00473{transform:matrix(0.245700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245700,0.000000,0.000000,0.250000,0,0);}
.m3a_c00473{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m13_c00473{transform:matrix(0.248050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248050,0.000000,0.000000,0.250000,0,0);}
.m2d_c00473{transform:matrix(0.248375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248375,0.000000,0.000000,0.250000,0,0);}
.mf_c00473{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m29_c00473{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.md_c00473{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m11_c00473{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m10_c00473{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00473{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m15_c00473{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m9_c00473{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mb_c00473{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);}
.m2b_c00473{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00473{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m22_c00473{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00473{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m12_c00473{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m2_c00473{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m4_c00473{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m36_c00473{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m32_c00473{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m18_c00473{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00473{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m38_c00473{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m17_c00473{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00473{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m6_c00473{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m7_c00473{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.me_c00473{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m5_c00473{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m3_c00473{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);}
.m35_c00473{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m34_c00473{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00473{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m8_c00473{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_c00473{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m0_c00473{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m20_c00473{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m14_c00473{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1_c00473{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m25_c00473{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.ma_c00473{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.mc_c00473{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m16_c00473{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m19_c00473{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00473{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);}
.m1f_c00473{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m24_c00473{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m21_c00473{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00473{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m27_c00473{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00473{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);}
.m39_c00473{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00473{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m33_c00473{transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);}
.m37_c00473{transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);}
.v0_c00473{vertical-align:0.000000px;}
.v1_c00473{vertical-align:8.640000px;}
.ls1_c00473{letter-spacing:0.000000px;}
.ls0_c00473{letter-spacing:42.841680px;}
.sc__c00473{text-shadow:none;}
.sc0_c00473{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00473{-webkit-text-stroke:0px transparent;}
.sc0_c00473{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00473{word-spacing:0.000000px;}
.ws1_c00473{word-spacing:10.937051px;}
.ws2_c00473{word-spacing:13.463637px;}
.ws0_c00473{word-spacing:14.957055px;}
._0_c00473{width:164.102489px;}
.fc0_c00473{color:transparent;}
.fsa_c00473{font-size:34.560000px;}
.fs8_c00473{font-size:46.080000px;}
.fs6_c00473{font-size:48.960000px;}
.fs9_c00473{font-size:51.840000px;}
.fsb_c00473{font-size:54.720000px;}
.fs4_c00473{font-size:57.600000px;}
.fs1_c00473{font-size:60.480000px;}
.fs3_c00473{font-size:63.360000px;}
.fs5_c00473{font-size:66.240000px;}
.fsc_c00473{font-size:69.120000px;}
.fs2_c00473{font-size:72.000000px;}
.fs0_c00473{font-size:74.880000px;}
.fs7_c00473{font-size:77.760000px;}
.y0_c00473{bottom:0.000000px;}
.y52_c00473{bottom:24.480000px;}
.y80_c00473{bottom:27.360000px;}
.y51_c00473{bottom:28.080000px;}
.y82_c00473{bottom:28.800000px;}
.y81_c00473{bottom:30.240000px;}
.y4e_c00473{bottom:66.240000px;}
.y4f_c00473{bottom:66.960000px;}
.y4d_c00473{bottom:69.120000px;}
.y7e_c00473{bottom:69.840000px;}
.y7f_c00473{bottom:70.560000px;}
.y50_c00473{bottom:71.280000px;}
.y48_c00473{bottom:110.160000px;}
.y4c_c00473{bottom:111.600000px;}
.y4a_c00473{bottom:112.320000px;}
.y47_c00473{bottom:113.040000px;}
.y49_c00473{bottom:113.760000px;}
.y4b_c00473{bottom:114.480000px;}
.y41_c00473{bottom:152.640000px;}
.y43_c00473{bottom:154.800000px;}
.y46_c00473{bottom:155.520000px;}
.y40_c00473{bottom:156.240000px;}
.y42_c00473{bottom:156.960000px;}
.y44_c00473{bottom:157.680000px;}
.y45_c00473{bottom:158.400000px;}
.y3d_c00473{bottom:195.120000px;}
.y3f_c00473{bottom:197.280000px;}
.y7c_c00473{bottom:198.000000px;}
.y3c_c00473{bottom:198.720000px;}
.y3e_c00473{bottom:200.160000px;}
.y7d_c00473{bottom:200.880000px;}
.y39_c00473{bottom:239.040000px;}
.y3b_c00473{bottom:239.760000px;}
.y7b_c00473{bottom:241.200000px;}
.y38_c00473{bottom:241.920000px;}
.y3a_c00473{bottom:243.360000px;}
.y34_c00473{bottom:282.240000px;}
.y37_c00473{bottom:282.960000px;}
.y35_c00473{bottom:283.680000px;}
.y78_c00473{bottom:284.400000px;}
.y33_c00473{bottom:285.120000px;}
.y7a_c00473{bottom:285.840000px;}
.y36_c00473{bottom:286.560000px;}
.y79_c00473{bottom:287.280000px;}
.y30_c00473{bottom:324.720000px;}
.y32_c00473{bottom:325.440000px;}
.y76_c00473{bottom:326.880000px;}
.y2f_c00473{bottom:327.600000px;}
.y77_c00473{bottom:328.320000px;}
.y31_c00473{bottom:329.040000px;}
.y2b_c00473{bottom:367.920000px;}
.y73_c00473{bottom:368.640000px;}
.y2d_c00473{bottom:369.360000px;}
.y75_c00473{bottom:370.080000px;}
.y2a_c00473{bottom:370.800000px;}
.y2e_c00473{bottom:371.520000px;}
.y2c_c00473{bottom:372.240000px;}
.y74_c00473{bottom:372.960000px;}
.y28_c00473{bottom:411.840000px;}
.y72_c00473{bottom:412.560000px;}
.y27_c00473{bottom:413.280000px;}
.y29_c00473{bottom:414.720000px;}
.y24_c00473{bottom:454.320000px;}
.y26_c00473{bottom:455.040000px;}
.y25_c00473{bottom:455.760000px;}
.y23_c00473{bottom:456.480000px;}
.y20_c00473{bottom:496.800000px;}
.y22_c00473{bottom:497.520000px;}
.y6e_c00473{bottom:498.240000px;}
.y1f_c00473{bottom:498.960000px;}
.y71_c00473{bottom:499.680000px;}
.y6f_c00473{bottom:500.400000px;}
.y70_c00473{bottom:501.120000px;}
.y21_c00473{bottom:501.840000px;}
.y1d_c00473{bottom:540.000000px;}
.y6b_c00473{bottom:540.720000px;}
.y6c_c00473{bottom:541.440000px;}
.y1c_c00473{bottom:542.160000px;}
.y6d_c00473{bottom:542.880000px;}
.y1e_c00473{bottom:543.600000px;}
.y1a_c00473{bottom:581.760000px;}
.y1b_c00473{bottom:582.480000px;}
.y6a_c00473{bottom:583.200000px;}
.y69_c00473{bottom:583.920000px;}
.y19_c00473{bottom:584.640000px;}
.y18_c00473{bottom:624.960000px;}
.y17_c00473{bottom:625.680000px;}
.y67_c00473{bottom:626.400000px;}
.y16_c00473{bottom:627.120000px;}
.y68_c00473{bottom:629.280000px;}
.y15_c00473{bottom:668.160000px;}
.y65_c00473{bottom:668.880000px;}
.y14_c00473{bottom:670.320000px;}
.y66_c00473{bottom:671.040000px;}
.y13_c00473{bottom:710.640000px;}
.y64_c00473{bottom:712.080000px;}
.y12_c00473{bottom:712.800000px;}
.y63_c00473{bottom:713.520000px;}
.y11_c00473{bottom:753.120000px;}
.y62_c00473{bottom:753.840000px;}
.y10_c00473{bottom:756.000000px;}
.y61_c00473{bottom:756.720000px;}
.yf_c00473{bottom:796.320000px;}
.ye_c00473{bottom:798.480000px;}
.y5f_c00473{bottom:799.200000px;}
.y60_c00473{bottom:799.920000px;}
.yd_c00473{bottom:839.520000px;}
.y5e_c00473{bottom:840.240000px;}
.yc_c00473{bottom:841.680000px;}
.y5d_c00473{bottom:842.400000px;}
.yb_c00473{bottom:882.000000px;}
.y5c_c00473{bottom:882.720000px;}
.ya_c00473{bottom:884.160000px;}
.y5b_c00473{bottom:884.880000px;}
.y59_c00473{bottom:925.200000px;}
.y9_c00473{bottom:925.920000px;}
.y5a_c00473{bottom:926.640000px;}
.y8_c00473{bottom:927.360000px;}
.y58_c00473{bottom:967.680000px;}
.y7_c00473{bottom:968.400000px;}
.y57_c00473{bottom:969.120000px;}
.y6_c00473{bottom:969.840000px;}
.y56_c00473{bottom:971.280000px;}
.y55_c00473{bottom:1010.880000px;}
.y5_c00473{bottom:1011.600000px;}
.y4_c00473{bottom:1013.040000px;}
.y54_c00473{bottom:1013.760000px;}
.y53_c00473{bottom:1053.360000px;}
.y3_c00473{bottom:1054.080000px;}
.y2_c00473{bottom:1056.240000px;}
.y1_c00473{bottom:1120.320000px;}
.hc_c00473{height:31.100625px;}
.ha_c00473{height:41.467500px;}
.h8_c00473{height:44.059219px;}
.hb_c00473{height:46.650937px;}
.hd_c00473{height:49.242656px;}
.h6_c00473{height:51.834375px;}
.h3_c00473{height:54.426094px;}
.h5_c00473{height:57.017812px;}
.hf_c00473{height:57.882656px;}
.h7_c00473{height:59.609531px;}
.he_c00473{height:62.201250px;}
.h4_c00473{height:64.792969px;}
.h2_c00473{height:67.384687px;}
.h9_c00473{height:69.976406px;}
.h0_c00473{height:1159.920000px;}
.h1_c00473{height:1160.250000px;}
.w0_c00473{width:764.640000px;}
.w1_c00473{width:765.000000px;}
.x0_c00473{left:0.000000px;}
.x1b_c00473{left:34.560000px;}
.xe_c00473{left:36.000000px;}
.x5_c00473{left:37.440000px;}
.x2_c00473{left:38.880000px;}
.xf_c00473{left:110.160000px;}
.x6_c00473{left:111.600000px;}
.x4_c00473{left:113.040000px;}
.x3_c00473{left:114.480000px;}
.x1c_c00473{left:196.560000px;}
.x12_c00473{left:198.000000px;}
.x8_c00473{left:199.440000px;}
.x9_c00473{left:231.120000px;}
.x10_c00473{left:241.200000px;}
.x7_c00473{left:242.640000px;}
.x13_c00473{left:252.000000px;}
.x16_c00473{left:272.880000px;}
.xa_c00473{left:274.320000px;}
.x11_c00473{left:295.200000px;}
.x14_c00473{left:326.160000px;}
.xd_c00473{left:328.320000px;}
.xb_c00473{left:339.120000px;}
.x1d_c00473{left:347.760000px;}
.x15_c00473{left:371.520000px;}
.xc_c00473{left:381.600000px;}
.x1e_c00473{left:393.120000px;}
.x17_c00473{left:435.600000px;}
.x18_c00473{left:478.080000px;}
.x19_c00473{left:522.720000px;}
.x2d_c00473{left:524.160000px;}
.x26_c00473{left:525.600000px;}
.x1f_c00473{left:527.040000px;}
.x1a_c00473{left:544.320000px;}
.x2e_c00473{left:545.760000px;}
.x23_c00473{left:547.200000px;}
.x20_c00473{left:548.640000px;}
.x32_c00473{left:565.200000px;}
.x2a_c00473{left:566.640000px;}
.x21_c00473{left:568.080000px;}
.x24_c00473{left:569.520000px;}
.x2b_c00473{left:599.040000px;}
.x28_c00473{left:601.200000px;}
.x33_c00473{left:631.440000px;}
.x2c_c00473{left:632.880000px;}
.x25_c00473{left:635.040000px;}
.x2f_c00473{left:666.000000px;}
.x31_c00473{left:674.640000px;}
.x27_c00473{left:676.800000px;}
.x22_c00473{left:678.240000px;}
.x1_c00473{left:691.200000px;}
.x30_c00473{left:696.240000px;}
.x29_c00473{left:697.680000px;}
@media print{
.v0_c00473{vertical-align:0.000000pt;}
.v1_c00473{vertical-align:7.680000pt;}
.ls1_c00473{letter-spacing:0.000000pt;}
.ls0_c00473{letter-spacing:38.081493pt;}
.ws3_c00473{word-spacing:0.000000pt;}
.ws1_c00473{word-spacing:9.721823pt;}
.ws2_c00473{word-spacing:11.967677pt;}
.ws0_c00473{word-spacing:13.295160pt;}
._0_c00473{width:145.868879pt;}
.fsa_c00473{font-size:30.720000pt;}
.fs8_c00473{font-size:40.960000pt;}
.fs6_c00473{font-size:43.520000pt;}
.fs9_c00473{font-size:46.080000pt;}
.fsb_c00473{font-size:48.640000pt;}
.fs4_c00473{font-size:51.200000pt;}
.fs1_c00473{font-size:53.760000pt;}
.fs3_c00473{font-size:56.320000pt;}
.fs5_c00473{font-size:58.880000pt;}
.fsc_c00473{font-size:61.440000pt;}
.fs2_c00473{font-size:64.000000pt;}
.fs0_c00473{font-size:66.560000pt;}
.fs7_c00473{font-size:69.120000pt;}
.y0_c00473{bottom:0.000000pt;}
.y52_c00473{bottom:21.760000pt;}
.y80_c00473{bottom:24.320000pt;}
.y51_c00473{bottom:24.960000pt;}
.y82_c00473{bottom:25.600000pt;}
.y81_c00473{bottom:26.880000pt;}
.y4e_c00473{bottom:58.880000pt;}
.y4f_c00473{bottom:59.520000pt;}
.y4d_c00473{bottom:61.440000pt;}
.y7e_c00473{bottom:62.080000pt;}
.y7f_c00473{bottom:62.720000pt;}
.y50_c00473{bottom:63.360000pt;}
.y48_c00473{bottom:97.920000pt;}
.y4c_c00473{bottom:99.200000pt;}
.y4a_c00473{bottom:99.840000pt;}
.y47_c00473{bottom:100.480000pt;}
.y49_c00473{bottom:101.120000pt;}
.y4b_c00473{bottom:101.760000pt;}
.y41_c00473{bottom:135.680000pt;}
.y43_c00473{bottom:137.600000pt;}
.y46_c00473{bottom:138.240000pt;}
.y40_c00473{bottom:138.880000pt;}
.y42_c00473{bottom:139.520000pt;}
.y44_c00473{bottom:140.160000pt;}
.y45_c00473{bottom:140.800000pt;}
.y3d_c00473{bottom:173.440000pt;}
.y3f_c00473{bottom:175.360000pt;}
.y7c_c00473{bottom:176.000000pt;}
.y3c_c00473{bottom:176.640000pt;}
.y3e_c00473{bottom:177.920000pt;}
.y7d_c00473{bottom:178.560000pt;}
.y39_c00473{bottom:212.480000pt;}
.y3b_c00473{bottom:213.120000pt;}
.y7b_c00473{bottom:214.400000pt;}
.y38_c00473{bottom:215.040000pt;}
.y3a_c00473{bottom:216.320000pt;}
.y34_c00473{bottom:250.880000pt;}
.y37_c00473{bottom:251.520000pt;}
.y35_c00473{bottom:252.160000pt;}
.y78_c00473{bottom:252.800000pt;}
.y33_c00473{bottom:253.440000pt;}
.y7a_c00473{bottom:254.080000pt;}
.y36_c00473{bottom:254.720000pt;}
.y79_c00473{bottom:255.360000pt;}
.y30_c00473{bottom:288.640000pt;}
.y32_c00473{bottom:289.280000pt;}
.y76_c00473{bottom:290.560000pt;}
.y2f_c00473{bottom:291.200000pt;}
.y77_c00473{bottom:291.840000pt;}
.y31_c00473{bottom:292.480000pt;}
.y2b_c00473{bottom:327.040000pt;}
.y73_c00473{bottom:327.680000pt;}
.y2d_c00473{bottom:328.320000pt;}
.y75_c00473{bottom:328.960000pt;}
.y2a_c00473{bottom:329.600000pt;}
.y2e_c00473{bottom:330.240000pt;}
.y2c_c00473{bottom:330.880000pt;}
.y74_c00473{bottom:331.520000pt;}
.y28_c00473{bottom:366.080000pt;}
.y72_c00473{bottom:366.720000pt;}
.y27_c00473{bottom:367.360000pt;}
.y29_c00473{bottom:368.640000pt;}
.y24_c00473{bottom:403.840000pt;}
.y26_c00473{bottom:404.480000pt;}
.y25_c00473{bottom:405.120000pt;}
.y23_c00473{bottom:405.760000pt;}
.y20_c00473{bottom:441.600000pt;}
.y22_c00473{bottom:442.240000pt;}
.y6e_c00473{bottom:442.880000pt;}
.y1f_c00473{bottom:443.520000pt;}
.y71_c00473{bottom:444.160000pt;}
.y6f_c00473{bottom:444.800000pt;}
.y70_c00473{bottom:445.440000pt;}
.y21_c00473{bottom:446.080000pt;}
.y1d_c00473{bottom:480.000000pt;}
.y6b_c00473{bottom:480.640000pt;}
.y6c_c00473{bottom:481.280000pt;}
.y1c_c00473{bottom:481.920000pt;}
.y6d_c00473{bottom:482.560000pt;}
.y1e_c00473{bottom:483.200000pt;}
.y1a_c00473{bottom:517.120000pt;}
.y1b_c00473{bottom:517.760000pt;}
.y6a_c00473{bottom:518.400000pt;}
.y69_c00473{bottom:519.040000pt;}
.y19_c00473{bottom:519.680000pt;}
.y18_c00473{bottom:555.520000pt;}
.y17_c00473{bottom:556.160000pt;}
.y67_c00473{bottom:556.800000pt;}
.y16_c00473{bottom:557.440000pt;}
.y68_c00473{bottom:559.360000pt;}
.y15_c00473{bottom:593.920000pt;}
.y65_c00473{bottom:594.560000pt;}
.y14_c00473{bottom:595.840000pt;}
.y66_c00473{bottom:596.480000pt;}
.y13_c00473{bottom:631.680000pt;}
.y64_c00473{bottom:632.960000pt;}
.y12_c00473{bottom:633.600000pt;}
.y63_c00473{bottom:634.240000pt;}
.y11_c00473{bottom:669.440000pt;}
.y62_c00473{bottom:670.080000pt;}
.y10_c00473{bottom:672.000000pt;}
.y61_c00473{bottom:672.640000pt;}
.yf_c00473{bottom:707.840000pt;}
.ye_c00473{bottom:709.760000pt;}
.y5f_c00473{bottom:710.400000pt;}
.y60_c00473{bottom:711.040000pt;}
.yd_c00473{bottom:746.240000pt;}
.y5e_c00473{bottom:746.880000pt;}
.yc_c00473{bottom:748.160000pt;}
.y5d_c00473{bottom:748.800000pt;}
.yb_c00473{bottom:784.000000pt;}
.y5c_c00473{bottom:784.640000pt;}
.ya_c00473{bottom:785.920000pt;}
.y5b_c00473{bottom:786.560000pt;}
.y59_c00473{bottom:822.400000pt;}
.y9_c00473{bottom:823.040000pt;}
.y5a_c00473{bottom:823.680000pt;}
.y8_c00473{bottom:824.320000pt;}
.y58_c00473{bottom:860.160000pt;}
.y7_c00473{bottom:860.800000pt;}
.y57_c00473{bottom:861.440000pt;}
.y6_c00473{bottom:862.080000pt;}
.y56_c00473{bottom:863.360000pt;}
.y55_c00473{bottom:898.560000pt;}
.y5_c00473{bottom:899.200000pt;}
.y4_c00473{bottom:900.480000pt;}
.y54_c00473{bottom:901.120000pt;}
.y53_c00473{bottom:936.320000pt;}
.y3_c00473{bottom:936.960000pt;}
.y2_c00473{bottom:938.880000pt;}
.y1_c00473{bottom:995.840000pt;}
.hc_c00473{height:27.645000pt;}
.ha_c00473{height:36.860000pt;}
.h8_c00473{height:39.163750pt;}
.hb_c00473{height:41.467500pt;}
.hd_c00473{height:43.771250pt;}
.h6_c00473{height:46.075000pt;}
.h3_c00473{height:48.378750pt;}
.h5_c00473{height:50.682500pt;}
.hf_c00473{height:51.451250pt;}
.h7_c00473{height:52.986250pt;}
.he_c00473{height:55.290000pt;}
.h4_c00473{height:57.593750pt;}
.h2_c00473{height:59.897500pt;}
.h9_c00473{height:62.201250pt;}
.h0_c00473{height:1031.040000pt;}
.h1_c00473{height:1031.333333pt;}
.w0_c00473{width:679.680000pt;}
.w1_c00473{width:680.000000pt;}
.x0_c00473{left:0.000000pt;}
.x1b_c00473{left:30.720000pt;}
.xe_c00473{left:32.000000pt;}
.x5_c00473{left:33.280000pt;}
.x2_c00473{left:34.560000pt;}
.xf_c00473{left:97.920000pt;}
.x6_c00473{left:99.200000pt;}
.x4_c00473{left:100.480000pt;}
.x3_c00473{left:101.760000pt;}
.x1c_c00473{left:174.720000pt;}
.x12_c00473{left:176.000000pt;}
.x8_c00473{left:177.280000pt;}
.x9_c00473{left:205.440000pt;}
.x10_c00473{left:214.400000pt;}
.x7_c00473{left:215.680000pt;}
.x13_c00473{left:224.000000pt;}
.x16_c00473{left:242.560000pt;}
.xa_c00473{left:243.840000pt;}
.x11_c00473{left:262.400000pt;}
.x14_c00473{left:289.920000pt;}
.xd_c00473{left:291.840000pt;}
.xb_c00473{left:301.440000pt;}
.x1d_c00473{left:309.120000pt;}
.x15_c00473{left:330.240000pt;}
.xc_c00473{left:339.200000pt;}
.x1e_c00473{left:349.440000pt;}
.x17_c00473{left:387.200000pt;}
.x18_c00473{left:424.960000pt;}
.x19_c00473{left:464.640000pt;}
.x2d_c00473{left:465.920000pt;}
.x26_c00473{left:467.200000pt;}
.x1f_c00473{left:468.480000pt;}
.x1a_c00473{left:483.840000pt;}
.x2e_c00473{left:485.120000pt;}
.x23_c00473{left:486.400000pt;}
.x20_c00473{left:487.680000pt;}
.x32_c00473{left:502.400000pt;}
.x2a_c00473{left:503.680000pt;}
.x21_c00473{left:504.960000pt;}
.x24_c00473{left:506.240000pt;}
.x2b_c00473{left:532.480000pt;}
.x28_c00473{left:534.400000pt;}
.x33_c00473{left:561.280000pt;}
.x2c_c00473{left:562.560000pt;}
.x25_c00473{left:564.480000pt;}
.x2f_c00473{left:592.000000pt;}
.x31_c00473{left:599.680000pt;}
.x27_c00473{left:601.600000pt;}
.x22_c00473{left:602.880000pt;}
.x1_c00473{left:614.400000pt;}
.x30_c00473{left:618.880000pt;}
.x29_c00473{left:620.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6e3b08db3daecfaf4343856b.woff2')format("woff");}.ff1_c00474{font-family:ff1_c00474;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m37_c00474{transform:matrix(0.176600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176600,0.000000,0.000000,0.250000,0,0);}
.m40_c00474{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);}
.m25_c00474{transform:matrix(0.200550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200550,0.000000,0.000000,0.250000,0,0);}
.m15_c00474{transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);}
.m2d_c00474{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m26_c00474{transform:matrix(0.241550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241550,0.000000,0.000000,0.250000,0,0);}
.m33_c00474{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.mf_c00474{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m29_c00474{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m31_c00474{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m2_c00474{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m6_c00474{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_c00474{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.mb_c00474{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00474{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m9_c00474{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00474{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);}
.m21_c00474{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00474{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m5_c00474{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);}
.m3e_c00474{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);}
.m2e_c00474{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00474{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m13_c00474{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m8_c00474{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m7_c00474{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m23_c00474{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.md_c00474{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00474{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00474{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00474{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00474{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m4_c00474{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m16_c00474{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00474{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m10_c00474{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mc_c00474{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m11_c00474{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);}
.m2b_c00474{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m17_c00474{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m0_c00474{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);}
.m35_c00474{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);}
.m1d_c00474{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m36_c00474{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1_c00474{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m38_c00474{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m20_c00474{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);}
.m18_c00474{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m34_c00474{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00474{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);}
.m3_c00474{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00474{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);}
.m32_c00474{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m30_c00474{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00474{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m14_c00474{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00474{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);}
.m24_c00474{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m19_c00474{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m22_c00474{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m12_c00474{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m39_c00474{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.me_c00474{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.ma_c00474{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.m28_c00474{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.v2_c00474{vertical-align:-5.760000px;}
.v1_c00474{vertical-align:-2.880000px;}
.v0_c00474{vertical-align:0.000000px;}
.ls0_c00474{letter-spacing:0.000000px;}
.sc__c00474{text-shadow:none;}
.sc0_c00474{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00474{-webkit-text-stroke:0px transparent;}
.sc0_c00474{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00474{word-spacing:0.000000px;}
.ws0_c00474{word-spacing:6.534000px;}
.ws3_c00474{word-spacing:11.855347px;}
.ws4_c00474{word-spacing:14.240400px;}
.ws1_c00474{word-spacing:20.750645px;}
.ws2_c00474{word-spacing:44.129376px;}
.fc0_c00474{color:transparent;}
.fsb_c00474{font-size:34.560000px;}
.fs3_c00474{font-size:46.080000px;}
.fs8_c00474{font-size:48.960000px;}
.fs7_c00474{font-size:51.840000px;}
.fs5_c00474{font-size:54.720000px;}
.fs6_c00474{font-size:57.600000px;}
.fs1_c00474{font-size:60.480000px;}
.fsd_c00474{font-size:63.360000px;}
.fsa_c00474{font-size:66.240000px;}
.fs4_c00474{font-size:69.120000px;}
.fs9_c00474{font-size:72.000000px;}
.fs2_c00474{font-size:74.880000px;}
.fs0_c00474{font-size:77.760000px;}
.fse_c00474{font-size:89.280000px;}
.fsc_c00474{font-size:100.800000px;}
.y0_c00474{bottom:0.000000px;}
.y77_c00474{bottom:64.080000px;}
.y72_c00474{bottom:72.720000px;}
.y74_c00474{bottom:73.440000px;}
.y76_c00474{bottom:74.880000px;}
.y71_c00474{bottom:75.600000px;}
.y73_c00474{bottom:77.040000px;}
.y75_c00474{bottom:78.480000px;}
.y6f_c00474{bottom:108.000000px;}
.y6d_c00474{bottom:116.640000px;}
.y6e_c00474{bottom:118.080000px;}
.y6c_c00474{bottom:118.800000px;}
.y70_c00474{bottom:120.960000px;}
.y69_c00474{bottom:159.840000px;}
.y6b_c00474{bottom:161.280000px;}
.y6a_c00474{bottom:163.440000px;}
.y65_c00474{bottom:192.240000px;}
.y67_c00474{bottom:193.680000px;}
.y64_c00474{bottom:194.400000px;}
.y68_c00474{bottom:195.120000px;}
.y66_c00474{bottom:195.840000px;}
.y5f_c00474{bottom:235.440000px;}
.y60_c00474{bottom:236.880000px;}
.y62_c00474{bottom:237.600000px;}
.y5e_c00474{bottom:238.320000px;}
.y61_c00474{bottom:239.760000px;}
.y63_c00474{bottom:240.480000px;}
.y5d_c00474{bottom:277.920000px;}
.y59_c00474{bottom:310.320000px;}
.y5b_c00474{bottom:311.760000px;}
.y58_c00474{bottom:312.480000px;}
.y5a_c00474{bottom:313.920000px;}
.y5c_c00474{bottom:314.640000px;}
.y53_c00474{bottom:346.320000px;}
.y57_c00474{bottom:347.040000px;}
.y52_c00474{bottom:352.800000px;}
.y54_c00474{bottom:354.960000px;}
.y51_c00474{bottom:355.680000px;}
.y56_c00474{bottom:356.400000px;}
.y55_c00474{bottom:357.120000px;}
.y50_c00474{bottom:396.000000px;}
.y4f_c00474{bottom:399.600000px;}
.y4d_c00474{bottom:428.400000px;}
.y4b_c00474{bottom:429.840000px;}
.y4e_c00474{bottom:430.560000px;}
.y4c_c00474{bottom:432.000000px;}
.y4a_c00474{bottom:471.600000px;}
.y47_c00474{bottom:503.280000px;}
.y49_c00474{bottom:504.720000px;}
.y45_c00474{bottom:505.440000px;}
.y48_c00474{bottom:506.880000px;}
.y46_c00474{bottom:507.600000px;}
.y41_c00474{bottom:546.480000px;}
.y44_c00474{bottom:547.920000px;}
.y40_c00474{bottom:548.640000px;}
.y43_c00474{bottom:550.080000px;}
.y42_c00474{bottom:550.800000px;}
.y3d_c00474{bottom:589.680000px;}
.y3c_c00474{bottom:591.120000px;}
.y3f_c00474{bottom:591.840000px;}
.y3e_c00474{bottom:593.280000px;}
.y38_c00474{bottom:632.880000px;}
.y3b_c00474{bottom:634.320000px;}
.y37_c00474{bottom:635.040000px;}
.y39_c00474{bottom:636.480000px;}
.y3a_c00474{bottom:637.200000px;}
.y32_c00474{bottom:675.360000px;}
.y34_c00474{bottom:676.080000px;}
.y36_c00474{bottom:676.800000px;}
.y31_c00474{bottom:677.520000px;}
.y35_c00474{bottom:678.240000px;}
.y33_c00474{bottom:679.680000px;}
.y2f_c00474{bottom:711.360000px;}
.y2b_c00474{bottom:718.560000px;}
.y2d_c00474{bottom:720.000000px;}
.y2a_c00474{bottom:720.720000px;}
.y2e_c00474{bottom:722.160000px;}
.y2c_c00474{bottom:722.880000px;}
.y30_c00474{bottom:723.600000px;}
.y26_c00474{bottom:761.760000px;}
.y25_c00474{bottom:763.200000px;}
.y29_c00474{bottom:763.920000px;}
.y27_c00474{bottom:765.360000px;}
.y28_c00474{bottom:766.080000px;}
.y23_c00474{bottom:804.240000px;}
.y22_c00474{bottom:806.400000px;}
.y24_c00474{bottom:808.560000px;}
.y1d_c00474{bottom:847.440000px;}
.y20_c00474{bottom:848.160000px;}
.y1c_c00474{bottom:848.880000px;}
.y1e_c00474{bottom:849.600000px;}
.y21_c00474{bottom:851.760000px;}
.y1f_c00474{bottom:852.480000px;}
.y17_c00474{bottom:890.640000px;}
.y16_c00474{bottom:891.360000px;}
.y19_c00474{bottom:892.080000px;}
.y1a_c00474{bottom:892.800000px;}
.y1b_c00474{bottom:893.520000px;}
.y18_c00474{bottom:894.240000px;}
.y15_c00474{bottom:932.400000px;}
.y11_c00474{bottom:933.120000px;}
.y13_c00474{bottom:933.840000px;}
.y10_c00474{bottom:934.560000px;}
.y14_c00474{bottom:936.000000px;}
.y12_c00474{bottom:936.720000px;}
.ye_c00474{bottom:975.600000px;}
.yf_c00474{bottom:976.320000px;}
.yd_c00474{bottom:977.040000px;}
.ya_c00474{bottom:1018.800000px;}
.yb_c00474{bottom:1020.240000px;}
.y9_c00474{bottom:1020.960000px;}
.yc_c00474{bottom:1021.680000px;}
.y3_c00474{bottom:1061.280000px;}
.y5_c00474{bottom:1062.000000px;}
.y7_c00474{bottom:1062.720000px;}
.y2_c00474{bottom:1063.440000px;}
.y6_c00474{bottom:1064.880000px;}
.y4_c00474{bottom:1065.600000px;}
.y8_c00474{bottom:1066.320000px;}
.y1_c00474{bottom:1131.120000px;}
.hd_c00474{height:31.100625px;}
.h5_c00474{height:41.467500px;}
.ha_c00474{height:44.059219px;}
.h9_c00474{height:46.650937px;}
.h7_c00474{height:49.242656px;}
.h8_c00474{height:51.834375px;}
.h3_c00474{height:54.426094px;}
.hf_c00474{height:57.017812px;}
.hc_c00474{height:59.609531px;}
.h6_c00474{height:62.201250px;}
.hb_c00474{height:64.792969px;}
.h4_c00474{height:67.384687px;}
.h2_c00474{height:69.976406px;}
.h10_c00474{height:80.343281px;}
.he_c00474{height:90.710156px;}
.h0_c00474{height:1174.320000px;}
.h1_c00474{height:1174.500000px;}
.w1_c00474{width:784.500000px;}
.w0_c00474{width:784.800000px;}
.x0_c00474{left:0.000000px;}
.x2_c00474{left:53.280000px;}
.x2a_c00474{left:54.720000px;}
.x3_c00474{left:128.160000px;}
.x22_c00474{left:129.600000px;}
.x1f_c00474{left:172.800000px;}
.xe_c00474{left:214.560000px;}
.xc_c00474{left:216.000000px;}
.x18_c00474{left:226.800000px;}
.xf_c00474{left:259.200000px;}
.x19_c00474{left:269.280000px;}
.x1d_c00474{left:280.800000px;}
.x4_c00474{left:291.600000px;}
.x10_c00474{left:313.200000px;}
.x1e_c00474{left:324.000000px;}
.x5_c00474{left:333.360000px;}
.x27_c00474{left:334.800000px;}
.x13_c00474{left:345.600000px;}
.x2b_c00474{left:357.120000px;}
.x14_c00474{left:399.600000px;}
.x1a_c00474{left:410.400000px;}
.x20_c00474{left:420.480000px;}
.x11_c00474{left:442.800000px;}
.x28_c00474{left:454.320000px;}
.x1b_c00474{left:463.680000px;}
.x24_c00474{left:475.200000px;}
.x2d_c00474{left:486.720000px;}
.x12_c00474{left:496.800000px;}
.x16_c00474{left:530.640000px;}
.x6_c00474{left:540.720000px;}
.x21_c00474{left:542.160000px;}
.x23_c00474{left:552.960000px;}
.x7_c00474{left:562.320000px;}
.x25_c00474{left:563.760000px;}
.xd_c00474{left:583.200000px;}
.x8_c00474{left:615.600000px;}
.x17_c00474{left:617.040000px;}
.x29_c00474{left:618.480000px;}
.x9_c00474{left:650.160000px;}
.x2c_c00474{left:651.600000px;}
.x1_c00474{left:681.120000px;}
.x15_c00474{left:683.280000px;}
.xa_c00474{left:693.360000px;}
.x26_c00474{left:694.800000px;}
.xb_c00474{left:713.520000px;}
.x1c_c00474{left:714.960000px;}
@media print{
.v2_c00474{vertical-align:-5.120000pt;}
.v1_c00474{vertical-align:-2.560000pt;}
.v0_c00474{vertical-align:0.000000pt;}
.ls0_c00474{letter-spacing:0.000000pt;}
.ws5_c00474{word-spacing:0.000000pt;}
.ws0_c00474{word-spacing:5.808000pt;}
.ws3_c00474{word-spacing:10.538086pt;}
.ws4_c00474{word-spacing:12.658133pt;}
.ws1_c00474{word-spacing:18.445018pt;}
.ws2_c00474{word-spacing:39.226112pt;}
.fsb_c00474{font-size:30.720000pt;}
.fs3_c00474{font-size:40.960000pt;}
.fs8_c00474{font-size:43.520000pt;}
.fs7_c00474{font-size:46.080000pt;}
.fs5_c00474{font-size:48.640000pt;}
.fs6_c00474{font-size:51.200000pt;}
.fs1_c00474{font-size:53.760000pt;}
.fsd_c00474{font-size:56.320000pt;}
.fsa_c00474{font-size:58.880000pt;}
.fs4_c00474{font-size:61.440000pt;}
.fs9_c00474{font-size:64.000000pt;}
.fs2_c00474{font-size:66.560000pt;}
.fs0_c00474{font-size:69.120000pt;}
.fse_c00474{font-size:79.360000pt;}
.fsc_c00474{font-size:89.600000pt;}
.y0_c00474{bottom:0.000000pt;}
.y77_c00474{bottom:56.960000pt;}
.y72_c00474{bottom:64.640000pt;}
.y74_c00474{bottom:65.280000pt;}
.y76_c00474{bottom:66.560000pt;}
.y71_c00474{bottom:67.200000pt;}
.y73_c00474{bottom:68.480000pt;}
.y75_c00474{bottom:69.760000pt;}
.y6f_c00474{bottom:96.000000pt;}
.y6d_c00474{bottom:103.680000pt;}
.y6e_c00474{bottom:104.960000pt;}
.y6c_c00474{bottom:105.600000pt;}
.y70_c00474{bottom:107.520000pt;}
.y69_c00474{bottom:142.080000pt;}
.y6b_c00474{bottom:143.360000pt;}
.y6a_c00474{bottom:145.280000pt;}
.y65_c00474{bottom:170.880000pt;}
.y67_c00474{bottom:172.160000pt;}
.y64_c00474{bottom:172.800000pt;}
.y68_c00474{bottom:173.440000pt;}
.y66_c00474{bottom:174.080000pt;}
.y5f_c00474{bottom:209.280000pt;}
.y60_c00474{bottom:210.560000pt;}
.y62_c00474{bottom:211.200000pt;}
.y5e_c00474{bottom:211.840000pt;}
.y61_c00474{bottom:213.120000pt;}
.y63_c00474{bottom:213.760000pt;}
.y5d_c00474{bottom:247.040000pt;}
.y59_c00474{bottom:275.840000pt;}
.y5b_c00474{bottom:277.120000pt;}
.y58_c00474{bottom:277.760000pt;}
.y5a_c00474{bottom:279.040000pt;}
.y5c_c00474{bottom:279.680000pt;}
.y53_c00474{bottom:307.840000pt;}
.y57_c00474{bottom:308.480000pt;}
.y52_c00474{bottom:313.600000pt;}
.y54_c00474{bottom:315.520000pt;}
.y51_c00474{bottom:316.160000pt;}
.y56_c00474{bottom:316.800000pt;}
.y55_c00474{bottom:317.440000pt;}
.y50_c00474{bottom:352.000000pt;}
.y4f_c00474{bottom:355.200000pt;}
.y4d_c00474{bottom:380.800000pt;}
.y4b_c00474{bottom:382.080000pt;}
.y4e_c00474{bottom:382.720000pt;}
.y4c_c00474{bottom:384.000000pt;}
.y4a_c00474{bottom:419.200000pt;}
.y47_c00474{bottom:447.360000pt;}
.y49_c00474{bottom:448.640000pt;}
.y45_c00474{bottom:449.280000pt;}
.y48_c00474{bottom:450.560000pt;}
.y46_c00474{bottom:451.200000pt;}
.y41_c00474{bottom:485.760000pt;}
.y44_c00474{bottom:487.040000pt;}
.y40_c00474{bottom:487.680000pt;}
.y43_c00474{bottom:488.960000pt;}
.y42_c00474{bottom:489.600000pt;}
.y3d_c00474{bottom:524.160000pt;}
.y3c_c00474{bottom:525.440000pt;}
.y3f_c00474{bottom:526.080000pt;}
.y3e_c00474{bottom:527.360000pt;}
.y38_c00474{bottom:562.560000pt;}
.y3b_c00474{bottom:563.840000pt;}
.y37_c00474{bottom:564.480000pt;}
.y39_c00474{bottom:565.760000pt;}
.y3a_c00474{bottom:566.400000pt;}
.y32_c00474{bottom:600.320000pt;}
.y34_c00474{bottom:600.960000pt;}
.y36_c00474{bottom:601.600000pt;}
.y31_c00474{bottom:602.240000pt;}
.y35_c00474{bottom:602.880000pt;}
.y33_c00474{bottom:604.160000pt;}
.y2f_c00474{bottom:632.320000pt;}
.y2b_c00474{bottom:638.720000pt;}
.y2d_c00474{bottom:640.000000pt;}
.y2a_c00474{bottom:640.640000pt;}
.y2e_c00474{bottom:641.920000pt;}
.y2c_c00474{bottom:642.560000pt;}
.y30_c00474{bottom:643.200000pt;}
.y26_c00474{bottom:677.120000pt;}
.y25_c00474{bottom:678.400000pt;}
.y29_c00474{bottom:679.040000pt;}
.y27_c00474{bottom:680.320000pt;}
.y28_c00474{bottom:680.960000pt;}
.y23_c00474{bottom:714.880000pt;}
.y22_c00474{bottom:716.800000pt;}
.y24_c00474{bottom:718.720000pt;}
.y1d_c00474{bottom:753.280000pt;}
.y20_c00474{bottom:753.920000pt;}
.y1c_c00474{bottom:754.560000pt;}
.y1e_c00474{bottom:755.200000pt;}
.y21_c00474{bottom:757.120000pt;}
.y1f_c00474{bottom:757.760000pt;}
.y17_c00474{bottom:791.680000pt;}
.y16_c00474{bottom:792.320000pt;}
.y19_c00474{bottom:792.960000pt;}
.y1a_c00474{bottom:793.600000pt;}
.y1b_c00474{bottom:794.240000pt;}
.y18_c00474{bottom:794.880000pt;}
.y15_c00474{bottom:828.800000pt;}
.y11_c00474{bottom:829.440000pt;}
.y13_c00474{bottom:830.080000pt;}
.y10_c00474{bottom:830.720000pt;}
.y14_c00474{bottom:832.000000pt;}
.y12_c00474{bottom:832.640000pt;}
.ye_c00474{bottom:867.200000pt;}
.yf_c00474{bottom:867.840000pt;}
.yd_c00474{bottom:868.480000pt;}
.ya_c00474{bottom:905.600000pt;}
.yb_c00474{bottom:906.880000pt;}
.y9_c00474{bottom:907.520000pt;}
.yc_c00474{bottom:908.160000pt;}
.y3_c00474{bottom:943.360000pt;}
.y5_c00474{bottom:944.000000pt;}
.y7_c00474{bottom:944.640000pt;}
.y2_c00474{bottom:945.280000pt;}
.y6_c00474{bottom:946.560000pt;}
.y4_c00474{bottom:947.200000pt;}
.y8_c00474{bottom:947.840000pt;}
.y1_c00474{bottom:1005.440000pt;}
.hd_c00474{height:27.645000pt;}
.h5_c00474{height:36.860000pt;}
.ha_c00474{height:39.163750pt;}
.h9_c00474{height:41.467500pt;}
.h7_c00474{height:43.771250pt;}
.h8_c00474{height:46.075000pt;}
.h3_c00474{height:48.378750pt;}
.hf_c00474{height:50.682500pt;}
.hc_c00474{height:52.986250pt;}
.h6_c00474{height:55.290000pt;}
.hb_c00474{height:57.593750pt;}
.h4_c00474{height:59.897500pt;}
.h2_c00474{height:62.201250pt;}
.h10_c00474{height:71.416250pt;}
.he_c00474{height:80.631250pt;}
.h0_c00474{height:1043.840000pt;}
.h1_c00474{height:1044.000000pt;}
.w1_c00474{width:697.333333pt;}
.w0_c00474{width:697.600000pt;}
.x0_c00474{left:0.000000pt;}
.x2_c00474{left:47.360000pt;}
.x2a_c00474{left:48.640000pt;}
.x3_c00474{left:113.920000pt;}
.x22_c00474{left:115.200000pt;}
.x1f_c00474{left:153.600000pt;}
.xe_c00474{left:190.720000pt;}
.xc_c00474{left:192.000000pt;}
.x18_c00474{left:201.600000pt;}
.xf_c00474{left:230.400000pt;}
.x19_c00474{left:239.360000pt;}
.x1d_c00474{left:249.600000pt;}
.x4_c00474{left:259.200000pt;}
.x10_c00474{left:278.400000pt;}
.x1e_c00474{left:288.000000pt;}
.x5_c00474{left:296.320000pt;}
.x27_c00474{left:297.600000pt;}
.x13_c00474{left:307.200000pt;}
.x2b_c00474{left:317.440000pt;}
.x14_c00474{left:355.200000pt;}
.x1a_c00474{left:364.800000pt;}
.x20_c00474{left:373.760000pt;}
.x11_c00474{left:393.600000pt;}
.x28_c00474{left:403.840000pt;}
.x1b_c00474{left:412.160000pt;}
.x24_c00474{left:422.400000pt;}
.x2d_c00474{left:432.640000pt;}
.x12_c00474{left:441.600000pt;}
.x16_c00474{left:471.680000pt;}
.x6_c00474{left:480.640000pt;}
.x21_c00474{left:481.920000pt;}
.x23_c00474{left:491.520000pt;}
.x7_c00474{left:499.840000pt;}
.x25_c00474{left:501.120000pt;}
.xd_c00474{left:518.400000pt;}
.x8_c00474{left:547.200000pt;}
.x17_c00474{left:548.480000pt;}
.x29_c00474{left:549.760000pt;}
.x9_c00474{left:577.920000pt;}
.x2c_c00474{left:579.200000pt;}
.x1_c00474{left:605.440000pt;}
.x15_c00474{left:607.360000pt;}
.xa_c00474{left:616.320000pt;}
.x26_c00474{left:617.600000pt;}
.xb_c00474{left:634.240000pt;}
.x1c_c00474{left:635.520000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_63d8ba562065866052bd06f0.woff2')format("woff");}.ff1_c00475{font-family:ff1_c00475;line-height:1.109863;font-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_c00475{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);}
.m29_c00475{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m7_c00475{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m42_c00475{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);}
.m2c_c00475{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.me_c00475{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00475{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00475{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m8_c00475{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m6_c00475{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m12_c00475{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m43_c00475{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);}
.m2d_c00475{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m14_c00475{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m21_c00475{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m24_c00475{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m9_c00475{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m37_c00475{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00475{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m31_c00475{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m5_c00475{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m38_c00475{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m30_c00475{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m20_c00475{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mf_c00475{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m2_c00475{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00475{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00475{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00475{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00475{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1_c00475{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_c00475{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);}
.m34_c00475{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m35_c00475{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00475{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m40_c00475{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m0_c00475{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);}
.m16_c00475{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.ma_c00475{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_c00475{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00475{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.md_c00475{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00475{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m23_c00475{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);}
.m3_c00475{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m17_c00475{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m36_c00475{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);}
.m33_c00475{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m32_c00475{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);}
.m18_c00475{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m22_c00475{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);}
.mc_c00475{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m41_c00475{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);}
.mb_c00475{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m10_c00475{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m11_c00475{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00475{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);}
.m4_c00475{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m25_c00475{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m13_c00475{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00475{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m39_c00475{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00475{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);}
.m28_c00475{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m27_c00475{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m19_c00475{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m44_c00475{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00475{transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00475{transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);}
.v0_c00475{vertical-align:0.000000px;}
.v1_c00475{vertical-align:8.640000px;}
.ls0_c00475{letter-spacing:0.000000px;}
.sc__c00475{text-shadow:none;}
.sc0_c00475{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00475{-webkit-text-stroke:0px transparent;}
.sc0_c00475{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00475{word-spacing:0.000000px;}
.ws1_c00475{word-spacing:11.262480px;}
.ws0_c00475{word-spacing:14.957055px;}
.ws2_c00475{word-spacing:167.099121px;}
.fc0_c00475{color:transparent;}
.fsb_c00475{font-size:34.560000px;}
.fsd_c00475{font-size:37.440000px;}
.fs3_c00475{font-size:43.200000px;}
.fs7_c00475{font-size:46.080000px;}
.fs8_c00475{font-size:48.960000px;}
.fsa_c00475{font-size:51.840000px;}
.fs5_c00475{font-size:54.720000px;}
.fs6_c00475{font-size:57.600000px;}
.fs2_c00475{font-size:60.480000px;}
.fs1_c00475{font-size:63.360000px;}
.fs9_c00475{font-size:66.240000px;}
.fsc_c00475{font-size:69.120000px;}
.fs4_c00475{font-size:72.000000px;}
.fs0_c00475{font-size:74.880000px;}
.y0_c00475{bottom:0.000000px;}
.y6d_c00475{bottom:63.360000px;}
.y6c_c00475{bottom:64.080000px;}
.y6b_c00475{bottom:64.800000px;}
.y6e_c00475{bottom:65.520000px;}
.y68_c00475{bottom:106.560000px;}
.y69_c00475{bottom:107.280000px;}
.y67_c00475{bottom:108.720000px;}
.y6a_c00475{bottom:109.440000px;}
.y65_c00475{bottom:149.040000px;}
.y64_c00475{bottom:150.480000px;}
.y66_c00475{bottom:151.920000px;}
.y62_c00475{bottom:192.240000px;}
.y61_c00475{bottom:192.960000px;}
.y63_c00475{bottom:195.120000px;}
.y5e_c00475{bottom:234.720000px;}
.y5d_c00475{bottom:235.440000px;}
.y5c_c00475{bottom:236.160000px;}
.y60_c00475{bottom:236.880000px;}
.y5f_c00475{bottom:237.600000px;}
.y59_c00475{bottom:277.920000px;}
.y58_c00475{bottom:278.640000px;}
.y5b_c00475{bottom:279.360000px;}
.y57_c00475{bottom:280.080000px;}
.y5a_c00475{bottom:280.800000px;}
.y53_c00475{bottom:321.840000px;}
.y56_c00475{bottom:322.560000px;}
.y52_c00475{bottom:323.280000px;}
.y55_c00475{bottom:324.000000px;}
.y54_c00475{bottom:324.720000px;}
.y50_c00475{bottom:364.320000px;}
.y4f_c00475{bottom:365.040000px;}
.y4e_c00475{bottom:365.760000px;}
.y51_c00475{bottom:367.200000px;}
.y4a_c00475{bottom:407.520000px;}
.y4d_c00475{bottom:408.240000px;}
.y49_c00475{bottom:408.960000px;}
.y4b_c00475{bottom:409.680000px;}
.y4c_c00475{bottom:410.400000px;}
.y45_c00475{bottom:450.720000px;}
.y44_c00475{bottom:451.440000px;}
.y48_c00475{bottom:452.160000px;}
.y47_c00475{bottom:452.880000px;}
.y46_c00475{bottom:453.600000px;}
.y40_c00475{bottom:493.920000px;}
.y3f_c00475{bottom:494.640000px;}
.y43_c00475{bottom:495.360000px;}
.y42_c00475{bottom:496.800000px;}
.y41_c00475{bottom:497.520000px;}
.y3a_c00475{bottom:537.120000px;}
.y3d_c00475{bottom:537.840000px;}
.y39_c00475{bottom:538.560000px;}
.y3c_c00475{bottom:539.280000px;}
.y3b_c00475{bottom:540.000000px;}
.y3e_c00475{bottom:540.720000px;}
.y36_c00475{bottom:580.320000px;}
.y37_c00475{bottom:582.480000px;}
.y38_c00475{bottom:583.200000px;}
.y35_c00475{bottom:611.280000px;}
.y33_c00475{bottom:612.000000px;}
.y2f_c00475{bottom:612.720000px;}
.y30_c00475{bottom:613.440000px;}
.y31_c00475{bottom:614.160000px;}
.y32_c00475{bottom:614.880000px;}
.y34_c00475{bottom:615.600000px;}
.y2e_c00475{bottom:654.480000px;}
.y2c_c00475{bottom:655.200000px;}
.y2b_c00475{bottom:655.920000px;}
.y2d_c00475{bottom:657.360000px;}
.y28_c00475{bottom:697.680000px;}
.y27_c00475{bottom:698.400000px;}
.y29_c00475{bottom:699.840000px;}
.y2a_c00475{bottom:700.560000px;}
.y24_c00475{bottom:740.160000px;}
.y23_c00475{bottom:740.880000px;}
.y26_c00475{bottom:741.600000px;}
.y25_c00475{bottom:743.040000px;}
.y22_c00475{bottom:783.360000px;}
.y1f_c00475{bottom:784.080000px;}
.y21_c00475{bottom:785.520000px;}
.y20_c00475{bottom:786.240000px;}
.y1e_c00475{bottom:825.840000px;}
.y1d_c00475{bottom:826.560000px;}
.y1a_c00475{bottom:827.280000px;}
.y1b_c00475{bottom:828.720000px;}
.y1c_c00475{bottom:829.440000px;}
.y19_c00475{bottom:869.040000px;}
.y17_c00475{bottom:869.760000px;}
.y18_c00475{bottom:871.920000px;}
.y13_c00475{bottom:900.720000px;}
.y16_c00475{bottom:901.440000px;}
.y12_c00475{bottom:902.160000px;}
.y15_c00475{bottom:903.600000px;}
.y14_c00475{bottom:904.320000px;}
.y11_c00475{bottom:944.640000px;}
.y10_c00475{bottom:947.520000px;}
.ye_c00475{bottom:974.880000px;}
.yd_c00475{bottom:975.600000px;}
.ya_c00475{bottom:977.040000px;}
.yf_c00475{bottom:977.760000px;}
.yc_c00475{bottom:979.200000px;}
.yb_c00475{bottom:979.920000px;}
.y7_c00475{bottom:1018.800000px;}
.y9_c00475{bottom:1019.520000px;}
.y6_c00475{bottom:1020.240000px;}
.y8_c00475{bottom:1021.680000px;}
.y4_c00475{bottom:1061.280000px;}
.y3_c00475{bottom:1062.720000px;}
.y2_c00475{bottom:1063.440000px;}
.y5_c00475{bottom:1065.600000px;}
.y1_c00475{bottom:1141.920000px;}
.hd_c00475{height:31.100625px;}
.hf_c00475{height:33.692344px;}
.h5_c00475{height:38.875781px;}
.h9_c00475{height:41.467500px;}
.ha_c00475{height:44.059219px;}
.hc_c00475{height:46.650937px;}
.h7_c00475{height:49.242656px;}
.h8_c00475{height:51.834375px;}
.h4_c00475{height:54.426094px;}
.h3_c00475{height:57.017812px;}
.hb_c00475{height:59.609531px;}
.he_c00475{height:62.201250px;}
.h6_c00475{height:64.792969px;}
.h2_c00475{height:67.384687px;}
.h0_c00475{height:1172.160000px;}
.h1_c00475{height:1172.250000px;}
.w0_c00475{width:781.920000px;}
.w1_c00475{width:782.250000px;}
.x0_c00475{left:0.000000px;}
.x2_c00475{left:51.120000px;}
.xc_c00475{left:125.280000px;}
.x3_c00475{left:126.720000px;}
.x11_c00475{left:169.920000px;}
.x17_c00475{left:180.000000px;}
.x4_c00475{left:212.400000px;}
.x27_c00475{left:213.840000px;}
.x18_c00475{left:223.200000px;}
.x12_c00475{left:224.640000px;}
.x23_c00475{left:234.720000px;}
.x13_c00475{left:256.320000px;}
.x1b_c00475{left:267.120000px;}
.x5_c00475{left:277.200000px;}
.x26_c00475{left:278.640000px;}
.x24_c00475{left:289.440000px;}
.xd_c00475{left:310.320000px;}
.x21_c00475{left:321.120000px;}
.x6_c00475{left:332.640000px;}
.x25_c00475{left:343.440000px;}
.x14_c00475{left:352.800000px;}
.xe_c00475{left:363.600000px;}
.x22_c00475{left:365.040000px;}
.x19_c00475{left:375.120000px;}
.xf_c00475{left:418.320000px;}
.x1a_c00475{left:428.400000px;}
.x1c_c00475{left:429.840000px;}
.x15_c00475{left:449.280000px;}
.x1d_c00475{left:471.600000px;}
.x7_c00475{left:527.760000px;}
.x8_c00475{left:559.440000px;}
.x1f_c00475{left:581.040000px;}
.x16_c00475{left:613.440000px;}
.x9_c00475{left:614.880000px;}
.xa_c00475{left:647.280000px;}
.xb_c00475{left:680.400000px;}
.x1_c00475{left:684.720000px;}
.x10_c00475{left:690.480000px;}
.x20_c00475{left:691.920000px;}
.x1e_c00475{left:711.360000px;}
.x28_c00475{left:712.800000px;}
@media print{
.v0_c00475{vertical-align:0.000000pt;}
.v1_c00475{vertical-align:7.680000pt;}
.ls0_c00475{letter-spacing:0.000000pt;}
.ws3_c00475{word-spacing:0.000000pt;}
.ws1_c00475{word-spacing:10.011093pt;}
.ws0_c00475{word-spacing:13.295160pt;}
.ws2_c00475{word-spacing:148.532552pt;}
.fsb_c00475{font-size:30.720000pt;}
.fsd_c00475{font-size:33.280000pt;}
.fs3_c00475{font-size:38.400000pt;}
.fs7_c00475{font-size:40.960000pt;}
.fs8_c00475{font-size:43.520000pt;}
.fsa_c00475{font-size:46.080000pt;}
.fs5_c00475{font-size:48.640000pt;}
.fs6_c00475{font-size:51.200000pt;}
.fs2_c00475{font-size:53.760000pt;}
.fs1_c00475{font-size:56.320000pt;}
.fs9_c00475{font-size:58.880000pt;}
.fsc_c00475{font-size:61.440000pt;}
.fs4_c00475{font-size:64.000000pt;}
.fs0_c00475{font-size:66.560000pt;}
.y0_c00475{bottom:0.000000pt;}
.y6d_c00475{bottom:56.320000pt;}
.y6c_c00475{bottom:56.960000pt;}
.y6b_c00475{bottom:57.600000pt;}
.y6e_c00475{bottom:58.240000pt;}
.y68_c00475{bottom:94.720000pt;}
.y69_c00475{bottom:95.360000pt;}
.y67_c00475{bottom:96.640000pt;}
.y6a_c00475{bottom:97.280000pt;}
.y65_c00475{bottom:132.480000pt;}
.y64_c00475{bottom:133.760000pt;}
.y66_c00475{bottom:135.040000pt;}
.y62_c00475{bottom:170.880000pt;}
.y61_c00475{bottom:171.520000pt;}
.y63_c00475{bottom:173.440000pt;}
.y5e_c00475{bottom:208.640000pt;}
.y5d_c00475{bottom:209.280000pt;}
.y5c_c00475{bottom:209.920000pt;}
.y60_c00475{bottom:210.560000pt;}
.y5f_c00475{bottom:211.200000pt;}
.y59_c00475{bottom:247.040000pt;}
.y58_c00475{bottom:247.680000pt;}
.y5b_c00475{bottom:248.320000pt;}
.y57_c00475{bottom:248.960000pt;}
.y5a_c00475{bottom:249.600000pt;}
.y53_c00475{bottom:286.080000pt;}
.y56_c00475{bottom:286.720000pt;}
.y52_c00475{bottom:287.360000pt;}
.y55_c00475{bottom:288.000000pt;}
.y54_c00475{bottom:288.640000pt;}
.y50_c00475{bottom:323.840000pt;}
.y4f_c00475{bottom:324.480000pt;}
.y4e_c00475{bottom:325.120000pt;}
.y51_c00475{bottom:326.400000pt;}
.y4a_c00475{bottom:362.240000pt;}
.y4d_c00475{bottom:362.880000pt;}
.y49_c00475{bottom:363.520000pt;}
.y4b_c00475{bottom:364.160000pt;}
.y4c_c00475{bottom:364.800000pt;}
.y45_c00475{bottom:400.640000pt;}
.y44_c00475{bottom:401.280000pt;}
.y48_c00475{bottom:401.920000pt;}
.y47_c00475{bottom:402.560000pt;}
.y46_c00475{bottom:403.200000pt;}
.y40_c00475{bottom:439.040000pt;}
.y3f_c00475{bottom:439.680000pt;}
.y43_c00475{bottom:440.320000pt;}
.y42_c00475{bottom:441.600000pt;}
.y41_c00475{bottom:442.240000pt;}
.y3a_c00475{bottom:477.440000pt;}
.y3d_c00475{bottom:478.080000pt;}
.y39_c00475{bottom:478.720000pt;}
.y3c_c00475{bottom:479.360000pt;}
.y3b_c00475{bottom:480.000000pt;}
.y3e_c00475{bottom:480.640000pt;}
.y36_c00475{bottom:515.840000pt;}
.y37_c00475{bottom:517.760000pt;}
.y38_c00475{bottom:518.400000pt;}
.y35_c00475{bottom:543.360000pt;}
.y33_c00475{bottom:544.000000pt;}
.y2f_c00475{bottom:544.640000pt;}
.y30_c00475{bottom:545.280000pt;}
.y31_c00475{bottom:545.920000pt;}
.y32_c00475{bottom:546.560000pt;}
.y34_c00475{bottom:547.200000pt;}
.y2e_c00475{bottom:581.760000pt;}
.y2c_c00475{bottom:582.400000pt;}
.y2b_c00475{bottom:583.040000pt;}
.y2d_c00475{bottom:584.320000pt;}
.y28_c00475{bottom:620.160000pt;}
.y27_c00475{bottom:620.800000pt;}
.y29_c00475{bottom:622.080000pt;}
.y2a_c00475{bottom:622.720000pt;}
.y24_c00475{bottom:657.920000pt;}
.y23_c00475{bottom:658.560000pt;}
.y26_c00475{bottom:659.200000pt;}
.y25_c00475{bottom:660.480000pt;}
.y22_c00475{bottom:696.320000pt;}
.y1f_c00475{bottom:696.960000pt;}
.y21_c00475{bottom:698.240000pt;}
.y20_c00475{bottom:698.880000pt;}
.y1e_c00475{bottom:734.080000pt;}
.y1d_c00475{bottom:734.720000pt;}
.y1a_c00475{bottom:735.360000pt;}
.y1b_c00475{bottom:736.640000pt;}
.y1c_c00475{bottom:737.280000pt;}
.y19_c00475{bottom:772.480000pt;}
.y17_c00475{bottom:773.120000pt;}
.y18_c00475{bottom:775.040000pt;}
.y13_c00475{bottom:800.640000pt;}
.y16_c00475{bottom:801.280000pt;}
.y12_c00475{bottom:801.920000pt;}
.y15_c00475{bottom:803.200000pt;}
.y14_c00475{bottom:803.840000pt;}
.y11_c00475{bottom:839.680000pt;}
.y10_c00475{bottom:842.240000pt;}
.ye_c00475{bottom:866.560000pt;}
.yd_c00475{bottom:867.200000pt;}
.ya_c00475{bottom:868.480000pt;}
.yf_c00475{bottom:869.120000pt;}
.yc_c00475{bottom:870.400000pt;}
.yb_c00475{bottom:871.040000pt;}
.y7_c00475{bottom:905.600000pt;}
.y9_c00475{bottom:906.240000pt;}
.y6_c00475{bottom:906.880000pt;}
.y8_c00475{bottom:908.160000pt;}
.y4_c00475{bottom:943.360000pt;}
.y3_c00475{bottom:944.640000pt;}
.y2_c00475{bottom:945.280000pt;}
.y5_c00475{bottom:947.200000pt;}
.y1_c00475{bottom:1015.040000pt;}
.hd_c00475{height:27.645000pt;}
.hf_c00475{height:29.948750pt;}
.h5_c00475{height:34.556250pt;}
.h9_c00475{height:36.860000pt;}
.ha_c00475{height:39.163750pt;}
.hc_c00475{height:41.467500pt;}
.h7_c00475{height:43.771250pt;}
.h8_c00475{height:46.075000pt;}
.h4_c00475{height:48.378750pt;}
.h3_c00475{height:50.682500pt;}
.hb_c00475{height:52.986250pt;}
.he_c00475{height:55.290000pt;}
.h6_c00475{height:57.593750pt;}
.h2_c00475{height:59.897500pt;}
.h0_c00475{height:1041.920000pt;}
.h1_c00475{height:1042.000000pt;}
.w0_c00475{width:695.040000pt;}
.w1_c00475{width:695.333333pt;}
.x0_c00475{left:0.000000pt;}
.x2_c00475{left:45.440000pt;}
.xc_c00475{left:111.360000pt;}
.x3_c00475{left:112.640000pt;}
.x11_c00475{left:151.040000pt;}
.x17_c00475{left:160.000000pt;}
.x4_c00475{left:188.800000pt;}
.x27_c00475{left:190.080000pt;}
.x18_c00475{left:198.400000pt;}
.x12_c00475{left:199.680000pt;}
.x23_c00475{left:208.640000pt;}
.x13_c00475{left:227.840000pt;}
.x1b_c00475{left:237.440000pt;}
.x5_c00475{left:246.400000pt;}
.x26_c00475{left:247.680000pt;}
.x24_c00475{left:257.280000pt;}
.xd_c00475{left:275.840000pt;}
.x21_c00475{left:285.440000pt;}
.x6_c00475{left:295.680000pt;}
.x25_c00475{left:305.280000pt;}
.x14_c00475{left:313.600000pt;}
.xe_c00475{left:323.200000pt;}
.x22_c00475{left:324.480000pt;}
.x19_c00475{left:333.440000pt;}
.xf_c00475{left:371.840000pt;}
.x1a_c00475{left:380.800000pt;}
.x1c_c00475{left:382.080000pt;}
.x15_c00475{left:399.360000pt;}
.x1d_c00475{left:419.200000pt;}
.x7_c00475{left:469.120000pt;}
.x8_c00475{left:497.280000pt;}
.x1f_c00475{left:516.480000pt;}
.x16_c00475{left:545.280000pt;}
.x9_c00475{left:546.560000pt;}
.xa_c00475{left:575.360000pt;}
.xb_c00475{left:604.800000pt;}
.x1_c00475{left:608.640000pt;}
.x10_c00475{left:613.760000pt;}
.x20_c00475{left:615.040000pt;}
.x1e_c00475{left:632.320000pt;}
.x28_c00475{left:633.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5b418933ad010b2e12d6380b.woff2')format("woff");}.ff1_c00476{font-family:ff1_c00476;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m43_c00476{transform:matrix(0.234825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234825,0.000000,0.000000,0.250000,0,0);}
.m31_c00476{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m2f_c00476{transform:matrix(0.244350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244350,0.000000,0.000000,0.250000,0,0);}
.m37_c00476{transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);}
.m3d_c00476{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);}
.m2e_c00476{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);}
.m46_c00476{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);}
.m41_c00476{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_c00476{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m30_c00476{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_c00476{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);}
.m33_c00476{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m29_c00476{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00476{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m17_c00476{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m14_c00476{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m40_c00476{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m22_c00476{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m48_c00476{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00476{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m19_c00476{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.md_c00476{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m4_c00476{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m0_c00476{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m38_c00476{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m28_c00476{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00476{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_c00476{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m12_c00476{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);}
.m34_c00476{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00476{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);}
.m3f_c00476{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m13_c00476{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00476{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);}
.m20_c00476{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);}
.mb_c00476{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m5_c00476{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m23_c00476{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);}
.m4c_c00476{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m18_c00476{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);}
.mf_c00476{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m47_c00476{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00476{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m42_c00476{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);}
.m45_c00476{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m1_c00476{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);}
.m10_c00476{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m7_c00476{transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);}
.m9_c00476{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00476{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m2_c00476{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m11_c00476{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00476{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00476{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);}
.m2c_c00476{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m24_c00476{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.ma_c00476{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);}
.m1a_c00476{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);}
.mc_c00476{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.me_c00476{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m3_c00476{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00476{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);}
.m6_c00476{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00476{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m26_c00476{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);}
.m3b_c00476{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m35_c00476{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00476{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);}
.m4d_c00476{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m21_c00476{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m25_c00476{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m36_c00476{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);}
.m44_c00476{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m49_c00476{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00476{transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);}
.m39_c00476{transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);}
.m27_c00476{transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);}
.m32_c00476{transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00476{transform:matrix(0.860000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.860000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.860000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00476{transform:matrix(0.885000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.885000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.885000,0.000000,0.000000,0.250000,0,0);}
.v0_c00476{vertical-align:0.000000px;}
.ls0_c00476{letter-spacing:0.000000px;}
.sc__c00476{text-shadow:none;}
.sc0_c00476{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00476{-webkit-text-stroke:0px transparent;}
.sc0_c00476{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00476{word-spacing:0.000000px;}
.ws0_c00476{word-spacing:181.749963px;}
.fc0_c00476{color:transparent;}
.fsd_c00476{font-size:34.560000px;}
.fs8_c00476{font-size:37.440000px;}
.fsc_c00476{font-size:43.200000px;}
.fs4_c00476{font-size:46.080000px;}
.fs7_c00476{font-size:48.960000px;}
.fs2_c00476{font-size:51.840000px;}
.fs3_c00476{font-size:54.720000px;}
.fs5_c00476{font-size:57.600000px;}
.fs1_c00476{font-size:60.480000px;}
.fsb_c00476{font-size:63.360000px;}
.fs9_c00476{font-size:66.240000px;}
.fs0_c00476{font-size:69.120000px;}
.fsa_c00476{font-size:72.000000px;}
.fs6_c00476{font-size:74.880000px;}
.y0_c00476{bottom:0.000000px;}
.y65_c00476{bottom:128.880000px;}
.y68_c00476{bottom:130.320000px;}
.y64_c00476{bottom:131.040000px;}
.y6a_c00476{bottom:131.760000px;}
.y66_c00476{bottom:132.480000px;}
.y67_c00476{bottom:133.200000px;}
.y62_c00476{bottom:172.080000px;}
.y63_c00476{bottom:173.520000px;}
.y69_c00476{bottom:174.240000px;}
.y61_c00476{bottom:174.960000px;}
.y5c_c00476{bottom:216.720000px;}
.y5d_c00476{bottom:218.880000px;}
.y5e_c00476{bottom:219.600000px;}
.y56_c00476{bottom:246.960000px;}
.y57_c00476{bottom:249.120000px;}
.y55_c00476{bottom:249.840000px;}
.y5f_c00476{bottom:250.560000px;}
.y58_c00476{bottom:252.000000px;}
.y60_c00476{bottom:252.720000px;}
.y52_c00476{bottom:290.880000px;}
.y53_c00476{bottom:292.320000px;}
.y51_c00476{bottom:293.760000px;}
.y54_c00476{bottom:294.480000px;}
.y4e_c00476{bottom:321.840000px;}
.y4d_c00476{bottom:324.720000px;}
.y5a_c00476{bottom:325.440000px;}
.y4f_c00476{bottom:326.160000px;}
.y50_c00476{bottom:326.880000px;}
.y5b_c00476{bottom:327.600000px;}
.y4c_c00476{bottom:365.760000px;}
.y4b_c00476{bottom:366.480000px;}
.y49_c00476{bottom:368.640000px;}
.y4a_c00476{bottom:369.360000px;}
.y45_c00476{bottom:397.440000px;}
.y46_c00476{bottom:398.880000px;}
.y44_c00476{bottom:399.600000px;}
.y59_c00476{bottom:400.320000px;}
.y47_c00476{bottom:401.040000px;}
.y48_c00476{bottom:402.480000px;}
.y40_c00476{bottom:440.640000px;}
.y42_c00476{bottom:441.360000px;}
.y41_c00476{bottom:442.080000px;}
.y3f_c00476{bottom:442.800000px;}
.y43_c00476{bottom:444.240000px;}
.y3e_c00476{bottom:483.120000px;}
.y3d_c00476{bottom:485.280000px;}
.y39_c00476{bottom:515.520000px;}
.y3a_c00476{bottom:516.960000px;}
.y38_c00476{bottom:517.680000px;}
.y3b_c00476{bottom:519.120000px;}
.y3c_c00476{bottom:519.840000px;}
.y37_c00476{bottom:558.720000px;}
.y36_c00476{bottom:563.040000px;}
.y32_c00476{bottom:590.400000px;}
.y33_c00476{bottom:592.560000px;}
.y31_c00476{bottom:593.280000px;}
.y34_c00476{bottom:594.720000px;}
.y35_c00476{bottom:595.440000px;}
.y2d_c00476{bottom:633.600000px;}
.y2e_c00476{bottom:634.320000px;}
.y2c_c00476{bottom:635.760000px;}
.y2f_c00476{bottom:636.480000px;}
.y30_c00476{bottom:638.640000px;}
.y27_c00476{bottom:678.240000px;}
.y2a_c00476{bottom:678.960000px;}
.y2b_c00476{bottom:679.680000px;}
.y28_c00476{bottom:680.400000px;}
.y29_c00476{bottom:681.120000px;}
.y20_c00476{bottom:720.720000px;}
.y24_c00476{bottom:721.440000px;}
.y23_c00476{bottom:722.160000px;}
.y21_c00476{bottom:723.600000px;}
.y22_c00476{bottom:724.320000px;}
.y1d_c00476{bottom:763.920000px;}
.y1e_c00476{bottom:766.080000px;}
.y1f_c00476{bottom:766.800000px;}
.y1a_c00476{bottom:796.320000px;}
.y19_c00476{bottom:797.040000px;}
.y25_c00476{bottom:797.760000px;}
.y1c_c00476{bottom:798.480000px;}
.y1b_c00476{bottom:799.200000px;}
.y26_c00476{bottom:799.920000px;}
.y12_c00476{bottom:839.520000px;}
.y13_c00476{bottom:841.680000px;}
.ye_c00476{bottom:871.920000px;}
.y11_c00476{bottom:872.640000px;}
.y10_c00476{bottom:873.360000px;}
.yf_c00476{bottom:874.080000px;}
.yc_c00476{bottom:914.400000px;}
.yd_c00476{bottom:916.560000px;}
.y9_c00476{bottom:946.080000px;}
.y17_c00476{bottom:946.800000px;}
.yb_c00476{bottom:947.520000px;}
.ya_c00476{bottom:948.240000px;}
.y18_c00476{bottom:948.960000px;}
.y7_c00476{bottom:988.560000px;}
.y8_c00476{bottom:990.720000px;}
.y4_c00476{bottom:1020.960000px;}
.y6_c00476{bottom:1021.680000px;}
.y5_c00476{bottom:1023.120000px;}
.y16_c00476{bottom:1024.560000px;}
.y1_c00476{bottom:1064.160000px;}
.y3_c00476{bottom:1064.880000px;}
.y2_c00476{bottom:1066.320000px;}
.y15_c00476{bottom:1067.760000px;}
.y14_c00476{bottom:1121.760000px;}
.hf_c00476{height:31.100625px;}
.ha_c00476{height:33.692344px;}
.he_c00476{height:38.875781px;}
.h6_c00476{height:41.467500px;}
.h9_c00476{height:44.059219px;}
.h4_c00476{height:46.650937px;}
.h5_c00476{height:49.242656px;}
.h7_c00476{height:51.834375px;}
.h3_c00476{height:54.426094px;}
.hd_c00476{height:57.017812px;}
.hb_c00476{height:59.609531px;}
.h2_c00476{height:62.201250px;}
.hc_c00476{height:64.792969px;}
.h8_c00476{height:67.384687px;}
.h0_c00476{height:1172.160000px;}
.h1_c00476{height:1172.250000px;}
.w1_c00476{width:767.250000px;}
.w0_c00476{width:767.520000px;}
.x0_c00476{left:0.000000px;}
.x1_c00476{left:41.040000px;}
.x8_c00476{left:42.480000px;}
.x35_c00476{left:43.920000px;}
.x19_c00476{left:116.640000px;}
.x2_c00476{left:118.080000px;}
.x36_c00476{left:119.520000px;}
.x28_c00476{left:159.840000px;}
.x21_c00476{left:161.280000px;}
.x26_c00476{left:172.080000px;}
.x7_c00476{left:181.440000px;}
.x37_c00476{left:193.680000px;}
.x3_c00476{left:203.040000px;}
.xd_c00476{left:204.480000px;}
.x1e_c00476{left:215.280000px;}
.x1a_c00476{left:216.720000px;}
.x12_c00476{left:226.800000px;}
.x34_c00476{left:237.600000px;}
.x38_c00476{left:248.400000px;}
.xe_c00476{left:258.480000px;}
.x4_c00476{left:268.560000px;}
.x13_c00476{left:270.000000px;}
.x2c_c00476{left:281.520000px;}
.x27_c00476{left:302.400000px;}
.xf_c00476{left:313.200000px;}
.x2b_c00476{left:324.000000px;}
.x22_c00476{left:334.800000px;}
.x17_c00476{left:345.600000px;}
.x6_c00476{left:354.960000px;}
.x10_c00476{left:356.400000px;}
.x2d_c00476{left:366.480000px;}
.x31_c00476{left:378.720000px;}
.x23_c00476{left:388.800000px;}
.x1f_c00476{left:399.600000px;}
.x29_c00476{left:410.400000px;}
.x11_c00476{left:432.000000px;}
.x20_c00476{left:453.600000px;}
.x2a_c00476{left:465.120000px;}
.x24_c00476{left:473.760000px;}
.x32_c00476{left:508.320000px;}
.x5_c00476{left:517.680000px;}
.x1b_c00476{left:519.840000px;}
.x25_c00476{left:551.520000px;}
.x33_c00476{left:563.040000px;}
.x14_c00476{left:572.400000px;}
.x1c_c00476{left:573.840000px;}
.xa_c00476{left:605.520000px;}
.x18_c00476{left:606.960000px;}
.xb_c00476{left:638.640000px;}
.x2e_c00476{left:640.080000px;}
.x2f_c00476{left:650.160000px;}
.x9_c00476{left:666.720000px;}
.xc_c00476{left:671.040000px;}
.x15_c00476{left:682.560000px;}
.x30_c00476{left:684.000000px;}
.x16_c00476{left:702.000000px;}
.x1d_c00476{left:703.440000px;}
@media print{
.v0_c00476{vertical-align:0.000000pt;}
.ls0_c00476{letter-spacing:0.000000pt;}
.ws1_c00476{word-spacing:0.000000pt;}
.ws0_c00476{word-spacing:161.555523pt;}
.fsd_c00476{font-size:30.720000pt;}
.fs8_c00476{font-size:33.280000pt;}
.fsc_c00476{font-size:38.400000pt;}
.fs4_c00476{font-size:40.960000pt;}
.fs7_c00476{font-size:43.520000pt;}
.fs2_c00476{font-size:46.080000pt;}
.fs3_c00476{font-size:48.640000pt;}
.fs5_c00476{font-size:51.200000pt;}
.fs1_c00476{font-size:53.760000pt;}
.fsb_c00476{font-size:56.320000pt;}
.fs9_c00476{font-size:58.880000pt;}
.fs0_c00476{font-size:61.440000pt;}
.fsa_c00476{font-size:64.000000pt;}
.fs6_c00476{font-size:66.560000pt;}
.y0_c00476{bottom:0.000000pt;}
.y65_c00476{bottom:114.560000pt;}
.y68_c00476{bottom:115.840000pt;}
.y64_c00476{bottom:116.480000pt;}
.y6a_c00476{bottom:117.120000pt;}
.y66_c00476{bottom:117.760000pt;}
.y67_c00476{bottom:118.400000pt;}
.y62_c00476{bottom:152.960000pt;}
.y63_c00476{bottom:154.240000pt;}
.y69_c00476{bottom:154.880000pt;}
.y61_c00476{bottom:155.520000pt;}
.y5c_c00476{bottom:192.640000pt;}
.y5d_c00476{bottom:194.560000pt;}
.y5e_c00476{bottom:195.200000pt;}
.y56_c00476{bottom:219.520000pt;}
.y57_c00476{bottom:221.440000pt;}
.y55_c00476{bottom:222.080000pt;}
.y5f_c00476{bottom:222.720000pt;}
.y58_c00476{bottom:224.000000pt;}
.y60_c00476{bottom:224.640000pt;}
.y52_c00476{bottom:258.560000pt;}
.y53_c00476{bottom:259.840000pt;}
.y51_c00476{bottom:261.120000pt;}
.y54_c00476{bottom:261.760000pt;}
.y4e_c00476{bottom:286.080000pt;}
.y4d_c00476{bottom:288.640000pt;}
.y5a_c00476{bottom:289.280000pt;}
.y4f_c00476{bottom:289.920000pt;}
.y50_c00476{bottom:290.560000pt;}
.y5b_c00476{bottom:291.200000pt;}
.y4c_c00476{bottom:325.120000pt;}
.y4b_c00476{bottom:325.760000pt;}
.y49_c00476{bottom:327.680000pt;}
.y4a_c00476{bottom:328.320000pt;}
.y45_c00476{bottom:353.280000pt;}
.y46_c00476{bottom:354.560000pt;}
.y44_c00476{bottom:355.200000pt;}
.y59_c00476{bottom:355.840000pt;}
.y47_c00476{bottom:356.480000pt;}
.y48_c00476{bottom:357.760000pt;}
.y40_c00476{bottom:391.680000pt;}
.y42_c00476{bottom:392.320000pt;}
.y41_c00476{bottom:392.960000pt;}
.y3f_c00476{bottom:393.600000pt;}
.y43_c00476{bottom:394.880000pt;}
.y3e_c00476{bottom:429.440000pt;}
.y3d_c00476{bottom:431.360000pt;}
.y39_c00476{bottom:458.240000pt;}
.y3a_c00476{bottom:459.520000pt;}
.y38_c00476{bottom:460.160000pt;}
.y3b_c00476{bottom:461.440000pt;}
.y3c_c00476{bottom:462.080000pt;}
.y37_c00476{bottom:496.640000pt;}
.y36_c00476{bottom:500.480000pt;}
.y32_c00476{bottom:524.800000pt;}
.y33_c00476{bottom:526.720000pt;}
.y31_c00476{bottom:527.360000pt;}
.y34_c00476{bottom:528.640000pt;}
.y35_c00476{bottom:529.280000pt;}
.y2d_c00476{bottom:563.200000pt;}
.y2e_c00476{bottom:563.840000pt;}
.y2c_c00476{bottom:565.120000pt;}
.y2f_c00476{bottom:565.760000pt;}
.y30_c00476{bottom:567.680000pt;}
.y27_c00476{bottom:602.880000pt;}
.y2a_c00476{bottom:603.520000pt;}
.y2b_c00476{bottom:604.160000pt;}
.y28_c00476{bottom:604.800000pt;}
.y29_c00476{bottom:605.440000pt;}
.y20_c00476{bottom:640.640000pt;}
.y24_c00476{bottom:641.280000pt;}
.y23_c00476{bottom:641.920000pt;}
.y21_c00476{bottom:643.200000pt;}
.y22_c00476{bottom:643.840000pt;}
.y1d_c00476{bottom:679.040000pt;}
.y1e_c00476{bottom:680.960000pt;}
.y1f_c00476{bottom:681.600000pt;}
.y1a_c00476{bottom:707.840000pt;}
.y19_c00476{bottom:708.480000pt;}
.y25_c00476{bottom:709.120000pt;}
.y1c_c00476{bottom:709.760000pt;}
.y1b_c00476{bottom:710.400000pt;}
.y26_c00476{bottom:711.040000pt;}
.y12_c00476{bottom:746.240000pt;}
.y13_c00476{bottom:748.160000pt;}
.ye_c00476{bottom:775.040000pt;}
.y11_c00476{bottom:775.680000pt;}
.y10_c00476{bottom:776.320000pt;}
.yf_c00476{bottom:776.960000pt;}
.yc_c00476{bottom:812.800000pt;}
.yd_c00476{bottom:814.720000pt;}
.y9_c00476{bottom:840.960000pt;}
.y17_c00476{bottom:841.600000pt;}
.yb_c00476{bottom:842.240000pt;}
.ya_c00476{bottom:842.880000pt;}
.y18_c00476{bottom:843.520000pt;}
.y7_c00476{bottom:878.720000pt;}
.y8_c00476{bottom:880.640000pt;}
.y4_c00476{bottom:907.520000pt;}
.y6_c00476{bottom:908.160000pt;}
.y5_c00476{bottom:909.440000pt;}
.y16_c00476{bottom:910.720000pt;}
.y1_c00476{bottom:945.920000pt;}
.y3_c00476{bottom:946.560000pt;}
.y2_c00476{bottom:947.840000pt;}
.y15_c00476{bottom:949.120000pt;}
.y14_c00476{bottom:997.120000pt;}
.hf_c00476{height:27.645000pt;}
.ha_c00476{height:29.948750pt;}
.he_c00476{height:34.556250pt;}
.h6_c00476{height:36.860000pt;}
.h9_c00476{height:39.163750pt;}
.h4_c00476{height:41.467500pt;}
.h5_c00476{height:43.771250pt;}
.h7_c00476{height:46.075000pt;}
.h3_c00476{height:48.378750pt;}
.hd_c00476{height:50.682500pt;}
.hb_c00476{height:52.986250pt;}
.h2_c00476{height:55.290000pt;}
.hc_c00476{height:57.593750pt;}
.h8_c00476{height:59.897500pt;}
.h0_c00476{height:1041.920000pt;}
.h1_c00476{height:1042.000000pt;}
.w1_c00476{width:682.000000pt;}
.w0_c00476{width:682.240000pt;}
.x0_c00476{left:0.000000pt;}
.x1_c00476{left:36.480000pt;}
.x8_c00476{left:37.760000pt;}
.x35_c00476{left:39.040000pt;}
.x19_c00476{left:103.680000pt;}
.x2_c00476{left:104.960000pt;}
.x36_c00476{left:106.240000pt;}
.x28_c00476{left:142.080000pt;}
.x21_c00476{left:143.360000pt;}
.x26_c00476{left:152.960000pt;}
.x7_c00476{left:161.280000pt;}
.x37_c00476{left:172.160000pt;}
.x3_c00476{left:180.480000pt;}
.xd_c00476{left:181.760000pt;}
.x1e_c00476{left:191.360000pt;}
.x1a_c00476{left:192.640000pt;}
.x12_c00476{left:201.600000pt;}
.x34_c00476{left:211.200000pt;}
.x38_c00476{left:220.800000pt;}
.xe_c00476{left:229.760000pt;}
.x4_c00476{left:238.720000pt;}
.x13_c00476{left:240.000000pt;}
.x2c_c00476{left:250.240000pt;}
.x27_c00476{left:268.800000pt;}
.xf_c00476{left:278.400000pt;}
.x2b_c00476{left:288.000000pt;}
.x22_c00476{left:297.600000pt;}
.x17_c00476{left:307.200000pt;}
.x6_c00476{left:315.520000pt;}
.x10_c00476{left:316.800000pt;}
.x2d_c00476{left:325.760000pt;}
.x31_c00476{left:336.640000pt;}
.x23_c00476{left:345.600000pt;}
.x1f_c00476{left:355.200000pt;}
.x29_c00476{left:364.800000pt;}
.x11_c00476{left:384.000000pt;}
.x20_c00476{left:403.200000pt;}
.x2a_c00476{left:413.440000pt;}
.x24_c00476{left:421.120000pt;}
.x32_c00476{left:451.840000pt;}
.x5_c00476{left:460.160000pt;}
.x1b_c00476{left:462.080000pt;}
.x25_c00476{left:490.240000pt;}
.x33_c00476{left:500.480000pt;}
.x14_c00476{left:508.800000pt;}
.x1c_c00476{left:510.080000pt;}
.xa_c00476{left:538.240000pt;}
.x18_c00476{left:539.520000pt;}
.xb_c00476{left:567.680000pt;}
.x2e_c00476{left:568.960000pt;}
.x2f_c00476{left:577.920000pt;}
.x9_c00476{left:592.640000pt;}
.xc_c00476{left:596.480000pt;}
.x15_c00476{left:606.720000pt;}
.x30_c00476{left:608.000000pt;}
.x16_c00476{left:624.000000pt;}
.x1d_c00476{left:625.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_bececcc5824a69931764aa76.woff2')format("woff");}.ff1_c00477{font-family:ff1_c00477;line-height:1.109863;font-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_c00477{transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);}
.m26_c00477{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m48_c00477{transform:matrix(0.232625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232625,0.000000,0.000000,0.250000,0,0);}
.m3f_c00477{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m13_c00477{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m34_c00477{transform:matrix(0.239375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239375,0.000000,0.000000,0.250000,0,0);}
.m2c_c00477{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m4f_c00477{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.mb_c00477{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);}
.m35_c00477{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);}
.m2b_c00477{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00477{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);}
.m46_c00477{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_c00477{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m24_c00477{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m10_c00477{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);}
.m3e_c00477{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);}
.m29_c00477{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m4_c00477{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.ma_c00477{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m56_c00477{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00477{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m37_c00477{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m1_c00477{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m9_c00477{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00477{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m6_c00477{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m21_c00477{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00477{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00477{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00477{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m15_c00477{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mc_c00477{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.me_c00477{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m44_c00477{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m8_c00477{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m5_c00477{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m40_c00477{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m49_c00477{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m7_c00477{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m0_c00477{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00477{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);}
.m3b_c00477{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m38_c00477{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);}
.m27_c00477{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m33_c00477{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);}
.m32_c00477{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m22_c00477{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);}
.m36_c00477{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00477{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m31_c00477{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00477{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);}
.m2d_c00477{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m30_c00477{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m18_c00477{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m41_c00477{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);}
.m43_c00477{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m2_c00477{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);}
.m55_c00477{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m19_c00477{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00477{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m25_c00477{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);}
.m54_c00477{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m3_c00477{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);}
.m16_c00477{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00477{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);}
.m4c_c00477{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);}
.m11_c00477{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m28_c00477{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00477{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00477{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00477{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m39_c00477{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m42_c00477{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m12_c00477{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.mf_c00477{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00477{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m57_c00477{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);}
.m1a_c00477{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m51_c00477{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00477{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m53_c00477{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m58_c00477{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00477{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);}
.m1c_c00477{transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);}
.m20_c00477{transform:matrix(0.700000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.700000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.700000,0.000000,0.000000,0.250000,0,0);}
.m47_c00477{transform:matrix(0.707500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.707500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.707500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00477{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.m50_c00477{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00477{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.md_c00477{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m52_c00477{transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00477{transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);}
.m59_c00477{transform:matrix(0.885000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.885000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.885000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00477{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.m17_c00477{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.v4_c00477{vertical-align:-5.760000px;}
.v1_c00477{vertical-align:-2.880000px;}
.v0_c00477{vertical-align:0.000000px;}
.v2_c00477{vertical-align:2.880000px;}
.v3_c00477{vertical-align:8.640000px;}
.ls0_c00477{letter-spacing:0.000000px;}
.sc__c00477{text-shadow:none;}
.sc0_c00477{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00477{-webkit-text-stroke:0px transparent;}
.sc0_c00477{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00477{word-spacing:0.000000px;}
.ws3_c00477{word-spacing:37.627440px;}
.ws0_c00477{word-spacing:68.878320px;}
.ws1_c00477{word-spacing:115.752499px;}
.ws2_c00477{word-spacing:125.712634px;}
.ws5_c00477{word-spacing:179.499600px;}
.ws4_c00477{word-spacing:901.700400px;}
.fc0_c00477{color:transparent;}
.fsb_c00477{font-size:11.520000px;}
.fsd_c00477{font-size:14.400000px;}
.fs7_c00477{font-size:20.160000px;}
.fse_c00477{font-size:34.560000px;}
.fsc_c00477{font-size:37.440000px;}
.fs5_c00477{font-size:43.200000px;}
.fs4_c00477{font-size:46.080000px;}
.fs1_c00477{font-size:48.960000px;}
.fs3_c00477{font-size:51.840000px;}
.fs6_c00477{font-size:54.720000px;}
.fs8_c00477{font-size:57.600000px;}
.fs2_c00477{font-size:60.480000px;}
.fs9_c00477{font-size:63.360000px;}
.fs11_c00477{font-size:66.240000px;}
.fs12_c00477{font-size:69.120000px;}
.fs13_c00477{font-size:72.000000px;}
.fs0_c00477{font-size:74.880000px;}
.fsf_c00477{font-size:77.760000px;}
.fs10_c00477{font-size:103.680000px;}
.fsa_c00477{font-size:106.560000px;}
.y0_c00477{bottom:0.000000px;}
.y92_c00477{bottom:95.040000px;}
.y94_c00477{bottom:96.480000px;}
.y90_c00477{bottom:97.200000px;}
.y93_c00477{bottom:97.920000px;}
.y91_c00477{bottom:99.360000px;}
.y8b_c00477{bottom:137.520000px;}
.y8e_c00477{bottom:138.960000px;}
.y8c_c00477{bottom:139.680000px;}
.y89_c00477{bottom:140.400000px;}
.y8f_c00477{bottom:141.120000px;}
.y8d_c00477{bottom:141.840000px;}
.y8a_c00477{bottom:142.560000px;}
.y88_c00477{bottom:181.440000px;}
.y87_c00477{bottom:185.040000px;}
.y85_c00477{bottom:213.120000px;}
.y86_c00477{bottom:215.280000px;}
.y83_c00477{bottom:216.720000px;}
.y84_c00477{bottom:217.440000px;}
.y80_c00477{bottom:256.320000px;}
.y82_c00477{bottom:257.760000px;}
.y7e_c00477{bottom:258.480000px;}
.y7f_c00477{bottom:260.640000px;}
.y81_c00477{bottom:261.360000px;}
.y7c_c00477{bottom:300.240000px;}
.y7d_c00477{bottom:301.680000px;}
.y79_c00477{bottom:302.400000px;}
.y7b_c00477{bottom:303.840000px;}
.y7a_c00477{bottom:304.560000px;}
.y76_c00477{bottom:343.440000px;}
.y78_c00477{bottom:344.880000px;}
.y77_c00477{bottom:345.600000px;}
.y74_c00477{bottom:346.320000px;}
.y75_c00477{bottom:347.040000px;}
.y71_c00477{bottom:386.640000px;}
.y72_c00477{bottom:387.360000px;}
.y73_c00477{bottom:388.080000px;}
.y6f_c00477{bottom:388.800000px;}
.y70_c00477{bottom:390.240000px;}
.y6d_c00477{bottom:429.840000px;}
.y6b_c00477{bottom:431.280000px;}
.y6e_c00477{bottom:432.000000px;}
.y6c_c00477{bottom:433.440000px;}
.y68_c00477{bottom:472.320000px;}
.y69_c00477{bottom:473.760000px;}
.y6a_c00477{bottom:474.480000px;}
.y66_c00477{bottom:475.200000px;}
.y67_c00477{bottom:476.640000px;}
.y64_c00477{bottom:515.520000px;}
.y65_c00477{bottom:516.960000px;}
.y61_c00477{bottom:517.680000px;}
.y63_c00477{bottom:519.120000px;}
.y62_c00477{bottom:519.840000px;}
.y5d_c00477{bottom:558.000000px;}
.y5f_c00477{bottom:559.440000px;}
.y5c_c00477{bottom:560.160000px;}
.y5e_c00477{bottom:560.880000px;}
.y60_c00477{bottom:562.320000px;}
.y5a_c00477{bottom:603.360000px;}
.y5b_c00477{bottom:604.080000px;}
.y59_c00477{bottom:605.520000px;}
.y56_c00477{bottom:667.440000px;}
.y57_c00477{bottom:669.600000px;}
.y58_c00477{bottom:670.320000px;}
.y52_c00477{bottom:688.320000px;}
.y51_c00477{bottom:689.040000px;}
.y53_c00477{bottom:689.760000px;}
.y55_c00477{bottom:690.480000px;}
.y54_c00477{bottom:691.920000px;}
.y50_c00477{bottom:709.920000px;}
.y4f_c00477{bottom:710.640000px;}
.y4d_c00477{bottom:712.800000px;}
.y4e_c00477{bottom:713.520000px;}
.y49_c00477{bottom:731.520000px;}
.y4a_c00477{bottom:732.240000px;}
.y4b_c00477{bottom:734.400000px;}
.y4c_c00477{bottom:735.120000px;}
.y48_c00477{bottom:752.400000px;}
.y45_c00477{bottom:753.120000px;}
.y46_c00477{bottom:753.840000px;}
.y47_c00477{bottom:754.560000px;}
.y44_c00477{bottom:755.280000px;}
.y43_c00477{bottom:756.000000px;}
.y42_c00477{bottom:774.000000px;}
.y3e_c00477{bottom:774.720000px;}
.y3f_c00477{bottom:775.440000px;}
.y41_c00477{bottom:776.160000px;}
.y3d_c00477{bottom:776.880000px;}
.y40_c00477{bottom:777.600000px;}
.y3b_c00477{bottom:795.600000px;}
.y3a_c00477{bottom:796.320000px;}
.y3c_c00477{bottom:797.040000px;}
.y39_c00477{bottom:798.480000px;}
.y34_c00477{bottom:817.200000px;}
.y35_c00477{bottom:817.920000px;}
.y38_c00477{bottom:819.360000px;}
.y37_c00477{bottom:820.080000px;}
.y36_c00477{bottom:820.800000px;}
.y33_c00477{bottom:838.800000px;}
.y30_c00477{bottom:839.520000px;}
.y32_c00477{bottom:840.240000px;}
.y31_c00477{bottom:841.680000px;}
.y2d_c00477{bottom:846.000000px;}
.y2f_c00477{bottom:846.720000px;}
.y2e_c00477{bottom:850.320000px;}
.y2c_c00477{bottom:851.040000px;}
.y2b_c00477{bottom:851.760000px;}
.y29_c00477{bottom:860.400000px;}
.y2a_c00477{bottom:861.120000px;}
.y22_c00477{bottom:883.440000px;}
.y28_c00477{bottom:884.880000px;}
.y26_c00477{bottom:892.080000px;}
.y25_c00477{bottom:894.240000px;}
.y24_c00477{bottom:894.960000px;}
.y23_c00477{bottom:895.680000px;}
.y27_c00477{bottom:897.840000px;}
.y1e_c00477{bottom:915.120000px;}
.y1d_c00477{bottom:915.840000px;}
.y1c_c00477{bottom:916.560000px;}
.y20_c00477{bottom:924.480000px;}
.y21_c00477{bottom:926.640000px;}
.y1f_c00477{bottom:927.360000px;}
.y17_c00477{bottom:946.080000px;}
.y16_c00477{bottom:948.960000px;}
.y19_c00477{bottom:957.600000px;}
.y1a_c00477{bottom:959.040000px;}
.y18_c00477{bottom:959.760000px;}
.y1b_c00477{bottom:961.920000px;}
.y14_c00477{bottom:966.960000px;}
.y12_c00477{bottom:968.400000px;}
.y15_c00477{bottom:969.840000px;}
.y13_c00477{bottom:973.440000px;}
.y11_c00477{bottom:979.200000px;}
.ye_c00477{bottom:990.000000px;}
.yf_c00477{bottom:991.440000px;}
.y10_c00477{bottom:992.160000px;}
.yd_c00477{bottom:1031.760000px;}
.yb_c00477{bottom:1032.480000px;}
.y8_c00477{bottom:1033.200000px;}
.ya_c00477{bottom:1033.920000px;}
.y9_c00477{bottom:1034.640000px;}
.yc_c00477{bottom:1037.520000px;}
.y3_c00477{bottom:1043.280000px;}
.y4_c00477{bottom:1044.720000px;}
.y2_c00477{bottom:1045.440000px;}
.y7_c00477{bottom:1055.520000px;}
.y5_c00477{bottom:1056.240000px;}
.y6_c00477{bottom:1056.960000px;}
.y1_c00477{bottom:1122.480000px;}
.hd_c00477{height:10.366875px;}
.hf_c00477{height:12.958594px;}
.h9_c00477{height:18.142031px;}
.h10_c00477{height:31.100625px;}
.he_c00477{height:33.692344px;}
.h7_c00477{height:38.875781px;}
.h6_c00477{height:41.467500px;}
.h3_c00477{height:44.059219px;}
.h5_c00477{height:46.650937px;}
.h8_c00477{height:49.242656px;}
.ha_c00477{height:51.834375px;}
.h4_c00477{height:54.426094px;}
.hb_c00477{height:57.017812px;}
.h13_c00477{height:59.609531px;}
.h15_c00477{height:59.897813px;}
.h14_c00477{height:62.201250px;}
.h16_c00477{height:64.792969px;}
.h2_c00477{height:67.384687px;}
.h11_c00477{height:69.976406px;}
.h12_c00477{height:93.301875px;}
.hc_c00477{height:95.893594px;}
.h0_c00477{height:1174.320000px;}
.h1_c00477{height:1174.500000px;}
.w0_c00477{width:774.000000px;}
.x0_c00477{left:0.000000px;}
.x2_c00477{left:51.840000px;}
.x38_c00477{left:54.000000px;}
.x30_c00477{left:62.640000px;}
.x29_c00477{left:64.079640px;}
.x3_c00477{left:84.240000px;}
.x32_c00477{left:97.200000px;}
.x3e_c00477{left:105.840000px;}
.x23_c00477{left:107.280000px;}
.x16_c00477{left:116.640000px;}
.x44_c00477{left:128.160000px;}
.x42_c00477{left:138.960000px;}
.x17_c00477{left:140.400000px;}
.x24_c00477{left:150.480000px;}
.x4_c00477{left:159.840000px;}
.x31_c00477{left:162.720000px;}
.x46_c00477{left:171.360000px;}
.x1e_c00477{left:172.800000px;}
.x4c_c00477{left:182.880000px;}
.x43_c00477{left:213.840000px;}
.x1f_c00477{left:216.000000px;}
.x47_c00477{left:224.640000px;}
.x5_c00477{left:226.800000px;}
.x19_c00477{left:237.600000px;}
.x3a_c00477{left:248.400000px;}
.xf_c00477{left:257.040000px;}
.x18_c00477{left:258.480000px;}
.x48_c00477{left:269.280000px;}
.x6_c00477{left:279.360000px;}
.x4a_c00477{left:280.800000px;}
.x2a_c00477{left:290.880000px;}
.x4b_c00477{left:311.760000px;}
.x2b_c00477{left:323.280000px;}
.x7_c00477{left:334.080000px;}
.x3d_c00477{left:335.520000px;}
.x37_c00477{left:344.880000px;}
.x33_c00477{left:346.320000px;}
.x10_c00477{left:355.680000px;}
.x1a_c00477{left:365.040000px;}
.x20_c00477{left:366.480000px;}
.x8_c00477{left:378.000000px;}
.xb_c00477{left:388.080000px;}
.x3b_c00477{left:389.520000px;}
.x11_c00477{left:399.600000px;}
.x3f_c00477{left:401.760000px;}
.x2c_c00477{left:410.400000px;}
.x25_c00477{left:432.000000px;}
.x9_c00477{left:442.800000px;}
.x26_c00477{left:452.160000px;}
.x2d_c00477{left:453.600000px;}
.x1b_c00477{left:464.400000px;}
.xa_c00477{left:497.520000px;}
.x1c_c00477{left:508.320000px;}
.xc_c00477{left:528.480000px;}
.x34_c00477{left:529.920000px;}
.xd_c00477{left:551.520000px;}
.x21_c00477{left:560.880000px;}
.x4d_c00477{left:562.320000px;}
.x27_c00477{left:571.680000px;}
.x12_c00477{left:582.480000px;}
.x35_c00477{left:583.920000px;}
.xe_c00477{left:593.280000px;}
.x45_c00477{left:594.720000px;}
.x13_c00477{left:616.320000px;}
.x40_c00477{left:617.760000px;}
.x3c_c00477{left:637.920000px;}
.x39_c00477{left:639.360000px;}
.x2e_c00477{left:649.440000px;}
.x22_c00477{left:658.800000px;}
.x14_c00477{left:660.240000px;}
.x41_c00477{left:671.760000px;}
.x1d_c00477{left:680.400000px;}
.x36_c00477{left:682.560000px;}
.x28_c00477{left:691.920000px;}
.x2f_c00477{left:693.360000px;}
.x1_c00477{left:701.280000px;}
.x49_c00477{left:713.520000px;}
.x15_c00477{left:714.960000px;}
@media print{
.v4_c00477{vertical-align:-5.120000pt;}
.v1_c00477{vertical-align:-2.560000pt;}
.v0_c00477{vertical-align:0.000000pt;}
.v2_c00477{vertical-align:2.560000pt;}
.v3_c00477{vertical-align:7.680000pt;}
.ls0_c00477{letter-spacing:0.000000pt;}
.ws6_c00477{word-spacing:0.000000pt;}
.ws3_c00477{word-spacing:33.446613pt;}
.ws0_c00477{word-spacing:61.225173pt;}
.ws1_c00477{word-spacing:102.891110pt;}
.ws2_c00477{word-spacing:111.744563pt;}
.ws5_c00477{word-spacing:159.555200pt;}
.ws4_c00477{word-spacing:801.511467pt;}
.fsb_c00477{font-size:10.240000pt;}
.fsd_c00477{font-size:12.800000pt;}
.fs7_c00477{font-size:17.920000pt;}
.fse_c00477{font-size:30.720000pt;}
.fsc_c00477{font-size:33.280000pt;}
.fs5_c00477{font-size:38.400000pt;}
.fs4_c00477{font-size:40.960000pt;}
.fs1_c00477{font-size:43.520000pt;}
.fs3_c00477{font-size:46.080000pt;}
.fs6_c00477{font-size:48.640000pt;}
.fs8_c00477{font-size:51.200000pt;}
.fs2_c00477{font-size:53.760000pt;}
.fs9_c00477{font-size:56.320000pt;}
.fs11_c00477{font-size:58.880000pt;}
.fs12_c00477{font-size:61.440000pt;}
.fs13_c00477{font-size:64.000000pt;}
.fs0_c00477{font-size:66.560000pt;}
.fsf_c00477{font-size:69.120000pt;}
.fs10_c00477{font-size:92.160000pt;}
.fsa_c00477{font-size:94.720000pt;}
.y0_c00477{bottom:0.000000pt;}
.y92_c00477{bottom:84.480000pt;}
.y94_c00477{bottom:85.760000pt;}
.y90_c00477{bottom:86.400000pt;}
.y93_c00477{bottom:87.040000pt;}
.y91_c00477{bottom:88.320000pt;}
.y8b_c00477{bottom:122.240000pt;}
.y8e_c00477{bottom:123.520000pt;}
.y8c_c00477{bottom:124.160000pt;}
.y89_c00477{bottom:124.800000pt;}
.y8f_c00477{bottom:125.440000pt;}
.y8d_c00477{bottom:126.080000pt;}
.y8a_c00477{bottom:126.720000pt;}
.y88_c00477{bottom:161.280000pt;}
.y87_c00477{bottom:164.480000pt;}
.y85_c00477{bottom:189.440000pt;}
.y86_c00477{bottom:191.360000pt;}
.y83_c00477{bottom:192.640000pt;}
.y84_c00477{bottom:193.280000pt;}
.y80_c00477{bottom:227.840000pt;}
.y82_c00477{bottom:229.120000pt;}
.y7e_c00477{bottom:229.760000pt;}
.y7f_c00477{bottom:231.680000pt;}
.y81_c00477{bottom:232.320000pt;}
.y7c_c00477{bottom:266.880000pt;}
.y7d_c00477{bottom:268.160000pt;}
.y79_c00477{bottom:268.800000pt;}
.y7b_c00477{bottom:270.080000pt;}
.y7a_c00477{bottom:270.720000pt;}
.y76_c00477{bottom:305.280000pt;}
.y78_c00477{bottom:306.560000pt;}
.y77_c00477{bottom:307.200000pt;}
.y74_c00477{bottom:307.840000pt;}
.y75_c00477{bottom:308.480000pt;}
.y71_c00477{bottom:343.680000pt;}
.y72_c00477{bottom:344.320000pt;}
.y73_c00477{bottom:344.960000pt;}
.y6f_c00477{bottom:345.600000pt;}
.y70_c00477{bottom:346.880000pt;}
.y6d_c00477{bottom:382.080000pt;}
.y6b_c00477{bottom:383.360000pt;}
.y6e_c00477{bottom:384.000000pt;}
.y6c_c00477{bottom:385.280000pt;}
.y68_c00477{bottom:419.840000pt;}
.y69_c00477{bottom:421.120000pt;}
.y6a_c00477{bottom:421.760000pt;}
.y66_c00477{bottom:422.400000pt;}
.y67_c00477{bottom:423.680000pt;}
.y64_c00477{bottom:458.240000pt;}
.y65_c00477{bottom:459.520000pt;}
.y61_c00477{bottom:460.160000pt;}
.y63_c00477{bottom:461.440000pt;}
.y62_c00477{bottom:462.080000pt;}
.y5d_c00477{bottom:496.000000pt;}
.y5f_c00477{bottom:497.280000pt;}
.y5c_c00477{bottom:497.920000pt;}
.y5e_c00477{bottom:498.560000pt;}
.y60_c00477{bottom:499.840000pt;}
.y5a_c00477{bottom:536.320000pt;}
.y5b_c00477{bottom:536.960000pt;}
.y59_c00477{bottom:538.240000pt;}
.y56_c00477{bottom:593.280000pt;}
.y57_c00477{bottom:595.200000pt;}
.y58_c00477{bottom:595.840000pt;}
.y52_c00477{bottom:611.840000pt;}
.y51_c00477{bottom:612.480000pt;}
.y53_c00477{bottom:613.120000pt;}
.y55_c00477{bottom:613.760000pt;}
.y54_c00477{bottom:615.040000pt;}
.y50_c00477{bottom:631.040000pt;}
.y4f_c00477{bottom:631.680000pt;}
.y4d_c00477{bottom:633.600000pt;}
.y4e_c00477{bottom:634.240000pt;}
.y49_c00477{bottom:650.240000pt;}
.y4a_c00477{bottom:650.880000pt;}
.y4b_c00477{bottom:652.800000pt;}
.y4c_c00477{bottom:653.440000pt;}
.y48_c00477{bottom:668.800000pt;}
.y45_c00477{bottom:669.440000pt;}
.y46_c00477{bottom:670.080000pt;}
.y47_c00477{bottom:670.720000pt;}
.y44_c00477{bottom:671.360000pt;}
.y43_c00477{bottom:672.000000pt;}
.y42_c00477{bottom:688.000000pt;}
.y3e_c00477{bottom:688.640000pt;}
.y3f_c00477{bottom:689.280000pt;}
.y41_c00477{bottom:689.920000pt;}
.y3d_c00477{bottom:690.560000pt;}
.y40_c00477{bottom:691.200000pt;}
.y3b_c00477{bottom:707.200000pt;}
.y3a_c00477{bottom:707.840000pt;}
.y3c_c00477{bottom:708.480000pt;}
.y39_c00477{bottom:709.760000pt;}
.y34_c00477{bottom:726.400000pt;}
.y35_c00477{bottom:727.040000pt;}
.y38_c00477{bottom:728.320000pt;}
.y37_c00477{bottom:728.960000pt;}
.y36_c00477{bottom:729.600000pt;}
.y33_c00477{bottom:745.600000pt;}
.y30_c00477{bottom:746.240000pt;}
.y32_c00477{bottom:746.880000pt;}
.y31_c00477{bottom:748.160000pt;}
.y2d_c00477{bottom:752.000000pt;}
.y2f_c00477{bottom:752.640000pt;}
.y2e_c00477{bottom:755.840000pt;}
.y2c_c00477{bottom:756.480000pt;}
.y2b_c00477{bottom:757.120000pt;}
.y29_c00477{bottom:764.800000pt;}
.y2a_c00477{bottom:765.440000pt;}
.y22_c00477{bottom:785.280000pt;}
.y28_c00477{bottom:786.560000pt;}
.y26_c00477{bottom:792.960000pt;}
.y25_c00477{bottom:794.880000pt;}
.y24_c00477{bottom:795.520000pt;}
.y23_c00477{bottom:796.160000pt;}
.y27_c00477{bottom:798.080000pt;}
.y1e_c00477{bottom:813.440000pt;}
.y1d_c00477{bottom:814.080000pt;}
.y1c_c00477{bottom:814.720000pt;}
.y20_c00477{bottom:821.760000pt;}
.y21_c00477{bottom:823.680000pt;}
.y1f_c00477{bottom:824.320000pt;}
.y17_c00477{bottom:840.960000pt;}
.y16_c00477{bottom:843.520000pt;}
.y19_c00477{bottom:851.200000pt;}
.y1a_c00477{bottom:852.480000pt;}
.y18_c00477{bottom:853.120000pt;}
.y1b_c00477{bottom:855.040000pt;}
.y14_c00477{bottom:859.520000pt;}
.y12_c00477{bottom:860.800000pt;}
.y15_c00477{bottom:862.080000pt;}
.y13_c00477{bottom:865.280000pt;}
.y11_c00477{bottom:870.400000pt;}
.ye_c00477{bottom:880.000000pt;}
.yf_c00477{bottom:881.280000pt;}
.y10_c00477{bottom:881.920000pt;}
.yd_c00477{bottom:917.120000pt;}
.yb_c00477{bottom:917.760000pt;}
.y8_c00477{bottom:918.400000pt;}
.ya_c00477{bottom:919.040000pt;}
.y9_c00477{bottom:919.680000pt;}
.yc_c00477{bottom:922.240000pt;}
.y3_c00477{bottom:927.360000pt;}
.y4_c00477{bottom:928.640000pt;}
.y2_c00477{bottom:929.280000pt;}
.y7_c00477{bottom:938.240000pt;}
.y5_c00477{bottom:938.880000pt;}
.y6_c00477{bottom:939.520000pt;}
.y1_c00477{bottom:997.760000pt;}
.hd_c00477{height:9.215000pt;}
.hf_c00477{height:11.518750pt;}
.h9_c00477{height:16.126250pt;}
.h10_c00477{height:27.645000pt;}
.he_c00477{height:29.948750pt;}
.h7_c00477{height:34.556250pt;}
.h6_c00477{height:36.860000pt;}
.h3_c00477{height:39.163750pt;}
.h5_c00477{height:41.467500pt;}
.h8_c00477{height:43.771250pt;}
.ha_c00477{height:46.075000pt;}
.h4_c00477{height:48.378750pt;}
.hb_c00477{height:50.682500pt;}
.h13_c00477{height:52.986250pt;}
.h15_c00477{height:53.242500pt;}
.h14_c00477{height:55.290000pt;}
.h16_c00477{height:57.593750pt;}
.h2_c00477{height:59.897500pt;}
.h11_c00477{height:62.201250pt;}
.h12_c00477{height:82.935000pt;}
.hc_c00477{height:85.238750pt;}
.h0_c00477{height:1043.840000pt;}
.h1_c00477{height:1044.000000pt;}
.w0_c00477{width:688.000000pt;}
.x0_c00477{left:0.000000pt;}
.x2_c00477{left:46.080000pt;}
.x38_c00477{left:48.000000pt;}
.x30_c00477{left:55.680000pt;}
.x29_c00477{left:56.959680pt;}
.x3_c00477{left:74.880000pt;}
.x32_c00477{left:86.400000pt;}
.x3e_c00477{left:94.080000pt;}
.x23_c00477{left:95.360000pt;}
.x16_c00477{left:103.680000pt;}
.x44_c00477{left:113.920000pt;}
.x42_c00477{left:123.520000pt;}
.x17_c00477{left:124.800000pt;}
.x24_c00477{left:133.760000pt;}
.x4_c00477{left:142.080000pt;}
.x31_c00477{left:144.640000pt;}
.x46_c00477{left:152.320000pt;}
.x1e_c00477{left:153.600000pt;}
.x4c_c00477{left:162.560000pt;}
.x43_c00477{left:190.080000pt;}
.x1f_c00477{left:192.000000pt;}
.x47_c00477{left:199.680000pt;}
.x5_c00477{left:201.600000pt;}
.x19_c00477{left:211.200000pt;}
.x3a_c00477{left:220.800000pt;}
.xf_c00477{left:228.480000pt;}
.x18_c00477{left:229.760000pt;}
.x48_c00477{left:239.360000pt;}
.x6_c00477{left:248.320000pt;}
.x4a_c00477{left:249.600000pt;}
.x2a_c00477{left:258.560000pt;}
.x4b_c00477{left:277.120000pt;}
.x2b_c00477{left:287.360000pt;}
.x7_c00477{left:296.960000pt;}
.x3d_c00477{left:298.240000pt;}
.x37_c00477{left:306.560000pt;}
.x33_c00477{left:307.840000pt;}
.x10_c00477{left:316.160000pt;}
.x1a_c00477{left:324.480000pt;}
.x20_c00477{left:325.760000pt;}
.x8_c00477{left:336.000000pt;}
.xb_c00477{left:344.960000pt;}
.x3b_c00477{left:346.240000pt;}
.x11_c00477{left:355.200000pt;}
.x3f_c00477{left:357.120000pt;}
.x2c_c00477{left:364.800000pt;}
.x25_c00477{left:384.000000pt;}
.x9_c00477{left:393.600000pt;}
.x26_c00477{left:401.920000pt;}
.x2d_c00477{left:403.200000pt;}
.x1b_c00477{left:412.800000pt;}
.xa_c00477{left:442.240000pt;}
.x1c_c00477{left:451.840000pt;}
.xc_c00477{left:469.760000pt;}
.x34_c00477{left:471.040000pt;}
.xd_c00477{left:490.240000pt;}
.x21_c00477{left:498.560000pt;}
.x4d_c00477{left:499.840000pt;}
.x27_c00477{left:508.160000pt;}
.x12_c00477{left:517.760000pt;}
.x35_c00477{left:519.040000pt;}
.xe_c00477{left:527.360000pt;}
.x45_c00477{left:528.640000pt;}
.x13_c00477{left:547.840000pt;}
.x40_c00477{left:549.120000pt;}
.x3c_c00477{left:567.040000pt;}
.x39_c00477{left:568.320000pt;}
.x2e_c00477{left:577.280000pt;}
.x22_c00477{left:585.600000pt;}
.x14_c00477{left:586.880000pt;}
.x41_c00477{left:597.120000pt;}
.x1d_c00477{left:604.800000pt;}
.x36_c00477{left:606.720000pt;}
.x28_c00477{left:615.040000pt;}
.x2f_c00477{left:616.320000pt;}
.x1_c00477{left:623.360000pt;}
.x49_c00477{left:634.240000pt;}
.x15_c00477{left:635.520000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b22f3c74ce0526a3012a26a7.woff2')format("woff");}.ff1_c00478{font-family:ff1_c00478;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m41_c00478{transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);}
.m2e_c00478{transform:matrix(0.221075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221075,0.000000,0.000000,0.250000,0,0);}
.m14_c00478{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m46_c00478{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m21_c00478{transform:matrix(0.242350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242350,0.000000,0.000000,0.250000,0,0);}
.m33_c00478{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m48_c00478{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);}
.m40_c00478{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);}
.m44_c00478{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);}
.m24_c00478{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);}
.m37_c00478{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);}
.m3c_c00478{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);}
.m32_c00478{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00478{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m39_c00478{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m34_c00478{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mb_c00478{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);}
.m3f_c00478{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m8_c00478{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.ma_c00478{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m29_c00478{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00478{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00478{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m13_c00478{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m17_c00478{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mf_c00478{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00478{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00478{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00478{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m12_c00478{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00478{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m38_c00478{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3_c00478{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m31_c00478{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00478{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m19_c00478{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m9_c00478{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00478{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);}
.m47_c00478{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m7_c00478{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m49_c00478{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);}
.m45_c00478{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00478{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);}
.m2d_c00478{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m0_c00478{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);}
.md_c00478{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00478{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);}
.m20_c00478{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m18_c00478{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_c00478{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m1_c00478{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m43_c00478{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m16_c00478{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);}
.m23_c00478{transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);}
.m11_c00478{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m6_c00478{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);}
.mc_c00478{transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);}
.m10_c00478{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m4_c00478{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m2_c00478{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);}
.m27_c00478{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m35_c00478{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);}
.m25_c00478{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m26_c00478{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);}
.me_c00478{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m36_c00478{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m5_c00478{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m42_c00478{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);}
.m22_c00478{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);}
.m28_c00478{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00478{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m15_c00478{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m30_c00478{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00478{transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);}
.v1_c00478{vertical-align:-5.760000px;}
.v0_c00478{vertical-align:0.000000px;}
.v2_c00478{vertical-align:5.760000px;}
.ls0_c00478{letter-spacing:0.000000px;}
.sc__c00478{text-shadow:none;}
.sc0_c00478{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00478{-webkit-text-stroke:0px transparent;}
.sc0_c00478{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00478{word-spacing:0.000000px;}
.ws1_c00478{word-spacing:45.462000px;}
.ws0_c00478{word-spacing:181.749600px;}
.fc0_c00478{color:transparent;}
.fsd_c00478{font-size:31.680000px;}
.fs4_c00478{font-size:34.560000px;}
.fsf_c00478{font-size:37.440000px;}
.fs3_c00478{font-size:46.080000px;}
.fs5_c00478{font-size:48.960000px;}
.fs2_c00478{font-size:51.840000px;}
.fs8_c00478{font-size:54.720000px;}
.fs7_c00478{font-size:57.600000px;}
.fs9_c00478{font-size:60.480000px;}
.fs1_c00478{font-size:63.360000px;}
.fsb_c00478{font-size:66.240000px;}
.fsa_c00478{font-size:69.120000px;}
.fs6_c00478{font-size:72.000000px;}
.fs0_c00478{font-size:74.880000px;}
.fse_c00478{font-size:77.760000px;}
.fsc_c00478{font-size:100.800000px;}
.y0_c00478{bottom:0.000000px;}
.y83_c00478{bottom:62.640000px;}
.y86_c00478{bottom:64.080000px;}
.y82_c00478{bottom:64.800000px;}
.y85_c00478{bottom:65.520000px;}
.y84_c00478{bottom:67.680000px;}
.y7d_c00478{bottom:105.120000px;}
.y80_c00478{bottom:107.280000px;}
.y7c_c00478{bottom:108.000000px;}
.y7f_c00478{bottom:108.720000px;}
.y81_c00478{bottom:109.440000px;}
.y7e_c00478{bottom:110.880000px;}
.y78_c00478{bottom:148.320000px;}
.y77_c00478{bottom:150.480000px;}
.y7b_c00478{bottom:151.200000px;}
.y7a_c00478{bottom:151.920000px;}
.y79_c00478{bottom:153.360000px;}
.y74_c00478{bottom:191.520000px;}
.y73_c00478{bottom:193.680000px;}
.y76_c00478{bottom:194.400000px;}
.y75_c00478{bottom:197.280000px;}
.y6f_c00478{bottom:234.720000px;}
.y72_c00478{bottom:236.160000px;}
.y6e_c00478{bottom:236.880000px;}
.y71_c00478{bottom:237.600000px;}
.y70_c00478{bottom:239.760000px;}
.y69_c00478{bottom:277.920000px;}
.y68_c00478{bottom:279.360000px;}
.y6c_c00478{bottom:280.080000px;}
.y6d_c00478{bottom:281.520000px;}
.y6b_c00478{bottom:282.240000px;}
.y6a_c00478{bottom:283.680000px;}
.y67_c00478{bottom:321.120000px;}
.y66_c00478{bottom:324.000000px;}
.y64_c00478{bottom:352.080000px;}
.y63_c00478{bottom:354.240000px;}
.y62_c00478{bottom:354.960000px;}
.y65_c00478{bottom:356.400000px;}
.y61_c00478{bottom:396.720000px;}
.y5c_c00478{bottom:427.680000px;}
.y5f_c00478{bottom:429.120000px;}
.y5b_c00478{bottom:429.840000px;}
.y60_c00478{bottom:430.560000px;}
.y5e_c00478{bottom:431.280000px;}
.y5d_c00478{bottom:432.000000px;}
.y59_c00478{bottom:470.880000px;}
.y56_c00478{bottom:472.320000px;}
.y57_c00478{bottom:473.040000px;}
.y58_c00478{bottom:474.480000px;}
.y5a_c00478{bottom:475.200000px;}
.y53_c00478{bottom:514.080000px;}
.y51_c00478{bottom:514.800000px;}
.y50_c00478{bottom:515.520000px;}
.y54_c00478{bottom:516.240000px;}
.y52_c00478{bottom:517.680000px;}
.y55_c00478{bottom:518.400000px;}
.y4d_c00478{bottom:557.280000px;}
.y4b_c00478{bottom:558.720000px;}
.y4e_c00478{bottom:559.440000px;}
.y4c_c00478{bottom:560.880000px;}
.y4f_c00478{bottom:561.600000px;}
.y48_c00478{bottom:599.760000px;}
.y4a_c00478{bottom:601.200000px;}
.y46_c00478{bottom:601.920000px;}
.y49_c00478{bottom:602.640000px;}
.y47_c00478{bottom:604.080000px;}
.y45_c00478{bottom:642.960000px;}
.y42_c00478{bottom:645.120000px;}
.y44_c00478{bottom:646.560000px;}
.y43_c00478{bottom:647.280000px;}
.y3f_c00478{bottom:686.160000px;}
.y3d_c00478{bottom:687.600000px;}
.y40_c00478{bottom:688.320000px;}
.y3e_c00478{bottom:689.760000px;}
.y41_c00478{bottom:690.480000px;}
.y3a_c00478{bottom:728.640000px;}
.y3b_c00478{bottom:730.080000px;}
.y38_c00478{bottom:730.800000px;}
.y39_c00478{bottom:732.960000px;}
.y3c_c00478{bottom:733.680000px;}
.y33_c00478{bottom:765.360000px;}
.y37_c00478{bottom:766.080000px;}
.y30_c00478{bottom:771.120000px;}
.y2e_c00478{bottom:772.560000px;}
.y32_c00478{bottom:773.280000px;}
.y34_c00478{bottom:774.000000px;}
.y35_c00478{bottom:774.720000px;}
.y2f_c00478{bottom:775.440000px;}
.y31_c00478{bottom:776.160000px;}
.y36_c00478{bottom:776.880000px;}
.y2d_c00478{bottom:815.040000px;}
.y2a_c00478{bottom:815.760000px;}
.y2b_c00478{bottom:817.920000px;}
.y2c_c00478{bottom:818.640000px;}
.y25_c00478{bottom:846.720000px;}
.y27_c00478{bottom:848.160000px;}
.y24_c00478{bottom:848.880000px;}
.y29_c00478{bottom:849.600000px;}
.y26_c00478{bottom:850.320000px;}
.y28_c00478{bottom:851.040000px;}
.y1e_c00478{bottom:889.200000px;}
.y21_c00478{bottom:889.920000px;}
.y1d_c00478{bottom:890.640000px;}
.y22_c00478{bottom:891.360000px;}
.y23_c00478{bottom:892.080000px;}
.y20_c00478{bottom:892.800000px;}
.y1f_c00478{bottom:893.520000px;}
.y19_c00478{bottom:931.680000px;}
.y17_c00478{bottom:933.120000px;}
.y1c_c00478{bottom:933.840000px;}
.y1b_c00478{bottom:934.560000px;}
.y1a_c00478{bottom:935.280000px;}
.y18_c00478{bottom:936.000000px;}
.y11_c00478{bottom:974.160000px;}
.y12_c00478{bottom:974.880000px;}
.yf_c00478{bottom:975.600000px;}
.y13_c00478{bottom:976.320000px;}
.y15_c00478{bottom:977.040000px;}
.y14_c00478{bottom:977.760000px;}
.y10_c00478{bottom:978.480000px;}
.y16_c00478{bottom:979.200000px;}
.yb_c00478{bottom:1017.360000px;}
.yc_c00478{bottom:1018.080000px;}
.y9_c00478{bottom:1019.520000px;}
.ye_c00478{bottom:1020.240000px;}
.yd_c00478{bottom:1020.960000px;}
.ya_c00478{bottom:1021.680000px;}
.y4_c00478{bottom:1060.560000px;}
.y7_c00478{bottom:1061.280000px;}
.y5_c00478{bottom:1062.000000px;}
.y2_c00478{bottom:1062.720000px;}
.y8_c00478{bottom:1063.440000px;}
.y3_c00478{bottom:1064.160000px;}
.y6_c00478{bottom:1064.880000px;}
.y1_c00478{bottom:1110.960000px;}
.hf_c00478{height:28.508906px;}
.h6_c00478{height:31.100625px;}
.h11_c00478{height:33.692344px;}
.h5_c00478{height:41.467500px;}
.h7_c00478{height:44.059219px;}
.h4_c00478{height:46.650937px;}
.ha_c00478{height:49.242656px;}
.h9_c00478{height:51.834375px;}
.hb_c00478{height:54.426094px;}
.h3_c00478{height:57.017812px;}
.hd_c00478{height:59.609531px;}
.hc_c00478{height:62.201250px;}
.h8_c00478{height:64.792969px;}
.h2_c00478{height:67.384687px;}
.h10_c00478{height:69.976406px;}
.he_c00478{height:90.710156px;}
.h1_c00478{height:1165.500000px;}
.h0_c00478{height:1165.680000px;}
.w0_c00478{width:761.040000px;}
.w1_c00478{width:761.250000px;}
.x0_c00478{left:0.000000px;}
.x2_c00478{left:44.640000px;}
.x3_c00478{left:118.800000px;}
.x22_c00478{left:120.240000px;}
.x27_c00478{left:162.000000px;}
.x4_c00478{left:163.440000px;}
.x25_c00478{left:173.520000px;}
.x18_c00478{left:205.200000px;}
.x1a_c00478{left:206.640000px;}
.x23_c00478{left:217.440000px;}
.x26_c00478{left:226.800000px;}
.x19_c00478{left:261.360000px;}
.x5_c00478{left:270.720000px;}
.x12_c00478{left:272.160000px;}
.x28_c00478{left:304.560000px;}
.x1d_c00478{left:313.920000px;}
.x16_c00478{left:315.360000px;}
.x6_c00478{left:326.160000px;}
.x1b_c00478{left:346.320000px;}
.x13_c00478{left:357.840000px;}
.x7_c00478{left:369.360000px;}
.x17_c00478{left:401.040000px;}
.xe_c00478{left:412.560000px;}
.x29_c00478{left:414.000000px;}
.x1e_c00478{left:443.520000px;}
.x8_c00478{left:453.600000px;}
.xf_c00478{left:455.760000px;}
.x20_c00478{left:477.360000px;}
.x9_c00478{left:498.960000px;}
.x10_c00478{left:520.560000px;}
.x2a_c00478{left:532.800000px;}
.x21_c00478{left:553.680000px;}
.x14_c00478{left:575.280000px;}
.xa_c00478{left:606.960000px;}
.x1c_c00478{left:609.120000px;}
.xb_c00478{left:640.800000px;}
.x2b_c00478{left:642.240000px;}
.x15_c00478{left:651.600000px;}
.x1_c00478{left:660.960000px;}
.x2c_c00478{left:665.280000px;}
.x24_c00478{left:673.920000px;}
.xc_c00478{left:683.280000px;}
.x11_c00478{left:684.720000px;}
.x2d_c00478{left:686.160000px;}
.xd_c00478{left:704.160000px;}
.x1f_c00478{left:705.600000px;}
@media print{
.v1_c00478{vertical-align:-5.120000pt;}
.v0_c00478{vertical-align:0.000000pt;}
.v2_c00478{vertical-align:5.120000pt;}
.ls0_c00478{letter-spacing:0.000000pt;}
.ws2_c00478{word-spacing:0.000000pt;}
.ws1_c00478{word-spacing:40.410667pt;}
.ws0_c00478{word-spacing:161.555200pt;}
.fsd_c00478{font-size:28.160000pt;}
.fs4_c00478{font-size:30.720000pt;}
.fsf_c00478{font-size:33.280000pt;}
.fs3_c00478{font-size:40.960000pt;}
.fs5_c00478{font-size:43.520000pt;}
.fs2_c00478{font-size:46.080000pt;}
.fs8_c00478{font-size:48.640000pt;}
.fs7_c00478{font-size:51.200000pt;}
.fs9_c00478{font-size:53.760000pt;}
.fs1_c00478{font-size:56.320000pt;}
.fsb_c00478{font-size:58.880000pt;}
.fsa_c00478{font-size:61.440000pt;}
.fs6_c00478{font-size:64.000000pt;}
.fs0_c00478{font-size:66.560000pt;}
.fse_c00478{font-size:69.120000pt;}
.fsc_c00478{font-size:89.600000pt;}
.y0_c00478{bottom:0.000000pt;}
.y83_c00478{bottom:55.680000pt;}
.y86_c00478{bottom:56.960000pt;}
.y82_c00478{bottom:57.600000pt;}
.y85_c00478{bottom:58.240000pt;}
.y84_c00478{bottom:60.160000pt;}
.y7d_c00478{bottom:93.440000pt;}
.y80_c00478{bottom:95.360000pt;}
.y7c_c00478{bottom:96.000000pt;}
.y7f_c00478{bottom:96.640000pt;}
.y81_c00478{bottom:97.280000pt;}
.y7e_c00478{bottom:98.560000pt;}
.y78_c00478{bottom:131.840000pt;}
.y77_c00478{bottom:133.760000pt;}
.y7b_c00478{bottom:134.400000pt;}
.y7a_c00478{bottom:135.040000pt;}
.y79_c00478{bottom:136.320000pt;}
.y74_c00478{bottom:170.240000pt;}
.y73_c00478{bottom:172.160000pt;}
.y76_c00478{bottom:172.800000pt;}
.y75_c00478{bottom:175.360000pt;}
.y6f_c00478{bottom:208.640000pt;}
.y72_c00478{bottom:209.920000pt;}
.y6e_c00478{bottom:210.560000pt;}
.y71_c00478{bottom:211.200000pt;}
.y70_c00478{bottom:213.120000pt;}
.y69_c00478{bottom:247.040000pt;}
.y68_c00478{bottom:248.320000pt;}
.y6c_c00478{bottom:248.960000pt;}
.y6d_c00478{bottom:250.240000pt;}
.y6b_c00478{bottom:250.880000pt;}
.y6a_c00478{bottom:252.160000pt;}
.y67_c00478{bottom:285.440000pt;}
.y66_c00478{bottom:288.000000pt;}
.y64_c00478{bottom:312.960000pt;}
.y63_c00478{bottom:314.880000pt;}
.y62_c00478{bottom:315.520000pt;}
.y65_c00478{bottom:316.800000pt;}
.y61_c00478{bottom:352.640000pt;}
.y5c_c00478{bottom:380.160000pt;}
.y5f_c00478{bottom:381.440000pt;}
.y5b_c00478{bottom:382.080000pt;}
.y60_c00478{bottom:382.720000pt;}
.y5e_c00478{bottom:383.360000pt;}
.y5d_c00478{bottom:384.000000pt;}
.y59_c00478{bottom:418.560000pt;}
.y56_c00478{bottom:419.840000pt;}
.y57_c00478{bottom:420.480000pt;}
.y58_c00478{bottom:421.760000pt;}
.y5a_c00478{bottom:422.400000pt;}
.y53_c00478{bottom:456.960000pt;}
.y51_c00478{bottom:457.600000pt;}
.y50_c00478{bottom:458.240000pt;}
.y54_c00478{bottom:458.880000pt;}
.y52_c00478{bottom:460.160000pt;}
.y55_c00478{bottom:460.800000pt;}
.y4d_c00478{bottom:495.360000pt;}
.y4b_c00478{bottom:496.640000pt;}
.y4e_c00478{bottom:497.280000pt;}
.y4c_c00478{bottom:498.560000pt;}
.y4f_c00478{bottom:499.200000pt;}
.y48_c00478{bottom:533.120000pt;}
.y4a_c00478{bottom:534.400000pt;}
.y46_c00478{bottom:535.040000pt;}
.y49_c00478{bottom:535.680000pt;}
.y47_c00478{bottom:536.960000pt;}
.y45_c00478{bottom:571.520000pt;}
.y42_c00478{bottom:573.440000pt;}
.y44_c00478{bottom:574.720000pt;}
.y43_c00478{bottom:575.360000pt;}
.y3f_c00478{bottom:609.920000pt;}
.y3d_c00478{bottom:611.200000pt;}
.y40_c00478{bottom:611.840000pt;}
.y3e_c00478{bottom:613.120000pt;}
.y41_c00478{bottom:613.760000pt;}
.y3a_c00478{bottom:647.680000pt;}
.y3b_c00478{bottom:648.960000pt;}
.y38_c00478{bottom:649.600000pt;}
.y39_c00478{bottom:651.520000pt;}
.y3c_c00478{bottom:652.160000pt;}
.y33_c00478{bottom:680.320000pt;}
.y37_c00478{bottom:680.960000pt;}
.y30_c00478{bottom:685.440000pt;}
.y2e_c00478{bottom:686.720000pt;}
.y32_c00478{bottom:687.360000pt;}
.y34_c00478{bottom:688.000000pt;}
.y35_c00478{bottom:688.640000pt;}
.y2f_c00478{bottom:689.280000pt;}
.y31_c00478{bottom:689.920000pt;}
.y36_c00478{bottom:690.560000pt;}
.y2d_c00478{bottom:724.480000pt;}
.y2a_c00478{bottom:725.120000pt;}
.y2b_c00478{bottom:727.040000pt;}
.y2c_c00478{bottom:727.680000pt;}
.y25_c00478{bottom:752.640000pt;}
.y27_c00478{bottom:753.920000pt;}
.y24_c00478{bottom:754.560000pt;}
.y29_c00478{bottom:755.200000pt;}
.y26_c00478{bottom:755.840000pt;}
.y28_c00478{bottom:756.480000pt;}
.y1e_c00478{bottom:790.400000pt;}
.y21_c00478{bottom:791.040000pt;}
.y1d_c00478{bottom:791.680000pt;}
.y22_c00478{bottom:792.320000pt;}
.y23_c00478{bottom:792.960000pt;}
.y20_c00478{bottom:793.600000pt;}
.y1f_c00478{bottom:794.240000pt;}
.y19_c00478{bottom:828.160000pt;}
.y17_c00478{bottom:829.440000pt;}
.y1c_c00478{bottom:830.080000pt;}
.y1b_c00478{bottom:830.720000pt;}
.y1a_c00478{bottom:831.360000pt;}
.y18_c00478{bottom:832.000000pt;}
.y11_c00478{bottom:865.920000pt;}
.y12_c00478{bottom:866.560000pt;}
.yf_c00478{bottom:867.200000pt;}
.y13_c00478{bottom:867.840000pt;}
.y15_c00478{bottom:868.480000pt;}
.y14_c00478{bottom:869.120000pt;}
.y10_c00478{bottom:869.760000pt;}
.y16_c00478{bottom:870.400000pt;}
.yb_c00478{bottom:904.320000pt;}
.yc_c00478{bottom:904.960000pt;}
.y9_c00478{bottom:906.240000pt;}
.ye_c00478{bottom:906.880000pt;}
.yd_c00478{bottom:907.520000pt;}
.ya_c00478{bottom:908.160000pt;}
.y4_c00478{bottom:942.720000pt;}
.y7_c00478{bottom:943.360000pt;}
.y5_c00478{bottom:944.000000pt;}
.y2_c00478{bottom:944.640000pt;}
.y8_c00478{bottom:945.280000pt;}
.y3_c00478{bottom:945.920000pt;}
.y6_c00478{bottom:946.560000pt;}
.y1_c00478{bottom:987.520000pt;}
.hf_c00478{height:25.341250pt;}
.h6_c00478{height:27.645000pt;}
.h11_c00478{height:29.948750pt;}
.h5_c00478{height:36.860000pt;}
.h7_c00478{height:39.163750pt;}
.h4_c00478{height:41.467500pt;}
.ha_c00478{height:43.771250pt;}
.h9_c00478{height:46.075000pt;}
.hb_c00478{height:48.378750pt;}
.h3_c00478{height:50.682500pt;}
.hd_c00478{height:52.986250pt;}
.hc_c00478{height:55.290000pt;}
.h8_c00478{height:57.593750pt;}
.h2_c00478{height:59.897500pt;}
.h10_c00478{height:62.201250pt;}
.he_c00478{height:80.631250pt;}
.h1_c00478{height:1036.000000pt;}
.h0_c00478{height:1036.160000pt;}
.w0_c00478{width:676.480000pt;}
.w1_c00478{width:676.666667pt;}
.x0_c00478{left:0.000000pt;}
.x2_c00478{left:39.680000pt;}
.x3_c00478{left:105.600000pt;}
.x22_c00478{left:106.880000pt;}
.x27_c00478{left:144.000000pt;}
.x4_c00478{left:145.280000pt;}
.x25_c00478{left:154.240000pt;}
.x18_c00478{left:182.400000pt;}
.x1a_c00478{left:183.680000pt;}
.x23_c00478{left:193.280000pt;}
.x26_c00478{left:201.600000pt;}
.x19_c00478{left:232.320000pt;}
.x5_c00478{left:240.640000pt;}
.x12_c00478{left:241.920000pt;}
.x28_c00478{left:270.720000pt;}
.x1d_c00478{left:279.040000pt;}
.x16_c00478{left:280.320000pt;}
.x6_c00478{left:289.920000pt;}
.x1b_c00478{left:307.840000pt;}
.x13_c00478{left:318.080000pt;}
.x7_c00478{left:328.320000pt;}
.x17_c00478{left:356.480000pt;}
.xe_c00478{left:366.720000pt;}
.x29_c00478{left:368.000000pt;}
.x1e_c00478{left:394.240000pt;}
.x8_c00478{left:403.200000pt;}
.xf_c00478{left:405.120000pt;}
.x20_c00478{left:424.320000pt;}
.x9_c00478{left:443.520000pt;}
.x10_c00478{left:462.720000pt;}
.x2a_c00478{left:473.600000pt;}
.x21_c00478{left:492.160000pt;}
.x14_c00478{left:511.360000pt;}
.xa_c00478{left:539.520000pt;}
.x1c_c00478{left:541.440000pt;}
.xb_c00478{left:569.600000pt;}
.x2b_c00478{left:570.880000pt;}
.x15_c00478{left:579.200000pt;}
.x1_c00478{left:587.520000pt;}
.x2c_c00478{left:591.360000pt;}
.x24_c00478{left:599.040000pt;}
.xc_c00478{left:607.360000pt;}
.x11_c00478{left:608.640000pt;}
.x2d_c00478{left:609.920000pt;}
.xd_c00478{left:625.920000pt;}
.x1f_c00478{left:627.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_737ad8cc3d2cdce5c747159c.woff2')format("woff");}.ff1_c00479{font-family:ff1_c00479;line-height:1.109863;font-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_c00479{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.mc_c00479{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m31_c00479{transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);}
.m14_c00479{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m4_c00479{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.me_c00479{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m8_c00479{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_c00479{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m16_c00479{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00479{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m24_c00479{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m15_c00479{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m13_c00479{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m37_c00479{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m6_c00479{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m18_c00479{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mf_c00479{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m3_c00479{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m10_c00479{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m12_c00479{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m9_c00479{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00479{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00479{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00479{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m28_c00479{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m34_c00479{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mb_c00479{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m7_c00479{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m26_c00479{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m5_c00479{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2_c00479{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m22_c00479{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m23_c00479{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m17_c00479{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);}
.m2c_c00479{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m21_c00479{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);}
.m30_c00479{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m0_c00479{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);}
.ma_c00479{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00479{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.md_c00479{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);}
.m2b_c00479{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m1_c00479{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m19_c00479{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);}
.m2d_c00479{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m35_c00479{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00479{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);}
.m32_c00479{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00479{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m25_c00479{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m36_c00479{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m33_c00479{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m20_c00479{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.m29_c00479{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.m11_c00479{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m27_c00479{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.v0_c00479{vertical-align:0.000000px;}
.ls0_c00479{letter-spacing:0.000000px;}
.sc__c00479{text-shadow:none;}
.sc0_c00479{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00479{-webkit-text-stroke:0px transparent;}
.sc0_c00479{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00479{word-spacing:0.000000px;}
.ws1_c00479{word-spacing:7.917875px;}
.ws0_c00479{word-spacing:9.210378px;}
.ws2_c00479{word-spacing:20.750645px;}
.fc0_c00479{color:transparent;}
.fsb_c00479{font-size:11.520000px;}
.fsd_c00479{font-size:34.560000px;}
.fs4_c00479{font-size:46.080000px;}
.fs2_c00479{font-size:48.960000px;}
.fs5_c00479{font-size:51.840000px;}
.fs7_c00479{font-size:54.720000px;}
.fs1_c00479{font-size:57.600000px;}
.fs8_c00479{font-size:60.480000px;}
.fsa_c00479{font-size:63.360000px;}
.fs9_c00479{font-size:66.240000px;}
.fs6_c00479{font-size:69.120000px;}
.fs3_c00479{font-size:72.000000px;}
.fs0_c00479{font-size:74.880000px;}
.fsc_c00479{font-size:77.760000px;}
.y0_c00479{bottom:0.000000px;}
.y74_c00479{bottom:40.320000px;}
.y78_c00479{bottom:41.760000px;}
.y77_c00479{bottom:42.480000px;}
.y76_c00479{bottom:43.200000px;}
.y73_c00479{bottom:43.920000px;}
.y75_c00479{bottom:44.640000px;}
.y6f_c00479{bottom:82.080000px;}
.y70_c00479{bottom:82.800000px;}
.y71_c00479{bottom:84.240000px;}
.y6e_c00479{bottom:84.960000px;}
.y72_c00479{bottom:86.400000px;}
.y68_c00479{bottom:125.280000px;}
.y6a_c00479{bottom:126.000000px;}
.y6d_c00479{bottom:126.720000px;}
.y6b_c00479{bottom:127.440000px;}
.y67_c00479{bottom:128.160000px;}
.y69_c00479{bottom:128.880000px;}
.y6c_c00479{bottom:129.600000px;}
.y66_c00479{bottom:168.480000px;}
.y65_c00479{bottom:169.920000px;}
.y61_c00479{bottom:200.880000px;}
.y62_c00479{bottom:202.320000px;}
.y60_c00479{bottom:203.040000px;}
.y63_c00479{bottom:204.480000px;}
.y64_c00479{bottom:205.200000px;}
.y5d_c00479{bottom:244.800000px;}
.y5f_c00479{bottom:245.520000px;}
.y5e_c00479{bottom:246.240000px;}
.y5c_c00479{bottom:246.960000px;}
.y59_c00479{bottom:287.280000px;}
.y5a_c00479{bottom:289.440000px;}
.y58_c00479{bottom:290.160000px;}
.y5b_c00479{bottom:290.880000px;}
.y55_c00479{bottom:330.480000px;}
.y57_c00479{bottom:331.920000px;}
.y54_c00479{bottom:332.640000px;}
.y56_c00479{bottom:333.360000px;}
.y4f_c00479{bottom:372.960000px;}
.y52_c00479{bottom:375.120000px;}
.y4e_c00479{bottom:375.840000px;}
.y51_c00479{bottom:376.560000px;}
.y53_c00479{bottom:377.280000px;}
.y50_c00479{bottom:378.720000px;}
.y4a_c00479{bottom:416.880000px;}
.y49_c00479{bottom:419.040000px;}
.y4c_c00479{bottom:419.760000px;}
.y4d_c00479{bottom:420.480000px;}
.y4b_c00479{bottom:421.200000px;}
.y45_c00479{bottom:460.080000px;}
.y47_c00479{bottom:461.520000px;}
.y48_c00479{bottom:462.240000px;}
.y44_c00479{bottom:462.960000px;}
.y46_c00479{bottom:464.400000px;}
.y40_c00479{bottom:503.280000px;}
.y3d_c00479{bottom:504.720000px;}
.y42_c00479{bottom:505.440000px;}
.y43_c00479{bottom:506.160000px;}
.y3f_c00479{bottom:506.880000px;}
.y41_c00479{bottom:507.600000px;}
.y3e_c00479{bottom:510.480000px;}
.y39_c00479{bottom:546.480000px;}
.y3c_c00479{bottom:547.920000px;}
.y38_c00479{bottom:548.640000px;}
.y3b_c00479{bottom:550.080000px;}
.y3a_c00479{bottom:550.800000px;}
.y34_c00479{bottom:589.680000px;}
.y36_c00479{bottom:590.400000px;}
.y33_c00479{bottom:591.120000px;}
.y37_c00479{bottom:592.560000px;}
.y35_c00479{bottom:593.280000px;}
.y30_c00479{bottom:632.160000px;}
.y32_c00479{bottom:632.880000px;}
.y2f_c00479{bottom:633.600000px;}
.y31_c00479{bottom:635.760000px;}
.y2b_c00479{bottom:674.640000px;}
.y2e_c00479{bottom:676.080000px;}
.y2a_c00479{bottom:676.800000px;}
.y2d_c00479{bottom:677.520000px;}
.y2c_c00479{bottom:678.240000px;}
.y27_c00479{bottom:717.840000px;}
.y26_c00479{bottom:719.280000px;}
.y29_c00479{bottom:720.720000px;}
.y28_c00479{bottom:721.440000px;}
.y22_c00479{bottom:760.320000px;}
.y24_c00479{bottom:762.480000px;}
.y21_c00479{bottom:763.200000px;}
.y23_c00479{bottom:763.920000px;}
.y25_c00479{bottom:764.640000px;}
.y1e_c00479{bottom:803.520000px;}
.y20_c00479{bottom:804.960000px;}
.y1d_c00479{bottom:805.680000px;}
.y1f_c00479{bottom:807.120000px;}
.y1a_c00479{bottom:847.440000px;}
.y1c_c00479{bottom:848.160000px;}
.y19_c00479{bottom:848.880000px;}
.y1b_c00479{bottom:850.320000px;}
.y16_c00479{bottom:890.640000px;}
.y18_c00479{bottom:891.360000px;}
.y15_c00479{bottom:892.080000px;}
.y17_c00479{bottom:893.520000px;}
.y12_c00479{bottom:933.120000px;}
.y11_c00479{bottom:934.560000px;}
.y14_c00479{bottom:936.000000px;}
.y13_c00479{bottom:936.720000px;}
.yc_c00479{bottom:976.320000px;}
.ye_c00479{bottom:977.040000px;}
.yb_c00479{bottom:977.760000px;}
.y10_c00479{bottom:978.480000px;}
.yd_c00479{bottom:979.200000px;}
.yf_c00479{bottom:979.920000px;}
.y8_c00479{bottom:1019.520000px;}
.y7_c00479{bottom:1020.240000px;}
.ya_c00479{bottom:1020.960000px;}
.y9_c00479{bottom:1022.400000px;}
.y4_c00479{bottom:1062.720000px;}
.y6_c00479{bottom:1063.440000px;}
.y2_c00479{bottom:1064.160000px;}
.y5_c00479{bottom:1065.600000px;}
.y3_c00479{bottom:1066.320000px;}
.y1_c00479{bottom:1121.040000px;}
.hd_c00479{height:10.366875px;}
.hf_c00479{height:31.100625px;}
.h6_c00479{height:41.467500px;}
.h4_c00479{height:44.059219px;}
.h7_c00479{height:46.650937px;}
.h9_c00479{height:49.242656px;}
.h3_c00479{height:51.834375px;}
.ha_c00479{height:54.426094px;}
.hc_c00479{height:57.017812px;}
.hb_c00479{height:59.609531px;}
.h8_c00479{height:62.201250px;}
.h5_c00479{height:64.792969px;}
.h2_c00479{height:67.384687px;}
.he_c00479{height:69.976406px;}
.h0_c00479{height:1172.160000px;}
.h1_c00479{height:1172.250000px;}
.w1_c00479{width:771.000000px;}
.w0_c00479{width:771.120000px;}
.x0_c00479{left:0.000000px;}
.x2_c00479{left:46.800000px;}
.xf_c00479{left:100.080000px;}
.x3_c00479{left:121.680000px;}
.x18_c00479{left:123.120000px;}
.x4_c00479{left:156.240000px;}
.x13_c00479{left:208.800000px;}
.x1b_c00479{left:252.720000px;}
.x14_c00479{left:262.080000px;}
.x19_c00479{left:263.520000px;}
.x15_c00479{left:306.720000px;}
.x16_c00479{left:393.120000px;}
.x17_c00479{left:447.840000px;}
.x10_c00479{left:533.520000px;}
.x5_c00479{left:534.960000px;}
.x6_c00479{left:555.120000px;}
.xb_c00479{left:556.560000px;}
.x7_c00479{left:577.440000px;}
.x1a_c00479{left:588.960000px;}
.xe_c00479{left:609.120000px;}
.xc_c00479{left:610.560000px;}
.x9_c00479{left:621.360000px;}
.xa_c00479{left:643.680000px;}
.x12_c00479{left:654.480000px;}
.x8_c00479{left:686.160000px;}
.x11_c00479{left:687.600000px;}
.x1_c00479{left:693.360000px;}
.xd_c00479{left:707.040000px;}
.x1c_c00479{left:708.480000px;}
@media print{
.v0_c00479{vertical-align:0.000000pt;}
.ls0_c00479{letter-spacing:0.000000pt;}
.ws3_c00479{word-spacing:0.000000pt;}
.ws1_c00479{word-spacing:7.038111pt;}
.ws0_c00479{word-spacing:8.187003pt;}
.ws2_c00479{word-spacing:18.445018pt;}
.fsb_c00479{font-size:10.240000pt;}
.fsd_c00479{font-size:30.720000pt;}
.fs4_c00479{font-size:40.960000pt;}
.fs2_c00479{font-size:43.520000pt;}
.fs5_c00479{font-size:46.080000pt;}
.fs7_c00479{font-size:48.640000pt;}
.fs1_c00479{font-size:51.200000pt;}
.fs8_c00479{font-size:53.760000pt;}
.fsa_c00479{font-size:56.320000pt;}
.fs9_c00479{font-size:58.880000pt;}
.fs6_c00479{font-size:61.440000pt;}
.fs3_c00479{font-size:64.000000pt;}
.fs0_c00479{font-size:66.560000pt;}
.fsc_c00479{font-size:69.120000pt;}
.y0_c00479{bottom:0.000000pt;}
.y74_c00479{bottom:35.840000pt;}
.y78_c00479{bottom:37.120000pt;}
.y77_c00479{bottom:37.760000pt;}
.y76_c00479{bottom:38.400000pt;}
.y73_c00479{bottom:39.040000pt;}
.y75_c00479{bottom:39.680000pt;}
.y6f_c00479{bottom:72.960000pt;}
.y70_c00479{bottom:73.600000pt;}
.y71_c00479{bottom:74.880000pt;}
.y6e_c00479{bottom:75.520000pt;}
.y72_c00479{bottom:76.800000pt;}
.y68_c00479{bottom:111.360000pt;}
.y6a_c00479{bottom:112.000000pt;}
.y6d_c00479{bottom:112.640000pt;}
.y6b_c00479{bottom:113.280000pt;}
.y67_c00479{bottom:113.920000pt;}
.y69_c00479{bottom:114.560000pt;}
.y6c_c00479{bottom:115.200000pt;}
.y66_c00479{bottom:149.760000pt;}
.y65_c00479{bottom:151.040000pt;}
.y61_c00479{bottom:178.560000pt;}
.y62_c00479{bottom:179.840000pt;}
.y60_c00479{bottom:180.480000pt;}
.y63_c00479{bottom:181.760000pt;}
.y64_c00479{bottom:182.400000pt;}
.y5d_c00479{bottom:217.600000pt;}
.y5f_c00479{bottom:218.240000pt;}
.y5e_c00479{bottom:218.880000pt;}
.y5c_c00479{bottom:219.520000pt;}
.y59_c00479{bottom:255.360000pt;}
.y5a_c00479{bottom:257.280000pt;}
.y58_c00479{bottom:257.920000pt;}
.y5b_c00479{bottom:258.560000pt;}
.y55_c00479{bottom:293.760000pt;}
.y57_c00479{bottom:295.040000pt;}
.y54_c00479{bottom:295.680000pt;}
.y56_c00479{bottom:296.320000pt;}
.y4f_c00479{bottom:331.520000pt;}
.y52_c00479{bottom:333.440000pt;}
.y4e_c00479{bottom:334.080000pt;}
.y51_c00479{bottom:334.720000pt;}
.y53_c00479{bottom:335.360000pt;}
.y50_c00479{bottom:336.640000pt;}
.y4a_c00479{bottom:370.560000pt;}
.y49_c00479{bottom:372.480000pt;}
.y4c_c00479{bottom:373.120000pt;}
.y4d_c00479{bottom:373.760000pt;}
.y4b_c00479{bottom:374.400000pt;}
.y45_c00479{bottom:408.960000pt;}
.y47_c00479{bottom:410.240000pt;}
.y48_c00479{bottom:410.880000pt;}
.y44_c00479{bottom:411.520000pt;}
.y46_c00479{bottom:412.800000pt;}
.y40_c00479{bottom:447.360000pt;}
.y3d_c00479{bottom:448.640000pt;}
.y42_c00479{bottom:449.280000pt;}
.y43_c00479{bottom:449.920000pt;}
.y3f_c00479{bottom:450.560000pt;}
.y41_c00479{bottom:451.200000pt;}
.y3e_c00479{bottom:453.760000pt;}
.y39_c00479{bottom:485.760000pt;}
.y3c_c00479{bottom:487.040000pt;}
.y38_c00479{bottom:487.680000pt;}
.y3b_c00479{bottom:488.960000pt;}
.y3a_c00479{bottom:489.600000pt;}
.y34_c00479{bottom:524.160000pt;}
.y36_c00479{bottom:524.800000pt;}
.y33_c00479{bottom:525.440000pt;}
.y37_c00479{bottom:526.720000pt;}
.y35_c00479{bottom:527.360000pt;}
.y30_c00479{bottom:561.920000pt;}
.y32_c00479{bottom:562.560000pt;}
.y2f_c00479{bottom:563.200000pt;}
.y31_c00479{bottom:565.120000pt;}
.y2b_c00479{bottom:599.680000pt;}
.y2e_c00479{bottom:600.960000pt;}
.y2a_c00479{bottom:601.600000pt;}
.y2d_c00479{bottom:602.240000pt;}
.y2c_c00479{bottom:602.880000pt;}
.y27_c00479{bottom:638.080000pt;}
.y26_c00479{bottom:639.360000pt;}
.y29_c00479{bottom:640.640000pt;}
.y28_c00479{bottom:641.280000pt;}
.y22_c00479{bottom:675.840000pt;}
.y24_c00479{bottom:677.760000pt;}
.y21_c00479{bottom:678.400000pt;}
.y23_c00479{bottom:679.040000pt;}
.y25_c00479{bottom:679.680000pt;}
.y1e_c00479{bottom:714.240000pt;}
.y20_c00479{bottom:715.520000pt;}
.y1d_c00479{bottom:716.160000pt;}
.y1f_c00479{bottom:717.440000pt;}
.y1a_c00479{bottom:753.280000pt;}
.y1c_c00479{bottom:753.920000pt;}
.y19_c00479{bottom:754.560000pt;}
.y1b_c00479{bottom:755.840000pt;}
.y16_c00479{bottom:791.680000pt;}
.y18_c00479{bottom:792.320000pt;}
.y15_c00479{bottom:792.960000pt;}
.y17_c00479{bottom:794.240000pt;}
.y12_c00479{bottom:829.440000pt;}
.y11_c00479{bottom:830.720000pt;}
.y14_c00479{bottom:832.000000pt;}
.y13_c00479{bottom:832.640000pt;}
.yc_c00479{bottom:867.840000pt;}
.ye_c00479{bottom:868.480000pt;}
.yb_c00479{bottom:869.120000pt;}
.y10_c00479{bottom:869.760000pt;}
.yd_c00479{bottom:870.400000pt;}
.yf_c00479{bottom:871.040000pt;}
.y8_c00479{bottom:906.240000pt;}
.y7_c00479{bottom:906.880000pt;}
.ya_c00479{bottom:907.520000pt;}
.y9_c00479{bottom:908.800000pt;}
.y4_c00479{bottom:944.640000pt;}
.y6_c00479{bottom:945.280000pt;}
.y2_c00479{bottom:945.920000pt;}
.y5_c00479{bottom:947.200000pt;}
.y3_c00479{bottom:947.840000pt;}
.y1_c00479{bottom:996.480000pt;}
.hd_c00479{height:9.215000pt;}
.hf_c00479{height:27.645000pt;}
.h6_c00479{height:36.860000pt;}
.h4_c00479{height:39.163750pt;}
.h7_c00479{height:41.467500pt;}
.h9_c00479{height:43.771250pt;}
.h3_c00479{height:46.075000pt;}
.ha_c00479{height:48.378750pt;}
.hc_c00479{height:50.682500pt;}
.hb_c00479{height:52.986250pt;}
.h8_c00479{height:55.290000pt;}
.h5_c00479{height:57.593750pt;}
.h2_c00479{height:59.897500pt;}
.he_c00479{height:62.201250pt;}
.h0_c00479{height:1041.920000pt;}
.h1_c00479{height:1042.000000pt;}
.w1_c00479{width:685.333333pt;}
.w0_c00479{width:685.440000pt;}
.x0_c00479{left:0.000000pt;}
.x2_c00479{left:41.600000pt;}
.xf_c00479{left:88.960000pt;}
.x3_c00479{left:108.160000pt;}
.x18_c00479{left:109.440000pt;}
.x4_c00479{left:138.880000pt;}
.x13_c00479{left:185.600000pt;}
.x1b_c00479{left:224.640000pt;}
.x14_c00479{left:232.960000pt;}
.x19_c00479{left:234.240000pt;}
.x15_c00479{left:272.640000pt;}
.x16_c00479{left:349.440000pt;}
.x17_c00479{left:398.080000pt;}
.x10_c00479{left:474.240000pt;}
.x5_c00479{left:475.520000pt;}
.x6_c00479{left:493.440000pt;}
.xb_c00479{left:494.720000pt;}
.x7_c00479{left:513.280000pt;}
.x1a_c00479{left:523.520000pt;}
.xe_c00479{left:541.440000pt;}
.xc_c00479{left:542.720000pt;}
.x9_c00479{left:552.320000pt;}
.xa_c00479{left:572.160000pt;}
.x12_c00479{left:581.760000pt;}
.x8_c00479{left:609.920000pt;}
.x11_c00479{left:611.200000pt;}
.x1_c00479{left:616.320000pt;}
.xd_c00479{left:628.480000pt;}
.x1c_c00479{left:629.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d5cab6461738bcec6ecff8dd.woff2')format("woff");}.ff1_c00480{font-family:ff1_c00480;line-height:1.109863;font-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_c00480{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_c00480{transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);}
.m30_c00480{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m34_c00480{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m12_c00480{transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);}
.m3b_c00480{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m32_c00480{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m33_c00480{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);}
.m35_c00480{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m16_c00480{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m22_c00480{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00480{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);}
.m31_c00480{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.mb_c00480{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00480{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m18_c00480{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m19_c00480{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.ma_c00480{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m2_c00480{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m4_c00480{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);}
.m2d_c00480{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.md_c00480{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m28_c00480{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m6_c00480{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_c00480{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00480{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m3_c00480{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mf_c00480{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m20_c00480{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m5_c00480{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m10_c00480{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00480{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00480{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m37_c00480{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00480{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00480{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m17_c00480{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mc_c00480{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.me_c00480{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00480{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00480{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m24_c00480{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);}
.m38_c00480{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m8_c00480{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m7_c00480{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m0_c00480{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m1_c00480{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m26_c00480{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);}
.m21_c00480{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m36_c00480{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);}
.m2b_c00480{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m29_c00480{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);}
.m25_c00480{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m9_c00480{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m23_c00480{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m13_c00480{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m39_c00480{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m11_c00480{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);}
.m27_c00480{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00480{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00480{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00480{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.v1_c00480{vertical-align:-2.880000px;}
.v0_c00480{vertical-align:0.000000px;}
.v2_c00480{vertical-align:5.760000px;}
.ls1_c00480{letter-spacing:0.000000px;}
.ls0_c00480{letter-spacing:45.367680px;}
.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;}
}
.ws4_c00480{word-spacing:0.000000px;}
.ws3_c00480{word-spacing:8.411066px;}
.ws0_c00480{word-spacing:12.615600px;}
.ws2_c00480{word-spacing:13.463637px;}
.ws1_c00480{word-spacing:14.393376px;}
.fc0_c00480{color:transparent;}
.fsb_c00480{font-size:34.560000px;}
.fs9_c00480{font-size:46.080000px;}
.fs5_c00480{font-size:48.960000px;}
.fs6_c00480{font-size:51.840000px;}
.fs7_c00480{font-size:54.720000px;}
.fs8_c00480{font-size:57.600000px;}
.fs1_c00480{font-size:60.480000px;}
.fs4_c00480{font-size:63.360000px;}
.fsa_c00480{font-size:66.240000px;}
.fs2_c00480{font-size:69.120000px;}
.fs0_c00480{font-size:72.000000px;}
.fs3_c00480{font-size:74.880000px;}
.fsc_c00480{font-size:77.760000px;}
.y0_c00480{bottom:0.000000px;}
.y76_c00480{bottom:72.720000px;}
.y7a_c00480{bottom:74.160000px;}
.y78_c00480{bottom:74.880000px;}
.y7b_c00480{bottom:75.600000px;}
.y75_c00480{bottom:76.320000px;}
.y79_c00480{bottom:77.040000px;}
.y77_c00480{bottom:77.760000px;}
.y6f_c00480{bottom:115.920000px;}
.y71_c00480{bottom:118.080000px;}
.y6e_c00480{bottom:118.800000px;}
.y73_c00480{bottom:119.520000px;}
.y70_c00480{bottom:120.240000px;}
.y72_c00480{bottom:120.960000px;}
.y74_c00480{bottom:121.680000px;}
.y68_c00480{bottom:159.840000px;}
.y6b_c00480{bottom:161.280000px;}
.y67_c00480{bottom:162.000000px;}
.y6c_c00480{bottom:162.720000px;}
.y69_c00480{bottom:163.440000px;}
.y6a_c00480{bottom:164.160000px;}
.y6d_c00480{bottom:164.880000px;}
.y66_c00480{bottom:203.760000px;}
.y65_c00480{bottom:207.360000px;}
.y61_c00480{bottom:234.720000px;}
.y62_c00480{bottom:236.880000px;}
.y60_c00480{bottom:237.600000px;}
.y64_c00480{bottom:238.320000px;}
.y63_c00480{bottom:239.760000px;}
.y57_c00480{bottom:277.920000px;}
.y59_c00480{bottom:279.360000px;}
.y56_c00480{bottom:280.080000px;}
.y5f_c00480{bottom:280.800000px;}
.y5e_c00480{bottom:281.520000px;}
.y58_c00480{bottom:282.240000px;}
.y53_c00480{bottom:320.400000px;}
.y55_c00480{bottom:321.840000px;}
.y52_c00480{bottom:323.280000px;}
.y5c_c00480{bottom:324.000000px;}
.y54_c00480{bottom:324.720000px;}
.y5d_c00480{bottom:325.440000px;}
.y50_c00480{bottom:363.600000px;}
.y51_c00480{bottom:364.320000px;}
.y4f_c00480{bottom:365.760000px;}
.y5a_c00480{bottom:366.480000px;}
.y5b_c00480{bottom:368.640000px;}
.y49_c00480{bottom:406.800000px;}
.y4d_c00480{bottom:407.520000px;}
.y4a_c00480{bottom:408.240000px;}
.y48_c00480{bottom:408.960000px;}
.y4e_c00480{bottom:409.680000px;}
.y4c_c00480{bottom:410.400000px;}
.y4b_c00480{bottom:411.120000px;}
.y44_c00480{bottom:450.000000px;}
.y47_c00480{bottom:451.440000px;}
.y43_c00480{bottom:452.160000px;}
.y40_c00480{bottom:492.480000px;}
.y42_c00480{bottom:493.200000px;}
.y3f_c00480{bottom:494.640000px;}
.y45_c00480{bottom:495.360000px;}
.y41_c00480{bottom:496.800000px;}
.y46_c00480{bottom:497.520000px;}
.y3b_c00480{bottom:535.680000px;}
.y3d_c00480{bottom:536.400000px;}
.y3c_c00480{bottom:537.120000px;}
.y3a_c00480{bottom:537.840000px;}
.y3e_c00480{bottom:538.560000px;}
.y37_c00480{bottom:578.880000px;}
.y38_c00480{bottom:579.600000px;}
.y36_c00480{bottom:580.320000px;}
.y39_c00480{bottom:581.040000px;}
.y31_c00480{bottom:622.080000px;}
.y32_c00480{bottom:622.800000px;}
.y30_c00480{bottom:623.520000px;}
.y35_c00480{bottom:624.240000px;}
.y33_c00480{bottom:625.680000px;}
.y34_c00480{bottom:626.400000px;}
.y2c_c00480{bottom:665.280000px;}
.y2e_c00480{bottom:666.000000px;}
.y2b_c00480{bottom:666.720000px;}
.y2f_c00480{bottom:667.440000px;}
.y2d_c00480{bottom:668.880000px;}
.y27_c00480{bottom:708.480000px;}
.y26_c00480{bottom:709.920000px;}
.y28_c00480{bottom:710.640000px;}
.y29_c00480{bottom:712.080000px;}
.y2a_c00480{bottom:712.800000px;}
.y24_c00480{bottom:750.960000px;}
.y25_c00480{bottom:751.680000px;}
.y20_c00480{bottom:752.400000px;}
.y1f_c00480{bottom:753.120000px;}
.y22_c00480{bottom:794.160000px;}
.y1e_c00480{bottom:795.600000px;}
.y1d_c00480{bottom:796.320000px;}
.y21_c00480{bottom:797.040000px;}
.y23_c00480{bottom:797.760000px;}
.y19_c00480{bottom:837.360000px;}
.y1a_c00480{bottom:838.800000px;}
.y18_c00480{bottom:839.520000px;}
.y16_c00480{bottom:880.560000px;}
.y1c_c00480{bottom:881.280000px;}
.y15_c00480{bottom:882.000000px;}
.y17_c00480{bottom:884.160000px;}
.y1b_c00480{bottom:884.880000px;}
.y11_c00480{bottom:923.040000px;}
.y10_c00480{bottom:924.480000px;}
.y14_c00480{bottom:925.200000px;}
.y13_c00480{bottom:926.640000px;}
.y12_c00480{bottom:927.360000px;}
.y9_c00480{bottom:965.520000px;}
.y8_c00480{bottom:966.960000px;}
.yf_c00480{bottom:967.680000px;}
.yb_c00480{bottom:969.120000px;}
.ya_c00480{bottom:969.840000px;}
.y6_c00480{bottom:1008.000000px;}
.y7_c00480{bottom:1009.440000px;}
.ye_c00480{bottom:1010.160000px;}
.y5_c00480{bottom:1010.880000px;}
.y3_c00480{bottom:1051.200000px;}
.y4_c00480{bottom:1051.920000px;}
.yc_c00480{bottom:1052.640000px;}
.y2_c00480{bottom:1053.360000px;}
.yd_c00480{bottom:1055.520000px;}
.y1_c00480{bottom:1115.280000px;}
.he_c00480{height:31.100625px;}
.hb_c00480{height:41.467500px;}
.h7_c00480{height:44.059219px;}
.h8_c00480{height:46.650937px;}
.h9_c00480{height:49.242656px;}
.ha_c00480{height:51.834375px;}
.h3_c00480{height:54.426094px;}
.hd_c00480{height:55.002656px;}
.h6_c00480{height:57.017812px;}
.hc_c00480{height:59.609531px;}
.h4_c00480{height:62.201250px;}
.h2_c00480{height:64.792969px;}
.h5_c00480{height:67.384687px;}
.hf_c00480{height:69.976406px;}
.h0_c00480{height:1172.880000px;}
.h1_c00480{height:1173.000000px;}
.w1_c00480{width:773.250000px;}
.w0_c00480{width:773.280000px;}
.x0_c00480{left:0.000000px;}
.x2_c00480{left:43.200000px;}
.x22_c00480{left:44.640000px;}
.x3_c00480{left:118.800000px;}
.x25_c00480{left:174.240000px;}
.x7_c00480{left:205.200000px;}
.x5_c00480{left:207.360000px;}
.x1b_c00480{left:239.040000px;}
.x8_c00480{left:249.120000px;}
.x26_c00480{left:250.560000px;}
.x13_c00480{left:259.920000px;}
.xf_c00480{left:261.360000px;}
.x4_c00480{left:281.520000px;}
.x1d_c00480{left:292.320000px;}
.x9_c00480{left:303.120000px;}
.x23_c00480{left:304.560000px;}
.x6_c00480{left:335.520000px;}
.x1f_c00480{left:345.600000px;}
.x15_c00480{left:347.040000px;}
.x16_c00480{left:357.120000px;}
.x1c_c00480{left:368.640000px;}
.x2a_c00480{left:380.880000px;}
.x10_c00480{left:389.520000px;}
.x20_c00480{left:390.960000px;}
.x17_c00480{left:411.840000px;}
.x2b_c00480{left:424.080000px;}
.x11_c00480{left:442.800000px;}
.x21_c00480{left:444.960000px;}
.x18_c00480{left:454.320000px;}
.x12_c00480{left:487.440000px;}
.xa_c00480{left:531.360000px;}
.x24_c00480{left:532.800000px;}
.xb_c00480{left:552.960000px;}
.x1e_c00480{left:554.400000px;}
.xc_c00480{left:573.120000px;}
.x19_c00480{left:574.560000px;}
.xd_c00480{left:607.680000px;}
.x27_c00480{left:609.120000px;}
.x14_c00480{left:640.800000px;}
.x28_c00480{left:642.240000px;}
.x1_c00480{left:683.280000px;}
.x1a_c00480{left:684.720000px;}
.xe_c00480{left:704.160000px;}
.x29_c00480{left:706.320000px;}
@media print{
.v1_c00480{vertical-align:-2.560000pt;}
.v0_c00480{vertical-align:0.000000pt;}
.v2_c00480{vertical-align:5.120000pt;}
.ls1_c00480{letter-spacing:0.000000pt;}
.ls0_c00480{letter-spacing:40.326827pt;}
.ws4_c00480{word-spacing:0.000000pt;}
.ws3_c00480{word-spacing:7.476503pt;}
.ws0_c00480{word-spacing:11.213867pt;}
.ws2_c00480{word-spacing:11.967677pt;}
.ws1_c00480{word-spacing:12.794112pt;}
.fsb_c00480{font-size:30.720000pt;}
.fs9_c00480{font-size:40.960000pt;}
.fs5_c00480{font-size:43.520000pt;}
.fs6_c00480{font-size:46.080000pt;}
.fs7_c00480{font-size:48.640000pt;}
.fs8_c00480{font-size:51.200000pt;}
.fs1_c00480{font-size:53.760000pt;}
.fs4_c00480{font-size:56.320000pt;}
.fsa_c00480{font-size:58.880000pt;}
.fs2_c00480{font-size:61.440000pt;}
.fs0_c00480{font-size:64.000000pt;}
.fs3_c00480{font-size:66.560000pt;}
.fsc_c00480{font-size:69.120000pt;}
.y0_c00480{bottom:0.000000pt;}
.y76_c00480{bottom:64.640000pt;}
.y7a_c00480{bottom:65.920000pt;}
.y78_c00480{bottom:66.560000pt;}
.y7b_c00480{bottom:67.200000pt;}
.y75_c00480{bottom:67.840000pt;}
.y79_c00480{bottom:68.480000pt;}
.y77_c00480{bottom:69.120000pt;}
.y6f_c00480{bottom:103.040000pt;}
.y71_c00480{bottom:104.960000pt;}
.y6e_c00480{bottom:105.600000pt;}
.y73_c00480{bottom:106.240000pt;}
.y70_c00480{bottom:106.880000pt;}
.y72_c00480{bottom:107.520000pt;}
.y74_c00480{bottom:108.160000pt;}
.y68_c00480{bottom:142.080000pt;}
.y6b_c00480{bottom:143.360000pt;}
.y67_c00480{bottom:144.000000pt;}
.y6c_c00480{bottom:144.640000pt;}
.y69_c00480{bottom:145.280000pt;}
.y6a_c00480{bottom:145.920000pt;}
.y6d_c00480{bottom:146.560000pt;}
.y66_c00480{bottom:181.120000pt;}
.y65_c00480{bottom:184.320000pt;}
.y61_c00480{bottom:208.640000pt;}
.y62_c00480{bottom:210.560000pt;}
.y60_c00480{bottom:211.200000pt;}
.y64_c00480{bottom:211.840000pt;}
.y63_c00480{bottom:213.120000pt;}
.y57_c00480{bottom:247.040000pt;}
.y59_c00480{bottom:248.320000pt;}
.y56_c00480{bottom:248.960000pt;}
.y5f_c00480{bottom:249.600000pt;}
.y5e_c00480{bottom:250.240000pt;}
.y58_c00480{bottom:250.880000pt;}
.y53_c00480{bottom:284.800000pt;}
.y55_c00480{bottom:286.080000pt;}
.y52_c00480{bottom:287.360000pt;}
.y5c_c00480{bottom:288.000000pt;}
.y54_c00480{bottom:288.640000pt;}
.y5d_c00480{bottom:289.280000pt;}
.y50_c00480{bottom:323.200000pt;}
.y51_c00480{bottom:323.840000pt;}
.y4f_c00480{bottom:325.120000pt;}
.y5a_c00480{bottom:325.760000pt;}
.y5b_c00480{bottom:327.680000pt;}
.y49_c00480{bottom:361.600000pt;}
.y4d_c00480{bottom:362.240000pt;}
.y4a_c00480{bottom:362.880000pt;}
.y48_c00480{bottom:363.520000pt;}
.y4e_c00480{bottom:364.160000pt;}
.y4c_c00480{bottom:364.800000pt;}
.y4b_c00480{bottom:365.440000pt;}
.y44_c00480{bottom:400.000000pt;}
.y47_c00480{bottom:401.280000pt;}
.y43_c00480{bottom:401.920000pt;}
.y40_c00480{bottom:437.760000pt;}
.y42_c00480{bottom:438.400000pt;}
.y3f_c00480{bottom:439.680000pt;}
.y45_c00480{bottom:440.320000pt;}
.y41_c00480{bottom:441.600000pt;}
.y46_c00480{bottom:442.240000pt;}
.y3b_c00480{bottom:476.160000pt;}
.y3d_c00480{bottom:476.800000pt;}
.y3c_c00480{bottom:477.440000pt;}
.y3a_c00480{bottom:478.080000pt;}
.y3e_c00480{bottom:478.720000pt;}
.y37_c00480{bottom:514.560000pt;}
.y38_c00480{bottom:515.200000pt;}
.y36_c00480{bottom:515.840000pt;}
.y39_c00480{bottom:516.480000pt;}
.y31_c00480{bottom:552.960000pt;}
.y32_c00480{bottom:553.600000pt;}
.y30_c00480{bottom:554.240000pt;}
.y35_c00480{bottom:554.880000pt;}
.y33_c00480{bottom:556.160000pt;}
.y34_c00480{bottom:556.800000pt;}
.y2c_c00480{bottom:591.360000pt;}
.y2e_c00480{bottom:592.000000pt;}
.y2b_c00480{bottom:592.640000pt;}
.y2f_c00480{bottom:593.280000pt;}
.y2d_c00480{bottom:594.560000pt;}
.y27_c00480{bottom:629.760000pt;}
.y26_c00480{bottom:631.040000pt;}
.y28_c00480{bottom:631.680000pt;}
.y29_c00480{bottom:632.960000pt;}
.y2a_c00480{bottom:633.600000pt;}
.y24_c00480{bottom:667.520000pt;}
.y25_c00480{bottom:668.160000pt;}
.y20_c00480{bottom:668.800000pt;}
.y1f_c00480{bottom:669.440000pt;}
.y22_c00480{bottom:705.920000pt;}
.y1e_c00480{bottom:707.200000pt;}
.y1d_c00480{bottom:707.840000pt;}
.y21_c00480{bottom:708.480000pt;}
.y23_c00480{bottom:709.120000pt;}
.y19_c00480{bottom:744.320000pt;}
.y1a_c00480{bottom:745.600000pt;}
.y18_c00480{bottom:746.240000pt;}
.y16_c00480{bottom:782.720000pt;}
.y1c_c00480{bottom:783.360000pt;}
.y15_c00480{bottom:784.000000pt;}
.y17_c00480{bottom:785.920000pt;}
.y1b_c00480{bottom:786.560000pt;}
.y11_c00480{bottom:820.480000pt;}
.y10_c00480{bottom:821.760000pt;}
.y14_c00480{bottom:822.400000pt;}
.y13_c00480{bottom:823.680000pt;}
.y12_c00480{bottom:824.320000pt;}
.y9_c00480{bottom:858.240000pt;}
.y8_c00480{bottom:859.520000pt;}
.yf_c00480{bottom:860.160000pt;}
.yb_c00480{bottom:861.440000pt;}
.ya_c00480{bottom:862.080000pt;}
.y6_c00480{bottom:896.000000pt;}
.y7_c00480{bottom:897.280000pt;}
.ye_c00480{bottom:897.920000pt;}
.y5_c00480{bottom:898.560000pt;}
.y3_c00480{bottom:934.400000pt;}
.y4_c00480{bottom:935.040000pt;}
.yc_c00480{bottom:935.680000pt;}
.y2_c00480{bottom:936.320000pt;}
.yd_c00480{bottom:938.240000pt;}
.y1_c00480{bottom:991.360000pt;}
.he_c00480{height:27.645000pt;}
.hb_c00480{height:36.860000pt;}
.h7_c00480{height:39.163750pt;}
.h8_c00480{height:41.467500pt;}
.h9_c00480{height:43.771250pt;}
.ha_c00480{height:46.075000pt;}
.h3_c00480{height:48.378750pt;}
.hd_c00480{height:48.891250pt;}
.h6_c00480{height:50.682500pt;}
.hc_c00480{height:52.986250pt;}
.h4_c00480{height:55.290000pt;}
.h2_c00480{height:57.593750pt;}
.h5_c00480{height:59.897500pt;}
.hf_c00480{height:62.201250pt;}
.h0_c00480{height:1042.560000pt;}
.h1_c00480{height:1042.666667pt;}
.w1_c00480{width:687.333333pt;}
.w0_c00480{width:687.360000pt;}
.x0_c00480{left:0.000000pt;}
.x2_c00480{left:38.400000pt;}
.x22_c00480{left:39.680000pt;}
.x3_c00480{left:105.600000pt;}
.x25_c00480{left:154.880000pt;}
.x7_c00480{left:182.400000pt;}
.x5_c00480{left:184.320000pt;}
.x1b_c00480{left:212.480000pt;}
.x8_c00480{left:221.440000pt;}
.x26_c00480{left:222.720000pt;}
.x13_c00480{left:231.040000pt;}
.xf_c00480{left:232.320000pt;}
.x4_c00480{left:250.240000pt;}
.x1d_c00480{left:259.840000pt;}
.x9_c00480{left:269.440000pt;}
.x23_c00480{left:270.720000pt;}
.x6_c00480{left:298.240000pt;}
.x1f_c00480{left:307.200000pt;}
.x15_c00480{left:308.480000pt;}
.x16_c00480{left:317.440000pt;}
.x1c_c00480{left:327.680000pt;}
.x2a_c00480{left:338.560000pt;}
.x10_c00480{left:346.240000pt;}
.x20_c00480{left:347.520000pt;}
.x17_c00480{left:366.080000pt;}
.x2b_c00480{left:376.960000pt;}
.x11_c00480{left:393.600000pt;}
.x21_c00480{left:395.520000pt;}
.x18_c00480{left:403.840000pt;}
.x12_c00480{left:433.280000pt;}
.xa_c00480{left:472.320000pt;}
.x24_c00480{left:473.600000pt;}
.xb_c00480{left:491.520000pt;}
.x1e_c00480{left:492.800000pt;}
.xc_c00480{left:509.440000pt;}
.x19_c00480{left:510.720000pt;}
.xd_c00480{left:540.160000pt;}
.x27_c00480{left:541.440000pt;}
.x14_c00480{left:569.600000pt;}
.x28_c00480{left:570.880000pt;}
.x1_c00480{left:607.360000pt;}
.x1a_c00480{left:608.640000pt;}
.xe_c00480{left:625.920000pt;}
.x29_c00480{left:627.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_eb8de621921722427ee39db5.woff2')format("woff");}.ff1_c00481{font-family:ff1_c00481;line-height:1.109863;font-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_c00481{transform:matrix(0.238225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238225,0.000000,0.000000,0.250000,0,0);}
.m35_c00481{transform:matrix(0.243825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243825,0.000000,0.000000,0.250000,0,0);}
.m2e_c00481{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m10_c00481{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m2f_c00481{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_c00481{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m2_c00481{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mb_c00481{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m23_c00481{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_c00481{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m14_c00481{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00481{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m4_c00481{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m7_c00481{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m8_c00481{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);}
.m29_c00481{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00481{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m33_c00481{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m9_c00481{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m24_c00481{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m20_c00481{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.me_c00481{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m12_c00481{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00481{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00481{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m19_c00481{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m22_c00481{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00481{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);}
.m37_c00481{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m15_c00481{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.mc_c00481{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m36_c00481{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00481{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);}
.m2d_c00481{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m13_c00481{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_c00481{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m16_c00481{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m11_c00481{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m0_c00481{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1_c00481{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m25_c00481{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00481{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00481{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m5_c00481{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);}
.m28_c00481{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m21_c00481{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);}
.m38_c00481{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m32_c00481{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m39_c00481{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);}
.m3a_c00481{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m17_c00481{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);}
.md_c00481{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m3_c00481{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00481{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m30_c00481{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m31_c00481{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.ma_c00481{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m34_c00481{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.m27_c00481{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.v1_c00481{vertical-align:-5.760000px;}
.v0_c00481{vertical-align:0.000000px;}
.v2_c00481{vertical-align:5.760000px;}
.ls0_c00481{letter-spacing:0.000000px;}
.sc__c00481{text-shadow:none;}
.sc0_c00481{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00481{-webkit-text-stroke:0px transparent;}
.sc0_c00481{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00481{word-spacing:-4.617120px;}
.ws5_c00481{word-spacing:0.000000px;}
.ws2_c00481{word-spacing:15.811200px;}
.ws3_c00481{word-spacing:16.255200px;}
.ws4_c00481{word-spacing:48.954482px;}
.ws0_c00481{word-spacing:51.331087px;}
.fc0_c00481{color:transparent;}
.fs3_c00481{font-size:34.560000px;}
.fsd_c00481{font-size:37.440000px;}
.fsa_c00481{font-size:46.080000px;}
.fs5_c00481{font-size:48.960000px;}
.fs7_c00481{font-size:51.840000px;}
.fs6_c00481{font-size:54.720000px;}
.fsb_c00481{font-size:57.600000px;}
.fs1_c00481{font-size:60.480000px;}
.fs4_c00481{font-size:63.360000px;}
.fsc_c00481{font-size:66.240000px;}
.fs8_c00481{font-size:69.120000px;}
.fs2_c00481{font-size:72.000000px;}
.fs0_c00481{font-size:74.880000px;}
.fs9_c00481{font-size:100.800000px;}
.y0_c00481{bottom:0.000000px;}
.y84_c00481{bottom:30.960000px;}
.y86_c00481{bottom:32.400000px;}
.y83_c00481{bottom:34.560000px;}
.y85_c00481{bottom:35.280000px;}
.y88_c00481{bottom:36.720000px;}
.y87_c00481{bottom:37.440000px;}
.y82_c00481{bottom:68.400000px;}
.y7e_c00481{bottom:74.160000px;}
.y7f_c00481{bottom:74.880000px;}
.y7c_c00481{bottom:75.600000px;}
.y80_c00481{bottom:77.040000px;}
.y7d_c00481{bottom:78.480000px;}
.y81_c00481{bottom:79.200000px;}
.y7a_c00481{bottom:118.080000px;}
.y79_c00481{bottom:120.240000px;}
.y7b_c00481{bottom:122.400000px;}
.y75_c00481{bottom:160.560000px;}
.y77_c00481{bottom:162.720000px;}
.y74_c00481{bottom:163.440000px;}
.y78_c00481{bottom:164.880000px;}
.y76_c00481{bottom:165.600000px;}
.y6f_c00481{bottom:203.760000px;}
.y72_c00481{bottom:205.200000px;}
.y6e_c00481{bottom:205.920000px;}
.y71_c00481{bottom:206.640000px;}
.y70_c00481{bottom:208.080000px;}
.y73_c00481{bottom:208.800000px;}
.y69_c00481{bottom:246.240000px;}
.y6a_c00481{bottom:246.960000px;}
.y68_c00481{bottom:248.400000px;}
.y6d_c00481{bottom:249.120000px;}
.y6b_c00481{bottom:251.280000px;}
.y6c_c00481{bottom:252.000000px;}
.y63_c00481{bottom:289.440000px;}
.y65_c00481{bottom:290.880000px;}
.y62_c00481{bottom:292.320000px;}
.y67_c00481{bottom:293.040000px;}
.y64_c00481{bottom:293.760000px;}
.y66_c00481{bottom:294.480000px;}
.y5d_c00481{bottom:332.640000px;}
.y5f_c00481{bottom:334.080000px;}
.y5c_c00481{bottom:335.520000px;}
.y5e_c00481{bottom:336.960000px;}
.y60_c00481{bottom:337.680000px;}
.y61_c00481{bottom:338.400000px;}
.y56_c00481{bottom:375.840000px;}
.y58_c00481{bottom:376.560000px;}
.y55_c00481{bottom:378.000000px;}
.y5a_c00481{bottom:378.720000px;}
.y5b_c00481{bottom:379.440000px;}
.y57_c00481{bottom:380.160000px;}
.y59_c00481{bottom:380.880000px;}
.y51_c00481{bottom:419.040000px;}
.y53_c00481{bottom:419.760000px;}
.y50_c00481{bottom:421.200000px;}
.y52_c00481{bottom:422.640000px;}
.y54_c00481{bottom:424.800000px;}
.y4b_c00481{bottom:462.240000px;}
.y4c_c00481{bottom:462.960000px;}
.y4a_c00481{bottom:464.400000px;}
.y4e_c00481{bottom:465.120000px;}
.y4d_c00481{bottom:466.560000px;}
.y4f_c00481{bottom:468.000000px;}
.y45_c00481{bottom:505.440000px;}
.y44_c00481{bottom:507.600000px;}
.y48_c00481{bottom:508.320000px;}
.y49_c00481{bottom:509.040000px;}
.y46_c00481{bottom:509.760000px;}
.y47_c00481{bottom:510.480000px;}
.y3f_c00481{bottom:547.920000px;}
.y3e_c00481{bottom:550.080000px;}
.y42_c00481{bottom:550.800000px;}
.y43_c00481{bottom:551.520000px;}
.y41_c00481{bottom:552.240000px;}
.y40_c00481{bottom:552.960000px;}
.y3b_c00481{bottom:591.120000px;}
.y3a_c00481{bottom:594.000000px;}
.y3c_c00481{bottom:595.440000px;}
.y3d_c00481{bottom:596.880000px;}
.y37_c00481{bottom:634.320000px;}
.y36_c00481{bottom:636.480000px;}
.y39_c00481{bottom:637.200000px;}
.y38_c00481{bottom:637.920000px;}
.y31_c00481{bottom:676.800000px;}
.y30_c00481{bottom:678.240000px;}
.y33_c00481{bottom:678.960000px;}
.y34_c00481{bottom:679.680000px;}
.y32_c00481{bottom:681.120000px;}
.y35_c00481{bottom:682.560000px;}
.y2c_c00481{bottom:719.280000px;}
.y2b_c00481{bottom:721.440000px;}
.y2e_c00481{bottom:722.160000px;}
.y2f_c00481{bottom:722.880000px;}
.y2d_c00481{bottom:723.600000px;}
.y27_c00481{bottom:761.760000px;}
.y26_c00481{bottom:763.920000px;}
.y29_c00481{bottom:765.360000px;}
.y28_c00481{bottom:766.080000px;}
.y2a_c00481{bottom:767.520000px;}
.y23_c00481{bottom:804.960000px;}
.y22_c00481{bottom:807.120000px;}
.y24_c00481{bottom:808.560000px;}
.y25_c00481{bottom:810.000000px;}
.y1e_c00481{bottom:849.600000px;}
.y20_c00481{bottom:850.320000px;}
.y1f_c00481{bottom:851.760000px;}
.y21_c00481{bottom:852.480000px;}
.y1a_c00481{bottom:890.640000px;}
.y19_c00481{bottom:892.800000px;}
.y1c_c00481{bottom:893.520000px;}
.y1d_c00481{bottom:894.240000px;}
.y1b_c00481{bottom:894.960000px;}
.y13_c00481{bottom:933.840000px;}
.y12_c00481{bottom:935.280000px;}
.y16_c00481{bottom:936.000000px;}
.y15_c00481{bottom:936.720000px;}
.y17_c00481{bottom:937.440000px;}
.y14_c00481{bottom:938.160000px;}
.y18_c00481{bottom:938.880000px;}
.yd_c00481{bottom:977.040000px;}
.yc_c00481{bottom:978.480000px;}
.y10_c00481{bottom:979.200000px;}
.yf_c00481{bottom:980.640000px;}
.ye_c00481{bottom:981.360000px;}
.y11_c00481{bottom:982.080000px;}
.y9_c00481{bottom:1013.040000px;}
.y7_c00481{bottom:1020.240000px;}
.y6_c00481{bottom:1021.680000px;}
.y8_c00481{bottom:1023.120000px;}
.yb_c00481{bottom:1023.840000px;}
.ya_c00481{bottom:1024.560000px;}
.y3_c00481{bottom:1063.440000px;}
.y2_c00481{bottom:1064.880000px;}
.y5_c00481{bottom:1065.600000px;}
.y4_c00481{bottom:1067.040000px;}
.y1_c00481{bottom:1105.920000px;}
.h5_c00481{height:31.100625px;}
.h11_c00481{height:33.692344px;}
.hc_c00481{height:41.467500px;}
.h7_c00481{height:44.059219px;}
.h9_c00481{height:46.650937px;}
.h8_c00481{height:49.242656px;}
.he_c00481{height:51.834375px;}
.hf_c00481{height:52.410938px;}
.h3_c00481{height:54.426094px;}
.h6_c00481{height:57.017812px;}
.hd_c00481{height:59.032969px;}
.h10_c00481{height:59.609531px;}
.ha_c00481{height:62.201250px;}
.h4_c00481{height:64.792969px;}
.h2_c00481{height:67.384687px;}
.hb_c00481{height:90.710156px;}
.h1_c00481{height:1168.500000px;}
.h0_c00481{height:1168.560000px;}
.w1_c00481{width:766.500000px;}
.w0_c00481{width:766.800000px;}
.x0_c00481{left:0.000000px;}
.x2_c00481{left:45.360000px;}
.x3_c00481{left:120.240000px;}
.x29_c00481{left:164.880000px;}
.xd_c00481{left:205.920000px;}
.x4_c00481{left:207.360000px;}
.x1d_c00481{left:218.880000px;}
.x1f_c00481{left:228.240000px;}
.x18_c00481{left:230.400000px;}
.x5_c00481{left:250.560000px;}
.x21_c00481{left:262.080000px;}
.x1e_c00481{left:273.600000px;}
.x1a_c00481{left:294.480000px;}
.xe_c00481{left:304.560000px;}
.x2a_c00481{left:316.800000px;}
.x20_c00481{left:326.880000px;}
.x1b_c00481{left:338.400000px;}
.x2e_c00481{left:349.920000px;}
.x22_c00481{left:393.120000px;}
.x6_c00481{left:412.560000px;}
.x23_c00481{left:446.400000px;}
.x7_c00481{left:455.760000px;}
.x2b_c00481{left:457.920000px;}
.x2d_c00481{left:468.720000px;}
.xf_c00481{left:477.360000px;}
.x12_c00481{left:522.720000px;}
.x26_c00481{left:524.160000px;}
.x8_c00481{left:532.080000px;}
.x2c_c00481{left:534.240000px;}
.x9_c00481{left:552.960000px;}
.x10_c00481{left:554.400000px;}
.x16_c00481{left:555.840000px;}
.x13_c00481{left:574.560000px;}
.x27_c00481{left:576.720000px;}
.xa_c00481{left:608.400000px;}
.x15_c00481{left:609.840000px;}
.x24_c00481{left:611.280000px;}
.xb_c00481{left:642.240000px;}
.x17_c00481{left:643.680000px;}
.x1c_c00481{left:653.040000px;}
.x28_c00481{left:654.480000px;}
.x14_c00481{left:674.640000px;}
.x1_c00481{left:676.080000px;}
.x11_c00481{left:684.720000px;}
.x19_c00481{left:686.160000px;}
.xc_c00481{left:705.600000px;}
.x25_c00481{left:707.760000px;}
@media print{
.v1_c00481{vertical-align:-5.120000pt;}
.v0_c00481{vertical-align:0.000000pt;}
.v2_c00481{vertical-align:5.120000pt;}
.ls0_c00481{letter-spacing:0.000000pt;}
.ws1_c00481{word-spacing:-4.104107pt;}
.ws5_c00481{word-spacing:0.000000pt;}
.ws2_c00481{word-spacing:14.054400pt;}
.ws3_c00481{word-spacing:14.449067pt;}
.ws4_c00481{word-spacing:43.515095pt;}
.ws0_c00481{word-spacing:45.627633pt;}
.fs3_c00481{font-size:30.720000pt;}
.fsd_c00481{font-size:33.280000pt;}
.fsa_c00481{font-size:40.960000pt;}
.fs5_c00481{font-size:43.520000pt;}
.fs7_c00481{font-size:46.080000pt;}
.fs6_c00481{font-size:48.640000pt;}
.fsb_c00481{font-size:51.200000pt;}
.fs1_c00481{font-size:53.760000pt;}
.fs4_c00481{font-size:56.320000pt;}
.fsc_c00481{font-size:58.880000pt;}
.fs8_c00481{font-size:61.440000pt;}
.fs2_c00481{font-size:64.000000pt;}
.fs0_c00481{font-size:66.560000pt;}
.fs9_c00481{font-size:89.600000pt;}
.y0_c00481{bottom:0.000000pt;}
.y84_c00481{bottom:27.520000pt;}
.y86_c00481{bottom:28.800000pt;}
.y83_c00481{bottom:30.720000pt;}
.y85_c00481{bottom:31.360000pt;}
.y88_c00481{bottom:32.640000pt;}
.y87_c00481{bottom:33.280000pt;}
.y82_c00481{bottom:60.800000pt;}
.y7e_c00481{bottom:65.920000pt;}
.y7f_c00481{bottom:66.560000pt;}
.y7c_c00481{bottom:67.200000pt;}
.y80_c00481{bottom:68.480000pt;}
.y7d_c00481{bottom:69.760000pt;}
.y81_c00481{bottom:70.400000pt;}
.y7a_c00481{bottom:104.960000pt;}
.y79_c00481{bottom:106.880000pt;}
.y7b_c00481{bottom:108.800000pt;}
.y75_c00481{bottom:142.720000pt;}
.y77_c00481{bottom:144.640000pt;}
.y74_c00481{bottom:145.280000pt;}
.y78_c00481{bottom:146.560000pt;}
.y76_c00481{bottom:147.200000pt;}
.y6f_c00481{bottom:181.120000pt;}
.y72_c00481{bottom:182.400000pt;}
.y6e_c00481{bottom:183.040000pt;}
.y71_c00481{bottom:183.680000pt;}
.y70_c00481{bottom:184.960000pt;}
.y73_c00481{bottom:185.600000pt;}
.y69_c00481{bottom:218.880000pt;}
.y6a_c00481{bottom:219.520000pt;}
.y68_c00481{bottom:220.800000pt;}
.y6d_c00481{bottom:221.440000pt;}
.y6b_c00481{bottom:223.360000pt;}
.y6c_c00481{bottom:224.000000pt;}
.y63_c00481{bottom:257.280000pt;}
.y65_c00481{bottom:258.560000pt;}
.y62_c00481{bottom:259.840000pt;}
.y67_c00481{bottom:260.480000pt;}
.y64_c00481{bottom:261.120000pt;}
.y66_c00481{bottom:261.760000pt;}
.y5d_c00481{bottom:295.680000pt;}
.y5f_c00481{bottom:296.960000pt;}
.y5c_c00481{bottom:298.240000pt;}
.y5e_c00481{bottom:299.520000pt;}
.y60_c00481{bottom:300.160000pt;}
.y61_c00481{bottom:300.800000pt;}
.y56_c00481{bottom:334.080000pt;}
.y58_c00481{bottom:334.720000pt;}
.y55_c00481{bottom:336.000000pt;}
.y5a_c00481{bottom:336.640000pt;}
.y5b_c00481{bottom:337.280000pt;}
.y57_c00481{bottom:337.920000pt;}
.y59_c00481{bottom:338.560000pt;}
.y51_c00481{bottom:372.480000pt;}
.y53_c00481{bottom:373.120000pt;}
.y50_c00481{bottom:374.400000pt;}
.y52_c00481{bottom:375.680000pt;}
.y54_c00481{bottom:377.600000pt;}
.y4b_c00481{bottom:410.880000pt;}
.y4c_c00481{bottom:411.520000pt;}
.y4a_c00481{bottom:412.800000pt;}
.y4e_c00481{bottom:413.440000pt;}
.y4d_c00481{bottom:414.720000pt;}
.y4f_c00481{bottom:416.000000pt;}
.y45_c00481{bottom:449.280000pt;}
.y44_c00481{bottom:451.200000pt;}
.y48_c00481{bottom:451.840000pt;}
.y49_c00481{bottom:452.480000pt;}
.y46_c00481{bottom:453.120000pt;}
.y47_c00481{bottom:453.760000pt;}
.y3f_c00481{bottom:487.040000pt;}
.y3e_c00481{bottom:488.960000pt;}
.y42_c00481{bottom:489.600000pt;}
.y43_c00481{bottom:490.240000pt;}
.y41_c00481{bottom:490.880000pt;}
.y40_c00481{bottom:491.520000pt;}
.y3b_c00481{bottom:525.440000pt;}
.y3a_c00481{bottom:528.000000pt;}
.y3c_c00481{bottom:529.280000pt;}
.y3d_c00481{bottom:530.560000pt;}
.y37_c00481{bottom:563.840000pt;}
.y36_c00481{bottom:565.760000pt;}
.y39_c00481{bottom:566.400000pt;}
.y38_c00481{bottom:567.040000pt;}
.y31_c00481{bottom:601.600000pt;}
.y30_c00481{bottom:602.880000pt;}
.y33_c00481{bottom:603.520000pt;}
.y34_c00481{bottom:604.160000pt;}
.y32_c00481{bottom:605.440000pt;}
.y35_c00481{bottom:606.720000pt;}
.y2c_c00481{bottom:639.360000pt;}
.y2b_c00481{bottom:641.280000pt;}
.y2e_c00481{bottom:641.920000pt;}
.y2f_c00481{bottom:642.560000pt;}
.y2d_c00481{bottom:643.200000pt;}
.y27_c00481{bottom:677.120000pt;}
.y26_c00481{bottom:679.040000pt;}
.y29_c00481{bottom:680.320000pt;}
.y28_c00481{bottom:680.960000pt;}
.y2a_c00481{bottom:682.240000pt;}
.y23_c00481{bottom:715.520000pt;}
.y22_c00481{bottom:717.440000pt;}
.y24_c00481{bottom:718.720000pt;}
.y25_c00481{bottom:720.000000pt;}
.y1e_c00481{bottom:755.200000pt;}
.y20_c00481{bottom:755.840000pt;}
.y1f_c00481{bottom:757.120000pt;}
.y21_c00481{bottom:757.760000pt;}
.y1a_c00481{bottom:791.680000pt;}
.y19_c00481{bottom:793.600000pt;}
.y1c_c00481{bottom:794.240000pt;}
.y1d_c00481{bottom:794.880000pt;}
.y1b_c00481{bottom:795.520000pt;}
.y13_c00481{bottom:830.080000pt;}
.y12_c00481{bottom:831.360000pt;}
.y16_c00481{bottom:832.000000pt;}
.y15_c00481{bottom:832.640000pt;}
.y17_c00481{bottom:833.280000pt;}
.y14_c00481{bottom:833.920000pt;}
.y18_c00481{bottom:834.560000pt;}
.yd_c00481{bottom:868.480000pt;}
.yc_c00481{bottom:869.760000pt;}
.y10_c00481{bottom:870.400000pt;}
.yf_c00481{bottom:871.680000pt;}
.ye_c00481{bottom:872.320000pt;}
.y11_c00481{bottom:872.960000pt;}
.y9_c00481{bottom:900.480000pt;}
.y7_c00481{bottom:906.880000pt;}
.y6_c00481{bottom:908.160000pt;}
.y8_c00481{bottom:909.440000pt;}
.yb_c00481{bottom:910.080000pt;}
.ya_c00481{bottom:910.720000pt;}
.y3_c00481{bottom:945.280000pt;}
.y2_c00481{bottom:946.560000pt;}
.y5_c00481{bottom:947.200000pt;}
.y4_c00481{bottom:948.480000pt;}
.y1_c00481{bottom:983.040000pt;}
.h5_c00481{height:27.645000pt;}
.h11_c00481{height:29.948750pt;}
.hc_c00481{height:36.860000pt;}
.h7_c00481{height:39.163750pt;}
.h9_c00481{height:41.467500pt;}
.h8_c00481{height:43.771250pt;}
.he_c00481{height:46.075000pt;}
.hf_c00481{height:46.587500pt;}
.h3_c00481{height:48.378750pt;}
.h6_c00481{height:50.682500pt;}
.hd_c00481{height:52.473750pt;}
.h10_c00481{height:52.986250pt;}
.ha_c00481{height:55.290000pt;}
.h4_c00481{height:57.593750pt;}
.h2_c00481{height:59.897500pt;}
.hb_c00481{height:80.631250pt;}
.h1_c00481{height:1038.666667pt;}
.h0_c00481{height:1038.720000pt;}
.w1_c00481{width:681.333333pt;}
.w0_c00481{width:681.600000pt;}
.x0_c00481{left:0.000000pt;}
.x2_c00481{left:40.320000pt;}
.x3_c00481{left:106.880000pt;}
.x29_c00481{left:146.560000pt;}
.xd_c00481{left:183.040000pt;}
.x4_c00481{left:184.320000pt;}
.x1d_c00481{left:194.560000pt;}
.x1f_c00481{left:202.880000pt;}
.x18_c00481{left:204.800000pt;}
.x5_c00481{left:222.720000pt;}
.x21_c00481{left:232.960000pt;}
.x1e_c00481{left:243.200000pt;}
.x1a_c00481{left:261.760000pt;}
.xe_c00481{left:270.720000pt;}
.x2a_c00481{left:281.600000pt;}
.x20_c00481{left:290.560000pt;}
.x1b_c00481{left:300.800000pt;}
.x2e_c00481{left:311.040000pt;}
.x22_c00481{left:349.440000pt;}
.x6_c00481{left:366.720000pt;}
.x23_c00481{left:396.800000pt;}
.x7_c00481{left:405.120000pt;}
.x2b_c00481{left:407.040000pt;}
.x2d_c00481{left:416.640000pt;}
.xf_c00481{left:424.320000pt;}
.x12_c00481{left:464.640000pt;}
.x26_c00481{left:465.920000pt;}
.x8_c00481{left:472.960000pt;}
.x2c_c00481{left:474.880000pt;}
.x9_c00481{left:491.520000pt;}
.x10_c00481{left:492.800000pt;}
.x16_c00481{left:494.080000pt;}
.x13_c00481{left:510.720000pt;}
.x27_c00481{left:512.640000pt;}
.xa_c00481{left:540.800000pt;}
.x15_c00481{left:542.080000pt;}
.x24_c00481{left:543.360000pt;}
.xb_c00481{left:570.880000pt;}
.x17_c00481{left:572.160000pt;}
.x1c_c00481{left:580.480000pt;}
.x28_c00481{left:581.760000pt;}
.x14_c00481{left:599.680000pt;}
.x1_c00481{left:600.960000pt;}
.x11_c00481{left:608.640000pt;}
.x19_c00481{left:609.920000pt;}
.xc_c00481{left:627.200000pt;}
.x25_c00481{left:629.120000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3722bee29b5136a14dc029ec.woff2')format("woff");}.ff1_c00482{font-family:ff1_c00482;line-height:1.109863;font-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_c00482{transform:matrix(0.167975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167975,0.000000,0.000000,0.250000,0,0);}
.m3d_c00482{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m38_c00482{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m39_c00482{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.mb_c00482{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m4_c00482{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m28_c00482{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00482{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);}
.m2b_c00482{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m34_c00482{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m2_c00482{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00482{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m31_c00482{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m16_c00482{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_c00482{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m6_c00482{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m10_c00482{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m20_c00482{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m8_c00482{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m29_c00482{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.md_c00482{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m7_c00482{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m42_c00482{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m14_c00482{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m22_c00482{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m43_c00482{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m12_c00482{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00482{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m9_c00482{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m33_c00482{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);}
.m45_c00482{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00482{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00482{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m5_c00482{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);}
.m2e_c00482{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_c00482{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m35_c00482{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);}
.m13_c00482{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m44_c00482{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m0_c00482{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00482{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m1_c00482{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m32_c00482{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m11_c00482{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.mc_c00482{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);}
.m2a_c00482{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m47_c00482{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);}
.m36_c00482{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m37_c00482{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m30_c00482{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m41_c00482{transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00482{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m23_c00482{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.ma_c00482{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);}
.me_c00482{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m46_c00482{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);}
.m2c_c00482{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m18_c00482{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00482{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00482{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m15_c00482{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00482{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);}
.m26_c00482{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m48_c00482{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m19_c00482{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m3_c00482{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m21_c00482{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m17_c00482{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m24_c00482{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m27_c00482{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00482{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);}
.m2d_c00482{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);}
.m3b_c00482{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.v3_c00482{vertical-align:-2.880000px;}
.v0_c00482{vertical-align:0.000000px;}
.v2_c00482{vertical-align:5.760000px;}
.v1_c00482{vertical-align:17.280000px;}
.ls0_c00482{letter-spacing:0.000000px;}
.sc__c00482{text-shadow:none;}
.sc0_c00482{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00482{-webkit-text-stroke:0px transparent;}
.sc0_c00482{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00482{word-spacing:0.000000px;}
.ws2_c00482{word-spacing:12.931073px;}
.ws6_c00482{word-spacing:13.012800px;}
.ws1_c00482{word-spacing:15.879600px;}
.ws4_c00482{word-spacing:15.881057px;}
.ws3_c00482{word-spacing:18.405600px;}
.ws5_c00482{word-spacing:212.931600px;}
.ws0_c00482{word-spacing:342.547200px;}
.fc0_c00482{color:transparent;}
.fsa_c00482{font-size:5.760000px;}
.fs9_c00482{font-size:34.560000px;}
.fsb_c00482{font-size:43.200000px;}
.fs8_c00482{font-size:46.080000px;}
.fs2_c00482{font-size:48.960000px;}
.fs6_c00482{font-size:51.840000px;}
.fs4_c00482{font-size:54.720000px;}
.fs1_c00482{font-size:57.600000px;}
.fs5_c00482{font-size:60.480000px;}
.fsc_c00482{font-size:63.360000px;}
.fsd_c00482{font-size:66.240000px;}
.fs7_c00482{font-size:69.120000px;}
.fs0_c00482{font-size:72.000000px;}
.fs3_c00482{font-size:74.880000px;}
.fse_c00482{font-size:112.320000px;}
.y0_c00482{bottom:0.000000px;}
.y75_c00482{bottom:40.320000px;}
.y74_c00482{bottom:41.040000px;}
.y73_c00482{bottom:41.760000px;}
.y76_c00482{bottom:42.480000px;}
.y80_c00482{bottom:43.200000px;}
.y7f_c00482{bottom:43.920000px;}
.y71_c00482{bottom:83.520000px;}
.y70_c00482{bottom:84.960000px;}
.y72_c00482{bottom:85.680000px;}
.y7e_c00482{bottom:87.120000px;}
.y6e_c00482{bottom:126.000000px;}
.y6d_c00482{bottom:126.720000px;}
.y6c_c00482{bottom:127.440000px;}
.y6f_c00482{bottom:128.880000px;}
.y7d_c00482{bottom:130.320000px;}
.y69_c00482{bottom:169.920000px;}
.y68_c00482{bottom:170.640000px;}
.y7c_c00482{bottom:171.360000px;}
.y6a_c00482{bottom:172.080000px;}
.y6b_c00482{bottom:172.800000px;}
.y66_c00482{bottom:212.400000px;}
.y65_c00482{bottom:213.120000px;}
.y7b_c00482{bottom:213.840000px;}
.y7a_c00482{bottom:214.560000px;}
.y67_c00482{bottom:215.280000px;}
.y63_c00482{bottom:255.600000px;}
.y62_c00482{bottom:256.320000px;}
.y77_c00482{bottom:257.040000px;}
.y64_c00482{bottom:258.480000px;}
.y5f_c00482{bottom:298.800000px;}
.y5e_c00482{bottom:299.520000px;}
.y61_c00482{bottom:300.240000px;}
.y79_c00482{bottom:300.960000px;}
.y60_c00482{bottom:302.400000px;}
.y5c_c00482{bottom:331.200000px;}
.y5b_c00482{bottom:340.560000px;}
.y5a_c00482{bottom:342.000000px;}
.y59_c00482{bottom:342.720000px;}
.y5d_c00482{bottom:343.440000px;}
.y4d_c00482{bottom:383.760000px;}
.y4c_c00482{bottom:384.480000px;}
.y4a_c00482{bottom:385.200000px;}
.y78_c00482{bottom:385.920000px;}
.y4b_c00482{bottom:387.360000px;}
.y58_c00482{bottom:388.080000px;}
.y49_c00482{bottom:426.240000px;}
.y47_c00482{bottom:427.680000px;}
.y46_c00482{bottom:428.400000px;}
.y57_c00482{bottom:429.120000px;}
.y48_c00482{bottom:429.840000px;}
.y43_c00482{bottom:468.720000px;}
.y45_c00482{bottom:470.160000px;}
.y42_c00482{bottom:470.880000px;}
.y56_c00482{bottom:471.600000px;}
.y44_c00482{bottom:473.040000px;}
.y40_c00482{bottom:511.920000px;}
.y41_c00482{bottom:513.360000px;}
.y3f_c00482{bottom:514.080000px;}
.y55_c00482{bottom:515.520000px;}
.y3e_c00482{bottom:555.840000px;}
.y3c_c00482{bottom:556.560000px;}
.y3d_c00482{bottom:558.720000px;}
.y38_c00482{bottom:586.800000px;}
.y37_c00482{bottom:588.240000px;}
.y3a_c00482{bottom:588.960000px;}
.y3b_c00482{bottom:589.680000px;}
.y39_c00482{bottom:590.400000px;}
.y32_c00482{bottom:629.280000px;}
.y34_c00482{bottom:631.440000px;}
.y31_c00482{bottom:632.160000px;}
.y36_c00482{bottom:632.880000px;}
.y35_c00482{bottom:633.600000px;}
.y33_c00482{bottom:634.320000px;}
.y2b_c00482{bottom:673.200000px;}
.y2d_c00482{bottom:674.640000px;}
.y2a_c00482{bottom:675.360000px;}
.y30_c00482{bottom:676.080000px;}
.y2c_c00482{bottom:676.800000px;}
.y54_c00482{bottom:677.520000px;}
.y27_c00482{bottom:717.120000px;}
.y29_c00482{bottom:719.280000px;}
.y28_c00482{bottom:720.000000px;}
.y24_c00482{bottom:748.800000px;}
.y26_c00482{bottom:749.520000px;}
.y23_c00482{bottom:750.240000px;}
.y2f_c00482{bottom:750.960000px;}
.y25_c00482{bottom:752.400000px;}
.y53_c00482{bottom:753.120000px;}
.y22_c00482{bottom:762.480000px;}
.y21_c00482{bottom:771.120000px;}
.y1e_c00482{bottom:792.720000px;}
.y1f_c00482{bottom:794.880000px;}
.y20_c00482{bottom:795.600000px;}
.y1b_c00482{bottom:823.680000px;}
.y1d_c00482{bottom:824.400000px;}
.y1a_c00482{bottom:825.120000px;}
.y2e_c00482{bottom:825.840000px;}
.y1c_c00482{bottom:827.280000px;}
.y51_c00482{bottom:828.000000px;}
.y52_c00482{bottom:828.720000px;}
.y19_c00482{bottom:867.600000px;}
.y18_c00482{bottom:870.480000px;}
.y14_c00482{bottom:898.560000px;}
.y16_c00482{bottom:899.280000px;}
.y13_c00482{bottom:900.000000px;}
.y17_c00482{bottom:900.720000px;}
.y15_c00482{bottom:902.160000px;}
.y11_c00482{bottom:940.320000px;}
.y10_c00482{bottom:941.040000px;}
.ye_c00482{bottom:942.480000px;}
.y12_c00482{bottom:943.200000px;}
.y4f_c00482{bottom:943.920000px;}
.yf_c00482{bottom:945.360000px;}
.y50_c00482{bottom:946.080000px;}
.ya_c00482{bottom:983.520000px;}
.yc_c00482{bottom:984.240000px;}
.yb_c00482{bottom:985.680000px;}
.y9_c00482{bottom:986.400000px;}
.y4e_c00482{bottom:987.840000px;}
.yd_c00482{bottom:988.560000px;}
.y8_c00482{bottom:1026.720000px;}
.y7_c00482{bottom:1027.440000px;}
.y6_c00482{bottom:1028.160000px;}
.y5_c00482{bottom:1058.400000px;}
.y3_c00482{bottom:1059.120000px;}
.y2_c00482{bottom:1060.560000px;}
.y4_c00482{bottom:1062.720000px;}
.y1_c00482{bottom:1109.520000px;}
.hd_c00482{height:5.183438px;}
.hc_c00482{height:31.100625px;}
.hf_c00482{height:38.875781px;}
.ha_c00482{height:41.467500px;}
.h4_c00482{height:44.059219px;}
.h8_c00482{height:46.650937px;}
.h6_c00482{height:49.242656px;}
.h3_c00482{height:51.834375px;}
.h7_c00482{height:54.426094px;}
.he_c00482{height:55.002656px;}
.h10_c00482{height:57.017812px;}
.h11_c00482{height:59.609531px;}
.h9_c00482{height:62.201250px;}
.h2_c00482{height:64.792969px;}
.h5_c00482{height:67.384687px;}
.hb_c00482{height:69.114375px;}
.h12_c00482{height:101.077031px;}
.h0_c00482{height:1170.720000px;}
.h1_c00482{height:1170.750000px;}
.w1_c00482{width:768.750000px;}
.w0_c00482{width:768.960000px;}
.x0_c00482{left:0.000000px;}
.x2_c00482{left:39.600000px;}
.x27_c00482{left:41.040000px;}
.x3_c00482{left:114.480000px;}
.x16_c00482{left:115.920000px;}
.xb_c00482{left:118.080000px;}
.x1a_c00482{left:148.320000px;}
.xc_c00482{left:169.200000px;}
.x26_c00482{left:170.640000px;}
.x11_c00482{left:180.720000px;}
.x17_c00482{left:201.600000px;}
.x29_c00482{left:203.040000px;}
.x1b_c00482{left:213.120000px;}
.xd_c00482{left:223.920000px;}
.x23_c00482{left:246.240000px;}
.x18_c00482{left:257.040000px;}
.x1c_c00482{left:267.120000px;}
.x30_c00482{left:268.560000px;}
.x4_c00482{left:288.720000px;}
.xe_c00482{left:298.800000px;}
.x24_c00482{left:300.240000px;}
.x12_c00482{left:310.320000px;}
.x28_c00482{left:311.760000px;}
.x1d_c00482{left:321.840000px;}
.x5_c00482{left:342.000000px;}
.x13_c00482{left:343.440000px;}
.xf_c00482{left:352.800000px;}
.x20_c00482{left:365.040000px;}
.x34_c00482{left:366.480000px;}
.x19_c00482{left:375.120000px;}
.x31_c00482{left:376.560000px;}
.x1e_c00482{left:385.920000px;}
.x14_c00482{left:396.720000px;}
.x21_c00482{left:419.760000px;}
.x32_c00482{left:432.000000px;}
.x25_c00482{left:440.640000px;}
.x15_c00482{left:451.440000px;}
.x33_c00482{left:473.760000px;}
.x10_c00482{left:516.960000px;}
.x22_c00482{left:518.400000px;}
.x6_c00482{left:527.040000px;}
.x7_c00482{left:548.640000px;}
.x1f_c00482{left:550.080000px;}
.x2f_c00482{left:570.960000px;}
.x8_c00482{left:603.360000px;}
.x2a_c00482{left:604.800000px;}
.x36_c00482{left:606.240000px;}
.x9_c00482{left:636.480000px;}
.x2c_c00482{left:637.920000px;}
.x35_c00482{left:639.360000px;}
.x2e_c00482{left:671.040000px;}
.xa_c00482{left:678.960000px;}
.x1_c00482{left:680.400000px;}
.x2d_c00482{left:681.840000px;}
.x2b_c00482{left:701.280000px;}
@media print{
.v3_c00482{vertical-align:-2.560000pt;}
.v0_c00482{vertical-align:0.000000pt;}
.v2_c00482{vertical-align:5.120000pt;}
.v1_c00482{vertical-align:15.360000pt;}
.ls0_c00482{letter-spacing:0.000000pt;}
.ws7_c00482{word-spacing:0.000000pt;}
.ws2_c00482{word-spacing:11.494287pt;}
.ws6_c00482{word-spacing:11.566933pt;}
.ws1_c00482{word-spacing:14.115200pt;}
.ws4_c00482{word-spacing:14.116495pt;}
.ws3_c00482{word-spacing:16.360533pt;}
.ws5_c00482{word-spacing:189.272533pt;}
.ws0_c00482{word-spacing:304.486400pt;}
.fsa_c00482{font-size:5.120000pt;}
.fs9_c00482{font-size:30.720000pt;}
.fsb_c00482{font-size:38.400000pt;}
.fs8_c00482{font-size:40.960000pt;}
.fs2_c00482{font-size:43.520000pt;}
.fs6_c00482{font-size:46.080000pt;}
.fs4_c00482{font-size:48.640000pt;}
.fs1_c00482{font-size:51.200000pt;}
.fs5_c00482{font-size:53.760000pt;}
.fsc_c00482{font-size:56.320000pt;}
.fsd_c00482{font-size:58.880000pt;}
.fs7_c00482{font-size:61.440000pt;}
.fs0_c00482{font-size:64.000000pt;}
.fs3_c00482{font-size:66.560000pt;}
.fse_c00482{font-size:99.840000pt;}
.y0_c00482{bottom:0.000000pt;}
.y75_c00482{bottom:35.840000pt;}
.y74_c00482{bottom:36.480000pt;}
.y73_c00482{bottom:37.120000pt;}
.y76_c00482{bottom:37.760000pt;}
.y80_c00482{bottom:38.400000pt;}
.y7f_c00482{bottom:39.040000pt;}
.y71_c00482{bottom:74.240000pt;}
.y70_c00482{bottom:75.520000pt;}
.y72_c00482{bottom:76.160000pt;}
.y7e_c00482{bottom:77.440000pt;}
.y6e_c00482{bottom:112.000000pt;}
.y6d_c00482{bottom:112.640000pt;}
.y6c_c00482{bottom:113.280000pt;}
.y6f_c00482{bottom:114.560000pt;}
.y7d_c00482{bottom:115.840000pt;}
.y69_c00482{bottom:151.040000pt;}
.y68_c00482{bottom:151.680000pt;}
.y7c_c00482{bottom:152.320000pt;}
.y6a_c00482{bottom:152.960000pt;}
.y6b_c00482{bottom:153.600000pt;}
.y66_c00482{bottom:188.800000pt;}
.y65_c00482{bottom:189.440000pt;}
.y7b_c00482{bottom:190.080000pt;}
.y7a_c00482{bottom:190.720000pt;}
.y67_c00482{bottom:191.360000pt;}
.y63_c00482{bottom:227.200000pt;}
.y62_c00482{bottom:227.840000pt;}
.y77_c00482{bottom:228.480000pt;}
.y64_c00482{bottom:229.760000pt;}
.y5f_c00482{bottom:265.600000pt;}
.y5e_c00482{bottom:266.240000pt;}
.y61_c00482{bottom:266.880000pt;}
.y79_c00482{bottom:267.520000pt;}
.y60_c00482{bottom:268.800000pt;}
.y5c_c00482{bottom:294.400000pt;}
.y5b_c00482{bottom:302.720000pt;}
.y5a_c00482{bottom:304.000000pt;}
.y59_c00482{bottom:304.640000pt;}
.y5d_c00482{bottom:305.280000pt;}
.y4d_c00482{bottom:341.120000pt;}
.y4c_c00482{bottom:341.760000pt;}
.y4a_c00482{bottom:342.400000pt;}
.y78_c00482{bottom:343.040000pt;}
.y4b_c00482{bottom:344.320000pt;}
.y58_c00482{bottom:344.960000pt;}
.y49_c00482{bottom:378.880000pt;}
.y47_c00482{bottom:380.160000pt;}
.y46_c00482{bottom:380.800000pt;}
.y57_c00482{bottom:381.440000pt;}
.y48_c00482{bottom:382.080000pt;}
.y43_c00482{bottom:416.640000pt;}
.y45_c00482{bottom:417.920000pt;}
.y42_c00482{bottom:418.560000pt;}
.y56_c00482{bottom:419.200000pt;}
.y44_c00482{bottom:420.480000pt;}
.y40_c00482{bottom:455.040000pt;}
.y41_c00482{bottom:456.320000pt;}
.y3f_c00482{bottom:456.960000pt;}
.y55_c00482{bottom:458.240000pt;}
.y3e_c00482{bottom:494.080000pt;}
.y3c_c00482{bottom:494.720000pt;}
.y3d_c00482{bottom:496.640000pt;}
.y38_c00482{bottom:521.600000pt;}
.y37_c00482{bottom:522.880000pt;}
.y3a_c00482{bottom:523.520000pt;}
.y3b_c00482{bottom:524.160000pt;}
.y39_c00482{bottom:524.800000pt;}
.y32_c00482{bottom:559.360000pt;}
.y34_c00482{bottom:561.280000pt;}
.y31_c00482{bottom:561.920000pt;}
.y36_c00482{bottom:562.560000pt;}
.y35_c00482{bottom:563.200000pt;}
.y33_c00482{bottom:563.840000pt;}
.y2b_c00482{bottom:598.400000pt;}
.y2d_c00482{bottom:599.680000pt;}
.y2a_c00482{bottom:600.320000pt;}
.y30_c00482{bottom:600.960000pt;}
.y2c_c00482{bottom:601.600000pt;}
.y54_c00482{bottom:602.240000pt;}
.y27_c00482{bottom:637.440000pt;}
.y29_c00482{bottom:639.360000pt;}
.y28_c00482{bottom:640.000000pt;}
.y24_c00482{bottom:665.600000pt;}
.y26_c00482{bottom:666.240000pt;}
.y23_c00482{bottom:666.880000pt;}
.y2f_c00482{bottom:667.520000pt;}
.y25_c00482{bottom:668.800000pt;}
.y53_c00482{bottom:669.440000pt;}
.y22_c00482{bottom:677.760000pt;}
.y21_c00482{bottom:685.440000pt;}
.y1e_c00482{bottom:704.640000pt;}
.y1f_c00482{bottom:706.560000pt;}
.y20_c00482{bottom:707.200000pt;}
.y1b_c00482{bottom:732.160000pt;}
.y1d_c00482{bottom:732.800000pt;}
.y1a_c00482{bottom:733.440000pt;}
.y2e_c00482{bottom:734.080000pt;}
.y1c_c00482{bottom:735.360000pt;}
.y51_c00482{bottom:736.000000pt;}
.y52_c00482{bottom:736.640000pt;}
.y19_c00482{bottom:771.200000pt;}
.y18_c00482{bottom:773.760000pt;}
.y14_c00482{bottom:798.720000pt;}
.y16_c00482{bottom:799.360000pt;}
.y13_c00482{bottom:800.000000pt;}
.y17_c00482{bottom:800.640000pt;}
.y15_c00482{bottom:801.920000pt;}
.y11_c00482{bottom:835.840000pt;}
.y10_c00482{bottom:836.480000pt;}
.ye_c00482{bottom:837.760000pt;}
.y12_c00482{bottom:838.400000pt;}
.y4f_c00482{bottom:839.040000pt;}
.yf_c00482{bottom:840.320000pt;}
.y50_c00482{bottom:840.960000pt;}
.ya_c00482{bottom:874.240000pt;}
.yc_c00482{bottom:874.880000pt;}
.yb_c00482{bottom:876.160000pt;}
.y9_c00482{bottom:876.800000pt;}
.y4e_c00482{bottom:878.080000pt;}
.yd_c00482{bottom:878.720000pt;}
.y8_c00482{bottom:912.640000pt;}
.y7_c00482{bottom:913.280000pt;}
.y6_c00482{bottom:913.920000pt;}
.y5_c00482{bottom:940.800000pt;}
.y3_c00482{bottom:941.440000pt;}
.y2_c00482{bottom:942.720000pt;}
.y4_c00482{bottom:944.640000pt;}
.y1_c00482{bottom:986.240000pt;}
.hd_c00482{height:4.607500pt;}
.hc_c00482{height:27.645000pt;}
.hf_c00482{height:34.556250pt;}
.ha_c00482{height:36.860000pt;}
.h4_c00482{height:39.163750pt;}
.h8_c00482{height:41.467500pt;}
.h6_c00482{height:43.771250pt;}
.h3_c00482{height:46.075000pt;}
.h7_c00482{height:48.378750pt;}
.he_c00482{height:48.891250pt;}
.h10_c00482{height:50.682500pt;}
.h11_c00482{height:52.986250pt;}
.h9_c00482{height:55.290000pt;}
.h2_c00482{height:57.593750pt;}
.h5_c00482{height:59.897500pt;}
.hb_c00482{height:61.435000pt;}
.h12_c00482{height:89.846250pt;}
.h0_c00482{height:1040.640000pt;}
.h1_c00482{height:1040.666667pt;}
.w1_c00482{width:683.333333pt;}
.w0_c00482{width:683.520000pt;}
.x0_c00482{left:0.000000pt;}
.x2_c00482{left:35.200000pt;}
.x27_c00482{left:36.480000pt;}
.x3_c00482{left:101.760000pt;}
.x16_c00482{left:103.040000pt;}
.xb_c00482{left:104.960000pt;}
.x1a_c00482{left:131.840000pt;}
.xc_c00482{left:150.400000pt;}
.x26_c00482{left:151.680000pt;}
.x11_c00482{left:160.640000pt;}
.x17_c00482{left:179.200000pt;}
.x29_c00482{left:180.480000pt;}
.x1b_c00482{left:189.440000pt;}
.xd_c00482{left:199.040000pt;}
.x23_c00482{left:218.880000pt;}
.x18_c00482{left:228.480000pt;}
.x1c_c00482{left:237.440000pt;}
.x30_c00482{left:238.720000pt;}
.x4_c00482{left:256.640000pt;}
.xe_c00482{left:265.600000pt;}
.x24_c00482{left:266.880000pt;}
.x12_c00482{left:275.840000pt;}
.x28_c00482{left:277.120000pt;}
.x1d_c00482{left:286.080000pt;}
.x5_c00482{left:304.000000pt;}
.x13_c00482{left:305.280000pt;}
.xf_c00482{left:313.600000pt;}
.x20_c00482{left:324.480000pt;}
.x34_c00482{left:325.760000pt;}
.x19_c00482{left:333.440000pt;}
.x31_c00482{left:334.720000pt;}
.x1e_c00482{left:343.040000pt;}
.x14_c00482{left:352.640000pt;}
.x21_c00482{left:373.120000pt;}
.x32_c00482{left:384.000000pt;}
.x25_c00482{left:391.680000pt;}
.x15_c00482{left:401.280000pt;}
.x33_c00482{left:421.120000pt;}
.x10_c00482{left:459.520000pt;}
.x22_c00482{left:460.800000pt;}
.x6_c00482{left:468.480000pt;}
.x7_c00482{left:487.680000pt;}
.x1f_c00482{left:488.960000pt;}
.x2f_c00482{left:507.520000pt;}
.x8_c00482{left:536.320000pt;}
.x2a_c00482{left:537.600000pt;}
.x36_c00482{left:538.880000pt;}
.x9_c00482{left:565.760000pt;}
.x2c_c00482{left:567.040000pt;}
.x35_c00482{left:568.320000pt;}
.x2e_c00482{left:596.480000pt;}
.xa_c00482{left:603.520000pt;}
.x1_c00482{left:604.800000pt;}
.x2d_c00482{left:606.080000pt;}
.x2b_c00482{left:623.360000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3b431ff5d53dcb1bfd7b0437.woff2')format("woff");}.ff1_c00483{font-family:ff1_c00483;line-height:1.109863;font-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.194100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194100,0.000000,0.000000,0.250000,0,0);}
.m0_c00483{transform:matrix(0.233800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233800,0.000000,0.000000,0.250000,0,0);}
.m30_c00483{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m29_c00483{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m9_c00483{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_c00483{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_c00483{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.ma_c00483{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);}
.m33_c00483{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00483{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m45_c00483{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m11_c00483{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);}
.m3f_c00483{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m10_c00483{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00483{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00483{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.me_c00483{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m37_c00483{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m8_c00483{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.mf_c00483{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00483{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m15_c00483{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m7_c00483{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m47_c00483{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m40_c00483{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00483{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m3_c00483{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m13_c00483{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m16_c00483{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);}
.m36_c00483{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);}
.m2f_c00483{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m25_c00483{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);}
.m32_c00483{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m18_c00483{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m19_c00483{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00483{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);}
.m28_c00483{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m20_c00483{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m2_c00483{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m35_c00483{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);}
.md_c00483{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);}
.m24_c00483{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00483{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00483{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.mb_c00483{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);}
.m41_c00483{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m31_c00483{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);}
.m14_c00483{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m17_c00483{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m6_c00483{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m12_c00483{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);}
.m22_c00483{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m39_c00483{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00483{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);}
.m43_c00483{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m38_c00483{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m26_c00483{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00483{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m34_c00483{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m4_c00483{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m42_c00483{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);}
.m3d_c00483{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m46_c00483{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.mc_c00483{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m5_c00483{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m27_c00483{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00483{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00483{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m44_c00483{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);}
.m3b_c00483{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m23_c00483{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00483{transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);}
.v0_c00483{vertical-align:0.000000px;}
.ls0_c00483{letter-spacing:0.000000px;}
.sc__c00483{text-shadow:none;}
.sc0_c00483{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00483{-webkit-text-stroke:0px transparent;}
.sc0_c00483{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00483{word-spacing:0.000000px;}
.ws0_c00483{word-spacing:58.828487px;}
.fc0_c00483{color:transparent;}
.fs9_c00483{font-size:34.560000px;}
.fsb_c00483{font-size:43.200000px;}
.fs4_c00483{font-size:46.080000px;}
.fs5_c00483{font-size:48.960000px;}
.fs7_c00483{font-size:51.840000px;}
.fs6_c00483{font-size:54.720000px;}
.fs2_c00483{font-size:57.600000px;}
.fs3_c00483{font-size:60.480000px;}
.fs8_c00483{font-size:63.360000px;}
.fsa_c00483{font-size:66.240000px;}
.fsc_c00483{font-size:69.120000px;}
.fs0_c00483{font-size:72.000000px;}
.fs1_c00483{font-size:74.880000px;}
.y0_c00483{bottom:0.000000px;}
.y65_c00483{bottom:33.120000px;}
.y60_c00483{bottom:61.920000px;}
.y61_c00483{bottom:62.640000px;}
.y64_c00483{bottom:63.360000px;}
.y62_c00483{bottom:64.800000px;}
.y63_c00483{bottom:65.520000px;}
.y5f_c00483{bottom:108.000000px;}
.y5b_c00483{bottom:137.520000px;}
.y5a_c00483{bottom:138.240000px;}
.y59_c00483{bottom:138.960000px;}
.y5d_c00483{bottom:139.680000px;}
.y5c_c00483{bottom:141.120000px;}
.y5e_c00483{bottom:141.840000px;}
.y58_c00483{bottom:183.600000px;}
.y54_c00483{bottom:213.120000px;}
.y53_c00483{bottom:213.840000px;}
.y57_c00483{bottom:214.560000px;}
.y55_c00483{bottom:215.280000px;}
.y56_c00483{bottom:216.000000px;}
.y52_c00483{bottom:258.480000px;}
.y4f_c00483{bottom:288.000000px;}
.y4e_c00483{bottom:288.720000px;}
.y50_c00483{bottom:290.160000px;}
.y51_c00483{bottom:290.880000px;}
.y4c_c00483{bottom:330.480000px;}
.y4a_c00483{bottom:331.200000px;}
.y49_c00483{bottom:331.920000px;}
.y4b_c00483{bottom:333.360000px;}
.y4d_c00483{bottom:334.080000px;}
.y48_c00483{bottom:376.560000px;}
.y44_c00483{bottom:406.080000px;}
.y43_c00483{bottom:406.800000px;}
.y46_c00483{bottom:408.240000px;}
.y45_c00483{bottom:408.960000px;}
.y47_c00483{bottom:409.680000px;}
.y3f_c00483{bottom:449.280000px;}
.y3e_c00483{bottom:450.000000px;}
.y42_c00483{bottom:450.720000px;}
.y40_c00483{bottom:451.440000px;}
.y41_c00483{bottom:452.160000px;}
.y3a_c00483{bottom:492.480000px;}
.y39_c00483{bottom:493.200000px;}
.y3b_c00483{bottom:493.920000px;}
.y3c_c00483{bottom:495.360000px;}
.y3d_c00483{bottom:496.080000px;}
.y36_c00483{bottom:534.960000px;}
.y34_c00483{bottom:535.680000px;}
.y35_c00483{bottom:536.400000px;}
.y38_c00483{bottom:537.120000px;}
.y37_c00483{bottom:538.560000px;}
.y32_c00483{bottom:578.880000px;}
.y33_c00483{bottom:581.760000px;}
.y2e_c00483{bottom:611.280000px;}
.y30_c00483{bottom:612.000000px;}
.y2f_c00483{bottom:613.440000px;}
.y31_c00483{bottom:614.880000px;}
.y2d_c00483{bottom:653.760000px;}
.y2c_c00483{bottom:656.640000px;}
.y28_c00483{bottom:686.160000px;}
.y2a_c00483{bottom:686.880000px;}
.y2b_c00483{bottom:687.600000px;}
.y29_c00483{bottom:689.040000px;}
.y27_c00483{bottom:730.800000px;}
.y22_c00483{bottom:761.040000px;}
.y25_c00483{bottom:761.760000px;}
.y26_c00483{bottom:762.480000px;}
.y23_c00483{bottom:763.200000px;}
.y24_c00483{bottom:763.920000px;}
.y20_c00483{bottom:803.520000px;}
.y21_c00483{bottom:806.400000px;}
.y1c_c00483{bottom:835.920000px;}
.y1e_c00483{bottom:836.640000px;}
.y1d_c00483{bottom:838.080000px;}
.y1f_c00483{bottom:839.520000px;}
.y1a_c00483{bottom:877.680000px;}
.y19_c00483{bottom:878.400000px;}
.y18_c00483{bottom:879.120000px;}
.y1b_c00483{bottom:880.560000px;}
.y13_c00483{bottom:920.880000px;}
.y17_c00483{bottom:921.600000px;}
.y15_c00483{bottom:922.320000px;}
.y14_c00483{bottom:923.040000px;}
.y16_c00483{bottom:924.480000px;}
.yf_c00483{bottom:964.080000px;}
.y12_c00483{bottom:964.800000px;}
.y11_c00483{bottom:965.520000px;}
.y10_c00483{bottom:966.960000px;}
.ya_c00483{bottom:1006.560000px;}
.yd_c00483{bottom:1007.280000px;}
.y9_c00483{bottom:1008.000000px;}
.yc_c00483{bottom:1008.720000px;}
.yb_c00483{bottom:1009.440000px;}
.ye_c00483{bottom:1010.880000px;}
.y4_c00483{bottom:1049.760000px;}
.y3_c00483{bottom:1050.480000px;}
.y6_c00483{bottom:1051.200000px;}
.y8_c00483{bottom:1051.920000px;}
.y5_c00483{bottom:1052.640000px;}
.y7_c00483{bottom:1053.360000px;}
.y2_c00483{bottom:1100.160000px;}
.y1_c00483{bottom:1101.600000px;}
.hb_c00483{height:31.100625px;}
.hd_c00483{height:38.875781px;}
.h6_c00483{height:41.467500px;}
.h7_c00483{height:44.059219px;}
.h9_c00483{height:46.650937px;}
.h8_c00483{height:49.242656px;}
.h4_c00483{height:51.834375px;}
.h5_c00483{height:54.426094px;}
.ha_c00483{height:57.017812px;}
.hc_c00483{height:59.609531px;}
.he_c00483{height:62.201250px;}
.h2_c00483{height:64.792969px;}
.h3_c00483{height:67.384687px;}
.h1_c00483{height:1166.250000px;}
.h0_c00483{height:1166.400000px;}
.w0_c00483{width:762.480000px;}
.w1_c00483{width:762.750000px;}
.x0_c00483{left:0.000000px;}
.x3_c00483{left:26.640000px;}
.x24_c00483{left:28.080000px;}
.x1d_c00483{left:102.240000px;}
.x4_c00483{left:103.680000px;}
.x14_c00483{left:135.360000px;}
.x23_c00483{left:146.880000px;}
.x15_c00483{left:157.680000px;}
.x5_c00483{left:189.360000px;}
.x1a_c00483{left:200.160000px;}
.x6_c00483{left:243.360000px;}
.x10_c00483{left:254.880000px;}
.x7_c00483{left:296.640000px;}
.xe_c00483{left:298.080000px;}
.x2a_c00483{left:299.520000px;}
.x11_c00483{left:308.880000px;}
.x25_c00483{left:310.320000px;}
.x16_c00483{left:341.280000px;}
.x29_c00483{left:364.320000px;}
.x1e_c00483{left:395.280000px;}
.x26_c00483{left:406.080000px;}
.x1b_c00483{left:427.680000px;}
.x12_c00483{left:437.760000px;}
.x2d_c00483{left:439.920000px;}
.x17_c00483{left:449.280000px;}
.x1f_c00483{left:460.080000px;}
.x27_c00483{left:461.520000px;}
.x21_c00483{left:482.400000px;}
.x8_c00483{left:503.280000px;}
.x1c_c00483{left:504.720000px;}
.x2b_c00483{left:506.160000px;}
.x19_c00483{left:557.280000px;}
.x28_c00483{left:558.720000px;}
.x9_c00483{left:590.400000px;}
.x13_c00483{left:591.840000px;}
.xc_c00483{left:623.520000px;}
.x20_c00483{left:624.960000px;}
.x2c_c00483{left:626.400000px;}
.xa_c00483{left:633.600000px;}
.xf_c00483{left:656.640000px;}
.xb_c00483{left:666.720000px;}
.x22_c00483{left:668.160000px;}
.x2e_c00483{left:669.600000px;}
.x1_c00483{left:673.920000px;}
.xd_c00483{left:686.880000px;}
.x18_c00483{left:688.320000px;}
.x2_c00483{left:691.920000px;}
@media print{
.v0_c00483{vertical-align:0.000000pt;}
.ls0_c00483{letter-spacing:0.000000pt;}
.ws1_c00483{word-spacing:0.000000pt;}
.ws0_c00483{word-spacing:52.291988pt;}
.fs9_c00483{font-size:30.720000pt;}
.fsb_c00483{font-size:38.400000pt;}
.fs4_c00483{font-size:40.960000pt;}
.fs5_c00483{font-size:43.520000pt;}
.fs7_c00483{font-size:46.080000pt;}
.fs6_c00483{font-size:48.640000pt;}
.fs2_c00483{font-size:51.200000pt;}
.fs3_c00483{font-size:53.760000pt;}
.fs8_c00483{font-size:56.320000pt;}
.fsa_c00483{font-size:58.880000pt;}
.fsc_c00483{font-size:61.440000pt;}
.fs0_c00483{font-size:64.000000pt;}
.fs1_c00483{font-size:66.560000pt;}
.y0_c00483{bottom:0.000000pt;}
.y65_c00483{bottom:29.440000pt;}
.y60_c00483{bottom:55.040000pt;}
.y61_c00483{bottom:55.680000pt;}
.y64_c00483{bottom:56.320000pt;}
.y62_c00483{bottom:57.600000pt;}
.y63_c00483{bottom:58.240000pt;}
.y5f_c00483{bottom:96.000000pt;}
.y5b_c00483{bottom:122.240000pt;}
.y5a_c00483{bottom:122.880000pt;}
.y59_c00483{bottom:123.520000pt;}
.y5d_c00483{bottom:124.160000pt;}
.y5c_c00483{bottom:125.440000pt;}
.y5e_c00483{bottom:126.080000pt;}
.y58_c00483{bottom:163.200000pt;}
.y54_c00483{bottom:189.440000pt;}
.y53_c00483{bottom:190.080000pt;}
.y57_c00483{bottom:190.720000pt;}
.y55_c00483{bottom:191.360000pt;}
.y56_c00483{bottom:192.000000pt;}
.y52_c00483{bottom:229.760000pt;}
.y4f_c00483{bottom:256.000000pt;}
.y4e_c00483{bottom:256.640000pt;}
.y50_c00483{bottom:257.920000pt;}
.y51_c00483{bottom:258.560000pt;}
.y4c_c00483{bottom:293.760000pt;}
.y4a_c00483{bottom:294.400000pt;}
.y49_c00483{bottom:295.040000pt;}
.y4b_c00483{bottom:296.320000pt;}
.y4d_c00483{bottom:296.960000pt;}
.y48_c00483{bottom:334.720000pt;}
.y44_c00483{bottom:360.960000pt;}
.y43_c00483{bottom:361.600000pt;}
.y46_c00483{bottom:362.880000pt;}
.y45_c00483{bottom:363.520000pt;}
.y47_c00483{bottom:364.160000pt;}
.y3f_c00483{bottom:399.360000pt;}
.y3e_c00483{bottom:400.000000pt;}
.y42_c00483{bottom:400.640000pt;}
.y40_c00483{bottom:401.280000pt;}
.y41_c00483{bottom:401.920000pt;}
.y3a_c00483{bottom:437.760000pt;}
.y39_c00483{bottom:438.400000pt;}
.y3b_c00483{bottom:439.040000pt;}
.y3c_c00483{bottom:440.320000pt;}
.y3d_c00483{bottom:440.960000pt;}
.y36_c00483{bottom:475.520000pt;}
.y34_c00483{bottom:476.160000pt;}
.y35_c00483{bottom:476.800000pt;}
.y38_c00483{bottom:477.440000pt;}
.y37_c00483{bottom:478.720000pt;}
.y32_c00483{bottom:514.560000pt;}
.y33_c00483{bottom:517.120000pt;}
.y2e_c00483{bottom:543.360000pt;}
.y30_c00483{bottom:544.000000pt;}
.y2f_c00483{bottom:545.280000pt;}
.y31_c00483{bottom:546.560000pt;}
.y2d_c00483{bottom:581.120000pt;}
.y2c_c00483{bottom:583.680000pt;}
.y28_c00483{bottom:609.920000pt;}
.y2a_c00483{bottom:610.560000pt;}
.y2b_c00483{bottom:611.200000pt;}
.y29_c00483{bottom:612.480000pt;}
.y27_c00483{bottom:649.600000pt;}
.y22_c00483{bottom:676.480000pt;}
.y25_c00483{bottom:677.120000pt;}
.y26_c00483{bottom:677.760000pt;}
.y23_c00483{bottom:678.400000pt;}
.y24_c00483{bottom:679.040000pt;}
.y20_c00483{bottom:714.240000pt;}
.y21_c00483{bottom:716.800000pt;}
.y1c_c00483{bottom:743.040000pt;}
.y1e_c00483{bottom:743.680000pt;}
.y1d_c00483{bottom:744.960000pt;}
.y1f_c00483{bottom:746.240000pt;}
.y1a_c00483{bottom:780.160000pt;}
.y19_c00483{bottom:780.800000pt;}
.y18_c00483{bottom:781.440000pt;}
.y1b_c00483{bottom:782.720000pt;}
.y13_c00483{bottom:818.560000pt;}
.y17_c00483{bottom:819.200000pt;}
.y15_c00483{bottom:819.840000pt;}
.y14_c00483{bottom:820.480000pt;}
.y16_c00483{bottom:821.760000pt;}
.yf_c00483{bottom:856.960000pt;}
.y12_c00483{bottom:857.600000pt;}
.y11_c00483{bottom:858.240000pt;}
.y10_c00483{bottom:859.520000pt;}
.ya_c00483{bottom:894.720000pt;}
.yd_c00483{bottom:895.360000pt;}
.y9_c00483{bottom:896.000000pt;}
.yc_c00483{bottom:896.640000pt;}
.yb_c00483{bottom:897.280000pt;}
.ye_c00483{bottom:898.560000pt;}
.y4_c00483{bottom:933.120000pt;}
.y3_c00483{bottom:933.760000pt;}
.y6_c00483{bottom:934.400000pt;}
.y8_c00483{bottom:935.040000pt;}
.y5_c00483{bottom:935.680000pt;}
.y7_c00483{bottom:936.320000pt;}
.y2_c00483{bottom:977.920000pt;}
.y1_c00483{bottom:979.200000pt;}
.hb_c00483{height:27.645000pt;}
.hd_c00483{height:34.556250pt;}
.h6_c00483{height:36.860000pt;}
.h7_c00483{height:39.163750pt;}
.h9_c00483{height:41.467500pt;}
.h8_c00483{height:43.771250pt;}
.h4_c00483{height:46.075000pt;}
.h5_c00483{height:48.378750pt;}
.ha_c00483{height:50.682500pt;}
.hc_c00483{height:52.986250pt;}
.he_c00483{height:55.290000pt;}
.h2_c00483{height:57.593750pt;}
.h3_c00483{height:59.897500pt;}
.h1_c00483{height:1036.666667pt;}
.h0_c00483{height:1036.800000pt;}
.w0_c00483{width:677.760000pt;}
.w1_c00483{width:678.000000pt;}
.x0_c00483{left:0.000000pt;}
.x3_c00483{left:23.680000pt;}
.x24_c00483{left:24.960000pt;}
.x1d_c00483{left:90.880000pt;}
.x4_c00483{left:92.160000pt;}
.x14_c00483{left:120.320000pt;}
.x23_c00483{left:130.560000pt;}
.x15_c00483{left:140.160000pt;}
.x5_c00483{left:168.320000pt;}
.x1a_c00483{left:177.920000pt;}
.x6_c00483{left:216.320000pt;}
.x10_c00483{left:226.560000pt;}
.x7_c00483{left:263.680000pt;}
.xe_c00483{left:264.960000pt;}
.x2a_c00483{left:266.240000pt;}
.x11_c00483{left:274.560000pt;}
.x25_c00483{left:275.840000pt;}
.x16_c00483{left:303.360000pt;}
.x29_c00483{left:323.840000pt;}
.x1e_c00483{left:351.360000pt;}
.x26_c00483{left:360.960000pt;}
.x1b_c00483{left:380.160000pt;}
.x12_c00483{left:389.120000pt;}
.x2d_c00483{left:391.040000pt;}
.x17_c00483{left:399.360000pt;}
.x1f_c00483{left:408.960000pt;}
.x27_c00483{left:410.240000pt;}
.x21_c00483{left:428.800000pt;}
.x8_c00483{left:447.360000pt;}
.x1c_c00483{left:448.640000pt;}
.x2b_c00483{left:449.920000pt;}
.x19_c00483{left:495.360000pt;}
.x28_c00483{left:496.640000pt;}
.x9_c00483{left:524.800000pt;}
.x13_c00483{left:526.080000pt;}
.xc_c00483{left:554.240000pt;}
.x20_c00483{left:555.520000pt;}
.x2c_c00483{left:556.800000pt;}
.xa_c00483{left:563.200000pt;}
.xf_c00483{left:583.680000pt;}
.xb_c00483{left:592.640000pt;}
.x22_c00483{left:593.920000pt;}
.x2e_c00483{left:595.200000pt;}
.x1_c00483{left:599.040000pt;}
.xd_c00483{left:610.560000pt;}
.x18_c00483{left:611.840000pt;}
.x2_c00483{left:615.040000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d70d64e98d0db8f4450918c5.woff2')format("woff");}.ff1_c00484{font-family:ff1_c00484;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m34_c00484{transform:matrix(0.155775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155775,0.000000,0.000000,0.250000,0,0);}
.m31_c00484{transform:matrix(0.160075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160075,0.000000,0.000000,0.250000,0,0);}
.m39_c00484{transform:matrix(0.176150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176150,0.000000,0.000000,0.250000,0,0);}
.m37_c00484{transform:matrix(0.188400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188400,0.000000,0.000000,0.250000,0,0);}
.m3b_c00484{transform:matrix(0.214050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214050,0.000000,0.000000,0.250000,0,0);}
.m4b_c00484{transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);}
.m50_c00484{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m49_c00484{transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);}
.m3e_c00484{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m11_c00484{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m19_c00484{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);}
.m4f_c00484{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_c00484{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m21_c00484{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_c00484{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);}
.m46_c00484{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mf_c00484{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m16_c00484{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m6_c00484{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.me_c00484{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00484{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mc_c00484{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.md_c00484{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00484{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m9_c00484{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3_c00484{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m40_c00484{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00484{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00484{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00484{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m22_c00484{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m0_c00484{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m12_c00484{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);}
.m47_c00484{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_c00484{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00484{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);}
.m45_c00484{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00484{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m1_c00484{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m35_c00484{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m33_c00484{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);}
.m1d_c00484{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m7_c00484{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00484{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m38_c00484{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);}
.m51_c00484{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_c00484{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m36_c00484{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);}
.m27_c00484{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);}
.m28_c00484{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00484{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m32_c00484{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);}
.m2c_c00484{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m30_c00484{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_c00484{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00484{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m26_c00484{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m44_c00484{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m48_c00484{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);}
.m2_c00484{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m29_c00484{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00484{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m25_c00484{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00484{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_c00484{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m4_c00484{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m43_c00484{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);}
.m15_c00484{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m17_c00484{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);}
.m41_c00484{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);}
.m5_c00484{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00484{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m20_c00484{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.ma_c00484{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00484{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);}
.m23_c00484{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);}
.mb_c00484{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m53_c00484{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);}
.m14_c00484{transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00484{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m52_c00484{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m10_c00484{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m42_c00484{transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00484{transform:matrix(1.065000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.065000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.065000,0.000000,0.000000,0.250000,0,0);}
.v0_c00484{vertical-align:0.000000px;}
.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;}
}
.ws3_c00484{word-spacing:0.000000px;}
.ws0_c00484{word-spacing:1.891572px;}
.ws1_c00484{word-spacing:11.693143px;}
.ws2_c00484{word-spacing:34.255578px;}
.fc0_c00484{color:transparent;}
.fs11_c00484{font-size:28.800000px;}
.fs8_c00484{font-size:34.560000px;}
.fs4_c00484{font-size:37.440000px;}
.fsb_c00484{font-size:40.320000px;}
.fsa_c00484{font-size:46.080000px;}
.fs7_c00484{font-size:48.960000px;}
.fs1_c00484{font-size:51.840000px;}
.fs9_c00484{font-size:54.720000px;}
.fs5_c00484{font-size:57.600000px;}
.fs6_c00484{font-size:60.480000px;}
.fs2_c00484{font-size:63.360000px;}
.fs0_c00484{font-size:66.240000px;}
.fs3_c00484{font-size:69.120000px;}
.fs10_c00484{font-size:72.000000px;}
.fsf_c00484{font-size:74.880000px;}
.fse_c00484{font-size:77.760000px;}
.fsd_c00484{font-size:92.160000px;}
.fsc_c00484{font-size:95.040000px;}
.y0_c00484{bottom:0.000000px;}
.y6d_c00484{bottom:43.200000px;}
.y6e_c00484{bottom:43.920000px;}
.y79_c00484{bottom:45.360000px;}
.y6b_c00484{bottom:46.080000px;}
.y6c_c00484{bottom:46.800000px;}
.y78_c00484{bottom:47.520000px;}
.y69_c00484{bottom:85.680000px;}
.y6a_c00484{bottom:86.400000px;}
.y76_c00484{bottom:87.840000px;}
.y68_c00484{bottom:89.280000px;}
.y77_c00484{bottom:90.720000px;}
.y66_c00484{bottom:128.880000px;}
.y67_c00484{bottom:129.600000px;}
.y65_c00484{bottom:131.040000px;}
.y74_c00484{bottom:131.760000px;}
.y75_c00484{bottom:133.200000px;}
.y64_c00484{bottom:172.080000px;}
.y72_c00484{bottom:174.240000px;}
.y63_c00484{bottom:174.960000px;}
.y73_c00484{bottom:176.400000px;}
.y62_c00484{bottom:214.560000px;}
.y70_c00484{bottom:216.000000px;}
.y60_c00484{bottom:217.440000px;}
.y71_c00484{bottom:218.160000px;}
.y61_c00484{bottom:218.880000px;}
.y6f_c00484{bottom:219.600000px;}
.y5d_c00484{bottom:257.760000px;}
.y5f_c00484{bottom:259.920000px;}
.y5b_c00484{bottom:260.640000px;}
.y5c_c00484{bottom:262.080000px;}
.y5e_c00484{bottom:262.800000px;}
.y5a_c00484{bottom:300.960000px;}
.y58_c00484{bottom:303.120000px;}
.y57_c00484{bottom:303.840000px;}
.y59_c00484{bottom:305.280000px;}
.y53_c00484{bottom:345.600000px;}
.y56_c00484{bottom:346.320000px;}
.y52_c00484{bottom:347.040000px;}
.y55_c00484{bottom:347.760000px;}
.y54_c00484{bottom:348.480000px;}
.y46_c00484{bottom:388.080000px;}
.y45_c00484{bottom:388.800000px;}
.y44_c00484{bottom:389.520000px;}
.y48_c00484{bottom:390.240000px;}
.y47_c00484{bottom:390.960000px;}
.y51_c00484{bottom:391.680000px;}
.y42_c00484{bottom:423.360000px;}
.y41_c00484{bottom:432.000000px;}
.y43_c00484{bottom:432.720000px;}
.y50_c00484{bottom:433.440000px;}
.y4f_c00484{bottom:434.880000px;}
.y40_c00484{bottom:466.560000px;}
.y3f_c00484{bottom:474.480000px;}
.y3e_c00484{bottom:475.200000px;}
.y4e_c00484{bottom:476.640000px;}
.y3d_c00484{bottom:509.040000px;}
.y3c_c00484{bottom:516.960000px;}
.y3b_c00484{bottom:517.680000px;}
.y4c_c00484{bottom:518.400000px;}
.y4d_c00484{bottom:519.840000px;}
.y39_c00484{bottom:551.520000px;}
.y38_c00484{bottom:559.440000px;}
.y3a_c00484{bottom:560.160000px;}
.y36_c00484{bottom:560.880000px;}
.y37_c00484{bottom:561.600000px;}
.y4b_c00484{bottom:562.320000px;}
.y35_c00484{bottom:594.000000px;}
.y34_c00484{bottom:602.640000px;}
.y33_c00484{bottom:603.360000px;}
.y4a_c00484{bottom:604.800000px;}
.y31_c00484{bottom:645.120000px;}
.y32_c00484{bottom:647.280000px;}
.y30_c00484{bottom:648.000000px;}
.y2e_c00484{bottom:676.800000px;}
.y2c_c00484{bottom:677.520000px;}
.y2f_c00484{bottom:678.960000px;}
.y2d_c00484{bottom:679.680000px;}
.y2a_c00484{bottom:720.000000px;}
.y29_c00484{bottom:722.160000px;}
.y2b_c00484{bottom:722.880000px;}
.y27_c00484{bottom:751.680000px;}
.y25_c00484{bottom:752.400000px;}
.y28_c00484{bottom:753.120000px;}
.y26_c00484{bottom:754.560000px;}
.y49_c00484{bottom:755.280000px;}
.y23_c00484{bottom:794.880000px;}
.y22_c00484{bottom:795.600000px;}
.y24_c00484{bottom:797.040000px;}
.y1f_c00484{bottom:827.280000px;}
.y1e_c00484{bottom:828.000000px;}
.y21_c00484{bottom:828.720000px;}
.y20_c00484{bottom:829.440000px;}
.y1d_c00484{bottom:862.560000px;}
.y17_c00484{bottom:870.480000px;}
.y1a_c00484{bottom:871.200000px;}
.y1c_c00484{bottom:871.920000px;}
.y19_c00484{bottom:872.640000px;}
.y18_c00484{bottom:873.360000px;}
.y1b_c00484{bottom:874.080000px;}
.y16_c00484{bottom:905.040000px;}
.y13_c00484{bottom:913.680000px;}
.y15_c00484{bottom:914.400000px;}
.y14_c00484{bottom:915.840000px;}
.y12_c00484{bottom:948.240000px;}
.yf_c00484{bottom:955.440000px;}
.yc_c00484{bottom:956.160000px;}
.yd_c00484{bottom:956.880000px;}
.y10_c00484{bottom:957.600000px;}
.ye_c00484{bottom:958.320000px;}
.y11_c00484{bottom:959.760000px;}
.y5_c00484{bottom:998.640000px;}
.y9_c00484{bottom:999.360000px;}
.yb_c00484{bottom:1000.080000px;}
.y7_c00484{bottom:1000.800000px;}
.y6_c00484{bottom:1001.520000px;}
.y8_c00484{bottom:1002.240000px;}
.y3_c00484{bottom:1041.120000px;}
.y1_c00484{bottom:1041.840000px;}
.ya_c00484{bottom:1042.560000px;}
.y4_c00484{bottom:1043.280000px;}
.y2_c00484{bottom:1044.000000px;}
.h13_c00484{height:25.917187px;}
.ha_c00484{height:31.100625px;}
.h6_c00484{height:33.692344px;}
.hd_c00484{height:36.284062px;}
.hc_c00484{height:41.467500px;}
.h9_c00484{height:44.059219px;}
.h3_c00484{height:46.650937px;}
.hb_c00484{height:49.242656px;}
.h7_c00484{height:51.834375px;}
.h8_c00484{height:54.426094px;}
.h4_c00484{height:57.017812px;}
.h2_c00484{height:59.609531px;}
.h5_c00484{height:62.201250px;}
.h12_c00484{height:64.792969px;}
.h11_c00484{height:67.384687px;}
.h10_c00484{height:69.976406px;}
.hf_c00484{height:82.935000px;}
.he_c00484{height:85.526719px;}
.h0_c00484{height:1170.720000px;}
.h1_c00484{height:1170.750000px;}
.w1_c00484{width:769.500000px;}
.w0_c00484{width:769.680000px;}
.x0_c00484{left:0.000000px;}
.x1_c00484{left:49.680000px;}
.x25_c00484{left:51.120000px;}
.x26_c00484{left:105.840000px;}
.x2_c00484{left:125.280000px;}
.x1f_c00484{left:126.720000px;}
.x27_c00484{left:136.080000px;}
.x21_c00484{left:168.480000px;}
.x18_c00484{left:179.280000px;}
.x3_c00484{left:211.680000px;}
.x1c_c00484{left:213.120000px;}
.x24_c00484{left:223.200000px;}
.x28_c00484{left:234.720000px;}
.x8_c00484{left:265.680000px;}
.x4_c00484{left:276.480000px;}
.x10_c00484{left:320.400000px;}
.x14_c00484{left:330.480000px;}
.x1d_c00484{left:364.320000px;}
.x9_c00484{left:373.680000px;}
.x5_c00484{left:384.480000px;}
.x20_c00484{left:407.520000px;}
.x11_c00484{left:416.880000px;}
.xa_c00484{left:429.120000px;}
.x6_c00484{left:439.200000px;}
.x17_c00484{left:460.800000px;}
.xb_c00484{left:470.880000px;}
.x16_c00484{left:481.680000px;}
.x15_c00484{left:525.600000px;}
.x7_c00484{left:527.040000px;}
.x12_c00484{left:579.600000px;}
.x22_c00484{left:581.040000px;}
.xc_c00484{left:613.440000px;}
.x1b_c00484{left:614.880000px;}
.xd_c00484{left:645.840000px;}
.x19_c00484{left:647.280000px;}
.x13_c00484{left:656.640000px;}
.x29_c00484{left:658.080000px;}
.x1a_c00484{left:679.680000px;}
.xe_c00484{left:689.040000px;}
.x1e_c00484{left:690.480000px;}
.xf_c00484{left:709.200000px;}
.x23_c00484{left:710.640000px;}
@media print{
.v0_c00484{vertical-align:0.000000pt;}
.ls0_c00484{letter-spacing:0.000000pt;}
.ws3_c00484{word-spacing:0.000000pt;}
.ws0_c00484{word-spacing:1.681398pt;}
.ws1_c00484{word-spacing:10.393905pt;}
.ws2_c00484{word-spacing:30.449403pt;}
.fs11_c00484{font-size:25.600000pt;}
.fs8_c00484{font-size:30.720000pt;}
.fs4_c00484{font-size:33.280000pt;}
.fsb_c00484{font-size:35.840000pt;}
.fsa_c00484{font-size:40.960000pt;}
.fs7_c00484{font-size:43.520000pt;}
.fs1_c00484{font-size:46.080000pt;}
.fs9_c00484{font-size:48.640000pt;}
.fs5_c00484{font-size:51.200000pt;}
.fs6_c00484{font-size:53.760000pt;}
.fs2_c00484{font-size:56.320000pt;}
.fs0_c00484{font-size:58.880000pt;}
.fs3_c00484{font-size:61.440000pt;}
.fs10_c00484{font-size:64.000000pt;}
.fsf_c00484{font-size:66.560000pt;}
.fse_c00484{font-size:69.120000pt;}
.fsd_c00484{font-size:81.920000pt;}
.fsc_c00484{font-size:84.480000pt;}
.y0_c00484{bottom:0.000000pt;}
.y6d_c00484{bottom:38.400000pt;}
.y6e_c00484{bottom:39.040000pt;}
.y79_c00484{bottom:40.320000pt;}
.y6b_c00484{bottom:40.960000pt;}
.y6c_c00484{bottom:41.600000pt;}
.y78_c00484{bottom:42.240000pt;}
.y69_c00484{bottom:76.160000pt;}
.y6a_c00484{bottom:76.800000pt;}
.y76_c00484{bottom:78.080000pt;}
.y68_c00484{bottom:79.360000pt;}
.y77_c00484{bottom:80.640000pt;}
.y66_c00484{bottom:114.560000pt;}
.y67_c00484{bottom:115.200000pt;}
.y65_c00484{bottom:116.480000pt;}
.y74_c00484{bottom:117.120000pt;}
.y75_c00484{bottom:118.400000pt;}
.y64_c00484{bottom:152.960000pt;}
.y72_c00484{bottom:154.880000pt;}
.y63_c00484{bottom:155.520000pt;}
.y73_c00484{bottom:156.800000pt;}
.y62_c00484{bottom:190.720000pt;}
.y70_c00484{bottom:192.000000pt;}
.y60_c00484{bottom:193.280000pt;}
.y71_c00484{bottom:193.920000pt;}
.y61_c00484{bottom:194.560000pt;}
.y6f_c00484{bottom:195.200000pt;}
.y5d_c00484{bottom:229.120000pt;}
.y5f_c00484{bottom:231.040000pt;}
.y5b_c00484{bottom:231.680000pt;}
.y5c_c00484{bottom:232.960000pt;}
.y5e_c00484{bottom:233.600000pt;}
.y5a_c00484{bottom:267.520000pt;}
.y58_c00484{bottom:269.440000pt;}
.y57_c00484{bottom:270.080000pt;}
.y59_c00484{bottom:271.360000pt;}
.y53_c00484{bottom:307.200000pt;}
.y56_c00484{bottom:307.840000pt;}
.y52_c00484{bottom:308.480000pt;}
.y55_c00484{bottom:309.120000pt;}
.y54_c00484{bottom:309.760000pt;}
.y46_c00484{bottom:344.960000pt;}
.y45_c00484{bottom:345.600000pt;}
.y44_c00484{bottom:346.240000pt;}
.y48_c00484{bottom:346.880000pt;}
.y47_c00484{bottom:347.520000pt;}
.y51_c00484{bottom:348.160000pt;}
.y42_c00484{bottom:376.320000pt;}
.y41_c00484{bottom:384.000000pt;}
.y43_c00484{bottom:384.640000pt;}
.y50_c00484{bottom:385.280000pt;}
.y4f_c00484{bottom:386.560000pt;}
.y40_c00484{bottom:414.720000pt;}
.y3f_c00484{bottom:421.760000pt;}
.y3e_c00484{bottom:422.400000pt;}
.y4e_c00484{bottom:423.680000pt;}
.y3d_c00484{bottom:452.480000pt;}
.y3c_c00484{bottom:459.520000pt;}
.y3b_c00484{bottom:460.160000pt;}
.y4c_c00484{bottom:460.800000pt;}
.y4d_c00484{bottom:462.080000pt;}
.y39_c00484{bottom:490.240000pt;}
.y38_c00484{bottom:497.280000pt;}
.y3a_c00484{bottom:497.920000pt;}
.y36_c00484{bottom:498.560000pt;}
.y37_c00484{bottom:499.200000pt;}
.y4b_c00484{bottom:499.840000pt;}
.y35_c00484{bottom:528.000000pt;}
.y34_c00484{bottom:535.680000pt;}
.y33_c00484{bottom:536.320000pt;}
.y4a_c00484{bottom:537.600000pt;}
.y31_c00484{bottom:573.440000pt;}
.y32_c00484{bottom:575.360000pt;}
.y30_c00484{bottom:576.000000pt;}
.y2e_c00484{bottom:601.600000pt;}
.y2c_c00484{bottom:602.240000pt;}
.y2f_c00484{bottom:603.520000pt;}
.y2d_c00484{bottom:604.160000pt;}
.y2a_c00484{bottom:640.000000pt;}
.y29_c00484{bottom:641.920000pt;}
.y2b_c00484{bottom:642.560000pt;}
.y27_c00484{bottom:668.160000pt;}
.y25_c00484{bottom:668.800000pt;}
.y28_c00484{bottom:669.440000pt;}
.y26_c00484{bottom:670.720000pt;}
.y49_c00484{bottom:671.360000pt;}
.y23_c00484{bottom:706.560000pt;}
.y22_c00484{bottom:707.200000pt;}
.y24_c00484{bottom:708.480000pt;}
.y1f_c00484{bottom:735.360000pt;}
.y1e_c00484{bottom:736.000000pt;}
.y21_c00484{bottom:736.640000pt;}
.y20_c00484{bottom:737.280000pt;}
.y1d_c00484{bottom:766.720000pt;}
.y17_c00484{bottom:773.760000pt;}
.y1a_c00484{bottom:774.400000pt;}
.y1c_c00484{bottom:775.040000pt;}
.y19_c00484{bottom:775.680000pt;}
.y18_c00484{bottom:776.320000pt;}
.y1b_c00484{bottom:776.960000pt;}
.y16_c00484{bottom:804.480000pt;}
.y13_c00484{bottom:812.160000pt;}
.y15_c00484{bottom:812.800000pt;}
.y14_c00484{bottom:814.080000pt;}
.y12_c00484{bottom:842.880000pt;}
.yf_c00484{bottom:849.280000pt;}
.yc_c00484{bottom:849.920000pt;}
.yd_c00484{bottom:850.560000pt;}
.y10_c00484{bottom:851.200000pt;}
.ye_c00484{bottom:851.840000pt;}
.y11_c00484{bottom:853.120000pt;}
.y5_c00484{bottom:887.680000pt;}
.y9_c00484{bottom:888.320000pt;}
.yb_c00484{bottom:888.960000pt;}
.y7_c00484{bottom:889.600000pt;}
.y6_c00484{bottom:890.240000pt;}
.y8_c00484{bottom:890.880000pt;}
.y3_c00484{bottom:925.440000pt;}
.y1_c00484{bottom:926.080000pt;}
.ya_c00484{bottom:926.720000pt;}
.y4_c00484{bottom:927.360000pt;}
.y2_c00484{bottom:928.000000pt;}
.h13_c00484{height:23.037500pt;}
.ha_c00484{height:27.645000pt;}
.h6_c00484{height:29.948750pt;}
.hd_c00484{height:32.252500pt;}
.hc_c00484{height:36.860000pt;}
.h9_c00484{height:39.163750pt;}
.h3_c00484{height:41.467500pt;}
.hb_c00484{height:43.771250pt;}
.h7_c00484{height:46.075000pt;}
.h8_c00484{height:48.378750pt;}
.h4_c00484{height:50.682500pt;}
.h2_c00484{height:52.986250pt;}
.h5_c00484{height:55.290000pt;}
.h12_c00484{height:57.593750pt;}
.h11_c00484{height:59.897500pt;}
.h10_c00484{height:62.201250pt;}
.hf_c00484{height:73.720000pt;}
.he_c00484{height:76.023750pt;}
.h0_c00484{height:1040.640000pt;}
.h1_c00484{height:1040.666667pt;}
.w1_c00484{width:684.000000pt;}
.w0_c00484{width:684.160000pt;}
.x0_c00484{left:0.000000pt;}
.x1_c00484{left:44.160000pt;}
.x25_c00484{left:45.440000pt;}
.x26_c00484{left:94.080000pt;}
.x2_c00484{left:111.360000pt;}
.x1f_c00484{left:112.640000pt;}
.x27_c00484{left:120.960000pt;}
.x21_c00484{left:149.760000pt;}
.x18_c00484{left:159.360000pt;}
.x3_c00484{left:188.160000pt;}
.x1c_c00484{left:189.440000pt;}
.x24_c00484{left:198.400000pt;}
.x28_c00484{left:208.640000pt;}
.x8_c00484{left:236.160000pt;}
.x4_c00484{left:245.760000pt;}
.x10_c00484{left:284.800000pt;}
.x14_c00484{left:293.760000pt;}
.x1d_c00484{left:323.840000pt;}
.x9_c00484{left:332.160000pt;}
.x5_c00484{left:341.760000pt;}
.x20_c00484{left:362.240000pt;}
.x11_c00484{left:370.560000pt;}
.xa_c00484{left:381.440000pt;}
.x6_c00484{left:390.400000pt;}
.x17_c00484{left:409.600000pt;}
.xb_c00484{left:418.560000pt;}
.x16_c00484{left:428.160000pt;}
.x15_c00484{left:467.200000pt;}
.x7_c00484{left:468.480000pt;}
.x12_c00484{left:515.200000pt;}
.x22_c00484{left:516.480000pt;}
.xc_c00484{left:545.280000pt;}
.x1b_c00484{left:546.560000pt;}
.xd_c00484{left:574.080000pt;}
.x19_c00484{left:575.360000pt;}
.x13_c00484{left:583.680000pt;}
.x29_c00484{left:584.960000pt;}
.x1a_c00484{left:604.160000pt;}
.xe_c00484{left:612.480000pt;}
.x1e_c00484{left:613.760000pt;}
.xf_c00484{left:630.400000pt;}
.x23_c00484{left:631.680000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_50aa1a1031be66f11354fc6c.woff2')format("woff");}.ff1_c00485{font-family:ff1_c00485;line-height:1.109863;font-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_c00485{transform:matrix(0.191950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191950,0.000000,0.000000,0.250000,0,0);}
.mf_c00485{transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);}
.m37_c00485{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m9_c00485{transform:matrix(0.244350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244350,0.000000,0.000000,0.250000,0,0);}
.m24_c00485{transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);}
.m3d_c00485{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m10_c00485{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m11_c00485{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m19_c00485{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);}
.m3e_c00485{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m3_c00485{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);}
.m1b_c00485{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);}
.m32_c00485{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m5_c00485{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);}
.m3f_c00485{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m14_c00485{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00485{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m2_c00485{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.ma_c00485{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);}
.m36_c00485{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m4_c00485{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m17_c00485{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m21_c00485{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m16_c00485{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00485{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m6_c00485{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m18_c00485{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00485{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00485{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00485{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00485{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m20_c00485{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mc_c00485{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_c00485{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.mb_c00485{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m35_c00485{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);}
.m31_c00485{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m0_c00485{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);}
.m27_c00485{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m22_c00485{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m15_c00485{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);}
.m1f_c00485{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);}
.md_c00485{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m41_c00485{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m26_c00485{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);}
.m3a_c00485{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m1_c00485{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00485{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);}
.m28_c00485{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m30_c00485{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m8_c00485{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);}
.m13_c00485{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m40_c00485{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m12_c00485{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_c00485{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00485{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);}
.m33_c00485{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00485{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m29_c00485{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00485{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m38_c00485{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m34_c00485{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m39_c00485{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00485{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m23_c00485{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.m7_c00485{transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);}
.v2_c00485{vertical-align:-8.640000px;}
.v0_c00485{vertical-align:0.000000px;}
.v1_c00485{vertical-align:11.520000px;}
.ls1_c00485{letter-spacing:0.000000px;}
.ls0_c00485{letter-spacing:99.727680px;}
.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:-1.114560px;}
.ws2_c00485{word-spacing:0.000000px;}
.ws1_c00485{word-spacing:566.312640px;}
.fc0_c00485{color:transparent;}
.fse_c00485{font-size:34.560000px;}
.fsc_c00485{font-size:43.200000px;}
.fs7_c00485{font-size:46.080000px;}
.fs8_c00485{font-size:48.960000px;}
.fs6_c00485{font-size:51.840000px;}
.fs5_c00485{font-size:54.720000px;}
.fs1_c00485{font-size:57.600000px;}
.fsa_c00485{font-size:60.480000px;}
.fsb_c00485{font-size:63.360000px;}
.fs4_c00485{font-size:66.240000px;}
.fs9_c00485{font-size:69.120000px;}
.fs3_c00485{font-size:72.000000px;}
.fs2_c00485{font-size:74.880000px;}
.fs0_c00485{font-size:77.760000px;}
.fsd_c00485{font-size:106.560000px;}
.y0_c00485{bottom:0.000000px;}
.y86_c00485{bottom:66.240000px;}
.y87_c00485{bottom:66.960000px;}
.y85_c00485{bottom:67.680000px;}
.y89_c00485{bottom:68.400000px;}
.y88_c00485{bottom:70.560000px;}
.y7f_c00485{bottom:109.440000px;}
.y81_c00485{bottom:110.160000px;}
.y7e_c00485{bottom:110.880000px;}
.y83_c00485{bottom:111.600000px;}
.y82_c00485{bottom:112.320000px;}
.y80_c00485{bottom:113.760000px;}
.y84_c00485{bottom:114.480000px;}
.y78_c00485{bottom:152.640000px;}
.y7a_c00485{bottom:153.360000px;}
.y77_c00485{bottom:154.800000px;}
.y7b_c00485{bottom:155.520000px;}
.y79_c00485{bottom:156.240000px;}
.y7c_c00485{bottom:157.680000px;}
.y7d_c00485{bottom:158.400000px;}
.y74_c00485{bottom:195.840000px;}
.y75_c00485{bottom:197.280000px;}
.y73_c00485{bottom:198.000000px;}
.y76_c00485{bottom:199.440000px;}
.y6e_c00485{bottom:238.320000px;}
.y71_c00485{bottom:239.760000px;}
.y72_c00485{bottom:240.480000px;}
.y6d_c00485{bottom:241.200000px;}
.y6f_c00485{bottom:241.920000px;}
.y70_c00485{bottom:242.640000px;}
.y66_c00485{bottom:281.520000px;}
.y69_c00485{bottom:282.240000px;}
.y6c_c00485{bottom:282.960000px;}
.y6a_c00485{bottom:283.680000px;}
.y65_c00485{bottom:284.400000px;}
.y68_c00485{bottom:285.120000px;}
.y67_c00485{bottom:285.840000px;}
.y6b_c00485{bottom:286.560000px;}
.y62_c00485{bottom:324.720000px;}
.y61_c00485{bottom:326.160000px;}
.y63_c00485{bottom:329.040000px;}
.y64_c00485{bottom:329.760000px;}
.y5c_c00485{bottom:367.200000px;}
.y5e_c00485{bottom:367.920000px;}
.y5f_c00485{bottom:368.640000px;}
.y5b_c00485{bottom:369.360000px;}
.y5d_c00485{bottom:371.520000px;}
.y60_c00485{bottom:372.960000px;}
.y57_c00485{bottom:410.400000px;}
.y56_c00485{bottom:411.840000px;}
.y58_c00485{bottom:412.560000px;}
.y59_c00485{bottom:414.000000px;}
.y5a_c00485{bottom:416.160000px;}
.y54_c00485{bottom:453.600000px;}
.y53_c00485{bottom:455.040000px;}
.y55_c00485{bottom:455.760000px;}
.y4e_c00485{bottom:496.800000px;}
.y50_c00485{bottom:497.520000px;}
.y4d_c00485{bottom:498.240000px;}
.y51_c00485{bottom:498.960000px;}
.y4f_c00485{bottom:501.120000px;}
.y52_c00485{bottom:502.560000px;}
.y47_c00485{bottom:540.000000px;}
.y4a_c00485{bottom:540.720000px;}
.y46_c00485{bottom:541.440000px;}
.y4b_c00485{bottom:542.880000px;}
.y48_c00485{bottom:543.600000px;}
.y49_c00485{bottom:544.320000px;}
.y4c_c00485{bottom:545.760000px;}
.y43_c00485{bottom:574.560000px;}
.y3f_c00485{bottom:583.200000px;}
.y42_c00485{bottom:583.920000px;}
.y3e_c00485{bottom:584.640000px;}
.y40_c00485{bottom:586.080000px;}
.y41_c00485{bottom:586.800000px;}
.y45_c00485{bottom:587.520000px;}
.y44_c00485{bottom:588.960000px;}
.y37_c00485{bottom:625.680000px;}
.y3b_c00485{bottom:626.400000px;}
.y38_c00485{bottom:627.120000px;}
.y36_c00485{bottom:627.840000px;}
.y3c_c00485{bottom:628.560000px;}
.y3a_c00485{bottom:629.280000px;}
.y39_c00485{bottom:630.000000px;}
.y3d_c00485{bottom:632.160000px;}
.y30_c00485{bottom:668.880000px;}
.y2f_c00485{bottom:670.320000px;}
.y32_c00485{bottom:671.040000px;}
.y31_c00485{bottom:672.480000px;}
.y33_c00485{bottom:673.200000px;}
.y35_c00485{bottom:673.920000px;}
.y34_c00485{bottom:674.640000px;}
.y29_c00485{bottom:712.080000px;}
.y28_c00485{bottom:713.520000px;}
.y2c_c00485{bottom:714.960000px;}
.y2a_c00485{bottom:715.680000px;}
.y2b_c00485{bottom:716.400000px;}
.y2e_c00485{bottom:717.120000px;}
.y2d_c00485{bottom:717.840000px;}
.y25_c00485{bottom:755.280000px;}
.y26_c00485{bottom:756.000000px;}
.y24_c00485{bottom:756.720000px;}
.y27_c00485{bottom:761.040000px;}
.y20_c00485{bottom:797.760000px;}
.y21_c00485{bottom:798.480000px;}
.y1f_c00485{bottom:799.200000px;}
.y22_c00485{bottom:799.920000px;}
.y23_c00485{bottom:800.640000px;}
.y1c_c00485{bottom:840.960000px;}
.y1b_c00485{bottom:841.680000px;}
.y1d_c00485{bottom:842.400000px;}
.y1e_c00485{bottom:846.000000px;}
.y17_c00485{bottom:883.440000px;}
.y18_c00485{bottom:884.880000px;}
.y16_c00485{bottom:885.600000px;}
.y1a_c00485{bottom:887.760000px;}
.y19_c00485{bottom:888.480000px;}
.y12_c00485{bottom:925.920000px;}
.y14_c00485{bottom:926.640000px;}
.y11_c00485{bottom:927.360000px;}
.y13_c00485{bottom:928.080000px;}
.y15_c00485{bottom:930.960000px;}
.ye_c00485{bottom:969.120000px;}
.yd_c00485{bottom:969.840000px;}
.yf_c00485{bottom:970.560000px;}
.y10_c00485{bottom:973.440000px;}
.y9_c00485{bottom:1011.600000px;}
.ya_c00485{bottom:1012.320000px;}
.y8_c00485{bottom:1013.040000px;}
.yb_c00485{bottom:1014.480000px;}
.yc_c00485{bottom:1016.640000px;}
.y3_c00485{bottom:1054.800000px;}
.y2_c00485{bottom:1056.240000px;}
.y4_c00485{bottom:1057.680000px;}
.y5_c00485{bottom:1058.400000px;}
.y7_c00485{bottom:1059.120000px;}
.y6_c00485{bottom:1059.840000px;}
.y1_c00485{bottom:1108.080000px;}
.h10_c00485{height:31.100625px;}
.he_c00485{height:38.875781px;}
.h8_c00485{height:41.467500px;}
.h9_c00485{height:44.059219px;}
.h7_c00485{height:46.650937px;}
.h6_c00485{height:49.242656px;}
.h3_c00485{height:51.834375px;}
.hc_c00485{height:54.426094px;}
.hd_c00485{height:57.017812px;}
.h5_c00485{height:59.609531px;}
.hb_c00485{height:62.201250px;}
.ha_c00485{height:64.792969px;}
.h4_c00485{height:67.384687px;}
.h11_c00485{height:68.537812px;}
.h2_c00485{height:69.976406px;}
.hf_c00485{height:95.893594px;}
.h0_c00485{height:1170.720000px;}
.h1_c00485{height:1170.750000px;}
.w1_c00485{width:768.750000px;}
.w0_c00485{width:768.960000px;}
.x0_c00485{left:0.000000px;}
.x2_c00485{left:38.160000px;}
.x3_c00485{left:113.040000px;}
.x9_c00485{left:210.960000px;}
.x16_c00485{left:254.880000px;}
.xe_c00485{left:264.240000px;}
.x19_c00485{left:265.680000px;}
.x13_c00485{left:298.080000px;}
.xf_c00485{left:308.880000px;}
.x17_c00485{left:341.280000px;}
.x14_c00485{left:352.080000px;}
.x12_c00485{left:395.280000px;}
.x18_c00485{left:438.480000px;}
.x4_c00485{left:514.800000px;}
.x1b_c00485{left:516.240000px;}
.xa_c00485{left:546.480000px;}
.xb_c00485{left:568.080000px;}
.x10_c00485{left:569.520000px;}
.xc_c00485{left:579.600000px;}
.x1a_c00485{left:594.000000px;}
.x5_c00485{left:602.640000px;}
.x15_c00485{left:625.680000px;}
.xd_c00485{left:635.040000px;}
.x6_c00485{left:645.120000px;}
.x1d_c00485{left:646.560000px;}
.x7_c00485{left:678.240000px;}
.x1c_c00485{left:679.680000px;}
.x1_c00485{left:681.120000px;}
.x8_c00485{left:697.680000px;}
.x11_c00485{left:699.120000px;}
@media print{
.v2_c00485{vertical-align:-7.680000pt;}
.v0_c00485{vertical-align:0.000000pt;}
.v1_c00485{vertical-align:10.240000pt;}
.ls1_c00485{letter-spacing:0.000000pt;}
.ls0_c00485{letter-spacing:88.646827pt;}
.ws0_c00485{word-spacing:-0.990720pt;}
.ws2_c00485{word-spacing:0.000000pt;}
.ws1_c00485{word-spacing:503.389013pt;}
.fse_c00485{font-size:30.720000pt;}
.fsc_c00485{font-size:38.400000pt;}
.fs7_c00485{font-size:40.960000pt;}
.fs8_c00485{font-size:43.520000pt;}
.fs6_c00485{font-size:46.080000pt;}
.fs5_c00485{font-size:48.640000pt;}
.fs1_c00485{font-size:51.200000pt;}
.fsa_c00485{font-size:53.760000pt;}
.fsb_c00485{font-size:56.320000pt;}
.fs4_c00485{font-size:58.880000pt;}
.fs9_c00485{font-size:61.440000pt;}
.fs3_c00485{font-size:64.000000pt;}
.fs2_c00485{font-size:66.560000pt;}
.fs0_c00485{font-size:69.120000pt;}
.fsd_c00485{font-size:94.720000pt;}
.y0_c00485{bottom:0.000000pt;}
.y86_c00485{bottom:58.880000pt;}
.y87_c00485{bottom:59.520000pt;}
.y85_c00485{bottom:60.160000pt;}
.y89_c00485{bottom:60.800000pt;}
.y88_c00485{bottom:62.720000pt;}
.y7f_c00485{bottom:97.280000pt;}
.y81_c00485{bottom:97.920000pt;}
.y7e_c00485{bottom:98.560000pt;}
.y83_c00485{bottom:99.200000pt;}
.y82_c00485{bottom:99.840000pt;}
.y80_c00485{bottom:101.120000pt;}
.y84_c00485{bottom:101.760000pt;}
.y78_c00485{bottom:135.680000pt;}
.y7a_c00485{bottom:136.320000pt;}
.y77_c00485{bottom:137.600000pt;}
.y7b_c00485{bottom:138.240000pt;}
.y79_c00485{bottom:138.880000pt;}
.y7c_c00485{bottom:140.160000pt;}
.y7d_c00485{bottom:140.800000pt;}
.y74_c00485{bottom:174.080000pt;}
.y75_c00485{bottom:175.360000pt;}
.y73_c00485{bottom:176.000000pt;}
.y76_c00485{bottom:177.280000pt;}
.y6e_c00485{bottom:211.840000pt;}
.y71_c00485{bottom:213.120000pt;}
.y72_c00485{bottom:213.760000pt;}
.y6d_c00485{bottom:214.400000pt;}
.y6f_c00485{bottom:215.040000pt;}
.y70_c00485{bottom:215.680000pt;}
.y66_c00485{bottom:250.240000pt;}
.y69_c00485{bottom:250.880000pt;}
.y6c_c00485{bottom:251.520000pt;}
.y6a_c00485{bottom:252.160000pt;}
.y65_c00485{bottom:252.800000pt;}
.y68_c00485{bottom:253.440000pt;}
.y67_c00485{bottom:254.080000pt;}
.y6b_c00485{bottom:254.720000pt;}
.y62_c00485{bottom:288.640000pt;}
.y61_c00485{bottom:289.920000pt;}
.y63_c00485{bottom:292.480000pt;}
.y64_c00485{bottom:293.120000pt;}
.y5c_c00485{bottom:326.400000pt;}
.y5e_c00485{bottom:327.040000pt;}
.y5f_c00485{bottom:327.680000pt;}
.y5b_c00485{bottom:328.320000pt;}
.y5d_c00485{bottom:330.240000pt;}
.y60_c00485{bottom:331.520000pt;}
.y57_c00485{bottom:364.800000pt;}
.y56_c00485{bottom:366.080000pt;}
.y58_c00485{bottom:366.720000pt;}
.y59_c00485{bottom:368.000000pt;}
.y5a_c00485{bottom:369.920000pt;}
.y54_c00485{bottom:403.200000pt;}
.y53_c00485{bottom:404.480000pt;}
.y55_c00485{bottom:405.120000pt;}
.y4e_c00485{bottom:441.600000pt;}
.y50_c00485{bottom:442.240000pt;}
.y4d_c00485{bottom:442.880000pt;}
.y51_c00485{bottom:443.520000pt;}
.y4f_c00485{bottom:445.440000pt;}
.y52_c00485{bottom:446.720000pt;}
.y47_c00485{bottom:480.000000pt;}
.y4a_c00485{bottom:480.640000pt;}
.y46_c00485{bottom:481.280000pt;}
.y4b_c00485{bottom:482.560000pt;}
.y48_c00485{bottom:483.200000pt;}
.y49_c00485{bottom:483.840000pt;}
.y4c_c00485{bottom:485.120000pt;}
.y43_c00485{bottom:510.720000pt;}
.y3f_c00485{bottom:518.400000pt;}
.y42_c00485{bottom:519.040000pt;}
.y3e_c00485{bottom:519.680000pt;}
.y40_c00485{bottom:520.960000pt;}
.y41_c00485{bottom:521.600000pt;}
.y45_c00485{bottom:522.240000pt;}
.y44_c00485{bottom:523.520000pt;}
.y37_c00485{bottom:556.160000pt;}
.y3b_c00485{bottom:556.800000pt;}
.y38_c00485{bottom:557.440000pt;}
.y36_c00485{bottom:558.080000pt;}
.y3c_c00485{bottom:558.720000pt;}
.y3a_c00485{bottom:559.360000pt;}
.y39_c00485{bottom:560.000000pt;}
.y3d_c00485{bottom:561.920000pt;}
.y30_c00485{bottom:594.560000pt;}
.y2f_c00485{bottom:595.840000pt;}
.y32_c00485{bottom:596.480000pt;}
.y31_c00485{bottom:597.760000pt;}
.y33_c00485{bottom:598.400000pt;}
.y35_c00485{bottom:599.040000pt;}
.y34_c00485{bottom:599.680000pt;}
.y29_c00485{bottom:632.960000pt;}
.y28_c00485{bottom:634.240000pt;}
.y2c_c00485{bottom:635.520000pt;}
.y2a_c00485{bottom:636.160000pt;}
.y2b_c00485{bottom:636.800000pt;}
.y2e_c00485{bottom:637.440000pt;}
.y2d_c00485{bottom:638.080000pt;}
.y25_c00485{bottom:671.360000pt;}
.y26_c00485{bottom:672.000000pt;}
.y24_c00485{bottom:672.640000pt;}
.y27_c00485{bottom:676.480000pt;}
.y20_c00485{bottom:709.120000pt;}
.y21_c00485{bottom:709.760000pt;}
.y1f_c00485{bottom:710.400000pt;}
.y22_c00485{bottom:711.040000pt;}
.y23_c00485{bottom:711.680000pt;}
.y1c_c00485{bottom:747.520000pt;}
.y1b_c00485{bottom:748.160000pt;}
.y1d_c00485{bottom:748.800000pt;}
.y1e_c00485{bottom:752.000000pt;}
.y17_c00485{bottom:785.280000pt;}
.y18_c00485{bottom:786.560000pt;}
.y16_c00485{bottom:787.200000pt;}
.y1a_c00485{bottom:789.120000pt;}
.y19_c00485{bottom:789.760000pt;}
.y12_c00485{bottom:823.040000pt;}
.y14_c00485{bottom:823.680000pt;}
.y11_c00485{bottom:824.320000pt;}
.y13_c00485{bottom:824.960000pt;}
.y15_c00485{bottom:827.520000pt;}
.ye_c00485{bottom:861.440000pt;}
.yd_c00485{bottom:862.080000pt;}
.yf_c00485{bottom:862.720000pt;}
.y10_c00485{bottom:865.280000pt;}
.y9_c00485{bottom:899.200000pt;}
.ya_c00485{bottom:899.840000pt;}
.y8_c00485{bottom:900.480000pt;}
.yb_c00485{bottom:901.760000pt;}
.yc_c00485{bottom:903.680000pt;}
.y3_c00485{bottom:937.600000pt;}
.y2_c00485{bottom:938.880000pt;}
.y4_c00485{bottom:940.160000pt;}
.y5_c00485{bottom:940.800000pt;}
.y7_c00485{bottom:941.440000pt;}
.y6_c00485{bottom:942.080000pt;}
.y1_c00485{bottom:984.960000pt;}
.h10_c00485{height:27.645000pt;}
.he_c00485{height:34.556250pt;}
.h8_c00485{height:36.860000pt;}
.h9_c00485{height:39.163750pt;}
.h7_c00485{height:41.467500pt;}
.h6_c00485{height:43.771250pt;}
.h3_c00485{height:46.075000pt;}
.hc_c00485{height:48.378750pt;}
.hd_c00485{height:50.682500pt;}
.h5_c00485{height:52.986250pt;}
.hb_c00485{height:55.290000pt;}
.ha_c00485{height:57.593750pt;}
.h4_c00485{height:59.897500pt;}
.h11_c00485{height:60.922500pt;}
.h2_c00485{height:62.201250pt;}
.hf_c00485{height:85.238750pt;}
.h0_c00485{height:1040.640000pt;}
.h1_c00485{height:1040.666667pt;}
.w1_c00485{width:683.333333pt;}
.w0_c00485{width:683.520000pt;}
.x0_c00485{left:0.000000pt;}
.x2_c00485{left:33.920000pt;}
.x3_c00485{left:100.480000pt;}
.x9_c00485{left:187.520000pt;}
.x16_c00485{left:226.560000pt;}
.xe_c00485{left:234.880000pt;}
.x19_c00485{left:236.160000pt;}
.x13_c00485{left:264.960000pt;}
.xf_c00485{left:274.560000pt;}
.x17_c00485{left:303.360000pt;}
.x14_c00485{left:312.960000pt;}
.x12_c00485{left:351.360000pt;}
.x18_c00485{left:389.760000pt;}
.x4_c00485{left:457.600000pt;}
.x1b_c00485{left:458.880000pt;}
.xa_c00485{left:485.760000pt;}
.xb_c00485{left:504.960000pt;}
.x10_c00485{left:506.240000pt;}
.xc_c00485{left:515.200000pt;}
.x1a_c00485{left:528.000000pt;}
.x5_c00485{left:535.680000pt;}
.x15_c00485{left:556.160000pt;}
.xd_c00485{left:564.480000pt;}
.x6_c00485{left:573.440000pt;}
.x1d_c00485{left:574.720000pt;}
.x7_c00485{left:602.880000pt;}
.x1c_c00485{left:604.160000pt;}
.x1_c00485{left:605.440000pt;}
.x8_c00485{left:620.160000pt;}
.x11_c00485{left:621.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_577571d8f12d057aed029ac5.woff2')format("woff");}.ff1_c00486{font-family:ff1_c00486;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3d_c00486{transform:matrix(0.227925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227925,0.000000,0.000000,0.250000,0,0);}
.m14_c00486{transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);}
.m32_c00486{transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);}
.m3b_c00486{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m26_c00486{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00486{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m16_c00486{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00486{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);}
.m33_c00486{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);}
.m44_c00486{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m2_c00486{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00486{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_c00486{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);}
.m3f_c00486{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.ma_c00486{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m5_c00486{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00486{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);}
.m28_c00486{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.me_c00486{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.md_c00486{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m24_c00486{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m20_c00486{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m39_c00486{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m9_c00486{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m8_c00486{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m42_c00486{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m15_c00486{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m38_c00486{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m6_c00486{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m31_c00486{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00486{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mf_c00486{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00486{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m10_c00486{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);}
.m29_c00486{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m45_c00486{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m7_c00486{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);}
.m41_c00486{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m12_c00486{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);}
.m43_c00486{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);}
.m34_c00486{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00486{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m0_c00486{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00486{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m21_c00486{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m1_c00486{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00486{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m4_c00486{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00486{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);}
.m36_c00486{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m27_c00486{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);}
.mc_c00486{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m40_c00486{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);}
.mb_c00486{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);}
.m19_c00486{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00486{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m3_c00486{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00486{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00486{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m11_c00486{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m13_c00486{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00486{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);}
.m18_c00486{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m37_c00486{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m25_c00486{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);}
.m30_c00486{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m23_c00486{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m17_c00486{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);}
.m22_c00486{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m35_c00486{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.v1_c00486{vertical-align:-8.640000px;}
.v2_c00486{vertical-align:-5.760000px;}
.v0_c00486{vertical-align:0.000000px;}
.v3_c00486{vertical-align:2.880000px;}
.v4_c00486{vertical-align:11.520000px;}
.ls2_c00486{letter-spacing:0.000000px;}
.ls1_c00486{letter-spacing:55.480080px;}
.ls0_c00486{letter-spacing:94.230960px;}
.sc__c00486{text-shadow:none;}
.sc0_c00486{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00486{-webkit-text-stroke:0px transparent;}
.sc0_c00486{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00486{word-spacing:0.000000px;}
.ws1_c00486{word-spacing:31.339680px;}
.ws0_c00486{word-spacing:200.384400px;}
.fc0_c00486{color:transparent;}
.fs9_c00486{font-size:34.560000px;}
.fs2_c00486{font-size:43.200000px;}
.fs6_c00486{font-size:46.080000px;}
.fs3_c00486{font-size:48.960000px;}
.fsa_c00486{font-size:51.840000px;}
.fs7_c00486{font-size:54.720000px;}
.fs1_c00486{font-size:57.600000px;}
.fs8_c00486{font-size:60.480000px;}
.fs5_c00486{font-size:63.360000px;}
.fsb_c00486{font-size:66.240000px;}
.fs4_c00486{font-size:69.120000px;}
.fs0_c00486{font-size:72.000000px;}
.fsc_c00486{font-size:74.880000px;}
.fsd_c00486{font-size:77.760000px;}
.y0_c00486{bottom:0.000000px;}
.y9c_c00486{bottom:95.760000px;}
.y9d_c00486{bottom:96.480000px;}
.y9f_c00486{bottom:97.920000px;}
.y9a_c00486{bottom:98.640000px;}
.y9e_c00486{bottom:99.360000px;}
.y9b_c00486{bottom:100.080000px;}
.y95_c00486{bottom:138.960000px;}
.y96_c00486{bottom:139.680000px;}
.y94_c00486{bottom:140.400000px;}
.y97_c00486{bottom:141.840000px;}
.y98_c00486{bottom:142.560000px;}
.y99_c00486{bottom:143.280000px;}
.y90_c00486{bottom:182.160000px;}
.y8f_c00486{bottom:183.600000px;}
.y92_c00486{bottom:184.320000px;}
.y91_c00486{bottom:185.040000px;}
.y93_c00486{bottom:187.920000px;}
.y8b_c00486{bottom:225.360000px;}
.y8a_c00486{bottom:226.800000px;}
.y8d_c00486{bottom:228.240000px;}
.y8c_c00486{bottom:228.960000px;}
.y8e_c00486{bottom:231.120000px;}
.y85_c00486{bottom:267.840000px;}
.y87_c00486{bottom:269.280000px;}
.y84_c00486{bottom:270.000000px;}
.y89_c00486{bottom:270.720000px;}
.y88_c00486{bottom:271.440000px;}
.y86_c00486{bottom:272.160000px;}
.y7c_c00486{bottom:311.040000px;}
.y7f_c00486{bottom:311.760000px;}
.y7b_c00486{bottom:313.200000px;}
.y83_c00486{bottom:313.920000px;}
.y80_c00486{bottom:314.640000px;}
.y7d_c00486{bottom:315.360000px;}
.y7e_c00486{bottom:316.080000px;}
.y81_c00486{bottom:316.800000px;}
.y82_c00486{bottom:317.520000px;}
.y75_c00486{bottom:354.240000px;}
.y77_c00486{bottom:354.960000px;}
.y74_c00486{bottom:357.120000px;}
.y79_c00486{bottom:357.840000px;}
.y76_c00486{bottom:358.560000px;}
.y78_c00486{bottom:359.280000px;}
.y7a_c00486{bottom:360.720000px;}
.y6d_c00486{bottom:397.440000px;}
.y70_c00486{bottom:398.160000px;}
.y6c_c00486{bottom:399.600000px;}
.y72_c00486{bottom:400.320000px;}
.y6e_c00486{bottom:401.040000px;}
.y6f_c00486{bottom:401.760000px;}
.y71_c00486{bottom:402.480000px;}
.y73_c00486{bottom:403.920000px;}
.y65_c00486{bottom:439.920000px;}
.y68_c00486{bottom:441.360000px;}
.y64_c00486{bottom:442.800000px;}
.y69_c00486{bottom:443.520000px;}
.y6b_c00486{bottom:444.240000px;}
.y67_c00486{bottom:444.960000px;}
.y66_c00486{bottom:445.680000px;}
.y6a_c00486{bottom:446.400000px;}
.y5e_c00486{bottom:484.560000px;}
.y61_c00486{bottom:485.280000px;}
.y5d_c00486{bottom:486.000000px;}
.y62_c00486{bottom:486.720000px;}
.y5f_c00486{bottom:487.440000px;}
.y60_c00486{bottom:488.160000px;}
.y63_c00486{bottom:489.600000px;}
.y56_c00486{bottom:527.040000px;}
.y55_c00486{bottom:528.480000px;}
.y5a_c00486{bottom:529.200000px;}
.y59_c00486{bottom:529.920000px;}
.y57_c00486{bottom:530.640000px;}
.y58_c00486{bottom:531.360000px;}
.y5c_c00486{bottom:532.080000px;}
.y5b_c00486{bottom:532.800000px;}
.y50_c00486{bottom:569.520000px;}
.y52_c00486{bottom:570.240000px;}
.y4f_c00486{bottom:570.960000px;}
.y53_c00486{bottom:572.400000px;}
.y54_c00486{bottom:573.120000px;}
.y51_c00486{bottom:573.840000px;}
.y48_c00486{bottom:612.000000px;}
.y4a_c00486{bottom:612.720000px;}
.y47_c00486{bottom:613.440000px;}
.y4b_c00486{bottom:614.880000px;}
.y4e_c00486{bottom:615.600000px;}
.y49_c00486{bottom:616.320000px;}
.y4d_c00486{bottom:617.040000px;}
.y4c_c00486{bottom:617.760000px;}
.y3f_c00486{bottom:654.480000px;}
.y42_c00486{bottom:655.200000px;}
.y3e_c00486{bottom:656.640000px;}
.y44_c00486{bottom:657.360000px;}
.y43_c00486{bottom:658.080000px;}
.y40_c00486{bottom:658.800000px;}
.y41_c00486{bottom:659.520000px;}
.y46_c00486{bottom:660.240000px;}
.y45_c00486{bottom:661.680000px;}
.y38_c00486{bottom:698.400000px;}
.y37_c00486{bottom:699.120000px;}
.y3b_c00486{bottom:699.840000px;}
.y3a_c00486{bottom:700.560000px;}
.y3c_c00486{bottom:701.280000px;}
.y39_c00486{bottom:702.000000px;}
.y3d_c00486{bottom:704.160000px;}
.y32_c00486{bottom:740.880000px;}
.y34_c00486{bottom:741.600000px;}
.y31_c00486{bottom:742.320000px;}
.y35_c00486{bottom:743.760000px;}
.y33_c00486{bottom:745.200000px;}
.y36_c00486{bottom:746.640000px;}
.y2c_c00486{bottom:784.080000px;}
.y2d_c00486{bottom:784.800000px;}
.y2b_c00486{bottom:785.520000px;}
.y2e_c00486{bottom:786.960000px;}
.y30_c00486{bottom:789.120000px;}
.y2f_c00486{bottom:789.840000px;}
.y26_c00486{bottom:827.280000px;}
.y27_c00486{bottom:828.000000px;}
.y25_c00486{bottom:828.720000px;}
.y28_c00486{bottom:830.160000px;}
.y29_c00486{bottom:831.600000px;}
.y2a_c00486{bottom:832.320000px;}
.y24_c00486{bottom:864.000000px;}
.y1d_c00486{bottom:870.480000px;}
.y1c_c00486{bottom:871.200000px;}
.y20_c00486{bottom:871.920000px;}
.y21_c00486{bottom:872.640000px;}
.y23_c00486{bottom:873.360000px;}
.y1e_c00486{bottom:874.080000px;}
.y1f_c00486{bottom:874.800000px;}
.y22_c00486{bottom:875.520000px;}
.y1b_c00486{bottom:906.480000px;}
.y16_c00486{bottom:912.960000px;}
.y17_c00486{bottom:913.680000px;}
.y15_c00486{bottom:914.400000px;}
.y19_c00486{bottom:915.120000px;}
.y18_c00486{bottom:917.280000px;}
.y1a_c00486{bottom:918.720000px;}
.yf_c00486{bottom:956.160000px;}
.y13_c00486{bottom:956.880000px;}
.y10_c00486{bottom:957.600000px;}
.ye_c00486{bottom:958.320000px;}
.y14_c00486{bottom:959.040000px;}
.y11_c00486{bottom:959.760000px;}
.y12_c00486{bottom:960.480000px;}
.ya_c00486{bottom:999.360000px;}
.y8_c00486{bottom:1000.080000px;}
.yb_c00486{bottom:1000.800000px;}
.y9_c00486{bottom:1001.520000px;}
.yc_c00486{bottom:1002.960000px;}
.yd_c00486{bottom:1005.120000px;}
.y3_c00486{bottom:1041.840000px;}
.y2_c00486{bottom:1043.280000px;}
.y4_c00486{bottom:1044.000000px;}
.y6_c00486{bottom:1044.720000px;}
.y5_c00486{bottom:1045.440000px;}
.y7_c00486{bottom:1048.320000px;}
.y1_c00486{bottom:1099.440000px;}
.hb_c00486{height:31.100625px;}
.h4_c00486{height:38.875781px;}
.h8_c00486{height:41.467500px;}
.h5_c00486{height:44.059219px;}
.hc_c00486{height:46.650937px;}
.h9_c00486{height:49.242656px;}
.h3_c00486{height:51.834375px;}
.ha_c00486{height:54.426094px;}
.h7_c00486{height:57.017812px;}
.hd_c00486{height:59.609531px;}
.h11_c00486{height:60.762656px;}
.h6_c00486{height:62.201250px;}
.hf_c00486{height:62.489531px;}
.h2_c00486{height:64.792969px;}
.he_c00486{height:67.384687px;}
.h10_c00486{height:69.976406px;}
.h1_c00486{height:1167.750000px;}
.h0_c00486{height:1167.840000px;}
.w0_c00486{width:775.440000px;}
.w1_c00486{width:775.500000px;}
.x0_c00486{left:0.000000px;}
.x2_c00486{left:46.080000px;}
.x22_c00486{left:47.520000px;}
.x3_c00486{left:120.960000px;}
.x13_c00486{left:122.400000px;}
.x24_c00486{left:123.840000px;}
.xb_c00486{left:166.320000px;}
.x28_c00486{left:168.480000px;}
.x4_c00486{left:218.880000px;}
.x16_c00486{left:220.320000px;}
.x10_c00486{left:251.280000px;}
.x18_c00486{left:262.800000px;}
.x5_c00486{left:272.880000px;}
.xc_c00486{left:274.320000px;}
.x23_c00486{left:306.720000px;}
.x6_c00486{left:316.800000px;}
.x1e_c00486{left:318.240000px;}
.x1b_c00486{left:347.760000px;}
.x1c_c00486{left:360.720000px;}
.x11_c00486{left:402.480000px;}
.xd_c00486{left:414.000000px;}
.x12_c00486{left:457.200000px;}
.xe_c00486{left:468.720000px;}
.x7_c00486{left:523.440000px;}
.x1f_c00486{left:524.880000px;}
.x8_c00486{left:576.720000px;}
.x21_c00486{left:578.880000px;}
.xf_c00486{left:610.560000px;}
.x20_c00486{left:612.000000px;}
.x1a_c00486{left:634.320000px;}
.x25_c00486{left:635.760000px;}
.x14_c00486{left:643.680000px;}
.x9_c00486{left:652.320000px;}
.x17_c00486{left:653.760000px;}
.x27_c00486{left:655.920000px;}
.x1_c00486{left:662.400000px;}
.xa_c00486{left:686.160000px;}
.x19_c00486{left:687.600000px;}
.x26_c00486{left:689.040000px;}
.x15_c00486{left:706.320000px;}
.x1d_c00486{left:707.760000px;}
@media print{
.v1_c00486{vertical-align:-7.680000pt;}
.v2_c00486{vertical-align:-5.120000pt;}
.v0_c00486{vertical-align:0.000000pt;}
.v3_c00486{vertical-align:2.560000pt;}
.v4_c00486{vertical-align:10.240000pt;}
.ls2_c00486{letter-spacing:0.000000pt;}
.ls1_c00486{letter-spacing:49.315627pt;}
.ls0_c00486{letter-spacing:83.760853pt;}
.ws2_c00486{word-spacing:0.000000pt;}
.ws1_c00486{word-spacing:27.857493pt;}
.ws0_c00486{word-spacing:178.119467pt;}
.fs9_c00486{font-size:30.720000pt;}
.fs2_c00486{font-size:38.400000pt;}
.fs6_c00486{font-size:40.960000pt;}
.fs3_c00486{font-size:43.520000pt;}
.fsa_c00486{font-size:46.080000pt;}
.fs7_c00486{font-size:48.640000pt;}
.fs1_c00486{font-size:51.200000pt;}
.fs8_c00486{font-size:53.760000pt;}
.fs5_c00486{font-size:56.320000pt;}
.fsb_c00486{font-size:58.880000pt;}
.fs4_c00486{font-size:61.440000pt;}
.fs0_c00486{font-size:64.000000pt;}
.fsc_c00486{font-size:66.560000pt;}
.fsd_c00486{font-size:69.120000pt;}
.y0_c00486{bottom:0.000000pt;}
.y9c_c00486{bottom:85.120000pt;}
.y9d_c00486{bottom:85.760000pt;}
.y9f_c00486{bottom:87.040000pt;}
.y9a_c00486{bottom:87.680000pt;}
.y9e_c00486{bottom:88.320000pt;}
.y9b_c00486{bottom:88.960000pt;}
.y95_c00486{bottom:123.520000pt;}
.y96_c00486{bottom:124.160000pt;}
.y94_c00486{bottom:124.800000pt;}
.y97_c00486{bottom:126.080000pt;}
.y98_c00486{bottom:126.720000pt;}
.y99_c00486{bottom:127.360000pt;}
.y90_c00486{bottom:161.920000pt;}
.y8f_c00486{bottom:163.200000pt;}
.y92_c00486{bottom:163.840000pt;}
.y91_c00486{bottom:164.480000pt;}
.y93_c00486{bottom:167.040000pt;}
.y8b_c00486{bottom:200.320000pt;}
.y8a_c00486{bottom:201.600000pt;}
.y8d_c00486{bottom:202.880000pt;}
.y8c_c00486{bottom:203.520000pt;}
.y8e_c00486{bottom:205.440000pt;}
.y85_c00486{bottom:238.080000pt;}
.y87_c00486{bottom:239.360000pt;}
.y84_c00486{bottom:240.000000pt;}
.y89_c00486{bottom:240.640000pt;}
.y88_c00486{bottom:241.280000pt;}
.y86_c00486{bottom:241.920000pt;}
.y7c_c00486{bottom:276.480000pt;}
.y7f_c00486{bottom:277.120000pt;}
.y7b_c00486{bottom:278.400000pt;}
.y83_c00486{bottom:279.040000pt;}
.y80_c00486{bottom:279.680000pt;}
.y7d_c00486{bottom:280.320000pt;}
.y7e_c00486{bottom:280.960000pt;}
.y81_c00486{bottom:281.600000pt;}
.y82_c00486{bottom:282.240000pt;}
.y75_c00486{bottom:314.880000pt;}
.y77_c00486{bottom:315.520000pt;}
.y74_c00486{bottom:317.440000pt;}
.y79_c00486{bottom:318.080000pt;}
.y76_c00486{bottom:318.720000pt;}
.y78_c00486{bottom:319.360000pt;}
.y7a_c00486{bottom:320.640000pt;}
.y6d_c00486{bottom:353.280000pt;}
.y70_c00486{bottom:353.920000pt;}
.y6c_c00486{bottom:355.200000pt;}
.y72_c00486{bottom:355.840000pt;}
.y6e_c00486{bottom:356.480000pt;}
.y6f_c00486{bottom:357.120000pt;}
.y71_c00486{bottom:357.760000pt;}
.y73_c00486{bottom:359.040000pt;}
.y65_c00486{bottom:391.040000pt;}
.y68_c00486{bottom:392.320000pt;}
.y64_c00486{bottom:393.600000pt;}
.y69_c00486{bottom:394.240000pt;}
.y6b_c00486{bottom:394.880000pt;}
.y67_c00486{bottom:395.520000pt;}
.y66_c00486{bottom:396.160000pt;}
.y6a_c00486{bottom:396.800000pt;}
.y5e_c00486{bottom:430.720000pt;}
.y61_c00486{bottom:431.360000pt;}
.y5d_c00486{bottom:432.000000pt;}
.y62_c00486{bottom:432.640000pt;}
.y5f_c00486{bottom:433.280000pt;}
.y60_c00486{bottom:433.920000pt;}
.y63_c00486{bottom:435.200000pt;}
.y56_c00486{bottom:468.480000pt;}
.y55_c00486{bottom:469.760000pt;}
.y5a_c00486{bottom:470.400000pt;}
.y59_c00486{bottom:471.040000pt;}
.y57_c00486{bottom:471.680000pt;}
.y58_c00486{bottom:472.320000pt;}
.y5c_c00486{bottom:472.960000pt;}
.y5b_c00486{bottom:473.600000pt;}
.y50_c00486{bottom:506.240000pt;}
.y52_c00486{bottom:506.880000pt;}
.y4f_c00486{bottom:507.520000pt;}
.y53_c00486{bottom:508.800000pt;}
.y54_c00486{bottom:509.440000pt;}
.y51_c00486{bottom:510.080000pt;}
.y48_c00486{bottom:544.000000pt;}
.y4a_c00486{bottom:544.640000pt;}
.y47_c00486{bottom:545.280000pt;}
.y4b_c00486{bottom:546.560000pt;}
.y4e_c00486{bottom:547.200000pt;}
.y49_c00486{bottom:547.840000pt;}
.y4d_c00486{bottom:548.480000pt;}
.y4c_c00486{bottom:549.120000pt;}
.y3f_c00486{bottom:581.760000pt;}
.y42_c00486{bottom:582.400000pt;}
.y3e_c00486{bottom:583.680000pt;}
.y44_c00486{bottom:584.320000pt;}
.y43_c00486{bottom:584.960000pt;}
.y40_c00486{bottom:585.600000pt;}
.y41_c00486{bottom:586.240000pt;}
.y46_c00486{bottom:586.880000pt;}
.y45_c00486{bottom:588.160000pt;}
.y38_c00486{bottom:620.800000pt;}
.y37_c00486{bottom:621.440000pt;}
.y3b_c00486{bottom:622.080000pt;}
.y3a_c00486{bottom:622.720000pt;}
.y3c_c00486{bottom:623.360000pt;}
.y39_c00486{bottom:624.000000pt;}
.y3d_c00486{bottom:625.920000pt;}
.y32_c00486{bottom:658.560000pt;}
.y34_c00486{bottom:659.200000pt;}
.y31_c00486{bottom:659.840000pt;}
.y35_c00486{bottom:661.120000pt;}
.y33_c00486{bottom:662.400000pt;}
.y36_c00486{bottom:663.680000pt;}
.y2c_c00486{bottom:696.960000pt;}
.y2d_c00486{bottom:697.600000pt;}
.y2b_c00486{bottom:698.240000pt;}
.y2e_c00486{bottom:699.520000pt;}
.y30_c00486{bottom:701.440000pt;}
.y2f_c00486{bottom:702.080000pt;}
.y26_c00486{bottom:735.360000pt;}
.y27_c00486{bottom:736.000000pt;}
.y25_c00486{bottom:736.640000pt;}
.y28_c00486{bottom:737.920000pt;}
.y29_c00486{bottom:739.200000pt;}
.y2a_c00486{bottom:739.840000pt;}
.y24_c00486{bottom:768.000000pt;}
.y1d_c00486{bottom:773.760000pt;}
.y1c_c00486{bottom:774.400000pt;}
.y20_c00486{bottom:775.040000pt;}
.y21_c00486{bottom:775.680000pt;}
.y23_c00486{bottom:776.320000pt;}
.y1e_c00486{bottom:776.960000pt;}
.y1f_c00486{bottom:777.600000pt;}
.y22_c00486{bottom:778.240000pt;}
.y1b_c00486{bottom:805.760000pt;}
.y16_c00486{bottom:811.520000pt;}
.y17_c00486{bottom:812.160000pt;}
.y15_c00486{bottom:812.800000pt;}
.y19_c00486{bottom:813.440000pt;}
.y18_c00486{bottom:815.360000pt;}
.y1a_c00486{bottom:816.640000pt;}
.yf_c00486{bottom:849.920000pt;}
.y13_c00486{bottom:850.560000pt;}
.y10_c00486{bottom:851.200000pt;}
.ye_c00486{bottom:851.840000pt;}
.y14_c00486{bottom:852.480000pt;}
.y11_c00486{bottom:853.120000pt;}
.y12_c00486{bottom:853.760000pt;}
.ya_c00486{bottom:888.320000pt;}
.y8_c00486{bottom:888.960000pt;}
.yb_c00486{bottom:889.600000pt;}
.y9_c00486{bottom:890.240000pt;}
.yc_c00486{bottom:891.520000pt;}
.yd_c00486{bottom:893.440000pt;}
.y3_c00486{bottom:926.080000pt;}
.y2_c00486{bottom:927.360000pt;}
.y4_c00486{bottom:928.000000pt;}
.y6_c00486{bottom:928.640000pt;}
.y5_c00486{bottom:929.280000pt;}
.y7_c00486{bottom:931.840000pt;}
.y1_c00486{bottom:977.280000pt;}
.hb_c00486{height:27.645000pt;}
.h4_c00486{height:34.556250pt;}
.h8_c00486{height:36.860000pt;}
.h5_c00486{height:39.163750pt;}
.hc_c00486{height:41.467500pt;}
.h9_c00486{height:43.771250pt;}
.h3_c00486{height:46.075000pt;}
.ha_c00486{height:48.378750pt;}
.h7_c00486{height:50.682500pt;}
.hd_c00486{height:52.986250pt;}
.h11_c00486{height:54.011250pt;}
.h6_c00486{height:55.290000pt;}
.hf_c00486{height:55.546250pt;}
.h2_c00486{height:57.593750pt;}
.he_c00486{height:59.897500pt;}
.h10_c00486{height:62.201250pt;}
.h1_c00486{height:1038.000000pt;}
.h0_c00486{height:1038.080000pt;}
.w0_c00486{width:689.280000pt;}
.w1_c00486{width:689.333333pt;}
.x0_c00486{left:0.000000pt;}
.x2_c00486{left:40.960000pt;}
.x22_c00486{left:42.240000pt;}
.x3_c00486{left:107.520000pt;}
.x13_c00486{left:108.800000pt;}
.x24_c00486{left:110.080000pt;}
.xb_c00486{left:147.840000pt;}
.x28_c00486{left:149.760000pt;}
.x4_c00486{left:194.560000pt;}
.x16_c00486{left:195.840000pt;}
.x10_c00486{left:223.360000pt;}
.x18_c00486{left:233.600000pt;}
.x5_c00486{left:242.560000pt;}
.xc_c00486{left:243.840000pt;}
.x23_c00486{left:272.640000pt;}
.x6_c00486{left:281.600000pt;}
.x1e_c00486{left:282.880000pt;}
.x1b_c00486{left:309.120000pt;}
.x1c_c00486{left:320.640000pt;}
.x11_c00486{left:357.760000pt;}
.xd_c00486{left:368.000000pt;}
.x12_c00486{left:406.400000pt;}
.xe_c00486{left:416.640000pt;}
.x7_c00486{left:465.280000pt;}
.x1f_c00486{left:466.560000pt;}
.x8_c00486{left:512.640000pt;}
.x21_c00486{left:514.560000pt;}
.xf_c00486{left:542.720000pt;}
.x20_c00486{left:544.000000pt;}
.x1a_c00486{left:563.840000pt;}
.x25_c00486{left:565.120000pt;}
.x14_c00486{left:572.160000pt;}
.x9_c00486{left:579.840000pt;}
.x17_c00486{left:581.120000pt;}
.x27_c00486{left:583.040000pt;}
.x1_c00486{left:588.800000pt;}
.xa_c00486{left:609.920000pt;}
.x19_c00486{left:611.200000pt;}
.x26_c00486{left:612.480000pt;}
.x15_c00486{left:627.840000pt;}
.x1d_c00486{left:629.120000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d7b91e7cee07e71abfc48747.woff2')format("woff");}.ff1_c00487{font-family:ff1_c00487;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00487{transform:matrix(0.079625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079625,0.000000,0.000000,0.250000,0,0);}
.m49_c00487{transform:matrix(0.147800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147800,0.000000,0.000000,0.250000,0,0);}
.m4f_c00487{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m58_c00487{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m1d_c00487{transform:matrix(0.236800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236800,0.000000,0.000000,0.250000,0,0);}
.m4e_c00487{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m31_c00487{transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);}
.m3f_c00487{transform:matrix(0.246775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246775,0.000000,0.000000,0.250000,0,0);}
.m9_c00487{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m3b_c00487{transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);}
.m2a_c00487{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m3_c00487{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m35_c00487{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m39_c00487{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_c00487{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);}
.m2b_c00487{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00487{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mf_c00487{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);}
.m29_c00487{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m7_c00487{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);}
.m20_c00487{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m18_c00487{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m6_c00487{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);}
.m40_c00487{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00487{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m36_c00487{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m8_c00487{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00487{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m16_c00487{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00487{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m32_c00487{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m14_c00487{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m44_c00487{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m19_c00487{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00487{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m42_c00487{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m43_c00487{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m22_c00487{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.ma_c00487{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m53_c00487{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1_c00487{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00487{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00487{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m25_c00487{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_c00487{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);}
.m21_c00487{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.me_c00487{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.mc_c00487{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);}
.m2e_c00487{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m28_c00487{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);}
.m2d_c00487{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00487{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);}
.m46_c00487{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m17_c00487{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m4_c00487{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);}
.m41_c00487{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);}
.m15_c00487{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m2_c00487{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m57_c00487{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);}
.m1e_c00487{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);}
.m54_c00487{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);}
.m30_c00487{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00487{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m50_c00487{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m52_c00487{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);}
.m1a_c00487{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m37_c00487{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);}
.m56_c00487{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m11_c00487{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m47_c00487{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00487{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00487{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);}
.m34_c00487{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m26_c00487{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00487{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m51_c00487{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00487{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);}
.m59_c00487{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m48_c00487{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m23_c00487{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m13_c00487{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00487{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);}
.m33_c00487{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);}
.m5_c00487{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m24_c00487{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m38_c00487{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);}
.md_c00487{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m27_c00487{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);}
.m5c_c00487{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.mb_c00487{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.m45_c00487{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00487{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.m55_c00487{transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);}
.v1_c00487{vertical-align:-8.640000px;}
.v0_c00487{vertical-align:0.000000px;}
.v2_c00487{vertical-align:20.160000px;}
.v3_c00487{vertical-align:43.200000px;}
.ls1_c00487{letter-spacing:0.000000px;}
.ls0_c00487{letter-spacing:96.961680px;}
.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;}
}
.ws4_c00487{word-spacing:0.000000px;}
.ws3_c00487{word-spacing:2.233920px;}
.ws1_c00487{word-spacing:53.884480px;}
.ws0_c00487{word-spacing:67.827902px;}
.ws2_c00487{word-spacing:749.786400px;}
.fc0_c00487{color:transparent;}
.fs10_c00487{font-size:11.520000px;}
.fs12_c00487{font-size:14.400000px;}
.fs9_c00487{font-size:34.560000px;}
.fsd_c00487{font-size:43.200000px;}
.fs3_c00487{font-size:46.080000px;}
.fs4_c00487{font-size:48.960000px;}
.fs8_c00487{font-size:51.840000px;}
.fs7_c00487{font-size:54.720000px;}
.fs2_c00487{font-size:57.600000px;}
.fsa_c00487{font-size:60.480000px;}
.fs6_c00487{font-size:63.360000px;}
.fsc_c00487{font-size:66.240000px;}
.fsb_c00487{font-size:69.120000px;}
.fs5_c00487{font-size:72.000000px;}
.fs1_c00487{font-size:74.880000px;}
.fse_c00487{font-size:77.760000px;}
.fs11_c00487{font-size:86.400000px;}
.fsf_c00487{font-size:138.240000px;}
.fs0_c00487{font-size:146.880000px;}
.y0_c00487{bottom:0.000000px;}
.y98_c00487{bottom:112.320000px;}
.y97_c00487{bottom:113.040000px;}
.y9b_c00487{bottom:114.480000px;}
.y9c_c00487{bottom:115.920000px;}
.y99_c00487{bottom:116.640000px;}
.y9d_c00487{bottom:117.360000px;}
.y9a_c00487{bottom:118.800000px;}
.y94_c00487{bottom:134.640000px;}
.y91_c00487{bottom:135.360000px;}
.y95_c00487{bottom:136.080000px;}
.y92_c00487{bottom:136.800000px;}
.y93_c00487{bottom:137.520000px;}
.y96_c00487{bottom:138.240000px;}
.y8d_c00487{bottom:156.960000px;}
.y8f_c00487{bottom:157.680000px;}
.y8c_c00487{bottom:158.400000px;}
.y8e_c00487{bottom:159.120000px;}
.y8b_c00487{bottom:159.840000px;}
.y90_c00487{bottom:162.000000px;}
.y81_c00487{bottom:200.160000px;}
.y8a_c00487{bottom:200.880000px;}
.y89_c00487{bottom:202.320000px;}
.y88_c00487{bottom:203.040000px;}
.y80_c00487{bottom:209.520000px;}
.y84_c00487{bottom:210.960000px;}
.y86_c00487{bottom:211.680000px;}
.y7f_c00487{bottom:212.400000px;}
.y85_c00487{bottom:216.720000px;}
.y87_c00487{bottom:222.480000px;}
.y83_c00487{bottom:223.200000px;}
.y82_c00487{bottom:223.920000px;}
.y7a_c00487{bottom:261.360000px;}
.y7e_c00487{bottom:262.800000px;}
.y78_c00487{bottom:263.520000px;}
.y79_c00487{bottom:265.680000px;}
.y7b_c00487{bottom:266.400000px;}
.y7d_c00487{bottom:267.120000px;}
.y7c_c00487{bottom:267.840000px;}
.y73_c00487{bottom:304.560000px;}
.y71_c00487{bottom:306.000000px;}
.y75_c00487{bottom:306.720000px;}
.y76_c00487{bottom:308.160000px;}
.y72_c00487{bottom:308.880000px;}
.y77_c00487{bottom:309.600000px;}
.y74_c00487{bottom:310.320000px;}
.y6d_c00487{bottom:347.760000px;}
.y6f_c00487{bottom:349.200000px;}
.y6b_c00487{bottom:349.920000px;}
.y6c_c00487{bottom:351.360000px;}
.y6e_c00487{bottom:352.080000px;}
.y70_c00487{bottom:352.800000px;}
.y66_c00487{bottom:390.960000px;}
.y64_c00487{bottom:392.400000px;}
.y6a_c00487{bottom:393.120000px;}
.y68_c00487{bottom:393.840000px;}
.y65_c00487{bottom:394.560000px;}
.y67_c00487{bottom:395.280000px;}
.y69_c00487{bottom:396.000000px;}
.y60_c00487{bottom:434.160000px;}
.y5e_c00487{bottom:435.600000px;}
.y62_c00487{bottom:437.040000px;}
.y5f_c00487{bottom:437.760000px;}
.y61_c00487{bottom:438.480000px;}
.y63_c00487{bottom:439.200000px;}
.y59_c00487{bottom:476.640000px;}
.y5b_c00487{bottom:478.800000px;}
.y57_c00487{bottom:479.520000px;}
.y5a_c00487{bottom:480.240000px;}
.y58_c00487{bottom:480.960000px;}
.y5d_c00487{bottom:481.680000px;}
.y5c_c00487{bottom:482.400000px;}
.y52_c00487{bottom:519.840000px;}
.y54_c00487{bottom:521.280000px;}
.y51_c00487{bottom:522.000000px;}
.y56_c00487{bottom:522.720000px;}
.y55_c00487{bottom:523.440000px;}
.y53_c00487{bottom:524.160000px;}
.y4c_c00487{bottom:563.040000px;}
.y4e_c00487{bottom:564.480000px;}
.y4b_c00487{bottom:565.200000px;}
.y4f_c00487{bottom:565.920000px;}
.y4d_c00487{bottom:567.360000px;}
.y50_c00487{bottom:568.800000px;}
.y45_c00487{bottom:606.240000px;}
.y48_c00487{bottom:606.960000px;}
.y46_c00487{bottom:607.680000px;}
.y44_c00487{bottom:608.400000px;}
.y4a_c00487{bottom:609.120000px;}
.y47_c00487{bottom:610.560000px;}
.y49_c00487{bottom:611.280000px;}
.y3e_c00487{bottom:649.440000px;}
.y41_c00487{bottom:650.160000px;}
.y3d_c00487{bottom:650.880000px;}
.y42_c00487{bottom:652.320000px;}
.y3f_c00487{bottom:653.040000px;}
.y40_c00487{bottom:653.760000px;}
.y43_c00487{bottom:655.200000px;}
.y37_c00487{bottom:692.640000px;}
.y39_c00487{bottom:693.360000px;}
.y36_c00487{bottom:694.080000px;}
.y3b_c00487{bottom:694.800000px;}
.y38_c00487{bottom:696.240000px;}
.y3a_c00487{bottom:696.960000px;}
.y3c_c00487{bottom:697.680000px;}
.y35_c00487{bottom:735.840000px;}
.y32_c00487{bottom:736.560000px;}
.y33_c00487{bottom:737.280000px;}
.y34_c00487{bottom:739.440000px;}
.y2d_c00487{bottom:767.520000px;}
.y2c_c00487{bottom:768.960000px;}
.y30_c00487{bottom:769.680000px;}
.y2f_c00487{bottom:770.400000px;}
.y2e_c00487{bottom:771.120000px;}
.y31_c00487{bottom:771.840000px;}
.y27_c00487{bottom:810.720000px;}
.y26_c00487{bottom:811.440000px;}
.y28_c00487{bottom:812.160000px;}
.y2b_c00487{bottom:812.880000px;}
.y2a_c00487{bottom:813.600000px;}
.y29_c00487{bottom:814.320000px;}
.y23_c00487{bottom:853.920000px;}
.y24_c00487{bottom:854.640000px;}
.y25_c00487{bottom:856.800000px;}
.y1d_c00487{bottom:884.880000px;}
.y21_c00487{bottom:885.600000px;}
.y20_c00487{bottom:886.320000px;}
.y1c_c00487{bottom:887.040000px;}
.y22_c00487{bottom:887.760000px;}
.y1f_c00487{bottom:888.480000px;}
.y1e_c00487{bottom:889.200000px;}
.y18_c00487{bottom:928.080000px;}
.y19_c00487{bottom:928.800000px;}
.y17_c00487{bottom:929.520000px;}
.y1b_c00487{bottom:930.240000px;}
.y1a_c00487{bottom:930.960000px;}
.y12_c00487{bottom:970.560000px;}
.y11_c00487{bottom:972.000000px;}
.y15_c00487{bottom:972.720000px;}
.y14_c00487{bottom:973.440000px;}
.y13_c00487{bottom:974.160000px;}
.y16_c00487{bottom:974.880000px;}
.yb_c00487{bottom:1013.040000px;}
.yd_c00487{bottom:1013.760000px;}
.y10_c00487{bottom:1014.480000px;}
.ye_c00487{bottom:1015.200000px;}
.ya_c00487{bottom:1015.920000px;}
.yc_c00487{bottom:1017.360000px;}
.yf_c00487{bottom:1018.080000px;}
.y4_c00487{bottom:1056.240000px;}
.y7_c00487{bottom:1056.960000px;}
.y3_c00487{bottom:1058.400000px;}
.y8_c00487{bottom:1059.120000px;}
.y9_c00487{bottom:1059.840000px;}
.y6_c00487{bottom:1060.560000px;}
.y5_c00487{bottom:1061.280000px;}
.y2_c00487{bottom:1112.400000px;}
.y1_c00487{bottom:1137.600000px;}
.h13_c00487{height:10.366875px;}
.h16_c00487{height:12.958594px;}
.hb_c00487{height:31.100625px;}
.hf_c00487{height:38.875781px;}
.h5_c00487{height:41.467500px;}
.h6_c00487{height:44.059219px;}
.ha_c00487{height:46.650937px;}
.h9_c00487{height:49.242656px;}
.h4_c00487{height:51.834375px;}
.hc_c00487{height:54.426094px;}
.h8_c00487{height:57.017812px;}
.he_c00487{height:59.609531px;}
.hd_c00487{height:62.201250px;}
.h7_c00487{height:64.792969px;}
.h3_c00487{height:67.384687px;}
.h10_c00487{height:69.402656px;}
.h11_c00487{height:69.976406px;}
.h15_c00487{height:77.751563px;}
.h14_c00487{height:92.442656px;}
.h12_c00487{height:124.402500px;}
.h2_c00487{height:132.177656px;}
.h0_c00487{height:1174.320000px;}
.h1_c00487{height:1174.500000px;}
.w1_c00487{width:784.500000px;}
.w0_c00487{width:784.800000px;}
.x0_c00487{left:0.000000px;}
.x3_c00487{left:47.520000px;}
.x28_c00487{left:48.960000px;}
.x38_c00487{left:69.840000px;}
.x41_c00487{left:79.920000px;}
.x2b_c00487{left:81.360000px;}
.x2c_c00487{left:113.760000px;}
.x4_c00487{left:123.840000px;}
.x42_c00487{left:157.680000px;}
.x26_c00487{left:177.840000px;}
.x43_c00487{left:179.280000px;}
.x2d_c00487{left:187.920000px;}
.x5_c00487{left:219.600000px;}
.xd_c00487{left:221.040000px;}
.x18_c00487{left:231.840000px;}
.x6_c00487{left:264.240000px;}
.x39_c00487{left:267.120000px;}
.x14_c00487{left:275.040000px;}
.x1c_c00487{left:276.480000px;}
.x11_c00487{left:285.840000px;}
.x22_c00487{left:287.280000px;}
.x2e_c00487{left:298.080000px;}
.x19_c00487{left:307.440000px;}
.x48_c00487{left:308.880000px;}
.x7_c00487{left:318.960000px;}
.x25_c00487{left:329.760000px;}
.x3a_c00487{left:331.920000px;}
.x1a_c00487{left:339.840000px;}
.x2f_c00487{left:342.000000px;}
.x35_c00487{left:352.800000px;}
.x1b_c00487{left:362.160000px;}
.x12_c00487{left:372.240000px;}
.x3b_c00487{left:373.680000px;}
.x44_c00487{left:395.280000px;}
.xe_c00487{left:404.640000px;}
.x30_c00487{left:406.080000px;}
.x13_c00487{left:414.720000px;}
.x1d_c00487{left:416.160000px;}
.x15_c00487{left:426.240000px;}
.x45_c00487{left:428.400000px;}
.xf_c00487{left:447.840000px;}
.x31_c00487{left:460.800000px;}
.x1e_c00487{left:468.720000px;}
.x3c_c00487{left:472.320000px;}
.x16_c00487{left:480.240000px;}
.x46_c00487{left:492.480000px;}
.x32_c00487{left:504.720000px;}
.x8_c00487{left:524.880000px;}
.x3d_c00487{left:526.320000px;}
.x20_c00487{left:535.680000px;}
.x3e_c00487{left:568.080000px;}
.x47_c00487{left:569.520000px;}
.x10_c00487{left:578.160000px;}
.x33_c00487{left:602.640000px;}
.x9_c00487{left:612.000000px;}
.x27_c00487{left:613.440000px;}
.x29_c00487{left:614.880000px;}
.x23_c00487{left:623.520000px;}
.x1f_c00487{left:645.120000px;}
.x36_c00487{left:646.560000px;}
.xa_c00487{left:654.480000px;}
.x21_c00487{left:655.920000px;}
.x3f_c00487{left:668.160000px;}
.xb_c00487{left:686.880000px;}
.x17_c00487{left:688.320000px;}
.x2_c00487{left:689.760000px;}
.x34_c00487{left:698.400000px;}
.x37_c00487{left:699.840000px;}
.xc_c00487{left:707.760000px;}
.x24_c00487{left:709.200000px;}
.x2a_c00487{left:710.640000px;}
.x40_c00487{left:723.600000px;}
.x1_c00487{left:775.440000px;}
@media print{
.v1_c00487{vertical-align:-7.680000pt;}
.v0_c00487{vertical-align:0.000000pt;}
.v2_c00487{vertical-align:17.920000pt;}
.v3_c00487{vertical-align:38.400000pt;}
.ls1_c00487{letter-spacing:0.000000pt;}
.ls0_c00487{letter-spacing:86.188160pt;}
.ws4_c00487{word-spacing:0.000000pt;}
.ws3_c00487{word-spacing:1.985707pt;}
.ws1_c00487{word-spacing:47.897316pt;}
.ws0_c00487{word-spacing:60.291469pt;}
.ws2_c00487{word-spacing:666.476800pt;}
.fs10_c00487{font-size:10.240000pt;}
.fs12_c00487{font-size:12.800000pt;}
.fs9_c00487{font-size:30.720000pt;}
.fsd_c00487{font-size:38.400000pt;}
.fs3_c00487{font-size:40.960000pt;}
.fs4_c00487{font-size:43.520000pt;}
.fs8_c00487{font-size:46.080000pt;}
.fs7_c00487{font-size:48.640000pt;}
.fs2_c00487{font-size:51.200000pt;}
.fsa_c00487{font-size:53.760000pt;}
.fs6_c00487{font-size:56.320000pt;}
.fsc_c00487{font-size:58.880000pt;}
.fsb_c00487{font-size:61.440000pt;}
.fs5_c00487{font-size:64.000000pt;}
.fs1_c00487{font-size:66.560000pt;}
.fse_c00487{font-size:69.120000pt;}
.fs11_c00487{font-size:76.800000pt;}
.fsf_c00487{font-size:122.880000pt;}
.fs0_c00487{font-size:130.560000pt;}
.y0_c00487{bottom:0.000000pt;}
.y98_c00487{bottom:99.840000pt;}
.y97_c00487{bottom:100.480000pt;}
.y9b_c00487{bottom:101.760000pt;}
.y9c_c00487{bottom:103.040000pt;}
.y99_c00487{bottom:103.680000pt;}
.y9d_c00487{bottom:104.320000pt;}
.y9a_c00487{bottom:105.600000pt;}
.y94_c00487{bottom:119.680000pt;}
.y91_c00487{bottom:120.320000pt;}
.y95_c00487{bottom:120.960000pt;}
.y92_c00487{bottom:121.600000pt;}
.y93_c00487{bottom:122.240000pt;}
.y96_c00487{bottom:122.880000pt;}
.y8d_c00487{bottom:139.520000pt;}
.y8f_c00487{bottom:140.160000pt;}
.y8c_c00487{bottom:140.800000pt;}
.y8e_c00487{bottom:141.440000pt;}
.y8b_c00487{bottom:142.080000pt;}
.y90_c00487{bottom:144.000000pt;}
.y81_c00487{bottom:177.920000pt;}
.y8a_c00487{bottom:178.560000pt;}
.y89_c00487{bottom:179.840000pt;}
.y88_c00487{bottom:180.480000pt;}
.y80_c00487{bottom:186.240000pt;}
.y84_c00487{bottom:187.520000pt;}
.y86_c00487{bottom:188.160000pt;}
.y7f_c00487{bottom:188.800000pt;}
.y85_c00487{bottom:192.640000pt;}
.y87_c00487{bottom:197.760000pt;}
.y83_c00487{bottom:198.400000pt;}
.y82_c00487{bottom:199.040000pt;}
.y7a_c00487{bottom:232.320000pt;}
.y7e_c00487{bottom:233.600000pt;}
.y78_c00487{bottom:234.240000pt;}
.y79_c00487{bottom:236.160000pt;}
.y7b_c00487{bottom:236.800000pt;}
.y7d_c00487{bottom:237.440000pt;}
.y7c_c00487{bottom:238.080000pt;}
.y73_c00487{bottom:270.720000pt;}
.y71_c00487{bottom:272.000000pt;}
.y75_c00487{bottom:272.640000pt;}
.y76_c00487{bottom:273.920000pt;}
.y72_c00487{bottom:274.560000pt;}
.y77_c00487{bottom:275.200000pt;}
.y74_c00487{bottom:275.840000pt;}
.y6d_c00487{bottom:309.120000pt;}
.y6f_c00487{bottom:310.400000pt;}
.y6b_c00487{bottom:311.040000pt;}
.y6c_c00487{bottom:312.320000pt;}
.y6e_c00487{bottom:312.960000pt;}
.y70_c00487{bottom:313.600000pt;}
.y66_c00487{bottom:347.520000pt;}
.y64_c00487{bottom:348.800000pt;}
.y6a_c00487{bottom:349.440000pt;}
.y68_c00487{bottom:350.080000pt;}
.y65_c00487{bottom:350.720000pt;}
.y67_c00487{bottom:351.360000pt;}
.y69_c00487{bottom:352.000000pt;}
.y60_c00487{bottom:385.920000pt;}
.y5e_c00487{bottom:387.200000pt;}
.y62_c00487{bottom:388.480000pt;}
.y5f_c00487{bottom:389.120000pt;}
.y61_c00487{bottom:389.760000pt;}
.y63_c00487{bottom:390.400000pt;}
.y59_c00487{bottom:423.680000pt;}
.y5b_c00487{bottom:425.600000pt;}
.y57_c00487{bottom:426.240000pt;}
.y5a_c00487{bottom:426.880000pt;}
.y58_c00487{bottom:427.520000pt;}
.y5d_c00487{bottom:428.160000pt;}
.y5c_c00487{bottom:428.800000pt;}
.y52_c00487{bottom:462.080000pt;}
.y54_c00487{bottom:463.360000pt;}
.y51_c00487{bottom:464.000000pt;}
.y56_c00487{bottom:464.640000pt;}
.y55_c00487{bottom:465.280000pt;}
.y53_c00487{bottom:465.920000pt;}
.y4c_c00487{bottom:500.480000pt;}
.y4e_c00487{bottom:501.760000pt;}
.y4b_c00487{bottom:502.400000pt;}
.y4f_c00487{bottom:503.040000pt;}
.y4d_c00487{bottom:504.320000pt;}
.y50_c00487{bottom:505.600000pt;}
.y45_c00487{bottom:538.880000pt;}
.y48_c00487{bottom:539.520000pt;}
.y46_c00487{bottom:540.160000pt;}
.y44_c00487{bottom:540.800000pt;}
.y4a_c00487{bottom:541.440000pt;}
.y47_c00487{bottom:542.720000pt;}
.y49_c00487{bottom:543.360000pt;}
.y3e_c00487{bottom:577.280000pt;}
.y41_c00487{bottom:577.920000pt;}
.y3d_c00487{bottom:578.560000pt;}
.y42_c00487{bottom:579.840000pt;}
.y3f_c00487{bottom:580.480000pt;}
.y40_c00487{bottom:581.120000pt;}
.y43_c00487{bottom:582.400000pt;}
.y37_c00487{bottom:615.680000pt;}
.y39_c00487{bottom:616.320000pt;}
.y36_c00487{bottom:616.960000pt;}
.y3b_c00487{bottom:617.600000pt;}
.y38_c00487{bottom:618.880000pt;}
.y3a_c00487{bottom:619.520000pt;}
.y3c_c00487{bottom:620.160000pt;}
.y35_c00487{bottom:654.080000pt;}
.y32_c00487{bottom:654.720000pt;}
.y33_c00487{bottom:655.360000pt;}
.y34_c00487{bottom:657.280000pt;}
.y2d_c00487{bottom:682.240000pt;}
.y2c_c00487{bottom:683.520000pt;}
.y30_c00487{bottom:684.160000pt;}
.y2f_c00487{bottom:684.800000pt;}
.y2e_c00487{bottom:685.440000pt;}
.y31_c00487{bottom:686.080000pt;}
.y27_c00487{bottom:720.640000pt;}
.y26_c00487{bottom:721.280000pt;}
.y28_c00487{bottom:721.920000pt;}
.y2b_c00487{bottom:722.560000pt;}
.y2a_c00487{bottom:723.200000pt;}
.y29_c00487{bottom:723.840000pt;}
.y23_c00487{bottom:759.040000pt;}
.y24_c00487{bottom:759.680000pt;}
.y25_c00487{bottom:761.600000pt;}
.y1d_c00487{bottom:786.560000pt;}
.y21_c00487{bottom:787.200000pt;}
.y20_c00487{bottom:787.840000pt;}
.y1c_c00487{bottom:788.480000pt;}
.y22_c00487{bottom:789.120000pt;}
.y1f_c00487{bottom:789.760000pt;}
.y1e_c00487{bottom:790.400000pt;}
.y18_c00487{bottom:824.960000pt;}
.y19_c00487{bottom:825.600000pt;}
.y17_c00487{bottom:826.240000pt;}
.y1b_c00487{bottom:826.880000pt;}
.y1a_c00487{bottom:827.520000pt;}
.y12_c00487{bottom:862.720000pt;}
.y11_c00487{bottom:864.000000pt;}
.y15_c00487{bottom:864.640000pt;}
.y14_c00487{bottom:865.280000pt;}
.y13_c00487{bottom:865.920000pt;}
.y16_c00487{bottom:866.560000pt;}
.yb_c00487{bottom:900.480000pt;}
.yd_c00487{bottom:901.120000pt;}
.y10_c00487{bottom:901.760000pt;}
.ye_c00487{bottom:902.400000pt;}
.ya_c00487{bottom:903.040000pt;}
.yc_c00487{bottom:904.320000pt;}
.yf_c00487{bottom:904.960000pt;}
.y4_c00487{bottom:938.880000pt;}
.y7_c00487{bottom:939.520000pt;}
.y3_c00487{bottom:940.800000pt;}
.y8_c00487{bottom:941.440000pt;}
.y9_c00487{bottom:942.080000pt;}
.y6_c00487{bottom:942.720000pt;}
.y5_c00487{bottom:943.360000pt;}
.y2_c00487{bottom:988.800000pt;}
.y1_c00487{bottom:1011.200000pt;}
.h13_c00487{height:9.215000pt;}
.h16_c00487{height:11.518750pt;}
.hb_c00487{height:27.645000pt;}
.hf_c00487{height:34.556250pt;}
.h5_c00487{height:36.860000pt;}
.h6_c00487{height:39.163750pt;}
.ha_c00487{height:41.467500pt;}
.h9_c00487{height:43.771250pt;}
.h4_c00487{height:46.075000pt;}
.hc_c00487{height:48.378750pt;}
.h8_c00487{height:50.682500pt;}
.he_c00487{height:52.986250pt;}
.hd_c00487{height:55.290000pt;}
.h7_c00487{height:57.593750pt;}
.h3_c00487{height:59.897500pt;}
.h10_c00487{height:61.691250pt;}
.h11_c00487{height:62.201250pt;}
.h15_c00487{height:69.112500pt;}
.h14_c00487{height:82.171250pt;}
.h12_c00487{height:110.580000pt;}
.h2_c00487{height:117.491250pt;}
.h0_c00487{height:1043.840000pt;}
.h1_c00487{height:1044.000000pt;}
.w1_c00487{width:697.333333pt;}
.w0_c00487{width:697.600000pt;}
.x0_c00487{left:0.000000pt;}
.x3_c00487{left:42.240000pt;}
.x28_c00487{left:43.520000pt;}
.x38_c00487{left:62.080000pt;}
.x41_c00487{left:71.040000pt;}
.x2b_c00487{left:72.320000pt;}
.x2c_c00487{left:101.120000pt;}
.x4_c00487{left:110.080000pt;}
.x42_c00487{left:140.160000pt;}
.x26_c00487{left:158.080000pt;}
.x43_c00487{left:159.360000pt;}
.x2d_c00487{left:167.040000pt;}
.x5_c00487{left:195.200000pt;}
.xd_c00487{left:196.480000pt;}
.x18_c00487{left:206.080000pt;}
.x6_c00487{left:234.880000pt;}
.x39_c00487{left:237.440000pt;}
.x14_c00487{left:244.480000pt;}
.x1c_c00487{left:245.760000pt;}
.x11_c00487{left:254.080000pt;}
.x22_c00487{left:255.360000pt;}
.x2e_c00487{left:264.960000pt;}
.x19_c00487{left:273.280000pt;}
.x48_c00487{left:274.560000pt;}
.x7_c00487{left:283.520000pt;}
.x25_c00487{left:293.120000pt;}
.x3a_c00487{left:295.040000pt;}
.x1a_c00487{left:302.080000pt;}
.x2f_c00487{left:304.000000pt;}
.x35_c00487{left:313.600000pt;}
.x1b_c00487{left:321.920000pt;}
.x12_c00487{left:330.880000pt;}
.x3b_c00487{left:332.160000pt;}
.x44_c00487{left:351.360000pt;}
.xe_c00487{left:359.680000pt;}
.x30_c00487{left:360.960000pt;}
.x13_c00487{left:368.640000pt;}
.x1d_c00487{left:369.920000pt;}
.x15_c00487{left:378.880000pt;}
.x45_c00487{left:380.800000pt;}
.xf_c00487{left:398.080000pt;}
.x31_c00487{left:409.600000pt;}
.x1e_c00487{left:416.640000pt;}
.x3c_c00487{left:419.840000pt;}
.x16_c00487{left:426.880000pt;}
.x46_c00487{left:437.760000pt;}
.x32_c00487{left:448.640000pt;}
.x8_c00487{left:466.560000pt;}
.x3d_c00487{left:467.840000pt;}
.x20_c00487{left:476.160000pt;}
.x3e_c00487{left:504.960000pt;}
.x47_c00487{left:506.240000pt;}
.x10_c00487{left:513.920000pt;}
.x33_c00487{left:535.680000pt;}
.x9_c00487{left:544.000000pt;}
.x27_c00487{left:545.280000pt;}
.x29_c00487{left:546.560000pt;}
.x23_c00487{left:554.240000pt;}
.x1f_c00487{left:573.440000pt;}
.x36_c00487{left:574.720000pt;}
.xa_c00487{left:581.760000pt;}
.x21_c00487{left:583.040000pt;}
.x3f_c00487{left:593.920000pt;}
.xb_c00487{left:610.560000pt;}
.x17_c00487{left:611.840000pt;}
.x2_c00487{left:613.120000pt;}
.x34_c00487{left:620.800000pt;}
.x37_c00487{left:622.080000pt;}
.xc_c00487{left:629.120000pt;}
.x24_c00487{left:630.400000pt;}
.x2a_c00487{left:631.680000pt;}
.x40_c00487{left:643.200000pt;}
.x1_c00487{left:689.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9c29dbf5a4d4d95e71f1bd3c.woff2')format("woff");}.ff1_c00488{font-family:ff1_c00488;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4d_c00488{transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);}
.m5_c00488{transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);}
.m28_c00488{transform:matrix(0.202325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202325,0.000000,0.000000,0.250000,0,0);}
.m4c_c00488{transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);}
.m2a_c00488{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m15_c00488{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m2c_c00488{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m12_c00488{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m3_c00488{transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00488{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m14_c00488{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m3d_c00488{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m9_c00488{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_c00488{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);}
.m25_c00488{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);}
.m3c_c00488{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m10_c00488{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m22_c00488{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00488{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_c00488{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.md_c00488{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m46_c00488{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m4_c00488{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);}
.m36_c00488{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m21_c00488{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m45_c00488{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m23_c00488{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m19_c00488{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m11_c00488{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m31_c00488{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m18_c00488{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m6_c00488{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mb_c00488{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m13_c00488{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m7_c00488{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mf_c00488{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m38_c00488{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00488{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m50_c00488{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00488{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00488{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00488{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1_c00488{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m20_c00488{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_c00488{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m35_c00488{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_c00488{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m17_c00488{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00488{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00488{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);}
.m4b_c00488{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2_c00488{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);}
.m29_c00488{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.mc_c00488{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m27_c00488{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m26_c00488{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m0_c00488{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m16_c00488{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m37_c00488{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);}
.me_c00488{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m30_c00488{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);}
.m43_c00488{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);}
.m32_c00488{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m8_c00488{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);}
.m33_c00488{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);}
.m48_c00488{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00488{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);}
.m4e_c00488{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00488{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);}
.m34_c00488{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m39_c00488{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);}
.m3e_c00488{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m44_c00488{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);}
.m4f_c00488{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m42_c00488{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m40_c00488{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00488{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m51_c00488{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00488{transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);}
.m41_c00488{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);}
.m47_c00488{transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);}
.m49_c00488{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.v2_c00488{vertical-align:-2.880000px;}
.v0_c00488{vertical-align:0.000000px;}
.v1_c00488{vertical-align:2.880000px;}
.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;}
}
.ws8_c00488{word-spacing:0.000000px;}
.ws2_c00488{word-spacing:30.368157px;}
.ws3_c00488{word-spacing:31.698959px;}
.ws4_c00488{word-spacing:31.876320px;}
.ws6_c00488{word-spacing:32.368533px;}
.ws7_c00488{word-spacing:35.032889px;}
.ws5_c00488{word-spacing:38.156400px;}
.ws1_c00488{word-spacing:57.045542px;}
.ws0_c00488{word-spacing:66.066240px;}
.fc0_c00488{color:transparent;}
.fs10_c00488{font-size:11.520000px;}
.fse_c00488{font-size:14.400000px;}
.fsd_c00488{font-size:23.040000px;}
.fsc_c00488{font-size:34.560000px;}
.fsf_c00488{font-size:43.200000px;}
.fs1_c00488{font-size:46.080000px;}
.fs5_c00488{font-size:48.960000px;}
.fs2_c00488{font-size:51.840000px;}
.fs9_c00488{font-size:54.720000px;}
.fs7_c00488{font-size:57.600000px;}
.fs4_c00488{font-size:60.480000px;}
.fs6_c00488{font-size:63.360000px;}
.fs8_c00488{font-size:66.240000px;}
.fsb_c00488{font-size:69.120000px;}
.fs0_c00488{font-size:72.000000px;}
.fsa_c00488{font-size:74.880000px;}
.fs3_c00488{font-size:77.760000px;}
.y0_c00488{bottom:0.000000px;}
.yaa_c00488{bottom:167.040000px;}
.yac_c00488{bottom:168.480000px;}
.yab_c00488{bottom:169.200000px;}
.ya4_c00488{bottom:180.000000px;}
.ya2_c00488{bottom:180.720000px;}
.ya3_c00488{bottom:182.880000px;}
.ya9_c00488{bottom:187.200000px;}
.ya7_c00488{bottom:187.920000px;}
.ya5_c00488{bottom:188.640000px;}
.ya6_c00488{bottom:190.080000px;}
.ya8_c00488{bottom:191.520000px;}
.ya1_c00488{bottom:209.520000px;}
.ya0_c00488{bottom:210.240000px;}
.y9e_c00488{bottom:211.680000px;}
.y9f_c00488{bottom:212.400000px;}
.y9d_c00488{bottom:218.880000px;}
.y9c_c00488{bottom:221.760000px;}
.y9a_c00488{bottom:231.120000px;}
.y9b_c00488{bottom:234.000000px;}
.y93_c00488{bottom:244.080000px;}
.y92_c00488{bottom:246.240000px;}
.y99_c00488{bottom:251.280000px;}
.y97_c00488{bottom:252.000000px;}
.y96_c00488{bottom:252.720000px;}
.y94_c00488{bottom:253.440000px;}
.y98_c00488{bottom:254.160000px;}
.y95_c00488{bottom:255.600000px;}
.y8f_c00488{bottom:274.320000px;}
.y91_c00488{bottom:275.040000px;}
.y90_c00488{bottom:276.480000px;}
.y8e_c00488{bottom:277.200000px;}
.y8d_c00488{bottom:303.120000px;}
.y8b_c00488{bottom:306.720000px;}
.y8c_c00488{bottom:308.160000px;}
.y8a_c00488{bottom:308.880000px;}
.y89_c00488{bottom:309.600000px;}
.y88_c00488{bottom:337.680000px;}
.y87_c00488{bottom:338.400000px;}
.y83_c00488{bottom:339.120000px;}
.y85_c00488{bottom:341.280000px;}
.y84_c00488{bottom:342.000000px;}
.y86_c00488{bottom:343.440000px;}
.y80_c00488{bottom:349.920000px;}
.y81_c00488{bottom:350.640000px;}
.y7f_c00488{bottom:352.800000px;}
.y82_c00488{bottom:362.880000px;}
.y7d_c00488{bottom:401.760000px;}
.y73_c00488{bottom:402.480000px;}
.y72_c00488{bottom:403.200000px;}
.y7c_c00488{bottom:403.920000px;}
.y74_c00488{bottom:404.640000px;}
.y7e_c00488{bottom:405.360000px;}
.y7b_c00488{bottom:444.240000px;}
.y70_c00488{bottom:444.960000px;}
.y71_c00488{bottom:445.680000px;}
.y6f_c00488{bottom:446.400000px;}
.y7a_c00488{bottom:448.560000px;}
.y6e_c00488{bottom:487.440000px;}
.y6d_c00488{bottom:488.160000px;}
.y77_c00488{bottom:488.880000px;}
.y78_c00488{bottom:490.320000px;}
.y79_c00488{bottom:491.040000px;}
.y76_c00488{bottom:529.920000px;}
.y6b_c00488{bottom:530.640000px;}
.y75_c00488{bottom:531.360000px;}
.y68_c00488{bottom:532.080000px;}
.y6c_c00488{bottom:532.800000px;}
.y69_c00488{bottom:533.520000px;}
.y6a_c00488{bottom:534.240000px;}
.y63_c00488{bottom:572.400000px;}
.y67_c00488{bottom:573.840000px;}
.y66_c00488{bottom:574.560000px;}
.y62_c00488{bottom:575.280000px;}
.y61_c00488{bottom:615.600000px;}
.y5f_c00488{bottom:617.040000px;}
.y65_c00488{bottom:618.480000px;}
.y60_c00488{bottom:619.920000px;}
.y64_c00488{bottom:620.640000px;}
.y5d_c00488{bottom:660.240000px;}
.y5e_c00488{bottom:661.680000px;}
.y5c_c00488{bottom:662.400000px;}
.y5b_c00488{bottom:724.320000px;}
.y5a_c00488{bottom:725.040000px;}
.y59_c00488{bottom:726.480000px;}
.y57_c00488{bottom:745.920000px;}
.y56_c00488{bottom:746.640000px;}
.y58_c00488{bottom:747.360000px;}
.y54_c00488{bottom:766.800000px;}
.y53_c00488{bottom:767.520000px;}
.y50_c00488{bottom:768.240000px;}
.y51_c00488{bottom:768.960000px;}
.y55_c00488{bottom:769.680000px;}
.y52_c00488{bottom:770.400000px;}
.y4f_c00488{bottom:789.120000px;}
.y4d_c00488{bottom:789.840000px;}
.y4e_c00488{bottom:790.560000px;}
.y4b_c00488{bottom:791.280000px;}
.y4c_c00488{bottom:792.720000px;}
.y4a_c00488{bottom:810.720000px;}
.y48_c00488{bottom:811.440000px;}
.y47_c00488{bottom:812.160000px;}
.y49_c00488{bottom:812.880000px;}
.y46_c00488{bottom:813.600000px;}
.y45_c00488{bottom:814.320000px;}
.y44_c00488{bottom:831.600000px;}
.y43_c00488{bottom:832.320000px;}
.y3e_c00488{bottom:833.040000px;}
.y40_c00488{bottom:833.760000px;}
.y42_c00488{bottom:834.480000px;}
.y3f_c00488{bottom:835.200000px;}
.y41_c00488{bottom:835.920000px;}
.y3c_c00488{bottom:853.920000px;}
.y39_c00488{bottom:854.640000px;}
.y3a_c00488{bottom:855.360000px;}
.y3d_c00488{bottom:856.080000px;}
.y3b_c00488{bottom:856.800000px;}
.y38_c00488{bottom:857.520000px;}
.y36_c00488{bottom:874.800000px;}
.y35_c00488{bottom:875.520000px;}
.y34_c00488{bottom:876.240000px;}
.y37_c00488{bottom:877.680000px;}
.y33_c00488{bottom:878.400000px;}
.y32_c00488{bottom:895.680000px;}
.y31_c00488{bottom:896.400000px;}
.y2f_c00488{bottom:897.120000px;}
.y2e_c00488{bottom:897.840000px;}
.y30_c00488{bottom:899.280000px;}
.y2d_c00488{bottom:900.000000px;}
.y2c_c00488{bottom:917.280000px;}
.y2b_c00488{bottom:918.000000px;}
.y27_c00488{bottom:918.720000px;}
.y2a_c00488{bottom:919.440000px;}
.y29_c00488{bottom:920.880000px;}
.y28_c00488{bottom:921.600000px;}
.y26_c00488{bottom:938.880000px;}
.y25_c00488{bottom:939.600000px;}
.y23_c00488{bottom:940.320000px;}
.y21_c00488{bottom:941.040000px;}
.y22_c00488{bottom:941.760000px;}
.y24_c00488{bottom:942.480000px;}
.y20_c00488{bottom:960.480000px;}
.y1d_c00488{bottom:961.200000px;}
.y1e_c00488{bottom:961.920000px;}
.y1c_c00488{bottom:962.640000px;}
.y1f_c00488{bottom:963.360000px;}
.y1b_c00488{bottom:981.360000px;}
.y17_c00488{bottom:982.080000px;}
.y19_c00488{bottom:982.800000px;}
.y18_c00488{bottom:983.520000px;}
.y16_c00488{bottom:984.240000px;}
.y1a_c00488{bottom:984.960000px;}
.y15_c00488{bottom:1002.960000px;}
.y13_c00488{bottom:1003.680000px;}
.y11_c00488{bottom:1004.400000px;}
.y14_c00488{bottom:1005.840000px;}
.y12_c00488{bottom:1006.560000px;}
.y10_c00488{bottom:1007.280000px;}
.yf_c00488{bottom:1023.840000px;}
.ye_c00488{bottom:1024.560000px;}
.yd_c00488{bottom:1025.280000px;}
.yb_c00488{bottom:1026.000000px;}
.ya_c00488{bottom:1027.440000px;}
.yc_c00488{bottom:1028.160000px;}
.y9_c00488{bottom:1028.880000px;}
.y8_c00488{bottom:1053.360000px;}
.y4_c00488{bottom:1054.080000px;}
.y7_c00488{bottom:1057.680000px;}
.y6_c00488{bottom:1058.400000px;}
.y5_c00488{bottom:1059.120000px;}
.y3_c00488{bottom:1059.840000px;}
.y2_c00488{bottom:1060.560000px;}
.y1_c00488{bottom:1106.640000px;}
.h14_c00488{height:10.366875px;}
.h12_c00488{height:12.958594px;}
.h11_c00488{height:20.733750px;}
.h10_c00488{height:31.100625px;}
.h13_c00488{height:38.875781px;}
.h3_c00488{height:41.467500px;}
.h7_c00488{height:44.059219px;}
.h4_c00488{height:46.650937px;}
.hc_c00488{height:49.242656px;}
.h9_c00488{height:51.834375px;}
.h6_c00488{height:54.426094px;}
.hb_c00488{height:57.017812px;}
.hd_c00488{height:57.306094px;}
.ha_c00488{height:59.609531px;}
.h8_c00488{height:59.897813px;}
.hf_c00488{height:62.201250px;}
.h2_c00488{height:64.792969px;}
.he_c00488{height:67.384687px;}
.h5_c00488{height:69.976406px;}
.h0_c00488{height:1174.320000px;}
.h1_c00488{height:1174.500000px;}
.w1_c00488{width:784.500000px;}
.w0_c00488{width:784.800000px;}
.x0_c00488{left:0.000000px;}
.x2_c00488{left:56.160000px;}
.xe_c00488{left:67.680000px;}
.x3f_c00488{left:76.320000px;}
.x30_c00488{left:87.120000px;}
.x3_c00488{left:88.560000px;}
.x44_c00488{left:97.200000px;}
.xf_c00488{left:100.080000px;}
.x16_c00488{left:110.160000px;}
.x3c_c00488{left:120.960000px;}
.x29_c00488{left:129.600000px;}
.x23_c00488{left:131.040000px;}
.x18_c00488{left:143.280000px;}
.x1a_c00488{left:152.640000px;}
.x10_c00488{left:154.080000px;}
.x31_c00488{left:162.000000px;}
.x4_c00488{left:175.680000px;}
.x2c_c00488{left:205.920000px;}
.x22_c00488{left:216.720000px;}
.x5_c00488{left:218.880000px;}
.x32_c00488{left:229.680000px;}
.x3d_c00488{left:239.760000px;}
.x40_c00488{left:250.560000px;}
.x2d_c00488{left:261.360000px;}
.x2a_c00488{left:272.160000px;}
.x33_c00488{left:282.960000px;}
.x6_c00488{left:293.760000px;}
.x11_c00488{left:295.200000px;}
.x7_c00488{left:326.880000px;}
.x34_c00488{left:336.960000px;}
.x12_c00488{left:349.200000px;}
.x2e_c00488{left:357.840000px;}
.x3e_c00488{left:359.280000px;}
.x2b_c00488{left:369.360000px;}
.x35_c00488{left:380.880000px;}
.x13_c00488{left:391.680000px;}
.x17_c00488{left:393.120000px;}
.x36_c00488{left:401.760000px;}
.x2f_c00488{left:412.560000px;}
.x8_c00488{left:414.000000px;}
.x37_c00488{left:423.360000px;}
.x9_c00488{left:456.480000px;}
.x19_c00488{left:457.920000px;}
.x1d_c00488{left:489.600000px;}
.x42_c00488{left:498.240000px;}
.x38_c00488{left:499.680000px;}
.x27_c00488{left:531.360000px;}
.xa_c00488{left:532.800000px;}
.x24_c00488{left:543.600000px;}
.x39_c00488{left:552.960000px;}
.x43_c00488{left:563.760000px;}
.xb_c00488{left:565.200000px;}
.x1f_c00488{left:575.280000px;}
.x1c_c00488{left:576.720000px;}
.x28_c00488{left:585.360000px;}
.x1b_c00488{left:586.800000px;}
.x14_c00488{left:588.240000px;}
.x26_c00488{left:596.880000px;}
.x41_c00488{left:618.480000px;}
.x20_c00488{left:619.920000px;}
.x15_c00488{left:630.720000px;}
.x3a_c00488{left:651.600000px;}
.xc_c00488{left:653.040000px;}
.x3b_c00488{left:672.480000px;}
.x21_c00488{left:686.160000px;}
.xd_c00488{left:696.240000px;}
.x1_c00488{left:699.840000px;}
.x25_c00488{left:717.120000px;}
.x1e_c00488{left:729.360000px;}
@media print{
.v2_c00488{vertical-align:-2.560000pt;}
.v0_c00488{vertical-align:0.000000pt;}
.v1_c00488{vertical-align:2.560000pt;}
.ls0_c00488{letter-spacing:0.000000pt;}
.ws8_c00488{word-spacing:0.000000pt;}
.ws2_c00488{word-spacing:26.993917pt;}
.ws3_c00488{word-spacing:28.176852pt;}
.ws4_c00488{word-spacing:28.334507pt;}
.ws6_c00488{word-spacing:28.772029pt;}
.ws7_c00488{word-spacing:31.140346pt;}
.ws5_c00488{word-spacing:33.916800pt;}
.ws1_c00488{word-spacing:50.707149pt;}
.ws0_c00488{word-spacing:58.725547pt;}
.fs10_c00488{font-size:10.240000pt;}
.fse_c00488{font-size:12.800000pt;}
.fsd_c00488{font-size:20.480000pt;}
.fsc_c00488{font-size:30.720000pt;}
.fsf_c00488{font-size:38.400000pt;}
.fs1_c00488{font-size:40.960000pt;}
.fs5_c00488{font-size:43.520000pt;}
.fs2_c00488{font-size:46.080000pt;}
.fs9_c00488{font-size:48.640000pt;}
.fs7_c00488{font-size:51.200000pt;}
.fs4_c00488{font-size:53.760000pt;}
.fs6_c00488{font-size:56.320000pt;}
.fs8_c00488{font-size:58.880000pt;}
.fsb_c00488{font-size:61.440000pt;}
.fs0_c00488{font-size:64.000000pt;}
.fsa_c00488{font-size:66.560000pt;}
.fs3_c00488{font-size:69.120000pt;}
.y0_c00488{bottom:0.000000pt;}
.yaa_c00488{bottom:148.480000pt;}
.yac_c00488{bottom:149.760000pt;}
.yab_c00488{bottom:150.400000pt;}
.ya4_c00488{bottom:160.000000pt;}
.ya2_c00488{bottom:160.640000pt;}
.ya3_c00488{bottom:162.560000pt;}
.ya9_c00488{bottom:166.400000pt;}
.ya7_c00488{bottom:167.040000pt;}
.ya5_c00488{bottom:167.680000pt;}
.ya6_c00488{bottom:168.960000pt;}
.ya8_c00488{bottom:170.240000pt;}
.ya1_c00488{bottom:186.240000pt;}
.ya0_c00488{bottom:186.880000pt;}
.y9e_c00488{bottom:188.160000pt;}
.y9f_c00488{bottom:188.800000pt;}
.y9d_c00488{bottom:194.560000pt;}
.y9c_c00488{bottom:197.120000pt;}
.y9a_c00488{bottom:205.440000pt;}
.y9b_c00488{bottom:208.000000pt;}
.y93_c00488{bottom:216.960000pt;}
.y92_c00488{bottom:218.880000pt;}
.y99_c00488{bottom:223.360000pt;}
.y97_c00488{bottom:224.000000pt;}
.y96_c00488{bottom:224.640000pt;}
.y94_c00488{bottom:225.280000pt;}
.y98_c00488{bottom:225.920000pt;}
.y95_c00488{bottom:227.200000pt;}
.y8f_c00488{bottom:243.840000pt;}
.y91_c00488{bottom:244.480000pt;}
.y90_c00488{bottom:245.760000pt;}
.y8e_c00488{bottom:246.400000pt;}
.y8d_c00488{bottom:269.440000pt;}
.y8b_c00488{bottom:272.640000pt;}
.y8c_c00488{bottom:273.920000pt;}
.y8a_c00488{bottom:274.560000pt;}
.y89_c00488{bottom:275.200000pt;}
.y88_c00488{bottom:300.160000pt;}
.y87_c00488{bottom:300.800000pt;}
.y83_c00488{bottom:301.440000pt;}
.y85_c00488{bottom:303.360000pt;}
.y84_c00488{bottom:304.000000pt;}
.y86_c00488{bottom:305.280000pt;}
.y80_c00488{bottom:311.040000pt;}
.y81_c00488{bottom:311.680000pt;}
.y7f_c00488{bottom:313.600000pt;}
.y82_c00488{bottom:322.560000pt;}
.y7d_c00488{bottom:357.120000pt;}
.y73_c00488{bottom:357.760000pt;}
.y72_c00488{bottom:358.400000pt;}
.y7c_c00488{bottom:359.040000pt;}
.y74_c00488{bottom:359.680000pt;}
.y7e_c00488{bottom:360.320000pt;}
.y7b_c00488{bottom:394.880000pt;}
.y70_c00488{bottom:395.520000pt;}
.y71_c00488{bottom:396.160000pt;}
.y6f_c00488{bottom:396.800000pt;}
.y7a_c00488{bottom:398.720000pt;}
.y6e_c00488{bottom:433.280000pt;}
.y6d_c00488{bottom:433.920000pt;}
.y77_c00488{bottom:434.560000pt;}
.y78_c00488{bottom:435.840000pt;}
.y79_c00488{bottom:436.480000pt;}
.y76_c00488{bottom:471.040000pt;}
.y6b_c00488{bottom:471.680000pt;}
.y75_c00488{bottom:472.320000pt;}
.y68_c00488{bottom:472.960000pt;}
.y6c_c00488{bottom:473.600000pt;}
.y69_c00488{bottom:474.240000pt;}
.y6a_c00488{bottom:474.880000pt;}
.y63_c00488{bottom:508.800000pt;}
.y67_c00488{bottom:510.080000pt;}
.y66_c00488{bottom:510.720000pt;}
.y62_c00488{bottom:511.360000pt;}
.y61_c00488{bottom:547.200000pt;}
.y5f_c00488{bottom:548.480000pt;}
.y65_c00488{bottom:549.760000pt;}
.y60_c00488{bottom:551.040000pt;}
.y64_c00488{bottom:551.680000pt;}
.y5d_c00488{bottom:586.880000pt;}
.y5e_c00488{bottom:588.160000pt;}
.y5c_c00488{bottom:588.800000pt;}
.y5b_c00488{bottom:643.840000pt;}
.y5a_c00488{bottom:644.480000pt;}
.y59_c00488{bottom:645.760000pt;}
.y57_c00488{bottom:663.040000pt;}
.y56_c00488{bottom:663.680000pt;}
.y58_c00488{bottom:664.320000pt;}
.y54_c00488{bottom:681.600000pt;}
.y53_c00488{bottom:682.240000pt;}
.y50_c00488{bottom:682.880000pt;}
.y51_c00488{bottom:683.520000pt;}
.y55_c00488{bottom:684.160000pt;}
.y52_c00488{bottom:684.800000pt;}
.y4f_c00488{bottom:701.440000pt;}
.y4d_c00488{bottom:702.080000pt;}
.y4e_c00488{bottom:702.720000pt;}
.y4b_c00488{bottom:703.360000pt;}
.y4c_c00488{bottom:704.640000pt;}
.y4a_c00488{bottom:720.640000pt;}
.y48_c00488{bottom:721.280000pt;}
.y47_c00488{bottom:721.920000pt;}
.y49_c00488{bottom:722.560000pt;}
.y46_c00488{bottom:723.200000pt;}
.y45_c00488{bottom:723.840000pt;}
.y44_c00488{bottom:739.200000pt;}
.y43_c00488{bottom:739.840000pt;}
.y3e_c00488{bottom:740.480000pt;}
.y40_c00488{bottom:741.120000pt;}
.y42_c00488{bottom:741.760000pt;}
.y3f_c00488{bottom:742.400000pt;}
.y41_c00488{bottom:743.040000pt;}
.y3c_c00488{bottom:759.040000pt;}
.y39_c00488{bottom:759.680000pt;}
.y3a_c00488{bottom:760.320000pt;}
.y3d_c00488{bottom:760.960000pt;}
.y3b_c00488{bottom:761.600000pt;}
.y38_c00488{bottom:762.240000pt;}
.y36_c00488{bottom:777.600000pt;}
.y35_c00488{bottom:778.240000pt;}
.y34_c00488{bottom:778.880000pt;}
.y37_c00488{bottom:780.160000pt;}
.y33_c00488{bottom:780.800000pt;}
.y32_c00488{bottom:796.160000pt;}
.y31_c00488{bottom:796.800000pt;}
.y2f_c00488{bottom:797.440000pt;}
.y2e_c00488{bottom:798.080000pt;}
.y30_c00488{bottom:799.360000pt;}
.y2d_c00488{bottom:800.000000pt;}
.y2c_c00488{bottom:815.360000pt;}
.y2b_c00488{bottom:816.000000pt;}
.y27_c00488{bottom:816.640000pt;}
.y2a_c00488{bottom:817.280000pt;}
.y29_c00488{bottom:818.560000pt;}
.y28_c00488{bottom:819.200000pt;}
.y26_c00488{bottom:834.560000pt;}
.y25_c00488{bottom:835.200000pt;}
.y23_c00488{bottom:835.840000pt;}
.y21_c00488{bottom:836.480000pt;}
.y22_c00488{bottom:837.120000pt;}
.y24_c00488{bottom:837.760000pt;}
.y20_c00488{bottom:853.760000pt;}
.y1d_c00488{bottom:854.400000pt;}
.y1e_c00488{bottom:855.040000pt;}
.y1c_c00488{bottom:855.680000pt;}
.y1f_c00488{bottom:856.320000pt;}
.y1b_c00488{bottom:872.320000pt;}
.y17_c00488{bottom:872.960000pt;}
.y19_c00488{bottom:873.600000pt;}
.y18_c00488{bottom:874.240000pt;}
.y16_c00488{bottom:874.880000pt;}
.y1a_c00488{bottom:875.520000pt;}
.y15_c00488{bottom:891.520000pt;}
.y13_c00488{bottom:892.160000pt;}
.y11_c00488{bottom:892.800000pt;}
.y14_c00488{bottom:894.080000pt;}
.y12_c00488{bottom:894.720000pt;}
.y10_c00488{bottom:895.360000pt;}
.yf_c00488{bottom:910.080000pt;}
.ye_c00488{bottom:910.720000pt;}
.yd_c00488{bottom:911.360000pt;}
.yb_c00488{bottom:912.000000pt;}
.ya_c00488{bottom:913.280000pt;}
.yc_c00488{bottom:913.920000pt;}
.y9_c00488{bottom:914.560000pt;}
.y8_c00488{bottom:936.320000pt;}
.y4_c00488{bottom:936.960000pt;}
.y7_c00488{bottom:940.160000pt;}
.y6_c00488{bottom:940.800000pt;}
.y5_c00488{bottom:941.440000pt;}
.y3_c00488{bottom:942.080000pt;}
.y2_c00488{bottom:942.720000pt;}
.y1_c00488{bottom:983.680000pt;}
.h14_c00488{height:9.215000pt;}
.h12_c00488{height:11.518750pt;}
.h11_c00488{height:18.430000pt;}
.h10_c00488{height:27.645000pt;}
.h13_c00488{height:34.556250pt;}
.h3_c00488{height:36.860000pt;}
.h7_c00488{height:39.163750pt;}
.h4_c00488{height:41.467500pt;}
.hc_c00488{height:43.771250pt;}
.h9_c00488{height:46.075000pt;}
.h6_c00488{height:48.378750pt;}
.hb_c00488{height:50.682500pt;}
.hd_c00488{height:50.938750pt;}
.ha_c00488{height:52.986250pt;}
.h8_c00488{height:53.242500pt;}
.hf_c00488{height:55.290000pt;}
.h2_c00488{height:57.593750pt;}
.he_c00488{height:59.897500pt;}
.h5_c00488{height:62.201250pt;}
.h0_c00488{height:1043.840000pt;}
.h1_c00488{height:1044.000000pt;}
.w1_c00488{width:697.333333pt;}
.w0_c00488{width:697.600000pt;}
.x0_c00488{left:0.000000pt;}
.x2_c00488{left:49.920000pt;}
.xe_c00488{left:60.160000pt;}
.x3f_c00488{left:67.840000pt;}
.x30_c00488{left:77.440000pt;}
.x3_c00488{left:78.720000pt;}
.x44_c00488{left:86.400000pt;}
.xf_c00488{left:88.960000pt;}
.x16_c00488{left:97.920000pt;}
.x3c_c00488{left:107.520000pt;}
.x29_c00488{left:115.200000pt;}
.x23_c00488{left:116.480000pt;}
.x18_c00488{left:127.360000pt;}
.x1a_c00488{left:135.680000pt;}
.x10_c00488{left:136.960000pt;}
.x31_c00488{left:144.000000pt;}
.x4_c00488{left:156.160000pt;}
.x2c_c00488{left:183.040000pt;}
.x22_c00488{left:192.640000pt;}
.x5_c00488{left:194.560000pt;}
.x32_c00488{left:204.160000pt;}
.x3d_c00488{left:213.120000pt;}
.x40_c00488{left:222.720000pt;}
.x2d_c00488{left:232.320000pt;}
.x2a_c00488{left:241.920000pt;}
.x33_c00488{left:251.520000pt;}
.x6_c00488{left:261.120000pt;}
.x11_c00488{left:262.400000pt;}
.x7_c00488{left:290.560000pt;}
.x34_c00488{left:299.520000pt;}
.x12_c00488{left:310.400000pt;}
.x2e_c00488{left:318.080000pt;}
.x3e_c00488{left:319.360000pt;}
.x2b_c00488{left:328.320000pt;}
.x35_c00488{left:338.560000pt;}
.x13_c00488{left:348.160000pt;}
.x17_c00488{left:349.440000pt;}
.x36_c00488{left:357.120000pt;}
.x2f_c00488{left:366.720000pt;}
.x8_c00488{left:368.000000pt;}
.x37_c00488{left:376.320000pt;}
.x9_c00488{left:405.760000pt;}
.x19_c00488{left:407.040000pt;}
.x1d_c00488{left:435.200000pt;}
.x42_c00488{left:442.880000pt;}
.x38_c00488{left:444.160000pt;}
.x27_c00488{left:472.320000pt;}
.xa_c00488{left:473.600000pt;}
.x24_c00488{left:483.200000pt;}
.x39_c00488{left:491.520000pt;}
.x43_c00488{left:501.120000pt;}
.xb_c00488{left:502.400000pt;}
.x1f_c00488{left:511.360000pt;}
.x1c_c00488{left:512.640000pt;}
.x28_c00488{left:520.320000pt;}
.x1b_c00488{left:521.600000pt;}
.x14_c00488{left:522.880000pt;}
.x26_c00488{left:530.560000pt;}
.x41_c00488{left:549.760000pt;}
.x20_c00488{left:551.040000pt;}
.x15_c00488{left:560.640000pt;}
.x3a_c00488{left:579.200000pt;}
.xc_c00488{left:580.480000pt;}
.x3b_c00488{left:597.760000pt;}
.x21_c00488{left:609.920000pt;}
.xd_c00488{left:618.880000pt;}
.x1_c00488{left:622.080000pt;}
.x25_c00488{left:637.440000pt;}
.x1e_c00488{left:648.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_dd7c5120c6d0a79650430f98.woff2')format("woff");}.ff1_c00489{font-family:ff1_c00489;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3e_c00489{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m22_c00489{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m18_c00489{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_c00489{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_c00489{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00489{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m12_c00489{transform:matrix(0.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);}
.m20_c00489{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);}
.m42_c00489{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m39_c00489{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mf_c00489{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m10_c00489{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m7_c00489{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m23_c00489{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m28_c00489{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00489{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m9_c00489{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m6_c00489{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m34_c00489{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00489{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m29_c00489{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m26_c00489{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00489{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m8_c00489{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00489{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m25_c00489{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m32_c00489{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00489{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m0_c00489{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m21_c00489{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);}
.m46_c00489{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00489{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m19_c00489{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00489{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);}
.m35_c00489{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m13_c00489{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);}
.m1c_c00489{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);}
.mb_c00489{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m33_c00489{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);}
.m36_c00489{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_c00489{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m44_c00489{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m1_c00489{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m37_c00489{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);}
.m31_c00489{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m3_c00489{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);}
.mc_c00489{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);}
.m3a_c00489{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m2_c00489{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m38_c00489{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);}
.ma_c00489{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00489{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_c00489{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);}
.m47_c00489{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m11_c00489{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m14_c00489{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);}
.m2d_c00489{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00489{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m30_c00489{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00489{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);}
.m5_c00489{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m27_c00489{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00489{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00489{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m45_c00489{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);}
.m4_c00489{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);}
.m24_c00489{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00489{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);}
.m17_c00489{transform:matrix(0.817500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.817500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.817500,0.000000,0.000000,0.250000,0,0);}
.m48_c00489{transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);}
.m41_c00489{transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);}
.m40_c00489{transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);}
.m43_c00489{transform:matrix(0.940000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.940000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.940000,0.000000,0.000000,0.250000,0,0);}
.v0_c00489{vertical-align:0.000000px;}
.v2_c00489{vertical-align:2.880000px;}
.v1_c00489{vertical-align:8.640000px;}
.ls0_c00489{letter-spacing:0.000000px;}
.sc__c00489{text-shadow:none;}
.sc0_c00489{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00489{-webkit-text-stroke:0px transparent;}
.sc0_c00489{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00489{word-spacing:0.000000px;}
.ws0_c00489{word-spacing:14.533200px;}
.ws1_c00489{word-spacing:49.892400px;}
.fc0_c00489{color:transparent;}
.fsb_c00489{font-size:34.560000px;}
.fs0_c00489{font-size:43.200000px;}
.fs4_c00489{font-size:46.080000px;}
.fs2_c00489{font-size:48.960000px;}
.fs8_c00489{font-size:51.840000px;}
.fs3_c00489{font-size:54.720000px;}
.fs1_c00489{font-size:57.600000px;}
.fs6_c00489{font-size:60.480000px;}
.fs9_c00489{font-size:63.360000px;}
.fsa_c00489{font-size:66.240000px;}
.fs7_c00489{font-size:69.120000px;}
.fs5_c00489{font-size:72.000000px;}
.fsc_c00489{font-size:74.880000px;}
.fsd_c00489{font-size:77.760000px;}
.fse_c00489{font-size:100.800000px;}
.y0_c00489{bottom:0.000000px;}
.y79_c00489{bottom:14.400000px;}
.y78_c00489{bottom:15.840000px;}
.y77_c00489{bottom:18.000000px;}
.y74_c00489{bottom:44.640000px;}
.y7c_c00489{bottom:45.360000px;}
.y76_c00489{bottom:46.800000px;}
.y73_c00489{bottom:47.520000px;}
.y75_c00489{bottom:48.240000px;}
.y6f_c00489{bottom:87.120000px;}
.y6d_c00489{bottom:88.560000px;}
.y7a_c00489{bottom:89.280000px;}
.y6c_c00489{bottom:90.000000px;}
.y6e_c00489{bottom:90.720000px;}
.y7b_c00489{bottom:91.440000px;}
.y69_c00489{bottom:129.600000px;}
.y6b_c00489{bottom:130.320000px;}
.y72_c00489{bottom:131.040000px;}
.y68_c00489{bottom:131.760000px;}
.y67_c00489{bottom:133.200000px;}
.y6a_c00489{bottom:133.920000px;}
.y66_c00489{bottom:172.800000px;}
.y64_c00489{bottom:174.240000px;}
.y63_c00489{bottom:174.960000px;}
.y71_c00489{bottom:176.400000px;}
.y65_c00489{bottom:177.120000px;}
.y62_c00489{bottom:216.000000px;}
.y70_c00489{bottom:216.720000px;}
.y60_c00489{bottom:218.160000px;}
.y61_c00489{bottom:219.600000px;}
.y56_c00489{bottom:258.480000px;}
.y54_c00489{bottom:261.360000px;}
.y5f_c00489{bottom:262.080000px;}
.y55_c00489{bottom:262.800000px;}
.y57_c00489{bottom:263.520000px;}
.y53_c00489{bottom:302.400000px;}
.y52_c00489{bottom:306.000000px;}
.y51_c00489{bottom:306.720000px;}
.y4f_c00489{bottom:334.800000px;}
.y4e_c00489{bottom:335.520000px;}
.y5e_c00489{bottom:336.240000px;}
.y4c_c00489{bottom:336.960000px;}
.y50_c00489{bottom:338.400000px;}
.y4d_c00489{bottom:339.120000px;}
.y4b_c00489{bottom:378.720000px;}
.y4a_c00489{bottom:381.600000px;}
.y47_c00489{bottom:410.400000px;}
.y5d_c00489{bottom:411.840000px;}
.y45_c00489{bottom:412.560000px;}
.y49_c00489{bottom:413.280000px;}
.y48_c00489{bottom:414.000000px;}
.y46_c00489{bottom:414.720000px;}
.y41_c00489{bottom:452.880000px;}
.y43_c00489{bottom:453.600000px;}
.y42_c00489{bottom:454.320000px;}
.y3f_c00489{bottom:455.040000px;}
.y44_c00489{bottom:456.480000px;}
.y40_c00489{bottom:457.200000px;}
.y5b_c00489{bottom:487.440000px;}
.y3b_c00489{bottom:496.080000px;}
.y3d_c00489{bottom:496.800000px;}
.y5c_c00489{bottom:497.520000px;}
.y39_c00489{bottom:498.240000px;}
.y3c_c00489{bottom:498.960000px;}
.y3e_c00489{bottom:499.680000px;}
.y3a_c00489{bottom:500.400000px;}
.y38_c00489{bottom:539.280000px;}
.y36_c00489{bottom:541.440000px;}
.y37_c00489{bottom:542.880000px;}
.y33_c00489{bottom:570.960000px;}
.y5a_c00489{bottom:572.400000px;}
.y31_c00489{bottom:573.120000px;}
.y34_c00489{bottom:573.840000px;}
.y32_c00489{bottom:575.280000px;}
.y35_c00489{bottom:576.000000px;}
.y2f_c00489{bottom:613.440000px;}
.y30_c00489{bottom:614.880000px;}
.y58_c00489{bottom:615.600000px;}
.y2d_c00489{bottom:616.320000px;}
.y2e_c00489{bottom:617.760000px;}
.y59_c00489{bottom:619.200000px;}
.y2b_c00489{bottom:656.640000px;}
.y2c_c00489{bottom:658.080000px;}
.y29_c00489{bottom:658.800000px;}
.y2a_c00489{bottom:660.240000px;}
.y28_c00489{bottom:699.120000px;}
.y25_c00489{bottom:699.840000px;}
.y27_c00489{bottom:700.560000px;}
.y24_c00489{bottom:701.280000px;}
.y26_c00489{bottom:703.440000px;}
.y21_c00489{bottom:742.320000px;}
.y1f_c00489{bottom:743.760000px;}
.y22_c00489{bottom:744.480000px;}
.y23_c00489{bottom:745.920000px;}
.y20_c00489{bottom:746.640000px;}
.y1c_c00489{bottom:784.800000px;}
.y1d_c00489{bottom:786.240000px;}
.y19_c00489{bottom:786.960000px;}
.y1e_c00489{bottom:787.680000px;}
.y1b_c00489{bottom:788.400000px;}
.y1a_c00489{bottom:789.120000px;}
.y14_c00489{bottom:828.000000px;}
.y12_c00489{bottom:830.160000px;}
.y18_c00489{bottom:832.320000px;}
.y13_c00489{bottom:833.040000px;}
.y11_c00489{bottom:871.920000px;}
.yf_c00489{bottom:872.640000px;}
.y17_c00489{bottom:873.360000px;}
.y10_c00489{bottom:875.520000px;}
.ye_c00489{bottom:914.400000px;}
.y16_c00489{bottom:915.120000px;}
.yd_c00489{bottom:915.840000px;}
.yc_c00489{bottom:957.600000px;}
.ya_c00489{bottom:958.320000px;}
.y15_c00489{bottom:959.040000px;}
.yb_c00489{bottom:961.200000px;}
.y7_c00489{bottom:1000.080000px;}
.y8_c00489{bottom:1000.800000px;}
.y4_c00489{bottom:1001.520000px;}
.y9_c00489{bottom:1002.240000px;}
.y6_c00489{bottom:1003.680000px;}
.y5_c00489{bottom:1004.400000px;}
.y2_c00489{bottom:1045.440000px;}
.y3_c00489{bottom:1046.160000px;}
.y1_c00489{bottom:1047.600000px;}
.he_c00489{height:31.100625px;}
.h2_c00489{height:38.875781px;}
.h6_c00489{height:41.467500px;}
.h4_c00489{height:44.059219px;}
.h11_c00489{height:44.347500px;}
.ha_c00489{height:46.650937px;}
.h5_c00489{height:49.242656px;}
.hb_c00489{height:50.107500px;}
.h3_c00489{height:51.834375px;}
.h8_c00489{height:54.426094px;}
.hc_c00489{height:57.017812px;}
.hd_c00489{height:59.609531px;}
.h9_c00489{height:62.201250px;}
.h7_c00489{height:64.792969px;}
.hf_c00489{height:67.384687px;}
.h10_c00489{height:69.976406px;}
.h12_c00489{height:90.710156px;}
.h0_c00489{height:1172.160000px;}
.h1_c00489{height:1172.250000px;}
.w0_c00489{width:781.920000px;}
.w1_c00489{width:782.250000px;}
.x0_c00489{left:0.000000px;}
.x4_c00489{left:56.160000px;}
.x1_c00489{left:110.880000px;}
.x5_c00489{left:130.320000px;}
.x27_c00489{left:131.760000px;}
.x2_c00489{left:142.560000px;}
.x2a_c00489{left:153.360000px;}
.x6_c00489{left:173.520000px;}
.xc_c00489{left:175.680000px;}
.x20_c00489{left:185.760000px;}
.x1b_c00489{left:207.360000px;}
.x3_c00489{left:217.440000px;}
.xd_c00489{left:218.880000px;}
.x11_c00489{left:227.520000px;}
.x21_c00489{left:228.960000px;}
.x2d_c00489{left:239.760000px;}
.x2b_c00489{left:250.560000px;}
.x13_c00489{left:261.360000px;}
.x7_c00489{left:272.160000px;}
.x22_c00489{left:282.960000px;}
.x1c_c00489{left:293.760000px;}
.x28_c00489{left:304.560000px;}
.x19_c00489{left:315.360000px;}
.x14_c00489{left:316.800000px;}
.x25_c00489{left:337.680000px;}
.x1d_c00489{left:347.040000px;}
.x29_c00489{left:360.000000px;}
.x23_c00489{left:370.080000px;}
.x26_c00489{left:380.160000px;}
.x1e_c00489{left:391.680000px;}
.x24_c00489{left:402.480000px;}
.x15_c00489{left:434.160000px;}
.x2c_c00489{left:445.680000px;}
.x1a_c00489{left:467.280000px;}
.x1f_c00489{left:477.360000px;}
.x16_c00489{left:488.880000px;}
.x8_c00489{left:532.800000px;}
.x17_c00489{left:565.920000px;}
.x12_c00489{left:586.080000px;}
.x9_c00489{left:587.520000px;}
.x10_c00489{left:618.480000px;}
.xe_c00489{left:619.920000px;}
.x2f_c00489{left:621.360000px;}
.xf_c00489{left:653.040000px;}
.x30_c00489{left:654.480000px;}
.x18_c00489{left:686.160000px;}
.xa_c00489{left:696.240000px;}
.x2e_c00489{left:697.680000px;}
.xb_c00489{left:717.120000px;}
@media print{
.v0_c00489{vertical-align:0.000000pt;}
.v2_c00489{vertical-align:2.560000pt;}
.v1_c00489{vertical-align:7.680000pt;}
.ls0_c00489{letter-spacing:0.000000pt;}
.ws2_c00489{word-spacing:0.000000pt;}
.ws0_c00489{word-spacing:12.918400pt;}
.ws1_c00489{word-spacing:44.348800pt;}
.fsb_c00489{font-size:30.720000pt;}
.fs0_c00489{font-size:38.400000pt;}
.fs4_c00489{font-size:40.960000pt;}
.fs2_c00489{font-size:43.520000pt;}
.fs8_c00489{font-size:46.080000pt;}
.fs3_c00489{font-size:48.640000pt;}
.fs1_c00489{font-size:51.200000pt;}
.fs6_c00489{font-size:53.760000pt;}
.fs9_c00489{font-size:56.320000pt;}
.fsa_c00489{font-size:58.880000pt;}
.fs7_c00489{font-size:61.440000pt;}
.fs5_c00489{font-size:64.000000pt;}
.fsc_c00489{font-size:66.560000pt;}
.fsd_c00489{font-size:69.120000pt;}
.fse_c00489{font-size:89.600000pt;}
.y0_c00489{bottom:0.000000pt;}
.y79_c00489{bottom:12.800000pt;}
.y78_c00489{bottom:14.080000pt;}
.y77_c00489{bottom:16.000000pt;}
.y74_c00489{bottom:39.680000pt;}
.y7c_c00489{bottom:40.320000pt;}
.y76_c00489{bottom:41.600000pt;}
.y73_c00489{bottom:42.240000pt;}
.y75_c00489{bottom:42.880000pt;}
.y6f_c00489{bottom:77.440000pt;}
.y6d_c00489{bottom:78.720000pt;}
.y7a_c00489{bottom:79.360000pt;}
.y6c_c00489{bottom:80.000000pt;}
.y6e_c00489{bottom:80.640000pt;}
.y7b_c00489{bottom:81.280000pt;}
.y69_c00489{bottom:115.200000pt;}
.y6b_c00489{bottom:115.840000pt;}
.y72_c00489{bottom:116.480000pt;}
.y68_c00489{bottom:117.120000pt;}
.y67_c00489{bottom:118.400000pt;}
.y6a_c00489{bottom:119.040000pt;}
.y66_c00489{bottom:153.600000pt;}
.y64_c00489{bottom:154.880000pt;}
.y63_c00489{bottom:155.520000pt;}
.y71_c00489{bottom:156.800000pt;}
.y65_c00489{bottom:157.440000pt;}
.y62_c00489{bottom:192.000000pt;}
.y70_c00489{bottom:192.640000pt;}
.y60_c00489{bottom:193.920000pt;}
.y61_c00489{bottom:195.200000pt;}
.y56_c00489{bottom:229.760000pt;}
.y54_c00489{bottom:232.320000pt;}
.y5f_c00489{bottom:232.960000pt;}
.y55_c00489{bottom:233.600000pt;}
.y57_c00489{bottom:234.240000pt;}
.y53_c00489{bottom:268.800000pt;}
.y52_c00489{bottom:272.000000pt;}
.y51_c00489{bottom:272.640000pt;}
.y4f_c00489{bottom:297.600000pt;}
.y4e_c00489{bottom:298.240000pt;}
.y5e_c00489{bottom:298.880000pt;}
.y4c_c00489{bottom:299.520000pt;}
.y50_c00489{bottom:300.800000pt;}
.y4d_c00489{bottom:301.440000pt;}
.y4b_c00489{bottom:336.640000pt;}
.y4a_c00489{bottom:339.200000pt;}
.y47_c00489{bottom:364.800000pt;}
.y5d_c00489{bottom:366.080000pt;}
.y45_c00489{bottom:366.720000pt;}
.y49_c00489{bottom:367.360000pt;}
.y48_c00489{bottom:368.000000pt;}
.y46_c00489{bottom:368.640000pt;}
.y41_c00489{bottom:402.560000pt;}
.y43_c00489{bottom:403.200000pt;}
.y42_c00489{bottom:403.840000pt;}
.y3f_c00489{bottom:404.480000pt;}
.y44_c00489{bottom:405.760000pt;}
.y40_c00489{bottom:406.400000pt;}
.y5b_c00489{bottom:433.280000pt;}
.y3b_c00489{bottom:440.960000pt;}
.y3d_c00489{bottom:441.600000pt;}
.y5c_c00489{bottom:442.240000pt;}
.y39_c00489{bottom:442.880000pt;}
.y3c_c00489{bottom:443.520000pt;}
.y3e_c00489{bottom:444.160000pt;}
.y3a_c00489{bottom:444.800000pt;}
.y38_c00489{bottom:479.360000pt;}
.y36_c00489{bottom:481.280000pt;}
.y37_c00489{bottom:482.560000pt;}
.y33_c00489{bottom:507.520000pt;}
.y5a_c00489{bottom:508.800000pt;}
.y31_c00489{bottom:509.440000pt;}
.y34_c00489{bottom:510.080000pt;}
.y32_c00489{bottom:511.360000pt;}
.y35_c00489{bottom:512.000000pt;}
.y2f_c00489{bottom:545.280000pt;}
.y30_c00489{bottom:546.560000pt;}
.y58_c00489{bottom:547.200000pt;}
.y2d_c00489{bottom:547.840000pt;}
.y2e_c00489{bottom:549.120000pt;}
.y59_c00489{bottom:550.400000pt;}
.y2b_c00489{bottom:583.680000pt;}
.y2c_c00489{bottom:584.960000pt;}
.y29_c00489{bottom:585.600000pt;}
.y2a_c00489{bottom:586.880000pt;}
.y28_c00489{bottom:621.440000pt;}
.y25_c00489{bottom:622.080000pt;}
.y27_c00489{bottom:622.720000pt;}
.y24_c00489{bottom:623.360000pt;}
.y26_c00489{bottom:625.280000pt;}
.y21_c00489{bottom:659.840000pt;}
.y1f_c00489{bottom:661.120000pt;}
.y22_c00489{bottom:661.760000pt;}
.y23_c00489{bottom:663.040000pt;}
.y20_c00489{bottom:663.680000pt;}
.y1c_c00489{bottom:697.600000pt;}
.y1d_c00489{bottom:698.880000pt;}
.y19_c00489{bottom:699.520000pt;}
.y1e_c00489{bottom:700.160000pt;}
.y1b_c00489{bottom:700.800000pt;}
.y1a_c00489{bottom:701.440000pt;}
.y14_c00489{bottom:736.000000pt;}
.y12_c00489{bottom:737.920000pt;}
.y18_c00489{bottom:739.840000pt;}
.y13_c00489{bottom:740.480000pt;}
.y11_c00489{bottom:775.040000pt;}
.yf_c00489{bottom:775.680000pt;}
.y17_c00489{bottom:776.320000pt;}
.y10_c00489{bottom:778.240000pt;}
.ye_c00489{bottom:812.800000pt;}
.y16_c00489{bottom:813.440000pt;}
.yd_c00489{bottom:814.080000pt;}
.yc_c00489{bottom:851.200000pt;}
.ya_c00489{bottom:851.840000pt;}
.y15_c00489{bottom:852.480000pt;}
.yb_c00489{bottom:854.400000pt;}
.y7_c00489{bottom:888.960000pt;}
.y8_c00489{bottom:889.600000pt;}
.y4_c00489{bottom:890.240000pt;}
.y9_c00489{bottom:890.880000pt;}
.y6_c00489{bottom:892.160000pt;}
.y5_c00489{bottom:892.800000pt;}
.y2_c00489{bottom:929.280000pt;}
.y3_c00489{bottom:929.920000pt;}
.y1_c00489{bottom:931.200000pt;}
.he_c00489{height:27.645000pt;}
.h2_c00489{height:34.556250pt;}
.h6_c00489{height:36.860000pt;}
.h4_c00489{height:39.163750pt;}
.h11_c00489{height:39.420000pt;}
.ha_c00489{height:41.467500pt;}
.h5_c00489{height:43.771250pt;}
.hb_c00489{height:44.540000pt;}
.h3_c00489{height:46.075000pt;}
.h8_c00489{height:48.378750pt;}
.hc_c00489{height:50.682500pt;}
.hd_c00489{height:52.986250pt;}
.h9_c00489{height:55.290000pt;}
.h7_c00489{height:57.593750pt;}
.hf_c00489{height:59.897500pt;}
.h10_c00489{height:62.201250pt;}
.h12_c00489{height:80.631250pt;}
.h0_c00489{height:1041.920000pt;}
.h1_c00489{height:1042.000000pt;}
.w0_c00489{width:695.040000pt;}
.w1_c00489{width:695.333333pt;}
.x0_c00489{left:0.000000pt;}
.x4_c00489{left:49.920000pt;}
.x1_c00489{left:98.560000pt;}
.x5_c00489{left:115.840000pt;}
.x27_c00489{left:117.120000pt;}
.x2_c00489{left:126.720000pt;}
.x2a_c00489{left:136.320000pt;}
.x6_c00489{left:154.240000pt;}
.xc_c00489{left:156.160000pt;}
.x20_c00489{left:165.120000pt;}
.x1b_c00489{left:184.320000pt;}
.x3_c00489{left:193.280000pt;}
.xd_c00489{left:194.560000pt;}
.x11_c00489{left:202.240000pt;}
.x21_c00489{left:203.520000pt;}
.x2d_c00489{left:213.120000pt;}
.x2b_c00489{left:222.720000pt;}
.x13_c00489{left:232.320000pt;}
.x7_c00489{left:241.920000pt;}
.x22_c00489{left:251.520000pt;}
.x1c_c00489{left:261.120000pt;}
.x28_c00489{left:270.720000pt;}
.x19_c00489{left:280.320000pt;}
.x14_c00489{left:281.600000pt;}
.x25_c00489{left:300.160000pt;}
.x1d_c00489{left:308.480000pt;}
.x29_c00489{left:320.000000pt;}
.x23_c00489{left:328.960000pt;}
.x26_c00489{left:337.920000pt;}
.x1e_c00489{left:348.160000pt;}
.x24_c00489{left:357.760000pt;}
.x15_c00489{left:385.920000pt;}
.x2c_c00489{left:396.160000pt;}
.x1a_c00489{left:415.360000pt;}
.x1f_c00489{left:424.320000pt;}
.x16_c00489{left:434.560000pt;}
.x8_c00489{left:473.600000pt;}
.x17_c00489{left:503.040000pt;}
.x12_c00489{left:520.960000pt;}
.x9_c00489{left:522.240000pt;}
.x10_c00489{left:549.760000pt;}
.xe_c00489{left:551.040000pt;}
.x2f_c00489{left:552.320000pt;}
.xf_c00489{left:580.480000pt;}
.x30_c00489{left:581.760000pt;}
.x18_c00489{left:609.920000pt;}
.xa_c00489{left:618.880000pt;}
.x2e_c00489{left:620.160000pt;}
.xb_c00489{left:637.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_fb8e3b614ef66ddde4236ced.woff2')format("woff");}.ff1_c00490{font-family:ff1_c00490;line-height:1.109863;font-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_c00490{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m35_c00490{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m22_c00490{transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);}
.m20_c00490{transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);}
.m37_c00490{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m25_c00490{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m1e_c00490{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);}
.m26_c00490{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00490{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m32_c00490{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1_c00490{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m3_c00490{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m6_c00490{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);}
.m38_c00490{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00490{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m10_c00490{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00490{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);}
.m2b_c00490{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2_c00490{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m4_c00490{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m16_c00490{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m7_c00490{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00490{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00490{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m14_c00490{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m39_c00490{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m36_c00490{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m33_c00490{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m13_c00490{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m12_c00490{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m5_c00490{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m30_c00490{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m23_c00490{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);}
.m2c_c00490{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m8_c00490{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m15_c00490{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);}
.m27_c00490{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m0_c00490{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m29_c00490{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.md_c00490{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.mb_c00490{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.me_c00490{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_c00490{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);}
.m31_c00490{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00490{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m17_c00490{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);}
.m9_c00490{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m11_c00490{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.mf_c00490{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m24_c00490{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00490{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m21_c00490{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.mc_c00490{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);}
.m19_c00490{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.ma_c00490{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m28_c00490{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00490{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00490{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m34_c00490{transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);}
.v0_c00490{vertical-align:0.000000px;}
.v1_c00490{vertical-align:2.880000px;}
.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;}
}
.ws4_c00490{word-spacing:0.000000px;}
.ws1_c00490{word-spacing:11.856000px;}
.ws2_c00490{word-spacing:12.615600px;}
.ws3_c00490{word-spacing:13.463637px;}
.ws0_c00490{word-spacing:48.954482px;}
.fc0_c00490{color:transparent;}
.fs5_c00490{font-size:34.560000px;}
.fs4_c00490{font-size:43.200000px;}
.fsa_c00490{font-size:46.080000px;}
.fs3_c00490{font-size:48.960000px;}
.fsb_c00490{font-size:51.840000px;}
.fs7_c00490{font-size:54.720000px;}
.fs6_c00490{font-size:57.600000px;}
.fs0_c00490{font-size:60.480000px;}
.fs9_c00490{font-size:63.360000px;}
.fs2_c00490{font-size:66.240000px;}
.fsc_c00490{font-size:69.120000px;}
.fs1_c00490{font-size:72.000000px;}
.fs8_c00490{font-size:74.880000px;}
.y0_c00490{bottom:0.000000px;}
.y3b_c00490{bottom:57.600000px;}
.y3e_c00490{bottom:59.040000px;}
.y76_c00490{bottom:59.760000px;}
.y3a_c00490{bottom:60.480000px;}
.y3d_c00490{bottom:61.200000px;}
.y3c_c00490{bottom:61.920000px;}
.y37_c00490{bottom:100.800000px;}
.y39_c00490{bottom:102.240000px;}
.y75_c00490{bottom:102.960000px;}
.y36_c00490{bottom:103.680000px;}
.y38_c00490{bottom:105.120000px;}
.y35_c00490{bottom:144.720000px;}
.y74_c00490{bottom:146.160000px;}
.y34_c00490{bottom:146.880000px;}
.y73_c00490{bottom:149.040000px;}
.y31_c00490{bottom:187.920000px;}
.y33_c00490{bottom:188.640000px;}
.y72_c00490{bottom:189.360000px;}
.y30_c00490{bottom:190.080000px;}
.y32_c00490{bottom:191.520000px;}
.y2d_c00490{bottom:231.120000px;}
.y2f_c00490{bottom:231.840000px;}
.y71_c00490{bottom:232.560000px;}
.y2c_c00490{bottom:233.280000px;}
.y70_c00490{bottom:234.000000px;}
.y2e_c00490{bottom:234.720000px;}
.y6f_c00490{bottom:235.440000px;}
.y2b_c00490{bottom:274.320000px;}
.y6d_c00490{bottom:275.040000px;}
.y69_c00490{bottom:275.760000px;}
.y2a_c00490{bottom:276.480000px;}
.y6e_c00490{bottom:277.920000px;}
.y68_c00490{bottom:278.640000px;}
.y29_c00490{bottom:316.800000px;}
.y6c_c00490{bottom:318.960000px;}
.y28_c00490{bottom:319.680000px;}
.y67_c00490{bottom:320.400000px;}
.y66_c00490{bottom:321.120000px;}
.y27_c00490{bottom:360.000000px;}
.y65_c00490{bottom:361.440000px;}
.y26_c00490{bottom:362.160000px;}
.y6b_c00490{bottom:362.880000px;}
.y64_c00490{bottom:364.320000px;}
.y25_c00490{bottom:402.480000px;}
.y24_c00490{bottom:404.640000px;}
.y6a_c00490{bottom:406.080000px;}
.y63_c00490{bottom:406.800000px;}
.y23_c00490{bottom:445.680000px;}
.y61_c00490{bottom:446.400000px;}
.y62_c00490{bottom:447.120000px;}
.y22_c00490{bottom:447.840000px;}
.y60_c00490{bottom:449.280000px;}
.y21_c00490{bottom:488.160000px;}
.y5e_c00490{bottom:488.880000px;}
.y20_c00490{bottom:490.320000px;}
.y5f_c00490{bottom:491.040000px;}
.y5d_c00490{bottom:492.480000px;}
.y1f_c00490{bottom:531.360000px;}
.y5c_c00490{bottom:532.080000px;}
.y1e_c00490{bottom:532.800000px;}
.y5b_c00490{bottom:534.960000px;}
.y1d_c00490{bottom:573.840000px;}
.y5a_c00490{bottom:575.280000px;}
.y1c_c00490{bottom:576.000000px;}
.y59_c00490{bottom:578.160000px;}
.y1b_c00490{bottom:617.040000px;}
.y57_c00490{bottom:617.760000px;}
.y19_c00490{bottom:618.480000px;}
.y58_c00490{bottom:619.200000px;}
.y1a_c00490{bottom:620.640000px;}
.y56_c00490{bottom:622.080000px;}
.y18_c00490{bottom:659.520000px;}
.y55_c00490{bottom:660.960000px;}
.y16_c00490{bottom:661.680000px;}
.y17_c00490{bottom:663.840000px;}
.y15_c00490{bottom:702.720000px;}
.y54_c00490{bottom:703.440000px;}
.y14_c00490{bottom:704.160000px;}
.y53_c00490{bottom:704.880000px;}
.y52_c00490{bottom:707.040000px;}
.y10_c00490{bottom:745.920000px;}
.y12_c00490{bottom:747.360000px;}
.yf_c00490{bottom:748.080000px;}
.y11_c00490{bottom:749.520000px;}
.y13_c00490{bottom:750.240000px;}
.ye_c00490{bottom:789.120000px;}
.y51_c00490{bottom:789.840000px;}
.yd_c00490{bottom:790.560000px;}
.y50_c00490{bottom:791.280000px;}
.y4f_c00490{bottom:793.440000px;}
.yc_c00490{bottom:832.320000px;}
.y4e_c00490{bottom:833.040000px;}
.yb_c00490{bottom:833.760000px;}
.y4d_c00490{bottom:835.920000px;}
.ya_c00490{bottom:875.520000px;}
.y4c_c00490{bottom:876.240000px;}
.y9_c00490{bottom:876.960000px;}
.y4b_c00490{bottom:878.400000px;}
.y8_c00490{bottom:918.000000px;}
.y49_c00490{bottom:918.720000px;}
.y7_c00490{bottom:919.440000px;}
.y48_c00490{bottom:920.880000px;}
.y4a_c00490{bottom:921.600000px;}
.y6_c00490{bottom:960.480000px;}
.y47_c00490{bottom:961.200000px;}
.y46_c00490{bottom:961.920000px;}
.y5_c00490{bottom:962.640000px;}
.y45_c00490{bottom:964.080000px;}
.y4_c00490{bottom:1002.960000px;}
.y44_c00490{bottom:1003.680000px;}
.y43_c00490{bottom:1004.400000px;}
.y3_c00490{bottom:1005.120000px;}
.y42_c00490{bottom:1006.560000px;}
.y2_c00490{bottom:1046.160000px;}
.y3f_c00490{bottom:1046.880000px;}
.y1_c00490{bottom:1047.600000px;}
.y41_c00490{bottom:1048.320000px;}
.y40_c00490{bottom:1049.040000px;}
.h7_c00490{height:31.100625px;}
.h6_c00490{height:38.875781px;}
.hc_c00490{height:41.467500px;}
.h5_c00490{height:44.059219px;}
.hd_c00490{height:46.650937px;}
.h9_c00490{height:49.242656px;}
.h8_c00490{height:51.834375px;}
.h10_c00490{height:52.122656px;}
.h2_c00490{height:54.426094px;}
.hf_c00490{height:54.714375px;}
.hb_c00490{height:57.017812px;}
.h4_c00490{height:59.609531px;}
.he_c00490{height:62.201250px;}
.h3_c00490{height:64.792969px;}
.ha_c00490{height:67.384687px;}
.h1_c00490{height:1167.750000px;}
.h0_c00490{height:1167.840000px;}
.w0_c00490{width:775.440000px;}
.w1_c00490{width:775.500000px;}
.x0_c00490{left:0.000000px;}
.x1_c00490{left:43.200000px;}
.x2_c00490{left:118.080000px;}
.x8_c00490{left:152.640000px;}
.xe_c00490{left:204.480000px;}
.xc_c00490{left:248.400000px;}
.x3_c00490{left:269.280000px;}
.xa_c00490{left:280.800000px;}
.xd_c00490{left:303.120000px;}
.x4_c00490{left:313.200000px;}
.xb_c00490{left:335.520000px;}
.x5_c00490{left:345.600000px;}
.x6_c00490{left:367.200000px;}
.x7_c00490{left:410.400000px;}
.xf_c00490{left:433.440000px;}
.x9_c00490{left:465.120000px;}
.x10_c00490{left:530.640000px;}
.x11_c00490{left:552.240000px;}
.x19_c00490{left:553.680000px;}
.x16_c00490{left:573.840000px;}
.x12_c00490{left:606.960000px;}
.x1a_c00490{left:617.760000px;}
.x13_c00490{left:639.360000px;}
.x18_c00490{left:640.800000px;}
.x17_c00490{left:650.160000px;}
.x1b_c00490{left:651.600000px;}
.x14_c00490{left:683.280000px;}
.x1c_c00490{left:694.800000px;}
.x15_c00490{left:703.440000px;}
@media print{
.v0_c00490{vertical-align:0.000000pt;}
.v1_c00490{vertical-align:2.560000pt;}
.ls0_c00490{letter-spacing:0.000000pt;}
.ws4_c00490{word-spacing:0.000000pt;}
.ws1_c00490{word-spacing:10.538667pt;}
.ws2_c00490{word-spacing:11.213867pt;}
.ws3_c00490{word-spacing:11.967677pt;}
.ws0_c00490{word-spacing:43.515095pt;}
.fs5_c00490{font-size:30.720000pt;}
.fs4_c00490{font-size:38.400000pt;}
.fsa_c00490{font-size:40.960000pt;}
.fs3_c00490{font-size:43.520000pt;}
.fsb_c00490{font-size:46.080000pt;}
.fs7_c00490{font-size:48.640000pt;}
.fs6_c00490{font-size:51.200000pt;}
.fs0_c00490{font-size:53.760000pt;}
.fs9_c00490{font-size:56.320000pt;}
.fs2_c00490{font-size:58.880000pt;}
.fsc_c00490{font-size:61.440000pt;}
.fs1_c00490{font-size:64.000000pt;}
.fs8_c00490{font-size:66.560000pt;}
.y0_c00490{bottom:0.000000pt;}
.y3b_c00490{bottom:51.200000pt;}
.y3e_c00490{bottom:52.480000pt;}
.y76_c00490{bottom:53.120000pt;}
.y3a_c00490{bottom:53.760000pt;}
.y3d_c00490{bottom:54.400000pt;}
.y3c_c00490{bottom:55.040000pt;}
.y37_c00490{bottom:89.600000pt;}
.y39_c00490{bottom:90.880000pt;}
.y75_c00490{bottom:91.520000pt;}
.y36_c00490{bottom:92.160000pt;}
.y38_c00490{bottom:93.440000pt;}
.y35_c00490{bottom:128.640000pt;}
.y74_c00490{bottom:129.920000pt;}
.y34_c00490{bottom:130.560000pt;}
.y73_c00490{bottom:132.480000pt;}
.y31_c00490{bottom:167.040000pt;}
.y33_c00490{bottom:167.680000pt;}
.y72_c00490{bottom:168.320000pt;}
.y30_c00490{bottom:168.960000pt;}
.y32_c00490{bottom:170.240000pt;}
.y2d_c00490{bottom:205.440000pt;}
.y2f_c00490{bottom:206.080000pt;}
.y71_c00490{bottom:206.720000pt;}
.y2c_c00490{bottom:207.360000pt;}
.y70_c00490{bottom:208.000000pt;}
.y2e_c00490{bottom:208.640000pt;}
.y6f_c00490{bottom:209.280000pt;}
.y2b_c00490{bottom:243.840000pt;}
.y6d_c00490{bottom:244.480000pt;}
.y69_c00490{bottom:245.120000pt;}
.y2a_c00490{bottom:245.760000pt;}
.y6e_c00490{bottom:247.040000pt;}
.y68_c00490{bottom:247.680000pt;}
.y29_c00490{bottom:281.600000pt;}
.y6c_c00490{bottom:283.520000pt;}
.y28_c00490{bottom:284.160000pt;}
.y67_c00490{bottom:284.800000pt;}
.y66_c00490{bottom:285.440000pt;}
.y27_c00490{bottom:320.000000pt;}
.y65_c00490{bottom:321.280000pt;}
.y26_c00490{bottom:321.920000pt;}
.y6b_c00490{bottom:322.560000pt;}
.y64_c00490{bottom:323.840000pt;}
.y25_c00490{bottom:357.760000pt;}
.y24_c00490{bottom:359.680000pt;}
.y6a_c00490{bottom:360.960000pt;}
.y63_c00490{bottom:361.600000pt;}
.y23_c00490{bottom:396.160000pt;}
.y61_c00490{bottom:396.800000pt;}
.y62_c00490{bottom:397.440000pt;}
.y22_c00490{bottom:398.080000pt;}
.y60_c00490{bottom:399.360000pt;}
.y21_c00490{bottom:433.920000pt;}
.y5e_c00490{bottom:434.560000pt;}
.y20_c00490{bottom:435.840000pt;}
.y5f_c00490{bottom:436.480000pt;}
.y5d_c00490{bottom:437.760000pt;}
.y1f_c00490{bottom:472.320000pt;}
.y5c_c00490{bottom:472.960000pt;}
.y1e_c00490{bottom:473.600000pt;}
.y5b_c00490{bottom:475.520000pt;}
.y1d_c00490{bottom:510.080000pt;}
.y5a_c00490{bottom:511.360000pt;}
.y1c_c00490{bottom:512.000000pt;}
.y59_c00490{bottom:513.920000pt;}
.y1b_c00490{bottom:548.480000pt;}
.y57_c00490{bottom:549.120000pt;}
.y19_c00490{bottom:549.760000pt;}
.y58_c00490{bottom:550.400000pt;}
.y1a_c00490{bottom:551.680000pt;}
.y56_c00490{bottom:552.960000pt;}
.y18_c00490{bottom:586.240000pt;}
.y55_c00490{bottom:587.520000pt;}
.y16_c00490{bottom:588.160000pt;}
.y17_c00490{bottom:590.080000pt;}
.y15_c00490{bottom:624.640000pt;}
.y54_c00490{bottom:625.280000pt;}
.y14_c00490{bottom:625.920000pt;}
.y53_c00490{bottom:626.560000pt;}
.y52_c00490{bottom:628.480000pt;}
.y10_c00490{bottom:663.040000pt;}
.y12_c00490{bottom:664.320000pt;}
.yf_c00490{bottom:664.960000pt;}
.y11_c00490{bottom:666.240000pt;}
.y13_c00490{bottom:666.880000pt;}
.ye_c00490{bottom:701.440000pt;}
.y51_c00490{bottom:702.080000pt;}
.yd_c00490{bottom:702.720000pt;}
.y50_c00490{bottom:703.360000pt;}
.y4f_c00490{bottom:705.280000pt;}
.yc_c00490{bottom:739.840000pt;}
.y4e_c00490{bottom:740.480000pt;}
.yb_c00490{bottom:741.120000pt;}
.y4d_c00490{bottom:743.040000pt;}
.ya_c00490{bottom:778.240000pt;}
.y4c_c00490{bottom:778.880000pt;}
.y9_c00490{bottom:779.520000pt;}
.y4b_c00490{bottom:780.800000pt;}
.y8_c00490{bottom:816.000000pt;}
.y49_c00490{bottom:816.640000pt;}
.y7_c00490{bottom:817.280000pt;}
.y48_c00490{bottom:818.560000pt;}
.y4a_c00490{bottom:819.200000pt;}
.y6_c00490{bottom:853.760000pt;}
.y47_c00490{bottom:854.400000pt;}
.y46_c00490{bottom:855.040000pt;}
.y5_c00490{bottom:855.680000pt;}
.y45_c00490{bottom:856.960000pt;}
.y4_c00490{bottom:891.520000pt;}
.y44_c00490{bottom:892.160000pt;}
.y43_c00490{bottom:892.800000pt;}
.y3_c00490{bottom:893.440000pt;}
.y42_c00490{bottom:894.720000pt;}
.y2_c00490{bottom:929.920000pt;}
.y3f_c00490{bottom:930.560000pt;}
.y1_c00490{bottom:931.200000pt;}
.y41_c00490{bottom:931.840000pt;}
.y40_c00490{bottom:932.480000pt;}
.h7_c00490{height:27.645000pt;}
.h6_c00490{height:34.556250pt;}
.hc_c00490{height:36.860000pt;}
.h5_c00490{height:39.163750pt;}
.hd_c00490{height:41.467500pt;}
.h9_c00490{height:43.771250pt;}
.h8_c00490{height:46.075000pt;}
.h10_c00490{height:46.331250pt;}
.h2_c00490{height:48.378750pt;}
.hf_c00490{height:48.635000pt;}
.hb_c00490{height:50.682500pt;}
.h4_c00490{height:52.986250pt;}
.he_c00490{height:55.290000pt;}
.h3_c00490{height:57.593750pt;}
.ha_c00490{height:59.897500pt;}
.h1_c00490{height:1038.000000pt;}
.h0_c00490{height:1038.080000pt;}
.w0_c00490{width:689.280000pt;}
.w1_c00490{width:689.333333pt;}
.x0_c00490{left:0.000000pt;}
.x1_c00490{left:38.400000pt;}
.x2_c00490{left:104.960000pt;}
.x8_c00490{left:135.680000pt;}
.xe_c00490{left:181.760000pt;}
.xc_c00490{left:220.800000pt;}
.x3_c00490{left:239.360000pt;}
.xa_c00490{left:249.600000pt;}
.xd_c00490{left:269.440000pt;}
.x4_c00490{left:278.400000pt;}
.xb_c00490{left:298.240000pt;}
.x5_c00490{left:307.200000pt;}
.x6_c00490{left:326.400000pt;}
.x7_c00490{left:364.800000pt;}
.xf_c00490{left:385.280000pt;}
.x9_c00490{left:413.440000pt;}
.x10_c00490{left:471.680000pt;}
.x11_c00490{left:490.880000pt;}
.x19_c00490{left:492.160000pt;}
.x16_c00490{left:510.080000pt;}
.x12_c00490{left:539.520000pt;}
.x1a_c00490{left:549.120000pt;}
.x13_c00490{left:568.320000pt;}
.x18_c00490{left:569.600000pt;}
.x17_c00490{left:577.920000pt;}
.x1b_c00490{left:579.200000pt;}
.x14_c00490{left:607.360000pt;}
.x1c_c00490{left:617.600000pt;}
.x15_c00490{left:625.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_26e98ce067ed90f7f9dc435f.woff2')format("woff");}.ff1_c00491{font-family:ff1_c00491;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m36_c00491{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m24_c00491{transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);}
.m1e_c00491{transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);}
.m7_c00491{transform:matrix(0.244425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244425,0.000000,0.000000,0.250000,0,0);}
.m44_c00491{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.ma_c00491{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m28_c00491{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m23_c00491{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m37_c00491{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m10_c00491{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.me_c00491{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_c00491{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);}
.m3e_c00491{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);}
.m20_c00491{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);}
.m22_c00491{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_c00491{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m11_c00491{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.mf_c00491{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.mc_c00491{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m5_c00491{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);}
.m2e_c00491{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00491{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m29_c00491{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m9_c00491{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m14_c00491{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m41_c00491{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m27_c00491{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00491{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m6_c00491{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m43_c00491{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00491{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m12_c00491{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m33_c00491{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m15_c00491{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m31_c00491{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m19_c00491{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);}
.m38_c00491{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);}
.m3f_c00491{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);}
.m35_c00491{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m34_c00491{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m16_c00491{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m0_c00491{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m3_c00491{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);}
.m30_c00491{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.md_c00491{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m21_c00491{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00491{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);}
.m39_c00491{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);}
.m1f_c00491{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m4_c00491{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m18_c00491{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00491{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);}
.m25_c00491{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00491{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);}
.m2a_c00491{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m13_c00491{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);}
.m40_c00491{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00491{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00491{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m26_c00491{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m17_c00491{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m45_c00491{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.mb_c00491{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00491{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m2_c00491{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m32_c00491{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);}
.m2d_c00491{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00491{transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00491{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m42_c00491{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.v0_c00491{vertical-align:0.000000px;}
.v1_c00491{vertical-align:8.640000px;}
.ls0_c00491{letter-spacing:0.000000px;}
.sc__c00491{text-shadow:none;}
.sc0_c00491{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00491{-webkit-text-stroke:0px transparent;}
.sc0_c00491{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00491{word-spacing:0.000000px;}
.ws0_c00491{word-spacing:17.079600px;}
.fc0_c00491{color:transparent;}
.fsb_c00491{font-size:34.560000px;}
.fsc_c00491{font-size:40.320000px;}
.fs9_c00491{font-size:43.200000px;}
.fsa_c00491{font-size:46.080000px;}
.fs2_c00491{font-size:48.960000px;}
.fs4_c00491{font-size:51.840000px;}
.fs6_c00491{font-size:54.720000px;}
.fs8_c00491{font-size:57.600000px;}
.fs7_c00491{font-size:60.480000px;}
.fs0_c00491{font-size:63.360000px;}
.fsd_c00491{font-size:66.240000px;}
.fs5_c00491{font-size:69.120000px;}
.fs1_c00491{font-size:72.000000px;}
.fs3_c00491{font-size:74.880000px;}
.y0_c00491{bottom:0.000000px;}
.y75_c00491{bottom:24.480000px;}
.y74_c00491{bottom:27.360000px;}
.y85_c00491{bottom:28.080000px;}
.y84_c00491{bottom:29.520000px;}
.y73_c00491{bottom:67.680000px;}
.y82_c00491{bottom:69.840000px;}
.y72_c00491{bottom:70.560000px;}
.y83_c00491{bottom:71.280000px;}
.y81_c00491{bottom:72.000000px;}
.y71_c00491{bottom:110.880000px;}
.y70_c00491{bottom:113.760000px;}
.y7f_c00491{bottom:115.200000px;}
.y80_c00491{bottom:115.920000px;}
.y6f_c00491{bottom:154.080000px;}
.y7d_c00491{bottom:155.520000px;}
.y7e_c00491{bottom:156.240000px;}
.y6e_c00491{bottom:156.960000px;}
.y7c_c00491{bottom:157.680000px;}
.y6b_c00491{bottom:196.560000px;}
.y6d_c00491{bottom:198.720000px;}
.y6a_c00491{bottom:199.440000px;}
.y6c_c00491{bottom:200.880000px;}
.y7b_c00491{bottom:201.600000px;}
.y69_c00491{bottom:239.760000px;}
.y7a_c00491{bottom:241.200000px;}
.y68_c00491{bottom:241.920000px;}
.y78_c00491{bottom:244.080000px;}
.y79_c00491{bottom:244.800000px;}
.y67_c00491{bottom:282.240000px;}
.y77_c00491{bottom:284.400000px;}
.y66_c00491{bottom:285.120000px;}
.y61_c00491{bottom:325.440000px;}
.y60_c00491{bottom:326.160000px;}
.y63_c00491{bottom:326.880000px;}
.y65_c00491{bottom:327.600000px;}
.y76_c00491{bottom:328.320000px;}
.y62_c00491{bottom:329.040000px;}
.y64_c00491{bottom:329.760000px;}
.y46_c00491{bottom:368.640000px;}
.y48_c00491{bottom:369.360000px;}
.y47_c00491{bottom:370.080000px;}
.y5f_c00491{bottom:370.800000px;}
.y45_c00491{bottom:371.520000px;}
.y40_c00491{bottom:411.840000px;}
.y44_c00491{bottom:412.560000px;}
.y42_c00491{bottom:413.280000px;}
.y5e_c00491{bottom:414.000000px;}
.y3f_c00491{bottom:414.720000px;}
.y41_c00491{bottom:416.160000px;}
.y43_c00491{bottom:416.880000px;}
.y3e_c00491{bottom:447.840000px;}
.y3a_c00491{bottom:455.040000px;}
.y3c_c00491{bottom:455.760000px;}
.y3d_c00491{bottom:456.480000px;}
.y39_c00491{bottom:457.200000px;}
.y5d_c00491{bottom:457.920000px;}
.y3b_c00491{bottom:458.640000px;}
.y38_c00491{bottom:498.240000px;}
.y5b_c00491{bottom:498.960000px;}
.y5c_c00491{bottom:499.680000px;}
.y37_c00491{bottom:500.400000px;}
.y59_c00491{bottom:501.120000px;}
.y5a_c00491{bottom:502.560000px;}
.y35_c00491{bottom:541.440000px;}
.y58_c00491{bottom:542.160000px;}
.y56_c00491{bottom:542.880000px;}
.y34_c00491{bottom:543.600000px;}
.y36_c00491{bottom:545.040000px;}
.y57_c00491{bottom:545.760000px;}
.y30_c00491{bottom:584.640000px;}
.y2f_c00491{bottom:586.080000px;}
.y54_c00491{bottom:586.800000px;}
.y31_c00491{bottom:587.520000px;}
.y33_c00491{bottom:588.240000px;}
.y32_c00491{bottom:588.960000px;}
.y55_c00491{bottom:589.680000px;}
.y2e_c00491{bottom:627.840000px;}
.y2d_c00491{bottom:629.280000px;}
.y53_c00491{bottom:630.000000px;}
.y2a_c00491{bottom:669.600000px;}
.y2c_c00491{bottom:670.320000px;}
.y29_c00491{bottom:671.760000px;}
.y51_c00491{bottom:672.480000px;}
.y2b_c00491{bottom:673.920000px;}
.y52_c00491{bottom:674.640000px;}
.y28_c00491{bottom:712.800000px;}
.y27_c00491{bottom:714.240000px;}
.y50_c00491{bottom:714.960000px;}
.y24_c00491{bottom:755.280000px;}
.y26_c00491{bottom:756.000000px;}
.y23_c00491{bottom:756.720000px;}
.y4e_c00491{bottom:757.440000px;}
.y4f_c00491{bottom:758.160000px;}
.y25_c00491{bottom:758.880000px;}
.y22_c00491{bottom:798.480000px;}
.y4c_c00491{bottom:799.200000px;}
.y21_c00491{bottom:799.920000px;}
.y4d_c00491{bottom:800.640000px;}
.y4b_c00491{bottom:802.080000px;}
.y1f_c00491{bottom:840.960000px;}
.y20_c00491{bottom:841.680000px;}
.y1e_c00491{bottom:843.120000px;}
.y4a_c00491{bottom:845.280000px;}
.y1a_c00491{bottom:883.440000px;}
.y1b_c00491{bottom:885.600000px;}
.y1d_c00491{bottom:887.040000px;}
.y1c_c00491{bottom:887.760000px;}
.y15_c00491{bottom:915.840000px;}
.y17_c00491{bottom:916.560000px;}
.y14_c00491{bottom:917.280000px;}
.y19_c00491{bottom:918.000000px;}
.y18_c00491{bottom:918.720000px;}
.y16_c00491{bottom:919.440000px;}
.y49_c00491{bottom:920.160000px;}
.ya_c00491{bottom:959.040000px;}
.y12_c00491{bottom:959.760000px;}
.y9_c00491{bottom:960.480000px;}
.y11_c00491{bottom:961.200000px;}
.yb_c00491{bottom:962.640000px;}
.y13_c00491{bottom:963.360000px;}
.y7_c00491{bottom:1001.520000px;}
.y8_c00491{bottom:1002.240000px;}
.y6_c00491{bottom:1003.680000px;}
.ye_c00491{bottom:1005.120000px;}
.y10_c00491{bottom:1005.840000px;}
.y5_c00491{bottom:1016.640000px;}
.y4_c00491{bottom:1044.000000px;}
.y2_c00491{bottom:1044.720000px;}
.yd_c00491{bottom:1045.440000px;}
.yf_c00491{bottom:1046.160000px;}
.y1_c00491{bottom:1046.880000px;}
.y3_c00491{bottom:1048.320000px;}
.yc_c00491{bottom:1100.160000px;}
.hd_c00491{height:31.100625px;}
.he_c00491{height:36.284062px;}
.hb_c00491{height:38.875781px;}
.hc_c00491{height:41.467500px;}
.h4_c00491{height:44.059219px;}
.h6_c00491{height:46.650937px;}
.h8_c00491{height:49.242656px;}
.ha_c00491{height:51.834375px;}
.h9_c00491{height:54.426094px;}
.h2_c00491{height:57.017812px;}
.h10_c00491{height:57.882656px;}
.hf_c00491{height:59.609531px;}
.h7_c00491{height:62.201250px;}
.h3_c00491{height:64.792969px;}
.h5_c00491{height:67.384687px;}
.h0_c00491{height:1170.720000px;}
.h1_c00491{height:1170.750000px;}
.w0_c00491{width:780.480000px;}
.w1_c00491{width:780.750000px;}
.x0_c00491{left:0.000000px;}
.x1_c00491{left:49.680000px;}
.x7_c00491{left:92.160000px;}
.x2_c00491{left:125.280000px;}
.x8_c00491{left:126.720000px;}
.x9_c00491{left:180.000000px;}
.xb_c00491{left:211.680000px;}
.x1e_c00491{left:213.120000px;}
.x18_c00491{left:233.280000px;}
.x1c_c00491{left:245.520000px;}
.x3_c00491{left:254.880000px;}
.x2d_c00491{left:256.320000px;}
.xc_c00491{left:266.400000px;}
.x19_c00491{left:286.560000px;}
.x1d_c00491{left:288.000000px;}
.x4_c00491{left:308.160000px;}
.x15_c00491{left:309.600000px;}
.x2e_c00491{left:311.040000px;}
.x1a_c00491{left:331.920000px;}
.xa_c00491{left:342.000000px;}
.x5_c00491{left:352.800000px;}
.x1b_c00491{left:374.400000px;}
.x31_c00491{left:386.640000px;}
.x6_c00491{left:395.280000px;}
.x22_c00491{left:396.720000px;}
.x1f_c00491{left:416.880000px;}
.x23_c00491{left:429.120000px;}
.x16_c00491{left:438.480000px;}
.x2f_c00491{left:439.920000px;}
.x24_c00491{left:450.000000px;}
.x20_c00491{left:460.800000px;}
.x21_c00491{left:472.320000px;}
.x30_c00491{left:483.120000px;}
.x17_c00491{left:493.200000px;}
.x34_c00491{left:527.760000px;}
.xe_c00491{left:537.840000px;}
.x27_c00491{left:558.000000px;}
.xf_c00491{left:559.440000px;}
.x36_c00491{left:560.880000px;}
.x12_c00491{left:579.600000px;}
.x2c_c00491{left:581.040000px;}
.x35_c00491{left:586.080000px;}
.x2a_c00491{left:591.840000px;}
.x10_c00491{left:613.440000px;}
.x2b_c00491{left:614.880000px;}
.x25_c00491{left:623.520000px;}
.x11_c00491{left:646.560000px;}
.x32_c00491{left:648.000000px;}
.x26_c00491{left:657.360000px;}
.xd_c00491{left:676.080000px;}
.x29_c00491{left:680.400000px;}
.x13_c00491{left:689.760000px;}
.x28_c00491{left:691.200000px;}
.x14_c00491{left:709.920000px;}
.x33_c00491{left:711.360000px;}
@media print{
.v0_c00491{vertical-align:0.000000pt;}
.v1_c00491{vertical-align:7.680000pt;}
.ls0_c00491{letter-spacing:0.000000pt;}
.ws1_c00491{word-spacing:0.000000pt;}
.ws0_c00491{word-spacing:15.181867pt;}
.fsb_c00491{font-size:30.720000pt;}
.fsc_c00491{font-size:35.840000pt;}
.fs9_c00491{font-size:38.400000pt;}
.fsa_c00491{font-size:40.960000pt;}
.fs2_c00491{font-size:43.520000pt;}
.fs4_c00491{font-size:46.080000pt;}
.fs6_c00491{font-size:48.640000pt;}
.fs8_c00491{font-size:51.200000pt;}
.fs7_c00491{font-size:53.760000pt;}
.fs0_c00491{font-size:56.320000pt;}
.fsd_c00491{font-size:58.880000pt;}
.fs5_c00491{font-size:61.440000pt;}
.fs1_c00491{font-size:64.000000pt;}
.fs3_c00491{font-size:66.560000pt;}
.y0_c00491{bottom:0.000000pt;}
.y75_c00491{bottom:21.760000pt;}
.y74_c00491{bottom:24.320000pt;}
.y85_c00491{bottom:24.960000pt;}
.y84_c00491{bottom:26.240000pt;}
.y73_c00491{bottom:60.160000pt;}
.y82_c00491{bottom:62.080000pt;}
.y72_c00491{bottom:62.720000pt;}
.y83_c00491{bottom:63.360000pt;}
.y81_c00491{bottom:64.000000pt;}
.y71_c00491{bottom:98.560000pt;}
.y70_c00491{bottom:101.120000pt;}
.y7f_c00491{bottom:102.400000pt;}
.y80_c00491{bottom:103.040000pt;}
.y6f_c00491{bottom:136.960000pt;}
.y7d_c00491{bottom:138.240000pt;}
.y7e_c00491{bottom:138.880000pt;}
.y6e_c00491{bottom:139.520000pt;}
.y7c_c00491{bottom:140.160000pt;}
.y6b_c00491{bottom:174.720000pt;}
.y6d_c00491{bottom:176.640000pt;}
.y6a_c00491{bottom:177.280000pt;}
.y6c_c00491{bottom:178.560000pt;}
.y7b_c00491{bottom:179.200000pt;}
.y69_c00491{bottom:213.120000pt;}
.y7a_c00491{bottom:214.400000pt;}
.y68_c00491{bottom:215.040000pt;}
.y78_c00491{bottom:216.960000pt;}
.y79_c00491{bottom:217.600000pt;}
.y67_c00491{bottom:250.880000pt;}
.y77_c00491{bottom:252.800000pt;}
.y66_c00491{bottom:253.440000pt;}
.y61_c00491{bottom:289.280000pt;}
.y60_c00491{bottom:289.920000pt;}
.y63_c00491{bottom:290.560000pt;}
.y65_c00491{bottom:291.200000pt;}
.y76_c00491{bottom:291.840000pt;}
.y62_c00491{bottom:292.480000pt;}
.y64_c00491{bottom:293.120000pt;}
.y46_c00491{bottom:327.680000pt;}
.y48_c00491{bottom:328.320000pt;}
.y47_c00491{bottom:328.960000pt;}
.y5f_c00491{bottom:329.600000pt;}
.y45_c00491{bottom:330.240000pt;}
.y40_c00491{bottom:366.080000pt;}
.y44_c00491{bottom:366.720000pt;}
.y42_c00491{bottom:367.360000pt;}
.y5e_c00491{bottom:368.000000pt;}
.y3f_c00491{bottom:368.640000pt;}
.y41_c00491{bottom:369.920000pt;}
.y43_c00491{bottom:370.560000pt;}
.y3e_c00491{bottom:398.080000pt;}
.y3a_c00491{bottom:404.480000pt;}
.y3c_c00491{bottom:405.120000pt;}
.y3d_c00491{bottom:405.760000pt;}
.y39_c00491{bottom:406.400000pt;}
.y5d_c00491{bottom:407.040000pt;}
.y3b_c00491{bottom:407.680000pt;}
.y38_c00491{bottom:442.880000pt;}
.y5b_c00491{bottom:443.520000pt;}
.y5c_c00491{bottom:444.160000pt;}
.y37_c00491{bottom:444.800000pt;}
.y59_c00491{bottom:445.440000pt;}
.y5a_c00491{bottom:446.720000pt;}
.y35_c00491{bottom:481.280000pt;}
.y58_c00491{bottom:481.920000pt;}
.y56_c00491{bottom:482.560000pt;}
.y34_c00491{bottom:483.200000pt;}
.y36_c00491{bottom:484.480000pt;}
.y57_c00491{bottom:485.120000pt;}
.y30_c00491{bottom:519.680000pt;}
.y2f_c00491{bottom:520.960000pt;}
.y54_c00491{bottom:521.600000pt;}
.y31_c00491{bottom:522.240000pt;}
.y33_c00491{bottom:522.880000pt;}
.y32_c00491{bottom:523.520000pt;}
.y55_c00491{bottom:524.160000pt;}
.y2e_c00491{bottom:558.080000pt;}
.y2d_c00491{bottom:559.360000pt;}
.y53_c00491{bottom:560.000000pt;}
.y2a_c00491{bottom:595.200000pt;}
.y2c_c00491{bottom:595.840000pt;}
.y29_c00491{bottom:597.120000pt;}
.y51_c00491{bottom:597.760000pt;}
.y2b_c00491{bottom:599.040000pt;}
.y52_c00491{bottom:599.680000pt;}
.y28_c00491{bottom:633.600000pt;}
.y27_c00491{bottom:634.880000pt;}
.y50_c00491{bottom:635.520000pt;}
.y24_c00491{bottom:671.360000pt;}
.y26_c00491{bottom:672.000000pt;}
.y23_c00491{bottom:672.640000pt;}
.y4e_c00491{bottom:673.280000pt;}
.y4f_c00491{bottom:673.920000pt;}
.y25_c00491{bottom:674.560000pt;}
.y22_c00491{bottom:709.760000pt;}
.y4c_c00491{bottom:710.400000pt;}
.y21_c00491{bottom:711.040000pt;}
.y4d_c00491{bottom:711.680000pt;}
.y4b_c00491{bottom:712.960000pt;}
.y1f_c00491{bottom:747.520000pt;}
.y20_c00491{bottom:748.160000pt;}
.y1e_c00491{bottom:749.440000pt;}
.y4a_c00491{bottom:751.360000pt;}
.y1a_c00491{bottom:785.280000pt;}
.y1b_c00491{bottom:787.200000pt;}
.y1d_c00491{bottom:788.480000pt;}
.y1c_c00491{bottom:789.120000pt;}
.y15_c00491{bottom:814.080000pt;}
.y17_c00491{bottom:814.720000pt;}
.y14_c00491{bottom:815.360000pt;}
.y19_c00491{bottom:816.000000pt;}
.y18_c00491{bottom:816.640000pt;}
.y16_c00491{bottom:817.280000pt;}
.y49_c00491{bottom:817.920000pt;}
.ya_c00491{bottom:852.480000pt;}
.y12_c00491{bottom:853.120000pt;}
.y9_c00491{bottom:853.760000pt;}
.y11_c00491{bottom:854.400000pt;}
.yb_c00491{bottom:855.680000pt;}
.y13_c00491{bottom:856.320000pt;}
.y7_c00491{bottom:890.240000pt;}
.y8_c00491{bottom:890.880000pt;}
.y6_c00491{bottom:892.160000pt;}
.ye_c00491{bottom:893.440000pt;}
.y10_c00491{bottom:894.080000pt;}
.y5_c00491{bottom:903.680000pt;}
.y4_c00491{bottom:928.000000pt;}
.y2_c00491{bottom:928.640000pt;}
.yd_c00491{bottom:929.280000pt;}
.yf_c00491{bottom:929.920000pt;}
.y1_c00491{bottom:930.560000pt;}
.y3_c00491{bottom:931.840000pt;}
.yc_c00491{bottom:977.920000pt;}
.hd_c00491{height:27.645000pt;}
.he_c00491{height:32.252500pt;}
.hb_c00491{height:34.556250pt;}
.hc_c00491{height:36.860000pt;}
.h4_c00491{height:39.163750pt;}
.h6_c00491{height:41.467500pt;}
.h8_c00491{height:43.771250pt;}
.ha_c00491{height:46.075000pt;}
.h9_c00491{height:48.378750pt;}
.h2_c00491{height:50.682500pt;}
.h10_c00491{height:51.451250pt;}
.hf_c00491{height:52.986250pt;}
.h7_c00491{height:55.290000pt;}
.h3_c00491{height:57.593750pt;}
.h5_c00491{height:59.897500pt;}
.h0_c00491{height:1040.640000pt;}
.h1_c00491{height:1040.666667pt;}
.w0_c00491{width:693.760000pt;}
.w1_c00491{width:694.000000pt;}
.x0_c00491{left:0.000000pt;}
.x1_c00491{left:44.160000pt;}
.x7_c00491{left:81.920000pt;}
.x2_c00491{left:111.360000pt;}
.x8_c00491{left:112.640000pt;}
.x9_c00491{left:160.000000pt;}
.xb_c00491{left:188.160000pt;}
.x1e_c00491{left:189.440000pt;}
.x18_c00491{left:207.360000pt;}
.x1c_c00491{left:218.240000pt;}
.x3_c00491{left:226.560000pt;}
.x2d_c00491{left:227.840000pt;}
.xc_c00491{left:236.800000pt;}
.x19_c00491{left:254.720000pt;}
.x1d_c00491{left:256.000000pt;}
.x4_c00491{left:273.920000pt;}
.x15_c00491{left:275.200000pt;}
.x2e_c00491{left:276.480000pt;}
.x1a_c00491{left:295.040000pt;}
.xa_c00491{left:304.000000pt;}
.x5_c00491{left:313.600000pt;}
.x1b_c00491{left:332.800000pt;}
.x31_c00491{left:343.680000pt;}
.x6_c00491{left:351.360000pt;}
.x22_c00491{left:352.640000pt;}
.x1f_c00491{left:370.560000pt;}
.x23_c00491{left:381.440000pt;}
.x16_c00491{left:389.760000pt;}
.x2f_c00491{left:391.040000pt;}
.x24_c00491{left:400.000000pt;}
.x20_c00491{left:409.600000pt;}
.x21_c00491{left:419.840000pt;}
.x30_c00491{left:429.440000pt;}
.x17_c00491{left:438.400000pt;}
.x34_c00491{left:469.120000pt;}
.xe_c00491{left:478.080000pt;}
.x27_c00491{left:496.000000pt;}
.xf_c00491{left:497.280000pt;}
.x36_c00491{left:498.560000pt;}
.x12_c00491{left:515.200000pt;}
.x2c_c00491{left:516.480000pt;}
.x35_c00491{left:520.960000pt;}
.x2a_c00491{left:526.080000pt;}
.x10_c00491{left:545.280000pt;}
.x2b_c00491{left:546.560000pt;}
.x25_c00491{left:554.240000pt;}
.x11_c00491{left:574.720000pt;}
.x32_c00491{left:576.000000pt;}
.x26_c00491{left:584.320000pt;}
.xd_c00491{left:600.960000pt;}
.x29_c00491{left:604.800000pt;}
.x13_c00491{left:613.120000pt;}
.x28_c00491{left:614.400000pt;}
.x14_c00491{left:631.040000pt;}
.x33_c00491{left:632.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7bcc9e87ab9dc17568c46128.woff2')format("woff");}.ff1_c00492{font-family:ff1_c00492;line-height:1.109863;font-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_c00492{transform:matrix(0.231300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231300,0.000000,0.000000,0.250000,0,0);}
.m38_c00492{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m24_c00492{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m2_c00492{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.mc_c00492{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m3_c00492{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m19_c00492{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m6_c00492{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m37_c00492{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m26_c00492{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);}
.m2d_c00492{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00492{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m16_c00492{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m11_c00492{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.me_c00492{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m7_c00492{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m9_c00492{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00492{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m10_c00492{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m15_c00492{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m17_c00492{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00492{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m22_c00492{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m14_c00492{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m46_c00492{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m31_c00492{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m21_c00492{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m36_c00492{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00492{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00492{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m25_c00492{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00492{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m4_c00492{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m13_c00492{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.mf_c00492{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);}
.m3d_c00492{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m0_c00492{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m1_c00492{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00492{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);}
.m33_c00492{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m5_c00492{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);}
.md_c00492{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00492{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00492{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m41_c00492{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00492{transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);}
.m44_c00492{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);}
.m1f_c00492{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m32_c00492{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m42_c00492{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m43_c00492{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m48_c00492{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m29_c00492{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00492{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m45_c00492{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);}
.ma_c00492{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m40_c00492{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m20_c00492{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00492{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m35_c00492{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);}
.m39_c00492{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m47_c00492{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m23_c00492{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m18_c00492{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00492{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m28_c00492{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m12_c00492{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00492{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m30_c00492{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00492{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m8_c00492{transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);}
.m34_c00492{transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);}
.m27_c00492{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.v2_c00492{vertical-align:-2.880000px;}
.v0_c00492{vertical-align:0.000000px;}
.v1_c00492{vertical-align:2.880000px;}
.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;}
}
.ws4_c00492{word-spacing:0.000000px;}
.ws0_c00492{word-spacing:17.894400px;}
.ws3_c00492{word-spacing:19.521600px;}
.ws1_c00492{word-spacing:75.999600px;}
.ws2_c00492{word-spacing:202.674000px;}
.fc0_c00492{color:transparent;}
.fsd_c00492{font-size:34.560000px;}
.fsa_c00492{font-size:43.200000px;}
.fs4_c00492{font-size:46.080000px;}
.fs6_c00492{font-size:48.960000px;}
.fs8_c00492{font-size:51.840000px;}
.fs7_c00492{font-size:54.720000px;}
.fs5_c00492{font-size:57.600000px;}
.fs1_c00492{font-size:60.480000px;}
.fs9_c00492{font-size:63.360000px;}
.fsb_c00492{font-size:66.240000px;}
.fsc_c00492{font-size:69.120000px;}
.fs3_c00492{font-size:72.000000px;}
.fs2_c00492{font-size:74.880000px;}
.fs0_c00492{font-size:77.760000px;}
.y0_c00492{bottom:0.000000px;}
.y70_c00492{bottom:23.760000px;}
.y6d_c00492{bottom:56.880000px;}
.y6a_c00492{bottom:57.600000px;}
.y6f_c00492{bottom:58.320000px;}
.y6b_c00492{bottom:59.040000px;}
.y6c_c00492{bottom:59.760000px;}
.y6e_c00492{bottom:60.480000px;}
.y66_c00492{bottom:100.080000px;}
.y65_c00492{bottom:101.520000px;}
.y67_c00492{bottom:102.240000px;}
.y68_c00492{bottom:102.960000px;}
.y69_c00492{bottom:103.680000px;}
.y61_c00492{bottom:143.280000px;}
.y62_c00492{bottom:144.000000px;}
.y60_c00492{bottom:144.720000px;}
.y63_c00492{bottom:145.440000px;}
.y64_c00492{bottom:146.880000px;}
.y5c_c00492{bottom:186.480000px;}
.y5f_c00492{bottom:187.200000px;}
.y5b_c00492{bottom:187.920000px;}
.y5d_c00492{bottom:188.640000px;}
.y5e_c00492{bottom:189.360000px;}
.y5a_c00492{bottom:228.960000px;}
.y56_c00492{bottom:229.680000px;}
.y59_c00492{bottom:230.400000px;}
.y55_c00492{bottom:231.120000px;}
.y57_c00492{bottom:231.840000px;}
.y58_c00492{bottom:232.560000px;}
.y52_c00492{bottom:272.880000px;}
.y54_c00492{bottom:273.600000px;}
.y51_c00492{bottom:274.320000px;}
.y53_c00492{bottom:275.040000px;}
.y4f_c00492{bottom:316.080000px;}
.y4e_c00492{bottom:316.800000px;}
.y50_c00492{bottom:318.240000px;}
.y4b_c00492{bottom:358.560000px;}
.y4c_c00492{bottom:359.280000px;}
.y4d_c00492{bottom:361.440000px;}
.y48_c00492{bottom:390.960000px;}
.y45_c00492{bottom:391.680000px;}
.y4a_c00492{bottom:392.400000px;}
.y49_c00492{bottom:393.120000px;}
.y46_c00492{bottom:393.840000px;}
.y47_c00492{bottom:394.560000px;}
.y42_c00492{bottom:434.880000px;}
.y44_c00492{bottom:436.320000px;}
.y43_c00492{bottom:437.040000px;}
.y40_c00492{bottom:466.560000px;}
.y3d_c00492{bottom:467.280000px;}
.y41_c00492{bottom:468.000000px;}
.y3e_c00492{bottom:468.720000px;}
.y3f_c00492{bottom:469.440000px;}
.y3a_c00492{bottom:509.760000px;}
.y3c_c00492{bottom:510.480000px;}
.y3b_c00492{bottom:511.920000px;}
.y39_c00492{bottom:551.520000px;}
.y34_c00492{bottom:552.240000px;}
.y33_c00492{bottom:552.960000px;}
.y37_c00492{bottom:553.680000px;}
.y35_c00492{bottom:554.400000px;}
.y36_c00492{bottom:555.120000px;}
.y38_c00492{bottom:555.840000px;}
.y2f_c00492{bottom:594.720000px;}
.y2e_c00492{bottom:595.440000px;}
.y32_c00492{bottom:596.160000px;}
.y31_c00492{bottom:596.880000px;}
.y30_c00492{bottom:597.600000px;}
.y2b_c00492{bottom:637.200000px;}
.y2d_c00492{bottom:637.920000px;}
.y2a_c00492{bottom:638.640000px;}
.y2c_c00492{bottom:640.800000px;}
.y27_c00492{bottom:681.120000px;}
.y28_c00492{bottom:681.840000px;}
.y29_c00492{bottom:683.280000px;}
.y23_c00492{bottom:722.160000px;}
.y22_c00492{bottom:724.320000px;}
.y25_c00492{bottom:725.040000px;}
.y26_c00492{bottom:725.760000px;}
.y24_c00492{bottom:726.480000px;}
.y1f_c00492{bottom:765.360000px;}
.y20_c00492{bottom:766.800000px;}
.y1e_c00492{bottom:767.520000px;}
.y21_c00492{bottom:770.400000px;}
.y1a_c00492{bottom:808.560000px;}
.y1b_c00492{bottom:809.280000px;}
.y19_c00492{bottom:810.000000px;}
.y1c_c00492{bottom:810.720000px;}
.y1d_c00492{bottom:812.160000px;}
.y18_c00492{bottom:851.760000px;}
.y13_c00492{bottom:883.440000px;}
.y16_c00492{bottom:884.880000px;}
.y12_c00492{bottom:885.600000px;}
.y15_c00492{bottom:886.320000px;}
.y14_c00492{bottom:887.040000px;}
.y17_c00492{bottom:887.760000px;}
.y11_c00492{bottom:926.640000px;}
.ye_c00492{bottom:958.320000px;}
.yd_c00492{bottom:960.480000px;}
.yf_c00492{bottom:961.920000px;}
.y10_c00492{bottom:962.640000px;}
.y9_c00492{bottom:1001.520000px;}
.ya_c00492{bottom:1002.240000px;}
.y8_c00492{bottom:1002.960000px;}
.yc_c00492{bottom:1003.680000px;}
.yb_c00492{bottom:1005.120000px;}
.y3_c00492{bottom:1044.000000px;}
.y2_c00492{bottom:1045.440000px;}
.y6_c00492{bottom:1046.160000px;}
.y4_c00492{bottom:1047.600000px;}
.y7_c00492{bottom:1048.320000px;}
.y5_c00492{bottom:1049.040000px;}
.y1_c00492{bottom:1102.320000px;}
.h11_c00492{height:31.100625px;}
.hd_c00492{height:38.875781px;}
.h7_c00492{height:41.467500px;}
.h9_c00492{height:44.059219px;}
.h6_c00492{height:44.347500px;}
.hb_c00492{height:46.650937px;}
.ha_c00492{height:49.242656px;}
.h8_c00492{height:51.834375px;}
.he_c00492{height:52.122656px;}
.h3_c00492{height:54.426094px;}
.hc_c00492{height:57.017812px;}
.hf_c00492{height:59.609531px;}
.h10_c00492{height:62.201250px;}
.h5_c00492{height:64.792969px;}
.h4_c00492{height:67.384687px;}
.h2_c00492{height:69.976406px;}
.h1_c00492{height:1168.500000px;}
.h0_c00492{height:1168.560000px;}
.w0_c00492{width:776.160000px;}
.w1_c00492{width:776.250000px;}
.x0_c00492{left:0.000000px;}
.x2_c00492{left:38.880000px;}
.x2a_c00492{left:40.320000px;}
.x3_c00492{left:113.760000px;}
.x16_c00492{left:115.200000px;}
.x26_c00492{left:116.640000px;}
.x21_c00492{left:169.200000px;}
.x17_c00492{left:201.600000px;}
.x27_c00492{left:203.040000px;}
.x4_c00492{left:212.400000px;}
.x24_c00492{left:234.000000px;}
.x10_c00492{left:244.080000px;}
.x18_c00492{left:256.320000px;}
.x1b_c00492{left:266.400000px;}
.x2e_c00492{left:267.840000px;}
.xe_c00492{left:287.280000px;}
.x25_c00492{left:289.440000px;}
.x1e_c00492{left:311.040000px;}
.x30_c00492{left:312.480000px;}
.x13_c00492{left:320.400000px;}
.x2f_c00492{left:321.840000px;}
.xf_c00492{left:340.560000px;}
.x11_c00492{left:342.720000px;}
.x1c_c00492{left:374.400000px;}
.x9_c00492{left:384.480000px;}
.x22_c00492{left:386.640000px;}
.x31_c00492{left:397.440000px;}
.x12_c00492{left:429.840000px;}
.xa_c00492{left:439.200000px;}
.x32_c00492{left:452.160000px;}
.x1d_c00492{left:461.520000px;}
.x23_c00492{left:471.600000px;}
.x5_c00492{left:516.240000px;}
.x28_c00492{left:517.680000px;}
.xb_c00492{left:527.040000px;}
.xc_c00492{left:547.200000px;}
.x14_c00492{left:548.640000px;}
.x29_c00492{left:570.240000px;}
.x6_c00492{left:602.640000px;}
.x20_c00492{left:604.080000px;}
.x7_c00492{left:635.040000px;}
.x19_c00492{left:636.480000px;}
.x2b_c00492{left:637.920000px;}
.x1_c00492{left:667.440000px;}
.x15_c00492{left:668.880000px;}
.x2d_c00492{left:671.040000px;}
.xd_c00492{left:678.240000px;}
.x1a_c00492{left:680.400000px;}
.x33_c00492{left:681.840000px;}
.x8_c00492{left:699.120000px;}
.x1f_c00492{left:700.560000px;}
.x2c_c00492{left:702.000000px;}
@media print{
.v2_c00492{vertical-align:-2.560000pt;}
.v0_c00492{vertical-align:0.000000pt;}
.v1_c00492{vertical-align:2.560000pt;}
.ls0_c00492{letter-spacing:0.000000pt;}
.ws4_c00492{word-spacing:0.000000pt;}
.ws0_c00492{word-spacing:15.906133pt;}
.ws3_c00492{word-spacing:17.352533pt;}
.ws1_c00492{word-spacing:67.555200pt;}
.ws2_c00492{word-spacing:180.154667pt;}
.fsd_c00492{font-size:30.720000pt;}
.fsa_c00492{font-size:38.400000pt;}
.fs4_c00492{font-size:40.960000pt;}
.fs6_c00492{font-size:43.520000pt;}
.fs8_c00492{font-size:46.080000pt;}
.fs7_c00492{font-size:48.640000pt;}
.fs5_c00492{font-size:51.200000pt;}
.fs1_c00492{font-size:53.760000pt;}
.fs9_c00492{font-size:56.320000pt;}
.fsb_c00492{font-size:58.880000pt;}
.fsc_c00492{font-size:61.440000pt;}
.fs3_c00492{font-size:64.000000pt;}
.fs2_c00492{font-size:66.560000pt;}
.fs0_c00492{font-size:69.120000pt;}
.y0_c00492{bottom:0.000000pt;}
.y70_c00492{bottom:21.120000pt;}
.y6d_c00492{bottom:50.560000pt;}
.y6a_c00492{bottom:51.200000pt;}
.y6f_c00492{bottom:51.840000pt;}
.y6b_c00492{bottom:52.480000pt;}
.y6c_c00492{bottom:53.120000pt;}
.y6e_c00492{bottom:53.760000pt;}
.y66_c00492{bottom:88.960000pt;}
.y65_c00492{bottom:90.240000pt;}
.y67_c00492{bottom:90.880000pt;}
.y68_c00492{bottom:91.520000pt;}
.y69_c00492{bottom:92.160000pt;}
.y61_c00492{bottom:127.360000pt;}
.y62_c00492{bottom:128.000000pt;}
.y60_c00492{bottom:128.640000pt;}
.y63_c00492{bottom:129.280000pt;}
.y64_c00492{bottom:130.560000pt;}
.y5c_c00492{bottom:165.760000pt;}
.y5f_c00492{bottom:166.400000pt;}
.y5b_c00492{bottom:167.040000pt;}
.y5d_c00492{bottom:167.680000pt;}
.y5e_c00492{bottom:168.320000pt;}
.y5a_c00492{bottom:203.520000pt;}
.y56_c00492{bottom:204.160000pt;}
.y59_c00492{bottom:204.800000pt;}
.y55_c00492{bottom:205.440000pt;}
.y57_c00492{bottom:206.080000pt;}
.y58_c00492{bottom:206.720000pt;}
.y52_c00492{bottom:242.560000pt;}
.y54_c00492{bottom:243.200000pt;}
.y51_c00492{bottom:243.840000pt;}
.y53_c00492{bottom:244.480000pt;}
.y4f_c00492{bottom:280.960000pt;}
.y4e_c00492{bottom:281.600000pt;}
.y50_c00492{bottom:282.880000pt;}
.y4b_c00492{bottom:318.720000pt;}
.y4c_c00492{bottom:319.360000pt;}
.y4d_c00492{bottom:321.280000pt;}
.y48_c00492{bottom:347.520000pt;}
.y45_c00492{bottom:348.160000pt;}
.y4a_c00492{bottom:348.800000pt;}
.y49_c00492{bottom:349.440000pt;}
.y46_c00492{bottom:350.080000pt;}
.y47_c00492{bottom:350.720000pt;}
.y42_c00492{bottom:386.560000pt;}
.y44_c00492{bottom:387.840000pt;}
.y43_c00492{bottom:388.480000pt;}
.y40_c00492{bottom:414.720000pt;}
.y3d_c00492{bottom:415.360000pt;}
.y41_c00492{bottom:416.000000pt;}
.y3e_c00492{bottom:416.640000pt;}
.y3f_c00492{bottom:417.280000pt;}
.y3a_c00492{bottom:453.120000pt;}
.y3c_c00492{bottom:453.760000pt;}
.y3b_c00492{bottom:455.040000pt;}
.y39_c00492{bottom:490.240000pt;}
.y34_c00492{bottom:490.880000pt;}
.y33_c00492{bottom:491.520000pt;}
.y37_c00492{bottom:492.160000pt;}
.y35_c00492{bottom:492.800000pt;}
.y36_c00492{bottom:493.440000pt;}
.y38_c00492{bottom:494.080000pt;}
.y2f_c00492{bottom:528.640000pt;}
.y2e_c00492{bottom:529.280000pt;}
.y32_c00492{bottom:529.920000pt;}
.y31_c00492{bottom:530.560000pt;}
.y30_c00492{bottom:531.200000pt;}
.y2b_c00492{bottom:566.400000pt;}
.y2d_c00492{bottom:567.040000pt;}
.y2a_c00492{bottom:567.680000pt;}
.y2c_c00492{bottom:569.600000pt;}
.y27_c00492{bottom:605.440000pt;}
.y28_c00492{bottom:606.080000pt;}
.y29_c00492{bottom:607.360000pt;}
.y23_c00492{bottom:641.920000pt;}
.y22_c00492{bottom:643.840000pt;}
.y25_c00492{bottom:644.480000pt;}
.y26_c00492{bottom:645.120000pt;}
.y24_c00492{bottom:645.760000pt;}
.y1f_c00492{bottom:680.320000pt;}
.y20_c00492{bottom:681.600000pt;}
.y1e_c00492{bottom:682.240000pt;}
.y21_c00492{bottom:684.800000pt;}
.y1a_c00492{bottom:718.720000pt;}
.y1b_c00492{bottom:719.360000pt;}
.y19_c00492{bottom:720.000000pt;}
.y1c_c00492{bottom:720.640000pt;}
.y1d_c00492{bottom:721.920000pt;}
.y18_c00492{bottom:757.120000pt;}
.y13_c00492{bottom:785.280000pt;}
.y16_c00492{bottom:786.560000pt;}
.y12_c00492{bottom:787.200000pt;}
.y15_c00492{bottom:787.840000pt;}
.y14_c00492{bottom:788.480000pt;}
.y17_c00492{bottom:789.120000pt;}
.y11_c00492{bottom:823.680000pt;}
.ye_c00492{bottom:851.840000pt;}
.yd_c00492{bottom:853.760000pt;}
.yf_c00492{bottom:855.040000pt;}
.y10_c00492{bottom:855.680000pt;}
.y9_c00492{bottom:890.240000pt;}
.ya_c00492{bottom:890.880000pt;}
.y8_c00492{bottom:891.520000pt;}
.yc_c00492{bottom:892.160000pt;}
.yb_c00492{bottom:893.440000pt;}
.y3_c00492{bottom:928.000000pt;}
.y2_c00492{bottom:929.280000pt;}
.y6_c00492{bottom:929.920000pt;}
.y4_c00492{bottom:931.200000pt;}
.y7_c00492{bottom:931.840000pt;}
.y5_c00492{bottom:932.480000pt;}
.y1_c00492{bottom:979.840000pt;}
.h11_c00492{height:27.645000pt;}
.hd_c00492{height:34.556250pt;}
.h7_c00492{height:36.860000pt;}
.h9_c00492{height:39.163750pt;}
.h6_c00492{height:39.420000pt;}
.hb_c00492{height:41.467500pt;}
.ha_c00492{height:43.771250pt;}
.h8_c00492{height:46.075000pt;}
.he_c00492{height:46.331250pt;}
.h3_c00492{height:48.378750pt;}
.hc_c00492{height:50.682500pt;}
.hf_c00492{height:52.986250pt;}
.h10_c00492{height:55.290000pt;}
.h5_c00492{height:57.593750pt;}
.h4_c00492{height:59.897500pt;}
.h2_c00492{height:62.201250pt;}
.h1_c00492{height:1038.666667pt;}
.h0_c00492{height:1038.720000pt;}
.w0_c00492{width:689.920000pt;}
.w1_c00492{width:690.000000pt;}
.x0_c00492{left:0.000000pt;}
.x2_c00492{left:34.560000pt;}
.x2a_c00492{left:35.840000pt;}
.x3_c00492{left:101.120000pt;}
.x16_c00492{left:102.400000pt;}
.x26_c00492{left:103.680000pt;}
.x21_c00492{left:150.400000pt;}
.x17_c00492{left:179.200000pt;}
.x27_c00492{left:180.480000pt;}
.x4_c00492{left:188.800000pt;}
.x24_c00492{left:208.000000pt;}
.x10_c00492{left:216.960000pt;}
.x18_c00492{left:227.840000pt;}
.x1b_c00492{left:236.800000pt;}
.x2e_c00492{left:238.080000pt;}
.xe_c00492{left:255.360000pt;}
.x25_c00492{left:257.280000pt;}
.x1e_c00492{left:276.480000pt;}
.x30_c00492{left:277.760000pt;}
.x13_c00492{left:284.800000pt;}
.x2f_c00492{left:286.080000pt;}
.xf_c00492{left:302.720000pt;}
.x11_c00492{left:304.640000pt;}
.x1c_c00492{left:332.800000pt;}
.x9_c00492{left:341.760000pt;}
.x22_c00492{left:343.680000pt;}
.x31_c00492{left:353.280000pt;}
.x12_c00492{left:382.080000pt;}
.xa_c00492{left:390.400000pt;}
.x32_c00492{left:401.920000pt;}
.x1d_c00492{left:410.240000pt;}
.x23_c00492{left:419.200000pt;}
.x5_c00492{left:458.880000pt;}
.x28_c00492{left:460.160000pt;}
.xb_c00492{left:468.480000pt;}
.xc_c00492{left:486.400000pt;}
.x14_c00492{left:487.680000pt;}
.x29_c00492{left:506.880000pt;}
.x6_c00492{left:535.680000pt;}
.x20_c00492{left:536.960000pt;}
.x7_c00492{left:564.480000pt;}
.x19_c00492{left:565.760000pt;}
.x2b_c00492{left:567.040000pt;}
.x1_c00492{left:593.280000pt;}
.x15_c00492{left:594.560000pt;}
.x2d_c00492{left:596.480000pt;}
.xd_c00492{left:602.880000pt;}
.x1a_c00492{left:604.800000pt;}
.x33_c00492{left:606.080000pt;}
.x8_c00492{left:621.440000pt;}
.x1f_c00492{left:622.720000pt;}
.x2c_c00492{left:624.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_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_294a5764ba4950f8e3408e60.woff2')format("woff");}.ff1_c00493{font-family:ff1_c00493;line-height:1.109863;font-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_c00493{transform:matrix(0.192150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192150,0.000000,0.000000,0.250000,0,0);}
.m44_c00493{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.mc_c00493{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m3d_c00493{transform:matrix(0.242075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242075,0.000000,0.000000,0.250000,0,0);}
.m48_c00493{transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);}
.m49_c00493{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);}
.m27_c00493{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);}
.m4b_c00493{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m9_c00493{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);}
.m2c_c00493{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m23_c00493{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00493{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m7_c00493{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);}
.m4c_c00493{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00493{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00493{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m24_c00493{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m50_c00493{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.ma_c00493{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m28_c00493{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m26_c00493{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00493{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m6_c00493{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m5_c00493{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m14_c00493{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m20_c00493{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mb_c00493{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1_c00493{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m33_c00493{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m13_c00493{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);}
.m29_c00493{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00493{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00493{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00493{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.me_c00493{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);}
.m37_c00493{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m16_c00493{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m39_c00493{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m31_c00493{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m41_c00493{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);}
.m0_c00493{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m47_c00493{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m8_c00493{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m42_c00493{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00493{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);}
.m2f_c00493{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m11_c00493{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);}
.m21_c00493{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m12_c00493{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00493{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.mf_c00493{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);}
.m3e_c00493{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m45_c00493{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_c00493{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m30_c00493{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m43_c00493{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);}
.m3f_c00493{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m25_c00493{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);}
.m17_c00493{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m15_c00493{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);}
.md_c00493{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m34_c00493{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m36_c00493{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m46_c00493{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00493{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00493{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);}
.m3a_c00493{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m32_c00493{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);}
.m38_c00493{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m2_c00493{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m3_c00493{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m4_c00493{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00493{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00493{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);}
.m4d_c00493{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m35_c00493{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m18_c00493{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.m19_c00493{transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00493{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m22_c00493{transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);}
.m51_c00493{transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00493{transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);}
.v0_c00493{vertical-align:0.000000px;}
.v1_c00493{vertical-align:2.880000px;}
.ls0_c00493{letter-spacing:0.000000px;}
.sc__c00493{text-shadow:none;}
.sc0_c00493{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00493{-webkit-text-stroke:0px transparent;}
.sc0_c00493{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00493{word-spacing:0.000000px;}
.ws1_c00493{word-spacing:18.082195px;}
.ws0_c00493{word-spacing:179.499600px;}
.fc0_c00493{color:transparent;}
.fs3_c00493{font-size:34.560000px;}
.fsf_c00493{font-size:40.320000px;}
.fsc_c00493{font-size:43.200000px;}
.fs1_c00493{font-size:46.080000px;}
.fs2_c00493{font-size:48.960000px;}
.fs5_c00493{font-size:51.840000px;}
.fs4_c00493{font-size:54.720000px;}
.fs7_c00493{font-size:57.600000px;}
.fs0_c00493{font-size:60.480000px;}
.fs9_c00493{font-size:63.360000px;}
.fsa_c00493{font-size:66.240000px;}
.fs8_c00493{font-size:69.120000px;}
.fsb_c00493{font-size:72.000000px;}
.fs6_c00493{font-size:74.880000px;}
.fsd_c00493{font-size:92.160000px;}
.fse_c00493{font-size:95.040000px;}
.y0_c00493{bottom:0.000000px;}
.y64_c00493{bottom:42.480000px;}
.y66_c00493{bottom:43.200000px;}
.y63_c00493{bottom:44.640000px;}
.y71_c00493{bottom:45.360000px;}
.y59_c00493{bottom:46.080000px;}
.y65_c00493{bottom:46.800000px;}
.y72_c00493{bottom:47.520000px;}
.y61_c00493{bottom:85.680000px;}
.y62_c00493{bottom:86.400000px;}
.y70_c00493{bottom:87.840000px;}
.y58_c00493{bottom:88.560000px;}
.y60_c00493{bottom:129.600000px;}
.y5f_c00493{bottom:131.040000px;}
.y57_c00493{bottom:131.760000px;}
.y5b_c00493{bottom:172.800000px;}
.y5e_c00493{bottom:173.520000px;}
.y5a_c00493{bottom:174.240000px;}
.y6f_c00493{bottom:174.960000px;}
.y56_c00493{bottom:175.680000px;}
.y5c_c00493{bottom:176.400000px;}
.y5d_c00493{bottom:177.120000px;}
.y54_c00493{bottom:216.000000px;}
.y53_c00493{bottom:216.720000px;}
.y52_c00493{bottom:217.440000px;}
.y55_c00493{bottom:218.880000px;}
.y51_c00493{bottom:252.000000px;}
.y4d_c00493{bottom:259.200000px;}
.y4e_c00493{bottom:259.920000px;}
.y4c_c00493{bottom:260.640000px;}
.y50_c00493{bottom:261.360000px;}
.y4f_c00493{bottom:262.080000px;}
.y4b_c00493{bottom:294.480000px;}
.y4a_c00493{bottom:302.400000px;}
.y49_c00493{bottom:303.120000px;}
.y6e_c00493{bottom:303.840000px;}
.y6d_c00493{bottom:306.000000px;}
.y48_c00493{bottom:336.960000px;}
.y47_c00493{bottom:345.600000px;}
.y46_c00493{bottom:346.320000px;}
.y6c_c00493{bottom:347.040000px;}
.y6b_c00493{bottom:349.200000px;}
.y45_c00493{bottom:380.880000px;}
.y44_c00493{bottom:388.800000px;}
.y6a_c00493{bottom:389.520000px;}
.y69_c00493{bottom:391.680000px;}
.y43_c00493{bottom:431.280000px;}
.y41_c00493{bottom:432.000000px;}
.y42_c00493{bottom:433.440000px;}
.y3e_c00493{bottom:463.680000px;}
.y3d_c00493{bottom:464.400000px;}
.y3f_c00493{bottom:465.840000px;}
.y40_c00493{bottom:466.560000px;}
.y3b_c00493{bottom:506.880000px;}
.y3c_c00493{bottom:509.040000px;}
.y39_c00493{bottom:539.280000px;}
.y38_c00493{bottom:540.000000px;}
.y3a_c00493{bottom:541.440000px;}
.y68_c00493{bottom:542.880000px;}
.y36_c00493{bottom:582.480000px;}
.y37_c00493{bottom:584.640000px;}
.y35_c00493{bottom:614.160000px;}
.y33_c00493{bottom:614.880000px;}
.y34_c00493{bottom:617.040000px;}
.y2f_c00493{bottom:646.560000px;}
.y30_c00493{bottom:647.280000px;}
.y32_c00493{bottom:648.720000px;}
.y31_c00493{bottom:649.440000px;}
.y67_c00493{bottom:650.160000px;}
.y2e_c00493{bottom:679.680000px;}
.y2c_c00493{bottom:689.760000px;}
.y2d_c00493{bottom:691.920000px;}
.y29_c00493{bottom:721.440000px;}
.y28_c00493{bottom:722.160000px;}
.y27_c00493{bottom:722.880000px;}
.y2a_c00493{bottom:724.320000px;}
.y2b_c00493{bottom:725.040000px;}
.y1e_c00493{bottom:765.360000px;}
.y1d_c00493{bottom:766.800000px;}
.y1f_c00493{bottom:767.520000px;}
.y1a_c00493{bottom:797.040000px;}
.y26_c00493{bottom:797.760000px;}
.y25_c00493{bottom:798.480000px;}
.y1b_c00493{bottom:799.200000px;}
.y1c_c00493{bottom:799.920000px;}
.y17_c00493{bottom:839.520000px;}
.y19_c00493{bottom:840.240000px;}
.y23_c00493{bottom:840.960000px;}
.y18_c00493{bottom:842.400000px;}
.y24_c00493{bottom:843.120000px;}
.y16_c00493{bottom:874.800000px;}
.y15_c00493{bottom:882.000000px;}
.y14_c00493{bottom:882.720000px;}
.y13_c00493{bottom:883.440000px;}
.y22_c00493{bottom:884.880000px;}
.y21_c00493{bottom:885.600000px;}
.y12_c00493{bottom:913.680000px;}
.yf_c00493{bottom:924.480000px;}
.ye_c00493{bottom:925.200000px;}
.y20_c00493{bottom:925.920000px;}
.y11_c00493{bottom:926.640000px;}
.y10_c00493{bottom:927.360000px;}
.yb_c00493{bottom:967.680000px;}
.yd_c00493{bottom:969.840000px;}
.yc_c00493{bottom:970.560000px;}
.y9_c00493{bottom:998.640000px;}
.y6_c00493{bottom:1000.080000px;}
.y7_c00493{bottom:1002.240000px;}
.y8_c00493{bottom:1002.960000px;}
.ya_c00493{bottom:1003.680000px;}
.y1_c00493{bottom:1043.280000px;}
.y3_c00493{bottom:1044.000000px;}
.y5_c00493{bottom:1044.720000px;}
.y2_c00493{bottom:1045.440000px;}
.y4_c00493{bottom:1046.160000px;}
.h5_c00493{height:31.100625px;}
.h12_c00493{height:36.284062px;}
.hf_c00493{height:38.875781px;}
.h3_c00493{height:41.467500px;}
.h4_c00493{height:44.059219px;}
.h8_c00493{height:46.650937px;}
.h7_c00493{height:49.242656px;}
.ha_c00493{height:51.834375px;}
.h6_c00493{height:52.122656px;}
.h2_c00493{height:54.426094px;}
.hc_c00493{height:57.017812px;}
.hd_c00493{height:59.609531px;}
.hb_c00493{height:62.201250px;}
.he_c00493{height:64.792969px;}
.h9_c00493{height:67.384687px;}
.h10_c00493{height:82.935000px;}
.h11_c00493{height:85.526719px;}
.h0_c00493{height:1172.880000px;}
.h1_c00493{height:1173.000000px;}
.w0_c00493{width:782.640000px;}
.w1_c00493{width:783.000000px;}
.x0_c00493{left:0.000000px;}
.x1_c00493{left:39.600000px;}
.x26_c00493{left:41.040000px;}
.x2_c00493{left:116.640000px;}
.x23_c00493{left:118.079100px;}
.x18_c00493{left:169.920000px;}
.xc_c00493{left:180.000000px;}
.x3_c00493{left:202.320000px;}
.x24_c00493{left:213.840000px;}
.x2e_c00493{left:216.000000px;}
.xd_c00493{left:233.280000px;}
.x15_c00493{left:245.520000px;}
.x4_c00493{left:256.320000px;}
.x2f_c00493{left:257.760000px;}
.xf_c00493{left:267.840000px;}
.x2d_c00493{left:270.000000px;}
.xe_c00493{left:278.640000px;}
.x27_c00493{left:289.440000px;}
.x21_c00493{left:300.240000px;}
.x5_c00493{left:311.040000px;}
.x10_c00493{left:321.840000px;}
.x1d_c00493{left:332.640000px;}
.x28_c00493{left:343.440000px;}
.x17_c00493{left:365.040000px;}
.x25_c00493{left:376.560000px;}
.x1e_c00493{left:387.360000px;}
.x9_c00493{left:397.440000px;}
.x29_c00493{left:408.240000px;}
.x2a_c00493{left:409.680000px;}
.x16_c00493{left:419.760000px;}
.x1f_c00493{left:430.560000px;}
.x13_c00493{left:440.640000px;}
.x11_c00493{left:451.440000px;}
.x12_c00493{left:462.240000px;}
.x2b_c00493{left:463.680000px;}
.x1c_c00493{left:468.000000px;}
.x22_c00493{left:473.040000px;}
.x14_c00493{left:495.360000px;}
.x20_c00493{left:505.440000px;}
.x6_c00493{left:516.960000px;}
.x2c_c00493{left:518.400000px;}
.xa_c00493{left:570.240000px;}
.x36_c00493{left:573.120000px;}
.x19_c00493{left:604.800000px;}
.x34_c00493{left:606.240000px;}
.x7_c00493{left:637.200000px;}
.x31_c00493{left:638.640000px;}
.x33_c00493{left:648.720000px;}
.x1a_c00493{left:670.320000px;}
.x32_c00493{left:671.760000px;}
.x8_c00493{left:678.960000px;}
.xb_c00493{left:680.400000px;}
.x30_c00493{left:681.840000px;}
.x1b_c00493{left:700.560000px;}
.x35_c00493{left:702.720000px;}
@media print{
.v0_c00493{vertical-align:0.000000pt;}
.v1_c00493{vertical-align:2.560000pt;}
.ls0_c00493{letter-spacing:0.000000pt;}
.ws2_c00493{word-spacing:0.000000pt;}
.ws1_c00493{word-spacing:16.073062pt;}
.ws0_c00493{word-spacing:159.555200pt;}
.fs3_c00493{font-size:30.720000pt;}
.fsf_c00493{font-size:35.840000pt;}
.fsc_c00493{font-size:38.400000pt;}
.fs1_c00493{font-size:40.960000pt;}
.fs2_c00493{font-size:43.520000pt;}
.fs5_c00493{font-size:46.080000pt;}
.fs4_c00493{font-size:48.640000pt;}
.fs7_c00493{font-size:51.200000pt;}
.fs0_c00493{font-size:53.760000pt;}
.fs9_c00493{font-size:56.320000pt;}
.fsa_c00493{font-size:58.880000pt;}
.fs8_c00493{font-size:61.440000pt;}
.fsb_c00493{font-size:64.000000pt;}
.fs6_c00493{font-size:66.560000pt;}
.fsd_c00493{font-size:81.920000pt;}
.fse_c00493{font-size:84.480000pt;}
.y0_c00493{bottom:0.000000pt;}
.y64_c00493{bottom:37.760000pt;}
.y66_c00493{bottom:38.400000pt;}
.y63_c00493{bottom:39.680000pt;}
.y71_c00493{bottom:40.320000pt;}
.y59_c00493{bottom:40.960000pt;}
.y65_c00493{bottom:41.600000pt;}
.y72_c00493{bottom:42.240000pt;}
.y61_c00493{bottom:76.160000pt;}
.y62_c00493{bottom:76.800000pt;}
.y70_c00493{bottom:78.080000pt;}
.y58_c00493{bottom:78.720000pt;}
.y60_c00493{bottom:115.200000pt;}
.y5f_c00493{bottom:116.480000pt;}
.y57_c00493{bottom:117.120000pt;}
.y5b_c00493{bottom:153.600000pt;}
.y5e_c00493{bottom:154.240000pt;}
.y5a_c00493{bottom:154.880000pt;}
.y6f_c00493{bottom:155.520000pt;}
.y56_c00493{bottom:156.160000pt;}
.y5c_c00493{bottom:156.800000pt;}
.y5d_c00493{bottom:157.440000pt;}
.y54_c00493{bottom:192.000000pt;}
.y53_c00493{bottom:192.640000pt;}
.y52_c00493{bottom:193.280000pt;}
.y55_c00493{bottom:194.560000pt;}
.y51_c00493{bottom:224.000000pt;}
.y4d_c00493{bottom:230.400000pt;}
.y4e_c00493{bottom:231.040000pt;}
.y4c_c00493{bottom:231.680000pt;}
.y50_c00493{bottom:232.320000pt;}
.y4f_c00493{bottom:232.960000pt;}
.y4b_c00493{bottom:261.760000pt;}
.y4a_c00493{bottom:268.800000pt;}
.y49_c00493{bottom:269.440000pt;}
.y6e_c00493{bottom:270.080000pt;}
.y6d_c00493{bottom:272.000000pt;}
.y48_c00493{bottom:299.520000pt;}
.y47_c00493{bottom:307.200000pt;}
.y46_c00493{bottom:307.840000pt;}
.y6c_c00493{bottom:308.480000pt;}
.y6b_c00493{bottom:310.400000pt;}
.y45_c00493{bottom:338.560000pt;}
.y44_c00493{bottom:345.600000pt;}
.y6a_c00493{bottom:346.240000pt;}
.y69_c00493{bottom:348.160000pt;}
.y43_c00493{bottom:383.360000pt;}
.y41_c00493{bottom:384.000000pt;}
.y42_c00493{bottom:385.280000pt;}
.y3e_c00493{bottom:412.160000pt;}
.y3d_c00493{bottom:412.800000pt;}
.y3f_c00493{bottom:414.080000pt;}
.y40_c00493{bottom:414.720000pt;}
.y3b_c00493{bottom:450.560000pt;}
.y3c_c00493{bottom:452.480000pt;}
.y39_c00493{bottom:479.360000pt;}
.y38_c00493{bottom:480.000000pt;}
.y3a_c00493{bottom:481.280000pt;}
.y68_c00493{bottom:482.560000pt;}
.y36_c00493{bottom:517.760000pt;}
.y37_c00493{bottom:519.680000pt;}
.y35_c00493{bottom:545.920000pt;}
.y33_c00493{bottom:546.560000pt;}
.y34_c00493{bottom:548.480000pt;}
.y2f_c00493{bottom:574.720000pt;}
.y30_c00493{bottom:575.360000pt;}
.y32_c00493{bottom:576.640000pt;}
.y31_c00493{bottom:577.280000pt;}
.y67_c00493{bottom:577.920000pt;}
.y2e_c00493{bottom:604.160000pt;}
.y2c_c00493{bottom:613.120000pt;}
.y2d_c00493{bottom:615.040000pt;}
.y29_c00493{bottom:641.280000pt;}
.y28_c00493{bottom:641.920000pt;}
.y27_c00493{bottom:642.560000pt;}
.y2a_c00493{bottom:643.840000pt;}
.y2b_c00493{bottom:644.480000pt;}
.y1e_c00493{bottom:680.320000pt;}
.y1d_c00493{bottom:681.600000pt;}
.y1f_c00493{bottom:682.240000pt;}
.y1a_c00493{bottom:708.480000pt;}
.y26_c00493{bottom:709.120000pt;}
.y25_c00493{bottom:709.760000pt;}
.y1b_c00493{bottom:710.400000pt;}
.y1c_c00493{bottom:711.040000pt;}
.y17_c00493{bottom:746.240000pt;}
.y19_c00493{bottom:746.880000pt;}
.y23_c00493{bottom:747.520000pt;}
.y18_c00493{bottom:748.800000pt;}
.y24_c00493{bottom:749.440000pt;}
.y16_c00493{bottom:777.600000pt;}
.y15_c00493{bottom:784.000000pt;}
.y14_c00493{bottom:784.640000pt;}
.y13_c00493{bottom:785.280000pt;}
.y22_c00493{bottom:786.560000pt;}
.y21_c00493{bottom:787.200000pt;}
.y12_c00493{bottom:812.160000pt;}
.yf_c00493{bottom:821.760000pt;}
.ye_c00493{bottom:822.400000pt;}
.y20_c00493{bottom:823.040000pt;}
.y11_c00493{bottom:823.680000pt;}
.y10_c00493{bottom:824.320000pt;}
.yb_c00493{bottom:860.160000pt;}
.yd_c00493{bottom:862.080000pt;}
.yc_c00493{bottom:862.720000pt;}
.y9_c00493{bottom:887.680000pt;}
.y6_c00493{bottom:888.960000pt;}
.y7_c00493{bottom:890.880000pt;}
.y8_c00493{bottom:891.520000pt;}
.ya_c00493{bottom:892.160000pt;}
.y1_c00493{bottom:927.360000pt;}
.y3_c00493{bottom:928.000000pt;}
.y5_c00493{bottom:928.640000pt;}
.y2_c00493{bottom:929.280000pt;}
.y4_c00493{bottom:929.920000pt;}
.h5_c00493{height:27.645000pt;}
.h12_c00493{height:32.252500pt;}
.hf_c00493{height:34.556250pt;}
.h3_c00493{height:36.860000pt;}
.h4_c00493{height:39.163750pt;}
.h8_c00493{height:41.467500pt;}
.h7_c00493{height:43.771250pt;}
.ha_c00493{height:46.075000pt;}
.h6_c00493{height:46.331250pt;}
.h2_c00493{height:48.378750pt;}
.hc_c00493{height:50.682500pt;}
.hd_c00493{height:52.986250pt;}
.hb_c00493{height:55.290000pt;}
.he_c00493{height:57.593750pt;}
.h9_c00493{height:59.897500pt;}
.h10_c00493{height:73.720000pt;}
.h11_c00493{height:76.023750pt;}
.h0_c00493{height:1042.560000pt;}
.h1_c00493{height:1042.666667pt;}
.w0_c00493{width:695.680000pt;}
.w1_c00493{width:696.000000pt;}
.x0_c00493{left:0.000000pt;}
.x1_c00493{left:35.200000pt;}
.x26_c00493{left:36.480000pt;}
.x2_c00493{left:103.680000pt;}
.x23_c00493{left:104.959200pt;}
.x18_c00493{left:151.040000pt;}
.xc_c00493{left:160.000000pt;}
.x3_c00493{left:179.840000pt;}
.x24_c00493{left:190.080000pt;}
.x2e_c00493{left:192.000000pt;}
.xd_c00493{left:207.360000pt;}
.x15_c00493{left:218.240000pt;}
.x4_c00493{left:227.840000pt;}
.x2f_c00493{left:229.120000pt;}
.xf_c00493{left:238.080000pt;}
.x2d_c00493{left:240.000000pt;}
.xe_c00493{left:247.680000pt;}
.x27_c00493{left:257.280000pt;}
.x21_c00493{left:266.880000pt;}
.x5_c00493{left:276.480000pt;}
.x10_c00493{left:286.080000pt;}
.x1d_c00493{left:295.680000pt;}
.x28_c00493{left:305.280000pt;}
.x17_c00493{left:324.480000pt;}
.x25_c00493{left:334.720000pt;}
.x1e_c00493{left:344.320000pt;}
.x9_c00493{left:353.280000pt;}
.x29_c00493{left:362.880000pt;}
.x2a_c00493{left:364.160000pt;}
.x16_c00493{left:373.120000pt;}
.x1f_c00493{left:382.720000pt;}
.x13_c00493{left:391.680000pt;}
.x11_c00493{left:401.280000pt;}
.x12_c00493{left:410.880000pt;}
.x2b_c00493{left:412.160000pt;}
.x1c_c00493{left:416.000000pt;}
.x22_c00493{left:420.480000pt;}
.x14_c00493{left:440.320000pt;}
.x20_c00493{left:449.280000pt;}
.x6_c00493{left:459.520000pt;}
.x2c_c00493{left:460.800000pt;}
.xa_c00493{left:506.880000pt;}
.x36_c00493{left:509.440000pt;}
.x19_c00493{left:537.600000pt;}
.x34_c00493{left:538.880000pt;}
.x7_c00493{left:566.400000pt;}
.x31_c00493{left:567.680000pt;}
.x33_c00493{left:576.640000pt;}
.x1a_c00493{left:595.840000pt;}
.x32_c00493{left:597.120000pt;}
.x8_c00493{left:603.520000pt;}
.xb_c00493{left:604.800000pt;}
.x30_c00493{left:606.080000pt;}
.x1b_c00493{left:622.720000pt;}
.x35_c00493{left:624.640000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4e470e364ecc82e2b2854cfc.woff2')format("woff");}.ff1_c00494{font-family:ff1_c00494;line-height:1.109863;font-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_c00494{transform:matrix(0.219800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219800,0.000000,0.000000,0.250000,0,0);}
.m33_c00494{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m15_c00494{transform:matrix(0.245450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245450,0.000000,0.000000,0.250000,0,0);}
.m36_c00494{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m28_c00494{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00494{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m10_c00494{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m22_c00494{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m30_c00494{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mb_c00494{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_c00494{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m9_c00494{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m12_c00494{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);}
.m43_c00494{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m38_c00494{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00494{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.ma_c00494{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m45_c00494{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m11_c00494{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);}
.m2d_c00494{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m16_c00494{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m4_c00494{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00494{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m7_c00494{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m0_c00494{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00494{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m24_c00494{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m32_c00494{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m39_c00494{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mc_c00494{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m35_c00494{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m26_c00494{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00494{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00494{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);}
.m2c_c00494{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00494{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);}
.m1e_c00494{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m27_c00494{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);}
.m41_c00494{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.mf_c00494{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);}
.m40_c00494{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m20_c00494{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m6_c00494{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m3_c00494{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);}
.m5_c00494{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m42_c00494{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_c00494{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m21_c00494{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);}
.m2b_c00494{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_c00494{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m14_c00494{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m19_c00494{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m37_c00494{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00494{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);}
.m34_c00494{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);}
.m1d_c00494{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m2_c00494{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);}
.m18_c00494{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m13_c00494{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m23_c00494{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00494{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00494{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m29_c00494{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00494{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.me_c00494{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.md_c00494{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00494{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m44_c00494{transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00494{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.m31_c00494{transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);}
.v1_c00494{vertical-align:-11.520000px;}
.v3_c00494{vertical-align:-5.760000px;}
.v0_c00494{vertical-align:0.000000px;}
.v2_c00494{vertical-align:5.760000px;}
.ls2_c00494{letter-spacing:0.000000px;}
.ls1_c00494{letter-spacing:83.257680px;}
.ls0_c00494{letter-spacing:100.878960px;}
.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;}
}
.ws1_c00494{word-spacing:0.000000px;}
.ws0_c00494{word-spacing:81.702000px;}
.fc0_c00494{color:transparent;}
.fs6_c00494{font-size:34.560000px;}
.fs8_c00494{font-size:43.200000px;}
.fs1_c00494{font-size:46.080000px;}
.fs9_c00494{font-size:48.960000px;}
.fs2_c00494{font-size:51.840000px;}
.fsb_c00494{font-size:54.720000px;}
.fsd_c00494{font-size:57.600000px;}
.fs4_c00494{font-size:60.480000px;}
.fs7_c00494{font-size:63.360000px;}
.fsc_c00494{font-size:66.240000px;}
.fs3_c00494{font-size:69.120000px;}
.fs0_c00494{font-size:72.000000px;}
.fs5_c00494{font-size:74.880000px;}
.fsa_c00494{font-size:80.640000px;}
.y0_c00494{bottom:0.000000px;}
.y80_c00494{bottom:56.880000px;}
.y7e_c00494{bottom:57.600000px;}
.y7f_c00494{bottom:60.480000px;}
.y79_c00494{bottom:89.280000px;}
.y7d_c00494{bottom:90.720000px;}
.y7a_c00494{bottom:91.440000px;}
.y78_c00494{bottom:92.160000px;}
.y7b_c00494{bottom:92.880000px;}
.y7c_c00494{bottom:93.600000px;}
.y76_c00494{bottom:132.480000px;}
.y74_c00494{bottom:133.200000px;}
.y75_c00494{bottom:135.360000px;}
.y73_c00494{bottom:136.080000px;}
.y70_c00494{bottom:164.160000px;}
.y77_c00494{bottom:165.600000px;}
.y72_c00494{bottom:166.320000px;}
.y6f_c00494{bottom:167.760000px;}
.y71_c00494{bottom:168.480000px;}
.y6d_c00494{bottom:207.360000px;}
.y6c_c00494{bottom:208.080000px;}
.y6b_c00494{bottom:208.800000px;}
.y6a_c00494{bottom:210.960000px;}
.y67_c00494{bottom:239.760000px;}
.y69_c00494{bottom:241.200000px;}
.y6e_c00494{bottom:241.920000px;}
.y66_c00494{bottom:242.640000px;}
.y68_c00494{bottom:243.360000px;}
.y64_c00494{bottom:283.680000px;}
.y63_c00494{bottom:284.400000px;}
.y65_c00494{bottom:286.560000px;}
.y60_c00494{bottom:315.360000px;}
.y61_c00494{bottom:316.080000px;}
.y5d_c00494{bottom:316.800000px;}
.y5e_c00494{bottom:317.520000px;}
.y5f_c00494{bottom:318.240000px;}
.y62_c00494{bottom:318.960000px;}
.y59_c00494{bottom:358.560000px;}
.y5a_c00494{bottom:359.280000px;}
.y5c_c00494{bottom:360.000000px;}
.y58_c00494{bottom:360.720000px;}
.y5b_c00494{bottom:362.160000px;}
.y38_c00494{bottom:401.040000px;}
.y3b_c00494{bottom:401.760000px;}
.y39_c00494{bottom:402.480000px;}
.y56_c00494{bottom:403.200000px;}
.y37_c00494{bottom:403.920000px;}
.y3a_c00494{bottom:404.640000px;}
.y57_c00494{bottom:406.080000px;}
.y33_c00494{bottom:444.240000px;}
.y35_c00494{bottom:444.960000px;}
.y55_c00494{bottom:445.680000px;}
.y32_c00494{bottom:446.400000px;}
.y36_c00494{bottom:447.840000px;}
.y34_c00494{bottom:448.560000px;}
.y2e_c00494{bottom:486.000000px;}
.y31_c00494{bottom:487.440000px;}
.y54_c00494{bottom:488.160000px;}
.y53_c00494{bottom:488.880000px;}
.y2d_c00494{bottom:489.600000px;}
.y30_c00494{bottom:491.040000px;}
.y2f_c00494{bottom:491.760000px;}
.y2b_c00494{bottom:530.640000px;}
.y52_c00494{bottom:532.080000px;}
.y2a_c00494{bottom:532.800000px;}
.y2c_c00494{bottom:534.240000px;}
.y28_c00494{bottom:573.120000px;}
.y29_c00494{bottom:576.000000px;}
.y27_c00494{bottom:576.720000px;}
.y24_c00494{bottom:605.520000px;}
.y26_c00494{bottom:606.240000px;}
.y50_c00494{bottom:606.960000px;}
.y23_c00494{bottom:607.680000px;}
.y25_c00494{bottom:609.120000px;}
.y51_c00494{bottom:609.840000px;}
.y1f_c00494{bottom:647.280000px;}
.y22_c00494{bottom:648.720000px;}
.y20_c00494{bottom:649.440000px;}
.y4f_c00494{bottom:650.160000px;}
.y1e_c00494{bottom:650.880000px;}
.y21_c00494{bottom:652.320000px;}
.y1b_c00494{bottom:691.200000px;}
.y4e_c00494{bottom:691.920000px;}
.y1c_c00494{bottom:692.640000px;}
.y1a_c00494{bottom:693.360000px;}
.y1d_c00494{bottom:694.800000px;}
.y18_c00494{bottom:733.680000px;}
.y4c_c00494{bottom:734.400000px;}
.y4b_c00494{bottom:735.120000px;}
.y17_c00494{bottom:735.840000px;}
.y19_c00494{bottom:737.280000px;}
.y4d_c00494{bottom:738.000000px;}
.y15_c00494{bottom:776.160000px;}
.y16_c00494{bottom:776.880000px;}
.y14_c00494{bottom:778.320000px;}
.y4a_c00494{bottom:779.040000px;}
.y11_c00494{bottom:819.360000px;}
.y48_c00494{bottom:820.080000px;}
.y49_c00494{bottom:820.800000px;}
.y47_c00494{bottom:821.520000px;}
.y10_c00494{bottom:822.240000px;}
.y12_c00494{bottom:822.960000px;}
.y13_c00494{bottom:823.680000px;}
.ye_c00494{bottom:862.560000px;}
.yf_c00494{bottom:863.280000px;}
.y46_c00494{bottom:864.000000px;}
.yd_c00494{bottom:864.720000px;}
.y45_c00494{bottom:866.160000px;}
.yc_c00494{bottom:905.760000px;}
.y44_c00494{bottom:906.480000px;}
.y42_c00494{bottom:907.200000px;}
.yb_c00494{bottom:907.920000px;}
.y43_c00494{bottom:908.640000px;}
.y9_c00494{bottom:948.960000px;}
.ya_c00494{bottom:949.680000px;}
.y8_c00494{bottom:950.400000px;}
.y41_c00494{bottom:953.280000px;}
.y6_c00494{bottom:992.160000px;}
.y3f_c00494{bottom:992.880000px;}
.y5_c00494{bottom:993.600000px;}
.y7_c00494{bottom:995.040000px;}
.y40_c00494{bottom:996.480000px;}
.y2_c00494{bottom:1034.640000px;}
.y3_c00494{bottom:1035.360000px;}
.y3d_c00494{bottom:1036.080000px;}
.y1_c00494{bottom:1036.800000px;}
.y4_c00494{bottom:1037.520000px;}
.y3e_c00494{bottom:1038.240000px;}
.y3c_c00494{bottom:1087.200000px;}
.h8_c00494{height:31.100625px;}
.ha_c00494{height:38.875781px;}
.h3_c00494{height:41.467500px;}
.hb_c00494{height:44.059219px;}
.h4_c00494{height:46.650937px;}
.hd_c00494{height:49.242656px;}
.hf_c00494{height:51.834375px;}
.h6_c00494{height:54.426094px;}
.h9_c00494{height:57.017812px;}
.he_c00494{height:59.609531px;}
.h5_c00494{height:62.201250px;}
.h2_c00494{height:64.792969px;}
.h7_c00494{height:67.384687px;}
.hc_c00494{height:72.568125px;}
.h0_c00494{height:1174.320000px;}
.h1_c00494{height:1174.500000px;}
.w1_c00494{width:784.500000px;}
.w0_c00494{width:784.800000px;}
.x0_c00494{left:0.000000px;}
.x1_c00494{left:56.160000px;}
.x13_c00494{left:57.600000px;}
.x2_c00494{left:131.760000px;}
.xd_c00494{left:133.200000px;}
.x10_c00494{left:174.960000px;}
.x29_c00494{left:176.400000px;}
.x3_c00494{left:228.960000px;}
.x6_c00494{left:231.120000px;}
.x11_c00494{left:241.920000px;}
.x8_c00494{left:261.360000px;}
.xe_c00494{left:262.800000px;}
.x14_c00494{left:272.880000px;}
.x26_c00494{left:274.320000px;}
.x12_c00494{left:282.960000px;}
.x4_c00494{left:284.400000px;}
.x9_c00494{left:306.720000px;}
.x7_c00494{left:316.080000px;}
.x2a_c00494{left:317.520000px;}
.xc_c00494{left:327.600000px;}
.x27_c00494{left:339.120000px;}
.xa_c00494{left:360.720000px;}
.x5_c00494{left:370.800000px;}
.x28_c00494{left:382.320000px;}
.x15_c00494{left:392.400000px;}
.xb_c00494{left:402.480000px;}
.x16_c00494{left:414.000000px;}
.xf_c00494{left:446.400000px;}
.x2b_c00494{left:457.920000px;}
.x23_c00494{left:468.720000px;}
.x24_c00494{left:506.160000px;}
.x18_c00494{left:533.520000px;}
.x25_c00494{left:534.960000px;}
.x20_c00494{left:566.640000px;}
.x19_c00494{left:587.520000px;}
.x21_c00494{left:588.960000px;}
.x1d_c00494{left:621.360000px;}
.x1f_c00494{left:654.480000px;}
.x1e_c00494{left:663.120000px;}
.x1a_c00494{left:664.560000px;}
.x17_c00494{left:695.520000px;}
.x1b_c00494{left:696.960000px;}
.x22_c00494{left:698.400000px;}
.x1c_c00494{left:717.120000px;}
@media print{
.v1_c00494{vertical-align:-10.240000pt;}
.v3_c00494{vertical-align:-5.120000pt;}
.v0_c00494{vertical-align:0.000000pt;}
.v2_c00494{vertical-align:5.120000pt;}
.ls2_c00494{letter-spacing:0.000000pt;}
.ls1_c00494{letter-spacing:74.006827pt;}
.ls0_c00494{letter-spacing:89.670187pt;}
.ws1_c00494{word-spacing:0.000000pt;}
.ws0_c00494{word-spacing:72.624000pt;}
.fs6_c00494{font-size:30.720000pt;}
.fs8_c00494{font-size:38.400000pt;}
.fs1_c00494{font-size:40.960000pt;}
.fs9_c00494{font-size:43.520000pt;}
.fs2_c00494{font-size:46.080000pt;}
.fsb_c00494{font-size:48.640000pt;}
.fsd_c00494{font-size:51.200000pt;}
.fs4_c00494{font-size:53.760000pt;}
.fs7_c00494{font-size:56.320000pt;}
.fsc_c00494{font-size:58.880000pt;}
.fs3_c00494{font-size:61.440000pt;}
.fs0_c00494{font-size:64.000000pt;}
.fs5_c00494{font-size:66.560000pt;}
.fsa_c00494{font-size:71.680000pt;}
.y0_c00494{bottom:0.000000pt;}
.y80_c00494{bottom:50.560000pt;}
.y7e_c00494{bottom:51.200000pt;}
.y7f_c00494{bottom:53.760000pt;}
.y79_c00494{bottom:79.360000pt;}
.y7d_c00494{bottom:80.640000pt;}
.y7a_c00494{bottom:81.280000pt;}
.y78_c00494{bottom:81.920000pt;}
.y7b_c00494{bottom:82.560000pt;}
.y7c_c00494{bottom:83.200000pt;}
.y76_c00494{bottom:117.760000pt;}
.y74_c00494{bottom:118.400000pt;}
.y75_c00494{bottom:120.320000pt;}
.y73_c00494{bottom:120.960000pt;}
.y70_c00494{bottom:145.920000pt;}
.y77_c00494{bottom:147.200000pt;}
.y72_c00494{bottom:147.840000pt;}
.y6f_c00494{bottom:149.120000pt;}
.y71_c00494{bottom:149.760000pt;}
.y6d_c00494{bottom:184.320000pt;}
.y6c_c00494{bottom:184.960000pt;}
.y6b_c00494{bottom:185.600000pt;}
.y6a_c00494{bottom:187.520000pt;}
.y67_c00494{bottom:213.120000pt;}
.y69_c00494{bottom:214.400000pt;}
.y6e_c00494{bottom:215.040000pt;}
.y66_c00494{bottom:215.680000pt;}
.y68_c00494{bottom:216.320000pt;}
.y64_c00494{bottom:252.160000pt;}
.y63_c00494{bottom:252.800000pt;}
.y65_c00494{bottom:254.720000pt;}
.y60_c00494{bottom:280.320000pt;}
.y61_c00494{bottom:280.960000pt;}
.y5d_c00494{bottom:281.600000pt;}
.y5e_c00494{bottom:282.240000pt;}
.y5f_c00494{bottom:282.880000pt;}
.y62_c00494{bottom:283.520000pt;}
.y59_c00494{bottom:318.720000pt;}
.y5a_c00494{bottom:319.360000pt;}
.y5c_c00494{bottom:320.000000pt;}
.y58_c00494{bottom:320.640000pt;}
.y5b_c00494{bottom:321.920000pt;}
.y38_c00494{bottom:356.480000pt;}
.y3b_c00494{bottom:357.120000pt;}
.y39_c00494{bottom:357.760000pt;}
.y56_c00494{bottom:358.400000pt;}
.y37_c00494{bottom:359.040000pt;}
.y3a_c00494{bottom:359.680000pt;}
.y57_c00494{bottom:360.960000pt;}
.y33_c00494{bottom:394.880000pt;}
.y35_c00494{bottom:395.520000pt;}
.y55_c00494{bottom:396.160000pt;}
.y32_c00494{bottom:396.800000pt;}
.y36_c00494{bottom:398.080000pt;}
.y34_c00494{bottom:398.720000pt;}
.y2e_c00494{bottom:432.000000pt;}
.y31_c00494{bottom:433.280000pt;}
.y54_c00494{bottom:433.920000pt;}
.y53_c00494{bottom:434.560000pt;}
.y2d_c00494{bottom:435.200000pt;}
.y30_c00494{bottom:436.480000pt;}
.y2f_c00494{bottom:437.120000pt;}
.y2b_c00494{bottom:471.680000pt;}
.y52_c00494{bottom:472.960000pt;}
.y2a_c00494{bottom:473.600000pt;}
.y2c_c00494{bottom:474.880000pt;}
.y28_c00494{bottom:509.440000pt;}
.y29_c00494{bottom:512.000000pt;}
.y27_c00494{bottom:512.640000pt;}
.y24_c00494{bottom:538.240000pt;}
.y26_c00494{bottom:538.880000pt;}
.y50_c00494{bottom:539.520000pt;}
.y23_c00494{bottom:540.160000pt;}
.y25_c00494{bottom:541.440000pt;}
.y51_c00494{bottom:542.080000pt;}
.y1f_c00494{bottom:575.360000pt;}
.y22_c00494{bottom:576.640000pt;}
.y20_c00494{bottom:577.280000pt;}
.y4f_c00494{bottom:577.920000pt;}
.y1e_c00494{bottom:578.560000pt;}
.y21_c00494{bottom:579.840000pt;}
.y1b_c00494{bottom:614.400000pt;}
.y4e_c00494{bottom:615.040000pt;}
.y1c_c00494{bottom:615.680000pt;}
.y1a_c00494{bottom:616.320000pt;}
.y1d_c00494{bottom:617.600000pt;}
.y18_c00494{bottom:652.160000pt;}
.y4c_c00494{bottom:652.800000pt;}
.y4b_c00494{bottom:653.440000pt;}
.y17_c00494{bottom:654.080000pt;}
.y19_c00494{bottom:655.360000pt;}
.y4d_c00494{bottom:656.000000pt;}
.y15_c00494{bottom:689.920000pt;}
.y16_c00494{bottom:690.560000pt;}
.y14_c00494{bottom:691.840000pt;}
.y4a_c00494{bottom:692.480000pt;}
.y11_c00494{bottom:728.320000pt;}
.y48_c00494{bottom:728.960000pt;}
.y49_c00494{bottom:729.600000pt;}
.y47_c00494{bottom:730.240000pt;}
.y10_c00494{bottom:730.880000pt;}
.y12_c00494{bottom:731.520000pt;}
.y13_c00494{bottom:732.160000pt;}
.ye_c00494{bottom:766.720000pt;}
.yf_c00494{bottom:767.360000pt;}
.y46_c00494{bottom:768.000000pt;}
.yd_c00494{bottom:768.640000pt;}
.y45_c00494{bottom:769.920000pt;}
.yc_c00494{bottom:805.120000pt;}
.y44_c00494{bottom:805.760000pt;}
.y42_c00494{bottom:806.400000pt;}
.yb_c00494{bottom:807.040000pt;}
.y43_c00494{bottom:807.680000pt;}
.y9_c00494{bottom:843.520000pt;}
.ya_c00494{bottom:844.160000pt;}
.y8_c00494{bottom:844.800000pt;}
.y41_c00494{bottom:847.360000pt;}
.y6_c00494{bottom:881.920000pt;}
.y3f_c00494{bottom:882.560000pt;}
.y5_c00494{bottom:883.200000pt;}
.y7_c00494{bottom:884.480000pt;}
.y40_c00494{bottom:885.760000pt;}
.y2_c00494{bottom:919.680000pt;}
.y3_c00494{bottom:920.320000pt;}
.y3d_c00494{bottom:920.960000pt;}
.y1_c00494{bottom:921.600000pt;}
.y4_c00494{bottom:922.240000pt;}
.y3e_c00494{bottom:922.880000pt;}
.y3c_c00494{bottom:966.400000pt;}
.h8_c00494{height:27.645000pt;}
.ha_c00494{height:34.556250pt;}
.h3_c00494{height:36.860000pt;}
.hb_c00494{height:39.163750pt;}
.h4_c00494{height:41.467500pt;}
.hd_c00494{height:43.771250pt;}
.hf_c00494{height:46.075000pt;}
.h6_c00494{height:48.378750pt;}
.h9_c00494{height:50.682500pt;}
.he_c00494{height:52.986250pt;}
.h5_c00494{height:55.290000pt;}
.h2_c00494{height:57.593750pt;}
.h7_c00494{height:59.897500pt;}
.hc_c00494{height:64.505000pt;}
.h0_c00494{height:1043.840000pt;}
.h1_c00494{height:1044.000000pt;}
.w1_c00494{width:697.333333pt;}
.w0_c00494{width:697.600000pt;}
.x0_c00494{left:0.000000pt;}
.x1_c00494{left:49.920000pt;}
.x13_c00494{left:51.200000pt;}
.x2_c00494{left:117.120000pt;}
.xd_c00494{left:118.400000pt;}
.x10_c00494{left:155.520000pt;}
.x29_c00494{left:156.800000pt;}
.x3_c00494{left:203.520000pt;}
.x6_c00494{left:205.440000pt;}
.x11_c00494{left:215.040000pt;}
.x8_c00494{left:232.320000pt;}
.xe_c00494{left:233.600000pt;}
.x14_c00494{left:242.560000pt;}
.x26_c00494{left:243.840000pt;}
.x12_c00494{left:251.520000pt;}
.x4_c00494{left:252.800000pt;}
.x9_c00494{left:272.640000pt;}
.x7_c00494{left:280.960000pt;}
.x2a_c00494{left:282.240000pt;}
.xc_c00494{left:291.200000pt;}
.x27_c00494{left:301.440000pt;}
.xa_c00494{left:320.640000pt;}
.x5_c00494{left:329.600000pt;}
.x28_c00494{left:339.840000pt;}
.x15_c00494{left:348.800000pt;}
.xb_c00494{left:357.760000pt;}
.x16_c00494{left:368.000000pt;}
.xf_c00494{left:396.800000pt;}
.x2b_c00494{left:407.040000pt;}
.x23_c00494{left:416.640000pt;}
.x24_c00494{left:449.920000pt;}
.x18_c00494{left:474.240000pt;}
.x25_c00494{left:475.520000pt;}
.x20_c00494{left:503.680000pt;}
.x19_c00494{left:522.240000pt;}
.x21_c00494{left:523.520000pt;}
.x1d_c00494{left:552.320000pt;}
.x1f_c00494{left:581.760000pt;}
.x1e_c00494{left:589.440000pt;}
.x1a_c00494{left:590.720000pt;}
.x17_c00494{left:618.240000pt;}
.x1b_c00494{left:619.520000pt;}
.x22_c00494{left:620.800000pt;}
.x1c_c00494{left:637.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_46da64c2ab5eceb29f09cb94.woff2')format("woff");}.ff1_c00495{font-family:ff1_c00495;line-height:1.109863;font-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_c00495{transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);}
.m5_c00495{transform:matrix(0.172075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172075,0.000000,0.000000,0.250000,0,0);}
.m32_c00495{transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);}
.m4e_c00495{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m1d_c00495{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m4f_c00495{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m22_c00495{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m1_c00495{transform:matrix(0.247600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247600,0.000000,0.000000,0.250000,0,0);}
.m42_c00495{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m1b_c00495{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);}
.m57_c00495{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m23_c00495{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m48_c00495{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);}
.m45_c00495{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);}
.m25_c00495{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m11_c00495{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);}
.m53_c00495{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m6_c00495{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);}
.m41_c00495{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);}
.m34_c00495{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m20_c00495{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m28_c00495{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);}
.m35_c00495{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m7_c00495{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m33_c00495{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m39_c00495{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m12_c00495{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m17_c00495{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m13_c00495{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m19_c00495{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mb_c00495{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00495{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m3_c00495{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m14_c00495{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m10_c00495{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00495{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00495{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m38_c00495{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mc_c00495{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.ma_c00495{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);}
.m29_c00495{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m30_c00495{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m0_c00495{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);}
.m43_c00495{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m40_c00495{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00495{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);}
.m3c_c00495{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);}
.m3b_c00495{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m36_c00495{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00495{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);}
.m4d_c00495{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.mf_c00495{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);}
.m24_c00495{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m21_c00495{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);}
.md_c00495{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00495{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00495{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00495{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);}
.m50_c00495{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m51_c00495{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);}
.m2d_c00495{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);}
.m49_c00495{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_c00495{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m15_c00495{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);}
.me_c00495{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m46_c00495{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);}
.m47_c00495{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);}
.m52_c00495{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);}
.m4a_c00495{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m9_c00495{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);}
.m18_c00495{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00495{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m44_c00495{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00495{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00495{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m54_c00495{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m56_c00495{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m55_c00495{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);}
.m27_c00495{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m2_c00495{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m4_c00495{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00495{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m8_c00495{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m37_c00495{transform:matrix(0.707500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.707500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.707500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00495{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.m59_c00495{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00495{transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);}
.m58_c00495{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m26_c00495{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);}
.m16_c00495{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00495{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.v0_c00495{vertical-align:0.000000px;}
.v1_c00495{vertical-align:11.520000px;}
.ls0_c00495{letter-spacing:0.000000px;}
.sc__c00495{text-shadow:none;}
.sc0_c00495{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00495{-webkit-text-stroke:0px transparent;}
.sc0_c00495{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00495{word-spacing:0.000000px;}
.ws0_c00495{word-spacing:71.472000px;}
.fc0_c00495{color:transparent;}
.fsc_c00495{font-size:11.520000px;}
.fse_c00495{font-size:20.160000px;}
.fs2_c00495{font-size:34.560000px;}
.fs8_c00495{font-size:43.200000px;}
.fs4_c00495{font-size:46.080000px;}
.fs7_c00495{font-size:48.960000px;}
.fsb_c00495{font-size:51.840000px;}
.fs9_c00495{font-size:54.720000px;}
.fsa_c00495{font-size:57.600000px;}
.fs3_c00495{font-size:60.480000px;}
.fs0_c00495{font-size:63.360000px;}
.fsf_c00495{font-size:66.240000px;}
.fsd_c00495{font-size:69.120000px;}
.fs6_c00495{font-size:72.000000px;}
.fs1_c00495{font-size:74.880000px;}
.fs5_c00495{font-size:100.800000px;}
.y0_c00495{bottom:0.000000px;}
.y90_c00495{bottom:69.120000px;}
.y8f_c00495{bottom:71.280000px;}
.y96_c00495{bottom:73.440000px;}
.y8e_c00495{bottom:113.760000px;}
.y8d_c00495{bottom:116.640000px;}
.y89_c00495{bottom:145.440000px;}
.y8b_c00495{bottom:146.160000px;}
.y95_c00495{bottom:146.880000px;}
.y88_c00495{bottom:147.600000px;}
.y94_c00495{bottom:148.320000px;}
.y8a_c00495{bottom:149.040000px;}
.y8c_c00495{bottom:149.760000px;}
.y87_c00495{bottom:188.640000px;}
.y92_c00495{bottom:190.080000px;}
.y85_c00495{bottom:190.800000px;}
.y93_c00495{bottom:191.520000px;}
.y86_c00495{bottom:192.240000px;}
.y84_c00495{bottom:231.840000px;}
.y83_c00495{bottom:232.560000px;}
.y91_c00495{bottom:233.280000px;}
.y81_c00495{bottom:234.000000px;}
.y82_c00495{bottom:235.440000px;}
.y6d_c00495{bottom:274.320000px;}
.y6c_c00495{bottom:275.040000px;}
.y80_c00495{bottom:275.760000px;}
.y69_c00495{bottom:276.480000px;}
.y6b_c00495{bottom:277.920000px;}
.y6a_c00495{bottom:278.640000px;}
.y68_c00495{bottom:317.520000px;}
.y7e_c00495{bottom:318.240000px;}
.y7d_c00495{bottom:318.960000px;}
.y66_c00495{bottom:319.680000px;}
.y7f_c00495{bottom:320.400000px;}
.y67_c00495{bottom:321.840000px;}
.y62_c00495{bottom:360.720000px;}
.y65_c00495{bottom:361.440000px;}
.y63_c00495{bottom:362.160000px;}
.y64_c00495{bottom:364.320000px;}
.y61_c00495{bottom:415.440000px;}
.y52_c00495{bottom:416.160000px;}
.y74_c00495{bottom:416.880000px;}
.y3e_c00495{bottom:417.600000px;}
.y49_c00495{bottom:419.040000px;}
.y59_c00495{bottom:437.040000px;}
.y51_c00495{bottom:437.760000px;}
.y3d_c00495{bottom:438.480000px;}
.y7c_c00495{bottom:439.200000px;}
.y48_c00495{bottom:439.920000px;}
.y7a_c00495{bottom:457.920000px;}
.y58_c00495{bottom:458.640000px;}
.y50_c00495{bottom:459.360000px;}
.y3c_c00495{bottom:460.080000px;}
.y47_c00495{bottom:461.520000px;}
.y79_c00495{bottom:479.520000px;}
.y4f_c00495{bottom:480.240000px;}
.y56_c00495{bottom:480.960000px;}
.y57_c00495{bottom:481.680000px;}
.y46_c00495{bottom:482.400000px;}
.y3b_c00495{bottom:483.120000px;}
.y60_c00495{bottom:501.120000px;}
.y73_c00495{bottom:501.840000px;}
.y55_c00495{bottom:502.560000px;}
.y3a_c00495{bottom:503.280000px;}
.y4e_c00495{bottom:504.000000px;}
.y45_c00495{bottom:504.720000px;}
.y5f_c00495{bottom:522.720000px;}
.y44_c00495{bottom:523.440000px;}
.y54_c00495{bottom:524.160000px;}
.y72_c00495{bottom:524.880000px;}
.y76_c00495{bottom:525.600000px;}
.y39_c00495{bottom:526.320000px;}
.y78_c00495{bottom:544.320000px;}
.y4d_c00495{bottom:545.040000px;}
.y38_c00495{bottom:545.760000px;}
.y4c_c00495{bottom:547.200000px;}
.y43_c00495{bottom:547.920000px;}
.y5e_c00495{bottom:565.920000px;}
.y42_c00495{bottom:566.640000px;}
.y37_c00495{bottom:567.360000px;}
.y71_c00495{bottom:568.080000px;}
.y4b_c00495{bottom:587.520000px;}
.y70_c00495{bottom:588.240000px;}
.y41_c00495{bottom:588.960000px;}
.y36_c00495{bottom:589.680000px;}
.y5c_c00495{bottom:591.120000px;}
.y6f_c00495{bottom:609.120000px;}
.y40_c00495{bottom:609.840000px;}
.y35_c00495{bottom:610.560000px;}
.y53_c00495{bottom:612.000000px;}
.y5b_c00495{bottom:612.720000px;}
.y7b_c00495{bottom:630.000000px;}
.y77_c00495{bottom:630.720000px;}
.y4a_c00495{bottom:631.440000px;}
.y3f_c00495{bottom:632.160000px;}
.y5d_c00495{bottom:632.880000px;}
.y75_c00495{bottom:634.320000px;}
.y34_c00495{bottom:635.040000px;}
.y33_c00495{bottom:663.120000px;}
.y32_c00495{bottom:663.840000px;}
.y30_c00495{bottom:664.560000px;}
.y24_c00495{bottom:665.280000px;}
.y31_c00495{bottom:666.000000px;}
.y23_c00495{bottom:666.720000px;}
.y6e_c00495{bottom:706.320000px;}
.y22_c00495{bottom:707.040000px;}
.y21_c00495{bottom:710.640000px;}
.y5a_c00495{bottom:740.880000px;}
.y20_c00495{bottom:741.600000px;}
.y1f_c00495{bottom:742.320000px;}
.y2f_c00495{bottom:771.120000px;}
.y1e_c00495{bottom:771.840000px;}
.y2e_c00495{bottom:773.280000px;}
.y1d_c00495{bottom:774.000000px;}
.y2c_c00495{bottom:774.720000px;}
.y2d_c00495{bottom:776.160000px;}
.y1c_c00495{bottom:814.320000px;}
.y1b_c00495{bottom:816.480000px;}
.y19_c00495{bottom:835.200000px;}
.y16_c00495{bottom:835.920000px;}
.y17_c00495{bottom:836.640000px;}
.y1a_c00495{bottom:837.360000px;}
.y18_c00495{bottom:840.960000px;}
.y15_c00495{bottom:857.520000px;}
.y14_c00495{bottom:858.960000px;}
.y12_c00495{bottom:899.280000px;}
.y10_c00495{bottom:900.000000px;}
.y26_c00495{bottom:900.720000px;}
.y13_c00495{bottom:902.160000px;}
.y2a_c00495{bottom:904.320000px;}
.yd_c00495{bottom:910.080000px;}
.ye_c00495{bottom:911.520000px;}
.yc_c00495{bottom:912.960000px;}
.y25_c00495{bottom:922.320000px;}
.yf_c00495{bottom:923.040000px;}
.y11_c00495{bottom:923.760000px;}
.yb_c00495{bottom:961.920000px;}
.y9_c00495{bottom:962.640000px;}
.y2b_c00495{bottom:963.360000px;}
.ya_c00495{bottom:965.520000px;}
.y7_c00495{bottom:1004.400000px;}
.y29_c00495{bottom:1005.120000px;}
.y6_c00495{bottom:1005.840000px;}
.y8_c00495{bottom:1008.000000px;}
.y5_c00495{bottom:1039.680000px;}
.y2_c00495{bottom:1046.880000px;}
.y4_c00495{bottom:1048.320000px;}
.y1_c00495{bottom:1049.040000px;}
.y3_c00495{bottom:1051.200000px;}
.y27_c00495{bottom:1051.920000px;}
.y28_c00495{bottom:1119.600000px;}
.he_c00495{height:10.366875px;}
.h10_c00495{height:18.142031px;}
.h4_c00495{height:31.100625px;}
.ha_c00495{height:38.875781px;}
.h6_c00495{height:41.467500px;}
.h9_c00495{height:44.059219px;}
.hd_c00495{height:46.650937px;}
.hb_c00495{height:49.242656px;}
.hc_c00495{height:51.834375px;}
.h11_c00495{height:52.987500px;}
.h5_c00495{height:54.426094px;}
.h2_c00495{height:57.017812px;}
.h12_c00495{height:59.609531px;}
.hf_c00495{height:62.201250px;}
.h8_c00495{height:64.792969px;}
.h3_c00495{height:67.384687px;}
.h7_c00495{height:90.710156px;}
.h1_c00495{height:1168.500000px;}
.h0_c00495{height:1168.560000px;}
.w0_c00495{width:797.040000px;}
.w1_c00495{width:797.250000px;}
.x0_c00495{left:0.000000px;}
.x1_c00495{left:62.640000px;}
.x34_c00495{left:73.440000px;}
.x18_c00495{left:82.800000px;}
.x19_c00495{left:84.240000px;}
.xc_c00495{left:94.320000px;}
.x13_c00495{left:105.120000px;}
.x35_c00495{left:106.560780px;}
.x36_c00495{left:115.920000px;}
.x1a_c00495{left:117.360000px;}
.x3b_c00495{left:127.440000px;}
.x40_c00495{left:136.800000px;}
.x2_c00495{left:138.240000px;}
.x14_c00495{left:148.320000px;}
.x37_c00495{left:149.760000px;}
.x2f_c00495{left:159.840000px;}
.xd_c00495{left:169.920000px;}
.x15_c00495{left:171.360000px;}
.x41_c00495{left:180.000000px;}
.x9_c00495{left:181.440000px;}
.x29_c00495{left:191.520000px;}
.x3c_c00495{left:203.040000px;}
.x16_c00495{left:213.120000px;}
.x7_c00495{left:224.640000px;}
.x38_c00495{left:226.080000px;}
.xa_c00495{left:234.720000px;}
.xe_c00495{left:236.880000px;}
.x3_c00495{left:246.240000px;}
.x4f_c00495{left:257.040000px;}
.x3d_c00495{left:258.480000px;}
.x8_c00495{left:267.120000px;}
.x30_c00495{left:269.280000px;}
.xb_c00495{left:279.360000px;}
.x11_c00495{left:280.800000px;}
.x4_c00495{left:289.440000px;}
.xf_c00495{left:290.880000px;}
.x3e_c00495{left:293.040000px;}
.x17_c00495{left:300.960000px;}
.x50_c00495{left:311.760000px;}
.x12_c00495{left:321.840000px;}
.x31_c00495{left:333.360000px;}
.x10_c00495{left:344.160000px;}
.x2a_c00495{left:355.680000px;}
.x3f_c00495{left:375.840000px;}
.x5_c00495{left:385.920000px;}
.x2b_c00495{left:398.160000px;}
.x1b_c00495{left:399.600000px;}
.x1c_c00495{left:408.960000px;}
.x3a_c00495{left:419.040000px;}
.x32_c00495{left:420.480000px;}
.x42_c00495{left:429.840000px;}
.x6_c00495{left:440.640000px;}
.x24_c00495{left:462.240000px;}
.x23_c00495{left:463.680000px;}
.x51_c00495{left:474.480000px;}
.x25_c00495{left:495.360000px;}
.x44_c00495{left:496.800000px;}
.x2c_c00495{left:505.440000px;}
.x39_c00495{left:506.880000px;}
.x26_c00495{left:518.400000px;}
.x43_c00495{left:527.760000px;}
.x21_c00495{left:540.000000px;}
.x27_c00495{left:560.160000px;}
.x2d_c00495{left:561.600000px;}
.x45_c00495{left:571.680000px;}
.x48_c00495{left:583.920000px;}
.x22_c00495{left:592.560000px;}
.x47_c00495{left:594.720000px;}
.x2e_c00495{left:604.800000px;}
.x1d_c00495{left:626.400000px;}
.x52_c00495{left:627.840000px;}
.x4a_c00495{left:637.200000px;}
.x49_c00495{left:638.640000px;}
.x28_c00495{left:658.800000px;}
.x46_c00495{left:660.240000px;}
.x1e_c00495{left:669.600000px;}
.x4b_c00495{left:671.760000px;}
.x4d_c00495{left:693.360000px;}
.x20_c00495{left:696.960000px;}
.x1f_c00495{left:702.000000px;}
.x33_c00495{left:703.440000px;}
.x4e_c00495{left:724.320000px;}
.x4c_c00495{left:736.560000px;}
@media print{
.v0_c00495{vertical-align:0.000000pt;}
.v1_c00495{vertical-align:10.240000pt;}
.ls0_c00495{letter-spacing:0.000000pt;}
.ws1_c00495{word-spacing:0.000000pt;}
.ws0_c00495{word-spacing:63.530667pt;}
.fsc_c00495{font-size:10.240000pt;}
.fse_c00495{font-size:17.920000pt;}
.fs2_c00495{font-size:30.720000pt;}
.fs8_c00495{font-size:38.400000pt;}
.fs4_c00495{font-size:40.960000pt;}
.fs7_c00495{font-size:43.520000pt;}
.fsb_c00495{font-size:46.080000pt;}
.fs9_c00495{font-size:48.640000pt;}
.fsa_c00495{font-size:51.200000pt;}
.fs3_c00495{font-size:53.760000pt;}
.fs0_c00495{font-size:56.320000pt;}
.fsf_c00495{font-size:58.880000pt;}
.fsd_c00495{font-size:61.440000pt;}
.fs6_c00495{font-size:64.000000pt;}
.fs1_c00495{font-size:66.560000pt;}
.fs5_c00495{font-size:89.600000pt;}
.y0_c00495{bottom:0.000000pt;}
.y90_c00495{bottom:61.440000pt;}
.y8f_c00495{bottom:63.360000pt;}
.y96_c00495{bottom:65.280000pt;}
.y8e_c00495{bottom:101.120000pt;}
.y8d_c00495{bottom:103.680000pt;}
.y89_c00495{bottom:129.280000pt;}
.y8b_c00495{bottom:129.920000pt;}
.y95_c00495{bottom:130.560000pt;}
.y88_c00495{bottom:131.200000pt;}
.y94_c00495{bottom:131.840000pt;}
.y8a_c00495{bottom:132.480000pt;}
.y8c_c00495{bottom:133.120000pt;}
.y87_c00495{bottom:167.680000pt;}
.y92_c00495{bottom:168.960000pt;}
.y85_c00495{bottom:169.600000pt;}
.y93_c00495{bottom:170.240000pt;}
.y86_c00495{bottom:170.880000pt;}
.y84_c00495{bottom:206.080000pt;}
.y83_c00495{bottom:206.720000pt;}
.y91_c00495{bottom:207.360000pt;}
.y81_c00495{bottom:208.000000pt;}
.y82_c00495{bottom:209.280000pt;}
.y6d_c00495{bottom:243.840000pt;}
.y6c_c00495{bottom:244.480000pt;}
.y80_c00495{bottom:245.120000pt;}
.y69_c00495{bottom:245.760000pt;}
.y6b_c00495{bottom:247.040000pt;}
.y6a_c00495{bottom:247.680000pt;}
.y68_c00495{bottom:282.240000pt;}
.y7e_c00495{bottom:282.880000pt;}
.y7d_c00495{bottom:283.520000pt;}
.y66_c00495{bottom:284.160000pt;}
.y7f_c00495{bottom:284.800000pt;}
.y67_c00495{bottom:286.080000pt;}
.y62_c00495{bottom:320.640000pt;}
.y65_c00495{bottom:321.280000pt;}
.y63_c00495{bottom:321.920000pt;}
.y64_c00495{bottom:323.840000pt;}
.y61_c00495{bottom:369.280000pt;}
.y52_c00495{bottom:369.920000pt;}
.y74_c00495{bottom:370.560000pt;}
.y3e_c00495{bottom:371.200000pt;}
.y49_c00495{bottom:372.480000pt;}
.y59_c00495{bottom:388.480000pt;}
.y51_c00495{bottom:389.120000pt;}
.y3d_c00495{bottom:389.760000pt;}
.y7c_c00495{bottom:390.400000pt;}
.y48_c00495{bottom:391.040000pt;}
.y7a_c00495{bottom:407.040000pt;}
.y58_c00495{bottom:407.680000pt;}
.y50_c00495{bottom:408.320000pt;}
.y3c_c00495{bottom:408.960000pt;}
.y47_c00495{bottom:410.240000pt;}
.y79_c00495{bottom:426.240000pt;}
.y4f_c00495{bottom:426.880000pt;}
.y56_c00495{bottom:427.520000pt;}
.y57_c00495{bottom:428.160000pt;}
.y46_c00495{bottom:428.800000pt;}
.y3b_c00495{bottom:429.440000pt;}
.y60_c00495{bottom:445.440000pt;}
.y73_c00495{bottom:446.080000pt;}
.y55_c00495{bottom:446.720000pt;}
.y3a_c00495{bottom:447.360000pt;}
.y4e_c00495{bottom:448.000000pt;}
.y45_c00495{bottom:448.640000pt;}
.y5f_c00495{bottom:464.640000pt;}
.y44_c00495{bottom:465.280000pt;}
.y54_c00495{bottom:465.920000pt;}
.y72_c00495{bottom:466.560000pt;}
.y76_c00495{bottom:467.200000pt;}
.y39_c00495{bottom:467.840000pt;}
.y78_c00495{bottom:483.840000pt;}
.y4d_c00495{bottom:484.480000pt;}
.y38_c00495{bottom:485.120000pt;}
.y4c_c00495{bottom:486.400000pt;}
.y43_c00495{bottom:487.040000pt;}
.y5e_c00495{bottom:503.040000pt;}
.y42_c00495{bottom:503.680000pt;}
.y37_c00495{bottom:504.320000pt;}
.y71_c00495{bottom:504.960000pt;}
.y4b_c00495{bottom:522.240000pt;}
.y70_c00495{bottom:522.880000pt;}
.y41_c00495{bottom:523.520000pt;}
.y36_c00495{bottom:524.160000pt;}
.y5c_c00495{bottom:525.440000pt;}
.y6f_c00495{bottom:541.440000pt;}
.y40_c00495{bottom:542.080000pt;}
.y35_c00495{bottom:542.720000pt;}
.y53_c00495{bottom:544.000000pt;}
.y5b_c00495{bottom:544.640000pt;}
.y7b_c00495{bottom:560.000000pt;}
.y77_c00495{bottom:560.640000pt;}
.y4a_c00495{bottom:561.280000pt;}
.y3f_c00495{bottom:561.920000pt;}
.y5d_c00495{bottom:562.560000pt;}
.y75_c00495{bottom:563.840000pt;}
.y34_c00495{bottom:564.480000pt;}
.y33_c00495{bottom:589.440000pt;}
.y32_c00495{bottom:590.080000pt;}
.y30_c00495{bottom:590.720000pt;}
.y24_c00495{bottom:591.360000pt;}
.y31_c00495{bottom:592.000000pt;}
.y23_c00495{bottom:592.640000pt;}
.y6e_c00495{bottom:627.840000pt;}
.y22_c00495{bottom:628.480000pt;}
.y21_c00495{bottom:631.680000pt;}
.y5a_c00495{bottom:658.560000pt;}
.y20_c00495{bottom:659.200000pt;}
.y1f_c00495{bottom:659.840000pt;}
.y2f_c00495{bottom:685.440000pt;}
.y1e_c00495{bottom:686.080000pt;}
.y2e_c00495{bottom:687.360000pt;}
.y1d_c00495{bottom:688.000000pt;}
.y2c_c00495{bottom:688.640000pt;}
.y2d_c00495{bottom:689.920000pt;}
.y1c_c00495{bottom:723.840000pt;}
.y1b_c00495{bottom:725.760000pt;}
.y19_c00495{bottom:742.400000pt;}
.y16_c00495{bottom:743.040000pt;}
.y17_c00495{bottom:743.680000pt;}
.y1a_c00495{bottom:744.320000pt;}
.y18_c00495{bottom:747.520000pt;}
.y15_c00495{bottom:762.240000pt;}
.y14_c00495{bottom:763.520000pt;}
.y12_c00495{bottom:799.360000pt;}
.y10_c00495{bottom:800.000000pt;}
.y26_c00495{bottom:800.640000pt;}
.y13_c00495{bottom:801.920000pt;}
.y2a_c00495{bottom:803.840000pt;}
.yd_c00495{bottom:808.960000pt;}
.ye_c00495{bottom:810.240000pt;}
.yc_c00495{bottom:811.520000pt;}
.y25_c00495{bottom:819.840000pt;}
.yf_c00495{bottom:820.480000pt;}
.y11_c00495{bottom:821.120000pt;}
.yb_c00495{bottom:855.040000pt;}
.y9_c00495{bottom:855.680000pt;}
.y2b_c00495{bottom:856.320000pt;}
.ya_c00495{bottom:858.240000pt;}
.y7_c00495{bottom:892.800000pt;}
.y29_c00495{bottom:893.440000pt;}
.y6_c00495{bottom:894.080000pt;}
.y8_c00495{bottom:896.000000pt;}
.y5_c00495{bottom:924.160000pt;}
.y2_c00495{bottom:930.560000pt;}
.y4_c00495{bottom:931.840000pt;}
.y1_c00495{bottom:932.480000pt;}
.y3_c00495{bottom:934.400000pt;}
.y27_c00495{bottom:935.040000pt;}
.y28_c00495{bottom:995.200000pt;}
.he_c00495{height:9.215000pt;}
.h10_c00495{height:16.126250pt;}
.h4_c00495{height:27.645000pt;}
.ha_c00495{height:34.556250pt;}
.h6_c00495{height:36.860000pt;}
.h9_c00495{height:39.163750pt;}
.hd_c00495{height:41.467500pt;}
.hb_c00495{height:43.771250pt;}
.hc_c00495{height:46.075000pt;}
.h11_c00495{height:47.100000pt;}
.h5_c00495{height:48.378750pt;}
.h2_c00495{height:50.682500pt;}
.h12_c00495{height:52.986250pt;}
.hf_c00495{height:55.290000pt;}
.h8_c00495{height:57.593750pt;}
.h3_c00495{height:59.897500pt;}
.h7_c00495{height:80.631250pt;}
.h1_c00495{height:1038.666667pt;}
.h0_c00495{height:1038.720000pt;}
.w0_c00495{width:708.480000pt;}
.w1_c00495{width:708.666667pt;}
.x0_c00495{left:0.000000pt;}
.x1_c00495{left:55.680000pt;}
.x34_c00495{left:65.280000pt;}
.x18_c00495{left:73.600000pt;}
.x19_c00495{left:74.880000pt;}
.xc_c00495{left:83.840000pt;}
.x13_c00495{left:93.440000pt;}
.x35_c00495{left:94.720693pt;}
.x36_c00495{left:103.040000pt;}
.x1a_c00495{left:104.320000pt;}
.x3b_c00495{left:113.280000pt;}
.x40_c00495{left:121.600000pt;}
.x2_c00495{left:122.880000pt;}
.x14_c00495{left:131.840000pt;}
.x37_c00495{left:133.120000pt;}
.x2f_c00495{left:142.080000pt;}
.xd_c00495{left:151.040000pt;}
.x15_c00495{left:152.320000pt;}
.x41_c00495{left:160.000000pt;}
.x9_c00495{left:161.280000pt;}
.x29_c00495{left:170.240000pt;}
.x3c_c00495{left:180.480000pt;}
.x16_c00495{left:189.440000pt;}
.x7_c00495{left:199.680000pt;}
.x38_c00495{left:200.960000pt;}
.xa_c00495{left:208.640000pt;}
.xe_c00495{left:210.560000pt;}
.x3_c00495{left:218.880000pt;}
.x4f_c00495{left:228.480000pt;}
.x3d_c00495{left:229.760000pt;}
.x8_c00495{left:237.440000pt;}
.x30_c00495{left:239.360000pt;}
.xb_c00495{left:248.320000pt;}
.x11_c00495{left:249.600000pt;}
.x4_c00495{left:257.280000pt;}
.xf_c00495{left:258.560000pt;}
.x3e_c00495{left:260.480000pt;}
.x17_c00495{left:267.520000pt;}
.x50_c00495{left:277.120000pt;}
.x12_c00495{left:286.080000pt;}
.x31_c00495{left:296.320000pt;}
.x10_c00495{left:305.920000pt;}
.x2a_c00495{left:316.160000pt;}
.x3f_c00495{left:334.080000pt;}
.x5_c00495{left:343.040000pt;}
.x2b_c00495{left:353.920000pt;}
.x1b_c00495{left:355.200000pt;}
.x1c_c00495{left:363.520000pt;}
.x3a_c00495{left:372.480000pt;}
.x32_c00495{left:373.760000pt;}
.x42_c00495{left:382.080000pt;}
.x6_c00495{left:391.680000pt;}
.x24_c00495{left:410.880000pt;}
.x23_c00495{left:412.160000pt;}
.x51_c00495{left:421.760000pt;}
.x25_c00495{left:440.320000pt;}
.x44_c00495{left:441.600000pt;}
.x2c_c00495{left:449.280000pt;}
.x39_c00495{left:450.560000pt;}
.x26_c00495{left:460.800000pt;}
.x43_c00495{left:469.120000pt;}
.x21_c00495{left:480.000000pt;}
.x27_c00495{left:497.920000pt;}
.x2d_c00495{left:499.200000pt;}
.x45_c00495{left:508.160000pt;}
.x48_c00495{left:519.040000pt;}
.x22_c00495{left:526.720000pt;}
.x47_c00495{left:528.640000pt;}
.x2e_c00495{left:537.600000pt;}
.x1d_c00495{left:556.800000pt;}
.x52_c00495{left:558.080000pt;}
.x4a_c00495{left:566.400000pt;}
.x49_c00495{left:567.680000pt;}
.x28_c00495{left:585.600000pt;}
.x46_c00495{left:586.880000pt;}
.x1e_c00495{left:595.200000pt;}
.x4b_c00495{left:597.120000pt;}
.x4d_c00495{left:616.320000pt;}
.x20_c00495{left:619.520000pt;}
.x1f_c00495{left:624.000000pt;}
.x33_c00495{left:625.280000pt;}
.x4e_c00495{left:643.840000pt;}
.x4c_c00495{left:654.720000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2b0b113c9f6cfd4c6cc20152.woff2')format("woff");}.ff1_c00496{font-family:ff1_c00496;line-height:1.109863;font-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_c00496{transform:matrix(0.198525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198525,0.000000,0.000000,0.250000,0,0);}
.m2e_c00496{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m2d_c00496{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m2b_c00496{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m31_c00496{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m26_c00496{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00496{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m8_c00496{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);}
.m3c_c00496{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m10_c00496{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);}
.m34_c00496{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_c00496{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00496{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m22_c00496{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);}
.m24_c00496{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m7_c00496{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mc_c00496{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m21_c00496{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m25_c00496{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m16_c00496{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00496{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m14_c00496{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m2_c00496{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00496{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m38_c00496{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00496{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m15_c00496{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m36_c00496{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m6_c00496{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m20_c00496{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00496{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.me_c00496{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m4_c00496{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m28_c00496{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.md_c00496{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.ma_c00496{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m18_c00496{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m0_c00496{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m27_c00496{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);}
.m2c_c00496{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1_c00496{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m32_c00496{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m13_c00496{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m5_c00496{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m37_c00496{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00496{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);}
.m3d_c00496{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);}
.m29_c00496{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m9_c00496{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);}
.mb_c00496{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00496{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m39_c00496{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00496{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);}
.m35_c00496{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m3_c00496{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m11_c00496{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m19_c00496{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m12_c00496{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);}
.m23_c00496{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m33_c00496{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m17_c00496{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.m30_c00496{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.v2_c00496{vertical-align:-8.640000px;}
.v0_c00496{vertical-align:0.000000px;}
.v1_c00496{vertical-align:5.760000px;}
.ls1_c00496{letter-spacing:0.000000px;}
.ls0_c00496{letter-spacing:52.651680px;}
.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;}
}
.ws1_c00496{word-spacing:0.000000px;}
.ws0_c00496{word-spacing:4.865280px;}
.fc0_c00496{color:transparent;}
.fs9_c00496{font-size:34.560000px;}
.fsc_c00496{font-size:43.200000px;}
.fs7_c00496{font-size:46.080000px;}
.fs3_c00496{font-size:48.960000px;}
.fs2_c00496{font-size:51.840000px;}
.fsa_c00496{font-size:54.720000px;}
.fs6_c00496{font-size:57.600000px;}
.fs1_c00496{font-size:60.480000px;}
.fsb_c00496{font-size:63.360000px;}
.fs5_c00496{font-size:66.240000px;}
.fs4_c00496{font-size:69.120000px;}
.fs8_c00496{font-size:72.000000px;}
.fs0_c00496{font-size:74.880000px;}
.fsd_c00496{font-size:77.760000px;}
.y0_c00496{bottom:0.000000px;}
.y7a_c00496{bottom:38.160000px;}
.y60_c00496{bottom:39.600000px;}
.y61_c00496{bottom:40.320000px;}
.y5f_c00496{bottom:41.040000px;}
.y5e_c00496{bottom:41.760000px;}
.y7b_c00496{bottom:42.480000px;}
.y79_c00496{bottom:81.360000px;}
.y5b_c00496{bottom:82.800000px;}
.y78_c00496{bottom:83.520000px;}
.y5a_c00496{bottom:84.240000px;}
.y5d_c00496{bottom:84.960000px;}
.y5c_c00496{bottom:85.680000px;}
.y59_c00496{bottom:87.120000px;}
.y77_c00496{bottom:123.840000px;}
.y57_c00496{bottom:126.720000px;}
.y56_c00496{bottom:127.440000px;}
.y58_c00496{bottom:128.160000px;}
.y55_c00496{bottom:129.600000px;}
.y76_c00496{bottom:167.040000px;}
.y54_c00496{bottom:169.200000px;}
.y75_c00496{bottom:169.920000px;}
.y52_c00496{bottom:170.640000px;}
.y53_c00496{bottom:171.360000px;}
.y51_c00496{bottom:172.080000px;}
.y74_c00496{bottom:210.240000px;}
.y50_c00496{bottom:212.400000px;}
.y4f_c00496{bottom:214.560000px;}
.y72_c00496{bottom:252.720000px;}
.y4e_c00496{bottom:254.880000px;}
.y4d_c00496{bottom:255.600000px;}
.y73_c00496{bottom:257.040000px;}
.y4c_c00496{bottom:257.760000px;}
.y71_c00496{bottom:295.920000px;}
.y4b_c00496{bottom:298.800000px;}
.y4a_c00496{bottom:300.960000px;}
.y70_c00496{bottom:339.120000px;}
.y49_c00496{bottom:341.280000px;}
.y48_c00496{bottom:342.000000px;}
.y47_c00496{bottom:344.160000px;}
.y6f_c00496{bottom:381.600000px;}
.y46_c00496{bottom:384.480000px;}
.y45_c00496{bottom:385.200000px;}
.y44_c00496{bottom:387.360000px;}
.y6e_c00496{bottom:424.800000px;}
.y6d_c00496{bottom:426.960000px;}
.y43_c00496{bottom:427.680000px;}
.y41_c00496{bottom:429.840000px;}
.y42_c00496{bottom:430.560000px;}
.y6c_c00496{bottom:468.000000px;}
.y40_c00496{bottom:470.880000px;}
.y3f_c00496{bottom:473.040000px;}
.y69_c00496{bottom:511.200000px;}
.y3e_c00496{bottom:513.360000px;}
.y3d_c00496{bottom:514.080000px;}
.y6b_c00496{bottom:514.800000px;}
.y6a_c00496{bottom:515.520000px;}
.y3c_c00496{bottom:516.240000px;}
.y68_c00496{bottom:554.400000px;}
.y67_c00496{bottom:555.840000px;}
.y3a_c00496{bottom:556.560000px;}
.y3b_c00496{bottom:557.280000px;}
.y39_c00496{bottom:558.720000px;}
.y65_c00496{bottom:596.880000px;}
.y37_c00496{bottom:599.040000px;}
.y38_c00496{bottom:599.760000px;}
.y66_c00496{bottom:600.480000px;}
.y36_c00496{bottom:601.200000px;}
.y64_c00496{bottom:639.360000px;}
.y34_c00496{bottom:641.520000px;}
.y35_c00496{bottom:642.960000px;}
.y33_c00496{bottom:644.400000px;}
.y62_c00496{bottom:682.560000px;}
.y31_c00496{bottom:684.720000px;}
.y32_c00496{bottom:685.440000px;}
.y63_c00496{bottom:686.160000px;}
.y30_c00496{bottom:686.880000px;}
.y29_c00496{bottom:725.760000px;}
.y2f_c00496{bottom:726.480000px;}
.y28_c00496{bottom:727.200000px;}
.y2e_c00496{bottom:730.080000px;}
.y27_c00496{bottom:768.240000px;}
.y26_c00496{bottom:770.400000px;}
.y2d_c00496{bottom:771.840000px;}
.y2c_c00496{bottom:773.280000px;}
.y20_c00496{bottom:811.440000px;}
.y21_c00496{bottom:812.160000px;}
.y1f_c00496{bottom:813.600000px;}
.y2b_c00496{bottom:814.320000px;}
.y22_c00496{bottom:815.040000px;}
.y2a_c00496{bottom:815.760000px;}
.y1e_c00496{bottom:853.920000px;}
.y1d_c00496{bottom:856.080000px;}
.y1b_c00496{bottom:856.800000px;}
.y1c_c00496{bottom:858.240000px;}
.y25_c00496{bottom:858.960000px;}
.y1a_c00496{bottom:897.120000px;}
.y17_c00496{bottom:899.280000px;}
.y24_c00496{bottom:900.000000px;}
.y23_c00496{bottom:900.720000px;}
.y19_c00496{bottom:901.440000px;}
.y18_c00496{bottom:902.160000px;}
.y13_c00496{bottom:933.840000px;}
.y10_c00496{bottom:940.320000px;}
.y12_c00496{bottom:941.040000px;}
.yf_c00496{bottom:942.480000px;}
.y15_c00496{bottom:943.200000px;}
.y11_c00496{bottom:943.920000px;}
.y14_c00496{bottom:944.640000px;}
.y16_c00496{bottom:945.360000px;}
.yc_c00496{bottom:982.800000px;}
.yd_c00496{bottom:984.240000px;}
.yb_c00496{bottom:984.960000px;}
.y8_c00496{bottom:985.680000px;}
.ye_c00496{bottom:986.400000px;}
.ya_c00496{bottom:987.120000px;}
.y9_c00496{bottom:987.840000px;}
.y6_c00496{bottom:1026.720000px;}
.y7_c00496{bottom:1028.160000px;}
.y2_c00496{bottom:1028.880000px;}
.y5_c00496{bottom:1029.600000px;}
.y4_c00496{bottom:1030.320000px;}
.y3_c00496{bottom:1031.040000px;}
.y1_c00496{bottom:1100.160000px;}
.hb_c00496{height:31.100625px;}
.he_c00496{height:38.875781px;}
.h9_c00496{height:41.467500px;}
.h5_c00496{height:44.059219px;}
.h4_c00496{height:46.650937px;}
.hc_c00496{height:49.242656px;}
.h8_c00496{height:51.834375px;}
.h3_c00496{height:54.426094px;}
.hd_c00496{height:57.017812px;}
.h7_c00496{height:59.609531px;}
.h6_c00496{height:62.201250px;}
.ha_c00496{height:64.792969px;}
.h2_c00496{height:67.384687px;}
.hf_c00496{height:69.976406px;}
.h0_c00496{height:1156.320000px;}
.h1_c00496{height:1156.500000px;}
.w0_c00496{width:779.760000px;}
.w1_c00496{width:780.000000px;}
.x0_c00496{left:0.000000px;}
.x2_c00496{left:54.720000px;}
.x2b_c00496{left:56.160000px;}
.x3_c00496{left:129.600000px;}
.x10_c00496{left:131.040000px;}
.x4_c00496{left:173.520000px;}
.xc_c00496{left:216.000000px;}
.x5_c00496{left:226.800000px;}
.x11_c00496{left:249.840000px;}
.x6_c00496{left:270.720000px;}
.x28_c00496{left:280.800000px;}
.x17_c00496{left:282.240000px;}
.x12_c00496{left:291.600000px;}
.x2e_c00496{left:303.840000px;}
.x7_c00496{left:313.920000px;}
.x2a_c00496{left:315.360000px;}
.x29_c00496{left:326.160000px;}
.x13_c00496{left:334.800000px;}
.x18_c00496{left:336.960000px;}
.x30_c00496{left:347.760000px;}
.x2f_c00496{left:358.560000px;}
.x2c_c00496{left:360.000000px;}
.x2d_c00496{left:381.600000px;}
.x14_c00496{left:465.840000px;}
.x15_c00496{left:497.520000px;}
.x8_c00496{left:531.360000px;}
.x1c_c00496{left:542.880000px;}
.x22_c00496{left:544.320000px;}
.x1d_c00496{left:564.480000px;}
.x23_c00496{left:565.920000px;}
.x9_c00496{left:585.360000px;}
.x27_c00496{left:587.520000px;}
.xd_c00496{left:596.160000px;}
.x16_c00496{left:617.760000px;}
.x20_c00496{left:619.200000px;}
.x26_c00496{left:620.640000px;}
.xe_c00496{left:650.880000px;}
.x1f_c00496{left:652.320000px;}
.x25_c00496{left:653.760000px;}
.x19_c00496{left:662.400000px;}
.x1_c00496{left:682.560000px;}
.xf_c00496{left:684.720000px;}
.xa_c00496{left:694.080000px;}
.x1e_c00496{left:695.520000px;}
.x24_c00496{left:696.960000px;}
.x1a_c00496{left:705.600000px;}
.xb_c00496{left:714.960000px;}
.x21_c00496{left:716.400000px;}
.x1b_c00496{left:725.760000px;}
@media print{
.v2_c00496{vertical-align:-7.680000pt;}
.v0_c00496{vertical-align:0.000000pt;}
.v1_c00496{vertical-align:5.120000pt;}
.ls1_c00496{letter-spacing:0.000000pt;}
.ls0_c00496{letter-spacing:46.801493pt;}
.ws1_c00496{word-spacing:0.000000pt;}
.ws0_c00496{word-spacing:4.324693pt;}
.fs9_c00496{font-size:30.720000pt;}
.fsc_c00496{font-size:38.400000pt;}
.fs7_c00496{font-size:40.960000pt;}
.fs3_c00496{font-size:43.520000pt;}
.fs2_c00496{font-size:46.080000pt;}
.fsa_c00496{font-size:48.640000pt;}
.fs6_c00496{font-size:51.200000pt;}
.fs1_c00496{font-size:53.760000pt;}
.fsb_c00496{font-size:56.320000pt;}
.fs5_c00496{font-size:58.880000pt;}
.fs4_c00496{font-size:61.440000pt;}
.fs8_c00496{font-size:64.000000pt;}
.fs0_c00496{font-size:66.560000pt;}
.fsd_c00496{font-size:69.120000pt;}
.y0_c00496{bottom:0.000000pt;}
.y7a_c00496{bottom:33.920000pt;}
.y60_c00496{bottom:35.200000pt;}
.y61_c00496{bottom:35.840000pt;}
.y5f_c00496{bottom:36.480000pt;}
.y5e_c00496{bottom:37.120000pt;}
.y7b_c00496{bottom:37.760000pt;}
.y79_c00496{bottom:72.320000pt;}
.y5b_c00496{bottom:73.600000pt;}
.y78_c00496{bottom:74.240000pt;}
.y5a_c00496{bottom:74.880000pt;}
.y5d_c00496{bottom:75.520000pt;}
.y5c_c00496{bottom:76.160000pt;}
.y59_c00496{bottom:77.440000pt;}
.y77_c00496{bottom:110.080000pt;}
.y57_c00496{bottom:112.640000pt;}
.y56_c00496{bottom:113.280000pt;}
.y58_c00496{bottom:113.920000pt;}
.y55_c00496{bottom:115.200000pt;}
.y76_c00496{bottom:148.480000pt;}
.y54_c00496{bottom:150.400000pt;}
.y75_c00496{bottom:151.040000pt;}
.y52_c00496{bottom:151.680000pt;}
.y53_c00496{bottom:152.320000pt;}
.y51_c00496{bottom:152.960000pt;}
.y74_c00496{bottom:186.880000pt;}
.y50_c00496{bottom:188.800000pt;}
.y4f_c00496{bottom:190.720000pt;}
.y72_c00496{bottom:224.640000pt;}
.y4e_c00496{bottom:226.560000pt;}
.y4d_c00496{bottom:227.200000pt;}
.y73_c00496{bottom:228.480000pt;}
.y4c_c00496{bottom:229.120000pt;}
.y71_c00496{bottom:263.040000pt;}
.y4b_c00496{bottom:265.600000pt;}
.y4a_c00496{bottom:267.520000pt;}
.y70_c00496{bottom:301.440000pt;}
.y49_c00496{bottom:303.360000pt;}
.y48_c00496{bottom:304.000000pt;}
.y47_c00496{bottom:305.920000pt;}
.y6f_c00496{bottom:339.200000pt;}
.y46_c00496{bottom:341.760000pt;}
.y45_c00496{bottom:342.400000pt;}
.y44_c00496{bottom:344.320000pt;}
.y6e_c00496{bottom:377.600000pt;}
.y6d_c00496{bottom:379.520000pt;}
.y43_c00496{bottom:380.160000pt;}
.y41_c00496{bottom:382.080000pt;}
.y42_c00496{bottom:382.720000pt;}
.y6c_c00496{bottom:416.000000pt;}
.y40_c00496{bottom:418.560000pt;}
.y3f_c00496{bottom:420.480000pt;}
.y69_c00496{bottom:454.400000pt;}
.y3e_c00496{bottom:456.320000pt;}
.y3d_c00496{bottom:456.960000pt;}
.y6b_c00496{bottom:457.600000pt;}
.y6a_c00496{bottom:458.240000pt;}
.y3c_c00496{bottom:458.880000pt;}
.y68_c00496{bottom:492.800000pt;}
.y67_c00496{bottom:494.080000pt;}
.y3a_c00496{bottom:494.720000pt;}
.y3b_c00496{bottom:495.360000pt;}
.y39_c00496{bottom:496.640000pt;}
.y65_c00496{bottom:530.560000pt;}
.y37_c00496{bottom:532.480000pt;}
.y38_c00496{bottom:533.120000pt;}
.y66_c00496{bottom:533.760000pt;}
.y36_c00496{bottom:534.400000pt;}
.y64_c00496{bottom:568.320000pt;}
.y34_c00496{bottom:570.240000pt;}
.y35_c00496{bottom:571.520000pt;}
.y33_c00496{bottom:572.800000pt;}
.y62_c00496{bottom:606.720000pt;}
.y31_c00496{bottom:608.640000pt;}
.y32_c00496{bottom:609.280000pt;}
.y63_c00496{bottom:609.920000pt;}
.y30_c00496{bottom:610.560000pt;}
.y29_c00496{bottom:645.120000pt;}
.y2f_c00496{bottom:645.760000pt;}
.y28_c00496{bottom:646.400000pt;}
.y2e_c00496{bottom:648.960000pt;}
.y27_c00496{bottom:682.880000pt;}
.y26_c00496{bottom:684.800000pt;}
.y2d_c00496{bottom:686.080000pt;}
.y2c_c00496{bottom:687.360000pt;}
.y20_c00496{bottom:721.280000pt;}
.y21_c00496{bottom:721.920000pt;}
.y1f_c00496{bottom:723.200000pt;}
.y2b_c00496{bottom:723.840000pt;}
.y22_c00496{bottom:724.480000pt;}
.y2a_c00496{bottom:725.120000pt;}
.y1e_c00496{bottom:759.040000pt;}
.y1d_c00496{bottom:760.960000pt;}
.y1b_c00496{bottom:761.600000pt;}
.y1c_c00496{bottom:762.880000pt;}
.y25_c00496{bottom:763.520000pt;}
.y1a_c00496{bottom:797.440000pt;}
.y17_c00496{bottom:799.360000pt;}
.y24_c00496{bottom:800.000000pt;}
.y23_c00496{bottom:800.640000pt;}
.y19_c00496{bottom:801.280000pt;}
.y18_c00496{bottom:801.920000pt;}
.y13_c00496{bottom:830.080000pt;}
.y10_c00496{bottom:835.840000pt;}
.y12_c00496{bottom:836.480000pt;}
.yf_c00496{bottom:837.760000pt;}
.y15_c00496{bottom:838.400000pt;}
.y11_c00496{bottom:839.040000pt;}
.y14_c00496{bottom:839.680000pt;}
.y16_c00496{bottom:840.320000pt;}
.yc_c00496{bottom:873.600000pt;}
.yd_c00496{bottom:874.880000pt;}
.yb_c00496{bottom:875.520000pt;}
.y8_c00496{bottom:876.160000pt;}
.ye_c00496{bottom:876.800000pt;}
.ya_c00496{bottom:877.440000pt;}
.y9_c00496{bottom:878.080000pt;}
.y6_c00496{bottom:912.640000pt;}
.y7_c00496{bottom:913.920000pt;}
.y2_c00496{bottom:914.560000pt;}
.y5_c00496{bottom:915.200000pt;}
.y4_c00496{bottom:915.840000pt;}
.y3_c00496{bottom:916.480000pt;}
.y1_c00496{bottom:977.920000pt;}
.hb_c00496{height:27.645000pt;}
.he_c00496{height:34.556250pt;}
.h9_c00496{height:36.860000pt;}
.h5_c00496{height:39.163750pt;}
.h4_c00496{height:41.467500pt;}
.hc_c00496{height:43.771250pt;}
.h8_c00496{height:46.075000pt;}
.h3_c00496{height:48.378750pt;}
.hd_c00496{height:50.682500pt;}
.h7_c00496{height:52.986250pt;}
.h6_c00496{height:55.290000pt;}
.ha_c00496{height:57.593750pt;}
.h2_c00496{height:59.897500pt;}
.hf_c00496{height:62.201250pt;}
.h0_c00496{height:1027.840000pt;}
.h1_c00496{height:1028.000000pt;}
.w0_c00496{width:693.120000pt;}
.w1_c00496{width:693.333333pt;}
.x0_c00496{left:0.000000pt;}
.x2_c00496{left:48.640000pt;}
.x2b_c00496{left:49.920000pt;}
.x3_c00496{left:115.200000pt;}
.x10_c00496{left:116.480000pt;}
.x4_c00496{left:154.240000pt;}
.xc_c00496{left:192.000000pt;}
.x5_c00496{left:201.600000pt;}
.x11_c00496{left:222.080000pt;}
.x6_c00496{left:240.640000pt;}
.x28_c00496{left:249.600000pt;}
.x17_c00496{left:250.880000pt;}
.x12_c00496{left:259.200000pt;}
.x2e_c00496{left:270.080000pt;}
.x7_c00496{left:279.040000pt;}
.x2a_c00496{left:280.320000pt;}
.x29_c00496{left:289.920000pt;}
.x13_c00496{left:297.600000pt;}
.x18_c00496{left:299.520000pt;}
.x30_c00496{left:309.120000pt;}
.x2f_c00496{left:318.720000pt;}
.x2c_c00496{left:320.000000pt;}
.x2d_c00496{left:339.200000pt;}
.x14_c00496{left:414.080000pt;}
.x15_c00496{left:442.240000pt;}
.x8_c00496{left:472.320000pt;}
.x1c_c00496{left:482.560000pt;}
.x22_c00496{left:483.840000pt;}
.x1d_c00496{left:501.760000pt;}
.x23_c00496{left:503.040000pt;}
.x9_c00496{left:520.320000pt;}
.x27_c00496{left:522.240000pt;}
.xd_c00496{left:529.920000pt;}
.x16_c00496{left:549.120000pt;}
.x20_c00496{left:550.400000pt;}
.x26_c00496{left:551.680000pt;}
.xe_c00496{left:578.560000pt;}
.x1f_c00496{left:579.840000pt;}
.x25_c00496{left:581.120000pt;}
.x19_c00496{left:588.800000pt;}
.x1_c00496{left:606.720000pt;}
.xf_c00496{left:608.640000pt;}
.xa_c00496{left:616.960000pt;}
.x1e_c00496{left:618.240000pt;}
.x24_c00496{left:619.520000pt;}
.x1a_c00496{left:627.200000pt;}
.xb_c00496{left:635.520000pt;}
.x21_c00496{left:636.800000pt;}
.x1b_c00496{left:645.120000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6a0b870f6d99ad2d2454d67b.woff2')format("woff");}.ff1_c00497{font-family:ff1_c00497;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m39_c00497{transform:matrix(0.181375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181375,0.000000,0.000000,0.250000,0,0);}
.m26_c00497{transform:matrix(0.239175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239175,0.000000,0.000000,0.250000,0,0);}
.m16_c00497{transform:matrix(0.239725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239725,0.000000,0.000000,0.250000,0,0);}
.m34_c00497{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m3a_c00497{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m13_c00497{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_c00497{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m5_c00497{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);}
.m2c_c00497{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m1_c00497{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m2_c00497{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_c00497{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m4_c00497{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m22_c00497{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00497{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m11_c00497{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m7_c00497{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m9_c00497{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00497{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m12_c00497{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m23_c00497{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mf_c00497{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m15_c00497{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m31_c00497{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m20_c00497{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00497{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m36_c00497{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m30_c00497{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m35_c00497{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m28_c00497{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m40_c00497{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m33_c00497{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m3_c00497{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m18_c00497{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m10_c00497{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m6_c00497{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00497{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.me_c00497{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);}
.m1a_c00497{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m17_c00497{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m37_c00497{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);}
.mb_c00497{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m19_c00497{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_c00497{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.mc_c00497{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00497{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m0_c00497{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);}
.m8_c00497{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00497{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m38_c00497{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);}
.m3b_c00497{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00497{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);}
.ma_c00497{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m29_c00497{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.md_c00497{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m27_c00497{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);}
.m2d_c00497{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m21_c00497{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00497{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m24_c00497{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m14_c00497{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00497{transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);}
.m32_c00497{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00497{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00497{transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);}
.v0_c00497{vertical-align:0.000000px;}
.v1_c00497{vertical-align:5.760000px;}
.ls1_c00497{letter-spacing:0.000000px;}
.ls0_c00497{letter-spacing:52.651680px;}
.sc__c00497{text-shadow:none;}
.sc0_c00497{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00497{-webkit-text-stroke:0px transparent;}
.sc0_c00497{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00497{word-spacing:0.000000px;}
.ws0_c00497{word-spacing:13.463637px;}
.ws1_c00497{word-spacing:20.750645px;}
.ws2_c00497{word-spacing:26.289294px;}
.fc0_c00497{color:transparent;}
.fs9_c00497{font-size:34.560000px;}
.fsd_c00497{font-size:37.440000px;}
.fs7_c00497{font-size:43.200000px;}
.fs5_c00497{font-size:46.080000px;}
.fs6_c00497{font-size:48.960000px;}
.fs3_c00497{font-size:51.840000px;}
.fs0_c00497{font-size:54.720000px;}
.fsa_c00497{font-size:57.600000px;}
.fs8_c00497{font-size:60.480000px;}
.fs4_c00497{font-size:66.240000px;}
.fsb_c00497{font-size:69.120000px;}
.fs1_c00497{font-size:72.000000px;}
.fs2_c00497{font-size:74.880000px;}
.fsc_c00497{font-size:77.760000px;}
.fse_c00497{font-size:100.800000px;}
.y0_c00497{bottom:0.000000px;}
.y84_c00497{bottom:54.720000px;}
.y89_c00497{bottom:56.160000px;}
.y83_c00497{bottom:56.880000px;}
.y86_c00497{bottom:57.600000px;}
.y87_c00497{bottom:58.320000px;}
.y88_c00497{bottom:59.760000px;}
.y85_c00497{bottom:60.480000px;}
.y82_c00497{bottom:99.360000px;}
.y80_c00497{bottom:100.800000px;}
.y81_c00497{bottom:102.240000px;}
.y7b_c00497{bottom:130.320000px;}
.y7a_c00497{bottom:133.200000px;}
.y7f_c00497{bottom:133.920000px;}
.y7c_c00497{bottom:134.640000px;}
.y7d_c00497{bottom:135.360000px;}
.y7e_c00497{bottom:136.080000px;}
.y76_c00497{bottom:174.240000px;}
.y75_c00497{bottom:175.680000px;}
.y79_c00497{bottom:176.400000px;}
.y78_c00497{bottom:177.120000px;}
.y77_c00497{bottom:177.840000px;}
.y70_c00497{bottom:216.720000px;}
.y72_c00497{bottom:218.880000px;}
.y6f_c00497{bottom:219.600000px;}
.y71_c00497{bottom:220.320000px;}
.y74_c00497{bottom:221.760000px;}
.y73_c00497{bottom:222.480000px;}
.y6b_c00497{bottom:259.920000px;}
.y6a_c00497{bottom:262.800000px;}
.y6c_c00497{bottom:263.520000px;}
.y6d_c00497{bottom:264.240000px;}
.y6e_c00497{bottom:264.960000px;}
.y64_c00497{bottom:303.120000px;}
.y66_c00497{bottom:303.840000px;}
.y63_c00497{bottom:305.280000px;}
.y69_c00497{bottom:306.000000px;}
.y65_c00497{bottom:306.720000px;}
.y68_c00497{bottom:307.440000px;}
.y67_c00497{bottom:308.160000px;}
.y5f_c00497{bottom:339.840000px;}
.y5c_c00497{bottom:345.600000px;}
.y5d_c00497{bottom:347.040000px;}
.y5b_c00497{bottom:347.760000px;}
.y60_c00497{bottom:348.480000px;}
.y62_c00497{bottom:349.200000px;}
.y61_c00497{bottom:349.920000px;}
.y5e_c00497{bottom:350.640000px;}
.y46_c00497{bottom:388.080000px;}
.y48_c00497{bottom:389.520000px;}
.y45_c00497{bottom:390.240000px;}
.y5a_c00497{bottom:390.960000px;}
.y59_c00497{bottom:391.680000px;}
.y47_c00497{bottom:392.400000px;}
.y42_c00497{bottom:432.720000px;}
.y43_c00497{bottom:433.440000px;}
.y44_c00497{bottom:434.880000px;}
.y3d_c00497{bottom:462.960000px;}
.y41_c00497{bottom:464.400000px;}
.y3f_c00497{bottom:465.120000px;}
.y57_c00497{bottom:465.840000px;}
.y3c_c00497{bottom:466.560000px;}
.y3e_c00497{bottom:467.280000px;}
.y40_c00497{bottom:468.000000px;}
.y58_c00497{bottom:468.720000px;}
.y3a_c00497{bottom:506.160000px;}
.y3b_c00497{bottom:506.880000px;}
.y39_c00497{bottom:509.040000px;}
.y55_c00497{bottom:509.760000px;}
.y56_c00497{bottom:511.200000px;}
.y54_c00497{bottom:511.920000px;}
.y36_c00497{bottom:549.360000px;}
.y38_c00497{bottom:550.080000px;}
.y37_c00497{bottom:551.520000px;}
.y35_c00497{bottom:552.240000px;}
.y53_c00497{bottom:554.400000px;}
.y52_c00497{bottom:555.120000px;}
.y32_c00497{bottom:591.840000px;}
.y33_c00497{bottom:594.000000px;}
.y31_c00497{bottom:595.440000px;}
.y50_c00497{bottom:596.160000px;}
.y34_c00497{bottom:596.880000px;}
.y51_c00497{bottom:597.600000px;}
.y2e_c00497{bottom:636.480000px;}
.y2f_c00497{bottom:637.200000px;}
.y2d_c00497{bottom:637.920000px;}
.y4f_c00497{bottom:639.360000px;}
.y30_c00497{bottom:640.080000px;}
.y29_c00497{bottom:678.960000px;}
.y2c_c00497{bottom:679.680000px;}
.y28_c00497{bottom:680.400000px;}
.y4d_c00497{bottom:681.840000px;}
.y2a_c00497{bottom:682.560000px;}
.y2b_c00497{bottom:684.000000px;}
.y4e_c00497{bottom:684.720000px;}
.y27_c00497{bottom:722.160000px;}
.y26_c00497{bottom:723.600000px;}
.y4b_c00497{bottom:724.320000px;}
.y4c_c00497{bottom:725.040000px;}
.y24_c00497{bottom:764.640000px;}
.y25_c00497{bottom:765.360000px;}
.y23_c00497{bottom:766.800000px;}
.y49_c00497{bottom:767.520000px;}
.y4a_c00497{bottom:768.240000px;}
.y22_c00497{bottom:807.120000px;}
.y21_c00497{bottom:808.560000px;}
.y1d_c00497{bottom:838.800000px;}
.y1e_c00497{bottom:840.960000px;}
.y1c_c00497{bottom:841.680000px;}
.y20_c00497{bottom:842.400000px;}
.y1f_c00497{bottom:843.120000px;}
.y16_c00497{bottom:882.720000px;}
.y15_c00497{bottom:883.440000px;}
.y1a_c00497{bottom:884.160000px;}
.y18_c00497{bottom:884.880000px;}
.y19_c00497{bottom:887.040000px;}
.y1b_c00497{bottom:887.760000px;}
.y10_c00497{bottom:924.480000px;}
.y14_c00497{bottom:925.200000px;}
.y13_c00497{bottom:925.920000px;}
.yf_c00497{bottom:926.640000px;}
.y17_c00497{bottom:927.360000px;}
.y11_c00497{bottom:928.080000px;}
.y12_c00497{bottom:928.800000px;}
.ye_c00497{bottom:966.960000px;}
.yc_c00497{bottom:968.400000px;}
.yd_c00497{bottom:970.560000px;}
.y6_c00497{bottom:999.360000px;}
.y7_c00497{bottom:1000.800000px;}
.yb_c00497{bottom:1001.520000px;}
.y5_c00497{bottom:1002.240000px;}
.y8_c00497{bottom:1002.960000px;}
.ya_c00497{bottom:1003.680000px;}
.y9_c00497{bottom:1004.400000px;}
.y2_c00497{bottom:1042.560000px;}
.y1_c00497{bottom:1044.720000px;}
.y4_c00497{bottom:1045.440000px;}
.y3_c00497{bottom:1102.320000px;}
.hb_c00497{height:31.100625px;}
.hf_c00497{height:33.692344px;}
.h9_c00497{height:38.875781px;}
.h7_c00497{height:41.467500px;}
.h8_c00497{height:44.059219px;}
.h5_c00497{height:46.650937px;}
.h2_c00497{height:49.242656px;}
.hc_c00497{height:51.834375px;}
.ha_c00497{height:54.426094px;}
.h10_c00497{height:55.002656px;}
.h6_c00497{height:59.609531px;}
.hd_c00497{height:62.201250px;}
.h3_c00497{height:64.792969px;}
.h4_c00497{height:67.384687px;}
.he_c00497{height:69.976406px;}
.h11_c00497{height:90.710156px;}
.h1_c00497{height:1161.750000px;}
.h0_c00497{height:1162.080000px;}
.w1_c00497{width:786.750000px;}
.w0_c00497{width:786.960000px;}
.x0_c00497{left:0.000000px;}
.x1_c00497{left:56.880000px;}
.x1d_c00497{left:58.320000px;}
.x2_c00497{left:131.760000px;}
.xf_c00497{left:133.920000px;}
.x10_c00497{left:177.120000px;}
.x34_c00497{left:187.920000px;}
.x3_c00497{left:219.600000px;}
.x20_c00497{left:231.120000px;}
.x9_c00497{left:250.560000px;}
.x1b_c00497{left:252.720000px;}
.x1e_c00497{left:262.800000px;}
.x11_c00497{left:272.880000px;}
.x14_c00497{left:274.320000px;}
.x17_c00497{left:295.200000px;}
.xa_c00497{left:306.000000px;}
.x12_c00497{left:315.360000px;}
.x21_c00497{left:317.520000px;}
.x32_c00497{left:318.960000px;}
.x18_c00497{left:347.760000px;}
.x15_c00497{left:358.560000px;}
.x22_c00497{left:360.720000px;}
.x2b_c00497{left:372.960000px;}
.x1a_c00497{left:381.600000px;}
.xb_c00497{left:390.960000px;}
.x19_c00497{left:393.120000px;}
.x16_c00497{left:403.920000px;}
.x2c_c00497{left:414.720000px;}
.xc_c00497{left:435.600000px;}
.x1f_c00497{left:447.120000px;}
.x13_c00497{left:457.200000px;}
.x2d_c00497{left:469.440000px;}
.x1c_c00497{left:479.520000px;}
.xd_c00497{left:489.600000px;}
.x2e_c00497{left:506.880000px;}
.x31_c00497{left:535.680000px;}
.x5_c00497{left:544.320000px;}
.x6_c00497{left:565.920000px;}
.x27_c00497{left:567.360000px;}
.x7_c00497{left:586.080000px;}
.x23_c00497{left:587.520000px;}
.x33_c00497{left:600.480000px;}
.x24_c00497{left:621.360000px;}
.x25_c00497{left:653.760000px;}
.x30_c00497{left:655.200000px;}
.x28_c00497{left:686.880000px;}
.x4_c00497{left:688.320000px;}
.x8_c00497{left:695.520000px;}
.xe_c00497{left:696.960000px;}
.x2a_c00497{left:698.400000px;}
.x29_c00497{left:707.040000px;}
.x26_c00497{left:717.840000px;}
.x2f_c00497{left:719.280000px;}
@media print{
.v0_c00497{vertical-align:0.000000pt;}
.v1_c00497{vertical-align:5.120000pt;}
.ls1_c00497{letter-spacing:0.000000pt;}
.ls0_c00497{letter-spacing:46.801493pt;}
.ws3_c00497{word-spacing:0.000000pt;}
.ws0_c00497{word-spacing:11.967677pt;}
.ws1_c00497{word-spacing:18.445018pt;}
.ws2_c00497{word-spacing:23.368261pt;}
.fs9_c00497{font-size:30.720000pt;}
.fsd_c00497{font-size:33.280000pt;}
.fs7_c00497{font-size:38.400000pt;}
.fs5_c00497{font-size:40.960000pt;}
.fs6_c00497{font-size:43.520000pt;}
.fs3_c00497{font-size:46.080000pt;}
.fs0_c00497{font-size:48.640000pt;}
.fsa_c00497{font-size:51.200000pt;}
.fs8_c00497{font-size:53.760000pt;}
.fs4_c00497{font-size:58.880000pt;}
.fsb_c00497{font-size:61.440000pt;}
.fs1_c00497{font-size:64.000000pt;}
.fs2_c00497{font-size:66.560000pt;}
.fsc_c00497{font-size:69.120000pt;}
.fse_c00497{font-size:89.600000pt;}
.y0_c00497{bottom:0.000000pt;}
.y84_c00497{bottom:48.640000pt;}
.y89_c00497{bottom:49.920000pt;}
.y83_c00497{bottom:50.560000pt;}
.y86_c00497{bottom:51.200000pt;}
.y87_c00497{bottom:51.840000pt;}
.y88_c00497{bottom:53.120000pt;}
.y85_c00497{bottom:53.760000pt;}
.y82_c00497{bottom:88.320000pt;}
.y80_c00497{bottom:89.600000pt;}
.y81_c00497{bottom:90.880000pt;}
.y7b_c00497{bottom:115.840000pt;}
.y7a_c00497{bottom:118.400000pt;}
.y7f_c00497{bottom:119.040000pt;}
.y7c_c00497{bottom:119.680000pt;}
.y7d_c00497{bottom:120.320000pt;}
.y7e_c00497{bottom:120.960000pt;}
.y76_c00497{bottom:154.880000pt;}
.y75_c00497{bottom:156.160000pt;}
.y79_c00497{bottom:156.800000pt;}
.y78_c00497{bottom:157.440000pt;}
.y77_c00497{bottom:158.080000pt;}
.y70_c00497{bottom:192.640000pt;}
.y72_c00497{bottom:194.560000pt;}
.y6f_c00497{bottom:195.200000pt;}
.y71_c00497{bottom:195.840000pt;}
.y74_c00497{bottom:197.120000pt;}
.y73_c00497{bottom:197.760000pt;}
.y6b_c00497{bottom:231.040000pt;}
.y6a_c00497{bottom:233.600000pt;}
.y6c_c00497{bottom:234.240000pt;}
.y6d_c00497{bottom:234.880000pt;}
.y6e_c00497{bottom:235.520000pt;}
.y64_c00497{bottom:269.440000pt;}
.y66_c00497{bottom:270.080000pt;}
.y63_c00497{bottom:271.360000pt;}
.y69_c00497{bottom:272.000000pt;}
.y65_c00497{bottom:272.640000pt;}
.y68_c00497{bottom:273.280000pt;}
.y67_c00497{bottom:273.920000pt;}
.y5f_c00497{bottom:302.080000pt;}
.y5c_c00497{bottom:307.200000pt;}
.y5d_c00497{bottom:308.480000pt;}
.y5b_c00497{bottom:309.120000pt;}
.y60_c00497{bottom:309.760000pt;}
.y62_c00497{bottom:310.400000pt;}
.y61_c00497{bottom:311.040000pt;}
.y5e_c00497{bottom:311.680000pt;}
.y46_c00497{bottom:344.960000pt;}
.y48_c00497{bottom:346.240000pt;}
.y45_c00497{bottom:346.880000pt;}
.y5a_c00497{bottom:347.520000pt;}
.y59_c00497{bottom:348.160000pt;}
.y47_c00497{bottom:348.800000pt;}
.y42_c00497{bottom:384.640000pt;}
.y43_c00497{bottom:385.280000pt;}
.y44_c00497{bottom:386.560000pt;}
.y3d_c00497{bottom:411.520000pt;}
.y41_c00497{bottom:412.800000pt;}
.y3f_c00497{bottom:413.440000pt;}
.y57_c00497{bottom:414.080000pt;}
.y3c_c00497{bottom:414.720000pt;}
.y3e_c00497{bottom:415.360000pt;}
.y40_c00497{bottom:416.000000pt;}
.y58_c00497{bottom:416.640000pt;}
.y3a_c00497{bottom:449.920000pt;}
.y3b_c00497{bottom:450.560000pt;}
.y39_c00497{bottom:452.480000pt;}
.y55_c00497{bottom:453.120000pt;}
.y56_c00497{bottom:454.400000pt;}
.y54_c00497{bottom:455.040000pt;}
.y36_c00497{bottom:488.320000pt;}
.y38_c00497{bottom:488.960000pt;}
.y37_c00497{bottom:490.240000pt;}
.y35_c00497{bottom:490.880000pt;}
.y53_c00497{bottom:492.800000pt;}
.y52_c00497{bottom:493.440000pt;}
.y32_c00497{bottom:526.080000pt;}
.y33_c00497{bottom:528.000000pt;}
.y31_c00497{bottom:529.280000pt;}
.y50_c00497{bottom:529.920000pt;}
.y34_c00497{bottom:530.560000pt;}
.y51_c00497{bottom:531.200000pt;}
.y2e_c00497{bottom:565.760000pt;}
.y2f_c00497{bottom:566.400000pt;}
.y2d_c00497{bottom:567.040000pt;}
.y4f_c00497{bottom:568.320000pt;}
.y30_c00497{bottom:568.960000pt;}
.y29_c00497{bottom:603.520000pt;}
.y2c_c00497{bottom:604.160000pt;}
.y28_c00497{bottom:604.800000pt;}
.y4d_c00497{bottom:606.080000pt;}
.y2a_c00497{bottom:606.720000pt;}
.y2b_c00497{bottom:608.000000pt;}
.y4e_c00497{bottom:608.640000pt;}
.y27_c00497{bottom:641.920000pt;}
.y26_c00497{bottom:643.200000pt;}
.y4b_c00497{bottom:643.840000pt;}
.y4c_c00497{bottom:644.480000pt;}
.y24_c00497{bottom:679.680000pt;}
.y25_c00497{bottom:680.320000pt;}
.y23_c00497{bottom:681.600000pt;}
.y49_c00497{bottom:682.240000pt;}
.y4a_c00497{bottom:682.880000pt;}
.y22_c00497{bottom:717.440000pt;}
.y21_c00497{bottom:718.720000pt;}
.y1d_c00497{bottom:745.600000pt;}
.y1e_c00497{bottom:747.520000pt;}
.y1c_c00497{bottom:748.160000pt;}
.y20_c00497{bottom:748.800000pt;}
.y1f_c00497{bottom:749.440000pt;}
.y16_c00497{bottom:784.640000pt;}
.y15_c00497{bottom:785.280000pt;}
.y1a_c00497{bottom:785.920000pt;}
.y18_c00497{bottom:786.560000pt;}
.y19_c00497{bottom:788.480000pt;}
.y1b_c00497{bottom:789.120000pt;}
.y10_c00497{bottom:821.760000pt;}
.y14_c00497{bottom:822.400000pt;}
.y13_c00497{bottom:823.040000pt;}
.yf_c00497{bottom:823.680000pt;}
.y17_c00497{bottom:824.320000pt;}
.y11_c00497{bottom:824.960000pt;}
.y12_c00497{bottom:825.600000pt;}
.ye_c00497{bottom:859.520000pt;}
.yc_c00497{bottom:860.800000pt;}
.yd_c00497{bottom:862.720000pt;}
.y6_c00497{bottom:888.320000pt;}
.y7_c00497{bottom:889.600000pt;}
.yb_c00497{bottom:890.240000pt;}
.y5_c00497{bottom:890.880000pt;}
.y8_c00497{bottom:891.520000pt;}
.ya_c00497{bottom:892.160000pt;}
.y9_c00497{bottom:892.800000pt;}
.y2_c00497{bottom:926.720000pt;}
.y1_c00497{bottom:928.640000pt;}
.y4_c00497{bottom:929.280000pt;}
.y3_c00497{bottom:979.840000pt;}
.hb_c00497{height:27.645000pt;}
.hf_c00497{height:29.948750pt;}
.h9_c00497{height:34.556250pt;}
.h7_c00497{height:36.860000pt;}
.h8_c00497{height:39.163750pt;}
.h5_c00497{height:41.467500pt;}
.h2_c00497{height:43.771250pt;}
.hc_c00497{height:46.075000pt;}
.ha_c00497{height:48.378750pt;}
.h10_c00497{height:48.891250pt;}
.h6_c00497{height:52.986250pt;}
.hd_c00497{height:55.290000pt;}
.h3_c00497{height:57.593750pt;}
.h4_c00497{height:59.897500pt;}
.he_c00497{height:62.201250pt;}
.h11_c00497{height:80.631250pt;}
.h1_c00497{height:1032.666667pt;}
.h0_c00497{height:1032.960000pt;}
.w1_c00497{width:699.333333pt;}
.w0_c00497{width:699.520000pt;}
.x0_c00497{left:0.000000pt;}
.x1_c00497{left:50.560000pt;}
.x1d_c00497{left:51.840000pt;}
.x2_c00497{left:117.120000pt;}
.xf_c00497{left:119.040000pt;}
.x10_c00497{left:157.440000pt;}
.x34_c00497{left:167.040000pt;}
.x3_c00497{left:195.200000pt;}
.x20_c00497{left:205.440000pt;}
.x9_c00497{left:222.720000pt;}
.x1b_c00497{left:224.640000pt;}
.x1e_c00497{left:233.600000pt;}
.x11_c00497{left:242.560000pt;}
.x14_c00497{left:243.840000pt;}
.x17_c00497{left:262.400000pt;}
.xa_c00497{left:272.000000pt;}
.x12_c00497{left:280.320000pt;}
.x21_c00497{left:282.240000pt;}
.x32_c00497{left:283.520000pt;}
.x18_c00497{left:309.120000pt;}
.x15_c00497{left:318.720000pt;}
.x22_c00497{left:320.640000pt;}
.x2b_c00497{left:331.520000pt;}
.x1a_c00497{left:339.200000pt;}
.xb_c00497{left:347.520000pt;}
.x19_c00497{left:349.440000pt;}
.x16_c00497{left:359.040000pt;}
.x2c_c00497{left:368.640000pt;}
.xc_c00497{left:387.200000pt;}
.x1f_c00497{left:397.440000pt;}
.x13_c00497{left:406.400000pt;}
.x2d_c00497{left:417.280000pt;}
.x1c_c00497{left:426.240000pt;}
.xd_c00497{left:435.200000pt;}
.x2e_c00497{left:450.560000pt;}
.x31_c00497{left:476.160000pt;}
.x5_c00497{left:483.840000pt;}
.x6_c00497{left:503.040000pt;}
.x27_c00497{left:504.320000pt;}
.x7_c00497{left:520.960000pt;}
.x23_c00497{left:522.240000pt;}
.x33_c00497{left:533.760000pt;}
.x24_c00497{left:552.320000pt;}
.x25_c00497{left:581.120000pt;}
.x30_c00497{left:582.400000pt;}
.x28_c00497{left:610.560000pt;}
.x4_c00497{left:611.840000pt;}
.x8_c00497{left:618.240000pt;}
.xe_c00497{left:619.520000pt;}
.x2a_c00497{left:620.800000pt;}
.x29_c00497{left:628.480000pt;}
.x26_c00497{left:638.080000pt;}
.x2f_c00497{left:639.360000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b352386e703ac8ef38c7b272.woff2')format("woff");}.ff1_c00498{font-family:ff1_c00498;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m39_c00498{transform:matrix(0.215975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215975,0.000000,0.000000,0.250000,0,0);}
.m13_c00498{transform:matrix(0.245175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245175,0.000000,0.000000,0.250000,0,0);}
.m6_c00498{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.me_c00498{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m11_c00498{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_c00498{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);}
.m47_c00498{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_c00498{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m9_c00498{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m2_c00498{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);}
.m35_c00498{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00498{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mb_c00498{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_c00498{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m5_c00498{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m18_c00498{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m16_c00498{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m14_c00498{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00498{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00498{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4_c00498{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00498{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.ma_c00498{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m40_c00498{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00498{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mc_c00498{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00498{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00498{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);}
.m33_c00498{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m21_c00498{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.md_c00498{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);}
.m36_c00498{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m15_c00498{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);}
.m46_c00498{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m17_c00498{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m3_c00498{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m0_c00498{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1_c00498{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00498{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00498{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);}
.m28_c00498{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);}
.m37_c00498{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00498{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);}
.m8_c00498{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00498{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00498{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00498{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m24_c00498{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);}
.m25_c00498{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m43_c00498{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);}
.m29_c00498{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m22_c00498{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m44_c00498{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);}
.m27_c00498{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m45_c00498{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);}
.m7_c00498{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);}
.m20_c00498{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m42_c00498{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_c00498{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m23_c00498{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00498{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);}
.m31_c00498{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00498{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m41_c00498{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m12_c00498{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m30_c00498{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m38_c00498{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m34_c00498{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);}
.m1e_c00498{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00498{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00498{transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);}
.m32_c00498{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.v1_c00498{vertical-align:-2.880000px;}
.v0_c00498{vertical-align:0.000000px;}
.ls0_c00498{letter-spacing:0.000000px;}
.sc__c00498{text-shadow:none;}
.sc0_c00498{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00498{-webkit-text-stroke:0px transparent;}
.sc0_c00498{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00498{word-spacing:0.000000px;}
.ws3_c00498{word-spacing:9.210378px;}
.ws0_c00498{word-spacing:13.136947px;}
.ws2_c00498{word-spacing:15.600000px;}
.ws1_c00498{word-spacing:22.368000px;}
.fc0_c00498{color:transparent;}
.fsb_c00498{font-size:34.560000px;}
.fs4_c00498{font-size:46.080000px;}
.fs3_c00498{font-size:48.960000px;}
.fs8_c00498{font-size:51.840000px;}
.fs6_c00498{font-size:54.720000px;}
.fs5_c00498{font-size:57.600000px;}
.fs1_c00498{font-size:60.480000px;}
.fs9_c00498{font-size:63.360000px;}
.fsc_c00498{font-size:66.240000px;}
.fs7_c00498{font-size:69.120000px;}
.fs2_c00498{font-size:72.000000px;}
.fs0_c00498{font-size:74.880000px;}
.fsa_c00498{font-size:77.760000px;}
.y0_c00498{bottom:0.000000px;}
.y67_c00498{bottom:10.800000px;}
.y68_c00498{bottom:12.960000px;}
.y66_c00498{bottom:41.040000px;}
.y63_c00498{bottom:41.760000px;}
.y65_c00498{bottom:43.200000px;}
.y64_c00498{bottom:43.920000px;}
.y62_c00498{bottom:83.520000px;}
.y60_c00498{bottom:84.240000px;}
.y61_c00498{bottom:85.680000px;}
.y5d_c00498{bottom:126.720000px;}
.y5f_c00498{bottom:127.440000px;}
.y5b_c00498{bottom:128.160000px;}
.y5e_c00498{bottom:128.880000px;}
.y5c_c00498{bottom:129.600000px;}
.y59_c00498{bottom:169.920000px;}
.y58_c00498{bottom:170.640000px;}
.y5a_c00498{bottom:172.080000px;}
.y56_c00498{bottom:212.400000px;}
.y54_c00498{bottom:213.120000px;}
.y53_c00498{bottom:213.840000px;}
.y55_c00498{bottom:215.280000px;}
.y57_c00498{bottom:216.000000px;}
.y51_c00498{bottom:255.600000px;}
.y50_c00498{bottom:256.320000px;}
.y4f_c00498{bottom:257.040000px;}
.y52_c00498{bottom:258.480000px;}
.y4b_c00498{bottom:298.800000px;}
.y4e_c00498{bottom:299.520000px;}
.y4a_c00498{bottom:300.240000px;}
.y4c_c00498{bottom:300.960000px;}
.y4d_c00498{bottom:301.680000px;}
.y48_c00498{bottom:342.000000px;}
.y45_c00498{bottom:342.720000px;}
.y49_c00498{bottom:343.440000px;}
.y46_c00498{bottom:344.160000px;}
.y47_c00498{bottom:344.880000px;}
.y44_c00498{bottom:384.480000px;}
.y42_c00498{bottom:385.200000px;}
.y41_c00498{bottom:385.920000px;}
.y43_c00498{bottom:387.360000px;}
.y40_c00498{bottom:427.680000px;}
.y3e_c00498{bottom:428.400000px;}
.y3f_c00498{bottom:430.560000px;}
.y3c_c00498{bottom:470.880000px;}
.y3b_c00498{bottom:471.600000px;}
.y3d_c00498{bottom:473.760000px;}
.y39_c00498{bottom:513.360000px;}
.y38_c00498{bottom:514.080000px;}
.y37_c00498{bottom:514.800000px;}
.y3a_c00498{bottom:516.240000px;}
.y34_c00498{bottom:557.280000px;}
.y36_c00498{bottom:558.000000px;}
.y33_c00498{bottom:558.720000px;}
.y35_c00498{bottom:559.440000px;}
.y30_c00498{bottom:599.760000px;}
.y2f_c00498{bottom:600.480000px;}
.y31_c00498{bottom:601.920000px;}
.y32_c00498{bottom:602.640000px;}
.y2d_c00498{bottom:642.960000px;}
.y2e_c00498{bottom:645.120000px;}
.y2c_c00498{bottom:684.720000px;}
.y29_c00498{bottom:685.440000px;}
.y28_c00498{bottom:686.160000px;}
.y2a_c00498{bottom:687.600000px;}
.y2b_c00498{bottom:688.320000px;}
.y26_c00498{bottom:727.920000px;}
.y25_c00498{bottom:728.640000px;}
.y27_c00498{bottom:730.080000px;}
.y21_c00498{bottom:768.960000px;}
.y22_c00498{bottom:770.400000px;}
.y20_c00498{bottom:771.120000px;}
.y23_c00498{bottom:771.840000px;}
.y24_c00498{bottom:773.280000px;}
.y1f_c00498{bottom:805.680000px;}
.y1e_c00498{bottom:812.880000px;}
.y1d_c00498{bottom:814.320000px;}
.y1a_c00498{bottom:855.360000px;}
.y19_c00498{bottom:856.800000px;}
.y1b_c00498{bottom:857.520000px;}
.y1c_c00498{bottom:858.960000px;}
.y17_c00498{bottom:897.840000px;}
.y18_c00498{bottom:900.000000px;}
.y16_c00498{bottom:900.720000px;}
.y13_c00498{bottom:941.040000px;}
.y15_c00498{bottom:942.480000px;}
.y12_c00498{bottom:943.920000px;}
.y14_c00498{bottom:945.360000px;}
.ye_c00498{bottom:984.240000px;}
.y11_c00498{bottom:984.960000px;}
.y10_c00498{bottom:985.680000px;}
.yd_c00498{bottom:986.400000px;}
.yf_c00498{bottom:987.840000px;}
.y9_c00498{bottom:1027.440000px;}
.yb_c00498{bottom:1028.160000px;}
.y8_c00498{bottom:1029.600000px;}
.ya_c00498{bottom:1031.040000px;}
.yc_c00498{bottom:1031.760000px;}
.y3_c00498{bottom:1070.640000px;}
.y6_c00498{bottom:1071.360000px;}
.y2_c00498{bottom:1072.080000px;}
.y7_c00498{bottom:1073.520000px;}
.y4_c00498{bottom:1074.240000px;}
.y5_c00498{bottom:1074.960000px;}
.y1_c00498{bottom:1123.920000px;}
.hd_c00498{height:31.100625px;}
.h6_c00498{height:41.467500px;}
.h5_c00498{height:44.059219px;}
.ha_c00498{height:46.650937px;}
.h8_c00498{height:49.242656px;}
.h7_c00498{height:51.834375px;}
.h3_c00498{height:54.426094px;}
.hb_c00498{height:57.017812px;}
.he_c00498{height:59.609531px;}
.h9_c00498{height:62.201250px;}
.h4_c00498{height:64.792969px;}
.h2_c00498{height:67.384687px;}
.hc_c00498{height:69.976406px;}
.h0_c00498{height:1189.440000px;}
.h1_c00498{height:1189.500000px;}
.w0_c00498{width:795.600000px;}
.w1_c00498{width:795.750000px;}
.x0_c00498{left:0.000000px;}
.x2_c00498{left:58.320000px;}
.x3_c00498{left:133.920000px;}
.x24_c00498{left:135.360000px;}
.x26_c00498{left:177.120000px;}
.x28_c00498{left:188.640000px;}
.x15_c00498{left:220.320000px;}
.x21_c00498{left:222.480000px;}
.xc_c00498{left:231.840000px;}
.xb_c00498{left:274.320000px;}
.x22_c00498{left:275.760000px;}
.xd_c00498{left:286.560000px;}
.x13_c00498{left:329.760000px;}
.x16_c00498{left:339.120000px;}
.x17_c00498{left:340.560000px;}
.x23_c00498{left:373.680000px;}
.x14_c00498{left:382.320000px;}
.x25_c00498{left:416.160000px;}
.x1b_c00498{left:426.240000px;}
.x11_c00498{left:469.440000px;}
.x27_c00498{left:470.880000px;}
.x12_c00498{left:480.960000px;}
.x4_c00498{left:534.960000px;}
.x18_c00498{left:536.400000px;}
.xe_c00498{left:546.480000px;}
.x10_c00498{left:566.640000px;}
.x5_c00498{left:568.080000px;}
.x9_c00498{left:588.240000px;}
.x1d_c00498{left:589.680000px;}
.x1c_c00498{left:612.000000px;}
.x6_c00498{left:622.080000px;}
.x19_c00498{left:623.520000px;}
.xf_c00498{left:655.200000px;}
.x1f_c00498{left:656.640000px;}
.x1_c00498{left:676.080000px;}
.xa_c00498{left:687.600000px;}
.x1a_c00498{left:689.040000px;}
.x7_c00498{left:697.680000px;}
.x1e_c00498{left:699.120000px;}
.x8_c00498{left:718.560000px;}
.x20_c00498{left:720.000000px;}
@media print{
.v1_c00498{vertical-align:-2.560000pt;}
.v0_c00498{vertical-align:0.000000pt;}
.ls0_c00498{letter-spacing:0.000000pt;}
.ws4_c00498{word-spacing:0.000000pt;}
.ws3_c00498{word-spacing:8.187003pt;}
.ws0_c00498{word-spacing:11.677286pt;}
.ws2_c00498{word-spacing:13.866667pt;}
.ws1_c00498{word-spacing:19.882667pt;}
.fsb_c00498{font-size:30.720000pt;}
.fs4_c00498{font-size:40.960000pt;}
.fs3_c00498{font-size:43.520000pt;}
.fs8_c00498{font-size:46.080000pt;}
.fs6_c00498{font-size:48.640000pt;}
.fs5_c00498{font-size:51.200000pt;}
.fs1_c00498{font-size:53.760000pt;}
.fs9_c00498{font-size:56.320000pt;}
.fsc_c00498{font-size:58.880000pt;}
.fs7_c00498{font-size:61.440000pt;}
.fs2_c00498{font-size:64.000000pt;}
.fs0_c00498{font-size:66.560000pt;}
.fsa_c00498{font-size:69.120000pt;}
.y0_c00498{bottom:0.000000pt;}
.y67_c00498{bottom:9.600000pt;}
.y68_c00498{bottom:11.520000pt;}
.y66_c00498{bottom:36.480000pt;}
.y63_c00498{bottom:37.120000pt;}
.y65_c00498{bottom:38.400000pt;}
.y64_c00498{bottom:39.040000pt;}
.y62_c00498{bottom:74.240000pt;}
.y60_c00498{bottom:74.880000pt;}
.y61_c00498{bottom:76.160000pt;}
.y5d_c00498{bottom:112.640000pt;}
.y5f_c00498{bottom:113.280000pt;}
.y5b_c00498{bottom:113.920000pt;}
.y5e_c00498{bottom:114.560000pt;}
.y5c_c00498{bottom:115.200000pt;}
.y59_c00498{bottom:151.040000pt;}
.y58_c00498{bottom:151.680000pt;}
.y5a_c00498{bottom:152.960000pt;}
.y56_c00498{bottom:188.800000pt;}
.y54_c00498{bottom:189.440000pt;}
.y53_c00498{bottom:190.080000pt;}
.y55_c00498{bottom:191.360000pt;}
.y57_c00498{bottom:192.000000pt;}
.y51_c00498{bottom:227.200000pt;}
.y50_c00498{bottom:227.840000pt;}
.y4f_c00498{bottom:228.480000pt;}
.y52_c00498{bottom:229.760000pt;}
.y4b_c00498{bottom:265.600000pt;}
.y4e_c00498{bottom:266.240000pt;}
.y4a_c00498{bottom:266.880000pt;}
.y4c_c00498{bottom:267.520000pt;}
.y4d_c00498{bottom:268.160000pt;}
.y48_c00498{bottom:304.000000pt;}
.y45_c00498{bottom:304.640000pt;}
.y49_c00498{bottom:305.280000pt;}
.y46_c00498{bottom:305.920000pt;}
.y47_c00498{bottom:306.560000pt;}
.y44_c00498{bottom:341.760000pt;}
.y42_c00498{bottom:342.400000pt;}
.y41_c00498{bottom:343.040000pt;}
.y43_c00498{bottom:344.320000pt;}
.y40_c00498{bottom:380.160000pt;}
.y3e_c00498{bottom:380.800000pt;}
.y3f_c00498{bottom:382.720000pt;}
.y3c_c00498{bottom:418.560000pt;}
.y3b_c00498{bottom:419.200000pt;}
.y3d_c00498{bottom:421.120000pt;}
.y39_c00498{bottom:456.320000pt;}
.y38_c00498{bottom:456.960000pt;}
.y37_c00498{bottom:457.600000pt;}
.y3a_c00498{bottom:458.880000pt;}
.y34_c00498{bottom:495.360000pt;}
.y36_c00498{bottom:496.000000pt;}
.y33_c00498{bottom:496.640000pt;}
.y35_c00498{bottom:497.280000pt;}
.y30_c00498{bottom:533.120000pt;}
.y2f_c00498{bottom:533.760000pt;}
.y31_c00498{bottom:535.040000pt;}
.y32_c00498{bottom:535.680000pt;}
.y2d_c00498{bottom:571.520000pt;}
.y2e_c00498{bottom:573.440000pt;}
.y2c_c00498{bottom:608.640000pt;}
.y29_c00498{bottom:609.280000pt;}
.y28_c00498{bottom:609.920000pt;}
.y2a_c00498{bottom:611.200000pt;}
.y2b_c00498{bottom:611.840000pt;}
.y26_c00498{bottom:647.040000pt;}
.y25_c00498{bottom:647.680000pt;}
.y27_c00498{bottom:648.960000pt;}
.y21_c00498{bottom:683.520000pt;}
.y22_c00498{bottom:684.800000pt;}
.y20_c00498{bottom:685.440000pt;}
.y23_c00498{bottom:686.080000pt;}
.y24_c00498{bottom:687.360000pt;}
.y1f_c00498{bottom:716.160000pt;}
.y1e_c00498{bottom:722.560000pt;}
.y1d_c00498{bottom:723.840000pt;}
.y1a_c00498{bottom:760.320000pt;}
.y19_c00498{bottom:761.600000pt;}
.y1b_c00498{bottom:762.240000pt;}
.y1c_c00498{bottom:763.520000pt;}
.y17_c00498{bottom:798.080000pt;}
.y18_c00498{bottom:800.000000pt;}
.y16_c00498{bottom:800.640000pt;}
.y13_c00498{bottom:836.480000pt;}
.y15_c00498{bottom:837.760000pt;}
.y12_c00498{bottom:839.040000pt;}
.y14_c00498{bottom:840.320000pt;}
.ye_c00498{bottom:874.880000pt;}
.y11_c00498{bottom:875.520000pt;}
.y10_c00498{bottom:876.160000pt;}
.yd_c00498{bottom:876.800000pt;}
.yf_c00498{bottom:878.080000pt;}
.y9_c00498{bottom:913.280000pt;}
.yb_c00498{bottom:913.920000pt;}
.y8_c00498{bottom:915.200000pt;}
.ya_c00498{bottom:916.480000pt;}
.yc_c00498{bottom:917.120000pt;}
.y3_c00498{bottom:951.680000pt;}
.y6_c00498{bottom:952.320000pt;}
.y2_c00498{bottom:952.960000pt;}
.y7_c00498{bottom:954.240000pt;}
.y4_c00498{bottom:954.880000pt;}
.y5_c00498{bottom:955.520000pt;}
.y1_c00498{bottom:999.040000pt;}
.hd_c00498{height:27.645000pt;}
.h6_c00498{height:36.860000pt;}
.h5_c00498{height:39.163750pt;}
.ha_c00498{height:41.467500pt;}
.h8_c00498{height:43.771250pt;}
.h7_c00498{height:46.075000pt;}
.h3_c00498{height:48.378750pt;}
.hb_c00498{height:50.682500pt;}
.he_c00498{height:52.986250pt;}
.h9_c00498{height:55.290000pt;}
.h4_c00498{height:57.593750pt;}
.h2_c00498{height:59.897500pt;}
.hc_c00498{height:62.201250pt;}
.h0_c00498{height:1057.280000pt;}
.h1_c00498{height:1057.333333pt;}
.w0_c00498{width:707.200000pt;}
.w1_c00498{width:707.333333pt;}
.x0_c00498{left:0.000000pt;}
.x2_c00498{left:51.840000pt;}
.x3_c00498{left:119.040000pt;}
.x24_c00498{left:120.320000pt;}
.x26_c00498{left:157.440000pt;}
.x28_c00498{left:167.680000pt;}
.x15_c00498{left:195.840000pt;}
.x21_c00498{left:197.760000pt;}
.xc_c00498{left:206.080000pt;}
.xb_c00498{left:243.840000pt;}
.x22_c00498{left:245.120000pt;}
.xd_c00498{left:254.720000pt;}
.x13_c00498{left:293.120000pt;}
.x16_c00498{left:301.440000pt;}
.x17_c00498{left:302.720000pt;}
.x23_c00498{left:332.160000pt;}
.x14_c00498{left:339.840000pt;}
.x25_c00498{left:369.920000pt;}
.x1b_c00498{left:378.880000pt;}
.x11_c00498{left:417.280000pt;}
.x27_c00498{left:418.560000pt;}
.x12_c00498{left:427.520000pt;}
.x4_c00498{left:475.520000pt;}
.x18_c00498{left:476.800000pt;}
.xe_c00498{left:485.760000pt;}
.x10_c00498{left:503.680000pt;}
.x5_c00498{left:504.960000pt;}
.x9_c00498{left:522.880000pt;}
.x1d_c00498{left:524.160000pt;}
.x1c_c00498{left:544.000000pt;}
.x6_c00498{left:552.960000pt;}
.x19_c00498{left:554.240000pt;}
.xf_c00498{left:582.400000pt;}
.x1f_c00498{left:583.680000pt;}
.x1_c00498{left:600.960000pt;}
.xa_c00498{left:611.200000pt;}
.x1a_c00498{left:612.480000pt;}
.x7_c00498{left:620.160000pt;}
.x1e_c00498{left:621.440000pt;}
.x8_c00498{left:638.720000pt;}
.x20_c00498{left:640.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_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_3cbefe19006941091240f80c.woff2')format("woff");}.ff1_c00499{font-family:ff1_c00499;line-height:1.109863;font-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_c00499{transform:matrix(0.018800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018800,0.000000,0.000000,0.250000,0,0);}
.m1a_c00499{transform:matrix(0.032450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032450,0.000000,0.000000,0.250000,0,0);}
.m28_c00499{transform:matrix(0.066850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066850,0.000000,0.000000,0.250000,0,0);}
.m47_c00499{transform:matrix(0.179050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179050,0.000000,0.000000,0.250000,0,0);}
.m16_c00499{transform:matrix(0.193125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193125,0.000000,0.000000,0.250000,0,0);}
.m4c_c00499{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m17_c00499{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);}
.m44_c00499{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);}
.m42_c00499{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m9_c00499{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);}
.m3e_c00499{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);}
.m4e_c00499{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_c00499{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);}
.m2f_c00499{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m27_c00499{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m15_c00499{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);}
.m2e_c00499{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m31_c00499{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00499{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.ma_c00499{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m7_c00499{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m8_c00499{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00499{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m20_c00499{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m45_c00499{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m12_c00499{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m24_c00499{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m26_c00499{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.me_c00499{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m4_c00499{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m29_c00499{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);}
.m2c_c00499{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);}
.m4d_c00499{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m2_c00499{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00499{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);}
.m3a_c00499{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m50_c00499{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.md_c00499{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m30_c00499{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);}
.m36_c00499{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m33_c00499{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m46_c00499{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00499{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m0_c00499{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m6_c00499{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.mc_c00499{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m32_c00499{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);}
.m23_c00499{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m10_c00499{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m1_c00499{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);}
.m34_c00499{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m43_c00499{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00499{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);}
.m38_c00499{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.mb_c00499{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);}
.m39_c00499{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m37_c00499{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00499{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m3_c00499{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);}
.m40_c00499{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m48_c00499{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m41_c00499{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);}
.m2a_c00499{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00499{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);}
.m35_c00499{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m25_c00499{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);}
.m3d_c00499{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00499{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00499{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00499{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00499{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m14_c00499{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m18_c00499{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m13_c00499{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m5_c00499{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.mf_c00499{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);}
.m49_c00499{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m11_c00499{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m19_c00499{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);}
.m4a_c00499{transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);}
.m21_c00499{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.v0_c00499{vertical-align:0.000000px;}
.ls0_c00499{letter-spacing:0.000000px;}
.sc__c00499{text-shadow:none;}
.sc0_c00499{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00499{-webkit-text-stroke:0px transparent;}
.sc0_c00499{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00499{word-spacing:0.000000px;}
.fc0_c00499{color:transparent;}
.fs6_c00499{font-size:34.560000px;}
.fs11_c00499{font-size:37.440000px;}
.fs9_c00499{font-size:46.080000px;}
.fs3_c00499{font-size:48.960000px;}
.fs5_c00499{font-size:51.840000px;}
.fs1_c00499{font-size:54.720000px;}
.fs7_c00499{font-size:57.600000px;}
.fs2_c00499{font-size:60.480000px;}
.fsd_c00499{font-size:63.360000px;}
.fs8_c00499{font-size:66.240000px;}
.fs4_c00499{font-size:69.120000px;}
.fs0_c00499{font-size:72.000000px;}
.fsf_c00499{font-size:74.880000px;}
.fse_c00499{font-size:77.760000px;}
.fs10_c00499{font-size:92.160000px;}
.fs12_c00499{font-size:95.040000px;}
.fsa_c00499{font-size:100.800000px;}
.fsb_c00499{font-size:106.560000px;}
.fsc_c00499{font-size:138.240000px;}
.y0_c00499{bottom:0.000000px;}
.y7e_c00499{bottom:54.720000px;}
.y7f_c00499{bottom:56.160000px;}
.y81_c00499{bottom:56.880000px;}
.y7d_c00499{bottom:57.600000px;}
.y80_c00499{bottom:58.320000px;}
.y82_c00499{bottom:60.480000px;}
.y77_c00499{bottom:98.640000px;}
.y79_c00499{bottom:99.360000px;}
.y76_c00499{bottom:100.800000px;}
.y7b_c00499{bottom:101.520000px;}
.y7a_c00499{bottom:102.240000px;}
.y78_c00499{bottom:102.960000px;}
.y7c_c00499{bottom:104.400000px;}
.y71_c00499{bottom:141.840000px;}
.y73_c00499{bottom:142.560000px;}
.y75_c00499{bottom:143.280000px;}
.y74_c00499{bottom:144.000000px;}
.y70_c00499{bottom:144.720000px;}
.y72_c00499{bottom:146.160000px;}
.y6b_c00499{bottom:186.480000px;}
.y6f_c00499{bottom:187.200000px;}
.y6a_c00499{bottom:187.920000px;}
.y6c_c00499{bottom:188.640000px;}
.y6d_c00499{bottom:189.360000px;}
.y6e_c00499{bottom:190.080000px;}
.y67_c00499{bottom:221.760000px;}
.y65_c00499{bottom:229.680000px;}
.y64_c00499{bottom:230.400000px;}
.y68_c00499{bottom:231.120000px;}
.y66_c00499{bottom:231.840000px;}
.y69_c00499{bottom:232.560000px;}
.y61_c00499{bottom:272.880000px;}
.y60_c00499{bottom:273.600000px;}
.y62_c00499{bottom:275.040000px;}
.y63_c00499{bottom:275.760000px;}
.y5c_c00499{bottom:315.360000px;}
.y5e_c00499{bottom:316.080000px;}
.y5b_c00499{bottom:316.800000px;}
.y5d_c00499{bottom:318.240000px;}
.y5f_c00499{bottom:318.960000px;}
.y58_c00499{bottom:358.560000px;}
.y57_c00499{bottom:359.280000px;}
.y5a_c00499{bottom:360.000000px;}
.y59_c00499{bottom:361.440000px;}
.y52_c00499{bottom:401.040000px;}
.y51_c00499{bottom:401.760000px;}
.y55_c00499{bottom:402.480000px;}
.y54_c00499{bottom:403.200000px;}
.y53_c00499{bottom:403.920000px;}
.y56_c00499{bottom:404.640000px;}
.y50_c00499{bottom:436.320000px;}
.y4e_c00499{bottom:437.040000px;}
.y4b_c00499{bottom:444.240000px;}
.y4a_c00499{bottom:444.960000px;}
.y4f_c00499{bottom:445.680000px;}
.y4c_c00499{bottom:446.400000px;}
.y4d_c00499{bottom:447.120000px;}
.y47_c00499{bottom:479.520000px;}
.y45_c00499{bottom:486.720000px;}
.y44_c00499{bottom:487.440000px;}
.y48_c00499{bottom:488.160000px;}
.y46_c00499{bottom:489.600000px;}
.y49_c00499{bottom:490.320000px;}
.y42_c00499{bottom:529.920000px;}
.y41_c00499{bottom:532.080000px;}
.y43_c00499{bottom:532.800000px;}
.y3d_c00499{bottom:562.320000px;}
.y40_c00499{bottom:563.040000px;}
.y3f_c00499{bottom:564.480000px;}
.y3e_c00499{bottom:565.200000px;}
.y3a_c00499{bottom:605.520000px;}
.y3c_c00499{bottom:607.680000px;}
.y3b_c00499{bottom:608.400000px;}
.y36_c00499{bottom:637.200000px;}
.y35_c00499{bottom:637.920000px;}
.y34_c00499{bottom:638.640000px;}
.y37_c00499{bottom:639.360000px;}
.y39_c00499{bottom:640.080000px;}
.y38_c00499{bottom:640.800000px;}
.y31_c00499{bottom:680.400000px;}
.y33_c00499{bottom:682.560000px;}
.y32_c00499{bottom:683.280000px;}
.y30_c00499{bottom:712.080000px;}
.y2d_c00499{bottom:713.520000px;}
.y2c_c00499{bottom:714.240000px;}
.y2f_c00499{bottom:714.960000px;}
.y2e_c00499{bottom:715.680000px;}
.y2b_c00499{bottom:754.560000px;}
.y2a_c00499{bottom:758.160000px;}
.y26_c00499{bottom:788.400000px;}
.y25_c00499{bottom:789.120000px;}
.y28_c00499{bottom:789.840000px;}
.y27_c00499{bottom:790.560000px;}
.y29_c00499{bottom:791.280000px;}
.y24_c00499{bottom:830.160000px;}
.y23_c00499{bottom:831.600000px;}
.y1f_c00499{bottom:863.280000px;}
.y1e_c00499{bottom:864.000000px;}
.y1d_c00499{bottom:864.720000px;}
.y21_c00499{bottom:865.440000px;}
.y20_c00499{bottom:866.160000px;}
.y22_c00499{bottom:866.880000px;}
.y1b_c00499{bottom:892.800000px;}
.y1c_c00499{bottom:898.560000px;}
.y18_c00499{bottom:905.040000px;}
.y16_c00499{bottom:905.760000px;}
.y19_c00499{bottom:906.480000px;}
.y14_c00499{bottom:907.200000px;}
.y17_c00499{bottom:907.920000px;}
.y15_c00499{bottom:908.640000px;}
.y1a_c00499{bottom:909.360000px;}
.y13_c00499{bottom:925.920000px;}
.y10_c00499{bottom:940.320000px;}
.yf_c00499{bottom:948.240000px;}
.y11_c00499{bottom:948.960000px;}
.yc_c00499{bottom:949.680000px;}
.ye_c00499{bottom:951.120000px;}
.yd_c00499{bottom:951.840000px;}
.y12_c00499{bottom:952.560000px;}
.ya_c00499{bottom:991.440000px;}
.y7_c00499{bottom:992.160000px;}
.yb_c00499{bottom:992.880000px;}
.y9_c00499{bottom:993.600000px;}
.y8_c00499{bottom:994.320000px;}
.y3_c00499{bottom:1034.640000px;}
.y5_c00499{bottom:1035.360000px;}
.y2_c00499{bottom:1036.080000px;}
.y4_c00499{bottom:1036.800000px;}
.y6_c00499{bottom:1037.520000px;}
.y1_c00499{bottom:1097.280000px;}
.h8_c00499{height:31.100625px;}
.h13_c00499{height:33.692344px;}
.hb_c00499{height:41.467500px;}
.h5_c00499{height:44.059219px;}
.h7_c00499{height:46.650937px;}
.h3_c00499{height:49.242656px;}
.h9_c00499{height:51.834375px;}
.h4_c00499{height:54.426094px;}
.hf_c00499{height:57.017812px;}
.ha_c00499{height:59.609531px;}
.h6_c00499{height:62.201250px;}
.h2_c00499{height:64.792969px;}
.h11_c00499{height:67.384687px;}
.h10_c00499{height:69.976406px;}
.h12_c00499{height:82.935000px;}
.h14_c00499{height:85.526719px;}
.hc_c00499{height:90.710156px;}
.hd_c00499{height:95.893594px;}
.he_c00499{height:124.402500px;}
.h0_c00499{height:1155.600000px;}
.h1_c00499{height:1155.750000px;}
.w1_c00499{width:783.750000px;}
.w0_c00499{width:784.080000px;}
.x0_c00499{left:0.000000px;}
.x2_c00499{left:41.040000px;}
.x2a_c00499{left:42.480000px;}
.x1f_c00499{left:116.640000px;}
.x3_c00499{left:118.080000px;}
.x25_c00499{left:172.080000px;}
.x4_c00499{left:203.760000px;}
.x2d_c00499{left:205.200000px;}
.x1d_c00499{left:214.560000px;}
.x30_c00499{left:216.000000px;}
.x36_c00499{left:249.120000px;}
.x5_c00499{left:257.040000px;}
.x22_c00499{left:258.480000px;}
.x1a_c00499{left:268.560000px;}
.x2b_c00499{left:270.000000px;}
.x12_c00499{left:312.480000px;}
.x1b_c00499{left:323.280000px;}
.x2f_c00499{left:356.400000px;}
.x6_c00499{left:365.040000px;}
.x23_c00499{left:366.480000px;}
.x26_c00499{left:377.280000px;}
.x13_c00499{left:407.520000px;}
.xe_c00499{left:408.960000px;}
.x2e_c00499{left:410.400000px;}
.x7_c00499{left:419.040000px;}
.x29_c00499{left:420.480000px;}
.x1e_c00499{left:440.640000px;}
.x24_c00499{left:442.080000px;}
.xf_c00499{left:451.440000px;}
.x14_c00499{left:457.920000px;}
.x8_c00499{left:462.240000px;}
.x16_c00499{left:463.680000px;}
.x2c_c00499{left:467.280000px;}
.x20_c00499{left:468.720000px;}
.x17_c00499{left:483.840000px;}
.x9_c00499{left:517.680000px;}
.x31_c00499{left:519.120000px;}
.x10_c00499{left:570.240000px;}
.x15_c00499{left:572.400000px;}
.x32_c00499{left:573.840000px;}
.xa_c00499{left:604.800000px;}
.x27_c00499{left:606.240000px;}
.x33_c00499{left:609.120000px;}
.xb_c00499{left:637.920000px;}
.x28_c00499{left:639.360000px;}
.x34_c00499{left:650.160000px;}
.x1_c00499{left:655.920000px;}
.x21_c00499{left:671.760000px;}
.xc_c00499{left:680.400000px;}
.x11_c00499{left:681.840000px;}
.x35_c00499{left:683.280000px;}
.xd_c00499{left:702.000000px;}
.x1c_c00499{left:773.280000px;}
.x18_c00499{left:778.320000px;}
.x19_c00499{left:781.200000px;}
@media print{
.v0_c00499{vertical-align:0.000000pt;}
.ls0_c00499{letter-spacing:0.000000pt;}
.ws0_c00499{word-spacing:0.000000pt;}
.fs6_c00499{font-size:30.720000pt;}
.fs11_c00499{font-size:33.280000pt;}
.fs9_c00499{font-size:40.960000pt;}
.fs3_c00499{font-size:43.520000pt;}
.fs5_c00499{font-size:46.080000pt;}
.fs1_c00499{font-size:48.640000pt;}
.fs7_c00499{font-size:51.200000pt;}
.fs2_c00499{font-size:53.760000pt;}
.fsd_c00499{font-size:56.320000pt;}
.fs8_c00499{font-size:58.880000pt;}
.fs4_c00499{font-size:61.440000pt;}
.fs0_c00499{font-size:64.000000pt;}
.fsf_c00499{font-size:66.560000pt;}
.fse_c00499{font-size:69.120000pt;}
.fs10_c00499{font-size:81.920000pt;}
.fs12_c00499{font-size:84.480000pt;}
.fsa_c00499{font-size:89.600000pt;}
.fsb_c00499{font-size:94.720000pt;}
.fsc_c00499{font-size:122.880000pt;}
.y0_c00499{bottom:0.000000pt;}
.y7e_c00499{bottom:48.640000pt;}
.y7f_c00499{bottom:49.920000pt;}
.y81_c00499{bottom:50.560000pt;}
.y7d_c00499{bottom:51.200000pt;}
.y80_c00499{bottom:51.840000pt;}
.y82_c00499{bottom:53.760000pt;}
.y77_c00499{bottom:87.680000pt;}
.y79_c00499{bottom:88.320000pt;}
.y76_c00499{bottom:89.600000pt;}
.y7b_c00499{bottom:90.240000pt;}
.y7a_c00499{bottom:90.880000pt;}
.y78_c00499{bottom:91.520000pt;}
.y7c_c00499{bottom:92.800000pt;}
.y71_c00499{bottom:126.080000pt;}
.y73_c00499{bottom:126.720000pt;}
.y75_c00499{bottom:127.360000pt;}
.y74_c00499{bottom:128.000000pt;}
.y70_c00499{bottom:128.640000pt;}
.y72_c00499{bottom:129.920000pt;}
.y6b_c00499{bottom:165.760000pt;}
.y6f_c00499{bottom:166.400000pt;}
.y6a_c00499{bottom:167.040000pt;}
.y6c_c00499{bottom:167.680000pt;}
.y6d_c00499{bottom:168.320000pt;}
.y6e_c00499{bottom:168.960000pt;}
.y67_c00499{bottom:197.120000pt;}
.y65_c00499{bottom:204.160000pt;}
.y64_c00499{bottom:204.800000pt;}
.y68_c00499{bottom:205.440000pt;}
.y66_c00499{bottom:206.080000pt;}
.y69_c00499{bottom:206.720000pt;}
.y61_c00499{bottom:242.560000pt;}
.y60_c00499{bottom:243.200000pt;}
.y62_c00499{bottom:244.480000pt;}
.y63_c00499{bottom:245.120000pt;}
.y5c_c00499{bottom:280.320000pt;}
.y5e_c00499{bottom:280.960000pt;}
.y5b_c00499{bottom:281.600000pt;}
.y5d_c00499{bottom:282.880000pt;}
.y5f_c00499{bottom:283.520000pt;}
.y58_c00499{bottom:318.720000pt;}
.y57_c00499{bottom:319.360000pt;}
.y5a_c00499{bottom:320.000000pt;}
.y59_c00499{bottom:321.280000pt;}
.y52_c00499{bottom:356.480000pt;}
.y51_c00499{bottom:357.120000pt;}
.y55_c00499{bottom:357.760000pt;}
.y54_c00499{bottom:358.400000pt;}
.y53_c00499{bottom:359.040000pt;}
.y56_c00499{bottom:359.680000pt;}
.y50_c00499{bottom:387.840000pt;}
.y4e_c00499{bottom:388.480000pt;}
.y4b_c00499{bottom:394.880000pt;}
.y4a_c00499{bottom:395.520000pt;}
.y4f_c00499{bottom:396.160000pt;}
.y4c_c00499{bottom:396.800000pt;}
.y4d_c00499{bottom:397.440000pt;}
.y47_c00499{bottom:426.240000pt;}
.y45_c00499{bottom:432.640000pt;}
.y44_c00499{bottom:433.280000pt;}
.y48_c00499{bottom:433.920000pt;}
.y46_c00499{bottom:435.200000pt;}
.y49_c00499{bottom:435.840000pt;}
.y42_c00499{bottom:471.040000pt;}
.y41_c00499{bottom:472.960000pt;}
.y43_c00499{bottom:473.600000pt;}
.y3d_c00499{bottom:499.840000pt;}
.y40_c00499{bottom:500.480000pt;}
.y3f_c00499{bottom:501.760000pt;}
.y3e_c00499{bottom:502.400000pt;}
.y3a_c00499{bottom:538.240000pt;}
.y3c_c00499{bottom:540.160000pt;}
.y3b_c00499{bottom:540.800000pt;}
.y36_c00499{bottom:566.400000pt;}
.y35_c00499{bottom:567.040000pt;}
.y34_c00499{bottom:567.680000pt;}
.y37_c00499{bottom:568.320000pt;}
.y39_c00499{bottom:568.960000pt;}
.y38_c00499{bottom:569.600000pt;}
.y31_c00499{bottom:604.800000pt;}
.y33_c00499{bottom:606.720000pt;}
.y32_c00499{bottom:607.360000pt;}
.y30_c00499{bottom:632.960000pt;}
.y2d_c00499{bottom:634.240000pt;}
.y2c_c00499{bottom:634.880000pt;}
.y2f_c00499{bottom:635.520000pt;}
.y2e_c00499{bottom:636.160000pt;}
.y2b_c00499{bottom:670.720000pt;}
.y2a_c00499{bottom:673.920000pt;}
.y26_c00499{bottom:700.800000pt;}
.y25_c00499{bottom:701.440000pt;}
.y28_c00499{bottom:702.080000pt;}
.y27_c00499{bottom:702.720000pt;}
.y29_c00499{bottom:703.360000pt;}
.y24_c00499{bottom:737.920000pt;}
.y23_c00499{bottom:739.200000pt;}
.y1f_c00499{bottom:767.360000pt;}
.y1e_c00499{bottom:768.000000pt;}
.y1d_c00499{bottom:768.640000pt;}
.y21_c00499{bottom:769.280000pt;}
.y20_c00499{bottom:769.920000pt;}
.y22_c00499{bottom:770.560000pt;}
.y1b_c00499{bottom:793.600000pt;}
.y1c_c00499{bottom:798.720000pt;}
.y18_c00499{bottom:804.480000pt;}
.y16_c00499{bottom:805.120000pt;}
.y19_c00499{bottom:805.760000pt;}
.y14_c00499{bottom:806.400000pt;}
.y17_c00499{bottom:807.040000pt;}
.y15_c00499{bottom:807.680000pt;}
.y1a_c00499{bottom:808.320000pt;}
.y13_c00499{bottom:823.040000pt;}
.y10_c00499{bottom:835.840000pt;}
.yf_c00499{bottom:842.880000pt;}
.y11_c00499{bottom:843.520000pt;}
.yc_c00499{bottom:844.160000pt;}
.ye_c00499{bottom:845.440000pt;}
.yd_c00499{bottom:846.080000pt;}
.y12_c00499{bottom:846.720000pt;}
.ya_c00499{bottom:881.280000pt;}
.y7_c00499{bottom:881.920000pt;}
.yb_c00499{bottom:882.560000pt;}
.y9_c00499{bottom:883.200000pt;}
.y8_c00499{bottom:883.840000pt;}
.y3_c00499{bottom:919.680000pt;}
.y5_c00499{bottom:920.320000pt;}
.y2_c00499{bottom:920.960000pt;}
.y4_c00499{bottom:921.600000pt;}
.y6_c00499{bottom:922.240000pt;}
.y1_c00499{bottom:975.360000pt;}
.h8_c00499{height:27.645000pt;}
.h13_c00499{height:29.948750pt;}
.hb_c00499{height:36.860000pt;}
.h5_c00499{height:39.163750pt;}
.h7_c00499{height:41.467500pt;}
.h3_c00499{height:43.771250pt;}
.h9_c00499{height:46.075000pt;}
.h4_c00499{height:48.378750pt;}
.hf_c00499{height:50.682500pt;}
.ha_c00499{height:52.986250pt;}
.h6_c00499{height:55.290000pt;}
.h2_c00499{height:57.593750pt;}
.h11_c00499{height:59.897500pt;}
.h10_c00499{height:62.201250pt;}
.h12_c00499{height:73.720000pt;}
.h14_c00499{height:76.023750pt;}
.hc_c00499{height:80.631250pt;}
.hd_c00499{height:85.238750pt;}
.he_c00499{height:110.580000pt;}
.h0_c00499{height:1027.200000pt;}
.h1_c00499{height:1027.333333pt;}
.w1_c00499{width:696.666667pt;}
.w0_c00499{width:696.960000pt;}
.x0_c00499{left:0.000000pt;}
.x2_c00499{left:36.480000pt;}
.x2a_c00499{left:37.760000pt;}
.x1f_c00499{left:103.680000pt;}
.x3_c00499{left:104.960000pt;}
.x25_c00499{left:152.960000pt;}
.x4_c00499{left:181.120000pt;}
.x2d_c00499{left:182.400000pt;}
.x1d_c00499{left:190.720000pt;}
.x30_c00499{left:192.000000pt;}
.x36_c00499{left:221.440000pt;}
.x5_c00499{left:228.480000pt;}
.x22_c00499{left:229.760000pt;}
.x1a_c00499{left:238.720000pt;}
.x2b_c00499{left:240.000000pt;}
.x12_c00499{left:277.760000pt;}
.x1b_c00499{left:287.360000pt;}
.x2f_c00499{left:316.800000pt;}
.x6_c00499{left:324.480000pt;}
.x23_c00499{left:325.760000pt;}
.x26_c00499{left:335.360000pt;}
.x13_c00499{left:362.240000pt;}
.xe_c00499{left:363.520000pt;}
.x2e_c00499{left:364.800000pt;}
.x7_c00499{left:372.480000pt;}
.x29_c00499{left:373.760000pt;}
.x1e_c00499{left:391.680000pt;}
.x24_c00499{left:392.960000pt;}
.xf_c00499{left:401.280000pt;}
.x14_c00499{left:407.040000pt;}
.x8_c00499{left:410.880000pt;}
.x16_c00499{left:412.160000pt;}
.x2c_c00499{left:415.360000pt;}
.x20_c00499{left:416.640000pt;}
.x17_c00499{left:430.080000pt;}
.x9_c00499{left:460.160000pt;}
.x31_c00499{left:461.440000pt;}
.x10_c00499{left:506.880000pt;}
.x15_c00499{left:508.800000pt;}
.x32_c00499{left:510.080000pt;}
.xa_c00499{left:537.600000pt;}
.x27_c00499{left:538.880000pt;}
.x33_c00499{left:541.440000pt;}
.xb_c00499{left:567.040000pt;}
.x28_c00499{left:568.320000pt;}
.x34_c00499{left:577.920000pt;}
.x1_c00499{left:583.040000pt;}
.x21_c00499{left:597.120000pt;}
.xc_c00499{left:604.800000pt;}
.x11_c00499{left:606.080000pt;}
.x35_c00499{left:607.360000pt;}
.xd_c00499{left:624.000000pt;}
.x1c_c00499{left:687.360000pt;}
.x18_c00499{left:691.840000pt;}
.x19_c00499{left:694.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_37810e85b4ef56dc7fb48a38.woff2')format("woff");}.ff1_c01000{font-family:ff1_c01000;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01000{transform:matrix(0.040475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040475,0.000000,0.000000,0.250000,0,0);}
.m3b_c01000{transform:matrix(0.180525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180525,0.000000,0.000000,0.250000,0,0);}
.m37_c01000{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m22_c01000{transform:matrix(0.244350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244350,0.000000,0.000000,0.250000,0,0);}
.m16_c01000{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m40_c01000{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m1a_c01000{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m17_c01000{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_c01000{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_c01000{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);}
.m3d_c01000{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01000{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);}
.m41_c01000{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m6_c01000{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_c01000{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);}
.m34_c01000{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m13_c01000{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m19_c01000{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m5_c01000{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m3_c01000{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01000{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.me_c01000{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m8_c01000{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m18_c01000{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m28_c01000{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01000{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mc_c01000{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m15_c01000{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01000{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m24_c01000{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m36_c01000{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01000{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m21_c01000{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m31_c01000{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01000{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m9_c01000{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m20_c01000{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);}
.m3f_c01000{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m4_c01000{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m33_c01000{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m1_c01000{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.mf_c01000{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m23_c01000{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m2_c01000{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01000{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);}
.m7_c01000{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);}
.mb_c01000{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01000{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);}
.m2f_c01000{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m11_c01000{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);}
.m26_c01000{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m38_c01000{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m25_c01000{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);}
.m39_c01000{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.md_c01000{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);}
.m3a_c01000{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m27_c01000{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m12_c01000{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01000{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m35_c01000{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m10_c01000{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01000{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m29_c01000{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m32_c01000{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.ma_c01000{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01000{transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);}
.v2_c01000{vertical-align:-2.880000px;}
.v0_c01000{vertical-align:0.000000px;}
.v3_c01000{vertical-align:8.640000px;}
.v1_c01000{vertical-align:11.520000px;}
.ls0_c01000{letter-spacing:0.000000px;}
.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;}
}
.ws4_c01000{word-spacing:0.000000px;}
.ws2_c01000{word-spacing:9.658800px;}
.ws0_c01000{word-spacing:420.360000px;}
.ws3_c01000{word-spacing:579.912000px;}
.ws1_c01000{word-spacing:917.150640px;}
.fc0_c01000{color:transparent;}
.fsd_c01000{font-size:34.560000px;}
.fs7_c01000{font-size:46.080000px;}
.fs4_c01000{font-size:48.960000px;}
.fs8_c01000{font-size:51.840000px;}
.fsb_c01000{font-size:54.720000px;}
.fs9_c01000{font-size:57.600000px;}
.fs2_c01000{font-size:60.480000px;}
.fs6_c01000{font-size:63.360000px;}
.fsc_c01000{font-size:66.240000px;}
.fsa_c01000{font-size:69.120000px;}
.fs5_c01000{font-size:72.000000px;}
.fs1_c01000{font-size:74.880000px;}
.fsf_c01000{font-size:77.760000px;}
.fs3_c01000{font-size:80.640000px;}
.fse_c01000{font-size:97.920000px;}
.fs0_c01000{font-size:144.000000px;}
.y0_c01000{bottom:0.000000px;}
.y83_c01000{bottom:48.960000px;}
.y85_c01000{bottom:49.680000px;}
.y81_c01000{bottom:50.400000px;}
.y87_c01000{bottom:51.120000px;}
.y86_c01000{bottom:51.840000px;}
.y82_c01000{bottom:52.560000px;}
.y84_c01000{bottom:53.280000px;}
.y7c_c01000{bottom:92.160000px;}
.y7d_c01000{bottom:92.880000px;}
.y7b_c01000{bottom:93.600000px;}
.y7f_c01000{bottom:95.040000px;}
.y7e_c01000{bottom:95.760000px;}
.y80_c01000{bottom:96.480000px;}
.y77_c01000{bottom:134.640000px;}
.y76_c01000{bottom:136.080000px;}
.y78_c01000{bottom:136.800000px;}
.y79_c01000{bottom:137.520000px;}
.y7a_c01000{bottom:138.240000px;}
.y72_c01000{bottom:177.120000px;}
.y74_c01000{bottom:179.280000px;}
.y71_c01000{bottom:180.000000px;}
.y75_c01000{bottom:180.720000px;}
.y73_c01000{bottom:182.160000px;}
.y6d_c01000{bottom:220.320000px;}
.y6c_c01000{bottom:221.760000px;}
.y6f_c01000{bottom:222.480000px;}
.y70_c01000{bottom:223.200000px;}
.y6e_c01000{bottom:225.360000px;}
.y66_c01000{bottom:262.800000px;}
.y68_c01000{bottom:263.520000px;}
.y65_c01000{bottom:264.960000px;}
.y69_c01000{bottom:265.680000px;}
.y67_c01000{bottom:266.400000px;}
.y6a_c01000{bottom:267.840000px;}
.y6b_c01000{bottom:268.560000px;}
.y62_c01000{bottom:306.000000px;}
.y61_c01000{bottom:306.720000px;}
.y60_c01000{bottom:307.440000px;}
.y63_c01000{bottom:308.880000px;}
.y64_c01000{bottom:311.760000px;}
.y5b_c01000{bottom:349.200000px;}
.y5e_c01000{bottom:349.920000px;}
.y5a_c01000{bottom:350.640000px;}
.y5c_c01000{bottom:352.800000px;}
.y5d_c01000{bottom:353.520000px;}
.y5f_c01000{bottom:354.240000px;}
.y57_c01000{bottom:392.400000px;}
.y58_c01000{bottom:393.120000px;}
.y56_c01000{bottom:393.840000px;}
.y59_c01000{bottom:395.280000px;}
.y51_c01000{bottom:435.600000px;}
.y53_c01000{bottom:436.320000px;}
.y50_c01000{bottom:437.040000px;}
.y54_c01000{bottom:438.480000px;}
.y52_c01000{bottom:439.200000px;}
.y55_c01000{bottom:439.920000px;}
.y4b_c01000{bottom:478.800000px;}
.y4a_c01000{bottom:480.240000px;}
.y4e_c01000{bottom:480.960000px;}
.y4d_c01000{bottom:481.680000px;}
.y4c_c01000{bottom:482.400000px;}
.y4f_c01000{bottom:483.120000px;}
.y46_c01000{bottom:522.000000px;}
.y45_c01000{bottom:522.720000px;}
.y48_c01000{bottom:524.160000px;}
.y47_c01000{bottom:525.600000px;}
.y49_c01000{bottom:527.040000px;}
.y41_c01000{bottom:564.480000px;}
.y42_c01000{bottom:565.200000px;}
.y40_c01000{bottom:565.920000px;}
.y44_c01000{bottom:566.640000px;}
.y43_c01000{bottom:567.360000px;}
.y3c_c01000{bottom:606.960000px;}
.y3e_c01000{bottom:607.680000px;}
.y3b_c01000{bottom:609.120000px;}
.y3f_c01000{bottom:610.560000px;}
.y3d_c01000{bottom:612.000000px;}
.y37_c01000{bottom:650.160000px;}
.y36_c01000{bottom:651.600000px;}
.y38_c01000{bottom:653.040000px;}
.y39_c01000{bottom:654.480000px;}
.y3a_c01000{bottom:655.200000px;}
.y30_c01000{bottom:692.640000px;}
.y33_c01000{bottom:693.360000px;}
.y2f_c01000{bottom:694.800000px;}
.y34_c01000{bottom:695.520000px;}
.y32_c01000{bottom:696.240000px;}
.y31_c01000{bottom:696.960000px;}
.y35_c01000{bottom:697.680000px;}
.y2b_c01000{bottom:735.840000px;}
.y2a_c01000{bottom:737.280000px;}
.y2e_c01000{bottom:738.000000px;}
.y2d_c01000{bottom:738.720000px;}
.y2c_c01000{bottom:739.440000px;}
.y24_c01000{bottom:778.320000px;}
.y27_c01000{bottom:779.040000px;}
.y23_c01000{bottom:779.760000px;}
.y28_c01000{bottom:780.480000px;}
.y25_c01000{bottom:781.920000px;}
.y26_c01000{bottom:782.640000px;}
.y29_c01000{bottom:783.360000px;}
.y1f_c01000{bottom:820.800000px;}
.y21_c01000{bottom:821.520000px;}
.y1e_c01000{bottom:822.240000px;}
.y20_c01000{bottom:822.960000px;}
.y22_c01000{bottom:824.400000px;}
.y1b_c01000{bottom:864.000000px;}
.y1a_c01000{bottom:865.440000px;}
.y1c_c01000{bottom:866.160000px;}
.y1d_c01000{bottom:866.880000px;}
.y17_c01000{bottom:906.480000px;}
.y16_c01000{bottom:907.920000px;}
.y18_c01000{bottom:909.360000px;}
.y19_c01000{bottom:912.240000px;}
.y12_c01000{bottom:950.400000px;}
.y11_c01000{bottom:951.840000px;}
.y15_c01000{bottom:952.560000px;}
.y14_c01000{bottom:953.280000px;}
.y13_c01000{bottom:954.000000px;}
.yb_c01000{bottom:993.600000px;}
.ya_c01000{bottom:994.320000px;}
.yd_c01000{bottom:995.040000px;}
.yc_c01000{bottom:995.760000px;}
.ye_c01000{bottom:997.200000px;}
.y10_c01000{bottom:997.920000px;}
.yf_c01000{bottom:998.640000px;}
.y4_c01000{bottom:1036.800000px;}
.y3_c01000{bottom:1037.520000px;}
.y6_c01000{bottom:1038.960000px;}
.y8_c01000{bottom:1039.680000px;}
.y5_c01000{bottom:1040.400000px;}
.y7_c01000{bottom:1041.120000px;}
.y9_c01000{bottom:1041.840000px;}
.y2_c01000{bottom:1090.080000px;}
.y1_c01000{bottom:1120.320000px;}
.h10_c01000{height:31.100625px;}
.h9_c01000{height:41.467500px;}
.h6_c01000{height:44.059219px;}
.ha_c01000{height:46.650937px;}
.hd_c01000{height:49.242656px;}
.hb_c01000{height:51.834375px;}
.h4_c01000{height:54.426094px;}
.h8_c01000{height:57.017812px;}
.he_c01000{height:59.609531px;}
.hc_c01000{height:62.201250px;}
.h7_c01000{height:64.792969px;}
.h14_c01000{height:65.657812px;}
.hf_c01000{height:65.946094px;}
.h3_c01000{height:67.384687px;}
.h11_c01000{height:68.537812px;}
.h13_c01000{height:69.976406px;}
.h5_c01000{height:72.568125px;}
.h12_c01000{height:88.118437px;}
.h2_c01000{height:129.585938px;}
.h0_c01000{height:1156.320000px;}
.h1_c01000{height:1156.500000px;}
.w1_c01000{width:786.000000px;}
.w0_c01000{width:786.240000px;}
.x0_c01000{left:0.000000px;}
.x3_c01000{left:43.920000px;}
.x1e_c01000{left:45.360000px;}
.x4_c01000{left:119.520000px;}
.x23_c01000{left:120.960000px;}
.x2a_c01000{left:154.800000px;}
.xf_c01000{left:216.000000px;}
.x12_c01000{left:217.440000px;}
.x14_c01000{left:218.880000px;}
.x5_c01000{left:226.800000px;}
.x2b_c01000{left:228.960000px;}
.xc_c01000{left:249.840000px;}
.x10_c01000{left:260.640000px;}
.x6_c01000{left:272.160000px;}
.x26_c01000{left:282.960000px;}
.x19_c01000{left:303.120000px;}
.xd_c01000{left:304.560000px;}
.x11_c01000{left:315.360000px;}
.x2c_c01000{left:326.160000px;}
.x15_c01000{left:336.960000px;}
.x1a_c01000{left:347.760000px;}
.x17_c01000{left:357.120000px;}
.x1f_c01000{left:358.560000px;}
.x27_c01000{left:369.360000px;}
.x1b_c01000{left:378.000000px;}
.x16_c01000{left:390.960000px;}
.x18_c01000{left:401.760000px;}
.x28_c01000{left:412.560000px;}
.x1c_c01000{left:423.360000px;}
.x7_c01000{left:520.560000px;}
.x24_c01000{left:522.000000px;}
.x29_c01000{left:554.400000px;}
.x13_c01000{left:574.560000px;}
.x20_c01000{left:576.000000px;}
.x8_c01000{left:608.400000px;}
.xe_c01000{left:641.520000px;}
.x9_c01000{left:650.880000px;}
.x22_c01000{left:652.320000px;}
.x2_c01000{left:669.600000px;}
.x1d_c01000{left:683.280000px;}
.xa_c01000{left:684.720000px;}
.x25_c01000{left:686.160000px;}
.xb_c01000{left:704.160000px;}
.x21_c01000{left:705.600000px;}
.x1_c01000{left:774.720000px;}
@media print{
.v2_c01000{vertical-align:-2.560000pt;}
.v0_c01000{vertical-align:0.000000pt;}
.v3_c01000{vertical-align:7.680000pt;}
.v1_c01000{vertical-align:10.240000pt;}
.ls0_c01000{letter-spacing:0.000000pt;}
.ws4_c01000{word-spacing:0.000000pt;}
.ws2_c01000{word-spacing:8.585600pt;}
.ws0_c01000{word-spacing:373.653333pt;}
.ws3_c01000{word-spacing:515.477333pt;}
.ws1_c01000{word-spacing:815.245013pt;}
.fsd_c01000{font-size:30.720000pt;}
.fs7_c01000{font-size:40.960000pt;}
.fs4_c01000{font-size:43.520000pt;}
.fs8_c01000{font-size:46.080000pt;}
.fsb_c01000{font-size:48.640000pt;}
.fs9_c01000{font-size:51.200000pt;}
.fs2_c01000{font-size:53.760000pt;}
.fs6_c01000{font-size:56.320000pt;}
.fsc_c01000{font-size:58.880000pt;}
.fsa_c01000{font-size:61.440000pt;}
.fs5_c01000{font-size:64.000000pt;}
.fs1_c01000{font-size:66.560000pt;}
.fsf_c01000{font-size:69.120000pt;}
.fs3_c01000{font-size:71.680000pt;}
.fse_c01000{font-size:87.040000pt;}
.fs0_c01000{font-size:128.000000pt;}
.y0_c01000{bottom:0.000000pt;}
.y83_c01000{bottom:43.520000pt;}
.y85_c01000{bottom:44.160000pt;}
.y81_c01000{bottom:44.800000pt;}
.y87_c01000{bottom:45.440000pt;}
.y86_c01000{bottom:46.080000pt;}
.y82_c01000{bottom:46.720000pt;}
.y84_c01000{bottom:47.360000pt;}
.y7c_c01000{bottom:81.920000pt;}
.y7d_c01000{bottom:82.560000pt;}
.y7b_c01000{bottom:83.200000pt;}
.y7f_c01000{bottom:84.480000pt;}
.y7e_c01000{bottom:85.120000pt;}
.y80_c01000{bottom:85.760000pt;}
.y77_c01000{bottom:119.680000pt;}
.y76_c01000{bottom:120.960000pt;}
.y78_c01000{bottom:121.600000pt;}
.y79_c01000{bottom:122.240000pt;}
.y7a_c01000{bottom:122.880000pt;}
.y72_c01000{bottom:157.440000pt;}
.y74_c01000{bottom:159.360000pt;}
.y71_c01000{bottom:160.000000pt;}
.y75_c01000{bottom:160.640000pt;}
.y73_c01000{bottom:161.920000pt;}
.y6d_c01000{bottom:195.840000pt;}
.y6c_c01000{bottom:197.120000pt;}
.y6f_c01000{bottom:197.760000pt;}
.y70_c01000{bottom:198.400000pt;}
.y6e_c01000{bottom:200.320000pt;}
.y66_c01000{bottom:233.600000pt;}
.y68_c01000{bottom:234.240000pt;}
.y65_c01000{bottom:235.520000pt;}
.y69_c01000{bottom:236.160000pt;}
.y67_c01000{bottom:236.800000pt;}
.y6a_c01000{bottom:238.080000pt;}
.y6b_c01000{bottom:238.720000pt;}
.y62_c01000{bottom:272.000000pt;}
.y61_c01000{bottom:272.640000pt;}
.y60_c01000{bottom:273.280000pt;}
.y63_c01000{bottom:274.560000pt;}
.y64_c01000{bottom:277.120000pt;}
.y5b_c01000{bottom:310.400000pt;}
.y5e_c01000{bottom:311.040000pt;}
.y5a_c01000{bottom:311.680000pt;}
.y5c_c01000{bottom:313.600000pt;}
.y5d_c01000{bottom:314.240000pt;}
.y5f_c01000{bottom:314.880000pt;}
.y57_c01000{bottom:348.800000pt;}
.y58_c01000{bottom:349.440000pt;}
.y56_c01000{bottom:350.080000pt;}
.y59_c01000{bottom:351.360000pt;}
.y51_c01000{bottom:387.200000pt;}
.y53_c01000{bottom:387.840000pt;}
.y50_c01000{bottom:388.480000pt;}
.y54_c01000{bottom:389.760000pt;}
.y52_c01000{bottom:390.400000pt;}
.y55_c01000{bottom:391.040000pt;}
.y4b_c01000{bottom:425.600000pt;}
.y4a_c01000{bottom:426.880000pt;}
.y4e_c01000{bottom:427.520000pt;}
.y4d_c01000{bottom:428.160000pt;}
.y4c_c01000{bottom:428.800000pt;}
.y4f_c01000{bottom:429.440000pt;}
.y46_c01000{bottom:464.000000pt;}
.y45_c01000{bottom:464.640000pt;}
.y48_c01000{bottom:465.920000pt;}
.y47_c01000{bottom:467.200000pt;}
.y49_c01000{bottom:468.480000pt;}
.y41_c01000{bottom:501.760000pt;}
.y42_c01000{bottom:502.400000pt;}
.y40_c01000{bottom:503.040000pt;}
.y44_c01000{bottom:503.680000pt;}
.y43_c01000{bottom:504.320000pt;}
.y3c_c01000{bottom:539.520000pt;}
.y3e_c01000{bottom:540.160000pt;}
.y3b_c01000{bottom:541.440000pt;}
.y3f_c01000{bottom:542.720000pt;}
.y3d_c01000{bottom:544.000000pt;}
.y37_c01000{bottom:577.920000pt;}
.y36_c01000{bottom:579.200000pt;}
.y38_c01000{bottom:580.480000pt;}
.y39_c01000{bottom:581.760000pt;}
.y3a_c01000{bottom:582.400000pt;}
.y30_c01000{bottom:615.680000pt;}
.y33_c01000{bottom:616.320000pt;}
.y2f_c01000{bottom:617.600000pt;}
.y34_c01000{bottom:618.240000pt;}
.y32_c01000{bottom:618.880000pt;}
.y31_c01000{bottom:619.520000pt;}
.y35_c01000{bottom:620.160000pt;}
.y2b_c01000{bottom:654.080000pt;}
.y2a_c01000{bottom:655.360000pt;}
.y2e_c01000{bottom:656.000000pt;}
.y2d_c01000{bottom:656.640000pt;}
.y2c_c01000{bottom:657.280000pt;}
.y24_c01000{bottom:691.840000pt;}
.y27_c01000{bottom:692.480000pt;}
.y23_c01000{bottom:693.120000pt;}
.y28_c01000{bottom:693.760000pt;}
.y25_c01000{bottom:695.040000pt;}
.y26_c01000{bottom:695.680000pt;}
.y29_c01000{bottom:696.320000pt;}
.y1f_c01000{bottom:729.600000pt;}
.y21_c01000{bottom:730.240000pt;}
.y1e_c01000{bottom:730.880000pt;}
.y20_c01000{bottom:731.520000pt;}
.y22_c01000{bottom:732.800000pt;}
.y1b_c01000{bottom:768.000000pt;}
.y1a_c01000{bottom:769.280000pt;}
.y1c_c01000{bottom:769.920000pt;}
.y1d_c01000{bottom:770.560000pt;}
.y17_c01000{bottom:805.760000pt;}
.y16_c01000{bottom:807.040000pt;}
.y18_c01000{bottom:808.320000pt;}
.y19_c01000{bottom:810.880000pt;}
.y12_c01000{bottom:844.800000pt;}
.y11_c01000{bottom:846.080000pt;}
.y15_c01000{bottom:846.720000pt;}
.y14_c01000{bottom:847.360000pt;}
.y13_c01000{bottom:848.000000pt;}
.yb_c01000{bottom:883.200000pt;}
.ya_c01000{bottom:883.840000pt;}
.yd_c01000{bottom:884.480000pt;}
.yc_c01000{bottom:885.120000pt;}
.ye_c01000{bottom:886.400000pt;}
.y10_c01000{bottom:887.040000pt;}
.yf_c01000{bottom:887.680000pt;}
.y4_c01000{bottom:921.600000pt;}
.y3_c01000{bottom:922.240000pt;}
.y6_c01000{bottom:923.520000pt;}
.y8_c01000{bottom:924.160000pt;}
.y5_c01000{bottom:924.800000pt;}
.y7_c01000{bottom:925.440000pt;}
.y9_c01000{bottom:926.080000pt;}
.y2_c01000{bottom:968.960000pt;}
.y1_c01000{bottom:995.840000pt;}
.h10_c01000{height:27.645000pt;}
.h9_c01000{height:36.860000pt;}
.h6_c01000{height:39.163750pt;}
.ha_c01000{height:41.467500pt;}
.hd_c01000{height:43.771250pt;}
.hb_c01000{height:46.075000pt;}
.h4_c01000{height:48.378750pt;}
.h8_c01000{height:50.682500pt;}
.he_c01000{height:52.986250pt;}
.hc_c01000{height:55.290000pt;}
.h7_c01000{height:57.593750pt;}
.h14_c01000{height:58.362500pt;}
.hf_c01000{height:58.618750pt;}
.h3_c01000{height:59.897500pt;}
.h11_c01000{height:60.922500pt;}
.h13_c01000{height:62.201250pt;}
.h5_c01000{height:64.505000pt;}
.h12_c01000{height:78.327500pt;}
.h2_c01000{height:115.187500pt;}
.h0_c01000{height:1027.840000pt;}
.h1_c01000{height:1028.000000pt;}
.w1_c01000{width:698.666667pt;}
.w0_c01000{width:698.880000pt;}
.x0_c01000{left:0.000000pt;}
.x3_c01000{left:39.040000pt;}
.x1e_c01000{left:40.320000pt;}
.x4_c01000{left:106.240000pt;}
.x23_c01000{left:107.520000pt;}
.x2a_c01000{left:137.600000pt;}
.xf_c01000{left:192.000000pt;}
.x12_c01000{left:193.280000pt;}
.x14_c01000{left:194.560000pt;}
.x5_c01000{left:201.600000pt;}
.x2b_c01000{left:203.520000pt;}
.xc_c01000{left:222.080000pt;}
.x10_c01000{left:231.680000pt;}
.x6_c01000{left:241.920000pt;}
.x26_c01000{left:251.520000pt;}
.x19_c01000{left:269.440000pt;}
.xd_c01000{left:270.720000pt;}
.x11_c01000{left:280.320000pt;}
.x2c_c01000{left:289.920000pt;}
.x15_c01000{left:299.520000pt;}
.x1a_c01000{left:309.120000pt;}
.x17_c01000{left:317.440000pt;}
.x1f_c01000{left:318.720000pt;}
.x27_c01000{left:328.320000pt;}
.x1b_c01000{left:336.000000pt;}
.x16_c01000{left:347.520000pt;}
.x18_c01000{left:357.120000pt;}
.x28_c01000{left:366.720000pt;}
.x1c_c01000{left:376.320000pt;}
.x7_c01000{left:462.720000pt;}
.x24_c01000{left:464.000000pt;}
.x29_c01000{left:492.800000pt;}
.x13_c01000{left:510.720000pt;}
.x20_c01000{left:512.000000pt;}
.x8_c01000{left:540.800000pt;}
.xe_c01000{left:570.240000pt;}
.x9_c01000{left:578.560000pt;}
.x22_c01000{left:579.840000pt;}
.x2_c01000{left:595.200000pt;}
.x1d_c01000{left:607.360000pt;}
.xa_c01000{left:608.640000pt;}
.x25_c01000{left:609.920000pt;}
.xb_c01000{left:625.920000pt;}
.x21_c01000{left:627.200000pt;}
.x1_c01000{left:688.640000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_136a9a4c0d77ed81d6164267.woff2')format("woff");}.ff1_c01001{font-family:ff1_c01001;line-height:1.109863;font-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_c01001{transform:matrix(0.220900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220900,0.000000,0.000000,0.250000,0,0);}
.m3b_c01001{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m3a_c01001{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m2d_c01001{transform:matrix(0.236800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236800,0.000000,0.000000,0.250000,0,0);}
.m27_c01001{transform:matrix(0.238800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238800,0.000000,0.000000,0.250000,0,0);}
.m43_c01001{transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);}
.m3d_c01001{transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);}
.m25_c01001{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m34_c01001{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m39_c01001{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);}
.m30_c01001{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m2_c01001{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);}
.m26_c01001{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);}
.m41_c01001{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_c01001{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);}
.m45_c01001{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_c01001{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.md_c01001{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m5_c01001{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m10_c01001{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mc_c01001{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m6_c01001{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m22_c01001{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.me_c01001{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01001{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01001{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m24_c01001{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m37_c01001{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m16_c01001{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01001{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m17_c01001{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m14_c01001{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m15_c01001{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m7_c01001{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);}
.m20_c01001{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m28_c01001{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01001{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);}
.m3e_c01001{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);}
.m32_c01001{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m11_c01001{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01001{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);}
.m0_c01001{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.mb_c01001{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m1_c01001{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m13_c01001{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m4_c01001{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);}
.mf_c01001{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m42_c01001{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);}
.m3_c01001{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01001{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m12_c01001{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);}
.ma_c01001{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m36_c01001{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);}
.m21_c01001{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m18_c01001{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01001{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m31_c01001{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01001{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);}
.m29_c01001{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m19_c01001{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m35_c01001{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01001{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m44_c01001{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m33_c01001{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);}
.m2a_c01001{transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01001{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01001{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.m40_c01001{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m38_c01001{transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01001{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.v3_c01001{vertical-align:-11.520000px;}
.v2_c01001{vertical-align:-8.640000px;}
.v4_c01001{vertical-align:-2.880000px;}
.v0_c01001{vertical-align:0.000000px;}
.v1_c01001{vertical-align:8.640000px;}
.ls2_c01001{letter-spacing:0.000000px;}
.ls1_c01001{letter-spacing:91.614960px;}
.ls0_c01001{letter-spacing:94.189680px;}
.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;}
}
.ws3_c01001{word-spacing:0.000000px;}
.ws2_c01001{word-spacing:53.731200px;}
.ws1_c01001{word-spacing:56.301600px;}
.ws0_c01001{word-spacing:547.068000px;}
.fc0_c01001{color:transparent;}
.fsa_c01001{font-size:34.560000px;}
.fsd_c01001{font-size:37.440000px;}
.fsb_c01001{font-size:43.200000px;}
.fs7_c01001{font-size:46.080000px;}
.fs3_c01001{font-size:48.960000px;}
.fs6_c01001{font-size:51.840000px;}
.fs4_c01001{font-size:54.720000px;}
.fs1_c01001{font-size:57.600000px;}
.fs8_c01001{font-size:60.480000px;}
.fsc_c01001{font-size:63.360000px;}
.fs9_c01001{font-size:66.240000px;}
.fs5_c01001{font-size:69.120000px;}
.fs0_c01001{font-size:72.000000px;}
.fs2_c01001{font-size:74.880000px;}
.fse_c01001{font-size:77.760000px;}
.y0_c01001{bottom:0.000000px;}
.y8a_c01001{bottom:51.840000px;}
.y8d_c01001{bottom:54.000000px;}
.y89_c01001{bottom:54.720000px;}
.y8e_c01001{bottom:55.440000px;}
.y8b_c01001{bottom:56.880000px;}
.y8c_c01001{bottom:57.600000px;}
.y84_c01001{bottom:96.480000px;}
.y83_c01001{bottom:97.920000px;}
.y88_c01001{bottom:98.640000px;}
.y87_c01001{bottom:99.360000px;}
.y85_c01001{bottom:100.080000px;}
.y86_c01001{bottom:101.520000px;}
.y7d_c01001{bottom:139.680000px;}
.y7c_c01001{bottom:141.120000px;}
.y81_c01001{bottom:141.840000px;}
.y80_c01001{bottom:142.560000px;}
.y82_c01001{bottom:143.280000px;}
.y7e_c01001{bottom:144.000000px;}
.y7f_c01001{bottom:144.720000px;}
.y77_c01001{bottom:182.160000px;}
.y79_c01001{bottom:183.600000px;}
.y7b_c01001{bottom:184.320000px;}
.y76_c01001{bottom:185.040000px;}
.y7a_c01001{bottom:185.760000px;}
.y78_c01001{bottom:187.200000px;}
.y70_c01001{bottom:225.360000px;}
.y72_c01001{bottom:226.080000px;}
.y75_c01001{bottom:227.520000px;}
.y6f_c01001{bottom:228.240000px;}
.y73_c01001{bottom:228.960000px;}
.y71_c01001{bottom:229.680000px;}
.y74_c01001{bottom:230.400000px;}
.y6b_c01001{bottom:268.560000px;}
.y6e_c01001{bottom:270.000000px;}
.y6a_c01001{bottom:271.440000px;}
.y6c_c01001{bottom:272.880000px;}
.y6d_c01001{bottom:273.600000px;}
.y65_c01001{bottom:311.760000px;}
.y67_c01001{bottom:312.480000px;}
.y69_c01001{bottom:313.200000px;}
.y64_c01001{bottom:313.920000px;}
.y68_c01001{bottom:314.640000px;}
.y66_c01001{bottom:316.080000px;}
.y5f_c01001{bottom:355.680000px;}
.y63_c01001{bottom:357.120000px;}
.y5e_c01001{bottom:357.840000px;}
.y60_c01001{bottom:358.560000px;}
.y61_c01001{bottom:359.280000px;}
.y62_c01001{bottom:360.000000px;}
.y59_c01001{bottom:398.160000px;}
.y5b_c01001{bottom:398.880000px;}
.y58_c01001{bottom:400.320000px;}
.y5c_c01001{bottom:401.040000px;}
.y5a_c01001{bottom:401.760000px;}
.y5d_c01001{bottom:402.480000px;}
.y54_c01001{bottom:440.640000px;}
.y56_c01001{bottom:441.360000px;}
.y53_c01001{bottom:442.800000px;}
.y57_c01001{bottom:443.520000px;}
.y55_c01001{bottom:444.960000px;}
.y4d_c01001{bottom:483.120000px;}
.y50_c01001{bottom:484.560000px;}
.y51_c01001{bottom:485.280000px;}
.y4c_c01001{bottom:486.000000px;}
.y4e_c01001{bottom:487.440000px;}
.y4f_c01001{bottom:488.160000px;}
.y52_c01001{bottom:488.880000px;}
.y47_c01001{bottom:526.320000px;}
.y48_c01001{bottom:527.040000px;}
.y4a_c01001{bottom:527.760000px;}
.y46_c01001{bottom:528.480000px;}
.y49_c01001{bottom:529.200000px;}
.y4b_c01001{bottom:531.360000px;}
.y41_c01001{bottom:568.800000px;}
.y42_c01001{bottom:569.520000px;}
.y40_c01001{bottom:570.960000px;}
.y43_c01001{bottom:571.680000px;}
.y44_c01001{bottom:573.120000px;}
.y45_c01001{bottom:574.560000px;}
.y39_c01001{bottom:612.000000px;}
.y3d_c01001{bottom:612.720000px;}
.y3a_c01001{bottom:613.440000px;}
.y3b_c01001{bottom:614.160000px;}
.y3e_c01001{bottom:614.880000px;}
.y38_c01001{bottom:615.600000px;}
.y3c_c01001{bottom:616.320000px;}
.y3f_c01001{bottom:617.760000px;}
.y33_c01001{bottom:655.200000px;}
.y37_c01001{bottom:655.920000px;}
.y34_c01001{bottom:656.640000px;}
.y35_c01001{bottom:657.360000px;}
.y32_c01001{bottom:658.080000px;}
.y36_c01001{bottom:659.520000px;}
.y2e_c01001{bottom:699.120000px;}
.y2f_c01001{bottom:699.840000px;}
.y31_c01001{bottom:700.560000px;}
.y2d_c01001{bottom:701.280000px;}
.y30_c01001{bottom:702.720000px;}
.y2c_c01001{bottom:743.040000px;}
.y2b_c01001{bottom:745.920000px;}
.y26_c01001{bottom:774.720000px;}
.y27_c01001{bottom:775.440000px;}
.y25_c01001{bottom:776.160000px;}
.y28_c01001{bottom:777.600000px;}
.y29_c01001{bottom:778.320000px;}
.y2a_c01001{bottom:779.040000px;}
.y24_c01001{bottom:810.000000px;}
.y20_c01001{bottom:817.200000px;}
.y23_c01001{bottom:817.920000px;}
.y22_c01001{bottom:818.640000px;}
.y1f_c01001{bottom:819.360000px;}
.y21_c01001{bottom:820.800000px;}
.y1a_c01001{bottom:859.680000px;}
.y1d_c01001{bottom:860.400000px;}
.y1b_c01001{bottom:861.120000px;}
.y19_c01001{bottom:861.840000px;}
.y1e_c01001{bottom:862.560000px;}
.y1c_c01001{bottom:863.280000px;}
.y15_c01001{bottom:902.160000px;}
.y12_c01001{bottom:902.880000px;}
.y16_c01001{bottom:903.600000px;}
.y13_c01001{bottom:904.320000px;}
.y11_c01001{bottom:905.040000px;}
.y14_c01001{bottom:905.760000px;}
.y17_c01001{bottom:906.480000px;}
.y18_c01001{bottom:907.920000px;}
.ye_c01001{bottom:945.360000px;}
.yf_c01001{bottom:946.800000px;}
.yd_c01001{bottom:947.520000px;}
.y10_c01001{bottom:949.680000px;}
.yb_c01001{bottom:987.840000px;}
.y8_c01001{bottom:988.560000px;}
.y9_c01001{bottom:989.280000px;}
.y7_c01001{bottom:990.000000px;}
.yc_c01001{bottom:990.720000px;}
.ya_c01001{bottom:991.440000px;}
.y5_c01001{bottom:1030.320000px;}
.y3_c01001{bottom:1031.040000px;}
.y6_c01001{bottom:1032.480000px;}
.y2_c01001{bottom:1033.200000px;}
.y4_c01001{bottom:1033.920000px;}
.y1_c01001{bottom:1092.240000px;}
.hc_c01001{height:31.100625px;}
.hf_c01001{height:33.692344px;}
.hd_c01001{height:38.875781px;}
.h9_c01001{height:41.467500px;}
.h5_c01001{height:44.059219px;}
.h8_c01001{height:46.650937px;}
.h6_c01001{height:49.242656px;}
.h3_c01001{height:51.834375px;}
.ha_c01001{height:54.426094px;}
.he_c01001{height:57.017812px;}
.h10_c01001{height:57.882656px;}
.hb_c01001{height:59.609531px;}
.h7_c01001{height:62.201250px;}
.h2_c01001{height:64.792969px;}
.h4_c01001{height:67.384687px;}
.h11_c01001{height:69.976406px;}
.h1_c01001{height:1151.250000px;}
.h0_c01001{height:1151.280000px;}
.w1_c01001{width:768.750000px;}
.w0_c01001{width:768.960000px;}
.x0_c01001{left:0.000000px;}
.x2_c01001{left:43.200000px;}
.x3_c01001{left:118.080000px;}
.x17_c01001{left:119.520000px;}
.x15_c01001{left:172.800000px;}
.x4_c01001{left:215.280000px;}
.x10_c01001{left:216.720000px;}
.x18_c01001{left:248.400000px;}
.x1a_c01001{left:259.920000px;}
.x5_c01001{left:269.280000px;}
.xd_c01001{left:270.720000px;}
.x23_c01001{left:272.160000px;}
.x11_c01001{left:302.400000px;}
.x1f_c01001{left:303.840000px;}
.x6_c01001{left:313.200000px;}
.x1b_c01001{left:314.640000px;}
.x12_c01001{left:356.400000px;}
.x22_c01001{left:357.840000px;}
.x13_c01001{left:399.600000px;}
.xe_c01001{left:410.400000px;}
.xf_c01001{left:464.400000px;}
.x7_c01001{left:519.120000px;}
.x16_c01001{left:520.560000px;}
.x8_c01001{left:573.120000px;}
.x14_c01001{left:574.560000px;}
.x1c_c01001{left:584.640000px;}
.xb_c01001{left:606.960000px;}
.x21_c01001{left:608.400000px;}
.x20_c01001{left:630.720000px;}
.xc_c01001{left:639.360000px;}
.x1d_c01001{left:641.520000px;}
.x9_c01001{left:649.440000px;}
.x1_c01001{left:651.600000px;}
.xa_c01001{left:682.560000px;}
.x19_c01001{left:684.000000px;}
.x1e_c01001{left:704.160000px;}
@media print{
.v3_c01001{vertical-align:-10.240000pt;}
.v2_c01001{vertical-align:-7.680000pt;}
.v4_c01001{vertical-align:-2.560000pt;}
.v0_c01001{vertical-align:0.000000pt;}
.v1_c01001{vertical-align:7.680000pt;}
.ls2_c01001{letter-spacing:0.000000pt;}
.ls1_c01001{letter-spacing:81.435520pt;}
.ls0_c01001{letter-spacing:83.724160pt;}
.ws3_c01001{word-spacing:0.000000pt;}
.ws2_c01001{word-spacing:47.761067pt;}
.ws1_c01001{word-spacing:50.045867pt;}
.ws0_c01001{word-spacing:486.282667pt;}
.fsa_c01001{font-size:30.720000pt;}
.fsd_c01001{font-size:33.280000pt;}
.fsb_c01001{font-size:38.400000pt;}
.fs7_c01001{font-size:40.960000pt;}
.fs3_c01001{font-size:43.520000pt;}
.fs6_c01001{font-size:46.080000pt;}
.fs4_c01001{font-size:48.640000pt;}
.fs1_c01001{font-size:51.200000pt;}
.fs8_c01001{font-size:53.760000pt;}
.fsc_c01001{font-size:56.320000pt;}
.fs9_c01001{font-size:58.880000pt;}
.fs5_c01001{font-size:61.440000pt;}
.fs0_c01001{font-size:64.000000pt;}
.fs2_c01001{font-size:66.560000pt;}
.fse_c01001{font-size:69.120000pt;}
.y0_c01001{bottom:0.000000pt;}
.y8a_c01001{bottom:46.080000pt;}
.y8d_c01001{bottom:48.000000pt;}
.y89_c01001{bottom:48.640000pt;}
.y8e_c01001{bottom:49.280000pt;}
.y8b_c01001{bottom:50.560000pt;}
.y8c_c01001{bottom:51.200000pt;}
.y84_c01001{bottom:85.760000pt;}
.y83_c01001{bottom:87.040000pt;}
.y88_c01001{bottom:87.680000pt;}
.y87_c01001{bottom:88.320000pt;}
.y85_c01001{bottom:88.960000pt;}
.y86_c01001{bottom:90.240000pt;}
.y7d_c01001{bottom:124.160000pt;}
.y7c_c01001{bottom:125.440000pt;}
.y81_c01001{bottom:126.080000pt;}
.y80_c01001{bottom:126.720000pt;}
.y82_c01001{bottom:127.360000pt;}
.y7e_c01001{bottom:128.000000pt;}
.y7f_c01001{bottom:128.640000pt;}
.y77_c01001{bottom:161.920000pt;}
.y79_c01001{bottom:163.200000pt;}
.y7b_c01001{bottom:163.840000pt;}
.y76_c01001{bottom:164.480000pt;}
.y7a_c01001{bottom:165.120000pt;}
.y78_c01001{bottom:166.400000pt;}
.y70_c01001{bottom:200.320000pt;}
.y72_c01001{bottom:200.960000pt;}
.y75_c01001{bottom:202.240000pt;}
.y6f_c01001{bottom:202.880000pt;}
.y73_c01001{bottom:203.520000pt;}
.y71_c01001{bottom:204.160000pt;}
.y74_c01001{bottom:204.800000pt;}
.y6b_c01001{bottom:238.720000pt;}
.y6e_c01001{bottom:240.000000pt;}
.y6a_c01001{bottom:241.280000pt;}
.y6c_c01001{bottom:242.560000pt;}
.y6d_c01001{bottom:243.200000pt;}
.y65_c01001{bottom:277.120000pt;}
.y67_c01001{bottom:277.760000pt;}
.y69_c01001{bottom:278.400000pt;}
.y64_c01001{bottom:279.040000pt;}
.y68_c01001{bottom:279.680000pt;}
.y66_c01001{bottom:280.960000pt;}
.y5f_c01001{bottom:316.160000pt;}
.y63_c01001{bottom:317.440000pt;}
.y5e_c01001{bottom:318.080000pt;}
.y60_c01001{bottom:318.720000pt;}
.y61_c01001{bottom:319.360000pt;}
.y62_c01001{bottom:320.000000pt;}
.y59_c01001{bottom:353.920000pt;}
.y5b_c01001{bottom:354.560000pt;}
.y58_c01001{bottom:355.840000pt;}
.y5c_c01001{bottom:356.480000pt;}
.y5a_c01001{bottom:357.120000pt;}
.y5d_c01001{bottom:357.760000pt;}
.y54_c01001{bottom:391.680000pt;}
.y56_c01001{bottom:392.320000pt;}
.y53_c01001{bottom:393.600000pt;}
.y57_c01001{bottom:394.240000pt;}
.y55_c01001{bottom:395.520000pt;}
.y4d_c01001{bottom:429.440000pt;}
.y50_c01001{bottom:430.720000pt;}
.y51_c01001{bottom:431.360000pt;}
.y4c_c01001{bottom:432.000000pt;}
.y4e_c01001{bottom:433.280000pt;}
.y4f_c01001{bottom:433.920000pt;}
.y52_c01001{bottom:434.560000pt;}
.y47_c01001{bottom:467.840000pt;}
.y48_c01001{bottom:468.480000pt;}
.y4a_c01001{bottom:469.120000pt;}
.y46_c01001{bottom:469.760000pt;}
.y49_c01001{bottom:470.400000pt;}
.y4b_c01001{bottom:472.320000pt;}
.y41_c01001{bottom:505.600000pt;}
.y42_c01001{bottom:506.240000pt;}
.y40_c01001{bottom:507.520000pt;}
.y43_c01001{bottom:508.160000pt;}
.y44_c01001{bottom:509.440000pt;}
.y45_c01001{bottom:510.720000pt;}
.y39_c01001{bottom:544.000000pt;}
.y3d_c01001{bottom:544.640000pt;}
.y3a_c01001{bottom:545.280000pt;}
.y3b_c01001{bottom:545.920000pt;}
.y3e_c01001{bottom:546.560000pt;}
.y38_c01001{bottom:547.200000pt;}
.y3c_c01001{bottom:547.840000pt;}
.y3f_c01001{bottom:549.120000pt;}
.y33_c01001{bottom:582.400000pt;}
.y37_c01001{bottom:583.040000pt;}
.y34_c01001{bottom:583.680000pt;}
.y35_c01001{bottom:584.320000pt;}
.y32_c01001{bottom:584.960000pt;}
.y36_c01001{bottom:586.240000pt;}
.y2e_c01001{bottom:621.440000pt;}
.y2f_c01001{bottom:622.080000pt;}
.y31_c01001{bottom:622.720000pt;}
.y2d_c01001{bottom:623.360000pt;}
.y30_c01001{bottom:624.640000pt;}
.y2c_c01001{bottom:660.480000pt;}
.y2b_c01001{bottom:663.040000pt;}
.y26_c01001{bottom:688.640000pt;}
.y27_c01001{bottom:689.280000pt;}
.y25_c01001{bottom:689.920000pt;}
.y28_c01001{bottom:691.200000pt;}
.y29_c01001{bottom:691.840000pt;}
.y2a_c01001{bottom:692.480000pt;}
.y24_c01001{bottom:720.000000pt;}
.y20_c01001{bottom:726.400000pt;}
.y23_c01001{bottom:727.040000pt;}
.y22_c01001{bottom:727.680000pt;}
.y1f_c01001{bottom:728.320000pt;}
.y21_c01001{bottom:729.600000pt;}
.y1a_c01001{bottom:764.160000pt;}
.y1d_c01001{bottom:764.800000pt;}
.y1b_c01001{bottom:765.440000pt;}
.y19_c01001{bottom:766.080000pt;}
.y1e_c01001{bottom:766.720000pt;}
.y1c_c01001{bottom:767.360000pt;}
.y15_c01001{bottom:801.920000pt;}
.y12_c01001{bottom:802.560000pt;}
.y16_c01001{bottom:803.200000pt;}
.y13_c01001{bottom:803.840000pt;}
.y11_c01001{bottom:804.480000pt;}
.y14_c01001{bottom:805.120000pt;}
.y17_c01001{bottom:805.760000pt;}
.y18_c01001{bottom:807.040000pt;}
.ye_c01001{bottom:840.320000pt;}
.yf_c01001{bottom:841.600000pt;}
.yd_c01001{bottom:842.240000pt;}
.y10_c01001{bottom:844.160000pt;}
.yb_c01001{bottom:878.080000pt;}
.y8_c01001{bottom:878.720000pt;}
.y9_c01001{bottom:879.360000pt;}
.y7_c01001{bottom:880.000000pt;}
.yc_c01001{bottom:880.640000pt;}
.ya_c01001{bottom:881.280000pt;}
.y5_c01001{bottom:915.840000pt;}
.y3_c01001{bottom:916.480000pt;}
.y6_c01001{bottom:917.760000pt;}
.y2_c01001{bottom:918.400000pt;}
.y4_c01001{bottom:919.040000pt;}
.y1_c01001{bottom:970.880000pt;}
.hc_c01001{height:27.645000pt;}
.hf_c01001{height:29.948750pt;}
.hd_c01001{height:34.556250pt;}
.h9_c01001{height:36.860000pt;}
.h5_c01001{height:39.163750pt;}
.h8_c01001{height:41.467500pt;}
.h6_c01001{height:43.771250pt;}
.h3_c01001{height:46.075000pt;}
.ha_c01001{height:48.378750pt;}
.he_c01001{height:50.682500pt;}
.h10_c01001{height:51.451250pt;}
.hb_c01001{height:52.986250pt;}
.h7_c01001{height:55.290000pt;}
.h2_c01001{height:57.593750pt;}
.h4_c01001{height:59.897500pt;}
.h11_c01001{height:62.201250pt;}
.h1_c01001{height:1023.333333pt;}
.h0_c01001{height:1023.360000pt;}
.w1_c01001{width:683.333333pt;}
.w0_c01001{width:683.520000pt;}
.x0_c01001{left:0.000000pt;}
.x2_c01001{left:38.400000pt;}
.x3_c01001{left:104.960000pt;}
.x17_c01001{left:106.240000pt;}
.x15_c01001{left:153.600000pt;}
.x4_c01001{left:191.360000pt;}
.x10_c01001{left:192.640000pt;}
.x18_c01001{left:220.800000pt;}
.x1a_c01001{left:231.040000pt;}
.x5_c01001{left:239.360000pt;}
.xd_c01001{left:240.640000pt;}
.x23_c01001{left:241.920000pt;}
.x11_c01001{left:268.800000pt;}
.x1f_c01001{left:270.080000pt;}
.x6_c01001{left:278.400000pt;}
.x1b_c01001{left:279.680000pt;}
.x12_c01001{left:316.800000pt;}
.x22_c01001{left:318.080000pt;}
.x13_c01001{left:355.200000pt;}
.xe_c01001{left:364.800000pt;}
.xf_c01001{left:412.800000pt;}
.x7_c01001{left:461.440000pt;}
.x16_c01001{left:462.720000pt;}
.x8_c01001{left:509.440000pt;}
.x14_c01001{left:510.720000pt;}
.x1c_c01001{left:519.680000pt;}
.xb_c01001{left:539.520000pt;}
.x21_c01001{left:540.800000pt;}
.x20_c01001{left:560.640000pt;}
.xc_c01001{left:568.320000pt;}
.x1d_c01001{left:570.240000pt;}
.x9_c01001{left:577.280000pt;}
.x1_c01001{left:579.200000pt;}
.xa_c01001{left:606.720000pt;}
.x19_c01001{left:608.000000pt;}
.x1e_c01001{left:625.920000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5f999c291a83b92a428fef76.woff2')format("woff");}.ff1_c01002{font-family:ff1_c01002;line-height:1.109863;font-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_c01002{transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);}
.m42_c01002{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m1_c01002{transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);}
.m2d_c01002{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m10_c01002{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01002{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);}
.m22_c01002{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_c01002{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m7_c01002{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_c01002{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_c01002{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m9_c01002{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);}
.m23_c01002{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);}
.m3f_c01002{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.me_c01002{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m27_c01002{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m5_c01002{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m33_c01002{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m12_c01002{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m14_c01002{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01002{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01002{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m26_c01002{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.mf_c01002{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m32_c01002{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.ma_c01002{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m34_c01002{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m35_c01002{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m21_c01002{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m20_c01002{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mb_c01002{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01002{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m15_c01002{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m8_c01002{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m2_c01002{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m0_c01002{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);}
.m19_c01002{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.md_c01002{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m13_c01002{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m37_c01002{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);}
.m2e_c01002{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01002{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);}
.m6_c01002{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m39_c01002{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);}
.m31_c01002{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m29_c01002{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01002{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);}
.m38_c01002{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m41_c01002{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m36_c01002{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);}
.m2c_c01002{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01002{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.mc_c01002{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);}
.m3_c01002{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m18_c01002{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);}
.m30_c01002{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m24_c01002{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m16_c01002{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01002{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m11_c01002{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01002{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m25_c01002{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01002{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m4_c01002{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01002{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01002{transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);}
.m40_c01002{transform:matrix(0.647500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.647500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.647500,0.000000,0.000000,0.250000,0,0);}
.v1_c01002{vertical-align:-2.880000px;}
.v0_c01002{vertical-align:0.000000px;}
.ls1_c01002{letter-spacing:0.000000px;}
.ls0_c01002{letter-spacing:94.230960px;}
.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;}
.fc0_c01002{color:transparent;}
.fse_c01002{font-size:31.680000px;}
.fs4_c01002{font-size:34.560000px;}
.fs8_c01002{font-size:37.440000px;}
.fsd_c01002{font-size:43.200000px;}
.fsa_c01002{font-size:46.080000px;}
.fs2_c01002{font-size:48.960000px;}
.fs3_c01002{font-size:51.840000px;}
.fs9_c01002{font-size:54.720000px;}
.fsc_c01002{font-size:57.600000px;}
.fsb_c01002{font-size:60.480000px;}
.fs0_c01002{font-size:63.360000px;}
.fs6_c01002{font-size:66.240000px;}
.fs7_c01002{font-size:69.120000px;}
.fs5_c01002{font-size:72.000000px;}
.fs1_c01002{font-size:74.880000px;}
.y0_c01002{bottom:0.000000px;}
.y85_c01002{bottom:23.040000px;}
.y86_c01002{bottom:23.760000px;}
.y87_c01002{bottom:26.640000px;}
.y80_c01002{bottom:53.280000px;}
.y81_c01002{bottom:54.720000px;}
.y7f_c01002{bottom:55.440000px;}
.y84_c01002{bottom:56.160000px;}
.y82_c01002{bottom:56.880000px;}
.y83_c01002{bottom:58.320000px;}
.y7e_c01002{bottom:96.480000px;}
.y7b_c01002{bottom:97.920000px;}
.y7c_c01002{bottom:98.640000px;}
.y7a_c01002{bottom:100.080000px;}
.y7d_c01002{bottom:100.800000px;}
.y76_c01002{bottom:128.160000px;}
.y88_c01002{bottom:129.600000px;}
.y75_c01002{bottom:130.320000px;}
.y79_c01002{bottom:131.040000px;}
.y77_c01002{bottom:132.480000px;}
.y78_c01002{bottom:133.200000px;}
.y74_c01002{bottom:172.080000px;}
.y72_c01002{bottom:172.800000px;}
.y70_c01002{bottom:173.520000px;}
.y71_c01002{bottom:174.960000px;}
.y73_c01002{bottom:176.400000px;}
.y6c_c01002{bottom:203.760000px;}
.y6d_c01002{bottom:204.480000px;}
.y6b_c01002{bottom:205.920000px;}
.y6f_c01002{bottom:207.360000px;}
.y6e_c01002{bottom:208.080000px;}
.y6a_c01002{bottom:246.960000px;}
.y69_c01002{bottom:249.840000px;}
.y65_c01002{bottom:278.640000px;}
.y64_c01002{bottom:280.080000px;}
.y68_c01002{bottom:280.800000px;}
.y67_c01002{bottom:282.240000px;}
.y66_c01002{bottom:282.960000px;}
.y63_c01002{bottom:321.840000px;}
.y62_c01002{bottom:325.440000px;}
.y5e_c01002{bottom:353.520000px;}
.y5f_c01002{bottom:354.960000px;}
.y5d_c01002{bottom:355.680000px;}
.y61_c01002{bottom:356.400000px;}
.y60_c01002{bottom:357.840000px;}
.y5c_c01002{bottom:390.240000px;}
.y55_c01002{bottom:396.720000px;}
.y59_c01002{bottom:397.440000px;}
.y54_c01002{bottom:398.160000px;}
.y58_c01002{bottom:398.880000px;}
.y5a_c01002{bottom:399.600000px;}
.y56_c01002{bottom:400.320000px;}
.y57_c01002{bottom:401.040000px;}
.y5b_c01002{bottom:401.760000px;}
.y50_c01002{bottom:442.080000px;}
.y51_c01002{bottom:444.240000px;}
.y4f_c01002{bottom:472.320000px;}
.y4c_c01002{bottom:473.040000px;}
.y4d_c01002{bottom:473.760000px;}
.y4b_c01002{bottom:475.200000px;}
.y53_c01002{bottom:475.920000px;}
.y4e_c01002{bottom:476.640000px;}
.y52_c01002{bottom:477.360000px;}
.y4a_c01002{bottom:516.240000px;}
.y3c_c01002{bottom:516.960000px;}
.y3e_c01002{bottom:517.680000px;}
.y3d_c01002{bottom:519.840000px;}
.y49_c01002{bottom:559.440000px;}
.y47_c01002{bottom:560.160000px;}
.y48_c01002{bottom:560.880000px;}
.y46_c01002{bottom:563.040000px;}
.y40_c01002{bottom:591.840000px;}
.y41_c01002{bottom:592.560000px;}
.y44_c01002{bottom:593.280000px;}
.y3f_c01002{bottom:594.000000px;}
.y42_c01002{bottom:594.720000px;}
.y43_c01002{bottom:595.440000px;}
.y45_c01002{bottom:596.160000px;}
.y3b_c01002{bottom:627.120000px;}
.y37_c01002{bottom:634.320000px;}
.y3a_c01002{bottom:635.040000px;}
.y39_c01002{bottom:635.760000px;}
.y36_c01002{bottom:636.480000px;}
.y38_c01002{bottom:637.920000px;}
.y32_c01002{bottom:676.800000px;}
.y34_c01002{bottom:678.240000px;}
.y31_c01002{bottom:678.960000px;}
.y35_c01002{bottom:680.400000px;}
.y33_c01002{bottom:681.120000px;}
.y2f_c01002{bottom:719.280000px;}
.y2b_c01002{bottom:720.000000px;}
.y2e_c01002{bottom:720.720000px;}
.y2a_c01002{bottom:721.440000px;}
.y30_c01002{bottom:722.160000px;}
.y2c_c01002{bottom:722.880000px;}
.y2d_c01002{bottom:723.600000px;}
.y27_c01002{bottom:761.760000px;}
.y25_c01002{bottom:762.480000px;}
.y28_c01002{bottom:763.920000px;}
.y24_c01002{bottom:764.640000px;}
.y26_c01002{bottom:765.360000px;}
.y29_c01002{bottom:766.800000px;}
.y20_c01002{bottom:805.680000px;}
.y23_c01002{bottom:806.400000px;}
.y1f_c01002{bottom:807.840000px;}
.y1e_c01002{bottom:848.160000px;}
.y21_c01002{bottom:848.880000px;}
.y22_c01002{bottom:849.600000px;}
.y1d_c01002{bottom:851.040000px;}
.y18_c01002{bottom:890.640000px;}
.y1c_c01002{bottom:891.360000px;}
.y1b_c01002{bottom:892.080000px;}
.y17_c01002{bottom:893.520000px;}
.y19_c01002{bottom:894.960000px;}
.y16_c01002{bottom:933.120000px;}
.y14_c01002{bottom:933.840000px;}
.y1a_c01002{bottom:935.280000px;}
.y13_c01002{bottom:936.000000px;}
.y15_c01002{bottom:937.440000px;}
.yf_c01002{bottom:976.320000px;}
.y11_c01002{bottom:977.040000px;}
.ye_c01002{bottom:978.480000px;}
.y12_c01002{bottom:979.920000px;}
.y10_c01002{bottom:980.640000px;}
.ya_c01002{bottom:1019.520000px;}
.yc_c01002{bottom:1020.960000px;}
.y9_c01002{bottom:1021.680000px;}
.yb_c01002{bottom:1023.120000px;}
.yd_c01002{bottom:1023.840000px;}
.y2_c01002{bottom:1062.720000px;}
.y6_c01002{bottom:1063.440000px;}
.y5_c01002{bottom:1064.160000px;}
.y7_c01002{bottom:1064.880000px;}
.y1_c01002{bottom:1065.600000px;}
.y3_c01002{bottom:1066.320000px;}
.y8_c01002{bottom:1067.040000px;}
.y4_c01002{bottom:1111.680000px;}
.h10_c01002{height:28.508906px;}
.h6_c01002{height:31.100625px;}
.ha_c01002{height:33.692344px;}
.hf_c01002{height:38.875781px;}
.hc_c01002{height:41.467500px;}
.h4_c01002{height:44.059219px;}
.h5_c01002{height:46.650937px;}
.hb_c01002{height:49.242656px;}
.he_c01002{height:51.834375px;}
.hd_c01002{height:54.426094px;}
.h2_c01002{height:57.017812px;}
.h8_c01002{height:59.609531px;}
.h9_c01002{height:62.201250px;}
.h7_c01002{height:64.792969px;}
.h3_c01002{height:67.384687px;}
.h0_c01002{height:1175.760000px;}
.h1_c01002{height:1176.000000px;}
.w1_c01002{width:784.500000px;}
.w0_c01002{width:784.800000px;}
.x0_c01002{left:0.000000px;}
.x15_c01002{left:49.680000px;}
.x1_c01002{left:51.120000px;}
.x25_c01002{left:123.840000px;}
.x16_c01002{left:126.000000px;}
.x2_c01002{left:127.440000px;}
.x1d_c01002{left:168.480000px;}
.x20_c01002{left:180.000000px;}
.x2d_c01002{left:202.320000px;}
.x3_c01002{left:222.480000px;}
.xc_c01002{left:223.920000px;}
.x26_c01002{left:234.720000px;}
.x11_c01002{left:255.600000px;}
.xf_c01002{left:265.680000px;}
.x4_c01002{left:267.120000px;}
.x1c_c01002{left:276.480000px;}
.x1f_c01002{left:278.640000px;}
.x12_c01002{left:309.600000px;}
.x5_c01002{left:320.400000px;}
.x19_c01002{left:321.840000px;}
.x2b_c01002{left:342.720000px;}
.x13_c01002{left:352.080000px;}
.x6_c01002{left:362.880000px;}
.x17_c01002{left:364.320000px;}
.x23_c01002{left:375.120000px;}
.x27_c01002{left:385.200000px;}
.x2c_c01002{left:396.000000px;}
.x18_c01002{left:406.080000px;}
.x1e_c01002{left:408.240000px;}
.x21_c01002{left:418.320000px;}
.x24_c01002{left:429.840000px;}
.x28_c01002{left:439.920000px;}
.x14_c01002{left:450.000000px;}
.x1a_c01002{left:461.520000px;}
.x2a_c01002{left:465.840000px;}
.x22_c01002{left:473.040000px;}
.x29_c01002{left:483.120000px;}
.x8_c01002{left:527.040000px;}
.x9_c01002{left:580.320000px;}
.xd_c01002{left:614.160000px;}
.x1b_c01002{left:647.280000px;}
.xa_c01002{left:656.640000px;}
.x10_c01002{left:658.080000px;}
.x7_c01002{left:673.920000px;}
.xb_c01002{left:690.480000px;}
.xe_c01002{left:710.640000px;}
@media print{
.v1_c01002{vertical-align:-2.560000pt;}
.v0_c01002{vertical-align:0.000000pt;}
.ls1_c01002{letter-spacing:0.000000pt;}
.ls0_c01002{letter-spacing:83.760853pt;}
.ws0_c01002{word-spacing:0.000000pt;}
.fse_c01002{font-size:28.160000pt;}
.fs4_c01002{font-size:30.720000pt;}
.fs8_c01002{font-size:33.280000pt;}
.fsd_c01002{font-size:38.400000pt;}
.fsa_c01002{font-size:40.960000pt;}
.fs2_c01002{font-size:43.520000pt;}
.fs3_c01002{font-size:46.080000pt;}
.fs9_c01002{font-size:48.640000pt;}
.fsc_c01002{font-size:51.200000pt;}
.fsb_c01002{font-size:53.760000pt;}
.fs0_c01002{font-size:56.320000pt;}
.fs6_c01002{font-size:58.880000pt;}
.fs7_c01002{font-size:61.440000pt;}
.fs5_c01002{font-size:64.000000pt;}
.fs1_c01002{font-size:66.560000pt;}
.y0_c01002{bottom:0.000000pt;}
.y85_c01002{bottom:20.480000pt;}
.y86_c01002{bottom:21.120000pt;}
.y87_c01002{bottom:23.680000pt;}
.y80_c01002{bottom:47.360000pt;}
.y81_c01002{bottom:48.640000pt;}
.y7f_c01002{bottom:49.280000pt;}
.y84_c01002{bottom:49.920000pt;}
.y82_c01002{bottom:50.560000pt;}
.y83_c01002{bottom:51.840000pt;}
.y7e_c01002{bottom:85.760000pt;}
.y7b_c01002{bottom:87.040000pt;}
.y7c_c01002{bottom:87.680000pt;}
.y7a_c01002{bottom:88.960000pt;}
.y7d_c01002{bottom:89.600000pt;}
.y76_c01002{bottom:113.920000pt;}
.y88_c01002{bottom:115.200000pt;}
.y75_c01002{bottom:115.840000pt;}
.y79_c01002{bottom:116.480000pt;}
.y77_c01002{bottom:117.760000pt;}
.y78_c01002{bottom:118.400000pt;}
.y74_c01002{bottom:152.960000pt;}
.y72_c01002{bottom:153.600000pt;}
.y70_c01002{bottom:154.240000pt;}
.y71_c01002{bottom:155.520000pt;}
.y73_c01002{bottom:156.800000pt;}
.y6c_c01002{bottom:181.120000pt;}
.y6d_c01002{bottom:181.760000pt;}
.y6b_c01002{bottom:183.040000pt;}
.y6f_c01002{bottom:184.320000pt;}
.y6e_c01002{bottom:184.960000pt;}
.y6a_c01002{bottom:219.520000pt;}
.y69_c01002{bottom:222.080000pt;}
.y65_c01002{bottom:247.680000pt;}
.y64_c01002{bottom:248.960000pt;}
.y68_c01002{bottom:249.600000pt;}
.y67_c01002{bottom:250.880000pt;}
.y66_c01002{bottom:251.520000pt;}
.y63_c01002{bottom:286.080000pt;}
.y62_c01002{bottom:289.280000pt;}
.y5e_c01002{bottom:314.240000pt;}
.y5f_c01002{bottom:315.520000pt;}
.y5d_c01002{bottom:316.160000pt;}
.y61_c01002{bottom:316.800000pt;}
.y60_c01002{bottom:318.080000pt;}
.y5c_c01002{bottom:346.880000pt;}
.y55_c01002{bottom:352.640000pt;}
.y59_c01002{bottom:353.280000pt;}
.y54_c01002{bottom:353.920000pt;}
.y58_c01002{bottom:354.560000pt;}
.y5a_c01002{bottom:355.200000pt;}
.y56_c01002{bottom:355.840000pt;}
.y57_c01002{bottom:356.480000pt;}
.y5b_c01002{bottom:357.120000pt;}
.y50_c01002{bottom:392.960000pt;}
.y51_c01002{bottom:394.880000pt;}
.y4f_c01002{bottom:419.840000pt;}
.y4c_c01002{bottom:420.480000pt;}
.y4d_c01002{bottom:421.120000pt;}
.y4b_c01002{bottom:422.400000pt;}
.y53_c01002{bottom:423.040000pt;}
.y4e_c01002{bottom:423.680000pt;}
.y52_c01002{bottom:424.320000pt;}
.y4a_c01002{bottom:458.880000pt;}
.y3c_c01002{bottom:459.520000pt;}
.y3e_c01002{bottom:460.160000pt;}
.y3d_c01002{bottom:462.080000pt;}
.y49_c01002{bottom:497.280000pt;}
.y47_c01002{bottom:497.920000pt;}
.y48_c01002{bottom:498.560000pt;}
.y46_c01002{bottom:500.480000pt;}
.y40_c01002{bottom:526.080000pt;}
.y41_c01002{bottom:526.720000pt;}
.y44_c01002{bottom:527.360000pt;}
.y3f_c01002{bottom:528.000000pt;}
.y42_c01002{bottom:528.640000pt;}
.y43_c01002{bottom:529.280000pt;}
.y45_c01002{bottom:529.920000pt;}
.y3b_c01002{bottom:557.440000pt;}
.y37_c01002{bottom:563.840000pt;}
.y3a_c01002{bottom:564.480000pt;}
.y39_c01002{bottom:565.120000pt;}
.y36_c01002{bottom:565.760000pt;}
.y38_c01002{bottom:567.040000pt;}
.y32_c01002{bottom:601.600000pt;}
.y34_c01002{bottom:602.880000pt;}
.y31_c01002{bottom:603.520000pt;}
.y35_c01002{bottom:604.800000pt;}
.y33_c01002{bottom:605.440000pt;}
.y2f_c01002{bottom:639.360000pt;}
.y2b_c01002{bottom:640.000000pt;}
.y2e_c01002{bottom:640.640000pt;}
.y2a_c01002{bottom:641.280000pt;}
.y30_c01002{bottom:641.920000pt;}
.y2c_c01002{bottom:642.560000pt;}
.y2d_c01002{bottom:643.200000pt;}
.y27_c01002{bottom:677.120000pt;}
.y25_c01002{bottom:677.760000pt;}
.y28_c01002{bottom:679.040000pt;}
.y24_c01002{bottom:679.680000pt;}
.y26_c01002{bottom:680.320000pt;}
.y29_c01002{bottom:681.600000pt;}
.y20_c01002{bottom:716.160000pt;}
.y23_c01002{bottom:716.800000pt;}
.y1f_c01002{bottom:718.080000pt;}
.y1e_c01002{bottom:753.920000pt;}
.y21_c01002{bottom:754.560000pt;}
.y22_c01002{bottom:755.200000pt;}
.y1d_c01002{bottom:756.480000pt;}
.y18_c01002{bottom:791.680000pt;}
.y1c_c01002{bottom:792.320000pt;}
.y1b_c01002{bottom:792.960000pt;}
.y17_c01002{bottom:794.240000pt;}
.y19_c01002{bottom:795.520000pt;}
.y16_c01002{bottom:829.440000pt;}
.y14_c01002{bottom:830.080000pt;}
.y1a_c01002{bottom:831.360000pt;}
.y13_c01002{bottom:832.000000pt;}
.y15_c01002{bottom:833.280000pt;}
.yf_c01002{bottom:867.840000pt;}
.y11_c01002{bottom:868.480000pt;}
.ye_c01002{bottom:869.760000pt;}
.y12_c01002{bottom:871.040000pt;}
.y10_c01002{bottom:871.680000pt;}
.ya_c01002{bottom:906.240000pt;}
.yc_c01002{bottom:907.520000pt;}
.y9_c01002{bottom:908.160000pt;}
.yb_c01002{bottom:909.440000pt;}
.yd_c01002{bottom:910.080000pt;}
.y2_c01002{bottom:944.640000pt;}
.y6_c01002{bottom:945.280000pt;}
.y5_c01002{bottom:945.920000pt;}
.y7_c01002{bottom:946.560000pt;}
.y1_c01002{bottom:947.200000pt;}
.y3_c01002{bottom:947.840000pt;}
.y8_c01002{bottom:948.480000pt;}
.y4_c01002{bottom:988.160000pt;}
.h10_c01002{height:25.341250pt;}
.h6_c01002{height:27.645000pt;}
.ha_c01002{height:29.948750pt;}
.hf_c01002{height:34.556250pt;}
.hc_c01002{height:36.860000pt;}
.h4_c01002{height:39.163750pt;}
.h5_c01002{height:41.467500pt;}
.hb_c01002{height:43.771250pt;}
.he_c01002{height:46.075000pt;}
.hd_c01002{height:48.378750pt;}
.h2_c01002{height:50.682500pt;}
.h8_c01002{height:52.986250pt;}
.h9_c01002{height:55.290000pt;}
.h7_c01002{height:57.593750pt;}
.h3_c01002{height:59.897500pt;}
.h0_c01002{height:1045.120000pt;}
.h1_c01002{height:1045.333333pt;}
.w1_c01002{width:697.333333pt;}
.w0_c01002{width:697.600000pt;}
.x0_c01002{left:0.000000pt;}
.x15_c01002{left:44.160000pt;}
.x1_c01002{left:45.440000pt;}
.x25_c01002{left:110.080000pt;}
.x16_c01002{left:112.000000pt;}
.x2_c01002{left:113.280000pt;}
.x1d_c01002{left:149.760000pt;}
.x20_c01002{left:160.000000pt;}
.x2d_c01002{left:179.840000pt;}
.x3_c01002{left:197.760000pt;}
.xc_c01002{left:199.040000pt;}
.x26_c01002{left:208.640000pt;}
.x11_c01002{left:227.200000pt;}
.xf_c01002{left:236.160000pt;}
.x4_c01002{left:237.440000pt;}
.x1c_c01002{left:245.760000pt;}
.x1f_c01002{left:247.680000pt;}
.x12_c01002{left:275.200000pt;}
.x5_c01002{left:284.800000pt;}
.x19_c01002{left:286.080000pt;}
.x2b_c01002{left:304.640000pt;}
.x13_c01002{left:312.960000pt;}
.x6_c01002{left:322.560000pt;}
.x17_c01002{left:323.840000pt;}
.x23_c01002{left:333.440000pt;}
.x27_c01002{left:342.400000pt;}
.x2c_c01002{left:352.000000pt;}
.x18_c01002{left:360.960000pt;}
.x1e_c01002{left:362.880000pt;}
.x21_c01002{left:371.840000pt;}
.x24_c01002{left:382.080000pt;}
.x28_c01002{left:391.040000pt;}
.x14_c01002{left:400.000000pt;}
.x1a_c01002{left:410.240000pt;}
.x2a_c01002{left:414.080000pt;}
.x22_c01002{left:420.480000pt;}
.x29_c01002{left:429.440000pt;}
.x8_c01002{left:468.480000pt;}
.x9_c01002{left:515.840000pt;}
.xd_c01002{left:545.920000pt;}
.x1b_c01002{left:575.360000pt;}
.xa_c01002{left:583.680000pt;}
.x10_c01002{left:584.960000pt;}
.x7_c01002{left:599.040000pt;}
.xb_c01002{left:613.760000pt;}
.xe_c01002{left:631.680000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_971ddecd5e131c0ec27b320e.woff2')format("woff");}.ff1_c01003{font-family:ff1_c01003;line-height:1.109863;font-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_c01003{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.mf_c01003{transform:matrix(0.027925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027925,0.000000,0.000000,0.250000,0,0);}
.m11_c01003{transform:matrix(0.051100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.051100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.051100,0.000000,0.000000,0.250000,0,0);}
.m1c_c01003{transform:matrix(0.077800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077800,0.000000,0.000000,0.250000,0,0);}
.m33_c01003{transform:matrix(0.246775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246775,0.000000,0.000000,0.250000,0,0);}
.m3e_c01003{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m38_c01003{transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);}
.m29_c01003{transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);}
.m24_c01003{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m3a_c01003{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m14_c01003{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_c01003{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m27_c01003{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m5_c01003{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);}
.m42_c01003{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m16_c01003{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.md_c01003{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m32_c01003{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m13_c01003{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);}
.m2c_c01003{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m9_c01003{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m12_c01003{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01003{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.me_c01003{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1b_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);}
.ma_c01003{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m18_c01003{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m23_c01003{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01003{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01003{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m15_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);}
.m2f_c01003{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m44_c01003{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m21_c01003{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m0_c01003{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m6_c01003{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m2_c01003{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.mb_c01003{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01003{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01003{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m4_c01003{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m20_c01003{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);}
.m37_c01003{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01003{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01003{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);}
.m28_c01003{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);}
.m3_c01003{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);}
.m8_c01003{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_c01003{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m43_c01003{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m31_c01003{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m7_c01003{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);}
.m2b_c01003{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m19_c01003{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m30_c01003{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);}
.m34_c01003{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m22_c01003{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01003{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);}
.m39_c01003{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.mc_c01003{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01003{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m35_c01003{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m36_c01003{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m26_c01003{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m40_c01003{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);}
.m1d_c01003{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m25_c01003{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m41_c01003{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m45_c01003{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.m17_c01003{transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);}
.v0_c01003{vertical-align:0.000000px;}
.v1_c01003{vertical-align:2.880000px;}
.ls0_c01003{letter-spacing:0.000000px;}
.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;}
}
.ws2_c01003{word-spacing:0.000000px;}
.ws0_c01003{word-spacing:3.508080px;}
.ws1_c01003{word-spacing:49.892400px;}
.fc0_c01003{color:transparent;}
.fs9_c01003{font-size:28.800000px;}
.fse_c01003{font-size:34.560000px;}
.fs10_c01003{font-size:37.440000px;}
.fsf_c01003{font-size:43.200000px;}
.fs5_c01003{font-size:46.080000px;}
.fs3_c01003{font-size:48.960000px;}
.fs2_c01003{font-size:51.840000px;}
.fsb_c01003{font-size:54.720000px;}
.fsa_c01003{font-size:57.600000px;}
.fs4_c01003{font-size:60.480000px;}
.fs6_c01003{font-size:63.360000px;}
.fs0_c01003{font-size:66.240000px;}
.fsc_c01003{font-size:69.120000px;}
.fs1_c01003{font-size:72.000000px;}
.fs7_c01003{font-size:74.880000px;}
.fsd_c01003{font-size:77.760000px;}
.fs8_c01003{font-size:103.680000px;}
.y0_c01003{bottom:0.000000px;}
.y84_c01003{bottom:64.080000px;}
.y92_c01003{bottom:65.520000px;}
.y82_c01003{bottom:66.240000px;}
.y91_c01003{bottom:66.960000px;}
.y90_c01003{bottom:67.680000px;}
.y83_c01003{bottom:68.400000px;}
.y8d_c01003{bottom:69.840000px;}
.y80_c01003{bottom:106.560000px;}
.y81_c01003{bottom:108.000000px;}
.y7f_c01003{bottom:108.720000px;}
.y8e_c01003{bottom:110.160000px;}
.y8f_c01003{bottom:111.600000px;}
.y8c_c01003{bottom:112.320000px;}
.y7e_c01003{bottom:150.480000px;}
.y7c_c01003{bottom:151.920000px;}
.y8b_c01003{bottom:153.360000px;}
.y7d_c01003{bottom:154.080000px;}
.y89_c01003{bottom:155.520000px;}
.y8a_c01003{bottom:156.240000px;}
.y7b_c01003{bottom:193.680000px;}
.y79_c01003{bottom:194.400000px;}
.y7a_c01003{bottom:197.280000px;}
.y87_c01003{bottom:198.000000px;}
.y88_c01003{bottom:198.720000px;}
.y78_c01003{bottom:236.160000px;}
.y86_c01003{bottom:237.600000px;}
.y75_c01003{bottom:238.320000px;}
.y77_c01003{bottom:239.760000px;}
.y76_c01003{bottom:240.480000px;}
.y85_c01003{bottom:241.200000px;}
.y72_c01003{bottom:279.360000px;}
.y73_c01003{bottom:281.520000px;}
.y6f_c01003{bottom:282.240000px;}
.y71_c01003{bottom:282.960000px;}
.y70_c01003{bottom:283.680000px;}
.y74_c01003{bottom:285.120000px;}
.y69_c01003{bottom:322.560000px;}
.y6c_c01003{bottom:324.000000px;}
.y68_c01003{bottom:325.440000px;}
.y6a_c01003{bottom:326.880000px;}
.y6b_c01003{bottom:327.600000px;}
.y6e_c01003{bottom:328.320000px;}
.y63_c01003{bottom:365.760000px;}
.y66_c01003{bottom:367.200000px;}
.y62_c01003{bottom:368.640000px;}
.y67_c01003{bottom:369.360000px;}
.y64_c01003{bottom:370.080000px;}
.y65_c01003{bottom:370.800000px;}
.y6d_c01003{bottom:371.520000px;}
.y5f_c01003{bottom:409.680000px;}
.y5e_c01003{bottom:411.120000px;}
.y5d_c01003{bottom:411.840000px;}
.y60_c01003{bottom:412.560000px;}
.y61_c01003{bottom:413.280000px;}
.y52_c01003{bottom:452.160000px;}
.y54_c01003{bottom:452.880000px;}
.y51_c01003{bottom:454.320000px;}
.y5b_c01003{bottom:455.040000px;}
.y53_c01003{bottom:456.480000px;}
.y5c_c01003{bottom:457.200000px;}
.y4e_c01003{bottom:495.360000px;}
.y50_c01003{bottom:496.080000px;}
.y4d_c01003{bottom:497.520000px;}
.y4f_c01003{bottom:498.960000px;}
.y5a_c01003{bottom:499.680000px;}
.y4c_c01003{bottom:538.560000px;}
.y49_c01003{bottom:539.280000px;}
.y4b_c01003{bottom:540.000000px;}
.y4a_c01003{bottom:542.160000px;}
.y46_c01003{bottom:570.240000px;}
.y48_c01003{bottom:571.680000px;}
.y45_c01003{bottom:572.400000px;}
.y47_c01003{bottom:574.560000px;}
.y59_c01003{bottom:575.280000px;}
.y44_c01003{bottom:612.720000px;}
.y41_c01003{bottom:614.160000px;}
.y42_c01003{bottom:616.320000px;}
.y43_c01003{bottom:617.040000px;}
.y3f_c01003{bottom:644.400000px;}
.y57_c01003{bottom:646.560000px;}
.y3e_c01003{bottom:647.280000px;}
.y40_c01003{bottom:648.720000px;}
.y58_c01003{bottom:649.440000px;}
.y3a_c01003{bottom:687.600000px;}
.y3d_c01003{bottom:688.320000px;}
.y3b_c01003{bottom:689.040000px;}
.y39_c01003{bottom:689.760000px;}
.y55_c01003{bottom:690.480000px;}
.y3c_c01003{bottom:691.920000px;}
.y56_c01003{bottom:692.640000px;}
.y38_c01003{bottom:731.520000px;}
.y37_c01003{bottom:734.400000px;}
.y33_c01003{bottom:763.200000px;}
.y34_c01003{bottom:764.640000px;}
.y32_c01003{bottom:765.360000px;}
.y36_c01003{bottom:766.800000px;}
.y35_c01003{bottom:767.520000px;}
.y31_c01003{bottom:806.400000px;}
.y1f_c01003{bottom:808.560000px;}
.y30_c01003{bottom:810.000000px;}
.y1e_c01003{bottom:810.720000px;}
.y2f_c01003{bottom:842.400000px;}
.y2a_c01003{bottom:849.600000px;}
.y2b_c01003{bottom:850.320000px;}
.y28_c01003{bottom:851.040000px;}
.y2d_c01003{bottom:851.760000px;}
.y2c_c01003{bottom:852.480000px;}
.y29_c01003{bottom:853.200000px;}
.y2e_c01003{bottom:854.640000px;}
.y27_c01003{bottom:885.600000px;}
.y22_c01003{bottom:892.080000px;}
.y24_c01003{bottom:892.800000px;}
.y20_c01003{bottom:894.240000px;}
.y25_c01003{bottom:894.960000px;}
.y23_c01003{bottom:895.680000px;}
.y21_c01003{bottom:896.400000px;}
.y26_c01003{bottom:897.120000px;}
.y1d_c01003{bottom:928.080000px;}
.y1c_c01003{bottom:933.120000px;}
.y16_c01003{bottom:934.560000px;}
.y19_c01003{bottom:935.280000px;}
.y17_c01003{bottom:936.000000px;}
.y14_c01003{bottom:936.720000px;}
.y1a_c01003{bottom:937.440000px;}
.y18_c01003{bottom:938.160000px;}
.y15_c01003{bottom:938.880000px;}
.y1b_c01003{bottom:941.040000px;}
.yb_c01003{bottom:977.040000px;}
.y9_c01003{bottom:979.920000px;}
.y12_c01003{bottom:980.640000px;}
.ya_c01003{bottom:982.080000px;}
.y13_c01003{bottom:982.800000px;}
.y8_c01003{bottom:1020.240000px;}
.y6_c01003{bottom:1021.680000px;}
.y5_c01003{bottom:1022.400000px;}
.y7_c01003{bottom:1023.840000px;}
.y2_c01003{bottom:1053.360000px;}
.y1_c01003{bottom:1054.800000px;}
.y4_c01003{bottom:1055.520000px;}
.y3_c01003{bottom:1056.240000px;}
.y11_c01003{bottom:1056.960000px;}
.yc_c01003{bottom:1117.440000px;}
.y10_c01003{bottom:1124.640000px;}
.yf_c01003{bottom:1133.280000px;}
.yd_c01003{bottom:1149.120000px;}
.ye_c01003{bottom:1151.280000px;}
.hc_c01003{height:25.917187px;}
.h11_c01003{height:31.100625px;}
.h13_c01003{height:33.692344px;}
.h12_c01003{height:38.875781px;}
.h8_c01003{height:41.467500px;}
.h6_c01003{height:44.059219px;}
.h14_c01003{height:44.347500px;}
.h4_c01003{height:46.650937px;}
.he_c01003{height:49.242656px;}
.h5_c01003{height:49.530938px;}
.hd_c01003{height:51.834375px;}
.h7_c01003{height:54.426094px;}
.h9_c01003{height:57.017812px;}
.h2_c01003{height:59.609531px;}
.hf_c01003{height:62.201250px;}
.h3_c01003{height:64.792969px;}
.ha_c01003{height:67.384687px;}
.h10_c01003{height:69.976406px;}
.hb_c01003{height:93.301875px;}
.h0_c01003{height:1175.040000px;}
.h1_c01003{height:1175.250000px;}
.w0_c01003{width:782.640000px;}
.w1_c01003{width:783.000000px;}
.x0_c01003{left:0.000000px;}
.x1_c01003{left:44.640000px;}
.x2c_c01003{left:46.080000px;}
.x37_c01003{left:47.520000px;}
.x2_c01003{left:120.960000px;}
.x2b_c01003{left:122.400000px;}
.x9_c01003{left:164.160000px;}
.x36_c01003{left:176.400000px;}
.x7_c01003{left:206.640000px;}
.x3_c01003{left:218.160000px;}
.x21_c01003{left:228.240000px;}
.x1d_c01003{left:230.400000px;}
.x8_c01003{left:259.920000px;}
.x1b_c01003{left:261.360000px;}
.x38_c01003{left:263.520000px;}
.x22_c01003{left:272.160000px;}
.x27_c01003{left:284.400000px;}
.x4_c01003{left:303.120000px;}
.x25_c01003{left:305.280000px;}
.x13_c01003{left:315.360000px;}
.x26_c01003{left:326.160000px;}
.x23_c01003{left:327.600000px;}
.x1c_c01003{left:347.040000px;}
.x29_c01003{left:358.560000px;}
.x1e_c01003{left:369.360000px;}
.x2d_c01003{left:380.880000px;}
.x14_c01003{left:401.040000px;}
.x1f_c01003{left:423.360000px;}
.x19_c01003{left:443.520000px;}
.x5_c01003{left:453.600000px;}
.x15_c01003{left:455.760000px;}
.x24_c01003{left:467.280000px;}
.x28_c01003{left:478.080000px;}
.x6_c01003{left:520.560000px;}
.x20_c01003{left:522.000000px;}
.x39_c01003{left:523.440000px;}
.x2a_c01003{left:565.200000px;}
.x16_c01003{left:573.840000px;}
.x34_c01003{left:576.000000px;}
.xe_c01003{left:606.960000px;}
.x1a_c01003{left:609.120000px;}
.x32_c01003{left:610.560000px;}
.x11_c01003{left:640.800000px;}
.x31_c01003{left:642.240000px;}
.x3a_c01003{left:643.680000px;}
.xf_c01003{left:650.160000px;}
.x17_c01003{left:651.600000px;}
.x2f_c01003{left:653.040000px;}
.x3b_c01003{left:654.480000px;}
.xa_c01003{left:655.920000px;}
.x10_c01003{left:684.000000px;}
.x30_c01003{left:685.440000px;}
.x33_c01003{left:686.880000px;}
.x3d_c01003{left:688.320000px;}
.x12_c01003{left:704.160000px;}
.x2e_c01003{left:705.600000px;}
.x35_c01003{left:707.040000px;}
.x3c_c01003{left:708.480000px;}
.x18_c01003{left:775.440000px;}
.xb_c01003{left:776.880000px;}
.xc_c01003{left:778.320000px;}
.xd_c01003{left:781.200000px;}
@media print{
.v0_c01003{vertical-align:0.000000pt;}
.v1_c01003{vertical-align:2.560000pt;}
.ls0_c01003{letter-spacing:0.000000pt;}
.ws2_c01003{word-spacing:0.000000pt;}
.ws0_c01003{word-spacing:3.118293pt;}
.ws1_c01003{word-spacing:44.348800pt;}
.fs9_c01003{font-size:25.600000pt;}
.fse_c01003{font-size:30.720000pt;}
.fs10_c01003{font-size:33.280000pt;}
.fsf_c01003{font-size:38.400000pt;}
.fs5_c01003{font-size:40.960000pt;}
.fs3_c01003{font-size:43.520000pt;}
.fs2_c01003{font-size:46.080000pt;}
.fsb_c01003{font-size:48.640000pt;}
.fsa_c01003{font-size:51.200000pt;}
.fs4_c01003{font-size:53.760000pt;}
.fs6_c01003{font-size:56.320000pt;}
.fs0_c01003{font-size:58.880000pt;}
.fsc_c01003{font-size:61.440000pt;}
.fs1_c01003{font-size:64.000000pt;}
.fs7_c01003{font-size:66.560000pt;}
.fsd_c01003{font-size:69.120000pt;}
.fs8_c01003{font-size:92.160000pt;}
.y0_c01003{bottom:0.000000pt;}
.y84_c01003{bottom:56.960000pt;}
.y92_c01003{bottom:58.240000pt;}
.y82_c01003{bottom:58.880000pt;}
.y91_c01003{bottom:59.520000pt;}
.y90_c01003{bottom:60.160000pt;}
.y83_c01003{bottom:60.800000pt;}
.y8d_c01003{bottom:62.080000pt;}
.y80_c01003{bottom:94.720000pt;}
.y81_c01003{bottom:96.000000pt;}
.y7f_c01003{bottom:96.640000pt;}
.y8e_c01003{bottom:97.920000pt;}
.y8f_c01003{bottom:99.200000pt;}
.y8c_c01003{bottom:99.840000pt;}
.y7e_c01003{bottom:133.760000pt;}
.y7c_c01003{bottom:135.040000pt;}
.y8b_c01003{bottom:136.320000pt;}
.y7d_c01003{bottom:136.960000pt;}
.y89_c01003{bottom:138.240000pt;}
.y8a_c01003{bottom:138.880000pt;}
.y7b_c01003{bottom:172.160000pt;}
.y79_c01003{bottom:172.800000pt;}
.y7a_c01003{bottom:175.360000pt;}
.y87_c01003{bottom:176.000000pt;}
.y88_c01003{bottom:176.640000pt;}
.y78_c01003{bottom:209.920000pt;}
.y86_c01003{bottom:211.200000pt;}
.y75_c01003{bottom:211.840000pt;}
.y77_c01003{bottom:213.120000pt;}
.y76_c01003{bottom:213.760000pt;}
.y85_c01003{bottom:214.400000pt;}
.y72_c01003{bottom:248.320000pt;}
.y73_c01003{bottom:250.240000pt;}
.y6f_c01003{bottom:250.880000pt;}
.y71_c01003{bottom:251.520000pt;}
.y70_c01003{bottom:252.160000pt;}
.y74_c01003{bottom:253.440000pt;}
.y69_c01003{bottom:286.720000pt;}
.y6c_c01003{bottom:288.000000pt;}
.y68_c01003{bottom:289.280000pt;}
.y6a_c01003{bottom:290.560000pt;}
.y6b_c01003{bottom:291.200000pt;}
.y6e_c01003{bottom:291.840000pt;}
.y63_c01003{bottom:325.120000pt;}
.y66_c01003{bottom:326.400000pt;}
.y62_c01003{bottom:327.680000pt;}
.y67_c01003{bottom:328.320000pt;}
.y64_c01003{bottom:328.960000pt;}
.y65_c01003{bottom:329.600000pt;}
.y6d_c01003{bottom:330.240000pt;}
.y5f_c01003{bottom:364.160000pt;}
.y5e_c01003{bottom:365.440000pt;}
.y5d_c01003{bottom:366.080000pt;}
.y60_c01003{bottom:366.720000pt;}
.y61_c01003{bottom:367.360000pt;}
.y52_c01003{bottom:401.920000pt;}
.y54_c01003{bottom:402.560000pt;}
.y51_c01003{bottom:403.840000pt;}
.y5b_c01003{bottom:404.480000pt;}
.y53_c01003{bottom:405.760000pt;}
.y5c_c01003{bottom:406.400000pt;}
.y4e_c01003{bottom:440.320000pt;}
.y50_c01003{bottom:440.960000pt;}
.y4d_c01003{bottom:442.240000pt;}
.y4f_c01003{bottom:443.520000pt;}
.y5a_c01003{bottom:444.160000pt;}
.y4c_c01003{bottom:478.720000pt;}
.y49_c01003{bottom:479.360000pt;}
.y4b_c01003{bottom:480.000000pt;}
.y4a_c01003{bottom:481.920000pt;}
.y46_c01003{bottom:506.880000pt;}
.y48_c01003{bottom:508.160000pt;}
.y45_c01003{bottom:508.800000pt;}
.y47_c01003{bottom:510.720000pt;}
.y59_c01003{bottom:511.360000pt;}
.y44_c01003{bottom:544.640000pt;}
.y41_c01003{bottom:545.920000pt;}
.y42_c01003{bottom:547.840000pt;}
.y43_c01003{bottom:548.480000pt;}
.y3f_c01003{bottom:572.800000pt;}
.y57_c01003{bottom:574.720000pt;}
.y3e_c01003{bottom:575.360000pt;}
.y40_c01003{bottom:576.640000pt;}
.y58_c01003{bottom:577.280000pt;}
.y3a_c01003{bottom:611.200000pt;}
.y3d_c01003{bottom:611.840000pt;}
.y3b_c01003{bottom:612.480000pt;}
.y39_c01003{bottom:613.120000pt;}
.y55_c01003{bottom:613.760000pt;}
.y3c_c01003{bottom:615.040000pt;}
.y56_c01003{bottom:615.680000pt;}
.y38_c01003{bottom:650.240000pt;}
.y37_c01003{bottom:652.800000pt;}
.y33_c01003{bottom:678.400000pt;}
.y34_c01003{bottom:679.680000pt;}
.y32_c01003{bottom:680.320000pt;}
.y36_c01003{bottom:681.600000pt;}
.y35_c01003{bottom:682.240000pt;}
.y31_c01003{bottom:716.800000pt;}
.y1f_c01003{bottom:718.720000pt;}
.y30_c01003{bottom:720.000000pt;}
.y1e_c01003{bottom:720.640000pt;}
.y2f_c01003{bottom:748.800000pt;}
.y2a_c01003{bottom:755.200000pt;}
.y2b_c01003{bottom:755.840000pt;}
.y28_c01003{bottom:756.480000pt;}
.y2d_c01003{bottom:757.120000pt;}
.y2c_c01003{bottom:757.760000pt;}
.y29_c01003{bottom:758.400000pt;}
.y2e_c01003{bottom:759.680000pt;}
.y27_c01003{bottom:787.200000pt;}
.y22_c01003{bottom:792.960000pt;}
.y24_c01003{bottom:793.600000pt;}
.y20_c01003{bottom:794.880000pt;}
.y25_c01003{bottom:795.520000pt;}
.y23_c01003{bottom:796.160000pt;}
.y21_c01003{bottom:796.800000pt;}
.y26_c01003{bottom:797.440000pt;}
.y1d_c01003{bottom:824.960000pt;}
.y1c_c01003{bottom:829.440000pt;}
.y16_c01003{bottom:830.720000pt;}
.y19_c01003{bottom:831.360000pt;}
.y17_c01003{bottom:832.000000pt;}
.y14_c01003{bottom:832.640000pt;}
.y1a_c01003{bottom:833.280000pt;}
.y18_c01003{bottom:833.920000pt;}
.y15_c01003{bottom:834.560000pt;}
.y1b_c01003{bottom:836.480000pt;}
.yb_c01003{bottom:868.480000pt;}
.y9_c01003{bottom:871.040000pt;}
.y12_c01003{bottom:871.680000pt;}
.ya_c01003{bottom:872.960000pt;}
.y13_c01003{bottom:873.600000pt;}
.y8_c01003{bottom:906.880000pt;}
.y6_c01003{bottom:908.160000pt;}
.y5_c01003{bottom:908.800000pt;}
.y7_c01003{bottom:910.080000pt;}
.y2_c01003{bottom:936.320000pt;}
.y1_c01003{bottom:937.600000pt;}
.y4_c01003{bottom:938.240000pt;}
.y3_c01003{bottom:938.880000pt;}
.y11_c01003{bottom:939.520000pt;}
.yc_c01003{bottom:993.280000pt;}
.y10_c01003{bottom:999.680000pt;}
.yf_c01003{bottom:1007.360000pt;}
.yd_c01003{bottom:1021.440000pt;}
.ye_c01003{bottom:1023.360000pt;}
.hc_c01003{height:23.037500pt;}
.h11_c01003{height:27.645000pt;}
.h13_c01003{height:29.948750pt;}
.h12_c01003{height:34.556250pt;}
.h8_c01003{height:36.860000pt;}
.h6_c01003{height:39.163750pt;}
.h14_c01003{height:39.420000pt;}
.h4_c01003{height:41.467500pt;}
.he_c01003{height:43.771250pt;}
.h5_c01003{height:44.027500pt;}
.hd_c01003{height:46.075000pt;}
.h7_c01003{height:48.378750pt;}
.h9_c01003{height:50.682500pt;}
.h2_c01003{height:52.986250pt;}
.hf_c01003{height:55.290000pt;}
.h3_c01003{height:57.593750pt;}
.ha_c01003{height:59.897500pt;}
.h10_c01003{height:62.201250pt;}
.hb_c01003{height:82.935000pt;}
.h0_c01003{height:1044.480000pt;}
.h1_c01003{height:1044.666667pt;}
.w0_c01003{width:695.680000pt;}
.w1_c01003{width:696.000000pt;}
.x0_c01003{left:0.000000pt;}
.x1_c01003{left:39.680000pt;}
.x2c_c01003{left:40.960000pt;}
.x37_c01003{left:42.240000pt;}
.x2_c01003{left:107.520000pt;}
.x2b_c01003{left:108.800000pt;}
.x9_c01003{left:145.920000pt;}
.x36_c01003{left:156.800000pt;}
.x7_c01003{left:183.680000pt;}
.x3_c01003{left:193.920000pt;}
.x21_c01003{left:202.880000pt;}
.x1d_c01003{left:204.800000pt;}
.x8_c01003{left:231.040000pt;}
.x1b_c01003{left:232.320000pt;}
.x38_c01003{left:234.240000pt;}
.x22_c01003{left:241.920000pt;}
.x27_c01003{left:252.800000pt;}
.x4_c01003{left:269.440000pt;}
.x25_c01003{left:271.360000pt;}
.x13_c01003{left:280.320000pt;}
.x26_c01003{left:289.920000pt;}
.x23_c01003{left:291.200000pt;}
.x1c_c01003{left:308.480000pt;}
.x29_c01003{left:318.720000pt;}
.x1e_c01003{left:328.320000pt;}
.x2d_c01003{left:338.560000pt;}
.x14_c01003{left:356.480000pt;}
.x1f_c01003{left:376.320000pt;}
.x19_c01003{left:394.240000pt;}
.x5_c01003{left:403.200000pt;}
.x15_c01003{left:405.120000pt;}
.x24_c01003{left:415.360000pt;}
.x28_c01003{left:424.960000pt;}
.x6_c01003{left:462.720000pt;}
.x20_c01003{left:464.000000pt;}
.x39_c01003{left:465.280000pt;}
.x2a_c01003{left:502.400000pt;}
.x16_c01003{left:510.080000pt;}
.x34_c01003{left:512.000000pt;}
.xe_c01003{left:539.520000pt;}
.x1a_c01003{left:541.440000pt;}
.x32_c01003{left:542.720000pt;}
.x11_c01003{left:569.600000pt;}
.x31_c01003{left:570.880000pt;}
.x3a_c01003{left:572.160000pt;}
.xf_c01003{left:577.920000pt;}
.x17_c01003{left:579.200000pt;}
.x2f_c01003{left:580.480000pt;}
.x3b_c01003{left:581.760000pt;}
.xa_c01003{left:583.040000pt;}
.x10_c01003{left:608.000000pt;}
.x30_c01003{left:609.280000pt;}
.x33_c01003{left:610.560000pt;}
.x3d_c01003{left:611.840000pt;}
.x12_c01003{left:625.920000pt;}
.x2e_c01003{left:627.200000pt;}
.x35_c01003{left:628.480000pt;}
.x3c_c01003{left:629.760000pt;}
.x18_c01003{left:689.280000pt;}
.xb_c01003{left:690.560000pt;}
.xc_c01003{left:691.840000pt;}
.xd_c01003{left:694.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3b70bcb3f3698f267b45d0fc.woff2')format("woff");}.ff1_c01004{font-family:ff1_c01004;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m34_c01004{transform:matrix(0.116075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116075,0.000000,0.000000,0.250000,0,0);}
.m35_c01004{transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);}
.m36_c01004{transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);}
.m3a_c01004{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m14_c01004{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m32_c01004{transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);}
.m6_c01004{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m52_c01004{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01004{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);}
.m40_c01004{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);}
.m41_c01004{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m5_c01004{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);}
.m4b_c01004{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);}
.m38_c01004{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);}
.m4c_c01004{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m24_c01004{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);}
.m47_c01004{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m3_c01004{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m9_c01004{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);}
.m2e_c01004{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m11_c01004{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);}
.m4a_c01004{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mf_c01004{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m51_c01004{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m12_c01004{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m4d_c01004{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01004{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m18_c01004{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.mb_c01004{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m21_c01004{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m22_c01004{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m13_c01004{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m53_c01004{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.ma_c01004{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m0_c01004{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01004{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01004{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m4_c01004{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);}
.m44_c01004{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.md_c01004{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01004{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);}
.m42_c01004{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1_c01004{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_c01004{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01004{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);}
.m3d_c01004{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m25_c01004{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01004{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);}
.m39_c01004{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m31_c01004{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m45_c01004{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);}
.m46_c01004{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);}
.m43_c01004{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);}
.m49_c01004{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m33_c01004{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);}
.m3b_c01004{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01004{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);}
.m37_c01004{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);}
.m1e_c01004{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01004{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01004{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m29_c01004{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01004{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);}
.m23_c01004{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m19_c01004{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);}
.m26_c01004{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m20_c01004{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.me_c01004{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);}
.m50_c01004{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);}
.mc_c01004{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);}
.m2b_c01004{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m30_c01004{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);}
.m4f_c01004{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m17_c01004{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01004{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m8_c01004{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m7_c01004{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m2_c01004{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m27_c01004{transform:matrix(0.647500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.647500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.647500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01004{transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);}
.m48_c01004{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.m16_c01004{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);}
.m28_c01004{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01004{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.v5_c01004{vertical-align:-8.640000px;}
.v2_c01004{vertical-align:-5.760000px;}
.v0_c01004{vertical-align:0.000000px;}
.v4_c01004{vertical-align:2.880000px;}
.v1_c01004{vertical-align:5.760000px;}
.v3_c01004{vertical-align:11.520000px;}
.ls0_c01004{letter-spacing:0.000000px;}
.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;}
}
.ws5_c01004{word-spacing:-19.623600px;}
.ws0_c01004{word-spacing:-0.501120px;}
.ws7_c01004{word-spacing:0.000000px;}
.ws1_c01004{word-spacing:1.556880px;}
.ws6_c01004{word-spacing:19.521600px;}
.ws4_c01004{word-spacing:28.366320px;}
.ws3_c01004{word-spacing:37.728720px;}
.ws2_c01004{word-spacing:75.999600px;}
.fc0_c01004{color:transparent;}
.fsc_c01004{font-size:11.520000px;}
.fsb_c01004{font-size:20.160000px;}
.fsa_c01004{font-size:43.200000px;}
.fs7_c01004{font-size:46.080000px;}
.fs2_c01004{font-size:48.960000px;}
.fs4_c01004{font-size:51.840000px;}
.fs6_c01004{font-size:54.720000px;}
.fs5_c01004{font-size:57.600000px;}
.fs9_c01004{font-size:60.480000px;}
.fs1_c01004{font-size:63.360000px;}
.fs8_c01004{font-size:66.240000px;}
.fse_c01004{font-size:69.120000px;}
.fsf_c01004{font-size:72.000000px;}
.fs3_c01004{font-size:74.880000px;}
.fs0_c01004{font-size:77.760000px;}
.fsd_c01004{font-size:80.640000px;}
.y0_c01004{bottom:0.000000px;}
.y95_c01004{bottom:112.320000px;}
.y97_c01004{bottom:113.760000px;}
.y94_c01004{bottom:114.480000px;}
.y96_c01004{bottom:115.200000px;}
.y93_c01004{bottom:115.920000px;}
.y8f_c01004{bottom:156.240000px;}
.y92_c01004{bottom:156.960000px;}
.y90_c01004{bottom:158.400000px;}
.y8e_c01004{bottom:159.120000px;}
.y91_c01004{bottom:159.840000px;}
.y8c_c01004{bottom:200.880000px;}
.y8d_c01004{bottom:202.320000px;}
.y8b_c01004{bottom:203.040000px;}
.y89_c01004{bottom:254.160000px;}
.y8a_c01004{bottom:254.880000px;}
.y88_c01004{bottom:255.600000px;}
.y84_c01004{bottom:294.480000px;}
.y87_c01004{bottom:295.920000px;}
.y86_c01004{bottom:296.640000px;}
.y83_c01004{bottom:297.360000px;}
.y85_c01004{bottom:298.080000px;}
.y81_c01004{bottom:339.840000px;}
.y82_c01004{bottom:341.280000px;}
.y80_c01004{bottom:342.000000px;}
.y7f_c01004{bottom:382.320000px;}
.y7e_c01004{bottom:385.200000px;}
.y7d_c01004{bottom:436.320000px;}
.y7c_c01004{bottom:437.040000px;}
.y7a_c01004{bottom:437.760000px;}
.y7b_c01004{bottom:439.200000px;}
.y78_c01004{bottom:457.920000px;}
.y76_c01004{bottom:458.640000px;}
.y75_c01004{bottom:459.360000px;}
.y79_c01004{bottom:460.080000px;}
.y77_c01004{bottom:460.800000px;}
.y74_c01004{bottom:478.080000px;}
.y73_c01004{bottom:479.520000px;}
.y72_c01004{bottom:480.240000px;}
.y70_c01004{bottom:480.960000px;}
.y71_c01004{bottom:482.400000px;}
.y6f_c01004{bottom:500.400000px;}
.y6c_c01004{bottom:501.120000px;}
.y6b_c01004{bottom:501.840000px;}
.y69_c01004{bottom:502.560000px;}
.y6e_c01004{bottom:503.280000px;}
.y6d_c01004{bottom:504.000000px;}
.y6a_c01004{bottom:504.720000px;}
.y68_c01004{bottom:521.280000px;}
.y67_c01004{bottom:522.000000px;}
.y66_c01004{bottom:522.720000px;}
.y65_c01004{bottom:523.440000px;}
.y62_c01004{bottom:524.160000px;}
.y64_c01004{bottom:524.880000px;}
.y63_c01004{bottom:527.040000px;}
.y60_c01004{bottom:544.320000px;}
.y61_c01004{bottom:545.040000px;}
.y5e_c01004{bottom:547.200000px;}
.y5f_c01004{bottom:547.920000px;}
.y5d_c01004{bottom:564.480000px;}
.y5a_c01004{bottom:565.200000px;}
.y59_c01004{bottom:565.920000px;}
.y57_c01004{bottom:566.640000px;}
.y5b_c01004{bottom:567.360000px;}
.y5c_c01004{bottom:568.080000px;}
.y56_c01004{bottom:568.800000px;}
.y58_c01004{bottom:569.520000px;}
.y55_c01004{bottom:586.800000px;}
.y52_c01004{bottom:587.520000px;}
.y50_c01004{bottom:588.240000px;}
.y51_c01004{bottom:588.960000px;}
.y54_c01004{bottom:589.680000px;}
.y4f_c01004{bottom:590.400000px;}
.y53_c01004{bottom:591.120000px;}
.y4e_c01004{bottom:607.680000px;}
.y4a_c01004{bottom:609.120000px;}
.y4b_c01004{bottom:609.840000px;}
.y4d_c01004{bottom:610.560000px;}
.y4c_c01004{bottom:611.280000px;}
.y49_c01004{bottom:630.000000px;}
.y46_c01004{bottom:630.720000px;}
.y44_c01004{bottom:631.440000px;}
.y48_c01004{bottom:632.160000px;}
.y47_c01004{bottom:632.880000px;}
.y45_c01004{bottom:633.600000px;}
.y43_c01004{bottom:650.880000px;}
.y41_c01004{bottom:651.600000px;}
.y40_c01004{bottom:652.320000px;}
.y3e_c01004{bottom:653.040000px;}
.y42_c01004{bottom:654.480000px;}
.y3f_c01004{bottom:655.920000px;}
.y3c_c01004{bottom:673.200000px;}
.y39_c01004{bottom:673.920000px;}
.y3b_c01004{bottom:674.640000px;}
.y3d_c01004{bottom:675.360000px;}
.y3a_c01004{bottom:676.080000px;}
.y36_c01004{bottom:694.080000px;}
.y37_c01004{bottom:694.800000px;}
.y35_c01004{bottom:696.240000px;}
.y38_c01004{bottom:696.960000px;}
.y34_c01004{bottom:697.680000px;}
.y33_c01004{bottom:722.880000px;}
.y31_c01004{bottom:723.600000px;}
.y2f_c01004{bottom:724.320000px;}
.y32_c01004{bottom:727.920000px;}
.y2e_c01004{bottom:728.640000px;}
.y30_c01004{bottom:729.360000px;}
.y2d_c01004{bottom:730.080000px;}
.y2a_c01004{bottom:769.680000px;}
.y2c_c01004{bottom:771.840000px;}
.y2b_c01004{bottom:772.560000px;}
.y29_c01004{bottom:773.280000px;}
.y25_c01004{bottom:803.520000px;}
.y26_c01004{bottom:804.240000px;}
.y27_c01004{bottom:804.960000px;}
.y24_c01004{bottom:805.680000px;}
.y28_c01004{bottom:807.120000px;}
.y22_c01004{bottom:833.040000px;}
.y1f_c01004{bottom:834.480000px;}
.y1e_c01004{bottom:835.200000px;}
.y21_c01004{bottom:835.920000px;}
.y20_c01004{bottom:836.640000px;}
.y1d_c01004{bottom:837.360000px;}
.y23_c01004{bottom:838.080000px;}
.y1c_c01004{bottom:877.680000px;}
.y1b_c01004{bottom:878.400000px;}
.y18_c01004{bottom:887.040000px;}
.y16_c01004{bottom:889.200000px;}
.y15_c01004{bottom:889.920000px;}
.y17_c01004{bottom:892.800000px;}
.y19_c01004{bottom:898.560000px;}
.y1a_c01004{bottom:899.280000px;}
.y14_c01004{bottom:939.600000px;}
.y10_c01004{bottom:940.320000px;}
.yf_c01004{bottom:941.760000px;}
.y13_c01004{bottom:942.480000px;}
.y11_c01004{bottom:943.200000px;}
.y12_c01004{bottom:946.080000px;}
.yb_c01004{bottom:951.120000px;}
.yc_c01004{bottom:953.280000px;}
.ye_c01004{bottom:963.360000px;}
.yd_c01004{bottom:964.080000px;}
.y9_c01004{bottom:1002.240000px;}
.ya_c01004{bottom:1003.680000px;}
.y7_c01004{bottom:1006.560000px;}
.y8_c01004{bottom:1007.280000px;}
.y4_c01004{bottom:1045.440000px;}
.y5_c01004{bottom:1046.880000px;}
.y6_c01004{bottom:1049.040000px;}
.y2_c01004{bottom:1049.760000px;}
.y3_c01004{bottom:1050.480000px;}
.y1_c01004{bottom:1113.120000px;}
.he_c01004{height:10.366875px;}
.hd_c01004{height:18.142031px;}
.hc_c01004{height:38.875781px;}
.h9_c01004{height:41.467500px;}
.h4_c01004{height:44.059219px;}
.h6_c01004{height:46.650937px;}
.h8_c01004{height:49.242656px;}
.h7_c01004{height:51.834375px;}
.hb_c01004{height:54.426094px;}
.h3_c01004{height:57.017812px;}
.h12_c01004{height:57.306094px;}
.h13_c01004{height:58.744688px;}
.ha_c01004{height:59.609531px;}
.h10_c01004{height:60.762656px;}
.h11_c01004{height:62.201250px;}
.h14_c01004{height:64.792969px;}
.h5_c01004{height:67.384687px;}
.h2_c01004{height:69.976406px;}
.hf_c01004{height:72.568125px;}
.h1_c01004{height:1162.500000px;}
.h0_c01004{height:1162.800000px;}
.w0_c01004{width:795.600000px;}
.w1_c01004{width:795.750000px;}
.x0_c01004{left:0.000000px;}
.x2_c01004{left:50.400000px;}
.x41_c01004{left:60.480000px;}
.x39_c01004{left:61.920000px;}
.x1d_c01004{left:69.840000px;}
.x26_c01004{left:71.280000px;}
.x31_c01004{left:82.080000px;}
.x18_c01004{left:93.600000px;}
.x1e_c01004{left:103.680000px;}
.x2b_c01004{left:105.120000px;}
.xa_c01004{left:125.280000px;}
.x4c_c01004{left:126.720000px;}
.x19_c01004{left:136.080000px;}
.x40_c01004{left:138.240000px;}
.x27_c01004{left:147.600000px;}
.x45_c01004{left:149.040000px;}
.x3a_c01004{left:158.400000px;}
.x1a_c01004{left:159.840000px;}
.x28_c01004{left:168.480000px;}
.x2c_c01004{left:169.920000px;}
.x4e_c01004{left:171.360000px;}
.x3_c01004{left:180.000000px;}
.xb_c01004{left:181.440000px;}
.x1b_c01004{left:200.880000px;}
.x32_c01004{left:202.320000px;}
.x49_c01004{left:211.680000px;}
.x3b_c01004{left:213.120000px;}
.xc_c01004{left:215.280000px;}
.x48_c01004{left:222.480000px;}
.x4_c01004{left:233.280000px;}
.x44_c01004{left:234.720000px;}
.x1c_c01004{left:257.040000px;}
.x2d_c01004{left:265.680000px;}
.xd_c01004{left:267.120000px;}
.x33_c01004{left:277.200000px;}
.x3c_c01004{left:278.640000px;}
.x1f_c01004{left:287.280000px;}
.xe_c01004{left:298.080000px;}
.x34_c01004{left:309.600000px;}
.x4a_c01004{left:312.480000px;}
.x29_c01004{left:320.400000px;}
.x20_c01004{left:321.840000px;}
.x46_c01004{left:331.200000px;}
.x3d_c01004{left:332.640000px;}
.x4b_c01004{left:344.880000px;}
.x21_c01004{left:362.160000px;}
.x2e_c01004{left:363.600000px;}
.x42_c01004{left:365.040000px;}
.x14_c01004{left:374.400000px;}
.xf_c01004{left:375.840000px;}
.x2a_c01004{left:384.480000px;}
.x35_c01004{left:385.920000px;}
.x2f_c01004{left:418.320000px;}
.x10_c01004{left:427.680000px;}
.x36_c01004{left:429.120000px;}
.x22_c01004{left:460.800000px;}
.x43_c01004{left:462.240000px;}
.x11_c01004{left:482.400000px;}
.x15_c01004{left:494.640000px;}
.x37_c01004{left:504.720000px;}
.x30_c01004{left:516.240000px;}
.x5_c01004{left:525.600000px;}
.x4d_c01004{left:527.040000px;}
.x38_c01004{left:537.120000px;}
.x12_c01004{left:547.920000px;}
.x3e_c01004{left:549.360000px;}
.x23_c01004{left:558.720000px;}
.x47_c01004{left:581.040000px;}
.x3f_c01004{left:591.840000px;}
.x13_c01004{left:602.640000px;}
.x6_c01004{left:613.440000px;}
.x16_c01004{left:623.520000px;}
.x17_c01004{left:646.560000px;}
.x7_c01004{left:656.640000px;}
.x1_c01004{left:671.760000px;}
.x24_c01004{left:688.320000px;}
.x8_c01004{left:689.760000px;}
.x9_c01004{left:709.920000px;}
.x25_c01004{left:712.080000px;}
@media print{
.v5_c01004{vertical-align:-7.680000pt;}
.v2_c01004{vertical-align:-5.120000pt;}
.v0_c01004{vertical-align:0.000000pt;}
.v4_c01004{vertical-align:2.560000pt;}
.v1_c01004{vertical-align:5.120000pt;}
.v3_c01004{vertical-align:10.240000pt;}
.ls0_c01004{letter-spacing:0.000000pt;}
.ws5_c01004{word-spacing:-17.443200pt;}
.ws0_c01004{word-spacing:-0.445440pt;}
.ws7_c01004{word-spacing:0.000000pt;}
.ws1_c01004{word-spacing:1.383893pt;}
.ws6_c01004{word-spacing:17.352533pt;}
.ws4_c01004{word-spacing:25.214507pt;}
.ws3_c01004{word-spacing:33.536640pt;}
.ws2_c01004{word-spacing:67.555200pt;}
.fsc_c01004{font-size:10.240000pt;}
.fsb_c01004{font-size:17.920000pt;}
.fsa_c01004{font-size:38.400000pt;}
.fs7_c01004{font-size:40.960000pt;}
.fs2_c01004{font-size:43.520000pt;}
.fs4_c01004{font-size:46.080000pt;}
.fs6_c01004{font-size:48.640000pt;}
.fs5_c01004{font-size:51.200000pt;}
.fs9_c01004{font-size:53.760000pt;}
.fs1_c01004{font-size:56.320000pt;}
.fs8_c01004{font-size:58.880000pt;}
.fse_c01004{font-size:61.440000pt;}
.fsf_c01004{font-size:64.000000pt;}
.fs3_c01004{font-size:66.560000pt;}
.fs0_c01004{font-size:69.120000pt;}
.fsd_c01004{font-size:71.680000pt;}
.y0_c01004{bottom:0.000000pt;}
.y95_c01004{bottom:99.840000pt;}
.y97_c01004{bottom:101.120000pt;}
.y94_c01004{bottom:101.760000pt;}
.y96_c01004{bottom:102.400000pt;}
.y93_c01004{bottom:103.040000pt;}
.y8f_c01004{bottom:138.880000pt;}
.y92_c01004{bottom:139.520000pt;}
.y90_c01004{bottom:140.800000pt;}
.y8e_c01004{bottom:141.440000pt;}
.y91_c01004{bottom:142.080000pt;}
.y8c_c01004{bottom:178.560000pt;}
.y8d_c01004{bottom:179.840000pt;}
.y8b_c01004{bottom:180.480000pt;}
.y89_c01004{bottom:225.920000pt;}
.y8a_c01004{bottom:226.560000pt;}
.y88_c01004{bottom:227.200000pt;}
.y84_c01004{bottom:261.760000pt;}
.y87_c01004{bottom:263.040000pt;}
.y86_c01004{bottom:263.680000pt;}
.y83_c01004{bottom:264.320000pt;}
.y85_c01004{bottom:264.960000pt;}
.y81_c01004{bottom:302.080000pt;}
.y82_c01004{bottom:303.360000pt;}
.y80_c01004{bottom:304.000000pt;}
.y7f_c01004{bottom:339.840000pt;}
.y7e_c01004{bottom:342.400000pt;}
.y7d_c01004{bottom:387.840000pt;}
.y7c_c01004{bottom:388.480000pt;}
.y7a_c01004{bottom:389.120000pt;}
.y7b_c01004{bottom:390.400000pt;}
.y78_c01004{bottom:407.040000pt;}
.y76_c01004{bottom:407.680000pt;}
.y75_c01004{bottom:408.320000pt;}
.y79_c01004{bottom:408.960000pt;}
.y77_c01004{bottom:409.600000pt;}
.y74_c01004{bottom:424.960000pt;}
.y73_c01004{bottom:426.240000pt;}
.y72_c01004{bottom:426.880000pt;}
.y70_c01004{bottom:427.520000pt;}
.y71_c01004{bottom:428.800000pt;}
.y6f_c01004{bottom:444.800000pt;}
.y6c_c01004{bottom:445.440000pt;}
.y6b_c01004{bottom:446.080000pt;}
.y69_c01004{bottom:446.720000pt;}
.y6e_c01004{bottom:447.360000pt;}
.y6d_c01004{bottom:448.000000pt;}
.y6a_c01004{bottom:448.640000pt;}
.y68_c01004{bottom:463.360000pt;}
.y67_c01004{bottom:464.000000pt;}
.y66_c01004{bottom:464.640000pt;}
.y65_c01004{bottom:465.280000pt;}
.y62_c01004{bottom:465.920000pt;}
.y64_c01004{bottom:466.560000pt;}
.y63_c01004{bottom:468.480000pt;}
.y60_c01004{bottom:483.840000pt;}
.y61_c01004{bottom:484.480000pt;}
.y5e_c01004{bottom:486.400000pt;}
.y5f_c01004{bottom:487.040000pt;}
.y5d_c01004{bottom:501.760000pt;}
.y5a_c01004{bottom:502.400000pt;}
.y59_c01004{bottom:503.040000pt;}
.y57_c01004{bottom:503.680000pt;}
.y5b_c01004{bottom:504.320000pt;}
.y5c_c01004{bottom:504.960000pt;}
.y56_c01004{bottom:505.600000pt;}
.y58_c01004{bottom:506.240000pt;}
.y55_c01004{bottom:521.600000pt;}
.y52_c01004{bottom:522.240000pt;}
.y50_c01004{bottom:522.880000pt;}
.y51_c01004{bottom:523.520000pt;}
.y54_c01004{bottom:524.160000pt;}
.y4f_c01004{bottom:524.800000pt;}
.y53_c01004{bottom:525.440000pt;}
.y4e_c01004{bottom:540.160000pt;}
.y4a_c01004{bottom:541.440000pt;}
.y4b_c01004{bottom:542.080000pt;}
.y4d_c01004{bottom:542.720000pt;}
.y4c_c01004{bottom:543.360000pt;}
.y49_c01004{bottom:560.000000pt;}
.y46_c01004{bottom:560.640000pt;}
.y44_c01004{bottom:561.280000pt;}
.y48_c01004{bottom:561.920000pt;}
.y47_c01004{bottom:562.560000pt;}
.y45_c01004{bottom:563.200000pt;}
.y43_c01004{bottom:578.560000pt;}
.y41_c01004{bottom:579.200000pt;}
.y40_c01004{bottom:579.840000pt;}
.y3e_c01004{bottom:580.480000pt;}
.y42_c01004{bottom:581.760000pt;}
.y3f_c01004{bottom:583.040000pt;}
.y3c_c01004{bottom:598.400000pt;}
.y39_c01004{bottom:599.040000pt;}
.y3b_c01004{bottom:599.680000pt;}
.y3d_c01004{bottom:600.320000pt;}
.y3a_c01004{bottom:600.960000pt;}
.y36_c01004{bottom:616.960000pt;}
.y37_c01004{bottom:617.600000pt;}
.y35_c01004{bottom:618.880000pt;}
.y38_c01004{bottom:619.520000pt;}
.y34_c01004{bottom:620.160000pt;}
.y33_c01004{bottom:642.560000pt;}
.y31_c01004{bottom:643.200000pt;}
.y2f_c01004{bottom:643.840000pt;}
.y32_c01004{bottom:647.040000pt;}
.y2e_c01004{bottom:647.680000pt;}
.y30_c01004{bottom:648.320000pt;}
.y2d_c01004{bottom:648.960000pt;}
.y2a_c01004{bottom:684.160000pt;}
.y2c_c01004{bottom:686.080000pt;}
.y2b_c01004{bottom:686.720000pt;}
.y29_c01004{bottom:687.360000pt;}
.y25_c01004{bottom:714.240000pt;}
.y26_c01004{bottom:714.880000pt;}
.y27_c01004{bottom:715.520000pt;}
.y24_c01004{bottom:716.160000pt;}
.y28_c01004{bottom:717.440000pt;}
.y22_c01004{bottom:740.480000pt;}
.y1f_c01004{bottom:741.760000pt;}
.y1e_c01004{bottom:742.400000pt;}
.y21_c01004{bottom:743.040000pt;}
.y20_c01004{bottom:743.680000pt;}
.y1d_c01004{bottom:744.320000pt;}
.y23_c01004{bottom:744.960000pt;}
.y1c_c01004{bottom:780.160000pt;}
.y1b_c01004{bottom:780.800000pt;}
.y18_c01004{bottom:788.480000pt;}
.y16_c01004{bottom:790.400000pt;}
.y15_c01004{bottom:791.040000pt;}
.y17_c01004{bottom:793.600000pt;}
.y19_c01004{bottom:798.720000pt;}
.y1a_c01004{bottom:799.360000pt;}
.y14_c01004{bottom:835.200000pt;}
.y10_c01004{bottom:835.840000pt;}
.yf_c01004{bottom:837.120000pt;}
.y13_c01004{bottom:837.760000pt;}
.y11_c01004{bottom:838.400000pt;}
.y12_c01004{bottom:840.960000pt;}
.yb_c01004{bottom:845.440000pt;}
.yc_c01004{bottom:847.360000pt;}
.ye_c01004{bottom:856.320000pt;}
.yd_c01004{bottom:856.960000pt;}
.y9_c01004{bottom:890.880000pt;}
.ya_c01004{bottom:892.160000pt;}
.y7_c01004{bottom:894.720000pt;}
.y8_c01004{bottom:895.360000pt;}
.y4_c01004{bottom:929.280000pt;}
.y5_c01004{bottom:930.560000pt;}
.y6_c01004{bottom:932.480000pt;}
.y2_c01004{bottom:933.120000pt;}
.y3_c01004{bottom:933.760000pt;}
.y1_c01004{bottom:989.440000pt;}
.he_c01004{height:9.215000pt;}
.hd_c01004{height:16.126250pt;}
.hc_c01004{height:34.556250pt;}
.h9_c01004{height:36.860000pt;}
.h4_c01004{height:39.163750pt;}
.h6_c01004{height:41.467500pt;}
.h8_c01004{height:43.771250pt;}
.h7_c01004{height:46.075000pt;}
.hb_c01004{height:48.378750pt;}
.h3_c01004{height:50.682500pt;}
.h12_c01004{height:50.938750pt;}
.h13_c01004{height:52.217500pt;}
.ha_c01004{height:52.986250pt;}
.h10_c01004{height:54.011250pt;}
.h11_c01004{height:55.290000pt;}
.h14_c01004{height:57.593750pt;}
.h5_c01004{height:59.897500pt;}
.h2_c01004{height:62.201250pt;}
.hf_c01004{height:64.505000pt;}
.h1_c01004{height:1033.333333pt;}
.h0_c01004{height:1033.600000pt;}
.w0_c01004{width:707.200000pt;}
.w1_c01004{width:707.333333pt;}
.x0_c01004{left:0.000000pt;}
.x2_c01004{left:44.800000pt;}
.x41_c01004{left:53.760000pt;}
.x39_c01004{left:55.040000pt;}
.x1d_c01004{left:62.080000pt;}
.x26_c01004{left:63.360000pt;}
.x31_c01004{left:72.960000pt;}
.x18_c01004{left:83.200000pt;}
.x1e_c01004{left:92.160000pt;}
.x2b_c01004{left:93.440000pt;}
.xa_c01004{left:111.360000pt;}
.x4c_c01004{left:112.640000pt;}
.x19_c01004{left:120.960000pt;}
.x40_c01004{left:122.880000pt;}
.x27_c01004{left:131.200000pt;}
.x45_c01004{left:132.480000pt;}
.x3a_c01004{left:140.800000pt;}
.x1a_c01004{left:142.080000pt;}
.x28_c01004{left:149.760000pt;}
.x2c_c01004{left:151.040000pt;}
.x4e_c01004{left:152.320000pt;}
.x3_c01004{left:160.000000pt;}
.xb_c01004{left:161.280000pt;}
.x1b_c01004{left:178.560000pt;}
.x32_c01004{left:179.840000pt;}
.x49_c01004{left:188.160000pt;}
.x3b_c01004{left:189.440000pt;}
.xc_c01004{left:191.360000pt;}
.x48_c01004{left:197.760000pt;}
.x4_c01004{left:207.360000pt;}
.x44_c01004{left:208.640000pt;}
.x1c_c01004{left:228.480000pt;}
.x2d_c01004{left:236.160000pt;}
.xd_c01004{left:237.440000pt;}
.x33_c01004{left:246.400000pt;}
.x3c_c01004{left:247.680000pt;}
.x1f_c01004{left:255.360000pt;}
.xe_c01004{left:264.960000pt;}
.x34_c01004{left:275.200000pt;}
.x4a_c01004{left:277.760000pt;}
.x29_c01004{left:284.800000pt;}
.x20_c01004{left:286.080000pt;}
.x46_c01004{left:294.400000pt;}
.x3d_c01004{left:295.680000pt;}
.x4b_c01004{left:306.560000pt;}
.x21_c01004{left:321.920000pt;}
.x2e_c01004{left:323.200000pt;}
.x42_c01004{left:324.480000pt;}
.x14_c01004{left:332.800000pt;}
.xf_c01004{left:334.080000pt;}
.x2a_c01004{left:341.760000pt;}
.x35_c01004{left:343.040000pt;}
.x2f_c01004{left:371.840000pt;}
.x10_c01004{left:380.160000pt;}
.x36_c01004{left:381.440000pt;}
.x22_c01004{left:409.600000pt;}
.x43_c01004{left:410.880000pt;}
.x11_c01004{left:428.800000pt;}
.x15_c01004{left:439.680000pt;}
.x37_c01004{left:448.640000pt;}
.x30_c01004{left:458.880000pt;}
.x5_c01004{left:467.200000pt;}
.x4d_c01004{left:468.480000pt;}
.x38_c01004{left:477.440000pt;}
.x12_c01004{left:487.040000pt;}
.x3e_c01004{left:488.320000pt;}
.x23_c01004{left:496.640000pt;}
.x47_c01004{left:516.480000pt;}
.x3f_c01004{left:526.080000pt;}
.x13_c01004{left:535.680000pt;}
.x6_c01004{left:545.280000pt;}
.x16_c01004{left:554.240000pt;}
.x17_c01004{left:574.720000pt;}
.x7_c01004{left:583.680000pt;}
.x1_c01004{left:597.120000pt;}
.x24_c01004{left:611.840000pt;}
.x8_c01004{left:613.120000pt;}
.x9_c01004{left:631.040000pt;}
.x25_c01004{left:632.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_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_5a19524d8c5828d1d600d01b.woff2')format("woff");}.ff1_c01005{font-family:ff1_c01005;line-height:1.109863;font-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_c01005{transform:matrix(0.236225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236225,0.000000,0.000000,0.250000,0,0);}
.m20_c01005{transform:matrix(0.243100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243100,0.000000,0.000000,0.250000,0,0);}
.m1f_c01005{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m43_c01005{transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);}
.m44_c01005{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01005{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);}
.m3c_c01005{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01005{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m7_c01005{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);}
.m30_c01005{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.me_c01005{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m24_c01005{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m16_c01005{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m34_c01005{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m18_c01005{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);}
.m38_c01005{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m19_c01005{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);}
.m36_c01005{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01005{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m15_c01005{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mc_c01005{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01005{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m29_c01005{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m26_c01005{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01005{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01005{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m23_c01005{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m40_c01005{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m9_c01005{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01005{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01005{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m14_c01005{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01005{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m17_c01005{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);}
.m2_c01005{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.md_c01005{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m28_c01005{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m6_c01005{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);}
.m0_c01005{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01005{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.mf_c01005{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m13_c01005{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);}
.m12_c01005{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01005{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1_c01005{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);}
.m47_c01005{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01005{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m3_c01005{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);}
.m2b_c01005{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m11_c01005{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_c01005{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m42_c01005{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m4_c01005{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);}
.m45_c01005{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01005{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m37_c01005{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);}
.m3b_c01005{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m33_c01005{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m41_c01005{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m25_c01005{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);}
.m22_c01005{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m27_c01005{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m21_c01005{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m31_c01005{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m39_c01005{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01005{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m32_c01005{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m8_c01005{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m46_c01005{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.ma_c01005{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01005{transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);}
.m35_c01005{transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);}
.v1_c01005{vertical-align:-8.640000px;}
.v3_c01005{vertical-align:-5.760000px;}
.v2_c01005{vertical-align:-2.880000px;}
.v0_c01005{vertical-align:0.000000px;}
.ls3_c01005{letter-spacing:0.000000px;}
.ls1_c01005{letter-spacing:79.176960px;}
.ls2_c01005{letter-spacing:86.376960px;}
.ls0_c01005{letter-spacing:103.763029px;}
.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;}
}
.ws1_c01005{word-spacing:0.000000px;}
.ws0_c01005{word-spacing:208.838400px;}
.fc0_c01005{color:transparent;}
.fsc_c01005{font-size:34.560000px;}
.fsd_c01005{font-size:40.320000px;}
.fsa_c01005{font-size:43.200000px;}
.fs3_c01005{font-size:46.080000px;}
.fs7_c01005{font-size:48.960000px;}
.fs1_c01005{font-size:51.840000px;}
.fsb_c01005{font-size:54.720000px;}
.fs9_c01005{font-size:57.600000px;}
.fs2_c01005{font-size:60.480000px;}
.fs5_c01005{font-size:63.360000px;}
.fs4_c01005{font-size:66.240000px;}
.fs8_c01005{font-size:69.120000px;}
.fs6_c01005{font-size:72.000000px;}
.fs0_c01005{font-size:74.880000px;}
.y0_c01005{bottom:0.000000px;}
.y77_c01005{bottom:64.800000px;}
.y75_c01005{bottom:65.520000px;}
.y74_c01005{bottom:67.680000px;}
.y76_c01005{bottom:68.400000px;}
.y6f_c01005{bottom:95.760000px;}
.y70_c01005{bottom:97.920000px;}
.y6e_c01005{bottom:98.640000px;}
.y72_c01005{bottom:99.360000px;}
.y71_c01005{bottom:100.800000px;}
.y73_c01005{bottom:101.520000px;}
.y68_c01005{bottom:138.960000px;}
.y6b_c01005{bottom:140.400000px;}
.y67_c01005{bottom:141.120000px;}
.y69_c01005{bottom:141.840000px;}
.y6c_c01005{bottom:142.560000px;}
.y6d_c01005{bottom:143.280000px;}
.y6a_c01005{bottom:144.000000px;}
.y62_c01005{bottom:182.880000px;}
.y65_c01005{bottom:183.600000px;}
.y63_c01005{bottom:184.320000px;}
.y61_c01005{bottom:185.040000px;}
.y66_c01005{bottom:185.760000px;}
.y64_c01005{bottom:187.200000px;}
.y5b_c01005{bottom:226.080000px;}
.y60_c01005{bottom:226.800000px;}
.y5e_c01005{bottom:227.520000px;}
.y5a_c01005{bottom:228.240000px;}
.y5c_c01005{bottom:228.960000px;}
.y5d_c01005{bottom:229.680000px;}
.y5f_c01005{bottom:230.400000px;}
.y55_c01005{bottom:269.280000px;}
.y56_c01005{bottom:270.000000px;}
.y57_c01005{bottom:270.720000px;}
.y54_c01005{bottom:271.440000px;}
.y59_c01005{bottom:272.160000px;}
.y58_c01005{bottom:273.600000px;}
.y53_c01005{bottom:313.200000px;}
.y52_c01005{bottom:315.360000px;}
.y4e_c01005{bottom:344.880000px;}
.y4f_c01005{bottom:345.600000px;}
.y4d_c01005{bottom:347.040000px;}
.y50_c01005{bottom:347.760000px;}
.y51_c01005{bottom:348.480000px;}
.y4c_c01005{bottom:388.080000px;}
.y4b_c01005{bottom:388.800000px;}
.y47_c01005{bottom:419.760000px;}
.y48_c01005{bottom:420.480000px;}
.y4a_c01005{bottom:421.200000px;}
.y46_c01005{bottom:421.920000px;}
.y49_c01005{bottom:423.360000px;}
.y41_c01005{bottom:462.240000px;}
.y43_c01005{bottom:462.960000px;}
.y40_c01005{bottom:463.680000px;}
.y45_c01005{bottom:464.400000px;}
.y42_c01005{bottom:465.840000px;}
.y44_c01005{bottom:466.560000px;}
.y3d_c01005{bottom:504.720000px;}
.y3e_c01005{bottom:505.440000px;}
.y3c_c01005{bottom:506.160000px;}
.y3b_c01005{bottom:506.880000px;}
.y3f_c01005{bottom:507.600000px;}
.y37_c01005{bottom:547.200000px;}
.y38_c01005{bottom:548.640000px;}
.y36_c01005{bottom:549.360000px;}
.y39_c01005{bottom:550.080000px;}
.y35_c01005{bottom:550.800000px;}
.y3a_c01005{bottom:552.960000px;}
.y2f_c01005{bottom:590.400000px;}
.y32_c01005{bottom:591.120000px;}
.y34_c01005{bottom:591.840000px;}
.y33_c01005{bottom:592.560000px;}
.y2d_c01005{bottom:593.280000px;}
.y31_c01005{bottom:594.000000px;}
.y30_c01005{bottom:594.720000px;}
.y2e_c01005{bottom:595.440000px;}
.y2c_c01005{bottom:635.760000px;}
.y2b_c01005{bottom:637.920000px;}
.y28_c01005{bottom:686.880000px;}
.y2a_c01005{bottom:688.320000px;}
.y26_c01005{bottom:689.040000px;}
.y29_c01005{bottom:690.480000px;}
.y27_c01005{bottom:691.200000px;}
.y23_c01005{bottom:730.080000px;}
.y25_c01005{bottom:731.520000px;}
.y21_c01005{bottom:732.240000px;}
.y24_c01005{bottom:733.680000px;}
.y22_c01005{bottom:734.400000px;}
.y1d_c01005{bottom:772.560000px;}
.y1f_c01005{bottom:773.280000px;}
.y20_c01005{bottom:774.720000px;}
.y1c_c01005{bottom:775.440000px;}
.y1e_c01005{bottom:776.160000px;}
.y18_c01005{bottom:816.480000px;}
.y1a_c01005{bottom:817.920000px;}
.y17_c01005{bottom:818.640000px;}
.y19_c01005{bottom:820.080000px;}
.y1b_c01005{bottom:820.800000px;}
.y14_c01005{bottom:858.960000px;}
.y15_c01005{bottom:860.400000px;}
.y13_c01005{bottom:861.120000px;}
.y16_c01005{bottom:862.560000px;}
.y10_c01005{bottom:902.160000px;}
.y12_c01005{bottom:903.600000px;}
.ye_c01005{bottom:905.040000px;}
.y11_c01005{bottom:905.760000px;}
.yf_c01005{bottom:906.480000px;}
.yd_c01005{bottom:946.800000px;}
.yc_c01005{bottom:950.400000px;}
.ya_c01005{bottom:997.920000px;}
.y7_c01005{bottom:998.640000px;}
.yb_c01005{bottom:999.360000px;}
.y9_c01005{bottom:1000.080000px;}
.y6_c01005{bottom:1000.800000px;}
.y8_c01005{bottom:1001.520000px;}
.y5_c01005{bottom:1041.120000px;}
.y3_c01005{bottom:1041.840000px;}
.y4_c01005{bottom:1044.000000px;}
.y2_c01005{bottom:1044.720000px;}
.y1_c01005{bottom:1117.440000px;}
.he_c01005{height:31.100625px;}
.hf_c01005{height:36.284062px;}
.hc_c01005{height:38.875781px;}
.h5_c01005{height:41.467500px;}
.h9_c01005{height:44.059219px;}
.h3_c01005{height:46.650937px;}
.hd_c01005{height:49.242656px;}
.hb_c01005{height:51.834375px;}
.h4_c01005{height:54.426094px;}
.h7_c01005{height:57.017812px;}
.h6_c01005{height:59.609531px;}
.ha_c01005{height:62.201250px;}
.h8_c01005{height:64.792969px;}
.h2_c01005{height:67.384687px;}
.h1_c01005{height:1161.750000px;}
.h0_c01005{height:1162.080000px;}
.w0_c01005{width:792.720000px;}
.w1_c01005{width:792.750000px;}
.x0_c01005{left:0.000000px;}
.x7_c01005{left:59.040000px;}
.x10_c01005{left:112.320000px;}
.x2_c01005{left:113.760000px;}
.x24_c01005{left:133.200000px;}
.x11_c01005{left:134.640000px;}
.x8_c01005{left:136.080000px;}
.x20_c01005{left:144.720000px;}
.x21_c01005{left:167.760000px;}
.x30_c01005{left:177.120000px;}
.x3_c01005{left:178.560000px;}
.x39_c01005{left:187.920000px;}
.x1d_c01005{left:190.080000px;}
.x4_c01005{left:220.320000px;}
.x22_c01005{left:222.480000px;}
.x9_c01005{left:231.120000px;}
.x36_c01005{left:232.560000px;}
.x19_c01005{left:241.200000px;}
.x1f_c01005{left:242.640000px;}
.x27_c01005{left:263.520000px;}
.x16_c01005{left:275.760000px;}
.x1a_c01005{left:285.120000px;}
.x37_c01005{left:287.280000px;}
.xa_c01005{left:295.920000px;}
.x5_c01005{left:316.800000px;}
.x28_c01005{left:318.240000px;}
.x23_c01005{left:328.320000px;}
.x33_c01005{left:329.760000px;}
.x1e_c01005{left:339.120000px;}
.x1b_c01005{left:340.560000px;}
.x29_c01005{left:360.720000px;}
.x6_c01005{left:362.880000px;}
.x31_c01005{left:372.240000px;}
.x1c_c01005{left:382.320000px;}
.xb_c01005{left:392.400000px;}
.x2a_c01005{left:405.360000px;}
.x32_c01005{left:415.440000px;}
.x2e_c01005{left:424.800000px;}
.x25_c01005{left:437.040000px;}
.x2b_c01005{left:447.120000px;}
.xc_c01005{left:457.200000px;}
.x2f_c01005{left:469.440000px;}
.x26_c01005{left:485.280000px;}
.x2c_c01005{left:494.640000px;}
.x34_c01005{left:506.880000px;}
.xd_c01005{left:534.240000px;}
.x2d_c01005{left:535.680000px;}
.xe_c01005{left:587.520000px;}
.x17_c01005{left:588.960000px;}
.x14_c01005{left:620.640000px;}
.x12_c01005{left:622.080000px;}
.x13_c01005{left:655.200000px;}
.x18_c01005{left:665.280000px;}
.x35_c01005{left:666.720000px;}
.xf_c01005{left:698.400000px;}
.x38_c01005{left:699.840000px;}
.x1_c01005{left:701.280000px;}
.x15_c01005{left:718.560000px;}
@media print{
.v1_c01005{vertical-align:-7.680000pt;}
.v3_c01005{vertical-align:-5.120000pt;}
.v2_c01005{vertical-align:-2.560000pt;}
.v0_c01005{vertical-align:0.000000pt;}
.ls3_c01005{letter-spacing:0.000000pt;}
.ls1_c01005{letter-spacing:70.379520pt;}
.ls2_c01005{letter-spacing:76.779520pt;}
.ls0_c01005{letter-spacing:92.233803pt;}
.ws1_c01005{word-spacing:0.000000pt;}
.ws0_c01005{word-spacing:185.634133pt;}
.fsc_c01005{font-size:30.720000pt;}
.fsd_c01005{font-size:35.840000pt;}
.fsa_c01005{font-size:38.400000pt;}
.fs3_c01005{font-size:40.960000pt;}
.fs7_c01005{font-size:43.520000pt;}
.fs1_c01005{font-size:46.080000pt;}
.fsb_c01005{font-size:48.640000pt;}
.fs9_c01005{font-size:51.200000pt;}
.fs2_c01005{font-size:53.760000pt;}
.fs5_c01005{font-size:56.320000pt;}
.fs4_c01005{font-size:58.880000pt;}
.fs8_c01005{font-size:61.440000pt;}
.fs6_c01005{font-size:64.000000pt;}
.fs0_c01005{font-size:66.560000pt;}
.y0_c01005{bottom:0.000000pt;}
.y77_c01005{bottom:57.600000pt;}
.y75_c01005{bottom:58.240000pt;}
.y74_c01005{bottom:60.160000pt;}
.y76_c01005{bottom:60.800000pt;}
.y6f_c01005{bottom:85.120000pt;}
.y70_c01005{bottom:87.040000pt;}
.y6e_c01005{bottom:87.680000pt;}
.y72_c01005{bottom:88.320000pt;}
.y71_c01005{bottom:89.600000pt;}
.y73_c01005{bottom:90.240000pt;}
.y68_c01005{bottom:123.520000pt;}
.y6b_c01005{bottom:124.800000pt;}
.y67_c01005{bottom:125.440000pt;}
.y69_c01005{bottom:126.080000pt;}
.y6c_c01005{bottom:126.720000pt;}
.y6d_c01005{bottom:127.360000pt;}
.y6a_c01005{bottom:128.000000pt;}
.y62_c01005{bottom:162.560000pt;}
.y65_c01005{bottom:163.200000pt;}
.y63_c01005{bottom:163.840000pt;}
.y61_c01005{bottom:164.480000pt;}
.y66_c01005{bottom:165.120000pt;}
.y64_c01005{bottom:166.400000pt;}
.y5b_c01005{bottom:200.960000pt;}
.y60_c01005{bottom:201.600000pt;}
.y5e_c01005{bottom:202.240000pt;}
.y5a_c01005{bottom:202.880000pt;}
.y5c_c01005{bottom:203.520000pt;}
.y5d_c01005{bottom:204.160000pt;}
.y5f_c01005{bottom:204.800000pt;}
.y55_c01005{bottom:239.360000pt;}
.y56_c01005{bottom:240.000000pt;}
.y57_c01005{bottom:240.640000pt;}
.y54_c01005{bottom:241.280000pt;}
.y59_c01005{bottom:241.920000pt;}
.y58_c01005{bottom:243.200000pt;}
.y53_c01005{bottom:278.400000pt;}
.y52_c01005{bottom:280.320000pt;}
.y4e_c01005{bottom:306.560000pt;}
.y4f_c01005{bottom:307.200000pt;}
.y4d_c01005{bottom:308.480000pt;}
.y50_c01005{bottom:309.120000pt;}
.y51_c01005{bottom:309.760000pt;}
.y4c_c01005{bottom:344.960000pt;}
.y4b_c01005{bottom:345.600000pt;}
.y47_c01005{bottom:373.120000pt;}
.y48_c01005{bottom:373.760000pt;}
.y4a_c01005{bottom:374.400000pt;}
.y46_c01005{bottom:375.040000pt;}
.y49_c01005{bottom:376.320000pt;}
.y41_c01005{bottom:410.880000pt;}
.y43_c01005{bottom:411.520000pt;}
.y40_c01005{bottom:412.160000pt;}
.y45_c01005{bottom:412.800000pt;}
.y42_c01005{bottom:414.080000pt;}
.y44_c01005{bottom:414.720000pt;}
.y3d_c01005{bottom:448.640000pt;}
.y3e_c01005{bottom:449.280000pt;}
.y3c_c01005{bottom:449.920000pt;}
.y3b_c01005{bottom:450.560000pt;}
.y3f_c01005{bottom:451.200000pt;}
.y37_c01005{bottom:486.400000pt;}
.y38_c01005{bottom:487.680000pt;}
.y36_c01005{bottom:488.320000pt;}
.y39_c01005{bottom:488.960000pt;}
.y35_c01005{bottom:489.600000pt;}
.y3a_c01005{bottom:491.520000pt;}
.y2f_c01005{bottom:524.800000pt;}
.y32_c01005{bottom:525.440000pt;}
.y34_c01005{bottom:526.080000pt;}
.y33_c01005{bottom:526.720000pt;}
.y2d_c01005{bottom:527.360000pt;}
.y31_c01005{bottom:528.000000pt;}
.y30_c01005{bottom:528.640000pt;}
.y2e_c01005{bottom:529.280000pt;}
.y2c_c01005{bottom:565.120000pt;}
.y2b_c01005{bottom:567.040000pt;}
.y28_c01005{bottom:610.560000pt;}
.y2a_c01005{bottom:611.840000pt;}
.y26_c01005{bottom:612.480000pt;}
.y29_c01005{bottom:613.760000pt;}
.y27_c01005{bottom:614.400000pt;}
.y23_c01005{bottom:648.960000pt;}
.y25_c01005{bottom:650.240000pt;}
.y21_c01005{bottom:650.880000pt;}
.y24_c01005{bottom:652.160000pt;}
.y22_c01005{bottom:652.800000pt;}
.y1d_c01005{bottom:686.720000pt;}
.y1f_c01005{bottom:687.360000pt;}
.y20_c01005{bottom:688.640000pt;}
.y1c_c01005{bottom:689.280000pt;}
.y1e_c01005{bottom:689.920000pt;}
.y18_c01005{bottom:725.760000pt;}
.y1a_c01005{bottom:727.040000pt;}
.y17_c01005{bottom:727.680000pt;}
.y19_c01005{bottom:728.960000pt;}
.y1b_c01005{bottom:729.600000pt;}
.y14_c01005{bottom:763.520000pt;}
.y15_c01005{bottom:764.800000pt;}
.y13_c01005{bottom:765.440000pt;}
.y16_c01005{bottom:766.720000pt;}
.y10_c01005{bottom:801.920000pt;}
.y12_c01005{bottom:803.200000pt;}
.ye_c01005{bottom:804.480000pt;}
.y11_c01005{bottom:805.120000pt;}
.yf_c01005{bottom:805.760000pt;}
.yd_c01005{bottom:841.600000pt;}
.yc_c01005{bottom:844.800000pt;}
.ya_c01005{bottom:887.040000pt;}
.y7_c01005{bottom:887.680000pt;}
.yb_c01005{bottom:888.320000pt;}
.y9_c01005{bottom:888.960000pt;}
.y6_c01005{bottom:889.600000pt;}
.y8_c01005{bottom:890.240000pt;}
.y5_c01005{bottom:925.440000pt;}
.y3_c01005{bottom:926.080000pt;}
.y4_c01005{bottom:928.000000pt;}
.y2_c01005{bottom:928.640000pt;}
.y1_c01005{bottom:993.280000pt;}
.he_c01005{height:27.645000pt;}
.hf_c01005{height:32.252500pt;}
.hc_c01005{height:34.556250pt;}
.h5_c01005{height:36.860000pt;}
.h9_c01005{height:39.163750pt;}
.h3_c01005{height:41.467500pt;}
.hd_c01005{height:43.771250pt;}
.hb_c01005{height:46.075000pt;}
.h4_c01005{height:48.378750pt;}
.h7_c01005{height:50.682500pt;}
.h6_c01005{height:52.986250pt;}
.ha_c01005{height:55.290000pt;}
.h8_c01005{height:57.593750pt;}
.h2_c01005{height:59.897500pt;}
.h1_c01005{height:1032.666667pt;}
.h0_c01005{height:1032.960000pt;}
.w0_c01005{width:704.640000pt;}
.w1_c01005{width:704.666667pt;}
.x0_c01005{left:0.000000pt;}
.x7_c01005{left:52.480000pt;}
.x10_c01005{left:99.840000pt;}
.x2_c01005{left:101.120000pt;}
.x24_c01005{left:118.400000pt;}
.x11_c01005{left:119.680000pt;}
.x8_c01005{left:120.960000pt;}
.x20_c01005{left:128.640000pt;}
.x21_c01005{left:149.120000pt;}
.x30_c01005{left:157.440000pt;}
.x3_c01005{left:158.720000pt;}
.x39_c01005{left:167.040000pt;}
.x1d_c01005{left:168.960000pt;}
.x4_c01005{left:195.840000pt;}
.x22_c01005{left:197.760000pt;}
.x9_c01005{left:205.440000pt;}
.x36_c01005{left:206.720000pt;}
.x19_c01005{left:214.400000pt;}
.x1f_c01005{left:215.680000pt;}
.x27_c01005{left:234.240000pt;}
.x16_c01005{left:245.120000pt;}
.x1a_c01005{left:253.440000pt;}
.x37_c01005{left:255.360000pt;}
.xa_c01005{left:263.040000pt;}
.x5_c01005{left:281.600000pt;}
.x28_c01005{left:282.880000pt;}
.x23_c01005{left:291.840000pt;}
.x33_c01005{left:293.120000pt;}
.x1e_c01005{left:301.440000pt;}
.x1b_c01005{left:302.720000pt;}
.x29_c01005{left:320.640000pt;}
.x6_c01005{left:322.560000pt;}
.x31_c01005{left:330.880000pt;}
.x1c_c01005{left:339.840000pt;}
.xb_c01005{left:348.800000pt;}
.x2a_c01005{left:360.320000pt;}
.x32_c01005{left:369.280000pt;}
.x2e_c01005{left:377.600000pt;}
.x25_c01005{left:388.480000pt;}
.x2b_c01005{left:397.440000pt;}
.xc_c01005{left:406.400000pt;}
.x2f_c01005{left:417.280000pt;}
.x26_c01005{left:431.360000pt;}
.x2c_c01005{left:439.680000pt;}
.x34_c01005{left:450.560000pt;}
.xd_c01005{left:474.880000pt;}
.x2d_c01005{left:476.160000pt;}
.xe_c01005{left:522.240000pt;}
.x17_c01005{left:523.520000pt;}
.x14_c01005{left:551.680000pt;}
.x12_c01005{left:552.960000pt;}
.x13_c01005{left:582.400000pt;}
.x18_c01005{left:591.360000pt;}
.x35_c01005{left:592.640000pt;}
.xf_c01005{left:620.800000pt;}
.x38_c01005{left:622.080000pt;}
.x1_c01005{left:623.360000pt;}
.x15_c01005{left:638.720000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ea511cb961131ab6ca0f7afa.woff2')format("woff");}.ff1_c01006{font-family:ff1_c01006;line-height:1.109863;font-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_c01006{transform:matrix(0.157900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157900,0.000000,0.000000,0.250000,0,0);}
.m46_c01006{transform:matrix(0.178650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178650,0.000000,0.000000,0.250000,0,0);}
.m1b_c01006{transform:matrix(0.188900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188900,0.000000,0.000000,0.250000,0,0);}
.ma_c01006{transform:matrix(0.223150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223150,0.000000,0.000000,0.250000,0,0);}
.m3c_c01006{transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);}
.m3a_c01006{transform:matrix(0.244350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244350,0.000000,0.000000,0.250000,0,0);}
.m1f_c01006{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m14_c01006{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_c01006{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);}
.m4b_c01006{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m18_c01006{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);}
.m30_c01006{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m2_c01006{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m3_c01006{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m23_c01006{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01006{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_c01006{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);}
.m2c_c01006{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);}
.m2e_c01006{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m9_c01006{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01006{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m29_c01006{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01006{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01006{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01006{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m10_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);}
.m3d_c01006{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m45_c01006{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01006{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m28_c01006{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m32_c01006{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01006{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);}
.m2a_c01006{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m41_c01006{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);}
.m39_c01006{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);}
.m48_c01006{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);}
.m38_c01006{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m31_c01006{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m17_c01006{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m0_c01006{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m15_c01006{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m47_c01006{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m37_c01006{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m5_c01006{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1_c01006{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01006{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);}
.m34_c01006{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);}
.m22_c01006{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01006{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m11_c01006{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m6_c01006{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);}
.m49_c01006{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);}
.mf_c01006{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m27_c01006{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m26_c01006{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m33_c01006{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);}
.m35_c01006{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);}
.m40_c01006{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);}
.m16_c01006{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01006{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m44_c01006{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m12_c01006{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m13_c01006{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01006{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);}
.m8_c01006{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m4_c01006{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);}
.m25_c01006{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.md_c01006{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m42_c01006{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);}
.m1c_c01006{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m43_c01006{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m36_c01006{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m7_c01006{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m21_c01006{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m24_c01006{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.me_c01006{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.v1_c01006{vertical-align:-2.880000px;}
.v0_c01006{vertical-align:0.000000px;}
.ls0_c01006{letter-spacing:0.000000px;}
.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:-4.674480px;}
.ws1_c01006{word-spacing:0.000000px;}
.fc0_c01006{color:transparent;}
.fse_c01006{font-size:17.280000px;}
.fsf_c01006{font-size:31.680000px;}
.fsa_c01006{font-size:34.560000px;}
.fs11_c01006{font-size:37.440000px;}
.fs9_c01006{font-size:43.200000px;}
.fs4_c01006{font-size:46.080000px;}
.fs5_c01006{font-size:48.960000px;}
.fs7_c01006{font-size:51.840000px;}
.fs8_c01006{font-size:54.720000px;}
.fs2_c01006{font-size:57.600000px;}
.fs1_c01006{font-size:60.480000px;}
.fsc_c01006{font-size:63.360000px;}
.fsb_c01006{font-size:69.120000px;}
.fs3_c01006{font-size:72.000000px;}
.fs10_c01006{font-size:74.880000px;}
.fs0_c01006{font-size:77.760000px;}
.fs6_c01006{font-size:97.920000px;}
.fsd_c01006{font-size:106.560000px;}
.fs12_c01006{font-size:132.480000px;}
.y0_c01006{bottom:0.000000px;}
.y7e_c01006{bottom:36.000000px;}
.y7c_c01006{bottom:37.440000px;}
.y7d_c01006{bottom:39.600000px;}
.y77_c01006{bottom:68.400000px;}
.y76_c01006{bottom:70.560000px;}
.y78_c01006{bottom:71.280000px;}
.y79_c01006{bottom:72.000000px;}
.y7a_c01006{bottom:72.720000px;}
.y7b_c01006{bottom:74.160000px;}
.y72_c01006{bottom:115.200000px;}
.y73_c01006{bottom:115.920000px;}
.y75_c01006{bottom:116.640000px;}
.y74_c01006{bottom:117.360000px;}
.y71_c01006{bottom:159.840000px;}
.y6f_c01006{bottom:167.040000px;}
.y6e_c01006{bottom:168.480000px;}
.y70_c01006{bottom:169.200000px;}
.y6b_c01006{bottom:209.520000px;}
.y6d_c01006{bottom:210.240000px;}
.y6a_c01006{bottom:210.960000px;}
.y6c_c01006{bottom:211.680000px;}
.y69_c01006{bottom:253.440000px;}
.y68_c01006{bottom:256.320000px;}
.y63_c01006{bottom:304.560000px;}
.y64_c01006{bottom:306.000000px;}
.y62_c01006{bottom:306.720000px;}
.y66_c01006{bottom:307.440000px;}
.y65_c01006{bottom:308.160000px;}
.y67_c01006{bottom:308.880000px;}
.y60_c01006{bottom:349.920000px;}
.y61_c01006{bottom:350.640000px;}
.y5f_c01006{bottom:352.080000px;}
.y5d_c01006{bottom:392.400000px;}
.y5e_c01006{bottom:393.840000px;}
.y56_c01006{bottom:443.520000px;}
.y5b_c01006{bottom:444.960000px;}
.y59_c01006{bottom:445.680000px;}
.y5a_c01006{bottom:446.400000px;}
.y55_c01006{bottom:447.120000px;}
.y58_c01006{bottom:447.840000px;}
.y57_c01006{bottom:448.560000px;}
.y5c_c01006{bottom:449.280000px;}
.y54_c01006{bottom:487.440000px;}
.y52_c01006{bottom:488.160000px;}
.y53_c01006{bottom:488.880000px;}
.y50_c01006{bottom:491.040000px;}
.y51_c01006{bottom:491.760000px;}
.y49_c01006{bottom:519.840000px;}
.y4b_c01006{bottom:520.560000px;}
.y4a_c01006{bottom:521.280000px;}
.y4e_c01006{bottom:522.000000px;}
.y48_c01006{bottom:522.720000px;}
.y4d_c01006{bottom:523.440000px;}
.y4c_c01006{bottom:524.160000px;}
.y4f_c01006{bottom:524.880000px;}
.y47_c01006{bottom:563.760000px;}
.y45_c01006{bottom:564.480000px;}
.y46_c01006{bottom:566.640000px;}
.y3f_c01006{bottom:595.440000px;}
.y40_c01006{bottom:596.160000px;}
.y43_c01006{bottom:596.880000px;}
.y3e_c01006{bottom:597.600000px;}
.y41_c01006{bottom:598.320000px;}
.y42_c01006{bottom:599.760000px;}
.y44_c01006{bottom:600.480000px;}
.y3d_c01006{bottom:638.640000px;}
.y3b_c01006{bottom:639.360000px;}
.y3c_c01006{bottom:642.240000px;}
.y35_c01006{bottom:670.320000px;}
.y37_c01006{bottom:671.040000px;}
.y38_c01006{bottom:671.760000px;}
.y34_c01006{bottom:672.480000px;}
.y36_c01006{bottom:673.920000px;}
.y39_c01006{bottom:675.360000px;}
.y3a_c01006{bottom:681.840000px;}
.y33_c01006{bottom:712.800000px;}
.y31_c01006{bottom:714.960000px;}
.y32_c01006{bottom:717.120000px;}
.y2d_c01006{bottom:744.480000px;}
.y2e_c01006{bottom:745.920000px;}
.y2c_c01006{bottom:746.640000px;}
.y2b_c01006{bottom:747.360000px;}
.y2f_c01006{bottom:748.080000px;}
.y30_c01006{bottom:748.800000px;}
.y2a_c01006{bottom:788.400000px;}
.y28_c01006{bottom:791.280000px;}
.y29_c01006{bottom:792.000000px;}
.y22_c01006{bottom:820.080000px;}
.y23_c01006{bottom:820.800000px;}
.y21_c01006{bottom:822.240000px;}
.y24_c01006{bottom:822.960000px;}
.y25_c01006{bottom:823.680000px;}
.y26_c01006{bottom:824.400000px;}
.y27_c01006{bottom:825.120000px;}
.y1f_c01006{bottom:862.560000px;}
.y20_c01006{bottom:863.280000px;}
.y1e_c01006{bottom:865.440000px;}
.y1d_c01006{bottom:866.160000px;}
.y17_c01006{bottom:894.240000px;}
.y19_c01006{bottom:894.960000px;}
.y16_c01006{bottom:895.680000px;}
.y1a_c01006{bottom:896.400000px;}
.y18_c01006{bottom:897.840000px;}
.y1b_c01006{bottom:898.560000px;}
.y1c_c01006{bottom:900.000000px;}
.y15_c01006{bottom:936.720000px;}
.y13_c01006{bottom:938.880000px;}
.y14_c01006{bottom:941.040000px;}
.ye_c01006{bottom:969.120000px;}
.y10_c01006{bottom:969.840000px;}
.y11_c01006{bottom:970.560000px;}
.yd_c01006{bottom:972.000000px;}
.yf_c01006{bottom:972.720000px;}
.y12_c01006{bottom:974.880000px;}
.yc_c01006{bottom:1011.600000px;}
.y9_c01006{bottom:1013.040000px;}
.ya_c01006{bottom:1013.760000px;}
.yb_c01006{bottom:1015.200000px;}
.y7_c01006{bottom:1036.080000px;}
.y4_c01006{bottom:1044.000000px;}
.y5_c01006{bottom:1044.720000px;}
.y6_c01006{bottom:1045.440000px;}
.y3_c01006{bottom:1046.160000px;}
.y2_c01006{bottom:1046.880000px;}
.y8_c01006{bottom:1047.600000px;}
.y1_c01006{bottom:1117.440000px;}
.h10_c01006{height:15.550313px;}
.h11_c01006{height:28.508906px;}
.hc_c01006{height:31.100625px;}
.hb_c01006{height:38.875781px;}
.h6_c01006{height:41.467500px;}
.h7_c01006{height:44.059219px;}
.h9_c01006{height:46.650937px;}
.ha_c01006{height:49.242656px;}
.h4_c01006{height:51.834375px;}
.h3_c01006{height:54.426094px;}
.he_c01006{height:57.017812px;}
.hd_c01006{height:62.201250px;}
.h5_c01006{height:64.792969px;}
.h12_c01006{height:67.384687px;}
.h2_c01006{height:69.976406px;}
.h8_c01006{height:88.118437px;}
.hf_c01006{height:95.893594px;}
.h13_c01006{height:119.219062px;}
.h1_c01006{height:1164.000000px;}
.h0_c01006{height:1164.240000px;}
.w0_c01006{width:780.480000px;}
.w1_c01006{width:780.750000px;}
.x0_c01006{left:0.000000px;}
.x2_c01006{left:60.480000px;}
.x39_c01006{left:61.920000px;}
.x35_c01006{left:115.200000px;}
.x36_c01006{left:116.640000px;}
.x3_c01006{left:136.800000px;}
.x29_c01006{left:138.240000px;}
.x37_c01006{left:147.600000px;}
.x17_c01006{left:168.480000px;}
.xe_c01006{left:179.280000px;}
.x4_c01006{left:180.720000px;}
.x18_c01006{left:190.080000px;}
.x48_c01006{left:192.240000px;}
.xf_c01006{left:211.680000px;}
.x3a_c01006{left:224.640000px;}
.x5_c01006{left:233.280000px;}
.x20_c01006{left:234.720000px;}
.x42_c01006{left:257.040000px;}
.x21_c01006{left:267.120000px;}
.x10_c01006{left:276.480000px;}
.x30_c01006{left:278.640000px;}
.x6_c01006{left:285.840000px;}
.x19_c01006{left:287.280000px;}
.x24_c01006{left:288.720000px;}
.x22_c01006{left:308.880000px;}
.x13_c01006{left:319.680000px;}
.x2d_c01006{left:321.120000px;}
.x7_c01006{left:330.480000px;}
.x38_c01006{left:331.920000px;}
.x3b_c01006{left:333.360000px;}
.x3e_c01006{left:343.440000px;}
.x1a_c01006{left:372.240000px;}
.x14_c01006{left:373.680000px;}
.x2e_c01006{left:375.840000px;}
.x11_c01006{left:382.320000px;}
.x1b_c01006{left:384.480000px;}
.x2a_c01006{left:385.920000px;}
.x23_c01006{left:394.560000px;}
.x43_c01006{left:408.240000px;}
.x8_c01006{left:416.160000px;}
.x2f_c01006{left:419.040000px;}
.x12_c01006{left:426.960000px;}
.x25_c01006{left:428.400000px;}
.x44_c01006{left:430.560000px;}
.x1e_c01006{left:439.200000px;}
.x2b_c01006{left:440.640000px;}
.x31_c01006{left:450.720000px;}
.x3f_c01006{left:461.520000px;}
.x9_c01006{left:470.880000px;}
.x32_c01006{left:473.040000px;}
.x1c_c01006{left:480.960000px;}
.x40_c01006{left:483.120000px;}
.x45_c01006{left:484.560000px;}
.x46_c01006{left:504.000000px;}
.x33_c01006{left:509.760000px;}
.x41_c01006{left:516.240000px;}
.xa_c01006{left:536.400000px;}
.x26_c01006{left:537.840000px;}
.x3c_c01006{left:539.280000px;}
.x27_c01006{left:569.520000px;}
.x1d_c01006{left:578.880000px;}
.xb_c01006{left:622.080000px;}
.x15_c01006{left:623.520000px;}
.x2c_c01006{left:624.960000px;}
.xc_c01006{left:656.640000px;}
.x34_c01006{left:658.800000px;}
.x16_c01006{left:666.720000px;}
.x28_c01006{left:668.160000px;}
.x47_c01006{left:669.600000px;}
.x1_c01006{left:680.400000px;}
.xd_c01006{left:699.120000px;}
.x1f_c01006{left:701.280000px;}
.x3d_c01006{left:702.720000px;}
@media print{
.v1_c01006{vertical-align:-2.560000pt;}
.v0_c01006{vertical-align:0.000000pt;}
.ls0_c01006{letter-spacing:0.000000pt;}
.ws0_c01006{word-spacing:-4.155093pt;}
.ws1_c01006{word-spacing:0.000000pt;}
.fse_c01006{font-size:15.360000pt;}
.fsf_c01006{font-size:28.160000pt;}
.fsa_c01006{font-size:30.720000pt;}
.fs11_c01006{font-size:33.280000pt;}
.fs9_c01006{font-size:38.400000pt;}
.fs4_c01006{font-size:40.960000pt;}
.fs5_c01006{font-size:43.520000pt;}
.fs7_c01006{font-size:46.080000pt;}
.fs8_c01006{font-size:48.640000pt;}
.fs2_c01006{font-size:51.200000pt;}
.fs1_c01006{font-size:53.760000pt;}
.fsc_c01006{font-size:56.320000pt;}
.fsb_c01006{font-size:61.440000pt;}
.fs3_c01006{font-size:64.000000pt;}
.fs10_c01006{font-size:66.560000pt;}
.fs0_c01006{font-size:69.120000pt;}
.fs6_c01006{font-size:87.040000pt;}
.fsd_c01006{font-size:94.720000pt;}
.fs12_c01006{font-size:117.760000pt;}
.y0_c01006{bottom:0.000000pt;}
.y7e_c01006{bottom:32.000000pt;}
.y7c_c01006{bottom:33.280000pt;}
.y7d_c01006{bottom:35.200000pt;}
.y77_c01006{bottom:60.800000pt;}
.y76_c01006{bottom:62.720000pt;}
.y78_c01006{bottom:63.360000pt;}
.y79_c01006{bottom:64.000000pt;}
.y7a_c01006{bottom:64.640000pt;}
.y7b_c01006{bottom:65.920000pt;}
.y72_c01006{bottom:102.400000pt;}
.y73_c01006{bottom:103.040000pt;}
.y75_c01006{bottom:103.680000pt;}
.y74_c01006{bottom:104.320000pt;}
.y71_c01006{bottom:142.080000pt;}
.y6f_c01006{bottom:148.480000pt;}
.y6e_c01006{bottom:149.760000pt;}
.y70_c01006{bottom:150.400000pt;}
.y6b_c01006{bottom:186.240000pt;}
.y6d_c01006{bottom:186.880000pt;}
.y6a_c01006{bottom:187.520000pt;}
.y6c_c01006{bottom:188.160000pt;}
.y69_c01006{bottom:225.280000pt;}
.y68_c01006{bottom:227.840000pt;}
.y63_c01006{bottom:270.720000pt;}
.y64_c01006{bottom:272.000000pt;}
.y62_c01006{bottom:272.640000pt;}
.y66_c01006{bottom:273.280000pt;}
.y65_c01006{bottom:273.920000pt;}
.y67_c01006{bottom:274.560000pt;}
.y60_c01006{bottom:311.040000pt;}
.y61_c01006{bottom:311.680000pt;}
.y5f_c01006{bottom:312.960000pt;}
.y5d_c01006{bottom:348.800000pt;}
.y5e_c01006{bottom:350.080000pt;}
.y56_c01006{bottom:394.240000pt;}
.y5b_c01006{bottom:395.520000pt;}
.y59_c01006{bottom:396.160000pt;}
.y5a_c01006{bottom:396.800000pt;}
.y55_c01006{bottom:397.440000pt;}
.y58_c01006{bottom:398.080000pt;}
.y57_c01006{bottom:398.720000pt;}
.y5c_c01006{bottom:399.360000pt;}
.y54_c01006{bottom:433.280000pt;}
.y52_c01006{bottom:433.920000pt;}
.y53_c01006{bottom:434.560000pt;}
.y50_c01006{bottom:436.480000pt;}
.y51_c01006{bottom:437.120000pt;}
.y49_c01006{bottom:462.080000pt;}
.y4b_c01006{bottom:462.720000pt;}
.y4a_c01006{bottom:463.360000pt;}
.y4e_c01006{bottom:464.000000pt;}
.y48_c01006{bottom:464.640000pt;}
.y4d_c01006{bottom:465.280000pt;}
.y4c_c01006{bottom:465.920000pt;}
.y4f_c01006{bottom:466.560000pt;}
.y47_c01006{bottom:501.120000pt;}
.y45_c01006{bottom:501.760000pt;}
.y46_c01006{bottom:503.680000pt;}
.y3f_c01006{bottom:529.280000pt;}
.y40_c01006{bottom:529.920000pt;}
.y43_c01006{bottom:530.560000pt;}
.y3e_c01006{bottom:531.200000pt;}
.y41_c01006{bottom:531.840000pt;}
.y42_c01006{bottom:533.120000pt;}
.y44_c01006{bottom:533.760000pt;}
.y3d_c01006{bottom:567.680000pt;}
.y3b_c01006{bottom:568.320000pt;}
.y3c_c01006{bottom:570.880000pt;}
.y35_c01006{bottom:595.840000pt;}
.y37_c01006{bottom:596.480000pt;}
.y38_c01006{bottom:597.120000pt;}
.y34_c01006{bottom:597.760000pt;}
.y36_c01006{bottom:599.040000pt;}
.y39_c01006{bottom:600.320000pt;}
.y3a_c01006{bottom:606.080000pt;}
.y33_c01006{bottom:633.600000pt;}
.y31_c01006{bottom:635.520000pt;}
.y32_c01006{bottom:637.440000pt;}
.y2d_c01006{bottom:661.760000pt;}
.y2e_c01006{bottom:663.040000pt;}
.y2c_c01006{bottom:663.680000pt;}
.y2b_c01006{bottom:664.320000pt;}
.y2f_c01006{bottom:664.960000pt;}
.y30_c01006{bottom:665.600000pt;}
.y2a_c01006{bottom:700.800000pt;}
.y28_c01006{bottom:703.360000pt;}
.y29_c01006{bottom:704.000000pt;}
.y22_c01006{bottom:728.960000pt;}
.y23_c01006{bottom:729.600000pt;}
.y21_c01006{bottom:730.880000pt;}
.y24_c01006{bottom:731.520000pt;}
.y25_c01006{bottom:732.160000pt;}
.y26_c01006{bottom:732.800000pt;}
.y27_c01006{bottom:733.440000pt;}
.y1f_c01006{bottom:766.720000pt;}
.y20_c01006{bottom:767.360000pt;}
.y1e_c01006{bottom:769.280000pt;}
.y1d_c01006{bottom:769.920000pt;}
.y17_c01006{bottom:794.880000pt;}
.y19_c01006{bottom:795.520000pt;}
.y16_c01006{bottom:796.160000pt;}
.y1a_c01006{bottom:796.800000pt;}
.y18_c01006{bottom:798.080000pt;}
.y1b_c01006{bottom:798.720000pt;}
.y1c_c01006{bottom:800.000000pt;}
.y15_c01006{bottom:832.640000pt;}
.y13_c01006{bottom:834.560000pt;}
.y14_c01006{bottom:836.480000pt;}
.ye_c01006{bottom:861.440000pt;}
.y10_c01006{bottom:862.080000pt;}
.y11_c01006{bottom:862.720000pt;}
.yd_c01006{bottom:864.000000pt;}
.yf_c01006{bottom:864.640000pt;}
.y12_c01006{bottom:866.560000pt;}
.yc_c01006{bottom:899.200000pt;}
.y9_c01006{bottom:900.480000pt;}
.ya_c01006{bottom:901.120000pt;}
.yb_c01006{bottom:902.400000pt;}
.y7_c01006{bottom:920.960000pt;}
.y4_c01006{bottom:928.000000pt;}
.y5_c01006{bottom:928.640000pt;}
.y6_c01006{bottom:929.280000pt;}
.y3_c01006{bottom:929.920000pt;}
.y2_c01006{bottom:930.560000pt;}
.y8_c01006{bottom:931.200000pt;}
.y1_c01006{bottom:993.280000pt;}
.h10_c01006{height:13.822500pt;}
.h11_c01006{height:25.341250pt;}
.hc_c01006{height:27.645000pt;}
.hb_c01006{height:34.556250pt;}
.h6_c01006{height:36.860000pt;}
.h7_c01006{height:39.163750pt;}
.h9_c01006{height:41.467500pt;}
.ha_c01006{height:43.771250pt;}
.h4_c01006{height:46.075000pt;}
.h3_c01006{height:48.378750pt;}
.he_c01006{height:50.682500pt;}
.hd_c01006{height:55.290000pt;}
.h5_c01006{height:57.593750pt;}
.h12_c01006{height:59.897500pt;}
.h2_c01006{height:62.201250pt;}
.h8_c01006{height:78.327500pt;}
.hf_c01006{height:85.238750pt;}
.h13_c01006{height:105.972500pt;}
.h1_c01006{height:1034.666667pt;}
.h0_c01006{height:1034.880000pt;}
.w0_c01006{width:693.760000pt;}
.w1_c01006{width:694.000000pt;}
.x0_c01006{left:0.000000pt;}
.x2_c01006{left:53.760000pt;}
.x39_c01006{left:55.040000pt;}
.x35_c01006{left:102.400000pt;}
.x36_c01006{left:103.680000pt;}
.x3_c01006{left:121.600000pt;}
.x29_c01006{left:122.880000pt;}
.x37_c01006{left:131.200000pt;}
.x17_c01006{left:149.760000pt;}
.xe_c01006{left:159.360000pt;}
.x4_c01006{left:160.640000pt;}
.x18_c01006{left:168.960000pt;}
.x48_c01006{left:170.880000pt;}
.xf_c01006{left:188.160000pt;}
.x3a_c01006{left:199.680000pt;}
.x5_c01006{left:207.360000pt;}
.x20_c01006{left:208.640000pt;}
.x42_c01006{left:228.480000pt;}
.x21_c01006{left:237.440000pt;}
.x10_c01006{left:245.760000pt;}
.x30_c01006{left:247.680000pt;}
.x6_c01006{left:254.080000pt;}
.x19_c01006{left:255.360000pt;}
.x24_c01006{left:256.640000pt;}
.x22_c01006{left:274.560000pt;}
.x13_c01006{left:284.160000pt;}
.x2d_c01006{left:285.440000pt;}
.x7_c01006{left:293.760000pt;}
.x38_c01006{left:295.040000pt;}
.x3b_c01006{left:296.320000pt;}
.x3e_c01006{left:305.280000pt;}
.x1a_c01006{left:330.880000pt;}
.x14_c01006{left:332.160000pt;}
.x2e_c01006{left:334.080000pt;}
.x11_c01006{left:339.840000pt;}
.x1b_c01006{left:341.760000pt;}
.x2a_c01006{left:343.040000pt;}
.x23_c01006{left:350.720000pt;}
.x43_c01006{left:362.880000pt;}
.x8_c01006{left:369.920000pt;}
.x2f_c01006{left:372.480000pt;}
.x12_c01006{left:379.520000pt;}
.x25_c01006{left:380.800000pt;}
.x44_c01006{left:382.720000pt;}
.x1e_c01006{left:390.400000pt;}
.x2b_c01006{left:391.680000pt;}
.x31_c01006{left:400.640000pt;}
.x3f_c01006{left:410.240000pt;}
.x9_c01006{left:418.560000pt;}
.x32_c01006{left:420.480000pt;}
.x1c_c01006{left:427.520000pt;}
.x40_c01006{left:429.440000pt;}
.x45_c01006{left:430.720000pt;}
.x46_c01006{left:448.000000pt;}
.x33_c01006{left:453.120000pt;}
.x41_c01006{left:458.880000pt;}
.xa_c01006{left:476.800000pt;}
.x26_c01006{left:478.080000pt;}
.x3c_c01006{left:479.360000pt;}
.x27_c01006{left:506.240000pt;}
.x1d_c01006{left:514.560000pt;}
.xb_c01006{left:552.960000pt;}
.x15_c01006{left:554.240000pt;}
.x2c_c01006{left:555.520000pt;}
.xc_c01006{left:583.680000pt;}
.x34_c01006{left:585.600000pt;}
.x16_c01006{left:592.640000pt;}
.x28_c01006{left:593.920000pt;}
.x47_c01006{left:595.200000pt;}
.x1_c01006{left:604.800000pt;}
.xd_c01006{left:621.440000pt;}
.x1f_c01006{left:623.360000pt;}
.x3d_c01006{left:624.640000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_596da6c6c07b32d47df31df8.woff2')format("woff");}.ff1_c01007{font-family:ff1_c01007;line-height:1.109863;font-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_c01007{transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);}
.m3b_c01007{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.ma_c01007{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);}
.m59_c01007{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);}
.m58_c01007{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.mc_c01007{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_c01007{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m6_c01007{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m5b_c01007{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);}
.m56_c01007{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);}
.m3a_c01007{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m31_c01007{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m48_c01007{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.md_c01007{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m9_c01007{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m57_c01007{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m3_c01007{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m53_c01007{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m36_c01007{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m18_c01007{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m16_c01007{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m50_c01007{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m5a_c01007{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01007{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01007{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01007{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m0_c01007{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);}
.m49_c01007{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01007{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m1_c01007{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);}
.m51_c01007{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.me_c01007{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01007{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);}
.m40_c01007{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m33_c01007{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m44_c01007{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);}
.m13_c01007{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);}
.m21_c01007{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);}
.m29_c01007{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);}
.m3e_c01007{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01007{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);}
.m42_c01007{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);}
.m2d_c01007{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01007{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m22_c01007{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m17_c01007{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);}
.m10_c01007{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m28_c01007{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m23_c01007{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);}
.m24_c01007{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);}
.m8_c01007{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01007{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m25_c01007{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m35_c01007{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);}
.m3c_c01007{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);}
.m38_c01007{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m46_c01007{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);}
.m30_c01007{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m45_c01007{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m43_c01007{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);}
.m52_c01007{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01007{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m26_c01007{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m55_c01007{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m5_c01007{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m27_c01007{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m20_c01007{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m11_c01007{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m7_c01007{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);}
.m12_c01007{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);}
.m1e_c01007{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01007{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01007{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01007{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);}
.m41_c01007{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m32_c01007{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01007{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m39_c01007{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);}
.m4a_c01007{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m19_c01007{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m4_c01007{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01007{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01007{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01007{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m34_c01007{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);}
.m2e_c01007{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);}
.m15_c01007{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);}
.m14_c01007{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m37_c01007{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m54_c01007{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.mf_c01007{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m47_c01007{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m5c_c01007{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);}
.v2_c01007{vertical-align:-2.880000px;}
.v0_c01007{vertical-align:0.000000px;}
.v1_c01007{vertical-align:5.760000px;}
.v3_c01007{vertical-align:8.640000px;}
.ls0_c01007{letter-spacing:0.000000px;}
.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;}
}
.ws2_c01007{word-spacing:-5.246400px;}
.ws0_c01007{word-spacing:-4.068240px;}
.ws5_c01007{word-spacing:0.000000px;}
.ws4_c01007{word-spacing:0.269280px;}
.ws3_c01007{word-spacing:4.131600px;}
.ws1_c01007{word-spacing:67.345200px;}
.fc0_c01007{color:transparent;}
.fsd_c01007{font-size:23.040000px;}
.fs7_c01007{font-size:34.560000px;}
.fs8_c01007{font-size:43.200000px;}
.fs4_c01007{font-size:46.080000px;}
.fs3_c01007{font-size:48.960000px;}
.fs6_c01007{font-size:51.840000px;}
.fsa_c01007{font-size:54.720000px;}
.fsc_c01007{font-size:57.600000px;}
.fs2_c01007{font-size:60.480000px;}
.fs1_c01007{font-size:63.360000px;}
.fsb_c01007{font-size:66.240000px;}
.fs5_c01007{font-size:69.120000px;}
.fs9_c01007{font-size:72.000000px;}
.fs0_c01007{font-size:74.880000px;}
.y0_c01007{bottom:0.000000px;}
.y67_c01007{bottom:52.560000px;}
.y6a_c01007{bottom:53.280000px;}
.y6b_c01007{bottom:57.600000px;}
.y66_c01007{bottom:75.600000px;}
.y69_c01007{bottom:76.320000px;}
.y68_c01007{bottom:77.040000px;}
.y63_c01007{bottom:105.840000px;}
.y64_c01007{bottom:106.560000px;}
.y65_c01007{bottom:107.280000px;}
.y62_c01007{bottom:108.000000px;}
.y5f_c01007{bottom:148.320000px;}
.y60_c01007{bottom:149.040000px;}
.y61_c01007{bottom:151.200000px;}
.y5e_c01007{bottom:151.920000px;}
.y5d_c01007{bottom:190.800000px;}
.y59_c01007{bottom:192.240000px;}
.y5b_c01007{bottom:194.400000px;}
.y5a_c01007{bottom:195.120000px;}
.y5c_c01007{bottom:195.840000px;}
.y57_c01007{bottom:246.240000px;}
.y56_c01007{bottom:246.960000px;}
.y55_c01007{bottom:247.680000px;}
.y58_c01007{bottom:248.400000px;}
.y54_c01007{bottom:249.120000px;}
.y53_c01007{bottom:267.120000px;}
.y52_c01007{bottom:268.560000px;}
.y4d_c01007{bottom:311.040000px;}
.y50_c01007{bottom:311.760000px;}
.y4f_c01007{bottom:312.480000px;}
.y4e_c01007{bottom:313.200000px;}
.y51_c01007{bottom:313.920000px;}
.y4b_c01007{bottom:333.360000px;}
.y4c_c01007{bottom:334.800000px;}
.y4a_c01007{bottom:375.120000px;}
.y48_c01007{bottom:375.840000px;}
.y49_c01007{bottom:376.560000px;}
.y47_c01007{bottom:377.280000px;}
.y45_c01007{bottom:397.440000px;}
.y46_c01007{bottom:398.160000px;}
.y44_c01007{bottom:417.600000px;}
.y42_c01007{bottom:418.320000px;}
.y43_c01007{bottom:420.480000px;}
.y41_c01007{bottom:460.080000px;}
.y40_c01007{bottom:462.960000px;}
.y3f_c01007{bottom:463.680000px;}
.y3d_c01007{bottom:503.280000px;}
.y3e_c01007{bottom:504.000000px;}
.y3c_c01007{bottom:505.440000px;}
.y3b_c01007{bottom:506.160000px;}
.y39_c01007{bottom:557.280000px;}
.y3a_c01007{bottom:558.720000px;}
.y38_c01007{bottom:559.440000px;}
.y37_c01007{bottom:560.160000px;}
.y35_c01007{bottom:599.760000px;}
.y36_c01007{bottom:601.920000px;}
.y34_c01007{bottom:602.640000px;}
.y30_c01007{bottom:641.520000px;}
.y32_c01007{bottom:642.240000px;}
.y33_c01007{bottom:642.960000px;}
.y2d_c01007{bottom:643.680000px;}
.y31_c01007{bottom:644.400000px;}
.y2f_c01007{bottom:645.120000px;}
.y2e_c01007{bottom:645.840000px;}
.y2b_c01007{bottom:685.440000px;}
.y2c_c01007{bottom:687.600000px;}
.y2a_c01007{bottom:688.320000px;}
.y25_c01007{bottom:727.920000px;}
.y23_c01007{bottom:728.640000px;}
.y27_c01007{bottom:729.360000px;}
.y28_c01007{bottom:730.080000px;}
.y26_c01007{bottom:730.800000px;}
.y24_c01007{bottom:731.520000px;}
.y29_c01007{bottom:732.240000px;}
.y1f_c01007{bottom:771.120000px;}
.y20_c01007{bottom:771.840000px;}
.y22_c01007{bottom:772.560000px;}
.y1e_c01007{bottom:773.280000px;}
.y21_c01007{bottom:774.000000px;}
.y1d_c01007{bottom:774.720000px;}
.y1a_c01007{bottom:814.320000px;}
.y1b_c01007{bottom:815.760000px;}
.y1c_c01007{bottom:816.480000px;}
.y19_c01007{bottom:817.200000px;}
.y18_c01007{bottom:867.600000px;}
.y17_c01007{bottom:871.200000px;}
.y16_c01007{bottom:871.920000px;}
.y15_c01007{bottom:910.080000px;}
.y14_c01007{bottom:910.800000px;}
.y11_c01007{bottom:911.520000px;}
.y12_c01007{bottom:912.960000px;}
.y13_c01007{bottom:913.680000px;}
.yf_c01007{bottom:952.560000px;}
.y10_c01007{bottom:954.000000px;}
.yc_c01007{bottom:954.720000px;}
.ye_c01007{bottom:955.440000px;}
.yd_c01007{bottom:956.160000px;}
.yb_c01007{bottom:956.880000px;}
.ya_c01007{bottom:957.600000px;}
.y8_c01007{bottom:1016.640000px;}
.y6_c01007{bottom:1018.080000px;}
.y7_c01007{bottom:1020.960000px;}
.y3_c01007{bottom:1048.320000px;}
.y4_c01007{bottom:1049.760000px;}
.y9_c01007{bottom:1050.480000px;}
.y2_c01007{bottom:1051.200000px;}
.y5_c01007{bottom:1051.920000px;}
.y1_c01007{bottom:1110.960000px;}
.h10_c01007{height:20.733750px;}
.h9_c01007{height:31.100625px;}
.ha_c01007{height:38.875781px;}
.h6_c01007{height:41.467500px;}
.h5_c01007{height:44.059219px;}
.h8_c01007{height:46.650937px;}
.hc_c01007{height:49.242656px;}
.he_c01007{height:51.834375px;}
.hf_c01007{height:52.699219px;}
.h4_c01007{height:54.426094px;}
.h3_c01007{height:57.017812px;}
.hd_c01007{height:59.609531px;}
.h7_c01007{height:62.201250px;}
.hb_c01007{height:64.792969px;}
.h2_c01007{height:67.384687px;}
.h1_c01007{height:1161.750000px;}
.h0_c01007{height:1162.080000px;}
.w0_c01007{width:777.600000px;}
.w1_c01007{width:777.750000px;}
.x0_c01007{left:0.000000px;}
.x4e_c01007{left:54.000000px;}
.x27_c01007{left:55.440000px;}
.x2_c01007{left:56.880000px;}
.x3f_c01007{left:58.320000px;}
.x51_c01007{left:77.760000px;}
.x3d_c01007{left:88.560000px;}
.x22_c01007{left:100.080000px;}
.x43_c01007{left:112.320000px;}
.x28_c01007{left:121.680000px;}
.x3e_c01007{left:131.040000px;}
.x3_c01007{left:133.200000px;}
.x23_c01007{left:142.560000px;}
.x42_c01007{left:151.920000px;}
.x1a_c01007{left:154.080000px;}
.xe_c01007{left:164.880000px;}
.x49_c01007{left:167.040000px;}
.x8_c01007{left:174.960000px;}
.x1b_c01007{left:186.480000px;}
.x2f_c01007{left:196.560000px;}
.xf_c01007{left:206.640000px;}
.x3b_c01007{left:208.080000px;}
.x1d_c01007{left:218.160000px;}
.x52_c01007{left:220.320000px;}
.x4_c01007{left:229.680000px;}
.x46_c01007{left:231.120000px;}
.x30_c01007{left:239.760000px;}
.x10_c01007{left:250.560000px;}
.x29_c01007{left:261.360000px;}
.x40_c01007{left:263.520000px;}
.x9_c01007{left:272.160000px;}
.x31_c01007{left:275.760000px;}
.x1c_c01007{left:282.960000px;}
.x53_c01007{left:285.120000px;}
.x3a_c01007{left:293.760000px;}
.x44_c01007{left:295.200000px;}
.x4f_c01007{left:304.560000px;}
.x5_c01007{left:315.360000px;}
.x37_c01007{left:326.160000px;}
.x41_c01007{left:327.600000px;}
.x15_c01007{left:336.960000px;}
.x2a_c01007{left:338.400000px;}
.x1e_c01007{left:347.760000px;}
.x54_c01007{left:349.920000px;}
.x11_c01007{left:357.840000px;}
.x34_c01007{left:359.280000px;}
.x6_c01007{left:368.640000px;}
.x50_c01007{left:380.880000px;}
.x16_c01007{left:390.960000px;}
.x32_c01007{left:401.760000px;}
.x47_c01007{left:403.200000px;}
.x7_c01007{left:412.560000px;}
.x12_c01007{left:423.360000px;}
.x55_c01007{left:424.800000px;}
.x2b_c01007{left:433.440000px;}
.x1f_c01007{left:443.520000px;}
.x17_c01007{left:445.680000px;}
.x4b_c01007{left:455.760000px;}
.x13_c01007{left:467.280000px;}
.x24_c01007{left:477.360000px;}
.x3c_c01007{left:479.520000px;}
.x4c_c01007{left:489.600000px;}
.x18_c01007{left:498.960000px;}
.x33_c01007{left:500.400000px;}
.x2c_c01007{left:520.560000px;}
.xa_c01007{left:522.000000px;}
.x35_c01007{left:531.360000px;}
.x20_c01007{left:542.880000px;}
.x4d_c01007{left:553.680000px;}
.x2d_c01007{left:555.120000px;}
.x14_c01007{left:574.560000px;}
.x36_c01007{left:576.720000px;}
.x2e_c01007{left:586.080000px;}
.x4a_c01007{left:587.520000px;}
.x25_c01007{left:596.160000px;}
.x21_c01007{left:597.600000px;}
.xb_c01007{left:619.920000px;}
.x19_c01007{left:630.000000px;}
.x26_c01007{left:639.360000px;}
.x45_c01007{left:641.520000px;}
.x38_c01007{left:651.600000px;}
.xc_c01007{left:663.120000px;}
.x39_c01007{left:673.200000px;}
.x1_c01007{left:689.040000px;}
.xd_c01007{left:695.520000px;}
.x48_c01007{left:707.760000px;}
@media print{
.v2_c01007{vertical-align:-2.560000pt;}
.v0_c01007{vertical-align:0.000000pt;}
.v1_c01007{vertical-align:5.120000pt;}
.v3_c01007{vertical-align:7.680000pt;}
.ls0_c01007{letter-spacing:0.000000pt;}
.ws2_c01007{word-spacing:-4.663467pt;}
.ws0_c01007{word-spacing:-3.616213pt;}
.ws5_c01007{word-spacing:0.000000pt;}
.ws4_c01007{word-spacing:0.239360pt;}
.ws3_c01007{word-spacing:3.672533pt;}
.ws1_c01007{word-spacing:59.862400pt;}
.fsd_c01007{font-size:20.480000pt;}
.fs7_c01007{font-size:30.720000pt;}
.fs8_c01007{font-size:38.400000pt;}
.fs4_c01007{font-size:40.960000pt;}
.fs3_c01007{font-size:43.520000pt;}
.fs6_c01007{font-size:46.080000pt;}
.fsa_c01007{font-size:48.640000pt;}
.fsc_c01007{font-size:51.200000pt;}
.fs2_c01007{font-size:53.760000pt;}
.fs1_c01007{font-size:56.320000pt;}
.fsb_c01007{font-size:58.880000pt;}
.fs5_c01007{font-size:61.440000pt;}
.fs9_c01007{font-size:64.000000pt;}
.fs0_c01007{font-size:66.560000pt;}
.y0_c01007{bottom:0.000000pt;}
.y67_c01007{bottom:46.720000pt;}
.y6a_c01007{bottom:47.360000pt;}
.y6b_c01007{bottom:51.200000pt;}
.y66_c01007{bottom:67.200000pt;}
.y69_c01007{bottom:67.840000pt;}
.y68_c01007{bottom:68.480000pt;}
.y63_c01007{bottom:94.080000pt;}
.y64_c01007{bottom:94.720000pt;}
.y65_c01007{bottom:95.360000pt;}
.y62_c01007{bottom:96.000000pt;}
.y5f_c01007{bottom:131.840000pt;}
.y60_c01007{bottom:132.480000pt;}
.y61_c01007{bottom:134.400000pt;}
.y5e_c01007{bottom:135.040000pt;}
.y5d_c01007{bottom:169.600000pt;}
.y59_c01007{bottom:170.880000pt;}
.y5b_c01007{bottom:172.800000pt;}
.y5a_c01007{bottom:173.440000pt;}
.y5c_c01007{bottom:174.080000pt;}
.y57_c01007{bottom:218.880000pt;}
.y56_c01007{bottom:219.520000pt;}
.y55_c01007{bottom:220.160000pt;}
.y58_c01007{bottom:220.800000pt;}
.y54_c01007{bottom:221.440000pt;}
.y53_c01007{bottom:237.440000pt;}
.y52_c01007{bottom:238.720000pt;}
.y4d_c01007{bottom:276.480000pt;}
.y50_c01007{bottom:277.120000pt;}
.y4f_c01007{bottom:277.760000pt;}
.y4e_c01007{bottom:278.400000pt;}
.y51_c01007{bottom:279.040000pt;}
.y4b_c01007{bottom:296.320000pt;}
.y4c_c01007{bottom:297.600000pt;}
.y4a_c01007{bottom:333.440000pt;}
.y48_c01007{bottom:334.080000pt;}
.y49_c01007{bottom:334.720000pt;}
.y47_c01007{bottom:335.360000pt;}
.y45_c01007{bottom:353.280000pt;}
.y46_c01007{bottom:353.920000pt;}
.y44_c01007{bottom:371.200000pt;}
.y42_c01007{bottom:371.840000pt;}
.y43_c01007{bottom:373.760000pt;}
.y41_c01007{bottom:408.960000pt;}
.y40_c01007{bottom:411.520000pt;}
.y3f_c01007{bottom:412.160000pt;}
.y3d_c01007{bottom:447.360000pt;}
.y3e_c01007{bottom:448.000000pt;}
.y3c_c01007{bottom:449.280000pt;}
.y3b_c01007{bottom:449.920000pt;}
.y39_c01007{bottom:495.360000pt;}
.y3a_c01007{bottom:496.640000pt;}
.y38_c01007{bottom:497.280000pt;}
.y37_c01007{bottom:497.920000pt;}
.y35_c01007{bottom:533.120000pt;}
.y36_c01007{bottom:535.040000pt;}
.y34_c01007{bottom:535.680000pt;}
.y30_c01007{bottom:570.240000pt;}
.y32_c01007{bottom:570.880000pt;}
.y33_c01007{bottom:571.520000pt;}
.y2d_c01007{bottom:572.160000pt;}
.y31_c01007{bottom:572.800000pt;}
.y2f_c01007{bottom:573.440000pt;}
.y2e_c01007{bottom:574.080000pt;}
.y2b_c01007{bottom:609.280000pt;}
.y2c_c01007{bottom:611.200000pt;}
.y2a_c01007{bottom:611.840000pt;}
.y25_c01007{bottom:647.040000pt;}
.y23_c01007{bottom:647.680000pt;}
.y27_c01007{bottom:648.320000pt;}
.y28_c01007{bottom:648.960000pt;}
.y26_c01007{bottom:649.600000pt;}
.y24_c01007{bottom:650.240000pt;}
.y29_c01007{bottom:650.880000pt;}
.y1f_c01007{bottom:685.440000pt;}
.y20_c01007{bottom:686.080000pt;}
.y22_c01007{bottom:686.720000pt;}
.y1e_c01007{bottom:687.360000pt;}
.y21_c01007{bottom:688.000000pt;}
.y1d_c01007{bottom:688.640000pt;}
.y1a_c01007{bottom:723.840000pt;}
.y1b_c01007{bottom:725.120000pt;}
.y1c_c01007{bottom:725.760000pt;}
.y19_c01007{bottom:726.400000pt;}
.y18_c01007{bottom:771.200000pt;}
.y17_c01007{bottom:774.400000pt;}
.y16_c01007{bottom:775.040000pt;}
.y15_c01007{bottom:808.960000pt;}
.y14_c01007{bottom:809.600000pt;}
.y11_c01007{bottom:810.240000pt;}
.y12_c01007{bottom:811.520000pt;}
.y13_c01007{bottom:812.160000pt;}
.yf_c01007{bottom:846.720000pt;}
.y10_c01007{bottom:848.000000pt;}
.yc_c01007{bottom:848.640000pt;}
.ye_c01007{bottom:849.280000pt;}
.yd_c01007{bottom:849.920000pt;}
.yb_c01007{bottom:850.560000pt;}
.ya_c01007{bottom:851.200000pt;}
.y8_c01007{bottom:903.680000pt;}
.y6_c01007{bottom:904.960000pt;}
.y7_c01007{bottom:907.520000pt;}
.y3_c01007{bottom:931.840000pt;}
.y4_c01007{bottom:933.120000pt;}
.y9_c01007{bottom:933.760000pt;}
.y2_c01007{bottom:934.400000pt;}
.y5_c01007{bottom:935.040000pt;}
.y1_c01007{bottom:987.520000pt;}
.h10_c01007{height:18.430000pt;}
.h9_c01007{height:27.645000pt;}
.ha_c01007{height:34.556250pt;}
.h6_c01007{height:36.860000pt;}
.h5_c01007{height:39.163750pt;}
.h8_c01007{height:41.467500pt;}
.hc_c01007{height:43.771250pt;}
.he_c01007{height:46.075000pt;}
.hf_c01007{height:46.843750pt;}
.h4_c01007{height:48.378750pt;}
.h3_c01007{height:50.682500pt;}
.hd_c01007{height:52.986250pt;}
.h7_c01007{height:55.290000pt;}
.hb_c01007{height:57.593750pt;}
.h2_c01007{height:59.897500pt;}
.h1_c01007{height:1032.666667pt;}
.h0_c01007{height:1032.960000pt;}
.w0_c01007{width:691.200000pt;}
.w1_c01007{width:691.333333pt;}
.x0_c01007{left:0.000000pt;}
.x4e_c01007{left:48.000000pt;}
.x27_c01007{left:49.280000pt;}
.x2_c01007{left:50.560000pt;}
.x3f_c01007{left:51.840000pt;}
.x51_c01007{left:69.120000pt;}
.x3d_c01007{left:78.720000pt;}
.x22_c01007{left:88.960000pt;}
.x43_c01007{left:99.840000pt;}
.x28_c01007{left:108.160000pt;}
.x3e_c01007{left:116.480000pt;}
.x3_c01007{left:118.400000pt;}
.x23_c01007{left:126.720000pt;}
.x42_c01007{left:135.040000pt;}
.x1a_c01007{left:136.960000pt;}
.xe_c01007{left:146.560000pt;}
.x49_c01007{left:148.480000pt;}
.x8_c01007{left:155.520000pt;}
.x1b_c01007{left:165.760000pt;}
.x2f_c01007{left:174.720000pt;}
.xf_c01007{left:183.680000pt;}
.x3b_c01007{left:184.960000pt;}
.x1d_c01007{left:193.920000pt;}
.x52_c01007{left:195.840000pt;}
.x4_c01007{left:204.160000pt;}
.x46_c01007{left:205.440000pt;}
.x30_c01007{left:213.120000pt;}
.x10_c01007{left:222.720000pt;}
.x29_c01007{left:232.320000pt;}
.x40_c01007{left:234.240000pt;}
.x9_c01007{left:241.920000pt;}
.x31_c01007{left:245.120000pt;}
.x1c_c01007{left:251.520000pt;}
.x53_c01007{left:253.440000pt;}
.x3a_c01007{left:261.120000pt;}
.x44_c01007{left:262.400000pt;}
.x4f_c01007{left:270.720000pt;}
.x5_c01007{left:280.320000pt;}
.x37_c01007{left:289.920000pt;}
.x41_c01007{left:291.200000pt;}
.x15_c01007{left:299.520000pt;}
.x2a_c01007{left:300.800000pt;}
.x1e_c01007{left:309.120000pt;}
.x54_c01007{left:311.040000pt;}
.x11_c01007{left:318.080000pt;}
.x34_c01007{left:319.360000pt;}
.x6_c01007{left:327.680000pt;}
.x50_c01007{left:338.560000pt;}
.x16_c01007{left:347.520000pt;}
.x32_c01007{left:357.120000pt;}
.x47_c01007{left:358.400000pt;}
.x7_c01007{left:366.720000pt;}
.x12_c01007{left:376.320000pt;}
.x55_c01007{left:377.600000pt;}
.x2b_c01007{left:385.280000pt;}
.x1f_c01007{left:394.240000pt;}
.x17_c01007{left:396.160000pt;}
.x4b_c01007{left:405.120000pt;}
.x13_c01007{left:415.360000pt;}
.x24_c01007{left:424.320000pt;}
.x3c_c01007{left:426.240000pt;}
.x4c_c01007{left:435.200000pt;}
.x18_c01007{left:443.520000pt;}
.x33_c01007{left:444.800000pt;}
.x2c_c01007{left:462.720000pt;}
.xa_c01007{left:464.000000pt;}
.x35_c01007{left:472.320000pt;}
.x20_c01007{left:482.560000pt;}
.x4d_c01007{left:492.160000pt;}
.x2d_c01007{left:493.440000pt;}
.x14_c01007{left:510.720000pt;}
.x36_c01007{left:512.640000pt;}
.x2e_c01007{left:520.960000pt;}
.x4a_c01007{left:522.240000pt;}
.x25_c01007{left:529.920000pt;}
.x21_c01007{left:531.200000pt;}
.xb_c01007{left:551.040000pt;}
.x19_c01007{left:560.000000pt;}
.x26_c01007{left:568.320000pt;}
.x45_c01007{left:570.240000pt;}
.x38_c01007{left:579.200000pt;}
.xc_c01007{left:589.440000pt;}
.x39_c01007{left:598.400000pt;}
.x1_c01007{left:612.480000pt;}
.xd_c01007{left:618.240000pt;}
.x48_c01007{left:629.120000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4d33e08e78fd9b16bc57cdd0.woff2')format("woff");}.ff1_c01008{font-family:ff1_c01008;line-height:1.109863;font-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_c01008{transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);}
.m22_c01008{transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);}
.m41_c01008{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m67_c01008{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);}
.m2c_c01008{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m2f_c01008{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m24_c01008{transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);}
.m3f_c01008{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.me_c01008{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);}
.m47_c01008{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);}
.m4b_c01008{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);}
.m37_c01008{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m10_c01008{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);}
.m34_c01008{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);}
.m56_c01008{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m15_c01008{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m7_c01008{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);}
.m3e_c01008{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m61_c01008{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);}
.m30_c01008{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);}
.m25_c01008{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m32_c01008{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01008{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m8_c01008{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m6_c01008{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mc_c01008{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01008{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m28_c01008{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01008{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m13_c01008{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m43_c01008{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m4_c01008{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m9_c01008{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01008{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1_c01008{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01008{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m31_c01008{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m17_c01008{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01008{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m3_c01008{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);}
.m2b_c01008{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);}
.m45_c01008{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m27_c01008{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);}
.m3b_c01008{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m0_c01008{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);}
.m38_c01008{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m23_c01008{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m19_c01008{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m21_c01008{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);}
.m44_c01008{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01008{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m49_c01008{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m11_c01008{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m29_c01008{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);}
.m40_c01008{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);}
.m3a_c01008{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01008{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);}
.m35_c01008{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01008{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);}
.m39_c01008{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);}
.m18_c01008{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);}
.m48_c01008{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01008{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m4a_c01008{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m12_c01008{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);}
.m53_c01008{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m5f_c01008{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.md_c01008{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01008{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);}
.ma_c01008{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m55_c01008{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m14_c01008{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m5d_c01008{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m36_c01008{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m51_c01008{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);}
.m33_c01008{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m58_c01008{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);}
.m66_c01008{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m59_c01008{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m42_c01008{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);}
.m52_c01008{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m64_c01008{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m54_c01008{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m5a_c01008{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m63_c01008{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.mf_c01008{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);}
.m5b_c01008{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);}
.m2_c01008{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m50_c01008{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m68_c01008{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m5e_c01008{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01008{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01008{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);}
.m5_c01008{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m20_c01008{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);}
.m4f_c01008{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m65_c01008{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m60_c01008{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m57_c01008{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m5c_c01008{transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);}
.m62_c01008{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m16_c01008{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);}
.mb_c01008{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.m46_c01008{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);}
.m1e_c01008{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.m69_c01008{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.v1_c01008{vertical-align:-5.760000px;}
.v2_c01008{vertical-align:-2.880000px;}
.v0_c01008{vertical-align:0.000000px;}
.ls1_c01008{letter-spacing:0.000000px;}
.ls0_c01008{letter-spacing:187.228800px;}
.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;}
}
.ws4_c01008{word-spacing:0.000000px;}
.ws1_c01008{word-spacing:46.451724px;}
.ws0_c01008{word-spacing:48.932400px;}
.ws2_c01008{word-spacing:58.828487px;}
.ws3_c01008{word-spacing:157.265925px;}
.fc0_c01008{color:transparent;}
.fsa_c01008{font-size:8.640000px;}
.fse_c01008{font-size:14.400000px;}
.fsd_c01008{font-size:20.160000px;}
.fs7_c01008{font-size:34.560000px;}
.fs1_c01008{font-size:43.200000px;}
.fs2_c01008{font-size:46.080000px;}
.fs4_c01008{font-size:48.960000px;}
.fs5_c01008{font-size:51.840000px;}
.fs6_c01008{font-size:54.720000px;}
.fs8_c01008{font-size:57.600000px;}
.fs3_c01008{font-size:60.480000px;}
.fsb_c01008{font-size:63.360000px;}
.fs9_c01008{font-size:66.240000px;}
.fsc_c01008{font-size:69.120000px;}
.fs0_c01008{font-size:77.760000px;}
.y0_c01008{bottom:0.000000px;}
.ya2_c01008{bottom:43.920000px;}
.ya4_c01008{bottom:44.640000px;}
.ya3_c01008{bottom:45.360000px;}
.ya5_c01008{bottom:46.080000px;}
.ya1_c01008{bottom:46.800000px;}
.ya6_c01008{bottom:48.240000px;}
.y9d_c01008{bottom:74.880000px;}
.ya0_c01008{bottom:75.600000px;}
.y9f_c01008{bottom:76.320000px;}
.y9c_c01008{bottom:77.760000px;}
.y9e_c01008{bottom:78.480000px;}
.y9b_c01008{bottom:107.280000px;}
.y97_c01008{bottom:108.720000px;}
.y98_c01008{bottom:110.160000px;}
.y99_c01008{bottom:110.880000px;}
.y9a_c01008{bottom:111.600000px;}
.y95_c01008{bottom:140.400000px;}
.y96_c01008{bottom:142.560000px;}
.y94_c01008{bottom:143.280000px;}
.y93_c01008{bottom:144.000000px;}
.y92_c01008{bottom:182.880000px;}
.y8e_c01008{bottom:183.600000px;}
.y91_c01008{bottom:184.320000px;}
.y8f_c01008{bottom:185.760000px;}
.y90_c01008{bottom:189.360000px;}
.y8b_c01008{bottom:206.640000px;}
.y8d_c01008{bottom:207.360000px;}
.y8c_c01008{bottom:208.080000px;}
.y89_c01008{bottom:257.760000px;}
.y87_c01008{bottom:259.920000px;}
.y88_c01008{bottom:260.640000px;}
.y8a_c01008{bottom:261.360000px;}
.y84_c01008{bottom:300.960000px;}
.y85_c01008{bottom:301.680000px;}
.y83_c01008{bottom:303.120000px;}
.y86_c01008{bottom:303.840000px;}
.y81_c01008{bottom:342.720000px;}
.y7f_c01008{bottom:343.440000px;}
.y7c_c01008{bottom:344.160000px;}
.y7e_c01008{bottom:344.880000px;}
.y82_c01008{bottom:345.600000px;}
.y7d_c01008{bottom:346.320000px;}
.y80_c01008{bottom:347.040000px;}
.y78_c01008{bottom:385.920000px;}
.y76_c01008{bottom:386.640000px;}
.y77_c01008{bottom:387.360000px;}
.y7b_c01008{bottom:388.080000px;}
.y7a_c01008{bottom:388.800000px;}
.y79_c01008{bottom:389.520000px;}
.y73_c01008{bottom:429.840000px;}
.y75_c01008{bottom:432.000000px;}
.y74_c01008{bottom:432.720000px;}
.y6e_c01008{bottom:483.840000px;}
.y6f_c01008{bottom:484.560000px;}
.y70_c01008{bottom:485.280000px;}
.y72_c01008{bottom:486.000000px;}
.y71_c01008{bottom:487.440000px;}
.y6d_c01008{bottom:505.440000px;}
.y6b_c01008{bottom:506.160000px;}
.y6a_c01008{bottom:506.880000px;}
.y6c_c01008{bottom:508.320000px;}
.y67_c01008{bottom:527.040000px;}
.y66_c01008{bottom:527.760000px;}
.y69_c01008{bottom:528.480000px;}
.y65_c01008{bottom:529.920000px;}
.y68_c01008{bottom:530.640000px;}
.y61_c01008{bottom:548.640000px;}
.y62_c01008{bottom:549.360000px;}
.y64_c01008{bottom:550.080000px;}
.y63_c01008{bottom:551.520000px;}
.y5d_c01008{bottom:570.240000px;}
.y5f_c01008{bottom:570.960000px;}
.y60_c01008{bottom:572.400000px;}
.y5e_c01008{bottom:573.120000px;}
.y5a_c01008{bottom:591.840000px;}
.y5c_c01008{bottom:592.560000px;}
.y59_c01008{bottom:594.000000px;}
.y5b_c01008{bottom:594.720000px;}
.y57_c01008{bottom:612.720000px;}
.y55_c01008{bottom:613.440000px;}
.y58_c01008{bottom:614.160000px;}
.y56_c01008{bottom:615.600000px;}
.y53_c01008{bottom:634.320000px;}
.y51_c01008{bottom:635.040000px;}
.y54_c01008{bottom:635.760000px;}
.y52_c01008{bottom:637.200000px;}
.y50_c01008{bottom:655.200000px;}
.y4b_c01008{bottom:655.920000px;}
.y4d_c01008{bottom:656.640000px;}
.y4c_c01008{bottom:658.080000px;}
.y4f_c01008{bottom:658.800000px;}
.y4e_c01008{bottom:659.520000px;}
.y47_c01008{bottom:677.520000px;}
.y48_c01008{bottom:678.240000px;}
.y4a_c01008{bottom:678.960000px;}
.y46_c01008{bottom:679.680000px;}
.y49_c01008{bottom:680.400000px;}
.y45_c01008{bottom:698.400000px;}
.y43_c01008{bottom:699.120000px;}
.y44_c01008{bottom:699.840000px;}
.y42_c01008{bottom:700.560000px;}
.y40_c01008{bottom:719.280000px;}
.y41_c01008{bottom:720.000000px;}
.y3e_c01008{bottom:720.720000px;}
.y3f_c01008{bottom:721.440000px;}
.y3d_c01008{bottom:722.880000px;}
.y3b_c01008{bottom:741.600000px;}
.y3a_c01008{bottom:742.320000px;}
.y39_c01008{bottom:743.040000px;}
.y3c_c01008{bottom:743.760000px;}
.y38_c01008{bottom:744.480000px;}
.y35_c01008{bottom:762.480000px;}
.y33_c01008{bottom:763.200000px;}
.y34_c01008{bottom:763.920000px;}
.y36_c01008{bottom:764.640000px;}
.y37_c01008{bottom:765.360000px;}
.y32_c01008{bottom:784.080000px;}
.y30_c01008{bottom:784.800000px;}
.y31_c01008{bottom:786.240000px;}
.y2e_c01008{bottom:804.960000px;}
.y2b_c01008{bottom:805.680000px;}
.y2f_c01008{bottom:807.120000px;}
.y2c_c01008{bottom:807.840000px;}
.y2d_c01008{bottom:808.560000px;}
.y29_c01008{bottom:826.560000px;}
.y28_c01008{bottom:827.280000px;}
.y2a_c01008{bottom:828.720000px;}
.y26_c01008{bottom:847.440000px;}
.y27_c01008{bottom:848.160000px;}
.y25_c01008{bottom:848.880000px;}
.y24_c01008{bottom:850.320000px;}
.y23_c01008{bottom:851.040000px;}
.y21_c01008{bottom:869.040000px;}
.y22_c01008{bottom:869.760000px;}
.y20_c01008{bottom:870.480000px;}
.y1f_c01008{bottom:871.920000px;}
.y1c_c01008{bottom:897.840000px;}
.y1d_c01008{bottom:902.160000px;}
.y1b_c01008{bottom:902.880000px;}
.y1e_c01008{bottom:903.600000px;}
.y1a_c01008{bottom:904.320000px;}
.y19_c01008{bottom:943.920000px;}
.y16_c01008{bottom:944.640000px;}
.y14_c01008{bottom:945.360000px;}
.y18_c01008{bottom:946.080000px;}
.y15_c01008{bottom:946.800000px;}
.y13_c01008{bottom:947.520000px;}
.y17_c01008{bottom:949.680000px;}
.y10_c01008{bottom:975.600000px;}
.y12_c01008{bottom:976.320000px;}
.y11_c01008{bottom:978.480000px;}
.ye_c01008{bottom:979.200000px;}
.yf_c01008{bottom:979.920000px;}
.yd_c01008{bottom:1008.000000px;}
.yb_c01008{bottom:1008.720000px;}
.yc_c01008{bottom:1010.160000px;}
.ya_c01008{bottom:1010.880000px;}
.y9_c01008{bottom:1011.600000px;}
.y8_c01008{bottom:1032.480000px;}
.y7_c01008{bottom:1039.680000px;}
.y6_c01008{bottom:1040.400000px;}
.y4_c01008{bottom:1041.120000px;}
.y5_c01008{bottom:1042.560000px;}
.y2_c01008{bottom:1044.000000px;}
.y3_c01008{bottom:1044.720000px;}
.y1_c01008{bottom:1103.760000px;}
.hd_c01008{height:7.775156px;}
.h11_c01008{height:12.958594px;}
.h10_c01008{height:18.142031px;}
.ha_c01008{height:31.100625px;}
.h3_c01008{height:38.875781px;}
.h9_c01008{height:40.890937px;}
.h4_c01008{height:41.467500px;}
.h6_c01008{height:44.059219px;}
.h7_c01008{height:46.650937px;}
.h8_c01008{height:49.242656px;}
.hb_c01008{height:51.834375px;}
.h5_c01008{height:54.426094px;}
.he_c01008{height:57.017812px;}
.hc_c01008{height:59.609531px;}
.hf_c01008{height:62.201250px;}
.h2_c01008{height:69.976406px;}
.h0_c01008{height:1159.920000px;}
.h1_c01008{height:1160.250000px;}
.w1_c01008{width:773.250000px;}
.w0_c01008{width:773.280000px;}
.x0_c01008{left:0.000000px;}
.x2_c01008{left:51.840000px;}
.x3a_c01008{left:53.280000px;}
.x35_c01008{left:62.640000px;}
.x26_c01008{left:64.080000px;}
.x3_c01008{left:73.440000px;}
.xd_c01008{left:83.520000px;}
.x19_c01008{left:84.960000px;}
.x53_c01008{left:86.400000px;}
.x27_c01008{left:95.040000px;}
.x2c_c01008{left:96.480000px;}
.x39_c01008{left:106.560000px;}
.x3e_c01008{left:108.000000px;}
.xe_c01008{left:117.360000px;}
.x58_c01008{left:118.800000px;}
.x4_c01008{left:128.880000px;}
.x36_c01008{left:138.960000px;}
.x2d_c01008{left:140.400000px;}
.x4e_c01008{left:149.760000px;}
.x5e_c01008{left:151.200000px;}
.x1a_c01008{left:160.560000px;}
.x37_c01008{left:162.000000px;}
.x5f_c01008{left:170.640000px;}
.xf_c01008{left:172.080000px;}
.x1b_c01008{left:180.720000px;}
.x5c_c01008{left:183.600000px;}
.x59_c01008{left:192.960000px;}
.x10_c01008{left:204.480000px;}
.x5_c01008{left:213.120000px;}
.x28_c01008{left:214.560000px;}
.x54_c01008{left:216.000000px;}
.x4a_c01008{left:225.360000px;}
.x5d_c01008{left:226.800000px;}
.x2e_c01008{left:235.440000px;}
.x3d_c01008{left:237.600000px;}
.x11_c01008{left:246.960000px;}
.x50_c01008{left:259.200000px;}
.x45_c01008{left:270.000000px;}
.x20_c01008{left:279.360000px;}
.x2f_c01008{left:280.800000px;}
.x12_c01008{left:290.880000px;}
.x6_c01008{left:300.240000px;}
.x47_c01008{left:301.680000px;}
.x21_c01008{left:311.760000px;}
.x41_c01008{left:313.200000px;}
.x17_c01008{left:321.120000px;}
.x13_c01008{left:322.560000px;}
.x43_c01008{left:324.000000px;}
.x1c_c01008{left:332.640000px;}
.x30_c01008{left:334.800000px;}
.x51_c01008{left:344.880000px;}
.x1d_c01008{left:354.960000px;}
.x42_c01008{left:356.400000px;}
.x7_c01008{left:365.040000px;}
.x14_c01008{left:366.480000px;}
.x46_c01008{left:377.280000px;}
.x22_c01008{left:387.360000px;}
.x31_c01008{left:388.800000px;}
.x5a_c01008{left:399.600000px;}
.x8_c01008{left:407.520000px;}
.x1e_c01008{left:408.960000px;}
.x4b_c01008{left:410.400000px;}
.x52_c01008{left:421.200000px;}
.x15_c01008{left:429.840000px;}
.x29_c01008{left:431.280000px;}
.x48_c01008{left:442.800000px;}
.x55_c01008{left:452.880000px;}
.x33_c01008{left:454.320000px;}
.x9_c01008{left:462.960000px;}
.x3b_c01008{left:464.400000px;}
.x56_c01008{left:475.920000px;}
.x4f_c01008{left:496.800000px;}
.x23_c01008{left:506.880000px;}
.xa_c01008{left:516.960000px;}
.x57_c01008{left:529.200000px;}
.x16_c01008{left:537.840000px;}
.x24_c01008{left:539.280000px;}
.x3f_c01008{left:540.720000px;}
.x2a_c01008{left:550.800000px;}
.x32_c01008{left:561.600000px;}
.xb_c01008{left:570.960000px;}
.x18_c01008{left:572.400000px;}
.x40_c01008{left:584.640000px;}
.x2b_c01008{left:594.720000px;}
.x49_c01008{left:604.800000px;}
.x34_c01008{left:606.960000px;}
.x1f_c01008{left:615.600000px;}
.x3c_c01008{left:617.040000px;}
.xc_c01008{left:626.400000px;}
.x4c_c01008{left:628.560000px;}
.x60_c01008{left:637.920000px;}
.x44_c01008{left:650.160000px;}
.x25_c01008{left:659.520000px;}
.x5b_c01008{left:660.960000px;}
.x1_c01008{left:668.880000px;}
.x4d_c01008{left:670.320000px;}
.x38_c01008{left:693.360000px;}
@media print{
.v1_c01008{vertical-align:-5.120000pt;}
.v2_c01008{vertical-align:-2.560000pt;}
.v0_c01008{vertical-align:0.000000pt;}
.ls1_c01008{letter-spacing:0.000000pt;}
.ls0_c01008{letter-spacing:166.425600pt;}
.ws4_c01008{word-spacing:0.000000pt;}
.ws1_c01008{word-spacing:41.290422pt;}
.ws0_c01008{word-spacing:43.495467pt;}
.ws2_c01008{word-spacing:52.291988pt;}
.ws3_c01008{word-spacing:139.791933pt;}
.fsa_c01008{font-size:7.680000pt;}
.fse_c01008{font-size:12.800000pt;}
.fsd_c01008{font-size:17.920000pt;}
.fs7_c01008{font-size:30.720000pt;}
.fs1_c01008{font-size:38.400000pt;}
.fs2_c01008{font-size:40.960000pt;}
.fs4_c01008{font-size:43.520000pt;}
.fs5_c01008{font-size:46.080000pt;}
.fs6_c01008{font-size:48.640000pt;}
.fs8_c01008{font-size:51.200000pt;}
.fs3_c01008{font-size:53.760000pt;}
.fsb_c01008{font-size:56.320000pt;}
.fs9_c01008{font-size:58.880000pt;}
.fsc_c01008{font-size:61.440000pt;}
.fs0_c01008{font-size:69.120000pt;}
.y0_c01008{bottom:0.000000pt;}
.ya2_c01008{bottom:39.040000pt;}
.ya4_c01008{bottom:39.680000pt;}
.ya3_c01008{bottom:40.320000pt;}
.ya5_c01008{bottom:40.960000pt;}
.ya1_c01008{bottom:41.600000pt;}
.ya6_c01008{bottom:42.880000pt;}
.y9d_c01008{bottom:66.560000pt;}
.ya0_c01008{bottom:67.200000pt;}
.y9f_c01008{bottom:67.840000pt;}
.y9c_c01008{bottom:69.120000pt;}
.y9e_c01008{bottom:69.760000pt;}
.y9b_c01008{bottom:95.360000pt;}
.y97_c01008{bottom:96.640000pt;}
.y98_c01008{bottom:97.920000pt;}
.y99_c01008{bottom:98.560000pt;}
.y9a_c01008{bottom:99.200000pt;}
.y95_c01008{bottom:124.800000pt;}
.y96_c01008{bottom:126.720000pt;}
.y94_c01008{bottom:127.360000pt;}
.y93_c01008{bottom:128.000000pt;}
.y92_c01008{bottom:162.560000pt;}
.y8e_c01008{bottom:163.200000pt;}
.y91_c01008{bottom:163.840000pt;}
.y8f_c01008{bottom:165.120000pt;}
.y90_c01008{bottom:168.320000pt;}
.y8b_c01008{bottom:183.680000pt;}
.y8d_c01008{bottom:184.320000pt;}
.y8c_c01008{bottom:184.960000pt;}
.y89_c01008{bottom:229.120000pt;}
.y87_c01008{bottom:231.040000pt;}
.y88_c01008{bottom:231.680000pt;}
.y8a_c01008{bottom:232.320000pt;}
.y84_c01008{bottom:267.520000pt;}
.y85_c01008{bottom:268.160000pt;}
.y83_c01008{bottom:269.440000pt;}
.y86_c01008{bottom:270.080000pt;}
.y81_c01008{bottom:304.640000pt;}
.y7f_c01008{bottom:305.280000pt;}
.y7c_c01008{bottom:305.920000pt;}
.y7e_c01008{bottom:306.560000pt;}
.y82_c01008{bottom:307.200000pt;}
.y7d_c01008{bottom:307.840000pt;}
.y80_c01008{bottom:308.480000pt;}
.y78_c01008{bottom:343.040000pt;}
.y76_c01008{bottom:343.680000pt;}
.y77_c01008{bottom:344.320000pt;}
.y7b_c01008{bottom:344.960000pt;}
.y7a_c01008{bottom:345.600000pt;}
.y79_c01008{bottom:346.240000pt;}
.y73_c01008{bottom:382.080000pt;}
.y75_c01008{bottom:384.000000pt;}
.y74_c01008{bottom:384.640000pt;}
.y6e_c01008{bottom:430.080000pt;}
.y6f_c01008{bottom:430.720000pt;}
.y70_c01008{bottom:431.360000pt;}
.y72_c01008{bottom:432.000000pt;}
.y71_c01008{bottom:433.280000pt;}
.y6d_c01008{bottom:449.280000pt;}
.y6b_c01008{bottom:449.920000pt;}
.y6a_c01008{bottom:450.560000pt;}
.y6c_c01008{bottom:451.840000pt;}
.y67_c01008{bottom:468.480000pt;}
.y66_c01008{bottom:469.120000pt;}
.y69_c01008{bottom:469.760000pt;}
.y65_c01008{bottom:471.040000pt;}
.y68_c01008{bottom:471.680000pt;}
.y61_c01008{bottom:487.680000pt;}
.y62_c01008{bottom:488.320000pt;}
.y64_c01008{bottom:488.960000pt;}
.y63_c01008{bottom:490.240000pt;}
.y5d_c01008{bottom:506.880000pt;}
.y5f_c01008{bottom:507.520000pt;}
.y60_c01008{bottom:508.800000pt;}
.y5e_c01008{bottom:509.440000pt;}
.y5a_c01008{bottom:526.080000pt;}
.y5c_c01008{bottom:526.720000pt;}
.y59_c01008{bottom:528.000000pt;}
.y5b_c01008{bottom:528.640000pt;}
.y57_c01008{bottom:544.640000pt;}
.y55_c01008{bottom:545.280000pt;}
.y58_c01008{bottom:545.920000pt;}
.y56_c01008{bottom:547.200000pt;}
.y53_c01008{bottom:563.840000pt;}
.y51_c01008{bottom:564.480000pt;}
.y54_c01008{bottom:565.120000pt;}
.y52_c01008{bottom:566.400000pt;}
.y50_c01008{bottom:582.400000pt;}
.y4b_c01008{bottom:583.040000pt;}
.y4d_c01008{bottom:583.680000pt;}
.y4c_c01008{bottom:584.960000pt;}
.y4f_c01008{bottom:585.600000pt;}
.y4e_c01008{bottom:586.240000pt;}
.y47_c01008{bottom:602.240000pt;}
.y48_c01008{bottom:602.880000pt;}
.y4a_c01008{bottom:603.520000pt;}
.y46_c01008{bottom:604.160000pt;}
.y49_c01008{bottom:604.800000pt;}
.y45_c01008{bottom:620.800000pt;}
.y43_c01008{bottom:621.440000pt;}
.y44_c01008{bottom:622.080000pt;}
.y42_c01008{bottom:622.720000pt;}
.y40_c01008{bottom:639.360000pt;}
.y41_c01008{bottom:640.000000pt;}
.y3e_c01008{bottom:640.640000pt;}
.y3f_c01008{bottom:641.280000pt;}
.y3d_c01008{bottom:642.560000pt;}
.y3b_c01008{bottom:659.200000pt;}
.y3a_c01008{bottom:659.840000pt;}
.y39_c01008{bottom:660.480000pt;}
.y3c_c01008{bottom:661.120000pt;}
.y38_c01008{bottom:661.760000pt;}
.y35_c01008{bottom:677.760000pt;}
.y33_c01008{bottom:678.400000pt;}
.y34_c01008{bottom:679.040000pt;}
.y36_c01008{bottom:679.680000pt;}
.y37_c01008{bottom:680.320000pt;}
.y32_c01008{bottom:696.960000pt;}
.y30_c01008{bottom:697.600000pt;}
.y31_c01008{bottom:698.880000pt;}
.y2e_c01008{bottom:715.520000pt;}
.y2b_c01008{bottom:716.160000pt;}
.y2f_c01008{bottom:717.440000pt;}
.y2c_c01008{bottom:718.080000pt;}
.y2d_c01008{bottom:718.720000pt;}
.y29_c01008{bottom:734.720000pt;}
.y28_c01008{bottom:735.360000pt;}
.y2a_c01008{bottom:736.640000pt;}
.y26_c01008{bottom:753.280000pt;}
.y27_c01008{bottom:753.920000pt;}
.y25_c01008{bottom:754.560000pt;}
.y24_c01008{bottom:755.840000pt;}
.y23_c01008{bottom:756.480000pt;}
.y21_c01008{bottom:772.480000pt;}
.y22_c01008{bottom:773.120000pt;}
.y20_c01008{bottom:773.760000pt;}
.y1f_c01008{bottom:775.040000pt;}
.y1c_c01008{bottom:798.080000pt;}
.y1d_c01008{bottom:801.920000pt;}
.y1b_c01008{bottom:802.560000pt;}
.y1e_c01008{bottom:803.200000pt;}
.y1a_c01008{bottom:803.840000pt;}
.y19_c01008{bottom:839.040000pt;}
.y16_c01008{bottom:839.680000pt;}
.y14_c01008{bottom:840.320000pt;}
.y18_c01008{bottom:840.960000pt;}
.y15_c01008{bottom:841.600000pt;}
.y13_c01008{bottom:842.240000pt;}
.y17_c01008{bottom:844.160000pt;}
.y10_c01008{bottom:867.200000pt;}
.y12_c01008{bottom:867.840000pt;}
.y11_c01008{bottom:869.760000pt;}
.ye_c01008{bottom:870.400000pt;}
.yf_c01008{bottom:871.040000pt;}
.yd_c01008{bottom:896.000000pt;}
.yb_c01008{bottom:896.640000pt;}
.yc_c01008{bottom:897.920000pt;}
.ya_c01008{bottom:898.560000pt;}
.y9_c01008{bottom:899.200000pt;}
.y8_c01008{bottom:917.760000pt;}
.y7_c01008{bottom:924.160000pt;}
.y6_c01008{bottom:924.800000pt;}
.y4_c01008{bottom:925.440000pt;}
.y5_c01008{bottom:926.720000pt;}
.y2_c01008{bottom:928.000000pt;}
.y3_c01008{bottom:928.640000pt;}
.y1_c01008{bottom:981.120000pt;}
.hd_c01008{height:6.911250pt;}
.h11_c01008{height:11.518750pt;}
.h10_c01008{height:16.126250pt;}
.ha_c01008{height:27.645000pt;}
.h3_c01008{height:34.556250pt;}
.h9_c01008{height:36.347500pt;}
.h4_c01008{height:36.860000pt;}
.h6_c01008{height:39.163750pt;}
.h7_c01008{height:41.467500pt;}
.h8_c01008{height:43.771250pt;}
.hb_c01008{height:46.075000pt;}
.h5_c01008{height:48.378750pt;}
.he_c01008{height:50.682500pt;}
.hc_c01008{height:52.986250pt;}
.hf_c01008{height:55.290000pt;}
.h2_c01008{height:62.201250pt;}
.h0_c01008{height:1031.040000pt;}
.h1_c01008{height:1031.333333pt;}
.w1_c01008{width:687.333333pt;}
.w0_c01008{width:687.360000pt;}
.x0_c01008{left:0.000000pt;}
.x2_c01008{left:46.080000pt;}
.x3a_c01008{left:47.360000pt;}
.x35_c01008{left:55.680000pt;}
.x26_c01008{left:56.960000pt;}
.x3_c01008{left:65.280000pt;}
.xd_c01008{left:74.240000pt;}
.x19_c01008{left:75.520000pt;}
.x53_c01008{left:76.800000pt;}
.x27_c01008{left:84.480000pt;}
.x2c_c01008{left:85.760000pt;}
.x39_c01008{left:94.720000pt;}
.x3e_c01008{left:96.000000pt;}
.xe_c01008{left:104.320000pt;}
.x58_c01008{left:105.600000pt;}
.x4_c01008{left:114.560000pt;}
.x36_c01008{left:123.520000pt;}
.x2d_c01008{left:124.800000pt;}
.x4e_c01008{left:133.120000pt;}
.x5e_c01008{left:134.400000pt;}
.x1a_c01008{left:142.720000pt;}
.x37_c01008{left:144.000000pt;}
.x5f_c01008{left:151.680000pt;}
.xf_c01008{left:152.960000pt;}
.x1b_c01008{left:160.640000pt;}
.x5c_c01008{left:163.200000pt;}
.x59_c01008{left:171.520000pt;}
.x10_c01008{left:181.760000pt;}
.x5_c01008{left:189.440000pt;}
.x28_c01008{left:190.720000pt;}
.x54_c01008{left:192.000000pt;}
.x4a_c01008{left:200.320000pt;}
.x5d_c01008{left:201.600000pt;}
.x2e_c01008{left:209.280000pt;}
.x3d_c01008{left:211.200000pt;}
.x11_c01008{left:219.520000pt;}
.x50_c01008{left:230.400000pt;}
.x45_c01008{left:240.000000pt;}
.x20_c01008{left:248.320000pt;}
.x2f_c01008{left:249.600000pt;}
.x12_c01008{left:258.560000pt;}
.x6_c01008{left:266.880000pt;}
.x47_c01008{left:268.160000pt;}
.x21_c01008{left:277.120000pt;}
.x41_c01008{left:278.400000pt;}
.x17_c01008{left:285.440000pt;}
.x13_c01008{left:286.720000pt;}
.x43_c01008{left:288.000000pt;}
.x1c_c01008{left:295.680000pt;}
.x30_c01008{left:297.600000pt;}
.x51_c01008{left:306.560000pt;}
.x1d_c01008{left:315.520000pt;}
.x42_c01008{left:316.800000pt;}
.x7_c01008{left:324.480000pt;}
.x14_c01008{left:325.760000pt;}
.x46_c01008{left:335.360000pt;}
.x22_c01008{left:344.320000pt;}
.x31_c01008{left:345.600000pt;}
.x5a_c01008{left:355.200000pt;}
.x8_c01008{left:362.240000pt;}
.x1e_c01008{left:363.520000pt;}
.x4b_c01008{left:364.800000pt;}
.x52_c01008{left:374.400000pt;}
.x15_c01008{left:382.080000pt;}
.x29_c01008{left:383.360000pt;}
.x48_c01008{left:393.600000pt;}
.x55_c01008{left:402.560000pt;}
.x33_c01008{left:403.840000pt;}
.x9_c01008{left:411.520000pt;}
.x3b_c01008{left:412.800000pt;}
.x56_c01008{left:423.040000pt;}
.x4f_c01008{left:441.600000pt;}
.x23_c01008{left:450.560000pt;}
.xa_c01008{left:459.520000pt;}
.x57_c01008{left:470.400000pt;}
.x16_c01008{left:478.080000pt;}
.x24_c01008{left:479.360000pt;}
.x3f_c01008{left:480.640000pt;}
.x2a_c01008{left:489.600000pt;}
.x32_c01008{left:499.200000pt;}
.xb_c01008{left:507.520000pt;}
.x18_c01008{left:508.800000pt;}
.x40_c01008{left:519.680000pt;}
.x2b_c01008{left:528.640000pt;}
.x49_c01008{left:537.600000pt;}
.x34_c01008{left:539.520000pt;}
.x1f_c01008{left:547.200000pt;}
.x3c_c01008{left:548.480000pt;}
.xc_c01008{left:556.800000pt;}
.x4c_c01008{left:558.720000pt;}
.x60_c01008{left:567.040000pt;}
.x44_c01008{left:577.920000pt;}
.x25_c01008{left:586.240000pt;}
.x5b_c01008{left:587.520000pt;}
.x1_c01008{left:594.560000pt;}
.x4d_c01008{left:595.840000pt;}
.x38_c01008{left:616.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4534a8321e7596fb4f01d79b.woff2')format("woff");}.ff1_c01009{font-family:ff1_c01009;line-height:1.109863;font-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_c01009{transform:matrix(0.153400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153400,0.000000,0.000000,0.250000,0,0);}
.m35_c01009{transform:matrix(0.166175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166175,0.000000,0.000000,0.250000,0,0);}
.m36_c01009{transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);}
.m20_c01009{transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);}
.m37_c01009{transform:matrix(0.234700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234700,0.000000,0.000000,0.250000,0,0);}
.m2c_c01009{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m4_c01009{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m9_c01009{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m3_c01009{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);}
.m3a_c01009{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_c01009{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m38_c01009{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);}
.m25_c01009{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.me_c01009{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_c01009{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m6_c01009{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);}
.m2b_c01009{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_c01009{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m46_c01009{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m7_c01009{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);}
.m4f_c01009{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01009{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01009{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mc_c01009{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m44_c01009{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.md_c01009{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m11_c01009{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m32_c01009{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m10_c01009{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m5_c01009{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m48_c01009{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m39_c01009{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m0_c01009{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m16_c01009{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m18_c01009{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m12_c01009{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m21_c01009{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m29_c01009{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.ma_c01009{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_c01009{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m27_c01009{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.mb_c01009{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);}
.m3e_c01009{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m22_c01009{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);}
.m45_c01009{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01009{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m19_c01009{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1_c01009{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m15_c01009{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);}
.m1d_c01009{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01009{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);}
.m26_c01009{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);}
.m1c_c01009{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m31_c01009{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m13_c01009{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m57_c01009{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);}
.m28_c01009{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01009{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);}
.m60_c01009{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m23_c01009{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01009{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m5c_c01009{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m69_c01009{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);}
.m17_c01009{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01009{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);}
.m40_c01009{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m34_c01009{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m52_c01009{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01009{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);}
.m30_c01009{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);}
.m1e_c01009{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01009{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01009{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m24_c01009{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m4a_c01009{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m66_c01009{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m56_c01009{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m49_c01009{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m5f_c01009{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m43_c01009{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m5e_c01009{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01009{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);}
.m5a_c01009{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m62_c01009{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m63_c01009{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m47_c01009{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01009{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m65_c01009{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);}
.m5d_c01009{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m68_c01009{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m54_c01009{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);}
.m50_c01009{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m59_c01009{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);}
.m67_c01009{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m42_c01009{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m58_c01009{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m55_c01009{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);}
.m41_c01009{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m5b_c01009{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);}
.m61_c01009{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m51_c01009{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01009{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m64_c01009{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.m53_c01009{transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01009{transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);}
.m6b_c01009{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);}
.m14_c01009{transform:matrix(0.785000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.785000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.785000,0.000000,0.000000,0.250000,0,0);}
.m6a_c01009{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.v0_c01009{vertical-align:0.000000px;}
.v1_c01009{vertical-align:2.880000px;}
.ls0_c01009{letter-spacing:0.000000px;}
.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;}
}
.ws2_c01009{word-spacing:0.000000px;}
.ws1_c01009{word-spacing:0.262800px;}
.ws0_c01009{word-spacing:39.978720px;}
.fc0_c01009{color:transparent;}
.fse_c01009{font-size:11.520000px;}
.fsc_c01009{font-size:23.040000px;}
.fsa_c01009{font-size:34.560000px;}
.fsd_c01009{font-size:37.440000px;}
.fsb_c01009{font-size:43.200000px;}
.fs4_c01009{font-size:46.080000px;}
.fs0_c01009{font-size:48.960000px;}
.fs1_c01009{font-size:51.840000px;}
.fs5_c01009{font-size:54.720000px;}
.fs6_c01009{font-size:57.600000px;}
.fs3_c01009{font-size:60.480000px;}
.fs2_c01009{font-size:63.360000px;}
.fs7_c01009{font-size:66.240000px;}
.fs9_c01009{font-size:69.120000px;}
.fs8_c01009{font-size:72.000000px;}
.y0_c01009{bottom:0.000000px;}
.y99_c01009{bottom:64.800000px;}
.y96_c01009{bottom:95.040000px;}
.y71_c01009{bottom:95.760000px;}
.y6e_c01009{bottom:96.480000px;}
.y70_c01009{bottom:97.200000px;}
.y6f_c01009{bottom:97.920000px;}
.y6d_c01009{bottom:98.640000px;}
.y6c_c01009{bottom:127.440000px;}
.y64_c01009{bottom:128.160000px;}
.y95_c01009{bottom:128.880000px;}
.y98_c01009{bottom:129.600000px;}
.y94_c01009{bottom:130.320000px;}
.y63_c01009{bottom:131.040000px;}
.y97_c01009{bottom:159.840000px;}
.y62_c01009{bottom:160.560000px;}
.y6b_c01009{bottom:162.000000px;}
.y6a_c01009{bottom:162.720000px;}
.y73_c01009{bottom:163.440000px;}
.y93_c01009{bottom:165.600000px;}
.y92_c01009{bottom:192.240000px;}
.y69_c01009{bottom:192.960000px;}
.y61_c01009{bottom:193.680000px;}
.y72_c01009{bottom:194.400000px;}
.y91_c01009{bottom:195.120000px;}
.y60_c01009{bottom:195.840000px;}
.y5f_c01009{bottom:236.160000px;}
.y68_c01009{bottom:238.320000px;}
.y75_c01009{bottom:239.040000px;}
.y74_c01009{bottom:241.200000px;}
.y5d_c01009{bottom:259.920000px;}
.y5e_c01009{bottom:260.640000px;}
.y66_c01009{bottom:300.240000px;}
.y65_c01009{bottom:302.400000px;}
.y67_c01009{bottom:303.120000px;}
.y8f_c01009{bottom:342.720000px;}
.y8e_c01009{bottom:345.600000px;}
.y90_c01009{bottom:346.320000px;}
.y8c_c01009{bottom:385.920000px;}
.y8b_c01009{bottom:388.800000px;}
.y8d_c01009{bottom:389.520000px;}
.y88_c01009{bottom:429.120000px;}
.y86_c01009{bottom:429.840000px;}
.y89_c01009{bottom:430.560000px;}
.y8a_c01009{bottom:431.280000px;}
.y87_c01009{bottom:432.000000px;}
.y85_c01009{bottom:432.720000px;}
.y82_c01009{bottom:471.600000px;}
.y7f_c01009{bottom:472.320000px;}
.y81_c01009{bottom:473.040000px;}
.y83_c01009{bottom:473.760000px;}
.y84_c01009{bottom:474.480000px;}
.y80_c01009{bottom:475.200000px;}
.y7e_c01009{bottom:514.800000px;}
.y7c_c01009{bottom:515.520000px;}
.y7b_c01009{bottom:517.680000px;}
.y7d_c01009{bottom:518.400000px;}
.y78_c01009{bottom:557.280000px;}
.y79_c01009{bottom:558.000000px;}
.y7a_c01009{bottom:559.440000px;}
.y77_c01009{bottom:560.160000px;}
.y76_c01009{bottom:560.880000px;}
.y5c_c01009{bottom:600.480000px;}
.y5b_c01009{bottom:602.640000px;}
.y5a_c01009{bottom:603.360000px;}
.y15_c01009{bottom:654.480000px;}
.y2e_c01009{bottom:655.200000px;}
.y55_c01009{bottom:655.920000px;}
.y58_c01009{bottom:656.640000px;}
.y4e_c01009{bottom:657.360000px;}
.y2d_c01009{bottom:676.080000px;}
.y14_c01009{bottom:676.800000px;}
.y57_c01009{bottom:678.240000px;}
.y4d_c01009{bottom:678.960000px;}
.y47_c01009{bottom:679.680000px;}
.y2c_c01009{bottom:697.680000px;}
.y41_c01009{bottom:698.400000px;}
.y2b_c01009{bottom:699.120000px;}
.y13_c01009{bottom:699.840000px;}
.y4c_c01009{bottom:700.560000px;}
.y46_c01009{bottom:701.280000px;}
.y12_c01009{bottom:719.280000px;}
.y40_c01009{bottom:720.000000px;}
.y11_c01009{bottom:740.160000px;}
.y2a_c01009{bottom:740.880000px;}
.y3f_c01009{bottom:741.600000px;}
.y29_c01009{bottom:743.040000px;}
.y54_c01009{bottom:743.760000px;}
.y3d_c01009{bottom:761.760000px;}
.y10_c01009{bottom:762.480000px;}
.y3e_c01009{bottom:763.200000px;}
.y28_c01009{bottom:764.640000px;}
.y27_c01009{bottom:765.360000px;}
.y26_c01009{bottom:783.360000px;}
.y3c_c01009{bottom:784.080000px;}
.yf_c01009{bottom:786.240000px;}
.y53_c01009{bottom:786.960000px;}
.y25_c01009{bottom:804.960000px;}
.ye_c01009{bottom:805.680000px;}
.y3b_c01009{bottom:806.400000px;}
.y45_c01009{bottom:807.840000px;}
.yd_c01009{bottom:826.560000px;}
.y3a_c01009{bottom:827.280000px;}
.y39_c01009{bottom:828.720000px;}
.y44_c01009{bottom:829.440000px;}
.y38_c01009{bottom:848.160000px;}
.y24_c01009{bottom:848.880000px;}
.yc_c01009{bottom:850.320000px;}
.y52_c01009{bottom:851.040000px;}
.y23_c01009{bottom:869.760000px;}
.y22_c01009{bottom:870.480000px;}
.yb_c01009{bottom:871.920000px;}
.y56_c01009{bottom:872.640000px;}
.y4b_c01009{bottom:890.640000px;}
.y36_c01009{bottom:891.360000px;}
.y37_c01009{bottom:892.080000px;}
.y20_c01009{bottom:892.800000px;}
.y21_c01009{bottom:893.520000px;}
.ya_c01009{bottom:894.240000px;}
.y9_c01009{bottom:912.240000px;}
.y35_c01009{bottom:912.960000px;}
.y1f_c01009{bottom:913.680000px;}
.y43_c01009{bottom:914.400000px;}
.y34_c01009{bottom:933.840000px;}
.y8_c01009{bottom:934.560000px;}
.y59_c01009{bottom:935.280000px;}
.y42_c01009{bottom:936.000000px;}
.y1e_c01009{bottom:936.720000px;}
.y1d_c01009{bottom:955.440000px;}
.y7_c01009{bottom:956.160000px;}
.y1c_c01009{bottom:956.880000px;}
.y4a_c01009{bottom:957.600000px;}
.y32_c01009{bottom:958.320000px;}
.y19_c01009{bottom:977.040000px;}
.y6_c01009{bottom:977.760000px;}
.y1a_c01009{bottom:979.200000px;}
.y1b_c01009{bottom:979.920000px;}
.y33_c01009{bottom:997.920000px;}
.y18_c01009{bottom:998.640000px;}
.y17_c01009{bottom:999.360000px;}
.y49_c01009{bottom:1000.080000px;}
.y31_c01009{bottom:1000.800000px;}
.y5_c01009{bottom:1001.520000px;}
.y48_c01009{bottom:1018.800000px;}
.y30_c01009{bottom:1019.520000px;}
.y16_c01009{bottom:1020.240000px;}
.y4_c01009{bottom:1022.400000px;}
.y2f_c01009{bottom:1051.920000px;}
.y3_c01009{bottom:1052.640000px;}
.y2_c01009{bottom:1053.360000px;}
.y1_c01009{bottom:1054.080000px;}
.y50_c01009{bottom:1108.080000px;}
.y4f_c01009{bottom:1108.800000px;}
.y51_c01009{bottom:1111.680000px;}
.h11_c01009{height:10.366875px;}
.he_c01009{height:20.733750px;}
.hc_c01009{height:31.100625px;}
.hf_c01009{height:33.692344px;}
.hd_c01009{height:38.875781px;}
.h6_c01009{height:41.467500px;}
.h2_c01009{height:44.059219px;}
.h3_c01009{height:46.650937px;}
.h10_c01009{height:46.939219px;}
.h7_c01009{height:49.242656px;}
.h8_c01009{height:51.834375px;}
.h5_c01009{height:54.426094px;}
.h4_c01009{height:57.017812px;}
.h9_c01009{height:59.609531px;}
.hb_c01009{height:62.201250px;}
.ha_c01009{height:64.792969px;}
.h1_c01009{height:1161.750000px;}
.h0_c01009{height:1162.080000px;}
.w0_c01009{width:777.600000px;}
.w1_c01009{width:777.750000px;}
.x0_c01009{left:0.000000px;}
.x56_c01009{left:54.720000px;}
.x1_c01009{left:56.160000px;}
.x6_c01009{left:57.600000px;}
.x5_c01009{left:67.680000px;}
.x55_c01009{left:77.040000px;}
.x38_c01009{left:78.480000px;}
.x2_c01009{left:88.560000px;}
.x7_c01009{left:99.360630px;}
.xa_c01009{left:100.800000px;}
.x9_c01009{left:109.440000px;}
.xd_c01009{left:110.880000px;}
.x39_c01009{left:120.960000px;}
.x3f_c01009{left:123.120000px;}
.xc_c01009{left:132.480000px;}
.x8_c01009{left:142.560000px;}
.xb_c01009{left:144.000000px;}
.x57_c01009{left:146.880000px;}
.x37_c01009{left:153.360000px;}
.x40_c01009{left:155.520000px;}
.x3_c01009{left:164.880000px;}
.x31_c01009{left:166.320000px;}
.x3a_c01009{left:174.960000px;}
.x3d_c01009{left:176.400000px;}
.x58_c01009{left:185.760000px;}
.x4b_c01009{left:187.920000px;}
.x32_c01009{left:196.560000px;}
.x3e_c01009{left:198.720000px;}
.x4_c01009{left:207.360000px;}
.x17_c01009{left:208.800000px;}
.x12_c01009{left:218.160000px;}
.x3c_c01009{left:219.600000px;}
.x13_c01009{left:231.120000px;}
.x14_c01009{left:239.760000px;}
.x15_c01009{left:241.200000px;}
.x46_c01009{left:250.560000px;}
.x3b_c01009{left:252.720000px;}
.x5c_c01009{left:262.080000px;}
.x4c_c01009{left:272.880000px;}
.xe_c01009{left:282.960000px;}
.x16_c01009{left:284.400000px;}
.x59_c01009{left:294.480000px;}
.x41_c01009{left:295.920000px;}
.x4d_c01009{left:305.280000px;}
.xf_c01009{left:315.360000px;}
.x18_c01009{left:326.160000px;}
.x1a_c01009{left:327.600000px;}
.x19_c01009{left:336.960000px;}
.x1b_c01009{left:338.399625px;}
.x33_c01009{left:348.480000px;}
.x43_c01009{left:360.000000px;}
.x1c_c01009{left:369.360000px;}
.x1e_c01009{left:370.800000px;}
.x34_c01009{left:380.160000px;}
.x42_c01009{left:382.320000px;}
.x10_c01009{left:390.960000px;}
.x1d_c01009{left:392.400000px;}
.x47_c01009{left:401.760000px;}
.x5a_c01009{left:413.280000px;}
.x35_c01009{left:423.360000px;}
.x44_c01009{left:425.520000px;}
.x11_c01009{left:434.160000px;}
.x20_c01009{left:435.600000px;}
.x52_c01009{left:444.960000px;}
.x48_c01009{left:447.120000px;}
.x5e_c01009{left:456.480000px;}
.x1f_c01009{left:467.280000px;}
.x5d_c01009{left:477.360000px;}
.x45_c01009{left:490.320000px;}
.x49_c01009{left:498.960000px;}
.x21_c01009{left:509.760000px;}
.x2b_c01009{left:511.200000px;}
.x36_c01009{left:520.560000px;}
.x4e_c01009{left:531.360000px;}
.x22_c01009{left:542.160000px;}
.x2c_c01009{left:544.320000px;}
.x2a_c01009{left:552.960000px;}
.x28_c01009{left:554.400000px;}
.x29_c01009{left:565.200000px;}
.x4f_c01009{left:575.280000px;}
.x4a_c01009{left:576.720000px;}
.x2f_c01009{left:587.520000px;}
.x2e_c01009{left:596.880000px;}
.x2d_c01009{left:598.320000px;}
.x53_c01009{left:608.400000px;}
.x23_c01009{left:619.200000px;}
.x61_c01009{left:631.440000px;}
.x50_c01009{left:641.520000px;}
.x62_c01009{left:642.960000px;}
.x30_c01009{left:653.040000px;}
.x27_c01009{left:663.120000px;}
.x5b_c01009{left:664.560000px;}
.x51_c01009{left:675.360000px;}
.x24_c01009{left:680.400000px;}
.x54_c01009{left:684.720000px;}
.x5f_c01009{left:697.680000px;}
.x25_c01009{left:699.840000px;}
.x60_c01009{left:708.480000px;}
.x26_c01009{left:716.400000px;}
@media print{
.v0_c01009{vertical-align:0.000000pt;}
.v1_c01009{vertical-align:2.560000pt;}
.ls0_c01009{letter-spacing:0.000000pt;}
.ws2_c01009{word-spacing:0.000000pt;}
.ws1_c01009{word-spacing:0.233600pt;}
.ws0_c01009{word-spacing:35.536640pt;}
.fse_c01009{font-size:10.240000pt;}
.fsc_c01009{font-size:20.480000pt;}
.fsa_c01009{font-size:30.720000pt;}
.fsd_c01009{font-size:33.280000pt;}
.fsb_c01009{font-size:38.400000pt;}
.fs4_c01009{font-size:40.960000pt;}
.fs0_c01009{font-size:43.520000pt;}
.fs1_c01009{font-size:46.080000pt;}
.fs5_c01009{font-size:48.640000pt;}
.fs6_c01009{font-size:51.200000pt;}
.fs3_c01009{font-size:53.760000pt;}
.fs2_c01009{font-size:56.320000pt;}
.fs7_c01009{font-size:58.880000pt;}
.fs9_c01009{font-size:61.440000pt;}
.fs8_c01009{font-size:64.000000pt;}
.y0_c01009{bottom:0.000000pt;}
.y99_c01009{bottom:57.600000pt;}
.y96_c01009{bottom:84.480000pt;}
.y71_c01009{bottom:85.120000pt;}
.y6e_c01009{bottom:85.760000pt;}
.y70_c01009{bottom:86.400000pt;}
.y6f_c01009{bottom:87.040000pt;}
.y6d_c01009{bottom:87.680000pt;}
.y6c_c01009{bottom:113.280000pt;}
.y64_c01009{bottom:113.920000pt;}
.y95_c01009{bottom:114.560000pt;}
.y98_c01009{bottom:115.200000pt;}
.y94_c01009{bottom:115.840000pt;}
.y63_c01009{bottom:116.480000pt;}
.y97_c01009{bottom:142.080000pt;}
.y62_c01009{bottom:142.720000pt;}
.y6b_c01009{bottom:144.000000pt;}
.y6a_c01009{bottom:144.640000pt;}
.y73_c01009{bottom:145.280000pt;}
.y93_c01009{bottom:147.200000pt;}
.y92_c01009{bottom:170.880000pt;}
.y69_c01009{bottom:171.520000pt;}
.y61_c01009{bottom:172.160000pt;}
.y72_c01009{bottom:172.800000pt;}
.y91_c01009{bottom:173.440000pt;}
.y60_c01009{bottom:174.080000pt;}
.y5f_c01009{bottom:209.920000pt;}
.y68_c01009{bottom:211.840000pt;}
.y75_c01009{bottom:212.480000pt;}
.y74_c01009{bottom:214.400000pt;}
.y5d_c01009{bottom:231.040000pt;}
.y5e_c01009{bottom:231.680000pt;}
.y66_c01009{bottom:266.880000pt;}
.y65_c01009{bottom:268.800000pt;}
.y67_c01009{bottom:269.440000pt;}
.y8f_c01009{bottom:304.640000pt;}
.y8e_c01009{bottom:307.200000pt;}
.y90_c01009{bottom:307.840000pt;}
.y8c_c01009{bottom:343.040000pt;}
.y8b_c01009{bottom:345.600000pt;}
.y8d_c01009{bottom:346.240000pt;}
.y88_c01009{bottom:381.440000pt;}
.y86_c01009{bottom:382.080000pt;}
.y89_c01009{bottom:382.720000pt;}
.y8a_c01009{bottom:383.360000pt;}
.y87_c01009{bottom:384.000000pt;}
.y85_c01009{bottom:384.640000pt;}
.y82_c01009{bottom:419.200000pt;}
.y7f_c01009{bottom:419.840000pt;}
.y81_c01009{bottom:420.480000pt;}
.y83_c01009{bottom:421.120000pt;}
.y84_c01009{bottom:421.760000pt;}
.y80_c01009{bottom:422.400000pt;}
.y7e_c01009{bottom:457.600000pt;}
.y7c_c01009{bottom:458.240000pt;}
.y7b_c01009{bottom:460.160000pt;}
.y7d_c01009{bottom:460.800000pt;}
.y78_c01009{bottom:495.360000pt;}
.y79_c01009{bottom:496.000000pt;}
.y7a_c01009{bottom:497.280000pt;}
.y77_c01009{bottom:497.920000pt;}
.y76_c01009{bottom:498.560000pt;}
.y5c_c01009{bottom:533.760000pt;}
.y5b_c01009{bottom:535.680000pt;}
.y5a_c01009{bottom:536.320000pt;}
.y15_c01009{bottom:581.760000pt;}
.y2e_c01009{bottom:582.400000pt;}
.y55_c01009{bottom:583.040000pt;}
.y58_c01009{bottom:583.680000pt;}
.y4e_c01009{bottom:584.320000pt;}
.y2d_c01009{bottom:600.960000pt;}
.y14_c01009{bottom:601.600000pt;}
.y57_c01009{bottom:602.880000pt;}
.y4d_c01009{bottom:603.520000pt;}
.y47_c01009{bottom:604.160000pt;}
.y2c_c01009{bottom:620.160000pt;}
.y41_c01009{bottom:620.800000pt;}
.y2b_c01009{bottom:621.440000pt;}
.y13_c01009{bottom:622.080000pt;}
.y4c_c01009{bottom:622.720000pt;}
.y46_c01009{bottom:623.360000pt;}
.y12_c01009{bottom:639.360000pt;}
.y40_c01009{bottom:640.000000pt;}
.y11_c01009{bottom:657.920000pt;}
.y2a_c01009{bottom:658.560000pt;}
.y3f_c01009{bottom:659.200000pt;}
.y29_c01009{bottom:660.480000pt;}
.y54_c01009{bottom:661.120000pt;}
.y3d_c01009{bottom:677.120000pt;}
.y10_c01009{bottom:677.760000pt;}
.y3e_c01009{bottom:678.400000pt;}
.y28_c01009{bottom:679.680000pt;}
.y27_c01009{bottom:680.320000pt;}
.y26_c01009{bottom:696.320000pt;}
.y3c_c01009{bottom:696.960000pt;}
.yf_c01009{bottom:698.880000pt;}
.y53_c01009{bottom:699.520000pt;}
.y25_c01009{bottom:715.520000pt;}
.ye_c01009{bottom:716.160000pt;}
.y3b_c01009{bottom:716.800000pt;}
.y45_c01009{bottom:718.080000pt;}
.yd_c01009{bottom:734.720000pt;}
.y3a_c01009{bottom:735.360000pt;}
.y39_c01009{bottom:736.640000pt;}
.y44_c01009{bottom:737.280000pt;}
.y38_c01009{bottom:753.920000pt;}
.y24_c01009{bottom:754.560000pt;}
.yc_c01009{bottom:755.840000pt;}
.y52_c01009{bottom:756.480000pt;}
.y23_c01009{bottom:773.120000pt;}
.y22_c01009{bottom:773.760000pt;}
.yb_c01009{bottom:775.040000pt;}
.y56_c01009{bottom:775.680000pt;}
.y4b_c01009{bottom:791.680000pt;}
.y36_c01009{bottom:792.320000pt;}
.y37_c01009{bottom:792.960000pt;}
.y20_c01009{bottom:793.600000pt;}
.y21_c01009{bottom:794.240000pt;}
.ya_c01009{bottom:794.880000pt;}
.y9_c01009{bottom:810.880000pt;}
.y35_c01009{bottom:811.520000pt;}
.y1f_c01009{bottom:812.160000pt;}
.y43_c01009{bottom:812.800000pt;}
.y34_c01009{bottom:830.080000pt;}
.y8_c01009{bottom:830.720000pt;}
.y59_c01009{bottom:831.360000pt;}
.y42_c01009{bottom:832.000000pt;}
.y1e_c01009{bottom:832.640000pt;}
.y1d_c01009{bottom:849.280000pt;}
.y7_c01009{bottom:849.920000pt;}
.y1c_c01009{bottom:850.560000pt;}
.y4a_c01009{bottom:851.200000pt;}
.y32_c01009{bottom:851.840000pt;}
.y19_c01009{bottom:868.480000pt;}
.y6_c01009{bottom:869.120000pt;}
.y1a_c01009{bottom:870.400000pt;}
.y1b_c01009{bottom:871.040000pt;}
.y33_c01009{bottom:887.040000pt;}
.y18_c01009{bottom:887.680000pt;}
.y17_c01009{bottom:888.320000pt;}
.y49_c01009{bottom:888.960000pt;}
.y31_c01009{bottom:889.600000pt;}
.y5_c01009{bottom:890.240000pt;}
.y48_c01009{bottom:905.600000pt;}
.y30_c01009{bottom:906.240000pt;}
.y16_c01009{bottom:906.880000pt;}
.y4_c01009{bottom:908.800000pt;}
.y2f_c01009{bottom:935.040000pt;}
.y3_c01009{bottom:935.680000pt;}
.y2_c01009{bottom:936.320000pt;}
.y1_c01009{bottom:936.960000pt;}
.y50_c01009{bottom:984.960000pt;}
.y4f_c01009{bottom:985.600000pt;}
.y51_c01009{bottom:988.160000pt;}
.h11_c01009{height:9.215000pt;}
.he_c01009{height:18.430000pt;}
.hc_c01009{height:27.645000pt;}
.hf_c01009{height:29.948750pt;}
.hd_c01009{height:34.556250pt;}
.h6_c01009{height:36.860000pt;}
.h2_c01009{height:39.163750pt;}
.h3_c01009{height:41.467500pt;}
.h10_c01009{height:41.723750pt;}
.h7_c01009{height:43.771250pt;}
.h8_c01009{height:46.075000pt;}
.h5_c01009{height:48.378750pt;}
.h4_c01009{height:50.682500pt;}
.h9_c01009{height:52.986250pt;}
.hb_c01009{height:55.290000pt;}
.ha_c01009{height:57.593750pt;}
.h1_c01009{height:1032.666667pt;}
.h0_c01009{height:1032.960000pt;}
.w0_c01009{width:691.200000pt;}
.w1_c01009{width:691.333333pt;}
.x0_c01009{left:0.000000pt;}
.x56_c01009{left:48.640000pt;}
.x1_c01009{left:49.920000pt;}
.x6_c01009{left:51.200000pt;}
.x5_c01009{left:60.160000pt;}
.x55_c01009{left:68.480000pt;}
.x38_c01009{left:69.760000pt;}
.x2_c01009{left:78.720000pt;}
.x7_c01009{left:88.320560pt;}
.xa_c01009{left:89.600000pt;}
.x9_c01009{left:97.280000pt;}
.xd_c01009{left:98.560000pt;}
.x39_c01009{left:107.520000pt;}
.x3f_c01009{left:109.440000pt;}
.xc_c01009{left:117.760000pt;}
.x8_c01009{left:126.720000pt;}
.xb_c01009{left:128.000000pt;}
.x57_c01009{left:130.560000pt;}
.x37_c01009{left:136.320000pt;}
.x40_c01009{left:138.240000pt;}
.x3_c01009{left:146.560000pt;}
.x31_c01009{left:147.840000pt;}
.x3a_c01009{left:155.520000pt;}
.x3d_c01009{left:156.800000pt;}
.x58_c01009{left:165.120000pt;}
.x4b_c01009{left:167.040000pt;}
.x32_c01009{left:174.720000pt;}
.x3e_c01009{left:176.640000pt;}
.x4_c01009{left:184.320000pt;}
.x17_c01009{left:185.600000pt;}
.x12_c01009{left:193.920000pt;}
.x3c_c01009{left:195.200000pt;}
.x13_c01009{left:205.440000pt;}
.x14_c01009{left:213.120000pt;}
.x15_c01009{left:214.400000pt;}
.x46_c01009{left:222.720000pt;}
.x3b_c01009{left:224.640000pt;}
.x5c_c01009{left:232.960000pt;}
.x4c_c01009{left:242.560000pt;}
.xe_c01009{left:251.520000pt;}
.x16_c01009{left:252.800000pt;}
.x59_c01009{left:261.760000pt;}
.x41_c01009{left:263.040000pt;}
.x4d_c01009{left:271.360000pt;}
.xf_c01009{left:280.320000pt;}
.x18_c01009{left:289.920000pt;}
.x1a_c01009{left:291.200000pt;}
.x19_c01009{left:299.520000pt;}
.x1b_c01009{left:300.799667pt;}
.x33_c01009{left:309.760000pt;}
.x43_c01009{left:320.000000pt;}
.x1c_c01009{left:328.320000pt;}
.x1e_c01009{left:329.600000pt;}
.x34_c01009{left:337.920000pt;}
.x42_c01009{left:339.840000pt;}
.x10_c01009{left:347.520000pt;}
.x1d_c01009{left:348.800000pt;}
.x47_c01009{left:357.120000pt;}
.x5a_c01009{left:367.360000pt;}
.x35_c01009{left:376.320000pt;}
.x44_c01009{left:378.240000pt;}
.x11_c01009{left:385.920000pt;}
.x20_c01009{left:387.200000pt;}
.x52_c01009{left:395.520000pt;}
.x48_c01009{left:397.440000pt;}
.x5e_c01009{left:405.760000pt;}
.x1f_c01009{left:415.360000pt;}
.x5d_c01009{left:424.320000pt;}
.x45_c01009{left:435.840000pt;}
.x49_c01009{left:443.520000pt;}
.x21_c01009{left:453.120000pt;}
.x2b_c01009{left:454.400000pt;}
.x36_c01009{left:462.720000pt;}
.x4e_c01009{left:472.320000pt;}
.x22_c01009{left:481.920000pt;}
.x2c_c01009{left:483.840000pt;}
.x2a_c01009{left:491.520000pt;}
.x28_c01009{left:492.800000pt;}
.x29_c01009{left:502.400000pt;}
.x4f_c01009{left:511.360000pt;}
.x4a_c01009{left:512.640000pt;}
.x2f_c01009{left:522.240000pt;}
.x2e_c01009{left:530.560000pt;}
.x2d_c01009{left:531.840000pt;}
.x53_c01009{left:540.800000pt;}
.x23_c01009{left:550.400000pt;}
.x61_c01009{left:561.280000pt;}
.x50_c01009{left:570.240000pt;}
.x62_c01009{left:571.520000pt;}
.x30_c01009{left:580.480000pt;}
.x27_c01009{left:589.440000pt;}
.x5b_c01009{left:590.720000pt;}
.x51_c01009{left:600.320000pt;}
.x24_c01009{left:604.800000pt;}
.x54_c01009{left:608.640000pt;}
.x5f_c01009{left:620.160000pt;}
.x25_c01009{left:622.080000pt;}
.x60_c01009{left:629.760000pt;}
.x26_c01009{left:636.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e63e915d889b76a4a00dc641.woff2')format("woff");}.ff1_c01010{font-family:ff1_c01010;line-height:1.109863;font-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_c01010{transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);}
.m39_c01010{transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);}
.m3c_c01010{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m27_c01010{transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);}
.m4_c01010{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);}
.m33_c01010{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_c01010{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_c01010{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m12_c01010{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_c01010{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_c01010{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);}
.m3b_c01010{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m5_c01010{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m3_c01010{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mb_c01010{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mf_c01010{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m5b_c01010{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m9_c01010{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m15_c01010{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m19_c01010{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.md_c01010{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m11_c01010{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m7_c01010{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01010{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01010{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m21_c01010{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01010{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m10_c01010{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m36_c01010{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m6_c01010{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);}
.m3a_c01010{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m24_c01010{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m0_c01010{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);}
.m37_c01010{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);}
.m2a_c01010{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.me_c01010{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);}
.m40_c01010{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m20_c01010{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01010{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m35_c01010{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m25_c01010{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m16_c01010{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m18_c01010{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m17_c01010{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m30_c01010{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m13_c01010{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);}
.m32_c01010{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);}
.m2b_c01010{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1_c01010{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);}
.m28_c01010{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m34_c01010{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);}
.m26_c01010{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);}
.m52_c01010{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m6c_c01010{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01010{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01010{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m23_c01010{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01010{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);}
.m60_c01010{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);}
.m4d_c01010{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m67_c01010{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m65_c01010{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m4f_c01010{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m5f_c01010{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);}
.m4c_c01010{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m48_c01010{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);}
.m1c_c01010{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m49_c01010{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);}
.m55_c01010{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01010{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m53_c01010{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m41_c01010{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);}
.m2e_c01010{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m61_c01010{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m6b_c01010{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);}
.m47_c01010{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m29_c01010{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m58_c01010{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);}
.m59_c01010{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);}
.m42_c01010{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m51_c01010{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01010{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);}
.m4b_c01010{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m57_c01010{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m6d_c01010{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);}
.m63_c01010{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m5c_c01010{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m6a_c01010{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m38_c01010{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m68_c01010{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);}
.m44_c01010{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m46_c01010{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m62_c01010{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m69_c01010{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m54_c01010{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01010{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);}
.m5e_c01010{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);}
.m56_c01010{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);}
.m45_c01010{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01010{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m5a_c01010{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m6e_c01010{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.m66_c01010{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);}
.m50_c01010{transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);}
.m43_c01010{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.m64_c01010{transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);}
.m31_c01010{transform:matrix(0.707500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.707500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.707500,0.000000,0.000000,0.250000,0,0);}
.m5d_c01010{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01010{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);}
.m2d_c01010{transform:matrix(0.785000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.785000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.785000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01010{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.v1_c01010{vertical-align:-8.640000px;}
.v0_c01010{vertical-align:0.000000px;}
.ls0_c01010{letter-spacing:0.000000px;}
.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;}
}
.ws3_c01010{word-spacing:0.000000px;}
.ws2_c01010{word-spacing:47.737509px;}
.ws1_c01010{word-spacing:58.571686px;}
.ws0_c01010{word-spacing:89.731200px;}
.fc0_c01010{color:transparent;}
.fsd_c01010{font-size:20.160000px;}
.fsb_c01010{font-size:28.800000px;}
.fsa_c01010{font-size:34.560000px;}
.fse_c01010{font-size:37.440000px;}
.fs3_c01010{font-size:43.200000px;}
.fs0_c01010{font-size:46.080000px;}
.fs1_c01010{font-size:48.960000px;}
.fs4_c01010{font-size:51.840000px;}
.fs5_c01010{font-size:54.720000px;}
.fs6_c01010{font-size:57.600000px;}
.fs2_c01010{font-size:60.480000px;}
.fs7_c01010{font-size:63.360000px;}
.fs8_c01010{font-size:66.240000px;}
.fsc_c01010{font-size:69.120000px;}
.fs9_c01010{font-size:83.520000px;}
.y0_c01010{bottom:0.000000px;}
.yc8_c01010{bottom:70.560000px;}
.yc7_c01010{bottom:72.720000px;}
.yc9_c01010{bottom:73.440000px;}
.yc3_c01010{bottom:113.040000px;}
.yc2_c01010{bottom:113.760000px;}
.yc5_c01010{bottom:115.200000px;}
.yc6_c01010{bottom:115.920000px;}
.yc4_c01010{bottom:116.640000px;}
.yc0_c01010{bottom:156.240000px;}
.ybf_c01010{bottom:156.960000px;}
.ybe_c01010{bottom:158.400000px;}
.ybd_c01010{bottom:159.120000px;}
.yc1_c01010{bottom:159.840000px;}
.ybc_c01010{bottom:198.000000px;}
.yba_c01010{bottom:198.720000px;}
.ybb_c01010{bottom:199.440000px;}
.yb9_c01010{bottom:200.160000px;}
.yb7_c01010{bottom:201.600000px;}
.yb8_c01010{bottom:202.320000px;}
.yb6_c01010{bottom:241.920000px;}
.yb5_c01010{bottom:242.640000px;}
.yb4_c01010{bottom:244.800000px;}
.yb3_c01010{bottom:245.520000px;}
.yb1_c01010{bottom:295.920000px;}
.yb2_c01010{bottom:298.080000px;}
.yaf_c01010{bottom:339.120000px;}
.yae_c01010{bottom:340.560000px;}
.yad_c01010{bottom:341.280000px;}
.yb0_c01010{bottom:342.000000px;}
.yac_c01010{bottom:380.880000px;}
.yaa_c01010{bottom:381.600000px;}
.yab_c01010{bottom:383.760000px;}
.ya9_c01010{bottom:384.480000px;}
.ya8_c01010{bottom:424.080000px;}
.ya6_c01010{bottom:424.800000px;}
.ya7_c01010{bottom:426.240000px;}
.ya5_c01010{bottom:426.960000px;}
.ya4_c01010{bottom:427.680000px;}
.ya3_c01010{bottom:466.560000px;}
.ya2_c01010{bottom:467.280000px;}
.ya1_c01010{bottom:469.440000px;}
.ya0_c01010{bottom:470.160000px;}
.y9f_c01010{bottom:470.880000px;}
.y9c_c01010{bottom:511.200000px;}
.y9e_c01010{bottom:512.640000px;}
.y9d_c01010{bottom:513.360000px;}
.y73_c01010{bottom:565.920000px;}
.y74_c01010{bottom:567.360000px;}
.y24_c01010{bottom:575.280000px;}
.y25_c01010{bottom:576.000000px;}
.y33_c01010{bottom:577.440000px;}
.y8d_c01010{bottom:578.160000px;}
.y72_c01010{bottom:586.800000px;}
.y70_c01010{bottom:587.520000px;}
.y71_c01010{bottom:588.240000px;}
.y23_c01010{bottom:596.880000px;}
.y8c_c01010{bottom:597.600000px;}
.y8b_c01010{bottom:598.320000px;}
.y98_c01010{bottom:599.760000px;}
.y97_c01010{bottom:600.480000px;}
.y6f_c01010{bottom:607.680000px;}
.y6d_c01010{bottom:608.400000px;}
.y6e_c01010{bottom:609.120000px;}
.y3d_c01010{bottom:618.480000px;}
.y22_c01010{bottom:619.200000px;}
.y32_c01010{bottom:621.360000px;}
.y7b_c01010{bottom:629.280000px;}
.y6b_c01010{bottom:630.000000px;}
.y6c_c01010{bottom:631.440000px;}
.y3c_c01010{bottom:640.080000px;}
.y31_c01010{bottom:640.800000px;}
.y21_c01010{bottom:642.960000px;}
.y6a_c01010{bottom:650.880000px;}
.y67_c01010{bottom:651.600000px;}
.y68_c01010{bottom:653.040000px;}
.y69_c01010{bottom:653.760000px;}
.y1f_c01010{bottom:661.680000px;}
.y20_c01010{bottom:662.400000px;}
.y8a_c01010{bottom:663.120000px;}
.y30_c01010{bottom:663.840000px;}
.y2f_c01010{bottom:664.560000px;}
.y65_c01010{bottom:672.480000px;}
.y64_c01010{bottom:673.200000px;}
.y7a_c01010{bottom:674.640000px;}
.y66_c01010{bottom:675.360000px;}
.y1d_c01010{bottom:683.280000px;}
.y9b_c01010{bottom:684.000000px;}
.y1e_c01010{bottom:685.440000px;}
.y63_c01010{bottom:694.080000px;}
.y3b_c01010{bottom:704.880000px;}
.y1b_c01010{bottom:705.600000px;}
.y2e_c01010{bottom:707.040000px;}
.y1c_c01010{bottom:707.760000px;}
.y60_c01010{bottom:715.680000px;}
.y61_c01010{bottom:716.400000px;}
.y62_c01010{bottom:717.840000px;}
.y3a_c01010{bottom:725.760000px;}
.y2d_c01010{bottom:726.480000px;}
.y1a_c01010{bottom:727.200000px;}
.y19_c01010{bottom:728.640000px;}
.y5f_c01010{bottom:736.560000px;}
.y5e_c01010{bottom:737.280000px;}
.y88_c01010{bottom:746.640000px;}
.y18_c01010{bottom:747.360000px;}
.y89_c01010{bottom:748.080000px;}
.y96_c01010{bottom:749.520000px;}
.y79_c01010{bottom:757.440000px;}
.y5c_c01010{bottom:758.160000px;}
.y5d_c01010{bottom:759.600000px;}
.y16_c01010{bottom:768.960000px;}
.y17_c01010{bottom:769.680000px;}
.y87_c01010{bottom:770.400000px;}
.y2c_c01010{bottom:771.120000px;}
.y78_c01010{bottom:779.760000px;}
.y59_c01010{bottom:780.480000px;}
.y5b_c01010{bottom:781.920000px;}
.y5a_c01010{bottom:782.640000px;}
.y95_c01010{bottom:789.120000px;}
.y2b_c01010{bottom:789.840000px;}
.y14_c01010{bottom:790.560000px;}
.y9a_c01010{bottom:791.280000px;}
.y86_c01010{bottom:792.000000px;}
.y15_c01010{bottom:792.720000px;}
.y57_c01010{bottom:800.640000px;}
.y58_c01010{bottom:804.240000px;}
.y2a_c01010{bottom:811.440000px;}
.y39_c01010{bottom:812.160000px;}
.y94_c01010{bottom:812.880000px;}
.y13_c01010{bottom:813.600000px;}
.y85_c01010{bottom:814.320000px;}
.y77_c01010{bottom:821.520000px;}
.y56_c01010{bottom:822.240000px;}
.y93_c01010{bottom:832.320000px;}
.y12_c01010{bottom:833.040000px;}
.y11_c01010{bottom:835.200000px;}
.y55_c01010{bottom:843.120000px;}
.y53_c01010{bottom:843.840000px;}
.y54_c01010{bottom:846.000000px;}
.y29_c01010{bottom:853.920000px;}
.y92_c01010{bottom:854.640000px;}
.y10_c01010{bottom:855.360000px;}
.y84_c01010{bottom:856.080000px;}
.yf_c01010{bottom:856.800000px;}
.y51_c01010{bottom:864.720000px;}
.y52_c01010{bottom:865.440000px;}
.y38_c01010{bottom:874.800000px;}
.y99_c01010{bottom:875.520000px;}
.ye_c01010{bottom:876.240000px;}
.y28_c01010{bottom:877.680000px;}
.yd_c01010{bottom:878.400000px;}
.y76_c01010{bottom:885.600000px;}
.y4f_c01010{bottom:886.320000px;}
.y50_c01010{bottom:888.480000px;}
.y83_c01010{bottom:896.400000px;}
.yc_c01010{bottom:897.120000px;}
.y37_c01010{bottom:898.560000px;}
.y91_c01010{bottom:899.280000px;}
.y4c_c01010{bottom:907.200000px;}
.y4e_c01010{bottom:908.640000px;}
.y4d_c01010{bottom:910.080000px;}
.y82_c01010{bottom:917.280000px;}
.y36_c01010{bottom:918.000000px;}
.yb_c01010{bottom:918.720000px;}
.y81_c01010{bottom:919.440000px;}
.y4a_c01010{bottom:928.080000px;}
.y4b_c01010{bottom:930.960000px;}
.y80_c01010{bottom:938.880000px;}
.y27_c01010{bottom:939.600000px;}
.ya_c01010{bottom:940.320000px;}
.y35_c01010{bottom:941.760000px;}
.y49_c01010{bottom:949.680000px;}
.y46_c01010{bottom:950.400000px;}
.y48_c01010{bottom:951.840000px;}
.y47_c01010{bottom:952.560000px;}
.y9_c01010{bottom:960.480000px;}
.y8_c01010{bottom:961.200000px;}
.y7f_c01010{bottom:963.360000px;}
.y75_c01010{bottom:970.560000px;}
.y45_c01010{bottom:971.280000px;}
.y90_c01010{bottom:981.360000px;}
.y26_c01010{bottom:982.080000px;}
.y7_c01010{bottom:983.520000px;}
.y8f_c01010{bottom:984.240000px;}
.y6_c01010{bottom:985.680000px;}
.y44_c01010{bottom:992.160000px;}
.y42_c01010{bottom:992.880000px;}
.y43_c01010{bottom:995.040000px;}
.y8e_c01010{bottom:1002.960000px;}
.y34_c01010{bottom:1003.680000px;}
.y5_c01010{bottom:1004.400000px;}
.y7d_c01010{bottom:1005.120000px;}
.y7e_c01010{bottom:1005.840000px;}
.y4_c01010{bottom:1006.560000px;}
.y41_c01010{bottom:1013.760000px;}
.y40_c01010{bottom:1014.480000px;}
.y3f_c01010{bottom:1036.080000px;}
.y3e_c01010{bottom:1036.800000px;}
.y3_c01010{bottom:1037.520000px;}
.y2_c01010{bottom:1038.240000px;}
.y1_c01010{bottom:1038.960000px;}
.y7c_c01010{bottom:1103.040000px;}
.hf_c01010{height:18.142031px;}
.hd_c01010{height:25.917187px;}
.hc_c01010{height:31.100625px;}
.h10_c01010{height:33.692344px;}
.h5_c01010{height:38.875781px;}
.h2_c01010{height:41.467500px;}
.h3_c01010{height:44.059219px;}
.h6_c01010{height:46.650937px;}
.h7_c01010{height:49.242656px;}
.h8_c01010{height:51.834375px;}
.h4_c01010{height:54.426094px;}
.h9_c01010{height:57.017812px;}
.ha_c01010{height:59.609531px;}
.he_c01010{height:62.201250px;}
.hb_c01010{height:75.159844px;}
.h0_c01010{height:1160.640000px;}
.h1_c01010{height:1161.000000px;}
.w0_c01010{width:775.440000px;}
.w1_c01010{width:775.500000px;}
.x0_c01010{left:0.000000px;}
.x1_c01010{left:56.160000px;}
.x8_c01010{left:57.600000px;}
.x5_c01010{left:67.680000px;}
.x2_c01010{left:88.560000px;}
.x6_c01010{left:90.000000px;}
.xa_c01010{left:99.360000px;}
.x7_c01010{left:100.800000px;}
.x9_c01010{left:110.880000px;}
.x4d_c01010{left:112.320000px;}
.x3e_c01010{left:133.200000px;}
.xb_c01010{left:143.279325px;}
.xc_c01010{left:144.720000px;}
.x3b_c01010{left:153.360000px;}
.x53_c01010{left:154.800000px;}
.x3_c01010{left:164.880000px;}
.x43_c01010{left:167.040000px;}
.x49_c01010{left:175.680000px;}
.x3f_c01010{left:177.120000px;}
.x38_c01010{left:187.920000px;}
.x44_c01010{left:198.720000px;}
.x4_c01010{left:207.360000px;}
.xe_c01010{left:208.800000px;}
.xd_c01010{left:218.880000px;}
.x45_c01010{left:230.400000px;}
.xf_c01010{left:241.200000px;}
.x34_c01010{left:252.720000px;}
.x2f_c01010{left:263.520000px;}
.x3c_c01010{left:273.600000px;}
.x10_c01010{left:282.960000px;}
.x14_c01010{left:284.400000px;}
.x30_c01010{left:295.200000px;}
.x39_c01010{left:306.000000px;}
.x11_c01010{left:315.360000px;}
.x18_c01010{left:317.520000px;}
.x17_c01010{left:327.600000px;}
.x15_c01010{left:337.680000px;}
.x19_c01010{left:339.120000px;}
.x31_c01010{left:347.760000px;}
.x4a_c01010{left:349.920000px;}
.x4e_c01010{left:358.560000px;}
.x16_c01010{left:369.360000px;}
.x1a_c01010{left:371.520000px;}
.x35_c01010{left:382.320000px;}
.x12_c01010{left:391.680000px;}
.x1b_c01010{left:393.120000px;}
.x3a_c01010{left:395.280000px;}
.x40_c01010{left:403.200000px;}
.x3d_c01010{left:414.720000px;}
.x46_c01010{left:424.800000px;}
.x13_c01010{left:434.160000px;}
.x1d_c01010{left:435.600600px;}
.x41_c01010{left:446.400000px;}
.x47_c01010{left:457.920000px;}
.x1c_c01010{left:467.280000px;}
.x4f_c01010{left:479.520000px;}
.x42_c01010{left:489.600000px;}
.x1e_c01010{left:510.480000px;}
.x26_c01010{left:511.920000px;}
.x36_c01010{left:522.000000px;}
.x50_c01010{left:533.520000px;}
.x1f_c01010{left:542.880000px;}
.x27_c01010{left:544.320000px;}
.x25_c01010{left:553.680000px;}
.x23_c01010{left:555.120000px;}
.x51_c01010{left:564.480000px;}
.x24_c01010{left:565.920000px;}
.x32_c01010{left:576.720000px;}
.x2a_c01010{left:588.240000px;}
.x28_c01010{left:598.320000px;}
.x2b_c01010{left:599.760000px;}
.x4b_c01010{left:609.120000px;}
.x29_c01010{left:610.560000px;}
.x20_c01010{left:619.920000px;}
.x2c_c01010{left:621.360000px;}
.x52_c01010{left:632.160000px;}
.x48_c01010{left:641.520000px;}
.x4c_c01010{left:652.320000px;}
.x2e_c01010{left:654.480000px;}
.x22_c01010{left:663.120000px;}
.x2d_c01010{left:664.560000px;}
.x33_c01010{left:674.640000px;}
.x21_c01010{left:686.880000px;}
.x37_c01010{left:709.200000px;}
@media print{
.v1_c01010{vertical-align:-7.680000pt;}
.v0_c01010{vertical-align:0.000000pt;}
.ls0_c01010{letter-spacing:0.000000pt;}
.ws3_c01010{word-spacing:0.000000pt;}
.ws2_c01010{word-spacing:42.433341pt;}
.ws1_c01010{word-spacing:52.063721pt;}
.ws0_c01010{word-spacing:79.761067pt;}
.fsd_c01010{font-size:17.920000pt;}
.fsb_c01010{font-size:25.600000pt;}
.fsa_c01010{font-size:30.720000pt;}
.fse_c01010{font-size:33.280000pt;}
.fs3_c01010{font-size:38.400000pt;}
.fs0_c01010{font-size:40.960000pt;}
.fs1_c01010{font-size:43.520000pt;}
.fs4_c01010{font-size:46.080000pt;}
.fs5_c01010{font-size:48.640000pt;}
.fs6_c01010{font-size:51.200000pt;}
.fs2_c01010{font-size:53.760000pt;}
.fs7_c01010{font-size:56.320000pt;}
.fs8_c01010{font-size:58.880000pt;}
.fsc_c01010{font-size:61.440000pt;}
.fs9_c01010{font-size:74.240000pt;}
.y0_c01010{bottom:0.000000pt;}
.yc8_c01010{bottom:62.720000pt;}
.yc7_c01010{bottom:64.640000pt;}
.yc9_c01010{bottom:65.280000pt;}
.yc3_c01010{bottom:100.480000pt;}
.yc2_c01010{bottom:101.120000pt;}
.yc5_c01010{bottom:102.400000pt;}
.yc6_c01010{bottom:103.040000pt;}
.yc4_c01010{bottom:103.680000pt;}
.yc0_c01010{bottom:138.880000pt;}
.ybf_c01010{bottom:139.520000pt;}
.ybe_c01010{bottom:140.800000pt;}
.ybd_c01010{bottom:141.440000pt;}
.yc1_c01010{bottom:142.080000pt;}
.ybc_c01010{bottom:176.000000pt;}
.yba_c01010{bottom:176.640000pt;}
.ybb_c01010{bottom:177.280000pt;}
.yb9_c01010{bottom:177.920000pt;}
.yb7_c01010{bottom:179.200000pt;}
.yb8_c01010{bottom:179.840000pt;}
.yb6_c01010{bottom:215.040000pt;}
.yb5_c01010{bottom:215.680000pt;}
.yb4_c01010{bottom:217.600000pt;}
.yb3_c01010{bottom:218.240000pt;}
.yb1_c01010{bottom:263.040000pt;}
.yb2_c01010{bottom:264.960000pt;}
.yaf_c01010{bottom:301.440000pt;}
.yae_c01010{bottom:302.720000pt;}
.yad_c01010{bottom:303.360000pt;}
.yb0_c01010{bottom:304.000000pt;}
.yac_c01010{bottom:338.560000pt;}
.yaa_c01010{bottom:339.200000pt;}
.yab_c01010{bottom:341.120000pt;}
.ya9_c01010{bottom:341.760000pt;}
.ya8_c01010{bottom:376.960000pt;}
.ya6_c01010{bottom:377.600000pt;}
.ya7_c01010{bottom:378.880000pt;}
.ya5_c01010{bottom:379.520000pt;}
.ya4_c01010{bottom:380.160000pt;}
.ya3_c01010{bottom:414.720000pt;}
.ya2_c01010{bottom:415.360000pt;}
.ya1_c01010{bottom:417.280000pt;}
.ya0_c01010{bottom:417.920000pt;}
.y9f_c01010{bottom:418.560000pt;}
.y9c_c01010{bottom:454.400000pt;}
.y9e_c01010{bottom:455.680000pt;}
.y9d_c01010{bottom:456.320000pt;}
.y73_c01010{bottom:503.040000pt;}
.y74_c01010{bottom:504.320000pt;}
.y24_c01010{bottom:511.360000pt;}
.y25_c01010{bottom:512.000000pt;}
.y33_c01010{bottom:513.280000pt;}
.y8d_c01010{bottom:513.920000pt;}
.y72_c01010{bottom:521.600000pt;}
.y70_c01010{bottom:522.240000pt;}
.y71_c01010{bottom:522.880000pt;}
.y23_c01010{bottom:530.560000pt;}
.y8c_c01010{bottom:531.200000pt;}
.y8b_c01010{bottom:531.840000pt;}
.y98_c01010{bottom:533.120000pt;}
.y97_c01010{bottom:533.760000pt;}
.y6f_c01010{bottom:540.160000pt;}
.y6d_c01010{bottom:540.800000pt;}
.y6e_c01010{bottom:541.440000pt;}
.y3d_c01010{bottom:549.760000pt;}
.y22_c01010{bottom:550.400000pt;}
.y32_c01010{bottom:552.320000pt;}
.y7b_c01010{bottom:559.360000pt;}
.y6b_c01010{bottom:560.000000pt;}
.y6c_c01010{bottom:561.280000pt;}
.y3c_c01010{bottom:568.960000pt;}
.y31_c01010{bottom:569.600000pt;}
.y21_c01010{bottom:571.520000pt;}
.y6a_c01010{bottom:578.560000pt;}
.y67_c01010{bottom:579.200000pt;}
.y68_c01010{bottom:580.480000pt;}
.y69_c01010{bottom:581.120000pt;}
.y1f_c01010{bottom:588.160000pt;}
.y20_c01010{bottom:588.800000pt;}
.y8a_c01010{bottom:589.440000pt;}
.y30_c01010{bottom:590.080000pt;}
.y2f_c01010{bottom:590.720000pt;}
.y65_c01010{bottom:597.760000pt;}
.y64_c01010{bottom:598.400000pt;}
.y7a_c01010{bottom:599.680000pt;}
.y66_c01010{bottom:600.320000pt;}
.y1d_c01010{bottom:607.360000pt;}
.y9b_c01010{bottom:608.000000pt;}
.y1e_c01010{bottom:609.280000pt;}
.y63_c01010{bottom:616.960000pt;}
.y3b_c01010{bottom:626.560000pt;}
.y1b_c01010{bottom:627.200000pt;}
.y2e_c01010{bottom:628.480000pt;}
.y1c_c01010{bottom:629.120000pt;}
.y60_c01010{bottom:636.160000pt;}
.y61_c01010{bottom:636.800000pt;}
.y62_c01010{bottom:638.080000pt;}
.y3a_c01010{bottom:645.120000pt;}
.y2d_c01010{bottom:645.760000pt;}
.y1a_c01010{bottom:646.400000pt;}
.y19_c01010{bottom:647.680000pt;}
.y5f_c01010{bottom:654.720000pt;}
.y5e_c01010{bottom:655.360000pt;}
.y88_c01010{bottom:663.680000pt;}
.y18_c01010{bottom:664.320000pt;}
.y89_c01010{bottom:664.960000pt;}
.y96_c01010{bottom:666.240000pt;}
.y79_c01010{bottom:673.280000pt;}
.y5c_c01010{bottom:673.920000pt;}
.y5d_c01010{bottom:675.200000pt;}
.y16_c01010{bottom:683.520000pt;}
.y17_c01010{bottom:684.160000pt;}
.y87_c01010{bottom:684.800000pt;}
.y2c_c01010{bottom:685.440000pt;}
.y78_c01010{bottom:693.120000pt;}
.y59_c01010{bottom:693.760000pt;}
.y5b_c01010{bottom:695.040000pt;}
.y5a_c01010{bottom:695.680000pt;}
.y95_c01010{bottom:701.440000pt;}
.y2b_c01010{bottom:702.080000pt;}
.y14_c01010{bottom:702.720000pt;}
.y9a_c01010{bottom:703.360000pt;}
.y86_c01010{bottom:704.000000pt;}
.y15_c01010{bottom:704.640000pt;}
.y57_c01010{bottom:711.680000pt;}
.y58_c01010{bottom:714.880000pt;}
.y2a_c01010{bottom:721.280000pt;}
.y39_c01010{bottom:721.920000pt;}
.y94_c01010{bottom:722.560000pt;}
.y13_c01010{bottom:723.200000pt;}
.y85_c01010{bottom:723.840000pt;}
.y77_c01010{bottom:730.240000pt;}
.y56_c01010{bottom:730.880000pt;}
.y93_c01010{bottom:739.840000pt;}
.y12_c01010{bottom:740.480000pt;}
.y11_c01010{bottom:742.400000pt;}
.y55_c01010{bottom:749.440000pt;}
.y53_c01010{bottom:750.080000pt;}
.y54_c01010{bottom:752.000000pt;}
.y29_c01010{bottom:759.040000pt;}
.y92_c01010{bottom:759.680000pt;}
.y10_c01010{bottom:760.320000pt;}
.y84_c01010{bottom:760.960000pt;}
.yf_c01010{bottom:761.600000pt;}
.y51_c01010{bottom:768.640000pt;}
.y52_c01010{bottom:769.280000pt;}
.y38_c01010{bottom:777.600000pt;}
.y99_c01010{bottom:778.240000pt;}
.ye_c01010{bottom:778.880000pt;}
.y28_c01010{bottom:780.160000pt;}
.yd_c01010{bottom:780.800000pt;}
.y76_c01010{bottom:787.200000pt;}
.y4f_c01010{bottom:787.840000pt;}
.y50_c01010{bottom:789.760000pt;}
.y83_c01010{bottom:796.800000pt;}
.yc_c01010{bottom:797.440000pt;}
.y37_c01010{bottom:798.720000pt;}
.y91_c01010{bottom:799.360000pt;}
.y4c_c01010{bottom:806.400000pt;}
.y4e_c01010{bottom:807.680000pt;}
.y4d_c01010{bottom:808.960000pt;}
.y82_c01010{bottom:815.360000pt;}
.y36_c01010{bottom:816.000000pt;}
.yb_c01010{bottom:816.640000pt;}
.y81_c01010{bottom:817.280000pt;}
.y4a_c01010{bottom:824.960000pt;}
.y4b_c01010{bottom:827.520000pt;}
.y80_c01010{bottom:834.560000pt;}
.y27_c01010{bottom:835.200000pt;}
.ya_c01010{bottom:835.840000pt;}
.y35_c01010{bottom:837.120000pt;}
.y49_c01010{bottom:844.160000pt;}
.y46_c01010{bottom:844.800000pt;}
.y48_c01010{bottom:846.080000pt;}
.y47_c01010{bottom:846.720000pt;}
.y9_c01010{bottom:853.760000pt;}
.y8_c01010{bottom:854.400000pt;}
.y7f_c01010{bottom:856.320000pt;}
.y75_c01010{bottom:862.720000pt;}
.y45_c01010{bottom:863.360000pt;}
.y90_c01010{bottom:872.320000pt;}
.y26_c01010{bottom:872.960000pt;}
.y7_c01010{bottom:874.240000pt;}
.y8f_c01010{bottom:874.880000pt;}
.y6_c01010{bottom:876.160000pt;}
.y44_c01010{bottom:881.920000pt;}
.y42_c01010{bottom:882.560000pt;}
.y43_c01010{bottom:884.480000pt;}
.y8e_c01010{bottom:891.520000pt;}
.y34_c01010{bottom:892.160000pt;}
.y5_c01010{bottom:892.800000pt;}
.y7d_c01010{bottom:893.440000pt;}
.y7e_c01010{bottom:894.080000pt;}
.y4_c01010{bottom:894.720000pt;}
.y41_c01010{bottom:901.120000pt;}
.y40_c01010{bottom:901.760000pt;}
.y3f_c01010{bottom:920.960000pt;}
.y3e_c01010{bottom:921.600000pt;}
.y3_c01010{bottom:922.240000pt;}
.y2_c01010{bottom:922.880000pt;}
.y1_c01010{bottom:923.520000pt;}
.y7c_c01010{bottom:980.480000pt;}
.hf_c01010{height:16.126250pt;}
.hd_c01010{height:23.037500pt;}
.hc_c01010{height:27.645000pt;}
.h10_c01010{height:29.948750pt;}
.h5_c01010{height:34.556250pt;}
.h2_c01010{height:36.860000pt;}
.h3_c01010{height:39.163750pt;}
.h6_c01010{height:41.467500pt;}
.h7_c01010{height:43.771250pt;}
.h8_c01010{height:46.075000pt;}
.h4_c01010{height:48.378750pt;}
.h9_c01010{height:50.682500pt;}
.ha_c01010{height:52.986250pt;}
.he_c01010{height:55.290000pt;}
.hb_c01010{height:66.808750pt;}
.h0_c01010{height:1031.680000pt;}
.h1_c01010{height:1032.000000pt;}
.w0_c01010{width:689.280000pt;}
.w1_c01010{width:689.333333pt;}
.x0_c01010{left:0.000000pt;}
.x1_c01010{left:49.920000pt;}
.x8_c01010{left:51.200000pt;}
.x5_c01010{left:60.160000pt;}
.x2_c01010{left:78.720000pt;}
.x6_c01010{left:80.000000pt;}
.xa_c01010{left:88.320000pt;}
.x7_c01010{left:89.600000pt;}
.x9_c01010{left:98.560000pt;}
.x4d_c01010{left:99.840000pt;}
.x3e_c01010{left:118.400000pt;}
.xb_c01010{left:127.359400pt;}
.xc_c01010{left:128.640000pt;}
.x3b_c01010{left:136.320000pt;}
.x53_c01010{left:137.600000pt;}
.x3_c01010{left:146.560000pt;}
.x43_c01010{left:148.480000pt;}
.x49_c01010{left:156.160000pt;}
.x3f_c01010{left:157.440000pt;}
.x38_c01010{left:167.040000pt;}
.x44_c01010{left:176.640000pt;}
.x4_c01010{left:184.320000pt;}
.xe_c01010{left:185.600000pt;}
.xd_c01010{left:194.560000pt;}
.x45_c01010{left:204.800000pt;}
.xf_c01010{left:214.400000pt;}
.x34_c01010{left:224.640000pt;}
.x2f_c01010{left:234.240000pt;}
.x3c_c01010{left:243.200000pt;}
.x10_c01010{left:251.520000pt;}
.x14_c01010{left:252.800000pt;}
.x30_c01010{left:262.400000pt;}
.x39_c01010{left:272.000000pt;}
.x11_c01010{left:280.320000pt;}
.x18_c01010{left:282.240000pt;}
.x17_c01010{left:291.200000pt;}
.x15_c01010{left:300.160000pt;}
.x19_c01010{left:301.440000pt;}
.x31_c01010{left:309.120000pt;}
.x4a_c01010{left:311.040000pt;}
.x4e_c01010{left:318.720000pt;}
.x16_c01010{left:328.320000pt;}
.x1a_c01010{left:330.240000pt;}
.x35_c01010{left:339.840000pt;}
.x12_c01010{left:348.160000pt;}
.x1b_c01010{left:349.440000pt;}
.x3a_c01010{left:351.360000pt;}
.x40_c01010{left:358.400000pt;}
.x3d_c01010{left:368.640000pt;}
.x46_c01010{left:377.600000pt;}
.x13_c01010{left:385.920000pt;}
.x1d_c01010{left:387.200533pt;}
.x41_c01010{left:396.800000pt;}
.x47_c01010{left:407.040000pt;}
.x1c_c01010{left:415.360000pt;}
.x4f_c01010{left:426.240000pt;}
.x42_c01010{left:435.200000pt;}
.x1e_c01010{left:453.760000pt;}
.x26_c01010{left:455.040000pt;}
.x36_c01010{left:464.000000pt;}
.x50_c01010{left:474.240000pt;}
.x1f_c01010{left:482.560000pt;}
.x27_c01010{left:483.840000pt;}
.x25_c01010{left:492.160000pt;}
.x23_c01010{left:493.440000pt;}
.x51_c01010{left:501.760000pt;}
.x24_c01010{left:503.040000pt;}
.x32_c01010{left:512.640000pt;}
.x2a_c01010{left:522.880000pt;}
.x28_c01010{left:531.840000pt;}
.x2b_c01010{left:533.120000pt;}
.x4b_c01010{left:541.440000pt;}
.x29_c01010{left:542.720000pt;}
.x20_c01010{left:551.040000pt;}
.x2c_c01010{left:552.320000pt;}
.x52_c01010{left:561.920000pt;}
.x48_c01010{left:570.240000pt;}
.x4c_c01010{left:579.840000pt;}
.x2e_c01010{left:581.760000pt;}
.x22_c01010{left:589.440000pt;}
.x2d_c01010{left:590.720000pt;}
.x33_c01010{left:599.680000pt;}
.x21_c01010{left:610.560000pt;}
.x37_c01010{left:630.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_10dd41d939a63a3f154f543a.woff2')format("woff");}.ff1_c01011{font-family:ff1_c01011;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5f_c01011{transform:matrix(0.203100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203100,0.000000,0.000000,0.250000,0,0);}
.m53_c01011{transform:matrix(0.225100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225100,0.000000,0.000000,0.250000,0,0);}
.m36_c01011{transform:matrix(0.229400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229400,0.000000,0.000000,0.250000,0,0);}
.m54_c01011{transform:matrix(0.231525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231525,0.000000,0.000000,0.250000,0,0);}
.m32_c01011{transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);}
.m37_c01011{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);}
.m44_c01011{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);}
.m25_c01011{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);}
.m38_c01011{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);}
.m41_c01011{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m55_c01011{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);}
.m2f_c01011{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);}
.m2b_c01011{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);}
.m26_c01011{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m34_c01011{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01011{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m5_c01011{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m47_c01011{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m45_c01011{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.ma_c01011{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m35_c01011{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m5e_c01011{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m23_c01011{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01011{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m52_c01011{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m14_c01011{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m16_c01011{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mc_c01011{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);}
.m29_c01011{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);}
.m3c_c01011{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m6_c01011{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01011{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01011{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);}
.m30_c01011{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m42_c01011{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1_c01011{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m57_c01011{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01011{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m58_c01011{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m7_c01011{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m0_c01011{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m28_c01011{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);}
.m33_c01011{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01011{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);}
.m4a_c01011{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01011{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m5c_c01011{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01011{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);}
.m49_c01011{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01011{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);}
.m19_c01011{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);}
.md_c01011{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m15_c01011{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m43_c01011{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);}
.m2e_c01011{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m9_c01011{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);}
.m3a_c01011{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m5d_c01011{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);}
.m4c_c01011{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m2_c01011{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m51_c01011{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m21_c01011{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);}
.m40_c01011{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01011{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);}
.m3_c01011{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m10_c01011{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m4f_c01011{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m60_c01011{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m12_c01011{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m56_c01011{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);}
.m4_c01011{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);}
.m5a_c01011{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m59_c01011{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01011{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m17_c01011{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);}
.m4b_c01011{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m24_c01011{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m18_c01011{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.me_c01011{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);}
.m5b_c01011{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m13_c01011{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01011{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m8_c01011{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m48_c01011{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m11_c01011{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);}
.m50_c01011{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01011{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01011{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01011{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.mf_c01011{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);}
.m39_c01011{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);}
.m61_c01011{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.mb_c01011{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m27_c01011{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01011{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m20_c01011{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.m46_c01011{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);}
.m31_c01011{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.v1_c01011{vertical-align:-8.640000px;}
.v0_c01011{vertical-align:0.000000px;}
.v2_c01011{vertical-align:8.640000px;}
.ls0_c01011{letter-spacing:0.000000px;}
.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;}
}
.ws2_c01011{word-spacing:0.000000px;}
.ws1_c01011{word-spacing:1.927920px;}
.ws0_c01011{word-spacing:126.313200px;}
.fc0_c01011{color:transparent;}
.fsd_c01011{font-size:11.520000px;}
.fse_c01011{font-size:20.160000px;}
.fsb_c01011{font-size:34.560000px;}
.fs7_c01011{font-size:37.440000px;}
.fsa_c01011{font-size:43.200000px;}
.fs4_c01011{font-size:46.080000px;}
.fs2_c01011{font-size:48.960000px;}
.fs3_c01011{font-size:51.840000px;}
.fs9_c01011{font-size:54.720000px;}
.fs5_c01011{font-size:57.600000px;}
.fs1_c01011{font-size:60.480000px;}
.fs8_c01011{font-size:63.360000px;}
.fsc_c01011{font-size:66.240000px;}
.fs6_c01011{font-size:69.120000px;}
.fs0_c01011{font-size:72.000000px;}
.fs10_c01011{font-size:100.800000px;}
.fsf_c01011{font-size:103.680000px;}
.y0_c01011{bottom:0.000000px;}
.y62_c01011{bottom:89.280000px;}
.y63_c01011{bottom:91.440000px;}
.y61_c01011{bottom:132.480000px;}
.y60_c01011{bottom:133.200000px;}
.y5e_c01011{bottom:133.920000px;}
.y5d_c01011{bottom:134.640000px;}
.y5f_c01011{bottom:135.360000px;}
.y5b_c01011{bottom:174.960000px;}
.y59_c01011{bottom:177.840000px;}
.y5c_c01011{bottom:178.560000px;}
.y5a_c01011{bottom:179.280000px;}
.y58_c01011{bottom:218.160000px;}
.y57_c01011{bottom:218.880000px;}
.y56_c01011{bottom:221.040000px;}
.y52_c01011{bottom:261.360000px;}
.y53_c01011{bottom:263.520000px;}
.y54_c01011{bottom:264.240000px;}
.y55_c01011{bottom:264.960000px;}
.y4c_c01011{bottom:304.560000px;}
.y4f_c01011{bottom:305.280000px;}
.y51_c01011{bottom:306.000000px;}
.y4d_c01011{bottom:306.720000px;}
.y4e_c01011{bottom:307.440000px;}
.y50_c01011{bottom:308.160000px;}
.y48_c01011{bottom:347.040000px;}
.y4a_c01011{bottom:347.760000px;}
.y4b_c01011{bottom:348.480000px;}
.y49_c01011{bottom:350.640000px;}
.y47_c01011{bottom:351.360000px;}
.y43_c01011{bottom:390.240000px;}
.y45_c01011{bottom:390.960000px;}
.y44_c01011{bottom:393.120000px;}
.y42_c01011{bottom:393.840000px;}
.y46_c01011{bottom:394.560000px;}
.y41_c01011{bottom:435.600000px;}
.y40_c01011{bottom:437.040000px;}
.y3e_c01011{bottom:476.640000px;}
.y3d_c01011{bottom:477.360000px;}
.y3c_c01011{bottom:479.520000px;}
.y3f_c01011{bottom:480.240000px;}
.y3b_c01011{bottom:519.840000px;}
.y39_c01011{bottom:522.000000px;}
.y3a_c01011{bottom:522.720000px;}
.y38_c01011{bottom:523.440000px;}
.y33_c01011{bottom:573.840000px;}
.y36_c01011{bottom:574.560000px;}
.y34_c01011{bottom:576.720000px;}
.y37_c01011{bottom:579.600000px;}
.y35_c01011{bottom:597.600000px;}
.y32_c01011{bottom:598.320000px;}
.y31_c01011{bottom:637.200000px;}
.y2f_c01011{bottom:639.360000px;}
.y30_c01011{bottom:640.080000px;}
.y2e_c01011{bottom:640.800000px;}
.y2d_c01011{bottom:694.080000px;}
.y2c_c01011{bottom:694.800000px;}
.y28_c01011{bottom:723.600000px;}
.y2a_c01011{bottom:724.320000px;}
.y2b_c01011{bottom:725.040000px;}
.y29_c01011{bottom:726.480000px;}
.y27_c01011{bottom:727.200000px;}
.y25_c01011{bottom:755.280000px;}
.y24_c01011{bottom:756.720000px;}
.y26_c01011{bottom:758.160000px;}
.y23_c01011{bottom:758.880000px;}
.y21_c01011{bottom:788.400000px;}
.y1e_c01011{bottom:789.120000px;}
.y1f_c01011{bottom:790.560000px;}
.y20_c01011{bottom:791.280000px;}
.y22_c01011{bottom:793.440000px;}
.y1d_c01011{bottom:820.800000px;}
.y1b_c01011{bottom:821.520000px;}
.y1c_c01011{bottom:822.960000px;}
.y19_c01011{bottom:823.680000px;}
.y1a_c01011{bottom:824.400000px;}
.y18_c01011{bottom:863.280000px;}
.y17_c01011{bottom:866.160000px;}
.y16_c01011{bottom:905.760000px;}
.y15_c01011{bottom:907.920000px;}
.y14_c01011{bottom:908.640000px;}
.y13_c01011{bottom:909.360000px;}
.y12_c01011{bottom:959.040000px;}
.yf_c01011{bottom:959.760000px;}
.ye_c01011{bottom:960.480000px;}
.yd_c01011{bottom:961.200000px;}
.y11_c01011{bottom:961.920000px;}
.y10_c01011{bottom:962.640000px;}
.y9_c01011{bottom:1001.520000px;}
.yc_c01011{bottom:1002.240000px;}
.ya_c01011{bottom:1003.680000px;}
.yb_c01011{bottom:1004.400000px;}
.y7_c01011{bottom:1005.120000px;}
.y8_c01011{bottom:1005.840000px;}
.y6_c01011{bottom:1044.000000px;}
.y2_c01011{bottom:1045.440000px;}
.y5_c01011{bottom:1046.880000px;}
.y4_c01011{bottom:1047.600000px;}
.y3_c01011{bottom:1048.320000px;}
.y1_c01011{bottom:1109.520000px;}
.hf_c01011{height:10.366875px;}
.h10_c01011{height:18.142031px;}
.hd_c01011{height:31.100625px;}
.h9_c01011{height:33.692344px;}
.hc_c01011{height:38.875781px;}
.h6_c01011{height:41.467500px;}
.h4_c01011{height:44.059219px;}
.h5_c01011{height:46.650937px;}
.hb_c01011{height:49.242656px;}
.h7_c01011{height:51.834375px;}
.h13_c01011{height:52.699219px;}
.h3_c01011{height:54.426094px;}
.ha_c01011{height:57.017812px;}
.he_c01011{height:59.609531px;}
.h8_c01011{height:62.201250px;}
.h2_c01011{height:64.792969px;}
.h12_c01011{height:90.710156px;}
.h11_c01011{height:93.301875px;}
.h0_c01011{height:1159.920000px;}
.h1_c01011{height:1160.250000px;}
.w0_c01011{width:774.000000px;}
.x0_c01011{left:0.000000px;}
.x1f_c01011{left:50.400000px;}
.x2_c01011{left:51.840000px;}
.x21_c01011{left:53.280000px;}
.x3b_c01011{left:64.080000px;}
.x22_c01011{left:73.440000px;}
.x20_c01011{left:84.960000px;}
.x3a_c01011{left:86.400000px;}
.xc_c01011{left:95.040000px;}
.x30_c01011{left:118.080000px;}
.x23_c01011{left:128.160000px;}
.x3c_c01011{left:129.600000px;}
.x46_c01011{left:138.240000px;}
.xd_c01011{left:148.320000px;}
.x32_c01011{left:149.760000px;}
.x4a_c01011{left:151.200000px;}
.x16_c01011{left:159.840000px;}
.x4f_c01011{left:161.280000px;}
.x33_c01011{left:170.640000px;}
.x27_c01011{left:172.080000px;}
.x4b_c01011{left:182.160000px;}
.x5e_c01011{left:183.600000px;}
.x1a_c01011{left:192.960000px;}
.x3_c01011{left:203.040000px;}
.x5c_c01011{left:205.200000px;}
.x3d_c01011{left:215.280000px;}
.x5f_c01011{left:226.800000px;}
.x34_c01011{left:236.880000px;}
.x4_c01011{left:246.240000px;}
.x54_c01011{left:247.680000px;}
.x42_c01011{left:257.760000px;}
.xe_c01011{left:267.840000px;}
.x4c_c01011{left:269.280000px;}
.x3e_c01011{left:280.080000px;}
.x17_c01011{left:289.440000px;}
.x28_c01011{left:291.600000px;}
.xf_c01011{left:300.240000px;}
.x37_c01011{left:301.680000px;}
.x5_c01011{left:309.600000px;}
.x1b_c01011{left:311.040000px;}
.x29_c01011{left:321.840000px;}
.x5d_c01011{left:324.000000px;}
.x18_c01011{left:331.920000px;}
.x38_c01011{left:333.360000px;}
.x47_c01011{left:334.800000px;}
.x1c_c01011{left:343.440000px;}
.x3f_c01011{left:344.880000px;}
.x2a_c01011{left:354.960000px;}
.x5a_c01011{left:356.400000px;}
.x58_c01011{left:367.200000px;}
.x10_c01011{left:374.400000px;}
.x19_c01011{left:375.840000px;}
.x4d_c01011{left:378.000000px;}
.x6_c01011{left:386.640000px;}
.x56_c01011{left:388.800000px;}
.x11_c01011{left:396.000000px;}
.x2b_c01011{left:398.160000px;}
.x50_c01011{left:399.600000px;}
.x31_c01011{left:407.520000px;}
.x40_c01011{left:410.400000px;}
.x7_c01011{left:419.040000px;}
.x5b_c01011{left:421.200000px;}
.x24_c01011{left:429.120000px;}
.x43_c01011{left:432.000000px;}
.x12_c01011{left:439.920000px;}
.x48_c01011{left:442.080000px;}
.x4e_c01011{left:443.520000px;}
.x41_c01011{left:452.160000px;}
.x8_c01011{left:460.800000px;}
.x25_c01011{left:462.240000px;}
.x51_c01011{left:463.680000px;}
.x39_c01011{left:474.480000px;}
.x44_c01011{left:483.840000px;}
.x59_c01011{left:486.000000px;}
.x57_c01011{left:507.600000px;}
.x26_c01011{left:516.240000px;}
.x2c_c01011{left:517.680000px;}
.x13_c01011{left:527.040000px;}
.x52_c01011{left:528.480000px;}
.x35_c01011{left:537.840000px;}
.x9_c01011{left:548.640000px;}
.x14_c01011{left:558.720000px;}
.x2d_c01011{left:572.400000px;}
.xa_c01011{left:581.040000px;}
.x45_c01011{left:582.480000px;}
.x1d_c01011{left:591.840000px;}
.x55_c01011{left:604.800000px;}
.x36_c01011{left:615.600000px;}
.xb_c01011{left:624.240000px;}
.x2e_c01011{left:626.400000px;}
.x15_c01011{left:635.760000px;}
.x1e_c01011{left:658.080000px;}
.x49_c01011{left:659.520000px;}
.x53_c01011{left:670.320000px;}
.x2f_c01011{left:680.400000px;}
.x1_c01011{left:701.280000px;}
@media print{
.v1_c01011{vertical-align:-7.680000pt;}
.v0_c01011{vertical-align:0.000000pt;}
.v2_c01011{vertical-align:7.680000pt;}
.ls0_c01011{letter-spacing:0.000000pt;}
.ws2_c01011{word-spacing:0.000000pt;}
.ws1_c01011{word-spacing:1.713707pt;}
.ws0_c01011{word-spacing:112.278400pt;}
.fsd_c01011{font-size:10.240000pt;}
.fse_c01011{font-size:17.920000pt;}
.fsb_c01011{font-size:30.720000pt;}
.fs7_c01011{font-size:33.280000pt;}
.fsa_c01011{font-size:38.400000pt;}
.fs4_c01011{font-size:40.960000pt;}
.fs2_c01011{font-size:43.520000pt;}
.fs3_c01011{font-size:46.080000pt;}
.fs9_c01011{font-size:48.640000pt;}
.fs5_c01011{font-size:51.200000pt;}
.fs1_c01011{font-size:53.760000pt;}
.fs8_c01011{font-size:56.320000pt;}
.fsc_c01011{font-size:58.880000pt;}
.fs6_c01011{font-size:61.440000pt;}
.fs0_c01011{font-size:64.000000pt;}
.fs10_c01011{font-size:89.600000pt;}
.fsf_c01011{font-size:92.160000pt;}
.y0_c01011{bottom:0.000000pt;}
.y62_c01011{bottom:79.360000pt;}
.y63_c01011{bottom:81.280000pt;}
.y61_c01011{bottom:117.760000pt;}
.y60_c01011{bottom:118.400000pt;}
.y5e_c01011{bottom:119.040000pt;}
.y5d_c01011{bottom:119.680000pt;}
.y5f_c01011{bottom:120.320000pt;}
.y5b_c01011{bottom:155.520000pt;}
.y59_c01011{bottom:158.080000pt;}
.y5c_c01011{bottom:158.720000pt;}
.y5a_c01011{bottom:159.360000pt;}
.y58_c01011{bottom:193.920000pt;}
.y57_c01011{bottom:194.560000pt;}
.y56_c01011{bottom:196.480000pt;}
.y52_c01011{bottom:232.320000pt;}
.y53_c01011{bottom:234.240000pt;}
.y54_c01011{bottom:234.880000pt;}
.y55_c01011{bottom:235.520000pt;}
.y4c_c01011{bottom:270.720000pt;}
.y4f_c01011{bottom:271.360000pt;}
.y51_c01011{bottom:272.000000pt;}
.y4d_c01011{bottom:272.640000pt;}
.y4e_c01011{bottom:273.280000pt;}
.y50_c01011{bottom:273.920000pt;}
.y48_c01011{bottom:308.480000pt;}
.y4a_c01011{bottom:309.120000pt;}
.y4b_c01011{bottom:309.760000pt;}
.y49_c01011{bottom:311.680000pt;}
.y47_c01011{bottom:312.320000pt;}
.y43_c01011{bottom:346.880000pt;}
.y45_c01011{bottom:347.520000pt;}
.y44_c01011{bottom:349.440000pt;}
.y42_c01011{bottom:350.080000pt;}
.y46_c01011{bottom:350.720000pt;}
.y41_c01011{bottom:387.200000pt;}
.y40_c01011{bottom:388.480000pt;}
.y3e_c01011{bottom:423.680000pt;}
.y3d_c01011{bottom:424.320000pt;}
.y3c_c01011{bottom:426.240000pt;}
.y3f_c01011{bottom:426.880000pt;}
.y3b_c01011{bottom:462.080000pt;}
.y39_c01011{bottom:464.000000pt;}
.y3a_c01011{bottom:464.640000pt;}
.y38_c01011{bottom:465.280000pt;}
.y33_c01011{bottom:510.080000pt;}
.y36_c01011{bottom:510.720000pt;}
.y34_c01011{bottom:512.640000pt;}
.y37_c01011{bottom:515.200000pt;}
.y35_c01011{bottom:531.200000pt;}
.y32_c01011{bottom:531.840000pt;}
.y31_c01011{bottom:566.400000pt;}
.y2f_c01011{bottom:568.320000pt;}
.y30_c01011{bottom:568.960000pt;}
.y2e_c01011{bottom:569.600000pt;}
.y2d_c01011{bottom:616.960000pt;}
.y2c_c01011{bottom:617.600000pt;}
.y28_c01011{bottom:643.200000pt;}
.y2a_c01011{bottom:643.840000pt;}
.y2b_c01011{bottom:644.480000pt;}
.y29_c01011{bottom:645.760000pt;}
.y27_c01011{bottom:646.400000pt;}
.y25_c01011{bottom:671.360000pt;}
.y24_c01011{bottom:672.640000pt;}
.y26_c01011{bottom:673.920000pt;}
.y23_c01011{bottom:674.560000pt;}
.y21_c01011{bottom:700.800000pt;}
.y1e_c01011{bottom:701.440000pt;}
.y1f_c01011{bottom:702.720000pt;}
.y20_c01011{bottom:703.360000pt;}
.y22_c01011{bottom:705.280000pt;}
.y1d_c01011{bottom:729.600000pt;}
.y1b_c01011{bottom:730.240000pt;}
.y1c_c01011{bottom:731.520000pt;}
.y19_c01011{bottom:732.160000pt;}
.y1a_c01011{bottom:732.800000pt;}
.y18_c01011{bottom:767.360000pt;}
.y17_c01011{bottom:769.920000pt;}
.y16_c01011{bottom:805.120000pt;}
.y15_c01011{bottom:807.040000pt;}
.y14_c01011{bottom:807.680000pt;}
.y13_c01011{bottom:808.320000pt;}
.y12_c01011{bottom:852.480000pt;}
.yf_c01011{bottom:853.120000pt;}
.ye_c01011{bottom:853.760000pt;}
.yd_c01011{bottom:854.400000pt;}
.y11_c01011{bottom:855.040000pt;}
.y10_c01011{bottom:855.680000pt;}
.y9_c01011{bottom:890.240000pt;}
.yc_c01011{bottom:890.880000pt;}
.ya_c01011{bottom:892.160000pt;}
.yb_c01011{bottom:892.800000pt;}
.y7_c01011{bottom:893.440000pt;}
.y8_c01011{bottom:894.080000pt;}
.y6_c01011{bottom:928.000000pt;}
.y2_c01011{bottom:929.280000pt;}
.y5_c01011{bottom:930.560000pt;}
.y4_c01011{bottom:931.200000pt;}
.y3_c01011{bottom:931.840000pt;}
.y1_c01011{bottom:986.240000pt;}
.hf_c01011{height:9.215000pt;}
.h10_c01011{height:16.126250pt;}
.hd_c01011{height:27.645000pt;}
.h9_c01011{height:29.948750pt;}
.hc_c01011{height:34.556250pt;}
.h6_c01011{height:36.860000pt;}
.h4_c01011{height:39.163750pt;}
.h5_c01011{height:41.467500pt;}
.hb_c01011{height:43.771250pt;}
.h7_c01011{height:46.075000pt;}
.h13_c01011{height:46.843750pt;}
.h3_c01011{height:48.378750pt;}
.ha_c01011{height:50.682500pt;}
.he_c01011{height:52.986250pt;}
.h8_c01011{height:55.290000pt;}
.h2_c01011{height:57.593750pt;}
.h12_c01011{height:80.631250pt;}
.h11_c01011{height:82.935000pt;}
.h0_c01011{height:1031.040000pt;}
.h1_c01011{height:1031.333333pt;}
.w0_c01011{width:688.000000pt;}
.x0_c01011{left:0.000000pt;}
.x1f_c01011{left:44.800000pt;}
.x2_c01011{left:46.080000pt;}
.x21_c01011{left:47.360000pt;}
.x3b_c01011{left:56.960000pt;}
.x22_c01011{left:65.280000pt;}
.x20_c01011{left:75.520000pt;}
.x3a_c01011{left:76.800000pt;}
.xc_c01011{left:84.480000pt;}
.x30_c01011{left:104.960000pt;}
.x23_c01011{left:113.920000pt;}
.x3c_c01011{left:115.200000pt;}
.x46_c01011{left:122.880000pt;}
.xd_c01011{left:131.840000pt;}
.x32_c01011{left:133.120000pt;}
.x4a_c01011{left:134.400000pt;}
.x16_c01011{left:142.080000pt;}
.x4f_c01011{left:143.360000pt;}
.x33_c01011{left:151.680000pt;}
.x27_c01011{left:152.960000pt;}
.x4b_c01011{left:161.920000pt;}
.x5e_c01011{left:163.200000pt;}
.x1a_c01011{left:171.520000pt;}
.x3_c01011{left:180.480000pt;}
.x5c_c01011{left:182.400000pt;}
.x3d_c01011{left:191.360000pt;}
.x5f_c01011{left:201.600000pt;}
.x34_c01011{left:210.560000pt;}
.x4_c01011{left:218.880000pt;}
.x54_c01011{left:220.160000pt;}
.x42_c01011{left:229.120000pt;}
.xe_c01011{left:238.080000pt;}
.x4c_c01011{left:239.360000pt;}
.x3e_c01011{left:248.960000pt;}
.x17_c01011{left:257.280000pt;}
.x28_c01011{left:259.200000pt;}
.xf_c01011{left:266.880000pt;}
.x37_c01011{left:268.160000pt;}
.x5_c01011{left:275.200000pt;}
.x1b_c01011{left:276.480000pt;}
.x29_c01011{left:286.080000pt;}
.x5d_c01011{left:288.000000pt;}
.x18_c01011{left:295.040000pt;}
.x38_c01011{left:296.320000pt;}
.x47_c01011{left:297.600000pt;}
.x1c_c01011{left:305.280000pt;}
.x3f_c01011{left:306.560000pt;}
.x2a_c01011{left:315.520000pt;}
.x5a_c01011{left:316.800000pt;}
.x58_c01011{left:326.400000pt;}
.x10_c01011{left:332.800000pt;}
.x19_c01011{left:334.080000pt;}
.x4d_c01011{left:336.000000pt;}
.x6_c01011{left:343.680000pt;}
.x56_c01011{left:345.600000pt;}
.x11_c01011{left:352.000000pt;}
.x2b_c01011{left:353.920000pt;}
.x50_c01011{left:355.200000pt;}
.x31_c01011{left:362.240000pt;}
.x40_c01011{left:364.800000pt;}
.x7_c01011{left:372.480000pt;}
.x5b_c01011{left:374.400000pt;}
.x24_c01011{left:381.440000pt;}
.x43_c01011{left:384.000000pt;}
.x12_c01011{left:391.040000pt;}
.x48_c01011{left:392.960000pt;}
.x4e_c01011{left:394.240000pt;}
.x41_c01011{left:401.920000pt;}
.x8_c01011{left:409.600000pt;}
.x25_c01011{left:410.880000pt;}
.x51_c01011{left:412.160000pt;}
.x39_c01011{left:421.760000pt;}
.x44_c01011{left:430.080000pt;}
.x59_c01011{left:432.000000pt;}
.x57_c01011{left:451.200000pt;}
.x26_c01011{left:458.880000pt;}
.x2c_c01011{left:460.160000pt;}
.x13_c01011{left:468.480000pt;}
.x52_c01011{left:469.760000pt;}
.x35_c01011{left:478.080000pt;}
.x9_c01011{left:487.680000pt;}
.x14_c01011{left:496.640000pt;}
.x2d_c01011{left:508.800000pt;}
.xa_c01011{left:516.480000pt;}
.x45_c01011{left:517.760000pt;}
.x1d_c01011{left:526.080000pt;}
.x55_c01011{left:537.600000pt;}
.x36_c01011{left:547.200000pt;}
.xb_c01011{left:554.880000pt;}
.x2e_c01011{left:556.800000pt;}
.x15_c01011{left:565.120000pt;}
.x1e_c01011{left:584.960000pt;}
.x49_c01011{left:586.240000pt;}
.x53_c01011{left:595.840000pt;}
.x2f_c01011{left:604.800000pt;}
.x1_c01011{left:623.360000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ea5cc6ed0e64cedee7147ba8.woff2')format("woff");}.ff1_c01012{font-family:ff1_c01012;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3a_c01012{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m8_c01012{transform:matrix(0.208900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208900,0.000000,0.000000,0.250000,0,0);}
.mc_c01012{transform:matrix(0.210900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210900,0.000000,0.000000,0.250000,0,0);}
.m6_c01012{transform:matrix(0.216950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216950,0.000000,0.000000,0.250000,0,0);}
.m2_c01012{transform:matrix(0.225100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225100,0.000000,0.000000,0.250000,0,0);}
.m4_c01012{transform:matrix(0.231525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231525,0.000000,0.000000,0.250000,0,0);}
.m45_c01012{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m1_c01012{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);}
.m5b_c01012{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);}
.m3b_c01012{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m9_c01012{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01012{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mf_c01012{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m38_c01012{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m42_c01012{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m7_c01012{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01012{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.md_c01012{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01012{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mb_c01012{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);}
.m35_c01012{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m5a_c01012{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);}
.m4e_c01012{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_c01012{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m5_c01012{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01012{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);}
.m24_c01012{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m23_c01012{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m11_c01012{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01012{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m18_c01012{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);}
.m3d_c01012{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m49_c01012{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);}
.m3e_c01012{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);}
.m0_c01012{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_c01012{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m15_c01012{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);}
.me_c01012{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m29_c01012{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);}
.m4f_c01012{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m52_c01012{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m46_c01012{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);}
.m33_c01012{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m53_c01012{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m30_c01012{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);}
.m20_c01012{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m54_c01012{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01012{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m56_c01012{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m27_c01012{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m39_c01012{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_c01012{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01012{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m55_c01012{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m22_c01012{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m36_c01012{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);}
.m2b_c01012{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m5c_c01012{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m51_c01012{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);}
.m48_c01012{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m47_c01012{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01012{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m10_c01012{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m12_c01012{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);}
.m3c_c01012{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m31_c01012{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m21_c01012{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m16_c01012{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m50_c01012{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01012{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m59_c01012{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m43_c01012{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);}
.m34_c01012{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m26_c01012{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m14_c01012{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m28_c01012{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);}
.m37_c01012{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01012{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);}
.m1d_c01012{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);}
.m4d_c01012{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m17_c01012{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m32_c01012{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01012{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m60_c01012{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m44_c01012{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);}
.m5e_c01012{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01012{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);}
.m25_c01012{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m13_c01012{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m57_c01012{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);}
.m2f_c01012{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01012{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m5f_c01012{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01012{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);}
.m4c_c01012{transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);}
.m40_c01012{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.m58_c01012{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.v1_c01012{vertical-align:-11.520000px;}
.v0_c01012{vertical-align:0.000000px;}
.v2_c01012{vertical-align:5.760000px;}
.ls0_c01012{letter-spacing:0.000000px;}
.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.233520px;}
.ws2_c01012{word-spacing:0.000000px;}
.ws1_c01012{word-spacing:3.406080px;}
.fc0_c01012{color:transparent;}
.fs9_c01012{font-size:31.680000px;}
.fs7_c01012{font-size:34.560000px;}
.fsd_c01012{font-size:37.440000px;}
.fs11_c01012{font-size:40.320000px;}
.fs0_c01012{font-size:43.200000px;}
.fs1_c01012{font-size:46.080000px;}
.fs4_c01012{font-size:48.960000px;}
.fs6_c01012{font-size:51.840000px;}
.fs5_c01012{font-size:54.720000px;}
.fsc_c01012{font-size:57.600000px;}
.fs8_c01012{font-size:60.480000px;}
.fsb_c01012{font-size:63.360000px;}
.fsf_c01012{font-size:66.240000px;}
.fsa_c01012{font-size:69.120000px;}
.fs10_c01012{font-size:72.000000px;}
.fse_c01012{font-size:92.160000px;}
.fs3_c01012{font-size:100.800000px;}
.fs2_c01012{font-size:103.680000px;}
.y0_c01012{bottom:0.000000px;}
.y5c_c01012{bottom:90.000000px;}
.y5e_c01012{bottom:90.720000px;}
.y5b_c01012{bottom:92.880000px;}
.y5d_c01012{bottom:93.600000px;}
.y5a_c01012{bottom:132.480000px;}
.y57_c01012{bottom:135.360000px;}
.y58_c01012{bottom:136.800000px;}
.y59_c01012{bottom:137.520000px;}
.y55_c01012{bottom:176.400000px;}
.y54_c01012{bottom:179.280000px;}
.y56_c01012{bottom:180.000000px;}
.y53_c01012{bottom:219.600000px;}
.y51_c01012{bottom:221.760000px;}
.y52_c01012{bottom:222.480000px;}
.y50_c01012{bottom:275.040000px;}
.y4f_c01012{bottom:275.760000px;}
.y4e_c01012{bottom:315.360000px;}
.y4c_c01012{bottom:316.080000px;}
.y4b_c01012{bottom:318.240000px;}
.y4d_c01012{bottom:318.960000px;}
.y46_c01012{bottom:358.560000px;}
.y47_c01012{bottom:359.280000px;}
.y49_c01012{bottom:360.720000px;}
.y48_c01012{bottom:361.440000px;}
.y4a_c01012{bottom:362.160000px;}
.y44_c01012{bottom:401.760000px;}
.y45_c01012{bottom:403.920000px;}
.y43_c01012{bottom:404.640000px;}
.y42_c01012{bottom:444.240000px;}
.y3e_c01012{bottom:444.960000px;}
.y3f_c01012{bottom:447.120000px;}
.y40_c01012{bottom:447.840000px;}
.y41_c01012{bottom:448.560000px;}
.y3c_c01012{bottom:487.440000px;}
.y3b_c01012{bottom:488.160000px;}
.y3d_c01012{bottom:490.320000px;}
.y3a_c01012{bottom:491.040000px;}
.y39_c01012{bottom:530.640000px;}
.y38_c01012{bottom:531.360000px;}
.y34_c01012{bottom:532.080000px;}
.y35_c01012{bottom:533.520000px;}
.y36_c01012{bottom:534.240000px;}
.y37_c01012{bottom:534.960000px;}
.y33_c01012{bottom:545.040000px;}
.y30_c01012{bottom:573.840000px;}
.y32_c01012{bottom:574.560000px;}
.y2e_c01012{bottom:576.000000px;}
.y31_c01012{bottom:576.720000px;}
.y2f_c01012{bottom:577.440000px;}
.y2d_c01012{bottom:616.320000px;}
.y2c_c01012{bottom:617.040000px;}
.y2b_c01012{bottom:619.920000px;}
.y2a_c01012{bottom:620.640000px;}
.y29_c01012{bottom:659.520000px;}
.y28_c01012{bottom:660.240000px;}
.y27_c01012{bottom:662.400000px;}
.y26_c01012{bottom:663.120000px;}
.y23_c01012{bottom:703.440000px;}
.y25_c01012{bottom:704.880000px;}
.y22_c01012{bottom:705.600000px;}
.y24_c01012{bottom:706.320000px;}
.y20_c01012{bottom:744.480000px;}
.y1f_c01012{bottom:745.200000px;}
.y21_c01012{bottom:745.920000px;}
.y1e_c01012{bottom:747.360000px;}
.y1d_c01012{bottom:748.800000px;}
.y1c_c01012{bottom:801.360000px;}
.y1b_c01012{bottom:802.080000px;}
.y19_c01012{bottom:841.680000px;}
.y1a_c01012{bottom:843.840000px;}
.y18_c01012{bottom:844.560000px;}
.y17_c01012{bottom:845.280000px;}
.y15_c01012{bottom:883.440000px;}
.y14_c01012{bottom:884.160000px;}
.y16_c01012{bottom:886.320000px;}
.y12_c01012{bottom:887.040000px;}
.y13_c01012{bottom:887.760000px;}
.y11_c01012{bottom:926.640000px;}
.yf_c01012{bottom:928.800000px;}
.y10_c01012{bottom:929.520000px;}
.ye_c01012{bottom:930.240000px;}
.yd_c01012{bottom:979.200000px;}
.yc_c01012{bottom:979.920000px;}
.y9_c01012{bottom:981.360000px;}
.yb_c01012{bottom:983.520000px;}
.y8_c01012{bottom:984.240000px;}
.ya_c01012{bottom:984.960000px;}
.y7_c01012{bottom:1033.200000px;}
.y5_c01012{bottom:1033.920000px;}
.y3_c01012{bottom:1034.640000px;}
.y6_c01012{bottom:1036.800000px;}
.y4_c01012{bottom:1037.520000px;}
.y2_c01012{bottom:1038.240000px;}
.y1_c01012{bottom:1038.960000px;}
.hb_c01012{height:28.508906px;}
.h9_c01012{height:31.100625px;}
.hf_c01012{height:33.692344px;}
.h13_c01012{height:36.284062px;}
.h2_c01012{height:38.875781px;}
.h3_c01012{height:41.467500px;}
.h6_c01012{height:44.059219px;}
.h8_c01012{height:46.650937px;}
.h7_c01012{height:49.242656px;}
.he_c01012{height:51.834375px;}
.ha_c01012{height:54.426094px;}
.hd_c01012{height:57.017812px;}
.h11_c01012{height:59.609531px;}
.hc_c01012{height:62.201250px;}
.h12_c01012{height:64.792969px;}
.h10_c01012{height:82.935000px;}
.h5_c01012{height:90.710156px;}
.h4_c01012{height:93.301875px;}
.h0_c01012{height:1155.600000px;}
.h1_c01012{height:1155.750000px;}
.w0_c01012{width:777.600000px;}
.w1_c01012{width:777.750000px;}
.x0_c01012{left:0.000000px;}
.x1e_c01012{left:54.000000px;}
.x16_c01012{left:55.440000px;}
.x31_c01012{left:87.120000px;}
.x1_c01012{left:88.560000px;}
.x26_c01012{left:97.200000px;}
.xb_c01012{left:120.240000px;}
.x38_c01012{left:130.320000px;}
.x47_c01012{left:140.400000px;}
.x17_c01012{left:141.840000px;}
.x4e_c01012{left:151.200000px;}
.x2_c01012{left:153.360000px;}
.xe_c01012{left:162.000000px;}
.x1f_c01012{left:163.440000px;}
.x18_c01012{left:173.520000px;}
.x32_c01012{left:174.960000px;}
.x3_c01012{left:184.320000px;}
.x48_c01012{left:185.760000px;}
.xf_c01012{left:194.400000px;}
.x33_c01012{left:207.360000px;}
.x39_c01012{left:216.000000px;}
.x4_c01012{left:217.440000px;}
.x2a_c01012{left:227.520000px;}
.x10_c01012{left:237.600000px;}
.x42_c01012{left:239.040000px;}
.x5_c01012{left:249.120000px;}
.x49_c01012{left:250.560000px;}
.x2b_c01012{left:259.200000px;}
.x27_c01012{left:260.640000px;}
.x20_c01012{left:270.720000px;}
.x6_c01012{left:282.240000px;}
.x34_c01012{left:293.040000px;}
.x21_c01012{left:303.120000px;}
.x19_c01012{left:304.560000px;}
.x7_c01012{left:313.920000px;}
.x4a_c01012{left:315.360000px;}
.xc_c01012{left:324.720000px;}
.x3d_c01012{left:326.160000px;}
.x4b_c01012{left:335.520000px;}
.x8_c01012{left:347.040000px;}
.x11_c01012{left:357.120000px;}
.xd_c01012{left:358.560000px;}
.x37_c01012{left:369.360000px;}
.x3a_c01012{left:379.440000px;}
.x9_c01012{left:390.240000px;}
.x2c_c01012{left:400.320000px;}
.x45_c01012{left:411.840000px;}
.x12_c01012{left:421.920000px;}
.xa_c01012{left:423.360000px;}
.x22_c01012{left:433.440000px;}
.x1a_c01012{left:443.520000px;}
.x46_c01012{left:444.960000px;}
.x3c_c01012{left:455.760000px;}
.x23_c01012{left:464.400000px;}
.x4c_c01012{left:466.560000px;}
.x35_c01012{left:475.920000px;}
.x3e_c01012{left:477.360000px;}
.x28_c01012{left:486.720000px;}
.x43_c01012{left:498.240000px;}
.x2e_c01012{left:509.760000px;}
.x13_c01012{left:519.840000px;}
.x24_c01012{left:529.920000px;}
.x2f_c01012{left:531.360000px;}
.x1b_c01012{left:541.440000px;}
.x14_c01012{left:552.960000px;}
.x1c_c01012{left:562.320000px;}
.x3f_c01012{left:574.560000px;}
.x4d_c01012{left:576.000000px;}
.x15_c01012{left:584.640000px;}
.x44_c01012{left:586.080000px;}
.x1d_c01012{left:595.440000px;}
.x30_c01012{left:605.520000px;}
.x25_c01012{left:606.960000px;}
.x2d_c01012{left:617.760000px;}
.x3b_c01012{left:628.560000px;}
.x41_c01012{left:639.360000px;}
.x29_c01012{left:650.160000px;}
.x36_c01012{left:651.600000px;}
.x40_c01012{left:660.960000px;}
.x4f_c01012{left:663.120000px;}
@media print{
.v1_c01012{vertical-align:-10.240000pt;}
.v0_c01012{vertical-align:0.000000pt;}
.v2_c01012{vertical-align:5.120000pt;}
.ls0_c01012{letter-spacing:0.000000pt;}
.ws0_c01012{word-spacing:-0.207573pt;}
.ws2_c01012{word-spacing:0.000000pt;}
.ws1_c01012{word-spacing:3.027627pt;}
.fs9_c01012{font-size:28.160000pt;}
.fs7_c01012{font-size:30.720000pt;}
.fsd_c01012{font-size:33.280000pt;}
.fs11_c01012{font-size:35.840000pt;}
.fs0_c01012{font-size:38.400000pt;}
.fs1_c01012{font-size:40.960000pt;}
.fs4_c01012{font-size:43.520000pt;}
.fs6_c01012{font-size:46.080000pt;}
.fs5_c01012{font-size:48.640000pt;}
.fsc_c01012{font-size:51.200000pt;}
.fs8_c01012{font-size:53.760000pt;}
.fsb_c01012{font-size:56.320000pt;}
.fsf_c01012{font-size:58.880000pt;}
.fsa_c01012{font-size:61.440000pt;}
.fs10_c01012{font-size:64.000000pt;}
.fse_c01012{font-size:81.920000pt;}
.fs3_c01012{font-size:89.600000pt;}
.fs2_c01012{font-size:92.160000pt;}
.y0_c01012{bottom:0.000000pt;}
.y5c_c01012{bottom:80.000000pt;}
.y5e_c01012{bottom:80.640000pt;}
.y5b_c01012{bottom:82.560000pt;}
.y5d_c01012{bottom:83.200000pt;}
.y5a_c01012{bottom:117.760000pt;}
.y57_c01012{bottom:120.320000pt;}
.y58_c01012{bottom:121.600000pt;}
.y59_c01012{bottom:122.240000pt;}
.y55_c01012{bottom:156.800000pt;}
.y54_c01012{bottom:159.360000pt;}
.y56_c01012{bottom:160.000000pt;}
.y53_c01012{bottom:195.200000pt;}
.y51_c01012{bottom:197.120000pt;}
.y52_c01012{bottom:197.760000pt;}
.y50_c01012{bottom:244.480000pt;}
.y4f_c01012{bottom:245.120000pt;}
.y4e_c01012{bottom:280.320000pt;}
.y4c_c01012{bottom:280.960000pt;}
.y4b_c01012{bottom:282.880000pt;}
.y4d_c01012{bottom:283.520000pt;}
.y46_c01012{bottom:318.720000pt;}
.y47_c01012{bottom:319.360000pt;}
.y49_c01012{bottom:320.640000pt;}
.y48_c01012{bottom:321.280000pt;}
.y4a_c01012{bottom:321.920000pt;}
.y44_c01012{bottom:357.120000pt;}
.y45_c01012{bottom:359.040000pt;}
.y43_c01012{bottom:359.680000pt;}
.y42_c01012{bottom:394.880000pt;}
.y3e_c01012{bottom:395.520000pt;}
.y3f_c01012{bottom:397.440000pt;}
.y40_c01012{bottom:398.080000pt;}
.y41_c01012{bottom:398.720000pt;}
.y3c_c01012{bottom:433.280000pt;}
.y3b_c01012{bottom:433.920000pt;}
.y3d_c01012{bottom:435.840000pt;}
.y3a_c01012{bottom:436.480000pt;}
.y39_c01012{bottom:471.680000pt;}
.y38_c01012{bottom:472.320000pt;}
.y34_c01012{bottom:472.960000pt;}
.y35_c01012{bottom:474.240000pt;}
.y36_c01012{bottom:474.880000pt;}
.y37_c01012{bottom:475.520000pt;}
.y33_c01012{bottom:484.480000pt;}
.y30_c01012{bottom:510.080000pt;}
.y32_c01012{bottom:510.720000pt;}
.y2e_c01012{bottom:512.000000pt;}
.y31_c01012{bottom:512.640000pt;}
.y2f_c01012{bottom:513.280000pt;}
.y2d_c01012{bottom:547.840000pt;}
.y2c_c01012{bottom:548.480000pt;}
.y2b_c01012{bottom:551.040000pt;}
.y2a_c01012{bottom:551.680000pt;}
.y29_c01012{bottom:586.240000pt;}
.y28_c01012{bottom:586.880000pt;}
.y27_c01012{bottom:588.800000pt;}
.y26_c01012{bottom:589.440000pt;}
.y23_c01012{bottom:625.280000pt;}
.y25_c01012{bottom:626.560000pt;}
.y22_c01012{bottom:627.200000pt;}
.y24_c01012{bottom:627.840000pt;}
.y20_c01012{bottom:661.760000pt;}
.y1f_c01012{bottom:662.400000pt;}
.y21_c01012{bottom:663.040000pt;}
.y1e_c01012{bottom:664.320000pt;}
.y1d_c01012{bottom:665.600000pt;}
.y1c_c01012{bottom:712.320000pt;}
.y1b_c01012{bottom:712.960000pt;}
.y19_c01012{bottom:748.160000pt;}
.y1a_c01012{bottom:750.080000pt;}
.y18_c01012{bottom:750.720000pt;}
.y17_c01012{bottom:751.360000pt;}
.y15_c01012{bottom:785.280000pt;}
.y14_c01012{bottom:785.920000pt;}
.y16_c01012{bottom:787.840000pt;}
.y12_c01012{bottom:788.480000pt;}
.y13_c01012{bottom:789.120000pt;}
.y11_c01012{bottom:823.680000pt;}
.yf_c01012{bottom:825.600000pt;}
.y10_c01012{bottom:826.240000pt;}
.ye_c01012{bottom:826.880000pt;}
.yd_c01012{bottom:870.400000pt;}
.yc_c01012{bottom:871.040000pt;}
.y9_c01012{bottom:872.320000pt;}
.yb_c01012{bottom:874.240000pt;}
.y8_c01012{bottom:874.880000pt;}
.ya_c01012{bottom:875.520000pt;}
.y7_c01012{bottom:918.400000pt;}
.y5_c01012{bottom:919.040000pt;}
.y3_c01012{bottom:919.680000pt;}
.y6_c01012{bottom:921.600000pt;}
.y4_c01012{bottom:922.240000pt;}
.y2_c01012{bottom:922.880000pt;}
.y1_c01012{bottom:923.520000pt;}
.hb_c01012{height:25.341250pt;}
.h9_c01012{height:27.645000pt;}
.hf_c01012{height:29.948750pt;}
.h13_c01012{height:32.252500pt;}
.h2_c01012{height:34.556250pt;}
.h3_c01012{height:36.860000pt;}
.h6_c01012{height:39.163750pt;}
.h8_c01012{height:41.467500pt;}
.h7_c01012{height:43.771250pt;}
.he_c01012{height:46.075000pt;}
.ha_c01012{height:48.378750pt;}
.hd_c01012{height:50.682500pt;}
.h11_c01012{height:52.986250pt;}
.hc_c01012{height:55.290000pt;}
.h12_c01012{height:57.593750pt;}
.h10_c01012{height:73.720000pt;}
.h5_c01012{height:80.631250pt;}
.h4_c01012{height:82.935000pt;}
.h0_c01012{height:1027.200000pt;}
.h1_c01012{height:1027.333333pt;}
.w0_c01012{width:691.200000pt;}
.w1_c01012{width:691.333333pt;}
.x0_c01012{left:0.000000pt;}
.x1e_c01012{left:48.000000pt;}
.x16_c01012{left:49.280000pt;}
.x31_c01012{left:77.440000pt;}
.x1_c01012{left:78.720000pt;}
.x26_c01012{left:86.400000pt;}
.xb_c01012{left:106.880000pt;}
.x38_c01012{left:115.840000pt;}
.x47_c01012{left:124.800000pt;}
.x17_c01012{left:126.080000pt;}
.x4e_c01012{left:134.400000pt;}
.x2_c01012{left:136.320000pt;}
.xe_c01012{left:144.000000pt;}
.x1f_c01012{left:145.280000pt;}
.x18_c01012{left:154.240000pt;}
.x32_c01012{left:155.520000pt;}
.x3_c01012{left:163.840000pt;}
.x48_c01012{left:165.120000pt;}
.xf_c01012{left:172.800000pt;}
.x33_c01012{left:184.320000pt;}
.x39_c01012{left:192.000000pt;}
.x4_c01012{left:193.280000pt;}
.x2a_c01012{left:202.240000pt;}
.x10_c01012{left:211.200000pt;}
.x42_c01012{left:212.480000pt;}
.x5_c01012{left:221.440000pt;}
.x49_c01012{left:222.720000pt;}
.x2b_c01012{left:230.400000pt;}
.x27_c01012{left:231.680000pt;}
.x20_c01012{left:240.640000pt;}
.x6_c01012{left:250.880000pt;}
.x34_c01012{left:260.480000pt;}
.x21_c01012{left:269.440000pt;}
.x19_c01012{left:270.720000pt;}
.x7_c01012{left:279.040000pt;}
.x4a_c01012{left:280.320000pt;}
.xc_c01012{left:288.640000pt;}
.x3d_c01012{left:289.920000pt;}
.x4b_c01012{left:298.240000pt;}
.x8_c01012{left:308.480000pt;}
.x11_c01012{left:317.440000pt;}
.xd_c01012{left:318.720000pt;}
.x37_c01012{left:328.320000pt;}
.x3a_c01012{left:337.280000pt;}
.x9_c01012{left:346.880000pt;}
.x2c_c01012{left:355.840000pt;}
.x45_c01012{left:366.080000pt;}
.x12_c01012{left:375.040000pt;}
.xa_c01012{left:376.320000pt;}
.x22_c01012{left:385.280000pt;}
.x1a_c01012{left:394.240000pt;}
.x46_c01012{left:395.520000pt;}
.x3c_c01012{left:405.120000pt;}
.x23_c01012{left:412.800000pt;}
.x4c_c01012{left:414.720000pt;}
.x35_c01012{left:423.040000pt;}
.x3e_c01012{left:424.320000pt;}
.x28_c01012{left:432.640000pt;}
.x43_c01012{left:442.880000pt;}
.x2e_c01012{left:453.120000pt;}
.x13_c01012{left:462.080000pt;}
.x24_c01012{left:471.040000pt;}
.x2f_c01012{left:472.320000pt;}
.x1b_c01012{left:481.280000pt;}
.x14_c01012{left:491.520000pt;}
.x1c_c01012{left:499.840000pt;}
.x3f_c01012{left:510.720000pt;}
.x4d_c01012{left:512.000000pt;}
.x15_c01012{left:519.680000pt;}
.x44_c01012{left:520.960000pt;}
.x1d_c01012{left:529.280000pt;}
.x30_c01012{left:538.240000pt;}
.x25_c01012{left:539.520000pt;}
.x2d_c01012{left:549.120000pt;}
.x3b_c01012{left:558.720000pt;}
.x41_c01012{left:568.320000pt;}
.x29_c01012{left:577.920000pt;}
.x36_c01012{left:579.200000pt;}
.x40_c01012{left:587.520000pt;}
.x4f_c01012{left:589.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d53e8aad467283a88d8e47ea.woff2')format("woff");}.ff1_c01013{font-family:ff1_c01013;line-height:1.109863;font-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_c01013{transform:matrix(0.089725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089725,0.000000,0.000000,0.250000,0,0);}
.m5_c01013{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);}
.m58_c01013{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);}
.m33_c01013{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m40_c01013{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m14_c01013{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);}
.m36_c01013{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m10_c01013{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01013{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m5a_c01013{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01013{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m30_c01013{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m5b_c01013{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01013{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01013{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m12_c01013{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m56_c01013{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m31_c01013{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m13_c01013{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01013{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m59_c01013{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);}
.m25_c01013{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01013{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);}
.m46_c01013{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m23_c01013{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);}
.m5c_c01013{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m0_c01013{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m22_c01013{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m8_c01013{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);}
.m1a_c01013{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m50_c01013{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);}
.m3c_c01013{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m39_c01013{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m6_c01013{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);}
.mb_c01013{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);}
.m2f_c01013{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);}
.m21_c01013{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);}
.m35_c01013{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);}
.m1e_c01013{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);}
.m42_c01013{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);}
.m52_c01013{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m38_c01013{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01013{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m27_c01013{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_c01013{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m54_c01013{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);}
.m20_c01013{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);}
.m5d_c01013{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.md_c01013{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.ma_c01013{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01013{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);}
.m17_c01013{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m9_c01013{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m32_c01013{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);}
.mc_c01013{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01013{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);}
.m3f_c01013{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m49_c01013{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01013{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01013{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);}
.m44_c01013{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m57_c01013{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);}
.m47_c01013{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m34_c01013{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01013{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m2_c01013{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01013{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);}
.mf_c01013{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m15_c01013{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m55_c01013{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);}
.m4e_c01013{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01013{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.me_c01013{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m16_c01013{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);}
.m26_c01013{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01013{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m37_c01013{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01013{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m19_c01013{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);}
.m4d_c01013{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m3_c01013{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);}
.m5e_c01013{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m48_c01013{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m24_c01013{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m53_c01013{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m11_c01013{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m45_c01013{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m4_c01013{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m29_c01013{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);}
.m18_c01013{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);}
.m7_c01013{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m43_c01013{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m51_c01013{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01013{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.m41_c01013{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.v0_c01013{vertical-align:0.000000px;}
.ls0_c01013{letter-spacing:0.000000px;}
.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;}
.fc0_c01013{color:transparent;}
.fsd_c01013{font-size:20.160000px;}
.fs3_c01013{font-size:34.560000px;}
.fs9_c01013{font-size:37.440000px;}
.fsa_c01013{font-size:43.200000px;}
.fs6_c01013{font-size:46.080000px;}
.fs4_c01013{font-size:48.960000px;}
.fs7_c01013{font-size:51.840000px;}
.fsc_c01013{font-size:54.720000px;}
.fsb_c01013{font-size:57.600000px;}
.fs2_c01013{font-size:60.480000px;}
.fs5_c01013{font-size:63.360000px;}
.fs8_c01013{font-size:66.240000px;}
.fs1_c01013{font-size:69.120000px;}
.fs0_c01013{font-size:72.000000px;}
.y0_c01013{bottom:0.000000px;}
.y65_c01013{bottom:38.880000px;}
.y68_c01013{bottom:39.600000px;}
.y66_c01013{bottom:41.760000px;}
.y67_c01013{bottom:42.480000px;}
.y62_c01013{bottom:82.080000px;}
.y64_c01013{bottom:83.520000px;}
.y61_c01013{bottom:85.680000px;}
.y63_c01013{bottom:86.400000px;}
.y58_c01013{bottom:136.800000px;}
.y5b_c01013{bottom:137.520000px;}
.y60_c01013{bottom:138.960000px;}
.y5c_c01013{bottom:158.400000px;}
.y5a_c01013{bottom:159.120000px;}
.y57_c01013{bottom:161.280000px;}
.y5e_c01013{bottom:162.000000px;}
.y5f_c01013{bottom:164.880000px;}
.y59_c01013{bottom:182.160000px;}
.y56_c01013{bottom:182.880000px;}
.y5d_c01013{bottom:183.600000px;}
.y54_c01013{bottom:222.480000px;}
.y55_c01013{bottom:223.200000px;}
.y53_c01013{bottom:225.360000px;}
.y50_c01013{bottom:264.960000px;}
.y51_c01013{bottom:265.680000px;}
.y52_c01013{bottom:267.840000px;}
.y4f_c01013{bottom:268.560000px;}
.y4e_c01013{bottom:308.880000px;}
.y4c_c01013{bottom:309.600000px;}
.y4b_c01013{bottom:311.040000px;}
.y4a_c01013{bottom:311.760000px;}
.y4d_c01013{bottom:312.480000px;}
.y49_c01013{bottom:352.080000px;}
.y47_c01013{bottom:354.240000px;}
.y48_c01013{bottom:354.960000px;}
.y42_c01013{bottom:394.560000px;}
.y44_c01013{bottom:395.280000px;}
.y46_c01013{bottom:396.720000px;}
.y43_c01013{bottom:397.440000px;}
.y45_c01013{bottom:398.160000px;}
.y41_c01013{bottom:437.040000px;}
.y3e_c01013{bottom:437.760000px;}
.y40_c01013{bottom:439.920000px;}
.y3f_c01013{bottom:440.640000px;}
.y3c_c01013{bottom:481.680000px;}
.y3d_c01013{bottom:482.400000px;}
.y3b_c01013{bottom:483.120000px;}
.y39_c01013{bottom:522.720000px;}
.y38_c01013{bottom:523.440000px;}
.y3a_c01013{bottom:524.880000px;}
.y36_c01013{bottom:525.600000px;}
.y37_c01013{bottom:526.320000px;}
.y31_c01013{bottom:565.200000px;}
.y32_c01013{bottom:565.920000px;}
.y35_c01013{bottom:567.360000px;}
.y34_c01013{bottom:568.080000px;}
.y33_c01013{bottom:568.800000px;}
.y2f_c01013{bottom:607.680000px;}
.y2d_c01013{bottom:608.400000px;}
.y30_c01013{bottom:610.560000px;}
.y2e_c01013{bottom:611.280000px;}
.y2a_c01013{bottom:650.880000px;}
.y2b_c01013{bottom:652.320000px;}
.y29_c01013{bottom:653.760000px;}
.y2c_c01013{bottom:654.480000px;}
.y27_c01013{bottom:693.360000px;}
.y25_c01013{bottom:694.080000px;}
.y26_c01013{bottom:696.240000px;}
.y24_c01013{bottom:696.960000px;}
.y28_c01013{bottom:697.680000px;}
.y20_c01013{bottom:736.560000px;}
.y21_c01013{bottom:737.280000px;}
.y22_c01013{bottom:739.440000px;}
.y1f_c01013{bottom:740.160000px;}
.y23_c01013{bottom:740.880000px;}
.y1d_c01013{bottom:779.760000px;}
.y1e_c01013{bottom:780.480000px;}
.y1c_c01013{bottom:782.640000px;}
.y1b_c01013{bottom:783.360000px;}
.y17_c01013{bottom:822.240000px;}
.y1a_c01013{bottom:822.960000px;}
.y19_c01013{bottom:825.120000px;}
.y18_c01013{bottom:825.840000px;}
.y16_c01013{bottom:878.400000px;}
.y15_c01013{bottom:879.120000px;}
.y12_c01013{bottom:918.000000px;}
.y14_c01013{bottom:918.720000px;}
.y10_c01013{bottom:919.440000px;}
.y13_c01013{bottom:921.600000px;}
.y11_c01013{bottom:922.320000px;}
.ye_c01013{bottom:961.200000px;}
.yf_c01013{bottom:962.640000px;}
.yc_c01013{bottom:964.080000px;}
.yd_c01013{bottom:964.800000px;}
.y8_c01013{bottom:1003.680000px;}
.ya_c01013{bottom:1004.400000px;}
.yb_c01013{bottom:1005.120000px;}
.y9_c01013{bottom:1006.560000px;}
.y7_c01013{bottom:1007.280000px;}
.y6_c01013{bottom:1046.880000px;}
.y3_c01013{bottom:1047.600000px;}
.y4_c01013{bottom:1049.760000px;}
.y5_c01013{bottom:1050.480000px;}
.y2_c01013{bottom:1108.800000px;}
.y1_c01013{bottom:1110.240000px;}
.hf_c01013{height:18.142031px;}
.h5_c01013{height:31.100625px;}
.hb_c01013{height:33.692344px;}
.hc_c01013{height:38.875781px;}
.h8_c01013{height:41.467500px;}
.h6_c01013{height:44.059219px;}
.h9_c01013{height:46.650937px;}
.he_c01013{height:49.242656px;}
.hd_c01013{height:51.834375px;}
.h4_c01013{height:54.426094px;}
.h7_c01013{height:57.017812px;}
.ha_c01013{height:59.609531px;}
.h3_c01013{height:62.201250px;}
.h2_c01013{height:64.792969px;}
.h0_c01013{height:1153.440000px;}
.h1_c01013{height:1153.500000px;}
.w1_c01013{width:783.750000px;}
.w0_c01013{width:784.080000px;}
.x0_c01013{left:0.000000px;}
.x3_c01013{left:54.720000px;}
.x22_c01013{left:56.160000px;}
.x3c_c01013{left:57.600000px;}
.x73_c01013{left:71.280000px;}
.x45_c01013{left:77.760000px;}
.x72_c01013{left:80.640000px;}
.x36_c01013{left:88.560000px;}
.x4d_c01013{left:90.720000px;}
.x71_c01013{left:92.160000px;}
.xd_c01013{left:99.360000px;}
.x30_c01013{left:101.520000px;}
.x2a_c01013{left:110.880000px;}
.x65_c01013{left:112.320000px;}
.x42_c01013{left:121.680000px;}
.x69_c01013{left:123.120000px;}
.x23_c01013{left:131.760000px;}
.x5a_c01013{left:133.200000px;}
.x75_c01013{left:136.080000px;}
.x4_c01013{left:142.560000px;}
.x55_c01013{left:144.720000px;}
.x74_c01013{left:146.880000px;}
.xe_c01013{left:152.640000px;}
.x1d_c01013{left:154.080000px;}
.x46_c01013{left:155.520000px;}
.x25_c01013{left:164.160000px;}
.x4e_c01013{left:165.600000px;}
.x7b_c01013{left:167.760000px;}
.x5_c01013{left:174.240000px;}
.x37_c01013{left:176.400000px;}
.x24_c01013{left:186.480000px;}
.x3d_c01013{left:187.920000px;}
.x6a_c01013{left:198.720000px;}
.x77_c01013{left:200.880000px;}
.x6_c01013{left:207.360000px;}
.x38_c01013{left:208.800000px;}
.x76_c01013{left:210.240000px;}
.x15_c01013{left:218.160000px;}
.x31_c01013{left:219.600000px;}
.x6e_c01013{left:221.040000px;}
.xf_c01013{left:239.760000px;}
.x4f_c01013{left:241.200000px;}
.x7e_c01013{left:243.360000px;}
.x16_c01013{left:251.280000px;}
.x47_c01013{left:252.720000px;}
.x26_c01013{left:262.800000px;}
.x56_c01013{left:264.240000px;}
.x7a_c01013{left:265.680000px;}
.x1e_c01013{left:272.160000px;}
.x7c_c01013{left:275.040000px;}
.x7_c01013{left:282.240000px;}
.x3e_c01013{left:284.400000px;}
.x5b_c01013{left:285.840000px;}
.x78_c01013{left:287.280000px;}
.x17_c01013{left:294.480000px;}
.x43_c01013{left:295.920000px;}
.x1f_c01013{left:303.120000px;}
.x5c_c01013{left:307.440000px;}
.x57_c01013{left:308.880000px;}
.x8_c01013{left:313.920000px;}
.x3f_c01013{left:317.520000px;}
.x32_c01013{left:319.680000px;}
.x48_c01013{left:328.320000px;}
.x10_c01013{left:336.240000px;}
.x5d_c01013{left:337.680000px;}
.x9_c01013{left:347.760000px;}
.x79_c01013{left:351.360000px;}
.x18_c01013{left:358.560000px;}
.x39_c01013{left:360.720000px;}
.x11_c01013{left:369.360000px;}
.x61_c01013{left:371.520000px;}
.x2b_c01013{left:380.160000px;}
.x5e_c01013{left:382.320000px;}
.x19_c01013{left:390.960000px;}
.x6b_c01013{left:393.840000px;}
.x62_c01013{left:403.920000px;}
.x2c_c01013{left:414.720000px;}
.x7d_c01013{left:416.160000px;}
.x6f_c01013{left:417.600000px;}
.xa_c01013{left:424.800000px;}
.x58_c01013{left:426.240000px;}
.x3a_c01013{left:435.600000px;}
.x67_c01013{left:437.760000px;}
.x40_c01013{left:445.680000px;}
.x66_c01013{left:447.120000px;}
.x12_c01013{left:454.320000px;}
.x5f_c01013{left:457.920000px;}
.x3b_c01013{left:468.000000px;}
.x33_c01013{left:478.080000px;}
.x50_c01013{left:482.400000px;}
.x20_c01013{left:488.160000px;}
.x49_c01013{left:490.320000px;}
.x44_c01013{left:500.400000px;}
.x59_c01013{left:501.840000px;}
.x34_c01013{left:510.480000px;}
.x70_c01013{left:514.080000px;}
.x1a_c01013{left:520.560000px;}
.x41_c01013{left:522.720000px;}
.xb_c01013{left:531.360000px;}
.x63_c01013{left:533.520000px;}
.x27_c01013{left:542.160000px;}
.x4a_c01013{left:544.320000px;}
.x2d_c01013{left:546.480000px;}
.x51_c01013{left:555.120000px;}
.x1b_c01013{left:563.760000px;}
.x68_c01013{left:565.920000px;}
.x13_c01013{left:573.120000px;}
.x28_c01013{left:575.280000px;}
.x64_c01013{left:577.440000px;}
.x4b_c01013{left:586.800000px;}
.xc_c01013{left:595.440000px;}
.x35_c01013{left:599.040000px;}
.x1c_c01013{left:606.960000px;}
.x52_c01013{left:609.120000px;}
.x14_c01013{left:617.760000px;}
.x4c_c01013{left:621.360000px;}
.x21_c01013{left:628.560000px;}
.x53_c01013{left:630.720000px;}
.x2e_c01013{left:641.520000px;}
.x6c_c01013{left:643.680000px;}
.x60_c01013{left:653.040000px;}
.x29_c01013{left:663.120000px;}
.x2f_c01013{left:674.640000px;}
.x54_c01013{left:676.080000px;}
.x6d_c01013{left:685.440000px;}
.x1_c01013{left:700.560000px;}
.x2_c01013{left:737.280000px;}
@media print{
.v0_c01013{vertical-align:0.000000pt;}
.ls0_c01013{letter-spacing:0.000000pt;}
.ws0_c01013{word-spacing:0.000000pt;}
.fsd_c01013{font-size:17.920000pt;}
.fs3_c01013{font-size:30.720000pt;}
.fs9_c01013{font-size:33.280000pt;}
.fsa_c01013{font-size:38.400000pt;}
.fs6_c01013{font-size:40.960000pt;}
.fs4_c01013{font-size:43.520000pt;}
.fs7_c01013{font-size:46.080000pt;}
.fsc_c01013{font-size:48.640000pt;}
.fsb_c01013{font-size:51.200000pt;}
.fs2_c01013{font-size:53.760000pt;}
.fs5_c01013{font-size:56.320000pt;}
.fs8_c01013{font-size:58.880000pt;}
.fs1_c01013{font-size:61.440000pt;}
.fs0_c01013{font-size:64.000000pt;}
.y0_c01013{bottom:0.000000pt;}
.y65_c01013{bottom:34.560000pt;}
.y68_c01013{bottom:35.200000pt;}
.y66_c01013{bottom:37.120000pt;}
.y67_c01013{bottom:37.760000pt;}
.y62_c01013{bottom:72.960000pt;}
.y64_c01013{bottom:74.240000pt;}
.y61_c01013{bottom:76.160000pt;}
.y63_c01013{bottom:76.800000pt;}
.y58_c01013{bottom:121.600000pt;}
.y5b_c01013{bottom:122.240000pt;}
.y60_c01013{bottom:123.520000pt;}
.y5c_c01013{bottom:140.800000pt;}
.y5a_c01013{bottom:141.440000pt;}
.y57_c01013{bottom:143.360000pt;}
.y5e_c01013{bottom:144.000000pt;}
.y5f_c01013{bottom:146.560000pt;}
.y59_c01013{bottom:161.920000pt;}
.y56_c01013{bottom:162.560000pt;}
.y5d_c01013{bottom:163.200000pt;}
.y54_c01013{bottom:197.760000pt;}
.y55_c01013{bottom:198.400000pt;}
.y53_c01013{bottom:200.320000pt;}
.y50_c01013{bottom:235.520000pt;}
.y51_c01013{bottom:236.160000pt;}
.y52_c01013{bottom:238.080000pt;}
.y4f_c01013{bottom:238.720000pt;}
.y4e_c01013{bottom:274.560000pt;}
.y4c_c01013{bottom:275.200000pt;}
.y4b_c01013{bottom:276.480000pt;}
.y4a_c01013{bottom:277.120000pt;}
.y4d_c01013{bottom:277.760000pt;}
.y49_c01013{bottom:312.960000pt;}
.y47_c01013{bottom:314.880000pt;}
.y48_c01013{bottom:315.520000pt;}
.y42_c01013{bottom:350.720000pt;}
.y44_c01013{bottom:351.360000pt;}
.y46_c01013{bottom:352.640000pt;}
.y43_c01013{bottom:353.280000pt;}
.y45_c01013{bottom:353.920000pt;}
.y41_c01013{bottom:388.480000pt;}
.y3e_c01013{bottom:389.120000pt;}
.y40_c01013{bottom:391.040000pt;}
.y3f_c01013{bottom:391.680000pt;}
.y3c_c01013{bottom:428.160000pt;}
.y3d_c01013{bottom:428.800000pt;}
.y3b_c01013{bottom:429.440000pt;}
.y39_c01013{bottom:464.640000pt;}
.y38_c01013{bottom:465.280000pt;}
.y3a_c01013{bottom:466.560000pt;}
.y36_c01013{bottom:467.200000pt;}
.y37_c01013{bottom:467.840000pt;}
.y31_c01013{bottom:502.400000pt;}
.y32_c01013{bottom:503.040000pt;}
.y35_c01013{bottom:504.320000pt;}
.y34_c01013{bottom:504.960000pt;}
.y33_c01013{bottom:505.600000pt;}
.y2f_c01013{bottom:540.160000pt;}
.y2d_c01013{bottom:540.800000pt;}
.y30_c01013{bottom:542.720000pt;}
.y2e_c01013{bottom:543.360000pt;}
.y2a_c01013{bottom:578.560000pt;}
.y2b_c01013{bottom:579.840000pt;}
.y29_c01013{bottom:581.120000pt;}
.y2c_c01013{bottom:581.760000pt;}
.y27_c01013{bottom:616.320000pt;}
.y25_c01013{bottom:616.960000pt;}
.y26_c01013{bottom:618.880000pt;}
.y24_c01013{bottom:619.520000pt;}
.y28_c01013{bottom:620.160000pt;}
.y20_c01013{bottom:654.720000pt;}
.y21_c01013{bottom:655.360000pt;}
.y22_c01013{bottom:657.280000pt;}
.y1f_c01013{bottom:657.920000pt;}
.y23_c01013{bottom:658.560000pt;}
.y1d_c01013{bottom:693.120000pt;}
.y1e_c01013{bottom:693.760000pt;}
.y1c_c01013{bottom:695.680000pt;}
.y1b_c01013{bottom:696.320000pt;}
.y17_c01013{bottom:730.880000pt;}
.y1a_c01013{bottom:731.520000pt;}
.y19_c01013{bottom:733.440000pt;}
.y18_c01013{bottom:734.080000pt;}
.y16_c01013{bottom:780.800000pt;}
.y15_c01013{bottom:781.440000pt;}
.y12_c01013{bottom:816.000000pt;}
.y14_c01013{bottom:816.640000pt;}
.y10_c01013{bottom:817.280000pt;}
.y13_c01013{bottom:819.200000pt;}
.y11_c01013{bottom:819.840000pt;}
.ye_c01013{bottom:854.400000pt;}
.yf_c01013{bottom:855.680000pt;}
.yc_c01013{bottom:856.960000pt;}
.yd_c01013{bottom:857.600000pt;}
.y8_c01013{bottom:892.160000pt;}
.ya_c01013{bottom:892.800000pt;}
.yb_c01013{bottom:893.440000pt;}
.y9_c01013{bottom:894.720000pt;}
.y7_c01013{bottom:895.360000pt;}
.y6_c01013{bottom:930.560000pt;}
.y3_c01013{bottom:931.200000pt;}
.y4_c01013{bottom:933.120000pt;}
.y5_c01013{bottom:933.760000pt;}
.y2_c01013{bottom:985.600000pt;}
.y1_c01013{bottom:986.880000pt;}
.hf_c01013{height:16.126250pt;}
.h5_c01013{height:27.645000pt;}
.hb_c01013{height:29.948750pt;}
.hc_c01013{height:34.556250pt;}
.h8_c01013{height:36.860000pt;}
.h6_c01013{height:39.163750pt;}
.h9_c01013{height:41.467500pt;}
.he_c01013{height:43.771250pt;}
.hd_c01013{height:46.075000pt;}
.h4_c01013{height:48.378750pt;}
.h7_c01013{height:50.682500pt;}
.ha_c01013{height:52.986250pt;}
.h3_c01013{height:55.290000pt;}
.h2_c01013{height:57.593750pt;}
.h0_c01013{height:1025.280000pt;}
.h1_c01013{height:1025.333333pt;}
.w1_c01013{width:696.666667pt;}
.w0_c01013{width:696.960000pt;}
.x0_c01013{left:0.000000pt;}
.x3_c01013{left:48.640000pt;}
.x22_c01013{left:49.920000pt;}
.x3c_c01013{left:51.200000pt;}
.x73_c01013{left:63.360000pt;}
.x45_c01013{left:69.120000pt;}
.x72_c01013{left:71.680000pt;}
.x36_c01013{left:78.720000pt;}
.x4d_c01013{left:80.640000pt;}
.x71_c01013{left:81.920000pt;}
.xd_c01013{left:88.320000pt;}
.x30_c01013{left:90.240000pt;}
.x2a_c01013{left:98.560000pt;}
.x65_c01013{left:99.840000pt;}
.x42_c01013{left:108.160000pt;}
.x69_c01013{left:109.440000pt;}
.x23_c01013{left:117.120000pt;}
.x5a_c01013{left:118.400000pt;}
.x75_c01013{left:120.960000pt;}
.x4_c01013{left:126.720000pt;}
.x55_c01013{left:128.640000pt;}
.x74_c01013{left:130.560000pt;}
.xe_c01013{left:135.680000pt;}
.x1d_c01013{left:136.960000pt;}
.x46_c01013{left:138.240000pt;}
.x25_c01013{left:145.920000pt;}
.x4e_c01013{left:147.200000pt;}
.x7b_c01013{left:149.120000pt;}
.x5_c01013{left:154.880000pt;}
.x37_c01013{left:156.800000pt;}
.x24_c01013{left:165.760000pt;}
.x3d_c01013{left:167.040000pt;}
.x6a_c01013{left:176.640000pt;}
.x77_c01013{left:178.560000pt;}
.x6_c01013{left:184.320000pt;}
.x38_c01013{left:185.600000pt;}
.x76_c01013{left:186.880000pt;}
.x15_c01013{left:193.920000pt;}
.x31_c01013{left:195.200000pt;}
.x6e_c01013{left:196.480000pt;}
.xf_c01013{left:213.120000pt;}
.x4f_c01013{left:214.400000pt;}
.x7e_c01013{left:216.320000pt;}
.x16_c01013{left:223.360000pt;}
.x47_c01013{left:224.640000pt;}
.x26_c01013{left:233.600000pt;}
.x56_c01013{left:234.880000pt;}
.x7a_c01013{left:236.160000pt;}
.x1e_c01013{left:241.920000pt;}
.x7c_c01013{left:244.480000pt;}
.x7_c01013{left:250.880000pt;}
.x3e_c01013{left:252.800000pt;}
.x5b_c01013{left:254.080000pt;}
.x78_c01013{left:255.360000pt;}
.x17_c01013{left:261.760000pt;}
.x43_c01013{left:263.040000pt;}
.x1f_c01013{left:269.440000pt;}
.x5c_c01013{left:273.280000pt;}
.x57_c01013{left:274.560000pt;}
.x8_c01013{left:279.040000pt;}
.x3f_c01013{left:282.240000pt;}
.x32_c01013{left:284.160000pt;}
.x48_c01013{left:291.840000pt;}
.x10_c01013{left:298.880000pt;}
.x5d_c01013{left:300.160000pt;}
.x9_c01013{left:309.120000pt;}
.x79_c01013{left:312.320000pt;}
.x18_c01013{left:318.720000pt;}
.x39_c01013{left:320.640000pt;}
.x11_c01013{left:328.320000pt;}
.x61_c01013{left:330.240000pt;}
.x2b_c01013{left:337.920000pt;}
.x5e_c01013{left:339.840000pt;}
.x19_c01013{left:347.520000pt;}
.x6b_c01013{left:350.080000pt;}
.x62_c01013{left:359.040000pt;}
.x2c_c01013{left:368.640000pt;}
.x7d_c01013{left:369.920000pt;}
.x6f_c01013{left:371.200000pt;}
.xa_c01013{left:377.600000pt;}
.x58_c01013{left:378.880000pt;}
.x3a_c01013{left:387.200000pt;}
.x67_c01013{left:389.120000pt;}
.x40_c01013{left:396.160000pt;}
.x66_c01013{left:397.440000pt;}
.x12_c01013{left:403.840000pt;}
.x5f_c01013{left:407.040000pt;}
.x3b_c01013{left:416.000000pt;}
.x33_c01013{left:424.960000pt;}
.x50_c01013{left:428.800000pt;}
.x20_c01013{left:433.920000pt;}
.x49_c01013{left:435.840000pt;}
.x44_c01013{left:444.800000pt;}
.x59_c01013{left:446.080000pt;}
.x34_c01013{left:453.760000pt;}
.x70_c01013{left:456.960000pt;}
.x1a_c01013{left:462.720000pt;}
.x41_c01013{left:464.640000pt;}
.xb_c01013{left:472.320000pt;}
.x63_c01013{left:474.240000pt;}
.x27_c01013{left:481.920000pt;}
.x4a_c01013{left:483.840000pt;}
.x2d_c01013{left:485.760000pt;}
.x51_c01013{left:493.440000pt;}
.x1b_c01013{left:501.120000pt;}
.x68_c01013{left:503.040000pt;}
.x13_c01013{left:509.440000pt;}
.x28_c01013{left:511.360000pt;}
.x64_c01013{left:513.280000pt;}
.x4b_c01013{left:521.600000pt;}
.xc_c01013{left:529.280000pt;}
.x35_c01013{left:532.480000pt;}
.x1c_c01013{left:539.520000pt;}
.x52_c01013{left:541.440000pt;}
.x14_c01013{left:549.120000pt;}
.x4c_c01013{left:552.320000pt;}
.x21_c01013{left:558.720000pt;}
.x53_c01013{left:560.640000pt;}
.x2e_c01013{left:570.240000pt;}
.x6c_c01013{left:572.160000pt;}
.x60_c01013{left:580.480000pt;}
.x29_c01013{left:589.440000pt;}
.x2f_c01013{left:599.680000pt;}
.x54_c01013{left:600.960000pt;}
.x6d_c01013{left:609.280000pt;}
.x1_c01013{left:622.720000pt;}
.x2_c01013{left:655.360000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2cfc5a431b2d89d0013803ec.woff2')format("woff");}.ff1_c01014{font-family:ff1_c01014;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m65_c01014{transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);}
.m54_c01014{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.mf_c01014{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_c01014{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_c01014{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_c01014{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01014{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m63_c01014{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m9_c01014{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.md_c01014{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m57_c01014{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m48_c01014{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01014{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m10_c01014{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m5a_c01014{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01014{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m15_c01014{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m60_c01014{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m4_c01014{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01014{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01014{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m14_c01014{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m17_c01014{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);}
.m3d_c01014{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m8_c01014{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m16_c01014{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m13_c01014{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m5_c01014{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m46_c01014{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m7_c01014{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m0_c01014{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);}
.m44_c01014{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01014{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m12_c01014{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);}
.m6_c01014{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m1_c01014{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m20_c01014{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.mb_c01014{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);}
.m42_c01014{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m58_c01014{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);}
.m41_c01014{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);}
.m36_c01014{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m11_c01014{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);}
.m21_c01014{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m55_c01014{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);}
.m4a_c01014{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);}
.m2b_c01014{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m5b_c01014{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m23_c01014{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m37_c01014{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01014{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);}
.m40_c01014{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m39_c01014{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01014{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);}
.m28_c01014{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m32_c01014{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_c01014{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01014{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m25_c01014{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);}
.m52_c01014{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.me_c01014{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01014{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);}
.m2_c01014{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m49_c01014{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01014{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01014{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01014{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01014{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m26_c01014{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01014{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m53_c01014{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);}
.m5c_c01014{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01014{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m43_c01014{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m30_c01014{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m29_c01014{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);}
.m2c_c01014{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01014{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m68_c01014{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m5f_c01014{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m33_c01014{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);}
.m22_c01014{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m31_c01014{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m24_c01014{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m35_c01014{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01014{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m51_c01014{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);}
.m56_c01014{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);}
.m62_c01014{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m61_c01014{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);}
.m38_c01014{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01014{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m27_c01014{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m34_c01014{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m59_c01014{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m45_c01014{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);}
.m50_c01014{transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);}
.m47_c01014{transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);}
.m67_c01014{transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);}
.m66_c01014{transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);}
.m64_c01014{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m5e_c01014{transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01014{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);}
.m1d_c01014{transform:matrix(0.980000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.980000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.980000,0.000000,0.000000,0.250000,0,0);}
.m18_c01014{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.v0_c01014{vertical-align:0.000000px;}
.ls0_c01014{letter-spacing:0.000000px;}
.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;}
.fc0_c01014{color:transparent;}
.fs8_c01014{font-size:8.640000px;}
.fsb_c01014{font-size:20.160000px;}
.fs11_c01014{font-size:25.920000px;}
.fs10_c01014{font-size:28.800000px;}
.fsd_c01014{font-size:31.680000px;}
.fsc_c01014{font-size:34.560000px;}
.fs7_c01014{font-size:43.200000px;}
.fs1_c01014{font-size:46.080000px;}
.fs2_c01014{font-size:48.960000px;}
.fs6_c01014{font-size:51.840000px;}
.fs3_c01014{font-size:54.720000px;}
.fs4_c01014{font-size:57.600000px;}
.fs5_c01014{font-size:60.480000px;}
.fse_c01014{font-size:63.360000px;}
.fs9_c01014{font-size:66.240000px;}
.fsa_c01014{font-size:69.120000px;}
.fsf_c01014{font-size:72.000000px;}
.fs0_c01014{font-size:74.880000px;}
.y0_c01014{bottom:0.000000px;}
.y6d_c01014{bottom:41.760000px;}
.y6b_c01014{bottom:42.480000px;}
.y6a_c01014{bottom:43.200000px;}
.y6c_c01014{bottom:43.920000px;}
.y6e_c01014{bottom:44.640000px;}
.y69_c01014{bottom:82.080000px;}
.y65_c01014{bottom:84.240000px;}
.y67_c01014{bottom:84.960000px;}
.y64_c01014{bottom:86.400000px;}
.y66_c01014{bottom:87.840000px;}
.y68_c01014{bottom:90.000000px;}
.y60_c01014{bottom:138.240000px;}
.y61_c01014{bottom:138.960000px;}
.y63_c01014{bottom:139.680000px;}
.y5f_c01014{bottom:140.400000px;}
.y5e_c01014{bottom:141.120000px;}
.y62_c01014{bottom:141.840000px;}
.y5d_c01014{bottom:180.720000px;}
.y5c_c01014{bottom:182.160000px;}
.y5a_c01014{bottom:183.600000px;}
.y5b_c01014{bottom:184.320000px;}
.y57_c01014{bottom:223.920000px;}
.y58_c01014{bottom:226.080000px;}
.y56_c01014{bottom:226.800000px;}
.y59_c01014{bottom:227.520000px;}
.y55_c01014{bottom:278.640000px;}
.y53_c01014{bottom:280.080000px;}
.y54_c01014{bottom:280.800000px;}
.y51_c01014{bottom:319.680000px;}
.y52_c01014{bottom:320.400000px;}
.y50_c01014{bottom:323.280000px;}
.y4c_c01014{bottom:362.880000px;}
.y4e_c01014{bottom:363.600000px;}
.y4d_c01014{bottom:365.760000px;}
.y4f_c01014{bottom:366.480000px;}
.y48_c01014{bottom:405.360000px;}
.y49_c01014{bottom:406.080000px;}
.y4b_c01014{bottom:406.800000px;}
.y47_c01014{bottom:408.240000px;}
.y46_c01014{bottom:408.960000px;}
.y4a_c01014{bottom:409.680000px;}
.y45_c01014{bottom:448.560000px;}
.y44_c01014{bottom:449.280000px;}
.y43_c01014{bottom:450.000000px;}
.y41_c01014{bottom:451.440000px;}
.y42_c01014{bottom:452.160000px;}
.y3b_c01014{bottom:491.760000px;}
.y40_c01014{bottom:492.480000px;}
.y3e_c01014{bottom:493.200000px;}
.y3c_c01014{bottom:494.640000px;}
.y3f_c01014{bottom:495.360000px;}
.y3d_c01014{bottom:496.080000px;}
.y3a_c01014{bottom:535.680000px;}
.y38_c01014{bottom:537.840000px;}
.y39_c01014{bottom:538.560000px;}
.y37_c01014{bottom:578.880000px;}
.y35_c01014{bottom:581.040000px;}
.y36_c01014{bottom:581.760000px;}
.y34_c01014{bottom:621.360000px;}
.y33_c01014{bottom:622.080000px;}
.y30_c01014{bottom:623.520000px;}
.y31_c01014{bottom:624.240000px;}
.y32_c01014{bottom:624.960000px;}
.y2e_c01014{bottom:664.560000px;}
.y2f_c01014{bottom:665.280000px;}
.y2d_c01014{bottom:666.720000px;}
.y2c_c01014{bottom:667.440000px;}
.y2b_c01014{bottom:720.720000px;}
.y29_c01014{bottom:760.320000px;}
.y26_c01014{bottom:761.040000px;}
.y2a_c01014{bottom:763.200000px;}
.y27_c01014{bottom:763.920000px;}
.y28_c01014{bottom:764.640000px;}
.y24_c01014{bottom:803.520000px;}
.y22_c01014{bottom:805.680000px;}
.y23_c01014{bottom:806.400000px;}
.y25_c01014{bottom:807.120000px;}
.y21_c01014{bottom:846.720000px;}
.y20_c01014{bottom:848.160000px;}
.y1f_c01014{bottom:848.880000px;}
.y1e_c01014{bottom:888.480000px;}
.y1c_c01014{bottom:889.200000px;}
.y1d_c01014{bottom:891.360000px;}
.y1b_c01014{bottom:892.080000px;}
.y19_c01014{bottom:941.760000px;}
.y18_c01014{bottom:942.480000px;}
.y17_c01014{bottom:943.200000px;}
.y14_c01014{bottom:943.920000px;}
.y15_c01014{bottom:945.360000px;}
.y1a_c01014{bottom:948.240000px;}
.y16_c01014{bottom:948.960000px;}
.y11_c01014{bottom:984.960000px;}
.y12_c01014{bottom:985.680000px;}
.y10_c01014{bottom:986.400000px;}
.y13_c01014{bottom:987.840000px;}
.ye_c01014{bottom:1018.080000px;}
.yd_c01014{bottom:1020.240000px;}
.yc_c01014{bottom:1020.960000px;}
.yf_c01014{bottom:1021.680000px;}
.ya_c01014{bottom:1040.400000px;}
.yb_c01014{bottom:1041.840000px;}
.y7_c01014{bottom:1049.040000px;}
.y8_c01014{bottom:1049.760000px;}
.y4_c01014{bottom:1050.480000px;}
.y9_c01014{bottom:1051.200000px;}
.y2_c01014{bottom:1052.640000px;}
.y3_c01014{bottom:1053.360000px;}
.y5_c01014{bottom:1062.720000px;}
.y6_c01014{bottom:1063.440000px;}
.y1_c01014{bottom:1111.680000px;}
.ha_c01014{height:7.775156px;}
.hd_c01014{height:18.142031px;}
.h13_c01014{height:23.325469px;}
.h12_c01014{height:25.917187px;}
.hf_c01014{height:28.508906px;}
.he_c01014{height:31.100625px;}
.h9_c01014{height:38.875781px;}
.h3_c01014{height:41.467500px;}
.h4_c01014{height:44.059219px;}
.h8_c01014{height:46.650937px;}
.h5_c01014{height:49.242656px;}
.h6_c01014{height:51.834375px;}
.h7_c01014{height:54.426094px;}
.h10_c01014{height:57.017812px;}
.hb_c01014{height:59.609531px;}
.hc_c01014{height:62.201250px;}
.h11_c01014{height:64.792969px;}
.h2_c01014{height:67.384687px;}
.h0_c01014{height:1157.040000px;}
.h1_c01014{height:1157.250000px;}
.w1_c01014{width:790.500000px;}
.w0_c01014{width:790.560000px;}
.x0_c01014{left:0.000000px;}
.x24_c01014{left:59.760000px;}
.x2_c01014{left:61.200000px;}
.x3_c01014{left:82.080000px;}
.xf_c01014{left:92.160000px;}
.x5a_c01014{left:95.040000px;}
.x17_c01014{left:103.680000px;}
.x63_c01014{left:105.120000px;}
.x4_c01014{left:126.000000px;}
.x18_c01014{left:136.080000px;}
.x3a_c01014{left:137.520000px;}
.x2b_c01014{left:157.680000px;}
.x19_c01014{left:159.120000px;}
.x40_c01014{left:162.000000px;}
.x10_c01014{left:169.200000px;}
.x46_c01014{left:180.000000px;}
.x11_c01014{left:190.800000px;}
.x5_c01014{left:200.880000px;}
.x53_c01014{left:203.040000px;}
.x21_c01014{left:211.680000px;}
.x25_c01014{left:222.480000px;}
.x2f_c01014{left:233.280000px;}
.x26_c01014{left:244.080000px;}
.x47_c01014{left:245.520000px;}
.x36_c01014{left:255.600000px;}
.x1a_c01014{left:257.760000px;}
.x51_c01014{left:266.400000px;}
.x6_c01014{left:277.200000px;}
.x12_c01014{left:286.560000px;}
.x41_c01014{left:289.440000px;}
.x1b_c01014{left:298.080000px;}
.x48_c01014{left:299.520000px;}
.x16_c01014{left:308.880000px;}
.x4f_c01014{left:310.320000px;}
.x7_c01014{left:318.960000px;}
.x27_c01014{left:320.400000px;}
.x30_c01014{left:323.280000px;}
.x22_c01014{left:331.200000px;}
.x13_c01014{left:342.000000px;}
.x28_c01014{left:352.080000px;}
.x5c_c01014{left:353.520000px;}
.x8_c01014{left:363.600000px;}
.x42_c01014{left:365.040000px;}
.xe_c01014{left:373.680000px;}
.x54_c01014{left:375.120000px;}
.x29_c01014{left:384.480000px;}
.x5d_c01014{left:386.640000px;}
.x9_c01014{left:395.280000px;}
.x4c_c01014{left:397.440000px;}
.x3e_c01014{left:406.080000px;}
.x55_c01014{left:408.240000px;}
.x57_c01014{left:409.680000px;}
.x4d_c01014{left:417.600000px;}
.x31_c01014{left:419.040000px;}
.x1c_c01014{left:427.680000px;}
.x43_c01014{left:429.120000px;}
.x2c_c01014{left:438.480000px;}
.x58_c01014{left:440.640000px;}
.xa_c01014{left:449.280000px;}
.x5e_c01014{left:450.720000px;}
.x44_c01014{left:461.520000px;}
.x14_c01014{left:470.880000px;}
.x32_c01014{left:481.680000px;}
.x49_c01014{left:483.120000px;}
.x3b_c01014{left:492.480000px;}
.x1d_c01014{left:493.920000px;}
.x37_c01014{left:502.560000px;}
.xb_c01014{left:504.000000px;}
.x33_c01014{left:514.800000px;}
.x3f_c01014{left:527.040000px;}
.x4e_c01014{left:535.680000px;}
.xc_c01014{left:546.480000px;}
.x15_c01014{left:547.920000px;}
.x34_c01014{left:557.280000px;}
.x3c_c01014{left:558.720000px;}
.x45_c01014{left:568.800000px;}
.x5f_c01014{left:570.240000px;}
.x1e_c01014{left:580.320000px;}
.x3d_c01014{left:590.400000px;}
.x56_c01014{left:591.840000px;}
.xd_c01014{left:601.200000px;}
.x50_c01014{left:602.640000px;}
.x1f_c01014{left:611.280000px;}
.x38_c01014{left:612.720000px;}
.x35_c01014{left:622.800000px;}
.x52_c01014{left:624.240000px;}
.x20_c01014{left:635.040000px;}
.x2a_c01014{left:644.400000px;}
.x4a_c01014{left:645.840000px;}
.x5b_c01014{left:647.280000px;}
.x2d_c01014{left:656.640000px;}
.x60_c01014{left:658.080000px;}
.x23_c01014{left:666.720000px;}
.x4b_c01014{left:678.240000px;}
.x2e_c01014{left:689.040000px;}
.x59_c01014{left:691.200000px;}
.x1_c01014{left:695.520000px;}
.x39_c01014{left:699.840000px;}
.x62_c01014{left:784.080000px;}
.x61_c01014{left:787.680000px;}
@media print{
.v0_c01014{vertical-align:0.000000pt;}
.ls0_c01014{letter-spacing:0.000000pt;}
.ws0_c01014{word-spacing:0.000000pt;}
.fs8_c01014{font-size:7.680000pt;}
.fsb_c01014{font-size:17.920000pt;}
.fs11_c01014{font-size:23.040000pt;}
.fs10_c01014{font-size:25.600000pt;}
.fsd_c01014{font-size:28.160000pt;}
.fsc_c01014{font-size:30.720000pt;}
.fs7_c01014{font-size:38.400000pt;}
.fs1_c01014{font-size:40.960000pt;}
.fs2_c01014{font-size:43.520000pt;}
.fs6_c01014{font-size:46.080000pt;}
.fs3_c01014{font-size:48.640000pt;}
.fs4_c01014{font-size:51.200000pt;}
.fs5_c01014{font-size:53.760000pt;}
.fse_c01014{font-size:56.320000pt;}
.fs9_c01014{font-size:58.880000pt;}
.fsa_c01014{font-size:61.440000pt;}
.fsf_c01014{font-size:64.000000pt;}
.fs0_c01014{font-size:66.560000pt;}
.y0_c01014{bottom:0.000000pt;}
.y6d_c01014{bottom:37.120000pt;}
.y6b_c01014{bottom:37.760000pt;}
.y6a_c01014{bottom:38.400000pt;}
.y6c_c01014{bottom:39.040000pt;}
.y6e_c01014{bottom:39.680000pt;}
.y69_c01014{bottom:72.960000pt;}
.y65_c01014{bottom:74.880000pt;}
.y67_c01014{bottom:75.520000pt;}
.y64_c01014{bottom:76.800000pt;}
.y66_c01014{bottom:78.080000pt;}
.y68_c01014{bottom:80.000000pt;}
.y60_c01014{bottom:122.880000pt;}
.y61_c01014{bottom:123.520000pt;}
.y63_c01014{bottom:124.160000pt;}
.y5f_c01014{bottom:124.800000pt;}
.y5e_c01014{bottom:125.440000pt;}
.y62_c01014{bottom:126.080000pt;}
.y5d_c01014{bottom:160.640000pt;}
.y5c_c01014{bottom:161.920000pt;}
.y5a_c01014{bottom:163.200000pt;}
.y5b_c01014{bottom:163.840000pt;}
.y57_c01014{bottom:199.040000pt;}
.y58_c01014{bottom:200.960000pt;}
.y56_c01014{bottom:201.600000pt;}
.y59_c01014{bottom:202.240000pt;}
.y55_c01014{bottom:247.680000pt;}
.y53_c01014{bottom:248.960000pt;}
.y54_c01014{bottom:249.600000pt;}
.y51_c01014{bottom:284.160000pt;}
.y52_c01014{bottom:284.800000pt;}
.y50_c01014{bottom:287.360000pt;}
.y4c_c01014{bottom:322.560000pt;}
.y4e_c01014{bottom:323.200000pt;}
.y4d_c01014{bottom:325.120000pt;}
.y4f_c01014{bottom:325.760000pt;}
.y48_c01014{bottom:360.320000pt;}
.y49_c01014{bottom:360.960000pt;}
.y4b_c01014{bottom:361.600000pt;}
.y47_c01014{bottom:362.880000pt;}
.y46_c01014{bottom:363.520000pt;}
.y4a_c01014{bottom:364.160000pt;}
.y45_c01014{bottom:398.720000pt;}
.y44_c01014{bottom:399.360000pt;}
.y43_c01014{bottom:400.000000pt;}
.y41_c01014{bottom:401.280000pt;}
.y42_c01014{bottom:401.920000pt;}
.y3b_c01014{bottom:437.120000pt;}
.y40_c01014{bottom:437.760000pt;}
.y3e_c01014{bottom:438.400000pt;}
.y3c_c01014{bottom:439.680000pt;}
.y3f_c01014{bottom:440.320000pt;}
.y3d_c01014{bottom:440.960000pt;}
.y3a_c01014{bottom:476.160000pt;}
.y38_c01014{bottom:478.080000pt;}
.y39_c01014{bottom:478.720000pt;}
.y37_c01014{bottom:514.560000pt;}
.y35_c01014{bottom:516.480000pt;}
.y36_c01014{bottom:517.120000pt;}
.y34_c01014{bottom:552.320000pt;}
.y33_c01014{bottom:552.960000pt;}
.y30_c01014{bottom:554.240000pt;}
.y31_c01014{bottom:554.880000pt;}
.y32_c01014{bottom:555.520000pt;}
.y2e_c01014{bottom:590.720000pt;}
.y2f_c01014{bottom:591.360000pt;}
.y2d_c01014{bottom:592.640000pt;}
.y2c_c01014{bottom:593.280000pt;}
.y2b_c01014{bottom:640.640000pt;}
.y29_c01014{bottom:675.840000pt;}
.y26_c01014{bottom:676.480000pt;}
.y2a_c01014{bottom:678.400000pt;}
.y27_c01014{bottom:679.040000pt;}
.y28_c01014{bottom:679.680000pt;}
.y24_c01014{bottom:714.240000pt;}
.y22_c01014{bottom:716.160000pt;}
.y23_c01014{bottom:716.800000pt;}
.y25_c01014{bottom:717.440000pt;}
.y21_c01014{bottom:752.640000pt;}
.y20_c01014{bottom:753.920000pt;}
.y1f_c01014{bottom:754.560000pt;}
.y1e_c01014{bottom:789.760000pt;}
.y1c_c01014{bottom:790.400000pt;}
.y1d_c01014{bottom:792.320000pt;}
.y1b_c01014{bottom:792.960000pt;}
.y19_c01014{bottom:837.120000pt;}
.y18_c01014{bottom:837.760000pt;}
.y17_c01014{bottom:838.400000pt;}
.y14_c01014{bottom:839.040000pt;}
.y15_c01014{bottom:840.320000pt;}
.y1a_c01014{bottom:842.880000pt;}
.y16_c01014{bottom:843.520000pt;}
.y11_c01014{bottom:875.520000pt;}
.y12_c01014{bottom:876.160000pt;}
.y10_c01014{bottom:876.800000pt;}
.y13_c01014{bottom:878.080000pt;}
.ye_c01014{bottom:904.960000pt;}
.yd_c01014{bottom:906.880000pt;}
.yc_c01014{bottom:907.520000pt;}
.yf_c01014{bottom:908.160000pt;}
.ya_c01014{bottom:924.800000pt;}
.yb_c01014{bottom:926.080000pt;}
.y7_c01014{bottom:932.480000pt;}
.y8_c01014{bottom:933.120000pt;}
.y4_c01014{bottom:933.760000pt;}
.y9_c01014{bottom:934.400000pt;}
.y2_c01014{bottom:935.680000pt;}
.y3_c01014{bottom:936.320000pt;}
.y5_c01014{bottom:944.640000pt;}
.y6_c01014{bottom:945.280000pt;}
.y1_c01014{bottom:988.160000pt;}
.ha_c01014{height:6.911250pt;}
.hd_c01014{height:16.126250pt;}
.h13_c01014{height:20.733750pt;}
.h12_c01014{height:23.037500pt;}
.hf_c01014{height:25.341250pt;}
.he_c01014{height:27.645000pt;}
.h9_c01014{height:34.556250pt;}
.h3_c01014{height:36.860000pt;}
.h4_c01014{height:39.163750pt;}
.h8_c01014{height:41.467500pt;}
.h5_c01014{height:43.771250pt;}
.h6_c01014{height:46.075000pt;}
.h7_c01014{height:48.378750pt;}
.h10_c01014{height:50.682500pt;}
.hb_c01014{height:52.986250pt;}
.hc_c01014{height:55.290000pt;}
.h11_c01014{height:57.593750pt;}
.h2_c01014{height:59.897500pt;}
.h0_c01014{height:1028.480000pt;}
.h1_c01014{height:1028.666667pt;}
.w1_c01014{width:702.666667pt;}
.w0_c01014{width:702.720000pt;}
.x0_c01014{left:0.000000pt;}
.x24_c01014{left:53.120000pt;}
.x2_c01014{left:54.400000pt;}
.x3_c01014{left:72.960000pt;}
.xf_c01014{left:81.920000pt;}
.x5a_c01014{left:84.480000pt;}
.x17_c01014{left:92.160000pt;}
.x63_c01014{left:93.440000pt;}
.x4_c01014{left:112.000000pt;}
.x18_c01014{left:120.960000pt;}
.x3a_c01014{left:122.240000pt;}
.x2b_c01014{left:140.160000pt;}
.x19_c01014{left:141.440000pt;}
.x40_c01014{left:144.000000pt;}
.x10_c01014{left:150.400000pt;}
.x46_c01014{left:160.000000pt;}
.x11_c01014{left:169.600000pt;}
.x5_c01014{left:178.560000pt;}
.x53_c01014{left:180.480000pt;}
.x21_c01014{left:188.160000pt;}
.x25_c01014{left:197.760000pt;}
.x2f_c01014{left:207.360000pt;}
.x26_c01014{left:216.960000pt;}
.x47_c01014{left:218.240000pt;}
.x36_c01014{left:227.200000pt;}
.x1a_c01014{left:229.120000pt;}
.x51_c01014{left:236.800000pt;}
.x6_c01014{left:246.400000pt;}
.x12_c01014{left:254.720000pt;}
.x41_c01014{left:257.280000pt;}
.x1b_c01014{left:264.960000pt;}
.x48_c01014{left:266.240000pt;}
.x16_c01014{left:274.560000pt;}
.x4f_c01014{left:275.840000pt;}
.x7_c01014{left:283.520000pt;}
.x27_c01014{left:284.800000pt;}
.x30_c01014{left:287.360000pt;}
.x22_c01014{left:294.400000pt;}
.x13_c01014{left:304.000000pt;}
.x28_c01014{left:312.960000pt;}
.x5c_c01014{left:314.240000pt;}
.x8_c01014{left:323.200000pt;}
.x42_c01014{left:324.480000pt;}
.xe_c01014{left:332.160000pt;}
.x54_c01014{left:333.440000pt;}
.x29_c01014{left:341.760000pt;}
.x5d_c01014{left:343.680000pt;}
.x9_c01014{left:351.360000pt;}
.x4c_c01014{left:353.280000pt;}
.x3e_c01014{left:360.960000pt;}
.x55_c01014{left:362.880000pt;}
.x57_c01014{left:364.160000pt;}
.x4d_c01014{left:371.200000pt;}
.x31_c01014{left:372.480000pt;}
.x1c_c01014{left:380.160000pt;}
.x43_c01014{left:381.440000pt;}
.x2c_c01014{left:389.760000pt;}
.x58_c01014{left:391.680000pt;}
.xa_c01014{left:399.360000pt;}
.x5e_c01014{left:400.640000pt;}
.x44_c01014{left:410.240000pt;}
.x14_c01014{left:418.560000pt;}
.x32_c01014{left:428.160000pt;}
.x49_c01014{left:429.440000pt;}
.x3b_c01014{left:437.760000pt;}
.x1d_c01014{left:439.040000pt;}
.x37_c01014{left:446.720000pt;}
.xb_c01014{left:448.000000pt;}
.x33_c01014{left:457.600000pt;}
.x3f_c01014{left:468.480000pt;}
.x4e_c01014{left:476.160000pt;}
.xc_c01014{left:485.760000pt;}
.x15_c01014{left:487.040000pt;}
.x34_c01014{left:495.360000pt;}
.x3c_c01014{left:496.640000pt;}
.x45_c01014{left:505.600000pt;}
.x5f_c01014{left:506.880000pt;}
.x1e_c01014{left:515.840000pt;}
.x3d_c01014{left:524.800000pt;}
.x56_c01014{left:526.080000pt;}
.xd_c01014{left:534.400000pt;}
.x50_c01014{left:535.680000pt;}
.x1f_c01014{left:543.360000pt;}
.x38_c01014{left:544.640000pt;}
.x35_c01014{left:553.600000pt;}
.x52_c01014{left:554.880000pt;}
.x20_c01014{left:564.480000pt;}
.x2a_c01014{left:572.800000pt;}
.x4a_c01014{left:574.080000pt;}
.x5b_c01014{left:575.360000pt;}
.x2d_c01014{left:583.680000pt;}
.x60_c01014{left:584.960000pt;}
.x23_c01014{left:592.640000pt;}
.x4b_c01014{left:602.880000pt;}
.x2e_c01014{left:612.480000pt;}
.x59_c01014{left:614.400000pt;}
.x1_c01014{left:618.240000pt;}
.x39_c01014{left:622.080000pt;}
.x62_c01014{left:696.960000pt;}
.x61_c01014{left:700.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_03055f17b7566b4847aafd7a.woff2')format("woff");}.ff1_c01015{font-family:ff1_c01015;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m62_c01015{transform:matrix(0.207300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207300,0.000000,0.000000,0.250000,0,0);}
.m50_c01015{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m28_c01015{transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);}
.m51_c01015{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m52_c01015{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);}
.m5f_c01015{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);}
.m5c_c01015{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);}
.m4e_c01015{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);}
.m66_c01015{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);}
.m44_c01015{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m60_c01015{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);}
.m67_c01015{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);}
.m64_c01015{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01015{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m16_c01015{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m56_c01015{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m5a_c01015{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m58_c01015{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4_c01015{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01015{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01015{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m39_c01015{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01015{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m54_c01015{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);}
.m46_c01015{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);}
.m68_c01015{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);}
.m40_c01015{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m7_c01015{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);}
.m6a_c01015{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01015{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);}
.m53_c01015{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m69_c01015{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);}
.m43_c01015{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.ma_c01015{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m5d_c01015{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);}
.m41_c01015{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m8_c01015{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m0_c01015{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);}
.m63_c01015{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);}
.m2c_c01015{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01015{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);}
.m22_c01015{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m55_c01015{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);}
.mf_c01015{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.me_c01015{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);}
.m11_c01015{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m1_c01015{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m47_c01015{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);}
.m2b_c01015{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m10_c01015{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);}
.m32_c01015{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01015{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);}
.m18_c01015{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);}
.m4b_c01015{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m20_c01015{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m38_c01015{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01015{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.mc_c01015{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);}
.m30_c01015{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m45_c01015{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01015{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);}
.m1e_c01015{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m4d_c01015{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);}
.m3b_c01015{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m25_c01015{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m37_c01015{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m23_c01015{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);}
.m4a_c01015{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01015{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m48_c01015{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);}
.m5b_c01015{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m14_c01015{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m19_c01015{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01015{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m49_c01015{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);}
.m1f_c01015{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);}
.m34_c01015{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m3_c01015{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m27_c01015{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m29_c01015{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);}
.m36_c01015{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m35_c01015{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m59_c01015{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m6_c01015{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);}
.m2f_c01015{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m13_c01015{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m17_c01015{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m12_c01015{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);}
.mb_c01015{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);}
.m26_c01015{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m2_c01015{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);}
.md_c01015{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m15_c01015{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m5_c01015{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m31_c01015{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m9_c01015{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m24_c01015{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);}
.m3a_c01015{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);}
.m2e_c01015{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01015{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);}
.m33_c01015{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m42_c01015{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m21_c01015{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m65_c01015{transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);}
.m6b_c01015{transform:matrix(1.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.172500,0.000000,0.000000,0.250000,0,0);}
.m57_c01015{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.m5e_c01015{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.m61_c01015{transform:matrix(2.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.160000,0.000000,0.000000,0.250000,0,0);}
.v1_c01015{vertical-align:-2.880000px;}
.v0_c01015{vertical-align:0.000000px;}
.ls0_c01015{letter-spacing:0.000000px;}
.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;}
}
.ws1_c01015{word-spacing:0.000000px;}
.ws0_c01015{word-spacing:0.464640px;}
.fc0_c01015{color:transparent;}
.fsf_c01015{font-size:8.640000px;}
.fsd_c01015{font-size:11.520000px;}
.fse_c01015{font-size:14.400000px;}
.fs12_c01015{font-size:20.160000px;}
.fs2_c01015{font-size:34.560000px;}
.fs8_c01015{font-size:43.200000px;}
.fs9_c01015{font-size:46.080000px;}
.fs5_c01015{font-size:48.960000px;}
.fs3_c01015{font-size:51.840000px;}
.fs6_c01015{font-size:54.720000px;}
.fsa_c01015{font-size:57.600000px;}
.fs7_c01015{font-size:60.480000px;}
.fs1_c01015{font-size:63.360000px;}
.fs4_c01015{font-size:66.240000px;}
.fsb_c01015{font-size:69.120000px;}
.fs0_c01015{font-size:72.000000px;}
.fs11_c01015{font-size:74.880000px;}
.fs10_c01015{font-size:86.400000px;}
.fsc_c01015{font-size:95.040000px;}
.y0_c01015{bottom:0.000000px;}
.y85_c01015{bottom:81.360000px;}
.y84_c01015{bottom:98.640000px;}
.y82_c01015{bottom:102.960000px;}
.y83_c01015{bottom:104.400000px;}
.y78_c01015{bottom:124.560000px;}
.y80_c01015{bottom:135.360000px;}
.y81_c01015{bottom:137.520000px;}
.y77_c01015{bottom:142.560000px;}
.y76_c01015{bottom:148.320000px;}
.y7f_c01015{bottom:167.040000px;}
.y7e_c01015{bottom:167.760000px;}
.y75_c01015{bottom:178.560000px;}
.y74_c01015{bottom:180.720000px;}
.y6a_c01015{bottom:189.360000px;}
.y7d_c01015{bottom:199.440000px;}
.y69_c01015{bottom:206.640000px;}
.y73_c01015{bottom:212.400000px;}
.y68_c01015{bottom:213.120000px;}
.y7c_c01015{bottom:231.840000px;}
.y72_c01015{bottom:232.560000px;}
.y48_c01015{bottom:244.800000px;}
.y67_c01015{bottom:245.520000px;}
.y47_c01015{bottom:260.640000px;}
.y71_c01015{bottom:264.240000px;}
.y5c_c01015{bottom:264.960000px;}
.y53_c01015{bottom:265.680000px;}
.y66_c01015{bottom:275.040000px;}
.y52_c01015{bottom:282.240000px;}
.y5a_c01015{bottom:285.840000px;}
.y5b_c01015{bottom:288.000000px;}
.y65_c01015{bottom:293.760000px;}
.y7b_c01015{bottom:296.640000px;}
.y70_c01015{bottom:297.360000px;}
.y46_c01015{bottom:298.800000px;}
.y45_c01015{bottom:299.520000px;}
.y6f_c01015{bottom:301.680000px;}
.y50_c01015{bottom:318.240000px;}
.y59_c01015{bottom:318.960000px;}
.y51_c01015{bottom:321.120000px;}
.y44_c01015{bottom:328.320000px;}
.y7a_c01015{bottom:329.040000px;}
.y43_c01015{bottom:330.480000px;}
.y63_c01015{bottom:331.920000px;}
.y64_c01015{bottom:332.640000px;}
.y58_c01015{bottom:350.640000px;}
.y4e_c01015{bottom:351.360000px;}
.y4f_c01015{bottom:353.520000px;}
.y57_c01015{bottom:356.400000px;}
.y62_c01015{bottom:361.440000px;}
.y6e_c01015{bottom:362.160000px;}
.y42_c01015{bottom:362.880000px;}
.y41_c01015{bottom:363.600000px;}
.y6d_c01015{bottom:383.040000px;}
.y4d_c01015{bottom:385.200000px;}
.y4b_c01015{bottom:385.920000px;}
.y4c_c01015{bottom:388.080000px;}
.y61_c01015{bottom:393.840000px;}
.y79_c01015{bottom:394.560000px;}
.y40_c01015{bottom:396.000000px;}
.y3f_c01015{bottom:406.080000px;}
.y60_c01015{bottom:411.840000px;}
.y56_c01015{bottom:415.440000px;}
.y4a_c01015{bottom:416.160000px;}
.y55_c01015{bottom:417.600000px;}
.y5e_c01015{bottom:418.320000px;}
.y6c_c01015{bottom:419.040000px;}
.y5f_c01015{bottom:420.480000px;}
.y6b_c01015{bottom:447.120000px;}
.y3e_c01015{bottom:447.840000px;}
.y54_c01015{bottom:449.280000px;}
.y49_c01015{bottom:450.000000px;}
.y5d_c01015{bottom:452.880000px;}
.y3a_c01015{bottom:488.880000px;}
.y3d_c01015{bottom:489.600000px;}
.y3b_c01015{bottom:491.760000px;}
.y3c_c01015{bottom:492.480000px;}
.y39_c01015{bottom:532.080000px;}
.y38_c01015{bottom:532.800000px;}
.y37_c01015{bottom:534.960000px;}
.y34_c01015{bottom:574.560000px;}
.y32_c01015{bottom:575.280000px;}
.y35_c01015{bottom:577.440000px;}
.y33_c01015{bottom:578.160000px;}
.y36_c01015{bottom:578.880000px;}
.y2e_c01015{bottom:617.760000px;}
.y2f_c01015{bottom:618.480000px;}
.y30_c01015{bottom:620.640000px;}
.y31_c01015{bottom:621.360000px;}
.y2c_c01015{bottom:660.240000px;}
.y2d_c01015{bottom:660.960000px;}
.y2b_c01015{bottom:663.120000px;}
.y29_c01015{bottom:702.720000px;}
.y28_c01015{bottom:703.440000px;}
.y2a_c01015{bottom:704.880000px;}
.y25_c01015{bottom:705.600000px;}
.y27_c01015{bottom:706.320000px;}
.y26_c01015{bottom:707.040000px;}
.y22_c01015{bottom:746.640000px;}
.y24_c01015{bottom:748.800000px;}
.y23_c01015{bottom:749.520000px;}
.y21_c01015{bottom:789.120000px;}
.y20_c01015{bottom:792.000000px;}
.y1f_c01015{bottom:792.720000px;}
.y1d_c01015{bottom:832.320000px;}
.y1e_c01015{bottom:833.040000px;}
.y1c_c01015{bottom:835.200000px;}
.y1b_c01015{bottom:835.920000px;}
.y1a_c01015{bottom:875.520000px;}
.y19_c01015{bottom:878.400000px;}
.y18_c01015{bottom:879.120000px;}
.y15_c01015{bottom:918.720000px;}
.y16_c01015{bottom:920.160000px;}
.y17_c01015{bottom:920.880000px;}
.y14_c01015{bottom:921.600000px;}
.y13_c01015{bottom:922.320000px;}
.y10_c01015{bottom:961.200000px;}
.y12_c01015{bottom:961.920000px;}
.y11_c01015{bottom:962.640000px;}
.yf_c01015{bottom:964.080000px;}
.yd_c01015{bottom:964.800000px;}
.ye_c01015{bottom:965.520000px;}
.yb_c01015{bottom:1003.680000px;}
.yc_c01015{bottom:1004.400000px;}
.ya_c01015{bottom:1006.560000px;}
.y8_c01015{bottom:1007.280000px;}
.y9_c01015{bottom:1008.000000px;}
.y5_c01015{bottom:1046.160000px;}
.y7_c01015{bottom:1046.880000px;}
.y2_c01015{bottom:1047.600000px;}
.y6_c01015{bottom:1049.040000px;}
.y4_c01015{bottom:1049.760000px;}
.y3_c01015{bottom:1050.480000px;}
.y1_c01015{bottom:1103.040000px;}
.h12_c01015{height:7.775156px;}
.h10_c01015{height:10.366875px;}
.h11_c01015{height:12.958594px;}
.h15_c01015{height:18.142031px;}
.h4_c01015{height:31.100625px;}
.ha_c01015{height:38.875781px;}
.hb_c01015{height:41.467500px;}
.he_c01015{height:43.770937px;}
.h7_c01015{height:44.059219px;}
.h5_c01015{height:46.650937px;}
.h8_c01015{height:49.242656px;}
.hc_c01015{height:51.834375px;}
.h9_c01015{height:54.426094px;}
.h3_c01015{height:57.017812px;}
.h6_c01015{height:59.609531px;}
.hd_c01015{height:62.201250px;}
.h2_c01015{height:64.792969px;}
.h14_c01015{height:67.384687px;}
.h13_c01015{height:77.751563px;}
.hf_c01015{height:85.526719px;}
.h0_c01015{height:1152.720000px;}
.h1_c01015{height:1152.750000px;}
.w1_c01015{width:783.750000px;}
.w0_c01015{width:784.080000px;}
.x0_c01015{left:0.000000px;}
.x23_c01015{left:53.280000px;}
.x2_c01015{left:55.440000px;}
.x4f_c01015{left:56.880000px;}
.x3c_c01015{left:58.320000px;}
.x4c_c01015{left:66.240000px;}
.x14_c01015{left:88.560000px;}
.x2d_c01015{left:97.920000px;}
.x4d_c01015{left:99.360000px;}
.x28_c01015{left:109.440000px;}
.x4e_c01015{left:110.880000px;}
.x15_c01015{left:120.240000px;}
.x48_c01015{left:130.320000px;}
.xd_c01015{left:142.560000px;}
.x1c_c01015{left:153.360000px;}
.x34_c01015{left:162.000000px;}
.x3_c01015{left:163.440000px;}
.x50_c01015{left:165.600000px;}
.xe_c01015{left:174.240000px;}
.x4b_c01015{left:185.760000px;}
.x4_c01015{left:195.840000px;}
.x51_c01015{left:198.000000px;}
.x16_c01015{left:206.640000px;}
.x3d_c01015{left:218.160000px;}
.x5_c01015{left:227.520000px;}
.x1d_c01015{left:239.760000px;}
.x35_c01015{left:249.840000px;}
.x3e_c01015{left:261.360000px;}
.x52_c01015{left:263.520000px;}
.x2e_c01015{left:272.160000px;}
.x24_c01015{left:292.320000px;}
.xf_c01015{left:293.760000px;}
.x1e_c01015{left:303.120000px;}
.x2f_c01015{left:304.560000px;}
.x36_c01015{left:315.360000px;}
.x17_c01015{left:316.800000px;}
.x6_c01015{left:324.720000px;}
.x3f_c01015{left:326.160000px;}
.x25_c01015{left:335.520000px;}
.x1f_c01015{left:345.600000px;}
.x37_c01015{left:347.760000px;}
.x7_c01015{left:356.400000px;}
.x53_c01015{left:360.000000px;}
.x10_c01015{left:367.920000px;}
.x47_c01015{left:369.360000px;}
.x55_c01015{left:371.520000px;}
.x59_c01015{left:382.320000px;}
.x8_c01015{left:389.520000px;}
.x40_c01015{left:391.680000px;}
.x30_c01015{left:401.040000px;}
.x58_c01015{left:403.920000px;}
.x56_c01015{left:411.840000px;}
.x57_c01015{left:413.280000px;}
.x54_c01015{left:414.720000px;}
.x38_c01015{left:422.640000px;}
.x20_c01015{left:442.800000px;}
.x31_c01015{left:444.240000px;}
.x41_c01015{left:445.680000px;}
.x29_c01015{left:455.040000px;}
.x5f_c01015{left:456.480000px;}
.x5d_c01015{left:457.920000px;}
.x9_c01015{left:465.120000px;}
.x42_c01015{left:466.560000px;}
.x18_c01015{left:476.640000px;}
.x5b_c01015{left:479.520000px;}
.x21_c01015{left:487.440000px;}
.x49_c01015{left:489.600000px;}
.x5c_c01015{left:491.040000px;}
.xa_c01015{left:497.520000px;}
.x43_c01015{left:498.960000px;}
.x19_c01015{left:509.040000px;}
.x11_c01015{left:519.120000px;}
.x4a_c01015{left:521.280000px;}
.x5e_c01015{left:522.720000px;}
.xb_c01015{left:531.360000px;}
.x39_c01015{left:532.800000px;}
.x60_c01015{left:534.240000px;}
.x44_c01015{left:542.160000px;}
.x5a_c01015{left:544.320000px;}
.x2a_c01015{left:552.960000px;}
.x26_c01015{left:563.040000px;}
.x32_c01015{left:574.560000px;}
.x45_c01015{left:576.000000px;}
.x3a_c01015{left:586.800000px;}
.x1a_c01015{left:596.880000px;}
.x61_c01015{left:598.320000px;}
.xc_c01015{left:606.960000px;}
.x63_c01015{left:609.120000px;}
.x64_c01015{left:610.560000px;}
.x12_c01015{left:628.560000px;}
.x3b_c01015{left:630.720000px;}
.x46_c01015{left:639.360000px;}
.x66_c01015{left:641.520000px;}
.x1b_c01015{left:650.160000px;}
.x2b_c01015{left:651.600000px;}
.x62_c01015{left:653.040000px;}
.x65_c01015{left:654.480000px;}
.x13_c01015{left:659.520000px;}
.x27_c01015{left:660.960000px;}
.x2c_c01015{left:672.480000px;}
.x1_c01015{left:680.400000px;}
.x33_c01015{left:683.280000px;}
.x22_c01015{left:693.360000px;}
@media print{
.v1_c01015{vertical-align:-2.560000pt;}
.v0_c01015{vertical-align:0.000000pt;}
.ls0_c01015{letter-spacing:0.000000pt;}
.ws1_c01015{word-spacing:0.000000pt;}
.ws0_c01015{word-spacing:0.413013pt;}
.fsf_c01015{font-size:7.680000pt;}
.fsd_c01015{font-size:10.240000pt;}
.fse_c01015{font-size:12.800000pt;}
.fs12_c01015{font-size:17.920000pt;}
.fs2_c01015{font-size:30.720000pt;}
.fs8_c01015{font-size:38.400000pt;}
.fs9_c01015{font-size:40.960000pt;}
.fs5_c01015{font-size:43.520000pt;}
.fs3_c01015{font-size:46.080000pt;}
.fs6_c01015{font-size:48.640000pt;}
.fsa_c01015{font-size:51.200000pt;}
.fs7_c01015{font-size:53.760000pt;}
.fs1_c01015{font-size:56.320000pt;}
.fs4_c01015{font-size:58.880000pt;}
.fsb_c01015{font-size:61.440000pt;}
.fs0_c01015{font-size:64.000000pt;}
.fs11_c01015{font-size:66.560000pt;}
.fs10_c01015{font-size:76.800000pt;}
.fsc_c01015{font-size:84.480000pt;}
.y0_c01015{bottom:0.000000pt;}
.y85_c01015{bottom:72.320000pt;}
.y84_c01015{bottom:87.680000pt;}
.y82_c01015{bottom:91.520000pt;}
.y83_c01015{bottom:92.800000pt;}
.y78_c01015{bottom:110.720000pt;}
.y80_c01015{bottom:120.320000pt;}
.y81_c01015{bottom:122.240000pt;}
.y77_c01015{bottom:126.720000pt;}
.y76_c01015{bottom:131.840000pt;}
.y7f_c01015{bottom:148.480000pt;}
.y7e_c01015{bottom:149.120000pt;}
.y75_c01015{bottom:158.720000pt;}
.y74_c01015{bottom:160.640000pt;}
.y6a_c01015{bottom:168.320000pt;}
.y7d_c01015{bottom:177.280000pt;}
.y69_c01015{bottom:183.680000pt;}
.y73_c01015{bottom:188.800000pt;}
.y68_c01015{bottom:189.440000pt;}
.y7c_c01015{bottom:206.080000pt;}
.y72_c01015{bottom:206.720000pt;}
.y48_c01015{bottom:217.600000pt;}
.y67_c01015{bottom:218.240000pt;}
.y47_c01015{bottom:231.680000pt;}
.y71_c01015{bottom:234.880000pt;}
.y5c_c01015{bottom:235.520000pt;}
.y53_c01015{bottom:236.160000pt;}
.y66_c01015{bottom:244.480000pt;}
.y52_c01015{bottom:250.880000pt;}
.y5a_c01015{bottom:254.080000pt;}
.y5b_c01015{bottom:256.000000pt;}
.y65_c01015{bottom:261.120000pt;}
.y7b_c01015{bottom:263.680000pt;}
.y70_c01015{bottom:264.320000pt;}
.y46_c01015{bottom:265.600000pt;}
.y45_c01015{bottom:266.240000pt;}
.y6f_c01015{bottom:268.160000pt;}
.y50_c01015{bottom:282.880000pt;}
.y59_c01015{bottom:283.520000pt;}
.y51_c01015{bottom:285.440000pt;}
.y44_c01015{bottom:291.840000pt;}
.y7a_c01015{bottom:292.480000pt;}
.y43_c01015{bottom:293.760000pt;}
.y63_c01015{bottom:295.040000pt;}
.y64_c01015{bottom:295.680000pt;}
.y58_c01015{bottom:311.680000pt;}
.y4e_c01015{bottom:312.320000pt;}
.y4f_c01015{bottom:314.240000pt;}
.y57_c01015{bottom:316.800000pt;}
.y62_c01015{bottom:321.280000pt;}
.y6e_c01015{bottom:321.920000pt;}
.y42_c01015{bottom:322.560000pt;}
.y41_c01015{bottom:323.200000pt;}
.y6d_c01015{bottom:340.480000pt;}
.y4d_c01015{bottom:342.400000pt;}
.y4b_c01015{bottom:343.040000pt;}
.y4c_c01015{bottom:344.960000pt;}
.y61_c01015{bottom:350.080000pt;}
.y79_c01015{bottom:350.720000pt;}
.y40_c01015{bottom:352.000000pt;}
.y3f_c01015{bottom:360.960000pt;}
.y60_c01015{bottom:366.080000pt;}
.y56_c01015{bottom:369.280000pt;}
.y4a_c01015{bottom:369.920000pt;}
.y55_c01015{bottom:371.200000pt;}
.y5e_c01015{bottom:371.840000pt;}
.y6c_c01015{bottom:372.480000pt;}
.y5f_c01015{bottom:373.760000pt;}
.y6b_c01015{bottom:397.440000pt;}
.y3e_c01015{bottom:398.080000pt;}
.y54_c01015{bottom:399.360000pt;}
.y49_c01015{bottom:400.000000pt;}
.y5d_c01015{bottom:402.560000pt;}
.y3a_c01015{bottom:434.560000pt;}
.y3d_c01015{bottom:435.200000pt;}
.y3b_c01015{bottom:437.120000pt;}
.y3c_c01015{bottom:437.760000pt;}
.y39_c01015{bottom:472.960000pt;}
.y38_c01015{bottom:473.600000pt;}
.y37_c01015{bottom:475.520000pt;}
.y34_c01015{bottom:510.720000pt;}
.y32_c01015{bottom:511.360000pt;}
.y35_c01015{bottom:513.280000pt;}
.y33_c01015{bottom:513.920000pt;}
.y36_c01015{bottom:514.560000pt;}
.y2e_c01015{bottom:549.120000pt;}
.y2f_c01015{bottom:549.760000pt;}
.y30_c01015{bottom:551.680000pt;}
.y31_c01015{bottom:552.320000pt;}
.y2c_c01015{bottom:586.880000pt;}
.y2d_c01015{bottom:587.520000pt;}
.y2b_c01015{bottom:589.440000pt;}
.y29_c01015{bottom:624.640000pt;}
.y28_c01015{bottom:625.280000pt;}
.y2a_c01015{bottom:626.560000pt;}
.y25_c01015{bottom:627.200000pt;}
.y27_c01015{bottom:627.840000pt;}
.y26_c01015{bottom:628.480000pt;}
.y22_c01015{bottom:663.680000pt;}
.y24_c01015{bottom:665.600000pt;}
.y23_c01015{bottom:666.240000pt;}
.y21_c01015{bottom:701.440000pt;}
.y20_c01015{bottom:704.000000pt;}
.y1f_c01015{bottom:704.640000pt;}
.y1d_c01015{bottom:739.840000pt;}
.y1e_c01015{bottom:740.480000pt;}
.y1c_c01015{bottom:742.400000pt;}
.y1b_c01015{bottom:743.040000pt;}
.y1a_c01015{bottom:778.240000pt;}
.y19_c01015{bottom:780.800000pt;}
.y18_c01015{bottom:781.440000pt;}
.y15_c01015{bottom:816.640000pt;}
.y16_c01015{bottom:817.920000pt;}
.y17_c01015{bottom:818.560000pt;}
.y14_c01015{bottom:819.200000pt;}
.y13_c01015{bottom:819.840000pt;}
.y10_c01015{bottom:854.400000pt;}
.y12_c01015{bottom:855.040000pt;}
.y11_c01015{bottom:855.680000pt;}
.yf_c01015{bottom:856.960000pt;}
.yd_c01015{bottom:857.600000pt;}
.ye_c01015{bottom:858.240000pt;}
.yb_c01015{bottom:892.160000pt;}
.yc_c01015{bottom:892.800000pt;}
.ya_c01015{bottom:894.720000pt;}
.y8_c01015{bottom:895.360000pt;}
.y9_c01015{bottom:896.000000pt;}
.y5_c01015{bottom:929.920000pt;}
.y7_c01015{bottom:930.560000pt;}
.y2_c01015{bottom:931.200000pt;}
.y6_c01015{bottom:932.480000pt;}
.y4_c01015{bottom:933.120000pt;}
.y3_c01015{bottom:933.760000pt;}
.y1_c01015{bottom:980.480000pt;}
.h12_c01015{height:6.911250pt;}
.h10_c01015{height:9.215000pt;}
.h11_c01015{height:11.518750pt;}
.h15_c01015{height:16.126250pt;}
.h4_c01015{height:27.645000pt;}
.ha_c01015{height:34.556250pt;}
.hb_c01015{height:36.860000pt;}
.he_c01015{height:38.907500pt;}
.h7_c01015{height:39.163750pt;}
.h5_c01015{height:41.467500pt;}
.h8_c01015{height:43.771250pt;}
.hc_c01015{height:46.075000pt;}
.h9_c01015{height:48.378750pt;}
.h3_c01015{height:50.682500pt;}
.h6_c01015{height:52.986250pt;}
.hd_c01015{height:55.290000pt;}
.h2_c01015{height:57.593750pt;}
.h14_c01015{height:59.897500pt;}
.h13_c01015{height:69.112500pt;}
.hf_c01015{height:76.023750pt;}
.h0_c01015{height:1024.640000pt;}
.h1_c01015{height:1024.666667pt;}
.w1_c01015{width:696.666667pt;}
.w0_c01015{width:696.960000pt;}
.x0_c01015{left:0.000000pt;}
.x23_c01015{left:47.360000pt;}
.x2_c01015{left:49.280000pt;}
.x4f_c01015{left:50.560000pt;}
.x3c_c01015{left:51.840000pt;}
.x4c_c01015{left:58.880000pt;}
.x14_c01015{left:78.720000pt;}
.x2d_c01015{left:87.040000pt;}
.x4d_c01015{left:88.320000pt;}
.x28_c01015{left:97.280000pt;}
.x4e_c01015{left:98.560000pt;}
.x15_c01015{left:106.880000pt;}
.x48_c01015{left:115.840000pt;}
.xd_c01015{left:126.720000pt;}
.x1c_c01015{left:136.320000pt;}
.x34_c01015{left:144.000000pt;}
.x3_c01015{left:145.280000pt;}
.x50_c01015{left:147.200000pt;}
.xe_c01015{left:154.880000pt;}
.x4b_c01015{left:165.120000pt;}
.x4_c01015{left:174.080000pt;}
.x51_c01015{left:176.000000pt;}
.x16_c01015{left:183.680000pt;}
.x3d_c01015{left:193.920000pt;}
.x5_c01015{left:202.240000pt;}
.x1d_c01015{left:213.120000pt;}
.x35_c01015{left:222.080000pt;}
.x3e_c01015{left:232.320000pt;}
.x52_c01015{left:234.240000pt;}
.x2e_c01015{left:241.920000pt;}
.x24_c01015{left:259.840000pt;}
.xf_c01015{left:261.120000pt;}
.x1e_c01015{left:269.440000pt;}
.x2f_c01015{left:270.720000pt;}
.x36_c01015{left:280.320000pt;}
.x17_c01015{left:281.600000pt;}
.x6_c01015{left:288.640000pt;}
.x3f_c01015{left:289.920000pt;}
.x25_c01015{left:298.240000pt;}
.x1f_c01015{left:307.200000pt;}
.x37_c01015{left:309.120000pt;}
.x7_c01015{left:316.800000pt;}
.x53_c01015{left:320.000000pt;}
.x10_c01015{left:327.040000pt;}
.x47_c01015{left:328.320000pt;}
.x55_c01015{left:330.240000pt;}
.x59_c01015{left:339.840000pt;}
.x8_c01015{left:346.240000pt;}
.x40_c01015{left:348.160000pt;}
.x30_c01015{left:356.480000pt;}
.x58_c01015{left:359.040000pt;}
.x56_c01015{left:366.080000pt;}
.x57_c01015{left:367.360000pt;}
.x54_c01015{left:368.640000pt;}
.x38_c01015{left:375.680000pt;}
.x20_c01015{left:393.600000pt;}
.x31_c01015{left:394.880000pt;}
.x41_c01015{left:396.160000pt;}
.x29_c01015{left:404.480000pt;}
.x5f_c01015{left:405.760000pt;}
.x5d_c01015{left:407.040000pt;}
.x9_c01015{left:413.440000pt;}
.x42_c01015{left:414.720000pt;}
.x18_c01015{left:423.680000pt;}
.x5b_c01015{left:426.240000pt;}
.x21_c01015{left:433.280000pt;}
.x49_c01015{left:435.200000pt;}
.x5c_c01015{left:436.480000pt;}
.xa_c01015{left:442.240000pt;}
.x43_c01015{left:443.520000pt;}
.x19_c01015{left:452.480000pt;}
.x11_c01015{left:461.440000pt;}
.x4a_c01015{left:463.360000pt;}
.x5e_c01015{left:464.640000pt;}
.xb_c01015{left:472.320000pt;}
.x39_c01015{left:473.600000pt;}
.x60_c01015{left:474.880000pt;}
.x44_c01015{left:481.920000pt;}
.x5a_c01015{left:483.840000pt;}
.x2a_c01015{left:491.520000pt;}
.x26_c01015{left:500.480000pt;}
.x32_c01015{left:510.720000pt;}
.x45_c01015{left:512.000000pt;}
.x3a_c01015{left:521.600000pt;}
.x1a_c01015{left:530.560000pt;}
.x61_c01015{left:531.840000pt;}
.xc_c01015{left:539.520000pt;}
.x63_c01015{left:541.440000pt;}
.x64_c01015{left:542.720000pt;}
.x12_c01015{left:558.720000pt;}
.x3b_c01015{left:560.640000pt;}
.x46_c01015{left:568.320000pt;}
.x66_c01015{left:570.240000pt;}
.x1b_c01015{left:577.920000pt;}
.x2b_c01015{left:579.200000pt;}
.x62_c01015{left:580.480000pt;}
.x65_c01015{left:581.760000pt;}
.x13_c01015{left:586.240000pt;}
.x27_c01015{left:587.520000pt;}
.x2c_c01015{left:597.760000pt;}
.x1_c01015{left:604.800000pt;}
.x33_c01015{left:607.360000pt;}
.x22_c01015{left:616.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4979b3090b90843c0d3bc000.woff2')format("woff");}.ff1_c01016{font-family:ff1_c01016;line-height:1.109863;font-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_c01016{transform:matrix(0.241325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241325,0.000000,0.000000,0.250000,0,0);}
.m2c_c01016{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01016{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);}
.m4c_c01016{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m24_c01016{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m15_c01016{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m22_c01016{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mf_c01016{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01016{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m12_c01016{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m45_c01016{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1_c01016{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01016{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01016{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m68_c01016{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.md_c01016{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01016{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m13_c01016{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m14_c01016{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);}
.m2a_c01016{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m11_c01016{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_c01016{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);}
.m56_c01016{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m29_c01016{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m16_c01016{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m25_c01016{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);}
.m30_c01016{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01016{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01016{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m42_c01016{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);}
.m35_c01016{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m10_c01016{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m50_c01016{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m6_c01016{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);}
.m53_c01016{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m34_c01016{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);}
.m0_c01016{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m36_c01016{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);}
.m52_c01016{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m47_c01016{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);}
.m49_c01016{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);}
.m20_c01016{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);}
.ma_c01016{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m66_c01016{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m63_c01016{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);}
.m18_c01016{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m26_c01016{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);}
.m5c_c01016{transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);}
.m44_c01016{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);}
.m2b_c01016{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01016{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m31_c01016{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);}
.m60_c01016{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01016{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m43_c01016{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);}
.m21_c01016{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01016{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);}
.m58_c01016{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m61_c01016{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m51_c01016{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01016{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m2_c01016{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);}
.m46_c01016{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01016{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01016{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);}
.m41_c01016{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m64_c01016{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.mc_c01016{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.mb_c01016{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m23_c01016{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);}
.m5_c01016{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);}
.m55_c01016{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m28_c01016{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m5b_c01016{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);}
.m39_c01016{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01016{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m65_c01016{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m5e_c01016{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01016{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);}
.m32_c01016{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m67_c01016{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m7_c01016{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m5a_c01016{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m48_c01016{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);}
.m59_c01016{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);}
.m8_c01016{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01016{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);}
.m1f_c01016{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m4_c01016{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01016{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m3_c01016{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m54_c01016{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01016{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m62_c01016{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m38_c01016{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);}
.m37_c01016{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);}
.m57_c01016{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m4e_c01016{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);}
.m40_c01016{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m9_c01016{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m5f_c01016{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);}
.m3e_c01016{transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);}
.m5d_c01016{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.me_c01016{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.m33_c01016{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);}
.v1_c01016{vertical-align:-11.520000px;}
.v0_c01016{vertical-align:0.000000px;}
.ls0_c01016{letter-spacing:0.000000px;}
.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;}
}
.ws2_c01016{word-spacing:0.000000px;}
.ws1_c01016{word-spacing:4.582800px;}
.ws0_c01016{word-spacing:8.956560px;}
.fc0_c01016{color:transparent;}
.fs9_c01016{font-size:17.280000px;}
.fsd_c01016{font-size:20.160000px;}
.fsa_c01016{font-size:23.040000px;}
.fs3_c01016{font-size:34.560000px;}
.fse_c01016{font-size:37.440000px;}
.fs7_c01016{font-size:43.200000px;}
.fs4_c01016{font-size:46.080000px;}
.fs1_c01016{font-size:48.960000px;}
.fs2_c01016{font-size:51.840000px;}
.fs8_c01016{font-size:54.720000px;}
.fs5_c01016{font-size:57.600000px;}
.fs6_c01016{font-size:60.480000px;}
.fsc_c01016{font-size:63.360000px;}
.fsf_c01016{font-size:66.240000px;}
.fsb_c01016{font-size:69.120000px;}
.fs0_c01016{font-size:72.000000px;}
.y0_c01016{bottom:0.000000px;}
.y70_c01016{bottom:39.600000px;}
.y6e_c01016{bottom:40.320000px;}
.y6d_c01016{bottom:42.480000px;}
.y6f_c01016{bottom:43.200000px;}
.y6c_c01016{bottom:82.080000px;}
.y68_c01016{bottom:82.800000px;}
.y6b_c01016{bottom:83.520000px;}
.y69_c01016{bottom:85.680000px;}
.y6a_c01016{bottom:86.400000px;}
.y64_c01016{bottom:126.720000px;}
.y67_c01016{bottom:127.440000px;}
.y65_c01016{bottom:128.880000px;}
.y66_c01016{bottom:129.600000px;}
.y61_c01016{bottom:169.920000px;}
.y62_c01016{bottom:170.640000px;}
.y60_c01016{bottom:172.080000px;}
.y63_c01016{bottom:172.800000px;}
.y5f_c01016{bottom:223.200000px;}
.y5e_c01016{bottom:225.360000px;}
.y5c_c01016{bottom:265.680000px;}
.y5d_c01016{bottom:267.840000px;}
.y5b_c01016{bottom:268.560000px;}
.y59_c01016{bottom:308.160000px;}
.y5a_c01016{bottom:308.880000px;}
.y57_c01016{bottom:311.040000px;}
.y58_c01016{bottom:311.760000px;}
.y54_c01016{bottom:351.360000px;}
.y56_c01016{bottom:353.520000px;}
.y53_c01016{bottom:354.240000px;}
.y55_c01016{bottom:354.960000px;}
.y52_c01016{bottom:393.840000px;}
.y50_c01016{bottom:394.560000px;}
.y51_c01016{bottom:395.280000px;}
.y4f_c01016{bottom:396.720000px;}
.y4e_c01016{bottom:397.440000px;}
.y4b_c01016{bottom:447.840000px;}
.y4c_c01016{bottom:448.560000px;}
.y4d_c01016{bottom:450.000000px;}
.y4a_c01016{bottom:450.720000px;}
.y46_c01016{bottom:491.040000px;}
.y47_c01016{bottom:491.760000px;}
.y49_c01016{bottom:493.200000px;}
.y45_c01016{bottom:493.920000px;}
.y48_c01016{bottom:494.640000px;}
.y40_c01016{bottom:534.240000px;}
.y41_c01016{bottom:534.960000px;}
.y43_c01016{bottom:536.400000px;}
.y44_c01016{bottom:537.120000px;}
.y42_c01016{bottom:537.840000px;}
.y3e_c01016{bottom:577.440000px;}
.y3f_c01016{bottom:579.600000px;}
.y3d_c01016{bottom:580.320000px;}
.y3b_c01016{bottom:620.640000px;}
.y3c_c01016{bottom:622.800000px;}
.y3a_c01016{bottom:623.520000px;}
.y37_c01016{bottom:663.840000px;}
.y39_c01016{bottom:665.280000px;}
.y38_c01016{bottom:666.000000px;}
.y36_c01016{bottom:666.720000px;}
.y31_c01016{bottom:696.240000px;}
.y32_c01016{bottom:696.960000px;}
.y35_c01016{bottom:698.400000px;}
.y33_c01016{bottom:699.120000px;}
.y34_c01016{bottom:702.000000px;}
.y30_c01016{bottom:717.120000px;}
.y2c_c01016{bottom:718.560000px;}
.y2b_c01016{bottom:719.280000px;}
.y2a_c01016{bottom:720.000000px;}
.y2f_c01016{bottom:720.720000px;}
.y27_c01016{bottom:749.520000px;}
.y25_c01016{bottom:750.240000px;}
.y24_c01016{bottom:751.680000px;}
.y26_c01016{bottom:752.400000px;}
.y23_c01016{bottom:753.120000px;}
.y28_c01016{bottom:781.200000px;}
.y2e_c01016{bottom:782.640000px;}
.y29_c01016{bottom:784.080000px;}
.y22_c01016{bottom:784.800000px;}
.y2d_c01016{bottom:785.520000px;}
.y20_c01016{bottom:823.680000px;}
.y1d_c01016{bottom:824.400000px;}
.y21_c01016{bottom:825.840000px;}
.y1e_c01016{bottom:826.560000px;}
.y1f_c01016{bottom:827.280000px;}
.y17_c01016{bottom:866.160000px;}
.y1a_c01016{bottom:866.880000px;}
.y1c_c01016{bottom:868.320000px;}
.y19_c01016{bottom:869.040000px;}
.y1b_c01016{bottom:869.760000px;}
.y18_c01016{bottom:870.480000px;}
.y10_c01016{bottom:920.880000px;}
.yc_c01016{bottom:921.600000px;}
.y16_c01016{bottom:922.320000px;}
.yb_c01016{bottom:923.040000px;}
.y15_c01016{bottom:941.040000px;}
.y12_c01016{bottom:941.760000px;}
.ya_c01016{bottom:943.200000px;}
.y13_c01016{bottom:943.920000px;}
.yf_c01016{bottom:944.640000px;}
.y14_c01016{bottom:946.800000px;}
.y11_c01016{bottom:964.800000px;}
.ye_c01016{bottom:965.520000px;}
.yd_c01016{bottom:966.240000px;}
.y9_c01016{bottom:966.960000px;}
.y7_c01016{bottom:1006.560000px;}
.y8_c01016{bottom:1007.280000px;}
.y5_c01016{bottom:1009.440000px;}
.y6_c01016{bottom:1010.160000px;}
.y4_c01016{bottom:1050.480000px;}
.y3_c01016{bottom:1051.200000px;}
.y2_c01016{bottom:1051.920000px;}
.y1_c01016{bottom:1113.120000px;}
.hb_c01016{height:15.550313px;}
.hf_c01016{height:18.142031px;}
.hc_c01016{height:20.733750px;}
.h5_c01016{height:31.100625px;}
.h10_c01016{height:33.692344px;}
.h9_c01016{height:38.875781px;}
.h6_c01016{height:41.467500px;}
.h3_c01016{height:44.059219px;}
.h4_c01016{height:46.650937px;}
.ha_c01016{height:49.242656px;}
.h7_c01016{height:51.834375px;}
.h8_c01016{height:54.426094px;}
.he_c01016{height:57.017812px;}
.h11_c01016{height:59.609531px;}
.hd_c01016{height:62.201250px;}
.h2_c01016{height:64.792969px;}
.h0_c01016{height:1155.600000px;}
.h1_c01016{height:1155.750000px;}
.w1_c01016{width:788.250000px;}
.w0_c01016{width:788.400000px;}
.x0_c01016{left:0.000000px;}
.x3b_c01016{left:58.320000px;}
.xa_c01016{left:59.760000px;}
.x26_c01016{left:61.200000px;}
.xf_c01016{left:72.000000px;}
.x27_c01016{left:80.640000px;}
.xe_c01016{left:82.080000px;}
.xb_c01016{left:92.160000px;}
.x4e_c01016{left:102.240000px;}
.x3c_c01016{left:103.680000px;}
.x28_c01016{left:114.480000px;}
.xc_c01016{left:125.280000px;}
.x22_c01016{left:134.640000px;}
.x12_c01016{left:137.520000px;}
.x11_c01016{left:147.600000px;}
.x10_c01016{left:157.680000px;}
.x2_c01016{left:168.480000px;}
.x29_c01016{left:179.280000px;}
.x49_c01016{left:182.160000px;}
.x45_c01016{left:190.800000px;}
.x3_c01016{left:200.880000px;}
.x14_c01016{left:202.320000px;}
.x39_c01016{left:209.520000px;}
.x43_c01016{left:211.680000px;}
.x42_c01016{left:220.320000px;}
.x13_c01016{left:222.480000px;}
.xd_c01016{left:233.280000px;}
.x35_c01016{left:244.800000px;}
.x1d_c01016{left:254.880000px;}
.x4_c01016{left:264.240000px;}
.x2a_c01016{left:266.400000px;}
.x36_c01016{left:275.760000px;}
.x16_c01016{left:277.920000px;}
.x1e_c01016{left:285.120000px;}
.x15_c01016{left:287.280000px;}
.x23_c01016{left:298.080000px;}
.x51_c01016{left:308.880000px;}
.x2b_c01016{left:319.680000px;}
.x24_c01016{left:330.480000px;}
.x5_c01016{left:340.560000px;}
.x18_c01016{left:352.800000px;}
.x17_c01016{left:362.160000px;}
.x6_c01016{left:372.240000px;}
.x4a_c01016{left:373.680000px;}
.x53_c01016{left:375.120000px;}
.x33_c01016{left:383.040000px;}
.x2c_c01016{left:384.480000px;}
.x37_c01016{left:393.840000px;}
.x3d_c01016{left:395.280000px;}
.x1f_c01016{left:405.360000px;}
.x55_c01016{left:406.800000px;}
.x34_c01016{left:415.440000px;}
.x4f_c01016{left:417.600000px;}
.x2d_c01016{left:426.240000px;}
.x19_c01016{left:427.680000px;}
.x25_c01016{left:437.760000px;}
.x38_c01016{left:449.280000px;}
.x7_c01016{left:459.360000px;}
.x46_c01016{left:460.800000px;}
.x3a_c01016{left:470.880000px;}
.x4b_c01016{left:481.680000px;}
.x1a_c01016{left:491.040000px;}
.x30_c01016{left:492.480000px;}
.x2f_c01016{left:512.640000px;}
.x52_c01016{left:514.080000px;}
.x56_c01016{left:515.520000px;}
.x3e_c01016{left:524.880000px;}
.x1b_c01016{left:534.240000px;}
.x47_c01016{left:535.680000px;}
.x2e_c01016{left:546.480000px;}
.x20_c01016{left:557.280000px;}
.x1c_c01016{left:568.800000px;}
.x8_c01016{left:578.160000px;}
.x54_c01016{left:579.600000px;}
.x31_c01016{left:589.680000px;}
.x3f_c01016{left:600.480000px;}
.x32_c01016{left:610.560000px;}
.x4d_c01016{left:612.000000px;}
.x4c_c01016{left:613.440000px;}
.x9_c01016{left:621.360000px;}
.x40_c01016{left:632.880000px;}
.x50_c01016{left:634.320000px;}
.x21_c01016{left:643.680000px;}
.x57_c01016{left:645.120000px;}
.x44_c01016{left:655.920000px;}
.x48_c01016{left:666.000000px;}
.x41_c01016{left:677.520000px;}
.x1_c01016{left:689.760000px;}
@media print{
.v1_c01016{vertical-align:-10.240000pt;}
.v0_c01016{vertical-align:0.000000pt;}
.ls0_c01016{letter-spacing:0.000000pt;}
.ws2_c01016{word-spacing:0.000000pt;}
.ws1_c01016{word-spacing:4.073600pt;}
.ws0_c01016{word-spacing:7.961387pt;}
.fs9_c01016{font-size:15.360000pt;}
.fsd_c01016{font-size:17.920000pt;}
.fsa_c01016{font-size:20.480000pt;}
.fs3_c01016{font-size:30.720000pt;}
.fse_c01016{font-size:33.280000pt;}
.fs7_c01016{font-size:38.400000pt;}
.fs4_c01016{font-size:40.960000pt;}
.fs1_c01016{font-size:43.520000pt;}
.fs2_c01016{font-size:46.080000pt;}
.fs8_c01016{font-size:48.640000pt;}
.fs5_c01016{font-size:51.200000pt;}
.fs6_c01016{font-size:53.760000pt;}
.fsc_c01016{font-size:56.320000pt;}
.fsf_c01016{font-size:58.880000pt;}
.fsb_c01016{font-size:61.440000pt;}
.fs0_c01016{font-size:64.000000pt;}
.y0_c01016{bottom:0.000000pt;}
.y70_c01016{bottom:35.200000pt;}
.y6e_c01016{bottom:35.840000pt;}
.y6d_c01016{bottom:37.760000pt;}
.y6f_c01016{bottom:38.400000pt;}
.y6c_c01016{bottom:72.960000pt;}
.y68_c01016{bottom:73.600000pt;}
.y6b_c01016{bottom:74.240000pt;}
.y69_c01016{bottom:76.160000pt;}
.y6a_c01016{bottom:76.800000pt;}
.y64_c01016{bottom:112.640000pt;}
.y67_c01016{bottom:113.280000pt;}
.y65_c01016{bottom:114.560000pt;}
.y66_c01016{bottom:115.200000pt;}
.y61_c01016{bottom:151.040000pt;}
.y62_c01016{bottom:151.680000pt;}
.y60_c01016{bottom:152.960000pt;}
.y63_c01016{bottom:153.600000pt;}
.y5f_c01016{bottom:198.400000pt;}
.y5e_c01016{bottom:200.320000pt;}
.y5c_c01016{bottom:236.160000pt;}
.y5d_c01016{bottom:238.080000pt;}
.y5b_c01016{bottom:238.720000pt;}
.y59_c01016{bottom:273.920000pt;}
.y5a_c01016{bottom:274.560000pt;}
.y57_c01016{bottom:276.480000pt;}
.y58_c01016{bottom:277.120000pt;}
.y54_c01016{bottom:312.320000pt;}
.y56_c01016{bottom:314.240000pt;}
.y53_c01016{bottom:314.880000pt;}
.y55_c01016{bottom:315.520000pt;}
.y52_c01016{bottom:350.080000pt;}
.y50_c01016{bottom:350.720000pt;}
.y51_c01016{bottom:351.360000pt;}
.y4f_c01016{bottom:352.640000pt;}
.y4e_c01016{bottom:353.280000pt;}
.y4b_c01016{bottom:398.080000pt;}
.y4c_c01016{bottom:398.720000pt;}
.y4d_c01016{bottom:400.000000pt;}
.y4a_c01016{bottom:400.640000pt;}
.y46_c01016{bottom:436.480000pt;}
.y47_c01016{bottom:437.120000pt;}
.y49_c01016{bottom:438.400000pt;}
.y45_c01016{bottom:439.040000pt;}
.y48_c01016{bottom:439.680000pt;}
.y40_c01016{bottom:474.880000pt;}
.y41_c01016{bottom:475.520000pt;}
.y43_c01016{bottom:476.800000pt;}
.y44_c01016{bottom:477.440000pt;}
.y42_c01016{bottom:478.080000pt;}
.y3e_c01016{bottom:513.280000pt;}
.y3f_c01016{bottom:515.200000pt;}
.y3d_c01016{bottom:515.840000pt;}
.y3b_c01016{bottom:551.680000pt;}
.y3c_c01016{bottom:553.600000pt;}
.y3a_c01016{bottom:554.240000pt;}
.y37_c01016{bottom:590.080000pt;}
.y39_c01016{bottom:591.360000pt;}
.y38_c01016{bottom:592.000000pt;}
.y36_c01016{bottom:592.640000pt;}
.y31_c01016{bottom:618.880000pt;}
.y32_c01016{bottom:619.520000pt;}
.y35_c01016{bottom:620.800000pt;}
.y33_c01016{bottom:621.440000pt;}
.y34_c01016{bottom:624.000000pt;}
.y30_c01016{bottom:637.440000pt;}
.y2c_c01016{bottom:638.720000pt;}
.y2b_c01016{bottom:639.360000pt;}
.y2a_c01016{bottom:640.000000pt;}
.y2f_c01016{bottom:640.640000pt;}
.y27_c01016{bottom:666.240000pt;}
.y25_c01016{bottom:666.880000pt;}
.y24_c01016{bottom:668.160000pt;}
.y26_c01016{bottom:668.800000pt;}
.y23_c01016{bottom:669.440000pt;}
.y28_c01016{bottom:694.400000pt;}
.y2e_c01016{bottom:695.680000pt;}
.y29_c01016{bottom:696.960000pt;}
.y22_c01016{bottom:697.600000pt;}
.y2d_c01016{bottom:698.240000pt;}
.y20_c01016{bottom:732.160000pt;}
.y1d_c01016{bottom:732.800000pt;}
.y21_c01016{bottom:734.080000pt;}
.y1e_c01016{bottom:734.720000pt;}
.y1f_c01016{bottom:735.360000pt;}
.y17_c01016{bottom:769.920000pt;}
.y1a_c01016{bottom:770.560000pt;}
.y1c_c01016{bottom:771.840000pt;}
.y19_c01016{bottom:772.480000pt;}
.y1b_c01016{bottom:773.120000pt;}
.y18_c01016{bottom:773.760000pt;}
.y10_c01016{bottom:818.560000pt;}
.yc_c01016{bottom:819.200000pt;}
.y16_c01016{bottom:819.840000pt;}
.yb_c01016{bottom:820.480000pt;}
.y15_c01016{bottom:836.480000pt;}
.y12_c01016{bottom:837.120000pt;}
.ya_c01016{bottom:838.400000pt;}
.y13_c01016{bottom:839.040000pt;}
.yf_c01016{bottom:839.680000pt;}
.y14_c01016{bottom:841.600000pt;}
.y11_c01016{bottom:857.600000pt;}
.ye_c01016{bottom:858.240000pt;}
.yd_c01016{bottom:858.880000pt;}
.y9_c01016{bottom:859.520000pt;}
.y7_c01016{bottom:894.720000pt;}
.y8_c01016{bottom:895.360000pt;}
.y5_c01016{bottom:897.280000pt;}
.y6_c01016{bottom:897.920000pt;}
.y4_c01016{bottom:933.760000pt;}
.y3_c01016{bottom:934.400000pt;}
.y2_c01016{bottom:935.040000pt;}
.y1_c01016{bottom:989.440000pt;}
.hb_c01016{height:13.822500pt;}
.hf_c01016{height:16.126250pt;}
.hc_c01016{height:18.430000pt;}
.h5_c01016{height:27.645000pt;}
.h10_c01016{height:29.948750pt;}
.h9_c01016{height:34.556250pt;}
.h6_c01016{height:36.860000pt;}
.h3_c01016{height:39.163750pt;}
.h4_c01016{height:41.467500pt;}
.ha_c01016{height:43.771250pt;}
.h7_c01016{height:46.075000pt;}
.h8_c01016{height:48.378750pt;}
.he_c01016{height:50.682500pt;}
.h11_c01016{height:52.986250pt;}
.hd_c01016{height:55.290000pt;}
.h2_c01016{height:57.593750pt;}
.h0_c01016{height:1027.200000pt;}
.h1_c01016{height:1027.333333pt;}
.w1_c01016{width:700.666667pt;}
.w0_c01016{width:700.800000pt;}
.x0_c01016{left:0.000000pt;}
.x3b_c01016{left:51.840000pt;}
.xa_c01016{left:53.120000pt;}
.x26_c01016{left:54.400000pt;}
.xf_c01016{left:64.000000pt;}
.x27_c01016{left:71.680000pt;}
.xe_c01016{left:72.960000pt;}
.xb_c01016{left:81.920000pt;}
.x4e_c01016{left:90.880000pt;}
.x3c_c01016{left:92.160000pt;}
.x28_c01016{left:101.760000pt;}
.xc_c01016{left:111.360000pt;}
.x22_c01016{left:119.680000pt;}
.x12_c01016{left:122.240000pt;}
.x11_c01016{left:131.200000pt;}
.x10_c01016{left:140.160000pt;}
.x2_c01016{left:149.760000pt;}
.x29_c01016{left:159.360000pt;}
.x49_c01016{left:161.920000pt;}
.x45_c01016{left:169.600000pt;}
.x3_c01016{left:178.560000pt;}
.x14_c01016{left:179.840000pt;}
.x39_c01016{left:186.240000pt;}
.x43_c01016{left:188.160000pt;}
.x42_c01016{left:195.840000pt;}
.x13_c01016{left:197.760000pt;}
.xd_c01016{left:207.360000pt;}
.x35_c01016{left:217.600000pt;}
.x1d_c01016{left:226.560000pt;}
.x4_c01016{left:234.880000pt;}
.x2a_c01016{left:236.800000pt;}
.x36_c01016{left:245.120000pt;}
.x16_c01016{left:247.040000pt;}
.x1e_c01016{left:253.440000pt;}
.x15_c01016{left:255.360000pt;}
.x23_c01016{left:264.960000pt;}
.x51_c01016{left:274.560000pt;}
.x2b_c01016{left:284.160000pt;}
.x24_c01016{left:293.760000pt;}
.x5_c01016{left:302.720000pt;}
.x18_c01016{left:313.600000pt;}
.x17_c01016{left:321.920000pt;}
.x6_c01016{left:330.880000pt;}
.x4a_c01016{left:332.160000pt;}
.x53_c01016{left:333.440000pt;}
.x33_c01016{left:340.480000pt;}
.x2c_c01016{left:341.760000pt;}
.x37_c01016{left:350.080000pt;}
.x3d_c01016{left:351.360000pt;}
.x1f_c01016{left:360.320000pt;}
.x55_c01016{left:361.600000pt;}
.x34_c01016{left:369.280000pt;}
.x4f_c01016{left:371.200000pt;}
.x2d_c01016{left:378.880000pt;}
.x19_c01016{left:380.160000pt;}
.x25_c01016{left:389.120000pt;}
.x38_c01016{left:399.360000pt;}
.x7_c01016{left:408.320000pt;}
.x46_c01016{left:409.600000pt;}
.x3a_c01016{left:418.560000pt;}
.x4b_c01016{left:428.160000pt;}
.x1a_c01016{left:436.480000pt;}
.x30_c01016{left:437.760000pt;}
.x2f_c01016{left:455.680000pt;}
.x52_c01016{left:456.960000pt;}
.x56_c01016{left:458.240000pt;}
.x3e_c01016{left:466.560000pt;}
.x1b_c01016{left:474.880000pt;}
.x47_c01016{left:476.160000pt;}
.x2e_c01016{left:485.760000pt;}
.x20_c01016{left:495.360000pt;}
.x1c_c01016{left:505.600000pt;}
.x8_c01016{left:513.920000pt;}
.x54_c01016{left:515.200000pt;}
.x31_c01016{left:524.160000pt;}
.x3f_c01016{left:533.760000pt;}
.x32_c01016{left:542.720000pt;}
.x4d_c01016{left:544.000000pt;}
.x4c_c01016{left:545.280000pt;}
.x9_c01016{left:552.320000pt;}
.x40_c01016{left:562.560000pt;}
.x50_c01016{left:563.840000pt;}
.x21_c01016{left:572.160000pt;}
.x57_c01016{left:573.440000pt;}
.x44_c01016{left:583.040000pt;}
.x48_c01016{left:592.000000pt;}
.x41_c01016{left:602.240000pt;}
.x1_c01016{left:613.120000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_684a1a626573c9f0b72b9694.woff2')format("woff");}.ff1_c01017{font-family:ff1_c01017;line-height:1.109863;font-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_c01017{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);}
.m31_c01017{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);}
.m5b_c01017{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m23_c01017{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);}
.m58_c01017{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01017{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m0_c01017{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m54_c01017{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m11_c01017{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m40_c01017{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m32_c01017{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m39_c01017{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m48_c01017{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m51_c01017{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);}
.m27_c01017{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m59_c01017{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m4_c01017{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);}
.m3e_c01017{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m44_c01017{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);}
.m1d_c01017{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m30_c01017{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);}
.mc_c01017{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m13_c01017{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m37_c01017{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m18_c01017{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);}
.m7_c01017{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01017{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m20_c01017{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);}
.m57_c01017{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m5_c01017{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);}
.m4a_c01017{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.md_c01017{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);}
.m1f_c01017{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m5d_c01017{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01017{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m14_c01017{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);}
.m8_c01017{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m22_c01017{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);}
.m3a_c01017{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);}
.m2c_c01017{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);}
.m17_c01017{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m55_c01017{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01017{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m3_c01017{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);}
.m47_c01017{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m36_c01017{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);}
.m29_c01017{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01017{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);}
.m4f_c01017{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m34_c01017{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01017{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m41_c01017{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m1_c01017{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);}
.ma_c01017{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m50_c01017{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.me_c01017{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m21_c01017{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);}
.m5e_c01017{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m5f_c01017{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m12_c01017{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01017{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.mb_c01017{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m45_c01017{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);}
.m2e_c01017{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);}
.m33_c01017{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m2_c01017{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.mf_c01017{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);}
.m10_c01017{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01017{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m15_c01017{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m6_c01017{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);}
.m46_c01017{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01017{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m19_c01017{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m5c_c01017{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);}
.m52_c01017{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01017{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m16_c01017{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01017{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m26_c01017{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m5a_c01017{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m35_c01017{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01017{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);}
.m53_c01017{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m28_c01017{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);}
.m43_c01017{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01017{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01017{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m24_c01017{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m49_c01017{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m9_c01017{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m38_c01017{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);}
.m3d_c01017{transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);}
.m56_c01017{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01017{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m60_c01017{transform:matrix(0.650000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.650000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.650000,0.000000,0.000000,0.250000,0,0);}
.m42_c01017{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);}
.v1_c01017{vertical-align:-8.640000px;}
.v2_c01017{vertical-align:-2.880000px;}
.v0_c01017{vertical-align:0.000000px;}
.v3_c01017{vertical-align:8.640000px;}
.ls0_c01017{letter-spacing:0.000000px;}
.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:-3.987600px;}
.ws2_c01017{word-spacing:-3.779040px;}
.ws4_c01017{word-spacing:0.000000px;}
.ws1_c01017{word-spacing:5.414400px;}
.ws3_c01017{word-spacing:5.845200px;}
.fc0_c01017{color:transparent;}
.fsc_c01017{font-size:31.680000px;}
.fs7_c01017{font-size:34.560000px;}
.fsb_c01017{font-size:37.440000px;}
.fs5_c01017{font-size:43.200000px;}
.fs1_c01017{font-size:46.080000px;}
.fs8_c01017{font-size:48.960000px;}
.fs2_c01017{font-size:51.840000px;}
.fsa_c01017{font-size:54.720000px;}
.fs9_c01017{font-size:57.600000px;}
.fs4_c01017{font-size:60.480000px;}
.fs6_c01017{font-size:63.360000px;}
.fsd_c01017{font-size:66.240000px;}
.fs3_c01017{font-size:69.120000px;}
.fs0_c01017{font-size:72.000000px;}
.y0_c01017{bottom:0.000000px;}
.y75_c01017{bottom:23.040000px;}
.y76_c01017{bottom:23.760000px;}
.y77_c01017{bottom:25.920000px;}
.y73_c01017{bottom:63.360000px;}
.y72_c01017{bottom:65.520000px;}
.y71_c01017{bottom:66.240000px;}
.y74_c01017{bottom:66.960000px;}
.y6d_c01017{bottom:105.840000px;}
.y6e_c01017{bottom:106.560000px;}
.y6f_c01017{bottom:107.280000px;}
.y70_c01017{bottom:108.000000px;}
.y6c_c01017{bottom:108.720000px;}
.y6b_c01017{bottom:109.440000px;}
.y68_c01017{bottom:149.040000px;}
.y6a_c01017{bottom:151.200000px;}
.y67_c01017{bottom:151.920000px;}
.y69_c01017{bottom:152.640000px;}
.y65_c01017{bottom:192.240000px;}
.y63_c01017{bottom:192.960000px;}
.y64_c01017{bottom:194.400000px;}
.y62_c01017{bottom:195.120000px;}
.y66_c01017{bottom:195.840000px;}
.y5f_c01017{bottom:234.720000px;}
.y60_c01017{bottom:237.600000px;}
.y61_c01017{bottom:238.320000px;}
.y5b_c01017{bottom:277.920000px;}
.y59_c01017{bottom:278.640000px;}
.y5d_c01017{bottom:279.360000px;}
.y5e_c01017{bottom:280.080000px;}
.y5a_c01017{bottom:280.800000px;}
.y5c_c01017{bottom:282.240000px;}
.y57_c01017{bottom:320.400000px;}
.y58_c01017{bottom:321.120000px;}
.y56_c01017{bottom:321.840000px;}
.y53_c01017{bottom:323.280000px;}
.y54_c01017{bottom:324.000000px;}
.y55_c01017{bottom:324.720000px;}
.y4e_c01017{bottom:364.320000px;}
.y51_c01017{bottom:365.040000px;}
.y52_c01017{bottom:366.480000px;}
.y4f_c01017{bottom:367.200000px;}
.y50_c01017{bottom:367.920000px;}
.y4a_c01017{bottom:407.520000px;}
.y4c_c01017{bottom:408.240000px;}
.y4d_c01017{bottom:409.680000px;}
.y4b_c01017{bottom:410.400000px;}
.y48_c01017{bottom:450.720000px;}
.y49_c01017{bottom:452.880000px;}
.y47_c01017{bottom:453.600000px;}
.y46_c01017{bottom:454.320000px;}
.y41_c01017{bottom:493.200000px;}
.y44_c01017{bottom:493.920000px;}
.y43_c01017{bottom:494.640000px;}
.y42_c01017{bottom:496.080000px;}
.y45_c01017{bottom:496.800000px;}
.y3f_c01017{bottom:536.400000px;}
.y40_c01017{bottom:537.120000px;}
.y3e_c01017{bottom:539.280000px;}
.y3c_c01017{bottom:578.880000px;}
.y3d_c01017{bottom:581.760000px;}
.y3b_c01017{bottom:582.480000px;}
.y39_c01017{bottom:621.360000px;}
.y38_c01017{bottom:622.080000px;}
.y3a_c01017{bottom:624.240000px;}
.y36_c01017{bottom:664.560000px;}
.y34_c01017{bottom:665.280000px;}
.y37_c01017{bottom:666.720000px;}
.y33_c01017{bottom:667.440000px;}
.y35_c01017{bottom:668.160000px;}
.y31_c01017{bottom:707.760000px;}
.y2f_c01017{bottom:708.480000px;}
.y32_c01017{bottom:709.920000px;}
.y30_c01017{bottom:710.640000px;}
.y2e_c01017{bottom:711.360000px;}
.y2b_c01017{bottom:749.520000px;}
.y2d_c01017{bottom:750.240000px;}
.y2c_c01017{bottom:752.400000px;}
.y29_c01017{bottom:753.120000px;}
.y2a_c01017{bottom:753.840000px;}
.y28_c01017{bottom:793.440000px;}
.y24_c01017{bottom:794.160000px;}
.y27_c01017{bottom:794.880000px;}
.y25_c01017{bottom:795.600000px;}
.y26_c01017{bottom:796.320000px;}
.y20_c01017{bottom:847.440000px;}
.y23_c01017{bottom:848.880000px;}
.y22_c01017{bottom:849.600000px;}
.y21_c01017{bottom:850.320000px;}
.y1f_c01017{bottom:851.040000px;}
.y1e_c01017{bottom:889.200000px;}
.y1b_c01017{bottom:890.640000px;}
.y1d_c01017{bottom:892.080000px;}
.y1a_c01017{bottom:892.800000px;}
.y1c_c01017{bottom:893.520000px;}
.y18_c01017{bottom:932.400000px;}
.y19_c01017{bottom:933.120000px;}
.y15_c01017{bottom:934.560000px;}
.y17_c01017{bottom:935.280000px;}
.y16_c01017{bottom:936.000000px;}
.y14_c01017{bottom:936.720000px;}
.y11_c01017{bottom:975.600000px;}
.yf_c01017{bottom:977.040000px;}
.y10_c01017{bottom:977.760000px;}
.y12_c01017{bottom:978.480000px;}
.y13_c01017{bottom:979.200000px;}
.ye_c01017{bottom:979.920000px;}
.yc_c01017{bottom:1017.360000px;}
.ya_c01017{bottom:1018.800000px;}
.yb_c01017{bottom:1019.520000px;}
.yd_c01017{bottom:1020.960000px;}
.y9_c01017{bottom:1021.680000px;}
.y8_c01017{bottom:1022.400000px;}
.y5_c01017{bottom:1059.840000px;}
.y6_c01017{bottom:1061.280000px;}
.y7_c01017{bottom:1062.000000px;}
.y2_c01017{bottom:1062.720000px;}
.y4_c01017{bottom:1064.160000px;}
.y3_c01017{bottom:1064.880000px;}
.y1_c01017{bottom:1131.120000px;}
.h10_c01017{height:28.508906px;}
.h9_c01017{height:31.100625px;}
.hd_c01017{height:33.692344px;}
.h7_c01017{height:38.875781px;}
.h3_c01017{height:41.467500px;}
.he_c01017{height:43.770937px;}
.ha_c01017{height:44.059219px;}
.h4_c01017{height:46.650937px;}
.hc_c01017{height:49.242656px;}
.hb_c01017{height:51.834375px;}
.h6_c01017{height:54.426094px;}
.h8_c01017{height:57.017812px;}
.hf_c01017{height:59.609531px;}
.h5_c01017{height:62.201250px;}
.h2_c01017{height:64.792969px;}
.h1_c01017{height:1167.750000px;}
.h0_c01017{height:1167.840000px;}
.w1_c01017{width:788.250000px;}
.w0_c01017{width:788.400000px;}
.x0_c01017{left:0.000000px;}
.x14_c01017{left:60.480000px;}
.x2_c01017{left:61.920000px;}
.x44_c01017{left:93.600000px;}
.x15_c01017{left:105.120000px;}
.x1c_c01017{left:116.640000px;}
.x46_c01017{left:126.720000px;}
.x3d_c01017{left:136.800000px;}
.x4e_c01017{left:138.240000px;}
.x3_c01017{left:149.040000px;}
.x2b_c01017{left:159.120000px;}
.x1d_c01017{left:160.560000px;}
.x57_c01017{left:162.000000px;}
.xb_c01017{left:170.640000px;}
.x16_c01017{left:180.720000px;}
.x4_c01017{left:182.160000px;}
.x35_c01017{left:192.240000px;}
.x17_c01017{left:203.040000px;}
.x24_c01017{left:213.840000px;}
.x31_c01017{left:223.200000px;}
.x48_c01017{left:224.640000px;}
.xc_c01017{left:235.440000px;}
.x1e_c01017{left:246.240000px;}
.x25_c01017{left:256.320000px;}
.x38_c01017{left:265.680000px;}
.x4d_c01017{left:267.840000px;}
.x1f_c01017{left:278.640000px;}
.xd_c01017{left:288.000000px;}
.x2c_c01017{left:289.440000px;}
.x5_c01017{left:298.800000px;}
.xe_c01017{left:309.600000px;}
.x2d_c01017{left:320.400000px;}
.x47_c01017{left:321.840000px;}
.x4b_c01017{left:331.920000px;}
.x26_c01017{left:342.720000px;}
.x3e_c01017{left:352.800000px;}
.x20_c01017{left:354.240000px;}
.x39_c01017{left:363.600000px;}
.x49_c01017{left:375.840000px;}
.x27_c01017{left:385.920000px;}
.x51_c01017{left:387.360000px;}
.x2e_c01017{left:396.000000px;}
.x54_c01017{left:398.880000px;}
.x18_c01017{left:406.080000px;}
.x28_c01017{left:407.520000px;}
.x6_c01017{left:417.600000px;}
.x52_c01017{left:419.040000px;}
.xf_c01017{left:427.680000px;}
.x4a_c01017{left:429.840000px;}
.x29_c01017{left:439.200000px;}
.x45_c01017{left:440.640000px;}
.x58_c01017{left:442.080000px;}
.x3a_c01017{left:450.000000px;}
.x21_c01017{left:451.440000px;}
.x32_c01017{left:462.240000px;}
.x10_c01017{left:472.320000px;}
.x22_c01017{left:483.840000px;}
.x3f_c01017{left:504.000000px;}
.x3b_c01017{left:505.440000px;}
.x41_c01017{left:514.800000px;}
.x56_c01017{left:516.240000px;}
.x19_c01017{left:525.600000px;}
.x36_c01017{left:527.040000px;}
.x40_c01017{left:537.840000px;}
.x7_c01017{left:547.200000px;}
.x11_c01017{left:548.640000px;}
.x37_c01017{left:558.720000px;}
.x4f_c01017{left:560.160000px;}
.x8_c01017{left:568.080000px;}
.x2f_c01017{left:570.960000px;}
.x2a_c01017{left:581.040000px;}
.x3c_c01017{left:591.840000px;}
.x1a_c01017{left:601.920000px;}
.x53_c01017{left:603.360000px;}
.x33_c01017{left:613.440000px;}
.x23_c01017{left:624.240000px;}
.x30_c01017{left:635.760000px;}
.x55_c01017{left:637.200000px;}
.x34_c01017{left:645.840000px;}
.x12_c01017{left:657.360000px;}
.x4c_c01017{left:658.800000px;}
.x9_c01017{left:667.440000px;}
.x42_c01017{left:668.880000px;}
.x13_c01017{left:678.240000px;}
.x50_c01017{left:680.400000px;}
.x1_c01017{left:697.680000px;}
.x1b_c01017{left:699.840000px;}
.x43_c01017{left:701.280000px;}
.xa_c01017{left:711.360000px;}
@media print{
.v1_c01017{vertical-align:-7.680000pt;}
.v2_c01017{vertical-align:-2.560000pt;}
.v0_c01017{vertical-align:0.000000pt;}
.v3_c01017{vertical-align:7.680000pt;}
.ls0_c01017{letter-spacing:0.000000pt;}
.ws0_c01017{word-spacing:-3.544533pt;}
.ws2_c01017{word-spacing:-3.359147pt;}
.ws4_c01017{word-spacing:0.000000pt;}
.ws1_c01017{word-spacing:4.812800pt;}
.ws3_c01017{word-spacing:5.195733pt;}
.fsc_c01017{font-size:28.160000pt;}
.fs7_c01017{font-size:30.720000pt;}
.fsb_c01017{font-size:33.280000pt;}
.fs5_c01017{font-size:38.400000pt;}
.fs1_c01017{font-size:40.960000pt;}
.fs8_c01017{font-size:43.520000pt;}
.fs2_c01017{font-size:46.080000pt;}
.fsa_c01017{font-size:48.640000pt;}
.fs9_c01017{font-size:51.200000pt;}
.fs4_c01017{font-size:53.760000pt;}
.fs6_c01017{font-size:56.320000pt;}
.fsd_c01017{font-size:58.880000pt;}
.fs3_c01017{font-size:61.440000pt;}
.fs0_c01017{font-size:64.000000pt;}
.y0_c01017{bottom:0.000000pt;}
.y75_c01017{bottom:20.480000pt;}
.y76_c01017{bottom:21.120000pt;}
.y77_c01017{bottom:23.040000pt;}
.y73_c01017{bottom:56.320000pt;}
.y72_c01017{bottom:58.240000pt;}
.y71_c01017{bottom:58.880000pt;}
.y74_c01017{bottom:59.520000pt;}
.y6d_c01017{bottom:94.080000pt;}
.y6e_c01017{bottom:94.720000pt;}
.y6f_c01017{bottom:95.360000pt;}
.y70_c01017{bottom:96.000000pt;}
.y6c_c01017{bottom:96.640000pt;}
.y6b_c01017{bottom:97.280000pt;}
.y68_c01017{bottom:132.480000pt;}
.y6a_c01017{bottom:134.400000pt;}
.y67_c01017{bottom:135.040000pt;}
.y69_c01017{bottom:135.680000pt;}
.y65_c01017{bottom:170.880000pt;}
.y63_c01017{bottom:171.520000pt;}
.y64_c01017{bottom:172.800000pt;}
.y62_c01017{bottom:173.440000pt;}
.y66_c01017{bottom:174.080000pt;}
.y5f_c01017{bottom:208.640000pt;}
.y60_c01017{bottom:211.200000pt;}
.y61_c01017{bottom:211.840000pt;}
.y5b_c01017{bottom:247.040000pt;}
.y59_c01017{bottom:247.680000pt;}
.y5d_c01017{bottom:248.320000pt;}
.y5e_c01017{bottom:248.960000pt;}
.y5a_c01017{bottom:249.600000pt;}
.y5c_c01017{bottom:250.880000pt;}
.y57_c01017{bottom:284.800000pt;}
.y58_c01017{bottom:285.440000pt;}
.y56_c01017{bottom:286.080000pt;}
.y53_c01017{bottom:287.360000pt;}
.y54_c01017{bottom:288.000000pt;}
.y55_c01017{bottom:288.640000pt;}
.y4e_c01017{bottom:323.840000pt;}
.y51_c01017{bottom:324.480000pt;}
.y52_c01017{bottom:325.760000pt;}
.y4f_c01017{bottom:326.400000pt;}
.y50_c01017{bottom:327.040000pt;}
.y4a_c01017{bottom:362.240000pt;}
.y4c_c01017{bottom:362.880000pt;}
.y4d_c01017{bottom:364.160000pt;}
.y4b_c01017{bottom:364.800000pt;}
.y48_c01017{bottom:400.640000pt;}
.y49_c01017{bottom:402.560000pt;}
.y47_c01017{bottom:403.200000pt;}
.y46_c01017{bottom:403.840000pt;}
.y41_c01017{bottom:438.400000pt;}
.y44_c01017{bottom:439.040000pt;}
.y43_c01017{bottom:439.680000pt;}
.y42_c01017{bottom:440.960000pt;}
.y45_c01017{bottom:441.600000pt;}
.y3f_c01017{bottom:476.800000pt;}
.y40_c01017{bottom:477.440000pt;}
.y3e_c01017{bottom:479.360000pt;}
.y3c_c01017{bottom:514.560000pt;}
.y3d_c01017{bottom:517.120000pt;}
.y3b_c01017{bottom:517.760000pt;}
.y39_c01017{bottom:552.320000pt;}
.y38_c01017{bottom:552.960000pt;}
.y3a_c01017{bottom:554.880000pt;}
.y36_c01017{bottom:590.720000pt;}
.y34_c01017{bottom:591.360000pt;}
.y37_c01017{bottom:592.640000pt;}
.y33_c01017{bottom:593.280000pt;}
.y35_c01017{bottom:593.920000pt;}
.y31_c01017{bottom:629.120000pt;}
.y2f_c01017{bottom:629.760000pt;}
.y32_c01017{bottom:631.040000pt;}
.y30_c01017{bottom:631.680000pt;}
.y2e_c01017{bottom:632.320000pt;}
.y2b_c01017{bottom:666.240000pt;}
.y2d_c01017{bottom:666.880000pt;}
.y2c_c01017{bottom:668.800000pt;}
.y29_c01017{bottom:669.440000pt;}
.y2a_c01017{bottom:670.080000pt;}
.y28_c01017{bottom:705.280000pt;}
.y24_c01017{bottom:705.920000pt;}
.y27_c01017{bottom:706.560000pt;}
.y25_c01017{bottom:707.200000pt;}
.y26_c01017{bottom:707.840000pt;}
.y20_c01017{bottom:753.280000pt;}
.y23_c01017{bottom:754.560000pt;}
.y22_c01017{bottom:755.200000pt;}
.y21_c01017{bottom:755.840000pt;}
.y1f_c01017{bottom:756.480000pt;}
.y1e_c01017{bottom:790.400000pt;}
.y1b_c01017{bottom:791.680000pt;}
.y1d_c01017{bottom:792.960000pt;}
.y1a_c01017{bottom:793.600000pt;}
.y1c_c01017{bottom:794.240000pt;}
.y18_c01017{bottom:828.800000pt;}
.y19_c01017{bottom:829.440000pt;}
.y15_c01017{bottom:830.720000pt;}
.y17_c01017{bottom:831.360000pt;}
.y16_c01017{bottom:832.000000pt;}
.y14_c01017{bottom:832.640000pt;}
.y11_c01017{bottom:867.200000pt;}
.yf_c01017{bottom:868.480000pt;}
.y10_c01017{bottom:869.120000pt;}
.y12_c01017{bottom:869.760000pt;}
.y13_c01017{bottom:870.400000pt;}
.ye_c01017{bottom:871.040000pt;}
.yc_c01017{bottom:904.320000pt;}
.ya_c01017{bottom:905.600000pt;}
.yb_c01017{bottom:906.240000pt;}
.yd_c01017{bottom:907.520000pt;}
.y9_c01017{bottom:908.160000pt;}
.y8_c01017{bottom:908.800000pt;}
.y5_c01017{bottom:942.080000pt;}
.y6_c01017{bottom:943.360000pt;}
.y7_c01017{bottom:944.000000pt;}
.y2_c01017{bottom:944.640000pt;}
.y4_c01017{bottom:945.920000pt;}
.y3_c01017{bottom:946.560000pt;}
.y1_c01017{bottom:1005.440000pt;}
.h10_c01017{height:25.341250pt;}
.h9_c01017{height:27.645000pt;}
.hd_c01017{height:29.948750pt;}
.h7_c01017{height:34.556250pt;}
.h3_c01017{height:36.860000pt;}
.he_c01017{height:38.907500pt;}
.ha_c01017{height:39.163750pt;}
.h4_c01017{height:41.467500pt;}
.hc_c01017{height:43.771250pt;}
.hb_c01017{height:46.075000pt;}
.h6_c01017{height:48.378750pt;}
.h8_c01017{height:50.682500pt;}
.hf_c01017{height:52.986250pt;}
.h5_c01017{height:55.290000pt;}
.h2_c01017{height:57.593750pt;}
.h1_c01017{height:1038.000000pt;}
.h0_c01017{height:1038.080000pt;}
.w1_c01017{width:700.666667pt;}
.w0_c01017{width:700.800000pt;}
.x0_c01017{left:0.000000pt;}
.x14_c01017{left:53.760000pt;}
.x2_c01017{left:55.040000pt;}
.x44_c01017{left:83.200000pt;}
.x15_c01017{left:93.440000pt;}
.x1c_c01017{left:103.680000pt;}
.x46_c01017{left:112.640000pt;}
.x3d_c01017{left:121.600000pt;}
.x4e_c01017{left:122.880000pt;}
.x3_c01017{left:132.480000pt;}
.x2b_c01017{left:141.440000pt;}
.x1d_c01017{left:142.720000pt;}
.x57_c01017{left:144.000000pt;}
.xb_c01017{left:151.680000pt;}
.x16_c01017{left:160.640000pt;}
.x4_c01017{left:161.920000pt;}
.x35_c01017{left:170.880000pt;}
.x17_c01017{left:180.480000pt;}
.x24_c01017{left:190.080000pt;}
.x31_c01017{left:198.400000pt;}
.x48_c01017{left:199.680000pt;}
.xc_c01017{left:209.280000pt;}
.x1e_c01017{left:218.880000pt;}
.x25_c01017{left:227.840000pt;}
.x38_c01017{left:236.160000pt;}
.x4d_c01017{left:238.080000pt;}
.x1f_c01017{left:247.680000pt;}
.xd_c01017{left:256.000000pt;}
.x2c_c01017{left:257.280000pt;}
.x5_c01017{left:265.600000pt;}
.xe_c01017{left:275.200000pt;}
.x2d_c01017{left:284.800000pt;}
.x47_c01017{left:286.080000pt;}
.x4b_c01017{left:295.040000pt;}
.x26_c01017{left:304.640000pt;}
.x3e_c01017{left:313.600000pt;}
.x20_c01017{left:314.880000pt;}
.x39_c01017{left:323.200000pt;}
.x49_c01017{left:334.080000pt;}
.x27_c01017{left:343.040000pt;}
.x51_c01017{left:344.320000pt;}
.x2e_c01017{left:352.000000pt;}
.x54_c01017{left:354.560000pt;}
.x18_c01017{left:360.960000pt;}
.x28_c01017{left:362.240000pt;}
.x6_c01017{left:371.200000pt;}
.x52_c01017{left:372.480000pt;}
.xf_c01017{left:380.160000pt;}
.x4a_c01017{left:382.080000pt;}
.x29_c01017{left:390.400000pt;}
.x45_c01017{left:391.680000pt;}
.x58_c01017{left:392.960000pt;}
.x3a_c01017{left:400.000000pt;}
.x21_c01017{left:401.280000pt;}
.x32_c01017{left:410.880000pt;}
.x10_c01017{left:419.840000pt;}
.x22_c01017{left:430.080000pt;}
.x3f_c01017{left:448.000000pt;}
.x3b_c01017{left:449.280000pt;}
.x41_c01017{left:457.600000pt;}
.x56_c01017{left:458.880000pt;}
.x19_c01017{left:467.200000pt;}
.x36_c01017{left:468.480000pt;}
.x40_c01017{left:478.080000pt;}
.x7_c01017{left:486.400000pt;}
.x11_c01017{left:487.680000pt;}
.x37_c01017{left:496.640000pt;}
.x4f_c01017{left:497.920000pt;}
.x8_c01017{left:504.960000pt;}
.x2f_c01017{left:507.520000pt;}
.x2a_c01017{left:516.480000pt;}
.x3c_c01017{left:526.080000pt;}
.x1a_c01017{left:535.040000pt;}
.x53_c01017{left:536.320000pt;}
.x33_c01017{left:545.280000pt;}
.x23_c01017{left:554.880000pt;}
.x30_c01017{left:565.120000pt;}
.x55_c01017{left:566.400000pt;}
.x34_c01017{left:574.080000pt;}
.x12_c01017{left:584.320000pt;}
.x4c_c01017{left:585.600000pt;}
.x9_c01017{left:593.280000pt;}
.x42_c01017{left:594.560000pt;}
.x13_c01017{left:602.880000pt;}
.x50_c01017{left:604.800000pt;}
.x1_c01017{left:620.160000pt;}
.x1b_c01017{left:622.080000pt;}
.x43_c01017{left:623.360000pt;}
.xa_c01017{left:632.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c1957110de7907294b3464bf.woff2')format("woff");}.ff1_c01018{font-family:ff1_c01018;line-height:1.109863;font-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_c01018{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m9_c01018{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);}
.m56_c01018{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01018{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mc_c01018{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m5b_c01018{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m2_c01018{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01018{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01018{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01018{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m4_c01018{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m5d_c01018{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01018{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mb_c01018{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);}
.m44_c01018{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m58_c01018{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m8_c01018{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.ma_c01018{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);}
.m62_c01018{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m7_c01018{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.mf_c01018{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m21_c01018{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m30_c01018{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);}
.m26_c01018{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m38_c01018{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m0_c01018{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);}
.m5_c01018{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m18_c01018{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01018{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);}
.m54_c01018{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);}
.m3e_c01018{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);}
.m46_c01018{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m41_c01018{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);}
.m3b_c01018{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01018{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_c01018{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);}
.m5a_c01018{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01018{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m55_c01018{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m39_c01018{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);}
.m2c_c01018{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m47_c01018{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);}
.m1_c01018{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01018{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);}
.m51_c01018{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);}
.m52_c01018{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m59_c01018{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m34_c01018{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m13_c01018{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);}
.m15_c01018{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01018{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m4a_c01018{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);}
.m33_c01018{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m12_c01018{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);}
.m10_c01018{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m17_c01018{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01018{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m14_c01018{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m28_c01018{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);}
.m4e_c01018{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.me_c01018{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);}
.m50_c01018{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m40_c01018{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m48_c01018{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);}
.m27_c01018{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);}
.m5c_c01018{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m19_c01018{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01018{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);}
.m20_c01018{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m4f_c01018{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m31_c01018{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m43_c01018{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);}
.m3a_c01018{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m5f_c01018{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m23_c01018{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m4d_c01018{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m29_c01018{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m16_c01018{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);}
.m57_c01018{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m22_c01018{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m5e_c01018{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m11_c01018{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01018{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m64_c01018{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m25_c01018{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m35_c01018{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);}
.m53_c01018{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);}
.m4b_c01018{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01018{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);}
.m2b_c01018{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m60_c01018{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m49_c01018{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);}
.m61_c01018{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m63_c01018{transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);}
.m3_c01018{transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);}
.m37_c01018{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m36_c01018{transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);}
.m24_c01018{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);}
.m32_c01018{transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);}
.m45_c01018{transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);}
.md_c01018{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);}
.v2_c01018{vertical-align:-8.640000px;}
.v4_c01018{vertical-align:-5.760000px;}
.v0_c01018{vertical-align:0.000000px;}
.v1_c01018{vertical-align:11.520000px;}
.v3_c01018{vertical-align:14.400000px;}
.ls0_c01018{letter-spacing:0.000000px;}
.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;}
}
.ws5_c01018{word-spacing:-3.987600px;}
.ws1_c01018{word-spacing:-2.279280px;}
.ws4_c01018{word-spacing:-0.998880px;}
.ws0_c01018{word-spacing:-0.170400px;}
.ws7_c01018{word-spacing:0.000000px;}
.ws3_c01018{word-spacing:0.780480px;}
.ws2_c01018{word-spacing:4.582800px;}
.ws6_c01018{word-spacing:7.804080px;}
.fc0_c01018{color:transparent;}
.fs3_c01018{font-size:20.160000px;}
.fsb_c01018{font-size:31.680000px;}
.fs9_c01018{font-size:34.560000px;}
.fs4_c01018{font-size:43.200000px;}
.fs1_c01018{font-size:46.080000px;}
.fs6_c01018{font-size:48.960000px;}
.fs5_c01018{font-size:51.840000px;}
.fs7_c01018{font-size:54.720000px;}
.fs2_c01018{font-size:57.600000px;}
.fs8_c01018{font-size:60.480000px;}
.fsd_c01018{font-size:63.360000px;}
.fsc_c01018{font-size:66.240000px;}
.fsa_c01018{font-size:69.120000px;}
.fs0_c01018{font-size:74.880000px;}
.y0_c01018{bottom:0.000000px;}
.y67_c01018{bottom:48.960000px;}
.y68_c01018{bottom:49.680000px;}
.y66_c01018{bottom:52.560000px;}
.y69_c01018{bottom:53.280000px;}
.y64_c01018{bottom:92.880000px;}
.y65_c01018{bottom:93.600000px;}
.y63_c01018{bottom:95.040000px;}
.y62_c01018{bottom:95.760000px;}
.y5c_c01018{bottom:136.080000px;}
.y5f_c01018{bottom:136.800000px;}
.y60_c01018{bottom:137.520000px;}
.y5e_c01018{bottom:138.240000px;}
.y5d_c01018{bottom:138.960000px;}
.y61_c01018{bottom:139.680000px;}
.y57_c01018{bottom:178.560000px;}
.y58_c01018{bottom:179.280000px;}
.y5b_c01018{bottom:180.000000px;}
.y56_c01018{bottom:181.440000px;}
.y59_c01018{bottom:182.160000px;}
.y5a_c01018{bottom:182.880000px;}
.y50_c01018{bottom:221.760000px;}
.y53_c01018{bottom:222.480000px;}
.y54_c01018{bottom:223.200000px;}
.y55_c01018{bottom:223.920000px;}
.y51_c01018{bottom:224.640000px;}
.y52_c01018{bottom:225.360000px;}
.y4c_c01018{bottom:264.960000px;}
.y4f_c01018{bottom:265.680000px;}
.y4d_c01018{bottom:267.840000px;}
.y4e_c01018{bottom:268.560000px;}
.y4a_c01018{bottom:307.440000px;}
.y49_c01018{bottom:308.880000px;}
.y48_c01018{bottom:311.040000px;}
.y4b_c01018{bottom:311.760000px;}
.y47_c01018{bottom:362.160000px;}
.y44_c01018{bottom:362.880000px;}
.y45_c01018{bottom:364.320000px;}
.y46_c01018{bottom:365.040000px;}
.y3f_c01018{bottom:403.920000px;}
.y3e_c01018{bottom:404.640000px;}
.y43_c01018{bottom:405.360000px;}
.y41_c01018{bottom:406.080000px;}
.y40_c01018{bottom:406.800000px;}
.y42_c01018{bottom:407.520000px;}
.y3a_c01018{bottom:447.120000px;}
.y3d_c01018{bottom:447.840000px;}
.y3b_c01018{bottom:450.000000px;}
.y3c_c01018{bottom:450.720000px;}
.y38_c01018{bottom:490.320000px;}
.y36_c01018{bottom:492.480000px;}
.y37_c01018{bottom:493.200000px;}
.y39_c01018{bottom:493.920000px;}
.y35_c01018{bottom:533.520000px;}
.y33_c01018{bottom:534.960000px;}
.y32_c01018{bottom:535.680000px;}
.y34_c01018{bottom:536.400000px;}
.y2f_c01018{bottom:576.000000px;}
.y2e_c01018{bottom:576.720000px;}
.y30_c01018{bottom:578.880000px;}
.y31_c01018{bottom:579.600000px;}
.y2d_c01018{bottom:619.200000px;}
.y2b_c01018{bottom:619.920000px;}
.y2c_c01018{bottom:622.080000px;}
.y2a_c01018{bottom:622.800000px;}
.y28_c01018{bottom:662.400000px;}
.y29_c01018{bottom:665.280000px;}
.y27_c01018{bottom:705.600000px;}
.y26_c01018{bottom:706.320000px;}
.y25_c01018{bottom:708.480000px;}
.y24_c01018{bottom:748.080000px;}
.y23_c01018{bottom:750.240000px;}
.y22_c01018{bottom:750.960000px;}
.y21_c01018{bottom:751.680000px;}
.y1f_c01018{bottom:792.000000px;}
.y20_c01018{bottom:793.440000px;}
.y1e_c01018{bottom:794.160000px;}
.y1d_c01018{bottom:794.880000px;}
.y1c_c01018{bottom:833.760000px;}
.y1b_c01018{bottom:835.920000px;}
.y1a_c01018{bottom:836.640000px;}
.y19_c01018{bottom:837.360000px;}
.y16_c01018{bottom:876.960000px;}
.y15_c01018{bottom:877.680000px;}
.y18_c01018{bottom:879.120000px;}
.y17_c01018{bottom:879.840000px;}
.y14_c01018{bottom:918.720000px;}
.y12_c01018{bottom:919.440000px;}
.y13_c01018{bottom:921.600000px;}
.y11_c01018{bottom:922.320000px;}
.y10_c01018{bottom:962.640000px;}
.yf_c01018{bottom:964.080000px;}
.ye_c01018{bottom:964.800000px;}
.yd_c01018{bottom:1015.200000px;}
.y7_c01018{bottom:1015.920000px;}
.y5_c01018{bottom:1017.360000px;}
.y4_c01018{bottom:1018.080000px;}
.yc_c01018{bottom:1036.800000px;}
.y6_c01018{bottom:1037.520000px;}
.y3_c01018{bottom:1038.240000px;}
.y9_c01018{bottom:1040.400000px;}
.yb_c01018{bottom:1042.560000px;}
.ya_c01018{bottom:1059.840000px;}
.y8_c01018{bottom:1061.280000px;}
.y2_c01018{bottom:1062.000000px;}
.y1_c01018{bottom:1121.760000px;}
.h5_c01018{height:18.142031px;}
.hd_c01018{height:28.508906px;}
.hb_c01018{height:31.100625px;}
.h6_c01018{height:38.875781px;}
.h3_c01018{height:41.467500px;}
.h8_c01018{height:44.059219px;}
.h7_c01018{height:46.650937px;}
.h9_c01018{height:49.242656px;}
.h4_c01018{height:51.834375px;}
.ha_c01018{height:54.426094px;}
.he_c01018{height:55.579219px;}
.h10_c01018{height:55.867500px;}
.h11_c01018{height:57.017812px;}
.hf_c01018{height:59.609531px;}
.hc_c01018{height:62.201250px;}
.h2_c01018{height:67.384687px;}
.h1_c01018{height:1166.250000px;}
.h0_c01018{height:1166.400000px;}
.w1_c01018{width:786.000000px;}
.w0_c01018{width:786.240000px;}
.x0_c01018{left:0.000000px;}
.x1d_c01018{left:59.040000px;}
.x16_c01018{left:60.480000px;}
.x30_c01018{left:91.440000px;}
.x4_c01018{left:93.600000px;}
.x48_c01018{left:101.520000px;}
.x3_c01018{left:103.680000px;}
.x55_c01018{left:113.040000px;}
.x2_c01018{left:114.480000px;}
.x42_c01018{left:125.280000px;}
.x37_c01018{left:134.640000px;}
.x25_c01018{left:136.080000px;}
.x4d_c01018{left:146.160000px;}
.x29_c01018{left:156.960000px;}
.x11_c01018{left:167.760000px;}
.x17_c01018{left:178.560000px;}
.x1e_c01018{left:188.640000px;}
.x4e_c01018{left:190.080000px;}
.x2a_c01018{left:199.440000px;}
.x18_c01018{left:210.960000px;}
.x26_c01018{left:221.760000px;}
.x6_c01018{left:233.280000px;}
.x5_c01018{left:243.360000px;}
.x12_c01018{left:254.160000px;}
.x19_c01018{left:263.520000px;}
.x3e_c01018{left:265.680000px;}
.x2b_c01018{left:275.040000px;}
.x49_c01018{left:276.480000px;}
.x34_c01018{left:286.560000px;}
.x27_c01018{left:295.920000px;}
.x9_c01018{left:298.080000px;}
.x7_c01018{left:308.880000px;}
.x8_c01018{left:318.240000px;}
.x2d_c01018{left:329.040000px;}
.x43_c01018{left:331.200000px;}
.x3f_c01018{left:340.560000px;}
.x54_c01018{left:342.720000px;}
.x1f_c01018{left:351.360000px;}
.x31_c01018{left:361.440000px;}
.x57_c01018{left:362.880000px;}
.x10_c01018{left:373.680000px;}
.x4a_c01018{left:375.840000px;}
.xa_c01018{left:382.320000px;}
.xb_c01018{left:383.760000px;}
.x38_c01018{left:385.200000px;}
.x3c_c01018{left:394.560000px;}
.x1a_c01018{left:414.720000px;}
.x44_c01018{left:416.880000px;}
.x46_c01018{left:419.760000px;}
.xc_c01018{left:425.520000px;}
.x40_c01018{left:427.680000px;}
.x20_c01018{left:448.560000px;}
.x56_c01018{left:450.000000px;}
.xd_c01018{left:459.360000px;}
.x1b_c01018{left:468.720000px;}
.x47_c01018{left:470.880000px;}
.x4c_c01018{left:481.680000px;}
.x2c_c01018{left:490.320000px;}
.x51_c01018{left:492.480000px;}
.xe_c01018{left:501.120000px;}
.x39_c01018{left:502.560000px;}
.x21_c01018{left:511.920000px;}
.x35_c01018{left:513.360000px;}
.x32_c01018{left:522.720000px;}
.x3d_c01018{left:524.880000px;}
.x3a_c01018{left:534.240000px;}
.xf_c01018{left:535.680000px;}
.x22_c01018{left:545.040000px;}
.x13_c01018{left:556.560000px;}
.x58_c01018{left:558.000000px;}
.x33_c01018{left:565.920000px;}
.x36_c01018{left:567.360000px;}
.x28_c01018{left:577.440000px;}
.x3b_c01018{left:578.880000px;}
.x2e_c01018{left:588.960000px;}
.x14_c01018{left:599.040000px;}
.x45_c01018{left:611.280000px;}
.x52_c01018{left:622.800000px;}
.x1c_c01018{left:632.880000px;}
.x23_c01018{left:643.680000px;}
.x15_c01018{left:653.760000px;}
.x4b_c01018{left:655.920000px;}
.x4f_c01018{left:657.360000px;}
.x41_c01018{left:666.000000px;}
.x53_c01018{left:667.440000px;}
.x24_c01018{left:676.080000px;}
.x50_c01018{left:677.520000px;}
.x1_c01018{left:684.720000px;}
.x2f_c01018{left:697.680000px;}
@media print{
.v2_c01018{vertical-align:-7.680000pt;}
.v4_c01018{vertical-align:-5.120000pt;}
.v0_c01018{vertical-align:0.000000pt;}
.v1_c01018{vertical-align:10.240000pt;}
.v3_c01018{vertical-align:12.800000pt;}
.ls0_c01018{letter-spacing:0.000000pt;}
.ws5_c01018{word-spacing:-3.544533pt;}
.ws1_c01018{word-spacing:-2.026027pt;}
.ws4_c01018{word-spacing:-0.887893pt;}
.ws0_c01018{word-spacing:-0.151467pt;}
.ws7_c01018{word-spacing:0.000000pt;}
.ws3_c01018{word-spacing:0.693760pt;}
.ws2_c01018{word-spacing:4.073600pt;}
.ws6_c01018{word-spacing:6.936960pt;}
.fs3_c01018{font-size:17.920000pt;}
.fsb_c01018{font-size:28.160000pt;}
.fs9_c01018{font-size:30.720000pt;}
.fs4_c01018{font-size:38.400000pt;}
.fs1_c01018{font-size:40.960000pt;}
.fs6_c01018{font-size:43.520000pt;}
.fs5_c01018{font-size:46.080000pt;}
.fs7_c01018{font-size:48.640000pt;}
.fs2_c01018{font-size:51.200000pt;}
.fs8_c01018{font-size:53.760000pt;}
.fsd_c01018{font-size:56.320000pt;}
.fsc_c01018{font-size:58.880000pt;}
.fsa_c01018{font-size:61.440000pt;}
.fs0_c01018{font-size:66.560000pt;}
.y0_c01018{bottom:0.000000pt;}
.y67_c01018{bottom:43.520000pt;}
.y68_c01018{bottom:44.160000pt;}
.y66_c01018{bottom:46.720000pt;}
.y69_c01018{bottom:47.360000pt;}
.y64_c01018{bottom:82.560000pt;}
.y65_c01018{bottom:83.200000pt;}
.y63_c01018{bottom:84.480000pt;}
.y62_c01018{bottom:85.120000pt;}
.y5c_c01018{bottom:120.960000pt;}
.y5f_c01018{bottom:121.600000pt;}
.y60_c01018{bottom:122.240000pt;}
.y5e_c01018{bottom:122.880000pt;}
.y5d_c01018{bottom:123.520000pt;}
.y61_c01018{bottom:124.160000pt;}
.y57_c01018{bottom:158.720000pt;}
.y58_c01018{bottom:159.360000pt;}
.y5b_c01018{bottom:160.000000pt;}
.y56_c01018{bottom:161.280000pt;}
.y59_c01018{bottom:161.920000pt;}
.y5a_c01018{bottom:162.560000pt;}
.y50_c01018{bottom:197.120000pt;}
.y53_c01018{bottom:197.760000pt;}
.y54_c01018{bottom:198.400000pt;}
.y55_c01018{bottom:199.040000pt;}
.y51_c01018{bottom:199.680000pt;}
.y52_c01018{bottom:200.320000pt;}
.y4c_c01018{bottom:235.520000pt;}
.y4f_c01018{bottom:236.160000pt;}
.y4d_c01018{bottom:238.080000pt;}
.y4e_c01018{bottom:238.720000pt;}
.y4a_c01018{bottom:273.280000pt;}
.y49_c01018{bottom:274.560000pt;}
.y48_c01018{bottom:276.480000pt;}
.y4b_c01018{bottom:277.120000pt;}
.y47_c01018{bottom:321.920000pt;}
.y44_c01018{bottom:322.560000pt;}
.y45_c01018{bottom:323.840000pt;}
.y46_c01018{bottom:324.480000pt;}
.y3f_c01018{bottom:359.040000pt;}
.y3e_c01018{bottom:359.680000pt;}
.y43_c01018{bottom:360.320000pt;}
.y41_c01018{bottom:360.960000pt;}
.y40_c01018{bottom:361.600000pt;}
.y42_c01018{bottom:362.240000pt;}
.y3a_c01018{bottom:397.440000pt;}
.y3d_c01018{bottom:398.080000pt;}
.y3b_c01018{bottom:400.000000pt;}
.y3c_c01018{bottom:400.640000pt;}
.y38_c01018{bottom:435.840000pt;}
.y36_c01018{bottom:437.760000pt;}
.y37_c01018{bottom:438.400000pt;}
.y39_c01018{bottom:439.040000pt;}
.y35_c01018{bottom:474.240000pt;}
.y33_c01018{bottom:475.520000pt;}
.y32_c01018{bottom:476.160000pt;}
.y34_c01018{bottom:476.800000pt;}
.y2f_c01018{bottom:512.000000pt;}
.y2e_c01018{bottom:512.640000pt;}
.y30_c01018{bottom:514.560000pt;}
.y31_c01018{bottom:515.200000pt;}
.y2d_c01018{bottom:550.400000pt;}
.y2b_c01018{bottom:551.040000pt;}
.y2c_c01018{bottom:552.960000pt;}
.y2a_c01018{bottom:553.600000pt;}
.y28_c01018{bottom:588.800000pt;}
.y29_c01018{bottom:591.360000pt;}
.y27_c01018{bottom:627.200000pt;}
.y26_c01018{bottom:627.840000pt;}
.y25_c01018{bottom:629.760000pt;}
.y24_c01018{bottom:664.960000pt;}
.y23_c01018{bottom:666.880000pt;}
.y22_c01018{bottom:667.520000pt;}
.y21_c01018{bottom:668.160000pt;}
.y1f_c01018{bottom:704.000000pt;}
.y20_c01018{bottom:705.280000pt;}
.y1e_c01018{bottom:705.920000pt;}
.y1d_c01018{bottom:706.560000pt;}
.y1c_c01018{bottom:741.120000pt;}
.y1b_c01018{bottom:743.040000pt;}
.y1a_c01018{bottom:743.680000pt;}
.y19_c01018{bottom:744.320000pt;}
.y16_c01018{bottom:779.520000pt;}
.y15_c01018{bottom:780.160000pt;}
.y18_c01018{bottom:781.440000pt;}
.y17_c01018{bottom:782.080000pt;}
.y14_c01018{bottom:816.640000pt;}
.y12_c01018{bottom:817.280000pt;}
.y13_c01018{bottom:819.200000pt;}
.y11_c01018{bottom:819.840000pt;}
.y10_c01018{bottom:855.680000pt;}
.yf_c01018{bottom:856.960000pt;}
.ye_c01018{bottom:857.600000pt;}
.yd_c01018{bottom:902.400000pt;}
.y7_c01018{bottom:903.040000pt;}
.y5_c01018{bottom:904.320000pt;}
.y4_c01018{bottom:904.960000pt;}
.yc_c01018{bottom:921.600000pt;}
.y6_c01018{bottom:922.240000pt;}
.y3_c01018{bottom:922.880000pt;}
.y9_c01018{bottom:924.800000pt;}
.yb_c01018{bottom:926.720000pt;}
.ya_c01018{bottom:942.080000pt;}
.y8_c01018{bottom:943.360000pt;}
.y2_c01018{bottom:944.000000pt;}
.y1_c01018{bottom:997.120000pt;}
.h5_c01018{height:16.126250pt;}
.hd_c01018{height:25.341250pt;}
.hb_c01018{height:27.645000pt;}
.h6_c01018{height:34.556250pt;}
.h3_c01018{height:36.860000pt;}
.h8_c01018{height:39.163750pt;}
.h7_c01018{height:41.467500pt;}
.h9_c01018{height:43.771250pt;}
.h4_c01018{height:46.075000pt;}
.ha_c01018{height:48.378750pt;}
.he_c01018{height:49.403750pt;}
.h10_c01018{height:49.660000pt;}
.h11_c01018{height:50.682500pt;}
.hf_c01018{height:52.986250pt;}
.hc_c01018{height:55.290000pt;}
.h2_c01018{height:59.897500pt;}
.h1_c01018{height:1036.666667pt;}
.h0_c01018{height:1036.800000pt;}
.w1_c01018{width:698.666667pt;}
.w0_c01018{width:698.880000pt;}
.x0_c01018{left:0.000000pt;}
.x1d_c01018{left:52.480000pt;}
.x16_c01018{left:53.760000pt;}
.x30_c01018{left:81.280000pt;}
.x4_c01018{left:83.200000pt;}
.x48_c01018{left:90.240000pt;}
.x3_c01018{left:92.160000pt;}
.x55_c01018{left:100.480000pt;}
.x2_c01018{left:101.760000pt;}
.x42_c01018{left:111.360000pt;}
.x37_c01018{left:119.680000pt;}
.x25_c01018{left:120.960000pt;}
.x4d_c01018{left:129.920000pt;}
.x29_c01018{left:139.520000pt;}
.x11_c01018{left:149.120000pt;}
.x17_c01018{left:158.720000pt;}
.x1e_c01018{left:167.680000pt;}
.x4e_c01018{left:168.960000pt;}
.x2a_c01018{left:177.280000pt;}
.x18_c01018{left:187.520000pt;}
.x26_c01018{left:197.120000pt;}
.x6_c01018{left:207.360000pt;}
.x5_c01018{left:216.320000pt;}
.x12_c01018{left:225.920000pt;}
.x19_c01018{left:234.240000pt;}
.x3e_c01018{left:236.160000pt;}
.x2b_c01018{left:244.480000pt;}
.x49_c01018{left:245.760000pt;}
.x34_c01018{left:254.720000pt;}
.x27_c01018{left:263.040000pt;}
.x9_c01018{left:264.960000pt;}
.x7_c01018{left:274.560000pt;}
.x8_c01018{left:282.880000pt;}
.x2d_c01018{left:292.480000pt;}
.x43_c01018{left:294.400000pt;}
.x3f_c01018{left:302.720000pt;}
.x54_c01018{left:304.640000pt;}
.x1f_c01018{left:312.320000pt;}
.x31_c01018{left:321.280000pt;}
.x57_c01018{left:322.560000pt;}
.x10_c01018{left:332.160000pt;}
.x4a_c01018{left:334.080000pt;}
.xa_c01018{left:339.840000pt;}
.xb_c01018{left:341.120000pt;}
.x38_c01018{left:342.400000pt;}
.x3c_c01018{left:350.720000pt;}
.x1a_c01018{left:368.640000pt;}
.x44_c01018{left:370.560000pt;}
.x46_c01018{left:373.120000pt;}
.xc_c01018{left:378.240000pt;}
.x40_c01018{left:380.160000pt;}
.x20_c01018{left:398.720000pt;}
.x56_c01018{left:400.000000pt;}
.xd_c01018{left:408.320000pt;}
.x1b_c01018{left:416.640000pt;}
.x47_c01018{left:418.560000pt;}
.x4c_c01018{left:428.160000pt;}
.x2c_c01018{left:435.840000pt;}
.x51_c01018{left:437.760000pt;}
.xe_c01018{left:445.440000pt;}
.x39_c01018{left:446.720000pt;}
.x21_c01018{left:455.040000pt;}
.x35_c01018{left:456.320000pt;}
.x32_c01018{left:464.640000pt;}
.x3d_c01018{left:466.560000pt;}
.x3a_c01018{left:474.880000pt;}
.xf_c01018{left:476.160000pt;}
.x22_c01018{left:484.480000pt;}
.x13_c01018{left:494.720000pt;}
.x58_c01018{left:496.000000pt;}
.x33_c01018{left:503.040000pt;}
.x36_c01018{left:504.320000pt;}
.x28_c01018{left:513.280000pt;}
.x3b_c01018{left:514.560000pt;}
.x2e_c01018{left:523.520000pt;}
.x14_c01018{left:532.480000pt;}
.x45_c01018{left:543.360000pt;}
.x52_c01018{left:553.600000pt;}
.x1c_c01018{left:562.560000pt;}
.x23_c01018{left:572.160000pt;}
.x15_c01018{left:581.120000pt;}
.x4b_c01018{left:583.040000pt;}
.x4f_c01018{left:584.320000pt;}
.x41_c01018{left:592.000000pt;}
.x53_c01018{left:593.280000pt;}
.x24_c01018{left:600.960000pt;}
.x50_c01018{left:602.240000pt;}
.x1_c01018{left:608.640000pt;}
.x2f_c01018{left:620.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6609c719e6c61d0070a6e6de.woff2')format("woff");}.ff1_c01019{font-family:ff1_c01019;line-height:1.109863;font-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_c01019{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);}
.m52_c01019{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);}
.m43_c01019{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);}
.m3d_c01019{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m53_c01019{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m51_c01019{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m21_c01019{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01019{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01019{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m50_c01019{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01019{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m35_c01019{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m19_c01019{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);}
.m5a_c01019{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01019{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m31_c01019{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);}
.m58_c01019{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);}
.m42_c01019{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m45_c01019{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_c01019{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m44_c01019{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);}
.m29_c01019{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);}
.m3e_c01019{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m12_c01019{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01019{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);}
.m57_c01019{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);}
.m39_c01019{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_c01019{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01019{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m2_c01019{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01019{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);}
.m0_c01019{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01019{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.ma_c01019{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m49_c01019{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);}
.m4d_c01019{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01019{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m33_c01019{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);}
.m40_c01019{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m46_c01019{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m3_c01019{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m37_c01019{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.me_c01019{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);}
.md_c01019{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01019{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m54_c01019{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);}
.m34_c01019{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m23_c01019{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);}
.m36_c01019{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m30_c01019{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m17_c01019{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m1_c01019{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);}
.m9_c01019{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m10_c01019{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m7_c01019{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);}
.m28_c01019{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m13_c01019{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m38_c01019{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01019{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);}
.mc_c01019{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);}
.mf_c01019{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m25_c01019{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m27_c01019{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m32_c01019{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m11_c01019{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m24_c01019{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);}
.m26_c01019{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01019{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m56_c01019{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m59_c01019{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m6_c01019{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);}
.m2a_c01019{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m41_c01019{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01019{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01019{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m48_c01019{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m20_c01019{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01019{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);}
.m5_c01019{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);}
.m14_c01019{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01019{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m15_c01019{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);}
.m1a_c01019{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01019{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m8_c01019{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01019{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m55_c01019{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m22_c01019{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m18_c01019{transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01019{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.m47_c01019{transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);}
.m5b_c01019{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.v0_c01019{vertical-align:0.000000px;}
.v1_c01019{vertical-align:2.880000px;}
.ls0_c01019{letter-spacing:0.000000px;}
.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.116880px;}
.ws2_c01019{word-spacing:0.000000px;}
.ws1_c01019{word-spacing:6.098507px;}
.fc0_c01019{color:transparent;}
.fsd_c01019{font-size:11.520000px;}
.fsb_c01019{font-size:31.680000px;}
.fs5_c01019{font-size:34.560000px;}
.fsa_c01019{font-size:37.440000px;}
.fs3_c01019{font-size:43.200000px;}
.fs0_c01019{font-size:46.080000px;}
.fs1_c01019{font-size:48.960000px;}
.fs6_c01019{font-size:51.840000px;}
.fsc_c01019{font-size:54.720000px;}
.fs7_c01019{font-size:57.600000px;}
.fs9_c01019{font-size:60.480000px;}
.fs8_c01019{font-size:63.360000px;}
.fs2_c01019{font-size:66.240000px;}
.fs4_c01019{font-size:69.120000px;}
.y0_c01019{bottom:0.000000px;}
.y67_c01019{bottom:77.760000px;}
.y66_c01019{bottom:78.480000px;}
.y6c_c01019{bottom:79.920000px;}
.y68_c01019{bottom:80.640000px;}
.y69_c01019{bottom:81.360000px;}
.y6a_c01019{bottom:82.080000px;}
.y6b_c01019{bottom:84.960000px;}
.y63_c01019{bottom:120.960000px;}
.y62_c01019{bottom:123.120000px;}
.y64_c01019{bottom:123.840000px;}
.y65_c01019{bottom:124.560000px;}
.y5c_c01019{bottom:163.440000px;}
.y5d_c01019{bottom:164.160000px;}
.y61_c01019{bottom:164.880000px;}
.y5e_c01019{bottom:166.320000px;}
.y5f_c01019{bottom:167.040000px;}
.y60_c01019{bottom:167.760000px;}
.y55_c01019{bottom:205.920000px;}
.y58_c01019{bottom:206.640000px;}
.y59_c01019{bottom:207.360000px;}
.y5a_c01019{bottom:208.080000px;}
.y57_c01019{bottom:208.800000px;}
.y56_c01019{bottom:209.520000px;}
.y5b_c01019{bottom:210.240000px;}
.y52_c01019{bottom:249.840000px;}
.y51_c01019{bottom:250.560000px;}
.y50_c01019{bottom:252.000000px;}
.y53_c01019{bottom:252.720000px;}
.y54_c01019{bottom:253.440000px;}
.y4d_c01019{bottom:293.040000px;}
.y4c_c01019{bottom:295.200000px;}
.y4f_c01019{bottom:295.920000px;}
.y4e_c01019{bottom:296.640000px;}
.y4a_c01019{bottom:336.240000px;}
.y49_c01019{bottom:336.960000px;}
.y48_c01019{bottom:338.400000px;}
.y47_c01019{bottom:339.120000px;}
.y4b_c01019{bottom:339.840000px;}
.y43_c01019{bottom:378.720000px;}
.y45_c01019{bottom:379.440000px;}
.y42_c01019{bottom:381.600000px;}
.y44_c01019{bottom:382.320000px;}
.y46_c01019{bottom:383.040000px;}
.y3f_c01019{bottom:421.920000px;}
.y3e_c01019{bottom:422.640000px;}
.y3d_c01019{bottom:424.800000px;}
.y40_c01019{bottom:425.520000px;}
.y41_c01019{bottom:426.240000px;}
.y3a_c01019{bottom:465.840000px;}
.y3b_c01019{bottom:468.000000px;}
.y3c_c01019{bottom:468.720000px;}
.y38_c01019{bottom:508.320000px;}
.y36_c01019{bottom:510.480000px;}
.y37_c01019{bottom:511.200000px;}
.y39_c01019{bottom:511.920000px;}
.y35_c01019{bottom:550.800000px;}
.y32_c01019{bottom:551.520000px;}
.y33_c01019{bottom:553.680000px;}
.y34_c01019{bottom:554.400000px;}
.y2f_c01019{bottom:594.000000px;}
.y30_c01019{bottom:594.720000px;}
.y31_c01019{bottom:596.880000px;}
.y2e_c01019{bottom:597.600000px;}
.y2b_c01019{bottom:647.280000px;}
.y2d_c01019{bottom:648.000000px;}
.y2c_c01019{bottom:650.160000px;}
.y28_c01019{bottom:690.480000px;}
.y29_c01019{bottom:692.640000px;}
.y2a_c01019{bottom:693.360000px;}
.y24_c01019{bottom:732.240000px;}
.y25_c01019{bottom:732.960000px;}
.y26_c01019{bottom:735.120000px;}
.y27_c01019{bottom:735.840000px;}
.y22_c01019{bottom:774.720000px;}
.y1f_c01019{bottom:775.440000px;}
.y1e_c01019{bottom:776.880000px;}
.y23_c01019{bottom:777.600000px;}
.y20_c01019{bottom:778.320000px;}
.y21_c01019{bottom:779.040000px;}
.y1a_c01019{bottom:817.920000px;}
.y1c_c01019{bottom:818.640000px;}
.y1b_c01019{bottom:820.080000px;}
.y18_c01019{bottom:820.800000px;}
.y19_c01019{bottom:821.520000px;}
.y1d_c01019{bottom:822.240000px;}
.y16_c01019{bottom:861.120000px;}
.y15_c01019{bottom:863.280000px;}
.y17_c01019{bottom:864.000000px;}
.y14_c01019{bottom:864.720000px;}
.y13_c01019{bottom:917.280000px;}
.y12_c01019{bottom:956.880000px;}
.y10_c01019{bottom:957.600000px;}
.yf_c01019{bottom:958.320000px;}
.y11_c01019{bottom:959.760000px;}
.yd_c01019{bottom:960.480000px;}
.ye_c01019{bottom:961.200000px;}
.yc_c01019{bottom:1000.080000px;}
.y9_c01019{bottom:1000.800000px;}
.y8_c01019{bottom:1001.520000px;}
.yb_c01019{bottom:1002.240000px;}
.ya_c01019{bottom:1002.960000px;}
.y7_c01019{bottom:1003.680000px;}
.y4_c01019{bottom:1042.560000px;}
.y2_c01019{bottom:1043.280000px;}
.y3_c01019{bottom:1044.000000px;}
.y5_c01019{bottom:1045.440000px;}
.y6_c01019{bottom:1046.160000px;}
.y1_c01019{bottom:1046.880000px;}
.hf_c01019{height:10.366875px;}
.he_c01019{height:28.508906px;}
.h7_c01019{height:31.100625px;}
.hc_c01019{height:33.692344px;}
.h5_c01019{height:38.875781px;}
.h2_c01019{height:41.467500px;}
.h3_c01019{height:44.059219px;}
.h8_c01019{height:46.650937px;}
.hd_c01019{height:49.242656px;}
.h9_c01019{height:51.834375px;}
.hb_c01019{height:54.426094px;}
.ha_c01019{height:57.017812px;}
.h4_c01019{height:59.609531px;}
.h6_c01019{height:62.201250px;}
.h1_c01019{height:1143.750000px;}
.h0_c01019{height:1144.080000px;}
.w1_c01019{width:783.750000px;}
.w0_c01019{width:784.080000px;}
.x0_c01019{left:0.000000px;}
.x1_c01019{left:45.360000px;}
.x11_c01019{left:46.800000px;}
.x31_c01019{left:67.680000px;}
.x40_c01019{left:69.120000px;}
.x2_c01019{left:78.480000px;}
.x51_c01019{left:79.920000px;}
.x12_c01019{left:89.280000px;}
.x32_c01019{left:111.600000px;}
.x2d_c01019{left:122.400000px;}
.x13_c01019{left:132.480000px;}
.x52_c01019{left:136.080000px;}
.x3_c01019{left:144.000000px;}
.x19_c01019{left:154.800000px;}
.xa_c01019{left:164.160000px;}
.x20_c01019{left:166.320000px;}
.x26_c01019{left:176.400000px;}
.x4b_c01019{left:179.280000px;}
.x1a_c01019{left:186.480000px;}
.x59_c01019{left:187.920000px;}
.x44_c01019{left:197.280000px;}
.x56_c01019{left:198.720000px;}
.xb_c01019{left:207.360000px;}
.x41_c01019{left:209.520000px;}
.x33_c01019{left:219.600000px;}
.x21_c01019{left:230.400000px;}
.x4f_c01019{left:231.840000px;}
.x2e_c01019{left:241.200000px;}
.x42_c01019{left:252.000000px;}
.x4_c01019{left:262.080000px;}
.x4c_c01019{left:264.240000px;}
.x1b_c01019{left:272.880000px;}
.x22_c01019{left:274.320000px;}
.x14_c01019{left:293.760000px;}
.x2b_c01019{left:295.200000px;}
.x5_c01019{left:305.280000px;}
.x48_c01019{left:306.720000px;}
.x15_c01019{left:315.360000px;}
.x27_c01019{left:317.520000px;}
.x39_c01019{left:328.320000px;}
.xc_c01019{left:338.400000px;}
.x53_c01019{left:340.560000px;}
.x34_c01019{left:349.200000px;}
.xd_c01019{left:358.560000px;}
.x3a_c01019{left:360.720000px;}
.x6_c01019{left:369.360000px;}
.x3d_c01019{left:371.520000px;}
.x2f_c01019{left:382.320000px;}
.x16_c01019{left:390.960000px;}
.x2c_c01019{left:392.400000px;}
.x7_c01019{left:402.480000px;}
.x45_c01019{left:403.920000px;}
.x35_c01019{left:414.720000px;}
.x28_c01019{left:434.160000px;}
.x1c_c01019{left:435.600000px;}
.x17_c01019{left:444.960000px;}
.xe_c01019{left:447.120000px;}
.x49_c01019{left:457.920000px;}
.x4d_c01019{left:468.720000px;}
.x3b_c01019{left:478.080000px;}
.x36_c01019{left:480.240000px;}
.x4a_c01019{left:491.040000px;}
.x29_c01019{left:498.960000px;}
.x23_c01019{left:500.400000px;}
.x1d_c01019{left:511.200000px;}
.x54_c01019{left:522.720000px;}
.x5a_c01019{left:524.880000px;}
.x43_c01019{left:532.800000px;}
.x50_c01019{left:534.960000px;}
.x1e_c01019{left:542.880000px;}
.x24_c01019{left:544.320000px;}
.x8_c01019{left:553.680000px;}
.x37_c01019{left:555.120000px;}
.xf_c01019{left:564.480000px;}
.x2a_c01019{left:565.920000px;}
.x55_c01019{left:568.080000px;}
.x1f_c01019{left:575.280000px;}
.x3e_c01019{left:576.720000px;}
.x38_c01019{left:586.080000px;}
.x30_c01019{left:587.520000px;}
.x18_c01019{left:596.880000px;}
.x3c_c01019{left:598.320000px;}
.x3f_c01019{left:609.840000px;}
.x5b_c01019{left:611.280000px;}
.x46_c01019{left:620.640000px;}
.x9_c01019{left:628.560000px;}
.x4e_c01019{left:630.720000px;}
.x10_c01019{left:640.080000px;}
.x47_c01019{left:642.240000px;}
.x25_c01019{left:652.320000px;}
.x58_c01019{left:653.760000px;}
.x57_c01019{left:664.560000px;}
.x5c_c01019{left:676.080000px;}
@media print{
.v0_c01019{vertical-align:0.000000pt;}
.v1_c01019{vertical-align:2.560000pt;}
.ls0_c01019{letter-spacing:0.000000pt;}
.ws0_c01019{word-spacing:-0.103893pt;}
.ws2_c01019{word-spacing:0.000000pt;}
.ws1_c01019{word-spacing:5.420895pt;}
.fsd_c01019{font-size:10.240000pt;}
.fsb_c01019{font-size:28.160000pt;}
.fs5_c01019{font-size:30.720000pt;}
.fsa_c01019{font-size:33.280000pt;}
.fs3_c01019{font-size:38.400000pt;}
.fs0_c01019{font-size:40.960000pt;}
.fs1_c01019{font-size:43.520000pt;}
.fs6_c01019{font-size:46.080000pt;}
.fsc_c01019{font-size:48.640000pt;}
.fs7_c01019{font-size:51.200000pt;}
.fs9_c01019{font-size:53.760000pt;}
.fs8_c01019{font-size:56.320000pt;}
.fs2_c01019{font-size:58.880000pt;}
.fs4_c01019{font-size:61.440000pt;}
.y0_c01019{bottom:0.000000pt;}
.y67_c01019{bottom:69.120000pt;}
.y66_c01019{bottom:69.760000pt;}
.y6c_c01019{bottom:71.040000pt;}
.y68_c01019{bottom:71.680000pt;}
.y69_c01019{bottom:72.320000pt;}
.y6a_c01019{bottom:72.960000pt;}
.y6b_c01019{bottom:75.520000pt;}
.y63_c01019{bottom:107.520000pt;}
.y62_c01019{bottom:109.440000pt;}
.y64_c01019{bottom:110.080000pt;}
.y65_c01019{bottom:110.720000pt;}
.y5c_c01019{bottom:145.280000pt;}
.y5d_c01019{bottom:145.920000pt;}
.y61_c01019{bottom:146.560000pt;}
.y5e_c01019{bottom:147.840000pt;}
.y5f_c01019{bottom:148.480000pt;}
.y60_c01019{bottom:149.120000pt;}
.y55_c01019{bottom:183.040000pt;}
.y58_c01019{bottom:183.680000pt;}
.y59_c01019{bottom:184.320000pt;}
.y5a_c01019{bottom:184.960000pt;}
.y57_c01019{bottom:185.600000pt;}
.y56_c01019{bottom:186.240000pt;}
.y5b_c01019{bottom:186.880000pt;}
.y52_c01019{bottom:222.080000pt;}
.y51_c01019{bottom:222.720000pt;}
.y50_c01019{bottom:224.000000pt;}
.y53_c01019{bottom:224.640000pt;}
.y54_c01019{bottom:225.280000pt;}
.y4d_c01019{bottom:260.480000pt;}
.y4c_c01019{bottom:262.400000pt;}
.y4f_c01019{bottom:263.040000pt;}
.y4e_c01019{bottom:263.680000pt;}
.y4a_c01019{bottom:298.880000pt;}
.y49_c01019{bottom:299.520000pt;}
.y48_c01019{bottom:300.800000pt;}
.y47_c01019{bottom:301.440000pt;}
.y4b_c01019{bottom:302.080000pt;}
.y43_c01019{bottom:336.640000pt;}
.y45_c01019{bottom:337.280000pt;}
.y42_c01019{bottom:339.200000pt;}
.y44_c01019{bottom:339.840000pt;}
.y46_c01019{bottom:340.480000pt;}
.y3f_c01019{bottom:375.040000pt;}
.y3e_c01019{bottom:375.680000pt;}
.y3d_c01019{bottom:377.600000pt;}
.y40_c01019{bottom:378.240000pt;}
.y41_c01019{bottom:378.880000pt;}
.y3a_c01019{bottom:414.080000pt;}
.y3b_c01019{bottom:416.000000pt;}
.y3c_c01019{bottom:416.640000pt;}
.y38_c01019{bottom:451.840000pt;}
.y36_c01019{bottom:453.760000pt;}
.y37_c01019{bottom:454.400000pt;}
.y39_c01019{bottom:455.040000pt;}
.y35_c01019{bottom:489.600000pt;}
.y32_c01019{bottom:490.240000pt;}
.y33_c01019{bottom:492.160000pt;}
.y34_c01019{bottom:492.800000pt;}
.y2f_c01019{bottom:528.000000pt;}
.y30_c01019{bottom:528.640000pt;}
.y31_c01019{bottom:530.560000pt;}
.y2e_c01019{bottom:531.200000pt;}
.y2b_c01019{bottom:575.360000pt;}
.y2d_c01019{bottom:576.000000pt;}
.y2c_c01019{bottom:577.920000pt;}
.y28_c01019{bottom:613.760000pt;}
.y29_c01019{bottom:615.680000pt;}
.y2a_c01019{bottom:616.320000pt;}
.y24_c01019{bottom:650.880000pt;}
.y25_c01019{bottom:651.520000pt;}
.y26_c01019{bottom:653.440000pt;}
.y27_c01019{bottom:654.080000pt;}
.y22_c01019{bottom:688.640000pt;}
.y1f_c01019{bottom:689.280000pt;}
.y1e_c01019{bottom:690.560000pt;}
.y23_c01019{bottom:691.200000pt;}
.y20_c01019{bottom:691.840000pt;}
.y21_c01019{bottom:692.480000pt;}
.y1a_c01019{bottom:727.040000pt;}
.y1c_c01019{bottom:727.680000pt;}
.y1b_c01019{bottom:728.960000pt;}
.y18_c01019{bottom:729.600000pt;}
.y19_c01019{bottom:730.240000pt;}
.y1d_c01019{bottom:730.880000pt;}
.y16_c01019{bottom:765.440000pt;}
.y15_c01019{bottom:767.360000pt;}
.y17_c01019{bottom:768.000000pt;}
.y14_c01019{bottom:768.640000pt;}
.y13_c01019{bottom:815.360000pt;}
.y12_c01019{bottom:850.560000pt;}
.y10_c01019{bottom:851.200000pt;}
.yf_c01019{bottom:851.840000pt;}
.y11_c01019{bottom:853.120000pt;}
.yd_c01019{bottom:853.760000pt;}
.ye_c01019{bottom:854.400000pt;}
.yc_c01019{bottom:888.960000pt;}
.y9_c01019{bottom:889.600000pt;}
.y8_c01019{bottom:890.240000pt;}
.yb_c01019{bottom:890.880000pt;}
.ya_c01019{bottom:891.520000pt;}
.y7_c01019{bottom:892.160000pt;}
.y4_c01019{bottom:926.720000pt;}
.y2_c01019{bottom:927.360000pt;}
.y3_c01019{bottom:928.000000pt;}
.y5_c01019{bottom:929.280000pt;}
.y6_c01019{bottom:929.920000pt;}
.y1_c01019{bottom:930.560000pt;}
.hf_c01019{height:9.215000pt;}
.he_c01019{height:25.341250pt;}
.h7_c01019{height:27.645000pt;}
.hc_c01019{height:29.948750pt;}
.h5_c01019{height:34.556250pt;}
.h2_c01019{height:36.860000pt;}
.h3_c01019{height:39.163750pt;}
.h8_c01019{height:41.467500pt;}
.hd_c01019{height:43.771250pt;}
.h9_c01019{height:46.075000pt;}
.hb_c01019{height:48.378750pt;}
.ha_c01019{height:50.682500pt;}
.h4_c01019{height:52.986250pt;}
.h6_c01019{height:55.290000pt;}
.h1_c01019{height:1016.666667pt;}
.h0_c01019{height:1016.960000pt;}
.w1_c01019{width:696.666667pt;}
.w0_c01019{width:696.960000pt;}
.x0_c01019{left:0.000000pt;}
.x1_c01019{left:40.320000pt;}
.x11_c01019{left:41.600000pt;}
.x31_c01019{left:60.160000pt;}
.x40_c01019{left:61.440000pt;}
.x2_c01019{left:69.760000pt;}
.x51_c01019{left:71.040000pt;}
.x12_c01019{left:79.360000pt;}
.x32_c01019{left:99.200000pt;}
.x2d_c01019{left:108.800000pt;}
.x13_c01019{left:117.760000pt;}
.x52_c01019{left:120.960000pt;}
.x3_c01019{left:128.000000pt;}
.x19_c01019{left:137.600000pt;}
.xa_c01019{left:145.920000pt;}
.x20_c01019{left:147.840000pt;}
.x26_c01019{left:156.800000pt;}
.x4b_c01019{left:159.360000pt;}
.x1a_c01019{left:165.760000pt;}
.x59_c01019{left:167.040000pt;}
.x44_c01019{left:175.360000pt;}
.x56_c01019{left:176.640000pt;}
.xb_c01019{left:184.320000pt;}
.x41_c01019{left:186.240000pt;}
.x33_c01019{left:195.200000pt;}
.x21_c01019{left:204.800000pt;}
.x4f_c01019{left:206.080000pt;}
.x2e_c01019{left:214.400000pt;}
.x42_c01019{left:224.000000pt;}
.x4_c01019{left:232.960000pt;}
.x4c_c01019{left:234.880000pt;}
.x1b_c01019{left:242.560000pt;}
.x22_c01019{left:243.840000pt;}
.x14_c01019{left:261.120000pt;}
.x2b_c01019{left:262.400000pt;}
.x5_c01019{left:271.360000pt;}
.x48_c01019{left:272.640000pt;}
.x15_c01019{left:280.320000pt;}
.x27_c01019{left:282.240000pt;}
.x39_c01019{left:291.840000pt;}
.xc_c01019{left:300.800000pt;}
.x53_c01019{left:302.720000pt;}
.x34_c01019{left:310.400000pt;}
.xd_c01019{left:318.720000pt;}
.x3a_c01019{left:320.640000pt;}
.x6_c01019{left:328.320000pt;}
.x3d_c01019{left:330.240000pt;}
.x2f_c01019{left:339.840000pt;}
.x16_c01019{left:347.520000pt;}
.x2c_c01019{left:348.800000pt;}
.x7_c01019{left:357.760000pt;}
.x45_c01019{left:359.040000pt;}
.x35_c01019{left:368.640000pt;}
.x28_c01019{left:385.920000pt;}
.x1c_c01019{left:387.200000pt;}
.x17_c01019{left:395.520000pt;}
.xe_c01019{left:397.440000pt;}
.x49_c01019{left:407.040000pt;}
.x4d_c01019{left:416.640000pt;}
.x3b_c01019{left:424.960000pt;}
.x36_c01019{left:426.880000pt;}
.x4a_c01019{left:436.480000pt;}
.x29_c01019{left:443.520000pt;}
.x23_c01019{left:444.800000pt;}
.x1d_c01019{left:454.400000pt;}
.x54_c01019{left:464.640000pt;}
.x5a_c01019{left:466.560000pt;}
.x43_c01019{left:473.600000pt;}
.x50_c01019{left:475.520000pt;}
.x1e_c01019{left:482.560000pt;}
.x24_c01019{left:483.840000pt;}
.x8_c01019{left:492.160000pt;}
.x37_c01019{left:493.440000pt;}
.xf_c01019{left:501.760000pt;}
.x2a_c01019{left:503.040000pt;}
.x55_c01019{left:504.960000pt;}
.x1f_c01019{left:511.360000pt;}
.x3e_c01019{left:512.640000pt;}
.x38_c01019{left:520.960000pt;}
.x30_c01019{left:522.240000pt;}
.x18_c01019{left:530.560000pt;}
.x3c_c01019{left:531.840000pt;}
.x3f_c01019{left:542.080000pt;}
.x5b_c01019{left:543.360000pt;}
.x46_c01019{left:551.680000pt;}
.x9_c01019{left:558.720000pt;}
.x4e_c01019{left:560.640000pt;}
.x10_c01019{left:568.960000pt;}
.x47_c01019{left:570.880000pt;}
.x25_c01019{left:579.840000pt;}
.x58_c01019{left:581.120000pt;}
.x57_c01019{left:590.720000pt;}
.x5c_c01019{left:600.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_45b20094ea9b7ab88d9d194e.woff2')format("woff");}.ff1_c01020{font-family:ff1_c01020;line-height:1.109863;font-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_c01020{transform:matrix(0.158700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158700,0.000000,0.000000,0.250000,0,0);}
.m47_c01020{transform:matrix(0.169350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169350,0.000000,0.000000,0.250000,0,0);}
.m28_c01020{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.m58_c01020{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);}
.m4b_c01020{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m69_c01020{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m21_c01020{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);}
.m3f_c01020{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m4e_c01020{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m23_c01020{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m20_c01020{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m34_c01020{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m49_c01020{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m26_c01020{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m14_c01020{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01020{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m7_c01020{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m4_c01020{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m8_c01020{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m6_c01020{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);}
.m5e_c01020{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);}
.m68_c01020{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m0_c01020{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);}
.m4d_c01020{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m59_c01020{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);}
.m29_c01020{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m43_c01020{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);}
.m3c_c01020{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);}
.me_c01020{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m22_c01020{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);}
.m60_c01020{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);}
.m2d_c01020{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m27_c01020{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);}
.m1f_c01020{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01020{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);}
.m3a_c01020{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);}
.m55_c01020{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);}
.m32_c01020{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m31_c01020{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m2_c01020{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m38_c01020{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m41_c01020{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);}
.m24_c01020{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m37_c01020{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);}
.m54_c01020{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);}
.m13_c01020{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m5f_c01020{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.mf_c01020{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m16_c01020{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01020{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m57_c01020{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_c01020{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m62_c01020{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);}
.m4c_c01020{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m25_c01020{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m33_c01020{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);}
.m39_c01020{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m44_c01020{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m35_c01020{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);}
.m2f_c01020{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m53_c01020{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.mc_c01020{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m46_c01020{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01020{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);}
.m2c_c01020{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);}
.m11_c01020{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.ma_c01020{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m19_c01020{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m30_c01020{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);}
.m3e_c01020{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m48_c01020{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.mb_c01020{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01020{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m15_c01020{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);}
.m2b_c01020{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.md_c01020{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01020{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m3_c01020{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m63_c01020{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);}
.m64_c01020{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m50_c01020{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01020{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);}
.m9_c01020{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);}
.m42_c01020{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m5a_c01020{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m18_c01020{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m65_c01020{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01020{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m5_c01020{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m51_c01020{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);}
.m40_c01020{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);}
.m67_c01020{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m5d_c01020{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);}
.m56_c01020{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m45_c01020{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);}
.m12_c01020{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01020{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m5b_c01020{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.m6a_c01020{transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01020{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);}
.m61_c01020{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m36_c01020{transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);}
.m66_c01020{transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);}
.m52_c01020{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.m17_c01020{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m5c_c01020{transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01020{transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);}
.v0_c01020{vertical-align:0.000000px;}
.ls0_c01020{letter-spacing:0.000000px;}
.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;}
.fc0_c01020{color:transparent;}
.fsc_c01020{font-size:31.680000px;}
.fs4_c01020{font-size:34.560000px;}
.fsf_c01020{font-size:37.440000px;}
.fs8_c01020{font-size:43.200000px;}
.fs6_c01020{font-size:46.080000px;}
.fs1_c01020{font-size:48.960000px;}
.fs5_c01020{font-size:51.840000px;}
.fs9_c01020{font-size:54.720000px;}
.fsa_c01020{font-size:57.600000px;}
.fs7_c01020{font-size:60.480000px;}
.fse_c01020{font-size:63.360000px;}
.fs2_c01020{font-size:66.240000px;}
.fs3_c01020{font-size:69.120000px;}
.fs0_c01020{font-size:72.000000px;}
.fsd_c01020{font-size:74.880000px;}
.fsb_c01020{font-size:95.040000px;}
.y0_c01020{bottom:0.000000px;}
.y7f_c01020{bottom:44.640000px;}
.y80_c01020{bottom:45.360000px;}
.y82_c01020{bottom:46.080000px;}
.y7e_c01020{bottom:46.800000px;}
.y83_c01020{bottom:48.240000px;}
.y81_c01020{bottom:50.400000px;}
.y7d_c01020{bottom:87.120000px;}
.y78_c01020{bottom:87.840000px;}
.y7b_c01020{bottom:88.560000px;}
.y7c_c01020{bottom:89.280000px;}
.y79_c01020{bottom:90.000000px;}
.y7a_c01020{bottom:91.440000px;}
.y77_c01020{bottom:133.200000px;}
.y74_c01020{bottom:133.920000px;}
.y75_c01020{bottom:134.640000px;}
.y76_c01020{bottom:135.360000px;}
.y70_c01020{bottom:174.240000px;}
.y73_c01020{bottom:174.960000px;}
.y6f_c01020{bottom:176.400000px;}
.y72_c01020{bottom:177.120000px;}
.y71_c01020{bottom:177.840000px;}
.y6e_c01020{bottom:216.720000px;}
.y69_c01020{bottom:217.440000px;}
.y6c_c01020{bottom:218.160000px;}
.y6a_c01020{bottom:219.600000px;}
.y6d_c01020{bottom:220.320000px;}
.y6b_c01020{bottom:221.040000px;}
.y66_c01020{bottom:260.640000px;}
.y67_c01020{bottom:261.360000px;}
.y65_c01020{bottom:262.800000px;}
.y68_c01020{bottom:264.240000px;}
.y64_c01020{bottom:303.120000px;}
.y61_c01020{bottom:303.840000px;}
.y62_c01020{bottom:304.560000px;}
.y5f_c01020{bottom:305.280000px;}
.y60_c01020{bottom:306.000000px;}
.y63_c01020{bottom:306.720000px;}
.y5c_c01020{bottom:346.320000px;}
.y5e_c01020{bottom:347.760000px;}
.y5d_c01020{bottom:348.480000px;}
.y5b_c01020{bottom:349.200000px;}
.y56_c01020{bottom:388.080000px;}
.y58_c01020{bottom:388.800000px;}
.y59_c01020{bottom:389.520000px;}
.y5a_c01020{bottom:390.960000px;}
.y57_c01020{bottom:391.680000px;}
.y54_c01020{bottom:430.560000px;}
.y55_c01020{bottom:431.280000px;}
.y53_c01020{bottom:432.000000px;}
.y50_c01020{bottom:432.720000px;}
.y51_c01020{bottom:433.440000px;}
.y4f_c01020{bottom:434.160000px;}
.y52_c01020{bottom:434.880000px;}
.y4b_c01020{bottom:473.760000px;}
.y4d_c01020{bottom:474.480000px;}
.y4e_c01020{bottom:475.200000px;}
.y4c_c01020{bottom:476.640000px;}
.y4a_c01020{bottom:477.360000px;}
.y47_c01020{bottom:516.240000px;}
.y45_c01020{bottom:516.960000px;}
.y49_c01020{bottom:517.680000px;}
.y48_c01020{bottom:519.120000px;}
.y46_c01020{bottom:519.840000px;}
.y44_c01020{bottom:558.720000px;}
.y42_c01020{bottom:559.440000px;}
.y43_c01020{bottom:561.600000px;}
.y41_c01020{bottom:562.320000px;}
.y40_c01020{bottom:563.040000px;}
.y3c_c01020{bottom:593.280000px;}
.y3f_c01020{bottom:601.920000px;}
.y3d_c01020{bottom:602.640000px;}
.y3e_c01020{bottom:604.800000px;}
.y3b_c01020{bottom:645.840000px;}
.y39_c01020{bottom:647.280000px;}
.y38_c01020{bottom:648.000000px;}
.y3a_c01020{bottom:648.720000px;}
.y33_c01020{bottom:687.600000px;}
.y35_c01020{bottom:688.320000px;}
.y37_c01020{bottom:689.760000px;}
.y34_c01020{bottom:690.480000px;}
.y36_c01020{bottom:691.200000px;}
.y32_c01020{bottom:691.920000px;}
.y2e_c01020{bottom:731.520000px;}
.y31_c01020{bottom:732.960000px;}
.y30_c01020{bottom:733.680000px;}
.y2f_c01020{bottom:734.400000px;}
.y29_c01020{bottom:774.000000px;}
.y2d_c01020{bottom:774.720000px;}
.y2c_c01020{bottom:776.160000px;}
.y2b_c01020{bottom:776.880000px;}
.y2a_c01020{bottom:777.600000px;}
.y26_c01020{bottom:816.480000px;}
.y28_c01020{bottom:818.640000px;}
.y27_c01020{bottom:819.360000px;}
.y25_c01020{bottom:820.080000px;}
.y24_c01020{bottom:820.800000px;}
.y23_c01020{bottom:858.960000px;}
.y20_c01020{bottom:859.680000px;}
.y22_c01020{bottom:861.120000px;}
.y21_c01020{bottom:861.840000px;}
.y1e_c01020{bottom:862.560000px;}
.y1f_c01020{bottom:863.280000px;}
.y1d_c01020{bottom:892.800000px;}
.y19_c01020{bottom:902.880000px;}
.y1b_c01020{bottom:904.320000px;}
.y1c_c01020{bottom:905.040000px;}
.y1a_c01020{bottom:905.760000px;}
.y17_c01020{bottom:944.640000px;}
.y18_c01020{bottom:946.080000px;}
.y16_c01020{bottom:946.800000px;}
.y15_c01020{bottom:947.520000px;}
.y13_c01020{bottom:948.240000px;}
.y14_c01020{bottom:948.960000px;}
.y12_c01020{bottom:987.120000px;}
.yf_c01020{bottom:987.840000px;}
.yd_c01020{bottom:988.560000px;}
.y11_c01020{bottom:989.280000px;}
.y10_c01020{bottom:990.000000px;}
.ye_c01020{bottom:990.720000px;}
.yb_c01020{bottom:1029.600000px;}
.yc_c01020{bottom:1030.320000px;}
.ya_c01020{bottom:1031.760000px;}
.y9_c01020{bottom:1032.480000px;}
.y7_c01020{bottom:1033.200000px;}
.y8_c01020{bottom:1033.920000px;}
.y4_c01020{bottom:1072.080000px;}
.y6_c01020{bottom:1072.800000px;}
.y5_c01020{bottom:1074.960000px;}
.y3_c01020{bottom:1075.680000px;}
.y1_c01020{bottom:1127.520000px;}
.y2_c01020{bottom:1131.120000px;}
.he_c01020{height:28.508906px;}
.h6_c01020{height:31.100625px;}
.h11_c01020{height:33.692344px;}
.ha_c01020{height:38.875781px;}
.h8_c01020{height:41.467500px;}
.h3_c01020{height:44.059219px;}
.h7_c01020{height:46.650937px;}
.hb_c01020{height:49.242656px;}
.hc_c01020{height:51.834375px;}
.h9_c01020{height:54.426094px;}
.h10_c01020{height:57.017812px;}
.h4_c01020{height:59.609531px;}
.h5_c01020{height:62.201250px;}
.h2_c01020{height:64.792969px;}
.hf_c01020{height:67.384687px;}
.hd_c01020{height:85.526719px;}
.h1_c01020{height:1182.750000px;}
.h0_c01020{height:1182.960000px;}
.w1_c01020{width:790.500000px;}
.w0_c01020{width:790.560000px;}
.x0_c01020{left:0.000000px;}
.x56_c01020{left:61.200000px;}
.x21_c01020{left:71.280000px;}
.xa_c01020{left:72.720000px;}
.x44_c01020{left:104.400000px;}
.xb_c01020{left:105.840000px;}
.x29_c01020{left:107.280000px;}
.x30_c01020{left:115.920000px;}
.x58_c01020{left:118.080000px;}
.x22_c01020{left:126.720000px;}
.x4b_c01020{left:137.520000px;}
.x19_c01020{left:149.040000px;}
.xc_c01020{left:159.120000px;}
.x48_c01020{left:168.480000px;}
.x36_c01020{left:170.640000px;}
.x45_c01020{left:179.280000px;}
.x3_c01020{left:182.160000px;}
.x13_c01020{left:192.240000px;}
.x59_c01020{left:201.600000px;}
.xd_c01020{left:203.040000px;}
.x49_c01020{left:212.400000px;}
.x2a_c01020{left:213.840000px;}
.x23_c01020{left:223.920000px;}
.x2c_c01020{left:226.080000px;}
.x46_c01020{left:234.000000px;}
.x4_c01020{left:235.440000px;}
.x57_c01020{left:244.800000px;}
.x1a_c01020{left:246.240000px;}
.x39_c01020{left:255.600000px;}
.x31_c01020{left:257.040000px;}
.x5_c01020{left:267.840000px;}
.xe_c01020{left:277.200000px;}
.x41_c01020{left:278.640000px;}
.x4c_c01020{left:287.280000px;}
.x14_c01020{left:288.720000px;}
.x35_c01020{left:298.800000px;}
.x3d_c01020{left:300.240000px;}
.x3c_c01020{left:302.400000px;}
.x47_c01020{left:309.600000px;}
.x24_c01020{left:320.400000px;}
.xf_c01020{left:331.920000px;}
.x50_c01020{left:342.720000px;}
.x5a_c01020{left:352.080000px;}
.x25_c01020{left:353.520000px;}
.x6_c01020{left:363.600000px;}
.x55_c01020{left:373.680000px;}
.x37_c01020{left:375.120000px;}
.x4d_c01020{left:385.200000px;}
.x7_c01020{left:396.000000px;}
.x3e_c01020{left:397.440000px;}
.x15_c01020{left:406.080000px;}
.x2d_c01020{left:417.600000px;}
.x1b_c01020{left:426.960000px;}
.x32_c01020{left:429.120000px;}
.x51_c01020{left:438.480000px;}
.x38_c01020{left:440.640000px;}
.x26_c01020{left:450.720000px;}
.x5b_c01020{left:460.080000px;}
.x16_c01020{left:461.520000px;}
.x2b_c01020{left:470.880000px;}
.x4e_c01020{left:482.400000px;}
.x3f_c01020{left:483.840000px;}
.x1c_c01020{left:493.200000px;}
.x42_c01020{left:494.640000px;}
.x8_c01020{left:504.000000px;}
.x4f_c01020{left:514.800000px;}
.x10_c01020{left:516.240000px;}
.x1d_c01020{left:525.600000px;}
.x2e_c01020{left:527.040000px;}
.x17_c01020{left:535.680000px;}
.x53_c01020{left:537.120000px;}
.x33_c01020{left:547.920000px;}
.x1e_c01020{left:558.720000px;}
.x43_c01020{left:569.520000px;}
.x4a_c01020{left:579.600000px;}
.x18_c01020{left:581.040000px;}
.x40_c01020{left:589.680000px;}
.x34_c01020{left:591.120000px;}
.x54_c01020{left:601.200000px;}
.x27_c01020{left:602.640000px;}
.x3a_c01020{left:613.440000px;}
.x11_c01020{left:623.520000px;}
.x9_c01020{left:634.320000px;}
.x2f_c01020{left:645.840000px;}
.x1f_c01020{left:656.640000px;}
.x28_c01020{left:668.160000px;}
.x12_c01020{left:678.960000px;}
.x3b_c01020{left:689.760000px;}
.x20_c01020{left:691.200000px;}
.x52_c01020{left:699.840000px;}
.x1_c01020{left:704.880000px;}
.x2_c01020{left:742.320000px;}
@media print{
.v0_c01020{vertical-align:0.000000pt;}
.ls0_c01020{letter-spacing:0.000000pt;}
.ws0_c01020{word-spacing:0.000000pt;}
.fsc_c01020{font-size:28.160000pt;}
.fs4_c01020{font-size:30.720000pt;}
.fsf_c01020{font-size:33.280000pt;}
.fs8_c01020{font-size:38.400000pt;}
.fs6_c01020{font-size:40.960000pt;}
.fs1_c01020{font-size:43.520000pt;}
.fs5_c01020{font-size:46.080000pt;}
.fs9_c01020{font-size:48.640000pt;}
.fsa_c01020{font-size:51.200000pt;}
.fs7_c01020{font-size:53.760000pt;}
.fse_c01020{font-size:56.320000pt;}
.fs2_c01020{font-size:58.880000pt;}
.fs3_c01020{font-size:61.440000pt;}
.fs0_c01020{font-size:64.000000pt;}
.fsd_c01020{font-size:66.560000pt;}
.fsb_c01020{font-size:84.480000pt;}
.y0_c01020{bottom:0.000000pt;}
.y7f_c01020{bottom:39.680000pt;}
.y80_c01020{bottom:40.320000pt;}
.y82_c01020{bottom:40.960000pt;}
.y7e_c01020{bottom:41.600000pt;}
.y83_c01020{bottom:42.880000pt;}
.y81_c01020{bottom:44.800000pt;}
.y7d_c01020{bottom:77.440000pt;}
.y78_c01020{bottom:78.080000pt;}
.y7b_c01020{bottom:78.720000pt;}
.y7c_c01020{bottom:79.360000pt;}
.y79_c01020{bottom:80.000000pt;}
.y7a_c01020{bottom:81.280000pt;}
.y77_c01020{bottom:118.400000pt;}
.y74_c01020{bottom:119.040000pt;}
.y75_c01020{bottom:119.680000pt;}
.y76_c01020{bottom:120.320000pt;}
.y70_c01020{bottom:154.880000pt;}
.y73_c01020{bottom:155.520000pt;}
.y6f_c01020{bottom:156.800000pt;}
.y72_c01020{bottom:157.440000pt;}
.y71_c01020{bottom:158.080000pt;}
.y6e_c01020{bottom:192.640000pt;}
.y69_c01020{bottom:193.280000pt;}
.y6c_c01020{bottom:193.920000pt;}
.y6a_c01020{bottom:195.200000pt;}
.y6d_c01020{bottom:195.840000pt;}
.y6b_c01020{bottom:196.480000pt;}
.y66_c01020{bottom:231.680000pt;}
.y67_c01020{bottom:232.320000pt;}
.y65_c01020{bottom:233.600000pt;}
.y68_c01020{bottom:234.880000pt;}
.y64_c01020{bottom:269.440000pt;}
.y61_c01020{bottom:270.080000pt;}
.y62_c01020{bottom:270.720000pt;}
.y5f_c01020{bottom:271.360000pt;}
.y60_c01020{bottom:272.000000pt;}
.y63_c01020{bottom:272.640000pt;}
.y5c_c01020{bottom:307.840000pt;}
.y5e_c01020{bottom:309.120000pt;}
.y5d_c01020{bottom:309.760000pt;}
.y5b_c01020{bottom:310.400000pt;}
.y56_c01020{bottom:344.960000pt;}
.y58_c01020{bottom:345.600000pt;}
.y59_c01020{bottom:346.240000pt;}
.y5a_c01020{bottom:347.520000pt;}
.y57_c01020{bottom:348.160000pt;}
.y54_c01020{bottom:382.720000pt;}
.y55_c01020{bottom:383.360000pt;}
.y53_c01020{bottom:384.000000pt;}
.y50_c01020{bottom:384.640000pt;}
.y51_c01020{bottom:385.280000pt;}
.y4f_c01020{bottom:385.920000pt;}
.y52_c01020{bottom:386.560000pt;}
.y4b_c01020{bottom:421.120000pt;}
.y4d_c01020{bottom:421.760000pt;}
.y4e_c01020{bottom:422.400000pt;}
.y4c_c01020{bottom:423.680000pt;}
.y4a_c01020{bottom:424.320000pt;}
.y47_c01020{bottom:458.880000pt;}
.y45_c01020{bottom:459.520000pt;}
.y49_c01020{bottom:460.160000pt;}
.y48_c01020{bottom:461.440000pt;}
.y46_c01020{bottom:462.080000pt;}
.y44_c01020{bottom:496.640000pt;}
.y42_c01020{bottom:497.280000pt;}
.y43_c01020{bottom:499.200000pt;}
.y41_c01020{bottom:499.840000pt;}
.y40_c01020{bottom:500.480000pt;}
.y3c_c01020{bottom:527.360000pt;}
.y3f_c01020{bottom:535.040000pt;}
.y3d_c01020{bottom:535.680000pt;}
.y3e_c01020{bottom:537.600000pt;}
.y3b_c01020{bottom:574.080000pt;}
.y39_c01020{bottom:575.360000pt;}
.y38_c01020{bottom:576.000000pt;}
.y3a_c01020{bottom:576.640000pt;}
.y33_c01020{bottom:611.200000pt;}
.y35_c01020{bottom:611.840000pt;}
.y37_c01020{bottom:613.120000pt;}
.y34_c01020{bottom:613.760000pt;}
.y36_c01020{bottom:614.400000pt;}
.y32_c01020{bottom:615.040000pt;}
.y2e_c01020{bottom:650.240000pt;}
.y31_c01020{bottom:651.520000pt;}
.y30_c01020{bottom:652.160000pt;}
.y2f_c01020{bottom:652.800000pt;}
.y29_c01020{bottom:688.000000pt;}
.y2d_c01020{bottom:688.640000pt;}
.y2c_c01020{bottom:689.920000pt;}
.y2b_c01020{bottom:690.560000pt;}
.y2a_c01020{bottom:691.200000pt;}
.y26_c01020{bottom:725.760000pt;}
.y28_c01020{bottom:727.680000pt;}
.y27_c01020{bottom:728.320000pt;}
.y25_c01020{bottom:728.960000pt;}
.y24_c01020{bottom:729.600000pt;}
.y23_c01020{bottom:763.520000pt;}
.y20_c01020{bottom:764.160000pt;}
.y22_c01020{bottom:765.440000pt;}
.y21_c01020{bottom:766.080000pt;}
.y1e_c01020{bottom:766.720000pt;}
.y1f_c01020{bottom:767.360000pt;}
.y1d_c01020{bottom:793.600000pt;}
.y19_c01020{bottom:802.560000pt;}
.y1b_c01020{bottom:803.840000pt;}
.y1c_c01020{bottom:804.480000pt;}
.y1a_c01020{bottom:805.120000pt;}
.y17_c01020{bottom:839.680000pt;}
.y18_c01020{bottom:840.960000pt;}
.y16_c01020{bottom:841.600000pt;}
.y15_c01020{bottom:842.240000pt;}
.y13_c01020{bottom:842.880000pt;}
.y14_c01020{bottom:843.520000pt;}
.y12_c01020{bottom:877.440000pt;}
.yf_c01020{bottom:878.080000pt;}
.yd_c01020{bottom:878.720000pt;}
.y11_c01020{bottom:879.360000pt;}
.y10_c01020{bottom:880.000000pt;}
.ye_c01020{bottom:880.640000pt;}
.yb_c01020{bottom:915.200000pt;}
.yc_c01020{bottom:915.840000pt;}
.ya_c01020{bottom:917.120000pt;}
.y9_c01020{bottom:917.760000pt;}
.y7_c01020{bottom:918.400000pt;}
.y8_c01020{bottom:919.040000pt;}
.y4_c01020{bottom:952.960000pt;}
.y6_c01020{bottom:953.600000pt;}
.y5_c01020{bottom:955.520000pt;}
.y3_c01020{bottom:956.160000pt;}
.y1_c01020{bottom:1002.240000pt;}
.y2_c01020{bottom:1005.440000pt;}
.he_c01020{height:25.341250pt;}
.h6_c01020{height:27.645000pt;}
.h11_c01020{height:29.948750pt;}
.ha_c01020{height:34.556250pt;}
.h8_c01020{height:36.860000pt;}
.h3_c01020{height:39.163750pt;}
.h7_c01020{height:41.467500pt;}
.hb_c01020{height:43.771250pt;}
.hc_c01020{height:46.075000pt;}
.h9_c01020{height:48.378750pt;}
.h10_c01020{height:50.682500pt;}
.h4_c01020{height:52.986250pt;}
.h5_c01020{height:55.290000pt;}
.h2_c01020{height:57.593750pt;}
.hf_c01020{height:59.897500pt;}
.hd_c01020{height:76.023750pt;}
.h1_c01020{height:1051.333333pt;}
.h0_c01020{height:1051.520000pt;}
.w1_c01020{width:702.666667pt;}
.w0_c01020{width:702.720000pt;}
.x0_c01020{left:0.000000pt;}
.x56_c01020{left:54.400000pt;}
.x21_c01020{left:63.360000pt;}
.xa_c01020{left:64.640000pt;}
.x44_c01020{left:92.800000pt;}
.xb_c01020{left:94.080000pt;}
.x29_c01020{left:95.360000pt;}
.x30_c01020{left:103.040000pt;}
.x58_c01020{left:104.960000pt;}
.x22_c01020{left:112.640000pt;}
.x4b_c01020{left:122.240000pt;}
.x19_c01020{left:132.480000pt;}
.xc_c01020{left:141.440000pt;}
.x48_c01020{left:149.760000pt;}
.x36_c01020{left:151.680000pt;}
.x45_c01020{left:159.360000pt;}
.x3_c01020{left:161.920000pt;}
.x13_c01020{left:170.880000pt;}
.x59_c01020{left:179.200000pt;}
.xd_c01020{left:180.480000pt;}
.x49_c01020{left:188.800000pt;}
.x2a_c01020{left:190.080000pt;}
.x23_c01020{left:199.040000pt;}
.x2c_c01020{left:200.960000pt;}
.x46_c01020{left:208.000000pt;}
.x4_c01020{left:209.280000pt;}
.x57_c01020{left:217.600000pt;}
.x1a_c01020{left:218.880000pt;}
.x39_c01020{left:227.200000pt;}
.x31_c01020{left:228.480000pt;}
.x5_c01020{left:238.080000pt;}
.xe_c01020{left:246.400000pt;}
.x41_c01020{left:247.680000pt;}
.x4c_c01020{left:255.360000pt;}
.x14_c01020{left:256.640000pt;}
.x35_c01020{left:265.600000pt;}
.x3d_c01020{left:266.880000pt;}
.x3c_c01020{left:268.800000pt;}
.x47_c01020{left:275.200000pt;}
.x24_c01020{left:284.800000pt;}
.xf_c01020{left:295.040000pt;}
.x50_c01020{left:304.640000pt;}
.x5a_c01020{left:312.960000pt;}
.x25_c01020{left:314.240000pt;}
.x6_c01020{left:323.200000pt;}
.x55_c01020{left:332.160000pt;}
.x37_c01020{left:333.440000pt;}
.x4d_c01020{left:342.400000pt;}
.x7_c01020{left:352.000000pt;}
.x3e_c01020{left:353.280000pt;}
.x15_c01020{left:360.960000pt;}
.x2d_c01020{left:371.200000pt;}
.x1b_c01020{left:379.520000pt;}
.x32_c01020{left:381.440000pt;}
.x51_c01020{left:389.760000pt;}
.x38_c01020{left:391.680000pt;}
.x26_c01020{left:400.640000pt;}
.x5b_c01020{left:408.960000pt;}
.x16_c01020{left:410.240000pt;}
.x2b_c01020{left:418.560000pt;}
.x4e_c01020{left:428.800000pt;}
.x3f_c01020{left:430.080000pt;}
.x1c_c01020{left:438.400000pt;}
.x42_c01020{left:439.680000pt;}
.x8_c01020{left:448.000000pt;}
.x4f_c01020{left:457.600000pt;}
.x10_c01020{left:458.880000pt;}
.x1d_c01020{left:467.200000pt;}
.x2e_c01020{left:468.480000pt;}
.x17_c01020{left:476.160000pt;}
.x53_c01020{left:477.440000pt;}
.x33_c01020{left:487.040000pt;}
.x1e_c01020{left:496.640000pt;}
.x43_c01020{left:506.240000pt;}
.x4a_c01020{left:515.200000pt;}
.x18_c01020{left:516.480000pt;}
.x40_c01020{left:524.160000pt;}
.x34_c01020{left:525.440000pt;}
.x54_c01020{left:534.400000pt;}
.x27_c01020{left:535.680000pt;}
.x3a_c01020{left:545.280000pt;}
.x11_c01020{left:554.240000pt;}
.x9_c01020{left:563.840000pt;}
.x2f_c01020{left:574.080000pt;}
.x1f_c01020{left:583.680000pt;}
.x28_c01020{left:593.920000pt;}
.x12_c01020{left:603.520000pt;}
.x3b_c01020{left:613.120000pt;}
.x20_c01020{left:614.400000pt;}
.x52_c01020{left:622.080000pt;}
.x1_c01020{left:626.560000pt;}
.x2_c01020{left:659.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_61b059cdda5369e1ec0208f2.woff2')format("woff");}.ff1_c01021{font-family:ff1_c01021;line-height:1.109863;font-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_c01021{transform:matrix(0.193800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193800,0.000000,0.000000,0.250000,0,0);}
.m59_c01021{transform:matrix(0.195400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195400,0.000000,0.000000,0.250000,0,0);}
.m56_c01021{transform:matrix(0.222650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222650,0.000000,0.000000,0.250000,0,0);}
.m51_c01021{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01021{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m23_c01021{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);}
.m3c_c01021{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01021{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m24_c01021{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01021{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01021{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m58_c01021{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01021{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m9_c01021{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01021{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.me_c01021{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01021{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);}
.m41_c01021{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01021{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m21_c01021{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);}
.m3e_c01021{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m60_c01021{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);}
.m5a_c01021{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);}
.m2b_c01021{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m34_c01021{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m3_c01021{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);}
.m4d_c01021{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);}
.m0_c01021{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01021{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);}
.m53_c01021{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01021{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);}
.m3a_c01021{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);}
.m54_c01021{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);}
.m13_c01021{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m52_c01021{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.mf_c01021{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);}
.m30_c01021{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01021{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);}
.m5c_c01021{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m17_c01021{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);}
.m1d_c01021{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);}
.m4_c01021{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m35_c01021{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m45_c01021{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m26_c01021{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m36_c01021{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);}
.m4e_c01021{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m40_c01021{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m27_c01021{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);}
.m29_c01021{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m50_c01021{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);}
.m25_c01021{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01021{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m37_c01021{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);}
.m49_c01021{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m8_c01021{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m47_c01021{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m19_c01021{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);}
.m1c_c01021{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m12_c01021{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m5b_c01021{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m7_c01021{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);}
.m18_c01021{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);}
.m6_c01021{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m38_c01021{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m15_c01021{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);}
.m20_c01021{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m11_c01021{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01021{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.mc_c01021{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);}
.m57_c01021{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m4f_c01021{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.md_c01021{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m42_c01021{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m33_c01021{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);}
.ma_c01021{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);}
.m1_c01021{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m31_c01021{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.mb_c01021{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m5_c01021{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01021{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m5d_c01021{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);}
.m5e_c01021{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);}
.m28_c01021{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m2_c01021{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);}
.m2d_c01021{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m14_c01021{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m48_c01021{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);}
.m32_c01021{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m43_c01021{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);}
.m16_c01021{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m10_c01021{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m55_c01021{transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);}
.m5f_c01021{transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);}
.m39_c01021{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.m46_c01021{transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);}
.m22_c01021{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.v0_c01021{vertical-align:0.000000px;}
.ls0_c01021{letter-spacing:0.000000px;}
.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;}
}
.ws1_c01021{word-spacing:0.000000px;}
.ws0_c01021{word-spacing:4.916183px;}
.fc0_c01021{color:transparent;}
.fs9_c01021{font-size:8.640000px;}
.fs8_c01021{font-size:31.680000px;}
.fs2_c01021{font-size:34.560000px;}
.fsd_c01021{font-size:37.440000px;}
.fs1_c01021{font-size:43.200000px;}
.fs4_c01021{font-size:46.080000px;}
.fs6_c01021{font-size:48.960000px;}
.fs5_c01021{font-size:51.840000px;}
.fsa_c01021{font-size:54.720000px;}
.fsb_c01021{font-size:57.600000px;}
.fs3_c01021{font-size:60.480000px;}
.fs7_c01021{font-size:66.240000px;}
.fsc_c01021{font-size:69.120000px;}
.fs0_c01021{font-size:72.000000px;}
.fsf_c01021{font-size:77.760000px;}
.fs10_c01021{font-size:89.280000px;}
.fse_c01021{font-size:95.040000px;}
.y0_c01021{bottom:0.000000px;}
.y6a_c01021{bottom:38.160000px;}
.y6d_c01021{bottom:40.320000px;}
.y69_c01021{bottom:41.040000px;}
.y6b_c01021{bottom:41.760000px;}
.y6c_c01021{bottom:42.480000px;}
.y65_c01021{bottom:82.080000px;}
.y68_c01021{bottom:82.800000px;}
.y63_c01021{bottom:83.520000px;}
.y64_c01021{bottom:84.240000px;}
.y66_c01021{bottom:84.960000px;}
.y67_c01021{bottom:85.680000px;}
.y62_c01021{bottom:126.000000px;}
.y60_c01021{bottom:126.720000px;}
.y5f_c01021{bottom:127.440000px;}
.y61_c01021{bottom:128.160000px;}
.y5a_c01021{bottom:178.560000px;}
.y5e_c01021{bottom:179.280000px;}
.y5b_c01021{bottom:180.000000px;}
.y5c_c01021{bottom:180.720000px;}
.y5d_c01021{bottom:181.440000px;}
.y59_c01021{bottom:219.600000px;}
.y57_c01021{bottom:220.320000px;}
.y58_c01021{bottom:221.040000px;}
.y55_c01021{bottom:222.480000px;}
.y56_c01021{bottom:223.200000px;}
.y54_c01021{bottom:262.800000px;}
.y52_c01021{bottom:263.520000px;}
.y53_c01021{bottom:264.240000px;}
.y50_c01021{bottom:265.680000px;}
.y51_c01021{bottom:266.400000px;}
.y4e_c01021{bottom:306.000000px;}
.y4d_c01021{bottom:306.720000px;}
.y4b_c01021{bottom:308.160000px;}
.y4c_c01021{bottom:308.880000px;}
.y4f_c01021{bottom:309.600000px;}
.y49_c01021{bottom:349.200000px;}
.y4a_c01021{bottom:351.360000px;}
.y46_c01021{bottom:391.680000px;}
.y47_c01021{bottom:393.120000px;}
.y48_c01021{bottom:393.840000px;}
.y45_c01021{bottom:394.560000px;}
.y44_c01021{bottom:437.040000px;}
.y43_c01021{bottom:437.760000px;}
.y41_c01021{bottom:468.720000px;}
.y3f_c01021{bottom:478.080000px;}
.y40_c01021{bottom:478.800000px;}
.y42_c01021{bottom:480.240000px;}
.y3e_c01021{bottom:480.960000px;}
.y3d_c01021{bottom:520.560000px;}
.y3b_c01021{bottom:523.440000px;}
.y3c_c01021{bottom:524.160000px;}
.y36_c01021{bottom:563.760000px;}
.y39_c01021{bottom:564.480000px;}
.y3a_c01021{bottom:565.920000px;}
.y37_c01021{bottom:566.640000px;}
.y38_c01021{bottom:567.360000px;}
.y35_c01021{bottom:606.240000px;}
.y33_c01021{bottom:606.960000px;}
.y34_c01021{bottom:609.120000px;}
.y2e_c01021{bottom:649.440000px;}
.y30_c01021{bottom:650.160000px;}
.y2f_c01021{bottom:650.880000px;}
.y32_c01021{bottom:651.600000px;}
.y31_c01021{bottom:652.320000px;}
.y29_c01021{bottom:691.920000px;}
.y2c_c01021{bottom:692.640000px;}
.y2d_c01021{bottom:694.080000px;}
.y2b_c01021{bottom:694.800000px;}
.y2a_c01021{bottom:695.520000px;}
.y27_c01021{bottom:737.280000px;}
.y28_c01021{bottom:738.000000px;}
.y26_c01021{bottom:738.720000px;}
.y24_c01021{bottom:776.880000px;}
.y22_c01021{bottom:777.600000px;}
.y21_c01021{bottom:778.320000px;}
.y23_c01021{bottom:779.760000px;}
.y25_c01021{bottom:780.480000px;}
.y20_c01021{bottom:781.200000px;}
.y1f_c01021{bottom:833.040000px;}
.y1e_c01021{bottom:833.760000px;}
.y1d_c01021{bottom:834.480000px;}
.y1c_c01021{bottom:873.360000px;}
.y1b_c01021{bottom:874.080000px;}
.y19_c01021{bottom:875.520000px;}
.y18_c01021{bottom:876.240000px;}
.y17_c01021{bottom:876.960000px;}
.y1a_c01021{bottom:879.120000px;}
.y16_c01021{bottom:915.840000px;}
.y14_c01021{bottom:917.280000px;}
.y15_c01021{bottom:918.000000px;}
.y13_c01021{bottom:918.720000px;}
.y12_c01021{bottom:919.440000px;}
.y10_c01021{bottom:958.320000px;}
.yf_c01021{bottom:959.040000px;}
.y11_c01021{bottom:961.200000px;}
.yd_c01021{bottom:961.920000px;}
.ye_c01021{bottom:962.640000px;}
.yc_c01021{bottom:1001.520000px;}
.y8_c01021{bottom:1002.240000px;}
.ya_c01021{bottom:1003.680000px;}
.yb_c01021{bottom:1004.400000px;}
.y9_c01021{bottom:1005.120000px;}
.y5_c01021{bottom:1044.000000px;}
.y4_c01021{bottom:1044.720000px;}
.y2_c01021{bottom:1046.160000px;}
.y6_c01021{bottom:1046.880000px;}
.y7_c01021{bottom:1047.600000px;}
.y3_c01021{bottom:1048.320000px;}
.y1_c01021{bottom:1101.600000px;}
.hb_c01021{height:7.775156px;}
.ha_c01021{height:28.508906px;}
.h4_c01021{height:31.100625px;}
.hf_c01021{height:33.692344px;}
.h3_c01021{height:38.875781px;}
.h6_c01021{height:41.467500px;}
.h8_c01021{height:44.059219px;}
.h7_c01021{height:46.650937px;}
.hc_c01021{height:49.242656px;}
.hd_c01021{height:51.834375px;}
.h5_c01021{height:54.426094px;}
.h9_c01021{height:59.609531px;}
.he_c01021{height:62.201250px;}
.h2_c01021{height:64.792969px;}
.h11_c01021{height:69.976406px;}
.h12_c01021{height:80.343281px;}
.h10_c01021{height:85.526719px;}
.h1_c01021{height:1162.500000px;}
.h0_c01021{height:1162.800000px;}
.w1_c01021{width:787.500000px;}
.w0_c01021{width:787.680000px;}
.x0_c01021{left:0.000000px;}
.x20_c01021{left:59.040000px;}
.xa_c01021{left:60.480000px;}
.x19_c01021{left:92.880000px;}
.x21_c01021{left:102.960000px;}
.x2_c01021{left:114.480000px;}
.x3d_c01021{left:125.280000px;}
.x1a_c01021{left:136.080000px;}
.x34_c01021{left:146.880000px;}
.xb_c01021{left:157.680000px;}
.x2a_c01021{left:168.480000px;}
.x3_c01021{left:178.560000px;}
.x29_c01021{left:180.000000px;}
.xc_c01021{left:190.800000px;}
.x12_c01021{left:200.880000px;}
.x4c_c01021{left:202.320000px;}
.x4_c01021{left:211.680000px;}
.xd_c01021{left:221.040000px;}
.x3e_c01021{left:222.480000px;}
.x1b_c01021{left:223.920000px;}
.x22_c01021{left:233.280000px;}
.x35_c01021{left:244.080000px;}
.x50_c01021{left:253.440000px;}
.x46_c01021{left:254.880000px;}
.x23_c01021{left:264.240000px;}
.x4d_c01021{left:276.480000px;}
.x49_c01021{left:285.120000px;}
.x1c_c01021{left:287.280000px;}
.x2b_c01021{left:298.080000px;}
.x4e_c01021{left:308.160000px;}
.x47_c01021{left:309.600000px;}
.xe_c01021{left:318.960000px;}
.x24_c01021{left:330.480000px;}
.x13_c01021{left:339.840000px;}
.xf_c01021{left:351.360000px;}
.x14_c01021{left:361.440000px;}
.x25_c01021{left:362.880000px;}
.x4f_c01021{left:373.680000px;}
.x48_c01021{left:383.760000px;}
.x44_c01021{left:385.200000px;}
.x5_c01021{left:393.120000px;}
.x36_c01021{left:397.440000px;}
.x15_c01021{left:403.920000px;}
.x2e_c01021{left:405.360000px;}
.x2c_c01021{left:416.880000px;}
.x1d_c01021{left:426.960000px;}
.x2f_c01021{left:437.760000px;}
.x45_c01021{left:440.640000px;}
.x10_c01021{left:447.840000px;}
.x26_c01021{left:449.280000px;}
.x6_c01021{left:458.640000px;}
.x40_c01021{left:460.080000px;}
.x30_c01021{left:469.440000px;}
.x42_c01021{left:470.880000px;}
.x11_c01021{left:479.520000px;}
.x31_c01021{left:480.960000px;}
.x7_c01021{left:491.040000px;}
.x51_c01021{left:492.480000px;}
.x37_c01021{left:502.560000px;}
.x16_c01021{left:514.080000px;}
.x3c_c01021{left:523.440000px;}
.x4a_c01021{left:524.880000px;}
.x1e_c01021{left:534.960000px;}
.x17_c01021{left:544.320000px;}
.x8_c01021{left:546.480000px;}
.x32_c01021{left:557.280000px;}
.x1f_c01021{left:568.080000px;}
.x4b_c01021{left:578.880000px;}
.x18_c01021{left:589.680000px;}
.x38_c01021{left:591.120000px;}
.x41_c01021{left:601.200000px;}
.x33_c01021{left:611.280000px;}
.x27_c01021{left:622.080000px;}
.x3b_c01021{left:632.880000px;}
.x3f_c01021{left:642.960000px;}
.x9_c01021{left:644.400000px;}
.x2d_c01021{left:654.480000px;}
.x39_c01021{left:655.920000px;}
.x43_c01021{left:666.720000px;}
.x1_c01021{left:673.920000px;}
.x28_c01021{left:676.800000px;}
.x3a_c01021{left:687.600000px;}
@media print{
.v0_c01021{vertical-align:0.000000pt;}
.ls0_c01021{letter-spacing:0.000000pt;}
.ws1_c01021{word-spacing:0.000000pt;}
.ws0_c01021{word-spacing:4.369940pt;}
.fs9_c01021{font-size:7.680000pt;}
.fs8_c01021{font-size:28.160000pt;}
.fs2_c01021{font-size:30.720000pt;}
.fsd_c01021{font-size:33.280000pt;}
.fs1_c01021{font-size:38.400000pt;}
.fs4_c01021{font-size:40.960000pt;}
.fs6_c01021{font-size:43.520000pt;}
.fs5_c01021{font-size:46.080000pt;}
.fsa_c01021{font-size:48.640000pt;}
.fsb_c01021{font-size:51.200000pt;}
.fs3_c01021{font-size:53.760000pt;}
.fs7_c01021{font-size:58.880000pt;}
.fsc_c01021{font-size:61.440000pt;}
.fs0_c01021{font-size:64.000000pt;}
.fsf_c01021{font-size:69.120000pt;}
.fs10_c01021{font-size:79.360000pt;}
.fse_c01021{font-size:84.480000pt;}
.y0_c01021{bottom:0.000000pt;}
.y6a_c01021{bottom:33.920000pt;}
.y6d_c01021{bottom:35.840000pt;}
.y69_c01021{bottom:36.480000pt;}
.y6b_c01021{bottom:37.120000pt;}
.y6c_c01021{bottom:37.760000pt;}
.y65_c01021{bottom:72.960000pt;}
.y68_c01021{bottom:73.600000pt;}
.y63_c01021{bottom:74.240000pt;}
.y64_c01021{bottom:74.880000pt;}
.y66_c01021{bottom:75.520000pt;}
.y67_c01021{bottom:76.160000pt;}
.y62_c01021{bottom:112.000000pt;}
.y60_c01021{bottom:112.640000pt;}
.y5f_c01021{bottom:113.280000pt;}
.y61_c01021{bottom:113.920000pt;}
.y5a_c01021{bottom:158.720000pt;}
.y5e_c01021{bottom:159.360000pt;}
.y5b_c01021{bottom:160.000000pt;}
.y5c_c01021{bottom:160.640000pt;}
.y5d_c01021{bottom:161.280000pt;}
.y59_c01021{bottom:195.200000pt;}
.y57_c01021{bottom:195.840000pt;}
.y58_c01021{bottom:196.480000pt;}
.y55_c01021{bottom:197.760000pt;}
.y56_c01021{bottom:198.400000pt;}
.y54_c01021{bottom:233.600000pt;}
.y52_c01021{bottom:234.240000pt;}
.y53_c01021{bottom:234.880000pt;}
.y50_c01021{bottom:236.160000pt;}
.y51_c01021{bottom:236.800000pt;}
.y4e_c01021{bottom:272.000000pt;}
.y4d_c01021{bottom:272.640000pt;}
.y4b_c01021{bottom:273.920000pt;}
.y4c_c01021{bottom:274.560000pt;}
.y4f_c01021{bottom:275.200000pt;}
.y49_c01021{bottom:310.400000pt;}
.y4a_c01021{bottom:312.320000pt;}
.y46_c01021{bottom:348.160000pt;}
.y47_c01021{bottom:349.440000pt;}
.y48_c01021{bottom:350.080000pt;}
.y45_c01021{bottom:350.720000pt;}
.y44_c01021{bottom:388.480000pt;}
.y43_c01021{bottom:389.120000pt;}
.y41_c01021{bottom:416.640000pt;}
.y3f_c01021{bottom:424.960000pt;}
.y40_c01021{bottom:425.600000pt;}
.y42_c01021{bottom:426.880000pt;}
.y3e_c01021{bottom:427.520000pt;}
.y3d_c01021{bottom:462.720000pt;}
.y3b_c01021{bottom:465.280000pt;}
.y3c_c01021{bottom:465.920000pt;}
.y36_c01021{bottom:501.120000pt;}
.y39_c01021{bottom:501.760000pt;}
.y3a_c01021{bottom:503.040000pt;}
.y37_c01021{bottom:503.680000pt;}
.y38_c01021{bottom:504.320000pt;}
.y35_c01021{bottom:538.880000pt;}
.y33_c01021{bottom:539.520000pt;}
.y34_c01021{bottom:541.440000pt;}
.y2e_c01021{bottom:577.280000pt;}
.y30_c01021{bottom:577.920000pt;}
.y2f_c01021{bottom:578.560000pt;}
.y32_c01021{bottom:579.200000pt;}
.y31_c01021{bottom:579.840000pt;}
.y29_c01021{bottom:615.040000pt;}
.y2c_c01021{bottom:615.680000pt;}
.y2d_c01021{bottom:616.960000pt;}
.y2b_c01021{bottom:617.600000pt;}
.y2a_c01021{bottom:618.240000pt;}
.y27_c01021{bottom:655.360000pt;}
.y28_c01021{bottom:656.000000pt;}
.y26_c01021{bottom:656.640000pt;}
.y24_c01021{bottom:690.560000pt;}
.y22_c01021{bottom:691.200000pt;}
.y21_c01021{bottom:691.840000pt;}
.y23_c01021{bottom:693.120000pt;}
.y25_c01021{bottom:693.760000pt;}
.y20_c01021{bottom:694.400000pt;}
.y1f_c01021{bottom:740.480000pt;}
.y1e_c01021{bottom:741.120000pt;}
.y1d_c01021{bottom:741.760000pt;}
.y1c_c01021{bottom:776.320000pt;}
.y1b_c01021{bottom:776.960000pt;}
.y19_c01021{bottom:778.240000pt;}
.y18_c01021{bottom:778.880000pt;}
.y17_c01021{bottom:779.520000pt;}
.y1a_c01021{bottom:781.440000pt;}
.y16_c01021{bottom:814.080000pt;}
.y14_c01021{bottom:815.360000pt;}
.y15_c01021{bottom:816.000000pt;}
.y13_c01021{bottom:816.640000pt;}
.y12_c01021{bottom:817.280000pt;}
.y10_c01021{bottom:851.840000pt;}
.yf_c01021{bottom:852.480000pt;}
.y11_c01021{bottom:854.400000pt;}
.yd_c01021{bottom:855.040000pt;}
.ye_c01021{bottom:855.680000pt;}
.yc_c01021{bottom:890.240000pt;}
.y8_c01021{bottom:890.880000pt;}
.ya_c01021{bottom:892.160000pt;}
.yb_c01021{bottom:892.800000pt;}
.y9_c01021{bottom:893.440000pt;}
.y5_c01021{bottom:928.000000pt;}
.y4_c01021{bottom:928.640000pt;}
.y2_c01021{bottom:929.920000pt;}
.y6_c01021{bottom:930.560000pt;}
.y7_c01021{bottom:931.200000pt;}
.y3_c01021{bottom:931.840000pt;}
.y1_c01021{bottom:979.200000pt;}
.hb_c01021{height:6.911250pt;}
.ha_c01021{height:25.341250pt;}
.h4_c01021{height:27.645000pt;}
.hf_c01021{height:29.948750pt;}
.h3_c01021{height:34.556250pt;}
.h6_c01021{height:36.860000pt;}
.h8_c01021{height:39.163750pt;}
.h7_c01021{height:41.467500pt;}
.hc_c01021{height:43.771250pt;}
.hd_c01021{height:46.075000pt;}
.h5_c01021{height:48.378750pt;}
.h9_c01021{height:52.986250pt;}
.he_c01021{height:55.290000pt;}
.h2_c01021{height:57.593750pt;}
.h11_c01021{height:62.201250pt;}
.h12_c01021{height:71.416250pt;}
.h10_c01021{height:76.023750pt;}
.h1_c01021{height:1033.333333pt;}
.h0_c01021{height:1033.600000pt;}
.w1_c01021{width:700.000000pt;}
.w0_c01021{width:700.160000pt;}
.x0_c01021{left:0.000000pt;}
.x20_c01021{left:52.480000pt;}
.xa_c01021{left:53.760000pt;}
.x19_c01021{left:82.560000pt;}
.x21_c01021{left:91.520000pt;}
.x2_c01021{left:101.760000pt;}
.x3d_c01021{left:111.360000pt;}
.x1a_c01021{left:120.960000pt;}
.x34_c01021{left:130.560000pt;}
.xb_c01021{left:140.160000pt;}
.x2a_c01021{left:149.760000pt;}
.x3_c01021{left:158.720000pt;}
.x29_c01021{left:160.000000pt;}
.xc_c01021{left:169.600000pt;}
.x12_c01021{left:178.560000pt;}
.x4c_c01021{left:179.840000pt;}
.x4_c01021{left:188.160000pt;}
.xd_c01021{left:196.480000pt;}
.x3e_c01021{left:197.760000pt;}
.x1b_c01021{left:199.040000pt;}
.x22_c01021{left:207.360000pt;}
.x35_c01021{left:216.960000pt;}
.x50_c01021{left:225.280000pt;}
.x46_c01021{left:226.560000pt;}
.x23_c01021{left:234.880000pt;}
.x4d_c01021{left:245.760000pt;}
.x49_c01021{left:253.440000pt;}
.x1c_c01021{left:255.360000pt;}
.x2b_c01021{left:264.960000pt;}
.x4e_c01021{left:273.920000pt;}
.x47_c01021{left:275.200000pt;}
.xe_c01021{left:283.520000pt;}
.x24_c01021{left:293.760000pt;}
.x13_c01021{left:302.080000pt;}
.xf_c01021{left:312.320000pt;}
.x14_c01021{left:321.280000pt;}
.x25_c01021{left:322.560000pt;}
.x4f_c01021{left:332.160000pt;}
.x48_c01021{left:341.120000pt;}
.x44_c01021{left:342.400000pt;}
.x5_c01021{left:349.440000pt;}
.x36_c01021{left:353.280000pt;}
.x15_c01021{left:359.040000pt;}
.x2e_c01021{left:360.320000pt;}
.x2c_c01021{left:370.560000pt;}
.x1d_c01021{left:379.520000pt;}
.x2f_c01021{left:389.120000pt;}
.x45_c01021{left:391.680000pt;}
.x10_c01021{left:398.080000pt;}
.x26_c01021{left:399.360000pt;}
.x6_c01021{left:407.680000pt;}
.x40_c01021{left:408.960000pt;}
.x30_c01021{left:417.280000pt;}
.x42_c01021{left:418.560000pt;}
.x11_c01021{left:426.240000pt;}
.x31_c01021{left:427.520000pt;}
.x7_c01021{left:436.480000pt;}
.x51_c01021{left:437.760000pt;}
.x37_c01021{left:446.720000pt;}
.x16_c01021{left:456.960000pt;}
.x3c_c01021{left:465.280000pt;}
.x4a_c01021{left:466.560000pt;}
.x1e_c01021{left:475.520000pt;}
.x17_c01021{left:483.840000pt;}
.x8_c01021{left:485.760000pt;}
.x32_c01021{left:495.360000pt;}
.x1f_c01021{left:504.960000pt;}
.x4b_c01021{left:514.560000pt;}
.x18_c01021{left:524.160000pt;}
.x38_c01021{left:525.440000pt;}
.x41_c01021{left:534.400000pt;}
.x33_c01021{left:543.360000pt;}
.x27_c01021{left:552.960000pt;}
.x3b_c01021{left:562.560000pt;}
.x3f_c01021{left:571.520000pt;}
.x9_c01021{left:572.800000pt;}
.x2d_c01021{left:581.760000pt;}
.x39_c01021{left:583.040000pt;}
.x43_c01021{left:592.640000pt;}
.x1_c01021{left:599.040000pt;}
.x28_c01021{left:601.600000pt;}
.x3a_c01021{left:611.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b5753911a32c4d9253f89aa0.woff2')format("woff");}.ff1_c01022{font-family:ff1_c01022;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m47_c01022{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);}
.m25_c01022{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);}
.m54_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);}
.m51_c01022{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01022{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m6_c01022{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m53_c01022{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01022{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m50_c01022{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01022{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1_c01022{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);}
.m46_c01022{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m15_c01022{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m16_c01022{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);}
.m40_c01022{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);}
.m3f_c01022{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m45_c01022{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m23_c01022{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01022{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);}
.m2_c01022{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m19_c01022{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m43_c01022{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m44_c01022{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);}
.m3e_c01022{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);}
.m52_c01022{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);}
.m42_c01022{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m28_c01022{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);}
.m36_c01022{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01022{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01022{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);}
.ma_c01022{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01022{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m12_c01022{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m21_c01022{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);}
.m8_c01022{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m55_c01022{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);}
.m3a_c01022{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m33_c01022{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);}
.m4d_c01022{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);}
.m7_c01022{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.md_c01022{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m27_c01022{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);}
.m26_c01022{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01022{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m49_c01022{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01022{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.me_c01022{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.mb_c01022{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);}
.m48_c01022{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m35_c01022{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01022{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01022{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);}
.m31_c01022{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m0_c01022{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m17_c01022{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01022{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01022{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m14_c01022{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);}
.m24_c01022{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m4_c01022{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01022{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m5_c01022{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);}
.m39_c01022{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m4a_c01022{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m34_c01022{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m18_c01022{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01022{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);}
.m3_c01022{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m29_c01022{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m32_c01022{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01022{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);}
.m41_c01022{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.mf_c01022{transform:matrix(0.525000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525000,0.000000,0.000000,0.250000,0,0);}
.mc_c01022{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m10_c01022{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01022{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m38_c01022{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01022{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);}
.m9_c01022{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);}
.m22_c01022{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m11_c01022{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);}
.m20_c01022{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m30_c01022{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);}
.m37_c01022{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m13_c01022{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);}
.m4c_c01022{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);}
.v1_c01022{vertical-align:-2.880000px;}
.v0_c01022{vertical-align:0.000000px;}
.ls0_c01022{letter-spacing:0.000000px;}
.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;}
}
.ws1_c01022{word-spacing:0.000000px;}
.ws0_c01022{word-spacing:0.311040px;}
.fc0_c01022{color:transparent;}
.fs3_c01022{font-size:34.560000px;}
.fs8_c01022{font-size:43.200000px;}
.fs0_c01022{font-size:46.080000px;}
.fs5_c01022{font-size:48.960000px;}
.fs4_c01022{font-size:51.840000px;}
.fs7_c01022{font-size:54.720000px;}
.fs2_c01022{font-size:57.600000px;}
.fs1_c01022{font-size:60.480000px;}
.fs6_c01022{font-size:63.360000px;}
.fs9_c01022{font-size:66.240000px;}
.fsa_c01022{font-size:69.120000px;}
.y0_c01022{bottom:0.000000px;}
.y56_c01022{bottom:64.800000px;}
.y58_c01022{bottom:65.520000px;}
.y5b_c01022{bottom:66.960000px;}
.y55_c01022{bottom:86.400000px;}
.y5a_c01022{bottom:87.120000px;}
.y57_c01022{bottom:89.280000px;}
.y54_c01022{bottom:110.160000px;}
.y59_c01022{bottom:110.880000px;}
.y53_c01022{bottom:150.480000px;}
.y51_c01022{bottom:151.920000px;}
.y52_c01022{bottom:152.640000px;}
.y50_c01022{bottom:192.960000px;}
.y4d_c01022{bottom:195.120000px;}
.y4e_c01022{bottom:195.840000px;}
.y4f_c01022{bottom:196.560000px;}
.y4c_c01022{bottom:236.160000px;}
.y49_c01022{bottom:238.320000px;}
.y4a_c01022{bottom:239.040000px;}
.y4b_c01022{bottom:239.760000px;}
.y46_c01022{bottom:278.640000px;}
.y47_c01022{bottom:279.360000px;}
.y48_c01022{bottom:280.080000px;}
.y45_c01022{bottom:281.520000px;}
.y42_c01022{bottom:321.840000px;}
.y43_c01022{bottom:322.560000px;}
.y44_c01022{bottom:324.720000px;}
.y41_c01022{bottom:325.440000px;}
.y40_c01022{bottom:378.000000px;}
.y3f_c01022{bottom:418.320000px;}
.y3d_c01022{bottom:421.200000px;}
.y3e_c01022{bottom:421.920000px;}
.y3b_c01022{bottom:460.800000px;}
.y3c_c01022{bottom:461.520000px;}
.y39_c01022{bottom:463.680000px;}
.y3a_c01022{bottom:464.400000px;}
.y38_c01022{bottom:504.000000px;}
.y37_c01022{bottom:504.720000px;}
.y35_c01022{bottom:506.160000px;}
.y36_c01022{bottom:506.880000px;}
.y32_c01022{bottom:546.480000px;}
.y33_c01022{bottom:548.640000px;}
.y31_c01022{bottom:549.360000px;}
.y34_c01022{bottom:550.080000px;}
.y30_c01022{bottom:589.680000px;}
.y2f_c01022{bottom:591.840000px;}
.y2e_c01022{bottom:592.560000px;}
.y2d_c01022{bottom:642.960000px;}
.y2b_c01022{bottom:643.680000px;}
.y2c_c01022{bottom:645.840000px;}
.y29_c01022{bottom:685.440000px;}
.y2a_c01022{bottom:688.320000px;}
.y28_c01022{bottom:689.040000px;}
.y25_c01022{bottom:728.640000px;}
.y23_c01022{bottom:729.360000px;}
.y26_c01022{bottom:730.800000px;}
.y24_c01022{bottom:731.520000px;}
.y27_c01022{bottom:732.240000px;}
.y22_c01022{bottom:771.120000px;}
.y21_c01022{bottom:771.840000px;}
.y20_c01022{bottom:774.000000px;}
.y1f_c01022{bottom:774.720000px;}
.y1c_c01022{bottom:814.320000px;}
.y1d_c01022{bottom:816.480000px;}
.y1e_c01022{bottom:817.200000px;}
.y1b_c01022{bottom:817.920000px;}
.y1a_c01022{bottom:870.480000px;}
.y19_c01022{bottom:871.200000px;}
.y17_c01022{bottom:910.080000px;}
.y13_c01022{bottom:910.800000px;}
.y18_c01022{bottom:911.520000px;}
.y16_c01022{bottom:912.960000px;}
.y15_c01022{bottom:913.680000px;}
.y14_c01022{bottom:914.400000px;}
.yf_c01022{bottom:952.560000px;}
.y10_c01022{bottom:953.280000px;}
.y11_c01022{bottom:954.000000px;}
.ye_c01022{bottom:954.720000px;}
.y12_c01022{bottom:955.440000px;}
.yd_c01022{bottom:956.880000px;}
.yb_c01022{bottom:995.040000px;}
.y7_c01022{bottom:997.200000px;}
.ya_c01022{bottom:997.920000px;}
.y9_c01022{bottom:998.640000px;}
.yc_c01022{bottom:999.360000px;}
.y8_c01022{bottom:1000.080000px;}
.y5_c01022{bottom:1038.240000px;}
.y6_c01022{bottom:1038.960000px;}
.y2_c01022{bottom:1039.680000px;}
.y1_c01022{bottom:1040.400000px;}
.y4_c01022{bottom:1041.120000px;}
.y3_c01022{bottom:1041.840000px;}
.h5_c01022{height:31.100625px;}
.ha_c01022{height:38.875781px;}
.h2_c01022{height:41.467500px;}
.h7_c01022{height:44.059219px;}
.h6_c01022{height:46.650937px;}
.h9_c01022{height:49.242656px;}
.h4_c01022{height:51.834375px;}
.h3_c01022{height:54.426094px;}
.h8_c01022{height:57.017812px;}
.hb_c01022{height:59.609531px;}
.hc_c01022{height:62.201250px;}
.h1_c01022{height:1144.500000px;}
.h0_c01022{height:1144.800000px;}
.w0_c01022{width:781.200000px;}
.w1_c01022{width:781.500000px;}
.x0_c01022{left:0.000000px;}
.x48_c01022{left:54.720000px;}
.x1_c01022{left:56.160000px;}
.x16_c01022{left:57.600000px;}
.x1d_c01022{left:88.560000px;}
.x2a_c01022{left:97.920000px;}
.x2_c01022{left:99.360000px;}
.x36_c01022{left:110.880000px;}
.x44_c01022{left:121.680000px;}
.x17_c01022{left:131.760000px;}
.x10_c01022{left:143.280000px;}
.x30_c01022{left:153.360000px;}
.x2b_c01022{left:154.800000px;}
.x11_c01022{left:164.160000px;}
.x1e_c01022{left:166.320000px;}
.x31_c01022{left:175.680000px;}
.x3_c01022{left:185.040000px;}
.x1f_c01022{left:196.560000px;}
.x2d_c01022{left:206.640000px;}
.x12_c01022{left:208.800000px;}
.xc_c01022{left:218.880000px;}
.x4a_c01022{left:220.320000px;}
.x49_c01022{left:230.400000px;}
.x3e_c01022{left:239.760000px;}
.x39_c01022{left:241.200000px;}
.x2e_c01022{left:250.560000px;}
.x32_c01022{left:252.000000px;}
.x2c_c01022{left:261.360000px;}
.xd_c01022{left:272.160000px;}
.x4_c01022{left:282.960000px;}
.x4c_c01022{left:285.120000px;}
.x20_c01022{left:293.760000px;}
.x4b_c01022{left:295.920000px;}
.x3f_c01022{left:306.000000px;}
.x5_c01022{left:315.360000px;}
.x21_c01022{left:326.160000px;}
.x13_c01022{left:336.240000px;}
.x6_c01022{left:346.320000px;}
.x37_c01022{left:347.760000px;}
.x4e_c01022{left:349.920000px;}
.x14_c01022{left:357.840000px;}
.x4d_c01022{left:359.280000px;}
.x40_c01022{left:380.160000px;}
.xe_c01022{left:390.240000px;}
.x22_c01022{left:401.040000px;}
.x18_c01022{left:402.480000px;}
.x7_c01022{left:412.560000px;}
.x50_c01022{left:414.720000px;}
.x4f_c01022{left:416.160000px;}
.xf_c01022{left:423.360000px;}
.x26_c01022{left:434.160000px;}
.x42_c01022{left:444.960000px;}
.x8_c01022{left:455.040000px;}
.x33_c01022{left:456.480000px;}
.x19_c01022{left:465.120000px;}
.x27_c01022{left:466.560000px;}
.x25_c01022{left:477.360000px;}
.x1a_c01022{left:488.880000px;}
.x46_c01022{left:497.520000px;}
.x3a_c01022{left:498.960000px;}
.x23_c01022{left:509.760000px;}
.x45_c01022{left:511.200000px;}
.x28_c01022{left:519.840000px;}
.x41_c01022{left:521.280000px;}
.x24_c01022{left:531.360000px;}
.x3b_c01022{left:542.160000px;}
.x15_c01022{left:552.960000px;}
.x1b_c01022{left:563.760000px;}
.x9_c01022{left:574.560000px;}
.x47_c01022{left:586.080000px;}
.x29_c01022{left:607.680000px;}
.x34_c01022{left:609.120000px;}
.xa_c01022{left:617.760000px;}
.x43_c01022{left:619.200000px;}
.x35_c01022{left:629.280000px;}
.x3c_c01022{left:641.520000px;}
.xb_c01022{left:650.160000px;}
.x38_c01022{left:652.320000px;}
.x1c_c01022{left:661.680000px;}
.x2f_c01022{left:673.200000px;}
.x3d_c01022{left:684.720000px;}
@media print{
.v1_c01022{vertical-align:-2.560000pt;}
.v0_c01022{vertical-align:0.000000pt;}
.ls0_c01022{letter-spacing:0.000000pt;}
.ws1_c01022{word-spacing:0.000000pt;}
.ws0_c01022{word-spacing:0.276480pt;}
.fs3_c01022{font-size:30.720000pt;}
.fs8_c01022{font-size:38.400000pt;}
.fs0_c01022{font-size:40.960000pt;}
.fs5_c01022{font-size:43.520000pt;}
.fs4_c01022{font-size:46.080000pt;}
.fs7_c01022{font-size:48.640000pt;}
.fs2_c01022{font-size:51.200000pt;}
.fs1_c01022{font-size:53.760000pt;}
.fs6_c01022{font-size:56.320000pt;}
.fs9_c01022{font-size:58.880000pt;}
.fsa_c01022{font-size:61.440000pt;}
.y0_c01022{bottom:0.000000pt;}
.y56_c01022{bottom:57.600000pt;}
.y58_c01022{bottom:58.240000pt;}
.y5b_c01022{bottom:59.520000pt;}
.y55_c01022{bottom:76.800000pt;}
.y5a_c01022{bottom:77.440000pt;}
.y57_c01022{bottom:79.360000pt;}
.y54_c01022{bottom:97.920000pt;}
.y59_c01022{bottom:98.560000pt;}
.y53_c01022{bottom:133.760000pt;}
.y51_c01022{bottom:135.040000pt;}
.y52_c01022{bottom:135.680000pt;}
.y50_c01022{bottom:171.520000pt;}
.y4d_c01022{bottom:173.440000pt;}
.y4e_c01022{bottom:174.080000pt;}
.y4f_c01022{bottom:174.720000pt;}
.y4c_c01022{bottom:209.920000pt;}
.y49_c01022{bottom:211.840000pt;}
.y4a_c01022{bottom:212.480000pt;}
.y4b_c01022{bottom:213.120000pt;}
.y46_c01022{bottom:247.680000pt;}
.y47_c01022{bottom:248.320000pt;}
.y48_c01022{bottom:248.960000pt;}
.y45_c01022{bottom:250.240000pt;}
.y42_c01022{bottom:286.080000pt;}
.y43_c01022{bottom:286.720000pt;}
.y44_c01022{bottom:288.640000pt;}
.y41_c01022{bottom:289.280000pt;}
.y40_c01022{bottom:336.000000pt;}
.y3f_c01022{bottom:371.840000pt;}
.y3d_c01022{bottom:374.400000pt;}
.y3e_c01022{bottom:375.040000pt;}
.y3b_c01022{bottom:409.600000pt;}
.y3c_c01022{bottom:410.240000pt;}
.y39_c01022{bottom:412.160000pt;}
.y3a_c01022{bottom:412.800000pt;}
.y38_c01022{bottom:448.000000pt;}
.y37_c01022{bottom:448.640000pt;}
.y35_c01022{bottom:449.920000pt;}
.y36_c01022{bottom:450.560000pt;}
.y32_c01022{bottom:485.760000pt;}
.y33_c01022{bottom:487.680000pt;}
.y31_c01022{bottom:488.320000pt;}
.y34_c01022{bottom:488.960000pt;}
.y30_c01022{bottom:524.160000pt;}
.y2f_c01022{bottom:526.080000pt;}
.y2e_c01022{bottom:526.720000pt;}
.y2d_c01022{bottom:571.520000pt;}
.y2b_c01022{bottom:572.160000pt;}
.y2c_c01022{bottom:574.080000pt;}
.y29_c01022{bottom:609.280000pt;}
.y2a_c01022{bottom:611.840000pt;}
.y28_c01022{bottom:612.480000pt;}
.y25_c01022{bottom:647.680000pt;}
.y23_c01022{bottom:648.320000pt;}
.y26_c01022{bottom:649.600000pt;}
.y24_c01022{bottom:650.240000pt;}
.y27_c01022{bottom:650.880000pt;}
.y22_c01022{bottom:685.440000pt;}
.y21_c01022{bottom:686.080000pt;}
.y20_c01022{bottom:688.000000pt;}
.y1f_c01022{bottom:688.640000pt;}
.y1c_c01022{bottom:723.840000pt;}
.y1d_c01022{bottom:725.760000pt;}
.y1e_c01022{bottom:726.400000pt;}
.y1b_c01022{bottom:727.040000pt;}
.y1a_c01022{bottom:773.760000pt;}
.y19_c01022{bottom:774.400000pt;}
.y17_c01022{bottom:808.960000pt;}
.y13_c01022{bottom:809.600000pt;}
.y18_c01022{bottom:810.240000pt;}
.y16_c01022{bottom:811.520000pt;}
.y15_c01022{bottom:812.160000pt;}
.y14_c01022{bottom:812.800000pt;}
.yf_c01022{bottom:846.720000pt;}
.y10_c01022{bottom:847.360000pt;}
.y11_c01022{bottom:848.000000pt;}
.ye_c01022{bottom:848.640000pt;}
.y12_c01022{bottom:849.280000pt;}
.yd_c01022{bottom:850.560000pt;}
.yb_c01022{bottom:884.480000pt;}
.y7_c01022{bottom:886.400000pt;}
.ya_c01022{bottom:887.040000pt;}
.y9_c01022{bottom:887.680000pt;}
.yc_c01022{bottom:888.320000pt;}
.y8_c01022{bottom:888.960000pt;}
.y5_c01022{bottom:922.880000pt;}
.y6_c01022{bottom:923.520000pt;}
.y2_c01022{bottom:924.160000pt;}
.y1_c01022{bottom:924.800000pt;}
.y4_c01022{bottom:925.440000pt;}
.y3_c01022{bottom:926.080000pt;}
.h5_c01022{height:27.645000pt;}
.ha_c01022{height:34.556250pt;}
.h2_c01022{height:36.860000pt;}
.h7_c01022{height:39.163750pt;}
.h6_c01022{height:41.467500pt;}
.h9_c01022{height:43.771250pt;}
.h4_c01022{height:46.075000pt;}
.h3_c01022{height:48.378750pt;}
.h8_c01022{height:50.682500pt;}
.hb_c01022{height:52.986250pt;}
.hc_c01022{height:55.290000pt;}
.h1_c01022{height:1017.333333pt;}
.h0_c01022{height:1017.600000pt;}
.w0_c01022{width:694.400000pt;}
.w1_c01022{width:694.666667pt;}
.x0_c01022{left:0.000000pt;}
.x48_c01022{left:48.640000pt;}
.x1_c01022{left:49.920000pt;}
.x16_c01022{left:51.200000pt;}
.x1d_c01022{left:78.720000pt;}
.x2a_c01022{left:87.040000pt;}
.x2_c01022{left:88.320000pt;}
.x36_c01022{left:98.560000pt;}
.x44_c01022{left:108.160000pt;}
.x17_c01022{left:117.120000pt;}
.x10_c01022{left:127.360000pt;}
.x30_c01022{left:136.320000pt;}
.x2b_c01022{left:137.600000pt;}
.x11_c01022{left:145.920000pt;}
.x1e_c01022{left:147.840000pt;}
.x31_c01022{left:156.160000pt;}
.x3_c01022{left:164.480000pt;}
.x1f_c01022{left:174.720000pt;}
.x2d_c01022{left:183.680000pt;}
.x12_c01022{left:185.600000pt;}
.xc_c01022{left:194.560000pt;}
.x4a_c01022{left:195.840000pt;}
.x49_c01022{left:204.800000pt;}
.x3e_c01022{left:213.120000pt;}
.x39_c01022{left:214.400000pt;}
.x2e_c01022{left:222.720000pt;}
.x32_c01022{left:224.000000pt;}
.x2c_c01022{left:232.320000pt;}
.xd_c01022{left:241.920000pt;}
.x4_c01022{left:251.520000pt;}
.x4c_c01022{left:253.440000pt;}
.x20_c01022{left:261.120000pt;}
.x4b_c01022{left:263.040000pt;}
.x3f_c01022{left:272.000000pt;}
.x5_c01022{left:280.320000pt;}
.x21_c01022{left:289.920000pt;}
.x13_c01022{left:298.880000pt;}
.x6_c01022{left:307.840000pt;}
.x37_c01022{left:309.120000pt;}
.x4e_c01022{left:311.040000pt;}
.x14_c01022{left:318.080000pt;}
.x4d_c01022{left:319.360000pt;}
.x40_c01022{left:337.920000pt;}
.xe_c01022{left:346.880000pt;}
.x22_c01022{left:356.480000pt;}
.x18_c01022{left:357.760000pt;}
.x7_c01022{left:366.720000pt;}
.x50_c01022{left:368.640000pt;}
.x4f_c01022{left:369.920000pt;}
.xf_c01022{left:376.320000pt;}
.x26_c01022{left:385.920000pt;}
.x42_c01022{left:395.520000pt;}
.x8_c01022{left:404.480000pt;}
.x33_c01022{left:405.760000pt;}
.x19_c01022{left:413.440000pt;}
.x27_c01022{left:414.720000pt;}
.x25_c01022{left:424.320000pt;}
.x1a_c01022{left:434.560000pt;}
.x46_c01022{left:442.240000pt;}
.x3a_c01022{left:443.520000pt;}
.x23_c01022{left:453.120000pt;}
.x45_c01022{left:454.400000pt;}
.x28_c01022{left:462.080000pt;}
.x41_c01022{left:463.360000pt;}
.x24_c01022{left:472.320000pt;}
.x3b_c01022{left:481.920000pt;}
.x15_c01022{left:491.520000pt;}
.x1b_c01022{left:501.120000pt;}
.x9_c01022{left:510.720000pt;}
.x47_c01022{left:520.960000pt;}
.x29_c01022{left:540.160000pt;}
.x34_c01022{left:541.440000pt;}
.xa_c01022{left:549.120000pt;}
.x43_c01022{left:550.400000pt;}
.x35_c01022{left:559.360000pt;}
.x3c_c01022{left:570.240000pt;}
.xb_c01022{left:577.920000pt;}
.x38_c01022{left:579.840000pt;}
.x1c_c01022{left:588.160000pt;}
.x2f_c01022{left:598.400000pt;}
.x3d_c01022{left:608.640000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_dde03ac62cf39b1d0855af6c.woff2')format("woff");}.ff1_c01023{font-family:ff1_c01023;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3b_c01023{transform:matrix(0.225100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225100,0.000000,0.000000,0.250000,0,0);}
.m3c_c01023{transform:matrix(0.231525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231525,0.000000,0.000000,0.250000,0,0);}
.m1_c01023{transform:matrix(0.237925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237925,0.000000,0.000000,0.250000,0,0);}
.m14_c01023{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);}
.m36_c01023{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m13_c01023{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m9_c01023{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m10_c01023{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_c01023{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);}
.m39_c01023{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m15_c01023{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m50_c01023{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m7_c01023{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m4_c01023{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m16_c01023{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01023{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m8_c01023{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m6_c01023{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m5_c01023{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m0_c01023{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01023{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m17_c01023{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m51_c01023{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.md_c01023{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m3_c01023{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_c01023{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m12_c01023{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_c01023{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01023{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);}
.m30_c01023{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.mc_c01023{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m4a_c01023{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.me_c01023{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);}
.m35_c01023{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);}
.m26_c01023{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m33_c01023{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);}
.m19_c01023{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);}
.m23_c01023{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m18_c01023{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m40_c01023{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m20_c01023{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m2_c01023{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);}
.m28_c01023{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01023{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m43_c01023{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m27_c01023{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m34_c01023{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);}
.m46_c01023{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01023{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m41_c01023{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);}
.m1e_c01023{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);}
.m21_c01023{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m45_c01023{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m29_c01023{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01023{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);}
.m4e_c01023{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01023{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m49_c01023{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01023{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);}
.m2d_c01023{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01023{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01023{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01023{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);}
.m44_c01023{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m32_c01023{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m24_c01023{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m38_c01023{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);}
.m2a_c01023{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01023{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m25_c01023{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);}
.m48_c01023{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m31_c01023{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);}
.m37_c01023{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m47_c01023{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01023{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01023{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m22_c01023{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01023{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);}
.m2e_c01023{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);}
.m52_c01023{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m42_c01023{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01023{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01023{transform:matrix(0.832500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832500,0.000000,0.000000,0.250000,0,0);}
.v1_c01023{vertical-align:-2.880000px;}
.v0_c01023{vertical-align:0.000000px;}
.v2_c01023{vertical-align:8.640000px;}
.ls0_c01023{letter-spacing:0.000000px;}
.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;}
}
.ws1_c01023{word-spacing:-7.110960px;}
.ws3_c01023{word-spacing:0.000000px;}
.ws0_c01023{word-spacing:3.236400px;}
.ws2_c01023{word-spacing:6.539280px;}
.fc0_c01023{color:transparent;}
.fsc_c01023{font-size:31.680000px;}
.fsb_c01023{font-size:34.560000px;}
.fs3_c01023{font-size:43.200000px;}
.fs4_c01023{font-size:46.080000px;}
.fs8_c01023{font-size:48.960000px;}
.fs1_c01023{font-size:51.840000px;}
.fs6_c01023{font-size:54.720000px;}
.fs5_c01023{font-size:57.600000px;}
.fs2_c01023{font-size:60.480000px;}
.fs9_c01023{font-size:63.360000px;}
.fs7_c01023{font-size:66.240000px;}
.fsa_c01023{font-size:69.120000px;}
.fs0_c01023{font-size:74.880000px;}
.fse_c01023{font-size:100.800000px;}
.fsd_c01023{font-size:103.680000px;}
.y0_c01023{bottom:0.000000px;}
.y58_c01023{bottom:76.320000px;}
.y5a_c01023{bottom:77.040000px;}
.y5c_c01023{bottom:77.760000px;}
.y57_c01023{bottom:78.480000px;}
.y59_c01023{bottom:79.200000px;}
.y5d_c01023{bottom:79.920000px;}
.y5b_c01023{bottom:80.640000px;}
.y51_c01023{bottom:120.240000px;}
.y53_c01023{bottom:120.960000px;}
.y52_c01023{bottom:122.400000px;}
.y54_c01023{bottom:123.120000px;}
.y56_c01023{bottom:123.840000px;}
.y55_c01023{bottom:124.560000px;}
.y4e_c01023{bottom:162.720000px;}
.y4f_c01023{bottom:163.440000px;}
.y4d_c01023{bottom:165.600000px;}
.y50_c01023{bottom:166.320000px;}
.y4a_c01023{bottom:205.200000px;}
.y4b_c01023{bottom:205.920000px;}
.y4c_c01023{bottom:207.360000px;}
.y49_c01023{bottom:208.080000px;}
.y48_c01023{bottom:208.800000px;}
.y47_c01023{bottom:247.680000px;}
.y45_c01023{bottom:250.560000px;}
.y44_c01023{bottom:251.280000px;}
.y46_c01023{bottom:252.000000px;}
.y43_c01023{bottom:303.840000px;}
.y3f_c01023{bottom:344.160000px;}
.y40_c01023{bottom:344.880000px;}
.y42_c01023{bottom:347.040000px;}
.y41_c01023{bottom:347.760000px;}
.y3e_c01023{bottom:387.360000px;}
.y3d_c01023{bottom:388.080000px;}
.y3c_c01023{bottom:389.520000px;}
.y3b_c01023{bottom:390.240000px;}
.y3a_c01023{bottom:390.960000px;}
.y38_c01023{bottom:429.840000px;}
.y39_c01023{bottom:430.560000px;}
.y37_c01023{bottom:433.440000px;}
.y36_c01023{bottom:434.160000px;}
.y35_c01023{bottom:473.760000px;}
.y34_c01023{bottom:475.920000px;}
.y32_c01023{bottom:476.640000px;}
.y33_c01023{bottom:477.360000px;}
.y31_c01023{bottom:527.760000px;}
.y30_c01023{bottom:530.640000px;}
.y2f_c01023{bottom:570.240000px;}
.y2c_c01023{bottom:570.960000px;}
.y2e_c01023{bottom:573.120000px;}
.y2d_c01023{bottom:573.840000px;}
.y2a_c01023{bottom:612.720000px;}
.y28_c01023{bottom:613.440000px;}
.y2b_c01023{bottom:615.600000px;}
.y29_c01023{bottom:616.320000px;}
.y27_c01023{bottom:655.920000px;}
.y24_c01023{bottom:656.640000px;}
.y25_c01023{bottom:658.800000px;}
.y26_c01023{bottom:659.520000px;}
.y22_c01023{bottom:742.320000px;}
.y23_c01023{bottom:743.760000px;}
.y21_c01023{bottom:745.200000px;}
.y20_c01023{bottom:794.880000px;}
.y1f_c01023{bottom:797.040000px;}
.y1d_c01023{bottom:797.760000px;}
.y1e_c01023{bottom:798.480000px;}
.y1c_c01023{bottom:836.640000px;}
.y19_c01023{bottom:837.360000px;}
.y1b_c01023{bottom:839.520000px;}
.y1a_c01023{bottom:840.240000px;}
.y18_c01023{bottom:841.680000px;}
.y17_c01023{bottom:890.640000px;}
.y16_c01023{bottom:891.360000px;}
.y15_c01023{bottom:892.080000px;}
.y13_c01023{bottom:912.240000px;}
.y12_c01023{bottom:912.960000px;}
.y14_c01023{bottom:914.400000px;}
.y11_c01023{bottom:915.840000px;}
.yd_c01023{bottom:923.760000px;}
.y10_c01023{bottom:936.000000px;}
.yf_c01023{bottom:936.720000px;}
.ye_c01023{bottom:937.440000px;}
.yc_c01023{bottom:987.840000px;}
.yb_c01023{bottom:988.560000px;}
.y9_c01023{bottom:1008.720000px;}
.y8_c01023{bottom:1010.160000px;}
.y7_c01023{bottom:1010.880000px;}
.ya_c01023{bottom:1011.600000px;}
.y3_c01023{bottom:1020.960000px;}
.y6_c01023{bottom:1032.480000px;}
.y5_c01023{bottom:1033.200000px;}
.y4_c01023{bottom:1034.640000px;}
.y1_c01023{bottom:1089.360000px;}
.y2_c01023{bottom:1092.960000px;}
.he_c01023{height:28.508906px;}
.hd_c01023{height:31.100625px;}
.h5_c01023{height:38.875781px;}
.h6_c01023{height:41.467500px;}
.h11_c01023{height:43.770937px;}
.ha_c01023{height:44.059219px;}
.h3_c01023{height:46.650937px;}
.h8_c01023{height:49.242656px;}
.h7_c01023{height:51.834375px;}
.h4_c01023{height:54.426094px;}
.hb_c01023{height:57.017812px;}
.h9_c01023{height:59.609531px;}
.hc_c01023{height:62.201250px;}
.h2_c01023{height:67.384687px;}
.h10_c01023{height:90.710156px;}
.hf_c01023{height:93.301875px;}
.h0_c01023{height:1142.640000px;}
.h1_c01023{height:1143.000000px;}
.w0_c01023{width:776.880000px;}
.w1_c01023{width:777.000000px;}
.x0_c01023{left:0.000000px;}
.x26_c01023{left:51.840000px;}
.x3_c01023{left:54.000000px;}
.x32_c01023{left:63.360000px;}
.x3d_c01023{left:74.160000px;}
.x34_c01023{left:108.000000px;}
.x3e_c01023{left:117.360000px;}
.x47_c01023{left:139.680000px;}
.x27_c01023{left:150.480000px;}
.x21_c01023{left:160.560000px;}
.x14_c01023{left:162.000000px;}
.xb_c01023{left:173.520000px;}
.x15_c01023{left:182.880000px;}
.x9_c01023{left:184.320000px;}
.x4_c01023{left:194.400000px;}
.x3c_c01023{left:203.040000px;}
.x35_c01023{left:204.480000px;}
.x16_c01023{left:214.560000px;}
.x36_c01023{left:226.800000px;}
.x1b_c01023{left:236.160000px;}
.xc_c01023{left:238.320000px;}
.x17_c01023{left:246.960000px;}
.xa_c01023{left:248.400000px;}
.x43_c01023{left:257.760000px;}
.x5_c01023{left:259.200000px;}
.x1c_c01023{left:269.280000px;}
.x3f_c01023{left:279.360000px;}
.x22_c01023{left:290.160000px;}
.x28_c01023{left:291.600000px;}
.x1d_c01023{left:300.960000px;}
.xd_c01023{left:302.400000px;}
.x11_c01023{left:311.760000px;}
.x6_c01023{left:322.560000px;}
.x33_c01023{left:324.000000px;}
.x2b_c01023{left:325.440000px;}
.x1e_c01023{left:343.440000px;}
.x29_c01023{left:345.600000px;}
.x3a_c01023{left:365.040000px;}
.x2c_c01023{left:367.200000px;}
.x20_c01023{left:375.840000px;}
.xe_c01023{left:378.000000px;}
.x2d_c01023{left:386.640000px;}
.x7_c01023{left:388.080000px;}
.x1f_c01023{left:408.240000px;}
.x2e_c01023{left:409.680000px;}
.x48_c01023{left:432.000000px;}
.x2f_c01023{left:440.640000px;}
.xf_c01023{left:442.800000px;}
.x18_c01023{left:451.440000px;}
.x12_c01023{left:453.600000px;}
.x8_c01023{left:462.960000px;}
.x44_c01023{left:474.480000px;}
.x30_c01023{left:484.560000px;}
.x40_c01023{left:496.080000px;}
.x45_c01023{left:507.600000px;}
.x23_c01023{left:516.240000px;}
.x13_c01023{left:518.400000px;}
.x41_c01023{left:527.040000px;}
.x10_c01023{left:529.200000px;}
.x4a_c01023{left:538.560000px;}
.x2a_c01023{left:550.080000px;}
.x24_c01023{left:560.160000px;}
.x19_c01023{left:582.480000px;}
.x37_c01023{left:593.280000px;}
.x46_c01023{left:594.720000px;}
.x25_c01023{left:603.360000px;}
.x1a_c01023{left:626.400000px;}
.x31_c01023{left:635.760000px;}
.x38_c01023{left:637.200000px;}
.x3b_c01023{left:646.560000px;}
.x49_c01023{left:648.000000px;}
.x1_c01023{left:667.440000px;}
.x4b_c01023{left:669.600000px;}
.x42_c01023{left:671.040000px;}
.x39_c01023{left:680.400000px;}
.x2_c01023{left:707.040000px;}
@media print{
.v1_c01023{vertical-align:-2.560000pt;}
.v0_c01023{vertical-align:0.000000pt;}
.v2_c01023{vertical-align:7.680000pt;}
.ls0_c01023{letter-spacing:0.000000pt;}
.ws1_c01023{word-spacing:-6.320853pt;}
.ws3_c01023{word-spacing:0.000000pt;}
.ws0_c01023{word-spacing:2.876800pt;}
.ws2_c01023{word-spacing:5.812693pt;}
.fsc_c01023{font-size:28.160000pt;}
.fsb_c01023{font-size:30.720000pt;}
.fs3_c01023{font-size:38.400000pt;}
.fs4_c01023{font-size:40.960000pt;}
.fs8_c01023{font-size:43.520000pt;}
.fs1_c01023{font-size:46.080000pt;}
.fs6_c01023{font-size:48.640000pt;}
.fs5_c01023{font-size:51.200000pt;}
.fs2_c01023{font-size:53.760000pt;}
.fs9_c01023{font-size:56.320000pt;}
.fs7_c01023{font-size:58.880000pt;}
.fsa_c01023{font-size:61.440000pt;}
.fs0_c01023{font-size:66.560000pt;}
.fse_c01023{font-size:89.600000pt;}
.fsd_c01023{font-size:92.160000pt;}
.y0_c01023{bottom:0.000000pt;}
.y58_c01023{bottom:67.840000pt;}
.y5a_c01023{bottom:68.480000pt;}
.y5c_c01023{bottom:69.120000pt;}
.y57_c01023{bottom:69.760000pt;}
.y59_c01023{bottom:70.400000pt;}
.y5d_c01023{bottom:71.040000pt;}
.y5b_c01023{bottom:71.680000pt;}
.y51_c01023{bottom:106.880000pt;}
.y53_c01023{bottom:107.520000pt;}
.y52_c01023{bottom:108.800000pt;}
.y54_c01023{bottom:109.440000pt;}
.y56_c01023{bottom:110.080000pt;}
.y55_c01023{bottom:110.720000pt;}
.y4e_c01023{bottom:144.640000pt;}
.y4f_c01023{bottom:145.280000pt;}
.y4d_c01023{bottom:147.200000pt;}
.y50_c01023{bottom:147.840000pt;}
.y4a_c01023{bottom:182.400000pt;}
.y4b_c01023{bottom:183.040000pt;}
.y4c_c01023{bottom:184.320000pt;}
.y49_c01023{bottom:184.960000pt;}
.y48_c01023{bottom:185.600000pt;}
.y47_c01023{bottom:220.160000pt;}
.y45_c01023{bottom:222.720000pt;}
.y44_c01023{bottom:223.360000pt;}
.y46_c01023{bottom:224.000000pt;}
.y43_c01023{bottom:270.080000pt;}
.y3f_c01023{bottom:305.920000pt;}
.y40_c01023{bottom:306.560000pt;}
.y42_c01023{bottom:308.480000pt;}
.y41_c01023{bottom:309.120000pt;}
.y3e_c01023{bottom:344.320000pt;}
.y3d_c01023{bottom:344.960000pt;}
.y3c_c01023{bottom:346.240000pt;}
.y3b_c01023{bottom:346.880000pt;}
.y3a_c01023{bottom:347.520000pt;}
.y38_c01023{bottom:382.080000pt;}
.y39_c01023{bottom:382.720000pt;}
.y37_c01023{bottom:385.280000pt;}
.y36_c01023{bottom:385.920000pt;}
.y35_c01023{bottom:421.120000pt;}
.y34_c01023{bottom:423.040000pt;}
.y32_c01023{bottom:423.680000pt;}
.y33_c01023{bottom:424.320000pt;}
.y31_c01023{bottom:469.120000pt;}
.y30_c01023{bottom:471.680000pt;}
.y2f_c01023{bottom:506.880000pt;}
.y2c_c01023{bottom:507.520000pt;}
.y2e_c01023{bottom:509.440000pt;}
.y2d_c01023{bottom:510.080000pt;}
.y2a_c01023{bottom:544.640000pt;}
.y28_c01023{bottom:545.280000pt;}
.y2b_c01023{bottom:547.200000pt;}
.y29_c01023{bottom:547.840000pt;}
.y27_c01023{bottom:583.040000pt;}
.y24_c01023{bottom:583.680000pt;}
.y25_c01023{bottom:585.600000pt;}
.y26_c01023{bottom:586.240000pt;}
.y22_c01023{bottom:659.840000pt;}
.y23_c01023{bottom:661.120000pt;}
.y21_c01023{bottom:662.400000pt;}
.y20_c01023{bottom:706.560000pt;}
.y1f_c01023{bottom:708.480000pt;}
.y1d_c01023{bottom:709.120000pt;}
.y1e_c01023{bottom:709.760000pt;}
.y1c_c01023{bottom:743.680000pt;}
.y19_c01023{bottom:744.320000pt;}
.y1b_c01023{bottom:746.240000pt;}
.y1a_c01023{bottom:746.880000pt;}
.y18_c01023{bottom:748.160000pt;}
.y17_c01023{bottom:791.680000pt;}
.y16_c01023{bottom:792.320000pt;}
.y15_c01023{bottom:792.960000pt;}
.y13_c01023{bottom:810.880000pt;}
.y12_c01023{bottom:811.520000pt;}
.y14_c01023{bottom:812.800000pt;}
.y11_c01023{bottom:814.080000pt;}
.yd_c01023{bottom:821.120000pt;}
.y10_c01023{bottom:832.000000pt;}
.yf_c01023{bottom:832.640000pt;}
.ye_c01023{bottom:833.280000pt;}
.yc_c01023{bottom:878.080000pt;}
.yb_c01023{bottom:878.720000pt;}
.y9_c01023{bottom:896.640000pt;}
.y8_c01023{bottom:897.920000pt;}
.y7_c01023{bottom:898.560000pt;}
.ya_c01023{bottom:899.200000pt;}
.y3_c01023{bottom:907.520000pt;}
.y6_c01023{bottom:917.760000pt;}
.y5_c01023{bottom:918.400000pt;}
.y4_c01023{bottom:919.680000pt;}
.y1_c01023{bottom:968.320000pt;}
.y2_c01023{bottom:971.520000pt;}
.he_c01023{height:25.341250pt;}
.hd_c01023{height:27.645000pt;}
.h5_c01023{height:34.556250pt;}
.h6_c01023{height:36.860000pt;}
.h11_c01023{height:38.907500pt;}
.ha_c01023{height:39.163750pt;}
.h3_c01023{height:41.467500pt;}
.h8_c01023{height:43.771250pt;}
.h7_c01023{height:46.075000pt;}
.h4_c01023{height:48.378750pt;}
.hb_c01023{height:50.682500pt;}
.h9_c01023{height:52.986250pt;}
.hc_c01023{height:55.290000pt;}
.h2_c01023{height:59.897500pt;}
.h10_c01023{height:80.631250pt;}
.hf_c01023{height:82.935000pt;}
.h0_c01023{height:1015.680000pt;}
.h1_c01023{height:1016.000000pt;}
.w0_c01023{width:690.560000pt;}
.w1_c01023{width:690.666667pt;}
.x0_c01023{left:0.000000pt;}
.x26_c01023{left:46.080000pt;}
.x3_c01023{left:48.000000pt;}
.x32_c01023{left:56.320000pt;}
.x3d_c01023{left:65.920000pt;}
.x34_c01023{left:96.000000pt;}
.x3e_c01023{left:104.320000pt;}
.x47_c01023{left:124.160000pt;}
.x27_c01023{left:133.760000pt;}
.x21_c01023{left:142.720000pt;}
.x14_c01023{left:144.000000pt;}
.xb_c01023{left:154.240000pt;}
.x15_c01023{left:162.560000pt;}
.x9_c01023{left:163.840000pt;}
.x4_c01023{left:172.800000pt;}
.x3c_c01023{left:180.480000pt;}
.x35_c01023{left:181.760000pt;}
.x16_c01023{left:190.720000pt;}
.x36_c01023{left:201.600000pt;}
.x1b_c01023{left:209.920000pt;}
.xc_c01023{left:211.840000pt;}
.x17_c01023{left:219.520000pt;}
.xa_c01023{left:220.800000pt;}
.x43_c01023{left:229.120000pt;}
.x5_c01023{left:230.400000pt;}
.x1c_c01023{left:239.360000pt;}
.x3f_c01023{left:248.320000pt;}
.x22_c01023{left:257.920000pt;}
.x28_c01023{left:259.200000pt;}
.x1d_c01023{left:267.520000pt;}
.xd_c01023{left:268.800000pt;}
.x11_c01023{left:277.120000pt;}
.x6_c01023{left:286.720000pt;}
.x33_c01023{left:288.000000pt;}
.x2b_c01023{left:289.280000pt;}
.x1e_c01023{left:305.280000pt;}
.x29_c01023{left:307.200000pt;}
.x3a_c01023{left:324.480000pt;}
.x2c_c01023{left:326.400000pt;}
.x20_c01023{left:334.080000pt;}
.xe_c01023{left:336.000000pt;}
.x2d_c01023{left:343.680000pt;}
.x7_c01023{left:344.960000pt;}
.x1f_c01023{left:362.880000pt;}
.x2e_c01023{left:364.160000pt;}
.x48_c01023{left:384.000000pt;}
.x2f_c01023{left:391.680000pt;}
.xf_c01023{left:393.600000pt;}
.x18_c01023{left:401.280000pt;}
.x12_c01023{left:403.200000pt;}
.x8_c01023{left:411.520000pt;}
.x44_c01023{left:421.760000pt;}
.x30_c01023{left:430.720000pt;}
.x40_c01023{left:440.960000pt;}
.x45_c01023{left:451.200000pt;}
.x23_c01023{left:458.880000pt;}
.x13_c01023{left:460.800000pt;}
.x41_c01023{left:468.480000pt;}
.x10_c01023{left:470.400000pt;}
.x4a_c01023{left:478.720000pt;}
.x2a_c01023{left:488.960000pt;}
.x24_c01023{left:497.920000pt;}
.x19_c01023{left:517.760000pt;}
.x37_c01023{left:527.360000pt;}
.x46_c01023{left:528.640000pt;}
.x25_c01023{left:536.320000pt;}
.x1a_c01023{left:556.800000pt;}
.x31_c01023{left:565.120000pt;}
.x38_c01023{left:566.400000pt;}
.x3b_c01023{left:574.720000pt;}
.x49_c01023{left:576.000000pt;}
.x1_c01023{left:593.280000pt;}
.x4b_c01023{left:595.200000pt;}
.x42_c01023{left:596.480000pt;}
.x39_c01023{left:604.800000pt;}
.x2_c01023{left:628.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_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_7a89d3cd265a807c72113553.woff2')format("woff");}.ff1_c01024{font-family:ff1_c01024;line-height:1.109863;font-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_c01024{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);}
.m37_c01024{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01024{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);}
.m35_c01024{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01024{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m39_c01024{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mc_c01024{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01024{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m16_c01024{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01024{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m36_c01024{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m30_c01024{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01024{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m33_c01024{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m32_c01024{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01024{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m0_c01024{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m53_c01024{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m25_c01024{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01024{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m29_c01024{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01024{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m12_c01024{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01024{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);}
.m38_c01024{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m4_c01024{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m3_c01024{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);}
.m28_c01024{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01024{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m8_c01024{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01024{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);}
.md_c01024{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m1_c01024{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m49_c01024{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m20_c01024{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m27_c01024{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01024{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);}
.m24_c01024{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m34_c01024{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);}
.m26_c01024{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m9_c01024{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m47_c01024{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01024{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m48_c01024{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_c01024{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.me_c01024{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m46_c01024{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);}
.m4a_c01024{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);}
.m10_c01024{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m18_c01024{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m23_c01024{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);}
.m40_c01024{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01024{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m11_c01024{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01024{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);}
.m51_c01024{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m17_c01024{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m6_c01024{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01024{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01024{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m45_c01024{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);}
.m14_c01024{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);}
.m43_c01024{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m52_c01024{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m13_c01024{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m55_c01024{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.mb_c01024{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);}
.m4d_c01024{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m50_c01024{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m21_c01024{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01024{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);}
.m4e_c01024{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);}
.m41_c01024{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);}
.m2a_c01024{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.mf_c01024{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01024{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m15_c01024{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m2_c01024{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);}
.m7_c01024{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_c01024{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m19_c01024{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m54_c01024{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m42_c01024{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m5_c01024{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01024{transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);}
.m31_c01024{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);}
.v1_c01024{vertical-align:-2.880000px;}
.v0_c01024{vertical-align:0.000000px;}
.v2_c01024{vertical-align:8.640000px;}
.ls1_c01024{letter-spacing:0.000000px;}
.ls0_c01024{letter-spacing:24.606000px;}
.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;}
}
.ws3_c01024{word-spacing:-5.719920px;}
.ws0_c01024{word-spacing:-4.921440px;}
.ws4_c01024{word-spacing:0.000000px;}
.ws2_c01024{word-spacing:0.262800px;}
.ws1_c01024{word-spacing:45.540127px;}
.fc0_c01024{color:transparent;}
.fsc_c01024{font-size:17.280000px;}
.fsd_c01024{font-size:20.160000px;}
.fse_c01024{font-size:23.040000px;}
.fsa_c01024{font-size:31.680000px;}
.fs2_c01024{font-size:34.560000px;}
.fs8_c01024{font-size:43.200000px;}
.fs5_c01024{font-size:46.080000px;}
.fs3_c01024{font-size:48.960000px;}
.fs4_c01024{font-size:51.840000px;}
.fs6_c01024{font-size:54.720000px;}
.fs1_c01024{font-size:57.600000px;}
.fs9_c01024{font-size:60.480000px;}
.fs7_c01024{font-size:63.360000px;}
.fs0_c01024{font-size:66.240000px;}
.fsb_c01024{font-size:69.120000px;}
.y0_c01024{bottom:0.000000px;}
.y63_c01024{bottom:56.880000px;}
.y64_c01024{bottom:57.600000px;}
.y65_c01024{bottom:58.320000px;}
.y66_c01024{bottom:60.480000px;}
.y62_c01024{bottom:101.520000px;}
.y5f_c01024{bottom:102.960000px;}
.y60_c01024{bottom:103.680000px;}
.y5e_c01024{bottom:104.400000px;}
.y61_c01024{bottom:105.120000px;}
.y5a_c01024{bottom:144.720000px;}
.y5b_c01024{bottom:146.880000px;}
.y5d_c01024{bottom:147.600000px;}
.y5c_c01024{bottom:148.320000px;}
.y58_c01024{bottom:187.200000px;}
.y59_c01024{bottom:187.920000px;}
.y56_c01024{bottom:190.080000px;}
.y57_c01024{bottom:190.800000px;}
.y52_c01024{bottom:230.400000px;}
.y54_c01024{bottom:231.120000px;}
.y51_c01024{bottom:232.560000px;}
.y53_c01024{bottom:233.280000px;}
.y55_c01024{bottom:234.720000px;}
.y4e_c01024{bottom:273.600000px;}
.y4d_c01024{bottom:275.760000px;}
.y4f_c01024{bottom:276.480000px;}
.y50_c01024{bottom:277.200000px;}
.y4b_c01024{bottom:327.600000px;}
.y4c_c01024{bottom:329.760000px;}
.y48_c01024{bottom:369.360000px;}
.y47_c01024{bottom:370.080000px;}
.y46_c01024{bottom:370.800000px;}
.y4a_c01024{bottom:371.520000px;}
.y49_c01024{bottom:372.960000px;}
.y45_c01024{bottom:411.840000px;}
.y43_c01024{bottom:412.560000px;}
.y44_c01024{bottom:414.720000px;}
.y42_c01024{bottom:415.440000px;}
.y40_c01024{bottom:467.280000px;}
.y41_c01024{bottom:468.720000px;}
.y3a_c01024{bottom:487.440000px;}
.y3e_c01024{bottom:488.160000px;}
.y3b_c01024{bottom:488.880000px;}
.y3c_c01024{bottom:489.600000px;}
.y3d_c01024{bottom:490.320000px;}
.y39_c01024{bottom:491.040000px;}
.y3f_c01024{bottom:493.200000px;}
.y37_c01024{bottom:509.040000px;}
.y38_c01024{bottom:511.200000px;}
.y36_c01024{bottom:511.920000px;}
.y35_c01024{bottom:512.640000px;}
.y33_c01024{bottom:551.520000px;}
.y32_c01024{bottom:552.240000px;}
.y34_c01024{bottom:553.680000px;}
.y2f_c01024{bottom:573.840000px;}
.y30_c01024{bottom:574.560000px;}
.y2e_c01024{bottom:576.720000px;}
.y31_c01024{bottom:579.600000px;}
.y2d_c01024{bottom:594.720000px;}
.y2c_c01024{bottom:598.320000px;}
.y2a_c01024{bottom:638.640000px;}
.y2b_c01024{bottom:639.360000px;}
.y25_c01024{bottom:658.800000px;}
.y26_c01024{bottom:659.520000px;}
.y27_c01024{bottom:660.240000px;}
.y28_c01024{bottom:662.400000px;}
.y24_c01024{bottom:663.120000px;}
.y29_c01024{bottom:666.000000px;}
.y22_c01024{bottom:680.400000px;}
.y21_c01024{bottom:684.000000px;}
.y23_c01024{bottom:684.720000px;}
.y20_c01024{bottom:712.800000px;}
.y1e_c01024{bottom:713.520000px;}
.y1f_c01024{bottom:715.680000px;}
.y1d_c01024{bottom:756.000000px;}
.y1c_c01024{bottom:758.880000px;}
.y1a_c01024{bottom:759.600000px;}
.y1b_c01024{bottom:760.320000px;}
.y19_c01024{bottom:798.480000px;}
.y18_c01024{bottom:801.360000px;}
.y17_c01024{bottom:802.800000px;}
.y15_c01024{bottom:853.200000px;}
.y16_c01024{bottom:854.640000px;}
.y14_c01024{bottom:856.080000px;}
.y13_c01024{bottom:856.800000px;}
.y10_c01024{bottom:894.960000px;}
.y12_c01024{bottom:897.120000px;}
.y11_c01024{bottom:897.840000px;}
.yf_c01024{bottom:898.560000px;}
.ye_c01024{bottom:899.280000px;}
.y9_c01024{bottom:938.160000px;}
.yb_c01024{bottom:938.880000px;}
.yd_c01024{bottom:939.600000px;}
.yc_c01024{bottom:940.320000px;}
.ya_c01024{bottom:941.760000px;}
.y8_c01024{bottom:979.200000px;}
.y7_c01024{bottom:982.080000px;}
.y6_c01024{bottom:982.800000px;}
.y5_c01024{bottom:983.520000px;}
.y4_c01024{bottom:984.240000px;}
.y2_c01024{bottom:1034.640000px;}
.y1_c01024{bottom:1035.360000px;}
.y3_c01024{bottom:1036.080000px;}
.he_c01024{height:15.550313px;}
.hf_c01024{height:18.142031px;}
.h10_c01024{height:20.733750px;}
.hc_c01024{height:28.508906px;}
.h4_c01024{height:31.100625px;}
.ha_c01024{height:38.875781px;}
.h7_c01024{height:41.467500px;}
.h5_c01024{height:44.059219px;}
.h6_c01024{height:46.650937px;}
.h8_c01024{height:49.242656px;}
.h3_c01024{height:51.834375px;}
.hb_c01024{height:54.426094px;}
.h11_c01024{height:55.290937px;}
.h9_c01024{height:57.017812px;}
.h2_c01024{height:59.609531px;}
.hd_c01024{height:62.201250px;}
.h1_c01024{height:1151.250000px;}
.h0_c01024{height:1151.280000px;}
.w1_c01024{width:789.750000px;}
.w0_c01024{width:789.840000px;}
.x0_c01024{left:0.000000px;}
.x1_c01024{left:61.200000px;}
.x3f_c01024{left:92.880000px;}
.xc_c01024{left:94.320000px;}
.xd_c01024{left:114.480000px;}
.x2b_c01024{left:115.920000px;}
.x1f_c01024{left:125.280000px;}
.xe_c01024{left:137.520000px;}
.x45_c01024{left:147.600000px;}
.x43_c01024{left:149.040000px;}
.x6_c01024{left:169.199955px;}
.x39_c01024{left:180.000000px;}
.x48_c01024{left:183.600000px;}
.x23_c01024{left:190.080000px;}
.x16_c01024{left:201.600000px;}
.x2c_c01024{left:203.040000px;}
.x7_c01024{left:210.960000px;}
.x20_c01024{left:212.400000px;}
.x2_c01024{left:222.480000px;}
.x17_c01024{left:233.280000px;}
.x3c_c01024{left:234.720000px;}
.x21_c01024{left:244.080000px;}
.x8_c01024{left:255.600000px;}
.x18_c01024{left:264.960000px;}
.x24_c01024{left:267.120000px;}
.x35_c01024{left:276.480000px;}
.x25_c01024{left:298.800000px;}
.x49_c01024{left:300.240000px;}
.xf_c01024{left:308.880000px;}
.x22_c01024{left:320.400000px;}
.x44_c01024{left:330.480000px;}
.x3_c01024{left:339.120000px;}
.x19_c01024{left:341.280000px;}
.x10_c01024{left:352.800000px;}
.x47_c01024{left:363.600000px;}
.x1a_c01024{left:372.960000px;}
.x40_c01024{left:375.120000px;}
.x11_c01024{left:384.480000px;}
.x3d_c01024{left:395.280000px;}
.x4_c01024{left:405.360000px;}
.x37_c01024{left:406.800000px;}
.x1b_c01024{left:426.960000px;}
.x5_c01024{left:439.200000px;}
.x30_c01024{left:440.640000px;}
.x27_c01024{left:449.280000px;}
.x2d_c01024{left:450.720000px;}
.x1c_c01024{left:460.080000px;}
.x33_c01024{left:461.520000px;}
.x41_c01024{left:470.880000px;}
.x9_c01024{left:480.960000px;}
.x3a_c01024{left:483.120000px;}
.x12_c01024{left:492.480000px;}
.x31_c01024{left:505.440000px;}
.x28_c01024{left:514.080000px;}
.x36_c01024{left:516.240000px;}
.x29_c01024{left:525.600000px;}
.xa_c01024{left:535.680000px;}
.x3e_c01024{left:537.120000px;}
.x1d_c01024{left:546.480000px;}
.x34_c01024{left:558.000000px;}
.x13_c01024{left:568.080000px;}
.x32_c01024{left:570.240000px;}
.x2e_c01024{left:580.320000px;}
.x2a_c01024{left:591.840000px;}
.x14_c01024{left:601.200000px;}
.x4a_c01024{left:602.640000px;}
.x38_c01024{left:612.000000px;}
.xb_c01024{left:622.080000px;}
.x46_c01024{left:623.520000px;}
.x26_c01024{left:634.320000px;}
.x1e_c01024{left:643.680000px;}
.x15_c01024{left:645.120000px;}
.x2f_c01024{left:656.640000px;}
.x42_c01024{left:666.720000px;}
.x3b_c01024{left:678.240000px;}
@media print{
.v1_c01024{vertical-align:-2.560000pt;}
.v0_c01024{vertical-align:0.000000pt;}
.v2_c01024{vertical-align:7.680000pt;}
.ls1_c01024{letter-spacing:0.000000pt;}
.ls0_c01024{letter-spacing:21.872000pt;}
.ws3_c01024{word-spacing:-5.084373pt;}
.ws0_c01024{word-spacing:-4.374613pt;}
.ws4_c01024{word-spacing:0.000000pt;}
.ws2_c01024{word-spacing:0.233600pt;}
.ws1_c01024{word-spacing:40.480113pt;}
.fsc_c01024{font-size:15.360000pt;}
.fsd_c01024{font-size:17.920000pt;}
.fse_c01024{font-size:20.480000pt;}
.fsa_c01024{font-size:28.160000pt;}
.fs2_c01024{font-size:30.720000pt;}
.fs8_c01024{font-size:38.400000pt;}
.fs5_c01024{font-size:40.960000pt;}
.fs3_c01024{font-size:43.520000pt;}
.fs4_c01024{font-size:46.080000pt;}
.fs6_c01024{font-size:48.640000pt;}
.fs1_c01024{font-size:51.200000pt;}
.fs9_c01024{font-size:53.760000pt;}
.fs7_c01024{font-size:56.320000pt;}
.fs0_c01024{font-size:58.880000pt;}
.fsb_c01024{font-size:61.440000pt;}
.y0_c01024{bottom:0.000000pt;}
.y63_c01024{bottom:50.560000pt;}
.y64_c01024{bottom:51.200000pt;}
.y65_c01024{bottom:51.840000pt;}
.y66_c01024{bottom:53.760000pt;}
.y62_c01024{bottom:90.240000pt;}
.y5f_c01024{bottom:91.520000pt;}
.y60_c01024{bottom:92.160000pt;}
.y5e_c01024{bottom:92.800000pt;}
.y61_c01024{bottom:93.440000pt;}
.y5a_c01024{bottom:128.640000pt;}
.y5b_c01024{bottom:130.560000pt;}
.y5d_c01024{bottom:131.200000pt;}
.y5c_c01024{bottom:131.840000pt;}
.y58_c01024{bottom:166.400000pt;}
.y59_c01024{bottom:167.040000pt;}
.y56_c01024{bottom:168.960000pt;}
.y57_c01024{bottom:169.600000pt;}
.y52_c01024{bottom:204.800000pt;}
.y54_c01024{bottom:205.440000pt;}
.y51_c01024{bottom:206.720000pt;}
.y53_c01024{bottom:207.360000pt;}
.y55_c01024{bottom:208.640000pt;}
.y4e_c01024{bottom:243.200000pt;}
.y4d_c01024{bottom:245.120000pt;}
.y4f_c01024{bottom:245.760000pt;}
.y50_c01024{bottom:246.400000pt;}
.y4b_c01024{bottom:291.200000pt;}
.y4c_c01024{bottom:293.120000pt;}
.y48_c01024{bottom:328.320000pt;}
.y47_c01024{bottom:328.960000pt;}
.y46_c01024{bottom:329.600000pt;}
.y4a_c01024{bottom:330.240000pt;}
.y49_c01024{bottom:331.520000pt;}
.y45_c01024{bottom:366.080000pt;}
.y43_c01024{bottom:366.720000pt;}
.y44_c01024{bottom:368.640000pt;}
.y42_c01024{bottom:369.280000pt;}
.y40_c01024{bottom:415.360000pt;}
.y41_c01024{bottom:416.640000pt;}
.y3a_c01024{bottom:433.280000pt;}
.y3e_c01024{bottom:433.920000pt;}
.y3b_c01024{bottom:434.560000pt;}
.y3c_c01024{bottom:435.200000pt;}
.y3d_c01024{bottom:435.840000pt;}
.y39_c01024{bottom:436.480000pt;}
.y3f_c01024{bottom:438.400000pt;}
.y37_c01024{bottom:452.480000pt;}
.y38_c01024{bottom:454.400000pt;}
.y36_c01024{bottom:455.040000pt;}
.y35_c01024{bottom:455.680000pt;}
.y33_c01024{bottom:490.240000pt;}
.y32_c01024{bottom:490.880000pt;}
.y34_c01024{bottom:492.160000pt;}
.y2f_c01024{bottom:510.080000pt;}
.y30_c01024{bottom:510.720000pt;}
.y2e_c01024{bottom:512.640000pt;}
.y31_c01024{bottom:515.200000pt;}
.y2d_c01024{bottom:528.640000pt;}
.y2c_c01024{bottom:531.840000pt;}
.y2a_c01024{bottom:567.680000pt;}
.y2b_c01024{bottom:568.320000pt;}
.y25_c01024{bottom:585.600000pt;}
.y26_c01024{bottom:586.240000pt;}
.y27_c01024{bottom:586.880000pt;}
.y28_c01024{bottom:588.800000pt;}
.y24_c01024{bottom:589.440000pt;}
.y29_c01024{bottom:592.000000pt;}
.y22_c01024{bottom:604.800000pt;}
.y21_c01024{bottom:608.000000pt;}
.y23_c01024{bottom:608.640000pt;}
.y20_c01024{bottom:633.600000pt;}
.y1e_c01024{bottom:634.240000pt;}
.y1f_c01024{bottom:636.160000pt;}
.y1d_c01024{bottom:672.000000pt;}
.y1c_c01024{bottom:674.560000pt;}
.y1a_c01024{bottom:675.200000pt;}
.y1b_c01024{bottom:675.840000pt;}
.y19_c01024{bottom:709.760000pt;}
.y18_c01024{bottom:712.320000pt;}
.y17_c01024{bottom:713.600000pt;}
.y15_c01024{bottom:758.400000pt;}
.y16_c01024{bottom:759.680000pt;}
.y14_c01024{bottom:760.960000pt;}
.y13_c01024{bottom:761.600000pt;}
.y10_c01024{bottom:795.520000pt;}
.y12_c01024{bottom:797.440000pt;}
.y11_c01024{bottom:798.080000pt;}
.yf_c01024{bottom:798.720000pt;}
.ye_c01024{bottom:799.360000pt;}
.y9_c01024{bottom:833.920000pt;}
.yb_c01024{bottom:834.560000pt;}
.yd_c01024{bottom:835.200000pt;}
.yc_c01024{bottom:835.840000pt;}
.ya_c01024{bottom:837.120000pt;}
.y8_c01024{bottom:870.400000pt;}
.y7_c01024{bottom:872.960000pt;}
.y6_c01024{bottom:873.600000pt;}
.y5_c01024{bottom:874.240000pt;}
.y4_c01024{bottom:874.880000pt;}
.y2_c01024{bottom:919.680000pt;}
.y1_c01024{bottom:920.320000pt;}
.y3_c01024{bottom:920.960000pt;}
.he_c01024{height:13.822500pt;}
.hf_c01024{height:16.126250pt;}
.h10_c01024{height:18.430000pt;}
.hc_c01024{height:25.341250pt;}
.h4_c01024{height:27.645000pt;}
.ha_c01024{height:34.556250pt;}
.h7_c01024{height:36.860000pt;}
.h5_c01024{height:39.163750pt;}
.h6_c01024{height:41.467500pt;}
.h8_c01024{height:43.771250pt;}
.h3_c01024{height:46.075000pt;}
.hb_c01024{height:48.378750pt;}
.h11_c01024{height:49.147500pt;}
.h9_c01024{height:50.682500pt;}
.h2_c01024{height:52.986250pt;}
.hd_c01024{height:55.290000pt;}
.h1_c01024{height:1023.333333pt;}
.h0_c01024{height:1023.360000pt;}
.w1_c01024{width:702.000000pt;}
.w0_c01024{width:702.080000pt;}
.x0_c01024{left:0.000000pt;}
.x1_c01024{left:54.400000pt;}
.x3f_c01024{left:82.560000pt;}
.xc_c01024{left:83.840000pt;}
.xd_c01024{left:101.760000pt;}
.x2b_c01024{left:103.040000pt;}
.x1f_c01024{left:111.360000pt;}
.xe_c01024{left:122.240000pt;}
.x45_c01024{left:131.200000pt;}
.x43_c01024{left:132.480000pt;}
.x6_c01024{left:150.399960pt;}
.x39_c01024{left:160.000000pt;}
.x48_c01024{left:163.200000pt;}
.x23_c01024{left:168.960000pt;}
.x16_c01024{left:179.200000pt;}
.x2c_c01024{left:180.480000pt;}
.x7_c01024{left:187.520000pt;}
.x20_c01024{left:188.800000pt;}
.x2_c01024{left:197.760000pt;}
.x17_c01024{left:207.360000pt;}
.x3c_c01024{left:208.640000pt;}
.x21_c01024{left:216.960000pt;}
.x8_c01024{left:227.200000pt;}
.x18_c01024{left:235.520000pt;}
.x24_c01024{left:237.440000pt;}
.x35_c01024{left:245.760000pt;}
.x25_c01024{left:265.600000pt;}
.x49_c01024{left:266.880000pt;}
.xf_c01024{left:274.560000pt;}
.x22_c01024{left:284.800000pt;}
.x44_c01024{left:293.760000pt;}
.x3_c01024{left:301.440000pt;}
.x19_c01024{left:303.360000pt;}
.x10_c01024{left:313.600000pt;}
.x47_c01024{left:323.200000pt;}
.x1a_c01024{left:331.520000pt;}
.x40_c01024{left:333.440000pt;}
.x11_c01024{left:341.760000pt;}
.x3d_c01024{left:351.360000pt;}
.x4_c01024{left:360.320000pt;}
.x37_c01024{left:361.600000pt;}
.x1b_c01024{left:379.520000pt;}
.x5_c01024{left:390.400000pt;}
.x30_c01024{left:391.680000pt;}
.x27_c01024{left:399.360000pt;}
.x2d_c01024{left:400.640000pt;}
.x1c_c01024{left:408.960000pt;}
.x33_c01024{left:410.240000pt;}
.x41_c01024{left:418.560000pt;}
.x9_c01024{left:427.520000pt;}
.x3a_c01024{left:429.440000pt;}
.x12_c01024{left:437.760000pt;}
.x31_c01024{left:449.280000pt;}
.x28_c01024{left:456.960000pt;}
.x36_c01024{left:458.880000pt;}
.x29_c01024{left:467.200000pt;}
.xa_c01024{left:476.160000pt;}
.x3e_c01024{left:477.440000pt;}
.x1d_c01024{left:485.760000pt;}
.x34_c01024{left:496.000000pt;}
.x13_c01024{left:504.960000pt;}
.x32_c01024{left:506.880000pt;}
.x2e_c01024{left:515.840000pt;}
.x2a_c01024{left:526.080000pt;}
.x14_c01024{left:534.400000pt;}
.x4a_c01024{left:535.680000pt;}
.x38_c01024{left:544.000000pt;}
.xb_c01024{left:552.960000pt;}
.x46_c01024{left:554.240000pt;}
.x26_c01024{left:563.840000pt;}
.x1e_c01024{left:572.160000pt;}
.x15_c01024{left:573.440000pt;}
.x2f_c01024{left:583.680000pt;}
.x42_c01024{left:592.640000pt;}
.x3b_c01024{left:602.880000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e3d11fb07a1938b04fd0e8f9.woff2')format("woff");}.ff1_c01025{font-family:ff1_c01025;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m37_c01025{transform:matrix(0.216575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216575,0.000000,0.000000,0.250000,0,0);}
.m4a_c01025{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);}
.m50_c01025{transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);}
.m5c_c01025{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.me_c01025{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_c01025{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);}
.m55_c01025{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);}
.m52_c01025{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m6_c01025{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);}
.m56_c01025{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m51_c01025{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m58_c01025{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01025{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m24_c01025{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m14_c01025{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01025{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m42_c01025{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);}
.m38_c01025{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_c01025{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m12_c01025{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m36_c01025{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m15_c01025{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m57_c01025{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);}
.m10_c01025{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m20_c01025{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);}
.ma_c01025{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);}
.m59_c01025{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);}
.m4_c01025{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m33_c01025{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);}
.m5_c01025{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01025{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);}
.m2f_c01025{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m17_c01025{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);}
.m31_c01025{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01025{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m49_c01025{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);}
.m0_c01025{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01025{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m8_c01025{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);}
.m28_c01025{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.mb_c01025{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01025{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m32_c01025{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);}
.m39_c01025{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m16_c01025{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m35_c01025{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);}
.m4c_c01025{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01025{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01025{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01025{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);}
.m34_c01025{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01025{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01025{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m1_c01025{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);}
.m30_c01025{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m2_c01025{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m47_c01025{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m22_c01025{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m27_c01025{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);}
.m1e_c01025{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m4e_c01025{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m45_c01025{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);}
.m19_c01025{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m29_c01025{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m43_c01025{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m41_c01025{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m44_c01025{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);}
.m40_c01025{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m54_c01025{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m46_c01025{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m26_c01025{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01025{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);}
.m3_c01025{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m25_c01025{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01025{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m7_c01025{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m21_c01025{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);}
.m1a_c01025{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);}
.m13_c01025{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m5a_c01025{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01025{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m18_c01025{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m23_c01025{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01025{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01025{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m48_c01025{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);}
.m4f_c01025{transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);}
.m53_c01025{transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);}
.md_c01025{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);}
.m2a_c01025{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m11_c01025{transform:matrix(0.805000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.805000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.805000,0.000000,0.000000,0.250000,0,0);}
.mf_c01025{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);}
.m5b_c01025{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.v1_c01025{vertical-align:-5.760000px;}
.v0_c01025{vertical-align:0.000000px;}
.v2_c01025{vertical-align:8.640000px;}
.ls0_c01025{letter-spacing:0.000000px;}
.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:-4.781040px;}
.ws1_c01025{word-spacing:-3.779040px;}
.ws2_c01025{word-spacing:0.000000px;}
.fc0_c01025{color:transparent;}
.fs12_c01025{font-size:11.520000px;}
.fs7_c01025{font-size:17.280000px;}
.fs9_c01025{font-size:20.160000px;}
.fsa_c01025{font-size:23.040000px;}
.fsc_c01025{font-size:31.680000px;}
.fsb_c01025{font-size:34.560000px;}
.fs11_c01025{font-size:37.440000px;}
.fsd_c01025{font-size:43.200000px;}
.fs2_c01025{font-size:46.080000px;}
.fs3_c01025{font-size:48.960000px;}
.fs1_c01025{font-size:51.840000px;}
.fse_c01025{font-size:54.720000px;}
.fs8_c01025{font-size:57.600000px;}
.fs4_c01025{font-size:60.480000px;}
.fsf_c01025{font-size:63.360000px;}
.fs5_c01025{font-size:66.240000px;}
.fs6_c01025{font-size:69.120000px;}
.fs0_c01025{font-size:72.000000px;}
.fs10_c01025{font-size:106.560000px;}
.y0_c01025{bottom:0.000000px;}
.y63_c01025{bottom:57.600000px;}
.y64_c01025{bottom:58.320000px;}
.y61_c01025{bottom:59.760000px;}
.y65_c01025{bottom:61.200000px;}
.y62_c01025{bottom:63.360000px;}
.y5b_c01025{bottom:100.080000px;}
.y5f_c01025{bottom:100.800000px;}
.y5e_c01025{bottom:101.520000px;}
.y60_c01025{bottom:102.240000px;}
.y5c_c01025{bottom:102.960000px;}
.y5d_c01025{bottom:103.680000px;}
.y56_c01025{bottom:143.280000px;}
.y59_c01025{bottom:144.000000px;}
.y57_c01025{bottom:145.440000px;}
.y58_c01025{bottom:146.160000px;}
.y5a_c01025{bottom:146.880000px;}
.y54_c01025{bottom:185.760000px;}
.y55_c01025{bottom:187.200000px;}
.y52_c01025{bottom:188.640000px;}
.y53_c01025{bottom:189.360000px;}
.y4f_c01025{bottom:228.960000px;}
.y51_c01025{bottom:231.120000px;}
.y50_c01025{bottom:231.840000px;}
.y4e_c01025{bottom:271.440000px;}
.y4b_c01025{bottom:272.880000px;}
.y4d_c01025{bottom:274.320000px;}
.y4a_c01025{bottom:275.040000px;}
.y4c_c01025{bottom:275.760000px;}
.y48_c01025{bottom:325.440000px;}
.y49_c01025{bottom:326.160000px;}
.y45_c01025{bottom:327.600000px;}
.y46_c01025{bottom:328.320000px;}
.y47_c01025{bottom:329.040000px;}
.y43_c01025{bottom:368.640000px;}
.y41_c01025{bottom:369.360000px;}
.y44_c01025{bottom:370.800000px;}
.y42_c01025{bottom:371.520000px;}
.y3c_c01025{bottom:411.840000px;}
.y3e_c01025{bottom:412.560000px;}
.y40_c01025{bottom:414.000000px;}
.y3f_c01025{bottom:414.720000px;}
.y3d_c01025{bottom:415.440000px;}
.y3b_c01025{bottom:455.040000px;}
.y39_c01025{bottom:457.200000px;}
.y38_c01025{bottom:457.920000px;}
.y3a_c01025{bottom:458.640000px;}
.y2f_c01025{bottom:509.040000px;}
.y37_c01025{bottom:509.760000px;}
.y30_c01025{bottom:511.200000px;}
.y35_c01025{bottom:511.920000px;}
.y36_c01025{bottom:514.800000px;}
.y2d_c01025{bottom:551.520000px;}
.y34_c01025{bottom:552.240000px;}
.y2e_c01025{bottom:552.960000px;}
.y32_c01025{bottom:555.120000px;}
.y33_c01025{bottom:558.000000px;}
.y2b_c01025{bottom:594.720000px;}
.y2c_c01025{bottom:597.600000px;}
.y31_c01025{bottom:601.200000px;}
.y29_c01025{bottom:648.000000px;}
.y2a_c01025{bottom:650.880000px;}
.y26_c01025{bottom:690.480000px;}
.y24_c01025{bottom:691.200000px;}
.y28_c01025{bottom:692.640000px;}
.y27_c01025{bottom:693.360000px;}
.y25_c01025{bottom:694.080000px;}
.y22_c01025{bottom:733.680000px;}
.y23_c01025{bottom:735.840000px;}
.y21_c01025{bottom:736.560000px;}
.y1f_c01025{bottom:776.160000px;}
.y1e_c01025{bottom:776.880000px;}
.y20_c01025{bottom:779.040000px;}
.y1d_c01025{bottom:779.760000px;}
.y1b_c01025{bottom:818.640000px;}
.y1a_c01025{bottom:819.360000px;}
.y1c_c01025{bottom:821.520000px;}
.y18_c01025{bottom:822.240000px;}
.y19_c01025{bottom:822.960000px;}
.y15_c01025{bottom:861.120000px;}
.y17_c01025{bottom:861.840000px;}
.y13_c01025{bottom:862.560000px;}
.y16_c01025{bottom:864.000000px;}
.y14_c01025{bottom:864.720000px;}
.y10_c01025{bottom:915.120000px;}
.y12_c01025{bottom:915.840000px;}
.y9_c01025{bottom:916.560000px;}
.ya_c01025{bottom:918.000000px;}
.y11_c01025{bottom:920.880000px;}
.ye_c01025{bottom:958.320000px;}
.y7_c01025{bottom:959.040000px;}
.y8_c01025{bottom:959.760000px;}
.yf_c01025{bottom:964.080000px;}
.y5_c01025{bottom:1000.800000px;}
.yb_c01025{bottom:1001.520000px;}
.yd_c01025{bottom:1002.240000px;}
.y6_c01025{bottom:1003.680000px;}
.y4_c01025{bottom:1005.120000px;}
.yc_c01025{bottom:1008.000000px;}
.y3_c01025{bottom:1044.720000px;}
.y2_c01025{bottom:1047.600000px;}
.y1_c01025{bottom:1091.520000px;}
.h14_c01025{height:10.366875px;}
.h8_c01025{height:15.550313px;}
.ha_c01025{height:18.142031px;}
.hb_c01025{height:20.733750px;}
.hd_c01025{height:28.508906px;}
.hc_c01025{height:31.100625px;}
.h13_c01025{height:33.692344px;}
.hf_c01025{height:38.875781px;}
.he_c01025{height:41.467500px;}
.h4_c01025{height:44.059219px;}
.h3_c01025{height:46.650937px;}
.h10_c01025{height:49.242656px;}
.h9_c01025{height:51.834375px;}
.h5_c01025{height:54.426094px;}
.h11_c01025{height:57.017812px;}
.h6_c01025{height:59.609531px;}
.h7_c01025{height:62.201250px;}
.h2_c01025{height:64.792969px;}
.h12_c01025{height:95.893594px;}
.h0_c01025{height:1152.720000px;}
.h1_c01025{height:1152.750000px;}
.w1_c01025{width:790.500000px;}
.w0_c01025{width:790.560000px;}
.x0_c01025{left:0.000000px;}
.x2_c01025{left:62.640000px;}
.x14_c01025{left:64.800000px;}
.x3c_c01025{left:96.480000px;}
.x15_c01025{left:108.000000px;}
.x6_c01025{left:118.800000px;}
.x1c_c01025{left:130.320000px;}
.x16_c01025{left:140.400000px;}
.x34_c01025{left:151.200000px;}
.x7_c01025{left:152.640000px;}
.x27_c01025{left:162.000000px;}
.x1d_c01025{left:172.800000px;}
.xe_c01025{left:174.960000px;}
.x17_c01025{left:183.600000px;}
.x40_c01025{left:185.040000px;}
.x39_c01025{left:194.400000px;}
.x3_c01025{left:205.200000px;}
.xa_c01025{left:216.000000px;}
.x9_c01025{left:226.800000px;}
.x18_c01025{left:237.600000px;}
.x4_c01025{left:247.680000px;}
.x28_c01025{left:259.200000px;}
.x23_c01025{left:270.000000px;}
.xf_c01025{left:280.800000px;}
.x8_c01025{left:291.600000px;}
.x5_c01025{left:301.680000px;}
.x19_c01025{left:313.200000px;}
.x10_c01025{left:324.000000px;}
.x41_c01025{left:326.160000px;}
.x29_c01025{left:334.800000px;}
.x2d_c01025{left:345.600000px;}
.x11_c01025{left:356.400000px;}
.x37_c01025{left:367.200000px;}
.x3a_c01025{left:368.640000px;}
.x42_c01025{left:378.000000px;}
.x24_c01025{left:389.520000px;}
.x1e_c01025{left:399.600000px;}
.x35_c01025{left:410.400000px;}
.x38_c01025{left:421.920000px;}
.x25_c01025{left:431.280000px;}
.x2a_c01025{left:442.800000px;}
.x1f_c01025{left:452.880000px;}
.x3e_c01025{left:464.400000px;}
.x31_c01025{left:465.840000px;}
.x12_c01025{left:475.200000px;}
.x1a_c01025{left:506.160000px;}
.xb_c01025{left:507.600000px;}
.x2e_c01025{left:509.040000px;}
.x20_c01025{left:518.400000px;}
.x32_c01025{left:529.920000px;}
.x2f_c01025{left:540.000000px;}
.xc_c01025{left:550.800000px;}
.x30_c01025{left:563.760000px;}
.xd_c01025{left:573.840000px;}
.x3d_c01025{left:583.920000px;}
.x1b_c01025{left:594.720000px;}
.x36_c01025{left:605.520000px;}
.x43_c01025{left:608.400000px;}
.x13_c01025{left:616.320000px;}
.x26_c01025{left:627.120000px;}
.x2b_c01025{left:649.440000px;}
.x21_c01025{left:659.520000px;}
.x3f_c01025{left:660.960000px;}
.x33_c01025{left:671.760000px;}
.x1_c01025{left:673.920000px;}
.x2c_c01025{left:682.560000px;}
.x22_c01025{left:692.640000px;}
.x3b_c01025{left:704.160000px;}
@media print{
.v1_c01025{vertical-align:-5.120000pt;}
.v0_c01025{vertical-align:0.000000pt;}
.v2_c01025{vertical-align:7.680000pt;}
.ls0_c01025{letter-spacing:0.000000pt;}
.ws0_c01025{word-spacing:-4.249813pt;}
.ws1_c01025{word-spacing:-3.359147pt;}
.ws2_c01025{word-spacing:0.000000pt;}
.fs12_c01025{font-size:10.240000pt;}
.fs7_c01025{font-size:15.360000pt;}
.fs9_c01025{font-size:17.920000pt;}
.fsa_c01025{font-size:20.480000pt;}
.fsc_c01025{font-size:28.160000pt;}
.fsb_c01025{font-size:30.720000pt;}
.fs11_c01025{font-size:33.280000pt;}
.fsd_c01025{font-size:38.400000pt;}
.fs2_c01025{font-size:40.960000pt;}
.fs3_c01025{font-size:43.520000pt;}
.fs1_c01025{font-size:46.080000pt;}
.fse_c01025{font-size:48.640000pt;}
.fs8_c01025{font-size:51.200000pt;}
.fs4_c01025{font-size:53.760000pt;}
.fsf_c01025{font-size:56.320000pt;}
.fs5_c01025{font-size:58.880000pt;}
.fs6_c01025{font-size:61.440000pt;}
.fs0_c01025{font-size:64.000000pt;}
.fs10_c01025{font-size:94.720000pt;}
.y0_c01025{bottom:0.000000pt;}
.y63_c01025{bottom:51.200000pt;}
.y64_c01025{bottom:51.840000pt;}
.y61_c01025{bottom:53.120000pt;}
.y65_c01025{bottom:54.400000pt;}
.y62_c01025{bottom:56.320000pt;}
.y5b_c01025{bottom:88.960000pt;}
.y5f_c01025{bottom:89.600000pt;}
.y5e_c01025{bottom:90.240000pt;}
.y60_c01025{bottom:90.880000pt;}
.y5c_c01025{bottom:91.520000pt;}
.y5d_c01025{bottom:92.160000pt;}
.y56_c01025{bottom:127.360000pt;}
.y59_c01025{bottom:128.000000pt;}
.y57_c01025{bottom:129.280000pt;}
.y58_c01025{bottom:129.920000pt;}
.y5a_c01025{bottom:130.560000pt;}
.y54_c01025{bottom:165.120000pt;}
.y55_c01025{bottom:166.400000pt;}
.y52_c01025{bottom:167.680000pt;}
.y53_c01025{bottom:168.320000pt;}
.y4f_c01025{bottom:203.520000pt;}
.y51_c01025{bottom:205.440000pt;}
.y50_c01025{bottom:206.080000pt;}
.y4e_c01025{bottom:241.280000pt;}
.y4b_c01025{bottom:242.560000pt;}
.y4d_c01025{bottom:243.840000pt;}
.y4a_c01025{bottom:244.480000pt;}
.y4c_c01025{bottom:245.120000pt;}
.y48_c01025{bottom:289.280000pt;}
.y49_c01025{bottom:289.920000pt;}
.y45_c01025{bottom:291.200000pt;}
.y46_c01025{bottom:291.840000pt;}
.y47_c01025{bottom:292.480000pt;}
.y43_c01025{bottom:327.680000pt;}
.y41_c01025{bottom:328.320000pt;}
.y44_c01025{bottom:329.600000pt;}
.y42_c01025{bottom:330.240000pt;}
.y3c_c01025{bottom:366.080000pt;}
.y3e_c01025{bottom:366.720000pt;}
.y40_c01025{bottom:368.000000pt;}
.y3f_c01025{bottom:368.640000pt;}
.y3d_c01025{bottom:369.280000pt;}
.y3b_c01025{bottom:404.480000pt;}
.y39_c01025{bottom:406.400000pt;}
.y38_c01025{bottom:407.040000pt;}
.y3a_c01025{bottom:407.680000pt;}
.y2f_c01025{bottom:452.480000pt;}
.y37_c01025{bottom:453.120000pt;}
.y30_c01025{bottom:454.400000pt;}
.y35_c01025{bottom:455.040000pt;}
.y36_c01025{bottom:457.600000pt;}
.y2d_c01025{bottom:490.240000pt;}
.y34_c01025{bottom:490.880000pt;}
.y2e_c01025{bottom:491.520000pt;}
.y32_c01025{bottom:493.440000pt;}
.y33_c01025{bottom:496.000000pt;}
.y2b_c01025{bottom:528.640000pt;}
.y2c_c01025{bottom:531.200000pt;}
.y31_c01025{bottom:534.400000pt;}
.y29_c01025{bottom:576.000000pt;}
.y2a_c01025{bottom:578.560000pt;}
.y26_c01025{bottom:613.760000pt;}
.y24_c01025{bottom:614.400000pt;}
.y28_c01025{bottom:615.680000pt;}
.y27_c01025{bottom:616.320000pt;}
.y25_c01025{bottom:616.960000pt;}
.y22_c01025{bottom:652.160000pt;}
.y23_c01025{bottom:654.080000pt;}
.y21_c01025{bottom:654.720000pt;}
.y1f_c01025{bottom:689.920000pt;}
.y1e_c01025{bottom:690.560000pt;}
.y20_c01025{bottom:692.480000pt;}
.y1d_c01025{bottom:693.120000pt;}
.y1b_c01025{bottom:727.680000pt;}
.y1a_c01025{bottom:728.320000pt;}
.y1c_c01025{bottom:730.240000pt;}
.y18_c01025{bottom:730.880000pt;}
.y19_c01025{bottom:731.520000pt;}
.y15_c01025{bottom:765.440000pt;}
.y17_c01025{bottom:766.080000pt;}
.y13_c01025{bottom:766.720000pt;}
.y16_c01025{bottom:768.000000pt;}
.y14_c01025{bottom:768.640000pt;}
.y10_c01025{bottom:813.440000pt;}
.y12_c01025{bottom:814.080000pt;}
.y9_c01025{bottom:814.720000pt;}
.ya_c01025{bottom:816.000000pt;}
.y11_c01025{bottom:818.560000pt;}
.ye_c01025{bottom:851.840000pt;}
.y7_c01025{bottom:852.480000pt;}
.y8_c01025{bottom:853.120000pt;}
.yf_c01025{bottom:856.960000pt;}
.y5_c01025{bottom:889.600000pt;}
.yb_c01025{bottom:890.240000pt;}
.yd_c01025{bottom:890.880000pt;}
.y6_c01025{bottom:892.160000pt;}
.y4_c01025{bottom:893.440000pt;}
.yc_c01025{bottom:896.000000pt;}
.y3_c01025{bottom:928.640000pt;}
.y2_c01025{bottom:931.200000pt;}
.y1_c01025{bottom:970.240000pt;}
.h14_c01025{height:9.215000pt;}
.h8_c01025{height:13.822500pt;}
.ha_c01025{height:16.126250pt;}
.hb_c01025{height:18.430000pt;}
.hd_c01025{height:25.341250pt;}
.hc_c01025{height:27.645000pt;}
.h13_c01025{height:29.948750pt;}
.hf_c01025{height:34.556250pt;}
.he_c01025{height:36.860000pt;}
.h4_c01025{height:39.163750pt;}
.h3_c01025{height:41.467500pt;}
.h10_c01025{height:43.771250pt;}
.h9_c01025{height:46.075000pt;}
.h5_c01025{height:48.378750pt;}
.h11_c01025{height:50.682500pt;}
.h6_c01025{height:52.986250pt;}
.h7_c01025{height:55.290000pt;}
.h2_c01025{height:57.593750pt;}
.h12_c01025{height:85.238750pt;}
.h0_c01025{height:1024.640000pt;}
.h1_c01025{height:1024.666667pt;}
.w1_c01025{width:702.666667pt;}
.w0_c01025{width:702.720000pt;}
.x0_c01025{left:0.000000pt;}
.x2_c01025{left:55.680000pt;}
.x14_c01025{left:57.600000pt;}
.x3c_c01025{left:85.760000pt;}
.x15_c01025{left:96.000000pt;}
.x6_c01025{left:105.600000pt;}
.x1c_c01025{left:115.840000pt;}
.x16_c01025{left:124.800000pt;}
.x34_c01025{left:134.400000pt;}
.x7_c01025{left:135.680000pt;}
.x27_c01025{left:144.000000pt;}
.x1d_c01025{left:153.600000pt;}
.xe_c01025{left:155.520000pt;}
.x17_c01025{left:163.200000pt;}
.x40_c01025{left:164.480000pt;}
.x39_c01025{left:172.800000pt;}
.x3_c01025{left:182.400000pt;}
.xa_c01025{left:192.000000pt;}
.x9_c01025{left:201.600000pt;}
.x18_c01025{left:211.200000pt;}
.x4_c01025{left:220.160000pt;}
.x28_c01025{left:230.400000pt;}
.x23_c01025{left:240.000000pt;}
.xf_c01025{left:249.600000pt;}
.x8_c01025{left:259.200000pt;}
.x5_c01025{left:268.160000pt;}
.x19_c01025{left:278.400000pt;}
.x10_c01025{left:288.000000pt;}
.x41_c01025{left:289.920000pt;}
.x29_c01025{left:297.600000pt;}
.x2d_c01025{left:307.200000pt;}
.x11_c01025{left:316.800000pt;}
.x37_c01025{left:326.400000pt;}
.x3a_c01025{left:327.680000pt;}
.x42_c01025{left:336.000000pt;}
.x24_c01025{left:346.240000pt;}
.x1e_c01025{left:355.200000pt;}
.x35_c01025{left:364.800000pt;}
.x38_c01025{left:375.040000pt;}
.x25_c01025{left:383.360000pt;}
.x2a_c01025{left:393.600000pt;}
.x1f_c01025{left:402.560000pt;}
.x3e_c01025{left:412.800000pt;}
.x31_c01025{left:414.080000pt;}
.x12_c01025{left:422.400000pt;}
.x1a_c01025{left:449.920000pt;}
.xb_c01025{left:451.200000pt;}
.x2e_c01025{left:452.480000pt;}
.x20_c01025{left:460.800000pt;}
.x32_c01025{left:471.040000pt;}
.x2f_c01025{left:480.000000pt;}
.xc_c01025{left:489.600000pt;}
.x30_c01025{left:501.120000pt;}
.xd_c01025{left:510.080000pt;}
.x3d_c01025{left:519.040000pt;}
.x1b_c01025{left:528.640000pt;}
.x36_c01025{left:538.240000pt;}
.x43_c01025{left:540.800000pt;}
.x13_c01025{left:547.840000pt;}
.x26_c01025{left:557.440000pt;}
.x2b_c01025{left:577.280000pt;}
.x21_c01025{left:586.240000pt;}
.x3f_c01025{left:587.520000pt;}
.x33_c01025{left:597.120000pt;}
.x1_c01025{left:599.040000pt;}
.x2c_c01025{left:606.720000pt;}
.x22_c01025{left:615.680000pt;}
.x3b_c01025{left:625.920000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_675757841079a03039df206a.woff2')format("woff");}.ff1_c01026{font-family:ff1_c01026;line-height:1.109863;font-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_c01026{transform:matrix(0.242200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242200,0.000000,0.000000,0.250000,0,0);}
.m3_c01026{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);}
.m4d_c01026{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2_c01026{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01026{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m60_c01026{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m25_c01026{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01026{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m29_c01026{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m57_c01026{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m44_c01026{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);}
.m5c_c01026{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01026{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);}
.m4a_c01026{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m20_c01026{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m14_c01026{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m49_c01026{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);}
.m46_c01026{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01026{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);}
.m24_c01026{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m4_c01026{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m5b_c01026{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m1_c01026{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);}
.m53_c01026{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m16_c01026{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m55_c01026{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m0_c01026{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);}
.m9_c01026{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m7_c01026{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);}
.m1f_c01026{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m56_c01026{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);}
.m13_c01026{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);}
.m3e_c01026{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m54_c01026{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m21_c01026{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01026{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);}
.m43_c01026{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m11_c01026{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);}
.m2b_c01026{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m32_c01026{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);}
.m2e_c01026{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m35_c01026{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m5f_c01026{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01026{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m45_c01026{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);}
.m5_c01026{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m17_c01026{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01026{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);}
.m2d_c01026{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_c01026{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m51_c01026{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m40_c01026{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m59_c01026{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.mc_c01026{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);}
.m39_c01026{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m34_c01026{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m58_c01026{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);}
.m12_c01026{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m36_c01026{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01026{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m37_c01026{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m31_c01026{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);}
.m5a_c01026{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);}
.m3b_c01026{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m38_c01026{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.md_c01026{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);}
.m50_c01026{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.ma_c01026{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01026{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01026{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m19_c01026{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_c01026{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m8_c01026{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01026{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m22_c01026{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m10_c01026{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);}
.m33_c01026{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m42_c01026{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m4f_c01026{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01026{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01026{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m62_c01026{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);}
.mb_c01026{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m26_c01026{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m30_c01026{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);}
.m48_c01026{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m5d_c01026{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m41_c01026{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.me_c01026{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m61_c01026{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m47_c01026{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01026{transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01026{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m52_c01026{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);}
.m23_c01026{transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);}
.m5e_c01026{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);}
.m27_c01026{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);}
.m28_c01026{transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);}
.m6_c01026{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.v0_c01026{vertical-align:0.000000px;}
.ls0_c01026{letter-spacing:0.000000px;}
.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;}
.fc0_c01026{color:transparent;}
.fs4_c01026{font-size:8.640000px;}
.fse_c01026{font-size:17.280000px;}
.fsd_c01026{font-size:20.160000px;}
.fs11_c01026{font-size:23.040000px;}
.fsf_c01026{font-size:31.680000px;}
.fs7_c01026{font-size:34.560000px;}
.fs10_c01026{font-size:37.440000px;}
.fsa_c01026{font-size:43.200000px;}
.fs6_c01026{font-size:46.080000px;}
.fs2_c01026{font-size:48.960000px;}
.fs3_c01026{font-size:51.840000px;}
.fsb_c01026{font-size:54.720000px;}
.fs8_c01026{font-size:57.600000px;}
.fs1_c01026{font-size:60.480000px;}
.fsc_c01026{font-size:63.360000px;}
.fs5_c01026{font-size:66.240000px;}
.fs9_c01026{font-size:69.120000px;}
.fs0_c01026{font-size:72.000000px;}
.y0_c01026{bottom:0.000000px;}
.y6d_c01026{bottom:44.640000px;}
.y6b_c01026{bottom:46.080000px;}
.y6c_c01026{bottom:46.800000px;}
.y6e_c01026{bottom:47.520000px;}
.y6f_c01026{bottom:48.240000px;}
.y65_c01026{bottom:86.400000px;}
.y66_c01026{bottom:87.120000px;}
.y69_c01026{bottom:87.840000px;}
.y68_c01026{bottom:88.560000px;}
.y67_c01026{bottom:89.280000px;}
.y6a_c01026{bottom:90.720000px;}
.y60_c01026{bottom:129.600000px;}
.y63_c01026{bottom:130.320000px;}
.y64_c01026{bottom:131.760000px;}
.y5f_c01026{bottom:132.480000px;}
.y61_c01026{bottom:133.200000px;}
.y62_c01026{bottom:133.920000px;}
.y5e_c01026{bottom:172.080000px;}
.y59_c01026{bottom:172.800000px;}
.y5b_c01026{bottom:173.520000px;}
.y58_c01026{bottom:174.960000px;}
.y5a_c01026{bottom:175.680000px;}
.y5c_c01026{bottom:176.400000px;}
.y5d_c01026{bottom:177.120000px;}
.y54_c01026{bottom:216.000000px;}
.y55_c01026{bottom:218.160000px;}
.y56_c01026{bottom:218.880000px;}
.y57_c01026{bottom:219.600000px;}
.y53_c01026{bottom:259.200000px;}
.y52_c01026{bottom:259.920000px;}
.y50_c01026{bottom:261.360000px;}
.y51_c01026{bottom:262.080000px;}
.y4d_c01026{bottom:301.680000px;}
.y4f_c01026{bottom:302.400000px;}
.y4c_c01026{bottom:304.560000px;}
.y4b_c01026{bottom:305.280000px;}
.y4e_c01026{bottom:306.000000px;}
.y48_c01026{bottom:344.880000px;}
.y49_c01026{bottom:345.600000px;}
.y4a_c01026{bottom:347.040000px;}
.y47_c01026{bottom:347.760000px;}
.y45_c01026{bottom:387.360000px;}
.y46_c01026{bottom:388.080000px;}
.y44_c01026{bottom:390.240000px;}
.y43_c01026{bottom:390.960000px;}
.y40_c01026{bottom:429.840000px;}
.y42_c01026{bottom:430.560000px;}
.y41_c01026{bottom:432.720000px;}
.y3f_c01026{bottom:433.440000px;}
.y3e_c01026{bottom:472.320000px;}
.y3d_c01026{bottom:473.040000px;}
.y3c_c01026{bottom:475.200000px;}
.y3b_c01026{bottom:475.920000px;}
.y39_c01026{bottom:516.240000px;}
.y38_c01026{bottom:518.400000px;}
.y3a_c01026{bottom:519.120000px;}
.y34_c01026{bottom:569.520000px;}
.y37_c01026{bottom:571.680000px;}
.y35_c01026{bottom:572.400000px;}
.y36_c01026{bottom:573.120000px;}
.y33_c01026{bottom:612.000000px;}
.y31_c01026{bottom:612.720000px;}
.y30_c01026{bottom:613.440000px;}
.y32_c01026{bottom:614.880000px;}
.y2f_c01026{bottom:615.600000px;}
.y2e_c01026{bottom:655.200000px;}
.y2c_c01026{bottom:655.920000px;}
.y2d_c01026{bottom:658.080000px;}
.y2b_c01026{bottom:658.800000px;}
.y2a_c01026{bottom:697.680000px;}
.y29_c01026{bottom:698.400000px;}
.y28_c01026{bottom:701.280000px;}
.y27_c01026{bottom:702.000000px;}
.y1c_c01026{bottom:751.680000px;}
.y1d_c01026{bottom:753.120000px;}
.y1e_c01026{bottom:753.840000px;}
.y25_c01026{bottom:755.280000px;}
.y26_c01026{bottom:758.160000px;}
.y1a_c01026{bottom:794.880000px;}
.y1b_c01026{bottom:795.600000px;}
.y24_c01026{bottom:796.320000px;}
.y22_c01026{bottom:798.480000px;}
.y23_c01026{bottom:800.640000px;}
.y18_c01026{bottom:838.080000px;}
.y21_c01026{bottom:838.800000px;}
.y19_c01026{bottom:840.240000px;}
.y1f_c01026{bottom:840.960000px;}
.y17_c01026{bottom:841.680000px;}
.y20_c01026{bottom:843.840000px;}
.y16_c01026{bottom:883.440000px;}
.y15_c01026{bottom:923.040000px;}
.y11_c01026{bottom:923.760000px;}
.y14_c01026{bottom:925.200000px;}
.y13_c01026{bottom:925.920000px;}
.y12_c01026{bottom:926.640000px;}
.ye_c01026{bottom:965.520000px;}
.y10_c01026{bottom:967.680000px;}
.yf_c01026{bottom:968.400000px;}
.yd_c01026{bottom:969.120000px;}
.yc_c01026{bottom:969.840000px;}
.y9_c01026{bottom:1008.720000px;}
.yb_c01026{bottom:1010.160000px;}
.ya_c01026{bottom:1010.880000px;}
.y7_c01026{bottom:1051.200000px;}
.y2_c01026{bottom:1051.920000px;}
.y4_c01026{bottom:1052.640000px;}
.y5_c01026{bottom:1053.360000px;}
.y8_c01026{bottom:1054.080000px;}
.y3_c01026{bottom:1054.800000px;}
.y6_c01026{bottom:1056.960000px;}
.y1_c01026{bottom:1100.160000px;}
.h6_c01026{height:7.775156px;}
.h10_c01026{height:15.550313px;}
.hf_c01026{height:18.142031px;}
.h13_c01026{height:20.733750px;}
.h11_c01026{height:28.508906px;}
.h9_c01026{height:31.100625px;}
.h12_c01026{height:33.692344px;}
.hc_c01026{height:38.875781px;}
.h8_c01026{height:41.467500px;}
.h4_c01026{height:44.059219px;}
.h5_c01026{height:46.650937px;}
.hd_c01026{height:49.242656px;}
.ha_c01026{height:51.834375px;}
.h3_c01026{height:54.426094px;}
.he_c01026{height:57.017812px;}
.h7_c01026{height:59.609531px;}
.hb_c01026{height:62.201250px;}
.h2_c01026{height:64.792969px;}
.h0_c01026{height:1153.440000px;}
.h1_c01026{height:1153.500000px;}
.w0_c01026{width:792.720000px;}
.w1_c01026{width:792.750000px;}
.x0_c01026{left:0.000000px;}
.x30_c01026{left:65.520000px;}
.x2_c01026{left:66.960000px;}
.x14_c01026{left:98.640000px;}
.xf_c01026{left:100.800000px;}
.x27_c01026{left:110.160000px;}
.x44_c01026{left:119.520000px;}
.x1c_c01026{left:120.960000px;}
.x1e_c01026{left:122.400000px;}
.x42_c01026{left:132.480000px;}
.x52_c01026{left:133.920000px;}
.x47_c01026{left:142.560000px;}
.x15_c01026{left:144.000000px;}
.x4b_c01026{left:153.360000px;}
.x10_c01026{left:154.800000px;}
.x31_c01026{left:162.720000px;}
.x3_c01026{left:164.880000px;}
.x48_c01026{left:174.240000px;}
.x34_c01026{left:175.680000px;}
.x21_c01026{left:177.120000px;}
.x28_c01026{left:185.760000px;}
.x11_c01026{left:196.560000px;}
.x4_c01026{left:198.720000px;}
.x22_c01026{left:208.080000px;}
.x16_c01026{left:218.880000px;}
.x5_c01026{left:229.680000px;}
.x35_c01026{left:239.760000px;}
.x17_c01026{left:250.560000px;}
.x3b_c01026{left:261.360000px;}
.x6_c01026{left:263.520000px;}
.x36_c01026{left:272.160000px;}
.x18_c01026{left:282.960000px;}
.x12_c01026{left:284.400000px;}
.x1d_c01026{left:293.760000px;}
.x45_c01026{left:303.120000px;}
.xb_c01026{left:304.560000px;}
.x23_c01026{left:316.080000px;}
.x4e_c01026{left:326.160000px;}
.x29_c01026{left:337.680000px;}
.xc_c01026{left:347.760000px;}
.x37_c01026{left:357.120000px;}
.x3c_c01026{left:368.640000px;}
.x53_c01026{left:379.440000px;}
.x3e_c01026{left:380.880000px;}
.x3f_c01026{left:383.040000px;}
.x32_c01026{left:390.960000px;}
.x2a_c01026{left:392.400000px;}
.x2d_c01026{left:401.760000px;}
.x4f_c01026{left:411.840000px;}
.x40_c01026{left:413.280000px;}
.x19_c01026{left:423.360000px;}
.x2e_c01026{left:434.160000px;}
.x1a_c01026{left:444.240000px;}
.x24_c01026{left:447.120000px;}
.x54_c01026{left:454.320000px;}
.x7_c01026{left:455.760000px;}
.x2b_c01026{left:466.560000px;}
.x4c_c01026{left:475.920000px;}
.x8_c01026{left:477.360000px;}
.x2f_c01026{left:488.160000px;}
.x55_c01026{left:498.240000px;}
.x25_c01026{left:499.680000px;}
.xd_c01026{left:509.040000px;}
.x38_c01026{left:510.480000px;}
.x33_c01026{left:531.360000px;}
.x1f_c01026{left:532.800000px;}
.x51_c01026{left:542.880000px;}
.x13_c01026{left:552.960000px;}
.xe_c01026{left:563.760000px;}
.x20_c01026{left:565.200000px;}
.x2c_c01026{left:574.560000px;}
.x9_c01026{left:576.000000px;}
.x1b_c01026{left:586.080000px;}
.x3d_c01026{left:606.960000px;}
.x49_c01026{left:617.760000px;}
.xa_c01026{left:619.200000px;}
.x26_c01026{left:638.640000px;}
.x4a_c01026{left:640.800000px;}
.x39_c01026{left:650.880000px;}
.x41_c01026{left:652.320000px;}
.x43_c01026{left:662.400000px;}
.x3a_c01026{left:671.760000px;}
.x46_c01026{left:673.920000px;}
.x4d_c01026{left:684.000000px;}
.x1_c01026{left:689.040000px;}
.x50_c01026{left:695.520000px;}
@media print{
.v0_c01026{vertical-align:0.000000pt;}
.ls0_c01026{letter-spacing:0.000000pt;}
.ws0_c01026{word-spacing:0.000000pt;}
.fs4_c01026{font-size:7.680000pt;}
.fse_c01026{font-size:15.360000pt;}
.fsd_c01026{font-size:17.920000pt;}
.fs11_c01026{font-size:20.480000pt;}
.fsf_c01026{font-size:28.160000pt;}
.fs7_c01026{font-size:30.720000pt;}
.fs10_c01026{font-size:33.280000pt;}
.fsa_c01026{font-size:38.400000pt;}
.fs6_c01026{font-size:40.960000pt;}
.fs2_c01026{font-size:43.520000pt;}
.fs3_c01026{font-size:46.080000pt;}
.fsb_c01026{font-size:48.640000pt;}
.fs8_c01026{font-size:51.200000pt;}
.fs1_c01026{font-size:53.760000pt;}
.fsc_c01026{font-size:56.320000pt;}
.fs5_c01026{font-size:58.880000pt;}
.fs9_c01026{font-size:61.440000pt;}
.fs0_c01026{font-size:64.000000pt;}
.y0_c01026{bottom:0.000000pt;}
.y6d_c01026{bottom:39.680000pt;}
.y6b_c01026{bottom:40.960000pt;}
.y6c_c01026{bottom:41.600000pt;}
.y6e_c01026{bottom:42.240000pt;}
.y6f_c01026{bottom:42.880000pt;}
.y65_c01026{bottom:76.800000pt;}
.y66_c01026{bottom:77.440000pt;}
.y69_c01026{bottom:78.080000pt;}
.y68_c01026{bottom:78.720000pt;}
.y67_c01026{bottom:79.360000pt;}
.y6a_c01026{bottom:80.640000pt;}
.y60_c01026{bottom:115.200000pt;}
.y63_c01026{bottom:115.840000pt;}
.y64_c01026{bottom:117.120000pt;}
.y5f_c01026{bottom:117.760000pt;}
.y61_c01026{bottom:118.400000pt;}
.y62_c01026{bottom:119.040000pt;}
.y5e_c01026{bottom:152.960000pt;}
.y59_c01026{bottom:153.600000pt;}
.y5b_c01026{bottom:154.240000pt;}
.y58_c01026{bottom:155.520000pt;}
.y5a_c01026{bottom:156.160000pt;}
.y5c_c01026{bottom:156.800000pt;}
.y5d_c01026{bottom:157.440000pt;}
.y54_c01026{bottom:192.000000pt;}
.y55_c01026{bottom:193.920000pt;}
.y56_c01026{bottom:194.560000pt;}
.y57_c01026{bottom:195.200000pt;}
.y53_c01026{bottom:230.400000pt;}
.y52_c01026{bottom:231.040000pt;}
.y50_c01026{bottom:232.320000pt;}
.y51_c01026{bottom:232.960000pt;}
.y4d_c01026{bottom:268.160000pt;}
.y4f_c01026{bottom:268.800000pt;}
.y4c_c01026{bottom:270.720000pt;}
.y4b_c01026{bottom:271.360000pt;}
.y4e_c01026{bottom:272.000000pt;}
.y48_c01026{bottom:306.560000pt;}
.y49_c01026{bottom:307.200000pt;}
.y4a_c01026{bottom:308.480000pt;}
.y47_c01026{bottom:309.120000pt;}
.y45_c01026{bottom:344.320000pt;}
.y46_c01026{bottom:344.960000pt;}
.y44_c01026{bottom:346.880000pt;}
.y43_c01026{bottom:347.520000pt;}
.y40_c01026{bottom:382.080000pt;}
.y42_c01026{bottom:382.720000pt;}
.y41_c01026{bottom:384.640000pt;}
.y3f_c01026{bottom:385.280000pt;}
.y3e_c01026{bottom:419.840000pt;}
.y3d_c01026{bottom:420.480000pt;}
.y3c_c01026{bottom:422.400000pt;}
.y3b_c01026{bottom:423.040000pt;}
.y39_c01026{bottom:458.880000pt;}
.y38_c01026{bottom:460.800000pt;}
.y3a_c01026{bottom:461.440000pt;}
.y34_c01026{bottom:506.240000pt;}
.y37_c01026{bottom:508.160000pt;}
.y35_c01026{bottom:508.800000pt;}
.y36_c01026{bottom:509.440000pt;}
.y33_c01026{bottom:544.000000pt;}
.y31_c01026{bottom:544.640000pt;}
.y30_c01026{bottom:545.280000pt;}
.y32_c01026{bottom:546.560000pt;}
.y2f_c01026{bottom:547.200000pt;}
.y2e_c01026{bottom:582.400000pt;}
.y2c_c01026{bottom:583.040000pt;}
.y2d_c01026{bottom:584.960000pt;}
.y2b_c01026{bottom:585.600000pt;}
.y2a_c01026{bottom:620.160000pt;}
.y29_c01026{bottom:620.800000pt;}
.y28_c01026{bottom:623.360000pt;}
.y27_c01026{bottom:624.000000pt;}
.y1c_c01026{bottom:668.160000pt;}
.y1d_c01026{bottom:669.440000pt;}
.y1e_c01026{bottom:670.080000pt;}
.y25_c01026{bottom:671.360000pt;}
.y26_c01026{bottom:673.920000pt;}
.y1a_c01026{bottom:706.560000pt;}
.y1b_c01026{bottom:707.200000pt;}
.y24_c01026{bottom:707.840000pt;}
.y22_c01026{bottom:709.760000pt;}
.y23_c01026{bottom:711.680000pt;}
.y18_c01026{bottom:744.960000pt;}
.y21_c01026{bottom:745.600000pt;}
.y19_c01026{bottom:746.880000pt;}
.y1f_c01026{bottom:747.520000pt;}
.y17_c01026{bottom:748.160000pt;}
.y20_c01026{bottom:750.080000pt;}
.y16_c01026{bottom:785.280000pt;}
.y15_c01026{bottom:820.480000pt;}
.y11_c01026{bottom:821.120000pt;}
.y14_c01026{bottom:822.400000pt;}
.y13_c01026{bottom:823.040000pt;}
.y12_c01026{bottom:823.680000pt;}
.ye_c01026{bottom:858.240000pt;}
.y10_c01026{bottom:860.160000pt;}
.yf_c01026{bottom:860.800000pt;}
.yd_c01026{bottom:861.440000pt;}
.yc_c01026{bottom:862.080000pt;}
.y9_c01026{bottom:896.640000pt;}
.yb_c01026{bottom:897.920000pt;}
.ya_c01026{bottom:898.560000pt;}
.y7_c01026{bottom:934.400000pt;}
.y2_c01026{bottom:935.040000pt;}
.y4_c01026{bottom:935.680000pt;}
.y5_c01026{bottom:936.320000pt;}
.y8_c01026{bottom:936.960000pt;}
.y3_c01026{bottom:937.600000pt;}
.y6_c01026{bottom:939.520000pt;}
.y1_c01026{bottom:977.920000pt;}
.h6_c01026{height:6.911250pt;}
.h10_c01026{height:13.822500pt;}
.hf_c01026{height:16.126250pt;}
.h13_c01026{height:18.430000pt;}
.h11_c01026{height:25.341250pt;}
.h9_c01026{height:27.645000pt;}
.h12_c01026{height:29.948750pt;}
.hc_c01026{height:34.556250pt;}
.h8_c01026{height:36.860000pt;}
.h4_c01026{height:39.163750pt;}
.h5_c01026{height:41.467500pt;}
.hd_c01026{height:43.771250pt;}
.ha_c01026{height:46.075000pt;}
.h3_c01026{height:48.378750pt;}
.he_c01026{height:50.682500pt;}
.h7_c01026{height:52.986250pt;}
.hb_c01026{height:55.290000pt;}
.h2_c01026{height:57.593750pt;}
.h0_c01026{height:1025.280000pt;}
.h1_c01026{height:1025.333333pt;}
.w0_c01026{width:704.640000pt;}
.w1_c01026{width:704.666667pt;}
.x0_c01026{left:0.000000pt;}
.x30_c01026{left:58.240000pt;}
.x2_c01026{left:59.520000pt;}
.x14_c01026{left:87.680000pt;}
.xf_c01026{left:89.600000pt;}
.x27_c01026{left:97.920000pt;}
.x44_c01026{left:106.240000pt;}
.x1c_c01026{left:107.520000pt;}
.x1e_c01026{left:108.800000pt;}
.x42_c01026{left:117.760000pt;}
.x52_c01026{left:119.040000pt;}
.x47_c01026{left:126.720000pt;}
.x15_c01026{left:128.000000pt;}
.x4b_c01026{left:136.320000pt;}
.x10_c01026{left:137.600000pt;}
.x31_c01026{left:144.640000pt;}
.x3_c01026{left:146.560000pt;}
.x48_c01026{left:154.880000pt;}
.x34_c01026{left:156.160000pt;}
.x21_c01026{left:157.440000pt;}
.x28_c01026{left:165.120000pt;}
.x11_c01026{left:174.720000pt;}
.x4_c01026{left:176.640000pt;}
.x22_c01026{left:184.960000pt;}
.x16_c01026{left:194.560000pt;}
.x5_c01026{left:204.160000pt;}
.x35_c01026{left:213.120000pt;}
.x17_c01026{left:222.720000pt;}
.x3b_c01026{left:232.320000pt;}
.x6_c01026{left:234.240000pt;}
.x36_c01026{left:241.920000pt;}
.x18_c01026{left:251.520000pt;}
.x12_c01026{left:252.800000pt;}
.x1d_c01026{left:261.120000pt;}
.x45_c01026{left:269.440000pt;}
.xb_c01026{left:270.720000pt;}
.x23_c01026{left:280.960000pt;}
.x4e_c01026{left:289.920000pt;}
.x29_c01026{left:300.160000pt;}
.xc_c01026{left:309.120000pt;}
.x37_c01026{left:317.440000pt;}
.x3c_c01026{left:327.680000pt;}
.x53_c01026{left:337.280000pt;}
.x3e_c01026{left:338.560000pt;}
.x3f_c01026{left:340.480000pt;}
.x32_c01026{left:347.520000pt;}
.x2a_c01026{left:348.800000pt;}
.x2d_c01026{left:357.120000pt;}
.x4f_c01026{left:366.080000pt;}
.x40_c01026{left:367.360000pt;}
.x19_c01026{left:376.320000pt;}
.x2e_c01026{left:385.920000pt;}
.x1a_c01026{left:394.880000pt;}
.x24_c01026{left:397.440000pt;}
.x54_c01026{left:403.840000pt;}
.x7_c01026{left:405.120000pt;}
.x2b_c01026{left:414.720000pt;}
.x4c_c01026{left:423.040000pt;}
.x8_c01026{left:424.320000pt;}
.x2f_c01026{left:433.920000pt;}
.x55_c01026{left:442.880000pt;}
.x25_c01026{left:444.160000pt;}
.xd_c01026{left:452.480000pt;}
.x38_c01026{left:453.760000pt;}
.x33_c01026{left:472.320000pt;}
.x1f_c01026{left:473.600000pt;}
.x51_c01026{left:482.560000pt;}
.x13_c01026{left:491.520000pt;}
.xe_c01026{left:501.120000pt;}
.x20_c01026{left:502.400000pt;}
.x2c_c01026{left:510.720000pt;}
.x9_c01026{left:512.000000pt;}
.x1b_c01026{left:520.960000pt;}
.x3d_c01026{left:539.520000pt;}
.x49_c01026{left:549.120000pt;}
.xa_c01026{left:550.400000pt;}
.x26_c01026{left:567.680000pt;}
.x4a_c01026{left:569.600000pt;}
.x39_c01026{left:578.560000pt;}
.x41_c01026{left:579.840000pt;}
.x43_c01026{left:588.800000pt;}
.x3a_c01026{left:597.120000pt;}
.x46_c01026{left:599.040000pt;}
.x4d_c01026{left:608.000000pt;}
.x1_c01026{left:612.480000pt;}
.x50_c01026{left:618.240000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_fefe823021b0915d3eb1b3c9.woff2')format("woff");}.ff1_c01027{font-family:ff1_c01027;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m54_c01027{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_c01027{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m43_c01027{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01027{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m0_c01027{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);}
.m47_c01027{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01027{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);}
.m4a_c01027{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);}
.m37_c01027{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.mf_c01027{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_c01027{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m46_c01027{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01027{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m53_c01027{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);}
.m16_c01027{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m18_c01027{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m26_c01027{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m4_c01027{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m8_c01027{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m20_c01027{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1_c01027{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);}
.md_c01027{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m45_c01027{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);}
.m48_c01027{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m21_c01027{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01027{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m34_c01027{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01027{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m35_c01027{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01027{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);}
.m29_c01027{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m10_c01027{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01027{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.me_c01027{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m17_c01027{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.mb_c01027{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m12_c01027{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);}
.m50_c01027{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m13_c01027{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);}
.m22_c01027{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m40_c01027{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m15_c01027{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m42_c01027{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m2_c01027{transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01027{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m41_c01027{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m52_c01027{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01027{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);}
.m2d_c01027{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01027{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01027{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m23_c01027{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m38_c01027{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01027{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);}
.m24_c01027{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);}
.m1f_c01027{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01027{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);}
.m4f_c01027{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m25_c01027{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m28_c01027{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m31_c01027{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01027{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);}
.m11_c01027{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m51_c01027{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01027{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m33_c01027{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m30_c01027{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);}
.m5_c01027{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.ma_c01027{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.mc_c01027{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);}
.m4e_c01027{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01027{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m7_c01027{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m27_c01027{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01027{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m36_c01027{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);}
.m3e_c01027{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m3_c01027{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);}
.m6_c01027{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m9_c01027{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m19_c01027{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m32_c01027{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m49_c01027{transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);}
.m44_c01027{transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);}
.m39_c01027{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.v2_c01027{vertical-align:-2.880000px;}
.v0_c01027{vertical-align:0.000000px;}
.v1_c01027{vertical-align:2.880000px;}
.v3_c01027{vertical-align:5.760000px;}
.ls0_c01027{letter-spacing:0.000000px;}
.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;}
}
.ws1_c01027{word-spacing:-2.139360px;}
.ws4_c01027{word-spacing:-1.558080px;}
.ws6_c01027{word-spacing:0.000000px;}
.ws0_c01027{word-spacing:0.778800px;}
.ws3_c01027{word-spacing:0.955920px;}
.ws2_c01027{word-spacing:5.896320px;}
.ws5_c01027{word-spacing:6.898320px;}
.fc0_c01027{color:transparent;}
.fs5_c01027{font-size:31.680000px;}
.fs2_c01027{font-size:34.560000px;}
.fs6_c01027{font-size:37.440000px;}
.fs7_c01027{font-size:43.200000px;}
.fs3_c01027{font-size:46.080000px;}
.fs8_c01027{font-size:48.960000px;}
.fs4_c01027{font-size:51.840000px;}
.fsc_c01027{font-size:54.720000px;}
.fsb_c01027{font-size:57.600000px;}
.fs1_c01027{font-size:60.480000px;}
.fs9_c01027{font-size:63.360000px;}
.fsa_c01027{font-size:66.240000px;}
.fsd_c01027{font-size:69.120000px;}
.fs0_c01027{font-size:74.880000px;}
.y0_c01027{bottom:0.000000px;}
.y6e_c01027{bottom:49.680000px;}
.y6c_c01027{bottom:50.400000px;}
.y6f_c01027{bottom:51.120000px;}
.y6d_c01027{bottom:52.560000px;}
.y70_c01027{bottom:54.000000px;}
.y6b_c01027{bottom:93.600000px;}
.y68_c01027{bottom:95.040000px;}
.y69_c01027{bottom:95.760000px;}
.y6a_c01027{bottom:96.480000px;}
.y67_c01027{bottom:136.080000px;}
.y63_c01027{bottom:137.520000px;}
.y64_c01027{bottom:138.240000px;}
.y65_c01027{bottom:138.960000px;}
.y66_c01027{bottom:139.680000px;}
.y60_c01027{bottom:178.560000px;}
.y61_c01027{bottom:181.440000px;}
.y62_c01027{bottom:182.160000px;}
.y5e_c01027{bottom:221.760000px;}
.y5d_c01027{bottom:223.920000px;}
.y5f_c01027{bottom:224.640000px;}
.y5b_c01027{bottom:264.240000px;}
.y5a_c01027{bottom:264.960000px;}
.y5c_c01027{bottom:266.400000px;}
.y58_c01027{bottom:267.120000px;}
.y59_c01027{bottom:267.840000px;}
.y56_c01027{bottom:307.440000px;}
.y57_c01027{bottom:309.600000px;}
.y55_c01027{bottom:310.320000px;}
.y52_c01027{bottom:361.440000px;}
.y53_c01027{bottom:362.160000px;}
.y54_c01027{bottom:362.880000px;}
.y51_c01027{bottom:364.320000px;}
.y50_c01027{bottom:403.920000px;}
.y4f_c01027{bottom:404.640000px;}
.y4c_c01027{bottom:405.360000px;}
.y4d_c01027{bottom:406.800000px;}
.y4e_c01027{bottom:407.520000px;}
.y4b_c01027{bottom:447.120000px;}
.y49_c01027{bottom:450.000000px;}
.y4a_c01027{bottom:450.720000px;}
.y48_c01027{bottom:489.600000px;}
.y46_c01027{bottom:491.040000px;}
.y45_c01027{bottom:493.200000px;}
.y47_c01027{bottom:493.920000px;}
.y42_c01027{bottom:534.240000px;}
.y44_c01027{bottom:534.960000px;}
.y43_c01027{bottom:535.680000px;}
.y41_c01027{bottom:536.400000px;}
.y40_c01027{bottom:537.120000px;}
.y3b_c01027{bottom:576.000000px;}
.y3c_c01027{bottom:576.720000px;}
.y3e_c01027{bottom:578.160000px;}
.y3a_c01027{bottom:578.880000px;}
.y3d_c01027{bottom:579.600000px;}
.y3f_c01027{bottom:580.320000px;}
.y36_c01027{bottom:618.480000px;}
.y38_c01027{bottom:619.200000px;}
.y39_c01027{bottom:621.360000px;}
.y37_c01027{bottom:622.080000px;}
.y35_c01027{bottom:622.800000px;}
.y33_c01027{bottom:661.680000px;}
.y30_c01027{bottom:662.400000px;}
.y34_c01027{bottom:663.840000px;}
.y31_c01027{bottom:664.560000px;}
.y32_c01027{bottom:665.280000px;}
.y2e_c01027{bottom:703.440000px;}
.y2c_c01027{bottom:704.880000px;}
.y2d_c01027{bottom:706.320000px;}
.y2f_c01027{bottom:707.040000px;}
.y2b_c01027{bottom:707.760000px;}
.y29_c01027{bottom:747.360000px;}
.y2a_c01027{bottom:748.800000px;}
.y28_c01027{bottom:749.520000px;}
.y27_c01027{bottom:750.240000px;}
.y26_c01027{bottom:781.920000px;}
.y25_c01027{bottom:789.120000px;}
.y21_c01027{bottom:789.840000px;}
.y24_c01027{bottom:792.000000px;}
.y23_c01027{bottom:792.720000px;}
.y22_c01027{bottom:793.440000px;}
.y1f_c01027{bottom:832.320000px;}
.y20_c01027{bottom:834.480000px;}
.y1e_c01027{bottom:835.200000px;}
.y1d_c01027{bottom:835.920000px;}
.y1c_c01027{bottom:836.640000px;}
.y1b_c01027{bottom:874.080000px;}
.y18_c01027{bottom:876.240000px;}
.y1a_c01027{bottom:876.960000px;}
.y19_c01027{bottom:877.680000px;}
.y17_c01027{bottom:879.120000px;}
.y15_c01027{bottom:917.280000px;}
.y13_c01027{bottom:918.720000px;}
.y11_c01027{bottom:919.440000px;}
.y16_c01027{bottom:920.160000px;}
.y14_c01027{bottom:920.880000px;}
.y12_c01027{bottom:922.320000px;}
.yf_c01027{bottom:959.760000px;}
.y10_c01027{bottom:960.480000px;}
.ye_c01027{bottom:962.640000px;}
.yd_c01027{bottom:963.360000px;}
.yc_c01027{bottom:964.080000px;}
.yb_c01027{bottom:964.800000px;}
.ya_c01027{bottom:1003.680000px;}
.y7_c01027{bottom:1005.120000px;}
.y9_c01027{bottom:1005.840000px;}
.y8_c01027{bottom:1006.560000px;}
.y5_c01027{bottom:1046.160000px;}
.y4_c01027{bottom:1046.880000px;}
.y2_c01027{bottom:1049.040000px;}
.y6_c01027{bottom:1049.760000px;}
.y3_c01027{bottom:1051.200000px;}
.y1_c01027{bottom:1082.880000px;}
.h7_c01027{height:28.508906px;}
.h4_c01027{height:31.100625px;}
.h8_c01027{height:33.692344px;}
.h9_c01027{height:38.875781px;}
.h5_c01027{height:41.467500px;}
.he_c01027{height:43.770937px;}
.ha_c01027{height:44.059219px;}
.hc_c01027{height:44.347500px;}
.h6_c01027{height:46.650937px;}
.h10_c01027{height:49.242656px;}
.hf_c01027{height:51.834375px;}
.h3_c01027{height:54.426094px;}
.hb_c01027{height:57.017812px;}
.hd_c01027{height:59.609531px;}
.h11_c01027{height:62.201250px;}
.h2_c01027{height:67.384687px;}
.h0_c01027{height:1152.720000px;}
.h1_c01027{height:1152.750000px;}
.w1_c01027{width:790.500000px;}
.w0_c01027{width:790.560000px;}
.x0_c01027{left:0.000000px;}
.x11_c01027{left:65.520000px;}
.x2_c01027{left:67.680000px;}
.x46_c01027{left:88.560000px;}
.x1d_c01027{left:98.640000px;}
.x33_c01027{left:108.000000px;}
.x27_c01027{left:109.440000px;}
.x2f_c01027{left:120.960000px;}
.x12_c01027{left:131.760000px;}
.x28_c01027{left:142.560000px;}
.x44_c01027{left:152.640000px;}
.x40_c01027{left:162.720000px;}
.x19_c01027{left:164.160000px;}
.x48_c01027{left:174.240000px;}
.x50_c01027{left:184.320000px;}
.x1a_c01027{left:185.760000px;}
.x22_c01027{left:195.840000px;}
.x13_c01027{left:197.280000px;}
.x3_c01027{left:207.360000px;}
.x2c_c01027{left:218.160000px;}
.x4_c01027{left:228.960000px;}
.x1e_c01027{left:239.040000px;}
.xb_c01027{left:250.560000px;}
.x4e_c01027{left:259.200000px;}
.x5_c01027{left:261.360000px;}
.x30_c01027{left:271.440000px;}
.x23_c01027{left:282.960000px;}
.x34_c01027{left:291.600000px;}
.x31_c01027{left:293.760000px;}
.x1b_c01027{left:304.560000px;}
.x14_c01027{left:314.640000px;}
.x29_c01027{left:326.160000px;}
.x6_c01027{left:336.240000px;}
.x15_c01027{left:347.040000px;}
.x4f_c01027{left:356.400000px;}
.x39_c01027{left:357.840000px;}
.x35_c01027{left:369.360000px;}
.x16_c01027{left:378.720000px;}
.x45_c01027{left:380.160000px;}
.x3a_c01027{left:388.800000px;}
.x1f_c01027{left:390.240000px;}
.x36_c01027{left:399.600000px;}
.x3d_c01027{left:401.760000px;}
.x24_c01027{left:411.120000px;}
.xc_c01027{left:421.920000px;}
.x7_c01027{left:432.000000px;}
.x37_c01027{left:433.440000px;}
.x2a_c01027{left:444.240000px;}
.x20_c01027{left:452.160000px;}
.x47_c01027{left:454.320000px;}
.x3b_c01027{left:455.760000px;}
.xd_c01027{left:465.120000px;}
.x49_c01027{left:466.560000px;}
.x8_c01027{left:476.640000px;}
.x2d_c01027{left:487.440000px;}
.xe_c01027{left:498.240000px;}
.x9_c01027{left:509.760000px;}
.x43_c01027{left:520.560000px;}
.x4b_c01027{left:529.920000px;}
.x41_c01027{left:531.360000px;}
.x3e_c01027{left:540.720000px;}
.x17_c01027{left:542.160000px;}
.xf_c01027{left:552.240000px;}
.x42_c01027{left:563.760000px;}
.x1c_c01027{left:573.120000px;}
.x3f_c01027{left:575.280000px;}
.x3c_c01027{left:583.920000px;}
.x2e_c01027{left:585.360000px;}
.x2b_c01027{left:596.160000px;}
.x21_c01027{left:606.960000px;}
.x25_c01027{left:617.760000px;}
.x38_c01027{left:628.560000px;}
.x4a_c01027{left:630.720000px;}
.x4d_c01027{left:639.360000px;}
.x18_c01027{left:650.160000px;}
.x32_c01027{left:661.680000px;}
.x1_c01027{left:667.440000px;}
.xa_c01027{left:671.760000px;}
.x26_c01027{left:681.840000px;}
.x10_c01027{left:684.000000px;}
.x4c_c01027{left:694.080000px;}
@media print{
.v2_c01027{vertical-align:-2.560000pt;}
.v0_c01027{vertical-align:0.000000pt;}
.v1_c01027{vertical-align:2.560000pt;}
.v3_c01027{vertical-align:5.120000pt;}
.ls0_c01027{letter-spacing:0.000000pt;}
.ws1_c01027{word-spacing:-1.901653pt;}
.ws4_c01027{word-spacing:-1.384960pt;}
.ws6_c01027{word-spacing:0.000000pt;}
.ws0_c01027{word-spacing:0.692267pt;}
.ws3_c01027{word-spacing:0.849707pt;}
.ws2_c01027{word-spacing:5.241173pt;}
.ws5_c01027{word-spacing:6.131840pt;}
.fs5_c01027{font-size:28.160000pt;}
.fs2_c01027{font-size:30.720000pt;}
.fs6_c01027{font-size:33.280000pt;}
.fs7_c01027{font-size:38.400000pt;}
.fs3_c01027{font-size:40.960000pt;}
.fs8_c01027{font-size:43.520000pt;}
.fs4_c01027{font-size:46.080000pt;}
.fsc_c01027{font-size:48.640000pt;}
.fsb_c01027{font-size:51.200000pt;}
.fs1_c01027{font-size:53.760000pt;}
.fs9_c01027{font-size:56.320000pt;}
.fsa_c01027{font-size:58.880000pt;}
.fsd_c01027{font-size:61.440000pt;}
.fs0_c01027{font-size:66.560000pt;}
.y0_c01027{bottom:0.000000pt;}
.y6e_c01027{bottom:44.160000pt;}
.y6c_c01027{bottom:44.800000pt;}
.y6f_c01027{bottom:45.440000pt;}
.y6d_c01027{bottom:46.720000pt;}
.y70_c01027{bottom:48.000000pt;}
.y6b_c01027{bottom:83.200000pt;}
.y68_c01027{bottom:84.480000pt;}
.y69_c01027{bottom:85.120000pt;}
.y6a_c01027{bottom:85.760000pt;}
.y67_c01027{bottom:120.960000pt;}
.y63_c01027{bottom:122.240000pt;}
.y64_c01027{bottom:122.880000pt;}
.y65_c01027{bottom:123.520000pt;}
.y66_c01027{bottom:124.160000pt;}
.y60_c01027{bottom:158.720000pt;}
.y61_c01027{bottom:161.280000pt;}
.y62_c01027{bottom:161.920000pt;}
.y5e_c01027{bottom:197.120000pt;}
.y5d_c01027{bottom:199.040000pt;}
.y5f_c01027{bottom:199.680000pt;}
.y5b_c01027{bottom:234.880000pt;}
.y5a_c01027{bottom:235.520000pt;}
.y5c_c01027{bottom:236.800000pt;}
.y58_c01027{bottom:237.440000pt;}
.y59_c01027{bottom:238.080000pt;}
.y56_c01027{bottom:273.280000pt;}
.y57_c01027{bottom:275.200000pt;}
.y55_c01027{bottom:275.840000pt;}
.y52_c01027{bottom:321.280000pt;}
.y53_c01027{bottom:321.920000pt;}
.y54_c01027{bottom:322.560000pt;}
.y51_c01027{bottom:323.840000pt;}
.y50_c01027{bottom:359.040000pt;}
.y4f_c01027{bottom:359.680000pt;}
.y4c_c01027{bottom:360.320000pt;}
.y4d_c01027{bottom:361.600000pt;}
.y4e_c01027{bottom:362.240000pt;}
.y4b_c01027{bottom:397.440000pt;}
.y49_c01027{bottom:400.000000pt;}
.y4a_c01027{bottom:400.640000pt;}
.y48_c01027{bottom:435.200000pt;}
.y46_c01027{bottom:436.480000pt;}
.y45_c01027{bottom:438.400000pt;}
.y47_c01027{bottom:439.040000pt;}
.y42_c01027{bottom:474.880000pt;}
.y44_c01027{bottom:475.520000pt;}
.y43_c01027{bottom:476.160000pt;}
.y41_c01027{bottom:476.800000pt;}
.y40_c01027{bottom:477.440000pt;}
.y3b_c01027{bottom:512.000000pt;}
.y3c_c01027{bottom:512.640000pt;}
.y3e_c01027{bottom:513.920000pt;}
.y3a_c01027{bottom:514.560000pt;}
.y3d_c01027{bottom:515.200000pt;}
.y3f_c01027{bottom:515.840000pt;}
.y36_c01027{bottom:549.760000pt;}
.y38_c01027{bottom:550.400000pt;}
.y39_c01027{bottom:552.320000pt;}
.y37_c01027{bottom:552.960000pt;}
.y35_c01027{bottom:553.600000pt;}
.y33_c01027{bottom:588.160000pt;}
.y30_c01027{bottom:588.800000pt;}
.y34_c01027{bottom:590.080000pt;}
.y31_c01027{bottom:590.720000pt;}
.y32_c01027{bottom:591.360000pt;}
.y2e_c01027{bottom:625.280000pt;}
.y2c_c01027{bottom:626.560000pt;}
.y2d_c01027{bottom:627.840000pt;}
.y2f_c01027{bottom:628.480000pt;}
.y2b_c01027{bottom:629.120000pt;}
.y29_c01027{bottom:664.320000pt;}
.y2a_c01027{bottom:665.600000pt;}
.y28_c01027{bottom:666.240000pt;}
.y27_c01027{bottom:666.880000pt;}
.y26_c01027{bottom:695.040000pt;}
.y25_c01027{bottom:701.440000pt;}
.y21_c01027{bottom:702.080000pt;}
.y24_c01027{bottom:704.000000pt;}
.y23_c01027{bottom:704.640000pt;}
.y22_c01027{bottom:705.280000pt;}
.y1f_c01027{bottom:739.840000pt;}
.y20_c01027{bottom:741.760000pt;}
.y1e_c01027{bottom:742.400000pt;}
.y1d_c01027{bottom:743.040000pt;}
.y1c_c01027{bottom:743.680000pt;}
.y1b_c01027{bottom:776.960000pt;}
.y18_c01027{bottom:778.880000pt;}
.y1a_c01027{bottom:779.520000pt;}
.y19_c01027{bottom:780.160000pt;}
.y17_c01027{bottom:781.440000pt;}
.y15_c01027{bottom:815.360000pt;}
.y13_c01027{bottom:816.640000pt;}
.y11_c01027{bottom:817.280000pt;}
.y16_c01027{bottom:817.920000pt;}
.y14_c01027{bottom:818.560000pt;}
.y12_c01027{bottom:819.840000pt;}
.yf_c01027{bottom:853.120000pt;}
.y10_c01027{bottom:853.760000pt;}
.ye_c01027{bottom:855.680000pt;}
.yd_c01027{bottom:856.320000pt;}
.yc_c01027{bottom:856.960000pt;}
.yb_c01027{bottom:857.600000pt;}
.ya_c01027{bottom:892.160000pt;}
.y7_c01027{bottom:893.440000pt;}
.y9_c01027{bottom:894.080000pt;}
.y8_c01027{bottom:894.720000pt;}
.y5_c01027{bottom:929.920000pt;}
.y4_c01027{bottom:930.560000pt;}
.y2_c01027{bottom:932.480000pt;}
.y6_c01027{bottom:933.120000pt;}
.y3_c01027{bottom:934.400000pt;}
.y1_c01027{bottom:962.560000pt;}
.h7_c01027{height:25.341250pt;}
.h4_c01027{height:27.645000pt;}
.h8_c01027{height:29.948750pt;}
.h9_c01027{height:34.556250pt;}
.h5_c01027{height:36.860000pt;}
.he_c01027{height:38.907500pt;}
.ha_c01027{height:39.163750pt;}
.hc_c01027{height:39.420000pt;}
.h6_c01027{height:41.467500pt;}
.h10_c01027{height:43.771250pt;}
.hf_c01027{height:46.075000pt;}
.h3_c01027{height:48.378750pt;}
.hb_c01027{height:50.682500pt;}
.hd_c01027{height:52.986250pt;}
.h11_c01027{height:55.290000pt;}
.h2_c01027{height:59.897500pt;}
.h0_c01027{height:1024.640000pt;}
.h1_c01027{height:1024.666667pt;}
.w1_c01027{width:702.666667pt;}
.w0_c01027{width:702.720000pt;}
.x0_c01027{left:0.000000pt;}
.x11_c01027{left:58.240000pt;}
.x2_c01027{left:60.160000pt;}
.x46_c01027{left:78.720000pt;}
.x1d_c01027{left:87.680000pt;}
.x33_c01027{left:96.000000pt;}
.x27_c01027{left:97.280000pt;}
.x2f_c01027{left:107.520000pt;}
.x12_c01027{left:117.120000pt;}
.x28_c01027{left:126.720000pt;}
.x44_c01027{left:135.680000pt;}
.x40_c01027{left:144.640000pt;}
.x19_c01027{left:145.920000pt;}
.x48_c01027{left:154.880000pt;}
.x50_c01027{left:163.840000pt;}
.x1a_c01027{left:165.120000pt;}
.x22_c01027{left:174.080000pt;}
.x13_c01027{left:175.360000pt;}
.x3_c01027{left:184.320000pt;}
.x2c_c01027{left:193.920000pt;}
.x4_c01027{left:203.520000pt;}
.x1e_c01027{left:212.480000pt;}
.xb_c01027{left:222.720000pt;}
.x4e_c01027{left:230.400000pt;}
.x5_c01027{left:232.320000pt;}
.x30_c01027{left:241.280000pt;}
.x23_c01027{left:251.520000pt;}
.x34_c01027{left:259.200000pt;}
.x31_c01027{left:261.120000pt;}
.x1b_c01027{left:270.720000pt;}
.x14_c01027{left:279.680000pt;}
.x29_c01027{left:289.920000pt;}
.x6_c01027{left:298.880000pt;}
.x15_c01027{left:308.480000pt;}
.x4f_c01027{left:316.800000pt;}
.x39_c01027{left:318.080000pt;}
.x35_c01027{left:328.320000pt;}
.x16_c01027{left:336.640000pt;}
.x45_c01027{left:337.920000pt;}
.x3a_c01027{left:345.600000pt;}
.x1f_c01027{left:346.880000pt;}
.x36_c01027{left:355.200000pt;}
.x3d_c01027{left:357.120000pt;}
.x24_c01027{left:365.440000pt;}
.xc_c01027{left:375.040000pt;}
.x7_c01027{left:384.000000pt;}
.x37_c01027{left:385.280000pt;}
.x2a_c01027{left:394.880000pt;}
.x20_c01027{left:401.920000pt;}
.x47_c01027{left:403.840000pt;}
.x3b_c01027{left:405.120000pt;}
.xd_c01027{left:413.440000pt;}
.x49_c01027{left:414.720000pt;}
.x8_c01027{left:423.680000pt;}
.x2d_c01027{left:433.280000pt;}
.xe_c01027{left:442.880000pt;}
.x9_c01027{left:453.120000pt;}
.x43_c01027{left:462.720000pt;}
.x4b_c01027{left:471.040000pt;}
.x41_c01027{left:472.320000pt;}
.x3e_c01027{left:480.640000pt;}
.x17_c01027{left:481.920000pt;}
.xf_c01027{left:490.880000pt;}
.x42_c01027{left:501.120000pt;}
.x1c_c01027{left:509.440000pt;}
.x3f_c01027{left:511.360000pt;}
.x3c_c01027{left:519.040000pt;}
.x2e_c01027{left:520.320000pt;}
.x2b_c01027{left:529.920000pt;}
.x21_c01027{left:539.520000pt;}
.x25_c01027{left:549.120000pt;}
.x38_c01027{left:558.720000pt;}
.x4a_c01027{left:560.640000pt;}
.x4d_c01027{left:568.320000pt;}
.x18_c01027{left:577.920000pt;}
.x32_c01027{left:588.160000pt;}
.x1_c01027{left:593.280000pt;}
.xa_c01027{left:597.120000pt;}
.x26_c01027{left:606.080000pt;}
.x10_c01027{left:608.000000pt;}
.x4c_c01027{left:616.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_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_a8aecea745cb3d04c4f0e24c.woff2')format("woff");}.ff1_c01028{font-family:ff1_c01028;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m35_c01028{transform:matrix(0.242350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242350,0.000000,0.000000,0.250000,0,0);}
.m29_c01028{transform:matrix(0.248125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248125,0.000000,0.000000,0.250000,0,0);}
.m1c_c01028{transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);}
.m59_c01028{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);}
.m53_c01028{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01028{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m19_c01028{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);}
.m2a_c01028{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);}
.m28_c01028{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1_c01028{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m30_c01028{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m49_c01028{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m58_c01028{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m69_c01028{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2_c01028{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01028{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m6d_c01028{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01028{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m6b_c01028{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);}
.m4d_c01028{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);}
.m4e_c01028{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);}
.m40_c01028{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m60_c01028{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m22_c01028{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m0_c01028{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_c01028{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m32_c01028{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m62_c01028{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m17_c01028{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);}
.m33_c01028{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m36_c01028{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m5d_c01028{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);}
.m61_c01028{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);}
.m31_c01028{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);}
.m5e_c01028{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m9_c01028{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);}
.m63_c01028{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.md_c01028{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);}
.m5b_c01028{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);}
.m44_c01028{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);}
.mb_c01028{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01028{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m46_c01028{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.ma_c01028{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m68_c01028{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);}
.m2d_c01028{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m5_c01028{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);}
.m4a_c01028{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01028{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m24_c01028{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);}
.m6_c01028{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m21_c01028{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m20_c01028{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);}
.m52_c01028{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m7_c01028{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_c01028{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01028{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01028{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m6e_c01028{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m50_c01028{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);}
.m1e_c01028{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m6a_c01028{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m42_c01028{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m57_c01028{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);}
.m2f_c01028{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m8_c01028{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01028{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m64_c01028{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m47_c01028{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);}
.m48_c01028{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);}
.m3_c01028{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m67_c01028{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m23_c01028{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.me_c01028{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);}
.m39_c01028{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m14_c01028{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m34_c01028{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);}
.m2b_c01028{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m54_c01028{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m13_c01028{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01028{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m41_c01028{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);}
.m45_c01028{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.mf_c01028{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m6c_c01028{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);}
.m3d_c01028{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);}
.m3e_c01028{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m16_c01028{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m5c_c01028{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m11_c01028{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m5a_c01028{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m56_c01028{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);}
.m38_c01028{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);}
.m25_c01028{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m37_c01028{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m27_c01028{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);}
.m12_c01028{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m55_c01028{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m66_c01028{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m43_c01028{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m51_c01028{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);}
.mc_c01028{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m10_c01028{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01028{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01028{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m18_c01028{transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);}
.m65_c01028{transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);}
.m5f_c01028{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01028{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01028{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m4_c01028{transform:matrix(1.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01028{vertical-align:0.000000px;}
.ls0_c01028{letter-spacing:0.000000px;}
.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;}
.fc0_c01028{color:transparent;}
.fs4_c01028{font-size:17.280000px;}
.fsb_c01028{font-size:31.680000px;}
.fs7_c01028{font-size:34.560000px;}
.fse_c01028{font-size:37.440000px;}
.fs9_c01028{font-size:43.200000px;}
.fs3_c01028{font-size:46.080000px;}
.fs5_c01028{font-size:48.960000px;}
.fs6_c01028{font-size:51.840000px;}
.fsa_c01028{font-size:54.720000px;}
.fs8_c01028{font-size:57.600000px;}
.fs2_c01028{font-size:60.480000px;}
.fsd_c01028{font-size:63.360000px;}
.fsc_c01028{font-size:66.240000px;}
.fs1_c01028{font-size:69.120000px;}
.fs0_c01028{font-size:77.760000px;}
.y0_c01028{bottom:0.000000px;}
.y68_c01028{bottom:24.480000px;}
.y69_c01028{bottom:26.640000px;}
.y67_c01028{bottom:27.360000px;}
.y66_c01028{bottom:28.080000px;}
.y63_c01028{bottom:67.680000px;}
.y64_c01028{bottom:69.840000px;}
.y65_c01028{bottom:70.560000px;}
.y60_c01028{bottom:110.880000px;}
.y61_c01028{bottom:113.040000px;}
.y5f_c01028{bottom:113.760000px;}
.y62_c01028{bottom:114.480000px;}
.y5b_c01028{bottom:154.080000px;}
.y5d_c01028{bottom:156.240000px;}
.y5c_c01028{bottom:156.960000px;}
.y5e_c01028{bottom:157.680000px;}
.y5a_c01028{bottom:197.280000px;}
.y58_c01028{bottom:199.440000px;}
.y59_c01028{bottom:200.160000px;}
.y56_c01028{bottom:242.640000px;}
.y55_c01028{bottom:243.360000px;}
.y57_c01028{bottom:244.080000px;}
.y52_c01028{bottom:294.480000px;}
.y54_c01028{bottom:295.200000px;}
.y53_c01028{bottom:297.360000px;}
.y4f_c01028{bottom:336.960000px;}
.y50_c01028{bottom:337.680000px;}
.y51_c01028{bottom:339.120000px;}
.y4e_c01028{bottom:339.840000px;}
.y4c_c01028{bottom:379.440000px;}
.y4a_c01028{bottom:380.160000px;}
.y4d_c01028{bottom:381.600000px;}
.y4b_c01028{bottom:382.320000px;}
.y49_c01028{bottom:383.040000px;}
.y47_c01028{bottom:422.640000px;}
.y48_c01028{bottom:423.360000px;}
.y46_c01028{bottom:425.520000px;}
.y44_c01028{bottom:465.120000px;}
.y42_c01028{bottom:465.840000px;}
.y43_c01028{bottom:468.000000px;}
.y45_c01028{bottom:468.720000px;}
.y3e_c01028{bottom:508.320000px;}
.y3f_c01028{bottom:509.040000px;}
.y40_c01028{bottom:510.480000px;}
.y3d_c01028{bottom:511.200000px;}
.y41_c01028{bottom:511.920000px;}
.y3b_c01028{bottom:550.800000px;}
.y3a_c01028{bottom:551.520000px;}
.y3c_c01028{bottom:552.960000px;}
.y38_c01028{bottom:553.680000px;}
.y39_c01028{bottom:554.400000px;}
.y36_c01028{bottom:593.280000px;}
.y34_c01028{bottom:594.000000px;}
.y37_c01028{bottom:594.720000px;}
.y35_c01028{bottom:596.160000px;}
.y33_c01028{bottom:596.880000px;}
.y31_c01028{bottom:635.760000px;}
.y32_c01028{bottom:636.480000px;}
.y30_c01028{bottom:637.920000px;}
.y2e_c01028{bottom:639.360000px;}
.y2f_c01028{bottom:640.080000px;}
.y2d_c01028{bottom:679.680000px;}
.y2c_c01028{bottom:681.840000px;}
.y2b_c01028{bottom:682.560000px;}
.y2a_c01028{bottom:683.280000px;}
.y27_c01028{bottom:732.960000px;}
.y26_c01028{bottom:733.680000px;}
.y29_c01028{bottom:734.400000px;}
.y25_c01028{bottom:735.120000px;}
.y28_c01028{bottom:735.840000px;}
.y24_c01028{bottom:736.560000px;}
.y1f_c01028{bottom:775.440000px;}
.y23_c01028{bottom:776.160000px;}
.y20_c01028{bottom:776.880000px;}
.y21_c01028{bottom:778.320000px;}
.y22_c01028{bottom:779.040000px;}
.y1e_c01028{bottom:779.760000px;}
.y1d_c01028{bottom:818.640000px;}
.y1c_c01028{bottom:819.360000px;}
.y1b_c01028{bottom:821.520000px;}
.y1a_c01028{bottom:822.240000px;}
.y19_c01028{bottom:861.120000px;}
.y16_c01028{bottom:861.840000px;}
.y15_c01028{bottom:862.560000px;}
.y18_c01028{bottom:864.000000px;}
.y17_c01028{bottom:864.720000px;}
.y14_c01028{bottom:865.440000px;}
.y12_c01028{bottom:904.320000px;}
.y11_c01028{bottom:905.040000px;}
.y10_c01028{bottom:905.760000px;}
.y13_c01028{bottom:907.200000px;}
.ye_c01028{bottom:907.920000px;}
.yf_c01028{bottom:908.640000px;}
.yc_c01028{bottom:947.520000px;}
.yd_c01028{bottom:948.960000px;}
.yb_c01028{bottom:949.680000px;}
.ya_c01028{bottom:951.120000px;}
.y8_c01028{bottom:989.280000px;}
.y9_c01028{bottom:990.000000px;}
.y7_c01028{bottom:992.160000px;}
.y6_c01028{bottom:992.880000px;}
.y5_c01028{bottom:993.600000px;}
.y2_c01028{bottom:1044.000000px;}
.y4_c01028{bottom:1046.160000px;}
.y3_c01028{bottom:1046.880000px;}
.y1_c01028{bottom:1095.840000px;}
.h6_c01028{height:15.550313px;}
.hd_c01028{height:28.508906px;}
.h9_c01028{height:31.100625px;}
.h10_c01028{height:33.692344px;}
.hb_c01028{height:38.875781px;}
.h5_c01028{height:41.467500px;}
.h7_c01028{height:44.059219px;}
.h8_c01028{height:46.650937px;}
.hc_c01028{height:49.242656px;}
.ha_c01028{height:51.834375px;}
.h4_c01028{height:54.426094px;}
.hf_c01028{height:57.017812px;}
.he_c01028{height:59.609531px;}
.h3_c01028{height:62.201250px;}
.h2_c01028{height:69.976406px;}
.h1_c01028{height:1162.500000px;}
.h0_c01028{height:1162.800000px;}
.w1_c01028{width:783.750000px;}
.w0_c01028{width:784.080000px;}
.x0_c01028{left:0.000000px;}
.x1f_c01028{left:63.360000px;}
.x2_c01028{left:64.800000px;}
.x18_c01028{left:95.760000px;}
.x25_c01028{left:97.920000px;}
.x3a_c01028{left:99.360000px;}
.x2d_c01028{left:108.000000px;}
.x38_c01028{left:117.360000px;}
.x3_c01028{left:129.600000px;}
.x20_c01028{left:140.400000px;}
.x42_c01028{left:142.560000px;}
.x26_c01028{left:150.480000px;}
.x21_c01028{left:162.000000px;}
.x44_c01028{left:164.160000px;}
.x6_c01028{left:172.800000px;}
.x46_c01028{left:174.240000px;}
.x27_c01028{left:184.320000px;}
.x33_c01028{left:192.960000px;}
.x7_c01028{left:194.400000px;}
.x4_c01028{left:205.200000px;}
.x40_c01028{left:215.280000px;}
.x3d_c01028{left:226.800000px;}
.x19_c01028{left:236.160000px;}
.x28_c01028{left:237.600000px;}
.x5_c01028{left:239.760000px;}
.x45_c01028{left:247.680000px;}
.x31_c01028{left:259.200000px;}
.x8_c01028{left:269.280000px;}
.x22_c01028{left:280.080000px;}
.x1a_c01028{left:290.880000px;}
.x10_c01028{left:301.680000px;}
.x9_c01028{left:311.760000px;}
.x34_c01028{left:313.200000px;}
.x29_c01028{left:324.000000px;}
.x23_c01028{left:334.080000px;}
.x3f_c01028{left:335.520000px;}
.x11_c01028{left:345.600000px;}
.x2a_c01028{left:355.680000px;}
.xa_c01028{left:366.480000px;}
.x4c_c01028{left:376.560000px;}
.x3b_c01028{left:378.000000px;}
.x12_c01028{left:386.640000px;}
.x1b_c01028{left:388.080000px;}
.xb_c01028{left:398.160000px;}
.x2b_c01028{left:399.600000px;}
.x3c_c01028{left:410.400000px;}
.x13_c01028{left:421.200000px;}
.x24_c01028{left:429.840000px;}
.x49_c01028{left:432.000000px;}
.x2f_c01028{left:453.600000px;}
.x2c_c01028{left:463.680000px;}
.x4b_c01028{left:465.120000px;}
.xc_c01028{left:474.480000px;}
.x47_c01028{left:484.560000px;}
.x30_c01028{left:486.000000px;}
.x37_c01028{left:496.080000px;}
.x14_c01028{left:506.880000px;}
.x32_c01028{left:508.320000px;}
.xd_c01028{left:516.960000px;}
.x43_c01028{left:518.400000px;}
.x15_c01028{left:539.280000px;}
.x4d_c01028{left:550.080000px;}
.x4a_c01028{left:551.520000px;}
.xe_c01028{left:560.880000px;}
.x39_c01028{left:572.400000px;}
.x4e_c01028{left:573.840000px;}
.x16_c01028{left:582.480000px;}
.x1c_c01028{left:594.000000px;}
.x35_c01028{left:604.800000px;}
.x1d_c01028{left:626.400000px;}
.x3e_c01028{left:637.200000px;}
.x36_c01028{left:641.520000px;}
.x2e_c01028{left:648.000000px;}
.x4f_c01028{left:649.440000px;}
.xf_c01028{left:658.800000px;}
.x17_c01028{left:669.600000px;}
.x1_c01028{left:674.640000px;}
.x48_c01028{left:680.400000px;}
.x1e_c01028{left:681.840000px;}
.x41_c01028{left:703.440000px;}
@media print{
.v0_c01028{vertical-align:0.000000pt;}
.ls0_c01028{letter-spacing:0.000000pt;}
.ws0_c01028{word-spacing:0.000000pt;}
.fs4_c01028{font-size:15.360000pt;}
.fsb_c01028{font-size:28.160000pt;}
.fs7_c01028{font-size:30.720000pt;}
.fse_c01028{font-size:33.280000pt;}
.fs9_c01028{font-size:38.400000pt;}
.fs3_c01028{font-size:40.960000pt;}
.fs5_c01028{font-size:43.520000pt;}
.fs6_c01028{font-size:46.080000pt;}
.fsa_c01028{font-size:48.640000pt;}
.fs8_c01028{font-size:51.200000pt;}
.fs2_c01028{font-size:53.760000pt;}
.fsd_c01028{font-size:56.320000pt;}
.fsc_c01028{font-size:58.880000pt;}
.fs1_c01028{font-size:61.440000pt;}
.fs0_c01028{font-size:69.120000pt;}
.y0_c01028{bottom:0.000000pt;}
.y68_c01028{bottom:21.760000pt;}
.y69_c01028{bottom:23.680000pt;}
.y67_c01028{bottom:24.320000pt;}
.y66_c01028{bottom:24.960000pt;}
.y63_c01028{bottom:60.160000pt;}
.y64_c01028{bottom:62.080000pt;}
.y65_c01028{bottom:62.720000pt;}
.y60_c01028{bottom:98.560000pt;}
.y61_c01028{bottom:100.480000pt;}
.y5f_c01028{bottom:101.120000pt;}
.y62_c01028{bottom:101.760000pt;}
.y5b_c01028{bottom:136.960000pt;}
.y5d_c01028{bottom:138.880000pt;}
.y5c_c01028{bottom:139.520000pt;}
.y5e_c01028{bottom:140.160000pt;}
.y5a_c01028{bottom:175.360000pt;}
.y58_c01028{bottom:177.280000pt;}
.y59_c01028{bottom:177.920000pt;}
.y56_c01028{bottom:215.680000pt;}
.y55_c01028{bottom:216.320000pt;}
.y57_c01028{bottom:216.960000pt;}
.y52_c01028{bottom:261.760000pt;}
.y54_c01028{bottom:262.400000pt;}
.y53_c01028{bottom:264.320000pt;}
.y4f_c01028{bottom:299.520000pt;}
.y50_c01028{bottom:300.160000pt;}
.y51_c01028{bottom:301.440000pt;}
.y4e_c01028{bottom:302.080000pt;}
.y4c_c01028{bottom:337.280000pt;}
.y4a_c01028{bottom:337.920000pt;}
.y4d_c01028{bottom:339.200000pt;}
.y4b_c01028{bottom:339.840000pt;}
.y49_c01028{bottom:340.480000pt;}
.y47_c01028{bottom:375.680000pt;}
.y48_c01028{bottom:376.320000pt;}
.y46_c01028{bottom:378.240000pt;}
.y44_c01028{bottom:413.440000pt;}
.y42_c01028{bottom:414.080000pt;}
.y43_c01028{bottom:416.000000pt;}
.y45_c01028{bottom:416.640000pt;}
.y3e_c01028{bottom:451.840000pt;}
.y3f_c01028{bottom:452.480000pt;}
.y40_c01028{bottom:453.760000pt;}
.y3d_c01028{bottom:454.400000pt;}
.y41_c01028{bottom:455.040000pt;}
.y3b_c01028{bottom:489.600000pt;}
.y3a_c01028{bottom:490.240000pt;}
.y3c_c01028{bottom:491.520000pt;}
.y38_c01028{bottom:492.160000pt;}
.y39_c01028{bottom:492.800000pt;}
.y36_c01028{bottom:527.360000pt;}
.y34_c01028{bottom:528.000000pt;}
.y37_c01028{bottom:528.640000pt;}
.y35_c01028{bottom:529.920000pt;}
.y33_c01028{bottom:530.560000pt;}
.y31_c01028{bottom:565.120000pt;}
.y32_c01028{bottom:565.760000pt;}
.y30_c01028{bottom:567.040000pt;}
.y2e_c01028{bottom:568.320000pt;}
.y2f_c01028{bottom:568.960000pt;}
.y2d_c01028{bottom:604.160000pt;}
.y2c_c01028{bottom:606.080000pt;}
.y2b_c01028{bottom:606.720000pt;}
.y2a_c01028{bottom:607.360000pt;}
.y27_c01028{bottom:651.520000pt;}
.y26_c01028{bottom:652.160000pt;}
.y29_c01028{bottom:652.800000pt;}
.y25_c01028{bottom:653.440000pt;}
.y28_c01028{bottom:654.080000pt;}
.y24_c01028{bottom:654.720000pt;}
.y1f_c01028{bottom:689.280000pt;}
.y23_c01028{bottom:689.920000pt;}
.y20_c01028{bottom:690.560000pt;}
.y21_c01028{bottom:691.840000pt;}
.y22_c01028{bottom:692.480000pt;}
.y1e_c01028{bottom:693.120000pt;}
.y1d_c01028{bottom:727.680000pt;}
.y1c_c01028{bottom:728.320000pt;}
.y1b_c01028{bottom:730.240000pt;}
.y1a_c01028{bottom:730.880000pt;}
.y19_c01028{bottom:765.440000pt;}
.y16_c01028{bottom:766.080000pt;}
.y15_c01028{bottom:766.720000pt;}
.y18_c01028{bottom:768.000000pt;}
.y17_c01028{bottom:768.640000pt;}
.y14_c01028{bottom:769.280000pt;}
.y12_c01028{bottom:803.840000pt;}
.y11_c01028{bottom:804.480000pt;}
.y10_c01028{bottom:805.120000pt;}
.y13_c01028{bottom:806.400000pt;}
.ye_c01028{bottom:807.040000pt;}
.yf_c01028{bottom:807.680000pt;}
.yc_c01028{bottom:842.240000pt;}
.yd_c01028{bottom:843.520000pt;}
.yb_c01028{bottom:844.160000pt;}
.ya_c01028{bottom:845.440000pt;}
.y8_c01028{bottom:879.360000pt;}
.y9_c01028{bottom:880.000000pt;}
.y7_c01028{bottom:881.920000pt;}
.y6_c01028{bottom:882.560000pt;}
.y5_c01028{bottom:883.200000pt;}
.y2_c01028{bottom:928.000000pt;}
.y4_c01028{bottom:929.920000pt;}
.y3_c01028{bottom:930.560000pt;}
.y1_c01028{bottom:974.080000pt;}
.h6_c01028{height:13.822500pt;}
.hd_c01028{height:25.341250pt;}
.h9_c01028{height:27.645000pt;}
.h10_c01028{height:29.948750pt;}
.hb_c01028{height:34.556250pt;}
.h5_c01028{height:36.860000pt;}
.h7_c01028{height:39.163750pt;}
.h8_c01028{height:41.467500pt;}
.hc_c01028{height:43.771250pt;}
.ha_c01028{height:46.075000pt;}
.h4_c01028{height:48.378750pt;}
.hf_c01028{height:50.682500pt;}
.he_c01028{height:52.986250pt;}
.h3_c01028{height:55.290000pt;}
.h2_c01028{height:62.201250pt;}
.h1_c01028{height:1033.333333pt;}
.h0_c01028{height:1033.600000pt;}
.w1_c01028{width:696.666667pt;}
.w0_c01028{width:696.960000pt;}
.x0_c01028{left:0.000000pt;}
.x1f_c01028{left:56.320000pt;}
.x2_c01028{left:57.600000pt;}
.x18_c01028{left:85.120000pt;}
.x25_c01028{left:87.040000pt;}
.x3a_c01028{left:88.320000pt;}
.x2d_c01028{left:96.000000pt;}
.x38_c01028{left:104.320000pt;}
.x3_c01028{left:115.200000pt;}
.x20_c01028{left:124.800000pt;}
.x42_c01028{left:126.720000pt;}
.x26_c01028{left:133.760000pt;}
.x21_c01028{left:144.000000pt;}
.x44_c01028{left:145.920000pt;}
.x6_c01028{left:153.600000pt;}
.x46_c01028{left:154.880000pt;}
.x27_c01028{left:163.840000pt;}
.x33_c01028{left:171.520000pt;}
.x7_c01028{left:172.800000pt;}
.x4_c01028{left:182.400000pt;}
.x40_c01028{left:191.360000pt;}
.x3d_c01028{left:201.600000pt;}
.x19_c01028{left:209.920000pt;}
.x28_c01028{left:211.200000pt;}
.x5_c01028{left:213.120000pt;}
.x45_c01028{left:220.160000pt;}
.x31_c01028{left:230.400000pt;}
.x8_c01028{left:239.360000pt;}
.x22_c01028{left:248.960000pt;}
.x1a_c01028{left:258.560000pt;}
.x10_c01028{left:268.160000pt;}
.x9_c01028{left:277.120000pt;}
.x34_c01028{left:278.400000pt;}
.x29_c01028{left:288.000000pt;}
.x23_c01028{left:296.960000pt;}
.x3f_c01028{left:298.240000pt;}
.x11_c01028{left:307.200000pt;}
.x2a_c01028{left:316.160000pt;}
.xa_c01028{left:325.760000pt;}
.x4c_c01028{left:334.720000pt;}
.x3b_c01028{left:336.000000pt;}
.x12_c01028{left:343.680000pt;}
.x1b_c01028{left:344.960000pt;}
.xb_c01028{left:353.920000pt;}
.x2b_c01028{left:355.200000pt;}
.x3c_c01028{left:364.800000pt;}
.x13_c01028{left:374.400000pt;}
.x24_c01028{left:382.080000pt;}
.x49_c01028{left:384.000000pt;}
.x2f_c01028{left:403.200000pt;}
.x2c_c01028{left:412.160000pt;}
.x4b_c01028{left:413.440000pt;}
.xc_c01028{left:421.760000pt;}
.x47_c01028{left:430.720000pt;}
.x30_c01028{left:432.000000pt;}
.x37_c01028{left:440.960000pt;}
.x14_c01028{left:450.560000pt;}
.x32_c01028{left:451.840000pt;}
.xd_c01028{left:459.520000pt;}
.x43_c01028{left:460.800000pt;}
.x15_c01028{left:479.360000pt;}
.x4d_c01028{left:488.960000pt;}
.x4a_c01028{left:490.240000pt;}
.xe_c01028{left:498.560000pt;}
.x39_c01028{left:508.800000pt;}
.x4e_c01028{left:510.080000pt;}
.x16_c01028{left:517.760000pt;}
.x1c_c01028{left:528.000000pt;}
.x35_c01028{left:537.600000pt;}
.x1d_c01028{left:556.800000pt;}
.x3e_c01028{left:566.400000pt;}
.x36_c01028{left:570.240000pt;}
.x2e_c01028{left:576.000000pt;}
.x4f_c01028{left:577.280000pt;}
.xf_c01028{left:585.600000pt;}
.x17_c01028{left:595.200000pt;}
.x1_c01028{left:599.680000pt;}
.x48_c01028{left:604.800000pt;}
.x1e_c01028{left:606.080000pt;}
.x41_c01028{left:625.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0e8b706453ecb3124b06a6c8.woff2')format("woff");}.ff1_c01029{font-family:ff1_c01029;line-height:1.109863;font-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_c01029{transform:matrix(0.241375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241375,0.000000,0.000000,0.250000,0,0);}
.m22_c01029{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);}
.m50_c01029{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m28_c01029{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01029{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01029{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m5a_c01029{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m4f_c01029{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01029{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m49_c01029{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01029{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01029{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);}
.m2a_c01029{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m5_c01029{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01029{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);}
.m44_c01029{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01029{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);}
.m26_c01029{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01029{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);}
.m10_c01029{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);}
.m40_c01029{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m52_c01029{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01029{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);}
.m2f_c01029{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);}
.m0_c01029{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m3_c01029{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);}
.mf_c01029{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m42_c01029{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);}
.m23_c01029{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);}
.m27_c01029{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01029{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m8_c01029{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m46_c01029{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);}
.m1f_c01029{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m45_c01029{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);}
.m37_c01029{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m13_c01029{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);}
.m32_c01029{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01029{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01029{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m19_c01029{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m4_c01029{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);}
.m1d_c01029{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m31_c01029{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m14_c01029{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_c01029{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m5b_c01029{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.md_c01029{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m41_c01029{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m9_c01029{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);}
.m18_c01029{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m7_c01029{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m30_c01029{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01029{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);}
.m3b_c01029{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m17_c01029{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01029{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m57_c01029{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m20_c01029{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);}
.ma_c01029{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m11_c01029{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m43_c01029{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m6_c01029{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);}
.mb_c01029{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01029{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m5d_c01029{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);}
.mc_c01029{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01029{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m33_c01029{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m29_c01029{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m34_c01029{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);}
.m16_c01029{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m5c_c01029{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m35_c01029{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);}
.m2_c01029{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.me_c01029{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m59_c01029{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m25_c01029{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m21_c01029{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01029{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m15_c01029{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);}
.m47_c01029{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m55_c01029{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);}
.m36_c01029{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m1_c01029{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01029{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m38_c01029{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.m24_c01029{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);}
.m56_c01029{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m53_c01029{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m54_c01029{transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);}
.m58_c01029{transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);}
.m39_c01029{transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);}
.m51_c01029{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.v0_c01029{vertical-align:0.000000px;}
.v1_c01029{vertical-align:8.640000px;}
.ls0_c01029{letter-spacing:0.000000px;}
.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.773520px;}
.ws1_c01029{word-spacing:0.000000px;}
.fc0_c01029{color:transparent;}
.fsd_c01029{font-size:23.040000px;}
.fs1_c01029{font-size:34.560000px;}
.fs7_c01029{font-size:43.200000px;}
.fs3_c01029{font-size:46.080000px;}
.fs2_c01029{font-size:48.960000px;}
.fs4_c01029{font-size:51.840000px;}
.fsb_c01029{font-size:54.720000px;}
.fs9_c01029{font-size:57.600000px;}
.fs6_c01029{font-size:60.480000px;}
.fs5_c01029{font-size:63.360000px;}
.fsc_c01029{font-size:66.240000px;}
.fsa_c01029{font-size:69.120000px;}
.fs0_c01029{font-size:72.000000px;}
.fs8_c01029{font-size:74.880000px;}
.y0_c01029{bottom:0.000000px;}
.y61_c01029{bottom:46.800000px;}
.y63_c01029{bottom:47.520000px;}
.y65_c01029{bottom:48.240000px;}
.y62_c01029{bottom:49.680000px;}
.y64_c01029{bottom:50.400000px;}
.y5f_c01029{bottom:91.440000px;}
.y5e_c01029{bottom:92.160000px;}
.y5d_c01029{bottom:92.880000px;}
.y60_c01029{bottom:93.600000px;}
.y5c_c01029{bottom:133.200000px;}
.y5b_c01029{bottom:133.920000px;}
.y59_c01029{bottom:136.080000px;}
.y5a_c01029{bottom:136.800000px;}
.y58_c01029{bottom:176.400000px;}
.y57_c01029{bottom:178.560000px;}
.y56_c01029{bottom:179.280000px;}
.y51_c01029{bottom:217.440000px;}
.y53_c01029{bottom:218.160000px;}
.y54_c01029{bottom:218.880000px;}
.y55_c01029{bottom:219.600000px;}
.y50_c01029{bottom:220.320000px;}
.y52_c01029{bottom:221.760000px;}
.y4b_c01029{bottom:261.360000px;}
.y4e_c01029{bottom:262.080000px;}
.y4d_c01029{bottom:263.520000px;}
.y4c_c01029{bottom:264.240000px;}
.y4f_c01029{bottom:264.960000px;}
.y46_c01029{bottom:303.840000px;}
.y4a_c01029{bottom:304.560000px;}
.y49_c01029{bottom:305.280000px;}
.y48_c01029{bottom:306.720000px;}
.y47_c01029{bottom:307.440000px;}
.y43_c01029{bottom:347.760000px;}
.y45_c01029{bottom:349.920000px;}
.y44_c01029{bottom:350.640000px;}
.y41_c01029{bottom:390.240000px;}
.y40_c01029{bottom:390.960000px;}
.y42_c01029{bottom:393.120000px;}
.y3f_c01029{bottom:393.840000px;}
.y3d_c01029{bottom:433.440000px;}
.y3e_c01029{bottom:436.320000px;}
.y3c_c01029{bottom:478.800000px;}
.y3b_c01029{bottom:479.520000px;}
.y3a_c01029{bottom:530.640000px;}
.y39_c01029{bottom:532.800000px;}
.y35_c01029{bottom:573.120000px;}
.y36_c01029{bottom:573.840000px;}
.y34_c01029{bottom:575.280000px;}
.y38_c01029{bottom:576.000000px;}
.y37_c01029{bottom:576.720000px;}
.y31_c01029{bottom:615.600000px;}
.y2f_c01029{bottom:616.320000px;}
.y33_c01029{bottom:617.040000px;}
.y32_c01029{bottom:618.480000px;}
.y30_c01029{bottom:619.200000px;}
.y2c_c01029{bottom:658.080000px;}
.y2e_c01029{bottom:659.520000px;}
.y2a_c01029{bottom:660.960000px;}
.y2d_c01029{bottom:661.680000px;}
.y2b_c01029{bottom:662.400000px;}
.y29_c01029{bottom:663.120000px;}
.y28_c01029{bottom:704.160000px;}
.y27_c01029{bottom:704.880000px;}
.y25_c01029{bottom:743.760000px;}
.y22_c01029{bottom:744.480000px;}
.y26_c01029{bottom:745.200000px;}
.y24_c01029{bottom:746.640000px;}
.y23_c01029{bottom:747.360000px;}
.y21_c01029{bottom:786.240000px;}
.y20_c01029{bottom:786.960000px;}
.y1e_c01029{bottom:787.680000px;}
.y1f_c01029{bottom:789.840000px;}
.y1d_c01029{bottom:828.000000px;}
.y1c_c01029{bottom:828.720000px;}
.y1a_c01029{bottom:832.320000px;}
.y1b_c01029{bottom:833.040000px;}
.y19_c01029{bottom:871.920000px;}
.y16_c01029{bottom:872.640000px;}
.y18_c01029{bottom:874.080000px;}
.y17_c01029{bottom:874.800000px;}
.y15_c01029{bottom:875.520000px;}
.y14_c01029{bottom:876.240000px;}
.y13_c01029{bottom:914.400000px;}
.y12_c01029{bottom:915.120000px;}
.y10_c01029{bottom:959.760000px;}
.y11_c01029{bottom:960.480000px;}
.yf_c01029{bottom:961.200000px;}
.yc_c01029{bottom:999.360000px;}
.ye_c01029{bottom:1000.800000px;}
.y8_c01029{bottom:1001.520000px;}
.yd_c01029{bottom:1002.240000px;}
.yb_c01029{bottom:1002.960000px;}
.ya_c01029{bottom:1003.680000px;}
.y9_c01029{bottom:1004.400000px;}
.y4_c01029{bottom:1042.560000px;}
.y6_c01029{bottom:1043.280000px;}
.y7_c01029{bottom:1044.000000px;}
.y5_c01029{bottom:1045.440000px;}
.y3_c01029{bottom:1046.880000px;}
.y2_c01029{bottom:1047.600000px;}
.y1_c01029{bottom:1102.320000px;}
.hf_c01029{height:20.733750px;}
.h3_c01029{height:31.100625px;}
.h9_c01029{height:38.875781px;}
.h5_c01029{height:41.467500px;}
.h4_c01029{height:44.059219px;}
.h6_c01029{height:46.650937px;}
.hd_c01029{height:49.242656px;}
.hb_c01029{height:51.834375px;}
.h8_c01029{height:54.426094px;}
.h7_c01029{height:57.017812px;}
.he_c01029{height:59.609531px;}
.hc_c01029{height:62.201250px;}
.h2_c01029{height:64.792969px;}
.ha_c01029{height:67.384687px;}
.h1_c01029{height:1164.000000px;}
.h0_c01029{height:1164.240000px;}
.w0_c01029{width:792.000000px;}
.x0_c01029{left:0.000000px;}
.x26_c01029{left:72.000000px;}
.x2_c01029{left:73.440000px;}
.x1c_c01029{left:75.600000px;}
.x17_c01029{left:95.760000px;}
.x3_c01029{left:106.560000px;}
.x3d_c01029{left:108.000000px;}
.x20_c01029{left:118.080000px;}
.xc_c01029{left:127.440000px;}
.x43_c01029{left:128.880000px;}
.x4_c01029{left:138.960000px;}
.x54_c01029{left:140.400000px;}
.x47_c01029{left:150.480000px;}
.x3b_c01029{left:159.840000px;}
.x21_c01029{left:171.360000px;}
.x5_c01029{left:172.800000px;}
.xd_c01029{left:182.160000px;}
.x44_c01029{left:183.600000px;}
.x2c_c01029{left:194.400000px;}
.x33_c01029{left:203.040000px;}
.x4a_c01029{left:204.480000px;}
.xe_c01029{left:215.280000px;}
.x18_c01029{left:224.640000px;}
.x37_c01029{left:226.080000px;}
.x51_c01029{left:235.440000px;}
.x2e_c01029{left:236.880000px;}
.xf_c01029{left:246.240000px;}
.x3e_c01029{left:247.680000px;}
.x27_c01029{left:257.760000px;}
.x19_c01029{left:268.560000px;}
.x3f_c01029{left:278.640000px;}
.x10_c01029{left:280.080000px;}
.x6_c01029{left:290.160000px;}
.x1d_c01029{left:300.240000px;}
.x55_c01029{left:301.680000px;}
.x22_c01029{left:312.480000px;}
.x1e_c01029{left:323.280000px;}
.x5a_c01029{left:334.800000px;}
.x38_c01029{left:344.160000px;}
.x28_c01029{left:354.960000px;}
.x52_c01029{left:356.400000px;}
.x40_c01029{left:365.760000px;}
.x11_c01029{left:376.560000px;}
.x29_c01029{left:387.360000px;}
.x4e_c01029{left:399.600000px;}
.x23_c01029{left:408.240000px;}
.x48_c01029{left:409.680000px;}
.x2f_c01029{left:419.040000px;}
.x4f_c01029{left:420.480000px;}
.x56_c01029{left:429.840000px;}
.x41_c01029{left:431.280000px;}
.x7_c01029{left:440.640000px;}
.x1a_c01029{left:442.080000px;}
.x12_c01029{left:451.440000px;}
.x39_c01029{left:452.880000px;}
.x8_c01029{left:462.240000px;}
.x45_c01029{left:463.680000px;}
.x34_c01029{left:474.480000px;}
.x2a_c01029{left:485.280000px;}
.x2d_c01029{left:494.640000px;}
.x4b_c01029{left:496.080000px;}
.x13_c01029{left:505.440000px;}
.x46_c01029{left:506.880000px;}
.x24_c01029{left:516.240000px;}
.x30_c01029{left:527.040000px;}
.x3c_c01029{left:528.480000px;}
.x49_c01029{left:538.560000px;}
.x4c_c01029{left:540.000000px;}
.x9_c01029{left:548.640000px;}
.x50_c01029{left:550.800000px;}
.x14_c01029{left:560.160000px;}
.x57_c01029{left:572.400000px;}
.x3a_c01029{left:581.760000px;}
.x4d_c01029{left:583.200000px;}
.x15_c01029{left:591.840000px;}
.x53_c01029{left:593.280000px;}
.x25_c01029{left:603.360000px;}
.x31_c01029{left:614.160000px;}
.xa_c01029{left:625.680000px;}
.x58_c01029{left:627.120000px;}
.x16_c01029{left:635.760000px;}
.x35_c01029{left:637.200000px;}
.xb_c01029{left:645.840000px;}
.x59_c01029{left:648.000000px;}
.x1f_c01029{left:658.080000px;}
.x36_c01029{left:668.880000px;}
.x32_c01029{left:679.680000px;}
.x2b_c01029{left:681.840000px;}
.x1_c01029{left:687.600000px;}
.x42_c01029{left:691.200000px;}
.x1b_c01029{left:701.280000px;}
@media print{
.v0_c01029{vertical-align:0.000000pt;}
.v1_c01029{vertical-align:7.680000pt;}
.ls0_c01029{letter-spacing:0.000000pt;}
.ws0_c01029{word-spacing:-0.687573pt;}
.ws1_c01029{word-spacing:0.000000pt;}
.fsd_c01029{font-size:20.480000pt;}
.fs1_c01029{font-size:30.720000pt;}
.fs7_c01029{font-size:38.400000pt;}
.fs3_c01029{font-size:40.960000pt;}
.fs2_c01029{font-size:43.520000pt;}
.fs4_c01029{font-size:46.080000pt;}
.fsb_c01029{font-size:48.640000pt;}
.fs9_c01029{font-size:51.200000pt;}
.fs6_c01029{font-size:53.760000pt;}
.fs5_c01029{font-size:56.320000pt;}
.fsc_c01029{font-size:58.880000pt;}
.fsa_c01029{font-size:61.440000pt;}
.fs0_c01029{font-size:64.000000pt;}
.fs8_c01029{font-size:66.560000pt;}
.y0_c01029{bottom:0.000000pt;}
.y61_c01029{bottom:41.600000pt;}
.y63_c01029{bottom:42.240000pt;}
.y65_c01029{bottom:42.880000pt;}
.y62_c01029{bottom:44.160000pt;}
.y64_c01029{bottom:44.800000pt;}
.y5f_c01029{bottom:81.280000pt;}
.y5e_c01029{bottom:81.920000pt;}
.y5d_c01029{bottom:82.560000pt;}
.y60_c01029{bottom:83.200000pt;}
.y5c_c01029{bottom:118.400000pt;}
.y5b_c01029{bottom:119.040000pt;}
.y59_c01029{bottom:120.960000pt;}
.y5a_c01029{bottom:121.600000pt;}
.y58_c01029{bottom:156.800000pt;}
.y57_c01029{bottom:158.720000pt;}
.y56_c01029{bottom:159.360000pt;}
.y51_c01029{bottom:193.280000pt;}
.y53_c01029{bottom:193.920000pt;}
.y54_c01029{bottom:194.560000pt;}
.y55_c01029{bottom:195.200000pt;}
.y50_c01029{bottom:195.840000pt;}
.y52_c01029{bottom:197.120000pt;}
.y4b_c01029{bottom:232.320000pt;}
.y4e_c01029{bottom:232.960000pt;}
.y4d_c01029{bottom:234.240000pt;}
.y4c_c01029{bottom:234.880000pt;}
.y4f_c01029{bottom:235.520000pt;}
.y46_c01029{bottom:270.080000pt;}
.y4a_c01029{bottom:270.720000pt;}
.y49_c01029{bottom:271.360000pt;}
.y48_c01029{bottom:272.640000pt;}
.y47_c01029{bottom:273.280000pt;}
.y43_c01029{bottom:309.120000pt;}
.y45_c01029{bottom:311.040000pt;}
.y44_c01029{bottom:311.680000pt;}
.y41_c01029{bottom:346.880000pt;}
.y40_c01029{bottom:347.520000pt;}
.y42_c01029{bottom:349.440000pt;}
.y3f_c01029{bottom:350.080000pt;}
.y3d_c01029{bottom:385.280000pt;}
.y3e_c01029{bottom:387.840000pt;}
.y3c_c01029{bottom:425.600000pt;}
.y3b_c01029{bottom:426.240000pt;}
.y3a_c01029{bottom:471.680000pt;}
.y39_c01029{bottom:473.600000pt;}
.y35_c01029{bottom:509.440000pt;}
.y36_c01029{bottom:510.080000pt;}
.y34_c01029{bottom:511.360000pt;}
.y38_c01029{bottom:512.000000pt;}
.y37_c01029{bottom:512.640000pt;}
.y31_c01029{bottom:547.200000pt;}
.y2f_c01029{bottom:547.840000pt;}
.y33_c01029{bottom:548.480000pt;}
.y32_c01029{bottom:549.760000pt;}
.y30_c01029{bottom:550.400000pt;}
.y2c_c01029{bottom:584.960000pt;}
.y2e_c01029{bottom:586.240000pt;}
.y2a_c01029{bottom:587.520000pt;}
.y2d_c01029{bottom:588.160000pt;}
.y2b_c01029{bottom:588.800000pt;}
.y29_c01029{bottom:589.440000pt;}
.y28_c01029{bottom:625.920000pt;}
.y27_c01029{bottom:626.560000pt;}
.y25_c01029{bottom:661.120000pt;}
.y22_c01029{bottom:661.760000pt;}
.y26_c01029{bottom:662.400000pt;}
.y24_c01029{bottom:663.680000pt;}
.y23_c01029{bottom:664.320000pt;}
.y21_c01029{bottom:698.880000pt;}
.y20_c01029{bottom:699.520000pt;}
.y1e_c01029{bottom:700.160000pt;}
.y1f_c01029{bottom:702.080000pt;}
.y1d_c01029{bottom:736.000000pt;}
.y1c_c01029{bottom:736.640000pt;}
.y1a_c01029{bottom:739.840000pt;}
.y1b_c01029{bottom:740.480000pt;}
.y19_c01029{bottom:775.040000pt;}
.y16_c01029{bottom:775.680000pt;}
.y18_c01029{bottom:776.960000pt;}
.y17_c01029{bottom:777.600000pt;}
.y15_c01029{bottom:778.240000pt;}
.y14_c01029{bottom:778.880000pt;}
.y13_c01029{bottom:812.800000pt;}
.y12_c01029{bottom:813.440000pt;}
.y10_c01029{bottom:853.120000pt;}
.y11_c01029{bottom:853.760000pt;}
.yf_c01029{bottom:854.400000pt;}
.yc_c01029{bottom:888.320000pt;}
.ye_c01029{bottom:889.600000pt;}
.y8_c01029{bottom:890.240000pt;}
.yd_c01029{bottom:890.880000pt;}
.yb_c01029{bottom:891.520000pt;}
.ya_c01029{bottom:892.160000pt;}
.y9_c01029{bottom:892.800000pt;}
.y4_c01029{bottom:926.720000pt;}
.y6_c01029{bottom:927.360000pt;}
.y7_c01029{bottom:928.000000pt;}
.y5_c01029{bottom:929.280000pt;}
.y3_c01029{bottom:930.560000pt;}
.y2_c01029{bottom:931.200000pt;}
.y1_c01029{bottom:979.840000pt;}
.hf_c01029{height:18.430000pt;}
.h3_c01029{height:27.645000pt;}
.h9_c01029{height:34.556250pt;}
.h5_c01029{height:36.860000pt;}
.h4_c01029{height:39.163750pt;}
.h6_c01029{height:41.467500pt;}
.hd_c01029{height:43.771250pt;}
.hb_c01029{height:46.075000pt;}
.h8_c01029{height:48.378750pt;}
.h7_c01029{height:50.682500pt;}
.he_c01029{height:52.986250pt;}
.hc_c01029{height:55.290000pt;}
.h2_c01029{height:57.593750pt;}
.ha_c01029{height:59.897500pt;}
.h1_c01029{height:1034.666667pt;}
.h0_c01029{height:1034.880000pt;}
.w0_c01029{width:704.000000pt;}
.x0_c01029{left:0.000000pt;}
.x26_c01029{left:64.000000pt;}
.x2_c01029{left:65.280000pt;}
.x1c_c01029{left:67.200000pt;}
.x17_c01029{left:85.120000pt;}
.x3_c01029{left:94.720000pt;}
.x3d_c01029{left:96.000000pt;}
.x20_c01029{left:104.960000pt;}
.xc_c01029{left:113.280000pt;}
.x43_c01029{left:114.560000pt;}
.x4_c01029{left:123.520000pt;}
.x54_c01029{left:124.800000pt;}
.x47_c01029{left:133.760000pt;}
.x3b_c01029{left:142.080000pt;}
.x21_c01029{left:152.320000pt;}
.x5_c01029{left:153.600000pt;}
.xd_c01029{left:161.920000pt;}
.x44_c01029{left:163.200000pt;}
.x2c_c01029{left:172.800000pt;}
.x33_c01029{left:180.480000pt;}
.x4a_c01029{left:181.760000pt;}
.xe_c01029{left:191.360000pt;}
.x18_c01029{left:199.680000pt;}
.x37_c01029{left:200.960000pt;}
.x51_c01029{left:209.280000pt;}
.x2e_c01029{left:210.560000pt;}
.xf_c01029{left:218.880000pt;}
.x3e_c01029{left:220.160000pt;}
.x27_c01029{left:229.120000pt;}
.x19_c01029{left:238.720000pt;}
.x3f_c01029{left:247.680000pt;}
.x10_c01029{left:248.960000pt;}
.x6_c01029{left:257.920000pt;}
.x1d_c01029{left:266.880000pt;}
.x55_c01029{left:268.160000pt;}
.x22_c01029{left:277.760000pt;}
.x1e_c01029{left:287.360000pt;}
.x5a_c01029{left:297.600000pt;}
.x38_c01029{left:305.920000pt;}
.x28_c01029{left:315.520000pt;}
.x52_c01029{left:316.800000pt;}
.x40_c01029{left:325.120000pt;}
.x11_c01029{left:334.720000pt;}
.x29_c01029{left:344.320000pt;}
.x4e_c01029{left:355.200000pt;}
.x23_c01029{left:362.880000pt;}
.x48_c01029{left:364.160000pt;}
.x2f_c01029{left:372.480000pt;}
.x4f_c01029{left:373.760000pt;}
.x56_c01029{left:382.080000pt;}
.x41_c01029{left:383.360000pt;}
.x7_c01029{left:391.680000pt;}
.x1a_c01029{left:392.960000pt;}
.x12_c01029{left:401.280000pt;}
.x39_c01029{left:402.560000pt;}
.x8_c01029{left:410.880000pt;}
.x45_c01029{left:412.160000pt;}
.x34_c01029{left:421.760000pt;}
.x2a_c01029{left:431.360000pt;}
.x2d_c01029{left:439.680000pt;}
.x4b_c01029{left:440.960000pt;}
.x13_c01029{left:449.280000pt;}
.x46_c01029{left:450.560000pt;}
.x24_c01029{left:458.880000pt;}
.x30_c01029{left:468.480000pt;}
.x3c_c01029{left:469.760000pt;}
.x49_c01029{left:478.720000pt;}
.x4c_c01029{left:480.000000pt;}
.x9_c01029{left:487.680000pt;}
.x50_c01029{left:489.600000pt;}
.x14_c01029{left:497.920000pt;}
.x57_c01029{left:508.800000pt;}
.x3a_c01029{left:517.120000pt;}
.x4d_c01029{left:518.400000pt;}
.x15_c01029{left:526.080000pt;}
.x53_c01029{left:527.360000pt;}
.x25_c01029{left:536.320000pt;}
.x31_c01029{left:545.920000pt;}
.xa_c01029{left:556.160000pt;}
.x58_c01029{left:557.440000pt;}
.x16_c01029{left:565.120000pt;}
.x35_c01029{left:566.400000pt;}
.xb_c01029{left:574.080000pt;}
.x59_c01029{left:576.000000pt;}
.x1f_c01029{left:584.960000pt;}
.x36_c01029{left:594.560000pt;}
.x32_c01029{left:604.160000pt;}
.x2b_c01029{left:606.080000pt;}
.x1_c01029{left:611.200000pt;}
.x42_c01029{left:614.400000pt;}
.x1b_c01029{left:623.360000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9bf28a88bf9aac549eea43c7.woff2')format("woff");}.ff1_c01030{font-family:ff1_c01030;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m45_c01030{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);}
.m4a_c01030{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m35_c01030{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m30_c01030{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m22_c01030{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01030{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01030{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m23_c01030{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01030{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m21_c01030{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);}
.m28_c01030{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m54_c01030{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);}
.m2b_c01030{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m9_c01030{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m0_c01030{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01030{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);}
.m48_c01030{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m37_c01030{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);}
.m49_c01030{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);}
.m4_c01030{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);}
.m27_c01030{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1_c01030{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);}
.m8_c01030{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01030{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);}
.m2e_c01030{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);}
.m5c_c01030{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01030{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01030{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m46_c01030{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);}
.m55_c01030{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01030{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);}
.m39_c01030{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01030{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);}
.m52_c01030{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m34_c01030{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m16_c01030{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.mb_c01030{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m12_c01030{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m7_c01030{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.mc_c01030{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);}
.m20_c01030{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);}
.m4d_c01030{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m58_c01030{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01030{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m6_c01030{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.md_c01030{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);}
.m44_c01030{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01030{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m57_c01030{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);}
.m15_c01030{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m25_c01030{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m31_c01030{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m5_c01030{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m24_c01030{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01030{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);}
.m19_c01030{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);}
.m11_c01030{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m13_c01030{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m53_c01030{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.me_c01030{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);}
.m1e_c01030{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m4e_c01030{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.ma_c01030{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m50_c01030{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m14_c01030{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);}
.m1d_c01030{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m33_c01030{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01030{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m43_c01030{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);}
.m41_c01030{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01030{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);}
.m5a_c01030{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m2_c01030{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m29_c01030{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m40_c01030{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m38_c01030{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01030{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01030{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m18_c01030{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);}
.m17_c01030{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m5b_c01030{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m56_c01030{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);}
.m3_c01030{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m32_c01030{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m26_c01030{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m42_c01030{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.mf_c01030{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m36_c01030{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m59_c01030{transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);}
.m10_c01030{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m47_c01030{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);}
.m3f_c01030{transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);}
.m51_c01030{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.v2_c01030{vertical-align:-2.880000px;}
.v0_c01030{vertical-align:0.000000px;}
.v3_c01030{vertical-align:2.880000px;}
.v1_c01030{vertical-align:8.640000px;}
.ls1_c01030{letter-spacing:0.000000px;}
.ls0_c01030{letter-spacing:24.606000px;}
.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.667440px;}
.ws2_c01030{word-spacing:0.000000px;}
.ws1_c01030{word-spacing:1.496880px;}
.fc0_c01030{color:transparent;}
.fsb_c01030{font-size:31.680000px;}
.fs3_c01030{font-size:34.560000px;}
.fsd_c01030{font-size:37.440000px;}
.fs5_c01030{font-size:43.200000px;}
.fs1_c01030{font-size:46.080000px;}
.fs2_c01030{font-size:48.960000px;}
.fs7_c01030{font-size:51.840000px;}
.fs4_c01030{font-size:54.720000px;}
.fsa_c01030{font-size:57.600000px;}
.fs9_c01030{font-size:60.480000px;}
.fs8_c01030{font-size:63.360000px;}
.fsc_c01030{font-size:66.240000px;}
.fs6_c01030{font-size:69.120000px;}
.fs0_c01030{font-size:72.000000px;}
.y0_c01030{bottom:0.000000px;}
.y63_c01030{bottom:75.600000px;}
.y62_c01030{bottom:77.760000px;}
.y5c_c01030{bottom:118.800000px;}
.y5f_c01030{bottom:119.520000px;}
.y5d_c01030{bottom:120.240000px;}
.y5e_c01030{bottom:120.960000px;}
.y61_c01030{bottom:121.680000px;}
.y60_c01030{bottom:122.400000px;}
.y5a_c01030{bottom:162.000000px;}
.y57_c01030{bottom:162.720000px;}
.y58_c01030{bottom:164.160000px;}
.y59_c01030{bottom:164.880000px;}
.y5b_c01030{bottom:165.600000px;}
.y56_c01030{bottom:205.200000px;}
.y54_c01030{bottom:205.920000px;}
.y53_c01030{bottom:206.640000px;}
.y55_c01030{bottom:208.080000px;}
.y52_c01030{bottom:248.400000px;}
.y50_c01030{bottom:250.560000px;}
.y51_c01030{bottom:251.280000px;}
.y4c_c01030{bottom:290.880000px;}
.y4f_c01030{bottom:291.600000px;}
.y4d_c01030{bottom:292.320000px;}
.y4b_c01030{bottom:293.760000px;}
.y4e_c01030{bottom:294.480000px;}
.y48_c01030{bottom:334.080000px;}
.y49_c01030{bottom:334.800000px;}
.y47_c01030{bottom:336.960000px;}
.y4a_c01030{bottom:337.680000px;}
.y41_c01030{bottom:376.560000px;}
.y42_c01030{bottom:377.280000px;}
.y46_c01030{bottom:378.720000px;}
.y43_c01030{bottom:379.440000px;}
.y44_c01030{bottom:380.160000px;}
.y45_c01030{bottom:380.880000px;}
.y3e_c01030{bottom:422.640000px;}
.y3f_c01030{bottom:423.360000px;}
.y40_c01030{bottom:424.080000px;}
.y3c_c01030{bottom:462.960000px;}
.y3a_c01030{bottom:465.120000px;}
.y3b_c01030{bottom:465.840000px;}
.y3d_c01030{bottom:466.560000px;}
.y38_c01030{bottom:506.160000px;}
.y37_c01030{bottom:508.320000px;}
.y39_c01030{bottom:509.040000px;}
.y36_c01030{bottom:547.920000px;}
.y33_c01030{bottom:548.640000px;}
.y34_c01030{bottom:549.360000px;}
.y31_c01030{bottom:550.800000px;}
.y32_c01030{bottom:551.520000px;}
.y35_c01030{bottom:552.240000px;}
.y2d_c01030{bottom:591.120000px;}
.y2f_c01030{bottom:591.840000px;}
.y2e_c01030{bottom:593.280000px;}
.y2c_c01030{bottom:594.000000px;}
.y30_c01030{bottom:594.720000px;}
.y29_c01030{bottom:633.600000px;}
.y27_c01030{bottom:634.320000px;}
.y28_c01030{bottom:635.040000px;}
.y26_c01030{bottom:635.760000px;}
.y2a_c01030{bottom:636.480000px;}
.y2b_c01030{bottom:637.200000px;}
.y25_c01030{bottom:676.800000px;}
.y24_c01030{bottom:677.520000px;}
.y23_c01030{bottom:678.960000px;}
.y22_c01030{bottom:679.680000px;}
.y21_c01030{bottom:732.960000px;}
.y20_c01030{bottom:772.560000px;}
.y1f_c01030{bottom:773.280000px;}
.y1d_c01030{bottom:776.160000px;}
.y1e_c01030{bottom:776.880000px;}
.y18_c01030{bottom:815.760000px;}
.y19_c01030{bottom:816.480000px;}
.y1c_c01030{bottom:818.640000px;}
.y1b_c01030{bottom:819.360000px;}
.y1a_c01030{bottom:820.080000px;}
.y15_c01030{bottom:859.680000px;}
.y17_c01030{bottom:861.840000px;}
.y16_c01030{bottom:862.560000px;}
.y11_c01030{bottom:902.160000px;}
.y12_c01030{bottom:902.880000px;}
.y14_c01030{bottom:904.320000px;}
.y13_c01030{bottom:905.040000px;}
.y10_c01030{bottom:905.760000px;}
.yc_c01030{bottom:955.440000px;}
.yf_c01030{bottom:957.600000px;}
.yd_c01030{bottom:958.320000px;}
.ye_c01030{bottom:959.040000px;}
.yb_c01030{bottom:997.920000px;}
.ya_c01030{bottom:998.640000px;}
.y9_c01030{bottom:1000.800000px;}
.y7_c01030{bottom:1001.520000px;}
.y8_c01030{bottom:1002.240000px;}
.y4_c01030{bottom:1041.120000px;}
.y5_c01030{bottom:1041.840000px;}
.y6_c01030{bottom:1044.000000px;}
.y3_c01030{bottom:1044.720000px;}
.y2_c01030{bottom:1045.440000px;}
.y1_c01030{bottom:1096.560000px;}
.hd_c01030{height:28.508906px;}
.h5_c01030{height:31.100625px;}
.h11_c01030{height:33.692344px;}
.h7_c01030{height:38.875781px;}
.h3_c01030{height:41.467500px;}
.h12_c01030{height:41.755781px;}
.hf_c01030{height:43.770937px;}
.h4_c01030{height:44.059219px;}
.h9_c01030{height:46.650937px;}
.h6_c01030{height:49.242656px;}
.hc_c01030{height:51.834375px;}
.hb_c01030{height:54.426094px;}
.he_c01030{height:55.290937px;}
.ha_c01030{height:57.017812px;}
.h10_c01030{height:59.609531px;}
.h8_c01030{height:62.201250px;}
.h2_c01030{height:64.792969px;}
.h0_c01030{height:1160.640000px;}
.h1_c01030{height:1161.000000px;}
.w0_c01030{width:792.000000px;}
.x0_c01030{left:0.000000px;}
.x2_c01030{left:70.560000px;}
.x3e_c01030{left:81.360000px;}
.x3_c01030{left:102.240000px;}
.x28_c01030{left:103.680000px;}
.x49_c01030{left:113.040000px;}
.xc_c01030{left:114.480000px;}
.x54_c01030{left:123.840000px;}
.x14_c01030{left:125.280000px;}
.x4_c01030{left:135.360000px;}
.x29_c01030{left:136.800000px;}
.x3f_c01030{left:146.880000px;}
.x15_c01030{left:157.680000px;}
.xd_c01030{left:166.320000px;}
.x18_c01030{left:179.280000px;}
.x2d_c01030{left:180.720000px;}
.x38_c01030{left:190.080000px;}
.x5_c01030{left:200.160000px;}
.x4a_c01030{left:201.600000px;}
.x2e_c01030{left:211.680000px;}
.x19_c01030{left:222.480000px;}
.x25_c01030{left:232.560000px;}
.x4d_c01030{left:234.000000px;}
.x16_c01030{left:244.080000px;}
.x50_c01030{left:245.520000px;}
.x43_c01030{left:265.680000px;}
.xe_c01030{left:274.320000px;}
.x2a_c01030{left:276.480000px;}
.x17_c01030{left:285.840000px;}
.x2f_c01030{left:298.080000px;}
.x26_c01030{left:308.880000px;}
.x1a_c01030{left:318.960000px;}
.x1f_c01030{left:321.120000px;}
.x51_c01030{left:331.200000px;}
.x6_c01030{left:339.120000px;}
.xf_c01030{left:340.560000px;}
.x4e_c01030{left:342.000000px;}
.x46_c01030{left:352.800000px;}
.x7_c01030{left:361.440000px;}
.x39_c01030{left:362.880000px;}
.x55_c01030{left:372.960000px;}
.x27_c01030{left:374.400000px;}
.x30_c01030{left:384.480000px;}
.x44_c01030{left:385.920000px;}
.x20_c01030{left:394.560000px;}
.x1b_c01030{left:404.640000px;}
.x47_c01030{left:406.080000px;}
.x3b_c01030{left:416.880000px;}
.x21_c01030{left:427.680000px;}
.x1c_c01030{left:437.760000px;}
.x56_c01030{left:439.200000px;}
.x31_c01030{left:449.280000px;}
.x8_c01030{left:468.720000px;}
.x3a_c01030{left:471.600000px;}
.x40_c01030{left:482.400000px;}
.x32_c01030{left:492.480000px;}
.x52_c01030{left:493.920000px;}
.x2b_c01030{left:502.560000px;}
.x22_c01030{left:504.720000px;}
.x9_c01030{left:512.640000px;}
.x3c_c01030{left:514.080000px;}
.x1d_c01030{left:524.160000px;}
.x2c_c01030{left:525.600000px;}
.x10_c01030{left:534.240000px;}
.x33_c01030{left:535.680000px;}
.xa_c01030{left:544.320000px;}
.x48_c01030{left:547.200000px;}
.x1e_c01030{left:556.560000px;}
.x4b_c01030{left:568.800000px;}
.x11_c01030{left:576.720000px;}
.x3d_c01030{left:578.880000px;}
.x37_c01030{left:591.120000px;}
.x23_c01030{left:600.480000px;}
.x45_c01030{left:601.920000px;}
.x12_c01030{left:622.080000px;}
.x35_c01030{left:624.240000px;}
.x24_c01030{left:632.880000px;}
.x41_c01030{left:634.320000px;}
.x13_c01030{left:642.960000px;}
.x53_c01030{left:645.840000px;}
.x34_c01030{left:655.200000px;}
.x4c_c01030{left:656.640000px;}
.x42_c01030{left:665.280000px;}
.x57_c01030{left:667.440000px;}
.x1_c01030{left:673.920000px;}
.x4f_c01030{left:678.240000px;}
.xb_c01030{left:686.880000px;}
.x36_c01030{left:688.320000px;}
@media print{
.v2_c01030{vertical-align:-2.560000pt;}
.v0_c01030{vertical-align:0.000000pt;}
.v3_c01030{vertical-align:2.560000pt;}
.v1_c01030{vertical-align:7.680000pt;}
.ls1_c01030{letter-spacing:0.000000pt;}
.ls0_c01030{letter-spacing:21.872000pt;}
.ws0_c01030{word-spacing:-0.593280pt;}
.ws2_c01030{word-spacing:0.000000pt;}
.ws1_c01030{word-spacing:1.330560pt;}
.fsb_c01030{font-size:28.160000pt;}
.fs3_c01030{font-size:30.720000pt;}
.fsd_c01030{font-size:33.280000pt;}
.fs5_c01030{font-size:38.400000pt;}
.fs1_c01030{font-size:40.960000pt;}
.fs2_c01030{font-size:43.520000pt;}
.fs7_c01030{font-size:46.080000pt;}
.fs4_c01030{font-size:48.640000pt;}
.fsa_c01030{font-size:51.200000pt;}
.fs9_c01030{font-size:53.760000pt;}
.fs8_c01030{font-size:56.320000pt;}
.fsc_c01030{font-size:58.880000pt;}
.fs6_c01030{font-size:61.440000pt;}
.fs0_c01030{font-size:64.000000pt;}
.y0_c01030{bottom:0.000000pt;}
.y63_c01030{bottom:67.200000pt;}
.y62_c01030{bottom:69.120000pt;}
.y5c_c01030{bottom:105.600000pt;}
.y5f_c01030{bottom:106.240000pt;}
.y5d_c01030{bottom:106.880000pt;}
.y5e_c01030{bottom:107.520000pt;}
.y61_c01030{bottom:108.160000pt;}
.y60_c01030{bottom:108.800000pt;}
.y5a_c01030{bottom:144.000000pt;}
.y57_c01030{bottom:144.640000pt;}
.y58_c01030{bottom:145.920000pt;}
.y59_c01030{bottom:146.560000pt;}
.y5b_c01030{bottom:147.200000pt;}
.y56_c01030{bottom:182.400000pt;}
.y54_c01030{bottom:183.040000pt;}
.y53_c01030{bottom:183.680000pt;}
.y55_c01030{bottom:184.960000pt;}
.y52_c01030{bottom:220.800000pt;}
.y50_c01030{bottom:222.720000pt;}
.y51_c01030{bottom:223.360000pt;}
.y4c_c01030{bottom:258.560000pt;}
.y4f_c01030{bottom:259.200000pt;}
.y4d_c01030{bottom:259.840000pt;}
.y4b_c01030{bottom:261.120000pt;}
.y4e_c01030{bottom:261.760000pt;}
.y48_c01030{bottom:296.960000pt;}
.y49_c01030{bottom:297.600000pt;}
.y47_c01030{bottom:299.520000pt;}
.y4a_c01030{bottom:300.160000pt;}
.y41_c01030{bottom:334.720000pt;}
.y42_c01030{bottom:335.360000pt;}
.y46_c01030{bottom:336.640000pt;}
.y43_c01030{bottom:337.280000pt;}
.y44_c01030{bottom:337.920000pt;}
.y45_c01030{bottom:338.560000pt;}
.y3e_c01030{bottom:375.680000pt;}
.y3f_c01030{bottom:376.320000pt;}
.y40_c01030{bottom:376.960000pt;}
.y3c_c01030{bottom:411.520000pt;}
.y3a_c01030{bottom:413.440000pt;}
.y3b_c01030{bottom:414.080000pt;}
.y3d_c01030{bottom:414.720000pt;}
.y38_c01030{bottom:449.920000pt;}
.y37_c01030{bottom:451.840000pt;}
.y39_c01030{bottom:452.480000pt;}
.y36_c01030{bottom:487.040000pt;}
.y33_c01030{bottom:487.680000pt;}
.y34_c01030{bottom:488.320000pt;}
.y31_c01030{bottom:489.600000pt;}
.y32_c01030{bottom:490.240000pt;}
.y35_c01030{bottom:490.880000pt;}
.y2d_c01030{bottom:525.440000pt;}
.y2f_c01030{bottom:526.080000pt;}
.y2e_c01030{bottom:527.360000pt;}
.y2c_c01030{bottom:528.000000pt;}
.y30_c01030{bottom:528.640000pt;}
.y29_c01030{bottom:563.200000pt;}
.y27_c01030{bottom:563.840000pt;}
.y28_c01030{bottom:564.480000pt;}
.y26_c01030{bottom:565.120000pt;}
.y2a_c01030{bottom:565.760000pt;}
.y2b_c01030{bottom:566.400000pt;}
.y25_c01030{bottom:601.600000pt;}
.y24_c01030{bottom:602.240000pt;}
.y23_c01030{bottom:603.520000pt;}
.y22_c01030{bottom:604.160000pt;}
.y21_c01030{bottom:651.520000pt;}
.y20_c01030{bottom:686.720000pt;}
.y1f_c01030{bottom:687.360000pt;}
.y1d_c01030{bottom:689.920000pt;}
.y1e_c01030{bottom:690.560000pt;}
.y18_c01030{bottom:725.120000pt;}
.y19_c01030{bottom:725.760000pt;}
.y1c_c01030{bottom:727.680000pt;}
.y1b_c01030{bottom:728.320000pt;}
.y1a_c01030{bottom:728.960000pt;}
.y15_c01030{bottom:764.160000pt;}
.y17_c01030{bottom:766.080000pt;}
.y16_c01030{bottom:766.720000pt;}
.y11_c01030{bottom:801.920000pt;}
.y12_c01030{bottom:802.560000pt;}
.y14_c01030{bottom:803.840000pt;}
.y13_c01030{bottom:804.480000pt;}
.y10_c01030{bottom:805.120000pt;}
.yc_c01030{bottom:849.280000pt;}
.yf_c01030{bottom:851.200000pt;}
.yd_c01030{bottom:851.840000pt;}
.ye_c01030{bottom:852.480000pt;}
.yb_c01030{bottom:887.040000pt;}
.ya_c01030{bottom:887.680000pt;}
.y9_c01030{bottom:889.600000pt;}
.y7_c01030{bottom:890.240000pt;}
.y8_c01030{bottom:890.880000pt;}
.y4_c01030{bottom:925.440000pt;}
.y5_c01030{bottom:926.080000pt;}
.y6_c01030{bottom:928.000000pt;}
.y3_c01030{bottom:928.640000pt;}
.y2_c01030{bottom:929.280000pt;}
.y1_c01030{bottom:974.720000pt;}
.hd_c01030{height:25.341250pt;}
.h5_c01030{height:27.645000pt;}
.h11_c01030{height:29.948750pt;}
.h7_c01030{height:34.556250pt;}
.h3_c01030{height:36.860000pt;}
.h12_c01030{height:37.116250pt;}
.hf_c01030{height:38.907500pt;}
.h4_c01030{height:39.163750pt;}
.h9_c01030{height:41.467500pt;}
.h6_c01030{height:43.771250pt;}
.hc_c01030{height:46.075000pt;}
.hb_c01030{height:48.378750pt;}
.he_c01030{height:49.147500pt;}
.ha_c01030{height:50.682500pt;}
.h10_c01030{height:52.986250pt;}
.h8_c01030{height:55.290000pt;}
.h2_c01030{height:57.593750pt;}
.h0_c01030{height:1031.680000pt;}
.h1_c01030{height:1032.000000pt;}
.w0_c01030{width:704.000000pt;}
.x0_c01030{left:0.000000pt;}
.x2_c01030{left:62.720000pt;}
.x3e_c01030{left:72.320000pt;}
.x3_c01030{left:90.880000pt;}
.x28_c01030{left:92.160000pt;}
.x49_c01030{left:100.480000pt;}
.xc_c01030{left:101.760000pt;}
.x54_c01030{left:110.080000pt;}
.x14_c01030{left:111.360000pt;}
.x4_c01030{left:120.320000pt;}
.x29_c01030{left:121.600000pt;}
.x3f_c01030{left:130.560000pt;}
.x15_c01030{left:140.160000pt;}
.xd_c01030{left:147.840000pt;}
.x18_c01030{left:159.360000pt;}
.x2d_c01030{left:160.640000pt;}
.x38_c01030{left:168.960000pt;}
.x5_c01030{left:177.920000pt;}
.x4a_c01030{left:179.200000pt;}
.x2e_c01030{left:188.160000pt;}
.x19_c01030{left:197.760000pt;}
.x25_c01030{left:206.720000pt;}
.x4d_c01030{left:208.000000pt;}
.x16_c01030{left:216.960000pt;}
.x50_c01030{left:218.240000pt;}
.x43_c01030{left:236.160000pt;}
.xe_c01030{left:243.840000pt;}
.x2a_c01030{left:245.760000pt;}
.x17_c01030{left:254.080000pt;}
.x2f_c01030{left:264.960000pt;}
.x26_c01030{left:274.560000pt;}
.x1a_c01030{left:283.520000pt;}
.x1f_c01030{left:285.440000pt;}
.x51_c01030{left:294.400000pt;}
.x6_c01030{left:301.440000pt;}
.xf_c01030{left:302.720000pt;}
.x4e_c01030{left:304.000000pt;}
.x46_c01030{left:313.600000pt;}
.x7_c01030{left:321.280000pt;}
.x39_c01030{left:322.560000pt;}
.x55_c01030{left:331.520000pt;}
.x27_c01030{left:332.800000pt;}
.x30_c01030{left:341.760000pt;}
.x44_c01030{left:343.040000pt;}
.x20_c01030{left:350.720000pt;}
.x1b_c01030{left:359.680000pt;}
.x47_c01030{left:360.960000pt;}
.x3b_c01030{left:370.560000pt;}
.x21_c01030{left:380.160000pt;}
.x1c_c01030{left:389.120000pt;}
.x56_c01030{left:390.400000pt;}
.x31_c01030{left:399.360000pt;}
.x8_c01030{left:416.640000pt;}
.x3a_c01030{left:419.200000pt;}
.x40_c01030{left:428.800000pt;}
.x32_c01030{left:437.760000pt;}
.x52_c01030{left:439.040000pt;}
.x2b_c01030{left:446.720000pt;}
.x22_c01030{left:448.640000pt;}
.x9_c01030{left:455.680000pt;}
.x3c_c01030{left:456.960000pt;}
.x1d_c01030{left:465.920000pt;}
.x2c_c01030{left:467.200000pt;}
.x10_c01030{left:474.880000pt;}
.x33_c01030{left:476.160000pt;}
.xa_c01030{left:483.840000pt;}
.x48_c01030{left:486.400000pt;}
.x1e_c01030{left:494.720000pt;}
.x4b_c01030{left:505.600000pt;}
.x11_c01030{left:512.640000pt;}
.x3d_c01030{left:514.560000pt;}
.x37_c01030{left:525.440000pt;}
.x23_c01030{left:533.760000pt;}
.x45_c01030{left:535.040000pt;}
.x12_c01030{left:552.960000pt;}
.x35_c01030{left:554.880000pt;}
.x24_c01030{left:562.560000pt;}
.x41_c01030{left:563.840000pt;}
.x13_c01030{left:571.520000pt;}
.x53_c01030{left:574.080000pt;}
.x34_c01030{left:582.400000pt;}
.x4c_c01030{left:583.680000pt;}
.x42_c01030{left:591.360000pt;}
.x57_c01030{left:593.280000pt;}
.x1_c01030{left:599.040000pt;}
.x4f_c01030{left:602.880000pt;}
.xb_c01030{left:610.560000pt;}
.x36_c01030{left:611.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0513cc9215e72df780cf41fd.woff2')format("woff");}.ff1_c01031{font-family:ff1_c01031;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m58_c01031{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);}
.m2f_c01031{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m55_c01031{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);}
.m50_c01031{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m34_c01031{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01031{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m15_c01031{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m35_c01031{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m4f_c01031{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m49_c01031{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m14_c01031{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m4e_c01031{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m59_c01031{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);}
.m28_c01031{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m30_c01031{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);}
.m41_c01031{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m3_c01031{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);}
.m46_c01031{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m52_c01031{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_c01031{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m23_c01031{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m43_c01031{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_c01031{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m25_c01031{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m8_c01031{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);}
.mc_c01031{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);}
.m18_c01031{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);}
.m38_c01031{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);}
.m24_c01031{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m37_c01031{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.me_c01031{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);}
.m2d_c01031{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.md_c01031{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01031{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.mb_c01031{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m0_c01031{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);}
.m4d_c01031{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m19_c01031{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m51_c01031{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);}
.m10_c01031{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);}
.m5_c01031{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m6_c01031{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m53_c01031{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m27_c01031{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01031{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);}
.m2e_c01031{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m2_c01031{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m33_c01031{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);}
.m1a_c01031{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m45_c01031{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m56_c01031{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01031{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m7_c01031{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);}
.m39_c01031{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m44_c01031{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m1_c01031{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01031{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);}
.m12_c01031{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m20_c01031{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01031{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m17_c01031{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);}
.m4_c01031{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m22_c01031{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m9_c01031{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);}
.m31_c01031{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m29_c01031{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m42_c01031{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01031{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);}
.m2b_c01031{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m47_c01031{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01031{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01031{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);}
.m1d_c01031{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);}
.m57_c01031{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m40_c01031{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01031{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m54_c01031{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m36_c01031{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);}
.mf_c01031{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);}
.m11_c01031{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m13_c01031{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);}
.m3b_c01031{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01031{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m21_c01031{transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);}
.m26_c01031{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);}
.ma_c01031{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);}
.m3f_c01031{transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01031{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);}
.m48_c01031{transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);}
.m32_c01031{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.v1_c01031{vertical-align:-11.520000px;}
.v2_c01031{vertical-align:-2.880000px;}
.v0_c01031{vertical-align:0.000000px;}
.ls0_c01031{letter-spacing:0.000000px;}
.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;}
}
.ws1_c01031{word-spacing:-5.610240px;}
.ws0_c01031{word-spacing:-1.841280px;}
.ws2_c01031{word-spacing:0.000000px;}
.fc0_c01031{color:transparent;}
.fsb_c01031{font-size:31.680000px;}
.fs5_c01031{font-size:34.560000px;}
.fs4_c01031{font-size:43.200000px;}
.fs1_c01031{font-size:46.080000px;}
.fs2_c01031{font-size:48.960000px;}
.fs7_c01031{font-size:51.840000px;}
.fs9_c01031{font-size:54.720000px;}
.fs6_c01031{font-size:57.600000px;}
.fs8_c01031{font-size:60.480000px;}
.fs3_c01031{font-size:63.360000px;}
.fsa_c01031{font-size:66.240000px;}
.fs0_c01031{font-size:69.120000px;}
.y0_c01031{bottom:0.000000px;}
.y5b_c01031{bottom:84.960000px;}
.y5d_c01031{bottom:85.680000px;}
.y5a_c01031{bottom:87.120000px;}
.y59_c01031{bottom:87.840000px;}
.y5c_c01031{bottom:88.560000px;}
.y58_c01031{bottom:127.440000px;}
.y55_c01031{bottom:128.160000px;}
.y56_c01031{bottom:131.040000px;}
.y57_c01031{bottom:131.760000px;}
.y54_c01031{bottom:171.360000px;}
.y53_c01031{bottom:173.520000px;}
.y52_c01031{bottom:174.240000px;}
.y50_c01031{bottom:214.560000px;}
.y4f_c01031{bottom:216.720000px;}
.y51_c01031{bottom:217.440000px;}
.y4d_c01031{bottom:267.120000px;}
.y4c_c01031{bottom:267.840000px;}
.y4e_c01031{bottom:268.560000px;}
.y4b_c01031{bottom:269.280000px;}
.y49_c01031{bottom:309.600000px;}
.y47_c01031{bottom:310.320000px;}
.y4a_c01031{bottom:311.040000px;}
.y48_c01031{bottom:311.760000px;}
.y46_c01031{bottom:313.200000px;}
.y43_c01031{bottom:352.800000px;}
.y45_c01031{bottom:353.520000px;}
.y42_c01031{bottom:354.960000px;}
.y44_c01031{bottom:355.680000px;}
.y41_c01031{bottom:356.400000px;}
.y3e_c01031{bottom:396.000000px;}
.y3d_c01031{bottom:398.160000px;}
.y3f_c01031{bottom:398.880000px;}
.y40_c01031{bottom:399.600000px;}
.y3c_c01031{bottom:439.200000px;}
.y3a_c01031{bottom:441.360000px;}
.y3b_c01031{bottom:442.080000px;}
.y38_c01031{bottom:492.480000px;}
.y37_c01031{bottom:495.360000px;}
.y39_c01031{bottom:496.080000px;}
.y36_c01031{bottom:534.960000px;}
.y35_c01031{bottom:535.680000px;}
.y34_c01031{bottom:538.560000px;}
.y31_c01031{bottom:578.880000px;}
.y33_c01031{bottom:581.040000px;}
.y32_c01031{bottom:581.760000px;}
.y30_c01031{bottom:622.080000px;}
.y2f_c01031{bottom:624.240000px;}
.y2e_c01031{bottom:624.960000px;}
.y2d_c01031{bottom:665.280000px;}
.y2c_c01031{bottom:666.720000px;}
.y2b_c01031{bottom:667.440000px;}
.y29_c01031{bottom:717.840000px;}
.y2a_c01031{bottom:718.560000px;}
.y28_c01031{bottom:721.440000px;}
.y25_c01031{bottom:761.040000px;}
.y26_c01031{bottom:763.920000px;}
.y27_c01031{bottom:764.640000px;}
.y23_c01031{bottom:802.080000px;}
.y1f_c01031{bottom:803.520000px;}
.y24_c01031{bottom:804.240000px;}
.y22_c01031{bottom:805.680000px;}
.y21_c01031{bottom:806.400000px;}
.y20_c01031{bottom:807.120000px;}
.y1d_c01031{bottom:845.280000px;}
.y1e_c01031{bottom:848.160000px;}
.y1c_c01031{bottom:848.880000px;}
.y1b_c01031{bottom:887.760000px;}
.y1a_c01031{bottom:888.480000px;}
.y19_c01031{bottom:890.640000px;}
.y18_c01031{bottom:891.360000px;}
.y17_c01031{bottom:892.080000px;}
.y16_c01031{bottom:930.960000px;}
.y15_c01031{bottom:933.120000px;}
.y14_c01031{bottom:933.840000px;}
.y13_c01031{bottom:934.560000px;}
.yf_c01031{bottom:973.440000px;}
.y10_c01031{bottom:974.160000px;}
.y11_c01031{bottom:975.600000px;}
.y12_c01031{bottom:976.320000px;}
.yd_c01031{bottom:977.040000px;}
.ye_c01031{bottom:977.760000px;}
.yc_c01031{bottom:1015.200000px;}
.yb_c01031{bottom:1016.640000px;}
.ya_c01031{bottom:1018.800000px;}
.y8_c01031{bottom:1019.520000px;}
.y9_c01031{bottom:1020.240000px;}
.y4_c01031{bottom:1058.400000px;}
.y7_c01031{bottom:1059.120000px;}
.y5_c01031{bottom:1059.840000px;}
.y6_c01031{bottom:1062.000000px;}
.y3_c01031{bottom:1062.720000px;}
.y2_c01031{bottom:1063.440000px;}
.y1_c01031{bottom:1102.320000px;}
.hd_c01031{height:28.508906px;}
.h7_c01031{height:31.100625px;}
.h6_c01031{height:38.875781px;}
.h3_c01031{height:41.467500px;}
.h4_c01031{height:44.059219px;}
.h9_c01031{height:46.650937px;}
.hb_c01031{height:49.242656px;}
.h8_c01031{height:51.834375px;}
.ha_c01031{height:54.426094px;}
.h5_c01031{height:57.017812px;}
.hc_c01031{height:59.609531px;}
.h2_c01031{height:62.201250px;}
.h0_c01031{height:1158.480000px;}
.h1_c01031{height:1158.750000px;}
.w1_c01031{width:788.250000px;}
.w0_c01031{width:788.400000px;}
.x0_c01031{left:0.000000px;}
.xa_c01031{left:73.440000px;}
.x21_c01031{left:74.880000px;}
.x51_c01031{left:105.840000px;}
.x1d_c01031{left:107.280000px;}
.x14_c01031{left:117.360000px;}
.x3f_c01031{left:118.800000px;}
.x22_c01031{left:127.440000px;}
.xb_c01031{left:129.600000px;}
.x52_c01031{left:140.400000px;}
.x36_c01031{left:142.560000px;}
.x40_c01031{left:149.760000px;}
.x3a_c01031{left:159.840000px;}
.x34_c01031{left:161.280000px;}
.x23_c01031{left:172.800000px;}
.xc_c01031{left:181.440000px;}
.x2_c01031{left:183.600000px;}
.x4a_c01031{left:185.040000px;}
.x15_c01031{left:193.680000px;}
.x43_c01031{left:203.760000px;}
.x2e_c01031{left:205.200000px;}
.x3b_c01031{left:213.840000px;}
.x41_c01031{left:216.000000px;}
.x29_c01031{left:224.640000px;}
.x16_c01031{left:226.080000px;}
.x3_c01031{left:236.880000px;}
.x4e_c01031{left:246.960000px;}
.x1e_c01031{left:258.480000px;}
.x2f_c01031{left:268.560000px;}
.x2a_c01031{left:270.000000px;}
.x37_c01031{left:279.360000px;}
.x4_c01031{left:290.160000px;}
.x4f_c01031{left:291.600000px;}
.x17_c01031{left:300.960000px;}
.x3c_c01031{left:312.480000px;}
.xd_c01031{left:322.560000px;}
.x44_c01031{left:334.080000px;}
.x38_c01031{left:344.880000px;}
.x24_c01031{left:354.960000px;}
.x42_c01031{left:364.320000px;}
.xe_c01031{left:366.480000px;}
.x1f_c01031{left:375.840000px;}
.x2b_c01031{left:377.280000px;}
.x25_c01031{left:388.080000px;}
.x53_c01031{left:397.440000px;}
.x30_c01031{left:401.760000px;}
.x4d_c01031{left:408.240000px;}
.x4c_c01031{left:409.680000px;}
.x4b_c01031{left:411.120000px;}
.x18_c01031{left:419.760000px;}
.x5_c01031{left:429.840000px;}
.x2c_c01031{left:441.360000px;}
.x19_c01031{left:452.160000px;}
.xf_c01031{left:462.960000px;}
.x39_c01031{left:473.040000px;}
.x46_c01031{left:475.200000px;}
.x26_c01031{left:483.840000px;}
.x6_c01031{left:485.280000px;}
.x50_c01031{left:494.640000px;}
.x10_c01031{left:496.080000px;}
.x27_c01031{left:506.160000px;}
.x47_c01031{left:507.600000px;}
.x2d_c01031{left:516.960000px;}
.x3d_c01031{left:518.400000px;}
.x35_c01031{left:529.200000px;}
.x48_c01031{left:538.560000px;}
.x7_c01031{left:548.640000px;}
.x31_c01031{left:560.160000px;}
.x49_c01031{left:561.600000px;}
.x1a_c01031{left:570.960000px;}
.x8_c01031{left:583.200000px;}
.x32_c01031{left:593.280000px;}
.x11_c01031{left:604.080000px;}
.x1b_c01031{left:614.880000px;}
.x20_c01031{left:626.400000px;}
.x12_c01031{left:636.480000px;}
.x3e_c01031{left:648.000000px;}
.x1c_c01031{left:658.080000px;}
.x13_c01031{left:668.880000px;}
.x28_c01031{left:681.120000px;}
.x33_c01031{left:691.200000px;}
.x1_c01031{left:696.960000px;}
.x45_c01031{left:702.000000px;}
.x9_c01031{left:712.800000px;}
@media print{
.v1_c01031{vertical-align:-10.240000pt;}
.v2_c01031{vertical-align:-2.560000pt;}
.v0_c01031{vertical-align:0.000000pt;}
.ls0_c01031{letter-spacing:0.000000pt;}
.ws1_c01031{word-spacing:-4.986880pt;}
.ws0_c01031{word-spacing:-1.636693pt;}
.ws2_c01031{word-spacing:0.000000pt;}
.fsb_c01031{font-size:28.160000pt;}
.fs5_c01031{font-size:30.720000pt;}
.fs4_c01031{font-size:38.400000pt;}
.fs1_c01031{font-size:40.960000pt;}
.fs2_c01031{font-size:43.520000pt;}
.fs7_c01031{font-size:46.080000pt;}
.fs9_c01031{font-size:48.640000pt;}
.fs6_c01031{font-size:51.200000pt;}
.fs8_c01031{font-size:53.760000pt;}
.fs3_c01031{font-size:56.320000pt;}
.fsa_c01031{font-size:58.880000pt;}
.fs0_c01031{font-size:61.440000pt;}
.y0_c01031{bottom:0.000000pt;}
.y5b_c01031{bottom:75.520000pt;}
.y5d_c01031{bottom:76.160000pt;}
.y5a_c01031{bottom:77.440000pt;}
.y59_c01031{bottom:78.080000pt;}
.y5c_c01031{bottom:78.720000pt;}
.y58_c01031{bottom:113.280000pt;}
.y55_c01031{bottom:113.920000pt;}
.y56_c01031{bottom:116.480000pt;}
.y57_c01031{bottom:117.120000pt;}
.y54_c01031{bottom:152.320000pt;}
.y53_c01031{bottom:154.240000pt;}
.y52_c01031{bottom:154.880000pt;}
.y50_c01031{bottom:190.720000pt;}
.y4f_c01031{bottom:192.640000pt;}
.y51_c01031{bottom:193.280000pt;}
.y4d_c01031{bottom:237.440000pt;}
.y4c_c01031{bottom:238.080000pt;}
.y4e_c01031{bottom:238.720000pt;}
.y4b_c01031{bottom:239.360000pt;}
.y49_c01031{bottom:275.200000pt;}
.y47_c01031{bottom:275.840000pt;}
.y4a_c01031{bottom:276.480000pt;}
.y48_c01031{bottom:277.120000pt;}
.y46_c01031{bottom:278.400000pt;}
.y43_c01031{bottom:313.600000pt;}
.y45_c01031{bottom:314.240000pt;}
.y42_c01031{bottom:315.520000pt;}
.y44_c01031{bottom:316.160000pt;}
.y41_c01031{bottom:316.800000pt;}
.y3e_c01031{bottom:352.000000pt;}
.y3d_c01031{bottom:353.920000pt;}
.y3f_c01031{bottom:354.560000pt;}
.y40_c01031{bottom:355.200000pt;}
.y3c_c01031{bottom:390.400000pt;}
.y3a_c01031{bottom:392.320000pt;}
.y3b_c01031{bottom:392.960000pt;}
.y38_c01031{bottom:437.760000pt;}
.y37_c01031{bottom:440.320000pt;}
.y39_c01031{bottom:440.960000pt;}
.y36_c01031{bottom:475.520000pt;}
.y35_c01031{bottom:476.160000pt;}
.y34_c01031{bottom:478.720000pt;}
.y31_c01031{bottom:514.560000pt;}
.y33_c01031{bottom:516.480000pt;}
.y32_c01031{bottom:517.120000pt;}
.y30_c01031{bottom:552.960000pt;}
.y2f_c01031{bottom:554.880000pt;}
.y2e_c01031{bottom:555.520000pt;}
.y2d_c01031{bottom:591.360000pt;}
.y2c_c01031{bottom:592.640000pt;}
.y2b_c01031{bottom:593.280000pt;}
.y29_c01031{bottom:638.080000pt;}
.y2a_c01031{bottom:638.720000pt;}
.y28_c01031{bottom:641.280000pt;}
.y25_c01031{bottom:676.480000pt;}
.y26_c01031{bottom:679.040000pt;}
.y27_c01031{bottom:679.680000pt;}
.y23_c01031{bottom:712.960000pt;}
.y1f_c01031{bottom:714.240000pt;}
.y24_c01031{bottom:714.880000pt;}
.y22_c01031{bottom:716.160000pt;}
.y21_c01031{bottom:716.800000pt;}
.y20_c01031{bottom:717.440000pt;}
.y1d_c01031{bottom:751.360000pt;}
.y1e_c01031{bottom:753.920000pt;}
.y1c_c01031{bottom:754.560000pt;}
.y1b_c01031{bottom:789.120000pt;}
.y1a_c01031{bottom:789.760000pt;}
.y19_c01031{bottom:791.680000pt;}
.y18_c01031{bottom:792.320000pt;}
.y17_c01031{bottom:792.960000pt;}
.y16_c01031{bottom:827.520000pt;}
.y15_c01031{bottom:829.440000pt;}
.y14_c01031{bottom:830.080000pt;}
.y13_c01031{bottom:830.720000pt;}
.yf_c01031{bottom:865.280000pt;}
.y10_c01031{bottom:865.920000pt;}
.y11_c01031{bottom:867.200000pt;}
.y12_c01031{bottom:867.840000pt;}
.yd_c01031{bottom:868.480000pt;}
.ye_c01031{bottom:869.120000pt;}
.yc_c01031{bottom:902.400000pt;}
.yb_c01031{bottom:903.680000pt;}
.ya_c01031{bottom:905.600000pt;}
.y8_c01031{bottom:906.240000pt;}
.y9_c01031{bottom:906.880000pt;}
.y4_c01031{bottom:940.800000pt;}
.y7_c01031{bottom:941.440000pt;}
.y5_c01031{bottom:942.080000pt;}
.y6_c01031{bottom:944.000000pt;}
.y3_c01031{bottom:944.640000pt;}
.y2_c01031{bottom:945.280000pt;}
.y1_c01031{bottom:979.840000pt;}
.hd_c01031{height:25.341250pt;}
.h7_c01031{height:27.645000pt;}
.h6_c01031{height:34.556250pt;}
.h3_c01031{height:36.860000pt;}
.h4_c01031{height:39.163750pt;}
.h9_c01031{height:41.467500pt;}
.hb_c01031{height:43.771250pt;}
.h8_c01031{height:46.075000pt;}
.ha_c01031{height:48.378750pt;}
.h5_c01031{height:50.682500pt;}
.hc_c01031{height:52.986250pt;}
.h2_c01031{height:55.290000pt;}
.h0_c01031{height:1029.760000pt;}
.h1_c01031{height:1030.000000pt;}
.w1_c01031{width:700.666667pt;}
.w0_c01031{width:700.800000pt;}
.x0_c01031{left:0.000000pt;}
.xa_c01031{left:65.280000pt;}
.x21_c01031{left:66.560000pt;}
.x51_c01031{left:94.080000pt;}
.x1d_c01031{left:95.360000pt;}
.x14_c01031{left:104.320000pt;}
.x3f_c01031{left:105.600000pt;}
.x22_c01031{left:113.280000pt;}
.xb_c01031{left:115.200000pt;}
.x52_c01031{left:124.800000pt;}
.x36_c01031{left:126.720000pt;}
.x40_c01031{left:133.120000pt;}
.x3a_c01031{left:142.080000pt;}
.x34_c01031{left:143.360000pt;}
.x23_c01031{left:153.600000pt;}
.xc_c01031{left:161.280000pt;}
.x2_c01031{left:163.200000pt;}
.x4a_c01031{left:164.480000pt;}
.x15_c01031{left:172.160000pt;}
.x43_c01031{left:181.120000pt;}
.x2e_c01031{left:182.400000pt;}
.x3b_c01031{left:190.080000pt;}
.x41_c01031{left:192.000000pt;}
.x29_c01031{left:199.680000pt;}
.x16_c01031{left:200.960000pt;}
.x3_c01031{left:210.560000pt;}
.x4e_c01031{left:219.520000pt;}
.x1e_c01031{left:229.760000pt;}
.x2f_c01031{left:238.720000pt;}
.x2a_c01031{left:240.000000pt;}
.x37_c01031{left:248.320000pt;}
.x4_c01031{left:257.920000pt;}
.x4f_c01031{left:259.200000pt;}
.x17_c01031{left:267.520000pt;}
.x3c_c01031{left:277.760000pt;}
.xd_c01031{left:286.720000pt;}
.x44_c01031{left:296.960000pt;}
.x38_c01031{left:306.560000pt;}
.x24_c01031{left:315.520000pt;}
.x42_c01031{left:323.840000pt;}
.xe_c01031{left:325.760000pt;}
.x1f_c01031{left:334.080000pt;}
.x2b_c01031{left:335.360000pt;}
.x25_c01031{left:344.960000pt;}
.x53_c01031{left:353.280000pt;}
.x30_c01031{left:357.120000pt;}
.x4d_c01031{left:362.880000pt;}
.x4c_c01031{left:364.160000pt;}
.x4b_c01031{left:365.440000pt;}
.x18_c01031{left:373.120000pt;}
.x5_c01031{left:382.080000pt;}
.x2c_c01031{left:392.320000pt;}
.x19_c01031{left:401.920000pt;}
.xf_c01031{left:411.520000pt;}
.x39_c01031{left:420.480000pt;}
.x46_c01031{left:422.400000pt;}
.x26_c01031{left:430.080000pt;}
.x6_c01031{left:431.360000pt;}
.x50_c01031{left:439.680000pt;}
.x10_c01031{left:440.960000pt;}
.x27_c01031{left:449.920000pt;}
.x47_c01031{left:451.200000pt;}
.x2d_c01031{left:459.520000pt;}
.x3d_c01031{left:460.800000pt;}
.x35_c01031{left:470.400000pt;}
.x48_c01031{left:478.720000pt;}
.x7_c01031{left:487.680000pt;}
.x31_c01031{left:497.920000pt;}
.x49_c01031{left:499.200000pt;}
.x1a_c01031{left:507.520000pt;}
.x8_c01031{left:518.400000pt;}
.x32_c01031{left:527.360000pt;}
.x11_c01031{left:536.960000pt;}
.x1b_c01031{left:546.560000pt;}
.x20_c01031{left:556.800000pt;}
.x12_c01031{left:565.760000pt;}
.x3e_c01031{left:576.000000pt;}
.x1c_c01031{left:584.960000pt;}
.x13_c01031{left:594.560000pt;}
.x28_c01031{left:605.440000pt;}
.x33_c01031{left:614.400000pt;}
.x1_c01031{left:619.520000pt;}
.x45_c01031{left:624.000000pt;}
.x9_c01031{left:633.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b3f511fce1bea9327a1bce1f.woff2')format("woff");}.ff1_c01032{font-family:ff1_c01032;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3e_c01032{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);}
.m3d_c01032{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m29_c01032{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m4d_c01032{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);}
.m41_c01032{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m5c_c01032{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m52_c01032{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m27_c01032{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m45_c01032{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01032{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m5e_c01032{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01032{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m12_c01032{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);}
.m47_c01032{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m22_c01032{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m7_c01032{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);}
.m37_c01032{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);}
.m5a_c01032{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m9_c01032{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m31_c01032{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_c01032{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m26_c01032{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01032{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);}
.m40_c01032{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);}
.m55_c01032{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m2_c01032{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);}
.mb_c01032{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);}
.m36_c01032{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);}
.m5_c01032{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);}
.m0_c01032{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.mf_c01032{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);}
.m59_c01032{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);}
.m4a_c01032{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);}
.m6_c01032{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m28_c01032{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.mc_c01032{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01032{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m39_c01032{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);}
.m43_c01032{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m21_c01032{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);}
.m46_c01032{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);}
.m4e_c01032{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m50_c01032{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m8_c01032{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);}
.m48_c01032{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01032{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m44_c01032{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);}
.m2b_c01032{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);}
.m1d_c01032{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m3_c01032{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m57_c01032{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m51_c01032{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01032{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);}
.m49_c01032{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01032{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m25_c01032{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m18_c01032{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);}
.m16_c01032{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01032{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m4_c01032{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m5b_c01032{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);}
.m23_c01032{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);}
.m1e_c01032{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m33_c01032{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m10_c01032{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);}
.m2e_c01032{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m14_c01032{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m34_c01032{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);}
.m30_c01032{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m32_c01032{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m35_c01032{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m20_c01032{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01032{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);}
.m17_c01032{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);}
.md_c01032{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m38_c01032{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m5d_c01032{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01032{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m11_c01032{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m15_c01032{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);}
.m13_c01032{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);}
.m19_c01032{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m54_c01032{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01032{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);}
.me_c01032{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01032{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m58_c01032{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);}
.m3c_c01032{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m1_c01032{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m42_c01032{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);}
.m2c_c01032{transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);}
.m24_c01032{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01032{transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);}
.m56_c01032{transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);}
.m53_c01032{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.v0_c01032{vertical-align:0.000000px;}
.ls0_c01032{letter-spacing:0.000000px;}
.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;}
}
.ws1_c01032{word-spacing:-3.414000px;}
.ws2_c01032{word-spacing:0.000000px;}
.ws0_c01032{word-spacing:2.634684px;}
.fc0_c01032{color:transparent;}
.fsa_c01032{font-size:31.680000px;}
.fs1_c01032{font-size:34.560000px;}
.fsd_c01032{font-size:37.440000px;}
.fs3_c01032{font-size:43.200000px;}
.fs4_c01032{font-size:46.080000px;}
.fs2_c01032{font-size:48.960000px;}
.fs5_c01032{font-size:51.840000px;}
.fsc_c01032{font-size:54.720000px;}
.fs9_c01032{font-size:57.600000px;}
.fs8_c01032{font-size:60.480000px;}
.fsb_c01032{font-size:63.360000px;}
.fs6_c01032{font-size:66.240000px;}
.fs7_c01032{font-size:69.120000px;}
.fs0_c01032{font-size:72.000000px;}
.y0_c01032{bottom:0.000000px;}
.y67_c01032{bottom:33.120000px;}
.y65_c01032{bottom:33.840000px;}
.y64_c01032{bottom:36.000000px;}
.y66_c01032{bottom:36.720000px;}
.y5f_c01032{bottom:75.600000px;}
.y63_c01032{bottom:77.040000px;}
.y61_c01032{bottom:78.480000px;}
.y60_c01032{bottom:79.200000px;}
.y62_c01032{bottom:79.920000px;}
.y5e_c01032{bottom:119.520000px;}
.y5d_c01032{bottom:121.680000px;}
.y5c_c01032{bottom:122.400000px;}
.y58_c01032{bottom:162.000000px;}
.y5b_c01032{bottom:162.720000px;}
.y57_c01032{bottom:164.160000px;}
.y59_c01032{bottom:164.880000px;}
.y5a_c01032{bottom:165.600000px;}
.y56_c01032{bottom:205.200000px;}
.y54_c01032{bottom:207.360000px;}
.y55_c01032{bottom:208.080000px;}
.y50_c01032{bottom:248.400000px;}
.y53_c01032{bottom:249.120000px;}
.y51_c01032{bottom:250.560000px;}
.y52_c01032{bottom:251.280000px;}
.y4f_c01032{bottom:291.600000px;}
.y4e_c01032{bottom:293.760000px;}
.y4d_c01032{bottom:294.480000px;}
.y4b_c01032{bottom:344.880000px;}
.y4a_c01032{bottom:347.040000px;}
.y4c_c01032{bottom:347.760000px;}
.y47_c01032{bottom:388.080000px;}
.y48_c01032{bottom:388.800000px;}
.y46_c01032{bottom:390.960000px;}
.y49_c01032{bottom:391.680000px;}
.y42_c01032{bottom:430.560000px;}
.y45_c01032{bottom:431.280000px;}
.y43_c01032{bottom:432.000000px;}
.y41_c01032{bottom:433.440000px;}
.y44_c01032{bottom:434.160000px;}
.y40_c01032{bottom:434.880000px;}
.y3d_c01032{bottom:474.480000px;}
.y3f_c01032{bottom:475.200000px;}
.y3e_c01032{bottom:476.640000px;}
.y3c_c01032{bottom:477.360000px;}
.y38_c01032{bottom:516.960000px;}
.y3a_c01032{bottom:519.120000px;}
.y3b_c01032{bottom:519.840000px;}
.y39_c01032{bottom:520.560000px;}
.y36_c01032{bottom:570.240000px;}
.y37_c01032{bottom:570.960000px;}
.y35_c01032{bottom:572.400000px;}
.y34_c01032{bottom:573.120000px;}
.y31_c01032{bottom:612.000000px;}
.y32_c01032{bottom:612.720000px;}
.y33_c01032{bottom:613.440000px;}
.y30_c01032{bottom:615.600000px;}
.y2f_c01032{bottom:616.320000px;}
.y2d_c01032{bottom:655.200000px;}
.y2e_c01032{bottom:655.920000px;}
.y2a_c01032{bottom:658.080000px;}
.y2b_c01032{bottom:658.800000px;}
.y2c_c01032{bottom:659.520000px;}
.y27_c01032{bottom:699.120000px;}
.y29_c01032{bottom:700.560000px;}
.y26_c01032{bottom:701.280000px;}
.y28_c01032{bottom:702.000000px;}
.y25_c01032{bottom:741.600000px;}
.y22_c01032{bottom:743.760000px;}
.y23_c01032{bottom:744.480000px;}
.y24_c01032{bottom:745.200000px;}
.y1e_c01032{bottom:784.080000px;}
.y20_c01032{bottom:786.960000px;}
.y21_c01032{bottom:787.680000px;}
.y1f_c01032{bottom:788.400000px;}
.y1d_c01032{bottom:826.560000px;}
.y1b_c01032{bottom:827.280000px;}
.y1c_c01032{bottom:828.000000px;}
.y1a_c01032{bottom:830.160000px;}
.y19_c01032{bottom:830.880000px;}
.y17_c01032{bottom:870.480000px;}
.y15_c01032{bottom:871.200000px;}
.y18_c01032{bottom:872.640000px;}
.y16_c01032{bottom:873.360000px;}
.y12_c01032{bottom:912.960000px;}
.y13_c01032{bottom:913.680000px;}
.y14_c01032{bottom:915.840000px;}
.y11_c01032{bottom:916.560000px;}
.yf_c01032{bottom:955.440000px;}
.y10_c01032{bottom:956.160000px;}
.ye_c01032{bottom:958.320000px;}
.yc_c01032{bottom:959.040000px;}
.yd_c01032{bottom:959.760000px;}
.ya_c01032{bottom:998.640000px;}
.yb_c01032{bottom:999.360000px;}
.y9_c01032{bottom:1000.800000px;}
.y8_c01032{bottom:1001.520000px;}
.y6_c01032{bottom:1052.640000px;}
.y4_c01032{bottom:1053.360000px;}
.y7_c01032{bottom:1054.080000px;}
.y5_c01032{bottom:1054.800000px;}
.y2_c01032{bottom:1055.520000px;}
.y3_c01032{bottom:1056.240000px;}
.y1_c01032{bottom:1113.120000px;}
.hc_c01032{height:28.508906px;}
.h3_c01032{height:31.100625px;}
.hf_c01032{height:33.692344px;}
.h5_c01032{height:38.875781px;}
.h6_c01032{height:41.467500px;}
.h4_c01032{height:44.059219px;}
.h7_c01032{height:46.650937px;}
.he_c01032{height:49.242656px;}
.hb_c01032{height:51.834375px;}
.ha_c01032{height:54.426094px;}
.hd_c01032{height:57.017812px;}
.h8_c01032{height:59.609531px;}
.h9_c01032{height:62.201250px;}
.h2_c01032{height:64.792969px;}
.h0_c01032{height:1158.480000px;}
.h1_c01032{height:1158.750000px;}
.w1_c01032{width:787.500000px;}
.w0_c01032{width:787.680000px;}
.x0_c01032{left:0.000000px;}
.x2_c01032{left:77.760000px;}
.x20_c01032{left:79.920000px;}
.x27_c01032{left:99.360000px;}
.x45_c01032{left:100.800000px;}
.x13_c01032{left:110.160000px;}
.x4a_c01032{left:111.600000px;}
.x35_c01032{left:113.760000px;}
.x3_c01032{left:121.680000px;}
.x5b_c01032{left:131.760000px;}
.x5d_c01032{left:133.200000px;}
.x3c_c01032{left:142.560000px;}
.x19_c01032{left:144.000000px;}
.x2e_c01032{left:154.800000px;}
.x14_c01032{left:165.600000px;}
.x4d_c01032{left:176.400000px;}
.x1a_c01032{left:186.480000px;}
.x4_c01032{left:187.920000px;}
.x15_c01032{left:197.280000px;}
.x53_c01032{left:218.160000px;}
.x24_c01032{left:220.320000px;}
.x38_c01032{left:229.680000px;}
.x4b_c01032{left:232.560000px;}
.xd_c01032{left:241.920000px;}
.x2f_c01032{left:252.000000px;}
.x46_c01032{left:262.800000px;}
.x5_c01032{left:272.160000px;}
.x55_c01032{left:274.320000px;}
.x3d_c01032{left:282.960000px;}
.x3f_c01032{left:284.400000px;}
.x6_c01032{left:294.480000px;}
.x56_c01032{left:295.920000px;}
.x16_c01032{left:304.560000px;}
.x28_c01032{left:306.720000px;}
.xe_c01032{left:315.360000px;}
.x54_c01032{left:317.520000px;}
.x7_c01032{left:326.160000px;}
.x40_c01032{left:328.320000px;}
.x47_c01032{left:339.120000px;}
.x30_c01032{left:349.200000px;}
.x25_c01032{left:351.360000px;}
.x36_c01032{left:359.280000px;}
.x52_c01032{left:361.440000px;}
.x8_c01032{left:369.360000px;}
.x29_c01032{left:370.800000px;}
.x31_c01032{left:380.880000px;}
.x5f_c01032{left:382.320000px;}
.x1b_c01032{left:390.960000px;}
.x9_c01032{left:403.200000px;}
.x32_c01032{left:412.560000px;}
.x57_c01032{left:414.720000px;}
.xf_c01032{left:423.360000px;}
.x60_c01032{left:426.240000px;}
.x1c_c01032{left:434.160000px;}
.x48_c01032{left:435.600000px;}
.x4e_c01032{left:446.400000px;}
.x10_c01032{left:455.760000px;}
.xa_c01032{left:458.640000px;}
.x41_c01032{left:460.080000px;}
.x2a_c01032{left:468.000000px;}
.x5c_c01032{left:469.440000px;}
.x1d_c01032{left:477.360000px;}
.x21_c01032{left:490.320000px;}
.x61_c01032{left:492.480000px;}
.x2b_c01032{left:498.960000px;}
.x43_c01032{left:500.400000px;}
.x59_c01032{left:511.200000px;}
.x4f_c01032{left:521.280000px;}
.x33_c01032{left:522.720000px;}
.x11_c01032{left:531.360000px;}
.x44_c01032{left:533.520000px;}
.x37_c01032{left:544.320000px;}
.x39_c01032{left:546.480000px;}
.x1e_c01032{left:553.680000px;}
.x2c_c01032{left:565.920000px;}
.xb_c01032{left:574.560000px;}
.x17_c01032{left:576.000000px;}
.x42_c01032{left:577.440000px;}
.x1f_c01032{left:586.800000px;}
.x34_c01032{left:597.600000px;}
.xc_c01032{left:606.960000px;}
.x50_c01032{left:608.400000px;}
.x3e_c01032{left:619.200000px;}
.x3a_c01032{left:620.640000px;}
.x22_c01032{left:629.280000px;}
.x5a_c01032{left:631.440000px;}
.x26_c01032{left:640.800000px;}
.x4c_c01032{left:642.240000px;}
.x12_c01032{left:650.880000px;}
.x49_c01032{left:652.320000px;}
.x18_c01032{left:660.960000px;}
.x2d_c01032{left:663.120000px;}
.x1_c01032{left:671.040000px;}
.x23_c01032{left:673.200000px;}
.x5e_c01032{left:675.360000px;}
.x3b_c01032{left:684.000000px;}
.x51_c01032{left:686.160000px;}
.x58_c01032{left:696.960000px;}
@media print{
.v0_c01032{vertical-align:0.000000pt;}
.ls0_c01032{letter-spacing:0.000000pt;}
.ws1_c01032{word-spacing:-3.034667pt;}
.ws2_c01032{word-spacing:0.000000pt;}
.ws0_c01032{word-spacing:2.341942pt;}
.fsa_c01032{font-size:28.160000pt;}
.fs1_c01032{font-size:30.720000pt;}
.fsd_c01032{font-size:33.280000pt;}
.fs3_c01032{font-size:38.400000pt;}
.fs4_c01032{font-size:40.960000pt;}
.fs2_c01032{font-size:43.520000pt;}
.fs5_c01032{font-size:46.080000pt;}
.fsc_c01032{font-size:48.640000pt;}
.fs9_c01032{font-size:51.200000pt;}
.fs8_c01032{font-size:53.760000pt;}
.fsb_c01032{font-size:56.320000pt;}
.fs6_c01032{font-size:58.880000pt;}
.fs7_c01032{font-size:61.440000pt;}
.fs0_c01032{font-size:64.000000pt;}
.y0_c01032{bottom:0.000000pt;}
.y67_c01032{bottom:29.440000pt;}
.y65_c01032{bottom:30.080000pt;}
.y64_c01032{bottom:32.000000pt;}
.y66_c01032{bottom:32.640000pt;}
.y5f_c01032{bottom:67.200000pt;}
.y63_c01032{bottom:68.480000pt;}
.y61_c01032{bottom:69.760000pt;}
.y60_c01032{bottom:70.400000pt;}
.y62_c01032{bottom:71.040000pt;}
.y5e_c01032{bottom:106.240000pt;}
.y5d_c01032{bottom:108.160000pt;}
.y5c_c01032{bottom:108.800000pt;}
.y58_c01032{bottom:144.000000pt;}
.y5b_c01032{bottom:144.640000pt;}
.y57_c01032{bottom:145.920000pt;}
.y59_c01032{bottom:146.560000pt;}
.y5a_c01032{bottom:147.200000pt;}
.y56_c01032{bottom:182.400000pt;}
.y54_c01032{bottom:184.320000pt;}
.y55_c01032{bottom:184.960000pt;}
.y50_c01032{bottom:220.800000pt;}
.y53_c01032{bottom:221.440000pt;}
.y51_c01032{bottom:222.720000pt;}
.y52_c01032{bottom:223.360000pt;}
.y4f_c01032{bottom:259.200000pt;}
.y4e_c01032{bottom:261.120000pt;}
.y4d_c01032{bottom:261.760000pt;}
.y4b_c01032{bottom:306.560000pt;}
.y4a_c01032{bottom:308.480000pt;}
.y4c_c01032{bottom:309.120000pt;}
.y47_c01032{bottom:344.960000pt;}
.y48_c01032{bottom:345.600000pt;}
.y46_c01032{bottom:347.520000pt;}
.y49_c01032{bottom:348.160000pt;}
.y42_c01032{bottom:382.720000pt;}
.y45_c01032{bottom:383.360000pt;}
.y43_c01032{bottom:384.000000pt;}
.y41_c01032{bottom:385.280000pt;}
.y44_c01032{bottom:385.920000pt;}
.y40_c01032{bottom:386.560000pt;}
.y3d_c01032{bottom:421.760000pt;}
.y3f_c01032{bottom:422.400000pt;}
.y3e_c01032{bottom:423.680000pt;}
.y3c_c01032{bottom:424.320000pt;}
.y38_c01032{bottom:459.520000pt;}
.y3a_c01032{bottom:461.440000pt;}
.y3b_c01032{bottom:462.080000pt;}
.y39_c01032{bottom:462.720000pt;}
.y36_c01032{bottom:506.880000pt;}
.y37_c01032{bottom:507.520000pt;}
.y35_c01032{bottom:508.800000pt;}
.y34_c01032{bottom:509.440000pt;}
.y31_c01032{bottom:544.000000pt;}
.y32_c01032{bottom:544.640000pt;}
.y33_c01032{bottom:545.280000pt;}
.y30_c01032{bottom:547.200000pt;}
.y2f_c01032{bottom:547.840000pt;}
.y2d_c01032{bottom:582.400000pt;}
.y2e_c01032{bottom:583.040000pt;}
.y2a_c01032{bottom:584.960000pt;}
.y2b_c01032{bottom:585.600000pt;}
.y2c_c01032{bottom:586.240000pt;}
.y27_c01032{bottom:621.440000pt;}
.y29_c01032{bottom:622.720000pt;}
.y26_c01032{bottom:623.360000pt;}
.y28_c01032{bottom:624.000000pt;}
.y25_c01032{bottom:659.200000pt;}
.y22_c01032{bottom:661.120000pt;}
.y23_c01032{bottom:661.760000pt;}
.y24_c01032{bottom:662.400000pt;}
.y1e_c01032{bottom:696.960000pt;}
.y20_c01032{bottom:699.520000pt;}
.y21_c01032{bottom:700.160000pt;}
.y1f_c01032{bottom:700.800000pt;}
.y1d_c01032{bottom:734.720000pt;}
.y1b_c01032{bottom:735.360000pt;}
.y1c_c01032{bottom:736.000000pt;}
.y1a_c01032{bottom:737.920000pt;}
.y19_c01032{bottom:738.560000pt;}
.y17_c01032{bottom:773.760000pt;}
.y15_c01032{bottom:774.400000pt;}
.y18_c01032{bottom:775.680000pt;}
.y16_c01032{bottom:776.320000pt;}
.y12_c01032{bottom:811.520000pt;}
.y13_c01032{bottom:812.160000pt;}
.y14_c01032{bottom:814.080000pt;}
.y11_c01032{bottom:814.720000pt;}
.yf_c01032{bottom:849.280000pt;}
.y10_c01032{bottom:849.920000pt;}
.ye_c01032{bottom:851.840000pt;}
.yc_c01032{bottom:852.480000pt;}
.yd_c01032{bottom:853.120000pt;}
.ya_c01032{bottom:887.680000pt;}
.yb_c01032{bottom:888.320000pt;}
.y9_c01032{bottom:889.600000pt;}
.y8_c01032{bottom:890.240000pt;}
.y6_c01032{bottom:935.680000pt;}
.y4_c01032{bottom:936.320000pt;}
.y7_c01032{bottom:936.960000pt;}
.y5_c01032{bottom:937.600000pt;}
.y2_c01032{bottom:938.240000pt;}
.y3_c01032{bottom:938.880000pt;}
.y1_c01032{bottom:989.440000pt;}
.hc_c01032{height:25.341250pt;}
.h3_c01032{height:27.645000pt;}
.hf_c01032{height:29.948750pt;}
.h5_c01032{height:34.556250pt;}
.h6_c01032{height:36.860000pt;}
.h4_c01032{height:39.163750pt;}
.h7_c01032{height:41.467500pt;}
.he_c01032{height:43.771250pt;}
.hb_c01032{height:46.075000pt;}
.ha_c01032{height:48.378750pt;}
.hd_c01032{height:50.682500pt;}
.h8_c01032{height:52.986250pt;}
.h9_c01032{height:55.290000pt;}
.h2_c01032{height:57.593750pt;}
.h0_c01032{height:1029.760000pt;}
.h1_c01032{height:1030.000000pt;}
.w1_c01032{width:700.000000pt;}
.w0_c01032{width:700.160000pt;}
.x0_c01032{left:0.000000pt;}
.x2_c01032{left:69.120000pt;}
.x20_c01032{left:71.040000pt;}
.x27_c01032{left:88.320000pt;}
.x45_c01032{left:89.600000pt;}
.x13_c01032{left:97.920000pt;}
.x4a_c01032{left:99.200000pt;}
.x35_c01032{left:101.120000pt;}
.x3_c01032{left:108.160000pt;}
.x5b_c01032{left:117.120000pt;}
.x5d_c01032{left:118.400000pt;}
.x3c_c01032{left:126.720000pt;}
.x19_c01032{left:128.000000pt;}
.x2e_c01032{left:137.600000pt;}
.x14_c01032{left:147.200000pt;}
.x4d_c01032{left:156.800000pt;}
.x1a_c01032{left:165.760000pt;}
.x4_c01032{left:167.040000pt;}
.x15_c01032{left:175.360000pt;}
.x53_c01032{left:193.920000pt;}
.x24_c01032{left:195.840000pt;}
.x38_c01032{left:204.160000pt;}
.x4b_c01032{left:206.720000pt;}
.xd_c01032{left:215.040000pt;}
.x2f_c01032{left:224.000000pt;}
.x46_c01032{left:233.600000pt;}
.x5_c01032{left:241.920000pt;}
.x55_c01032{left:243.840000pt;}
.x3d_c01032{left:251.520000pt;}
.x3f_c01032{left:252.800000pt;}
.x6_c01032{left:261.760000pt;}
.x56_c01032{left:263.040000pt;}
.x16_c01032{left:270.720000pt;}
.x28_c01032{left:272.640000pt;}
.xe_c01032{left:280.320000pt;}
.x54_c01032{left:282.240000pt;}
.x7_c01032{left:289.920000pt;}
.x40_c01032{left:291.840000pt;}
.x47_c01032{left:301.440000pt;}
.x30_c01032{left:310.400000pt;}
.x25_c01032{left:312.320000pt;}
.x36_c01032{left:319.360000pt;}
.x52_c01032{left:321.280000pt;}
.x8_c01032{left:328.320000pt;}
.x29_c01032{left:329.600000pt;}
.x31_c01032{left:338.560000pt;}
.x5f_c01032{left:339.840000pt;}
.x1b_c01032{left:347.520000pt;}
.x9_c01032{left:358.400000pt;}
.x32_c01032{left:366.720000pt;}
.x57_c01032{left:368.640000pt;}
.xf_c01032{left:376.320000pt;}
.x60_c01032{left:378.880000pt;}
.x1c_c01032{left:385.920000pt;}
.x48_c01032{left:387.200000pt;}
.x4e_c01032{left:396.800000pt;}
.x10_c01032{left:405.120000pt;}
.xa_c01032{left:407.680000pt;}
.x41_c01032{left:408.960000pt;}
.x2a_c01032{left:416.000000pt;}
.x5c_c01032{left:417.280000pt;}
.x1d_c01032{left:424.320000pt;}
.x21_c01032{left:435.840000pt;}
.x61_c01032{left:437.760000pt;}
.x2b_c01032{left:443.520000pt;}
.x43_c01032{left:444.800000pt;}
.x59_c01032{left:454.400000pt;}
.x4f_c01032{left:463.360000pt;}
.x33_c01032{left:464.640000pt;}
.x11_c01032{left:472.320000pt;}
.x44_c01032{left:474.240000pt;}
.x37_c01032{left:483.840000pt;}
.x39_c01032{left:485.760000pt;}
.x1e_c01032{left:492.160000pt;}
.x2c_c01032{left:503.040000pt;}
.xb_c01032{left:510.720000pt;}
.x17_c01032{left:512.000000pt;}
.x42_c01032{left:513.280000pt;}
.x1f_c01032{left:521.600000pt;}
.x34_c01032{left:531.200000pt;}
.xc_c01032{left:539.520000pt;}
.x50_c01032{left:540.800000pt;}
.x3e_c01032{left:550.400000pt;}
.x3a_c01032{left:551.680000pt;}
.x22_c01032{left:559.360000pt;}
.x5a_c01032{left:561.280000pt;}
.x26_c01032{left:569.600000pt;}
.x4c_c01032{left:570.880000pt;}
.x12_c01032{left:578.560000pt;}
.x49_c01032{left:579.840000pt;}
.x18_c01032{left:587.520000pt;}
.x2d_c01032{left:589.440000pt;}
.x1_c01032{left:596.480000pt;}
.x23_c01032{left:598.400000pt;}
.x5e_c01032{left:600.320000pt;}
.x3b_c01032{left:608.000000pt;}
.x51_c01032{left:609.920000pt;}
.x58_c01032{left:619.520000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6f2e4ee8469f36eb6b4db02d.woff2')format("woff");}.ff1_c01033{font-family:ff1_c01033;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01033{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);}
.m58_c01033{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01033{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01033{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m56_c01033{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m45_c01033{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m6_c01033{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m5_c01033{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m54_c01033{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m36_c01033{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mf_c01033{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m53_c01033{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m7_c01033{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m10_c01033{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.ma_c01033{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);}
.m5d_c01033{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);}
.m31_c01033{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m16_c01033{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);}
.m48_c01033{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m25_c01033{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);}
.m4e_c01033{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m32_c01033{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);}
.m3a_c01033{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m47_c01033{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);}
.m11_c01033{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m4a_c01033{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m49_c01033{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);}
.m28_c01033{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);}
.m3c_c01033{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);}
.m4d_c01033{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m27_c01033{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m13_c01033{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01033{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);}
.m4f_c01033{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);}
.m3d_c01033{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.md_c01033{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m37_c01033{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m14_c01033{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m41_c01033{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);}
.m9_c01033{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m46_c01033{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);}
.me_c01033{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m23_c01033{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);}
.m2c_c01033{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);}
.m3f_c01033{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01033{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01033{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m5b_c01033{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);}
.m3_c01033{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m19_c01033{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m52_c01033{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);}
.m8_c01033{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);}
.m30_c01033{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01033{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m42_c01033{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m39_c01033{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m1_c01033{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);}
.m34_c01033{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m43_c01033{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m5a_c01033{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m51_c01033{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);}
.m17_c01033{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01033{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m24_c01033{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m26_c01033{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);}
.m1c_c01033{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m38_c01033{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m33_c01033{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);}
.m4b_c01033{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m12_c01033{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);}
.m44_c01033{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01033{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01033{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m4_c01033{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m5e_c01033{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m59_c01033{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m20_c01033{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);}
.m40_c01033{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m21_c01033{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01033{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m57_c01033{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01033{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01033{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);}
.m29_c01033{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m50_c01033{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);}
.m1e_c01033{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m55_c01033{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m22_c01033{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m5c_c01033{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.mc_c01033{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m2_c01033{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.mb_c01033{transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);}
.m15_c01033{transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);}
.m35_c01033{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.m18_c01033{transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);}
.v1_c01033{vertical-align:-2.880000px;}
.v0_c01033{vertical-align:0.000000px;}
.v2_c01033{vertical-align:5.760000px;}
.ls0_c01033{letter-spacing:0.000000px;}
.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;}
}
.ws2_c01033{word-spacing:0.000000px;}
.ws1_c01033{word-spacing:4.894800px;}
.ws0_c01033{word-spacing:5.264400px;}
.fc0_c01033{color:transparent;}
.fsb_c01033{font-size:20.160000px;}
.fs2_c01033{font-size:25.920000px;}
.fs1_c01033{font-size:34.560000px;}
.fsf_c01033{font-size:37.440000px;}
.fs3_c01033{font-size:40.320000px;}
.fsa_c01033{font-size:43.200000px;}
.fs9_c01033{font-size:46.080000px;}
.fs4_c01033{font-size:48.960000px;}
.fs8_c01033{font-size:51.840000px;}
.fse_c01033{font-size:54.720000px;}
.fsc_c01033{font-size:57.600000px;}
.fs7_c01033{font-size:60.480000px;}
.fsd_c01033{font-size:63.360000px;}
.fs5_c01033{font-size:66.240000px;}
.fs6_c01033{font-size:69.120000px;}
.fs0_c01033{font-size:72.000000px;}
.y0_c01033{bottom:0.000000px;}
.y75_c01033{bottom:56.160000px;}
.y70_c01033{bottom:56.880000px;}
.y71_c01033{bottom:57.600000px;}
.y74_c01033{bottom:58.320000px;}
.y76_c01033{bottom:59.040000px;}
.y73_c01033{bottom:59.760000px;}
.y72_c01033{bottom:60.480000px;}
.y6f_c01033{bottom:61.200000px;}
.y6e_c01033{bottom:99.360000px;}
.y6c_c01033{bottom:100.080000px;}
.y6b_c01033{bottom:100.800000px;}
.y6a_c01033{bottom:101.520000px;}
.y6d_c01033{bottom:102.240000px;}
.y69_c01033{bottom:103.680000px;}
.y68_c01033{bottom:104.400000px;}
.y67_c01033{bottom:142.560000px;}
.y65_c01033{bottom:143.280000px;}
.y63_c01033{bottom:144.000000px;}
.y64_c01033{bottom:145.440000px;}
.y66_c01033{bottom:146.160000px;}
.y61_c01033{bottom:146.880000px;}
.y62_c01033{bottom:147.600000px;}
.y60_c01033{bottom:187.920000px;}
.y5f_c01033{bottom:188.640000px;}
.y5e_c01033{bottom:190.080000px;}
.y5d_c01033{bottom:241.200000px;}
.y5c_c01033{bottom:241.920000px;}
.y5b_c01033{bottom:242.640000px;}
.y5a_c01033{bottom:243.360000px;}
.y59_c01033{bottom:244.080000px;}
.y58_c01033{bottom:281.520000px;}
.y56_c01033{bottom:282.240000px;}
.y57_c01033{bottom:284.400000px;}
.y55_c01033{bottom:285.120000px;}
.y54_c01033{bottom:285.840000px;}
.y53_c01033{bottom:324.000000px;}
.y4f_c01033{bottom:326.160000px;}
.y52_c01033{bottom:326.880000px;}
.y50_c01033{bottom:327.600000px;}
.y51_c01033{bottom:328.320000px;}
.y4e_c01033{bottom:366.480000px;}
.y4c_c01033{bottom:367.200000px;}
.y4d_c01033{bottom:367.920000px;}
.y49_c01033{bottom:368.640000px;}
.y4b_c01033{bottom:369.360000px;}
.y4a_c01033{bottom:370.080000px;}
.y48_c01033{bottom:408.960000px;}
.y45_c01033{bottom:410.400000px;}
.y47_c01033{bottom:411.120000px;}
.y46_c01033{bottom:411.840000px;}
.y44_c01033{bottom:412.560000px;}
.y43_c01033{bottom:413.280000px;}
.y3f_c01033{bottom:452.160000px;}
.y42_c01033{bottom:452.880000px;}
.y3e_c01033{bottom:453.600000px;}
.y41_c01033{bottom:455.040000px;}
.y40_c01033{bottom:455.760000px;}
.y3a_c01033{bottom:495.360000px;}
.y3d_c01033{bottom:497.520000px;}
.y3c_c01033{bottom:498.240000px;}
.y3b_c01033{bottom:498.960000px;}
.y38_c01033{bottom:537.840000px;}
.y36_c01033{bottom:538.560000px;}
.y39_c01033{bottom:540.720000px;}
.y37_c01033{bottom:541.440000px;}
.y35_c01033{bottom:542.160000px;}
.y34_c01033{bottom:581.040000px;}
.y32_c01033{bottom:582.480000px;}
.y33_c01033{bottom:583.920000px;}
.y31_c01033{bottom:584.640000px;}
.y2e_c01033{bottom:624.960000px;}
.y30_c01033{bottom:627.120000px;}
.y2f_c01033{bottom:627.840000px;}
.y2d_c01033{bottom:678.240000px;}
.y2b_c01033{bottom:680.400000px;}
.y2c_c01033{bottom:681.120000px;}
.y26_c01033{bottom:720.000000px;}
.y27_c01033{bottom:720.720000px;}
.y2a_c01033{bottom:721.440000px;}
.y29_c01033{bottom:723.600000px;}
.y28_c01033{bottom:724.320000px;}
.y22_c01033{bottom:763.920000px;}
.y25_c01033{bottom:764.640000px;}
.y21_c01033{bottom:766.080000px;}
.y24_c01033{bottom:766.800000px;}
.y23_c01033{bottom:767.520000px;}
.y1f_c01033{bottom:806.400000px;}
.y20_c01033{bottom:807.120000px;}
.y1d_c01033{bottom:809.280000px;}
.y1e_c01033{bottom:810.000000px;}
.y1b_c01033{bottom:859.680000px;}
.y1a_c01033{bottom:861.120000px;}
.y1c_c01033{bottom:862.560000px;}
.y13_c01033{bottom:901.440000px;}
.y16_c01033{bottom:902.160000px;}
.y18_c01033{bottom:902.880000px;}
.y14_c01033{bottom:904.320000px;}
.y15_c01033{bottom:905.040000px;}
.y17_c01033{bottom:905.760000px;}
.y19_c01033{bottom:906.480000px;}
.y10_c01033{bottom:944.640000px;}
.yf_c01033{bottom:946.800000px;}
.y11_c01033{bottom:947.520000px;}
.y12_c01033{bottom:948.240000px;}
.yb_c01033{bottom:987.840000px;}
.yd_c01033{bottom:988.560000px;}
.ya_c01033{bottom:990.000000px;}
.yc_c01033{bottom:990.720000px;}
.ye_c01033{bottom:991.440000px;}
.y5_c01033{bottom:1029.600000px;}
.y6_c01033{bottom:1030.320000px;}
.y9_c01033{bottom:1031.040000px;}
.y4_c01033{bottom:1031.760000px;}
.y7_c01033{bottom:1033.200000px;}
.y8_c01033{bottom:1033.920000px;}
.y3_c01033{bottom:1090.080000px;}
.y1_c01033{bottom:1091.520000px;}
.y2_c01033{bottom:1100.160000px;}
.hd_c01033{height:18.142031px;}
.h4_c01033{height:23.325469px;}
.h3_c01033{height:31.100625px;}
.h12_c01033{height:33.692344px;}
.h5_c01033{height:36.284062px;}
.hc_c01033{height:38.875781px;}
.hb_c01033{height:41.467500px;}
.h6_c01033{height:44.059219px;}
.ha_c01033{height:46.650937px;}
.h11_c01033{height:49.242656px;}
.he_c01033{height:51.546094px;}
.hf_c01033{height:51.834375px;}
.h13_c01033{height:52.410937px;}
.h9_c01033{height:54.426094px;}
.h10_c01033{height:57.017812px;}
.h7_c01033{height:59.609531px;}
.h8_c01033{height:62.201250px;}
.h2_c01033{height:64.792969px;}
.h1_c01033{height:1147.500000px;}
.h0_c01033{height:1147.680000px;}
.w0_c01033{width:815.760000px;}
.w1_c01033{width:816.000000px;}
.x0_c01033{left:0.000000px;}
.x4_c01033{left:101.520000px;}
.x1a_c01033{left:102.960000px;}
.x51_c01033{left:113.760000px;}
.x5_c01033{left:133.920000px;}
.x4b_c01033{left:135.360000px;}
.x13_c01033{left:137.520000px;}
.x23_c01033{left:144.720000px;}
.x4e_c01033{left:146.160000px;}
.x3f_c01033{left:155.520000px;}
.x1b_c01033{left:156.960000px;}
.xc_c01033{left:167.760000px;}
.x4f_c01033{left:177.840000px;}
.x1c_c01033{left:188.640000px;}
.x52_c01033{left:198.720000px;}
.x2b_c01033{left:200.160000px;}
.x25_c01033{left:210.240000px;}
.x48_c01033{left:211.680000px;}
.x3b_c01033{left:220.320000px;}
.x32_c01033{left:221.760000px;}
.x38_c01033{left:231.840000px;}
.x6_c01033{left:234.000000px;}
.x44_c01033{left:241.920000px;}
.x36_c01033{left:253.440000px;}
.x14_c01033{left:264.960000px;}
.xd_c01033{left:266.400000px;}
.x24_c01033{left:275.760000px;}
.x50_c01033{left:286.560000px;}
.x34_c01033{left:296.640000px;}
.x15_c01033{left:298.800000px;}
.x26_c01033{left:318.240000px;}
.x2c_c01033{left:319.680000px;}
.x40_c01033{left:328.320000px;}
.x16_c01033{left:330.480000px;}
.x7_c01033{left:339.840000px;}
.x39_c01033{left:341.280000px;}
.x1d_c01033{left:351.360000px;}
.x3c_c01033{left:360.720000px;}
.x33_c01033{left:362.880000px;}
.x27_c01033{left:372.960000px;}
.x1e_c01033{left:383.760000px;}
.x8_c01033{left:393.840000px;}
.x4c_c01033{left:395.280000px;}
.x55_c01033{left:405.360000px;}
.x1f_c01033{left:415.440000px;}
.x49_c01033{left:416.880000px;}
.x46_c01033{left:426.240000px;}
.xe_c01033{left:427.680000px;}
.x37_c01033{left:437.040000px;}
.x9_c01033{left:438.480000px;}
.x2d_c01033{left:447.840000px;}
.x2f_c01033{left:449.280000px;}
.x17_c01033{left:459.360000px;}
.x28_c01033{left:470.160000px;}
.x20_c01033{left:481.680000px;}
.x41_c01033{left:491.040000px;}
.x56_c01033{left:493.200000px;}
.x3d_c01033{left:501.840000px;}
.x29_c01033{left:503.280000px;}
.x53_c01033{left:514.080000px;}
.x21_c01033{left:524.880000px;}
.xa_c01033{left:527.040000px;}
.xf_c01033{left:536.400000px;}
.x57_c01033{left:545.040000px;}
.x45_c01033{left:547.200000px;}
.x3a_c01033{left:556.560000px;}
.x30_c01033{left:568.080000px;}
.x2a_c01033{left:577.440000px;}
.x58_c01033{left:581.040000px;}
.x35_c01033{left:589.680000px;}
.x54_c01033{left:600.480000px;}
.x31_c01033{left:601.920000px;}
.x59_c01033{left:612.000000px;}
.xb_c01033{left:621.360000px;}
.x18_c01033{left:622.800000px;}
.x4d_c01033{left:632.880000px;}
.x10_c01033{left:643.680000px;}
.x19_c01033{left:655.200000px;}
.x22_c01033{left:665.280000px;}
.x42_c01033{left:676.080000px;}
.x2e_c01033{left:686.880000px;}
.x4a_c01033{left:688.320000px;}
.x11_c01033{left:697.680000px;}
.x47_c01033{left:699.840000px;}
.x43_c01033{left:708.480000px;}
.x1_c01033{left:720.000000px;}
.x3e_c01033{left:721.440000px;}
.x12_c01033{left:730.080000px;}
.x2_c01033{left:738.720000px;}
.x3_c01033{left:759.600000px;}
@media print{
.v1_c01033{vertical-align:-2.560000pt;}
.v0_c01033{vertical-align:0.000000pt;}
.v2_c01033{vertical-align:5.120000pt;}
.ls0_c01033{letter-spacing:0.000000pt;}
.ws2_c01033{word-spacing:0.000000pt;}
.ws1_c01033{word-spacing:4.350933pt;}
.ws0_c01033{word-spacing:4.679467pt;}
.fsb_c01033{font-size:17.920000pt;}
.fs2_c01033{font-size:23.040000pt;}
.fs1_c01033{font-size:30.720000pt;}
.fsf_c01033{font-size:33.280000pt;}
.fs3_c01033{font-size:35.840000pt;}
.fsa_c01033{font-size:38.400000pt;}
.fs9_c01033{font-size:40.960000pt;}
.fs4_c01033{font-size:43.520000pt;}
.fs8_c01033{font-size:46.080000pt;}
.fse_c01033{font-size:48.640000pt;}
.fsc_c01033{font-size:51.200000pt;}
.fs7_c01033{font-size:53.760000pt;}
.fsd_c01033{font-size:56.320000pt;}
.fs5_c01033{font-size:58.880000pt;}
.fs6_c01033{font-size:61.440000pt;}
.fs0_c01033{font-size:64.000000pt;}
.y0_c01033{bottom:0.000000pt;}
.y75_c01033{bottom:49.920000pt;}
.y70_c01033{bottom:50.560000pt;}
.y71_c01033{bottom:51.200000pt;}
.y74_c01033{bottom:51.840000pt;}
.y76_c01033{bottom:52.480000pt;}
.y73_c01033{bottom:53.120000pt;}
.y72_c01033{bottom:53.760000pt;}
.y6f_c01033{bottom:54.400000pt;}
.y6e_c01033{bottom:88.320000pt;}
.y6c_c01033{bottom:88.960000pt;}
.y6b_c01033{bottom:89.600000pt;}
.y6a_c01033{bottom:90.240000pt;}
.y6d_c01033{bottom:90.880000pt;}
.y69_c01033{bottom:92.160000pt;}
.y68_c01033{bottom:92.800000pt;}
.y67_c01033{bottom:126.720000pt;}
.y65_c01033{bottom:127.360000pt;}
.y63_c01033{bottom:128.000000pt;}
.y64_c01033{bottom:129.280000pt;}
.y66_c01033{bottom:129.920000pt;}
.y61_c01033{bottom:130.560000pt;}
.y62_c01033{bottom:131.200000pt;}
.y60_c01033{bottom:167.040000pt;}
.y5f_c01033{bottom:167.680000pt;}
.y5e_c01033{bottom:168.960000pt;}
.y5d_c01033{bottom:214.400000pt;}
.y5c_c01033{bottom:215.040000pt;}
.y5b_c01033{bottom:215.680000pt;}
.y5a_c01033{bottom:216.320000pt;}
.y59_c01033{bottom:216.960000pt;}
.y58_c01033{bottom:250.240000pt;}
.y56_c01033{bottom:250.880000pt;}
.y57_c01033{bottom:252.800000pt;}
.y55_c01033{bottom:253.440000pt;}
.y54_c01033{bottom:254.080000pt;}
.y53_c01033{bottom:288.000000pt;}
.y4f_c01033{bottom:289.920000pt;}
.y52_c01033{bottom:290.560000pt;}
.y50_c01033{bottom:291.200000pt;}
.y51_c01033{bottom:291.840000pt;}
.y4e_c01033{bottom:325.760000pt;}
.y4c_c01033{bottom:326.400000pt;}
.y4d_c01033{bottom:327.040000pt;}
.y49_c01033{bottom:327.680000pt;}
.y4b_c01033{bottom:328.320000pt;}
.y4a_c01033{bottom:328.960000pt;}
.y48_c01033{bottom:363.520000pt;}
.y45_c01033{bottom:364.800000pt;}
.y47_c01033{bottom:365.440000pt;}
.y46_c01033{bottom:366.080000pt;}
.y44_c01033{bottom:366.720000pt;}
.y43_c01033{bottom:367.360000pt;}
.y3f_c01033{bottom:401.920000pt;}
.y42_c01033{bottom:402.560000pt;}
.y3e_c01033{bottom:403.200000pt;}
.y41_c01033{bottom:404.480000pt;}
.y40_c01033{bottom:405.120000pt;}
.y3a_c01033{bottom:440.320000pt;}
.y3d_c01033{bottom:442.240000pt;}
.y3c_c01033{bottom:442.880000pt;}
.y3b_c01033{bottom:443.520000pt;}
.y38_c01033{bottom:478.080000pt;}
.y36_c01033{bottom:478.720000pt;}
.y39_c01033{bottom:480.640000pt;}
.y37_c01033{bottom:481.280000pt;}
.y35_c01033{bottom:481.920000pt;}
.y34_c01033{bottom:516.480000pt;}
.y32_c01033{bottom:517.760000pt;}
.y33_c01033{bottom:519.040000pt;}
.y31_c01033{bottom:519.680000pt;}
.y2e_c01033{bottom:555.520000pt;}
.y30_c01033{bottom:557.440000pt;}
.y2f_c01033{bottom:558.080000pt;}
.y2d_c01033{bottom:602.880000pt;}
.y2b_c01033{bottom:604.800000pt;}
.y2c_c01033{bottom:605.440000pt;}
.y26_c01033{bottom:640.000000pt;}
.y27_c01033{bottom:640.640000pt;}
.y2a_c01033{bottom:641.280000pt;}
.y29_c01033{bottom:643.200000pt;}
.y28_c01033{bottom:643.840000pt;}
.y22_c01033{bottom:679.040000pt;}
.y25_c01033{bottom:679.680000pt;}
.y21_c01033{bottom:680.960000pt;}
.y24_c01033{bottom:681.600000pt;}
.y23_c01033{bottom:682.240000pt;}
.y1f_c01033{bottom:716.800000pt;}
.y20_c01033{bottom:717.440000pt;}
.y1d_c01033{bottom:719.360000pt;}
.y1e_c01033{bottom:720.000000pt;}
.y1b_c01033{bottom:764.160000pt;}
.y1a_c01033{bottom:765.440000pt;}
.y1c_c01033{bottom:766.720000pt;}
.y13_c01033{bottom:801.280000pt;}
.y16_c01033{bottom:801.920000pt;}
.y18_c01033{bottom:802.560000pt;}
.y14_c01033{bottom:803.840000pt;}
.y15_c01033{bottom:804.480000pt;}
.y17_c01033{bottom:805.120000pt;}
.y19_c01033{bottom:805.760000pt;}
.y10_c01033{bottom:839.680000pt;}
.yf_c01033{bottom:841.600000pt;}
.y11_c01033{bottom:842.240000pt;}
.y12_c01033{bottom:842.880000pt;}
.yb_c01033{bottom:878.080000pt;}
.yd_c01033{bottom:878.720000pt;}
.ya_c01033{bottom:880.000000pt;}
.yc_c01033{bottom:880.640000pt;}
.ye_c01033{bottom:881.280000pt;}
.y5_c01033{bottom:915.200000pt;}
.y6_c01033{bottom:915.840000pt;}
.y9_c01033{bottom:916.480000pt;}
.y4_c01033{bottom:917.120000pt;}
.y7_c01033{bottom:918.400000pt;}
.y8_c01033{bottom:919.040000pt;}
.y3_c01033{bottom:968.960000pt;}
.y1_c01033{bottom:970.240000pt;}
.y2_c01033{bottom:977.920000pt;}
.hd_c01033{height:16.126250pt;}
.h4_c01033{height:20.733750pt;}
.h3_c01033{height:27.645000pt;}
.h12_c01033{height:29.948750pt;}
.h5_c01033{height:32.252500pt;}
.hc_c01033{height:34.556250pt;}
.hb_c01033{height:36.860000pt;}
.h6_c01033{height:39.163750pt;}
.ha_c01033{height:41.467500pt;}
.h11_c01033{height:43.771250pt;}
.he_c01033{height:45.818750pt;}
.hf_c01033{height:46.075000pt;}
.h13_c01033{height:46.587500pt;}
.h9_c01033{height:48.378750pt;}
.h10_c01033{height:50.682500pt;}
.h7_c01033{height:52.986250pt;}
.h8_c01033{height:55.290000pt;}
.h2_c01033{height:57.593750pt;}
.h1_c01033{height:1020.000000pt;}
.h0_c01033{height:1020.160000pt;}
.w0_c01033{width:725.120000pt;}
.w1_c01033{width:725.333333pt;}
.x0_c01033{left:0.000000pt;}
.x4_c01033{left:90.240000pt;}
.x1a_c01033{left:91.520000pt;}
.x51_c01033{left:101.120000pt;}
.x5_c01033{left:119.040000pt;}
.x4b_c01033{left:120.320000pt;}
.x13_c01033{left:122.240000pt;}
.x23_c01033{left:128.640000pt;}
.x4e_c01033{left:129.920000pt;}
.x3f_c01033{left:138.240000pt;}
.x1b_c01033{left:139.520000pt;}
.xc_c01033{left:149.120000pt;}
.x4f_c01033{left:158.080000pt;}
.x1c_c01033{left:167.680000pt;}
.x52_c01033{left:176.640000pt;}
.x2b_c01033{left:177.920000pt;}
.x25_c01033{left:186.880000pt;}
.x48_c01033{left:188.160000pt;}
.x3b_c01033{left:195.840000pt;}
.x32_c01033{left:197.120000pt;}
.x38_c01033{left:206.080000pt;}
.x6_c01033{left:208.000000pt;}
.x44_c01033{left:215.040000pt;}
.x36_c01033{left:225.280000pt;}
.x14_c01033{left:235.520000pt;}
.xd_c01033{left:236.800000pt;}
.x24_c01033{left:245.120000pt;}
.x50_c01033{left:254.720000pt;}
.x34_c01033{left:263.680000pt;}
.x15_c01033{left:265.600000pt;}
.x26_c01033{left:282.880000pt;}
.x2c_c01033{left:284.160000pt;}
.x40_c01033{left:291.840000pt;}
.x16_c01033{left:293.760000pt;}
.x7_c01033{left:302.080000pt;}
.x39_c01033{left:303.360000pt;}
.x1d_c01033{left:312.320000pt;}
.x3c_c01033{left:320.640000pt;}
.x33_c01033{left:322.560000pt;}
.x27_c01033{left:331.520000pt;}
.x1e_c01033{left:341.120000pt;}
.x8_c01033{left:350.080000pt;}
.x4c_c01033{left:351.360000pt;}
.x55_c01033{left:360.320000pt;}
.x1f_c01033{left:369.280000pt;}
.x49_c01033{left:370.560000pt;}
.x46_c01033{left:378.880000pt;}
.xe_c01033{left:380.160000pt;}
.x37_c01033{left:388.480000pt;}
.x9_c01033{left:389.760000pt;}
.x2d_c01033{left:398.080000pt;}
.x2f_c01033{left:399.360000pt;}
.x17_c01033{left:408.320000pt;}
.x28_c01033{left:417.920000pt;}
.x20_c01033{left:428.160000pt;}
.x41_c01033{left:436.480000pt;}
.x56_c01033{left:438.400000pt;}
.x3d_c01033{left:446.080000pt;}
.x29_c01033{left:447.360000pt;}
.x53_c01033{left:456.960000pt;}
.x21_c01033{left:466.560000pt;}
.xa_c01033{left:468.480000pt;}
.xf_c01033{left:476.800000pt;}
.x57_c01033{left:484.480000pt;}
.x45_c01033{left:486.400000pt;}
.x3a_c01033{left:494.720000pt;}
.x30_c01033{left:504.960000pt;}
.x2a_c01033{left:513.280000pt;}
.x58_c01033{left:516.480000pt;}
.x35_c01033{left:524.160000pt;}
.x54_c01033{left:533.760000pt;}
.x31_c01033{left:535.040000pt;}
.x59_c01033{left:544.000000pt;}
.xb_c01033{left:552.320000pt;}
.x18_c01033{left:553.600000pt;}
.x4d_c01033{left:562.560000pt;}
.x10_c01033{left:572.160000pt;}
.x19_c01033{left:582.400000pt;}
.x22_c01033{left:591.360000pt;}
.x42_c01033{left:600.960000pt;}
.x2e_c01033{left:610.560000pt;}
.x4a_c01033{left:611.840000pt;}
.x11_c01033{left:620.160000pt;}
.x47_c01033{left:622.080000pt;}
.x43_c01033{left:629.760000pt;}
.x1_c01033{left:640.000000pt;}
.x3e_c01033{left:641.280000pt;}
.x12_c01033{left:648.960000pt;}
.x2_c01033{left:656.640000pt;}
.x3_c01033{left:675.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_192e60b19131c695a0b3e91a.woff2')format("woff");}.ff1_c01034{font-family:ff1_c01034;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m51_c01034{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);}
.m4d_c01034{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01034{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m0_c01034{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m20_c01034{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01034{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01034{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m42_c01034{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01034{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m17_c01034{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m53_c01034{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01034{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m12_c01034{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);}
.m3b_c01034{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);}
.m4e_c01034{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01034{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);}
.m3d_c01034{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m16_c01034{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01034{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01034{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);}
.m2f_c01034{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);}
.m33_c01034{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m8_c01034{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m29_c01034{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m18_c01034{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);}
.m47_c01034{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);}
.m45_c01034{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.mb_c01034{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);}
.m40_c01034{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);}
.m3f_c01034{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);}
.m43_c01034{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);}
.m48_c01034{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m37_c01034{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m4_c01034{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m6_c01034{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m59_c01034{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m5a_c01034{transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);}
.m1_c01034{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);}
.m4a_c01034{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m27_c01034{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m31_c01034{transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);}
.m13_c01034{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.mf_c01034{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);}
.mc_c01034{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);}
.m26_c01034{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m30_c01034{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m3_c01034{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m34_c01034{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m7_c01034{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);}
.m2e_c01034{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m14_c01034{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m38_c01034{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m52_c01034{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);}
.m55_c01034{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m36_c01034{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m46_c01034{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m23_c01034{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m5_c01034{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);}
.m2c_c01034{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);}
.m56_c01034{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m9_c01034{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01034{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m49_c01034{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);}
.m5b_c01034{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m32_c01034{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m15_c01034{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.me_c01034{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_c01034{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01034{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m39_c01034{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m24_c01034{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m58_c01034{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);}
.m57_c01034{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);}
.m21_c01034{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);}
.ma_c01034{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01034{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.md_c01034{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m19_c01034{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m10_c01034{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m35_c01034{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01034{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m2_c01034{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);}
.m4b_c01034{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);}
.m44_c01034{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m50_c01034{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01034{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);}
.m22_c01034{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);}
.m41_c01034{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m28_c01034{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m11_c01034{transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);}
.m25_c01034{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.m54_c01034{transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);}
.v2_c01034{vertical-align:-11.520000px;}
.v3_c01034{vertical-align:-2.880000px;}
.v0_c01034{vertical-align:0.000000px;}
.v1_c01034{vertical-align:11.520000px;}
.ls0_c01034{letter-spacing:0.000000px;}
.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;}
}
.ws2_c01034{word-spacing:-0.380400px;}
.ws3_c01034{word-spacing:0.000000px;}
.ws0_c01034{word-spacing:3.601920px;}
.ws1_c01034{word-spacing:10.188000px;}
.fc0_c01034{color:transparent;}
.fs2_c01034{font-size:34.560000px;}
.fs9_c01034{font-size:37.440000px;}
.fs3_c01034{font-size:43.200000px;}
.fs5_c01034{font-size:46.080000px;}
.fs8_c01034{font-size:48.960000px;}
.fs7_c01034{font-size:51.840000px;}
.fs6_c01034{font-size:54.720000px;}
.fs1_c01034{font-size:57.600000px;}
.fs4_c01034{font-size:60.480000px;}
.fsa_c01034{font-size:63.360000px;}
.fsc_c01034{font-size:66.240000px;}
.fsb_c01034{font-size:69.120000px;}
.fs0_c01034{font-size:72.000000px;}
.y0_c01034{bottom:0.000000px;}
.y70_c01034{bottom:30.240000px;}
.y72_c01034{bottom:31.680000px;}
.y71_c01034{bottom:32.400000px;}
.y6f_c01034{bottom:33.120000px;}
.y6e_c01034{bottom:33.840000px;}
.y6a_c01034{bottom:72.000000px;}
.y6b_c01034{bottom:72.720000px;}
.y6d_c01034{bottom:74.160000px;}
.y6c_c01034{bottom:74.880000px;}
.y69_c01034{bottom:75.600000px;}
.y68_c01034{bottom:77.040000px;}
.y67_c01034{bottom:116.640000px;}
.y66_c01034{bottom:117.360000px;}
.y65_c01034{bottom:118.080000px;}
.y63_c01034{bottom:118.800000px;}
.y64_c01034{bottom:119.520000px;}
.y62_c01034{bottom:156.960000px;}
.y61_c01034{bottom:160.560000px;}
.y60_c01034{bottom:161.280000px;}
.y5c_c01034{bottom:201.600000px;}
.y5f_c01034{bottom:202.320000px;}
.y5d_c01034{bottom:203.040000px;}
.y5e_c01034{bottom:203.760000px;}
.y5b_c01034{bottom:204.480000px;}
.y5a_c01034{bottom:242.640000px;}
.y58_c01034{bottom:243.360000px;}
.y55_c01034{bottom:244.800000px;}
.y59_c01034{bottom:245.520000px;}
.y57_c01034{bottom:246.240000px;}
.y56_c01034{bottom:246.960000px;}
.y50_c01034{bottom:288.000000px;}
.y53_c01034{bottom:288.720000px;}
.y54_c01034{bottom:289.440000px;}
.y51_c01034{bottom:290.160000px;}
.y52_c01034{bottom:290.880000px;}
.y4f_c01034{bottom:329.040000px;}
.y4d_c01034{bottom:329.760000px;}
.y4b_c01034{bottom:330.480000px;}
.y4e_c01034{bottom:331.920000px;}
.y4c_c01034{bottom:332.640000px;}
.y49_c01034{bottom:372.240000px;}
.y46_c01034{bottom:372.960000px;}
.y4a_c01034{bottom:374.400000px;}
.y47_c01034{bottom:375.120000px;}
.y48_c01034{bottom:375.840000px;}
.y43_c01034{bottom:415.440000px;}
.y44_c01034{bottom:416.160000px;}
.y42_c01034{bottom:418.320000px;}
.y45_c01034{bottom:419.040000px;}
.y3f_c01034{bottom:457.920000px;}
.y3e_c01034{bottom:458.640000px;}
.y40_c01034{bottom:460.800000px;}
.y3d_c01034{bottom:461.520000px;}
.y41_c01034{bottom:462.240000px;}
.y3c_c01034{bottom:500.400000px;}
.y39_c01034{bottom:501.120000px;}
.y3a_c01034{bottom:503.280000px;}
.y38_c01034{bottom:504.000000px;}
.y3b_c01034{bottom:504.720000px;}
.y37_c01034{bottom:554.400000px;}
.y35_c01034{bottom:556.560000px;}
.y36_c01034{bottom:557.280000px;}
.y34_c01034{bottom:596.880000px;}
.y31_c01034{bottom:599.040000px;}
.y32_c01034{bottom:599.760000px;}
.y33_c01034{bottom:600.480000px;}
.y2e_c01034{bottom:639.360000px;}
.y2f_c01034{bottom:640.080000px;}
.y2d_c01034{bottom:642.240000px;}
.y30_c01034{bottom:642.960000px;}
.y2b_c01034{bottom:681.840000px;}
.y2a_c01034{bottom:682.560000px;}
.y29_c01034{bottom:684.000000px;}
.y28_c01034{bottom:684.720000px;}
.y2c_c01034{bottom:685.440000px;}
.y25_c01034{bottom:724.320000px;}
.y26_c01034{bottom:726.480000px;}
.y24_c01034{bottom:727.200000px;}
.y23_c01034{bottom:727.920000px;}
.y27_c01034{bottom:728.640000px;}
.y21_c01034{bottom:767.520000px;}
.y22_c01034{bottom:768.240000px;}
.y20_c01034{bottom:770.400000px;}
.y1f_c01034{bottom:771.120000px;}
.y1e_c01034{bottom:822.960000px;}
.y18_c01034{bottom:863.280000px;}
.y1d_c01034{bottom:864.000000px;}
.y1b_c01034{bottom:864.720000px;}
.y19_c01034{bottom:866.160000px;}
.y1a_c01034{bottom:866.880000px;}
.y1c_c01034{bottom:867.600000px;}
.y14_c01034{bottom:905.760000px;}
.y16_c01034{bottom:906.480000px;}
.y17_c01034{bottom:907.920000px;}
.y15_c01034{bottom:910.080000px;}
.ye_c01034{bottom:948.240000px;}
.yf_c01034{bottom:948.960000px;}
.y12_c01034{bottom:950.400000px;}
.y13_c01034{bottom:951.120000px;}
.y10_c01034{bottom:951.840000px;}
.y11_c01034{bottom:952.560000px;}
.yb_c01034{bottom:992.160000px;}
.y8_c01034{bottom:993.600000px;}
.y9_c01034{bottom:995.040000px;}
.ya_c01034{bottom:995.760000px;}
.yd_c01034{bottom:996.480000px;}
.yc_c01034{bottom:997.200000px;}
.y4_c01034{bottom:1035.360000px;}
.y5_c01034{bottom:1036.080000px;}
.y2_c01034{bottom:1036.800000px;}
.y3_c01034{bottom:1037.520000px;}
.y6_c01034{bottom:1038.240000px;}
.y7_c01034{bottom:1039.680000px;}
.y1_c01034{bottom:1085.040000px;}
.h4_c01034{height:31.100625px;}
.hd_c01034{height:33.692344px;}
.h5_c01034{height:38.875781px;}
.hb_c01034{height:41.467500px;}
.h9_c01034{height:42.906094px;}
.hc_c01034{height:44.059219px;}
.ha_c01034{height:46.650937px;}
.h8_c01034{height:49.242656px;}
.h3_c01034{height:51.834375px;}
.h6_c01034{height:54.426094px;}
.he_c01034{height:57.017812px;}
.h10_c01034{height:59.609531px;}
.hf_c01034{height:62.201250px;}
.h7_c01034{height:63.354375px;}
.h2_c01034{height:64.792969px;}
.h1_c01034{height:1145.250000px;}
.h0_c01034{height:1145.520000px;}
.w0_c01034{width:813.600000px;}
.w1_c01034{width:813.750000px;}
.x0_c01034{left:0.000000px;}
.x2_c01034{left:100.800000px;}
.x2d_c01034{left:102.240000px;}
.x45_c01034{left:103.680000px;}
.xa_c01034{left:133.920000px;}
.x3_c01034{left:144.000000px;}
.x38_c01034{left:145.440000px;}
.x3d_c01034{left:155.520000px;}
.x46_c01034{left:167.040000px;}
.x1a_c01034{left:177.840000px;}
.x4_c01034{left:187.920000px;}
.xb_c01034{left:198.720000px;}
.x48_c01034{left:203.760000px;}
.x1f_c01034{left:209.520000px;}
.x24_c01034{left:210.960000px;}
.x34_c01034{left:220.320000px;}
.xc_c01034{left:231.120000px;}
.x5_c01034{left:241.920000px;}
.x35_c01034{left:253.440000px;}
.x3c_c01034{left:264.240000px;}
.xd_c01034{left:274.320000px;}
.x20_c01034{left:285.840000px;}
.x3a_c01034{left:295.920000px;}
.x28_c01034{left:297.360000px;}
.x25_c01034{left:306.720000px;}
.x2e_c01034{left:308.160000px;}
.x41_c01034{left:316.080000px;}
.x15_c01034{left:317.520000px;}
.x31_c01034{left:318.960000px;}
.x36_c01034{left:328.320000px;}
.x39_c01034{left:350.640000px;}
.x43_c01034{left:353.520000px;}
.x26_c01034{left:362.880000px;}
.xe_c01034{left:372.240000px;}
.x6_c01034{left:382.320000px;}
.x3b_c01034{left:393.120000px;}
.x29_c01034{left:394.560000px;}
.xf_c01034{left:404.640000px;}
.x16_c01034{left:414.720000px;}
.x1b_c01034{left:426.240000px;}
.x7_c01034{left:437.040000px;}
.x21_c01034{left:447.840000px;}
.x1c_c01034{left:458.640000px;}
.x3e_c01034{left:468.720000px;}
.x22_c01034{left:480.240000px;}
.x10_c01034{left:491.040000px;}
.x17_c01034{left:501.120000px;}
.x49_c01034{left:511.920000px;}
.x8_c01034{left:522.720000px;}
.x37_c01034{left:534.240000px;}
.x4a_c01034{left:535.680000px;}
.x18_c01034{left:545.040000px;}
.x11_c01034{left:555.840000px;}
.x42_c01034{left:567.360000px;}
.x2a_c01034{left:577.440000px;}
.x3f_c01034{left:578.880000px;}
.x1d_c01034{left:588.240000px;}
.x12_c01034{left:589.680000px;}
.x2f_c01034{left:598.320000px;}
.x44_c01034{left:600.480000px;}
.x32_c01034{left:610.560000px;}
.x27_c01034{left:622.080000px;}
.x9_c01034{left:632.880000px;}
.x2b_c01034{left:643.680000px;}
.x33_c01034{left:653.040000px;}
.x23_c01034{left:654.480000px;}
.x13_c01034{left:665.280000px;}
.x1e_c01034{left:676.080000px;}
.x40_c01034{left:686.880000px;}
.x14_c01034{left:697.680000px;}
.x2c_c01034{left:708.480000px;}
.x1_c01034{left:712.800000px;}
.x30_c01034{left:719.280000px;}
.x47_c01034{left:720.720000px;}
.x19_c01034{left:751.680000px;}
@media print{
.v2_c01034{vertical-align:-10.240000pt;}
.v3_c01034{vertical-align:-2.560000pt;}
.v0_c01034{vertical-align:0.000000pt;}
.v1_c01034{vertical-align:10.240000pt;}
.ls0_c01034{letter-spacing:0.000000pt;}
.ws2_c01034{word-spacing:-0.338133pt;}
.ws3_c01034{word-spacing:0.000000pt;}
.ws0_c01034{word-spacing:3.201707pt;}
.ws1_c01034{word-spacing:9.056000pt;}
.fs2_c01034{font-size:30.720000pt;}
.fs9_c01034{font-size:33.280000pt;}
.fs3_c01034{font-size:38.400000pt;}
.fs5_c01034{font-size:40.960000pt;}
.fs8_c01034{font-size:43.520000pt;}
.fs7_c01034{font-size:46.080000pt;}
.fs6_c01034{font-size:48.640000pt;}
.fs1_c01034{font-size:51.200000pt;}
.fs4_c01034{font-size:53.760000pt;}
.fsa_c01034{font-size:56.320000pt;}
.fsc_c01034{font-size:58.880000pt;}
.fsb_c01034{font-size:61.440000pt;}
.fs0_c01034{font-size:64.000000pt;}
.y0_c01034{bottom:0.000000pt;}
.y70_c01034{bottom:26.880000pt;}
.y72_c01034{bottom:28.160000pt;}
.y71_c01034{bottom:28.800000pt;}
.y6f_c01034{bottom:29.440000pt;}
.y6e_c01034{bottom:30.080000pt;}
.y6a_c01034{bottom:64.000000pt;}
.y6b_c01034{bottom:64.640000pt;}
.y6d_c01034{bottom:65.920000pt;}
.y6c_c01034{bottom:66.560000pt;}
.y69_c01034{bottom:67.200000pt;}
.y68_c01034{bottom:68.480000pt;}
.y67_c01034{bottom:103.680000pt;}
.y66_c01034{bottom:104.320000pt;}
.y65_c01034{bottom:104.960000pt;}
.y63_c01034{bottom:105.600000pt;}
.y64_c01034{bottom:106.240000pt;}
.y62_c01034{bottom:139.520000pt;}
.y61_c01034{bottom:142.720000pt;}
.y60_c01034{bottom:143.360000pt;}
.y5c_c01034{bottom:179.200000pt;}
.y5f_c01034{bottom:179.840000pt;}
.y5d_c01034{bottom:180.480000pt;}
.y5e_c01034{bottom:181.120000pt;}
.y5b_c01034{bottom:181.760000pt;}
.y5a_c01034{bottom:215.680000pt;}
.y58_c01034{bottom:216.320000pt;}
.y55_c01034{bottom:217.600000pt;}
.y59_c01034{bottom:218.240000pt;}
.y57_c01034{bottom:218.880000pt;}
.y56_c01034{bottom:219.520000pt;}
.y50_c01034{bottom:256.000000pt;}
.y53_c01034{bottom:256.640000pt;}
.y54_c01034{bottom:257.280000pt;}
.y51_c01034{bottom:257.920000pt;}
.y52_c01034{bottom:258.560000pt;}
.y4f_c01034{bottom:292.480000pt;}
.y4d_c01034{bottom:293.120000pt;}
.y4b_c01034{bottom:293.760000pt;}
.y4e_c01034{bottom:295.040000pt;}
.y4c_c01034{bottom:295.680000pt;}
.y49_c01034{bottom:330.880000pt;}
.y46_c01034{bottom:331.520000pt;}
.y4a_c01034{bottom:332.800000pt;}
.y47_c01034{bottom:333.440000pt;}
.y48_c01034{bottom:334.080000pt;}
.y43_c01034{bottom:369.280000pt;}
.y44_c01034{bottom:369.920000pt;}
.y42_c01034{bottom:371.840000pt;}
.y45_c01034{bottom:372.480000pt;}
.y3f_c01034{bottom:407.040000pt;}
.y3e_c01034{bottom:407.680000pt;}
.y40_c01034{bottom:409.600000pt;}
.y3d_c01034{bottom:410.240000pt;}
.y41_c01034{bottom:410.880000pt;}
.y3c_c01034{bottom:444.800000pt;}
.y39_c01034{bottom:445.440000pt;}
.y3a_c01034{bottom:447.360000pt;}
.y38_c01034{bottom:448.000000pt;}
.y3b_c01034{bottom:448.640000pt;}
.y37_c01034{bottom:492.800000pt;}
.y35_c01034{bottom:494.720000pt;}
.y36_c01034{bottom:495.360000pt;}
.y34_c01034{bottom:530.560000pt;}
.y31_c01034{bottom:532.480000pt;}
.y32_c01034{bottom:533.120000pt;}
.y33_c01034{bottom:533.760000pt;}
.y2e_c01034{bottom:568.320000pt;}
.y2f_c01034{bottom:568.960000pt;}
.y2d_c01034{bottom:570.880000pt;}
.y30_c01034{bottom:571.520000pt;}
.y2b_c01034{bottom:606.080000pt;}
.y2a_c01034{bottom:606.720000pt;}
.y29_c01034{bottom:608.000000pt;}
.y28_c01034{bottom:608.640000pt;}
.y2c_c01034{bottom:609.280000pt;}
.y25_c01034{bottom:643.840000pt;}
.y26_c01034{bottom:645.760000pt;}
.y24_c01034{bottom:646.400000pt;}
.y23_c01034{bottom:647.040000pt;}
.y27_c01034{bottom:647.680000pt;}
.y21_c01034{bottom:682.240000pt;}
.y22_c01034{bottom:682.880000pt;}
.y20_c01034{bottom:684.800000pt;}
.y1f_c01034{bottom:685.440000pt;}
.y1e_c01034{bottom:731.520000pt;}
.y18_c01034{bottom:767.360000pt;}
.y1d_c01034{bottom:768.000000pt;}
.y1b_c01034{bottom:768.640000pt;}
.y19_c01034{bottom:769.920000pt;}
.y1a_c01034{bottom:770.560000pt;}
.y1c_c01034{bottom:771.200000pt;}
.y14_c01034{bottom:805.120000pt;}
.y16_c01034{bottom:805.760000pt;}
.y17_c01034{bottom:807.040000pt;}
.y15_c01034{bottom:808.960000pt;}
.ye_c01034{bottom:842.880000pt;}
.yf_c01034{bottom:843.520000pt;}
.y12_c01034{bottom:844.800000pt;}
.y13_c01034{bottom:845.440000pt;}
.y10_c01034{bottom:846.080000pt;}
.y11_c01034{bottom:846.720000pt;}
.yb_c01034{bottom:881.920000pt;}
.y8_c01034{bottom:883.200000pt;}
.y9_c01034{bottom:884.480000pt;}
.ya_c01034{bottom:885.120000pt;}
.yd_c01034{bottom:885.760000pt;}
.yc_c01034{bottom:886.400000pt;}
.y4_c01034{bottom:920.320000pt;}
.y5_c01034{bottom:920.960000pt;}
.y2_c01034{bottom:921.600000pt;}
.y3_c01034{bottom:922.240000pt;}
.y6_c01034{bottom:922.880000pt;}
.y7_c01034{bottom:924.160000pt;}
.y1_c01034{bottom:964.480000pt;}
.h4_c01034{height:27.645000pt;}
.hd_c01034{height:29.948750pt;}
.h5_c01034{height:34.556250pt;}
.hb_c01034{height:36.860000pt;}
.h9_c01034{height:38.138750pt;}
.hc_c01034{height:39.163750pt;}
.ha_c01034{height:41.467500pt;}
.h8_c01034{height:43.771250pt;}
.h3_c01034{height:46.075000pt;}
.h6_c01034{height:48.378750pt;}
.he_c01034{height:50.682500pt;}
.h10_c01034{height:52.986250pt;}
.hf_c01034{height:55.290000pt;}
.h7_c01034{height:56.315000pt;}
.h2_c01034{height:57.593750pt;}
.h1_c01034{height:1018.000000pt;}
.h0_c01034{height:1018.240000pt;}
.w0_c01034{width:723.200000pt;}
.w1_c01034{width:723.333333pt;}
.x0_c01034{left:0.000000pt;}
.x2_c01034{left:89.600000pt;}
.x2d_c01034{left:90.880000pt;}
.x45_c01034{left:92.160000pt;}
.xa_c01034{left:119.040000pt;}
.x3_c01034{left:128.000000pt;}
.x38_c01034{left:129.280000pt;}
.x3d_c01034{left:138.240000pt;}
.x46_c01034{left:148.480000pt;}
.x1a_c01034{left:158.080000pt;}
.x4_c01034{left:167.040000pt;}
.xb_c01034{left:176.640000pt;}
.x48_c01034{left:181.120000pt;}
.x1f_c01034{left:186.240000pt;}
.x24_c01034{left:187.520000pt;}
.x34_c01034{left:195.840000pt;}
.xc_c01034{left:205.440000pt;}
.x5_c01034{left:215.040000pt;}
.x35_c01034{left:225.280000pt;}
.x3c_c01034{left:234.880000pt;}
.xd_c01034{left:243.840000pt;}
.x20_c01034{left:254.080000pt;}
.x3a_c01034{left:263.040000pt;}
.x28_c01034{left:264.320000pt;}
.x25_c01034{left:272.640000pt;}
.x2e_c01034{left:273.920000pt;}
.x41_c01034{left:280.960000pt;}
.x15_c01034{left:282.240000pt;}
.x31_c01034{left:283.520000pt;}
.x36_c01034{left:291.840000pt;}
.x39_c01034{left:311.680000pt;}
.x43_c01034{left:314.240000pt;}
.x26_c01034{left:322.560000pt;}
.xe_c01034{left:330.880000pt;}
.x6_c01034{left:339.840000pt;}
.x3b_c01034{left:349.440000pt;}
.x29_c01034{left:350.720000pt;}
.xf_c01034{left:359.680000pt;}
.x16_c01034{left:368.640000pt;}
.x1b_c01034{left:378.880000pt;}
.x7_c01034{left:388.480000pt;}
.x21_c01034{left:398.080000pt;}
.x1c_c01034{left:407.680000pt;}
.x3e_c01034{left:416.640000pt;}
.x22_c01034{left:426.880000pt;}
.x10_c01034{left:436.480000pt;}
.x17_c01034{left:445.440000pt;}
.x49_c01034{left:455.040000pt;}
.x8_c01034{left:464.640000pt;}
.x37_c01034{left:474.880000pt;}
.x4a_c01034{left:476.160000pt;}
.x18_c01034{left:484.480000pt;}
.x11_c01034{left:494.080000pt;}
.x42_c01034{left:504.320000pt;}
.x2a_c01034{left:513.280000pt;}
.x3f_c01034{left:514.560000pt;}
.x1d_c01034{left:522.880000pt;}
.x12_c01034{left:524.160000pt;}
.x2f_c01034{left:531.840000pt;}
.x44_c01034{left:533.760000pt;}
.x32_c01034{left:542.720000pt;}
.x27_c01034{left:552.960000pt;}
.x9_c01034{left:562.560000pt;}
.x2b_c01034{left:572.160000pt;}
.x33_c01034{left:580.480000pt;}
.x23_c01034{left:581.760000pt;}
.x13_c01034{left:591.360000pt;}
.x1e_c01034{left:600.960000pt;}
.x40_c01034{left:610.560000pt;}
.x14_c01034{left:620.160000pt;}
.x2c_c01034{left:629.760000pt;}
.x1_c01034{left:633.600000pt;}
.x30_c01034{left:639.360000pt;}
.x47_c01034{left:640.640000pt;}
.x19_c01034{left:668.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_058f86120acb785d31799e27.woff2')format("woff");}.ff1_c01035{font-family:ff1_c01035;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m46_c01035{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);}
.m32_c01035{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m17_c01035{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01035{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m4e_c01035{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m44_c01035{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m54_c01035{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01035{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);}
.m33_c01035{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m15_c01035{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m16_c01035{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_c01035{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m48_c01035{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);}
.m28_c01035{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01035{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_c01035{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01035{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);}
.m59_c01035{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m26_c01035{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.mf_c01035{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);}
.m37_c01035{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);}
.m51_c01035{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);}
.m2_c01035{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m5_c01035{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);}
.m1d_c01035{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m0_c01035{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);}
.m19_c01035{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);}
.m47_c01035{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01035{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m10_c01035{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01035{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01035{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);}
.m3c_c01035{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);}
.m53_c01035{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m31_c01035{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m5c_c01035{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m45_c01035{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m30_c01035{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);}
.m9_c01035{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01035{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01035{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);}
.m6_c01035{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m3_c01035{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);}
.m4c_c01035{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m20_c01035{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m55_c01035{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m34_c01035{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01035{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);}
.me_c01035{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01035{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01035{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m5f_c01035{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);}
.m58_c01035{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m50_c01035{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m1_c01035{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m40_c01035{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m13_c01035{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m5d_c01035{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);}
.m21_c01035{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);}
.m24_c01035{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m18_c01035{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m4_c01035{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m35_c01035{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);}
.m42_c01035{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m36_c01035{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01035{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m14_c01035{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);}
.m39_c01035{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m8_c01035{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m27_c01035{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.mc_c01035{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01035{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01035{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);}
.m29_c01035{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01035{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m57_c01035{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m25_c01035{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m5b_c01035{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m11_c01035{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01035{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);}
.m1a_c01035{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);}
.m56_c01035{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.mb_c01035{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);}
.m7_c01035{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m5e_c01035{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01035{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);}
.m22_c01035{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m38_c01035{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01035{transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);}
.m23_c01035{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);}
.m49_c01035{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.md_c01035{transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);}
.m5a_c01035{transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);}
.m41_c01035{transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);}
.m52_c01035{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m43_c01035{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.v2_c01035{vertical-align:-5.760000px;}
.v0_c01035{vertical-align:0.000000px;}
.v1_c01035{vertical-align:8.640000px;}
.ls1_c01035{letter-spacing:0.000000px;}
.ls0_c01035{letter-spacing:25.586640px;}
.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;}
}
.ws2_c01035{word-spacing:0.000000px;}
.ws1_c01035{word-spacing:1.362960px;}
.ws0_c01035{word-spacing:5.125939px;}
.fc0_c01035{color:transparent;}
.fsd_c01035{font-size:31.680000px;}
.fs4_c01035{font-size:34.560000px;}
.fs5_c01035{font-size:37.440000px;}
.fsa_c01035{font-size:43.200000px;}
.fs8_c01035{font-size:46.080000px;}
.fs3_c01035{font-size:48.960000px;}
.fs1_c01035{font-size:51.840000px;}
.fs7_c01035{font-size:54.720000px;}
.fs6_c01035{font-size:57.600000px;}
.fs2_c01035{font-size:60.480000px;}
.fs9_c01035{font-size:63.360000px;}
.fsb_c01035{font-size:66.240000px;}
.fsc_c01035{font-size:69.120000px;}
.fs0_c01035{font-size:72.000000px;}
.y0_c01035{bottom:0.000000px;}
.y74_c01035{bottom:69.840000px;}
.y73_c01035{bottom:70.560000px;}
.y71_c01035{bottom:71.280000px;}
.y72_c01035{bottom:72.000000px;}
.y70_c01035{bottom:120.960000px;}
.y6f_c01035{bottom:121.680000px;}
.y6e_c01035{bottom:123.840000px;}
.y6c_c01035{bottom:124.560000px;}
.y6d_c01035{bottom:125.280000px;}
.y6b_c01035{bottom:126.000000px;}
.y69_c01035{bottom:164.160000px;}
.y6a_c01035{bottom:166.320000px;}
.y68_c01035{bottom:167.040000px;}
.y67_c01035{bottom:167.760000px;}
.y66_c01035{bottom:168.480000px;}
.y64_c01035{bottom:207.360000px;}
.y62_c01035{bottom:208.080000px;}
.y65_c01035{bottom:208.800000px;}
.y63_c01035{bottom:210.240000px;}
.y61_c01035{bottom:210.960000px;}
.y60_c01035{bottom:211.680000px;}
.y5e_c01035{bottom:249.840000px;}
.y5c_c01035{bottom:251.280000px;}
.y5f_c01035{bottom:252.000000px;}
.y5d_c01035{bottom:252.720000px;}
.y5b_c01035{bottom:253.440000px;}
.y5a_c01035{bottom:254.160000px;}
.y55_c01035{bottom:293.040000px;}
.y59_c01035{bottom:293.760000px;}
.y58_c01035{bottom:295.200000px;}
.y57_c01035{bottom:295.920000px;}
.y56_c01035{bottom:296.640000px;}
.y52_c01035{bottom:335.520000px;}
.y51_c01035{bottom:336.240000px;}
.y54_c01035{bottom:337.680000px;}
.y53_c01035{bottom:338.400000px;}
.y4f_c01035{bottom:339.120000px;}
.y50_c01035{bottom:339.840000px;}
.y4e_c01035{bottom:378.720000px;}
.y4b_c01035{bottom:379.440000px;}
.y4c_c01035{bottom:380.880000px;}
.y4d_c01035{bottom:381.600000px;}
.y49_c01035{bottom:421.200000px;}
.y4a_c01035{bottom:423.360000px;}
.y48_c01035{bottom:424.080000px;}
.y47_c01035{bottom:462.960000px;}
.y44_c01035{bottom:463.680000px;}
.y43_c01035{bottom:464.400000px;}
.y45_c01035{bottom:465.840000px;}
.y46_c01035{bottom:466.560000px;}
.y41_c01035{bottom:506.160000px;}
.y42_c01035{bottom:506.880000px;}
.y3f_c01035{bottom:509.040000px;}
.y40_c01035{bottom:509.760000px;}
.y3d_c01035{bottom:560.160000px;}
.y3e_c01035{bottom:562.320000px;}
.y3b_c01035{bottom:563.040000px;}
.y3c_c01035{bottom:563.760000px;}
.y39_c01035{bottom:601.920000px;}
.y38_c01035{bottom:602.640000px;}
.y36_c01035{bottom:603.360000px;}
.y3a_c01035{bottom:605.520000px;}
.y37_c01035{bottom:606.240000px;}
.y34_c01035{bottom:645.840000px;}
.y32_c01035{bottom:646.560000px;}
.y35_c01035{bottom:648.720000px;}
.y33_c01035{bottom:649.440000px;}
.y30_c01035{bottom:688.320000px;}
.y2d_c01035{bottom:689.040000px;}
.y2f_c01035{bottom:691.200000px;}
.y2e_c01035{bottom:691.920000px;}
.y31_c01035{bottom:692.640000px;}
.y2c_c01035{bottom:731.520000px;}
.y2a_c01035{bottom:732.240000px;}
.y2b_c01035{bottom:734.400000px;}
.y29_c01035{bottom:735.120000px;}
.y28_c01035{bottom:774.000000px;}
.y27_c01035{bottom:774.720000px;}
.y24_c01035{bottom:776.160000px;}
.y26_c01035{bottom:777.600000px;}
.y25_c01035{bottom:778.320000px;}
.y20_c01035{bottom:817.200000px;}
.y22_c01035{bottom:817.920000px;}
.y1f_c01035{bottom:819.360000px;}
.y21_c01035{bottom:820.800000px;}
.y23_c01035{bottom:821.520000px;}
.y19_c01035{bottom:859.680000px;}
.y1b_c01035{bottom:860.400000px;}
.y1e_c01035{bottom:861.120000px;}
.y1a_c01035{bottom:862.560000px;}
.y1c_c01035{bottom:863.280000px;}
.y1d_c01035{bottom:864.000000px;}
.y13_c01035{bottom:902.160000px;}
.y14_c01035{bottom:902.880000px;}
.y16_c01035{bottom:903.600000px;}
.y15_c01035{bottom:905.760000px;}
.y17_c01035{bottom:906.480000px;}
.y18_c01035{bottom:907.200000px;}
.yf_c01035{bottom:945.360000px;}
.y12_c01035{bottom:946.080000px;}
.y11_c01035{bottom:946.800000px;}
.yd_c01035{bottom:947.520000px;}
.ye_c01035{bottom:948.240000px;}
.y10_c01035{bottom:948.960000px;}
.y8_c01035{bottom:987.840000px;}
.yb_c01035{bottom:988.560000px;}
.ya_c01035{bottom:990.000000px;}
.y9_c01035{bottom:990.720000px;}
.yc_c01035{bottom:991.440000px;}
.y3_c01035{bottom:1030.320000px;}
.y6_c01035{bottom:1031.040000px;}
.y2_c01035{bottom:1031.760000px;}
.y4_c01035{bottom:1033.200000px;}
.y5_c01035{bottom:1033.920000px;}
.y7_c01035{bottom:1034.640000px;}
.y1_c01035{bottom:1095.120000px;}
.hf_c01035{height:28.508906px;}
.h6_c01035{height:31.100625px;}
.h7_c01035{height:33.692344px;}
.hc_c01035{height:38.875781px;}
.h10_c01035{height:40.890937px;}
.ha_c01035{height:41.467500px;}
.h5_c01035{height:44.059219px;}
.h3_c01035{height:46.650937px;}
.h9_c01035{height:49.242656px;}
.h8_c01035{height:51.834375px;}
.h4_c01035{height:54.426094px;}
.hb_c01035{height:57.017812px;}
.hd_c01035{height:59.609531px;}
.he_c01035{height:62.201250px;}
.h2_c01035{height:64.792969px;}
.h1_c01035{height:1147.500000px;}
.h0_c01035{height:1147.680000px;}
.w0_c01035{width:816.480000px;}
.w1_c01035{width:816.750000px;}
.x0_c01035{left:0.000000px;}
.x2_c01035{left:99.360000px;}
.x24_c01035{left:101.520000px;}
.x1a_c01035{left:102.960000px;}
.x48_c01035{left:131.760000px;}
.x38_c01035{left:133.200000px;}
.x3_c01035{left:142.560000px;}
.x45_c01035{left:144.000000px;}
.x12_c01035{left:153.360000px;}
.x39_c01035{left:164.880000px;}
.x4d_c01035{left:166.320000px;}
.x34_c01035{left:174.960000px;}
.x9_c01035{left:185.760000px;}
.x2c_c01035{left:187.200000px;}
.x35_c01035{left:198.000000px;}
.x2f_c01035{left:207.360000px;}
.x3b_c01035{left:209.520000px;}
.x20_c01035{left:218.880000px;}
.x2d_c01035{left:220.320000px;}
.xa_c01035{left:229.680000px;}
.x25_c01035{left:231.120000px;}
.x13_c01035{left:250.560000px;}
.x26_c01035{left:262.800000px;}
.x4_c01035{left:272.160000px;}
.x3c_c01035{left:282.960000px;}
.x27_c01035{left:295.200000px;}
.x1b_c01035{left:306.720000px;}
.x5_c01035{left:315.360000px;}
.xb_c01035{left:326.880000px;}
.x36_c01035{left:337.680000px;}
.x4f_c01035{left:339.120000px;}
.x42_c01035{left:348.480000px;}
.x49_c01035{left:359.280000px;}
.x30_c01035{left:360.720000px;}
.xc_c01035{left:370.080000px;}
.x54_c01035{left:371.520000px;}
.x50_c01035{left:372.960000px;}
.x1c_c01035{left:380.880000px;}
.x3a_c01035{left:383.040000px;}
.x6_c01035{left:390.960000px;}
.x28_c01035{left:393.120000px;}
.x3f_c01035{left:403.200000px;}
.x29_c01035{left:424.800000px;}
.x4e_c01035{left:426.240000px;}
.x3d_c01035{left:427.680000px;}
.x14_c01035{left:434.880000px;}
.x4c_c01035{left:436.320000px;}
.x46_c01035{left:446.400000px;}
.x37_c01035{left:457.200000px;}
.xd_c01035{left:467.280000px;}
.x32_c01035{left:468.720000px;}
.x2a_c01035{left:478.800000px;}
.x33_c01035{left:489.600000px;}
.x15_c01035{left:501.120000px;}
.xe_c01035{left:510.480000px;}
.x40_c01035{left:511.920000px;}
.x7_c01035{left:522.720000px;}
.x21_c01035{left:532.800000px;}
.x1d_c01035{left:543.600000px;}
.xf_c01035{left:554.400000px;}
.x41_c01035{left:556.560000px;}
.x47_c01035{left:565.920000px;}
.x16_c01035{left:576.000000px;}
.x51_c01035{left:578.160000px;}
.x43_c01035{left:587.520000px;}
.x17_c01035{left:598.320000px;}
.x3e_c01035{left:599.760000px;}
.x52_c01035{left:612.720000px;}
.x4a_c01035{left:620.640000px;}
.x22_c01035{left:630.000000px;}
.x18_c01035{left:631.440000px;}
.x10_c01035{left:640.080000px;}
.x31_c01035{left:641.520000px;}
.x2b_c01035{left:652.320000px;}
.x19_c01035{left:663.840000px;}
.x4b_c01035{left:673.920000px;}
.x44_c01035{left:675.360000px;}
.x2e_c01035{left:684.000000px;}
.x11_c01035{left:685.440000px;}
.x53_c01035{left:686.880000px;}
.x1e_c01035{left:696.240000px;}
.x23_c01035{left:706.320000px;}
.x8_c01035{left:717.120000px;}
.x1_c01035{left:718.560000px;}
.x1f_c01035{left:728.640000px;}
@media print{
.v2_c01035{vertical-align:-5.120000pt;}
.v0_c01035{vertical-align:0.000000pt;}
.v1_c01035{vertical-align:7.680000pt;}
.ls1_c01035{letter-spacing:0.000000pt;}
.ls0_c01035{letter-spacing:22.743680pt;}
.ws2_c01035{word-spacing:0.000000pt;}
.ws1_c01035{word-spacing:1.211520pt;}
.ws0_c01035{word-spacing:4.556390pt;}
.fsd_c01035{font-size:28.160000pt;}
.fs4_c01035{font-size:30.720000pt;}
.fs5_c01035{font-size:33.280000pt;}
.fsa_c01035{font-size:38.400000pt;}
.fs8_c01035{font-size:40.960000pt;}
.fs3_c01035{font-size:43.520000pt;}
.fs1_c01035{font-size:46.080000pt;}
.fs7_c01035{font-size:48.640000pt;}
.fs6_c01035{font-size:51.200000pt;}
.fs2_c01035{font-size:53.760000pt;}
.fs9_c01035{font-size:56.320000pt;}
.fsb_c01035{font-size:58.880000pt;}
.fsc_c01035{font-size:61.440000pt;}
.fs0_c01035{font-size:64.000000pt;}
.y0_c01035{bottom:0.000000pt;}
.y74_c01035{bottom:62.080000pt;}
.y73_c01035{bottom:62.720000pt;}
.y71_c01035{bottom:63.360000pt;}
.y72_c01035{bottom:64.000000pt;}
.y70_c01035{bottom:107.520000pt;}
.y6f_c01035{bottom:108.160000pt;}
.y6e_c01035{bottom:110.080000pt;}
.y6c_c01035{bottom:110.720000pt;}
.y6d_c01035{bottom:111.360000pt;}
.y6b_c01035{bottom:112.000000pt;}
.y69_c01035{bottom:145.920000pt;}
.y6a_c01035{bottom:147.840000pt;}
.y68_c01035{bottom:148.480000pt;}
.y67_c01035{bottom:149.120000pt;}
.y66_c01035{bottom:149.760000pt;}
.y64_c01035{bottom:184.320000pt;}
.y62_c01035{bottom:184.960000pt;}
.y65_c01035{bottom:185.600000pt;}
.y63_c01035{bottom:186.880000pt;}
.y61_c01035{bottom:187.520000pt;}
.y60_c01035{bottom:188.160000pt;}
.y5e_c01035{bottom:222.080000pt;}
.y5c_c01035{bottom:223.360000pt;}
.y5f_c01035{bottom:224.000000pt;}
.y5d_c01035{bottom:224.640000pt;}
.y5b_c01035{bottom:225.280000pt;}
.y5a_c01035{bottom:225.920000pt;}
.y55_c01035{bottom:260.480000pt;}
.y59_c01035{bottom:261.120000pt;}
.y58_c01035{bottom:262.400000pt;}
.y57_c01035{bottom:263.040000pt;}
.y56_c01035{bottom:263.680000pt;}
.y52_c01035{bottom:298.240000pt;}
.y51_c01035{bottom:298.880000pt;}
.y54_c01035{bottom:300.160000pt;}
.y53_c01035{bottom:300.800000pt;}
.y4f_c01035{bottom:301.440000pt;}
.y50_c01035{bottom:302.080000pt;}
.y4e_c01035{bottom:336.640000pt;}
.y4b_c01035{bottom:337.280000pt;}
.y4c_c01035{bottom:338.560000pt;}
.y4d_c01035{bottom:339.200000pt;}
.y49_c01035{bottom:374.400000pt;}
.y4a_c01035{bottom:376.320000pt;}
.y48_c01035{bottom:376.960000pt;}
.y47_c01035{bottom:411.520000pt;}
.y44_c01035{bottom:412.160000pt;}
.y43_c01035{bottom:412.800000pt;}
.y45_c01035{bottom:414.080000pt;}
.y46_c01035{bottom:414.720000pt;}
.y41_c01035{bottom:449.920000pt;}
.y42_c01035{bottom:450.560000pt;}
.y3f_c01035{bottom:452.480000pt;}
.y40_c01035{bottom:453.120000pt;}
.y3d_c01035{bottom:497.920000pt;}
.y3e_c01035{bottom:499.840000pt;}
.y3b_c01035{bottom:500.480000pt;}
.y3c_c01035{bottom:501.120000pt;}
.y39_c01035{bottom:535.040000pt;}
.y38_c01035{bottom:535.680000pt;}
.y36_c01035{bottom:536.320000pt;}
.y3a_c01035{bottom:538.240000pt;}
.y37_c01035{bottom:538.880000pt;}
.y34_c01035{bottom:574.080000pt;}
.y32_c01035{bottom:574.720000pt;}
.y35_c01035{bottom:576.640000pt;}
.y33_c01035{bottom:577.280000pt;}
.y30_c01035{bottom:611.840000pt;}
.y2d_c01035{bottom:612.480000pt;}
.y2f_c01035{bottom:614.400000pt;}
.y2e_c01035{bottom:615.040000pt;}
.y31_c01035{bottom:615.680000pt;}
.y2c_c01035{bottom:650.240000pt;}
.y2a_c01035{bottom:650.880000pt;}
.y2b_c01035{bottom:652.800000pt;}
.y29_c01035{bottom:653.440000pt;}
.y28_c01035{bottom:688.000000pt;}
.y27_c01035{bottom:688.640000pt;}
.y24_c01035{bottom:689.920000pt;}
.y26_c01035{bottom:691.200000pt;}
.y25_c01035{bottom:691.840000pt;}
.y20_c01035{bottom:726.400000pt;}
.y22_c01035{bottom:727.040000pt;}
.y1f_c01035{bottom:728.320000pt;}
.y21_c01035{bottom:729.600000pt;}
.y23_c01035{bottom:730.240000pt;}
.y19_c01035{bottom:764.160000pt;}
.y1b_c01035{bottom:764.800000pt;}
.y1e_c01035{bottom:765.440000pt;}
.y1a_c01035{bottom:766.720000pt;}
.y1c_c01035{bottom:767.360000pt;}
.y1d_c01035{bottom:768.000000pt;}
.y13_c01035{bottom:801.920000pt;}
.y14_c01035{bottom:802.560000pt;}
.y16_c01035{bottom:803.200000pt;}
.y15_c01035{bottom:805.120000pt;}
.y17_c01035{bottom:805.760000pt;}
.y18_c01035{bottom:806.400000pt;}
.yf_c01035{bottom:840.320000pt;}
.y12_c01035{bottom:840.960000pt;}
.y11_c01035{bottom:841.600000pt;}
.yd_c01035{bottom:842.240000pt;}
.ye_c01035{bottom:842.880000pt;}
.y10_c01035{bottom:843.520000pt;}
.y8_c01035{bottom:878.080000pt;}
.yb_c01035{bottom:878.720000pt;}
.ya_c01035{bottom:880.000000pt;}
.y9_c01035{bottom:880.640000pt;}
.yc_c01035{bottom:881.280000pt;}
.y3_c01035{bottom:915.840000pt;}
.y6_c01035{bottom:916.480000pt;}
.y2_c01035{bottom:917.120000pt;}
.y4_c01035{bottom:918.400000pt;}
.y5_c01035{bottom:919.040000pt;}
.y7_c01035{bottom:919.680000pt;}
.y1_c01035{bottom:973.440000pt;}
.hf_c01035{height:25.341250pt;}
.h6_c01035{height:27.645000pt;}
.h7_c01035{height:29.948750pt;}
.hc_c01035{height:34.556250pt;}
.h10_c01035{height:36.347500pt;}
.ha_c01035{height:36.860000pt;}
.h5_c01035{height:39.163750pt;}
.h3_c01035{height:41.467500pt;}
.h9_c01035{height:43.771250pt;}
.h8_c01035{height:46.075000pt;}
.h4_c01035{height:48.378750pt;}
.hb_c01035{height:50.682500pt;}
.hd_c01035{height:52.986250pt;}
.he_c01035{height:55.290000pt;}
.h2_c01035{height:57.593750pt;}
.h1_c01035{height:1020.000000pt;}
.h0_c01035{height:1020.160000pt;}
.w0_c01035{width:725.760000pt;}
.w1_c01035{width:726.000000pt;}
.x0_c01035{left:0.000000pt;}
.x2_c01035{left:88.320000pt;}
.x24_c01035{left:90.240000pt;}
.x1a_c01035{left:91.520000pt;}
.x48_c01035{left:117.120000pt;}
.x38_c01035{left:118.400000pt;}
.x3_c01035{left:126.720000pt;}
.x45_c01035{left:128.000000pt;}
.x12_c01035{left:136.320000pt;}
.x39_c01035{left:146.560000pt;}
.x4d_c01035{left:147.840000pt;}
.x34_c01035{left:155.520000pt;}
.x9_c01035{left:165.120000pt;}
.x2c_c01035{left:166.400000pt;}
.x35_c01035{left:176.000000pt;}
.x2f_c01035{left:184.320000pt;}
.x3b_c01035{left:186.240000pt;}
.x20_c01035{left:194.560000pt;}
.x2d_c01035{left:195.840000pt;}
.xa_c01035{left:204.160000pt;}
.x25_c01035{left:205.440000pt;}
.x13_c01035{left:222.720000pt;}
.x26_c01035{left:233.600000pt;}
.x4_c01035{left:241.920000pt;}
.x3c_c01035{left:251.520000pt;}
.x27_c01035{left:262.400000pt;}
.x1b_c01035{left:272.640000pt;}
.x5_c01035{left:280.320000pt;}
.xb_c01035{left:290.560000pt;}
.x36_c01035{left:300.160000pt;}
.x4f_c01035{left:301.440000pt;}
.x42_c01035{left:309.760000pt;}
.x49_c01035{left:319.360000pt;}
.x30_c01035{left:320.640000pt;}
.xc_c01035{left:328.960000pt;}
.x54_c01035{left:330.240000pt;}
.x50_c01035{left:331.520000pt;}
.x1c_c01035{left:338.560000pt;}
.x3a_c01035{left:340.480000pt;}
.x6_c01035{left:347.520000pt;}
.x28_c01035{left:349.440000pt;}
.x3f_c01035{left:358.400000pt;}
.x29_c01035{left:377.600000pt;}
.x4e_c01035{left:378.880000pt;}
.x3d_c01035{left:380.160000pt;}
.x14_c01035{left:386.560000pt;}
.x4c_c01035{left:387.840000pt;}
.x46_c01035{left:396.800000pt;}
.x37_c01035{left:406.400000pt;}
.xd_c01035{left:415.360000pt;}
.x32_c01035{left:416.640000pt;}
.x2a_c01035{left:425.600000pt;}
.x33_c01035{left:435.200000pt;}
.x15_c01035{left:445.440000pt;}
.xe_c01035{left:453.760000pt;}
.x40_c01035{left:455.040000pt;}
.x7_c01035{left:464.640000pt;}
.x21_c01035{left:473.600000pt;}
.x1d_c01035{left:483.200000pt;}
.xf_c01035{left:492.800000pt;}
.x41_c01035{left:494.720000pt;}
.x47_c01035{left:503.040000pt;}
.x16_c01035{left:512.000000pt;}
.x51_c01035{left:513.920000pt;}
.x43_c01035{left:522.240000pt;}
.x17_c01035{left:531.840000pt;}
.x3e_c01035{left:533.120000pt;}
.x52_c01035{left:544.640000pt;}
.x4a_c01035{left:551.680000pt;}
.x22_c01035{left:560.000000pt;}
.x18_c01035{left:561.280000pt;}
.x10_c01035{left:568.960000pt;}
.x31_c01035{left:570.240000pt;}
.x2b_c01035{left:579.840000pt;}
.x19_c01035{left:590.080000pt;}
.x4b_c01035{left:599.040000pt;}
.x44_c01035{left:600.320000pt;}
.x2e_c01035{left:608.000000pt;}
.x11_c01035{left:609.280000pt;}
.x53_c01035{left:610.560000pt;}
.x1e_c01035{left:618.880000pt;}
.x23_c01035{left:627.840000pt;}
.x8_c01035{left:637.440000pt;}
.x1_c01035{left:638.720000pt;}
.x1f_c01035{left:647.680000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_756a8ffb8d29c9745b48e9d7.woff2')format("woff");}.ff1_c01036{font-family:ff1_c01036;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m51_c01036{transform:matrix(0.206650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206650,0.000000,0.000000,0.250000,0,0);}
.m4c_c01036{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);}
.m3e_c01036{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);}
.m41_c01036{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m50_c01036{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01036{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01036{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m38_c01036{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m39_c01036{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m46_c01036{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01036{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2e_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);}
.m1c_c01036{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m24_c01036{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m35_c01036{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m20_c01036{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mf_c01036{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);}
.m53_c01036{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);}
.m28_c01036{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01036{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);}
.m26_c01036{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m15_c01036{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);}
.m54_c01036{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m1_c01036{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01036{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);}
.m5_c01036{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01036{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01036{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);}
.m42_c01036{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);}
.m31_c01036{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);}
.m30_c01036{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01036{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);}
.m8_c01036{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01036{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m0_c01036{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);}
.m3a_c01036{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);}
.m44_c01036{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01036{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.mc_c01036{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01036{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01036{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);}
.m3d_c01036{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);}
.m3f_c01036{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);}
.m49_c01036{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m55_c01036{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.mb_c01036{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m2_c01036{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);}
.m43_c01036{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.md_c01036{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m14_c01036{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);}
.m17_c01036{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m12_c01036{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m33_c01036{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m9_c01036{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);}
.m47_c01036{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m19_c01036{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m32_c01036{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m3_c01036{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m22_c01036{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m4_c01036{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m40_c01036{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);}
.m56_c01036{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);}
.m45_c01036{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01036{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.me_c01036{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);}
.m52_c01036{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01036{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m29_c01036{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m36_c01036{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_c01036{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m25_c01036{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m7_c01036{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m6_c01036{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);}
.m18_c01036{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m16_c01036{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m13_c01036{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m34_c01036{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m11_c01036{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01036{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);}
.ma_c01036{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m48_c01036{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);}
.m10_c01036{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m27_c01036{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m21_c01036{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m37_c01036{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m23_c01036{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m4f_c01036{transform:matrix(7.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(7.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(7.560000,0.000000,0.000000,0.250000,0,0);}
.v0_c01036{vertical-align:0.000000px;}
.v1_c01036{vertical-align:14.400000px;}
.ls0_c01036{letter-spacing:0.000000px;}
.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;}
}
.ws1_c01036{word-spacing:0.000000px;}
.ws0_c01036{word-spacing:3.071040px;}
.fc0_c01036{color:transparent;}
.fsb_c01036{font-size:14.400000px;}
.fsd_c01036{font-size:17.280000px;}
.fs6_c01036{font-size:31.680000px;}
.fs5_c01036{font-size:34.560000px;}
.fs3_c01036{font-size:43.200000px;}
.fs2_c01036{font-size:46.080000px;}
.fs1_c01036{font-size:48.960000px;}
.fs8_c01036{font-size:51.840000px;}
.fsa_c01036{font-size:54.720000px;}
.fs7_c01036{font-size:57.600000px;}
.fs4_c01036{font-size:60.480000px;}
.fsc_c01036{font-size:63.360000px;}
.fs9_c01036{font-size:66.240000px;}
.fs0_c01036{font-size:69.120000px;}
.y0_c01036{bottom:0.000000px;}
.y69_c01036{bottom:121.680000px;}
.y65_c01036{bottom:123.120000px;}
.y66_c01036{bottom:123.840000px;}
.y68_c01036{bottom:125.280000px;}
.y67_c01036{bottom:126.000000px;}
.y62_c01036{bottom:163.440000px;}
.y63_c01036{bottom:164.160000px;}
.y64_c01036{bottom:165.600000px;}
.y61_c01036{bottom:167.040000px;}
.y60_c01036{bottom:167.760000px;}
.y5f_c01036{bottom:218.880000px;}
.y5e_c01036{bottom:236.880000px;}
.y5d_c01036{bottom:240.480000px;}
.y5c_c01036{bottom:260.640000px;}
.y5b_c01036{bottom:262.080000px;}
.y5a_c01036{bottom:277.920000px;}
.y58_c01036{bottom:282.240000px;}
.y57_c01036{bottom:282.960000px;}
.y59_c01036{bottom:284.400000px;}
.y56_c01036{bottom:285.840000px;}
.y55_c01036{bottom:303.120000px;}
.y53_c01036{bottom:304.560000px;}
.y54_c01036{bottom:306.720000px;}
.y52_c01036{bottom:307.440000px;}
.y51_c01036{bottom:324.720000px;}
.y4f_c01036{bottom:325.440000px;}
.y50_c01036{bottom:327.600000px;}
.y4e_c01036{bottom:329.040000px;}
.y4d_c01036{bottom:346.320000px;}
.y4b_c01036{bottom:348.480000px;}
.y4c_c01036{bottom:349.920000px;}
.y4a_c01036{bottom:350.640000px;}
.y47_c01036{bottom:367.920000px;}
.y46_c01036{bottom:368.640000px;}
.y43_c01036{bottom:369.360000px;}
.y44_c01036{bottom:370.080000px;}
.y48_c01036{bottom:370.800000px;}
.y49_c01036{bottom:371.520000px;}
.y45_c01036{bottom:372.240000px;}
.y42_c01036{bottom:410.400000px;}
.y3f_c01036{bottom:411.840000px;}
.y41_c01036{bottom:413.280000px;}
.y40_c01036{bottom:414.000000px;}
.y3e_c01036{bottom:414.720000px;}
.y3d_c01036{bottom:452.880000px;}
.y3b_c01036{bottom:453.600000px;}
.y3a_c01036{bottom:454.320000px;}
.y3c_c01036{bottom:455.760000px;}
.y39_c01036{bottom:456.480000px;}
.y38_c01036{bottom:457.920000px;}
.y37_c01036{bottom:509.040000px;}
.y36_c01036{bottom:509.760000px;}
.y34_c01036{bottom:550.080000px;}
.y31_c01036{bottom:550.800000px;}
.y35_c01036{bottom:552.240000px;}
.y32_c01036{bottom:552.960000px;}
.y33_c01036{bottom:553.680000px;}
.y30_c01036{bottom:592.560000px;}
.y2f_c01036{bottom:594.000000px;}
.y2e_c01036{bottom:595.440000px;}
.y2a_c01036{bottom:635.760000px;}
.y2c_c01036{bottom:636.480000px;}
.y2d_c01036{bottom:637.200000px;}
.y2b_c01036{bottom:637.920000px;}
.y29_c01036{bottom:638.640000px;}
.y27_c01036{bottom:680.400000px;}
.y28_c01036{bottom:681.120000px;}
.y26_c01036{bottom:732.960000px;}
.y25_c01036{bottom:734.400000px;}
.y20_c01036{bottom:774.000000px;}
.y21_c01036{bottom:774.720000px;}
.y23_c01036{bottom:776.160000px;}
.y24_c01036{bottom:776.880000px;}
.y22_c01036{bottom:777.600000px;}
.y1e_c01036{bottom:816.480000px;}
.y1d_c01036{bottom:817.200000px;}
.y1b_c01036{bottom:818.640000px;}
.y1f_c01036{bottom:819.360000px;}
.y1c_c01036{bottom:820.080000px;}
.y17_c01036{bottom:859.680000px;}
.y1a_c01036{bottom:860.400000px;}
.y19_c01036{bottom:862.560000px;}
.y18_c01036{bottom:863.280000px;}
.y15_c01036{bottom:902.880000px;}
.y14_c01036{bottom:903.600000px;}
.y12_c01036{bottom:905.040000px;}
.y13_c01036{bottom:905.760000px;}
.y16_c01036{bottom:906.480000px;}
.yf_c01036{bottom:946.080000px;}
.yd_c01036{bottom:947.520000px;}
.ye_c01036{bottom:948.240000px;}
.y10_c01036{bottom:948.960000px;}
.y11_c01036{bottom:949.680000px;}
.yb_c01036{bottom:988.560000px;}
.y9_c01036{bottom:989.280000px;}
.y7_c01036{bottom:990.000000px;}
.y8_c01036{bottom:990.720000px;}
.ya_c01036{bottom:991.440000px;}
.yc_c01036{bottom:992.160000px;}
.y4_c01036{bottom:1031.760000px;}
.y5_c01036{bottom:1032.480000px;}
.y2_c01036{bottom:1033.920000px;}
.y3_c01036{bottom:1034.640000px;}
.y6_c01036{bottom:1035.360000px;}
.y1_c01036{bottom:1095.120000px;}
.hd_c01036{height:12.958594px;}
.h10_c01036{height:15.550313px;}
.h8_c01036{height:28.508906px;}
.h7_c01036{height:31.100625px;}
.h5_c01036{height:38.875781px;}
.h4_c01036{height:41.467500px;}
.h3_c01036{height:44.059219px;}
.ha_c01036{height:46.650937px;}
.hc_c01036{height:49.242656px;}
.h9_c01036{height:51.834375px;}
.h6_c01036{height:54.426094px;}
.hf_c01036{height:57.017812px;}
.hb_c01036{height:59.609531px;}
.h2_c01036{height:62.201250px;}
.he_c01036{height:63.642656px;}
.h1_c01036{height:1149.750000px;}
.h0_c01036{height:1149.840000px;}
.w0_c01036{width:818.640000px;}
.w1_c01036{width:819.000000px;}
.x0_c01036{left:0.000000px;}
.x2_c01036{left:104.400000px;}
.x2a_c01036{left:105.840000px;}
.x3d_c01036{left:126.720000px;}
.x3_c01036{left:136.080000px;}
.xc_c01036{left:146.880000px;}
.x2b_c01036{left:148.320000px;}
.x15_c01036{left:158.400000px;}
.x2f_c01036{left:169.200000px;}
.xd_c01036{left:179.280000px;}
.x42_c01036{left:191.520000px;}
.x4_c01036{left:200.880000px;}
.x24_c01036{left:210.960000px;}
.x2c_c01036{left:213.120000px;}
.x16_c01036{left:223.200000px;}
.x5_c01036{left:224.640000px;}
.x4b_c01036{left:233.280000px;}
.xe_c01036{left:244.080000px;}
.x20_c01036{left:255.600000px;}
.x1e_c01036{left:265.680000px;}
.x17_c01036{left:267.840000px;}
.x6_c01036{left:277.200000px;}
.xf_c01036{left:287.280000px;}
.x30_c01036{left:298.800000px;}
.x36_c01036{left:311.040000px;}
.x21_c01036{left:319.680000px;}
.x43_c01036{left:330.480000px;}
.x3b_c01036{left:332.640000px;}
.x44_c01036{left:341.280000px;}
.x46_c01036{left:342.720000px;}
.x48_c01036{left:353.520000px;}
.x31_c01036{left:365.040000px;}
.x37_c01036{left:373.680000px;}
.x7_c01036{left:385.200000px;}
.x32_c01036{left:395.280000px;}
.x10_c01036{left:407.520000px;}
.x8_c01036{left:418.320000px;}
.x25_c01036{left:429.120000px;}
.x33_c01036{left:430.560000px;}
.x11_c01036{left:439.200000px;}
.x9_c01036{left:450.000000px;}
.x34_c01036{left:451.440000px;}
.x4c_c01036{left:460.080000px;}
.x3e_c01036{left:462.240000px;}
.x22_c01036{left:473.040000px;}
.x38_c01036{left:483.120000px;}
.x23_c01036{left:493.200000px;}
.x18_c01036{left:494.640000px;}
.x1f_c01036{left:515.520000px;}
.x3f_c01036{left:525.600000px;}
.x19_c01036{left:527.040000px;}
.x29_c01036{left:537.840000px;}
.x45_c01036{left:546.480000px;}
.x12_c01036{left:547.920000px;}
.x2d_c01036{left:559.440000px;}
.x26_c01036{left:569.520000px;}
.xa_c01036{left:591.120000px;}
.x2e_c01036{left:601.200000px;}
.x40_c01036{left:602.640000px;}
.x39_c01036{left:612.000000px;}
.x35_c01036{left:614.160000px;}
.x27_c01036{left:623.520000px;}
.x13_c01036{left:624.960000px;}
.x1a_c01036{left:635.040000px;}
.x3a_c01036{left:645.840000px;}
.x3c_c01036{left:656.640000px;}
.x1b_c01036{left:668.880000px;}
.xb_c01036{left:678.960000px;}
.x28_c01036{left:687.600000px;}
.x1c_c01036{left:689.040000px;}
.x4a_c01036{left:697.680000px;}
.x14_c01036{left:699.840000px;}
.x49_c01036{left:701.280000px;}
.x47_c01036{left:712.080000px;}
.x1_c01036{left:719.280000px;}
.x1d_c01036{left:722.160000px;}
.x41_c01036{left:732.240000px;}
@media print{
.v0_c01036{vertical-align:0.000000pt;}
.v1_c01036{vertical-align:12.800000pt;}
.ls0_c01036{letter-spacing:0.000000pt;}
.ws1_c01036{word-spacing:0.000000pt;}
.ws0_c01036{word-spacing:2.729813pt;}
.fsb_c01036{font-size:12.800000pt;}
.fsd_c01036{font-size:15.360000pt;}
.fs6_c01036{font-size:28.160000pt;}
.fs5_c01036{font-size:30.720000pt;}
.fs3_c01036{font-size:38.400000pt;}
.fs2_c01036{font-size:40.960000pt;}
.fs1_c01036{font-size:43.520000pt;}
.fs8_c01036{font-size:46.080000pt;}
.fsa_c01036{font-size:48.640000pt;}
.fs7_c01036{font-size:51.200000pt;}
.fs4_c01036{font-size:53.760000pt;}
.fsc_c01036{font-size:56.320000pt;}
.fs9_c01036{font-size:58.880000pt;}
.fs0_c01036{font-size:61.440000pt;}
.y0_c01036{bottom:0.000000pt;}
.y69_c01036{bottom:108.160000pt;}
.y65_c01036{bottom:109.440000pt;}
.y66_c01036{bottom:110.080000pt;}
.y68_c01036{bottom:111.360000pt;}
.y67_c01036{bottom:112.000000pt;}
.y62_c01036{bottom:145.280000pt;}
.y63_c01036{bottom:145.920000pt;}
.y64_c01036{bottom:147.200000pt;}
.y61_c01036{bottom:148.480000pt;}
.y60_c01036{bottom:149.120000pt;}
.y5f_c01036{bottom:194.560000pt;}
.y5e_c01036{bottom:210.560000pt;}
.y5d_c01036{bottom:213.760000pt;}
.y5c_c01036{bottom:231.680000pt;}
.y5b_c01036{bottom:232.960000pt;}
.y5a_c01036{bottom:247.040000pt;}
.y58_c01036{bottom:250.880000pt;}
.y57_c01036{bottom:251.520000pt;}
.y59_c01036{bottom:252.800000pt;}
.y56_c01036{bottom:254.080000pt;}
.y55_c01036{bottom:269.440000pt;}
.y53_c01036{bottom:270.720000pt;}
.y54_c01036{bottom:272.640000pt;}
.y52_c01036{bottom:273.280000pt;}
.y51_c01036{bottom:288.640000pt;}
.y4f_c01036{bottom:289.280000pt;}
.y50_c01036{bottom:291.200000pt;}
.y4e_c01036{bottom:292.480000pt;}
.y4d_c01036{bottom:307.840000pt;}
.y4b_c01036{bottom:309.760000pt;}
.y4c_c01036{bottom:311.040000pt;}
.y4a_c01036{bottom:311.680000pt;}
.y47_c01036{bottom:327.040000pt;}
.y46_c01036{bottom:327.680000pt;}
.y43_c01036{bottom:328.320000pt;}
.y44_c01036{bottom:328.960000pt;}
.y48_c01036{bottom:329.600000pt;}
.y49_c01036{bottom:330.240000pt;}
.y45_c01036{bottom:330.880000pt;}
.y42_c01036{bottom:364.800000pt;}
.y3f_c01036{bottom:366.080000pt;}
.y41_c01036{bottom:367.360000pt;}
.y40_c01036{bottom:368.000000pt;}
.y3e_c01036{bottom:368.640000pt;}
.y3d_c01036{bottom:402.560000pt;}
.y3b_c01036{bottom:403.200000pt;}
.y3a_c01036{bottom:403.840000pt;}
.y3c_c01036{bottom:405.120000pt;}
.y39_c01036{bottom:405.760000pt;}
.y38_c01036{bottom:407.040000pt;}
.y37_c01036{bottom:452.480000pt;}
.y36_c01036{bottom:453.120000pt;}
.y34_c01036{bottom:488.960000pt;}
.y31_c01036{bottom:489.600000pt;}
.y35_c01036{bottom:490.880000pt;}
.y32_c01036{bottom:491.520000pt;}
.y33_c01036{bottom:492.160000pt;}
.y30_c01036{bottom:526.720000pt;}
.y2f_c01036{bottom:528.000000pt;}
.y2e_c01036{bottom:529.280000pt;}
.y2a_c01036{bottom:565.120000pt;}
.y2c_c01036{bottom:565.760000pt;}
.y2d_c01036{bottom:566.400000pt;}
.y2b_c01036{bottom:567.040000pt;}
.y29_c01036{bottom:567.680000pt;}
.y27_c01036{bottom:604.800000pt;}
.y28_c01036{bottom:605.440000pt;}
.y26_c01036{bottom:651.520000pt;}
.y25_c01036{bottom:652.800000pt;}
.y20_c01036{bottom:688.000000pt;}
.y21_c01036{bottom:688.640000pt;}
.y23_c01036{bottom:689.920000pt;}
.y24_c01036{bottom:690.560000pt;}
.y22_c01036{bottom:691.200000pt;}
.y1e_c01036{bottom:725.760000pt;}
.y1d_c01036{bottom:726.400000pt;}
.y1b_c01036{bottom:727.680000pt;}
.y1f_c01036{bottom:728.320000pt;}
.y1c_c01036{bottom:728.960000pt;}
.y17_c01036{bottom:764.160000pt;}
.y1a_c01036{bottom:764.800000pt;}
.y19_c01036{bottom:766.720000pt;}
.y18_c01036{bottom:767.360000pt;}
.y15_c01036{bottom:802.560000pt;}
.y14_c01036{bottom:803.200000pt;}
.y12_c01036{bottom:804.480000pt;}
.y13_c01036{bottom:805.120000pt;}
.y16_c01036{bottom:805.760000pt;}
.yf_c01036{bottom:840.960000pt;}
.yd_c01036{bottom:842.240000pt;}
.ye_c01036{bottom:842.880000pt;}
.y10_c01036{bottom:843.520000pt;}
.y11_c01036{bottom:844.160000pt;}
.yb_c01036{bottom:878.720000pt;}
.y9_c01036{bottom:879.360000pt;}
.y7_c01036{bottom:880.000000pt;}
.y8_c01036{bottom:880.640000pt;}
.ya_c01036{bottom:881.280000pt;}
.yc_c01036{bottom:881.920000pt;}
.y4_c01036{bottom:917.120000pt;}
.y5_c01036{bottom:917.760000pt;}
.y2_c01036{bottom:919.040000pt;}
.y3_c01036{bottom:919.680000pt;}
.y6_c01036{bottom:920.320000pt;}
.y1_c01036{bottom:973.440000pt;}
.hd_c01036{height:11.518750pt;}
.h10_c01036{height:13.822500pt;}
.h8_c01036{height:25.341250pt;}
.h7_c01036{height:27.645000pt;}
.h5_c01036{height:34.556250pt;}
.h4_c01036{height:36.860000pt;}
.h3_c01036{height:39.163750pt;}
.ha_c01036{height:41.467500pt;}
.hc_c01036{height:43.771250pt;}
.h9_c01036{height:46.075000pt;}
.h6_c01036{height:48.378750pt;}
.hf_c01036{height:50.682500pt;}
.hb_c01036{height:52.986250pt;}
.h2_c01036{height:55.290000pt;}
.he_c01036{height:56.571250pt;}
.h1_c01036{height:1022.000000pt;}
.h0_c01036{height:1022.080000pt;}
.w0_c01036{width:727.680000pt;}
.w1_c01036{width:728.000000pt;}
.x0_c01036{left:0.000000pt;}
.x2_c01036{left:92.800000pt;}
.x2a_c01036{left:94.080000pt;}
.x3d_c01036{left:112.640000pt;}
.x3_c01036{left:120.960000pt;}
.xc_c01036{left:130.560000pt;}
.x2b_c01036{left:131.840000pt;}
.x15_c01036{left:140.800000pt;}
.x2f_c01036{left:150.400000pt;}
.xd_c01036{left:159.360000pt;}
.x42_c01036{left:170.240000pt;}
.x4_c01036{left:178.560000pt;}
.x24_c01036{left:187.520000pt;}
.x2c_c01036{left:189.440000pt;}
.x16_c01036{left:198.400000pt;}
.x5_c01036{left:199.680000pt;}
.x4b_c01036{left:207.360000pt;}
.xe_c01036{left:216.960000pt;}
.x20_c01036{left:227.200000pt;}
.x1e_c01036{left:236.160000pt;}
.x17_c01036{left:238.080000pt;}
.x6_c01036{left:246.400000pt;}
.xf_c01036{left:255.360000pt;}
.x30_c01036{left:265.600000pt;}
.x36_c01036{left:276.480000pt;}
.x21_c01036{left:284.160000pt;}
.x43_c01036{left:293.760000pt;}
.x3b_c01036{left:295.680000pt;}
.x44_c01036{left:303.360000pt;}
.x46_c01036{left:304.640000pt;}
.x48_c01036{left:314.240000pt;}
.x31_c01036{left:324.480000pt;}
.x37_c01036{left:332.160000pt;}
.x7_c01036{left:342.400000pt;}
.x32_c01036{left:351.360000pt;}
.x10_c01036{left:362.240000pt;}
.x8_c01036{left:371.840000pt;}
.x25_c01036{left:381.440000pt;}
.x33_c01036{left:382.720000pt;}
.x11_c01036{left:390.400000pt;}
.x9_c01036{left:400.000000pt;}
.x34_c01036{left:401.280000pt;}
.x4c_c01036{left:408.960000pt;}
.x3e_c01036{left:410.880000pt;}
.x22_c01036{left:420.480000pt;}
.x38_c01036{left:429.440000pt;}
.x23_c01036{left:438.400000pt;}
.x18_c01036{left:439.680000pt;}
.x1f_c01036{left:458.240000pt;}
.x3f_c01036{left:467.200000pt;}
.x19_c01036{left:468.480000pt;}
.x29_c01036{left:478.080000pt;}
.x45_c01036{left:485.760000pt;}
.x12_c01036{left:487.040000pt;}
.x2d_c01036{left:497.280000pt;}
.x26_c01036{left:506.240000pt;}
.xa_c01036{left:525.440000pt;}
.x2e_c01036{left:534.400000pt;}
.x40_c01036{left:535.680000pt;}
.x39_c01036{left:544.000000pt;}
.x35_c01036{left:545.920000pt;}
.x27_c01036{left:554.240000pt;}
.x13_c01036{left:555.520000pt;}
.x1a_c01036{left:564.480000pt;}
.x3a_c01036{left:574.080000pt;}
.x3c_c01036{left:583.680000pt;}
.x1b_c01036{left:594.560000pt;}
.xb_c01036{left:603.520000pt;}
.x28_c01036{left:611.200000pt;}
.x1c_c01036{left:612.480000pt;}
.x4a_c01036{left:620.160000pt;}
.x14_c01036{left:622.080000pt;}
.x49_c01036{left:623.360000pt;}
.x47_c01036{left:632.960000pt;}
.x1_c01036{left:639.360000pt;}
.x1d_c01036{left:641.920000pt;}
.x41_c01036{left:650.880000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e119a00ccde9008b8d84227c.woff2')format("woff");}.ff1_c01037{font-family:ff1_c01037;line-height:1.109863;font-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_c01037{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m25_c01037{transform:matrix(0.225550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225550,0.000000,0.000000,0.250000,0,0);}
.m49_c01037{transform:matrix(0.244150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244150,0.000000,0.000000,0.250000,0,0);}
.m15_c01037{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01037{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m19_c01037{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_c01037{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);}
.m23_c01037{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);}
.m3d_c01037{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1b_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);}
.m18_c01037{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);}
.m30_c01037{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_c01037{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m4_c01037{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.ma_c01037{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);}
.m2a_c01037{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.mc_c01037{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m10_c01037{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);}
.m46_c01037{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m9_c01037{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);}
.m43_c01037{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m45_c01037{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m20_c01037{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01037{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01037{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m34_c01037{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.md_c01037{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01037{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01037{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m37_c01037{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01037{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m26_c01037{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01037{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01037{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m21_c01037{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mf_c01037{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m7_c01037{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m14_c01037{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);}
.m42_c01037{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);}
.m2c_c01037{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m12_c01037{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01037{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m17_c01037{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m0_c01037{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);}
.m31_c01037{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m36_c01037{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m2_c01037{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m24_c01037{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);}
.m1a_c01037{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m16_c01037{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m28_c01037{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m38_c01037{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m5_c01037{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m8_c01037{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.me_c01037{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01037{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);}
.m47_c01037{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m22_c01037{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m29_c01037{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m32_c01037{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);}
.m39_c01037{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);}
.m33_c01037{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);}
.m44_c01037{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01037{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m3_c01037{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);}
.m11_c01037{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m35_c01037{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);}
.m2e_c01037{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);}
.m2f_c01037{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m41_c01037{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01037{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m27_c01037{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m40_c01037{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01037{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m1_c01037{transform:matrix(0.947500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.947500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.947500,0.000000,0.000000,0.250000,0,0);}
.v2_c01037{vertical-align:-5.760000px;}
.v0_c01037{vertical-align:0.000000px;}
.v1_c01037{vertical-align:11.520000px;}
.ls0_c01037{letter-spacing:0.000000px;}
.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;}
}
.ws2_c01037{word-spacing:0.000000px;}
.ws1_c01037{word-spacing:86.174400px;}
.ws0_c01037{word-spacing:879.380880px;}
.fc0_c01037{color:transparent;}
.fsb_c01037{font-size:34.560000px;}
.fsd_c01037{font-size:37.440000px;}
.fsf_c01037{font-size:40.320000px;}
.fsc_c01037{font-size:43.200000px;}
.fs5_c01037{font-size:48.960000px;}
.fs1_c01037{font-size:51.840000px;}
.fs8_c01037{font-size:54.720000px;}
.fs7_c01037{font-size:57.600000px;}
.fs2_c01037{font-size:60.480000px;}
.fs6_c01037{font-size:63.360000px;}
.fs4_c01037{font-size:66.240000px;}
.fs9_c01037{font-size:69.120000px;}
.fs0_c01037{font-size:72.000000px;}
.fsa_c01037{font-size:74.880000px;}
.fs3_c01037{font-size:77.760000px;}
.fs10_c01037{font-size:80.640000px;}
.fse_c01037{font-size:103.680000px;}
.y0_c01037{bottom:0.000000px;}
.y76_c01037{bottom:58.320000px;}
.y78_c01037{bottom:59.040000px;}
.y7b_c01037{bottom:59.760000px;}
.y79_c01037{bottom:60.480000px;}
.y77_c01037{bottom:61.200000px;}
.y74_c01037{bottom:61.920000px;}
.y75_c01037{bottom:62.640000px;}
.y7a_c01037{bottom:63.360000px;}
.y59_c01037{bottom:103.680000px;}
.y73_c01037{bottom:105.120000px;}
.y58_c01037{bottom:107.280000px;}
.y57_c01037{bottom:146.880000px;}
.y72_c01037{bottom:147.600000px;}
.y71_c01037{bottom:149.040000px;}
.y70_c01037{bottom:149.760000px;}
.y55_c01037{bottom:150.480000px;}
.y56_c01037{bottom:151.200000px;}
.y54_c01037{bottom:189.360000px;}
.y53_c01037{bottom:190.080000px;}
.y6e_c01037{bottom:191.520000px;}
.y6f_c01037{bottom:192.240000px;}
.y51_c01037{bottom:192.960000px;}
.y52_c01037{bottom:193.680000px;}
.y6d_c01037{bottom:194.400000px;}
.y50_c01037{bottom:233.280000px;}
.y4f_c01037{bottom:234.720000px;}
.y4d_c01037{bottom:236.160000px;}
.y4e_c01037{bottom:237.600000px;}
.y4b_c01037{bottom:264.240000px;}
.y4c_c01037{bottom:265.680000px;}
.y6c_c01037{bottom:266.400000px;}
.y49_c01037{bottom:268.560000px;}
.y4a_c01037{bottom:269.280000px;}
.y46_c01037{bottom:307.440000px;}
.y44_c01037{bottom:309.600000px;}
.y45_c01037{bottom:310.320000px;}
.y47_c01037{bottom:311.040000px;}
.y48_c01037{bottom:311.760000px;}
.y42_c01037{bottom:350.640000px;}
.y6b_c01037{bottom:352.800000px;}
.y40_c01037{bottom:353.520000px;}
.y43_c01037{bottom:354.240000px;}
.y41_c01037{bottom:354.960000px;}
.y3d_c01037{bottom:392.400000px;}
.y3e_c01037{bottom:393.840000px;}
.y3b_c01037{bottom:395.280000px;}
.y6a_c01037{bottom:396.000000px;}
.y3c_c01037{bottom:396.720000px;}
.y3f_c01037{bottom:397.440000px;}
.y37_c01037{bottom:436.320000px;}
.y3a_c01037{bottom:437.040000px;}
.y38_c01037{bottom:437.760000px;}
.y35_c01037{bottom:438.480000px;}
.y39_c01037{bottom:439.200000px;}
.y36_c01037{bottom:439.920000px;}
.y69_c01037{bottom:440.640000px;}
.y68_c01037{bottom:441.360000px;}
.y67_c01037{bottom:442.080000px;}
.y34_c01037{bottom:473.040000px;}
.y31_c01037{bottom:478.800000px;}
.y30_c01037{bottom:480.240000px;}
.y65_c01037{bottom:481.680000px;}
.y66_c01037{bottom:482.400000px;}
.y33_c01037{bottom:483.120000px;}
.y32_c01037{bottom:483.840000px;}
.y2f_c01037{bottom:522.000000px;}
.y64_c01037{bottom:524.160000px;}
.y2d_c01037{bottom:524.880000px;}
.y63_c01037{bottom:525.600000px;}
.y2e_c01037{bottom:527.040000px;}
.y2c_c01037{bottom:565.920000px;}
.y2b_c01037{bottom:567.360000px;}
.y62_c01037{bottom:568.080000px;}
.y2a_c01037{bottom:568.800000px;}
.y29_c01037{bottom:569.520000px;}
.y28_c01037{bottom:608.400000px;}
.y24_c01037{bottom:611.280000px;}
.y27_c01037{bottom:612.000000px;}
.y26_c01037{bottom:652.320000px;}
.y23_c01037{bottom:654.480000px;}
.y25_c01037{bottom:655.200000px;}
.y60_c01037{bottom:655.920000px;}
.y61_c01037{bottom:657.360000px;}
.y21_c01037{bottom:694.800000px;}
.y20_c01037{bottom:696.960000px;}
.y22_c01037{bottom:697.680000px;}
.y1f_c01037{bottom:698.400000px;}
.y5e_c01037{bottom:699.120000px;}
.y5f_c01037{bottom:700.560000px;}
.y1e_c01037{bottom:738.720000px;}
.y1c_c01037{bottom:740.160000px;}
.y5d_c01037{bottom:740.880000px;}
.y1d_c01037{bottom:741.600000px;}
.y1b_c01037{bottom:780.480000px;}
.y18_c01037{bottom:784.080000px;}
.y1a_c01037{bottom:784.800000px;}
.y19_c01037{bottom:785.520000px;}
.y17_c01037{bottom:823.680000px;}
.y15_c01037{bottom:825.120000px;}
.y5c_c01037{bottom:827.280000px;}
.y16_c01037{bottom:828.000000px;}
.y13_c01037{bottom:866.880000px;}
.y11_c01037{bottom:868.320000px;}
.y12_c01037{bottom:871.200000px;}
.y14_c01037{bottom:871.920000px;}
.y5a_c01037{bottom:872.640000px;}
.y5b_c01037{bottom:873.360000px;}
.yb_c01037{bottom:910.080000px;}
.y9_c01037{bottom:910.800000px;}
.y10_c01037{bottom:912.960000px;}
.ya_c01037{bottom:913.680000px;}
.y8_c01037{bottom:952.560000px;}
.y6_c01037{bottom:955.440000px;}
.y7_c01037{bottom:956.160000px;}
.yf_c01037{bottom:957.600000px;}
.ye_c01037{bottom:958.320000px;}
.y5_c01037{bottom:995.040000px;}
.y3_c01037{bottom:997.920000px;}
.yd_c01037{bottom:998.640000px;}
.y4_c01037{bottom:999.360000px;}
.yc_c01037{bottom:1000.080000px;}
.y2_c01037{bottom:1044.000000px;}
.y1_c01037{bottom:1092.240000px;}
.hd_c01037{height:31.100625px;}
.h10_c01037{height:33.692344px;}
.h12_c01037{height:36.284062px;}
.he_c01037{height:38.875781px;}
.h7_c01037{height:44.059219px;}
.h3_c01037{height:46.650937px;}
.ha_c01037{height:49.242656px;}
.h9_c01037{height:51.834375px;}
.h4_c01037{height:54.426094px;}
.h14_c01037{height:56.441250px;}
.h8_c01037{height:57.017812px;}
.h6_c01037{height:59.609531px;}
.hb_c01037{height:62.201250px;}
.h2_c01037{height:64.792969px;}
.hc_c01037{height:67.384687px;}
.hf_c01037{height:68.537812px;}
.h5_c01037{height:69.976406px;}
.h13_c01037{height:72.568125px;}
.h11_c01037{height:93.301875px;}
.h1_c01037{height:1149.750000px;}
.h0_c01037{height:1149.840000px;}
.w0_c01037{width:818.640000px;}
.w1_c01037{width:819.000000px;}
.x0_c01037{left:0.000000px;}
.x3_c01037{left:109.440000px;}
.x28_c01037{left:110.880000px;}
.x2f_c01037{left:114.480000px;}
.x16_c01037{left:153.360000px;}
.x4_c01037{left:183.600000px;}
.x17_c01037{left:185.040000px;}
.x24_c01037{left:186.480000px;}
.x30_c01037{left:187.920000px;}
.x5_c01037{left:226.800000px;}
.x12_c01037{left:228.240000px;}
.x25_c01037{left:230.400000px;}
.x31_c01037{left:231.840000px;}
.x13_c01037{left:270.720000px;}
.x18_c01037{left:272.160000px;}
.x15_c01037{left:282.240000px;}
.xe_c01037{left:313.920000px;}
.x26_c01037{left:324.720000px;}
.x14_c01037{left:326.160000px;}
.x1b_c01037{left:336.240000px;}
.x27_c01037{left:337.680000px;}
.x32_c01037{left:341.280000px;}
.xf_c01037{left:367.920000px;}
.x20_c01037{left:369.360000px;}
.x1f_c01037{left:381.600000px;}
.x1c_c01037{left:390.960000px;}
.x19_c01037{left:411.840000px;}
.x1e_c01037{left:423.360000px;}
.x33_c01037{left:427.680000px;}
.x21_c01037{left:455.760000px;}
.x10_c01037{left:464.400000px;}
.x1a_c01037{left:466.560000px;}
.x1d_c01037{left:477.360000px;}
.x11_c01037{left:509.040000px;}
.x22_c01037{left:521.280000px;}
.x2_c01037{left:585.360000px;}
.x23_c01037{left:586.800000px;}
.x34_c01037{left:590.400000px;}
.xb_c01037{left:617.760000px;}
.x2d_c01037{left:619.920000px;}
.xa_c01037{left:639.360000px;}
.x2c_c01037{left:640.800000px;}
.x29_c01037{left:671.760000px;}
.x6_c01037{left:673.200000px;}
.x35_c01037{left:678.240000px;}
.x2a_c01037{left:696.960000px;}
.x7_c01037{left:706.320000px;}
.x36_c01037{left:710.640000px;}
.xc_c01037{left:715.680000px;}
.x1_c01037{left:723.600000px;}
.x8_c01037{left:748.080000px;}
.xd_c01037{left:749.520000px;}
.x2e_c01037{left:751.680000px;}
.x37_c01037{left:755.280000px;}
.x9_c01037{left:768.960000px;}
.x2b_c01037{left:770.400000px;}
.x38_c01037{left:775.440000px;}
@media print{
.v2_c01037{vertical-align:-5.120000pt;}
.v0_c01037{vertical-align:0.000000pt;}
.v1_c01037{vertical-align:10.240000pt;}
.ls0_c01037{letter-spacing:0.000000pt;}
.ws2_c01037{word-spacing:0.000000pt;}
.ws1_c01037{word-spacing:76.599467pt;}
.ws0_c01037{word-spacing:781.671893pt;}
.fsb_c01037{font-size:30.720000pt;}
.fsd_c01037{font-size:33.280000pt;}
.fsf_c01037{font-size:35.840000pt;}
.fsc_c01037{font-size:38.400000pt;}
.fs5_c01037{font-size:43.520000pt;}
.fs1_c01037{font-size:46.080000pt;}
.fs8_c01037{font-size:48.640000pt;}
.fs7_c01037{font-size:51.200000pt;}
.fs2_c01037{font-size:53.760000pt;}
.fs6_c01037{font-size:56.320000pt;}
.fs4_c01037{font-size:58.880000pt;}
.fs9_c01037{font-size:61.440000pt;}
.fs0_c01037{font-size:64.000000pt;}
.fsa_c01037{font-size:66.560000pt;}
.fs3_c01037{font-size:69.120000pt;}
.fs10_c01037{font-size:71.680000pt;}
.fse_c01037{font-size:92.160000pt;}
.y0_c01037{bottom:0.000000pt;}
.y76_c01037{bottom:51.840000pt;}
.y78_c01037{bottom:52.480000pt;}
.y7b_c01037{bottom:53.120000pt;}
.y79_c01037{bottom:53.760000pt;}
.y77_c01037{bottom:54.400000pt;}
.y74_c01037{bottom:55.040000pt;}
.y75_c01037{bottom:55.680000pt;}
.y7a_c01037{bottom:56.320000pt;}
.y59_c01037{bottom:92.160000pt;}
.y73_c01037{bottom:93.440000pt;}
.y58_c01037{bottom:95.360000pt;}
.y57_c01037{bottom:130.560000pt;}
.y72_c01037{bottom:131.200000pt;}
.y71_c01037{bottom:132.480000pt;}
.y70_c01037{bottom:133.120000pt;}
.y55_c01037{bottom:133.760000pt;}
.y56_c01037{bottom:134.400000pt;}
.y54_c01037{bottom:168.320000pt;}
.y53_c01037{bottom:168.960000pt;}
.y6e_c01037{bottom:170.240000pt;}
.y6f_c01037{bottom:170.880000pt;}
.y51_c01037{bottom:171.520000pt;}
.y52_c01037{bottom:172.160000pt;}
.y6d_c01037{bottom:172.800000pt;}
.y50_c01037{bottom:207.360000pt;}
.y4f_c01037{bottom:208.640000pt;}
.y4d_c01037{bottom:209.920000pt;}
.y4e_c01037{bottom:211.200000pt;}
.y4b_c01037{bottom:234.880000pt;}
.y4c_c01037{bottom:236.160000pt;}
.y6c_c01037{bottom:236.800000pt;}
.y49_c01037{bottom:238.720000pt;}
.y4a_c01037{bottom:239.360000pt;}
.y46_c01037{bottom:273.280000pt;}
.y44_c01037{bottom:275.200000pt;}
.y45_c01037{bottom:275.840000pt;}
.y47_c01037{bottom:276.480000pt;}
.y48_c01037{bottom:277.120000pt;}
.y42_c01037{bottom:311.680000pt;}
.y6b_c01037{bottom:313.600000pt;}
.y40_c01037{bottom:314.240000pt;}
.y43_c01037{bottom:314.880000pt;}
.y41_c01037{bottom:315.520000pt;}
.y3d_c01037{bottom:348.800000pt;}
.y3e_c01037{bottom:350.080000pt;}
.y3b_c01037{bottom:351.360000pt;}
.y6a_c01037{bottom:352.000000pt;}
.y3c_c01037{bottom:352.640000pt;}
.y3f_c01037{bottom:353.280000pt;}
.y37_c01037{bottom:387.840000pt;}
.y3a_c01037{bottom:388.480000pt;}
.y38_c01037{bottom:389.120000pt;}
.y35_c01037{bottom:389.760000pt;}
.y39_c01037{bottom:390.400000pt;}
.y36_c01037{bottom:391.040000pt;}
.y69_c01037{bottom:391.680000pt;}
.y68_c01037{bottom:392.320000pt;}
.y67_c01037{bottom:392.960000pt;}
.y34_c01037{bottom:420.480000pt;}
.y31_c01037{bottom:425.600000pt;}
.y30_c01037{bottom:426.880000pt;}
.y65_c01037{bottom:428.160000pt;}
.y66_c01037{bottom:428.800000pt;}
.y33_c01037{bottom:429.440000pt;}
.y32_c01037{bottom:430.080000pt;}
.y2f_c01037{bottom:464.000000pt;}
.y64_c01037{bottom:465.920000pt;}
.y2d_c01037{bottom:466.560000pt;}
.y63_c01037{bottom:467.200000pt;}
.y2e_c01037{bottom:468.480000pt;}
.y2c_c01037{bottom:503.040000pt;}
.y2b_c01037{bottom:504.320000pt;}
.y62_c01037{bottom:504.960000pt;}
.y2a_c01037{bottom:505.600000pt;}
.y29_c01037{bottom:506.240000pt;}
.y28_c01037{bottom:540.800000pt;}
.y24_c01037{bottom:543.360000pt;}
.y27_c01037{bottom:544.000000pt;}
.y26_c01037{bottom:579.840000pt;}
.y23_c01037{bottom:581.760000pt;}
.y25_c01037{bottom:582.400000pt;}
.y60_c01037{bottom:583.040000pt;}
.y61_c01037{bottom:584.320000pt;}
.y21_c01037{bottom:617.600000pt;}
.y20_c01037{bottom:619.520000pt;}
.y22_c01037{bottom:620.160000pt;}
.y1f_c01037{bottom:620.800000pt;}
.y5e_c01037{bottom:621.440000pt;}
.y5f_c01037{bottom:622.720000pt;}
.y1e_c01037{bottom:656.640000pt;}
.y1c_c01037{bottom:657.920000pt;}
.y5d_c01037{bottom:658.560000pt;}
.y1d_c01037{bottom:659.200000pt;}
.y1b_c01037{bottom:693.760000pt;}
.y18_c01037{bottom:696.960000pt;}
.y1a_c01037{bottom:697.600000pt;}
.y19_c01037{bottom:698.240000pt;}
.y17_c01037{bottom:732.160000pt;}
.y15_c01037{bottom:733.440000pt;}
.y5c_c01037{bottom:735.360000pt;}
.y16_c01037{bottom:736.000000pt;}
.y13_c01037{bottom:770.560000pt;}
.y11_c01037{bottom:771.840000pt;}
.y12_c01037{bottom:774.400000pt;}
.y14_c01037{bottom:775.040000pt;}
.y5a_c01037{bottom:775.680000pt;}
.y5b_c01037{bottom:776.320000pt;}
.yb_c01037{bottom:808.960000pt;}
.y9_c01037{bottom:809.600000pt;}
.y10_c01037{bottom:811.520000pt;}
.ya_c01037{bottom:812.160000pt;}
.y8_c01037{bottom:846.720000pt;}
.y6_c01037{bottom:849.280000pt;}
.y7_c01037{bottom:849.920000pt;}
.yf_c01037{bottom:851.200000pt;}
.ye_c01037{bottom:851.840000pt;}
.y5_c01037{bottom:884.480000pt;}
.y3_c01037{bottom:887.040000pt;}
.yd_c01037{bottom:887.680000pt;}
.y4_c01037{bottom:888.320000pt;}
.yc_c01037{bottom:888.960000pt;}
.y2_c01037{bottom:928.000000pt;}
.y1_c01037{bottom:970.880000pt;}
.hd_c01037{height:27.645000pt;}
.h10_c01037{height:29.948750pt;}
.h12_c01037{height:32.252500pt;}
.he_c01037{height:34.556250pt;}
.h7_c01037{height:39.163750pt;}
.h3_c01037{height:41.467500pt;}
.ha_c01037{height:43.771250pt;}
.h9_c01037{height:46.075000pt;}
.h4_c01037{height:48.378750pt;}
.h14_c01037{height:50.170000pt;}
.h8_c01037{height:50.682500pt;}
.h6_c01037{height:52.986250pt;}
.hb_c01037{height:55.290000pt;}
.h2_c01037{height:57.593750pt;}
.hc_c01037{height:59.897500pt;}
.hf_c01037{height:60.922500pt;}
.h5_c01037{height:62.201250pt;}
.h13_c01037{height:64.505000pt;}
.h11_c01037{height:82.935000pt;}
.h1_c01037{height:1022.000000pt;}
.h0_c01037{height:1022.080000pt;}
.w0_c01037{width:727.680000pt;}
.w1_c01037{width:728.000000pt;}
.x0_c01037{left:0.000000pt;}
.x3_c01037{left:97.280000pt;}
.x28_c01037{left:98.560000pt;}
.x2f_c01037{left:101.760000pt;}
.x16_c01037{left:136.320000pt;}
.x4_c01037{left:163.200000pt;}
.x17_c01037{left:164.480000pt;}
.x24_c01037{left:165.760000pt;}
.x30_c01037{left:167.040000pt;}
.x5_c01037{left:201.600000pt;}
.x12_c01037{left:202.880000pt;}
.x25_c01037{left:204.800000pt;}
.x31_c01037{left:206.080000pt;}
.x13_c01037{left:240.640000pt;}
.x18_c01037{left:241.920000pt;}
.x15_c01037{left:250.880000pt;}
.xe_c01037{left:279.040000pt;}
.x26_c01037{left:288.640000pt;}
.x14_c01037{left:289.920000pt;}
.x1b_c01037{left:298.880000pt;}
.x27_c01037{left:300.160000pt;}
.x32_c01037{left:303.360000pt;}
.xf_c01037{left:327.040000pt;}
.x20_c01037{left:328.320000pt;}
.x1f_c01037{left:339.200000pt;}
.x1c_c01037{left:347.520000pt;}
.x19_c01037{left:366.080000pt;}
.x1e_c01037{left:376.320000pt;}
.x33_c01037{left:380.160000pt;}
.x21_c01037{left:405.120000pt;}
.x10_c01037{left:412.800000pt;}
.x1a_c01037{left:414.720000pt;}
.x1d_c01037{left:424.320000pt;}
.x11_c01037{left:452.480000pt;}
.x22_c01037{left:463.360000pt;}
.x2_c01037{left:520.320000pt;}
.x23_c01037{left:521.600000pt;}
.x34_c01037{left:524.800000pt;}
.xb_c01037{left:549.120000pt;}
.x2d_c01037{left:551.040000pt;}
.xa_c01037{left:568.320000pt;}
.x2c_c01037{left:569.600000pt;}
.x29_c01037{left:597.120000pt;}
.x6_c01037{left:598.400000pt;}
.x35_c01037{left:602.880000pt;}
.x2a_c01037{left:619.520000pt;}
.x7_c01037{left:627.840000pt;}
.x36_c01037{left:631.680000pt;}
.xc_c01037{left:636.160000pt;}
.x1_c01037{left:643.200000pt;}
.x8_c01037{left:664.960000pt;}
.xd_c01037{left:666.240000pt;}
.x2e_c01037{left:668.160000pt;}
.x37_c01037{left:671.360000pt;}
.x9_c01037{left:683.520000pt;}
.x2b_c01037{left:684.800000pt;}
.x38_c01037{left:689.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ede40099f2d23bc97e65504f.woff2')format("woff");}.ff1_c01038{font-family:ff1_c01038;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3d_c01038{transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);}
.m4c_c01038{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m47_c01038{transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);}
.m2c_c01038{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m35_c01038{transform:matrix(0.203875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203875,0.000000,0.000000,0.250000,0,0);}
.m3c_c01038{transform:matrix(0.227925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227925,0.000000,0.000000,0.250000,0,0);}
.m2f_c01038{transform:matrix(0.234800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234800,0.000000,0.000000,0.250000,0,0);}
.m4d_c01038{transform:matrix(0.236550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236550,0.000000,0.000000,0.250000,0,0);}
.m38_c01038{transform:matrix(0.242950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242950,0.000000,0.000000,0.250000,0,0);}
.m42_c01038{transform:matrix(0.243675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243675,0.000000,0.000000,0.250000,0,0);}
.m45_c01038{transform:matrix(0.243775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243775,0.000000,0.000000,0.250000,0,0);}
.m3f_c01038{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m43_c01038{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);}
.m4b_c01038{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);}
.m23_c01038{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m27_c01038{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);}
.m34_c01038{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);}
.m29_c01038{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_c01038{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mb_c01038{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m21_c01038{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01038{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m3_c01038{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m10_c01038{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m13_c01038{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);}
.m39_c01038{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01038{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m15_c01038{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m32_c01038{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m22_c01038{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01038{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m14_c01038{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m18_c01038{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m17_c01038{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m2_c01038{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m8_c01038{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.md_c01038{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m28_c01038{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m11_c01038{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.me_c01038{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01038{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1_c01038{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m19_c01038{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m12_c01038{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.mf_c01038{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m5_c01038{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);}
.m37_c01038{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01038{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);}
.m46_c01038{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m6_c01038{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01038{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m0_c01038{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m20_c01038{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);}
.m3a_c01038{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01038{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m40_c01038{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01038{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);}
.m1a_c01038{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m4_c01038{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01038{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);}
.m7_c01038{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m33_c01038{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.mc_c01038{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m9_c01038{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m26_c01038{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01038{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m49_c01038{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m48_c01038{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m41_c01038{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01038{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);}
.m25_c01038{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);}
.m30_c01038{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m44_c01038{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m31_c01038{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01038{transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);}
.m16_c01038{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m36_c01038{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.m24_c01038{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.v2_c01038{vertical-align:-2.880000px;}
.v0_c01038{vertical-align:0.000000px;}
.v1_c01038{vertical-align:2.880000px;}
.ls1_c01038{letter-spacing:0.000000px;}
.ls0_c01038{letter-spacing:97.791120px;}
.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;}
}
.ws1_c01038{word-spacing:-3.922800px;}
.ws2_c01038{word-spacing:0.000000px;}
.ws0_c01038{word-spacing:719.911440px;}
.fc0_c01038{color:transparent;}
.fs10_c01038{font-size:25.920000px;}
.fsb_c01038{font-size:34.560000px;}
.fse_c01038{font-size:37.440000px;}
.fs6_c01038{font-size:40.320000px;}
.fsc_c01038{font-size:43.200000px;}
.fsd_c01038{font-size:48.960000px;}
.fs4_c01038{font-size:51.840000px;}
.fs2_c01038{font-size:54.720000px;}
.fs5_c01038{font-size:57.600000px;}
.fs9_c01038{font-size:60.480000px;}
.fsa_c01038{font-size:63.360000px;}
.fs1_c01038{font-size:66.240000px;}
.fs7_c01038{font-size:69.120000px;}
.fs0_c01038{font-size:72.000000px;}
.fs8_c01038{font-size:74.880000px;}
.fs3_c01038{font-size:77.760000px;}
.fsf_c01038{font-size:112.320000px;}
.y0_c01038{bottom:0.000000px;}
.y79_c01038{bottom:57.600000px;}
.y78_c01038{bottom:58.320000px;}
.y7b_c01038{bottom:59.040000px;}
.y7a_c01038{bottom:59.760000px;}
.y77_c01038{bottom:61.200000px;}
.y74_c01038{bottom:101.520000px;}
.y76_c01038{bottom:102.240000px;}
.y73_c01038{bottom:102.960000px;}
.y75_c01038{bottom:103.680000px;}
.y72_c01038{bottom:105.120000px;}
.y6f_c01038{bottom:144.720000px;}
.y71_c01038{bottom:145.440000px;}
.y70_c01038{bottom:146.160000px;}
.y6d_c01038{bottom:146.880000px;}
.y6b_c01038{bottom:147.600000px;}
.y6c_c01038{bottom:148.320000px;}
.y6e_c01038{bottom:149.040000px;}
.y68_c01038{bottom:187.920000px;}
.y6a_c01038{bottom:188.640000px;}
.y69_c01038{bottom:189.360000px;}
.y66_c01038{bottom:190.800000px;}
.y67_c01038{bottom:191.520000px;}
.y63_c01038{bottom:230.400000px;}
.y64_c01038{bottom:231.840000px;}
.y61_c01038{bottom:233.280000px;}
.y62_c01038{bottom:234.000000px;}
.y65_c01038{bottom:234.720000px;}
.y5d_c01038{bottom:272.880000px;}
.y5e_c01038{bottom:273.600000px;}
.y5f_c01038{bottom:275.040000px;}
.y5b_c01038{bottom:275.760000px;}
.y60_c01038{bottom:277.200000px;}
.y5c_c01038{bottom:277.920000px;}
.y5a_c01038{bottom:316.080000px;}
.y58_c01038{bottom:318.240000px;}
.y59_c01038{bottom:320.400000px;}
.y55_c01038{bottom:359.280000px;}
.y56_c01038{bottom:360.720000px;}
.y57_c01038{bottom:361.440000px;}
.y53_c01038{bottom:362.160000px;}
.y54_c01038{bottom:362.880000px;}
.y51_c01038{bottom:401.760000px;}
.y52_c01038{bottom:403.920000px;}
.y4e_c01038{bottom:404.640000px;}
.y50_c01038{bottom:405.360000px;}
.y4f_c01038{bottom:406.080000px;}
.y4a_c01038{bottom:444.960000px;}
.y4d_c01038{bottom:445.680000px;}
.y48_c01038{bottom:446.400000px;}
.y4b_c01038{bottom:447.120000px;}
.y4c_c01038{bottom:448.560000px;}
.y49_c01038{bottom:450.000000px;}
.y47_c01038{bottom:488.880000px;}
.y45_c01038{bottom:491.040000px;}
.y46_c01038{bottom:492.480000px;}
.y36_c01038{bottom:520.560000px;}
.y34_c01038{bottom:522.720000px;}
.y33_c01038{bottom:523.440000px;}
.y44_c01038{bottom:524.160000px;}
.y37_c01038{bottom:524.880000px;}
.y35_c01038{bottom:525.600000px;}
.y31_c01038{bottom:563.760000px;}
.y32_c01038{bottom:565.920000px;}
.y2f_c01038{bottom:566.640000px;}
.y30_c01038{bottom:568.080000px;}
.y43_c01038{bottom:568.800000px;}
.y2e_c01038{bottom:599.040000px;}
.y2b_c01038{bottom:607.680000px;}
.y2a_c01038{bottom:609.120000px;}
.y42_c01038{bottom:609.840000px;}
.y2c_c01038{bottom:610.560000px;}
.y2d_c01038{bottom:611.280000px;}
.y26_c01038{bottom:650.160000px;}
.y28_c01038{bottom:650.880000px;}
.y25_c01038{bottom:652.320000px;}
.y29_c01038{bottom:653.040000px;}
.y41_c01038{bottom:653.760000px;}
.y27_c01038{bottom:654.480000px;}
.y24_c01038{bottom:694.080000px;}
.y21_c01038{bottom:695.520000px;}
.y22_c01038{bottom:696.240000px;}
.y23_c01038{bottom:697.680000px;}
.y40_c01038{bottom:698.400000px;}
.y20_c01038{bottom:736.560000px;}
.y1e_c01038{bottom:738.720000px;}
.y3f_c01038{bottom:739.440000px;}
.y1f_c01038{bottom:740.160000px;}
.y1d_c01038{bottom:779.760000px;}
.y1b_c01038{bottom:781.200000px;}
.y19_c01038{bottom:781.920000px;}
.y1c_c01038{bottom:782.640000px;}
.y1a_c01038{bottom:783.360000px;}
.y3e_c01038{bottom:824.400000px;}
.y3d_c01038{bottom:825.120000px;}
.y15_c01038{bottom:864.720000px;}
.y18_c01038{bottom:866.160000px;}
.y16_c01038{bottom:866.880000px;}
.y3c_c01038{bottom:867.600000px;}
.y13_c01038{bottom:868.320000px;}
.y14_c01038{bottom:869.040000px;}
.y17_c01038{bottom:869.760000px;}
.y10_c01038{bottom:907.920000px;}
.y11_c01038{bottom:908.640000px;}
.ye_c01038{bottom:910.080000px;}
.y3a_c01038{bottom:910.800000px;}
.yf_c01038{bottom:912.240000px;}
.y3b_c01038{bottom:912.960000px;}
.yd_c01038{bottom:951.120000px;}
.yb_c01038{bottom:953.280000px;}
.y38_c01038{bottom:954.000000px;}
.y12_c01038{bottom:954.720000px;}
.yc_c01038{bottom:955.440000px;}
.y39_c01038{bottom:956.160000px;}
.ya_c01038{bottom:995.040000px;}
.y9_c01038{bottom:997.200000px;}
.y4_c01038{bottom:1026.720000px;}
.y2_c01038{bottom:1028.160000px;}
.y7_c01038{bottom:1028.880000px;}
.y8_c01038{bottom:1029.600000px;}
.y3_c01038{bottom:1030.320000px;}
.y5_c01038{bottom:1031.040000px;}
.y6_c01038{bottom:1031.760000px;}
.y1_c01038{bottom:1096.560000px;}
.h12_c01038{height:23.325469px;}
.hd_c01038{height:31.100625px;}
.h10_c01038{height:33.692344px;}
.h8_c01038{height:36.284062px;}
.he_c01038{height:38.875781px;}
.hf_c01038{height:44.059219px;}
.h6_c01038{height:46.650937px;}
.h4_c01038{height:49.242656px;}
.h7_c01038{height:51.834375px;}
.hb_c01038{height:54.426094px;}
.hc_c01038{height:57.017812px;}
.h3_c01038{height:59.609531px;}
.h9_c01038{height:62.201250px;}
.h2_c01038{height:64.792969px;}
.ha_c01038{height:67.384687px;}
.h5_c01038{height:69.976406px;}
.h11_c01038{height:101.077031px;}
.h0_c01038{height:1141.200000px;}
.h1_c01038{height:1141.500000px;}
.w1_c01038{width:807.000000px;}
.w0_c01038{width:807.120000px;}
.x0_c01038{left:0.000000px;}
.x2_c01038{left:105.840000px;}
.x10_c01038{left:149.040000px;}
.x3_c01038{left:180.000000px;}
.xd_c01038{left:181.440000px;}
.x26_c01038{left:192.240000px;}
.x27_c01038{left:222.480000px;}
.x4_c01038{left:223.920000px;}
.x16_c01038{left:234.000000px;}
.x2c_c01038{left:266.400000px;}
.xe_c01038{left:267.840000px;}
.x13_c01038{left:276.480000px;}
.x29_c01038{left:277.920000px;}
.x1d_c01038{left:288.720000px;}
.x1b_c01038{left:308.880000px;}
.x2d_c01038{left:311.040000px;}
.x17_c01038{left:320.400000px;}
.x14_c01038{left:321.840000px;}
.x5_c01038{left:331.920000px;}
.x18_c01038{left:342.720000px;}
.x15_c01038{left:363.600000px;}
.x1c_c01038{left:365.040000px;}
.x19_c01038{left:375.120000px;}
.x6_c01038{left:385.200000px;}
.x11_c01038{left:417.600000px;}
.xf_c01038{left:419.040000px;}
.x7_c01038{left:430.560000px;}
.x1e_c01038{left:460.800000px;}
.x12_c01038{left:462.240000px;}
.x1a_c01038{left:483.120000px;}
.x1f_c01038{left:515.520000px;}
.x8_c01038{left:516.960000px;}
.x9_c01038{left:581.760000px;}
.xa_c01038{left:614.880000px;}
.xb_c01038{left:635.760000px;}
.x2b_c01038{left:646.560000px;}
.x2f_c01038{left:667.440000px;}
.x23_c01038{left:668.880000px;}
.x20_c01038{left:670.320000px;}
.x25_c01038{left:701.280000px;}
.x1_c01038{left:702.720000px;}
.x2e_c01038{left:711.360000px;}
.x24_c01038{left:734.400000px;}
.x2a_c01038{left:743.040000px;}
.x21_c01038{left:744.480000px;}
.xc_c01038{left:745.920000px;}
.x28_c01038{left:764.640000px;}
.x22_c01038{left:766.080000px;}
@media print{
.v2_c01038{vertical-align:-2.560000pt;}
.v0_c01038{vertical-align:0.000000pt;}
.v1_c01038{vertical-align:2.560000pt;}
.ls1_c01038{letter-spacing:0.000000pt;}
.ls0_c01038{letter-spacing:86.925440pt;}
.ws1_c01038{word-spacing:-3.486933pt;}
.ws2_c01038{word-spacing:0.000000pt;}
.ws0_c01038{word-spacing:639.921280pt;}
.fs10_c01038{font-size:23.040000pt;}
.fsb_c01038{font-size:30.720000pt;}
.fse_c01038{font-size:33.280000pt;}
.fs6_c01038{font-size:35.840000pt;}
.fsc_c01038{font-size:38.400000pt;}
.fsd_c01038{font-size:43.520000pt;}
.fs4_c01038{font-size:46.080000pt;}
.fs2_c01038{font-size:48.640000pt;}
.fs5_c01038{font-size:51.200000pt;}
.fs9_c01038{font-size:53.760000pt;}
.fsa_c01038{font-size:56.320000pt;}
.fs1_c01038{font-size:58.880000pt;}
.fs7_c01038{font-size:61.440000pt;}
.fs0_c01038{font-size:64.000000pt;}
.fs8_c01038{font-size:66.560000pt;}
.fs3_c01038{font-size:69.120000pt;}
.fsf_c01038{font-size:99.840000pt;}
.y0_c01038{bottom:0.000000pt;}
.y79_c01038{bottom:51.200000pt;}
.y78_c01038{bottom:51.840000pt;}
.y7b_c01038{bottom:52.480000pt;}
.y7a_c01038{bottom:53.120000pt;}
.y77_c01038{bottom:54.400000pt;}
.y74_c01038{bottom:90.240000pt;}
.y76_c01038{bottom:90.880000pt;}
.y73_c01038{bottom:91.520000pt;}
.y75_c01038{bottom:92.160000pt;}
.y72_c01038{bottom:93.440000pt;}
.y6f_c01038{bottom:128.640000pt;}
.y71_c01038{bottom:129.280000pt;}
.y70_c01038{bottom:129.920000pt;}
.y6d_c01038{bottom:130.560000pt;}
.y6b_c01038{bottom:131.200000pt;}
.y6c_c01038{bottom:131.840000pt;}
.y6e_c01038{bottom:132.480000pt;}
.y68_c01038{bottom:167.040000pt;}
.y6a_c01038{bottom:167.680000pt;}
.y69_c01038{bottom:168.320000pt;}
.y66_c01038{bottom:169.600000pt;}
.y67_c01038{bottom:170.240000pt;}
.y63_c01038{bottom:204.800000pt;}
.y64_c01038{bottom:206.080000pt;}
.y61_c01038{bottom:207.360000pt;}
.y62_c01038{bottom:208.000000pt;}
.y65_c01038{bottom:208.640000pt;}
.y5d_c01038{bottom:242.560000pt;}
.y5e_c01038{bottom:243.200000pt;}
.y5f_c01038{bottom:244.480000pt;}
.y5b_c01038{bottom:245.120000pt;}
.y60_c01038{bottom:246.400000pt;}
.y5c_c01038{bottom:247.040000pt;}
.y5a_c01038{bottom:280.960000pt;}
.y58_c01038{bottom:282.880000pt;}
.y59_c01038{bottom:284.800000pt;}
.y55_c01038{bottom:319.360000pt;}
.y56_c01038{bottom:320.640000pt;}
.y57_c01038{bottom:321.280000pt;}
.y53_c01038{bottom:321.920000pt;}
.y54_c01038{bottom:322.560000pt;}
.y51_c01038{bottom:357.120000pt;}
.y52_c01038{bottom:359.040000pt;}
.y4e_c01038{bottom:359.680000pt;}
.y50_c01038{bottom:360.320000pt;}
.y4f_c01038{bottom:360.960000pt;}
.y4a_c01038{bottom:395.520000pt;}
.y4d_c01038{bottom:396.160000pt;}
.y48_c01038{bottom:396.800000pt;}
.y4b_c01038{bottom:397.440000pt;}
.y4c_c01038{bottom:398.720000pt;}
.y49_c01038{bottom:400.000000pt;}
.y47_c01038{bottom:434.560000pt;}
.y45_c01038{bottom:436.480000pt;}
.y46_c01038{bottom:437.760000pt;}
.y36_c01038{bottom:462.720000pt;}
.y34_c01038{bottom:464.640000pt;}
.y33_c01038{bottom:465.280000pt;}
.y44_c01038{bottom:465.920000pt;}
.y37_c01038{bottom:466.560000pt;}
.y35_c01038{bottom:467.200000pt;}
.y31_c01038{bottom:501.120000pt;}
.y32_c01038{bottom:503.040000pt;}
.y2f_c01038{bottom:503.680000pt;}
.y30_c01038{bottom:504.960000pt;}
.y43_c01038{bottom:505.600000pt;}
.y2e_c01038{bottom:532.480000pt;}
.y2b_c01038{bottom:540.160000pt;}
.y2a_c01038{bottom:541.440000pt;}
.y42_c01038{bottom:542.080000pt;}
.y2c_c01038{bottom:542.720000pt;}
.y2d_c01038{bottom:543.360000pt;}
.y26_c01038{bottom:577.920000pt;}
.y28_c01038{bottom:578.560000pt;}
.y25_c01038{bottom:579.840000pt;}
.y29_c01038{bottom:580.480000pt;}
.y41_c01038{bottom:581.120000pt;}
.y27_c01038{bottom:581.760000pt;}
.y24_c01038{bottom:616.960000pt;}
.y21_c01038{bottom:618.240000pt;}
.y22_c01038{bottom:618.880000pt;}
.y23_c01038{bottom:620.160000pt;}
.y40_c01038{bottom:620.800000pt;}
.y20_c01038{bottom:654.720000pt;}
.y1e_c01038{bottom:656.640000pt;}
.y3f_c01038{bottom:657.280000pt;}
.y1f_c01038{bottom:657.920000pt;}
.y1d_c01038{bottom:693.120000pt;}
.y1b_c01038{bottom:694.400000pt;}
.y19_c01038{bottom:695.040000pt;}
.y1c_c01038{bottom:695.680000pt;}
.y1a_c01038{bottom:696.320000pt;}
.y3e_c01038{bottom:732.800000pt;}
.y3d_c01038{bottom:733.440000pt;}
.y15_c01038{bottom:768.640000pt;}
.y18_c01038{bottom:769.920000pt;}
.y16_c01038{bottom:770.560000pt;}
.y3c_c01038{bottom:771.200000pt;}
.y13_c01038{bottom:771.840000pt;}
.y14_c01038{bottom:772.480000pt;}
.y17_c01038{bottom:773.120000pt;}
.y10_c01038{bottom:807.040000pt;}
.y11_c01038{bottom:807.680000pt;}
.ye_c01038{bottom:808.960000pt;}
.y3a_c01038{bottom:809.600000pt;}
.yf_c01038{bottom:810.880000pt;}
.y3b_c01038{bottom:811.520000pt;}
.yd_c01038{bottom:845.440000pt;}
.yb_c01038{bottom:847.360000pt;}
.y38_c01038{bottom:848.000000pt;}
.y12_c01038{bottom:848.640000pt;}
.yc_c01038{bottom:849.280000pt;}
.y39_c01038{bottom:849.920000pt;}
.ya_c01038{bottom:884.480000pt;}
.y9_c01038{bottom:886.400000pt;}
.y4_c01038{bottom:912.640000pt;}
.y2_c01038{bottom:913.920000pt;}
.y7_c01038{bottom:914.560000pt;}
.y8_c01038{bottom:915.200000pt;}
.y3_c01038{bottom:915.840000pt;}
.y5_c01038{bottom:916.480000pt;}
.y6_c01038{bottom:917.120000pt;}
.y1_c01038{bottom:974.720000pt;}
.h12_c01038{height:20.733750pt;}
.hd_c01038{height:27.645000pt;}
.h10_c01038{height:29.948750pt;}
.h8_c01038{height:32.252500pt;}
.he_c01038{height:34.556250pt;}
.hf_c01038{height:39.163750pt;}
.h6_c01038{height:41.467500pt;}
.h4_c01038{height:43.771250pt;}
.h7_c01038{height:46.075000pt;}
.hb_c01038{height:48.378750pt;}
.hc_c01038{height:50.682500pt;}
.h3_c01038{height:52.986250pt;}
.h9_c01038{height:55.290000pt;}
.h2_c01038{height:57.593750pt;}
.ha_c01038{height:59.897500pt;}
.h5_c01038{height:62.201250pt;}
.h11_c01038{height:89.846250pt;}
.h0_c01038{height:1014.400000pt;}
.h1_c01038{height:1014.666667pt;}
.w1_c01038{width:717.333333pt;}
.w0_c01038{width:717.440000pt;}
.x0_c01038{left:0.000000pt;}
.x2_c01038{left:94.080000pt;}
.x10_c01038{left:132.480000pt;}
.x3_c01038{left:160.000000pt;}
.xd_c01038{left:161.280000pt;}
.x26_c01038{left:170.880000pt;}
.x27_c01038{left:197.760000pt;}
.x4_c01038{left:199.040000pt;}
.x16_c01038{left:208.000000pt;}
.x2c_c01038{left:236.800000pt;}
.xe_c01038{left:238.080000pt;}
.x13_c01038{left:245.760000pt;}
.x29_c01038{left:247.040000pt;}
.x1d_c01038{left:256.640000pt;}
.x1b_c01038{left:274.560000pt;}
.x2d_c01038{left:276.480000pt;}
.x17_c01038{left:284.800000pt;}
.x14_c01038{left:286.080000pt;}
.x5_c01038{left:295.040000pt;}
.x18_c01038{left:304.640000pt;}
.x15_c01038{left:323.200000pt;}
.x1c_c01038{left:324.480000pt;}
.x19_c01038{left:333.440000pt;}
.x6_c01038{left:342.400000pt;}
.x11_c01038{left:371.200000pt;}
.xf_c01038{left:372.480000pt;}
.x7_c01038{left:382.720000pt;}
.x1e_c01038{left:409.600000pt;}
.x12_c01038{left:410.880000pt;}
.x1a_c01038{left:429.440000pt;}
.x1f_c01038{left:458.240000pt;}
.x8_c01038{left:459.520000pt;}
.x9_c01038{left:517.120000pt;}
.xa_c01038{left:546.560000pt;}
.xb_c01038{left:565.120000pt;}
.x2b_c01038{left:574.720000pt;}
.x2f_c01038{left:593.280000pt;}
.x23_c01038{left:594.560000pt;}
.x20_c01038{left:595.840000pt;}
.x25_c01038{left:623.360000pt;}
.x1_c01038{left:624.640000pt;}
.x2e_c01038{left:632.320000pt;}
.x24_c01038{left:652.800000pt;}
.x2a_c01038{left:660.480000pt;}
.x21_c01038{left:661.760000pt;}
.xc_c01038{left:663.040000pt;}
.x28_c01038{left:679.680000pt;}
.x22_c01038{left:680.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_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_15b01f84266c325eeb048fb6.woff2')format("woff");}.ff1_c01039{font-family:ff1_c01039;line-height:1.109863;font-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_c01039{transform:matrix(0.179600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179600,0.000000,0.000000,0.250000,0,0);}
.m5_c01039{transform:matrix(0.209950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209950,0.000000,0.000000,0.250000,0,0);}
.m37_c01039{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m23_c01039{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m29_c01039{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m39_c01039{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m24_c01039{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m1_c01039{transform:matrix(0.248800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248800,0.000000,0.000000,0.250000,0,0);}
.m27_c01039{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m1f_c01039{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);}
.m32_c01039{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01039{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.me_c01039{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_c01039{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m21_c01039{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_c01039{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m19_c01039{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01039{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m26_c01039{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m18_c01039{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m12_c01039{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mb_c01039{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01039{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01039{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m6_c01039{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m15_c01039{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01039{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m11_c01039{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01039{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01039{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01039{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m0_c01039{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mc_c01039{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.ma_c01039{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01039{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m7_c01039{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m4_c01039{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m8_c01039{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);}
.m30_c01039{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);}
.m2_c01039{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);}
.m2a_c01039{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01039{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);}
.m14_c01039{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);}
.m9_c01039{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);}
.m34_c01039{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m31_c01039{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m35_c01039{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m38_c01039{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01039{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m10_c01039{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m28_c01039{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);}
.m2f_c01039{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);}
.m25_c01039{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.md_c01039{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);}
.m13_c01039{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);}
.m3_c01039{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m36_c01039{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m20_c01039{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.v1_c01039{vertical-align:-2.880000px;}
.v0_c01039{vertical-align:0.000000px;}
.v2_c01039{vertical-align:2.880000px;}
.ls1_c01039{letter-spacing:0.000000px;}
.ls0_c01039{letter-spacing:90.638400px;}
.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;}
}
.ws1_c01039{word-spacing:0.000000px;}
.ws0_c01039{word-spacing:45.412560px;}
.fc0_c01039{color:transparent;}
.fsa_c01039{font-size:40.320000px;}
.fse_c01039{font-size:46.080000px;}
.fs2_c01039{font-size:48.960000px;}
.fs3_c01039{font-size:51.840000px;}
.fs9_c01039{font-size:54.720000px;}
.fs5_c01039{font-size:57.600000px;}
.fs8_c01039{font-size:60.480000px;}
.fsc_c01039{font-size:63.360000px;}
.fs6_c01039{font-size:66.240000px;}
.fs0_c01039{font-size:69.120000px;}
.fsb_c01039{font-size:72.000000px;}
.fs7_c01039{font-size:74.880000px;}
.fs1_c01039{font-size:77.760000px;}
.fs4_c01039{font-size:103.680000px;}
.fsd_c01039{font-size:115.200000px;}
.y0_c01039{bottom:0.000000px;}
.y5d_c01039{bottom:48.960000px;}
.y5c_c01039{bottom:49.680000px;}
.y7b_c01039{bottom:50.400000px;}
.y7a_c01039{bottom:51.840000px;}
.y5b_c01039{bottom:53.280000px;}
.y5a_c01039{bottom:92.160000px;}
.y75_c01039{bottom:92.880000px;}
.y79_c01039{bottom:94.320000px;}
.y58_c01039{bottom:95.040000px;}
.y74_c01039{bottom:95.760000px;}
.y59_c01039{bottom:96.480000px;}
.y78_c01039{bottom:134.640000px;}
.y57_c01039{bottom:135.360000px;}
.y73_c01039{bottom:136.800000px;}
.y77_c01039{bottom:137.520000px;}
.y72_c01039{bottom:138.240000px;}
.y56_c01039{bottom:178.560000px;}
.y71_c01039{bottom:179.280000px;}
.y76_c01039{bottom:180.000000px;}
.y55_c01039{bottom:180.720000px;}
.y70_c01039{bottom:181.440000px;}
.y6f_c01039{bottom:221.040000px;}
.y54_c01039{bottom:221.760000px;}
.y6e_c01039{bottom:222.480000px;}
.y53_c01039{bottom:223.920000px;}
.y6d_c01039{bottom:224.640000px;}
.y52_c01039{bottom:264.240000px;}
.y6b_c01039{bottom:265.680000px;}
.y51_c01039{bottom:266.400000px;}
.y6c_c01039{bottom:267.120000px;}
.y6a_c01039{bottom:267.840000px;}
.y50_c01039{bottom:307.440000px;}
.y69_c01039{bottom:308.160000px;}
.y68_c01039{bottom:308.880000px;}
.y63_c01039{bottom:309.600000px;}
.y4f_c01039{bottom:311.040000px;}
.y62_c01039{bottom:311.760000px;}
.y4e_c01039{bottom:350.640000px;}
.y67_c01039{bottom:351.360000px;}
.y61_c01039{bottom:352.080000px;}
.y4d_c01039{bottom:353.520000px;}
.y66_c01039{bottom:354.240000px;}
.y60_c01039{bottom:354.960000px;}
.y4c_c01039{bottom:393.840000px;}
.y64_c01039{bottom:394.560000px;}
.y65_c01039{bottom:395.280000px;}
.y5f_c01039{bottom:396.000000px;}
.y4b_c01039{bottom:397.440000px;}
.y5e_c01039{bottom:398.160000px;}
.y4a_c01039{bottom:436.320000px;}
.y48_c01039{bottom:437.760000px;}
.y49_c01039{bottom:438.480000px;}
.y47_c01039{bottom:439.200000px;}
.y46_c01039{bottom:440.640000px;}
.y28_c01039{bottom:479.520000px;}
.y27_c01039{bottom:481.680000px;}
.y43_c01039{bottom:482.400000px;}
.y44_c01039{bottom:483.840000px;}
.y26_c01039{bottom:523.440000px;}
.y45_c01039{bottom:524.160000px;}
.y25_c01039{bottom:524.880000px;}
.y42_c01039{bottom:527.040000px;}
.y24_c01039{bottom:565.920000px;}
.y41_c01039{bottom:567.360000px;}
.y23_c01039{bottom:568.080000px;}
.y40_c01039{bottom:570.240000px;}
.y22_c01039{bottom:608.400000px;}
.y3f_c01039{bottom:609.840000px;}
.y21_c01039{bottom:610.560000px;}
.y3e_c01039{bottom:612.720000px;}
.y20_c01039{bottom:651.600000px;}
.y3d_c01039{bottom:653.040000px;}
.y1f_c01039{bottom:653.760000px;}
.y3c_c01039{bottom:655.200000px;}
.y1e_c01039{bottom:694.080000px;}
.y3b_c01039{bottom:695.520000px;}
.y1d_c01039{bottom:696.240000px;}
.y39_c01039{bottom:697.680000px;}
.y3a_c01039{bottom:699.120000px;}
.y1c_c01039{bottom:737.280000px;}
.y37_c01039{bottom:738.720000px;}
.y1b_c01039{bottom:739.440000px;}
.y36_c01039{bottom:740.880000px;}
.y38_c01039{bottom:741.600000px;}
.y1a_c01039{bottom:780.480000px;}
.y35_c01039{bottom:781.920000px;}
.y19_c01039{bottom:782.640000px;}
.y33_c01039{bottom:784.800000px;}
.y34_c01039{bottom:785.520000px;}
.y18_c01039{bottom:823.680000px;}
.y32_c01039{bottom:825.120000px;}
.y17_c01039{bottom:825.840000px;}
.y31_c01039{bottom:828.000000px;}
.y15_c01039{bottom:867.600000px;}
.y14_c01039{bottom:869.040000px;}
.y30_c01039{bottom:869.760000px;}
.y16_c01039{bottom:871.200000px;}
.y2f_c01039{bottom:871.920000px;}
.y13_c01039{bottom:910.080000px;}
.y12_c01039{bottom:912.240000px;}
.y2d_c01039{bottom:912.960000px;}
.y2c_c01039{bottom:913.680000px;}
.y2e_c01039{bottom:915.120000px;}
.ye_c01039{bottom:954.000000px;}
.y11_c01039{bottom:954.720000px;}
.yd_c01039{bottom:955.440000px;}
.yf_c01039{bottom:956.160000px;}
.y10_c01039{bottom:957.600000px;}
.yc_c01039{bottom:990.000000px;}
.y7_c01039{bottom:996.480000px;}
.ya_c01039{bottom:997.200000px;}
.yb_c01039{bottom:997.920000px;}
.y6_c01039{bottom:998.640000px;}
.y2a_c01039{bottom:999.360000px;}
.y2b_c01039{bottom:1000.080000px;}
.y8_c01039{bottom:1000.800000px;}
.y9_c01039{bottom:1001.520000px;}
.y5_c01039{bottom:1033.920000px;}
.y2_c01039{bottom:1039.680000px;}
.y1_c01039{bottom:1041.840000px;}
.y29_c01039{bottom:1042.560000px;}
.y3_c01039{bottom:1044.720000px;}
.y4_c01039{bottom:1045.440000px;}
.hc_c01039{height:36.284062px;}
.h10_c01039{height:41.467500px;}
.h4_c01039{height:44.059219px;}
.h5_c01039{height:46.650937px;}
.hb_c01039{height:49.242656px;}
.h7_c01039{height:51.834375px;}
.ha_c01039{height:54.426094px;}
.he_c01039{height:57.017812px;}
.h8_c01039{height:59.609531px;}
.h2_c01039{height:62.201250px;}
.hd_c01039{height:64.792969px;}
.h9_c01039{height:67.384687px;}
.h3_c01039{height:69.976406px;}
.h6_c01039{height:93.301875px;}
.hf_c01039{height:103.668750px;}
.h1_c01039{height:1149.000000px;}
.h0_c01039{height:1149.120000px;}
.w0_c01039{width:816.480000px;}
.w1_c01039{width:816.750000px;}
.x0_c01039{left:0.000000px;}
.x2b_c01039{left:110.160000px;}
.x1_c01039{left:111.600000px;}
.x2c_c01039{left:184.320000px;}
.x10_c01039{left:185.760000px;}
.x2_c01039{left:187.920000px;}
.x2d_c01039{left:218.880000px;}
.x3_c01039{left:272.160000px;}
.xc_c01039{left:306.720000px;}
.x4_c01039{left:316.800000px;}
.x27_c01039{left:336.960000px;}
.x11_c01039{left:358.560000px;}
.x5_c01039{left:371.520000px;}
.x28_c01039{left:390.240000px;}
.x2a_c01039{left:391.680000px;}
.xd_c01039{left:393.120000px;}
.x2e_c01039{left:412.560000px;}
.x8_c01039{left:414.000000px;}
.x29_c01039{left:435.600000px;}
.xe_c01039{left:445.680000px;}
.x6_c01039{left:457.920000px;}
.xf_c01039{left:489.600000px;}
.x9_c01039{left:491.040000px;}
.xa_c01039{left:533.520000px;}
.xb_c01039{left:544.320000px;}
.x7_c01039{left:588.240000px;}
.x23_c01039{left:597.600000px;}
.x18_c01039{left:599.040000px;}
.x1c_c01039{left:609.120000px;}
.x22_c01039{left:618.480000px;}
.x19_c01039{left:619.920000px;}
.x1d_c01039{left:630.720000px;}
.x21_c01039{left:640.080000px;}
.x1a_c01039{left:642.240000px;}
.x1f_c01039{left:652.320000px;}
.x1e_c01039{left:665.280000px;}
.x24_c01039{left:673.920000px;}
.x12_c01039{left:676.080000px;}
.x20_c01039{left:684.720000px;}
.x1b_c01039{left:707.040000px;}
.x13_c01039{left:708.480000px;}
.x15_c01039{left:718.560000px;}
.x25_c01039{left:749.520000px;}
.x14_c01039{left:750.960000px;}
.x16_c01039{left:762.480000px;}
.x26_c01039{left:771.120000px;}
.x17_c01039{left:781.920000px;}
@media print{
.v1_c01039{vertical-align:-2.560000pt;}
.v0_c01039{vertical-align:0.000000pt;}
.v2_c01039{vertical-align:2.560000pt;}
.ls1_c01039{letter-spacing:0.000000pt;}
.ls0_c01039{letter-spacing:80.567467pt;}
.ws1_c01039{word-spacing:0.000000pt;}
.ws0_c01039{word-spacing:40.366720pt;}
.fsa_c01039{font-size:35.840000pt;}
.fse_c01039{font-size:40.960000pt;}
.fs2_c01039{font-size:43.520000pt;}
.fs3_c01039{font-size:46.080000pt;}
.fs9_c01039{font-size:48.640000pt;}
.fs5_c01039{font-size:51.200000pt;}
.fs8_c01039{font-size:53.760000pt;}
.fsc_c01039{font-size:56.320000pt;}
.fs6_c01039{font-size:58.880000pt;}
.fs0_c01039{font-size:61.440000pt;}
.fsb_c01039{font-size:64.000000pt;}
.fs7_c01039{font-size:66.560000pt;}
.fs1_c01039{font-size:69.120000pt;}
.fs4_c01039{font-size:92.160000pt;}
.fsd_c01039{font-size:102.400000pt;}
.y0_c01039{bottom:0.000000pt;}
.y5d_c01039{bottom:43.520000pt;}
.y5c_c01039{bottom:44.160000pt;}
.y7b_c01039{bottom:44.800000pt;}
.y7a_c01039{bottom:46.080000pt;}
.y5b_c01039{bottom:47.360000pt;}
.y5a_c01039{bottom:81.920000pt;}
.y75_c01039{bottom:82.560000pt;}
.y79_c01039{bottom:83.840000pt;}
.y58_c01039{bottom:84.480000pt;}
.y74_c01039{bottom:85.120000pt;}
.y59_c01039{bottom:85.760000pt;}
.y78_c01039{bottom:119.680000pt;}
.y57_c01039{bottom:120.320000pt;}
.y73_c01039{bottom:121.600000pt;}
.y77_c01039{bottom:122.240000pt;}
.y72_c01039{bottom:122.880000pt;}
.y56_c01039{bottom:158.720000pt;}
.y71_c01039{bottom:159.360000pt;}
.y76_c01039{bottom:160.000000pt;}
.y55_c01039{bottom:160.640000pt;}
.y70_c01039{bottom:161.280000pt;}
.y6f_c01039{bottom:196.480000pt;}
.y54_c01039{bottom:197.120000pt;}
.y6e_c01039{bottom:197.760000pt;}
.y53_c01039{bottom:199.040000pt;}
.y6d_c01039{bottom:199.680000pt;}
.y52_c01039{bottom:234.880000pt;}
.y6b_c01039{bottom:236.160000pt;}
.y51_c01039{bottom:236.800000pt;}
.y6c_c01039{bottom:237.440000pt;}
.y6a_c01039{bottom:238.080000pt;}
.y50_c01039{bottom:273.280000pt;}
.y69_c01039{bottom:273.920000pt;}
.y68_c01039{bottom:274.560000pt;}
.y63_c01039{bottom:275.200000pt;}
.y4f_c01039{bottom:276.480000pt;}
.y62_c01039{bottom:277.120000pt;}
.y4e_c01039{bottom:311.680000pt;}
.y67_c01039{bottom:312.320000pt;}
.y61_c01039{bottom:312.960000pt;}
.y4d_c01039{bottom:314.240000pt;}
.y66_c01039{bottom:314.880000pt;}
.y60_c01039{bottom:315.520000pt;}
.y4c_c01039{bottom:350.080000pt;}
.y64_c01039{bottom:350.720000pt;}
.y65_c01039{bottom:351.360000pt;}
.y5f_c01039{bottom:352.000000pt;}
.y4b_c01039{bottom:353.280000pt;}
.y5e_c01039{bottom:353.920000pt;}
.y4a_c01039{bottom:387.840000pt;}
.y48_c01039{bottom:389.120000pt;}
.y49_c01039{bottom:389.760000pt;}
.y47_c01039{bottom:390.400000pt;}
.y46_c01039{bottom:391.680000pt;}
.y28_c01039{bottom:426.240000pt;}
.y27_c01039{bottom:428.160000pt;}
.y43_c01039{bottom:428.800000pt;}
.y44_c01039{bottom:430.080000pt;}
.y26_c01039{bottom:465.280000pt;}
.y45_c01039{bottom:465.920000pt;}
.y25_c01039{bottom:466.560000pt;}
.y42_c01039{bottom:468.480000pt;}
.y24_c01039{bottom:503.040000pt;}
.y41_c01039{bottom:504.320000pt;}
.y23_c01039{bottom:504.960000pt;}
.y40_c01039{bottom:506.880000pt;}
.y22_c01039{bottom:540.800000pt;}
.y3f_c01039{bottom:542.080000pt;}
.y21_c01039{bottom:542.720000pt;}
.y3e_c01039{bottom:544.640000pt;}
.y20_c01039{bottom:579.200000pt;}
.y3d_c01039{bottom:580.480000pt;}
.y1f_c01039{bottom:581.120000pt;}
.y3c_c01039{bottom:582.400000pt;}
.y1e_c01039{bottom:616.960000pt;}
.y3b_c01039{bottom:618.240000pt;}
.y1d_c01039{bottom:618.880000pt;}
.y39_c01039{bottom:620.160000pt;}
.y3a_c01039{bottom:621.440000pt;}
.y1c_c01039{bottom:655.360000pt;}
.y37_c01039{bottom:656.640000pt;}
.y1b_c01039{bottom:657.280000pt;}
.y36_c01039{bottom:658.560000pt;}
.y38_c01039{bottom:659.200000pt;}
.y1a_c01039{bottom:693.760000pt;}
.y35_c01039{bottom:695.040000pt;}
.y19_c01039{bottom:695.680000pt;}
.y33_c01039{bottom:697.600000pt;}
.y34_c01039{bottom:698.240000pt;}
.y18_c01039{bottom:732.160000pt;}
.y32_c01039{bottom:733.440000pt;}
.y17_c01039{bottom:734.080000pt;}
.y31_c01039{bottom:736.000000pt;}
.y15_c01039{bottom:771.200000pt;}
.y14_c01039{bottom:772.480000pt;}
.y30_c01039{bottom:773.120000pt;}
.y16_c01039{bottom:774.400000pt;}
.y2f_c01039{bottom:775.040000pt;}
.y13_c01039{bottom:808.960000pt;}
.y12_c01039{bottom:810.880000pt;}
.y2d_c01039{bottom:811.520000pt;}
.y2c_c01039{bottom:812.160000pt;}
.y2e_c01039{bottom:813.440000pt;}
.ye_c01039{bottom:848.000000pt;}
.y11_c01039{bottom:848.640000pt;}
.yd_c01039{bottom:849.280000pt;}
.yf_c01039{bottom:849.920000pt;}
.y10_c01039{bottom:851.200000pt;}
.yc_c01039{bottom:880.000000pt;}
.y7_c01039{bottom:885.760000pt;}
.ya_c01039{bottom:886.400000pt;}
.yb_c01039{bottom:887.040000pt;}
.y6_c01039{bottom:887.680000pt;}
.y2a_c01039{bottom:888.320000pt;}
.y2b_c01039{bottom:888.960000pt;}
.y8_c01039{bottom:889.600000pt;}
.y9_c01039{bottom:890.240000pt;}
.y5_c01039{bottom:919.040000pt;}
.y2_c01039{bottom:924.160000pt;}
.y1_c01039{bottom:926.080000pt;}
.y29_c01039{bottom:926.720000pt;}
.y3_c01039{bottom:928.640000pt;}
.y4_c01039{bottom:929.280000pt;}
.hc_c01039{height:32.252500pt;}
.h10_c01039{height:36.860000pt;}
.h4_c01039{height:39.163750pt;}
.h5_c01039{height:41.467500pt;}
.hb_c01039{height:43.771250pt;}
.h7_c01039{height:46.075000pt;}
.ha_c01039{height:48.378750pt;}
.he_c01039{height:50.682500pt;}
.h8_c01039{height:52.986250pt;}
.h2_c01039{height:55.290000pt;}
.hd_c01039{height:57.593750pt;}
.h9_c01039{height:59.897500pt;}
.h3_c01039{height:62.201250pt;}
.h6_c01039{height:82.935000pt;}
.hf_c01039{height:92.150000pt;}
.h1_c01039{height:1021.333333pt;}
.h0_c01039{height:1021.440000pt;}
.w0_c01039{width:725.760000pt;}
.w1_c01039{width:726.000000pt;}
.x0_c01039{left:0.000000pt;}
.x2b_c01039{left:97.920000pt;}
.x1_c01039{left:99.200000pt;}
.x2c_c01039{left:163.840000pt;}
.x10_c01039{left:165.120000pt;}
.x2_c01039{left:167.040000pt;}
.x2d_c01039{left:194.560000pt;}
.x3_c01039{left:241.920000pt;}
.xc_c01039{left:272.640000pt;}
.x4_c01039{left:281.600000pt;}
.x27_c01039{left:299.520000pt;}
.x11_c01039{left:318.720000pt;}
.x5_c01039{left:330.240000pt;}
.x28_c01039{left:346.880000pt;}
.x2a_c01039{left:348.160000pt;}
.xd_c01039{left:349.440000pt;}
.x2e_c01039{left:366.720000pt;}
.x8_c01039{left:368.000000pt;}
.x29_c01039{left:387.200000pt;}
.xe_c01039{left:396.160000pt;}
.x6_c01039{left:407.040000pt;}
.xf_c01039{left:435.200000pt;}
.x9_c01039{left:436.480000pt;}
.xa_c01039{left:474.240000pt;}
.xb_c01039{left:483.840000pt;}
.x7_c01039{left:522.880000pt;}
.x23_c01039{left:531.200000pt;}
.x18_c01039{left:532.480000pt;}
.x1c_c01039{left:541.440000pt;}
.x22_c01039{left:549.760000pt;}
.x19_c01039{left:551.040000pt;}
.x1d_c01039{left:560.640000pt;}
.x21_c01039{left:568.960000pt;}
.x1a_c01039{left:570.880000pt;}
.x1f_c01039{left:579.840000pt;}
.x1e_c01039{left:591.360000pt;}
.x24_c01039{left:599.040000pt;}
.x12_c01039{left:600.960000pt;}
.x20_c01039{left:608.640000pt;}
.x1b_c01039{left:628.480000pt;}
.x13_c01039{left:629.760000pt;}
.x15_c01039{left:638.720000pt;}
.x25_c01039{left:666.240000pt;}
.x14_c01039{left:667.520000pt;}
.x16_c01039{left:677.760000pt;}
.x26_c01039{left:685.440000pt;}
.x17_c01039{left:695.040000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2c341cec5214940be00dd257.woff2')format("woff");}.ff1_c01040{font-family:ff1_c01040;line-height:1.109863;font-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_c01040{transform:matrix(0.179550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179550,0.000000,0.000000,0.250000,0,0);}
.m2a_c01040{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m11_c01040{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m33_c01040{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m1f_c01040{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m27_c01040{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m32_c01040{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m15_c01040{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m17_c01040{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m2_c01040{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m24_c01040{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m19_c01040{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.me_c01040{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_c01040{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m4_c01040{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m34_c01040{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m6_c01040{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m9_c01040{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m20_c01040{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m8_c01040{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m3_c01040{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m5_c01040{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m29_c01040{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01040{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m22_c01040{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01040{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m36_c01040{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.md_c01040{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.ma_c01040{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mf_c01040{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m0_c01040{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m10_c01040{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m14_c01040{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m7_c01040{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);}
.m30_c01040{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01040{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.mc_c01040{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01040{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m18_c01040{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m1_c01040{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01040{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);}
.m2b_c01040{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);}
.m37_c01040{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m31_c01040{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01040{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m13_c01040{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m26_c01040{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01040{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_c01040{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m25_c01040{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01040{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01040{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m12_c01040{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);}
.m28_c01040{transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);}
.m23_c01040{transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);}
.m35_c01040{transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);}
.v1_c01040{vertical-align:-2.880000px;}
.v0_c01040{vertical-align:0.000000px;}
.v3_c01040{vertical-align:2.880000px;}
.v4_c01040{vertical-align:5.760000px;}
.v2_c01040{vertical-align:28.800000px;}
.ls1_c01040{letter-spacing:0.000000px;}
.ls0_c01040{letter-spacing:149.869680px;}
.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;}
}
.ws1_c01040{word-spacing:-5.470080px;}
.ws6_c01040{word-spacing:0.000000px;}
.ws5_c01040{word-spacing:5.226000px;}
.ws2_c01040{word-spacing:9.212400px;}
.ws4_c01040{word-spacing:11.856000px;}
.ws0_c01040{word-spacing:50.567751px;}
.ws3_c01040{word-spacing:1090.388400px;}
.fc0_c01040{color:transparent;}
.fsd_c01040{font-size:34.560000px;}
.fse_c01040{font-size:37.440000px;}
.fsf_c01040{font-size:43.200000px;}
.fsc_c01040{font-size:46.080000px;}
.fs3_c01040{font-size:48.960000px;}
.fs4_c01040{font-size:51.840000px;}
.fs6_c01040{font-size:54.720000px;}
.fs5_c01040{font-size:57.600000px;}
.fs1_c01040{font-size:60.480000px;}
.fs9_c01040{font-size:63.360000px;}
.fs7_c01040{font-size:66.240000px;}
.fsa_c01040{font-size:69.120000px;}
.fs2_c01040{font-size:72.000000px;}
.fs8_c01040{font-size:74.880000px;}
.fs0_c01040{font-size:77.760000px;}
.fsb_c01040{font-size:100.800000px;}
.y0_c01040{bottom:0.000000px;}
.y7b_c01040{bottom:43.920000px;}
.y7a_c01040{bottom:46.800000px;}
.y7e_c01040{bottom:47.520000px;}
.y7d_c01040{bottom:48.240000px;}
.y7c_c01040{bottom:48.960000px;}
.y76_c01040{bottom:86.400000px;}
.y75_c01040{bottom:88.560000px;}
.y79_c01040{bottom:90.720000px;}
.y78_c01040{bottom:91.440000px;}
.y77_c01040{bottom:92.160000px;}
.y70_c01040{bottom:129.600000px;}
.y6f_c01040{bottom:131.760000px;}
.y72_c01040{bottom:134.640000px;}
.y71_c01040{bottom:135.360000px;}
.y74_c01040{bottom:136.080000px;}
.y73_c01040{bottom:136.800000px;}
.y6a_c01040{bottom:172.080000px;}
.y69_c01040{bottom:174.240000px;}
.y6d_c01040{bottom:177.120000px;}
.y6e_c01040{bottom:177.840000px;}
.y6b_c01040{bottom:178.560000px;}
.y6c_c01040{bottom:179.280000px;}
.y65_c01040{bottom:216.000000px;}
.y64_c01040{bottom:217.440000px;}
.y67_c01040{bottom:219.600000px;}
.y66_c01040{bottom:221.040000px;}
.y68_c01040{bottom:221.760000px;}
.y60_c01040{bottom:258.480000px;}
.y5f_c01040{bottom:259.200000px;}
.y62_c01040{bottom:262.800000px;}
.y63_c01040{bottom:263.520000px;}
.y61_c01040{bottom:264.240000px;}
.y5a_c01040{bottom:300.960000px;}
.y59_c01040{bottom:303.120000px;}
.y5d_c01040{bottom:305.280000px;}
.y5c_c01040{bottom:306.000000px;}
.y5e_c01040{bottom:306.720000px;}
.y5b_c01040{bottom:307.440000px;}
.y55_c01040{bottom:343.440000px;}
.y54_c01040{bottom:344.160000px;}
.y57_c01040{bottom:348.480000px;}
.y58_c01040{bottom:349.200000px;}
.y56_c01040{bottom:349.920000px;}
.y4f_c01040{bottom:385.920000px;}
.y4e_c01040{bottom:388.080000px;}
.y51_c01040{bottom:390.960000px;}
.y52_c01040{bottom:391.680000px;}
.y50_c01040{bottom:392.400000px;}
.y53_c01040{bottom:393.120000px;}
.y49_c01040{bottom:429.120000px;}
.y48_c01040{bottom:430.560000px;}
.y4d_c01040{bottom:434.160000px;}
.y4a_c01040{bottom:435.600000px;}
.y4c_c01040{bottom:436.320000px;}
.y4b_c01040{bottom:437.760000px;}
.y45_c01040{bottom:471.600000px;}
.y44_c01040{bottom:474.480000px;}
.y47_c01040{bottom:477.360000px;}
.y46_c01040{bottom:478.080000px;}
.y41_c01040{bottom:514.800000px;}
.y40_c01040{bottom:517.680000px;}
.y43_c01040{bottom:520.560000px;}
.y42_c01040{bottom:521.280000px;}
.y3d_c01040{bottom:558.000000px;}
.y3c_c01040{bottom:559.440000px;}
.y3e_c01040{bottom:563.760000px;}
.y3f_c01040{bottom:565.200000px;}
.y37_c01040{bottom:601.200000px;}
.y36_c01040{bottom:602.640000px;}
.y39_c01040{bottom:606.960000px;}
.y3b_c01040{bottom:607.680000px;}
.y38_c01040{bottom:608.400000px;}
.y3a_c01040{bottom:609.120000px;}
.y33_c01040{bottom:644.400000px;}
.y31_c01040{bottom:645.120000px;}
.y32_c01040{bottom:645.840000px;}
.y35_c01040{bottom:650.160000px;}
.y34_c01040{bottom:651.600000px;}
.y2c_c01040{bottom:687.600000px;}
.y2a_c01040{bottom:688.320000px;}
.y2e_c01040{bottom:693.360000px;}
.y2f_c01040{bottom:694.080000px;}
.y2d_c01040{bottom:694.800000px;}
.y30_c01040{bottom:696.960000px;}
.y2b_c01040{bottom:702.720000px;}
.y26_c01040{bottom:730.800000px;}
.y25_c01040{bottom:732.240000px;}
.y28_c01040{bottom:736.560000px;}
.y27_c01040{bottom:737.280000px;}
.y29_c01040{bottom:738.000000px;}
.y20_c01040{bottom:774.000000px;}
.y1f_c01040{bottom:774.720000px;}
.y22_c01040{bottom:779.760000px;}
.y21_c01040{bottom:781.200000px;}
.y24_c01040{bottom:781.920000px;}
.y23_c01040{bottom:782.640000px;}
.y1b_c01040{bottom:817.200000px;}
.y1d_c01040{bottom:822.240000px;}
.y1e_c01040{bottom:822.960000px;}
.y1c_c01040{bottom:823.680000px;}
.y18_c01040{bottom:858.960000px;}
.y17_c01040{bottom:860.400000px;}
.y19_c01040{bottom:866.160000px;}
.y1a_c01040{bottom:868.320000px;}
.y13_c01040{bottom:901.440000px;}
.y12_c01040{bottom:903.600000px;}
.y15_c01040{bottom:908.640000px;}
.y14_c01040{bottom:909.360000px;}
.y16_c01040{bottom:911.520000px;}
.ye_c01040{bottom:944.640000px;}
.yd_c01040{bottom:946.080000px;}
.y11_c01040{bottom:951.120000px;}
.y10_c01040{bottom:951.840000px;}
.yf_c01040{bottom:952.560000px;}
.y9_c01040{bottom:987.840000px;}
.y8_c01040{bottom:989.280000px;}
.yb_c01040{bottom:995.040000px;}
.ya_c01040{bottom:996.480000px;}
.yc_c01040{bottom:997.200000px;}
.y3_c01040{bottom:1031.760000px;}
.y2_c01040{bottom:1033.200000px;}
.y6_c01040{bottom:1037.520000px;}
.y5_c01040{bottom:1038.240000px;}
.y7_c01040{bottom:1038.960000px;}
.y4_c01040{bottom:1039.680000px;}
.y1_c01040{bottom:1102.320000px;}
.h10_c01040{height:31.100625px;}
.h11_c01040{height:33.692344px;}
.h13_c01040{height:38.875781px;}
.hf_c01040{height:41.467500px;}
.h5_c01040{height:44.059219px;}
.h6_c01040{height:46.650937px;}
.h8_c01040{height:49.242656px;}
.h7_c01040{height:51.834375px;}
.h14_c01040{height:52.122656px;}
.h3_c01040{height:54.426094px;}
.hb_c01040{height:57.017812px;}
.h15_c01040{height:57.594375px;}
.h9_c01040{height:59.609531px;}
.hd_c01040{height:61.912969px;}
.hc_c01040{height:62.201250px;}
.h4_c01040{height:64.792969px;}
.ha_c01040{height:67.384687px;}
.h2_c01040{height:69.976406px;}
.h12_c01040{height:72.859219px;}
.he_c01040{height:90.710156px;}
.h1_c01040{height:1151.250000px;}
.h0_c01040{height:1151.280000px;}
.w0_c01040{width:830.880000px;}
.w1_c01040{width:831.000000px;}
.x0_c01040{left:0.000000px;}
.x2_c01040{left:108.000000px;}
.xa_c01040{left:109.440000px;}
.x13_c01040{left:110.880000px;}
.x1b_c01040{left:112.320000px;}
.x2a_c01040{left:114.480000px;}
.x35_c01040{left:115.920000px;}
.x18_c01040{left:155.520000px;}
.x14_c01040{left:175.680000px;}
.x3_c01040{left:182.880000px;}
.x10_c01040{left:184.320000px;}
.x19_c01040{left:185.760000px;}
.x15_c01040{left:187.200000px;}
.x2d_c01040{left:188.640000px;}
.x36_c01040{left:190.080000px;}
.x4_c01040{left:596.160000px;}
.xb_c01040{left:597.600000px;}
.x1c_c01040{left:599.040000px;}
.x24_c01040{left:600.480000px;}
.x2e_c01040{left:601.920000px;}
.x33_c01040{left:603.360000px;}
.x5_c01040{left:617.760000px;}
.xd_c01040{left:619.200000px;}
.x20_c01040{left:621.360000px;}
.x2f_c01040{left:623.520000px;}
.x3a_c01040{left:624.960000px;}
.x9_c01040{left:638.640000px;}
.x1a_c01040{left:640.080000px;}
.x1d_c01040{left:641.520000px;}
.x2b_c01040{left:643.680000px;}
.x3b_c01040{left:645.840000px;}
.xe_c01040{left:650.880000px;}
.x1e_c01040{left:652.320000px;}
.x25_c01040{left:653.760000px;}
.x31_c01040{left:656.640000px;}
.x1f_c01040{left:665.280000px;}
.x26_c01040{left:667.440000px;}
.x32_c01040{left:668.880000px;}
.x6_c01040{left:671.760000px;}
.x11_c01040{left:673.920000px;}
.x21_c01040{left:676.080000px;}
.x34_c01040{left:678.960000px;}
.x27_c01040{left:698.400000px;}
.x7_c01040{left:704.880000px;}
.x1_c01040{left:706.320000px;}
.x22_c01040{left:708.480000px;}
.x2c_c01040{left:710.640000px;}
.x37_c01040{left:712.080000px;}
.xf_c01040{left:738.720000px;}
.x8_c01040{left:748.080000px;}
.x12_c01040{left:749.520000px;}
.x16_c01040{left:750.960000px;}
.x23_c01040{left:752.400000px;}
.x30_c01040{left:754.560000px;}
.x38_c01040{left:756.000000px;}
.xc_c01040{left:768.960000px;}
.x17_c01040{left:771.120000px;}
.x28_c01040{left:774.000000px;}
.x39_c01040{left:775.440000px;}
.x29_c01040{left:794.880000px;}
@media print{
.v1_c01040{vertical-align:-2.560000pt;}
.v0_c01040{vertical-align:0.000000pt;}
.v3_c01040{vertical-align:2.560000pt;}
.v4_c01040{vertical-align:5.120000pt;}
.v2_c01040{vertical-align:25.600000pt;}
.ls1_c01040{letter-spacing:0.000000pt;}
.ls0_c01040{letter-spacing:133.217493pt;}
.ws1_c01040{word-spacing:-4.862293pt;}
.ws6_c01040{word-spacing:0.000000pt;}
.ws5_c01040{word-spacing:4.645333pt;}
.ws2_c01040{word-spacing:8.188800pt;}
.ws4_c01040{word-spacing:10.538667pt;}
.ws0_c01040{word-spacing:44.949112pt;}
.ws3_c01040{word-spacing:969.234133pt;}
.fsd_c01040{font-size:30.720000pt;}
.fse_c01040{font-size:33.280000pt;}
.fsf_c01040{font-size:38.400000pt;}
.fsc_c01040{font-size:40.960000pt;}
.fs3_c01040{font-size:43.520000pt;}
.fs4_c01040{font-size:46.080000pt;}
.fs6_c01040{font-size:48.640000pt;}
.fs5_c01040{font-size:51.200000pt;}
.fs1_c01040{font-size:53.760000pt;}
.fs9_c01040{font-size:56.320000pt;}
.fs7_c01040{font-size:58.880000pt;}
.fsa_c01040{font-size:61.440000pt;}
.fs2_c01040{font-size:64.000000pt;}
.fs8_c01040{font-size:66.560000pt;}
.fs0_c01040{font-size:69.120000pt;}
.fsb_c01040{font-size:89.600000pt;}
.y0_c01040{bottom:0.000000pt;}
.y7b_c01040{bottom:39.040000pt;}
.y7a_c01040{bottom:41.600000pt;}
.y7e_c01040{bottom:42.240000pt;}
.y7d_c01040{bottom:42.880000pt;}
.y7c_c01040{bottom:43.520000pt;}
.y76_c01040{bottom:76.800000pt;}
.y75_c01040{bottom:78.720000pt;}
.y79_c01040{bottom:80.640000pt;}
.y78_c01040{bottom:81.280000pt;}
.y77_c01040{bottom:81.920000pt;}
.y70_c01040{bottom:115.200000pt;}
.y6f_c01040{bottom:117.120000pt;}
.y72_c01040{bottom:119.680000pt;}
.y71_c01040{bottom:120.320000pt;}
.y74_c01040{bottom:120.960000pt;}
.y73_c01040{bottom:121.600000pt;}
.y6a_c01040{bottom:152.960000pt;}
.y69_c01040{bottom:154.880000pt;}
.y6d_c01040{bottom:157.440000pt;}
.y6e_c01040{bottom:158.080000pt;}
.y6b_c01040{bottom:158.720000pt;}
.y6c_c01040{bottom:159.360000pt;}
.y65_c01040{bottom:192.000000pt;}
.y64_c01040{bottom:193.280000pt;}
.y67_c01040{bottom:195.200000pt;}
.y66_c01040{bottom:196.480000pt;}
.y68_c01040{bottom:197.120000pt;}
.y60_c01040{bottom:229.760000pt;}
.y5f_c01040{bottom:230.400000pt;}
.y62_c01040{bottom:233.600000pt;}
.y63_c01040{bottom:234.240000pt;}
.y61_c01040{bottom:234.880000pt;}
.y5a_c01040{bottom:267.520000pt;}
.y59_c01040{bottom:269.440000pt;}
.y5d_c01040{bottom:271.360000pt;}
.y5c_c01040{bottom:272.000000pt;}
.y5e_c01040{bottom:272.640000pt;}
.y5b_c01040{bottom:273.280000pt;}
.y55_c01040{bottom:305.280000pt;}
.y54_c01040{bottom:305.920000pt;}
.y57_c01040{bottom:309.760000pt;}
.y58_c01040{bottom:310.400000pt;}
.y56_c01040{bottom:311.040000pt;}
.y4f_c01040{bottom:343.040000pt;}
.y4e_c01040{bottom:344.960000pt;}
.y51_c01040{bottom:347.520000pt;}
.y52_c01040{bottom:348.160000pt;}
.y50_c01040{bottom:348.800000pt;}
.y53_c01040{bottom:349.440000pt;}
.y49_c01040{bottom:381.440000pt;}
.y48_c01040{bottom:382.720000pt;}
.y4d_c01040{bottom:385.920000pt;}
.y4a_c01040{bottom:387.200000pt;}
.y4c_c01040{bottom:387.840000pt;}
.y4b_c01040{bottom:389.120000pt;}
.y45_c01040{bottom:419.200000pt;}
.y44_c01040{bottom:421.760000pt;}
.y47_c01040{bottom:424.320000pt;}
.y46_c01040{bottom:424.960000pt;}
.y41_c01040{bottom:457.600000pt;}
.y40_c01040{bottom:460.160000pt;}
.y43_c01040{bottom:462.720000pt;}
.y42_c01040{bottom:463.360000pt;}
.y3d_c01040{bottom:496.000000pt;}
.y3c_c01040{bottom:497.280000pt;}
.y3e_c01040{bottom:501.120000pt;}
.y3f_c01040{bottom:502.400000pt;}
.y37_c01040{bottom:534.400000pt;}
.y36_c01040{bottom:535.680000pt;}
.y39_c01040{bottom:539.520000pt;}
.y3b_c01040{bottom:540.160000pt;}
.y38_c01040{bottom:540.800000pt;}
.y3a_c01040{bottom:541.440000pt;}
.y33_c01040{bottom:572.800000pt;}
.y31_c01040{bottom:573.440000pt;}
.y32_c01040{bottom:574.080000pt;}
.y35_c01040{bottom:577.920000pt;}
.y34_c01040{bottom:579.200000pt;}
.y2c_c01040{bottom:611.200000pt;}
.y2a_c01040{bottom:611.840000pt;}
.y2e_c01040{bottom:616.320000pt;}
.y2f_c01040{bottom:616.960000pt;}
.y2d_c01040{bottom:617.600000pt;}
.y30_c01040{bottom:619.520000pt;}
.y2b_c01040{bottom:624.640000pt;}
.y26_c01040{bottom:649.600000pt;}
.y25_c01040{bottom:650.880000pt;}
.y28_c01040{bottom:654.720000pt;}
.y27_c01040{bottom:655.360000pt;}
.y29_c01040{bottom:656.000000pt;}
.y20_c01040{bottom:688.000000pt;}
.y1f_c01040{bottom:688.640000pt;}
.y22_c01040{bottom:693.120000pt;}
.y21_c01040{bottom:694.400000pt;}
.y24_c01040{bottom:695.040000pt;}
.y23_c01040{bottom:695.680000pt;}
.y1b_c01040{bottom:726.400000pt;}
.y1d_c01040{bottom:730.880000pt;}
.y1e_c01040{bottom:731.520000pt;}
.y1c_c01040{bottom:732.160000pt;}
.y18_c01040{bottom:763.520000pt;}
.y17_c01040{bottom:764.800000pt;}
.y19_c01040{bottom:769.920000pt;}
.y1a_c01040{bottom:771.840000pt;}
.y13_c01040{bottom:801.280000pt;}
.y12_c01040{bottom:803.200000pt;}
.y15_c01040{bottom:807.680000pt;}
.y14_c01040{bottom:808.320000pt;}
.y16_c01040{bottom:810.240000pt;}
.ye_c01040{bottom:839.680000pt;}
.yd_c01040{bottom:840.960000pt;}
.y11_c01040{bottom:845.440000pt;}
.y10_c01040{bottom:846.080000pt;}
.yf_c01040{bottom:846.720000pt;}
.y9_c01040{bottom:878.080000pt;}
.y8_c01040{bottom:879.360000pt;}
.yb_c01040{bottom:884.480000pt;}
.ya_c01040{bottom:885.760000pt;}
.yc_c01040{bottom:886.400000pt;}
.y3_c01040{bottom:917.120000pt;}
.y2_c01040{bottom:918.400000pt;}
.y6_c01040{bottom:922.240000pt;}
.y5_c01040{bottom:922.880000pt;}
.y7_c01040{bottom:923.520000pt;}
.y4_c01040{bottom:924.160000pt;}
.y1_c01040{bottom:979.840000pt;}
.h10_c01040{height:27.645000pt;}
.h11_c01040{height:29.948750pt;}
.h13_c01040{height:34.556250pt;}
.hf_c01040{height:36.860000pt;}
.h5_c01040{height:39.163750pt;}
.h6_c01040{height:41.467500pt;}
.h8_c01040{height:43.771250pt;}
.h7_c01040{height:46.075000pt;}
.h14_c01040{height:46.331250pt;}
.h3_c01040{height:48.378750pt;}
.hb_c01040{height:50.682500pt;}
.h15_c01040{height:51.195000pt;}
.h9_c01040{height:52.986250pt;}
.hd_c01040{height:55.033750pt;}
.hc_c01040{height:55.290000pt;}
.h4_c01040{height:57.593750pt;}
.ha_c01040{height:59.897500pt;}
.h2_c01040{height:62.201250pt;}
.h12_c01040{height:64.763750pt;}
.he_c01040{height:80.631250pt;}
.h1_c01040{height:1023.333333pt;}
.h0_c01040{height:1023.360000pt;}
.w0_c01040{width:738.560000pt;}
.w1_c01040{width:738.666667pt;}
.x0_c01040{left:0.000000pt;}
.x2_c01040{left:96.000000pt;}
.xa_c01040{left:97.280000pt;}
.x13_c01040{left:98.560000pt;}
.x1b_c01040{left:99.840000pt;}
.x2a_c01040{left:101.760000pt;}
.x35_c01040{left:103.040000pt;}
.x18_c01040{left:138.240000pt;}
.x14_c01040{left:156.160000pt;}
.x3_c01040{left:162.560000pt;}
.x10_c01040{left:163.840000pt;}
.x19_c01040{left:165.120000pt;}
.x15_c01040{left:166.400000pt;}
.x2d_c01040{left:167.680000pt;}
.x36_c01040{left:168.960000pt;}
.x4_c01040{left:529.920000pt;}
.xb_c01040{left:531.200000pt;}
.x1c_c01040{left:532.480000pt;}
.x24_c01040{left:533.760000pt;}
.x2e_c01040{left:535.040000pt;}
.x33_c01040{left:536.320000pt;}
.x5_c01040{left:549.120000pt;}
.xd_c01040{left:550.400000pt;}
.x20_c01040{left:552.320000pt;}
.x2f_c01040{left:554.240000pt;}
.x3a_c01040{left:555.520000pt;}
.x9_c01040{left:567.680000pt;}
.x1a_c01040{left:568.960000pt;}
.x1d_c01040{left:570.240000pt;}
.x2b_c01040{left:572.160000pt;}
.x3b_c01040{left:574.080000pt;}
.xe_c01040{left:578.560000pt;}
.x1e_c01040{left:579.840000pt;}
.x25_c01040{left:581.120000pt;}
.x31_c01040{left:583.680000pt;}
.x1f_c01040{left:591.360000pt;}
.x26_c01040{left:593.280000pt;}
.x32_c01040{left:594.560000pt;}
.x6_c01040{left:597.120000pt;}
.x11_c01040{left:599.040000pt;}
.x21_c01040{left:600.960000pt;}
.x34_c01040{left:603.520000pt;}
.x27_c01040{left:620.800000pt;}
.x7_c01040{left:626.560000pt;}
.x1_c01040{left:627.840000pt;}
.x22_c01040{left:629.760000pt;}
.x2c_c01040{left:631.680000pt;}
.x37_c01040{left:632.960000pt;}
.xf_c01040{left:656.640000pt;}
.x8_c01040{left:664.960000pt;}
.x12_c01040{left:666.240000pt;}
.x16_c01040{left:667.520000pt;}
.x23_c01040{left:668.800000pt;}
.x30_c01040{left:670.720000pt;}
.x38_c01040{left:672.000000pt;}
.xc_c01040{left:683.520000pt;}
.x17_c01040{left:685.440000pt;}
.x28_c01040{left:688.000000pt;}
.x39_c01040{left:689.280000pt;}
.x29_c01040{left:706.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e04ba63f12a9603a1d1e966e.woff2')format("woff");}.ff1_c01041{font-family:ff1_c01041;line-height:1.109863;font-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_c01041{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01041{transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);}
.m33_c01041{transform:matrix(0.185775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185775,0.000000,0.000000,0.250000,0,0);}
.m42_c01041{transform:matrix(0.205350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205350,0.000000,0.000000,0.250000,0,0);}
.m56_c01041{transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);}
.m51_c01041{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m11_c01041{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m1e_c01041{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);}
.m3b_c01041{transform:matrix(0.226325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226325,0.000000,0.000000,0.250000,0,0);}
.m3a_c01041{transform:matrix(0.230325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230325,0.000000,0.000000,0.250000,0,0);}
.m2d_c01041{transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);}
.m23_c01041{transform:matrix(0.234200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234200,0.000000,0.000000,0.250000,0,0);}
.m46_c01041{transform:matrix(0.236600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236600,0.000000,0.000000,0.250000,0,0);}
.m52_c01041{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m19_c01041{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m27_c01041{transform:matrix(0.239175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239175,0.000000,0.000000,0.250000,0,0);}
.m5_c01041{transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);}
.mc_c01041{transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);}
.m32_c01041{transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);}
.m30_c01041{transform:matrix(0.242450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242450,0.000000,0.000000,0.250000,0,0);}
.m2c_c01041{transform:matrix(0.244450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244450,0.000000,0.000000,0.250000,0,0);}
.m44_c01041{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m35_c01041{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m3e_c01041{transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);}
.m4a_c01041{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m41_c01041{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_c01041{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m6_c01041{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);}
.m4c_c01041{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);}
.m3d_c01041{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mf_c01041{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01041{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);}
.m4b_c01041{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m3_c01041{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.mb_c01041{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2_c01041{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m21_c01041{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);}
.m2a_c01041{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1_c01041{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01041{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m17_c01041{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m4d_c01041{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m12_c01041{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01041{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m57_c01041{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m15_c01041{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m24_c01041{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01041{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m43_c01041{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m0_c01041{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.md_c01041{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01041{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m8_c01041{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m22_c01041{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m7_c01041{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01041{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);}
.m47_c01041{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m4_c01041{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);}
.m49_c01041{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m28_c01041{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);}
.m20_c01041{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);}
.m26_c01041{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m4f_c01041{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_c01041{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01041{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);}
.m38_c01041{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m37_c01041{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);}
.m39_c01041{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m29_c01041{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m36_c01041{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m34_c01041{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m53_c01041{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.me_c01041{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);}
.m50_c01041{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01041{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m25_c01041{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);}
.m4e_c01041{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m9_c01041{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01041{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);}
.m2b_c01041{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m48_c01041{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m18_c01041{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m45_c01041{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m55_c01041{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m31_c01041{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m16_c01041{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01041{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m54_c01041{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.v0_c01041{vertical-align:0.000000px;}
.v1_c01041{vertical-align:2.880000px;}
.ls0_c01041{letter-spacing:0.000000px;}
.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;}
}
.ws2_c01041{word-spacing:0.000000px;}
.ws1_c01041{word-spacing:5.777971px;}
.ws0_c01041{word-spacing:35.254320px;}
.fc0_c01041{color:transparent;}
.fsd_c01041{font-size:34.560000px;}
.fsc_c01041{font-size:37.440000px;}
.fsb_c01041{font-size:43.200000px;}
.fsa_c01041{font-size:48.960000px;}
.fs5_c01041{font-size:51.840000px;}
.fs8_c01041{font-size:54.720000px;}
.fs6_c01041{font-size:57.600000px;}
.fs9_c01041{font-size:60.480000px;}
.fs2_c01041{font-size:63.360000px;}
.fs4_c01041{font-size:66.240000px;}
.fs0_c01041{font-size:69.120000px;}
.fs7_c01041{font-size:72.000000px;}
.fs1_c01041{font-size:74.880000px;}
.fs3_c01041{font-size:77.760000px;}
.y0_c01041{bottom:0.000000px;}
.y79_c01041{bottom:50.400000px;}
.y77_c01041{bottom:51.120000px;}
.y88_c01041{bottom:51.840000px;}
.y76_c01041{bottom:54.000000px;}
.y78_c01041{bottom:54.720000px;}
.y87_c01041{bottom:92.880000px;}
.y74_c01041{bottom:93.600000px;}
.y86_c01041{bottom:94.320000px;}
.y73_c01041{bottom:95.760000px;}
.y75_c01041{bottom:97.200000px;}
.y72_c01041{bottom:136.080000px;}
.y70_c01041{bottom:136.800000px;}
.y84_c01041{bottom:137.520000px;}
.y6f_c01041{bottom:138.240000px;}
.y85_c01041{bottom:138.960000px;}
.y71_c01041{bottom:139.680000px;}
.y6e_c01041{bottom:178.560000px;}
.y6b_c01041{bottom:179.280000px;}
.y83_c01041{bottom:180.000000px;}
.y6c_c01041{bottom:180.720000px;}
.y82_c01041{bottom:181.440000px;}
.y6a_c01041{bottom:182.160000px;}
.y6d_c01041{bottom:182.880000px;}
.y68_c01041{bottom:221.760000px;}
.y69_c01041{bottom:222.480000px;}
.y81_c01041{bottom:223.200000px;}
.y67_c01041{bottom:225.360000px;}
.y66_c01041{bottom:264.960000px;}
.y64_c01041{bottom:265.680000px;}
.y65_c01041{bottom:266.400000px;}
.y80_c01041{bottom:267.120000px;}
.y63_c01041{bottom:268.560000px;}
.y61_c01041{bottom:308.160000px;}
.y7e_c01041{bottom:309.600000px;}
.y7f_c01041{bottom:310.320000px;}
.y60_c01041{bottom:311.040000px;}
.y62_c01041{bottom:311.760000px;}
.y5f_c01041{bottom:351.360000px;}
.y7d_c01041{bottom:352.080000px;}
.y7b_c01041{bottom:352.800000px;}
.y5e_c01041{bottom:353.520000px;}
.y7c_c01041{bottom:354.960000px;}
.y58_c01041{bottom:393.840000px;}
.y5a_c01041{bottom:394.560000px;}
.y5c_c01041{bottom:395.280000px;}
.y57_c01041{bottom:396.000000px;}
.y7a_c01041{bottom:396.720000px;}
.y5b_c01041{bottom:397.440000px;}
.y5d_c01041{bottom:398.160000px;}
.y59_c01041{bottom:398.880000px;}
.y50_c01041{bottom:437.040000px;}
.y56_c01041{bottom:438.480000px;}
.y51_c01041{bottom:439.200000px;}
.y4f_c01041{bottom:440.640000px;}
.y4c_c01041{bottom:480.240000px;}
.y4e_c01041{bottom:480.960000px;}
.y4a_c01041{bottom:482.400000px;}
.y54_c01041{bottom:483.120000px;}
.y4d_c01041{bottom:483.840000px;}
.y4b_c01041{bottom:484.560000px;}
.y55_c01041{bottom:485.280000px;}
.y47_c01041{bottom:522.720000px;}
.y49_c01041{bottom:523.440000px;}
.y46_c01041{bottom:524.880000px;}
.y53_c01041{bottom:525.600000px;}
.y52_c01041{bottom:526.320000px;}
.y48_c01041{bottom:527.040000px;}
.y45_c01041{bottom:566.640000px;}
.y44_c01041{bottom:570.240000px;}
.y3f_c01041{bottom:599.040000px;}
.y3e_c01041{bottom:599.760000px;}
.y42_c01041{bottom:600.480000px;}
.y43_c01041{bottom:601.200000px;}
.y40_c01041{bottom:601.920000px;}
.y41_c01041{bottom:602.640000px;}
.y3d_c01041{bottom:635.040000px;}
.y38_c01041{bottom:641.520000px;}
.y3b_c01041{bottom:642.240000px;}
.y3c_c01041{bottom:642.960000px;}
.y37_c01041{bottom:643.680000px;}
.y39_c01041{bottom:644.400000px;}
.y3a_c01041{bottom:645.120000px;}
.y31_c01041{bottom:683.280000px;}
.y33_c01041{bottom:684.720000px;}
.y30_c01041{bottom:686.160000px;}
.y34_c01041{bottom:686.880000px;}
.y32_c01041{bottom:687.600000px;}
.y36_c01041{bottom:688.320000px;}
.y35_c01041{bottom:689.040000px;}
.y2a_c01041{bottom:726.480000px;}
.y2e_c01041{bottom:727.920000px;}
.y2c_c01041{bottom:728.640000px;}
.y2f_c01041{bottom:729.360000px;}
.y29_c01041{bottom:730.080000px;}
.y2b_c01041{bottom:730.800000px;}
.y2d_c01041{bottom:731.520000px;}
.y13_c01041{bottom:769.680000px;}
.y16_c01041{bottom:771.120000px;}
.y12_c01041{bottom:771.840000px;}
.y27_c01041{bottom:772.560000px;}
.y15_c01041{bottom:773.280000px;}
.y14_c01041{bottom:774.000000px;}
.y28_c01041{bottom:774.720000px;}
.yf_c01041{bottom:812.880000px;}
.y11_c01041{bottom:813.600000px;}
.y10_c01041{bottom:815.040000px;}
.ye_c01041{bottom:815.760000px;}
.y26_c01041{bottom:816.480000px;}
.yb_c01041{bottom:856.080000px;}
.yd_c01041{bottom:856.800000px;}
.ya_c01041{bottom:857.520000px;}
.y22_c01041{bottom:858.960000px;}
.y23_c01041{bottom:859.680000px;}
.yc_c01041{bottom:860.400000px;}
.y25_c01041{bottom:861.120000px;}
.y24_c01041{bottom:861.840000px;}
.y8_c01041{bottom:899.280000px;}
.y9_c01041{bottom:900.000000px;}
.y7_c01041{bottom:902.160000px;}
.y6_c01041{bottom:942.480000px;}
.y5_c01041{bottom:944.640000px;}
.y20_c01041{bottom:946.080000px;}
.y1f_c01041{bottom:947.520000px;}
.y21_c01041{bottom:948.240000px;}
.y4_c01041{bottom:985.680000px;}
.y3_c01041{bottom:987.840000px;}
.y1c_c01041{bottom:988.560000px;}
.y1d_c01041{bottom:989.280000px;}
.y1b_c01041{bottom:990.000000px;}
.y1e_c01041{bottom:990.720000px;}
.y2_c01041{bottom:1028.880000px;}
.y1_c01041{bottom:1030.320000px;}
.y1a_c01041{bottom:1032.480000px;}
.y18_c01041{bottom:1033.200000px;}
.y19_c01041{bottom:1034.640000px;}
.y17_c01041{bottom:1107.360000px;}
.hf_c01041{height:31.100625px;}
.he_c01041{height:33.692344px;}
.hd_c01041{height:38.875781px;}
.hc_c01041{height:44.059219px;}
.h7_c01041{height:46.650937px;}
.ha_c01041{height:49.242656px;}
.h8_c01041{height:51.834375px;}
.hb_c01041{height:54.426094px;}
.h4_c01041{height:57.017812px;}
.h6_c01041{height:59.609531px;}
.h2_c01041{height:62.201250px;}
.h9_c01041{height:64.792969px;}
.h3_c01041{height:67.384687px;}
.h5_c01041{height:69.976406px;}
.h0_c01041{height:1142.640000px;}
.h1_c01041{height:1143.000000px;}
.w0_c01041{width:818.640000px;}
.w1_c01041{width:819.000000px;}
.x0_c01041{left:0.000000px;}
.x1_c01041{left:110.160000px;}
.x2_c01041{left:184.320000px;}
.x1e_c01041{left:229.680000px;}
.x1b_c01041{left:239.040000px;}
.x4_c01041{left:270.720000px;}
.x3_c01041{left:272.160000px;}
.x1f_c01041{left:282.240000px;}
.x25_c01041{left:304.560000px;}
.x23_c01041{left:313.920000px;}
.x5_c01041{left:315.360000px;}
.x19_c01041{left:324.000000px;}
.x22_c01041{left:326.160000px;}
.x20_c01041{left:336.960000px;}
.x28_c01041{left:357.840000px;}
.x29_c01041{left:367.920000px;}
.x6_c01041{left:370.080000px;}
.x21_c01041{left:379.440000px;}
.x7_c01041{left:401.760000px;}
.x1c_c01041{left:434.160000px;}
.x16_c01041{left:455.040000px;}
.x24_c01041{left:465.120000px;}
.x26_c01041{left:486.720000px;}
.x1d_c01041{left:488.160000px;}
.x14_c01041{left:498.960000px;}
.x17_c01041{left:500.400000px;}
.x1a_c01041{left:509.760000px;}
.x27_c01041{left:531.360000px;}
.x18_c01041{left:542.160000px;}
.x15_c01041{left:552.960000px;}
.x13_c01041{left:596.880000px;}
.x9_c01041{left:598.320000px;}
.x11_c01041{left:617.760000px;}
.xa_c01041{left:619.920000px;}
.x12_c01041{left:639.360000px;}
.x2a_c01041{left:650.880000px;}
.x2b_c01041{left:664.560000px;}
.xb_c01041{left:673.200000px;}
.xc_c01041{left:706.320000px;}
.x10_c01041{left:739.440000px;}
.x8_c01041{left:745.920000px;}
.xd_c01041{left:748.800000px;}
.xf_c01041{left:750.240000px;}
.xe_c01041{left:770.400000px;}
@media print{
.v0_c01041{vertical-align:0.000000pt;}
.v1_c01041{vertical-align:2.560000pt;}
.ls0_c01041{letter-spacing:0.000000pt;}
.ws2_c01041{word-spacing:0.000000pt;}
.ws1_c01041{word-spacing:5.135974pt;}
.ws0_c01041{word-spacing:31.337173pt;}
.fsd_c01041{font-size:30.720000pt;}
.fsc_c01041{font-size:33.280000pt;}
.fsb_c01041{font-size:38.400000pt;}
.fsa_c01041{font-size:43.520000pt;}
.fs5_c01041{font-size:46.080000pt;}
.fs8_c01041{font-size:48.640000pt;}
.fs6_c01041{font-size:51.200000pt;}
.fs9_c01041{font-size:53.760000pt;}
.fs2_c01041{font-size:56.320000pt;}
.fs4_c01041{font-size:58.880000pt;}
.fs0_c01041{font-size:61.440000pt;}
.fs7_c01041{font-size:64.000000pt;}
.fs1_c01041{font-size:66.560000pt;}
.fs3_c01041{font-size:69.120000pt;}
.y0_c01041{bottom:0.000000pt;}
.y79_c01041{bottom:44.800000pt;}
.y77_c01041{bottom:45.440000pt;}
.y88_c01041{bottom:46.080000pt;}
.y76_c01041{bottom:48.000000pt;}
.y78_c01041{bottom:48.640000pt;}
.y87_c01041{bottom:82.560000pt;}
.y74_c01041{bottom:83.200000pt;}
.y86_c01041{bottom:83.840000pt;}
.y73_c01041{bottom:85.120000pt;}
.y75_c01041{bottom:86.400000pt;}
.y72_c01041{bottom:120.960000pt;}
.y70_c01041{bottom:121.600000pt;}
.y84_c01041{bottom:122.240000pt;}
.y6f_c01041{bottom:122.880000pt;}
.y85_c01041{bottom:123.520000pt;}
.y71_c01041{bottom:124.160000pt;}
.y6e_c01041{bottom:158.720000pt;}
.y6b_c01041{bottom:159.360000pt;}
.y83_c01041{bottom:160.000000pt;}
.y6c_c01041{bottom:160.640000pt;}
.y82_c01041{bottom:161.280000pt;}
.y6a_c01041{bottom:161.920000pt;}
.y6d_c01041{bottom:162.560000pt;}
.y68_c01041{bottom:197.120000pt;}
.y69_c01041{bottom:197.760000pt;}
.y81_c01041{bottom:198.400000pt;}
.y67_c01041{bottom:200.320000pt;}
.y66_c01041{bottom:235.520000pt;}
.y64_c01041{bottom:236.160000pt;}
.y65_c01041{bottom:236.800000pt;}
.y80_c01041{bottom:237.440000pt;}
.y63_c01041{bottom:238.720000pt;}
.y61_c01041{bottom:273.920000pt;}
.y7e_c01041{bottom:275.200000pt;}
.y7f_c01041{bottom:275.840000pt;}
.y60_c01041{bottom:276.480000pt;}
.y62_c01041{bottom:277.120000pt;}
.y5f_c01041{bottom:312.320000pt;}
.y7d_c01041{bottom:312.960000pt;}
.y7b_c01041{bottom:313.600000pt;}
.y5e_c01041{bottom:314.240000pt;}
.y7c_c01041{bottom:315.520000pt;}
.y58_c01041{bottom:350.080000pt;}
.y5a_c01041{bottom:350.720000pt;}
.y5c_c01041{bottom:351.360000pt;}
.y57_c01041{bottom:352.000000pt;}
.y7a_c01041{bottom:352.640000pt;}
.y5b_c01041{bottom:353.280000pt;}
.y5d_c01041{bottom:353.920000pt;}
.y59_c01041{bottom:354.560000pt;}
.y50_c01041{bottom:388.480000pt;}
.y56_c01041{bottom:389.760000pt;}
.y51_c01041{bottom:390.400000pt;}
.y4f_c01041{bottom:391.680000pt;}
.y4c_c01041{bottom:426.880000pt;}
.y4e_c01041{bottom:427.520000pt;}
.y4a_c01041{bottom:428.800000pt;}
.y54_c01041{bottom:429.440000pt;}
.y4d_c01041{bottom:430.080000pt;}
.y4b_c01041{bottom:430.720000pt;}
.y55_c01041{bottom:431.360000pt;}
.y47_c01041{bottom:464.640000pt;}
.y49_c01041{bottom:465.280000pt;}
.y46_c01041{bottom:466.560000pt;}
.y53_c01041{bottom:467.200000pt;}
.y52_c01041{bottom:467.840000pt;}
.y48_c01041{bottom:468.480000pt;}
.y45_c01041{bottom:503.680000pt;}
.y44_c01041{bottom:506.880000pt;}
.y3f_c01041{bottom:532.480000pt;}
.y3e_c01041{bottom:533.120000pt;}
.y42_c01041{bottom:533.760000pt;}
.y43_c01041{bottom:534.400000pt;}
.y40_c01041{bottom:535.040000pt;}
.y41_c01041{bottom:535.680000pt;}
.y3d_c01041{bottom:564.480000pt;}
.y38_c01041{bottom:570.240000pt;}
.y3b_c01041{bottom:570.880000pt;}
.y3c_c01041{bottom:571.520000pt;}
.y37_c01041{bottom:572.160000pt;}
.y39_c01041{bottom:572.800000pt;}
.y3a_c01041{bottom:573.440000pt;}
.y31_c01041{bottom:607.360000pt;}
.y33_c01041{bottom:608.640000pt;}
.y30_c01041{bottom:609.920000pt;}
.y34_c01041{bottom:610.560000pt;}
.y32_c01041{bottom:611.200000pt;}
.y36_c01041{bottom:611.840000pt;}
.y35_c01041{bottom:612.480000pt;}
.y2a_c01041{bottom:645.760000pt;}
.y2e_c01041{bottom:647.040000pt;}
.y2c_c01041{bottom:647.680000pt;}
.y2f_c01041{bottom:648.320000pt;}
.y29_c01041{bottom:648.960000pt;}
.y2b_c01041{bottom:649.600000pt;}
.y2d_c01041{bottom:650.240000pt;}
.y13_c01041{bottom:684.160000pt;}
.y16_c01041{bottom:685.440000pt;}
.y12_c01041{bottom:686.080000pt;}
.y27_c01041{bottom:686.720000pt;}
.y15_c01041{bottom:687.360000pt;}
.y14_c01041{bottom:688.000000pt;}
.y28_c01041{bottom:688.640000pt;}
.yf_c01041{bottom:722.560000pt;}
.y11_c01041{bottom:723.200000pt;}
.y10_c01041{bottom:724.480000pt;}
.ye_c01041{bottom:725.120000pt;}
.y26_c01041{bottom:725.760000pt;}
.yb_c01041{bottom:760.960000pt;}
.yd_c01041{bottom:761.600000pt;}
.ya_c01041{bottom:762.240000pt;}
.y22_c01041{bottom:763.520000pt;}
.y23_c01041{bottom:764.160000pt;}
.yc_c01041{bottom:764.800000pt;}
.y25_c01041{bottom:765.440000pt;}
.y24_c01041{bottom:766.080000pt;}
.y8_c01041{bottom:799.360000pt;}
.y9_c01041{bottom:800.000000pt;}
.y7_c01041{bottom:801.920000pt;}
.y6_c01041{bottom:837.760000pt;}
.y5_c01041{bottom:839.680000pt;}
.y20_c01041{bottom:840.960000pt;}
.y1f_c01041{bottom:842.240000pt;}
.y21_c01041{bottom:842.880000pt;}
.y4_c01041{bottom:876.160000pt;}
.y3_c01041{bottom:878.080000pt;}
.y1c_c01041{bottom:878.720000pt;}
.y1d_c01041{bottom:879.360000pt;}
.y1b_c01041{bottom:880.000000pt;}
.y1e_c01041{bottom:880.640000pt;}
.y2_c01041{bottom:914.560000pt;}
.y1_c01041{bottom:915.840000pt;}
.y1a_c01041{bottom:917.760000pt;}
.y18_c01041{bottom:918.400000pt;}
.y19_c01041{bottom:919.680000pt;}
.y17_c01041{bottom:984.320000pt;}
.hf_c01041{height:27.645000pt;}
.he_c01041{height:29.948750pt;}
.hd_c01041{height:34.556250pt;}
.hc_c01041{height:39.163750pt;}
.h7_c01041{height:41.467500pt;}
.ha_c01041{height:43.771250pt;}
.h8_c01041{height:46.075000pt;}
.hb_c01041{height:48.378750pt;}
.h4_c01041{height:50.682500pt;}
.h6_c01041{height:52.986250pt;}
.h2_c01041{height:55.290000pt;}
.h9_c01041{height:57.593750pt;}
.h3_c01041{height:59.897500pt;}
.h5_c01041{height:62.201250pt;}
.h0_c01041{height:1015.680000pt;}
.h1_c01041{height:1016.000000pt;}
.w0_c01041{width:727.680000pt;}
.w1_c01041{width:728.000000pt;}
.x0_c01041{left:0.000000pt;}
.x1_c01041{left:97.920000pt;}
.x2_c01041{left:163.840000pt;}
.x1e_c01041{left:204.160000pt;}
.x1b_c01041{left:212.480000pt;}
.x4_c01041{left:240.640000pt;}
.x3_c01041{left:241.920000pt;}
.x1f_c01041{left:250.880000pt;}
.x25_c01041{left:270.720000pt;}
.x23_c01041{left:279.040000pt;}
.x5_c01041{left:280.320000pt;}
.x19_c01041{left:288.000000pt;}
.x22_c01041{left:289.920000pt;}
.x20_c01041{left:299.520000pt;}
.x28_c01041{left:318.080000pt;}
.x29_c01041{left:327.040000pt;}
.x6_c01041{left:328.960000pt;}
.x21_c01041{left:337.280000pt;}
.x7_c01041{left:357.120000pt;}
.x1c_c01041{left:385.920000pt;}
.x16_c01041{left:404.480000pt;}
.x24_c01041{left:413.440000pt;}
.x26_c01041{left:432.640000pt;}
.x1d_c01041{left:433.920000pt;}
.x14_c01041{left:443.520000pt;}
.x17_c01041{left:444.800000pt;}
.x1a_c01041{left:453.120000pt;}
.x27_c01041{left:472.320000pt;}
.x18_c01041{left:481.920000pt;}
.x15_c01041{left:491.520000pt;}
.x13_c01041{left:530.560000pt;}
.x9_c01041{left:531.840000pt;}
.x11_c01041{left:549.120000pt;}
.xa_c01041{left:551.040000pt;}
.x12_c01041{left:568.320000pt;}
.x2a_c01041{left:578.560000pt;}
.x2b_c01041{left:590.720000pt;}
.xb_c01041{left:598.400000pt;}
.xc_c01041{left:627.840000pt;}
.x10_c01041{left:657.280000pt;}
.x8_c01041{left:663.040000pt;}
.xd_c01041{left:665.600000pt;}
.xf_c01041{left:666.880000pt;}
.xe_c01041{left:684.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_428fdb7dd3c13cad8b1f5674.woff2')format("woff");}.ff1_c01042{font-family:ff1_c01042;line-height:1.109863;font-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_c01042{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);}
.m40_c01042{transform:matrix(0.233925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233925,0.000000,0.000000,0.250000,0,0);}
.m1c_c01042{transform:matrix(0.236325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236325,0.000000,0.000000,0.250000,0,0);}
.m2b_c01042{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m21_c01042{transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);}
.m22_c01042{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01042{transform:matrix(0.245150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245150,0.000000,0.000000,0.250000,0,0);}
.m1e_c01042{transform:matrix(0.245325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245325,0.000000,0.000000,0.250000,0,0);}
.m8_c01042{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m16_c01042{transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);}
.m3e_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);}
.m25_c01042{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m2_c01042{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m7_c01042{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);}
.m28_c01042{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);}
.m43_c01042{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.ma_c01042{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);}
.m41_c01042{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m6_c01042{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m30_c01042{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_c01042{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01042{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.me_c01042{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m17_c01042{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01042{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.md_c01042{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m3_c01042{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01042{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mc_c01042{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m19_c01042{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m13_c01042{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m35_c01042{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01042{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m27_c01042{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m9_c01042{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m11_c01042{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m33_c01042{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01042{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m34_c01042{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_c01042{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m29_c01042{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01042{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m39_c01042{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m5_c01042{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m23_c01042{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);}
.m31_c01042{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m38_c01042{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1_c01042{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m14_c01042{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m32_c01042{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);}
.m0_c01042{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m4_c01042{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);}
.m18_c01042{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);}
.m3b_c01042{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m20_c01042{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);}
.m15_c01042{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);}
.m26_c01042{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01042{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m24_c01042{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_c01042{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);}
.m2d_c01042{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m12_c01042{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m42_c01042{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.mb_c01042{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01042{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m36_c01042{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m37_c01042{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01042{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.v0_c01042{vertical-align:0.000000px;}
.ls0_c01042{letter-spacing:0.000000px;}
.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;}
}
.ws1_c01042{word-spacing:0.000000px;}
.ws0_c01042{word-spacing:9.059962px;}
.fc0_c01042{color:transparent;}
.fsb_c01042{font-size:37.440000px;}
.fs9_c01042{font-size:43.200000px;}
.fs8_c01042{font-size:48.960000px;}
.fs4_c01042{font-size:51.840000px;}
.fs6_c01042{font-size:54.720000px;}
.fs5_c01042{font-size:57.600000px;}
.fs1_c01042{font-size:60.480000px;}
.fsc_c01042{font-size:63.360000px;}
.fs7_c01042{font-size:66.240000px;}
.fs3_c01042{font-size:69.120000px;}
.fs0_c01042{font-size:72.000000px;}
.fs2_c01042{font-size:74.880000px;}
.fsa_c01042{font-size:77.760000px;}
.fsd_c01042{font-size:80.640000px;}
.y0_c01042{bottom:0.000000px;}
.y63_c01042{bottom:33.840000px;}
.y61_c01042{bottom:35.280000px;}
.y62_c01042{bottom:36.000000px;}
.y60_c01042{bottom:36.720000px;}
.y78_c01042{bottom:77.040000px;}
.y5f_c01042{bottom:77.760000px;}
.y77_c01042{bottom:78.480000px;}
.y5e_c01042{bottom:79.920000px;}
.y76_c01042{bottom:120.240000px;}
.y5c_c01042{bottom:120.960000px;}
.y5d_c01042{bottom:122.400000px;}
.y5b_c01042{bottom:123.120000px;}
.y5a_c01042{bottom:163.440000px;}
.y58_c01042{bottom:164.880000px;}
.y59_c01042{bottom:165.600000px;}
.y57_c01042{bottom:167.040000px;}
.y75_c01042{bottom:205.920000px;}
.y55_c01042{bottom:208.080000px;}
.y56_c01042{bottom:208.800000px;}
.y54_c01042{bottom:209.520000px;}
.y74_c01042{bottom:249.120000px;}
.y52_c01042{bottom:250.560000px;}
.y53_c01042{bottom:251.280000px;}
.y51_c01042{bottom:252.000000px;}
.y73_c01042{bottom:291.600000px;}
.y50_c01042{bottom:292.320000px;}
.y72_c01042{bottom:293.040000px;}
.y4f_c01042{bottom:293.760000px;}
.y4e_c01042{bottom:295.200000px;}
.y71_c01042{bottom:334.080000px;}
.y4d_c01042{bottom:336.240000px;}
.y70_c01042{bottom:336.960000px;}
.y4c_c01042{bottom:337.680000px;}
.y4b_c01042{bottom:338.400000px;}
.y6f_c01042{bottom:375.120000px;}
.y49_c01042{bottom:378.720000px;}
.y4a_c01042{bottom:379.440000px;}
.y48_c01042{bottom:381.600000px;}
.y6c_c01042{bottom:419.760000px;}
.y6e_c01042{bottom:420.480000px;}
.y46_c01042{bottom:421.920000px;}
.y47_c01042{bottom:422.640000px;}
.y6d_c01042{bottom:423.360000px;}
.y45_c01042{bottom:424.080000px;}
.y6b_c01042{bottom:462.240000px;}
.y6a_c01042{bottom:462.960000px;}
.y41_c01042{bottom:464.400000px;}
.y69_c01042{bottom:465.120000px;}
.y44_c01042{bottom:465.840000px;}
.y42_c01042{bottom:466.560000px;}
.y43_c01042{bottom:467.280000px;}
.y68_c01042{bottom:504.720000px;}
.y66_c01042{bottom:505.440000px;}
.y3f_c01042{bottom:507.600000px;}
.y40_c01042{bottom:508.320000px;}
.y67_c01042{bottom:509.040000px;}
.y64_c01042{bottom:548.640000px;}
.y3e_c01042{bottom:550.800000px;}
.y3d_c01042{bottom:551.520000px;}
.y65_c01042{bottom:552.240000px;}
.y31_c01042{bottom:591.840000px;}
.y30_c01042{bottom:594.720000px;}
.y3c_c01042{bottom:596.880000px;}
.y2f_c01042{bottom:635.040000px;}
.y2e_c01042{bottom:637.200000px;}
.y3b_c01042{bottom:637.920000px;}
.y2c_c01042{bottom:677.520000px;}
.y2d_c01042{bottom:678.240000px;}
.y2b_c01042{bottom:680.400000px;}
.y39_c01042{bottom:681.120000px;}
.y3a_c01042{bottom:683.280000px;}
.y29_c01042{bottom:720.720000px;}
.y2a_c01042{bottom:721.440000px;}
.y28_c01042{bottom:723.600000px;}
.y36_c01042{bottom:724.320000px;}
.y37_c01042{bottom:725.040000px;}
.y38_c01042{bottom:726.480000px;}
.y24_c01042{bottom:763.920000px;}
.y25_c01042{bottom:764.640000px;}
.y34_c01042{bottom:766.080000px;}
.y35_c01042{bottom:766.800000px;}
.y23_c01042{bottom:767.520000px;}
.y21_c01042{bottom:806.400000px;}
.y22_c01042{bottom:807.120000px;}
.y20_c01042{bottom:809.280000px;}
.y32_c01042{bottom:810.000000px;}
.y33_c01042{bottom:810.720000px;}
.y1e_c01042{bottom:849.600000px;}
.y1f_c01042{bottom:850.320000px;}
.y1d_c01042{bottom:852.480000px;}
.y27_c01042{bottom:853.920000px;}
.y26_c01042{bottom:855.360000px;}
.y16_c01042{bottom:892.080000px;}
.y19_c01042{bottom:893.520000px;}
.y15_c01042{bottom:894.960000px;}
.y17_c01042{bottom:896.400000px;}
.y18_c01042{bottom:897.120000px;}
.y1c_c01042{bottom:898.560000px;}
.y14_c01042{bottom:929.520000px;}
.y11_c01042{bottom:935.280000px;}
.y13_c01042{bottom:936.720000px;}
.y10_c01042{bottom:938.160000px;}
.y1a_c01042{bottom:938.880000px;}
.y12_c01042{bottom:939.600000px;}
.y1b_c01042{bottom:941.040000px;}
.y8_c01042{bottom:978.480000px;}
.y7_c01042{bottom:980.640000px;}
.ya_c01042{bottom:981.360000px;}
.yd_c01042{bottom:982.080000px;}
.yf_c01042{bottom:983.520000px;}
.ye_c01042{bottom:984.240000px;}
.y3_c01042{bottom:1020.960000px;}
.y6_c01042{bottom:1022.400000px;}
.y4_c01042{bottom:1023.120000px;}
.y9_c01042{bottom:1023.840000px;}
.y2_c01042{bottom:1024.560000px;}
.y5_c01042{bottom:1026.000000px;}
.yc_c01042{bottom:1026.720000px;}
.yb_c01042{bottom:1027.440000px;}
.y1_c01042{bottom:1089.360000px;}
.hd_c01042{height:33.692344px;}
.hb_c01042{height:38.875781px;}
.ha_c01042{height:44.059219px;}
.h6_c01042{height:46.650937px;}
.h8_c01042{height:49.242656px;}
.h7_c01042{height:51.834375px;}
.h3_c01042{height:54.426094px;}
.he_c01042{height:57.017812px;}
.h9_c01042{height:59.609531px;}
.h5_c01042{height:62.201250px;}
.h2_c01042{height:64.792969px;}
.h4_c01042{height:67.384687px;}
.hc_c01042{height:69.976406px;}
.hf_c01042{height:72.568125px;}
.h1_c01042{height:1145.250000px;}
.h0_c01042{height:1145.520000px;}
.w1_c01042{width:822.750000px;}
.w0_c01042{width:822.960000px;}
.x0_c01042{left:0.000000px;}
.x2_c01042{left:108.000000px;}
.x14_c01042{left:109.440000px;}
.x3_c01042{left:182.160000px;}
.x15_c01042{left:183.600000px;}
.x24_c01042{left:228.960000px;}
.x4_c01042{left:270.000000px;}
.x27_c01042{left:280.800000px;}
.xd_c01042{left:313.200000px;}
.x21_c01042{left:314.640000px;}
.x28_c01042{left:324.720000px;}
.x25_c01042{left:335.520000px;}
.x22_c01042{left:357.120000px;}
.xe_c01042{left:367.200000px;}
.x23_c01042{left:368.640000px;}
.x29_c01042{left:380.160000px;}
.x26_c01042{left:389.520000px;}
.x20_c01042{left:411.840000px;}
.x5_c01042{left:464.400000px;}
.x11_c01042{left:475.200000px;}
.x6_c01042{left:507.600000px;}
.xf_c01042{left:517.680000px;}
.x12_c01042{left:519.120000px;}
.x10_c01042{left:550.800000px;}
.x1c_c01042{left:586.080000px;}
.x7_c01042{left:596.160000px;}
.x8_c01042{left:617.760000px;}
.x16_c01042{left:637.920000px;}
.x19_c01042{left:639.360000px;}
.x1e_c01042{left:650.160000px;}
.x13_c01042{left:670.320000px;}
.x9_c01042{left:671.760000px;}
.x1a_c01042{left:673.200000px;}
.xa_c01042{left:704.160000px;}
.x1b_c01042{left:705.600000px;}
.x1_c01042{left:730.080000px;}
.x1d_c01042{left:738.720000px;}
.xb_c01042{left:747.360000px;}
.x17_c01042{left:748.800000px;}
.xc_c01042{left:767.520000px;}
.x18_c01042{left:768.960000px;}
.x1f_c01042{left:770.400000px;}
@media print{
.v0_c01042{vertical-align:0.000000pt;}
.ls0_c01042{letter-spacing:0.000000pt;}
.ws1_c01042{word-spacing:0.000000pt;}
.ws0_c01042{word-spacing:8.053299pt;}
.fsb_c01042{font-size:33.280000pt;}
.fs9_c01042{font-size:38.400000pt;}
.fs8_c01042{font-size:43.520000pt;}
.fs4_c01042{font-size:46.080000pt;}
.fs6_c01042{font-size:48.640000pt;}
.fs5_c01042{font-size:51.200000pt;}
.fs1_c01042{font-size:53.760000pt;}
.fsc_c01042{font-size:56.320000pt;}
.fs7_c01042{font-size:58.880000pt;}
.fs3_c01042{font-size:61.440000pt;}
.fs0_c01042{font-size:64.000000pt;}
.fs2_c01042{font-size:66.560000pt;}
.fsa_c01042{font-size:69.120000pt;}
.fsd_c01042{font-size:71.680000pt;}
.y0_c01042{bottom:0.000000pt;}
.y63_c01042{bottom:30.080000pt;}
.y61_c01042{bottom:31.360000pt;}
.y62_c01042{bottom:32.000000pt;}
.y60_c01042{bottom:32.640000pt;}
.y78_c01042{bottom:68.480000pt;}
.y5f_c01042{bottom:69.120000pt;}
.y77_c01042{bottom:69.760000pt;}
.y5e_c01042{bottom:71.040000pt;}
.y76_c01042{bottom:106.880000pt;}
.y5c_c01042{bottom:107.520000pt;}
.y5d_c01042{bottom:108.800000pt;}
.y5b_c01042{bottom:109.440000pt;}
.y5a_c01042{bottom:145.280000pt;}
.y58_c01042{bottom:146.560000pt;}
.y59_c01042{bottom:147.200000pt;}
.y57_c01042{bottom:148.480000pt;}
.y75_c01042{bottom:183.040000pt;}
.y55_c01042{bottom:184.960000pt;}
.y56_c01042{bottom:185.600000pt;}
.y54_c01042{bottom:186.240000pt;}
.y74_c01042{bottom:221.440000pt;}
.y52_c01042{bottom:222.720000pt;}
.y53_c01042{bottom:223.360000pt;}
.y51_c01042{bottom:224.000000pt;}
.y73_c01042{bottom:259.200000pt;}
.y50_c01042{bottom:259.840000pt;}
.y72_c01042{bottom:260.480000pt;}
.y4f_c01042{bottom:261.120000pt;}
.y4e_c01042{bottom:262.400000pt;}
.y71_c01042{bottom:296.960000pt;}
.y4d_c01042{bottom:298.880000pt;}
.y70_c01042{bottom:299.520000pt;}
.y4c_c01042{bottom:300.160000pt;}
.y4b_c01042{bottom:300.800000pt;}
.y6f_c01042{bottom:333.440000pt;}
.y49_c01042{bottom:336.640000pt;}
.y4a_c01042{bottom:337.280000pt;}
.y48_c01042{bottom:339.200000pt;}
.y6c_c01042{bottom:373.120000pt;}
.y6e_c01042{bottom:373.760000pt;}
.y46_c01042{bottom:375.040000pt;}
.y47_c01042{bottom:375.680000pt;}
.y6d_c01042{bottom:376.320000pt;}
.y45_c01042{bottom:376.960000pt;}
.y6b_c01042{bottom:410.880000pt;}
.y6a_c01042{bottom:411.520000pt;}
.y41_c01042{bottom:412.800000pt;}
.y69_c01042{bottom:413.440000pt;}
.y44_c01042{bottom:414.080000pt;}
.y42_c01042{bottom:414.720000pt;}
.y43_c01042{bottom:415.360000pt;}
.y68_c01042{bottom:448.640000pt;}
.y66_c01042{bottom:449.280000pt;}
.y3f_c01042{bottom:451.200000pt;}
.y40_c01042{bottom:451.840000pt;}
.y67_c01042{bottom:452.480000pt;}
.y64_c01042{bottom:487.680000pt;}
.y3e_c01042{bottom:489.600000pt;}
.y3d_c01042{bottom:490.240000pt;}
.y65_c01042{bottom:490.880000pt;}
.y31_c01042{bottom:526.080000pt;}
.y30_c01042{bottom:528.640000pt;}
.y3c_c01042{bottom:530.560000pt;}
.y2f_c01042{bottom:564.480000pt;}
.y2e_c01042{bottom:566.400000pt;}
.y3b_c01042{bottom:567.040000pt;}
.y2c_c01042{bottom:602.240000pt;}
.y2d_c01042{bottom:602.880000pt;}
.y2b_c01042{bottom:604.800000pt;}
.y39_c01042{bottom:605.440000pt;}
.y3a_c01042{bottom:607.360000pt;}
.y29_c01042{bottom:640.640000pt;}
.y2a_c01042{bottom:641.280000pt;}
.y28_c01042{bottom:643.200000pt;}
.y36_c01042{bottom:643.840000pt;}
.y37_c01042{bottom:644.480000pt;}
.y38_c01042{bottom:645.760000pt;}
.y24_c01042{bottom:679.040000pt;}
.y25_c01042{bottom:679.680000pt;}
.y34_c01042{bottom:680.960000pt;}
.y35_c01042{bottom:681.600000pt;}
.y23_c01042{bottom:682.240000pt;}
.y21_c01042{bottom:716.800000pt;}
.y22_c01042{bottom:717.440000pt;}
.y20_c01042{bottom:719.360000pt;}
.y32_c01042{bottom:720.000000pt;}
.y33_c01042{bottom:720.640000pt;}
.y1e_c01042{bottom:755.200000pt;}
.y1f_c01042{bottom:755.840000pt;}
.y1d_c01042{bottom:757.760000pt;}
.y27_c01042{bottom:759.040000pt;}
.y26_c01042{bottom:760.320000pt;}
.y16_c01042{bottom:792.960000pt;}
.y19_c01042{bottom:794.240000pt;}
.y15_c01042{bottom:795.520000pt;}
.y17_c01042{bottom:796.800000pt;}
.y18_c01042{bottom:797.440000pt;}
.y1c_c01042{bottom:798.720000pt;}
.y14_c01042{bottom:826.240000pt;}
.y11_c01042{bottom:831.360000pt;}
.y13_c01042{bottom:832.640000pt;}
.y10_c01042{bottom:833.920000pt;}
.y1a_c01042{bottom:834.560000pt;}
.y12_c01042{bottom:835.200000pt;}
.y1b_c01042{bottom:836.480000pt;}
.y8_c01042{bottom:869.760000pt;}
.y7_c01042{bottom:871.680000pt;}
.ya_c01042{bottom:872.320000pt;}
.yd_c01042{bottom:872.960000pt;}
.yf_c01042{bottom:874.240000pt;}
.ye_c01042{bottom:874.880000pt;}
.y3_c01042{bottom:907.520000pt;}
.y6_c01042{bottom:908.800000pt;}
.y4_c01042{bottom:909.440000pt;}
.y9_c01042{bottom:910.080000pt;}
.y2_c01042{bottom:910.720000pt;}
.y5_c01042{bottom:912.000000pt;}
.yc_c01042{bottom:912.640000pt;}
.yb_c01042{bottom:913.280000pt;}
.y1_c01042{bottom:968.320000pt;}
.hd_c01042{height:29.948750pt;}
.hb_c01042{height:34.556250pt;}
.ha_c01042{height:39.163750pt;}
.h6_c01042{height:41.467500pt;}
.h8_c01042{height:43.771250pt;}
.h7_c01042{height:46.075000pt;}
.h3_c01042{height:48.378750pt;}
.he_c01042{height:50.682500pt;}
.h9_c01042{height:52.986250pt;}
.h5_c01042{height:55.290000pt;}
.h2_c01042{height:57.593750pt;}
.h4_c01042{height:59.897500pt;}
.hc_c01042{height:62.201250pt;}
.hf_c01042{height:64.505000pt;}
.h1_c01042{height:1018.000000pt;}
.h0_c01042{height:1018.240000pt;}
.w1_c01042{width:731.333333pt;}
.w0_c01042{width:731.520000pt;}
.x0_c01042{left:0.000000pt;}
.x2_c01042{left:96.000000pt;}
.x14_c01042{left:97.280000pt;}
.x3_c01042{left:161.920000pt;}
.x15_c01042{left:163.200000pt;}
.x24_c01042{left:203.520000pt;}
.x4_c01042{left:240.000000pt;}
.x27_c01042{left:249.600000pt;}
.xd_c01042{left:278.400000pt;}
.x21_c01042{left:279.680000pt;}
.x28_c01042{left:288.640000pt;}
.x25_c01042{left:298.240000pt;}
.x22_c01042{left:317.440000pt;}
.xe_c01042{left:326.400000pt;}
.x23_c01042{left:327.680000pt;}
.x29_c01042{left:337.920000pt;}
.x26_c01042{left:346.240000pt;}
.x20_c01042{left:366.080000pt;}
.x5_c01042{left:412.800000pt;}
.x11_c01042{left:422.400000pt;}
.x6_c01042{left:451.200000pt;}
.xf_c01042{left:460.160000pt;}
.x12_c01042{left:461.440000pt;}
.x10_c01042{left:489.600000pt;}
.x1c_c01042{left:520.960000pt;}
.x7_c01042{left:529.920000pt;}
.x8_c01042{left:549.120000pt;}
.x16_c01042{left:567.040000pt;}
.x19_c01042{left:568.320000pt;}
.x1e_c01042{left:577.920000pt;}
.x13_c01042{left:595.840000pt;}
.x9_c01042{left:597.120000pt;}
.x1a_c01042{left:598.400000pt;}
.xa_c01042{left:625.920000pt;}
.x1b_c01042{left:627.200000pt;}
.x1_c01042{left:648.960000pt;}
.x1d_c01042{left:656.640000pt;}
.xb_c01042{left:664.320000pt;}
.x17_c01042{left:665.600000pt;}
.xc_c01042{left:682.240000pt;}
.x18_c01042{left:683.520000pt;}
.x1f_c01042{left:684.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0d43247a99a6bb9a79a90028.woff2')format("woff");}.ff1_c01043{font-family:ff1_c01043;line-height:1.109863;font-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_c01043{transform:matrix(0.167050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167050,0.000000,0.000000,0.250000,0,0);}
.m41_c01043{transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);}
.m1d_c01043{transform:matrix(0.202625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202625,0.000000,0.000000,0.250000,0,0);}
.m49_c01043{transform:matrix(0.204675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204675,0.000000,0.000000,0.250000,0,0);}
.m40_c01043{transform:matrix(0.207450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207450,0.000000,0.000000,0.250000,0,0);}
.m2e_c01043{transform:matrix(0.212175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212175,0.000000,0.000000,0.250000,0,0);}
.m3_c01043{transform:matrix(0.215600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215600,0.000000,0.000000,0.250000,0,0);}
.m5_c01043{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m12_c01043{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01043{transform:matrix(0.225475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225475,0.000000,0.000000,0.250000,0,0);}
.m22_c01043{transform:matrix(0.229650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229650,0.000000,0.000000,0.250000,0,0);}
.m3b_c01043{transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);}
.m19_c01043{transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);}
.m2b_c01043{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);}
.m2d_c01043{transform:matrix(0.235100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235100,0.000000,0.000000,0.250000,0,0);}
.m21_c01043{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m16_c01043{transform:matrix(0.240225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240225,0.000000,0.000000,0.250000,0,0);}
.m14_c01043{transform:matrix(0.240300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240300,0.000000,0.000000,0.250000,0,0);}
.m4a_c01043{transform:matrix(0.240450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240450,0.000000,0.000000,0.250000,0,0);}
.m1b_c01043{transform:matrix(0.241025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241025,0.000000,0.000000,0.250000,0,0);}
.m2_c01043{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);}
.m45_c01043{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m34_c01043{transform:matrix(0.245850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245850,0.000000,0.000000,0.250000,0,0);}
.m4f_c01043{transform:matrix(0.249050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249050,0.000000,0.000000,0.250000,0,0);}
.m6_c01043{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01043{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);}
.m23_c01043{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);}
.m27_c01043{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m8_c01043{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m7_c01043{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);}
.m46_c01043{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.me_c01043{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m20_c01043{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m24_c01043{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m0_c01043{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.mc_c01043{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mb_c01043{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);}
.m25_c01043{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m28_c01043{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m10_c01043{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m15_c01043{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01043{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m31_c01043{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m37_c01043{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01043{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m26_c01043{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m30_c01043{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01043{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01043{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m38_c01043{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m9_c01043{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m13_c01043{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01043{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m4_c01043{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.md_c01043{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m44_c01043{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.mf_c01043{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m43_c01043{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01043{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);}
.m4b_c01043{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m36_c01043{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m39_c01043{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01043{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);}
.m3e_c01043{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);}
.m47_c01043{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m18_c01043{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m51_c01043{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);}
.m35_c01043{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m32_c01043{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m33_c01043{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);}
.m48_c01043{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m11_c01043{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m1_c01043{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01043{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01043{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m50_c01043{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01043{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m29_c01043{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.m4d_c01043{transform:matrix(0.745000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.745000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.745000,0.000000,0.000000,0.250000,0,0);}
.m42_c01043{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01043{transform:matrix(0.842500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.842500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.842500,0.000000,0.000000,0.250000,0,0);}
.m17_c01043{transform:matrix(1.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.195000,0.000000,0.000000,0.250000,0,0);}
.v2_c01043{vertical-align:-2.880000px;}
.v0_c01043{vertical-align:0.000000px;}
.v1_c01043{vertical-align:5.760000px;}
.ls0_c01043{letter-spacing:0.000000px;}
.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:-45.334080px;}
.ws2_c01043{word-spacing:0.000000px;}
.ws1_c01043{word-spacing:3.086400px;}
._0_c01043{width:6.563040px;}
.fc0_c01043{color:transparent;}
.fs9_c01043{font-size:31.680000px;}
.fs1_c01043{font-size:34.560000px;}
.fsf_c01043{font-size:40.320000px;}
.fs7_c01043{font-size:43.200000px;}
.fs5_c01043{font-size:48.960000px;}
.fs6_c01043{font-size:51.840000px;}
.fse_c01043{font-size:54.720000px;}
.fsd_c01043{font-size:57.600000px;}
.fs10_c01043{font-size:60.480000px;}
.fsc_c01043{font-size:63.360000px;}
.fs0_c01043{font-size:66.240000px;}
.fs4_c01043{font-size:69.120000px;}
.fs8_c01043{font-size:74.880000px;}
.fs2_c01043{font-size:77.760000px;}
.fs3_c01043{font-size:80.640000px;}
.fsb_c01043{font-size:83.520000px;}
.fsa_c01043{font-size:86.400000px;}
.y0_c01043{bottom:0.000000px;}
.y3f_c01043{bottom:54.000000px;}
.y3c_c01043{bottom:54.720000px;}
.y3d_c01043{bottom:57.600000px;}
.y3e_c01043{bottom:58.320000px;}
.y3b_c01043{bottom:59.040000px;}
.y3a_c01043{bottom:97.920000px;}
.y7a_c01043{bottom:98.640000px;}
.y7b_c01043{bottom:100.080000px;}
.y39_c01043{bottom:101.520000px;}
.y38_c01043{bottom:140.400000px;}
.y76_c01043{bottom:141.120000px;}
.y77_c01043{bottom:141.840000px;}
.y37_c01043{bottom:142.560000px;}
.y79_c01043{bottom:143.280000px;}
.y78_c01043{bottom:144.000000px;}
.y36_c01043{bottom:182.880000px;}
.y75_c01043{bottom:184.320000px;}
.y35_c01043{bottom:185.760000px;}
.y74_c01043{bottom:186.480000px;}
.y34_c01043{bottom:225.360000px;}
.y33_c01043{bottom:226.800000px;}
.y72_c01043{bottom:227.520000px;}
.y71_c01043{bottom:228.960000px;}
.y73_c01043{bottom:229.680000px;}
.y30_c01043{bottom:268.560000px;}
.y31_c01043{bottom:270.720000px;}
.y32_c01043{bottom:271.440000px;}
.y2f_c01043{bottom:299.520000px;}
.y2e_c01043{bottom:300.960000px;}
.y70_c01043{bottom:301.680000px;}
.y6f_c01043{bottom:302.400000px;}
.y2d_c01043{bottom:303.120000px;}
.y6e_c01043{bottom:303.840000px;}
.y2c_c01043{bottom:342.000000px;}
.y2b_c01043{bottom:345.600000px;}
.y6c_c01043{bottom:346.320000px;}
.y6d_c01043{bottom:347.040000px;}
.y2a_c01043{bottom:385.200000px;}
.y28_c01043{bottom:385.920000px;}
.y29_c01043{bottom:387.360000px;}
.y26_c01043{bottom:388.080000px;}
.y6b_c01043{bottom:388.800000px;}
.y27_c01043{bottom:389.520000px;}
.y6a_c01043{bottom:390.240000px;}
.y25_c01043{bottom:429.120000px;}
.y24_c01043{bottom:429.840000px;}
.y23_c01043{bottom:430.560000px;}
.y68_c01043{bottom:431.280000px;}
.y67_c01043{bottom:432.720000px;}
.y69_c01043{bottom:433.440000px;}
.y22_c01043{bottom:471.600000px;}
.y21_c01043{bottom:472.320000px;}
.y1f_c01043{bottom:473.760000px;}
.y65_c01043{bottom:474.480000px;}
.y20_c01043{bottom:475.200000px;}
.y64_c01043{bottom:475.920000px;}
.y66_c01043{bottom:476.640000px;}
.y1b_c01043{bottom:514.080000px;}
.y1d_c01043{bottom:514.800000px;}
.y1a_c01043{bottom:516.960000px;}
.y1c_c01043{bottom:517.680000px;}
.y63_c01043{bottom:518.400000px;}
.y1e_c01043{bottom:519.120000px;}
.y19_c01043{bottom:558.000000px;}
.y18_c01043{bottom:560.160000px;}
.y62_c01043{bottom:561.600000px;}
.y17_c01043{bottom:599.760000px;}
.y15_c01043{bottom:601.920000px;}
.y61_c01043{bottom:602.640000px;}
.y16_c01043{bottom:603.360000px;}
.y5f_c01043{bottom:604.800000px;}
.y60_c01043{bottom:605.520000px;}
.y14_c01043{bottom:643.680000px;}
.y13_c01043{bottom:645.120000px;}
.y5e_c01043{bottom:645.840000px;}
.y5d_c01043{bottom:646.560000px;}
.y5c_c01043{bottom:647.280000px;}
.y12_c01043{bottom:685.440000px;}
.y5a_c01043{bottom:686.880000px;}
.y11_c01043{bottom:688.320000px;}
.y5b_c01043{bottom:689.040000px;}
.y59_c01043{bottom:689.760000px;}
.y10_c01043{bottom:728.640000px;}
.yf_c01043{bottom:730.080000px;}
.y57_c01043{bottom:730.800000px;}
.y58_c01043{bottom:731.520000px;}
.y56_c01043{bottom:732.960000px;}
.ye_c01043{bottom:771.120000px;}
.yd_c01043{bottom:773.280000px;}
.y54_c01043{bottom:774.000000px;}
.y55_c01043{bottom:774.720000px;}
.y53_c01043{bottom:775.440000px;}
.yc_c01043{bottom:813.600000px;}
.yb_c01043{bottom:815.040000px;}
.y50_c01043{bottom:818.640000px;}
.y52_c01043{bottom:819.360000px;}
.y51_c01043{bottom:820.080000px;}
.ya_c01043{bottom:856.800000px;}
.y9_c01043{bottom:858.240000px;}
.y4e_c01043{bottom:860.400000px;}
.y4f_c01043{bottom:861.120000px;}
.y4d_c01043{bottom:861.840000px;}
.y8_c01043{bottom:899.280000px;}
.y7_c01043{bottom:901.440000px;}
.y4b_c01043{bottom:902.880000px;}
.y4c_c01043{bottom:903.600000px;}
.y4a_c01043{bottom:904.320000px;}
.y6_c01043{bottom:942.480000px;}
.y5_c01043{bottom:944.640000px;}
.y49_c01043{bottom:947.520000px;}
.y47_c01043{bottom:948.240000px;}
.y48_c01043{bottom:948.960000px;}
.y3_c01043{bottom:985.680000px;}
.y4_c01043{bottom:986.400000px;}
.y1_c01043{bottom:987.120000px;}
.y2_c01043{bottom:987.840000px;}
.y45_c01043{bottom:989.280000px;}
.y44_c01043{bottom:990.720000px;}
.y46_c01043{bottom:991.440000px;}
.y43_c01043{bottom:1033.200000px;}
.y41_c01043{bottom:1034.640000px;}
.y42_c01043{bottom:1035.360000px;}
.y40_c01043{bottom:1095.840000px;}
.hb_c01043{height:28.508906px;}
.h3_c01043{height:31.100625px;}
.h10_c01043{height:36.284062px;}
.h9_c01043{height:38.875781px;}
.h7_c01043{height:44.059219px;}
.h8_c01043{height:46.650937px;}
.hf_c01043{height:49.242656px;}
.he_c01043{height:51.834375px;}
.h12_c01043{height:54.426094px;}
.h11_c01043{height:57.017812px;}
.h2_c01043{height:59.609531px;}
.h6_c01043{height:62.201250px;}
.ha_c01043{height:67.384687px;}
.h4_c01043{height:69.976406px;}
.h5_c01043{height:72.568125px;}
.hd_c01043{height:75.159844px;}
.hc_c01043{height:77.751563px;}
.h1_c01043{height:1149.750000px;}
.h0_c01043{height:1149.840000px;}
.w1_c01043{width:822.750000px;}
.w0_c01043{width:822.960000px;}
.x0_c01043{left:0.000000px;}
.x1_c01043{left:112.320000px;}
.x2_c01043{left:156.240000px;}
.x6_c01043{left:157.680000px;}
.x3_c01043{left:185.760000px;}
.x5_c01043{left:187.200000px;}
.xc_c01043{left:188.640000px;}
.xd_c01043{left:241.920000px;}
.x4_c01043{left:295.920000px;}
.xa_c01043{left:317.520000px;}
.xf_c01043{left:328.320000px;}
.x7_c01043{left:338.400000px;}
.x14_c01043{left:371.520000px;}
.x11_c01043{left:383.040000px;}
.xe_c01043{left:392.400000px;}
.x12_c01043{left:437.040000px;}
.xb_c01043{left:447.120000px;}
.x10_c01043{left:479.520000px;}
.x8_c01043{left:491.040000px;}
.x13_c01043{left:501.120000px;}
.x9_c01043{left:532.800000px;}
.x1c_c01043{left:588.240000px;}
.x16_c01043{left:589.680000px;}
.x21_c01043{left:599.040000px;}
.x17_c01043{left:621.360000px;}
.x18_c01043{left:641.520000px;}
.x1f_c01043{left:675.360000px;}
.x1a_c01043{left:676.800000px;}
.x1b_c01043{left:708.480000px;}
.x15_c01043{left:717.120000px;}
.x1e_c01043{left:740.880000px;}
.x1d_c01043{left:742.320000px;}
.x19_c01043{left:751.680000px;}
.x20_c01043{left:771.840000px;}
@media print{
.v2_c01043{vertical-align:-2.560000pt;}
.v0_c01043{vertical-align:0.000000pt;}
.v1_c01043{vertical-align:5.120000pt;}
.ls0_c01043{letter-spacing:0.000000pt;}
.ws0_c01043{word-spacing:-40.296960pt;}
.ws2_c01043{word-spacing:0.000000pt;}
.ws1_c01043{word-spacing:2.743467pt;}
._0_c01043{width:5.833813pt;}
.fs9_c01043{font-size:28.160000pt;}
.fs1_c01043{font-size:30.720000pt;}
.fsf_c01043{font-size:35.840000pt;}
.fs7_c01043{font-size:38.400000pt;}
.fs5_c01043{font-size:43.520000pt;}
.fs6_c01043{font-size:46.080000pt;}
.fse_c01043{font-size:48.640000pt;}
.fsd_c01043{font-size:51.200000pt;}
.fs10_c01043{font-size:53.760000pt;}
.fsc_c01043{font-size:56.320000pt;}
.fs0_c01043{font-size:58.880000pt;}
.fs4_c01043{font-size:61.440000pt;}
.fs8_c01043{font-size:66.560000pt;}
.fs2_c01043{font-size:69.120000pt;}
.fs3_c01043{font-size:71.680000pt;}
.fsb_c01043{font-size:74.240000pt;}
.fsa_c01043{font-size:76.800000pt;}
.y0_c01043{bottom:0.000000pt;}
.y3f_c01043{bottom:48.000000pt;}
.y3c_c01043{bottom:48.640000pt;}
.y3d_c01043{bottom:51.200000pt;}
.y3e_c01043{bottom:51.840000pt;}
.y3b_c01043{bottom:52.480000pt;}
.y3a_c01043{bottom:87.040000pt;}
.y7a_c01043{bottom:87.680000pt;}
.y7b_c01043{bottom:88.960000pt;}
.y39_c01043{bottom:90.240000pt;}
.y38_c01043{bottom:124.800000pt;}
.y76_c01043{bottom:125.440000pt;}
.y77_c01043{bottom:126.080000pt;}
.y37_c01043{bottom:126.720000pt;}
.y79_c01043{bottom:127.360000pt;}
.y78_c01043{bottom:128.000000pt;}
.y36_c01043{bottom:162.560000pt;}
.y75_c01043{bottom:163.840000pt;}
.y35_c01043{bottom:165.120000pt;}
.y74_c01043{bottom:165.760000pt;}
.y34_c01043{bottom:200.320000pt;}
.y33_c01043{bottom:201.600000pt;}
.y72_c01043{bottom:202.240000pt;}
.y71_c01043{bottom:203.520000pt;}
.y73_c01043{bottom:204.160000pt;}
.y30_c01043{bottom:238.720000pt;}
.y31_c01043{bottom:240.640000pt;}
.y32_c01043{bottom:241.280000pt;}
.y2f_c01043{bottom:266.240000pt;}
.y2e_c01043{bottom:267.520000pt;}
.y70_c01043{bottom:268.160000pt;}
.y6f_c01043{bottom:268.800000pt;}
.y2d_c01043{bottom:269.440000pt;}
.y6e_c01043{bottom:270.080000pt;}
.y2c_c01043{bottom:304.000000pt;}
.y2b_c01043{bottom:307.200000pt;}
.y6c_c01043{bottom:307.840000pt;}
.y6d_c01043{bottom:308.480000pt;}
.y2a_c01043{bottom:342.400000pt;}
.y28_c01043{bottom:343.040000pt;}
.y29_c01043{bottom:344.320000pt;}
.y26_c01043{bottom:344.960000pt;}
.y6b_c01043{bottom:345.600000pt;}
.y27_c01043{bottom:346.240000pt;}
.y6a_c01043{bottom:346.880000pt;}
.y25_c01043{bottom:381.440000pt;}
.y24_c01043{bottom:382.080000pt;}
.y23_c01043{bottom:382.720000pt;}
.y68_c01043{bottom:383.360000pt;}
.y67_c01043{bottom:384.640000pt;}
.y69_c01043{bottom:385.280000pt;}
.y22_c01043{bottom:419.200000pt;}
.y21_c01043{bottom:419.840000pt;}
.y1f_c01043{bottom:421.120000pt;}
.y65_c01043{bottom:421.760000pt;}
.y20_c01043{bottom:422.400000pt;}
.y64_c01043{bottom:423.040000pt;}
.y66_c01043{bottom:423.680000pt;}
.y1b_c01043{bottom:456.960000pt;}
.y1d_c01043{bottom:457.600000pt;}
.y1a_c01043{bottom:459.520000pt;}
.y1c_c01043{bottom:460.160000pt;}
.y63_c01043{bottom:460.800000pt;}
.y1e_c01043{bottom:461.440000pt;}
.y19_c01043{bottom:496.000000pt;}
.y18_c01043{bottom:497.920000pt;}
.y62_c01043{bottom:499.200000pt;}
.y17_c01043{bottom:533.120000pt;}
.y15_c01043{bottom:535.040000pt;}
.y61_c01043{bottom:535.680000pt;}
.y16_c01043{bottom:536.320000pt;}
.y5f_c01043{bottom:537.600000pt;}
.y60_c01043{bottom:538.240000pt;}
.y14_c01043{bottom:572.160000pt;}
.y13_c01043{bottom:573.440000pt;}
.y5e_c01043{bottom:574.080000pt;}
.y5d_c01043{bottom:574.720000pt;}
.y5c_c01043{bottom:575.360000pt;}
.y12_c01043{bottom:609.280000pt;}
.y5a_c01043{bottom:610.560000pt;}
.y11_c01043{bottom:611.840000pt;}
.y5b_c01043{bottom:612.480000pt;}
.y59_c01043{bottom:613.120000pt;}
.y10_c01043{bottom:647.680000pt;}
.yf_c01043{bottom:648.960000pt;}
.y57_c01043{bottom:649.600000pt;}
.y58_c01043{bottom:650.240000pt;}
.y56_c01043{bottom:651.520000pt;}
.ye_c01043{bottom:685.440000pt;}
.yd_c01043{bottom:687.360000pt;}
.y54_c01043{bottom:688.000000pt;}
.y55_c01043{bottom:688.640000pt;}
.y53_c01043{bottom:689.280000pt;}
.yc_c01043{bottom:723.200000pt;}
.yb_c01043{bottom:724.480000pt;}
.y50_c01043{bottom:727.680000pt;}
.y52_c01043{bottom:728.320000pt;}
.y51_c01043{bottom:728.960000pt;}
.ya_c01043{bottom:761.600000pt;}
.y9_c01043{bottom:762.880000pt;}
.y4e_c01043{bottom:764.800000pt;}
.y4f_c01043{bottom:765.440000pt;}
.y4d_c01043{bottom:766.080000pt;}
.y8_c01043{bottom:799.360000pt;}
.y7_c01043{bottom:801.280000pt;}
.y4b_c01043{bottom:802.560000pt;}
.y4c_c01043{bottom:803.200000pt;}
.y4a_c01043{bottom:803.840000pt;}
.y6_c01043{bottom:837.760000pt;}
.y5_c01043{bottom:839.680000pt;}
.y49_c01043{bottom:842.240000pt;}
.y47_c01043{bottom:842.880000pt;}
.y48_c01043{bottom:843.520000pt;}
.y3_c01043{bottom:876.160000pt;}
.y4_c01043{bottom:876.800000pt;}
.y1_c01043{bottom:877.440000pt;}
.y2_c01043{bottom:878.080000pt;}
.y45_c01043{bottom:879.360000pt;}
.y44_c01043{bottom:880.640000pt;}
.y46_c01043{bottom:881.280000pt;}
.y43_c01043{bottom:918.400000pt;}
.y41_c01043{bottom:919.680000pt;}
.y42_c01043{bottom:920.320000pt;}
.y40_c01043{bottom:974.080000pt;}
.hb_c01043{height:25.341250pt;}
.h3_c01043{height:27.645000pt;}
.h10_c01043{height:32.252500pt;}
.h9_c01043{height:34.556250pt;}
.h7_c01043{height:39.163750pt;}
.h8_c01043{height:41.467500pt;}
.hf_c01043{height:43.771250pt;}
.he_c01043{height:46.075000pt;}
.h12_c01043{height:48.378750pt;}
.h11_c01043{height:50.682500pt;}
.h2_c01043{height:52.986250pt;}
.h6_c01043{height:55.290000pt;}
.ha_c01043{height:59.897500pt;}
.h4_c01043{height:62.201250pt;}
.h5_c01043{height:64.505000pt;}
.hd_c01043{height:66.808750pt;}
.hc_c01043{height:69.112500pt;}
.h1_c01043{height:1022.000000pt;}
.h0_c01043{height:1022.080000pt;}
.w1_c01043{width:731.333333pt;}
.w0_c01043{width:731.520000pt;}
.x0_c01043{left:0.000000pt;}
.x1_c01043{left:99.840000pt;}
.x2_c01043{left:138.880000pt;}
.x6_c01043{left:140.160000pt;}
.x3_c01043{left:165.120000pt;}
.x5_c01043{left:166.400000pt;}
.xc_c01043{left:167.680000pt;}
.xd_c01043{left:215.040000pt;}
.x4_c01043{left:263.040000pt;}
.xa_c01043{left:282.240000pt;}
.xf_c01043{left:291.840000pt;}
.x7_c01043{left:300.800000pt;}
.x14_c01043{left:330.240000pt;}
.x11_c01043{left:340.480000pt;}
.xe_c01043{left:348.800000pt;}
.x12_c01043{left:388.480000pt;}
.xb_c01043{left:397.440000pt;}
.x10_c01043{left:426.240000pt;}
.x8_c01043{left:436.480000pt;}
.x13_c01043{left:445.440000pt;}
.x9_c01043{left:473.600000pt;}
.x1c_c01043{left:522.880000pt;}
.x16_c01043{left:524.160000pt;}
.x21_c01043{left:532.480000pt;}
.x17_c01043{left:552.320000pt;}
.x18_c01043{left:570.240000pt;}
.x1f_c01043{left:600.320000pt;}
.x1a_c01043{left:601.600000pt;}
.x1b_c01043{left:629.760000pt;}
.x15_c01043{left:637.440000pt;}
.x1e_c01043{left:658.560000pt;}
.x1d_c01043{left:659.840000pt;}
.x19_c01043{left:668.160000pt;}
.x20_c01043{left:686.080000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_24fd3e68917fa29deea7a2c3.woff2')format("woff");}.ff1_c01044{font-family:ff1_c01044;line-height:1.109863;font-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_c01044{transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);}
.m2e_c01044{transform:matrix(0.206675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206675,0.000000,0.000000,0.250000,0,0);}
.m4a_c01044{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01044{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_c01044{transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);}
.m1b_c01044{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m13_c01044{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m9_c01044{transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);}
.m8_c01044{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_c01044{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);}
.m2a_c01044{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);}
.m31_c01044{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);}
.m29_c01044{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mb_c01044{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m3_c01044{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m22_c01044{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01044{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);}
.m2d_c01044{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m41_c01044{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m16_c01044{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.me_c01044{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m6_c01044{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m26_c01044{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01044{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1_c01044{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01044{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m4_c01044{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m21_c01044{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m27_c01044{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01044{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mf_c01044{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m10_c01044{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01044{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m2_c01044{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m7_c01044{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m32_c01044{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);}
.m23_c01044{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);}
.m2c_c01044{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);}
.m3b_c01044{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.mc_c01044{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_c01044{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01044{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m0_c01044{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);}
.m15_c01044{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);}
.m18_c01044{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m36_c01044{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);}
.m25_c01044{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);}
.m49_c01044{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m45_c01044{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);}
.m46_c01044{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m20_c01044{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01044{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m47_c01044{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m19_c01044{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m39_c01044{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m38_c01044{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m40_c01044{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m48_c01044{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m33_c01044{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01044{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m44_c01044{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m37_c01044{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);}
.m34_c01044{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m42_c01044{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);}
.m3d_c01044{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01044{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m24_c01044{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);}
.m30_c01044{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01044{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m35_c01044{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);}
.m3c_c01044{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m14_c01044{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01044{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m12_c01044{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m43_c01044{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.m28_c01044{transform:matrix(0.967500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.967500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.967500,0.000000,0.000000,0.250000,0,0);}
.v2_c01044{vertical-align:-5.760000px;}
.v3_c01044{vertical-align:-2.880000px;}
.v0_c01044{vertical-align:0.000000px;}
.v1_c01044{vertical-align:5.760000px;}
.ls1_c01044{letter-spacing:0.000000px;}
.ls0_c01044{letter-spacing:47.976960px;}
.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;}
}
.ws3_c01044{word-spacing:0.000000px;}
.ws1_c01044{word-spacing:9.212400px;}
.ws2_c01044{word-spacing:11.690400px;}
.ws0_c01044{word-spacing:62.457333px;}
.fc0_c01044{color:transparent;}
.fsd_c01044{font-size:20.160000px;}
.fs9_c01044{font-size:31.680000px;}
.fs10_c01044{font-size:37.440000px;}
.fs11_c01044{font-size:40.320000px;}
.fsb_c01044{font-size:43.200000px;}
.fsf_c01044{font-size:46.080000px;}
.fsa_c01044{font-size:48.960000px;}
.fs1_c01044{font-size:51.840000px;}
.fs4_c01044{font-size:54.720000px;}
.fs3_c01044{font-size:57.600000px;}
.fs5_c01044{font-size:60.480000px;}
.fs8_c01044{font-size:63.360000px;}
.fs6_c01044{font-size:66.240000px;}
.fs2_c01044{font-size:69.120000px;}
.fsc_c01044{font-size:72.000000px;}
.fs0_c01044{font-size:74.880000px;}
.fs7_c01044{font-size:77.760000px;}
.fse_c01044{font-size:103.680000px;}
.y0_c01044{bottom:0.000000px;}
.y6f_c01044{bottom:21.600000px;}
.y70_c01044{bottom:22.320000px;}
.y6e_c01044{bottom:23.040000px;}
.y6b_c01044{bottom:51.120000px;}
.y6c_c01044{bottom:51.840000px;}
.y6d_c01044{bottom:52.560000px;}
.y6a_c01044{bottom:54.000000px;}
.y68_c01044{bottom:94.320000px;}
.y66_c01044{bottom:95.040000px;}
.y67_c01044{bottom:97.200000px;}
.y65_c01044{bottom:97.920000px;}
.y64_c01044{bottom:125.280000px;}
.y62_c01044{bottom:126.720000px;}
.y69_c01044{bottom:128.160000px;}
.y61_c01044{bottom:128.880000px;}
.y63_c01044{bottom:129.600000px;}
.y5f_c01044{bottom:170.640000px;}
.y60_c01044{bottom:172.800000px;}
.y5d_c01044{bottom:201.600000px;}
.y71_c01044{bottom:203.040000px;}
.y5c_c01044{bottom:203.760000px;}
.y5e_c01044{bottom:205.200000px;}
.y59_c01044{bottom:244.080000px;}
.y5b_c01044{bottom:244.800000px;}
.y5a_c01044{bottom:247.680000px;}
.y56_c01044{bottom:277.200000px;}
.y57_c01044{bottom:277.920000px;}
.y54_c01044{bottom:278.640000px;}
.y55_c01044{bottom:280.080000px;}
.y58_c01044{bottom:280.800000px;}
.y53_c01044{bottom:318.960000px;}
.y51_c01044{bottom:322.560000px;}
.y52_c01044{bottom:323.280000px;}
.y4e_c01044{bottom:351.360000px;}
.y50_c01044{bottom:352.080000px;}
.y4f_c01044{bottom:354.960000px;}
.y4c_c01044{bottom:383.760000px;}
.y4b_c01044{bottom:384.480000px;}
.y49_c01044{bottom:385.200000px;}
.y4d_c01044{bottom:385.920000px;}
.y4a_c01044{bottom:387.360000px;}
.y48_c01044{bottom:426.240000px;}
.y47_c01044{bottom:426.960000px;}
.y44_c01044{bottom:459.360000px;}
.y43_c01044{bottom:460.080000px;}
.y46_c01044{bottom:460.800000px;}
.y42_c01044{bottom:461.520000px;}
.y45_c01044{bottom:462.240000px;}
.y3f_c01044{bottom:501.120000px;}
.y3d_c01044{bottom:502.560000px;}
.y3c_c01044{bottom:503.280000px;}
.y41_c01044{bottom:504.000000px;}
.y3e_c01044{bottom:505.440000px;}
.y40_c01044{bottom:506.880000px;}
.y38_c01044{bottom:537.120000px;}
.y37_c01044{bottom:544.320000px;}
.y3a_c01044{bottom:545.760000px;}
.y36_c01044{bottom:546.480000px;}
.y39_c01044{bottom:547.200000px;}
.y3b_c01044{bottom:548.640000px;}
.y33_c01044{bottom:586.800000px;}
.y35_c01044{bottom:587.520000px;}
.y32_c01044{bottom:589.680000px;}
.y34_c01044{bottom:591.120000px;}
.y31_c01044{bottom:630.000000px;}
.y2d_c01044{bottom:662.400000px;}
.y2c_c01044{bottom:664.560000px;}
.y2e_c01044{bottom:666.000000px;}
.y2f_c01044{bottom:666.720000px;}
.y30_c01044{bottom:669.600000px;}
.y2b_c01044{bottom:704.880000px;}
.y25_c01044{bottom:737.280000px;}
.y27_c01044{bottom:738.720000px;}
.y28_c01044{bottom:739.440000px;}
.y24_c01044{bottom:740.160000px;}
.y2a_c01044{bottom:740.880000px;}
.y26_c01044{bottom:741.600000px;}
.y29_c01044{bottom:743.040000px;}
.y23_c01044{bottom:781.200000px;}
.y21_c01044{bottom:781.920000px;}
.y22_c01044{bottom:783.360000px;}
.y1c_c01044{bottom:812.160000px;}
.y1e_c01044{bottom:813.600000px;}
.y1b_c01044{bottom:815.040000px;}
.y1f_c01044{bottom:815.760000px;}
.y20_c01044{bottom:816.480000px;}
.y1d_c01044{bottom:817.200000px;}
.y17_c01044{bottom:855.360000px;}
.y15_c01044{bottom:856.800000px;}
.y16_c01044{bottom:858.240000px;}
.y19_c01044{bottom:858.960000px;}
.y18_c01044{bottom:860.400000px;}
.y1a_c01044{bottom:861.120000px;}
.yf_c01044{bottom:898.560000px;}
.ye_c01044{bottom:900.720000px;}
.y14_c01044{bottom:902.160000px;}
.yd_c01044{bottom:941.040000px;}
.yc_c01044{bottom:943.200000px;}
.y12_c01044{bottom:943.920000px;}
.y11_c01044{bottom:944.640000px;}
.y10_c01044{bottom:945.360000px;}
.y13_c01044{bottom:946.080000px;}
.ya_c01044{bottom:982.800000px;}
.yb_c01044{bottom:984.240000px;}
.y9_c01044{bottom:985.680000px;}
.y6_c01044{bottom:987.120000px;}
.y5_c01044{bottom:987.840000px;}
.y8_c01044{bottom:1026.720000px;}
.y7_c01044{bottom:1028.160000px;}
.y3_c01044{bottom:1030.320000px;}
.y2_c01044{bottom:1031.040000px;}
.y4_c01044{bottom:1032.480000px;}
.y1_c01044{bottom:1088.640000px;}
.h10_c01044{height:18.142031px;}
.hc_c01044{height:28.508906px;}
.h13_c01044{height:33.692344px;}
.h14_c01044{height:36.284062px;}
.he_c01044{height:38.875781px;}
.h12_c01044{height:41.467500px;}
.hd_c01044{height:44.059219px;}
.hb_c01044{height:46.650937px;}
.h6_c01044{height:49.242656px;}
.h5_c01044{height:51.834375px;}
.h3_c01044{height:52.410938px;}
.h7_c01044{height:54.426094px;}
.ha_c01044{height:57.017812px;}
.h8_c01044{height:59.609531px;}
.h4_c01044{height:62.201250px;}
.hf_c01044{height:64.792969px;}
.h2_c01044{height:67.384687px;}
.h9_c01044{height:69.976406px;}
.h11_c01044{height:93.301875px;}
.h0_c01044{height:1142.640000px;}
.h1_c01044{height:1143.000000px;}
.w0_c01044{width:812.160000px;}
.w1_c01044{width:812.250000px;}
.x0_c01044{left:0.000000px;}
.x6_c01044{left:105.840000px;}
.x1c_c01044{left:107.280000px;}
.xb_c01044{left:149.760000px;}
.x7_c01044{left:180.000000px;}
.x16_c01044{left:181.440000px;}
.x15_c01044{left:182.880000px;}
.x30_c01044{left:224.640000px;}
.x11_c01044{left:235.440000px;}
.x8_c01044{left:267.840000px;}
.x12_c01044{left:277.920000px;}
.x31_c01044{left:279.360000px;}
.x2b_c01044{left:289.440000px;}
.x32_c01044{left:299.520000px;}
.x13_c01044{left:309.600000px;}
.x1a_c01044{left:311.040000px;}
.x1e_c01044{left:322.560000px;}
.x23_c01044{left:332.640000px;}
.xe_c01044{left:354.240000px;}
.x1b_c01044{left:365.760000px;}
.x27_c01044{left:375.840000px;}
.x1f_c01044{left:377.280000px;}
.x2a_c01044{left:386.640000px;}
.x24_c01044{left:388.080000px;}
.x2c_c01044{left:398.160000px;}
.xf_c01044{left:408.240000px;}
.x2f_c01044{left:419.760000px;}
.x22_c01044{left:430.560000px;}
.x2d_c01044{left:440.640000px;}
.x17_c01044{left:452.160000px;}
.xc_c01044{left:461.520000px;}
.x28_c01044{left:472.320000px;}
.x25_c01044{left:483.840000px;}
.x2e_c01044{left:495.360000px;}
.x21_c01044{left:505.440000px;}
.xd_c01044{left:516.960000px;}
.x29_c01044{left:527.040000px;}
.x26_c01044{left:533.520000px;}
.x20_c01044{left:583.200000px;}
.x2_c01044{left:592.560000px;}
.x10_c01044{left:594.000000px;}
.x5_c01044{left:614.880000px;}
.x18_c01044{left:624.240000px;}
.x3_c01044{left:635.040000px;}
.x19_c01044{left:636.480000px;}
.x14_c01044{left:668.160000px;}
.x9_c01044{left:669.600000px;}
.x1_c01044{left:699.120000px;}
.xa_c01044{left:702.000000px;}
.x1d_c01044{left:734.400000px;}
.x33_c01044{left:743.760000px;}
.x4_c01044{left:745.200000px;}
.x34_c01044{left:746.640000px;}
@media print{
.v2_c01044{vertical-align:-5.120000pt;}
.v3_c01044{vertical-align:-2.560000pt;}
.v0_c01044{vertical-align:0.000000pt;}
.v1_c01044{vertical-align:5.120000pt;}
.ls1_c01044{letter-spacing:0.000000pt;}
.ls0_c01044{letter-spacing:42.646187pt;}
.ws3_c01044{word-spacing:0.000000pt;}
.ws1_c01044{word-spacing:8.188800pt;}
.ws2_c01044{word-spacing:10.391467pt;}
.ws0_c01044{word-spacing:55.517629pt;}
.fsd_c01044{font-size:17.920000pt;}
.fs9_c01044{font-size:28.160000pt;}
.fs10_c01044{font-size:33.280000pt;}
.fs11_c01044{font-size:35.840000pt;}
.fsb_c01044{font-size:38.400000pt;}
.fsf_c01044{font-size:40.960000pt;}
.fsa_c01044{font-size:43.520000pt;}
.fs1_c01044{font-size:46.080000pt;}
.fs4_c01044{font-size:48.640000pt;}
.fs3_c01044{font-size:51.200000pt;}
.fs5_c01044{font-size:53.760000pt;}
.fs8_c01044{font-size:56.320000pt;}
.fs6_c01044{font-size:58.880000pt;}
.fs2_c01044{font-size:61.440000pt;}
.fsc_c01044{font-size:64.000000pt;}
.fs0_c01044{font-size:66.560000pt;}
.fs7_c01044{font-size:69.120000pt;}
.fse_c01044{font-size:92.160000pt;}
.y0_c01044{bottom:0.000000pt;}
.y6f_c01044{bottom:19.200000pt;}
.y70_c01044{bottom:19.840000pt;}
.y6e_c01044{bottom:20.480000pt;}
.y6b_c01044{bottom:45.440000pt;}
.y6c_c01044{bottom:46.080000pt;}
.y6d_c01044{bottom:46.720000pt;}
.y6a_c01044{bottom:48.000000pt;}
.y68_c01044{bottom:83.840000pt;}
.y66_c01044{bottom:84.480000pt;}
.y67_c01044{bottom:86.400000pt;}
.y65_c01044{bottom:87.040000pt;}
.y64_c01044{bottom:111.360000pt;}
.y62_c01044{bottom:112.640000pt;}
.y69_c01044{bottom:113.920000pt;}
.y61_c01044{bottom:114.560000pt;}
.y63_c01044{bottom:115.200000pt;}
.y5f_c01044{bottom:151.680000pt;}
.y60_c01044{bottom:153.600000pt;}
.y5d_c01044{bottom:179.200000pt;}
.y71_c01044{bottom:180.480000pt;}
.y5c_c01044{bottom:181.120000pt;}
.y5e_c01044{bottom:182.400000pt;}
.y59_c01044{bottom:216.960000pt;}
.y5b_c01044{bottom:217.600000pt;}
.y5a_c01044{bottom:220.160000pt;}
.y56_c01044{bottom:246.400000pt;}
.y57_c01044{bottom:247.040000pt;}
.y54_c01044{bottom:247.680000pt;}
.y55_c01044{bottom:248.960000pt;}
.y58_c01044{bottom:249.600000pt;}
.y53_c01044{bottom:283.520000pt;}
.y51_c01044{bottom:286.720000pt;}
.y52_c01044{bottom:287.360000pt;}
.y4e_c01044{bottom:312.320000pt;}
.y50_c01044{bottom:312.960000pt;}
.y4f_c01044{bottom:315.520000pt;}
.y4c_c01044{bottom:341.120000pt;}
.y4b_c01044{bottom:341.760000pt;}
.y49_c01044{bottom:342.400000pt;}
.y4d_c01044{bottom:343.040000pt;}
.y4a_c01044{bottom:344.320000pt;}
.y48_c01044{bottom:378.880000pt;}
.y47_c01044{bottom:379.520000pt;}
.y44_c01044{bottom:408.320000pt;}
.y43_c01044{bottom:408.960000pt;}
.y46_c01044{bottom:409.600000pt;}
.y42_c01044{bottom:410.240000pt;}
.y45_c01044{bottom:410.880000pt;}
.y3f_c01044{bottom:445.440000pt;}
.y3d_c01044{bottom:446.720000pt;}
.y3c_c01044{bottom:447.360000pt;}
.y41_c01044{bottom:448.000000pt;}
.y3e_c01044{bottom:449.280000pt;}
.y40_c01044{bottom:450.560000pt;}
.y38_c01044{bottom:477.440000pt;}
.y37_c01044{bottom:483.840000pt;}
.y3a_c01044{bottom:485.120000pt;}
.y36_c01044{bottom:485.760000pt;}
.y39_c01044{bottom:486.400000pt;}
.y3b_c01044{bottom:487.680000pt;}
.y33_c01044{bottom:521.600000pt;}
.y35_c01044{bottom:522.240000pt;}
.y32_c01044{bottom:524.160000pt;}
.y34_c01044{bottom:525.440000pt;}
.y31_c01044{bottom:560.000000pt;}
.y2d_c01044{bottom:588.800000pt;}
.y2c_c01044{bottom:590.720000pt;}
.y2e_c01044{bottom:592.000000pt;}
.y2f_c01044{bottom:592.640000pt;}
.y30_c01044{bottom:595.200000pt;}
.y2b_c01044{bottom:626.560000pt;}
.y25_c01044{bottom:655.360000pt;}
.y27_c01044{bottom:656.640000pt;}
.y28_c01044{bottom:657.280000pt;}
.y24_c01044{bottom:657.920000pt;}
.y2a_c01044{bottom:658.560000pt;}
.y26_c01044{bottom:659.200000pt;}
.y29_c01044{bottom:660.480000pt;}
.y23_c01044{bottom:694.400000pt;}
.y21_c01044{bottom:695.040000pt;}
.y22_c01044{bottom:696.320000pt;}
.y1c_c01044{bottom:721.920000pt;}
.y1e_c01044{bottom:723.200000pt;}
.y1b_c01044{bottom:724.480000pt;}
.y1f_c01044{bottom:725.120000pt;}
.y20_c01044{bottom:725.760000pt;}
.y1d_c01044{bottom:726.400000pt;}
.y17_c01044{bottom:760.320000pt;}
.y15_c01044{bottom:761.600000pt;}
.y16_c01044{bottom:762.880000pt;}
.y19_c01044{bottom:763.520000pt;}
.y18_c01044{bottom:764.800000pt;}
.y1a_c01044{bottom:765.440000pt;}
.yf_c01044{bottom:798.720000pt;}
.ye_c01044{bottom:800.640000pt;}
.y14_c01044{bottom:801.920000pt;}
.yd_c01044{bottom:836.480000pt;}
.yc_c01044{bottom:838.400000pt;}
.y12_c01044{bottom:839.040000pt;}
.y11_c01044{bottom:839.680000pt;}
.y10_c01044{bottom:840.320000pt;}
.y13_c01044{bottom:840.960000pt;}
.ya_c01044{bottom:873.600000pt;}
.yb_c01044{bottom:874.880000pt;}
.y9_c01044{bottom:876.160000pt;}
.y6_c01044{bottom:877.440000pt;}
.y5_c01044{bottom:878.080000pt;}
.y8_c01044{bottom:912.640000pt;}
.y7_c01044{bottom:913.920000pt;}
.y3_c01044{bottom:915.840000pt;}
.y2_c01044{bottom:916.480000pt;}
.y4_c01044{bottom:917.760000pt;}
.y1_c01044{bottom:967.680000pt;}
.h10_c01044{height:16.126250pt;}
.hc_c01044{height:25.341250pt;}
.h13_c01044{height:29.948750pt;}
.h14_c01044{height:32.252500pt;}
.he_c01044{height:34.556250pt;}
.h12_c01044{height:36.860000pt;}
.hd_c01044{height:39.163750pt;}
.hb_c01044{height:41.467500pt;}
.h6_c01044{height:43.771250pt;}
.h5_c01044{height:46.075000pt;}
.h3_c01044{height:46.587500pt;}
.h7_c01044{height:48.378750pt;}
.ha_c01044{height:50.682500pt;}
.h8_c01044{height:52.986250pt;}
.h4_c01044{height:55.290000pt;}
.hf_c01044{height:57.593750pt;}
.h2_c01044{height:59.897500pt;}
.h9_c01044{height:62.201250pt;}
.h11_c01044{height:82.935000pt;}
.h0_c01044{height:1015.680000pt;}
.h1_c01044{height:1016.000000pt;}
.w0_c01044{width:721.920000pt;}
.w1_c01044{width:722.000000pt;}
.x0_c01044{left:0.000000pt;}
.x6_c01044{left:94.080000pt;}
.x1c_c01044{left:95.360000pt;}
.xb_c01044{left:133.120000pt;}
.x7_c01044{left:160.000000pt;}
.x16_c01044{left:161.280000pt;}
.x15_c01044{left:162.560000pt;}
.x30_c01044{left:199.680000pt;}
.x11_c01044{left:209.280000pt;}
.x8_c01044{left:238.080000pt;}
.x12_c01044{left:247.040000pt;}
.x31_c01044{left:248.320000pt;}
.x2b_c01044{left:257.280000pt;}
.x32_c01044{left:266.240000pt;}
.x13_c01044{left:275.200000pt;}
.x1a_c01044{left:276.480000pt;}
.x1e_c01044{left:286.720000pt;}
.x23_c01044{left:295.680000pt;}
.xe_c01044{left:314.880000pt;}
.x1b_c01044{left:325.120000pt;}
.x27_c01044{left:334.080000pt;}
.x1f_c01044{left:335.360000pt;}
.x2a_c01044{left:343.680000pt;}
.x24_c01044{left:344.960000pt;}
.x2c_c01044{left:353.920000pt;}
.xf_c01044{left:362.880000pt;}
.x2f_c01044{left:373.120000pt;}
.x22_c01044{left:382.720000pt;}
.x2d_c01044{left:391.680000pt;}
.x17_c01044{left:401.920000pt;}
.xc_c01044{left:410.240000pt;}
.x28_c01044{left:419.840000pt;}
.x25_c01044{left:430.080000pt;}
.x2e_c01044{left:440.320000pt;}
.x21_c01044{left:449.280000pt;}
.xd_c01044{left:459.520000pt;}
.x29_c01044{left:468.480000pt;}
.x26_c01044{left:474.240000pt;}
.x20_c01044{left:518.400000pt;}
.x2_c01044{left:526.720000pt;}
.x10_c01044{left:528.000000pt;}
.x5_c01044{left:546.560000pt;}
.x18_c01044{left:554.880000pt;}
.x3_c01044{left:564.480000pt;}
.x19_c01044{left:565.760000pt;}
.x14_c01044{left:593.920000pt;}
.x9_c01044{left:595.200000pt;}
.x1_c01044{left:621.440000pt;}
.xa_c01044{left:624.000000pt;}
.x1d_c01044{left:652.800000pt;}
.x33_c01044{left:661.120000pt;}
.x4_c01044{left:662.400000pt;}
.x34_c01044{left:663.680000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_306b8ec04fa753daf941b3c2.woff2')format("woff");}.ff1_c01045{font-family:ff1_c01045;line-height:1.109863;font-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_c01045{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.ma_c01045{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m33_c01045{transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);}
.m3a_c01045{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m23_c01045{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);}
.m28_c01045{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m13_c01045{transform:matrix(0.240125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240125,0.000000,0.000000,0.250000,0,0);}
.m1f_c01045{transform:matrix(0.245350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245350,0.000000,0.000000,0.250000,0,0);}
.m2e_c01045{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);}
.m10_c01045{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_c01045{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01045{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_c01045{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_c01045{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m15_c01045{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1_c01045{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m17_c01045{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_c01045{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);}
.m27_c01045{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m48_c01045{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m31_c01045{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m9_c01045{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01045{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mb_c01045{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m26_c01045{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01045{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m44_c01045{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m34_c01045{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01045{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m16_c01045{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01045{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mc_c01045{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m29_c01045{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m5_c01045{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m46_c01045{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);}
.m47_c01045{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.me_c01045{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m42_c01045{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);}
.m41_c01045{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m30_c01045{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);}
.m0_c01045{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m32_c01045{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);}
.m4a_c01045{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m38_c01045{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);}
.m1a_c01045{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m8_c01045{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01045{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);}
.m3b_c01045{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);}
.m49_c01045{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);}
.m4c_c01045{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);}
.m2d_c01045{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m25_c01045{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);}
.m4_c01045{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);}
.m3e_c01045{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m39_c01045{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m24_c01045{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m35_c01045{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);}
.m40_c01045{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m12_c01045{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m22_c01045{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m3_c01045{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m45_c01045{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m7_c01045{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m19_c01045{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m6_c01045{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m37_c01045{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);}
.m18_c01045{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.mf_c01045{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01045{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);}
.m2_c01045{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);}
.m43_c01045{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);}
.m20_c01045{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01045{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m11_c01045{transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01045{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);}
.md_c01045{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01045{transform:matrix(0.877500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.877500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.877500,0.000000,0.000000,0.250000,0,0);}
.v0_c01045{vertical-align:0.000000px;}
.v1_c01045{vertical-align:8.640000px;}
.v2_c01045{vertical-align:11.520000px;}
.ls0_c01045{letter-spacing:0.000000px;}
.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;}
}
.ws3_c01045{word-spacing:0.000000px;}
.ws2_c01045{word-spacing:9.210378px;}
.ws0_c01045{word-spacing:9.212400px;}
.ws1_c01045{word-spacing:190.368000px;}
.fc0_c01045{color:transparent;}
.fsa_c01045{font-size:31.680000px;}
.fs8_c01045{font-size:34.560000px;}
.fs9_c01045{font-size:40.320000px;}
.fsf_c01045{font-size:46.080000px;}
.fs2_c01045{font-size:48.960000px;}
.fs3_c01045{font-size:51.840000px;}
.fs5_c01045{font-size:54.720000px;}
.fs6_c01045{font-size:57.600000px;}
.fs7_c01045{font-size:60.480000px;}
.fs0_c01045{font-size:63.360000px;}
.fs4_c01045{font-size:66.240000px;}
.fsc_c01045{font-size:69.120000px;}
.fse_c01045{font-size:72.000000px;}
.fsb_c01045{font-size:74.880000px;}
.fs1_c01045{font-size:77.760000px;}
.fsd_c01045{font-size:103.680000px;}
.y0_c01045{bottom:0.000000px;}
.y7e_c01045{bottom:28.080000px;}
.y7c_c01045{bottom:28.800000px;}
.y7d_c01045{bottom:30.240000px;}
.y7f_c01045{bottom:30.960000px;}
.y78_c01045{bottom:69.840000px;}
.y7a_c01045{bottom:70.560000px;}
.y79_c01045{bottom:71.280000px;}
.y7b_c01045{bottom:72.000000px;}
.y77_c01045{bottom:72.720000px;}
.y76_c01045{bottom:74.160000px;}
.y73_c01045{bottom:113.040000px;}
.y72_c01045{bottom:113.760000px;}
.y71_c01045{bottom:115.200000px;}
.y74_c01045{bottom:115.920000px;}
.y75_c01045{bottom:116.640000px;}
.y6d_c01045{bottom:155.520000px;}
.y6f_c01045{bottom:156.240000px;}
.y6c_c01045{bottom:156.960000px;}
.y6e_c01045{bottom:157.680000px;}
.y6b_c01045{bottom:158.400000px;}
.y70_c01045{bottom:159.120000px;}
.y68_c01045{bottom:198.720000px;}
.y69_c01045{bottom:199.440000px;}
.y67_c01045{bottom:200.160000px;}
.y6a_c01045{bottom:200.880000px;}
.y66_c01045{bottom:201.600000px;}
.y63_c01045{bottom:241.920000px;}
.y62_c01045{bottom:242.640000px;}
.y61_c01045{bottom:243.360000px;}
.y65_c01045{bottom:244.080000px;}
.y64_c01045{bottom:244.800000px;}
.y5e_c01045{bottom:284.400000px;}
.y60_c01045{bottom:285.120000px;}
.y5d_c01045{bottom:285.840000px;}
.y5c_c01045{bottom:286.560000px;}
.y5f_c01045{bottom:287.280000px;}
.y59_c01045{bottom:327.600000px;}
.y58_c01045{bottom:328.320000px;}
.y57_c01045{bottom:329.040000px;}
.y5b_c01045{bottom:329.760000px;}
.y5a_c01045{bottom:330.480000px;}
.y55_c01045{bottom:370.800000px;}
.y54_c01045{bottom:371.520000px;}
.y53_c01045{bottom:372.240000px;}
.y56_c01045{bottom:372.960000px;}
.y50_c01045{bottom:414.000000px;}
.y4f_c01045{bottom:414.720000px;}
.y51_c01045{bottom:415.440000px;}
.y52_c01045{bottom:416.880000px;}
.y4d_c01045{bottom:456.480000px;}
.y4c_c01045{bottom:457.920000px;}
.y4e_c01045{bottom:458.640000px;}
.y4b_c01045{bottom:460.080000px;}
.y4a_c01045{bottom:499.680000px;}
.y49_c01045{bottom:501.120000px;}
.y47_c01045{bottom:502.560000px;}
.y48_c01045{bottom:503.280000px;}
.y44_c01045{bottom:542.880000px;}
.y43_c01045{bottom:543.600000px;}
.y45_c01045{bottom:544.320000px;}
.y42_c01045{bottom:545.760000px;}
.y46_c01045{bottom:546.480000px;}
.y3f_c01045{bottom:585.360000px;}
.y40_c01045{bottom:586.800000px;}
.y41_c01045{bottom:588.960000px;}
.y32_c01045{bottom:617.760000px;}
.y31_c01045{bottom:619.920000px;}
.y34_c01045{bottom:620.640000px;}
.y33_c01045{bottom:621.360000px;}
.y3e_c01045{bottom:622.080000px;}
.y2e_c01045{bottom:660.240000px;}
.y2f_c01045{bottom:661.680000px;}
.y30_c01045{bottom:662.400000px;}
.y3d_c01045{bottom:663.120000px;}
.y2d_c01045{bottom:663.840000px;}
.y2b_c01045{bottom:696.240000px;}
.y29_c01045{bottom:702.720000px;}
.y2a_c01045{bottom:704.160000px;}
.y28_c01045{bottom:704.880000px;}
.y2c_c01045{bottom:705.600000px;}
.y3c_c01045{bottom:706.320000px;}
.y3b_c01045{bottom:707.760000px;}
.y23_c01045{bottom:745.200000px;}
.y24_c01045{bottom:745.920000px;}
.y25_c01045{bottom:746.640000px;}
.y27_c01045{bottom:747.360000px;}
.y26_c01045{bottom:748.080000px;}
.y22_c01045{bottom:749.520000px;}
.y3a_c01045{bottom:750.240000px;}
.y1f_c01045{bottom:788.400000px;}
.y20_c01045{bottom:789.840000px;}
.y1e_c01045{bottom:790.560000px;}
.y21_c01045{bottom:791.280000px;}
.y39_c01045{bottom:793.440000px;}
.y1d_c01045{bottom:822.240000px;}
.y19_c01045{bottom:831.600000px;}
.y1b_c01045{bottom:832.320000px;}
.y17_c01045{bottom:833.760000px;}
.y18_c01045{bottom:834.480000px;}
.y1c_c01045{bottom:835.200000px;}
.y1a_c01045{bottom:835.920000px;}
.y13_c01045{bottom:874.080000px;}
.y12_c01045{bottom:876.240000px;}
.y16_c01045{bottom:876.960000px;}
.y14_c01045{bottom:878.400000px;}
.y15_c01045{bottom:879.120000px;}
.y38_c01045{bottom:879.840000px;}
.y11_c01045{bottom:918.000000px;}
.y10_c01045{bottom:920.880000px;}
.ye_c01045{bottom:950.400000px;}
.yd_c01045{bottom:951.840000px;}
.yc_c01045{bottom:952.560000px;}
.yb_c01045{bottom:954.000000px;}
.yf_c01045{bottom:954.720000px;}
.y6_c01045{bottom:992.880000px;}
.y5_c01045{bottom:995.040000px;}
.y37_c01045{bottom:995.760000px;}
.ya_c01045{bottom:996.480000px;}
.y8_c01045{bottom:997.200000px;}
.y7_c01045{bottom:997.920000px;}
.y2_c01045{bottom:1036.080000px;}
.y4_c01045{bottom:1038.240000px;}
.y9_c01045{bottom:1038.960000px;}
.y1_c01045{bottom:1039.680000px;}
.y3_c01045{bottom:1041.120000px;}
.y36_c01045{bottom:1041.840000px;}
.y35_c01045{bottom:1095.840000px;}
.hc_c01045{height:28.508906px;}
.ha_c01045{height:31.100625px;}
.hb_c01045{height:36.284062px;}
.h13_c01045{height:41.467500px;}
.h4_c01045{height:44.059219px;}
.h5_c01045{height:46.650937px;}
.h7_c01045{height:49.242656px;}
.h8_c01045{height:51.834375px;}
.h9_c01045{height:54.426094px;}
.h2_c01045{height:57.017812px;}
.h6_c01045{height:59.609531px;}
.he_c01045{height:62.201250px;}
.h11_c01045{height:63.066094px;}
.h12_c01045{height:63.354375px;}
.h10_c01045{height:64.792969px;}
.hd_c01045{height:67.384687px;}
.h3_c01045{height:69.976406px;}
.hf_c01045{height:93.301875px;}
.h0_c01045{height:1155.600000px;}
.h1_c01045{height:1155.750000px;}
.w1_c01045{width:819.750000px;}
.w0_c01045{width:820.080000px;}
.x0_c01045{left:0.000000px;}
.x1_c01045{left:107.280000px;}
.x2f_c01045{left:150.480000px;}
.x9_c01045{left:151.920000px;}
.x2_c01045{left:182.160000px;}
.xa_c01045{left:183.600000px;}
.x28_c01045{left:205.200000px;}
.x29_c01045{left:214.560000px;}
.x2c_c01045{left:235.440000px;}
.xf_c01045{left:236.880000px;}
.x23_c01045{left:246.240000px;}
.x25_c01045{left:267.840000px;}
.xb_c01045{left:269.280000px;}
.x24_c01045{left:300.960000px;}
.x17_c01045{left:311.760000px;}
.xc_c01045{left:322.560000px;}
.x15_c01045{left:332.640000px;}
.x2e_c01045{left:343.440000px;}
.x2a_c01045{left:354.240000px;}
.x18_c01045{left:365.040000px;}
.x3_c01045{left:366.480000px;}
.xd_c01045{left:377.280000px;}
.x2d_c01045{left:386.640000px;}
.x10_c01045{left:388.080000px;}
.x19_c01045{left:408.960000px;}
.x4_c01045{left:420.480000px;}
.x11_c01045{left:431.280000px;}
.x14_c01045{left:441.360000px;}
.x1a_c01045{left:452.160000px;}
.x5_c01045{left:474.480000px;}
.x12_c01045{left:485.280000px;}
.xe_c01045{left:506.160000px;}
.x13_c01045{left:517.680000px;}
.x26_c01045{left:581.760000px;}
.x16_c01045{left:583.200000px;}
.x6_c01045{left:584.640000px;}
.x8_c01045{left:615.600000px;}
.x7_c01045{left:617.760000px;}
.x2b_c01045{left:668.880000px;}
.x1f_c01045{left:670.320000px;}
.x1c_c01045{left:671.760000px;}
.x20_c01045{left:702.720000px;}
.x1d_c01045{left:704.160000px;}
.x1b_c01045{left:708.480000px;}
.x27_c01045{left:735.120000px;}
.x22_c01045{left:736.560000px;}
.x21_c01045{left:745.920000px;}
.x1e_c01045{left:747.360000px;}
@media print{
.v0_c01045{vertical-align:0.000000pt;}
.v1_c01045{vertical-align:7.680000pt;}
.v2_c01045{vertical-align:10.240000pt;}
.ls0_c01045{letter-spacing:0.000000pt;}
.ws3_c01045{word-spacing:0.000000pt;}
.ws2_c01045{word-spacing:8.187003pt;}
.ws0_c01045{word-spacing:8.188800pt;}
.ws1_c01045{word-spacing:169.216000pt;}
.fsa_c01045{font-size:28.160000pt;}
.fs8_c01045{font-size:30.720000pt;}
.fs9_c01045{font-size:35.840000pt;}
.fsf_c01045{font-size:40.960000pt;}
.fs2_c01045{font-size:43.520000pt;}
.fs3_c01045{font-size:46.080000pt;}
.fs5_c01045{font-size:48.640000pt;}
.fs6_c01045{font-size:51.200000pt;}
.fs7_c01045{font-size:53.760000pt;}
.fs0_c01045{font-size:56.320000pt;}
.fs4_c01045{font-size:58.880000pt;}
.fsc_c01045{font-size:61.440000pt;}
.fse_c01045{font-size:64.000000pt;}
.fsb_c01045{font-size:66.560000pt;}
.fs1_c01045{font-size:69.120000pt;}
.fsd_c01045{font-size:92.160000pt;}
.y0_c01045{bottom:0.000000pt;}
.y7e_c01045{bottom:24.960000pt;}
.y7c_c01045{bottom:25.600000pt;}
.y7d_c01045{bottom:26.880000pt;}
.y7f_c01045{bottom:27.520000pt;}
.y78_c01045{bottom:62.080000pt;}
.y7a_c01045{bottom:62.720000pt;}
.y79_c01045{bottom:63.360000pt;}
.y7b_c01045{bottom:64.000000pt;}
.y77_c01045{bottom:64.640000pt;}
.y76_c01045{bottom:65.920000pt;}
.y73_c01045{bottom:100.480000pt;}
.y72_c01045{bottom:101.120000pt;}
.y71_c01045{bottom:102.400000pt;}
.y74_c01045{bottom:103.040000pt;}
.y75_c01045{bottom:103.680000pt;}
.y6d_c01045{bottom:138.240000pt;}
.y6f_c01045{bottom:138.880000pt;}
.y6c_c01045{bottom:139.520000pt;}
.y6e_c01045{bottom:140.160000pt;}
.y6b_c01045{bottom:140.800000pt;}
.y70_c01045{bottom:141.440000pt;}
.y68_c01045{bottom:176.640000pt;}
.y69_c01045{bottom:177.280000pt;}
.y67_c01045{bottom:177.920000pt;}
.y6a_c01045{bottom:178.560000pt;}
.y66_c01045{bottom:179.200000pt;}
.y63_c01045{bottom:215.040000pt;}
.y62_c01045{bottom:215.680000pt;}
.y61_c01045{bottom:216.320000pt;}
.y65_c01045{bottom:216.960000pt;}
.y64_c01045{bottom:217.600000pt;}
.y5e_c01045{bottom:252.800000pt;}
.y60_c01045{bottom:253.440000pt;}
.y5d_c01045{bottom:254.080000pt;}
.y5c_c01045{bottom:254.720000pt;}
.y5f_c01045{bottom:255.360000pt;}
.y59_c01045{bottom:291.200000pt;}
.y58_c01045{bottom:291.840000pt;}
.y57_c01045{bottom:292.480000pt;}
.y5b_c01045{bottom:293.120000pt;}
.y5a_c01045{bottom:293.760000pt;}
.y55_c01045{bottom:329.600000pt;}
.y54_c01045{bottom:330.240000pt;}
.y53_c01045{bottom:330.880000pt;}
.y56_c01045{bottom:331.520000pt;}
.y50_c01045{bottom:368.000000pt;}
.y4f_c01045{bottom:368.640000pt;}
.y51_c01045{bottom:369.280000pt;}
.y52_c01045{bottom:370.560000pt;}
.y4d_c01045{bottom:405.760000pt;}
.y4c_c01045{bottom:407.040000pt;}
.y4e_c01045{bottom:407.680000pt;}
.y4b_c01045{bottom:408.960000pt;}
.y4a_c01045{bottom:444.160000pt;}
.y49_c01045{bottom:445.440000pt;}
.y47_c01045{bottom:446.720000pt;}
.y48_c01045{bottom:447.360000pt;}
.y44_c01045{bottom:482.560000pt;}
.y43_c01045{bottom:483.200000pt;}
.y45_c01045{bottom:483.840000pt;}
.y42_c01045{bottom:485.120000pt;}
.y46_c01045{bottom:485.760000pt;}
.y3f_c01045{bottom:520.320000pt;}
.y40_c01045{bottom:521.600000pt;}
.y41_c01045{bottom:523.520000pt;}
.y32_c01045{bottom:549.120000pt;}
.y31_c01045{bottom:551.040000pt;}
.y34_c01045{bottom:551.680000pt;}
.y33_c01045{bottom:552.320000pt;}
.y3e_c01045{bottom:552.960000pt;}
.y2e_c01045{bottom:586.880000pt;}
.y2f_c01045{bottom:588.160000pt;}
.y30_c01045{bottom:588.800000pt;}
.y3d_c01045{bottom:589.440000pt;}
.y2d_c01045{bottom:590.080000pt;}
.y2b_c01045{bottom:618.880000pt;}
.y29_c01045{bottom:624.640000pt;}
.y2a_c01045{bottom:625.920000pt;}
.y28_c01045{bottom:626.560000pt;}
.y2c_c01045{bottom:627.200000pt;}
.y3c_c01045{bottom:627.840000pt;}
.y3b_c01045{bottom:629.120000pt;}
.y23_c01045{bottom:662.400000pt;}
.y24_c01045{bottom:663.040000pt;}
.y25_c01045{bottom:663.680000pt;}
.y27_c01045{bottom:664.320000pt;}
.y26_c01045{bottom:664.960000pt;}
.y22_c01045{bottom:666.240000pt;}
.y3a_c01045{bottom:666.880000pt;}
.y1f_c01045{bottom:700.800000pt;}
.y20_c01045{bottom:702.080000pt;}
.y1e_c01045{bottom:702.720000pt;}
.y21_c01045{bottom:703.360000pt;}
.y39_c01045{bottom:705.280000pt;}
.y1d_c01045{bottom:730.880000pt;}
.y19_c01045{bottom:739.200000pt;}
.y1b_c01045{bottom:739.840000pt;}
.y17_c01045{bottom:741.120000pt;}
.y18_c01045{bottom:741.760000pt;}
.y1c_c01045{bottom:742.400000pt;}
.y1a_c01045{bottom:743.040000pt;}
.y13_c01045{bottom:776.960000pt;}
.y12_c01045{bottom:778.880000pt;}
.y16_c01045{bottom:779.520000pt;}
.y14_c01045{bottom:780.800000pt;}
.y15_c01045{bottom:781.440000pt;}
.y38_c01045{bottom:782.080000pt;}
.y11_c01045{bottom:816.000000pt;}
.y10_c01045{bottom:818.560000pt;}
.ye_c01045{bottom:844.800000pt;}
.yd_c01045{bottom:846.080000pt;}
.yc_c01045{bottom:846.720000pt;}
.yb_c01045{bottom:848.000000pt;}
.yf_c01045{bottom:848.640000pt;}
.y6_c01045{bottom:882.560000pt;}
.y5_c01045{bottom:884.480000pt;}
.y37_c01045{bottom:885.120000pt;}
.ya_c01045{bottom:885.760000pt;}
.y8_c01045{bottom:886.400000pt;}
.y7_c01045{bottom:887.040000pt;}
.y2_c01045{bottom:920.960000pt;}
.y4_c01045{bottom:922.880000pt;}
.y9_c01045{bottom:923.520000pt;}
.y1_c01045{bottom:924.160000pt;}
.y3_c01045{bottom:925.440000pt;}
.y36_c01045{bottom:926.080000pt;}
.y35_c01045{bottom:974.080000pt;}
.hc_c01045{height:25.341250pt;}
.ha_c01045{height:27.645000pt;}
.hb_c01045{height:32.252500pt;}
.h13_c01045{height:36.860000pt;}
.h4_c01045{height:39.163750pt;}
.h5_c01045{height:41.467500pt;}
.h7_c01045{height:43.771250pt;}
.h8_c01045{height:46.075000pt;}
.h9_c01045{height:48.378750pt;}
.h2_c01045{height:50.682500pt;}
.h6_c01045{height:52.986250pt;}
.he_c01045{height:55.290000pt;}
.h11_c01045{height:56.058750pt;}
.h12_c01045{height:56.315000pt;}
.h10_c01045{height:57.593750pt;}
.hd_c01045{height:59.897500pt;}
.h3_c01045{height:62.201250pt;}
.hf_c01045{height:82.935000pt;}
.h0_c01045{height:1027.200000pt;}
.h1_c01045{height:1027.333333pt;}
.w1_c01045{width:728.666667pt;}
.w0_c01045{width:728.960000pt;}
.x0_c01045{left:0.000000pt;}
.x1_c01045{left:95.360000pt;}
.x2f_c01045{left:133.760000pt;}
.x9_c01045{left:135.040000pt;}
.x2_c01045{left:161.920000pt;}
.xa_c01045{left:163.200000pt;}
.x28_c01045{left:182.400000pt;}
.x29_c01045{left:190.720000pt;}
.x2c_c01045{left:209.280000pt;}
.xf_c01045{left:210.560000pt;}
.x23_c01045{left:218.880000pt;}
.x25_c01045{left:238.080000pt;}
.xb_c01045{left:239.360000pt;}
.x24_c01045{left:267.520000pt;}
.x17_c01045{left:277.120000pt;}
.xc_c01045{left:286.720000pt;}
.x15_c01045{left:295.680000pt;}
.x2e_c01045{left:305.280000pt;}
.x2a_c01045{left:314.880000pt;}
.x18_c01045{left:324.480000pt;}
.x3_c01045{left:325.760000pt;}
.xd_c01045{left:335.360000pt;}
.x2d_c01045{left:343.680000pt;}
.x10_c01045{left:344.960000pt;}
.x19_c01045{left:363.520000pt;}
.x4_c01045{left:373.760000pt;}
.x11_c01045{left:383.360000pt;}
.x14_c01045{left:392.320000pt;}
.x1a_c01045{left:401.920000pt;}
.x5_c01045{left:421.760000pt;}
.x12_c01045{left:431.360000pt;}
.xe_c01045{left:449.920000pt;}
.x13_c01045{left:460.160000pt;}
.x26_c01045{left:517.120000pt;}
.x16_c01045{left:518.400000pt;}
.x6_c01045{left:519.680000pt;}
.x8_c01045{left:547.200000pt;}
.x7_c01045{left:549.120000pt;}
.x2b_c01045{left:594.560000pt;}
.x1f_c01045{left:595.840000pt;}
.x1c_c01045{left:597.120000pt;}
.x20_c01045{left:624.640000pt;}
.x1d_c01045{left:625.920000pt;}
.x1b_c01045{left:629.760000pt;}
.x27_c01045{left:653.440000pt;}
.x22_c01045{left:654.720000pt;}
.x21_c01045{left:663.040000pt;}
.x1e_c01045{left:664.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_93bd23c13800fddda93cd77d.woff2')format("woff");}.ff1_c01046{font-family:ff1_c01046;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m36_c01046{transform:matrix(0.229075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229075,0.000000,0.000000,0.250000,0,0);}
.m3e_c01046{transform:matrix(0.231300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231300,0.000000,0.000000,0.250000,0,0);}
.m39_c01046{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);}
.m40_c01046{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01046{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m27_c01046{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);}
.m3d_c01046{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_c01046{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);}
.m31_c01046{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m8_c01046{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_c01046{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01046{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m18_c01046{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m6_c01046{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m26_c01046{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m28_c01046{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m5_c01046{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m7_c01046{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m10_c01046{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m25_c01046{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m21_c01046{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1_c01046{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m16_c01046{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);}
.m2c_c01046{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m20_c01046{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_c01046{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.mf_c01046{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m9_c01046{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m12_c01046{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m14_c01046{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m2_c01046{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.md_c01046{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m0_c01046{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);}
.me_c01046{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01046{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);}
.m35_c01046{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m11_c01046{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);}
.m30_c01046{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m37_c01046{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m3_c01046{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.ma_c01046{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m15_c01046{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);}
.m2a_c01046{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);}
.mb_c01046{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01046{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m38_c01046{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m19_c01046{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);}
.m3b_c01046{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01046{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01046{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.mc_c01046{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m4_c01046{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m24_c01046{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_c01046{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m29_c01046{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);}
.m1f_c01046{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m33_c01046{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);}
.m23_c01046{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m22_c01046{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01046{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);}
.m32_c01046{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01046{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m34_c01046{transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01046{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01046{transform:matrix(0.955000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.955000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.955000,0.000000,0.000000,0.250000,0,0);}
.v4_c01046{vertical-align:-11.520000px;}
.v2_c01046{vertical-align:-5.760000px;}
.v5_c01046{vertical-align:-2.880000px;}
.v0_c01046{vertical-align:0.000000px;}
.v1_c01046{vertical-align:2.880000px;}
.v3_c01046{vertical-align:8.640000px;}
.ls1_c01046{letter-spacing:0.000000px;}
.ls0_c01046{letter-spacing:87.974400px;}
.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;}
}
.ws6_c01046{word-spacing:0.000000px;}
.ws2_c01046{word-spacing:0.465840px;}
.ws0_c01046{word-spacing:8.131200px;}
.ws3_c01046{word-spacing:9.210378px;}
.ws5_c01046{word-spacing:9.212400px;}
.ws1_c01046{word-spacing:9.475200px;}
.ws4_c01046{word-spacing:172.644000px;}
._0_c01046{width:46.952983px;}
.fc0_c01046{color:transparent;}
.fsc_c01046{font-size:28.800000px;}
.fs9_c01046{font-size:34.560000px;}
.fsb_c01046{font-size:37.440000px;}
.fs7_c01046{font-size:48.960000px;}
.fs4_c01046{font-size:51.840000px;}
.fs6_c01046{font-size:54.720000px;}
.fs5_c01046{font-size:57.600000px;}
.fs2_c01046{font-size:60.480000px;}
.fs3_c01046{font-size:63.360000px;}
.fs1_c01046{font-size:66.240000px;}
.fs8_c01046{font-size:69.120000px;}
.fs0_c01046{font-size:72.000000px;}
.fsa_c01046{font-size:95.040000px;}
.fse_c01046{font-size:97.920000px;}
.fsd_c01046{font-size:100.800000px;}
.y0_c01046{bottom:0.000000px;}
.y8b_c01046{bottom:83.520000px;}
.y8a_c01046{bottom:91.440000px;}
.y89_c01046{bottom:92.880000px;}
.y88_c01046{bottom:93.600000px;}
.y84_c01046{bottom:127.440000px;}
.y82_c01046{bottom:134.640000px;}
.y83_c01046{bottom:135.360000px;}
.y81_c01046{bottom:136.080000px;}
.y86_c01046{bottom:136.800000px;}
.y80_c01046{bottom:137.520000px;}
.y87_c01046{bottom:138.240000px;}
.y85_c01046{bottom:138.960000px;}
.y7e_c01046{bottom:169.200000px;}
.y7c_c01046{bottom:177.840000px;}
.y7a_c01046{bottom:179.280000px;}
.y7d_c01046{bottom:180.720000px;}
.y7b_c01046{bottom:181.440000px;}
.y7f_c01046{bottom:182.160000px;}
.y78_c01046{bottom:213.120000px;}
.y77_c01046{bottom:221.040000px;}
.y76_c01046{bottom:221.760000px;}
.y75_c01046{bottom:223.920000px;}
.y79_c01046{bottom:224.640000px;}
.y74_c01046{bottom:256.320000px;}
.y73_c01046{bottom:263.520000px;}
.y72_c01046{bottom:264.240000px;}
.y71_c01046{bottom:264.960000px;}
.y70_c01046{bottom:265.680000px;}
.y6e_c01046{bottom:266.400000px;}
.y6f_c01046{bottom:277.200000px;}
.y6c_c01046{bottom:299.520000px;}
.y6d_c01046{bottom:300.240000px;}
.y6b_c01046{bottom:306.720000px;}
.y6a_c01046{bottom:307.440000px;}
.y66_c01046{bottom:309.600000px;}
.y69_c01046{bottom:310.320000px;}
.y68_c01046{bottom:311.040000px;}
.y67_c01046{bottom:320.400000px;}
.y64_c01046{bottom:349.920000px;}
.y63_c01046{bottom:351.360000px;}
.y62_c01046{bottom:352.080000px;}
.y65_c01046{bottom:352.800000px;}
.y5e_c01046{bottom:392.400000px;}
.y5d_c01046{bottom:393.840000px;}
.y5c_c01046{bottom:394.560000px;}
.y5f_c01046{bottom:395.280000px;}
.y60_c01046{bottom:396.720000px;}
.y61_c01046{bottom:397.440000px;}
.y58_c01046{bottom:435.600000px;}
.y57_c01046{bottom:436.320000px;}
.y5a_c01046{bottom:437.040000px;}
.y5b_c01046{bottom:437.760000px;}
.y59_c01046{bottom:438.480000px;}
.y52_c01046{bottom:478.080000px;}
.y51_c01046{bottom:478.800000px;}
.y53_c01046{bottom:479.520000px;}
.y55_c01046{bottom:480.240000px;}
.y50_c01046{bottom:480.960000px;}
.y56_c01046{bottom:482.400000px;}
.y54_c01046{bottom:483.120000px;}
.y4d_c01046{bottom:521.280000px;}
.y4c_c01046{bottom:522.000000px;}
.y4b_c01046{bottom:522.720000px;}
.y4e_c01046{bottom:524.160000px;}
.y4f_c01046{bottom:525.600000px;}
.y46_c01046{bottom:564.480000px;}
.y45_c01046{bottom:565.200000px;}
.y49_c01046{bottom:566.640000px;}
.y47_c01046{bottom:567.360000px;}
.y4a_c01046{bottom:568.080000px;}
.y48_c01046{bottom:568.800000px;}
.y40_c01046{bottom:606.960000px;}
.y3f_c01046{bottom:607.680000px;}
.y42_c01046{bottom:608.400000px;}
.y44_c01046{bottom:609.120000px;}
.y41_c01046{bottom:610.560000px;}
.y43_c01046{bottom:611.280000px;}
.y3a_c01046{bottom:650.160000px;}
.y39_c01046{bottom:650.880000px;}
.y38_c01046{bottom:651.600000px;}
.y3d_c01046{bottom:652.320000px;}
.y3c_c01046{bottom:653.040000px;}
.y3b_c01046{bottom:653.760000px;}
.y3e_c01046{bottom:655.200000px;}
.y33_c01046{bottom:692.640000px;}
.y32_c01046{bottom:693.360000px;}
.y35_c01046{bottom:694.800000px;}
.y31_c01046{bottom:695.520000px;}
.y34_c01046{bottom:696.240000px;}
.y37_c01046{bottom:696.960000px;}
.y36_c01046{bottom:697.680000px;}
.y2d_c01046{bottom:735.840000px;}
.y2c_c01046{bottom:738.000000px;}
.y2f_c01046{bottom:738.720000px;}
.y2e_c01046{bottom:739.440000px;}
.y30_c01046{bottom:740.160000px;}
.y28_c01046{bottom:779.040000px;}
.y29_c01046{bottom:779.760000px;}
.y27_c01046{bottom:781.200000px;}
.y2b_c01046{bottom:781.920000px;}
.y2a_c01046{bottom:782.640000px;}
.y23_c01046{bottom:822.960000px;}
.y22_c01046{bottom:823.680000px;}
.y25_c01046{bottom:824.400000px;}
.y26_c01046{bottom:825.120000px;}
.y24_c01046{bottom:825.840000px;}
.y1b_c01046{bottom:864.720000px;}
.y1c_c01046{bottom:865.440000px;}
.y1e_c01046{bottom:866.880000px;}
.y21_c01046{bottom:868.320000px;}
.y1d_c01046{bottom:869.040000px;}
.y20_c01046{bottom:869.760000px;}
.y1f_c01046{bottom:870.480000px;}
.y16_c01046{bottom:908.640000px;}
.y15_c01046{bottom:910.080000px;}
.y18_c01046{bottom:910.800000px;}
.y17_c01046{bottom:912.240000px;}
.y19_c01046{bottom:912.960000px;}
.y1a_c01046{bottom:913.680000px;}
.y10_c01046{bottom:951.120000px;}
.yf_c01046{bottom:951.840000px;}
.y12_c01046{bottom:953.280000px;}
.y11_c01046{bottom:955.440000px;}
.y14_c01046{bottom:956.160000px;}
.y13_c01046{bottom:956.880000px;}
.y9_c01046{bottom:994.320000px;}
.ya_c01046{bottom:995.040000px;}
.yc_c01046{bottom:997.200000px;}
.yb_c01046{bottom:997.920000px;}
.ye_c01046{bottom:999.360000px;}
.yd_c01046{bottom:1000.080000px;}
.y2_c01046{bottom:1036.800000px;}
.y4_c01046{bottom:1037.520000px;}
.y3_c01046{bottom:1038.240000px;}
.y6_c01046{bottom:1039.680000px;}
.y8_c01046{bottom:1040.400000px;}
.y5_c01046{bottom:1041.120000px;}
.y7_c01046{bottom:1041.840000px;}
.y1_c01046{bottom:1101.600000px;}
.hf_c01046{height:25.917187px;}
.hc_c01046{height:31.100625px;}
.he_c01046{height:33.692344px;}
.h9_c01046{height:44.059219px;}
.h6_c01046{height:46.650937px;}
.h8_c01046{height:49.242656px;}
.ha_c01046{height:49.530938px;}
.h7_c01046{height:51.834375px;}
.h4_c01046{height:54.426094px;}
.h11_c01046{height:55.290937px;}
.h5_c01046{height:57.017812px;}
.h3_c01046{height:59.609531px;}
.hb_c01046{height:62.201250px;}
.h2_c01046{height:64.792969px;}
.hd_c01046{height:85.526719px;}
.h12_c01046{height:88.118437px;}
.h10_c01046{height:90.710156px;}
.h0_c01046{height:1154.880000px;}
.h1_c01046{height:1155.000000px;}
.w0_c01046{width:818.640000px;}
.w1_c01046{width:819.000000px;}
.x0_c01046{left:0.000000px;}
.x2_c01046{left:108.000000px;}
.xb_c01046{left:109.440000px;}
.x15_c01046{left:154.080000px;}
.x3_c01046{left:183.600000px;}
.xd_c01046{left:185.040000px;}
.x4_c01046{left:269.280000px;}
.x14_c01046{left:270.720000px;}
.x5_c01046{left:334.080000px;}
.x13_c01046{left:336.240000px;}
.xa_c01046{left:354.960000px;}
.xe_c01046{left:356.400000px;}
.xf_c01046{left:390.240000px;}
.x10_c01046{left:475.200000px;}
.x11_c01046{left:496.800000px;}
.x12_c01046{left:551.520000px;}
.x6_c01046{left:583.200000px;}
.x7_c01046{left:671.760000px;}
.xc_c01046{left:703.440000px;}
.x8_c01046{left:704.880000px;}
.x1_c01046{left:710.640000px;}
.x16_c01046{left:714.960000px;}
.x9_c01046{left:736.560000px;}
@media print{
.v4_c01046{vertical-align:-10.240000pt;}
.v2_c01046{vertical-align:-5.120000pt;}
.v5_c01046{vertical-align:-2.560000pt;}
.v0_c01046{vertical-align:0.000000pt;}
.v1_c01046{vertical-align:2.560000pt;}
.v3_c01046{vertical-align:7.680000pt;}
.ls1_c01046{letter-spacing:0.000000pt;}
.ls0_c01046{letter-spacing:78.199467pt;}
.ws6_c01046{word-spacing:0.000000pt;}
.ws2_c01046{word-spacing:0.414080pt;}
.ws0_c01046{word-spacing:7.227733pt;}
.ws3_c01046{word-spacing:8.187003pt;}
.ws5_c01046{word-spacing:8.188800pt;}
.ws1_c01046{word-spacing:8.422400pt;}
.ws4_c01046{word-spacing:153.461333pt;}
._0_c01046{width:41.735985pt;}
.fsc_c01046{font-size:25.600000pt;}
.fs9_c01046{font-size:30.720000pt;}
.fsb_c01046{font-size:33.280000pt;}
.fs7_c01046{font-size:43.520000pt;}
.fs4_c01046{font-size:46.080000pt;}
.fs6_c01046{font-size:48.640000pt;}
.fs5_c01046{font-size:51.200000pt;}
.fs2_c01046{font-size:53.760000pt;}
.fs3_c01046{font-size:56.320000pt;}
.fs1_c01046{font-size:58.880000pt;}
.fs8_c01046{font-size:61.440000pt;}
.fs0_c01046{font-size:64.000000pt;}
.fsa_c01046{font-size:84.480000pt;}
.fse_c01046{font-size:87.040000pt;}
.fsd_c01046{font-size:89.600000pt;}
.y0_c01046{bottom:0.000000pt;}
.y8b_c01046{bottom:74.240000pt;}
.y8a_c01046{bottom:81.280000pt;}
.y89_c01046{bottom:82.560000pt;}
.y88_c01046{bottom:83.200000pt;}
.y84_c01046{bottom:113.280000pt;}
.y82_c01046{bottom:119.680000pt;}
.y83_c01046{bottom:120.320000pt;}
.y81_c01046{bottom:120.960000pt;}
.y86_c01046{bottom:121.600000pt;}
.y80_c01046{bottom:122.240000pt;}
.y87_c01046{bottom:122.880000pt;}
.y85_c01046{bottom:123.520000pt;}
.y7e_c01046{bottom:150.400000pt;}
.y7c_c01046{bottom:158.080000pt;}
.y7a_c01046{bottom:159.360000pt;}
.y7d_c01046{bottom:160.640000pt;}
.y7b_c01046{bottom:161.280000pt;}
.y7f_c01046{bottom:161.920000pt;}
.y78_c01046{bottom:189.440000pt;}
.y77_c01046{bottom:196.480000pt;}
.y76_c01046{bottom:197.120000pt;}
.y75_c01046{bottom:199.040000pt;}
.y79_c01046{bottom:199.680000pt;}
.y74_c01046{bottom:227.840000pt;}
.y73_c01046{bottom:234.240000pt;}
.y72_c01046{bottom:234.880000pt;}
.y71_c01046{bottom:235.520000pt;}
.y70_c01046{bottom:236.160000pt;}
.y6e_c01046{bottom:236.800000pt;}
.y6f_c01046{bottom:246.400000pt;}
.y6c_c01046{bottom:266.240000pt;}
.y6d_c01046{bottom:266.880000pt;}
.y6b_c01046{bottom:272.640000pt;}
.y6a_c01046{bottom:273.280000pt;}
.y66_c01046{bottom:275.200000pt;}
.y69_c01046{bottom:275.840000pt;}
.y68_c01046{bottom:276.480000pt;}
.y67_c01046{bottom:284.800000pt;}
.y64_c01046{bottom:311.040000pt;}
.y63_c01046{bottom:312.320000pt;}
.y62_c01046{bottom:312.960000pt;}
.y65_c01046{bottom:313.600000pt;}
.y5e_c01046{bottom:348.800000pt;}
.y5d_c01046{bottom:350.080000pt;}
.y5c_c01046{bottom:350.720000pt;}
.y5f_c01046{bottom:351.360000pt;}
.y60_c01046{bottom:352.640000pt;}
.y61_c01046{bottom:353.280000pt;}
.y58_c01046{bottom:387.200000pt;}
.y57_c01046{bottom:387.840000pt;}
.y5a_c01046{bottom:388.480000pt;}
.y5b_c01046{bottom:389.120000pt;}
.y59_c01046{bottom:389.760000pt;}
.y52_c01046{bottom:424.960000pt;}
.y51_c01046{bottom:425.600000pt;}
.y53_c01046{bottom:426.240000pt;}
.y55_c01046{bottom:426.880000pt;}
.y50_c01046{bottom:427.520000pt;}
.y56_c01046{bottom:428.800000pt;}
.y54_c01046{bottom:429.440000pt;}
.y4d_c01046{bottom:463.360000pt;}
.y4c_c01046{bottom:464.000000pt;}
.y4b_c01046{bottom:464.640000pt;}
.y4e_c01046{bottom:465.920000pt;}
.y4f_c01046{bottom:467.200000pt;}
.y46_c01046{bottom:501.760000pt;}
.y45_c01046{bottom:502.400000pt;}
.y49_c01046{bottom:503.680000pt;}
.y47_c01046{bottom:504.320000pt;}
.y4a_c01046{bottom:504.960000pt;}
.y48_c01046{bottom:505.600000pt;}
.y40_c01046{bottom:539.520000pt;}
.y3f_c01046{bottom:540.160000pt;}
.y42_c01046{bottom:540.800000pt;}
.y44_c01046{bottom:541.440000pt;}
.y41_c01046{bottom:542.720000pt;}
.y43_c01046{bottom:543.360000pt;}
.y3a_c01046{bottom:577.920000pt;}
.y39_c01046{bottom:578.560000pt;}
.y38_c01046{bottom:579.200000pt;}
.y3d_c01046{bottom:579.840000pt;}
.y3c_c01046{bottom:580.480000pt;}
.y3b_c01046{bottom:581.120000pt;}
.y3e_c01046{bottom:582.400000pt;}
.y33_c01046{bottom:615.680000pt;}
.y32_c01046{bottom:616.320000pt;}
.y35_c01046{bottom:617.600000pt;}
.y31_c01046{bottom:618.240000pt;}
.y34_c01046{bottom:618.880000pt;}
.y37_c01046{bottom:619.520000pt;}
.y36_c01046{bottom:620.160000pt;}
.y2d_c01046{bottom:654.080000pt;}
.y2c_c01046{bottom:656.000000pt;}
.y2f_c01046{bottom:656.640000pt;}
.y2e_c01046{bottom:657.280000pt;}
.y30_c01046{bottom:657.920000pt;}
.y28_c01046{bottom:692.480000pt;}
.y29_c01046{bottom:693.120000pt;}
.y27_c01046{bottom:694.400000pt;}
.y2b_c01046{bottom:695.040000pt;}
.y2a_c01046{bottom:695.680000pt;}
.y23_c01046{bottom:731.520000pt;}
.y22_c01046{bottom:732.160000pt;}
.y25_c01046{bottom:732.800000pt;}
.y26_c01046{bottom:733.440000pt;}
.y24_c01046{bottom:734.080000pt;}
.y1b_c01046{bottom:768.640000pt;}
.y1c_c01046{bottom:769.280000pt;}
.y1e_c01046{bottom:770.560000pt;}
.y21_c01046{bottom:771.840000pt;}
.y1d_c01046{bottom:772.480000pt;}
.y20_c01046{bottom:773.120000pt;}
.y1f_c01046{bottom:773.760000pt;}
.y16_c01046{bottom:807.680000pt;}
.y15_c01046{bottom:808.960000pt;}
.y18_c01046{bottom:809.600000pt;}
.y17_c01046{bottom:810.880000pt;}
.y19_c01046{bottom:811.520000pt;}
.y1a_c01046{bottom:812.160000pt;}
.y10_c01046{bottom:845.440000pt;}
.yf_c01046{bottom:846.080000pt;}
.y12_c01046{bottom:847.360000pt;}
.y11_c01046{bottom:849.280000pt;}
.y14_c01046{bottom:849.920000pt;}
.y13_c01046{bottom:850.560000pt;}
.y9_c01046{bottom:883.840000pt;}
.ya_c01046{bottom:884.480000pt;}
.yc_c01046{bottom:886.400000pt;}
.yb_c01046{bottom:887.040000pt;}
.ye_c01046{bottom:888.320000pt;}
.yd_c01046{bottom:888.960000pt;}
.y2_c01046{bottom:921.600000pt;}
.y4_c01046{bottom:922.240000pt;}
.y3_c01046{bottom:922.880000pt;}
.y6_c01046{bottom:924.160000pt;}
.y8_c01046{bottom:924.800000pt;}
.y5_c01046{bottom:925.440000pt;}
.y7_c01046{bottom:926.080000pt;}
.y1_c01046{bottom:979.200000pt;}
.hf_c01046{height:23.037500pt;}
.hc_c01046{height:27.645000pt;}
.he_c01046{height:29.948750pt;}
.h9_c01046{height:39.163750pt;}
.h6_c01046{height:41.467500pt;}
.h8_c01046{height:43.771250pt;}
.ha_c01046{height:44.027500pt;}
.h7_c01046{height:46.075000pt;}
.h4_c01046{height:48.378750pt;}
.h11_c01046{height:49.147500pt;}
.h5_c01046{height:50.682500pt;}
.h3_c01046{height:52.986250pt;}
.hb_c01046{height:55.290000pt;}
.h2_c01046{height:57.593750pt;}
.hd_c01046{height:76.023750pt;}
.h12_c01046{height:78.327500pt;}
.h10_c01046{height:80.631250pt;}
.h0_c01046{height:1026.560000pt;}
.h1_c01046{height:1026.666667pt;}
.w0_c01046{width:727.680000pt;}
.w1_c01046{width:728.000000pt;}
.x0_c01046{left:0.000000pt;}
.x2_c01046{left:96.000000pt;}
.xb_c01046{left:97.280000pt;}
.x15_c01046{left:136.960000pt;}
.x3_c01046{left:163.200000pt;}
.xd_c01046{left:164.480000pt;}
.x4_c01046{left:239.360000pt;}
.x14_c01046{left:240.640000pt;}
.x5_c01046{left:296.960000pt;}
.x13_c01046{left:298.880000pt;}
.xa_c01046{left:315.520000pt;}
.xe_c01046{left:316.800000pt;}
.xf_c01046{left:346.880000pt;}
.x10_c01046{left:422.400000pt;}
.x11_c01046{left:441.600000pt;}
.x12_c01046{left:490.240000pt;}
.x6_c01046{left:518.400000pt;}
.x7_c01046{left:597.120000pt;}
.xc_c01046{left:625.280000pt;}
.x8_c01046{left:626.560000pt;}
.x1_c01046{left:631.680000pt;}
.x16_c01046{left:635.520000pt;}
.x9_c01046{left:654.720000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a2f36378f82d41145f499852.woff2')format("woff");}.ff1_c01047{font-family:ff1_c01047;line-height:1.109863;font-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_c01047{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m30_c01047{transform:matrix(0.164375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164375,0.000000,0.000000,0.250000,0,0);}
.m1c_c01047{transform:matrix(0.201225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201225,0.000000,0.000000,0.250000,0,0);}
.m22_c01047{transform:matrix(0.223600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223600,0.000000,0.000000,0.250000,0,0);}
.m35_c01047{transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);}
.m28_c01047{transform:matrix(0.239875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239875,0.000000,0.000000,0.250000,0,0);}
.m38_c01047{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m20_c01047{transform:matrix(0.245225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245225,0.000000,0.000000,0.250000,0,0);}
.ma_c01047{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m24_c01047{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m11_c01047{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);}
.m57_c01047{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);}
.m58_c01047{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m3_c01047{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);}
.m3e_c01047{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m10_c01047{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m8_c01047{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m16_c01047{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m25_c01047{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mc_c01047{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_c01047{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m5_c01047{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2_c01047{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m14_c01047{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m9_c01047{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.me_c01047{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.mf_c01047{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m12_c01047{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m4_c01047{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m36_c01047{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1_c01047{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m17_c01047{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m39_c01047{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m13_c01047{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.md_c01047{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);}
.m43_c01047{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);}
.m21_c01047{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01047{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);}
.m46_c01047{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01047{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01047{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);}
.m26_c01047{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m18_c01047{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m51_c01047{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m44_c01047{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);}
.m4b_c01047{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);}
.m4a_c01047{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01047{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);}
.m19_c01047{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01047{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);}
.m23_c01047{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);}
.m4d_c01047{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01047{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01047{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01047{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);}
.m1a_c01047{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m37_c01047{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m7_c01047{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);}
.m33_c01047{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m27_c01047{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01047{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);}
.m47_c01047{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m29_c01047{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m32_c01047{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);}
.m1f_c01047{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01047{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m40_c01047{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m54_c01047{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m53_c01047{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);}
.m34_c01047{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m55_c01047{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m56_c01047{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);}
.m42_c01047{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01047{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);}
.m48_c01047{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m6_c01047{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01047{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m50_c01047{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m41_c01047{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m45_c01047{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m52_c01047{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01047{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01047{transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01047{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);}
.m2a_c01047{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m49_c01047{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.m15_c01047{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.mb_c01047{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01047{transform:matrix(0.945000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.945000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.945000,0.000000,0.000000,0.250000,0,0);}
.v0_c01047{vertical-align:0.000000px;}
.v1_c01047{vertical-align:8.640000px;}
.ls0_c01047{letter-spacing:0.000000px;}
.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;}
}
.ws1_c01047{word-spacing:-1.619862px;}
.ws4_c01047{word-spacing:0.000000px;}
.ws3_c01047{word-spacing:9.212400px;}
.ws2_c01047{word-spacing:9.475200px;}
.ws0_c01047{word-spacing:11.693143px;}
.fc0_c01047{color:transparent;}
.fsc_c01047{font-size:2.880000px;}
.fsf_c01047{font-size:8.640000px;}
.fsa_c01047{font-size:11.520000px;}
.fs10_c01047{font-size:23.040000px;}
.fsd_c01047{font-size:37.440000px;}
.fs8_c01047{font-size:40.320000px;}
.fse_c01047{font-size:43.200000px;}
.fs11_c01047{font-size:48.960000px;}
.fs3_c01047{font-size:51.840000px;}
.fs5_c01047{font-size:54.720000px;}
.fs2_c01047{font-size:57.600000px;}
.fs0_c01047{font-size:60.480000px;}
.fs4_c01047{font-size:63.360000px;}
.fs7_c01047{font-size:66.240000px;}
.fs1_c01047{font-size:69.120000px;}
.fs12_c01047{font-size:72.000000px;}
.fs13_c01047{font-size:74.880000px;}
.fs6_c01047{font-size:95.040000px;}
.fsb_c01047{font-size:97.920000px;}
.fs9_c01047{font-size:100.800000px;}
.y0_c01047{bottom:0.000000px;}
.y16_c01047{bottom:48.960000px;}
.y15_c01047{bottom:49.680000px;}
.y65_c01047{bottom:50.400000px;}
.y17_c01047{bottom:51.120000px;}
.y66_c01047{bottom:51.840000px;}
.y13_c01047{bottom:91.440000px;}
.y12_c01047{bottom:92.160000px;}
.y64_c01047{bottom:92.880000px;}
.y14_c01047{bottom:93.600000px;}
.y10_c01047{bottom:134.640000px;}
.ye_c01047{bottom:135.360000px;}
.y11_c01047{bottom:136.080000px;}
.y63_c01047{bottom:136.800000px;}
.yf_c01047{bottom:137.520000px;}
.yc_c01047{bottom:177.840000px;}
.yd_c01047{bottom:179.280000px;}
.y62_c01047{bottom:180.000000px;}
.y61_c01047{bottom:180.720000px;}
.y9_c01047{bottom:220.320000px;}
.yb_c01047{bottom:221.040000px;}
.y60_c01047{bottom:221.760000px;}
.ya_c01047{bottom:222.480000px;}
.y5f_c01047{bottom:262.800000px;}
.y8_c01047{bottom:263.520000px;}
.y6_c01047{bottom:264.240000px;}
.y7_c01047{bottom:265.680000px;}
.y5e_c01047{bottom:305.280000px;}
.y4_c01047{bottom:306.720000px;}
.y5c_c01047{bottom:307.440000px;}
.y5d_c01047{bottom:308.160000px;}
.y5_c01047{bottom:308.880000px;}
.y5a_c01047{bottom:348.480000px;}
.y2_c01047{bottom:349.200000px;}
.y1_c01047{bottom:349.920000px;}
.y5b_c01047{bottom:350.640000px;}
.y3_c01047{bottom:352.080000px;}
.y58_c01047{bottom:392.400000px;}
.y59_c01047{bottom:393.120000px;}
.y55_c01047{bottom:424.080000px;}
.y54_c01047{bottom:424.800000px;}
.y53_c01047{bottom:425.520000px;}
.y56_c01047{bottom:426.960000px;}
.y57_c01047{bottom:427.680000px;}
.y52_c01047{bottom:468.000000px;}
.y4f_c01047{bottom:498.960000px;}
.y4e_c01047{bottom:500.400000px;}
.y51_c01047{bottom:501.120000px;}
.y50_c01047{bottom:501.840000px;}
.y73_c01047{bottom:503.280000px;}
.y4d_c01047{bottom:542.880000px;}
.y4c_c01047{bottom:543.600000px;}
.y4b_c01047{bottom:545.760000px;}
.y49_c01047{bottom:575.280000px;}
.y48_c01047{bottom:576.000000px;}
.y47_c01047{bottom:576.720000px;}
.y4a_c01047{bottom:578.160000px;}
.y72_c01047{bottom:578.880000px;}
.y46_c01047{bottom:618.480000px;}
.y44_c01047{bottom:619.200000px;}
.y45_c01047{bottom:621.360000px;}
.y41_c01047{bottom:650.160000px;}
.y40_c01047{bottom:651.600000px;}
.y43_c01047{bottom:652.320000px;}
.y42_c01047{bottom:653.040000px;}
.y3f_c01047{bottom:684.720000px;}
.y3e_c01047{bottom:693.360000px;}
.y3d_c01047{bottom:694.080000px;}
.y71_c01047{bottom:696.240000px;}
.y3c_c01047{bottom:728.640000px;}
.y3a_c01047{bottom:735.840000px;}
.y39_c01047{bottom:736.560000px;}
.y38_c01047{bottom:737.280000px;}
.y3b_c01047{bottom:738.000000px;}
.y70_c01047{bottom:738.720000px;}
.y6f_c01047{bottom:739.440000px;}
.y36_c01047{bottom:771.120000px;}
.y33_c01047{bottom:778.320000px;}
.y35_c01047{bottom:779.040000px;}
.y32_c01047{bottom:779.760000px;}
.y6e_c01047{bottom:780.480000px;}
.y34_c01047{bottom:781.200000px;}
.y37_c01047{bottom:781.920000px;}
.y31_c01047{bottom:792.000000px;}
.y30_c01047{bottom:792.720000px;}
.y2e_c01047{bottom:814.320000px;}
.y2d_c01047{bottom:820.800000px;}
.y2c_c01047{bottom:822.240000px;}
.y2f_c01047{bottom:822.960000px;}
.y2b_c01047{bottom:856.080000px;}
.y28_c01047{bottom:864.000000px;}
.y27_c01047{bottom:864.720000px;}
.y29_c01047{bottom:865.440000px;}
.y2a_c01047{bottom:866.160000px;}
.y6d_c01047{bottom:866.880000px;}
.y26_c01047{bottom:900.000000px;}
.y24_c01047{bottom:907.920000px;}
.y23_c01047{bottom:908.640000px;}
.y25_c01047{bottom:909.360000px;}
.y6b_c01047{bottom:910.800000px;}
.y6c_c01047{bottom:911.520000px;}
.y22_c01047{bottom:943.200000px;}
.y20_c01047{bottom:951.120000px;}
.y21_c01047{bottom:951.840000px;}
.y1f_c01047{bottom:952.560000px;}
.y6a_c01047{bottom:954.000000px;}
.y1e_c01047{bottom:987.120000px;}
.y1d_c01047{bottom:994.320000px;}
.y1c_c01047{bottom:995.040000px;}
.y68_c01047{bottom:996.480000px;}
.y69_c01047{bottom:997.920000px;}
.y1b_c01047{bottom:1030.320000px;}
.y19_c01047{bottom:1037.520000px;}
.y1a_c01047{bottom:1038.240000px;}
.y18_c01047{bottom:1038.960000px;}
.y67_c01047{bottom:1095.840000px;}
.he_c01047{height:2.591719px;}
.h11_c01047{height:7.775156px;}
.hc_c01047{height:10.366875px;}
.h12_c01047{height:20.733750px;}
.hf_c01047{height:33.692344px;}
.ha_c01047{height:36.284062px;}
.h10_c01047{height:38.875781px;}
.h13_c01047{height:44.059219px;}
.h5_c01047{height:46.650937px;}
.h7_c01047{height:49.242656px;}
.h4_c01047{height:51.834375px;}
.h2_c01047{height:54.426094px;}
.h6_c01047{height:57.017812px;}
.h9_c01047{height:59.609531px;}
.h3_c01047{height:62.201250px;}
.h16_c01047{height:63.066094px;}
.h14_c01047{height:64.792969px;}
.h15_c01047{height:67.384687px;}
.h8_c01047{height:85.526719px;}
.hd_c01047{height:88.118437px;}
.hb_c01047{height:90.710156px;}
.h0_c01047{height:1153.440000px;}
.h1_c01047{height:1153.500000px;}
.w0_c01047{width:817.920000px;}
.w1_c01047{width:818.250000px;}
.x0_c01047{left:0.000000px;}
.x22_c01047{left:107.280000px;}
.xa_c01047{left:108.720000px;}
.x25_c01047{left:151.200000px;}
.xf_c01047{left:153.360000px;}
.x1f_c01047{left:182.160000px;}
.xb_c01047{left:184.320000px;}
.x1b_c01047{left:226.080000px;}
.x23_c01047{left:235.440000px;}
.x20_c01047{left:237.600000px;}
.x1e_c01047{left:267.840000px;}
.xc_c01047{left:270.000000px;}
.x1c_c01047{left:280.080000px;}
.x21_c01047{left:290.160000px;}
.x26_c01047{left:322.560000px;}
.x1d_c01047{left:333.360000px;}
.xd_c01047{left:334.800000px;}
.x24_c01047{left:365.040000px;}
.x12_c01047{left:367.200000px;}
.x27_c01047{left:378.000000px;}
.x19_c01047{left:387.360000px;}
.x10_c01047{left:388.800000px;}
.x13_c01047{left:421.200000px;}
.x17_c01047{left:426.240000px;}
.xe_c01047{left:475.200000px;}
.x18_c01047{left:495.360000px;}
.x16_c01047{left:496.800000px;}
.x11_c01047{left:510.480000px;}
.x1a_c01047{left:530.640000px;}
.x14_c01047{left:542.160000px;}
.x15_c01047{left:550.800000px;}
.x9_c01047{left:581.760000px;}
.x1_c01047{left:583.200000px;}
.x2_c01047{left:635.760000px;}
.x5_c01047{left:669.600000px;}
.x29_c01047{left:671.760000px;}
.x3_c01047{left:693.360000px;}
.x28_c01047{left:695.520000px;}
.x6_c01047{left:702.720000px;}
.x2a_c01047{left:704.160000px;}
.x8_c01047{left:735.120000px;}
.x2d_c01047{left:736.560000px;}
.x2b_c01047{left:738.000000px;}
.x4_c01047{left:745.200000px;}
.x2c_c01047{left:746.640000px;}
.x7_c01047{left:765.360000px;}
@media print{
.v0_c01047{vertical-align:0.000000pt;}
.v1_c01047{vertical-align:7.680000pt;}
.ls0_c01047{letter-spacing:0.000000pt;}
.ws1_c01047{word-spacing:-1.439877pt;}
.ws4_c01047{word-spacing:0.000000pt;}
.ws3_c01047{word-spacing:8.188800pt;}
.ws2_c01047{word-spacing:8.422400pt;}
.ws0_c01047{word-spacing:10.393905pt;}
.fsc_c01047{font-size:2.560000pt;}
.fsf_c01047{font-size:7.680000pt;}
.fsa_c01047{font-size:10.240000pt;}
.fs10_c01047{font-size:20.480000pt;}
.fsd_c01047{font-size:33.280000pt;}
.fs8_c01047{font-size:35.840000pt;}
.fse_c01047{font-size:38.400000pt;}
.fs11_c01047{font-size:43.520000pt;}
.fs3_c01047{font-size:46.080000pt;}
.fs5_c01047{font-size:48.640000pt;}
.fs2_c01047{font-size:51.200000pt;}
.fs0_c01047{font-size:53.760000pt;}
.fs4_c01047{font-size:56.320000pt;}
.fs7_c01047{font-size:58.880000pt;}
.fs1_c01047{font-size:61.440000pt;}
.fs12_c01047{font-size:64.000000pt;}
.fs13_c01047{font-size:66.560000pt;}
.fs6_c01047{font-size:84.480000pt;}
.fsb_c01047{font-size:87.040000pt;}
.fs9_c01047{font-size:89.600000pt;}
.y0_c01047{bottom:0.000000pt;}
.y16_c01047{bottom:43.520000pt;}
.y15_c01047{bottom:44.160000pt;}
.y65_c01047{bottom:44.800000pt;}
.y17_c01047{bottom:45.440000pt;}
.y66_c01047{bottom:46.080000pt;}
.y13_c01047{bottom:81.280000pt;}
.y12_c01047{bottom:81.920000pt;}
.y64_c01047{bottom:82.560000pt;}
.y14_c01047{bottom:83.200000pt;}
.y10_c01047{bottom:119.680000pt;}
.ye_c01047{bottom:120.320000pt;}
.y11_c01047{bottom:120.960000pt;}
.y63_c01047{bottom:121.600000pt;}
.yf_c01047{bottom:122.240000pt;}
.yc_c01047{bottom:158.080000pt;}
.yd_c01047{bottom:159.360000pt;}
.y62_c01047{bottom:160.000000pt;}
.y61_c01047{bottom:160.640000pt;}
.y9_c01047{bottom:195.840000pt;}
.yb_c01047{bottom:196.480000pt;}
.y60_c01047{bottom:197.120000pt;}
.ya_c01047{bottom:197.760000pt;}
.y5f_c01047{bottom:233.600000pt;}
.y8_c01047{bottom:234.240000pt;}
.y6_c01047{bottom:234.880000pt;}
.y7_c01047{bottom:236.160000pt;}
.y5e_c01047{bottom:271.360000pt;}
.y4_c01047{bottom:272.640000pt;}
.y5c_c01047{bottom:273.280000pt;}
.y5d_c01047{bottom:273.920000pt;}
.y5_c01047{bottom:274.560000pt;}
.y5a_c01047{bottom:309.760000pt;}
.y2_c01047{bottom:310.400000pt;}
.y1_c01047{bottom:311.040000pt;}
.y5b_c01047{bottom:311.680000pt;}
.y3_c01047{bottom:312.960000pt;}
.y58_c01047{bottom:348.800000pt;}
.y59_c01047{bottom:349.440000pt;}
.y55_c01047{bottom:376.960000pt;}
.y54_c01047{bottom:377.600000pt;}
.y53_c01047{bottom:378.240000pt;}
.y56_c01047{bottom:379.520000pt;}
.y57_c01047{bottom:380.160000pt;}
.y52_c01047{bottom:416.000000pt;}
.y4f_c01047{bottom:443.520000pt;}
.y4e_c01047{bottom:444.800000pt;}
.y51_c01047{bottom:445.440000pt;}
.y50_c01047{bottom:446.080000pt;}
.y73_c01047{bottom:447.360000pt;}
.y4d_c01047{bottom:482.560000pt;}
.y4c_c01047{bottom:483.200000pt;}
.y4b_c01047{bottom:485.120000pt;}
.y49_c01047{bottom:511.360000pt;}
.y48_c01047{bottom:512.000000pt;}
.y47_c01047{bottom:512.640000pt;}
.y4a_c01047{bottom:513.920000pt;}
.y72_c01047{bottom:514.560000pt;}
.y46_c01047{bottom:549.760000pt;}
.y44_c01047{bottom:550.400000pt;}
.y45_c01047{bottom:552.320000pt;}
.y41_c01047{bottom:577.920000pt;}
.y40_c01047{bottom:579.200000pt;}
.y43_c01047{bottom:579.840000pt;}
.y42_c01047{bottom:580.480000pt;}
.y3f_c01047{bottom:608.640000pt;}
.y3e_c01047{bottom:616.320000pt;}
.y3d_c01047{bottom:616.960000pt;}
.y71_c01047{bottom:618.880000pt;}
.y3c_c01047{bottom:647.680000pt;}
.y3a_c01047{bottom:654.080000pt;}
.y39_c01047{bottom:654.720000pt;}
.y38_c01047{bottom:655.360000pt;}
.y3b_c01047{bottom:656.000000pt;}
.y70_c01047{bottom:656.640000pt;}
.y6f_c01047{bottom:657.280000pt;}
.y36_c01047{bottom:685.440000pt;}
.y33_c01047{bottom:691.840000pt;}
.y35_c01047{bottom:692.480000pt;}
.y32_c01047{bottom:693.120000pt;}
.y6e_c01047{bottom:693.760000pt;}
.y34_c01047{bottom:694.400000pt;}
.y37_c01047{bottom:695.040000pt;}
.y31_c01047{bottom:704.000000pt;}
.y30_c01047{bottom:704.640000pt;}
.y2e_c01047{bottom:723.840000pt;}
.y2d_c01047{bottom:729.600000pt;}
.y2c_c01047{bottom:730.880000pt;}
.y2f_c01047{bottom:731.520000pt;}
.y2b_c01047{bottom:760.960000pt;}
.y28_c01047{bottom:768.000000pt;}
.y27_c01047{bottom:768.640000pt;}
.y29_c01047{bottom:769.280000pt;}
.y2a_c01047{bottom:769.920000pt;}
.y6d_c01047{bottom:770.560000pt;}
.y26_c01047{bottom:800.000000pt;}
.y24_c01047{bottom:807.040000pt;}
.y23_c01047{bottom:807.680000pt;}
.y25_c01047{bottom:808.320000pt;}
.y6b_c01047{bottom:809.600000pt;}
.y6c_c01047{bottom:810.240000pt;}
.y22_c01047{bottom:838.400000pt;}
.y20_c01047{bottom:845.440000pt;}
.y21_c01047{bottom:846.080000pt;}
.y1f_c01047{bottom:846.720000pt;}
.y6a_c01047{bottom:848.000000pt;}
.y1e_c01047{bottom:877.440000pt;}
.y1d_c01047{bottom:883.840000pt;}
.y1c_c01047{bottom:884.480000pt;}
.y68_c01047{bottom:885.760000pt;}
.y69_c01047{bottom:887.040000pt;}
.y1b_c01047{bottom:915.840000pt;}
.y19_c01047{bottom:922.240000pt;}
.y1a_c01047{bottom:922.880000pt;}
.y18_c01047{bottom:923.520000pt;}
.y67_c01047{bottom:974.080000pt;}
.he_c01047{height:2.303750pt;}
.h11_c01047{height:6.911250pt;}
.hc_c01047{height:9.215000pt;}
.h12_c01047{height:18.430000pt;}
.hf_c01047{height:29.948750pt;}
.ha_c01047{height:32.252500pt;}
.h10_c01047{height:34.556250pt;}
.h13_c01047{height:39.163750pt;}
.h5_c01047{height:41.467500pt;}
.h7_c01047{height:43.771250pt;}
.h4_c01047{height:46.075000pt;}
.h2_c01047{height:48.378750pt;}
.h6_c01047{height:50.682500pt;}
.h9_c01047{height:52.986250pt;}
.h3_c01047{height:55.290000pt;}
.h16_c01047{height:56.058750pt;}
.h14_c01047{height:57.593750pt;}
.h15_c01047{height:59.897500pt;}
.h8_c01047{height:76.023750pt;}
.hd_c01047{height:78.327500pt;}
.hb_c01047{height:80.631250pt;}
.h0_c01047{height:1025.280000pt;}
.h1_c01047{height:1025.333333pt;}
.w0_c01047{width:727.040000pt;}
.w1_c01047{width:727.333333pt;}
.x0_c01047{left:0.000000pt;}
.x22_c01047{left:95.360000pt;}
.xa_c01047{left:96.640000pt;}
.x25_c01047{left:134.400000pt;}
.xf_c01047{left:136.320000pt;}
.x1f_c01047{left:161.920000pt;}
.xb_c01047{left:163.840000pt;}
.x1b_c01047{left:200.960000pt;}
.x23_c01047{left:209.280000pt;}
.x20_c01047{left:211.200000pt;}
.x1e_c01047{left:238.080000pt;}
.xc_c01047{left:240.000000pt;}
.x1c_c01047{left:248.960000pt;}
.x21_c01047{left:257.920000pt;}
.x26_c01047{left:286.720000pt;}
.x1d_c01047{left:296.320000pt;}
.xd_c01047{left:297.600000pt;}
.x24_c01047{left:324.480000pt;}
.x12_c01047{left:326.400000pt;}
.x27_c01047{left:336.000000pt;}
.x19_c01047{left:344.320000pt;}
.x10_c01047{left:345.600000pt;}
.x13_c01047{left:374.400000pt;}
.x17_c01047{left:378.880000pt;}
.xe_c01047{left:422.400000pt;}
.x18_c01047{left:440.320000pt;}
.x16_c01047{left:441.600000pt;}
.x11_c01047{left:453.760000pt;}
.x1a_c01047{left:471.680000pt;}
.x14_c01047{left:481.920000pt;}
.x15_c01047{left:489.600000pt;}
.x9_c01047{left:517.120000pt;}
.x1_c01047{left:518.400000pt;}
.x2_c01047{left:565.120000pt;}
.x5_c01047{left:595.200000pt;}
.x29_c01047{left:597.120000pt;}
.x3_c01047{left:616.320000pt;}
.x28_c01047{left:618.240000pt;}
.x6_c01047{left:624.640000pt;}
.x2a_c01047{left:625.920000pt;}
.x8_c01047{left:653.440000pt;}
.x2d_c01047{left:654.720000pt;}
.x2b_c01047{left:656.000000pt;}
.x4_c01047{left:662.400000pt;}
.x2c_c01047{left:663.680000pt;}
.x7_c01047{left:680.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_aabddfaa403dba3e6adbb21f.woff2')format("woff");}.ff1_c01048{font-family:ff1_c01048;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4a_c01048{transform:matrix(0.175550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175550,0.000000,0.000000,0.250000,0,0);}
.m43_c01048{transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);}
.m45_c01048{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01048{transform:matrix(0.201075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201075,0.000000,0.000000,0.250000,0,0);}
.m14_c01048{transform:matrix(0.205875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205875,0.000000,0.000000,0.250000,0,0);}
.m48_c01048{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m11_c01048{transform:matrix(0.239250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239250,0.000000,0.000000,0.250000,0,0);}
.m39_c01048{transform:matrix(0.247125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247125,0.000000,0.000000,0.250000,0,0);}
.m49_c01048{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m24_c01048{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);}
.m4d_c01048{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);}
.m3e_c01048{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1_c01048{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m17_c01048{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);}
.m44_c01048{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m32_c01048{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m40_c01048{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);}
.m50_c01048{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m20_c01048{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m28_c01048{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01048{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01048{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01048{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m42_c01048{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m5_c01048{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m46_c01048{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m7_c01048{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m47_c01048{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m6_c01048{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m29_c01048{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mb_c01048{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.md_c01048{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m0_c01048{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01048{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mc_c01048{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);}
.m36_c01048{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);}
.m30_c01048{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01048{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_c01048{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);}
.m1d_c01048{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);}
.m26_c01048{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01048{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);}
.m3b_c01048{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);}
.m12_c01048{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m18_c01048{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m16_c01048{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);}
.m4b_c01048{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);}
.m2c_c01048{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);}
.m4_c01048{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m25_c01048{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m2_c01048{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_c01048{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);}
.m37_c01048{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);}
.m33_c01048{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m8_c01048{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01048{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);}
.m2b_c01048{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);}
.m1f_c01048{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.me_c01048{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m21_c01048{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m34_c01048{transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);}
.m10_c01048{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m38_c01048{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m19_c01048{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.mf_c01048{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m23_c01048{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);}
.ma_c01048{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);}
.m2e_c01048{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m13_c01048{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m15_c01048{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m35_c01048{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m22_c01048{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);}
.m3c_c01048{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01048{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);}
.m3_c01048{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m27_c01048{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);}
.m9_c01048{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01048{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m4f_c01048{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);}
.m31_c01048{transform:matrix(0.647500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.647500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.647500,0.000000,0.000000,0.250000,0,0);}
.m41_c01048{transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);}
.m51_c01048{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.v0_c01048{vertical-align:0.000000px;}
.v1_c01048{vertical-align:8.640000px;}
.ls0_c01048{letter-spacing:0.000000px;}
.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:-4.670160px;}
.ws2_c01048{word-spacing:0.000000px;}
.ws1_c01048{word-spacing:19.430400px;}
.fc0_c01048{color:transparent;}
.fsa_c01048{font-size:31.680000px;}
.fsb_c01048{font-size:37.440000px;}
.fs6_c01048{font-size:40.320000px;}
.fs8_c01048{font-size:43.200000px;}
.fs9_c01048{font-size:48.960000px;}
.fs1_c01048{font-size:51.840000px;}
.fs2_c01048{font-size:54.720000px;}
.fs7_c01048{font-size:57.600000px;}
.fs3_c01048{font-size:60.480000px;}
.fs5_c01048{font-size:63.360000px;}
.fs0_c01048{font-size:66.240000px;}
.fs4_c01048{font-size:69.120000px;}
.fsc_c01048{font-size:72.000000px;}
.y0_c01048{bottom:0.000000px;}
.y74_c01048{bottom:57.600000px;}
.y56_c01048{bottom:58.320000px;}
.y5c_c01048{bottom:59.040000px;}
.y73_c01048{bottom:59.760000px;}
.y55_c01048{bottom:60.480000px;}
.y54_c01048{bottom:61.200000px;}
.y72_c01048{bottom:100.800000px;}
.y5b_c01048{bottom:101.520000px;}
.y52_c01048{bottom:102.960000px;}
.y53_c01048{bottom:103.680000px;}
.y51_c01048{bottom:104.400000px;}
.y5a_c01048{bottom:144.720000px;}
.y50_c01048{bottom:146.160000px;}
.y4f_c01048{bottom:147.600000px;}
.y71_c01048{bottom:187.920000px;}
.y4c_c01048{bottom:188.640000px;}
.y4b_c01048{bottom:189.360000px;}
.y4e_c01048{bottom:190.080000px;}
.y4d_c01048{bottom:190.800000px;}
.y4a_c01048{bottom:231.120000px;}
.y6f_c01048{bottom:231.840000px;}
.y48_c01048{bottom:232.560000px;}
.y49_c01048{bottom:233.280000px;}
.y70_c01048{bottom:234.000000px;}
.y46_c01048{bottom:273.600000px;}
.y45_c01048{bottom:274.320000px;}
.y44_c01048{bottom:275.040000px;}
.y47_c01048{bottom:275.760000px;}
.y6e_c01048{bottom:276.480000px;}
.y59_c01048{bottom:316.800000px;}
.y6d_c01048{bottom:317.520000px;}
.y41_c01048{bottom:318.240000px;}
.y42_c01048{bottom:318.960000px;}
.y43_c01048{bottom:319.680000px;}
.y6c_c01048{bottom:360.000000px;}
.y3e_c01048{bottom:360.720000px;}
.y40_c01048{bottom:362.160000px;}
.y3f_c01048{bottom:362.880000px;}
.y3c_c01048{bottom:401.760000px;}
.y58_c01048{bottom:403.200000px;}
.y3b_c01048{bottom:403.920000px;}
.y3d_c01048{bottom:404.640000px;}
.y6b_c01048{bottom:405.360000px;}
.y3a_c01048{bottom:445.680000px;}
.y57_c01048{bottom:446.400000px;}
.y38_c01048{bottom:447.120000px;}
.y39_c01048{bottom:447.840000px;}
.y37_c01048{bottom:448.560000px;}
.y35_c01048{bottom:488.160000px;}
.y34_c01048{bottom:488.880000px;}
.y33_c01048{bottom:489.600000px;}
.y36_c01048{bottom:490.320000px;}
.y32_c01048{bottom:491.040000px;}
.y6a_c01048{bottom:531.360000px;}
.y30_c01048{bottom:532.080000px;}
.y31_c01048{bottom:533.520000px;}
.y2f_c01048{bottom:573.840000px;}
.y2c_c01048{bottom:574.560000px;}
.y69_c01048{bottom:575.280000px;}
.y2d_c01048{bottom:576.000000px;}
.y2e_c01048{bottom:576.720000px;}
.y68_c01048{bottom:577.440000px;}
.y29_c01048{bottom:617.040000px;}
.y28_c01048{bottom:617.760000px;}
.y2b_c01048{bottom:618.480000px;}
.y2a_c01048{bottom:619.920000px;}
.y66_c01048{bottom:659.520000px;}
.y25_c01048{bottom:660.240000px;}
.y24_c01048{bottom:660.960000px;}
.y67_c01048{bottom:661.680000px;}
.y26_c01048{bottom:662.400000px;}
.y27_c01048{bottom:663.120000px;}
.y21_c01048{bottom:702.720000px;}
.y20_c01048{bottom:704.160000px;}
.y23_c01048{bottom:705.600000px;}
.y22_c01048{bottom:706.320000px;}
.y1d_c01048{bottom:746.640000px;}
.y1f_c01048{bottom:747.360000px;}
.y1e_c01048{bottom:748.800000px;}
.y1b_c01048{bottom:789.840000px;}
.y1a_c01048{bottom:790.560000px;}
.y64_c01048{bottom:791.280000px;}
.y1c_c01048{bottom:792.000000px;}
.y65_c01048{bottom:792.720000px;}
.y16_c01048{bottom:832.320000px;}
.y18_c01048{bottom:833.040000px;}
.y15_c01048{bottom:833.760000px;}
.y19_c01048{bottom:835.200000px;}
.y17_c01048{bottom:835.920000px;}
.y12_c01048{bottom:875.520000px;}
.y13_c01048{bottom:876.240000px;}
.y14_c01048{bottom:878.400000px;}
.y63_c01048{bottom:879.120000px;}
.yd_c01048{bottom:918.720000px;}
.y11_c01048{bottom:919.440000px;}
.y62_c01048{bottom:920.160000px;}
.ye_c01048{bottom:920.880000px;}
.y10_c01048{bottom:921.600000px;}
.yf_c01048{bottom:922.320000px;}
.ya_c01048{bottom:961.920000px;}
.yc_c01048{bottom:962.640000px;}
.y60_c01048{bottom:963.360000px;}
.yb_c01048{bottom:964.080000px;}
.y61_c01048{bottom:965.520000px;}
.y6_c01048{bottom:1004.400000px;}
.y5_c01048{bottom:1005.120000px;}
.y9_c01048{bottom:1006.560000px;}
.y8_c01048{bottom:1007.280000px;}
.y7_c01048{bottom:1008.000000px;}
.y1_c01048{bottom:1047.600000px;}
.y4_c01048{bottom:1049.040000px;}
.y5e_c01048{bottom:1049.760000px;}
.y3_c01048{bottom:1050.480000px;}
.y2_c01048{bottom:1051.200000px;}
.y5f_c01048{bottom:1051.920000px;}
.y5d_c01048{bottom:1105.200000px;}
.hc_c01048{height:28.508906px;}
.hd_c01048{height:33.692344px;}
.h8_c01048{height:36.284062px;}
.ha_c01048{height:38.875781px;}
.hb_c01048{height:44.059219px;}
.h3_c01048{height:46.650937px;}
.h4_c01048{height:49.242656px;}
.h9_c01048{height:51.834375px;}
.h5_c01048{height:54.426094px;}
.h7_c01048{height:57.017812px;}
.h2_c01048{height:59.609531px;}
.h6_c01048{height:62.201250px;}
.hf_c01048{height:63.066094px;}
.he_c01048{height:64.792969px;}
.h0_c01048{height:1152.720000px;}
.h1_c01048{height:1152.750000px;}
.w0_c01048{width:815.760000px;}
.w1_c01048{width:816.000000px;}
.x0_c01048{left:0.000000px;}
.x14_c01048{left:105.840000px;}
.x1_c01048{left:107.280000px;}
.xd_c01048{left:151.200000px;}
.x11_c01048{left:181.440000px;}
.x2_c01048{left:182.880000px;}
.x12_c01048{left:267.120000px;}
.x3_c01048{left:268.560000px;}
.x13_c01048{left:277.920000px;}
.x8_c01048{left:311.040000px;}
.x16_c01048{left:321.120000px;}
.x9_c01048{left:322.560000px;}
.x17_c01048{left:331.920000px;}
.x4_c01048{left:333.360000px;}
.x15_c01048{left:375.120000px;}
.xa_c01048{left:376.560000px;}
.x5_c01048{left:386.640000px;}
.x7_c01048{left:388.800000px;}
.xf_c01048{left:473.040000px;}
.xb_c01048{left:474.480000px;}
.xc_c01048{left:516.240000px;}
.x10_c01048{left:527.040000px;}
.x18_c01048{left:581.040000px;}
.xe_c01048{left:582.480000px;}
.x6_c01048{left:583.920000px;}
.x23_c01048{left:635.040000px;}
.x1f_c01048{left:636.480000px;}
.x25_c01048{left:668.160000px;}
.x20_c01048{left:669.600000px;}
.x1a_c01048{left:671.040000px;}
.x28_c01048{left:700.560000px;}
.x21_c01048{left:702.000000px;}
.x1b_c01048{left:704.160000px;}
.x27_c01048{left:712.080000px;}
.x19_c01048{left:721.440000px;}
.x24_c01048{left:734.400000px;}
.x1c_c01048{left:736.560000px;}
.x26_c01048{left:743.760000px;}
.x22_c01048{left:745.200000px;}
.x1d_c01048{left:746.640000px;}
.x29_c01048{left:764.640000px;}
.x1e_c01048{left:766.800000px;}
@media print{
.v0_c01048{vertical-align:0.000000pt;}
.v1_c01048{vertical-align:7.680000pt;}
.ls0_c01048{letter-spacing:0.000000pt;}
.ws0_c01048{word-spacing:-4.151253pt;}
.ws2_c01048{word-spacing:0.000000pt;}
.ws1_c01048{word-spacing:17.271467pt;}
.fsa_c01048{font-size:28.160000pt;}
.fsb_c01048{font-size:33.280000pt;}
.fs6_c01048{font-size:35.840000pt;}
.fs8_c01048{font-size:38.400000pt;}
.fs9_c01048{font-size:43.520000pt;}
.fs1_c01048{font-size:46.080000pt;}
.fs2_c01048{font-size:48.640000pt;}
.fs7_c01048{font-size:51.200000pt;}
.fs3_c01048{font-size:53.760000pt;}
.fs5_c01048{font-size:56.320000pt;}
.fs0_c01048{font-size:58.880000pt;}
.fs4_c01048{font-size:61.440000pt;}
.fsc_c01048{font-size:64.000000pt;}
.y0_c01048{bottom:0.000000pt;}
.y74_c01048{bottom:51.200000pt;}
.y56_c01048{bottom:51.840000pt;}
.y5c_c01048{bottom:52.480000pt;}
.y73_c01048{bottom:53.120000pt;}
.y55_c01048{bottom:53.760000pt;}
.y54_c01048{bottom:54.400000pt;}
.y72_c01048{bottom:89.600000pt;}
.y5b_c01048{bottom:90.240000pt;}
.y52_c01048{bottom:91.520000pt;}
.y53_c01048{bottom:92.160000pt;}
.y51_c01048{bottom:92.800000pt;}
.y5a_c01048{bottom:128.640000pt;}
.y50_c01048{bottom:129.920000pt;}
.y4f_c01048{bottom:131.200000pt;}
.y71_c01048{bottom:167.040000pt;}
.y4c_c01048{bottom:167.680000pt;}
.y4b_c01048{bottom:168.320000pt;}
.y4e_c01048{bottom:168.960000pt;}
.y4d_c01048{bottom:169.600000pt;}
.y4a_c01048{bottom:205.440000pt;}
.y6f_c01048{bottom:206.080000pt;}
.y48_c01048{bottom:206.720000pt;}
.y49_c01048{bottom:207.360000pt;}
.y70_c01048{bottom:208.000000pt;}
.y46_c01048{bottom:243.200000pt;}
.y45_c01048{bottom:243.840000pt;}
.y44_c01048{bottom:244.480000pt;}
.y47_c01048{bottom:245.120000pt;}
.y6e_c01048{bottom:245.760000pt;}
.y59_c01048{bottom:281.600000pt;}
.y6d_c01048{bottom:282.240000pt;}
.y41_c01048{bottom:282.880000pt;}
.y42_c01048{bottom:283.520000pt;}
.y43_c01048{bottom:284.160000pt;}
.y6c_c01048{bottom:320.000000pt;}
.y3e_c01048{bottom:320.640000pt;}
.y40_c01048{bottom:321.920000pt;}
.y3f_c01048{bottom:322.560000pt;}
.y3c_c01048{bottom:357.120000pt;}
.y58_c01048{bottom:358.400000pt;}
.y3b_c01048{bottom:359.040000pt;}
.y3d_c01048{bottom:359.680000pt;}
.y6b_c01048{bottom:360.320000pt;}
.y3a_c01048{bottom:396.160000pt;}
.y57_c01048{bottom:396.800000pt;}
.y38_c01048{bottom:397.440000pt;}
.y39_c01048{bottom:398.080000pt;}
.y37_c01048{bottom:398.720000pt;}
.y35_c01048{bottom:433.920000pt;}
.y34_c01048{bottom:434.560000pt;}
.y33_c01048{bottom:435.200000pt;}
.y36_c01048{bottom:435.840000pt;}
.y32_c01048{bottom:436.480000pt;}
.y6a_c01048{bottom:472.320000pt;}
.y30_c01048{bottom:472.960000pt;}
.y31_c01048{bottom:474.240000pt;}
.y2f_c01048{bottom:510.080000pt;}
.y2c_c01048{bottom:510.720000pt;}
.y69_c01048{bottom:511.360000pt;}
.y2d_c01048{bottom:512.000000pt;}
.y2e_c01048{bottom:512.640000pt;}
.y68_c01048{bottom:513.280000pt;}
.y29_c01048{bottom:548.480000pt;}
.y28_c01048{bottom:549.120000pt;}
.y2b_c01048{bottom:549.760000pt;}
.y2a_c01048{bottom:551.040000pt;}
.y66_c01048{bottom:586.240000pt;}
.y25_c01048{bottom:586.880000pt;}
.y24_c01048{bottom:587.520000pt;}
.y67_c01048{bottom:588.160000pt;}
.y26_c01048{bottom:588.800000pt;}
.y27_c01048{bottom:589.440000pt;}
.y21_c01048{bottom:624.640000pt;}
.y20_c01048{bottom:625.920000pt;}
.y23_c01048{bottom:627.200000pt;}
.y22_c01048{bottom:627.840000pt;}
.y1d_c01048{bottom:663.680000pt;}
.y1f_c01048{bottom:664.320000pt;}
.y1e_c01048{bottom:665.600000pt;}
.y1b_c01048{bottom:702.080000pt;}
.y1a_c01048{bottom:702.720000pt;}
.y64_c01048{bottom:703.360000pt;}
.y1c_c01048{bottom:704.000000pt;}
.y65_c01048{bottom:704.640000pt;}
.y16_c01048{bottom:739.840000pt;}
.y18_c01048{bottom:740.480000pt;}
.y15_c01048{bottom:741.120000pt;}
.y19_c01048{bottom:742.400000pt;}
.y17_c01048{bottom:743.040000pt;}
.y12_c01048{bottom:778.240000pt;}
.y13_c01048{bottom:778.880000pt;}
.y14_c01048{bottom:780.800000pt;}
.y63_c01048{bottom:781.440000pt;}
.yd_c01048{bottom:816.640000pt;}
.y11_c01048{bottom:817.280000pt;}
.y62_c01048{bottom:817.920000pt;}
.ye_c01048{bottom:818.560000pt;}
.y10_c01048{bottom:819.200000pt;}
.yf_c01048{bottom:819.840000pt;}
.ya_c01048{bottom:855.040000pt;}
.yc_c01048{bottom:855.680000pt;}
.y60_c01048{bottom:856.320000pt;}
.yb_c01048{bottom:856.960000pt;}
.y61_c01048{bottom:858.240000pt;}
.y6_c01048{bottom:892.800000pt;}
.y5_c01048{bottom:893.440000pt;}
.y9_c01048{bottom:894.720000pt;}
.y8_c01048{bottom:895.360000pt;}
.y7_c01048{bottom:896.000000pt;}
.y1_c01048{bottom:931.200000pt;}
.y4_c01048{bottom:932.480000pt;}
.y5e_c01048{bottom:933.120000pt;}
.y3_c01048{bottom:933.760000pt;}
.y2_c01048{bottom:934.400000pt;}
.y5f_c01048{bottom:935.040000pt;}
.y5d_c01048{bottom:982.400000pt;}
.hc_c01048{height:25.341250pt;}
.hd_c01048{height:29.948750pt;}
.h8_c01048{height:32.252500pt;}
.ha_c01048{height:34.556250pt;}
.hb_c01048{height:39.163750pt;}
.h3_c01048{height:41.467500pt;}
.h4_c01048{height:43.771250pt;}
.h9_c01048{height:46.075000pt;}
.h5_c01048{height:48.378750pt;}
.h7_c01048{height:50.682500pt;}
.h2_c01048{height:52.986250pt;}
.h6_c01048{height:55.290000pt;}
.hf_c01048{height:56.058750pt;}
.he_c01048{height:57.593750pt;}
.h0_c01048{height:1024.640000pt;}
.h1_c01048{height:1024.666667pt;}
.w0_c01048{width:725.120000pt;}
.w1_c01048{width:725.333333pt;}
.x0_c01048{left:0.000000pt;}
.x14_c01048{left:94.080000pt;}
.x1_c01048{left:95.360000pt;}
.xd_c01048{left:134.400000pt;}
.x11_c01048{left:161.280000pt;}
.x2_c01048{left:162.560000pt;}
.x12_c01048{left:237.440000pt;}
.x3_c01048{left:238.720000pt;}
.x13_c01048{left:247.040000pt;}
.x8_c01048{left:276.480000pt;}
.x16_c01048{left:285.440000pt;}
.x9_c01048{left:286.720000pt;}
.x17_c01048{left:295.040000pt;}
.x4_c01048{left:296.320000pt;}
.x15_c01048{left:333.440000pt;}
.xa_c01048{left:334.720000pt;}
.x5_c01048{left:343.680000pt;}
.x7_c01048{left:345.600000pt;}
.xf_c01048{left:420.480000pt;}
.xb_c01048{left:421.760000pt;}
.xc_c01048{left:458.880000pt;}
.x10_c01048{left:468.480000pt;}
.x18_c01048{left:516.480000pt;}
.xe_c01048{left:517.760000pt;}
.x6_c01048{left:519.040000pt;}
.x23_c01048{left:564.480000pt;}
.x1f_c01048{left:565.760000pt;}
.x25_c01048{left:593.920000pt;}
.x20_c01048{left:595.200000pt;}
.x1a_c01048{left:596.480000pt;}
.x28_c01048{left:622.720000pt;}
.x21_c01048{left:624.000000pt;}
.x1b_c01048{left:625.920000pt;}
.x27_c01048{left:632.960000pt;}
.x19_c01048{left:641.280000pt;}
.x24_c01048{left:652.800000pt;}
.x1c_c01048{left:654.720000pt;}
.x26_c01048{left:661.120000pt;}
.x22_c01048{left:662.400000pt;}
.x1d_c01048{left:663.680000pt;}
.x29_c01048{left:679.680000pt;}
.x1e_c01048{left:681.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c2165702bf9cc13bad5c48e8.woff2')format("woff");}.ff1_c01049{font-family:ff1_c01049;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3d_c01049{transform:matrix(0.173525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173525,0.000000,0.000000,0.250000,0,0);}
.m19_c01049{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m40_c01049{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);}
.m49_c01049{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);}
.m2e_c01049{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);}
.m2f_c01049{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);}
.m34_c01049{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);}
.m3a_c01049{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);}
.m50_c01049{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_c01049{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);}
.m33_c01049{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m14_c01049{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01049{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);}
.m51_c01049{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m13_c01049{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.me_c01049{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m7_c01049{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01049{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m16_c01049{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2_c01049{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m22_c01049{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m15_c01049{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01049{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m25_c01049{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m6_c01049{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01049{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01049{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.md_c01049{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1_c01049{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.ma_c01049{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01049{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m9_c01049{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);}
.m46_c01049{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.mf_c01049{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m17_c01049{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_c01049{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m31_c01049{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m27_c01049{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);}
.m1a_c01049{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m28_c01049{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);}
.m4f_c01049{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);}
.m0_c01049{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m36_c01049{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);}
.m44_c01049{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);}
.m23_c01049{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);}
.m2c_c01049{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);}
.m4d_c01049{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01049{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m5_c01049{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01049{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.mc_c01049{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);}
.m4b_c01049{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m11_c01049{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01049{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m4_c01049{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m10_c01049{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m41_c01049{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m20_c01049{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01049{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01049{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m21_c01049{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.mb_c01049{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);}
.m1c_c01049{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m18_c01049{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01049{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m48_c01049{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);}
.m37_c01049{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m3_c01049{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);}
.m38_c01049{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m47_c01049{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);}
.m42_c01049{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);}
.m2d_c01049{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01049{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m24_c01049{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m39_c01049{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m29_c01049{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m12_c01049{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m35_c01049{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m30_c01049{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m45_c01049{transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01049{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.m43_c01049{transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);}
.v1_c01049{vertical-align:-5.760000px;}
.v0_c01049{vertical-align:0.000000px;}
.ls0_c01049{letter-spacing:0.000000px;}
.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;}
}
.ws2_c01049{word-spacing:0.000000px;}
.ws0_c01049{word-spacing:11.856000px;}
.ws1_c01049{word-spacing:14.235552px;}
.fc0_c01049{color:transparent;}
.fs9_c01049{font-size:34.560000px;}
.fsa_c01049{font-size:37.440000px;}
.fsb_c01049{font-size:40.320000px;}
.fsc_c01049{font-size:46.080000px;}
.fs2_c01049{font-size:48.960000px;}
.fs3_c01049{font-size:51.840000px;}
.fs5_c01049{font-size:54.720000px;}
.fs4_c01049{font-size:57.600000px;}
.fs8_c01049{font-size:60.480000px;}
.fs6_c01049{font-size:63.360000px;}
.fs1_c01049{font-size:66.240000px;}
.fs7_c01049{font-size:69.120000px;}
.fs0_c01049{font-size:72.000000px;}
.y0_c01049{bottom:0.000000px;}
.y7a_c01049{bottom:61.200000px;}
.y7b_c01049{bottom:61.920000px;}
.y79_c01049{bottom:62.640000px;}
.y78_c01049{bottom:63.360000px;}
.y77_c01049{bottom:104.400000px;}
.y76_c01049{bottom:105.120000px;}
.y75_c01049{bottom:105.840000px;}
.y74_c01049{bottom:106.560000px;}
.y72_c01049{bottom:147.600000px;}
.y70_c01049{bottom:148.320000px;}
.y71_c01049{bottom:149.040000px;}
.y73_c01049{bottom:149.760000px;}
.y6d_c01049{bottom:190.800000px;}
.y6c_c01049{bottom:191.520000px;}
.y6e_c01049{bottom:192.240000px;}
.y6f_c01049{bottom:193.680000px;}
.y6a_c01049{bottom:232.560000px;}
.y6b_c01049{bottom:233.280000px;}
.y68_c01049{bottom:234.000000px;}
.y67_c01049{bottom:234.720000px;}
.y69_c01049{bottom:235.440000px;}
.y63_c01049{bottom:275.040000px;}
.y66_c01049{bottom:276.480000px;}
.y64_c01049{bottom:277.200000px;}
.y62_c01049{bottom:277.920000px;}
.y65_c01049{bottom:278.640000px;}
.y5e_c01049{bottom:318.240000px;}
.y5c_c01049{bottom:318.960000px;}
.y5f_c01049{bottom:319.680000px;}
.y5d_c01049{bottom:320.400000px;}
.y60_c01049{bottom:321.120000px;}
.y61_c01049{bottom:321.840000px;}
.y5a_c01049{bottom:362.880000px;}
.y5b_c01049{bottom:363.600000px;}
.y58_c01049{bottom:393.840000px;}
.y57_c01049{bottom:394.560000px;}
.y56_c01049{bottom:396.000000px;}
.y59_c01049{bottom:396.720000px;}
.y54_c01049{bottom:434.160000px;}
.y51_c01049{bottom:436.320000px;}
.y50_c01049{bottom:437.040000px;}
.y4f_c01049{bottom:437.760000px;}
.y55_c01049{bottom:438.480000px;}
.y52_c01049{bottom:439.200000px;}
.y53_c01049{bottom:440.640000px;}
.y4a_c01049{bottom:480.240000px;}
.y49_c01049{bottom:480.960000px;}
.y4b_c01049{bottom:481.680000px;}
.y4c_c01049{bottom:482.400000px;}
.y4e_c01049{bottom:483.120000px;}
.y4d_c01049{bottom:483.840000px;}
.y46_c01049{bottom:522.720000px;}
.y44_c01049{bottom:523.440000px;}
.y48_c01049{bottom:524.160000px;}
.y45_c01049{bottom:524.880000px;}
.y47_c01049{bottom:525.600000px;}
.y42_c01049{bottom:567.360000px;}
.y41_c01049{bottom:568.080000px;}
.y40_c01049{bottom:568.800000px;}
.y43_c01049{bottom:569.520000px;}
.y3c_c01049{bottom:609.120000px;}
.y3d_c01049{bottom:609.840000px;}
.y3e_c01049{bottom:610.560000px;}
.y3b_c01049{bottom:611.280000px;}
.y3f_c01049{bottom:613.440000px;}
.y37_c01049{bottom:652.320000px;}
.y3a_c01049{bottom:653.760000px;}
.y36_c01049{bottom:654.480000px;}
.y38_c01049{bottom:655.200000px;}
.y39_c01049{bottom:655.920000px;}
.y31_c01049{bottom:694.080000px;}
.y30_c01049{bottom:694.800000px;}
.y2f_c01049{bottom:695.520000px;}
.y35_c01049{bottom:696.240000px;}
.y34_c01049{bottom:696.960000px;}
.y32_c01049{bottom:697.680000px;}
.y33_c01049{bottom:699.120000px;}
.y29_c01049{bottom:737.280000px;}
.y28_c01049{bottom:738.000000px;}
.y2c_c01049{bottom:738.720000px;}
.y2d_c01049{bottom:739.440000px;}
.y2a_c01049{bottom:740.160000px;}
.y2b_c01049{bottom:740.880000px;}
.y2e_c01049{bottom:741.600000px;}
.y23_c01049{bottom:780.480000px;}
.y22_c01049{bottom:781.920000px;}
.y24_c01049{bottom:782.640000px;}
.y26_c01049{bottom:783.360000px;}
.y25_c01049{bottom:784.080000px;}
.y27_c01049{bottom:784.800000px;}
.y1c_c01049{bottom:822.960000px;}
.y1b_c01049{bottom:823.680000px;}
.y1f_c01049{bottom:824.400000px;}
.y1d_c01049{bottom:825.120000px;}
.y20_c01049{bottom:825.840000px;}
.y1e_c01049{bottom:826.560000px;}
.y21_c01049{bottom:827.280000px;}
.y17_c01049{bottom:866.160000px;}
.y16_c01049{bottom:866.880000px;}
.y1a_c01049{bottom:867.600000px;}
.y18_c01049{bottom:868.320000px;}
.y19_c01049{bottom:869.040000px;}
.y11_c01049{bottom:908.640000px;}
.y10_c01049{bottom:909.360000px;}
.y14_c01049{bottom:910.800000px;}
.y12_c01049{bottom:911.520000px;}
.y13_c01049{bottom:912.240000px;}
.y15_c01049{bottom:913.680000px;}
.yc_c01049{bottom:951.840000px;}
.yd_c01049{bottom:952.560000px;}
.ye_c01049{bottom:954.720000px;}
.yf_c01049{bottom:956.160000px;}
.y7_c01049{bottom:995.040000px;}
.ya_c01049{bottom:997.200000px;}
.y8_c01049{bottom:997.920000px;}
.y9_c01049{bottom:998.640000px;}
.yb_c01049{bottom:999.360000px;}
.y3_c01049{bottom:1038.240000px;}
.y2_c01049{bottom:1038.960000px;}
.y5_c01049{bottom:1041.120000px;}
.y4_c01049{bottom:1041.840000px;}
.y6_c01049{bottom:1043.280000px;}
.y1_c01049{bottom:1103.760000px;}
.hb_c01049{height:31.100625px;}
.hc_c01049{height:33.692344px;}
.hd_c01049{height:36.284062px;}
.he_c01049{height:41.467500px;}
.h4_c01049{height:44.059219px;}
.h5_c01049{height:46.650937px;}
.h7_c01049{height:49.242656px;}
.h6_c01049{height:51.834375px;}
.ha_c01049{height:54.426094px;}
.h8_c01049{height:57.017812px;}
.h3_c01049{height:59.609531px;}
.h9_c01049{height:62.201250px;}
.h2_c01049{height:64.792969px;}
.h1_c01049{height:1151.250000px;}
.h0_c01049{height:1151.280000px;}
.w0_c01049{width:814.320000px;}
.w1_c01049{width:814.500000px;}
.x0_c01049{left:0.000000px;}
.x2_c01049{left:105.840000px;}
.x17_c01049{left:149.760000px;}
.x3_c01049{left:181.440000px;}
.x1d_c01049{left:224.640000px;}
.xc_c01049{left:265.680000px;}
.x4_c01049{left:267.120000px;}
.x18_c01049{left:319.680000px;}
.x5_c01049{left:321.120000px;}
.xd_c01049{left:331.920000px;}
.x1e_c01049{left:364.320000px;}
.x6_c01049{left:375.840000px;}
.xe_c01049{left:385.920000px;}
.x11_c01049{left:429.840000px;}
.x1b_c01049{left:449.280000px;}
.x12_c01049{left:472.320000px;}
.x1c_c01049{left:493.920000px;}
.x13_c01049{left:515.520000px;}
.x1f_c01049{left:579.600000px;}
.xf_c01049{left:581.040000px;}
.x7_c01049{left:582.480000px;}
.xa_c01049{left:635.040000px;}
.x10_c01049{left:668.160000px;}
.x8_c01049{left:669.600000px;}
.x19_c01049{left:699.840000px;}
.x1_c01049{left:701.280000px;}
.x20_c01049{left:732.240000px;}
.x15_c01049{left:733.680000px;}
.x9_c01049{left:735.120000px;}
.x16_c01049{left:742.320000px;}
.xb_c01049{left:744.480000px;}
.x1a_c01049{left:763.200000px;}
.x14_c01049{left:764.640000px;}
@media print{
.v1_c01049{vertical-align:-5.120000pt;}
.v0_c01049{vertical-align:0.000000pt;}
.ls0_c01049{letter-spacing:0.000000pt;}
.ws2_c01049{word-spacing:0.000000pt;}
.ws0_c01049{word-spacing:10.538667pt;}
.ws1_c01049{word-spacing:12.653824pt;}
.fs9_c01049{font-size:30.720000pt;}
.fsa_c01049{font-size:33.280000pt;}
.fsb_c01049{font-size:35.840000pt;}
.fsc_c01049{font-size:40.960000pt;}
.fs2_c01049{font-size:43.520000pt;}
.fs3_c01049{font-size:46.080000pt;}
.fs5_c01049{font-size:48.640000pt;}
.fs4_c01049{font-size:51.200000pt;}
.fs8_c01049{font-size:53.760000pt;}
.fs6_c01049{font-size:56.320000pt;}
.fs1_c01049{font-size:58.880000pt;}
.fs7_c01049{font-size:61.440000pt;}
.fs0_c01049{font-size:64.000000pt;}
.y0_c01049{bottom:0.000000pt;}
.y7a_c01049{bottom:54.400000pt;}
.y7b_c01049{bottom:55.040000pt;}
.y79_c01049{bottom:55.680000pt;}
.y78_c01049{bottom:56.320000pt;}
.y77_c01049{bottom:92.800000pt;}
.y76_c01049{bottom:93.440000pt;}
.y75_c01049{bottom:94.080000pt;}
.y74_c01049{bottom:94.720000pt;}
.y72_c01049{bottom:131.200000pt;}
.y70_c01049{bottom:131.840000pt;}
.y71_c01049{bottom:132.480000pt;}
.y73_c01049{bottom:133.120000pt;}
.y6d_c01049{bottom:169.600000pt;}
.y6c_c01049{bottom:170.240000pt;}
.y6e_c01049{bottom:170.880000pt;}
.y6f_c01049{bottom:172.160000pt;}
.y6a_c01049{bottom:206.720000pt;}
.y6b_c01049{bottom:207.360000pt;}
.y68_c01049{bottom:208.000000pt;}
.y67_c01049{bottom:208.640000pt;}
.y69_c01049{bottom:209.280000pt;}
.y63_c01049{bottom:244.480000pt;}
.y66_c01049{bottom:245.760000pt;}
.y64_c01049{bottom:246.400000pt;}
.y62_c01049{bottom:247.040000pt;}
.y65_c01049{bottom:247.680000pt;}
.y5e_c01049{bottom:282.880000pt;}
.y5c_c01049{bottom:283.520000pt;}
.y5f_c01049{bottom:284.160000pt;}
.y5d_c01049{bottom:284.800000pt;}
.y60_c01049{bottom:285.440000pt;}
.y61_c01049{bottom:286.080000pt;}
.y5a_c01049{bottom:322.560000pt;}
.y5b_c01049{bottom:323.200000pt;}
.y58_c01049{bottom:350.080000pt;}
.y57_c01049{bottom:350.720000pt;}
.y56_c01049{bottom:352.000000pt;}
.y59_c01049{bottom:352.640000pt;}
.y54_c01049{bottom:385.920000pt;}
.y51_c01049{bottom:387.840000pt;}
.y50_c01049{bottom:388.480000pt;}
.y4f_c01049{bottom:389.120000pt;}
.y55_c01049{bottom:389.760000pt;}
.y52_c01049{bottom:390.400000pt;}
.y53_c01049{bottom:391.680000pt;}
.y4a_c01049{bottom:426.880000pt;}
.y49_c01049{bottom:427.520000pt;}
.y4b_c01049{bottom:428.160000pt;}
.y4c_c01049{bottom:428.800000pt;}
.y4e_c01049{bottom:429.440000pt;}
.y4d_c01049{bottom:430.080000pt;}
.y46_c01049{bottom:464.640000pt;}
.y44_c01049{bottom:465.280000pt;}
.y48_c01049{bottom:465.920000pt;}
.y45_c01049{bottom:466.560000pt;}
.y47_c01049{bottom:467.200000pt;}
.y42_c01049{bottom:504.320000pt;}
.y41_c01049{bottom:504.960000pt;}
.y40_c01049{bottom:505.600000pt;}
.y43_c01049{bottom:506.240000pt;}
.y3c_c01049{bottom:541.440000pt;}
.y3d_c01049{bottom:542.080000pt;}
.y3e_c01049{bottom:542.720000pt;}
.y3b_c01049{bottom:543.360000pt;}
.y3f_c01049{bottom:545.280000pt;}
.y37_c01049{bottom:579.840000pt;}
.y3a_c01049{bottom:581.120000pt;}
.y36_c01049{bottom:581.760000pt;}
.y38_c01049{bottom:582.400000pt;}
.y39_c01049{bottom:583.040000pt;}
.y31_c01049{bottom:616.960000pt;}
.y30_c01049{bottom:617.600000pt;}
.y2f_c01049{bottom:618.240000pt;}
.y35_c01049{bottom:618.880000pt;}
.y34_c01049{bottom:619.520000pt;}
.y32_c01049{bottom:620.160000pt;}
.y33_c01049{bottom:621.440000pt;}
.y29_c01049{bottom:655.360000pt;}
.y28_c01049{bottom:656.000000pt;}
.y2c_c01049{bottom:656.640000pt;}
.y2d_c01049{bottom:657.280000pt;}
.y2a_c01049{bottom:657.920000pt;}
.y2b_c01049{bottom:658.560000pt;}
.y2e_c01049{bottom:659.200000pt;}
.y23_c01049{bottom:693.760000pt;}
.y22_c01049{bottom:695.040000pt;}
.y24_c01049{bottom:695.680000pt;}
.y26_c01049{bottom:696.320000pt;}
.y25_c01049{bottom:696.960000pt;}
.y27_c01049{bottom:697.600000pt;}
.y1c_c01049{bottom:731.520000pt;}
.y1b_c01049{bottom:732.160000pt;}
.y1f_c01049{bottom:732.800000pt;}
.y1d_c01049{bottom:733.440000pt;}
.y20_c01049{bottom:734.080000pt;}
.y1e_c01049{bottom:734.720000pt;}
.y21_c01049{bottom:735.360000pt;}
.y17_c01049{bottom:769.920000pt;}
.y16_c01049{bottom:770.560000pt;}
.y1a_c01049{bottom:771.200000pt;}
.y18_c01049{bottom:771.840000pt;}
.y19_c01049{bottom:772.480000pt;}
.y11_c01049{bottom:807.680000pt;}
.y10_c01049{bottom:808.320000pt;}
.y14_c01049{bottom:809.600000pt;}
.y12_c01049{bottom:810.240000pt;}
.y13_c01049{bottom:810.880000pt;}
.y15_c01049{bottom:812.160000pt;}
.yc_c01049{bottom:846.080000pt;}
.yd_c01049{bottom:846.720000pt;}
.ye_c01049{bottom:848.640000pt;}
.yf_c01049{bottom:849.920000pt;}
.y7_c01049{bottom:884.480000pt;}
.ya_c01049{bottom:886.400000pt;}
.y8_c01049{bottom:887.040000pt;}
.y9_c01049{bottom:887.680000pt;}
.yb_c01049{bottom:888.320000pt;}
.y3_c01049{bottom:922.880000pt;}
.y2_c01049{bottom:923.520000pt;}
.y5_c01049{bottom:925.440000pt;}
.y4_c01049{bottom:926.080000pt;}
.y6_c01049{bottom:927.360000pt;}
.y1_c01049{bottom:981.120000pt;}
.hb_c01049{height:27.645000pt;}
.hc_c01049{height:29.948750pt;}
.hd_c01049{height:32.252500pt;}
.he_c01049{height:36.860000pt;}
.h4_c01049{height:39.163750pt;}
.h5_c01049{height:41.467500pt;}
.h7_c01049{height:43.771250pt;}
.h6_c01049{height:46.075000pt;}
.ha_c01049{height:48.378750pt;}
.h8_c01049{height:50.682500pt;}
.h3_c01049{height:52.986250pt;}
.h9_c01049{height:55.290000pt;}
.h2_c01049{height:57.593750pt;}
.h1_c01049{height:1023.333333pt;}
.h0_c01049{height:1023.360000pt;}
.w0_c01049{width:723.840000pt;}
.w1_c01049{width:724.000000pt;}
.x0_c01049{left:0.000000pt;}
.x2_c01049{left:94.080000pt;}
.x17_c01049{left:133.120000pt;}
.x3_c01049{left:161.280000pt;}
.x1d_c01049{left:199.680000pt;}
.xc_c01049{left:236.160000pt;}
.x4_c01049{left:237.440000pt;}
.x18_c01049{left:284.160000pt;}
.x5_c01049{left:285.440000pt;}
.xd_c01049{left:295.040000pt;}
.x1e_c01049{left:323.840000pt;}
.x6_c01049{left:334.080000pt;}
.xe_c01049{left:343.040000pt;}
.x11_c01049{left:382.080000pt;}
.x1b_c01049{left:399.360000pt;}
.x12_c01049{left:419.840000pt;}
.x1c_c01049{left:439.040000pt;}
.x13_c01049{left:458.240000pt;}
.x1f_c01049{left:515.200000pt;}
.xf_c01049{left:516.480000pt;}
.x7_c01049{left:517.760000pt;}
.xa_c01049{left:564.480000pt;}
.x10_c01049{left:593.920000pt;}
.x8_c01049{left:595.200000pt;}
.x19_c01049{left:622.080000pt;}
.x1_c01049{left:623.360000pt;}
.x20_c01049{left:650.880000pt;}
.x15_c01049{left:652.160000pt;}
.x9_c01049{left:653.440000pt;}
.x16_c01049{left:659.840000pt;}
.xb_c01049{left:661.760000pt;}
.x1a_c01049{left:678.400000pt;}
.x14_c01049{left:679.680000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_849ec94a4a67da798bf15c12.woff2')format("woff");}.ff1_c01050{font-family:ff1_c01050;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m46_c01050{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m49_c01050{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);}
.m3f_c01050{transform:matrix(0.235850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235850,0.000000,0.000000,0.250000,0,0);}
.m45_c01050{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m18_c01050{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);}
.m4b_c01050{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);}
.m35_c01050{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);}
.m4a_c01050{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m4_c01050{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);}
.m44_c01050{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m28_c01050{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1_c01050{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m8_c01050{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m20_c01050{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_c01050{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m24_c01050{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m5_c01050{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m15_c01050{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01050{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01050{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01050{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m10_c01050{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m13_c01050{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m25_c01050{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01050{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01050{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m17_c01050{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mb_c01050{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m26_c01050{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m21_c01050{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);}
.m4c_c01050{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m6_c01050{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m43_c01050{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m14_c01050{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01050{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01050{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);}
.m0_c01050{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m33_c01050{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.md_c01050{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);}
.me_c01050{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_c01050{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01050{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.mc_c01050{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m16_c01050{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);}
.m27_c01050{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);}
.m41_c01050{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01050{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01050{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);}
.m9_c01050{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m29_c01050{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);}
.m12_c01050{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);}
.m2d_c01050{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m36_c01050{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01050{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);}
.m34_c01050{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01050{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);}
.m31_c01050{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01050{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);}
.m39_c01050{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01050{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);}
.m37_c01050{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m11_c01050{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01050{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);}
.ma_c01050{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m38_c01050{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);}
.m3_c01050{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m30_c01050{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);}
.m7_c01050{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m40_c01050{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01050{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m23_c01050{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m22_c01050{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);}
.m2e_c01050{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01050{transform:matrix(0.647500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.647500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.647500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01050{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.m47_c01050{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m42_c01050{transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);}
.m48_c01050{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.v2_c01050{vertical-align:-5.760000px;}
.v1_c01050{vertical-align:-2.880000px;}
.v0_c01050{vertical-align:0.000000px;}
.ls0_c01050{letter-spacing:0.000000px;}
.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;}
}
.ws5_c01050{word-spacing:0.000000px;}
.ws3_c01050{word-spacing:7.094995px;}
.ws1_c01050{word-spacing:11.693143px;}
.ws2_c01050{word-spacing:15.598771px;}
.ws4_c01050{word-spacing:32.841600px;}
.ws0_c01050{word-spacing:43.053600px;}
.fc0_c01050{color:transparent;}
.fs9_c01050{font-size:37.440000px;}
.fs8_c01050{font-size:40.320000px;}
.fsc_c01050{font-size:43.200000px;}
.fs6_c01050{font-size:48.960000px;}
.fs2_c01050{font-size:51.840000px;}
.fs7_c01050{font-size:54.720000px;}
.fs3_c01050{font-size:57.600000px;}
.fs0_c01050{font-size:60.480000px;}
.fs1_c01050{font-size:63.360000px;}
.fs5_c01050{font-size:66.240000px;}
.fsa_c01050{font-size:69.120000px;}
.fsb_c01050{font-size:72.000000px;}
.fs4_c01050{font-size:74.880000px;}
.fsd_c01050{font-size:95.040000px;}
.y0_c01050{bottom:0.000000px;}
.y6c_c01050{bottom:77.040000px;}
.y6e_c01050{bottom:78.480000px;}
.y6d_c01050{bottom:79.200000px;}
.y6b_c01050{bottom:108.720000px;}
.y69_c01050{bottom:109.440000px;}
.y8e_c01050{bottom:110.160000px;}
.y68_c01050{bottom:110.880000px;}
.y6a_c01050{bottom:111.600000px;}
.y66_c01050{bottom:153.360000px;}
.y67_c01050{bottom:154.800000px;}
.y65_c01050{bottom:157.680000px;}
.y63_c01050{bottom:184.320000px;}
.y61_c01050{bottom:185.040000px;}
.y60_c01050{bottom:185.760000px;}
.y62_c01050{bottom:186.480000px;}
.y64_c01050{bottom:187.200000px;}
.y5e_c01050{bottom:227.520000px;}
.y5d_c01050{bottom:228.240000px;}
.y8c_c01050{bottom:228.960000px;}
.y5f_c01050{bottom:229.680000px;}
.y8d_c01050{bottom:230.400000px;}
.y59_c01050{bottom:270.000000px;}
.y5b_c01050{bottom:270.720000px;}
.y58_c01050{bottom:271.440000px;}
.y5c_c01050{bottom:272.160000px;}
.y5a_c01050{bottom:272.880000px;}
.y8b_c01050{bottom:273.600000px;}
.y56_c01050{bottom:304.560000px;}
.y53_c01050{bottom:312.480000px;}
.y55_c01050{bottom:313.200000px;}
.y52_c01050{bottom:313.920000px;}
.y57_c01050{bottom:314.640000px;}
.y54_c01050{bottom:315.360000px;}
.y4f_c01050{bottom:355.680000px;}
.y4e_c01050{bottom:357.120000px;}
.y51_c01050{bottom:357.840000px;}
.y4d_c01050{bottom:358.560000px;}
.y50_c01050{bottom:359.280000px;}
.y4a_c01050{bottom:398.880000px;}
.y49_c01050{bottom:400.320000px;}
.y48_c01050{bottom:401.040000px;}
.y4b_c01050{bottom:401.760000px;}
.y8a_c01050{bottom:402.480000px;}
.y89_c01050{bottom:403.920000px;}
.y45_c01050{bottom:442.080000px;}
.y46_c01050{bottom:442.800000px;}
.y44_c01050{bottom:443.520000px;}
.y87_c01050{bottom:444.240000px;}
.y47_c01050{bottom:444.960000px;}
.y88_c01050{bottom:445.680000px;}
.y42_c01050{bottom:485.280000px;}
.y41_c01050{bottom:486.000000px;}
.y4c_c01050{bottom:486.720000px;}
.y43_c01050{bottom:487.440000px;}
.y40_c01050{bottom:519.840000px;}
.y3f_c01050{bottom:520.560000px;}
.y3c_c01050{bottom:527.760000px;}
.y3b_c01050{bottom:528.480000px;}
.y3e_c01050{bottom:529.200000px;}
.y85_c01050{bottom:529.920000px;}
.y3d_c01050{bottom:530.640000px;}
.y86_c01050{bottom:531.360000px;}
.y38_c01050{bottom:569.520000px;}
.y39_c01050{bottom:570.960000px;}
.y36_c01050{bottom:571.680000px;}
.y83_c01050{bottom:572.400000px;}
.y37_c01050{bottom:573.120000px;}
.y3a_c01050{bottom:573.840000px;}
.y84_c01050{bottom:574.560000px;}
.y32_c01050{bottom:612.720000px;}
.y31_c01050{bottom:613.440000px;}
.y30_c01050{bottom:614.160000px;}
.y35_c01050{bottom:614.880000px;}
.y33_c01050{bottom:615.600000px;}
.y34_c01050{bottom:616.320000px;}
.y82_c01050{bottom:617.760000px;}
.y2c_c01050{bottom:656.640000px;}
.y2f_c01050{bottom:658.080000px;}
.y2d_c01050{bottom:658.800000px;}
.y2e_c01050{bottom:659.520000px;}
.y81_c01050{bottom:660.240000px;}
.y28_c01050{bottom:698.400000px;}
.y29_c01050{bottom:699.120000px;}
.y27_c01050{bottom:699.840000px;}
.y2b_c01050{bottom:700.560000px;}
.y7e_c01050{bottom:701.280000px;}
.y2a_c01050{bottom:702.000000px;}
.y80_c01050{bottom:702.720000px;}
.y7f_c01050{bottom:703.440000px;}
.y22_c01050{bottom:742.320000px;}
.y23_c01050{bottom:743.040000px;}
.y24_c01050{bottom:744.480000px;}
.y25_c01050{bottom:745.200000px;}
.y26_c01050{bottom:745.920000px;}
.y7d_c01050{bottom:747.360000px;}
.y1e_c01050{bottom:785.520000px;}
.y20_c01050{bottom:786.240000px;}
.y7b_c01050{bottom:787.680000px;}
.y1f_c01050{bottom:788.400000px;}
.y21_c01050{bottom:789.840000px;}
.y7c_c01050{bottom:790.560000px;}
.y1a_c01050{bottom:828.000000px;}
.y19_c01050{bottom:828.720000px;}
.y1c_c01050{bottom:829.440000px;}
.y7a_c01050{bottom:830.880000px;}
.y1b_c01050{bottom:831.600000px;}
.y1d_c01050{bottom:832.320000px;}
.y79_c01050{bottom:833.760000px;}
.y14_c01050{bottom:871.200000px;}
.y13_c01050{bottom:871.920000px;}
.y15_c01050{bottom:873.360000px;}
.y78_c01050{bottom:874.080000px;}
.y16_c01050{bottom:874.800000px;}
.y17_c01050{bottom:875.520000px;}
.y18_c01050{bottom:876.240000px;}
.ye_c01050{bottom:913.680000px;}
.yd_c01050{bottom:914.400000px;}
.y10_c01050{bottom:915.120000px;}
.yf_c01050{bottom:917.280000px;}
.y11_c01050{bottom:918.000000px;}
.y12_c01050{bottom:918.720000px;}
.y77_c01050{bottom:920.160000px;}
.ya_c01050{bottom:956.880000px;}
.y9_c01050{bottom:957.600000px;}
.yc_c01050{bottom:959.040000px;}
.y75_c01050{bottom:959.760000px;}
.y73_c01050{bottom:960.480000px;}
.yb_c01050{bottom:961.200000px;}
.y76_c01050{bottom:961.920000px;}
.y74_c01050{bottom:962.640000px;}
.y5_c01050{bottom:1000.080000px;}
.y6_c01050{bottom:1000.800000px;}
.y8_c01050{bottom:1002.240000px;}
.y71_c01050{bottom:1002.960000px;}
.y7_c01050{bottom:1003.680000px;}
.y72_c01050{bottom:1005.840000px;}
.y2_c01050{bottom:1042.560000px;}
.y1_c01050{bottom:1043.280000px;}
.y4_c01050{bottom:1045.440000px;}
.y3_c01050{bottom:1046.160000px;}
.y70_c01050{bottom:1048.320000px;}
.y6f_c01050{bottom:1104.480000px;}
.hb_c01050{height:33.692344px;}
.ha_c01050{height:36.284062px;}
.he_c01050{height:38.875781px;}
.h8_c01050{height:44.059219px;}
.h4_c01050{height:46.650937px;}
.h9_c01050{height:49.242656px;}
.h5_c01050{height:51.834375px;}
.h2_c01050{height:54.426094px;}
.h3_c01050{height:57.017812px;}
.h7_c01050{height:59.609531px;}
.hc_c01050{height:62.201250px;}
.hd_c01050{height:64.792969px;}
.h6_c01050{height:67.384687px;}
.hf_c01050{height:85.526719px;}
.h0_c01050{height:1155.600000px;}
.h1_c01050{height:1155.750000px;}
.w1_c01050{width:820.500000px;}
.w0_c01050{width:820.800000px;}
.x0_c01050{left:0.000000px;}
.x1_c01050{left:104.400000px;}
.xb_c01050{left:105.840000px;}
.x1b_c01050{left:107.280000px;}
.x2_c01050{left:180.000000px;}
.xc_c01050{left:181.440000px;}
.x1c_c01050{left:182.880000px;}
.x1f_c01050{left:193.680000px;}
.x20_c01050{left:235.440000px;}
.x3_c01050{left:265.680000px;}
.xf_c01050{left:267.120000px;}
.x23_c01050{left:268.560000px;}
.x21_c01050{left:278.640000px;}
.x4_c01050{left:319.680000px;}
.x10_c01050{left:321.120000px;}
.x24_c01050{left:322.560000px;}
.x6_c01050{left:330.480000px;}
.xd_c01050{left:331.920000px;}
.x22_c01050{left:334.080000px;}
.x9_c01050{left:374.400000px;}
.x12_c01050{left:375.840000px;}
.x7_c01050{left:384.480000px;}
.xe_c01050{left:385.920000px;}
.x1d_c01050{left:387.360000px;}
.xa_c01050{left:417.600000px;}
.x11_c01050{left:419.040000px;}
.x8_c01050{left:429.120000px;}
.x15_c01050{left:451.440000px;}
.x13_c01050{left:473.040000px;}
.x1a_c01050{left:483.120000px;}
.x16_c01050{left:504.000000px;}
.x14_c01050{left:515.520000px;}
.x18_c01050{left:527.040000px;}
.x1e_c01050{left:532.080000px;}
.x17_c01050{left:542.880000px;}
.x5_c01050{left:581.040000px;}
.x19_c01050{left:582.480000px;}
.x2e_c01050{left:635.040000px;}
.x26_c01050{left:667.440000px;}
.x2a_c01050{left:668.880000px;}
.x27_c01050{left:700.560000px;}
.x2d_c01050{left:702.000000px;}
.x25_c01050{left:714.960000px;}
.x2b_c01050{left:733.680000px;}
.x2c_c01050{left:743.040000px;}
.x28_c01050{left:744.480000px;}
.x29_c01050{left:763.920000px;}
.x2f_c01050{left:765.360000px;}
@media print{
.v2_c01050{vertical-align:-5.120000pt;}
.v1_c01050{vertical-align:-2.560000pt;}
.v0_c01050{vertical-align:0.000000pt;}
.ls0_c01050{letter-spacing:0.000000pt;}
.ws5_c01050{word-spacing:0.000000pt;}
.ws3_c01050{word-spacing:6.306662pt;}
.ws1_c01050{word-spacing:10.393905pt;}
.ws2_c01050{word-spacing:13.865574pt;}
.ws4_c01050{word-spacing:29.192533pt;}
.ws0_c01050{word-spacing:38.269867pt;}
.fs9_c01050{font-size:33.280000pt;}
.fs8_c01050{font-size:35.840000pt;}
.fsc_c01050{font-size:38.400000pt;}
.fs6_c01050{font-size:43.520000pt;}
.fs2_c01050{font-size:46.080000pt;}
.fs7_c01050{font-size:48.640000pt;}
.fs3_c01050{font-size:51.200000pt;}
.fs0_c01050{font-size:53.760000pt;}
.fs1_c01050{font-size:56.320000pt;}
.fs5_c01050{font-size:58.880000pt;}
.fsa_c01050{font-size:61.440000pt;}
.fsb_c01050{font-size:64.000000pt;}
.fs4_c01050{font-size:66.560000pt;}
.fsd_c01050{font-size:84.480000pt;}
.y0_c01050{bottom:0.000000pt;}
.y6c_c01050{bottom:68.480000pt;}
.y6e_c01050{bottom:69.760000pt;}
.y6d_c01050{bottom:70.400000pt;}
.y6b_c01050{bottom:96.640000pt;}
.y69_c01050{bottom:97.280000pt;}
.y8e_c01050{bottom:97.920000pt;}
.y68_c01050{bottom:98.560000pt;}
.y6a_c01050{bottom:99.200000pt;}
.y66_c01050{bottom:136.320000pt;}
.y67_c01050{bottom:137.600000pt;}
.y65_c01050{bottom:140.160000pt;}
.y63_c01050{bottom:163.840000pt;}
.y61_c01050{bottom:164.480000pt;}
.y60_c01050{bottom:165.120000pt;}
.y62_c01050{bottom:165.760000pt;}
.y64_c01050{bottom:166.400000pt;}
.y5e_c01050{bottom:202.240000pt;}
.y5d_c01050{bottom:202.880000pt;}
.y8c_c01050{bottom:203.520000pt;}
.y5f_c01050{bottom:204.160000pt;}
.y8d_c01050{bottom:204.800000pt;}
.y59_c01050{bottom:240.000000pt;}
.y5b_c01050{bottom:240.640000pt;}
.y58_c01050{bottom:241.280000pt;}
.y5c_c01050{bottom:241.920000pt;}
.y5a_c01050{bottom:242.560000pt;}
.y8b_c01050{bottom:243.200000pt;}
.y56_c01050{bottom:270.720000pt;}
.y53_c01050{bottom:277.760000pt;}
.y55_c01050{bottom:278.400000pt;}
.y52_c01050{bottom:279.040000pt;}
.y57_c01050{bottom:279.680000pt;}
.y54_c01050{bottom:280.320000pt;}
.y4f_c01050{bottom:316.160000pt;}
.y4e_c01050{bottom:317.440000pt;}
.y51_c01050{bottom:318.080000pt;}
.y4d_c01050{bottom:318.720000pt;}
.y50_c01050{bottom:319.360000pt;}
.y4a_c01050{bottom:354.560000pt;}
.y49_c01050{bottom:355.840000pt;}
.y48_c01050{bottom:356.480000pt;}
.y4b_c01050{bottom:357.120000pt;}
.y8a_c01050{bottom:357.760000pt;}
.y89_c01050{bottom:359.040000pt;}
.y45_c01050{bottom:392.960000pt;}
.y46_c01050{bottom:393.600000pt;}
.y44_c01050{bottom:394.240000pt;}
.y87_c01050{bottom:394.880000pt;}
.y47_c01050{bottom:395.520000pt;}
.y88_c01050{bottom:396.160000pt;}
.y42_c01050{bottom:431.360000pt;}
.y41_c01050{bottom:432.000000pt;}
.y4c_c01050{bottom:432.640000pt;}
.y43_c01050{bottom:433.280000pt;}
.y40_c01050{bottom:462.080000pt;}
.y3f_c01050{bottom:462.720000pt;}
.y3c_c01050{bottom:469.120000pt;}
.y3b_c01050{bottom:469.760000pt;}
.y3e_c01050{bottom:470.400000pt;}
.y85_c01050{bottom:471.040000pt;}
.y3d_c01050{bottom:471.680000pt;}
.y86_c01050{bottom:472.320000pt;}
.y38_c01050{bottom:506.240000pt;}
.y39_c01050{bottom:507.520000pt;}
.y36_c01050{bottom:508.160000pt;}
.y83_c01050{bottom:508.800000pt;}
.y37_c01050{bottom:509.440000pt;}
.y3a_c01050{bottom:510.080000pt;}
.y84_c01050{bottom:510.720000pt;}
.y32_c01050{bottom:544.640000pt;}
.y31_c01050{bottom:545.280000pt;}
.y30_c01050{bottom:545.920000pt;}
.y35_c01050{bottom:546.560000pt;}
.y33_c01050{bottom:547.200000pt;}
.y34_c01050{bottom:547.840000pt;}
.y82_c01050{bottom:549.120000pt;}
.y2c_c01050{bottom:583.680000pt;}
.y2f_c01050{bottom:584.960000pt;}
.y2d_c01050{bottom:585.600000pt;}
.y2e_c01050{bottom:586.240000pt;}
.y81_c01050{bottom:586.880000pt;}
.y28_c01050{bottom:620.800000pt;}
.y29_c01050{bottom:621.440000pt;}
.y27_c01050{bottom:622.080000pt;}
.y2b_c01050{bottom:622.720000pt;}
.y7e_c01050{bottom:623.360000pt;}
.y2a_c01050{bottom:624.000000pt;}
.y80_c01050{bottom:624.640000pt;}
.y7f_c01050{bottom:625.280000pt;}
.y22_c01050{bottom:659.840000pt;}
.y23_c01050{bottom:660.480000pt;}
.y24_c01050{bottom:661.760000pt;}
.y25_c01050{bottom:662.400000pt;}
.y26_c01050{bottom:663.040000pt;}
.y7d_c01050{bottom:664.320000pt;}
.y1e_c01050{bottom:698.240000pt;}
.y20_c01050{bottom:698.880000pt;}
.y7b_c01050{bottom:700.160000pt;}
.y1f_c01050{bottom:700.800000pt;}
.y21_c01050{bottom:702.080000pt;}
.y7c_c01050{bottom:702.720000pt;}
.y1a_c01050{bottom:736.000000pt;}
.y19_c01050{bottom:736.640000pt;}
.y1c_c01050{bottom:737.280000pt;}
.y7a_c01050{bottom:738.560000pt;}
.y1b_c01050{bottom:739.200000pt;}
.y1d_c01050{bottom:739.840000pt;}
.y79_c01050{bottom:741.120000pt;}
.y14_c01050{bottom:774.400000pt;}
.y13_c01050{bottom:775.040000pt;}
.y15_c01050{bottom:776.320000pt;}
.y78_c01050{bottom:776.960000pt;}
.y16_c01050{bottom:777.600000pt;}
.y17_c01050{bottom:778.240000pt;}
.y18_c01050{bottom:778.880000pt;}
.ye_c01050{bottom:812.160000pt;}
.yd_c01050{bottom:812.800000pt;}
.y10_c01050{bottom:813.440000pt;}
.yf_c01050{bottom:815.360000pt;}
.y11_c01050{bottom:816.000000pt;}
.y12_c01050{bottom:816.640000pt;}
.y77_c01050{bottom:817.920000pt;}
.ya_c01050{bottom:850.560000pt;}
.y9_c01050{bottom:851.200000pt;}
.yc_c01050{bottom:852.480000pt;}
.y75_c01050{bottom:853.120000pt;}
.y73_c01050{bottom:853.760000pt;}
.yb_c01050{bottom:854.400000pt;}
.y76_c01050{bottom:855.040000pt;}
.y74_c01050{bottom:855.680000pt;}
.y5_c01050{bottom:888.960000pt;}
.y6_c01050{bottom:889.600000pt;}
.y8_c01050{bottom:890.880000pt;}
.y71_c01050{bottom:891.520000pt;}
.y7_c01050{bottom:892.160000pt;}
.y72_c01050{bottom:894.080000pt;}
.y2_c01050{bottom:926.720000pt;}
.y1_c01050{bottom:927.360000pt;}
.y4_c01050{bottom:929.280000pt;}
.y3_c01050{bottom:929.920000pt;}
.y70_c01050{bottom:931.840000pt;}
.y6f_c01050{bottom:981.760000pt;}
.hb_c01050{height:29.948750pt;}
.ha_c01050{height:32.252500pt;}
.he_c01050{height:34.556250pt;}
.h8_c01050{height:39.163750pt;}
.h4_c01050{height:41.467500pt;}
.h9_c01050{height:43.771250pt;}
.h5_c01050{height:46.075000pt;}
.h2_c01050{height:48.378750pt;}
.h3_c01050{height:50.682500pt;}
.h7_c01050{height:52.986250pt;}
.hc_c01050{height:55.290000pt;}
.hd_c01050{height:57.593750pt;}
.h6_c01050{height:59.897500pt;}
.hf_c01050{height:76.023750pt;}
.h0_c01050{height:1027.200000pt;}
.h1_c01050{height:1027.333333pt;}
.w1_c01050{width:729.333333pt;}
.w0_c01050{width:729.600000pt;}
.x0_c01050{left:0.000000pt;}
.x1_c01050{left:92.800000pt;}
.xb_c01050{left:94.080000pt;}
.x1b_c01050{left:95.360000pt;}
.x2_c01050{left:160.000000pt;}
.xc_c01050{left:161.280000pt;}
.x1c_c01050{left:162.560000pt;}
.x1f_c01050{left:172.160000pt;}
.x20_c01050{left:209.280000pt;}
.x3_c01050{left:236.160000pt;}
.xf_c01050{left:237.440000pt;}
.x23_c01050{left:238.720000pt;}
.x21_c01050{left:247.680000pt;}
.x4_c01050{left:284.160000pt;}
.x10_c01050{left:285.440000pt;}
.x24_c01050{left:286.720000pt;}
.x6_c01050{left:293.760000pt;}
.xd_c01050{left:295.040000pt;}
.x22_c01050{left:296.960000pt;}
.x9_c01050{left:332.800000pt;}
.x12_c01050{left:334.080000pt;}
.x7_c01050{left:341.760000pt;}
.xe_c01050{left:343.040000pt;}
.x1d_c01050{left:344.320000pt;}
.xa_c01050{left:371.200000pt;}
.x11_c01050{left:372.480000pt;}
.x8_c01050{left:381.440000pt;}
.x15_c01050{left:401.280000pt;}
.x13_c01050{left:420.480000pt;}
.x1a_c01050{left:429.440000pt;}
.x16_c01050{left:448.000000pt;}
.x14_c01050{left:458.240000pt;}
.x18_c01050{left:468.480000pt;}
.x1e_c01050{left:472.960000pt;}
.x17_c01050{left:482.560000pt;}
.x5_c01050{left:516.480000pt;}
.x19_c01050{left:517.760000pt;}
.x2e_c01050{left:564.480000pt;}
.x26_c01050{left:593.280000pt;}
.x2a_c01050{left:594.560000pt;}
.x27_c01050{left:622.720000pt;}
.x2d_c01050{left:624.000000pt;}
.x25_c01050{left:635.520000pt;}
.x2b_c01050{left:652.160000pt;}
.x2c_c01050{left:660.480000pt;}
.x28_c01050{left:661.760000pt;}
.x29_c01050{left:679.040000pt;}
.x2f_c01050{left:680.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c05927c54ca45f450fa53ecb.woff2')format("woff");}.ff1_c01051{font-family:ff1_c01051;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4e_c01051{transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);}
.m4a_c01051{transform:matrix(0.214275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214275,0.000000,0.000000,0.250000,0,0);}
.m53_c01051{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);}
.m35_c01051{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m4c_c01051{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.mb_c01051{transform:matrix(0.247975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247975,0.000000,0.000000,0.250000,0,0);}
.m30_c01051{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m32_c01051{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);}
.m52_c01051{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);}
.m38_c01051{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_c01051{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);}
.m3a_c01051{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_c01051{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);}
.m4f_c01051{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);}
.m2e_c01051{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);}
.m2a_c01051{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_c01051{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m24_c01051{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mf_c01051{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);}
.m41_c01051{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m7_c01051{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_c01051{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01051{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m12_c01051{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01051{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01051{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m4_c01051{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.md_c01051{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m23_c01051{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01051{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m34_c01051{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1_c01051{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m31_c01051{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m50_c01051{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m21_c01051{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_c01051{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m39_c01051{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);}
.m3d_c01051{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);}
.m51_c01051{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m33_c01051{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m17_c01051{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);}
.m45_c01051{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);}
.m40_c01051{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m36_c01051{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);}
.m48_c01051{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m44_c01051{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);}
.m3c_c01051{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);}
.m4d_c01051{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);}
.m27_c01051{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);}
.m2b_c01051{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m49_c01051{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m43_c01051{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);}
.m47_c01051{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m25_c01051{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m9_c01051{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m13_c01051{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01051{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m29_c01051{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01051{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);}
.m18_c01051{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.me_c01051{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m2_c01051{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);}
.m10_c01051{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m46_c01051{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m5_c01051{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m19_c01051{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m28_c01051{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);}
.m11_c01051{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m22_c01051{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m37_c01051{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);}
.m1a_c01051{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01051{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m15_c01051{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.ma_c01051{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);}
.m3_c01051{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01051{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m20_c01051{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);}
.m2c_c01051{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m42_c01051{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);}
.m2d_c01051{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m6_c01051{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.mc_c01051{transform:matrix(0.687500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01051{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01051{transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);}
.v0_c01051{vertical-align:0.000000px;}
.v1_c01051{vertical-align:2.880000px;}
.ls0_c01051{letter-spacing:0.000000px;}
.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:-8.588160px;}
.ws1_c01051{word-spacing:-2.344080px;}
.ws2_c01051{word-spacing:0.000000px;}
.fc0_c01051{color:transparent;}
.fsf_c01051{font-size:17.280000px;}
.fse_c01051{font-size:25.920000px;}
.fs7_c01051{font-size:37.440000px;}
.fsb_c01051{font-size:40.320000px;}
.fsd_c01051{font-size:43.200000px;}
.fsc_c01051{font-size:46.080000px;}
.fsa_c01051{font-size:48.960000px;}
.fs2_c01051{font-size:51.840000px;}
.fs5_c01051{font-size:54.720000px;}
.fs8_c01051{font-size:57.600000px;}
.fs4_c01051{font-size:60.480000px;}
.fs1_c01051{font-size:63.360000px;}
.fs0_c01051{font-size:66.240000px;}
.fs3_c01051{font-size:69.120000px;}
.fs9_c01051{font-size:72.000000px;}
.fs11_c01051{font-size:74.880000px;}
.fs10_c01051{font-size:77.760000px;}
.fs6_c01051{font-size:95.040000px;}
.y0_c01051{bottom:0.000000px;}
.y6d_c01051{bottom:95.040000px;}
.y6e_c01051{bottom:96.480000px;}
.y6c_c01051{bottom:125.280000px;}
.y6b_c01051{bottom:126.000000px;}
.y69_c01051{bottom:126.720000px;}
.y6a_c01051{bottom:127.440000px;}
.y7e_c01051{bottom:128.880000px;}
.y68_c01051{bottom:168.480000px;}
.y67_c01051{bottom:169.200000px;}
.y66_c01051{bottom:169.920000px;}
.y7d_c01051{bottom:171.360000px;}
.y65_c01051{bottom:203.040000px;}
.y62_c01051{bottom:210.240000px;}
.y63_c01051{bottom:211.680000px;}
.y60_c01051{bottom:212.400000px;}
.y64_c01051{bottom:213.120000px;}
.y61_c01051{bottom:213.840000px;}
.y5f_c01051{bottom:254.160000px;}
.y5d_c01051{bottom:254.880000px;}
.y5e_c01051{bottom:256.320000px;}
.y5b_c01051{bottom:285.840000px;}
.y58_c01051{bottom:286.560000px;}
.y59_c01051{bottom:287.280000px;}
.y5c_c01051{bottom:288.720000px;}
.y5a_c01051{bottom:289.440000px;}
.y57_c01051{bottom:327.600000px;}
.y54_c01051{bottom:329.760000px;}
.y55_c01051{bottom:331.200000px;}
.y56_c01051{bottom:331.920000px;}
.y51_c01051{bottom:360.720000px;}
.y52_c01051{bottom:361.440000px;}
.y50_c01051{bottom:362.880000px;}
.y7c_c01051{bottom:363.600000px;}
.y53_c01051{bottom:364.320000px;}
.y4d_c01051{bottom:405.360000px;}
.y4f_c01051{bottom:406.080000px;}
.y4e_c01051{bottom:406.800000px;}
.y49_c01051{bottom:437.040000px;}
.y48_c01051{bottom:437.760000px;}
.y4a_c01051{bottom:438.480000px;}
.y4b_c01051{bottom:439.200000px;}
.y4c_c01051{bottom:439.920000px;}
.y45_c01051{bottom:479.520000px;}
.y7b_c01051{bottom:480.240000px;}
.y46_c01051{bottom:480.960000px;}
.y44_c01051{bottom:482.400000px;}
.y47_c01051{bottom:483.120000px;}
.y40_c01051{bottom:511.920000px;}
.y3f_c01051{bottom:512.640000px;}
.y43_c01051{bottom:513.360000px;}
.y7a_c01051{bottom:514.080000px;}
.y41_c01051{bottom:514.800000px;}
.y42_c01051{bottom:515.520000px;}
.y3e_c01051{bottom:555.120000px;}
.y3b_c01051{bottom:555.840000px;}
.y79_c01051{bottom:556.560000px;}
.y3d_c01051{bottom:557.280000px;}
.y3c_c01051{bottom:558.000000px;}
.y36_c01051{bottom:598.320000px;}
.y3a_c01051{bottom:599.040000px;}
.y39_c01051{bottom:599.760000px;}
.y38_c01051{bottom:600.480000px;}
.y37_c01051{bottom:601.200000px;}
.y33_c01051{bottom:640.800000px;}
.y2f_c01051{bottom:641.520000px;}
.y35_c01051{bottom:642.240000px;}
.y30_c01051{bottom:642.960000px;}
.y32_c01051{bottom:643.680000px;}
.y34_c01051{bottom:644.400000px;}
.y78_c01051{bottom:645.120000px;}
.y31_c01051{bottom:646.560000px;}
.y2e_c01051{bottom:676.800000px;}
.y2c_c01051{bottom:684.000000px;}
.y2a_c01051{bottom:684.720000px;}
.y76_c01051{bottom:685.440000px;}
.y2d_c01051{bottom:686.160000px;}
.y2b_c01051{bottom:686.880000px;}
.y77_c01051{bottom:687.600000px;}
.y29_c01051{bottom:718.560000px;}
.y26_c01051{bottom:727.200000px;}
.y25_c01051{bottom:727.920000px;}
.y75_c01051{bottom:728.640000px;}
.y27_c01051{bottom:729.360000px;}
.y28_c01051{bottom:730.080000px;}
.y23_c01051{bottom:769.680000px;}
.y24_c01051{bottom:772.560000px;}
.y1f_c01051{bottom:802.080000px;}
.y74_c01051{bottom:802.800000px;}
.y22_c01051{bottom:803.520000px;}
.y20_c01051{bottom:804.240000px;}
.y21_c01051{bottom:804.960000px;}
.y1e_c01051{bottom:845.280000px;}
.y1d_c01051{bottom:846.000000px;}
.y1c_c01051{bottom:847.440000px;}
.y17_c01051{bottom:876.960000px;}
.y16_c01051{bottom:877.680000px;}
.y18_c01051{bottom:878.400000px;}
.y1a_c01051{bottom:879.120000px;}
.y19_c01051{bottom:879.840000px;}
.y1b_c01051{bottom:880.560000px;}
.y11_c01051{bottom:919.440000px;}
.y12_c01051{bottom:920.160000px;}
.y14_c01051{bottom:920.880000px;}
.y15_c01051{bottom:922.320000px;}
.y13_c01051{bottom:923.040000px;}
.yc_c01051{bottom:962.640000px;}
.yd_c01051{bottom:963.360000px;}
.y10_c01051{bottom:964.080000px;}
.ye_c01051{bottom:964.800000px;}
.y72_c01051{bottom:965.520000px;}
.yf_c01051{bottom:966.240000px;}
.y73_c01051{bottom:966.960000px;}
.yb_c01051{bottom:998.640000px;}
.y7_c01051{bottom:1005.840000px;}
.ya_c01051{bottom:1007.280000px;}
.y8_c01051{bottom:1008.000000px;}
.y71_c01051{bottom:1008.720000px;}
.y9_c01051{bottom:1009.440000px;}
.y70_c01051{bottom:1010.160000px;}
.y1_c01051{bottom:1049.040000px;}
.y4_c01051{bottom:1050.480000px;}
.y6_c01051{bottom:1051.200000px;}
.y2_c01051{bottom:1051.920000px;}
.y3_c01051{bottom:1052.640000px;}
.y5_c01051{bottom:1053.360000px;}
.y6f_c01051{bottom:1113.840000px;}
.h12_c01051{height:15.550313px;}
.h11_c01051{height:23.325469px;}
.h9_c01051{height:33.692344px;}
.hd_c01051{height:36.284062px;}
.hf_c01051{height:38.875781px;}
.he_c01051{height:41.467500px;}
.hc_c01051{height:44.059219px;}
.h4_c01051{height:46.650937px;}
.h7_c01051{height:49.242656px;}
.ha_c01051{height:51.834375px;}
.h10_c01051{height:52.122656px;}
.h6_c01051{height:54.426094px;}
.h3_c01051{height:57.017812px;}
.h2_c01051{height:59.609531px;}
.h5_c01051{height:62.201250px;}
.hb_c01051{height:64.792969px;}
.h14_c01051{height:67.384687px;}
.h13_c01051{height:69.976406px;}
.h8_c01051{height:85.526719px;}
.h1_c01051{height:1148.250000px;}
.h0_c01051{height:1148.400000px;}
.w0_c01051{width:810.000000px;}
.x0_c01051{left:0.000000px;}
.x1_c01051{left:101.520000px;}
.xa_c01051{left:145.440000px;}
.x18_c01051{left:154.080000px;}
.x10_c01051{left:174.240000px;}
.x2_c01051{left:176.400000px;}
.x1c_c01051{left:228.960000px;}
.x11_c01051{left:230.400000px;}
.x17_c01051{left:261.360000px;}
.x3_c01051{left:262.800000px;}
.x12_c01051{left:272.160000px;}
.xf_c01051{left:273.600000px;}
.x22_c01051{left:304.560000px;}
.x4_c01051{left:316.080000px;}
.xb_c01051{left:326.880000px;}
.x13_c01051{left:359.280000px;}
.x1a_c01051{left:369.360000px;}
.x5_c01051{left:370.800000px;}
.x20_c01051{left:380.160000px;}
.xc_c01051{left:381.600000px;}
.x14_c01051{left:413.280000px;}
.x19_c01051{left:424.080000px;}
.x1d_c01051{left:434.160000px;}
.x15_c01051{left:455.760000px;}
.x6_c01051{left:467.280000px;}
.xd_c01051{left:477.360000px;}
.x1e_c01051{left:488.880000px;}
.x9_c01051{left:498.960000px;}
.x21_c01051{left:510.480000px;}
.x16_c01051{left:520.560000px;}
.x7_c01051{left:522.000000px;}
.xe_c01051{left:527.040000px;}
.x23_c01051{left:564.480000px;}
.x1b_c01051{left:575.280000px;}
.x8_c01051{left:577.440000px;}
.x1f_c01051{left:585.360000px;}
.x2e_c01051{left:628.560000px;}
.x30_c01051{left:640.080000px;}
.x2b_c01051{left:663.120000px;}
.x25_c01051{left:664.560000px;}
.x24_c01051{left:691.920000px;}
.x2c_c01051{left:696.240000px;}
.x26_c01051{left:697.680000px;}
.x2f_c01051{left:706.320000px;}
.x2a_c01051{left:729.360000px;}
.x2d_c01051{left:738.000000px;}
.x27_c01051{left:739.440000px;}
.x29_c01051{left:740.880000px;}
.x28_c01051{left:760.320000px;}
@media print{
.v0_c01051{vertical-align:0.000000pt;}
.v1_c01051{vertical-align:2.560000pt;}
.ls0_c01051{letter-spacing:0.000000pt;}
.ws0_c01051{word-spacing:-7.633920pt;}
.ws1_c01051{word-spacing:-2.083627pt;}
.ws2_c01051{word-spacing:0.000000pt;}
.fsf_c01051{font-size:15.360000pt;}
.fse_c01051{font-size:23.040000pt;}
.fs7_c01051{font-size:33.280000pt;}
.fsb_c01051{font-size:35.840000pt;}
.fsd_c01051{font-size:38.400000pt;}
.fsc_c01051{font-size:40.960000pt;}
.fsa_c01051{font-size:43.520000pt;}
.fs2_c01051{font-size:46.080000pt;}
.fs5_c01051{font-size:48.640000pt;}
.fs8_c01051{font-size:51.200000pt;}
.fs4_c01051{font-size:53.760000pt;}
.fs1_c01051{font-size:56.320000pt;}
.fs0_c01051{font-size:58.880000pt;}
.fs3_c01051{font-size:61.440000pt;}
.fs9_c01051{font-size:64.000000pt;}
.fs11_c01051{font-size:66.560000pt;}
.fs10_c01051{font-size:69.120000pt;}
.fs6_c01051{font-size:84.480000pt;}
.y0_c01051{bottom:0.000000pt;}
.y6d_c01051{bottom:84.480000pt;}
.y6e_c01051{bottom:85.760000pt;}
.y6c_c01051{bottom:111.360000pt;}
.y6b_c01051{bottom:112.000000pt;}
.y69_c01051{bottom:112.640000pt;}
.y6a_c01051{bottom:113.280000pt;}
.y7e_c01051{bottom:114.560000pt;}
.y68_c01051{bottom:149.760000pt;}
.y67_c01051{bottom:150.400000pt;}
.y66_c01051{bottom:151.040000pt;}
.y7d_c01051{bottom:152.320000pt;}
.y65_c01051{bottom:180.480000pt;}
.y62_c01051{bottom:186.880000pt;}
.y63_c01051{bottom:188.160000pt;}
.y60_c01051{bottom:188.800000pt;}
.y64_c01051{bottom:189.440000pt;}
.y61_c01051{bottom:190.080000pt;}
.y5f_c01051{bottom:225.920000pt;}
.y5d_c01051{bottom:226.560000pt;}
.y5e_c01051{bottom:227.840000pt;}
.y5b_c01051{bottom:254.080000pt;}
.y58_c01051{bottom:254.720000pt;}
.y59_c01051{bottom:255.360000pt;}
.y5c_c01051{bottom:256.640000pt;}
.y5a_c01051{bottom:257.280000pt;}
.y57_c01051{bottom:291.200000pt;}
.y54_c01051{bottom:293.120000pt;}
.y55_c01051{bottom:294.400000pt;}
.y56_c01051{bottom:295.040000pt;}
.y51_c01051{bottom:320.640000pt;}
.y52_c01051{bottom:321.280000pt;}
.y50_c01051{bottom:322.560000pt;}
.y7c_c01051{bottom:323.200000pt;}
.y53_c01051{bottom:323.840000pt;}
.y4d_c01051{bottom:360.320000pt;}
.y4f_c01051{bottom:360.960000pt;}
.y4e_c01051{bottom:361.600000pt;}
.y49_c01051{bottom:388.480000pt;}
.y48_c01051{bottom:389.120000pt;}
.y4a_c01051{bottom:389.760000pt;}
.y4b_c01051{bottom:390.400000pt;}
.y4c_c01051{bottom:391.040000pt;}
.y45_c01051{bottom:426.240000pt;}
.y7b_c01051{bottom:426.880000pt;}
.y46_c01051{bottom:427.520000pt;}
.y44_c01051{bottom:428.800000pt;}
.y47_c01051{bottom:429.440000pt;}
.y40_c01051{bottom:455.040000pt;}
.y3f_c01051{bottom:455.680000pt;}
.y43_c01051{bottom:456.320000pt;}
.y7a_c01051{bottom:456.960000pt;}
.y41_c01051{bottom:457.600000pt;}
.y42_c01051{bottom:458.240000pt;}
.y3e_c01051{bottom:493.440000pt;}
.y3b_c01051{bottom:494.080000pt;}
.y79_c01051{bottom:494.720000pt;}
.y3d_c01051{bottom:495.360000pt;}
.y3c_c01051{bottom:496.000000pt;}
.y36_c01051{bottom:531.840000pt;}
.y3a_c01051{bottom:532.480000pt;}
.y39_c01051{bottom:533.120000pt;}
.y38_c01051{bottom:533.760000pt;}
.y37_c01051{bottom:534.400000pt;}
.y33_c01051{bottom:569.600000pt;}
.y2f_c01051{bottom:570.240000pt;}
.y35_c01051{bottom:570.880000pt;}
.y30_c01051{bottom:571.520000pt;}
.y32_c01051{bottom:572.160000pt;}
.y34_c01051{bottom:572.800000pt;}
.y78_c01051{bottom:573.440000pt;}
.y31_c01051{bottom:574.720000pt;}
.y2e_c01051{bottom:601.600000pt;}
.y2c_c01051{bottom:608.000000pt;}
.y2a_c01051{bottom:608.640000pt;}
.y76_c01051{bottom:609.280000pt;}
.y2d_c01051{bottom:609.920000pt;}
.y2b_c01051{bottom:610.560000pt;}
.y77_c01051{bottom:611.200000pt;}
.y29_c01051{bottom:638.720000pt;}
.y26_c01051{bottom:646.400000pt;}
.y25_c01051{bottom:647.040000pt;}
.y75_c01051{bottom:647.680000pt;}
.y27_c01051{bottom:648.320000pt;}
.y28_c01051{bottom:648.960000pt;}
.y23_c01051{bottom:684.160000pt;}
.y24_c01051{bottom:686.720000pt;}
.y1f_c01051{bottom:712.960000pt;}
.y74_c01051{bottom:713.600000pt;}
.y22_c01051{bottom:714.240000pt;}
.y20_c01051{bottom:714.880000pt;}
.y21_c01051{bottom:715.520000pt;}
.y1e_c01051{bottom:751.360000pt;}
.y1d_c01051{bottom:752.000000pt;}
.y1c_c01051{bottom:753.280000pt;}
.y17_c01051{bottom:779.520000pt;}
.y16_c01051{bottom:780.160000pt;}
.y18_c01051{bottom:780.800000pt;}
.y1a_c01051{bottom:781.440000pt;}
.y19_c01051{bottom:782.080000pt;}
.y1b_c01051{bottom:782.720000pt;}
.y11_c01051{bottom:817.280000pt;}
.y12_c01051{bottom:817.920000pt;}
.y14_c01051{bottom:818.560000pt;}
.y15_c01051{bottom:819.840000pt;}
.y13_c01051{bottom:820.480000pt;}
.yc_c01051{bottom:855.680000pt;}
.yd_c01051{bottom:856.320000pt;}
.y10_c01051{bottom:856.960000pt;}
.ye_c01051{bottom:857.600000pt;}
.y72_c01051{bottom:858.240000pt;}
.yf_c01051{bottom:858.880000pt;}
.y73_c01051{bottom:859.520000pt;}
.yb_c01051{bottom:887.680000pt;}
.y7_c01051{bottom:894.080000pt;}
.ya_c01051{bottom:895.360000pt;}
.y8_c01051{bottom:896.000000pt;}
.y71_c01051{bottom:896.640000pt;}
.y9_c01051{bottom:897.280000pt;}
.y70_c01051{bottom:897.920000pt;}
.y1_c01051{bottom:932.480000pt;}
.y4_c01051{bottom:933.760000pt;}
.y6_c01051{bottom:934.400000pt;}
.y2_c01051{bottom:935.040000pt;}
.y3_c01051{bottom:935.680000pt;}
.y5_c01051{bottom:936.320000pt;}
.y6f_c01051{bottom:990.080000pt;}
.h12_c01051{height:13.822500pt;}
.h11_c01051{height:20.733750pt;}
.h9_c01051{height:29.948750pt;}
.hd_c01051{height:32.252500pt;}
.hf_c01051{height:34.556250pt;}
.he_c01051{height:36.860000pt;}
.hc_c01051{height:39.163750pt;}
.h4_c01051{height:41.467500pt;}
.h7_c01051{height:43.771250pt;}
.ha_c01051{height:46.075000pt;}
.h10_c01051{height:46.331250pt;}
.h6_c01051{height:48.378750pt;}
.h3_c01051{height:50.682500pt;}
.h2_c01051{height:52.986250pt;}
.h5_c01051{height:55.290000pt;}
.hb_c01051{height:57.593750pt;}
.h14_c01051{height:59.897500pt;}
.h13_c01051{height:62.201250pt;}
.h8_c01051{height:76.023750pt;}
.h1_c01051{height:1020.666667pt;}
.h0_c01051{height:1020.800000pt;}
.w0_c01051{width:720.000000pt;}
.x0_c01051{left:0.000000pt;}
.x1_c01051{left:90.240000pt;}
.xa_c01051{left:129.280000pt;}
.x18_c01051{left:136.960000pt;}
.x10_c01051{left:154.880000pt;}
.x2_c01051{left:156.800000pt;}
.x1c_c01051{left:203.520000pt;}
.x11_c01051{left:204.800000pt;}
.x17_c01051{left:232.320000pt;}
.x3_c01051{left:233.600000pt;}
.x12_c01051{left:241.920000pt;}
.xf_c01051{left:243.200000pt;}
.x22_c01051{left:270.720000pt;}
.x4_c01051{left:280.960000pt;}
.xb_c01051{left:290.560000pt;}
.x13_c01051{left:319.360000pt;}
.x1a_c01051{left:328.320000pt;}
.x5_c01051{left:329.600000pt;}
.x20_c01051{left:337.920000pt;}
.xc_c01051{left:339.200000pt;}
.x14_c01051{left:367.360000pt;}
.x19_c01051{left:376.960000pt;}
.x1d_c01051{left:385.920000pt;}
.x15_c01051{left:405.120000pt;}
.x6_c01051{left:415.360000pt;}
.xd_c01051{left:424.320000pt;}
.x1e_c01051{left:434.560000pt;}
.x9_c01051{left:443.520000pt;}
.x21_c01051{left:453.760000pt;}
.x16_c01051{left:462.720000pt;}
.x7_c01051{left:464.000000pt;}
.xe_c01051{left:468.480000pt;}
.x23_c01051{left:501.760000pt;}
.x1b_c01051{left:511.360000pt;}
.x8_c01051{left:513.280000pt;}
.x1f_c01051{left:520.320000pt;}
.x2e_c01051{left:558.720000pt;}
.x30_c01051{left:568.960000pt;}
.x2b_c01051{left:589.440000pt;}
.x25_c01051{left:590.720000pt;}
.x24_c01051{left:615.040000pt;}
.x2c_c01051{left:618.880000pt;}
.x26_c01051{left:620.160000pt;}
.x2f_c01051{left:627.840000pt;}
.x2a_c01051{left:648.320000pt;}
.x2d_c01051{left:656.000000pt;}
.x27_c01051{left:657.280000pt;}
.x29_c01051{left:658.560000pt;}
.x28_c01051{left:675.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7571f871857fb375b01a4bb5.woff2')format("woff");}.ff1_c01052{font-family:ff1_c01052;line-height:1.109863;font-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_c01052{transform:matrix(0.187175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187175,0.000000,0.000000,0.250000,0,0);}
.m38_c01052{transform:matrix(0.223825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223825,0.000000,0.000000,0.250000,0,0);}
.m2d_c01052{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m29_c01052{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);}
.m36_c01052{transform:matrix(0.228300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228300,0.000000,0.000000,0.250000,0,0);}
.m4f_c01052{transform:matrix(0.236775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236775,0.000000,0.000000,0.250000,0,0);}
.m35_c01052{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);}
.m4d_c01052{transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);}
.m2c_c01052{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);}
.m41_c01052{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_c01052{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);}
.m2b_c01052{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);}
.m42_c01052{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);}
.m49_c01052{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.md_c01052{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m10_c01052{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m13_c01052{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1_c01052{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);}
.m2a_c01052{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);}
.m2e_c01052{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m20_c01052{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m48_c01052{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m28_c01052{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m9_c01052{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01052{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01052{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m31_c01052{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m14_c01052{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m0_c01052{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01052{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01052{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01052{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);}
.m22_c01052{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.ma_c01052{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m26_c01052{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m15_c01052{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01052{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.mf_c01052{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.mc_c01052{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);}
.m34_c01052{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);}
.m3f_c01052{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01052{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m46_c01052{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);}
.m37_c01052{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);}
.m25_c01052{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01052{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m16_c01052{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);}
.m40_c01052{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);}
.m33_c01052{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);}
.m4_c01052{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m12_c01052{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01052{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);}
.me_c01052{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m39_c01052{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);}
.m4a_c01052{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m17_c01052{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m3_c01052{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m19_c01052{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m8_c01052{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m18_c01052{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m21_c01052{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01052{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m30_c01052{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m5_c01052{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m4e_c01052{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m11_c01052{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m2_c01052{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.mb_c01052{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);}
.m7_c01052{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m23_c01052{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m44_c01052{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);}
.m45_c01052{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01052{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m32_c01052{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);}
.m1d_c01052{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m47_c01052{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m43_c01052{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01052{transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01052{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01052{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);}
.v2_c01052{vertical-align:-5.760000px;}
.v0_c01052{vertical-align:0.000000px;}
.v1_c01052{vertical-align:2.880000px;}
.ls0_c01052{letter-spacing:0.000000px;}
.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;}
}
.ws1_c01052{word-spacing:-5.592000px;}
.ws2_c01052{word-spacing:-4.296960px;}
.ws3_c01052{word-spacing:0.000000px;}
.ws0_c01052{word-spacing:0.066960px;}
.fc0_c01052{color:transparent;}
.fse_c01052{font-size:6.000000px;}
.fs11_c01052{font-size:23.040000px;}
.fsf_c01052{font-size:34.560000px;}
.fs10_c01052{font-size:37.440000px;}
.fs6_c01052{font-size:40.320000px;}
.fsc_c01052{font-size:43.200000px;}
.fs8_c01052{font-size:48.960000px;}
.fs2_c01052{font-size:51.840000px;}
.fs4_c01052{font-size:54.720000px;}
.fs9_c01052{font-size:57.600000px;}
.fs3_c01052{font-size:60.480000px;}
.fs7_c01052{font-size:63.360000px;}
.fs1_c01052{font-size:66.240000px;}
.fs0_c01052{font-size:69.120000px;}
.fs5_c01052{font-size:72.000000px;}
.fsa_c01052{font-size:92.160000px;}
.fsd_c01052{font-size:95.040000px;}
.fsb_c01052{font-size:97.920000px;}
.y0_c01052{bottom:0.000000px;}
.y71_c01052{bottom:80.640000px;}
.y72_c01052{bottom:82.800000px;}
.y70_c01052{bottom:84.240000px;}
.y77_c01052{bottom:113.040000px;}
.y6f_c01052{bottom:113.760000px;}
.y6d_c01052{bottom:114.480000px;}
.y6e_c01052{bottom:115.920000px;}
.y6b_c01052{bottom:156.240000px;}
.y69_c01052{bottom:156.960000px;}
.y6c_c01052{bottom:158.400000px;}
.y6a_c01052{bottom:159.120000px;}
.y67_c01052{bottom:188.640000px;}
.y68_c01052{bottom:189.360000px;}
.y64_c01052{bottom:190.080000px;}
.y66_c01052{bottom:191.520000px;}
.y65_c01052{bottom:192.240000px;}
.y62_c01052{bottom:231.120000px;}
.y60_c01052{bottom:231.840000px;}
.y63_c01052{bottom:233.280000px;}
.y61_c01052{bottom:234.000000px;}
.y5e_c01052{bottom:263.520000px;}
.y5c_c01052{bottom:264.960000px;}
.y5f_c01052{bottom:265.680000px;}
.y5d_c01052{bottom:266.400000px;}
.y5a_c01052{bottom:306.000000px;}
.y59_c01052{bottom:307.440000px;}
.y58_c01052{bottom:308.160000px;}
.y5b_c01052{bottom:308.880000px;}
.y53_c01052{bottom:339.120000px;}
.y54_c01052{bottom:339.840000px;}
.y57_c01052{bottom:340.560000px;}
.y56_c01052{bottom:341.280000px;}
.y55_c01052{bottom:342.000000px;}
.y76_c01052{bottom:342.720000px;}
.y51_c01052{bottom:382.320000px;}
.y52_c01052{bottom:384.480000px;}
.y4f_c01052{bottom:413.280000px;}
.y4d_c01052{bottom:414.000000px;}
.y50_c01052{bottom:414.720000px;}
.y74_c01052{bottom:415.440000px;}
.y4e_c01052{bottom:416.160000px;}
.y73_c01052{bottom:416.880000px;}
.y75_c01052{bottom:417.600000px;}
.y4b_c01052{bottom:457.200000px;}
.y4c_c01052{bottom:459.360000px;}
.y48_c01052{bottom:488.880000px;}
.y4a_c01052{bottom:489.600000px;}
.y46_c01052{bottom:490.320000px;}
.y47_c01052{bottom:491.040000px;}
.y49_c01052{bottom:491.760000px;}
.y44_c01052{bottom:534.240000px;}
.y45_c01052{bottom:534.960000px;}
.y42_c01052{bottom:563.760000px;}
.y3f_c01052{bottom:564.480000px;}
.y40_c01052{bottom:565.200000px;}
.y41_c01052{bottom:565.920000px;}
.y43_c01052{bottom:567.360000px;}
.y3c_c01052{bottom:599.040000px;}
.y3a_c01052{bottom:606.960000px;}
.y3d_c01052{bottom:608.400000px;}
.y3b_c01052{bottom:609.120000px;}
.y3e_c01052{bottom:609.840000px;}
.y37_c01052{bottom:641.520000px;}
.y34_c01052{bottom:649.440000px;}
.y35_c01052{bottom:650.160000px;}
.y39_c01052{bottom:650.880000px;}
.y36_c01052{bottom:652.320000px;}
.y38_c01052{bottom:653.040000px;}
.y33_c01052{bottom:681.840000px;}
.y2f_c01052{bottom:692.640000px;}
.y2e_c01052{bottom:693.360000px;}
.y32_c01052{bottom:694.080000px;}
.y30_c01052{bottom:694.800000px;}
.y31_c01052{bottom:695.520000px;}
.y22_c01052{bottom:727.920000px;}
.y20_c01052{bottom:735.840000px;}
.y1e_c01052{bottom:736.560000px;}
.y23_c01052{bottom:737.280000px;}
.y21_c01052{bottom:738.000000px;}
.y1f_c01052{bottom:738.720000px;}
.y2d_c01052{bottom:740.160000px;}
.y1c_c01052{bottom:779.040000px;}
.y1d_c01052{bottom:781.200000px;}
.y18_c01052{bottom:810.720000px;}
.y1a_c01052{bottom:812.160000px;}
.y2b_c01052{bottom:812.880000px;}
.y19_c01052{bottom:813.600000px;}
.y1b_c01052{bottom:814.320000px;}
.y2c_c01052{bottom:815.040000px;}
.y17_c01052{bottom:856.080000px;}
.y12_c01052{bottom:885.600000px;}
.y13_c01052{bottom:886.320000px;}
.y14_c01052{bottom:887.040000px;}
.y15_c01052{bottom:887.760000px;}
.y2a_c01052{bottom:888.480000px;}
.y16_c01052{bottom:889.200000px;}
.y29_c01052{bottom:890.640000px;}
.y11_c01052{bottom:922.320000px;}
.ye_c01052{bottom:928.800000px;}
.y10_c01052{bottom:930.240000px;}
.y28_c01052{bottom:931.680000px;}
.yf_c01052{bottom:932.400000px;}
.y27_c01052{bottom:934.560000px;}
.yc_c01052{bottom:965.520000px;}
.ya_c01052{bottom:972.720000px;}
.yd_c01052{bottom:974.160000px;}
.yb_c01052{bottom:974.880000px;}
.y26_c01052{bottom:976.320000px;}
.y7_c01052{bottom:1015.200000px;}
.y6_c01052{bottom:1016.640000px;}
.y8_c01052{bottom:1018.080000px;}
.y9_c01052{bottom:1018.800000px;}
.y1_c01052{bottom:1046.880000px;}
.y3_c01052{bottom:1047.600000px;}
.y4_c01052{bottom:1049.040000px;}
.y2_c01052{bottom:1050.480000px;}
.y5_c01052{bottom:1051.200000px;}
.y25_c01052{bottom:1051.920000px;}
.y24_c01052{bottom:1110.960000px;}
.h10_c01052{height:5.399414px;}
.h13_c01052{height:20.733750px;}
.h11_c01052{height:31.100625px;}
.h12_c01052{height:33.692344px;}
.h8_c01052{height:36.284062px;}
.he_c01052{height:38.875781px;}
.ha_c01052{height:44.059219px;}
.h4_c01052{height:46.650937px;}
.h6_c01052{height:49.242656px;}
.hb_c01052{height:51.834375px;}
.h5_c01052{height:54.426094px;}
.h9_c01052{height:57.017812px;}
.h3_c01052{height:59.609531px;}
.h2_c01052{height:62.201250px;}
.h7_c01052{height:64.792969px;}
.hc_c01052{height:82.935000px;}
.hf_c01052{height:85.526719px;}
.hd_c01052{height:88.118437px;}
.h0_c01052{height:1157.040000px;}
.h1_c01052{height:1157.250000px;}
.w1_c01052{width:820.500000px;}
.w0_c01052{width:820.800000px;}
.x0_c01052{left:0.000000px;}
.x1_c01052{left:105.120000px;}
.x18_c01052{left:149.040000px;}
.x1e_c01052{left:170.640000px;}
.x2_c01052{left:179.280000px;}
.xf_c01052{left:180.720000px;}
.x8_c01052{left:233.280000px;}
.x3_c01052{left:265.680000px;}
.x20_c01052{left:267.120000px;}
.x1b_c01052{left:277.200000px;}
.x9_c01052{left:288.000000px;}
.x4_c01052{left:319.680000px;}
.xa_c01052{left:329.040000px;}
.xc_c01052{left:330.480000px;}
.x5_c01052{left:374.400000px;}
.xd_c01052{left:385.200000px;}
.xb_c01052{left:428.400000px;}
.x1c_c01052{left:470.880000px;}
.x1f_c01052{left:483.840000px;}
.x6_c01052{left:504.000000px;}
.xe_c01052{left:514.080000px;}
.x19_c01052{left:524.880000px;}
.x16_c01052{left:552.240000px;}
.x1d_c01052{left:579.600000px;}
.x7_c01052{left:581.040000px;}
.x17_c01052{left:633.600000px;}
.x11_c01052{left:667.440000px;}
.x1a_c01052{left:678.240000px;}
.x13_c01052{left:699.840000px;}
.x10_c01052{left:701.280000px;}
.x14_c01052{left:710.640000px;}
.x21_c01052{left:732.240000px;}
.x15_c01052{left:742.320000px;}
.x12_c01052{left:743.760000px;}
@media print{
.v2_c01052{vertical-align:-5.120000pt;}
.v0_c01052{vertical-align:0.000000pt;}
.v1_c01052{vertical-align:2.560000pt;}
.ls0_c01052{letter-spacing:0.000000pt;}
.ws1_c01052{word-spacing:-4.970667pt;}
.ws2_c01052{word-spacing:-3.819520pt;}
.ws3_c01052{word-spacing:0.000000pt;}
.ws0_c01052{word-spacing:0.059520pt;}
.fse_c01052{font-size:5.333333pt;}
.fs11_c01052{font-size:20.480000pt;}
.fsf_c01052{font-size:30.720000pt;}
.fs10_c01052{font-size:33.280000pt;}
.fs6_c01052{font-size:35.840000pt;}
.fsc_c01052{font-size:38.400000pt;}
.fs8_c01052{font-size:43.520000pt;}
.fs2_c01052{font-size:46.080000pt;}
.fs4_c01052{font-size:48.640000pt;}
.fs9_c01052{font-size:51.200000pt;}
.fs3_c01052{font-size:53.760000pt;}
.fs7_c01052{font-size:56.320000pt;}
.fs1_c01052{font-size:58.880000pt;}
.fs0_c01052{font-size:61.440000pt;}
.fs5_c01052{font-size:64.000000pt;}
.fsa_c01052{font-size:81.920000pt;}
.fsd_c01052{font-size:84.480000pt;}
.fsb_c01052{font-size:87.040000pt;}
.y0_c01052{bottom:0.000000pt;}
.y71_c01052{bottom:71.680000pt;}
.y72_c01052{bottom:73.600000pt;}
.y70_c01052{bottom:74.880000pt;}
.y77_c01052{bottom:100.480000pt;}
.y6f_c01052{bottom:101.120000pt;}
.y6d_c01052{bottom:101.760000pt;}
.y6e_c01052{bottom:103.040000pt;}
.y6b_c01052{bottom:138.880000pt;}
.y69_c01052{bottom:139.520000pt;}
.y6c_c01052{bottom:140.800000pt;}
.y6a_c01052{bottom:141.440000pt;}
.y67_c01052{bottom:167.680000pt;}
.y68_c01052{bottom:168.320000pt;}
.y64_c01052{bottom:168.960000pt;}
.y66_c01052{bottom:170.240000pt;}
.y65_c01052{bottom:170.880000pt;}
.y62_c01052{bottom:205.440000pt;}
.y60_c01052{bottom:206.080000pt;}
.y63_c01052{bottom:207.360000pt;}
.y61_c01052{bottom:208.000000pt;}
.y5e_c01052{bottom:234.240000pt;}
.y5c_c01052{bottom:235.520000pt;}
.y5f_c01052{bottom:236.160000pt;}
.y5d_c01052{bottom:236.800000pt;}
.y5a_c01052{bottom:272.000000pt;}
.y59_c01052{bottom:273.280000pt;}
.y58_c01052{bottom:273.920000pt;}
.y5b_c01052{bottom:274.560000pt;}
.y53_c01052{bottom:301.440000pt;}
.y54_c01052{bottom:302.080000pt;}
.y57_c01052{bottom:302.720000pt;}
.y56_c01052{bottom:303.360000pt;}
.y55_c01052{bottom:304.000000pt;}
.y76_c01052{bottom:304.640000pt;}
.y51_c01052{bottom:339.840000pt;}
.y52_c01052{bottom:341.760000pt;}
.y4f_c01052{bottom:367.360000pt;}
.y4d_c01052{bottom:368.000000pt;}
.y50_c01052{bottom:368.640000pt;}
.y74_c01052{bottom:369.280000pt;}
.y4e_c01052{bottom:369.920000pt;}
.y73_c01052{bottom:370.560000pt;}
.y75_c01052{bottom:371.200000pt;}
.y4b_c01052{bottom:406.400000pt;}
.y4c_c01052{bottom:408.320000pt;}
.y48_c01052{bottom:434.560000pt;}
.y4a_c01052{bottom:435.200000pt;}
.y46_c01052{bottom:435.840000pt;}
.y47_c01052{bottom:436.480000pt;}
.y49_c01052{bottom:437.120000pt;}
.y44_c01052{bottom:474.880000pt;}
.y45_c01052{bottom:475.520000pt;}
.y42_c01052{bottom:501.120000pt;}
.y3f_c01052{bottom:501.760000pt;}
.y40_c01052{bottom:502.400000pt;}
.y41_c01052{bottom:503.040000pt;}
.y43_c01052{bottom:504.320000pt;}
.y3c_c01052{bottom:532.480000pt;}
.y3a_c01052{bottom:539.520000pt;}
.y3d_c01052{bottom:540.800000pt;}
.y3b_c01052{bottom:541.440000pt;}
.y3e_c01052{bottom:542.080000pt;}
.y37_c01052{bottom:570.240000pt;}
.y34_c01052{bottom:577.280000pt;}
.y35_c01052{bottom:577.920000pt;}
.y39_c01052{bottom:578.560000pt;}
.y36_c01052{bottom:579.840000pt;}
.y38_c01052{bottom:580.480000pt;}
.y33_c01052{bottom:606.080000pt;}
.y2f_c01052{bottom:615.680000pt;}
.y2e_c01052{bottom:616.320000pt;}
.y32_c01052{bottom:616.960000pt;}
.y30_c01052{bottom:617.600000pt;}
.y31_c01052{bottom:618.240000pt;}
.y22_c01052{bottom:647.040000pt;}
.y20_c01052{bottom:654.080000pt;}
.y1e_c01052{bottom:654.720000pt;}
.y23_c01052{bottom:655.360000pt;}
.y21_c01052{bottom:656.000000pt;}
.y1f_c01052{bottom:656.640000pt;}
.y2d_c01052{bottom:657.920000pt;}
.y1c_c01052{bottom:692.480000pt;}
.y1d_c01052{bottom:694.400000pt;}
.y18_c01052{bottom:720.640000pt;}
.y1a_c01052{bottom:721.920000pt;}
.y2b_c01052{bottom:722.560000pt;}
.y19_c01052{bottom:723.200000pt;}
.y1b_c01052{bottom:723.840000pt;}
.y2c_c01052{bottom:724.480000pt;}
.y17_c01052{bottom:760.960000pt;}
.y12_c01052{bottom:787.200000pt;}
.y13_c01052{bottom:787.840000pt;}
.y14_c01052{bottom:788.480000pt;}
.y15_c01052{bottom:789.120000pt;}
.y2a_c01052{bottom:789.760000pt;}
.y16_c01052{bottom:790.400000pt;}
.y29_c01052{bottom:791.680000pt;}
.y11_c01052{bottom:819.840000pt;}
.ye_c01052{bottom:825.600000pt;}
.y10_c01052{bottom:826.880000pt;}
.y28_c01052{bottom:828.160000pt;}
.yf_c01052{bottom:828.800000pt;}
.y27_c01052{bottom:830.720000pt;}
.yc_c01052{bottom:858.240000pt;}
.ya_c01052{bottom:864.640000pt;}
.yd_c01052{bottom:865.920000pt;}
.yb_c01052{bottom:866.560000pt;}
.y26_c01052{bottom:867.840000pt;}
.y7_c01052{bottom:902.400000pt;}
.y6_c01052{bottom:903.680000pt;}
.y8_c01052{bottom:904.960000pt;}
.y9_c01052{bottom:905.600000pt;}
.y1_c01052{bottom:930.560000pt;}
.y3_c01052{bottom:931.200000pt;}
.y4_c01052{bottom:932.480000pt;}
.y2_c01052{bottom:933.760000pt;}
.y5_c01052{bottom:934.400000pt;}
.y25_c01052{bottom:935.040000pt;}
.y24_c01052{bottom:987.520000pt;}
.h10_c01052{height:4.799479pt;}
.h13_c01052{height:18.430000pt;}
.h11_c01052{height:27.645000pt;}
.h12_c01052{height:29.948750pt;}
.h8_c01052{height:32.252500pt;}
.he_c01052{height:34.556250pt;}
.ha_c01052{height:39.163750pt;}
.h4_c01052{height:41.467500pt;}
.h6_c01052{height:43.771250pt;}
.hb_c01052{height:46.075000pt;}
.h5_c01052{height:48.378750pt;}
.h9_c01052{height:50.682500pt;}
.h3_c01052{height:52.986250pt;}
.h2_c01052{height:55.290000pt;}
.h7_c01052{height:57.593750pt;}
.hc_c01052{height:73.720000pt;}
.hf_c01052{height:76.023750pt;}
.hd_c01052{height:78.327500pt;}
.h0_c01052{height:1028.480000pt;}
.h1_c01052{height:1028.666667pt;}
.w1_c01052{width:729.333333pt;}
.w0_c01052{width:729.600000pt;}
.x0_c01052{left:0.000000pt;}
.x1_c01052{left:93.440000pt;}
.x18_c01052{left:132.480000pt;}
.x1e_c01052{left:151.680000pt;}
.x2_c01052{left:159.360000pt;}
.xf_c01052{left:160.640000pt;}
.x8_c01052{left:207.360000pt;}
.x3_c01052{left:236.160000pt;}
.x20_c01052{left:237.440000pt;}
.x1b_c01052{left:246.400000pt;}
.x9_c01052{left:256.000000pt;}
.x4_c01052{left:284.160000pt;}
.xa_c01052{left:292.480000pt;}
.xc_c01052{left:293.760000pt;}
.x5_c01052{left:332.800000pt;}
.xd_c01052{left:342.400000pt;}
.xb_c01052{left:380.800000pt;}
.x1c_c01052{left:418.560000pt;}
.x1f_c01052{left:430.080000pt;}
.x6_c01052{left:448.000000pt;}
.xe_c01052{left:456.960000pt;}
.x19_c01052{left:466.560000pt;}
.x16_c01052{left:490.880000pt;}
.x1d_c01052{left:515.200000pt;}
.x7_c01052{left:516.480000pt;}
.x17_c01052{left:563.200000pt;}
.x11_c01052{left:593.280000pt;}
.x1a_c01052{left:602.880000pt;}
.x13_c01052{left:622.080000pt;}
.x10_c01052{left:623.360000pt;}
.x14_c01052{left:631.680000pt;}
.x21_c01052{left:650.880000pt;}
.x15_c01052{left:659.840000pt;}
.x12_c01052{left:661.120000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_549af1dc199691ac6d04bdda.woff2')format("woff");}.ff1_c01053{font-family:ff1_c01053;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m54_c01053{transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);}
.m20_c01053{transform:matrix(0.218700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218700,0.000000,0.000000,0.250000,0,0);}
.m25_c01053{transform:matrix(0.222275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222275,0.000000,0.000000,0.250000,0,0);}
.m3a_c01053{transform:matrix(0.224125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224125,0.000000,0.000000,0.250000,0,0);}
.m51_c01053{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m4b_c01053{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);}
.m2e_c01053{transform:matrix(0.226900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226900,0.000000,0.000000,0.250000,0,0);}
.m48_c01053{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m42_c01053{transform:matrix(0.228725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228725,0.000000,0.000000,0.250000,0,0);}
.m4f_c01053{transform:matrix(0.230150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230150,0.000000,0.000000,0.250000,0,0);}
.m34_c01053{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);}
.m29_c01053{transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);}
.m44_c01053{transform:matrix(0.238675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238675,0.000000,0.000000,0.250000,0,0);}
.m56_c01053{transform:matrix(0.240125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240125,0.000000,0.000000,0.250000,0,0);}
.m33_c01053{transform:matrix(0.242050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242050,0.000000,0.000000,0.250000,0,0);}
.m37_c01053{transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);}
.m2c_c01053{transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);}
.m2f_c01053{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m16_c01053{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);}
.m3c_c01053{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);}
.m40_c01053{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01053{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);}
.m35_c01053{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);}
.m31_c01053{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);}
.m3f_c01053{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m4_c01053{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.mf_c01053{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);}
.m27_c01053{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m4a_c01053{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);}
.m2d_c01053{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);}
.m38_c01053{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_c01053{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m7_c01053{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01053{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m45_c01053{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01053{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m18_c01053{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01053{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m10_c01053{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01053{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m47_c01053{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m15_c01053{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m28_c01053{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m46_c01053{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01053{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m0_c01053{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01053{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mb_c01053{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1_c01053{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);}
.m3b_c01053{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m41_c01053{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.md_c01053{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01053{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01053{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);}
.m50_c01053{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01053{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m13_c01053{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m3_c01053{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m2_c01053{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);}
.m8_c01053{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);}
.m1c_c01053{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m53_c01053{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m6_c01053{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);}
.mc_c01053{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m57_c01053{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_c01053{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m39_c01053{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m36_c01053{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m58_c01053{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m43_c01053{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m19_c01053{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01053{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.ma_c01053{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);}
.m14_c01053{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m9_c01053{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m17_c01053{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m12_c01053{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_c01053{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m11_c01053{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.me_c01053{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);}
.m21_c01053{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m26_c01053{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m5_c01053{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01053{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m55_c01053{transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);}
.m52_c01053{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01053{transform:matrix(0.712500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.712500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.712500,0.000000,0.000000,0.250000,0,0);}
.m32_c01053{transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);}
.m49_c01053{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.v1_c01053{vertical-align:-2.880000px;}
.v0_c01053{vertical-align:0.000000px;}
.ls0_c01053{letter-spacing:0.000000px;}
.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;}
}
.ws1_c01053{word-spacing:0.000000px;}
.ws0_c01053{word-spacing:4.350480px;}
.fc0_c01053{color:transparent;}
.fsf_c01053{font-size:31.680000px;}
.fs9_c01053{font-size:37.440000px;}
.fs8_c01053{font-size:40.320000px;}
.fs10_c01053{font-size:43.200000px;}
.fsa_c01053{font-size:46.080000px;}
.fs2_c01053{font-size:48.960000px;}
.fs4_c01053{font-size:51.840000px;}
.fs7_c01053{font-size:54.720000px;}
.fs5_c01053{font-size:57.600000px;}
.fs1_c01053{font-size:60.480000px;}
.fs6_c01053{font-size:63.360000px;}
.fs0_c01053{font-size:66.240000px;}
.fsb_c01053{font-size:69.120000px;}
.fsc_c01053{font-size:72.000000px;}
.fs3_c01053{font-size:74.880000px;}
.fsd_c01053{font-size:77.760000px;}
.fse_c01053{font-size:80.640000px;}
.y0_c01053{bottom:0.000000px;}
.y81_c01053{bottom:61.200000px;}
.y5a_c01053{bottom:61.920000px;}
.y58_c01053{bottom:62.640000px;}
.y57_c01053{bottom:64.800000px;}
.y59_c01053{bottom:65.520000px;}
.y56_c01053{bottom:104.400000px;}
.y80_c01053{bottom:105.120000px;}
.y53_c01053{bottom:105.840000px;}
.y55_c01053{bottom:108.000000px;}
.y52_c01053{bottom:108.720000px;}
.y54_c01053{bottom:109.440000px;}
.y50_c01053{bottom:148.320000px;}
.y7e_c01053{bottom:149.040000px;}
.y7f_c01053{bottom:149.760000px;}
.y4f_c01053{bottom:150.480000px;}
.y51_c01053{bottom:151.200000px;}
.y4c_c01053{bottom:190.080000px;}
.y4e_c01053{bottom:190.800000px;}
.y4d_c01053{bottom:191.520000px;}
.y7c_c01053{bottom:192.240000px;}
.y4b_c01053{bottom:193.680000px;}
.y7d_c01053{bottom:195.120000px;}
.y4a_c01053{bottom:232.560000px;}
.y47_c01053{bottom:233.280000px;}
.y48_c01053{bottom:234.720000px;}
.y46_c01053{bottom:235.440000px;}
.y49_c01053{bottom:236.160000px;}
.y7b_c01053{bottom:236.880000px;}
.y45_c01053{bottom:275.760000px;}
.y44_c01053{bottom:276.480000px;}
.y79_c01053{bottom:277.920000px;}
.y42_c01053{bottom:278.640000px;}
.y43_c01053{bottom:279.360000px;}
.y7a_c01053{bottom:280.800000px;}
.y41_c01053{bottom:318.960000px;}
.y76_c01053{bottom:319.680000px;}
.y75_c01053{bottom:320.400000px;}
.y40_c01053{bottom:321.120000px;}
.y77_c01053{bottom:321.840000px;}
.y78_c01053{bottom:323.280000px;}
.y3f_c01053{bottom:360.720000px;}
.y3e_c01053{bottom:362.160000px;}
.y74_c01053{bottom:362.880000px;}
.y72_c01053{bottom:363.600000px;}
.y3c_c01053{bottom:364.320000px;}
.y3d_c01053{bottom:365.040000px;}
.y73_c01053{bottom:365.760000px;}
.y3b_c01053{bottom:403.920000px;}
.y3a_c01053{bottom:405.360000px;}
.y70_c01053{bottom:406.080000px;}
.y6f_c01053{bottom:406.800000px;}
.y39_c01053{bottom:407.520000px;}
.y71_c01053{bottom:408.960000px;}
.y38_c01053{bottom:448.560000px;}
.y6d_c01053{bottom:449.280000px;}
.y37_c01053{bottom:450.000000px;}
.y6e_c01053{bottom:451.440000px;}
.y36_c01053{bottom:491.040000px;}
.y6b_c01053{bottom:492.480000px;}
.y35_c01053{bottom:493.200000px;}
.y6c_c01053{bottom:494.640000px;}
.y32_c01053{bottom:534.240000px;}
.y31_c01053{bottom:535.680000px;}
.y69_c01053{bottom:536.400000px;}
.y33_c01053{bottom:537.120000px;}
.y34_c01053{bottom:537.840000px;}
.y6a_c01053{bottom:539.280000px;}
.y30_c01053{bottom:577.440000px;}
.y66_c01053{bottom:578.880000px;}
.y2f_c01053{bottom:579.600000px;}
.y68_c01053{bottom:581.040000px;}
.y67_c01053{bottom:581.760000px;}
.y2c_c01053{bottom:619.920000px;}
.y2e_c01053{bottom:620.640000px;}
.y2d_c01053{bottom:621.360000px;}
.y2b_c01053{bottom:622.080000px;}
.y63_c01053{bottom:623.520000px;}
.y64_c01053{bottom:624.240000px;}
.y65_c01053{bottom:624.960000px;}
.y28_c01053{bottom:662.400000px;}
.y2a_c01053{bottom:663.120000px;}
.y27_c01053{bottom:664.560000px;}
.y62_c01053{bottom:665.280000px;}
.y61_c01053{bottom:666.000000px;}
.y29_c01053{bottom:667.440000px;}
.y24_c01053{bottom:705.600000px;}
.y26_c01053{bottom:706.320000px;}
.y23_c01053{bottom:707.040000px;}
.y60_c01053{bottom:707.760000px;}
.y5f_c01053{bottom:708.480000px;}
.y25_c01053{bottom:709.200000px;}
.y21_c01053{bottom:750.240000px;}
.y20_c01053{bottom:751.680000px;}
.y22_c01053{bottom:752.400000px;}
.y1d_c01053{bottom:781.200000px;}
.y1f_c01053{bottom:781.920000px;}
.y1c_c01053{bottom:784.080000px;}
.y1e_c01053{bottom:784.800000px;}
.y19_c01053{bottom:813.600000px;}
.y18_c01053{bottom:814.320000px;}
.y1b_c01053{bottom:815.040000px;}
.y1a_c01053{bottom:815.760000px;}
.y5e_c01053{bottom:817.200000px;}
.y16_c01053{bottom:856.080000px;}
.y15_c01053{bottom:858.960000px;}
.y17_c01053{bottom:859.680000px;}
.y13_c01053{bottom:888.480000px;}
.y11_c01053{bottom:889.200000px;}
.y12_c01053{bottom:889.920000px;}
.y5d_c01053{bottom:890.640000px;}
.y14_c01053{bottom:891.360000px;}
.yf_c01053{bottom:931.680000px;}
.y10_c01053{bottom:935.280000px;}
.ya_c01053{bottom:964.080000px;}
.yb_c01053{bottom:964.800000px;}
.ye_c01053{bottom:965.520000px;}
.yc_c01053{bottom:966.240000px;}
.y5c_c01053{bottom:966.960000px;}
.yd_c01053{bottom:967.680000px;}
.y7_c01053{bottom:1007.280000px;}
.y6_c01053{bottom:1008.000000px;}
.y9_c01053{bottom:1010.160000px;}
.y8_c01053{bottom:1010.880000px;}
.y1_c01053{bottom:1039.680000px;}
.y2_c01053{bottom:1041.120000px;}
.y5_c01053{bottom:1041.840000px;}
.y3_c01053{bottom:1043.280000px;}
.y4_c01053{bottom:1044.000000px;}
.y5b_c01053{bottom:1114.560000px;}
.h11_c01053{height:28.508906px;}
.hb_c01053{height:33.692344px;}
.ha_c01053{height:36.284062px;}
.h13_c01053{height:38.875781px;}
.hc_c01053{height:41.467500px;}
.h4_c01053{height:44.059219px;}
.h6_c01053{height:46.650937px;}
.h12_c01053{height:48.954375px;}
.h9_c01053{height:49.242656px;}
.h7_c01053{height:51.834375px;}
.h3_c01053{height:54.426094px;}
.h8_c01053{height:57.017812px;}
.h2_c01053{height:59.609531px;}
.hd_c01053{height:62.201250px;}
.he_c01053{height:64.792969px;}
.h5_c01053{height:67.384687px;}
.hf_c01053{height:69.976406px;}
.h10_c01053{height:72.568125px;}
.h0_c01053{height:1153.440000px;}
.h1_c01053{height:1153.500000px;}
.w0_c01053{width:816.480000px;}
.w1_c01053{width:816.750000px;}
.x0_c01053{left:0.000000px;}
.x1_c01053{left:97.200000px;}
.x16_c01053{left:141.120000px;}
.x15_c01053{left:171.360000px;}
.x2_c01053{left:172.800000px;}
.x10_c01053{left:225.360000px;}
.x12_c01053{left:226.800000px;}
.x3_c01053{left:259.200000px;}
.x14_c01053{left:269.280000px;}
.x4_c01053{left:312.480000px;}
.xc_c01053{left:322.560000px;}
.x9_c01053{left:324.000000px;}
.x13_c01053{left:356.400000px;}
.x5_c01053{left:367.200000px;}
.x17_c01053{left:375.840000px;}
.xd_c01053{left:378.000000px;}
.xa_c01053{left:388.800000px;}
.xf_c01053{left:409.680000px;}
.x18_c01053{left:419.760000px;}
.xb_c01053{left:442.800000px;}
.x1a_c01053{left:452.880000px;}
.x6_c01053{left:463.680000px;}
.x19_c01053{left:475.200000px;}
.x11_c01053{left:496.080000px;}
.xe_c01053{left:507.600000px;}
.x7_c01053{left:518.400000px;}
.x8_c01053{left:572.400000px;}
.x22_c01053{left:604.800000px;}
.x25_c01053{left:626.400000px;}
.x27_c01053{left:635.760000px;}
.x28_c01053{left:650.160000px;}
.x20_c01053{left:659.520000px;}
.x1c_c01053{left:660.960000px;}
.x26_c01053{left:682.560000px;}
.x1b_c01053{left:684.720000px;}
.x1d_c01053{left:693.360000px;}
.x23_c01053{left:702.000000px;}
.x1f_c01053{left:725.760000px;}
.x21_c01053{left:734.400000px;}
.x1e_c01053{left:736.560000px;}
.x24_c01053{left:756.000000px;}
@media print{
.v1_c01053{vertical-align:-2.560000pt;}
.v0_c01053{vertical-align:0.000000pt;}
.ls0_c01053{letter-spacing:0.000000pt;}
.ws1_c01053{word-spacing:0.000000pt;}
.ws0_c01053{word-spacing:3.867093pt;}
.fsf_c01053{font-size:28.160000pt;}
.fs9_c01053{font-size:33.280000pt;}
.fs8_c01053{font-size:35.840000pt;}
.fs10_c01053{font-size:38.400000pt;}
.fsa_c01053{font-size:40.960000pt;}
.fs2_c01053{font-size:43.520000pt;}
.fs4_c01053{font-size:46.080000pt;}
.fs7_c01053{font-size:48.640000pt;}
.fs5_c01053{font-size:51.200000pt;}
.fs1_c01053{font-size:53.760000pt;}
.fs6_c01053{font-size:56.320000pt;}
.fs0_c01053{font-size:58.880000pt;}
.fsb_c01053{font-size:61.440000pt;}
.fsc_c01053{font-size:64.000000pt;}
.fs3_c01053{font-size:66.560000pt;}
.fsd_c01053{font-size:69.120000pt;}
.fse_c01053{font-size:71.680000pt;}
.y0_c01053{bottom:0.000000pt;}
.y81_c01053{bottom:54.400000pt;}
.y5a_c01053{bottom:55.040000pt;}
.y58_c01053{bottom:55.680000pt;}
.y57_c01053{bottom:57.600000pt;}
.y59_c01053{bottom:58.240000pt;}
.y56_c01053{bottom:92.800000pt;}
.y80_c01053{bottom:93.440000pt;}
.y53_c01053{bottom:94.080000pt;}
.y55_c01053{bottom:96.000000pt;}
.y52_c01053{bottom:96.640000pt;}
.y54_c01053{bottom:97.280000pt;}
.y50_c01053{bottom:131.840000pt;}
.y7e_c01053{bottom:132.480000pt;}
.y7f_c01053{bottom:133.120000pt;}
.y4f_c01053{bottom:133.760000pt;}
.y51_c01053{bottom:134.400000pt;}
.y4c_c01053{bottom:168.960000pt;}
.y4e_c01053{bottom:169.600000pt;}
.y4d_c01053{bottom:170.240000pt;}
.y7c_c01053{bottom:170.880000pt;}
.y4b_c01053{bottom:172.160000pt;}
.y7d_c01053{bottom:173.440000pt;}
.y4a_c01053{bottom:206.720000pt;}
.y47_c01053{bottom:207.360000pt;}
.y48_c01053{bottom:208.640000pt;}
.y46_c01053{bottom:209.280000pt;}
.y49_c01053{bottom:209.920000pt;}
.y7b_c01053{bottom:210.560000pt;}
.y45_c01053{bottom:245.120000pt;}
.y44_c01053{bottom:245.760000pt;}
.y79_c01053{bottom:247.040000pt;}
.y42_c01053{bottom:247.680000pt;}
.y43_c01053{bottom:248.320000pt;}
.y7a_c01053{bottom:249.600000pt;}
.y41_c01053{bottom:283.520000pt;}
.y76_c01053{bottom:284.160000pt;}
.y75_c01053{bottom:284.800000pt;}
.y40_c01053{bottom:285.440000pt;}
.y77_c01053{bottom:286.080000pt;}
.y78_c01053{bottom:287.360000pt;}
.y3f_c01053{bottom:320.640000pt;}
.y3e_c01053{bottom:321.920000pt;}
.y74_c01053{bottom:322.560000pt;}
.y72_c01053{bottom:323.200000pt;}
.y3c_c01053{bottom:323.840000pt;}
.y3d_c01053{bottom:324.480000pt;}
.y73_c01053{bottom:325.120000pt;}
.y3b_c01053{bottom:359.040000pt;}
.y3a_c01053{bottom:360.320000pt;}
.y70_c01053{bottom:360.960000pt;}
.y6f_c01053{bottom:361.600000pt;}
.y39_c01053{bottom:362.240000pt;}
.y71_c01053{bottom:363.520000pt;}
.y38_c01053{bottom:398.720000pt;}
.y6d_c01053{bottom:399.360000pt;}
.y37_c01053{bottom:400.000000pt;}
.y6e_c01053{bottom:401.280000pt;}
.y36_c01053{bottom:436.480000pt;}
.y6b_c01053{bottom:437.760000pt;}
.y35_c01053{bottom:438.400000pt;}
.y6c_c01053{bottom:439.680000pt;}
.y32_c01053{bottom:474.880000pt;}
.y31_c01053{bottom:476.160000pt;}
.y69_c01053{bottom:476.800000pt;}
.y33_c01053{bottom:477.440000pt;}
.y34_c01053{bottom:478.080000pt;}
.y6a_c01053{bottom:479.360000pt;}
.y30_c01053{bottom:513.280000pt;}
.y66_c01053{bottom:514.560000pt;}
.y2f_c01053{bottom:515.200000pt;}
.y68_c01053{bottom:516.480000pt;}
.y67_c01053{bottom:517.120000pt;}
.y2c_c01053{bottom:551.040000pt;}
.y2e_c01053{bottom:551.680000pt;}
.y2d_c01053{bottom:552.320000pt;}
.y2b_c01053{bottom:552.960000pt;}
.y63_c01053{bottom:554.240000pt;}
.y64_c01053{bottom:554.880000pt;}
.y65_c01053{bottom:555.520000pt;}
.y28_c01053{bottom:588.800000pt;}
.y2a_c01053{bottom:589.440000pt;}
.y27_c01053{bottom:590.720000pt;}
.y62_c01053{bottom:591.360000pt;}
.y61_c01053{bottom:592.000000pt;}
.y29_c01053{bottom:593.280000pt;}
.y24_c01053{bottom:627.200000pt;}
.y26_c01053{bottom:627.840000pt;}
.y23_c01053{bottom:628.480000pt;}
.y60_c01053{bottom:629.120000pt;}
.y5f_c01053{bottom:629.760000pt;}
.y25_c01053{bottom:630.400000pt;}
.y21_c01053{bottom:666.880000pt;}
.y20_c01053{bottom:668.160000pt;}
.y22_c01053{bottom:668.800000pt;}
.y1d_c01053{bottom:694.400000pt;}
.y1f_c01053{bottom:695.040000pt;}
.y1c_c01053{bottom:696.960000pt;}
.y1e_c01053{bottom:697.600000pt;}
.y19_c01053{bottom:723.200000pt;}
.y18_c01053{bottom:723.840000pt;}
.y1b_c01053{bottom:724.480000pt;}
.y1a_c01053{bottom:725.120000pt;}
.y5e_c01053{bottom:726.400000pt;}
.y16_c01053{bottom:760.960000pt;}
.y15_c01053{bottom:763.520000pt;}
.y17_c01053{bottom:764.160000pt;}
.y13_c01053{bottom:789.760000pt;}
.y11_c01053{bottom:790.400000pt;}
.y12_c01053{bottom:791.040000pt;}
.y5d_c01053{bottom:791.680000pt;}
.y14_c01053{bottom:792.320000pt;}
.yf_c01053{bottom:828.160000pt;}
.y10_c01053{bottom:831.360000pt;}
.ya_c01053{bottom:856.960000pt;}
.yb_c01053{bottom:857.600000pt;}
.ye_c01053{bottom:858.240000pt;}
.yc_c01053{bottom:858.880000pt;}
.y5c_c01053{bottom:859.520000pt;}
.yd_c01053{bottom:860.160000pt;}
.y7_c01053{bottom:895.360000pt;}
.y6_c01053{bottom:896.000000pt;}
.y9_c01053{bottom:897.920000pt;}
.y8_c01053{bottom:898.560000pt;}
.y1_c01053{bottom:924.160000pt;}
.y2_c01053{bottom:925.440000pt;}
.y5_c01053{bottom:926.080000pt;}
.y3_c01053{bottom:927.360000pt;}
.y4_c01053{bottom:928.000000pt;}
.y5b_c01053{bottom:990.720000pt;}
.h11_c01053{height:25.341250pt;}
.hb_c01053{height:29.948750pt;}
.ha_c01053{height:32.252500pt;}
.h13_c01053{height:34.556250pt;}
.hc_c01053{height:36.860000pt;}
.h4_c01053{height:39.163750pt;}
.h6_c01053{height:41.467500pt;}
.h12_c01053{height:43.515000pt;}
.h9_c01053{height:43.771250pt;}
.h7_c01053{height:46.075000pt;}
.h3_c01053{height:48.378750pt;}
.h8_c01053{height:50.682500pt;}
.h2_c01053{height:52.986250pt;}
.hd_c01053{height:55.290000pt;}
.he_c01053{height:57.593750pt;}
.h5_c01053{height:59.897500pt;}
.hf_c01053{height:62.201250pt;}
.h10_c01053{height:64.505000pt;}
.h0_c01053{height:1025.280000pt;}
.h1_c01053{height:1025.333333pt;}
.w0_c01053{width:725.760000pt;}
.w1_c01053{width:726.000000pt;}
.x0_c01053{left:0.000000pt;}
.x1_c01053{left:86.400000pt;}
.x16_c01053{left:125.440000pt;}
.x15_c01053{left:152.320000pt;}
.x2_c01053{left:153.600000pt;}
.x10_c01053{left:200.320000pt;}
.x12_c01053{left:201.600000pt;}
.x3_c01053{left:230.400000pt;}
.x14_c01053{left:239.360000pt;}
.x4_c01053{left:277.760000pt;}
.xc_c01053{left:286.720000pt;}
.x9_c01053{left:288.000000pt;}
.x13_c01053{left:316.800000pt;}
.x5_c01053{left:326.400000pt;}
.x17_c01053{left:334.080000pt;}
.xd_c01053{left:336.000000pt;}
.xa_c01053{left:345.600000pt;}
.xf_c01053{left:364.160000pt;}
.x18_c01053{left:373.120000pt;}
.xb_c01053{left:393.600000pt;}
.x1a_c01053{left:402.560000pt;}
.x6_c01053{left:412.160000pt;}
.x19_c01053{left:422.400000pt;}
.x11_c01053{left:440.960000pt;}
.xe_c01053{left:451.200000pt;}
.x7_c01053{left:460.800000pt;}
.x8_c01053{left:508.800000pt;}
.x22_c01053{left:537.600000pt;}
.x25_c01053{left:556.800000pt;}
.x27_c01053{left:565.120000pt;}
.x28_c01053{left:577.920000pt;}
.x20_c01053{left:586.240000pt;}
.x1c_c01053{left:587.520000pt;}
.x26_c01053{left:606.720000pt;}
.x1b_c01053{left:608.640000pt;}
.x1d_c01053{left:616.320000pt;}
.x23_c01053{left:624.000000pt;}
.x1f_c01053{left:645.120000pt;}
.x21_c01053{left:652.800000pt;}
.x1e_c01053{left:654.720000pt;}
.x24_c01053{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_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_2000669d7a564396196b236d.woff2')format("woff");}.ff1_c01054{font-family:ff1_c01054;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m35_c01054{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.m21_c01054{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);}
.m17_c01054{transform:matrix(0.234200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234200,0.000000,0.000000,0.250000,0,0);}
.m48_c01054{transform:matrix(0.241125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241125,0.000000,0.000000,0.250000,0,0);}
.m42_c01054{transform:matrix(0.243375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243375,0.000000,0.000000,0.250000,0,0);}
.m44_c01054{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m2c_c01054{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m29_c01054{transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);}
.m18_c01054{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_c01054{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m22_c01054{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_c01054{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_c01054{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);}
.m4b_c01054{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.me_c01054{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_c01054{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_c01054{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01054{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m10_c01054{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01054{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mb_c01054{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m31_c01054{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01054{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01054{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m19_c01054{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01054{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01054{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01054{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m30_c01054{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m45_c01054{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m13_c01054{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m9_c01054{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m34_c01054{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01054{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01054{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m36_c01054{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01054{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m4_c01054{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.ma_c01054{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m7_c01054{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_c01054{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m47_c01054{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01054{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.md_c01054{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);}
.m3f_c01054{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m27_c01054{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m16_c01054{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m20_c01054{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);}
.m2a_c01054{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1_c01054{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m4a_c01054{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m2_c01054{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);}
.m0_c01054{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m6_c01054{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);}
.m4d_c01054{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m25_c01054{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);}
.m4c_c01054{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m24_c01054{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m46_c01054{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);}
.m23_c01054{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m5_c01054{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m38_c01054{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01054{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01054{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);}
.m3b_c01054{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m32_c01054{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);}
.m39_c01054{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01054{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m37_c01054{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);}
.m1d_c01054{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.mf_c01054{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);}
.m33_c01054{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m49_c01054{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m41_c01054{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m28_c01054{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.m43_c01054{transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);}
.m40_c01054{transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);}
.mc_c01054{transform:matrix(2.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.280000,0.000000,0.000000,0.250000,0,0);}
.v1_c01054{vertical-align:-8.640000px;}
.v0_c01054{vertical-align:0.000000px;}
.v3_c01054{vertical-align:5.760000px;}
.v2_c01054{vertical-align:8.640000px;}
.ls0_c01054{letter-spacing:0.000000px;}
.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;}
}
.ws5_c01054{word-spacing:0.000000px;}
.ws1_c01054{word-spacing:37.050720px;}
.ws0_c01054{word-spacing:57.172800px;}
.ws3_c01054{word-spacing:202.675622px;}
.ws2_c01054{word-spacing:348.404640px;}
.ws4_c01054{word-spacing:521.982000px;}
.fc0_c01054{color:transparent;}
.fs7_c01054{font-size:17.280000px;}
.fs11_c01054{font-size:28.800000px;}
.fs9_c01054{font-size:37.440000px;}
.fsd_c01054{font-size:40.320000px;}
.fsf_c01054{font-size:43.200000px;}
.fs12_c01054{font-size:46.080000px;}
.fs3_c01054{font-size:48.960000px;}
.fs2_c01054{font-size:51.840000px;}
.fs6_c01054{font-size:54.720000px;}
.fsb_c01054{font-size:57.600000px;}
.fs1_c01054{font-size:60.480000px;}
.fs8_c01054{font-size:63.360000px;}
.fs5_c01054{font-size:66.240000px;}
.fsa_c01054{font-size:69.120000px;}
.fs0_c01054{font-size:72.000000px;}
.fs4_c01054{font-size:74.880000px;}
.fsc_c01054{font-size:77.760000px;}
.fse_c01054{font-size:103.680000px;}
.fs10_c01054{font-size:112.320000px;}
.y0_c01054{bottom:0.000000px;}
.y82_c01054{bottom:46.080000px;}
.y83_c01054{bottom:46.800000px;}
.y85_c01054{bottom:47.520000px;}
.y84_c01054{bottom:48.960000px;}
.y81_c01054{bottom:49.680000px;}
.y80_c01054{bottom:88.560000px;}
.y7d_c01054{bottom:89.280000px;}
.y7e_c01054{bottom:90.000000px;}
.y7f_c01054{bottom:90.720000px;}
.y7c_c01054{bottom:91.440000px;}
.y77_c01054{bottom:131.760000px;}
.y78_c01054{bottom:132.480000px;}
.y79_c01054{bottom:133.200000px;}
.y7a_c01054{bottom:134.640000px;}
.y76_c01054{bottom:135.360000px;}
.y7b_c01054{bottom:136.080000px;}
.y72_c01054{bottom:174.960000px;}
.y73_c01054{bottom:176.400000px;}
.y74_c01054{bottom:177.120000px;}
.y71_c01054{bottom:178.560000px;}
.y75_c01054{bottom:179.280000px;}
.y6e_c01054{bottom:218.160000px;}
.y6f_c01054{bottom:219.600000px;}
.y6d_c01054{bottom:220.320000px;}
.y70_c01054{bottom:221.040000px;}
.y6a_c01054{bottom:261.360000px;}
.y6c_c01054{bottom:262.800000px;}
.y69_c01054{bottom:263.520000px;}
.y6b_c01054{bottom:264.240000px;}
.y67_c01054{bottom:303.120000px;}
.y65_c01054{bottom:303.840000px;}
.y68_c01054{bottom:305.280000px;}
.y63_c01054{bottom:306.000000px;}
.y66_c01054{bottom:307.440000px;}
.y64_c01054{bottom:308.160000px;}
.y60_c01054{bottom:337.680000px;}
.y5f_c01054{bottom:346.320000px;}
.y5d_c01054{bottom:347.040000px;}
.y61_c01054{bottom:348.480000px;}
.y5c_c01054{bottom:349.200000px;}
.y5e_c01054{bottom:349.920000px;}
.y62_c01054{bottom:351.360000px;}
.y5b_c01054{bottom:382.320000px;}
.y58_c01054{bottom:389.520000px;}
.y5a_c01054{bottom:390.960000px;}
.y59_c01054{bottom:391.680000px;}
.y57_c01054{bottom:392.400000px;}
.y55_c01054{bottom:425.520000px;}
.y51_c01054{bottom:432.720000px;}
.y54_c01054{bottom:434.160000px;}
.y50_c01054{bottom:434.880000px;}
.y53_c01054{bottom:435.600000px;}
.y52_c01054{bottom:436.320000px;}
.y56_c01054{bottom:437.040000px;}
.y4e_c01054{bottom:468.720000px;}
.y4a_c01054{bottom:475.200000px;}
.y4d_c01054{bottom:476.640000px;}
.y49_c01054{bottom:477.360000px;}
.y4b_c01054{bottom:478.080000px;}
.y4c_c01054{bottom:478.800000px;}
.y4f_c01054{bottom:480.240000px;}
.y44_c01054{bottom:518.400000px;}
.y43_c01054{bottom:519.840000px;}
.y45_c01054{bottom:520.560000px;}
.y47_c01054{bottom:521.280000px;}
.y46_c01054{bottom:522.000000px;}
.y48_c01054{bottom:523.440000px;}
.y3f_c01054{bottom:560.160000px;}
.y42_c01054{bottom:562.320000px;}
.y3e_c01054{bottom:563.040000px;}
.y40_c01054{bottom:565.200000px;}
.y41_c01054{bottom:565.920000px;}
.y3a_c01054{bottom:602.640000px;}
.y3b_c01054{bottom:603.360000px;}
.y39_c01054{bottom:605.520000px;}
.y3d_c01054{bottom:606.240000px;}
.y3c_c01054{bottom:609.120000px;}
.y34_c01054{bottom:646.560000px;}
.y36_c01054{bottom:648.000000px;}
.y33_c01054{bottom:648.720000px;}
.y35_c01054{bottom:649.440000px;}
.y37_c01054{bottom:650.880000px;}
.y38_c01054{bottom:651.600000px;}
.y2f_c01054{bottom:689.040000px;}
.y30_c01054{bottom:689.760000px;}
.y2e_c01054{bottom:691.200000px;}
.y31_c01054{bottom:691.920000px;}
.y32_c01054{bottom:693.360000px;}
.y29_c01054{bottom:732.240000px;}
.y2a_c01054{bottom:732.960000px;}
.y28_c01054{bottom:733.680000px;}
.y2b_c01054{bottom:735.120000px;}
.y2c_c01054{bottom:736.560000px;}
.y2d_c01054{bottom:738.000000px;}
.y23_c01054{bottom:775.440000px;}
.y24_c01054{bottom:776.160000px;}
.y22_c01054{bottom:776.880000px;}
.y26_c01054{bottom:779.040000px;}
.y25_c01054{bottom:779.760000px;}
.y27_c01054{bottom:781.920000px;}
.y1d_c01054{bottom:817.920000px;}
.y1e_c01054{bottom:818.640000px;}
.y1c_c01054{bottom:820.080000px;}
.y21_c01054{bottom:820.800000px;}
.y1f_c01054{bottom:821.520000px;}
.y20_c01054{bottom:822.240000px;}
.y18_c01054{bottom:861.120000px;}
.y17_c01054{bottom:862.560000px;}
.y19_c01054{bottom:864.720000px;}
.y1a_c01054{bottom:866.160000px;}
.y1b_c01054{bottom:866.880000px;}
.y13_c01054{bottom:903.600000px;}
.y12_c01054{bottom:905.040000px;}
.y14_c01054{bottom:907.200000px;}
.y15_c01054{bottom:907.920000px;}
.y16_c01054{bottom:908.640000px;}
.ye_c01054{bottom:946.800000px;}
.yd_c01054{bottom:948.240000px;}
.y10_c01054{bottom:948.960000px;}
.y11_c01054{bottom:950.400000px;}
.yf_c01054{bottom:951.120000px;}
.y8_c01054{bottom:990.000000px;}
.y7_c01054{bottom:990.720000px;}
.ya_c01054{bottom:993.600000px;}
.y9_c01054{bottom:994.320000px;}
.yb_c01054{bottom:995.760000px;}
.yc_c01054{bottom:996.480000px;}
.y6_c01054{bottom:1030.320000px;}
.y2_c01054{bottom:1034.640000px;}
.y3_c01054{bottom:1036.800000px;}
.y5_c01054{bottom:1038.960000px;}
.y4_c01054{bottom:1039.680000px;}
.y1_c01054{bottom:1107.360000px;}
.h9_c01054{height:15.550313px;}
.h13_c01054{height:25.917187px;}
.hb_c01054{height:33.692344px;}
.hf_c01054{height:36.284062px;}
.h11_c01054{height:38.875781px;}
.h14_c01054{height:41.467500px;}
.h5_c01054{height:44.059219px;}
.h4_c01054{height:46.650937px;}
.h8_c01054{height:49.242656px;}
.hd_c01054{height:51.834375px;}
.h3_c01054{height:54.426094px;}
.ha_c01054{height:57.017812px;}
.h7_c01054{height:59.609531px;}
.hc_c01054{height:62.201250px;}
.h2_c01054{height:64.792969px;}
.h6_c01054{height:67.384687px;}
.he_c01054{height:69.976406px;}
.h10_c01054{height:93.301875px;}
.h12_c01054{height:101.077031px;}
.h0_c01054{height:1153.440000px;}
.h1_c01054{height:1153.500000px;}
.w0_c01054{width:817.920000px;}
.w1_c01054{width:818.250000px;}
.x0_c01054{left:0.000000px;}
.x2_c01054{left:105.120000px;}
.x21_c01054{left:106.560000px;}
.x1f_c01054{left:149.760000px;}
.x3_c01054{left:179.280000px;}
.x1b_c01054{left:180.720000px;}
.xd_c01054{left:220.320000px;}
.x4_c01054{left:234.720000px;}
.x5_c01054{left:275.760000px;}
.xe_c01054{left:277.200000px;}
.x19_c01054{left:278.640000px;}
.x6_c01054{left:319.680000px;}
.x1a_c01054{left:321.120000px;}
.x15_c01054{left:330.480000px;}
.x22_c01054{left:331.920000px;}
.x7_c01054{left:374.400000px;}
.x16_c01054{left:375.840000px;}
.x8_c01054{left:418.320000px;}
.x1c_c01054{left:514.800000px;}
.x13_c01054{left:579.600000px;}
.x9_c01054{left:581.040000px;}
.xf_c01054{left:613.440000px;}
.x11_c01054{left:634.320000px;}
.x20_c01054{left:635.760000px;}
.xa_c01054{left:668.160000px;}
.x18_c01054{left:669.600000px;}
.x1_c01054{left:695.520000px;}
.x1d_c01054{left:699.840000px;}
.xb_c01054{left:701.280000px;}
.x1e_c01054{left:709.920000px;}
.x10_c01054{left:711.360000px;}
.x12_c01054{left:743.040000px;}
.xc_c01054{left:744.480000px;}
.x14_c01054{left:763.200000px;}
.x17_c01054{left:764.640000px;}
@media print{
.v1_c01054{vertical-align:-7.680000pt;}
.v0_c01054{vertical-align:0.000000pt;}
.v3_c01054{vertical-align:5.120000pt;}
.v2_c01054{vertical-align:7.680000pt;}
.ls0_c01054{letter-spacing:0.000000pt;}
.ws5_c01054{word-spacing:0.000000pt;}
.ws1_c01054{word-spacing:32.933973pt;}
.ws0_c01054{word-spacing:50.820267pt;}
.ws3_c01054{word-spacing:180.156109pt;}
.ws2_c01054{word-spacing:309.693013pt;}
.ws4_c01054{word-spacing:463.984000pt;}
.fs7_c01054{font-size:15.360000pt;}
.fs11_c01054{font-size:25.600000pt;}
.fs9_c01054{font-size:33.280000pt;}
.fsd_c01054{font-size:35.840000pt;}
.fsf_c01054{font-size:38.400000pt;}
.fs12_c01054{font-size:40.960000pt;}
.fs3_c01054{font-size:43.520000pt;}
.fs2_c01054{font-size:46.080000pt;}
.fs6_c01054{font-size:48.640000pt;}
.fsb_c01054{font-size:51.200000pt;}
.fs1_c01054{font-size:53.760000pt;}
.fs8_c01054{font-size:56.320000pt;}
.fs5_c01054{font-size:58.880000pt;}
.fsa_c01054{font-size:61.440000pt;}
.fs0_c01054{font-size:64.000000pt;}
.fs4_c01054{font-size:66.560000pt;}
.fsc_c01054{font-size:69.120000pt;}
.fse_c01054{font-size:92.160000pt;}
.fs10_c01054{font-size:99.840000pt;}
.y0_c01054{bottom:0.000000pt;}
.y82_c01054{bottom:40.960000pt;}
.y83_c01054{bottom:41.600000pt;}
.y85_c01054{bottom:42.240000pt;}
.y84_c01054{bottom:43.520000pt;}
.y81_c01054{bottom:44.160000pt;}
.y80_c01054{bottom:78.720000pt;}
.y7d_c01054{bottom:79.360000pt;}
.y7e_c01054{bottom:80.000000pt;}
.y7f_c01054{bottom:80.640000pt;}
.y7c_c01054{bottom:81.280000pt;}
.y77_c01054{bottom:117.120000pt;}
.y78_c01054{bottom:117.760000pt;}
.y79_c01054{bottom:118.400000pt;}
.y7a_c01054{bottom:119.680000pt;}
.y76_c01054{bottom:120.320000pt;}
.y7b_c01054{bottom:120.960000pt;}
.y72_c01054{bottom:155.520000pt;}
.y73_c01054{bottom:156.800000pt;}
.y74_c01054{bottom:157.440000pt;}
.y71_c01054{bottom:158.720000pt;}
.y75_c01054{bottom:159.360000pt;}
.y6e_c01054{bottom:193.920000pt;}
.y6f_c01054{bottom:195.200000pt;}
.y6d_c01054{bottom:195.840000pt;}
.y70_c01054{bottom:196.480000pt;}
.y6a_c01054{bottom:232.320000pt;}
.y6c_c01054{bottom:233.600000pt;}
.y69_c01054{bottom:234.240000pt;}
.y6b_c01054{bottom:234.880000pt;}
.y67_c01054{bottom:269.440000pt;}
.y65_c01054{bottom:270.080000pt;}
.y68_c01054{bottom:271.360000pt;}
.y63_c01054{bottom:272.000000pt;}
.y66_c01054{bottom:273.280000pt;}
.y64_c01054{bottom:273.920000pt;}
.y60_c01054{bottom:300.160000pt;}
.y5f_c01054{bottom:307.840000pt;}
.y5d_c01054{bottom:308.480000pt;}
.y61_c01054{bottom:309.760000pt;}
.y5c_c01054{bottom:310.400000pt;}
.y5e_c01054{bottom:311.040000pt;}
.y62_c01054{bottom:312.320000pt;}
.y5b_c01054{bottom:339.840000pt;}
.y58_c01054{bottom:346.240000pt;}
.y5a_c01054{bottom:347.520000pt;}
.y59_c01054{bottom:348.160000pt;}
.y57_c01054{bottom:348.800000pt;}
.y55_c01054{bottom:378.240000pt;}
.y51_c01054{bottom:384.640000pt;}
.y54_c01054{bottom:385.920000pt;}
.y50_c01054{bottom:386.560000pt;}
.y53_c01054{bottom:387.200000pt;}
.y52_c01054{bottom:387.840000pt;}
.y56_c01054{bottom:388.480000pt;}
.y4e_c01054{bottom:416.640000pt;}
.y4a_c01054{bottom:422.400000pt;}
.y4d_c01054{bottom:423.680000pt;}
.y49_c01054{bottom:424.320000pt;}
.y4b_c01054{bottom:424.960000pt;}
.y4c_c01054{bottom:425.600000pt;}
.y4f_c01054{bottom:426.880000pt;}
.y44_c01054{bottom:460.800000pt;}
.y43_c01054{bottom:462.080000pt;}
.y45_c01054{bottom:462.720000pt;}
.y47_c01054{bottom:463.360000pt;}
.y46_c01054{bottom:464.000000pt;}
.y48_c01054{bottom:465.280000pt;}
.y3f_c01054{bottom:497.920000pt;}
.y42_c01054{bottom:499.840000pt;}
.y3e_c01054{bottom:500.480000pt;}
.y40_c01054{bottom:502.400000pt;}
.y41_c01054{bottom:503.040000pt;}
.y3a_c01054{bottom:535.680000pt;}
.y3b_c01054{bottom:536.320000pt;}
.y39_c01054{bottom:538.240000pt;}
.y3d_c01054{bottom:538.880000pt;}
.y3c_c01054{bottom:541.440000pt;}
.y34_c01054{bottom:574.720000pt;}
.y36_c01054{bottom:576.000000pt;}
.y33_c01054{bottom:576.640000pt;}
.y35_c01054{bottom:577.280000pt;}
.y37_c01054{bottom:578.560000pt;}
.y38_c01054{bottom:579.200000pt;}
.y2f_c01054{bottom:612.480000pt;}
.y30_c01054{bottom:613.120000pt;}
.y2e_c01054{bottom:614.400000pt;}
.y31_c01054{bottom:615.040000pt;}
.y32_c01054{bottom:616.320000pt;}
.y29_c01054{bottom:650.880000pt;}
.y2a_c01054{bottom:651.520000pt;}
.y28_c01054{bottom:652.160000pt;}
.y2b_c01054{bottom:653.440000pt;}
.y2c_c01054{bottom:654.720000pt;}
.y2d_c01054{bottom:656.000000pt;}
.y23_c01054{bottom:689.280000pt;}
.y24_c01054{bottom:689.920000pt;}
.y22_c01054{bottom:690.560000pt;}
.y26_c01054{bottom:692.480000pt;}
.y25_c01054{bottom:693.120000pt;}
.y27_c01054{bottom:695.040000pt;}
.y1d_c01054{bottom:727.040000pt;}
.y1e_c01054{bottom:727.680000pt;}
.y1c_c01054{bottom:728.960000pt;}
.y21_c01054{bottom:729.600000pt;}
.y1f_c01054{bottom:730.240000pt;}
.y20_c01054{bottom:730.880000pt;}
.y18_c01054{bottom:765.440000pt;}
.y17_c01054{bottom:766.720000pt;}
.y19_c01054{bottom:768.640000pt;}
.y1a_c01054{bottom:769.920000pt;}
.y1b_c01054{bottom:770.560000pt;}
.y13_c01054{bottom:803.200000pt;}
.y12_c01054{bottom:804.480000pt;}
.y14_c01054{bottom:806.400000pt;}
.y15_c01054{bottom:807.040000pt;}
.y16_c01054{bottom:807.680000pt;}
.ye_c01054{bottom:841.600000pt;}
.yd_c01054{bottom:842.880000pt;}
.y10_c01054{bottom:843.520000pt;}
.y11_c01054{bottom:844.800000pt;}
.yf_c01054{bottom:845.440000pt;}
.y8_c01054{bottom:880.000000pt;}
.y7_c01054{bottom:880.640000pt;}
.ya_c01054{bottom:883.200000pt;}
.y9_c01054{bottom:883.840000pt;}
.yb_c01054{bottom:885.120000pt;}
.yc_c01054{bottom:885.760000pt;}
.y6_c01054{bottom:915.840000pt;}
.y2_c01054{bottom:919.680000pt;}
.y3_c01054{bottom:921.600000pt;}
.y5_c01054{bottom:923.520000pt;}
.y4_c01054{bottom:924.160000pt;}
.y1_c01054{bottom:984.320000pt;}
.h9_c01054{height:13.822500pt;}
.h13_c01054{height:23.037500pt;}
.hb_c01054{height:29.948750pt;}
.hf_c01054{height:32.252500pt;}
.h11_c01054{height:34.556250pt;}
.h14_c01054{height:36.860000pt;}
.h5_c01054{height:39.163750pt;}
.h4_c01054{height:41.467500pt;}
.h8_c01054{height:43.771250pt;}
.hd_c01054{height:46.075000pt;}
.h3_c01054{height:48.378750pt;}
.ha_c01054{height:50.682500pt;}
.h7_c01054{height:52.986250pt;}
.hc_c01054{height:55.290000pt;}
.h2_c01054{height:57.593750pt;}
.h6_c01054{height:59.897500pt;}
.he_c01054{height:62.201250pt;}
.h10_c01054{height:82.935000pt;}
.h12_c01054{height:89.846250pt;}
.h0_c01054{height:1025.280000pt;}
.h1_c01054{height:1025.333333pt;}
.w0_c01054{width:727.040000pt;}
.w1_c01054{width:727.333333pt;}
.x0_c01054{left:0.000000pt;}
.x2_c01054{left:93.440000pt;}
.x21_c01054{left:94.720000pt;}
.x1f_c01054{left:133.120000pt;}
.x3_c01054{left:159.360000pt;}
.x1b_c01054{left:160.640000pt;}
.xd_c01054{left:195.840000pt;}
.x4_c01054{left:208.640000pt;}
.x5_c01054{left:245.120000pt;}
.xe_c01054{left:246.400000pt;}
.x19_c01054{left:247.680000pt;}
.x6_c01054{left:284.160000pt;}
.x1a_c01054{left:285.440000pt;}
.x15_c01054{left:293.760000pt;}
.x22_c01054{left:295.040000pt;}
.x7_c01054{left:332.800000pt;}
.x16_c01054{left:334.080000pt;}
.x8_c01054{left:371.840000pt;}
.x1c_c01054{left:457.600000pt;}
.x13_c01054{left:515.200000pt;}
.x9_c01054{left:516.480000pt;}
.xf_c01054{left:545.280000pt;}
.x11_c01054{left:563.840000pt;}
.x20_c01054{left:565.120000pt;}
.xa_c01054{left:593.920000pt;}
.x18_c01054{left:595.200000pt;}
.x1_c01054{left:618.240000pt;}
.x1d_c01054{left:622.080000pt;}
.xb_c01054{left:623.360000pt;}
.x1e_c01054{left:631.040000pt;}
.x10_c01054{left:632.320000pt;}
.x12_c01054{left:660.480000pt;}
.xc_c01054{left:661.760000pt;}
.x14_c01054{left:678.400000pt;}
.x17_c01054{left:679.680000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_072685fa579dd6af0f0f83cc.woff2')format("woff");}.ff1_c01055{font-family:ff1_c01055;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m55_c01055{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m14_c01055{transform:matrix(0.177400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177400,0.000000,0.000000,0.250000,0,0);}
.m58_c01055{transform:matrix(0.181950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181950,0.000000,0.000000,0.250000,0,0);}
.ma_c01055{transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);}
.m57_c01055{transform:matrix(0.185800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185800,0.000000,0.000000,0.250000,0,0);}
.m53_c01055{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m30_c01055{transform:matrix(0.204325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204325,0.000000,0.000000,0.250000,0,0);}
.m5d_c01055{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01055{transform:matrix(0.219850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219850,0.000000,0.000000,0.250000,0,0);}
.m51_c01055{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m5b_c01055{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);}
.m54_c01055{transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);}
.me_c01055{transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);}
.m4e_c01055{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m1d_c01055{transform:matrix(0.237425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237425,0.000000,0.000000,0.250000,0,0);}
.m3c_c01055{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);}
.m2f_c01055{transform:matrix(0.239525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239525,0.000000,0.000000,0.250000,0,0);}
.m45_c01055{transform:matrix(0.239875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239875,0.000000,0.000000,0.250000,0,0);}
.m41_c01055{transform:matrix(0.240975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240975,0.000000,0.000000,0.250000,0,0);}
.m46_c01055{transform:matrix(0.243225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243225,0.000000,0.000000,0.250000,0,0);}
.m29_c01055{transform:matrix(0.244975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244975,0.000000,0.000000,0.250000,0,0);}
.m48_c01055{transform:matrix(0.246075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246075,0.000000,0.000000,0.250000,0,0);}
.m3e_c01055{transform:matrix(0.246800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246800,0.000000,0.000000,0.250000,0,0);}
.m59_c01055{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m43_c01055{transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);}
.m33_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);}
.m1_c01055{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m16_c01055{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);}
.m31_c01055{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);}
.m2b_c01055{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m23_c01055{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m7_c01055{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);}
.m4d_c01055{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);}
.m2e_c01055{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.mb_c01055{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);}
.m44_c01055{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m13_c01055{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m4_c01055{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);}
.m49_c01055{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m25_c01055{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m9_c01055{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m36_c01055{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01055{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m56_c01055{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m42_c01055{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m5_c01055{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m8_c01055{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01055{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m0_c01055{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01055{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01055{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m24_c01055{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m47_c01055{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);}
.m1f_c01055{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m19_c01055{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);}
.m40_c01055{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m11_c01055{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m10_c01055{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01055{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);}
.m3a_c01055{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m26_c01055{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);}
.m4a_c01055{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);}
.m4f_c01055{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);}
.mf_c01055{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);}
.m35_c01055{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);}
.m38_c01055{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);}
.m18_c01055{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);}
.m1e_c01055{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);}
.m52_c01055{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m3_c01055{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);}
.m2_c01055{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m12_c01055{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m50_c01055{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m5c_c01055{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);}
.m39_c01055{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01055{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01055{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m28_c01055{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);}
.m37_c01055{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m6_c01055{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);}
.m2c_c01055{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m34_c01055{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_c01055{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m20_c01055{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m21_c01055{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);}
.m27_c01055{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m32_c01055{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m15_c01055{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01055{transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);}
.mc_c01055{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01055{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01055{transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);}
.m5a_c01055{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.md_c01055{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.v2_c01055{vertical-align:-11.520000px;}
.v3_c01055{vertical-align:-2.880000px;}
.v0_c01055{vertical-align:0.000000px;}
.v4_c01055{vertical-align:8.640000px;}
.v1_c01055{vertical-align:11.520000px;}
.ls1_c01055{letter-spacing:0.000000px;}
.ls0_c01055{letter-spacing:90.638400px;}
.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;}
}
.ws2_c01055{word-spacing:0.000000px;}
.ws1_c01055{word-spacing:6.492000px;}
.ws0_c01055{word-spacing:883.068000px;}
.fc0_c01055{color:transparent;}
.fse_c01055{font-size:14.400000px;}
.fsc_c01055{font-size:17.280000px;}
.fsb_c01055{font-size:20.160000px;}
.fs10_c01055{font-size:25.920000px;}
.fs12_c01055{font-size:34.560000px;}
.fs11_c01055{font-size:37.440000px;}
.fs6_c01055{font-size:40.320000px;}
.fs3_c01055{font-size:43.200000px;}
.fs2_c01055{font-size:51.840000px;}
.fs5_c01055{font-size:54.720000px;}
.fs9_c01055{font-size:57.600000px;}
.fs7_c01055{font-size:60.480000px;}
.fsf_c01055{font-size:63.360000px;}
.fsa_c01055{font-size:66.240000px;}
.fs0_c01055{font-size:69.120000px;}
.fs4_c01055{font-size:72.000000px;}
.fs8_c01055{font-size:74.880000px;}
.fsd_c01055{font-size:77.760000px;}
.fs1_c01055{font-size:80.640000px;}
.y0_c01055{bottom:0.000000px;}
.y6b_c01055{bottom:83.520000px;}
.y68_c01055{bottom:90.720000px;}
.y6a_c01055{bottom:91.440000px;}
.y89_c01055{bottom:92.160000px;}
.y69_c01055{bottom:92.880000px;}
.y66_c01055{bottom:94.320000px;}
.y67_c01055{bottom:95.040000px;}
.y63_c01055{bottom:133.920000px;}
.y62_c01055{bottom:134.640000px;}
.y65_c01055{bottom:136.080000px;}
.y61_c01055{bottom:136.800000px;}
.y64_c01055{bottom:137.520000px;}
.y88_c01055{bottom:138.960000px;}
.y5f_c01055{bottom:176.400000px;}
.y5e_c01055{bottom:177.120000px;}
.y60_c01055{bottom:178.560000px;}
.y5d_c01055{bottom:179.280000px;}
.y87_c01055{bottom:180.720000px;}
.y5b_c01055{bottom:218.880000px;}
.y5c_c01055{bottom:221.040000px;}
.y5a_c01055{bottom:221.760000px;}
.y59_c01055{bottom:262.080000px;}
.y58_c01055{bottom:263.520000px;}
.y85_c01055{bottom:264.240000px;}
.y86_c01055{bottom:266.400000px;}
.y56_c01055{bottom:304.560000px;}
.y57_c01055{bottom:305.280000px;}
.y84_c01055{bottom:306.720000px;}
.y55_c01055{bottom:307.440000px;}
.y83_c01055{bottom:308.880000px;}
.y82_c01055{bottom:309.600000px;}
.y52_c01055{bottom:347.760000px;}
.y54_c01055{bottom:349.920000px;}
.y51_c01055{bottom:350.640000px;}
.y53_c01055{bottom:351.360000px;}
.y81_c01055{bottom:352.080000px;}
.y80_c01055{bottom:352.800000px;}
.y4d_c01055{bottom:390.240000px;}
.y4f_c01055{bottom:390.960000px;}
.y50_c01055{bottom:392.400000px;}
.y4c_c01055{bottom:393.120000px;}
.y4e_c01055{bottom:393.840000px;}
.y7f_c01055{bottom:395.280000px;}
.y48_c01055{bottom:434.160000px;}
.y7e_c01055{bottom:434.880000px;}
.y4b_c01055{bottom:435.600000px;}
.y47_c01055{bottom:436.320000px;}
.y49_c01055{bottom:437.040000px;}
.y4a_c01055{bottom:437.760000px;}
.y45_c01055{bottom:477.360000px;}
.y43_c01055{bottom:478.800000px;}
.y44_c01055{bottom:479.520000px;}
.y46_c01055{bottom:480.240000px;}
.y40_c01055{bottom:520.560000px;}
.y3f_c01055{bottom:522.000000px;}
.y42_c01055{bottom:523.440000px;}
.y41_c01055{bottom:524.160000px;}
.y7d_c01055{bottom:525.600000px;}
.y3c_c01055{bottom:563.040000px;}
.y3b_c01055{bottom:564.480000px;}
.y7c_c01055{bottom:565.200000px;}
.y3e_c01055{bottom:565.920000px;}
.y3d_c01055{bottom:567.360000px;}
.y38_c01055{bottom:605.520000px;}
.y3a_c01055{bottom:606.240000px;}
.y7b_c01055{bottom:607.680000px;}
.y37_c01055{bottom:608.400000px;}
.y39_c01055{bottom:609.840000px;}
.y34_c01055{bottom:648.720000px;}
.y36_c01055{bottom:649.440000px;}
.y33_c01055{bottom:650.880000px;}
.y35_c01055{bottom:651.600000px;}
.y7a_c01055{bottom:653.040000px;}
.y30_c01055{bottom:691.200000px;}
.y32_c01055{bottom:691.920000px;}
.y2f_c01055{bottom:694.080000px;}
.y78_c01055{bottom:694.800000px;}
.y31_c01055{bottom:695.520000px;}
.y79_c01055{bottom:696.960000px;}
.y77_c01055{bottom:697.680000px;}
.y2a_c01055{bottom:734.400000px;}
.y2d_c01055{bottom:735.120000px;}
.y29_c01055{bottom:735.840000px;}
.y2e_c01055{bottom:736.560000px;}
.y2b_c01055{bottom:738.000000px;}
.y2c_c01055{bottom:738.720000px;}
.y76_c01055{bottom:739.440000px;}
.y25_c01055{bottom:776.880000px;}
.y27_c01055{bottom:777.600000px;}
.y24_c01055{bottom:779.040000px;}
.y74_c01055{bottom:779.760000px;}
.y28_c01055{bottom:780.480000px;}
.y26_c01055{bottom:781.200000px;}
.y75_c01055{bottom:782.640000px;}
.y22_c01055{bottom:819.360000px;}
.y21_c01055{bottom:820.800000px;}
.y23_c01055{bottom:822.960000px;}
.y72_c01055{bottom:824.400000px;}
.y73_c01055{bottom:825.120000px;}
.y1f_c01055{bottom:862.560000px;}
.y20_c01055{bottom:863.280000px;}
.y1e_c01055{bottom:864.000000px;}
.y71_c01055{bottom:865.440000px;}
.y70_c01055{bottom:866.880000px;}
.y6f_c01055{bottom:868.320000px;}
.y19_c01055{bottom:905.760000px;}
.y1c_c01055{bottom:906.480000px;}
.y18_c01055{bottom:907.200000px;}
.y6d_c01055{bottom:907.920000px;}
.y1d_c01055{bottom:908.640000px;}
.y1a_c01055{bottom:909.360000px;}
.y1b_c01055{bottom:910.080000px;}
.y6e_c01055{bottom:911.520000px;}
.y17_c01055{bottom:943.200000px;}
.y12_c01055{bottom:948.240000px;}
.yf_c01055{bottom:949.680000px;}
.y14_c01055{bottom:951.120000px;}
.y10_c01055{bottom:951.840000px;}
.y13_c01055{bottom:952.560000px;}
.y6c_c01055{bottom:954.720000px;}
.y11_c01055{bottom:955.440000px;}
.y15_c01055{bottom:956.160000px;}
.y16_c01055{bottom:956.880000px;}
.yc_c01055{bottom:991.440000px;}
.y9_c01055{bottom:992.880000px;}
.ye_c01055{bottom:993.600000px;}
.ya_c01055{bottom:995.040000px;}
.yd_c01055{bottom:995.760000px;}
.yb_c01055{bottom:997.920000px;}
.y2_c01055{bottom:1033.920000px;}
.y1_c01055{bottom:1036.080000px;}
.y3_c01055{bottom:1036.800000px;}
.y5_c01055{bottom:1037.520000px;}
.y7_c01055{bottom:1038.240000px;}
.y4_c01055{bottom:1038.960000px;}
.y6_c01055{bottom:1039.680000px;}
.y8_c01055{bottom:1107.360000px;}
.h10_c01055{height:12.958594px;}
.he_c01055{height:15.550313px;}
.hd_c01055{height:18.142031px;}
.h12_c01055{height:23.325469px;}
.h15_c01055{height:31.100625px;}
.h13_c01055{height:33.692344px;}
.h8_c01055{height:36.284062px;}
.h5_c01055{height:38.875781px;}
.h4_c01055{height:46.650937px;}
.h7_c01055{height:49.242656px;}
.hb_c01055{height:51.834375px;}
.h9_c01055{height:54.426094px;}
.h16_c01055{height:55.290937px;}
.h11_c01055{height:57.017812px;}
.hc_c01055{height:59.609531px;}
.h2_c01055{height:62.201250px;}
.h6_c01055{height:64.792969px;}
.ha_c01055{height:67.384687px;}
.h14_c01055{height:68.537812px;}
.hf_c01055{height:69.976406px;}
.h3_c01055{height:72.568125px;}
.h1_c01055{height:1151.250000px;}
.h0_c01055{height:1151.280000px;}
.w0_c01055{width:814.320000px;}
.w1_c01055{width:814.500000px;}
.x0_c01055{left:0.000000px;}
.x1_c01055{left:105.120000px;}
.xd_c01055{left:148.320000px;}
.x21_c01055{left:149.760000px;}
.xe_c01055{left:158.400000px;}
.x2_c01055{left:179.280000px;}
.x16_c01055{left:180.720000px;}
.x17_c01055{left:275.040000px;}
.x3_c01055{left:277.200000px;}
.x22_c01055{left:308.880000px;}
.x1a_c01055{left:318.960000px;}
.x18_c01055{left:320.400000px;}
.xf_c01055{left:329.760000px;}
.x4_c01055{left:331.200000px;}
.x23_c01055{left:352.080000px;}
.x1b_c01055{left:362.880000px;}
.x5_c01055{left:373.680000px;}
.x10_c01055{left:375.120000px;}
.x1f_c01055{left:384.480000px;}
.x1c_c01055{left:406.080000px;}
.x19_c01055{left:416.880000px;}
.x20_c01055{left:429.120000px;}
.x1d_c01055{left:449.280000px;}
.x11_c01055{left:460.080000px;}
.x6_c01055{left:481.680000px;}
.x24_c01055{left:493.200000px;}
.x26_c01055{left:514.080000px;}
.x12_c01055{left:515.520000px;}
.x7_c01055{left:526.320000px;}
.x13_c01055{left:537.120000px;}
.x25_c01055{left:540.720000px;}
.x14_c01055{left:547.200000px;}
.x15_c01055{left:558.720000px;}
.x1e_c01055{left:579.600000px;}
.x8_c01055{left:581.040000px;}
.x2b_c01055{left:633.600000px;}
.x27_c01055{left:635.040000px;}
.x2e_c01055{left:666.000000px;}
.x28_c01055{left:667.440000px;}
.xa_c01055{left:668.880000px;}
.x9_c01055{left:706.320000px;}
.x2a_c01055{left:709.920000px;}
.xb_c01055{left:711.360000px;}
.x2d_c01055{left:742.320000px;}
.xc_c01055{left:743.760000px;}
.x2c_c01055{left:762.480000px;}
.x29_c01055{left:763.920000px;}
@media print{
.v2_c01055{vertical-align:-10.240000pt;}
.v3_c01055{vertical-align:-2.560000pt;}
.v0_c01055{vertical-align:0.000000pt;}
.v4_c01055{vertical-align:7.680000pt;}
.v1_c01055{vertical-align:10.240000pt;}
.ls1_c01055{letter-spacing:0.000000pt;}
.ls0_c01055{letter-spacing:80.567467pt;}
.ws2_c01055{word-spacing:0.000000pt;}
.ws1_c01055{word-spacing:5.770667pt;}
.ws0_c01055{word-spacing:784.949333pt;}
.fse_c01055{font-size:12.800000pt;}
.fsc_c01055{font-size:15.360000pt;}
.fsb_c01055{font-size:17.920000pt;}
.fs10_c01055{font-size:23.040000pt;}
.fs12_c01055{font-size:30.720000pt;}
.fs11_c01055{font-size:33.280000pt;}
.fs6_c01055{font-size:35.840000pt;}
.fs3_c01055{font-size:38.400000pt;}
.fs2_c01055{font-size:46.080000pt;}
.fs5_c01055{font-size:48.640000pt;}
.fs9_c01055{font-size:51.200000pt;}
.fs7_c01055{font-size:53.760000pt;}
.fsf_c01055{font-size:56.320000pt;}
.fsa_c01055{font-size:58.880000pt;}
.fs0_c01055{font-size:61.440000pt;}
.fs4_c01055{font-size:64.000000pt;}
.fs8_c01055{font-size:66.560000pt;}
.fsd_c01055{font-size:69.120000pt;}
.fs1_c01055{font-size:71.680000pt;}
.y0_c01055{bottom:0.000000pt;}
.y6b_c01055{bottom:74.240000pt;}
.y68_c01055{bottom:80.640000pt;}
.y6a_c01055{bottom:81.280000pt;}
.y89_c01055{bottom:81.920000pt;}
.y69_c01055{bottom:82.560000pt;}
.y66_c01055{bottom:83.840000pt;}
.y67_c01055{bottom:84.480000pt;}
.y63_c01055{bottom:119.040000pt;}
.y62_c01055{bottom:119.680000pt;}
.y65_c01055{bottom:120.960000pt;}
.y61_c01055{bottom:121.600000pt;}
.y64_c01055{bottom:122.240000pt;}
.y88_c01055{bottom:123.520000pt;}
.y5f_c01055{bottom:156.800000pt;}
.y5e_c01055{bottom:157.440000pt;}
.y60_c01055{bottom:158.720000pt;}
.y5d_c01055{bottom:159.360000pt;}
.y87_c01055{bottom:160.640000pt;}
.y5b_c01055{bottom:194.560000pt;}
.y5c_c01055{bottom:196.480000pt;}
.y5a_c01055{bottom:197.120000pt;}
.y59_c01055{bottom:232.960000pt;}
.y58_c01055{bottom:234.240000pt;}
.y85_c01055{bottom:234.880000pt;}
.y86_c01055{bottom:236.800000pt;}
.y56_c01055{bottom:270.720000pt;}
.y57_c01055{bottom:271.360000pt;}
.y84_c01055{bottom:272.640000pt;}
.y55_c01055{bottom:273.280000pt;}
.y83_c01055{bottom:274.560000pt;}
.y82_c01055{bottom:275.200000pt;}
.y52_c01055{bottom:309.120000pt;}
.y54_c01055{bottom:311.040000pt;}
.y51_c01055{bottom:311.680000pt;}
.y53_c01055{bottom:312.320000pt;}
.y81_c01055{bottom:312.960000pt;}
.y80_c01055{bottom:313.600000pt;}
.y4d_c01055{bottom:346.880000pt;}
.y4f_c01055{bottom:347.520000pt;}
.y50_c01055{bottom:348.800000pt;}
.y4c_c01055{bottom:349.440000pt;}
.y4e_c01055{bottom:350.080000pt;}
.y7f_c01055{bottom:351.360000pt;}
.y48_c01055{bottom:385.920000pt;}
.y7e_c01055{bottom:386.560000pt;}
.y4b_c01055{bottom:387.200000pt;}
.y47_c01055{bottom:387.840000pt;}
.y49_c01055{bottom:388.480000pt;}
.y4a_c01055{bottom:389.120000pt;}
.y45_c01055{bottom:424.320000pt;}
.y43_c01055{bottom:425.600000pt;}
.y44_c01055{bottom:426.240000pt;}
.y46_c01055{bottom:426.880000pt;}
.y40_c01055{bottom:462.720000pt;}
.y3f_c01055{bottom:464.000000pt;}
.y42_c01055{bottom:465.280000pt;}
.y41_c01055{bottom:465.920000pt;}
.y7d_c01055{bottom:467.200000pt;}
.y3c_c01055{bottom:500.480000pt;}
.y3b_c01055{bottom:501.760000pt;}
.y7c_c01055{bottom:502.400000pt;}
.y3e_c01055{bottom:503.040000pt;}
.y3d_c01055{bottom:504.320000pt;}
.y38_c01055{bottom:538.240000pt;}
.y3a_c01055{bottom:538.880000pt;}
.y7b_c01055{bottom:540.160000pt;}
.y37_c01055{bottom:540.800000pt;}
.y39_c01055{bottom:542.080000pt;}
.y34_c01055{bottom:576.640000pt;}
.y36_c01055{bottom:577.280000pt;}
.y33_c01055{bottom:578.560000pt;}
.y35_c01055{bottom:579.200000pt;}
.y7a_c01055{bottom:580.480000pt;}
.y30_c01055{bottom:614.400000pt;}
.y32_c01055{bottom:615.040000pt;}
.y2f_c01055{bottom:616.960000pt;}
.y78_c01055{bottom:617.600000pt;}
.y31_c01055{bottom:618.240000pt;}
.y79_c01055{bottom:619.520000pt;}
.y77_c01055{bottom:620.160000pt;}
.y2a_c01055{bottom:652.800000pt;}
.y2d_c01055{bottom:653.440000pt;}
.y29_c01055{bottom:654.080000pt;}
.y2e_c01055{bottom:654.720000pt;}
.y2b_c01055{bottom:656.000000pt;}
.y2c_c01055{bottom:656.640000pt;}
.y76_c01055{bottom:657.280000pt;}
.y25_c01055{bottom:690.560000pt;}
.y27_c01055{bottom:691.200000pt;}
.y24_c01055{bottom:692.480000pt;}
.y74_c01055{bottom:693.120000pt;}
.y28_c01055{bottom:693.760000pt;}
.y26_c01055{bottom:694.400000pt;}
.y75_c01055{bottom:695.680000pt;}
.y22_c01055{bottom:728.320000pt;}
.y21_c01055{bottom:729.600000pt;}
.y23_c01055{bottom:731.520000pt;}
.y72_c01055{bottom:732.800000pt;}
.y73_c01055{bottom:733.440000pt;}
.y1f_c01055{bottom:766.720000pt;}
.y20_c01055{bottom:767.360000pt;}
.y1e_c01055{bottom:768.000000pt;}
.y71_c01055{bottom:769.280000pt;}
.y70_c01055{bottom:770.560000pt;}
.y6f_c01055{bottom:771.840000pt;}
.y19_c01055{bottom:805.120000pt;}
.y1c_c01055{bottom:805.760000pt;}
.y18_c01055{bottom:806.400000pt;}
.y6d_c01055{bottom:807.040000pt;}
.y1d_c01055{bottom:807.680000pt;}
.y1a_c01055{bottom:808.320000pt;}
.y1b_c01055{bottom:808.960000pt;}
.y6e_c01055{bottom:810.240000pt;}
.y17_c01055{bottom:838.400000pt;}
.y12_c01055{bottom:842.880000pt;}
.yf_c01055{bottom:844.160000pt;}
.y14_c01055{bottom:845.440000pt;}
.y10_c01055{bottom:846.080000pt;}
.y13_c01055{bottom:846.720000pt;}
.y6c_c01055{bottom:848.640000pt;}
.y11_c01055{bottom:849.280000pt;}
.y15_c01055{bottom:849.920000pt;}
.y16_c01055{bottom:850.560000pt;}
.yc_c01055{bottom:881.280000pt;}
.y9_c01055{bottom:882.560000pt;}
.ye_c01055{bottom:883.200000pt;}
.ya_c01055{bottom:884.480000pt;}
.yd_c01055{bottom:885.120000pt;}
.yb_c01055{bottom:887.040000pt;}
.y2_c01055{bottom:919.040000pt;}
.y1_c01055{bottom:920.960000pt;}
.y3_c01055{bottom:921.600000pt;}
.y5_c01055{bottom:922.240000pt;}
.y7_c01055{bottom:922.880000pt;}
.y4_c01055{bottom:923.520000pt;}
.y6_c01055{bottom:924.160000pt;}
.y8_c01055{bottom:984.320000pt;}
.h10_c01055{height:11.518750pt;}
.he_c01055{height:13.822500pt;}
.hd_c01055{height:16.126250pt;}
.h12_c01055{height:20.733750pt;}
.h15_c01055{height:27.645000pt;}
.h13_c01055{height:29.948750pt;}
.h8_c01055{height:32.252500pt;}
.h5_c01055{height:34.556250pt;}
.h4_c01055{height:41.467500pt;}
.h7_c01055{height:43.771250pt;}
.hb_c01055{height:46.075000pt;}
.h9_c01055{height:48.378750pt;}
.h16_c01055{height:49.147500pt;}
.h11_c01055{height:50.682500pt;}
.hc_c01055{height:52.986250pt;}
.h2_c01055{height:55.290000pt;}
.h6_c01055{height:57.593750pt;}
.ha_c01055{height:59.897500pt;}
.h14_c01055{height:60.922500pt;}
.hf_c01055{height:62.201250pt;}
.h3_c01055{height:64.505000pt;}
.h1_c01055{height:1023.333333pt;}
.h0_c01055{height:1023.360000pt;}
.w0_c01055{width:723.840000pt;}
.w1_c01055{width:724.000000pt;}
.x0_c01055{left:0.000000pt;}
.x1_c01055{left:93.440000pt;}
.xd_c01055{left:131.840000pt;}
.x21_c01055{left:133.120000pt;}
.xe_c01055{left:140.800000pt;}
.x2_c01055{left:159.360000pt;}
.x16_c01055{left:160.640000pt;}
.x17_c01055{left:244.480000pt;}
.x3_c01055{left:246.400000pt;}
.x22_c01055{left:274.560000pt;}
.x1a_c01055{left:283.520000pt;}
.x18_c01055{left:284.800000pt;}
.xf_c01055{left:293.120000pt;}
.x4_c01055{left:294.400000pt;}
.x23_c01055{left:312.960000pt;}
.x1b_c01055{left:322.560000pt;}
.x5_c01055{left:332.160000pt;}
.x10_c01055{left:333.440000pt;}
.x1f_c01055{left:341.760000pt;}
.x1c_c01055{left:360.960000pt;}
.x19_c01055{left:370.560000pt;}
.x20_c01055{left:381.440000pt;}
.x1d_c01055{left:399.360000pt;}
.x11_c01055{left:408.960000pt;}
.x6_c01055{left:428.160000pt;}
.x24_c01055{left:438.400000pt;}
.x26_c01055{left:456.960000pt;}
.x12_c01055{left:458.240000pt;}
.x7_c01055{left:467.840000pt;}
.x13_c01055{left:477.440000pt;}
.x25_c01055{left:480.640000pt;}
.x14_c01055{left:486.400000pt;}
.x15_c01055{left:496.640000pt;}
.x1e_c01055{left:515.200000pt;}
.x8_c01055{left:516.480000pt;}
.x2b_c01055{left:563.200000pt;}
.x27_c01055{left:564.480000pt;}
.x2e_c01055{left:592.000000pt;}
.x28_c01055{left:593.280000pt;}
.xa_c01055{left:594.560000pt;}
.x9_c01055{left:627.840000pt;}
.x2a_c01055{left:631.040000pt;}
.xb_c01055{left:632.320000pt;}
.x2d_c01055{left:659.840000pt;}
.xc_c01055{left:661.120000pt;}
.x2c_c01055{left:677.760000pt;}
.x29_c01055{left:679.040000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_cd4125af6ae509ad4f26aabf.woff2')format("woff");}.ff1_c01056{font-family:ff1_c01056;line-height:1.109863;font-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_c01056{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01056{transform:matrix(0.201075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201075,0.000000,0.000000,0.250000,0,0);}
.m4d_c01056{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m33_c01056{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);}
.m51_c01056{transform:matrix(0.230150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230150,0.000000,0.000000,0.250000,0,0);}
.m7_c01056{transform:matrix(0.231275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231275,0.000000,0.000000,0.250000,0,0);}
.m43_c01056{transform:matrix(0.235125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235125,0.000000,0.000000,0.250000,0,0);}
.m18_c01056{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);}
.m12_c01056{transform:matrix(0.239575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239575,0.000000,0.000000,0.250000,0,0);}
.m2_c01056{transform:matrix(0.239875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239875,0.000000,0.000000,0.250000,0,0);}
.m3b_c01056{transform:matrix(0.240325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240325,0.000000,0.000000,0.250000,0,0);}
.m32_c01056{transform:matrix(0.241775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241775,0.000000,0.000000,0.250000,0,0);}
.m31_c01056{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m9_c01056{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m34_c01056{transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);}
.m52_c01056{transform:matrix(0.249050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249050,0.000000,0.000000,0.250000,0,0);}
.m1e_c01056{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01056{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);}
.m42_c01056{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);}
.m2e_c01056{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);}
.m3a_c01056{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);}
.m47_c01056{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m24_c01056{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);}
.m26_c01056{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_c01056{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);}
.m45_c01056{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);}
.m2d_c01056{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_c01056{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.mb_c01056{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m55_c01056{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m16_c01056{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);}
.m54_c01056{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m22_c01056{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);}
.m49_c01056{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01056{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m30_c01056{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01056{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.md_c01056{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m23_c01056{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01056{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m25_c01056{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01056{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m13_c01056{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m19_c01056{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m8_c01056{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m37_c01056{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1_c01056{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01056{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.ma_c01056{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);}
.m35_c01056{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m6_c01056{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);}
.m56_c01056{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m14_c01056{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);}
.m4e_c01056{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.mf_c01056{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);}
.m39_c01056{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m15_c01056{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01056{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m0_c01056{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);}
.m46_c01056{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);}
.m36_c01056{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m28_c01056{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01056{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);}
.m40_c01056{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_c01056{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m48_c01056{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m20_c01056{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m27_c01056{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01056{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01056{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);}
.m3d_c01056{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.me_c01056{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);}
.m44_c01056{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01056{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);}
.m2a_c01056{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);}
.m4c_c01056{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m11_c01056{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m29_c01056{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);}
.m41_c01056{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m5_c01056{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);}
.m4_c01056{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m21_c01056{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m3_c01056{transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01056{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m50_c01056{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.m53_c01056{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01056{transform:matrix(1.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.327500,0.000000,0.000000,0.250000,0,0);}
.v2_c01056{vertical-align:-5.760000px;}
.v1_c01056{vertical-align:-2.880000px;}
.v0_c01056{vertical-align:0.000000px;}
.ls1_c01056{letter-spacing:0.000000px;}
.ls0_c01056{letter-spacing:90.638400px;}
.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:-8.924880px;}
.ws1_c01056{word-spacing:0.000000px;}
.fc0_c01056{color:transparent;}
.fs10_c01056{font-size:20.160000px;}
.fs11_c01056{font-size:25.920000px;}
.fsb_c01056{font-size:34.560000px;}
.fs4_c01056{font-size:37.440000px;}
.fsf_c01056{font-size:40.320000px;}
.fse_c01056{font-size:43.200000px;}
.fsc_c01056{font-size:46.080000px;}
.fs9_c01056{font-size:48.960000px;}
.fs3_c01056{font-size:51.840000px;}
.fsa_c01056{font-size:54.720000px;}
.fs7_c01056{font-size:57.600000px;}
.fs5_c01056{font-size:60.480000px;}
.fsd_c01056{font-size:63.360000px;}
.fs1_c01056{font-size:66.240000px;}
.fs6_c01056{font-size:69.120000px;}
.fs0_c01056{font-size:72.000000px;}
.fs8_c01056{font-size:74.880000px;}
.fs2_c01056{font-size:77.760000px;}
.y0_c01056{bottom:0.000000px;}
.y6f_c01056{bottom:81.360000px;}
.y84_c01056{bottom:82.080000px;}
.y6e_c01056{bottom:83.520000px;}
.y6d_c01056{bottom:102.960000px;}
.y6a_c01056{bottom:104.400000px;}
.y6b_c01056{bottom:105.120000px;}
.y6c_c01056{bottom:108.000000px;}
.y82_c01056{bottom:113.760000px;}
.y83_c01056{bottom:115.200000px;}
.y68_c01056{bottom:124.560000px;}
.y69_c01056{bottom:125.280000px;}
.y67_c01056{bottom:156.960000px;}
.y65_c01056{bottom:157.680000px;}
.y63_c01056{bottom:158.400000px;}
.y80_c01056{bottom:159.840000px;}
.y66_c01056{bottom:160.560000px;}
.y81_c01056{bottom:162.000000px;}
.y60_c01056{bottom:169.920000px;}
.y61_c01056{bottom:170.640000px;}
.y5f_c01056{bottom:172.800000px;}
.y64_c01056{bottom:180.720000px;}
.y62_c01056{bottom:181.440000px;}
.y5d_c01056{bottom:220.320000px;}
.y5e_c01056{bottom:221.760000px;}
.y7e_c01056{bottom:222.480000px;}
.y5c_c01056{bottom:223.200000px;}
.y7f_c01056{bottom:223.920000px;}
.y59_c01056{bottom:262.800000px;}
.y58_c01056{bottom:264.960000px;}
.y5b_c01056{bottom:266.400000px;}
.y5a_c01056{bottom:267.120000px;}
.y7c_c01056{bottom:267.840000px;}
.y57_c01056{bottom:305.280000px;}
.y55_c01056{bottom:306.000000px;}
.y7b_c01056{bottom:308.160000px;}
.y54_c01056{bottom:308.880000px;}
.y56_c01056{bottom:309.600000px;}
.y53_c01056{bottom:348.480000px;}
.y79_c01056{bottom:350.640000px;}
.y7a_c01056{bottom:351.360000px;}
.y50_c01056{bottom:352.080000px;}
.y52_c01056{bottom:352.800000px;}
.y51_c01056{bottom:353.520000px;}
.y4f_c01056{bottom:391.680000px;}
.y78_c01056{bottom:393.840000px;}
.y4b_c01056{bottom:394.560000px;}
.y4e_c01056{bottom:395.280000px;}
.y4c_c01056{bottom:396.000000px;}
.y4d_c01056{bottom:396.720000px;}
.y77_c01056{bottom:397.440000px;}
.y75_c01056{bottom:437.040000px;}
.y76_c01056{bottom:439.200000px;}
.y74_c01056{bottom:479.520000px;}
.y7d_c01056{bottom:480.240000px;}
.y4a_c01056{bottom:519.840000px;}
.y72_c01056{bottom:522.000000px;}
.y48_c01056{bottom:522.720000px;}
.y49_c01056{bottom:524.160000px;}
.y73_c01056{bottom:524.880000px;}
.y47_c01056{bottom:563.040000px;}
.y45_c01056{bottom:564.480000px;}
.y46_c01056{bottom:566.640000px;}
.y41_c01056{bottom:595.440000px;}
.y42_c01056{bottom:596.160000px;}
.y40_c01056{bottom:596.880000px;}
.y71_c01056{bottom:597.600000px;}
.y70_c01056{bottom:598.320000px;}
.y44_c01056{bottom:599.040000px;}
.y43_c01056{bottom:599.760000px;}
.y3f_c01056{bottom:638.640000px;}
.y3d_c01056{bottom:639.360000px;}
.y3e_c01056{bottom:642.240000px;}
.y38_c01056{bottom:670.320000px;}
.y37_c01056{bottom:671.760000px;}
.y3a_c01056{bottom:672.480000px;}
.y3b_c01056{bottom:673.200000px;}
.y3c_c01056{bottom:673.920000px;}
.y39_c01056{bottom:674.640000px;}
.y27_c01056{bottom:713.520000px;}
.y26_c01056{bottom:715.680000px;}
.y25_c01056{bottom:717.120000px;}
.y21_c01056{bottom:745.200000px;}
.y20_c01056{bottom:746.640000px;}
.y22_c01056{bottom:747.360000px;}
.y24_c01056{bottom:748.080000px;}
.y36_c01056{bottom:748.800000px;}
.y23_c01056{bottom:750.240000px;}
.y1d_c01056{bottom:788.400000px;}
.y1e_c01056{bottom:789.840000px;}
.y1c_c01056{bottom:790.560000px;}
.y34_c01056{bottom:792.000000px;}
.y1f_c01056{bottom:792.720000px;}
.y35_c01056{bottom:793.440000px;}
.y19_c01056{bottom:831.600000px;}
.y18_c01056{bottom:833.040000px;}
.y1a_c01056{bottom:833.760000px;}
.y31_c01056{bottom:835.200000px;}
.y32_c01056{bottom:835.920000px;}
.y1b_c01056{bottom:836.640000px;}
.y33_c01056{bottom:837.360000px;}
.y16_c01056{bottom:874.080000px;}
.y15_c01056{bottom:876.240000px;}
.y2e_c01056{bottom:876.960000px;}
.y2d_c01056{bottom:877.680000px;}
.y30_c01056{bottom:878.400000px;}
.y17_c01056{bottom:879.120000px;}
.y2f_c01056{bottom:879.840000px;}
.y11_c01056{bottom:918.000000px;}
.y14_c01056{bottom:918.720000px;}
.yf_c01056{bottom:919.440000px;}
.y10_c01056{bottom:920.160000px;}
.y12_c01056{bottom:920.880000px;}
.y2b_c01056{bottom:921.600000px;}
.y13_c01056{bottom:922.320000px;}
.y2c_c01056{bottom:923.760000px;}
.yb_c01056{bottom:960.480000px;}
.ya_c01056{bottom:961.920000px;}
.yc_c01056{bottom:962.640000px;}
.yd_c01056{bottom:963.360000px;}
.y28_c01056{bottom:964.080000px;}
.ye_c01056{bottom:964.800000px;}
.y29_c01056{bottom:965.520000px;}
.y2a_c01056{bottom:966.240000px;}
.y9_c01056{bottom:1004.400000px;}
.y8_c01056{bottom:1006.560000px;}
.y3_c01056{bottom:1034.640000px;}
.y2_c01056{bottom:1036.800000px;}
.y6_c01056{bottom:1038.240000px;}
.y7_c01056{bottom:1038.960000px;}
.y4_c01056{bottom:1039.680000px;}
.y5_c01056{bottom:1040.400000px;}
.y1_c01056{bottom:1110.240000px;}
.h12_c01056{height:18.142031px;}
.h13_c01056{height:23.325469px;}
.hd_c01056{height:31.100625px;}
.h6_c01056{height:33.692344px;}
.h11_c01056{height:36.284062px;}
.h10_c01056{height:38.875781px;}
.he_c01056{height:41.467500px;}
.hb_c01056{height:44.059219px;}
.h5_c01056{height:46.650937px;}
.hc_c01056{height:49.242656px;}
.h9_c01056{height:51.834375px;}
.h7_c01056{height:54.426094px;}
.hf_c01056{height:57.017812px;}
.h3_c01056{height:59.609531px;}
.h8_c01056{height:62.201250px;}
.h2_c01056{height:64.792969px;}
.ha_c01056{height:67.384687px;}
.h4_c01056{height:69.976406px;}
.h0_c01056{height:1157.040000px;}
.h1_c01056{height:1157.250000px;}
.w1_c01056{width:822.000000px;}
.w0_c01056{width:822.240000px;}
.x0_c01056{left:0.000000px;}
.x2_c01056{left:104.400000px;}
.x27_c01056{left:126.720000px;}
.xf_c01056{left:149.040000px;}
.x1b_c01056{left:178.560000px;}
.x3_c01056{left:180.000000px;}
.x28_c01056{left:199.440000px;}
.x2d_c01056{left:200.880000px;}
.xb_c01056{left:222.480000px;}
.x1f_c01056{left:231.840000px;}
.x1c_c01056{left:233.280000px;}
.x2e_c01056{left:244.080000px;}
.x29_c01056{left:266.400000px;}
.x4_c01056{left:275.040000px;}
.xc_c01056{left:276.480000px;}
.x1e_c01056{left:285.840000px;}
.x20_c01056{left:287.280000px;}
.x2f_c01056{left:309.600000px;}
.x5_c01056{left:319.680000px;}
.x10_c01056{left:330.480000px;}
.x24_c01056{left:339.120000px;}
.x21_c01056{left:341.280000px;}
.x30_c01056{left:351.360000px;}
.xd_c01056{left:362.880000px;}
.x23_c01056{left:372.960000px;}
.x6_c01056{left:374.400000px;}
.x22_c01056{left:383.760000px;}
.x2b_c01056{left:406.080000px;}
.x1d_c01056{left:414.720000px;}
.x7_c01056{left:416.880000px;}
.x25_c01056{left:426.960000px;}
.x31_c01056{left:429.120000px;}
.x2c_c01056{left:447.840000px;}
.x32_c01056{left:449.280000px;}
.x19_c01056{left:459.360000px;}
.xe_c01056{left:460.800000px;}
.x11_c01056{left:469.440000px;}
.x2a_c01056{left:470.880000px;}
.x26_c01056{left:480.960000px;}
.x12_c01056{left:514.080000px;}
.x37_c01056{left:547.200000px;}
.x18_c01056{left:579.600000px;}
.x8_c01056{left:581.040000px;}
.x3b_c01056{left:588.960000px;}
.x38_c01056{left:601.200000px;}
.x13_c01056{left:612.000000px;}
.x3a_c01056{left:622.800000px;}
.x33_c01056{left:632.160000px;}
.x9_c01056{left:633.600000px;}
.x16_c01056{left:635.040000px;}
.x39_c01056{left:643.680000px;}
.x3c_c01056{left:654.480000px;}
.x34_c01056{left:666.000000px;}
.x15_c01056{left:667.440000px;}
.x36_c01056{left:698.400000px;}
.x1_c01056{left:703.440000px;}
.x1a_c01056{left:709.200000px;}
.x14_c01056{left:710.640000px;}
.x17_c01056{left:741.600000px;}
.xa_c01056{left:743.760000px;}
.x35_c01056{left:761.760000px;}
@media print{
.v2_c01056{vertical-align:-5.120000pt;}
.v1_c01056{vertical-align:-2.560000pt;}
.v0_c01056{vertical-align:0.000000pt;}
.ls1_c01056{letter-spacing:0.000000pt;}
.ls0_c01056{letter-spacing:80.567467pt;}
.ws0_c01056{word-spacing:-7.933227pt;}
.ws1_c01056{word-spacing:0.000000pt;}
.fs10_c01056{font-size:17.920000pt;}
.fs11_c01056{font-size:23.040000pt;}
.fsb_c01056{font-size:30.720000pt;}
.fs4_c01056{font-size:33.280000pt;}
.fsf_c01056{font-size:35.840000pt;}
.fse_c01056{font-size:38.400000pt;}
.fsc_c01056{font-size:40.960000pt;}
.fs9_c01056{font-size:43.520000pt;}
.fs3_c01056{font-size:46.080000pt;}
.fsa_c01056{font-size:48.640000pt;}
.fs7_c01056{font-size:51.200000pt;}
.fs5_c01056{font-size:53.760000pt;}
.fsd_c01056{font-size:56.320000pt;}
.fs1_c01056{font-size:58.880000pt;}
.fs6_c01056{font-size:61.440000pt;}
.fs0_c01056{font-size:64.000000pt;}
.fs8_c01056{font-size:66.560000pt;}
.fs2_c01056{font-size:69.120000pt;}
.y0_c01056{bottom:0.000000pt;}
.y6f_c01056{bottom:72.320000pt;}
.y84_c01056{bottom:72.960000pt;}
.y6e_c01056{bottom:74.240000pt;}
.y6d_c01056{bottom:91.520000pt;}
.y6a_c01056{bottom:92.800000pt;}
.y6b_c01056{bottom:93.440000pt;}
.y6c_c01056{bottom:96.000000pt;}
.y82_c01056{bottom:101.120000pt;}
.y83_c01056{bottom:102.400000pt;}
.y68_c01056{bottom:110.720000pt;}
.y69_c01056{bottom:111.360000pt;}
.y67_c01056{bottom:139.520000pt;}
.y65_c01056{bottom:140.160000pt;}
.y63_c01056{bottom:140.800000pt;}
.y80_c01056{bottom:142.080000pt;}
.y66_c01056{bottom:142.720000pt;}
.y81_c01056{bottom:144.000000pt;}
.y60_c01056{bottom:151.040000pt;}
.y61_c01056{bottom:151.680000pt;}
.y5f_c01056{bottom:153.600000pt;}
.y64_c01056{bottom:160.640000pt;}
.y62_c01056{bottom:161.280000pt;}
.y5d_c01056{bottom:195.840000pt;}
.y5e_c01056{bottom:197.120000pt;}
.y7e_c01056{bottom:197.760000pt;}
.y5c_c01056{bottom:198.400000pt;}
.y7f_c01056{bottom:199.040000pt;}
.y59_c01056{bottom:233.600000pt;}
.y58_c01056{bottom:235.520000pt;}
.y5b_c01056{bottom:236.800000pt;}
.y5a_c01056{bottom:237.440000pt;}
.y7c_c01056{bottom:238.080000pt;}
.y57_c01056{bottom:271.360000pt;}
.y55_c01056{bottom:272.000000pt;}
.y7b_c01056{bottom:273.920000pt;}
.y54_c01056{bottom:274.560000pt;}
.y56_c01056{bottom:275.200000pt;}
.y53_c01056{bottom:309.760000pt;}
.y79_c01056{bottom:311.680000pt;}
.y7a_c01056{bottom:312.320000pt;}
.y50_c01056{bottom:312.960000pt;}
.y52_c01056{bottom:313.600000pt;}
.y51_c01056{bottom:314.240000pt;}
.y4f_c01056{bottom:348.160000pt;}
.y78_c01056{bottom:350.080000pt;}
.y4b_c01056{bottom:350.720000pt;}
.y4e_c01056{bottom:351.360000pt;}
.y4c_c01056{bottom:352.000000pt;}
.y4d_c01056{bottom:352.640000pt;}
.y77_c01056{bottom:353.280000pt;}
.y75_c01056{bottom:388.480000pt;}
.y76_c01056{bottom:390.400000pt;}
.y74_c01056{bottom:426.240000pt;}
.y7d_c01056{bottom:426.880000pt;}
.y4a_c01056{bottom:462.080000pt;}
.y72_c01056{bottom:464.000000pt;}
.y48_c01056{bottom:464.640000pt;}
.y49_c01056{bottom:465.920000pt;}
.y73_c01056{bottom:466.560000pt;}
.y47_c01056{bottom:500.480000pt;}
.y45_c01056{bottom:501.760000pt;}
.y46_c01056{bottom:503.680000pt;}
.y41_c01056{bottom:529.280000pt;}
.y42_c01056{bottom:529.920000pt;}
.y40_c01056{bottom:530.560000pt;}
.y71_c01056{bottom:531.200000pt;}
.y70_c01056{bottom:531.840000pt;}
.y44_c01056{bottom:532.480000pt;}
.y43_c01056{bottom:533.120000pt;}
.y3f_c01056{bottom:567.680000pt;}
.y3d_c01056{bottom:568.320000pt;}
.y3e_c01056{bottom:570.880000pt;}
.y38_c01056{bottom:595.840000pt;}
.y37_c01056{bottom:597.120000pt;}
.y3a_c01056{bottom:597.760000pt;}
.y3b_c01056{bottom:598.400000pt;}
.y3c_c01056{bottom:599.040000pt;}
.y39_c01056{bottom:599.680000pt;}
.y27_c01056{bottom:634.240000pt;}
.y26_c01056{bottom:636.160000pt;}
.y25_c01056{bottom:637.440000pt;}
.y21_c01056{bottom:662.400000pt;}
.y20_c01056{bottom:663.680000pt;}
.y22_c01056{bottom:664.320000pt;}
.y24_c01056{bottom:664.960000pt;}
.y36_c01056{bottom:665.600000pt;}
.y23_c01056{bottom:666.880000pt;}
.y1d_c01056{bottom:700.800000pt;}
.y1e_c01056{bottom:702.080000pt;}
.y1c_c01056{bottom:702.720000pt;}
.y34_c01056{bottom:704.000000pt;}
.y1f_c01056{bottom:704.640000pt;}
.y35_c01056{bottom:705.280000pt;}
.y19_c01056{bottom:739.200000pt;}
.y18_c01056{bottom:740.480000pt;}
.y1a_c01056{bottom:741.120000pt;}
.y31_c01056{bottom:742.400000pt;}
.y32_c01056{bottom:743.040000pt;}
.y1b_c01056{bottom:743.680000pt;}
.y33_c01056{bottom:744.320000pt;}
.y16_c01056{bottom:776.960000pt;}
.y15_c01056{bottom:778.880000pt;}
.y2e_c01056{bottom:779.520000pt;}
.y2d_c01056{bottom:780.160000pt;}
.y30_c01056{bottom:780.800000pt;}
.y17_c01056{bottom:781.440000pt;}
.y2f_c01056{bottom:782.080000pt;}
.y11_c01056{bottom:816.000000pt;}
.y14_c01056{bottom:816.640000pt;}
.yf_c01056{bottom:817.280000pt;}
.y10_c01056{bottom:817.920000pt;}
.y12_c01056{bottom:818.560000pt;}
.y2b_c01056{bottom:819.200000pt;}
.y13_c01056{bottom:819.840000pt;}
.y2c_c01056{bottom:821.120000pt;}
.yb_c01056{bottom:853.760000pt;}
.ya_c01056{bottom:855.040000pt;}
.yc_c01056{bottom:855.680000pt;}
.yd_c01056{bottom:856.320000pt;}
.y28_c01056{bottom:856.960000pt;}
.ye_c01056{bottom:857.600000pt;}
.y29_c01056{bottom:858.240000pt;}
.y2a_c01056{bottom:858.880000pt;}
.y9_c01056{bottom:892.800000pt;}
.y8_c01056{bottom:894.720000pt;}
.y3_c01056{bottom:919.680000pt;}
.y2_c01056{bottom:921.600000pt;}
.y6_c01056{bottom:922.880000pt;}
.y7_c01056{bottom:923.520000pt;}
.y4_c01056{bottom:924.160000pt;}
.y5_c01056{bottom:924.800000pt;}
.y1_c01056{bottom:986.880000pt;}
.h12_c01056{height:16.126250pt;}
.h13_c01056{height:20.733750pt;}
.hd_c01056{height:27.645000pt;}
.h6_c01056{height:29.948750pt;}
.h11_c01056{height:32.252500pt;}
.h10_c01056{height:34.556250pt;}
.he_c01056{height:36.860000pt;}
.hb_c01056{height:39.163750pt;}
.h5_c01056{height:41.467500pt;}
.hc_c01056{height:43.771250pt;}
.h9_c01056{height:46.075000pt;}
.h7_c01056{height:48.378750pt;}
.hf_c01056{height:50.682500pt;}
.h3_c01056{height:52.986250pt;}
.h8_c01056{height:55.290000pt;}
.h2_c01056{height:57.593750pt;}
.ha_c01056{height:59.897500pt;}
.h4_c01056{height:62.201250pt;}
.h0_c01056{height:1028.480000pt;}
.h1_c01056{height:1028.666667pt;}
.w1_c01056{width:730.666667pt;}
.w0_c01056{width:730.880000pt;}
.x0_c01056{left:0.000000pt;}
.x2_c01056{left:92.800000pt;}
.x27_c01056{left:112.640000pt;}
.xf_c01056{left:132.480000pt;}
.x1b_c01056{left:158.720000pt;}
.x3_c01056{left:160.000000pt;}
.x28_c01056{left:177.280000pt;}
.x2d_c01056{left:178.560000pt;}
.xb_c01056{left:197.760000pt;}
.x1f_c01056{left:206.080000pt;}
.x1c_c01056{left:207.360000pt;}
.x2e_c01056{left:216.960000pt;}
.x29_c01056{left:236.800000pt;}
.x4_c01056{left:244.480000pt;}
.xc_c01056{left:245.760000pt;}
.x1e_c01056{left:254.080000pt;}
.x20_c01056{left:255.360000pt;}
.x2f_c01056{left:275.200000pt;}
.x5_c01056{left:284.160000pt;}
.x10_c01056{left:293.760000pt;}
.x24_c01056{left:301.440000pt;}
.x21_c01056{left:303.360000pt;}
.x30_c01056{left:312.320000pt;}
.xd_c01056{left:322.560000pt;}
.x23_c01056{left:331.520000pt;}
.x6_c01056{left:332.800000pt;}
.x22_c01056{left:341.120000pt;}
.x2b_c01056{left:360.960000pt;}
.x1d_c01056{left:368.640000pt;}
.x7_c01056{left:370.560000pt;}
.x25_c01056{left:379.520000pt;}
.x31_c01056{left:381.440000pt;}
.x2c_c01056{left:398.080000pt;}
.x32_c01056{left:399.360000pt;}
.x19_c01056{left:408.320000pt;}
.xe_c01056{left:409.600000pt;}
.x11_c01056{left:417.280000pt;}
.x2a_c01056{left:418.560000pt;}
.x26_c01056{left:427.520000pt;}
.x12_c01056{left:456.960000pt;}
.x37_c01056{left:486.400000pt;}
.x18_c01056{left:515.200000pt;}
.x8_c01056{left:516.480000pt;}
.x3b_c01056{left:523.520000pt;}
.x38_c01056{left:534.400000pt;}
.x13_c01056{left:544.000000pt;}
.x3a_c01056{left:553.600000pt;}
.x33_c01056{left:561.920000pt;}
.x9_c01056{left:563.200000pt;}
.x16_c01056{left:564.480000pt;}
.x39_c01056{left:572.160000pt;}
.x3c_c01056{left:581.760000pt;}
.x34_c01056{left:592.000000pt;}
.x15_c01056{left:593.280000pt;}
.x36_c01056{left:620.800000pt;}
.x1_c01056{left:625.280000pt;}
.x1a_c01056{left:630.400000pt;}
.x14_c01056{left:631.680000pt;}
.x17_c01056{left:659.200000pt;}
.xa_c01056{left:661.120000pt;}
.x35_c01056{left:677.120000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a78eb54d319a77cb152fcc08.woff2')format("woff");}.ff1_c01057{font-family:ff1_c01057;line-height:1.109863;font-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_c01057{transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);}
.m23_c01057{transform:matrix(0.200875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200875,0.000000,0.000000,0.250000,0,0);}
.m15_c01057{transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);}
.m2b_c01057{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m43_c01057{transform:matrix(0.232025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232025,0.000000,0.000000,0.250000,0,0);}
.m34_c01057{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m29_c01057{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m40_c01057{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m45_c01057{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m25_c01057{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);}
.m57_c01057{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);}
.m47_c01057{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);}
.m38_c01057{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);}
.m48_c01057{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mb_c01057{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m9_c01057{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);}
.m2f_c01057{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m22_c01057{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01057{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mc_c01057{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);}
.m36_c01057{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m6_c01057{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);}
.m35_c01057{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01057{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m53_c01057{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01057{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m27_c01057{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01057{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01057{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4_c01057{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m7_c01057{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m44_c01057{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m12_c01057{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01057{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m51_c01057{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m13_c01057{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m30_c01057{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.me_c01057{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);}
.m46_c01057{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m37_c01057{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m17_c01057{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_c01057{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);}
.m49_c01057{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m28_c01057{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);}
.m3e_c01057{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m10_c01057{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);}
.m3f_c01057{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m0_c01057{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m3_c01057{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01057{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);}
.m33_c01057{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);}
.m31_c01057{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m32_c01057{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m41_c01057{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m2_c01057{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);}
.m4d_c01057{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);}
.m3d_c01057{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m1_c01057{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m20_c01057{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);}
.m26_c01057{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);}
.m5_c01057{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);}
.m2d_c01057{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01057{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m11_c01057{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);}
.m2c_c01057{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.ma_c01057{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);}
.m56_c01057{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_c01057{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01057{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m60_c01057{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01057{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);}
.m3b_c01057{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.md_c01057{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);}
.m5a_c01057{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m18_c01057{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m39_c01057{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01057{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m5f_c01057{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);}
.mf_c01057{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m16_c01057{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);}
.m61_c01057{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01057{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m54_c01057{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);}
.m55_c01057{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m50_c01057{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);}
.m52_c01057{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m14_c01057{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m5e_c01057{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m5c_c01057{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m5b_c01057{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01057{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);}
.m21_c01057{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m5d_c01057{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01057{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m59_c01057{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m42_c01057{transform:matrix(0.707500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.707500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.707500,0.000000,0.000000,0.250000,0,0);}
.m58_c01057{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m8_c01057{transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);}
.v3_c01057{vertical-align:-8.640000px;}
.v0_c01057{vertical-align:0.000000px;}
.v2_c01057{vertical-align:2.880000px;}
.v1_c01057{vertical-align:5.760000px;}
.ls1_c01057{letter-spacing:0.000000px;}
.ls0_c01057{letter-spacing:125.306400px;}
.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;}
}
.ws4_c01057{word-spacing:0.000000px;}
.ws2_c01057{word-spacing:26.326320px;}
.ws1_c01057{word-spacing:27.639829px;}
.ws0_c01057{word-spacing:44.499600px;}
.ws3_c01057{word-spacing:75.999600px;}
._0_c01057{width:66.930011px;}
.fc0_c01057{color:transparent;}
.fs4_c01057{font-size:17.280000px;}
.fsf_c01057{font-size:34.560000px;}
.fs7_c01057{font-size:37.440000px;}
.fs10_c01057{font-size:40.320000px;}
.fs6_c01057{font-size:43.200000px;}
.fs8_c01057{font-size:46.080000px;}
.fs1_c01057{font-size:48.960000px;}
.fs2_c01057{font-size:51.840000px;}
.fs5_c01057{font-size:54.720000px;}
.fs3_c01057{font-size:57.600000px;}
.fs9_c01057{font-size:60.480000px;}
.fsa_c01057{font-size:63.360000px;}
.fsc_c01057{font-size:66.240000px;}
.fsb_c01057{font-size:69.120000px;}
.fs0_c01057{font-size:72.000000px;}
.fse_c01057{font-size:74.880000px;}
.fsd_c01057{font-size:77.760000px;}
.y0_c01057{bottom:0.000000px;}
.ya6_c01057{bottom:42.480000px;}
.ya3_c01057{bottom:43.200000px;}
.ya4_c01057{bottom:43.920000px;}
.ya7_c01057{bottom:44.640000px;}
.ya5_c01057{bottom:45.360000px;}
.ya2_c01057{bottom:46.080000px;}
.y9f_c01057{bottom:84.960000px;}
.ya1_c01057{bottom:85.680000px;}
.ya0_c01057{bottom:87.120000px;}
.y9d_c01057{bottom:89.280000px;}
.y9e_c01057{bottom:90.720000px;}
.y99_c01057{bottom:127.440000px;}
.y9b_c01057{bottom:128.880000px;}
.y9c_c01057{bottom:129.600000px;}
.y97_c01057{bottom:130.320000px;}
.y9a_c01057{bottom:131.040000px;}
.y98_c01057{bottom:133.200000px;}
.y95_c01057{bottom:171.360000px;}
.y92_c01057{bottom:172.080000px;}
.y94_c01057{bottom:172.800000px;}
.y96_c01057{bottom:173.520000px;}
.y91_c01057{bottom:174.240000px;}
.y93_c01057{bottom:174.960000px;}
.y8e_c01057{bottom:213.120000px;}
.y90_c01057{bottom:214.560000px;}
.y8f_c01057{bottom:215.280000px;}
.y8b_c01057{bottom:216.720000px;}
.y8d_c01057{bottom:217.440000px;}
.y8c_c01057{bottom:218.160000px;}
.y87_c01057{bottom:257.040000px;}
.y88_c01057{bottom:257.760000px;}
.y8a_c01057{bottom:258.480000px;}
.y89_c01057{bottom:259.200000px;}
.y86_c01057{bottom:259.920000px;}
.y83_c01057{bottom:299.520000px;}
.y85_c01057{bottom:300.960000px;}
.y84_c01057{bottom:301.680000px;}
.y81_c01057{bottom:302.400000px;}
.y82_c01057{bottom:303.120000px;}
.y7f_c01057{bottom:341.280000px;}
.y7d_c01057{bottom:344.160000px;}
.y80_c01057{bottom:345.600000px;}
.y7e_c01057{bottom:346.320000px;}
.y7a_c01057{bottom:385.920000px;}
.y7c_c01057{bottom:386.640000px;}
.y7b_c01057{bottom:387.360000px;}
.y78_c01057{bottom:388.080000px;}
.y79_c01057{bottom:389.520000px;}
.y75_c01057{bottom:428.400000px;}
.y76_c01057{bottom:429.120000px;}
.y73_c01057{bottom:429.840000px;}
.y77_c01057{bottom:431.280000px;}
.y74_c01057{bottom:432.720000px;}
.y70_c01057{bottom:470.160000px;}
.y71_c01057{bottom:471.600000px;}
.y72_c01057{bottom:473.040000px;}
.y6d_c01057{bottom:473.760000px;}
.y6f_c01057{bottom:475.200000px;}
.y6e_c01057{bottom:475.920000px;}
.y6a_c01057{bottom:514.800000px;}
.y6c_c01057{bottom:516.240000px;}
.y68_c01057{bottom:516.960000px;}
.y6b_c01057{bottom:518.400000px;}
.y69_c01057{bottom:519.120000px;}
.y66_c01057{bottom:559.440000px;}
.y67_c01057{bottom:560.880000px;}
.y65_c01057{bottom:562.320000px;}
.y61_c01057{bottom:622.800000px;}
.y60_c01057{bottom:623.520000px;}
.y62_c01057{bottom:624.240000px;}
.y5f_c01057{bottom:625.680000px;}
.y63_c01057{bottom:626.400000px;}
.y64_c01057{bottom:627.120000px;}
.y59_c01057{bottom:643.680000px;}
.y5b_c01057{bottom:644.400000px;}
.y5a_c01057{bottom:645.120000px;}
.y5e_c01057{bottom:645.840000px;}
.y5c_c01057{bottom:646.560000px;}
.y5d_c01057{bottom:647.280000px;}
.y54_c01057{bottom:666.000000px;}
.y56_c01057{bottom:666.720000px;}
.y57_c01057{bottom:667.440000px;}
.y55_c01057{bottom:668.160000px;}
.y58_c01057{bottom:669.600000px;}
.y50_c01057{bottom:686.880000px;}
.y52_c01057{bottom:687.600000px;}
.y51_c01057{bottom:688.320000px;}
.y53_c01057{bottom:689.040000px;}
.y4a_c01057{bottom:708.480000px;}
.y4e_c01057{bottom:709.200000px;}
.y4d_c01057{bottom:709.920000px;}
.y4c_c01057{bottom:710.640000px;}
.y4b_c01057{bottom:711.360000px;}
.y4f_c01057{bottom:712.080000px;}
.y47_c01057{bottom:730.080000px;}
.y48_c01057{bottom:730.800000px;}
.y45_c01057{bottom:731.520000px;}
.y49_c01057{bottom:732.240000px;}
.y46_c01057{bottom:732.960000px;}
.y43_c01057{bottom:751.680000px;}
.y41_c01057{bottom:752.400000px;}
.y44_c01057{bottom:753.120000px;}
.y42_c01057{bottom:753.840000px;}
.y3d_c01057{bottom:772.560000px;}
.y3e_c01057{bottom:773.280000px;}
.y3f_c01057{bottom:774.000000px;}
.y3b_c01057{bottom:774.720000px;}
.y3c_c01057{bottom:775.440000px;}
.y40_c01057{bottom:776.160000px;}
.y34_c01057{bottom:794.160000px;}
.y36_c01057{bottom:794.880000px;}
.y3a_c01057{bottom:795.600000px;}
.y35_c01057{bottom:796.320000px;}
.y37_c01057{bottom:797.040000px;}
.y38_c01057{bottom:797.760000px;}
.y39_c01057{bottom:798.480000px;}
.y2f_c01057{bottom:815.040000px;}
.y31_c01057{bottom:816.480000px;}
.y30_c01057{bottom:817.200000px;}
.y33_c01057{bottom:818.640000px;}
.y32_c01057{bottom:819.360000px;}
.y2b_c01057{bottom:836.640000px;}
.y2c_c01057{bottom:837.360000px;}
.y2d_c01057{bottom:838.080000px;}
.y2e_c01057{bottom:838.800000px;}
.y25_c01057{bottom:856.800000px;}
.y26_c01057{bottom:858.240000px;}
.y27_c01057{bottom:858.960000px;}
.y28_c01057{bottom:859.680000px;}
.y2a_c01057{bottom:860.400000px;}
.y29_c01057{bottom:862.560000px;}
.y20_c01057{bottom:879.120000px;}
.y23_c01057{bottom:879.840000px;}
.y22_c01057{bottom:880.560000px;}
.y21_c01057{bottom:881.280000px;}
.y1f_c01057{bottom:882.000000px;}
.y24_c01057{bottom:882.720000px;}
.y1b_c01057{bottom:901.440000px;}
.y1c_c01057{bottom:902.160000px;}
.y1d_c01057{bottom:902.880000px;}
.y1a_c01057{bottom:903.600000px;}
.y1e_c01057{bottom:905.040000px;}
.y15_c01057{bottom:933.840000px;}
.y17_c01057{bottom:934.560000px;}
.y16_c01057{bottom:935.280000px;}
.y18_c01057{bottom:936.000000px;}
.y19_c01057{bottom:936.720000px;}
.y10_c01057{bottom:976.320000px;}
.y12_c01057{bottom:977.760000px;}
.yf_c01057{bottom:978.480000px;}
.y11_c01057{bottom:979.920000px;}
.y14_c01057{bottom:980.640000px;}
.y13_c01057{bottom:982.080000px;}
.ya_c01057{bottom:1008.000000px;}
.yc_c01057{bottom:1010.160000px;}
.yb_c01057{bottom:1010.880000px;}
.y9_c01057{bottom:1011.600000px;}
.yd_c01057{bottom:1012.320000px;}
.ye_c01057{bottom:1013.040000px;}
.y3_c01057{bottom:1041.120000px;}
.y2_c01057{bottom:1041.840000px;}
.y8_c01057{bottom:1043.280000px;}
.y4_c01057{bottom:1044.000000px;}
.y5_c01057{bottom:1044.720000px;}
.y6_c01057{bottom:1045.440000px;}
.y7_c01057{bottom:1047.600000px;}
.y1_c01057{bottom:1111.680000px;}
.h6_c01057{height:15.550313px;}
.h15_c01057{height:31.100625px;}
.h9_c01057{height:33.692344px;}
.h16_c01057{height:36.284062px;}
.h8_c01057{height:38.875781px;}
.ha_c01057{height:41.467500px;}
.h3_c01057{height:44.059219px;}
.h4_c01057{height:46.650937px;}
.h7_c01057{height:49.242656px;}
.h12_c01057{height:50.969531px;}
.h5_c01057{height:51.834375px;}
.hb_c01057{height:54.426094px;}
.h11_c01057{height:54.714375px;}
.h10_c01057{height:55.002656px;}
.hc_c01057{height:57.017812px;}
.hf_c01057{height:57.594375px;}
.he_c01057{height:59.609531px;}
.hd_c01057{height:62.201250px;}
.h2_c01057{height:64.792969px;}
.h14_c01057{height:67.384687px;}
.h13_c01057{height:69.976406px;}
.h0_c01057{height:1153.440000px;}
.h1_c01057{height:1153.500000px;}
.w0_c01057{width:816.480000px;}
.w1_c01057{width:816.750000px;}
.x0_c01057{left:0.000000px;}
.x2_c01057{left:104.400000px;}
.x22_c01057{left:115.200000px;}
.x3_c01057{left:123.840000px;}
.xf_c01057{left:125.280000px;}
.x1a_c01057{left:136.080000px;}
.x23_c01057{left:146.160000px;}
.x34_c01057{left:147.600000px;}
.x10_c01057{left:157.680000px;}
.x3b_c01057{left:178.560000px;}
.x39_c01057{left:180.000000px;}
.x31_c01057{left:189.360000px;}
.x24_c01057{left:190.800000px;}
.x11_c01057{left:200.880000px;}
.x1b_c01057{left:211.680000px;}
.x12_c01057{left:221.760000px;}
.x4_c01057{left:231.120000px;}
.x3a_c01057{left:252.720000px;}
.x1c_c01057{left:254.880000px;}
.x13_c01057{left:264.240000px;}
.x43_c01057{left:265.680000px;}
.x3e_c01057{left:287.280000px;}
.x44_c01057{left:296.640000px;}
.x5_c01057{left:319.680000px;}
.x36_c01057{left:329.040000px;}
.x1d_c01057{left:330.480000px;}
.x6_c01057{left:350.640000px;}
.x1e_c01057{left:362.880000px;}
.x28_c01057{left:372.960000px;}
.x2e_c01057{left:383.760000px;}
.x7_c01057{left:385.200000px;}
.x40_c01057{left:394.560000px;}
.x35_c01057{left:406.800000px;}
.x2f_c01057{left:416.160000px;}
.x25_c01057{left:417.600000px;}
.x8_c01057{left:427.680000px;}
.x33_c01057{left:429.120000px;}
.x14_c01057{left:436.320000px;}
.x1f_c01057{left:439.200000px;}
.x45_c01057{left:449.280000px;}
.x17_c01057{left:459.360000px;}
.x9_c01057{left:470.160000px;}
.x20_c01057{left:480.960000px;}
.x29_c01057{left:482.400000px;}
.xa_c01057{left:493.200000px;}
.x41_c01057{left:514.080000px;}
.xb_c01057{left:534.960000px;}
.x18_c01057{left:557.280000px;}
.x2a_c01057{left:558.720000px;}
.x3c_c01057{left:578.880000px;}
.xc_c01057{left:590.400000px;}
.x37_c01057{left:600.480000px;}
.x30_c01057{left:601.920000px;}
.x2b_c01057{left:612.000000px;}
.x26_c01057{left:613.440000px;}
.x15_c01057{left:622.800000px;}
.x32_c01057{left:632.880000px;}
.xd_c01057{left:634.320000px;}
.x27_c01057{left:644.400000px;}
.x2c_c01057{left:645.840000px;}
.x47_c01057{left:655.200000px;}
.x19_c01057{left:665.280000px;}
.x46_c01057{left:666.720000px;}
.x1_c01057{left:673.200000px;}
.xe_c01057{left:688.320000px;}
.x38_c01057{left:698.400000px;}
.x2d_c01057{left:709.200000px;}
.x21_c01057{left:710.640000px;}
.x16_c01057{left:721.440000px;}
.x48_c01057{left:730.800000px;}
.x3d_c01057{left:740.880000px;}
.x42_c01057{left:742.320000px;}
.x49_c01057{left:751.680000px;}
.x3f_c01057{left:762.480000px;}
@media print{
.v3_c01057{vertical-align:-7.680000pt;}
.v0_c01057{vertical-align:0.000000pt;}
.v2_c01057{vertical-align:2.560000pt;}
.v1_c01057{vertical-align:5.120000pt;}
.ls1_c01057{letter-spacing:0.000000pt;}
.ls0_c01057{letter-spacing:111.383467pt;}
.ws4_c01057{word-spacing:0.000000pt;}
.ws2_c01057{word-spacing:23.401173pt;}
.ws1_c01057{word-spacing:24.568737pt;}
.ws0_c01057{word-spacing:39.555200pt;}
.ws3_c01057{word-spacing:67.555200pt;}
._0_c01057{width:59.493343pt;}
.fs4_c01057{font-size:15.360000pt;}
.fsf_c01057{font-size:30.720000pt;}
.fs7_c01057{font-size:33.280000pt;}
.fs10_c01057{font-size:35.840000pt;}
.fs6_c01057{font-size:38.400000pt;}
.fs8_c01057{font-size:40.960000pt;}
.fs1_c01057{font-size:43.520000pt;}
.fs2_c01057{font-size:46.080000pt;}
.fs5_c01057{font-size:48.640000pt;}
.fs3_c01057{font-size:51.200000pt;}
.fs9_c01057{font-size:53.760000pt;}
.fsa_c01057{font-size:56.320000pt;}
.fsc_c01057{font-size:58.880000pt;}
.fsb_c01057{font-size:61.440000pt;}
.fs0_c01057{font-size:64.000000pt;}
.fse_c01057{font-size:66.560000pt;}
.fsd_c01057{font-size:69.120000pt;}
.y0_c01057{bottom:0.000000pt;}
.ya6_c01057{bottom:37.760000pt;}
.ya3_c01057{bottom:38.400000pt;}
.ya4_c01057{bottom:39.040000pt;}
.ya7_c01057{bottom:39.680000pt;}
.ya5_c01057{bottom:40.320000pt;}
.ya2_c01057{bottom:40.960000pt;}
.y9f_c01057{bottom:75.520000pt;}
.ya1_c01057{bottom:76.160000pt;}
.ya0_c01057{bottom:77.440000pt;}
.y9d_c01057{bottom:79.360000pt;}
.y9e_c01057{bottom:80.640000pt;}
.y99_c01057{bottom:113.280000pt;}
.y9b_c01057{bottom:114.560000pt;}
.y9c_c01057{bottom:115.200000pt;}
.y97_c01057{bottom:115.840000pt;}
.y9a_c01057{bottom:116.480000pt;}
.y98_c01057{bottom:118.400000pt;}
.y95_c01057{bottom:152.320000pt;}
.y92_c01057{bottom:152.960000pt;}
.y94_c01057{bottom:153.600000pt;}
.y96_c01057{bottom:154.240000pt;}
.y91_c01057{bottom:154.880000pt;}
.y93_c01057{bottom:155.520000pt;}
.y8e_c01057{bottom:189.440000pt;}
.y90_c01057{bottom:190.720000pt;}
.y8f_c01057{bottom:191.360000pt;}
.y8b_c01057{bottom:192.640000pt;}
.y8d_c01057{bottom:193.280000pt;}
.y8c_c01057{bottom:193.920000pt;}
.y87_c01057{bottom:228.480000pt;}
.y88_c01057{bottom:229.120000pt;}
.y8a_c01057{bottom:229.760000pt;}
.y89_c01057{bottom:230.400000pt;}
.y86_c01057{bottom:231.040000pt;}
.y83_c01057{bottom:266.240000pt;}
.y85_c01057{bottom:267.520000pt;}
.y84_c01057{bottom:268.160000pt;}
.y81_c01057{bottom:268.800000pt;}
.y82_c01057{bottom:269.440000pt;}
.y7f_c01057{bottom:303.360000pt;}
.y7d_c01057{bottom:305.920000pt;}
.y80_c01057{bottom:307.200000pt;}
.y7e_c01057{bottom:307.840000pt;}
.y7a_c01057{bottom:343.040000pt;}
.y7c_c01057{bottom:343.680000pt;}
.y7b_c01057{bottom:344.320000pt;}
.y78_c01057{bottom:344.960000pt;}
.y79_c01057{bottom:346.240000pt;}
.y75_c01057{bottom:380.800000pt;}
.y76_c01057{bottom:381.440000pt;}
.y73_c01057{bottom:382.080000pt;}
.y77_c01057{bottom:383.360000pt;}
.y74_c01057{bottom:384.640000pt;}
.y70_c01057{bottom:417.920000pt;}
.y71_c01057{bottom:419.200000pt;}
.y72_c01057{bottom:420.480000pt;}
.y6d_c01057{bottom:421.120000pt;}
.y6f_c01057{bottom:422.400000pt;}
.y6e_c01057{bottom:423.040000pt;}
.y6a_c01057{bottom:457.600000pt;}
.y6c_c01057{bottom:458.880000pt;}
.y68_c01057{bottom:459.520000pt;}
.y6b_c01057{bottom:460.800000pt;}
.y69_c01057{bottom:461.440000pt;}
.y66_c01057{bottom:497.280000pt;}
.y67_c01057{bottom:498.560000pt;}
.y65_c01057{bottom:499.840000pt;}
.y61_c01057{bottom:553.600000pt;}
.y60_c01057{bottom:554.240000pt;}
.y62_c01057{bottom:554.880000pt;}
.y5f_c01057{bottom:556.160000pt;}
.y63_c01057{bottom:556.800000pt;}
.y64_c01057{bottom:557.440000pt;}
.y59_c01057{bottom:572.160000pt;}
.y5b_c01057{bottom:572.800000pt;}
.y5a_c01057{bottom:573.440000pt;}
.y5e_c01057{bottom:574.080000pt;}
.y5c_c01057{bottom:574.720000pt;}
.y5d_c01057{bottom:575.360000pt;}
.y54_c01057{bottom:592.000000pt;}
.y56_c01057{bottom:592.640000pt;}
.y57_c01057{bottom:593.280000pt;}
.y55_c01057{bottom:593.920000pt;}
.y58_c01057{bottom:595.200000pt;}
.y50_c01057{bottom:610.560000pt;}
.y52_c01057{bottom:611.200000pt;}
.y51_c01057{bottom:611.840000pt;}
.y53_c01057{bottom:612.480000pt;}
.y4a_c01057{bottom:629.760000pt;}
.y4e_c01057{bottom:630.400000pt;}
.y4d_c01057{bottom:631.040000pt;}
.y4c_c01057{bottom:631.680000pt;}
.y4b_c01057{bottom:632.320000pt;}
.y4f_c01057{bottom:632.960000pt;}
.y47_c01057{bottom:648.960000pt;}
.y48_c01057{bottom:649.600000pt;}
.y45_c01057{bottom:650.240000pt;}
.y49_c01057{bottom:650.880000pt;}
.y46_c01057{bottom:651.520000pt;}
.y43_c01057{bottom:668.160000pt;}
.y41_c01057{bottom:668.800000pt;}
.y44_c01057{bottom:669.440000pt;}
.y42_c01057{bottom:670.080000pt;}
.y3d_c01057{bottom:686.720000pt;}
.y3e_c01057{bottom:687.360000pt;}
.y3f_c01057{bottom:688.000000pt;}
.y3b_c01057{bottom:688.640000pt;}
.y3c_c01057{bottom:689.280000pt;}
.y40_c01057{bottom:689.920000pt;}
.y34_c01057{bottom:705.920000pt;}
.y36_c01057{bottom:706.560000pt;}
.y3a_c01057{bottom:707.200000pt;}
.y35_c01057{bottom:707.840000pt;}
.y37_c01057{bottom:708.480000pt;}
.y38_c01057{bottom:709.120000pt;}
.y39_c01057{bottom:709.760000pt;}
.y2f_c01057{bottom:724.480000pt;}
.y31_c01057{bottom:725.760000pt;}
.y30_c01057{bottom:726.400000pt;}
.y33_c01057{bottom:727.680000pt;}
.y32_c01057{bottom:728.320000pt;}
.y2b_c01057{bottom:743.680000pt;}
.y2c_c01057{bottom:744.320000pt;}
.y2d_c01057{bottom:744.960000pt;}
.y2e_c01057{bottom:745.600000pt;}
.y25_c01057{bottom:761.600000pt;}
.y26_c01057{bottom:762.880000pt;}
.y27_c01057{bottom:763.520000pt;}
.y28_c01057{bottom:764.160000pt;}
.y2a_c01057{bottom:764.800000pt;}
.y29_c01057{bottom:766.720000pt;}
.y20_c01057{bottom:781.440000pt;}
.y23_c01057{bottom:782.080000pt;}
.y22_c01057{bottom:782.720000pt;}
.y21_c01057{bottom:783.360000pt;}
.y1f_c01057{bottom:784.000000pt;}
.y24_c01057{bottom:784.640000pt;}
.y1b_c01057{bottom:801.280000pt;}
.y1c_c01057{bottom:801.920000pt;}
.y1d_c01057{bottom:802.560000pt;}
.y1a_c01057{bottom:803.200000pt;}
.y1e_c01057{bottom:804.480000pt;}
.y15_c01057{bottom:830.080000pt;}
.y17_c01057{bottom:830.720000pt;}
.y16_c01057{bottom:831.360000pt;}
.y18_c01057{bottom:832.000000pt;}
.y19_c01057{bottom:832.640000pt;}
.y10_c01057{bottom:867.840000pt;}
.y12_c01057{bottom:869.120000pt;}
.yf_c01057{bottom:869.760000pt;}
.y11_c01057{bottom:871.040000pt;}
.y14_c01057{bottom:871.680000pt;}
.y13_c01057{bottom:872.960000pt;}
.ya_c01057{bottom:896.000000pt;}
.yc_c01057{bottom:897.920000pt;}
.yb_c01057{bottom:898.560000pt;}
.y9_c01057{bottom:899.200000pt;}
.yd_c01057{bottom:899.840000pt;}
.ye_c01057{bottom:900.480000pt;}
.y3_c01057{bottom:925.440000pt;}
.y2_c01057{bottom:926.080000pt;}
.y8_c01057{bottom:927.360000pt;}
.y4_c01057{bottom:928.000000pt;}
.y5_c01057{bottom:928.640000pt;}
.y6_c01057{bottom:929.280000pt;}
.y7_c01057{bottom:931.200000pt;}
.y1_c01057{bottom:988.160000pt;}
.h6_c01057{height:13.822500pt;}
.h15_c01057{height:27.645000pt;}
.h9_c01057{height:29.948750pt;}
.h16_c01057{height:32.252500pt;}
.h8_c01057{height:34.556250pt;}
.ha_c01057{height:36.860000pt;}
.h3_c01057{height:39.163750pt;}
.h4_c01057{height:41.467500pt;}
.h7_c01057{height:43.771250pt;}
.h12_c01057{height:45.306250pt;}
.h5_c01057{height:46.075000pt;}
.hb_c01057{height:48.378750pt;}
.h11_c01057{height:48.635000pt;}
.h10_c01057{height:48.891250pt;}
.hc_c01057{height:50.682500pt;}
.hf_c01057{height:51.195000pt;}
.he_c01057{height:52.986250pt;}
.hd_c01057{height:55.290000pt;}
.h2_c01057{height:57.593750pt;}
.h14_c01057{height:59.897500pt;}
.h13_c01057{height:62.201250pt;}
.h0_c01057{height:1025.280000pt;}
.h1_c01057{height:1025.333333pt;}
.w0_c01057{width:725.760000pt;}
.w1_c01057{width:726.000000pt;}
.x0_c01057{left:0.000000pt;}
.x2_c01057{left:92.800000pt;}
.x22_c01057{left:102.400000pt;}
.x3_c01057{left:110.080000pt;}
.xf_c01057{left:111.360000pt;}
.x1a_c01057{left:120.960000pt;}
.x23_c01057{left:129.920000pt;}
.x34_c01057{left:131.200000pt;}
.x10_c01057{left:140.160000pt;}
.x3b_c01057{left:158.720000pt;}
.x39_c01057{left:160.000000pt;}
.x31_c01057{left:168.320000pt;}
.x24_c01057{left:169.600000pt;}
.x11_c01057{left:178.560000pt;}
.x1b_c01057{left:188.160000pt;}
.x12_c01057{left:197.120000pt;}
.x4_c01057{left:205.440000pt;}
.x3a_c01057{left:224.640000pt;}
.x1c_c01057{left:226.560000pt;}
.x13_c01057{left:234.880000pt;}
.x43_c01057{left:236.160000pt;}
.x3e_c01057{left:255.360000pt;}
.x44_c01057{left:263.680000pt;}
.x5_c01057{left:284.160000pt;}
.x36_c01057{left:292.480000pt;}
.x1d_c01057{left:293.760000pt;}
.x6_c01057{left:311.680000pt;}
.x1e_c01057{left:322.560000pt;}
.x28_c01057{left:331.520000pt;}
.x2e_c01057{left:341.120000pt;}
.x7_c01057{left:342.400000pt;}
.x40_c01057{left:350.720000pt;}
.x35_c01057{left:361.600000pt;}
.x2f_c01057{left:369.920000pt;}
.x25_c01057{left:371.200000pt;}
.x8_c01057{left:380.160000pt;}
.x33_c01057{left:381.440000pt;}
.x14_c01057{left:387.840000pt;}
.x1f_c01057{left:390.400000pt;}
.x45_c01057{left:399.360000pt;}
.x17_c01057{left:408.320000pt;}
.x9_c01057{left:417.920000pt;}
.x20_c01057{left:427.520000pt;}
.x29_c01057{left:428.800000pt;}
.xa_c01057{left:438.400000pt;}
.x41_c01057{left:456.960000pt;}
.xb_c01057{left:475.520000pt;}
.x18_c01057{left:495.360000pt;}
.x2a_c01057{left:496.640000pt;}
.x3c_c01057{left:514.560000pt;}
.xc_c01057{left:524.800000pt;}
.x37_c01057{left:533.760000pt;}
.x30_c01057{left:535.040000pt;}
.x2b_c01057{left:544.000000pt;}
.x26_c01057{left:545.280000pt;}
.x15_c01057{left:553.600000pt;}
.x32_c01057{left:562.560000pt;}
.xd_c01057{left:563.840000pt;}
.x27_c01057{left:572.800000pt;}
.x2c_c01057{left:574.080000pt;}
.x47_c01057{left:582.400000pt;}
.x19_c01057{left:591.360000pt;}
.x46_c01057{left:592.640000pt;}
.x1_c01057{left:598.400000pt;}
.xe_c01057{left:611.840000pt;}
.x38_c01057{left:620.800000pt;}
.x2d_c01057{left:630.400000pt;}
.x21_c01057{left:631.680000pt;}
.x16_c01057{left:641.280000pt;}
.x48_c01057{left:649.600000pt;}
.x3d_c01057{left:658.560000pt;}
.x42_c01057{left:659.840000pt;}
.x49_c01057{left:668.160000pt;}
.x3f_c01057{left:677.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f9df49101df12c300d0b5b86.woff2')format("woff");}.ff1_c01058{font-family:ff1_c01058;line-height:1.109863;font-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_c01058{transform:matrix(0.174100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174100,0.000000,0.000000,0.250000,0,0);}
.m46_c01058{transform:matrix(0.175550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175550,0.000000,0.000000,0.250000,0,0);}
.m1c_c01058{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m45_c01058{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);}
.m3f_c01058{transform:matrix(0.243125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243125,0.000000,0.000000,0.250000,0,0);}
.m42_c01058{transform:matrix(0.243300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243300,0.000000,0.000000,0.250000,0,0);}
.m21_c01058{transform:matrix(0.244825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244825,0.000000,0.000000,0.250000,0,0);}
.m37_c01058{transform:matrix(0.245100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245100,0.000000,0.000000,0.250000,0,0);}
.m43_c01058{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);}
.m26_c01058{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_c01058{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m14_c01058{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_c01058{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m17_c01058{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_c01058{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m24_c01058{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);}
.m2a_c01058{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);}
.m40_c01058{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);}
.m33_c01058{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m32_c01058{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m39_c01058{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mc_c01058{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m3_c01058{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m7_c01058{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);}
.m23_c01058{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m8_c01058{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m5_c01058{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.ma_c01058{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m15_c01058{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m19_c01058{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m11_c01058{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4_c01058{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01058{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m29_c01058{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m2_c01058{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m16_c01058{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m22_c01058{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mb_c01058{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01058{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1_c01058{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m13_c01058{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m12_c01058{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);}
.m2c_c01058{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01058{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_c01058{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01058{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.md_c01058{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);}
.m3e_c01058{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m34_c01058{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);}
.me_c01058{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);}
.m0_c01058{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01058{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);}
.m3a_c01058{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);}
.m20_c01058{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m6_c01058{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m31_c01058{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);}
.m2b_c01058{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m41_c01058{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m38_c01058{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01058{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01058{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01058{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01058{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);}
.m28_c01058{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);}
.m35_c01058{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m18_c01058{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);}
.m36_c01058{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);}
.mf_c01058{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m30_c01058{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01058{transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);}
.m44_c01058{transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);}
.v0_c01058{vertical-align:0.000000px;}
.v1_c01058{vertical-align:17.280000px;}
.ls0_c01058{letter-spacing:0.000000px;}
.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:-26.744880px;}
.ws2_c01058{word-spacing:0.000000px;}
.ws1_c01058{word-spacing:9.210378px;}
.fc0_c01058{color:transparent;}
.fsa_c01058{font-size:37.440000px;}
.fsb_c01058{font-size:40.320000px;}
.fse_c01058{font-size:46.080000px;}
.fsd_c01058{font-size:48.960000px;}
.fs2_c01058{font-size:51.840000px;}
.fs6_c01058{font-size:54.720000px;}
.fs9_c01058{font-size:57.600000px;}
.fs4_c01058{font-size:60.480000px;}
.fsc_c01058{font-size:63.360000px;}
.fs1_c01058{font-size:66.240000px;}
.fs5_c01058{font-size:69.120000px;}
.fs0_c01058{font-size:72.000000px;}
.fs7_c01058{font-size:74.880000px;}
.fs3_c01058{font-size:77.760000px;}
.fsf_c01058{font-size:86.400000px;}
.fs8_c01058{font-size:103.680000px;}
.y0_c01058{bottom:0.000000px;}
.y71_c01058{bottom:49.680000px;}
.y70_c01058{bottom:54.000000px;}
.y6f_c01058{bottom:79.920000px;}
.y6e_c01058{bottom:82.080000px;}
.y78_c01058{bottom:82.800000px;}
.y6d_c01058{bottom:83.520000px;}
.y79_c01058{bottom:84.240000px;}
.y6c_c01058{bottom:84.960000px;}
.y69_c01058{bottom:124.560000px;}
.y77_c01058{bottom:125.280000px;}
.y6b_c01058{bottom:126.000000px;}
.y68_c01058{bottom:126.720000px;}
.y6a_c01058{bottom:127.440000px;}
.y65_c01058{bottom:159.120000px;}
.y63_c01058{bottom:166.320000px;}
.y62_c01058{bottom:167.040000px;}
.y66_c01058{bottom:168.480000px;}
.y76_c01058{bottom:169.200000px;}
.y61_c01058{bottom:169.920000px;}
.y64_c01058{bottom:170.640000px;}
.y67_c01058{bottom:171.360000px;}
.y5e_c01058{bottom:210.240000px;}
.y5f_c01058{bottom:210.960000px;}
.y60_c01058{bottom:211.680000px;}
.y5d_c01058{bottom:212.400000px;}
.y75_c01058{bottom:213.840000px;}
.y5b_c01058{bottom:253.440000px;}
.y5a_c01058{bottom:254.160000px;}
.y5c_c01058{bottom:254.880000px;}
.y59_c01058{bottom:255.600000px;}
.y74_c01058{bottom:257.040000px;}
.y58_c01058{bottom:296.640000px;}
.y56_c01058{bottom:297.360000px;}
.y57_c01058{bottom:299.520000px;}
.y52_c01058{bottom:328.320000px;}
.y54_c01058{bottom:329.760000px;}
.y55_c01058{bottom:330.480000px;}
.y51_c01058{bottom:331.200000px;}
.y53_c01058{bottom:331.920000px;}
.y73_c01058{bottom:332.640000px;}
.y4f_c01058{bottom:370.800000px;}
.y50_c01058{bottom:371.520000px;}
.y4e_c01058{bottom:375.120000px;}
.y4c_c01058{bottom:403.200000px;}
.y4a_c01058{bottom:405.360000px;}
.y49_c01058{bottom:406.080000px;}
.y4b_c01058{bottom:406.800000px;}
.y4d_c01058{bottom:407.520000px;}
.y72_c01058{bottom:408.240000px;}
.y45_c01058{bottom:445.680000px;}
.y44_c01058{bottom:447.840000px;}
.y46_c01058{bottom:448.560000px;}
.y48_c01058{bottom:450.720000px;}
.y47_c01058{bottom:451.440000px;}
.y43_c01058{bottom:488.160000px;}
.y42_c01058{bottom:492.480000px;}
.y41_c01058{bottom:493.200000px;}
.y3d_c01058{bottom:521.280000px;}
.y40_c01058{bottom:522.000000px;}
.y3c_c01058{bottom:522.720000px;}
.y3f_c01058{bottom:523.440000px;}
.y3e_c01058{bottom:524.880000px;}
.y2e_c01058{bottom:605.520000px;}
.y2d_c01058{bottom:607.680000px;}
.y3a_c01058{bottom:608.400000px;}
.y39_c01058{bottom:609.120000px;}
.y38_c01058{bottom:610.560000px;}
.y3b_c01058{bottom:611.280000px;}
.y2c_c01058{bottom:648.720000px;}
.y2b_c01058{bottom:650.880000px;}
.y37_c01058{bottom:651.600000px;}
.y36_c01058{bottom:653.040000px;}
.y2a_c01058{bottom:691.200000px;}
.y29_c01058{bottom:694.080000px;}
.y35_c01058{bottom:694.800000px;}
.y34_c01058{bottom:696.240000px;}
.y28_c01058{bottom:735.840000px;}
.y27_c01058{bottom:736.560000px;}
.y32_c01058{bottom:737.280000px;}
.y33_c01058{bottom:738.000000px;}
.y31_c01058{bottom:738.720000px;}
.y26_c01058{bottom:778.320000px;}
.y25_c01058{bottom:780.480000px;}
.y30_c01058{bottom:781.200000px;}
.y2f_c01058{bottom:782.640000px;}
.y1f_c01058{bottom:820.800000px;}
.y1e_c01058{bottom:822.240000px;}
.y21_c01058{bottom:822.960000px;}
.y20_c01058{bottom:824.400000px;}
.y22_c01058{bottom:825.120000px;}
.y23_c01058{bottom:825.840000px;}
.y24_c01058{bottom:826.560000px;}
.y1a_c01058{bottom:863.280000px;}
.y19_c01058{bottom:864.720000px;}
.y1c_c01058{bottom:866.160000px;}
.y1d_c01058{bottom:866.880000px;}
.y1b_c01058{bottom:868.320000px;}
.y17_c01058{bottom:907.200000px;}
.y14_c01058{bottom:907.920000px;}
.y15_c01058{bottom:910.080000px;}
.y16_c01058{bottom:910.800000px;}
.y18_c01058{bottom:912.960000px;}
.y11_c01058{bottom:943.920000px;}
.ye_c01058{bottom:950.400000px;}
.yc_c01058{bottom:951.120000px;}
.yf_c01058{bottom:951.840000px;}
.y12_c01058{bottom:952.560000px;}
.yd_c01058{bottom:954.000000px;}
.y10_c01058{bottom:954.720000px;}
.y13_c01058{bottom:955.440000px;}
.y7_c01058{bottom:992.880000px;}
.y5_c01058{bottom:994.320000px;}
.ya_c01058{bottom:995.760000px;}
.y6_c01058{bottom:996.480000px;}
.yb_c01058{bottom:997.200000px;}
.y8_c01058{bottom:997.920000px;}
.y4_c01058{bottom:1036.080000px;}
.y2_c01058{bottom:1037.520000px;}
.y9_c01058{bottom:1038.960000px;}
.y3_c01058{bottom:1039.680000px;}
.y1_c01058{bottom:1103.760000px;}
.hc_c01058{height:33.692344px;}
.hd_c01058{height:36.284062px;}
.h10_c01058{height:41.467500px;}
.hf_c01058{height:44.059219px;}
.h4_c01058{height:46.650937px;}
.h8_c01058{height:49.242656px;}
.hb_c01058{height:51.834375px;}
.h6_c01058{height:54.426094px;}
.he_c01058{height:57.017812px;}
.h3_c01058{height:59.609531px;}
.h7_c01058{height:62.201250px;}
.h2_c01058{height:64.792969px;}
.h9_c01058{height:67.384687px;}
.h5_c01058{height:69.976406px;}
.h11_c01058{height:77.751563px;}
.ha_c01058{height:93.301875px;}
.h0_c01058{height:1157.760000px;}
.h1_c01058{height:1158.000000px;}
.w1_c01058{width:822.000000px;}
.w0_c01058{width:822.240000px;}
.x0_c01058{left:0.000000px;}
.x27_c01058{left:103.680000px;}
.x2_c01058{left:105.120000px;}
.x1e_c01058{left:177.840000px;}
.x3_c01058{left:179.280000px;}
.x12_c01058{left:180.720000px;}
.x31_c01058{left:200.880000px;}
.x4_c01058{left:222.480000px;}
.x5_c01058{left:223.920000px;}
.x23_c01058{left:231.840000px;}
.x28_c01058{left:233.280000px;}
.x2a_c01058{left:264.240000px;}
.xf_c01058{left:265.680000px;}
.x24_c01058{left:276.480000px;}
.x29_c01058{left:287.280000px;}
.x1f_c01058{left:306.720000px;}
.x2b_c01058{left:308.880000px;}
.x25_c01058{left:318.960000px;}
.x16_c01058{left:320.400000px;}
.xa_c01058{left:331.200000px;}
.x19_c01058{left:352.080000px;}
.x17_c01058{left:362.880000px;}
.x13_c01058{left:373.680000px;}
.x30_c01058{left:385.200000px;}
.x6_c01058{left:406.080000px;}
.xb_c01058{left:416.880000px;}
.x2d_c01058{left:427.680000px;}
.x2f_c01058{left:438.480000px;}
.x20_c01058{left:449.280000px;}
.xc_c01058{left:470.160000px;}
.x14_c01058{left:492.480000px;}
.x2e_c01058{left:503.280000px;}
.x18_c01058{left:513.360000px;}
.x2c_c01058{left:524.880000px;}
.x15_c01058{left:535.680000px;}
.x7_c01058{left:580.320000px;}
.x21_c01058{left:590.400000px;}
.x1a_c01058{left:612.000000px;}
.xd_c01058{left:632.880000px;}
.x8_c01058{left:634.320000px;}
.x22_c01058{left:666.000000px;}
.x10_c01058{left:667.440000px;}
.x1d_c01058{left:698.400000px;}
.x11_c01058{left:699.840000px;}
.x1_c01058{left:711.360000px;}
.x26_c01058{left:730.800000px;}
.xe_c01058{left:732.240000px;}
.x1c_c01058{left:741.600000px;}
.x9_c01058{left:743.760000px;}
.x1b_c01058{left:762.480000px;}
@media print{
.v0_c01058{vertical-align:0.000000pt;}
.v1_c01058{vertical-align:15.360000pt;}
.ls0_c01058{letter-spacing:0.000000pt;}
.ws0_c01058{word-spacing:-23.773227pt;}
.ws2_c01058{word-spacing:0.000000pt;}
.ws1_c01058{word-spacing:8.187003pt;}
.fsa_c01058{font-size:33.280000pt;}
.fsb_c01058{font-size:35.840000pt;}
.fse_c01058{font-size:40.960000pt;}
.fsd_c01058{font-size:43.520000pt;}
.fs2_c01058{font-size:46.080000pt;}
.fs6_c01058{font-size:48.640000pt;}
.fs9_c01058{font-size:51.200000pt;}
.fs4_c01058{font-size:53.760000pt;}
.fsc_c01058{font-size:56.320000pt;}
.fs1_c01058{font-size:58.880000pt;}
.fs5_c01058{font-size:61.440000pt;}
.fs0_c01058{font-size:64.000000pt;}
.fs7_c01058{font-size:66.560000pt;}
.fs3_c01058{font-size:69.120000pt;}
.fsf_c01058{font-size:76.800000pt;}
.fs8_c01058{font-size:92.160000pt;}
.y0_c01058{bottom:0.000000pt;}
.y71_c01058{bottom:44.160000pt;}
.y70_c01058{bottom:48.000000pt;}
.y6f_c01058{bottom:71.040000pt;}
.y6e_c01058{bottom:72.960000pt;}
.y78_c01058{bottom:73.600000pt;}
.y6d_c01058{bottom:74.240000pt;}
.y79_c01058{bottom:74.880000pt;}
.y6c_c01058{bottom:75.520000pt;}
.y69_c01058{bottom:110.720000pt;}
.y77_c01058{bottom:111.360000pt;}
.y6b_c01058{bottom:112.000000pt;}
.y68_c01058{bottom:112.640000pt;}
.y6a_c01058{bottom:113.280000pt;}
.y65_c01058{bottom:141.440000pt;}
.y63_c01058{bottom:147.840000pt;}
.y62_c01058{bottom:148.480000pt;}
.y66_c01058{bottom:149.760000pt;}
.y76_c01058{bottom:150.400000pt;}
.y61_c01058{bottom:151.040000pt;}
.y64_c01058{bottom:151.680000pt;}
.y67_c01058{bottom:152.320000pt;}
.y5e_c01058{bottom:186.880000pt;}
.y5f_c01058{bottom:187.520000pt;}
.y60_c01058{bottom:188.160000pt;}
.y5d_c01058{bottom:188.800000pt;}
.y75_c01058{bottom:190.080000pt;}
.y5b_c01058{bottom:225.280000pt;}
.y5a_c01058{bottom:225.920000pt;}
.y5c_c01058{bottom:226.560000pt;}
.y59_c01058{bottom:227.200000pt;}
.y74_c01058{bottom:228.480000pt;}
.y58_c01058{bottom:263.680000pt;}
.y56_c01058{bottom:264.320000pt;}
.y57_c01058{bottom:266.240000pt;}
.y52_c01058{bottom:291.840000pt;}
.y54_c01058{bottom:293.120000pt;}
.y55_c01058{bottom:293.760000pt;}
.y51_c01058{bottom:294.400000pt;}
.y53_c01058{bottom:295.040000pt;}
.y73_c01058{bottom:295.680000pt;}
.y4f_c01058{bottom:329.600000pt;}
.y50_c01058{bottom:330.240000pt;}
.y4e_c01058{bottom:333.440000pt;}
.y4c_c01058{bottom:358.400000pt;}
.y4a_c01058{bottom:360.320000pt;}
.y49_c01058{bottom:360.960000pt;}
.y4b_c01058{bottom:361.600000pt;}
.y4d_c01058{bottom:362.240000pt;}
.y72_c01058{bottom:362.880000pt;}
.y45_c01058{bottom:396.160000pt;}
.y44_c01058{bottom:398.080000pt;}
.y46_c01058{bottom:398.720000pt;}
.y48_c01058{bottom:400.640000pt;}
.y47_c01058{bottom:401.280000pt;}
.y43_c01058{bottom:433.920000pt;}
.y42_c01058{bottom:437.760000pt;}
.y41_c01058{bottom:438.400000pt;}
.y3d_c01058{bottom:463.360000pt;}
.y40_c01058{bottom:464.000000pt;}
.y3c_c01058{bottom:464.640000pt;}
.y3f_c01058{bottom:465.280000pt;}
.y3e_c01058{bottom:466.560000pt;}
.y2e_c01058{bottom:538.240000pt;}
.y2d_c01058{bottom:540.160000pt;}
.y3a_c01058{bottom:540.800000pt;}
.y39_c01058{bottom:541.440000pt;}
.y38_c01058{bottom:542.720000pt;}
.y3b_c01058{bottom:543.360000pt;}
.y2c_c01058{bottom:576.640000pt;}
.y2b_c01058{bottom:578.560000pt;}
.y37_c01058{bottom:579.200000pt;}
.y36_c01058{bottom:580.480000pt;}
.y2a_c01058{bottom:614.400000pt;}
.y29_c01058{bottom:616.960000pt;}
.y35_c01058{bottom:617.600000pt;}
.y34_c01058{bottom:618.880000pt;}
.y28_c01058{bottom:654.080000pt;}
.y27_c01058{bottom:654.720000pt;}
.y32_c01058{bottom:655.360000pt;}
.y33_c01058{bottom:656.000000pt;}
.y31_c01058{bottom:656.640000pt;}
.y26_c01058{bottom:691.840000pt;}
.y25_c01058{bottom:693.760000pt;}
.y30_c01058{bottom:694.400000pt;}
.y2f_c01058{bottom:695.680000pt;}
.y1f_c01058{bottom:729.600000pt;}
.y1e_c01058{bottom:730.880000pt;}
.y21_c01058{bottom:731.520000pt;}
.y20_c01058{bottom:732.800000pt;}
.y22_c01058{bottom:733.440000pt;}
.y23_c01058{bottom:734.080000pt;}
.y24_c01058{bottom:734.720000pt;}
.y1a_c01058{bottom:767.360000pt;}
.y19_c01058{bottom:768.640000pt;}
.y1c_c01058{bottom:769.920000pt;}
.y1d_c01058{bottom:770.560000pt;}
.y1b_c01058{bottom:771.840000pt;}
.y17_c01058{bottom:806.400000pt;}
.y14_c01058{bottom:807.040000pt;}
.y15_c01058{bottom:808.960000pt;}
.y16_c01058{bottom:809.600000pt;}
.y18_c01058{bottom:811.520000pt;}
.y11_c01058{bottom:839.040000pt;}
.ye_c01058{bottom:844.800000pt;}
.yc_c01058{bottom:845.440000pt;}
.yf_c01058{bottom:846.080000pt;}
.y12_c01058{bottom:846.720000pt;}
.yd_c01058{bottom:848.000000pt;}
.y10_c01058{bottom:848.640000pt;}
.y13_c01058{bottom:849.280000pt;}
.y7_c01058{bottom:882.560000pt;}
.y5_c01058{bottom:883.840000pt;}
.ya_c01058{bottom:885.120000pt;}
.y6_c01058{bottom:885.760000pt;}
.yb_c01058{bottom:886.400000pt;}
.y8_c01058{bottom:887.040000pt;}
.y4_c01058{bottom:920.960000pt;}
.y2_c01058{bottom:922.240000pt;}
.y9_c01058{bottom:923.520000pt;}
.y3_c01058{bottom:924.160000pt;}
.y1_c01058{bottom:981.120000pt;}
.hc_c01058{height:29.948750pt;}
.hd_c01058{height:32.252500pt;}
.h10_c01058{height:36.860000pt;}
.hf_c01058{height:39.163750pt;}
.h4_c01058{height:41.467500pt;}
.h8_c01058{height:43.771250pt;}
.hb_c01058{height:46.075000pt;}
.h6_c01058{height:48.378750pt;}
.he_c01058{height:50.682500pt;}
.h3_c01058{height:52.986250pt;}
.h7_c01058{height:55.290000pt;}
.h2_c01058{height:57.593750pt;}
.h9_c01058{height:59.897500pt;}
.h5_c01058{height:62.201250pt;}
.h11_c01058{height:69.112500pt;}
.ha_c01058{height:82.935000pt;}
.h0_c01058{height:1029.120000pt;}
.h1_c01058{height:1029.333333pt;}
.w1_c01058{width:730.666667pt;}
.w0_c01058{width:730.880000pt;}
.x0_c01058{left:0.000000pt;}
.x27_c01058{left:92.160000pt;}
.x2_c01058{left:93.440000pt;}
.x1e_c01058{left:158.080000pt;}
.x3_c01058{left:159.360000pt;}
.x12_c01058{left:160.640000pt;}
.x31_c01058{left:178.560000pt;}
.x4_c01058{left:197.760000pt;}
.x5_c01058{left:199.040000pt;}
.x23_c01058{left:206.080000pt;}
.x28_c01058{left:207.360000pt;}
.x2a_c01058{left:234.880000pt;}
.xf_c01058{left:236.160000pt;}
.x24_c01058{left:245.760000pt;}
.x29_c01058{left:255.360000pt;}
.x1f_c01058{left:272.640000pt;}
.x2b_c01058{left:274.560000pt;}
.x25_c01058{left:283.520000pt;}
.x16_c01058{left:284.800000pt;}
.xa_c01058{left:294.400000pt;}
.x19_c01058{left:312.960000pt;}
.x17_c01058{left:322.560000pt;}
.x13_c01058{left:332.160000pt;}
.x30_c01058{left:342.400000pt;}
.x6_c01058{left:360.960000pt;}
.xb_c01058{left:370.560000pt;}
.x2d_c01058{left:380.160000pt;}
.x2f_c01058{left:389.760000pt;}
.x20_c01058{left:399.360000pt;}
.xc_c01058{left:417.920000pt;}
.x14_c01058{left:437.760000pt;}
.x2e_c01058{left:447.360000pt;}
.x18_c01058{left:456.320000pt;}
.x2c_c01058{left:466.560000pt;}
.x15_c01058{left:476.160000pt;}
.x7_c01058{left:515.840000pt;}
.x21_c01058{left:524.800000pt;}
.x1a_c01058{left:544.000000pt;}
.xd_c01058{left:562.560000pt;}
.x8_c01058{left:563.840000pt;}
.x22_c01058{left:592.000000pt;}
.x10_c01058{left:593.280000pt;}
.x1d_c01058{left:620.800000pt;}
.x11_c01058{left:622.080000pt;}
.x1_c01058{left:632.320000pt;}
.x26_c01058{left:649.600000pt;}
.xe_c01058{left:650.880000pt;}
.x1c_c01058{left:659.200000pt;}
.x9_c01058{left:661.120000pt;}
.x1b_c01058{left:677.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_910df985b2466484744a9074.woff2')format("woff");}.ff1_c01059{font-family:ff1_c01059;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5f_c01059{transform:matrix(0.158875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158875,0.000000,0.000000,0.250000,0,0);}
.m5b_c01059{transform:matrix(0.176125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176125,0.000000,0.000000,0.250000,0,0);}
.m4f_c01059{transform:matrix(0.210875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210875,0.000000,0.000000,0.250000,0,0);}
.m42_c01059{transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);}
.m59_c01059{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01059{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m12_c01059{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);}
.m13_c01059{transform:matrix(0.232850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232850,0.000000,0.000000,0.250000,0,0);}
.m1b_c01059{transform:matrix(0.233575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233575,0.000000,0.000000,0.250000,0,0);}
.m8_c01059{transform:matrix(0.237675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237675,0.000000,0.000000,0.250000,0,0);}
.m47_c01059{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m60_c01059{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m5d_c01059{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m48_c01059{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m31_c01059{transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);}
.m34_c01059{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);}
.m2b_c01059{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_c01059{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01059{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);}
.m23_c01059{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_c01059{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m18_c01059{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m11_c01059{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m27_c01059{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);}
.m53_c01059{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m14_c01059{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m30_c01059{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m26_c01059{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m21_c01059{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);}
.m3c_c01059{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.me_c01059{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);}
.m3b_c01059{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m7_c01059{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m0_c01059{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m9_c01059{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01059{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m51_c01059{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.ma_c01059{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01059{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m45_c01059{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m36_c01059{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01059{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01059{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m15_c01059{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m54_c01059{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01059{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m40_c01059{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1_c01059{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m56_c01059{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);}
.m33_c01059{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);}
.m55_c01059{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);}
.m38_c01059{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m20_c01059{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01059{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);}
.m2_c01059{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m5c_c01059{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);}
.m61_c01059{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m39_c01059{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);}
.m50_c01059{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);}
.m22_c01059{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m37_c01059{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);}
.m32_c01059{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.mc_c01059{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);}
.m25_c01059{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m3_c01059{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m5e_c01059{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01059{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);}
.m2c_c01059{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.md_c01059{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m16_c01059{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m4_c01059{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m5a_c01059{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m6_c01059{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01059{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01059{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m57_c01059{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);}
.m17_c01059{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m24_c01059{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);}
.m3f_c01059{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01059{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);}
.m1f_c01059{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m43_c01059{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m49_c01059{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01059{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01059{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);}
.m35_c01059{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m10_c01059{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m29_c01059{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01059{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.mf_c01059{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m4d_c01059{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m28_c01059{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m46_c01059{transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);}
.m58_c01059{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01059{transform:matrix(0.762500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.762500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.762500,0.000000,0.000000,0.250000,0,0);}
.m44_c01059{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);}
.m41_c01059{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.m52_c01059{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.v0_c01059{vertical-align:0.000000px;}
.ls0_c01059{letter-spacing:0.000000px;}
.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;}
}
.ws1_c01059{word-spacing:0.000000px;}
.ws0_c01059{word-spacing:113.042471px;}
.fc0_c01059{color:transparent;}
.fs12_c01059{font-size:14.400000px;}
.fs10_c01059{font-size:17.280000px;}
.fs11_c01059{font-size:20.160000px;}
.fsf_c01059{font-size:25.920000px;}
.fsb_c01059{font-size:34.560000px;}
.fse_c01059{font-size:37.440000px;}
.fsa_c01059{font-size:43.200000px;}
.fsd_c01059{font-size:46.080000px;}
.fs9_c01059{font-size:48.960000px;}
.fs3_c01059{font-size:51.840000px;}
.fs5_c01059{font-size:54.720000px;}
.fs8_c01059{font-size:57.600000px;}
.fs2_c01059{font-size:60.480000px;}
.fs7_c01059{font-size:63.360000px;}
.fs1_c01059{font-size:66.240000px;}
.fsc_c01059{font-size:69.120000px;}
.fs0_c01059{font-size:72.000000px;}
.fs6_c01059{font-size:74.880000px;}
.fs4_c01059{font-size:77.760000px;}
.fs13_c01059{font-size:83.520000px;}
.fs14_c01059{font-size:86.400000px;}
.y0_c01059{bottom:0.000000px;}
.ya0_c01059{bottom:51.840000px;}
.y9e_c01059{bottom:54.000000px;}
.y9f_c01059{bottom:54.720000px;}
.y9b_c01059{bottom:73.440000px;}
.y9d_c01059{bottom:74.160000px;}
.y9c_c01059{bottom:76.320000px;}
.y9a_c01059{bottom:94.320000px;}
.y99_c01059{bottom:95.040000px;}
.y97_c01059{bottom:95.760000px;}
.y98_c01059{bottom:97.200000px;}
.y95_c01059{bottom:116.640000px;}
.y93_c01059{bottom:117.360000px;}
.y96_c01059{bottom:118.080000px;}
.y94_c01059{bottom:118.800000px;}
.y6a_c01059{bottom:129.600000px;}
.y67_c01059{bottom:131.040000px;}
.y68_c01059{bottom:131.760000px;}
.y69_c01059{bottom:133.200000px;}
.y92_c01059{bottom:138.240000px;}
.y91_c01059{bottom:138.960000px;}
.y90_c01059{bottom:139.680000px;}
.y8e_c01059{bottom:159.120000px;}
.y66_c01059{bottom:159.840000px;}
.y8f_c01059{bottom:161.280000px;}
.y62_c01059{bottom:162.000000px;}
.y65_c01059{bottom:162.720000px;}
.y63_c01059{bottom:163.440000px;}
.y64_c01059{bottom:164.160000px;}
.y8c_c01059{bottom:180.720000px;}
.y8d_c01059{bottom:183.600000px;}
.y61_c01059{bottom:193.680000px;}
.y5f_c01059{bottom:195.120000px;}
.y5e_c01059{bottom:195.840000px;}
.y60_c01059{bottom:196.560000px;}
.y8a_c01059{bottom:202.320000px;}
.y8b_c01059{bottom:204.480000px;}
.y5c_c01059{bottom:223.200000px;}
.y89_c01059{bottom:223.920000px;}
.y5b_c01059{bottom:224.640000px;}
.y5d_c01059{bottom:225.360000px;}
.y88_c01059{bottom:226.080000px;}
.y5a_c01059{bottom:227.520000px;}
.y59_c01059{bottom:228.960000px;}
.y87_c01059{bottom:244.800000px;}
.y86_c01059{bottom:245.520000px;}
.y85_c01059{bottom:247.680000px;}
.y58_c01059{bottom:257.040000px;}
.y55_c01059{bottom:257.760000px;}
.y57_c01059{bottom:258.480000px;}
.y56_c01059{bottom:259.200000px;}
.y53_c01059{bottom:259.920000px;}
.y54_c01059{bottom:262.080000px;}
.y84_c01059{bottom:264.960000px;}
.y82_c01059{bottom:266.400000px;}
.y83_c01059{bottom:267.120000px;}
.y81_c01059{bottom:267.840000px;}
.y80_c01059{bottom:288.000000px;}
.y7f_c01059{bottom:288.720000px;}
.y52_c01059{bottom:298.080000px;}
.y51_c01059{bottom:300.240000px;}
.y7e_c01059{bottom:315.360000px;}
.y7d_c01059{bottom:316.080000px;}
.y4f_c01059{bottom:319.680000px;}
.y50_c01059{bottom:320.400000px;}
.y4c_c01059{bottom:321.120000px;}
.y7c_c01059{bottom:321.840000px;}
.y4d_c01059{bottom:322.560000px;}
.y4e_c01059{bottom:326.160000px;}
.y4a_c01059{bottom:341.280000px;}
.y4b_c01059{bottom:342.000000px;}
.y49_c01059{bottom:372.240000px;}
.y45_c01059{bottom:372.960000px;}
.y42_c01059{bottom:374.400000px;}
.y43_c01059{bottom:375.120000px;}
.y47_c01059{bottom:375.840000px;}
.y48_c01059{bottom:378.000000px;}
.y40_c01059{bottom:385.200000px;}
.y3f_c01059{bottom:388.080000px;}
.y44_c01059{bottom:396.720000px;}
.y46_c01059{bottom:397.440000px;}
.y41_c01059{bottom:398.160000px;}
.y3e_c01059{bottom:437.040000px;}
.y7b_c01059{bottom:437.760000px;}
.y3d_c01059{bottom:439.200000px;}
.y3c_c01059{bottom:479.520000px;}
.y3a_c01059{bottom:480.240000px;}
.y7a_c01059{bottom:481.680000px;}
.y39_c01059{bottom:482.400000px;}
.y3b_c01059{bottom:483.120000px;}
.y36_c01059{bottom:522.720000px;}
.y37_c01059{bottom:523.440000px;}
.y77_c01059{bottom:524.160000px;}
.y79_c01059{bottom:524.880000px;}
.y35_c01059{bottom:525.600000px;}
.y38_c01059{bottom:526.320000px;}
.y78_c01059{bottom:527.040000px;}
.y34_c01059{bottom:565.200000px;}
.y31_c01059{bottom:565.920000px;}
.y76_c01059{bottom:566.640000px;}
.y75_c01059{bottom:567.360000px;}
.y30_c01059{bottom:568.080000px;}
.y32_c01059{bottom:568.800000px;}
.y33_c01059{bottom:569.520000px;}
.y2d_c01059{bottom:608.400000px;}
.y2f_c01059{bottom:609.840000px;}
.y2c_c01059{bottom:610.560000px;}
.y2e_c01059{bottom:612.720000px;}
.y2a_c01059{bottom:651.600000px;}
.y29_c01059{bottom:653.040000px;}
.y73_c01059{bottom:654.480000px;}
.y2b_c01059{bottom:655.200000px;}
.y74_c01059{bottom:655.920000px;}
.y25_c01059{bottom:694.080000px;}
.y26_c01059{bottom:695.520000px;}
.y24_c01059{bottom:696.240000px;}
.y27_c01059{bottom:697.680000px;}
.y28_c01059{bottom:698.400000px;}
.y72_c01059{bottom:699.120000px;}
.y22_c01059{bottom:737.280000px;}
.y71_c01059{bottom:738.000000px;}
.y6f_c01059{bottom:738.720000px;}
.y21_c01059{bottom:739.440000px;}
.y23_c01059{bottom:740.880000px;}
.y70_c01059{bottom:741.600000px;}
.y1e_c01059{bottom:779.760000px;}
.y1f_c01059{bottom:780.480000px;}
.y6d_c01059{bottom:781.920000px;}
.y1d_c01059{bottom:782.640000px;}
.y20_c01059{bottom:783.360000px;}
.y6e_c01059{bottom:784.080000px;}
.y18_c01059{bottom:822.240000px;}
.y1c_c01059{bottom:822.960000px;}
.y6c_c01059{bottom:823.680000px;}
.y17_c01059{bottom:824.400000px;}
.y19_c01059{bottom:825.120000px;}
.y1a_c01059{bottom:825.840000px;}
.y1b_c01059{bottom:826.560000px;}
.y16_c01059{bottom:864.720000px;}
.y15_c01059{bottom:868.320000px;}
.y13_c01059{bottom:897.120000px;}
.y11_c01059{bottom:898.560000px;}
.y10_c01059{bottom:899.280000px;}
.y14_c01059{bottom:900.720000px;}
.y12_c01059{bottom:901.440000px;}
.yf_c01059{bottom:940.320000px;}
.yc_c01059{bottom:972.720000px;}
.yb_c01059{bottom:973.440000px;}
.ya_c01059{bottom:974.160000px;}
.ye_c01059{bottom:974.880000px;}
.yd_c01059{bottom:976.320000px;}
.y6b_c01059{bottom:977.760000px;}
.y8_c01059{bottom:1015.920000px;}
.y5_c01059{bottom:1047.600000px;}
.y4_c01059{bottom:1048.320000px;}
.y2_c01059{bottom:1049.040000px;}
.y3_c01059{bottom:1049.760000px;}
.y9_c01059{bottom:1050.480000px;}
.y7_c01059{bottom:1051.200000px;}
.y6_c01059{bottom:1051.920000px;}
.y1_c01059{bottom:1103.040000px;}
.h14_c01059{height:12.958594px;}
.h12_c01059{height:15.550313px;}
.h13_c01059{height:18.142031px;}
.h11_c01059{height:23.325469px;}
.hd_c01059{height:31.100625px;}
.h10_c01059{height:33.692344px;}
.hc_c01059{height:38.875781px;}
.hf_c01059{height:41.467500px;}
.hb_c01059{height:44.059219px;}
.h5_c01059{height:46.650937px;}
.h7_c01059{height:49.242656px;}
.ha_c01059{height:51.834375px;}
.h4_c01059{height:54.426094px;}
.h9_c01059{height:57.017812px;}
.h3_c01059{height:59.609531px;}
.he_c01059{height:62.201250px;}
.h2_c01059{height:64.792969px;}
.h8_c01059{height:67.384687px;}
.h6_c01059{height:69.976406px;}
.h15_c01059{height:75.159844px;}
.h16_c01059{height:77.751563px;}
.h0_c01059{height:1157.760000px;}
.h1_c01059{height:1158.000000px;}
.w1_c01059{width:822.750000px;}
.w0_c01059{width:822.960000px;}
.x0_c01059{left:0.000000px;}
.x2b_c01059{left:104.400000px;}
.x1e_c01059{left:105.840000px;}
.x2_c01059{left:107.280000px;}
.x21_c01059{left:126.000000px;}
.x2f_c01059{left:136.080000px;}
.x2c_c01059{left:137.520000px;}
.x30_c01059{left:149.040000px;}
.x33_c01059{left:159.840000px;}
.x18_c01059{left:180.720000px;}
.xa_c01059{left:182.160000px;}
.x3_c01059{left:183.600000px;}
.x36_c01059{left:191.520000px;}
.x22_c01059{left:200.880000px;}
.x38_c01059{left:203.040000px;}
.x37_c01059{left:210.960000px;}
.x31_c01059{left:223.920000px;}
.x2d_c01059{left:233.280000px;}
.x13_c01059{left:236.880000px;}
.x39_c01059{left:267.120000px;}
.x4_c01059{left:268.560000px;}
.x19_c01059{left:277.200000px;}
.x14_c01059{left:278.640000px;}
.x2a_c01059{left:288.720000px;}
.x2e_c01059{left:300.240000px;}
.x32_c01059{left:309.600000px;}
.x1f_c01059{left:311.040000px;}
.x1d_c01059{left:320.400000px;}
.x10_c01059{left:321.840000px;}
.x1a_c01059{left:330.480000px;}
.x5_c01059{left:332.640000px;}
.x34_c01059{left:352.080000px;}
.x20_c01059{left:353.520000px;}
.x3a_c01059{left:362.880000px;}
.x15_c01059{left:365.040000px;}
.x1b_c01059{left:375.840000px;}
.x11_c01059{left:377.280000px;}
.x35_c01059{left:384.480000px;}
.x29_c01059{left:385.920000px;}
.x6_c01059{left:388.080000px;}
.x16_c01059{left:417.600000px;}
.x1c_c01059{left:419.040000px;}
.x23_c01059{left:440.640000px;}
.x24_c01059{left:451.440000px;}
.x17_c01059{left:462.240000px;}
.x47_c01059{left:471.600000px;}
.x4b_c01059{left:473.040000px;}
.xe_c01059{left:483.840000px;}
.x12_c01059{left:504.720000px;}
.x4c_c01059{left:515.520000px;}
.x7_c01059{left:517.680000px;}
.x49_c01059{left:525.600000px;}
.xf_c01059{left:527.040000px;}
.x4d_c01059{left:547.920000px;}
.x4a_c01059{left:558.000000px;}
.x25_c01059{left:559.440000px;}
.x46_c01059{left:579.600000px;}
.x3f_c01059{left:581.760000px;}
.x8_c01059{left:583.200000px;}
.x26_c01059{left:589.680000px;}
.x27_c01059{left:612.720000px;}
.x9_c01059{left:614.880000px;}
.x4e_c01059{left:622.080000px;}
.x48_c01059{left:623.520000px;}
.x41_c01059{left:635.040000px;}
.x28_c01059{left:643.680000px;}
.x3d_c01059{left:667.440000px;}
.xb_c01059{left:669.600000px;}
.x45_c01059{left:699.840000px;}
.x3b_c01059{left:702.000000px;}
.xc_c01059{left:703.440000px;}
.x40_c01059{left:710.640000px;}
.x1_c01059{left:714.960000px;}
.x43_c01059{left:742.320000px;}
.x42_c01059{left:743.760000px;}
.x3c_c01059{left:745.200000px;}
.xd_c01059{left:746.640000px;}
.x44_c01059{left:763.200000px;}
.x3e_c01059{left:765.360000px;}
@media print{
.v0_c01059{vertical-align:0.000000pt;}
.ls0_c01059{letter-spacing:0.000000pt;}
.ws1_c01059{word-spacing:0.000000pt;}
.ws0_c01059{word-spacing:100.482196pt;}
.fs12_c01059{font-size:12.800000pt;}
.fs10_c01059{font-size:15.360000pt;}
.fs11_c01059{font-size:17.920000pt;}
.fsf_c01059{font-size:23.040000pt;}
.fsb_c01059{font-size:30.720000pt;}
.fse_c01059{font-size:33.280000pt;}
.fsa_c01059{font-size:38.400000pt;}
.fsd_c01059{font-size:40.960000pt;}
.fs9_c01059{font-size:43.520000pt;}
.fs3_c01059{font-size:46.080000pt;}
.fs5_c01059{font-size:48.640000pt;}
.fs8_c01059{font-size:51.200000pt;}
.fs2_c01059{font-size:53.760000pt;}
.fs7_c01059{font-size:56.320000pt;}
.fs1_c01059{font-size:58.880000pt;}
.fsc_c01059{font-size:61.440000pt;}
.fs0_c01059{font-size:64.000000pt;}
.fs6_c01059{font-size:66.560000pt;}
.fs4_c01059{font-size:69.120000pt;}
.fs13_c01059{font-size:74.240000pt;}
.fs14_c01059{font-size:76.800000pt;}
.y0_c01059{bottom:0.000000pt;}
.ya0_c01059{bottom:46.080000pt;}
.y9e_c01059{bottom:48.000000pt;}
.y9f_c01059{bottom:48.640000pt;}
.y9b_c01059{bottom:65.280000pt;}
.y9d_c01059{bottom:65.920000pt;}
.y9c_c01059{bottom:67.840000pt;}
.y9a_c01059{bottom:83.840000pt;}
.y99_c01059{bottom:84.480000pt;}
.y97_c01059{bottom:85.120000pt;}
.y98_c01059{bottom:86.400000pt;}
.y95_c01059{bottom:103.680000pt;}
.y93_c01059{bottom:104.320000pt;}
.y96_c01059{bottom:104.960000pt;}
.y94_c01059{bottom:105.600000pt;}
.y6a_c01059{bottom:115.200000pt;}
.y67_c01059{bottom:116.480000pt;}
.y68_c01059{bottom:117.120000pt;}
.y69_c01059{bottom:118.400000pt;}
.y92_c01059{bottom:122.880000pt;}
.y91_c01059{bottom:123.520000pt;}
.y90_c01059{bottom:124.160000pt;}
.y8e_c01059{bottom:141.440000pt;}
.y66_c01059{bottom:142.080000pt;}
.y8f_c01059{bottom:143.360000pt;}
.y62_c01059{bottom:144.000000pt;}
.y65_c01059{bottom:144.640000pt;}
.y63_c01059{bottom:145.280000pt;}
.y64_c01059{bottom:145.920000pt;}
.y8c_c01059{bottom:160.640000pt;}
.y8d_c01059{bottom:163.200000pt;}
.y61_c01059{bottom:172.160000pt;}
.y5f_c01059{bottom:173.440000pt;}
.y5e_c01059{bottom:174.080000pt;}
.y60_c01059{bottom:174.720000pt;}
.y8a_c01059{bottom:179.840000pt;}
.y8b_c01059{bottom:181.760000pt;}
.y5c_c01059{bottom:198.400000pt;}
.y89_c01059{bottom:199.040000pt;}
.y5b_c01059{bottom:199.680000pt;}
.y5d_c01059{bottom:200.320000pt;}
.y88_c01059{bottom:200.960000pt;}
.y5a_c01059{bottom:202.240000pt;}
.y59_c01059{bottom:203.520000pt;}
.y87_c01059{bottom:217.600000pt;}
.y86_c01059{bottom:218.240000pt;}
.y85_c01059{bottom:220.160000pt;}
.y58_c01059{bottom:228.480000pt;}
.y55_c01059{bottom:229.120000pt;}
.y57_c01059{bottom:229.760000pt;}
.y56_c01059{bottom:230.400000pt;}
.y53_c01059{bottom:231.040000pt;}
.y54_c01059{bottom:232.960000pt;}
.y84_c01059{bottom:235.520000pt;}
.y82_c01059{bottom:236.800000pt;}
.y83_c01059{bottom:237.440000pt;}
.y81_c01059{bottom:238.080000pt;}
.y80_c01059{bottom:256.000000pt;}
.y7f_c01059{bottom:256.640000pt;}
.y52_c01059{bottom:264.960000pt;}
.y51_c01059{bottom:266.880000pt;}
.y7e_c01059{bottom:280.320000pt;}
.y7d_c01059{bottom:280.960000pt;}
.y4f_c01059{bottom:284.160000pt;}
.y50_c01059{bottom:284.800000pt;}
.y4c_c01059{bottom:285.440000pt;}
.y7c_c01059{bottom:286.080000pt;}
.y4d_c01059{bottom:286.720000pt;}
.y4e_c01059{bottom:289.920000pt;}
.y4a_c01059{bottom:303.360000pt;}
.y4b_c01059{bottom:304.000000pt;}
.y49_c01059{bottom:330.880000pt;}
.y45_c01059{bottom:331.520000pt;}
.y42_c01059{bottom:332.800000pt;}
.y43_c01059{bottom:333.440000pt;}
.y47_c01059{bottom:334.080000pt;}
.y48_c01059{bottom:336.000000pt;}
.y40_c01059{bottom:342.400000pt;}
.y3f_c01059{bottom:344.960000pt;}
.y44_c01059{bottom:352.640000pt;}
.y46_c01059{bottom:353.280000pt;}
.y41_c01059{bottom:353.920000pt;}
.y3e_c01059{bottom:388.480000pt;}
.y7b_c01059{bottom:389.120000pt;}
.y3d_c01059{bottom:390.400000pt;}
.y3c_c01059{bottom:426.240000pt;}
.y3a_c01059{bottom:426.880000pt;}
.y7a_c01059{bottom:428.160000pt;}
.y39_c01059{bottom:428.800000pt;}
.y3b_c01059{bottom:429.440000pt;}
.y36_c01059{bottom:464.640000pt;}
.y37_c01059{bottom:465.280000pt;}
.y77_c01059{bottom:465.920000pt;}
.y79_c01059{bottom:466.560000pt;}
.y35_c01059{bottom:467.200000pt;}
.y38_c01059{bottom:467.840000pt;}
.y78_c01059{bottom:468.480000pt;}
.y34_c01059{bottom:502.400000pt;}
.y31_c01059{bottom:503.040000pt;}
.y76_c01059{bottom:503.680000pt;}
.y75_c01059{bottom:504.320000pt;}
.y30_c01059{bottom:504.960000pt;}
.y32_c01059{bottom:505.600000pt;}
.y33_c01059{bottom:506.240000pt;}
.y2d_c01059{bottom:540.800000pt;}
.y2f_c01059{bottom:542.080000pt;}
.y2c_c01059{bottom:542.720000pt;}
.y2e_c01059{bottom:544.640000pt;}
.y2a_c01059{bottom:579.200000pt;}
.y29_c01059{bottom:580.480000pt;}
.y73_c01059{bottom:581.760000pt;}
.y2b_c01059{bottom:582.400000pt;}
.y74_c01059{bottom:583.040000pt;}
.y25_c01059{bottom:616.960000pt;}
.y26_c01059{bottom:618.240000pt;}
.y24_c01059{bottom:618.880000pt;}
.y27_c01059{bottom:620.160000pt;}
.y28_c01059{bottom:620.800000pt;}
.y72_c01059{bottom:621.440000pt;}
.y22_c01059{bottom:655.360000pt;}
.y71_c01059{bottom:656.000000pt;}
.y6f_c01059{bottom:656.640000pt;}
.y21_c01059{bottom:657.280000pt;}
.y23_c01059{bottom:658.560000pt;}
.y70_c01059{bottom:659.200000pt;}
.y1e_c01059{bottom:693.120000pt;}
.y1f_c01059{bottom:693.760000pt;}
.y6d_c01059{bottom:695.040000pt;}
.y1d_c01059{bottom:695.680000pt;}
.y20_c01059{bottom:696.320000pt;}
.y6e_c01059{bottom:696.960000pt;}
.y18_c01059{bottom:730.880000pt;}
.y1c_c01059{bottom:731.520000pt;}
.y6c_c01059{bottom:732.160000pt;}
.y17_c01059{bottom:732.800000pt;}
.y19_c01059{bottom:733.440000pt;}
.y1a_c01059{bottom:734.080000pt;}
.y1b_c01059{bottom:734.720000pt;}
.y16_c01059{bottom:768.640000pt;}
.y15_c01059{bottom:771.840000pt;}
.y13_c01059{bottom:797.440000pt;}
.y11_c01059{bottom:798.720000pt;}
.y10_c01059{bottom:799.360000pt;}
.y14_c01059{bottom:800.640000pt;}
.y12_c01059{bottom:801.280000pt;}
.yf_c01059{bottom:835.840000pt;}
.yc_c01059{bottom:864.640000pt;}
.yb_c01059{bottom:865.280000pt;}
.ya_c01059{bottom:865.920000pt;}
.ye_c01059{bottom:866.560000pt;}
.yd_c01059{bottom:867.840000pt;}
.y6b_c01059{bottom:869.120000pt;}
.y8_c01059{bottom:903.040000pt;}
.y5_c01059{bottom:931.200000pt;}
.y4_c01059{bottom:931.840000pt;}
.y2_c01059{bottom:932.480000pt;}
.y3_c01059{bottom:933.120000pt;}
.y9_c01059{bottom:933.760000pt;}
.y7_c01059{bottom:934.400000pt;}
.y6_c01059{bottom:935.040000pt;}
.y1_c01059{bottom:980.480000pt;}
.h14_c01059{height:11.518750pt;}
.h12_c01059{height:13.822500pt;}
.h13_c01059{height:16.126250pt;}
.h11_c01059{height:20.733750pt;}
.hd_c01059{height:27.645000pt;}
.h10_c01059{height:29.948750pt;}
.hc_c01059{height:34.556250pt;}
.hf_c01059{height:36.860000pt;}
.hb_c01059{height:39.163750pt;}
.h5_c01059{height:41.467500pt;}
.h7_c01059{height:43.771250pt;}
.ha_c01059{height:46.075000pt;}
.h4_c01059{height:48.378750pt;}
.h9_c01059{height:50.682500pt;}
.h3_c01059{height:52.986250pt;}
.he_c01059{height:55.290000pt;}
.h2_c01059{height:57.593750pt;}
.h8_c01059{height:59.897500pt;}
.h6_c01059{height:62.201250pt;}
.h15_c01059{height:66.808750pt;}
.h16_c01059{height:69.112500pt;}
.h0_c01059{height:1029.120000pt;}
.h1_c01059{height:1029.333333pt;}
.w1_c01059{width:731.333333pt;}
.w0_c01059{width:731.520000pt;}
.x0_c01059{left:0.000000pt;}
.x2b_c01059{left:92.800000pt;}
.x1e_c01059{left:94.080000pt;}
.x2_c01059{left:95.360000pt;}
.x21_c01059{left:112.000000pt;}
.x2f_c01059{left:120.960000pt;}
.x2c_c01059{left:122.240000pt;}
.x30_c01059{left:132.480000pt;}
.x33_c01059{left:142.080000pt;}
.x18_c01059{left:160.640000pt;}
.xa_c01059{left:161.920000pt;}
.x3_c01059{left:163.200000pt;}
.x36_c01059{left:170.240000pt;}
.x22_c01059{left:178.560000pt;}
.x38_c01059{left:180.480000pt;}
.x37_c01059{left:187.520000pt;}
.x31_c01059{left:199.040000pt;}
.x2d_c01059{left:207.360000pt;}
.x13_c01059{left:210.560000pt;}
.x39_c01059{left:237.440000pt;}
.x4_c01059{left:238.720000pt;}
.x19_c01059{left:246.400000pt;}
.x14_c01059{left:247.680000pt;}
.x2a_c01059{left:256.640000pt;}
.x2e_c01059{left:266.880000pt;}
.x32_c01059{left:275.200000pt;}
.x1f_c01059{left:276.480000pt;}
.x1d_c01059{left:284.800000pt;}
.x10_c01059{left:286.080000pt;}
.x1a_c01059{left:293.760000pt;}
.x5_c01059{left:295.680000pt;}
.x34_c01059{left:312.960000pt;}
.x20_c01059{left:314.240000pt;}
.x3a_c01059{left:322.560000pt;}
.x15_c01059{left:324.480000pt;}
.x1b_c01059{left:334.080000pt;}
.x11_c01059{left:335.360000pt;}
.x35_c01059{left:341.760000pt;}
.x29_c01059{left:343.040000pt;}
.x6_c01059{left:344.960000pt;}
.x16_c01059{left:371.200000pt;}
.x1c_c01059{left:372.480000pt;}
.x23_c01059{left:391.680000pt;}
.x24_c01059{left:401.280000pt;}
.x17_c01059{left:410.880000pt;}
.x47_c01059{left:419.200000pt;}
.x4b_c01059{left:420.480000pt;}
.xe_c01059{left:430.080000pt;}
.x12_c01059{left:448.640000pt;}
.x4c_c01059{left:458.240000pt;}
.x7_c01059{left:460.160000pt;}
.x49_c01059{left:467.200000pt;}
.xf_c01059{left:468.480000pt;}
.x4d_c01059{left:487.040000pt;}
.x4a_c01059{left:496.000000pt;}
.x25_c01059{left:497.280000pt;}
.x46_c01059{left:515.200000pt;}
.x3f_c01059{left:517.120000pt;}
.x8_c01059{left:518.400000pt;}
.x26_c01059{left:524.160000pt;}
.x27_c01059{left:544.640000pt;}
.x9_c01059{left:546.560000pt;}
.x4e_c01059{left:552.960000pt;}
.x48_c01059{left:554.240000pt;}
.x41_c01059{left:564.480000pt;}
.x28_c01059{left:572.160000pt;}
.x3d_c01059{left:593.280000pt;}
.xb_c01059{left:595.200000pt;}
.x45_c01059{left:622.080000pt;}
.x3b_c01059{left:624.000000pt;}
.xc_c01059{left:625.280000pt;}
.x40_c01059{left:631.680000pt;}
.x1_c01059{left:635.520000pt;}
.x43_c01059{left:659.840000pt;}
.x42_c01059{left:661.120000pt;}
.x3c_c01059{left:662.400000pt;}
.xd_c01059{left:663.680000pt;}
.x44_c01059{left:678.400000pt;}
.x3e_c01059{left:680.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_67f86d47ab738a9ba3468565.woff2')format("woff");}.ff1_c01060{font-family:ff1_c01060;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m42_c01060{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m4e_c01060{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m5_c01060{transform:matrix(0.218925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218925,0.000000,0.000000,0.250000,0,0);}
.m3c_c01060{transform:matrix(0.220225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220225,0.000000,0.000000,0.250000,0,0);}
.m33_c01060{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);}
.m45_c01060{transform:matrix(0.231800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231800,0.000000,0.000000,0.250000,0,0);}
.m4d_c01060{transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);}
.m2c_c01060{transform:matrix(0.233425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233425,0.000000,0.000000,0.250000,0,0);}
.m40_c01060{transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);}
.m19_c01060{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m47_c01060{transform:matrix(0.242600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242600,0.000000,0.000000,0.250000,0,0);}
.m4a_c01060{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m37_c01060{transform:matrix(0.243700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243700,0.000000,0.000000,0.250000,0,0);}
.m3d_c01060{transform:matrix(0.245300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245300,0.000000,0.000000,0.250000,0,0);}
.m35_c01060{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m2b_c01060{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);}
.m24_c01060{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);}
.m3a_c01060{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_c01060{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);}
.m34_c01060{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m12_c01060{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);}
.m2a_c01060{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m14_c01060{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);}
.m32_c01060{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);}
.m3b_c01060{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m15_c01060{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m17_c01060{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m10_c01060{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mb_c01060{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2_c01060{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m23_c01060{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m44_c01060{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m11_c01060{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m8_c01060{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m20_c01060{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m25_c01060{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.me_c01060{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m13_c01060{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m6_c01060{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m7_c01060{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01060{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m28_c01060{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m16_c01060{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m0_c01060{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01060{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01060{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);}
.m27_c01060{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01060{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);}
.m2d_c01060{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.mc_c01060{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m3_c01060{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);}
.m46_c01060{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);}
.m4c_c01060{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01060{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m31_c01060{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);}
.m22_c01060{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.md_c01060{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);}
.ma_c01060{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);}
.m1c_c01060{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m1_c01060{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);}
.m48_c01060{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m30_c01060{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m26_c01060{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);}
.m49_c01060{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01060{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m39_c01060{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m29_c01060{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m4_c01060{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m38_c01060{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);}
.m36_c01060{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m41_c01060{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);}
.m21_c01060{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01060{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);}
.m43_c01060{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01060{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);}
.m4b_c01060{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01060{transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);}
.mf_c01060{transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);}
.m9_c01060{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.v0_c01060{vertical-align:0.000000px;}
.v2_c01060{vertical-align:2.880000px;}
.v1_c01060{vertical-align:5.760000px;}
.ls0_c01060{letter-spacing:0.000000px;}
.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;}
}
.ws3_c01060{word-spacing:0.000000px;}
.ws1_c01060{word-spacing:9.059962px;}
.ws2_c01060{word-spacing:11.690400px;}
.ws0_c01060{word-spacing:41.124000px;}
.fc0_c01060{color:transparent;}
.fse_c01060{font-size:34.560000px;}
.fsf_c01060{font-size:37.440000px;}
.fs10_c01060{font-size:40.320000px;}
.fsc_c01060{font-size:46.080000px;}
.fs2_c01060{font-size:48.960000px;}
.fs6_c01060{font-size:51.840000px;}
.fs3_c01060{font-size:54.720000px;}
.fs8_c01060{font-size:57.600000px;}
.fs9_c01060{font-size:60.480000px;}
.fsb_c01060{font-size:63.360000px;}
.fs1_c01060{font-size:66.240000px;}
.fs5_c01060{font-size:69.120000px;}
.fsa_c01060{font-size:72.000000px;}
.fs7_c01060{font-size:74.880000px;}
.fs0_c01060{font-size:77.760000px;}
.fs11_c01060{font-size:80.640000px;}
.fsd_c01060{font-size:103.680000px;}
.fs4_c01060{font-size:106.560000px;}
.y0_c01060{bottom:0.000000px;}
.y6d_c01060{bottom:27.360000px;}
.y6b_c01060{bottom:28.080000px;}
.y7d_c01060{bottom:28.800000px;}
.y7e_c01060{bottom:29.520000px;}
.y6c_c01060{bottom:30.960000px;}
.y6a_c01060{bottom:31.680000px;}
.y69_c01060{bottom:69.120000px;}
.y68_c01060{bottom:69.840000px;}
.y7c_c01060{bottom:71.280000px;}
.y67_c01060{bottom:72.720000px;}
.y66_c01060{bottom:73.440000px;}
.y63_c01060{bottom:113.040000px;}
.y61_c01060{bottom:113.760000px;}
.y7b_c01060{bottom:115.200000px;}
.y60_c01060{bottom:116.640000px;}
.y62_c01060{bottom:117.360000px;}
.y5f_c01060{bottom:155.520000px;}
.y7a_c01060{bottom:156.240000px;}
.y5d_c01060{bottom:156.960000px;}
.y79_c01060{bottom:158.400000px;}
.y5e_c01060{bottom:159.120000px;}
.y5c_c01060{bottom:159.840000px;}
.y5a_c01060{bottom:198.720000px;}
.y65_c01060{bottom:199.440000px;}
.y78_c01060{bottom:200.160000px;}
.y64_c01060{bottom:200.880000px;}
.y59_c01060{bottom:202.320000px;}
.y5b_c01060{bottom:203.040000px;}
.y58_c01060{bottom:241.200000px;}
.y56_c01060{bottom:242.640000px;}
.y57_c01060{bottom:243.360000px;}
.y77_c01060{bottom:244.080000px;}
.y55_c01060{bottom:244.800000px;}
.y53_c01060{bottom:284.400000px;}
.y52_c01060{bottom:285.840000px;}
.y54_c01060{bottom:286.560000px;}
.y50_c01060{bottom:287.280000px;}
.y51_c01060{bottom:288.000000px;}
.y4f_c01060{bottom:320.400000px;}
.y4c_c01060{bottom:328.320000px;}
.y4e_c01060{bottom:329.040000px;}
.y4b_c01060{bottom:330.480000px;}
.y76_c01060{bottom:331.200000px;}
.y4d_c01060{bottom:331.920000px;}
.y47_c01060{bottom:371.520000px;}
.y74_c01060{bottom:372.240000px;}
.y46_c01060{bottom:372.960000px;}
.y4a_c01060{bottom:374.400000px;}
.y75_c01060{bottom:375.120000px;}
.y45_c01060{bottom:414.000000px;}
.y49_c01060{bottom:415.440000px;}
.y44_c01060{bottom:416.160000px;}
.y48_c01060{bottom:416.880000px;}
.y42_c01060{bottom:457.200000px;}
.y43_c01060{bottom:457.920000px;}
.y41_c01060{bottom:459.360000px;}
.y73_c01060{bottom:460.080000px;}
.y40_c01060{bottom:498.960000px;}
.y20_c01060{bottom:500.400000px;}
.y1f_c01060{bottom:501.840000px;}
.y1e_c01060{bottom:503.280000px;}
.y3e_c01060{bottom:541.440000px;}
.y1d_c01060{bottom:542.880000px;}
.y1c_c01060{bottom:543.600000px;}
.y3f_c01060{bottom:545.760000px;}
.y1b_c01060{bottom:546.480000px;}
.y3d_c01060{bottom:585.360000px;}
.y18_c01060{bottom:586.080000px;}
.y19_c01060{bottom:586.800000px;}
.y1a_c01060{bottom:587.520000px;}
.y17_c01060{bottom:588.240000px;}
.y3c_c01060{bottom:627.120000px;}
.y15_c01060{bottom:628.560000px;}
.y14_c01060{bottom:629.280000px;}
.y39_c01060{bottom:630.000000px;}
.y3b_c01060{bottom:630.720000px;}
.y16_c01060{bottom:631.440000px;}
.y3a_c01060{bottom:632.160000px;}
.y38_c01060{bottom:669.600000px;}
.y11_c01060{bottom:671.760000px;}
.y12_c01060{bottom:672.480000px;}
.y13_c01060{bottom:673.920000px;}
.y37_c01060{bottom:674.640000px;}
.y34_c01060{bottom:712.800000px;}
.y33_c01060{bottom:714.960000px;}
.y72_c01060{bottom:715.680000px;}
.y35_c01060{bottom:716.400000px;}
.y36_c01060{bottom:717.120000px;}
.y71_c01060{bottom:758.160000px;}
.y32_c01060{bottom:758.880000px;}
.y70_c01060{bottom:760.320000px;}
.y2f_c01060{bottom:799.200000px;}
.y31_c01060{bottom:799.920000px;}
.y30_c01060{bottom:802.800000px;}
.y2a_c01060{bottom:831.600000px;}
.y2d_c01060{bottom:832.320000px;}
.y29_c01060{bottom:833.040000px;}
.y6f_c01060{bottom:833.760000px;}
.y2e_c01060{bottom:834.480000px;}
.y2c_c01060{bottom:835.200000px;}
.y2b_c01060{bottom:835.920000px;}
.y28_c01060{bottom:875.520000px;}
.y26_c01060{bottom:877.680000px;}
.y27_c01060{bottom:878.400000px;}
.y23_c01060{bottom:907.200000px;}
.y21_c01060{bottom:908.640000px;}
.y6e_c01060{bottom:909.360000px;}
.y22_c01060{bottom:910.080000px;}
.y24_c01060{bottom:910.800000px;}
.y25_c01060{bottom:911.520000px;}
.yc_c01060{bottom:950.400000px;}
.ya_c01060{bottom:951.120000px;}
.yf_c01060{bottom:951.840000px;}
.y10_c01060{bottom:952.560000px;}
.yb_c01060{bottom:953.280000px;}
.yd_c01060{bottom:954.000000px;}
.ye_c01060{bottom:954.720000px;}
.y6_c01060{bottom:986.400000px;}
.y4_c01060{bottom:992.880000px;}
.y2_c01060{bottom:994.320000px;}
.y8_c01060{bottom:995.040000px;}
.y9_c01060{bottom:995.760000px;}
.y3_c01060{bottom:996.480000px;}
.y5_c01060{bottom:997.200000px;}
.y7_c01060{bottom:997.920000px;}
.y1_c01060{bottom:1104.480000px;}
.h10_c01060{height:31.100625px;}
.h11_c01060{height:33.692344px;}
.h12_c01060{height:36.284062px;}
.he_c01060{height:41.467500px;}
.h4_c01060{height:44.059219px;}
.h8_c01060{height:46.650937px;}
.h5_c01060{height:49.242656px;}
.ha_c01060{height:51.834375px;}
.hb_c01060{height:54.426094px;}
.hd_c01060{height:57.017812px;}
.h14_c01060{height:57.306094px;}
.h3_c01060{height:59.609531px;}
.h7_c01060{height:62.201250px;}
.hc_c01060{height:64.792969px;}
.h9_c01060{height:67.384687px;}
.h2_c01060{height:69.976406px;}
.h13_c01060{height:72.568125px;}
.hf_c01060{height:93.301875px;}
.h6_c01060{height:95.893594px;}
.h0_c01060{height:1157.040000px;}
.h1_c01060{height:1157.250000px;}
.w1_c01060{width:820.500000px;}
.w0_c01060{width:820.800000px;}
.x0_c01060{left:0.000000px;}
.x29_c01060{left:102.240000px;}
.x2_c01060{left:103.680180px;}
.x27_c01060{left:146.880000px;}
.x2c_c01060{left:176.400000px;}
.x3_c01060{left:177.840000px;}
.x1e_c01060{left:179.280000px;}
.x4_c01060{left:221.040000px;}
.x17_c01060{left:222.480000px;}
.x2d_c01060{left:262.800000px;}
.x18_c01060{left:264.240000px;}
.x1f_c01060{left:274.320000px;}
.x20_c01060{left:285.840000px;}
.x28_c01060{left:296.640000px;}
.x19_c01060{left:298.080000px;}
.x2a_c01060{left:306.720000px;}
.x24_c01060{left:318.240000px;}
.x23_c01060{left:328.320000px;}
.x5_c01060{left:329.760000px;}
.x2b_c01060{left:359.280000px;}
.x2e_c01060{left:360.720000px;}
.x1a_c01060{left:382.320000px;}
.x15_c01060{left:383.760000px;}
.x25_c01060{left:403.920000px;}
.xc_c01060{left:414.720000px;}
.x6_c01060{left:416.160000px;}
.x1b_c01060{left:437.040000px;}
.xd_c01060{left:458.640000px;}
.x7_c01060{left:468.720000px;}
.x21_c01060{left:480.240000px;}
.x1c_c01060{left:491.040000px;}
.x26_c01060{left:501.120000px;}
.x16_c01060{left:513.360000px;}
.x22_c01060{left:522.720000px;}
.x1d_c01060{left:577.440000px;}
.x8_c01060{left:578.880000px;}
.x10_c01060{left:588.960000px;}
.x12_c01060{left:609.120000px;}
.x11_c01060{left:610.560000px;}
.x13_c01060{left:631.440000px;}
.x9_c01060{left:632.880000px;}
.x32_c01060{left:663.120000px;}
.xe_c01060{left:665.280000px;}
.x33_c01060{left:696.960000px;}
.xf_c01060{left:698.400000px;}
.x1_c01060{left:707.040000px;}
.x2f_c01060{left:708.480000px;}
.x30_c01060{left:730.800000px;}
.x14_c01060{left:739.440000px;}
.xa_c01060{left:740.880000px;}
.x31_c01060{left:760.320000px;}
.xb_c01060{left:762.480000px;}
@media print{
.v0_c01060{vertical-align:0.000000pt;}
.v2_c01060{vertical-align:2.560000pt;}
.v1_c01060{vertical-align:5.120000pt;}
.ls0_c01060{letter-spacing:0.000000pt;}
.ws3_c01060{word-spacing:0.000000pt;}
.ws1_c01060{word-spacing:8.053299pt;}
.ws2_c01060{word-spacing:10.391467pt;}
.ws0_c01060{word-spacing:36.554667pt;}
.fse_c01060{font-size:30.720000pt;}
.fsf_c01060{font-size:33.280000pt;}
.fs10_c01060{font-size:35.840000pt;}
.fsc_c01060{font-size:40.960000pt;}
.fs2_c01060{font-size:43.520000pt;}
.fs6_c01060{font-size:46.080000pt;}
.fs3_c01060{font-size:48.640000pt;}
.fs8_c01060{font-size:51.200000pt;}
.fs9_c01060{font-size:53.760000pt;}
.fsb_c01060{font-size:56.320000pt;}
.fs1_c01060{font-size:58.880000pt;}
.fs5_c01060{font-size:61.440000pt;}
.fsa_c01060{font-size:64.000000pt;}
.fs7_c01060{font-size:66.560000pt;}
.fs0_c01060{font-size:69.120000pt;}
.fs11_c01060{font-size:71.680000pt;}
.fsd_c01060{font-size:92.160000pt;}
.fs4_c01060{font-size:94.720000pt;}
.y0_c01060{bottom:0.000000pt;}
.y6d_c01060{bottom:24.320000pt;}
.y6b_c01060{bottom:24.960000pt;}
.y7d_c01060{bottom:25.600000pt;}
.y7e_c01060{bottom:26.240000pt;}
.y6c_c01060{bottom:27.520000pt;}
.y6a_c01060{bottom:28.160000pt;}
.y69_c01060{bottom:61.440000pt;}
.y68_c01060{bottom:62.080000pt;}
.y7c_c01060{bottom:63.360000pt;}
.y67_c01060{bottom:64.640000pt;}
.y66_c01060{bottom:65.280000pt;}
.y63_c01060{bottom:100.480000pt;}
.y61_c01060{bottom:101.120000pt;}
.y7b_c01060{bottom:102.400000pt;}
.y60_c01060{bottom:103.680000pt;}
.y62_c01060{bottom:104.320000pt;}
.y5f_c01060{bottom:138.240000pt;}
.y7a_c01060{bottom:138.880000pt;}
.y5d_c01060{bottom:139.520000pt;}
.y79_c01060{bottom:140.800000pt;}
.y5e_c01060{bottom:141.440000pt;}
.y5c_c01060{bottom:142.080000pt;}
.y5a_c01060{bottom:176.640000pt;}
.y65_c01060{bottom:177.280000pt;}
.y78_c01060{bottom:177.920000pt;}
.y64_c01060{bottom:178.560000pt;}
.y59_c01060{bottom:179.840000pt;}
.y5b_c01060{bottom:180.480000pt;}
.y58_c01060{bottom:214.400000pt;}
.y56_c01060{bottom:215.680000pt;}
.y57_c01060{bottom:216.320000pt;}
.y77_c01060{bottom:216.960000pt;}
.y55_c01060{bottom:217.600000pt;}
.y53_c01060{bottom:252.800000pt;}
.y52_c01060{bottom:254.080000pt;}
.y54_c01060{bottom:254.720000pt;}
.y50_c01060{bottom:255.360000pt;}
.y51_c01060{bottom:256.000000pt;}
.y4f_c01060{bottom:284.800000pt;}
.y4c_c01060{bottom:291.840000pt;}
.y4e_c01060{bottom:292.480000pt;}
.y4b_c01060{bottom:293.760000pt;}
.y76_c01060{bottom:294.400000pt;}
.y4d_c01060{bottom:295.040000pt;}
.y47_c01060{bottom:330.240000pt;}
.y74_c01060{bottom:330.880000pt;}
.y46_c01060{bottom:331.520000pt;}
.y4a_c01060{bottom:332.800000pt;}
.y75_c01060{bottom:333.440000pt;}
.y45_c01060{bottom:368.000000pt;}
.y49_c01060{bottom:369.280000pt;}
.y44_c01060{bottom:369.920000pt;}
.y48_c01060{bottom:370.560000pt;}
.y42_c01060{bottom:406.400000pt;}
.y43_c01060{bottom:407.040000pt;}
.y41_c01060{bottom:408.320000pt;}
.y73_c01060{bottom:408.960000pt;}
.y40_c01060{bottom:443.520000pt;}
.y20_c01060{bottom:444.800000pt;}
.y1f_c01060{bottom:446.080000pt;}
.y1e_c01060{bottom:447.360000pt;}
.y3e_c01060{bottom:481.280000pt;}
.y1d_c01060{bottom:482.560000pt;}
.y1c_c01060{bottom:483.200000pt;}
.y3f_c01060{bottom:485.120000pt;}
.y1b_c01060{bottom:485.760000pt;}
.y3d_c01060{bottom:520.320000pt;}
.y18_c01060{bottom:520.960000pt;}
.y19_c01060{bottom:521.600000pt;}
.y1a_c01060{bottom:522.240000pt;}
.y17_c01060{bottom:522.880000pt;}
.y3c_c01060{bottom:557.440000pt;}
.y15_c01060{bottom:558.720000pt;}
.y14_c01060{bottom:559.360000pt;}
.y39_c01060{bottom:560.000000pt;}
.y3b_c01060{bottom:560.640000pt;}
.y16_c01060{bottom:561.280000pt;}
.y3a_c01060{bottom:561.920000pt;}
.y38_c01060{bottom:595.200000pt;}
.y11_c01060{bottom:597.120000pt;}
.y12_c01060{bottom:597.760000pt;}
.y13_c01060{bottom:599.040000pt;}
.y37_c01060{bottom:599.680000pt;}
.y34_c01060{bottom:633.600000pt;}
.y33_c01060{bottom:635.520000pt;}
.y72_c01060{bottom:636.160000pt;}
.y35_c01060{bottom:636.800000pt;}
.y36_c01060{bottom:637.440000pt;}
.y71_c01060{bottom:673.920000pt;}
.y32_c01060{bottom:674.560000pt;}
.y70_c01060{bottom:675.840000pt;}
.y2f_c01060{bottom:710.400000pt;}
.y31_c01060{bottom:711.040000pt;}
.y30_c01060{bottom:713.600000pt;}
.y2a_c01060{bottom:739.200000pt;}
.y2d_c01060{bottom:739.840000pt;}
.y29_c01060{bottom:740.480000pt;}
.y6f_c01060{bottom:741.120000pt;}
.y2e_c01060{bottom:741.760000pt;}
.y2c_c01060{bottom:742.400000pt;}
.y2b_c01060{bottom:743.040000pt;}
.y28_c01060{bottom:778.240000pt;}
.y26_c01060{bottom:780.160000pt;}
.y27_c01060{bottom:780.800000pt;}
.y23_c01060{bottom:806.400000pt;}
.y21_c01060{bottom:807.680000pt;}
.y6e_c01060{bottom:808.320000pt;}
.y22_c01060{bottom:808.960000pt;}
.y24_c01060{bottom:809.600000pt;}
.y25_c01060{bottom:810.240000pt;}
.yc_c01060{bottom:844.800000pt;}
.ya_c01060{bottom:845.440000pt;}
.yf_c01060{bottom:846.080000pt;}
.y10_c01060{bottom:846.720000pt;}
.yb_c01060{bottom:847.360000pt;}
.yd_c01060{bottom:848.000000pt;}
.ye_c01060{bottom:848.640000pt;}
.y6_c01060{bottom:876.800000pt;}
.y4_c01060{bottom:882.560000pt;}
.y2_c01060{bottom:883.840000pt;}
.y8_c01060{bottom:884.480000pt;}
.y9_c01060{bottom:885.120000pt;}
.y3_c01060{bottom:885.760000pt;}
.y5_c01060{bottom:886.400000pt;}
.y7_c01060{bottom:887.040000pt;}
.y1_c01060{bottom:981.760000pt;}
.h10_c01060{height:27.645000pt;}
.h11_c01060{height:29.948750pt;}
.h12_c01060{height:32.252500pt;}
.he_c01060{height:36.860000pt;}
.h4_c01060{height:39.163750pt;}
.h8_c01060{height:41.467500pt;}
.h5_c01060{height:43.771250pt;}
.ha_c01060{height:46.075000pt;}
.hb_c01060{height:48.378750pt;}
.hd_c01060{height:50.682500pt;}
.h14_c01060{height:50.938750pt;}
.h3_c01060{height:52.986250pt;}
.h7_c01060{height:55.290000pt;}
.hc_c01060{height:57.593750pt;}
.h9_c01060{height:59.897500pt;}
.h2_c01060{height:62.201250pt;}
.h13_c01060{height:64.505000pt;}
.hf_c01060{height:82.935000pt;}
.h6_c01060{height:85.238750pt;}
.h0_c01060{height:1028.480000pt;}
.h1_c01060{height:1028.666667pt;}
.w1_c01060{width:729.333333pt;}
.w0_c01060{width:729.600000pt;}
.x0_c01060{left:0.000000pt;}
.x29_c01060{left:90.880000pt;}
.x2_c01060{left:92.160160pt;}
.x27_c01060{left:130.560000pt;}
.x2c_c01060{left:156.800000pt;}
.x3_c01060{left:158.080000pt;}
.x1e_c01060{left:159.360000pt;}
.x4_c01060{left:196.480000pt;}
.x17_c01060{left:197.760000pt;}
.x2d_c01060{left:233.600000pt;}
.x18_c01060{left:234.880000pt;}
.x1f_c01060{left:243.840000pt;}
.x20_c01060{left:254.080000pt;}
.x28_c01060{left:263.680000pt;}
.x19_c01060{left:264.960000pt;}
.x2a_c01060{left:272.640000pt;}
.x24_c01060{left:282.880000pt;}
.x23_c01060{left:291.840000pt;}
.x5_c01060{left:293.120000pt;}
.x2b_c01060{left:319.360000pt;}
.x2e_c01060{left:320.640000pt;}
.x1a_c01060{left:339.840000pt;}
.x15_c01060{left:341.120000pt;}
.x25_c01060{left:359.040000pt;}
.xc_c01060{left:368.640000pt;}
.x6_c01060{left:369.920000pt;}
.x1b_c01060{left:388.480000pt;}
.xd_c01060{left:407.680000pt;}
.x7_c01060{left:416.640000pt;}
.x21_c01060{left:426.880000pt;}
.x1c_c01060{left:436.480000pt;}
.x26_c01060{left:445.440000pt;}
.x16_c01060{left:456.320000pt;}
.x22_c01060{left:464.640000pt;}
.x1d_c01060{left:513.280000pt;}
.x8_c01060{left:514.560000pt;}
.x10_c01060{left:523.520000pt;}
.x12_c01060{left:541.440000pt;}
.x11_c01060{left:542.720000pt;}
.x13_c01060{left:561.280000pt;}
.x9_c01060{left:562.560000pt;}
.x32_c01060{left:589.440000pt;}
.xe_c01060{left:591.360000pt;}
.x33_c01060{left:619.520000pt;}
.xf_c01060{left:620.800000pt;}
.x1_c01060{left:628.480000pt;}
.x2f_c01060{left:629.760000pt;}
.x30_c01060{left:649.600000pt;}
.x14_c01060{left:657.280000pt;}
.xa_c01060{left:658.560000pt;}
.x31_c01060{left:675.840000pt;}
.xb_c01060{left:677.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e6feba81d020259ff7f2f967.woff2')format("woff");}.ff1_c01061{font-family:ff1_c01061;line-height:1.109863;font-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_c01061{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mf_c01061{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m12_c01061{transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);}
.m28_c01061{transform:matrix(0.197300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197300,0.000000,0.000000,0.250000,0,0);}
.m9_c01061{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);}
.m4d_c01061{transform:matrix(0.230150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230150,0.000000,0.000000,0.250000,0,0);}
.m3a_c01061{transform:matrix(0.235675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235675,0.000000,0.000000,0.250000,0,0);}
.m17_c01061{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m2_c01061{transform:matrix(0.238300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238300,0.000000,0.000000,0.250000,0,0);}
.m2e_c01061{transform:matrix(0.239375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239375,0.000000,0.000000,0.250000,0,0);}
.m49_c01061{transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);}
.m6_c01061{transform:matrix(0.245150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245150,0.000000,0.000000,0.250000,0,0);}
.m31_c01061{transform:matrix(0.246075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246075,0.000000,0.000000,0.250000,0,0);}
.m13_c01061{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01061{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m47_c01061{transform:matrix(0.247450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247450,0.000000,0.000000,0.250000,0,0);}
.m21_c01061{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_c01061{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m4_c01061{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01061{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);}
.m2c_c01061{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01061{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01061{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m30_c01061{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m0_c01061{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m7_c01061{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m48_c01061{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.md_c01061{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m20_c01061{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01061{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m50_c01061{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mb_c01061{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m29_c01061{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m22_c01061{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m40_c01061{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m36_c01061{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m18_c01061{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m11_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);}
.m38_c01061{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mc_c01061{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01061{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m34_c01061{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01061{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m26_c01061{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m5_c01061{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01061{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01061{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);}
.m4e_c01061{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m44_c01061{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);}
.m24_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);}
.m25_c01061{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m16_c01061{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);}
.m4c_c01061{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01061{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);}
.m33_c01061{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m8_c01061{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m37_c01061{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);}
.m43_c01061{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);}
.m3c_c01061{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01061{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01061{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);}
.m3d_c01061{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m14_c01061{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m35_c01061{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m51_c01061{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m42_c01061{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m45_c01061{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);}
.m41_c01061{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01061{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);}
.m2d_c01061{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m23_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);}
.m46_c01061{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m3_c01061{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01061{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);}
.m15_c01061{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);}
.m1c_c01061{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m39_c01061{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m32_c01061{transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);}
.m10_c01061{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01061{transform:matrix(0.712500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.712500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.712500,0.000000,0.000000,0.250000,0,0);}
.m52_c01061{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.me_c01061{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m1_c01061{transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);}
.v2_c01061{vertical-align:-8.640000px;}
.v1_c01061{vertical-align:-2.880000px;}
.v0_c01061{vertical-align:0.000000px;}
.v3_c01061{vertical-align:2.880000px;}
.ls1_c01061{letter-spacing:0.000000px;}
.ls0_c01061{letter-spacing:93.308400px;}
.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;}
}
.ws3_c01061{word-spacing:-5.809200px;}
.ws2_c01061{word-spacing:-3.940080px;}
.ws5_c01061{word-spacing:0.000000px;}
.ws1_c01061{word-spacing:1.510669px;}
.ws0_c01061{word-spacing:11.690400px;}
.ws4_c01061{word-spacing:45.137376px;}
.fc0_c01061{color:transparent;}
.fsb_c01061{font-size:2.880000px;}
.fs1_c01061{font-size:31.680000px;}
.fsf_c01061{font-size:34.560000px;}
.fsa_c01061{font-size:37.440000px;}
.fse_c01061{font-size:48.960000px;}
.fs3_c01061{font-size:51.840000px;}
.fs7_c01061{font-size:54.720000px;}
.fs5_c01061{font-size:57.600000px;}
.fs6_c01061{font-size:60.480000px;}
.fsc_c01061{font-size:63.360000px;}
.fs0_c01061{font-size:66.240000px;}
.fs8_c01061{font-size:69.120000px;}
.fs4_c01061{font-size:72.000000px;}
.fs2_c01061{font-size:74.880000px;}
.fs9_c01061{font-size:77.760000px;}
.fs10_c01061{font-size:97.920000px;}
.fsd_c01061{font-size:103.680000px;}
.y0_c01061{bottom:0.000000px;}
.y6d_c01061{bottom:120.960000px;}
.y6b_c01061{bottom:121.680000px;}
.y76_c01061{bottom:122.400000px;}
.y6c_c01061{bottom:123.840000px;}
.y6a_c01061{bottom:125.280000px;}
.y69_c01061{bottom:164.160000px;}
.y68_c01061{bottom:165.600000px;}
.y67_c01061{bottom:167.760000px;}
.y75_c01061{bottom:206.640000px;}
.y65_c01061{bottom:207.360000px;}
.y66_c01061{bottom:208.080000px;}
.y64_c01061{bottom:209.520000px;}
.y73_c01061{bottom:250.560000px;}
.y63_c01061{bottom:251.280000px;}
.y74_c01061{bottom:252.000000px;}
.y60_c01061{bottom:252.720000px;}
.y62_c01061{bottom:253.440000px;}
.y61_c01061{bottom:254.160000px;}
.y71_c01061{bottom:293.040000px;}
.y5f_c01061{bottom:293.760000px;}
.y72_c01061{bottom:294.480000px;}
.y5c_c01061{bottom:295.200000px;}
.y5e_c01061{bottom:295.920000px;}
.y5d_c01061{bottom:296.640000px;}
.y5b_c01061{bottom:336.240000px;}
.y5a_c01061{bottom:336.960000px;}
.y59_c01061{bottom:338.400000px;}
.y70_c01061{bottom:379.440000px;}
.y56_c01061{bottom:380.160000px;}
.y58_c01061{bottom:380.880000px;}
.y57_c01061{bottom:381.600000px;}
.y6f_c01061{bottom:382.320000px;}
.y55_c01061{bottom:413.280000px;}
.y54_c01061{bottom:421.200000px;}
.y53_c01061{bottom:421.920000px;}
.y52_c01061{bottom:423.360000px;}
.y6e_c01061{bottom:424.800000px;}
.y50_c01061{bottom:463.680000px;}
.y4f_c01061{bottom:465.120000px;}
.y4e_c01061{bottom:465.840000px;}
.y51_c01061{bottom:468.000000px;}
.y4c_c01061{bottom:507.600000px;}
.y4b_c01061{bottom:508.320000px;}
.y49_c01061{bottom:509.040000px;}
.y4a_c01061{bottom:510.480000px;}
.y4d_c01061{bottom:511.200000px;}
.y47_c01061{bottom:539.280000px;}
.y44_c01061{bottom:540.000000px;}
.y45_c01061{bottom:540.720000px;}
.y48_c01061{bottom:541.440000px;}
.y42_c01061{bottom:542.160000px;}
.y43_c01061{bottom:542.880000px;}
.y46_c01061{bottom:543.600000px;}
.y3e_c01061{bottom:582.480000px;}
.y3f_c01061{bottom:583.200000px;}
.y40_c01061{bottom:583.920000px;}
.y3d_c01061{bottom:584.640000px;}
.y41_c01061{bottom:586.080000px;}
.y3c_c01061{bottom:625.680000px;}
.y3b_c01061{bottom:626.400000px;}
.y3a_c01061{bottom:627.120000px;}
.y36_c01061{bottom:657.360000px;}
.y35_c01061{bottom:658.080000px;}
.y39_c01061{bottom:658.800000px;}
.y34_c01061{bottom:659.520000px;}
.y38_c01061{bottom:660.960000px;}
.y37_c01061{bottom:661.680000px;}
.y30_c01061{bottom:700.560000px;}
.y2f_c01061{bottom:702.000000px;}
.y32_c01061{bottom:702.720000px;}
.y33_c01061{bottom:703.440000px;}
.y31_c01061{bottom:704.880000px;}
.y2b_c01061{bottom:736.560000px;}
.y2a_c01061{bottom:743.760000px;}
.y29_c01061{bottom:745.200000px;}
.y2c_c01061{bottom:745.920000px;}
.y2d_c01061{bottom:747.360000px;}
.y2e_c01061{bottom:748.080000px;}
.y28_c01061{bottom:786.240000px;}
.y25_c01061{bottom:818.640000px;}
.y24_c01061{bottom:819.360000px;}
.y22_c01061{bottom:820.080000px;}
.y23_c01061{bottom:820.800000px;}
.y26_c01061{bottom:822.240000px;}
.y27_c01061{bottom:822.960000px;}
.y1d_c01061{bottom:861.120000px;}
.y20_c01061{bottom:863.280000px;}
.y1c_c01061{bottom:864.000000px;}
.y21_c01061{bottom:864.720000px;}
.y1e_c01061{bottom:865.440000px;}
.y1f_c01061{bottom:866.160000px;}
.y17_c01061{bottom:903.600000px;}
.y19_c01061{bottom:905.040000px;}
.y16_c01061{bottom:905.760000px;}
.y1b_c01061{bottom:906.480000px;}
.y1a_c01061{bottom:907.200000px;}
.y18_c01061{bottom:908.640000px;}
.y15_c01061{bottom:940.320000px;}
.y10_c01061{bottom:946.080000px;}
.y14_c01061{bottom:946.800000px;}
.yf_c01061{bottom:948.240000px;}
.y11_c01061{bottom:948.960000px;}
.y13_c01061{bottom:949.680000px;}
.y12_c01061{bottom:951.120000px;}
.y7_c01061{bottom:989.280000px;}
.y8_c01061{bottom:990.000000px;}
.y6_c01061{bottom:991.440000px;}
.yd_c01061{bottom:992.160000px;}
.yc_c01061{bottom:992.880000px;}
.ye_c01061{bottom:994.320000px;}
.y3_c01061{bottom:1032.480000px;}
.y5_c01061{bottom:1033.200000px;}
.y1_c01061{bottom:1034.640000px;}
.ya_c01061{bottom:1035.360000px;}
.y2_c01061{bottom:1036.080000px;}
.y4_c01061{bottom:1036.800000px;}
.yb_c01061{bottom:1037.520000px;}
.y9_c01061{bottom:1110.960000px;}
.hd_c01061{height:2.591719px;}
.h3_c01061{height:28.508906px;}
.h11_c01061{height:31.100625px;}
.hc_c01061{height:33.692344px;}
.h10_c01061{height:44.059219px;}
.h5_c01061{height:46.650937px;}
.h9_c01061{height:49.242656px;}
.h14_c01061{height:49.530938px;}
.h13_c01061{height:50.969531px;}
.h7_c01061{height:51.834375px;}
.h8_c01061{height:54.426094px;}
.he_c01061{height:57.017812px;}
.h2_c01061{height:59.609531px;}
.ha_c01061{height:62.201250px;}
.h6_c01061{height:64.792969px;}
.h4_c01061{height:67.384687px;}
.hb_c01061{height:69.976406px;}
.h12_c01061{height:88.118437px;}
.hf_c01061{height:93.301875px;}
.h1_c01061{height:1146.000000px;}
.h0_c01061{height:1146.240000px;}
.w1_c01061{width:805.500000px;}
.w0_c01061{width:805.680000px;}
.x0_c01061{left:0.000000px;}
.x1f_c01061{left:95.760000px;}
.x1_c01061{left:97.200000px;}
.x2c_c01061{left:139.680000px;}
.x2_c01061{left:141.120000px;}
.x30_c01061{left:162.000000px;}
.x1e_c01061{left:169.920000px;}
.x3_c01061{left:171.360000px;}
.x1a_c01061{left:225.360000px;}
.x12_c01061{left:228.240000px;}
.x31_c01061{left:257.040000px;}
.x4_c01061{left:258.480000px;}
.x3b_c01061{left:267.120000px;}
.x1b_c01061{left:268.560000px;}
.x2d_c01061{left:289.440000px;}
.x20_c01061{left:300.240000px;}
.x6_c01061{left:301.680000px;}
.x32_c01061{left:310.320000px;}
.x5_c01061{left:312.480000px;}
.x3a_c01061{left:320.400000px;}
.x36_c01061{left:321.840000px;}
.x24_c01061{left:343.440000px;}
.xf_c01061{left:354.240000px;}
.x33_c01061{left:365.040000px;}
.x29_c01061{left:375.840000px;}
.x25_c01061{left:397.440000px;}
.x3c_c01061{left:407.520000px;}
.x1c_c01061{left:419.040000px;}
.x2a_c01061{left:440.640000px;}
.x34_c01061{left:461.520000px;}
.x14_c01061{left:462.960000px;}
.x1d_c01061{left:474.480000px;}
.x2e_c01061{left:483.120000px;}
.x10_c01061{left:495.360000px;}
.x15_c01061{left:516.240000px;}
.x28_c01061{left:526.320000px;}
.x2f_c01061{left:532.080000px;}
.x13_c01061{left:537.840000px;}
.x35_c01061{left:570.240000px;}
.x17_c01061{left:572.400000px;}
.x26_c01061{left:582.480000px;}
.x8_c01061{left:583.920000px;}
.x23_c01061{left:598.320000px;}
.x21_c01061{left:603.360000px;}
.x9_c01061{left:605.520000px;}
.x16_c01061{left:609.120000px;}
.x39_c01061{left:624.240000px;}
.x11_c01061{left:625.680000px;}
.xe_c01061{left:637.200000px;}
.x3e_c01061{left:655.920000px;}
.x2b_c01061{left:657.360000px;}
.xa_c01061{left:658.800000px;}
.x37_c01061{left:689.760000px;}
.x22_c01061{left:691.200000px;}
.xb_c01061{left:692.640000px;}
.x40_c01061{left:699.840000px;}
.x7_c01061{left:717.120000px;}
.x3d_c01061{left:722.880000px;}
.x18_c01061{left:724.320000px;}
.x38_c01061{left:732.240000px;}
.x27_c01061{left:733.680000px;}
.xc_c01061{left:735.120000px;}
.x3f_c01061{left:753.120000px;}
.x19_c01061{left:754.560000px;}
.xd_c01061{left:756.000000px;}
@media print{
.v2_c01061{vertical-align:-7.680000pt;}
.v1_c01061{vertical-align:-2.560000pt;}
.v0_c01061{vertical-align:0.000000pt;}
.v3_c01061{vertical-align:2.560000pt;}
.ls1_c01061{letter-spacing:0.000000pt;}
.ls0_c01061{letter-spacing:82.940800pt;}
.ws3_c01061{word-spacing:-5.163733pt;}
.ws2_c01061{word-spacing:-3.502293pt;}
.ws5_c01061{word-spacing:0.000000pt;}
.ws1_c01061{word-spacing:1.342817pt;}
.ws0_c01061{word-spacing:10.391467pt;}
.ws4_c01061{word-spacing:40.122112pt;}
.fsb_c01061{font-size:2.560000pt;}
.fs1_c01061{font-size:28.160000pt;}
.fsf_c01061{font-size:30.720000pt;}
.fsa_c01061{font-size:33.280000pt;}
.fse_c01061{font-size:43.520000pt;}
.fs3_c01061{font-size:46.080000pt;}
.fs7_c01061{font-size:48.640000pt;}
.fs5_c01061{font-size:51.200000pt;}
.fs6_c01061{font-size:53.760000pt;}
.fsc_c01061{font-size:56.320000pt;}
.fs0_c01061{font-size:58.880000pt;}
.fs8_c01061{font-size:61.440000pt;}
.fs4_c01061{font-size:64.000000pt;}
.fs2_c01061{font-size:66.560000pt;}
.fs9_c01061{font-size:69.120000pt;}
.fs10_c01061{font-size:87.040000pt;}
.fsd_c01061{font-size:92.160000pt;}
.y0_c01061{bottom:0.000000pt;}
.y6d_c01061{bottom:107.520000pt;}
.y6b_c01061{bottom:108.160000pt;}
.y76_c01061{bottom:108.800000pt;}
.y6c_c01061{bottom:110.080000pt;}
.y6a_c01061{bottom:111.360000pt;}
.y69_c01061{bottom:145.920000pt;}
.y68_c01061{bottom:147.200000pt;}
.y67_c01061{bottom:149.120000pt;}
.y75_c01061{bottom:183.680000pt;}
.y65_c01061{bottom:184.320000pt;}
.y66_c01061{bottom:184.960000pt;}
.y64_c01061{bottom:186.240000pt;}
.y73_c01061{bottom:222.720000pt;}
.y63_c01061{bottom:223.360000pt;}
.y74_c01061{bottom:224.000000pt;}
.y60_c01061{bottom:224.640000pt;}
.y62_c01061{bottom:225.280000pt;}
.y61_c01061{bottom:225.920000pt;}
.y71_c01061{bottom:260.480000pt;}
.y5f_c01061{bottom:261.120000pt;}
.y72_c01061{bottom:261.760000pt;}
.y5c_c01061{bottom:262.400000pt;}
.y5e_c01061{bottom:263.040000pt;}
.y5d_c01061{bottom:263.680000pt;}
.y5b_c01061{bottom:298.880000pt;}
.y5a_c01061{bottom:299.520000pt;}
.y59_c01061{bottom:300.800000pt;}
.y70_c01061{bottom:337.280000pt;}
.y56_c01061{bottom:337.920000pt;}
.y58_c01061{bottom:338.560000pt;}
.y57_c01061{bottom:339.200000pt;}
.y6f_c01061{bottom:339.840000pt;}
.y55_c01061{bottom:367.360000pt;}
.y54_c01061{bottom:374.400000pt;}
.y53_c01061{bottom:375.040000pt;}
.y52_c01061{bottom:376.320000pt;}
.y6e_c01061{bottom:377.600000pt;}
.y50_c01061{bottom:412.160000pt;}
.y4f_c01061{bottom:413.440000pt;}
.y4e_c01061{bottom:414.080000pt;}
.y51_c01061{bottom:416.000000pt;}
.y4c_c01061{bottom:451.200000pt;}
.y4b_c01061{bottom:451.840000pt;}
.y49_c01061{bottom:452.480000pt;}
.y4a_c01061{bottom:453.760000pt;}
.y4d_c01061{bottom:454.400000pt;}
.y47_c01061{bottom:479.360000pt;}
.y44_c01061{bottom:480.000000pt;}
.y45_c01061{bottom:480.640000pt;}
.y48_c01061{bottom:481.280000pt;}
.y42_c01061{bottom:481.920000pt;}
.y43_c01061{bottom:482.560000pt;}
.y46_c01061{bottom:483.200000pt;}
.y3e_c01061{bottom:517.760000pt;}
.y3f_c01061{bottom:518.400000pt;}
.y40_c01061{bottom:519.040000pt;}
.y3d_c01061{bottom:519.680000pt;}
.y41_c01061{bottom:520.960000pt;}
.y3c_c01061{bottom:556.160000pt;}
.y3b_c01061{bottom:556.800000pt;}
.y3a_c01061{bottom:557.440000pt;}
.y36_c01061{bottom:584.320000pt;}
.y35_c01061{bottom:584.960000pt;}
.y39_c01061{bottom:585.600000pt;}
.y34_c01061{bottom:586.240000pt;}
.y38_c01061{bottom:587.520000pt;}
.y37_c01061{bottom:588.160000pt;}
.y30_c01061{bottom:622.720000pt;}
.y2f_c01061{bottom:624.000000pt;}
.y32_c01061{bottom:624.640000pt;}
.y33_c01061{bottom:625.280000pt;}
.y31_c01061{bottom:626.560000pt;}
.y2b_c01061{bottom:654.720000pt;}
.y2a_c01061{bottom:661.120000pt;}
.y29_c01061{bottom:662.400000pt;}
.y2c_c01061{bottom:663.040000pt;}
.y2d_c01061{bottom:664.320000pt;}
.y2e_c01061{bottom:664.960000pt;}
.y28_c01061{bottom:698.880000pt;}
.y25_c01061{bottom:727.680000pt;}
.y24_c01061{bottom:728.320000pt;}
.y22_c01061{bottom:728.960000pt;}
.y23_c01061{bottom:729.600000pt;}
.y26_c01061{bottom:730.880000pt;}
.y27_c01061{bottom:731.520000pt;}
.y1d_c01061{bottom:765.440000pt;}
.y20_c01061{bottom:767.360000pt;}
.y1c_c01061{bottom:768.000000pt;}
.y21_c01061{bottom:768.640000pt;}
.y1e_c01061{bottom:769.280000pt;}
.y1f_c01061{bottom:769.920000pt;}
.y17_c01061{bottom:803.200000pt;}
.y19_c01061{bottom:804.480000pt;}
.y16_c01061{bottom:805.120000pt;}
.y1b_c01061{bottom:805.760000pt;}
.y1a_c01061{bottom:806.400000pt;}
.y18_c01061{bottom:807.680000pt;}
.y15_c01061{bottom:835.840000pt;}
.y10_c01061{bottom:840.960000pt;}
.y14_c01061{bottom:841.600000pt;}
.yf_c01061{bottom:842.880000pt;}
.y11_c01061{bottom:843.520000pt;}
.y13_c01061{bottom:844.160000pt;}
.y12_c01061{bottom:845.440000pt;}
.y7_c01061{bottom:879.360000pt;}
.y8_c01061{bottom:880.000000pt;}
.y6_c01061{bottom:881.280000pt;}
.yd_c01061{bottom:881.920000pt;}
.yc_c01061{bottom:882.560000pt;}
.ye_c01061{bottom:883.840000pt;}
.y3_c01061{bottom:917.760000pt;}
.y5_c01061{bottom:918.400000pt;}
.y1_c01061{bottom:919.680000pt;}
.ya_c01061{bottom:920.320000pt;}
.y2_c01061{bottom:920.960000pt;}
.y4_c01061{bottom:921.600000pt;}
.yb_c01061{bottom:922.240000pt;}
.y9_c01061{bottom:987.520000pt;}
.hd_c01061{height:2.303750pt;}
.h3_c01061{height:25.341250pt;}
.h11_c01061{height:27.645000pt;}
.hc_c01061{height:29.948750pt;}
.h10_c01061{height:39.163750pt;}
.h5_c01061{height:41.467500pt;}
.h9_c01061{height:43.771250pt;}
.h14_c01061{height:44.027500pt;}
.h13_c01061{height:45.306250pt;}
.h7_c01061{height:46.075000pt;}
.h8_c01061{height:48.378750pt;}
.he_c01061{height:50.682500pt;}
.h2_c01061{height:52.986250pt;}
.ha_c01061{height:55.290000pt;}
.h6_c01061{height:57.593750pt;}
.h4_c01061{height:59.897500pt;}
.hb_c01061{height:62.201250pt;}
.h12_c01061{height:78.327500pt;}
.hf_c01061{height:82.935000pt;}
.h1_c01061{height:1018.666667pt;}
.h0_c01061{height:1018.880000pt;}
.w1_c01061{width:716.000000pt;}
.w0_c01061{width:716.160000pt;}
.x0_c01061{left:0.000000pt;}
.x1f_c01061{left:85.120000pt;}
.x1_c01061{left:86.400000pt;}
.x2c_c01061{left:124.160000pt;}
.x2_c01061{left:125.440000pt;}
.x30_c01061{left:144.000000pt;}
.x1e_c01061{left:151.040000pt;}
.x3_c01061{left:152.320000pt;}
.x1a_c01061{left:200.320000pt;}
.x12_c01061{left:202.880000pt;}
.x31_c01061{left:228.480000pt;}
.x4_c01061{left:229.760000pt;}
.x3b_c01061{left:237.440000pt;}
.x1b_c01061{left:238.720000pt;}
.x2d_c01061{left:257.280000pt;}
.x20_c01061{left:266.880000pt;}
.x6_c01061{left:268.160000pt;}
.x32_c01061{left:275.840000pt;}
.x5_c01061{left:277.760000pt;}
.x3a_c01061{left:284.800000pt;}
.x36_c01061{left:286.080000pt;}
.x24_c01061{left:305.280000pt;}
.xf_c01061{left:314.880000pt;}
.x33_c01061{left:324.480000pt;}
.x29_c01061{left:334.080000pt;}
.x25_c01061{left:353.280000pt;}
.x3c_c01061{left:362.240000pt;}
.x1c_c01061{left:372.480000pt;}
.x2a_c01061{left:391.680000pt;}
.x34_c01061{left:410.240000pt;}
.x14_c01061{left:411.520000pt;}
.x1d_c01061{left:421.760000pt;}
.x2e_c01061{left:429.440000pt;}
.x10_c01061{left:440.320000pt;}
.x15_c01061{left:458.880000pt;}
.x28_c01061{left:467.840000pt;}
.x2f_c01061{left:472.960000pt;}
.x13_c01061{left:478.080000pt;}
.x35_c01061{left:506.880000pt;}
.x17_c01061{left:508.800000pt;}
.x26_c01061{left:517.760000pt;}
.x8_c01061{left:519.040000pt;}
.x23_c01061{left:531.840000pt;}
.x21_c01061{left:536.320000pt;}
.x9_c01061{left:538.240000pt;}
.x16_c01061{left:541.440000pt;}
.x39_c01061{left:554.880000pt;}
.x11_c01061{left:556.160000pt;}
.xe_c01061{left:566.400000pt;}
.x3e_c01061{left:583.040000pt;}
.x2b_c01061{left:584.320000pt;}
.xa_c01061{left:585.600000pt;}
.x37_c01061{left:613.120000pt;}
.x22_c01061{left:614.400000pt;}
.xb_c01061{left:615.680000pt;}
.x40_c01061{left:622.080000pt;}
.x7_c01061{left:637.440000pt;}
.x3d_c01061{left:642.560000pt;}
.x18_c01061{left:643.840000pt;}
.x38_c01061{left:650.880000pt;}
.x27_c01061{left:652.160000pt;}
.xc_c01061{left:653.440000pt;}
.x3f_c01061{left:669.440000pt;}
.x19_c01061{left:670.720000pt;}
.xd_c01061{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_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_09bbe6e8300f162e84b6652c.woff2')format("woff");}.ff1_c01062{font-family:ff1_c01062;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m46_c01062{transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);}
.m44_c01062{transform:matrix(0.172950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172950,0.000000,0.000000,0.250000,0,0);}
.m49_c01062{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m40_c01062{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.m1d_c01062{transform:matrix(0.205350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205350,0.000000,0.000000,0.250000,0,0);}
.m5a_c01062{transform:matrix(0.207775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207775,0.000000,0.000000,0.250000,0,0);}
.m26_c01062{transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);}
.m2a_c01062{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m3d_c01062{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m21_c01062{transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);}
.m45_c01062{transform:matrix(0.235025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235025,0.000000,0.000000,0.250000,0,0);}
.m5b_c01062{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m1b_c01062{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m39_c01062{transform:matrix(0.239525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239525,0.000000,0.000000,0.250000,0,0);}
.m34_c01062{transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);}
.m41_c01062{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.mc_c01062{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m30_c01062{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01062{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_c01062{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);}
.m57_c01062{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);}
.m59_c01062{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);}
.m28_c01062{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);}
.m3e_c01062{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);}
.m4b_c01062{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_c01062{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);}
.m38_c01062{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m6_c01062{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_c01062{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mb_c01062{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1_c01062{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m11_c01062{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m3_c01062{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01062{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01062{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m9_c01062{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m20_c01062{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m31_c01062{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01062{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01062{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01062{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m14_c01062{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m29_c01062{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m25_c01062{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m5_c01062{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m4d_c01062{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m2_c01062{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);}
.m37_c01062{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m33_c01062{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);}
.m53_c01062{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m22_c01062{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m0_c01062{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m12_c01062{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);}
.m56_c01062{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01062{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);}
.m1e_c01062{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);}
.m3b_c01062{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m16_c01062{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m5d_c01062{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);}
.m35_c01062{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01062{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m19_c01062{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);}
.m7_c01062{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);}
.m4_c01062{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_c01062{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);}
.m3f_c01062{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01062{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);}
.m13_c01062{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_c01062{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);}
.m23_c01062{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m15_c01062{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m42_c01062{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);}
.m52_c01062{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m54_c01062{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m8_c01062{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m27_c01062{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m58_c01062{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m50_c01062{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m4e_c01062{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);}
.mf_c01062{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m48_c01062{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01062{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);}
.m55_c01062{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m51_c01062{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m43_c01062{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m32_c01062{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01062{transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);}
.m10_c01062{transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);}
.m4a_c01062{transform:matrix(0.712500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.712500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.712500,0.000000,0.000000,0.250000,0,0);}
.m5c_c01062{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m47_c01062{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.md_c01062{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01062{transform:matrix(1.147500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.147500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.147500,0.000000,0.000000,0.250000,0,0);}
.m18_c01062{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.v1_c01062{vertical-align:-8.640000px;}
.v0_c01062{vertical-align:0.000000px;}
.v2_c01062{vertical-align:2.880000px;}
.ls1_c01062{letter-spacing:0.000000px;}
.ls0_c01062{letter-spacing:59.634960px;}
.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;}
}
.ws1_c01062{word-spacing:-5.470080px;}
.ws2_c01062{word-spacing:0.000000px;}
.ws0_c01062{word-spacing:36.718410px;}
.fc0_c01062{color:transparent;}
.fsc_c01062{font-size:6.000000px;}
.fsd_c01062{font-size:14.400000px;}
.fs10_c01062{font-size:20.160000px;}
.fs7_c01062{font-size:23.040000px;}
.fs8_c01062{font-size:25.920000px;}
.fs14_c01062{font-size:31.680000px;}
.fs12_c01062{font-size:37.440000px;}
.fs3_c01062{font-size:43.200000px;}
.fsa_c01062{font-size:46.080000px;}
.fs1_c01062{font-size:48.960000px;}
.fs2_c01062{font-size:51.840000px;}
.fs6_c01062{font-size:54.720000px;}
.fs5_c01062{font-size:57.600000px;}
.fs4_c01062{font-size:60.480000px;}
.fse_c01062{font-size:63.360000px;}
.fsf_c01062{font-size:66.240000px;}
.fs0_c01062{font-size:69.120000px;}
.fs13_c01062{font-size:72.000000px;}
.fs9_c01062{font-size:74.880000px;}
.fs11_c01062{font-size:77.760000px;}
.fsb_c01062{font-size:86.400000px;}
.y0_c01062{bottom:0.000000px;}
.y8a_c01062{bottom:69.840000px;}
.y8d_c01062{bottom:70.560000px;}
.y8c_c01062{bottom:71.280000px;}
.y8b_c01062{bottom:72.720000px;}
.y88_c01062{bottom:73.440000px;}
.y89_c01062{bottom:74.880000px;}
.y84_c01062{bottom:113.760000px;}
.y87_c01062{bottom:114.480000px;}
.y85_c01062{bottom:115.920000px;}
.y81_c01062{bottom:116.640000px;}
.y86_c01062{bottom:117.360000px;}
.y82_c01062{bottom:118.080000px;}
.y83_c01062{bottom:118.800000px;}
.y7d_c01062{bottom:156.960000px;}
.y7f_c01062{bottom:157.680000px;}
.y7e_c01062{bottom:159.120000px;}
.y7b_c01062{bottom:159.840000px;}
.y80_c01062{bottom:160.560000px;}
.y7c_c01062{bottom:161.280000px;}
.y77_c01062{bottom:200.160000px;}
.y79_c01062{bottom:200.880000px;}
.y7a_c01062{bottom:201.600000px;}
.y78_c01062{bottom:202.320000px;}
.y74_c01062{bottom:203.040000px;}
.y76_c01062{bottom:203.760000px;}
.y75_c01062{bottom:204.480000px;}
.y71_c01062{bottom:242.640000px;}
.y73_c01062{bottom:244.080000px;}
.y72_c01062{bottom:244.800000px;}
.y6e_c01062{bottom:245.520000px;}
.y70_c01062{bottom:246.240000px;}
.y6f_c01062{bottom:246.960000px;}
.y6c_c01062{bottom:285.840000px;}
.y6d_c01062{bottom:287.280000px;}
.y69_c01062{bottom:288.000000px;}
.y6b_c01062{bottom:288.720000px;}
.y6a_c01062{bottom:289.440000px;}
.y66_c01062{bottom:329.040000px;}
.y64_c01062{bottom:330.480000px;}
.y67_c01062{bottom:331.200000px;}
.y65_c01062{bottom:331.920000px;}
.y68_c01062{bottom:333.360000px;}
.y62_c01062{bottom:371.520000px;}
.y63_c01062{bottom:373.680000px;}
.y60_c01062{bottom:374.400000px;}
.y61_c01062{bottom:375.840000px;}
.y5e_c01062{bottom:414.720000px;}
.y5b_c01062{bottom:416.880000px;}
.y5f_c01062{bottom:417.600000px;}
.y5d_c01062{bottom:418.320000px;}
.y5c_c01062{bottom:419.040000px;}
.y59_c01062{bottom:457.920000px;}
.y5a_c01062{bottom:459.360000px;}
.y57_c01062{bottom:460.080000px;}
.y58_c01062{bottom:461.520000px;}
.y54_c01062{bottom:500.400000px;}
.y52_c01062{bottom:502.560000px;}
.y55_c01062{bottom:503.280000px;}
.y53_c01062{bottom:504.000000px;}
.y56_c01062{bottom:504.720000px;}
.y4e_c01062{bottom:542.880000px;}
.y4f_c01062{bottom:543.600000px;}
.y4c_c01062{bottom:545.040000px;}
.y4d_c01062{bottom:545.760000px;}
.y50_c01062{bottom:546.480000px;}
.y51_c01062{bottom:547.920000px;}
.y49_c01062{bottom:587.520000px;}
.y4b_c01062{bottom:588.960000px;}
.y48_c01062{bottom:589.680000px;}
.y4a_c01062{bottom:590.400000px;}
.y46_c01062{bottom:652.320000px;}
.y47_c01062{bottom:653.040000px;}
.y44_c01062{bottom:673.920000px;}
.y45_c01062{bottom:676.080000px;}
.y43_c01062{bottom:695.520000px;}
.y42_c01062{bottom:696.240000px;}
.y41_c01062{bottom:696.960000px;}
.y3e_c01062{bottom:716.400000px;}
.y40_c01062{bottom:717.120000px;}
.y3f_c01062{bottom:720.000000px;}
.y3a_c01062{bottom:729.360000px;}
.y3d_c01062{bottom:732.240000px;}
.y3b_c01062{bottom:738.720000px;}
.y3c_c01062{bottom:741.600000px;}
.y34_c01062{bottom:758.160000px;}
.y35_c01062{bottom:758.880000px;}
.y37_c01062{bottom:760.320000px;}
.y39_c01062{bottom:761.040000px;}
.y36_c01062{bottom:761.760000px;}
.y38_c01062{bottom:762.480000px;}
.y30_c01062{bottom:781.200000px;}
.y32_c01062{bottom:781.920000px;}
.y33_c01062{bottom:782.640000px;}
.y31_c01062{bottom:784.080000px;}
.y2a_c01062{bottom:792.720000px;}
.y2b_c01062{bottom:793.440000px;}
.y2c_c01062{bottom:794.160000px;}
.y2d_c01062{bottom:794.880000px;}
.y2e_c01062{bottom:803.520000px;}
.y2f_c01062{bottom:804.240000px;}
.y26_c01062{bottom:824.400000px;}
.y28_c01062{bottom:825.120000px;}
.y27_c01062{bottom:825.840000px;}
.y29_c01062{bottom:827.280000px;}
.y25_c01062{bottom:846.720000px;}
.y24_c01062{bottom:848.880000px;}
.y1f_c01062{bottom:858.240000px;}
.y20_c01062{bottom:859.680000px;}
.y23_c01062{bottom:868.320000px;}
.y22_c01062{bottom:869.040000px;}
.y21_c01062{bottom:869.760000px;}
.y1d_c01062{bottom:889.200000px;}
.y1e_c01062{bottom:889.920000px;}
.y1c_c01062{bottom:890.640000px;}
.y1b_c01062{bottom:891.360000px;}
.y1a_c01062{bottom:911.520000px;}
.y16_c01062{bottom:932.400000px;}
.y17_c01062{bottom:933.120000px;}
.y19_c01062{bottom:933.840000px;}
.y18_c01062{bottom:934.560000px;}
.y15_c01062{bottom:941.760000px;}
.y12_c01062{bottom:942.480000px;}
.y13_c01062{bottom:943.200000px;}
.y14_c01062{bottom:946.800000px;}
.ye_c01062{bottom:952.560000px;}
.yf_c01062{bottom:953.280000px;}
.y10_c01062{bottom:960.480000px;}
.y11_c01062{bottom:966.960000px;}
.y9_c01062{bottom:1006.560000px;}
.y8_c01062{bottom:1007.280000px;}
.ya_c01062{bottom:1008.000000px;}
.yb_c01062{bottom:1009.440000px;}
.yd_c01062{bottom:1010.160000px;}
.yc_c01062{bottom:1013.760000px;}
.y6_c01062{bottom:1016.640000px;}
.y5_c01062{bottom:1018.080000px;}
.y7_c01062{bottom:1018.800000px;}
.y2_c01062{bottom:1030.320000px;}
.y3_c01062{bottom:1031.040000px;}
.y4_c01062{bottom:1032.480000px;}
.y1_c01062{bottom:1116.000000px;}
.he_c01062{height:5.399414px;}
.hf_c01062{height:12.958594px;}
.h13_c01062{height:18.142031px;}
.h9_c01062{height:20.733750px;}
.ha_c01062{height:23.325469px;}
.h17_c01062{height:28.508906px;}
.h15_c01062{height:33.692344px;}
.h5_c01062{height:38.875781px;}
.hc_c01062{height:41.467500px;}
.h3_c01062{height:44.059219px;}
.h4_c01062{height:46.650937px;}
.h8_c01062{height:49.242656px;}
.h12_c01062{height:50.969531px;}
.h7_c01062{height:51.834375px;}
.h6_c01062{height:54.426094px;}
.h10_c01062{height:57.017812px;}
.h11_c01062{height:59.609531px;}
.h2_c01062{height:62.201250px;}
.h16_c01062{height:64.792969px;}
.hb_c01062{height:67.384687px;}
.h14_c01062{height:69.976406px;}
.hd_c01062{height:77.751563px;}
.h0_c01062{height:1157.760000px;}
.h1_c01062{height:1158.000000px;}
.w1_c01062{width:822.750000px;}
.w0_c01062{width:822.960000px;}
.x0_c01062{left:0.000000px;}
.x7_c01062{left:101.520000px;}
.x2b_c01062{left:102.960000px;}
.x1b_c01062{left:123.120000px;}
.x14_c01062{left:133.920000px;}
.x8_c01062{left:135.360000px;}
.x38_c01062{left:146.880000px;}
.x1c_c01062{left:155.520000px;}
.x15_c01062{left:177.120000px;}
.x29_c01062{left:189.360000px;}
.x16_c01062{left:199.440000px;}
.x9_c01062{left:208.080000px;}
.x1d_c01062{left:210.960000px;}
.x23_c01062{left:219.600000px;}
.x2c_c01062{left:221.760000px;}
.x17_c01062{left:231.120000px;}
.x1e_c01062{left:241.200000px;}
.x20_c01062{left:242.640000px;}
.x26_c01062{left:252.720000px;}
.x2a_c01062{left:262.800000px;}
.x3d_c01062{left:264.240000px;}
.x24_c01062{left:274.320000px;}
.x2_c01062{left:275.760000px;}
.xf_c01062{left:285.840000px;}
.x18_c01062{left:295.920000px;}
.x2d_c01062{left:306.000000px;}
.x3b_c01062{left:308.160000px;}
.x10_c01062{left:316.800000px;}
.x3_c01062{left:328.320000px;}
.x34_c01062{left:360.720000px;}
.x4_c01062{left:382.320000px;}
.xa_c01062{left:393.840000px;}
.x5_c01062{left:447.840000px;}
.x21_c01062{left:449.280000px;}
.x19_c01062{left:459.360000px;}
.x11_c01062{left:479.520000px;}
.x1a_c01062{left:501.120000px;}
.x6_c01062{left:502.560000px;}
.x12_c01062{left:524.880000px;}
.xb_c01062{left:533.520000px;}
.x22_c01062{left:534.960000px;}
.xc_c01062{left:556.560000px;}
.x2e_c01062{left:576.720000px;}
.x3e_c01062{left:578.160000px;}
.xd_c01062{left:587.520000px;}
.x28_c01062{left:588.960000px;}
.x1f_c01062{left:598.320000px;}
.x13_c01062{left:599.760000px;}
.xe_c01062{left:622.080000px;}
.x25_c01062{left:631.440000px;}
.x27_c01062{left:632.880000px;}
.x31_c01062{left:641.520000px;}
.x39_c01062{left:642.960000px;}
.x3f_c01062{left:653.040000px;}
.x32_c01062{left:655.200000px;}
.x35_c01062{left:664.560000px;}
.x40_c01062{left:686.880000px;}
.x36_c01062{left:696.960000px;}
.x37_c01062{left:699.120000px;}
.x1_c01062{left:702.000000px;}
.x3a_c01062{left:707.760000px;}
.x41_c01062{left:729.360000px;}
.x33_c01062{left:739.440000px;}
.x2f_c01062{left:740.880000px;}
.x42_c01062{left:750.240000px;}
.x30_c01062{left:759.600000px;}
.x3c_c01062{left:761.040000px;}
@media print{
.v1_c01062{vertical-align:-7.680000pt;}
.v0_c01062{vertical-align:0.000000pt;}
.v2_c01062{vertical-align:2.560000pt;}
.ls1_c01062{letter-spacing:0.000000pt;}
.ls0_c01062{letter-spacing:53.008853pt;}
.ws1_c01062{word-spacing:-4.862293pt;}
.ws2_c01062{word-spacing:0.000000pt;}
.ws0_c01062{word-spacing:32.638587pt;}
.fsc_c01062{font-size:5.333333pt;}
.fsd_c01062{font-size:12.800000pt;}
.fs10_c01062{font-size:17.920000pt;}
.fs7_c01062{font-size:20.480000pt;}
.fs8_c01062{font-size:23.040000pt;}
.fs14_c01062{font-size:28.160000pt;}
.fs12_c01062{font-size:33.280000pt;}
.fs3_c01062{font-size:38.400000pt;}
.fsa_c01062{font-size:40.960000pt;}
.fs1_c01062{font-size:43.520000pt;}
.fs2_c01062{font-size:46.080000pt;}
.fs6_c01062{font-size:48.640000pt;}
.fs5_c01062{font-size:51.200000pt;}
.fs4_c01062{font-size:53.760000pt;}
.fse_c01062{font-size:56.320000pt;}
.fsf_c01062{font-size:58.880000pt;}
.fs0_c01062{font-size:61.440000pt;}
.fs13_c01062{font-size:64.000000pt;}
.fs9_c01062{font-size:66.560000pt;}
.fs11_c01062{font-size:69.120000pt;}
.fsb_c01062{font-size:76.800000pt;}
.y0_c01062{bottom:0.000000pt;}
.y8a_c01062{bottom:62.080000pt;}
.y8d_c01062{bottom:62.720000pt;}
.y8c_c01062{bottom:63.360000pt;}
.y8b_c01062{bottom:64.640000pt;}
.y88_c01062{bottom:65.280000pt;}
.y89_c01062{bottom:66.560000pt;}
.y84_c01062{bottom:101.120000pt;}
.y87_c01062{bottom:101.760000pt;}
.y85_c01062{bottom:103.040000pt;}
.y81_c01062{bottom:103.680000pt;}
.y86_c01062{bottom:104.320000pt;}
.y82_c01062{bottom:104.960000pt;}
.y83_c01062{bottom:105.600000pt;}
.y7d_c01062{bottom:139.520000pt;}
.y7f_c01062{bottom:140.160000pt;}
.y7e_c01062{bottom:141.440000pt;}
.y7b_c01062{bottom:142.080000pt;}
.y80_c01062{bottom:142.720000pt;}
.y7c_c01062{bottom:143.360000pt;}
.y77_c01062{bottom:177.920000pt;}
.y79_c01062{bottom:178.560000pt;}
.y7a_c01062{bottom:179.200000pt;}
.y78_c01062{bottom:179.840000pt;}
.y74_c01062{bottom:180.480000pt;}
.y76_c01062{bottom:181.120000pt;}
.y75_c01062{bottom:181.760000pt;}
.y71_c01062{bottom:215.680000pt;}
.y73_c01062{bottom:216.960000pt;}
.y72_c01062{bottom:217.600000pt;}
.y6e_c01062{bottom:218.240000pt;}
.y70_c01062{bottom:218.880000pt;}
.y6f_c01062{bottom:219.520000pt;}
.y6c_c01062{bottom:254.080000pt;}
.y6d_c01062{bottom:255.360000pt;}
.y69_c01062{bottom:256.000000pt;}
.y6b_c01062{bottom:256.640000pt;}
.y6a_c01062{bottom:257.280000pt;}
.y66_c01062{bottom:292.480000pt;}
.y64_c01062{bottom:293.760000pt;}
.y67_c01062{bottom:294.400000pt;}
.y65_c01062{bottom:295.040000pt;}
.y68_c01062{bottom:296.320000pt;}
.y62_c01062{bottom:330.240000pt;}
.y63_c01062{bottom:332.160000pt;}
.y60_c01062{bottom:332.800000pt;}
.y61_c01062{bottom:334.080000pt;}
.y5e_c01062{bottom:368.640000pt;}
.y5b_c01062{bottom:370.560000pt;}
.y5f_c01062{bottom:371.200000pt;}
.y5d_c01062{bottom:371.840000pt;}
.y5c_c01062{bottom:372.480000pt;}
.y59_c01062{bottom:407.040000pt;}
.y5a_c01062{bottom:408.320000pt;}
.y57_c01062{bottom:408.960000pt;}
.y58_c01062{bottom:410.240000pt;}
.y54_c01062{bottom:444.800000pt;}
.y52_c01062{bottom:446.720000pt;}
.y55_c01062{bottom:447.360000pt;}
.y53_c01062{bottom:448.000000pt;}
.y56_c01062{bottom:448.640000pt;}
.y4e_c01062{bottom:482.560000pt;}
.y4f_c01062{bottom:483.200000pt;}
.y4c_c01062{bottom:484.480000pt;}
.y4d_c01062{bottom:485.120000pt;}
.y50_c01062{bottom:485.760000pt;}
.y51_c01062{bottom:487.040000pt;}
.y49_c01062{bottom:522.240000pt;}
.y4b_c01062{bottom:523.520000pt;}
.y48_c01062{bottom:524.160000pt;}
.y4a_c01062{bottom:524.800000pt;}
.y46_c01062{bottom:579.840000pt;}
.y47_c01062{bottom:580.480000pt;}
.y44_c01062{bottom:599.040000pt;}
.y45_c01062{bottom:600.960000pt;}
.y43_c01062{bottom:618.240000pt;}
.y42_c01062{bottom:618.880000pt;}
.y41_c01062{bottom:619.520000pt;}
.y3e_c01062{bottom:636.800000pt;}
.y40_c01062{bottom:637.440000pt;}
.y3f_c01062{bottom:640.000000pt;}
.y3a_c01062{bottom:648.320000pt;}
.y3d_c01062{bottom:650.880000pt;}
.y3b_c01062{bottom:656.640000pt;}
.y3c_c01062{bottom:659.200000pt;}
.y34_c01062{bottom:673.920000pt;}
.y35_c01062{bottom:674.560000pt;}
.y37_c01062{bottom:675.840000pt;}
.y39_c01062{bottom:676.480000pt;}
.y36_c01062{bottom:677.120000pt;}
.y38_c01062{bottom:677.760000pt;}
.y30_c01062{bottom:694.400000pt;}
.y32_c01062{bottom:695.040000pt;}
.y33_c01062{bottom:695.680000pt;}
.y31_c01062{bottom:696.960000pt;}
.y2a_c01062{bottom:704.640000pt;}
.y2b_c01062{bottom:705.280000pt;}
.y2c_c01062{bottom:705.920000pt;}
.y2d_c01062{bottom:706.560000pt;}
.y2e_c01062{bottom:714.240000pt;}
.y2f_c01062{bottom:714.880000pt;}
.y26_c01062{bottom:732.800000pt;}
.y28_c01062{bottom:733.440000pt;}
.y27_c01062{bottom:734.080000pt;}
.y29_c01062{bottom:735.360000pt;}
.y25_c01062{bottom:752.640000pt;}
.y24_c01062{bottom:754.560000pt;}
.y1f_c01062{bottom:762.880000pt;}
.y20_c01062{bottom:764.160000pt;}
.y23_c01062{bottom:771.840000pt;}
.y22_c01062{bottom:772.480000pt;}
.y21_c01062{bottom:773.120000pt;}
.y1d_c01062{bottom:790.400000pt;}
.y1e_c01062{bottom:791.040000pt;}
.y1c_c01062{bottom:791.680000pt;}
.y1b_c01062{bottom:792.320000pt;}
.y1a_c01062{bottom:810.240000pt;}
.y16_c01062{bottom:828.800000pt;}
.y17_c01062{bottom:829.440000pt;}
.y19_c01062{bottom:830.080000pt;}
.y18_c01062{bottom:830.720000pt;}
.y15_c01062{bottom:837.120000pt;}
.y12_c01062{bottom:837.760000pt;}
.y13_c01062{bottom:838.400000pt;}
.y14_c01062{bottom:841.600000pt;}
.ye_c01062{bottom:846.720000pt;}
.yf_c01062{bottom:847.360000pt;}
.y10_c01062{bottom:853.760000pt;}
.y11_c01062{bottom:859.520000pt;}
.y9_c01062{bottom:894.720000pt;}
.y8_c01062{bottom:895.360000pt;}
.ya_c01062{bottom:896.000000pt;}
.yb_c01062{bottom:897.280000pt;}
.yd_c01062{bottom:897.920000pt;}
.yc_c01062{bottom:901.120000pt;}
.y6_c01062{bottom:903.680000pt;}
.y5_c01062{bottom:904.960000pt;}
.y7_c01062{bottom:905.600000pt;}
.y2_c01062{bottom:915.840000pt;}
.y3_c01062{bottom:916.480000pt;}
.y4_c01062{bottom:917.760000pt;}
.y1_c01062{bottom:992.000000pt;}
.he_c01062{height:4.799479pt;}
.hf_c01062{height:11.518750pt;}
.h13_c01062{height:16.126250pt;}
.h9_c01062{height:18.430000pt;}
.ha_c01062{height:20.733750pt;}
.h17_c01062{height:25.341250pt;}
.h15_c01062{height:29.948750pt;}
.h5_c01062{height:34.556250pt;}
.hc_c01062{height:36.860000pt;}
.h3_c01062{height:39.163750pt;}
.h4_c01062{height:41.467500pt;}
.h8_c01062{height:43.771250pt;}
.h12_c01062{height:45.306250pt;}
.h7_c01062{height:46.075000pt;}
.h6_c01062{height:48.378750pt;}
.h10_c01062{height:50.682500pt;}
.h11_c01062{height:52.986250pt;}
.h2_c01062{height:55.290000pt;}
.h16_c01062{height:57.593750pt;}
.hb_c01062{height:59.897500pt;}
.h14_c01062{height:62.201250pt;}
.hd_c01062{height:69.112500pt;}
.h0_c01062{height:1029.120000pt;}
.h1_c01062{height:1029.333333pt;}
.w1_c01062{width:731.333333pt;}
.w0_c01062{width:731.520000pt;}
.x0_c01062{left:0.000000pt;}
.x7_c01062{left:90.240000pt;}
.x2b_c01062{left:91.520000pt;}
.x1b_c01062{left:109.440000pt;}
.x14_c01062{left:119.040000pt;}
.x8_c01062{left:120.320000pt;}
.x38_c01062{left:130.560000pt;}
.x1c_c01062{left:138.240000pt;}
.x15_c01062{left:157.440000pt;}
.x29_c01062{left:168.320000pt;}
.x16_c01062{left:177.280000pt;}
.x9_c01062{left:184.960000pt;}
.x1d_c01062{left:187.520000pt;}
.x23_c01062{left:195.200000pt;}
.x2c_c01062{left:197.120000pt;}
.x17_c01062{left:205.440000pt;}
.x1e_c01062{left:214.400000pt;}
.x20_c01062{left:215.680000pt;}
.x26_c01062{left:224.640000pt;}
.x2a_c01062{left:233.600000pt;}
.x3d_c01062{left:234.880000pt;}
.x24_c01062{left:243.840000pt;}
.x2_c01062{left:245.120000pt;}
.xf_c01062{left:254.080000pt;}
.x18_c01062{left:263.040000pt;}
.x2d_c01062{left:272.000000pt;}
.x3b_c01062{left:273.920000pt;}
.x10_c01062{left:281.600000pt;}
.x3_c01062{left:291.840000pt;}
.x34_c01062{left:320.640000pt;}
.x4_c01062{left:339.840000pt;}
.xa_c01062{left:350.080000pt;}
.x5_c01062{left:398.080000pt;}
.x21_c01062{left:399.360000pt;}
.x19_c01062{left:408.320000pt;}
.x11_c01062{left:426.240000pt;}
.x1a_c01062{left:445.440000pt;}
.x6_c01062{left:446.720000pt;}
.x12_c01062{left:466.560000pt;}
.xb_c01062{left:474.240000pt;}
.x22_c01062{left:475.520000pt;}
.xc_c01062{left:494.720000pt;}
.x2e_c01062{left:512.640000pt;}
.x3e_c01062{left:513.920000pt;}
.xd_c01062{left:522.240000pt;}
.x28_c01062{left:523.520000pt;}
.x1f_c01062{left:531.840000pt;}
.x13_c01062{left:533.120000pt;}
.xe_c01062{left:552.960000pt;}
.x25_c01062{left:561.280000pt;}
.x27_c01062{left:562.560000pt;}
.x31_c01062{left:570.240000pt;}
.x39_c01062{left:571.520000pt;}
.x3f_c01062{left:580.480000pt;}
.x32_c01062{left:582.400000pt;}
.x35_c01062{left:590.720000pt;}
.x40_c01062{left:610.560000pt;}
.x36_c01062{left:619.520000pt;}
.x37_c01062{left:621.440000pt;}
.x1_c01062{left:624.000000pt;}
.x3a_c01062{left:629.120000pt;}
.x41_c01062{left:648.320000pt;}
.x33_c01062{left:657.280000pt;}
.x2f_c01062{left:658.560000pt;}
.x42_c01062{left:666.880000pt;}
.x30_c01062{left:675.200000pt;}
.x3c_c01062{left:676.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_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_6707870334b7f4f09085c1d6.woff2')format("woff");}.ff1_c01063{font-family:ff1_c01063;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m53_c01063{transform:matrix(0.185775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185775,0.000000,0.000000,0.250000,0,0);}
.m29_c01063{transform:matrix(0.208400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208400,0.000000,0.000000,0.250000,0,0);}
.m40_c01063{transform:matrix(0.225550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225550,0.000000,0.000000,0.250000,0,0);}
.m52_c01063{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m33_c01063{transform:matrix(0.236100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236100,0.000000,0.000000,0.250000,0,0);}
.m4a_c01063{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m32_c01063{transform:matrix(0.242325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242325,0.000000,0.000000,0.250000,0,0);}
.me_c01063{transform:matrix(0.244725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244725,0.000000,0.000000,0.250000,0,0);}
.m3b_c01063{transform:matrix(0.246650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246650,0.000000,0.000000,0.250000,0,0);}
.m2a_c01063{transform:matrix(0.246850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246850,0.000000,0.000000,0.250000,0,0);}
.m30_c01063{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m39_c01063{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);}
.m37_c01063{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);}
.m4c_c01063{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m28_c01063{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);}
.m43_c01063{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m11_c01063{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m0_c01063{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);}
.m2d_c01063{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);}
.m44_c01063{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);}
.m51_c01063{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01063{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m5_c01063{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m4_c01063{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mc_c01063{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m27_c01063{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m16_c01063{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m6_c01063{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01063{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m18_c01063{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m17_c01063{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01063{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m35_c01063{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m8_c01063{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.md_c01063{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01063{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01063{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2_c01063{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m47_c01063{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m12_c01063{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.ma_c01063{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m9_c01063{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m20_c01063{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);}
.m3d_c01063{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m19_c01063{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m7_c01063{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_c01063{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);}
.m45_c01063{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);}
.m1a_c01063{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01063{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.mf_c01063{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m36_c01063{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);}
.m22_c01063{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m10_c01063{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m31_c01063{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01063{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);}
.m2f_c01063{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);}
.m46_c01063{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m23_c01063{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m4d_c01063{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01063{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m34_c01063{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01063{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01063{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01063{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m54_c01063{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m42_c01063{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);}
.m38_c01063{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m24_c01063{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);}
.m1e_c01063{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);}
.m1f_c01063{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m15_c01063{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);}
.m50_c01063{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m14_c01063{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.mb_c01063{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);}
.m21_c01063{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m3_c01063{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);}
.m26_c01063{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01063{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01063{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01063{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m49_c01063{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m1_c01063{transform:matrix(0.775000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.775000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.775000,0.000000,0.000000,0.250000,0,0);}
.m48_c01063{transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);}
.m41_c01063{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.v1_c01063{vertical-align:-17.280000px;}
.v5_c01063{vertical-align:-8.640000px;}
.v0_c01063{vertical-align:0.000000px;}
.v4_c01063{vertical-align:2.880000px;}
.v2_c01063{vertical-align:5.760000px;}
.v3_c01063{vertical-align:11.520000px;}
.ls0_c01063{letter-spacing:0.000000px;}
.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;}
}
.ws2_c01063{word-spacing:-3.304080px;}
.ws6_c01063{word-spacing:0.000000px;}
.ws3_c01063{word-spacing:6.728400px;}
.ws0_c01063{word-spacing:8.711760px;}
.ws4_c01063{word-spacing:9.212400px;}
.ws5_c01063{word-spacing:11.693143px;}
.ws1_c01063{word-spacing:444.628080px;}
.fc0_c01063{color:transparent;}
.fs12_c01063{font-size:23.040000px;}
.fs11_c01063{font-size:25.920000px;}
.fs1_c01063{font-size:34.560000px;}
.fs3_c01063{font-size:37.440000px;}
.fsb_c01063{font-size:40.320000px;}
.fs10_c01063{font-size:43.200000px;}
.fse_c01063{font-size:46.080000px;}
.fsd_c01063{font-size:48.960000px;}
.fs2_c01063{font-size:51.840000px;}
.fs9_c01063{font-size:54.720000px;}
.fsc_c01063{font-size:57.600000px;}
.fs6_c01063{font-size:60.480000px;}
.fs5_c01063{font-size:63.360000px;}
.fs0_c01063{font-size:66.240000px;}
.fs7_c01063{font-size:69.120000px;}
.fs8_c01063{font-size:72.000000px;}
.fsa_c01063{font-size:74.880000px;}
.fs4_c01063{font-size:77.760000px;}
.fsf_c01063{font-size:103.680000px;}
.y0_c01063{bottom:0.000000px;}
.y6c_c01063{bottom:41.040000px;}
.y73_c01063{bottom:42.480000px;}
.y8d_c01063{bottom:43.200000px;}
.y69_c01063{bottom:45.360000px;}
.y6a_c01063{bottom:46.080000px;}
.y6b_c01063{bottom:46.800000px;}
.y68_c01063{bottom:83.520000px;}
.y8c_c01063{bottom:84.240000px;}
.y72_c01063{bottom:84.960000px;}
.y8b_c01063{bottom:85.680000px;}
.y65_c01063{bottom:86.400000px;}
.y67_c01063{bottom:88.560000px;}
.y66_c01063{bottom:91.440000px;}
.y64_c01063{bottom:126.000000px;}
.y8a_c01063{bottom:127.440000px;}
.y71_c01063{bottom:128.160000px;}
.y62_c01063{bottom:129.600000px;}
.y63_c01063{bottom:131.040000px;}
.y61_c01063{bottom:169.200000px;}
.y70_c01063{bottom:170.640000px;}
.y89_c01063{bottom:171.360000px;}
.y5f_c01063{bottom:172.800000px;}
.y60_c01063{bottom:174.240000px;}
.y5e_c01063{bottom:212.400000px;}
.y6f_c01063{bottom:213.120000px;}
.y88_c01063{bottom:214.560000px;}
.y5b_c01063{bottom:215.280000px;}
.y5d_c01063{bottom:216.720000px;}
.y5c_c01063{bottom:217.440000px;}
.y5a_c01063{bottom:254.880000px;}
.y87_c01063{bottom:255.600000px;}
.y6e_c01063{bottom:256.320000px;}
.y58_c01063{bottom:257.760000px;}
.y59_c01063{bottom:259.200000px;}
.y57_c01063{bottom:297.360000px;}
.y86_c01063{bottom:298.080000px;}
.y54_c01063{bottom:298.800000px;}
.y6d_c01063{bottom:299.520000px;}
.y53_c01063{bottom:300.240000px;}
.y56_c01063{bottom:300.960000px;}
.y55_c01063{bottom:301.680000px;}
.y52_c01063{bottom:339.840000px;}
.y84_c01063{bottom:341.280000px;}
.y85_c01063{bottom:342.000000px;}
.y50_c01063{bottom:343.440000px;}
.y51_c01063{bottom:344.880000px;}
.y4f_c01063{bottom:375.840000px;}
.y4d_c01063{bottom:383.040000px;}
.y49_c01063{bottom:383.760000px;}
.y4e_c01063{bottom:384.480000px;}
.y4c_c01063{bottom:385.200000px;}
.y48_c01063{bottom:385.920000px;}
.y4b_c01063{bottom:386.640000px;}
.y4a_c01063{bottom:387.360000px;}
.y43_c01063{bottom:426.240000px;}
.y45_c01063{bottom:426.960000px;}
.y47_c01063{bottom:427.680000px;}
.y42_c01063{bottom:428.400000px;}
.y44_c01063{bottom:429.120000px;}
.y46_c01063{bottom:429.840000px;}
.y82_c01063{bottom:470.160000px;}
.y83_c01063{bottom:471.600000px;}
.y3d_c01063{bottom:511.920000px;}
.y40_c01063{bottom:512.640000px;}
.y3f_c01063{bottom:513.360000px;}
.y3e_c01063{bottom:514.080000px;}
.y3c_c01063{bottom:514.800000px;}
.y41_c01063{bottom:515.520000px;}
.y39_c01063{bottom:555.840000px;}
.y81_c01063{bottom:556.560000px;}
.y3a_c01063{bottom:557.280000px;}
.y38_c01063{bottom:558.000000px;}
.y3b_c01063{bottom:558.720000px;}
.y35_c01063{bottom:598.320000px;}
.y80_c01063{bottom:599.040000px;}
.y34_c01063{bottom:599.760000px;}
.y7f_c01063{bottom:600.480000px;}
.y37_c01063{bottom:601.920000px;}
.y36_c01063{bottom:602.640000px;}
.y33_c01063{bottom:635.040000px;}
.y30_c01063{bottom:641.520000px;}
.y32_c01063{bottom:642.960000px;}
.y7d_c01063{bottom:643.680000px;}
.y2f_c01063{bottom:644.400000px;}
.y31_c01063{bottom:645.120000px;}
.y7e_c01063{bottom:646.560000px;}
.y2e_c01063{bottom:684.720000px;}
.y2c_c01063{bottom:685.440000px;}
.y2d_c01063{bottom:687.600000px;}
.y7c_c01063{bottom:717.840000px;}
.y29_c01063{bottom:718.560000px;}
.y2b_c01063{bottom:719.280000px;}
.y2a_c01063{bottom:720.720000px;}
.y28_c01063{bottom:759.600000px;}
.y27_c01063{bottom:763.200000px;}
.y26_c01063{bottom:763.920000px;}
.y25_c01063{bottom:792.720000px;}
.y23_c01063{bottom:793.440000px;}
.y22_c01063{bottom:794.880000px;}
.y24_c01063{bottom:795.600000px;}
.y1e_c01063{bottom:823.680000px;}
.y1f_c01063{bottom:824.400000px;}
.y1c_c01063{bottom:825.120000px;}
.y7a_c01063{bottom:825.840000px;}
.y21_c01063{bottom:826.560000px;}
.y1d_c01063{bottom:827.280000px;}
.y20_c01063{bottom:828.000000px;}
.y7b_c01063{bottom:828.720000px;}
.y19_c01063{bottom:866.160000px;}
.y1b_c01063{bottom:866.880000px;}
.y17_c01063{bottom:867.600000px;}
.y78_c01063{bottom:868.320000px;}
.y79_c01063{bottom:869.040000px;}
.y18_c01063{bottom:869.760000px;}
.y1a_c01063{bottom:870.480000px;}
.y13_c01063{bottom:908.640000px;}
.y15_c01063{bottom:910.080000px;}
.y11_c01063{bottom:910.800000px;}
.y77_c01063{bottom:911.520000px;}
.y12_c01063{bottom:912.240000px;}
.y16_c01063{bottom:912.960000px;}
.y14_c01063{bottom:913.680000px;}
.y76_c01063{bottom:914.400000px;}
.yd_c01063{bottom:951.120000px;}
.yb_c01063{bottom:952.560000px;}
.y10_c01063{bottom:953.280000px;}
.yf_c01063{bottom:954.000000px;}
.yc_c01063{bottom:954.720000px;}
.ye_c01063{bottom:956.160000px;}
.ya_c01063{bottom:995.040000px;}
.y8_c01063{bottom:995.760000px;}
.y6_c01063{bottom:997.200000px;}
.y5_c01063{bottom:997.920000px;}
.y7_c01063{bottom:998.640000px;}
.y9_c01063{bottom:999.360000px;}
.y75_c01063{bottom:1000.080000px;}
.y4_c01063{bottom:1038.240000px;}
.y1_c01063{bottom:1039.680000px;}
.y2_c01063{bottom:1041.120000px;}
.y3_c01063{bottom:1041.840000px;}
.y74_c01063{bottom:1044.000000px;}
.h16_c01063{height:20.733750px;}
.h14_c01063{height:23.325469px;}
.h3_c01063{height:31.100625px;}
.h5_c01063{height:33.692344px;}
.hd_c01063{height:36.284062px;}
.h13_c01063{height:38.875781px;}
.h11_c01063{height:41.467500px;}
.hf_c01063{height:44.059219px;}
.h4_c01063{height:46.650937px;}
.hb_c01063{height:49.242656px;}
.h10_c01063{height:50.104687px;}
.he_c01063{height:51.834375px;}
.h8_c01063{height:54.426094px;}
.h7_c01063{height:57.017812px;}
.h17_c01063{height:57.306094px;}
.h2_c01063{height:59.609531px;}
.h15_c01063{height:60.762656px;}
.h9_c01063{height:62.201250px;}
.ha_c01063{height:64.792969px;}
.hc_c01063{height:67.384687px;}
.h6_c01063{height:69.976406px;}
.h12_c01063{height:93.301875px;}
.h0_c01063{height:1155.600000px;}
.h1_c01063{height:1155.750000px;}
.w1_c01063{width:820.500000px;}
.w0_c01063{width:820.800000px;}
.x0_c01063{left:0.000000px;}
.x2c_c01063{left:97.920000px;}
.x1_c01063{left:99.360000px;}
.x2f_c01063{left:142.560000px;}
.x2_c01063{left:144.000000px;}
.x2e_c01063{left:151.200000px;}
.x29_c01063{left:172.080000px;}
.x3_c01063{left:173.520000px;}
.x16_c01063{left:174.960000px;}
.x19_c01063{left:205.200000px;}
.x2b_c01063{left:215.280000px;}
.x7_c01063{left:216.720000px;}
.x4_c01063{left:218.160000px;}
.x2d_c01063{left:226.080000px;}
.x2a_c01063{left:227.520000px;}
.x1a_c01063{left:248.400000px;}
.x1c_c01063{left:259.200000px;}
.x5_c01063{left:261.360000px;}
.x8_c01063{left:270.000000px;}
.x17_c01063{left:271.440000px;}
.x23_c01063{left:280.800000px;}
.x1b_c01063{left:303.120000px;}
.x18_c01063{left:313.200000px;}
.x9_c01063{left:315.360000px;}
.x10_c01063{left:324.000000px;}
.xb_c01063{left:326.160000px;}
.x24_c01063{left:335.520000px;}
.x1d_c01063{left:345.600000px;}
.x21_c01063{left:347.040000px;}
.xa_c01063{left:357.840000px;}
.xc_c01063{left:368.640000px;}
.x12_c01063{left:378.000000px;}
.x27_c01063{left:401.760000px;}
.xf_c01063{left:411.120000px;}
.x22_c01063{left:421.200000px;}
.x13_c01063{left:423.360000px;}
.x25_c01063{left:432.000000px;}
.x20_c01063{left:442.800000px;}
.x11_c01063{left:454.320000px;}
.x14_c01063{left:465.120000px;}
.x26_c01063{left:475.200000px;}
.x1e_c01063{left:476.640000px;}
.xd_c01063{left:486.720000px;}
.x15_c01063{left:509.040000px;}
.x28_c01063{left:517.680000px;}
.xe_c01063{left:530.640000px;}
.x1f_c01063{left:573.120000px;}
.x6_c01063{left:574.560000px;}
.x3b_c01063{left:627.120000px;}
.x37_c01063{left:628.560000px;}
.x30_c01063{left:640.080000px;}
.x3e_c01063{left:658.800000px;}
.x39_c01063{left:660.240000px;}
.x33_c01063{left:661.680000px;}
.x3f_c01063{left:691.920000px;}
.x3a_c01063{left:693.360000px;}
.x34_c01063{left:694.800000px;}
.x31_c01063{left:705.600000px;}
.x3d_c01063{left:725.760000px;}
.x35_c01063{left:727.920000px;}
.x40_c01063{left:734.400000px;}
.x38_c01063{left:736.560000px;}
.x32_c01063{left:738.720000px;}
.x3c_c01063{left:756.720000px;}
.x36_c01063{left:758.160000px;}
@media print{
.v1_c01063{vertical-align:-15.360000pt;}
.v5_c01063{vertical-align:-7.680000pt;}
.v0_c01063{vertical-align:0.000000pt;}
.v4_c01063{vertical-align:2.560000pt;}
.v2_c01063{vertical-align:5.120000pt;}
.v3_c01063{vertical-align:10.240000pt;}
.ls0_c01063{letter-spacing:0.000000pt;}
.ws2_c01063{word-spacing:-2.936960pt;}
.ws6_c01063{word-spacing:0.000000pt;}
.ws3_c01063{word-spacing:5.980800pt;}
.ws0_c01063{word-spacing:7.743787pt;}
.ws4_c01063{word-spacing:8.188800pt;}
.ws5_c01063{word-spacing:10.393905pt;}
.ws1_c01063{word-spacing:395.224960pt;}
.fs12_c01063{font-size:20.480000pt;}
.fs11_c01063{font-size:23.040000pt;}
.fs1_c01063{font-size:30.720000pt;}
.fs3_c01063{font-size:33.280000pt;}
.fsb_c01063{font-size:35.840000pt;}
.fs10_c01063{font-size:38.400000pt;}
.fse_c01063{font-size:40.960000pt;}
.fsd_c01063{font-size:43.520000pt;}
.fs2_c01063{font-size:46.080000pt;}
.fs9_c01063{font-size:48.640000pt;}
.fsc_c01063{font-size:51.200000pt;}
.fs6_c01063{font-size:53.760000pt;}
.fs5_c01063{font-size:56.320000pt;}
.fs0_c01063{font-size:58.880000pt;}
.fs7_c01063{font-size:61.440000pt;}
.fs8_c01063{font-size:64.000000pt;}
.fsa_c01063{font-size:66.560000pt;}
.fs4_c01063{font-size:69.120000pt;}
.fsf_c01063{font-size:92.160000pt;}
.y0_c01063{bottom:0.000000pt;}
.y6c_c01063{bottom:36.480000pt;}
.y73_c01063{bottom:37.760000pt;}
.y8d_c01063{bottom:38.400000pt;}
.y69_c01063{bottom:40.320000pt;}
.y6a_c01063{bottom:40.960000pt;}
.y6b_c01063{bottom:41.600000pt;}
.y68_c01063{bottom:74.240000pt;}
.y8c_c01063{bottom:74.880000pt;}
.y72_c01063{bottom:75.520000pt;}
.y8b_c01063{bottom:76.160000pt;}
.y65_c01063{bottom:76.800000pt;}
.y67_c01063{bottom:78.720000pt;}
.y66_c01063{bottom:81.280000pt;}
.y64_c01063{bottom:112.000000pt;}
.y8a_c01063{bottom:113.280000pt;}
.y71_c01063{bottom:113.920000pt;}
.y62_c01063{bottom:115.200000pt;}
.y63_c01063{bottom:116.480000pt;}
.y61_c01063{bottom:150.400000pt;}
.y70_c01063{bottom:151.680000pt;}
.y89_c01063{bottom:152.320000pt;}
.y5f_c01063{bottom:153.600000pt;}
.y60_c01063{bottom:154.880000pt;}
.y5e_c01063{bottom:188.800000pt;}
.y6f_c01063{bottom:189.440000pt;}
.y88_c01063{bottom:190.720000pt;}
.y5b_c01063{bottom:191.360000pt;}
.y5d_c01063{bottom:192.640000pt;}
.y5c_c01063{bottom:193.280000pt;}
.y5a_c01063{bottom:226.560000pt;}
.y87_c01063{bottom:227.200000pt;}
.y6e_c01063{bottom:227.840000pt;}
.y58_c01063{bottom:229.120000pt;}
.y59_c01063{bottom:230.400000pt;}
.y57_c01063{bottom:264.320000pt;}
.y86_c01063{bottom:264.960000pt;}
.y54_c01063{bottom:265.600000pt;}
.y6d_c01063{bottom:266.240000pt;}
.y53_c01063{bottom:266.880000pt;}
.y56_c01063{bottom:267.520000pt;}
.y55_c01063{bottom:268.160000pt;}
.y52_c01063{bottom:302.080000pt;}
.y84_c01063{bottom:303.360000pt;}
.y85_c01063{bottom:304.000000pt;}
.y50_c01063{bottom:305.280000pt;}
.y51_c01063{bottom:306.560000pt;}
.y4f_c01063{bottom:334.080000pt;}
.y4d_c01063{bottom:340.480000pt;}
.y49_c01063{bottom:341.120000pt;}
.y4e_c01063{bottom:341.760000pt;}
.y4c_c01063{bottom:342.400000pt;}
.y48_c01063{bottom:343.040000pt;}
.y4b_c01063{bottom:343.680000pt;}
.y4a_c01063{bottom:344.320000pt;}
.y43_c01063{bottom:378.880000pt;}
.y45_c01063{bottom:379.520000pt;}
.y47_c01063{bottom:380.160000pt;}
.y42_c01063{bottom:380.800000pt;}
.y44_c01063{bottom:381.440000pt;}
.y46_c01063{bottom:382.080000pt;}
.y82_c01063{bottom:417.920000pt;}
.y83_c01063{bottom:419.200000pt;}
.y3d_c01063{bottom:455.040000pt;}
.y40_c01063{bottom:455.680000pt;}
.y3f_c01063{bottom:456.320000pt;}
.y3e_c01063{bottom:456.960000pt;}
.y3c_c01063{bottom:457.600000pt;}
.y41_c01063{bottom:458.240000pt;}
.y39_c01063{bottom:494.080000pt;}
.y81_c01063{bottom:494.720000pt;}
.y3a_c01063{bottom:495.360000pt;}
.y38_c01063{bottom:496.000000pt;}
.y3b_c01063{bottom:496.640000pt;}
.y35_c01063{bottom:531.840000pt;}
.y80_c01063{bottom:532.480000pt;}
.y34_c01063{bottom:533.120000pt;}
.y7f_c01063{bottom:533.760000pt;}
.y37_c01063{bottom:535.040000pt;}
.y36_c01063{bottom:535.680000pt;}
.y33_c01063{bottom:564.480000pt;}
.y30_c01063{bottom:570.240000pt;}
.y32_c01063{bottom:571.520000pt;}
.y7d_c01063{bottom:572.160000pt;}
.y2f_c01063{bottom:572.800000pt;}
.y31_c01063{bottom:573.440000pt;}
.y7e_c01063{bottom:574.720000pt;}
.y2e_c01063{bottom:608.640000pt;}
.y2c_c01063{bottom:609.280000pt;}
.y2d_c01063{bottom:611.200000pt;}
.y7c_c01063{bottom:638.080000pt;}
.y29_c01063{bottom:638.720000pt;}
.y2b_c01063{bottom:639.360000pt;}
.y2a_c01063{bottom:640.640000pt;}
.y28_c01063{bottom:675.200000pt;}
.y27_c01063{bottom:678.400000pt;}
.y26_c01063{bottom:679.040000pt;}
.y25_c01063{bottom:704.640000pt;}
.y23_c01063{bottom:705.280000pt;}
.y22_c01063{bottom:706.560000pt;}
.y24_c01063{bottom:707.200000pt;}
.y1e_c01063{bottom:732.160000pt;}
.y1f_c01063{bottom:732.800000pt;}
.y1c_c01063{bottom:733.440000pt;}
.y7a_c01063{bottom:734.080000pt;}
.y21_c01063{bottom:734.720000pt;}
.y1d_c01063{bottom:735.360000pt;}
.y20_c01063{bottom:736.000000pt;}
.y7b_c01063{bottom:736.640000pt;}
.y19_c01063{bottom:769.920000pt;}
.y1b_c01063{bottom:770.560000pt;}
.y17_c01063{bottom:771.200000pt;}
.y78_c01063{bottom:771.840000pt;}
.y79_c01063{bottom:772.480000pt;}
.y18_c01063{bottom:773.120000pt;}
.y1a_c01063{bottom:773.760000pt;}
.y13_c01063{bottom:807.680000pt;}
.y15_c01063{bottom:808.960000pt;}
.y11_c01063{bottom:809.600000pt;}
.y77_c01063{bottom:810.240000pt;}
.y12_c01063{bottom:810.880000pt;}
.y16_c01063{bottom:811.520000pt;}
.y14_c01063{bottom:812.160000pt;}
.y76_c01063{bottom:812.800000pt;}
.yd_c01063{bottom:845.440000pt;}
.yb_c01063{bottom:846.720000pt;}
.y10_c01063{bottom:847.360000pt;}
.yf_c01063{bottom:848.000000pt;}
.yc_c01063{bottom:848.640000pt;}
.ye_c01063{bottom:849.920000pt;}
.ya_c01063{bottom:884.480000pt;}
.y8_c01063{bottom:885.120000pt;}
.y6_c01063{bottom:886.400000pt;}
.y5_c01063{bottom:887.040000pt;}
.y7_c01063{bottom:887.680000pt;}
.y9_c01063{bottom:888.320000pt;}
.y75_c01063{bottom:888.960000pt;}
.y4_c01063{bottom:922.880000pt;}
.y1_c01063{bottom:924.160000pt;}
.y2_c01063{bottom:925.440000pt;}
.y3_c01063{bottom:926.080000pt;}
.y74_c01063{bottom:928.000000pt;}
.h16_c01063{height:18.430000pt;}
.h14_c01063{height:20.733750pt;}
.h3_c01063{height:27.645000pt;}
.h5_c01063{height:29.948750pt;}
.hd_c01063{height:32.252500pt;}
.h13_c01063{height:34.556250pt;}
.h11_c01063{height:36.860000pt;}
.hf_c01063{height:39.163750pt;}
.h4_c01063{height:41.467500pt;}
.hb_c01063{height:43.771250pt;}
.h10_c01063{height:44.537500pt;}
.he_c01063{height:46.075000pt;}
.h8_c01063{height:48.378750pt;}
.h7_c01063{height:50.682500pt;}
.h17_c01063{height:50.938750pt;}
.h2_c01063{height:52.986250pt;}
.h15_c01063{height:54.011250pt;}
.h9_c01063{height:55.290000pt;}
.ha_c01063{height:57.593750pt;}
.hc_c01063{height:59.897500pt;}
.h6_c01063{height:62.201250pt;}
.h12_c01063{height:82.935000pt;}
.h0_c01063{height:1027.200000pt;}
.h1_c01063{height:1027.333333pt;}
.w1_c01063{width:729.333333pt;}
.w0_c01063{width:729.600000pt;}
.x0_c01063{left:0.000000pt;}
.x2c_c01063{left:87.040000pt;}
.x1_c01063{left:88.320000pt;}
.x2f_c01063{left:126.720000pt;}
.x2_c01063{left:128.000000pt;}
.x2e_c01063{left:134.400000pt;}
.x29_c01063{left:152.960000pt;}
.x3_c01063{left:154.240000pt;}
.x16_c01063{left:155.520000pt;}
.x19_c01063{left:182.400000pt;}
.x2b_c01063{left:191.360000pt;}
.x7_c01063{left:192.640000pt;}
.x4_c01063{left:193.920000pt;}
.x2d_c01063{left:200.960000pt;}
.x2a_c01063{left:202.240000pt;}
.x1a_c01063{left:220.800000pt;}
.x1c_c01063{left:230.400000pt;}
.x5_c01063{left:232.320000pt;}
.x8_c01063{left:240.000000pt;}
.x17_c01063{left:241.280000pt;}
.x23_c01063{left:249.600000pt;}
.x1b_c01063{left:269.440000pt;}
.x18_c01063{left:278.400000pt;}
.x9_c01063{left:280.320000pt;}
.x10_c01063{left:288.000000pt;}
.xb_c01063{left:289.920000pt;}
.x24_c01063{left:298.240000pt;}
.x1d_c01063{left:307.200000pt;}
.x21_c01063{left:308.480000pt;}
.xa_c01063{left:318.080000pt;}
.xc_c01063{left:327.680000pt;}
.x12_c01063{left:336.000000pt;}
.x27_c01063{left:357.120000pt;}
.xf_c01063{left:365.440000pt;}
.x22_c01063{left:374.400000pt;}
.x13_c01063{left:376.320000pt;}
.x25_c01063{left:384.000000pt;}
.x20_c01063{left:393.600000pt;}
.x11_c01063{left:403.840000pt;}
.x14_c01063{left:413.440000pt;}
.x26_c01063{left:422.400000pt;}
.x1e_c01063{left:423.680000pt;}
.xd_c01063{left:432.640000pt;}
.x15_c01063{left:452.480000pt;}
.x28_c01063{left:460.160000pt;}
.xe_c01063{left:471.680000pt;}
.x1f_c01063{left:509.440000pt;}
.x6_c01063{left:510.720000pt;}
.x3b_c01063{left:557.440000pt;}
.x37_c01063{left:558.720000pt;}
.x30_c01063{left:568.960000pt;}
.x3e_c01063{left:585.600000pt;}
.x39_c01063{left:586.880000pt;}
.x33_c01063{left:588.160000pt;}
.x3f_c01063{left:615.040000pt;}
.x3a_c01063{left:616.320000pt;}
.x34_c01063{left:617.600000pt;}
.x31_c01063{left:627.200000pt;}
.x3d_c01063{left:645.120000pt;}
.x35_c01063{left:647.040000pt;}
.x40_c01063{left:652.800000pt;}
.x38_c01063{left:654.720000pt;}
.x32_c01063{left:656.640000pt;}
.x3c_c01063{left:672.640000pt;}
.x36_c01063{left:673.920000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6b5a80fc7ce701beb50e66f0.woff2')format("woff");}.ff1_c01064{font-family:ff1_c01064;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m43_c01064{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m47_c01064{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);}
.m30_c01064{transform:matrix(0.227300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227300,0.000000,0.000000,0.250000,0,0);}
.m24_c01064{transform:matrix(0.230325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230325,0.000000,0.000000,0.250000,0,0);}
.m2a_c01064{transform:matrix(0.230775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230775,0.000000,0.000000,0.250000,0,0);}
.m28_c01064{transform:matrix(0.232125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232125,0.000000,0.000000,0.250000,0,0);}
.m49_c01064{transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);}
.m35_c01064{transform:matrix(0.232650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232650,0.000000,0.000000,0.250000,0,0);}
.me_c01064{transform:matrix(0.234300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234300,0.000000,0.000000,0.250000,0,0);}
.m45_c01064{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m31_c01064{transform:matrix(0.238225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238225,0.000000,0.000000,0.250000,0,0);}
.m2f_c01064{transform:matrix(0.238375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238375,0.000000,0.000000,0.250000,0,0);}
.m2c_c01064{transform:matrix(0.238900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238900,0.000000,0.000000,0.250000,0,0);}
.m20_c01064{transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);}
.m22_c01064{transform:matrix(0.241625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241625,0.000000,0.000000,0.250000,0,0);}
.m27_c01064{transform:matrix(0.243975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243975,0.000000,0.000000,0.250000,0,0);}
.m41_c01064{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m2b_c01064{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m26_c01064{transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);}
.m36_c01064{transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);}
.m7_c01064{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01064{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01064{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);}
.m3b_c01064{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);}
.m21_c01064{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_c01064{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);}
.m33_c01064{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);}
.m3d_c01064{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01064{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m4_c01064{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m37_c01064{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1_c01064{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m29_c01064{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);}
.m40_c01064{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m17_c01064{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01064{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m5_c01064{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mc_c01064{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01064{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m15_c01064{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m12_c01064{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.ma_c01064{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mb_c01064{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01064{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01064{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mf_c01064{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m0_c01064{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m18_c01064{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01064{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);}
.m46_c01064{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m14_c01064{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m48_c01064{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.md_c01064{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);}
.m2d_c01064{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m44_c01064{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);}
.m38_c01064{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m6_c01064{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m23_c01064{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m2_c01064{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);}
.m32_c01064{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);}
.m3f_c01064{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01064{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);}
.m10_c01064{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m3_c01064{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m25_c01064{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);}
.m34_c01064{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m16_c01064{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m13_c01064{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01064{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);}
.m8_c01064{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);}
.m9_c01064{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m42_c01064{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m11_c01064{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m39_c01064{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01064{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.v1_c01064{vertical-align:-5.760000px;}
.v0_c01064{vertical-align:0.000000px;}
.v2_c01064{vertical-align:5.760000px;}
.ls0_c01064{letter-spacing:0.000000px;}
.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:-2.145840px;}
.ws6_c01064{word-spacing:-0.303368px;}
.ws7_c01064{word-spacing:0.000000px;}
.ws3_c01064{word-spacing:6.728400px;}
.ws5_c01064{word-spacing:7.917875px;}
.ws1_c01064{word-spacing:9.474000px;}
.ws4_c01064{word-spacing:12.200751px;}
.ws2_c01064{word-spacing:200.384400px;}
.fc0_c01064{color:transparent;}
.fs6_c01064{font-size:37.440000px;}
.fs7_c01064{font-size:40.320000px;}
.fsc_c01064{font-size:48.960000px;}
.fs2_c01064{font-size:51.840000px;}
.fs3_c01064{font-size:54.720000px;}
.fs9_c01064{font-size:57.600000px;}
.fs5_c01064{font-size:60.480000px;}
.fsa_c01064{font-size:63.360000px;}
.fs0_c01064{font-size:66.240000px;}
.fsb_c01064{font-size:69.120000px;}
.fs8_c01064{font-size:72.000000px;}
.fs4_c01064{font-size:74.880000px;}
.fs1_c01064{font-size:77.760000px;}
.fsd_c01064{font-size:80.640000px;}
.fse_c01064{font-size:83.520000px;}
.y0_c01064{bottom:0.000000px;}
.y57_c01064{bottom:64.080000px;}
.y58_c01064{bottom:64.800000px;}
.y85_c01064{bottom:65.520000px;}
.y56_c01064{bottom:66.240000px;}
.y55_c01064{bottom:103.680000px;}
.y53_c01064{bottom:107.280000px;}
.y54_c01064{bottom:108.720000px;}
.y52_c01064{bottom:109.440000px;}
.y84_c01064{bottom:110.160000px;}
.y51_c01064{bottom:148.320000px;}
.y50_c01064{bottom:149.760000px;}
.y82_c01064{bottom:150.480000px;}
.y81_c01064{bottom:151.200000px;}
.y4f_c01064{bottom:151.920000px;}
.y83_c01064{bottom:152.640000px;}
.y4e_c01064{bottom:192.240000px;}
.y4c_c01064{bottom:192.960000px;}
.y80_c01064{bottom:193.680000px;}
.y4b_c01064{bottom:195.120000px;}
.y4d_c01064{bottom:195.840000px;}
.y48_c01064{bottom:235.440000px;}
.y4a_c01064{bottom:236.160000px;}
.y49_c01064{bottom:236.880000px;}
.y47_c01064{bottom:237.600000px;}
.y43_c01064{bottom:277.920000px;}
.y46_c01064{bottom:278.640000px;}
.y45_c01064{bottom:279.360000px;}
.y7f_c01064{bottom:280.080000px;}
.y42_c01064{bottom:280.800000px;}
.y44_c01064{bottom:282.240000px;}
.y41_c01064{bottom:320.400000px;}
.y40_c01064{bottom:321.120000px;}
.y7e_c01064{bottom:322.560000px;}
.y7d_c01064{bottom:323.280000px;}
.y3f_c01064{bottom:324.000000px;}
.y3e_c01064{bottom:362.880000px;}
.y7b_c01064{bottom:365.040000px;}
.y79_c01064{bottom:365.760000px;}
.y3d_c01064{bottom:366.480000px;}
.y7c_c01064{bottom:367.200000px;}
.y7a_c01064{bottom:367.920000px;}
.y3c_c01064{bottom:406.080000px;}
.y3a_c01064{bottom:406.800000px;}
.y78_c01064{bottom:408.240000px;}
.y77_c01064{bottom:408.960000px;}
.y39_c01064{bottom:409.680000px;}
.y3b_c01064{bottom:410.400000px;}
.y36_c01064{bottom:449.280000px;}
.y38_c01064{bottom:450.000000px;}
.y76_c01064{bottom:450.720000px;}
.y37_c01064{bottom:451.440000px;}
.y35_c01064{bottom:452.160000px;}
.y33_c01064{bottom:491.760000px;}
.y34_c01064{bottom:492.480000px;}
.y74_c01064{bottom:493.920000px;}
.y32_c01064{bottom:494.640000px;}
.y73_c01064{bottom:495.360000px;}
.y75_c01064{bottom:496.080000px;}
.y2f_c01064{bottom:534.960000px;}
.y31_c01064{bottom:535.680000px;}
.y72_c01064{bottom:537.120000px;}
.y2e_c01064{bottom:537.840000px;}
.y30_c01064{bottom:539.280000px;}
.y2d_c01064{bottom:578.160000px;}
.y70_c01064{bottom:579.600000px;}
.y2c_c01064{bottom:580.320000px;}
.y6f_c01064{bottom:581.040000px;}
.y71_c01064{bottom:582.480000px;}
.y28_c01064{bottom:619.920000px;}
.y2b_c01064{bottom:621.360000px;}
.y27_c01064{bottom:622.080000px;}
.y2a_c01064{bottom:622.800000px;}
.y6e_c01064{bottom:623.520000px;}
.y29_c01064{bottom:624.240000px;}
.y25_c01064{bottom:662.400000px;}
.y24_c01064{bottom:665.280000px;}
.y6c_c01064{bottom:666.000000px;}
.y26_c01064{bottom:666.720000px;}
.y6d_c01064{bottom:668.880000px;}
.y23_c01064{bottom:706.320000px;}
.y22_c01064{bottom:707.760000px;}
.y69_c01064{bottom:708.480000px;}
.y6a_c01064{bottom:709.200000px;}
.y6b_c01064{bottom:710.640000px;}
.y20_c01064{bottom:748.800000px;}
.y21_c01064{bottom:749.520000px;}
.y1f_c01064{bottom:750.240000px;}
.y68_c01064{bottom:750.960000px;}
.y67_c01064{bottom:752.400000px;}
.y1c_c01064{bottom:791.280000px;}
.y1e_c01064{bottom:792.720000px;}
.y1b_c01064{bottom:794.160000px;}
.y65_c01064{bottom:794.880000px;}
.y1d_c01064{bottom:795.600000px;}
.y66_c01064{bottom:797.760000px;}
.y1a_c01064{bottom:834.480000px;}
.y19_c01064{bottom:836.640000px;}
.y61_c01064{bottom:838.080000px;}
.y64_c01064{bottom:838.800000px;}
.y62_c01064{bottom:840.240000px;}
.y63_c01064{bottom:840.960000px;}
.y17_c01064{bottom:876.960000px;}
.y16_c01064{bottom:879.120000px;}
.y18_c01064{bottom:879.840000px;}
.y5f_c01064{bottom:882.000000px;}
.y60_c01064{bottom:883.440000px;}
.y15_c01064{bottom:921.600000px;}
.y13_c01064{bottom:923.040000px;}
.y12_c01064{bottom:923.760000px;}
.y14_c01064{bottom:924.480000px;}
.yd_c01064{bottom:951.840000px;}
.yc_c01064{bottom:954.720000px;}
.y10_c01064{bottom:955.440000px;}
.ye_c01064{bottom:956.160000px;}
.yf_c01064{bottom:957.600000px;}
.y11_c01064{bottom:958.320000px;}
.y5e_c01064{bottom:959.040000px;}
.y7_c01064{bottom:995.040000px;}
.y6_c01064{bottom:997.200000px;}
.ya_c01064{bottom:997.920000px;}
.y8_c01064{bottom:999.360000px;}
.y9_c01064{bottom:1000.080000px;}
.yb_c01064{bottom:1000.800000px;}
.y5d_c01064{bottom:1002.240000px;}
.y5c_c01064{bottom:1002.960000px;}
.y2_c01064{bottom:1038.240000px;}
.y1_c01064{bottom:1039.680000px;}
.y5_c01064{bottom:1040.400000px;}
.y5b_c01064{bottom:1041.840000px;}
.y3_c01064{bottom:1042.560000px;}
.y4_c01064{bottom:1043.280000px;}
.y5a_c01064{bottom:1044.720000px;}
.y59_c01064{bottom:1110.240000px;}
.h8_c01064{height:33.692344px;}
.h9_c01064{height:36.284062px;}
.he_c01064{height:44.059219px;}
.h4_c01064{height:46.650937px;}
.h5_c01064{height:49.242656px;}
.hb_c01064{height:51.834375px;}
.h7_c01064{height:54.426094px;}
.hc_c01064{height:57.017812px;}
.h12_c01064{height:57.594375px;}
.h11_c01064{height:59.032969px;}
.h2_c01064{height:59.609531px;}
.hd_c01064{height:62.201250px;}
.ha_c01064{height:64.792969px;}
.h6_c01064{height:67.384687px;}
.h3_c01064{height:69.976406px;}
.hf_c01064{height:72.568125px;}
.h10_c01064{height:75.159844px;}
.h0_c01064{height:1157.040000px;}
.h1_c01064{height:1157.250000px;}
.w1_c01064{width:820.500000px;}
.w0_c01064{width:820.800000px;}
.x0_c01064{left:0.000000px;}
.x1_c01064{left:100.800000px;}
.x1a_c01064{left:102.960000px;}
.xe_c01064{left:173.520000px;}
.x2_c01064{left:175.680000px;}
.x13_c01064{left:177.120000px;}
.xf_c01064{left:218.160000px;}
.x14_c01064{left:250.560000px;}
.x7_c01064{left:261.360000px;}
.x17_c01064{left:262.800000px;}
.x19_c01064{left:295.200000px;}
.x8_c01064{left:303.840000px;}
.x11_c01064{left:305.280000px;}
.x1d_c01064{left:306.720000px;}
.x10_c01064{left:314.640000px;}
.x16_c01064{left:316.800000px;}
.x3_c01064{left:326.160000px;}
.x1c_c01064{left:339.120000px;}
.x9_c01064{left:347.040000px;}
.x15_c01064{left:348.480000px;}
.xb_c01064{left:358.560000px;}
.x1e_c01064{left:360.720000px;}
.x4_c01064{left:369.360000px;}
.x18_c01064{left:392.400000px;}
.xc_c01064{left:401.760000px;}
.x5_c01064{left:412.560000px;}
.x12_c01064{left:423.360000px;}
.xa_c01064{left:444.960000px;}
.x1b_c01064{left:447.120000px;}
.xd_c01064{left:499.680000px;}
.x6_c01064{left:575.280000px;}
.x26_c01064{left:576.720000px;}
.x28_c01064{left:587.520000px;}
.x2b_c01064{left:607.680000px;}
.x29_c01064{left:609.120000px;}
.x2c_c01064{left:628.560000px;}
.x2a_c01064{left:630.000000px;}
.x20_c01064{left:640.800000px;}
.x21_c01064{left:663.120000px;}
.x24_c01064{left:695.520000px;}
.x27_c01064{left:696.960000px;}
.x1f_c01064{left:722.880000px;}
.x25_c01064{left:728.640000px;}
.x22_c01064{left:738.720000px;}
.x2d_c01064{left:740.160000px;}
.x23_c01064{left:758.880000px;}
@media print{
.v1_c01064{vertical-align:-5.120000pt;}
.v0_c01064{vertical-align:0.000000pt;}
.v2_c01064{vertical-align:5.120000pt;}
.ls0_c01064{letter-spacing:0.000000pt;}
.ws0_c01064{word-spacing:-1.907413pt;}
.ws6_c01064{word-spacing:-0.269660pt;}
.ws7_c01064{word-spacing:0.000000pt;}
.ws3_c01064{word-spacing:5.980800pt;}
.ws5_c01064{word-spacing:7.038111pt;}
.ws1_c01064{word-spacing:8.421333pt;}
.ws4_c01064{word-spacing:10.845112pt;}
.ws2_c01064{word-spacing:178.119467pt;}
.fs6_c01064{font-size:33.280000pt;}
.fs7_c01064{font-size:35.840000pt;}
.fsc_c01064{font-size:43.520000pt;}
.fs2_c01064{font-size:46.080000pt;}
.fs3_c01064{font-size:48.640000pt;}
.fs9_c01064{font-size:51.200000pt;}
.fs5_c01064{font-size:53.760000pt;}
.fsa_c01064{font-size:56.320000pt;}
.fs0_c01064{font-size:58.880000pt;}
.fsb_c01064{font-size:61.440000pt;}
.fs8_c01064{font-size:64.000000pt;}
.fs4_c01064{font-size:66.560000pt;}
.fs1_c01064{font-size:69.120000pt;}
.fsd_c01064{font-size:71.680000pt;}
.fse_c01064{font-size:74.240000pt;}
.y0_c01064{bottom:0.000000pt;}
.y57_c01064{bottom:56.960000pt;}
.y58_c01064{bottom:57.600000pt;}
.y85_c01064{bottom:58.240000pt;}
.y56_c01064{bottom:58.880000pt;}
.y55_c01064{bottom:92.160000pt;}
.y53_c01064{bottom:95.360000pt;}
.y54_c01064{bottom:96.640000pt;}
.y52_c01064{bottom:97.280000pt;}
.y84_c01064{bottom:97.920000pt;}
.y51_c01064{bottom:131.840000pt;}
.y50_c01064{bottom:133.120000pt;}
.y82_c01064{bottom:133.760000pt;}
.y81_c01064{bottom:134.400000pt;}
.y4f_c01064{bottom:135.040000pt;}
.y83_c01064{bottom:135.680000pt;}
.y4e_c01064{bottom:170.880000pt;}
.y4c_c01064{bottom:171.520000pt;}
.y80_c01064{bottom:172.160000pt;}
.y4b_c01064{bottom:173.440000pt;}
.y4d_c01064{bottom:174.080000pt;}
.y48_c01064{bottom:209.280000pt;}
.y4a_c01064{bottom:209.920000pt;}
.y49_c01064{bottom:210.560000pt;}
.y47_c01064{bottom:211.200000pt;}
.y43_c01064{bottom:247.040000pt;}
.y46_c01064{bottom:247.680000pt;}
.y45_c01064{bottom:248.320000pt;}
.y7f_c01064{bottom:248.960000pt;}
.y42_c01064{bottom:249.600000pt;}
.y44_c01064{bottom:250.880000pt;}
.y41_c01064{bottom:284.800000pt;}
.y40_c01064{bottom:285.440000pt;}
.y7e_c01064{bottom:286.720000pt;}
.y7d_c01064{bottom:287.360000pt;}
.y3f_c01064{bottom:288.000000pt;}
.y3e_c01064{bottom:322.560000pt;}
.y7b_c01064{bottom:324.480000pt;}
.y79_c01064{bottom:325.120000pt;}
.y3d_c01064{bottom:325.760000pt;}
.y7c_c01064{bottom:326.400000pt;}
.y7a_c01064{bottom:327.040000pt;}
.y3c_c01064{bottom:360.960000pt;}
.y3a_c01064{bottom:361.600000pt;}
.y78_c01064{bottom:362.880000pt;}
.y77_c01064{bottom:363.520000pt;}
.y39_c01064{bottom:364.160000pt;}
.y3b_c01064{bottom:364.800000pt;}
.y36_c01064{bottom:399.360000pt;}
.y38_c01064{bottom:400.000000pt;}
.y76_c01064{bottom:400.640000pt;}
.y37_c01064{bottom:401.280000pt;}
.y35_c01064{bottom:401.920000pt;}
.y33_c01064{bottom:437.120000pt;}
.y34_c01064{bottom:437.760000pt;}
.y74_c01064{bottom:439.040000pt;}
.y32_c01064{bottom:439.680000pt;}
.y73_c01064{bottom:440.320000pt;}
.y75_c01064{bottom:440.960000pt;}
.y2f_c01064{bottom:475.520000pt;}
.y31_c01064{bottom:476.160000pt;}
.y72_c01064{bottom:477.440000pt;}
.y2e_c01064{bottom:478.080000pt;}
.y30_c01064{bottom:479.360000pt;}
.y2d_c01064{bottom:513.920000pt;}
.y70_c01064{bottom:515.200000pt;}
.y2c_c01064{bottom:515.840000pt;}
.y6f_c01064{bottom:516.480000pt;}
.y71_c01064{bottom:517.760000pt;}
.y28_c01064{bottom:551.040000pt;}
.y2b_c01064{bottom:552.320000pt;}
.y27_c01064{bottom:552.960000pt;}
.y2a_c01064{bottom:553.600000pt;}
.y6e_c01064{bottom:554.240000pt;}
.y29_c01064{bottom:554.880000pt;}
.y25_c01064{bottom:588.800000pt;}
.y24_c01064{bottom:591.360000pt;}
.y6c_c01064{bottom:592.000000pt;}
.y26_c01064{bottom:592.640000pt;}
.y6d_c01064{bottom:594.560000pt;}
.y23_c01064{bottom:627.840000pt;}
.y22_c01064{bottom:629.120000pt;}
.y69_c01064{bottom:629.760000pt;}
.y6a_c01064{bottom:630.400000pt;}
.y6b_c01064{bottom:631.680000pt;}
.y20_c01064{bottom:665.600000pt;}
.y21_c01064{bottom:666.240000pt;}
.y1f_c01064{bottom:666.880000pt;}
.y68_c01064{bottom:667.520000pt;}
.y67_c01064{bottom:668.800000pt;}
.y1c_c01064{bottom:703.360000pt;}
.y1e_c01064{bottom:704.640000pt;}
.y1b_c01064{bottom:705.920000pt;}
.y65_c01064{bottom:706.560000pt;}
.y1d_c01064{bottom:707.200000pt;}
.y66_c01064{bottom:709.120000pt;}
.y1a_c01064{bottom:741.760000pt;}
.y19_c01064{bottom:743.680000pt;}
.y61_c01064{bottom:744.960000pt;}
.y64_c01064{bottom:745.600000pt;}
.y62_c01064{bottom:746.880000pt;}
.y63_c01064{bottom:747.520000pt;}
.y17_c01064{bottom:779.520000pt;}
.y16_c01064{bottom:781.440000pt;}
.y18_c01064{bottom:782.080000pt;}
.y5f_c01064{bottom:784.000000pt;}
.y60_c01064{bottom:785.280000pt;}
.y15_c01064{bottom:819.200000pt;}
.y13_c01064{bottom:820.480000pt;}
.y12_c01064{bottom:821.120000pt;}
.y14_c01064{bottom:821.760000pt;}
.yd_c01064{bottom:846.080000pt;}
.yc_c01064{bottom:848.640000pt;}
.y10_c01064{bottom:849.280000pt;}
.ye_c01064{bottom:849.920000pt;}
.yf_c01064{bottom:851.200000pt;}
.y11_c01064{bottom:851.840000pt;}
.y5e_c01064{bottom:852.480000pt;}
.y7_c01064{bottom:884.480000pt;}
.y6_c01064{bottom:886.400000pt;}
.ya_c01064{bottom:887.040000pt;}
.y8_c01064{bottom:888.320000pt;}
.y9_c01064{bottom:888.960000pt;}
.yb_c01064{bottom:889.600000pt;}
.y5d_c01064{bottom:890.880000pt;}
.y5c_c01064{bottom:891.520000pt;}
.y2_c01064{bottom:922.880000pt;}
.y1_c01064{bottom:924.160000pt;}
.y5_c01064{bottom:924.800000pt;}
.y5b_c01064{bottom:926.080000pt;}
.y3_c01064{bottom:926.720000pt;}
.y4_c01064{bottom:927.360000pt;}
.y5a_c01064{bottom:928.640000pt;}
.y59_c01064{bottom:986.880000pt;}
.h8_c01064{height:29.948750pt;}
.h9_c01064{height:32.252500pt;}
.he_c01064{height:39.163750pt;}
.h4_c01064{height:41.467500pt;}
.h5_c01064{height:43.771250pt;}
.hb_c01064{height:46.075000pt;}
.h7_c01064{height:48.378750pt;}
.hc_c01064{height:50.682500pt;}
.h12_c01064{height:51.195000pt;}
.h11_c01064{height:52.473750pt;}
.h2_c01064{height:52.986250pt;}
.hd_c01064{height:55.290000pt;}
.ha_c01064{height:57.593750pt;}
.h6_c01064{height:59.897500pt;}
.h3_c01064{height:62.201250pt;}
.hf_c01064{height:64.505000pt;}
.h10_c01064{height:66.808750pt;}
.h0_c01064{height:1028.480000pt;}
.h1_c01064{height:1028.666667pt;}
.w1_c01064{width:729.333333pt;}
.w0_c01064{width:729.600000pt;}
.x0_c01064{left:0.000000pt;}
.x1_c01064{left:89.600000pt;}
.x1a_c01064{left:91.520000pt;}
.xe_c01064{left:154.240000pt;}
.x2_c01064{left:156.160000pt;}
.x13_c01064{left:157.440000pt;}
.xf_c01064{left:193.920000pt;}
.x14_c01064{left:222.720000pt;}
.x7_c01064{left:232.320000pt;}
.x17_c01064{left:233.600000pt;}
.x19_c01064{left:262.400000pt;}
.x8_c01064{left:270.080000pt;}
.x11_c01064{left:271.360000pt;}
.x1d_c01064{left:272.640000pt;}
.x10_c01064{left:279.680000pt;}
.x16_c01064{left:281.600000pt;}
.x3_c01064{left:289.920000pt;}
.x1c_c01064{left:301.440000pt;}
.x9_c01064{left:308.480000pt;}
.x15_c01064{left:309.760000pt;}
.xb_c01064{left:318.720000pt;}
.x1e_c01064{left:320.640000pt;}
.x4_c01064{left:328.320000pt;}
.x18_c01064{left:348.800000pt;}
.xc_c01064{left:357.120000pt;}
.x5_c01064{left:366.720000pt;}
.x12_c01064{left:376.320000pt;}
.xa_c01064{left:395.520000pt;}
.x1b_c01064{left:397.440000pt;}
.xd_c01064{left:444.160000pt;}
.x6_c01064{left:511.360000pt;}
.x26_c01064{left:512.640000pt;}
.x28_c01064{left:522.240000pt;}
.x2b_c01064{left:540.160000pt;}
.x29_c01064{left:541.440000pt;}
.x2c_c01064{left:558.720000pt;}
.x2a_c01064{left:560.000000pt;}
.x20_c01064{left:569.600000pt;}
.x21_c01064{left:589.440000pt;}
.x24_c01064{left:618.240000pt;}
.x27_c01064{left:619.520000pt;}
.x1f_c01064{left:642.560000pt;}
.x25_c01064{left:647.680000pt;}
.x22_c01064{left:656.640000pt;}
.x2d_c01064{left:657.920000pt;}
.x23_c01064{left:674.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_add770f0ccbf6d1058eeeb4b.woff2')format("woff");}.ff1_c01065{font-family:ff1_c01065;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m62_c01065{transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);}
.m49_c01065{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m59_c01065{transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);}
.m58_c01065{transform:matrix(0.185575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185575,0.000000,0.000000,0.250000,0,0);}
.m50_c01065{transform:matrix(0.195075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195075,0.000000,0.000000,0.250000,0,0);}
.m4c_c01065{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);}
.m53_c01065{transform:matrix(0.201075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201075,0.000000,0.000000,0.250000,0,0);}
.m47_c01065{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m1a_c01065{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01065{transform:matrix(0.214900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214900,0.000000,0.000000,0.250000,0,0);}
.m3f_c01065{transform:matrix(0.215025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215025,0.000000,0.000000,0.250000,0,0);}
.m56_c01065{transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);}
.m41_c01065{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);}
.m5d_c01065{transform:matrix(0.229450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229450,0.000000,0.000000,0.250000,0,0);}
.m32_c01065{transform:matrix(0.230325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230325,0.000000,0.000000,0.250000,0,0);}
.m63_c01065{transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);}
.m40_c01065{transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);}
.m23_c01065{transform:matrix(0.233375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233375,0.000000,0.000000,0.250000,0,0);}
.m1d_c01065{transform:matrix(0.236825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236825,0.000000,0.000000,0.250000,0,0);}
.m44_c01065{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m29_c01065{transform:matrix(0.238425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238425,0.000000,0.000000,0.250000,0,0);}
.m5a_c01065{transform:matrix(0.240150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240150,0.000000,0.000000,0.250000,0,0);}
.m3c_c01065{transform:matrix(0.241675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241675,0.000000,0.000000,0.250000,0,0);}
.m35_c01065{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m30_c01065{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);}
.m64_c01065{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m5c_c01065{transform:matrix(0.243675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243675,0.000000,0.000000,0.250000,0,0);}
.m20_c01065{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);}
.m61_c01065{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m65_c01065{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m51_c01065{transform:matrix(0.245850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245850,0.000000,0.000000,0.250000,0,0);}
.mb_c01065{transform:matrix(0.246700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246700,0.000000,0.000000,0.250000,0,0);}
.m25_c01065{transform:matrix(0.246975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246975,0.000000,0.000000,0.250000,0,0);}
.m52_c01065{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m5f_c01065{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m2_c01065{transform:matrix(0.249650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249650,0.000000,0.000000,0.250000,0,0);}
.m37_c01065{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m5e_c01065{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_c01065{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m17_c01065{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_c01065{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m38_c01065{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_c01065{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_c01065{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m16_c01065{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m5_c01065{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);}
.m3e_c01065{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m12_c01065{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01065{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);}
.m31_c01065{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m19_c01065{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m10_c01065{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);}
.m28_c01065{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m18_c01065{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m4d_c01065{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m15_c01065{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m36_c01065{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01065{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01065{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m42_c01065{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m4f_c01065{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m6_c01065{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01065{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m43_c01065{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m21_c01065{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m33_c01065{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01065{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m14_c01065{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m8_c01065{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.ma_c01065{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);}
.m57_c01065{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.md_c01065{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m3_c01065{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m55_c01065{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m9_c01065{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);}
.m2a_c01065{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);}
.mf_c01065{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01065{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);}
.m3a_c01065{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.mc_c01065{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);}
.m34_c01065{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m26_c01065{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m13_c01065{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m46_c01065{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m5b_c01065{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.me_c01065{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);}
.m3b_c01065{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);}
.m48_c01065{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m60_c01065{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);}
.m1c_c01065{transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);}
.m1_c01065{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01065{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m27_c01065{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);}
.m24_c01065{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m22_c01065{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);}
.m2b_c01065{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01065{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m11_c01065{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m39_c01065{transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);}
.m4e_c01065{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01065{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m54_c01065{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m66_c01065{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.v1_c01065{vertical-align:-28.800000px;}
.v0_c01065{vertical-align:0.000000px;}
.ls0_c01065{letter-spacing:0.000000px;}
.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:-3.573840px;}
.ws3_c01065{word-spacing:0.000000px;}
.ws2_c01065{word-spacing:6.366000px;}
.ws1_c01065{word-spacing:14.393376px;}
.fc0_c01065{color:transparent;}
.fsb_c01065{font-size:31.680000px;}
.fs1_c01065{font-size:34.560000px;}
.fsd_c01065{font-size:37.440000px;}
.fs10_c01065{font-size:40.320000px;}
.fs9_c01065{font-size:46.080000px;}
.fs7_c01065{font-size:48.960000px;}
.fs3_c01065{font-size:51.840000px;}
.fs6_c01065{font-size:54.720000px;}
.fsc_c01065{font-size:57.600000px;}
.fsa_c01065{font-size:60.480000px;}
.fs8_c01065{font-size:63.360000px;}
.fse_c01065{font-size:66.240000px;}
.fs0_c01065{font-size:69.120000px;}
.fs2_c01065{font-size:72.000000px;}
.fs5_c01065{font-size:74.880000px;}
.fs4_c01065{font-size:77.760000px;}
.fsf_c01065{font-size:103.680000px;}
.y0_c01065{bottom:0.000000px;}
.y7e_c01065{bottom:59.760000px;}
.y7d_c01065{bottom:60.480000px;}
.y85_c01065{bottom:61.200000px;}
.y87_c01065{bottom:62.640000px;}
.y86_c01065{bottom:63.360000px;}
.y7c_c01065{bottom:64.080000px;}
.y7b_c01065{bottom:102.960000px;}
.y82_c01065{bottom:103.680000px;}
.y7a_c01065{bottom:104.400000px;}
.y84_c01065{bottom:105.120000px;}
.y83_c01065{bottom:105.840000px;}
.y79_c01065{bottom:106.560000px;}
.y78_c01065{bottom:146.160000px;}
.y77_c01065{bottom:146.880000px;}
.y80_c01065{bottom:147.600000px;}
.y81_c01065{bottom:148.320000px;}
.y76_c01065{bottom:149.040000px;}
.y74_c01065{bottom:189.360000px;}
.y75_c01065{bottom:190.080000px;}
.y7f_c01065{bottom:190.800000px;}
.y73_c01065{bottom:192.240000px;}
.y6f_c01065{bottom:231.120000px;}
.y71_c01065{bottom:232.560000px;}
.y72_c01065{bottom:233.280000px;}
.y6e_c01065{bottom:234.720000px;}
.y70_c01065{bottom:235.440000px;}
.y1b_c01065{bottom:273.600000px;}
.y1a_c01065{bottom:277.920000px;}
.y19_c01065{bottom:278.640000px;}
.y14_c01065{bottom:306.720000px;}
.y17_c01065{bottom:307.440000px;}
.y15_c01065{bottom:308.160000px;}
.y12_c01065{bottom:308.880000px;}
.y16_c01065{bottom:309.600000px;}
.y13_c01065{bottom:310.320000px;}
.y18_c01065{bottom:311.040000px;}
.y11_c01065{bottom:348.480000px;}
.yf_c01065{bottom:349.200000px;}
.y6b_c01065{bottom:350.640000px;}
.ye_c01065{bottom:351.360000px;}
.y10_c01065{bottom:352.080000px;}
.y6d_c01065{bottom:352.800000px;}
.y6c_c01065{bottom:353.520000px;}
.yc_c01065{bottom:391.680000px;}
.y69_c01065{bottom:393.120000px;}
.yb_c01065{bottom:393.840000px;}
.yd_c01065{bottom:395.280000px;}
.y6a_c01065{bottom:396.000000px;}
.y8_c01065{bottom:434.880000px;}
.y7_c01065{bottom:436.320000px;}
.y68_c01065{bottom:437.040000px;}
.y9_c01065{bottom:437.760000px;}
.ya_c01065{bottom:438.480000px;}
.y6_c01065{bottom:477.360000px;}
.y3_c01065{bottom:478.080000px;}
.y5_c01065{bottom:478.800000px;}
.y1_c01065{bottom:479.520000px;}
.y2_c01065{bottom:480.960000px;}
.y4_c01065{bottom:481.680000px;}
.y4e_c01065{bottom:521.280000px;}
.y4d_c01065{bottom:522.000000px;}
.y4f_c01065{bottom:522.720000px;}
.y66_c01065{bottom:523.440000px;}
.y67_c01065{bottom:524.160000px;}
.y4b_c01065{bottom:563.760000px;}
.y4c_c01065{bottom:564.480000px;}
.y4a_c01065{bottom:565.200000px;}
.y64_c01065{bottom:565.920000px;}
.y65_c01065{bottom:568.080000px;}
.y47_c01065{bottom:606.960000px;}
.y46_c01065{bottom:608.400000px;}
.y48_c01065{bottom:609.840000px;}
.y49_c01065{bottom:610.560000px;}
.y43_c01065{bottom:649.440000px;}
.y45_c01065{bottom:650.160000px;}
.y41_c01065{bottom:651.600000px;}
.y63_c01065{bottom:652.320000px;}
.y42_c01065{bottom:653.040000px;}
.y44_c01065{bottom:653.760000px;}
.y3f_c01065{bottom:692.640000px;}
.y3e_c01065{bottom:694.080000px;}
.y61_c01065{bottom:694.800000px;}
.y60_c01065{bottom:695.520000px;}
.y40_c01065{bottom:696.240000px;}
.y62_c01065{bottom:697.680000px;}
.y3a_c01065{bottom:735.120000px;}
.y3d_c01065{bottom:736.560000px;}
.y39_c01065{bottom:737.280000px;}
.y3c_c01065{bottom:738.000000px;}
.y3b_c01065{bottom:738.720000px;}
.y5f_c01065{bottom:740.880000px;}
.y38_c01065{bottom:778.320000px;}
.y37_c01065{bottom:780.480000px;}
.y5b_c01065{bottom:781.200000px;}
.y5e_c01065{bottom:781.920000px;}
.y5c_c01065{bottom:782.640000px;}
.y5d_c01065{bottom:783.360000px;}
.y35_c01065{bottom:821.520000px;}
.y34_c01065{bottom:822.240000px;}
.y5a_c01065{bottom:822.960000px;}
.y59_c01065{bottom:823.680000px;}
.y58_c01065{bottom:824.400000px;}
.y36_c01065{bottom:825.120000px;}
.y33_c01065{bottom:857.520000px;}
.y2f_c01065{bottom:864.000000px;}
.y31_c01065{bottom:864.720000px;}
.y2e_c01065{bottom:865.440000px;}
.y56_c01065{bottom:866.160000px;}
.y57_c01065{bottom:866.880000px;}
.y30_c01065{bottom:867.600000px;}
.y32_c01065{bottom:868.320000px;}
.y2b_c01065{bottom:906.480000px;}
.y2a_c01065{bottom:907.920000px;}
.y2c_c01065{bottom:910.080000px;}
.y2d_c01065{bottom:910.800000px;}
.y55_c01065{bottom:911.520000px;}
.y26_c01065{bottom:948.960000px;}
.y29_c01065{bottom:949.680000px;}
.y25_c01065{bottom:950.400000px;}
.y27_c01065{bottom:951.120000px;}
.y54_c01065{bottom:952.560000px;}
.y28_c01065{bottom:953.280000px;}
.y22_c01065{bottom:991.440000px;}
.y24_c01065{bottom:992.880000px;}
.y21_c01065{bottom:993.600000px;}
.y53_c01065{bottom:995.040000px;}
.y23_c01065{bottom:995.760000px;}
.y1e_c01065{bottom:1035.360000px;}
.y1c_c01065{bottom:1036.800000px;}
.y1d_c01065{bottom:1037.520000px;}
.y51_c01065{bottom:1038.240000px;}
.y1f_c01065{bottom:1038.960000px;}
.y20_c01065{bottom:1039.680000px;}
.y52_c01065{bottom:1040.400000px;}
.y50_c01065{bottom:1103.040000px;}
.hd_c01065{height:28.508906px;}
.h3_c01065{height:31.100625px;}
.hf_c01065{height:33.692344px;}
.h13_c01065{height:36.284062px;}
.hb_c01065{height:41.467500px;}
.h9_c01065{height:44.059219px;}
.h5_c01065{height:46.650937px;}
.h8_c01065{height:49.242656px;}
.he_c01065{height:51.834375px;}
.hc_c01065{height:54.426094px;}
.ha_c01065{height:57.017812px;}
.h10_c01065{height:59.609531px;}
.h2_c01065{height:62.201250px;}
.h11_c01065{height:64.501875px;}
.h4_c01065{height:64.792969px;}
.h7_c01065{height:67.384687px;}
.h6_c01065{height:69.976406px;}
.h12_c01065{height:93.301875px;}
.h0_c01065{height:1157.760000px;}
.h1_c01065{height:1158.000000px;}
.w1_c01065{width:822.000000px;}
.w0_c01065{width:822.240000px;}
.x0_c01065{left:0.000000px;}
.x1_c01065{left:104.400000px;}
.x2_c01065{left:148.320000px;}
.x3_c01065{left:177.840000px;}
.x1a_c01065{left:179.280000px;}
.x14_c01065{left:231.840000px;}
.x1b_c01065{left:264.240000px;}
.xa_c01065{left:265.680000px;}
.x15_c01065{left:287.280000px;}
.x4_c01065{left:308.880000px;}
.xb_c01065{left:317.520000px;}
.x18_c01065{left:319.680000px;}
.x9_c01065{left:352.080000px;}
.x7_c01065{left:361.440000px;}
.x19_c01065{left:362.880000px;}
.x16_c01065{left:372.240000px;}
.x5_c01065{left:394.560000px;}
.xd_c01065{left:404.640000px;}
.x8_c01065{left:406.080000px;}
.x17_c01065{left:416.160000px;}
.xc_c01065{left:426.960000px;}
.x2a_c01065{left:447.840000px;}
.x6_c01065{left:449.280000px;}
.x1c_c01065{left:481.680000px;}
.x1e_c01065{left:492.480000px;}
.xe_c01065{left:503.280000px;}
.x1d_c01065{left:534.240000px;}
.x1f_c01065{left:540.720000px;}
.x29_c01065{left:545.760000px;}
.xf_c01065{left:590.400000px;}
.x10_c01065{left:611.280000px;}
.x24_c01065{left:612.720000px;}
.x11_c01065{left:632.160000px;}
.x26_c01065{left:665.280000px;}
.x22_c01065{left:666.720000px;}
.x12_c01065{left:689.040000px;}
.x21_c01065{left:690.480000px;}
.x27_c01065{left:698.400000px;}
.x23_c01065{left:699.840000px;}
.x20_c01065{left:707.760000px;}
.x28_c01065{left:740.880000px;}
.x13_c01065{left:742.320000px;}
.x25_c01065{left:763.200000px;}
@media print{
.v1_c01065{vertical-align:-25.600000pt;}
.v0_c01065{vertical-align:0.000000pt;}
.ls0_c01065{letter-spacing:0.000000pt;}
.ws0_c01065{word-spacing:-3.176747pt;}
.ws3_c01065{word-spacing:0.000000pt;}
.ws2_c01065{word-spacing:5.658667pt;}
.ws1_c01065{word-spacing:12.794112pt;}
.fsb_c01065{font-size:28.160000pt;}
.fs1_c01065{font-size:30.720000pt;}
.fsd_c01065{font-size:33.280000pt;}
.fs10_c01065{font-size:35.840000pt;}
.fs9_c01065{font-size:40.960000pt;}
.fs7_c01065{font-size:43.520000pt;}
.fs3_c01065{font-size:46.080000pt;}
.fs6_c01065{font-size:48.640000pt;}
.fsc_c01065{font-size:51.200000pt;}
.fsa_c01065{font-size:53.760000pt;}
.fs8_c01065{font-size:56.320000pt;}
.fse_c01065{font-size:58.880000pt;}
.fs0_c01065{font-size:61.440000pt;}
.fs2_c01065{font-size:64.000000pt;}
.fs5_c01065{font-size:66.560000pt;}
.fs4_c01065{font-size:69.120000pt;}
.fsf_c01065{font-size:92.160000pt;}
.y0_c01065{bottom:0.000000pt;}
.y7e_c01065{bottom:53.120000pt;}
.y7d_c01065{bottom:53.760000pt;}
.y85_c01065{bottom:54.400000pt;}
.y87_c01065{bottom:55.680000pt;}
.y86_c01065{bottom:56.320000pt;}
.y7c_c01065{bottom:56.960000pt;}
.y7b_c01065{bottom:91.520000pt;}
.y82_c01065{bottom:92.160000pt;}
.y7a_c01065{bottom:92.800000pt;}
.y84_c01065{bottom:93.440000pt;}
.y83_c01065{bottom:94.080000pt;}
.y79_c01065{bottom:94.720000pt;}
.y78_c01065{bottom:129.920000pt;}
.y77_c01065{bottom:130.560000pt;}
.y80_c01065{bottom:131.200000pt;}
.y81_c01065{bottom:131.840000pt;}
.y76_c01065{bottom:132.480000pt;}
.y74_c01065{bottom:168.320000pt;}
.y75_c01065{bottom:168.960000pt;}
.y7f_c01065{bottom:169.600000pt;}
.y73_c01065{bottom:170.880000pt;}
.y6f_c01065{bottom:205.440000pt;}
.y71_c01065{bottom:206.720000pt;}
.y72_c01065{bottom:207.360000pt;}
.y6e_c01065{bottom:208.640000pt;}
.y70_c01065{bottom:209.280000pt;}
.y1b_c01065{bottom:243.200000pt;}
.y1a_c01065{bottom:247.040000pt;}
.y19_c01065{bottom:247.680000pt;}
.y14_c01065{bottom:272.640000pt;}
.y17_c01065{bottom:273.280000pt;}
.y15_c01065{bottom:273.920000pt;}
.y12_c01065{bottom:274.560000pt;}
.y16_c01065{bottom:275.200000pt;}
.y13_c01065{bottom:275.840000pt;}
.y18_c01065{bottom:276.480000pt;}
.y11_c01065{bottom:309.760000pt;}
.yf_c01065{bottom:310.400000pt;}
.y6b_c01065{bottom:311.680000pt;}
.ye_c01065{bottom:312.320000pt;}
.y10_c01065{bottom:312.960000pt;}
.y6d_c01065{bottom:313.600000pt;}
.y6c_c01065{bottom:314.240000pt;}
.yc_c01065{bottom:348.160000pt;}
.y69_c01065{bottom:349.440000pt;}
.yb_c01065{bottom:350.080000pt;}
.yd_c01065{bottom:351.360000pt;}
.y6a_c01065{bottom:352.000000pt;}
.y8_c01065{bottom:386.560000pt;}
.y7_c01065{bottom:387.840000pt;}
.y68_c01065{bottom:388.480000pt;}
.y9_c01065{bottom:389.120000pt;}
.ya_c01065{bottom:389.760000pt;}
.y6_c01065{bottom:424.320000pt;}
.y3_c01065{bottom:424.960000pt;}
.y5_c01065{bottom:425.600000pt;}
.y1_c01065{bottom:426.240000pt;}
.y2_c01065{bottom:427.520000pt;}
.y4_c01065{bottom:428.160000pt;}
.y4e_c01065{bottom:463.360000pt;}
.y4d_c01065{bottom:464.000000pt;}
.y4f_c01065{bottom:464.640000pt;}
.y66_c01065{bottom:465.280000pt;}
.y67_c01065{bottom:465.920000pt;}
.y4b_c01065{bottom:501.120000pt;}
.y4c_c01065{bottom:501.760000pt;}
.y4a_c01065{bottom:502.400000pt;}
.y64_c01065{bottom:503.040000pt;}
.y65_c01065{bottom:504.960000pt;}
.y47_c01065{bottom:539.520000pt;}
.y46_c01065{bottom:540.800000pt;}
.y48_c01065{bottom:542.080000pt;}
.y49_c01065{bottom:542.720000pt;}
.y43_c01065{bottom:577.280000pt;}
.y45_c01065{bottom:577.920000pt;}
.y41_c01065{bottom:579.200000pt;}
.y63_c01065{bottom:579.840000pt;}
.y42_c01065{bottom:580.480000pt;}
.y44_c01065{bottom:581.120000pt;}
.y3f_c01065{bottom:615.680000pt;}
.y3e_c01065{bottom:616.960000pt;}
.y61_c01065{bottom:617.600000pt;}
.y60_c01065{bottom:618.240000pt;}
.y40_c01065{bottom:618.880000pt;}
.y62_c01065{bottom:620.160000pt;}
.y3a_c01065{bottom:653.440000pt;}
.y3d_c01065{bottom:654.720000pt;}
.y39_c01065{bottom:655.360000pt;}
.y3c_c01065{bottom:656.000000pt;}
.y3b_c01065{bottom:656.640000pt;}
.y5f_c01065{bottom:658.560000pt;}
.y38_c01065{bottom:691.840000pt;}
.y37_c01065{bottom:693.760000pt;}
.y5b_c01065{bottom:694.400000pt;}
.y5e_c01065{bottom:695.040000pt;}
.y5c_c01065{bottom:695.680000pt;}
.y5d_c01065{bottom:696.320000pt;}
.y35_c01065{bottom:730.240000pt;}
.y34_c01065{bottom:730.880000pt;}
.y5a_c01065{bottom:731.520000pt;}
.y59_c01065{bottom:732.160000pt;}
.y58_c01065{bottom:732.800000pt;}
.y36_c01065{bottom:733.440000pt;}
.y33_c01065{bottom:762.240000pt;}
.y2f_c01065{bottom:768.000000pt;}
.y31_c01065{bottom:768.640000pt;}
.y2e_c01065{bottom:769.280000pt;}
.y56_c01065{bottom:769.920000pt;}
.y57_c01065{bottom:770.560000pt;}
.y30_c01065{bottom:771.200000pt;}
.y32_c01065{bottom:771.840000pt;}
.y2b_c01065{bottom:805.760000pt;}
.y2a_c01065{bottom:807.040000pt;}
.y2c_c01065{bottom:808.960000pt;}
.y2d_c01065{bottom:809.600000pt;}
.y55_c01065{bottom:810.240000pt;}
.y26_c01065{bottom:843.520000pt;}
.y29_c01065{bottom:844.160000pt;}
.y25_c01065{bottom:844.800000pt;}
.y27_c01065{bottom:845.440000pt;}
.y54_c01065{bottom:846.720000pt;}
.y28_c01065{bottom:847.360000pt;}
.y22_c01065{bottom:881.280000pt;}
.y24_c01065{bottom:882.560000pt;}
.y21_c01065{bottom:883.200000pt;}
.y53_c01065{bottom:884.480000pt;}
.y23_c01065{bottom:885.120000pt;}
.y1e_c01065{bottom:920.320000pt;}
.y1c_c01065{bottom:921.600000pt;}
.y1d_c01065{bottom:922.240000pt;}
.y51_c01065{bottom:922.880000pt;}
.y1f_c01065{bottom:923.520000pt;}
.y20_c01065{bottom:924.160000pt;}
.y52_c01065{bottom:924.800000pt;}
.y50_c01065{bottom:980.480000pt;}
.hd_c01065{height:25.341250pt;}
.h3_c01065{height:27.645000pt;}
.hf_c01065{height:29.948750pt;}
.h13_c01065{height:32.252500pt;}
.hb_c01065{height:36.860000pt;}
.h9_c01065{height:39.163750pt;}
.h5_c01065{height:41.467500pt;}
.h8_c01065{height:43.771250pt;}
.he_c01065{height:46.075000pt;}
.hc_c01065{height:48.378750pt;}
.ha_c01065{height:50.682500pt;}
.h10_c01065{height:52.986250pt;}
.h2_c01065{height:55.290000pt;}
.h11_c01065{height:57.335000pt;}
.h4_c01065{height:57.593750pt;}
.h7_c01065{height:59.897500pt;}
.h6_c01065{height:62.201250pt;}
.h12_c01065{height:82.935000pt;}
.h0_c01065{height:1029.120000pt;}
.h1_c01065{height:1029.333333pt;}
.w1_c01065{width:730.666667pt;}
.w0_c01065{width:730.880000pt;}
.x0_c01065{left:0.000000pt;}
.x1_c01065{left:92.800000pt;}
.x2_c01065{left:131.840000pt;}
.x3_c01065{left:158.080000pt;}
.x1a_c01065{left:159.360000pt;}
.x14_c01065{left:206.080000pt;}
.x1b_c01065{left:234.880000pt;}
.xa_c01065{left:236.160000pt;}
.x15_c01065{left:255.360000pt;}
.x4_c01065{left:274.560000pt;}
.xb_c01065{left:282.240000pt;}
.x18_c01065{left:284.160000pt;}
.x9_c01065{left:312.960000pt;}
.x7_c01065{left:321.280000pt;}
.x19_c01065{left:322.560000pt;}
.x16_c01065{left:330.880000pt;}
.x5_c01065{left:350.720000pt;}
.xd_c01065{left:359.680000pt;}
.x8_c01065{left:360.960000pt;}
.x17_c01065{left:369.920000pt;}
.xc_c01065{left:379.520000pt;}
.x2a_c01065{left:398.080000pt;}
.x6_c01065{left:399.360000pt;}
.x1c_c01065{left:428.160000pt;}
.x1e_c01065{left:437.760000pt;}
.xe_c01065{left:447.360000pt;}
.x1d_c01065{left:474.880000pt;}
.x1f_c01065{left:480.640000pt;}
.x29_c01065{left:485.120000pt;}
.xf_c01065{left:524.800000pt;}
.x10_c01065{left:543.360000pt;}
.x24_c01065{left:544.640000pt;}
.x11_c01065{left:561.920000pt;}
.x26_c01065{left:591.360000pt;}
.x22_c01065{left:592.640000pt;}
.x12_c01065{left:612.480000pt;}
.x21_c01065{left:613.760000pt;}
.x27_c01065{left:620.800000pt;}
.x23_c01065{left:622.080000pt;}
.x20_c01065{left:629.120000pt;}
.x28_c01065{left:658.560000pt;}
.x13_c01065{left:659.840000pt;}
.x25_c01065{left:678.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_76baee570f127d2af0539b13.woff2')format("woff");}.ff1_c01066{font-family:ff1_c01066;line-height:1.109863;font-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_c01066{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m35_c01066{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m32_c01066{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m23_c01066{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m38_c01066{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m26_c01066{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m30_c01066{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01066{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m19_c01066{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_c01066{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01066{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m14_c01066{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01066{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_c01066{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m7_c01066{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m2_c01066{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m9_c01066{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);}
.m25_c01066{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mf_c01066{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.me_c01066{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m6_c01066{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m15_c01066{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01066{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01066{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.md_c01066{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01066{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m29_c01066{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m5_c01066{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m10_c01066{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.ma_c01066{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m36_c01066{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01066{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01066{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mc_c01066{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m17_c01066{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01066{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);}
.m24_c01066{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m11_c01066{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m4_c01066{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_c01066{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m37_c01066{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m21_c01066{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m0_c01066{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);}
.m16_c01066{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m8_c01066{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m18_c01066{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);}
.m27_c01066{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m1_c01066{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);}
.m1f_c01066{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m28_c01066{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m33_c01066{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);}
.m2f_c01066{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m31_c01066{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01066{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.mb_c01066{transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);}
.m34_c01066{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01066{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.v0_c01066{vertical-align:0.000000px;}
.v1_c01066{vertical-align:8.640000px;}
.ls1_c01066{letter-spacing:0.000000px;}
.ls0_c01066{letter-spacing:47.463120px;}
.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;}
}
.ws1_c01066{word-spacing:0.000000px;}
.ws0_c01066{word-spacing:4.770000px;}
.fc0_c01066{color:transparent;}
.fs7_c01066{font-size:31.680000px;}
.fsd_c01066{font-size:40.320000px;}
.fsc_c01066{font-size:46.080000px;}
.fs8_c01066{font-size:48.960000px;}
.fsb_c01066{font-size:51.840000px;}
.fsa_c01066{font-size:54.720000px;}
.fs1_c01066{font-size:57.600000px;}
.fs5_c01066{font-size:60.480000px;}
.fs3_c01066{font-size:63.360000px;}
.fs9_c01066{font-size:66.240000px;}
.fs2_c01066{font-size:69.120000px;}
.fs0_c01066{font-size:72.000000px;}
.fs4_c01066{font-size:74.880000px;}
.fs6_c01066{font-size:77.760000px;}
.y0_c01066{bottom:0.000000px;}
.y37_c01066{bottom:16.560000px;}
.y87_c01066{bottom:18.720000px;}
.y86_c01066{bottom:19.440000px;}
.y36_c01066{bottom:20.880000px;}
.y85_c01066{bottom:21.600000px;}
.y35_c01066{bottom:56.160000px;}
.y83_c01066{bottom:57.600000px;}
.y84_c01066{bottom:58.320000px;}
.y34_c01066{bottom:59.040000px;}
.y82_c01066{bottom:59.760000px;}
.y31_c01066{bottom:97.920000px;}
.y33_c01066{bottom:98.640000px;}
.y30_c01066{bottom:100.080000px;}
.y81_c01066{bottom:100.800000px;}
.y32_c01066{bottom:102.240000px;}
.y80_c01066{bottom:102.960000px;}
.y2f_c01066{bottom:141.120000px;}
.y2e_c01066{bottom:143.280000px;}
.y7f_c01066{bottom:144.720000px;}
.y7e_c01066{bottom:146.160000px;}
.y2d_c01066{bottom:184.320000px;}
.y7c_c01066{bottom:186.480000px;}
.y7d_c01066{bottom:187.200000px;}
.y2c_c01066{bottom:188.640000px;}
.y7b_c01066{bottom:189.360000px;}
.y2b_c01066{bottom:226.800000px;}
.y7a_c01066{bottom:229.680000px;}
.y2a_c01066{bottom:230.400000px;}
.y79_c01066{bottom:232.560000px;}
.y29_c01066{bottom:270.000000px;}
.y28_c01066{bottom:272.880000px;}
.y78_c01066{bottom:273.600000px;}
.y77_c01066{bottom:274.320000px;}
.y76_c01066{bottom:275.040000px;}
.y27_c01066{bottom:313.200000px;}
.y26_c01066{bottom:316.080000px;}
.y73_c01066{bottom:316.800000px;}
.y75_c01066{bottom:317.520000px;}
.y72_c01066{bottom:318.240000px;}
.y74_c01066{bottom:319.680000px;}
.y25_c01066{bottom:355.680000px;}
.y24_c01066{bottom:358.560000px;}
.y70_c01066{bottom:360.000000px;}
.y6f_c01066{bottom:361.440000px;}
.y71_c01066{bottom:362.160000px;}
.y23_c01066{bottom:398.880000px;}
.y22_c01066{bottom:401.040000px;}
.y6c_c01066{bottom:402.480000px;}
.y6d_c01066{bottom:403.200000px;}
.y6b_c01066{bottom:404.640000px;}
.y6e_c01066{bottom:405.360000px;}
.y21_c01066{bottom:441.360000px;}
.y20_c01066{bottom:444.960000px;}
.y69_c01066{bottom:445.680000px;}
.y68_c01066{bottom:447.840000px;}
.y6a_c01066{bottom:449.280000px;}
.y1f_c01066{bottom:485.280000px;}
.y1e_c01066{bottom:486.720000px;}
.y65_c01066{bottom:488.160000px;}
.y66_c01066{bottom:488.880000px;}
.y67_c01066{bottom:489.600000px;}
.y64_c01066{bottom:491.040000px;}
.y1d_c01066{bottom:527.760000px;}
.y1c_c01066{bottom:529.920000px;}
.y62_c01066{bottom:530.640000px;}
.y61_c01066{bottom:531.360000px;}
.y63_c01066{bottom:532.080000px;}
.y60_c01066{bottom:533.520000px;}
.y1b_c01066{bottom:570.240000px;}
.y1a_c01066{bottom:572.400000px;}
.y5f_c01066{bottom:573.840000px;}
.y5e_c01066{bottom:575.280000px;}
.y5d_c01066{bottom:576.000000px;}
.y5c_c01066{bottom:576.720000px;}
.y19_c01066{bottom:612.720000px;}
.y18_c01066{bottom:616.320000px;}
.y5a_c01066{bottom:617.040000px;}
.y5b_c01066{bottom:618.480000px;}
.y59_c01066{bottom:619.200000px;}
.y17_c01066{bottom:655.920000px;}
.y16_c01066{bottom:658.800000px;}
.y58_c01066{bottom:659.520000px;}
.y57_c01066{bottom:660.240000px;}
.y56_c01066{bottom:662.400000px;}
.y15_c01066{bottom:698.400000px;}
.y14_c01066{bottom:701.280000px;}
.y54_c01066{bottom:702.720000px;}
.y55_c01066{bottom:703.440000px;}
.y53_c01066{bottom:704.880000px;}
.y52_c01066{bottom:705.600000px;}
.y13_c01066{bottom:741.600000px;}
.y12_c01066{bottom:743.760000px;}
.y4f_c01066{bottom:745.200000px;}
.y51_c01066{bottom:745.920000px;}
.y50_c01066{bottom:746.640000px;}
.y4e_c01066{bottom:747.360000px;}
.y11_c01066{bottom:784.080000px;}
.y10_c01066{bottom:787.680000px;}
.y4d_c01066{bottom:789.120000px;}
.y4c_c01066{bottom:789.840000px;}
.yf_c01066{bottom:828.000000px;}
.ye_c01066{bottom:830.160000px;}
.y49_c01066{bottom:831.600000px;}
.y4b_c01066{bottom:832.320000px;}
.y4a_c01066{bottom:833.040000px;}
.y47_c01066{bottom:833.760000px;}
.y48_c01066{bottom:834.480000px;}
.yd_c01066{bottom:870.480000px;}
.yc_c01066{bottom:874.080000px;}
.y45_c01066{bottom:875.520000px;}
.y44_c01066{bottom:877.680000px;}
.y46_c01066{bottom:878.400000px;}
.yb_c01066{bottom:913.680000px;}
.ya_c01066{bottom:915.840000px;}
.y43_c01066{bottom:918.720000px;}
.y42_c01066{bottom:920.880000px;}
.y9_c01066{bottom:956.160000px;}
.y8_c01066{bottom:958.320000px;}
.y40_c01066{bottom:961.920000px;}
.y41_c01066{bottom:962.640000px;}
.y3f_c01066{bottom:963.360000px;}
.y6_c01066{bottom:999.360000px;}
.y5_c01066{bottom:1000.800000px;}
.y7_c01066{bottom:1002.240000px;}
.y3a_c01066{bottom:1005.120000px;}
.y3d_c01066{bottom:1005.840000px;}
.y3e_c01066{bottom:1008.000000px;}
.y3_c01066{bottom:1044.000000px;}
.y4_c01066{bottom:1044.720000px;}
.y2_c01066{bottom:1045.440000px;}
.y38_c01066{bottom:1048.320000px;}
.y39_c01066{bottom:1049.040000px;}
.y3b_c01066{bottom:1050.480000px;}
.y3c_c01066{bottom:1051.200000px;}
.y1_c01066{bottom:1112.400000px;}
.h9_c01066{height:28.508906px;}
.h11_c01066{height:36.284062px;}
.h10_c01066{height:41.467500px;}
.ha_c01066{height:44.059219px;}
.hf_c01066{height:46.650937px;}
.hc_c01066{height:49.242656px;}
.h3_c01066{height:51.834375px;}
.h7_c01066{height:54.426094px;}
.he_c01066{height:55.290937px;}
.h5_c01066{height:57.017812px;}
.hb_c01066{height:59.609531px;}
.h4_c01066{height:62.201250px;}
.hd_c01066{height:63.066094px;}
.h2_c01066{height:64.792969px;}
.h6_c01066{height:67.384687px;}
.h8_c01066{height:69.976406px;}
.h1_c01066{height:1164.750000px;}
.h0_c01066{height:1164.960000px;}
.w1_c01066{width:824.250000px;}
.w0_c01066{width:824.400000px;}
.x0_c01066{left:0.000000px;}
.x2_c01066{left:99.360000px;}
.x8_c01066{left:100.800000px;}
.xa_c01066{left:102.240000px;}
.xc_c01066{left:103.680000px;}
.x7_c01066{left:144.000000px;}
.x3_c01066{left:172.800000px;}
.x9_c01066{left:174.960000px;}
.xb_c01066{left:176.400000px;}
.x5_c01066{left:260.640000px;}
.x4_c01066{left:302.400000px;}
.xd_c01066{left:326.880000px;}
.xe_c01066{left:371.520000px;}
.x6_c01066{left:389.520000px;}
.xf_c01066{left:585.360000px;}
.x16_c01066{left:586.800000px;}
.x20_c01066{left:588.240000px;}
.x24_c01066{left:589.680000px;}
.x10_c01066{left:607.680000px;}
.x1d_c01066{left:609.120000px;}
.x23_c01066{left:610.560000px;}
.x17_c01066{left:628.560000px;}
.x22_c01066{left:630.000000px;}
.x25_c01066{left:631.440000px;}
.x1b_c01066{left:640.080000px;}
.x1c_c01066{left:653.040000px;}
.x14_c01066{left:660.960000px;}
.x11_c01066{left:662.400000px;}
.x1f_c01066{left:663.840000px;}
.x12_c01066{left:695.520000px;}
.x18_c01066{left:706.320000px;}
.x1_c01066{left:717.840000px;}
.x1a_c01066{left:727.920000px;}
.x13_c01066{left:738.000000px;}
.x21_c01066{left:739.440000px;}
.x26_c01066{left:740.880000px;}
.x27_c01066{left:742.320000px;}
.x19_c01066{left:749.520000px;}
.x15_c01066{left:758.160000px;}
.x1e_c01066{left:760.320000px;}
@media print{
.v0_c01066{vertical-align:0.000000pt;}
.v1_c01066{vertical-align:7.680000pt;}
.ls1_c01066{letter-spacing:0.000000pt;}
.ls0_c01066{letter-spacing:42.189440pt;}
.ws1_c01066{word-spacing:0.000000pt;}
.ws0_c01066{word-spacing:4.240000pt;}
.fs7_c01066{font-size:28.160000pt;}
.fsd_c01066{font-size:35.840000pt;}
.fsc_c01066{font-size:40.960000pt;}
.fs8_c01066{font-size:43.520000pt;}
.fsb_c01066{font-size:46.080000pt;}
.fsa_c01066{font-size:48.640000pt;}
.fs1_c01066{font-size:51.200000pt;}
.fs5_c01066{font-size:53.760000pt;}
.fs3_c01066{font-size:56.320000pt;}
.fs9_c01066{font-size:58.880000pt;}
.fs2_c01066{font-size:61.440000pt;}
.fs0_c01066{font-size:64.000000pt;}
.fs4_c01066{font-size:66.560000pt;}
.fs6_c01066{font-size:69.120000pt;}
.y0_c01066{bottom:0.000000pt;}
.y37_c01066{bottom:14.720000pt;}
.y87_c01066{bottom:16.640000pt;}
.y86_c01066{bottom:17.280000pt;}
.y36_c01066{bottom:18.560000pt;}
.y85_c01066{bottom:19.200000pt;}
.y35_c01066{bottom:49.920000pt;}
.y83_c01066{bottom:51.200000pt;}
.y84_c01066{bottom:51.840000pt;}
.y34_c01066{bottom:52.480000pt;}
.y82_c01066{bottom:53.120000pt;}
.y31_c01066{bottom:87.040000pt;}
.y33_c01066{bottom:87.680000pt;}
.y30_c01066{bottom:88.960000pt;}
.y81_c01066{bottom:89.600000pt;}
.y32_c01066{bottom:90.880000pt;}
.y80_c01066{bottom:91.520000pt;}
.y2f_c01066{bottom:125.440000pt;}
.y2e_c01066{bottom:127.360000pt;}
.y7f_c01066{bottom:128.640000pt;}
.y7e_c01066{bottom:129.920000pt;}
.y2d_c01066{bottom:163.840000pt;}
.y7c_c01066{bottom:165.760000pt;}
.y7d_c01066{bottom:166.400000pt;}
.y2c_c01066{bottom:167.680000pt;}
.y7b_c01066{bottom:168.320000pt;}
.y2b_c01066{bottom:201.600000pt;}
.y7a_c01066{bottom:204.160000pt;}
.y2a_c01066{bottom:204.800000pt;}
.y79_c01066{bottom:206.720000pt;}
.y29_c01066{bottom:240.000000pt;}
.y28_c01066{bottom:242.560000pt;}
.y78_c01066{bottom:243.200000pt;}
.y77_c01066{bottom:243.840000pt;}
.y76_c01066{bottom:244.480000pt;}
.y27_c01066{bottom:278.400000pt;}
.y26_c01066{bottom:280.960000pt;}
.y73_c01066{bottom:281.600000pt;}
.y75_c01066{bottom:282.240000pt;}
.y72_c01066{bottom:282.880000pt;}
.y74_c01066{bottom:284.160000pt;}
.y25_c01066{bottom:316.160000pt;}
.y24_c01066{bottom:318.720000pt;}
.y70_c01066{bottom:320.000000pt;}
.y6f_c01066{bottom:321.280000pt;}
.y71_c01066{bottom:321.920000pt;}
.y23_c01066{bottom:354.560000pt;}
.y22_c01066{bottom:356.480000pt;}
.y6c_c01066{bottom:357.760000pt;}
.y6d_c01066{bottom:358.400000pt;}
.y6b_c01066{bottom:359.680000pt;}
.y6e_c01066{bottom:360.320000pt;}
.y21_c01066{bottom:392.320000pt;}
.y20_c01066{bottom:395.520000pt;}
.y69_c01066{bottom:396.160000pt;}
.y68_c01066{bottom:398.080000pt;}
.y6a_c01066{bottom:399.360000pt;}
.y1f_c01066{bottom:431.360000pt;}
.y1e_c01066{bottom:432.640000pt;}
.y65_c01066{bottom:433.920000pt;}
.y66_c01066{bottom:434.560000pt;}
.y67_c01066{bottom:435.200000pt;}
.y64_c01066{bottom:436.480000pt;}
.y1d_c01066{bottom:469.120000pt;}
.y1c_c01066{bottom:471.040000pt;}
.y62_c01066{bottom:471.680000pt;}
.y61_c01066{bottom:472.320000pt;}
.y63_c01066{bottom:472.960000pt;}
.y60_c01066{bottom:474.240000pt;}
.y1b_c01066{bottom:506.880000pt;}
.y1a_c01066{bottom:508.800000pt;}
.y5f_c01066{bottom:510.080000pt;}
.y5e_c01066{bottom:511.360000pt;}
.y5d_c01066{bottom:512.000000pt;}
.y5c_c01066{bottom:512.640000pt;}
.y19_c01066{bottom:544.640000pt;}
.y18_c01066{bottom:547.840000pt;}
.y5a_c01066{bottom:548.480000pt;}
.y5b_c01066{bottom:549.760000pt;}
.y59_c01066{bottom:550.400000pt;}
.y17_c01066{bottom:583.040000pt;}
.y16_c01066{bottom:585.600000pt;}
.y58_c01066{bottom:586.240000pt;}
.y57_c01066{bottom:586.880000pt;}
.y56_c01066{bottom:588.800000pt;}
.y15_c01066{bottom:620.800000pt;}
.y14_c01066{bottom:623.360000pt;}
.y54_c01066{bottom:624.640000pt;}
.y55_c01066{bottom:625.280000pt;}
.y53_c01066{bottom:626.560000pt;}
.y52_c01066{bottom:627.200000pt;}
.y13_c01066{bottom:659.200000pt;}
.y12_c01066{bottom:661.120000pt;}
.y4f_c01066{bottom:662.400000pt;}
.y51_c01066{bottom:663.040000pt;}
.y50_c01066{bottom:663.680000pt;}
.y4e_c01066{bottom:664.320000pt;}
.y11_c01066{bottom:696.960000pt;}
.y10_c01066{bottom:700.160000pt;}
.y4d_c01066{bottom:701.440000pt;}
.y4c_c01066{bottom:702.080000pt;}
.yf_c01066{bottom:736.000000pt;}
.ye_c01066{bottom:737.920000pt;}
.y49_c01066{bottom:739.200000pt;}
.y4b_c01066{bottom:739.840000pt;}
.y4a_c01066{bottom:740.480000pt;}
.y47_c01066{bottom:741.120000pt;}
.y48_c01066{bottom:741.760000pt;}
.yd_c01066{bottom:773.760000pt;}
.yc_c01066{bottom:776.960000pt;}
.y45_c01066{bottom:778.240000pt;}
.y44_c01066{bottom:780.160000pt;}
.y46_c01066{bottom:780.800000pt;}
.yb_c01066{bottom:812.160000pt;}
.ya_c01066{bottom:814.080000pt;}
.y43_c01066{bottom:816.640000pt;}
.y42_c01066{bottom:818.560000pt;}
.y9_c01066{bottom:849.920000pt;}
.y8_c01066{bottom:851.840000pt;}
.y40_c01066{bottom:855.040000pt;}
.y41_c01066{bottom:855.680000pt;}
.y3f_c01066{bottom:856.320000pt;}
.y6_c01066{bottom:888.320000pt;}
.y5_c01066{bottom:889.600000pt;}
.y7_c01066{bottom:890.880000pt;}
.y3a_c01066{bottom:893.440000pt;}
.y3d_c01066{bottom:894.080000pt;}
.y3e_c01066{bottom:896.000000pt;}
.y3_c01066{bottom:928.000000pt;}
.y4_c01066{bottom:928.640000pt;}
.y2_c01066{bottom:929.280000pt;}
.y38_c01066{bottom:931.840000pt;}
.y39_c01066{bottom:932.480000pt;}
.y3b_c01066{bottom:933.760000pt;}
.y3c_c01066{bottom:934.400000pt;}
.y1_c01066{bottom:988.800000pt;}
.h9_c01066{height:25.341250pt;}
.h11_c01066{height:32.252500pt;}
.h10_c01066{height:36.860000pt;}
.ha_c01066{height:39.163750pt;}
.hf_c01066{height:41.467500pt;}
.hc_c01066{height:43.771250pt;}
.h3_c01066{height:46.075000pt;}
.h7_c01066{height:48.378750pt;}
.he_c01066{height:49.147500pt;}
.h5_c01066{height:50.682500pt;}
.hb_c01066{height:52.986250pt;}
.h4_c01066{height:55.290000pt;}
.hd_c01066{height:56.058750pt;}
.h2_c01066{height:57.593750pt;}
.h6_c01066{height:59.897500pt;}
.h8_c01066{height:62.201250pt;}
.h1_c01066{height:1035.333333pt;}
.h0_c01066{height:1035.520000pt;}
.w1_c01066{width:732.666667pt;}
.w0_c01066{width:732.800000pt;}
.x0_c01066{left:0.000000pt;}
.x2_c01066{left:88.320000pt;}
.x8_c01066{left:89.600000pt;}
.xa_c01066{left:90.880000pt;}
.xc_c01066{left:92.160000pt;}
.x7_c01066{left:128.000000pt;}
.x3_c01066{left:153.600000pt;}
.x9_c01066{left:155.520000pt;}
.xb_c01066{left:156.800000pt;}
.x5_c01066{left:231.680000pt;}
.x4_c01066{left:268.800000pt;}
.xd_c01066{left:290.560000pt;}
.xe_c01066{left:330.240000pt;}
.x6_c01066{left:346.240000pt;}
.xf_c01066{left:520.320000pt;}
.x16_c01066{left:521.600000pt;}
.x20_c01066{left:522.880000pt;}
.x24_c01066{left:524.160000pt;}
.x10_c01066{left:540.160000pt;}
.x1d_c01066{left:541.440000pt;}
.x23_c01066{left:542.720000pt;}
.x17_c01066{left:558.720000pt;}
.x22_c01066{left:560.000000pt;}
.x25_c01066{left:561.280000pt;}
.x1b_c01066{left:568.960000pt;}
.x1c_c01066{left:580.480000pt;}
.x14_c01066{left:587.520000pt;}
.x11_c01066{left:588.800000pt;}
.x1f_c01066{left:590.080000pt;}
.x12_c01066{left:618.240000pt;}
.x18_c01066{left:627.840000pt;}
.x1_c01066{left:638.080000pt;}
.x1a_c01066{left:647.040000pt;}
.x13_c01066{left:656.000000pt;}
.x21_c01066{left:657.280000pt;}
.x26_c01066{left:658.560000pt;}
.x27_c01066{left:659.840000pt;}
.x19_c01066{left:666.240000pt;}
.x15_c01066{left:673.920000pt;}
.x1e_c01066{left:675.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7b59d2a641548036259062f0.woff2')format("woff");}.ff1_c01067{font-family:ff1_c01067;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3b_c01067{transform:matrix(0.132475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132475,0.000000,0.000000,0.250000,0,0);}
.m24_c01067{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m2a_c01067{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m1f_c01067{transform:matrix(0.241825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241825,0.000000,0.000000,0.250000,0,0);}
.m3c_c01067{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m22_c01067{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m27_c01067{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mb_c01067{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m16_c01067{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);}
.m1e_c01067{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);}
.m2e_c01067{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);}
.m2c_c01067{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m23_c01067{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m4_c01067{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m9_c01067{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m14_c01067{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m8_c01067{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m12_c01067{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m5_c01067{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m2_c01067{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m32_c01067{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.ma_c01067{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m21_c01067{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m28_c01067{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m26_c01067{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m10_c01067{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01067{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m35_c01067{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1_c01067{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m11_c01067{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m31_c01067{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01067{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01067{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m7_c01067{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01067{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.mf_c01067{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m3_c01067{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m6_c01067{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m20_c01067{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);}
.m39_c01067{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01067{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);}
.m0_c01067{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01067{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);}
.m3f_c01067{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);}
.m1c_c01067{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.me_c01067{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m29_c01067{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m36_c01067{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.md_c01067{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m30_c01067{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m25_c01067{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);}
.m33_c01067{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01067{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);}
.m18_c01067{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);}
.m1d_c01067{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01067{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m17_c01067{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m38_c01067{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);}
.m34_c01067{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m19_c01067{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m13_c01067{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01067{transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);}
.m37_c01067{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m15_c01067{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.v0_c01067{vertical-align:0.000000px;}
.v1_c01067{vertical-align:8.640000px;}
.ls1_c01067{letter-spacing:0.000000px;}
.ls0_c01067{letter-spacing:50.642400px;}
.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;}
}
.ws2_c01067{word-spacing:0.000000px;}
.ws1_c01067{word-spacing:5.998095px;}
.ws0_c01067{word-spacing:81.210367px;}
.fc0_c01067{color:transparent;}
.fs9_c01067{font-size:17.280000px;}
.fs8_c01067{font-size:34.560000px;}
.fsf_c01067{font-size:37.440000px;}
.fsb_c01067{font-size:40.320000px;}
.fse_c01067{font-size:46.080000px;}
.fs6_c01067{font-size:48.960000px;}
.fsa_c01067{font-size:51.840000px;}
.fsc_c01067{font-size:54.720000px;}
.fsd_c01067{font-size:57.600000px;}
.fs0_c01067{font-size:60.480000px;}
.fs2_c01067{font-size:63.360000px;}
.fs4_c01067{font-size:66.240000px;}
.fs5_c01067{font-size:69.120000px;}
.fs7_c01067{font-size:72.000000px;}
.fs1_c01067{font-size:74.880000px;}
.fs3_c01067{font-size:77.760000px;}
.y0_c01067{bottom:0.000000px;}
.y38_c01067{bottom:60.480000px;}
.y7b_c01067{bottom:61.920000px;}
.y7c_c01067{bottom:62.640000px;}
.y37_c01067{bottom:63.360000px;}
.y7a_c01067{bottom:64.080000px;}
.y36_c01067{bottom:104.400000px;}
.y79_c01067{bottom:105.840000px;}
.y78_c01067{bottom:106.560000px;}
.y77_c01067{bottom:107.280000px;}
.y35_c01067{bottom:108.000000px;}
.y34_c01067{bottom:147.600000px;}
.y33_c01067{bottom:150.480000px;}
.y32_c01067{bottom:151.200000px;}
.y2e_c01067{bottom:180.000000px;}
.y31_c01067{bottom:181.440000px;}
.y30_c01067{bottom:182.160000px;}
.y2d_c01067{bottom:182.880000px;}
.y2f_c01067{bottom:183.600000px;}
.y2c_c01067{bottom:222.480000px;}
.y75_c01067{bottom:224.640000px;}
.y2b_c01067{bottom:225.360000px;}
.y76_c01067{bottom:226.800000px;}
.y2a_c01067{bottom:265.680000px;}
.y28_c01067{bottom:266.400000px;}
.y74_c01067{bottom:267.120000px;}
.y72_c01067{bottom:267.840000px;}
.y73_c01067{bottom:269.280000px;}
.y29_c01067{bottom:272.160000px;}
.y27_c01067{bottom:307.440000px;}
.y70_c01067{bottom:308.880000px;}
.y71_c01067{bottom:309.600000px;}
.y25_c01067{bottom:310.320000px;}
.y26_c01067{bottom:311.040000px;}
.y6f_c01067{bottom:311.760000px;}
.y24_c01067{bottom:349.920000px;}
.y23_c01067{bottom:352.080000px;}
.y6e_c01067{bottom:353.520000px;}
.y6d_c01067{bottom:354.960000px;}
.y22_c01067{bottom:393.840000px;}
.y6b_c01067{bottom:395.280000px;}
.y21_c01067{bottom:396.000000px;}
.y6c_c01067{bottom:396.720000px;}
.y6a_c01067{bottom:397.440000px;}
.y20_c01067{bottom:436.320000px;}
.y1f_c01067{bottom:438.480000px;}
.y68_c01067{bottom:439.200000px;}
.y69_c01067{bottom:440.640000px;}
.y67_c01067{bottom:441.360000px;}
.y1e_c01067{bottom:478.800000px;}
.y1d_c01067{bottom:480.960000px;}
.y64_c01067{bottom:481.680000px;}
.y66_c01067{bottom:482.400000px;}
.y65_c01067{bottom:483.120000px;}
.y63_c01067{bottom:483.840000px;}
.y1c_c01067{bottom:521.280000px;}
.y60_c01067{bottom:524.160000px;}
.y1b_c01067{bottom:524.880000px;}
.y5f_c01067{bottom:525.600000px;}
.y62_c01067{bottom:526.320000px;}
.y61_c01067{bottom:527.760000px;}
.y18_c01067{bottom:564.480000px;}
.y1a_c01067{bottom:565.920000px;}
.y17_c01067{bottom:567.360000px;}
.y5e_c01067{bottom:568.080000px;}
.y19_c01067{bottom:568.800000px;}
.y5d_c01067{bottom:569.520000px;}
.y16_c01067{bottom:607.680000px;}
.y15_c01067{bottom:609.840000px;}
.y5a_c01067{bottom:610.560000px;}
.y59_c01067{bottom:611.280000px;}
.y58_c01067{bottom:612.000000px;}
.y5c_c01067{bottom:612.720000px;}
.y5b_c01067{bottom:614.160000px;}
.y14_c01067{bottom:650.880000px;}
.y13_c01067{bottom:653.040000px;}
.y57_c01067{bottom:653.760000px;}
.y56_c01067{bottom:654.480000px;}
.y55_c01067{bottom:655.920000px;}
.y12_c01067{bottom:693.360000px;}
.y11_c01067{bottom:695.520000px;}
.y54_c01067{bottom:696.960000px;}
.y52_c01067{bottom:699.120000px;}
.y53_c01067{bottom:699.840000px;}
.y10_c01067{bottom:736.560000px;}
.yf_c01067{bottom:738.720000px;}
.y4f_c01067{bottom:740.160000px;}
.y50_c01067{bottom:741.600000px;}
.y4e_c01067{bottom:742.320000px;}
.y51_c01067{bottom:743.040000px;}
.ye_c01067{bottom:780.480000px;}
.yd_c01067{bottom:781.200000px;}
.y4c_c01067{bottom:783.360000px;}
.y4d_c01067{bottom:784.080000px;}
.y4b_c01067{bottom:785.520000px;}
.yc_c01067{bottom:822.960000px;}
.yb_c01067{bottom:824.400000px;}
.y49_c01067{bottom:825.840000px;}
.y4a_c01067{bottom:826.560000px;}
.y48_c01067{bottom:827.280000px;}
.ya_c01067{bottom:864.720000px;}
.y9_c01067{bottom:867.600000px;}
.y47_c01067{bottom:869.040000px;}
.y46_c01067{bottom:869.760000px;}
.y45_c01067{bottom:870.480000px;}
.y8_c01067{bottom:907.920000px;}
.y7_c01067{bottom:910.080000px;}
.y43_c01067{bottom:911.520000px;}
.y44_c01067{bottom:912.960000px;}
.y42_c01067{bottom:913.680000px;}
.y6_c01067{bottom:950.400000px;}
.y5_c01067{bottom:953.280000px;}
.y40_c01067{bottom:954.720000px;}
.y41_c01067{bottom:955.440000px;}
.y3f_c01067{bottom:956.160000px;}
.y4_c01067{bottom:993.600000px;}
.y3_c01067{bottom:995.760000px;}
.y3d_c01067{bottom:997.920000px;}
.y3c_c01067{bottom:999.360000px;}
.y3e_c01067{bottom:1000.080000px;}
.y2_c01067{bottom:1036.800000px;}
.y1_c01067{bottom:1038.960000px;}
.y3a_c01067{bottom:1041.120000px;}
.y3b_c01067{bottom:1042.560000px;}
.y39_c01067{bottom:1100.880000px;}
.hb_c01067{height:15.550313px;}
.ha_c01067{height:31.100625px;}
.h11_c01067{height:33.692344px;}
.hd_c01067{height:36.284062px;}
.h10_c01067{height:41.467500px;}
.h8_c01067{height:44.059219px;}
.hc_c01067{height:46.650937px;}
.he_c01067{height:49.242656px;}
.hf_c01067{height:51.834375px;}
.h2_c01067{height:54.426094px;}
.h4_c01067{height:57.017812px;}
.h6_c01067{height:59.609531px;}
.h12_c01067{height:60.474375px;}
.h7_c01067{height:62.201250px;}
.h9_c01067{height:64.792969px;}
.h3_c01067{height:67.384687px;}
.h5_c01067{height:69.976406px;}
.h1_c01067{height:1149.000000px;}
.h0_c01067{height:1149.120000px;}
.w1_c01067{width:820.500000px;}
.w0_c01067{width:820.800000px;}
.x0_c01067{left:0.000000px;}
.x1_c01067{left:99.360000px;}
.x7_c01067{left:101.520000px;}
.x6_c01067{left:144.000000px;}
.x8_c01067{left:154.080000px;}
.x2_c01067{left:172.800000px;}
.x5_c01067{left:174.240000px;}
.xd_c01067{left:228.960000px;}
.x9_c01067{left:272.160000px;}
.xa_c01067{left:326.880000px;}
.x3_c01067{left:357.120000px;}
.xb_c01067{left:369.360000px;}
.x4_c01067{left:411.840000px;}
.xc_c01067{left:422.640000px;}
.x1f_c01067{left:575.280000px;}
.xf_c01067{left:585.360000px;}
.x12_c01067{left:606.240000px;}
.x16_c01067{left:607.680000px;}
.x10_c01067{left:627.120000px;}
.x20_c01067{left:628.560000px;}
.x17_c01067{left:639.360000px;}
.x18_c01067{left:652.320000px;}
.x13_c01067{left:660.960000px;}
.x1b_c01067{left:662.400000px;}
.x14_c01067{left:694.080000px;}
.x1d_c01067{left:695.520000px;}
.x1c_c01067{left:704.160000px;}
.xe_c01067{left:719.280000px;}
.x1e_c01067{left:727.920000px;}
.x19_c01067{left:735.840000px;}
.x11_c01067{left:737.280000px;}
.x21_c01067{left:738.720000px;}
.x1a_c01067{left:756.720000px;}
.x15_c01067{left:758.160000px;}
@media print{
.v0_c01067{vertical-align:0.000000pt;}
.v1_c01067{vertical-align:7.680000pt;}
.ls1_c01067{letter-spacing:0.000000pt;}
.ls0_c01067{letter-spacing:45.015467pt;}
.ws2_c01067{word-spacing:0.000000pt;}
.ws1_c01067{word-spacing:5.331640pt;}
.ws0_c01067{word-spacing:72.186993pt;}
.fs9_c01067{font-size:15.360000pt;}
.fs8_c01067{font-size:30.720000pt;}
.fsf_c01067{font-size:33.280000pt;}
.fsb_c01067{font-size:35.840000pt;}
.fse_c01067{font-size:40.960000pt;}
.fs6_c01067{font-size:43.520000pt;}
.fsa_c01067{font-size:46.080000pt;}
.fsc_c01067{font-size:48.640000pt;}
.fsd_c01067{font-size:51.200000pt;}
.fs0_c01067{font-size:53.760000pt;}
.fs2_c01067{font-size:56.320000pt;}
.fs4_c01067{font-size:58.880000pt;}
.fs5_c01067{font-size:61.440000pt;}
.fs7_c01067{font-size:64.000000pt;}
.fs1_c01067{font-size:66.560000pt;}
.fs3_c01067{font-size:69.120000pt;}
.y0_c01067{bottom:0.000000pt;}
.y38_c01067{bottom:53.760000pt;}
.y7b_c01067{bottom:55.040000pt;}
.y7c_c01067{bottom:55.680000pt;}
.y37_c01067{bottom:56.320000pt;}
.y7a_c01067{bottom:56.960000pt;}
.y36_c01067{bottom:92.800000pt;}
.y79_c01067{bottom:94.080000pt;}
.y78_c01067{bottom:94.720000pt;}
.y77_c01067{bottom:95.360000pt;}
.y35_c01067{bottom:96.000000pt;}
.y34_c01067{bottom:131.200000pt;}
.y33_c01067{bottom:133.760000pt;}
.y32_c01067{bottom:134.400000pt;}
.y2e_c01067{bottom:160.000000pt;}
.y31_c01067{bottom:161.280000pt;}
.y30_c01067{bottom:161.920000pt;}
.y2d_c01067{bottom:162.560000pt;}
.y2f_c01067{bottom:163.200000pt;}
.y2c_c01067{bottom:197.760000pt;}
.y75_c01067{bottom:199.680000pt;}
.y2b_c01067{bottom:200.320000pt;}
.y76_c01067{bottom:201.600000pt;}
.y2a_c01067{bottom:236.160000pt;}
.y28_c01067{bottom:236.800000pt;}
.y74_c01067{bottom:237.440000pt;}
.y72_c01067{bottom:238.080000pt;}
.y73_c01067{bottom:239.360000pt;}
.y29_c01067{bottom:241.920000pt;}
.y27_c01067{bottom:273.280000pt;}
.y70_c01067{bottom:274.560000pt;}
.y71_c01067{bottom:275.200000pt;}
.y25_c01067{bottom:275.840000pt;}
.y26_c01067{bottom:276.480000pt;}
.y6f_c01067{bottom:277.120000pt;}
.y24_c01067{bottom:311.040000pt;}
.y23_c01067{bottom:312.960000pt;}
.y6e_c01067{bottom:314.240000pt;}
.y6d_c01067{bottom:315.520000pt;}
.y22_c01067{bottom:350.080000pt;}
.y6b_c01067{bottom:351.360000pt;}
.y21_c01067{bottom:352.000000pt;}
.y6c_c01067{bottom:352.640000pt;}
.y6a_c01067{bottom:353.280000pt;}
.y20_c01067{bottom:387.840000pt;}
.y1f_c01067{bottom:389.760000pt;}
.y68_c01067{bottom:390.400000pt;}
.y69_c01067{bottom:391.680000pt;}
.y67_c01067{bottom:392.320000pt;}
.y1e_c01067{bottom:425.600000pt;}
.y1d_c01067{bottom:427.520000pt;}
.y64_c01067{bottom:428.160000pt;}
.y66_c01067{bottom:428.800000pt;}
.y65_c01067{bottom:429.440000pt;}
.y63_c01067{bottom:430.080000pt;}
.y1c_c01067{bottom:463.360000pt;}
.y60_c01067{bottom:465.920000pt;}
.y1b_c01067{bottom:466.560000pt;}
.y5f_c01067{bottom:467.200000pt;}
.y62_c01067{bottom:467.840000pt;}
.y61_c01067{bottom:469.120000pt;}
.y18_c01067{bottom:501.760000pt;}
.y1a_c01067{bottom:503.040000pt;}
.y17_c01067{bottom:504.320000pt;}
.y5e_c01067{bottom:504.960000pt;}
.y19_c01067{bottom:505.600000pt;}
.y5d_c01067{bottom:506.240000pt;}
.y16_c01067{bottom:540.160000pt;}
.y15_c01067{bottom:542.080000pt;}
.y5a_c01067{bottom:542.720000pt;}
.y59_c01067{bottom:543.360000pt;}
.y58_c01067{bottom:544.000000pt;}
.y5c_c01067{bottom:544.640000pt;}
.y5b_c01067{bottom:545.920000pt;}
.y14_c01067{bottom:578.560000pt;}
.y13_c01067{bottom:580.480000pt;}
.y57_c01067{bottom:581.120000pt;}
.y56_c01067{bottom:581.760000pt;}
.y55_c01067{bottom:583.040000pt;}
.y12_c01067{bottom:616.320000pt;}
.y11_c01067{bottom:618.240000pt;}
.y54_c01067{bottom:619.520000pt;}
.y52_c01067{bottom:621.440000pt;}
.y53_c01067{bottom:622.080000pt;}
.y10_c01067{bottom:654.720000pt;}
.yf_c01067{bottom:656.640000pt;}
.y4f_c01067{bottom:657.920000pt;}
.y50_c01067{bottom:659.200000pt;}
.y4e_c01067{bottom:659.840000pt;}
.y51_c01067{bottom:660.480000pt;}
.ye_c01067{bottom:693.760000pt;}
.yd_c01067{bottom:694.400000pt;}
.y4c_c01067{bottom:696.320000pt;}
.y4d_c01067{bottom:696.960000pt;}
.y4b_c01067{bottom:698.240000pt;}
.yc_c01067{bottom:731.520000pt;}
.yb_c01067{bottom:732.800000pt;}
.y49_c01067{bottom:734.080000pt;}
.y4a_c01067{bottom:734.720000pt;}
.y48_c01067{bottom:735.360000pt;}
.ya_c01067{bottom:768.640000pt;}
.y9_c01067{bottom:771.200000pt;}
.y47_c01067{bottom:772.480000pt;}
.y46_c01067{bottom:773.120000pt;}
.y45_c01067{bottom:773.760000pt;}
.y8_c01067{bottom:807.040000pt;}
.y7_c01067{bottom:808.960000pt;}
.y43_c01067{bottom:810.240000pt;}
.y44_c01067{bottom:811.520000pt;}
.y42_c01067{bottom:812.160000pt;}
.y6_c01067{bottom:844.800000pt;}
.y5_c01067{bottom:847.360000pt;}
.y40_c01067{bottom:848.640000pt;}
.y41_c01067{bottom:849.280000pt;}
.y3f_c01067{bottom:849.920000pt;}
.y4_c01067{bottom:883.200000pt;}
.y3_c01067{bottom:885.120000pt;}
.y3d_c01067{bottom:887.040000pt;}
.y3c_c01067{bottom:888.320000pt;}
.y3e_c01067{bottom:888.960000pt;}
.y2_c01067{bottom:921.600000pt;}
.y1_c01067{bottom:923.520000pt;}
.y3a_c01067{bottom:925.440000pt;}
.y3b_c01067{bottom:926.720000pt;}
.y39_c01067{bottom:978.560000pt;}
.hb_c01067{height:13.822500pt;}
.ha_c01067{height:27.645000pt;}
.h11_c01067{height:29.948750pt;}
.hd_c01067{height:32.252500pt;}
.h10_c01067{height:36.860000pt;}
.h8_c01067{height:39.163750pt;}
.hc_c01067{height:41.467500pt;}
.he_c01067{height:43.771250pt;}
.hf_c01067{height:46.075000pt;}
.h2_c01067{height:48.378750pt;}
.h4_c01067{height:50.682500pt;}
.h6_c01067{height:52.986250pt;}
.h12_c01067{height:53.755000pt;}
.h7_c01067{height:55.290000pt;}
.h9_c01067{height:57.593750pt;}
.h3_c01067{height:59.897500pt;}
.h5_c01067{height:62.201250pt;}
.h1_c01067{height:1021.333333pt;}
.h0_c01067{height:1021.440000pt;}
.w1_c01067{width:729.333333pt;}
.w0_c01067{width:729.600000pt;}
.x0_c01067{left:0.000000pt;}
.x1_c01067{left:88.320000pt;}
.x7_c01067{left:90.240000pt;}
.x6_c01067{left:128.000000pt;}
.x8_c01067{left:136.960000pt;}
.x2_c01067{left:153.600000pt;}
.x5_c01067{left:154.880000pt;}
.xd_c01067{left:203.520000pt;}
.x9_c01067{left:241.920000pt;}
.xa_c01067{left:290.560000pt;}
.x3_c01067{left:317.440000pt;}
.xb_c01067{left:328.320000pt;}
.x4_c01067{left:366.080000pt;}
.xc_c01067{left:375.680000pt;}
.x1f_c01067{left:511.360000pt;}
.xf_c01067{left:520.320000pt;}
.x12_c01067{left:538.880000pt;}
.x16_c01067{left:540.160000pt;}
.x10_c01067{left:557.440000pt;}
.x20_c01067{left:558.720000pt;}
.x17_c01067{left:568.320000pt;}
.x18_c01067{left:579.840000pt;}
.x13_c01067{left:587.520000pt;}
.x1b_c01067{left:588.800000pt;}
.x14_c01067{left:616.960000pt;}
.x1d_c01067{left:618.240000pt;}
.x1c_c01067{left:625.920000pt;}
.xe_c01067{left:639.360000pt;}
.x1e_c01067{left:647.040000pt;}
.x19_c01067{left:654.080000pt;}
.x11_c01067{left:655.360000pt;}
.x21_c01067{left:656.640000pt;}
.x1a_c01067{left:672.640000pt;}
.x15_c01067{left:673.920000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_013249905ea66c6901cf0383.woff2')format("woff");}.ff1_c01068{font-family:ff1_c01068;line-height:1.109863;font-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_c01068{transform:matrix(0.199925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199925,0.000000,0.000000,0.250000,0,0);}
.m40_c01068{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01068{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m16_c01068{transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);}
.m31_c01068{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m2f_c01068{transform:matrix(0.244700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244700,0.000000,0.000000,0.250000,0,0);}
.m27_c01068{transform:matrix(0.245025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245025,0.000000,0.000000,0.250000,0,0);}
.mb_c01068{transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);}
.m41_c01068{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m26_c01068{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);}
.m4_c01068{transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);}
.m2e_c01068{transform:matrix(0.249350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249350,0.000000,0.000000,0.250000,0,0);}
.m25_c01068{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01068{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1_c01068{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);}
.m28_c01068{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m11_c01068{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m24_c01068{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m18_c01068{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_c01068{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m30_c01068{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m9_c01068{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);}
.m22_c01068{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01068{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01068{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m2_c01068{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m14_c01068{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);}
.m3b_c01068{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m21_c01068{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m17_c01068{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m35_c01068{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01068{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mf_c01068{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01068{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m33_c01068{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m6_c01068{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m0_c01068{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m39_c01068{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01068{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m34_c01068{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m15_c01068{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m32_c01068{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);}
.m36_c01068{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);}
.m38_c01068{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m3_c01068{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);}
.m1e_c01068{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m7_c01068{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);}
.m3f_c01068{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.ma_c01068{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m8_c01068{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m10_c01068{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.me_c01068{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01068{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);}
.m29_c01068{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m13_c01068{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01068{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01068{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m12_c01068{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01068{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m5_c01068{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01068{transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01068{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m37_c01068{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01068{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.m19_c01068{transform:matrix(0.870000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.870000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.870000,0.000000,0.000000,0.250000,0,0);}
.m20_c01068{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);}
.v0_c01068{vertical-align:0.000000px;}
.v1_c01068{vertical-align:11.520000px;}
.ls1_c01068{letter-spacing:0.000000px;}
.ls0_c01068{letter-spacing:47.972400px;}
.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;}
}
.ws1_c01068{word-spacing:0.000000px;}
.ws0_c01068{word-spacing:7.917875px;}
.fc0_c01068{color:transparent;}
.fsd_c01068{font-size:20.160000px;}
.fsb_c01068{font-size:25.920000px;}
.fsc_c01068{font-size:28.800000px;}
.fsf_c01068{font-size:34.560000px;}
.fs4_c01068{font-size:48.960000px;}
.fs9_c01068{font-size:51.840000px;}
.fse_c01068{font-size:54.720000px;}
.fs8_c01068{font-size:57.600000px;}
.fs5_c01068{font-size:60.480000px;}
.fs2_c01068{font-size:63.360000px;}
.fsa_c01068{font-size:66.240000px;}
.fs0_c01068{font-size:69.120000px;}
.fs6_c01068{font-size:72.000000px;}
.fs1_c01068{font-size:74.880000px;}
.fs3_c01068{font-size:77.760000px;}
.fs7_c01068{font-size:106.560000px;}
.y0_c01068{bottom:0.000000px;}
.y2b_c01068{bottom:25.920000px;}
.y26_c01068{bottom:56.880000px;}
.y28_c01068{bottom:57.600000px;}
.y2a_c01068{bottom:59.040000px;}
.y25_c01068{bottom:59.760000px;}
.y27_c01068{bottom:60.480000px;}
.y29_c01068{bottom:61.920000px;}
.y24_c01068{bottom:98.640000px;}
.y22_c01068{bottom:99.360000px;}
.y8a_c01068{bottom:100.800000px;}
.y20_c01068{bottom:101.520000px;}
.y23_c01068{bottom:102.240000px;}
.y8b_c01068{bottom:102.960000px;}
.y21_c01068{bottom:104.400000px;}
.y1f_c01068{bottom:141.120000px;}
.y1d_c01068{bottom:142.560000px;}
.y1e_c01068{bottom:143.280000px;}
.y89_c01068{bottom:144.000000px;}
.y1c_c01068{bottom:144.720000px;}
.y1b_c01068{bottom:184.320000px;}
.y88_c01068{bottom:185.760000px;}
.y87_c01068{bottom:186.480000px;}
.y1a_c01068{bottom:187.200000px;}
.y19_c01068{bottom:226.800000px;}
.y85_c01068{bottom:228.240000px;}
.y86_c01068{bottom:228.960000px;}
.y84_c01068{bottom:229.680000px;}
.y18_c01068{bottom:231.120000px;}
.y14_c01068{bottom:270.720000px;}
.y17_c01068{bottom:271.440000px;}
.y15_c01068{bottom:272.160000px;}
.y16_c01068{bottom:272.880000px;}
.y13_c01068{bottom:274.320000px;}
.y10_c01068{bottom:306.000000px;}
.y12_c01068{bottom:313.200000px;}
.yf_c01068{bottom:316.080000px;}
.y82_c01068{bottom:316.800000px;}
.y11_c01068{bottom:317.520000px;}
.y83_c01068{bottom:318.240000px;}
.ye_c01068{bottom:356.400000px;}
.yd_c01068{bottom:357.120000px;}
.y80_c01068{bottom:358.560000px;}
.yc_c01068{bottom:359.280000px;}
.y81_c01068{bottom:360.000000px;}
.y7e_c01068{bottom:360.720000px;}
.y7f_c01068{bottom:361.440000px;}
.yb_c01068{bottom:399.600000px;}
.ya_c01068{bottom:400.320000px;}
.y7c_c01068{bottom:401.040000px;}
.y7d_c01068{bottom:401.760000px;}
.y9_c01068{bottom:402.480000px;}
.y7b_c01068{bottom:403.920000px;}
.y5_c01068{bottom:442.080000px;}
.y8_c01068{bottom:443.520000px;}
.y7_c01068{bottom:444.240000px;}
.y4_c01068{bottom:444.960000px;}
.y7a_c01068{bottom:445.680000px;}
.y6_c01068{bottom:446.400000px;}
.y79_c01068{bottom:447.120000px;}
.y2_c01068{bottom:485.280000px;}
.y3_c01068{bottom:486.000000px;}
.y1_c01068{bottom:486.720000px;}
.y77_c01068{bottom:488.160000px;}
.y76_c01068{bottom:490.320000px;}
.y78_c01068{bottom:491.040000px;}
.y4b_c01068{bottom:528.480000px;}
.y4e_c01068{bottom:529.200000px;}
.y4a_c01068{bottom:531.360000px;}
.y4c_c01068{bottom:532.080000px;}
.y4d_c01068{bottom:532.800000px;}
.y75_c01068{bottom:533.520000px;}
.y48_c01068{bottom:570.960000px;}
.y49_c01068{bottom:571.680000px;}
.y47_c01068{bottom:574.560000px;}
.y74_c01068{bottom:575.280000px;}
.y73_c01068{bottom:576.720000px;}
.y44_c01068{bottom:614.160000px;}
.y46_c01068{bottom:614.880000px;}
.y43_c01068{bottom:616.320000px;}
.y42_c01068{bottom:617.040000px;}
.y45_c01068{bottom:617.760000px;}
.y72_c01068{bottom:619.200000px;}
.y3f_c01068{bottom:656.640000px;}
.y3e_c01068{bottom:658.800000px;}
.y40_c01068{bottom:660.240000px;}
.y41_c01068{bottom:660.960000px;}
.y70_c01068{bottom:661.680000px;}
.y71_c01068{bottom:663.120000px;}
.y3d_c01068{bottom:699.120000px;}
.y3c_c01068{bottom:701.280000px;}
.y6f_c01068{bottom:704.160000px;}
.y6d_c01068{bottom:704.880000px;}
.y6e_c01068{bottom:705.600000px;}
.y3b_c01068{bottom:741.600000px;}
.y3a_c01068{bottom:744.480000px;}
.y69_c01068{bottom:745.920000px;}
.y6a_c01068{bottom:746.640000px;}
.y68_c01068{bottom:748.080000px;}
.y6b_c01068{bottom:748.800000px;}
.y6c_c01068{bottom:749.520000px;}
.y39_c01068{bottom:784.800000px;}
.y38_c01068{bottom:787.680000px;}
.y65_c01068{bottom:788.400000px;}
.y66_c01068{bottom:789.120000px;}
.y67_c01068{bottom:789.840000px;}
.y64_c01068{bottom:791.280000px;}
.y37_c01068{bottom:827.280000px;}
.y36_c01068{bottom:830.160000px;}
.y62_c01068{bottom:831.600000px;}
.y63_c01068{bottom:833.040000px;}
.y61_c01068{bottom:834.480000px;}
.y35_c01068{bottom:871.200000px;}
.y34_c01068{bottom:873.360000px;}
.y5f_c01068{bottom:875.520000px;}
.y60_c01068{bottom:876.240000px;}
.y5d_c01068{bottom:876.960000px;}
.y5e_c01068{bottom:877.680000px;}
.y33_c01068{bottom:914.400000px;}
.y32_c01068{bottom:916.560000px;}
.y5c_c01068{bottom:918.720000px;}
.y5b_c01068{bottom:919.440000px;}
.y5a_c01068{bottom:920.880000px;}
.y31_c01068{bottom:956.880000px;}
.y30_c01068{bottom:959.760000px;}
.y57_c01068{bottom:962.640000px;}
.y58_c01068{bottom:963.360000px;}
.y56_c01068{bottom:964.080000px;}
.y59_c01068{bottom:965.520000px;}
.y2f_c01068{bottom:1000.800000px;}
.y2e_c01068{bottom:1002.240000px;}
.y54_c01068{bottom:1005.840000px;}
.y53_c01068{bottom:1007.280000px;}
.y55_c01068{bottom:1008.720000px;}
.y2d_c01068{bottom:1043.280000px;}
.y2c_c01068{bottom:1044.720000px;}
.y51_c01068{bottom:1049.040000px;}
.y50_c01068{bottom:1049.760000px;}
.y52_c01068{bottom:1050.480000px;}
.y4f_c01068{bottom:1051.200000px;}
.h10_c01068{height:18.142031px;}
.hd_c01068{height:23.325469px;}
.he_c01068{height:25.917187px;}
.h12_c01068{height:31.100625px;}
.h6_c01068{height:44.059219px;}
.hb_c01068{height:46.650937px;}
.h11_c01068{height:49.242656px;}
.ha_c01068{height:51.834375px;}
.h7_c01068{height:54.426094px;}
.h4_c01068{height:57.017812px;}
.hc_c01068{height:59.609531px;}
.h2_c01068{height:62.201250px;}
.hf_c01068{height:63.354375px;}
.h8_c01068{height:64.792969px;}
.h3_c01068{height:67.384687px;}
.h5_c01068{height:69.976406px;}
.h9_c01068{height:95.893594px;}
.h1_c01068{height:1164.000000px;}
.h0_c01068{height:1164.240000px;}
.w1_c01068{width:822.750000px;}
.w0_c01068{width:822.960000px;}
.x0_c01068{left:0.000000px;}
.x1b_c01068{left:90.720000px;}
.x1_c01068{left:92.880000px;}
.xf_c01068{left:94.320000px;}
.x20_c01068{left:136.080000px;}
.x10_c01068{left:138.240000px;}
.x1c_c01068{left:164.880000px;}
.x2_c01068{left:166.320000px;}
.x9_c01068{left:167.760000px;}
.x1a_c01068{left:169.920000px;}
.xd_c01068{left:255.600000px;}
.x1d_c01068{left:262.800000px;}
.x3_c01068{left:264.240000px;}
.xa_c01068{left:286.560000px;}
.x1e_c01068{left:306.720000px;}
.x7_c01068{left:308.160000px;}
.x11_c01068{left:311.040000px;}
.x4_c01068{left:318.960000px;}
.x6_c01068{left:340.560000px;}
.x8_c01068{left:350.640000px;}
.x1f_c01068{left:361.440000px;}
.xe_c01068{left:384.480000px;}
.x12_c01068{left:393.840000px;}
.x5_c01068{left:404.640000px;}
.x13_c01068{left:438.480000px;}
.xb_c01068{left:470.880000px;}
.xc_c01068{left:519.840000px;}
.x21_c01068{left:567.360000px;}
.x2b_c01068{left:568.800000px;}
.x2f_c01068{left:578.880000px;}
.x14_c01068{left:581.040000px;}
.x29_c01068{left:599.040000px;}
.x22_c01068{left:600.480000px;}
.x30_c01068{left:602.640000px;}
.x15_c01068{left:612.000000px;}
.x23_c01068{left:620.640000px;}
.x2e_c01068{left:622.800000px;}
.x16_c01068{left:624.240000px;}
.x2d_c01068{left:626.400000px;}
.x2a_c01068{left:632.880000px;}
.x25_c01068{left:654.480000px;}
.x17_c01068{left:656.640000px;}
.x26_c01068{left:687.600000px;}
.x18_c01068{left:689.760000px;}
.x27_c01068{left:720.000000px;}
.x2c_c01068{left:721.440000px;}
.x24_c01068{left:730.800000px;}
.x19_c01068{left:732.960000px;}
.x28_c01068{left:751.680000px;}
@media print{
.v0_c01068{vertical-align:0.000000pt;}
.v1_c01068{vertical-align:10.240000pt;}
.ls1_c01068{letter-spacing:0.000000pt;}
.ls0_c01068{letter-spacing:42.642133pt;}
.ws1_c01068{word-spacing:0.000000pt;}
.ws0_c01068{word-spacing:7.038111pt;}
.fsd_c01068{font-size:17.920000pt;}
.fsb_c01068{font-size:23.040000pt;}
.fsc_c01068{font-size:25.600000pt;}
.fsf_c01068{font-size:30.720000pt;}
.fs4_c01068{font-size:43.520000pt;}
.fs9_c01068{font-size:46.080000pt;}
.fse_c01068{font-size:48.640000pt;}
.fs8_c01068{font-size:51.200000pt;}
.fs5_c01068{font-size:53.760000pt;}
.fs2_c01068{font-size:56.320000pt;}
.fsa_c01068{font-size:58.880000pt;}
.fs0_c01068{font-size:61.440000pt;}
.fs6_c01068{font-size:64.000000pt;}
.fs1_c01068{font-size:66.560000pt;}
.fs3_c01068{font-size:69.120000pt;}
.fs7_c01068{font-size:94.720000pt;}
.y0_c01068{bottom:0.000000pt;}
.y2b_c01068{bottom:23.040000pt;}
.y26_c01068{bottom:50.560000pt;}
.y28_c01068{bottom:51.200000pt;}
.y2a_c01068{bottom:52.480000pt;}
.y25_c01068{bottom:53.120000pt;}
.y27_c01068{bottom:53.760000pt;}
.y29_c01068{bottom:55.040000pt;}
.y24_c01068{bottom:87.680000pt;}
.y22_c01068{bottom:88.320000pt;}
.y8a_c01068{bottom:89.600000pt;}
.y20_c01068{bottom:90.240000pt;}
.y23_c01068{bottom:90.880000pt;}
.y8b_c01068{bottom:91.520000pt;}
.y21_c01068{bottom:92.800000pt;}
.y1f_c01068{bottom:125.440000pt;}
.y1d_c01068{bottom:126.720000pt;}
.y1e_c01068{bottom:127.360000pt;}
.y89_c01068{bottom:128.000000pt;}
.y1c_c01068{bottom:128.640000pt;}
.y1b_c01068{bottom:163.840000pt;}
.y88_c01068{bottom:165.120000pt;}
.y87_c01068{bottom:165.760000pt;}
.y1a_c01068{bottom:166.400000pt;}
.y19_c01068{bottom:201.600000pt;}
.y85_c01068{bottom:202.880000pt;}
.y86_c01068{bottom:203.520000pt;}
.y84_c01068{bottom:204.160000pt;}
.y18_c01068{bottom:205.440000pt;}
.y14_c01068{bottom:240.640000pt;}
.y17_c01068{bottom:241.280000pt;}
.y15_c01068{bottom:241.920000pt;}
.y16_c01068{bottom:242.560000pt;}
.y13_c01068{bottom:243.840000pt;}
.y10_c01068{bottom:272.000000pt;}
.y12_c01068{bottom:278.400000pt;}
.yf_c01068{bottom:280.960000pt;}
.y82_c01068{bottom:281.600000pt;}
.y11_c01068{bottom:282.240000pt;}
.y83_c01068{bottom:282.880000pt;}
.ye_c01068{bottom:316.800000pt;}
.yd_c01068{bottom:317.440000pt;}
.y80_c01068{bottom:318.720000pt;}
.yc_c01068{bottom:319.360000pt;}
.y81_c01068{bottom:320.000000pt;}
.y7e_c01068{bottom:320.640000pt;}
.y7f_c01068{bottom:321.280000pt;}
.yb_c01068{bottom:355.200000pt;}
.ya_c01068{bottom:355.840000pt;}
.y7c_c01068{bottom:356.480000pt;}
.y7d_c01068{bottom:357.120000pt;}
.y9_c01068{bottom:357.760000pt;}
.y7b_c01068{bottom:359.040000pt;}
.y5_c01068{bottom:392.960000pt;}
.y8_c01068{bottom:394.240000pt;}
.y7_c01068{bottom:394.880000pt;}
.y4_c01068{bottom:395.520000pt;}
.y7a_c01068{bottom:396.160000pt;}
.y6_c01068{bottom:396.800000pt;}
.y79_c01068{bottom:397.440000pt;}
.y2_c01068{bottom:431.360000pt;}
.y3_c01068{bottom:432.000000pt;}
.y1_c01068{bottom:432.640000pt;}
.y77_c01068{bottom:433.920000pt;}
.y76_c01068{bottom:435.840000pt;}
.y78_c01068{bottom:436.480000pt;}
.y4b_c01068{bottom:469.760000pt;}
.y4e_c01068{bottom:470.400000pt;}
.y4a_c01068{bottom:472.320000pt;}
.y4c_c01068{bottom:472.960000pt;}
.y4d_c01068{bottom:473.600000pt;}
.y75_c01068{bottom:474.240000pt;}
.y48_c01068{bottom:507.520000pt;}
.y49_c01068{bottom:508.160000pt;}
.y47_c01068{bottom:510.720000pt;}
.y74_c01068{bottom:511.360000pt;}
.y73_c01068{bottom:512.640000pt;}
.y44_c01068{bottom:545.920000pt;}
.y46_c01068{bottom:546.560000pt;}
.y43_c01068{bottom:547.840000pt;}
.y42_c01068{bottom:548.480000pt;}
.y45_c01068{bottom:549.120000pt;}
.y72_c01068{bottom:550.400000pt;}
.y3f_c01068{bottom:583.680000pt;}
.y3e_c01068{bottom:585.600000pt;}
.y40_c01068{bottom:586.880000pt;}
.y41_c01068{bottom:587.520000pt;}
.y70_c01068{bottom:588.160000pt;}
.y71_c01068{bottom:589.440000pt;}
.y3d_c01068{bottom:621.440000pt;}
.y3c_c01068{bottom:623.360000pt;}
.y6f_c01068{bottom:625.920000pt;}
.y6d_c01068{bottom:626.560000pt;}
.y6e_c01068{bottom:627.200000pt;}
.y3b_c01068{bottom:659.200000pt;}
.y3a_c01068{bottom:661.760000pt;}
.y69_c01068{bottom:663.040000pt;}
.y6a_c01068{bottom:663.680000pt;}
.y68_c01068{bottom:664.960000pt;}
.y6b_c01068{bottom:665.600000pt;}
.y6c_c01068{bottom:666.240000pt;}
.y39_c01068{bottom:697.600000pt;}
.y38_c01068{bottom:700.160000pt;}
.y65_c01068{bottom:700.800000pt;}
.y66_c01068{bottom:701.440000pt;}
.y67_c01068{bottom:702.080000pt;}
.y64_c01068{bottom:703.360000pt;}
.y37_c01068{bottom:735.360000pt;}
.y36_c01068{bottom:737.920000pt;}
.y62_c01068{bottom:739.200000pt;}
.y63_c01068{bottom:740.480000pt;}
.y61_c01068{bottom:741.760000pt;}
.y35_c01068{bottom:774.400000pt;}
.y34_c01068{bottom:776.320000pt;}
.y5f_c01068{bottom:778.240000pt;}
.y60_c01068{bottom:778.880000pt;}
.y5d_c01068{bottom:779.520000pt;}
.y5e_c01068{bottom:780.160000pt;}
.y33_c01068{bottom:812.800000pt;}
.y32_c01068{bottom:814.720000pt;}
.y5c_c01068{bottom:816.640000pt;}
.y5b_c01068{bottom:817.280000pt;}
.y5a_c01068{bottom:818.560000pt;}
.y31_c01068{bottom:850.560000pt;}
.y30_c01068{bottom:853.120000pt;}
.y57_c01068{bottom:855.680000pt;}
.y58_c01068{bottom:856.320000pt;}
.y56_c01068{bottom:856.960000pt;}
.y59_c01068{bottom:858.240000pt;}
.y2f_c01068{bottom:889.600000pt;}
.y2e_c01068{bottom:890.880000pt;}
.y54_c01068{bottom:894.080000pt;}
.y53_c01068{bottom:895.360000pt;}
.y55_c01068{bottom:896.640000pt;}
.y2d_c01068{bottom:927.360000pt;}
.y2c_c01068{bottom:928.640000pt;}
.y51_c01068{bottom:932.480000pt;}
.y50_c01068{bottom:933.120000pt;}
.y52_c01068{bottom:933.760000pt;}
.y4f_c01068{bottom:934.400000pt;}
.h10_c01068{height:16.126250pt;}
.hd_c01068{height:20.733750pt;}
.he_c01068{height:23.037500pt;}
.h12_c01068{height:27.645000pt;}
.h6_c01068{height:39.163750pt;}
.hb_c01068{height:41.467500pt;}
.h11_c01068{height:43.771250pt;}
.ha_c01068{height:46.075000pt;}
.h7_c01068{height:48.378750pt;}
.h4_c01068{height:50.682500pt;}
.hc_c01068{height:52.986250pt;}
.h2_c01068{height:55.290000pt;}
.hf_c01068{height:56.315000pt;}
.h8_c01068{height:57.593750pt;}
.h3_c01068{height:59.897500pt;}
.h5_c01068{height:62.201250pt;}
.h9_c01068{height:85.238750pt;}
.h1_c01068{height:1034.666667pt;}
.h0_c01068{height:1034.880000pt;}
.w1_c01068{width:731.333333pt;}
.w0_c01068{width:731.520000pt;}
.x0_c01068{left:0.000000pt;}
.x1b_c01068{left:80.640000pt;}
.x1_c01068{left:82.560000pt;}
.xf_c01068{left:83.840000pt;}
.x20_c01068{left:120.960000pt;}
.x10_c01068{left:122.880000pt;}
.x1c_c01068{left:146.560000pt;}
.x2_c01068{left:147.840000pt;}
.x9_c01068{left:149.120000pt;}
.x1a_c01068{left:151.040000pt;}
.xd_c01068{left:227.200000pt;}
.x1d_c01068{left:233.600000pt;}
.x3_c01068{left:234.880000pt;}
.xa_c01068{left:254.720000pt;}
.x1e_c01068{left:272.640000pt;}
.x7_c01068{left:273.920000pt;}
.x11_c01068{left:276.480000pt;}
.x4_c01068{left:283.520000pt;}
.x6_c01068{left:302.720000pt;}
.x8_c01068{left:311.680000pt;}
.x1f_c01068{left:321.280000pt;}
.xe_c01068{left:341.760000pt;}
.x12_c01068{left:350.080000pt;}
.x5_c01068{left:359.680000pt;}
.x13_c01068{left:389.760000pt;}
.xb_c01068{left:418.560000pt;}
.xc_c01068{left:462.080000pt;}
.x21_c01068{left:504.320000pt;}
.x2b_c01068{left:505.600000pt;}
.x2f_c01068{left:514.560000pt;}
.x14_c01068{left:516.480000pt;}
.x29_c01068{left:532.480000pt;}
.x22_c01068{left:533.760000pt;}
.x30_c01068{left:535.680000pt;}
.x15_c01068{left:544.000000pt;}
.x23_c01068{left:551.680000pt;}
.x2e_c01068{left:553.600000pt;}
.x16_c01068{left:554.880000pt;}
.x2d_c01068{left:556.800000pt;}
.x2a_c01068{left:562.560000pt;}
.x25_c01068{left:581.760000pt;}
.x17_c01068{left:583.680000pt;}
.x26_c01068{left:611.200000pt;}
.x18_c01068{left:613.120000pt;}
.x27_c01068{left:640.000000pt;}
.x2c_c01068{left:641.280000pt;}
.x24_c01068{left:649.600000pt;}
.x19_c01068{left:651.520000pt;}
.x28_c01068{left:668.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_036c3a7ba2f4ae201236f6ef.woff2')format("woff");}.ff1_c01069{font-family:ff1_c01069;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4c_c01069{transform:matrix(0.191300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191300,0.000000,0.000000,0.250000,0,0);}
.m1f_c01069{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);}
.m3b_c01069{transform:matrix(0.230325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230325,0.000000,0.000000,0.250000,0,0);}
.m1e_c01069{transform:matrix(0.233575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233575,0.000000,0.000000,0.250000,0,0);}
.m2f_c01069{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m40_c01069{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m3d_c01069{transform:matrix(0.238550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238550,0.000000,0.000000,0.250000,0,0);}
.m4b_c01069{transform:matrix(0.243625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243625,0.000000,0.000000,0.250000,0,0);}
.m3a_c01069{transform:matrix(0.246675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246675,0.000000,0.000000,0.250000,0,0);}
.m26_c01069{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m1a_c01069{transform:matrix(0.249300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249300,0.000000,0.000000,0.250000,0,0);}
.m24_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);}
.m23_c01069{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.ma_c01069{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);}
.m18_c01069{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m7_c01069{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_c01069{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m9_c01069{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m22_c01069{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m2_c01069{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m11_c01069{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m16_c01069{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m3_c01069{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);}
.m33_c01069{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01069{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m0_c01069{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);}
.m30_c01069{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);}
.m28_c01069{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);}
.m31_c01069{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m10_c01069{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m4_c01069{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01069{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m34_c01069{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01069{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m25_c01069{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.md_c01069{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01069{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01069{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m6_c01069{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01069{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m32_c01069{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01069{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mf_c01069{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01069{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m15_c01069{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);}
.m37_c01069{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_c01069{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m5_c01069{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);}
.m19_c01069{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);}
.m29_c01069{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m27_c01069{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);}
.m43_c01069{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);}
.m12_c01069{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);}
.m48_c01069{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m47_c01069{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01069{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);}
.mc_c01069{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);}
.m3c_c01069{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m44_c01069{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m38_c01069{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.mb_c01069{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m45_c01069{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.me_c01069{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);}
.m39_c01069{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01069{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m49_c01069{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);}
.m3e_c01069{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m8_c01069{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m41_c01069{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m20_c01069{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m17_c01069{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m35_c01069{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01069{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m46_c01069{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01069{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m1_c01069{transform:matrix(0.967500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.967500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.967500,0.000000,0.000000,0.250000,0,0);}
.m36_c01069{transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);}
.v4_c01069{vertical-align:-2.880000px;}
.v0_c01069{vertical-align:0.000000px;}
.v3_c01069{vertical-align:2.880000px;}
.v2_c01069{vertical-align:8.640000px;}
.v1_c01069{vertical-align:11.520000px;}
.ls1_c01069{letter-spacing:0.000000px;}
.ls0_c01069{letter-spacing:45.367680px;}
.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;}
}
.ws5_c01069{word-spacing:0.000000px;}
.ws1_c01069{word-spacing:0.142080px;}
.ws3_c01069{word-spacing:9.212400px;}
.ws4_c01069{word-spacing:11.648400px;}
.ws0_c01069{word-spacing:14.240400px;}
.ws2_c01069{word-spacing:48.648000px;}
.fc0_c01069{color:transparent;}
.fse_c01069{font-size:17.280000px;}
.fs1_c01069{font-size:20.160000px;}
.fsd_c01069{font-size:23.040000px;}
.fs12_c01069{font-size:28.800000px;}
.fs10_c01069{font-size:34.560000px;}
.fs13_c01069{font-size:40.320000px;}
.fs11_c01069{font-size:43.200000px;}
.fs8_c01069{font-size:48.960000px;}
.fs4_c01069{font-size:51.840000px;}
.fs0_c01069{font-size:54.720000px;}
.fs2_c01069{font-size:57.600000px;}
.fs3_c01069{font-size:60.480000px;}
.fs9_c01069{font-size:63.360000px;}
.fsa_c01069{font-size:66.240000px;}
.fs5_c01069{font-size:69.120000px;}
.fsb_c01069{font-size:72.000000px;}
.fs7_c01069{font-size:74.880000px;}
.fs6_c01069{font-size:77.760000px;}
.fsc_c01069{font-size:80.640000px;}
.fs14_c01069{font-size:97.920000px;}
.fsf_c01069{font-size:103.680000px;}
.y0_c01069{bottom:0.000000px;}
.y81_c01069{bottom:46.800000px;}
.y80_c01069{bottom:55.440000px;}
.y82_c01069{bottom:56.160000px;}
.y7e_c01069{bottom:56.880000px;}
.y84_c01069{bottom:57.600000px;}
.y7f_c01069{bottom:59.760000px;}
.y7d_c01069{bottom:60.480000px;}
.y7c_c01069{bottom:97.200000px;}
.y7a_c01069{bottom:101.520000px;}
.y7b_c01069{bottom:102.240000px;}
.y79_c01069{bottom:129.600000px;}
.y83_c01069{bottom:131.040000px;}
.y76_c01069{bottom:131.760000px;}
.y77_c01069{bottom:132.480000px;}
.y78_c01069{bottom:133.200000px;}
.y75_c01069{bottom:133.920000px;}
.y74_c01069{bottom:135.360000px;}
.y72_c01069{bottom:175.680000px;}
.y71_c01069{bottom:176.400000px;}
.y73_c01069{bottom:177.120000px;}
.y6d_c01069{bottom:205.920000px;}
.y6c_c01069{bottom:206.640000px;}
.y6e_c01069{bottom:207.360000px;}
.y70_c01069{bottom:208.080000px;}
.y6f_c01069{bottom:208.800000px;}
.y6b_c01069{bottom:209.520000px;}
.y69_c01069{bottom:250.560000px;}
.y68_c01069{bottom:251.280000px;}
.y6a_c01069{bottom:253.440000px;}
.y65_c01069{bottom:281.520000px;}
.y67_c01069{bottom:282.960000px;}
.y66_c01069{bottom:283.680000px;}
.y64_c01069{bottom:285.120000px;}
.y62_c01069{bottom:317.520000px;}
.y5f_c01069{bottom:324.000000px;}
.y60_c01069{bottom:324.720000px;}
.y63_c01069{bottom:326.160000px;}
.y5e_c01069{bottom:326.880000px;}
.y61_c01069{bottom:327.600000px;}
.y5c_c01069{bottom:360.000000px;}
.y5b_c01069{bottom:366.480000px;}
.y58_c01069{bottom:368.640000px;}
.y5d_c01069{bottom:369.360000px;}
.y5a_c01069{bottom:370.080000px;}
.y59_c01069{bottom:370.800000px;}
.y56_c01069{bottom:371.520000px;}
.y57_c01069{bottom:374.400000px;}
.y52_c01069{bottom:408.960000px;}
.y51_c01069{bottom:409.680000px;}
.y54_c01069{bottom:411.120000px;}
.y50_c01069{bottom:411.840000px;}
.y55_c01069{bottom:412.560000px;}
.y53_c01069{bottom:413.280000px;}
.y4e_c01069{bottom:452.160000px;}
.y4d_c01069{bottom:452.880000px;}
.y4c_c01069{bottom:454.320000px;}
.y4f_c01069{bottom:455.760000px;}
.y48_c01069{bottom:494.640000px;}
.y47_c01069{bottom:496.800000px;}
.y49_c01069{bottom:497.520000px;}
.y4a_c01069{bottom:499.680000px;}
.y4b_c01069{bottom:500.400000px;}
.y44_c01069{bottom:537.840000px;}
.y45_c01069{bottom:540.000000px;}
.y46_c01069{bottom:540.720000px;}
.y43_c01069{bottom:542.160000px;}
.y40_c01069{bottom:581.040000px;}
.y42_c01069{bottom:581.760000px;}
.y41_c01069{bottom:583.920000px;}
.y3f_c01069{bottom:584.640000px;}
.y38_c01069{bottom:613.440000px;}
.y3b_c01069{bottom:614.880000px;}
.y3e_c01069{bottom:615.600000px;}
.y37_c01069{bottom:616.320000px;}
.y39_c01069{bottom:617.040000px;}
.y3a_c01069{bottom:617.760000px;}
.y3d_c01069{bottom:619.200000px;}
.y3c_c01069{bottom:620.640000px;}
.y33_c01069{bottom:656.640000px;}
.y34_c01069{bottom:658.800000px;}
.y32_c01069{bottom:659.520000px;}
.y36_c01069{bottom:660.240000px;}
.y35_c01069{bottom:660.960000px;}
.y2e_c01069{bottom:699.120000px;}
.y30_c01069{bottom:699.840000px;}
.y2d_c01069{bottom:701.280000px;}
.y31_c01069{bottom:702.720000px;}
.y2f_c01069{bottom:703.440000px;}
.y2b_c01069{bottom:743.040000px;}
.y2c_c01069{bottom:744.480000px;}
.y27_c01069{bottom:774.720000px;}
.y26_c01069{bottom:776.160000px;}
.y2a_c01069{bottom:777.600000px;}
.y28_c01069{bottom:779.040000px;}
.y29_c01069{bottom:779.760000px;}
.y20_c01069{bottom:817.200000px;}
.y21_c01069{bottom:818.640000px;}
.y1f_c01069{bottom:819.360000px;}
.y22_c01069{bottom:821.520000px;}
.y25_c01069{bottom:822.960000px;}
.y24_c01069{bottom:823.680000px;}
.y23_c01069{bottom:824.400000px;}
.y1e_c01069{bottom:861.840000px;}
.y19_c01069{bottom:892.800000px;}
.y1b_c01069{bottom:894.240000px;}
.y18_c01069{bottom:894.960000px;}
.y1c_c01069{bottom:896.400000px;}
.y1d_c01069{bottom:897.120000px;}
.y1a_c01069{bottom:897.840000px;}
.y17_c01069{bottom:936.720000px;}
.y16_c01069{bottom:937.440000px;}
.yf_c01069{bottom:967.680000px;}
.y10_c01069{bottom:968.400000px;}
.ye_c01069{bottom:969.120000px;}
.y12_c01069{bottom:970.560000px;}
.y14_c01069{bottom:971.280000px;}
.y11_c01069{bottom:972.000000px;}
.y13_c01069{bottom:972.720000px;}
.y15_c01069{bottom:974.160000px;}
.y8_c01069{bottom:1009.440000px;}
.y9_c01069{bottom:1011.600000px;}
.yd_c01069{bottom:1012.320000px;}
.yb_c01069{bottom:1013.040000px;}
.yc_c01069{bottom:1013.760000px;}
.ya_c01069{bottom:1015.200000px;}
.y6_c01069{bottom:1043.280000px;}
.y7_c01069{bottom:1044.000000px;}
.y1_c01069{bottom:1046.880000px;}
.y4_c01069{bottom:1047.600000px;}
.y3_c01069{bottom:1048.320000px;}
.y5_c01069{bottom:1049.040000px;}
.y2_c01069{bottom:1051.200000px;}
.h13_c01069{height:15.550313px;}
.h3_c01069{height:18.142031px;}
.h12_c01069{height:20.733750px;}
.h18_c01069{height:25.917187px;}
.h16_c01069{height:31.100625px;}
.h19_c01069{height:36.284062px;}
.h17_c01069{height:38.875781px;}
.hb_c01069{height:44.059219px;}
.h6_c01069{height:46.650937px;}
.h9_c01069{height:49.242656px;}
.h4_c01069{height:51.834375px;}
.h5_c01069{height:54.426094px;}
.hc_c01069{height:57.017812px;}
.h15_c01069{height:57.306094px;}
.hd_c01069{height:59.609531px;}
.h2_c01069{height:60.762656px;}
.h7_c01069{height:62.201250px;}
.he_c01069{height:63.066094px;}
.hf_c01069{height:64.792969px;}
.ha_c01069{height:67.384687px;}
.h8_c01069{height:69.976406px;}
.h10_c01069{height:70.264688px;}
.h11_c01069{height:72.568125px;}
.h1a_c01069{height:88.118437px;}
.h14_c01069{height:93.301875px;}
.h1_c01069{height:1164.000000px;}
.h0_c01069{height:1164.240000px;}
.w1_c01069{width:822.750000px;}
.w0_c01069{width:822.960000px;}
.x0_c01069{left:0.000000px;}
.x7_c01069{left:92.880000px;}
.x34_c01069{left:94.320000px;}
.x23_c01069{left:136.800000px;}
.x30_c01069{left:138.240000px;}
.x24_c01069{left:146.160000px;}
.x8_c01069{left:167.040000px;}
.xb_c01069{left:168.480000px;}
.x2e_c01069{left:169.920000px;}
.x1e_c01069{left:210.960000px;}
.xc_c01069{left:221.760000px;}
.x32_c01069{left:233.280000px;}
.x25_c01069{left:254.160000px;}
.x31_c01069{left:255.600000px;}
.x2f_c01069{left:265.680000px;}
.xd_c01069{left:275.040000px;}
.x33_c01069{left:287.280000px;}
.x9_c01069{left:297.360000px;}
.x11_c01069{left:299.520000px;}
.x21_c01069{left:308.160000px;}
.xe_c01069{left:318.960000px;}
.x17_c01069{left:329.040000px;}
.x1f_c01069{left:330.480000px;}
.xa_c01069{left:352.080000px;}
.x26_c01069{left:362.880000px;}
.x1c_c01069{left:372.960000px;}
.x35_c01069{left:374.400000px;}
.x18_c01069{left:384.480000px;}
.x1a_c01069{left:406.080000px;}
.x36_c01069{left:407.520000px;}
.x37_c01069{left:416.160000px;}
.x1d_c01069{left:426.960000px;}
.x12_c01069{left:437.040000px;}
.x2b_c01069{left:438.480000px;}
.xf_c01069{left:448.560000px;}
.x13_c01069{left:480.960000px;}
.x2c_c01069{left:492.480000px;}
.x10_c01069{left:503.280000px;}
.x19_c01069{left:514.080000px;}
.x27_c01069{left:530.640000px;}
.x14_c01069{left:535.680000px;}
.x2d_c01069{left:540.720000px;}
.x20_c01069{left:569.520000px;}
.x1_c01069{left:580.320000px;}
.x15_c01069{left:601.200000px;}
.x38_c01069{left:602.640000px;}
.x28_c01069{left:606.240000px;}
.x39_c01069{left:607.680000px;}
.x2_c01069{left:611.280000px;}
.x29_c01069{left:622.080000px;}
.x3_c01069{left:623.520000px;}
.x22_c01069{left:655.200000px;}
.x4_c01069{left:656.640000px;}
.x2a_c01069{left:679.680000px;}
.x1b_c01069{left:687.600000px;}
.x5_c01069{left:689.040000px;}
.x3a_c01069{left:690.480000px;}
.x6_c01069{left:722.160000px;}
.x16_c01069{left:732.240000px;}
@media print{
.v4_c01069{vertical-align:-2.560000pt;}
.v0_c01069{vertical-align:0.000000pt;}
.v3_c01069{vertical-align:2.560000pt;}
.v2_c01069{vertical-align:7.680000pt;}
.v1_c01069{vertical-align:10.240000pt;}
.ls1_c01069{letter-spacing:0.000000pt;}
.ls0_c01069{letter-spacing:40.326827pt;}
.ws5_c01069{word-spacing:0.000000pt;}
.ws1_c01069{word-spacing:0.126293pt;}
.ws3_c01069{word-spacing:8.188800pt;}
.ws4_c01069{word-spacing:10.354133pt;}
.ws0_c01069{word-spacing:12.658133pt;}
.ws2_c01069{word-spacing:43.242667pt;}
.fse_c01069{font-size:15.360000pt;}
.fs1_c01069{font-size:17.920000pt;}
.fsd_c01069{font-size:20.480000pt;}
.fs12_c01069{font-size:25.600000pt;}
.fs10_c01069{font-size:30.720000pt;}
.fs13_c01069{font-size:35.840000pt;}
.fs11_c01069{font-size:38.400000pt;}
.fs8_c01069{font-size:43.520000pt;}
.fs4_c01069{font-size:46.080000pt;}
.fs0_c01069{font-size:48.640000pt;}
.fs2_c01069{font-size:51.200000pt;}
.fs3_c01069{font-size:53.760000pt;}
.fs9_c01069{font-size:56.320000pt;}
.fsa_c01069{font-size:58.880000pt;}
.fs5_c01069{font-size:61.440000pt;}
.fsb_c01069{font-size:64.000000pt;}
.fs7_c01069{font-size:66.560000pt;}
.fs6_c01069{font-size:69.120000pt;}
.fsc_c01069{font-size:71.680000pt;}
.fs14_c01069{font-size:87.040000pt;}
.fsf_c01069{font-size:92.160000pt;}
.y0_c01069{bottom:0.000000pt;}
.y81_c01069{bottom:41.600000pt;}
.y80_c01069{bottom:49.280000pt;}
.y82_c01069{bottom:49.920000pt;}
.y7e_c01069{bottom:50.560000pt;}
.y84_c01069{bottom:51.200000pt;}
.y7f_c01069{bottom:53.120000pt;}
.y7d_c01069{bottom:53.760000pt;}
.y7c_c01069{bottom:86.400000pt;}
.y7a_c01069{bottom:90.240000pt;}
.y7b_c01069{bottom:90.880000pt;}
.y79_c01069{bottom:115.200000pt;}
.y83_c01069{bottom:116.480000pt;}
.y76_c01069{bottom:117.120000pt;}
.y77_c01069{bottom:117.760000pt;}
.y78_c01069{bottom:118.400000pt;}
.y75_c01069{bottom:119.040000pt;}
.y74_c01069{bottom:120.320000pt;}
.y72_c01069{bottom:156.160000pt;}
.y71_c01069{bottom:156.800000pt;}
.y73_c01069{bottom:157.440000pt;}
.y6d_c01069{bottom:183.040000pt;}
.y6c_c01069{bottom:183.680000pt;}
.y6e_c01069{bottom:184.320000pt;}
.y70_c01069{bottom:184.960000pt;}
.y6f_c01069{bottom:185.600000pt;}
.y6b_c01069{bottom:186.240000pt;}
.y69_c01069{bottom:222.720000pt;}
.y68_c01069{bottom:223.360000pt;}
.y6a_c01069{bottom:225.280000pt;}
.y65_c01069{bottom:250.240000pt;}
.y67_c01069{bottom:251.520000pt;}
.y66_c01069{bottom:252.160000pt;}
.y64_c01069{bottom:253.440000pt;}
.y62_c01069{bottom:282.240000pt;}
.y5f_c01069{bottom:288.000000pt;}
.y60_c01069{bottom:288.640000pt;}
.y63_c01069{bottom:289.920000pt;}
.y5e_c01069{bottom:290.560000pt;}
.y61_c01069{bottom:291.200000pt;}
.y5c_c01069{bottom:320.000000pt;}
.y5b_c01069{bottom:325.760000pt;}
.y58_c01069{bottom:327.680000pt;}
.y5d_c01069{bottom:328.320000pt;}
.y5a_c01069{bottom:328.960000pt;}
.y59_c01069{bottom:329.600000pt;}
.y56_c01069{bottom:330.240000pt;}
.y57_c01069{bottom:332.800000pt;}
.y52_c01069{bottom:363.520000pt;}
.y51_c01069{bottom:364.160000pt;}
.y54_c01069{bottom:365.440000pt;}
.y50_c01069{bottom:366.080000pt;}
.y55_c01069{bottom:366.720000pt;}
.y53_c01069{bottom:367.360000pt;}
.y4e_c01069{bottom:401.920000pt;}
.y4d_c01069{bottom:402.560000pt;}
.y4c_c01069{bottom:403.840000pt;}
.y4f_c01069{bottom:405.120000pt;}
.y48_c01069{bottom:439.680000pt;}
.y47_c01069{bottom:441.600000pt;}
.y49_c01069{bottom:442.240000pt;}
.y4a_c01069{bottom:444.160000pt;}
.y4b_c01069{bottom:444.800000pt;}
.y44_c01069{bottom:478.080000pt;}
.y45_c01069{bottom:480.000000pt;}
.y46_c01069{bottom:480.640000pt;}
.y43_c01069{bottom:481.920000pt;}
.y40_c01069{bottom:516.480000pt;}
.y42_c01069{bottom:517.120000pt;}
.y41_c01069{bottom:519.040000pt;}
.y3f_c01069{bottom:519.680000pt;}
.y38_c01069{bottom:545.280000pt;}
.y3b_c01069{bottom:546.560000pt;}
.y3e_c01069{bottom:547.200000pt;}
.y37_c01069{bottom:547.840000pt;}
.y39_c01069{bottom:548.480000pt;}
.y3a_c01069{bottom:549.120000pt;}
.y3d_c01069{bottom:550.400000pt;}
.y3c_c01069{bottom:551.680000pt;}
.y33_c01069{bottom:583.680000pt;}
.y34_c01069{bottom:585.600000pt;}
.y32_c01069{bottom:586.240000pt;}
.y36_c01069{bottom:586.880000pt;}
.y35_c01069{bottom:587.520000pt;}
.y2e_c01069{bottom:621.440000pt;}
.y30_c01069{bottom:622.080000pt;}
.y2d_c01069{bottom:623.360000pt;}
.y31_c01069{bottom:624.640000pt;}
.y2f_c01069{bottom:625.280000pt;}
.y2b_c01069{bottom:660.480000pt;}
.y2c_c01069{bottom:661.760000pt;}
.y27_c01069{bottom:688.640000pt;}
.y26_c01069{bottom:689.920000pt;}
.y2a_c01069{bottom:691.200000pt;}
.y28_c01069{bottom:692.480000pt;}
.y29_c01069{bottom:693.120000pt;}
.y20_c01069{bottom:726.400000pt;}
.y21_c01069{bottom:727.680000pt;}
.y1f_c01069{bottom:728.320000pt;}
.y22_c01069{bottom:730.240000pt;}
.y25_c01069{bottom:731.520000pt;}
.y24_c01069{bottom:732.160000pt;}
.y23_c01069{bottom:732.800000pt;}
.y1e_c01069{bottom:766.080000pt;}
.y19_c01069{bottom:793.600000pt;}
.y1b_c01069{bottom:794.880000pt;}
.y18_c01069{bottom:795.520000pt;}
.y1c_c01069{bottom:796.800000pt;}
.y1d_c01069{bottom:797.440000pt;}
.y1a_c01069{bottom:798.080000pt;}
.y17_c01069{bottom:832.640000pt;}
.y16_c01069{bottom:833.280000pt;}
.yf_c01069{bottom:860.160000pt;}
.y10_c01069{bottom:860.800000pt;}
.ye_c01069{bottom:861.440000pt;}
.y12_c01069{bottom:862.720000pt;}
.y14_c01069{bottom:863.360000pt;}
.y11_c01069{bottom:864.000000pt;}
.y13_c01069{bottom:864.640000pt;}
.y15_c01069{bottom:865.920000pt;}
.y8_c01069{bottom:897.280000pt;}
.y9_c01069{bottom:899.200000pt;}
.yd_c01069{bottom:899.840000pt;}
.yb_c01069{bottom:900.480000pt;}
.yc_c01069{bottom:901.120000pt;}
.ya_c01069{bottom:902.400000pt;}
.y6_c01069{bottom:927.360000pt;}
.y7_c01069{bottom:928.000000pt;}
.y1_c01069{bottom:930.560000pt;}
.y4_c01069{bottom:931.200000pt;}
.y3_c01069{bottom:931.840000pt;}
.y5_c01069{bottom:932.480000pt;}
.y2_c01069{bottom:934.400000pt;}
.h13_c01069{height:13.822500pt;}
.h3_c01069{height:16.126250pt;}
.h12_c01069{height:18.430000pt;}
.h18_c01069{height:23.037500pt;}
.h16_c01069{height:27.645000pt;}
.h19_c01069{height:32.252500pt;}
.h17_c01069{height:34.556250pt;}
.hb_c01069{height:39.163750pt;}
.h6_c01069{height:41.467500pt;}
.h9_c01069{height:43.771250pt;}
.h4_c01069{height:46.075000pt;}
.h5_c01069{height:48.378750pt;}
.hc_c01069{height:50.682500pt;}
.h15_c01069{height:50.938750pt;}
.hd_c01069{height:52.986250pt;}
.h2_c01069{height:54.011250pt;}
.h7_c01069{height:55.290000pt;}
.he_c01069{height:56.058750pt;}
.hf_c01069{height:57.593750pt;}
.ha_c01069{height:59.897500pt;}
.h8_c01069{height:62.201250pt;}
.h10_c01069{height:62.457500pt;}
.h11_c01069{height:64.505000pt;}
.h1a_c01069{height:78.327500pt;}
.h14_c01069{height:82.935000pt;}
.h1_c01069{height:1034.666667pt;}
.h0_c01069{height:1034.880000pt;}
.w1_c01069{width:731.333333pt;}
.w0_c01069{width:731.520000pt;}
.x0_c01069{left:0.000000pt;}
.x7_c01069{left:82.560000pt;}
.x34_c01069{left:83.840000pt;}
.x23_c01069{left:121.600000pt;}
.x30_c01069{left:122.880000pt;}
.x24_c01069{left:129.920000pt;}
.x8_c01069{left:148.480000pt;}
.xb_c01069{left:149.760000pt;}
.x2e_c01069{left:151.040000pt;}
.x1e_c01069{left:187.520000pt;}
.xc_c01069{left:197.120000pt;}
.x32_c01069{left:207.360000pt;}
.x25_c01069{left:225.920000pt;}
.x31_c01069{left:227.200000pt;}
.x2f_c01069{left:236.160000pt;}
.xd_c01069{left:244.480000pt;}
.x33_c01069{left:255.360000pt;}
.x9_c01069{left:264.320000pt;}
.x11_c01069{left:266.240000pt;}
.x21_c01069{left:273.920000pt;}
.xe_c01069{left:283.520000pt;}
.x17_c01069{left:292.480000pt;}
.x1f_c01069{left:293.760000pt;}
.xa_c01069{left:312.960000pt;}
.x26_c01069{left:322.560000pt;}
.x1c_c01069{left:331.520000pt;}
.x35_c01069{left:332.800000pt;}
.x18_c01069{left:341.760000pt;}
.x1a_c01069{left:360.960000pt;}
.x36_c01069{left:362.240000pt;}
.x37_c01069{left:369.920000pt;}
.x1d_c01069{left:379.520000pt;}
.x12_c01069{left:388.480000pt;}
.x2b_c01069{left:389.760000pt;}
.xf_c01069{left:398.720000pt;}
.x13_c01069{left:427.520000pt;}
.x2c_c01069{left:437.760000pt;}
.x10_c01069{left:447.360000pt;}
.x19_c01069{left:456.960000pt;}
.x27_c01069{left:471.680000pt;}
.x14_c01069{left:476.160000pt;}
.x2d_c01069{left:480.640000pt;}
.x20_c01069{left:506.240000pt;}
.x1_c01069{left:515.840000pt;}
.x15_c01069{left:534.400000pt;}
.x38_c01069{left:535.680000pt;}
.x28_c01069{left:538.880000pt;}
.x39_c01069{left:540.160000pt;}
.x2_c01069{left:543.360000pt;}
.x29_c01069{left:552.960000pt;}
.x3_c01069{left:554.240000pt;}
.x22_c01069{left:582.400000pt;}
.x4_c01069{left:583.680000pt;}
.x2a_c01069{left:604.160000pt;}
.x1b_c01069{left:611.200000pt;}
.x5_c01069{left:612.480000pt;}
.x3a_c01069{left:613.760000pt;}
.x6_c01069{left:641.920000pt;}
.x16_c01069{left:650.880000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_eecd582b25bb52fbaf894a9c.woff2')format("woff");}.ff1_c01070{font-family:ff1_c01070;line-height:1.109863;font-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_c01070{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m53_c01070{transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);}
.m4a_c01070{transform:matrix(0.170425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170425,0.000000,0.000000,0.250000,0,0);}
.m4d_c01070{transform:matrix(0.196850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196850,0.000000,0.000000,0.250000,0,0);}
.m52_c01070{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);}
.m5_c01070{transform:matrix(0.202375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202375,0.000000,0.000000,0.250000,0,0);}
.m49_c01070{transform:matrix(0.207525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207525,0.000000,0.000000,0.250000,0,0);}
.m46_c01070{transform:matrix(0.213100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213100,0.000000,0.000000,0.250000,0,0);}
.m21_c01070{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m47_c01070{transform:matrix(0.238450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238450,0.000000,0.000000,0.250000,0,0);}
.m2_c01070{transform:matrix(0.246925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246925,0.000000,0.000000,0.250000,0,0);}
.m4c_c01070{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m48_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);}
.m1b_c01070{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m12_c01070{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m28_c01070{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mc_c01070{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m16_c01070{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);}
.m39_c01070{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m3_c01070{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m37_c01070{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_c01070{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m6_c01070{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m41_c01070{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01070{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m29_c01070{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m38_c01070{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m8_c01070{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mb_c01070{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01070{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m35_c01070{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m4f_c01070{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01070{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.md_c01070{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m43_c01070{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m13_c01070{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m36_c01070{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m7_c01070{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.ma_c01070{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m18_c01070{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m14_c01070{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);}
.m32_c01070{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);}
.m27_c01070{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01070{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.me_c01070{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);}
.m40_c01070{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01070{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);}
.m30_c01070{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);}
.m1e_c01070{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);}
.m23_c01070{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m19_c01070{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01070{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);}
.m3b_c01070{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m33_c01070{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);}
.m26_c01070{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01070{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);}
.m45_c01070{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);}
.m4_c01070{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m22_c01070{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m10_c01070{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01070{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);}
.m50_c01070{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m42_c01070{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01070{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);}
.m3d_c01070{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m31_c01070{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m44_c01070{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01070{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);}
.m1f_c01070{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);}
.mf_c01070{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01070{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);}
.m9_c01070{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01070{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_c01070{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01070{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m34_c01070{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);}
.m25_c01070{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);}
.m15_c01070{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m51_c01070{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m24_c01070{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m1_c01070{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01070{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m11_c01070{transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);}
.m54_c01070{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.m20_c01070{transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);}
.v1_c01070{vertical-align:-8.640000px;}
.v4_c01070{vertical-align:-5.760000px;}
.v0_c01070{vertical-align:0.000000px;}
.v2_c01070{vertical-align:2.880000px;}
.v3_c01070{vertical-align:8.640000px;}
.ls1_c01070{letter-spacing:0.000000px;}
.ls0_c01070{letter-spacing:136.404480px;}
.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;}
}
.ws4_c01070{word-spacing:0.000000px;}
.ws2_c01070{word-spacing:9.474000px;}
.ws1_c01070{word-spacing:10.749600px;}
.ws3_c01070{word-spacing:11.690400px;}
.ws0_c01070{word-spacing:14.175968px;}
.fc0_c01070{color:transparent;}
.fs15_c01070{font-size:5.760000px;}
.fs16_c01070{font-size:17.280000px;}
.fs9_c01070{font-size:28.800000px;}
.fse_c01070{font-size:31.680000px;}
.fs1_c01070{font-size:34.560000px;}
.fs10_c01070{font-size:37.440000px;}
.fsd_c01070{font-size:40.320000px;}
.fs11_c01070{font-size:43.200000px;}
.fs12_c01070{font-size:46.080000px;}
.fsa_c01070{font-size:48.960000px;}
.fs4_c01070{font-size:51.840000px;}
.fs8_c01070{font-size:54.720000px;}
.fs6_c01070{font-size:57.600000px;}
.fsb_c01070{font-size:60.480000px;}
.fs0_c01070{font-size:63.360000px;}
.fs7_c01070{font-size:66.240000px;}
.fsf_c01070{font-size:69.120000px;}
.fsc_c01070{font-size:72.000000px;}
.fs3_c01070{font-size:74.880000px;}
.fs2_c01070{font-size:77.760000px;}
.fs5_c01070{font-size:83.520000px;}
.fs14_c01070{font-size:95.040000px;}
.fs13_c01070{font-size:103.680000px;}
.y0_c01070{bottom:0.000000px;}
.y7f_c01070{bottom:74.160000px;}
.y63_c01070{bottom:74.880000px;}
.y80_c01070{bottom:76.320000px;}
.y62_c01070{bottom:110.160000px;}
.y7c_c01070{bottom:117.360000px;}
.y7d_c01070{bottom:118.080000px;}
.y61_c01070{bottom:118.800000px;}
.y7e_c01070{bottom:119.520000px;}
.y60_c01070{bottom:120.240000px;}
.y5f_c01070{bottom:151.920000px;}
.y5d_c01070{bottom:161.280000px;}
.y5e_c01070{bottom:162.000000px;}
.y5c_c01070{bottom:162.720000px;}
.y5b_c01070{bottom:164.160000px;}
.y7b_c01070{bottom:202.320000px;}
.y5a_c01070{bottom:203.760000px;}
.y59_c01070{bottom:205.200000px;}
.y58_c01070{bottom:205.920000px;}
.y57_c01070{bottom:206.640000px;}
.y55_c01070{bottom:246.240000px;}
.y56_c01070{bottom:246.960000px;}
.y54_c01070{bottom:247.680000px;}
.y53_c01070{bottom:248.400000px;}
.y7a_c01070{bottom:249.120000px;}
.y4e_c01070{bottom:288.720000px;}
.y52_c01070{bottom:289.440000px;}
.y4d_c01070{bottom:290.160000px;}
.y79_c01070{bottom:290.880000px;}
.y50_c01070{bottom:291.600000px;}
.y4f_c01070{bottom:292.320000px;}
.y4a_c01070{bottom:331.200000px;}
.y4b_c01070{bottom:331.920000px;}
.y51_c01070{bottom:332.640000px;}
.y49_c01070{bottom:333.360000px;}
.y4c_c01070{bottom:334.800000px;}
.y47_c01070{bottom:375.840000px;}
.y46_c01070{bottom:376.560000px;}
.y48_c01070{bottom:377.280000px;}
.y78_c01070{bottom:378.000000px;}
.y44_c01070{bottom:419.040000px;}
.y43_c01070{bottom:419.760000px;}
.y45_c01070{bottom:420.480000px;}
.y77_c01070{bottom:421.200000px;}
.y41_c01070{bottom:460.800000px;}
.y40_c01070{bottom:461.520000px;}
.y3f_c01070{bottom:462.240000px;}
.y3e_c01070{bottom:462.960000px;}
.y42_c01070{bottom:463.680000px;}
.y76_c01070{bottom:464.400000px;}
.y3d_c01070{bottom:505.440000px;}
.y3a_c01070{bottom:506.160000px;}
.y3b_c01070{bottom:506.880000px;}
.y3c_c01070{bottom:507.600000px;}
.y75_c01070{bottom:508.320000px;}
.y37_c01070{bottom:547.200000px;}
.y35_c01070{bottom:547.920000px;}
.y36_c01070{bottom:548.640000px;}
.y39_c01070{bottom:550.080000px;}
.y38_c01070{bottom:550.800000px;}
.y32_c01070{bottom:590.400000px;}
.y31_c01070{bottom:591.120000px;}
.y74_c01070{bottom:591.840000px;}
.y73_c01070{bottom:592.560000px;}
.y34_c01070{bottom:593.280000px;}
.y33_c01070{bottom:594.000000px;}
.y2d_c01070{bottom:632.880000px;}
.y2c_c01070{bottom:633.600000px;}
.y30_c01070{bottom:634.320000px;}
.y72_c01070{bottom:635.040000px;}
.y2e_c01070{bottom:635.760000px;}
.y2f_c01070{bottom:636.480000px;}
.y71_c01070{bottom:637.200000px;}
.y29_c01070{bottom:676.080000px;}
.y28_c01070{bottom:676.800000px;}
.y27_c01070{bottom:677.520000px;}
.y70_c01070{bottom:678.240000px;}
.y2a_c01070{bottom:678.960000px;}
.y6f_c01070{bottom:679.680000px;}
.y24_c01070{bottom:718.560000px;}
.y23_c01070{bottom:719.280000px;}
.y2b_c01070{bottom:720.000000px;}
.y6e_c01070{bottom:720.720000px;}
.y26_c01070{bottom:722.160000px;}
.y25_c01070{bottom:722.880000px;}
.y21_c01070{bottom:760.320000px;}
.y22_c01070{bottom:761.760000px;}
.y20_c01070{bottom:763.200000px;}
.y6d_c01070{bottom:763.920000px;}
.y6c_c01070{bottom:766.080000px;}
.y1e_c01070{bottom:804.240000px;}
.y1f_c01070{bottom:807.120000px;}
.y19_c01070{bottom:835.200000px;}
.y1b_c01070{bottom:836.640000px;}
.y18_c01070{bottom:837.360000px;}
.y1d_c01070{bottom:838.080000px;}
.y1c_c01070{bottom:838.800000px;}
.y1a_c01070{bottom:839.520000px;}
.y16_c01070{bottom:880.560000px;}
.y17_c01070{bottom:882.720000px;}
.y12_c01070{bottom:910.800000px;}
.y15_c01070{bottom:912.240000px;}
.y10_c01070{bottom:912.960000px;}
.y11_c01070{bottom:913.680000px;}
.y13_c01070{bottom:914.400000px;}
.y14_c01070{bottom:915.840000px;}
.yf_c01070{bottom:956.160000px;}
.yd_c01070{bottom:956.880000px;}
.ye_c01070{bottom:957.600000px;}
.y9_c01070{bottom:985.680000px;}
.y8_c01070{bottom:987.120000px;}
.ya_c01070{bottom:990.000000px;}
.yb_c01070{bottom:990.720000px;}
.yc_c01070{bottom:991.440000px;}
.y6b_c01070{bottom:992.160000px;}
.y5_c01070{bottom:1023.120000px;}
.y2_c01070{bottom:1028.880000px;}
.y3_c01070{bottom:1030.320000px;}
.y1_c01070{bottom:1031.040000px;}
.y6_c01070{bottom:1033.200000px;}
.y4_c01070{bottom:1033.920000px;}
.y69_c01070{bottom:1034.640000px;}
.y6a_c01070{bottom:1035.360000px;}
.y7_c01070{bottom:1036.080000px;}
.y67_c01070{bottom:1110.960000px;}
.y68_c01070{bottom:1116.000000px;}
.y65_c01070{bottom:1117.440000px;}
.y66_c01070{bottom:1118.880000px;}
.y64_c01070{bottom:1120.320000px;}
.h17_c01070{height:6.910312px;}
.hb_c01070{height:25.917187px;}
.h10_c01070{height:28.508906px;}
.h3_c01070{height:31.100625px;}
.h12_c01070{height:33.692344px;}
.hf_c01070{height:36.284062px;}
.h13_c01070{height:38.875781px;}
.h14_c01070{height:41.467500px;}
.hc_c01070{height:44.059219px;}
.h6_c01070{height:46.650937px;}
.ha_c01070{height:49.242656px;}
.h8_c01070{height:51.834375px;}
.h18_c01070{height:52.122656px;}
.hd_c01070{height:54.426094px;}
.h2_c01070{height:57.017812px;}
.h9_c01070{height:59.609531px;}
.h19_c01070{height:60.474375px;}
.h11_c01070{height:62.201250px;}
.he_c01070{height:64.792969px;}
.h5_c01070{height:67.384687px;}
.h4_c01070{height:69.976406px;}
.h7_c01070{height:75.159844px;}
.h16_c01070{height:85.526719px;}
.h15_c01070{height:93.301875px;}
.h0_c01070{height:1158.480000px;}
.h1_c01070{height:1158.750000px;}
.w0_c01070{width:798.480000px;}
.w1_c01070{width:798.750000px;}
.x0_c01070{left:0.000000px;}
.x19_c01070{left:93.600000px;}
.x1_c01070{left:95.040000px;}
.x2_c01070{left:138.240000px;}
.x3_c01070{left:168.480000px;}
.x1a_c01070{left:169.920000px;}
.xc_c01070{left:213.120000px;}
.xf_c01070{left:254.880000px;}
.x1d_c01070{left:256.320000px;}
.x4_c01070{left:267.120000px;}
.x14_c01070{left:276.480000px;}
.x10_c01070{left:298.800000px;}
.x12_c01070{left:308.880000px;}
.x17_c01070{left:319.680000px;}
.x9_c01070{left:331.200000px;}
.xd_c01070{left:342.000000px;}
.x13_c01070{left:352.080000px;}
.x1c_c01070{left:364.320000px;}
.x15_c01070{left:373.680000px;}
.x18_c01070{left:375.120000px;}
.xa_c01070{left:384.480000px;}
.xe_c01070{left:395.280000px;}
.x16_c01070{left:406.080000px;}
.xb_c01070{left:428.400000px;}
.x11_c01070{left:439.920000px;}
.x5_c01070{left:450.720000px;}
.x1e_c01070{left:460.080000px;}
.x6_c01070{left:504.720000px;}
.x1b_c01070{left:569.520000px;}
.x7_c01070{left:570.960000px;}
.x8_c01070{left:602.640000px;}
.x2b_c01070{left:622.080000px;}
.x29_c01070{left:634.320000px;}
.x2d_c01070{left:655.199625px;}
.x27_c01070{left:656.640000px;}
.x23_c01070{left:658.080000px;}
.x28_c01070{left:689.760000px;}
.x24_c01070{left:691.200000px;}
.x1f_c01070{left:713.520000px;}
.x2c_c01070{left:722.160000px;}
.x25_c01070{left:723.600000px;}
.x20_c01070{left:731.520000px;}
.x26_c01070{left:733.680000px;}
.x22_c01070{left:736.560000px;}
.x21_c01070{left:750.960000px;}
.x2a_c01070{left:753.840000px;}
@media print{
.v1_c01070{vertical-align:-7.680000pt;}
.v4_c01070{vertical-align:-5.120000pt;}
.v0_c01070{vertical-align:0.000000pt;}
.v2_c01070{vertical-align:2.560000pt;}
.v3_c01070{vertical-align:7.680000pt;}
.ls1_c01070{letter-spacing:0.000000pt;}
.ls0_c01070{letter-spacing:121.248427pt;}
.ws4_c01070{word-spacing:0.000000pt;}
.ws2_c01070{word-spacing:8.421333pt;}
.ws1_c01070{word-spacing:9.555200pt;}
.ws3_c01070{word-spacing:10.391467pt;}
.ws0_c01070{word-spacing:12.600860pt;}
.fs15_c01070{font-size:5.120000pt;}
.fs16_c01070{font-size:15.360000pt;}
.fs9_c01070{font-size:25.600000pt;}
.fse_c01070{font-size:28.160000pt;}
.fs1_c01070{font-size:30.720000pt;}
.fs10_c01070{font-size:33.280000pt;}
.fsd_c01070{font-size:35.840000pt;}
.fs11_c01070{font-size:38.400000pt;}
.fs12_c01070{font-size:40.960000pt;}
.fsa_c01070{font-size:43.520000pt;}
.fs4_c01070{font-size:46.080000pt;}
.fs8_c01070{font-size:48.640000pt;}
.fs6_c01070{font-size:51.200000pt;}
.fsb_c01070{font-size:53.760000pt;}
.fs0_c01070{font-size:56.320000pt;}
.fs7_c01070{font-size:58.880000pt;}
.fsf_c01070{font-size:61.440000pt;}
.fsc_c01070{font-size:64.000000pt;}
.fs3_c01070{font-size:66.560000pt;}
.fs2_c01070{font-size:69.120000pt;}
.fs5_c01070{font-size:74.240000pt;}
.fs14_c01070{font-size:84.480000pt;}
.fs13_c01070{font-size:92.160000pt;}
.y0_c01070{bottom:0.000000pt;}
.y7f_c01070{bottom:65.920000pt;}
.y63_c01070{bottom:66.560000pt;}
.y80_c01070{bottom:67.840000pt;}
.y62_c01070{bottom:97.920000pt;}
.y7c_c01070{bottom:104.320000pt;}
.y7d_c01070{bottom:104.960000pt;}
.y61_c01070{bottom:105.600000pt;}
.y7e_c01070{bottom:106.240000pt;}
.y60_c01070{bottom:106.880000pt;}
.y5f_c01070{bottom:135.040000pt;}
.y5d_c01070{bottom:143.360000pt;}
.y5e_c01070{bottom:144.000000pt;}
.y5c_c01070{bottom:144.640000pt;}
.y5b_c01070{bottom:145.920000pt;}
.y7b_c01070{bottom:179.840000pt;}
.y5a_c01070{bottom:181.120000pt;}
.y59_c01070{bottom:182.400000pt;}
.y58_c01070{bottom:183.040000pt;}
.y57_c01070{bottom:183.680000pt;}
.y55_c01070{bottom:218.880000pt;}
.y56_c01070{bottom:219.520000pt;}
.y54_c01070{bottom:220.160000pt;}
.y53_c01070{bottom:220.800000pt;}
.y7a_c01070{bottom:221.440000pt;}
.y4e_c01070{bottom:256.640000pt;}
.y52_c01070{bottom:257.280000pt;}
.y4d_c01070{bottom:257.920000pt;}
.y79_c01070{bottom:258.560000pt;}
.y50_c01070{bottom:259.200000pt;}
.y4f_c01070{bottom:259.840000pt;}
.y4a_c01070{bottom:294.400000pt;}
.y4b_c01070{bottom:295.040000pt;}
.y51_c01070{bottom:295.680000pt;}
.y49_c01070{bottom:296.320000pt;}
.y4c_c01070{bottom:297.600000pt;}
.y47_c01070{bottom:334.080000pt;}
.y46_c01070{bottom:334.720000pt;}
.y48_c01070{bottom:335.360000pt;}
.y78_c01070{bottom:336.000000pt;}
.y44_c01070{bottom:372.480000pt;}
.y43_c01070{bottom:373.120000pt;}
.y45_c01070{bottom:373.760000pt;}
.y77_c01070{bottom:374.400000pt;}
.y41_c01070{bottom:409.600000pt;}
.y40_c01070{bottom:410.240000pt;}
.y3f_c01070{bottom:410.880000pt;}
.y3e_c01070{bottom:411.520000pt;}
.y42_c01070{bottom:412.160000pt;}
.y76_c01070{bottom:412.800000pt;}
.y3d_c01070{bottom:449.280000pt;}
.y3a_c01070{bottom:449.920000pt;}
.y3b_c01070{bottom:450.560000pt;}
.y3c_c01070{bottom:451.200000pt;}
.y75_c01070{bottom:451.840000pt;}
.y37_c01070{bottom:486.400000pt;}
.y35_c01070{bottom:487.040000pt;}
.y36_c01070{bottom:487.680000pt;}
.y39_c01070{bottom:488.960000pt;}
.y38_c01070{bottom:489.600000pt;}
.y32_c01070{bottom:524.800000pt;}
.y31_c01070{bottom:525.440000pt;}
.y74_c01070{bottom:526.080000pt;}
.y73_c01070{bottom:526.720000pt;}
.y34_c01070{bottom:527.360000pt;}
.y33_c01070{bottom:528.000000pt;}
.y2d_c01070{bottom:562.560000pt;}
.y2c_c01070{bottom:563.200000pt;}
.y30_c01070{bottom:563.840000pt;}
.y72_c01070{bottom:564.480000pt;}
.y2e_c01070{bottom:565.120000pt;}
.y2f_c01070{bottom:565.760000pt;}
.y71_c01070{bottom:566.400000pt;}
.y29_c01070{bottom:600.960000pt;}
.y28_c01070{bottom:601.600000pt;}
.y27_c01070{bottom:602.240000pt;}
.y70_c01070{bottom:602.880000pt;}
.y2a_c01070{bottom:603.520000pt;}
.y6f_c01070{bottom:604.160000pt;}
.y24_c01070{bottom:638.720000pt;}
.y23_c01070{bottom:639.360000pt;}
.y2b_c01070{bottom:640.000000pt;}
.y6e_c01070{bottom:640.640000pt;}
.y26_c01070{bottom:641.920000pt;}
.y25_c01070{bottom:642.560000pt;}
.y21_c01070{bottom:675.840000pt;}
.y22_c01070{bottom:677.120000pt;}
.y20_c01070{bottom:678.400000pt;}
.y6d_c01070{bottom:679.040000pt;}
.y6c_c01070{bottom:680.960000pt;}
.y1e_c01070{bottom:714.880000pt;}
.y1f_c01070{bottom:717.440000pt;}
.y19_c01070{bottom:742.400000pt;}
.y1b_c01070{bottom:743.680000pt;}
.y18_c01070{bottom:744.320000pt;}
.y1d_c01070{bottom:744.960000pt;}
.y1c_c01070{bottom:745.600000pt;}
.y1a_c01070{bottom:746.240000pt;}
.y16_c01070{bottom:782.720000pt;}
.y17_c01070{bottom:784.640000pt;}
.y12_c01070{bottom:809.600000pt;}
.y15_c01070{bottom:810.880000pt;}
.y10_c01070{bottom:811.520000pt;}
.y11_c01070{bottom:812.160000pt;}
.y13_c01070{bottom:812.800000pt;}
.y14_c01070{bottom:814.080000pt;}
.yf_c01070{bottom:849.920000pt;}
.yd_c01070{bottom:850.560000pt;}
.ye_c01070{bottom:851.200000pt;}
.y9_c01070{bottom:876.160000pt;}
.y8_c01070{bottom:877.440000pt;}
.ya_c01070{bottom:880.000000pt;}
.yb_c01070{bottom:880.640000pt;}
.yc_c01070{bottom:881.280000pt;}
.y6b_c01070{bottom:881.920000pt;}
.y5_c01070{bottom:909.440000pt;}
.y2_c01070{bottom:914.560000pt;}
.y3_c01070{bottom:915.840000pt;}
.y1_c01070{bottom:916.480000pt;}
.y6_c01070{bottom:918.400000pt;}
.y4_c01070{bottom:919.040000pt;}
.y69_c01070{bottom:919.680000pt;}
.y6a_c01070{bottom:920.320000pt;}
.y7_c01070{bottom:920.960000pt;}
.y67_c01070{bottom:987.520000pt;}
.y68_c01070{bottom:992.000000pt;}
.y65_c01070{bottom:993.280000pt;}
.y66_c01070{bottom:994.560000pt;}
.y64_c01070{bottom:995.840000pt;}
.h17_c01070{height:6.142500pt;}
.hb_c01070{height:23.037500pt;}
.h10_c01070{height:25.341250pt;}
.h3_c01070{height:27.645000pt;}
.h12_c01070{height:29.948750pt;}
.hf_c01070{height:32.252500pt;}
.h13_c01070{height:34.556250pt;}
.h14_c01070{height:36.860000pt;}
.hc_c01070{height:39.163750pt;}
.h6_c01070{height:41.467500pt;}
.ha_c01070{height:43.771250pt;}
.h8_c01070{height:46.075000pt;}
.h18_c01070{height:46.331250pt;}
.hd_c01070{height:48.378750pt;}
.h2_c01070{height:50.682500pt;}
.h9_c01070{height:52.986250pt;}
.h19_c01070{height:53.755000pt;}
.h11_c01070{height:55.290000pt;}
.he_c01070{height:57.593750pt;}
.h5_c01070{height:59.897500pt;}
.h4_c01070{height:62.201250pt;}
.h7_c01070{height:66.808750pt;}
.h16_c01070{height:76.023750pt;}
.h15_c01070{height:82.935000pt;}
.h0_c01070{height:1029.760000pt;}
.h1_c01070{height:1030.000000pt;}
.w0_c01070{width:709.760000pt;}
.w1_c01070{width:710.000000pt;}
.x0_c01070{left:0.000000pt;}
.x19_c01070{left:83.200000pt;}
.x1_c01070{left:84.480000pt;}
.x2_c01070{left:122.880000pt;}
.x3_c01070{left:149.760000pt;}
.x1a_c01070{left:151.040000pt;}
.xc_c01070{left:189.440000pt;}
.xf_c01070{left:226.560000pt;}
.x1d_c01070{left:227.840000pt;}
.x4_c01070{left:237.440000pt;}
.x14_c01070{left:245.760000pt;}
.x10_c01070{left:265.600000pt;}
.x12_c01070{left:274.560000pt;}
.x17_c01070{left:284.160000pt;}
.x9_c01070{left:294.400000pt;}
.xd_c01070{left:304.000000pt;}
.x13_c01070{left:312.960000pt;}
.x1c_c01070{left:323.840000pt;}
.x15_c01070{left:332.160000pt;}
.x18_c01070{left:333.440000pt;}
.xa_c01070{left:341.760000pt;}
.xe_c01070{left:351.360000pt;}
.x16_c01070{left:360.960000pt;}
.xb_c01070{left:380.800000pt;}
.x11_c01070{left:391.040000pt;}
.x5_c01070{left:400.640000pt;}
.x1e_c01070{left:408.960000pt;}
.x6_c01070{left:448.640000pt;}
.x1b_c01070{left:506.240000pt;}
.x7_c01070{left:507.520000pt;}
.x8_c01070{left:535.680000pt;}
.x2b_c01070{left:552.960000pt;}
.x29_c01070{left:563.840000pt;}
.x2d_c01070{left:582.399667pt;}
.x27_c01070{left:583.680000pt;}
.x23_c01070{left:584.960000pt;}
.x28_c01070{left:613.120000pt;}
.x24_c01070{left:614.400000pt;}
.x1f_c01070{left:634.240000pt;}
.x2c_c01070{left:641.920000pt;}
.x25_c01070{left:643.200000pt;}
.x20_c01070{left:650.240000pt;}
.x26_c01070{left:652.160000pt;}
.x22_c01070{left:654.720000pt;}
.x21_c01070{left:667.520000pt;}
.x2a_c01070{left:670.080000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2dca8d43e85af5ce79cb6baa.woff2')format("woff");}.ff1_c01071{font-family:ff1_c01071;line-height:1.109863;font-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_c01071{transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);}
.m5c_c01071{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m27_c01071{transform:matrix(0.243650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243650,0.000000,0.000000,0.250000,0,0);}
.m2b_c01071{transform:matrix(0.248400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248400,0.000000,0.000000,0.250000,0,0);}
.m4e_c01071{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);}
.m2c_c01071{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m44_c01071{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);}
.m4d_c01071{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);}
.m28_c01071{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);}
.m48_c01071{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);}
.m49_c01071{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);}
.m31_c01071{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01071{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.mb_c01071{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m51_c01071{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m9_c01071{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);}
.m58_c01071{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m7_c01071{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mf_c01071{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m8_c01071{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m57_c01071{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01071{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01071{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m21_c01071{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m17_c01071{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m47_c01071{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m36_c01071{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m33_c01071{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m3_c01071{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01071{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.me_c01071{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01071{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m10_c01071{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.ma_c01071{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1_c01071{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01071{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);}
.m4f_c01071{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01071{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m16_c01071{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);}
.m3a_c01071{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m11_c01071{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m23_c01071{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);}
.md_c01071{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m4_c01071{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);}
.m35_c01071{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);}
.m54_c01071{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m2_c01071{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01071{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);}
.m13_c01071{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);}
.m25_c01071{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m5_c01071{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m20_c01071{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);}
.m50_c01071{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m15_c01071{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);}
.m0_c01071{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m45_c01071{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);}
.m46_c01071{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m5b_c01071{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);}
.m12_c01071{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01071{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m41_c01071{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m52_c01071{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01071{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);}
.mc_c01071{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01071{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);}
.m42_c01071{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m29_c01071{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m34_c01071{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);}
.m38_c01071{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);}
.m22_c01071{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m53_c01071{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01071{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01071{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);}
.m40_c01071{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01071{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m24_c01071{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m55_c01071{transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);}
.m18_c01071{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01071{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.m37_c01071{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01071{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01071{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m26_c01071{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m32_c01071{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m43_c01071{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m56_c01071{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m5a_c01071{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m59_c01071{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01071{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);}
.m39_c01071{transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);}
.m6_c01071{transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);}
.m30_c01071{transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01071{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.v2_c01071{vertical-align:-5.760000px;}
.v0_c01071{vertical-align:0.000000px;}
.v1_c01071{vertical-align:5.760000px;}
.ls0_c01071{letter-spacing:0.000000px;}
.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:-4.617120px;}
.ws1_c01071{word-spacing:-4.433040px;}
.ws4_c01071{word-spacing:0.000000px;}
.ws3_c01071{word-spacing:47.739600px;}
.ws2_c01071{word-spacing:56.302502px;}
.fc0_c01071{color:transparent;}
.fs11_c01071{font-size:23.040000px;}
.fs10_c01071{font-size:25.920000px;}
.fs1_c01071{font-size:34.560000px;}
.fs0_c01071{font-size:37.440000px;}
.fsf_c01071{font-size:40.320000px;}
.fs2_c01071{font-size:43.200000px;}
.fse_c01071{font-size:46.080000px;}
.fs9_c01071{font-size:48.960000px;}
.fs6_c01071{font-size:51.840000px;}
.fs4_c01071{font-size:54.720000px;}
.fsa_c01071{font-size:57.600000px;}
.fs7_c01071{font-size:60.480000px;}
.fs5_c01071{font-size:63.360000px;}
.fs8_c01071{font-size:66.240000px;}
.fs3_c01071{font-size:69.120000px;}
.fsb_c01071{font-size:72.000000px;}
.fs12_c01071{font-size:77.760000px;}
.fsc_c01071{font-size:95.040000px;}
.fsd_c01071{font-size:97.920000px;}
.y0_c01071{bottom:0.000000px;}
.y8a_c01071{bottom:55.440000px;}
.y8b_c01071{bottom:56.880000px;}
.y89_c01071{bottom:59.040000px;}
.y88_c01071{bottom:86.400000px;}
.y85_c01071{bottom:87.120000px;}
.y87_c01071{bottom:88.560000px;}
.y86_c01071{bottom:89.280000px;}
.y83_c01071{bottom:118.800000px;}
.y84_c01071{bottom:119.520000px;}
.y82_c01071{bottom:120.240000px;}
.y81_c01071{bottom:120.960000px;}
.y7e_c01071{bottom:163.440000px;}
.y80_c01071{bottom:164.160000px;}
.y7f_c01071{bottom:164.880000px;}
.y7c_c01071{bottom:193.680000px;}
.y7b_c01071{bottom:194.400000px;}
.y78_c01071{bottom:195.120000px;}
.y7a_c01071{bottom:195.840000px;}
.y79_c01071{bottom:196.560000px;}
.y7d_c01071{bottom:197.280000px;}
.y74_c01071{bottom:225.360000px;}
.y77_c01071{bottom:226.080000px;}
.y76_c01071{bottom:226.800000px;}
.y72_c01071{bottom:227.520000px;}
.y75_c01071{bottom:228.240000px;}
.y73_c01071{bottom:228.960000px;}
.y71_c01071{bottom:261.360000px;}
.y6f_c01071{bottom:269.280000px;}
.y6d_c01071{bottom:270.000000px;}
.y6c_c01071{bottom:270.720000px;}
.y70_c01071{bottom:271.440000px;}
.y6e_c01071{bottom:272.160000px;}
.y6b_c01071{bottom:304.560000px;}
.y68_c01071{bottom:311.760000px;}
.y65_c01071{bottom:313.200000px;}
.y69_c01071{bottom:313.920000px;}
.y67_c01071{bottom:314.640000px;}
.y66_c01071{bottom:315.360000px;}
.y6a_c01071{bottom:316.080000px;}
.y62_c01071{bottom:354.960000px;}
.y61_c01071{bottom:356.400000px;}
.y64_c01071{bottom:357.120000px;}
.y63_c01071{bottom:357.840000px;}
.y5f_c01071{bottom:396.000000px;}
.y5d_c01071{bottom:397.440000px;}
.y5c_c01071{bottom:398.160000px;}
.y5b_c01071{bottom:398.880000px;}
.y5e_c01071{bottom:400.320000px;}
.y60_c01071{bottom:401.040000px;}
.y5a_c01071{bottom:441.360000px;}
.y59_c01071{bottom:442.800000px;}
.y58_c01071{bottom:443.520000px;}
.y4d_c01071{bottom:472.320000px;}
.y4c_c01071{bottom:473.040000px;}
.y4e_c01071{bottom:475.200000px;}
.y4f_c01071{bottom:475.920000px;}
.y49_c01071{bottom:515.520000px;}
.y47_c01071{bottom:516.240000px;}
.y4a_c01071{bottom:516.960000px;}
.y4b_c01071{bottom:517.680000px;}
.y48_c01071{bottom:518.400000px;}
.y44_c01071{bottom:558.000000px;}
.y41_c01071{bottom:558.720000px;}
.y46_c01071{bottom:559.440000px;}
.y43_c01071{bottom:560.160000px;}
.y42_c01071{bottom:560.880000px;}
.y45_c01071{bottom:561.600000px;}
.y3d_c01071{bottom:601.200000px;}
.y3c_c01071{bottom:602.640000px;}
.y3e_c01071{bottom:603.360000px;}
.y40_c01071{bottom:604.080000px;}
.y3f_c01071{bottom:604.800000px;}
.y38_c01071{bottom:633.600000px;}
.y37_c01071{bottom:634.320000px;}
.y3b_c01071{bottom:635.040000px;}
.y39_c01071{bottom:635.760000px;}
.y3a_c01071{bottom:636.480000px;}
.y57_c01071{bottom:637.200000px;}
.y36_c01071{bottom:668.160000px;}
.y33_c01071{bottom:676.800000px;}
.y55_c01071{bottom:677.520000px;}
.y34_c01071{bottom:678.240000px;}
.y56_c01071{bottom:678.960000px;}
.y35_c01071{bottom:679.680000px;}
.y32_c01071{bottom:712.080000px;}
.y30_c01071{bottom:719.280000px;}
.y2f_c01071{bottom:720.000000px;}
.y31_c01071{bottom:721.440000px;}
.y54_c01071{bottom:723.600000px;}
.y2d_c01071{bottom:755.280000px;}
.y29_c01071{bottom:761.760000px;}
.y2a_c01071{bottom:762.480000px;}
.y2b_c01071{bottom:763.200000px;}
.y2e_c01071{bottom:763.920000px;}
.y2c_c01071{bottom:764.640000px;}
.y52_c01071{bottom:766.800000px;}
.y53_c01071{bottom:768.240000px;}
.y27_c01071{bottom:798.480000px;}
.y25_c01071{bottom:804.960000px;}
.y24_c01071{bottom:805.680000px;}
.y26_c01071{bottom:806.400000px;}
.y28_c01071{bottom:807.120000px;}
.y51_c01071{bottom:808.560000px;}
.y50_c01071{bottom:810.000000px;}
.y23_c01071{bottom:851.040000px;}
.y1e_c01071{bottom:879.840000px;}
.y1c_c01071{bottom:880.560000px;}
.y1d_c01071{bottom:881.280000px;}
.y1f_c01071{bottom:882.720000px;}
.y21_c01071{bottom:883.440000px;}
.y20_c01071{bottom:884.160000px;}
.y22_c01071{bottom:885.600000px;}
.y16_c01071{bottom:923.040000px;}
.y15_c01071{bottom:923.760000px;}
.y18_c01071{bottom:924.480000px;}
.y19_c01071{bottom:925.200000px;}
.y1a_c01071{bottom:925.920000px;}
.y17_c01071{bottom:926.640000px;}
.y1b_c01071{bottom:927.360000px;}
.y10_c01071{bottom:965.520000px;}
.y11_c01071{bottom:966.240000px;}
.y14_c01071{bottom:969.120000px;}
.y12_c01071{bottom:969.840000px;}
.y13_c01071{bottom:971.280000px;}
.ya_c01071{bottom:1008.000000px;}
.yb_c01071{bottom:1008.720000px;}
.yc_c01071{bottom:1009.440000px;}
.yd_c01071{bottom:1012.320000px;}
.yf_c01071{bottom:1013.040000px;}
.ye_c01071{bottom:1014.480000px;}
.y4_c01071{bottom:1050.480000px;}
.y5_c01071{bottom:1051.920000px;}
.y7_c01071{bottom:1054.800000px;}
.y6_c01071{bottom:1055.520000px;}
.y8_c01071{bottom:1056.240000px;}
.y9_c01071{bottom:1057.680000px;}
.y3_c01071{bottom:1131.120000px;}
.y1_c01071{bottom:1131.840000px;}
.y2_c01071{bottom:1132.560000px;}
.h13_c01071{height:20.733750px;}
.h12_c01071{height:23.325469px;}
.h3_c01071{height:31.100625px;}
.h2_c01071{height:33.692344px;}
.h11_c01071{height:36.284062px;}
.h4_c01071{height:38.875781px;}
.h10_c01071{height:41.467500px;}
.hb_c01071{height:44.059219px;}
.h8_c01071{height:46.650937px;}
.h6_c01071{height:49.242656px;}
.hc_c01071{height:51.834375px;}
.h9_c01071{height:54.426094px;}
.h7_c01071{height:57.017812px;}
.ha_c01071{height:59.609531px;}
.h5_c01071{height:62.201250px;}
.hd_c01071{height:64.792969px;}
.h14_c01071{height:69.976406px;}
.he_c01071{height:85.526719px;}
.hf_c01071{height:88.118437px;}
.h1_c01071{height:1161.750000px;}
.h0_c01071{height:1162.080000px;}
.w1_c01071{width:802.500000px;}
.w0_c01071{width:802.800000px;}
.x0_c01071{left:0.000000px;}
.x4_c01071{left:95.760000px;}
.x24_c01071{left:97.200000px;}
.x15_c01071{left:139.680000px;}
.x20_c01071{left:162.000000px;}
.x5_c01071{left:170.640000px;}
.x2d_c01071{left:172.800000px;}
.x1e_c01071{left:203.040000px;}
.x21_c01071{left:213.120000px;}
.x2b_c01071{left:216.720000px;}
.x19_c01071{left:224.640000px;}
.x3c_c01071{left:226.800000px;}
.x6_c01071{left:256.320000px;}
.x23_c01071{left:257.760000px;}
.x34_c01071{left:259.200000px;}
.x2c_c01071{left:267.840000px;}
.x3d_c01071{left:280.800000px;}
.x30_c01071{left:306.720000px;}
.x10_c01071{left:311.040000px;}
.x35_c01071{left:312.480000px;}
.x7_c01071{left:321.840000px;}
.x37_c01071{left:323.280000px;}
.x22_c01071{left:354.240000px;}
.x31_c01071{left:355.680000px;}
.x11_c01071{left:365.040000px;}
.x32_c01071{left:366.480000px;}
.xc_c01071{left:375.120000px;}
.x16_c01071{left:376.560000px;}
.x12_c01071{left:419.760000px;}
.x1c_c01071{left:421.920000px;}
.x38_c01071{left:432.000000px;}
.x1d_c01071{left:452.160000px;}
.x13_c01071{left:462.240000px;}
.x36_c01071{left:463.680000px;}
.x25_c01071{left:473.040000px;}
.x1f_c01071{left:474.480000px;}
.x1a_c01071{left:495.360000px;}
.x17_c01071{left:506.160000px;}
.x39_c01071{left:507.600000px;}
.x14_c01071{left:516.240000px;}
.x2f_c01071{left:517.680000px;}
.x2e_c01071{left:522.720000px;}
.x1b_c01071{left:548.640000px;}
.x3a_c01071{left:550.080000px;}
.x8_c01071{left:572.400000px;}
.x3b_c01071{left:581.760000px;}
.x27_c01071{left:625.680000px;}
.x28_c01071{left:636.480000px;}
.x29_c01071{left:650.160000px;}
.x2a_c01071{left:658.080000px;}
.x9_c01071{left:659.520000px;}
.x33_c01071{left:660.960000px;}
.xd_c01071{left:669.600000px;}
.x26_c01071{left:690.480000px;}
.xa_c01071{left:692.640000px;}
.xe_c01071{left:703.440000px;}
.x1_c01071{left:719.280000px;}
.x18_c01071{left:725.040000px;}
.xb_c01071{left:735.120000px;}
.x2_c01071{left:737.280000px;}
.xf_c01071{left:746.640000px;}
.x3_c01071{left:756.000000px;}
@media print{
.v2_c01071{vertical-align:-5.120000pt;}
.v0_c01071{vertical-align:0.000000pt;}
.v1_c01071{vertical-align:5.120000pt;}
.ls0_c01071{letter-spacing:0.000000pt;}
.ws0_c01071{word-spacing:-4.104107pt;}
.ws1_c01071{word-spacing:-3.940480pt;}
.ws4_c01071{word-spacing:0.000000pt;}
.ws3_c01071{word-spacing:42.435200pt;}
.ws2_c01071{word-spacing:50.046669pt;}
.fs11_c01071{font-size:20.480000pt;}
.fs10_c01071{font-size:23.040000pt;}
.fs1_c01071{font-size:30.720000pt;}
.fs0_c01071{font-size:33.280000pt;}
.fsf_c01071{font-size:35.840000pt;}
.fs2_c01071{font-size:38.400000pt;}
.fse_c01071{font-size:40.960000pt;}
.fs9_c01071{font-size:43.520000pt;}
.fs6_c01071{font-size:46.080000pt;}
.fs4_c01071{font-size:48.640000pt;}
.fsa_c01071{font-size:51.200000pt;}
.fs7_c01071{font-size:53.760000pt;}
.fs5_c01071{font-size:56.320000pt;}
.fs8_c01071{font-size:58.880000pt;}
.fs3_c01071{font-size:61.440000pt;}
.fsb_c01071{font-size:64.000000pt;}
.fs12_c01071{font-size:69.120000pt;}
.fsc_c01071{font-size:84.480000pt;}
.fsd_c01071{font-size:87.040000pt;}
.y0_c01071{bottom:0.000000pt;}
.y8a_c01071{bottom:49.280000pt;}
.y8b_c01071{bottom:50.560000pt;}
.y89_c01071{bottom:52.480000pt;}
.y88_c01071{bottom:76.800000pt;}
.y85_c01071{bottom:77.440000pt;}
.y87_c01071{bottom:78.720000pt;}
.y86_c01071{bottom:79.360000pt;}
.y83_c01071{bottom:105.600000pt;}
.y84_c01071{bottom:106.240000pt;}
.y82_c01071{bottom:106.880000pt;}
.y81_c01071{bottom:107.520000pt;}
.y7e_c01071{bottom:145.280000pt;}
.y80_c01071{bottom:145.920000pt;}
.y7f_c01071{bottom:146.560000pt;}
.y7c_c01071{bottom:172.160000pt;}
.y7b_c01071{bottom:172.800000pt;}
.y78_c01071{bottom:173.440000pt;}
.y7a_c01071{bottom:174.080000pt;}
.y79_c01071{bottom:174.720000pt;}
.y7d_c01071{bottom:175.360000pt;}
.y74_c01071{bottom:200.320000pt;}
.y77_c01071{bottom:200.960000pt;}
.y76_c01071{bottom:201.600000pt;}
.y72_c01071{bottom:202.240000pt;}
.y75_c01071{bottom:202.880000pt;}
.y73_c01071{bottom:203.520000pt;}
.y71_c01071{bottom:232.320000pt;}
.y6f_c01071{bottom:239.360000pt;}
.y6d_c01071{bottom:240.000000pt;}
.y6c_c01071{bottom:240.640000pt;}
.y70_c01071{bottom:241.280000pt;}
.y6e_c01071{bottom:241.920000pt;}
.y6b_c01071{bottom:270.720000pt;}
.y68_c01071{bottom:277.120000pt;}
.y65_c01071{bottom:278.400000pt;}
.y69_c01071{bottom:279.040000pt;}
.y67_c01071{bottom:279.680000pt;}
.y66_c01071{bottom:280.320000pt;}
.y6a_c01071{bottom:280.960000pt;}
.y62_c01071{bottom:315.520000pt;}
.y61_c01071{bottom:316.800000pt;}
.y64_c01071{bottom:317.440000pt;}
.y63_c01071{bottom:318.080000pt;}
.y5f_c01071{bottom:352.000000pt;}
.y5d_c01071{bottom:353.280000pt;}
.y5c_c01071{bottom:353.920000pt;}
.y5b_c01071{bottom:354.560000pt;}
.y5e_c01071{bottom:355.840000pt;}
.y60_c01071{bottom:356.480000pt;}
.y5a_c01071{bottom:392.320000pt;}
.y59_c01071{bottom:393.600000pt;}
.y58_c01071{bottom:394.240000pt;}
.y4d_c01071{bottom:419.840000pt;}
.y4c_c01071{bottom:420.480000pt;}
.y4e_c01071{bottom:422.400000pt;}
.y4f_c01071{bottom:423.040000pt;}
.y49_c01071{bottom:458.240000pt;}
.y47_c01071{bottom:458.880000pt;}
.y4a_c01071{bottom:459.520000pt;}
.y4b_c01071{bottom:460.160000pt;}
.y48_c01071{bottom:460.800000pt;}
.y44_c01071{bottom:496.000000pt;}
.y41_c01071{bottom:496.640000pt;}
.y46_c01071{bottom:497.280000pt;}
.y43_c01071{bottom:497.920000pt;}
.y42_c01071{bottom:498.560000pt;}
.y45_c01071{bottom:499.200000pt;}
.y3d_c01071{bottom:534.400000pt;}
.y3c_c01071{bottom:535.680000pt;}
.y3e_c01071{bottom:536.320000pt;}
.y40_c01071{bottom:536.960000pt;}
.y3f_c01071{bottom:537.600000pt;}
.y38_c01071{bottom:563.200000pt;}
.y37_c01071{bottom:563.840000pt;}
.y3b_c01071{bottom:564.480000pt;}
.y39_c01071{bottom:565.120000pt;}
.y3a_c01071{bottom:565.760000pt;}
.y57_c01071{bottom:566.400000pt;}
.y36_c01071{bottom:593.920000pt;}
.y33_c01071{bottom:601.600000pt;}
.y55_c01071{bottom:602.240000pt;}
.y34_c01071{bottom:602.880000pt;}
.y56_c01071{bottom:603.520000pt;}
.y35_c01071{bottom:604.160000pt;}
.y32_c01071{bottom:632.960000pt;}
.y30_c01071{bottom:639.360000pt;}
.y2f_c01071{bottom:640.000000pt;}
.y31_c01071{bottom:641.280000pt;}
.y54_c01071{bottom:643.200000pt;}
.y2d_c01071{bottom:671.360000pt;}
.y29_c01071{bottom:677.120000pt;}
.y2a_c01071{bottom:677.760000pt;}
.y2b_c01071{bottom:678.400000pt;}
.y2e_c01071{bottom:679.040000pt;}
.y2c_c01071{bottom:679.680000pt;}
.y52_c01071{bottom:681.600000pt;}
.y53_c01071{bottom:682.880000pt;}
.y27_c01071{bottom:709.760000pt;}
.y25_c01071{bottom:715.520000pt;}
.y24_c01071{bottom:716.160000pt;}
.y26_c01071{bottom:716.800000pt;}
.y28_c01071{bottom:717.440000pt;}
.y51_c01071{bottom:718.720000pt;}
.y50_c01071{bottom:720.000000pt;}
.y23_c01071{bottom:756.480000pt;}
.y1e_c01071{bottom:782.080000pt;}
.y1c_c01071{bottom:782.720000pt;}
.y1d_c01071{bottom:783.360000pt;}
.y1f_c01071{bottom:784.640000pt;}
.y21_c01071{bottom:785.280000pt;}
.y20_c01071{bottom:785.920000pt;}
.y22_c01071{bottom:787.200000pt;}
.y16_c01071{bottom:820.480000pt;}
.y15_c01071{bottom:821.120000pt;}
.y18_c01071{bottom:821.760000pt;}
.y19_c01071{bottom:822.400000pt;}
.y1a_c01071{bottom:823.040000pt;}
.y17_c01071{bottom:823.680000pt;}
.y1b_c01071{bottom:824.320000pt;}
.y10_c01071{bottom:858.240000pt;}
.y11_c01071{bottom:858.880000pt;}
.y14_c01071{bottom:861.440000pt;}
.y12_c01071{bottom:862.080000pt;}
.y13_c01071{bottom:863.360000pt;}
.ya_c01071{bottom:896.000000pt;}
.yb_c01071{bottom:896.640000pt;}
.yc_c01071{bottom:897.280000pt;}
.yd_c01071{bottom:899.840000pt;}
.yf_c01071{bottom:900.480000pt;}
.ye_c01071{bottom:901.760000pt;}
.y4_c01071{bottom:933.760000pt;}
.y5_c01071{bottom:935.040000pt;}
.y7_c01071{bottom:937.600000pt;}
.y6_c01071{bottom:938.240000pt;}
.y8_c01071{bottom:938.880000pt;}
.y9_c01071{bottom:940.160000pt;}
.y3_c01071{bottom:1005.440000pt;}
.y1_c01071{bottom:1006.080000pt;}
.y2_c01071{bottom:1006.720000pt;}
.h13_c01071{height:18.430000pt;}
.h12_c01071{height:20.733750pt;}
.h3_c01071{height:27.645000pt;}
.h2_c01071{height:29.948750pt;}
.h11_c01071{height:32.252500pt;}
.h4_c01071{height:34.556250pt;}
.h10_c01071{height:36.860000pt;}
.hb_c01071{height:39.163750pt;}
.h8_c01071{height:41.467500pt;}
.h6_c01071{height:43.771250pt;}
.hc_c01071{height:46.075000pt;}
.h9_c01071{height:48.378750pt;}
.h7_c01071{height:50.682500pt;}
.ha_c01071{height:52.986250pt;}
.h5_c01071{height:55.290000pt;}
.hd_c01071{height:57.593750pt;}
.h14_c01071{height:62.201250pt;}
.he_c01071{height:76.023750pt;}
.hf_c01071{height:78.327500pt;}
.h1_c01071{height:1032.666667pt;}
.h0_c01071{height:1032.960000pt;}
.w1_c01071{width:713.333333pt;}
.w0_c01071{width:713.600000pt;}
.x0_c01071{left:0.000000pt;}
.x4_c01071{left:85.120000pt;}
.x24_c01071{left:86.400000pt;}
.x15_c01071{left:124.160000pt;}
.x20_c01071{left:144.000000pt;}
.x5_c01071{left:151.680000pt;}
.x2d_c01071{left:153.600000pt;}
.x1e_c01071{left:180.480000pt;}
.x21_c01071{left:189.440000pt;}
.x2b_c01071{left:192.640000pt;}
.x19_c01071{left:199.680000pt;}
.x3c_c01071{left:201.600000pt;}
.x6_c01071{left:227.840000pt;}
.x23_c01071{left:229.120000pt;}
.x34_c01071{left:230.400000pt;}
.x2c_c01071{left:238.080000pt;}
.x3d_c01071{left:249.600000pt;}
.x30_c01071{left:272.640000pt;}
.x10_c01071{left:276.480000pt;}
.x35_c01071{left:277.760000pt;}
.x7_c01071{left:286.080000pt;}
.x37_c01071{left:287.360000pt;}
.x22_c01071{left:314.880000pt;}
.x31_c01071{left:316.160000pt;}
.x11_c01071{left:324.480000pt;}
.x32_c01071{left:325.760000pt;}
.xc_c01071{left:333.440000pt;}
.x16_c01071{left:334.720000pt;}
.x12_c01071{left:373.120000pt;}
.x1c_c01071{left:375.040000pt;}
.x38_c01071{left:384.000000pt;}
.x1d_c01071{left:401.920000pt;}
.x13_c01071{left:410.880000pt;}
.x36_c01071{left:412.160000pt;}
.x25_c01071{left:420.480000pt;}
.x1f_c01071{left:421.760000pt;}
.x1a_c01071{left:440.320000pt;}
.x17_c01071{left:449.920000pt;}
.x39_c01071{left:451.200000pt;}
.x14_c01071{left:458.880000pt;}
.x2f_c01071{left:460.160000pt;}
.x2e_c01071{left:464.640000pt;}
.x1b_c01071{left:487.680000pt;}
.x3a_c01071{left:488.960000pt;}
.x8_c01071{left:508.800000pt;}
.x3b_c01071{left:517.120000pt;}
.x27_c01071{left:556.160000pt;}
.x28_c01071{left:565.760000pt;}
.x29_c01071{left:577.920000pt;}
.x2a_c01071{left:584.960000pt;}
.x9_c01071{left:586.240000pt;}
.x33_c01071{left:587.520000pt;}
.xd_c01071{left:595.200000pt;}
.x26_c01071{left:613.760000pt;}
.xa_c01071{left:615.680000pt;}
.xe_c01071{left:625.280000pt;}
.x1_c01071{left:639.360000pt;}
.x18_c01071{left:644.480000pt;}
.xb_c01071{left:653.440000pt;}
.x2_c01071{left:655.360000pt;}
.xf_c01071{left:663.680000pt;}
.x3_c01071{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_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_2ac8e87b942d1e9a844d74cc.woff2')format("woff");}.ff1_c01072{font-family:ff1_c01072;line-height:1.109863;font-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_c01072{transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);}
.m11_c01072{transform:matrix(0.221725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221725,0.000000,0.000000,0.250000,0,0);}
.m52_c01072{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m4d_c01072{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);}
.mf_c01072{transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);}
.m54_c01072{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m3a_c01072{transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);}
.m9_c01072{transform:matrix(0.243275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243275,0.000000,0.000000,0.250000,0,0);}
.m2c_c01072{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m15_c01072{transform:matrix(0.244350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244350,0.000000,0.000000,0.250000,0,0);}
.m51_c01072{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m36_c01072{transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);}
.m3c_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);}
.m23_c01072{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);}
.m3f_c01072{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);}
.m29_c01072{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.md_c01072{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);}
.m21_c01072{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);}
.m4f_c01072{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m20_c01072{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_c01072{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);}
.m3d_c01072{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);}
.m39_c01072{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m53_c01072{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m13_c01072{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);}
.m32_c01072{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m5_c01072{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);}
.m40_c01072{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m6_c01072{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mb_c01072{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m22_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);}
.m1d_c01072{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m14_c01072{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01072{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01072{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m10_c01072{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m0_c01072{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m30_c01072{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m44_c01072{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01072{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01072{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mc_c01072{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m18_c01072{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);}
.m24_c01072{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);}
.m25_c01072{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.me_c01072{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m5d_c01072{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m12_c01072{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);}
.m57_c01072{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m48_c01072{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m5b_c01072{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);}
.m33_c01072{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);}
.m34_c01072{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01072{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m2_c01072{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);}
.m37_c01072{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);}
.m38_c01072{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);}
.m56_c01072{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m1_c01072{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);}
.m17_c01072{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);}
.m1b_c01072{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);}
.m4b_c01072{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m42_c01072{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m58_c01072{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);}
.m45_c01072{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m47_c01072{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);}
.m5f_c01072{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m4e_c01072{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m4_c01072{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m5c_c01072{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m5a_c01072{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m28_c01072{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01072{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m50_c01072{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);}
.m16_c01072{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.ma_c01072{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);}
.m31_c01072{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01072{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m46_c01072{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m3_c01072{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m8_c01072{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);}
.m43_c01072{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m5e_c01072{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01072{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);}
.m1a_c01072{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m7_c01072{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);}
.m19_c01072{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m35_c01072{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);}
.m41_c01072{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01072{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01072{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m26_c01072{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01072{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.m55_c01072{transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);}
.m59_c01072{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);}
.m49_c01072{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.v3_c01072{vertical-align:-8.640000px;}
.v2_c01072{vertical-align:-5.760000px;}
.v0_c01072{vertical-align:0.000000px;}
.v4_c01072{vertical-align:2.880000px;}
.v1_c01072{vertical-align:5.760000px;}
.ls2_c01072{letter-spacing:0.000000px;}
.ls0_c01072{letter-spacing:83.257680px;}
.ls1_c01072{letter-spacing:87.974400px;}
.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;}
}
.ws2_c01072{word-spacing:0.000000px;}
.ws0_c01072{word-spacing:0.066960px;}
.ws1_c01072{word-spacing:10.790400px;}
.fc0_c01072{color:transparent;}
.fs10_c01072{font-size:14.400000px;}
.fs12_c01072{font-size:20.160000px;}
.fs11_c01072{font-size:23.040000px;}
.fsf_c01072{font-size:34.560000px;}
.fse_c01072{font-size:37.440000px;}
.fsd_c01072{font-size:40.320000px;}
.fsc_c01072{font-size:46.080000px;}
.fs6_c01072{font-size:48.960000px;}
.fs4_c01072{font-size:51.840000px;}
.fsb_c01072{font-size:54.720000px;}
.fs1_c01072{font-size:57.600000px;}
.fs5_c01072{font-size:60.480000px;}
.fs3_c01072{font-size:63.360000px;}
.fs2_c01072{font-size:66.240000px;}
.fs0_c01072{font-size:69.120000px;}
.fs8_c01072{font-size:72.000000px;}
.fs7_c01072{font-size:74.880000px;}
.fs9_c01072{font-size:77.760000px;}
.fsa_c01072{font-size:80.640000px;}
.y0_c01072{bottom:0.000000px;}
.y85_c01072{bottom:34.560000px;}
.y90_c01072{bottom:50.400000px;}
.y8b_c01072{bottom:52.560000px;}
.y84_c01072{bottom:55.440000px;}
.y82_c01072{bottom:58.320000px;}
.y83_c01072{bottom:59.040000px;}
.y8f_c01072{bottom:72.000000px;}
.y8a_c01072{bottom:73.440000px;}
.y75_c01072{bottom:75.600000px;}
.y89_c01072{bottom:76.320000px;}
.y74_c01072{bottom:79.200000px;}
.y93_c01072{bottom:82.080000px;}
.y92_c01072{bottom:84.240000px;}
.y81_c01072{bottom:87.840000px;}
.y80_c01072{bottom:90.000000px;}
.y88_c01072{bottom:95.040000px;}
.y8e_c01072{bottom:95.760000px;}
.y8d_c01072{bottom:96.480000px;}
.y72_c01072{bottom:97.920000px;}
.y73_c01072{bottom:99.360000px;}
.y6f_c01072{bottom:100.080000px;}
.y70_c01072{bottom:101.520000px;}
.y71_c01072{bottom:104.400000px;}
.y91_c01072{bottom:116.640000px;}
.y87_c01072{bottom:118.080000px;}
.y8c_c01072{bottom:118.800000px;}
.y86_c01072{bottom:119.520000px;}
.y6d_c01072{bottom:120.240000px;}
.y6e_c01072{bottom:120.960000px;}
.y7f_c01072{bottom:149.760000px;}
.y6a_c01072{bottom:151.200000px;}
.y6b_c01072{bottom:153.360000px;}
.y6c_c01072{bottom:154.080000px;}
.y7e_c01072{bottom:156.240000px;}
.y65_c01072{bottom:163.440000px;}
.y69_c01072{bottom:164.160000px;}
.y68_c01072{bottom:165.600000px;}
.y64_c01072{bottom:166.320000px;}
.y67_c01072{bottom:174.240000px;}
.y66_c01072{bottom:175.680000px;}
.y62_c01072{bottom:214.560000px;}
.y63_c01072{bottom:216.720000px;}
.y61_c01072{bottom:217.440000px;}
.y5f_c01072{bottom:245.520000px;}
.y7d_c01072{bottom:246.240000px;}
.y60_c01072{bottom:246.960000px;}
.y5e_c01072{bottom:249.120000px;}
.y5d_c01072{bottom:287.280000px;}
.y59_c01072{bottom:288.720000px;}
.y5b_c01072{bottom:289.440000px;}
.y5a_c01072{bottom:290.160000px;}
.y58_c01072{bottom:291.600000px;}
.y5c_c01072{bottom:292.320000px;}
.y53_c01072{bottom:331.200000px;}
.y54_c01072{bottom:331.920000px;}
.y57_c01072{bottom:332.640000px;}
.y52_c01072{bottom:333.360000px;}
.y7c_c01072{bottom:334.800000px;}
.y7b_c01072{bottom:335.520000px;}
.y50_c01072{bottom:374.400000px;}
.y51_c01072{bottom:375.120000px;}
.y4f_c01072{bottom:376.560000px;}
.y7a_c01072{bottom:377.280000px;}
.y4c_c01072{bottom:416.880000px;}
.y4e_c01072{bottom:418.320000px;}
.y56_c01072{bottom:419.040000px;}
.y4b_c01072{bottom:419.760000px;}
.y4d_c01072{bottom:421.200000px;}
.y4a_c01072{bottom:460.080000px;}
.y48_c01072{bottom:460.800000px;}
.y79_c01072{bottom:461.520000px;}
.y47_c01072{bottom:462.240000px;}
.y55_c01072{bottom:462.960000px;}
.y78_c01072{bottom:463.680000px;}
.y49_c01072{bottom:464.400000px;}
.y43_c01072{bottom:503.280000px;}
.y45_c01072{bottom:504.000000px;}
.y44_c01072{bottom:504.720000px;}
.y46_c01072{bottom:505.440000px;}
.y42_c01072{bottom:506.160000px;}
.y40_c01072{bottom:546.480000px;}
.y77_c01072{bottom:547.920000px;}
.y3f_c01072{bottom:548.640000px;}
.y41_c01072{bottom:550.080000px;}
.y3b_c01072{bottom:589.680000px;}
.y3e_c01072{bottom:590.400000px;}
.y76_c01072{bottom:591.120000px;}
.y3a_c01072{bottom:591.840000px;}
.y3d_c01072{bottom:592.560000px;}
.y3c_c01072{bottom:593.280000px;}
.y39_c01072{bottom:632.880000px;}
.y38_c01072{bottom:633.600000px;}
.y37_c01072{bottom:636.480000px;}
.y34_c01072{bottom:664.560000px;}
.y35_c01072{bottom:666.000000px;}
.y33_c01072{bottom:666.720000px;}
.y36_c01072{bottom:668.880000px;}
.y21_c01072{bottom:707.760000px;}
.y20_c01072{bottom:709.200000px;}
.y1e_c01072{bottom:710.640000px;}
.y1f_c01072{bottom:711.360000px;}
.y1c_c01072{bottom:739.440000px;}
.y1b_c01072{bottom:740.880000px;}
.y32_c01072{bottom:742.320000px;}
.y1d_c01072{bottom:743.040000px;}
.y18_c01072{bottom:781.920000px;}
.y1a_c01072{bottom:782.640000px;}
.y17_c01072{bottom:783.360000px;}
.y2e_c01072{bottom:784.080000px;}
.y30_c01072{bottom:784.800000px;}
.y19_c01072{bottom:785.520000px;}
.y31_c01072{bottom:786.960000px;}
.y2f_c01072{bottom:787.680000px;}
.y14_c01072{bottom:824.400000px;}
.y16_c01072{bottom:825.840000px;}
.y13_c01072{bottom:826.560000px;}
.y15_c01072{bottom:827.280000px;}
.y2c_c01072{bottom:828.000000px;}
.y2d_c01072{bottom:830.160000px;}
.yf_c01072{bottom:867.600000px;}
.y12_c01072{bottom:868.320000px;}
.ye_c01072{bottom:869.040000px;}
.y10_c01072{bottom:870.480000px;}
.y11_c01072{bottom:871.200000px;}
.y2a_c01072{bottom:871.920000px;}
.y2b_c01072{bottom:872.640000px;}
.yd_c01072{bottom:910.800000px;}
.yb_c01072{bottom:911.520000px;}
.y26_c01072{bottom:912.960000px;}
.y27_c01072{bottom:913.680000px;}
.yc_c01072{bottom:914.400000px;}
.y28_c01072{bottom:916.560000px;}
.y29_c01072{bottom:917.280000px;}
.ya_c01072{bottom:953.280000px;}
.y8_c01072{bottom:954.720000px;}
.y24_c01072{bottom:956.880000px;}
.y9_c01072{bottom:957.600000px;}
.y25_c01072{bottom:959.040000px;}
.y6_c01072{bottom:997.920000px;}
.y7_c01072{bottom:1000.800000px;}
.y1_c01072{bottom:1029.600000px;}
.y2_c01072{bottom:1030.320000px;}
.y3_c01072{bottom:1031.760000px;}
.y5_c01072{bottom:1032.480000px;}
.y4_c01072{bottom:1033.200000px;}
.y23_c01072{bottom:1035.360000px;}
.y22_c01072{bottom:1104.480000px;}
.h12_c01072{height:12.958594px;}
.h14_c01072{height:18.142031px;}
.h13_c01072{height:20.733750px;}
.h11_c01072{height:31.100625px;}
.h10_c01072{height:33.692344px;}
.hf_c01072{height:36.284062px;}
.he_c01072{height:41.467500px;}
.h7_c01072{height:44.059219px;}
.h5_c01072{height:46.650937px;}
.hd_c01072{height:49.242656px;}
.ha_c01072{height:51.834375px;}
.h6_c01072{height:54.426094px;}
.h4_c01072{height:57.017812px;}
.h3_c01072{height:59.609531px;}
.h2_c01072{height:62.201250px;}
.h9_c01072{height:64.792969px;}
.h8_c01072{height:67.384687px;}
.hb_c01072{height:69.976406px;}
.hc_c01072{height:72.568125px;}
.h0_c01072{height:1159.920000px;}
.h1_c01072{height:1160.250000px;}
.w1_c01072{width:806.250000px;}
.w0_c01072{width:806.400000px;}
.x0_c01072{left:0.000000px;}
.x2c_c01072{left:93.600000px;}
.x1_c01072{left:95.040000px;}
.x2f_c01072{left:105.840000px;}
.x30_c01072{left:127.440000px;}
.x2d_c01072{left:138.960000px;}
.x31_c01072{left:159.840000px;}
.x1c_c01072{left:168.480000px;}
.x7_c01072{left:169.920000px;}
.x37_c01072{left:179.280000px;}
.x1d_c01072{left:201.600000px;}
.x10_c01072{left:213.120000px;}
.x2a_c01072{left:223.200000px;}
.x9_c01072{left:224.640000px;}
.x38_c01072{left:244.080000px;}
.x2_c01072{left:255.600000px;}
.x32_c01072{left:257.040000px;}
.x8_c01072{left:266.400000px;}
.xa_c01072{left:278.640000px;}
.x35_c01072{left:289.440000px;}
.x1e_c01072{left:299.520000px;}
.x22_c01072{left:308.880000px;}
.x29_c01072{left:310.320000px;}
.x24_c01072{left:318.960000px;}
.x3_c01072{left:320.400000px;}
.x33_c01072{left:321.840000px;}
.x36_c01072{left:329.760000px;}
.x1f_c01072{left:342.000000px;}
.xb_c01072{left:352.080000px;}
.xe_c01072{left:353.520000px;}
.x23_c01072{left:362.880000px;}
.x2e_c01072{left:375.120000px;}
.x34_c01072{left:385.920000px;}
.xc_c01072{left:396.000000px;}
.xf_c01072{left:406.080000px;}
.x42_c01072{left:419.040000px;}
.x20_c01072{left:428.400000px;}
.x2b_c01072{left:439.200000px;}
.x3e_c01072{left:440.640000px;}
.x25_c01072{left:443.520000px;}
.xd_c01072{left:450.000000px;}
.x4_c01072{left:462.240000px;}
.x21_c01072{left:470.880000px;}
.x3d_c01072{left:494.640000px;}
.x26_c01072{left:498.240000px;}
.x19_c01072{left:505.440000px;}
.x43_c01072{left:511.920000px;}
.x5_c01072{left:515.520000px;}
.x3f_c01072{left:524.880000px;}
.x44_c01072{left:533.520000px;}
.x27_c01072{left:535.680000px;}
.x45_c01072{left:542.880000px;}
.x40_c01072{left:548.640000px;}
.x6_c01072{left:570.240000px;}
.x46_c01072{left:576.000000px;}
.x28_c01072{left:581.040000px;}
.x41_c01072{left:589.680000px;}
.x15_c01072{left:602.640000px;}
.x47_c01072{left:620.640000px;}
.x3c_c01072{left:622.800000px;}
.x17_c01072{left:624.240000px;}
.x4a_c01072{left:630.720000px;}
.x4b_c01072{left:651.600000px;}
.x1a_c01072{left:655.920000px;}
.x12_c01072{left:658.080000px;}
.x48_c01072{left:663.120000px;}
.x49_c01072{left:686.160000px;}
.x3b_c01072{left:689.040000px;}
.x13_c01072{left:690.480000px;}
.x39_c01072{left:699.840000px;}
.x16_c01072{left:701.280000px;}
.x11_c01072{left:713.520000px;}
.x4c_c01072{left:727.920000px;}
.x4d_c01072{left:730.080000px;}
.x1b_c01072{left:732.960000px;}
.x14_c01072{left:734.400000px;}
.x3a_c01072{left:752.400000px;}
.x18_c01072{left:753.840000px;}
.x4e_c01072{left:761.040000px;}
@media print{
.v3_c01072{vertical-align:-7.680000pt;}
.v2_c01072{vertical-align:-5.120000pt;}
.v0_c01072{vertical-align:0.000000pt;}
.v4_c01072{vertical-align:2.560000pt;}
.v1_c01072{vertical-align:5.120000pt;}
.ls2_c01072{letter-spacing:0.000000pt;}
.ls0_c01072{letter-spacing:74.006827pt;}
.ls1_c01072{letter-spacing:78.199467pt;}
.ws2_c01072{word-spacing:0.000000pt;}
.ws0_c01072{word-spacing:0.059520pt;}
.ws1_c01072{word-spacing:9.591467pt;}
.fs10_c01072{font-size:12.800000pt;}
.fs12_c01072{font-size:17.920000pt;}
.fs11_c01072{font-size:20.480000pt;}
.fsf_c01072{font-size:30.720000pt;}
.fse_c01072{font-size:33.280000pt;}
.fsd_c01072{font-size:35.840000pt;}
.fsc_c01072{font-size:40.960000pt;}
.fs6_c01072{font-size:43.520000pt;}
.fs4_c01072{font-size:46.080000pt;}
.fsb_c01072{font-size:48.640000pt;}
.fs1_c01072{font-size:51.200000pt;}
.fs5_c01072{font-size:53.760000pt;}
.fs3_c01072{font-size:56.320000pt;}
.fs2_c01072{font-size:58.880000pt;}
.fs0_c01072{font-size:61.440000pt;}
.fs8_c01072{font-size:64.000000pt;}
.fs7_c01072{font-size:66.560000pt;}
.fs9_c01072{font-size:69.120000pt;}
.fsa_c01072{font-size:71.680000pt;}
.y0_c01072{bottom:0.000000pt;}
.y85_c01072{bottom:30.720000pt;}
.y90_c01072{bottom:44.800000pt;}
.y8b_c01072{bottom:46.720000pt;}
.y84_c01072{bottom:49.280000pt;}
.y82_c01072{bottom:51.840000pt;}
.y83_c01072{bottom:52.480000pt;}
.y8f_c01072{bottom:64.000000pt;}
.y8a_c01072{bottom:65.280000pt;}
.y75_c01072{bottom:67.200000pt;}
.y89_c01072{bottom:67.840000pt;}
.y74_c01072{bottom:70.400000pt;}
.y93_c01072{bottom:72.960000pt;}
.y92_c01072{bottom:74.880000pt;}
.y81_c01072{bottom:78.080000pt;}
.y80_c01072{bottom:80.000000pt;}
.y88_c01072{bottom:84.480000pt;}
.y8e_c01072{bottom:85.120000pt;}
.y8d_c01072{bottom:85.760000pt;}
.y72_c01072{bottom:87.040000pt;}
.y73_c01072{bottom:88.320000pt;}
.y6f_c01072{bottom:88.960000pt;}
.y70_c01072{bottom:90.240000pt;}
.y71_c01072{bottom:92.800000pt;}
.y91_c01072{bottom:103.680000pt;}
.y87_c01072{bottom:104.960000pt;}
.y8c_c01072{bottom:105.600000pt;}
.y86_c01072{bottom:106.240000pt;}
.y6d_c01072{bottom:106.880000pt;}
.y6e_c01072{bottom:107.520000pt;}
.y7f_c01072{bottom:133.120000pt;}
.y6a_c01072{bottom:134.400000pt;}
.y6b_c01072{bottom:136.320000pt;}
.y6c_c01072{bottom:136.960000pt;}
.y7e_c01072{bottom:138.880000pt;}
.y65_c01072{bottom:145.280000pt;}
.y69_c01072{bottom:145.920000pt;}
.y68_c01072{bottom:147.200000pt;}
.y64_c01072{bottom:147.840000pt;}
.y67_c01072{bottom:154.880000pt;}
.y66_c01072{bottom:156.160000pt;}
.y62_c01072{bottom:190.720000pt;}
.y63_c01072{bottom:192.640000pt;}
.y61_c01072{bottom:193.280000pt;}
.y5f_c01072{bottom:218.240000pt;}
.y7d_c01072{bottom:218.880000pt;}
.y60_c01072{bottom:219.520000pt;}
.y5e_c01072{bottom:221.440000pt;}
.y5d_c01072{bottom:255.360000pt;}
.y59_c01072{bottom:256.640000pt;}
.y5b_c01072{bottom:257.280000pt;}
.y5a_c01072{bottom:257.920000pt;}
.y58_c01072{bottom:259.200000pt;}
.y5c_c01072{bottom:259.840000pt;}
.y53_c01072{bottom:294.400000pt;}
.y54_c01072{bottom:295.040000pt;}
.y57_c01072{bottom:295.680000pt;}
.y52_c01072{bottom:296.320000pt;}
.y7c_c01072{bottom:297.600000pt;}
.y7b_c01072{bottom:298.240000pt;}
.y50_c01072{bottom:332.800000pt;}
.y51_c01072{bottom:333.440000pt;}
.y4f_c01072{bottom:334.720000pt;}
.y7a_c01072{bottom:335.360000pt;}
.y4c_c01072{bottom:370.560000pt;}
.y4e_c01072{bottom:371.840000pt;}
.y56_c01072{bottom:372.480000pt;}
.y4b_c01072{bottom:373.120000pt;}
.y4d_c01072{bottom:374.400000pt;}
.y4a_c01072{bottom:408.960000pt;}
.y48_c01072{bottom:409.600000pt;}
.y79_c01072{bottom:410.240000pt;}
.y47_c01072{bottom:410.880000pt;}
.y55_c01072{bottom:411.520000pt;}
.y78_c01072{bottom:412.160000pt;}
.y49_c01072{bottom:412.800000pt;}
.y43_c01072{bottom:447.360000pt;}
.y45_c01072{bottom:448.000000pt;}
.y44_c01072{bottom:448.640000pt;}
.y46_c01072{bottom:449.280000pt;}
.y42_c01072{bottom:449.920000pt;}
.y40_c01072{bottom:485.760000pt;}
.y77_c01072{bottom:487.040000pt;}
.y3f_c01072{bottom:487.680000pt;}
.y41_c01072{bottom:488.960000pt;}
.y3b_c01072{bottom:524.160000pt;}
.y3e_c01072{bottom:524.800000pt;}
.y76_c01072{bottom:525.440000pt;}
.y3a_c01072{bottom:526.080000pt;}
.y3d_c01072{bottom:526.720000pt;}
.y3c_c01072{bottom:527.360000pt;}
.y39_c01072{bottom:562.560000pt;}
.y38_c01072{bottom:563.200000pt;}
.y37_c01072{bottom:565.760000pt;}
.y34_c01072{bottom:590.720000pt;}
.y35_c01072{bottom:592.000000pt;}
.y33_c01072{bottom:592.640000pt;}
.y36_c01072{bottom:594.560000pt;}
.y21_c01072{bottom:629.120000pt;}
.y20_c01072{bottom:630.400000pt;}
.y1e_c01072{bottom:631.680000pt;}
.y1f_c01072{bottom:632.320000pt;}
.y1c_c01072{bottom:657.280000pt;}
.y1b_c01072{bottom:658.560000pt;}
.y32_c01072{bottom:659.840000pt;}
.y1d_c01072{bottom:660.480000pt;}
.y18_c01072{bottom:695.040000pt;}
.y1a_c01072{bottom:695.680000pt;}
.y17_c01072{bottom:696.320000pt;}
.y2e_c01072{bottom:696.960000pt;}
.y30_c01072{bottom:697.600000pt;}
.y19_c01072{bottom:698.240000pt;}
.y31_c01072{bottom:699.520000pt;}
.y2f_c01072{bottom:700.160000pt;}
.y14_c01072{bottom:732.800000pt;}
.y16_c01072{bottom:734.080000pt;}
.y13_c01072{bottom:734.720000pt;}
.y15_c01072{bottom:735.360000pt;}
.y2c_c01072{bottom:736.000000pt;}
.y2d_c01072{bottom:737.920000pt;}
.yf_c01072{bottom:771.200000pt;}
.y12_c01072{bottom:771.840000pt;}
.ye_c01072{bottom:772.480000pt;}
.y10_c01072{bottom:773.760000pt;}
.y11_c01072{bottom:774.400000pt;}
.y2a_c01072{bottom:775.040000pt;}
.y2b_c01072{bottom:775.680000pt;}
.yd_c01072{bottom:809.600000pt;}
.yb_c01072{bottom:810.240000pt;}
.y26_c01072{bottom:811.520000pt;}
.y27_c01072{bottom:812.160000pt;}
.yc_c01072{bottom:812.800000pt;}
.y28_c01072{bottom:814.720000pt;}
.y29_c01072{bottom:815.360000pt;}
.ya_c01072{bottom:847.360000pt;}
.y8_c01072{bottom:848.640000pt;}
.y24_c01072{bottom:850.560000pt;}
.y9_c01072{bottom:851.200000pt;}
.y25_c01072{bottom:852.480000pt;}
.y6_c01072{bottom:887.040000pt;}
.y7_c01072{bottom:889.600000pt;}
.y1_c01072{bottom:915.200000pt;}
.y2_c01072{bottom:915.840000pt;}
.y3_c01072{bottom:917.120000pt;}
.y5_c01072{bottom:917.760000pt;}
.y4_c01072{bottom:918.400000pt;}
.y23_c01072{bottom:920.320000pt;}
.y22_c01072{bottom:981.760000pt;}
.h12_c01072{height:11.518750pt;}
.h14_c01072{height:16.126250pt;}
.h13_c01072{height:18.430000pt;}
.h11_c01072{height:27.645000pt;}
.h10_c01072{height:29.948750pt;}
.hf_c01072{height:32.252500pt;}
.he_c01072{height:36.860000pt;}
.h7_c01072{height:39.163750pt;}
.h5_c01072{height:41.467500pt;}
.hd_c01072{height:43.771250pt;}
.ha_c01072{height:46.075000pt;}
.h6_c01072{height:48.378750pt;}
.h4_c01072{height:50.682500pt;}
.h3_c01072{height:52.986250pt;}
.h2_c01072{height:55.290000pt;}
.h9_c01072{height:57.593750pt;}
.h8_c01072{height:59.897500pt;}
.hb_c01072{height:62.201250pt;}
.hc_c01072{height:64.505000pt;}
.h0_c01072{height:1031.040000pt;}
.h1_c01072{height:1031.333333pt;}
.w1_c01072{width:716.666667pt;}
.w0_c01072{width:716.800000pt;}
.x0_c01072{left:0.000000pt;}
.x2c_c01072{left:83.200000pt;}
.x1_c01072{left:84.480000pt;}
.x2f_c01072{left:94.080000pt;}
.x30_c01072{left:113.280000pt;}
.x2d_c01072{left:123.520000pt;}
.x31_c01072{left:142.080000pt;}
.x1c_c01072{left:149.760000pt;}
.x7_c01072{left:151.040000pt;}
.x37_c01072{left:159.360000pt;}
.x1d_c01072{left:179.200000pt;}
.x10_c01072{left:189.440000pt;}
.x2a_c01072{left:198.400000pt;}
.x9_c01072{left:199.680000pt;}
.x38_c01072{left:216.960000pt;}
.x2_c01072{left:227.200000pt;}
.x32_c01072{left:228.480000pt;}
.x8_c01072{left:236.800000pt;}
.xa_c01072{left:247.680000pt;}
.x35_c01072{left:257.280000pt;}
.x1e_c01072{left:266.240000pt;}
.x22_c01072{left:274.560000pt;}
.x29_c01072{left:275.840000pt;}
.x24_c01072{left:283.520000pt;}
.x3_c01072{left:284.800000pt;}
.x33_c01072{left:286.080000pt;}
.x36_c01072{left:293.120000pt;}
.x1f_c01072{left:304.000000pt;}
.xb_c01072{left:312.960000pt;}
.xe_c01072{left:314.240000pt;}
.x23_c01072{left:322.560000pt;}
.x2e_c01072{left:333.440000pt;}
.x34_c01072{left:343.040000pt;}
.xc_c01072{left:352.000000pt;}
.xf_c01072{left:360.960000pt;}
.x42_c01072{left:372.480000pt;}
.x20_c01072{left:380.800000pt;}
.x2b_c01072{left:390.400000pt;}
.x3e_c01072{left:391.680000pt;}
.x25_c01072{left:394.240000pt;}
.xd_c01072{left:400.000000pt;}
.x4_c01072{left:410.880000pt;}
.x21_c01072{left:418.560000pt;}
.x3d_c01072{left:439.680000pt;}
.x26_c01072{left:442.880000pt;}
.x19_c01072{left:449.280000pt;}
.x43_c01072{left:455.040000pt;}
.x5_c01072{left:458.240000pt;}
.x3f_c01072{left:466.560000pt;}
.x44_c01072{left:474.240000pt;}
.x27_c01072{left:476.160000pt;}
.x45_c01072{left:482.560000pt;}
.x40_c01072{left:487.680000pt;}
.x6_c01072{left:506.880000pt;}
.x46_c01072{left:512.000000pt;}
.x28_c01072{left:516.480000pt;}
.x41_c01072{left:524.160000pt;}
.x15_c01072{left:535.680000pt;}
.x47_c01072{left:551.680000pt;}
.x3c_c01072{left:553.600000pt;}
.x17_c01072{left:554.880000pt;}
.x4a_c01072{left:560.640000pt;}
.x4b_c01072{left:579.200000pt;}
.x1a_c01072{left:583.040000pt;}
.x12_c01072{left:584.960000pt;}
.x48_c01072{left:589.440000pt;}
.x49_c01072{left:609.920000pt;}
.x3b_c01072{left:612.480000pt;}
.x13_c01072{left:613.760000pt;}
.x39_c01072{left:622.080000pt;}
.x16_c01072{left:623.360000pt;}
.x11_c01072{left:634.240000pt;}
.x4c_c01072{left:647.040000pt;}
.x4d_c01072{left:648.960000pt;}
.x1b_c01072{left:651.520000pt;}
.x14_c01072{left:652.800000pt;}
.x3a_c01072{left:668.800000pt;}
.x18_c01072{left:670.080000pt;}
.x4e_c01072{left:676.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_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_a5341a1018733ceece45d2a3.woff2')format("woff");}.ff1_c01073{font-family:ff1_c01073;line-height:1.109863;font-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_c01073{transform:matrix(0.203875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203875,0.000000,0.000000,0.250000,0,0);}
.m47_c01073{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m46_c01073{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m4d_c01073{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.md_c01073{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m8_c01073{transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);}
.m22_c01073{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m2c_c01073{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m36_c01073{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);}
.m3c_c01073{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m16_c01073{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01073{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);}
.m44_c01073{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);}
.m37_c01073{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m24_c01073{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);}
.m4a_c01073{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);}
.m34_c01073{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);}
.m32_c01073{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.mb_c01073{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01073{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);}
.m49_c01073{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m19_c01073{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);}
.m28_c01073{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m20_c01073{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m0_c01073{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m13_c01073{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m27_c01073{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m31_c01073{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m26_c01073{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.me_c01073{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m5_c01073{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m18_c01073{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m12_c01073{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01073{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m40_c01073{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01073{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m4_c01073{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1_c01073{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m17_c01073{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m9_c01073{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m11_c01073{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);}
.m2b_c01073{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);}
.m30_c01073{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.mf_c01073{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01073{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m25_c01073{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m15_c01073{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);}
.m4b_c01073{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2_c01073{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);}
.m1f_c01073{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m21_c01073{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01073{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);}
.m3a_c01073{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);}
.m35_c01073{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m6_c01073{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m10_c01073{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);}
.m1c_c01073{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);}
.m3d_c01073{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m33_c01073{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m23_c01073{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m14_c01073{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01073{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);}
.m38_c01073{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);}
.m29_c01073{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);}
.m2d_c01073{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);}
.m7_c01073{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m3_c01073{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m41_c01073{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01073{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.ma_c01073{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);}
.m42_c01073{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m48_c01073{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01073{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);}
.m39_c01073{transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01073{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m45_c01073{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01073{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m43_c01073{transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);}
.v0_c01073{vertical-align:0.000000px;}
.v2_c01073{vertical-align:5.760000px;}
.v1_c01073{vertical-align:8.640000px;}
.ls1_c01073{letter-spacing:0.000000px;}
.ls0_c01073{letter-spacing:45.367680px;}
.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;}
}
.ws3_c01073{word-spacing:0.000000px;}
.ws1_c01073{word-spacing:30.978720px;}
.ws0_c01073{word-spacing:86.174400px;}
.ws2_c01073{word-spacing:805.313040px;}
.fc0_c01073{color:transparent;}
.fs5_c01073{font-size:23.040000px;}
.fsf_c01073{font-size:43.200000px;}
.fsd_c01073{font-size:46.080000px;}
.fs1_c01073{font-size:48.960000px;}
.fs2_c01073{font-size:51.840000px;}
.fsb_c01073{font-size:54.720000px;}
.fs9_c01073{font-size:57.600000px;}
.fsa_c01073{font-size:60.480000px;}
.fse_c01073{font-size:63.360000px;}
.fsc_c01073{font-size:66.240000px;}
.fs8_c01073{font-size:69.120000px;}
.fs0_c01073{font-size:72.000000px;}
.fs7_c01073{font-size:74.880000px;}
.fs3_c01073{font-size:77.760000px;}
.fs4_c01073{font-size:80.640000px;}
.fs6_c01073{font-size:83.520000px;}
.y0_c01073{bottom:0.000000px;}
.y90_c01073{bottom:72.720000px;}
.y8f_c01073{bottom:74.160000px;}
.y91_c01073{bottom:74.880000px;}
.y8c_c01073{bottom:75.600000px;}
.y8d_c01073{bottom:76.320000px;}
.y8e_c01073{bottom:77.040000px;}
.y8b_c01073{bottom:77.760000px;}
.y89_c01073{bottom:117.360000px;}
.y88_c01073{bottom:118.080000px;}
.y8a_c01073{bottom:118.800000px;}
.y87_c01073{bottom:122.400000px;}
.y86_c01073{bottom:159.120000px;}
.y83_c01073{bottom:159.840000px;}
.y85_c01073{bottom:162.000000px;}
.y84_c01073{bottom:162.720000px;}
.y82_c01073{bottom:164.880000px;}
.y80_c01073{bottom:203.040000px;}
.y7e_c01073{bottom:203.760000px;}
.y81_c01073{bottom:204.480000px;}
.y7f_c01073{bottom:205.200000px;}
.y7d_c01073{bottom:207.360000px;}
.y7c_c01073{bottom:244.800000px;}
.y7a_c01073{bottom:246.240000px;}
.y7b_c01073{bottom:248.400000px;}
.y79_c01073{bottom:249.120000px;}
.y76_c01073{bottom:288.000000px;}
.y78_c01073{bottom:288.720000px;}
.y74_c01073{bottom:289.440000px;}
.y77_c01073{bottom:290.880000px;}
.y75_c01073{bottom:291.600000px;}
.y73_c01073{bottom:293.040000px;}
.y71_c01073{bottom:331.920000px;}
.y72_c01073{bottom:332.640000px;}
.y70_c01073{bottom:334.800000px;}
.y6d_c01073{bottom:374.400000px;}
.y6b_c01073{bottom:375.120000px;}
.y6c_c01073{bottom:375.840000px;}
.y6f_c01073{bottom:376.560000px;}
.y6e_c01073{bottom:377.280000px;}
.y6a_c01073{bottom:378.000000px;}
.y67_c01073{bottom:417.600000px;}
.y69_c01073{bottom:418.320000px;}
.y66_c01073{bottom:420.480000px;}
.y68_c01073{bottom:421.200000px;}
.y62_c01073{bottom:460.800000px;}
.y64_c01073{bottom:462.240000px;}
.y65_c01073{bottom:462.960000px;}
.y61_c01073{bottom:463.680000px;}
.y63_c01073{bottom:464.400000px;}
.y60_c01073{bottom:503.280000px;}
.y5e_c01073{bottom:504.000000px;}
.y5d_c01073{bottom:505.440000px;}
.y5c_c01073{bottom:506.880000px;}
.y5f_c01073{bottom:507.600000px;}
.y58_c01073{bottom:546.480000px;}
.y5a_c01073{bottom:547.920000px;}
.y59_c01073{bottom:548.640000px;}
.y5b_c01073{bottom:549.360000px;}
.y56_c01073{bottom:550.080000px;}
.y57_c01073{bottom:550.800000px;}
.y54_c01073{bottom:588.240000px;}
.y55_c01073{bottom:590.400000px;}
.y53_c01073{bottom:591.120000px;}
.y50_c01073{bottom:591.840000px;}
.y52_c01073{bottom:592.560000px;}
.y51_c01073{bottom:593.280000px;}
.y4b_c01073{bottom:632.160000px;}
.y4f_c01073{bottom:632.880000px;}
.y4c_c01073{bottom:633.600000px;}
.y4d_c01073{bottom:634.320000px;}
.y49_c01073{bottom:635.040000px;}
.y4e_c01073{bottom:635.760000px;}
.y4a_c01073{bottom:636.480000px;}
.y46_c01073{bottom:675.360000px;}
.y48_c01073{bottom:676.080000px;}
.y47_c01073{bottom:676.800000px;}
.y44_c01073{bottom:677.520000px;}
.y45_c01073{bottom:678.960000px;}
.y42_c01073{bottom:719.280000px;}
.y43_c01073{bottom:720.720000px;}
.y41_c01073{bottom:722.160000px;}
.y3d_c01073{bottom:793.440000px;}
.y40_c01073{bottom:794.160000px;}
.y3f_c01073{bottom:795.600000px;}
.y3e_c01073{bottom:797.040000px;}
.y3b_c01073{bottom:815.040000px;}
.y39_c01073{bottom:815.760000px;}
.y3c_c01073{bottom:817.200000px;}
.y38_c01073{bottom:817.920000px;}
.y3a_c01073{bottom:818.640000px;}
.y35_c01073{bottom:836.640000px;}
.y33_c01073{bottom:837.360000px;}
.y34_c01073{bottom:838.080000px;}
.y37_c01073{bottom:839.520000px;}
.y36_c01073{bottom:840.240000px;}
.y2e_c01073{bottom:858.240000px;}
.y30_c01073{bottom:858.960000px;}
.y31_c01073{bottom:859.680000px;}
.y2f_c01073{bottom:860.400000px;}
.y32_c01073{bottom:861.120000px;}
.y2a_c01073{bottom:879.120000px;}
.y2b_c01073{bottom:879.840000px;}
.y29_c01073{bottom:880.560000px;}
.y2c_c01073{bottom:881.280000px;}
.y28_c01073{bottom:882.000000px;}
.y2d_c01073{bottom:882.720000px;}
.y24_c01073{bottom:901.440000px;}
.y25_c01073{bottom:902.160000px;}
.y27_c01073{bottom:902.880000px;}
.y23_c01073{bottom:903.600000px;}
.y26_c01073{bottom:904.320000px;}
.y1d_c01073{bottom:923.040000px;}
.y21_c01073{bottom:923.760000px;}
.y22_c01073{bottom:924.480000px;}
.y1e_c01073{bottom:925.200000px;}
.y20_c01073{bottom:925.920000px;}
.y1f_c01073{bottom:926.640000px;}
.y17_c01073{bottom:943.920000px;}
.y19_c01073{bottom:944.640000px;}
.y1a_c01073{bottom:945.360000px;}
.y1b_c01073{bottom:946.080000px;}
.y18_c01073{bottom:946.800000px;}
.y1c_c01073{bottom:947.520000px;}
.y13_c01073{bottom:966.240000px;}
.y14_c01073{bottom:966.960000px;}
.y15_c01073{bottom:967.680000px;}
.y16_c01073{bottom:969.840000px;}
.ye_c01073{bottom:987.120000px;}
.y11_c01073{bottom:988.560000px;}
.yf_c01073{bottom:989.280000px;}
.y10_c01073{bottom:990.000000px;}
.y12_c01073{bottom:990.720000px;}
.ya_c01073{bottom:1008.720000px;}
.y9_c01073{bottom:1010.880000px;}
.yb_c01073{bottom:1011.600000px;}
.yd_c01073{bottom:1012.320000px;}
.yc_c01073{bottom:1013.040000px;}
.y4_c01073{bottom:1037.520000px;}
.y3_c01073{bottom:1038.240000px;}
.y7_c01073{bottom:1038.960000px;}
.y8_c01073{bottom:1039.680000px;}
.y2_c01073{bottom:1042.560000px;}
.y5_c01073{bottom:1043.280000px;}
.y6_c01073{bottom:1044.000000px;}
.y1_c01073{bottom:1108.800000px;}
.h7_c01073{height:20.733750px;}
.h11_c01073{height:38.875781px;}
.hf_c01073{height:41.467500px;}
.h3_c01073{height:44.059219px;}
.h4_c01073{height:46.650937px;}
.hd_c01073{height:49.242656px;}
.hb_c01073{height:51.834375px;}
.hc_c01073{height:54.426094px;}
.h10_c01073{height:57.017812px;}
.he_c01073{height:59.609531px;}
.ha_c01073{height:62.201250px;}
.h2_c01073{height:64.792969px;}
.h9_c01073{height:67.384687px;}
.h5_c01073{height:69.976406px;}
.h6_c01073{height:72.568125px;}
.h8_c01073{height:75.159844px;}
.h0_c01073{height:1159.920000px;}
.h1_c01073{height:1160.250000px;}
.w1_c01073{width:807.750000px;}
.w0_c01073{width:807.840000px;}
.x0_c01073{left:0.000000px;}
.x3d_c01073{left:97.200000px;}
.x2_c01073{left:98.640000px;}
.x1a_c01073{left:109.440000px;}
.xf_c01073{left:110.880000px;}
.x3_c01073{left:131.760000px;}
.x10_c01073{left:141.120000px;}
.x18_c01073{left:142.560000px;}
.x1b_c01073{left:152.640000px;}
.x36_c01073{left:172.080000px;}
.x28_c01073{left:173.520000px;}
.x11_c01073{left:175.680000px;}
.x22_c01073{left:184.320000px;}
.x19_c01073{left:185.760000px;}
.x29_c01073{left:196.560000px;}
.x4_c01073{left:207.360000px;}
.x33_c01073{left:215.280000px;}
.x2d_c01073{left:216.720000px;}
.x37_c01073{left:226.800000px;}
.x1e_c01073{left:249.120000px;}
.x5_c01073{left:250.560000px;}
.x27_c01073{left:258.480000px;}
.x2e_c01073{left:301.680000px;}
.x34_c01073{left:313.200000px;}
.x23_c01073{left:324.000000px;}
.x6_c01073{left:325.440000px;}
.x40_c01073{left:355.680000px;}
.x7_c01073{left:357.840000px;}
.x1c_c01073{left:370.080000px;}
.x1f_c01073{left:378.720000px;}
.x12_c01073{left:380.160000px;}
.x2f_c01073{left:398.880000px;}
.x8_c01073{left:402.480000px;}
.x13_c01073{left:411.840000px;}
.x9_c01073{left:434.880000px;}
.x41_c01073{left:440.640000px;}
.x30_c01073{left:443.520000px;}
.x14_c01073{left:476.640000px;}
.xa_c01073{left:478.080000px;}
.x42_c01073{left:484.560000px;}
.x43_c01073{left:533.520000px;}
.xb_c01073{left:552.960000px;}
.x1d_c01073{left:554.400000px;}
.x39_c01073{left:572.400000px;}
.x2a_c01073{left:573.840000px;}
.x44_c01073{left:583.200000px;}
.x3b_c01073{left:584.640000px;}
.xc_c01073{left:586.080000px;}
.x20_c01073{left:597.600000px;}
.x3e_c01073{left:604.800000px;}
.x24_c01073{left:606.240000px;}
.x15_c01073{left:607.680000px;}
.x3a_c01073{left:626.400000px;}
.x21_c01073{left:639.360000px;}
.x16_c01073{left:640.800000px;}
.x31_c01073{left:659.520000px;}
.x35_c01073{left:660.960000px;}
.xd_c01073{left:663.120000px;}
.x1_c01073{left:675.360000px;}
.x45_c01073{left:691.920000px;}
.x2b_c01073{left:694.080000px;}
.x26_c01073{left:695.520000px;}
.x38_c01073{left:703.440000px;}
.x25_c01073{left:704.880000px;}
.x17_c01073{left:706.320000px;}
.x3f_c01073{left:714.960000px;}
.xe_c01073{left:717.120000px;}
.x3c_c01073{left:735.120000px;}
.x2c_c01073{left:736.560000px;}
.x32_c01073{left:757.440000px;}
@media print{
.v0_c01073{vertical-align:0.000000pt;}
.v2_c01073{vertical-align:5.120000pt;}
.v1_c01073{vertical-align:7.680000pt;}
.ls1_c01073{letter-spacing:0.000000pt;}
.ls0_c01073{letter-spacing:40.326827pt;}
.ws3_c01073{word-spacing:0.000000pt;}
.ws1_c01073{word-spacing:27.536640pt;}
.ws0_c01073{word-spacing:76.599467pt;}
.ws2_c01073{word-spacing:715.833813pt;}
.fs5_c01073{font-size:20.480000pt;}
.fsf_c01073{font-size:38.400000pt;}
.fsd_c01073{font-size:40.960000pt;}
.fs1_c01073{font-size:43.520000pt;}
.fs2_c01073{font-size:46.080000pt;}
.fsb_c01073{font-size:48.640000pt;}
.fs9_c01073{font-size:51.200000pt;}
.fsa_c01073{font-size:53.760000pt;}
.fse_c01073{font-size:56.320000pt;}
.fsc_c01073{font-size:58.880000pt;}
.fs8_c01073{font-size:61.440000pt;}
.fs0_c01073{font-size:64.000000pt;}
.fs7_c01073{font-size:66.560000pt;}
.fs3_c01073{font-size:69.120000pt;}
.fs4_c01073{font-size:71.680000pt;}
.fs6_c01073{font-size:74.240000pt;}
.y0_c01073{bottom:0.000000pt;}
.y90_c01073{bottom:64.640000pt;}
.y8f_c01073{bottom:65.920000pt;}
.y91_c01073{bottom:66.560000pt;}
.y8c_c01073{bottom:67.200000pt;}
.y8d_c01073{bottom:67.840000pt;}
.y8e_c01073{bottom:68.480000pt;}
.y8b_c01073{bottom:69.120000pt;}
.y89_c01073{bottom:104.320000pt;}
.y88_c01073{bottom:104.960000pt;}
.y8a_c01073{bottom:105.600000pt;}
.y87_c01073{bottom:108.800000pt;}
.y86_c01073{bottom:141.440000pt;}
.y83_c01073{bottom:142.080000pt;}
.y85_c01073{bottom:144.000000pt;}
.y84_c01073{bottom:144.640000pt;}
.y82_c01073{bottom:146.560000pt;}
.y80_c01073{bottom:180.480000pt;}
.y7e_c01073{bottom:181.120000pt;}
.y81_c01073{bottom:181.760000pt;}
.y7f_c01073{bottom:182.400000pt;}
.y7d_c01073{bottom:184.320000pt;}
.y7c_c01073{bottom:217.600000pt;}
.y7a_c01073{bottom:218.880000pt;}
.y7b_c01073{bottom:220.800000pt;}
.y79_c01073{bottom:221.440000pt;}
.y76_c01073{bottom:256.000000pt;}
.y78_c01073{bottom:256.640000pt;}
.y74_c01073{bottom:257.280000pt;}
.y77_c01073{bottom:258.560000pt;}
.y75_c01073{bottom:259.200000pt;}
.y73_c01073{bottom:260.480000pt;}
.y71_c01073{bottom:295.040000pt;}
.y72_c01073{bottom:295.680000pt;}
.y70_c01073{bottom:297.600000pt;}
.y6d_c01073{bottom:332.800000pt;}
.y6b_c01073{bottom:333.440000pt;}
.y6c_c01073{bottom:334.080000pt;}
.y6f_c01073{bottom:334.720000pt;}
.y6e_c01073{bottom:335.360000pt;}
.y6a_c01073{bottom:336.000000pt;}
.y67_c01073{bottom:371.200000pt;}
.y69_c01073{bottom:371.840000pt;}
.y66_c01073{bottom:373.760000pt;}
.y68_c01073{bottom:374.400000pt;}
.y62_c01073{bottom:409.600000pt;}
.y64_c01073{bottom:410.880000pt;}
.y65_c01073{bottom:411.520000pt;}
.y61_c01073{bottom:412.160000pt;}
.y63_c01073{bottom:412.800000pt;}
.y60_c01073{bottom:447.360000pt;}
.y5e_c01073{bottom:448.000000pt;}
.y5d_c01073{bottom:449.280000pt;}
.y5c_c01073{bottom:450.560000pt;}
.y5f_c01073{bottom:451.200000pt;}
.y58_c01073{bottom:485.760000pt;}
.y5a_c01073{bottom:487.040000pt;}
.y59_c01073{bottom:487.680000pt;}
.y5b_c01073{bottom:488.320000pt;}
.y56_c01073{bottom:488.960000pt;}
.y57_c01073{bottom:489.600000pt;}
.y54_c01073{bottom:522.880000pt;}
.y55_c01073{bottom:524.800000pt;}
.y53_c01073{bottom:525.440000pt;}
.y50_c01073{bottom:526.080000pt;}
.y52_c01073{bottom:526.720000pt;}
.y51_c01073{bottom:527.360000pt;}
.y4b_c01073{bottom:561.920000pt;}
.y4f_c01073{bottom:562.560000pt;}
.y4c_c01073{bottom:563.200000pt;}
.y4d_c01073{bottom:563.840000pt;}
.y49_c01073{bottom:564.480000pt;}
.y4e_c01073{bottom:565.120000pt;}
.y4a_c01073{bottom:565.760000pt;}
.y46_c01073{bottom:600.320000pt;}
.y48_c01073{bottom:600.960000pt;}
.y47_c01073{bottom:601.600000pt;}
.y44_c01073{bottom:602.240000pt;}
.y45_c01073{bottom:603.520000pt;}
.y42_c01073{bottom:639.360000pt;}
.y43_c01073{bottom:640.640000pt;}
.y41_c01073{bottom:641.920000pt;}
.y3d_c01073{bottom:705.280000pt;}
.y40_c01073{bottom:705.920000pt;}
.y3f_c01073{bottom:707.200000pt;}
.y3e_c01073{bottom:708.480000pt;}
.y3b_c01073{bottom:724.480000pt;}
.y39_c01073{bottom:725.120000pt;}
.y3c_c01073{bottom:726.400000pt;}
.y38_c01073{bottom:727.040000pt;}
.y3a_c01073{bottom:727.680000pt;}
.y35_c01073{bottom:743.680000pt;}
.y33_c01073{bottom:744.320000pt;}
.y34_c01073{bottom:744.960000pt;}
.y37_c01073{bottom:746.240000pt;}
.y36_c01073{bottom:746.880000pt;}
.y2e_c01073{bottom:762.880000pt;}
.y30_c01073{bottom:763.520000pt;}
.y31_c01073{bottom:764.160000pt;}
.y2f_c01073{bottom:764.800000pt;}
.y32_c01073{bottom:765.440000pt;}
.y2a_c01073{bottom:781.440000pt;}
.y2b_c01073{bottom:782.080000pt;}
.y29_c01073{bottom:782.720000pt;}
.y2c_c01073{bottom:783.360000pt;}
.y28_c01073{bottom:784.000000pt;}
.y2d_c01073{bottom:784.640000pt;}
.y24_c01073{bottom:801.280000pt;}
.y25_c01073{bottom:801.920000pt;}
.y27_c01073{bottom:802.560000pt;}
.y23_c01073{bottom:803.200000pt;}
.y26_c01073{bottom:803.840000pt;}
.y1d_c01073{bottom:820.480000pt;}
.y21_c01073{bottom:821.120000pt;}
.y22_c01073{bottom:821.760000pt;}
.y1e_c01073{bottom:822.400000pt;}
.y20_c01073{bottom:823.040000pt;}
.y1f_c01073{bottom:823.680000pt;}
.y17_c01073{bottom:839.040000pt;}
.y19_c01073{bottom:839.680000pt;}
.y1a_c01073{bottom:840.320000pt;}
.y1b_c01073{bottom:840.960000pt;}
.y18_c01073{bottom:841.600000pt;}
.y1c_c01073{bottom:842.240000pt;}
.y13_c01073{bottom:858.880000pt;}
.y14_c01073{bottom:859.520000pt;}
.y15_c01073{bottom:860.160000pt;}
.y16_c01073{bottom:862.080000pt;}
.ye_c01073{bottom:877.440000pt;}
.y11_c01073{bottom:878.720000pt;}
.yf_c01073{bottom:879.360000pt;}
.y10_c01073{bottom:880.000000pt;}
.y12_c01073{bottom:880.640000pt;}
.ya_c01073{bottom:896.640000pt;}
.y9_c01073{bottom:898.560000pt;}
.yb_c01073{bottom:899.200000pt;}
.yd_c01073{bottom:899.840000pt;}
.yc_c01073{bottom:900.480000pt;}
.y4_c01073{bottom:922.240000pt;}
.y3_c01073{bottom:922.880000pt;}
.y7_c01073{bottom:923.520000pt;}
.y8_c01073{bottom:924.160000pt;}
.y2_c01073{bottom:926.720000pt;}
.y5_c01073{bottom:927.360000pt;}
.y6_c01073{bottom:928.000000pt;}
.y1_c01073{bottom:985.600000pt;}
.h7_c01073{height:18.430000pt;}
.h11_c01073{height:34.556250pt;}
.hf_c01073{height:36.860000pt;}
.h3_c01073{height:39.163750pt;}
.h4_c01073{height:41.467500pt;}
.hd_c01073{height:43.771250pt;}
.hb_c01073{height:46.075000pt;}
.hc_c01073{height:48.378750pt;}
.h10_c01073{height:50.682500pt;}
.he_c01073{height:52.986250pt;}
.ha_c01073{height:55.290000pt;}
.h2_c01073{height:57.593750pt;}
.h9_c01073{height:59.897500pt;}
.h5_c01073{height:62.201250pt;}
.h6_c01073{height:64.505000pt;}
.h8_c01073{height:66.808750pt;}
.h0_c01073{height:1031.040000pt;}
.h1_c01073{height:1031.333333pt;}
.w1_c01073{width:718.000000pt;}
.w0_c01073{width:718.080000pt;}
.x0_c01073{left:0.000000pt;}
.x3d_c01073{left:86.400000pt;}
.x2_c01073{left:87.680000pt;}
.x1a_c01073{left:97.280000pt;}
.xf_c01073{left:98.560000pt;}
.x3_c01073{left:117.120000pt;}
.x10_c01073{left:125.440000pt;}
.x18_c01073{left:126.720000pt;}
.x1b_c01073{left:135.680000pt;}
.x36_c01073{left:152.960000pt;}
.x28_c01073{left:154.240000pt;}
.x11_c01073{left:156.160000pt;}
.x22_c01073{left:163.840000pt;}
.x19_c01073{left:165.120000pt;}
.x29_c01073{left:174.720000pt;}
.x4_c01073{left:184.320000pt;}
.x33_c01073{left:191.360000pt;}
.x2d_c01073{left:192.640000pt;}
.x37_c01073{left:201.600000pt;}
.x1e_c01073{left:221.440000pt;}
.x5_c01073{left:222.720000pt;}
.x27_c01073{left:229.760000pt;}
.x2e_c01073{left:268.160000pt;}
.x34_c01073{left:278.400000pt;}
.x23_c01073{left:288.000000pt;}
.x6_c01073{left:289.280000pt;}
.x40_c01073{left:316.160000pt;}
.x7_c01073{left:318.080000pt;}
.x1c_c01073{left:328.960000pt;}
.x1f_c01073{left:336.640000pt;}
.x12_c01073{left:337.920000pt;}
.x2f_c01073{left:354.560000pt;}
.x8_c01073{left:357.760000pt;}
.x13_c01073{left:366.080000pt;}
.x9_c01073{left:386.560000pt;}
.x41_c01073{left:391.680000pt;}
.x30_c01073{left:394.240000pt;}
.x14_c01073{left:423.680000pt;}
.xa_c01073{left:424.960000pt;}
.x42_c01073{left:430.720000pt;}
.x43_c01073{left:474.240000pt;}
.xb_c01073{left:491.520000pt;}
.x1d_c01073{left:492.800000pt;}
.x39_c01073{left:508.800000pt;}
.x2a_c01073{left:510.080000pt;}
.x44_c01073{left:518.400000pt;}
.x3b_c01073{left:519.680000pt;}
.xc_c01073{left:520.960000pt;}
.x20_c01073{left:531.200000pt;}
.x3e_c01073{left:537.600000pt;}
.x24_c01073{left:538.880000pt;}
.x15_c01073{left:540.160000pt;}
.x3a_c01073{left:556.800000pt;}
.x21_c01073{left:568.320000pt;}
.x16_c01073{left:569.600000pt;}
.x31_c01073{left:586.240000pt;}
.x35_c01073{left:587.520000pt;}
.xd_c01073{left:589.440000pt;}
.x1_c01073{left:600.320000pt;}
.x45_c01073{left:615.040000pt;}
.x2b_c01073{left:616.960000pt;}
.x26_c01073{left:618.240000pt;}
.x38_c01073{left:625.280000pt;}
.x25_c01073{left:626.560000pt;}
.x17_c01073{left:627.840000pt;}
.x3f_c01073{left:635.520000pt;}
.xe_c01073{left:637.440000pt;}
.x3c_c01073{left:653.440000pt;}
.x2c_c01073{left:654.720000pt;}
.x32_c01073{left:673.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4e3088b760ea74e7d6b4f846.woff2')format("woff");}.ff1_c01074{font-family:ff1_c01074;line-height:1.109863;font-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_c01074{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);}
.m43_c01074{transform:matrix(0.236625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236625,0.000000,0.000000,0.250000,0,0);}
.m1d_c01074{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m20_c01074{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m3e_c01074{transform:matrix(0.238850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238850,0.000000,0.000000,0.250000,0,0);}
.m2_c01074{transform:matrix(0.239175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239175,0.000000,0.000000,0.250000,0,0);}
.m13_c01074{transform:matrix(0.240050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240050,0.000000,0.000000,0.250000,0,0);}
.mf_c01074{transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);}
.m4a_c01074{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m28_c01074{transform:matrix(0.244925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244925,0.000000,0.000000,0.250000,0,0);}
.m36_c01074{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m2f_c01074{transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);}
.m1f_c01074{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01074{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m14_c01074{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m16_c01074{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m5_c01074{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);}
.m44_c01074{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);}
.m27_c01074{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mc_c01074{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);}
.m38_c01074{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);}
.m40_c01074{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01074{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01074{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m12_c01074{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mb_c01074{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.ma_c01074{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01074{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01074{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m7_c01074{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m10_c01074{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m9_c01074{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m22_c01074{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01074{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1_c01074{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.me_c01074{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m31_c01074{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m46_c01074{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01074{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m11_c01074{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m3_c01074{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m21_c01074{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m0_c01074{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);}
.m3c_c01074{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01074{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);}
.m42_c01074{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);}
.m24_c01074{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m23_c01074{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m15_c01074{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);}
.m26_c01074{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);}
.m4e_c01074{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);}
.m45_c01074{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01074{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m6_c01074{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_c01074{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m47_c01074{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);}
.m4b_c01074{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01074{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);}
.m30_c01074{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m32_c01074{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m25_c01074{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01074{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m19_c01074{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m34_c01074{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);}
.m1a_c01074{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);}
.m35_c01074{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m49_c01074{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01074{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m18_c01074{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);}
.m39_c01074{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m4_c01074{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01074{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);}
.m48_c01074{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);}
.m3a_c01074{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m29_c01074{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m41_c01074{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);}
.m37_c01074{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);}
.md_c01074{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m17_c01074{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.v3_c01074{vertical-align:-2.880000px;}
.v0_c01074{vertical-align:0.000000px;}
.v2_c01074{vertical-align:2.880000px;}
.v4_c01074{vertical-align:5.760000px;}
.v1_c01074{vertical-align:8.640000px;}
.ls2_c01074{letter-spacing:0.000000px;}
.ls0_c01074{letter-spacing:47.972400px;}
.ls1_c01074{letter-spacing:50.419680px;}
.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;}
}
.ws5_c01074{word-spacing:0.000000px;}
.ws1_c01074{word-spacing:0.066960px;}
.ws3_c01074{word-spacing:15.600000px;}
.ws0_c01074{word-spacing:20.652000px;}
.ws2_c01074{word-spacing:23.457600px;}
.ws4_c01074{word-spacing:45.396259px;}
.fc0_c01074{color:transparent;}
.fsa_c01074{font-size:37.440000px;}
.fse_c01074{font-size:43.200000px;}
.fsd_c01074{font-size:46.080000px;}
.fsb_c01074{font-size:48.960000px;}
.fs3_c01074{font-size:51.840000px;}
.fs6_c01074{font-size:54.720000px;}
.fs5_c01074{font-size:57.600000px;}
.fs7_c01074{font-size:60.480000px;}
.fs4_c01074{font-size:63.360000px;}
.fs9_c01074{font-size:66.240000px;}
.fs1_c01074{font-size:69.120000px;}
.fs8_c01074{font-size:72.000000px;}
.fs2_c01074{font-size:74.880000px;}
.fs0_c01074{font-size:77.760000px;}
.fsc_c01074{font-size:80.640000px;}
.y0_c01074{bottom:0.000000px;}
.y79_c01074{bottom:50.400000px;}
.y77_c01074{bottom:52.560000px;}
.y7a_c01074{bottom:53.280000px;}
.y78_c01074{bottom:54.000000px;}
.y76_c01074{bottom:55.440000px;}
.y75_c01074{bottom:81.360000px;}
.y74_c01074{bottom:82.080000px;}
.y73_c01074{bottom:82.800000px;}
.y72_c01074{bottom:83.520000px;}
.y71_c01074{bottom:84.960000px;}
.y70_c01074{bottom:87.120000px;}
.y6f_c01074{bottom:125.280000px;}
.y6e_c01074{bottom:126.000000px;}
.y6d_c01074{bottom:128.160000px;}
.y6c_c01074{bottom:128.880000px;}
.y6b_c01074{bottom:168.480000px;}
.y6a_c01074{bottom:169.200000px;}
.y69_c01074{bottom:171.360000px;}
.y68_c01074{bottom:172.080000px;}
.y66_c01074{bottom:210.960000px;}
.y67_c01074{bottom:211.680000px;}
.y65_c01074{bottom:213.120000px;}
.y63_c01074{bottom:214.560000px;}
.y64_c01074{bottom:215.280000px;}
.y5c_c01074{bottom:253.440000px;}
.y5d_c01074{bottom:254.160000px;}
.y59_c01074{bottom:257.040000px;}
.y5b_c01074{bottom:257.760000px;}
.y5a_c01074{bottom:258.480000px;}
.y56_c01074{bottom:286.560000px;}
.y58_c01074{bottom:287.280000px;}
.y55_c01074{bottom:288.000000px;}
.y53_c01074{bottom:288.720000px;}
.y57_c01074{bottom:289.440000px;}
.y54_c01074{bottom:290.160000px;}
.y52_c01074{bottom:328.320000px;}
.y4f_c01074{bottom:329.040000px;}
.y51_c01074{bottom:331.920000px;}
.y50_c01074{bottom:332.640000px;}
.y4d_c01074{bottom:361.440000px;}
.y4c_c01074{bottom:362.160000px;}
.y62_c01074{bottom:362.880000px;}
.y4a_c01074{bottom:363.600000px;}
.y4e_c01074{bottom:364.320000px;}
.y4b_c01074{bottom:365.040000px;}
.y47_c01074{bottom:403.920000px;}
.y49_c01074{bottom:406.800000px;}
.y48_c01074{bottom:407.520000px;}
.y44_c01074{bottom:437.040000px;}
.y42_c01074{bottom:437.760000px;}
.y46_c01074{bottom:438.480000px;}
.y45_c01074{bottom:439.200000px;}
.y43_c01074{bottom:439.920000px;}
.y41_c01074{bottom:479.520000px;}
.y40_c01074{bottom:510.480000px;}
.y3e_c01074{bottom:512.640000px;}
.y61_c01074{bottom:513.360000px;}
.y3f_c01074{bottom:514.080000px;}
.y3d_c01074{bottom:553.680000px;}
.y3c_c01074{bottom:555.840000px;}
.y36_c01074{bottom:586.080000px;}
.y37_c01074{bottom:586.800000px;}
.y35_c01074{bottom:587.520000px;}
.y60_c01074{bottom:588.240000px;}
.y3b_c01074{bottom:588.960000px;}
.y39_c01074{bottom:589.680000px;}
.y38_c01074{bottom:590.400000px;}
.y3a_c01074{bottom:591.120000px;}
.y33_c01074{bottom:630.000000px;}
.y34_c01074{bottom:632.880000px;}
.y2f_c01074{bottom:660.960000px;}
.y2e_c01074{bottom:662.400000px;}
.y31_c01074{bottom:663.840000px;}
.y32_c01074{bottom:664.560000px;}
.y30_c01074{bottom:665.280000px;}
.y2c_c01074{bottom:704.160000px;}
.y2b_c01074{bottom:705.600000px;}
.y5f_c01074{bottom:706.320000px;}
.y2d_c01074{bottom:707.040000px;}
.y5e_c01074{bottom:709.200000px;}
.y2a_c01074{bottom:747.360000px;}
.y25_c01074{bottom:779.040000px;}
.y24_c01074{bottom:781.200000px;}
.y28_c01074{bottom:781.920000px;}
.y27_c01074{bottom:782.640000px;}
.y29_c01074{bottom:783.360000px;}
.y26_c01074{bottom:784.080000px;}
.y20_c01074{bottom:822.240000px;}
.y1f_c01074{bottom:823.680000px;}
.y21_c01074{bottom:825.840000px;}
.y23_c01074{bottom:826.560000px;}
.y22_c01074{bottom:828.000000px;}
.y1c_c01074{bottom:864.720000px;}
.y1b_c01074{bottom:866.160000px;}
.y1e_c01074{bottom:869.040000px;}
.y1d_c01074{bottom:870.480000px;}
.y15_c01074{bottom:907.920000px;}
.y14_c01074{bottom:908.640000px;}
.y18_c01074{bottom:909.360000px;}
.y17_c01074{bottom:910.080000px;}
.y19_c01074{bottom:911.520000px;}
.y16_c01074{bottom:912.240000px;}
.y1a_c01074{bottom:914.400000px;}
.y11_c01074{bottom:950.400000px;}
.y10_c01074{bottom:951.840000px;}
.y12_c01074{bottom:954.000000px;}
.y13_c01074{bottom:956.880000px;}
.yb_c01074{bottom:992.880000px;}
.ya_c01074{bottom:994.320000px;}
.yd_c01074{bottom:995.040000px;}
.ye_c01074{bottom:997.200000px;}
.yc_c01074{bottom:997.920000px;}
.yf_c01074{bottom:1000.080000px;}
.y3_c01074{bottom:1035.360000px;}
.y2_c01074{bottom:1036.800000px;}
.y8_c01074{bottom:1038.240000px;}
.y6_c01074{bottom:1038.960000px;}
.y4_c01074{bottom:1039.680000px;}
.y5_c01074{bottom:1040.400000px;}
.y7_c01074{bottom:1041.120000px;}
.y9_c01074{bottom:1042.560000px;}
.y1_c01074{bottom:1116.720000px;}
.hd_c01074{height:33.692344px;}
.h13_c01074{height:38.875781px;}
.h12_c01074{height:41.467500px;}
.hf_c01074{height:44.059219px;}
.h5_c01074{height:46.650937px;}
.h8_c01074{height:49.242656px;}
.h7_c01074{height:51.834375px;}
.h11_c01074{height:52.122656px;}
.h9_c01074{height:54.426094px;}
.he_c01074{height:54.714375px;}
.h6_c01074{height:57.017812px;}
.h14_c01074{height:57.594375px;}
.hb_c01074{height:59.609531px;}
.hc_c01074{height:60.474375px;}
.h3_c01074{height:62.201250px;}
.ha_c01074{height:64.792969px;}
.h4_c01074{height:67.384687px;}
.h2_c01074{height:69.976406px;}
.h10_c01074{height:72.568125px;}
.h0_c01074{height:1158.480000px;}
.h1_c01074{height:1158.750000px;}
.w1_c01074{width:806.250000px;}
.w0_c01074{width:806.400000px;}
.x0_c01074{left:0.000000px;}
.x2_c01074{left:92.880000px;}
.x28_c01074{left:158.400000px;}
.x3_c01074{left:166.320000px;}
.x1e_c01074{left:167.760000px;}
.x1f_c01074{left:210.960000px;}
.x33_c01074{left:221.760000px;}
.x4_c01074{left:252.000000px;}
.x25_c01074{left:253.440000px;}
.x20_c01074{left:264.240000px;}
.x11_c01074{left:286.560000px;}
.x5_c01074{left:295.920000px;}
.x21_c01074{left:306.720000px;}
.x22_c01074{left:308.160000px;}
.x31_c01074{left:318.240000px;}
.x12_c01074{left:329.040000px;}
.x1a_c01074{left:339.840000px;}
.xf_c01074{left:349.920000px;}
.x6_c01074{left:351.360000px;}
.x26_c01074{left:361.440000px;}
.x2a_c01074{left:362.880000px;}
.x13_c01074{left:372.960000px;}
.x1b_c01074{left:383.040000px;}
.x23_c01074{left:393.120000px;}
.x2c_c01074{left:405.360000px;}
.x14_c01074{left:407.520000px;}
.x1c_c01074{left:437.040000px;}
.x2d_c01074{left:447.840000px;}
.x17_c01074{left:457.920000px;}
.x15_c01074{left:461.520000px;}
.x7_c01074{left:480.240000px;}
.x2b_c01074{left:491.040000px;}
.x24_c01074{left:492.480000px;}
.x18_c01074{left:502.560000px;}
.x27_c01074{left:512.640000px;}
.x8_c01074{left:518.400000px;}
.x29_c01074{left:534.240000px;}
.x34_c01074{left:557.280000px;}
.x32_c01074{left:567.360000px;}
.x1d_c01074{left:568.800000px;}
.x19_c01074{left:578.160000px;}
.x9_c01074{left:579.600000px;}
.xa_c01074{left:601.200000px;}
.x30_c01074{left:622.080000px;}
.x10_c01074{left:654.480000px;}
.xb_c01074{left:655.920000px;}
.x1_c01074{left:681.840000px;}
.x2f_c01074{left:687.600000px;}
.xc_c01074{left:689.040000px;}
.x16_c01074{left:722.160000px;}
.x2e_c01074{left:730.800000px;}
.xd_c01074{left:732.240000px;}
.xe_c01074{left:752.400000px;}
@media print{
.v3_c01074{vertical-align:-2.560000pt;}
.v0_c01074{vertical-align:0.000000pt;}
.v2_c01074{vertical-align:2.560000pt;}
.v4_c01074{vertical-align:5.120000pt;}
.v1_c01074{vertical-align:7.680000pt;}
.ls2_c01074{letter-spacing:0.000000pt;}
.ls0_c01074{letter-spacing:42.642133pt;}
.ls1_c01074{letter-spacing:44.817493pt;}
.ws5_c01074{word-spacing:0.000000pt;}
.ws1_c01074{word-spacing:0.059520pt;}
.ws3_c01074{word-spacing:13.866667pt;}
.ws0_c01074{word-spacing:18.357333pt;}
.ws2_c01074{word-spacing:20.851200pt;}
.ws4_c01074{word-spacing:40.352230pt;}
.fsa_c01074{font-size:33.280000pt;}
.fse_c01074{font-size:38.400000pt;}
.fsd_c01074{font-size:40.960000pt;}
.fsb_c01074{font-size:43.520000pt;}
.fs3_c01074{font-size:46.080000pt;}
.fs6_c01074{font-size:48.640000pt;}
.fs5_c01074{font-size:51.200000pt;}
.fs7_c01074{font-size:53.760000pt;}
.fs4_c01074{font-size:56.320000pt;}
.fs9_c01074{font-size:58.880000pt;}
.fs1_c01074{font-size:61.440000pt;}
.fs8_c01074{font-size:64.000000pt;}
.fs2_c01074{font-size:66.560000pt;}
.fs0_c01074{font-size:69.120000pt;}
.fsc_c01074{font-size:71.680000pt;}
.y0_c01074{bottom:0.000000pt;}
.y79_c01074{bottom:44.800000pt;}
.y77_c01074{bottom:46.720000pt;}
.y7a_c01074{bottom:47.360000pt;}
.y78_c01074{bottom:48.000000pt;}
.y76_c01074{bottom:49.280000pt;}
.y75_c01074{bottom:72.320000pt;}
.y74_c01074{bottom:72.960000pt;}
.y73_c01074{bottom:73.600000pt;}
.y72_c01074{bottom:74.240000pt;}
.y71_c01074{bottom:75.520000pt;}
.y70_c01074{bottom:77.440000pt;}
.y6f_c01074{bottom:111.360000pt;}
.y6e_c01074{bottom:112.000000pt;}
.y6d_c01074{bottom:113.920000pt;}
.y6c_c01074{bottom:114.560000pt;}
.y6b_c01074{bottom:149.760000pt;}
.y6a_c01074{bottom:150.400000pt;}
.y69_c01074{bottom:152.320000pt;}
.y68_c01074{bottom:152.960000pt;}
.y66_c01074{bottom:187.520000pt;}
.y67_c01074{bottom:188.160000pt;}
.y65_c01074{bottom:189.440000pt;}
.y63_c01074{bottom:190.720000pt;}
.y64_c01074{bottom:191.360000pt;}
.y5c_c01074{bottom:225.280000pt;}
.y5d_c01074{bottom:225.920000pt;}
.y59_c01074{bottom:228.480000pt;}
.y5b_c01074{bottom:229.120000pt;}
.y5a_c01074{bottom:229.760000pt;}
.y56_c01074{bottom:254.720000pt;}
.y58_c01074{bottom:255.360000pt;}
.y55_c01074{bottom:256.000000pt;}
.y53_c01074{bottom:256.640000pt;}
.y57_c01074{bottom:257.280000pt;}
.y54_c01074{bottom:257.920000pt;}
.y52_c01074{bottom:291.840000pt;}
.y4f_c01074{bottom:292.480000pt;}
.y51_c01074{bottom:295.040000pt;}
.y50_c01074{bottom:295.680000pt;}
.y4d_c01074{bottom:321.280000pt;}
.y4c_c01074{bottom:321.920000pt;}
.y62_c01074{bottom:322.560000pt;}
.y4a_c01074{bottom:323.200000pt;}
.y4e_c01074{bottom:323.840000pt;}
.y4b_c01074{bottom:324.480000pt;}
.y47_c01074{bottom:359.040000pt;}
.y49_c01074{bottom:361.600000pt;}
.y48_c01074{bottom:362.240000pt;}
.y44_c01074{bottom:388.480000pt;}
.y42_c01074{bottom:389.120000pt;}
.y46_c01074{bottom:389.760000pt;}
.y45_c01074{bottom:390.400000pt;}
.y43_c01074{bottom:391.040000pt;}
.y41_c01074{bottom:426.240000pt;}
.y40_c01074{bottom:453.760000pt;}
.y3e_c01074{bottom:455.680000pt;}
.y61_c01074{bottom:456.320000pt;}
.y3f_c01074{bottom:456.960000pt;}
.y3d_c01074{bottom:492.160000pt;}
.y3c_c01074{bottom:494.080000pt;}
.y36_c01074{bottom:520.960000pt;}
.y37_c01074{bottom:521.600000pt;}
.y35_c01074{bottom:522.240000pt;}
.y60_c01074{bottom:522.880000pt;}
.y3b_c01074{bottom:523.520000pt;}
.y39_c01074{bottom:524.160000pt;}
.y38_c01074{bottom:524.800000pt;}
.y3a_c01074{bottom:525.440000pt;}
.y33_c01074{bottom:560.000000pt;}
.y34_c01074{bottom:562.560000pt;}
.y2f_c01074{bottom:587.520000pt;}
.y2e_c01074{bottom:588.800000pt;}
.y31_c01074{bottom:590.080000pt;}
.y32_c01074{bottom:590.720000pt;}
.y30_c01074{bottom:591.360000pt;}
.y2c_c01074{bottom:625.920000pt;}
.y2b_c01074{bottom:627.200000pt;}
.y5f_c01074{bottom:627.840000pt;}
.y2d_c01074{bottom:628.480000pt;}
.y5e_c01074{bottom:630.400000pt;}
.y2a_c01074{bottom:664.320000pt;}
.y25_c01074{bottom:692.480000pt;}
.y24_c01074{bottom:694.400000pt;}
.y28_c01074{bottom:695.040000pt;}
.y27_c01074{bottom:695.680000pt;}
.y29_c01074{bottom:696.320000pt;}
.y26_c01074{bottom:696.960000pt;}
.y20_c01074{bottom:730.880000pt;}
.y1f_c01074{bottom:732.160000pt;}
.y21_c01074{bottom:734.080000pt;}
.y23_c01074{bottom:734.720000pt;}
.y22_c01074{bottom:736.000000pt;}
.y1c_c01074{bottom:768.640000pt;}
.y1b_c01074{bottom:769.920000pt;}
.y1e_c01074{bottom:772.480000pt;}
.y1d_c01074{bottom:773.760000pt;}
.y15_c01074{bottom:807.040000pt;}
.y14_c01074{bottom:807.680000pt;}
.y18_c01074{bottom:808.320000pt;}
.y17_c01074{bottom:808.960000pt;}
.y19_c01074{bottom:810.240000pt;}
.y16_c01074{bottom:810.880000pt;}
.y1a_c01074{bottom:812.800000pt;}
.y11_c01074{bottom:844.800000pt;}
.y10_c01074{bottom:846.080000pt;}
.y12_c01074{bottom:848.000000pt;}
.y13_c01074{bottom:850.560000pt;}
.yb_c01074{bottom:882.560000pt;}
.ya_c01074{bottom:883.840000pt;}
.yd_c01074{bottom:884.480000pt;}
.ye_c01074{bottom:886.400000pt;}
.yc_c01074{bottom:887.040000pt;}
.yf_c01074{bottom:888.960000pt;}
.y3_c01074{bottom:920.320000pt;}
.y2_c01074{bottom:921.600000pt;}
.y8_c01074{bottom:922.880000pt;}
.y6_c01074{bottom:923.520000pt;}
.y4_c01074{bottom:924.160000pt;}
.y5_c01074{bottom:924.800000pt;}
.y7_c01074{bottom:925.440000pt;}
.y9_c01074{bottom:926.720000pt;}
.y1_c01074{bottom:992.640000pt;}
.hd_c01074{height:29.948750pt;}
.h13_c01074{height:34.556250pt;}
.h12_c01074{height:36.860000pt;}
.hf_c01074{height:39.163750pt;}
.h5_c01074{height:41.467500pt;}
.h8_c01074{height:43.771250pt;}
.h7_c01074{height:46.075000pt;}
.h11_c01074{height:46.331250pt;}
.h9_c01074{height:48.378750pt;}
.he_c01074{height:48.635000pt;}
.h6_c01074{height:50.682500pt;}
.h14_c01074{height:51.195000pt;}
.hb_c01074{height:52.986250pt;}
.hc_c01074{height:53.755000pt;}
.h3_c01074{height:55.290000pt;}
.ha_c01074{height:57.593750pt;}
.h4_c01074{height:59.897500pt;}
.h2_c01074{height:62.201250pt;}
.h10_c01074{height:64.505000pt;}
.h0_c01074{height:1029.760000pt;}
.h1_c01074{height:1030.000000pt;}
.w1_c01074{width:716.666667pt;}
.w0_c01074{width:716.800000pt;}
.x0_c01074{left:0.000000pt;}
.x2_c01074{left:82.560000pt;}
.x28_c01074{left:140.800000pt;}
.x3_c01074{left:147.840000pt;}
.x1e_c01074{left:149.120000pt;}
.x1f_c01074{left:187.520000pt;}
.x33_c01074{left:197.120000pt;}
.x4_c01074{left:224.000000pt;}
.x25_c01074{left:225.280000pt;}
.x20_c01074{left:234.880000pt;}
.x11_c01074{left:254.720000pt;}
.x5_c01074{left:263.040000pt;}
.x21_c01074{left:272.640000pt;}
.x22_c01074{left:273.920000pt;}
.x31_c01074{left:282.880000pt;}
.x12_c01074{left:292.480000pt;}
.x1a_c01074{left:302.080000pt;}
.xf_c01074{left:311.040000pt;}
.x6_c01074{left:312.320000pt;}
.x26_c01074{left:321.280000pt;}
.x2a_c01074{left:322.560000pt;}
.x13_c01074{left:331.520000pt;}
.x1b_c01074{left:340.480000pt;}
.x23_c01074{left:349.440000pt;}
.x2c_c01074{left:360.320000pt;}
.x14_c01074{left:362.240000pt;}
.x1c_c01074{left:388.480000pt;}
.x2d_c01074{left:398.080000pt;}
.x17_c01074{left:407.040000pt;}
.x15_c01074{left:410.240000pt;}
.x7_c01074{left:426.880000pt;}
.x2b_c01074{left:436.480000pt;}
.x24_c01074{left:437.760000pt;}
.x18_c01074{left:446.720000pt;}
.x27_c01074{left:455.680000pt;}
.x8_c01074{left:460.800000pt;}
.x29_c01074{left:474.880000pt;}
.x34_c01074{left:495.360000pt;}
.x32_c01074{left:504.320000pt;}
.x1d_c01074{left:505.600000pt;}
.x19_c01074{left:513.920000pt;}
.x9_c01074{left:515.200000pt;}
.xa_c01074{left:534.400000pt;}
.x30_c01074{left:552.960000pt;}
.x10_c01074{left:581.760000pt;}
.xb_c01074{left:583.040000pt;}
.x1_c01074{left:606.080000pt;}
.x2f_c01074{left:611.200000pt;}
.xc_c01074{left:612.480000pt;}
.x16_c01074{left:641.920000pt;}
.x2e_c01074{left:649.600000pt;}
.xd_c01074{left:650.880000pt;}
.xe_c01074{left:668.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3f651ebbb09b35250c3808f7.woff2')format("woff");}.ff1_c01075{font-family:ff1_c01075;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m30_c01075{transform:matrix(0.133925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133925,0.000000,0.000000,0.250000,0,0);}
.m29_c01075{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m1a_c01075{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m21_c01075{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m2_c01075{transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);}
.m1e_c01075{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m2b_c01075{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01075{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);}
.m32_c01075{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);}
.m3c_c01075{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_c01075{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m5_c01075{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);}
.m53_c01075{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);}
.m41_c01075{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m34_c01075{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m7_c01075{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);}
.m52_c01075{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m4_c01075{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01075{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m31_c01075{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m27_c01075{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m35_c01075{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m6_c01075{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m38_c01075{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m16_c01075{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.md_c01075{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m51_c01075{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01075{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.me_c01075{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m12_c01075{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01075{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m18_c01075{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01075{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mb_c01075{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);}
.m3e_c01075{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01075{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mc_c01075{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);}
.m47_c01075{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);}
.m39_c01075{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m0_c01075{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);}
.m44_c01075{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01075{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);}
.m37_c01075{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m33_c01075{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m17_c01075{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.mf_c01075{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);}
.m2a_c01075{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1_c01075{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m36_c01075{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m22_c01075{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);}
.m46_c01075{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);}
.m3a_c01075{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m13_c01075{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);}
.m28_c01075{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);}
.m40_c01075{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01075{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);}
.m3b_c01075{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_c01075{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m11_c01075{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);}
.m43_c01075{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m23_c01075{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m19_c01075{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_c01075{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m15_c01075{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m25_c01075{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01075{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);}
.m2f_c01075{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m20_c01075{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);}
.m4d_c01075{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m3_c01075{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);}
.m2c_c01075{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01075{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m50_c01075{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);}
.m24_c01075{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m4e_c01075{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m42_c01075{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m45_c01075{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01075{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01075{transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);}
.m14_c01075{transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);}
.m49_c01075{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m48_c01075{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01075{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01075{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.v3_c01075{vertical-align:-11.520000px;}
.v1_c01075{vertical-align:-5.760000px;}
.v0_c01075{vertical-align:0.000000px;}
.v2_c01075{vertical-align:11.520000px;}
.ls2_c01075{letter-spacing:0.000000px;}
.ls1_c01075{letter-spacing:87.974400px;}
.ls0_c01075{letter-spacing:159.049680px;}
.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;}
}
.ws3_c01075{word-spacing:0.000000px;}
.ws0_c01075{word-spacing:3.304567px;}
.ws1_c01075{word-spacing:8.706000px;}
.ws2_c01075{word-spacing:10.749600px;}
.fc0_c01075{color:transparent;}
.fsd_c01075{font-size:14.400000px;}
.fsc_c01075{font-size:17.280000px;}
.fs11_c01075{font-size:20.160000px;}
.fsb_c01075{font-size:23.040000px;}
.fs16_c01075{font-size:34.560000px;}
.fs3_c01075{font-size:37.440000px;}
.fs15_c01075{font-size:40.320000px;}
.fs9_c01075{font-size:43.200000px;}
.fs7_c01075{font-size:46.080000px;}
.fs8_c01075{font-size:48.960000px;}
.fsa_c01075{font-size:51.840000px;}
.fs6_c01075{font-size:54.720000px;}
.fs5_c01075{font-size:57.600000px;}
.fs1_c01075{font-size:60.480000px;}
.fse_c01075{font-size:63.360000px;}
.fs4_c01075{font-size:66.240000px;}
.fs10_c01075{font-size:69.120000px;}
.fs14_c01075{font-size:72.000000px;}
.fs2_c01075{font-size:74.880000px;}
.fs0_c01075{font-size:77.760000px;}
.fsf_c01075{font-size:80.640000px;}
.fs12_c01075{font-size:83.520000px;}
.fs13_c01075{font-size:100.800000px;}
.y0_c01075{bottom:0.000000px;}
.y93_c01075{bottom:79.920000px;}
.y8c_c01075{bottom:80.640000px;}
.y92_c01075{bottom:82.080000px;}
.y8b_c01075{bottom:84.960000px;}
.y91_c01075{bottom:123.120000px;}
.y8a_c01075{bottom:123.840000px;}
.y90_c01075{bottom:126.000000px;}
.y89_c01075{bottom:127.440000px;}
.y8f_c01075{bottom:165.600000px;}
.y8e_c01075{bottom:166.320000px;}
.y88_c01075{bottom:167.040000px;}
.y8d_c01075{bottom:169.200000px;}
.y87_c01075{bottom:170.640000px;}
.y85_c01075{bottom:201.600000px;}
.y84_c01075{bottom:208.080000px;}
.y86_c01075{bottom:209.520000px;}
.y81_c01075{bottom:210.240000px;}
.y83_c01075{bottom:211.680000px;}
.y80_c01075{bottom:212.400000px;}
.y82_c01075{bottom:213.120000px;}
.y7f_c01075{bottom:251.280000px;}
.y7c_c01075{bottom:252.000000px;}
.y7b_c01075{bottom:252.720000px;}
.y7d_c01075{bottom:253.440000px;}
.y7e_c01075{bottom:254.160000px;}
.y7a_c01075{bottom:255.600000px;}
.y77_c01075{bottom:295.200000px;}
.y78_c01075{bottom:295.920000px;}
.y79_c01075{bottom:296.640000px;}
.y74_c01075{bottom:298.080000px;}
.y76_c01075{bottom:298.800000px;}
.y75_c01075{bottom:299.520000px;}
.y72_c01075{bottom:338.400000px;}
.y73_c01075{bottom:339.120000px;}
.y70_c01075{bottom:341.280000px;}
.y71_c01075{bottom:342.000000px;}
.y6d_c01075{bottom:381.600000px;}
.y6e_c01075{bottom:382.320000px;}
.y6f_c01075{bottom:383.040000px;}
.y6b_c01075{bottom:384.480000px;}
.y6c_c01075{bottom:385.920000px;}
.y66_c01075{bottom:424.080000px;}
.y68_c01075{bottom:424.800000px;}
.y67_c01075{bottom:425.520000px;}
.y6a_c01075{bottom:426.240000px;}
.y69_c01075{bottom:426.960000px;}
.y64_c01075{bottom:427.680000px;}
.y65_c01075{bottom:428.400000px;}
.y5e_c01075{bottom:467.280000px;}
.y61_c01075{bottom:468.000000px;}
.y62_c01075{bottom:468.720000px;}
.y63_c01075{bottom:469.440000px;}
.y5c_c01075{bottom:470.160000px;}
.y5f_c01075{bottom:470.880000px;}
.y60_c01075{bottom:471.600000px;}
.y5d_c01075{bottom:472.320000px;}
.y58_c01075{bottom:510.480000px;}
.y5b_c01075{bottom:511.200000px;}
.y59_c01075{bottom:511.920000px;}
.y56_c01075{bottom:512.640000px;}
.y5a_c01075{bottom:514.080000px;}
.y57_c01075{bottom:514.800000px;}
.y54_c01075{bottom:553.680000px;}
.y55_c01075{bottom:555.120000px;}
.y51_c01075{bottom:555.840000px;}
.y53_c01075{bottom:556.560000px;}
.y52_c01075{bottom:557.280000px;}
.y4c_c01075{bottom:595.440000px;}
.y50_c01075{bottom:597.600000px;}
.y49_c01075{bottom:598.320000px;}
.y4b_c01075{bottom:599.040000px;}
.y4a_c01075{bottom:600.480000px;}
.y48_c01075{bottom:638.640000px;}
.y46_c01075{bottom:640.800000px;}
.y4d_c01075{bottom:641.520000px;}
.y4f_c01075{bottom:642.240000px;}
.y47_c01075{bottom:642.960000px;}
.y4e_c01075{bottom:643.680000px;}
.y44_c01075{bottom:682.560000px;}
.y45_c01075{bottom:684.000000px;}
.y3d_c01075{bottom:746.640000px;}
.y40_c01075{bottom:747.360000px;}
.y3f_c01075{bottom:748.080000px;}
.y41_c01075{bottom:748.800000px;}
.y3e_c01075{bottom:750.240000px;}
.y43_c01075{bottom:750.960000px;}
.y42_c01075{bottom:751.680000px;}
.y38_c01075{bottom:768.240000px;}
.y3a_c01075{bottom:768.960000px;}
.y3c_c01075{bottom:769.680000px;}
.y39_c01075{bottom:770.400000px;}
.y3b_c01075{bottom:771.840000px;}
.y32_c01075{bottom:789.840000px;}
.y34_c01075{bottom:790.560000px;}
.y35_c01075{bottom:791.280000px;}
.y36_c01075{bottom:792.000000px;}
.y33_c01075{bottom:792.720000px;}
.y37_c01075{bottom:794.160000px;}
.y2d_c01075{bottom:811.440000px;}
.y2e_c01075{bottom:812.160000px;}
.y30_c01075{bottom:812.880000px;}
.y2b_c01075{bottom:813.600000px;}
.y2c_c01075{bottom:814.320000px;}
.y2f_c01075{bottom:815.040000px;}
.y31_c01075{bottom:816.480000px;}
.y26_c01075{bottom:840.240000px;}
.y27_c01075{bottom:840.960000px;}
.y29_c01075{bottom:841.680000px;}
.y25_c01075{bottom:845.280000px;}
.y28_c01075{bottom:846.720000px;}
.y2a_c01075{bottom:847.440000px;}
.y23_c01075{bottom:889.200000px;}
.y24_c01075{bottom:890.640000px;}
.y21_c01075{bottom:908.640000px;}
.y20_c01075{bottom:911.520000px;}
.y22_c01075{bottom:912.240000px;}
.y18_c01075{bottom:928.080000px;}
.y1c_c01075{bottom:929.520000px;}
.y1b_c01075{bottom:930.240000px;}
.y19_c01075{bottom:930.960000px;}
.y1f_c01075{bottom:931.680000px;}
.y1d_c01075{bottom:932.400000px;}
.y1e_c01075{bottom:933.840000px;}
.y1a_c01075{bottom:934.560000px;}
.y14_c01075{bottom:953.280000px;}
.y13_c01075{bottom:954.000000px;}
.y15_c01075{bottom:955.440000px;}
.y16_c01075{bottom:956.160000px;}
.y17_c01075{bottom:958.320000px;}
.ye_c01075{bottom:984.960000px;}
.y12_c01075{bottom:985.680000px;}
.yf_c01075{bottom:987.840000px;}
.y10_c01075{bottom:988.560000px;}
.y11_c01075{bottom:990.720000px;}
.yc_c01075{bottom:994.320000px;}
.yd_c01075{bottom:995.040000px;}
.yb_c01075{bottom:995.760000px;}
.y8_c01075{bottom:1008.000000px;}
.y9_c01075{bottom:1008.720000px;}
.ya_c01075{bottom:1009.440000px;}
.y3_c01075{bottom:1046.160000px;}
.y5_c01075{bottom:1047.600000px;}
.y2_c01075{bottom:1048.320000px;}
.y4_c01075{bottom:1050.480000px;}
.y6_c01075{bottom:1051.200000px;}
.y7_c01075{bottom:1054.080000px;}
.y1_c01075{bottom:1119.600000px;}
.hf_c01075{height:12.958594px;}
.he_c01075{height:15.550313px;}
.h13_c01075{height:18.142031px;}
.hd_c01075{height:20.733750px;}
.h1a_c01075{height:31.100625px;}
.h5_c01075{height:33.692344px;}
.h19_c01075{height:36.284062px;}
.hb_c01075{height:38.875781px;}
.h9_c01075{height:41.467500px;}
.ha_c01075{height:44.059219px;}
.hc_c01075{height:46.650937px;}
.h8_c01075{height:49.242656px;}
.h10_c01075{height:51.257812px;}
.h7_c01075{height:51.834375px;}
.h3_c01075{height:54.426094px;}
.h16_c01075{height:57.017812px;}
.h18_c01075{height:58.170937px;}
.h6_c01075{height:59.609531px;}
.h12_c01075{height:62.201250px;}
.h17_c01075{height:64.792969px;}
.h4_c01075{height:67.384687px;}
.h2_c01075{height:69.976406px;}
.h11_c01075{height:72.568125px;}
.h14_c01075{height:75.159844px;}
.h15_c01075{height:90.710156px;}
.h0_c01075{height:1160.640000px;}
.h1_c01075{height:1161.000000px;}
.w1_c01075{width:808.500000px;}
.w0_c01075{width:808.560000px;}
.x0_c01075{left:0.000000px;}
.x25_c01075{left:93.600000px;}
.x2_c01075{left:95.040000px;}
.x39_c01075{left:104.400000px;}
.x2d_c01075{left:105.840000px;}
.x1d_c01075{left:126.000000px;}
.xf_c01075{left:127.440000px;}
.x36_c01075{left:138.240000px;}
.x2e_c01075{left:149.040000px;}
.x1e_c01075{left:168.480000px;}
.x3_c01075{left:170.640000px;}
.x10_c01075{left:179.280000px;}
.x2f_c01075{left:180.720000px;}
.x1f_c01075{left:190.800000px;}
.x26_c01075{left:202.320000px;}
.x11_c01075{left:211.680000px;}
.x42_c01075{left:213.120000px;}
.x20_c01075{left:222.480000px;}
.x27_c01075{left:244.800000px;}
.x3a_c01075{left:246.240000px;}
.x3d_c01075{left:254.880000px;}
.x49_c01075{left:265.680000px;}
.x4_c01075{left:267.120000px;}
.xb_c01075{left:277.920000px;}
.x21_c01075{left:288.000000px;}
.x5_c01075{left:308.880000px;}
.x40_c01075{left:310.320000px;}
.x28_c01075{left:319.680000px;}
.x37_c01075{left:321.840000px;}
.xc_c01075{left:331.200000px;}
.x12_c01075{left:332.640000px;}
.x29_c01075{left:352.800000px;}
.x44_c01075{left:364.320000px;}
.x38_c01075{left:374.400000px;}
.x30_c01075{left:375.840000px;}
.xd_c01075{left:386.640000px;}
.x13_c01075{left:397.440000px;}
.x31_c01075{left:408.240000px;}
.x17_c01075{left:418.320000px;}
.x22_c01075{left:427.680000px;}
.x23_c01075{left:429.120000px;}
.x43_c01075{left:439.920000px;}
.xe_c01075{left:451.440000px;}
.x45_c01075{left:460.080000px;}
.x18_c01075{left:462.240000px;}
.x2a_c01075{left:471.600000px;}
.x32_c01075{left:473.040000px;}
.x48_c01075{left:483.120000px;}
.x14_c01075{left:493.200000px;}
.x4a_c01075{left:494.640000px;}
.x46_c01075{left:503.280000px;}
.x19_c01075{left:505.440000px;}
.x15_c01075{left:515.520000px;}
.x1a_c01075{left:527.040000px;}
.x24_c01075{left:537.120000px;}
.x4b_c01075{left:542.160000px;}
.x16_c01075{left:547.920000px;}
.x33_c01075{left:549.360000px;}
.x47_c01075{left:569.520000px;}
.x6_c01075{left:570.960000px;}
.x2b_c01075{left:580.320000px;}
.x4c_c01075{left:582.480000px;}
.x3b_c01075{left:602.640000px;}
.x34_c01075{left:604.080000px;}
.x1b_c01075{left:613.440000px;}
.x41_c01075{left:624.240000px;}
.x2c_c01075{left:625.680000px;}
.x3f_c01075{left:635.760000px;}
.x35_c01075{left:637.200000px;}
.x1c_c01075{left:656.640000px;}
.x7_c01075{left:658.800000px;}
.x1_c01075{left:681.120000px;}
.x3c_c01075{left:691.200000px;}
.x8_c01075{left:701.280000px;}
.x3e_c01075{left:732.960000px;}
.x9_c01075{left:734.400000px;}
.xa_c01075{left:754.560000px;}
@media print{
.v3_c01075{vertical-align:-10.240000pt;}
.v1_c01075{vertical-align:-5.120000pt;}
.v0_c01075{vertical-align:0.000000pt;}
.v2_c01075{vertical-align:10.240000pt;}
.ls2_c01075{letter-spacing:0.000000pt;}
.ls1_c01075{letter-spacing:78.199467pt;}
.ls0_c01075{letter-spacing:141.377493pt;}
.ws3_c01075{word-spacing:0.000000pt;}
.ws0_c01075{word-spacing:2.937393pt;}
.ws1_c01075{word-spacing:7.738667pt;}
.ws2_c01075{word-spacing:9.555200pt;}
.fsd_c01075{font-size:12.800000pt;}
.fsc_c01075{font-size:15.360000pt;}
.fs11_c01075{font-size:17.920000pt;}
.fsb_c01075{font-size:20.480000pt;}
.fs16_c01075{font-size:30.720000pt;}
.fs3_c01075{font-size:33.280000pt;}
.fs15_c01075{font-size:35.840000pt;}
.fs9_c01075{font-size:38.400000pt;}
.fs7_c01075{font-size:40.960000pt;}
.fs8_c01075{font-size:43.520000pt;}
.fsa_c01075{font-size:46.080000pt;}
.fs6_c01075{font-size:48.640000pt;}
.fs5_c01075{font-size:51.200000pt;}
.fs1_c01075{font-size:53.760000pt;}
.fse_c01075{font-size:56.320000pt;}
.fs4_c01075{font-size:58.880000pt;}
.fs10_c01075{font-size:61.440000pt;}
.fs14_c01075{font-size:64.000000pt;}
.fs2_c01075{font-size:66.560000pt;}
.fs0_c01075{font-size:69.120000pt;}
.fsf_c01075{font-size:71.680000pt;}
.fs12_c01075{font-size:74.240000pt;}
.fs13_c01075{font-size:89.600000pt;}
.y0_c01075{bottom:0.000000pt;}
.y93_c01075{bottom:71.040000pt;}
.y8c_c01075{bottom:71.680000pt;}
.y92_c01075{bottom:72.960000pt;}
.y8b_c01075{bottom:75.520000pt;}
.y91_c01075{bottom:109.440000pt;}
.y8a_c01075{bottom:110.080000pt;}
.y90_c01075{bottom:112.000000pt;}
.y89_c01075{bottom:113.280000pt;}
.y8f_c01075{bottom:147.200000pt;}
.y8e_c01075{bottom:147.840000pt;}
.y88_c01075{bottom:148.480000pt;}
.y8d_c01075{bottom:150.400000pt;}
.y87_c01075{bottom:151.680000pt;}
.y85_c01075{bottom:179.200000pt;}
.y84_c01075{bottom:184.960000pt;}
.y86_c01075{bottom:186.240000pt;}
.y81_c01075{bottom:186.880000pt;}
.y83_c01075{bottom:188.160000pt;}
.y80_c01075{bottom:188.800000pt;}
.y82_c01075{bottom:189.440000pt;}
.y7f_c01075{bottom:223.360000pt;}
.y7c_c01075{bottom:224.000000pt;}
.y7b_c01075{bottom:224.640000pt;}
.y7d_c01075{bottom:225.280000pt;}
.y7e_c01075{bottom:225.920000pt;}
.y7a_c01075{bottom:227.200000pt;}
.y77_c01075{bottom:262.400000pt;}
.y78_c01075{bottom:263.040000pt;}
.y79_c01075{bottom:263.680000pt;}
.y74_c01075{bottom:264.960000pt;}
.y76_c01075{bottom:265.600000pt;}
.y75_c01075{bottom:266.240000pt;}
.y72_c01075{bottom:300.800000pt;}
.y73_c01075{bottom:301.440000pt;}
.y70_c01075{bottom:303.360000pt;}
.y71_c01075{bottom:304.000000pt;}
.y6d_c01075{bottom:339.200000pt;}
.y6e_c01075{bottom:339.840000pt;}
.y6f_c01075{bottom:340.480000pt;}
.y6b_c01075{bottom:341.760000pt;}
.y6c_c01075{bottom:343.040000pt;}
.y66_c01075{bottom:376.960000pt;}
.y68_c01075{bottom:377.600000pt;}
.y67_c01075{bottom:378.240000pt;}
.y6a_c01075{bottom:378.880000pt;}
.y69_c01075{bottom:379.520000pt;}
.y64_c01075{bottom:380.160000pt;}
.y65_c01075{bottom:380.800000pt;}
.y5e_c01075{bottom:415.360000pt;}
.y61_c01075{bottom:416.000000pt;}
.y62_c01075{bottom:416.640000pt;}
.y63_c01075{bottom:417.280000pt;}
.y5c_c01075{bottom:417.920000pt;}
.y5f_c01075{bottom:418.560000pt;}
.y60_c01075{bottom:419.200000pt;}
.y5d_c01075{bottom:419.840000pt;}
.y58_c01075{bottom:453.760000pt;}
.y5b_c01075{bottom:454.400000pt;}
.y59_c01075{bottom:455.040000pt;}
.y56_c01075{bottom:455.680000pt;}
.y5a_c01075{bottom:456.960000pt;}
.y57_c01075{bottom:457.600000pt;}
.y54_c01075{bottom:492.160000pt;}
.y55_c01075{bottom:493.440000pt;}
.y51_c01075{bottom:494.080000pt;}
.y53_c01075{bottom:494.720000pt;}
.y52_c01075{bottom:495.360000pt;}
.y4c_c01075{bottom:529.280000pt;}
.y50_c01075{bottom:531.200000pt;}
.y49_c01075{bottom:531.840000pt;}
.y4b_c01075{bottom:532.480000pt;}
.y4a_c01075{bottom:533.760000pt;}
.y48_c01075{bottom:567.680000pt;}
.y46_c01075{bottom:569.600000pt;}
.y4d_c01075{bottom:570.240000pt;}
.y4f_c01075{bottom:570.880000pt;}
.y47_c01075{bottom:571.520000pt;}
.y4e_c01075{bottom:572.160000pt;}
.y44_c01075{bottom:606.720000pt;}
.y45_c01075{bottom:608.000000pt;}
.y3d_c01075{bottom:663.680000pt;}
.y40_c01075{bottom:664.320000pt;}
.y3f_c01075{bottom:664.960000pt;}
.y41_c01075{bottom:665.600000pt;}
.y3e_c01075{bottom:666.880000pt;}
.y43_c01075{bottom:667.520000pt;}
.y42_c01075{bottom:668.160000pt;}
.y38_c01075{bottom:682.880000pt;}
.y3a_c01075{bottom:683.520000pt;}
.y3c_c01075{bottom:684.160000pt;}
.y39_c01075{bottom:684.800000pt;}
.y3b_c01075{bottom:686.080000pt;}
.y32_c01075{bottom:702.080000pt;}
.y34_c01075{bottom:702.720000pt;}
.y35_c01075{bottom:703.360000pt;}
.y36_c01075{bottom:704.000000pt;}
.y33_c01075{bottom:704.640000pt;}
.y37_c01075{bottom:705.920000pt;}
.y2d_c01075{bottom:721.280000pt;}
.y2e_c01075{bottom:721.920000pt;}
.y30_c01075{bottom:722.560000pt;}
.y2b_c01075{bottom:723.200000pt;}
.y2c_c01075{bottom:723.840000pt;}
.y2f_c01075{bottom:724.480000pt;}
.y31_c01075{bottom:725.760000pt;}
.y26_c01075{bottom:746.880000pt;}
.y27_c01075{bottom:747.520000pt;}
.y29_c01075{bottom:748.160000pt;}
.y25_c01075{bottom:751.360000pt;}
.y28_c01075{bottom:752.640000pt;}
.y2a_c01075{bottom:753.280000pt;}
.y23_c01075{bottom:790.400000pt;}
.y24_c01075{bottom:791.680000pt;}
.y21_c01075{bottom:807.680000pt;}
.y20_c01075{bottom:810.240000pt;}
.y22_c01075{bottom:810.880000pt;}
.y18_c01075{bottom:824.960000pt;}
.y1c_c01075{bottom:826.240000pt;}
.y1b_c01075{bottom:826.880000pt;}
.y19_c01075{bottom:827.520000pt;}
.y1f_c01075{bottom:828.160000pt;}
.y1d_c01075{bottom:828.800000pt;}
.y1e_c01075{bottom:830.080000pt;}
.y1a_c01075{bottom:830.720000pt;}
.y14_c01075{bottom:847.360000pt;}
.y13_c01075{bottom:848.000000pt;}
.y15_c01075{bottom:849.280000pt;}
.y16_c01075{bottom:849.920000pt;}
.y17_c01075{bottom:851.840000pt;}
.ye_c01075{bottom:875.520000pt;}
.y12_c01075{bottom:876.160000pt;}
.yf_c01075{bottom:878.080000pt;}
.y10_c01075{bottom:878.720000pt;}
.y11_c01075{bottom:880.640000pt;}
.yc_c01075{bottom:883.840000pt;}
.yd_c01075{bottom:884.480000pt;}
.yb_c01075{bottom:885.120000pt;}
.y8_c01075{bottom:896.000000pt;}
.y9_c01075{bottom:896.640000pt;}
.ya_c01075{bottom:897.280000pt;}
.y3_c01075{bottom:929.920000pt;}
.y5_c01075{bottom:931.200000pt;}
.y2_c01075{bottom:931.840000pt;}
.y4_c01075{bottom:933.760000pt;}
.y6_c01075{bottom:934.400000pt;}
.y7_c01075{bottom:936.960000pt;}
.y1_c01075{bottom:995.200000pt;}
.hf_c01075{height:11.518750pt;}
.he_c01075{height:13.822500pt;}
.h13_c01075{height:16.126250pt;}
.hd_c01075{height:18.430000pt;}
.h1a_c01075{height:27.645000pt;}
.h5_c01075{height:29.948750pt;}
.h19_c01075{height:32.252500pt;}
.hb_c01075{height:34.556250pt;}
.h9_c01075{height:36.860000pt;}
.ha_c01075{height:39.163750pt;}
.hc_c01075{height:41.467500pt;}
.h8_c01075{height:43.771250pt;}
.h10_c01075{height:45.562500pt;}
.h7_c01075{height:46.075000pt;}
.h3_c01075{height:48.378750pt;}
.h16_c01075{height:50.682500pt;}
.h18_c01075{height:51.707500pt;}
.h6_c01075{height:52.986250pt;}
.h12_c01075{height:55.290000pt;}
.h17_c01075{height:57.593750pt;}
.h4_c01075{height:59.897500pt;}
.h2_c01075{height:62.201250pt;}
.h11_c01075{height:64.505000pt;}
.h14_c01075{height:66.808750pt;}
.h15_c01075{height:80.631250pt;}
.h0_c01075{height:1031.680000pt;}
.h1_c01075{height:1032.000000pt;}
.w1_c01075{width:718.666667pt;}
.w0_c01075{width:718.720000pt;}
.x0_c01075{left:0.000000pt;}
.x25_c01075{left:83.200000pt;}
.x2_c01075{left:84.480000pt;}
.x39_c01075{left:92.800000pt;}
.x2d_c01075{left:94.080000pt;}
.x1d_c01075{left:112.000000pt;}
.xf_c01075{left:113.280000pt;}
.x36_c01075{left:122.880000pt;}
.x2e_c01075{left:132.480000pt;}
.x1e_c01075{left:149.760000pt;}
.x3_c01075{left:151.680000pt;}
.x10_c01075{left:159.360000pt;}
.x2f_c01075{left:160.640000pt;}
.x1f_c01075{left:169.600000pt;}
.x26_c01075{left:179.840000pt;}
.x11_c01075{left:188.160000pt;}
.x42_c01075{left:189.440000pt;}
.x20_c01075{left:197.760000pt;}
.x27_c01075{left:217.600000pt;}
.x3a_c01075{left:218.880000pt;}
.x3d_c01075{left:226.560000pt;}
.x49_c01075{left:236.160000pt;}
.x4_c01075{left:237.440000pt;}
.xb_c01075{left:247.040000pt;}
.x21_c01075{left:256.000000pt;}
.x5_c01075{left:274.560000pt;}
.x40_c01075{left:275.840000pt;}
.x28_c01075{left:284.160000pt;}
.x37_c01075{left:286.080000pt;}
.xc_c01075{left:294.400000pt;}
.x12_c01075{left:295.680000pt;}
.x29_c01075{left:313.600000pt;}
.x44_c01075{left:323.840000pt;}
.x38_c01075{left:332.800000pt;}
.x30_c01075{left:334.080000pt;}
.xd_c01075{left:343.680000pt;}
.x13_c01075{left:353.280000pt;}
.x31_c01075{left:362.880000pt;}
.x17_c01075{left:371.840000pt;}
.x22_c01075{left:380.160000pt;}
.x23_c01075{left:381.440000pt;}
.x43_c01075{left:391.040000pt;}
.xe_c01075{left:401.280000pt;}
.x45_c01075{left:408.960000pt;}
.x18_c01075{left:410.880000pt;}
.x2a_c01075{left:419.200000pt;}
.x32_c01075{left:420.480000pt;}
.x48_c01075{left:429.440000pt;}
.x14_c01075{left:438.400000pt;}
.x4a_c01075{left:439.680000pt;}
.x46_c01075{left:447.360000pt;}
.x19_c01075{left:449.280000pt;}
.x15_c01075{left:458.240000pt;}
.x1a_c01075{left:468.480000pt;}
.x24_c01075{left:477.440000pt;}
.x4b_c01075{left:481.920000pt;}
.x16_c01075{left:487.040000pt;}
.x33_c01075{left:488.320000pt;}
.x47_c01075{left:506.240000pt;}
.x6_c01075{left:507.520000pt;}
.x2b_c01075{left:515.840000pt;}
.x4c_c01075{left:517.760000pt;}
.x3b_c01075{left:535.680000pt;}
.x34_c01075{left:536.960000pt;}
.x1b_c01075{left:545.280000pt;}
.x41_c01075{left:554.880000pt;}
.x2c_c01075{left:556.160000pt;}
.x3f_c01075{left:565.120000pt;}
.x35_c01075{left:566.400000pt;}
.x1c_c01075{left:583.680000pt;}
.x7_c01075{left:585.600000pt;}
.x1_c01075{left:605.440000pt;}
.x3c_c01075{left:614.400000pt;}
.x8_c01075{left:623.360000pt;}
.x3e_c01075{left:651.520000pt;}
.x9_c01075{left:652.800000pt;}
.xa_c01075{left:670.720000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_70f77889b054b231a614e56b.woff2')format("woff");}.ff1_c01076{font-family:ff1_c01076;line-height:1.109863;font-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_c01076{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);}
.m8_c01076{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.mf_c01076{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m2b_c01076{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01076{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m15_c01076{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);}
.m21_c01076{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);}
.m29_c01076{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_c01076{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m9_c01076{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);}
.m20_c01076{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_c01076{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m5_c01076{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.md_c01076{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.ma_c01076{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m17_c01076{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1_c01076{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01076{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m7_c01076{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m10_c01076{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m12_c01076{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m22_c01076{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m14_c01076{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m23_c01076{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m11_c01076{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01076{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01076{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m6_c01076{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01076{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01076{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m4_c01076{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);}
.m2a_c01076{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);}
.m30_c01076{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m0_c01076{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_c01076{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m27_c01076{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m26_c01076{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);}
.mc_c01076{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m24_c01076{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.mb_c01076{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);}
.m16_c01076{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);}
.m19_c01076{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m25_c01076{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);}
.m1b_c01076{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m32_c01076{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01076{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m31_c01076{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01076{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m18_c01076{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01076{transform:matrix(0.822500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.822500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.822500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01076{transform:matrix(1.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.080000,0.000000,0.000000,0.250000,0,0);}
.v3_c01076{vertical-align:-2.880000px;}
.v0_c01076{vertical-align:0.000000px;}
.v2_c01076{vertical-align:23.040000px;}
.v1_c01076{vertical-align:31.680000px;}
.ls0_c01076{letter-spacing:0.000000px;}
.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;}
}
.ws3_c01076{word-spacing:-0.120000px;}
.ws5_c01076{word-spacing:0.000000px;}
.ws1_c01076{word-spacing:11.693143px;}
.ws4_c01076{word-spacing:62.368128px;}
.ws0_c01076{word-spacing:1053.360000px;}
.ws2_c01076{word-spacing:1055.760000px;}
.fc0_c01076{color:transparent;}
.fsd_c01076{font-size:17.280000px;}
.fse_c01076{font-size:34.560000px;}
.fsc_c01076{font-size:43.200000px;}
.fs3_c01076{font-size:46.080000px;}
.fs7_c01076{font-size:48.960000px;}
.fsa_c01076{font-size:51.840000px;}
.fs6_c01076{font-size:54.720000px;}
.fs4_c01076{font-size:57.600000px;}
.fs8_c01076{font-size:60.480000px;}
.fs1_c01076{font-size:63.360000px;}
.fs5_c01076{font-size:66.240000px;}
.fsb_c01076{font-size:69.120000px;}
.fs2_c01076{font-size:72.000000px;}
.fs9_c01076{font-size:74.880000px;}
.fs0_c01076{font-size:77.760000px;}
.y0_c01076{bottom:0.000000px;}
.y88_c01076{bottom:10.800000px;}
.y89_c01076{bottom:11.520000px;}
.y8a_c01076{bottom:12.240000px;}
.y87_c01076{bottom:12.960000px;}
.y8b_c01076{bottom:13.680000px;}
.y86_c01076{bottom:15.840000px;}
.y83_c01076{bottom:49.680000px;}
.y85_c01076{bottom:51.120000px;}
.y82_c01076{bottom:51.840000px;}
.y84_c01076{bottom:52.560000px;}
.y81_c01076{bottom:54.720000px;}
.y7f_c01076{bottom:94.320000px;}
.y80_c01076{bottom:95.760000px;}
.y7e_c01076{bottom:97.200000px;}
.y7a_c01076{bottom:136.080000px;}
.y78_c01076{bottom:136.800000px;}
.y7c_c01076{bottom:137.520000px;}
.y7d_c01076{bottom:138.240000px;}
.y7b_c01076{bottom:138.960000px;}
.y79_c01076{bottom:139.680000px;}
.y77_c01076{bottom:140.400000px;}
.y75_c01076{bottom:179.280000px;}
.y74_c01076{bottom:180.000000px;}
.y76_c01076{bottom:181.440000px;}
.y73_c01076{bottom:182.160000px;}
.y6d_c01076{bottom:222.480000px;}
.y6e_c01076{bottom:223.200000px;}
.y71_c01076{bottom:223.920000px;}
.y70_c01076{bottom:224.640000px;}
.y6c_c01076{bottom:225.360000px;}
.y72_c01076{bottom:226.080000px;}
.y6f_c01076{bottom:226.800000px;}
.y67_c01076{bottom:264.960000px;}
.y66_c01076{bottom:265.680000px;}
.y6a_c01076{bottom:267.120000px;}
.y65_c01076{bottom:267.840000px;}
.y6b_c01076{bottom:269.280000px;}
.y68_c01076{bottom:270.000000px;}
.y69_c01076{bottom:278.640000px;}
.y61_c01076{bottom:308.160000px;}
.y62_c01076{bottom:308.880000px;}
.y60_c01076{bottom:310.320000px;}
.y64_c01076{bottom:311.040000px;}
.y63_c01076{bottom:312.480000px;}
.y5c_c01076{bottom:350.640000px;}
.y5b_c01076{bottom:351.360000px;}
.y5a_c01076{bottom:352.800000px;}
.y5e_c01076{bottom:353.520000px;}
.y5f_c01076{bottom:354.960000px;}
.y5d_c01076{bottom:355.680000px;}
.y58_c01076{bottom:393.120000px;}
.y57_c01076{bottom:393.840000px;}
.y56_c01076{bottom:396.000000px;}
.y59_c01076{bottom:398.880000px;}
.y52_c01076{bottom:436.320000px;}
.y51_c01076{bottom:438.480000px;}
.y54_c01076{bottom:439.200000px;}
.y55_c01076{bottom:439.920000px;}
.y53_c01076{bottom:441.360000px;}
.y4d_c01076{bottom:478.800000px;}
.y4c_c01076{bottom:480.960000px;}
.y4e_c01076{bottom:481.680000px;}
.y4f_c01076{bottom:482.400000px;}
.y50_c01076{bottom:484.560000px;}
.y46_c01076{bottom:521.280000px;}
.y45_c01076{bottom:523.440000px;}
.y49_c01076{bottom:524.160000px;}
.y48_c01076{bottom:524.880000px;}
.y4b_c01076{bottom:525.600000px;}
.y4a_c01076{bottom:527.040000px;}
.y47_c01076{bottom:527.760000px;}
.y41_c01076{bottom:564.480000px;}
.y40_c01076{bottom:565.920000px;}
.y43_c01076{bottom:568.080000px;}
.y44_c01076{bottom:568.800000px;}
.y42_c01076{bottom:570.240000px;}
.y3c_c01076{bottom:607.680000px;}
.y3b_c01076{bottom:609.120000px;}
.y3e_c01076{bottom:611.280000px;}
.y3f_c01076{bottom:612.000000px;}
.y3d_c01076{bottom:614.160000px;}
.y35_c01076{bottom:650.160000px;}
.y34_c01076{bottom:653.040000px;}
.y38_c01076{bottom:654.480000px;}
.y37_c01076{bottom:655.200000px;}
.y39_c01076{bottom:656.640000px;}
.y36_c01076{bottom:657.360000px;}
.y3a_c01076{bottom:658.080000px;}
.y30_c01076{bottom:693.360000px;}
.y2f_c01076{bottom:694.800000px;}
.y32_c01076{bottom:696.960000px;}
.y33_c01076{bottom:698.400000px;}
.y31_c01076{bottom:699.840000px;}
.y29_c01076{bottom:736.560000px;}
.y28_c01076{bottom:738.000000px;}
.y2b_c01076{bottom:740.160000px;}
.y2c_c01076{bottom:740.880000px;}
.y2d_c01076{bottom:742.320000px;}
.y2a_c01076{bottom:743.760000px;}
.y2e_c01076{bottom:744.480000px;}
.y23_c01076{bottom:779.760000px;}
.y22_c01076{bottom:780.480000px;}
.y25_c01076{bottom:784.080000px;}
.y26_c01076{bottom:784.800000px;}
.y24_c01076{bottom:785.520000px;}
.y27_c01076{bottom:786.960000px;}
.y1d_c01076{bottom:822.240000px;}
.y1c_c01076{bottom:824.400000px;}
.y1f_c01076{bottom:827.280000px;}
.y21_c01076{bottom:828.720000px;}
.y1e_c01076{bottom:829.440000px;}
.y20_c01076{bottom:830.160000px;}
.y18_c01076{bottom:865.440000px;}
.y17_c01076{bottom:867.600000px;}
.y19_c01076{bottom:870.480000px;}
.y1a_c01076{bottom:871.920000px;}
.y1b_c01076{bottom:874.080000px;}
.y13_c01076{bottom:908.640000px;}
.y12_c01076{bottom:910.080000px;}
.y15_c01076{bottom:913.680000px;}
.y16_c01076{bottom:914.400000px;}
.y14_c01076{bottom:915.120000px;}
.yd_c01076{bottom:950.400000px;}
.yc_c01076{bottom:951.840000px;}
.yf_c01076{bottom:956.160000px;}
.y10_c01076{bottom:956.880000px;}
.y11_c01076{bottom:957.600000px;}
.ye_c01076{bottom:959.040000px;}
.y7_c01076{bottom:993.600000px;}
.y9_c01076{bottom:999.360000px;}
.yb_c01076{bottom:1000.080000px;}
.y8_c01076{bottom:1001.520000px;}
.ya_c01076{bottom:1002.960000px;}
.y2_c01076{bottom:1036.800000px;}
.y4_c01076{bottom:1042.560000px;}
.y5_c01076{bottom:1043.280000px;}
.y6_c01076{bottom:1044.000000px;}
.y3_c01076{bottom:1045.440000px;}
.y1_c01076{bottom:1113.120000px;}
.h10_c01076{height:15.550313px;}
.h11_c01076{height:31.100625px;}
.hf_c01076{height:38.875781px;}
.h5_c01076{height:41.467500px;}
.h9_c01076{height:44.059219px;}
.hc_c01076{height:46.650937px;}
.h8_c01076{height:49.242656px;}
.h6_c01076{height:51.834375px;}
.ha_c01076{height:54.426094px;}
.h3_c01076{height:57.017812px;}
.h7_c01076{height:59.609531px;}
.hd_c01076{height:62.201250px;}
.h4_c01076{height:64.792969px;}
.hb_c01076{height:67.384687px;}
.h2_c01076{height:69.976406px;}
.he_c01076{height:70.555781px;}
.h0_c01076{height:1158.480000px;}
.h1_c01076{height:1158.750000px;}
.w1_c01076{width:805.500000px;}
.w0_c01076{width:805.680000px;}
.x0_c01076{left:0.000000px;}
.x2_c01076{left:90.720900px;}
.xa_c01076{left:92.160000px;}
.x14_c01076{left:93.600000px;}
.x19_c01076{left:95.040000px;}
.x25_c01076{left:96.480000px;}
.x3_c01076{left:164.880000px;}
.xb_c01076{left:166.320000px;}
.x10_c01076{left:167.760000px;}
.x1e_c01076{left:169.200000px;}
.x2d_c01076{left:170.640000px;}
.x2a_c01076{left:255.600000px;}
.x2e_c01076{left:257.760000px;}
.x1b_c01076{left:267.120000px;}
.x26_c01076{left:289.440000px;}
.x2b_c01076{left:300.240000px;}
.x16_c01076{left:330.480000px;}
.x2f_c01076{left:333.360000px;}
.x2c_c01076{left:354.960000px;}
.x21_c01076{left:397.440000px;}
.x1c_c01076{left:429.120000px;}
.x22_c01076{left:449.280000px;}
.x23_c01076{left:494.640000px;}
.x17_c01076{left:570.240000px;}
.x1f_c01076{left:571.680000px;}
.x4_c01076{left:578.880000px;}
.xe_c01076{left:580.320000px;}
.x27_c01076{left:582.480000px;}
.x30_c01076{left:583.920000px;}
.x5_c01076{left:600.480000px;}
.x12_c01076{left:602.640000px;}
.x1d_c01076{left:604.080000px;}
.x31_c01076{left:606.240000px;}
.x6_c01076{left:620.640000px;}
.x28_c01076{left:624.960000px;}
.x8_c01076{left:655.200000px;}
.xf_c01076{left:656.640000px;}
.x20_c01076{left:658.800000px;}
.x32_c01076{left:660.240000px;}
.x9_c01076{left:688.320000px;}
.x11_c01076{left:689.760000px;}
.x1a_c01076{left:691.200000px;}
.x1_c01076{left:693.360000px;}
.x18_c01076{left:722.880000px;}
.x24_c01076{left:724.320000px;}
.x7_c01076{left:730.800000px;}
.xd_c01076{left:732.240000px;}
.x15_c01076{left:733.680000px;}
.x29_c01076{left:735.840000px;}
.xc_c01076{left:751.680000px;}
.x13_c01076{left:753.120000px;}
.x33_c01076{left:756.720000px;}
@media print{
.v3_c01076{vertical-align:-2.560000pt;}
.v0_c01076{vertical-align:0.000000pt;}
.v2_c01076{vertical-align:20.480000pt;}
.v1_c01076{vertical-align:28.160000pt;}
.ls0_c01076{letter-spacing:0.000000pt;}
.ws3_c01076{word-spacing:-0.106667pt;}
.ws5_c01076{word-spacing:0.000000pt;}
.ws1_c01076{word-spacing:10.393905pt;}
.ws4_c01076{word-spacing:55.438336pt;}
.ws0_c01076{word-spacing:936.320000pt;}
.ws2_c01076{word-spacing:938.453333pt;}
.fsd_c01076{font-size:15.360000pt;}
.fse_c01076{font-size:30.720000pt;}
.fsc_c01076{font-size:38.400000pt;}
.fs3_c01076{font-size:40.960000pt;}
.fs7_c01076{font-size:43.520000pt;}
.fsa_c01076{font-size:46.080000pt;}
.fs6_c01076{font-size:48.640000pt;}
.fs4_c01076{font-size:51.200000pt;}
.fs8_c01076{font-size:53.760000pt;}
.fs1_c01076{font-size:56.320000pt;}
.fs5_c01076{font-size:58.880000pt;}
.fsb_c01076{font-size:61.440000pt;}
.fs2_c01076{font-size:64.000000pt;}
.fs9_c01076{font-size:66.560000pt;}
.fs0_c01076{font-size:69.120000pt;}
.y0_c01076{bottom:0.000000pt;}
.y88_c01076{bottom:9.600000pt;}
.y89_c01076{bottom:10.240000pt;}
.y8a_c01076{bottom:10.880000pt;}
.y87_c01076{bottom:11.520000pt;}
.y8b_c01076{bottom:12.160000pt;}
.y86_c01076{bottom:14.080000pt;}
.y83_c01076{bottom:44.160000pt;}
.y85_c01076{bottom:45.440000pt;}
.y82_c01076{bottom:46.080000pt;}
.y84_c01076{bottom:46.720000pt;}
.y81_c01076{bottom:48.640000pt;}
.y7f_c01076{bottom:83.840000pt;}
.y80_c01076{bottom:85.120000pt;}
.y7e_c01076{bottom:86.400000pt;}
.y7a_c01076{bottom:120.960000pt;}
.y78_c01076{bottom:121.600000pt;}
.y7c_c01076{bottom:122.240000pt;}
.y7d_c01076{bottom:122.880000pt;}
.y7b_c01076{bottom:123.520000pt;}
.y79_c01076{bottom:124.160000pt;}
.y77_c01076{bottom:124.800000pt;}
.y75_c01076{bottom:159.360000pt;}
.y74_c01076{bottom:160.000000pt;}
.y76_c01076{bottom:161.280000pt;}
.y73_c01076{bottom:161.920000pt;}
.y6d_c01076{bottom:197.760000pt;}
.y6e_c01076{bottom:198.400000pt;}
.y71_c01076{bottom:199.040000pt;}
.y70_c01076{bottom:199.680000pt;}
.y6c_c01076{bottom:200.320000pt;}
.y72_c01076{bottom:200.960000pt;}
.y6f_c01076{bottom:201.600000pt;}
.y67_c01076{bottom:235.520000pt;}
.y66_c01076{bottom:236.160000pt;}
.y6a_c01076{bottom:237.440000pt;}
.y65_c01076{bottom:238.080000pt;}
.y6b_c01076{bottom:239.360000pt;}
.y68_c01076{bottom:240.000000pt;}
.y69_c01076{bottom:247.680000pt;}
.y61_c01076{bottom:273.920000pt;}
.y62_c01076{bottom:274.560000pt;}
.y60_c01076{bottom:275.840000pt;}
.y64_c01076{bottom:276.480000pt;}
.y63_c01076{bottom:277.760000pt;}
.y5c_c01076{bottom:311.680000pt;}
.y5b_c01076{bottom:312.320000pt;}
.y5a_c01076{bottom:313.600000pt;}
.y5e_c01076{bottom:314.240000pt;}
.y5f_c01076{bottom:315.520000pt;}
.y5d_c01076{bottom:316.160000pt;}
.y58_c01076{bottom:349.440000pt;}
.y57_c01076{bottom:350.080000pt;}
.y56_c01076{bottom:352.000000pt;}
.y59_c01076{bottom:354.560000pt;}
.y52_c01076{bottom:387.840000pt;}
.y51_c01076{bottom:389.760000pt;}
.y54_c01076{bottom:390.400000pt;}
.y55_c01076{bottom:391.040000pt;}
.y53_c01076{bottom:392.320000pt;}
.y4d_c01076{bottom:425.600000pt;}
.y4c_c01076{bottom:427.520000pt;}
.y4e_c01076{bottom:428.160000pt;}
.y4f_c01076{bottom:428.800000pt;}
.y50_c01076{bottom:430.720000pt;}
.y46_c01076{bottom:463.360000pt;}
.y45_c01076{bottom:465.280000pt;}
.y49_c01076{bottom:465.920000pt;}
.y48_c01076{bottom:466.560000pt;}
.y4b_c01076{bottom:467.200000pt;}
.y4a_c01076{bottom:468.480000pt;}
.y47_c01076{bottom:469.120000pt;}
.y41_c01076{bottom:501.760000pt;}
.y40_c01076{bottom:503.040000pt;}
.y43_c01076{bottom:504.960000pt;}
.y44_c01076{bottom:505.600000pt;}
.y42_c01076{bottom:506.880000pt;}
.y3c_c01076{bottom:540.160000pt;}
.y3b_c01076{bottom:541.440000pt;}
.y3e_c01076{bottom:543.360000pt;}
.y3f_c01076{bottom:544.000000pt;}
.y3d_c01076{bottom:545.920000pt;}
.y35_c01076{bottom:577.920000pt;}
.y34_c01076{bottom:580.480000pt;}
.y38_c01076{bottom:581.760000pt;}
.y37_c01076{bottom:582.400000pt;}
.y39_c01076{bottom:583.680000pt;}
.y36_c01076{bottom:584.320000pt;}
.y3a_c01076{bottom:584.960000pt;}
.y30_c01076{bottom:616.320000pt;}
.y2f_c01076{bottom:617.600000pt;}
.y32_c01076{bottom:619.520000pt;}
.y33_c01076{bottom:620.800000pt;}
.y31_c01076{bottom:622.080000pt;}
.y29_c01076{bottom:654.720000pt;}
.y28_c01076{bottom:656.000000pt;}
.y2b_c01076{bottom:657.920000pt;}
.y2c_c01076{bottom:658.560000pt;}
.y2d_c01076{bottom:659.840000pt;}
.y2a_c01076{bottom:661.120000pt;}
.y2e_c01076{bottom:661.760000pt;}
.y23_c01076{bottom:693.120000pt;}
.y22_c01076{bottom:693.760000pt;}
.y25_c01076{bottom:696.960000pt;}
.y26_c01076{bottom:697.600000pt;}
.y24_c01076{bottom:698.240000pt;}
.y27_c01076{bottom:699.520000pt;}
.y1d_c01076{bottom:730.880000pt;}
.y1c_c01076{bottom:732.800000pt;}
.y1f_c01076{bottom:735.360000pt;}
.y21_c01076{bottom:736.640000pt;}
.y1e_c01076{bottom:737.280000pt;}
.y20_c01076{bottom:737.920000pt;}
.y18_c01076{bottom:769.280000pt;}
.y17_c01076{bottom:771.200000pt;}
.y19_c01076{bottom:773.760000pt;}
.y1a_c01076{bottom:775.040000pt;}
.y1b_c01076{bottom:776.960000pt;}
.y13_c01076{bottom:807.680000pt;}
.y12_c01076{bottom:808.960000pt;}
.y15_c01076{bottom:812.160000pt;}
.y16_c01076{bottom:812.800000pt;}
.y14_c01076{bottom:813.440000pt;}
.yd_c01076{bottom:844.800000pt;}
.yc_c01076{bottom:846.080000pt;}
.yf_c01076{bottom:849.920000pt;}
.y10_c01076{bottom:850.560000pt;}
.y11_c01076{bottom:851.200000pt;}
.ye_c01076{bottom:852.480000pt;}
.y7_c01076{bottom:883.200000pt;}
.y9_c01076{bottom:888.320000pt;}
.yb_c01076{bottom:888.960000pt;}
.y8_c01076{bottom:890.240000pt;}
.ya_c01076{bottom:891.520000pt;}
.y2_c01076{bottom:921.600000pt;}
.y4_c01076{bottom:926.720000pt;}
.y5_c01076{bottom:927.360000pt;}
.y6_c01076{bottom:928.000000pt;}
.y3_c01076{bottom:929.280000pt;}
.y1_c01076{bottom:989.440000pt;}
.h10_c01076{height:13.822500pt;}
.h11_c01076{height:27.645000pt;}
.hf_c01076{height:34.556250pt;}
.h5_c01076{height:36.860000pt;}
.h9_c01076{height:39.163750pt;}
.hc_c01076{height:41.467500pt;}
.h8_c01076{height:43.771250pt;}
.h6_c01076{height:46.075000pt;}
.ha_c01076{height:48.378750pt;}
.h3_c01076{height:50.682500pt;}
.h7_c01076{height:52.986250pt;}
.hd_c01076{height:55.290000pt;}
.h4_c01076{height:57.593750pt;}
.hb_c01076{height:59.897500pt;}
.h2_c01076{height:62.201250pt;}
.he_c01076{height:62.716250pt;}
.h0_c01076{height:1029.760000pt;}
.h1_c01076{height:1030.000000pt;}
.w1_c01076{width:716.000000pt;}
.w0_c01076{width:716.160000pt;}
.x0_c01076{left:0.000000pt;}
.x2_c01076{left:80.640800pt;}
.xa_c01076{left:81.920000pt;}
.x14_c01076{left:83.200000pt;}
.x19_c01076{left:84.480000pt;}
.x25_c01076{left:85.760000pt;}
.x3_c01076{left:146.560000pt;}
.xb_c01076{left:147.840000pt;}
.x10_c01076{left:149.120000pt;}
.x1e_c01076{left:150.400000pt;}
.x2d_c01076{left:151.680000pt;}
.x2a_c01076{left:227.200000pt;}
.x2e_c01076{left:229.120000pt;}
.x1b_c01076{left:237.440000pt;}
.x26_c01076{left:257.280000pt;}
.x2b_c01076{left:266.880000pt;}
.x16_c01076{left:293.760000pt;}
.x2f_c01076{left:296.320000pt;}
.x2c_c01076{left:315.520000pt;}
.x21_c01076{left:353.280000pt;}
.x1c_c01076{left:381.440000pt;}
.x22_c01076{left:399.360000pt;}
.x23_c01076{left:439.680000pt;}
.x17_c01076{left:506.880000pt;}
.x1f_c01076{left:508.160000pt;}
.x4_c01076{left:514.560000pt;}
.xe_c01076{left:515.840000pt;}
.x27_c01076{left:517.760000pt;}
.x30_c01076{left:519.040000pt;}
.x5_c01076{left:533.760000pt;}
.x12_c01076{left:535.680000pt;}
.x1d_c01076{left:536.960000pt;}
.x31_c01076{left:538.880000pt;}
.x6_c01076{left:551.680000pt;}
.x28_c01076{left:555.520000pt;}
.x8_c01076{left:582.400000pt;}
.xf_c01076{left:583.680000pt;}
.x20_c01076{left:585.600000pt;}
.x32_c01076{left:586.880000pt;}
.x9_c01076{left:611.840000pt;}
.x11_c01076{left:613.120000pt;}
.x1a_c01076{left:614.400000pt;}
.x1_c01076{left:616.320000pt;}
.x18_c01076{left:642.560000pt;}
.x24_c01076{left:643.840000pt;}
.x7_c01076{left:649.600000pt;}
.xd_c01076{left:650.880000pt;}
.x15_c01076{left:652.160000pt;}
.x29_c01076{left:654.080000pt;}
.xc_c01076{left:668.160000pt;}
.x13_c01076{left:669.440000pt;}
.x33_c01076{left:672.640000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b8e5171ba6a53fda9e3f96cd.woff2')format("woff");}.ff1_c01077{font-family:ff1_c01077;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m45_c01077{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);}
.m40_c01077{transform:matrix(0.195975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195975,0.000000,0.000000,0.250000,0,0);}
.m26_c01077{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01077{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);}
.m27_c01077{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01077{transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);}
.m20_c01077{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m13_c01077{transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);}
.m32_c01077{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m10_c01077{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01077{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);}
.m31_c01077{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m15_c01077{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_c01077{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_c01077{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1_c01077{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m14_c01077{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m12_c01077{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_c01077{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.mb_c01077{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m35_c01077{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m19_c01077{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m4_c01077{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m17_c01077{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);}
.m28_c01077{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mf_c01077{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01077{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m9_c01077{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m22_c01077{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m25_c01077{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m29_c01077{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m33_c01077{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01077{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mc_c01077{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01077{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m36_c01077{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m7_c01077{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m2_c01077{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);}
.m34_c01077{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_c01077{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m3_c01077{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);}
.m44_c01077{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.ma_c01077{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);}
.m3c_c01077{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);}
.m3e_c01077{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01077{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);}
.m30_c01077{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);}
.m0_c01077{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m4d_c01077{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);}
.m41_c01077{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);}
.m21_c01077{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01077{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);}
.m4b_c01077{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);}
.m18_c01077{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01077{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01077{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);}
.m49_c01077{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m6_c01077{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m47_c01077{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m23_c01077{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m5_c01077{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m24_c01077{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);}
.m38_c01077{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01077{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m42_c01077{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);}
.m16_c01077{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);}
.m37_c01077{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01077{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01077{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m48_c01077{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m39_c01077{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);}
.md_c01077{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01077{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);}
.m11_c01077{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m43_c01077{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m46_c01077{transform:matrix(0.687500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01077{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);}
.m4c_c01077{transform:matrix(0.860000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.860000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.860000,0.000000,0.000000,0.250000,0,0);}
.v3_c01077{vertical-align:-8.640000px;}
.v0_c01077{vertical-align:0.000000px;}
.v2_c01077{vertical-align:2.880000px;}
.v1_c01077{vertical-align:5.760000px;}
.ls1_c01077{letter-spacing:0.000000px;}
.ls0_c01077{letter-spacing:45.308400px;}
.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;}
}
.ws1_c01077{word-spacing:-10.204800px;}
.ws4_c01077{word-spacing:0.000000px;}
.ws0_c01077{word-spacing:1.530960px;}
.ws2_c01077{word-spacing:9.212400px;}
.ws3_c01077{word-spacing:13.140000px;}
.fc0_c01077{color:transparent;}
.fsa_c01077{font-size:37.440000px;}
.fs7_c01077{font-size:40.320000px;}
.fse_c01077{font-size:46.080000px;}
.fsd_c01077{font-size:48.960000px;}
.fs2_c01077{font-size:51.840000px;}
.fsc_c01077{font-size:54.720000px;}
.fsb_c01077{font-size:57.600000px;}
.fs0_c01077{font-size:60.480000px;}
.fs3_c01077{font-size:63.360000px;}
.fs5_c01077{font-size:66.240000px;}
.fs8_c01077{font-size:69.120000px;}
.fs9_c01077{font-size:72.000000px;}
.fs6_c01077{font-size:74.880000px;}
.fs1_c01077{font-size:77.760000px;}
.fsf_c01077{font-size:95.040000px;}
.fs4_c01077{font-size:106.560000px;}
.y0_c01077{bottom:0.000000px;}
.y82_c01077{bottom:43.200000px;}
.y77_c01077{bottom:43.920000px;}
.y74_c01077{bottom:44.640000px;}
.y83_c01077{bottom:45.360000px;}
.y73_c01077{bottom:46.800000px;}
.y75_c01077{bottom:47.520000px;}
.y72_c01077{bottom:48.960000px;}
.y70_c01077{bottom:87.840000px;}
.y71_c01077{bottom:90.000000px;}
.y81_c01077{bottom:117.360000px;}
.y80_c01077{bottom:118.080000px;}
.y6f_c01077{bottom:118.800000px;}
.y6c_c01077{bottom:119.520000px;}
.y6d_c01077{bottom:120.240000px;}
.y6b_c01077{bottom:120.960000px;}
.y6e_c01077{bottom:121.680000px;}
.y6a_c01077{bottom:123.120000px;}
.y69_c01077{bottom:165.600000px;}
.y68_c01077{bottom:166.320000px;}
.y7f_c01077{bottom:192.960000px;}
.y66_c01077{bottom:193.680000px;}
.y67_c01077{bottom:194.400000px;}
.y65_c01077{bottom:195.840000px;}
.y64_c01077{bottom:197.280000px;}
.y63_c01077{bottom:228.240000px;}
.y61_c01077{bottom:236.160000px;}
.y62_c01077{bottom:236.880000px;}
.y7e_c01077{bottom:237.600000px;}
.y60_c01077{bottom:238.320000px;}
.y5f_c01077{bottom:239.040000px;}
.y5e_c01077{bottom:270.720000px;}
.y7c_c01077{bottom:278.640000px;}
.y5d_c01077{bottom:279.360000px;}
.y5c_c01077{bottom:280.080000px;}
.y57_c01077{bottom:280.800000px;}
.y7d_c01077{bottom:281.520000px;}
.y5b_c01077{bottom:313.920000px;}
.y58_c01077{bottom:322.560000px;}
.y5a_c01077{bottom:323.280000px;}
.y56_c01077{bottom:324.000000px;}
.y7b_c01077{bottom:324.720000px;}
.y59_c01077{bottom:325.440000px;}
.y55_c01077{bottom:357.120000px;}
.y54_c01077{bottom:365.040000px;}
.y7a_c01077{bottom:365.760000px;}
.y53_c01077{bottom:366.480000px;}
.y52_c01077{bottom:367.920000px;}
.y51_c01077{bottom:400.320000px;}
.y4f_c01077{bottom:408.240000px;}
.y50_c01077{bottom:408.960000px;}
.y4e_c01077{bottom:409.680000px;}
.y4d_c01077{bottom:410.400000px;}
.y79_c01077{bottom:411.120000px;}
.y4b_c01077{bottom:451.440000px;}
.y4a_c01077{bottom:452.160000px;}
.y76_c01077{bottom:452.880000px;}
.y4c_c01077{bottom:454.320000px;}
.y48_c01077{bottom:495.360000px;}
.y49_c01077{bottom:498.240000px;}
.y44_c01077{bottom:525.600000px;}
.y45_c01077{bottom:527.040000px;}
.y43_c01077{bottom:527.760000px;}
.y46_c01077{bottom:528.480000px;}
.y47_c01077{bottom:529.920000px;}
.y41_c01077{bottom:568.800000px;}
.y3f_c01077{bottom:569.520000px;}
.y3e_c01077{bottom:570.960000px;}
.y42_c01077{bottom:571.680000px;}
.y40_c01077{bottom:572.400000px;}
.y78_c01077{bottom:573.120000px;}
.y3d_c01077{bottom:612.000000px;}
.y3c_c01077{bottom:643.680000px;}
.y35_c01077{bottom:645.840000px;}
.y33_c01077{bottom:646.560000px;}
.y34_c01077{bottom:647.280000px;}
.y36_c01077{bottom:648.720000px;}
.y37_c01077{bottom:649.440000px;}
.y3a_c01077{bottom:686.160000px;}
.y3b_c01077{bottom:686.880000px;}
.y39_c01077{bottom:687.600000px;}
.y2f_c01077{bottom:689.040000px;}
.y30_c01077{bottom:689.760000px;}
.y32_c01077{bottom:690.480000px;}
.y31_c01077{bottom:691.200000px;}
.y38_c01077{bottom:728.640000px;}
.y2c_c01077{bottom:732.240000px;}
.y2b_c01077{bottom:732.960000px;}
.y2d_c01077{bottom:734.400000px;}
.y2e_c01077{bottom:735.120000px;}
.y19_c01077{bottom:771.840000px;}
.y1b_c01077{bottom:772.560000px;}
.y2a_c01077{bottom:774.720000px;}
.y18_c01077{bottom:775.440000px;}
.y1a_c01077{bottom:776.160000px;}
.y15_c01077{bottom:815.040000px;}
.y14_c01077{bottom:816.480000px;}
.y16_c01077{bottom:817.920000px;}
.y17_c01077{bottom:818.640000px;}
.y29_c01077{bottom:820.080000px;}
.y13_c01077{bottom:857.520000px;}
.y12_c01077{bottom:860.400000px;}
.y27_c01077{bottom:861.120000px;}
.y28_c01077{bottom:863.280000px;}
.ye_c01077{bottom:900.000000px;}
.y11_c01077{bottom:901.440000px;}
.yd_c01077{bottom:902.160000px;}
.yf_c01077{bottom:902.880000px;}
.y26_c01077{bottom:903.600000px;}
.y25_c01077{bottom:904.320000px;}
.y10_c01077{bottom:905.040000px;}
.ya_c01077{bottom:943.200000px;}
.y9_c01077{bottom:945.360000px;}
.yb_c01077{bottom:946.080000px;}
.y24_c01077{bottom:947.520000px;}
.yc_c01077{bottom:948.240000px;}
.y8_c01077{bottom:986.400000px;}
.y7_c01077{bottom:987.840000px;}
.y23_c01077{bottom:990.000000px;}
.y20_c01077{bottom:990.720000px;}
.y1f_c01077{bottom:991.440000px;}
.y22_c01077{bottom:992.160000px;}
.y21_c01077{bottom:993.600000px;}
.y6_c01077{bottom:1025.280000px;}
.y2_c01077{bottom:1029.600000px;}
.y4_c01077{bottom:1031.760000px;}
.y1_c01077{bottom:1032.480000px;}
.y3_c01077{bottom:1033.920000px;}
.y1d_c01077{bottom:1034.640000px;}
.y1e_c01077{bottom:1035.360000px;}
.y5_c01077{bottom:1036.080000px;}
.y1c_c01077{bottom:1106.640000px;}
.hc_c01077{height:33.692344px;}
.h9_c01077{height:36.284062px;}
.h11_c01077{height:41.467500px;}
.hf_c01077{height:44.059219px;}
.h4_c01077{height:46.650937px;}
.he_c01077{height:49.242656px;}
.hd_c01077{height:51.834375px;}
.h2_c01077{height:54.426094px;}
.h5_c01077{height:57.017812px;}
.h10_c01077{height:57.594375px;}
.h7_c01077{height:59.609531px;}
.h13_c01077{height:60.186094px;}
.ha_c01077{height:62.201250px;}
.hb_c01077{height:64.792969px;}
.h8_c01077{height:67.384687px;}
.h3_c01077{height:69.976406px;}
.h12_c01077{height:85.526719px;}
.h6_c01077{height:95.893594px;}
.h0_c01077{height:1159.920000px;}
.h1_c01077{height:1160.250000px;}
.w1_c01077{width:807.750000px;}
.w0_c01077{width:807.840000px;}
.x0_c01077{left:0.000000px;}
.x1_c01077{left:92.160000px;}
.x2_c01077{left:166.320000px;}
.x1c_c01077{left:168.480000px;}
.x20_c01077{left:221.760000px;}
.x2a_c01077{left:232.560000px;}
.x3_c01077{left:252.000000px;}
.xa_c01077{left:253.440000px;}
.x2b_c01077{left:285.840000px;}
.x4_c01077{left:295.920000px;}
.x1b_c01077{left:298.080000px;}
.xd_c01077{left:306.720000px;}
.x21_c01077{left:317.520000px;}
.x2d_c01077{left:318.960000px;}
.x2c_c01077{left:329.760000px;}
.x5_c01077{left:349.920000px;}
.x26_c01077{left:372.960000px;}
.x8_c01077{left:383.040000px;}
.x27_c01077{left:393.120000px;}
.x1e_c01077{left:415.440000px;}
.x28_c01077{left:416.880000px;}
.x9_c01077{left:435.600000px;}
.xb_c01077{left:457.920000px;}
.x24_c01077{left:459.360000px;}
.x1f_c01077{left:469.440000px;}
.x22_c01077{left:479.520000px;}
.x6_c01077{left:480.960000px;}
.xc_c01077{left:501.840000px;}
.x29_c01077{left:503.280000px;}
.x25_c01077{left:513.360000px;}
.x7_c01077{left:527.760000px;}
.x23_c01077{left:567.360000px;}
.x19_c01077{left:568.800000px;}
.xf_c01077{left:578.880000px;}
.x1d_c01077{left:599.760000px;}
.x10_c01077{left:601.200000px;}
.x16_c01077{left:622.080000px;}
.x17_c01077{left:655.200000px;}
.x11_c01077{left:656.640000px;}
.x2e_c01077{left:666.720000px;}
.x1a_c01077{left:687.600000px;}
.x12_c01077{left:689.040000px;}
.xe_c01077{left:693.360000px;}
.x2f_c01077{left:699.840000px;}
.x18_c01077{left:721.440000px;}
.x30_c01077{left:722.880000px;}
.x13_c01077{left:730.800000px;}
.x15_c01077{left:732.240000px;}
.x14_c01077{left:752.400000px;}
@media print{
.v3_c01077{vertical-align:-7.680000pt;}
.v0_c01077{vertical-align:0.000000pt;}
.v2_c01077{vertical-align:2.560000pt;}
.v1_c01077{vertical-align:5.120000pt;}
.ls1_c01077{letter-spacing:0.000000pt;}
.ls0_c01077{letter-spacing:40.274133pt;}
.ws1_c01077{word-spacing:-9.070933pt;}
.ws4_c01077{word-spacing:0.000000pt;}
.ws0_c01077{word-spacing:1.360853pt;}
.ws2_c01077{word-spacing:8.188800pt;}
.ws3_c01077{word-spacing:11.680000pt;}
.fsa_c01077{font-size:33.280000pt;}
.fs7_c01077{font-size:35.840000pt;}
.fse_c01077{font-size:40.960000pt;}
.fsd_c01077{font-size:43.520000pt;}
.fs2_c01077{font-size:46.080000pt;}
.fsc_c01077{font-size:48.640000pt;}
.fsb_c01077{font-size:51.200000pt;}
.fs0_c01077{font-size:53.760000pt;}
.fs3_c01077{font-size:56.320000pt;}
.fs5_c01077{font-size:58.880000pt;}
.fs8_c01077{font-size:61.440000pt;}
.fs9_c01077{font-size:64.000000pt;}
.fs6_c01077{font-size:66.560000pt;}
.fs1_c01077{font-size:69.120000pt;}
.fsf_c01077{font-size:84.480000pt;}
.fs4_c01077{font-size:94.720000pt;}
.y0_c01077{bottom:0.000000pt;}
.y82_c01077{bottom:38.400000pt;}
.y77_c01077{bottom:39.040000pt;}
.y74_c01077{bottom:39.680000pt;}
.y83_c01077{bottom:40.320000pt;}
.y73_c01077{bottom:41.600000pt;}
.y75_c01077{bottom:42.240000pt;}
.y72_c01077{bottom:43.520000pt;}
.y70_c01077{bottom:78.080000pt;}
.y71_c01077{bottom:80.000000pt;}
.y81_c01077{bottom:104.320000pt;}
.y80_c01077{bottom:104.960000pt;}
.y6f_c01077{bottom:105.600000pt;}
.y6c_c01077{bottom:106.240000pt;}
.y6d_c01077{bottom:106.880000pt;}
.y6b_c01077{bottom:107.520000pt;}
.y6e_c01077{bottom:108.160000pt;}
.y6a_c01077{bottom:109.440000pt;}
.y69_c01077{bottom:147.200000pt;}
.y68_c01077{bottom:147.840000pt;}
.y7f_c01077{bottom:171.520000pt;}
.y66_c01077{bottom:172.160000pt;}
.y67_c01077{bottom:172.800000pt;}
.y65_c01077{bottom:174.080000pt;}
.y64_c01077{bottom:175.360000pt;}
.y63_c01077{bottom:202.880000pt;}
.y61_c01077{bottom:209.920000pt;}
.y62_c01077{bottom:210.560000pt;}
.y7e_c01077{bottom:211.200000pt;}
.y60_c01077{bottom:211.840000pt;}
.y5f_c01077{bottom:212.480000pt;}
.y5e_c01077{bottom:240.640000pt;}
.y7c_c01077{bottom:247.680000pt;}
.y5d_c01077{bottom:248.320000pt;}
.y5c_c01077{bottom:248.960000pt;}
.y57_c01077{bottom:249.600000pt;}
.y7d_c01077{bottom:250.240000pt;}
.y5b_c01077{bottom:279.040000pt;}
.y58_c01077{bottom:286.720000pt;}
.y5a_c01077{bottom:287.360000pt;}
.y56_c01077{bottom:288.000000pt;}
.y7b_c01077{bottom:288.640000pt;}
.y59_c01077{bottom:289.280000pt;}
.y55_c01077{bottom:317.440000pt;}
.y54_c01077{bottom:324.480000pt;}
.y7a_c01077{bottom:325.120000pt;}
.y53_c01077{bottom:325.760000pt;}
.y52_c01077{bottom:327.040000pt;}
.y51_c01077{bottom:355.840000pt;}
.y4f_c01077{bottom:362.880000pt;}
.y50_c01077{bottom:363.520000pt;}
.y4e_c01077{bottom:364.160000pt;}
.y4d_c01077{bottom:364.800000pt;}
.y79_c01077{bottom:365.440000pt;}
.y4b_c01077{bottom:401.280000pt;}
.y4a_c01077{bottom:401.920000pt;}
.y76_c01077{bottom:402.560000pt;}
.y4c_c01077{bottom:403.840000pt;}
.y48_c01077{bottom:440.320000pt;}
.y49_c01077{bottom:442.880000pt;}
.y44_c01077{bottom:467.200000pt;}
.y45_c01077{bottom:468.480000pt;}
.y43_c01077{bottom:469.120000pt;}
.y46_c01077{bottom:469.760000pt;}
.y47_c01077{bottom:471.040000pt;}
.y41_c01077{bottom:505.600000pt;}
.y3f_c01077{bottom:506.240000pt;}
.y3e_c01077{bottom:507.520000pt;}
.y42_c01077{bottom:508.160000pt;}
.y40_c01077{bottom:508.800000pt;}
.y78_c01077{bottom:509.440000pt;}
.y3d_c01077{bottom:544.000000pt;}
.y3c_c01077{bottom:572.160000pt;}
.y35_c01077{bottom:574.080000pt;}
.y33_c01077{bottom:574.720000pt;}
.y34_c01077{bottom:575.360000pt;}
.y36_c01077{bottom:576.640000pt;}
.y37_c01077{bottom:577.280000pt;}
.y3a_c01077{bottom:609.920000pt;}
.y3b_c01077{bottom:610.560000pt;}
.y39_c01077{bottom:611.200000pt;}
.y2f_c01077{bottom:612.480000pt;}
.y30_c01077{bottom:613.120000pt;}
.y32_c01077{bottom:613.760000pt;}
.y31_c01077{bottom:614.400000pt;}
.y38_c01077{bottom:647.680000pt;}
.y2c_c01077{bottom:650.880000pt;}
.y2b_c01077{bottom:651.520000pt;}
.y2d_c01077{bottom:652.800000pt;}
.y2e_c01077{bottom:653.440000pt;}
.y19_c01077{bottom:686.080000pt;}
.y1b_c01077{bottom:686.720000pt;}
.y2a_c01077{bottom:688.640000pt;}
.y18_c01077{bottom:689.280000pt;}
.y1a_c01077{bottom:689.920000pt;}
.y15_c01077{bottom:724.480000pt;}
.y14_c01077{bottom:725.760000pt;}
.y16_c01077{bottom:727.040000pt;}
.y17_c01077{bottom:727.680000pt;}
.y29_c01077{bottom:728.960000pt;}
.y13_c01077{bottom:762.240000pt;}
.y12_c01077{bottom:764.800000pt;}
.y27_c01077{bottom:765.440000pt;}
.y28_c01077{bottom:767.360000pt;}
.ye_c01077{bottom:800.000000pt;}
.y11_c01077{bottom:801.280000pt;}
.yd_c01077{bottom:801.920000pt;}
.yf_c01077{bottom:802.560000pt;}
.y26_c01077{bottom:803.200000pt;}
.y25_c01077{bottom:803.840000pt;}
.y10_c01077{bottom:804.480000pt;}
.ya_c01077{bottom:838.400000pt;}
.y9_c01077{bottom:840.320000pt;}
.yb_c01077{bottom:840.960000pt;}
.y24_c01077{bottom:842.240000pt;}
.yc_c01077{bottom:842.880000pt;}
.y8_c01077{bottom:876.800000pt;}
.y7_c01077{bottom:878.080000pt;}
.y23_c01077{bottom:880.000000pt;}
.y20_c01077{bottom:880.640000pt;}
.y1f_c01077{bottom:881.280000pt;}
.y22_c01077{bottom:881.920000pt;}
.y21_c01077{bottom:883.200000pt;}
.y6_c01077{bottom:911.360000pt;}
.y2_c01077{bottom:915.200000pt;}
.y4_c01077{bottom:917.120000pt;}
.y1_c01077{bottom:917.760000pt;}
.y3_c01077{bottom:919.040000pt;}
.y1d_c01077{bottom:919.680000pt;}
.y1e_c01077{bottom:920.320000pt;}
.y5_c01077{bottom:920.960000pt;}
.y1c_c01077{bottom:983.680000pt;}
.hc_c01077{height:29.948750pt;}
.h9_c01077{height:32.252500pt;}
.h11_c01077{height:36.860000pt;}
.hf_c01077{height:39.163750pt;}
.h4_c01077{height:41.467500pt;}
.he_c01077{height:43.771250pt;}
.hd_c01077{height:46.075000pt;}
.h2_c01077{height:48.378750pt;}
.h5_c01077{height:50.682500pt;}
.h10_c01077{height:51.195000pt;}
.h7_c01077{height:52.986250pt;}
.h13_c01077{height:53.498750pt;}
.ha_c01077{height:55.290000pt;}
.hb_c01077{height:57.593750pt;}
.h8_c01077{height:59.897500pt;}
.h3_c01077{height:62.201250pt;}
.h12_c01077{height:76.023750pt;}
.h6_c01077{height:85.238750pt;}
.h0_c01077{height:1031.040000pt;}
.h1_c01077{height:1031.333333pt;}
.w1_c01077{width:718.000000pt;}
.w0_c01077{width:718.080000pt;}
.x0_c01077{left:0.000000pt;}
.x1_c01077{left:81.920000pt;}
.x2_c01077{left:147.840000pt;}
.x1c_c01077{left:149.760000pt;}
.x20_c01077{left:197.120000pt;}
.x2a_c01077{left:206.720000pt;}
.x3_c01077{left:224.000000pt;}
.xa_c01077{left:225.280000pt;}
.x2b_c01077{left:254.080000pt;}
.x4_c01077{left:263.040000pt;}
.x1b_c01077{left:264.960000pt;}
.xd_c01077{left:272.640000pt;}
.x21_c01077{left:282.240000pt;}
.x2d_c01077{left:283.520000pt;}
.x2c_c01077{left:293.120000pt;}
.x5_c01077{left:311.040000pt;}
.x26_c01077{left:331.520000pt;}
.x8_c01077{left:340.480000pt;}
.x27_c01077{left:349.440000pt;}
.x1e_c01077{left:369.280000pt;}
.x28_c01077{left:370.560000pt;}
.x9_c01077{left:387.200000pt;}
.xb_c01077{left:407.040000pt;}
.x24_c01077{left:408.320000pt;}
.x1f_c01077{left:417.280000pt;}
.x22_c01077{left:426.240000pt;}
.x6_c01077{left:427.520000pt;}
.xc_c01077{left:446.080000pt;}
.x29_c01077{left:447.360000pt;}
.x25_c01077{left:456.320000pt;}
.x7_c01077{left:469.120000pt;}
.x23_c01077{left:504.320000pt;}
.x19_c01077{left:505.600000pt;}
.xf_c01077{left:514.560000pt;}
.x1d_c01077{left:533.120000pt;}
.x10_c01077{left:534.400000pt;}
.x16_c01077{left:552.960000pt;}
.x17_c01077{left:582.400000pt;}
.x11_c01077{left:583.680000pt;}
.x2e_c01077{left:592.640000pt;}
.x1a_c01077{left:611.200000pt;}
.x12_c01077{left:612.480000pt;}
.xe_c01077{left:616.320000pt;}
.x2f_c01077{left:622.080000pt;}
.x18_c01077{left:641.280000pt;}
.x30_c01077{left:642.560000pt;}
.x13_c01077{left:649.600000pt;}
.x15_c01077{left:650.880000pt;}
.x14_c01077{left:668.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d0794f103271d7d61f96cecc.woff2')format("woff");}.ff1_c01078{font-family:ff1_c01078;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4c_c01078{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m4a_c01078{transform:matrix(0.243400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243400,0.000000,0.000000,0.250000,0,0);}
.m2c_c01078{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m3f_c01078{transform:matrix(0.244350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244350,0.000000,0.000000,0.250000,0,0);}
.m47_c01078{transform:matrix(0.246850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246850,0.000000,0.000000,0.250000,0,0);}
.m3a_c01078{transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);}
.m30_c01078{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m20_c01078{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);}
.m4b_c01078{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);}
.m28_c01078{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m24_c01078{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);}
.m41_c01078{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);}
.m45_c01078{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m8_c01078{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);}
.m2d_c01078{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_c01078{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m7_c01078{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01078{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m35_c01078{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m40_c01078{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m14_c01078{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01078{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m44_c01078{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01078{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m33_c01078{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1c_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);}
.me_c01078{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m9_c01078{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m25_c01078{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01078{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m6_c01078{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m21_c01078{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01078{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m34_c01078{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);}
.m48_c01078{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);}
.m2b_c01078{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m2_c01078{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m12_c01078{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.ma_c01078{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m29_c01078{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.md_c01078{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1_c01078{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m49_c01078{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m10_c01078{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);}
.m3e_c01078{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_c01078{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m19_c01078{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m16_c01078{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);}
.m3_c01078{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m42_c01078{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);}
.mb_c01078{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01078{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01078{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m32_c01078{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m23_c01078{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m4_c01078{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m37_c01078{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);}
.m46_c01078{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);}
.m15_c01078{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01078{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);}
.m43_c01078{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m17_c01078{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m26_c01078{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.mc_c01078{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);}
.m22_c01078{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m36_c01078{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01078{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);}
.m1e_c01078{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m18_c01078{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m31_c01078{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m27_c01078{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m38_c01078{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m5_c01078{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01078{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);}
.m13_c01078{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m39_c01078{transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01078{transform:matrix(0.860000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.860000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.860000,0.000000,0.000000,0.250000,0,0);}
.v0_c01078{vertical-align:0.000000px;}
.v1_c01078{vertical-align:2.880000px;}
.ls0_c01078{letter-spacing:0.000000px;}
.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;}
}
.ws2_c01078{word-spacing:0.000000px;}
.ws1_c01078{word-spacing:14.071440px;}
.ws0_c01078{word-spacing:178.520400px;}
.fc0_c01078{color:transparent;}
.fs4_c01078{font-size:34.560000px;}
.fsc_c01078{font-size:37.440000px;}
.fsf_c01078{font-size:40.320000px;}
.fse_c01078{font-size:43.200000px;}
.fsa_c01078{font-size:46.080000px;}
.fs5_c01078{font-size:48.960000px;}
.fs6_c01078{font-size:51.840000px;}
.fs7_c01078{font-size:54.720000px;}
.fs3_c01078{font-size:57.600000px;}
.fs1_c01078{font-size:60.480000px;}
.fs2_c01078{font-size:63.360000px;}
.fs8_c01078{font-size:66.240000px;}
.fs9_c01078{font-size:69.120000px;}
.fsd_c01078{font-size:72.000000px;}
.fs0_c01078{font-size:74.880000px;}
.fsb_c01078{font-size:77.760000px;}
.y0_c01078{bottom:0.000000px;}
.y7d_c01078{bottom:82.080000px;}
.y7b_c01078{bottom:83.520000px;}
.y7a_c01078{bottom:84.240000px;}
.y7c_c01078{bottom:84.960000px;}
.y79_c01078{bottom:87.120000px;}
.y77_c01078{bottom:125.280000px;}
.y78_c01078{bottom:126.720000px;}
.y73_c01078{bottom:127.440000px;}
.y74_c01078{bottom:128.160000px;}
.y76_c01078{bottom:128.880000px;}
.y75_c01078{bottom:130.320000px;}
.y72_c01078{bottom:131.760000px;}
.y70_c01078{bottom:169.200000px;}
.y71_c01078{bottom:169.920000px;}
.y6d_c01078{bottom:170.640000px;}
.y6e_c01078{bottom:171.360000px;}
.y6f_c01078{bottom:173.520000px;}
.y6c_c01078{bottom:174.960000px;}
.y6b_c01078{bottom:212.400000px;}
.y69_c01078{bottom:213.120000px;}
.y67_c01078{bottom:213.840000px;}
.y68_c01078{bottom:214.560000px;}
.y6a_c01078{bottom:216.000000px;}
.y66_c01078{bottom:217.440000px;}
.y63_c01078{bottom:255.600000px;}
.y65_c01078{bottom:256.320000px;}
.y64_c01078{bottom:257.040000px;}
.y62_c01078{bottom:259.200000px;}
.y60_c01078{bottom:298.080000px;}
.y61_c01078{bottom:298.800000px;}
.y5e_c01078{bottom:300.240000px;}
.y5f_c01078{bottom:301.680000px;}
.y5d_c01078{bottom:302.400000px;}
.y5a_c01078{bottom:342.000000px;}
.y59_c01078{bottom:342.720000px;}
.y5b_c01078{bottom:343.440000px;}
.y5c_c01078{bottom:344.880000px;}
.y58_c01078{bottom:345.600000px;}
.y55_c01078{bottom:384.480000px;}
.y54_c01078{bottom:385.200000px;}
.y56_c01078{bottom:385.920000px;}
.y57_c01078{bottom:386.640000px;}
.y53_c01078{bottom:388.080000px;}
.y4c_c01078{bottom:427.680000px;}
.y51_c01078{bottom:429.120000px;}
.y4b_c01078{bottom:429.840000px;}
.y52_c01078{bottom:431.280000px;}
.y4a_c01078{bottom:470.160000px;}
.y4f_c01078{bottom:471.600000px;}
.y50_c01078{bottom:472.320000px;}
.y49_c01078{bottom:473.040000px;}
.y47_c01078{bottom:513.360000px;}
.y4e_c01078{bottom:514.080000px;}
.y4d_c01078{bottom:514.800000px;}
.y46_c01078{bottom:515.520000px;}
.y48_c01078{bottom:516.960000px;}
.y45_c01078{bottom:559.440000px;}
.y44_c01078{bottom:560.160000px;}
.y3e_c01078{bottom:587.520000px;}
.y3f_c01078{bottom:588.960000px;}
.y3d_c01078{bottom:589.680000px;}
.y41_c01078{bottom:590.400000px;}
.y42_c01078{bottom:591.120000px;}
.y40_c01078{bottom:591.840000px;}
.y43_c01078{bottom:592.560000px;}
.y3a_c01078{bottom:632.160000px;}
.y3b_c01078{bottom:633.600000px;}
.y3c_c01078{bottom:635.040000px;}
.y37_c01078{bottom:664.560000px;}
.y38_c01078{bottom:666.720000px;}
.y39_c01078{bottom:667.440000px;}
.y33_c01078{bottom:696.960000px;}
.y32_c01078{bottom:697.680000px;}
.y36_c01078{bottom:698.400000px;}
.y35_c01078{bottom:699.120000px;}
.y34_c01078{bottom:699.840000px;}
.y31_c01078{bottom:732.960000px;}
.y2e_c01078{bottom:739.440000px;}
.y2c_c01078{bottom:740.880000px;}
.y2f_c01078{bottom:741.600000px;}
.y2d_c01078{bottom:742.320000px;}
.y30_c01078{bottom:743.760000px;}
.y27_c01078{bottom:782.640000px;}
.y26_c01078{bottom:783.360000px;}
.y2a_c01078{bottom:784.080000px;}
.y2b_c01078{bottom:784.800000px;}
.y28_c01078{bottom:785.520000px;}
.y29_c01078{bottom:786.240000px;}
.y20_c01078{bottom:825.840000px;}
.y1f_c01078{bottom:826.560000px;}
.y24_c01078{bottom:827.280000px;}
.y22_c01078{bottom:828.000000px;}
.y21_c01078{bottom:828.720000px;}
.y23_c01078{bottom:829.440000px;}
.y25_c01078{bottom:830.160000px;}
.y18_c01078{bottom:869.040000px;}
.y1b_c01078{bottom:869.760000px;}
.y1d_c01078{bottom:870.480000px;}
.y1a_c01078{bottom:871.200000px;}
.y19_c01078{bottom:871.920000px;}
.y1c_c01078{bottom:872.640000px;}
.y1e_c01078{bottom:874.080000px;}
.y13_c01078{bottom:911.520000px;}
.y14_c01078{bottom:914.400000px;}
.y15_c01078{bottom:915.840000px;}
.y17_c01078{bottom:916.560000px;}
.y16_c01078{bottom:917.280000px;}
.ye_c01078{bottom:954.720000px;}
.y11_c01078{bottom:956.880000px;}
.yf_c01078{bottom:957.600000px;}
.y10_c01078{bottom:958.320000px;}
.y12_c01078{bottom:960.480000px;}
.y8_c01078{bottom:997.200000px;}
.y9_c01078{bottom:997.920000px;}
.yb_c01078{bottom:999.360000px;}
.ya_c01078{bottom:1000.080000px;}
.yc_c01078{bottom:1000.800000px;}
.yd_c01078{bottom:1003.680000px;}
.y2_c01078{bottom:1040.400000px;}
.y3_c01078{bottom:1042.560000px;}
.y5_c01078{bottom:1043.280000px;}
.y6_c01078{bottom:1044.000000px;}
.y4_c01078{bottom:1044.720000px;}
.y7_c01078{bottom:1046.160000px;}
.y1_c01078{bottom:1109.520000px;}
.h6_c01078{height:31.100625px;}
.hf_c01078{height:33.692344px;}
.h12_c01078{height:36.284062px;}
.h11_c01078{height:38.875781px;}
.hc_c01078{height:41.467500px;}
.h7_c01078{height:44.059219px;}
.h8_c01078{height:46.650937px;}
.h9_c01078{height:49.242656px;}
.h5_c01078{height:51.834375px;}
.h3_c01078{height:54.426094px;}
.h4_c01078{height:57.017812px;}
.hd_c01078{height:57.306094px;}
.ha_c01078{height:59.609531px;}
.hb_c01078{height:62.201250px;}
.h10_c01078{height:64.792969px;}
.h2_c01078{height:67.384687px;}
.he_c01078{height:69.976406px;}
.h0_c01078{height:1160.640000px;}
.h1_c01078{height:1161.000000px;}
.w0_c01078{width:810.000000px;}
.x0_c01078{left:0.000000px;}
.x2_c01078{left:95.760000px;}
.x16_c01078{left:160.560000px;}
.x1b_c01078{left:169.200000px;}
.x3_c01078{left:170.640000px;}
.x1d_c01078{left:223.920000px;}
.x4_c01078{left:256.320000px;}
.x1c_c01078{left:266.400000px;}
.x23_c01078{left:267.840000px;}
.xb_c01078{left:309.600000px;}
.x12_c01078{left:311.040000px;}
.x5_c01078{left:321.840000px;}
.x24_c01078{left:353.520000px;}
.xc_c01078{left:364.320000px;}
.x6_c01078{left:375.840000px;}
.xd_c01078{left:408.240000px;}
.x19_c01078{left:418.320000px;}
.x13_c01078{left:419.760000px;}
.x25_c01078{left:451.440000px;}
.xf_c01078{left:460.800000px;}
.x1a_c01078{left:462.240000px;}
.x17_c01078{left:471.600000px;}
.x15_c01078{left:505.440000px;}
.x10_c01078{left:516.240000px;}
.x18_c01078{left:527.040000px;}
.x26_c01078{left:543.600000px;}
.x21_c01078{left:555.120000px;}
.xe_c01078{left:570.240000px;}
.x7_c01078{left:572.400000px;}
.x1f_c01078{left:604.080000px;}
.x1e_c01078{left:625.680000px;}
.x22_c01078{left:648.720000px;}
.x8_c01078{left:658.800000px;}
.x1_c01078{left:691.920000px;}
.x20_c01078{left:702.720000px;}
.x9_c01078{left:725.040000px;}
.x14_c01078{left:734.400000px;}
.x11_c01078{left:735.840000px;}
.xa_c01078{left:756.000000px;}
@media print{
.v0_c01078{vertical-align:0.000000pt;}
.v1_c01078{vertical-align:2.560000pt;}
.ls0_c01078{letter-spacing:0.000000pt;}
.ws2_c01078{word-spacing:0.000000pt;}
.ws1_c01078{word-spacing:12.507947pt;}
.ws0_c01078{word-spacing:158.684800pt;}
.fs4_c01078{font-size:30.720000pt;}
.fsc_c01078{font-size:33.280000pt;}
.fsf_c01078{font-size:35.840000pt;}
.fse_c01078{font-size:38.400000pt;}
.fsa_c01078{font-size:40.960000pt;}
.fs5_c01078{font-size:43.520000pt;}
.fs6_c01078{font-size:46.080000pt;}
.fs7_c01078{font-size:48.640000pt;}
.fs3_c01078{font-size:51.200000pt;}
.fs1_c01078{font-size:53.760000pt;}
.fs2_c01078{font-size:56.320000pt;}
.fs8_c01078{font-size:58.880000pt;}
.fs9_c01078{font-size:61.440000pt;}
.fsd_c01078{font-size:64.000000pt;}
.fs0_c01078{font-size:66.560000pt;}
.fsb_c01078{font-size:69.120000pt;}
.y0_c01078{bottom:0.000000pt;}
.y7d_c01078{bottom:72.960000pt;}
.y7b_c01078{bottom:74.240000pt;}
.y7a_c01078{bottom:74.880000pt;}
.y7c_c01078{bottom:75.520000pt;}
.y79_c01078{bottom:77.440000pt;}
.y77_c01078{bottom:111.360000pt;}
.y78_c01078{bottom:112.640000pt;}
.y73_c01078{bottom:113.280000pt;}
.y74_c01078{bottom:113.920000pt;}
.y76_c01078{bottom:114.560000pt;}
.y75_c01078{bottom:115.840000pt;}
.y72_c01078{bottom:117.120000pt;}
.y70_c01078{bottom:150.400000pt;}
.y71_c01078{bottom:151.040000pt;}
.y6d_c01078{bottom:151.680000pt;}
.y6e_c01078{bottom:152.320000pt;}
.y6f_c01078{bottom:154.240000pt;}
.y6c_c01078{bottom:155.520000pt;}
.y6b_c01078{bottom:188.800000pt;}
.y69_c01078{bottom:189.440000pt;}
.y67_c01078{bottom:190.080000pt;}
.y68_c01078{bottom:190.720000pt;}
.y6a_c01078{bottom:192.000000pt;}
.y66_c01078{bottom:193.280000pt;}
.y63_c01078{bottom:227.200000pt;}
.y65_c01078{bottom:227.840000pt;}
.y64_c01078{bottom:228.480000pt;}
.y62_c01078{bottom:230.400000pt;}
.y60_c01078{bottom:264.960000pt;}
.y61_c01078{bottom:265.600000pt;}
.y5e_c01078{bottom:266.880000pt;}
.y5f_c01078{bottom:268.160000pt;}
.y5d_c01078{bottom:268.800000pt;}
.y5a_c01078{bottom:304.000000pt;}
.y59_c01078{bottom:304.640000pt;}
.y5b_c01078{bottom:305.280000pt;}
.y5c_c01078{bottom:306.560000pt;}
.y58_c01078{bottom:307.200000pt;}
.y55_c01078{bottom:341.760000pt;}
.y54_c01078{bottom:342.400000pt;}
.y56_c01078{bottom:343.040000pt;}
.y57_c01078{bottom:343.680000pt;}
.y53_c01078{bottom:344.960000pt;}
.y4c_c01078{bottom:380.160000pt;}
.y51_c01078{bottom:381.440000pt;}
.y4b_c01078{bottom:382.080000pt;}
.y52_c01078{bottom:383.360000pt;}
.y4a_c01078{bottom:417.920000pt;}
.y4f_c01078{bottom:419.200000pt;}
.y50_c01078{bottom:419.840000pt;}
.y49_c01078{bottom:420.480000pt;}
.y47_c01078{bottom:456.320000pt;}
.y4e_c01078{bottom:456.960000pt;}
.y4d_c01078{bottom:457.600000pt;}
.y46_c01078{bottom:458.240000pt;}
.y48_c01078{bottom:459.520000pt;}
.y45_c01078{bottom:497.280000pt;}
.y44_c01078{bottom:497.920000pt;}
.y3e_c01078{bottom:522.240000pt;}
.y3f_c01078{bottom:523.520000pt;}
.y3d_c01078{bottom:524.160000pt;}
.y41_c01078{bottom:524.800000pt;}
.y42_c01078{bottom:525.440000pt;}
.y40_c01078{bottom:526.080000pt;}
.y43_c01078{bottom:526.720000pt;}
.y3a_c01078{bottom:561.920000pt;}
.y3b_c01078{bottom:563.200000pt;}
.y3c_c01078{bottom:564.480000pt;}
.y37_c01078{bottom:590.720000pt;}
.y38_c01078{bottom:592.640000pt;}
.y39_c01078{bottom:593.280000pt;}
.y33_c01078{bottom:619.520000pt;}
.y32_c01078{bottom:620.160000pt;}
.y36_c01078{bottom:620.800000pt;}
.y35_c01078{bottom:621.440000pt;}
.y34_c01078{bottom:622.080000pt;}
.y31_c01078{bottom:651.520000pt;}
.y2e_c01078{bottom:657.280000pt;}
.y2c_c01078{bottom:658.560000pt;}
.y2f_c01078{bottom:659.200000pt;}
.y2d_c01078{bottom:659.840000pt;}
.y30_c01078{bottom:661.120000pt;}
.y27_c01078{bottom:695.680000pt;}
.y26_c01078{bottom:696.320000pt;}
.y2a_c01078{bottom:696.960000pt;}
.y2b_c01078{bottom:697.600000pt;}
.y28_c01078{bottom:698.240000pt;}
.y29_c01078{bottom:698.880000pt;}
.y20_c01078{bottom:734.080000pt;}
.y1f_c01078{bottom:734.720000pt;}
.y24_c01078{bottom:735.360000pt;}
.y22_c01078{bottom:736.000000pt;}
.y21_c01078{bottom:736.640000pt;}
.y23_c01078{bottom:737.280000pt;}
.y25_c01078{bottom:737.920000pt;}
.y18_c01078{bottom:772.480000pt;}
.y1b_c01078{bottom:773.120000pt;}
.y1d_c01078{bottom:773.760000pt;}
.y1a_c01078{bottom:774.400000pt;}
.y19_c01078{bottom:775.040000pt;}
.y1c_c01078{bottom:775.680000pt;}
.y1e_c01078{bottom:776.960000pt;}
.y13_c01078{bottom:810.240000pt;}
.y14_c01078{bottom:812.800000pt;}
.y15_c01078{bottom:814.080000pt;}
.y17_c01078{bottom:814.720000pt;}
.y16_c01078{bottom:815.360000pt;}
.ye_c01078{bottom:848.640000pt;}
.y11_c01078{bottom:850.560000pt;}
.yf_c01078{bottom:851.200000pt;}
.y10_c01078{bottom:851.840000pt;}
.y12_c01078{bottom:853.760000pt;}
.y8_c01078{bottom:886.400000pt;}
.y9_c01078{bottom:887.040000pt;}
.yb_c01078{bottom:888.320000pt;}
.ya_c01078{bottom:888.960000pt;}
.yc_c01078{bottom:889.600000pt;}
.yd_c01078{bottom:892.160000pt;}
.y2_c01078{bottom:924.800000pt;}
.y3_c01078{bottom:926.720000pt;}
.y5_c01078{bottom:927.360000pt;}
.y6_c01078{bottom:928.000000pt;}
.y4_c01078{bottom:928.640000pt;}
.y7_c01078{bottom:929.920000pt;}
.y1_c01078{bottom:986.240000pt;}
.h6_c01078{height:27.645000pt;}
.hf_c01078{height:29.948750pt;}
.h12_c01078{height:32.252500pt;}
.h11_c01078{height:34.556250pt;}
.hc_c01078{height:36.860000pt;}
.h7_c01078{height:39.163750pt;}
.h8_c01078{height:41.467500pt;}
.h9_c01078{height:43.771250pt;}
.h5_c01078{height:46.075000pt;}
.h3_c01078{height:48.378750pt;}
.h4_c01078{height:50.682500pt;}
.hd_c01078{height:50.938750pt;}
.ha_c01078{height:52.986250pt;}
.hb_c01078{height:55.290000pt;}
.h10_c01078{height:57.593750pt;}
.h2_c01078{height:59.897500pt;}
.he_c01078{height:62.201250pt;}
.h0_c01078{height:1031.680000pt;}
.h1_c01078{height:1032.000000pt;}
.w0_c01078{width:720.000000pt;}
.x0_c01078{left:0.000000pt;}
.x2_c01078{left:85.120000pt;}
.x16_c01078{left:142.720000pt;}
.x1b_c01078{left:150.400000pt;}
.x3_c01078{left:151.680000pt;}
.x1d_c01078{left:199.040000pt;}
.x4_c01078{left:227.840000pt;}
.x1c_c01078{left:236.800000pt;}
.x23_c01078{left:238.080000pt;}
.xb_c01078{left:275.200000pt;}
.x12_c01078{left:276.480000pt;}
.x5_c01078{left:286.080000pt;}
.x24_c01078{left:314.240000pt;}
.xc_c01078{left:323.840000pt;}
.x6_c01078{left:334.080000pt;}
.xd_c01078{left:362.880000pt;}
.x19_c01078{left:371.840000pt;}
.x13_c01078{left:373.120000pt;}
.x25_c01078{left:401.280000pt;}
.xf_c01078{left:409.600000pt;}
.x1a_c01078{left:410.880000pt;}
.x17_c01078{left:419.200000pt;}
.x15_c01078{left:449.280000pt;}
.x10_c01078{left:458.880000pt;}
.x18_c01078{left:468.480000pt;}
.x26_c01078{left:483.200000pt;}
.x21_c01078{left:493.440000pt;}
.xe_c01078{left:506.880000pt;}
.x7_c01078{left:508.800000pt;}
.x1f_c01078{left:536.960000pt;}
.x1e_c01078{left:556.160000pt;}
.x22_c01078{left:576.640000pt;}
.x8_c01078{left:585.600000pt;}
.x1_c01078{left:615.040000pt;}
.x20_c01078{left:624.640000pt;}
.x9_c01078{left:644.480000pt;}
.x14_c01078{left:652.800000pt;}
.x11_c01078{left:654.080000pt;}
.xa_c01078{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_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_7408bfc1f4ea7b4834e974d4.woff2')format("woff");}.ff1_c01079{font-family:ff1_c01079;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m30_c01079{transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);}
.m5d_c01079{transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);}
.m4b_c01079{transform:matrix(0.201075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201075,0.000000,0.000000,0.250000,0,0);}
.m5a_c01079{transform:matrix(0.214275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214275,0.000000,0.000000,0.250000,0,0);}
.m27_c01079{transform:matrix(0.215950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215950,0.000000,0.000000,0.250000,0,0);}
.m2_c01079{transform:matrix(0.225425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225425,0.000000,0.000000,0.250000,0,0);}
.m44_c01079{transform:matrix(0.226125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226125,0.000000,0.000000,0.250000,0,0);}
.m47_c01079{transform:matrix(0.228025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228025,0.000000,0.000000,0.250000,0,0);}
.m4f_c01079{transform:matrix(0.229950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229950,0.000000,0.000000,0.250000,0,0);}
.m32_c01079{transform:matrix(0.231700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231700,0.000000,0.000000,0.250000,0,0);}
.m11_c01079{transform:matrix(0.232125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232125,0.000000,0.000000,0.250000,0,0);}
.m57_c01079{transform:matrix(0.234200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234200,0.000000,0.000000,0.250000,0,0);}
.m28_c01079{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m29_c01079{transform:matrix(0.238175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238175,0.000000,0.000000,0.250000,0,0);}
.m38_c01079{transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);}
.m5b_c01079{transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);}
.m4e_c01079{transform:matrix(0.244325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244325,0.000000,0.000000,0.250000,0,0);}
.m1f_c01079{transform:matrix(0.247175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247175,0.000000,0.000000,0.250000,0,0);}
.m52_c01079{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.mb_c01079{transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);}
.m4c_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);}
.m13_c01079{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);}
.m3c_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);}
.ma_c01079{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);}
.m20_c01079{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);}
.m36_c01079{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mf_c01079{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m7_c01079{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);}
.m2f_c01079{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);}
.m3b_c01079{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m8_c01079{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01079{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m21_c01079{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);}
.m5c_c01079{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m12_c01079{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);}
.m5e_c01079{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m6_c01079{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m35_c01079{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m41_c01079{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m18_c01079{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m14_c01079{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m40_c01079{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m37_c01079{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m22_c01079{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m9_c01079{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m39_c01079{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m5_c01079{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.me_c01079{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m15_c01079{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m45_c01079{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m19_c01079{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);}
.m43_c01079{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);}
.m4a_c01079{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m46_c01079{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);}
.m24_c01079{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1_c01079{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);}
.m56_c01079{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m53_c01079{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);}
.m10_c01079{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01079{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m42_c01079{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m55_c01079{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);}
.m2c_c01079{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);}
.m0_c01079{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m58_c01079{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);}
.m3f_c01079{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m51_c01079{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);}
.m25_c01079{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);}
.m34_c01079{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01079{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);}
.m33_c01079{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01079{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);}
.m3e_c01079{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m59_c01079{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m50_c01079{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m17_c01079{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01079{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m31_c01079{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m54_c01079{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);}
.m48_c01079{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01079{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m16_c01079{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);}
.m1e_c01079{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);}
.m49_c01079{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01079{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m4_c01079{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);}
.mc_c01079{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m3_c01079{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m26_c01079{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01079{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01079{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01079{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01079{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.md_c01079{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m23_c01079{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.v0_c01079{vertical-align:0.000000px;}
.ls0_c01079{letter-spacing:0.000000px;}
.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:-6.111360px;}
.ws1_c01079{word-spacing:0.000000px;}
.fc0_c01079{color:transparent;}
.fsb_c01079{font-size:34.560000px;}
.fs4_c01079{font-size:37.440000px;}
.fse_c01079{font-size:40.320000px;}
.fsd_c01079{font-size:43.200000px;}
.fs10_c01079{font-size:46.080000px;}
.fsf_c01079{font-size:48.960000px;}
.fs3_c01079{font-size:51.840000px;}
.fs9_c01079{font-size:54.720000px;}
.fs8_c01079{font-size:57.600000px;}
.fs5_c01079{font-size:60.480000px;}
.fs1_c01079{font-size:63.360000px;}
.fsc_c01079{font-size:66.240000px;}
.fs7_c01079{font-size:69.120000px;}
.fs0_c01079{font-size:72.000000px;}
.fsa_c01079{font-size:74.880000px;}
.fs2_c01079{font-size:77.760000px;}
.fs11_c01079{font-size:80.640000px;}
.fs6_c01079{font-size:103.680000px;}
.y0_c01079{bottom:0.000000px;}
.y9a_c01079{bottom:20.880000px;}
.y98_c01079{bottom:23.040000px;}
.y99_c01079{bottom:24.480000px;}
.y9c_c01079{bottom:49.680000px;}
.y97_c01079{bottom:51.120000px;}
.y93_c01079{bottom:52.560000px;}
.y96_c01079{bottom:53.280000px;}
.y95_c01079{bottom:54.000000px;}
.y94_c01079{bottom:54.720000px;}
.y91_c01079{bottom:56.160000px;}
.y92_c01079{bottom:56.880000px;}
.y90_c01079{bottom:92.880000px;}
.y8d_c01079{bottom:95.760000px;}
.y8f_c01079{bottom:97.920000px;}
.y8e_c01079{bottom:98.640000px;}
.y8b_c01079{bottom:124.560000px;}
.y9b_c01079{bottom:125.280000px;}
.y88_c01079{bottom:126.000000px;}
.y8c_c01079{bottom:126.720000px;}
.y8a_c01079{bottom:128.160000px;}
.y89_c01079{bottom:128.880000px;}
.y87_c01079{bottom:129.600000px;}
.y86_c01079{bottom:167.760000px;}
.y84_c01079{bottom:172.080000px;}
.y85_c01079{bottom:172.800000px;}
.y82_c01079{bottom:200.880000px;}
.y80_c01079{bottom:201.600000px;}
.y83_c01079{bottom:203.040000px;}
.y81_c01079{bottom:203.760000px;}
.y7f_c01079{bottom:205.920000px;}
.y7e_c01079{bottom:243.360000px;}
.y7c_c01079{bottom:245.520000px;}
.y7d_c01079{bottom:246.960000px;}
.y78_c01079{bottom:275.760000px;}
.y7b_c01079{bottom:277.200000px;}
.y7a_c01079{bottom:277.920000px;}
.y77_c01079{bottom:278.640000px;}
.y79_c01079{bottom:279.360000px;}
.y76_c01079{bottom:310.320000px;}
.y74_c01079{bottom:317.520000px;}
.y70_c01079{bottom:318.240000px;}
.y73_c01079{bottom:318.960000px;}
.y75_c01079{bottom:319.680000px;}
.y71_c01079{bottom:320.400000px;}
.y72_c01079{bottom:321.120000px;}
.y6f_c01079{bottom:321.840000px;}
.y6e_c01079{bottom:322.560000px;}
.y6c_c01079{bottom:362.880000px;}
.y6d_c01079{bottom:363.600000px;}
.y6b_c01079{bottom:365.760000px;}
.y66_c01079{bottom:393.120000px;}
.y69_c01079{bottom:393.840000px;}
.y68_c01079{bottom:394.560000px;}
.y6a_c01079{bottom:395.280000px;}
.y65_c01079{bottom:396.000000px;}
.y67_c01079{bottom:396.720000px;}
.y60_c01079{bottom:436.320000px;}
.y62_c01079{bottom:437.040000px;}
.y63_c01079{bottom:437.760000px;}
.y64_c01079{bottom:438.480000px;}
.y5f_c01079{bottom:439.200000px;}
.y61_c01079{bottom:439.920000px;}
.y5a_c01079{bottom:479.520000px;}
.y5d_c01079{bottom:480.240000px;}
.y59_c01079{bottom:481.680000px;}
.y5b_c01079{bottom:482.400000px;}
.y5c_c01079{bottom:483.120000px;}
.y5e_c01079{bottom:483.840000px;}
.y54_c01079{bottom:522.000000px;}
.y58_c01079{bottom:522.720000px;}
.y56_c01079{bottom:523.440000px;}
.y57_c01079{bottom:524.160000px;}
.y53_c01079{bottom:524.880000px;}
.y55_c01079{bottom:525.600000px;}
.y4c_c01079{bottom:564.480000px;}
.y4f_c01079{bottom:565.920000px;}
.y4d_c01079{bottom:566.640000px;}
.y4b_c01079{bottom:567.360000px;}
.y4e_c01079{bottom:568.800000px;}
.y50_c01079{bottom:569.520000px;}
.y51_c01079{bottom:570.240000px;}
.y52_c01079{bottom:570.960000px;}
.y47_c01079{bottom:608.400000px;}
.y48_c01079{bottom:609.120000px;}
.y46_c01079{bottom:609.840000px;}
.y4a_c01079{bottom:610.560000px;}
.y49_c01079{bottom:611.280000px;}
.y40_c01079{bottom:651.600000px;}
.y3f_c01079{bottom:652.320000px;}
.y41_c01079{bottom:653.040000px;}
.y44_c01079{bottom:653.760000px;}
.y43_c01079{bottom:654.480000px;}
.y42_c01079{bottom:655.200000px;}
.y45_c01079{bottom:656.640000px;}
.y39_c01079{bottom:693.360000px;}
.y38_c01079{bottom:694.800000px;}
.y3a_c01079{bottom:695.520000px;}
.y3c_c01079{bottom:696.960000px;}
.y3e_c01079{bottom:697.680000px;}
.y3b_c01079{bottom:698.400000px;}
.y3d_c01079{bottom:699.120000px;}
.y33_c01079{bottom:736.560000px;}
.y32_c01079{bottom:737.280000px;}
.y34_c01079{bottom:738.000000px;}
.y36_c01079{bottom:740.160000px;}
.y35_c01079{bottom:740.880000px;}
.y37_c01079{bottom:742.320000px;}
.y2b_c01079{bottom:778.320000px;}
.y2a_c01079{bottom:780.480000px;}
.y30_c01079{bottom:781.200000px;}
.y2e_c01079{bottom:781.920000px;}
.y31_c01079{bottom:782.640000px;}
.y2d_c01079{bottom:783.360000px;}
.y2c_c01079{bottom:784.080000px;}
.y2f_c01079{bottom:784.800000px;}
.y29_c01079{bottom:816.480000px;}
.y25_c01079{bottom:822.240000px;}
.y24_c01079{bottom:824.400000px;}
.y26_c01079{bottom:825.840000px;}
.y27_c01079{bottom:826.560000px;}
.y28_c01079{bottom:827.280000px;}
.y1e_c01079{bottom:864.720000px;}
.y21_c01079{bottom:866.160000px;}
.y1d_c01079{bottom:867.600000px;}
.y1f_c01079{bottom:869.040000px;}
.y20_c01079{bottom:869.760000px;}
.y22_c01079{bottom:871.200000px;}
.y23_c01079{bottom:871.920000px;}
.y16_c01079{bottom:907.200000px;}
.y15_c01079{bottom:908.640000px;}
.y19_c01079{bottom:909.360000px;}
.y17_c01079{bottom:910.800000px;}
.y18_c01079{bottom:911.520000px;}
.y1b_c01079{bottom:912.960000px;}
.y1c_c01079{bottom:913.680000px;}
.y1a_c01079{bottom:914.400000px;}
.y10_c01079{bottom:950.400000px;}
.y12_c01079{bottom:951.840000px;}
.yf_c01079{bottom:953.280000px;}
.y11_c01079{bottom:954.720000px;}
.y13_c01079{bottom:955.440000px;}
.y14_c01079{bottom:956.160000px;}
.yb_c01079{bottom:993.600000px;}
.ya_c01079{bottom:995.040000px;}
.yd_c01079{bottom:995.760000px;}
.yc_c01079{bottom:998.640000px;}
.ye_c01079{bottom:999.360000px;}
.y6_c01079{bottom:1033.200000px;}
.y3_c01079{bottom:1036.080000px;}
.y2_c01079{bottom:1038.240000px;}
.y5_c01079{bottom:1040.400000px;}
.y4_c01079{bottom:1041.840000px;}
.y7_c01079{bottom:1042.560000px;}
.y9_c01079{bottom:1043.280000px;}
.y8_c01079{bottom:1044.720000px;}
.y1_c01079{bottom:1118.160000px;}
.hd_c01079{height:31.100625px;}
.h6_c01079{height:33.692344px;}
.h10_c01079{height:36.284062px;}
.hf_c01079{height:38.875781px;}
.h12_c01079{height:41.467500px;}
.h11_c01079{height:44.059219px;}
.h5_c01079{height:46.650937px;}
.hb_c01079{height:49.242656px;}
.ha_c01079{height:51.834375px;}
.h7_c01079{height:54.426094px;}
.h3_c01079{height:57.017812px;}
.he_c01079{height:59.609531px;}
.h9_c01079{height:62.201250px;}
.h2_c01079{height:64.792969px;}
.hc_c01079{height:67.384687px;}
.h4_c01079{height:69.976406px;}
.h13_c01079{height:72.568125px;}
.h8_c01079{height:93.301875px;}
.h0_c01079{height:1158.480000px;}
.h1_c01079{height:1158.750000px;}
.w1_c01079{width:806.250000px;}
.w0_c01079{width:806.400000px;}
.x0_c01079{left:0.000000px;}
.x2_c01079{left:92.880000px;}
.x27_c01079{left:94.320000px;}
.x24_c01079{left:137.520000px;}
.x3_c01079{left:167.760000px;}
.x23_c01079{left:210.240000px;}
.x1d_c01079{left:221.760000px;}
.x4_c01079{left:263.520000px;}
.x15_c01079{left:264.960000px;}
.x26_c01079{left:297.360000px;}
.xe_c01079{left:306.720000px;}
.x29_c01079{left:308.880000px;}
.x13_c01079{left:316.800000px;}
.x5_c01079{left:318.960000px;}
.x16_c01079{left:350.640000px;}
.x6_c01079{left:360.720000px;}
.xf_c01079{left:362.160000px;}
.x10_c01079{left:403.920000px;}
.x1b_c01079{left:405.360000px;}
.x17_c01079{left:437.040000px;}
.x1c_c01079{left:448.560000px;}
.x7_c01079{left:457.920000px;}
.x22_c01079{left:459.360000px;}
.x18_c01079{left:480.240000px;}
.x25_c01079{left:491.040000px;}
.x1e_c01079{left:502.560000px;}
.x14_c01079{left:513.360000px;}
.x19_c01079{left:529.200000px;}
.x1f_c01079{left:540.720000px;}
.x8_c01079{left:568.080000px;}
.x28_c01079{left:569.520000px;}
.x20_c01079{left:579.600000px;}
.xc_c01079{left:622.080000px;}
.x11_c01079{left:655.200000px;}
.x9_c01079{left:656.640000px;}
.xa_c01079{left:689.040000px;}
.x12_c01079{left:699.120000px;}
.x1_c01079{left:709.920000px;}
.x21_c01079{left:730.800000px;}
.xb_c01079{left:732.240000px;}
.x2a_c01079{left:733.680000px;}
.x1a_c01079{left:751.680000px;}
.xd_c01079{left:753.120000px;}
@media print{
.v0_c01079{vertical-align:0.000000pt;}
.ls0_c01079{letter-spacing:0.000000pt;}
.ws0_c01079{word-spacing:-5.432320pt;}
.ws1_c01079{word-spacing:0.000000pt;}
.fsb_c01079{font-size:30.720000pt;}
.fs4_c01079{font-size:33.280000pt;}
.fse_c01079{font-size:35.840000pt;}
.fsd_c01079{font-size:38.400000pt;}
.fs10_c01079{font-size:40.960000pt;}
.fsf_c01079{font-size:43.520000pt;}
.fs3_c01079{font-size:46.080000pt;}
.fs9_c01079{font-size:48.640000pt;}
.fs8_c01079{font-size:51.200000pt;}
.fs5_c01079{font-size:53.760000pt;}
.fs1_c01079{font-size:56.320000pt;}
.fsc_c01079{font-size:58.880000pt;}
.fs7_c01079{font-size:61.440000pt;}
.fs0_c01079{font-size:64.000000pt;}
.fsa_c01079{font-size:66.560000pt;}
.fs2_c01079{font-size:69.120000pt;}
.fs11_c01079{font-size:71.680000pt;}
.fs6_c01079{font-size:92.160000pt;}
.y0_c01079{bottom:0.000000pt;}
.y9a_c01079{bottom:18.560000pt;}
.y98_c01079{bottom:20.480000pt;}
.y99_c01079{bottom:21.760000pt;}
.y9c_c01079{bottom:44.160000pt;}
.y97_c01079{bottom:45.440000pt;}
.y93_c01079{bottom:46.720000pt;}
.y96_c01079{bottom:47.360000pt;}
.y95_c01079{bottom:48.000000pt;}
.y94_c01079{bottom:48.640000pt;}
.y91_c01079{bottom:49.920000pt;}
.y92_c01079{bottom:50.560000pt;}
.y90_c01079{bottom:82.560000pt;}
.y8d_c01079{bottom:85.120000pt;}
.y8f_c01079{bottom:87.040000pt;}
.y8e_c01079{bottom:87.680000pt;}
.y8b_c01079{bottom:110.720000pt;}
.y9b_c01079{bottom:111.360000pt;}
.y88_c01079{bottom:112.000000pt;}
.y8c_c01079{bottom:112.640000pt;}
.y8a_c01079{bottom:113.920000pt;}
.y89_c01079{bottom:114.560000pt;}
.y87_c01079{bottom:115.200000pt;}
.y86_c01079{bottom:149.120000pt;}
.y84_c01079{bottom:152.960000pt;}
.y85_c01079{bottom:153.600000pt;}
.y82_c01079{bottom:178.560000pt;}
.y80_c01079{bottom:179.200000pt;}
.y83_c01079{bottom:180.480000pt;}
.y81_c01079{bottom:181.120000pt;}
.y7f_c01079{bottom:183.040000pt;}
.y7e_c01079{bottom:216.320000pt;}
.y7c_c01079{bottom:218.240000pt;}
.y7d_c01079{bottom:219.520000pt;}
.y78_c01079{bottom:245.120000pt;}
.y7b_c01079{bottom:246.400000pt;}
.y7a_c01079{bottom:247.040000pt;}
.y77_c01079{bottom:247.680000pt;}
.y79_c01079{bottom:248.320000pt;}
.y76_c01079{bottom:275.840000pt;}
.y74_c01079{bottom:282.240000pt;}
.y70_c01079{bottom:282.880000pt;}
.y73_c01079{bottom:283.520000pt;}
.y75_c01079{bottom:284.160000pt;}
.y71_c01079{bottom:284.800000pt;}
.y72_c01079{bottom:285.440000pt;}
.y6f_c01079{bottom:286.080000pt;}
.y6e_c01079{bottom:286.720000pt;}
.y6c_c01079{bottom:322.560000pt;}
.y6d_c01079{bottom:323.200000pt;}
.y6b_c01079{bottom:325.120000pt;}
.y66_c01079{bottom:349.440000pt;}
.y69_c01079{bottom:350.080000pt;}
.y68_c01079{bottom:350.720000pt;}
.y6a_c01079{bottom:351.360000pt;}
.y65_c01079{bottom:352.000000pt;}
.y67_c01079{bottom:352.640000pt;}
.y60_c01079{bottom:387.840000pt;}
.y62_c01079{bottom:388.480000pt;}
.y63_c01079{bottom:389.120000pt;}
.y64_c01079{bottom:389.760000pt;}
.y5f_c01079{bottom:390.400000pt;}
.y61_c01079{bottom:391.040000pt;}
.y5a_c01079{bottom:426.240000pt;}
.y5d_c01079{bottom:426.880000pt;}
.y59_c01079{bottom:428.160000pt;}
.y5b_c01079{bottom:428.800000pt;}
.y5c_c01079{bottom:429.440000pt;}
.y5e_c01079{bottom:430.080000pt;}
.y54_c01079{bottom:464.000000pt;}
.y58_c01079{bottom:464.640000pt;}
.y56_c01079{bottom:465.280000pt;}
.y57_c01079{bottom:465.920000pt;}
.y53_c01079{bottom:466.560000pt;}
.y55_c01079{bottom:467.200000pt;}
.y4c_c01079{bottom:501.760000pt;}
.y4f_c01079{bottom:503.040000pt;}
.y4d_c01079{bottom:503.680000pt;}
.y4b_c01079{bottom:504.320000pt;}
.y4e_c01079{bottom:505.600000pt;}
.y50_c01079{bottom:506.240000pt;}
.y51_c01079{bottom:506.880000pt;}
.y52_c01079{bottom:507.520000pt;}
.y47_c01079{bottom:540.800000pt;}
.y48_c01079{bottom:541.440000pt;}
.y46_c01079{bottom:542.080000pt;}
.y4a_c01079{bottom:542.720000pt;}
.y49_c01079{bottom:543.360000pt;}
.y40_c01079{bottom:579.200000pt;}
.y3f_c01079{bottom:579.840000pt;}
.y41_c01079{bottom:580.480000pt;}
.y44_c01079{bottom:581.120000pt;}
.y43_c01079{bottom:581.760000pt;}
.y42_c01079{bottom:582.400000pt;}
.y45_c01079{bottom:583.680000pt;}
.y39_c01079{bottom:616.320000pt;}
.y38_c01079{bottom:617.600000pt;}
.y3a_c01079{bottom:618.240000pt;}
.y3c_c01079{bottom:619.520000pt;}
.y3e_c01079{bottom:620.160000pt;}
.y3b_c01079{bottom:620.800000pt;}
.y3d_c01079{bottom:621.440000pt;}
.y33_c01079{bottom:654.720000pt;}
.y32_c01079{bottom:655.360000pt;}
.y34_c01079{bottom:656.000000pt;}
.y36_c01079{bottom:657.920000pt;}
.y35_c01079{bottom:658.560000pt;}
.y37_c01079{bottom:659.840000pt;}
.y2b_c01079{bottom:691.840000pt;}
.y2a_c01079{bottom:693.760000pt;}
.y30_c01079{bottom:694.400000pt;}
.y2e_c01079{bottom:695.040000pt;}
.y31_c01079{bottom:695.680000pt;}
.y2d_c01079{bottom:696.320000pt;}
.y2c_c01079{bottom:696.960000pt;}
.y2f_c01079{bottom:697.600000pt;}
.y29_c01079{bottom:725.760000pt;}
.y25_c01079{bottom:730.880000pt;}
.y24_c01079{bottom:732.800000pt;}
.y26_c01079{bottom:734.080000pt;}
.y27_c01079{bottom:734.720000pt;}
.y28_c01079{bottom:735.360000pt;}
.y1e_c01079{bottom:768.640000pt;}
.y21_c01079{bottom:769.920000pt;}
.y1d_c01079{bottom:771.200000pt;}
.y1f_c01079{bottom:772.480000pt;}
.y20_c01079{bottom:773.120000pt;}
.y22_c01079{bottom:774.400000pt;}
.y23_c01079{bottom:775.040000pt;}
.y16_c01079{bottom:806.400000pt;}
.y15_c01079{bottom:807.680000pt;}
.y19_c01079{bottom:808.320000pt;}
.y17_c01079{bottom:809.600000pt;}
.y18_c01079{bottom:810.240000pt;}
.y1b_c01079{bottom:811.520000pt;}
.y1c_c01079{bottom:812.160000pt;}
.y1a_c01079{bottom:812.800000pt;}
.y10_c01079{bottom:844.800000pt;}
.y12_c01079{bottom:846.080000pt;}
.yf_c01079{bottom:847.360000pt;}
.y11_c01079{bottom:848.640000pt;}
.y13_c01079{bottom:849.280000pt;}
.y14_c01079{bottom:849.920000pt;}
.yb_c01079{bottom:883.200000pt;}
.ya_c01079{bottom:884.480000pt;}
.yd_c01079{bottom:885.120000pt;}
.yc_c01079{bottom:887.680000pt;}
.ye_c01079{bottom:888.320000pt;}
.y6_c01079{bottom:918.400000pt;}
.y3_c01079{bottom:920.960000pt;}
.y2_c01079{bottom:922.880000pt;}
.y5_c01079{bottom:924.800000pt;}
.y4_c01079{bottom:926.080000pt;}
.y7_c01079{bottom:926.720000pt;}
.y9_c01079{bottom:927.360000pt;}
.y8_c01079{bottom:928.640000pt;}
.y1_c01079{bottom:993.920000pt;}
.hd_c01079{height:27.645000pt;}
.h6_c01079{height:29.948750pt;}
.h10_c01079{height:32.252500pt;}
.hf_c01079{height:34.556250pt;}
.h12_c01079{height:36.860000pt;}
.h11_c01079{height:39.163750pt;}
.h5_c01079{height:41.467500pt;}
.hb_c01079{height:43.771250pt;}
.ha_c01079{height:46.075000pt;}
.h7_c01079{height:48.378750pt;}
.h3_c01079{height:50.682500pt;}
.he_c01079{height:52.986250pt;}
.h9_c01079{height:55.290000pt;}
.h2_c01079{height:57.593750pt;}
.hc_c01079{height:59.897500pt;}
.h4_c01079{height:62.201250pt;}
.h13_c01079{height:64.505000pt;}
.h8_c01079{height:82.935000pt;}
.h0_c01079{height:1029.760000pt;}
.h1_c01079{height:1030.000000pt;}
.w1_c01079{width:716.666667pt;}
.w0_c01079{width:716.800000pt;}
.x0_c01079{left:0.000000pt;}
.x2_c01079{left:82.560000pt;}
.x27_c01079{left:83.840000pt;}
.x24_c01079{left:122.240000pt;}
.x3_c01079{left:149.120000pt;}
.x23_c01079{left:186.880000pt;}
.x1d_c01079{left:197.120000pt;}
.x4_c01079{left:234.240000pt;}
.x15_c01079{left:235.520000pt;}
.x26_c01079{left:264.320000pt;}
.xe_c01079{left:272.640000pt;}
.x29_c01079{left:274.560000pt;}
.x13_c01079{left:281.600000pt;}
.x5_c01079{left:283.520000pt;}
.x16_c01079{left:311.680000pt;}
.x6_c01079{left:320.640000pt;}
.xf_c01079{left:321.920000pt;}
.x10_c01079{left:359.040000pt;}
.x1b_c01079{left:360.320000pt;}
.x17_c01079{left:388.480000pt;}
.x1c_c01079{left:398.720000pt;}
.x7_c01079{left:407.040000pt;}
.x22_c01079{left:408.320000pt;}
.x18_c01079{left:426.880000pt;}
.x25_c01079{left:436.480000pt;}
.x1e_c01079{left:446.720000pt;}
.x14_c01079{left:456.320000pt;}
.x19_c01079{left:470.400000pt;}
.x1f_c01079{left:480.640000pt;}
.x8_c01079{left:504.960000pt;}
.x28_c01079{left:506.240000pt;}
.x20_c01079{left:515.200000pt;}
.xc_c01079{left:552.960000pt;}
.x11_c01079{left:582.400000pt;}
.x9_c01079{left:583.680000pt;}
.xa_c01079{left:612.480000pt;}
.x12_c01079{left:621.440000pt;}
.x1_c01079{left:631.040000pt;}
.x21_c01079{left:649.600000pt;}
.xb_c01079{left:650.880000pt;}
.x2a_c01079{left:652.160000pt;}
.x1a_c01079{left:668.160000pt;}
.xd_c01079{left:669.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4ec60eb045daa7f5b18702d6.woff2')format("woff");}.ff1_c01080{font-family:ff1_c01080;line-height:1.109863;font-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.130425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130425,0.000000,0.000000,0.250000,0,0);}
.m2b_c01080{transform:matrix(0.202025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202025,0.000000,0.000000,0.250000,0,0);}
.m49_c01080{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m56_c01080{transform:matrix(0.233425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233425,0.000000,0.000000,0.250000,0,0);}
.m45_c01080{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01080{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m13_c01080{transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);}
.m29_c01080{transform:matrix(0.243450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243450,0.000000,0.000000,0.250000,0,0);}
.m3_c01080{transform:matrix(0.244450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244450,0.000000,0.000000,0.250000,0,0);}
.m47_c01080{transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);}
.m46_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);}
.m39_c01080{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);}
.m48_c01080{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);}
.m50_c01080{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m9_c01080{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);}
.m4d_c01080{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);}
.m27_c01080{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m11_c01080{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);}
.m52_c01080{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m19_c01080{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);}
.m2e_c01080{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01080{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m20_c01080{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m10_c01080{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);}
.m1e_c01080{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mf_c01080{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);}
.m36_c01080{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m25_c01080{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01080{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m8_c01080{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01080{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m58_c01080{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m26_c01080{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m30_c01080{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.ma_c01080{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m34_c01080{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m33_c01080{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2_c01080{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m14_c01080{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01080{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01080{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m53_c01080{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01080{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m6_c01080{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);}
.m28_c01080{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.md_c01080{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m5_c01080{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m22_c01080{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);}
.m24_c01080{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1c_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);}
.m42_c01080{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m32_c01080{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);}
.m54_c01080{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m0_c01080{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);}
.m2c_c01080{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m23_c01080{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m51_c01080{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01080{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);}
.m3f_c01080{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);}
.m4a_c01080{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01080{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);}
.m21_c01080{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01080{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);}
.mc_c01080{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m17_c01080{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m55_c01080{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m43_c01080{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m38_c01080{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);}
.m4c_c01080{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01080{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m4_c01080{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m7_c01080{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01080{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);}
.m44_c01080{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m41_c01080{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);}
.m37_c01080{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.me_c01080{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01080{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);}
.mb_c01080{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01080{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);}
.m16_c01080{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m15_c01080{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01080{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m35_c01080{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m40_c01080{transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);}
.m59_c01080{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01080{transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);}
.m12_c01080{transform:matrix(0.775000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.775000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.775000,0.000000,0.000000,0.250000,0,0);}
.m57_c01080{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.m18_c01080{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);}
.v0_c01080{vertical-align:0.000000px;}
.v1_c01080{vertical-align:2.880000px;}
.ls1_c01080{letter-spacing:0.000000px;}
.ls0_c01080{letter-spacing:141.584640px;}
.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;}
}
.ws1_c01080{word-spacing:0.000000px;}
.ws0_c01080{word-spacing:32.464080px;}
.fc0_c01080{color:transparent;}
.fsb_c01080{font-size:20.160000px;}
.fs11_c01080{font-size:23.040000px;}
.fs9_c01080{font-size:34.560000px;}
.fsc_c01080{font-size:37.440000px;}
.fsd_c01080{font-size:43.200000px;}
.fsf_c01080{font-size:46.080000px;}
.fs7_c01080{font-size:48.960000px;}
.fs4_c01080{font-size:51.840000px;}
.fs6_c01080{font-size:54.720000px;}
.fs8_c01080{font-size:57.600000px;}
.fs5_c01080{font-size:60.480000px;}
.fs10_c01080{font-size:63.360000px;}
.fs1_c01080{font-size:66.240000px;}
.fs2_c01080{font-size:69.120000px;}
.fs0_c01080{font-size:72.000000px;}
.fs3_c01080{font-size:74.880000px;}
.fsa_c01080{font-size:77.760000px;}
.fs12_c01080{font-size:80.640000px;}
.fs13_c01080{font-size:83.520000px;}
.fs14_c01080{font-size:86.400000px;}
.fse_c01080{font-size:106.560000px;}
.y0_c01080{bottom:0.000000px;}
.y9c_c01080{bottom:75.600000px;}
.y9d_c01080{bottom:77.040000px;}
.y9b_c01080{bottom:77.760000px;}
.y9e_c01080{bottom:103.680000px;}
.y9a_c01080{bottom:104.400000px;}
.y9f_c01080{bottom:105.840000px;}
.y96_c01080{bottom:106.560000px;}
.y99_c01080{bottom:108.000000px;}
.y98_c01080{bottom:108.720000px;}
.y97_c01080{bottom:109.440000px;}
.y95_c01080{bottom:110.160000px;}
.y8e_c01080{bottom:147.600000px;}
.y93_c01080{bottom:148.320000px;}
.y94_c01080{bottom:149.040000px;}
.y92_c01080{bottom:149.760000px;}
.y8b_c01080{bottom:150.480000px;}
.y8d_c01080{bottom:151.200000px;}
.y8c_c01080{bottom:151.920000px;}
.y8a_c01080{bottom:152.640000px;}
.y89_c01080{bottom:190.800000px;}
.y90_c01080{bottom:191.520000px;}
.y8f_c01080{bottom:192.240000px;}
.y91_c01080{bottom:192.960000px;}
.y87_c01080{bottom:194.400000px;}
.y88_c01080{bottom:195.120000px;}
.y86_c01080{bottom:196.560000px;}
.y85_c01080{bottom:236.160000px;}
.y84_c01080{bottom:236.880000px;}
.y82_c01080{bottom:300.240000px;}
.y83_c01080{bottom:300.960000px;}
.y80_c01080{bottom:301.680000px;}
.y81_c01080{bottom:304.560000px;}
.y7c_c01080{bottom:321.840000px;}
.y7f_c01080{bottom:322.560000px;}
.y7d_c01080{bottom:323.280000px;}
.y7b_c01080{bottom:324.000000px;}
.y7e_c01080{bottom:324.720000px;}
.y7a_c01080{bottom:325.440000px;}
.y77_c01080{bottom:343.440000px;}
.y79_c01080{bottom:344.160000px;}
.y75_c01080{bottom:344.880000px;}
.y78_c01080{bottom:345.600000px;}
.y76_c01080{bottom:347.040000px;}
.y74_c01080{bottom:364.320000px;}
.y71_c01080{bottom:365.040000px;}
.y72_c01080{bottom:365.760000px;}
.y6f_c01080{bottom:366.480000px;}
.y73_c01080{bottom:367.200000px;}
.y70_c01080{bottom:367.920000px;}
.y6d_c01080{bottom:385.920000px;}
.y6e_c01080{bottom:386.640000px;}
.y6c_c01080{bottom:387.360000px;}
.y6b_c01080{bottom:388.080000px;}
.y6a_c01080{bottom:389.520000px;}
.y69_c01080{bottom:407.520000px;}
.y68_c01080{bottom:408.240000px;}
.y65_c01080{bottom:408.960000px;}
.y67_c01080{bottom:410.400000px;}
.y66_c01080{bottom:411.120000px;}
.y64_c01080{bottom:429.120000px;}
.y62_c01080{bottom:429.840000px;}
.y61_c01080{bottom:430.560000px;}
.y5f_c01080{bottom:431.280000px;}
.y63_c01080{bottom:432.720000px;}
.y60_c01080{bottom:434.160000px;}
.y5e_c01080{bottom:450.000000px;}
.y5d_c01080{bottom:450.720000px;}
.y59_c01080{bottom:451.440000px;}
.y5b_c01080{bottom:452.880000px;}
.y5c_c01080{bottom:453.600000px;}
.y5a_c01080{bottom:454.320000px;}
.y58_c01080{bottom:471.600000px;}
.y56_c01080{bottom:472.320000px;}
.y55_c01080{bottom:473.040000px;}
.y54_c01080{bottom:474.480000px;}
.y57_c01080{bottom:475.920000px;}
.y53_c01080{bottom:498.960000px;}
.y52_c01080{bottom:499.680000px;}
.y50_c01080{bottom:500.400000px;}
.y4f_c01080{bottom:501.120000px;}
.y51_c01080{bottom:505.440000px;}
.y4e_c01080{bottom:506.160000px;}
.y4b_c01080{bottom:547.200000px;}
.y4d_c01080{bottom:548.640000px;}
.y4c_c01080{bottom:549.360000px;}
.y4a_c01080{bottom:550.080000px;}
.y49_c01080{bottom:579.600000px;}
.y48_c01080{bottom:580.320000px;}
.y46_c01080{bottom:581.040000px;}
.y47_c01080{bottom:581.760000px;}
.y43_c01080{bottom:611.280000px;}
.y45_c01080{bottom:612.000000px;}
.y42_c01080{bottom:612.720000px;}
.y41_c01080{bottom:613.440000px;}
.y44_c01080{bottom:614.160000px;}
.y3f_c01080{bottom:654.480000px;}
.y40_c01080{bottom:658.080000px;}
.y3d_c01080{bottom:675.360000px;}
.y3a_c01080{bottom:676.080000px;}
.y3e_c01080{bottom:677.520000px;}
.y3b_c01080{bottom:678.960000px;}
.y3c_c01080{bottom:681.120000px;}
.y36_c01080{bottom:686.880000px;}
.y39_c01080{bottom:698.400000px;}
.y37_c01080{bottom:699.120000px;}
.y38_c01080{bottom:699.840000px;}
.y32_c01080{bottom:738.720000px;}
.y30_c01080{bottom:740.880000px;}
.y31_c01080{bottom:742.320000px;}
.y35_c01080{bottom:743.040000px;}
.y33_c01080{bottom:743.760000px;}
.y34_c01080{bottom:744.480000px;}
.y2c_c01080{bottom:775.440000px;}
.y2a_c01080{bottom:781.920000px;}
.y29_c01080{bottom:783.360000px;}
.y2e_c01080{bottom:785.520000px;}
.y2b_c01080{bottom:786.240000px;}
.y2d_c01080{bottom:787.680000px;}
.y2f_c01080{bottom:788.400000px;}
.y26_c01080{bottom:824.400000px;}
.y28_c01080{bottom:827.280000px;}
.y24_c01080{bottom:828.000000px;}
.y25_c01080{bottom:828.720000px;}
.y27_c01080{bottom:830.160000px;}
.y22_c01080{bottom:869.040000px;}
.y21_c01080{bottom:869.760000px;}
.y1f_c01080{bottom:871.200000px;}
.y20_c01080{bottom:871.920000px;}
.y23_c01080{bottom:872.640000px;}
.y1a_c01080{bottom:900.000000px;}
.y1b_c01080{bottom:900.720000px;}
.y19_c01080{bottom:901.440000px;}
.y1c_c01080{bottom:903.600000px;}
.y1e_c01080{bottom:904.320000px;}
.y1d_c01080{bottom:905.040000px;}
.y16_c01080{bottom:943.920000px;}
.y18_c01080{bottom:944.640000px;}
.y14_c01080{bottom:946.800000px;}
.y17_c01080{bottom:947.520000px;}
.y15_c01080{bottom:949.680000px;}
.yf_c01080{bottom:974.160000px;}
.ye_c01080{bottom:977.040000px;}
.yd_c01080{bottom:977.760000px;}
.y12_c01080{bottom:978.480000px;}
.y10_c01080{bottom:979.200000px;}
.y11_c01080{bottom:979.920000px;}
.y13_c01080{bottom:980.640000px;}
.yb_c01080{bottom:1020.240000px;}
.y9_c01080{bottom:1020.960000px;}
.ya_c01080{bottom:1021.680000px;}
.yc_c01080{bottom:1023.120000px;}
.y3_c01080{bottom:1049.760000px;}
.y4_c01080{bottom:1051.200000px;}
.y5_c01080{bottom:1054.080000px;}
.y8_c01080{bottom:1054.800000px;}
.y6_c01080{bottom:1055.520000px;}
.y7_c01080{bottom:1056.240000px;}
.y1_c01080{bottom:1117.440000px;}
.y2_c01080{bottom:1118.160000px;}
.hd_c01080{height:18.142031px;}
.h14_c01080{height:20.733750px;}
.hb_c01080{height:31.100625px;}
.he_c01080{height:33.692344px;}
.hf_c01080{height:38.875781px;}
.h11_c01080{height:41.467500px;}
.h9_c01080{height:44.059219px;}
.h6_c01080{height:46.650937px;}
.h13_c01080{height:46.939219px;}
.h8_c01080{height:49.242656px;}
.ha_c01080{height:51.834375px;}
.h7_c01080{height:54.426094px;}
.h12_c01080{height:57.017812px;}
.h18_c01080{height:57.306094px;}
.h3_c01080{height:59.609531px;}
.h4_c01080{height:62.201250px;}
.h2_c01080{height:64.792969px;}
.h5_c01080{height:67.384687px;}
.hc_c01080{height:69.976406px;}
.h15_c01080{height:72.568125px;}
.h16_c01080{height:75.159844px;}
.h17_c01080{height:77.751563px;}
.h10_c01080{height:95.893594px;}
.h1_c01080{height:1161.750000px;}
.h0_c01080{height:1162.080000px;}
.w0_c01080{width:810.720000px;}
.w1_c01080{width:810.750000px;}
.x0_c01080{left:0.000000px;}
.x3_c01080{left:92.880000px;}
.x3f_c01080{left:102.960000px;}
.x38_c01080{left:104.400000px;}
.x27_c01080{left:112.320000px;}
.x2d_c01080{left:114.480000px;}
.x34_c01080{left:123.840000px;}
.x13_c01080{left:136.080000px;}
.x3d_c01080{left:146.880000px;}
.x18_c01080{left:154.800000px;}
.x4_c01080{left:167.040000px;}
.x39_c01080{left:168.480000px;}
.x2e_c01080{left:178.560000px;}
.x1f_c01080{left:200.160000px;}
.xb_c01080{left:210.240000px;}
.x17_c01080{left:221.040000px;}
.x2f_c01080{left:243.360000px;}
.x21_c01080{left:252.720000px;}
.x5_c01080{left:263.520000px;}
.x4c_c01080{left:264.960000px;}
.x1c_c01080{left:275.040000px;}
.x45_c01080{left:276.480000px;}
.x47_c01080{left:285.840000px;}
.x28_c01080{left:287.280000px;}
.x31_c01080{left:295.920000px;}
.xc_c01080{left:306.720000px;}
.x46_c01080{left:308.160000px;}
.x6_c01080{left:317.520000px;}
.x22_c01080{left:319.680000px;}
.x29_c01080{left:328.320000px;}
.x30_c01080{left:339.120000px;}
.x35_c01080{left:350.640000px;}
.x14_c01080{left:361.440000px;}
.x44_c01080{left:362.880000px;}
.x20_c01080{left:372.960000px;}
.x1d_c01080{left:393.120000px;}
.x32_c01080{left:394.560000px;}
.x7_c01080{left:403.200000px;}
.x3a_c01080{left:406.080000px;}
.xd_c01080{left:415.440000px;}
.x48_c01080{left:426.240000px;}
.x23_c01080{left:427.680000px;}
.x4b_c01080{left:437.760000px;}
.x8_c01080{left:448.560000px;}
.x19_c01080{left:458.640000px;}
.xe_c01080{left:469.440000px;}
.x41_c01080{left:471.600000px;}
.x33_c01080{left:480.240000px;}
.x2a_c01080{left:481.680000px;}
.x15_c01080{left:501.120000px;}
.x9_c01080{left:503.280000px;}
.xf_c01080{left:513.360000px;}
.x26_c01080{left:527.040000px;}
.x24_c01080{left:536.400000px;}
.x36_c01080{left:546.480000px;}
.xa_c01080{left:568.800000px;}
.x2b_c01080{left:579.600000px;}
.x42_c01080{left:591.120000px;}
.x3b_c01080{left:600.480000px;}
.x3e_c01080{left:601.920000px;}
.x16_c01080{left:622.080000px;}
.x43_c01080{left:623.520000px;}
.x3c_c01080{left:634.320000px;}
.x40_c01080{left:646.560000px;}
.x49_c01080{left:655.200000px;}
.x10_c01080{left:656.640300px;}
.x2c_c01080{left:678.240000px;}
.x1_c01080{left:681.120000px;}
.x1a_c01080{left:689.040000px;}
.x1e_c01080{left:698.400000px;}
.x11_c01080{left:699.840000px;}
.x37_c01080{left:710.640000px;}
.x2_c01080{left:718.560000px;}
.x25_c01080{left:720.720000px;}
.x12_c01080{left:732.240000px;}
.x4a_c01080{left:734.400000px;}
.x1b_c01080{left:753.120000px;}
@media print{
.v0_c01080{vertical-align:0.000000pt;}
.v1_c01080{vertical-align:2.560000pt;}
.ls1_c01080{letter-spacing:0.000000pt;}
.ls0_c01080{letter-spacing:125.853013pt;}
.ws1_c01080{word-spacing:0.000000pt;}
.ws0_c01080{word-spacing:28.856960pt;}
.fsb_c01080{font-size:17.920000pt;}
.fs11_c01080{font-size:20.480000pt;}
.fs9_c01080{font-size:30.720000pt;}
.fsc_c01080{font-size:33.280000pt;}
.fsd_c01080{font-size:38.400000pt;}
.fsf_c01080{font-size:40.960000pt;}
.fs7_c01080{font-size:43.520000pt;}
.fs4_c01080{font-size:46.080000pt;}
.fs6_c01080{font-size:48.640000pt;}
.fs8_c01080{font-size:51.200000pt;}
.fs5_c01080{font-size:53.760000pt;}
.fs10_c01080{font-size:56.320000pt;}
.fs1_c01080{font-size:58.880000pt;}
.fs2_c01080{font-size:61.440000pt;}
.fs0_c01080{font-size:64.000000pt;}
.fs3_c01080{font-size:66.560000pt;}
.fsa_c01080{font-size:69.120000pt;}
.fs12_c01080{font-size:71.680000pt;}
.fs13_c01080{font-size:74.240000pt;}
.fs14_c01080{font-size:76.800000pt;}
.fse_c01080{font-size:94.720000pt;}
.y0_c01080{bottom:0.000000pt;}
.y9c_c01080{bottom:67.200000pt;}
.y9d_c01080{bottom:68.480000pt;}
.y9b_c01080{bottom:69.120000pt;}
.y9e_c01080{bottom:92.160000pt;}
.y9a_c01080{bottom:92.800000pt;}
.y9f_c01080{bottom:94.080000pt;}
.y96_c01080{bottom:94.720000pt;}
.y99_c01080{bottom:96.000000pt;}
.y98_c01080{bottom:96.640000pt;}
.y97_c01080{bottom:97.280000pt;}
.y95_c01080{bottom:97.920000pt;}
.y8e_c01080{bottom:131.200000pt;}
.y93_c01080{bottom:131.840000pt;}
.y94_c01080{bottom:132.480000pt;}
.y92_c01080{bottom:133.120000pt;}
.y8b_c01080{bottom:133.760000pt;}
.y8d_c01080{bottom:134.400000pt;}
.y8c_c01080{bottom:135.040000pt;}
.y8a_c01080{bottom:135.680000pt;}
.y89_c01080{bottom:169.600000pt;}
.y90_c01080{bottom:170.240000pt;}
.y8f_c01080{bottom:170.880000pt;}
.y91_c01080{bottom:171.520000pt;}
.y87_c01080{bottom:172.800000pt;}
.y88_c01080{bottom:173.440000pt;}
.y86_c01080{bottom:174.720000pt;}
.y85_c01080{bottom:209.920000pt;}
.y84_c01080{bottom:210.560000pt;}
.y82_c01080{bottom:266.880000pt;}
.y83_c01080{bottom:267.520000pt;}
.y80_c01080{bottom:268.160000pt;}
.y81_c01080{bottom:270.720000pt;}
.y7c_c01080{bottom:286.080000pt;}
.y7f_c01080{bottom:286.720000pt;}
.y7d_c01080{bottom:287.360000pt;}
.y7b_c01080{bottom:288.000000pt;}
.y7e_c01080{bottom:288.640000pt;}
.y7a_c01080{bottom:289.280000pt;}
.y77_c01080{bottom:305.280000pt;}
.y79_c01080{bottom:305.920000pt;}
.y75_c01080{bottom:306.560000pt;}
.y78_c01080{bottom:307.200000pt;}
.y76_c01080{bottom:308.480000pt;}
.y74_c01080{bottom:323.840000pt;}
.y71_c01080{bottom:324.480000pt;}
.y72_c01080{bottom:325.120000pt;}
.y6f_c01080{bottom:325.760000pt;}
.y73_c01080{bottom:326.400000pt;}
.y70_c01080{bottom:327.040000pt;}
.y6d_c01080{bottom:343.040000pt;}
.y6e_c01080{bottom:343.680000pt;}
.y6c_c01080{bottom:344.320000pt;}
.y6b_c01080{bottom:344.960000pt;}
.y6a_c01080{bottom:346.240000pt;}
.y69_c01080{bottom:362.240000pt;}
.y68_c01080{bottom:362.880000pt;}
.y65_c01080{bottom:363.520000pt;}
.y67_c01080{bottom:364.800000pt;}
.y66_c01080{bottom:365.440000pt;}
.y64_c01080{bottom:381.440000pt;}
.y62_c01080{bottom:382.080000pt;}
.y61_c01080{bottom:382.720000pt;}
.y5f_c01080{bottom:383.360000pt;}
.y63_c01080{bottom:384.640000pt;}
.y60_c01080{bottom:385.920000pt;}
.y5e_c01080{bottom:400.000000pt;}
.y5d_c01080{bottom:400.640000pt;}
.y59_c01080{bottom:401.280000pt;}
.y5b_c01080{bottom:402.560000pt;}
.y5c_c01080{bottom:403.200000pt;}
.y5a_c01080{bottom:403.840000pt;}
.y58_c01080{bottom:419.200000pt;}
.y56_c01080{bottom:419.840000pt;}
.y55_c01080{bottom:420.480000pt;}
.y54_c01080{bottom:421.760000pt;}
.y57_c01080{bottom:423.040000pt;}
.y53_c01080{bottom:443.520000pt;}
.y52_c01080{bottom:444.160000pt;}
.y50_c01080{bottom:444.800000pt;}
.y4f_c01080{bottom:445.440000pt;}
.y51_c01080{bottom:449.280000pt;}
.y4e_c01080{bottom:449.920000pt;}
.y4b_c01080{bottom:486.400000pt;}
.y4d_c01080{bottom:487.680000pt;}
.y4c_c01080{bottom:488.320000pt;}
.y4a_c01080{bottom:488.960000pt;}
.y49_c01080{bottom:515.200000pt;}
.y48_c01080{bottom:515.840000pt;}
.y46_c01080{bottom:516.480000pt;}
.y47_c01080{bottom:517.120000pt;}
.y43_c01080{bottom:543.360000pt;}
.y45_c01080{bottom:544.000000pt;}
.y42_c01080{bottom:544.640000pt;}
.y41_c01080{bottom:545.280000pt;}
.y44_c01080{bottom:545.920000pt;}
.y3f_c01080{bottom:581.760000pt;}
.y40_c01080{bottom:584.960000pt;}
.y3d_c01080{bottom:600.320000pt;}
.y3a_c01080{bottom:600.960000pt;}
.y3e_c01080{bottom:602.240000pt;}
.y3b_c01080{bottom:603.520000pt;}
.y3c_c01080{bottom:605.440000pt;}
.y36_c01080{bottom:610.560000pt;}
.y39_c01080{bottom:620.800000pt;}
.y37_c01080{bottom:621.440000pt;}
.y38_c01080{bottom:622.080000pt;}
.y32_c01080{bottom:656.640000pt;}
.y30_c01080{bottom:658.560000pt;}
.y31_c01080{bottom:659.840000pt;}
.y35_c01080{bottom:660.480000pt;}
.y33_c01080{bottom:661.120000pt;}
.y34_c01080{bottom:661.760000pt;}
.y2c_c01080{bottom:689.280000pt;}
.y2a_c01080{bottom:695.040000pt;}
.y29_c01080{bottom:696.320000pt;}
.y2e_c01080{bottom:698.240000pt;}
.y2b_c01080{bottom:698.880000pt;}
.y2d_c01080{bottom:700.160000pt;}
.y2f_c01080{bottom:700.800000pt;}
.y26_c01080{bottom:732.800000pt;}
.y28_c01080{bottom:735.360000pt;}
.y24_c01080{bottom:736.000000pt;}
.y25_c01080{bottom:736.640000pt;}
.y27_c01080{bottom:737.920000pt;}
.y22_c01080{bottom:772.480000pt;}
.y21_c01080{bottom:773.120000pt;}
.y1f_c01080{bottom:774.400000pt;}
.y20_c01080{bottom:775.040000pt;}
.y23_c01080{bottom:775.680000pt;}
.y1a_c01080{bottom:800.000000pt;}
.y1b_c01080{bottom:800.640000pt;}
.y19_c01080{bottom:801.280000pt;}
.y1c_c01080{bottom:803.200000pt;}
.y1e_c01080{bottom:803.840000pt;}
.y1d_c01080{bottom:804.480000pt;}
.y16_c01080{bottom:839.040000pt;}
.y18_c01080{bottom:839.680000pt;}
.y14_c01080{bottom:841.600000pt;}
.y17_c01080{bottom:842.240000pt;}
.y15_c01080{bottom:844.160000pt;}
.yf_c01080{bottom:865.920000pt;}
.ye_c01080{bottom:868.480000pt;}
.yd_c01080{bottom:869.120000pt;}
.y12_c01080{bottom:869.760000pt;}
.y10_c01080{bottom:870.400000pt;}
.y11_c01080{bottom:871.040000pt;}
.y13_c01080{bottom:871.680000pt;}
.yb_c01080{bottom:906.880000pt;}
.y9_c01080{bottom:907.520000pt;}
.ya_c01080{bottom:908.160000pt;}
.yc_c01080{bottom:909.440000pt;}
.y3_c01080{bottom:933.120000pt;}
.y4_c01080{bottom:934.400000pt;}
.y5_c01080{bottom:936.960000pt;}
.y8_c01080{bottom:937.600000pt;}
.y6_c01080{bottom:938.240000pt;}
.y7_c01080{bottom:938.880000pt;}
.y1_c01080{bottom:993.280000pt;}
.y2_c01080{bottom:993.920000pt;}
.hd_c01080{height:16.126250pt;}
.h14_c01080{height:18.430000pt;}
.hb_c01080{height:27.645000pt;}
.he_c01080{height:29.948750pt;}
.hf_c01080{height:34.556250pt;}
.h11_c01080{height:36.860000pt;}
.h9_c01080{height:39.163750pt;}
.h6_c01080{height:41.467500pt;}
.h13_c01080{height:41.723750pt;}
.h8_c01080{height:43.771250pt;}
.ha_c01080{height:46.075000pt;}
.h7_c01080{height:48.378750pt;}
.h12_c01080{height:50.682500pt;}
.h18_c01080{height:50.938750pt;}
.h3_c01080{height:52.986250pt;}
.h4_c01080{height:55.290000pt;}
.h2_c01080{height:57.593750pt;}
.h5_c01080{height:59.897500pt;}
.hc_c01080{height:62.201250pt;}
.h15_c01080{height:64.505000pt;}
.h16_c01080{height:66.808750pt;}
.h17_c01080{height:69.112500pt;}
.h10_c01080{height:85.238750pt;}
.h1_c01080{height:1032.666667pt;}
.h0_c01080{height:1032.960000pt;}
.w0_c01080{width:720.640000pt;}
.w1_c01080{width:720.666667pt;}
.x0_c01080{left:0.000000pt;}
.x3_c01080{left:82.560000pt;}
.x3f_c01080{left:91.520000pt;}
.x38_c01080{left:92.800000pt;}
.x27_c01080{left:99.840000pt;}
.x2d_c01080{left:101.760000pt;}
.x34_c01080{left:110.080000pt;}
.x13_c01080{left:120.960000pt;}
.x3d_c01080{left:130.560000pt;}
.x18_c01080{left:137.600000pt;}
.x4_c01080{left:148.480000pt;}
.x39_c01080{left:149.760000pt;}
.x2e_c01080{left:158.720000pt;}
.x1f_c01080{left:177.920000pt;}
.xb_c01080{left:186.880000pt;}
.x17_c01080{left:196.480000pt;}
.x2f_c01080{left:216.320000pt;}
.x21_c01080{left:224.640000pt;}
.x5_c01080{left:234.240000pt;}
.x4c_c01080{left:235.520000pt;}
.x1c_c01080{left:244.480000pt;}
.x45_c01080{left:245.760000pt;}
.x47_c01080{left:254.080000pt;}
.x28_c01080{left:255.360000pt;}
.x31_c01080{left:263.040000pt;}
.xc_c01080{left:272.640000pt;}
.x46_c01080{left:273.920000pt;}
.x6_c01080{left:282.240000pt;}
.x22_c01080{left:284.160000pt;}
.x29_c01080{left:291.840000pt;}
.x30_c01080{left:301.440000pt;}
.x35_c01080{left:311.680000pt;}
.x14_c01080{left:321.280000pt;}
.x44_c01080{left:322.560000pt;}
.x20_c01080{left:331.520000pt;}
.x1d_c01080{left:349.440000pt;}
.x32_c01080{left:350.720000pt;}
.x7_c01080{left:358.400000pt;}
.x3a_c01080{left:360.960000pt;}
.xd_c01080{left:369.280000pt;}
.x48_c01080{left:378.880000pt;}
.x23_c01080{left:380.160000pt;}
.x4b_c01080{left:389.120000pt;}
.x8_c01080{left:398.720000pt;}
.x19_c01080{left:407.680000pt;}
.xe_c01080{left:417.280000pt;}
.x41_c01080{left:419.200000pt;}
.x33_c01080{left:426.880000pt;}
.x2a_c01080{left:428.160000pt;}
.x15_c01080{left:445.440000pt;}
.x9_c01080{left:447.360000pt;}
.xf_c01080{left:456.320000pt;}
.x26_c01080{left:468.480000pt;}
.x24_c01080{left:476.800000pt;}
.x36_c01080{left:485.760000pt;}
.xa_c01080{left:505.600000pt;}
.x2b_c01080{left:515.200000pt;}
.x42_c01080{left:525.440000pt;}
.x3b_c01080{left:533.760000pt;}
.x3e_c01080{left:535.040000pt;}
.x16_c01080{left:552.960000pt;}
.x43_c01080{left:554.240000pt;}
.x3c_c01080{left:563.840000pt;}
.x40_c01080{left:574.720000pt;}
.x49_c01080{left:582.400000pt;}
.x10_c01080{left:583.680267pt;}
.x2c_c01080{left:602.880000pt;}
.x1_c01080{left:605.440000pt;}
.x1a_c01080{left:612.480000pt;}
.x1e_c01080{left:620.800000pt;}
.x11_c01080{left:622.080000pt;}
.x37_c01080{left:631.680000pt;}
.x2_c01080{left:638.720000pt;}
.x25_c01080{left:640.640000pt;}
.x12_c01080{left:650.880000pt;}
.x4a_c01080{left:652.800000pt;}
.x1b_c01080{left:669.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4e39884e8774007dbc819d66.woff2')format("woff");}.ff1_c01081{font-family:ff1_c01081;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m30_c01081{transform:matrix(0.182775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182775,0.000000,0.000000,0.250000,0,0);}
.m42_c01081{transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);}
.m40_c01081{transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);}
.m21_c01081{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m38_c01081{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m1c_c01081{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m3d_c01081{transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);}
.m26_c01081{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m33_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);}
.m24_c01081{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);}
.m3c_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);}
.m1e_c01081{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);}
.m2d_c01081{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_c01081{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01081{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m19_c01081{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mb_c01081{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.me_c01081{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);}
.m31_c01081{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m15_c01081{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01081{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m16_c01081{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m10_c01081{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_c01081{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);}
.m29_c01081{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01081{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01081{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m9_c01081{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m6_c01081{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m22_c01081{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1_c01081{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m8_c01081{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m37_c01081{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01081{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m27_c01081{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01081{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m13_c01081{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m11_c01081{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01081{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m23_c01081{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01081{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);}
.m41_c01081{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);}
.m32_c01081{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01081{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01081{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m14_c01081{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.mc_c01081{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);}
.m35_c01081{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01081{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.mf_c01081{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);}
.m0_c01081{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m5_c01081{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m4_c01081{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);}
.m28_c01081{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);}
.m25_c01081{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m43_c01081{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.ma_c01081{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m2_c01081{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m12_c01081{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);}
.m34_c01081{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01081{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01081{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);}
.m39_c01081{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m7_c01081{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);}
.m36_c01081{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01081{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m17_c01081{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m20_c01081{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.v1_c01081{vertical-align:-2.880000px;}
.v0_c01081{vertical-align:0.000000px;}
.ls1_c01081{letter-spacing:0.000000px;}
.ls0_c01081{letter-spacing:155.976960px;}
.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;}
}
.ws4_c01081{word-spacing:0.000000px;}
.ws3_c01081{word-spacing:11.690400px;}
.ws0_c01081{word-spacing:11.693143px;}
.ws2_c01081{word-spacing:11.726957px;}
.ws1_c01081{word-spacing:45.396259px;}
.fc0_c01081{color:transparent;}
.fs6_c01081{font-size:34.560000px;}
.fs8_c01081{font-size:46.080000px;}
.fs2_c01081{font-size:48.960000px;}
.fs1_c01081{font-size:51.840000px;}
.fs4_c01081{font-size:54.720000px;}
.fs9_c01081{font-size:57.600000px;}
.fs0_c01081{font-size:60.480000px;}
.fs7_c01081{font-size:63.360000px;}
.fsb_c01081{font-size:66.240000px;}
.fsa_c01081{font-size:69.120000px;}
.fsc_c01081{font-size:72.000000px;}
.fs3_c01081{font-size:74.880000px;}
.fs5_c01081{font-size:77.760000px;}
.y0_c01081{bottom:0.000000px;}
.y85_c01081{bottom:62.640000px;}
.y7d_c01081{bottom:64.080000px;}
.y84_c01081{bottom:64.800000px;}
.y7a_c01081{bottom:65.520000px;}
.y7c_c01081{bottom:66.960000px;}
.y7b_c01081{bottom:67.680000px;}
.y79_c01081{bottom:69.120000px;}
.y83_c01081{bottom:107.280000px;}
.y78_c01081{bottom:108.000000px;}
.y77_c01081{bottom:108.720000px;}
.y76_c01081{bottom:109.440000px;}
.y82_c01081{bottom:110.160000px;}
.y75_c01081{bottom:111.600000px;}
.y81_c01081{bottom:149.760000px;}
.y74_c01081{bottom:150.480000px;}
.y73_c01081{bottom:151.200000px;}
.y72_c01081{bottom:154.800000px;}
.y7e_c01081{bottom:192.960000px;}
.y71_c01081{bottom:193.680000px;}
.y80_c01081{bottom:195.120000px;}
.y7f_c01081{bottom:195.840000px;}
.y70_c01081{bottom:196.560000px;}
.y6f_c01081{bottom:235.440000px;}
.y6e_c01081{bottom:239.040000px;}
.y6d_c01081{bottom:239.760000px;}
.y6c_c01081{bottom:240.480000px;}
.y6a_c01081{bottom:267.840000px;}
.y69_c01081{bottom:268.560000px;}
.y67_c01081{bottom:269.280000px;}
.y6b_c01081{bottom:270.000000px;}
.y68_c01081{bottom:270.720000px;}
.y66_c01081{bottom:272.160000px;}
.y65_c01081{bottom:310.320000px;}
.y54_c01081{bottom:311.040000px;}
.y53_c01081{bottom:311.760000px;}
.y55_c01081{bottom:313.200000px;}
.y64_c01081{bottom:314.640000px;}
.y63_c01081{bottom:353.520000px;}
.y51_c01081{bottom:354.240000px;}
.y50_c01081{bottom:354.960000px;}
.y52_c01081{bottom:357.120000px;}
.y62_c01081{bottom:396.720000px;}
.y4f_c01081{bottom:397.440000px;}
.y4e_c01081{bottom:398.160000px;}
.y61_c01081{bottom:399.600000px;}
.y4d_c01081{bottom:400.320000px;}
.y60_c01081{bottom:439.200000px;}
.y4b_c01081{bottom:440.640000px;}
.y49_c01081{bottom:441.360000px;}
.y4c_c01081{bottom:442.080000px;}
.y4a_c01081{bottom:442.800000px;}
.y48_c01081{bottom:443.520000px;}
.y45_c01081{bottom:483.120000px;}
.y47_c01081{bottom:483.840000px;}
.y46_c01081{bottom:484.560000px;}
.y44_c01081{bottom:486.000000px;}
.y43_c01081{bottom:486.720000px;}
.y5f_c01081{bottom:526.320000px;}
.y42_c01081{bottom:527.760000px;}
.y41_c01081{bottom:528.480000px;}
.y40_c01081{bottom:529.920000px;}
.y5e_c01081{bottom:568.800000px;}
.y3f_c01081{bottom:570.960000px;}
.y3e_c01081{bottom:573.120000px;}
.y5d_c01081{bottom:611.280000px;}
.y5c_c01081{bottom:613.440000px;}
.y3b_c01081{bottom:614.160000px;}
.y3d_c01081{bottom:615.600000px;}
.y3a_c01081{bottom:616.320000px;}
.y3c_c01081{bottom:617.040000px;}
.y5b_c01081{bottom:653.760000px;}
.y5a_c01081{bottom:655.920000px;}
.y39_c01081{bottom:656.640000px;}
.y38_c01081{bottom:657.360000px;}
.y37_c01081{bottom:658.080000px;}
.y36_c01081{bottom:659.520000px;}
.y59_c01081{bottom:696.960000px;}
.y58_c01081{bottom:699.840000px;}
.y34_c01081{bottom:700.560000px;}
.y35_c01081{bottom:701.280000px;}
.y33_c01081{bottom:702.720000px;}
.y57_c01081{bottom:739.440000px;}
.y56_c01081{bottom:741.600000px;}
.y32_c01081{bottom:743.040000px;}
.y2f_c01081{bottom:744.480000px;}
.y2e_c01081{bottom:745.200000px;}
.y31_c01081{bottom:745.920000px;}
.y30_c01081{bottom:746.640000px;}
.y14_c01081{bottom:782.640000px;}
.y13_c01081{bottom:784.800000px;}
.y16_c01081{bottom:785.520000px;}
.y15_c01081{bottom:786.240000px;}
.y2c_c01081{bottom:786.960000px;}
.y17_c01081{bottom:787.680000px;}
.y2b_c01081{bottom:789.120000px;}
.y2d_c01081{bottom:789.840000px;}
.y12_c01081{bottom:825.120000px;}
.y11_c01081{bottom:828.000000px;}
.y2a_c01081{bottom:829.440000px;}
.y29_c01081{bottom:830.160000px;}
.y28_c01081{bottom:830.880000px;}
.y10_c01081{bottom:867.600000px;}
.yf_c01081{bottom:869.760000px;}
.y26_c01081{bottom:871.920000px;}
.y27_c01081{bottom:873.360000px;}
.y25_c01081{bottom:874.080000px;}
.ye_c01081{bottom:910.800000px;}
.yd_c01081{bottom:912.960000px;}
.y24_c01081{bottom:915.840000px;}
.y22_c01081{bottom:917.280000px;}
.y23_c01081{bottom:918.000000px;}
.yc_c01081{bottom:953.280000px;}
.ya_c01081{bottom:956.160000px;}
.yb_c01081{bottom:956.880000px;}
.y20_c01081{bottom:958.320000px;}
.y21_c01081{bottom:959.040000px;}
.y1f_c01081{bottom:959.760000px;}
.y1e_c01081{bottom:960.480000px;}
.y9_c01081{bottom:997.920000px;}
.y7_c01081{bottom:998.640000px;}
.y8_c01081{bottom:1000.080000px;}
.y1b_c01081{bottom:1002.240000px;}
.y1d_c01081{bottom:1004.400000px;}
.y1c_c01081{bottom:1005.120000px;}
.y1_c01081{bottom:1041.120000px;}
.y4_c01081{bottom:1041.840000px;}
.y2_c01081{bottom:1043.280000px;}
.y3_c01081{bottom:1044.000000px;}
.y19_c01081{bottom:1044.720000px;}
.y5_c01081{bottom:1045.440000px;}
.y1a_c01081{bottom:1046.160000px;}
.y6_c01081{bottom:1046.880000px;}
.y18_c01081{bottom:1105.200000px;}
.h8_c01081{height:31.100625px;}
.ha_c01081{height:41.467500px;}
.h4_c01081{height:44.059219px;}
.h3_c01081{height:46.650937px;}
.h6_c01081{height:49.242656px;}
.he_c01081{height:51.546094px;}
.hb_c01081{height:51.834375px;}
.h2_c01081{height:54.426094px;}
.h9_c01081{height:57.017812px;}
.hd_c01081{height:59.609531px;}
.hc_c01081{height:62.201250px;}
.hf_c01081{height:64.792969px;}
.h5_c01081{height:67.384687px;}
.h7_c01081{height:69.976406px;}
.h1_c01081{height:1161.750000px;}
.h0_c01081{height:1162.080000px;}
.w0_c01081{width:810.720000px;}
.w1_c01081{width:810.750000px;}
.x0_c01081{left:0.000000px;}
.x1_c01081{left:92.880000px;}
.x19_c01081{left:94.320000px;}
.x7_c01081{left:136.800000px;}
.x8_c01081{left:166.320000px;}
.x2_c01081{left:167.760000px;}
.x27_c01081{left:169.200000px;}
.x3_c01081{left:209.520000px;}
.x22_c01081{left:223.200000px;}
.x1a_c01081{left:254.880000px;}
.x25_c01081{left:256.320000px;}
.x4_c01081{left:264.240000px;}
.x23_c01081{left:276.480000px;}
.x1c_c01081{left:298.080000px;}
.x1d_c01081{left:308.160000px;}
.x9_c01081{left:317.520000px;}
.x24_c01081{left:319.680000px;}
.x1e_c01081{left:352.800000px;}
.xa_c01081{left:362.160000px;}
.x1b_c01081{left:384.480000px;}
.x26_c01081{left:385.920000px;}
.x28_c01081{left:396.720000px;}
.xb_c01081{left:416.880000px;}
.x5_c01081{left:427.680000px;}
.x1f_c01081{left:438.480000px;}
.x20_c01081{left:494.640000px;}
.x6_c01081{left:514.080000px;}
.xd_c01081{left:568.080000px;}
.x13_c01081{left:580.320000px;}
.x21_c01081{left:581.760000px;}
.x14_c01081{left:601.200000px;}
.x15_c01081{left:602.640000px;}
.x29_c01081{left:604.080000px;}
.x16_c01081{left:622.080000px;}
.xe_c01081{left:623.520000px;}
.x11_c01081{left:656.640000px;}
.x18_c01081{left:658.800000px;}
.xc_c01081{left:682.560000px;}
.xf_c01081{left:689.760000px;}
.x2a_c01081{left:691.200000px;}
.x2c_c01081{left:724.320000px;}
.x10_c01081{left:732.240000px;}
.x17_c01081{left:734.400000px;}
.x12_c01081{left:753.120000px;}
.x2b_c01081{left:755.280000px;}
@media print{
.v1_c01081{vertical-align:-2.560000pt;}
.v0_c01081{vertical-align:0.000000pt;}
.ls1_c01081{letter-spacing:0.000000pt;}
.ls0_c01081{letter-spacing:138.646187pt;}
.ws4_c01081{word-spacing:0.000000pt;}
.ws3_c01081{word-spacing:10.391467pt;}
.ws0_c01081{word-spacing:10.393905pt;}
.ws2_c01081{word-spacing:10.423962pt;}
.ws1_c01081{word-spacing:40.352230pt;}
.fs6_c01081{font-size:30.720000pt;}
.fs8_c01081{font-size:40.960000pt;}
.fs2_c01081{font-size:43.520000pt;}
.fs1_c01081{font-size:46.080000pt;}
.fs4_c01081{font-size:48.640000pt;}
.fs9_c01081{font-size:51.200000pt;}
.fs0_c01081{font-size:53.760000pt;}
.fs7_c01081{font-size:56.320000pt;}
.fsb_c01081{font-size:58.880000pt;}
.fsa_c01081{font-size:61.440000pt;}
.fsc_c01081{font-size:64.000000pt;}
.fs3_c01081{font-size:66.560000pt;}
.fs5_c01081{font-size:69.120000pt;}
.y0_c01081{bottom:0.000000pt;}
.y85_c01081{bottom:55.680000pt;}
.y7d_c01081{bottom:56.960000pt;}
.y84_c01081{bottom:57.600000pt;}
.y7a_c01081{bottom:58.240000pt;}
.y7c_c01081{bottom:59.520000pt;}
.y7b_c01081{bottom:60.160000pt;}
.y79_c01081{bottom:61.440000pt;}
.y83_c01081{bottom:95.360000pt;}
.y78_c01081{bottom:96.000000pt;}
.y77_c01081{bottom:96.640000pt;}
.y76_c01081{bottom:97.280000pt;}
.y82_c01081{bottom:97.920000pt;}
.y75_c01081{bottom:99.200000pt;}
.y81_c01081{bottom:133.120000pt;}
.y74_c01081{bottom:133.760000pt;}
.y73_c01081{bottom:134.400000pt;}
.y72_c01081{bottom:137.600000pt;}
.y7e_c01081{bottom:171.520000pt;}
.y71_c01081{bottom:172.160000pt;}
.y80_c01081{bottom:173.440000pt;}
.y7f_c01081{bottom:174.080000pt;}
.y70_c01081{bottom:174.720000pt;}
.y6f_c01081{bottom:209.280000pt;}
.y6e_c01081{bottom:212.480000pt;}
.y6d_c01081{bottom:213.120000pt;}
.y6c_c01081{bottom:213.760000pt;}
.y6a_c01081{bottom:238.080000pt;}
.y69_c01081{bottom:238.720000pt;}
.y67_c01081{bottom:239.360000pt;}
.y6b_c01081{bottom:240.000000pt;}
.y68_c01081{bottom:240.640000pt;}
.y66_c01081{bottom:241.920000pt;}
.y65_c01081{bottom:275.840000pt;}
.y54_c01081{bottom:276.480000pt;}
.y53_c01081{bottom:277.120000pt;}
.y55_c01081{bottom:278.400000pt;}
.y64_c01081{bottom:279.680000pt;}
.y63_c01081{bottom:314.240000pt;}
.y51_c01081{bottom:314.880000pt;}
.y50_c01081{bottom:315.520000pt;}
.y52_c01081{bottom:317.440000pt;}
.y62_c01081{bottom:352.640000pt;}
.y4f_c01081{bottom:353.280000pt;}
.y4e_c01081{bottom:353.920000pt;}
.y61_c01081{bottom:355.200000pt;}
.y4d_c01081{bottom:355.840000pt;}
.y60_c01081{bottom:390.400000pt;}
.y4b_c01081{bottom:391.680000pt;}
.y49_c01081{bottom:392.320000pt;}
.y4c_c01081{bottom:392.960000pt;}
.y4a_c01081{bottom:393.600000pt;}
.y48_c01081{bottom:394.240000pt;}
.y45_c01081{bottom:429.440000pt;}
.y47_c01081{bottom:430.080000pt;}
.y46_c01081{bottom:430.720000pt;}
.y44_c01081{bottom:432.000000pt;}
.y43_c01081{bottom:432.640000pt;}
.y5f_c01081{bottom:467.840000pt;}
.y42_c01081{bottom:469.120000pt;}
.y41_c01081{bottom:469.760000pt;}
.y40_c01081{bottom:471.040000pt;}
.y5e_c01081{bottom:505.600000pt;}
.y3f_c01081{bottom:507.520000pt;}
.y3e_c01081{bottom:509.440000pt;}
.y5d_c01081{bottom:543.360000pt;}
.y5c_c01081{bottom:545.280000pt;}
.y3b_c01081{bottom:545.920000pt;}
.y3d_c01081{bottom:547.200000pt;}
.y3a_c01081{bottom:547.840000pt;}
.y3c_c01081{bottom:548.480000pt;}
.y5b_c01081{bottom:581.120000pt;}
.y5a_c01081{bottom:583.040000pt;}
.y39_c01081{bottom:583.680000pt;}
.y38_c01081{bottom:584.320000pt;}
.y37_c01081{bottom:584.960000pt;}
.y36_c01081{bottom:586.240000pt;}
.y59_c01081{bottom:619.520000pt;}
.y58_c01081{bottom:622.080000pt;}
.y34_c01081{bottom:622.720000pt;}
.y35_c01081{bottom:623.360000pt;}
.y33_c01081{bottom:624.640000pt;}
.y57_c01081{bottom:657.280000pt;}
.y56_c01081{bottom:659.200000pt;}
.y32_c01081{bottom:660.480000pt;}
.y2f_c01081{bottom:661.760000pt;}
.y2e_c01081{bottom:662.400000pt;}
.y31_c01081{bottom:663.040000pt;}
.y30_c01081{bottom:663.680000pt;}
.y14_c01081{bottom:695.680000pt;}
.y13_c01081{bottom:697.600000pt;}
.y16_c01081{bottom:698.240000pt;}
.y15_c01081{bottom:698.880000pt;}
.y2c_c01081{bottom:699.520000pt;}
.y17_c01081{bottom:700.160000pt;}
.y2b_c01081{bottom:701.440000pt;}
.y2d_c01081{bottom:702.080000pt;}
.y12_c01081{bottom:733.440000pt;}
.y11_c01081{bottom:736.000000pt;}
.y2a_c01081{bottom:737.280000pt;}
.y29_c01081{bottom:737.920000pt;}
.y28_c01081{bottom:738.560000pt;}
.y10_c01081{bottom:771.200000pt;}
.yf_c01081{bottom:773.120000pt;}
.y26_c01081{bottom:775.040000pt;}
.y27_c01081{bottom:776.320000pt;}
.y25_c01081{bottom:776.960000pt;}
.ye_c01081{bottom:809.600000pt;}
.yd_c01081{bottom:811.520000pt;}
.y24_c01081{bottom:814.080000pt;}
.y22_c01081{bottom:815.360000pt;}
.y23_c01081{bottom:816.000000pt;}
.yc_c01081{bottom:847.360000pt;}
.ya_c01081{bottom:849.920000pt;}
.yb_c01081{bottom:850.560000pt;}
.y20_c01081{bottom:851.840000pt;}
.y21_c01081{bottom:852.480000pt;}
.y1f_c01081{bottom:853.120000pt;}
.y1e_c01081{bottom:853.760000pt;}
.y9_c01081{bottom:887.040000pt;}
.y7_c01081{bottom:887.680000pt;}
.y8_c01081{bottom:888.960000pt;}
.y1b_c01081{bottom:890.880000pt;}
.y1d_c01081{bottom:892.800000pt;}
.y1c_c01081{bottom:893.440000pt;}
.y1_c01081{bottom:925.440000pt;}
.y4_c01081{bottom:926.080000pt;}
.y2_c01081{bottom:927.360000pt;}
.y3_c01081{bottom:928.000000pt;}
.y19_c01081{bottom:928.640000pt;}
.y5_c01081{bottom:929.280000pt;}
.y1a_c01081{bottom:929.920000pt;}
.y6_c01081{bottom:930.560000pt;}
.y18_c01081{bottom:982.400000pt;}
.h8_c01081{height:27.645000pt;}
.ha_c01081{height:36.860000pt;}
.h4_c01081{height:39.163750pt;}
.h3_c01081{height:41.467500pt;}
.h6_c01081{height:43.771250pt;}
.he_c01081{height:45.818750pt;}
.hb_c01081{height:46.075000pt;}
.h2_c01081{height:48.378750pt;}
.h9_c01081{height:50.682500pt;}
.hd_c01081{height:52.986250pt;}
.hc_c01081{height:55.290000pt;}
.hf_c01081{height:57.593750pt;}
.h5_c01081{height:59.897500pt;}
.h7_c01081{height:62.201250pt;}
.h1_c01081{height:1032.666667pt;}
.h0_c01081{height:1032.960000pt;}
.w0_c01081{width:720.640000pt;}
.w1_c01081{width:720.666667pt;}
.x0_c01081{left:0.000000pt;}
.x1_c01081{left:82.560000pt;}
.x19_c01081{left:83.840000pt;}
.x7_c01081{left:121.600000pt;}
.x8_c01081{left:147.840000pt;}
.x2_c01081{left:149.120000pt;}
.x27_c01081{left:150.400000pt;}
.x3_c01081{left:186.240000pt;}
.x22_c01081{left:198.400000pt;}
.x1a_c01081{left:226.560000pt;}
.x25_c01081{left:227.840000pt;}
.x4_c01081{left:234.880000pt;}
.x23_c01081{left:245.760000pt;}
.x1c_c01081{left:264.960000pt;}
.x1d_c01081{left:273.920000pt;}
.x9_c01081{left:282.240000pt;}
.x24_c01081{left:284.160000pt;}
.x1e_c01081{left:313.600000pt;}
.xa_c01081{left:321.920000pt;}
.x1b_c01081{left:341.760000pt;}
.x26_c01081{left:343.040000pt;}
.x28_c01081{left:352.640000pt;}
.xb_c01081{left:370.560000pt;}
.x5_c01081{left:380.160000pt;}
.x1f_c01081{left:389.760000pt;}
.x20_c01081{left:439.680000pt;}
.x6_c01081{left:456.960000pt;}
.xd_c01081{left:504.960000pt;}
.x13_c01081{left:515.840000pt;}
.x21_c01081{left:517.120000pt;}
.x14_c01081{left:534.400000pt;}
.x15_c01081{left:535.680000pt;}
.x29_c01081{left:536.960000pt;}
.x16_c01081{left:552.960000pt;}
.xe_c01081{left:554.240000pt;}
.x11_c01081{left:583.680000pt;}
.x18_c01081{left:585.600000pt;}
.xc_c01081{left:606.720000pt;}
.xf_c01081{left:613.120000pt;}
.x2a_c01081{left:614.400000pt;}
.x2c_c01081{left:643.840000pt;}
.x10_c01081{left:650.880000pt;}
.x17_c01081{left:652.800000pt;}
.x12_c01081{left:669.440000pt;}
.x2b_c01081{left:671.360000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b3965fe3346498c229343493.woff2')format("woff");}.ff1_c01082{font-family:ff1_c01082;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3e_c01082{transform:matrix(0.162150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162150,0.000000,0.000000,0.250000,0,0);}
.me_c01082{transform:matrix(0.216425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216425,0.000000,0.000000,0.250000,0,0);}
.m13_c01082{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);}
.m28_c01082{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m8_c01082{transform:matrix(0.239175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239175,0.000000,0.000000,0.250000,0,0);}
.m2e_c01082{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);}
.m2d_c01082{transform:matrix(0.246775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246775,0.000000,0.000000,0.250000,0,0);}
.m29_c01082{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.ma_c01082{transform:matrix(0.247975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247975,0.000000,0.000000,0.250000,0,0);}
.m2a_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);}
.m1_c01082{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m17_c01082{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m19_c01082{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m5_c01082{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m3_c01082{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m16_c01082{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);}
.m31_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);}
.mb_c01082{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m9_c01082{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m22_c01082{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01082{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mf_c01082{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m6_c01082{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m2_c01082{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);}
.m37_c01082{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m39_c01082{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m36_c01082{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m20_c01082{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01082{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01082{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4_c01082{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m23_c01082{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m26_c01082{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m14_c01082{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m38_c01082{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01082{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m15_c01082{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01082{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m18_c01082{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01082{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01082{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01082{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m32_c01082{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m10_c01082{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m30_c01082{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);}
.m41_c01082{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01082{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);}
.m35_c01082{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.md_c01082{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);}
.m7_c01082{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);}
.m0_c01082{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m21_c01082{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);}
.m3a_c01082{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);}
.m27_c01082{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m12_c01082{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);}
.m42_c01082{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m33_c01082{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m11_c01082{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m34_c01082{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01082{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);}
.m1b_c01082{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m40_c01082{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);}
.m3d_c01082{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01082{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m24_c01082{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01082{transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);}
.m25_c01082{transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);}
.v2_c01082{vertical-align:-2.880000px;}
.v0_c01082{vertical-align:0.000000px;}
.v3_c01082{vertical-align:2.880000px;}
.v1_c01082{vertical-align:8.640000px;}
.ls2_c01082{letter-spacing:0.000000px;}
.ls0_c01082{letter-spacing:45.367680px;}
.ls1_c01082{letter-spacing:85.783680px;}
.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;}
}
.ws2_c01082{word-spacing:0.000000px;}
.ws1_c01082{word-spacing:9.210378px;}
.ws0_c01082{word-spacing:80.880000px;}
.fc0_c01082{color:transparent;}
.fs9_c01082{font-size:46.080000px;}
.fs7_c01082{font-size:48.960000px;}
.fs5_c01082{font-size:51.840000px;}
.fs6_c01082{font-size:54.720000px;}
.fs8_c01082{font-size:57.600000px;}
.fs0_c01082{font-size:60.480000px;}
.fsa_c01082{font-size:63.360000px;}
.fsb_c01082{font-size:66.240000px;}
.fs4_c01082{font-size:69.120000px;}
.fs1_c01082{font-size:72.000000px;}
.fs2_c01082{font-size:74.880000px;}
.fs3_c01082{font-size:77.760000px;}
.fsc_c01082{font-size:80.640000px;}
.fsd_c01082{font-size:109.440000px;}
.y0_c01082{bottom:0.000000px;}
.y85_c01082{bottom:69.840000px;}
.y88_c01082{bottom:70.560000px;}
.y87_c01082{bottom:71.280000px;}
.y84_c01082{bottom:72.000000px;}
.y86_c01082{bottom:72.720000px;}
.y83_c01082{bottom:74.880000px;}
.y82_c01082{bottom:114.480000px;}
.y81_c01082{bottom:146.160000px;}
.y7c_c01082{bottom:146.880000px;}
.y7f_c01082{bottom:147.600000px;}
.y80_c01082{bottom:148.320000px;}
.y7d_c01082{bottom:149.040000px;}
.y7e_c01082{bottom:149.760000px;}
.y7b_c01082{bottom:150.480000px;}
.y79_c01082{bottom:179.280000px;}
.y78_c01082{bottom:188.640000px;}
.y7a_c01082{bottom:189.360000px;}
.y77_c01082{bottom:190.080000px;}
.y76_c01082{bottom:193.680000px;}
.y75_c01082{bottom:232.560000px;}
.y72_c01082{bottom:233.280000px;}
.y74_c01082{bottom:234.000000px;}
.y73_c01082{bottom:235.440000px;}
.y6f_c01082{bottom:264.960000px;}
.y70_c01082{bottom:266.400000px;}
.y71_c01082{bottom:267.120000px;}
.y6e_c01082{bottom:267.840000px;}
.y6d_c01082{bottom:306.000000px;}
.y69_c01082{bottom:308.160000px;}
.y68_c01082{bottom:308.880000px;}
.y6c_c01082{bottom:309.600000px;}
.y6a_c01082{bottom:310.320000px;}
.y6b_c01082{bottom:350.640000px;}
.y66_c01082{bottom:351.360000px;}
.y65_c01082{bottom:352.800000px;}
.y67_c01082{bottom:353.520000px;}
.y64_c01082{bottom:354.240000px;}
.y4d_c01082{bottom:393.840000px;}
.y4c_c01082{bottom:394.560000px;}
.y63_c01082{bottom:395.280000px;}
.y4b_c01082{bottom:396.000000px;}
.y62_c01082{bottom:397.440000px;}
.y4a_c01082{bottom:437.040000px;}
.y49_c01082{bottom:438.480000px;}
.y61_c01082{bottom:439.920000px;}
.y60_c01082{bottom:440.640000px;}
.y48_c01082{bottom:478.800000px;}
.y46_c01082{bottom:479.520000px;}
.y5f_c01082{bottom:480.960000px;}
.y45_c01082{bottom:481.680000px;}
.y47_c01082{bottom:482.400000px;}
.y5e_c01082{bottom:483.840000px;}
.y42_c01082{bottom:521.280000px;}
.y43_c01082{bottom:522.720000px;}
.y5d_c01082{bottom:524.160000px;}
.y41_c01082{bottom:524.880000px;}
.y44_c01082{bottom:525.600000px;}
.y5c_c01082{bottom:527.040000px;}
.y40_c01082{bottom:563.760000px;}
.y5b_c01082{bottom:566.640000px;}
.y3f_c01082{bottom:567.360000px;}
.y5a_c01082{bottom:568.080000px;}
.y58_c01082{bottom:569.520000px;}
.y59_c01082{bottom:570.240000px;}
.y3e_c01082{bottom:606.960000px;}
.y3d_c01082{bottom:609.840000px;}
.y55_c01082{bottom:610.560000px;}
.y54_c01082{bottom:611.280000px;}
.y56_c01082{bottom:612.000000px;}
.y57_c01082{bottom:612.720000px;}
.y3c_c01082{bottom:650.160000px;}
.y3b_c01082{bottom:652.320000px;}
.y52_c01082{bottom:653.040000px;}
.y53_c01082{bottom:653.760000px;}
.y51_c01082{bottom:654.480000px;}
.y3a_c01082{bottom:692.640000px;}
.y39_c01082{bottom:695.520000px;}
.y2d_c01082{bottom:696.240000px;}
.y4f_c01082{bottom:697.680000px;}
.y50_c01082{bottom:699.120000px;}
.y2e_c01082{bottom:699.840000px;}
.y37_c01082{bottom:735.840000px;}
.y38_c01082{bottom:737.280000px;}
.y36_c01082{bottom:738.720000px;}
.y4e_c01082{bottom:740.160000px;}
.y2a_c01082{bottom:740.880000px;}
.y2b_c01082{bottom:741.600000px;}
.y2c_c01082{bottom:743.040000px;}
.y32_c01082{bottom:779.760000px;}
.y33_c01082{bottom:780.480000px;}
.y31_c01082{bottom:781.200000px;}
.y35_c01082{bottom:781.920000px;}
.y28_c01082{bottom:784.080000px;}
.y34_c01082{bottom:785.520000px;}
.y29_c01082{bottom:786.240000px;}
.y13_c01082{bottom:821.520000px;}
.y14_c01082{bottom:823.680000px;}
.y12_c01082{bottom:825.120000px;}
.y16_c01082{bottom:825.840000px;}
.y30_c01082{bottom:826.560000px;}
.y17_c01082{bottom:827.280000px;}
.y15_c01082{bottom:828.000000px;}
.y27_c01082{bottom:828.720000px;}
.y26_c01082{bottom:830.160000px;}
.ye_c01082{bottom:864.720000px;}
.yf_c01082{bottom:866.880000px;}
.yd_c01082{bottom:867.600000px;}
.y10_c01082{bottom:870.480000px;}
.y11_c01082{bottom:871.200000px;}
.y25_c01082{bottom:871.920000px;}
.y24_c01082{bottom:873.360000px;}
.yc_c01082{bottom:907.920000px;}
.yb_c01082{bottom:910.080000px;}
.y22_c01082{bottom:913.680000px;}
.y2f_c01082{bottom:914.400000px;}
.y23_c01082{bottom:915.120000px;}
.y8_c01082{bottom:950.400000px;}
.y7_c01082{bottom:952.560000px;}
.y9_c01082{bottom:954.000000px;}
.ya_c01082{bottom:954.720000px;}
.y1e_c01082{bottom:956.880000px;}
.y20_c01082{bottom:957.600000px;}
.y1f_c01082{bottom:958.320000px;}
.y21_c01082{bottom:959.760000px;}
.y4_c01082{bottom:994.320000px;}
.y3_c01082{bottom:995.760000px;}
.y6_c01082{bottom:996.480000px;}
.y5_c01082{bottom:997.200000px;}
.y1c_c01082{bottom:1000.080000px;}
.y1d_c01082{bottom:1001.520000px;}
.y2_c01082{bottom:1037.520000px;}
.y1_c01082{bottom:1038.960000px;}
.y19_c01082{bottom:1043.280000px;}
.y1a_c01082{bottom:1046.160000px;}
.y1b_c01082{bottom:1046.880000px;}
.y18_c01082{bottom:1103.760000px;}
.hb_c01082{height:41.467500px;}
.h9_c01082{height:44.059219px;}
.h7_c01082{height:46.650937px;}
.h8_c01082{height:49.242656px;}
.ha_c01082{height:51.834375px;}
.h2_c01082{height:54.426094px;}
.hf_c01082{height:54.714375px;}
.hc_c01082{height:57.017812px;}
.he_c01082{height:57.882656px;}
.hd_c01082{height:59.609531px;}
.h6_c01082{height:62.201250px;}
.h3_c01082{height:64.792969px;}
.h4_c01082{height:67.384687px;}
.h5_c01082{height:69.976406px;}
.h10_c01082{height:72.568125px;}
.h11_c01082{height:98.485312px;}
.h0_c01082{height:1159.920000px;}
.h1_c01082{height:1160.250000px;}
.w1_c01082{width:807.750000px;}
.w0_c01082{width:807.840000px;}
.x0_c01082{left:0.000000px;}
.x1_c01082{left:88.560000px;}
.x8_c01082{left:90.000000px;}
.x29_c01082{left:91.440000px;}
.x37_c01082{left:92.880000px;}
.x2_c01082{left:162.720000px;}
.x19_c01082{left:164.160000px;}
.x2a_c01082{left:165.600000px;}
.x2f_c01082{left:167.760000px;}
.x30_c01082{left:218.880000px;}
.x4_c01082{left:249.840000px;}
.x1a_c01082{left:262.800000px;}
.x3_c01082{left:292.320000px;}
.x2b_c01082{left:294.480000px;}
.x38_c01082{left:306.720000px;}
.x1e_c01082{left:315.360000px;}
.x31_c01082{left:317.520000px;}
.x1c_c01082{left:326.160000px;}
.x1f_c01082{left:327.600000px;}
.x2c_c01082{left:339.120000px;}
.x16_c01082{left:347.760000px;}
.x1d_c01082{left:369.360000px;}
.x5_c01082{left:379.440000px;}
.x2d_c01082{left:393.120000px;}
.x6_c01082{left:399.600000px;}
.x9_c01082{left:401.040000px;}
.x33_c01082{left:437.040000px;}
.x7_c01082{left:444.960000px;}
.x1b_c01082{left:455.760000px;}
.x17_c01082{left:477.360000px;}
.xa_c01082{left:498.960000px;}
.x32_c01082{left:523.440000px;}
.x18_c01082{left:532.080000px;}
.x21_c01082{left:565.920000px;}
.x25_c01082{left:567.360000px;}
.xc_c01082{left:576.000000px;}
.x28_c01082{left:578.160000px;}
.x34_c01082{left:579.600000px;}
.x10_c01082{left:596.880000px;}
.xd_c01082{left:598.320000px;}
.x22_c01082{left:599.760000px;}
.xe_c01082{left:617.760000px;}
.x20_c01082{left:619.920000px;}
.x24_c01082{left:624.960000px;}
.x11_c01082{left:652.320000px;}
.x15_c01082{left:654.480000px;}
.x35_c01082{left:655.920000px;}
.x12_c01082{left:686.160000px;}
.x26_c01082{left:687.600000px;}
.x36_c01082{left:689.040000px;}
.xb_c01082{left:695.520000px;}
.x23_c01082{left:697.680000px;}
.x27_c01082{left:720.000000px;}
.xf_c01082{left:728.640000px;}
.x13_c01082{left:730.080000px;}
.x2e_c01082{left:731.520000px;}
.x14_c01082{left:749.520000px;}
@media print{
.v2_c01082{vertical-align:-2.560000pt;}
.v0_c01082{vertical-align:0.000000pt;}
.v3_c01082{vertical-align:2.560000pt;}
.v1_c01082{vertical-align:7.680000pt;}
.ls2_c01082{letter-spacing:0.000000pt;}
.ls0_c01082{letter-spacing:40.326827pt;}
.ls1_c01082{letter-spacing:76.252160pt;}
.ws2_c01082{word-spacing:0.000000pt;}
.ws1_c01082{word-spacing:8.187003pt;}
.ws0_c01082{word-spacing:71.893333pt;}
.fs9_c01082{font-size:40.960000pt;}
.fs7_c01082{font-size:43.520000pt;}
.fs5_c01082{font-size:46.080000pt;}
.fs6_c01082{font-size:48.640000pt;}
.fs8_c01082{font-size:51.200000pt;}
.fs0_c01082{font-size:53.760000pt;}
.fsa_c01082{font-size:56.320000pt;}
.fsb_c01082{font-size:58.880000pt;}
.fs4_c01082{font-size:61.440000pt;}
.fs1_c01082{font-size:64.000000pt;}
.fs2_c01082{font-size:66.560000pt;}
.fs3_c01082{font-size:69.120000pt;}
.fsc_c01082{font-size:71.680000pt;}
.fsd_c01082{font-size:97.280000pt;}
.y0_c01082{bottom:0.000000pt;}
.y85_c01082{bottom:62.080000pt;}
.y88_c01082{bottom:62.720000pt;}
.y87_c01082{bottom:63.360000pt;}
.y84_c01082{bottom:64.000000pt;}
.y86_c01082{bottom:64.640000pt;}
.y83_c01082{bottom:66.560000pt;}
.y82_c01082{bottom:101.760000pt;}
.y81_c01082{bottom:129.920000pt;}
.y7c_c01082{bottom:130.560000pt;}
.y7f_c01082{bottom:131.200000pt;}
.y80_c01082{bottom:131.840000pt;}
.y7d_c01082{bottom:132.480000pt;}
.y7e_c01082{bottom:133.120000pt;}
.y7b_c01082{bottom:133.760000pt;}
.y79_c01082{bottom:159.360000pt;}
.y78_c01082{bottom:167.680000pt;}
.y7a_c01082{bottom:168.320000pt;}
.y77_c01082{bottom:168.960000pt;}
.y76_c01082{bottom:172.160000pt;}
.y75_c01082{bottom:206.720000pt;}
.y72_c01082{bottom:207.360000pt;}
.y74_c01082{bottom:208.000000pt;}
.y73_c01082{bottom:209.280000pt;}
.y6f_c01082{bottom:235.520000pt;}
.y70_c01082{bottom:236.800000pt;}
.y71_c01082{bottom:237.440000pt;}
.y6e_c01082{bottom:238.080000pt;}
.y6d_c01082{bottom:272.000000pt;}
.y69_c01082{bottom:273.920000pt;}
.y68_c01082{bottom:274.560000pt;}
.y6c_c01082{bottom:275.200000pt;}
.y6a_c01082{bottom:275.840000pt;}
.y6b_c01082{bottom:311.680000pt;}
.y66_c01082{bottom:312.320000pt;}
.y65_c01082{bottom:313.600000pt;}
.y67_c01082{bottom:314.240000pt;}
.y64_c01082{bottom:314.880000pt;}
.y4d_c01082{bottom:350.080000pt;}
.y4c_c01082{bottom:350.720000pt;}
.y63_c01082{bottom:351.360000pt;}
.y4b_c01082{bottom:352.000000pt;}
.y62_c01082{bottom:353.280000pt;}
.y4a_c01082{bottom:388.480000pt;}
.y49_c01082{bottom:389.760000pt;}
.y61_c01082{bottom:391.040000pt;}
.y60_c01082{bottom:391.680000pt;}
.y48_c01082{bottom:425.600000pt;}
.y46_c01082{bottom:426.240000pt;}
.y5f_c01082{bottom:427.520000pt;}
.y45_c01082{bottom:428.160000pt;}
.y47_c01082{bottom:428.800000pt;}
.y5e_c01082{bottom:430.080000pt;}
.y42_c01082{bottom:463.360000pt;}
.y43_c01082{bottom:464.640000pt;}
.y5d_c01082{bottom:465.920000pt;}
.y41_c01082{bottom:466.560000pt;}
.y44_c01082{bottom:467.200000pt;}
.y5c_c01082{bottom:468.480000pt;}
.y40_c01082{bottom:501.120000pt;}
.y5b_c01082{bottom:503.680000pt;}
.y3f_c01082{bottom:504.320000pt;}
.y5a_c01082{bottom:504.960000pt;}
.y58_c01082{bottom:506.240000pt;}
.y59_c01082{bottom:506.880000pt;}
.y3e_c01082{bottom:539.520000pt;}
.y3d_c01082{bottom:542.080000pt;}
.y55_c01082{bottom:542.720000pt;}
.y54_c01082{bottom:543.360000pt;}
.y56_c01082{bottom:544.000000pt;}
.y57_c01082{bottom:544.640000pt;}
.y3c_c01082{bottom:577.920000pt;}
.y3b_c01082{bottom:579.840000pt;}
.y52_c01082{bottom:580.480000pt;}
.y53_c01082{bottom:581.120000pt;}
.y51_c01082{bottom:581.760000pt;}
.y3a_c01082{bottom:615.680000pt;}
.y39_c01082{bottom:618.240000pt;}
.y2d_c01082{bottom:618.880000pt;}
.y4f_c01082{bottom:620.160000pt;}
.y50_c01082{bottom:621.440000pt;}
.y2e_c01082{bottom:622.080000pt;}
.y37_c01082{bottom:654.080000pt;}
.y38_c01082{bottom:655.360000pt;}
.y36_c01082{bottom:656.640000pt;}
.y4e_c01082{bottom:657.920000pt;}
.y2a_c01082{bottom:658.560000pt;}
.y2b_c01082{bottom:659.200000pt;}
.y2c_c01082{bottom:660.480000pt;}
.y32_c01082{bottom:693.120000pt;}
.y33_c01082{bottom:693.760000pt;}
.y31_c01082{bottom:694.400000pt;}
.y35_c01082{bottom:695.040000pt;}
.y28_c01082{bottom:696.960000pt;}
.y34_c01082{bottom:698.240000pt;}
.y29_c01082{bottom:698.880000pt;}
.y13_c01082{bottom:730.240000pt;}
.y14_c01082{bottom:732.160000pt;}
.y12_c01082{bottom:733.440000pt;}
.y16_c01082{bottom:734.080000pt;}
.y30_c01082{bottom:734.720000pt;}
.y17_c01082{bottom:735.360000pt;}
.y15_c01082{bottom:736.000000pt;}
.y27_c01082{bottom:736.640000pt;}
.y26_c01082{bottom:737.920000pt;}
.ye_c01082{bottom:768.640000pt;}
.yf_c01082{bottom:770.560000pt;}
.yd_c01082{bottom:771.200000pt;}
.y10_c01082{bottom:773.760000pt;}
.y11_c01082{bottom:774.400000pt;}
.y25_c01082{bottom:775.040000pt;}
.y24_c01082{bottom:776.320000pt;}
.yc_c01082{bottom:807.040000pt;}
.yb_c01082{bottom:808.960000pt;}
.y22_c01082{bottom:812.160000pt;}
.y2f_c01082{bottom:812.800000pt;}
.y23_c01082{bottom:813.440000pt;}
.y8_c01082{bottom:844.800000pt;}
.y7_c01082{bottom:846.720000pt;}
.y9_c01082{bottom:848.000000pt;}
.ya_c01082{bottom:848.640000pt;}
.y1e_c01082{bottom:850.560000pt;}
.y20_c01082{bottom:851.200000pt;}
.y1f_c01082{bottom:851.840000pt;}
.y21_c01082{bottom:853.120000pt;}
.y4_c01082{bottom:883.840000pt;}
.y3_c01082{bottom:885.120000pt;}
.y6_c01082{bottom:885.760000pt;}
.y5_c01082{bottom:886.400000pt;}
.y1c_c01082{bottom:888.960000pt;}
.y1d_c01082{bottom:890.240000pt;}
.y2_c01082{bottom:922.240000pt;}
.y1_c01082{bottom:923.520000pt;}
.y19_c01082{bottom:927.360000pt;}
.y1a_c01082{bottom:929.920000pt;}
.y1b_c01082{bottom:930.560000pt;}
.y18_c01082{bottom:981.120000pt;}
.hb_c01082{height:36.860000pt;}
.h9_c01082{height:39.163750pt;}
.h7_c01082{height:41.467500pt;}
.h8_c01082{height:43.771250pt;}
.ha_c01082{height:46.075000pt;}
.h2_c01082{height:48.378750pt;}
.hf_c01082{height:48.635000pt;}
.hc_c01082{height:50.682500pt;}
.he_c01082{height:51.451250pt;}
.hd_c01082{height:52.986250pt;}
.h6_c01082{height:55.290000pt;}
.h3_c01082{height:57.593750pt;}
.h4_c01082{height:59.897500pt;}
.h5_c01082{height:62.201250pt;}
.h10_c01082{height:64.505000pt;}
.h11_c01082{height:87.542500pt;}
.h0_c01082{height:1031.040000pt;}
.h1_c01082{height:1031.333333pt;}
.w1_c01082{width:718.000000pt;}
.w0_c01082{width:718.080000pt;}
.x0_c01082{left:0.000000pt;}
.x1_c01082{left:78.720000pt;}
.x8_c01082{left:80.000000pt;}
.x29_c01082{left:81.280000pt;}
.x37_c01082{left:82.560000pt;}
.x2_c01082{left:144.640000pt;}
.x19_c01082{left:145.920000pt;}
.x2a_c01082{left:147.200000pt;}
.x2f_c01082{left:149.120000pt;}
.x30_c01082{left:194.560000pt;}
.x4_c01082{left:222.080000pt;}
.x1a_c01082{left:233.600000pt;}
.x3_c01082{left:259.840000pt;}
.x2b_c01082{left:261.760000pt;}
.x38_c01082{left:272.640000pt;}
.x1e_c01082{left:280.320000pt;}
.x31_c01082{left:282.240000pt;}
.x1c_c01082{left:289.920000pt;}
.x1f_c01082{left:291.200000pt;}
.x2c_c01082{left:301.440000pt;}
.x16_c01082{left:309.120000pt;}
.x1d_c01082{left:328.320000pt;}
.x5_c01082{left:337.280000pt;}
.x2d_c01082{left:349.440000pt;}
.x6_c01082{left:355.200000pt;}
.x9_c01082{left:356.480000pt;}
.x33_c01082{left:388.480000pt;}
.x7_c01082{left:395.520000pt;}
.x1b_c01082{left:405.120000pt;}
.x17_c01082{left:424.320000pt;}
.xa_c01082{left:443.520000pt;}
.x32_c01082{left:465.280000pt;}
.x18_c01082{left:472.960000pt;}
.x21_c01082{left:503.040000pt;}
.x25_c01082{left:504.320000pt;}
.xc_c01082{left:512.000000pt;}
.x28_c01082{left:513.920000pt;}
.x34_c01082{left:515.200000pt;}
.x10_c01082{left:530.560000pt;}
.xd_c01082{left:531.840000pt;}
.x22_c01082{left:533.120000pt;}
.xe_c01082{left:549.120000pt;}
.x20_c01082{left:551.040000pt;}
.x24_c01082{left:555.520000pt;}
.x11_c01082{left:579.840000pt;}
.x15_c01082{left:581.760000pt;}
.x35_c01082{left:583.040000pt;}
.x12_c01082{left:609.920000pt;}
.x26_c01082{left:611.200000pt;}
.x36_c01082{left:612.480000pt;}
.xb_c01082{left:618.240000pt;}
.x23_c01082{left:620.160000pt;}
.x27_c01082{left:640.000000pt;}
.xf_c01082{left:647.680000pt;}
.x13_c01082{left:648.960000pt;}
.x2e_c01082{left:650.240000pt;}
.x14_c01082{left:666.240000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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;}
@font-face{font-family:ff1_c01083;src:url('chunks/assets/font_b2131fe114ba1bcf09fcb5e7.woff2')format("woff");}.ff1_c01083{font-family:ff1_c01083;line-height:1.109863;font-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_c01083{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m4e_c01083{transform:matrix(0.175550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175550,0.000000,0.000000,0.250000,0,0);}
.m49_c01083{transform:matrix(0.188850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188850,0.000000,0.000000,0.250000,0,0);}
.m4d_c01083{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01083{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);}
.m16_c01083{transform:matrix(0.235700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235700,0.000000,0.000000,0.250000,0,0);}
.md_c01083{transform:matrix(0.239175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239175,0.000000,0.000000,0.250000,0,0);}
.m25_c01083{transform:matrix(0.245850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245850,0.000000,0.000000,0.250000,0,0);}
.m22_c01083{transform:matrix(0.249200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249200,0.000000,0.000000,0.250000,0,0);}
.m5_c01083{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);}
.m2b_c01083{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mf_c01083{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);}
.m4c_c01083{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_c01083{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1_c01083{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_c01083{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);}
.m20_c01083{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);}
.m2a_c01083{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01083{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m3_c01083{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m14_c01083{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m13_c01083{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m6_c01083{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01083{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m11_c01083{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m24_c01083{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01083{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m7_c01083{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01083{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m34_c01083{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m37_c01083{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01083{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01083{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01083{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m26_c01083{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2_c01083{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m27_c01083{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mc_c01083{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m28_c01083{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);}
.m4a_c01083{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01083{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);}
.m42_c01083{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m30_c01083{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);}
.m19_c01083{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);}
.m1d_c01083{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m45_c01083{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m41_c01083{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m38_c01083{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);}
.m8_c01083{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_c01083{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);}
.m32_c01083{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);}
.ma_c01083{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);}
.m1c_c01083{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m31_c01083{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m48_c01083{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m40_c01083{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);}
.m10_c01083{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m17_c01083{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m9_c01083{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m12_c01083{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01083{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01083{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m43_c01083{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m21_c01083{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m36_c01083{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);}
.m4_c01083{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m35_c01083{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);}
.m39_c01083{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m33_c01083{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01083{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);}
.m29_c01083{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m46_c01083{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.me_c01083{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m44_c01083{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);}
.m3e_c01083{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m51_c01083{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m50_c01083{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.mb_c01083{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);}
.m47_c01083{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m4f_c01083{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.m23_c01083{transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);}
.m15_c01083{transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);}
.v1_c01083{vertical-align:-8.640000px;}
.v2_c01083{vertical-align:-5.760000px;}
.v0_c01083{vertical-align:0.000000px;}
.ls0_c01083{letter-spacing:0.000000px;}
.sc__c01083{text-shadow:none;}
.sc0_c01083{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01083{-webkit-text-stroke:0px transparent;}
.sc0_c01083{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01083{word-spacing:-1.591200px;}
.ws1_c01083{word-spacing:-1.138080px;}
.ws3_c01083{word-spacing:0.000000px;}
.ws2_c01083{word-spacing:1.604640px;}
.fc0_c01083{color:transparent;}
.fsb_c01083{font-size:2.880000px;}
.fsa_c01083{font-size:17.280000px;}
.fs13_c01083{font-size:23.040000px;}
.fsf_c01083{font-size:28.800000px;}
.fs9_c01083{font-size:31.680000px;}
.fs11_c01083{font-size:37.440000px;}
.fs10_c01083{font-size:40.320000px;}
.fs12_c01083{font-size:43.200000px;}
.fse_c01083{font-size:46.080000px;}
.fsd_c01083{font-size:48.960000px;}
.fs7_c01083{font-size:51.840000px;}
.fs4_c01083{font-size:54.720000px;}
.fs1_c01083{font-size:57.600000px;}
.fs0_c01083{font-size:60.480000px;}
.fs6_c01083{font-size:63.360000px;}
.fs8_c01083{font-size:66.240000px;}
.fs2_c01083{font-size:69.120000px;}
.fsc_c01083{font-size:72.000000px;}
.fs3_c01083{font-size:74.880000px;}
.fs5_c01083{font-size:77.760000px;}
.y0_c01083{bottom:0.000000px;}
.y67_c01083{bottom:54.000000px;}
.y68_c01083{bottom:54.720000px;}
.y81_c01083{bottom:80.640000px;}
.y65_c01083{bottom:82.080000px;}
.y82_c01083{bottom:82.800000px;}
.y63_c01083{bottom:84.240000px;}
.y64_c01083{bottom:84.960000px;}
.y62_c01083{bottom:86.400000px;}
.y66_c01083{bottom:87.120000px;}
.y80_c01083{bottom:125.280000px;}
.y60_c01083{bottom:126.000000px;}
.y5f_c01083{bottom:126.720000px;}
.y61_c01083{bottom:128.160000px;}
.y5e_c01083{bottom:128.880000px;}
.y7e_c01083{bottom:167.760000px;}
.y5d_c01083{bottom:168.480000px;}
.y7f_c01083{bottom:169.920000px;}
.y5c_c01083{bottom:170.640000px;}
.y5b_c01083{bottom:171.360000px;}
.y7c_c01083{bottom:209.520000px;}
.y7b_c01083{bottom:210.960000px;}
.y59_c01083{bottom:211.680000px;}
.y7d_c01083{bottom:212.400000px;}
.y7a_c01083{bottom:213.120000px;}
.y5a_c01083{bottom:213.840000px;}
.y57_c01083{bottom:214.560000px;}
.y58_c01083{bottom:215.280000px;}
.y79_c01083{bottom:253.440000px;}
.y56_c01083{bottom:254.160000px;}
.y55_c01083{bottom:254.880000px;}
.y54_c01083{bottom:256.320000px;}
.y53_c01083{bottom:257.040000px;}
.y78_c01083{bottom:295.920000px;}
.y52_c01083{bottom:296.640000px;}
.y50_c01083{bottom:299.520000px;}
.y51_c01083{bottom:300.240000px;}
.y76_c01083{bottom:339.120000px;}
.y77_c01083{bottom:339.840000px;}
.y4d_c01083{bottom:340.560000px;}
.y4c_c01083{bottom:341.280000px;}
.y4b_c01083{bottom:342.000000px;}
.y4f_c01083{bottom:342.720000px;}
.y4e_c01083{bottom:343.440000px;}
.y75_c01083{bottom:382.320000px;}
.y49_c01083{bottom:383.040000px;}
.y47_c01083{bottom:384.480000px;}
.y4a_c01083{bottom:385.200000px;}
.y48_c01083{bottom:385.920000px;}
.y74_c01083{bottom:425.520000px;}
.y46_c01083{bottom:426.240000px;}
.y43_c01083{bottom:426.960000px;}
.y42_c01083{bottom:428.400000px;}
.y44_c01083{bottom:429.120000px;}
.y45_c01083{bottom:429.840000px;}
.y3f_c01083{bottom:471.600000px;}
.y41_c01083{bottom:472.320000px;}
.y40_c01083{bottom:473.040000px;}
.y3c_c01083{bottom:501.840000px;}
.y3e_c01083{bottom:502.560000px;}
.y3b_c01083{bottom:504.000000px;}
.y3d_c01083{bottom:505.440000px;}
.y39_c01083{bottom:545.040000px;}
.y3a_c01083{bottom:545.760000px;}
.y38_c01083{bottom:546.480000px;}
.y73_c01083{bottom:547.200000px;}
.y37_c01083{bottom:547.920000px;}
.y36_c01083{bottom:577.440000px;}
.y33_c01083{bottom:587.520000px;}
.y31_c01083{bottom:588.240000px;}
.y34_c01083{bottom:588.960000px;}
.y30_c01083{bottom:589.680000px;}
.y35_c01083{bottom:590.400000px;}
.y32_c01083{bottom:591.120000px;}
.y2f_c01083{bottom:630.000000px;}
.y2e_c01083{bottom:630.720000px;}
.y2c_c01083{bottom:632.880000px;}
.y72_c01083{bottom:633.600000px;}
.y2d_c01083{bottom:634.320000px;}
.y2b_c01083{bottom:673.920000px;}
.y29_c01083{bottom:674.640000px;}
.y2a_c01083{bottom:675.360000px;}
.y27_c01083{bottom:676.080000px;}
.y28_c01083{bottom:676.800000px;}
.y26_c01083{bottom:717.120000px;}
.y24_c01083{bottom:748.800000px;}
.y21_c01083{bottom:750.240000px;}
.y23_c01083{bottom:750.960000px;}
.y22_c01083{bottom:752.400000px;}
.y25_c01083{bottom:753.120000px;}
.y1e_c01083{bottom:792.000000px;}
.y1d_c01083{bottom:793.440000px;}
.y20_c01083{bottom:794.160000px;}
.y1f_c01083{bottom:795.600000px;}
.y71_c01083{bottom:796.320000px;}
.y1b_c01083{bottom:834.480000px;}
.y1a_c01083{bottom:835.920000px;}
.y6e_c01083{bottom:836.640000px;}
.y70_c01083{bottom:837.360000px;}
.y1c_c01083{bottom:838.080000px;}
.y6f_c01083{bottom:838.800000px;}
.y19_c01083{bottom:867.600000px;}
.y14_c01083{bottom:876.960000px;}
.y16_c01083{bottom:877.680000px;}
.y17_c01083{bottom:878.400000px;}
.y12_c01083{bottom:879.120000px;}
.y11_c01083{bottom:879.840000px;}
.y18_c01083{bottom:880.560000px;}
.y15_c01083{bottom:881.280000px;}
.y6d_c01083{bottom:882.720000px;}
.y13_c01083{bottom:883.440000px;}
.y10_c01083{bottom:911.520000px;}
.yc_c01083{bottom:920.160000px;}
.yb_c01083{bottom:921.600000px;}
.yf_c01083{bottom:922.320000px;}
.y6c_c01083{bottom:923.040000px;}
.ye_c01083{bottom:923.760000px;}
.yd_c01083{bottom:924.480000px;}
.y9_c01083{bottom:964.080000px;}
.y8_c01083{bottom:964.800000px;}
.ya_c01083{bottom:967.680000px;}
.y4_c01083{bottom:995.760000px;}
.y3_c01083{bottom:996.480000px;}
.y6_c01083{bottom:998.640000px;}
.y5_c01083{bottom:999.360000px;}
.y7_c01083{bottom:1000.800000px;}
.y1_c01083{bottom:1041.120000px;}
.y2_c01083{bottom:1041.840000px;}
.y6b_c01083{bottom:1042.560000px;}
.y6a_c01083{bottom:1107.360000px;}
.y69_c01083{bottom:1108.800000px;}
.hd_c01083{height:2.591719px;}
.hc_c01083{height:15.550313px;}
.h15_c01083{height:20.733750px;}
.h11_c01083{height:25.917187px;}
.hb_c01083{height:28.508906px;}
.h13_c01083{height:33.692344px;}
.h12_c01083{height:36.284062px;}
.h14_c01083{height:38.875781px;}
.h10_c01083{height:41.467500px;}
.hf_c01083{height:44.059219px;}
.h9_c01083{height:46.650937px;}
.h6_c01083{height:49.242656px;}
.h3_c01083{height:51.834375px;}
.h2_c01083{height:54.426094px;}
.h8_c01083{height:57.017812px;}
.ha_c01083{height:59.609531px;}
.h4_c01083{height:62.201250px;}
.he_c01083{height:64.792969px;}
.h5_c01083{height:67.384687px;}
.h7_c01083{height:69.976406px;}
.h0_c01083{height:1157.760000px;}
.h1_c01083{height:1158.000000px;}
.w1_c01083{width:801.000000px;}
.w0_c01083{width:801.360000px;}
.x0_c01083{left:0.000000px;}
.xf_c01083{left:90.720000px;}
.x3_c01083{left:92.160000px;}
.x10_c01083{left:136.080000px;}
.x11_c01083{left:144.000000px;}
.x4_c01083{left:165.600000px;}
.x23_c01083{left:208.800000px;}
.x1d_c01083{left:210.240000px;}
.x12_c01083{left:212.400000px;}
.x7_c01083{left:230.400000px;}
.xa_c01083{left:252.720000px;}
.x8_c01083{left:285.120000px;}
.x18_c01083{left:295.920000px;}
.x15_c01083{left:306.000000px;}
.xb_c01083{left:307.440000px;}
.x1b_c01083{left:316.800000px;}
.x9_c01083{left:328.320000px;}
.x14_c01083{left:349.920000px;}
.x16_c01083{left:361.440000px;}
.x5_c01083{left:371.520000px;}
.x20_c01083{left:382.320000px;}
.x19_c01083{left:404.640000px;}
.x6_c01083{left:426.240000px;}
.x13_c01083{left:437.040000px;}
.x1c_c01083{left:457.200000px;}
.x1e_c01083{left:469.440000px;}
.x21_c01083{left:478.800000px;}
.x1a_c01083{left:490.320000px;}
.xc_c01083{left:491.760000px;}
.x17_c01083{left:501.840000px;}
.xe_c01083{left:523.440000px;}
.x22_c01083{left:534.240000px;}
.xd_c01083{left:540.000000px;}
.x1f_c01083{left:567.360000px;}
.x1_c01083{left:568.800000px;}
.x2_c01083{left:600.480000px;}
.x2c_c01083{left:621.360000px;}
.x2a_c01083{left:654.480000px;}
.x26_c01083{left:655.920000px;}
.x2d_c01083{left:687.600000px;}
.x27_c01083{left:689.040000px;}
.x24_c01083{left:704.160000px;}
.x2b_c01083{left:721.440000px;}
.x25_c01083{left:723.600000px;}
.x28_c01083{left:730.800000px;}
.x29_c01083{left:732.240000px;}
.x2e_c01083{left:751.680000px;}
@media print{
.v1_c01083{vertical-align:-7.680000pt;}
.v2_c01083{vertical-align:-5.120000pt;}
.v0_c01083{vertical-align:0.000000pt;}
.ls0_c01083{letter-spacing:0.000000pt;}
.ws0_c01083{word-spacing:-1.414400pt;}
.ws1_c01083{word-spacing:-1.011627pt;}
.ws3_c01083{word-spacing:0.000000pt;}
.ws2_c01083{word-spacing:1.426347pt;}
.fsb_c01083{font-size:2.560000pt;}
.fsa_c01083{font-size:15.360000pt;}
.fs13_c01083{font-size:20.480000pt;}
.fsf_c01083{font-size:25.600000pt;}
.fs9_c01083{font-size:28.160000pt;}
.fs11_c01083{font-size:33.280000pt;}
.fs10_c01083{font-size:35.840000pt;}
.fs12_c01083{font-size:38.400000pt;}
.fse_c01083{font-size:40.960000pt;}
.fsd_c01083{font-size:43.520000pt;}
.fs7_c01083{font-size:46.080000pt;}
.fs4_c01083{font-size:48.640000pt;}
.fs1_c01083{font-size:51.200000pt;}
.fs0_c01083{font-size:53.760000pt;}
.fs6_c01083{font-size:56.320000pt;}
.fs8_c01083{font-size:58.880000pt;}
.fs2_c01083{font-size:61.440000pt;}
.fsc_c01083{font-size:64.000000pt;}
.fs3_c01083{font-size:66.560000pt;}
.fs5_c01083{font-size:69.120000pt;}
.y0_c01083{bottom:0.000000pt;}
.y67_c01083{bottom:48.000000pt;}
.y68_c01083{bottom:48.640000pt;}
.y81_c01083{bottom:71.680000pt;}
.y65_c01083{bottom:72.960000pt;}
.y82_c01083{bottom:73.600000pt;}
.y63_c01083{bottom:74.880000pt;}
.y64_c01083{bottom:75.520000pt;}
.y62_c01083{bottom:76.800000pt;}
.y66_c01083{bottom:77.440000pt;}
.y80_c01083{bottom:111.360000pt;}
.y60_c01083{bottom:112.000000pt;}
.y5f_c01083{bottom:112.640000pt;}
.y61_c01083{bottom:113.920000pt;}
.y5e_c01083{bottom:114.560000pt;}
.y7e_c01083{bottom:149.120000pt;}
.y5d_c01083{bottom:149.760000pt;}
.y7f_c01083{bottom:151.040000pt;}
.y5c_c01083{bottom:151.680000pt;}
.y5b_c01083{bottom:152.320000pt;}
.y7c_c01083{bottom:186.240000pt;}
.y7b_c01083{bottom:187.520000pt;}
.y59_c01083{bottom:188.160000pt;}
.y7d_c01083{bottom:188.800000pt;}
.y7a_c01083{bottom:189.440000pt;}
.y5a_c01083{bottom:190.080000pt;}
.y57_c01083{bottom:190.720000pt;}
.y58_c01083{bottom:191.360000pt;}
.y79_c01083{bottom:225.280000pt;}
.y56_c01083{bottom:225.920000pt;}
.y55_c01083{bottom:226.560000pt;}
.y54_c01083{bottom:227.840000pt;}
.y53_c01083{bottom:228.480000pt;}
.y78_c01083{bottom:263.040000pt;}
.y52_c01083{bottom:263.680000pt;}
.y50_c01083{bottom:266.240000pt;}
.y51_c01083{bottom:266.880000pt;}
.y76_c01083{bottom:301.440000pt;}
.y77_c01083{bottom:302.080000pt;}
.y4d_c01083{bottom:302.720000pt;}
.y4c_c01083{bottom:303.360000pt;}
.y4b_c01083{bottom:304.000000pt;}
.y4f_c01083{bottom:304.640000pt;}
.y4e_c01083{bottom:305.280000pt;}
.y75_c01083{bottom:339.840000pt;}
.y49_c01083{bottom:340.480000pt;}
.y47_c01083{bottom:341.760000pt;}
.y4a_c01083{bottom:342.400000pt;}
.y48_c01083{bottom:343.040000pt;}
.y74_c01083{bottom:378.240000pt;}
.y46_c01083{bottom:378.880000pt;}
.y43_c01083{bottom:379.520000pt;}
.y42_c01083{bottom:380.800000pt;}
.y44_c01083{bottom:381.440000pt;}
.y45_c01083{bottom:382.080000pt;}
.y3f_c01083{bottom:419.200000pt;}
.y41_c01083{bottom:419.840000pt;}
.y40_c01083{bottom:420.480000pt;}
.y3c_c01083{bottom:446.080000pt;}
.y3e_c01083{bottom:446.720000pt;}
.y3b_c01083{bottom:448.000000pt;}
.y3d_c01083{bottom:449.280000pt;}
.y39_c01083{bottom:484.480000pt;}
.y3a_c01083{bottom:485.120000pt;}
.y38_c01083{bottom:485.760000pt;}
.y73_c01083{bottom:486.400000pt;}
.y37_c01083{bottom:487.040000pt;}
.y36_c01083{bottom:513.280000pt;}
.y33_c01083{bottom:522.240000pt;}
.y31_c01083{bottom:522.880000pt;}
.y34_c01083{bottom:523.520000pt;}
.y30_c01083{bottom:524.160000pt;}
.y35_c01083{bottom:524.800000pt;}
.y32_c01083{bottom:525.440000pt;}
.y2f_c01083{bottom:560.000000pt;}
.y2e_c01083{bottom:560.640000pt;}
.y2c_c01083{bottom:562.560000pt;}
.y72_c01083{bottom:563.200000pt;}
.y2d_c01083{bottom:563.840000pt;}
.y2b_c01083{bottom:599.040000pt;}
.y29_c01083{bottom:599.680000pt;}
.y2a_c01083{bottom:600.320000pt;}
.y27_c01083{bottom:600.960000pt;}
.y28_c01083{bottom:601.600000pt;}
.y26_c01083{bottom:637.440000pt;}
.y24_c01083{bottom:665.600000pt;}
.y21_c01083{bottom:666.880000pt;}
.y23_c01083{bottom:667.520000pt;}
.y22_c01083{bottom:668.800000pt;}
.y25_c01083{bottom:669.440000pt;}
.y1e_c01083{bottom:704.000000pt;}
.y1d_c01083{bottom:705.280000pt;}
.y20_c01083{bottom:705.920000pt;}
.y1f_c01083{bottom:707.200000pt;}
.y71_c01083{bottom:707.840000pt;}
.y1b_c01083{bottom:741.760000pt;}
.y1a_c01083{bottom:743.040000pt;}
.y6e_c01083{bottom:743.680000pt;}
.y70_c01083{bottom:744.320000pt;}
.y1c_c01083{bottom:744.960000pt;}
.y6f_c01083{bottom:745.600000pt;}
.y19_c01083{bottom:771.200000pt;}
.y14_c01083{bottom:779.520000pt;}
.y16_c01083{bottom:780.160000pt;}
.y17_c01083{bottom:780.800000pt;}
.y12_c01083{bottom:781.440000pt;}
.y11_c01083{bottom:782.080000pt;}
.y18_c01083{bottom:782.720000pt;}
.y15_c01083{bottom:783.360000pt;}
.y6d_c01083{bottom:784.640000pt;}
.y13_c01083{bottom:785.280000pt;}
.y10_c01083{bottom:810.240000pt;}
.yc_c01083{bottom:817.920000pt;}
.yb_c01083{bottom:819.200000pt;}
.yf_c01083{bottom:819.840000pt;}
.y6c_c01083{bottom:820.480000pt;}
.ye_c01083{bottom:821.120000pt;}
.yd_c01083{bottom:821.760000pt;}
.y9_c01083{bottom:856.960000pt;}
.y8_c01083{bottom:857.600000pt;}
.ya_c01083{bottom:860.160000pt;}
.y4_c01083{bottom:885.120000pt;}
.y3_c01083{bottom:885.760000pt;}
.y6_c01083{bottom:887.680000pt;}
.y5_c01083{bottom:888.320000pt;}
.y7_c01083{bottom:889.600000pt;}
.y1_c01083{bottom:925.440000pt;}
.y2_c01083{bottom:926.080000pt;}
.y6b_c01083{bottom:926.720000pt;}
.y6a_c01083{bottom:984.320000pt;}
.y69_c01083{bottom:985.600000pt;}
.hd_c01083{height:2.303750pt;}
.hc_c01083{height:13.822500pt;}
.h15_c01083{height:18.430000pt;}
.h11_c01083{height:23.037500pt;}
.hb_c01083{height:25.341250pt;}
.h13_c01083{height:29.948750pt;}
.h12_c01083{height:32.252500pt;}
.h14_c01083{height:34.556250pt;}
.h10_c01083{height:36.860000pt;}
.hf_c01083{height:39.163750pt;}
.h9_c01083{height:41.467500pt;}
.h6_c01083{height:43.771250pt;}
.h3_c01083{height:46.075000pt;}
.h2_c01083{height:48.378750pt;}
.h8_c01083{height:50.682500pt;}
.ha_c01083{height:52.986250pt;}
.h4_c01083{height:55.290000pt;}
.he_c01083{height:57.593750pt;}
.h5_c01083{height:59.897500pt;}
.h7_c01083{height:62.201250pt;}
.h0_c01083{height:1029.120000pt;}
.h1_c01083{height:1029.333333pt;}
.w1_c01083{width:712.000000pt;}
.w0_c01083{width:712.320000pt;}
.x0_c01083{left:0.000000pt;}
.xf_c01083{left:80.640000pt;}
.x3_c01083{left:81.920000pt;}
.x10_c01083{left:120.960000pt;}
.x11_c01083{left:128.000000pt;}
.x4_c01083{left:147.200000pt;}
.x23_c01083{left:185.600000pt;}
.x1d_c01083{left:186.880000pt;}
.x12_c01083{left:188.800000pt;}
.x7_c01083{left:204.800000pt;}
.xa_c01083{left:224.640000pt;}
.x8_c01083{left:253.440000pt;}
.x18_c01083{left:263.040000pt;}
.x15_c01083{left:272.000000pt;}
.xb_c01083{left:273.280000pt;}
.x1b_c01083{left:281.600000pt;}
.x9_c01083{left:291.840000pt;}
.x14_c01083{left:311.040000pt;}
.x16_c01083{left:321.280000pt;}
.x5_c01083{left:330.240000pt;}
.x20_c01083{left:339.840000pt;}
.x19_c01083{left:359.680000pt;}
.x6_c01083{left:378.880000pt;}
.x13_c01083{left:388.480000pt;}
.x1c_c01083{left:406.400000pt;}
.x1e_c01083{left:417.280000pt;}
.x21_c01083{left:425.600000pt;}
.x1a_c01083{left:435.840000pt;}
.xc_c01083{left:437.120000pt;}
.x17_c01083{left:446.080000pt;}
.xe_c01083{left:465.280000pt;}
.x22_c01083{left:474.880000pt;}
.xd_c01083{left:480.000000pt;}
.x1f_c01083{left:504.320000pt;}
.x1_c01083{left:505.600000pt;}
.x2_c01083{left:533.760000pt;}
.x2c_c01083{left:552.320000pt;}
.x2a_c01083{left:581.760000pt;}
.x26_c01083{left:583.040000pt;}
.x2d_c01083{left:611.200000pt;}
.x27_c01083{left:612.480000pt;}
.x24_c01083{left:625.920000pt;}
.x2b_c01083{left:641.280000pt;}
.x25_c01083{left:643.200000pt;}
.x28_c01083{left:649.600000pt;}
.x29_c01083{left:650.880000pt;}
.x2e_c01083{left:668.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f5ad18b8b180bb2e20b0a163.woff2')format("woff");}.ff1_c01084{font-family:ff1_c01084;line-height:1.109863;font-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_c01084{transform:matrix(0.196325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196325,0.000000,0.000000,0.250000,0,0);}
.m2a_c01084{transform:matrix(0.210575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210575,0.000000,0.000000,0.250000,0,0);}
.m2f_c01084{transform:matrix(0.225350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225350,0.000000,0.000000,0.250000,0,0);}
.m55_c01084{transform:matrix(0.240150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240150,0.000000,0.000000,0.250000,0,0);}
.m4b_c01084{transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);}
.m1f_c01084{transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);}
.m50_c01084{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m54_c01084{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m3b_c01084{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m18_c01084{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);}
.m53_c01084{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.md_c01084{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);}
.m4e_c01084{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m6_c01084{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);}
.m37_c01084{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);}
.m48_c01084{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m3_c01084{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01084{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_c01084{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m9_c01084{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m7_c01084{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m0_c01084{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.ma_c01084{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m33_c01084{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01084{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01084{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01084{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m34_c01084{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m14_c01084{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01084{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m13_c01084{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m41_c01084{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m51_c01084{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m20_c01084{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m17_c01084{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);}
.m4f_c01084{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m23_c01084{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m24_c01084{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);}
.m2b_c01084{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.mb_c01084{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);}
.m38_c01084{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m29_c01084{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);}
.m43_c01084{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01084{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m2_c01084{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01084{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m46_c01084{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);}
.m3d_c01084{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);}
.m5_c01084{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m11_c01084{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.mf_c01084{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);}
.m3a_c01084{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);}
.m4_c01084{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m49_c01084{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.me_c01084{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m45_c01084{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01084{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m15_c01084{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01084{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_c01084{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m25_c01084{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m12_c01084{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01084{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01084{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01084{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m35_c01084{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m26_c01084{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m47_c01084{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m31_c01084{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m19_c01084{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m30_c01084{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m36_c01084{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);}
.m39_c01084{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m22_c01084{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m21_c01084{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01084{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);}
.m16_c01084{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m40_c01084{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);}
.m10_c01084{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m44_c01084{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m42_c01084{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);}
.m1_c01084{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m32_c01084{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01084{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.m8_c01084{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m56_c01084{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.m52_c01084{transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);}
.v2_c01084{vertical-align:-8.640000px;}
.v0_c01084{vertical-align:0.000000px;}
.v1_c01084{vertical-align:2.880000px;}
.v3_c01084{vertical-align:8.640000px;}
.ls1_c01084{letter-spacing:0.000000px;}
.ls0_c01084{letter-spacing:81.576960px;}
.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;}
}
.ws1_c01084{word-spacing:-8.445600px;}
.ws2_c01084{word-spacing:0.000000px;}
.ws0_c01084{word-spacing:0.066960px;}
.fc0_c01084{color:transparent;}
.fs1_c01084{font-size:28.800000px;}
.fs5_c01084{font-size:34.560000px;}
.fsb_c01084{font-size:37.440000px;}
.fs9_c01084{font-size:46.080000px;}
.fsa_c01084{font-size:48.960000px;}
.fs2_c01084{font-size:51.840000px;}
.fs7_c01084{font-size:54.720000px;}
.fsc_c01084{font-size:57.600000px;}
.fs4_c01084{font-size:60.480000px;}
.fs0_c01084{font-size:63.360000px;}
.fs3_c01084{font-size:66.240000px;}
.fs8_c01084{font-size:69.120000px;}
.fsd_c01084{font-size:72.000000px;}
.fse_c01084{font-size:74.880000px;}
.fsf_c01084{font-size:77.760000px;}
.fs6_c01084{font-size:95.040000px;}
.y0_c01084{bottom:0.000000px;}
.y7b_c01084{bottom:46.800000px;}
.y7a_c01084{bottom:47.520000px;}
.y66_c01084{bottom:48.240000px;}
.y65_c01084{bottom:48.960000px;}
.y64_c01084{bottom:52.560000px;}
.y79_c01084{bottom:89.280000px;}
.y78_c01084{bottom:90.000000px;}
.y77_c01084{bottom:90.720000px;}
.y63_c01084{bottom:91.440000px;}
.y61_c01084{bottom:92.160000px;}
.y62_c01084{bottom:92.880000px;}
.y60_c01084{bottom:95.040000px;}
.y5e_c01084{bottom:136.800000px;}
.y5f_c01084{bottom:137.520000px;}
.y76_c01084{bottom:164.880000px;}
.y75_c01084{bottom:165.600000px;}
.y5c_c01084{bottom:166.320000px;}
.y5b_c01084{bottom:167.040000px;}
.y5d_c01084{bottom:168.480000px;}
.y5a_c01084{bottom:169.200000px;}
.y59_c01084{bottom:170.640000px;}
.y58_c01084{bottom:210.240000px;}
.y57_c01084{bottom:211.680000px;}
.y56_c01084{bottom:241.920000px;}
.y54_c01084{bottom:242.640000px;}
.y53_c01084{bottom:244.080000px;}
.y52_c01084{bottom:244.800000px;}
.y55_c01084{bottom:245.520000px;}
.y51_c01084{bottom:285.120000px;}
.y50_c01084{bottom:285.840000px;}
.y4e_c01084{bottom:286.560000px;}
.y4f_c01084{bottom:288.000000px;}
.y74_c01084{bottom:316.800000px;}
.y4b_c01084{bottom:317.520000px;}
.y4d_c01084{bottom:318.240000px;}
.y49_c01084{bottom:318.960000px;}
.y48_c01084{bottom:319.680000px;}
.y4c_c01084{bottom:320.400000px;}
.y4a_c01084{bottom:321.840000px;}
.y45_c01084{bottom:362.160000px;}
.y46_c01084{bottom:363.600000px;}
.y47_c01084{bottom:364.320000px;}
.y44_c01084{bottom:392.400000px;}
.y73_c01084{bottom:393.120000px;}
.y42_c01084{bottom:393.840000px;}
.y43_c01084{bottom:395.280000px;}
.y40_c01084{bottom:396.000000px;}
.y41_c01084{bottom:396.720000px;}
.y72_c01084{bottom:436.320000px;}
.y3f_c01084{bottom:437.040000px;}
.y3d_c01084{bottom:437.760000px;}
.y3c_c01084{bottom:438.480000px;}
.y3e_c01084{bottom:439.200000px;}
.y71_c01084{bottom:478.800000px;}
.y39_c01084{bottom:479.520000px;}
.y3b_c01084{bottom:480.240000px;}
.y38_c01084{bottom:480.960000px;}
.y37_c01084{bottom:481.680000px;}
.y3a_c01084{bottom:482.400000px;}
.y33_c01084{bottom:522.000000px;}
.y36_c01084{bottom:522.720000px;}
.y32_c01084{bottom:524.160000px;}
.y34_c01084{bottom:524.880000px;}
.y35_c01084{bottom:525.600000px;}
.y31_c01084{bottom:557.280000px;}
.y2f_c01084{bottom:565.200000px;}
.y2e_c01084{bottom:565.920000px;}
.y2d_c01084{bottom:566.640000px;}
.y30_c01084{bottom:567.360000px;}
.y2c_c01084{bottom:599.760000px;}
.y2b_c01084{bottom:607.680000px;}
.y29_c01084{bottom:608.400000px;}
.y2a_c01084{bottom:609.120000px;}
.y70_c01084{bottom:610.560000px;}
.y28_c01084{bottom:642.960000px;}
.y27_c01084{bottom:650.880000px;}
.y26_c01084{bottom:651.600000px;}
.y25_c01084{bottom:653.040000px;}
.y6f_c01084{bottom:653.760000px;}
.y22_c01084{bottom:693.360000px;}
.y23_c01084{bottom:694.080000px;}
.y24_c01084{bottom:696.960000px;}
.y1f_c01084{bottom:725.760000px;}
.y1e_c01084{bottom:727.200000px;}
.y21_c01084{bottom:728.640000px;}
.y20_c01084{bottom:729.360000px;}
.y1b_c01084{bottom:769.680000px;}
.y1c_c01084{bottom:772.560000px;}
.y1d_c01084{bottom:773.280000px;}
.y17_c01084{bottom:802.080000px;}
.y16_c01084{bottom:802.800000px;}
.y1a_c01084{bottom:803.520000px;}
.y18_c01084{bottom:804.240000px;}
.y19_c01084{bottom:804.960000px;}
.y14_c01084{bottom:845.280000px;}
.y15_c01084{bottom:847.440000px;}
.yf_c01084{bottom:876.960000px;}
.y12_c01084{bottom:877.680000px;}
.y13_c01084{bottom:878.400000px;}
.y10_c01084{bottom:879.120000px;}
.y11_c01084{bottom:880.560000px;}
.y6e_c01084{bottom:881.280000px;}
.yd_c01084{bottom:919.440000px;}
.ye_c01084{bottom:922.320000px;}
.yb_c01084{bottom:952.560000px;}
.ya_c01084{bottom:953.280000px;}
.y9_c01084{bottom:954.000000px;}
.y6c_c01084{bottom:954.720000px;}
.yc_c01084{bottom:956.160000px;}
.y6d_c01084{bottom:956.880000px;}
.y8_c01084{bottom:988.560000px;}
.y7_c01084{bottom:995.760000px;}
.y5_c01084{bottom:996.480000px;}
.y6_c01084{bottom:997.200000px;}
.y69_c01084{bottom:997.920000px;}
.y6a_c01084{bottom:998.640000px;}
.y6b_c01084{bottom:1000.800000px;}
.y4_c01084{bottom:1038.960000px;}
.y1_c01084{bottom:1039.680000px;}
.y2_c01084{bottom:1040.400000px;}
.y3_c01084{bottom:1041.120000px;}
.y68_c01084{bottom:1043.280000px;}
.y67_c01084{bottom:1110.240000px;}
.h3_c01084{height:25.917187px;}
.h7_c01084{height:31.100625px;}
.hd_c01084{height:33.692344px;}
.hb_c01084{height:41.467500px;}
.hc_c01084{height:44.059219px;}
.h4_c01084{height:46.650937px;}
.h9_c01084{height:49.242656px;}
.he_c01084{height:51.834375px;}
.h6_c01084{height:54.426094px;}
.h12_c01084{height:55.290937px;}
.h2_c01084{height:57.017812px;}
.h5_c01084{height:59.609531px;}
.ha_c01084{height:62.201250px;}
.hf_c01084{height:64.792969px;}
.h10_c01084{height:67.384687px;}
.h11_c01084{height:69.976406px;}
.h8_c01084{height:85.526719px;}
.h0_c01084{height:1154.880000px;}
.h1_c01084{height:1155.000000px;}
.w0_c01084{width:795.600000px;}
.w1_c01084{width:795.750000px;}
.x0_c01084{left:0.000000px;}
.x1_c01084{left:79.920000px;}
.x2_c01084{left:123.840000px;}
.x1f_c01084{left:144.720000px;}
.xf_c01084{left:154.080000px;}
.x3_c01084{left:155.520000px;}
.x1a_c01084{left:207.360000px;}
.xc_c01084{left:208.800000px;}
.x13_c01084{left:218.160000px;}
.x15_c01084{left:239.040000px;}
.x4_c01084{left:240.480000px;}
.x10_c01084{left:251.280000px;}
.x14_c01084{left:272.160000px;}
.x8_c01084{left:294.480000px;}
.x5_c01084{left:305.280000px;}
.xd_c01084{left:348.480000px;}
.x11_c01084{left:358.560000px;}
.xa_c01084{left:360.000000px;}
.x18_c01084{left:403.200000px;}
.x9_c01084{left:435.600000px;}
.x16_c01084{left:445.680000px;}
.x6_c01084{left:447.120000px;}
.x1d_c01084{left:455.760000px;}
.x12_c01084{left:457.200000px;}
.x1b_c01084{left:477.360000px;}
.xe_c01084{left:478.800000px;}
.x19_c01084{left:488.160000px;}
.xb_c01084{left:490.320000px;}
.x20_c01084{left:494.640000px;}
.x17_c01084{left:500.400000px;}
.x1e_c01084{left:505.440000px;}
.x1c_c01084{left:554.400000px;}
.x7_c01084{left:555.840000px;}
.x2a_c01084{left:609.120000px;}
.x2b_c01084{left:642.240000px;}
.x22_c01084{left:643.680000px;}
.x23_c01084{left:676.800000px;}
.x21_c01084{left:685.440000px;}
.x25_c01084{left:687.600000px;}
.x29_c01084{left:708.480000px;}
.x24_c01084{left:709.920000px;}
.x26_c01084{left:719.280000px;}
.x28_c01084{left:720.720000px;}
.x2c_c01084{left:739.440000px;}
.x27_c01084{left:740.880000px;}
@media print{
.v2_c01084{vertical-align:-7.680000pt;}
.v0_c01084{vertical-align:0.000000pt;}
.v1_c01084{vertical-align:2.560000pt;}
.v3_c01084{vertical-align:7.680000pt;}
.ls1_c01084{letter-spacing:0.000000pt;}
.ls0_c01084{letter-spacing:72.512853pt;}
.ws1_c01084{word-spacing:-7.507200pt;}
.ws2_c01084{word-spacing:0.000000pt;}
.ws0_c01084{word-spacing:0.059520pt;}
.fs1_c01084{font-size:25.600000pt;}
.fs5_c01084{font-size:30.720000pt;}
.fsb_c01084{font-size:33.280000pt;}
.fs9_c01084{font-size:40.960000pt;}
.fsa_c01084{font-size:43.520000pt;}
.fs2_c01084{font-size:46.080000pt;}
.fs7_c01084{font-size:48.640000pt;}
.fsc_c01084{font-size:51.200000pt;}
.fs4_c01084{font-size:53.760000pt;}
.fs0_c01084{font-size:56.320000pt;}
.fs3_c01084{font-size:58.880000pt;}
.fs8_c01084{font-size:61.440000pt;}
.fsd_c01084{font-size:64.000000pt;}
.fse_c01084{font-size:66.560000pt;}
.fsf_c01084{font-size:69.120000pt;}
.fs6_c01084{font-size:84.480000pt;}
.y0_c01084{bottom:0.000000pt;}
.y7b_c01084{bottom:41.600000pt;}
.y7a_c01084{bottom:42.240000pt;}
.y66_c01084{bottom:42.880000pt;}
.y65_c01084{bottom:43.520000pt;}
.y64_c01084{bottom:46.720000pt;}
.y79_c01084{bottom:79.360000pt;}
.y78_c01084{bottom:80.000000pt;}
.y77_c01084{bottom:80.640000pt;}
.y63_c01084{bottom:81.280000pt;}
.y61_c01084{bottom:81.920000pt;}
.y62_c01084{bottom:82.560000pt;}
.y60_c01084{bottom:84.480000pt;}
.y5e_c01084{bottom:121.600000pt;}
.y5f_c01084{bottom:122.240000pt;}
.y76_c01084{bottom:146.560000pt;}
.y75_c01084{bottom:147.200000pt;}
.y5c_c01084{bottom:147.840000pt;}
.y5b_c01084{bottom:148.480000pt;}
.y5d_c01084{bottom:149.760000pt;}
.y5a_c01084{bottom:150.400000pt;}
.y59_c01084{bottom:151.680000pt;}
.y58_c01084{bottom:186.880000pt;}
.y57_c01084{bottom:188.160000pt;}
.y56_c01084{bottom:215.040000pt;}
.y54_c01084{bottom:215.680000pt;}
.y53_c01084{bottom:216.960000pt;}
.y52_c01084{bottom:217.600000pt;}
.y55_c01084{bottom:218.240000pt;}
.y51_c01084{bottom:253.440000pt;}
.y50_c01084{bottom:254.080000pt;}
.y4e_c01084{bottom:254.720000pt;}
.y4f_c01084{bottom:256.000000pt;}
.y74_c01084{bottom:281.600000pt;}
.y4b_c01084{bottom:282.240000pt;}
.y4d_c01084{bottom:282.880000pt;}
.y49_c01084{bottom:283.520000pt;}
.y48_c01084{bottom:284.160000pt;}
.y4c_c01084{bottom:284.800000pt;}
.y4a_c01084{bottom:286.080000pt;}
.y45_c01084{bottom:321.920000pt;}
.y46_c01084{bottom:323.200000pt;}
.y47_c01084{bottom:323.840000pt;}
.y44_c01084{bottom:348.800000pt;}
.y73_c01084{bottom:349.440000pt;}
.y42_c01084{bottom:350.080000pt;}
.y43_c01084{bottom:351.360000pt;}
.y40_c01084{bottom:352.000000pt;}
.y41_c01084{bottom:352.640000pt;}
.y72_c01084{bottom:387.840000pt;}
.y3f_c01084{bottom:388.480000pt;}
.y3d_c01084{bottom:389.120000pt;}
.y3c_c01084{bottom:389.760000pt;}
.y3e_c01084{bottom:390.400000pt;}
.y71_c01084{bottom:425.600000pt;}
.y39_c01084{bottom:426.240000pt;}
.y3b_c01084{bottom:426.880000pt;}
.y38_c01084{bottom:427.520000pt;}
.y37_c01084{bottom:428.160000pt;}
.y3a_c01084{bottom:428.800000pt;}
.y33_c01084{bottom:464.000000pt;}
.y36_c01084{bottom:464.640000pt;}
.y32_c01084{bottom:465.920000pt;}
.y34_c01084{bottom:466.560000pt;}
.y35_c01084{bottom:467.200000pt;}
.y31_c01084{bottom:495.360000pt;}
.y2f_c01084{bottom:502.400000pt;}
.y2e_c01084{bottom:503.040000pt;}
.y2d_c01084{bottom:503.680000pt;}
.y30_c01084{bottom:504.320000pt;}
.y2c_c01084{bottom:533.120000pt;}
.y2b_c01084{bottom:540.160000pt;}
.y29_c01084{bottom:540.800000pt;}
.y2a_c01084{bottom:541.440000pt;}
.y70_c01084{bottom:542.720000pt;}
.y28_c01084{bottom:571.520000pt;}
.y27_c01084{bottom:578.560000pt;}
.y26_c01084{bottom:579.200000pt;}
.y25_c01084{bottom:580.480000pt;}
.y6f_c01084{bottom:581.120000pt;}
.y22_c01084{bottom:616.320000pt;}
.y23_c01084{bottom:616.960000pt;}
.y24_c01084{bottom:619.520000pt;}
.y1f_c01084{bottom:645.120000pt;}
.y1e_c01084{bottom:646.400000pt;}
.y21_c01084{bottom:647.680000pt;}
.y20_c01084{bottom:648.320000pt;}
.y1b_c01084{bottom:684.160000pt;}
.y1c_c01084{bottom:686.720000pt;}
.y1d_c01084{bottom:687.360000pt;}
.y17_c01084{bottom:712.960000pt;}
.y16_c01084{bottom:713.600000pt;}
.y1a_c01084{bottom:714.240000pt;}
.y18_c01084{bottom:714.880000pt;}
.y19_c01084{bottom:715.520000pt;}
.y14_c01084{bottom:751.360000pt;}
.y15_c01084{bottom:753.280000pt;}
.yf_c01084{bottom:779.520000pt;}
.y12_c01084{bottom:780.160000pt;}
.y13_c01084{bottom:780.800000pt;}
.y10_c01084{bottom:781.440000pt;}
.y11_c01084{bottom:782.720000pt;}
.y6e_c01084{bottom:783.360000pt;}
.yd_c01084{bottom:817.280000pt;}
.ye_c01084{bottom:819.840000pt;}
.yb_c01084{bottom:846.720000pt;}
.ya_c01084{bottom:847.360000pt;}
.y9_c01084{bottom:848.000000pt;}
.y6c_c01084{bottom:848.640000pt;}
.yc_c01084{bottom:849.920000pt;}
.y6d_c01084{bottom:850.560000pt;}
.y8_c01084{bottom:878.720000pt;}
.y7_c01084{bottom:885.120000pt;}
.y5_c01084{bottom:885.760000pt;}
.y6_c01084{bottom:886.400000pt;}
.y69_c01084{bottom:887.040000pt;}
.y6a_c01084{bottom:887.680000pt;}
.y6b_c01084{bottom:889.600000pt;}
.y4_c01084{bottom:923.520000pt;}
.y1_c01084{bottom:924.160000pt;}
.y2_c01084{bottom:924.800000pt;}
.y3_c01084{bottom:925.440000pt;}
.y68_c01084{bottom:927.360000pt;}
.y67_c01084{bottom:986.880000pt;}
.h3_c01084{height:23.037500pt;}
.h7_c01084{height:27.645000pt;}
.hd_c01084{height:29.948750pt;}
.hb_c01084{height:36.860000pt;}
.hc_c01084{height:39.163750pt;}
.h4_c01084{height:41.467500pt;}
.h9_c01084{height:43.771250pt;}
.he_c01084{height:46.075000pt;}
.h6_c01084{height:48.378750pt;}
.h12_c01084{height:49.147500pt;}
.h2_c01084{height:50.682500pt;}
.h5_c01084{height:52.986250pt;}
.ha_c01084{height:55.290000pt;}
.hf_c01084{height:57.593750pt;}
.h10_c01084{height:59.897500pt;}
.h11_c01084{height:62.201250pt;}
.h8_c01084{height:76.023750pt;}
.h0_c01084{height:1026.560000pt;}
.h1_c01084{height:1026.666667pt;}
.w0_c01084{width:707.200000pt;}
.w1_c01084{width:707.333333pt;}
.x0_c01084{left:0.000000pt;}
.x1_c01084{left:71.040000pt;}
.x2_c01084{left:110.080000pt;}
.x1f_c01084{left:128.640000pt;}
.xf_c01084{left:136.960000pt;}
.x3_c01084{left:138.240000pt;}
.x1a_c01084{left:184.320000pt;}
.xc_c01084{left:185.600000pt;}
.x13_c01084{left:193.920000pt;}
.x15_c01084{left:212.480000pt;}
.x4_c01084{left:213.760000pt;}
.x10_c01084{left:223.360000pt;}
.x14_c01084{left:241.920000pt;}
.x8_c01084{left:261.760000pt;}
.x5_c01084{left:271.360000pt;}
.xd_c01084{left:309.760000pt;}
.x11_c01084{left:318.720000pt;}
.xa_c01084{left:320.000000pt;}
.x18_c01084{left:358.400000pt;}
.x9_c01084{left:387.200000pt;}
.x16_c01084{left:396.160000pt;}
.x6_c01084{left:397.440000pt;}
.x1d_c01084{left:405.120000pt;}
.x12_c01084{left:406.400000pt;}
.x1b_c01084{left:424.320000pt;}
.xe_c01084{left:425.600000pt;}
.x19_c01084{left:433.920000pt;}
.xb_c01084{left:435.840000pt;}
.x20_c01084{left:439.680000pt;}
.x17_c01084{left:444.800000pt;}
.x1e_c01084{left:449.280000pt;}
.x1c_c01084{left:492.800000pt;}
.x7_c01084{left:494.080000pt;}
.x2a_c01084{left:541.440000pt;}
.x2b_c01084{left:570.880000pt;}
.x22_c01084{left:572.160000pt;}
.x23_c01084{left:601.600000pt;}
.x21_c01084{left:609.280000pt;}
.x25_c01084{left:611.200000pt;}
.x29_c01084{left:629.760000pt;}
.x24_c01084{left:631.040000pt;}
.x26_c01084{left:639.360000pt;}
.x28_c01084{left:640.640000pt;}
.x2c_c01084{left:657.280000pt;}
.x27_c01084{left:658.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_dd6785e8baf055a11f1e2d97.woff2')format("woff");}.ff1_c01085{font-family:ff1_c01085;line-height:1.109863;font-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_c01085{transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);}
.m15_c01085{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.m57_c01085{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m2f_c01085{transform:matrix(0.224025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224025,0.000000,0.000000,0.250000,0,0);}
.m1c_c01085{transform:matrix(0.225100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225100,0.000000,0.000000,0.250000,0,0);}
.m58_c01085{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);}
.m4e_c01085{transform:matrix(0.225550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225550,0.000000,0.000000,0.250000,0,0);}
.m29_c01085{transform:matrix(0.232650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232650,0.000000,0.000000,0.250000,0,0);}
.m3f_c01085{transform:matrix(0.236800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236800,0.000000,0.000000,0.250000,0,0);}
.m48_c01085{transform:matrix(0.239875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239875,0.000000,0.000000,0.250000,0,0);}
.m2e_c01085{transform:matrix(0.240050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240050,0.000000,0.000000,0.250000,0,0);}
.m46_c01085{transform:matrix(0.240975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240975,0.000000,0.000000,0.250000,0,0);}
.m31_c01085{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m59_c01085{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m41_c01085{transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);}
.m27_c01085{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m4c_c01085{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01085{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_c01085{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m4_c01085{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_c01085{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);}
.m43_c01085{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_c01085{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m7_c01085{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m18_c01085{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m51_c01085{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);}
.m2c_c01085{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m37_c01085{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1_c01085{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);}
.m4a_c01085{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m21_c01085{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.me_c01085{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m34_c01085{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01085{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m3_c01085{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01085{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m8_c01085{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m26_c01085{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m30_c01085{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m2_c01085{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m9_c01085{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m5_c01085{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.md_c01085{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m13_c01085{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m39_c01085{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m28_c01085{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);}
.m2d_c01085{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m42_c01085{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m16_c01085{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_c01085{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);}
.m1e_c01085{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m12_c01085{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m14_c01085{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01085{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);}
.m36_c01085{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m56_c01085{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m0_c01085{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);}
.m40_c01085{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m33_c01085{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);}
.m53_c01085{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);}
.m3c_c01085{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m6_c01085{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);}
.m35_c01085{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m22_c01085{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m17_c01085{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01085{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m44_c01085{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m10_c01085{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.mf_c01085{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);}
.m3a_c01085{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m49_c01085{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.mb_c01085{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);}
.m4f_c01085{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m23_c01085{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);}
.m4b_c01085{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m32_c01085{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01085{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);}
.m2a_c01085{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.mc_c01085{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);}
.m47_c01085{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m38_c01085{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m55_c01085{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);}
.m3b_c01085{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m52_c01085{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);}
.m50_c01085{transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);}
.m25_c01085{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m20_c01085{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);}
.m1d_c01085{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.m54_c01085{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.m45_c01085{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.v1_c01085{vertical-align:-11.520000px;}
.v0_c01085{vertical-align:0.000000px;}
.ls1_c01085{letter-spacing:0.000000px;}
.ls0_c01085{letter-spacing:83.257680px;}
.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;}
.fc0_c01085{color:transparent;}
.fs11_c01085{font-size:11.520000px;}
.fs10_c01085{font-size:20.160000px;}
.fs8_c01085{font-size:34.560000px;}
.fs9_c01085{font-size:37.440000px;}
.fsf_c01085{font-size:40.320000px;}
.fse_c01085{font-size:43.200000px;}
.fsb_c01085{font-size:46.080000px;}
.fs7_c01085{font-size:48.960000px;}
.fs3_c01085{font-size:51.840000px;}
.fs5_c01085{font-size:54.720000px;}
.fs2_c01085{font-size:57.600000px;}
.fsa_c01085{font-size:60.480000px;}
.fs4_c01085{font-size:63.360000px;}
.fs6_c01085{font-size:66.240000px;}
.fs0_c01085{font-size:69.120000px;}
.fs1_c01085{font-size:72.000000px;}
.fsd_c01085{font-size:74.880000px;}
.fsc_c01085{font-size:77.760000px;}
.y0_c01085{bottom:0.000000px;}
.y8b_c01085{bottom:49.680000px;}
.y89_c01085{bottom:51.840000px;}
.y8a_c01085{bottom:52.560000px;}
.y85_c01085{bottom:82.800000px;}
.y88_c01085{bottom:83.520000px;}
.y87_c01085{bottom:84.960000px;}
.y86_c01085{bottom:85.680000px;}
.y84_c01085{bottom:86.400000px;}
.y83_c01085{bottom:125.280000px;}
.y81_c01085{bottom:127.440000px;}
.y82_c01085{bottom:128.880000px;}
.y7e_c01085{bottom:157.680000px;}
.y91_c01085{bottom:158.400000px;}
.y80_c01085{bottom:159.120000px;}
.y7f_c01085{bottom:160.560000px;}
.y7d_c01085{bottom:161.280000px;}
.y7c_c01085{bottom:199.440000px;}
.y78_c01085{bottom:200.160000px;}
.y7b_c01085{bottom:200.880000px;}
.y7a_c01085{bottom:201.600000px;}
.y77_c01085{bottom:203.040000px;}
.y79_c01085{bottom:203.760000px;}
.y75_c01085{bottom:242.640000px;}
.y73_c01085{bottom:243.360000px;}
.y90_c01085{bottom:244.080000px;}
.y76_c01085{bottom:244.800000px;}
.y72_c01085{bottom:246.240000px;}
.y74_c01085{bottom:246.960000px;}
.y6f_c01085{bottom:285.840000px;}
.y8f_c01085{bottom:286.560000px;}
.y71_c01085{bottom:287.280000px;}
.y6e_c01085{bottom:288.720000px;}
.y70_c01085{bottom:289.440000px;}
.y6b_c01085{bottom:328.320000px;}
.y6a_c01085{bottom:331.200000px;}
.y6c_c01085{bottom:331.920000px;}
.y6d_c01085{bottom:332.640000px;}
.y68_c01085{bottom:370.800000px;}
.y69_c01085{bottom:372.240000px;}
.y65_c01085{bottom:373.680000px;}
.y8e_c01085{bottom:374.400000px;}
.y66_c01085{bottom:375.120000px;}
.y67_c01085{bottom:378.720000px;}
.y61_c01085{bottom:414.720000px;}
.y63_c01085{bottom:415.440000px;}
.y8d_c01085{bottom:416.160000px;}
.y64_c01085{bottom:416.880000px;}
.y60_c01085{bottom:417.600000px;}
.y62_c01085{bottom:418.320000px;}
.y5f_c01085{bottom:457.200000px;}
.y5e_c01085{bottom:460.800000px;}
.y5d_c01085{bottom:461.520000px;}
.y5b_c01085{bottom:489.600000px;}
.y33_c01085{bottom:491.760000px;}
.y34_c01085{bottom:492.480000px;}
.y5c_c01085{bottom:493.200000px;}
.y35_c01085{bottom:493.920000px;}
.y59_c01085{bottom:533.520000px;}
.y32_c01085{bottom:534.960000px;}
.y30_c01085{bottom:535.680000px;}
.y5a_c01085{bottom:536.400000px;}
.y31_c01085{bottom:537.120000px;}
.y57_c01085{bottom:576.000000px;}
.y58_c01085{bottom:576.720000px;}
.y2e_c01085{bottom:578.160000px;}
.y2c_c01085{bottom:579.600000px;}
.y2d_c01085{bottom:580.320000px;}
.y2f_c01085{bottom:582.480000px;}
.y53_c01085{bottom:618.480000px;}
.y56_c01085{bottom:619.920000px;}
.y29_c01085{bottom:621.360000px;}
.y54_c01085{bottom:622.080000px;}
.y28_c01085{bottom:622.800000px;}
.y55_c01085{bottom:623.520000px;}
.y2a_c01085{bottom:624.240000px;}
.y2b_c01085{bottom:624.960000px;}
.y51_c01085{bottom:661.680000px;}
.y52_c01085{bottom:663.120000px;}
.y50_c01085{bottom:663.840000px;}
.y25_c01085{bottom:664.560000px;}
.y24_c01085{bottom:666.000000px;}
.y26_c01085{bottom:667.440000px;}
.y27_c01085{bottom:668.160000px;}
.y4f_c01085{bottom:704.880000px;}
.y4e_c01085{bottom:706.320000px;}
.y21_c01085{bottom:708.480000px;}
.y20_c01085{bottom:709.200000px;}
.y23_c01085{bottom:710.640000px;}
.y22_c01085{bottom:712.080000px;}
.y4d_c01085{bottom:747.360000px;}
.y4c_c01085{bottom:749.520000px;}
.y1f_c01085{bottom:751.680000px;}
.y1e_c01085{bottom:752.400000px;}
.y4a_c01085{bottom:790.560000px;}
.y4b_c01085{bottom:791.280000px;}
.y49_c01085{bottom:792.720000px;}
.y1d_c01085{bottom:794.160000px;}
.y1a_c01085{bottom:794.880000px;}
.y1b_c01085{bottom:797.040000px;}
.y1c_c01085{bottom:798.480000px;}
.y47_c01085{bottom:833.760000px;}
.y48_c01085{bottom:834.480000px;}
.y46_c01085{bottom:835.200000px;}
.y17_c01085{bottom:837.360000px;}
.y16_c01085{bottom:838.080000px;}
.y18_c01085{bottom:838.800000px;}
.y19_c01085{bottom:840.240000px;}
.y44_c01085{bottom:875.520000px;}
.y43_c01085{bottom:876.960000px;}
.y45_c01085{bottom:879.120000px;}
.y12_c01085{bottom:879.840000px;}
.y13_c01085{bottom:880.560000px;}
.y14_c01085{bottom:882.000000px;}
.y15_c01085{bottom:883.440000px;}
.y41_c01085{bottom:918.000000px;}
.y40_c01085{bottom:920.160000px;}
.y42_c01085{bottom:922.320000px;}
.yc_c01085{bottom:923.040000px;}
.yf_c01085{bottom:923.760000px;}
.y10_c01085{bottom:924.480000px;}
.ye_c01085{bottom:925.200000px;}
.yd_c01085{bottom:925.920000px;}
.y11_c01085{bottom:926.640000px;}
.y3d_c01085{bottom:960.480000px;}
.y3c_c01085{bottom:962.640000px;}
.y3f_c01085{bottom:963.360000px;}
.y3e_c01085{bottom:966.240000px;}
.y9_c01085{bottom:966.960000px;}
.ya_c01085{bottom:967.680000px;}
.yb_c01085{bottom:969.840000px;}
.y39_c01085{bottom:1004.400000px;}
.y3a_c01085{bottom:1005.120000px;}
.y3b_c01085{bottom:1005.840000px;}
.y8_c01085{bottom:1009.440000px;}
.y5_c01085{bottom:1010.160000px;}
.y6_c01085{bottom:1010.880000px;}
.y7_c01085{bottom:1012.320000px;}
.y37_c01085{bottom:1047.600000px;}
.y36_c01085{bottom:1048.320000px;}
.y38_c01085{bottom:1049.040000px;}
.y2_c01085{bottom:1052.640000px;}
.y1_c01085{bottom:1053.360000px;}
.y3_c01085{bottom:1054.800000px;}
.y4_c01085{bottom:1056.240000px;}
.y8c_c01085{bottom:1118.880000px;}
.h13_c01085{height:10.366875px;}
.h12_c01085{height:18.142031px;}
.ha_c01085{height:31.100625px;}
.hb_c01085{height:33.692344px;}
.h11_c01085{height:36.284062px;}
.h10_c01085{height:38.875781px;}
.hd_c01085{height:41.467500px;}
.h9_c01085{height:44.059219px;}
.h5_c01085{height:46.650937px;}
.h7_c01085{height:49.242656px;}
.h4_c01085{height:51.834375px;}
.hc_c01085{height:54.426094px;}
.h6_c01085{height:57.017812px;}
.h8_c01085{height:59.609531px;}
.h2_c01085{height:62.201250px;}
.h3_c01085{height:64.792969px;}
.hf_c01085{height:67.384687px;}
.he_c01085{height:69.976406px;}
.h0_c01085{height:1157.040000px;}
.h1_c01085{height:1157.250000px;}
.w0_c01085{width:799.920000px;}
.w1_c01085{width:800.250000px;}
.x0_c01085{left:0.000000px;}
.x13_c01085{left:87.120000px;}
.x16_c01085{left:88.560000px;}
.x2b_c01085{left:90.000000px;}
.x26_c01085{left:133.920000px;}
.x27_c01085{left:141.840000px;}
.x14_c01085{left:162.000000px;}
.x1e_c01085{left:164.160000px;}
.x33_c01085{left:165.600000px;}
.x23_c01085{left:206.640000px;}
.x24_c01085{left:248.400000px;}
.x15_c01085{left:259.200000px;}
.x21_c01085{left:261.360000px;}
.x35_c01085{left:262.800000px;}
.x1b_c01085{left:291.600000px;}
.x2c_c01085{left:293.760000px;}
.x1a_c01085{left:303.120000px;}
.x25_c01085{left:304.560000px;}
.x17_c01085{left:313.200000px;}
.x1d_c01085{left:314.640000px;}
.x2d_c01085{left:336.960000px;}
.x19_c01085{left:345.600000px;}
.x30_c01085{left:347.760000px;}
.x1c_c01085{left:356.400000px;}
.x20_c01085{left:357.840000px;}
.x1f_c01085{left:390.240000px;}
.x18_c01085{left:399.600000px;}
.x28_c01085{left:401.040000px;}
.x2e_c01085{left:434.160000px;}
.x31_c01085{left:444.960000px;}
.x36_c01085{left:446.400000px;}
.x2a_c01085{left:454.320000px;}
.x29_c01085{left:455.760000px;}
.x2f_c01085{left:477.360000px;}
.x34_c01085{left:488.880000px;}
.x22_c01085{left:498.960000px;}
.x32_c01085{left:543.600000px;}
.x1_c01085{left:563.760000px;}
.xd_c01085{left:565.200000px;}
.x37_c01085{left:566.640000px;}
.x12_c01085{left:586.800000px;}
.x2_c01085{left:596.160000px;}
.x7_c01085{left:618.480000px;}
.x8_c01085{left:628.560000px;}
.xf_c01085{left:630.000000px;}
.x9_c01085{left:641.520000px;}
.x5_c01085{left:650.880000px;}
.xc_c01085{left:652.320000px;}
.xe_c01085{left:654.480000px;}
.x10_c01085{left:686.160000px;}
.x3_c01085{left:693.360000px;}
.xa_c01085{left:695.520000px;}
.x39_c01085{left:696.960000px;}
.x38_c01085{left:711.360000px;}
.x4_c01085{left:727.920000px;}
.x11_c01085{left:729.360000px;}
.x6_c01085{left:748.080000px;}
.xb_c01085{left:749.520000px;}
@media print{
.v1_c01085{vertical-align:-10.240000pt;}
.v0_c01085{vertical-align:0.000000pt;}
.ls1_c01085{letter-spacing:0.000000pt;}
.ls0_c01085{letter-spacing:74.006827pt;}
.ws0_c01085{word-spacing:0.000000pt;}
.fs11_c01085{font-size:10.240000pt;}
.fs10_c01085{font-size:17.920000pt;}
.fs8_c01085{font-size:30.720000pt;}
.fs9_c01085{font-size:33.280000pt;}
.fsf_c01085{font-size:35.840000pt;}
.fse_c01085{font-size:38.400000pt;}
.fsb_c01085{font-size:40.960000pt;}
.fs7_c01085{font-size:43.520000pt;}
.fs3_c01085{font-size:46.080000pt;}
.fs5_c01085{font-size:48.640000pt;}
.fs2_c01085{font-size:51.200000pt;}
.fsa_c01085{font-size:53.760000pt;}
.fs4_c01085{font-size:56.320000pt;}
.fs6_c01085{font-size:58.880000pt;}
.fs0_c01085{font-size:61.440000pt;}
.fs1_c01085{font-size:64.000000pt;}
.fsd_c01085{font-size:66.560000pt;}
.fsc_c01085{font-size:69.120000pt;}
.y0_c01085{bottom:0.000000pt;}
.y8b_c01085{bottom:44.160000pt;}
.y89_c01085{bottom:46.080000pt;}
.y8a_c01085{bottom:46.720000pt;}
.y85_c01085{bottom:73.600000pt;}
.y88_c01085{bottom:74.240000pt;}
.y87_c01085{bottom:75.520000pt;}
.y86_c01085{bottom:76.160000pt;}
.y84_c01085{bottom:76.800000pt;}
.y83_c01085{bottom:111.360000pt;}
.y81_c01085{bottom:113.280000pt;}
.y82_c01085{bottom:114.560000pt;}
.y7e_c01085{bottom:140.160000pt;}
.y91_c01085{bottom:140.800000pt;}
.y80_c01085{bottom:141.440000pt;}
.y7f_c01085{bottom:142.720000pt;}
.y7d_c01085{bottom:143.360000pt;}
.y7c_c01085{bottom:177.280000pt;}
.y78_c01085{bottom:177.920000pt;}
.y7b_c01085{bottom:178.560000pt;}
.y7a_c01085{bottom:179.200000pt;}
.y77_c01085{bottom:180.480000pt;}
.y79_c01085{bottom:181.120000pt;}
.y75_c01085{bottom:215.680000pt;}
.y73_c01085{bottom:216.320000pt;}
.y90_c01085{bottom:216.960000pt;}
.y76_c01085{bottom:217.600000pt;}
.y72_c01085{bottom:218.880000pt;}
.y74_c01085{bottom:219.520000pt;}
.y6f_c01085{bottom:254.080000pt;}
.y8f_c01085{bottom:254.720000pt;}
.y71_c01085{bottom:255.360000pt;}
.y6e_c01085{bottom:256.640000pt;}
.y70_c01085{bottom:257.280000pt;}
.y6b_c01085{bottom:291.840000pt;}
.y6a_c01085{bottom:294.400000pt;}
.y6c_c01085{bottom:295.040000pt;}
.y6d_c01085{bottom:295.680000pt;}
.y68_c01085{bottom:329.600000pt;}
.y69_c01085{bottom:330.880000pt;}
.y65_c01085{bottom:332.160000pt;}
.y8e_c01085{bottom:332.800000pt;}
.y66_c01085{bottom:333.440000pt;}
.y67_c01085{bottom:336.640000pt;}
.y61_c01085{bottom:368.640000pt;}
.y63_c01085{bottom:369.280000pt;}
.y8d_c01085{bottom:369.920000pt;}
.y64_c01085{bottom:370.560000pt;}
.y60_c01085{bottom:371.200000pt;}
.y62_c01085{bottom:371.840000pt;}
.y5f_c01085{bottom:406.400000pt;}
.y5e_c01085{bottom:409.600000pt;}
.y5d_c01085{bottom:410.240000pt;}
.y5b_c01085{bottom:435.200000pt;}
.y33_c01085{bottom:437.120000pt;}
.y34_c01085{bottom:437.760000pt;}
.y5c_c01085{bottom:438.400000pt;}
.y35_c01085{bottom:439.040000pt;}
.y59_c01085{bottom:474.240000pt;}
.y32_c01085{bottom:475.520000pt;}
.y30_c01085{bottom:476.160000pt;}
.y5a_c01085{bottom:476.800000pt;}
.y31_c01085{bottom:477.440000pt;}
.y57_c01085{bottom:512.000000pt;}
.y58_c01085{bottom:512.640000pt;}
.y2e_c01085{bottom:513.920000pt;}
.y2c_c01085{bottom:515.200000pt;}
.y2d_c01085{bottom:515.840000pt;}
.y2f_c01085{bottom:517.760000pt;}
.y53_c01085{bottom:549.760000pt;}
.y56_c01085{bottom:551.040000pt;}
.y29_c01085{bottom:552.320000pt;}
.y54_c01085{bottom:552.960000pt;}
.y28_c01085{bottom:553.600000pt;}
.y55_c01085{bottom:554.240000pt;}
.y2a_c01085{bottom:554.880000pt;}
.y2b_c01085{bottom:555.520000pt;}
.y51_c01085{bottom:588.160000pt;}
.y52_c01085{bottom:589.440000pt;}
.y50_c01085{bottom:590.080000pt;}
.y25_c01085{bottom:590.720000pt;}
.y24_c01085{bottom:592.000000pt;}
.y26_c01085{bottom:593.280000pt;}
.y27_c01085{bottom:593.920000pt;}
.y4f_c01085{bottom:626.560000pt;}
.y4e_c01085{bottom:627.840000pt;}
.y21_c01085{bottom:629.760000pt;}
.y20_c01085{bottom:630.400000pt;}
.y23_c01085{bottom:631.680000pt;}
.y22_c01085{bottom:632.960000pt;}
.y4d_c01085{bottom:664.320000pt;}
.y4c_c01085{bottom:666.240000pt;}
.y1f_c01085{bottom:668.160000pt;}
.y1e_c01085{bottom:668.800000pt;}
.y4a_c01085{bottom:702.720000pt;}
.y4b_c01085{bottom:703.360000pt;}
.y49_c01085{bottom:704.640000pt;}
.y1d_c01085{bottom:705.920000pt;}
.y1a_c01085{bottom:706.560000pt;}
.y1b_c01085{bottom:708.480000pt;}
.y1c_c01085{bottom:709.760000pt;}
.y47_c01085{bottom:741.120000pt;}
.y48_c01085{bottom:741.760000pt;}
.y46_c01085{bottom:742.400000pt;}
.y17_c01085{bottom:744.320000pt;}
.y16_c01085{bottom:744.960000pt;}
.y18_c01085{bottom:745.600000pt;}
.y19_c01085{bottom:746.880000pt;}
.y44_c01085{bottom:778.240000pt;}
.y43_c01085{bottom:779.520000pt;}
.y45_c01085{bottom:781.440000pt;}
.y12_c01085{bottom:782.080000pt;}
.y13_c01085{bottom:782.720000pt;}
.y14_c01085{bottom:784.000000pt;}
.y15_c01085{bottom:785.280000pt;}
.y41_c01085{bottom:816.000000pt;}
.y40_c01085{bottom:817.920000pt;}
.y42_c01085{bottom:819.840000pt;}
.yc_c01085{bottom:820.480000pt;}
.yf_c01085{bottom:821.120000pt;}
.y10_c01085{bottom:821.760000pt;}
.ye_c01085{bottom:822.400000pt;}
.yd_c01085{bottom:823.040000pt;}
.y11_c01085{bottom:823.680000pt;}
.y3d_c01085{bottom:853.760000pt;}
.y3c_c01085{bottom:855.680000pt;}
.y3f_c01085{bottom:856.320000pt;}
.y3e_c01085{bottom:858.880000pt;}
.y9_c01085{bottom:859.520000pt;}
.ya_c01085{bottom:860.160000pt;}
.yb_c01085{bottom:862.080000pt;}
.y39_c01085{bottom:892.800000pt;}
.y3a_c01085{bottom:893.440000pt;}
.y3b_c01085{bottom:894.080000pt;}
.y8_c01085{bottom:897.280000pt;}
.y5_c01085{bottom:897.920000pt;}
.y6_c01085{bottom:898.560000pt;}
.y7_c01085{bottom:899.840000pt;}
.y37_c01085{bottom:931.200000pt;}
.y36_c01085{bottom:931.840000pt;}
.y38_c01085{bottom:932.480000pt;}
.y2_c01085{bottom:935.680000pt;}
.y1_c01085{bottom:936.320000pt;}
.y3_c01085{bottom:937.600000pt;}
.y4_c01085{bottom:938.880000pt;}
.y8c_c01085{bottom:994.560000pt;}
.h13_c01085{height:9.215000pt;}
.h12_c01085{height:16.126250pt;}
.ha_c01085{height:27.645000pt;}
.hb_c01085{height:29.948750pt;}
.h11_c01085{height:32.252500pt;}
.h10_c01085{height:34.556250pt;}
.hd_c01085{height:36.860000pt;}
.h9_c01085{height:39.163750pt;}
.h5_c01085{height:41.467500pt;}
.h7_c01085{height:43.771250pt;}
.h4_c01085{height:46.075000pt;}
.hc_c01085{height:48.378750pt;}
.h6_c01085{height:50.682500pt;}
.h8_c01085{height:52.986250pt;}
.h2_c01085{height:55.290000pt;}
.h3_c01085{height:57.593750pt;}
.hf_c01085{height:59.897500pt;}
.he_c01085{height:62.201250pt;}
.h0_c01085{height:1028.480000pt;}
.h1_c01085{height:1028.666667pt;}
.w0_c01085{width:711.040000pt;}
.w1_c01085{width:711.333333pt;}
.x0_c01085{left:0.000000pt;}
.x13_c01085{left:77.440000pt;}
.x16_c01085{left:78.720000pt;}
.x2b_c01085{left:80.000000pt;}
.x26_c01085{left:119.040000pt;}
.x27_c01085{left:126.080000pt;}
.x14_c01085{left:144.000000pt;}
.x1e_c01085{left:145.920000pt;}
.x33_c01085{left:147.200000pt;}
.x23_c01085{left:183.680000pt;}
.x24_c01085{left:220.800000pt;}
.x15_c01085{left:230.400000pt;}
.x21_c01085{left:232.320000pt;}
.x35_c01085{left:233.600000pt;}
.x1b_c01085{left:259.200000pt;}
.x2c_c01085{left:261.120000pt;}
.x1a_c01085{left:269.440000pt;}
.x25_c01085{left:270.720000pt;}
.x17_c01085{left:278.400000pt;}
.x1d_c01085{left:279.680000pt;}
.x2d_c01085{left:299.520000pt;}
.x19_c01085{left:307.200000pt;}
.x30_c01085{left:309.120000pt;}
.x1c_c01085{left:316.800000pt;}
.x20_c01085{left:318.080000pt;}
.x1f_c01085{left:346.880000pt;}
.x18_c01085{left:355.200000pt;}
.x28_c01085{left:356.480000pt;}
.x2e_c01085{left:385.920000pt;}
.x31_c01085{left:395.520000pt;}
.x36_c01085{left:396.800000pt;}
.x2a_c01085{left:403.840000pt;}
.x29_c01085{left:405.120000pt;}
.x2f_c01085{left:424.320000pt;}
.x34_c01085{left:434.560000pt;}
.x22_c01085{left:443.520000pt;}
.x32_c01085{left:483.200000pt;}
.x1_c01085{left:501.120000pt;}
.xd_c01085{left:502.400000pt;}
.x37_c01085{left:503.680000pt;}
.x12_c01085{left:521.600000pt;}
.x2_c01085{left:529.920000pt;}
.x7_c01085{left:549.760000pt;}
.x8_c01085{left:558.720000pt;}
.xf_c01085{left:560.000000pt;}
.x9_c01085{left:570.240000pt;}
.x5_c01085{left:578.560000pt;}
.xc_c01085{left:579.840000pt;}
.xe_c01085{left:581.760000pt;}
.x10_c01085{left:609.920000pt;}
.x3_c01085{left:616.320000pt;}
.xa_c01085{left:618.240000pt;}
.x39_c01085{left:619.520000pt;}
.x38_c01085{left:632.320000pt;}
.x4_c01085{left:647.040000pt;}
.x11_c01085{left:648.320000pt;}
.x6_c01085{left:664.960000pt;}
.xb_c01085{left:666.240000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e27a4b3106f791898f63d8ff.woff2')format("woff");}.ff1_c01086{font-family:ff1_c01086;line-height:1.109863;font-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_c01086{transform:matrix(0.147525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147525,0.000000,0.000000,0.250000,0,0);}
.m4a_c01086{transform:matrix(0.150825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150825,0.000000,0.000000,0.250000,0,0);}
.m19_c01086{transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);}
.m54_c01086{transform:matrix(0.194200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194200,0.000000,0.000000,0.250000,0,0);}
.m1f_c01086{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.m5d_c01086{transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);}
.m65_c01086{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m48_c01086{transform:matrix(0.219675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219675,0.000000,0.000000,0.250000,0,0);}
.m4b_c01086{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);}
.m4d_c01086{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m58_c01086{transform:matrix(0.225100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225100,0.000000,0.000000,0.250000,0,0);}
.me_c01086{transform:matrix(0.225425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225425,0.000000,0.000000,0.250000,0,0);}
.m26_c01086{transform:matrix(0.234350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234350,0.000000,0.000000,0.250000,0,0);}
.m22_c01086{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m2b_c01086{transform:matrix(0.237650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237650,0.000000,0.000000,0.250000,0,0);}
.m5c_c01086{transform:matrix(0.237850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237850,0.000000,0.000000,0.250000,0,0);}
.m36_c01086{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m2_c01086{transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);}
.m38_c01086{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);}
.m5a_c01086{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m9_c01086{transform:matrix(0.244550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244550,0.000000,0.000000,0.250000,0,0);}
.m51_c01086{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m63_c01086{transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);}
.m50_c01086{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m61_c01086{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m40_c01086{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);}
.m5b_c01086{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);}
.m2e_c01086{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);}
.m31_c01086{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);}
.m64_c01086{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m18_c01086{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m3_c01086{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m11_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);}
.m24_c01086{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);}
.m56_c01086{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01086{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mc_c01086{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);}
.m46_c01086{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m8_c01086{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);}
.m3c_c01086{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m49_c01086{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mb_c01086{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m21_c01086{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01086{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m60_c01086{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m12_c01086{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m5_c01086{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m42_c01086{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01086{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m16_c01086{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01086{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01086{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m34_c01086{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m33_c01086{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m32_c01086{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);}
.m1e_c01086{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01086{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01086{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);}
.m47_c01086{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);}
.m35_c01086{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01086{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);}
.m45_c01086{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.ma_c01086{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);}
.m59_c01086{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m25_c01086{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01086{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.md_c01086{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);}
.m52_c01086{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m4e_c01086{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m53_c01086{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);}
.m39_c01086{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01086{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);}
.m0_c01086{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01086{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m1_c01086{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01086{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m6_c01086{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);}
.m4f_c01086{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);}
.m15_c01086{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m41_c01086{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m55_c01086{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);}
.m2f_c01086{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);}
.m30_c01086{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);}
.mf_c01086{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m44_c01086{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m66_c01086{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);}
.m3a_c01086{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m57_c01086{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m62_c01086{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);}
.m10_c01086{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);}
.m20_c01086{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);}
.m13_c01086{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m5e_c01086{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);}
.m4_c01086{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m28_c01086{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);}
.m14_c01086{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);}
.m5f_c01086{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m7_c01086{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m37_c01086{transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);}
.m43_c01086{transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);}
.m23_c01086{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01086{transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01086{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.v3_c01086{vertical-align:-20.160000px;}
.v2_c01086{vertical-align:-5.760000px;}
.v1_c01086{vertical-align:-2.880000px;}
.v0_c01086{vertical-align:0.000000px;}
.ls1_c01086{letter-spacing:0.000000px;}
.ls0_c01086{letter-spacing:41.646240px;}
.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;}
}
.ws3_c01086{word-spacing:0.000000px;}
.ws2_c01086{word-spacing:30.196320px;}
.ws1_c01086{word-spacing:102.367699px;}
.ws0_c01086{word-spacing:173.595600px;}
.fc0_c01086{color:transparent;}
.fs13_c01086{font-size:20.160000px;}
.fs12_c01086{font-size:23.040000px;}
.fs10_c01086{font-size:25.920000px;}
.fs6_c01086{font-size:37.440000px;}
.fsa_c01086{font-size:40.320000px;}
.fse_c01086{font-size:43.200000px;}
.fsf_c01086{font-size:46.080000px;}
.fsc_c01086{font-size:48.960000px;}
.fs4_c01086{font-size:51.840000px;}
.fs5_c01086{font-size:54.720000px;}
.fs1_c01086{font-size:57.600000px;}
.fs7_c01086{font-size:60.480000px;}
.fs8_c01086{font-size:63.360000px;}
.fsb_c01086{font-size:66.240000px;}
.fs3_c01086{font-size:69.120000px;}
.fs0_c01086{font-size:72.000000px;}
.fs9_c01086{font-size:74.880000px;}
.fs2_c01086{font-size:77.760000px;}
.fs14_c01086{font-size:80.640000px;}
.fs11_c01086{font-size:95.040000px;}
.fs15_c01086{font-size:100.800000px;}
.fsd_c01086{font-size:103.680000px;}
.y0_c01086{bottom:0.000000px;}
.yab_c01086{bottom:18.720000px;}
.yaa_c01086{bottom:19.440000px;}
.y9d_c01086{bottom:20.880000px;}
.ya9_c01086{bottom:21.600000px;}
.y9c_c01086{bottom:25.200000px;}
.y9a_c01086{bottom:25.920000px;}
.y9b_c01086{bottom:26.640000px;}
.ya6_c01086{bottom:49.680000px;}
.ya8_c01086{bottom:57.600000px;}
.ya7_c01086{bottom:59.040000px;}
.y99_c01086{bottom:59.760000px;}
.y98_c01086{bottom:64.080000px;}
.y97_c01086{bottom:64.800000px;}
.y96_c01086{bottom:65.520000px;}
.ya5_c01086{bottom:100.800000px;}
.y95_c01086{bottom:101.520000px;}
.ya3_c01086{bottom:102.240000px;}
.ya2_c01086{bottom:103.680000px;}
.ya4_c01086{bottom:104.400000px;}
.y94_c01086{bottom:106.560000px;}
.y92_c01086{bottom:107.280000px;}
.y93_c01086{bottom:108.000000px;}
.ya1_c01086{bottom:144.000000px;}
.y91_c01086{bottom:145.440000px;}
.ya0_c01086{bottom:146.160000px;}
.y90_c01086{bottom:149.760000px;}
.y8f_c01086{bottom:150.480000px;}
.y9e_c01086{bottom:187.920000px;}
.y8e_c01086{bottom:189.360000px;}
.y9f_c01086{bottom:190.080000px;}
.y8c_c01086{bottom:192.960000px;}
.y8d_c01086{bottom:193.680000px;}
.y8b_c01086{bottom:234.720000px;}
.y8a_c01086{bottom:237.600000px;}
.y88_c01086{bottom:297.360000px;}
.y87_c01086{bottom:298.080000px;}
.y86_c01086{bottom:298.800000px;}
.y84_c01086{bottom:299.520000px;}
.y89_c01086{bottom:300.240000px;}
.y85_c01086{bottom:301.680000px;}
.y83_c01086{bottom:318.240000px;}
.y82_c01086{bottom:318.960000px;}
.y81_c01086{bottom:319.680000px;}
.y80_c01086{bottom:321.840000px;}
.y7f_c01086{bottom:322.560000px;}
.y7e_c01086{bottom:323.280000px;}
.y7d_c01086{bottom:339.840000px;}
.y7c_c01086{bottom:340.560000px;}
.y7b_c01086{bottom:341.280000px;}
.y7a_c01086{bottom:342.000000px;}
.y79_c01086{bottom:342.720000px;}
.y77_c01086{bottom:343.440000px;}
.y78_c01086{bottom:344.160000px;}
.y76_c01086{bottom:361.440000px;}
.y73_c01086{bottom:362.160000px;}
.y75_c01086{bottom:362.880000px;}
.y72_c01086{bottom:363.600000px;}
.y74_c01086{bottom:364.320000px;}
.y70_c01086{bottom:365.760000px;}
.y71_c01086{bottom:366.480000px;}
.y6f_c01086{bottom:383.760000px;}
.y6c_c01086{bottom:384.480000px;}
.y6e_c01086{bottom:385.200000px;}
.y6b_c01086{bottom:385.920000px;}
.y6d_c01086{bottom:386.640000px;}
.y6a_c01086{bottom:387.360000px;}
.y69_c01086{bottom:404.640000px;}
.y67_c01086{bottom:405.360000px;}
.y66_c01086{bottom:406.080000px;}
.y65_c01086{bottom:406.800000px;}
.y68_c01086{bottom:407.520000px;}
.y64_c01086{bottom:426.960000px;}
.y62_c01086{bottom:427.680000px;}
.y61_c01086{bottom:428.400000px;}
.y60_c01086{bottom:429.120000px;}
.y63_c01086{bottom:429.840000px;}
.y5f_c01086{bottom:447.840000px;}
.y5e_c01086{bottom:448.560000px;}
.y5a_c01086{bottom:449.280000px;}
.y5c_c01086{bottom:450.000000px;}
.y5b_c01086{bottom:450.720000px;}
.y5d_c01086{bottom:451.440000px;}
.y58_c01086{bottom:470.880000px;}
.y59_c01086{bottom:472.320000px;}
.y57_c01086{bottom:473.040000px;}
.y54_c01086{bottom:498.240000px;}
.y55_c01086{bottom:498.960000px;}
.y53_c01086{bottom:499.680000px;}
.y56_c01086{bottom:502.560000px;}
.y52_c01086{bottom:503.280000px;}
.y51_c01086{bottom:504.000000px;}
.y50_c01086{bottom:504.720000px;}
.y4e_c01086{bottom:545.040000px;}
.y4f_c01086{bottom:545.760000px;}
.y4d_c01086{bottom:547.920000px;}
.y4c_c01086{bottom:578.160000px;}
.y4b_c01086{bottom:578.880000px;}
.y4a_c01086{bottom:579.600000px;}
.y49_c01086{bottom:580.320000px;}
.y46_c01086{bottom:609.120000px;}
.y42_c01086{bottom:609.840000px;}
.y45_c01086{bottom:610.560000px;}
.y41_c01086{bottom:611.280000px;}
.y43_c01086{bottom:612.000000px;}
.y48_c01086{bottom:612.720000px;}
.y44_c01086{bottom:613.440000px;}
.y47_c01086{bottom:614.160000px;}
.y40_c01086{bottom:654.480000px;}
.y3f_c01086{bottom:655.920000px;}
.y3c_c01086{bottom:663.120000px;}
.y3b_c01086{bottom:663.840000px;}
.y3d_c01086{bottom:665.280000px;}
.y3e_c01086{bottom:668.160000px;}
.y36_c01086{bottom:673.920000px;}
.y3a_c01086{bottom:675.360000px;}
.y39_c01086{bottom:676.080000px;}
.y37_c01086{bottom:686.880000px;}
.y38_c01086{bottom:687.600000px;}
.y35_c01086{bottom:718.560000px;}
.y33_c01086{bottom:725.040000px;}
.y34_c01086{bottom:726.480000px;}
.y32_c01086{bottom:727.200000px;}
.y2c_c01086{bottom:727.920000px;}
.y2a_c01086{bottom:728.640000px;}
.y29_c01086{bottom:729.360000px;}
.y2b_c01086{bottom:730.080000px;}
.y31_c01086{bottom:761.760000px;}
.y2e_c01086{bottom:768.240000px;}
.y2d_c01086{bottom:769.680000px;}
.y2f_c01086{bottom:770.400000px;}
.y26_c01086{bottom:771.120000px;}
.y28_c01086{bottom:771.840000px;}
.y25_c01086{bottom:772.560000px;}
.y30_c01086{bottom:773.280000px;}
.y27_c01086{bottom:774.000000px;}
.y1b_c01086{bottom:811.440000px;}
.y19_c01086{bottom:812.880000px;}
.y23_c01086{bottom:813.600000px;}
.y22_c01086{bottom:814.320000px;}
.y1a_c01086{bottom:815.760000px;}
.y21_c01086{bottom:817.200000px;}
.y24_c01086{bottom:817.920000px;}
.y18_c01086{bottom:854.640000px;}
.y16_c01086{bottom:856.080000px;}
.y1f_c01086{bottom:857.520000px;}
.y17_c01086{bottom:858.960000px;}
.y1e_c01086{bottom:860.400000px;}
.y20_c01086{bottom:861.120000px;}
.y15_c01086{bottom:897.120000px;}
.y13_c01086{bottom:899.280000px;}
.y14_c01086{bottom:901.440000px;}
.y1c_c01086{bottom:903.600000px;}
.y1d_c01086{bottom:904.320000px;}
.y10_c01086{bottom:941.760000px;}
.yf_c01086{bottom:943.200000px;}
.ye_c01086{bottom:943.920000px;}
.ya_c01086{bottom:972.000000px;}
.y9_c01086{bottom:974.160000px;}
.yd_c01086{bottom:977.040000px;}
.yb_c01086{bottom:977.760000px;}
.yc_c01086{bottom:978.480000px;}
.y12_c01086{bottom:979.920000px;}
.y6_c01086{bottom:1016.640000px;}
.y8_c01086{bottom:1017.360000px;}
.y7_c01086{bottom:1020.240000px;}
.y3_c01086{bottom:1047.600000px;}
.y2_c01086{bottom:1049.760000px;}
.y4_c01086{bottom:1053.360000px;}
.y5_c01086{bottom:1054.800000px;}
.y11_c01086{bottom:1055.520000px;}
.y1_c01086{bottom:1115.280000px;}
.h15_c01086{height:18.142031px;}
.h14_c01086{height:20.733750px;}
.h12_c01086{height:23.325469px;}
.h8_c01086{height:33.692344px;}
.hc_c01086{height:36.284062px;}
.h10_c01086{height:38.875781px;}
.h11_c01086{height:41.467500px;}
.he_c01086{height:44.059219px;}
.h6_c01086{height:46.650937px;}
.h7_c01086{height:49.242656px;}
.h3_c01086{height:51.834375px;}
.h9_c01086{height:54.426094px;}
.ha_c01086{height:57.017812px;}
.hd_c01086{height:59.609531px;}
.h5_c01086{height:62.201250px;}
.h2_c01086{height:64.792969px;}
.hb_c01086{height:67.384687px;}
.h4_c01086{height:69.976406px;}
.h16_c01086{height:72.568125px;}
.h13_c01086{height:85.526719px;}
.h17_c01086{height:90.710156px;}
.hf_c01086{height:93.301875px;}
.h0_c01086{height:1174.320000px;}
.h1_c01086{height:1174.500000px;}
.w1_c01086{width:801.000000px;}
.w0_c01086{width:801.360000px;}
.x0_c01086{left:0.000000px;}
.x2_c01086{left:64.800000px;}
.xc_c01086{left:66.240000px;}
.x3c_c01086{left:75.600000px;}
.x36_c01086{left:77.040000px;}
.x24_c01086{left:86.400000px;}
.x32_c01086{left:97.200000px;}
.x37_c01086{left:98.640000px;}
.x3d_c01086{left:109.440000px;}
.x3a_c01086{left:118.800000px;}
.x40_c01086{left:120.240000px;}
.x3_c01086{left:140.400000px;}
.x3e_c01086{left:141.840000px;}
.x2e_c01086{left:151.200000px;}
.x41_c01086{left:152.640000px;}
.x20_c01086{left:172.800000px;}
.x1b_c01086{left:174.240000px;}
.x10_c01086{left:181.440000px;}
.xa_c01086{left:183.600000px;}
.x16_c01086{left:194.400000px;}
.x2f_c01086{left:216.000000px;}
.x11_c01086{left:226.080000px;}
.x21_c01086{left:227.520000px;}
.x42_c01086{left:236.160000px;}
.x4_c01086{left:237.600000px;}
.x19_c01086{left:247.680000px;}
.x25_c01086{left:259.920000px;}
.x30_c01086{left:269.280000px;}
.xb_c01086{left:280.800000px;}
.x26_c01086{left:290.160000px;}
.xd_c01086{left:291.600000px;}
.x27_c01086{left:301.680000px;}
.x28_c01086{left:313.200000px;}
.x5_c01086{left:324.000000px;}
.xe_c01086{left:334.800000px;}
.x1c_c01086{left:345.600000px;}
.x3f_c01086{left:347.040000px;}
.x29_c01086{left:355.680000px;}
.x6_c01086{left:377.280000px;}
.x38_c01086{left:378.720000px;}
.x33_c01086{left:388.080000px;}
.x1d_c01086{left:400.320000px;}
.xf_c01086{left:419.760000px;}
.x7_c01086{left:421.200000px;}
.x31_c01086{left:432.720000px;}
.x2a_c01086{left:443.520000px;}
.x22_c01086{left:444.960000px;}
.x8_c01086{left:464.400000px;}
.x1a_c01086{left:475.200000px;}
.x34_c01086{left:519.120000px;}
.x3b_c01086{left:520.560000px;}
.x2b_c01086{left:531.360000px;}
.x9_c01086{left:542.160000px;}
.x35_c01086{left:552.960000px;}
.x2c_c01086{left:563.040000px;}
.x2d_c01086{left:575.280000px;}
.x18_c01086{left:596.160000px;}
.x39_c01086{left:606.960000px;}
.x12_c01086{left:629.280000px;}
.x43_c01086{left:630.720000px;}
.x13_c01086{left:662.400000px;}
.x15_c01086{left:673.200000px;}
.x1e_c01086{left:684.000000px;}
.x1_c01086{left:686.880000px;}
.x14_c01086{left:706.320000px;}
.x1f_c01086{left:714.960000px;}
.x23_c01086{left:716.400000px;}
.x17_c01086{left:726.480000px;}
.x44_c01086{left:727.920000px;}
@media print{
.v3_c01086{vertical-align:-17.920000pt;}
.v2_c01086{vertical-align:-5.120000pt;}
.v1_c01086{vertical-align:-2.560000pt;}
.v0_c01086{vertical-align:0.000000pt;}
.ls1_c01086{letter-spacing:0.000000pt;}
.ls0_c01086{letter-spacing:37.018880pt;}
.ws3_c01086{word-spacing:0.000000pt;}
.ws2_c01086{word-spacing:26.841173pt;}
.ws1_c01086{word-spacing:90.993510pt;}
.ws0_c01086{word-spacing:154.307200pt;}
.fs13_c01086{font-size:17.920000pt;}
.fs12_c01086{font-size:20.480000pt;}
.fs10_c01086{font-size:23.040000pt;}
.fs6_c01086{font-size:33.280000pt;}
.fsa_c01086{font-size:35.840000pt;}
.fse_c01086{font-size:38.400000pt;}
.fsf_c01086{font-size:40.960000pt;}
.fsc_c01086{font-size:43.520000pt;}
.fs4_c01086{font-size:46.080000pt;}
.fs5_c01086{font-size:48.640000pt;}
.fs1_c01086{font-size:51.200000pt;}
.fs7_c01086{font-size:53.760000pt;}
.fs8_c01086{font-size:56.320000pt;}
.fsb_c01086{font-size:58.880000pt;}
.fs3_c01086{font-size:61.440000pt;}
.fs0_c01086{font-size:64.000000pt;}
.fs9_c01086{font-size:66.560000pt;}
.fs2_c01086{font-size:69.120000pt;}
.fs14_c01086{font-size:71.680000pt;}
.fs11_c01086{font-size:84.480000pt;}
.fs15_c01086{font-size:89.600000pt;}
.fsd_c01086{font-size:92.160000pt;}
.y0_c01086{bottom:0.000000pt;}
.yab_c01086{bottom:16.640000pt;}
.yaa_c01086{bottom:17.280000pt;}
.y9d_c01086{bottom:18.560000pt;}
.ya9_c01086{bottom:19.200000pt;}
.y9c_c01086{bottom:22.400000pt;}
.y9a_c01086{bottom:23.040000pt;}
.y9b_c01086{bottom:23.680000pt;}
.ya6_c01086{bottom:44.160000pt;}
.ya8_c01086{bottom:51.200000pt;}
.ya7_c01086{bottom:52.480000pt;}
.y99_c01086{bottom:53.120000pt;}
.y98_c01086{bottom:56.960000pt;}
.y97_c01086{bottom:57.600000pt;}
.y96_c01086{bottom:58.240000pt;}
.ya5_c01086{bottom:89.600000pt;}
.y95_c01086{bottom:90.240000pt;}
.ya3_c01086{bottom:90.880000pt;}
.ya2_c01086{bottom:92.160000pt;}
.ya4_c01086{bottom:92.800000pt;}
.y94_c01086{bottom:94.720000pt;}
.y92_c01086{bottom:95.360000pt;}
.y93_c01086{bottom:96.000000pt;}
.ya1_c01086{bottom:128.000000pt;}
.y91_c01086{bottom:129.280000pt;}
.ya0_c01086{bottom:129.920000pt;}
.y90_c01086{bottom:133.120000pt;}
.y8f_c01086{bottom:133.760000pt;}
.y9e_c01086{bottom:167.040000pt;}
.y8e_c01086{bottom:168.320000pt;}
.y9f_c01086{bottom:168.960000pt;}
.y8c_c01086{bottom:171.520000pt;}
.y8d_c01086{bottom:172.160000pt;}
.y8b_c01086{bottom:208.640000pt;}
.y8a_c01086{bottom:211.200000pt;}
.y88_c01086{bottom:264.320000pt;}
.y87_c01086{bottom:264.960000pt;}
.y86_c01086{bottom:265.600000pt;}
.y84_c01086{bottom:266.240000pt;}
.y89_c01086{bottom:266.880000pt;}
.y85_c01086{bottom:268.160000pt;}
.y83_c01086{bottom:282.880000pt;}
.y82_c01086{bottom:283.520000pt;}
.y81_c01086{bottom:284.160000pt;}
.y80_c01086{bottom:286.080000pt;}
.y7f_c01086{bottom:286.720000pt;}
.y7e_c01086{bottom:287.360000pt;}
.y7d_c01086{bottom:302.080000pt;}
.y7c_c01086{bottom:302.720000pt;}
.y7b_c01086{bottom:303.360000pt;}
.y7a_c01086{bottom:304.000000pt;}
.y79_c01086{bottom:304.640000pt;}
.y77_c01086{bottom:305.280000pt;}
.y78_c01086{bottom:305.920000pt;}
.y76_c01086{bottom:321.280000pt;}
.y73_c01086{bottom:321.920000pt;}
.y75_c01086{bottom:322.560000pt;}
.y72_c01086{bottom:323.200000pt;}
.y74_c01086{bottom:323.840000pt;}
.y70_c01086{bottom:325.120000pt;}
.y71_c01086{bottom:325.760000pt;}
.y6f_c01086{bottom:341.120000pt;}
.y6c_c01086{bottom:341.760000pt;}
.y6e_c01086{bottom:342.400000pt;}
.y6b_c01086{bottom:343.040000pt;}
.y6d_c01086{bottom:343.680000pt;}
.y6a_c01086{bottom:344.320000pt;}
.y69_c01086{bottom:359.680000pt;}
.y67_c01086{bottom:360.320000pt;}
.y66_c01086{bottom:360.960000pt;}
.y65_c01086{bottom:361.600000pt;}
.y68_c01086{bottom:362.240000pt;}
.y64_c01086{bottom:379.520000pt;}
.y62_c01086{bottom:380.160000pt;}
.y61_c01086{bottom:380.800000pt;}
.y60_c01086{bottom:381.440000pt;}
.y63_c01086{bottom:382.080000pt;}
.y5f_c01086{bottom:398.080000pt;}
.y5e_c01086{bottom:398.720000pt;}
.y5a_c01086{bottom:399.360000pt;}
.y5c_c01086{bottom:400.000000pt;}
.y5b_c01086{bottom:400.640000pt;}
.y5d_c01086{bottom:401.280000pt;}
.y58_c01086{bottom:418.560000pt;}
.y59_c01086{bottom:419.840000pt;}
.y57_c01086{bottom:420.480000pt;}
.y54_c01086{bottom:442.880000pt;}
.y55_c01086{bottom:443.520000pt;}
.y53_c01086{bottom:444.160000pt;}
.y56_c01086{bottom:446.720000pt;}
.y52_c01086{bottom:447.360000pt;}
.y51_c01086{bottom:448.000000pt;}
.y50_c01086{bottom:448.640000pt;}
.y4e_c01086{bottom:484.480000pt;}
.y4f_c01086{bottom:485.120000pt;}
.y4d_c01086{bottom:487.040000pt;}
.y4c_c01086{bottom:513.920000pt;}
.y4b_c01086{bottom:514.560000pt;}
.y4a_c01086{bottom:515.200000pt;}
.y49_c01086{bottom:515.840000pt;}
.y46_c01086{bottom:541.440000pt;}
.y42_c01086{bottom:542.080000pt;}
.y45_c01086{bottom:542.720000pt;}
.y41_c01086{bottom:543.360000pt;}
.y43_c01086{bottom:544.000000pt;}
.y48_c01086{bottom:544.640000pt;}
.y44_c01086{bottom:545.280000pt;}
.y47_c01086{bottom:545.920000pt;}
.y40_c01086{bottom:581.760000pt;}
.y3f_c01086{bottom:583.040000pt;}
.y3c_c01086{bottom:589.440000pt;}
.y3b_c01086{bottom:590.080000pt;}
.y3d_c01086{bottom:591.360000pt;}
.y3e_c01086{bottom:593.920000pt;}
.y36_c01086{bottom:599.040000pt;}
.y3a_c01086{bottom:600.320000pt;}
.y39_c01086{bottom:600.960000pt;}
.y37_c01086{bottom:610.560000pt;}
.y38_c01086{bottom:611.200000pt;}
.y35_c01086{bottom:638.720000pt;}
.y33_c01086{bottom:644.480000pt;}
.y34_c01086{bottom:645.760000pt;}
.y32_c01086{bottom:646.400000pt;}
.y2c_c01086{bottom:647.040000pt;}
.y2a_c01086{bottom:647.680000pt;}
.y29_c01086{bottom:648.320000pt;}
.y2b_c01086{bottom:648.960000pt;}
.y31_c01086{bottom:677.120000pt;}
.y2e_c01086{bottom:682.880000pt;}
.y2d_c01086{bottom:684.160000pt;}
.y2f_c01086{bottom:684.800000pt;}
.y26_c01086{bottom:685.440000pt;}
.y28_c01086{bottom:686.080000pt;}
.y25_c01086{bottom:686.720000pt;}
.y30_c01086{bottom:687.360000pt;}
.y27_c01086{bottom:688.000000pt;}
.y1b_c01086{bottom:721.280000pt;}
.y19_c01086{bottom:722.560000pt;}
.y23_c01086{bottom:723.200000pt;}
.y22_c01086{bottom:723.840000pt;}
.y1a_c01086{bottom:725.120000pt;}
.y21_c01086{bottom:726.400000pt;}
.y24_c01086{bottom:727.040000pt;}
.y18_c01086{bottom:759.680000pt;}
.y16_c01086{bottom:760.960000pt;}
.y1f_c01086{bottom:762.240000pt;}
.y17_c01086{bottom:763.520000pt;}
.y1e_c01086{bottom:764.800000pt;}
.y20_c01086{bottom:765.440000pt;}
.y15_c01086{bottom:797.440000pt;}
.y13_c01086{bottom:799.360000pt;}
.y14_c01086{bottom:801.280000pt;}
.y1c_c01086{bottom:803.200000pt;}
.y1d_c01086{bottom:803.840000pt;}
.y10_c01086{bottom:837.120000pt;}
.yf_c01086{bottom:838.400000pt;}
.ye_c01086{bottom:839.040000pt;}
.ya_c01086{bottom:864.000000pt;}
.y9_c01086{bottom:865.920000pt;}
.yd_c01086{bottom:868.480000pt;}
.yb_c01086{bottom:869.120000pt;}
.yc_c01086{bottom:869.760000pt;}
.y12_c01086{bottom:871.040000pt;}
.y6_c01086{bottom:903.680000pt;}
.y8_c01086{bottom:904.320000pt;}
.y7_c01086{bottom:906.880000pt;}
.y3_c01086{bottom:931.200000pt;}
.y2_c01086{bottom:933.120000pt;}
.y4_c01086{bottom:936.320000pt;}
.y5_c01086{bottom:937.600000pt;}
.y11_c01086{bottom:938.240000pt;}
.y1_c01086{bottom:991.360000pt;}
.h15_c01086{height:16.126250pt;}
.h14_c01086{height:18.430000pt;}
.h12_c01086{height:20.733750pt;}
.h8_c01086{height:29.948750pt;}
.hc_c01086{height:32.252500pt;}
.h10_c01086{height:34.556250pt;}
.h11_c01086{height:36.860000pt;}
.he_c01086{height:39.163750pt;}
.h6_c01086{height:41.467500pt;}
.h7_c01086{height:43.771250pt;}
.h3_c01086{height:46.075000pt;}
.h9_c01086{height:48.378750pt;}
.ha_c01086{height:50.682500pt;}
.hd_c01086{height:52.986250pt;}
.h5_c01086{height:55.290000pt;}
.h2_c01086{height:57.593750pt;}
.hb_c01086{height:59.897500pt;}
.h4_c01086{height:62.201250pt;}
.h16_c01086{height:64.505000pt;}
.h13_c01086{height:76.023750pt;}
.h17_c01086{height:80.631250pt;}
.hf_c01086{height:82.935000pt;}
.h0_c01086{height:1043.840000pt;}
.h1_c01086{height:1044.000000pt;}
.w1_c01086{width:712.000000pt;}
.w0_c01086{width:712.320000pt;}
.x0_c01086{left:0.000000pt;}
.x2_c01086{left:57.600000pt;}
.xc_c01086{left:58.880000pt;}
.x3c_c01086{left:67.200000pt;}
.x36_c01086{left:68.480000pt;}
.x24_c01086{left:76.800000pt;}
.x32_c01086{left:86.400000pt;}
.x37_c01086{left:87.680000pt;}
.x3d_c01086{left:97.280000pt;}
.x3a_c01086{left:105.600000pt;}
.x40_c01086{left:106.880000pt;}
.x3_c01086{left:124.800000pt;}
.x3e_c01086{left:126.080000pt;}
.x2e_c01086{left:134.400000pt;}
.x41_c01086{left:135.680000pt;}
.x20_c01086{left:153.600000pt;}
.x1b_c01086{left:154.880000pt;}
.x10_c01086{left:161.280000pt;}
.xa_c01086{left:163.200000pt;}
.x16_c01086{left:172.800000pt;}
.x2f_c01086{left:192.000000pt;}
.x11_c01086{left:200.960000pt;}
.x21_c01086{left:202.240000pt;}
.x42_c01086{left:209.920000pt;}
.x4_c01086{left:211.200000pt;}
.x19_c01086{left:220.160000pt;}
.x25_c01086{left:231.040000pt;}
.x30_c01086{left:239.360000pt;}
.xb_c01086{left:249.600000pt;}
.x26_c01086{left:257.920000pt;}
.xd_c01086{left:259.200000pt;}
.x27_c01086{left:268.160000pt;}
.x28_c01086{left:278.400000pt;}
.x5_c01086{left:288.000000pt;}
.xe_c01086{left:297.600000pt;}
.x1c_c01086{left:307.200000pt;}
.x3f_c01086{left:308.480000pt;}
.x29_c01086{left:316.160000pt;}
.x6_c01086{left:335.360000pt;}
.x38_c01086{left:336.640000pt;}
.x33_c01086{left:344.960000pt;}
.x1d_c01086{left:355.840000pt;}
.xf_c01086{left:373.120000pt;}
.x7_c01086{left:374.400000pt;}
.x31_c01086{left:384.640000pt;}
.x2a_c01086{left:394.240000pt;}
.x22_c01086{left:395.520000pt;}
.x8_c01086{left:412.800000pt;}
.x1a_c01086{left:422.400000pt;}
.x34_c01086{left:461.440000pt;}
.x3b_c01086{left:462.720000pt;}
.x2b_c01086{left:472.320000pt;}
.x9_c01086{left:481.920000pt;}
.x35_c01086{left:491.520000pt;}
.x2c_c01086{left:500.480000pt;}
.x2d_c01086{left:511.360000pt;}
.x18_c01086{left:529.920000pt;}
.x39_c01086{left:539.520000pt;}
.x12_c01086{left:559.360000pt;}
.x43_c01086{left:560.640000pt;}
.x13_c01086{left:588.800000pt;}
.x15_c01086{left:598.400000pt;}
.x1e_c01086{left:608.000000pt;}
.x1_c01086{left:610.560000pt;}
.x14_c01086{left:627.840000pt;}
.x1f_c01086{left:635.520000pt;}
.x23_c01086{left:636.800000pt;}
.x17_c01086{left:645.760000pt;}
.x44_c01086{left:647.040000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5d7778825aa07407063414f4.woff2')format("woff");}.ff1_c01087{font-family:ff1_c01087;line-height:1.109863;font-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_c01087{transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);}
.m1e_c01087{transform:matrix(0.197900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197900,0.000000,0.000000,0.250000,0,0);}
.m48_c01087{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m41_c01087{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m43_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);}
.m4_c01087{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);}
.m24_c01087{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m10_c01087{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m6_c01087{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);}
.m1f_c01087{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01087{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m26_c01087{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m5_c01087{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);}
.m2f_c01087{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01087{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.md_c01087{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m11_c01087{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m15_c01087{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m7_c01087{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mb_c01087{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m25_c01087{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01087{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m32_c01087{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m14_c01087{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01087{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m20_c01087{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m45_c01087{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01087{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m28_c01087{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m0_c01087{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01087{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m8_c01087{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);}
.m38_c01087{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m19_c01087{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01087{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m16_c01087{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_c01087{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01087{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);}
.m29_c01087{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m33_c01087{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1_c01087{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m21_c01087{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);}
.m3d_c01087{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.ma_c01087{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);}
.m23_c01087{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m39_c01087{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);}
.m30_c01087{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m36_c01087{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.me_c01087{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);}
.mf_c01087{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m13_c01087{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);}
.m2_c01087{transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);}
.m9_c01087{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m3_c01087{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01087{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01087{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m18_c01087{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01087{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);}
.m3a_c01087{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m35_c01087{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m46_c01087{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m47_c01087{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);}
.m44_c01087{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m37_c01087{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m42_c01087{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);}
.m2e_c01087{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m31_c01087{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m34_c01087{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m27_c01087{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m12_c01087{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01087{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m22_c01087{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m17_c01087{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.v2_c01087{vertical-align:-20.160000px;}
.v3_c01087{vertical-align:-5.760000px;}
.v0_c01087{vertical-align:0.000000px;}
.v1_c01087{vertical-align:11.520000px;}
.ls0_c01087{letter-spacing:0.000000px;}
.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;}
}
.ws3_c01087{word-spacing:0.000000px;}
.ws2_c01087{word-spacing:4.691040px;}
.ws1_c01087{word-spacing:13.032720px;}
.ws0_c01087{word-spacing:364.692000px;}
.fc0_c01087{color:transparent;}
.fse_c01087{font-size:34.560000px;}
.fs11_c01087{font-size:37.440000px;}
.fsf_c01087{font-size:40.320000px;}
.fs3_c01087{font-size:43.200000px;}
.fsc_c01087{font-size:46.080000px;}
.fs2_c01087{font-size:48.960000px;}
.fs8_c01087{font-size:51.840000px;}
.fsb_c01087{font-size:54.720000px;}
.fs9_c01087{font-size:57.600000px;}
.fs1_c01087{font-size:60.480000px;}
.fs7_c01087{font-size:63.360000px;}
.fsd_c01087{font-size:66.240000px;}
.fs5_c01087{font-size:69.120000px;}
.fs0_c01087{font-size:72.000000px;}
.fs6_c01087{font-size:74.880000px;}
.fs4_c01087{font-size:77.760000px;}
.fsa_c01087{font-size:80.640000px;}
.fs10_c01087{font-size:103.680000px;}
.y0_c01087{bottom:0.000000px;}
.y82_c01087{bottom:101.520000px;}
.y83_c01087{bottom:102.240000px;}
.y84_c01087{bottom:102.960000px;}
.y80_c01087{bottom:104.400000px;}
.y81_c01087{bottom:105.840000px;}
.y7e_c01087{bottom:144.720000px;}
.y7d_c01087{bottom:145.440000px;}
.y7f_c01087{bottom:146.160000px;}
.y7a_c01087{bottom:147.600000px;}
.y7c_c01087{bottom:148.320000px;}
.y7b_c01087{bottom:149.040000px;}
.y79_c01087{bottom:191.520000px;}
.y76_c01087{bottom:218.880000px;}
.y78_c01087{bottom:220.320000px;}
.y77_c01087{bottom:221.760000px;}
.y74_c01087{bottom:222.480000px;}
.y75_c01087{bottom:223.920000px;}
.y6f_c01087{bottom:262.080000px;}
.y71_c01087{bottom:262.800000px;}
.y72_c01087{bottom:263.520000px;}
.y73_c01087{bottom:264.240000px;}
.y70_c01087{bottom:264.960000px;}
.y6d_c01087{bottom:265.680000px;}
.y6e_c01087{bottom:266.400000px;}
.y6a_c01087{bottom:305.280000px;}
.y6c_c01087{bottom:306.720000px;}
.y68_c01087{bottom:307.440000px;}
.y6b_c01087{bottom:308.880000px;}
.y69_c01087{bottom:309.600000px;}
.y64_c01087{bottom:348.480000px;}
.y66_c01087{bottom:349.200000px;}
.y67_c01087{bottom:349.920000px;}
.y62_c01087{bottom:350.640000px;}
.y65_c01087{bottom:351.360000px;}
.y63_c01087{bottom:352.080000px;}
.y60_c01087{bottom:384.480000px;}
.y5c_c01087{bottom:390.960000px;}
.y5f_c01087{bottom:392.400000px;}
.y61_c01087{bottom:393.120000px;}
.y5a_c01087{bottom:393.840000px;}
.y5d_c01087{bottom:394.560000px;}
.y5e_c01087{bottom:395.280000px;}
.y5b_c01087{bottom:396.000000px;}
.y59_c01087{bottom:434.160000px;}
.y58_c01087{bottom:435.600000px;}
.y56_c01087{bottom:437.760000px;}
.y57_c01087{bottom:438.480000px;}
.y53_c01087{bottom:467.280000px;}
.y51_c01087{bottom:468.720000px;}
.y55_c01087{bottom:469.440000px;}
.y54_c01087{bottom:470.160000px;}
.y52_c01087{bottom:470.880000px;}
.y4f_c01087{bottom:510.480000px;}
.y4e_c01087{bottom:511.200000px;}
.y4c_c01087{bottom:513.360000px;}
.y4d_c01087{bottom:514.080000px;}
.y48_c01087{bottom:542.160000px;}
.y49_c01087{bottom:543.600000px;}
.y46_c01087{bottom:544.320000px;}
.y50_c01087{bottom:545.040000px;}
.y4a_c01087{bottom:545.760000px;}
.y47_c01087{bottom:546.480000px;}
.y4b_c01087{bottom:547.200000px;}
.y45_c01087{bottom:586.080000px;}
.y43_c01087{bottom:586.800000px;}
.y44_c01087{bottom:587.520000px;}
.y3f_c01087{bottom:617.760000px;}
.y3d_c01087{bottom:619.200000px;}
.y3e_c01087{bottom:621.360000px;}
.y40_c01087{bottom:622.080000px;}
.y41_c01087{bottom:622.800000px;}
.y42_c01087{bottom:623.520000px;}
.y39_c01087{bottom:660.240000px;}
.y3a_c01087{bottom:660.960000px;}
.y37_c01087{bottom:662.400000px;}
.y3b_c01087{bottom:663.840000px;}
.y3c_c01087{bottom:664.560000px;}
.y38_c01087{bottom:665.280000px;}
.y34_c01087{bottom:703.440000px;}
.y33_c01087{bottom:704.880000px;}
.y35_c01087{bottom:707.040000px;}
.y36_c01087{bottom:707.760000px;}
.y30_c01087{bottom:745.920000px;}
.y2f_c01087{bottom:748.080000px;}
.y32_c01087{bottom:750.240000px;}
.y31_c01087{bottom:750.960000px;}
.y2c_c01087{bottom:788.400000px;}
.y2a_c01087{bottom:791.280000px;}
.y2b_c01087{bottom:793.440000px;}
.y2d_c01087{bottom:794.160000px;}
.y2e_c01087{bottom:795.600000px;}
.y28_c01087{bottom:831.600000px;}
.y26_c01087{bottom:833.040000px;}
.y25_c01087{bottom:833.760000px;}
.y27_c01087{bottom:835.920000px;}
.y29_c01087{bottom:836.640000px;}
.y21_c01087{bottom:875.520000px;}
.y1f_c01087{bottom:876.240000px;}
.y1e_c01087{bottom:876.960000px;}
.y22_c01087{bottom:879.120000px;}
.y20_c01087{bottom:879.840000px;}
.y23_c01087{bottom:880.560000px;}
.y24_c01087{bottom:882.720000px;}
.y19_c01087{bottom:918.000000px;}
.y17_c01087{bottom:919.440000px;}
.y18_c01087{bottom:921.600000px;}
.y1a_c01087{bottom:923.040000px;}
.y1c_c01087{bottom:924.480000px;}
.y1b_c01087{bottom:925.200000px;}
.y1d_c01087{bottom:925.920000px;}
.y13_c01087{bottom:961.200000px;}
.y10_c01087{bottom:962.640000px;}
.y12_c01087{bottom:964.080000px;}
.y11_c01087{bottom:964.800000px;}
.y14_c01087{bottom:965.520000px;}
.y15_c01087{bottom:967.680000px;}
.y16_c01087{bottom:969.120000px;}
.yd_c01087{bottom:1003.680000px;}
.yb_c01087{bottom:1005.120000px;}
.yc_c01087{bottom:1007.280000px;}
.ye_c01087{bottom:1009.440000px;}
.yf_c01087{bottom:1010.160000px;}
.y5_c01087{bottom:1046.880000px;}
.y2_c01087{bottom:1047.600000px;}
.y7_c01087{bottom:1048.320000px;}
.y6_c01087{bottom:1049.040000px;}
.y4_c01087{bottom:1049.760000px;}
.y3_c01087{bottom:1050.480000px;}
.ya_c01087{bottom:1052.640000px;}
.y8_c01087{bottom:1053.360000px;}
.y9_c01087{bottom:1054.080000px;}
.y1_c01087{bottom:1114.560000px;}
.h10_c01087{height:31.100625px;}
.h14_c01087{height:33.692344px;}
.h11_c01087{height:36.284062px;}
.h5_c01087{height:38.875781px;}
.he_c01087{height:41.467500px;}
.h4_c01087{height:44.059219px;}
.ha_c01087{height:46.650937px;}
.hd_c01087{height:49.242656px;}
.h13_c01087{height:49.816406px;}
.hb_c01087{height:51.834375px;}
.h3_c01087{height:54.426094px;}
.h9_c01087{height:57.017812px;}
.hf_c01087{height:59.609531px;}
.h15_c01087{height:61.624688px;}
.h7_c01087{height:62.201250px;}
.h2_c01087{height:64.792969px;}
.h8_c01087{height:67.384687px;}
.h6_c01087{height:69.976406px;}
.hc_c01087{height:72.568125px;}
.h12_c01087{height:93.301875px;}
.h1_c01087{height:1161.750000px;}
.h0_c01087{height:1162.080000px;}
.w0_c01087{width:797.760000px;}
.w1_c01087{width:798.000000px;}
.x0_c01087{left:0.000000px;}
.x2_c01087{left:68.400000px;}
.x29_c01087{left:69.840000px;}
.x33_c01087{left:71.280000px;}
.x3_c01087{left:142.560000px;}
.x1e_c01087{left:144.000000px;}
.x27_c01087{left:145.440000px;}
.x4_c01087{left:186.480000px;}
.x2a_c01087{left:187.920000px;}
.x28_c01087{left:189.360000px;}
.x10_c01087{left:197.280000px;}
.x14_c01087{left:198.720000px;}
.x5_c01087{left:220.320000px;}
.xd_c01087{left:228.960000px;}
.x15_c01087{left:231.840000px;}
.x11_c01087{left:239.760000px;}
.x6_c01087{left:241.920000px;}
.x16_c01087{left:252.720000px;}
.x7_c01087{left:274.320000px;}
.x12_c01087{left:284.400000px;}
.x18_c01087{left:295.200000px;}
.x30_c01087{left:296.640000px;}
.x39_c01087{left:298.080000px;}
.x22_c01087{left:316.800000px;}
.x1f_c01087{left:328.320000px;}
.x34_c01087{left:339.840000px;}
.x3a_c01087{left:341.280000px;}
.x19_c01087{left:347.760000px;}
.x20_c01087{left:349.920000px;}
.x2b_c01087{left:361.440000px;}
.x23_c01087{left:371.520000px;}
.x25_c01087{left:382.320000px;}
.x35_c01087{left:384.480000px;}
.x1a_c01087{left:393.840000px;}
.x2c_c01087{left:405.360000px;}
.x31_c01087{left:415.440000px;}
.x36_c01087{left:427.680000px;}
.x21_c01087{left:435.600000px;}
.x2d_c01087{left:447.120000px;}
.x1b_c01087{left:479.520000px;}
.x37_c01087{left:493.200000px;}
.x2e_c01087{left:496.800000px;}
.x8_c01087{left:544.320000px;}
.x1c_c01087{left:545.760000px;}
.x38_c01087{left:547.200000px;}
.x17_c01087{left:578.160000px;}
.x32_c01087{left:579.600000px;}
.x9_c01087{left:599.040000px;}
.x26_c01087{left:600.480000px;}
.x3b_c01087{left:602.640000px;}
.x13_c01087{left:610.560000px;}
.xe_c01087{left:632.880000px;}
.x3f_c01087{left:635.040000px;}
.x3c_c01087{left:658.800000px;}
.xf_c01087{left:666.000000px;}
.x2f_c01087{left:667.440000px;}
.x1_c01087{left:699.840000px;}
.x3d_c01087{left:701.280000px;}
.xa_c01087{left:707.040000px;}
.xc_c01087{left:708.480000px;}
.x1d_c01087{left:710.640000px;}
.x40_c01087{left:712.080000px;}
.xb_c01087{left:729.360000px;}
.x24_c01087{left:730.800000px;}
.x3e_c01087{left:732.240000px;}
@media print{
.v2_c01087{vertical-align:-17.920000pt;}
.v3_c01087{vertical-align:-5.120000pt;}
.v0_c01087{vertical-align:0.000000pt;}
.v1_c01087{vertical-align:10.240000pt;}
.ls0_c01087{letter-spacing:0.000000pt;}
.ws3_c01087{word-spacing:0.000000pt;}
.ws2_c01087{word-spacing:4.169813pt;}
.ws1_c01087{word-spacing:11.584640pt;}
.ws0_c01087{word-spacing:324.170667pt;}
.fse_c01087{font-size:30.720000pt;}
.fs11_c01087{font-size:33.280000pt;}
.fsf_c01087{font-size:35.840000pt;}
.fs3_c01087{font-size:38.400000pt;}
.fsc_c01087{font-size:40.960000pt;}
.fs2_c01087{font-size:43.520000pt;}
.fs8_c01087{font-size:46.080000pt;}
.fsb_c01087{font-size:48.640000pt;}
.fs9_c01087{font-size:51.200000pt;}
.fs1_c01087{font-size:53.760000pt;}
.fs7_c01087{font-size:56.320000pt;}
.fsd_c01087{font-size:58.880000pt;}
.fs5_c01087{font-size:61.440000pt;}
.fs0_c01087{font-size:64.000000pt;}
.fs6_c01087{font-size:66.560000pt;}
.fs4_c01087{font-size:69.120000pt;}
.fsa_c01087{font-size:71.680000pt;}
.fs10_c01087{font-size:92.160000pt;}
.y0_c01087{bottom:0.000000pt;}
.y82_c01087{bottom:90.240000pt;}
.y83_c01087{bottom:90.880000pt;}
.y84_c01087{bottom:91.520000pt;}
.y80_c01087{bottom:92.800000pt;}
.y81_c01087{bottom:94.080000pt;}
.y7e_c01087{bottom:128.640000pt;}
.y7d_c01087{bottom:129.280000pt;}
.y7f_c01087{bottom:129.920000pt;}
.y7a_c01087{bottom:131.200000pt;}
.y7c_c01087{bottom:131.840000pt;}
.y7b_c01087{bottom:132.480000pt;}
.y79_c01087{bottom:170.240000pt;}
.y76_c01087{bottom:194.560000pt;}
.y78_c01087{bottom:195.840000pt;}
.y77_c01087{bottom:197.120000pt;}
.y74_c01087{bottom:197.760000pt;}
.y75_c01087{bottom:199.040000pt;}
.y6f_c01087{bottom:232.960000pt;}
.y71_c01087{bottom:233.600000pt;}
.y72_c01087{bottom:234.240000pt;}
.y73_c01087{bottom:234.880000pt;}
.y70_c01087{bottom:235.520000pt;}
.y6d_c01087{bottom:236.160000pt;}
.y6e_c01087{bottom:236.800000pt;}
.y6a_c01087{bottom:271.360000pt;}
.y6c_c01087{bottom:272.640000pt;}
.y68_c01087{bottom:273.280000pt;}
.y6b_c01087{bottom:274.560000pt;}
.y69_c01087{bottom:275.200000pt;}
.y64_c01087{bottom:309.760000pt;}
.y66_c01087{bottom:310.400000pt;}
.y67_c01087{bottom:311.040000pt;}
.y62_c01087{bottom:311.680000pt;}
.y65_c01087{bottom:312.320000pt;}
.y63_c01087{bottom:312.960000pt;}
.y60_c01087{bottom:341.760000pt;}
.y5c_c01087{bottom:347.520000pt;}
.y5f_c01087{bottom:348.800000pt;}
.y61_c01087{bottom:349.440000pt;}
.y5a_c01087{bottom:350.080000pt;}
.y5d_c01087{bottom:350.720000pt;}
.y5e_c01087{bottom:351.360000pt;}
.y5b_c01087{bottom:352.000000pt;}
.y59_c01087{bottom:385.920000pt;}
.y58_c01087{bottom:387.200000pt;}
.y56_c01087{bottom:389.120000pt;}
.y57_c01087{bottom:389.760000pt;}
.y53_c01087{bottom:415.360000pt;}
.y51_c01087{bottom:416.640000pt;}
.y55_c01087{bottom:417.280000pt;}
.y54_c01087{bottom:417.920000pt;}
.y52_c01087{bottom:418.560000pt;}
.y4f_c01087{bottom:453.760000pt;}
.y4e_c01087{bottom:454.400000pt;}
.y4c_c01087{bottom:456.320000pt;}
.y4d_c01087{bottom:456.960000pt;}
.y48_c01087{bottom:481.920000pt;}
.y49_c01087{bottom:483.200000pt;}
.y46_c01087{bottom:483.840000pt;}
.y50_c01087{bottom:484.480000pt;}
.y4a_c01087{bottom:485.120000pt;}
.y47_c01087{bottom:485.760000pt;}
.y4b_c01087{bottom:486.400000pt;}
.y45_c01087{bottom:520.960000pt;}
.y43_c01087{bottom:521.600000pt;}
.y44_c01087{bottom:522.240000pt;}
.y3f_c01087{bottom:549.120000pt;}
.y3d_c01087{bottom:550.400000pt;}
.y3e_c01087{bottom:552.320000pt;}
.y40_c01087{bottom:552.960000pt;}
.y41_c01087{bottom:553.600000pt;}
.y42_c01087{bottom:554.240000pt;}
.y39_c01087{bottom:586.880000pt;}
.y3a_c01087{bottom:587.520000pt;}
.y37_c01087{bottom:588.800000pt;}
.y3b_c01087{bottom:590.080000pt;}
.y3c_c01087{bottom:590.720000pt;}
.y38_c01087{bottom:591.360000pt;}
.y34_c01087{bottom:625.280000pt;}
.y33_c01087{bottom:626.560000pt;}
.y35_c01087{bottom:628.480000pt;}
.y36_c01087{bottom:629.120000pt;}
.y30_c01087{bottom:663.040000pt;}
.y2f_c01087{bottom:664.960000pt;}
.y32_c01087{bottom:666.880000pt;}
.y31_c01087{bottom:667.520000pt;}
.y2c_c01087{bottom:700.800000pt;}
.y2a_c01087{bottom:703.360000pt;}
.y2b_c01087{bottom:705.280000pt;}
.y2d_c01087{bottom:705.920000pt;}
.y2e_c01087{bottom:707.200000pt;}
.y28_c01087{bottom:739.200000pt;}
.y26_c01087{bottom:740.480000pt;}
.y25_c01087{bottom:741.120000pt;}
.y27_c01087{bottom:743.040000pt;}
.y29_c01087{bottom:743.680000pt;}
.y21_c01087{bottom:778.240000pt;}
.y1f_c01087{bottom:778.880000pt;}
.y1e_c01087{bottom:779.520000pt;}
.y22_c01087{bottom:781.440000pt;}
.y20_c01087{bottom:782.080000pt;}
.y23_c01087{bottom:782.720000pt;}
.y24_c01087{bottom:784.640000pt;}
.y19_c01087{bottom:816.000000pt;}
.y17_c01087{bottom:817.280000pt;}
.y18_c01087{bottom:819.200000pt;}
.y1a_c01087{bottom:820.480000pt;}
.y1c_c01087{bottom:821.760000pt;}
.y1b_c01087{bottom:822.400000pt;}
.y1d_c01087{bottom:823.040000pt;}
.y13_c01087{bottom:854.400000pt;}
.y10_c01087{bottom:855.680000pt;}
.y12_c01087{bottom:856.960000pt;}
.y11_c01087{bottom:857.600000pt;}
.y14_c01087{bottom:858.240000pt;}
.y15_c01087{bottom:860.160000pt;}
.y16_c01087{bottom:861.440000pt;}
.yd_c01087{bottom:892.160000pt;}
.yb_c01087{bottom:893.440000pt;}
.yc_c01087{bottom:895.360000pt;}
.ye_c01087{bottom:897.280000pt;}
.yf_c01087{bottom:897.920000pt;}
.y5_c01087{bottom:930.560000pt;}
.y2_c01087{bottom:931.200000pt;}
.y7_c01087{bottom:931.840000pt;}
.y6_c01087{bottom:932.480000pt;}
.y4_c01087{bottom:933.120000pt;}
.y3_c01087{bottom:933.760000pt;}
.ya_c01087{bottom:935.680000pt;}
.y8_c01087{bottom:936.320000pt;}
.y9_c01087{bottom:936.960000pt;}
.y1_c01087{bottom:990.720000pt;}
.h10_c01087{height:27.645000pt;}
.h14_c01087{height:29.948750pt;}
.h11_c01087{height:32.252500pt;}
.h5_c01087{height:34.556250pt;}
.he_c01087{height:36.860000pt;}
.h4_c01087{height:39.163750pt;}
.ha_c01087{height:41.467500pt;}
.hd_c01087{height:43.771250pt;}
.h13_c01087{height:44.281250pt;}
.hb_c01087{height:46.075000pt;}
.h3_c01087{height:48.378750pt;}
.h9_c01087{height:50.682500pt;}
.hf_c01087{height:52.986250pt;}
.h15_c01087{height:54.777500pt;}
.h7_c01087{height:55.290000pt;}
.h2_c01087{height:57.593750pt;}
.h8_c01087{height:59.897500pt;}
.h6_c01087{height:62.201250pt;}
.hc_c01087{height:64.505000pt;}
.h12_c01087{height:82.935000pt;}
.h1_c01087{height:1032.666667pt;}
.h0_c01087{height:1032.960000pt;}
.w0_c01087{width:709.120000pt;}
.w1_c01087{width:709.333333pt;}
.x0_c01087{left:0.000000pt;}
.x2_c01087{left:60.800000pt;}
.x29_c01087{left:62.080000pt;}
.x33_c01087{left:63.360000pt;}
.x3_c01087{left:126.720000pt;}
.x1e_c01087{left:128.000000pt;}
.x27_c01087{left:129.280000pt;}
.x4_c01087{left:165.760000pt;}
.x2a_c01087{left:167.040000pt;}
.x28_c01087{left:168.320000pt;}
.x10_c01087{left:175.360000pt;}
.x14_c01087{left:176.640000pt;}
.x5_c01087{left:195.840000pt;}
.xd_c01087{left:203.520000pt;}
.x15_c01087{left:206.080000pt;}
.x11_c01087{left:213.120000pt;}
.x6_c01087{left:215.040000pt;}
.x16_c01087{left:224.640000pt;}
.x7_c01087{left:243.840000pt;}
.x12_c01087{left:252.800000pt;}
.x18_c01087{left:262.400000pt;}
.x30_c01087{left:263.680000pt;}
.x39_c01087{left:264.960000pt;}
.x22_c01087{left:281.600000pt;}
.x1f_c01087{left:291.840000pt;}
.x34_c01087{left:302.080000pt;}
.x3a_c01087{left:303.360000pt;}
.x19_c01087{left:309.120000pt;}
.x20_c01087{left:311.040000pt;}
.x2b_c01087{left:321.280000pt;}
.x23_c01087{left:330.240000pt;}
.x25_c01087{left:339.840000pt;}
.x35_c01087{left:341.760000pt;}
.x1a_c01087{left:350.080000pt;}
.x2c_c01087{left:360.320000pt;}
.x31_c01087{left:369.280000pt;}
.x36_c01087{left:380.160000pt;}
.x21_c01087{left:387.200000pt;}
.x2d_c01087{left:397.440000pt;}
.x1b_c01087{left:426.240000pt;}
.x37_c01087{left:438.400000pt;}
.x2e_c01087{left:441.600000pt;}
.x8_c01087{left:483.840000pt;}
.x1c_c01087{left:485.120000pt;}
.x38_c01087{left:486.400000pt;}
.x17_c01087{left:513.920000pt;}
.x32_c01087{left:515.200000pt;}
.x9_c01087{left:532.480000pt;}
.x26_c01087{left:533.760000pt;}
.x3b_c01087{left:535.680000pt;}
.x13_c01087{left:542.720000pt;}
.xe_c01087{left:562.560000pt;}
.x3f_c01087{left:564.480000pt;}
.x3c_c01087{left:585.600000pt;}
.xf_c01087{left:592.000000pt;}
.x2f_c01087{left:593.280000pt;}
.x1_c01087{left:622.080000pt;}
.x3d_c01087{left:623.360000pt;}
.xa_c01087{left:628.480000pt;}
.xc_c01087{left:629.760000pt;}
.x1d_c01087{left:631.680000pt;}
.x40_c01087{left:632.960000pt;}
.xb_c01087{left:648.320000pt;}
.x24_c01087{left:649.600000pt;}
.x3e_c01087{left:650.880000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1a523405dde3205dcaaf3462.woff2')format("woff");}.ff1_c01088{font-family:ff1_c01088;line-height:1.109863;font-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_c01088{transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);}
.m3b_c01088{transform:matrix(0.158875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158875,0.000000,0.000000,0.250000,0,0);}
.m36_c01088{transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);}
.m32_c01088{transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);}
.m42_c01088{transform:matrix(0.205350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205350,0.000000,0.000000,0.250000,0,0);}
.m41_c01088{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.mb_c01088{transform:matrix(0.225600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225600,0.000000,0.000000,0.250000,0,0);}
.m46_c01088{transform:matrix(0.225625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225625,0.000000,0.000000,0.250000,0,0);}
.m2_c01088{transform:matrix(0.229450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229450,0.000000,0.000000,0.250000,0,0);}
.m3d_c01088{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m3e_c01088{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m6_c01088{transform:matrix(0.240350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240350,0.000000,0.000000,0.250000,0,0);}
.m31_c01088{transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);}
.m39_c01088{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m45_c01088{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m8_c01088{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m19_c01088{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_c01088{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);}
.m24_c01088{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m11_c01088{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01088{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m16_c01088{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.mc_c01088{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_c01088{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);}
.m33_c01088{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01088{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);}
.m2c_c01088{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);}
.m30_c01088{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m18_c01088{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);}
.m3f_c01088{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01088{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m44_c01088{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01088{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.md_c01088{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mf_c01088{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m40_c01088{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01088{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m35_c01088{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m17_c01088{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m13_c01088{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m28_c01088{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m12_c01088{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01088{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m4_c01088{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m5_c01088{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);}
.m47_c01088{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m10_c01088{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_c01088{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m43_c01088{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01088{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m23_c01088{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1_c01088{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m7_c01088{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m27_c01088{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);}
.m0_c01088{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m14_c01088{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m9_c01088{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m29_c01088{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m15_c01088{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01088{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);}
.m25_c01088{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01088{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m3_c01088{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);}
.me_c01088{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m21_c01088{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_c01088{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01088{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);}
.m1a_c01088{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m37_c01088{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m22_c01088{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.ma_c01088{transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);}
.m34_c01088{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);}
.v2_c01088{vertical-align:-2.880000px;}
.v0_c01088{vertical-align:0.000000px;}
.v1_c01088{vertical-align:2.880000px;}
.ls0_c01088{letter-spacing:0.000000px;}
.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;}
}
.ws2_c01088{word-spacing:0.000000px;}
.ws1_c01088{word-spacing:53.775600px;}
.ws0_c01088{word-spacing:57.036000px;}
.fc0_c01088{color:transparent;}
.fsd_c01088{font-size:37.440000px;}
.fsc_c01088{font-size:40.320000px;}
.fsf_c01088{font-size:43.200000px;}
.fs7_c01088{font-size:46.080000px;}
.fsa_c01088{font-size:48.960000px;}
.fs3_c01088{font-size:51.840000px;}
.fs9_c01088{font-size:54.720000px;}
.fs1_c01088{font-size:57.600000px;}
.fs8_c01088{font-size:60.480000px;}
.fs6_c01088{font-size:63.360000px;}
.fs10_c01088{font-size:66.240000px;}
.fs0_c01088{font-size:69.120000px;}
.fs4_c01088{font-size:72.000000px;}
.fsb_c01088{font-size:74.880000px;}
.fs5_c01088{font-size:77.760000px;}
.fse_c01088{font-size:80.640000px;}
.fs2_c01088{font-size:83.520000px;}
.y0_c01088{bottom:0.000000px;}
.y4e_c01088{bottom:61.920000px;}
.y4d_c01088{bottom:64.080000px;}
.y6c_c01088{bottom:64.800000px;}
.y4c_c01088{bottom:104.400000px;}
.y6b_c01088{bottom:105.120000px;}
.y6a_c01088{bottom:105.840000px;}
.y4b_c01088{bottom:107.280000px;}
.y69_c01088{bottom:108.000000px;}
.y4a_c01088{bottom:147.600000px;}
.y68_c01088{bottom:148.320000px;}
.y67_c01088{bottom:149.040000px;}
.y48_c01088{bottom:149.760000px;}
.y49_c01088{bottom:151.200000px;}
.y47_c01088{bottom:190.080000px;}
.y66_c01088{bottom:190.800000px;}
.y46_c01088{bottom:192.240000px;}
.y64_c01088{bottom:192.960000px;}
.y65_c01088{bottom:194.400000px;}
.y45_c01088{bottom:233.280000px;}
.y63_c01088{bottom:234.000000px;}
.y44_c01088{bottom:234.720000px;}
.y62_c01088{bottom:235.440000px;}
.y43_c01088{bottom:275.040000px;}
.y61_c01088{bottom:277.200000px;}
.y42_c01088{bottom:277.920000px;}
.y60_c01088{bottom:279.360000px;}
.y41_c01088{bottom:318.240000px;}
.y40_c01088{bottom:319.680000px;}
.y5f_c01088{bottom:320.400000px;}
.y5e_c01088{bottom:321.120000px;}
.y3f_c01088{bottom:360.720000px;}
.y5d_c01088{bottom:362.160000px;}
.y3e_c01088{bottom:362.880000px;}
.y5c_c01088{bottom:364.320000px;}
.y3d_c01088{bottom:402.480000px;}
.y5b_c01088{bottom:403.920000px;}
.y3c_c01088{bottom:404.640000px;}
.y5a_c01088{bottom:405.360000px;}
.y59_c01088{bottom:406.800000px;}
.y3b_c01088{bottom:444.960000px;}
.y58_c01088{bottom:447.120000px;}
.y3a_c01088{bottom:447.840000px;}
.y57_c01088{bottom:448.560000px;}
.y39_c01088{bottom:488.160000px;}
.y56_c01088{bottom:488.880000px;}
.y38_c01088{bottom:489.600000px;}
.y55_c01088{bottom:491.040000px;}
.y54_c01088{bottom:492.480000px;}
.y36_c01088{bottom:529.920000px;}
.y35_c01088{bottom:532.080000px;}
.y30_c01088{bottom:532.800000px;}
.y53_c01088{bottom:533.520000px;}
.y37_c01088{bottom:534.240000px;}
.y33_c01088{bottom:573.120000px;}
.y32_c01088{bottom:575.280000px;}
.y2f_c01088{bottom:576.000000px;}
.y34_c01088{bottom:576.720000px;}
.y31_c01088{bottom:615.600000px;}
.y2e_c01088{bottom:617.760000px;}
.y52_c01088{bottom:618.480000px;}
.y51_c01088{bottom:619.920000px;}
.y2d_c01088{bottom:657.360000px;}
.y50_c01088{bottom:659.520000px;}
.y2c_c01088{bottom:660.240000px;}
.y2b_c01088{bottom:701.280000px;}
.y29_c01088{bottom:702.720000px;}
.y2a_c01088{bottom:705.600000px;}
.y28_c01088{bottom:734.400000px;}
.y26_c01088{bottom:736.560000px;}
.y27_c01088{bottom:737.280000px;}
.y23_c01088{bottom:764.640000px;}
.y24_c01088{bottom:766.080000px;}
.y21_c01088{bottom:766.800000px;}
.y4f_c01088{bottom:767.520000px;}
.y22_c01088{bottom:768.240000px;}
.y25_c01088{bottom:768.960000px;}
.y20_c01088{bottom:800.640000px;}
.y1b_c01088{bottom:807.840000px;}
.y1f_c01088{bottom:809.280000px;}
.y1a_c01088{bottom:810.000000px;}
.y1e_c01088{bottom:810.720000px;}
.y1c_c01088{bottom:811.440000px;}
.y1d_c01088{bottom:812.160000px;}
.y11_c01088{bottom:850.320000px;}
.ye_c01088{bottom:852.480000px;}
.yf_c01088{bottom:853.200000px;}
.y10_c01088{bottom:853.920000px;}
.y19_c01088{bottom:854.640000px;}
.y18_c01088{bottom:855.360000px;}
.yd_c01088{bottom:892.800000px;}
.ya_c01088{bottom:894.240000px;}
.y16_c01088{bottom:894.960000px;}
.y17_c01088{bottom:895.680000px;}
.yb_c01088{bottom:897.120000px;}
.yc_c01088{bottom:897.840000px;}
.y8_c01088{bottom:935.280000px;}
.y15_c01088{bottom:937.440000px;}
.y7_c01088{bottom:938.160000px;}
.y14_c01088{bottom:938.880000px;}
.y9_c01088{bottom:939.600000px;}
.y3_c01088{bottom:977.040000px;}
.y6_c01088{bottom:978.480000px;}
.y13_c01088{bottom:979.200000px;}
.y2_c01088{bottom:979.920000px;}
.y4_c01088{bottom:981.360000px;}
.y5_c01088{bottom:982.080000px;}
.y12_c01088{bottom:982.800000px;}
.y1_c01088{bottom:1098.720000px;}
.hf_c01088{height:33.692344px;}
.he_c01088{height:36.284062px;}
.h12_c01088{height:38.875781px;}
.h9_c01088{height:41.467500px;}
.hc_c01088{height:44.059219px;}
.h5_c01088{height:46.650937px;}
.hb_c01088{height:49.242656px;}
.h3_c01088{height:51.834375px;}
.ha_c01088{height:54.426094px;}
.h11_c01088{height:54.714375px;}
.h8_c01088{height:57.017812px;}
.h13_c01088{height:59.609531px;}
.h2_c01088{height:62.201250px;}
.h6_c01088{height:64.792969px;}
.hd_c01088{height:67.384687px;}
.h7_c01088{height:69.976406px;}
.h10_c01088{height:72.568125px;}
.h4_c01088{height:75.159844px;}
.h0_c01088{height:1138.320000px;}
.h1_c01088{height:1138.500000px;}
.w1_c01088{width:783.750000px;}
.w0_c01088{width:784.080000px;}
.x0_c01088{left:0.000000px;}
.x2_c01088{left:79.920000px;}
.x26_c01088{left:152.640000px;}
.x3_c01088{left:154.080000px;}
.x1f_c01088{left:155.520000px;}
.x1e_c01088{left:186.480000px;}
.xb_c01088{left:196.560000px;}
.xd_c01088{left:207.360000px;}
.x20_c01088{left:228.240000px;}
.x4_c01088{left:239.760000px;}
.x8_c01088{left:241.200000px;}
.x23_c01088{left:248.400000px;}
.xc_c01088{left:250.560000px;}
.x21_c01088{left:272.160000px;}
.x25_c01088{left:281.520000px;}
.x17_c01088{left:282.960000px;}
.x5_c01088{left:293.760000px;}
.x24_c01088{left:303.120000px;}
.x9_c01088{left:325.440000px;}
.x1b_c01088{left:357.840000px;}
.xa_c01088{left:380.160000px;}
.x6_c01088{left:390.960000px;}
.x1c_c01088{left:410.400000px;}
.x18_c01088{left:421.920000px;}
.x7_c01088{left:432.720000px;}
.x1d_c01088{left:454.320000px;}
.x1a_c01088{left:464.400000px;}
.x19_c01088{left:475.200000px;}
.x22_c01088{left:550.080600px;}
.xe_c01088{left:551.520000px;}
.x2c_c01088{left:561.600000px;}
.x2d_c01088{left:582.480000px;}
.x2e_c01088{left:603.360000px;}
.xf_c01088{left:604.800000px;}
.x10_c01088{left:615.600000px;}
.x11_c01088{left:628.560000px;}
.x27_c01088{left:637.200000px;}
.x13_c01088{left:638.640000px;}
.x2b_c01088{left:668.160000px;}
.x28_c01088{left:669.600000px;}
.x14_c01088{left:671.040000px;}
.x1_c01088{left:683.280000px;}
.x12_c01088{left:703.440000px;}
.x2f_c01088{left:709.920000px;}
.x29_c01088{left:712.080000px;}
.x15_c01088{left:713.520000px;}
.x2a_c01088{left:732.240000px;}
.x16_c01088{left:734.400000px;}
@media print{
.v2_c01088{vertical-align:-2.560000pt;}
.v0_c01088{vertical-align:0.000000pt;}
.v1_c01088{vertical-align:2.560000pt;}
.ls0_c01088{letter-spacing:0.000000pt;}
.ws2_c01088{word-spacing:0.000000pt;}
.ws1_c01088{word-spacing:47.800533pt;}
.ws0_c01088{word-spacing:50.698667pt;}
.fsd_c01088{font-size:33.280000pt;}
.fsc_c01088{font-size:35.840000pt;}
.fsf_c01088{font-size:38.400000pt;}
.fs7_c01088{font-size:40.960000pt;}
.fsa_c01088{font-size:43.520000pt;}
.fs3_c01088{font-size:46.080000pt;}
.fs9_c01088{font-size:48.640000pt;}
.fs1_c01088{font-size:51.200000pt;}
.fs8_c01088{font-size:53.760000pt;}
.fs6_c01088{font-size:56.320000pt;}
.fs10_c01088{font-size:58.880000pt;}
.fs0_c01088{font-size:61.440000pt;}
.fs4_c01088{font-size:64.000000pt;}
.fsb_c01088{font-size:66.560000pt;}
.fs5_c01088{font-size:69.120000pt;}
.fse_c01088{font-size:71.680000pt;}
.fs2_c01088{font-size:74.240000pt;}
.y0_c01088{bottom:0.000000pt;}
.y4e_c01088{bottom:55.040000pt;}
.y4d_c01088{bottom:56.960000pt;}
.y6c_c01088{bottom:57.600000pt;}
.y4c_c01088{bottom:92.800000pt;}
.y6b_c01088{bottom:93.440000pt;}
.y6a_c01088{bottom:94.080000pt;}
.y4b_c01088{bottom:95.360000pt;}
.y69_c01088{bottom:96.000000pt;}
.y4a_c01088{bottom:131.200000pt;}
.y68_c01088{bottom:131.840000pt;}
.y67_c01088{bottom:132.480000pt;}
.y48_c01088{bottom:133.120000pt;}
.y49_c01088{bottom:134.400000pt;}
.y47_c01088{bottom:168.960000pt;}
.y66_c01088{bottom:169.600000pt;}
.y46_c01088{bottom:170.880000pt;}
.y64_c01088{bottom:171.520000pt;}
.y65_c01088{bottom:172.800000pt;}
.y45_c01088{bottom:207.360000pt;}
.y63_c01088{bottom:208.000000pt;}
.y44_c01088{bottom:208.640000pt;}
.y62_c01088{bottom:209.280000pt;}
.y43_c01088{bottom:244.480000pt;}
.y61_c01088{bottom:246.400000pt;}
.y42_c01088{bottom:247.040000pt;}
.y60_c01088{bottom:248.320000pt;}
.y41_c01088{bottom:282.880000pt;}
.y40_c01088{bottom:284.160000pt;}
.y5f_c01088{bottom:284.800000pt;}
.y5e_c01088{bottom:285.440000pt;}
.y3f_c01088{bottom:320.640000pt;}
.y5d_c01088{bottom:321.920000pt;}
.y3e_c01088{bottom:322.560000pt;}
.y5c_c01088{bottom:323.840000pt;}
.y3d_c01088{bottom:357.760000pt;}
.y5b_c01088{bottom:359.040000pt;}
.y3c_c01088{bottom:359.680000pt;}
.y5a_c01088{bottom:360.320000pt;}
.y59_c01088{bottom:361.600000pt;}
.y3b_c01088{bottom:395.520000pt;}
.y58_c01088{bottom:397.440000pt;}
.y3a_c01088{bottom:398.080000pt;}
.y57_c01088{bottom:398.720000pt;}
.y39_c01088{bottom:433.920000pt;}
.y56_c01088{bottom:434.560000pt;}
.y38_c01088{bottom:435.200000pt;}
.y55_c01088{bottom:436.480000pt;}
.y54_c01088{bottom:437.760000pt;}
.y36_c01088{bottom:471.040000pt;}
.y35_c01088{bottom:472.960000pt;}
.y30_c01088{bottom:473.600000pt;}
.y53_c01088{bottom:474.240000pt;}
.y37_c01088{bottom:474.880000pt;}
.y33_c01088{bottom:509.440000pt;}
.y32_c01088{bottom:511.360000pt;}
.y2f_c01088{bottom:512.000000pt;}
.y34_c01088{bottom:512.640000pt;}
.y31_c01088{bottom:547.200000pt;}
.y2e_c01088{bottom:549.120000pt;}
.y52_c01088{bottom:549.760000pt;}
.y51_c01088{bottom:551.040000pt;}
.y2d_c01088{bottom:584.320000pt;}
.y50_c01088{bottom:586.240000pt;}
.y2c_c01088{bottom:586.880000pt;}
.y2b_c01088{bottom:623.360000pt;}
.y29_c01088{bottom:624.640000pt;}
.y2a_c01088{bottom:627.200000pt;}
.y28_c01088{bottom:652.800000pt;}
.y26_c01088{bottom:654.720000pt;}
.y27_c01088{bottom:655.360000pt;}
.y23_c01088{bottom:679.680000pt;}
.y24_c01088{bottom:680.960000pt;}
.y21_c01088{bottom:681.600000pt;}
.y4f_c01088{bottom:682.240000pt;}
.y22_c01088{bottom:682.880000pt;}
.y25_c01088{bottom:683.520000pt;}
.y20_c01088{bottom:711.680000pt;}
.y1b_c01088{bottom:718.080000pt;}
.y1f_c01088{bottom:719.360000pt;}
.y1a_c01088{bottom:720.000000pt;}
.y1e_c01088{bottom:720.640000pt;}
.y1c_c01088{bottom:721.280000pt;}
.y1d_c01088{bottom:721.920000pt;}
.y11_c01088{bottom:755.840000pt;}
.ye_c01088{bottom:757.760000pt;}
.yf_c01088{bottom:758.400000pt;}
.y10_c01088{bottom:759.040000pt;}
.y19_c01088{bottom:759.680000pt;}
.y18_c01088{bottom:760.320000pt;}
.yd_c01088{bottom:793.600000pt;}
.ya_c01088{bottom:794.880000pt;}
.y16_c01088{bottom:795.520000pt;}
.y17_c01088{bottom:796.160000pt;}
.yb_c01088{bottom:797.440000pt;}
.yc_c01088{bottom:798.080000pt;}
.y8_c01088{bottom:831.360000pt;}
.y15_c01088{bottom:833.280000pt;}
.y7_c01088{bottom:833.920000pt;}
.y14_c01088{bottom:834.560000pt;}
.y9_c01088{bottom:835.200000pt;}
.y3_c01088{bottom:868.480000pt;}
.y6_c01088{bottom:869.760000pt;}
.y13_c01088{bottom:870.400000pt;}
.y2_c01088{bottom:871.040000pt;}
.y4_c01088{bottom:872.320000pt;}
.y5_c01088{bottom:872.960000pt;}
.y12_c01088{bottom:873.600000pt;}
.y1_c01088{bottom:976.640000pt;}
.hf_c01088{height:29.948750pt;}
.he_c01088{height:32.252500pt;}
.h12_c01088{height:34.556250pt;}
.h9_c01088{height:36.860000pt;}
.hc_c01088{height:39.163750pt;}
.h5_c01088{height:41.467500pt;}
.hb_c01088{height:43.771250pt;}
.h3_c01088{height:46.075000pt;}
.ha_c01088{height:48.378750pt;}
.h11_c01088{height:48.635000pt;}
.h8_c01088{height:50.682500pt;}
.h13_c01088{height:52.986250pt;}
.h2_c01088{height:55.290000pt;}
.h6_c01088{height:57.593750pt;}
.hd_c01088{height:59.897500pt;}
.h7_c01088{height:62.201250pt;}
.h10_c01088{height:64.505000pt;}
.h4_c01088{height:66.808750pt;}
.h0_c01088{height:1011.840000pt;}
.h1_c01088{height:1012.000000pt;}
.w1_c01088{width:696.666667pt;}
.w0_c01088{width:696.960000pt;}
.x0_c01088{left:0.000000pt;}
.x2_c01088{left:71.040000pt;}
.x26_c01088{left:135.680000pt;}
.x3_c01088{left:136.960000pt;}
.x1f_c01088{left:138.240000pt;}
.x1e_c01088{left:165.760000pt;}
.xb_c01088{left:174.720000pt;}
.xd_c01088{left:184.320000pt;}
.x20_c01088{left:202.880000pt;}
.x4_c01088{left:213.120000pt;}
.x8_c01088{left:214.400000pt;}
.x23_c01088{left:220.800000pt;}
.xc_c01088{left:222.720000pt;}
.x21_c01088{left:241.920000pt;}
.x25_c01088{left:250.240000pt;}
.x17_c01088{left:251.520000pt;}
.x5_c01088{left:261.120000pt;}
.x24_c01088{left:269.440000pt;}
.x9_c01088{left:289.280000pt;}
.x1b_c01088{left:318.080000pt;}
.xa_c01088{left:337.920000pt;}
.x6_c01088{left:347.520000pt;}
.x1c_c01088{left:364.800000pt;}
.x18_c01088{left:375.040000pt;}
.x7_c01088{left:384.640000pt;}
.x1d_c01088{left:403.840000pt;}
.x1a_c01088{left:412.800000pt;}
.x19_c01088{left:422.400000pt;}
.x22_c01088{left:488.960533pt;}
.xe_c01088{left:490.240000pt;}
.x2c_c01088{left:499.200000pt;}
.x2d_c01088{left:517.760000pt;}
.x2e_c01088{left:536.320000pt;}
.xf_c01088{left:537.600000pt;}
.x10_c01088{left:547.200000pt;}
.x11_c01088{left:558.720000pt;}
.x27_c01088{left:566.400000pt;}
.x13_c01088{left:567.680000pt;}
.x2b_c01088{left:593.920000pt;}
.x28_c01088{left:595.200000pt;}
.x14_c01088{left:596.480000pt;}
.x1_c01088{left:607.360000pt;}
.x12_c01088{left:625.280000pt;}
.x2f_c01088{left:631.040000pt;}
.x29_c01088{left:632.960000pt;}
.x15_c01088{left:634.240000pt;}
.x2a_c01088{left:650.880000pt;}
.x16_c01088{left:652.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_56e7ca40b2cc7fa16765e124.woff2')format("woff");}.ff1_c01089{font-family:ff1_c01089;line-height:1.109863;font-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_c01089{transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);}
.m7_c01089{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.mc_c01089{transform:matrix(0.176550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176550,0.000000,0.000000,0.250000,0,0);}
.md_c01089{transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);}
.m4e_c01089{transform:matrix(0.192450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192450,0.000000,0.000000,0.250000,0,0);}
.m18_c01089{transform:matrix(0.212325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212325,0.000000,0.000000,0.250000,0,0);}
.ma_c01089{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m24_c01089{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m3e_c01089{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_c01089{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m43_c01089{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m6_c01089{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m47_c01089{transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);}
.m4d_c01089{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01089{transform:matrix(0.247675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247675,0.000000,0.000000,0.250000,0,0);}
.m1_c01089{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m1c_c01089{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01089{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m2_c01089{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);}
.m46_c01089{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);}
.m20_c01089{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m5_c01089{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_c01089{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m3_c01089{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m13_c01089{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_c01089{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01089{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m8_c01089{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m23_c01089{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.me_c01089{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m15_c01089{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m45_c01089{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m22_c01089{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m25_c01089{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m4_c01089{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m21_c01089{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m16_c01089{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m19_c01089{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m12_c01089{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01089{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01089{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m29_c01089{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01089{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mf_c01089{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01089{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);}
.m41_c01089{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);}
.m36_c01089{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);}
.m2d_c01089{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01089{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);}
.m37_c01089{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m42_c01089{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m26_c01089{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01089{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01089{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m28_c01089{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);}
.m34_c01089{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);}
.m0_c01089{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m10_c01089{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);}
.m3a_c01089{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01089{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m39_c01089{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m31_c01089{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);}
.m4b_c01089{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01089{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m33_c01089{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m40_c01089{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);}
.m35_c01089{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);}
.mb_c01089{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m49_c01089{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01089{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m32_c01089{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);}
.m44_c01089{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);}
.m48_c01089{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01089{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);}
.m38_c01089{transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01089{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01089{transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);}
.m17_c01089{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m30_c01089{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.v1_c01089{vertical-align:-2.880000px;}
.v0_c01089{vertical-align:0.000000px;}
.ls0_c01089{letter-spacing:0.000000px;}
.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:-1.026240px;}
.ws1_c01089{word-spacing:0.000000px;}
.fc0_c01089{color:transparent;}
.fse_c01089{font-size:14.400000px;}
.fs12_c01089{font-size:25.920000px;}
.fs11_c01089{font-size:28.800000px;}
.fs13_c01089{font-size:34.560000px;}
.fs9_c01089{font-size:37.440000px;}
.fsd_c01089{font-size:40.320000px;}
.fsf_c01089{font-size:43.200000px;}
.fsc_c01089{font-size:46.080000px;}
.fs5_c01089{font-size:48.960000px;}
.fs1_c01089{font-size:51.840000px;}
.fs6_c01089{font-size:54.720000px;}
.fs4_c01089{font-size:57.600000px;}
.fs2_c01089{font-size:60.480000px;}
.fs3_c01089{font-size:63.360000px;}
.fs7_c01089{font-size:69.120000px;}
.fs0_c01089{font-size:72.000000px;}
.fsb_c01089{font-size:74.880000px;}
.fs8_c01089{font-size:77.760000px;}
.fsa_c01089{font-size:80.640000px;}
.fs10_c01089{font-size:95.040000px;}
.y0_c01089{bottom:0.000000px;}
.y8d_c01089{bottom:20.880000px;}
.y84_c01089{bottom:21.600000px;}
.y8e_c01089{bottom:22.320000px;}
.y8c_c01089{bottom:23.040000px;}
.y85_c01089{bottom:23.760000px;}
.y8a_c01089{bottom:61.920000px;}
.y8b_c01089{bottom:62.640000px;}
.y83_c01089{bottom:63.360000px;}
.y82_c01089{bottom:64.800000px;}
.y88_c01089{bottom:65.520000px;}
.y89_c01089{bottom:66.240000px;}
.y87_c01089{bottom:105.120000px;}
.y86_c01089{bottom:105.840000px;}
.y81_c01089{bottom:106.560000px;}
.y80_c01089{bottom:107.280000px;}
.y7e_c01089{bottom:147.600000px;}
.y7f_c01089{bottom:151.200000px;}
.y7c_c01089{bottom:179.280000px;}
.y79_c01089{bottom:180.000000px;}
.y7a_c01089{bottom:180.720000px;}
.y7d_c01089{bottom:181.440000px;}
.y78_c01089{bottom:182.160000px;}
.y7b_c01089{bottom:182.880000px;}
.y76_c01089{bottom:221.760000px;}
.y77_c01089{bottom:222.480000px;}
.y71_c01089{bottom:223.200000px;}
.y75_c01089{bottom:223.920000px;}
.y72_c01089{bottom:225.360000px;}
.y70_c01089{bottom:226.080000px;}
.y74_c01089{bottom:257.760000px;}
.y73_c01089{bottom:264.240000px;}
.y6c_c01089{bottom:265.680000px;}
.y6e_c01089{bottom:266.400000px;}
.y6f_c01089{bottom:267.120000px;}
.y6d_c01089{bottom:269.280000px;}
.y5d_c01089{bottom:306.720000px;}
.y5c_c01089{bottom:308.160000px;}
.y61_c01089{bottom:308.880000px;}
.y5e_c01089{bottom:309.600000px;}
.y6b_c01089{bottom:310.320000px;}
.y5f_c01089{bottom:311.040000px;}
.y60_c01089{bottom:311.760000px;}
.y58_c01089{bottom:349.920000px;}
.y59_c01089{bottom:350.640000px;}
.y56_c01089{bottom:351.360000px;}
.y5b_c01089{bottom:352.080000px;}
.y57_c01089{bottom:352.800000px;}
.y5a_c01089{bottom:354.240000px;}
.y52_c01089{bottom:392.400000px;}
.y53_c01089{bottom:393.120000px;}
.y54_c01089{bottom:393.840000px;}
.y51_c01089{bottom:394.560000px;}
.y55_c01089{bottom:396.000000px;}
.y6a_c01089{bottom:396.720000px;}
.y4e_c01089{bottom:434.880000px;}
.y4d_c01089{bottom:437.040000px;}
.y4f_c01089{bottom:438.480000px;}
.y50_c01089{bottom:439.200000px;}
.y69_c01089{bottom:439.920000px;}
.y4c_c01089{bottom:470.880000px;}
.y48_c01089{bottom:477.360000px;}
.y4a_c01089{bottom:478.800000px;}
.y49_c01089{bottom:479.520000px;}
.y45_c01089{bottom:480.240000px;}
.y47_c01089{bottom:480.960000px;}
.y4b_c01089{bottom:481.680000px;}
.y68_c01089{bottom:482.400000px;}
.y46_c01089{bottom:484.560000px;}
.y40_c01089{bottom:519.840000px;}
.y42_c01089{bottom:522.000000px;}
.y3f_c01089{bottom:522.720000px;}
.y41_c01089{bottom:524.160000px;}
.y43_c01089{bottom:524.880000px;}
.y44_c01089{bottom:525.600000px;}
.y3a_c01089{bottom:563.040000px;}
.y3b_c01089{bottom:564.480000px;}
.y39_c01089{bottom:565.200000px;}
.y3e_c01089{bottom:565.920000px;}
.y3c_c01089{bottom:566.640000px;}
.y3d_c01089{bottom:568.080000px;}
.y36_c01089{bottom:605.520000px;}
.y35_c01089{bottom:607.680000px;}
.y38_c01089{bottom:608.400000px;}
.y67_c01089{bottom:609.120000px;}
.y66_c01089{bottom:609.840000px;}
.y37_c01089{bottom:610.560000px;}
.y32_c01089{bottom:647.280000px;}
.y31_c01089{bottom:650.160000px;}
.y34_c01089{bottom:650.880000px;}
.y65_c01089{bottom:652.320000px;}
.y33_c01089{bottom:653.040000px;}
.y2e_c01089{bottom:689.760000px;}
.y2d_c01089{bottom:692.640000px;}
.y63_c01089{bottom:693.360000px;}
.y64_c01089{bottom:694.080000px;}
.y30_c01089{bottom:694.800000px;}
.y2f_c01089{bottom:695.520000px;}
.y2a_c01089{bottom:732.960000px;}
.y29_c01089{bottom:735.120000px;}
.y2c_c01089{bottom:735.840000px;}
.y2b_c01089{bottom:737.280000px;}
.y62_c01089{bottom:738.000000px;}
.y28_c01089{bottom:774.720000px;}
.y1b_c01089{bottom:777.600000px;}
.y1a_c01089{bottom:778.320000px;}
.y1c_c01089{bottom:779.040000px;}
.y19_c01089{bottom:779.760000px;}
.y27_c01089{bottom:817.920000px;}
.y26_c01089{bottom:819.360000px;}
.y18_c01089{bottom:820.080000px;}
.y17_c01089{bottom:820.800000px;}
.y16_c01089{bottom:822.240000px;}
.y25_c01089{bottom:858.960000px;}
.y13_c01089{bottom:861.840000px;}
.y24_c01089{bottom:862.560000px;}
.y14_c01089{bottom:863.280000px;}
.y12_c01089{bottom:864.720000px;}
.y15_c01089{bottom:865.440000px;}
.y23_c01089{bottom:902.160000px;}
.y22_c01089{bottom:904.320000px;}
.y11_c01089{bottom:905.760000px;}
.y10_c01089{bottom:906.480000px;}
.yf_c01089{bottom:907.920000px;}
.y21_c01089{bottom:945.360000px;}
.yc_c01089{bottom:947.520000px;}
.yb_c01089{bottom:948.240000px;}
.yd_c01089{bottom:948.960000px;}
.ya_c01089{bottom:950.400000px;}
.ye_c01089{bottom:951.120000px;}
.y20_c01089{bottom:987.840000px;}
.y1f_c01089{bottom:990.000000px;}
.y7_c01089{bottom:991.440000px;}
.y8_c01089{bottom:992.160000px;}
.y6_c01089{bottom:993.600000px;}
.y9_c01089{bottom:994.320000px;}
.y1e_c01089{bottom:1031.760000px;}
.y1d_c01089{bottom:1033.920000px;}
.y3_c01089{bottom:1034.640000px;}
.y4_c01089{bottom:1035.360000px;}
.y2_c01089{bottom:1036.080000px;}
.y5_c01089{bottom:1036.800000px;}
.y1_c01089{bottom:1093.680000px;}
.h10_c01089{height:12.958594px;}
.h14_c01089{height:23.325469px;}
.h13_c01089{height:25.917187px;}
.h15_c01089{height:31.100625px;}
.hb_c01089{height:33.692344px;}
.hf_c01089{height:36.284062px;}
.h11_c01089{height:38.875781px;}
.he_c01089{height:41.467500px;}
.h7_c01089{height:44.059219px;}
.h3_c01089{height:46.650937px;}
.h8_c01089{height:49.242656px;}
.h6_c01089{height:51.834375px;}
.h4_c01089{height:54.426094px;}
.h5_c01089{height:57.017812px;}
.h9_c01089{height:62.201250px;}
.h2_c01089{height:64.792969px;}
.hd_c01089{height:67.384687px;}
.ha_c01089{height:69.976406px;}
.hc_c01089{height:72.568125px;}
.h12_c01089{height:85.526719px;}
.h0_c01089{height:1137.600000px;}
.h1_c01089{height:1137.750000px;}
.w1_c01089{width:783.000000px;}
.w0_c01089{width:783.360000px;}
.x0_c01089{left:0.000000px;}
.xf_c01089{left:77.760000px;}
.xb_c01089{left:79.200000px;}
.xd_c01089{left:123.120000px;}
.x18_c01089{left:131.760000px;}
.xe_c01089{left:151.920000px;}
.xc_c01089{left:153.360000px;}
.x2d_c01089{left:154.800000px;}
.x19_c01089{left:186.480000px;}
.x2e_c01089{left:205.920000px;}
.x1a_c01089{left:239.040000px;}
.x21_c01089{left:240.480000px;}
.x22_c01089{left:250.560000px;}
.x10_c01089{left:261.360000px;}
.x30_c01089{left:281.520000px;}
.x11_c01089{left:302.400000px;}
.x14_c01089{left:334.800000px;}
.x29_c01089{left:344.880000px;}
.x12_c01089{left:346.320000px;}
.x1b_c01089{left:356.400000px;}
.x15_c01089{left:378.000000px;}
.x13_c01089{left:388.080000px;}
.x1c_c01089{left:399.600000px;}
.x2b_c01089{left:409.680000px;}
.x31_c01089{left:421.200000px;}
.x16_c01089{left:432.000000px;}
.x20_c01089{left:440.640000px;}
.x1d_c01089{left:443.520000px;}
.x32_c01089{left:453.600000px;}
.x2c_c01089{left:463.680000px;}
.x17_c01089{left:475.200000px;}
.x1e_c01089{left:483.840000px;}
.x2a_c01089{left:511.920000px;}
.x1f_c01089{left:522.000000px;}
.x2_c01089{left:562.320000px;}
.x9_c01089{left:581.760000px;}
.x3_c01089{left:583.200000px;}
.xa_c01089{left:603.360000px;}
.x23_c01089{left:635.040000px;}
.x25_c01089{left:636.480000px;}
.x4_c01089{left:637.920000px;}
.x28_c01089{left:667.440000px;}
.x1_c01089{left:668.880000px;}
.x5_c01089{left:670.320000px;}
.x2f_c01089{left:702.000000px;}
.x26_c01089{left:709.920000px;}
.x8_c01089{left:711.360000px;}
.x6_c01089{left:712.800000px;}
.x27_c01089{left:730.800000px;}
.x24_c01089{left:732.240000px;}
.x7_c01089{left:733.680000px;}
@media print{
.v1_c01089{vertical-align:-2.560000pt;}
.v0_c01089{vertical-align:0.000000pt;}
.ls0_c01089{letter-spacing:0.000000pt;}
.ws0_c01089{word-spacing:-0.912213pt;}
.ws1_c01089{word-spacing:0.000000pt;}
.fse_c01089{font-size:12.800000pt;}
.fs12_c01089{font-size:23.040000pt;}
.fs11_c01089{font-size:25.600000pt;}
.fs13_c01089{font-size:30.720000pt;}
.fs9_c01089{font-size:33.280000pt;}
.fsd_c01089{font-size:35.840000pt;}
.fsf_c01089{font-size:38.400000pt;}
.fsc_c01089{font-size:40.960000pt;}
.fs5_c01089{font-size:43.520000pt;}
.fs1_c01089{font-size:46.080000pt;}
.fs6_c01089{font-size:48.640000pt;}
.fs4_c01089{font-size:51.200000pt;}
.fs2_c01089{font-size:53.760000pt;}
.fs3_c01089{font-size:56.320000pt;}
.fs7_c01089{font-size:61.440000pt;}
.fs0_c01089{font-size:64.000000pt;}
.fsb_c01089{font-size:66.560000pt;}
.fs8_c01089{font-size:69.120000pt;}
.fsa_c01089{font-size:71.680000pt;}
.fs10_c01089{font-size:84.480000pt;}
.y0_c01089{bottom:0.000000pt;}
.y8d_c01089{bottom:18.560000pt;}
.y84_c01089{bottom:19.200000pt;}
.y8e_c01089{bottom:19.840000pt;}
.y8c_c01089{bottom:20.480000pt;}
.y85_c01089{bottom:21.120000pt;}
.y8a_c01089{bottom:55.040000pt;}
.y8b_c01089{bottom:55.680000pt;}
.y83_c01089{bottom:56.320000pt;}
.y82_c01089{bottom:57.600000pt;}
.y88_c01089{bottom:58.240000pt;}
.y89_c01089{bottom:58.880000pt;}
.y87_c01089{bottom:93.440000pt;}
.y86_c01089{bottom:94.080000pt;}
.y81_c01089{bottom:94.720000pt;}
.y80_c01089{bottom:95.360000pt;}
.y7e_c01089{bottom:131.200000pt;}
.y7f_c01089{bottom:134.400000pt;}
.y7c_c01089{bottom:159.360000pt;}
.y79_c01089{bottom:160.000000pt;}
.y7a_c01089{bottom:160.640000pt;}
.y7d_c01089{bottom:161.280000pt;}
.y78_c01089{bottom:161.920000pt;}
.y7b_c01089{bottom:162.560000pt;}
.y76_c01089{bottom:197.120000pt;}
.y77_c01089{bottom:197.760000pt;}
.y71_c01089{bottom:198.400000pt;}
.y75_c01089{bottom:199.040000pt;}
.y72_c01089{bottom:200.320000pt;}
.y70_c01089{bottom:200.960000pt;}
.y74_c01089{bottom:229.120000pt;}
.y73_c01089{bottom:234.880000pt;}
.y6c_c01089{bottom:236.160000pt;}
.y6e_c01089{bottom:236.800000pt;}
.y6f_c01089{bottom:237.440000pt;}
.y6d_c01089{bottom:239.360000pt;}
.y5d_c01089{bottom:272.640000pt;}
.y5c_c01089{bottom:273.920000pt;}
.y61_c01089{bottom:274.560000pt;}
.y5e_c01089{bottom:275.200000pt;}
.y6b_c01089{bottom:275.840000pt;}
.y5f_c01089{bottom:276.480000pt;}
.y60_c01089{bottom:277.120000pt;}
.y58_c01089{bottom:311.040000pt;}
.y59_c01089{bottom:311.680000pt;}
.y56_c01089{bottom:312.320000pt;}
.y5b_c01089{bottom:312.960000pt;}
.y57_c01089{bottom:313.600000pt;}
.y5a_c01089{bottom:314.880000pt;}
.y52_c01089{bottom:348.800000pt;}
.y53_c01089{bottom:349.440000pt;}
.y54_c01089{bottom:350.080000pt;}
.y51_c01089{bottom:350.720000pt;}
.y55_c01089{bottom:352.000000pt;}
.y6a_c01089{bottom:352.640000pt;}
.y4e_c01089{bottom:386.560000pt;}
.y4d_c01089{bottom:388.480000pt;}
.y4f_c01089{bottom:389.760000pt;}
.y50_c01089{bottom:390.400000pt;}
.y69_c01089{bottom:391.040000pt;}
.y4c_c01089{bottom:418.560000pt;}
.y48_c01089{bottom:424.320000pt;}
.y4a_c01089{bottom:425.600000pt;}
.y49_c01089{bottom:426.240000pt;}
.y45_c01089{bottom:426.880000pt;}
.y47_c01089{bottom:427.520000pt;}
.y4b_c01089{bottom:428.160000pt;}
.y68_c01089{bottom:428.800000pt;}
.y46_c01089{bottom:430.720000pt;}
.y40_c01089{bottom:462.080000pt;}
.y42_c01089{bottom:464.000000pt;}
.y3f_c01089{bottom:464.640000pt;}
.y41_c01089{bottom:465.920000pt;}
.y43_c01089{bottom:466.560000pt;}
.y44_c01089{bottom:467.200000pt;}
.y3a_c01089{bottom:500.480000pt;}
.y3b_c01089{bottom:501.760000pt;}
.y39_c01089{bottom:502.400000pt;}
.y3e_c01089{bottom:503.040000pt;}
.y3c_c01089{bottom:503.680000pt;}
.y3d_c01089{bottom:504.960000pt;}
.y36_c01089{bottom:538.240000pt;}
.y35_c01089{bottom:540.160000pt;}
.y38_c01089{bottom:540.800000pt;}
.y67_c01089{bottom:541.440000pt;}
.y66_c01089{bottom:542.080000pt;}
.y37_c01089{bottom:542.720000pt;}
.y32_c01089{bottom:575.360000pt;}
.y31_c01089{bottom:577.920000pt;}
.y34_c01089{bottom:578.560000pt;}
.y65_c01089{bottom:579.840000pt;}
.y33_c01089{bottom:580.480000pt;}
.y2e_c01089{bottom:613.120000pt;}
.y2d_c01089{bottom:615.680000pt;}
.y63_c01089{bottom:616.320000pt;}
.y64_c01089{bottom:616.960000pt;}
.y30_c01089{bottom:617.600000pt;}
.y2f_c01089{bottom:618.240000pt;}
.y2a_c01089{bottom:651.520000pt;}
.y29_c01089{bottom:653.440000pt;}
.y2c_c01089{bottom:654.080000pt;}
.y2b_c01089{bottom:655.360000pt;}
.y62_c01089{bottom:656.000000pt;}
.y28_c01089{bottom:688.640000pt;}
.y1b_c01089{bottom:691.200000pt;}
.y1a_c01089{bottom:691.840000pt;}
.y1c_c01089{bottom:692.480000pt;}
.y19_c01089{bottom:693.120000pt;}
.y27_c01089{bottom:727.040000pt;}
.y26_c01089{bottom:728.320000pt;}
.y18_c01089{bottom:728.960000pt;}
.y17_c01089{bottom:729.600000pt;}
.y16_c01089{bottom:730.880000pt;}
.y25_c01089{bottom:763.520000pt;}
.y13_c01089{bottom:766.080000pt;}
.y24_c01089{bottom:766.720000pt;}
.y14_c01089{bottom:767.360000pt;}
.y12_c01089{bottom:768.640000pt;}
.y15_c01089{bottom:769.280000pt;}
.y23_c01089{bottom:801.920000pt;}
.y22_c01089{bottom:803.840000pt;}
.y11_c01089{bottom:805.120000pt;}
.y10_c01089{bottom:805.760000pt;}
.yf_c01089{bottom:807.040000pt;}
.y21_c01089{bottom:840.320000pt;}
.yc_c01089{bottom:842.240000pt;}
.yb_c01089{bottom:842.880000pt;}
.yd_c01089{bottom:843.520000pt;}
.ya_c01089{bottom:844.800000pt;}
.ye_c01089{bottom:845.440000pt;}
.y20_c01089{bottom:878.080000pt;}
.y1f_c01089{bottom:880.000000pt;}
.y7_c01089{bottom:881.280000pt;}
.y8_c01089{bottom:881.920000pt;}
.y6_c01089{bottom:883.200000pt;}
.y9_c01089{bottom:883.840000pt;}
.y1e_c01089{bottom:917.120000pt;}
.y1d_c01089{bottom:919.040000pt;}
.y3_c01089{bottom:919.680000pt;}
.y4_c01089{bottom:920.320000pt;}
.y2_c01089{bottom:920.960000pt;}
.y5_c01089{bottom:921.600000pt;}
.y1_c01089{bottom:972.160000pt;}
.h10_c01089{height:11.518750pt;}
.h14_c01089{height:20.733750pt;}
.h13_c01089{height:23.037500pt;}
.h15_c01089{height:27.645000pt;}
.hb_c01089{height:29.948750pt;}
.hf_c01089{height:32.252500pt;}
.h11_c01089{height:34.556250pt;}
.he_c01089{height:36.860000pt;}
.h7_c01089{height:39.163750pt;}
.h3_c01089{height:41.467500pt;}
.h8_c01089{height:43.771250pt;}
.h6_c01089{height:46.075000pt;}
.h4_c01089{height:48.378750pt;}
.h5_c01089{height:50.682500pt;}
.h9_c01089{height:55.290000pt;}
.h2_c01089{height:57.593750pt;}
.hd_c01089{height:59.897500pt;}
.ha_c01089{height:62.201250pt;}
.hc_c01089{height:64.505000pt;}
.h12_c01089{height:76.023750pt;}
.h0_c01089{height:1011.200000pt;}
.h1_c01089{height:1011.333333pt;}
.w1_c01089{width:696.000000pt;}
.w0_c01089{width:696.320000pt;}
.x0_c01089{left:0.000000pt;}
.xf_c01089{left:69.120000pt;}
.xb_c01089{left:70.400000pt;}
.xd_c01089{left:109.440000pt;}
.x18_c01089{left:117.120000pt;}
.xe_c01089{left:135.040000pt;}
.xc_c01089{left:136.320000pt;}
.x2d_c01089{left:137.600000pt;}
.x19_c01089{left:165.760000pt;}
.x2e_c01089{left:183.040000pt;}
.x1a_c01089{left:212.480000pt;}
.x21_c01089{left:213.760000pt;}
.x22_c01089{left:222.720000pt;}
.x10_c01089{left:232.320000pt;}
.x30_c01089{left:250.240000pt;}
.x11_c01089{left:268.800000pt;}
.x14_c01089{left:297.600000pt;}
.x29_c01089{left:306.560000pt;}
.x12_c01089{left:307.840000pt;}
.x1b_c01089{left:316.800000pt;}
.x15_c01089{left:336.000000pt;}
.x13_c01089{left:344.960000pt;}
.x1c_c01089{left:355.200000pt;}
.x2b_c01089{left:364.160000pt;}
.x31_c01089{left:374.400000pt;}
.x16_c01089{left:384.000000pt;}
.x20_c01089{left:391.680000pt;}
.x1d_c01089{left:394.240000pt;}
.x32_c01089{left:403.200000pt;}
.x2c_c01089{left:412.160000pt;}
.x17_c01089{left:422.400000pt;}
.x1e_c01089{left:430.080000pt;}
.x2a_c01089{left:455.040000pt;}
.x1f_c01089{left:464.000000pt;}
.x2_c01089{left:499.840000pt;}
.x9_c01089{left:517.120000pt;}
.x3_c01089{left:518.400000pt;}
.xa_c01089{left:536.320000pt;}
.x23_c01089{left:564.480000pt;}
.x25_c01089{left:565.760000pt;}
.x4_c01089{left:567.040000pt;}
.x28_c01089{left:593.280000pt;}
.x1_c01089{left:594.560000pt;}
.x5_c01089{left:595.840000pt;}
.x2f_c01089{left:624.000000pt;}
.x26_c01089{left:631.040000pt;}
.x8_c01089{left:632.320000pt;}
.x6_c01089{left:633.600000pt;}
.x27_c01089{left:649.600000pt;}
.x24_c01089{left:650.880000pt;}
.x7_c01089{left:652.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_41a419dd1a815a735b811391.woff2')format("woff");}.ff1_c01090{font-family:ff1_c01090;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m47_c01090{transform:matrix(0.157200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157200,0.000000,0.000000,0.250000,0,0);}
.m3e_c01090{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m48_c01090{transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);}
.m30_c01090{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m4c_c01090{transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);}
.m2a_c01090{transform:matrix(0.207225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207225,0.000000,0.000000,0.250000,0,0);}
.m43_c01090{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01090{transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);}
.m33_c01090{transform:matrix(0.220950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220950,0.000000,0.000000,0.250000,0,0);}
.m18_c01090{transform:matrix(0.224425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224425,0.000000,0.000000,0.250000,0,0);}
.m2e_c01090{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);}
.m1c_c01090{transform:matrix(0.227300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227300,0.000000,0.000000,0.250000,0,0);}
.m25_c01090{transform:matrix(0.229300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229300,0.000000,0.000000,0.250000,0,0);}
.m23_c01090{transform:matrix(0.230150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230150,0.000000,0.000000,0.250000,0,0);}
.m3a_c01090{transform:matrix(0.230325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230325,0.000000,0.000000,0.250000,0,0);}
.m1b_c01090{transform:matrix(0.232125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232125,0.000000,0.000000,0.250000,0,0);}
.m55_c01090{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m2c_c01090{transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);}
.m40_c01090{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m2_c01090{transform:matrix(0.238350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238350,0.000000,0.000000,0.250000,0,0);}
.m32_c01090{transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);}
.mc_c01090{transform:matrix(0.240175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240175,0.000000,0.000000,0.250000,0,0);}
.m37_c01090{transform:matrix(0.242175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242175,0.000000,0.000000,0.250000,0,0);}
.m46_c01090{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m57_c01090{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m54_c01090{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m4f_c01090{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m26_c01090{transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);}
.m16_c01090{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01090{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m19_c01090{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_c01090{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m44_c01090{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m13_c01090{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);}
.m21_c01090{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);}
.m3b_c01090{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_c01090{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m12_c01090{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);}
.m3d_c01090{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m6_c01090{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mf_c01090{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m20_c01090{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);}
.m38_c01090{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01090{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);}
.m29_c01090{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m14_c01090{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01090{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01090{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.ma_c01090{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01090{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m10_c01090{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01090{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m42_c01090{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m4_c01090{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01090{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m9_c01090{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m27_c01090{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1_c01090{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);}
.m45_c01090{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01090{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);}
.m41_c01090{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m15_c01090{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);}
.m34_c01090{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m0_c01090{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);}
.m49_c01090{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);}
.m22_c01090{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01090{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m52_c01090{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);}
.m35_c01090{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);}
.m39_c01090{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.me_c01090{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);}
.m31_c01090{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);}
.m5_c01090{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.md_c01090{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);}
.m51_c01090{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);}
.m4a_c01090{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m36_c01090{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m59_c01090{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);}
.m58_c01090{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01090{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m53_c01090{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);}
.m3_c01090{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m24_c01090{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m50_c01090{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01090{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m28_c01090{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m11_c01090{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m17_c01090{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.m56_c01090{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.mb_c01090{transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);}
.v0_c01090{vertical-align:0.000000px;}
.v1_c01090{vertical-align:2.880000px;}
.ls0_c01090{letter-spacing:0.000000px;}
.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;}
}
.ws2_c01090{word-spacing:0.000000px;}
.ws1_c01090{word-spacing:9.212400px;}
.ws0_c01090{word-spacing:19.728114px;}
.fc0_c01090{color:transparent;}
.fs9_c01090{font-size:34.560000px;}
.fse_c01090{font-size:40.320000px;}
.fsd_c01090{font-size:43.200000px;}
.fsb_c01090{font-size:48.960000px;}
.fs3_c01090{font-size:51.840000px;}
.fs4_c01090{font-size:54.720000px;}
.fs6_c01090{font-size:57.600000px;}
.fs7_c01090{font-size:60.480000px;}
.fsa_c01090{font-size:63.360000px;}
.fs1_c01090{font-size:66.240000px;}
.fs8_c01090{font-size:69.120000px;}
.fs0_c01090{font-size:72.000000px;}
.fs5_c01090{font-size:74.880000px;}
.fs2_c01090{font-size:77.760000px;}
.fsc_c01090{font-size:103.680000px;}
.y0_c01090{bottom:0.000000px;}
.y77_c01090{bottom:71.280000px;}
.y75_c01090{bottom:72.720000px;}
.y7a_c01090{bottom:73.440000px;}
.y79_c01090{bottom:74.160000px;}
.y76_c01090{bottom:74.880000px;}
.y78_c01090{bottom:75.600000px;}
.y6f_c01090{bottom:114.480000px;}
.y6e_c01090{bottom:115.200000px;}
.y74_c01090{bottom:115.920000px;}
.y73_c01090{bottom:116.640000px;}
.y6d_c01090{bottom:118.080000px;}
.y6c_c01090{bottom:156.960000px;}
.y6a_c01090{bottom:157.680000px;}
.y72_c01090{bottom:158.400000px;}
.y71_c01090{bottom:159.120000px;}
.y6b_c01090{bottom:159.840000px;}
.y69_c01090{bottom:160.560000px;}
.y68_c01090{bottom:200.160000px;}
.y67_c01090{bottom:200.880000px;}
.y66_c01090{bottom:203.040000px;}
.y64_c01090{bottom:203.760000px;}
.y65_c01090{bottom:204.480000px;}
.y62_c01090{bottom:232.560000px;}
.y70_c01090{bottom:233.280000px;}
.y61_c01090{bottom:234.720000px;}
.y63_c01090{bottom:235.440000px;}
.y5f_c01090{bottom:275.040000px;}
.y60_c01090{bottom:277.920000px;}
.y5e_c01090{bottom:278.640000px;}
.y5a_c01090{bottom:306.000000px;}
.y5b_c01090{bottom:308.160000px;}
.y59_c01090{bottom:308.880000px;}
.y5d_c01090{bottom:309.600000px;}
.y5c_c01090{bottom:310.320000px;}
.y42_c01090{bottom:348.480000px;}
.y44_c01090{bottom:349.920000px;}
.y41_c01090{bottom:351.360000px;}
.y58_c01090{bottom:352.080000px;}
.y43_c01090{bottom:352.800000px;}
.y3e_c01090{bottom:391.680000px;}
.y3d_c01090{bottom:393.840000px;}
.y57_c01090{bottom:394.560000px;}
.y40_c01090{bottom:395.280000px;}
.y3f_c01090{bottom:396.000000px;}
.y3b_c01090{bottom:434.160000px;}
.y3c_c01090{bottom:434.880000px;}
.y56_c01090{bottom:436.320000px;}
.y3a_c01090{bottom:437.040000px;}
.y38_c01090{bottom:476.640000px;}
.y39_c01090{bottom:477.360000px;}
.y55_c01090{bottom:478.080000px;}
.y37_c01090{bottom:479.520000px;}
.y36_c01090{bottom:519.120000px;}
.y53_c01090{bottom:520.560000px;}
.y54_c01090{bottom:521.280000px;}
.y35_c01090{bottom:522.000000px;}
.y30_c01090{bottom:562.320000px;}
.y33_c01090{bottom:563.040000px;}
.y34_c01090{bottom:563.760000px;}
.y2f_c01090{bottom:564.480000px;}
.y31_c01090{bottom:565.200000px;}
.y32_c01090{bottom:565.920000px;}
.y2d_c01090{bottom:597.600000px;}
.y29_c01090{bottom:604.080000px;}
.y2c_c01090{bottom:605.520000px;}
.y2e_c01090{bottom:606.240000px;}
.y28_c01090{bottom:606.960000px;}
.y2a_c01090{bottom:607.680000px;}
.y2b_c01090{bottom:608.400000px;}
.y27_c01090{bottom:647.280000px;}
.y51_c01090{bottom:648.720000px;}
.y26_c01090{bottom:649.440000px;}
.y52_c01090{bottom:650.160000px;}
.y23_c01090{bottom:689.040000px;}
.y25_c01090{bottom:689.760000px;}
.y50_c01090{bottom:691.920000px;}
.y22_c01090{bottom:692.640000px;}
.y24_c01090{bottom:693.360000px;}
.y20_c01090{bottom:732.240000px;}
.y21_c01090{bottom:733.680000px;}
.y1f_c01090{bottom:734.400000px;}
.y4f_c01090{bottom:735.840000px;}
.y1c_c01090{bottom:774.720000px;}
.y1e_c01090{bottom:776.880000px;}
.y1b_c01090{bottom:777.600000px;}
.y4e_c01090{bottom:779.040000px;}
.y1d_c01090{bottom:779.760000px;}
.y19_c01090{bottom:817.920000px;}
.y1a_c01090{bottom:818.640000px;}
.y18_c01090{bottom:820.080000px;}
.y4c_c01090{bottom:820.800000px;}
.y4b_c01090{bottom:821.520000px;}
.y4d_c01090{bottom:822.240000px;}
.y15_c01090{bottom:859.680000px;}
.y17_c01090{bottom:861.840000px;}
.y4a_c01090{bottom:862.560000px;}
.y13_c01090{bottom:863.280000px;}
.y14_c01090{bottom:864.000000px;}
.y16_c01090{bottom:865.440000px;}
.y11_c01090{bottom:903.600000px;}
.y12_c01090{bottom:904.320000px;}
.y10_c01090{bottom:905.760000px;}
.y48_c01090{bottom:906.480000px;}
.y49_c01090{bottom:907.200000px;}
.yd_c01090{bottom:946.080000px;}
.yf_c01090{bottom:947.520000px;}
.ye_c01090{bottom:948.240000px;}
.yc_c01090{bottom:948.960000px;}
.y47_c01090{bottom:949.680000px;}
.ya_c01090{bottom:988.560000px;}
.y8_c01090{bottom:990.000000px;}
.y9_c01090{bottom:990.720000px;}
.y45_c01090{bottom:991.440000px;}
.y46_c01090{bottom:992.160000px;}
.yb_c01090{bottom:992.880000px;}
.y3_c01090{bottom:1030.320000px;}
.y2_c01090{bottom:1033.200000px;}
.y6_c01090{bottom:1033.920000px;}
.y7_c01090{bottom:1034.640000px;}
.y4_c01090{bottom:1035.360000px;}
.y5_c01090{bottom:1036.080000px;}
.y1_c01090{bottom:1093.680000px;}
.hb_c01090{height:31.100625px;}
.h11_c01090{height:36.284062px;}
.hf_c01090{height:38.875781px;}
.hd_c01090{height:44.059219px;}
.h5_c01090{height:46.650937px;}
.h6_c01090{height:49.242656px;}
.h8_c01090{height:51.834375px;}
.h9_c01090{height:54.426094px;}
.hc_c01090{height:57.017812px;}
.h10_c01090{height:57.306094px;}
.h3_c01090{height:59.609531px;}
.ha_c01090{height:62.201250px;}
.h2_c01090{height:64.792969px;}
.h7_c01090{height:67.384687px;}
.h4_c01090{height:69.976406px;}
.he_c01090{height:93.301875px;}
.h1_c01090{height:1131.750000px;}
.h0_c01090{height:1131.840000px;}
.w0_c01090{width:774.720000px;}
.w1_c01090{width:774.750000px;}
.x0_c01090{left:0.000000px;}
.x2_c01090{left:69.840000px;}
.xd_c01090{left:113.040000px;}
.xf_c01090{left:114.480000px;}
.x3_c01090{left:143.280000px;}
.x1e_c01090{left:144.720000px;}
.x1f_c01090{left:196.560000px;}
.x1c_c01090{left:198.720000px;}
.x11_c01090{left:229.680000px;}
.x20_c01090{left:241.200000px;}
.x4_c01090{left:272.880000px;}
.x12_c01090{left:283.680000px;}
.x10_c01090{left:294.480000px;}
.x21_c01090{left:324.720000px;}
.x5_c01090{left:326.160000px;}
.x15_c01090{left:327.600000px;}
.x14_c01090{left:358.560000px;}
.xe_c01090{left:368.640000px;}
.x1d_c01090{left:380.160000px;}
.x6_c01090{left:410.400000px;}
.x18_c01090{left:411.840000px;}
.x13_c01090{left:444.240000px;}
.x7_c01090{left:455.040000px;}
.x25_c01090{left:498.240000px;}
.x8_c01090{left:503.280000px;}
.x1a_c01090{left:551.520000px;}
.x9_c01090{left:552.960000px;}
.x17_c01090{left:572.400000px;}
.xa_c01090{left:574.560000px;}
.x1b_c01090{left:593.280000px;}
.xb_c01090{left:594.720000px;}
.x22_c01090{left:627.840000px;}
.x19_c01090{left:650.880000px;}
.x23_c01090{left:660.240000px;}
.x1_c01090{left:670.320000px;}
.x16_c01090{left:702.000000px;}
.xc_c01090{left:703.440000px;}
.x24_c01090{left:723.600000px;}
@media print{
.v0_c01090{vertical-align:0.000000pt;}
.v1_c01090{vertical-align:2.560000pt;}
.ls0_c01090{letter-spacing:0.000000pt;}
.ws2_c01090{word-spacing:0.000000pt;}
.ws1_c01090{word-spacing:8.188800pt;}
.ws0_c01090{word-spacing:17.536102pt;}
.fs9_c01090{font-size:30.720000pt;}
.fse_c01090{font-size:35.840000pt;}
.fsd_c01090{font-size:38.400000pt;}
.fsb_c01090{font-size:43.520000pt;}
.fs3_c01090{font-size:46.080000pt;}
.fs4_c01090{font-size:48.640000pt;}
.fs6_c01090{font-size:51.200000pt;}
.fs7_c01090{font-size:53.760000pt;}
.fsa_c01090{font-size:56.320000pt;}
.fs1_c01090{font-size:58.880000pt;}
.fs8_c01090{font-size:61.440000pt;}
.fs0_c01090{font-size:64.000000pt;}
.fs5_c01090{font-size:66.560000pt;}
.fs2_c01090{font-size:69.120000pt;}
.fsc_c01090{font-size:92.160000pt;}
.y0_c01090{bottom:0.000000pt;}
.y77_c01090{bottom:63.360000pt;}
.y75_c01090{bottom:64.640000pt;}
.y7a_c01090{bottom:65.280000pt;}
.y79_c01090{bottom:65.920000pt;}
.y76_c01090{bottom:66.560000pt;}
.y78_c01090{bottom:67.200000pt;}
.y6f_c01090{bottom:101.760000pt;}
.y6e_c01090{bottom:102.400000pt;}
.y74_c01090{bottom:103.040000pt;}
.y73_c01090{bottom:103.680000pt;}
.y6d_c01090{bottom:104.960000pt;}
.y6c_c01090{bottom:139.520000pt;}
.y6a_c01090{bottom:140.160000pt;}
.y72_c01090{bottom:140.800000pt;}
.y71_c01090{bottom:141.440000pt;}
.y6b_c01090{bottom:142.080000pt;}
.y69_c01090{bottom:142.720000pt;}
.y68_c01090{bottom:177.920000pt;}
.y67_c01090{bottom:178.560000pt;}
.y66_c01090{bottom:180.480000pt;}
.y64_c01090{bottom:181.120000pt;}
.y65_c01090{bottom:181.760000pt;}
.y62_c01090{bottom:206.720000pt;}
.y70_c01090{bottom:207.360000pt;}
.y61_c01090{bottom:208.640000pt;}
.y63_c01090{bottom:209.280000pt;}
.y5f_c01090{bottom:244.480000pt;}
.y60_c01090{bottom:247.040000pt;}
.y5e_c01090{bottom:247.680000pt;}
.y5a_c01090{bottom:272.000000pt;}
.y5b_c01090{bottom:273.920000pt;}
.y59_c01090{bottom:274.560000pt;}
.y5d_c01090{bottom:275.200000pt;}
.y5c_c01090{bottom:275.840000pt;}
.y42_c01090{bottom:309.760000pt;}
.y44_c01090{bottom:311.040000pt;}
.y41_c01090{bottom:312.320000pt;}
.y58_c01090{bottom:312.960000pt;}
.y43_c01090{bottom:313.600000pt;}
.y3e_c01090{bottom:348.160000pt;}
.y3d_c01090{bottom:350.080000pt;}
.y57_c01090{bottom:350.720000pt;}
.y40_c01090{bottom:351.360000pt;}
.y3f_c01090{bottom:352.000000pt;}
.y3b_c01090{bottom:385.920000pt;}
.y3c_c01090{bottom:386.560000pt;}
.y56_c01090{bottom:387.840000pt;}
.y3a_c01090{bottom:388.480000pt;}
.y38_c01090{bottom:423.680000pt;}
.y39_c01090{bottom:424.320000pt;}
.y55_c01090{bottom:424.960000pt;}
.y37_c01090{bottom:426.240000pt;}
.y36_c01090{bottom:461.440000pt;}
.y53_c01090{bottom:462.720000pt;}
.y54_c01090{bottom:463.360000pt;}
.y35_c01090{bottom:464.000000pt;}
.y30_c01090{bottom:499.840000pt;}
.y33_c01090{bottom:500.480000pt;}
.y34_c01090{bottom:501.120000pt;}
.y2f_c01090{bottom:501.760000pt;}
.y31_c01090{bottom:502.400000pt;}
.y32_c01090{bottom:503.040000pt;}
.y2d_c01090{bottom:531.200000pt;}
.y29_c01090{bottom:536.960000pt;}
.y2c_c01090{bottom:538.240000pt;}
.y2e_c01090{bottom:538.880000pt;}
.y28_c01090{bottom:539.520000pt;}
.y2a_c01090{bottom:540.160000pt;}
.y2b_c01090{bottom:540.800000pt;}
.y27_c01090{bottom:575.360000pt;}
.y51_c01090{bottom:576.640000pt;}
.y26_c01090{bottom:577.280000pt;}
.y52_c01090{bottom:577.920000pt;}
.y23_c01090{bottom:612.480000pt;}
.y25_c01090{bottom:613.120000pt;}
.y50_c01090{bottom:615.040000pt;}
.y22_c01090{bottom:615.680000pt;}
.y24_c01090{bottom:616.320000pt;}
.y20_c01090{bottom:650.880000pt;}
.y21_c01090{bottom:652.160000pt;}
.y1f_c01090{bottom:652.800000pt;}
.y4f_c01090{bottom:654.080000pt;}
.y1c_c01090{bottom:688.640000pt;}
.y1e_c01090{bottom:690.560000pt;}
.y1b_c01090{bottom:691.200000pt;}
.y4e_c01090{bottom:692.480000pt;}
.y1d_c01090{bottom:693.120000pt;}
.y19_c01090{bottom:727.040000pt;}
.y1a_c01090{bottom:727.680000pt;}
.y18_c01090{bottom:728.960000pt;}
.y4c_c01090{bottom:729.600000pt;}
.y4b_c01090{bottom:730.240000pt;}
.y4d_c01090{bottom:730.880000pt;}
.y15_c01090{bottom:764.160000pt;}
.y17_c01090{bottom:766.080000pt;}
.y4a_c01090{bottom:766.720000pt;}
.y13_c01090{bottom:767.360000pt;}
.y14_c01090{bottom:768.000000pt;}
.y16_c01090{bottom:769.280000pt;}
.y11_c01090{bottom:803.200000pt;}
.y12_c01090{bottom:803.840000pt;}
.y10_c01090{bottom:805.120000pt;}
.y48_c01090{bottom:805.760000pt;}
.y49_c01090{bottom:806.400000pt;}
.yd_c01090{bottom:840.960000pt;}
.yf_c01090{bottom:842.240000pt;}
.ye_c01090{bottom:842.880000pt;}
.yc_c01090{bottom:843.520000pt;}
.y47_c01090{bottom:844.160000pt;}
.ya_c01090{bottom:878.720000pt;}
.y8_c01090{bottom:880.000000pt;}
.y9_c01090{bottom:880.640000pt;}
.y45_c01090{bottom:881.280000pt;}
.y46_c01090{bottom:881.920000pt;}
.yb_c01090{bottom:882.560000pt;}
.y3_c01090{bottom:915.840000pt;}
.y2_c01090{bottom:918.400000pt;}
.y6_c01090{bottom:919.040000pt;}
.y7_c01090{bottom:919.680000pt;}
.y4_c01090{bottom:920.320000pt;}
.y5_c01090{bottom:920.960000pt;}
.y1_c01090{bottom:972.160000pt;}
.hb_c01090{height:27.645000pt;}
.h11_c01090{height:32.252500pt;}
.hf_c01090{height:34.556250pt;}
.hd_c01090{height:39.163750pt;}
.h5_c01090{height:41.467500pt;}
.h6_c01090{height:43.771250pt;}
.h8_c01090{height:46.075000pt;}
.h9_c01090{height:48.378750pt;}
.hc_c01090{height:50.682500pt;}
.h10_c01090{height:50.938750pt;}
.h3_c01090{height:52.986250pt;}
.ha_c01090{height:55.290000pt;}
.h2_c01090{height:57.593750pt;}
.h7_c01090{height:59.897500pt;}
.h4_c01090{height:62.201250pt;}
.he_c01090{height:82.935000pt;}
.h1_c01090{height:1006.000000pt;}
.h0_c01090{height:1006.080000pt;}
.w0_c01090{width:688.640000pt;}
.w1_c01090{width:688.666667pt;}
.x0_c01090{left:0.000000pt;}
.x2_c01090{left:62.080000pt;}
.xd_c01090{left:100.480000pt;}
.xf_c01090{left:101.760000pt;}
.x3_c01090{left:127.360000pt;}
.x1e_c01090{left:128.640000pt;}
.x1f_c01090{left:174.720000pt;}
.x1c_c01090{left:176.640000pt;}
.x11_c01090{left:204.160000pt;}
.x20_c01090{left:214.400000pt;}
.x4_c01090{left:242.560000pt;}
.x12_c01090{left:252.160000pt;}
.x10_c01090{left:261.760000pt;}
.x21_c01090{left:288.640000pt;}
.x5_c01090{left:289.920000pt;}
.x15_c01090{left:291.200000pt;}
.x14_c01090{left:318.720000pt;}
.xe_c01090{left:327.680000pt;}
.x1d_c01090{left:337.920000pt;}
.x6_c01090{left:364.800000pt;}
.x18_c01090{left:366.080000pt;}
.x13_c01090{left:394.880000pt;}
.x7_c01090{left:404.480000pt;}
.x25_c01090{left:442.880000pt;}
.x8_c01090{left:447.360000pt;}
.x1a_c01090{left:490.240000pt;}
.x9_c01090{left:491.520000pt;}
.x17_c01090{left:508.800000pt;}
.xa_c01090{left:510.720000pt;}
.x1b_c01090{left:527.360000pt;}
.xb_c01090{left:528.640000pt;}
.x22_c01090{left:558.080000pt;}
.x19_c01090{left:578.560000pt;}
.x23_c01090{left:586.880000pt;}
.x1_c01090{left:595.840000pt;}
.x16_c01090{left:624.000000pt;}
.xc_c01090{left:625.280000pt;}
.x24_c01090{left:643.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5341839c2b895b289187fc1d.woff2')format("woff");}.ff1_c01091{font-family:ff1_c01091;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m57_c01091{transform:matrix(0.130475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130475,0.000000,0.000000,0.250000,0,0);}
.m54_c01091{transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);}
.ma_c01091{transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);}
.m4e_c01091{transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);}
.m61_c01091{transform:matrix(0.194025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194025,0.000000,0.000000,0.250000,0,0);}
.m64_c01091{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);}
.m16_c01091{transform:matrix(0.201075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201075,0.000000,0.000000,0.250000,0,0);}
.m47_c01091{transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);}
.m63_c01091{transform:matrix(0.206575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206575,0.000000,0.000000,0.250000,0,0);}
.m14_c01091{transform:matrix(0.210525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210525,0.000000,0.000000,0.250000,0,0);}
.m3f_c01091{transform:matrix(0.212675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212675,0.000000,0.000000,0.250000,0,0);}
.m22_c01091{transform:matrix(0.217150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217150,0.000000,0.000000,0.250000,0,0);}
.m62_c01091{transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);}
.m17_c01091{transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);}
.m33_c01091{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);}
.m45_c01091{transform:matrix(0.229450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229450,0.000000,0.000000,0.250000,0,0);}
.m51_c01091{transform:matrix(0.231300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231300,0.000000,0.000000,0.250000,0,0);}
.m29_c01091{transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);}
.m40_c01091{transform:matrix(0.231550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231550,0.000000,0.000000,0.250000,0,0);}
.m9_c01091{transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);}
.m4a_c01091{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m3d_c01091{transform:matrix(0.235550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235550,0.000000,0.000000,0.250000,0,0);}
.m2a_c01091{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m49_c01091{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m4_c01091{transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);}
.m43_c01091{transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);}
.m58_c01091{transform:matrix(0.243850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243850,0.000000,0.000000,0.250000,0,0);}
.m5f_c01091{transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);}
.m8_c01091{transform:matrix(0.246550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246550,0.000000,0.000000,0.250000,0,0);}
.mf_c01091{transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);}
.m26_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);}
.m2d_c01091{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m39_c01091{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m19_c01091{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01091{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);}
.m24_c01091{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);}
.m37_c01091{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m23_c01091{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);}
.m42_c01091{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);}
.m2f_c01091{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);}
.m27_c01091{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m25_c01091{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);}
.m38_c01091{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m15_c01091{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m32_c01091{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mb_c01091{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m18_c01091{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m31_c01091{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01091{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m34_c01091{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01091{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m46_c01091{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m6_c01091{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m4f_c01091{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1_c01091{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m20_c01091{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01091{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);}
.m1e_c01091{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m12_c01091{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);}
.m28_c01091{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m7_c01091{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);}
.m41_c01091{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01091{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);}
.m60_c01091{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m0_c01091{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);}
.m36_c01091{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m5d_c01091{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);}
.m5c_c01091{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);}
.me_c01091{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01091{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);}
.m50_c01091{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m55_c01091{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m5e_c01091{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m44_c01091{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);}
.m4b_c01091{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m5a_c01091{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m11_c01091{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01091{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01091{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m48_c01091{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);}
.m21_c01091{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m56_c01091{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m5_c01091{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);}
.m2_c01091{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01091{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.md_c01091{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01091{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m52_c01091{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01091{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m53_c01091{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01091{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01091{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_c01091{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m30_c01091{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m59_c01091{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01091{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m13_c01091{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01091{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.m5b_c01091{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m35_c01091{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m3_c01091{transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);}
.v1_c01091{vertical-align:-2.880000px;}
.v0_c01091{vertical-align:0.000000px;}
.ls2_c01091{letter-spacing:0.000000px;}
.ls1_c01091{letter-spacing:37.783680px;}
.ls0_c01091{letter-spacing:57.542400px;}
.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;}
}
.ws1_c01091{word-spacing:0.000000px;}
.ws0_c01091{word-spacing:14.393376px;}
.fc0_c01091{color:transparent;}
.fs3_c01091{font-size:17.280000px;}
.fsa_c01091{font-size:23.040000px;}
.fs2_c01091{font-size:25.920000px;}
.fsf_c01091{font-size:37.440000px;}
.fs12_c01091{font-size:40.320000px;}
.fsd_c01091{font-size:43.200000px;}
.fs10_c01091{font-size:46.080000px;}
.fs5_c01091{font-size:48.960000px;}
.fs7_c01091{font-size:51.840000px;}
.fs4_c01091{font-size:54.720000px;}
.fs1_c01091{font-size:57.600000px;}
.fs6_c01091{font-size:60.480000px;}
.fse_c01091{font-size:63.360000px;}
.fsb_c01091{font-size:66.240000px;}
.fsc_c01091{font-size:69.120000px;}
.fs9_c01091{font-size:72.000000px;}
.fs0_c01091{font-size:74.880000px;}
.fs8_c01091{font-size:77.760000px;}
.fs11_c01091{font-size:103.680000px;}
.y0_c01091{bottom:0.000000px;}
.y80_c01091{bottom:63.360000px;}
.y82_c01091{bottom:64.080000px;}
.y83_c01091{bottom:64.800000px;}
.y7f_c01091{bottom:65.520000px;}
.y81_c01091{bottom:66.240000px;}
.y7c_c01091{bottom:105.840000px;}
.y7b_c01091{bottom:106.560000px;}
.y7d_c01091{bottom:107.280000px;}
.y7e_c01091{bottom:108.720000px;}
.y7a_c01091{bottom:109.440000px;}
.y77_c01091{bottom:148.320000px;}
.y78_c01091{bottom:149.760000px;}
.y79_c01091{bottom:150.480000px;}
.y76_c01091{bottom:151.200000px;}
.y72_c01091{bottom:190.800000px;}
.y75_c01091{bottom:191.520000px;}
.y74_c01091{bottom:192.960000px;}
.y71_c01091{bottom:193.680000px;}
.y73_c01091{bottom:194.400000px;}
.y6d_c01091{bottom:233.280000px;}
.y6f_c01091{bottom:234.000000px;}
.y6c_c01091{bottom:235.440000px;}
.y6e_c01091{bottom:236.160000px;}
.y70_c01091{bottom:236.880000px;}
.y67_c01091{bottom:275.760000px;}
.y6b_c01091{bottom:276.480000px;}
.y69_c01091{bottom:277.200000px;}
.y68_c01091{bottom:277.920000px;}
.y66_c01091{bottom:278.640000px;}
.y6a_c01091{bottom:279.360000px;}
.y62_c01091{bottom:311.040000px;}
.y65_c01091{bottom:311.760000px;}
.y5e_c01091{bottom:318.240000px;}
.y5d_c01091{bottom:318.960000px;}
.y61_c01091{bottom:319.680000px;}
.y63_c01091{bottom:320.400000px;}
.y5f_c01091{bottom:321.120000px;}
.y60_c01091{bottom:321.840000px;}
.y64_c01091{bottom:323.280000px;}
.y5b_c01091{bottom:362.880000px;}
.y5c_c01091{bottom:363.600000px;}
.y58_c01091{bottom:391.680000px;}
.y56_c01091{bottom:392.400000px;}
.y59_c01091{bottom:393.840000px;}
.y5a_c01091{bottom:394.560000px;}
.y55_c01091{bottom:395.280000px;}
.y57_c01091{bottom:396.000000px;}
.y50_c01091{bottom:435.600000px;}
.y51_c01091{bottom:437.040000px;}
.y4f_c01091{bottom:437.760000px;}
.y52_c01091{bottom:438.480000px;}
.y53_c01091{bottom:439.200000px;}
.y54_c01091{bottom:439.920000px;}
.y4a_c01091{bottom:478.080000px;}
.y4c_c01091{bottom:478.800000px;}
.y4d_c01091{bottom:479.520000px;}
.y4e_c01091{bottom:480.240000px;}
.y49_c01091{bottom:480.960000px;}
.y4b_c01091{bottom:481.680000px;}
.y44_c01091{bottom:521.280000px;}
.y46_c01091{bottom:522.000000px;}
.y47_c01091{bottom:522.720000px;}
.y43_c01091{bottom:523.440000px;}
.y48_c01091{bottom:524.160000px;}
.y45_c01091{bottom:524.880000px;}
.y40_c01091{bottom:564.480000px;}
.y41_c01091{bottom:565.200000px;}
.y42_c01091{bottom:565.920000px;}
.y3f_c01091{bottom:566.640000px;}
.y3a_c01091{bottom:605.520000px;}
.y3c_c01091{bottom:606.960000px;}
.y3e_c01091{bottom:607.680000px;}
.y39_c01091{bottom:608.400000px;}
.y3d_c01091{bottom:609.120000px;}
.y3b_c01091{bottom:609.840000px;}
.y34_c01091{bottom:648.000000px;}
.y35_c01091{bottom:649.440000px;}
.y37_c01091{bottom:650.880000px;}
.y33_c01091{bottom:651.600000px;}
.y38_c01091{bottom:652.320000px;}
.y36_c01091{bottom:653.040000px;}
.y2e_c01091{bottom:691.920000px;}
.y2d_c01091{bottom:692.640000px;}
.y30_c01091{bottom:693.360000px;}
.y32_c01091{bottom:694.080000px;}
.y2f_c01091{bottom:694.800000px;}
.y31_c01091{bottom:695.520000px;}
.y2a_c01091{bottom:733.680000px;}
.y2b_c01091{bottom:735.120000px;}
.y29_c01091{bottom:736.560000px;}
.y2c_c01091{bottom:738.000000px;}
.y25_c01091{bottom:776.880000px;}
.y26_c01091{bottom:777.600000px;}
.y24_c01091{bottom:778.320000px;}
.y27_c01091{bottom:779.040000px;}
.y28_c01091{bottom:780.480000px;}
.y22_c01091{bottom:819.360000px;}
.y21_c01091{bottom:821.520000px;}
.y23_c01091{bottom:822.240000px;}
.y1c_c01091{bottom:861.120000px;}
.y1d_c01091{bottom:861.840000px;}
.y1b_c01091{bottom:863.280000px;}
.y1e_c01091{bottom:864.000000px;}
.y1f_c01091{bottom:864.720000px;}
.y20_c01091{bottom:866.160000px;}
.y16_c01091{bottom:903.600000px;}
.y15_c01091{bottom:905.760000px;}
.y18_c01091{bottom:906.480000px;}
.y1a_c01091{bottom:907.200000px;}
.y17_c01091{bottom:907.920000px;}
.y19_c01091{bottom:908.640000px;}
.y11_c01091{bottom:947.520000px;}
.y14_c01091{bottom:948.240000px;}
.y12_c01091{bottom:949.680000px;}
.y13_c01091{bottom:950.400000px;}
.yc_c01091{bottom:979.200000px;}
.ye_c01091{bottom:980.640000px;}
.yb_c01091{bottom:981.360000px;}
.yf_c01091{bottom:982.080000px;}
.yd_c01091{bottom:982.800000px;}
.y10_c01091{bottom:983.520000px;}
.y4_c01091{bottom:1021.680000px;}
.y8_c01091{bottom:1022.400000px;}
.y2_c01091{bottom:1023.840000px;}
.y9_c01091{bottom:1024.560000px;}
.y6_c01091{bottom:1025.280000px;}
.y5_c01091{bottom:1026.000000px;}
.y7_c01091{bottom:1026.720000px;}
.ya_c01091{bottom:1027.440000px;}
.y3_c01091{bottom:1028.160000px;}
.y1_c01091{bottom:1077.840000px;}
.h4_c01091{height:15.550313px;}
.hb_c01091{height:20.733750px;}
.h3_c01091{height:23.325469px;}
.h10_c01091{height:33.692344px;}
.h13_c01091{height:36.284062px;}
.he_c01091{height:38.875781px;}
.h11_c01091{height:41.467500px;}
.h6_c01091{height:44.059219px;}
.h8_c01091{height:46.650937px;}
.h5_c01091{height:49.242656px;}
.h2_c01091{height:51.834375px;}
.h7_c01091{height:54.426094px;}
.hf_c01091{height:57.017812px;}
.hc_c01091{height:59.609531px;}
.hd_c01091{height:62.201250px;}
.ha_c01091{height:64.792969px;}
.h1_c01091{height:67.384687px;}
.h9_c01091{height:69.976406px;}
.h12_c01091{height:93.301875px;}
.h0_c01091{height:1134.000000px;}
.w0_c01091{width:779.040000px;}
.w1_c01091{width:779.250000px;}
.x0_c01091{left:0.000000px;}
.x1e_c01091{left:73.440000px;}
.x2_c01091{left:74.880000px;}
.x3_c01091{left:118.800000px;}
.x4_c01091{left:126.720000px;}
.x1a_c01091{left:146.880000px;}
.x5_c01091{left:148.320000px;}
.x15_c01091{left:161.280000px;}
.x16_c01091{left:171.360000px;}
.x17_c01091{left:213.120000px;}
.x19_c01091{left:233.280000px;}
.x1f_c01091{left:234.720000px;}
.x18_c01091{left:266.400000px;}
.x20_c01091{left:276.480000px;}
.x6_c01091{left:277.920000px;}
.x2c_c01091{left:288.000000px;}
.x7_c01091{left:300.240000px;}
.x1c_c01091{left:320.400000px;}
.x2d_c01091{left:329.040000px;}
.x8_c01091{left:330.480000px;}
.x10_c01091{left:331.920000px;}
.x1d_c01091{left:363.600000px;}
.x9_c01091{left:373.680000px;}
.x21_c01091{left:406.080000px;}
.x11_c01091{left:416.160000px;}
.x28_c01091{left:437.760000px;}
.x22_c01091{left:448.560000px;}
.x12_c01091{left:460.080000px;}
.x2b_c01091{left:480.240000px;}
.x29_c01091{left:492.480000px;}
.x2f_c01091{left:501.120000px;}
.x2e_c01091{left:512.640000px;}
.x13_c01091{left:514.080000px;}
.x2a_c01091{left:556.560000px;}
.xa_c01091{left:558.000000px;}
.x25_c01091{left:577.440000px;}
.xb_c01091{left:578.880000px;}
.x31_c01091{left:598.320000px;}
.x26_c01091{left:631.440000px;}
.x14_c01091{left:632.880000px;}
.xc_c01091{left:634.320000px;}
.x24_c01091{left:663.840000px;}
.xd_c01091{left:665.280000px;}
.x27_c01091{left:674.640000px;}
.x1_c01091{left:697.680000px;}
.x23_c01091{left:707.040000px;}
.xe_c01091{left:708.480000px;}
.x30_c01091{left:726.480000px;}
.x1b_c01091{left:727.920000px;}
.xf_c01091{left:729.360000px;}
@media print{
.v1_c01091{vertical-align:-2.560000pt;}
.v0_c01091{vertical-align:0.000000pt;}
.ls2_c01091{letter-spacing:0.000000pt;}
.ls1_c01091{letter-spacing:33.585493pt;}
.ls0_c01091{letter-spacing:51.148800pt;}
.ws1_c01091{word-spacing:0.000000pt;}
.ws0_c01091{word-spacing:12.794112pt;}
.fs3_c01091{font-size:15.360000pt;}
.fsa_c01091{font-size:20.480000pt;}
.fs2_c01091{font-size:23.040000pt;}
.fsf_c01091{font-size:33.280000pt;}
.fs12_c01091{font-size:35.840000pt;}
.fsd_c01091{font-size:38.400000pt;}
.fs10_c01091{font-size:40.960000pt;}
.fs5_c01091{font-size:43.520000pt;}
.fs7_c01091{font-size:46.080000pt;}
.fs4_c01091{font-size:48.640000pt;}
.fs1_c01091{font-size:51.200000pt;}
.fs6_c01091{font-size:53.760000pt;}
.fse_c01091{font-size:56.320000pt;}
.fsb_c01091{font-size:58.880000pt;}
.fsc_c01091{font-size:61.440000pt;}
.fs9_c01091{font-size:64.000000pt;}
.fs0_c01091{font-size:66.560000pt;}
.fs8_c01091{font-size:69.120000pt;}
.fs11_c01091{font-size:92.160000pt;}
.y0_c01091{bottom:0.000000pt;}
.y80_c01091{bottom:56.320000pt;}
.y82_c01091{bottom:56.960000pt;}
.y83_c01091{bottom:57.600000pt;}
.y7f_c01091{bottom:58.240000pt;}
.y81_c01091{bottom:58.880000pt;}
.y7c_c01091{bottom:94.080000pt;}
.y7b_c01091{bottom:94.720000pt;}
.y7d_c01091{bottom:95.360000pt;}
.y7e_c01091{bottom:96.640000pt;}
.y7a_c01091{bottom:97.280000pt;}
.y77_c01091{bottom:131.840000pt;}
.y78_c01091{bottom:133.120000pt;}
.y79_c01091{bottom:133.760000pt;}
.y76_c01091{bottom:134.400000pt;}
.y72_c01091{bottom:169.600000pt;}
.y75_c01091{bottom:170.240000pt;}
.y74_c01091{bottom:171.520000pt;}
.y71_c01091{bottom:172.160000pt;}
.y73_c01091{bottom:172.800000pt;}
.y6d_c01091{bottom:207.360000pt;}
.y6f_c01091{bottom:208.000000pt;}
.y6c_c01091{bottom:209.280000pt;}
.y6e_c01091{bottom:209.920000pt;}
.y70_c01091{bottom:210.560000pt;}
.y67_c01091{bottom:245.120000pt;}
.y6b_c01091{bottom:245.760000pt;}
.y69_c01091{bottom:246.400000pt;}
.y68_c01091{bottom:247.040000pt;}
.y66_c01091{bottom:247.680000pt;}
.y6a_c01091{bottom:248.320000pt;}
.y62_c01091{bottom:276.480000pt;}
.y65_c01091{bottom:277.120000pt;}
.y5e_c01091{bottom:282.880000pt;}
.y5d_c01091{bottom:283.520000pt;}
.y61_c01091{bottom:284.160000pt;}
.y63_c01091{bottom:284.800000pt;}
.y5f_c01091{bottom:285.440000pt;}
.y60_c01091{bottom:286.080000pt;}
.y64_c01091{bottom:287.360000pt;}
.y5b_c01091{bottom:322.560000pt;}
.y5c_c01091{bottom:323.200000pt;}
.y58_c01091{bottom:348.160000pt;}
.y56_c01091{bottom:348.800000pt;}
.y59_c01091{bottom:350.080000pt;}
.y5a_c01091{bottom:350.720000pt;}
.y55_c01091{bottom:351.360000pt;}
.y57_c01091{bottom:352.000000pt;}
.y50_c01091{bottom:387.200000pt;}
.y51_c01091{bottom:388.480000pt;}
.y4f_c01091{bottom:389.120000pt;}
.y52_c01091{bottom:389.760000pt;}
.y53_c01091{bottom:390.400000pt;}
.y54_c01091{bottom:391.040000pt;}
.y4a_c01091{bottom:424.960000pt;}
.y4c_c01091{bottom:425.600000pt;}
.y4d_c01091{bottom:426.240000pt;}
.y4e_c01091{bottom:426.880000pt;}
.y49_c01091{bottom:427.520000pt;}
.y4b_c01091{bottom:428.160000pt;}
.y44_c01091{bottom:463.360000pt;}
.y46_c01091{bottom:464.000000pt;}
.y47_c01091{bottom:464.640000pt;}
.y43_c01091{bottom:465.280000pt;}
.y48_c01091{bottom:465.920000pt;}
.y45_c01091{bottom:466.560000pt;}
.y40_c01091{bottom:501.760000pt;}
.y41_c01091{bottom:502.400000pt;}
.y42_c01091{bottom:503.040000pt;}
.y3f_c01091{bottom:503.680000pt;}
.y3a_c01091{bottom:538.240000pt;}
.y3c_c01091{bottom:539.520000pt;}
.y3e_c01091{bottom:540.160000pt;}
.y39_c01091{bottom:540.800000pt;}
.y3d_c01091{bottom:541.440000pt;}
.y3b_c01091{bottom:542.080000pt;}
.y34_c01091{bottom:576.000000pt;}
.y35_c01091{bottom:577.280000pt;}
.y37_c01091{bottom:578.560000pt;}
.y33_c01091{bottom:579.200000pt;}
.y38_c01091{bottom:579.840000pt;}
.y36_c01091{bottom:580.480000pt;}
.y2e_c01091{bottom:615.040000pt;}
.y2d_c01091{bottom:615.680000pt;}
.y30_c01091{bottom:616.320000pt;}
.y32_c01091{bottom:616.960000pt;}
.y2f_c01091{bottom:617.600000pt;}
.y31_c01091{bottom:618.240000pt;}
.y2a_c01091{bottom:652.160000pt;}
.y2b_c01091{bottom:653.440000pt;}
.y29_c01091{bottom:654.720000pt;}
.y2c_c01091{bottom:656.000000pt;}
.y25_c01091{bottom:690.560000pt;}
.y26_c01091{bottom:691.200000pt;}
.y24_c01091{bottom:691.840000pt;}
.y27_c01091{bottom:692.480000pt;}
.y28_c01091{bottom:693.760000pt;}
.y22_c01091{bottom:728.320000pt;}
.y21_c01091{bottom:730.240000pt;}
.y23_c01091{bottom:730.880000pt;}
.y1c_c01091{bottom:765.440000pt;}
.y1d_c01091{bottom:766.080000pt;}
.y1b_c01091{bottom:767.360000pt;}
.y1e_c01091{bottom:768.000000pt;}
.y1f_c01091{bottom:768.640000pt;}
.y20_c01091{bottom:769.920000pt;}
.y16_c01091{bottom:803.200000pt;}
.y15_c01091{bottom:805.120000pt;}
.y18_c01091{bottom:805.760000pt;}
.y1a_c01091{bottom:806.400000pt;}
.y17_c01091{bottom:807.040000pt;}
.y19_c01091{bottom:807.680000pt;}
.y11_c01091{bottom:842.240000pt;}
.y14_c01091{bottom:842.880000pt;}
.y12_c01091{bottom:844.160000pt;}
.y13_c01091{bottom:844.800000pt;}
.yc_c01091{bottom:870.400000pt;}
.ye_c01091{bottom:871.680000pt;}
.yb_c01091{bottom:872.320000pt;}
.yf_c01091{bottom:872.960000pt;}
.yd_c01091{bottom:873.600000pt;}
.y10_c01091{bottom:874.240000pt;}
.y4_c01091{bottom:908.160000pt;}
.y8_c01091{bottom:908.800000pt;}
.y2_c01091{bottom:910.080000pt;}
.y9_c01091{bottom:910.720000pt;}
.y6_c01091{bottom:911.360000pt;}
.y5_c01091{bottom:912.000000pt;}
.y7_c01091{bottom:912.640000pt;}
.ya_c01091{bottom:913.280000pt;}
.y3_c01091{bottom:913.920000pt;}
.y1_c01091{bottom:958.080000pt;}
.h4_c01091{height:13.822500pt;}
.hb_c01091{height:18.430000pt;}
.h3_c01091{height:20.733750pt;}
.h10_c01091{height:29.948750pt;}
.h13_c01091{height:32.252500pt;}
.he_c01091{height:34.556250pt;}
.h11_c01091{height:36.860000pt;}
.h6_c01091{height:39.163750pt;}
.h8_c01091{height:41.467500pt;}
.h5_c01091{height:43.771250pt;}
.h2_c01091{height:46.075000pt;}
.h7_c01091{height:48.378750pt;}
.hf_c01091{height:50.682500pt;}
.hc_c01091{height:52.986250pt;}
.hd_c01091{height:55.290000pt;}
.ha_c01091{height:57.593750pt;}
.h1_c01091{height:59.897500pt;}
.h9_c01091{height:62.201250pt;}
.h12_c01091{height:82.935000pt;}
.h0_c01091{height:1008.000000pt;}
.w0_c01091{width:692.480000pt;}
.w1_c01091{width:692.666667pt;}
.x0_c01091{left:0.000000pt;}
.x1e_c01091{left:65.280000pt;}
.x2_c01091{left:66.560000pt;}
.x3_c01091{left:105.600000pt;}
.x4_c01091{left:112.640000pt;}
.x1a_c01091{left:130.560000pt;}
.x5_c01091{left:131.840000pt;}
.x15_c01091{left:143.360000pt;}
.x16_c01091{left:152.320000pt;}
.x17_c01091{left:189.440000pt;}
.x19_c01091{left:207.360000pt;}
.x1f_c01091{left:208.640000pt;}
.x18_c01091{left:236.800000pt;}
.x20_c01091{left:245.760000pt;}
.x6_c01091{left:247.040000pt;}
.x2c_c01091{left:256.000000pt;}
.x7_c01091{left:266.880000pt;}
.x1c_c01091{left:284.800000pt;}
.x2d_c01091{left:292.480000pt;}
.x8_c01091{left:293.760000pt;}
.x10_c01091{left:295.040000pt;}
.x1d_c01091{left:323.200000pt;}
.x9_c01091{left:332.160000pt;}
.x21_c01091{left:360.960000pt;}
.x11_c01091{left:369.920000pt;}
.x28_c01091{left:389.120000pt;}
.x22_c01091{left:398.720000pt;}
.x12_c01091{left:408.960000pt;}
.x2b_c01091{left:426.880000pt;}
.x29_c01091{left:437.760000pt;}
.x2f_c01091{left:445.440000pt;}
.x2e_c01091{left:455.680000pt;}
.x13_c01091{left:456.960000pt;}
.x2a_c01091{left:494.720000pt;}
.xa_c01091{left:496.000000pt;}
.x25_c01091{left:513.280000pt;}
.xb_c01091{left:514.560000pt;}
.x31_c01091{left:531.840000pt;}
.x26_c01091{left:561.280000pt;}
.x14_c01091{left:562.560000pt;}
.xc_c01091{left:563.840000pt;}
.x24_c01091{left:590.080000pt;}
.xd_c01091{left:591.360000pt;}
.x27_c01091{left:599.680000pt;}
.x1_c01091{left:620.160000pt;}
.x23_c01091{left:628.480000pt;}
.xe_c01091{left:629.760000pt;}
.x30_c01091{left:645.760000pt;}
.x1b_c01091{left:647.040000pt;}
.xf_c01091{left:648.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f3ff4337bf9f2cad4d04c5fd.woff2')format("woff");}.ff1_c01092{font-family:ff1_c01092;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3d_c01092{transform:matrix(0.211650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211650,0.000000,0.000000,0.250000,0,0);}
.m4c_c01092{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m45_c01092{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);}
.m18_c01092{transform:matrix(0.230700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230700,0.000000,0.000000,0.250000,0,0);}
.m31_c01092{transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);}
.m49_c01092{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.ma_c01092{transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);}
.m43_c01092{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m30_c01092{transform:matrix(0.236900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236900,0.000000,0.000000,0.250000,0,0);}
.m3c_c01092{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m28_c01092{transform:matrix(0.238300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238300,0.000000,0.000000,0.250000,0,0);}
.m5_c01092{transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);}
.m2d_c01092{transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);}
.m33_c01092{transform:matrix(0.243175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243175,0.000000,0.000000,0.250000,0,0);}
.m42_c01092{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m48_c01092{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01092{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m1_c01092{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.md_c01092{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m29_c01092{transform:matrix(0.249175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249175,0.000000,0.000000,0.250000,0,0);}
.m34_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);}
.m23_c01092{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_c01092{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m4_c01092{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m16_c01092{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);}
.m20_c01092{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);}
.m27_c01092{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m14_c01092{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_c01092{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);}
.m2c_c01092{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);}
.m3e_c01092{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01092{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m35_c01092{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m10_c01092{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m8_c01092{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m7_c01092{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mc_c01092{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.me_c01092{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m37_c01092{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01092{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m9_c01092{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01092{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01092{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m38_c01092{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m36_c01092{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01092{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m39_c01092{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2_c01092{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m44_c01092{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m15_c01092{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01092{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);}
.m46_c01092{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m22_c01092{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01092{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.mf_c01092{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);}
.m0_c01092{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m11_c01092{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);}
.m17_c01092{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01092{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m19_c01092{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);}
.m32_c01092{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m41_c01092{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m25_c01092{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01092{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);}
.m4a_c01092{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m24_c01092{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m21_c01092{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m13_c01092{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);}
.m4d_c01092{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m40_c01092{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m6_c01092{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01092{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);}
.m3_c01092{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01092{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m26_c01092{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);}
.mb_c01092{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01092{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m47_c01092{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.v0_c01092{vertical-align:0.000000px;}
.ls0_c01092{letter-spacing:0.000000px;}
.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;}
}
.ws2_c01092{word-spacing:0.000000px;}
.ws1_c01092{word-spacing:11.855347px;}
.ws0_c01092{word-spacing:14.393376px;}
.fc0_c01092{color:transparent;}
.fsb_c01092{font-size:34.560000px;}
.fs7_c01092{font-size:37.440000px;}
.fse_c01092{font-size:43.200000px;}
.fsc_c01092{font-size:48.960000px;}
.fs2_c01092{font-size:51.840000px;}
.fs4_c01092{font-size:54.720000px;}
.fs6_c01092{font-size:57.600000px;}
.fs0_c01092{font-size:60.480000px;}
.fs8_c01092{font-size:63.360000px;}
.fs9_c01092{font-size:66.240000px;}
.fsa_c01092{font-size:69.120000px;}
.fs5_c01092{font-size:72.000000px;}
.fs3_c01092{font-size:74.880000px;}
.fs1_c01092{font-size:77.760000px;}
.fsd_c01092{font-size:109.440000px;}
.y0_c01092{bottom:0.000000px;}
.y5d_c01092{bottom:49.680000px;}
.y5b_c01092{bottom:51.120000px;}
.y5c_c01092{bottom:51.840000px;}
.y91_c01092{bottom:52.560000px;}
.y5a_c01092{bottom:54.000000px;}
.y59_c01092{bottom:93.600000px;}
.y90_c01092{bottom:94.320000px;}
.y8f_c01092{bottom:95.040000px;}
.y58_c01092{bottom:95.760000px;}
.y56_c01092{bottom:136.080000px;}
.y57_c01092{bottom:136.800000px;}
.y8c_c01092{bottom:137.520000px;}
.y55_c01092{bottom:138.240000px;}
.y8e_c01092{bottom:138.960000px;}
.y8d_c01092{bottom:139.680000px;}
.y53_c01092{bottom:178.560000px;}
.y89_c01092{bottom:180.000000px;}
.y52_c01092{bottom:180.720000px;}
.y54_c01092{bottom:181.440000px;}
.y8b_c01092{bottom:182.160000px;}
.y8a_c01092{bottom:182.880000px;}
.y4f_c01092{bottom:221.040000px;}
.y51_c01092{bottom:221.760000px;}
.y88_c01092{bottom:222.480000px;}
.y87_c01092{bottom:223.200000px;}
.y4e_c01092{bottom:223.920000px;}
.y50_c01092{bottom:224.640000px;}
.y4b_c01092{bottom:264.240000px;}
.y85_c01092{bottom:264.960000px;}
.y4d_c01092{bottom:265.680000px;}
.y4a_c01092{bottom:266.400000px;}
.y86_c01092{bottom:267.120000px;}
.y4c_c01092{bottom:267.840000px;}
.y47_c01092{bottom:306.720000px;}
.y49_c01092{bottom:307.440000px;}
.y46_c01092{bottom:308.160000px;}
.y84_c01092{bottom:308.880000px;}
.y83_c01092{bottom:309.600000px;}
.y48_c01092{bottom:311.040000px;}
.y45_c01092{bottom:349.920000px;}
.y44_c01092{bottom:351.360000px;}
.y81_c01092{bottom:352.080000px;}
.y82_c01092{bottom:352.800000px;}
.y43_c01092{bottom:391.680000px;}
.y40_c01092{bottom:392.400000px;}
.y3f_c01092{bottom:393.840000px;}
.y42_c01092{bottom:395.280000px;}
.y41_c01092{bottom:396.000000px;}
.y3e_c01092{bottom:434.160000px;}
.y80_c01092{bottom:435.600000px;}
.y7f_c01092{bottom:436.320000px;}
.y3d_c01092{bottom:437.040000px;}
.y3b_c01092{bottom:476.640000px;}
.y3c_c01092{bottom:477.360000px;}
.y3a_c01092{bottom:478.800000px;}
.y7c_c01092{bottom:479.520000px;}
.y7d_c01092{bottom:480.240000px;}
.y7e_c01092{bottom:480.960000px;}
.y37_c01092{bottom:519.120000px;}
.y39_c01092{bottom:519.840000px;}
.y36_c01092{bottom:520.560000px;}
.y7a_c01092{bottom:521.280000px;}
.y7b_c01092{bottom:522.000000px;}
.y38_c01092{bottom:523.440000px;}
.y32_c01092{bottom:561.600000px;}
.y34_c01092{bottom:562.320000px;}
.y31_c01092{bottom:563.040000px;}
.y79_c01092{bottom:564.480000px;}
.y33_c01092{bottom:565.200000px;}
.y35_c01092{bottom:565.920000px;}
.y30_c01092{bottom:594.000000px;}
.y2c_c01092{bottom:604.800000px;}
.y2d_c01092{bottom:605.520000px;}
.y78_c01092{bottom:606.240000px;}
.y2b_c01092{bottom:606.960000px;}
.y2f_c01092{bottom:607.680000px;}
.y2e_c01092{bottom:608.400000px;}
.y27_c01092{bottom:646.560000px;}
.y2a_c01092{bottom:648.000000px;}
.y26_c01092{bottom:648.720000px;}
.y77_c01092{bottom:649.440000px;}
.y76_c01092{bottom:650.160000px;}
.y29_c01092{bottom:650.880000px;}
.y28_c01092{bottom:651.600000px;}
.y24_c01092{bottom:689.760000px;}
.y25_c01092{bottom:690.480000px;}
.y23_c01092{bottom:691.200000px;}
.y73_c01092{bottom:691.920000px;}
.y74_c01092{bottom:692.640000px;}
.y75_c01092{bottom:694.080000px;}
.y20_c01092{bottom:732.240000px;}
.y22_c01092{bottom:733.680000px;}
.y1f_c01092{bottom:734.400000px;}
.y71_c01092{bottom:735.120000px;}
.y21_c01092{bottom:735.840000px;}
.y72_c01092{bottom:737.280000px;}
.y1d_c01092{bottom:775.440000px;}
.y1e_c01092{bottom:776.160000px;}
.y1c_c01092{bottom:777.600000px;}
.y6e_c01092{bottom:778.320000px;}
.y6f_c01092{bottom:779.760000px;}
.y70_c01092{bottom:780.480000px;}
.y19_c01092{bottom:817.920000px;}
.y1b_c01092{bottom:819.360000px;}
.y18_c01092{bottom:820.080000px;}
.y6d_c01092{bottom:820.800000px;}
.y6c_c01092{bottom:821.520000px;}
.y1a_c01092{bottom:822.240000px;}
.y15_c01092{bottom:861.120000px;}
.y17_c01092{bottom:861.840000px;}
.y16_c01092{bottom:862.560000px;}
.y14_c01092{bottom:863.280000px;}
.y68_c01092{bottom:864.000000px;}
.y6b_c01092{bottom:864.720000px;}
.y6a_c01092{bottom:865.440000px;}
.y69_c01092{bottom:866.160000px;}
.yf_c01092{bottom:903.600000px;}
.y13_c01092{bottom:904.320000px;}
.ye_c01092{bottom:905.040000px;}
.y11_c01092{bottom:905.760000px;}
.y67_c01092{bottom:906.480000px;}
.y10_c01092{bottom:907.200000px;}
.y12_c01092{bottom:908.640000px;}
.yb_c01092{bottom:946.080000px;}
.yd_c01092{bottom:946.800000px;}
.ya_c01092{bottom:948.240000px;}
.y64_c01092{bottom:948.960000px;}
.y66_c01092{bottom:949.680000px;}
.yc_c01092{bottom:950.400000px;}
.y65_c01092{bottom:951.120000px;}
.y7_c01092{bottom:988.560000px;}
.y6_c01092{bottom:990.000000px;}
.y9_c01092{bottom:990.720000px;}
.y63_c01092{bottom:991.440000px;}
.y61_c01092{bottom:992.160000px;}
.y8_c01092{bottom:992.880000px;}
.y62_c01092{bottom:994.320000px;}
.y2_c01092{bottom:1031.040000px;}
.y5_c01092{bottom:1032.480000px;}
.y1_c01092{bottom:1033.200000px;}
.y3_c01092{bottom:1034.640000px;}
.y4_c01092{bottom:1035.360000px;}
.y5f_c01092{bottom:1036.080000px;}
.y60_c01092{bottom:1036.800000px;}
.y5e_c01092{bottom:1083.600000px;}
.hd_c01092{height:31.100625px;}
.h9_c01092{height:33.692344px;}
.h10_c01092{height:38.875781px;}
.he_c01092{height:44.059219px;}
.h4_c01092{height:46.650937px;}
.h6_c01092{height:49.242656px;}
.h8_c01092{height:51.834375px;}
.h2_c01092{height:54.426094px;}
.ha_c01092{height:57.017812px;}
.hb_c01092{height:59.609531px;}
.hc_c01092{height:62.201250px;}
.h7_c01092{height:64.792969px;}
.h5_c01092{height:67.384687px;}
.h3_c01092{height:69.976406px;}
.hf_c01092{height:98.485312px;}
.h1_c01092{height:1128.750000px;}
.h0_c01092{height:1128.960000px;}
.w1_c01092{width:771.000000px;}
.w0_c01092{width:771.120000px;}
.x0_c01092{left:0.000000px;}
.x1_c01092{left:69.840000px;}
.x2_c01092{left:143.280000px;}
.x3_c01092{left:228.960000px;}
.x9_c01092{left:230.400000px;}
.xd_c01092{left:261.360000px;}
.x4_c01092{left:272.880000px;}
.x6_c01092{left:284.400000px;}
.x14_c01092{left:304.560000px;}
.xe_c01092{left:313.920000px;}
.xb_c01092{left:315.360000px;}
.x12_c01092{left:324.720000px;}
.x5_c01092{left:326.880000px;}
.xa_c01092{left:358.560000px;}
.xc_c01092{left:368.640000px;}
.x15_c01092{left:400.320000px;}
.x7_c01092{left:412.560000px;}
.x11_c01092{left:421.200000px;}
.xf_c01092{left:444.240000px;}
.x13_c01092{left:453.600000px;}
.x8_c01092{left:465.840000px;}
.x10_c01092{left:498.240000px;}
.x24_c01092{left:550.799955px;}
.x17_c01092{left:552.960000px;}
.x1f_c01092{left:573.120000px;}
.x18_c01092{left:574.560000px;}
.x25_c01092{left:593.280000px;}
.x1c_c01092{left:594.720000px;}
.x26_c01092{left:625.680000px;}
.x1e_c01092{left:627.120000px;}
.x19_c01092{left:628.560000px;}
.x21_c01092{left:659.520000px;}
.x1a_c01092{left:660.960000px;}
.x16_c01092{left:681.120000px;}
.x22_c01092{left:701.280000px;}
.x1d_c01092{left:702.720000px;}
.x1b_c01092{left:704.160000px;}
.x23_c01092{left:722.160000px;}
.x20_c01092{left:723.600000px;}
@media print{
.v0_c01092{vertical-align:0.000000pt;}
.ls0_c01092{letter-spacing:0.000000pt;}
.ws2_c01092{word-spacing:0.000000pt;}
.ws1_c01092{word-spacing:10.538086pt;}
.ws0_c01092{word-spacing:12.794112pt;}
.fsb_c01092{font-size:30.720000pt;}
.fs7_c01092{font-size:33.280000pt;}
.fse_c01092{font-size:38.400000pt;}
.fsc_c01092{font-size:43.520000pt;}
.fs2_c01092{font-size:46.080000pt;}
.fs4_c01092{font-size:48.640000pt;}
.fs6_c01092{font-size:51.200000pt;}
.fs0_c01092{font-size:53.760000pt;}
.fs8_c01092{font-size:56.320000pt;}
.fs9_c01092{font-size:58.880000pt;}
.fsa_c01092{font-size:61.440000pt;}
.fs5_c01092{font-size:64.000000pt;}
.fs3_c01092{font-size:66.560000pt;}
.fs1_c01092{font-size:69.120000pt;}
.fsd_c01092{font-size:97.280000pt;}
.y0_c01092{bottom:0.000000pt;}
.y5d_c01092{bottom:44.160000pt;}
.y5b_c01092{bottom:45.440000pt;}
.y5c_c01092{bottom:46.080000pt;}
.y91_c01092{bottom:46.720000pt;}
.y5a_c01092{bottom:48.000000pt;}
.y59_c01092{bottom:83.200000pt;}
.y90_c01092{bottom:83.840000pt;}
.y8f_c01092{bottom:84.480000pt;}
.y58_c01092{bottom:85.120000pt;}
.y56_c01092{bottom:120.960000pt;}
.y57_c01092{bottom:121.600000pt;}
.y8c_c01092{bottom:122.240000pt;}
.y55_c01092{bottom:122.880000pt;}
.y8e_c01092{bottom:123.520000pt;}
.y8d_c01092{bottom:124.160000pt;}
.y53_c01092{bottom:158.720000pt;}
.y89_c01092{bottom:160.000000pt;}
.y52_c01092{bottom:160.640000pt;}
.y54_c01092{bottom:161.280000pt;}
.y8b_c01092{bottom:161.920000pt;}
.y8a_c01092{bottom:162.560000pt;}
.y4f_c01092{bottom:196.480000pt;}
.y51_c01092{bottom:197.120000pt;}
.y88_c01092{bottom:197.760000pt;}
.y87_c01092{bottom:198.400000pt;}
.y4e_c01092{bottom:199.040000pt;}
.y50_c01092{bottom:199.680000pt;}
.y4b_c01092{bottom:234.880000pt;}
.y85_c01092{bottom:235.520000pt;}
.y4d_c01092{bottom:236.160000pt;}
.y4a_c01092{bottom:236.800000pt;}
.y86_c01092{bottom:237.440000pt;}
.y4c_c01092{bottom:238.080000pt;}
.y47_c01092{bottom:272.640000pt;}
.y49_c01092{bottom:273.280000pt;}
.y46_c01092{bottom:273.920000pt;}
.y84_c01092{bottom:274.560000pt;}
.y83_c01092{bottom:275.200000pt;}
.y48_c01092{bottom:276.480000pt;}
.y45_c01092{bottom:311.040000pt;}
.y44_c01092{bottom:312.320000pt;}
.y81_c01092{bottom:312.960000pt;}
.y82_c01092{bottom:313.600000pt;}
.y43_c01092{bottom:348.160000pt;}
.y40_c01092{bottom:348.800000pt;}
.y3f_c01092{bottom:350.080000pt;}
.y42_c01092{bottom:351.360000pt;}
.y41_c01092{bottom:352.000000pt;}
.y3e_c01092{bottom:385.920000pt;}
.y80_c01092{bottom:387.200000pt;}
.y7f_c01092{bottom:387.840000pt;}
.y3d_c01092{bottom:388.480000pt;}
.y3b_c01092{bottom:423.680000pt;}
.y3c_c01092{bottom:424.320000pt;}
.y3a_c01092{bottom:425.600000pt;}
.y7c_c01092{bottom:426.240000pt;}
.y7d_c01092{bottom:426.880000pt;}
.y7e_c01092{bottom:427.520000pt;}
.y37_c01092{bottom:461.440000pt;}
.y39_c01092{bottom:462.080000pt;}
.y36_c01092{bottom:462.720000pt;}
.y7a_c01092{bottom:463.360000pt;}
.y7b_c01092{bottom:464.000000pt;}
.y38_c01092{bottom:465.280000pt;}
.y32_c01092{bottom:499.200000pt;}
.y34_c01092{bottom:499.840000pt;}
.y31_c01092{bottom:500.480000pt;}
.y79_c01092{bottom:501.760000pt;}
.y33_c01092{bottom:502.400000pt;}
.y35_c01092{bottom:503.040000pt;}
.y30_c01092{bottom:528.000000pt;}
.y2c_c01092{bottom:537.600000pt;}
.y2d_c01092{bottom:538.240000pt;}
.y78_c01092{bottom:538.880000pt;}
.y2b_c01092{bottom:539.520000pt;}
.y2f_c01092{bottom:540.160000pt;}
.y2e_c01092{bottom:540.800000pt;}
.y27_c01092{bottom:574.720000pt;}
.y2a_c01092{bottom:576.000000pt;}
.y26_c01092{bottom:576.640000pt;}
.y77_c01092{bottom:577.280000pt;}
.y76_c01092{bottom:577.920000pt;}
.y29_c01092{bottom:578.560000pt;}
.y28_c01092{bottom:579.200000pt;}
.y24_c01092{bottom:613.120000pt;}
.y25_c01092{bottom:613.760000pt;}
.y23_c01092{bottom:614.400000pt;}
.y73_c01092{bottom:615.040000pt;}
.y74_c01092{bottom:615.680000pt;}
.y75_c01092{bottom:616.960000pt;}
.y20_c01092{bottom:650.880000pt;}
.y22_c01092{bottom:652.160000pt;}
.y1f_c01092{bottom:652.800000pt;}
.y71_c01092{bottom:653.440000pt;}
.y21_c01092{bottom:654.080000pt;}
.y72_c01092{bottom:655.360000pt;}
.y1d_c01092{bottom:689.280000pt;}
.y1e_c01092{bottom:689.920000pt;}
.y1c_c01092{bottom:691.200000pt;}
.y6e_c01092{bottom:691.840000pt;}
.y6f_c01092{bottom:693.120000pt;}
.y70_c01092{bottom:693.760000pt;}
.y19_c01092{bottom:727.040000pt;}
.y1b_c01092{bottom:728.320000pt;}
.y18_c01092{bottom:728.960000pt;}
.y6d_c01092{bottom:729.600000pt;}
.y6c_c01092{bottom:730.240000pt;}
.y1a_c01092{bottom:730.880000pt;}
.y15_c01092{bottom:765.440000pt;}
.y17_c01092{bottom:766.080000pt;}
.y16_c01092{bottom:766.720000pt;}
.y14_c01092{bottom:767.360000pt;}
.y68_c01092{bottom:768.000000pt;}
.y6b_c01092{bottom:768.640000pt;}
.y6a_c01092{bottom:769.280000pt;}
.y69_c01092{bottom:769.920000pt;}
.yf_c01092{bottom:803.200000pt;}
.y13_c01092{bottom:803.840000pt;}
.ye_c01092{bottom:804.480000pt;}
.y11_c01092{bottom:805.120000pt;}
.y67_c01092{bottom:805.760000pt;}
.y10_c01092{bottom:806.400000pt;}
.y12_c01092{bottom:807.680000pt;}
.yb_c01092{bottom:840.960000pt;}
.yd_c01092{bottom:841.600000pt;}
.ya_c01092{bottom:842.880000pt;}
.y64_c01092{bottom:843.520000pt;}
.y66_c01092{bottom:844.160000pt;}
.yc_c01092{bottom:844.800000pt;}
.y65_c01092{bottom:845.440000pt;}
.y7_c01092{bottom:878.720000pt;}
.y6_c01092{bottom:880.000000pt;}
.y9_c01092{bottom:880.640000pt;}
.y63_c01092{bottom:881.280000pt;}
.y61_c01092{bottom:881.920000pt;}
.y8_c01092{bottom:882.560000pt;}
.y62_c01092{bottom:883.840000pt;}
.y2_c01092{bottom:916.480000pt;}
.y5_c01092{bottom:917.760000pt;}
.y1_c01092{bottom:918.400000pt;}
.y3_c01092{bottom:919.680000pt;}
.y4_c01092{bottom:920.320000pt;}
.y5f_c01092{bottom:920.960000pt;}
.y60_c01092{bottom:921.600000pt;}
.y5e_c01092{bottom:963.200000pt;}
.hd_c01092{height:27.645000pt;}
.h9_c01092{height:29.948750pt;}
.h10_c01092{height:34.556250pt;}
.he_c01092{height:39.163750pt;}
.h4_c01092{height:41.467500pt;}
.h6_c01092{height:43.771250pt;}
.h8_c01092{height:46.075000pt;}
.h2_c01092{height:48.378750pt;}
.ha_c01092{height:50.682500pt;}
.hb_c01092{height:52.986250pt;}
.hc_c01092{height:55.290000pt;}
.h7_c01092{height:57.593750pt;}
.h5_c01092{height:59.897500pt;}
.h3_c01092{height:62.201250pt;}
.hf_c01092{height:87.542500pt;}
.h1_c01092{height:1003.333333pt;}
.h0_c01092{height:1003.520000pt;}
.w1_c01092{width:685.333333pt;}
.w0_c01092{width:685.440000pt;}
.x0_c01092{left:0.000000pt;}
.x1_c01092{left:62.080000pt;}
.x2_c01092{left:127.360000pt;}
.x3_c01092{left:203.520000pt;}
.x9_c01092{left:204.800000pt;}
.xd_c01092{left:232.320000pt;}
.x4_c01092{left:242.560000pt;}
.x6_c01092{left:252.800000pt;}
.x14_c01092{left:270.720000pt;}
.xe_c01092{left:279.040000pt;}
.xb_c01092{left:280.320000pt;}
.x12_c01092{left:288.640000pt;}
.x5_c01092{left:290.560000pt;}
.xa_c01092{left:318.720000pt;}
.xc_c01092{left:327.680000pt;}
.x15_c01092{left:355.840000pt;}
.x7_c01092{left:366.720000pt;}
.x11_c01092{left:374.400000pt;}
.xf_c01092{left:394.880000pt;}
.x13_c01092{left:403.200000pt;}
.x8_c01092{left:414.080000pt;}
.x10_c01092{left:442.880000pt;}
.x24_c01092{left:489.599960pt;}
.x17_c01092{left:491.520000pt;}
.x1f_c01092{left:509.440000pt;}
.x18_c01092{left:510.720000pt;}
.x25_c01092{left:527.360000pt;}
.x1c_c01092{left:528.640000pt;}
.x26_c01092{left:556.160000pt;}
.x1e_c01092{left:557.440000pt;}
.x19_c01092{left:558.720000pt;}
.x21_c01092{left:586.240000pt;}
.x1a_c01092{left:587.520000pt;}
.x16_c01092{left:605.440000pt;}
.x22_c01092{left:623.360000pt;}
.x1d_c01092{left:624.640000pt;}
.x1b_c01092{left:625.920000pt;}
.x23_c01092{left:641.920000pt;}
.x20_c01092{left:643.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c325ac3a0db46ab8e9af7d7a.woff2')format("woff");}.ff1_c01093{font-family:ff1_c01093;line-height:1.109863;font-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_c01093{transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);}
.m45_c01093{transform:matrix(0.192400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192400,0.000000,0.000000,0.250000,0,0);}
.m41_c01093{transform:matrix(0.194200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194200,0.000000,0.000000,0.250000,0,0);}
.m8_c01093{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.m3f_c01093{transform:matrix(0.221175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221175,0.000000,0.000000,0.250000,0,0);}
.m20_c01093{transform:matrix(0.221400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221400,0.000000,0.000000,0.250000,0,0);}
.m10_c01093{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);}
.m40_c01093{transform:matrix(0.228100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228100,0.000000,0.000000,0.250000,0,0);}
.m32_c01093{transform:matrix(0.238600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238600,0.000000,0.000000,0.250000,0,0);}
.m1_c01093{transform:matrix(0.238800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238800,0.000000,0.000000,0.250000,0,0);}
.m22_c01093{transform:matrix(0.242450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242450,0.000000,0.000000,0.250000,0,0);}
.m3_c01093{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);}
.m33_c01093{transform:matrix(0.243975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243975,0.000000,0.000000,0.250000,0,0);}
.m18_c01093{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01093{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m4b_c01093{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m6_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);}
.md_c01093{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);}
.m49_c01093{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.me_c01093{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);}
.m4d_c01093{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);}
.m29_c01093{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01093{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_c01093{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m14_c01093{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m0_c01093{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);}
.m44_c01093{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_c01093{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);}
.m2c_c01093{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m26_c01093{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01093{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mb_c01093{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m11_c01093{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m9_c01093{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01093{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m5_c01093{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m2_c01093{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.ma_c01093{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m27_c01093{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m12_c01093{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m19_c01093{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m34_c01093{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m38_c01093{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m36_c01093{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01093{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m7_c01093{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m4a_c01093{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);}
.m3b_c01093{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m42_c01093{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01093{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);}
.m3d_c01093{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m35_c01093{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);}
.m46_c01093{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01093{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);}
.m31_c01093{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m43_c01093{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m47_c01093{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m13_c01093{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);}
.m39_c01093{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01093{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);}
.m30_c01093{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);}
.m17_c01093{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01093{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);}
.m21_c01093{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_c01093{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);}
.mf_c01093{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m24_c01093{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);}
.m37_c01093{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01093{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01093{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01093{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);}
.m25_c01093{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m23_c01093{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m16_c01093{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01093{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m15_c01093{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m28_c01093{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.m4f_c01093{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.m4e_c01093{transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);}
.m48_c01093{transform:matrix(0.892500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.892500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.892500,0.000000,0.000000,0.250000,0,0);}
.v0_c01093{vertical-align:0.000000px;}
.v1_c01093{vertical-align:8.640000px;}
.ls0_c01093{letter-spacing:0.000000px;}
.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;}
}
.ws1_c01093{word-spacing:0.000000px;}
.ws0_c01093{word-spacing:9.212400px;}
.fc0_c01093{color:transparent;}
.fs10_c01093{font-size:28.800000px;}
.fsc_c01093{font-size:31.680000px;}
.fsb_c01093{font-size:37.440000px;}
.fse_c01093{font-size:40.320000px;}
.fs9_c01093{font-size:43.200000px;}
.fsf_c01093{font-size:46.080000px;}
.fsa_c01093{font-size:48.960000px;}
.fs6_c01093{font-size:51.840000px;}
.fs8_c01093{font-size:54.720000px;}
.fs7_c01093{font-size:57.600000px;}
.fs2_c01093{font-size:60.480000px;}
.fs5_c01093{font-size:63.360000px;}
.fs0_c01093{font-size:66.240000px;}
.fsd_c01093{font-size:69.120000px;}
.fs4_c01093{font-size:72.000000px;}
.fs3_c01093{font-size:74.880000px;}
.fs1_c01093{font-size:77.760000px;}
.y0_c01093{bottom:0.000000px;}
.y73_c01093{bottom:44.640000px;}
.y72_c01093{bottom:45.360000px;}
.y71_c01093{bottom:48.240000px;}
.y6f_c01093{bottom:87.120000px;}
.y6e_c01093{bottom:87.840000px;}
.y70_c01093{bottom:90.720000px;}
.y6d_c01093{bottom:91.440000px;}
.y69_c01093{bottom:130.320000px;}
.y6a_c01093{bottom:131.040000px;}
.y6c_c01093{bottom:131.760000px;}
.y6b_c01093{bottom:132.480000px;}
.y68_c01093{bottom:133.200000px;}
.y65_c01093{bottom:171.360000px;}
.y63_c01093{bottom:172.080000px;}
.y67_c01093{bottom:173.520000px;}
.y62_c01093{bottom:174.960000px;}
.y66_c01093{bottom:175.680000px;}
.y64_c01093{bottom:176.400000px;}
.y61_c01093{bottom:214.560000px;}
.y60_c01093{bottom:215.280000px;}
.y5f_c01093{bottom:217.440000px;}
.y5c_c01093{bottom:257.760000px;}
.y5e_c01093{bottom:258.480000px;}
.y5a_c01093{bottom:259.200000px;}
.y5d_c01093{bottom:259.920000px;}
.y5b_c01093{bottom:260.640000px;}
.y55_c01093{bottom:299.520000px;}
.y57_c01093{bottom:300.240000px;}
.y59_c01093{bottom:300.960000px;}
.y54_c01093{bottom:301.680000px;}
.y56_c01093{bottom:302.400000px;}
.y58_c01093{bottom:303.120000px;}
.y50_c01093{bottom:342.720000px;}
.y53_c01093{bottom:343.440000px;}
.y51_c01093{bottom:344.160000px;}
.y4f_c01093{bottom:344.880000px;}
.y52_c01093{bottom:346.320000px;}
.y4a_c01093{bottom:385.200000px;}
.y4e_c01093{bottom:385.920000px;}
.y4b_c01093{bottom:386.640000px;}
.y49_c01093{bottom:387.360000px;}
.y4c_c01093{bottom:388.080000px;}
.y4d_c01093{bottom:388.800000px;}
.y45_c01093{bottom:427.680000px;}
.y48_c01093{bottom:428.400000px;}
.y44_c01093{bottom:429.840000px;}
.y46_c01093{bottom:430.560000px;}
.y47_c01093{bottom:431.280000px;}
.y3f_c01093{bottom:469.440000px;}
.y41_c01093{bottom:470.160000px;}
.y40_c01093{bottom:470.880000px;}
.y3e_c01093{bottom:472.320000px;}
.y42_c01093{bottom:473.040000px;}
.y43_c01093{bottom:473.760000px;}
.y3c_c01093{bottom:511.920000px;}
.y3b_c01093{bottom:514.800000px;}
.y3d_c01093{bottom:516.240000px;}
.y37_c01093{bottom:555.120000px;}
.y36_c01093{bottom:557.280000px;}
.y39_c01093{bottom:558.000000px;}
.y3a_c01093{bottom:558.720000px;}
.y38_c01093{bottom:559.440000px;}
.y33_c01093{bottom:597.600000px;}
.y32_c01093{bottom:599.760000px;}
.y35_c01093{bottom:601.200000px;}
.y34_c01093{bottom:601.920000px;}
.y2f_c01093{bottom:640.800000px;}
.y2e_c01093{bottom:642.240000px;}
.y31_c01093{bottom:642.960000px;}
.y30_c01093{bottom:643.680000px;}
.y2b_c01093{bottom:682.560000px;}
.y2a_c01093{bottom:685.440000px;}
.y2d_c01093{bottom:686.160000px;}
.y2c_c01093{bottom:686.880000px;}
.y27_c01093{bottom:725.040000px;}
.y26_c01093{bottom:727.200000px;}
.y29_c01093{bottom:729.360000px;}
.y28_c01093{bottom:730.080000px;}
.y23_c01093{bottom:767.520000px;}
.y25_c01093{bottom:768.960000px;}
.y21_c01093{bottom:769.680000px;}
.y22_c01093{bottom:770.400000px;}
.y24_c01093{bottom:771.120000px;}
.y1f_c01093{bottom:810.720000px;}
.y20_c01093{bottom:811.440000px;}
.y17_c01093{bottom:812.160000px;}
.y1e_c01093{bottom:812.880000px;}
.y18_c01093{bottom:814.320000px;}
.y1c_c01093{bottom:853.200000px;}
.y14_c01093{bottom:854.640000px;}
.y15_c01093{bottom:855.360000px;}
.y1d_c01093{bottom:856.800000px;}
.y16_c01093{bottom:857.520000px;}
.y19_c01093{bottom:895.680000px;}
.y1a_c01093{bottom:896.400000px;}
.y11_c01093{bottom:897.120000px;}
.y1b_c01093{bottom:897.840000px;}
.y13_c01093{bottom:899.280000px;}
.y12_c01093{bottom:900.000000px;}
.y7_c01093{bottom:937.440000px;}
.y6_c01093{bottom:940.320000px;}
.yc_c01093{bottom:941.040000px;}
.y10_c01093{bottom:942.480000px;}
.y4_c01093{bottom:980.640000px;}
.y3_c01093{bottom:981.360000px;}
.y5_c01093{bottom:982.080000px;}
.yf_c01093{bottom:982.800000px;}
.ya_c01093{bottom:983.520000px;}
.yb_c01093{bottom:985.680000px;}
.y2_c01093{bottom:1023.120000px;}
.y1_c01093{bottom:1024.560000px;}
.ye_c01093{bottom:1026.000000px;}
.y8_c01093{bottom:1027.440000px;}
.y9_c01093{bottom:1028.160000px;}
.yd_c01093{bottom:1089.360000px;}
.h13_c01093{height:25.917187px;}
.hf_c01093{height:28.508906px;}
.he_c01093{height:33.692344px;}
.h11_c01093{height:36.284062px;}
.hc_c01093{height:38.875781px;}
.h12_c01093{height:41.467500px;}
.hd_c01093{height:44.059219px;}
.h8_c01093{height:46.650937px;}
.hb_c01093{height:49.242656px;}
.h9_c01093{height:51.834375px;}
.h4_c01093{height:54.426094px;}
.h7_c01093{height:57.017812px;}
.h2_c01093{height:59.609531px;}
.h10_c01093{height:62.201250px;}
.ha_c01093{height:63.066094px;}
.h6_c01093{height:64.792969px;}
.h5_c01093{height:67.384687px;}
.h3_c01093{height:69.976406px;}
.h0_c01093{height:1136.160000px;}
.h1_c01093{height:1136.250000px;}
.w0_c01093{width:781.200000px;}
.w1_c01093{width:781.500000px;}
.x0_c01093{left:0.000000px;}
.x4_c01093{left:76.320000px;}
.x1_c01093{left:77.760000px;}
.x16_c01093{left:120.960000px;}
.x1c_c01093{left:149.760000px;}
.x2_c01093{left:151.200000px;}
.x3_c01093{left:237.600000px;}
.x17_c01093{left:239.760000px;}
.x28_c01093{left:247.680000px;}
.x22_c01093{left:258.480000px;}
.x18_c01093{left:268.560000px;}
.x29_c01093{left:289.440000px;}
.x24_c01093{left:300.240000px;}
.x12_c01093{left:302.400000px;}
.x19_c01093{left:323.280000px;}
.x25_c01093{left:342.720000px;}
.xe_c01093{left:365.760000px;}
.x23_c01093{left:396.720000px;}
.xf_c01093{left:419.040000px;}
.x13_c01093{left:429.840000px;}
.x10_c01093{left:460.800000px;}
.x14_c01093{left:481.680000px;}
.x1a_c01093{left:505.440000px;}
.x11_c01093{left:509.760000px;}
.x15_c01093{left:515.520000px;}
.x27_c01093{left:547.200000px;}
.x7_c01093{left:548.640000px;}
.x26_c01093{left:558.000000px;}
.x5_c01093{left:559.440000px;}
.x20_c01093{left:579.600000px;}
.x6_c01093{left:581.760000px;}
.x1b_c01093{left:600.480000px;}
.x2b_c01093{left:611.280000px;}
.x1e_c01093{left:633.600000px;}
.x9_c01093{left:635.760000px;}
.x1f_c01093{left:666.720000px;}
.xa_c01093{left:668.160000px;}
.x1d_c01093{left:699.120000px;}
.x8_c01093{left:704.880000px;}
.x2c_c01093{left:708.480000px;}
.xd_c01093{left:709.920000px;}
.xb_c01093{left:711.360000px;}
.x2a_c01093{left:728.640000px;}
.x21_c01093{left:730.080000px;}
.xc_c01093{left:731.520000px;}
@media print{
.v0_c01093{vertical-align:0.000000pt;}
.v1_c01093{vertical-align:7.680000pt;}
.ls0_c01093{letter-spacing:0.000000pt;}
.ws1_c01093{word-spacing:0.000000pt;}
.ws0_c01093{word-spacing:8.188800pt;}
.fs10_c01093{font-size:25.600000pt;}
.fsc_c01093{font-size:28.160000pt;}
.fsb_c01093{font-size:33.280000pt;}
.fse_c01093{font-size:35.840000pt;}
.fs9_c01093{font-size:38.400000pt;}
.fsf_c01093{font-size:40.960000pt;}
.fsa_c01093{font-size:43.520000pt;}
.fs6_c01093{font-size:46.080000pt;}
.fs8_c01093{font-size:48.640000pt;}
.fs7_c01093{font-size:51.200000pt;}
.fs2_c01093{font-size:53.760000pt;}
.fs5_c01093{font-size:56.320000pt;}
.fs0_c01093{font-size:58.880000pt;}
.fsd_c01093{font-size:61.440000pt;}
.fs4_c01093{font-size:64.000000pt;}
.fs3_c01093{font-size:66.560000pt;}
.fs1_c01093{font-size:69.120000pt;}
.y0_c01093{bottom:0.000000pt;}
.y73_c01093{bottom:39.680000pt;}
.y72_c01093{bottom:40.320000pt;}
.y71_c01093{bottom:42.880000pt;}
.y6f_c01093{bottom:77.440000pt;}
.y6e_c01093{bottom:78.080000pt;}
.y70_c01093{bottom:80.640000pt;}
.y6d_c01093{bottom:81.280000pt;}
.y69_c01093{bottom:115.840000pt;}
.y6a_c01093{bottom:116.480000pt;}
.y6c_c01093{bottom:117.120000pt;}
.y6b_c01093{bottom:117.760000pt;}
.y68_c01093{bottom:118.400000pt;}
.y65_c01093{bottom:152.320000pt;}
.y63_c01093{bottom:152.960000pt;}
.y67_c01093{bottom:154.240000pt;}
.y62_c01093{bottom:155.520000pt;}
.y66_c01093{bottom:156.160000pt;}
.y64_c01093{bottom:156.800000pt;}
.y61_c01093{bottom:190.720000pt;}
.y60_c01093{bottom:191.360000pt;}
.y5f_c01093{bottom:193.280000pt;}
.y5c_c01093{bottom:229.120000pt;}
.y5e_c01093{bottom:229.760000pt;}
.y5a_c01093{bottom:230.400000pt;}
.y5d_c01093{bottom:231.040000pt;}
.y5b_c01093{bottom:231.680000pt;}
.y55_c01093{bottom:266.240000pt;}
.y57_c01093{bottom:266.880000pt;}
.y59_c01093{bottom:267.520000pt;}
.y54_c01093{bottom:268.160000pt;}
.y56_c01093{bottom:268.800000pt;}
.y58_c01093{bottom:269.440000pt;}
.y50_c01093{bottom:304.640000pt;}
.y53_c01093{bottom:305.280000pt;}
.y51_c01093{bottom:305.920000pt;}
.y4f_c01093{bottom:306.560000pt;}
.y52_c01093{bottom:307.840000pt;}
.y4a_c01093{bottom:342.400000pt;}
.y4e_c01093{bottom:343.040000pt;}
.y4b_c01093{bottom:343.680000pt;}
.y49_c01093{bottom:344.320000pt;}
.y4c_c01093{bottom:344.960000pt;}
.y4d_c01093{bottom:345.600000pt;}
.y45_c01093{bottom:380.160000pt;}
.y48_c01093{bottom:380.800000pt;}
.y44_c01093{bottom:382.080000pt;}
.y46_c01093{bottom:382.720000pt;}
.y47_c01093{bottom:383.360000pt;}
.y3f_c01093{bottom:417.280000pt;}
.y41_c01093{bottom:417.920000pt;}
.y40_c01093{bottom:418.560000pt;}
.y3e_c01093{bottom:419.840000pt;}
.y42_c01093{bottom:420.480000pt;}
.y43_c01093{bottom:421.120000pt;}
.y3c_c01093{bottom:455.040000pt;}
.y3b_c01093{bottom:457.600000pt;}
.y3d_c01093{bottom:458.880000pt;}
.y37_c01093{bottom:493.440000pt;}
.y36_c01093{bottom:495.360000pt;}
.y39_c01093{bottom:496.000000pt;}
.y3a_c01093{bottom:496.640000pt;}
.y38_c01093{bottom:497.280000pt;}
.y33_c01093{bottom:531.200000pt;}
.y32_c01093{bottom:533.120000pt;}
.y35_c01093{bottom:534.400000pt;}
.y34_c01093{bottom:535.040000pt;}
.y2f_c01093{bottom:569.600000pt;}
.y2e_c01093{bottom:570.880000pt;}
.y31_c01093{bottom:571.520000pt;}
.y30_c01093{bottom:572.160000pt;}
.y2b_c01093{bottom:606.720000pt;}
.y2a_c01093{bottom:609.280000pt;}
.y2d_c01093{bottom:609.920000pt;}
.y2c_c01093{bottom:610.560000pt;}
.y27_c01093{bottom:644.480000pt;}
.y26_c01093{bottom:646.400000pt;}
.y29_c01093{bottom:648.320000pt;}
.y28_c01093{bottom:648.960000pt;}
.y23_c01093{bottom:682.240000pt;}
.y25_c01093{bottom:683.520000pt;}
.y21_c01093{bottom:684.160000pt;}
.y22_c01093{bottom:684.800000pt;}
.y24_c01093{bottom:685.440000pt;}
.y1f_c01093{bottom:720.640000pt;}
.y20_c01093{bottom:721.280000pt;}
.y17_c01093{bottom:721.920000pt;}
.y1e_c01093{bottom:722.560000pt;}
.y18_c01093{bottom:723.840000pt;}
.y1c_c01093{bottom:758.400000pt;}
.y14_c01093{bottom:759.680000pt;}
.y15_c01093{bottom:760.320000pt;}
.y1d_c01093{bottom:761.600000pt;}
.y16_c01093{bottom:762.240000pt;}
.y19_c01093{bottom:796.160000pt;}
.y1a_c01093{bottom:796.800000pt;}
.y11_c01093{bottom:797.440000pt;}
.y1b_c01093{bottom:798.080000pt;}
.y13_c01093{bottom:799.360000pt;}
.y12_c01093{bottom:800.000000pt;}
.y7_c01093{bottom:833.280000pt;}
.y6_c01093{bottom:835.840000pt;}
.yc_c01093{bottom:836.480000pt;}
.y10_c01093{bottom:837.760000pt;}
.y4_c01093{bottom:871.680000pt;}
.y3_c01093{bottom:872.320000pt;}
.y5_c01093{bottom:872.960000pt;}
.yf_c01093{bottom:873.600000pt;}
.ya_c01093{bottom:874.240000pt;}
.yb_c01093{bottom:876.160000pt;}
.y2_c01093{bottom:909.440000pt;}
.y1_c01093{bottom:910.720000pt;}
.ye_c01093{bottom:912.000000pt;}
.y8_c01093{bottom:913.280000pt;}
.y9_c01093{bottom:913.920000pt;}
.yd_c01093{bottom:968.320000pt;}
.h13_c01093{height:23.037500pt;}
.hf_c01093{height:25.341250pt;}
.he_c01093{height:29.948750pt;}
.h11_c01093{height:32.252500pt;}
.hc_c01093{height:34.556250pt;}
.h12_c01093{height:36.860000pt;}
.hd_c01093{height:39.163750pt;}
.h8_c01093{height:41.467500pt;}
.hb_c01093{height:43.771250pt;}
.h9_c01093{height:46.075000pt;}
.h4_c01093{height:48.378750pt;}
.h7_c01093{height:50.682500pt;}
.h2_c01093{height:52.986250pt;}
.h10_c01093{height:55.290000pt;}
.ha_c01093{height:56.058750pt;}
.h6_c01093{height:57.593750pt;}
.h5_c01093{height:59.897500pt;}
.h3_c01093{height:62.201250pt;}
.h0_c01093{height:1009.920000pt;}
.h1_c01093{height:1010.000000pt;}
.w0_c01093{width:694.400000pt;}
.w1_c01093{width:694.666667pt;}
.x0_c01093{left:0.000000pt;}
.x4_c01093{left:67.840000pt;}
.x1_c01093{left:69.120000pt;}
.x16_c01093{left:107.520000pt;}
.x1c_c01093{left:133.120000pt;}
.x2_c01093{left:134.400000pt;}
.x3_c01093{left:211.200000pt;}
.x17_c01093{left:213.120000pt;}
.x28_c01093{left:220.160000pt;}
.x22_c01093{left:229.760000pt;}
.x18_c01093{left:238.720000pt;}
.x29_c01093{left:257.280000pt;}
.x24_c01093{left:266.880000pt;}
.x12_c01093{left:268.800000pt;}
.x19_c01093{left:287.360000pt;}
.x25_c01093{left:304.640000pt;}
.xe_c01093{left:325.120000pt;}
.x23_c01093{left:352.640000pt;}
.xf_c01093{left:372.480000pt;}
.x13_c01093{left:382.080000pt;}
.x10_c01093{left:409.600000pt;}
.x14_c01093{left:428.160000pt;}
.x1a_c01093{left:449.280000pt;}
.x11_c01093{left:453.120000pt;}
.x15_c01093{left:458.240000pt;}
.x27_c01093{left:486.400000pt;}
.x7_c01093{left:487.680000pt;}
.x26_c01093{left:496.000000pt;}
.x5_c01093{left:497.280000pt;}
.x20_c01093{left:515.200000pt;}
.x6_c01093{left:517.120000pt;}
.x1b_c01093{left:533.760000pt;}
.x2b_c01093{left:543.360000pt;}
.x1e_c01093{left:563.200000pt;}
.x9_c01093{left:565.120000pt;}
.x1f_c01093{left:592.640000pt;}
.xa_c01093{left:593.920000pt;}
.x1d_c01093{left:621.440000pt;}
.x8_c01093{left:626.560000pt;}
.x2c_c01093{left:629.760000pt;}
.xd_c01093{left:631.040000pt;}
.xb_c01093{left:632.320000pt;}
.x2a_c01093{left:647.680000pt;}
.x21_c01093{left:648.960000pt;}
.xc_c01093{left:650.240000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f16b9e750b4f7179b0dacd34.woff2')format("woff");}.ff1_c01094{font-family:ff1_c01094;line-height:1.109863;font-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_c01094{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m38_c01094{transform:matrix(0.216150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216150,0.000000,0.000000,0.250000,0,0);}
.m2f_c01094{transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);}
.m1e_c01094{transform:matrix(0.229400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229400,0.000000,0.000000,0.250000,0,0);}
.m40_c01094{transform:matrix(0.235575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235575,0.000000,0.000000,0.250000,0,0);}
.m19_c01094{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m2d_c01094{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m3d_c01094{transform:matrix(0.238700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238700,0.000000,0.000000,0.250000,0,0);}
.m42_c01094{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m39_c01094{transform:matrix(0.248125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248125,0.000000,0.000000,0.250000,0,0);}
.m3e_c01094{transform:matrix(0.249300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249300,0.000000,0.000000,0.250000,0,0);}
.m12_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);}
.m20_c01094{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);}
.m44_c01094{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_c01094{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);}
.m2b_c01094{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m10_c01094{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m2_c01094{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m22_c01094{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.me_c01094{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);}
.m28_c01094{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m9_c01094{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);}
.m43_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);}
.m17_c01094{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m33_c01094{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mb_c01094{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_c01094{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m13_c01094{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);}
.m29_c01094{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01094{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m31_c01094{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m3_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);}
.mc_c01094{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m35_c01094{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.md_c01094{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m36_c01094{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m16_c01094{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01094{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m18_c01094{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m5_c01094{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m14_c01094{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m24_c01094{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m7_c01094{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);}
.m2e_c01094{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m6_c01094{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01094{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.ma_c01094{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m11_c01094{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01094{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m4_c01094{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01094{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m25_c01094{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01094{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_c01094{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);}
.mf_c01094{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m37_c01094{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m15_c01094{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m8_c01094{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_c01094{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m1_c01094{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);}
.m1f_c01094{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m23_c01094{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01094{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m26_c01094{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01094{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01094{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m34_c01094{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m32_c01094{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.m21_c01094{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.v0_c01094{vertical-align:0.000000px;}
.ls0_c01094{letter-spacing:0.000000px;}
.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;}
}
.ws1_c01094{word-spacing:0.000000px;}
.ws0_c01094{word-spacing:45.396259px;}
.fc0_c01094{color:transparent;}
.fsc_c01094{font-size:46.080000px;}
.fs3_c01094{font-size:48.960000px;}
.fs2_c01094{font-size:51.840000px;}
.fs1_c01094{font-size:54.720000px;}
.fs5_c01094{font-size:57.600000px;}
.fs6_c01094{font-size:60.480000px;}
.fsb_c01094{font-size:63.360000px;}
.fs8_c01094{font-size:66.240000px;}
.fsa_c01094{font-size:69.120000px;}
.fs4_c01094{font-size:72.000000px;}
.fs0_c01094{font-size:74.880000px;}
.fs7_c01094{font-size:77.760000px;}
.fsd_c01094{font-size:106.560000px;}
.fs9_c01094{font-size:109.440000px;}
.y0_c01094{bottom:0.000000px;}
.y83_c01094{bottom:43.920000px;}
.y84_c01094{bottom:46.800000px;}
.y7e_c01094{bottom:75.600000px;}
.y80_c01094{bottom:76.320000px;}
.y81_c01094{bottom:77.040000px;}
.y82_c01094{bottom:77.760000px;}
.y7f_c01094{bottom:78.480000px;}
.y7d_c01094{bottom:79.200000px;}
.y78_c01094{bottom:117.360000px;}
.y7a_c01094{bottom:119.520000px;}
.y79_c01094{bottom:120.240000px;}
.y77_c01094{bottom:120.960000px;}
.y7c_c01094{bottom:121.680000px;}
.y7b_c01094{bottom:123.120000px;}
.y73_c01094{bottom:150.480000px;}
.y72_c01094{bottom:160.560000px;}
.y75_c01094{bottom:162.000000px;}
.y76_c01094{bottom:162.720000px;}
.y74_c01094{bottom:163.440000px;}
.y71_c01094{bottom:164.160000px;}
.y70_c01094{bottom:203.040000px;}
.y6e_c01094{bottom:203.760000px;}
.y6f_c01094{bottom:204.480000px;}
.y6a_c01094{bottom:235.440000px;}
.y6b_c01094{bottom:236.160000px;}
.y6c_c01094{bottom:236.880000px;}
.y69_c01094{bottom:237.600000px;}
.y6d_c01094{bottom:238.320000px;}
.y68_c01094{bottom:277.920000px;}
.y62_c01094{bottom:309.600000px;}
.y64_c01094{bottom:311.040000px;}
.y66_c01094{bottom:311.760000px;}
.y61_c01094{bottom:312.480000px;}
.y63_c01094{bottom:313.200000px;}
.y65_c01094{bottom:313.920000px;}
.y67_c01094{bottom:314.640000px;}
.y5e_c01094{bottom:352.800000px;}
.y5f_c01094{bottom:354.240000px;}
.y5d_c01094{bottom:354.960000px;}
.y60_c01094{bottom:355.680000px;}
.y5a_c01094{bottom:395.280000px;}
.y5b_c01094{bottom:396.000000px;}
.y5c_c01094{bottom:398.880000px;}
.y55_c01094{bottom:426.960000px;}
.y57_c01094{bottom:427.680000px;}
.y54_c01094{bottom:429.840000px;}
.y56_c01094{bottom:430.560000px;}
.y58_c01094{bottom:431.280000px;}
.y59_c01094{bottom:432.720000px;}
.y4f_c01094{bottom:470.160000px;}
.y51_c01094{bottom:470.880000px;}
.y4e_c01094{bottom:471.600000px;}
.y52_c01094{bottom:473.040000px;}
.y50_c01094{bottom:473.760000px;}
.y53_c01094{bottom:475.200000px;}
.y49_c01094{bottom:511.920000px;}
.y4d_c01094{bottom:514.080000px;}
.y48_c01094{bottom:514.800000px;}
.y4a_c01094{bottom:515.520000px;}
.y4b_c01094{bottom:516.960000px;}
.y4c_c01094{bottom:517.680000px;}
.y45_c01094{bottom:554.400000px;}
.y47_c01094{bottom:556.560000px;}
.y44_c01094{bottom:557.280000px;}
.y46_c01094{bottom:558.720000px;}
.y40_c01094{bottom:596.880000px;}
.y3e_c01094{bottom:597.600000px;}
.y3d_c01094{bottom:599.040000px;}
.y42_c01094{bottom:599.760000px;}
.y3f_c01094{bottom:601.200000px;}
.y41_c01094{bottom:601.920000px;}
.y43_c01094{bottom:602.640000px;}
.y37_c01094{bottom:639.360000px;}
.y38_c01094{bottom:640.800000px;}
.y36_c01094{bottom:641.520000px;}
.y3a_c01094{bottom:642.240000px;}
.y3b_c01094{bottom:643.680000px;}
.y39_c01094{bottom:644.400000px;}
.y3c_c01094{bottom:645.120000px;}
.y33_c01094{bottom:672.480000px;}
.y2f_c01094{bottom:681.840000px;}
.y30_c01094{bottom:683.280000px;}
.y2e_c01094{bottom:684.720000px;}
.y31_c01094{bottom:685.440000px;}
.y32_c01094{bottom:686.880000px;}
.y34_c01094{bottom:687.600000px;}
.y35_c01094{bottom:688.320000px;}
.y2a_c01094{bottom:724.320000px;}
.y29_c01094{bottom:727.200000px;}
.y2d_c01094{bottom:727.920000px;}
.y2b_c01094{bottom:730.080000px;}
.y2c_c01094{bottom:730.800000px;}
.y25_c01094{bottom:767.520000px;}
.y24_c01094{bottom:768.960000px;}
.y27_c01094{bottom:771.120000px;}
.y26_c01094{bottom:772.560000px;}
.y28_c01094{bottom:774.720000px;}
.y1f_c01094{bottom:810.000000px;}
.y1e_c01094{bottom:812.160000px;}
.y21_c01094{bottom:813.600000px;}
.y22_c01094{bottom:814.320000px;}
.y20_c01094{bottom:815.040000px;}
.y23_c01094{bottom:816.480000px;}
.y19_c01094{bottom:853.200000px;}
.y18_c01094{bottom:854.640000px;}
.y1c_c01094{bottom:856.080000px;}
.y1b_c01094{bottom:856.800000px;}
.y1d_c01094{bottom:857.520000px;}
.y1a_c01094{bottom:858.240000px;}
.y13_c01094{bottom:895.680000px;}
.y12_c01094{bottom:897.840000px;}
.y16_c01094{bottom:898.560000px;}
.y14_c01094{bottom:900.720000px;}
.y15_c01094{bottom:901.440000px;}
.y17_c01094{bottom:902.160000px;}
.ye_c01094{bottom:938.160000px;}
.yd_c01094{bottom:940.320000px;}
.y11_c01094{bottom:942.480000px;}
.y10_c01094{bottom:943.200000px;}
.yf_c01094{bottom:943.920000px;}
.y9_c01094{bottom:981.360000px;}
.y8_c01094{bottom:982.800000px;}
.yb_c01094{bottom:984.960000px;}
.yc_c01094{bottom:985.680000px;}
.ya_c01094{bottom:987.120000px;}
.y3_c01094{bottom:1023.840000px;}
.y2_c01094{bottom:1025.280000px;}
.y4_c01094{bottom:1028.880000px;}
.y5_c01094{bottom:1029.600000px;}
.y6_c01094{bottom:1030.320000px;}
.y7_c01094{bottom:1031.040000px;}
.y1_c01094{bottom:1089.360000px;}
.he_c01094{height:41.467500px;}
.h5_c01094{height:44.059219px;}
.h4_c01094{height:46.650937px;}
.h3_c01094{height:49.242656px;}
.h7_c01094{height:51.834375px;}
.h8_c01094{height:54.426094px;}
.hd_c01094{height:57.017812px;}
.ha_c01094{height:59.609531px;}
.hc_c01094{height:62.201250px;}
.h6_c01094{height:64.792969px;}
.h2_c01094{height:67.384687px;}
.h9_c01094{height:69.976406px;}
.hf_c01094{height:95.893594px;}
.hb_c01094{height:98.485312px;}
.h0_c01094{height:1136.160000px;}
.h1_c01094{height:1136.250000px;}
.w0_c01094{width:781.920000px;}
.w1_c01094{width:782.250000px;}
.x0_c01094{left:0.000000px;}
.x2_c01094{left:73.440000px;}
.xd_c01094{left:74.880000px;}
.x2a_c01094{left:76.320000px;}
.x3_c01094{left:147.600000px;}
.xb_c01094{left:149.040000px;}
.x1d_c01094{left:151.200000px;}
.x25_c01094{left:203.760000px;}
.x10_c01094{left:244.800000px;}
.x1f_c01094{left:276.480000px;}
.x23_c01094{left:278.640000px;}
.x17_c01094{left:288.000000px;}
.x11_c01094{left:298.080000px;}
.x15_c01094{left:310.320000px;}
.x20_c01094{left:321.120000px;}
.x19_c01094{left:331.200000px;}
.x26_c01094{left:332.640000px;}
.x12_c01094{left:342.000000px;}
.x1a_c01094{left:343.440000px;}
.x2b_c01094{left:373.680000px;}
.x21_c01094{left:375.840000px;}
.x1e_c01094{left:405.360000px;}
.x24_c01094{left:406.800000px;}
.x2c_c01094{left:418.320000px;}
.x13_c01094{left:427.680000px;}
.x27_c01094{left:460.080000px;}
.x1b_c01094{left:470.880000px;}
.x14_c01094{left:481.680000px;}
.x16_c01094{left:491.760000px;}
.x22_c01094{left:503.280000px;}
.x4_c01094{left:546.480000px;}
.x1c_c01094{left:557.280000px;}
.x28_c01094{left:558.720000px;}
.xa_c01094{left:576.720000px;}
.x5_c01094{left:578.880000px;}
.xe_c01094{left:598.320000px;}
.x18_c01094{left:610.560000px;}
.xc_c01094{left:631.440000px;}
.x6_c01094{left:632.880000px;}
.x7_c01094{left:665.280000px;}
.x29_c01094{left:666.720000px;}
.x1_c01094{left:687.600000px;}
.x8_c01094{left:697.680000px;}
.x9_c01094{left:707.760000px;}
.x2d_c01094{left:709.920000px;}
.xf_c01094{left:727.920000px;}
@media print{
.v0_c01094{vertical-align:0.000000pt;}
.ls0_c01094{letter-spacing:0.000000pt;}
.ws1_c01094{word-spacing:0.000000pt;}
.ws0_c01094{word-spacing:40.352230pt;}
.fsc_c01094{font-size:40.960000pt;}
.fs3_c01094{font-size:43.520000pt;}
.fs2_c01094{font-size:46.080000pt;}
.fs1_c01094{font-size:48.640000pt;}
.fs5_c01094{font-size:51.200000pt;}
.fs6_c01094{font-size:53.760000pt;}
.fsb_c01094{font-size:56.320000pt;}
.fs8_c01094{font-size:58.880000pt;}
.fsa_c01094{font-size:61.440000pt;}
.fs4_c01094{font-size:64.000000pt;}
.fs0_c01094{font-size:66.560000pt;}
.fs7_c01094{font-size:69.120000pt;}
.fsd_c01094{font-size:94.720000pt;}
.fs9_c01094{font-size:97.280000pt;}
.y0_c01094{bottom:0.000000pt;}
.y83_c01094{bottom:39.040000pt;}
.y84_c01094{bottom:41.600000pt;}
.y7e_c01094{bottom:67.200000pt;}
.y80_c01094{bottom:67.840000pt;}
.y81_c01094{bottom:68.480000pt;}
.y82_c01094{bottom:69.120000pt;}
.y7f_c01094{bottom:69.760000pt;}
.y7d_c01094{bottom:70.400000pt;}
.y78_c01094{bottom:104.320000pt;}
.y7a_c01094{bottom:106.240000pt;}
.y79_c01094{bottom:106.880000pt;}
.y77_c01094{bottom:107.520000pt;}
.y7c_c01094{bottom:108.160000pt;}
.y7b_c01094{bottom:109.440000pt;}
.y73_c01094{bottom:133.760000pt;}
.y72_c01094{bottom:142.720000pt;}
.y75_c01094{bottom:144.000000pt;}
.y76_c01094{bottom:144.640000pt;}
.y74_c01094{bottom:145.280000pt;}
.y71_c01094{bottom:145.920000pt;}
.y70_c01094{bottom:180.480000pt;}
.y6e_c01094{bottom:181.120000pt;}
.y6f_c01094{bottom:181.760000pt;}
.y6a_c01094{bottom:209.280000pt;}
.y6b_c01094{bottom:209.920000pt;}
.y6c_c01094{bottom:210.560000pt;}
.y69_c01094{bottom:211.200000pt;}
.y6d_c01094{bottom:211.840000pt;}
.y68_c01094{bottom:247.040000pt;}
.y62_c01094{bottom:275.200000pt;}
.y64_c01094{bottom:276.480000pt;}
.y66_c01094{bottom:277.120000pt;}
.y61_c01094{bottom:277.760000pt;}
.y63_c01094{bottom:278.400000pt;}
.y65_c01094{bottom:279.040000pt;}
.y67_c01094{bottom:279.680000pt;}
.y5e_c01094{bottom:313.600000pt;}
.y5f_c01094{bottom:314.880000pt;}
.y5d_c01094{bottom:315.520000pt;}
.y60_c01094{bottom:316.160000pt;}
.y5a_c01094{bottom:351.360000pt;}
.y5b_c01094{bottom:352.000000pt;}
.y5c_c01094{bottom:354.560000pt;}
.y55_c01094{bottom:379.520000pt;}
.y57_c01094{bottom:380.160000pt;}
.y54_c01094{bottom:382.080000pt;}
.y56_c01094{bottom:382.720000pt;}
.y58_c01094{bottom:383.360000pt;}
.y59_c01094{bottom:384.640000pt;}
.y4f_c01094{bottom:417.920000pt;}
.y51_c01094{bottom:418.560000pt;}
.y4e_c01094{bottom:419.200000pt;}
.y52_c01094{bottom:420.480000pt;}
.y50_c01094{bottom:421.120000pt;}
.y53_c01094{bottom:422.400000pt;}
.y49_c01094{bottom:455.040000pt;}
.y4d_c01094{bottom:456.960000pt;}
.y48_c01094{bottom:457.600000pt;}
.y4a_c01094{bottom:458.240000pt;}
.y4b_c01094{bottom:459.520000pt;}
.y4c_c01094{bottom:460.160000pt;}
.y45_c01094{bottom:492.800000pt;}
.y47_c01094{bottom:494.720000pt;}
.y44_c01094{bottom:495.360000pt;}
.y46_c01094{bottom:496.640000pt;}
.y40_c01094{bottom:530.560000pt;}
.y3e_c01094{bottom:531.200000pt;}
.y3d_c01094{bottom:532.480000pt;}
.y42_c01094{bottom:533.120000pt;}
.y3f_c01094{bottom:534.400000pt;}
.y41_c01094{bottom:535.040000pt;}
.y43_c01094{bottom:535.680000pt;}
.y37_c01094{bottom:568.320000pt;}
.y38_c01094{bottom:569.600000pt;}
.y36_c01094{bottom:570.240000pt;}
.y3a_c01094{bottom:570.880000pt;}
.y3b_c01094{bottom:572.160000pt;}
.y39_c01094{bottom:572.800000pt;}
.y3c_c01094{bottom:573.440000pt;}
.y33_c01094{bottom:597.760000pt;}
.y2f_c01094{bottom:606.080000pt;}
.y30_c01094{bottom:607.360000pt;}
.y2e_c01094{bottom:608.640000pt;}
.y31_c01094{bottom:609.280000pt;}
.y32_c01094{bottom:610.560000pt;}
.y34_c01094{bottom:611.200000pt;}
.y35_c01094{bottom:611.840000pt;}
.y2a_c01094{bottom:643.840000pt;}
.y29_c01094{bottom:646.400000pt;}
.y2d_c01094{bottom:647.040000pt;}
.y2b_c01094{bottom:648.960000pt;}
.y2c_c01094{bottom:649.600000pt;}
.y25_c01094{bottom:682.240000pt;}
.y24_c01094{bottom:683.520000pt;}
.y27_c01094{bottom:685.440000pt;}
.y26_c01094{bottom:686.720000pt;}
.y28_c01094{bottom:688.640000pt;}
.y1f_c01094{bottom:720.000000pt;}
.y1e_c01094{bottom:721.920000pt;}
.y21_c01094{bottom:723.200000pt;}
.y22_c01094{bottom:723.840000pt;}
.y20_c01094{bottom:724.480000pt;}
.y23_c01094{bottom:725.760000pt;}
.y19_c01094{bottom:758.400000pt;}
.y18_c01094{bottom:759.680000pt;}
.y1c_c01094{bottom:760.960000pt;}
.y1b_c01094{bottom:761.600000pt;}
.y1d_c01094{bottom:762.240000pt;}
.y1a_c01094{bottom:762.880000pt;}
.y13_c01094{bottom:796.160000pt;}
.y12_c01094{bottom:798.080000pt;}
.y16_c01094{bottom:798.720000pt;}
.y14_c01094{bottom:800.640000pt;}
.y15_c01094{bottom:801.280000pt;}
.y17_c01094{bottom:801.920000pt;}
.ye_c01094{bottom:833.920000pt;}
.yd_c01094{bottom:835.840000pt;}
.y11_c01094{bottom:837.760000pt;}
.y10_c01094{bottom:838.400000pt;}
.yf_c01094{bottom:839.040000pt;}
.y9_c01094{bottom:872.320000pt;}
.y8_c01094{bottom:873.600000pt;}
.yb_c01094{bottom:875.520000pt;}
.yc_c01094{bottom:876.160000pt;}
.ya_c01094{bottom:877.440000pt;}
.y3_c01094{bottom:910.080000pt;}
.y2_c01094{bottom:911.360000pt;}
.y4_c01094{bottom:914.560000pt;}
.y5_c01094{bottom:915.200000pt;}
.y6_c01094{bottom:915.840000pt;}
.y7_c01094{bottom:916.480000pt;}
.y1_c01094{bottom:968.320000pt;}
.he_c01094{height:36.860000pt;}
.h5_c01094{height:39.163750pt;}
.h4_c01094{height:41.467500pt;}
.h3_c01094{height:43.771250pt;}
.h7_c01094{height:46.075000pt;}
.h8_c01094{height:48.378750pt;}
.hd_c01094{height:50.682500pt;}
.ha_c01094{height:52.986250pt;}
.hc_c01094{height:55.290000pt;}
.h6_c01094{height:57.593750pt;}
.h2_c01094{height:59.897500pt;}
.h9_c01094{height:62.201250pt;}
.hf_c01094{height:85.238750pt;}
.hb_c01094{height:87.542500pt;}
.h0_c01094{height:1009.920000pt;}
.h1_c01094{height:1010.000000pt;}
.w0_c01094{width:695.040000pt;}
.w1_c01094{width:695.333333pt;}
.x0_c01094{left:0.000000pt;}
.x2_c01094{left:65.280000pt;}
.xd_c01094{left:66.560000pt;}
.x2a_c01094{left:67.840000pt;}
.x3_c01094{left:131.200000pt;}
.xb_c01094{left:132.480000pt;}
.x1d_c01094{left:134.400000pt;}
.x25_c01094{left:181.120000pt;}
.x10_c01094{left:217.600000pt;}
.x1f_c01094{left:245.760000pt;}
.x23_c01094{left:247.680000pt;}
.x17_c01094{left:256.000000pt;}
.x11_c01094{left:264.960000pt;}
.x15_c01094{left:275.840000pt;}
.x20_c01094{left:285.440000pt;}
.x19_c01094{left:294.400000pt;}
.x26_c01094{left:295.680000pt;}
.x12_c01094{left:304.000000pt;}
.x1a_c01094{left:305.280000pt;}
.x2b_c01094{left:332.160000pt;}
.x21_c01094{left:334.080000pt;}
.x1e_c01094{left:360.320000pt;}
.x24_c01094{left:361.600000pt;}
.x2c_c01094{left:371.840000pt;}
.x13_c01094{left:380.160000pt;}
.x27_c01094{left:408.960000pt;}
.x1b_c01094{left:418.560000pt;}
.x14_c01094{left:428.160000pt;}
.x16_c01094{left:437.120000pt;}
.x22_c01094{left:447.360000pt;}
.x4_c01094{left:485.760000pt;}
.x1c_c01094{left:495.360000pt;}
.x28_c01094{left:496.640000pt;}
.xa_c01094{left:512.640000pt;}
.x5_c01094{left:514.560000pt;}
.xe_c01094{left:531.840000pt;}
.x18_c01094{left:542.720000pt;}
.xc_c01094{left:561.280000pt;}
.x6_c01094{left:562.560000pt;}
.x7_c01094{left:591.360000pt;}
.x29_c01094{left:592.640000pt;}
.x1_c01094{left:611.200000pt;}
.x8_c01094{left:620.160000pt;}
.x9_c01094{left:629.120000pt;}
.x2d_c01094{left:631.040000pt;}
.xf_c01094{left:647.040000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_51a17284e258683412ff3299.woff2')format("woff");}.ff1_c01095{font-family:ff1_c01095;line-height:1.109863;font-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_c01095{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m9_c01095{transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);}
.m1a_c01095{transform:matrix(0.194275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194275,0.000000,0.000000,0.250000,0,0);}
.m36_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);}
.mb_c01095{transform:matrix(0.228075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228075,0.000000,0.000000,0.250000,0,0);}
.m1d_c01095{transform:matrix(0.228575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228575,0.000000,0.000000,0.250000,0,0);}
.ma_c01095{transform:matrix(0.236475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236475,0.000000,0.000000,0.250000,0,0);}
.m4d_c01095{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m22_c01095{transform:matrix(0.237825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237825,0.000000,0.000000,0.250000,0,0);}
.m50_c01095{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m51_c01095{transform:matrix(0.241325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241325,0.000000,0.000000,0.250000,0,0);}
.m2_c01095{transform:matrix(0.242775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242775,0.000000,0.000000,0.250000,0,0);}
.m43_c01095{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m19_c01095{transform:matrix(0.248575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248575,0.000000,0.000000,0.250000,0,0);}
.m27_c01095{transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);}
.mf_c01095{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);}
.m3b_c01095{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);}
.m34_c01095{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);}
.m49_c01095{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m21_c01095{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);}
.m35_c01095{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);}
.m3a_c01095{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01095{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m23_c01095{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m11_c01095{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);}
.m48_c01095{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m15_c01095{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m8_c01095{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.md_c01095{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mc_c01095{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m10_c01095{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m18_c01095{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01095{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.me_c01095{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01095{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m46_c01095{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m14_c01095{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m5_c01095{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01095{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m12_c01095{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m44_c01095{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01095{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01095{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m20_c01095{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01095{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m7_c01095{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01095{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m4_c01095{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01095{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);}
.m31_c01095{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);}
.m38_c01095{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m52_c01095{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01095{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m0_c01095{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);}
.m37_c01095{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01095{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m24_c01095{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);}
.m4c_c01095{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);}
.m4f_c01095{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m33_c01095{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m1_c01095{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m42_c01095{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);}
.m1c_c01095{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);}
.m1b_c01095{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01095{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m41_c01095{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m16_c01095{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m40_c01095{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m17_c01095{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01095{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01095{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m45_c01095{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);}
.m39_c01095{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01095{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m30_c01095{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m28_c01095{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m47_c01095{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m3_c01095{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m32_c01095{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m29_c01095{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m25_c01095{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01095{transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);}
.m6_c01095{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.v2_c01095{vertical-align:-8.640000px;}
.v4_c01095{vertical-align:-2.880000px;}
.v0_c01095{vertical-align:0.000000px;}
.v3_c01095{vertical-align:5.760000px;}
.v1_c01095{vertical-align:8.640000px;}
.ls0_c01095{letter-spacing:0.000000px;}
.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;}
}
.ws2_c01095{word-spacing:-2.799600px;}
.ws6_c01095{word-spacing:0.000000px;}
.ws4_c01095{word-spacing:7.736400px;}
.ws5_c01095{word-spacing:9.474000px;}
.ws3_c01095{word-spacing:10.274063px;}
.ws0_c01095{word-spacing:12.615600px;}
.ws1_c01095{word-spacing:19.701562px;}
.fc0_c01095{color:transparent;}
.fse_c01095{font-size:2.880000px;}
.fs4_c01095{font-size:25.920000px;}
.fsd_c01095{font-size:34.560000px;}
.fs12_c01095{font-size:43.200000px;}
.fsc_c01095{font-size:46.080000px;}
.fs9_c01095{font-size:48.960000px;}
.fs3_c01095{font-size:51.840000px;}
.fs6_c01095{font-size:54.720000px;}
.fs1_c01095{font-size:57.600000px;}
.fs5_c01095{font-size:60.480000px;}
.fsa_c01095{font-size:63.360000px;}
.fs8_c01095{font-size:66.240000px;}
.fs10_c01095{font-size:69.120000px;}
.fs7_c01095{font-size:72.000000px;}
.fs0_c01095{font-size:74.880000px;}
.fs2_c01095{font-size:77.760000px;}
.fsf_c01095{font-size:89.280000px;}
.fsb_c01095{font-size:95.040000px;}
.fs11_c01095{font-size:103.680000px;}
.y0_c01095{bottom:0.000000px;}
.y7c_c01095{bottom:33.840000px;}
.y7a_c01095{bottom:34.560000px;}
.y7b_c01095{bottom:36.000000px;}
.y79_c01095{bottom:62.640000px;}
.y76_c01095{bottom:64.080000px;}
.y78_c01095{bottom:65.520000px;}
.y77_c01095{bottom:66.240000px;}
.y75_c01095{bottom:66.960000px;}
.y73_c01095{bottom:105.840000px;}
.y6f_c01095{bottom:107.280000px;}
.y70_c01095{bottom:108.000000px;}
.y74_c01095{bottom:108.720000px;}
.y71_c01095{bottom:109.440000px;}
.y6e_c01095{bottom:110.160000px;}
.y72_c01095{bottom:110.880000px;}
.y6d_c01095{bottom:111.600000px;}
.y6c_c01095{bottom:149.040000px;}
.y6b_c01095{bottom:150.480000px;}
.y6a_c01095{bottom:151.200000px;}
.y68_c01095{bottom:151.920000px;}
.y69_c01095{bottom:152.640000px;}
.y66_c01095{bottom:192.240000px;}
.y67_c01095{bottom:192.960000px;}
.y65_c01095{bottom:193.680000px;}
.y63_c01095{bottom:194.400000px;}
.y62_c01095{bottom:195.840000px;}
.y64_c01095{bottom:196.560000px;}
.y60_c01095{bottom:227.520000px;}
.y5f_c01095{bottom:234.720000px;}
.y5e_c01095{bottom:236.160000px;}
.y5d_c01095{bottom:237.600000px;}
.y61_c01095{bottom:238.320000px;}
.y58_c01095{bottom:277.200000px;}
.y57_c01095{bottom:279.360000px;}
.y56_c01095{bottom:310.320000px;}
.y54_c01095{bottom:311.040000px;}
.y55_c01095{bottom:312.480000px;}
.y52_c01095{bottom:351.360000px;}
.y53_c01095{bottom:352.800000px;}
.y51_c01095{bottom:353.520000px;}
.y5c_c01095{bottom:354.240000px;}
.y4c_c01095{bottom:393.840000px;}
.y4e_c01095{bottom:394.560000px;}
.y4d_c01095{bottom:395.280000px;}
.y50_c01095{bottom:396.000000px;}
.y4b_c01095{bottom:396.720000px;}
.y4f_c01095{bottom:397.440000px;}
.y48_c01095{bottom:437.040000px;}
.y4a_c01095{bottom:437.760000px;}
.y46_c01095{bottom:438.480000px;}
.y49_c01095{bottom:439.200000px;}
.y47_c01095{bottom:439.920000px;}
.y42_c01095{bottom:468.720000px;}
.y45_c01095{bottom:470.160000px;}
.y43_c01095{bottom:470.880000px;}
.y41_c01095{bottom:471.600000px;}
.y44_c01095{bottom:472.320000px;}
.y3e_c01095{bottom:511.920000px;}
.y3f_c01095{bottom:512.640000px;}
.y40_c01095{bottom:513.360000px;}
.y3d_c01095{bottom:514.080000px;}
.y5b_c01095{bottom:514.800000px;}
.y59_c01095{bottom:515.520000px;}
.y5a_c01095{bottom:516.240000px;}
.y3c_c01095{bottom:545.040000px;}
.y39_c01095{bottom:547.920000px;}
.y37_c01095{bottom:555.120000px;}
.y38_c01095{bottom:555.840000px;}
.y3b_c01095{bottom:556.560000px;}
.y36_c01095{bottom:557.280000px;}
.y3a_c01095{bottom:558.720000px;}
.y31_c01095{bottom:629.280000px;}
.y35_c01095{bottom:630.000000px;}
.y32_c01095{bottom:630.720000px;}
.y30_c01095{bottom:631.440000px;}
.y34_c01095{bottom:632.160000px;}
.y33_c01095{bottom:632.880000px;}
.y2e_c01095{bottom:672.480000px;}
.y2f_c01095{bottom:673.200000px;}
.y2c_c01095{bottom:673.920000px;}
.y2d_c01095{bottom:675.360000px;}
.y28_c01095{bottom:703.440000px;}
.y2a_c01095{bottom:704.160000px;}
.y27_c01095{bottom:705.600000px;}
.y2b_c01095{bottom:707.040000px;}
.y29_c01095{bottom:707.760000px;}
.y24_c01095{bottom:737.280000px;}
.y20_c01095{bottom:739.440000px;}
.y25_c01095{bottom:740.160000px;}
.y26_c01095{bottom:743.040000px;}
.y1d_c01095{bottom:745.920000px;}
.y1f_c01095{bottom:747.360000px;}
.y22_c01095{bottom:748.080000px;}
.y1c_c01095{bottom:748.800000px;}
.y1e_c01095{bottom:749.520000px;}
.y23_c01095{bottom:750.240000px;}
.y21_c01095{bottom:750.960000px;}
.y16_c01095{bottom:787.680000px;}
.y17_c01095{bottom:789.120000px;}
.y15_c01095{bottom:789.840000px;}
.y19_c01095{bottom:790.560000px;}
.y1b_c01095{bottom:791.280000px;}
.y18_c01095{bottom:792.000000px;}
.y1a_c01095{bottom:792.720000px;}
.y12_c01095{bottom:830.880000px;}
.y11_c01095{bottom:833.040000px;}
.y13_c01095{bottom:833.760000px;}
.y14_c01095{bottom:835.200000px;}
.ye_c01095{bottom:872.640000px;}
.yc_c01095{bottom:905.040000px;}
.yb_c01095{bottom:906.480000px;}
.y10_c01095{bottom:907.920000px;}
.yd_c01095{bottom:910.080000px;}
.ya_c01095{bottom:947.520000px;}
.y9_c01095{bottom:948.240000px;}
.y3_c01095{bottom:979.920000px;}
.y5_c01095{bottom:980.640000px;}
.y2_c01095{bottom:982.080000px;}
.y8_c01095{bottom:982.800000px;}
.y6_c01095{bottom:983.520000px;}
.y4_c01095{bottom:984.240000px;}
.yf_c01095{bottom:984.960000px;}
.y7_c01095{bottom:985.680000px;}
.y1_c01095{bottom:1086.480000px;}
.h11_c01095{height:2.591719px;}
.h6_c01095{height:23.325469px;}
.h10_c01095{height:31.100625px;}
.h16_c01095{height:38.875781px;}
.hf_c01095{height:41.467500px;}
.hc_c01095{height:44.059219px;}
.h5_c01095{height:46.650937px;}
.h8_c01095{height:49.242656px;}
.h3_c01095{height:51.834375px;}
.h15_c01095{height:53.561250px;}
.h7_c01095{height:54.426094px;}
.h17_c01095{height:55.002656px;}
.hd_c01095{height:57.017812px;}
.hb_c01095{height:57.882656px;}
.ha_c01095{height:59.609531px;}
.h13_c01095{height:62.201250px;}
.h9_c01095{height:64.792969px;}
.h2_c01095{height:67.384687px;}
.h4_c01095{height:69.976406px;}
.h12_c01095{height:80.343281px;}
.he_c01095{height:85.526719px;}
.h14_c01095{height:93.301875px;}
.h0_c01095{height:1137.600000px;}
.h1_c01095{height:1137.750000px;}
.w0_c01095{width:781.920000px;}
.w1_c01095{width:782.250000px;}
.x0_c01095{left:0.000000px;}
.x2_c01095{left:73.440000px;}
.x3_c01095{left:147.600000px;}
.xb_c01095{left:149.040000px;}
.xc_c01095{left:182.880000px;}
.x1e_c01095{left:200.880000px;}
.x20_c01095{left:234.000000px;}
.x1f_c01095{left:244.080000px;}
.x30_c01095{left:254.880000px;}
.xd_c01095{left:276.480000px;}
.x18_c01095{left:286.560000px;}
.x2a_c01095{left:297.360000px;}
.x31_c01095{left:308.160000px;}
.x4_c01095{left:319.680000px;}
.x23_c01095{left:321.120000px;}
.x19_c01095{left:329.760000px;}
.x1d_c01095{left:340.560000px;}
.x14_c01095{left:351.360000px;}
.x21_c01095{left:361.440000px;}
.x5_c01095{left:371.520000px;}
.x2c_c01095{left:383.760000px;}
.x26_c01095{left:393.840000px;}
.xe_c01095{left:405.360000px;}
.x22_c01095{left:414.720000px;}
.x6_c01095{left:416.160000px;}
.x2d_c01095{left:425.520000px;}
.x28_c01095{left:447.840000px;}
.x2e_c01095{left:449.280000px;}
.x17_c01095{left:458.640000px;}
.x7_c01095{left:460.800000px;}
.x1a_c01095{left:468.720000px;}
.x8_c01095{left:470.160000px;}
.x1b_c01095{left:479.520000px;}
.x2b_c01095{left:516.960000px;}
.x1c_c01095{left:519.120000px;}
.x27_c01095{left:522.720000px;}
.x24_c01095{left:545.040000px;}
.xf_c01095{left:546.480000px;}
.x9_c01095{left:556.560000px;}
.x10_c01095{left:576.720000px;}
.xa_c01095{left:578.880000px;}
.x2f_c01095{left:628.560000px;}
.x15_c01095{left:630.720000px;}
.x11_c01095{left:632.880000px;}
.x25_c01095{left:662.400000px;}
.x16_c01095{left:663.840000px;}
.x12_c01095{left:665.280000px;}
.x1_c01095{left:696.960000px;}
.x29_c01095{left:704.880000px;}
.x13_c01095{left:707.040000px;}
@media print{
.v2_c01095{vertical-align:-7.680000pt;}
.v4_c01095{vertical-align:-2.560000pt;}
.v0_c01095{vertical-align:0.000000pt;}
.v3_c01095{vertical-align:5.120000pt;}
.v1_c01095{vertical-align:7.680000pt;}
.ls0_c01095{letter-spacing:0.000000pt;}
.ws2_c01095{word-spacing:-2.488533pt;}
.ws6_c01095{word-spacing:0.000000pt;}
.ws4_c01095{word-spacing:6.876800pt;}
.ws5_c01095{word-spacing:8.421333pt;}
.ws3_c01095{word-spacing:9.132500pt;}
.ws0_c01095{word-spacing:11.213867pt;}
.ws1_c01095{word-spacing:17.512499pt;}
.fse_c01095{font-size:2.560000pt;}
.fs4_c01095{font-size:23.040000pt;}
.fsd_c01095{font-size:30.720000pt;}
.fs12_c01095{font-size:38.400000pt;}
.fsc_c01095{font-size:40.960000pt;}
.fs9_c01095{font-size:43.520000pt;}
.fs3_c01095{font-size:46.080000pt;}
.fs6_c01095{font-size:48.640000pt;}
.fs1_c01095{font-size:51.200000pt;}
.fs5_c01095{font-size:53.760000pt;}
.fsa_c01095{font-size:56.320000pt;}
.fs8_c01095{font-size:58.880000pt;}
.fs10_c01095{font-size:61.440000pt;}
.fs7_c01095{font-size:64.000000pt;}
.fs0_c01095{font-size:66.560000pt;}
.fs2_c01095{font-size:69.120000pt;}
.fsf_c01095{font-size:79.360000pt;}
.fsb_c01095{font-size:84.480000pt;}
.fs11_c01095{font-size:92.160000pt;}
.y0_c01095{bottom:0.000000pt;}
.y7c_c01095{bottom:30.080000pt;}
.y7a_c01095{bottom:30.720000pt;}
.y7b_c01095{bottom:32.000000pt;}
.y79_c01095{bottom:55.680000pt;}
.y76_c01095{bottom:56.960000pt;}
.y78_c01095{bottom:58.240000pt;}
.y77_c01095{bottom:58.880000pt;}
.y75_c01095{bottom:59.520000pt;}
.y73_c01095{bottom:94.080000pt;}
.y6f_c01095{bottom:95.360000pt;}
.y70_c01095{bottom:96.000000pt;}
.y74_c01095{bottom:96.640000pt;}
.y71_c01095{bottom:97.280000pt;}
.y6e_c01095{bottom:97.920000pt;}
.y72_c01095{bottom:98.560000pt;}
.y6d_c01095{bottom:99.200000pt;}
.y6c_c01095{bottom:132.480000pt;}
.y6b_c01095{bottom:133.760000pt;}
.y6a_c01095{bottom:134.400000pt;}
.y68_c01095{bottom:135.040000pt;}
.y69_c01095{bottom:135.680000pt;}
.y66_c01095{bottom:170.880000pt;}
.y67_c01095{bottom:171.520000pt;}
.y65_c01095{bottom:172.160000pt;}
.y63_c01095{bottom:172.800000pt;}
.y62_c01095{bottom:174.080000pt;}
.y64_c01095{bottom:174.720000pt;}
.y60_c01095{bottom:202.240000pt;}
.y5f_c01095{bottom:208.640000pt;}
.y5e_c01095{bottom:209.920000pt;}
.y5d_c01095{bottom:211.200000pt;}
.y61_c01095{bottom:211.840000pt;}
.y58_c01095{bottom:246.400000pt;}
.y57_c01095{bottom:248.320000pt;}
.y56_c01095{bottom:275.840000pt;}
.y54_c01095{bottom:276.480000pt;}
.y55_c01095{bottom:277.760000pt;}
.y52_c01095{bottom:312.320000pt;}
.y53_c01095{bottom:313.600000pt;}
.y51_c01095{bottom:314.240000pt;}
.y5c_c01095{bottom:314.880000pt;}
.y4c_c01095{bottom:350.080000pt;}
.y4e_c01095{bottom:350.720000pt;}
.y4d_c01095{bottom:351.360000pt;}
.y50_c01095{bottom:352.000000pt;}
.y4b_c01095{bottom:352.640000pt;}
.y4f_c01095{bottom:353.280000pt;}
.y48_c01095{bottom:388.480000pt;}
.y4a_c01095{bottom:389.120000pt;}
.y46_c01095{bottom:389.760000pt;}
.y49_c01095{bottom:390.400000pt;}
.y47_c01095{bottom:391.040000pt;}
.y42_c01095{bottom:416.640000pt;}
.y45_c01095{bottom:417.920000pt;}
.y43_c01095{bottom:418.560000pt;}
.y41_c01095{bottom:419.200000pt;}
.y44_c01095{bottom:419.840000pt;}
.y3e_c01095{bottom:455.040000pt;}
.y3f_c01095{bottom:455.680000pt;}
.y40_c01095{bottom:456.320000pt;}
.y3d_c01095{bottom:456.960000pt;}
.y5b_c01095{bottom:457.600000pt;}
.y59_c01095{bottom:458.240000pt;}
.y5a_c01095{bottom:458.880000pt;}
.y3c_c01095{bottom:484.480000pt;}
.y39_c01095{bottom:487.040000pt;}
.y37_c01095{bottom:493.440000pt;}
.y38_c01095{bottom:494.080000pt;}
.y3b_c01095{bottom:494.720000pt;}
.y36_c01095{bottom:495.360000pt;}
.y3a_c01095{bottom:496.640000pt;}
.y31_c01095{bottom:559.360000pt;}
.y35_c01095{bottom:560.000000pt;}
.y32_c01095{bottom:560.640000pt;}
.y30_c01095{bottom:561.280000pt;}
.y34_c01095{bottom:561.920000pt;}
.y33_c01095{bottom:562.560000pt;}
.y2e_c01095{bottom:597.760000pt;}
.y2f_c01095{bottom:598.400000pt;}
.y2c_c01095{bottom:599.040000pt;}
.y2d_c01095{bottom:600.320000pt;}
.y28_c01095{bottom:625.280000pt;}
.y2a_c01095{bottom:625.920000pt;}
.y27_c01095{bottom:627.200000pt;}
.y2b_c01095{bottom:628.480000pt;}
.y29_c01095{bottom:629.120000pt;}
.y24_c01095{bottom:655.360000pt;}
.y20_c01095{bottom:657.280000pt;}
.y25_c01095{bottom:657.920000pt;}
.y26_c01095{bottom:660.480000pt;}
.y1d_c01095{bottom:663.040000pt;}
.y1f_c01095{bottom:664.320000pt;}
.y22_c01095{bottom:664.960000pt;}
.y1c_c01095{bottom:665.600000pt;}
.y1e_c01095{bottom:666.240000pt;}
.y23_c01095{bottom:666.880000pt;}
.y21_c01095{bottom:667.520000pt;}
.y16_c01095{bottom:700.160000pt;}
.y17_c01095{bottom:701.440000pt;}
.y15_c01095{bottom:702.080000pt;}
.y19_c01095{bottom:702.720000pt;}
.y1b_c01095{bottom:703.360000pt;}
.y18_c01095{bottom:704.000000pt;}
.y1a_c01095{bottom:704.640000pt;}
.y12_c01095{bottom:738.560000pt;}
.y11_c01095{bottom:740.480000pt;}
.y13_c01095{bottom:741.120000pt;}
.y14_c01095{bottom:742.400000pt;}
.ye_c01095{bottom:775.680000pt;}
.yc_c01095{bottom:804.480000pt;}
.yb_c01095{bottom:805.760000pt;}
.y10_c01095{bottom:807.040000pt;}
.yd_c01095{bottom:808.960000pt;}
.ya_c01095{bottom:842.240000pt;}
.y9_c01095{bottom:842.880000pt;}
.y3_c01095{bottom:871.040000pt;}
.y5_c01095{bottom:871.680000pt;}
.y2_c01095{bottom:872.960000pt;}
.y8_c01095{bottom:873.600000pt;}
.y6_c01095{bottom:874.240000pt;}
.y4_c01095{bottom:874.880000pt;}
.yf_c01095{bottom:875.520000pt;}
.y7_c01095{bottom:876.160000pt;}
.y1_c01095{bottom:965.760000pt;}
.h11_c01095{height:2.303750pt;}
.h6_c01095{height:20.733750pt;}
.h10_c01095{height:27.645000pt;}
.h16_c01095{height:34.556250pt;}
.hf_c01095{height:36.860000pt;}
.hc_c01095{height:39.163750pt;}
.h5_c01095{height:41.467500pt;}
.h8_c01095{height:43.771250pt;}
.h3_c01095{height:46.075000pt;}
.h15_c01095{height:47.610000pt;}
.h7_c01095{height:48.378750pt;}
.h17_c01095{height:48.891250pt;}
.hd_c01095{height:50.682500pt;}
.hb_c01095{height:51.451250pt;}
.ha_c01095{height:52.986250pt;}
.h13_c01095{height:55.290000pt;}
.h9_c01095{height:57.593750pt;}
.h2_c01095{height:59.897500pt;}
.h4_c01095{height:62.201250pt;}
.h12_c01095{height:71.416250pt;}
.he_c01095{height:76.023750pt;}
.h14_c01095{height:82.935000pt;}
.h0_c01095{height:1011.200000pt;}
.h1_c01095{height:1011.333333pt;}
.w0_c01095{width:695.040000pt;}
.w1_c01095{width:695.333333pt;}
.x0_c01095{left:0.000000pt;}
.x2_c01095{left:65.280000pt;}
.x3_c01095{left:131.200000pt;}
.xb_c01095{left:132.480000pt;}
.xc_c01095{left:162.560000pt;}
.x1e_c01095{left:178.560000pt;}
.x20_c01095{left:208.000000pt;}
.x1f_c01095{left:216.960000pt;}
.x30_c01095{left:226.560000pt;}
.xd_c01095{left:245.760000pt;}
.x18_c01095{left:254.720000pt;}
.x2a_c01095{left:264.320000pt;}
.x31_c01095{left:273.920000pt;}
.x4_c01095{left:284.160000pt;}
.x23_c01095{left:285.440000pt;}
.x19_c01095{left:293.120000pt;}
.x1d_c01095{left:302.720000pt;}
.x14_c01095{left:312.320000pt;}
.x21_c01095{left:321.280000pt;}
.x5_c01095{left:330.240000pt;}
.x2c_c01095{left:341.120000pt;}
.x26_c01095{left:350.080000pt;}
.xe_c01095{left:360.320000pt;}
.x22_c01095{left:368.640000pt;}
.x6_c01095{left:369.920000pt;}
.x2d_c01095{left:378.240000pt;}
.x28_c01095{left:398.080000pt;}
.x2e_c01095{left:399.360000pt;}
.x17_c01095{left:407.680000pt;}
.x7_c01095{left:409.600000pt;}
.x1a_c01095{left:416.640000pt;}
.x8_c01095{left:417.920000pt;}
.x1b_c01095{left:426.240000pt;}
.x2b_c01095{left:459.520000pt;}
.x1c_c01095{left:461.440000pt;}
.x27_c01095{left:464.640000pt;}
.x24_c01095{left:484.480000pt;}
.xf_c01095{left:485.760000pt;}
.x9_c01095{left:494.720000pt;}
.x10_c01095{left:512.640000pt;}
.xa_c01095{left:514.560000pt;}
.x2f_c01095{left:558.720000pt;}
.x15_c01095{left:560.640000pt;}
.x11_c01095{left:562.560000pt;}
.x25_c01095{left:588.800000pt;}
.x16_c01095{left:590.080000pt;}
.x12_c01095{left:591.360000pt;}
.x1_c01095{left:619.520000pt;}
.x29_c01095{left:626.560000pt;}
.x13_c01095{left:628.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_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_ec6675e1164e287bee052e8c.woff2')format("woff");}.ff1_c01096{font-family:ff1_c01096;line-height:1.109863;font-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_c01096{transform:matrix(0.246275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246275,0.000000,0.000000,0.250000,0,0);}
.m15_c01096{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m1a_c01096{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m5_c01096{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m14_c01096{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);}
.m20_c01096{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_c01096{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);}
.m2b_c01096{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);}
.m45_c01096{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);}
.m37_c01096{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m7_c01096{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01096{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mc_c01096{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m9_c01096{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.me_c01096{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m27_c01096{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01096{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m23_c01096{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m22_c01096{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m30_c01096{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.md_c01096{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m10_c01096{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m31_c01096{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.ma_c01096{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01096{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m2_c01096{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m25_c01096{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m16_c01096{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m6_c01096{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);}
.m24_c01096{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);}
.m3c_c01096{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m29_c01096{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);}
.m47_c01096{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01096{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_c01096{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1_c01096{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);}
.m3_c01096{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01096{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);}
.m1b_c01096{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);}
.m0_c01096{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);}
.m42_c01096{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);}
.m35_c01096{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);}
.m3a_c01096{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m39_c01096{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m44_c01096{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01096{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);}
.m2d_c01096{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);}
.m1d_c01096{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01096{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m32_c01096{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);}
.m26_c01096{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.mf_c01096{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);}
.m4_c01096{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m34_c01096{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m12_c01096{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);}
.m19_c01096{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m17_c01096{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01096{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01096{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m40_c01096{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m46_c01096{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);}
.m33_c01096{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m11_c01096{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.mb_c01096{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m13_c01096{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01096{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m43_c01096{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m36_c01096{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m41_c01096{transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);}
.m48_c01096{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m38_c01096{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01096{transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);}
.m21_c01096{transform:matrix(0.860000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.860000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.860000,0.000000,0.000000,0.250000,0,0);}
.v1_c01096{vertical-align:-2.880000px;}
.v0_c01096{vertical-align:0.000000px;}
.v2_c01096{vertical-align:2.880000px;}
.ls0_c01096{letter-spacing:0.000000px;}
.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;}
}
.ws3_c01096{word-spacing:0.000000px;}
.ws2_c01096{word-spacing:13.136947px;}
.ws0_c01096{word-spacing:13.140000px;}
.ws1_c01096{word-spacing:187.986000px;}
.fc0_c01096{color:transparent;}
.fsd_c01096{font-size:34.560000px;}
.fse_c01096{font-size:37.440000px;}
.fsc_c01096{font-size:43.200000px;}
.fs9_c01096{font-size:46.080000px;}
.fs2_c01096{font-size:48.960000px;}
.fs4_c01096{font-size:51.840000px;}
.fs6_c01096{font-size:54.720000px;}
.fs5_c01096{font-size:57.600000px;}
.fs1_c01096{font-size:60.480000px;}
.fs8_c01096{font-size:63.360000px;}
.fsb_c01096{font-size:66.240000px;}
.fs0_c01096{font-size:69.120000px;}
.fs7_c01096{font-size:72.000000px;}
.fs3_c01096{font-size:74.880000px;}
.fsa_c01096{font-size:77.760000px;}
.y0_c01096{bottom:0.000000px;}
.y7a_c01096{bottom:52.560000px;}
.y78_c01096{bottom:54.720000px;}
.y77_c01096{bottom:56.160000px;}
.y79_c01096{bottom:56.880000px;}
.y76_c01096{bottom:95.040000px;}
.y75_c01096{bottom:95.760000px;}
.y74_c01096{bottom:96.480000px;}
.y73_c01096{bottom:97.200000px;}
.y72_c01096{bottom:98.640000px;}
.y70_c01096{bottom:138.240000px;}
.y6f_c01096{bottom:138.960000px;}
.y6d_c01096{bottom:139.680000px;}
.y71_c01096{bottom:140.400000px;}
.y6c_c01096{bottom:141.120000px;}
.y6e_c01096{bottom:142.560000px;}
.y6a_c01096{bottom:183.600000px;}
.y6b_c01096{bottom:184.320000px;}
.y68_c01096{bottom:212.400000px;}
.y69_c01096{bottom:213.120000px;}
.y66_c01096{bottom:213.840000px;}
.y65_c01096{bottom:214.560000px;}
.y67_c01096{bottom:215.280000px;}
.y64_c01096{bottom:256.320000px;}
.y62_c01096{bottom:257.040000px;}
.y61_c01096{bottom:257.760000px;}
.y63_c01096{bottom:258.480000px;}
.y5c_c01096{bottom:298.800000px;}
.y5f_c01096{bottom:299.520000px;}
.y5b_c01096{bottom:300.240000px;}
.y5e_c01096{bottom:300.960000px;}
.y5d_c01096{bottom:301.680000px;}
.y60_c01096{bottom:302.400000px;}
.y58_c01096{bottom:341.280000px;}
.y57_c01096{bottom:342.000000px;}
.y56_c01096{bottom:342.720000px;}
.y59_c01096{bottom:343.440000px;}
.y5a_c01096{bottom:344.160000px;}
.y52_c01096{bottom:384.480000px;}
.y51_c01096{bottom:385.200000px;}
.y55_c01096{bottom:385.920000px;}
.y54_c01096{bottom:386.640000px;}
.y53_c01096{bottom:387.360000px;}
.y4e_c01096{bottom:426.960000px;}
.y4d_c01096{bottom:427.680000px;}
.y4c_c01096{bottom:428.400000px;}
.y50_c01096{bottom:429.120000px;}
.y4f_c01096{bottom:429.840000px;}
.y49_c01096{bottom:469.440000px;}
.y48_c01096{bottom:470.160000px;}
.y47_c01096{bottom:470.880000px;}
.y4b_c01096{bottom:471.600000px;}
.y4a_c01096{bottom:472.320000px;}
.y42_c01096{bottom:511.920000px;}
.y46_c01096{bottom:512.640000px;}
.y41_c01096{bottom:513.360000px;}
.y44_c01096{bottom:514.080000px;}
.y45_c01096{bottom:514.800000px;}
.y43_c01096{bottom:515.520000px;}
.y3e_c01096{bottom:554.400000px;}
.y3d_c01096{bottom:555.120000px;}
.y3c_c01096{bottom:555.840000px;}
.y3f_c01096{bottom:557.280000px;}
.y40_c01096{bottom:558.000000px;}
.y38_c01096{bottom:597.600000px;}
.y37_c01096{bottom:598.320000px;}
.y3b_c01096{bottom:599.040000px;}
.y3a_c01096{bottom:599.760000px;}
.y39_c01096{bottom:600.480000px;}
.y32_c01096{bottom:640.080000px;}
.y34_c01096{bottom:641.520000px;}
.y33_c01096{bottom:642.240000px;}
.y35_c01096{bottom:642.960000px;}
.y36_c01096{bottom:643.680000px;}
.y2e_c01096{bottom:681.120000px;}
.y2d_c01096{bottom:682.560000px;}
.y2f_c01096{bottom:683.280000px;}
.y30_c01096{bottom:684.000000px;}
.y31_c01096{bottom:685.440000px;}
.y29_c01096{bottom:725.040000px;}
.y2a_c01096{bottom:726.480000px;}
.y2b_c01096{bottom:727.200000px;}
.y2c_c01096{bottom:727.920000px;}
.y28_c01096{bottom:756.000000px;}
.y26_c01096{bottom:757.440000px;}
.y27_c01096{bottom:759.600000px;}
.y20_c01096{bottom:789.120000px;}
.y22_c01096{bottom:789.840000px;}
.y23_c01096{bottom:790.560000px;}
.y21_c01096{bottom:792.000000px;}
.y24_c01096{bottom:792.720000px;}
.y25_c01096{bottom:793.440000px;}
.y1c_c01096{bottom:830.160000px;}
.y1b_c01096{bottom:832.320000px;}
.y1f_c01096{bottom:833.760000px;}
.y1d_c01096{bottom:834.480000px;}
.y1e_c01096{bottom:835.200000px;}
.y17_c01096{bottom:873.360000px;}
.y15_c01096{bottom:874.800000px;}
.y19_c01096{bottom:876.240000px;}
.y18_c01096{bottom:876.960000px;}
.y16_c01096{bottom:877.680000px;}
.y1a_c01096{bottom:878.400000px;}
.y14_c01096{bottom:915.840000px;}
.y12_c01096{bottom:918.000000px;}
.y13_c01096{bottom:920.160000px;}
.yc_c01096{bottom:949.680000px;}
.ye_c01096{bottom:950.400000px;}
.y10_c01096{bottom:951.120000px;}
.yd_c01096{bottom:951.840000px;}
.yf_c01096{bottom:953.280000px;}
.y11_c01096{bottom:954.000000px;}
.y9_c01096{bottom:991.440000px;}
.ya_c01096{bottom:992.880000px;}
.y8_c01096{bottom:994.320000px;}
.yb_c01096{bottom:995.760000px;}
.y2_c01096{bottom:1023.840000px;}
.y3_c01096{bottom:1024.560000px;}
.y6_c01096{bottom:1026.000000px;}
.y5_c01096{bottom:1026.720000px;}
.y7_c01096{bottom:1027.440000px;}
.y4_c01096{bottom:1028.160000px;}
.y1_c01096{bottom:1084.320000px;}
.hf_c01096{height:31.100625px;}
.h10_c01096{height:33.692344px;}
.he_c01096{height:38.875781px;}
.hb_c01096{height:41.467500px;}
.h4_c01096{height:44.059219px;}
.h6_c01096{height:46.650937px;}
.h8_c01096{height:49.242656px;}
.h7_c01096{height:51.834375px;}
.h3_c01096{height:54.426094px;}
.h11_c01096{height:54.714375px;}
.ha_c01096{height:57.017812px;}
.hd_c01096{height:59.609531px;}
.h2_c01096{height:62.201250px;}
.h9_c01096{height:64.792969px;}
.h5_c01096{height:67.384687px;}
.hc_c01096{height:69.976406px;}
.h0_c01096{height:1136.160000px;}
.h1_c01096{height:1136.250000px;}
.w1_c01096{width:783.750000px;}
.w0_c01096{width:784.080000px;}
.x0_c01096{left:0.000000px;}
.x2_c01096{left:79.920000px;}
.x13_c01096{left:142.560000px;}
.x16_c01096{left:154.080000px;}
.x3_c01096{left:155.520000px;}
.xd_c01096{left:208.080000px;}
.x4_c01096{left:239.760000px;}
.x25_c01096{left:241.200000px;}
.x10_c01096{left:293.760000px;}
.x5_c01096{left:304.560000px;}
.x11_c01096{left:348.480000px;}
.x6_c01096{left:358.560000px;}
.xe_c01096{left:390.240000px;}
.x21_c01096{left:400.320000px;}
.x17_c01096{left:401.760000px;}
.x1f_c01096{left:411.840000px;}
.x12_c01096{left:444.240000px;}
.x22_c01096{left:453.600000px;}
.x18_c01096{left:465.840000px;}
.x14_c01096{left:477.360000px;}
.x7_c01096{left:486.000000px;}
.xf_c01096{left:498.240000px;}
.x19_c01096{left:509.040000px;}
.x15_c01096{left:530.640000px;}
.x1e_c01096{left:552.240000px;}
.x8_c01096{left:553.680000px;}
.x9_c01096{left:585.360000px;}
.x20_c01096{left:604.800000px;}
.x1b_c01096{left:637.920000px;}
.xa_c01096{left:639.360000px;}
.x23_c01096{left:671.040000px;}
.xb_c01096{left:672.480000px;}
.x1_c01096{left:676.080000px;}
.x1a_c01096{left:704.160000px;}
.x1c_c01096{left:714.240000px;}
.xc_c01096{left:715.680000px;}
.x24_c01096{left:723.600000px;}
.x1d_c01096{left:734.400000px;}
@media print{
.v1_c01096{vertical-align:-2.560000pt;}
.v0_c01096{vertical-align:0.000000pt;}
.v2_c01096{vertical-align:2.560000pt;}
.ls0_c01096{letter-spacing:0.000000pt;}
.ws3_c01096{word-spacing:0.000000pt;}
.ws2_c01096{word-spacing:11.677286pt;}
.ws0_c01096{word-spacing:11.680000pt;}
.ws1_c01096{word-spacing:167.098667pt;}
.fsd_c01096{font-size:30.720000pt;}
.fse_c01096{font-size:33.280000pt;}
.fsc_c01096{font-size:38.400000pt;}
.fs9_c01096{font-size:40.960000pt;}
.fs2_c01096{font-size:43.520000pt;}
.fs4_c01096{font-size:46.080000pt;}
.fs6_c01096{font-size:48.640000pt;}
.fs5_c01096{font-size:51.200000pt;}
.fs1_c01096{font-size:53.760000pt;}
.fs8_c01096{font-size:56.320000pt;}
.fsb_c01096{font-size:58.880000pt;}
.fs0_c01096{font-size:61.440000pt;}
.fs7_c01096{font-size:64.000000pt;}
.fs3_c01096{font-size:66.560000pt;}
.fsa_c01096{font-size:69.120000pt;}
.y0_c01096{bottom:0.000000pt;}
.y7a_c01096{bottom:46.720000pt;}
.y78_c01096{bottom:48.640000pt;}
.y77_c01096{bottom:49.920000pt;}
.y79_c01096{bottom:50.560000pt;}
.y76_c01096{bottom:84.480000pt;}
.y75_c01096{bottom:85.120000pt;}
.y74_c01096{bottom:85.760000pt;}
.y73_c01096{bottom:86.400000pt;}
.y72_c01096{bottom:87.680000pt;}
.y70_c01096{bottom:122.880000pt;}
.y6f_c01096{bottom:123.520000pt;}
.y6d_c01096{bottom:124.160000pt;}
.y71_c01096{bottom:124.800000pt;}
.y6c_c01096{bottom:125.440000pt;}
.y6e_c01096{bottom:126.720000pt;}
.y6a_c01096{bottom:163.200000pt;}
.y6b_c01096{bottom:163.840000pt;}
.y68_c01096{bottom:188.800000pt;}
.y69_c01096{bottom:189.440000pt;}
.y66_c01096{bottom:190.080000pt;}
.y65_c01096{bottom:190.720000pt;}
.y67_c01096{bottom:191.360000pt;}
.y64_c01096{bottom:227.840000pt;}
.y62_c01096{bottom:228.480000pt;}
.y61_c01096{bottom:229.120000pt;}
.y63_c01096{bottom:229.760000pt;}
.y5c_c01096{bottom:265.600000pt;}
.y5f_c01096{bottom:266.240000pt;}
.y5b_c01096{bottom:266.880000pt;}
.y5e_c01096{bottom:267.520000pt;}
.y5d_c01096{bottom:268.160000pt;}
.y60_c01096{bottom:268.800000pt;}
.y58_c01096{bottom:303.360000pt;}
.y57_c01096{bottom:304.000000pt;}
.y56_c01096{bottom:304.640000pt;}
.y59_c01096{bottom:305.280000pt;}
.y5a_c01096{bottom:305.920000pt;}
.y52_c01096{bottom:341.760000pt;}
.y51_c01096{bottom:342.400000pt;}
.y55_c01096{bottom:343.040000pt;}
.y54_c01096{bottom:343.680000pt;}
.y53_c01096{bottom:344.320000pt;}
.y4e_c01096{bottom:379.520000pt;}
.y4d_c01096{bottom:380.160000pt;}
.y4c_c01096{bottom:380.800000pt;}
.y50_c01096{bottom:381.440000pt;}
.y4f_c01096{bottom:382.080000pt;}
.y49_c01096{bottom:417.280000pt;}
.y48_c01096{bottom:417.920000pt;}
.y47_c01096{bottom:418.560000pt;}
.y4b_c01096{bottom:419.200000pt;}
.y4a_c01096{bottom:419.840000pt;}
.y42_c01096{bottom:455.040000pt;}
.y46_c01096{bottom:455.680000pt;}
.y41_c01096{bottom:456.320000pt;}
.y44_c01096{bottom:456.960000pt;}
.y45_c01096{bottom:457.600000pt;}
.y43_c01096{bottom:458.240000pt;}
.y3e_c01096{bottom:492.800000pt;}
.y3d_c01096{bottom:493.440000pt;}
.y3c_c01096{bottom:494.080000pt;}
.y3f_c01096{bottom:495.360000pt;}
.y40_c01096{bottom:496.000000pt;}
.y38_c01096{bottom:531.200000pt;}
.y37_c01096{bottom:531.840000pt;}
.y3b_c01096{bottom:532.480000pt;}
.y3a_c01096{bottom:533.120000pt;}
.y39_c01096{bottom:533.760000pt;}
.y32_c01096{bottom:568.960000pt;}
.y34_c01096{bottom:570.240000pt;}
.y33_c01096{bottom:570.880000pt;}
.y35_c01096{bottom:571.520000pt;}
.y36_c01096{bottom:572.160000pt;}
.y2e_c01096{bottom:605.440000pt;}
.y2d_c01096{bottom:606.720000pt;}
.y2f_c01096{bottom:607.360000pt;}
.y30_c01096{bottom:608.000000pt;}
.y31_c01096{bottom:609.280000pt;}
.y29_c01096{bottom:644.480000pt;}
.y2a_c01096{bottom:645.760000pt;}
.y2b_c01096{bottom:646.400000pt;}
.y2c_c01096{bottom:647.040000pt;}
.y28_c01096{bottom:672.000000pt;}
.y26_c01096{bottom:673.280000pt;}
.y27_c01096{bottom:675.200000pt;}
.y20_c01096{bottom:701.440000pt;}
.y22_c01096{bottom:702.080000pt;}
.y23_c01096{bottom:702.720000pt;}
.y21_c01096{bottom:704.000000pt;}
.y24_c01096{bottom:704.640000pt;}
.y25_c01096{bottom:705.280000pt;}
.y1c_c01096{bottom:737.920000pt;}
.y1b_c01096{bottom:739.840000pt;}
.y1f_c01096{bottom:741.120000pt;}
.y1d_c01096{bottom:741.760000pt;}
.y1e_c01096{bottom:742.400000pt;}
.y17_c01096{bottom:776.320000pt;}
.y15_c01096{bottom:777.600000pt;}
.y19_c01096{bottom:778.880000pt;}
.y18_c01096{bottom:779.520000pt;}
.y16_c01096{bottom:780.160000pt;}
.y1a_c01096{bottom:780.800000pt;}
.y14_c01096{bottom:814.080000pt;}
.y12_c01096{bottom:816.000000pt;}
.y13_c01096{bottom:817.920000pt;}
.yc_c01096{bottom:844.160000pt;}
.ye_c01096{bottom:844.800000pt;}
.y10_c01096{bottom:845.440000pt;}
.yd_c01096{bottom:846.080000pt;}
.yf_c01096{bottom:847.360000pt;}
.y11_c01096{bottom:848.000000pt;}
.y9_c01096{bottom:881.280000pt;}
.ya_c01096{bottom:882.560000pt;}
.y8_c01096{bottom:883.840000pt;}
.yb_c01096{bottom:885.120000pt;}
.y2_c01096{bottom:910.080000pt;}
.y3_c01096{bottom:910.720000pt;}
.y6_c01096{bottom:912.000000pt;}
.y5_c01096{bottom:912.640000pt;}
.y7_c01096{bottom:913.280000pt;}
.y4_c01096{bottom:913.920000pt;}
.y1_c01096{bottom:963.840000pt;}
.hf_c01096{height:27.645000pt;}
.h10_c01096{height:29.948750pt;}
.he_c01096{height:34.556250pt;}
.hb_c01096{height:36.860000pt;}
.h4_c01096{height:39.163750pt;}
.h6_c01096{height:41.467500pt;}
.h8_c01096{height:43.771250pt;}
.h7_c01096{height:46.075000pt;}
.h3_c01096{height:48.378750pt;}
.h11_c01096{height:48.635000pt;}
.ha_c01096{height:50.682500pt;}
.hd_c01096{height:52.986250pt;}
.h2_c01096{height:55.290000pt;}
.h9_c01096{height:57.593750pt;}
.h5_c01096{height:59.897500pt;}
.hc_c01096{height:62.201250pt;}
.h0_c01096{height:1009.920000pt;}
.h1_c01096{height:1010.000000pt;}
.w1_c01096{width:696.666667pt;}
.w0_c01096{width:696.960000pt;}
.x0_c01096{left:0.000000pt;}
.x2_c01096{left:71.040000pt;}
.x13_c01096{left:126.720000pt;}
.x16_c01096{left:136.960000pt;}
.x3_c01096{left:138.240000pt;}
.xd_c01096{left:184.960000pt;}
.x4_c01096{left:213.120000pt;}
.x25_c01096{left:214.400000pt;}
.x10_c01096{left:261.120000pt;}
.x5_c01096{left:270.720000pt;}
.x11_c01096{left:309.760000pt;}
.x6_c01096{left:318.720000pt;}
.xe_c01096{left:346.880000pt;}
.x21_c01096{left:355.840000pt;}
.x17_c01096{left:357.120000pt;}
.x1f_c01096{left:366.080000pt;}
.x12_c01096{left:394.880000pt;}
.x22_c01096{left:403.200000pt;}
.x18_c01096{left:414.080000pt;}
.x14_c01096{left:424.320000pt;}
.x7_c01096{left:432.000000pt;}
.xf_c01096{left:442.880000pt;}
.x19_c01096{left:452.480000pt;}
.x15_c01096{left:471.680000pt;}
.x1e_c01096{left:490.880000pt;}
.x8_c01096{left:492.160000pt;}
.x9_c01096{left:520.320000pt;}
.x20_c01096{left:537.600000pt;}
.x1b_c01096{left:567.040000pt;}
.xa_c01096{left:568.320000pt;}
.x23_c01096{left:596.480000pt;}
.xb_c01096{left:597.760000pt;}
.x1_c01096{left:600.960000pt;}
.x1a_c01096{left:625.920000pt;}
.x1c_c01096{left:634.880000pt;}
.xc_c01096{left:636.160000pt;}
.x24_c01096{left:643.200000pt;}
.x1d_c01096{left:652.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ef79fb5ef690bb616d2c73a0.woff2')format("woff");}.ff1_c01097{font-family:ff1_c01097;line-height:1.109863;font-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_c01097{transform:matrix(0.167875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167875,0.000000,0.000000,0.250000,0,0);}
.m3d_c01097{transform:matrix(0.207900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207900,0.000000,0.000000,0.250000,0,0);}
.m39_c01097{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m41_c01097{transform:matrix(0.221450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221450,0.000000,0.000000,0.250000,0,0);}
.m12_c01097{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);}
.m43_c01097{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_c01097{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01097{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m27_c01097{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m13_c01097{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m44_c01097{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m18_c01097{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m8_c01097{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m6_c01097{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m21_c01097{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01097{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01097{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m17_c01097{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01097{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mb_c01097{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m24_c01097{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m2_c01097{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.me_c01097{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01097{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m0_c01097{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01097{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);}
.m3c_c01097{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m45_c01097{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m7_c01097{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m38_c01097{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);}
.m47_c01097{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01097{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m31_c01097{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01097{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);}
.m34_c01097{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);}
.ma_c01097{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m1_c01097{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m19_c01097{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);}
.m5_c01097{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m33_c01097{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01097{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01097{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m26_c01097{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m28_c01097{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);}
.m3e_c01097{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.mc_c01097{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);}
.m30_c01097{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01097{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m36_c01097{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);}
.m15_c01097{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01097{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01097{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);}
.m40_c01097{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m22_c01097{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m29_c01097{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);}
.m35_c01097{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m4_c01097{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01097{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);}
.m3_c01097{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m20_c01097{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m42_c01097{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m48_c01097{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m16_c01097{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m25_c01097{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m32_c01097{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);}
.md_c01097{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m10_c01097{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);}
.m37_c01097{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);}
.m1c_c01097{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01097{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m46_c01097{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m23_c01097{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m49_c01097{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);}
.m11_c01097{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m9_c01097{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.v4_c01097{vertical-align:-5.760000px;}
.v3_c01097{vertical-align:-2.880000px;}
.v0_c01097{vertical-align:0.000000px;}
.v1_c01097{vertical-align:2.880000px;}
.v2_c01097{vertical-align:37.440000px;}
.ls0_c01097{letter-spacing:0.000000px;}
.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;}
}
.ws2_c01097{word-spacing:-36.306960px;}
.ws6_c01097{word-spacing:-0.312240px;}
.ws7_c01097{word-spacing:0.000000px;}
.ws4_c01097{word-spacing:0.465840px;}
.ws3_c01097{word-spacing:2.021760px;}
.ws5_c01097{word-spacing:12.615600px;}
.ws1_c01097{word-spacing:14.957055px;}
.ws0_c01097{word-spacing:187.986000px;}
.fc0_c01097{color:transparent;}
.fsa_c01097{font-size:34.560000px;}
.fs6_c01097{font-size:37.440000px;}
.fsd_c01097{font-size:40.320000px;}
.fse_c01097{font-size:46.080000px;}
.fs3_c01097{font-size:48.960000px;}
.fs4_c01097{font-size:51.840000px;}
.fs8_c01097{font-size:54.720000px;}
.fs1_c01097{font-size:57.600000px;}
.fs2_c01097{font-size:60.480000px;}
.fs7_c01097{font-size:63.360000px;}
.fs9_c01097{font-size:66.240000px;}
.fs5_c01097{font-size:69.120000px;}
.fs0_c01097{font-size:72.000000px;}
.fsc_c01097{font-size:80.640000px;}
.fsb_c01097{font-size:95.040000px;}
.y0_c01097{bottom:0.000000px;}
.y89_c01097{bottom:18.720000px;}
.y86_c01097{bottom:19.440000px;}
.y88_c01097{bottom:20.160000px;}
.y85_c01097{bottom:20.880000px;}
.y87_c01097{bottom:21.600000px;}
.y84_c01097{bottom:56.160000px;}
.y83_c01097{bottom:57.600000px;}
.y82_c01097{bottom:58.320000px;}
.y81_c01097{bottom:59.040000px;}
.y80_c01097{bottom:99.360000px;}
.y7f_c01097{bottom:100.080000px;}
.y7e_c01097{bottom:101.520000px;}
.y7d_c01097{bottom:141.840000px;}
.y7b_c01097{bottom:142.560000px;}
.y7a_c01097{bottom:144.000000px;}
.y7c_c01097{bottom:144.720000px;}
.y79_c01097{bottom:184.320000px;}
.y76_c01097{bottom:185.040000px;}
.y75_c01097{bottom:185.760000px;}
.y77_c01097{bottom:186.480000px;}
.y74_c01097{bottom:187.200000px;}
.y78_c01097{bottom:187.920000px;}
.y72_c01097{bottom:226.800000px;}
.y71_c01097{bottom:227.520000px;}
.y70_c01097{bottom:228.960000px;}
.y73_c01097{bottom:230.400000px;}
.y6d_c01097{bottom:270.000000px;}
.y6e_c01097{bottom:270.720000px;}
.y6f_c01097{bottom:271.440000px;}
.y6c_c01097{bottom:272.160000px;}
.y6a_c01097{bottom:312.480000px;}
.y6b_c01097{bottom:313.920000px;}
.y69_c01097{bottom:314.640000px;}
.y67_c01097{bottom:347.760000px;}
.y66_c01097{bottom:355.680000px;}
.y65_c01097{bottom:356.400000px;}
.y64_c01097{bottom:357.120000px;}
.y68_c01097{bottom:358.560000px;}
.y5f_c01097{bottom:390.240000px;}
.y63_c01097{bottom:390.960000px;}
.y5e_c01097{bottom:397.440000px;}
.y5d_c01097{bottom:398.160000px;}
.y60_c01097{bottom:398.880000px;}
.y5c_c01097{bottom:399.600000px;}
.y61_c01097{bottom:400.320000px;}
.y62_c01097{bottom:401.760000px;}
.y58_c01097{bottom:432.720000px;}
.y5b_c01097{bottom:433.440000px;}
.y57_c01097{bottom:440.640000px;}
.y56_c01097{bottom:442.080000px;}
.y5a_c01097{bottom:442.800000px;}
.y59_c01097{bottom:444.240000px;}
.y53_c01097{bottom:475.200000px;}
.y52_c01097{bottom:483.120000px;}
.y51_c01097{bottom:483.840000px;}
.y50_c01097{bottom:484.560000px;}
.y54_c01097{bottom:486.000000px;}
.y55_c01097{bottom:486.720000px;}
.y4c_c01097{bottom:517.680000px;}
.y4f_c01097{bottom:518.400000px;}
.y4a_c01097{bottom:525.600000px;}
.y49_c01097{bottom:526.320000px;}
.y4d_c01097{bottom:527.040000px;}
.y4b_c01097{bottom:527.760000px;}
.y4e_c01097{bottom:529.920000px;}
.y45_c01097{bottom:567.360000px;}
.y44_c01097{bottom:568.080000px;}
.y43_c01097{bottom:569.520000px;}
.y46_c01097{bottom:570.240000px;}
.y47_c01097{bottom:571.680000px;}
.y48_c01097{bottom:572.400000px;}
.y3f_c01097{bottom:610.560000px;}
.y41_c01097{bottom:611.280000px;}
.y3e_c01097{bottom:612.000000px;}
.y40_c01097{bottom:612.720000px;}
.y42_c01097{bottom:614.880000px;}
.y3b_c01097{bottom:652.320000px;}
.y3a_c01097{bottom:653.760000px;}
.y3d_c01097{bottom:654.480000px;}
.y3c_c01097{bottom:655.200000px;}
.y36_c01097{bottom:688.320000px;}
.y35_c01097{bottom:694.800000px;}
.y34_c01097{bottom:695.520000px;}
.y33_c01097{bottom:696.240000px;}
.y38_c01097{bottom:696.960000px;}
.y37_c01097{bottom:699.120000px;}
.y39_c01097{bottom:699.840000px;}
.y2e_c01097{bottom:738.000000px;}
.y2d_c01097{bottom:738.720000px;}
.y31_c01097{bottom:739.440000px;}
.y30_c01097{bottom:740.160000px;}
.y2f_c01097{bottom:740.880000px;}
.y32_c01097{bottom:741.600000px;}
.y28_c01097{bottom:780.480000px;}
.y27_c01097{bottom:781.200000px;}
.y2c_c01097{bottom:781.920000px;}
.y2b_c01097{bottom:782.640000px;}
.y29_c01097{bottom:783.360000px;}
.y2a_c01097{bottom:784.080000px;}
.y22_c01097{bottom:823.680000px;}
.y23_c01097{bottom:825.120000px;}
.y25_c01097{bottom:825.840000px;}
.y24_c01097{bottom:826.560000px;}
.y26_c01097{bottom:828.720000px;}
.y1c_c01097{bottom:866.160000px;}
.y1b_c01097{bottom:866.880000px;}
.y1f_c01097{bottom:867.600000px;}
.y1d_c01097{bottom:868.320000px;}
.y1e_c01097{bottom:869.040000px;}
.y20_c01097{bottom:870.480000px;}
.y21_c01097{bottom:871.200000px;}
.y16_c01097{bottom:909.360000px;}
.y15_c01097{bottom:910.080000px;}
.y19_c01097{bottom:910.800000px;}
.y17_c01097{bottom:911.520000px;}
.y18_c01097{bottom:912.240000px;}
.y1a_c01097{bottom:913.680000px;}
.yf_c01097{bottom:951.840000px;}
.y12_c01097{bottom:953.280000px;}
.y11_c01097{bottom:954.000000px;}
.y10_c01097{bottom:954.720000px;}
.y14_c01097{bottom:955.440000px;}
.y13_c01097{bottom:956.880000px;}
.y7_c01097{bottom:994.320000px;}
.y8_c01097{bottom:995.040000px;}
.ya_c01097{bottom:995.760000px;}
.yd_c01097{bottom:996.480000px;}
.y9_c01097{bottom:997.200000px;}
.yb_c01097{bottom:997.920000px;}
.yc_c01097{bottom:998.640000px;}
.ye_c01097{bottom:999.360000px;}
.y3_c01097{bottom:1036.800000px;}
.y2_c01097{bottom:1037.520000px;}
.y4_c01097{bottom:1039.680000px;}
.y6_c01097{bottom:1041.120000px;}
.y5_c01097{bottom:1042.560000px;}
.y1_c01097{bottom:1089.360000px;}
.hd_c01097{height:31.100625px;}
.h9_c01097{height:33.692344px;}
.h11_c01097{height:36.284062px;}
.h12_c01097{height:41.467500px;}
.h5_c01097{height:44.059219px;}
.h7_c01097{height:46.650937px;}
.hb_c01097{height:49.242656px;}
.hf_c01097{height:51.546094px;}
.h3_c01097{height:51.834375px;}
.h4_c01097{height:54.426094px;}
.h6_c01097{height:54.714375px;}
.ha_c01097{height:57.017812px;}
.hc_c01097{height:59.609531px;}
.h8_c01097{height:62.201250px;}
.h2_c01097{height:64.792969px;}
.h10_c01097{height:72.568125px;}
.he_c01097{height:85.526719px;}
.h1_c01097{height:1146.750000px;}
.h0_c01097{height:1146.960000px;}
.w0_c01097{width:792.000000px;}
.x0_c01097{left:0.000000px;}
.x2_c01097{left:85.680000px;}
.x22_c01097{left:87.120000px;}
.x3_c01097{left:160.560000px;}
.x1f_c01097{left:162.000000px;}
.x4_c01097{left:246.240000px;}
.x5_c01097{left:299.520000px;}
.x19_c01097{left:308.880000px;}
.xb_c01097{left:310.320000px;}
.x6_c01097{left:353.520000px;}
.xc_c01097{left:363.600000px;}
.x1a_c01097{left:365.040000px;}
.x1e_c01097{left:396.000000px;}
.xd_c01097{left:419.040000px;}
.x16_c01097{left:449.280000px;}
.x20_c01097{left:450.720000px;}
.xe_c01097{left:460.800000px;}
.x12_c01097{left:492.480000px;}
.xf_c01097{left:503.280000px;}
.x1b_c01097{left:509.760000px;}
.x18_c01097{left:514.080000px;}
.x10_c01097{left:557.280000px;}
.x7_c01097{left:558.720000px;}
.x14_c01097{left:612.000000px;}
.x11_c01097{left:644.400000px;}
.x1c_c01097{left:654.480000px;}
.x17_c01097{left:676.080000px;}
.x8_c01097{left:677.520000px;}
.x1d_c01097{left:686.880000px;}
.x15_c01097{left:709.200000px;}
.x21_c01097{left:710.640000px;}
.x1_c01097{left:717.120000px;}
.x13_c01097{left:719.280000px;}
.x9_c01097{left:720.720000px;}
.xa_c01097{left:740.880000px;}
@media print{
.v4_c01097{vertical-align:-5.120000pt;}
.v3_c01097{vertical-align:-2.560000pt;}
.v0_c01097{vertical-align:0.000000pt;}
.v1_c01097{vertical-align:2.560000pt;}
.v2_c01097{vertical-align:33.280000pt;}
.ls0_c01097{letter-spacing:0.000000pt;}
.ws2_c01097{word-spacing:-32.272853pt;}
.ws6_c01097{word-spacing:-0.277547pt;}
.ws7_c01097{word-spacing:0.000000pt;}
.ws4_c01097{word-spacing:0.414080pt;}
.ws3_c01097{word-spacing:1.797120pt;}
.ws5_c01097{word-spacing:11.213867pt;}
.ws1_c01097{word-spacing:13.295160pt;}
.ws0_c01097{word-spacing:167.098667pt;}
.fsa_c01097{font-size:30.720000pt;}
.fs6_c01097{font-size:33.280000pt;}
.fsd_c01097{font-size:35.840000pt;}
.fse_c01097{font-size:40.960000pt;}
.fs3_c01097{font-size:43.520000pt;}
.fs4_c01097{font-size:46.080000pt;}
.fs8_c01097{font-size:48.640000pt;}
.fs1_c01097{font-size:51.200000pt;}
.fs2_c01097{font-size:53.760000pt;}
.fs7_c01097{font-size:56.320000pt;}
.fs9_c01097{font-size:58.880000pt;}
.fs5_c01097{font-size:61.440000pt;}
.fs0_c01097{font-size:64.000000pt;}
.fsc_c01097{font-size:71.680000pt;}
.fsb_c01097{font-size:84.480000pt;}
.y0_c01097{bottom:0.000000pt;}
.y89_c01097{bottom:16.640000pt;}
.y86_c01097{bottom:17.280000pt;}
.y88_c01097{bottom:17.920000pt;}
.y85_c01097{bottom:18.560000pt;}
.y87_c01097{bottom:19.200000pt;}
.y84_c01097{bottom:49.920000pt;}
.y83_c01097{bottom:51.200000pt;}
.y82_c01097{bottom:51.840000pt;}
.y81_c01097{bottom:52.480000pt;}
.y80_c01097{bottom:88.320000pt;}
.y7f_c01097{bottom:88.960000pt;}
.y7e_c01097{bottom:90.240000pt;}
.y7d_c01097{bottom:126.080000pt;}
.y7b_c01097{bottom:126.720000pt;}
.y7a_c01097{bottom:128.000000pt;}
.y7c_c01097{bottom:128.640000pt;}
.y79_c01097{bottom:163.840000pt;}
.y76_c01097{bottom:164.480000pt;}
.y75_c01097{bottom:165.120000pt;}
.y77_c01097{bottom:165.760000pt;}
.y74_c01097{bottom:166.400000pt;}
.y78_c01097{bottom:167.040000pt;}
.y72_c01097{bottom:201.600000pt;}
.y71_c01097{bottom:202.240000pt;}
.y70_c01097{bottom:203.520000pt;}
.y73_c01097{bottom:204.800000pt;}
.y6d_c01097{bottom:240.000000pt;}
.y6e_c01097{bottom:240.640000pt;}
.y6f_c01097{bottom:241.280000pt;}
.y6c_c01097{bottom:241.920000pt;}
.y6a_c01097{bottom:277.760000pt;}
.y6b_c01097{bottom:279.040000pt;}
.y69_c01097{bottom:279.680000pt;}
.y67_c01097{bottom:309.120000pt;}
.y66_c01097{bottom:316.160000pt;}
.y65_c01097{bottom:316.800000pt;}
.y64_c01097{bottom:317.440000pt;}
.y68_c01097{bottom:318.720000pt;}
.y5f_c01097{bottom:346.880000pt;}
.y63_c01097{bottom:347.520000pt;}
.y5e_c01097{bottom:353.280000pt;}
.y5d_c01097{bottom:353.920000pt;}
.y60_c01097{bottom:354.560000pt;}
.y5c_c01097{bottom:355.200000pt;}
.y61_c01097{bottom:355.840000pt;}
.y62_c01097{bottom:357.120000pt;}
.y58_c01097{bottom:384.640000pt;}
.y5b_c01097{bottom:385.280000pt;}
.y57_c01097{bottom:391.680000pt;}
.y56_c01097{bottom:392.960000pt;}
.y5a_c01097{bottom:393.600000pt;}
.y59_c01097{bottom:394.880000pt;}
.y53_c01097{bottom:422.400000pt;}
.y52_c01097{bottom:429.440000pt;}
.y51_c01097{bottom:430.080000pt;}
.y50_c01097{bottom:430.720000pt;}
.y54_c01097{bottom:432.000000pt;}
.y55_c01097{bottom:432.640000pt;}
.y4c_c01097{bottom:460.160000pt;}
.y4f_c01097{bottom:460.800000pt;}
.y4a_c01097{bottom:467.200000pt;}
.y49_c01097{bottom:467.840000pt;}
.y4d_c01097{bottom:468.480000pt;}
.y4b_c01097{bottom:469.120000pt;}
.y4e_c01097{bottom:471.040000pt;}
.y45_c01097{bottom:504.320000pt;}
.y44_c01097{bottom:504.960000pt;}
.y43_c01097{bottom:506.240000pt;}
.y46_c01097{bottom:506.880000pt;}
.y47_c01097{bottom:508.160000pt;}
.y48_c01097{bottom:508.800000pt;}
.y3f_c01097{bottom:542.720000pt;}
.y41_c01097{bottom:543.360000pt;}
.y3e_c01097{bottom:544.000000pt;}
.y40_c01097{bottom:544.640000pt;}
.y42_c01097{bottom:546.560000pt;}
.y3b_c01097{bottom:579.840000pt;}
.y3a_c01097{bottom:581.120000pt;}
.y3d_c01097{bottom:581.760000pt;}
.y3c_c01097{bottom:582.400000pt;}
.y36_c01097{bottom:611.840000pt;}
.y35_c01097{bottom:617.600000pt;}
.y34_c01097{bottom:618.240000pt;}
.y33_c01097{bottom:618.880000pt;}
.y38_c01097{bottom:619.520000pt;}
.y37_c01097{bottom:621.440000pt;}
.y39_c01097{bottom:622.080000pt;}
.y2e_c01097{bottom:656.000000pt;}
.y2d_c01097{bottom:656.640000pt;}
.y31_c01097{bottom:657.280000pt;}
.y30_c01097{bottom:657.920000pt;}
.y2f_c01097{bottom:658.560000pt;}
.y32_c01097{bottom:659.200000pt;}
.y28_c01097{bottom:693.760000pt;}
.y27_c01097{bottom:694.400000pt;}
.y2c_c01097{bottom:695.040000pt;}
.y2b_c01097{bottom:695.680000pt;}
.y29_c01097{bottom:696.320000pt;}
.y2a_c01097{bottom:696.960000pt;}
.y22_c01097{bottom:732.160000pt;}
.y23_c01097{bottom:733.440000pt;}
.y25_c01097{bottom:734.080000pt;}
.y24_c01097{bottom:734.720000pt;}
.y26_c01097{bottom:736.640000pt;}
.y1c_c01097{bottom:769.920000pt;}
.y1b_c01097{bottom:770.560000pt;}
.y1f_c01097{bottom:771.200000pt;}
.y1d_c01097{bottom:771.840000pt;}
.y1e_c01097{bottom:772.480000pt;}
.y20_c01097{bottom:773.760000pt;}
.y21_c01097{bottom:774.400000pt;}
.y16_c01097{bottom:808.320000pt;}
.y15_c01097{bottom:808.960000pt;}
.y19_c01097{bottom:809.600000pt;}
.y17_c01097{bottom:810.240000pt;}
.y18_c01097{bottom:810.880000pt;}
.y1a_c01097{bottom:812.160000pt;}
.yf_c01097{bottom:846.080000pt;}
.y12_c01097{bottom:847.360000pt;}
.y11_c01097{bottom:848.000000pt;}
.y10_c01097{bottom:848.640000pt;}
.y14_c01097{bottom:849.280000pt;}
.y13_c01097{bottom:850.560000pt;}
.y7_c01097{bottom:883.840000pt;}
.y8_c01097{bottom:884.480000pt;}
.ya_c01097{bottom:885.120000pt;}
.yd_c01097{bottom:885.760000pt;}
.y9_c01097{bottom:886.400000pt;}
.yb_c01097{bottom:887.040000pt;}
.yc_c01097{bottom:887.680000pt;}
.ye_c01097{bottom:888.320000pt;}
.y3_c01097{bottom:921.600000pt;}
.y2_c01097{bottom:922.240000pt;}
.y4_c01097{bottom:924.160000pt;}
.y6_c01097{bottom:925.440000pt;}
.y5_c01097{bottom:926.720000pt;}
.y1_c01097{bottom:968.320000pt;}
.hd_c01097{height:27.645000pt;}
.h9_c01097{height:29.948750pt;}
.h11_c01097{height:32.252500pt;}
.h12_c01097{height:36.860000pt;}
.h5_c01097{height:39.163750pt;}
.h7_c01097{height:41.467500pt;}
.hb_c01097{height:43.771250pt;}
.hf_c01097{height:45.818750pt;}
.h3_c01097{height:46.075000pt;}
.h4_c01097{height:48.378750pt;}
.h6_c01097{height:48.635000pt;}
.ha_c01097{height:50.682500pt;}
.hc_c01097{height:52.986250pt;}
.h8_c01097{height:55.290000pt;}
.h2_c01097{height:57.593750pt;}
.h10_c01097{height:64.505000pt;}
.he_c01097{height:76.023750pt;}
.h1_c01097{height:1019.333333pt;}
.h0_c01097{height:1019.520000pt;}
.w0_c01097{width:704.000000pt;}
.x0_c01097{left:0.000000pt;}
.x2_c01097{left:76.160000pt;}
.x22_c01097{left:77.440000pt;}
.x3_c01097{left:142.720000pt;}
.x1f_c01097{left:144.000000pt;}
.x4_c01097{left:218.880000pt;}
.x5_c01097{left:266.240000pt;}
.x19_c01097{left:274.560000pt;}
.xb_c01097{left:275.840000pt;}
.x6_c01097{left:314.240000pt;}
.xc_c01097{left:323.200000pt;}
.x1a_c01097{left:324.480000pt;}
.x1e_c01097{left:352.000000pt;}
.xd_c01097{left:372.480000pt;}
.x16_c01097{left:399.360000pt;}
.x20_c01097{left:400.640000pt;}
.xe_c01097{left:409.600000pt;}
.x12_c01097{left:437.760000pt;}
.xf_c01097{left:447.360000pt;}
.x1b_c01097{left:453.120000pt;}
.x18_c01097{left:456.960000pt;}
.x10_c01097{left:495.360000pt;}
.x7_c01097{left:496.640000pt;}
.x14_c01097{left:544.000000pt;}
.x11_c01097{left:572.800000pt;}
.x1c_c01097{left:581.760000pt;}
.x17_c01097{left:600.960000pt;}
.x8_c01097{left:602.240000pt;}
.x1d_c01097{left:610.560000pt;}
.x15_c01097{left:630.400000pt;}
.x21_c01097{left:631.680000pt;}
.x1_c01097{left:637.440000pt;}
.x13_c01097{left:639.360000pt;}
.x9_c01097{left:640.640000pt;}
.xa_c01097{left:658.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_258a880d98116ee51aceaf95.woff2')format("woff");}.ff1_c01098{font-family:ff1_c01098;line-height:1.109863;font-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_c01098{transform:matrix(0.201375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201375,0.000000,0.000000,0.250000,0,0);}
.m2a_c01098{transform:matrix(0.235975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235975,0.000000,0.000000,0.250000,0,0);}
.m14_c01098{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m41_c01098{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m34_c01098{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.me_c01098{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01098{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m12_c01098{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);}
.m3d_c01098{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);}
.m30_c01098{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.mc_c01098{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m18_c01098{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.md_c01098{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mb_c01098{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m17_c01098{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m0_c01098{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m42_c01098{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m5_c01098{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m44_c01098{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m3_c01098{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m27_c01098{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01098{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m16_c01098{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01098{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m6_c01098{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m13_c01098{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m2_c01098{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01098{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m10_c01098{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);}
.m46_c01098{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m31_c01098{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);}
.m20_c01098{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m40_c01098{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01098{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m7_c01098{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m25_c01098{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);}
.mf_c01098{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m38_c01098{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);}
.m37_c01098{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_c01098{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m1_c01098{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m11_c01098{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01098{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m28_c01098{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01098{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);}
.m39_c01098{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m36_c01098{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);}
.m2d_c01098{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01098{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m15_c01098{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m8_c01098{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m24_c01098{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);}
.m3e_c01098{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);}
.m9_c01098{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m43_c01098{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m49_c01098{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);}
.m3b_c01098{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.ma_c01098{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m33_c01098{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);}
.m3c_c01098{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01098{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);}
.m32_c01098{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m4_c01098{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m22_c01098{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m48_c01098{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m45_c01098{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);}
.m35_c01098{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);}
.m2c_c01098{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m26_c01098{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);}
.m4a_c01098{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);}
.m2f_c01098{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);}
.m29_c01098{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m21_c01098{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.m19_c01098{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m47_c01098{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01098{transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);}
.v1_c01098{vertical-align:-5.760000px;}
.v0_c01098{vertical-align:0.000000px;}
.v2_c01098{vertical-align:2.880000px;}
.ls0_c01098{letter-spacing:0.000000px;}
.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;}
}
.ws4_c01098{word-spacing:0.000000px;}
.ws0_c01098{word-spacing:2.319348px;}
.ws3_c01098{word-spacing:7.642313px;}
.ws2_c01098{word-spacing:9.474000px;}
.ws1_c01098{word-spacing:188.223600px;}
.fc0_c01098{color:transparent;}
.fs9_c01098{font-size:34.560000px;}
.fsd_c01098{font-size:37.440000px;}
.fsa_c01098{font-size:43.200000px;}
.fs8_c01098{font-size:46.080000px;}
.fs4_c01098{font-size:48.960000px;}
.fs6_c01098{font-size:51.840000px;}
.fs5_c01098{font-size:54.720000px;}
.fs1_c01098{font-size:57.600000px;}
.fs2_c01098{font-size:60.480000px;}
.fs3_c01098{font-size:63.360000px;}
.fsc_c01098{font-size:66.240000px;}
.fs7_c01098{font-size:69.120000px;}
.fs0_c01098{font-size:72.000000px;}
.fsb_c01098{font-size:92.160000px;}
.y0_c01098{bottom:0.000000px;}
.y87_c01098{bottom:41.760000px;}
.y85_c01098{bottom:48.960000px;}
.y88_c01098{bottom:49.680000px;}
.y89_c01098{bottom:50.400000px;}
.y84_c01098{bottom:51.120000px;}
.y83_c01098{bottom:51.840000px;}
.y86_c01098{bottom:52.560000px;}
.y81_c01098{bottom:92.160000px;}
.y7f_c01098{bottom:92.880000px;}
.y82_c01098{bottom:93.600000px;}
.y7e_c01098{bottom:94.320000px;}
.y80_c01098{bottom:95.040000px;}
.y7a_c01098{bottom:134.640000px;}
.y79_c01098{bottom:135.360000px;}
.y78_c01098{bottom:136.080000px;}
.y7b_c01098{bottom:136.800000px;}
.y7c_c01098{bottom:137.520000px;}
.y7d_c01098{bottom:138.240000px;}
.y74_c01098{bottom:177.120000px;}
.y75_c01098{bottom:177.840000px;}
.y73_c01098{bottom:178.560000px;}
.y72_c01098{bottom:179.280000px;}
.y77_c01098{bottom:180.000000px;}
.y76_c01098{bottom:180.720000px;}
.y6d_c01098{bottom:220.320000px;}
.y6c_c01098{bottom:221.040000px;}
.y70_c01098{bottom:221.760000px;}
.y6f_c01098{bottom:222.480000px;}
.y6e_c01098{bottom:223.200000px;}
.y71_c01098{bottom:223.920000px;}
.y68_c01098{bottom:262.800000px;}
.y67_c01098{bottom:263.520000px;}
.y6b_c01098{bottom:264.240000px;}
.y69_c01098{bottom:264.960000px;}
.y6a_c01098{bottom:265.680000px;}
.y64_c01098{bottom:304.560000px;}
.y62_c01098{bottom:306.000000px;}
.y63_c01098{bottom:307.440000px;}
.y65_c01098{bottom:308.160000px;}
.y66_c01098{bottom:309.600000px;}
.y5e_c01098{bottom:347.040000px;}
.y5c_c01098{bottom:348.480000px;}
.y60_c01098{bottom:349.200000px;}
.y5d_c01098{bottom:349.920000px;}
.y5f_c01098{bottom:350.640000px;}
.y61_c01098{bottom:351.360000px;}
.y5b_c01098{bottom:383.040000px;}
.y59_c01098{bottom:389.520000px;}
.y57_c01098{bottom:390.960000px;}
.y5a_c01098{bottom:391.680000px;}
.y58_c01098{bottom:392.400000px;}
.y53_c01098{bottom:432.000000px;}
.y52_c01098{bottom:432.720000px;}
.y51_c01098{bottom:433.440000px;}
.y56_c01098{bottom:434.160000px;}
.y54_c01098{bottom:434.880000px;}
.y55_c01098{bottom:436.320000px;}
.y50_c01098{bottom:468.000000px;}
.y4b_c01098{bottom:474.480000px;}
.y4a_c01098{bottom:475.200000px;}
.y4c_c01098{bottom:476.640000px;}
.y4d_c01098{bottom:478.080000px;}
.y4e_c01098{bottom:478.800000px;}
.y4f_c01098{bottom:479.520000px;}
.y46_c01098{bottom:509.760000px;}
.y49_c01098{bottom:510.480000px;}
.y44_c01098{bottom:517.680000px;}
.y43_c01098{bottom:518.400000px;}
.y47_c01098{bottom:519.120000px;}
.y45_c01098{bottom:520.560000px;}
.y48_c01098{bottom:521.280000px;}
.y3f_c01098{bottom:560.160000px;}
.y41_c01098{bottom:562.320000px;}
.y40_c01098{bottom:563.040000px;}
.y42_c01098{bottom:564.480000px;}
.y3a_c01098{bottom:602.640000px;}
.y39_c01098{bottom:603.360000px;}
.y3c_c01098{bottom:604.800000px;}
.y3b_c01098{bottom:605.520000px;}
.y3d_c01098{bottom:606.960000px;}
.y3e_c01098{bottom:607.680000px;}
.y35_c01098{bottom:645.120000px;}
.y34_c01098{bottom:645.840000px;}
.y36_c01098{bottom:648.000000px;}
.y37_c01098{bottom:648.720000px;}
.y38_c01098{bottom:650.160000px;}
.y2f_c01098{bottom:688.320000px;}
.y2e_c01098{bottom:689.040000px;}
.y30_c01098{bottom:690.480000px;}
.y33_c01098{bottom:691.200000px;}
.y31_c01098{bottom:692.640000px;}
.y32_c01098{bottom:693.360000px;}
.y29_c01098{bottom:730.800000px;}
.y2a_c01098{bottom:732.960000px;}
.y2d_c01098{bottom:733.680000px;}
.y2b_c01098{bottom:734.400000px;}
.y2c_c01098{bottom:735.840000px;}
.y23_c01098{bottom:772.560000px;}
.y24_c01098{bottom:773.280000px;}
.y22_c01098{bottom:774.000000px;}
.y25_c01098{bottom:776.160000px;}
.y26_c01098{bottom:776.880000px;}
.y27_c01098{bottom:778.320000px;}
.y28_c01098{bottom:779.040000px;}
.y1f_c01098{bottom:815.760000px;}
.y1e_c01098{bottom:817.200000px;}
.y20_c01098{bottom:817.920000px;}
.y21_c01098{bottom:819.360000px;}
.y1a_c01098{bottom:858.240000px;}
.y19_c01098{bottom:858.960000px;}
.y1c_c01098{bottom:860.400000px;}
.y1b_c01098{bottom:861.120000px;}
.y1d_c01098{bottom:861.840000px;}
.y13_c01098{bottom:900.000000px;}
.y12_c01098{bottom:901.440000px;}
.y15_c01098{bottom:902.880000px;}
.y14_c01098{bottom:903.600000px;}
.y18_c01098{bottom:904.320000px;}
.y16_c01098{bottom:905.760000px;}
.y17_c01098{bottom:906.480000px;}
.ye_c01098{bottom:942.480000px;}
.yd_c01098{bottom:943.200000px;}
.yf_c01098{bottom:945.360000px;}
.y10_c01098{bottom:946.080000px;}
.y11_c01098{bottom:946.800000px;}
.y8_c01098{bottom:984.960000px;}
.y7_c01098{bottom:985.680000px;}
.y9_c01098{bottom:987.120000px;}
.ya_c01098{bottom:987.840000px;}
.yb_c01098{bottom:988.560000px;}
.yc_c01098{bottom:992.160000px;}
.y3_c01098{bottom:1027.440000px;}
.y2_c01098{bottom:1028.160000px;}
.y4_c01098{bottom:1031.040000px;}
.y5_c01098{bottom:1033.920000px;}
.y6_c01098{bottom:1034.640000px;}
.y1_c01098{bottom:1087.920000px;}
.hb_c01098{height:31.100625px;}
.hf_c01098{height:33.692344px;}
.hc_c01098{height:38.875781px;}
.ha_c01098{height:41.467500px;}
.h6_c01098{height:44.059219px;}
.h8_c01098{height:46.650937px;}
.h7_c01098{height:49.242656px;}
.h3_c01098{height:51.834375px;}
.h4_c01098{height:54.426094px;}
.h10_c01098{height:54.714375px;}
.h5_c01098{height:57.017812px;}
.he_c01098{height:59.609531px;}
.h9_c01098{height:62.201250px;}
.h2_c01098{height:64.792969px;}
.hd_c01098{height:82.935000px;}
.h0_c01098{height:1141.920000px;}
.h1_c01098{height:1142.250000px;}
.w0_c01098{width:797.040000px;}
.w1_c01098{width:797.250000px;}
.x0_c01098{left:0.000000px;}
.x2_c01098{left:86.400000px;}
.xe_c01098{left:87.840000px;}
.x2b_c01098{left:89.280000px;}
.x33_c01098{left:90.720000px;}
.x3_c01098{left:161.280000px;}
.x14_c01098{left:162.720000px;}
.x22_c01098{left:164.160000px;}
.x4_c01098{left:246.960000px;}
.x15_c01098{left:248.400000px;}
.x2c_c01098{left:249.840000px;}
.x5_c01098{left:299.520000px;}
.xf_c01098{left:300.960000px;}
.x1b_c01098{left:302.400000px;}
.x35_c01098{left:303.840000px;}
.xb_c01098{left:311.040000px;}
.x1f_c01098{left:313.200000px;}
.x10_c01098{left:354.960000px;}
.x1c_c01098{left:356.400000px;}
.x12_c01098{left:365.760000px;}
.x20_c01098{left:367.200000px;}
.x11_c01098{left:397.440000px;}
.x26_c01098{left:398.880000px;}
.x13_c01098{left:408.960000px;}
.x27_c01098{left:420.480000px;}
.x23_c01098{left:441.360000px;}
.x28_c01098{left:451.440000px;}
.x2f_c01098{left:452.880000px;}
.x16_c01098{left:462.960000px;}
.x21_c01098{left:473.040000px;}
.x36_c01098{left:475.920000px;}
.x25_c01098{left:483.840000px;}
.x24_c01098{left:495.360000px;}
.x29_c01098{left:506.160000px;}
.x31_c01098{left:511.920000px;}
.x17_c01098{left:515.520000px;}
.x1d_c01098{left:522.000000px;}
.x1a_c01098{left:527.040000px;}
.x6_c01098{left:558.720000px;}
.x18_c01098{left:560.160000px;}
.x2d_c01098{left:561.600000px;}
.xc_c01098{left:611.280000px;}
.x19_c01098{left:613.440000px;}
.x7_c01098{left:645.840000px;}
.x2a_c01098{left:647.280000px;}
.x8_c01098{left:678.240000px;}
.x30_c01098{left:680.400000px;}
.x1_c01098{left:707.760000px;}
.x9_c01098{left:710.640000px;}
.x32_c01098{left:712.800000px;}
.xa_c01098{left:721.440000px;}
.x2e_c01098{left:723.600000px;}
.xd_c01098{left:740.880000px;}
.x1e_c01098{left:742.320000px;}
.x34_c01098{left:743.760000px;}
@media print{
.v1_c01098{vertical-align:-5.120000pt;}
.v0_c01098{vertical-align:0.000000pt;}
.v2_c01098{vertical-align:2.560000pt;}
.ls0_c01098{letter-spacing:0.000000pt;}
.ws4_c01098{word-spacing:0.000000pt;}
.ws0_c01098{word-spacing:2.061642pt;}
.ws3_c01098{word-spacing:6.793167pt;}
.ws2_c01098{word-spacing:8.421333pt;}
.ws1_c01098{word-spacing:167.309867pt;}
.fs9_c01098{font-size:30.720000pt;}
.fsd_c01098{font-size:33.280000pt;}
.fsa_c01098{font-size:38.400000pt;}
.fs8_c01098{font-size:40.960000pt;}
.fs4_c01098{font-size:43.520000pt;}
.fs6_c01098{font-size:46.080000pt;}
.fs5_c01098{font-size:48.640000pt;}
.fs1_c01098{font-size:51.200000pt;}
.fs2_c01098{font-size:53.760000pt;}
.fs3_c01098{font-size:56.320000pt;}
.fsc_c01098{font-size:58.880000pt;}
.fs7_c01098{font-size:61.440000pt;}
.fs0_c01098{font-size:64.000000pt;}
.fsb_c01098{font-size:81.920000pt;}
.y0_c01098{bottom:0.000000pt;}
.y87_c01098{bottom:37.120000pt;}
.y85_c01098{bottom:43.520000pt;}
.y88_c01098{bottom:44.160000pt;}
.y89_c01098{bottom:44.800000pt;}
.y84_c01098{bottom:45.440000pt;}
.y83_c01098{bottom:46.080000pt;}
.y86_c01098{bottom:46.720000pt;}
.y81_c01098{bottom:81.920000pt;}
.y7f_c01098{bottom:82.560000pt;}
.y82_c01098{bottom:83.200000pt;}
.y7e_c01098{bottom:83.840000pt;}
.y80_c01098{bottom:84.480000pt;}
.y7a_c01098{bottom:119.680000pt;}
.y79_c01098{bottom:120.320000pt;}
.y78_c01098{bottom:120.960000pt;}
.y7b_c01098{bottom:121.600000pt;}
.y7c_c01098{bottom:122.240000pt;}
.y7d_c01098{bottom:122.880000pt;}
.y74_c01098{bottom:157.440000pt;}
.y75_c01098{bottom:158.080000pt;}
.y73_c01098{bottom:158.720000pt;}
.y72_c01098{bottom:159.360000pt;}
.y77_c01098{bottom:160.000000pt;}
.y76_c01098{bottom:160.640000pt;}
.y6d_c01098{bottom:195.840000pt;}
.y6c_c01098{bottom:196.480000pt;}
.y70_c01098{bottom:197.120000pt;}
.y6f_c01098{bottom:197.760000pt;}
.y6e_c01098{bottom:198.400000pt;}
.y71_c01098{bottom:199.040000pt;}
.y68_c01098{bottom:233.600000pt;}
.y67_c01098{bottom:234.240000pt;}
.y6b_c01098{bottom:234.880000pt;}
.y69_c01098{bottom:235.520000pt;}
.y6a_c01098{bottom:236.160000pt;}
.y64_c01098{bottom:270.720000pt;}
.y62_c01098{bottom:272.000000pt;}
.y63_c01098{bottom:273.280000pt;}
.y65_c01098{bottom:273.920000pt;}
.y66_c01098{bottom:275.200000pt;}
.y5e_c01098{bottom:308.480000pt;}
.y5c_c01098{bottom:309.760000pt;}
.y60_c01098{bottom:310.400000pt;}
.y5d_c01098{bottom:311.040000pt;}
.y5f_c01098{bottom:311.680000pt;}
.y61_c01098{bottom:312.320000pt;}
.y5b_c01098{bottom:340.480000pt;}
.y59_c01098{bottom:346.240000pt;}
.y57_c01098{bottom:347.520000pt;}
.y5a_c01098{bottom:348.160000pt;}
.y58_c01098{bottom:348.800000pt;}
.y53_c01098{bottom:384.000000pt;}
.y52_c01098{bottom:384.640000pt;}
.y51_c01098{bottom:385.280000pt;}
.y56_c01098{bottom:385.920000pt;}
.y54_c01098{bottom:386.560000pt;}
.y55_c01098{bottom:387.840000pt;}
.y50_c01098{bottom:416.000000pt;}
.y4b_c01098{bottom:421.760000pt;}
.y4a_c01098{bottom:422.400000pt;}
.y4c_c01098{bottom:423.680000pt;}
.y4d_c01098{bottom:424.960000pt;}
.y4e_c01098{bottom:425.600000pt;}
.y4f_c01098{bottom:426.240000pt;}
.y46_c01098{bottom:453.120000pt;}
.y49_c01098{bottom:453.760000pt;}
.y44_c01098{bottom:460.160000pt;}
.y43_c01098{bottom:460.800000pt;}
.y47_c01098{bottom:461.440000pt;}
.y45_c01098{bottom:462.720000pt;}
.y48_c01098{bottom:463.360000pt;}
.y3f_c01098{bottom:497.920000pt;}
.y41_c01098{bottom:499.840000pt;}
.y40_c01098{bottom:500.480000pt;}
.y42_c01098{bottom:501.760000pt;}
.y3a_c01098{bottom:535.680000pt;}
.y39_c01098{bottom:536.320000pt;}
.y3c_c01098{bottom:537.600000pt;}
.y3b_c01098{bottom:538.240000pt;}
.y3d_c01098{bottom:539.520000pt;}
.y3e_c01098{bottom:540.160000pt;}
.y35_c01098{bottom:573.440000pt;}
.y34_c01098{bottom:574.080000pt;}
.y36_c01098{bottom:576.000000pt;}
.y37_c01098{bottom:576.640000pt;}
.y38_c01098{bottom:577.920000pt;}
.y2f_c01098{bottom:611.840000pt;}
.y2e_c01098{bottom:612.480000pt;}
.y30_c01098{bottom:613.760000pt;}
.y33_c01098{bottom:614.400000pt;}
.y31_c01098{bottom:615.680000pt;}
.y32_c01098{bottom:616.320000pt;}
.y29_c01098{bottom:649.600000pt;}
.y2a_c01098{bottom:651.520000pt;}
.y2d_c01098{bottom:652.160000pt;}
.y2b_c01098{bottom:652.800000pt;}
.y2c_c01098{bottom:654.080000pt;}
.y23_c01098{bottom:686.720000pt;}
.y24_c01098{bottom:687.360000pt;}
.y22_c01098{bottom:688.000000pt;}
.y25_c01098{bottom:689.920000pt;}
.y26_c01098{bottom:690.560000pt;}
.y27_c01098{bottom:691.840000pt;}
.y28_c01098{bottom:692.480000pt;}
.y1f_c01098{bottom:725.120000pt;}
.y1e_c01098{bottom:726.400000pt;}
.y20_c01098{bottom:727.040000pt;}
.y21_c01098{bottom:728.320000pt;}
.y1a_c01098{bottom:762.880000pt;}
.y19_c01098{bottom:763.520000pt;}
.y1c_c01098{bottom:764.800000pt;}
.y1b_c01098{bottom:765.440000pt;}
.y1d_c01098{bottom:766.080000pt;}
.y13_c01098{bottom:800.000000pt;}
.y12_c01098{bottom:801.280000pt;}
.y15_c01098{bottom:802.560000pt;}
.y14_c01098{bottom:803.200000pt;}
.y18_c01098{bottom:803.840000pt;}
.y16_c01098{bottom:805.120000pt;}
.y17_c01098{bottom:805.760000pt;}
.ye_c01098{bottom:837.760000pt;}
.yd_c01098{bottom:838.400000pt;}
.yf_c01098{bottom:840.320000pt;}
.y10_c01098{bottom:840.960000pt;}
.y11_c01098{bottom:841.600000pt;}
.y8_c01098{bottom:875.520000pt;}
.y7_c01098{bottom:876.160000pt;}
.y9_c01098{bottom:877.440000pt;}
.ya_c01098{bottom:878.080000pt;}
.yb_c01098{bottom:878.720000pt;}
.yc_c01098{bottom:881.920000pt;}
.y3_c01098{bottom:913.280000pt;}
.y2_c01098{bottom:913.920000pt;}
.y4_c01098{bottom:916.480000pt;}
.y5_c01098{bottom:919.040000pt;}
.y6_c01098{bottom:919.680000pt;}
.y1_c01098{bottom:967.040000pt;}
.hb_c01098{height:27.645000pt;}
.hf_c01098{height:29.948750pt;}
.hc_c01098{height:34.556250pt;}
.ha_c01098{height:36.860000pt;}
.h6_c01098{height:39.163750pt;}
.h8_c01098{height:41.467500pt;}
.h7_c01098{height:43.771250pt;}
.h3_c01098{height:46.075000pt;}
.h4_c01098{height:48.378750pt;}
.h10_c01098{height:48.635000pt;}
.h5_c01098{height:50.682500pt;}
.he_c01098{height:52.986250pt;}
.h9_c01098{height:55.290000pt;}
.h2_c01098{height:57.593750pt;}
.hd_c01098{height:73.720000pt;}
.h0_c01098{height:1015.040000pt;}
.h1_c01098{height:1015.333333pt;}
.w0_c01098{width:708.480000pt;}
.w1_c01098{width:708.666667pt;}
.x0_c01098{left:0.000000pt;}
.x2_c01098{left:76.800000pt;}
.xe_c01098{left:78.080000pt;}
.x2b_c01098{left:79.360000pt;}
.x33_c01098{left:80.640000pt;}
.x3_c01098{left:143.360000pt;}
.x14_c01098{left:144.640000pt;}
.x22_c01098{left:145.920000pt;}
.x4_c01098{left:219.520000pt;}
.x15_c01098{left:220.800000pt;}
.x2c_c01098{left:222.080000pt;}
.x5_c01098{left:266.240000pt;}
.xf_c01098{left:267.520000pt;}
.x1b_c01098{left:268.800000pt;}
.x35_c01098{left:270.080000pt;}
.xb_c01098{left:276.480000pt;}
.x1f_c01098{left:278.400000pt;}
.x10_c01098{left:315.520000pt;}
.x1c_c01098{left:316.800000pt;}
.x12_c01098{left:325.120000pt;}
.x20_c01098{left:326.400000pt;}
.x11_c01098{left:353.280000pt;}
.x26_c01098{left:354.560000pt;}
.x13_c01098{left:363.520000pt;}
.x27_c01098{left:373.760000pt;}
.x23_c01098{left:392.320000pt;}
.x28_c01098{left:401.280000pt;}
.x2f_c01098{left:402.560000pt;}
.x16_c01098{left:411.520000pt;}
.x21_c01098{left:420.480000pt;}
.x36_c01098{left:423.040000pt;}
.x25_c01098{left:430.080000pt;}
.x24_c01098{left:440.320000pt;}
.x29_c01098{left:449.920000pt;}
.x31_c01098{left:455.040000pt;}
.x17_c01098{left:458.240000pt;}
.x1d_c01098{left:464.000000pt;}
.x1a_c01098{left:468.480000pt;}
.x6_c01098{left:496.640000pt;}
.x18_c01098{left:497.920000pt;}
.x2d_c01098{left:499.200000pt;}
.xc_c01098{left:543.360000pt;}
.x19_c01098{left:545.280000pt;}
.x7_c01098{left:574.080000pt;}
.x2a_c01098{left:575.360000pt;}
.x8_c01098{left:602.880000pt;}
.x30_c01098{left:604.800000pt;}
.x1_c01098{left:629.120000pt;}
.x9_c01098{left:631.680000pt;}
.x32_c01098{left:633.600000pt;}
.xa_c01098{left:641.280000pt;}
.x2e_c01098{left:643.200000pt;}
.xd_c01098{left:658.560000pt;}
.x1e_c01098{left:659.840000pt;}
.x34_c01098{left:661.120000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_052c281e571a7bf1974e63ad.woff2')format("woff");}.ff1_c01099{font-family:ff1_c01099;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4e_c01099{transform:matrix(0.183100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183100,0.000000,0.000000,0.250000,0,0);}
.m52_c01099{transform:matrix(0.232475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232475,0.000000,0.000000,0.250000,0,0);}
.m1e_c01099{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m30_c01099{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m2f_c01099{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m3d_c01099{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m26_c01099{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m14_c01099{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.ma_c01099{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_c01099{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m12_c01099{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m41_c01099{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);}
.m3b_c01099{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01099{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01099{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m9_c01099{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01099{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01099{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m53_c01099{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m2_c01099{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m42_c01099{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m34_c01099{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m5_c01099{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mf_c01099{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01099{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);}
.m1f_c01099{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m48_c01099{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);}
.m24_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);}
.mb_c01099{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);}
.m4f_c01099{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01099{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);}
.m2d_c01099{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1_c01099{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);}
.m2e_c01099{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01099{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);}
.m37_c01099{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m32_c01099{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);}
.me_c01099{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01099{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);}
.m4d_c01099{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);}
.m29_c01099{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m25_c01099{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01099{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);}
.m49_c01099{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);}
.m43_c01099{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m36_c01099{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m21_c01099{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m40_c01099{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);}
.m44_c01099{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);}
.m54_c01099{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);}
.m4a_c01099{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);}
.m35_c01099{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m50_c01099{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m45_c01099{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01099{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m7_c01099{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m39_c01099{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m13_c01099{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m31_c01099{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m23_c01099{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);}
.m22_c01099{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m18_c01099{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);}
.m47_c01099{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m33_c01099{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);}
.m4_c01099{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m38_c01099{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01099{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m16_c01099{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m28_c01099{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.mc_c01099{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);}
.md_c01099{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01099{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m6_c01099{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);}
.m46_c01099{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m27_c01099{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m19_c01099{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01099{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01099{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m11_c01099{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m15_c01099{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);}
.m51_c01099{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m10_c01099{transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);}
.m3_c01099{transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);}
.m20_c01099{transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01099{transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);}
.v0_c01099{vertical-align:0.000000px;}
.ls0_c01099{letter-spacing:0.000000px;}
.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;}
.fc0_c01099{color:transparent;}
.fsa_c01099{font-size:34.560000px;}
.fs8_c01099{font-size:37.440000px;}
.fsd_c01099{font-size:40.320000px;}
.fse_c01099{font-size:43.200000px;}
.fsb_c01099{font-size:46.080000px;}
.fs2_c01099{font-size:48.960000px;}
.fs5_c01099{font-size:51.840000px;}
.fs3_c01099{font-size:54.720000px;}
.fs7_c01099{font-size:57.600000px;}
.fs6_c01099{font-size:60.480000px;}
.fs1_c01099{font-size:63.360000px;}
.fsc_c01099{font-size:66.240000px;}
.fs4_c01099{font-size:69.120000px;}
.fs0_c01099{font-size:72.000000px;}
.fsf_c01099{font-size:83.520000px;}
.fs9_c01099{font-size:95.040000px;}
.y0_c01099{bottom:0.000000px;}
.y6d_c01099{bottom:58.320000px;}
.y6c_c01099{bottom:67.680000px;}
.y6a_c01099{bottom:68.400000px;}
.y6b_c01099{bottom:69.120000px;}
.y69_c01099{bottom:69.840000px;}
.y68_c01099{bottom:71.280000px;}
.y62_c01099{bottom:114.480000px;}
.y66_c01099{bottom:142.560000px;}
.y61_c01099{bottom:143.280000px;}
.y5f_c01099{bottom:144.000000px;}
.y67_c01099{bottom:144.720000px;}
.y5e_c01099{bottom:145.440000px;}
.y60_c01099{bottom:146.160000px;}
.y5d_c01099{bottom:177.120000px;}
.y5a_c01099{bottom:185.760000px;}
.y5c_c01099{bottom:186.480000px;}
.y59_c01099{bottom:187.200000px;}
.y58_c01099{bottom:187.920000px;}
.y5b_c01099{bottom:188.640000px;}
.y57_c01099{bottom:219.600000px;}
.y65_c01099{bottom:228.240000px;}
.y55_c01099{bottom:228.960000px;}
.y53_c01099{bottom:229.680000px;}
.y52_c01099{bottom:230.400000px;}
.y56_c01099{bottom:231.120000px;}
.y54_c01099{bottom:231.840000px;}
.y50_c01099{bottom:271.440000px;}
.y51_c01099{bottom:273.600000px;}
.y4f_c01099{bottom:303.120000px;}
.y63_c01099{bottom:303.840000px;}
.y64_c01099{bottom:304.560000px;}
.y4d_c01099{bottom:305.280000px;}
.y4e_c01099{bottom:306.000000px;}
.y4b_c01099{bottom:349.200000px;}
.y4a_c01099{bottom:378.000000px;}
.y49_c01099{bottom:378.720000px;}
.y48_c01099{bottom:379.440000px;}
.y4c_c01099{bottom:380.880000px;}
.y46_c01099{bottom:422.640000px;}
.y47_c01099{bottom:423.360000px;}
.y44_c01099{bottom:452.160000px;}
.y45_c01099{bottom:452.880000px;}
.y42_c01099{bottom:453.600000px;}
.y41_c01099{bottom:454.320000px;}
.y43_c01099{bottom:455.760000px;}
.y3f_c01099{bottom:497.520000px;}
.y40_c01099{bottom:498.240000px;}
.y3b_c01099{bottom:527.760000px;}
.y3a_c01099{bottom:528.480000px;}
.y3d_c01099{bottom:529.200000px;}
.y3c_c01099{bottom:529.920000px;}
.y3e_c01099{bottom:530.640000px;}
.y39_c01099{bottom:572.400000px;}
.y38_c01099{bottom:601.200000px;}
.y36_c01099{bottom:601.920000px;}
.y35_c01099{bottom:602.640000px;}
.y37_c01099{bottom:603.360000px;}
.y34_c01099{bottom:645.840000px;}
.y30_c01099{bottom:676.080000px;}
.y2f_c01099{bottom:676.800000px;}
.y31_c01099{bottom:678.240000px;}
.y33_c01099{bottom:678.960000px;}
.y32_c01099{bottom:679.680000px;}
.y2b_c01099{bottom:718.560000px;}
.y2d_c01099{bottom:720.000000px;}
.y2c_c01099{bottom:720.720000px;}
.y2e_c01099{bottom:722.160000px;}
.y2a_c01099{bottom:762.480000px;}
.y29_c01099{bottom:763.200000px;}
.y23_c01099{bottom:793.440000px;}
.y27_c01099{bottom:794.160000px;}
.y24_c01099{bottom:794.880000px;}
.y25_c01099{bottom:795.600000px;}
.y26_c01099{bottom:796.320000px;}
.y28_c01099{bottom:797.760000px;}
.y20_c01099{bottom:835.200000px;}
.y22_c01099{bottom:838.080000px;}
.y21_c01099{bottom:838.800000px;}
.y1a_c01099{bottom:867.600000px;}
.y1e_c01099{bottom:869.040000px;}
.y1c_c01099{bottom:869.760000px;}
.y1b_c01099{bottom:870.480000px;}
.y1d_c01099{bottom:871.200000px;}
.y1f_c01099{bottom:872.640000px;}
.y19_c01099{bottom:903.600000px;}
.y14_c01099{bottom:910.080000px;}
.y13_c01099{bottom:911.520000px;}
.y15_c01099{bottom:912.240000px;}
.y18_c01099{bottom:912.960000px;}
.y16_c01099{bottom:913.680000px;}
.y17_c01099{bottom:914.400000px;}
.y10_c01099{bottom:946.080000px;}
.y12_c01099{bottom:946.800000px;}
.yd_c01099{bottom:953.280000px;}
.yc_c01099{bottom:954.000000px;}
.y11_c01099{bottom:955.440000px;}
.ye_c01099{bottom:956.160000px;}
.yf_c01099{bottom:956.880000px;}
.y9_c01099{bottom:995.760000px;}
.ya_c01099{bottom:996.480000px;}
.y8_c01099{bottom:997.200000px;}
.yb_c01099{bottom:999.360000px;}
.y2_c01099{bottom:1028.160000px;}
.y5_c01099{bottom:1028.880000px;}
.y4_c01099{bottom:1030.320000px;}
.y3_c01099{bottom:1031.040000px;}
.y6_c01099{bottom:1031.760000px;}
.y7_c01099{bottom:1032.480000px;}
.y1_c01099{bottom:1087.920000px;}
.hc_c01099{height:31.100625px;}
.ha_c01099{height:33.692344px;}
.hf_c01099{height:36.284062px;}
.h10_c01099{height:38.875781px;}
.hd_c01099{height:41.467500px;}
.h4_c01099{height:44.059219px;}
.h7_c01099{height:46.650937px;}
.h5_c01099{height:49.242656px;}
.h9_c01099{height:51.834375px;}
.h8_c01099{height:54.426094px;}
.h3_c01099{height:57.017812px;}
.he_c01099{height:59.609531px;}
.h6_c01099{height:62.201250px;}
.h2_c01099{height:64.792969px;}
.h11_c01099{height:75.159844px;}
.hb_c01099{height:85.526719px;}
.h0_c01099{height:1140.480000px;}
.h1_c01099{height:1140.750000px;}
.w0_c01099{width:794.160000px;}
.w1_c01099{width:794.250000px;}
.x0_c01099{left:0.000000px;}
.x2_c01099{left:86.400000px;}
.x25_c01099{left:87.840000px;}
.xd_c01099{left:151.920000px;}
.x16_c01099{left:159.840000px;}
.x3_c01099{left:162.000000px;}
.xe_c01099{left:203.760000px;}
.x21_c01099{left:214.560000px;}
.x26_c01099{left:216.000000px;}
.x4_c01099{left:246.240000px;}
.x23_c01099{left:247.680000px;}
.x17_c01099{left:268.560000px;}
.xf_c01099{left:289.440000px;}
.x5_c01099{left:300.240000px;}
.x1d_c01099{left:311.040000px;}
.x18_c01099{left:321.840000px;}
.x28_c01099{left:334.080000px;}
.x10_c01099{left:343.440000px;}
.x6_c01099{left:354.240000px;}
.x29_c01099{left:355.680000px;}
.x1e_c01099{left:365.760000px;}
.x19_c01099{left:375.840000px;}
.x11_c01099{left:385.920000px;}
.x12_c01099{left:408.960000px;}
.x1a_c01099{left:419.040000px;}
.x27_c01099{left:440.640000px;}
.x7_c01099{left:450.000000px;}
.x1b_c01099{left:460.080000px;}
.x22_c01099{left:483.120000px;}
.x14_c01099{left:492.480000px;}
.x1f_c01099{left:493.920000px;}
.x8_c01099{left:504.720000px;}
.x15_c01099{left:526.320000px;}
.x9_c01099{left:559.440000px;}
.x13_c01099{left:612.000000px;}
.xa_c01099{left:645.120000px;}
.x2a_c01099{left:646.560000px;}
.xb_c01099{left:678.960000px;}
.x1_c01099{left:706.320000px;}
.x1c_c01099{left:710.640000px;}
.x24_c01099{left:720.000000px;}
.xc_c01099{left:721.440000px;}
.x20_c01099{left:740.880000px;}
@media print{
.v0_c01099{vertical-align:0.000000pt;}
.ls0_c01099{letter-spacing:0.000000pt;}
.ws0_c01099{word-spacing:0.000000pt;}
.fsa_c01099{font-size:30.720000pt;}
.fs8_c01099{font-size:33.280000pt;}
.fsd_c01099{font-size:35.840000pt;}
.fse_c01099{font-size:38.400000pt;}
.fsb_c01099{font-size:40.960000pt;}
.fs2_c01099{font-size:43.520000pt;}
.fs5_c01099{font-size:46.080000pt;}
.fs3_c01099{font-size:48.640000pt;}
.fs7_c01099{font-size:51.200000pt;}
.fs6_c01099{font-size:53.760000pt;}
.fs1_c01099{font-size:56.320000pt;}
.fsc_c01099{font-size:58.880000pt;}
.fs4_c01099{font-size:61.440000pt;}
.fs0_c01099{font-size:64.000000pt;}
.fsf_c01099{font-size:74.240000pt;}
.fs9_c01099{font-size:84.480000pt;}
.y0_c01099{bottom:0.000000pt;}
.y6d_c01099{bottom:51.840000pt;}
.y6c_c01099{bottom:60.160000pt;}
.y6a_c01099{bottom:60.800000pt;}
.y6b_c01099{bottom:61.440000pt;}
.y69_c01099{bottom:62.080000pt;}
.y68_c01099{bottom:63.360000pt;}
.y62_c01099{bottom:101.760000pt;}
.y66_c01099{bottom:126.720000pt;}
.y61_c01099{bottom:127.360000pt;}
.y5f_c01099{bottom:128.000000pt;}
.y67_c01099{bottom:128.640000pt;}
.y5e_c01099{bottom:129.280000pt;}
.y60_c01099{bottom:129.920000pt;}
.y5d_c01099{bottom:157.440000pt;}
.y5a_c01099{bottom:165.120000pt;}
.y5c_c01099{bottom:165.760000pt;}
.y59_c01099{bottom:166.400000pt;}
.y58_c01099{bottom:167.040000pt;}
.y5b_c01099{bottom:167.680000pt;}
.y57_c01099{bottom:195.200000pt;}
.y65_c01099{bottom:202.880000pt;}
.y55_c01099{bottom:203.520000pt;}
.y53_c01099{bottom:204.160000pt;}
.y52_c01099{bottom:204.800000pt;}
.y56_c01099{bottom:205.440000pt;}
.y54_c01099{bottom:206.080000pt;}
.y50_c01099{bottom:241.280000pt;}
.y51_c01099{bottom:243.200000pt;}
.y4f_c01099{bottom:269.440000pt;}
.y63_c01099{bottom:270.080000pt;}
.y64_c01099{bottom:270.720000pt;}
.y4d_c01099{bottom:271.360000pt;}
.y4e_c01099{bottom:272.000000pt;}
.y4b_c01099{bottom:310.400000pt;}
.y4a_c01099{bottom:336.000000pt;}
.y49_c01099{bottom:336.640000pt;}
.y48_c01099{bottom:337.280000pt;}
.y4c_c01099{bottom:338.560000pt;}
.y46_c01099{bottom:375.680000pt;}
.y47_c01099{bottom:376.320000pt;}
.y44_c01099{bottom:401.920000pt;}
.y45_c01099{bottom:402.560000pt;}
.y42_c01099{bottom:403.200000pt;}
.y41_c01099{bottom:403.840000pt;}
.y43_c01099{bottom:405.120000pt;}
.y3f_c01099{bottom:442.240000pt;}
.y40_c01099{bottom:442.880000pt;}
.y3b_c01099{bottom:469.120000pt;}
.y3a_c01099{bottom:469.760000pt;}
.y3d_c01099{bottom:470.400000pt;}
.y3c_c01099{bottom:471.040000pt;}
.y3e_c01099{bottom:471.680000pt;}
.y39_c01099{bottom:508.800000pt;}
.y38_c01099{bottom:534.400000pt;}
.y36_c01099{bottom:535.040000pt;}
.y35_c01099{bottom:535.680000pt;}
.y37_c01099{bottom:536.320000pt;}
.y34_c01099{bottom:574.080000pt;}
.y30_c01099{bottom:600.960000pt;}
.y2f_c01099{bottom:601.600000pt;}
.y31_c01099{bottom:602.880000pt;}
.y33_c01099{bottom:603.520000pt;}
.y32_c01099{bottom:604.160000pt;}
.y2b_c01099{bottom:638.720000pt;}
.y2d_c01099{bottom:640.000000pt;}
.y2c_c01099{bottom:640.640000pt;}
.y2e_c01099{bottom:641.920000pt;}
.y2a_c01099{bottom:677.760000pt;}
.y29_c01099{bottom:678.400000pt;}
.y23_c01099{bottom:705.280000pt;}
.y27_c01099{bottom:705.920000pt;}
.y24_c01099{bottom:706.560000pt;}
.y25_c01099{bottom:707.200000pt;}
.y26_c01099{bottom:707.840000pt;}
.y28_c01099{bottom:709.120000pt;}
.y20_c01099{bottom:742.400000pt;}
.y22_c01099{bottom:744.960000pt;}
.y21_c01099{bottom:745.600000pt;}
.y1a_c01099{bottom:771.200000pt;}
.y1e_c01099{bottom:772.480000pt;}
.y1c_c01099{bottom:773.120000pt;}
.y1b_c01099{bottom:773.760000pt;}
.y1d_c01099{bottom:774.400000pt;}
.y1f_c01099{bottom:775.680000pt;}
.y19_c01099{bottom:803.200000pt;}
.y14_c01099{bottom:808.960000pt;}
.y13_c01099{bottom:810.240000pt;}
.y15_c01099{bottom:810.880000pt;}
.y18_c01099{bottom:811.520000pt;}
.y16_c01099{bottom:812.160000pt;}
.y17_c01099{bottom:812.800000pt;}
.y10_c01099{bottom:840.960000pt;}
.y12_c01099{bottom:841.600000pt;}
.yd_c01099{bottom:847.360000pt;}
.yc_c01099{bottom:848.000000pt;}
.y11_c01099{bottom:849.280000pt;}
.ye_c01099{bottom:849.920000pt;}
.yf_c01099{bottom:850.560000pt;}
.y9_c01099{bottom:885.120000pt;}
.ya_c01099{bottom:885.760000pt;}
.y8_c01099{bottom:886.400000pt;}
.yb_c01099{bottom:888.320000pt;}
.y2_c01099{bottom:913.920000pt;}
.y5_c01099{bottom:914.560000pt;}
.y4_c01099{bottom:915.840000pt;}
.y3_c01099{bottom:916.480000pt;}
.y6_c01099{bottom:917.120000pt;}
.y7_c01099{bottom:917.760000pt;}
.y1_c01099{bottom:967.040000pt;}
.hc_c01099{height:27.645000pt;}
.ha_c01099{height:29.948750pt;}
.hf_c01099{height:32.252500pt;}
.h10_c01099{height:34.556250pt;}
.hd_c01099{height:36.860000pt;}
.h4_c01099{height:39.163750pt;}
.h7_c01099{height:41.467500pt;}
.h5_c01099{height:43.771250pt;}
.h9_c01099{height:46.075000pt;}
.h8_c01099{height:48.378750pt;}
.h3_c01099{height:50.682500pt;}
.he_c01099{height:52.986250pt;}
.h6_c01099{height:55.290000pt;}
.h2_c01099{height:57.593750pt;}
.h11_c01099{height:66.808750pt;}
.hb_c01099{height:76.023750pt;}
.h0_c01099{height:1013.760000pt;}
.h1_c01099{height:1014.000000pt;}
.w0_c01099{width:705.920000pt;}
.w1_c01099{width:706.000000pt;}
.x0_c01099{left:0.000000pt;}
.x2_c01099{left:76.800000pt;}
.x25_c01099{left:78.080000pt;}
.xd_c01099{left:135.040000pt;}
.x16_c01099{left:142.080000pt;}
.x3_c01099{left:144.000000pt;}
.xe_c01099{left:181.120000pt;}
.x21_c01099{left:190.720000pt;}
.x26_c01099{left:192.000000pt;}
.x4_c01099{left:218.880000pt;}
.x23_c01099{left:220.160000pt;}
.x17_c01099{left:238.720000pt;}
.xf_c01099{left:257.280000pt;}
.x5_c01099{left:266.880000pt;}
.x1d_c01099{left:276.480000pt;}
.x18_c01099{left:286.080000pt;}
.x28_c01099{left:296.960000pt;}
.x10_c01099{left:305.280000pt;}
.x6_c01099{left:314.880000pt;}
.x29_c01099{left:316.160000pt;}
.x1e_c01099{left:325.120000pt;}
.x19_c01099{left:334.080000pt;}
.x11_c01099{left:343.040000pt;}
.x12_c01099{left:363.520000pt;}
.x1a_c01099{left:372.480000pt;}
.x27_c01099{left:391.680000pt;}
.x7_c01099{left:400.000000pt;}
.x1b_c01099{left:408.960000pt;}
.x22_c01099{left:429.440000pt;}
.x14_c01099{left:437.760000pt;}
.x1f_c01099{left:439.040000pt;}
.x8_c01099{left:448.640000pt;}
.x15_c01099{left:467.840000pt;}
.x9_c01099{left:497.280000pt;}
.x13_c01099{left:544.000000pt;}
.xa_c01099{left:573.440000pt;}
.x2a_c01099{left:574.720000pt;}
.xb_c01099{left:603.520000pt;}
.x1_c01099{left:627.840000pt;}
.x1c_c01099{left:631.680000pt;}
.x24_c01099{left:640.000000pt;}
.xc_c01099{left:641.280000pt;}
.x20_c01099{left:658.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_62af3486fd72033076039112.woff2')format("woff");}.ff1_c01100{font-family:ff1_c01100;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m50_c01100{transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);}
.m4a_c01100{transform:matrix(0.219725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219725,0.000000,0.000000,0.250000,0,0);}
.m3a_c01100{transform:matrix(0.244350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244350,0.000000,0.000000,0.250000,0,0);}
.m4b_c01100{transform:matrix(0.246675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246675,0.000000,0.000000,0.250000,0,0);}
.m3e_c01100{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m39_c01100{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);}
.m44_c01100{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);}
.m2e_c01100{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);}
.m2f_c01100{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m49_c01100{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);}
.m47_c01100{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);}
.m3b_c01100{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m36_c01100{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);}
.m33_c01100{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);}
.m30_c01100{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);}
.m4f_c01100{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01100{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);}
.m1e_c01100{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);}
.m42_c01100{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);}
.m28_c01100{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m6_c01100{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m35_c01100{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m31_c01100{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01100{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m16_c01100{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m10_c01100{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m20_c01100{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01100{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m13_c01100{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m22_c01100{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m38_c01100{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m26_c01100{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1_c01100{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m29_c01100{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m4_c01100{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mc_c01100{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);}
.m45_c01100{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.mb_c01100{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01100{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m23_c01100{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m48_c01100{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_c01100{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m32_c01100{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01100{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m0_c01100{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);}
.m3d_c01100{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m41_c01100{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m8_c01100{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);}
.m4c_c01100{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);}
.m21_c01100{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);}
.m9_c01100{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01100{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m34_c01100{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);}
.m5_c01100{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01100{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);}
.m4e_c01100{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);}
.m14_c01100{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.md_c01100{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m18_c01100{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m19_c01100{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m25_c01100{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m40_c01100{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m46_c01100{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);}
.m24_c01100{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m37_c01100{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01100{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);}
.m7_c01100{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m17_c01100{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);}
.m3_c01100{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01100{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01100{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);}
.m12_c01100{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m15_c01100{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.mf_c01100{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m27_c01100{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);}
.m2c_c01100{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01100{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);}
.m2_c01100{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.ma_c01100{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);}
.m4d_c01100{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m43_c01100{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.v0_c01100{vertical-align:0.000000px;}
.v1_c01100{vertical-align:8.640000px;}
.ls0_c01100{letter-spacing:0.000000px;}
.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;}
}
.ws1_c01100{word-spacing:0.000000px;}
.ws0_c01100{word-spacing:872.964000px;}
.fc0_c01100{color:transparent;}
.fsd_c01100{font-size:34.560000px;}
.fs8_c01100{font-size:37.440000px;}
.fsa_c01100{font-size:43.200000px;}
.fs1_c01100{font-size:46.080000px;}
.fs5_c01100{font-size:48.960000px;}
.fs2_c01100{font-size:51.840000px;}
.fs4_c01100{font-size:54.720000px;}
.fs6_c01100{font-size:57.600000px;}
.fs0_c01100{font-size:60.480000px;}
.fs3_c01100{font-size:63.360000px;}
.fs9_c01100{font-size:66.240000px;}
.fs7_c01100{font-size:69.120000px;}
.fsb_c01100{font-size:72.000000px;}
.fsc_c01100{font-size:74.880000px;}
.y0_c01100{bottom:0.000000px;}
.y77_c01100{bottom:68.400000px;}
.y75_c01100{bottom:69.120000px;}
.y76_c01100{bottom:69.840000px;}
.y78_c01100{bottom:71.280000px;}
.y74_c01100{bottom:72.000000px;}
.y72_c01100{bottom:112.320000px;}
.y71_c01100{bottom:113.040000px;}
.y73_c01100{bottom:114.480000px;}
.y70_c01100{bottom:115.200000px;}
.y6f_c01100{bottom:154.800000px;}
.y6c_c01100{bottom:155.520000px;}
.y6e_c01100{bottom:156.240000px;}
.y6b_c01100{bottom:157.680000px;}
.y6d_c01100{bottom:159.120000px;}
.y68_c01100{bottom:197.280000px;}
.y6a_c01100{bottom:198.000000px;}
.y69_c01100{bottom:198.720000px;}
.y66_c01100{bottom:199.440000px;}
.y65_c01100{bottom:200.880000px;}
.y67_c01100{bottom:202.320000px;}
.y63_c01100{bottom:240.480000px;}
.y64_c01100{bottom:241.200000px;}
.y62_c01100{bottom:242.640000px;}
.y5f_c01100{bottom:282.960000px;}
.y5d_c01100{bottom:283.680000px;}
.y5c_c01100{bottom:284.400000px;}
.y5e_c01100{bottom:285.120000px;}
.y60_c01100{bottom:285.840000px;}
.y61_c01100{bottom:286.560000px;}
.y58_c01100{bottom:324.720000px;}
.y56_c01100{bottom:325.440000px;}
.y5a_c01100{bottom:326.160000px;}
.y59_c01100{bottom:326.880000px;}
.y55_c01100{bottom:327.600000px;}
.y57_c01100{bottom:328.320000px;}
.y5b_c01100{bottom:329.040000px;}
.y51_c01100{bottom:367.920000px;}
.y54_c01100{bottom:368.640000px;}
.y50_c01100{bottom:369.360000px;}
.y53_c01100{bottom:370.080000px;}
.y52_c01100{bottom:370.800000px;}
.y4c_c01100{bottom:409.680000px;}
.y4e_c01100{bottom:410.400000px;}
.y4f_c01100{bottom:411.120000px;}
.y4b_c01100{bottom:411.840000px;}
.y4d_c01100{bottom:413.280000px;}
.y47_c01100{bottom:452.160000px;}
.y45_c01100{bottom:452.880000px;}
.y49_c01100{bottom:453.600000px;}
.y48_c01100{bottom:454.320000px;}
.y44_c01100{bottom:455.040000px;}
.y46_c01100{bottom:455.760000px;}
.y4a_c01100{bottom:456.480000px;}
.y41_c01100{bottom:495.360000px;}
.y42_c01100{bottom:496.080000px;}
.y40_c01100{bottom:496.800000px;}
.y43_c01100{bottom:499.680000px;}
.y3c_c01100{bottom:537.840000px;}
.y3d_c01100{bottom:538.560000px;}
.y3e_c01100{bottom:539.280000px;}
.y3b_c01100{bottom:540.000000px;}
.y3f_c01100{bottom:542.160000px;}
.y35_c01100{bottom:580.320000px;}
.y36_c01100{bottom:581.040000px;}
.y39_c01100{bottom:581.760000px;}
.y37_c01100{bottom:582.480000px;}
.y34_c01100{bottom:583.200000px;}
.y38_c01100{bottom:583.920000px;}
.y3a_c01100{bottom:584.640000px;}
.y28_c01100{bottom:624.960000px;}
.y2a_c01100{bottom:625.680000px;}
.y29_c01100{bottom:627.120000px;}
.y26_c01100{bottom:655.920000px;}
.y23_c01100{bottom:656.640000px;}
.y25_c01100{bottom:657.360000px;}
.y27_c01100{bottom:658.080000px;}
.y24_c01100{bottom:658.800000px;}
.y33_c01100{bottom:660.240000px;}
.y21_c01100{bottom:699.120000px;}
.y22_c01100{bottom:702.000000px;}
.y1e_c01100{bottom:730.800000px;}
.y1d_c01100{bottom:731.520000px;}
.y20_c01100{bottom:732.960000px;}
.y1f_c01100{bottom:733.680000px;}
.y31_c01100{bottom:734.400000px;}
.y32_c01100{bottom:735.120000px;}
.y1c_c01100{bottom:773.280000px;}
.y1b_c01100{bottom:776.160000px;}
.y1a_c01100{bottom:805.680000px;}
.y18_c01100{bottom:806.400000px;}
.y2f_c01100{bottom:807.120000px;}
.y19_c01100{bottom:807.840000px;}
.y30_c01100{bottom:809.280000px;}
.y16_c01100{bottom:847.440000px;}
.y14_c01100{bottom:848.160000px;}
.y15_c01100{bottom:850.320000px;}
.y17_c01100{bottom:851.040000px;}
.y10_c01100{bottom:880.560000px;}
.y12_c01100{bottom:882.000000px;}
.y11_c01100{bottom:882.720000px;}
.y13_c01100{bottom:883.440000px;}
.yd_c01100{bottom:922.320000px;}
.yc_c01100{bottom:924.480000px;}
.ye_c01100{bottom:925.200000px;}
.yf_c01100{bottom:925.920000px;}
.y8_c01100{bottom:954.000000px;}
.y7_c01100{bottom:954.720000px;}
.ya_c01100{bottom:955.440000px;}
.yb_c01100{bottom:956.160000px;}
.y2e_c01100{bottom:956.880000px;}
.y9_c01100{bottom:957.600000px;}
.y5_c01100{bottom:995.760000px;}
.y6_c01100{bottom:998.640000px;}
.y2_c01100{bottom:1028.880000px;}
.y1_c01100{bottom:1029.600000px;}
.y4_c01100{bottom:1031.040000px;}
.y3_c01100{bottom:1031.760000px;}
.y2c_c01100{bottom:1032.480000px;}
.y2d_c01100{bottom:1033.200000px;}
.y2b_c01100{bottom:1097.280000px;}
.h10_c01100{height:31.100625px;}
.ha_c01100{height:33.692344px;}
.hc_c01100{height:38.875781px;}
.h3_c01100{height:41.467500px;}
.h7_c01100{height:44.059219px;}
.h4_c01100{height:46.650937px;}
.h6_c01100{height:49.242656px;}
.h8_c01100{height:51.834375px;}
.h2_c01100{height:54.426094px;}
.h5_c01100{height:57.017812px;}
.hb_c01100{height:59.609531px;}
.h9_c01100{height:62.201250px;}
.hd_c01100{height:64.792969px;}
.hf_c01100{height:65.657813px;}
.he_c01100{height:67.384687px;}
.h0_c01100{height:1139.760000px;}
.h1_c01100{height:1140.000000px;}
.w0_c01100{width:792.720000px;}
.w1_c01100{width:792.750000px;}
.x0_c01100{left:0.000000px;}
.x14_c01100{left:87.120000px;}
.x1_c01100{left:88.560000px;}
.x16_c01100{left:149.760000px;}
.x12_c01100{left:153.360000px;}
.x8_c01100{left:162.000000px;}
.x2_c01100{left:163.440000px;}
.x9_c01100{left:216.000000px;}
.xa_c01100{left:246.960000px;}
.x3_c01100{left:248.400000px;}
.x28_c01100{left:257.040000px;}
.x1f_c01100{left:258.480000px;}
.x2a_c01100{left:290.880000px;}
.xb_c01100{left:300.960000px;}
.x4_c01100{left:302.400000px;}
.xd_c01100{left:311.760000px;}
.x2c_c01100{left:334.080000px;}
.x24_c01100{left:343.440000px;}
.x5_c01100{left:354.960000px;}
.xe_c01100{left:365.760000px;}
.x2b_c01100{left:375.840000px;}
.x25_c01100{left:386.640000px;}
.x29_c01100{left:397.440000px;}
.xf_c01100{left:408.240000px;}
.x2e_c01100{left:427.680000px;}
.x13_c01100{left:451.440000px;}
.x10_c01100{left:462.240000px;}
.x2f_c01100{left:472.320000px;}
.x6_c01100{left:483.840000px;}
.x11_c01100{left:498.960000px;}
.x15_c01100{left:505.440000px;}
.x17_c01100{left:547.920000px;}
.xc_c01100{left:559.440000px;}
.x7_c01100{left:560.880000px;}
.x20_c01100{left:591.840000px;}
.x2d_c01100{left:611.280000px;}
.x22_c01100{left:612.720000px;}
.x1c_c01100{left:646.560000px;}
.x19_c01100{left:648.000000px;}
.x1d_c01100{left:678.960000px;}
.x1a_c01100{left:680.400000px;}
.x21_c01100{left:688.320000px;}
.x18_c01100{left:696.960000px;}
.x1e_c01100{left:712.080000px;}
.x27_c01100{left:719.280000px;}
.x26_c01100{left:720.720000px;}
.x1b_c01100{left:722.160000px;}
.x23_c01100{left:741.600000px;}
@media print{
.v0_c01100{vertical-align:0.000000pt;}
.v1_c01100{vertical-align:7.680000pt;}
.ls0_c01100{letter-spacing:0.000000pt;}
.ws1_c01100{word-spacing:0.000000pt;}
.ws0_c01100{word-spacing:775.968000pt;}
.fsd_c01100{font-size:30.720000pt;}
.fs8_c01100{font-size:33.280000pt;}
.fsa_c01100{font-size:38.400000pt;}
.fs1_c01100{font-size:40.960000pt;}
.fs5_c01100{font-size:43.520000pt;}
.fs2_c01100{font-size:46.080000pt;}
.fs4_c01100{font-size:48.640000pt;}
.fs6_c01100{font-size:51.200000pt;}
.fs0_c01100{font-size:53.760000pt;}
.fs3_c01100{font-size:56.320000pt;}
.fs9_c01100{font-size:58.880000pt;}
.fs7_c01100{font-size:61.440000pt;}
.fsb_c01100{font-size:64.000000pt;}
.fsc_c01100{font-size:66.560000pt;}
.y0_c01100{bottom:0.000000pt;}
.y77_c01100{bottom:60.800000pt;}
.y75_c01100{bottom:61.440000pt;}
.y76_c01100{bottom:62.080000pt;}
.y78_c01100{bottom:63.360000pt;}
.y74_c01100{bottom:64.000000pt;}
.y72_c01100{bottom:99.840000pt;}
.y71_c01100{bottom:100.480000pt;}
.y73_c01100{bottom:101.760000pt;}
.y70_c01100{bottom:102.400000pt;}
.y6f_c01100{bottom:137.600000pt;}
.y6c_c01100{bottom:138.240000pt;}
.y6e_c01100{bottom:138.880000pt;}
.y6b_c01100{bottom:140.160000pt;}
.y6d_c01100{bottom:141.440000pt;}
.y68_c01100{bottom:175.360000pt;}
.y6a_c01100{bottom:176.000000pt;}
.y69_c01100{bottom:176.640000pt;}
.y66_c01100{bottom:177.280000pt;}
.y65_c01100{bottom:178.560000pt;}
.y67_c01100{bottom:179.840000pt;}
.y63_c01100{bottom:213.760000pt;}
.y64_c01100{bottom:214.400000pt;}
.y62_c01100{bottom:215.680000pt;}
.y5f_c01100{bottom:251.520000pt;}
.y5d_c01100{bottom:252.160000pt;}
.y5c_c01100{bottom:252.800000pt;}
.y5e_c01100{bottom:253.440000pt;}
.y60_c01100{bottom:254.080000pt;}
.y61_c01100{bottom:254.720000pt;}
.y58_c01100{bottom:288.640000pt;}
.y56_c01100{bottom:289.280000pt;}
.y5a_c01100{bottom:289.920000pt;}
.y59_c01100{bottom:290.560000pt;}
.y55_c01100{bottom:291.200000pt;}
.y57_c01100{bottom:291.840000pt;}
.y5b_c01100{bottom:292.480000pt;}
.y51_c01100{bottom:327.040000pt;}
.y54_c01100{bottom:327.680000pt;}
.y50_c01100{bottom:328.320000pt;}
.y53_c01100{bottom:328.960000pt;}
.y52_c01100{bottom:329.600000pt;}
.y4c_c01100{bottom:364.160000pt;}
.y4e_c01100{bottom:364.800000pt;}
.y4f_c01100{bottom:365.440000pt;}
.y4b_c01100{bottom:366.080000pt;}
.y4d_c01100{bottom:367.360000pt;}
.y47_c01100{bottom:401.920000pt;}
.y45_c01100{bottom:402.560000pt;}
.y49_c01100{bottom:403.200000pt;}
.y48_c01100{bottom:403.840000pt;}
.y44_c01100{bottom:404.480000pt;}
.y46_c01100{bottom:405.120000pt;}
.y4a_c01100{bottom:405.760000pt;}
.y41_c01100{bottom:440.320000pt;}
.y42_c01100{bottom:440.960000pt;}
.y40_c01100{bottom:441.600000pt;}
.y43_c01100{bottom:444.160000pt;}
.y3c_c01100{bottom:478.080000pt;}
.y3d_c01100{bottom:478.720000pt;}
.y3e_c01100{bottom:479.360000pt;}
.y3b_c01100{bottom:480.000000pt;}
.y3f_c01100{bottom:481.920000pt;}
.y35_c01100{bottom:515.840000pt;}
.y36_c01100{bottom:516.480000pt;}
.y39_c01100{bottom:517.120000pt;}
.y37_c01100{bottom:517.760000pt;}
.y34_c01100{bottom:518.400000pt;}
.y38_c01100{bottom:519.040000pt;}
.y3a_c01100{bottom:519.680000pt;}
.y28_c01100{bottom:555.520000pt;}
.y2a_c01100{bottom:556.160000pt;}
.y29_c01100{bottom:557.440000pt;}
.y26_c01100{bottom:583.040000pt;}
.y23_c01100{bottom:583.680000pt;}
.y25_c01100{bottom:584.320000pt;}
.y27_c01100{bottom:584.960000pt;}
.y24_c01100{bottom:585.600000pt;}
.y33_c01100{bottom:586.880000pt;}
.y21_c01100{bottom:621.440000pt;}
.y22_c01100{bottom:624.000000pt;}
.y1e_c01100{bottom:649.600000pt;}
.y1d_c01100{bottom:650.240000pt;}
.y20_c01100{bottom:651.520000pt;}
.y1f_c01100{bottom:652.160000pt;}
.y31_c01100{bottom:652.800000pt;}
.y32_c01100{bottom:653.440000pt;}
.y1c_c01100{bottom:687.360000pt;}
.y1b_c01100{bottom:689.920000pt;}
.y1a_c01100{bottom:716.160000pt;}
.y18_c01100{bottom:716.800000pt;}
.y2f_c01100{bottom:717.440000pt;}
.y19_c01100{bottom:718.080000pt;}
.y30_c01100{bottom:719.360000pt;}
.y16_c01100{bottom:753.280000pt;}
.y14_c01100{bottom:753.920000pt;}
.y15_c01100{bottom:755.840000pt;}
.y17_c01100{bottom:756.480000pt;}
.y10_c01100{bottom:782.720000pt;}
.y12_c01100{bottom:784.000000pt;}
.y11_c01100{bottom:784.640000pt;}
.y13_c01100{bottom:785.280000pt;}
.yd_c01100{bottom:819.840000pt;}
.yc_c01100{bottom:821.760000pt;}
.ye_c01100{bottom:822.400000pt;}
.yf_c01100{bottom:823.040000pt;}
.y8_c01100{bottom:848.000000pt;}
.y7_c01100{bottom:848.640000pt;}
.ya_c01100{bottom:849.280000pt;}
.yb_c01100{bottom:849.920000pt;}
.y2e_c01100{bottom:850.560000pt;}
.y9_c01100{bottom:851.200000pt;}
.y5_c01100{bottom:885.120000pt;}
.y6_c01100{bottom:887.680000pt;}
.y2_c01100{bottom:914.560000pt;}
.y1_c01100{bottom:915.200000pt;}
.y4_c01100{bottom:916.480000pt;}
.y3_c01100{bottom:917.120000pt;}
.y2c_c01100{bottom:917.760000pt;}
.y2d_c01100{bottom:918.400000pt;}
.y2b_c01100{bottom:975.360000pt;}
.h10_c01100{height:27.645000pt;}
.ha_c01100{height:29.948750pt;}
.hc_c01100{height:34.556250pt;}
.h3_c01100{height:36.860000pt;}
.h7_c01100{height:39.163750pt;}
.h4_c01100{height:41.467500pt;}
.h6_c01100{height:43.771250pt;}
.h8_c01100{height:46.075000pt;}
.h2_c01100{height:48.378750pt;}
.h5_c01100{height:50.682500pt;}
.hb_c01100{height:52.986250pt;}
.h9_c01100{height:55.290000pt;}
.hd_c01100{height:57.593750pt;}
.hf_c01100{height:58.362500pt;}
.he_c01100{height:59.897500pt;}
.h0_c01100{height:1013.120000pt;}
.h1_c01100{height:1013.333333pt;}
.w0_c01100{width:704.640000pt;}
.w1_c01100{width:704.666667pt;}
.x0_c01100{left:0.000000pt;}
.x14_c01100{left:77.440000pt;}
.x1_c01100{left:78.720000pt;}
.x16_c01100{left:133.120000pt;}
.x12_c01100{left:136.320000pt;}
.x8_c01100{left:144.000000pt;}
.x2_c01100{left:145.280000pt;}
.x9_c01100{left:192.000000pt;}
.xa_c01100{left:219.520000pt;}
.x3_c01100{left:220.800000pt;}
.x28_c01100{left:228.480000pt;}
.x1f_c01100{left:229.760000pt;}
.x2a_c01100{left:258.560000pt;}
.xb_c01100{left:267.520000pt;}
.x4_c01100{left:268.800000pt;}
.xd_c01100{left:277.120000pt;}
.x2c_c01100{left:296.960000pt;}
.x24_c01100{left:305.280000pt;}
.x5_c01100{left:315.520000pt;}
.xe_c01100{left:325.120000pt;}
.x2b_c01100{left:334.080000pt;}
.x25_c01100{left:343.680000pt;}
.x29_c01100{left:353.280000pt;}
.xf_c01100{left:362.880000pt;}
.x2e_c01100{left:380.160000pt;}
.x13_c01100{left:401.280000pt;}
.x10_c01100{left:410.880000pt;}
.x2f_c01100{left:419.840000pt;}
.x6_c01100{left:430.080000pt;}
.x11_c01100{left:443.520000pt;}
.x15_c01100{left:449.280000pt;}
.x17_c01100{left:487.040000pt;}
.xc_c01100{left:497.280000pt;}
.x7_c01100{left:498.560000pt;}
.x20_c01100{left:526.080000pt;}
.x2d_c01100{left:543.360000pt;}
.x22_c01100{left:544.640000pt;}
.x1c_c01100{left:574.720000pt;}
.x19_c01100{left:576.000000pt;}
.x1d_c01100{left:603.520000pt;}
.x1a_c01100{left:604.800000pt;}
.x21_c01100{left:611.840000pt;}
.x18_c01100{left:619.520000pt;}
.x1e_c01100{left:632.960000pt;}
.x27_c01100{left:639.360000pt;}
.x26_c01100{left:640.640000pt;}
.x1b_c01100{left:641.920000pt;}
.x23_c01100{left:659.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0c85d0fcb5857db9da671baa.woff2')format("woff");}.ff1_c01101{font-family:ff1_c01101;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3e_c01101{transform:matrix(0.181625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181625,0.000000,0.000000,0.250000,0,0);}
.m40_c01101{transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);}
.m2a_c01101{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.m43_c01101{transform:matrix(0.200875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200875,0.000000,0.000000,0.250000,0,0);}
.m41_c01101{transform:matrix(0.207300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207300,0.000000,0.000000,0.250000,0,0);}
.m22_c01101{transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);}
.m49_c01101{transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);}
.m34_c01101{transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);}
.m5c_c01101{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.md_c01101{transform:matrix(0.232825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232825,0.000000,0.000000,0.250000,0,0);}
.m5e_c01101{transform:matrix(0.236900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236900,0.000000,0.000000,0.250000,0,0);}
.m60_c01101{transform:matrix(0.237300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237300,0.000000,0.000000,0.250000,0,0);}
.m3b_c01101{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m1c_c01101{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m47_c01101{transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);}
.m1e_c01101{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);}
.m54_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);}
.m2_c01101{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);}
.m39_c01101{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);}
.m44_c01101{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);}
.m56_c01101{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.ma_c01101{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_c01101{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);}
.m2c_c01101{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);}
.m4a_c01101{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);}
.m27_c01101{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m57_c01101{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mb_c01101{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.me_c01101{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01101{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);}
.m29_c01101{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01101{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m58_c01101{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m15_c01101{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m38_c01101{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m10_c01101{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01101{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m21_c01101{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01101{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m55_c01101{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m32_c01101{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m28_c01101{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m37_c01101{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m26_c01101{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01101{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m18_c01101{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m24_c01101{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);}
.m48_c01101{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);}
.m4d_c01101{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m6_c01101{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m59_c01101{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m9_c01101{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.mc_c01101{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m4_c01101{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01101{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);}
.m45_c01101{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m13_c01101{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);}
.m3a_c01101{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1_c01101{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m46_c01101{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m0_c01101{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);}
.m14_c01101{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);}
.m5_c01101{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m7_c01101{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);}
.mf_c01101{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01101{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);}
.m4b_c01101{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);}
.m50_c01101{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m42_c01101{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m52_c01101{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m19_c01101{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);}
.m33_c01101{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m5a_c01101{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);}
.m4f_c01101{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m31_c01101{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m11_c01101{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m4e_c01101{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);}
.m1b_c01101{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m3_c01101{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m30_c01101{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01101{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);}
.m20_c01101{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m16_c01101{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);}
.m53_c01101{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);}
.m1f_c01101{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);}
.m5f_c01101{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m25_c01101{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m51_c01101{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m12_c01101{transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);}
.m61_c01101{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m5b_c01101{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m35_c01101{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);}
.m23_c01101{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);}
.m5d_c01101{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01101{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);}
.m2f_c01101{transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);}
.m62_c01101{transform:matrix(0.860000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.860000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.860000,0.000000,0.000000,0.250000,0,0);}
.m17_c01101{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.m36_c01101{transform:matrix(2.082500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.082500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.082500,0.000000,0.000000,0.250000,0,0);}
.v0_c01101{vertical-align:0.000000px;}
.v1_c01101{vertical-align:5.760000px;}
.ls0_c01101{letter-spacing:0.000000px;}
.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;}
}
.ws1_c01101{word-spacing:0.000000px;}
.ws0_c01101{word-spacing:8.499600px;}
.fc0_c01101{color:transparent;}
.fs12_c01101{font-size:8.640000px;}
.fsb_c01101{font-size:14.400000px;}
.fs14_c01101{font-size:17.280000px;}
.fs10_c01101{font-size:23.040000px;}
.fsf_c01101{font-size:25.920000px;}
.fs11_c01101{font-size:28.800000px;}
.fs15_c01101{font-size:31.680000px;}
.fse_c01101{font-size:34.560000px;}
.fs9_c01101{font-size:37.440000px;}
.fsd_c01101{font-size:43.200000px;}
.fsa_c01101{font-size:46.080000px;}
.fs2_c01101{font-size:48.960000px;}
.fs4_c01101{font-size:51.840000px;}
.fsc_c01101{font-size:54.720000px;}
.fs3_c01101{font-size:57.600000px;}
.fs1_c01101{font-size:60.480000px;}
.fs7_c01101{font-size:63.360000px;}
.fs6_c01101{font-size:66.240000px;}
.fs5_c01101{font-size:69.120000px;}
.fs0_c01101{font-size:72.000000px;}
.fs8_c01101{font-size:74.880000px;}
.fs13_c01101{font-size:77.760000px;}
.y0_c01101{bottom:0.000000px;}
.ya1_c01101{bottom:69.840000px;}
.y9f_c01101{bottom:70.560000px;}
.y9d_c01101{bottom:71.280000px;}
.y9c_c01101{bottom:72.720000px;}
.y9e_c01101{bottom:73.440000px;}
.y9a_c01101{bottom:113.040000px;}
.y98_c01101{bottom:114.480000px;}
.y9b_c01101{bottom:115.920000px;}
.y99_c01101{bottom:116.640000px;}
.y97_c01101{bottom:143.280000px;}
.y94_c01101{bottom:144.720000px;}
.y96_c01101{bottom:145.440000px;}
.y93_c01101{bottom:146.880000px;}
.ya0_c01101{bottom:147.600000px;}
.y95_c01101{bottom:148.320000px;}
.y91_c01101{bottom:188.640000px;}
.y92_c01101{bottom:190.080000px;}
.y90_c01101{bottom:190.800000px;}
.y8b_c01101{bottom:218.880000px;}
.y8f_c01101{bottom:219.600000px;}
.y8e_c01101{bottom:220.320000px;}
.y8a_c01101{bottom:221.040000px;}
.y8c_c01101{bottom:221.760000px;}
.y8d_c01101{bottom:222.480000px;}
.y87_c01101{bottom:261.360000px;}
.y89_c01101{bottom:262.080000px;}
.y88_c01101{bottom:262.800000px;}
.y85_c01101{bottom:264.240000px;}
.y86_c01101{bottom:265.680000px;}
.y6d_c01101{bottom:306.000000px;}
.y6e_c01101{bottom:308.160000px;}
.y6c_c01101{bottom:309.600000px;}
.y80_c01101{bottom:370.080000px;}
.y83_c01101{bottom:370.800000px;}
.y84_c01101{bottom:371.520000px;}
.y81_c01101{bottom:372.240000px;}
.y7a_c01101{bottom:390.960000px;}
.y67_c01101{bottom:391.680000px;}
.y7f_c01101{bottom:393.120000px;}
.y68_c01101{bottom:393.840000px;}
.y6b_c01101{bottom:412.560000px;}
.y65_c01101{bottom:413.280000px;}
.y66_c01101{bottom:414.000000px;}
.y7c_c01101{bottom:414.720000px;}
.y82_c01101{bottom:419.040000px;}
.y64_c01101{bottom:433.440000px;}
.y63_c01101{bottom:434.160000px;}
.y78_c01101{bottom:434.880000px;}
.y79_c01101{bottom:436.320000px;}
.y7b_c01101{bottom:455.040000px;}
.y6a_c01101{bottom:455.760000px;}
.y62_c01101{bottom:456.480000px;}
.y61_c01101{bottom:457.200000px;}
.y77_c01101{bottom:458.640000px;}
.y7d_c01101{bottom:475.920000px;}
.y69_c01101{bottom:476.640000px;}
.y60_c01101{bottom:477.360000px;}
.y7e_c01101{bottom:478.800000px;}
.y5e_c01101{bottom:479.520000px;}
.y5f_c01101{bottom:480.240000px;}
.y5d_c01101{bottom:505.440000px;}
.y5c_c01101{bottom:509.040000px;}
.y5b_c01101{bottom:509.760000px;}
.y5a_c01101{bottom:510.480000px;}
.y28_c01101{bottom:539.280000px;}
.y2b_c01101{bottom:540.000000px;}
.y55_c01101{bottom:540.720000px;}
.y57_c01101{bottom:541.440000px;}
.y56_c01101{bottom:543.600000px;}
.y59_c01101{bottom:561.600000px;}
.y54_c01101{bottom:562.320000px;}
.y52_c01101{bottom:563.760000px;}
.y53_c01101{bottom:564.480000px;}
.y27_c01101{bottom:571.680000px;}
.y2a_c01101{bottom:573.120000px;}
.y26_c01101{bottom:573.840000px;}
.y29_c01101{bottom:574.560000px;}
.y4f_c01101{bottom:583.200000px;}
.y51_c01101{bottom:583.920000px;}
.y50_c01101{bottom:585.360000px;}
.y4e_c01101{bottom:604.800000px;}
.y22_c01101{bottom:605.520000px;}
.y23_c01101{bottom:606.240000px;}
.y25_c01101{bottom:606.960000px;}
.y76_c01101{bottom:608.400000px;}
.y24_c01101{bottom:609.120000px;}
.y4d_c01101{bottom:625.680000px;}
.y4c_c01101{bottom:626.400000px;}
.y4b_c01101{bottom:627.840000px;}
.y75_c01101{bottom:635.760000px;}
.y20_c01101{bottom:637.920000px;}
.y21_c01101{bottom:638.640000px;}
.y4a_c01101{bottom:647.280000px;}
.y48_c01101{bottom:648.000000px;}
.y49_c01101{bottom:650.160000px;}
.y46_c01101{bottom:668.160000px;}
.y47_c01101{bottom:668.880000px;}
.y1e_c01101{bottom:669.600000px;}
.y1f_c01101{bottom:670.320000px;}
.y58_c01101{bottom:689.040000px;}
.y44_c01101{bottom:689.760000px;}
.y45_c01101{bottom:691.200000px;}
.y1c_c01101{bottom:699.120000px;}
.y1b_c01101{bottom:701.280000px;}
.y1d_c01101{bottom:702.000000px;}
.y43_c01101{bottom:710.640000px;}
.y42_c01101{bottom:711.360000px;}
.y40_c01101{bottom:732.240000px;}
.y41_c01101{bottom:733.680000px;}
.y74_c01101{bottom:741.600000px;}
.y73_c01101{bottom:743.760000px;}
.y3d_c01101{bottom:753.840000px;}
.y3f_c01101{bottom:754.560000px;}
.y3e_c01101{bottom:756.720000px;}
.y72_c01101{bottom:763.200000px;}
.y16_c01101{bottom:772.560000px;}
.y1a_c01101{bottom:773.280000px;}
.y19_c01101{bottom:774.000000px;}
.y17_c01101{bottom:774.720000px;}
.y3c_c01101{bottom:776.160000px;}
.y18_c01101{bottom:777.600000px;}
.y70_c01101{bottom:784.080000px;}
.y71_c01101{bottom:786.240000px;}
.y3b_c01101{bottom:802.800000px;}
.y6f_c01101{bottom:805.680000px;}
.y39_c01101{bottom:807.120000px;}
.y38_c01101{bottom:807.840000px;}
.y37_c01101{bottom:808.560000px;}
.y3a_c01101{bottom:815.760000px;}
.y2e_c01101{bottom:848.880000px;}
.y34_c01101{bottom:849.600000px;}
.y15_c01101{bottom:851.040000px;}
.y36_c01101{bottom:852.480000px;}
.y35_c01101{bottom:854.640000px;}
.y12_c01101{bottom:858.240000px;}
.y13_c01101{bottom:859.680000px;}
.y11_c01101{bottom:861.120000px;}
.y14_c01101{bottom:871.200000px;}
.y33_c01101{bottom:871.920000px;}
.y2d_c01101{bottom:872.640000px;}
.y2c_c01101{bottom:873.360000px;}
.yf_c01101{bottom:910.080000px;}
.ye_c01101{bottom:911.520000px;}
.y31_c01101{bottom:913.680000px;}
.y10_c01101{bottom:914.400000px;}
.y32_c01101{bottom:917.280000px;}
.yc_c01101{bottom:952.560000px;}
.yb_c01101{bottom:954.000000px;}
.yd_c01101{bottom:956.160000px;}
.ya_c01101{bottom:956.880000px;}
.y2f_c01101{bottom:957.600000px;}
.y30_c01101{bottom:960.480000px;}
.y7_c01101{bottom:996.480000px;}
.y8_c01101{bottom:997.200000px;}
.y9_c01101{bottom:999.360000px;}
.y2_c01101{bottom:1028.160000px;}
.y3_c01101{bottom:1029.600000px;}
.y4_c01101{bottom:1031.760000px;}
.y5_c01101{bottom:1032.480000px;}
.y6_c01101{bottom:1033.200000px;}
.y1_c01101{bottom:1095.120000px;}
.h14_c01101{height:7.775156px;}
.hd_c01101{height:12.958594px;}
.h16_c01101{height:15.550313px;}
.h12_c01101{height:20.733750px;}
.h11_c01101{height:23.325469px;}
.h13_c01101{height:25.917187px;}
.h17_c01101{height:28.508906px;}
.h10_c01101{height:31.100625px;}
.hb_c01101{height:33.692344px;}
.hf_c01101{height:38.875781px;}
.hc_c01101{height:41.467500px;}
.h4_c01101{height:44.059219px;}
.h6_c01101{height:46.650937px;}
.he_c01101{height:49.242656px;}
.h5_c01101{height:51.834375px;}
.h3_c01101{height:54.426094px;}
.h18_c01101{height:55.002656px;}
.h9_c01101{height:57.017812px;}
.h8_c01101{height:59.609531px;}
.h7_c01101{height:62.201250px;}
.h2_c01101{height:64.792969px;}
.ha_c01101{height:67.384687px;}
.h15_c01101{height:69.976406px;}
.h0_c01101{height:1141.920000px;}
.h1_c01101{height:1142.250000px;}
.w0_c01101{width:796.320000px;}
.w1_c01101{width:796.500000px;}
.x0_c01101{left:0.000000px;}
.x2_c01101{left:89.280000px;}
.x17_c01101{left:91.440000px;}
.x5e_c01101{left:92.880000px;}
.x13_c01101{left:111.600000px;}
.x1c_c01101{left:121.680000px;}
.x20_c01101{left:123.120000px;}
.x18_c01101{left:132.480000px;}
.x43_c01101{left:133.920000px;}
.x44_c01101{left:135.360000px;}
.x41_c01101{left:144.720000px;}
.x1d_c01101{left:155.520000px;}
.x5d_c01101{left:157.680000px;}
.x3_c01101{left:164.160000px;}
.xf_c01101{left:165.600000px;}
.x19_c01101{left:174.960000px;}
.x42_c01101{left:176.400000px;}
.x1a_c01101{left:198.000000px;}
.x14_c01101{left:205.920000px;}
.x1e_c01101{left:208.800000px;}
.xc_c01101{left:228.240000px;}
.x1b_c01101{left:239.040000px;}
.x3c_c01101{left:240.480000px;}
.x1f_c01101{left:249.840000px;}
.x5a_c01101{left:252.000000px;}
.x11_c01101{left:259.200000px;}
.x4_c01101{left:260.640000px;}
.x59_c01101{left:262.080000px;}
.x16_c01101{left:272.880000px;}
.xd_c01101{left:282.240000px;}
.x15_c01101{left:283.680000px;}
.x45_c01101{left:293.760000px;}
.x10_c01101{left:303.120000px;}
.x47_c01101{left:304.560000px;}
.x5b_c01101{left:306.000000px;}
.x5_c01101{left:314.640000px;}
.x48_c01101{left:316.080000px;}
.xe_c01101{left:324.720000px;}
.x4a_c01101{left:326.160000px;}
.x46_c01101{left:334.800000px;}
.x21_c01101{left:336.960000px;}
.x55_c01101{left:338.400000px;}
.x3d_c01101{left:347.760000px;}
.x12_c01101{left:357.840000px;}
.x4c_c01101{left:359.280000px;}
.x4d_c01101{left:369.360000px;}
.x4b_c01101{left:370.800000px;}
.x49_c01101{left:380.160000px;}
.x22_c01101{left:389.520000px;}
.x23_c01101{left:390.960000px;}
.x6_c01101{left:400.320000px;}
.x4e_c01101{left:401.760000px;}
.x3e_c01101{left:422.640000px;}
.x2a_c01101{left:444.960000px;}
.x7_c01101{left:452.160000px;}
.x29_c01101{left:454.320000px;}
.x3a_c01101{left:455.760000px;}
.x37_c01101{left:464.400000px;}
.x35_c01101{left:466.560000px;}
.x32_c01101{left:486.000000px;}
.x8_c01101{left:496.800000px;}
.x36_c01101{left:498.960000px;}
.x2c_c01101{left:507.600000px;}
.x2b_c01101{left:509.040000px;}
.x5c_c01101{left:519.840000px;}
.x39_c01101{left:531.360000px;}
.x2d_c01101{left:540.000000px;}
.x38_c01101{left:541.440000px;}
.x9_c01101{left:561.600000px;}
.x54_c01101{left:563.040000px;}
.x2e_c01101{left:573.120000px;}
.x56_c01101{left:574.560000px;}
.x4f_c01101{left:584.640000px;}
.x51_c01101{left:594.000000px;}
.x50_c01101{left:595.440000px;}
.x33_c01101{left:604.800000px;}
.x3b_c01101{left:606.240000px;}
.x2f_c01101{left:614.880000px;}
.xa_c01101{left:616.320000px;}
.x34_c01101{left:617.760000px;}
.x30_c01101{left:627.120000px;}
.x31_c01101{left:637.200000px;}
.x3f_c01101{left:648.720000px;}
.x57_c01101{left:650.160000px;}
.x24_c01101{left:660.240000px;}
.x53_c01101{left:681.840000px;}
.x40_c01101{left:691.920000px;}
.x25_c01101{left:702.000000px;}
.x1_c01101{left:712.800000px;}
.x52_c01101{left:714.240000px;}
.xb_c01101{left:723.600000px;}
.x28_c01101{left:725.040000px;}
.x26_c01101{left:735.120000px;}
.x58_c01101{left:745.200000px;}
.x27_c01101{left:756.000000px;}
@media print{
.v0_c01101{vertical-align:0.000000pt;}
.v1_c01101{vertical-align:5.120000pt;}
.ls0_c01101{letter-spacing:0.000000pt;}
.ws1_c01101{word-spacing:0.000000pt;}
.ws0_c01101{word-spacing:7.555200pt;}
.fs12_c01101{font-size:7.680000pt;}
.fsb_c01101{font-size:12.800000pt;}
.fs14_c01101{font-size:15.360000pt;}
.fs10_c01101{font-size:20.480000pt;}
.fsf_c01101{font-size:23.040000pt;}
.fs11_c01101{font-size:25.600000pt;}
.fs15_c01101{font-size:28.160000pt;}
.fse_c01101{font-size:30.720000pt;}
.fs9_c01101{font-size:33.280000pt;}
.fsd_c01101{font-size:38.400000pt;}
.fsa_c01101{font-size:40.960000pt;}
.fs2_c01101{font-size:43.520000pt;}
.fs4_c01101{font-size:46.080000pt;}
.fsc_c01101{font-size:48.640000pt;}
.fs3_c01101{font-size:51.200000pt;}
.fs1_c01101{font-size:53.760000pt;}
.fs7_c01101{font-size:56.320000pt;}
.fs6_c01101{font-size:58.880000pt;}
.fs5_c01101{font-size:61.440000pt;}
.fs0_c01101{font-size:64.000000pt;}
.fs8_c01101{font-size:66.560000pt;}
.fs13_c01101{font-size:69.120000pt;}
.y0_c01101{bottom:0.000000pt;}
.ya1_c01101{bottom:62.080000pt;}
.y9f_c01101{bottom:62.720000pt;}
.y9d_c01101{bottom:63.360000pt;}
.y9c_c01101{bottom:64.640000pt;}
.y9e_c01101{bottom:65.280000pt;}
.y9a_c01101{bottom:100.480000pt;}
.y98_c01101{bottom:101.760000pt;}
.y9b_c01101{bottom:103.040000pt;}
.y99_c01101{bottom:103.680000pt;}
.y97_c01101{bottom:127.360000pt;}
.y94_c01101{bottom:128.640000pt;}
.y96_c01101{bottom:129.280000pt;}
.y93_c01101{bottom:130.560000pt;}
.ya0_c01101{bottom:131.200000pt;}
.y95_c01101{bottom:131.840000pt;}
.y91_c01101{bottom:167.680000pt;}
.y92_c01101{bottom:168.960000pt;}
.y90_c01101{bottom:169.600000pt;}
.y8b_c01101{bottom:194.560000pt;}
.y8f_c01101{bottom:195.200000pt;}
.y8e_c01101{bottom:195.840000pt;}
.y8a_c01101{bottom:196.480000pt;}
.y8c_c01101{bottom:197.120000pt;}
.y8d_c01101{bottom:197.760000pt;}
.y87_c01101{bottom:232.320000pt;}
.y89_c01101{bottom:232.960000pt;}
.y88_c01101{bottom:233.600000pt;}
.y85_c01101{bottom:234.880000pt;}
.y86_c01101{bottom:236.160000pt;}
.y6d_c01101{bottom:272.000000pt;}
.y6e_c01101{bottom:273.920000pt;}
.y6c_c01101{bottom:275.200000pt;}
.y80_c01101{bottom:328.960000pt;}
.y83_c01101{bottom:329.600000pt;}
.y84_c01101{bottom:330.240000pt;}
.y81_c01101{bottom:330.880000pt;}
.y7a_c01101{bottom:347.520000pt;}
.y67_c01101{bottom:348.160000pt;}
.y7f_c01101{bottom:349.440000pt;}
.y68_c01101{bottom:350.080000pt;}
.y6b_c01101{bottom:366.720000pt;}
.y65_c01101{bottom:367.360000pt;}
.y66_c01101{bottom:368.000000pt;}
.y7c_c01101{bottom:368.640000pt;}
.y82_c01101{bottom:372.480000pt;}
.y64_c01101{bottom:385.280000pt;}
.y63_c01101{bottom:385.920000pt;}
.y78_c01101{bottom:386.560000pt;}
.y79_c01101{bottom:387.840000pt;}
.y7b_c01101{bottom:404.480000pt;}
.y6a_c01101{bottom:405.120000pt;}
.y62_c01101{bottom:405.760000pt;}
.y61_c01101{bottom:406.400000pt;}
.y77_c01101{bottom:407.680000pt;}
.y7d_c01101{bottom:423.040000pt;}
.y69_c01101{bottom:423.680000pt;}
.y60_c01101{bottom:424.320000pt;}
.y7e_c01101{bottom:425.600000pt;}
.y5e_c01101{bottom:426.240000pt;}
.y5f_c01101{bottom:426.880000pt;}
.y5d_c01101{bottom:449.280000pt;}
.y5c_c01101{bottom:452.480000pt;}
.y5b_c01101{bottom:453.120000pt;}
.y5a_c01101{bottom:453.760000pt;}
.y28_c01101{bottom:479.360000pt;}
.y2b_c01101{bottom:480.000000pt;}
.y55_c01101{bottom:480.640000pt;}
.y57_c01101{bottom:481.280000pt;}
.y56_c01101{bottom:483.200000pt;}
.y59_c01101{bottom:499.200000pt;}
.y54_c01101{bottom:499.840000pt;}
.y52_c01101{bottom:501.120000pt;}
.y53_c01101{bottom:501.760000pt;}
.y27_c01101{bottom:508.160000pt;}
.y2a_c01101{bottom:509.440000pt;}
.y26_c01101{bottom:510.080000pt;}
.y29_c01101{bottom:510.720000pt;}
.y4f_c01101{bottom:518.400000pt;}
.y51_c01101{bottom:519.040000pt;}
.y50_c01101{bottom:520.320000pt;}
.y4e_c01101{bottom:537.600000pt;}
.y22_c01101{bottom:538.240000pt;}
.y23_c01101{bottom:538.880000pt;}
.y25_c01101{bottom:539.520000pt;}
.y76_c01101{bottom:540.800000pt;}
.y24_c01101{bottom:541.440000pt;}
.y4d_c01101{bottom:556.160000pt;}
.y4c_c01101{bottom:556.800000pt;}
.y4b_c01101{bottom:558.080000pt;}
.y75_c01101{bottom:565.120000pt;}
.y20_c01101{bottom:567.040000pt;}
.y21_c01101{bottom:567.680000pt;}
.y4a_c01101{bottom:575.360000pt;}
.y48_c01101{bottom:576.000000pt;}
.y49_c01101{bottom:577.920000pt;}
.y46_c01101{bottom:593.920000pt;}
.y47_c01101{bottom:594.560000pt;}
.y1e_c01101{bottom:595.200000pt;}
.y1f_c01101{bottom:595.840000pt;}
.y58_c01101{bottom:612.480000pt;}
.y44_c01101{bottom:613.120000pt;}
.y45_c01101{bottom:614.400000pt;}
.y1c_c01101{bottom:621.440000pt;}
.y1b_c01101{bottom:623.360000pt;}
.y1d_c01101{bottom:624.000000pt;}
.y43_c01101{bottom:631.680000pt;}
.y42_c01101{bottom:632.320000pt;}
.y40_c01101{bottom:650.880000pt;}
.y41_c01101{bottom:652.160000pt;}
.y74_c01101{bottom:659.200000pt;}
.y73_c01101{bottom:661.120000pt;}
.y3d_c01101{bottom:670.080000pt;}
.y3f_c01101{bottom:670.720000pt;}
.y3e_c01101{bottom:672.640000pt;}
.y72_c01101{bottom:678.400000pt;}
.y16_c01101{bottom:686.720000pt;}
.y1a_c01101{bottom:687.360000pt;}
.y19_c01101{bottom:688.000000pt;}
.y17_c01101{bottom:688.640000pt;}
.y3c_c01101{bottom:689.920000pt;}
.y18_c01101{bottom:691.200000pt;}
.y70_c01101{bottom:696.960000pt;}
.y71_c01101{bottom:698.880000pt;}
.y3b_c01101{bottom:713.600000pt;}
.y6f_c01101{bottom:716.160000pt;}
.y39_c01101{bottom:717.440000pt;}
.y38_c01101{bottom:718.080000pt;}
.y37_c01101{bottom:718.720000pt;}
.y3a_c01101{bottom:725.120000pt;}
.y2e_c01101{bottom:754.560000pt;}
.y34_c01101{bottom:755.200000pt;}
.y15_c01101{bottom:756.480000pt;}
.y36_c01101{bottom:757.760000pt;}
.y35_c01101{bottom:759.680000pt;}
.y12_c01101{bottom:762.880000pt;}
.y13_c01101{bottom:764.160000pt;}
.y11_c01101{bottom:765.440000pt;}
.y14_c01101{bottom:774.400000pt;}
.y33_c01101{bottom:775.040000pt;}
.y2d_c01101{bottom:775.680000pt;}
.y2c_c01101{bottom:776.320000pt;}
.yf_c01101{bottom:808.960000pt;}
.ye_c01101{bottom:810.240000pt;}
.y31_c01101{bottom:812.160000pt;}
.y10_c01101{bottom:812.800000pt;}
.y32_c01101{bottom:815.360000pt;}
.yc_c01101{bottom:846.720000pt;}
.yb_c01101{bottom:848.000000pt;}
.yd_c01101{bottom:849.920000pt;}
.ya_c01101{bottom:850.560000pt;}
.y2f_c01101{bottom:851.200000pt;}
.y30_c01101{bottom:853.760000pt;}
.y7_c01101{bottom:885.760000pt;}
.y8_c01101{bottom:886.400000pt;}
.y9_c01101{bottom:888.320000pt;}
.y2_c01101{bottom:913.920000pt;}
.y3_c01101{bottom:915.200000pt;}
.y4_c01101{bottom:917.120000pt;}
.y5_c01101{bottom:917.760000pt;}
.y6_c01101{bottom:918.400000pt;}
.y1_c01101{bottom:973.440000pt;}
.h14_c01101{height:6.911250pt;}
.hd_c01101{height:11.518750pt;}
.h16_c01101{height:13.822500pt;}
.h12_c01101{height:18.430000pt;}
.h11_c01101{height:20.733750pt;}
.h13_c01101{height:23.037500pt;}
.h17_c01101{height:25.341250pt;}
.h10_c01101{height:27.645000pt;}
.hb_c01101{height:29.948750pt;}
.hf_c01101{height:34.556250pt;}
.hc_c01101{height:36.860000pt;}
.h4_c01101{height:39.163750pt;}
.h6_c01101{height:41.467500pt;}
.he_c01101{height:43.771250pt;}
.h5_c01101{height:46.075000pt;}
.h3_c01101{height:48.378750pt;}
.h18_c01101{height:48.891250pt;}
.h9_c01101{height:50.682500pt;}
.h8_c01101{height:52.986250pt;}
.h7_c01101{height:55.290000pt;}
.h2_c01101{height:57.593750pt;}
.ha_c01101{height:59.897500pt;}
.h15_c01101{height:62.201250pt;}
.h0_c01101{height:1015.040000pt;}
.h1_c01101{height:1015.333333pt;}
.w0_c01101{width:707.840000pt;}
.w1_c01101{width:708.000000pt;}
.x0_c01101{left:0.000000pt;}
.x2_c01101{left:79.360000pt;}
.x17_c01101{left:81.280000pt;}
.x5e_c01101{left:82.560000pt;}
.x13_c01101{left:99.200000pt;}
.x1c_c01101{left:108.160000pt;}
.x20_c01101{left:109.440000pt;}
.x18_c01101{left:117.760000pt;}
.x43_c01101{left:119.040000pt;}
.x44_c01101{left:120.320000pt;}
.x41_c01101{left:128.640000pt;}
.x1d_c01101{left:138.240000pt;}
.x5d_c01101{left:140.160000pt;}
.x3_c01101{left:145.920000pt;}
.xf_c01101{left:147.200000pt;}
.x19_c01101{left:155.520000pt;}
.x42_c01101{left:156.800000pt;}
.x1a_c01101{left:176.000000pt;}
.x14_c01101{left:183.040000pt;}
.x1e_c01101{left:185.600000pt;}
.xc_c01101{left:202.880000pt;}
.x1b_c01101{left:212.480000pt;}
.x3c_c01101{left:213.760000pt;}
.x1f_c01101{left:222.080000pt;}
.x5a_c01101{left:224.000000pt;}
.x11_c01101{left:230.400000pt;}
.x4_c01101{left:231.680000pt;}
.x59_c01101{left:232.960000pt;}
.x16_c01101{left:242.560000pt;}
.xd_c01101{left:250.880000pt;}
.x15_c01101{left:252.160000pt;}
.x45_c01101{left:261.120000pt;}
.x10_c01101{left:269.440000pt;}
.x47_c01101{left:270.720000pt;}
.x5b_c01101{left:272.000000pt;}
.x5_c01101{left:279.680000pt;}
.x48_c01101{left:280.960000pt;}
.xe_c01101{left:288.640000pt;}
.x4a_c01101{left:289.920000pt;}
.x46_c01101{left:297.600000pt;}
.x21_c01101{left:299.520000pt;}
.x55_c01101{left:300.800000pt;}
.x3d_c01101{left:309.120000pt;}
.x12_c01101{left:318.080000pt;}
.x4c_c01101{left:319.360000pt;}
.x4d_c01101{left:328.320000pt;}
.x4b_c01101{left:329.600000pt;}
.x49_c01101{left:337.920000pt;}
.x22_c01101{left:346.240000pt;}
.x23_c01101{left:347.520000pt;}
.x6_c01101{left:355.840000pt;}
.x4e_c01101{left:357.120000pt;}
.x3e_c01101{left:375.680000pt;}
.x2a_c01101{left:395.520000pt;}
.x7_c01101{left:401.920000pt;}
.x29_c01101{left:403.840000pt;}
.x3a_c01101{left:405.120000pt;}
.x37_c01101{left:412.800000pt;}
.x35_c01101{left:414.720000pt;}
.x32_c01101{left:432.000000pt;}
.x8_c01101{left:441.600000pt;}
.x36_c01101{left:443.520000pt;}
.x2c_c01101{left:451.200000pt;}
.x2b_c01101{left:452.480000pt;}
.x5c_c01101{left:462.080000pt;}
.x39_c01101{left:472.320000pt;}
.x2d_c01101{left:480.000000pt;}
.x38_c01101{left:481.280000pt;}
.x9_c01101{left:499.200000pt;}
.x54_c01101{left:500.480000pt;}
.x2e_c01101{left:509.440000pt;}
.x56_c01101{left:510.720000pt;}
.x4f_c01101{left:519.680000pt;}
.x51_c01101{left:528.000000pt;}
.x50_c01101{left:529.280000pt;}
.x33_c01101{left:537.600000pt;}
.x3b_c01101{left:538.880000pt;}
.x2f_c01101{left:546.560000pt;}
.xa_c01101{left:547.840000pt;}
.x34_c01101{left:549.120000pt;}
.x30_c01101{left:557.440000pt;}
.x31_c01101{left:566.400000pt;}
.x3f_c01101{left:576.640000pt;}
.x57_c01101{left:577.920000pt;}
.x24_c01101{left:586.880000pt;}
.x53_c01101{left:606.080000pt;}
.x40_c01101{left:615.040000pt;}
.x25_c01101{left:624.000000pt;}
.x1_c01101{left:633.600000pt;}
.x52_c01101{left:634.880000pt;}
.xb_c01101{left:643.200000pt;}
.x28_c01101{left:644.480000pt;}
.x26_c01101{left:653.440000pt;}
.x58_c01101{left:662.400000pt;}
.x27_c01101{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_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_3095d324097c46b91a64b697.woff2')format("woff");}.ff1_c01102{font-family:ff1_c01102;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m42_c01102{transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);}
.m41_c01102{transform:matrix(0.206650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206650,0.000000,0.000000,0.250000,0,0);}
.m56_c01102{transform:matrix(0.230325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230325,0.000000,0.000000,0.250000,0,0);}
.m49_c01102{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m4a_c01102{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m44_c01102{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m50_c01102{transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);}
.m38_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);}
.m3d_c01102{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);}
.m35_c01102{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_c01102{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);}
.m2e_c01102{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_c01102{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);}
.m45_c01102{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);}
.m46_c01102{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m11_c01102{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01102{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);}
.m2c_c01102{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);}
.m3a_c01102{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01102{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01102{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m48_c01102{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m4f_c01102{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m28_c01102{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.md_c01102{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01102{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m30_c01102{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01102{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m53_c01102{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m7_c01102{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01102{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01102{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m54_c01102{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m22_c01102{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m5_c01102{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1_c01102{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m4_c01102{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m33_c01102{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);}
.m47_c01102{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);}
.m43_c01102{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m8_c01102{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.mb_c01102{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);}
.m4b_c01102{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m0_c01102{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.me_c01102{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);}
.m12_c01102{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);}
.m26_c01102{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01102{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m10_c01102{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);}
.m6_c01102{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);}
.m2_c01102{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);}
.m18_c01102{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);}
.m13_c01102{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);}
.m29_c01102{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01102{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m36_c01102{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_c01102{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m9_c01102{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);}
.m4c_c01102{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m39_c01102{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.ma_c01102{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m37_c01102{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01102{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);}
.mc_c01102{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01102{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);}
.m55_c01102{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);}
.m24_c01102{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m40_c01102{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m15_c01102{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m14_c01102{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);}
.m34_c01102{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m23_c01102{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m51_c01102{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_c01102{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m3_c01102{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.mf_c01102{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m27_c01102{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);}
.m1f_c01102{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m32_c01102{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);}
.m21_c01102{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);}
.m52_c01102{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m25_c01102{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);}
.m3f_c01102{transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);}
.m31_c01102{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01102{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01102{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01102{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.v1_c01102{vertical-align:-2.880000px;}
.v0_c01102{vertical-align:0.000000px;}
.ls1_c01102{letter-spacing:0.000000px;}
.ls0_c01102{letter-spacing:182.376960px;}
.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;}
}
.ws2_c01102{word-spacing:0.000000px;}
.ws1_c01102{word-spacing:9.210378px;}
.ws0_c01102{word-spacing:197.900400px;}
.fc0_c01102{color:transparent;}
.fsf_c01102{font-size:11.520000px;}
.fsb_c01102{font-size:17.280000px;}
.fse_c01102{font-size:34.560000px;}
.fsd_c01102{font-size:43.200000px;}
.fsc_c01102{font-size:46.080000px;}
.fs9_c01102{font-size:48.960000px;}
.fs2_c01102{font-size:51.840000px;}
.fsa_c01102{font-size:54.720000px;}
.fs5_c01102{font-size:57.600000px;}
.fs0_c01102{font-size:60.480000px;}
.fs6_c01102{font-size:63.360000px;}
.fs1_c01102{font-size:66.240000px;}
.fs3_c01102{font-size:69.120000px;}
.fs7_c01102{font-size:72.000000px;}
.fs8_c01102{font-size:74.880000px;}
.fs11_c01102{font-size:77.760000px;}
.fs10_c01102{font-size:80.640000px;}
.fs4_c01102{font-size:95.040000px;}
.y0_c01102{bottom:0.000000px;}
.y87_c01102{bottom:59.040000px;}
.y86_c01102{bottom:61.200000px;}
.y85_c01102{bottom:63.360000px;}
.y82_c01102{bottom:91.440000px;}
.y83_c01102{bottom:92.160000px;}
.y84_c01102{bottom:93.600000px;}
.y80_c01102{bottom:94.320000px;}
.y81_c01102{bottom:95.040000px;}
.y7b_c01102{bottom:133.920000px;}
.y79_c01102{bottom:134.640000px;}
.y7a_c01102{bottom:135.360000px;}
.y7e_c01102{bottom:136.080000px;}
.y7f_c01102{bottom:136.800000px;}
.y77_c01102{bottom:137.520000px;}
.y78_c01102{bottom:138.240000px;}
.y7c_c01102{bottom:176.400000px;}
.y76_c01102{bottom:177.120000px;}
.y74_c01102{bottom:177.840000px;}
.y7d_c01102{bottom:178.560000px;}
.y72_c01102{bottom:179.280000px;}
.y75_c01102{bottom:180.000000px;}
.y73_c01102{bottom:180.720000px;}
.y71_c01102{bottom:284.400000px;}
.y6f_c01102{bottom:285.120000px;}
.y70_c01102{bottom:288.000000px;}
.y68_c01102{bottom:295.920000px;}
.y66_c01102{bottom:297.360000px;}
.y67_c01102{bottom:298.080000px;}
.y6b_c01102{bottom:305.280000px;}
.y6c_c01102{bottom:306.000000px;}
.y69_c01102{bottom:306.720000px;}
.y6e_c01102{bottom:307.440000px;}
.y6d_c01102{bottom:308.880000px;}
.y6a_c01102{bottom:309.600000px;}
.y64_c01102{bottom:326.880000px;}
.y63_c01102{bottom:327.600000px;}
.y61_c01102{bottom:328.320000px;}
.y65_c01102{bottom:329.040000px;}
.y62_c01102{bottom:330.480000px;}
.y5e_c01102{bottom:347.760000px;}
.y5d_c01102{bottom:348.480000px;}
.y60_c01102{bottom:349.200000px;}
.y5c_c01102{bottom:349.920000px;}
.y5f_c01102{bottom:350.640000px;}
.y53_c01102{bottom:361.440000px;}
.y54_c01102{bottom:362.160000px;}
.y56_c01102{bottom:362.880000px;}
.y55_c01102{bottom:365.760000px;}
.y5a_c01102{bottom:368.640000px;}
.y59_c01102{bottom:369.360000px;}
.y58_c01102{bottom:370.080000px;}
.y57_c01102{bottom:370.800000px;}
.y5b_c01102{bottom:371.520000px;}
.y52_c01102{bottom:390.240000px;}
.y51_c01102{bottom:390.960000px;}
.y4f_c01102{bottom:391.680000px;}
.y50_c01102{bottom:392.400000px;}
.y4e_c01102{bottom:393.840000px;}
.y4b_c01102{bottom:419.040000px;}
.y4d_c01102{bottom:423.360000px;}
.y4c_c01102{bottom:424.080000px;}
.y4a_c01102{bottom:424.800000px;}
.y49_c01102{bottom:425.520000px;}
.y48_c01102{bottom:426.240000px;}
.y46_c01102{bottom:466.560000px;}
.y47_c01102{bottom:468.000000px;}
.y43_c01102{bottom:474.480000px;}
.y3d_c01102{bottom:476.640000px;}
.y3e_c01102{bottom:477.360000px;}
.y42_c01102{bottom:478.080000px;}
.y3c_c01102{bottom:478.800000px;}
.y41_c01102{bottom:480.960000px;}
.y45_c01102{bottom:487.440000px;}
.y44_c01102{bottom:488.160000px;}
.y3f_c01102{bottom:488.880000px;}
.y40_c01102{bottom:489.600000px;}
.y39_c01102{bottom:527.760000px;}
.y3a_c01102{bottom:528.480000px;}
.y38_c01102{bottom:529.920000px;}
.y3b_c01102{bottom:532.080000px;}
.y2b_c01102{bottom:573.840000px;}
.y2a_c01102{bottom:574.560000px;}
.y28_c01102{bottom:604.080000px;}
.y37_c01102{bottom:604.800000px;}
.y29_c01102{bottom:606.240000px;}
.y24_c01102{bottom:646.560000px;}
.y26_c01102{bottom:647.280000px;}
.y25_c01102{bottom:649.440000px;}
.y22_c01102{bottom:678.960000px;}
.y27_c01102{bottom:679.680000px;}
.y36_c01102{bottom:680.400000px;}
.y23_c01102{bottom:681.120000px;}
.y20_c01102{bottom:720.720000px;}
.y1d_c01102{bottom:721.440000px;}
.y35_c01102{bottom:722.160000px;}
.y21_c01102{bottom:722.880000px;}
.y1f_c01102{bottom:724.320000px;}
.y1e_c01102{bottom:725.760000px;}
.y1c_c01102{bottom:765.360000px;}
.y1b_c01102{bottom:766.080000px;}
.y17_c01102{bottom:795.600000px;}
.y19_c01102{bottom:796.320000px;}
.y1a_c01102{bottom:797.040000px;}
.y33_c01102{bottom:797.760000px;}
.y18_c01102{bottom:798.480000px;}
.y34_c01102{bottom:799.920000px;}
.y16_c01102{bottom:840.240000px;}
.y10_c01102{bottom:869.760000px;}
.y11_c01102{bottom:870.480000px;}
.y14_c01102{bottom:871.200000px;}
.y15_c01102{bottom:871.920000px;}
.y12_c01102{bottom:872.640000px;}
.y13_c01102{bottom:873.360000px;}
.y32_c01102{bottom:874.800000px;}
.yf_c01102{bottom:912.240000px;}
.yc_c01102{bottom:912.960000px;}
.y2f_c01102{bottom:914.400000px;}
.ye_c01102{bottom:915.120000px;}
.yd_c01102{bottom:915.840000px;}
.y31_c01102{bottom:917.280000px;}
.y30_c01102{bottom:918.000000px;}
.yb_c01102{bottom:954.000000px;}
.y6_c01102{bottom:987.120000px;}
.y7_c01102{bottom:987.840000px;}
.y9_c01102{bottom:988.560000px;}
.ya_c01102{bottom:989.280000px;}
.y8_c01102{bottom:990.000000px;}
.y2e_c01102{bottom:991.440000px;}
.y4_c01102{bottom:1021.680000px;}
.y1_c01102{bottom:1029.600000px;}
.y3_c01102{bottom:1031.040000px;}
.y5_c01102{bottom:1031.760000px;}
.y2_c01102{bottom:1033.200000px;}
.y2d_c01102{bottom:1034.640000px;}
.y2c_c01102{bottom:1092.960000px;}
.h11_c01102{height:10.366875px;}
.hd_c01102{height:15.550313px;}
.h10_c01102{height:31.100625px;}
.hf_c01102{height:38.875781px;}
.he_c01102{height:41.467500px;}
.hb_c01102{height:44.059219px;}
.h4_c01102{height:46.650937px;}
.hc_c01102{height:49.242656px;}
.h7_c01102{height:51.834375px;}
.h2_c01102{height:54.426094px;}
.h8_c01102{height:57.017812px;}
.h3_c01102{height:59.609531px;}
.h5_c01102{height:62.201250px;}
.h9_c01102{height:64.792969px;}
.ha_c01102{height:67.384687px;}
.h13_c01102{height:69.976406px;}
.h12_c01102{height:72.568125px;}
.h6_c01102{height:85.526719px;}
.h0_c01102{height:1141.920000px;}
.h1_c01102{height:1142.250000px;}
.w0_c01102{width:796.320000px;}
.w1_c01102{width:796.500000px;}
.x0_c01102{left:0.000000px;}
.x1_c01102{left:87.840000px;}
.x2c_c01102{left:107.280000px;}
.x1f_c01102{left:108.720000px;}
.x39_c01102{left:110.880000px;}
.x3c_c01102{left:128.880000px;}
.xf_c01102{left:140.400000px;}
.x3a_c01102{left:151.200000px;}
.x13_c01102{left:161.280000px;}
.x2_c01102{left:162.720000px;}
.x2d_c01102{left:172.800000px;}
.x3d_c01102{left:192.960000px;}
.x2e_c01102{left:194.400000px;}
.x20_c01102{left:203.040000px;}
.x40_c01102{left:204.480000px;}
.xd_c01102{left:214.560000px;}
.x1d_c01102{left:236.160000px;}
.x37_c01102{left:237.600000px;}
.x3_c01102{left:246.960000px;}
.x14_c01102{left:257.760000px;}
.x21_c01102{left:270.000000px;}
.xa_c01102{left:300.960000px;}
.x3e_c01102{left:302.400000px;}
.x4_c01102{left:311.760000px;}
.x22_c01102{left:322.560000px;}
.x2f_c01102{left:332.640000px;}
.x41_c01102{left:344.880000px;}
.xb_c01102{left:354.960000px;}
.x5_c01102{left:365.040000px;}
.x23_c01102{left:376.560000px;}
.x33_c01102{left:387.360000px;}
.x11_c01102{left:397.440000px;}
.x30_c01102{left:408.240000px;}
.x15_c01102{left:429.120000px;}
.x24_c01102{left:441.360000px;}
.x3b_c01102{left:450.000000px;}
.x9_c01102{left:451.440000px;}
.x6_c01102{left:460.800000px;}
.x34_c01102{left:462.960000px;}
.x12_c01102{left:471.600000px;}
.x25_c01102{left:473.040000px;}
.xc_c01102{left:483.840000px;}
.xe_c01102{left:493.920000px;}
.x7_c01102{left:504.720000px;}
.x10_c01102{left:509.760000px;}
.x26_c01102{left:515.520000px;}
.x31_c01102{left:526.320000px;}
.x27_c01102{left:537.840000px;}
.x1e_c01102{left:558.720000px;}
.x8_c01102{left:560.160000px;}
.x28_c01102{left:568.080000px;}
.x35_c01102{left:581.760000px;}
.x36_c01102{left:602.640000px;}
.x1c_c01102{left:612.000000px;}
.x38_c01102{left:613.440000px;}
.x29_c01102{left:624.240000px;}
.x2b_c01102{left:633.600000px;}
.x32_c01102{left:635.040000px;}
.x17_c01102{left:646.560000px;}
.x2a_c01102{left:654.480000px;}
.x3f_c01102{left:667.440000px;}
.x1b_c01102{left:678.240000px;}
.x18_c01102{left:679.680000px;}
.x16_c01102{left:711.360000px;}
.x19_c01102{left:721.440000px;}
.x1a_c01102{left:742.320000px;}
@media print{
.v1_c01102{vertical-align:-2.560000pt;}
.v0_c01102{vertical-align:0.000000pt;}
.ls1_c01102{letter-spacing:0.000000pt;}
.ls0_c01102{letter-spacing:162.112853pt;}
.ws2_c01102{word-spacing:0.000000pt;}
.ws1_c01102{word-spacing:8.187003pt;}
.ws0_c01102{word-spacing:175.911467pt;}
.fsf_c01102{font-size:10.240000pt;}
.fsb_c01102{font-size:15.360000pt;}
.fse_c01102{font-size:30.720000pt;}
.fsd_c01102{font-size:38.400000pt;}
.fsc_c01102{font-size:40.960000pt;}
.fs9_c01102{font-size:43.520000pt;}
.fs2_c01102{font-size:46.080000pt;}
.fsa_c01102{font-size:48.640000pt;}
.fs5_c01102{font-size:51.200000pt;}
.fs0_c01102{font-size:53.760000pt;}
.fs6_c01102{font-size:56.320000pt;}
.fs1_c01102{font-size:58.880000pt;}
.fs3_c01102{font-size:61.440000pt;}
.fs7_c01102{font-size:64.000000pt;}
.fs8_c01102{font-size:66.560000pt;}
.fs11_c01102{font-size:69.120000pt;}
.fs10_c01102{font-size:71.680000pt;}
.fs4_c01102{font-size:84.480000pt;}
.y0_c01102{bottom:0.000000pt;}
.y87_c01102{bottom:52.480000pt;}
.y86_c01102{bottom:54.400000pt;}
.y85_c01102{bottom:56.320000pt;}
.y82_c01102{bottom:81.280000pt;}
.y83_c01102{bottom:81.920000pt;}
.y84_c01102{bottom:83.200000pt;}
.y80_c01102{bottom:83.840000pt;}
.y81_c01102{bottom:84.480000pt;}
.y7b_c01102{bottom:119.040000pt;}
.y79_c01102{bottom:119.680000pt;}
.y7a_c01102{bottom:120.320000pt;}
.y7e_c01102{bottom:120.960000pt;}
.y7f_c01102{bottom:121.600000pt;}
.y77_c01102{bottom:122.240000pt;}
.y78_c01102{bottom:122.880000pt;}
.y7c_c01102{bottom:156.800000pt;}
.y76_c01102{bottom:157.440000pt;}
.y74_c01102{bottom:158.080000pt;}
.y7d_c01102{bottom:158.720000pt;}
.y72_c01102{bottom:159.360000pt;}
.y75_c01102{bottom:160.000000pt;}
.y73_c01102{bottom:160.640000pt;}
.y71_c01102{bottom:252.800000pt;}
.y6f_c01102{bottom:253.440000pt;}
.y70_c01102{bottom:256.000000pt;}
.y68_c01102{bottom:263.040000pt;}
.y66_c01102{bottom:264.320000pt;}
.y67_c01102{bottom:264.960000pt;}
.y6b_c01102{bottom:271.360000pt;}
.y6c_c01102{bottom:272.000000pt;}
.y69_c01102{bottom:272.640000pt;}
.y6e_c01102{bottom:273.280000pt;}
.y6d_c01102{bottom:274.560000pt;}
.y6a_c01102{bottom:275.200000pt;}
.y64_c01102{bottom:290.560000pt;}
.y63_c01102{bottom:291.200000pt;}
.y61_c01102{bottom:291.840000pt;}
.y65_c01102{bottom:292.480000pt;}
.y62_c01102{bottom:293.760000pt;}
.y5e_c01102{bottom:309.120000pt;}
.y5d_c01102{bottom:309.760000pt;}
.y60_c01102{bottom:310.400000pt;}
.y5c_c01102{bottom:311.040000pt;}
.y5f_c01102{bottom:311.680000pt;}
.y53_c01102{bottom:321.280000pt;}
.y54_c01102{bottom:321.920000pt;}
.y56_c01102{bottom:322.560000pt;}
.y55_c01102{bottom:325.120000pt;}
.y5a_c01102{bottom:327.680000pt;}
.y59_c01102{bottom:328.320000pt;}
.y58_c01102{bottom:328.960000pt;}
.y57_c01102{bottom:329.600000pt;}
.y5b_c01102{bottom:330.240000pt;}
.y52_c01102{bottom:346.880000pt;}
.y51_c01102{bottom:347.520000pt;}
.y4f_c01102{bottom:348.160000pt;}
.y50_c01102{bottom:348.800000pt;}
.y4e_c01102{bottom:350.080000pt;}
.y4b_c01102{bottom:372.480000pt;}
.y4d_c01102{bottom:376.320000pt;}
.y4c_c01102{bottom:376.960000pt;}
.y4a_c01102{bottom:377.600000pt;}
.y49_c01102{bottom:378.240000pt;}
.y48_c01102{bottom:378.880000pt;}
.y46_c01102{bottom:414.720000pt;}
.y47_c01102{bottom:416.000000pt;}
.y43_c01102{bottom:421.760000pt;}
.y3d_c01102{bottom:423.680000pt;}
.y3e_c01102{bottom:424.320000pt;}
.y42_c01102{bottom:424.960000pt;}
.y3c_c01102{bottom:425.600000pt;}
.y41_c01102{bottom:427.520000pt;}
.y45_c01102{bottom:433.280000pt;}
.y44_c01102{bottom:433.920000pt;}
.y3f_c01102{bottom:434.560000pt;}
.y40_c01102{bottom:435.200000pt;}
.y39_c01102{bottom:469.120000pt;}
.y3a_c01102{bottom:469.760000pt;}
.y38_c01102{bottom:471.040000pt;}
.y3b_c01102{bottom:472.960000pt;}
.y2b_c01102{bottom:510.080000pt;}
.y2a_c01102{bottom:510.720000pt;}
.y28_c01102{bottom:536.960000pt;}
.y37_c01102{bottom:537.600000pt;}
.y29_c01102{bottom:538.880000pt;}
.y24_c01102{bottom:574.720000pt;}
.y26_c01102{bottom:575.360000pt;}
.y25_c01102{bottom:577.280000pt;}
.y22_c01102{bottom:603.520000pt;}
.y27_c01102{bottom:604.160000pt;}
.y36_c01102{bottom:604.800000pt;}
.y23_c01102{bottom:605.440000pt;}
.y20_c01102{bottom:640.640000pt;}
.y1d_c01102{bottom:641.280000pt;}
.y35_c01102{bottom:641.920000pt;}
.y21_c01102{bottom:642.560000pt;}
.y1f_c01102{bottom:643.840000pt;}
.y1e_c01102{bottom:645.120000pt;}
.y1c_c01102{bottom:680.320000pt;}
.y1b_c01102{bottom:680.960000pt;}
.y17_c01102{bottom:707.200000pt;}
.y19_c01102{bottom:707.840000pt;}
.y1a_c01102{bottom:708.480000pt;}
.y33_c01102{bottom:709.120000pt;}
.y18_c01102{bottom:709.760000pt;}
.y34_c01102{bottom:711.040000pt;}
.y16_c01102{bottom:746.880000pt;}
.y10_c01102{bottom:773.120000pt;}
.y11_c01102{bottom:773.760000pt;}
.y14_c01102{bottom:774.400000pt;}
.y15_c01102{bottom:775.040000pt;}
.y12_c01102{bottom:775.680000pt;}
.y13_c01102{bottom:776.320000pt;}
.y32_c01102{bottom:777.600000pt;}
.yf_c01102{bottom:810.880000pt;}
.yc_c01102{bottom:811.520000pt;}
.y2f_c01102{bottom:812.800000pt;}
.ye_c01102{bottom:813.440000pt;}
.yd_c01102{bottom:814.080000pt;}
.y31_c01102{bottom:815.360000pt;}
.y30_c01102{bottom:816.000000pt;}
.yb_c01102{bottom:848.000000pt;}
.y6_c01102{bottom:877.440000pt;}
.y7_c01102{bottom:878.080000pt;}
.y9_c01102{bottom:878.720000pt;}
.ya_c01102{bottom:879.360000pt;}
.y8_c01102{bottom:880.000000pt;}
.y2e_c01102{bottom:881.280000pt;}
.y4_c01102{bottom:908.160000pt;}
.y1_c01102{bottom:915.200000pt;}
.y3_c01102{bottom:916.480000pt;}
.y5_c01102{bottom:917.120000pt;}
.y2_c01102{bottom:918.400000pt;}
.y2d_c01102{bottom:919.680000pt;}
.y2c_c01102{bottom:971.520000pt;}
.h11_c01102{height:9.215000pt;}
.hd_c01102{height:13.822500pt;}
.h10_c01102{height:27.645000pt;}
.hf_c01102{height:34.556250pt;}
.he_c01102{height:36.860000pt;}
.hb_c01102{height:39.163750pt;}
.h4_c01102{height:41.467500pt;}
.hc_c01102{height:43.771250pt;}
.h7_c01102{height:46.075000pt;}
.h2_c01102{height:48.378750pt;}
.h8_c01102{height:50.682500pt;}
.h3_c01102{height:52.986250pt;}
.h5_c01102{height:55.290000pt;}
.h9_c01102{height:57.593750pt;}
.ha_c01102{height:59.897500pt;}
.h13_c01102{height:62.201250pt;}
.h12_c01102{height:64.505000pt;}
.h6_c01102{height:76.023750pt;}
.h0_c01102{height:1015.040000pt;}
.h1_c01102{height:1015.333333pt;}
.w0_c01102{width:707.840000pt;}
.w1_c01102{width:708.000000pt;}
.x0_c01102{left:0.000000pt;}
.x1_c01102{left:78.080000pt;}
.x2c_c01102{left:95.360000pt;}
.x1f_c01102{left:96.640000pt;}
.x39_c01102{left:98.560000pt;}
.x3c_c01102{left:114.560000pt;}
.xf_c01102{left:124.800000pt;}
.x3a_c01102{left:134.400000pt;}
.x13_c01102{left:143.360000pt;}
.x2_c01102{left:144.640000pt;}
.x2d_c01102{left:153.600000pt;}
.x3d_c01102{left:171.520000pt;}
.x2e_c01102{left:172.800000pt;}
.x20_c01102{left:180.480000pt;}
.x40_c01102{left:181.760000pt;}
.xd_c01102{left:190.720000pt;}
.x1d_c01102{left:209.920000pt;}
.x37_c01102{left:211.200000pt;}
.x3_c01102{left:219.520000pt;}
.x14_c01102{left:229.120000pt;}
.x21_c01102{left:240.000000pt;}
.xa_c01102{left:267.520000pt;}
.x3e_c01102{left:268.800000pt;}
.x4_c01102{left:277.120000pt;}
.x22_c01102{left:286.720000pt;}
.x2f_c01102{left:295.680000pt;}
.x41_c01102{left:306.560000pt;}
.xb_c01102{left:315.520000pt;}
.x5_c01102{left:324.480000pt;}
.x23_c01102{left:334.720000pt;}
.x33_c01102{left:344.320000pt;}
.x11_c01102{left:353.280000pt;}
.x30_c01102{left:362.880000pt;}
.x15_c01102{left:381.440000pt;}
.x24_c01102{left:392.320000pt;}
.x3b_c01102{left:400.000000pt;}
.x9_c01102{left:401.280000pt;}
.x6_c01102{left:409.600000pt;}
.x34_c01102{left:411.520000pt;}
.x12_c01102{left:419.200000pt;}
.x25_c01102{left:420.480000pt;}
.xc_c01102{left:430.080000pt;}
.xe_c01102{left:439.040000pt;}
.x7_c01102{left:448.640000pt;}
.x10_c01102{left:453.120000pt;}
.x26_c01102{left:458.240000pt;}
.x31_c01102{left:467.840000pt;}
.x27_c01102{left:478.080000pt;}
.x1e_c01102{left:496.640000pt;}
.x8_c01102{left:497.920000pt;}
.x28_c01102{left:504.960000pt;}
.x35_c01102{left:517.120000pt;}
.x36_c01102{left:535.680000pt;}
.x1c_c01102{left:544.000000pt;}
.x38_c01102{left:545.280000pt;}
.x29_c01102{left:554.880000pt;}
.x2b_c01102{left:563.200000pt;}
.x32_c01102{left:564.480000pt;}
.x17_c01102{left:574.720000pt;}
.x2a_c01102{left:581.760000pt;}
.x3f_c01102{left:593.280000pt;}
.x1b_c01102{left:602.880000pt;}
.x18_c01102{left:604.160000pt;}
.x16_c01102{left:632.320000pt;}
.x19_c01102{left:641.280000pt;}
.x1a_c01102{left:659.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2eef7bbb1866a1404d3a1ab2.woff2')format("woff");}.ff1_c01103{font-family:ff1_c01103;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m49_c01103{transform:matrix(0.175550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175550,0.000000,0.000000,0.250000,0,0);}
.m3c_c01103{transform:matrix(0.183625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183625,0.000000,0.000000,0.250000,0,0);}
.m3e_c01103{transform:matrix(0.203550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203550,0.000000,0.000000,0.250000,0,0);}
.m51_c01103{transform:matrix(0.211400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211400,0.000000,0.000000,0.250000,0,0);}
.m34_c01103{transform:matrix(0.238800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238800,0.000000,0.000000,0.250000,0,0);}
.m48_c01103{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m38_c01103{transform:matrix(0.243900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243900,0.000000,0.000000,0.250000,0,0);}
.m3f_c01103{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_c01103{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);}
.m2c_c01103{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_c01103{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);}
.m39_c01103{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_c01103{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m28_c01103{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_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);}
.m0_c01103{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m18_c01103{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m23_c01103{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);}
.m43_c01103{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);}
.m3a_c01103{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mb_c01103{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);}
.m4b_c01103{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m31_c01103{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m16_c01103{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m6_c01103{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01103{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m17_c01103{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m29_c01103{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01103{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m35_c01103{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m5_c01103{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m27_c01103{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3_c01103{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m2_c01103{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.md_c01103{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.me_c01103{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m14_c01103{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01103{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m20_c01103{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);}
.m41_c01103{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);}
.m1b_c01103{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1_c01103{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m25_c01103{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m22_c01103{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);}
.m19_c01103{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.mc_c01103{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);}
.m15_c01103{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m32_c01103{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01103{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.mf_c01103{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_c01103{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_c01103{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);}
.m21_c01103{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m44_c01103{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);}
.m33_c01103{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01103{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);}
.m2b_c01103{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m4_c01103{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01103{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.ma_c01103{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01103{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);}
.m1c_c01103{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);}
.m24_c01103{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m7_c01103{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m10_c01103{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01103{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m12_c01103{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);}
.m4d_c01103{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m26_c01103{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01103{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);}
.m2e_c01103{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m40_c01103{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);}
.m11_c01103{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);}
.m46_c01103{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m37_c01103{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);}
.m36_c01103{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m13_c01103{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01103{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m50_c01103{transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01103{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01103{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m47_c01103{transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);}
.v1_c01103{vertical-align:-14.400000px;}
.v0_c01103{vertical-align:0.000000px;}
.ls0_c01103{letter-spacing:0.000000px;}
.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;}
}
.ws1_c01103{word-spacing:0.000000px;}
.ws0_c01103{word-spacing:14.058720px;}
.fc0_c01103{color:transparent;}
.fsa_c01103{font-size:23.040000px;}
.fsc_c01103{font-size:34.560000px;}
.fs8_c01103{font-size:37.440000px;}
.fs9_c01103{font-size:40.320000px;}
.fs7_c01103{font-size:43.200000px;}
.fsb_c01103{font-size:46.080000px;}
.fsf_c01103{font-size:48.960000px;}
.fs2_c01103{font-size:51.840000px;}
.fs5_c01103{font-size:54.720000px;}
.fsd_c01103{font-size:57.600000px;}
.fs4_c01103{font-size:60.480000px;}
.fs1_c01103{font-size:63.360000px;}
.fs12_c01103{font-size:66.240000px;}
.fse_c01103{font-size:69.120000px;}
.fs6_c01103{font-size:72.000000px;}
.fs0_c01103{font-size:74.880000px;}
.fs3_c01103{font-size:77.760000px;}
.fs10_c01103{font-size:100.800000px;}
.fs11_c01103{font-size:103.680000px;}
.y0_c01103{bottom:0.000000px;}
.y6b_c01103{bottom:78.480000px;}
.y81_c01103{bottom:79.200000px;}
.y69_c01103{bottom:79.920000px;}
.y82_c01103{bottom:80.640000px;}
.y6a_c01103{bottom:81.360000px;}
.y68_c01103{bottom:82.080000px;}
.y66_c01103{bottom:120.960000px;}
.y80_c01103{bottom:121.680000px;}
.y67_c01103{bottom:122.400000px;}
.y64_c01103{bottom:123.120000px;}
.y7f_c01103{bottom:123.840000px;}
.y63_c01103{bottom:124.560000px;}
.y65_c01103{bottom:125.280000px;}
.y61_c01103{bottom:163.440000px;}
.y62_c01103{bottom:165.600000px;}
.y5f_c01103{bottom:166.320000px;}
.y5e_c01103{bottom:167.040000px;}
.y60_c01103{bottom:167.760000px;}
.y5c_c01103{bottom:205.920000px;}
.y5d_c01103{bottom:206.640000px;}
.y7e_c01103{bottom:207.360000px;}
.y7d_c01103{bottom:208.080000px;}
.y5a_c01103{bottom:208.800000px;}
.y5b_c01103{bottom:210.240000px;}
.y59_c01103{bottom:249.120000px;}
.y58_c01103{bottom:250.560000px;}
.y57_c01103{bottom:251.280000px;}
.y54_c01103{bottom:291.600000px;}
.y55_c01103{bottom:293.040000px;}
.y7c_c01103{bottom:293.760000px;}
.y53_c01103{bottom:294.480000px;}
.y56_c01103{bottom:295.200000px;}
.y50_c01103{bottom:334.080000px;}
.y7b_c01103{bottom:334.800000px;}
.y51_c01103{bottom:335.520000px;}
.y4f_c01103{bottom:336.960000px;}
.y52_c01103{bottom:337.680000px;}
.y7a_c01103{bottom:338.400000px;}
.y4e_c01103{bottom:369.360000px;}
.y4b_c01103{bottom:377.280000px;}
.y4c_c01103{bottom:378.000000px;}
.y78_c01103{bottom:378.720000px;}
.y4a_c01103{bottom:379.440000px;}
.y79_c01103{bottom:380.160000px;}
.y4d_c01103{bottom:380.880000px;}
.y49_c01103{bottom:413.280000px;}
.y45_c01103{bottom:420.480000px;}
.y47_c01103{bottom:421.200000px;}
.y44_c01103{bottom:421.920000px;}
.y48_c01103{bottom:423.360000px;}
.y46_c01103{bottom:424.080000px;}
.y41_c01103{bottom:462.960000px;}
.y43_c01103{bottom:463.680000px;}
.y40_c01103{bottom:464.400000px;}
.y76_c01103{bottom:465.120000px;}
.y77_c01103{bottom:465.840000px;}
.y42_c01103{bottom:466.560000px;}
.y3b_c01103{bottom:504.720000px;}
.y3f_c01103{bottom:505.440000px;}
.y3d_c01103{bottom:506.160000px;}
.y3a_c01103{bottom:506.880000px;}
.y3e_c01103{bottom:508.320000px;}
.y3c_c01103{bottom:509.040000px;}
.y37_c01103{bottom:547.200000px;}
.y36_c01103{bottom:549.360000px;}
.y75_c01103{bottom:550.080000px;}
.y39_c01103{bottom:550.800000px;}
.y38_c01103{bottom:551.520000px;}
.y35_c01103{bottom:590.400000px;}
.y33_c01103{bottom:592.560000px;}
.y73_c01103{bottom:593.280000px;}
.y34_c01103{bottom:594.000000px;}
.y74_c01103{bottom:594.720000px;}
.y31_c01103{bottom:632.160000px;}
.y2e_c01103{bottom:633.600000px;}
.y32_c01103{bottom:635.040000px;}
.y30_c01103{bottom:635.760000px;}
.y2f_c01103{bottom:636.480000px;}
.y72_c01103{bottom:637.200000px;}
.y2d_c01103{bottom:674.640000px;}
.y2a_c01103{bottom:676.080000px;}
.y70_c01103{bottom:676.800000px;}
.y2b_c01103{bottom:677.520000px;}
.y2c_c01103{bottom:678.240000px;}
.y71_c01103{bottom:678.960000px;}
.y27_c01103{bottom:718.560000px;}
.y6e_c01103{bottom:719.280000px;}
.y29_c01103{bottom:720.000000px;}
.y6f_c01103{bottom:720.720000px;}
.y28_c01103{bottom:721.440000px;}
.y23_c01103{bottom:761.040000px;}
.y25_c01103{bottom:761.760000px;}
.y24_c01103{bottom:763.200000px;}
.y26_c01103{bottom:764.640000px;}
.y20_c01103{bottom:791.280000px;}
.y1e_c01103{bottom:793.440000px;}
.y21_c01103{bottom:794.160000px;}
.y1f_c01103{bottom:795.600000px;}
.y22_c01103{bottom:796.320000px;}
.y1d_c01103{bottom:835.200000px;}
.y1c_c01103{bottom:835.920000px;}
.y17_c01103{bottom:866.880000px;}
.y15_c01103{bottom:867.600000px;}
.y18_c01103{bottom:868.320000px;}
.y1a_c01103{bottom:869.040000px;}
.y6c_c01103{bottom:869.760000px;}
.y16_c01103{bottom:870.480000px;}
.y1b_c01103{bottom:871.200000px;}
.y19_c01103{bottom:871.920000px;}
.y6d_c01103{bottom:872.640000px;}
.y11_c01103{bottom:910.800000px;}
.y13_c01103{bottom:911.520000px;}
.y10_c01103{bottom:912.240000px;}
.y12_c01103{bottom:912.960000px;}
.yc_c01103{bottom:941.760000px;}
.ye_c01103{bottom:943.920000px;}
.y14_c01103{bottom:944.640000px;}
.yd_c01103{bottom:945.360000px;}
.yf_c01103{bottom:946.080000px;}
.yb_c01103{bottom:984.240000px;}
.ya_c01103{bottom:984.960000px;}
.y9_c01103{bottom:986.400000px;}
.y4_c01103{bottom:1015.920000px;}
.y2_c01103{bottom:1016.640000px;}
.y5_c01103{bottom:1017.360000px;}
.y6_c01103{bottom:1018.800000px;}
.y8_c01103{bottom:1019.520000px;}
.y3_c01103{bottom:1020.240000px;}
.y7_c01103{bottom:1020.960000px;}
.y1_c01103{bottom:1080.000000px;}
.hc_c01103{height:20.733750px;}
.he_c01103{height:31.100625px;}
.ha_c01103{height:33.692344px;}
.hb_c01103{height:36.284062px;}
.h9_c01103{height:38.875781px;}
.hd_c01103{height:41.467500px;}
.h11_c01103{height:44.059219px;}
.h4_c01103{height:46.650937px;}
.h7_c01103{height:49.242656px;}
.h12_c01103{height:50.392969px;}
.hf_c01103{height:51.834375px;}
.h6_c01103{height:54.426094px;}
.h3_c01103{height:57.017812px;}
.h15_c01103{height:59.609531px;}
.h10_c01103{height:62.201250px;}
.h8_c01103{height:64.792969px;}
.h2_c01103{height:67.384687px;}
.h5_c01103{height:69.976406px;}
.h13_c01103{height:90.710156px;}
.h14_c01103{height:93.301875px;}
.h0_c01103{height:1138.320000px;}
.h1_c01103{height:1138.500000px;}
.w0_c01103{width:792.000000px;}
.x0_c01103{left:0.000000px;}
.x2_c01103{left:88.560000px;}
.x3_c01103{left:162.000000px;}
.xc_c01103{left:163.440000px;}
.x1b_c01103{left:194.400000px;}
.x4_c01103{left:205.200000px;}
.xd_c01103{left:207.360000px;}
.x30_c01103{left:216.000000px;}
.x12_c01103{left:217.440000px;}
.xe_c01103{left:248.400000px;}
.x13_c01103{left:257.760000px;}
.x32_c01103{left:259.200000px;}
.x2c_c01103{left:269.280000px;}
.x1f_c01103{left:280.800000px;}
.x25_c01103{left:290.880000px;}
.x14_c01103{left:300.960000px;}
.x5_c01103{left:312.480000px;}
.x31_c01103{left:323.280000px;}
.x2e_c01103{left:332.640000px;}
.x20_c01103{left:334.080000px;}
.x1c_c01103{left:344.160000px;}
.x33_c01103{left:345.600000px;}
.x2d_c01103{left:354.240000px;}
.xf_c01103{left:355.680000px;}
.x17_c01103{left:365.040000px;}
.x6_c01103{left:367.200000px;}
.x21_c01103{left:375.840000px;}
.x2f_c01103{left:387.360000px;}
.x1d_c01103{left:398.880000px;}
.x26_c01103{left:408.240000px;}
.x18_c01103{left:409.680000px;}
.x2a_c01103{left:429.840000px;}
.x28_c01103{left:441.360000px;}
.x7_c01103{left:451.440000px;}
.x10_c01103{left:452.880000px;}
.x27_c01103{left:462.240000px;}
.x22_c01103{left:483.840000px;}
.x8_c01103{left:495.360000px;}
.x19_c01103{left:496.800000px;}
.x11_c01103{left:506.160000px;}
.x1a_c01103{left:507.600000px;}
.x2b_c01103{left:521.280000px;}
.x23_c01103{left:537.840000px;}
.x29_c01103{left:558.720000px;}
.x9_c01103{left:560.160000px;}
.x24_c01103{left:581.760000px;}
.x1e_c01103{left:613.440000px;}
.xa_c01103{left:614.880000px;}
.x3a_c01103{left:624.960000px;}
.x35_c01103{left:645.840000px;}
.x15_c01103{left:648.000000px;}
.x36_c01103{left:678.960000px;}
.x16_c01103{left:680.400000px;}
.x37_c01103{left:712.080000px;}
.x1_c01103{left:715.680000px;}
.x38_c01103{left:721.440000px;}
.xb_c01103{left:722.880000px;}
.x39_c01103{left:741.600000px;}
.x34_c01103{left:743.040000px;}
@media print{
.v1_c01103{vertical-align:-12.800000pt;}
.v0_c01103{vertical-align:0.000000pt;}
.ls0_c01103{letter-spacing:0.000000pt;}
.ws1_c01103{word-spacing:0.000000pt;}
.ws0_c01103{word-spacing:12.496640pt;}
.fsa_c01103{font-size:20.480000pt;}
.fsc_c01103{font-size:30.720000pt;}
.fs8_c01103{font-size:33.280000pt;}
.fs9_c01103{font-size:35.840000pt;}
.fs7_c01103{font-size:38.400000pt;}
.fsb_c01103{font-size:40.960000pt;}
.fsf_c01103{font-size:43.520000pt;}
.fs2_c01103{font-size:46.080000pt;}
.fs5_c01103{font-size:48.640000pt;}
.fsd_c01103{font-size:51.200000pt;}
.fs4_c01103{font-size:53.760000pt;}
.fs1_c01103{font-size:56.320000pt;}
.fs12_c01103{font-size:58.880000pt;}
.fse_c01103{font-size:61.440000pt;}
.fs6_c01103{font-size:64.000000pt;}
.fs0_c01103{font-size:66.560000pt;}
.fs3_c01103{font-size:69.120000pt;}
.fs10_c01103{font-size:89.600000pt;}
.fs11_c01103{font-size:92.160000pt;}
.y0_c01103{bottom:0.000000pt;}
.y6b_c01103{bottom:69.760000pt;}
.y81_c01103{bottom:70.400000pt;}
.y69_c01103{bottom:71.040000pt;}
.y82_c01103{bottom:71.680000pt;}
.y6a_c01103{bottom:72.320000pt;}
.y68_c01103{bottom:72.960000pt;}
.y66_c01103{bottom:107.520000pt;}
.y80_c01103{bottom:108.160000pt;}
.y67_c01103{bottom:108.800000pt;}
.y64_c01103{bottom:109.440000pt;}
.y7f_c01103{bottom:110.080000pt;}
.y63_c01103{bottom:110.720000pt;}
.y65_c01103{bottom:111.360000pt;}
.y61_c01103{bottom:145.280000pt;}
.y62_c01103{bottom:147.200000pt;}
.y5f_c01103{bottom:147.840000pt;}
.y5e_c01103{bottom:148.480000pt;}
.y60_c01103{bottom:149.120000pt;}
.y5c_c01103{bottom:183.040000pt;}
.y5d_c01103{bottom:183.680000pt;}
.y7e_c01103{bottom:184.320000pt;}
.y7d_c01103{bottom:184.960000pt;}
.y5a_c01103{bottom:185.600000pt;}
.y5b_c01103{bottom:186.880000pt;}
.y59_c01103{bottom:221.440000pt;}
.y58_c01103{bottom:222.720000pt;}
.y57_c01103{bottom:223.360000pt;}
.y54_c01103{bottom:259.200000pt;}
.y55_c01103{bottom:260.480000pt;}
.y7c_c01103{bottom:261.120000pt;}
.y53_c01103{bottom:261.760000pt;}
.y56_c01103{bottom:262.400000pt;}
.y50_c01103{bottom:296.960000pt;}
.y7b_c01103{bottom:297.600000pt;}
.y51_c01103{bottom:298.240000pt;}
.y4f_c01103{bottom:299.520000pt;}
.y52_c01103{bottom:300.160000pt;}
.y7a_c01103{bottom:300.800000pt;}
.y4e_c01103{bottom:328.320000pt;}
.y4b_c01103{bottom:335.360000pt;}
.y4c_c01103{bottom:336.000000pt;}
.y78_c01103{bottom:336.640000pt;}
.y4a_c01103{bottom:337.280000pt;}
.y79_c01103{bottom:337.920000pt;}
.y4d_c01103{bottom:338.560000pt;}
.y49_c01103{bottom:367.360000pt;}
.y45_c01103{bottom:373.760000pt;}
.y47_c01103{bottom:374.400000pt;}
.y44_c01103{bottom:375.040000pt;}
.y48_c01103{bottom:376.320000pt;}
.y46_c01103{bottom:376.960000pt;}
.y41_c01103{bottom:411.520000pt;}
.y43_c01103{bottom:412.160000pt;}
.y40_c01103{bottom:412.800000pt;}
.y76_c01103{bottom:413.440000pt;}
.y77_c01103{bottom:414.080000pt;}
.y42_c01103{bottom:414.720000pt;}
.y3b_c01103{bottom:448.640000pt;}
.y3f_c01103{bottom:449.280000pt;}
.y3d_c01103{bottom:449.920000pt;}
.y3a_c01103{bottom:450.560000pt;}
.y3e_c01103{bottom:451.840000pt;}
.y3c_c01103{bottom:452.480000pt;}
.y37_c01103{bottom:486.400000pt;}
.y36_c01103{bottom:488.320000pt;}
.y75_c01103{bottom:488.960000pt;}
.y39_c01103{bottom:489.600000pt;}
.y38_c01103{bottom:490.240000pt;}
.y35_c01103{bottom:524.800000pt;}
.y33_c01103{bottom:526.720000pt;}
.y73_c01103{bottom:527.360000pt;}
.y34_c01103{bottom:528.000000pt;}
.y74_c01103{bottom:528.640000pt;}
.y31_c01103{bottom:561.920000pt;}
.y2e_c01103{bottom:563.200000pt;}
.y32_c01103{bottom:564.480000pt;}
.y30_c01103{bottom:565.120000pt;}
.y2f_c01103{bottom:565.760000pt;}
.y72_c01103{bottom:566.400000pt;}
.y2d_c01103{bottom:599.680000pt;}
.y2a_c01103{bottom:600.960000pt;}
.y70_c01103{bottom:601.600000pt;}
.y2b_c01103{bottom:602.240000pt;}
.y2c_c01103{bottom:602.880000pt;}
.y71_c01103{bottom:603.520000pt;}
.y27_c01103{bottom:638.720000pt;}
.y6e_c01103{bottom:639.360000pt;}
.y29_c01103{bottom:640.000000pt;}
.y6f_c01103{bottom:640.640000pt;}
.y28_c01103{bottom:641.280000pt;}
.y23_c01103{bottom:676.480000pt;}
.y25_c01103{bottom:677.120000pt;}
.y24_c01103{bottom:678.400000pt;}
.y26_c01103{bottom:679.680000pt;}
.y20_c01103{bottom:703.360000pt;}
.y1e_c01103{bottom:705.280000pt;}
.y21_c01103{bottom:705.920000pt;}
.y1f_c01103{bottom:707.200000pt;}
.y22_c01103{bottom:707.840000pt;}
.y1d_c01103{bottom:742.400000pt;}
.y1c_c01103{bottom:743.040000pt;}
.y17_c01103{bottom:770.560000pt;}
.y15_c01103{bottom:771.200000pt;}
.y18_c01103{bottom:771.840000pt;}
.y1a_c01103{bottom:772.480000pt;}
.y6c_c01103{bottom:773.120000pt;}
.y16_c01103{bottom:773.760000pt;}
.y1b_c01103{bottom:774.400000pt;}
.y19_c01103{bottom:775.040000pt;}
.y6d_c01103{bottom:775.680000pt;}
.y11_c01103{bottom:809.600000pt;}
.y13_c01103{bottom:810.240000pt;}
.y10_c01103{bottom:810.880000pt;}
.y12_c01103{bottom:811.520000pt;}
.yc_c01103{bottom:837.120000pt;}
.ye_c01103{bottom:839.040000pt;}
.y14_c01103{bottom:839.680000pt;}
.yd_c01103{bottom:840.320000pt;}
.yf_c01103{bottom:840.960000pt;}
.yb_c01103{bottom:874.880000pt;}
.ya_c01103{bottom:875.520000pt;}
.y9_c01103{bottom:876.800000pt;}
.y4_c01103{bottom:903.040000pt;}
.y2_c01103{bottom:903.680000pt;}
.y5_c01103{bottom:904.320000pt;}
.y6_c01103{bottom:905.600000pt;}
.y8_c01103{bottom:906.240000pt;}
.y3_c01103{bottom:906.880000pt;}
.y7_c01103{bottom:907.520000pt;}
.y1_c01103{bottom:960.000000pt;}
.hc_c01103{height:18.430000pt;}
.he_c01103{height:27.645000pt;}
.ha_c01103{height:29.948750pt;}
.hb_c01103{height:32.252500pt;}
.h9_c01103{height:34.556250pt;}
.hd_c01103{height:36.860000pt;}
.h11_c01103{height:39.163750pt;}
.h4_c01103{height:41.467500pt;}
.h7_c01103{height:43.771250pt;}
.h12_c01103{height:44.793750pt;}
.hf_c01103{height:46.075000pt;}
.h6_c01103{height:48.378750pt;}
.h3_c01103{height:50.682500pt;}
.h15_c01103{height:52.986250pt;}
.h10_c01103{height:55.290000pt;}
.h8_c01103{height:57.593750pt;}
.h2_c01103{height:59.897500pt;}
.h5_c01103{height:62.201250pt;}
.h13_c01103{height:80.631250pt;}
.h14_c01103{height:82.935000pt;}
.h0_c01103{height:1011.840000pt;}
.h1_c01103{height:1012.000000pt;}
.w0_c01103{width:704.000000pt;}
.x0_c01103{left:0.000000pt;}
.x2_c01103{left:78.720000pt;}
.x3_c01103{left:144.000000pt;}
.xc_c01103{left:145.280000pt;}
.x1b_c01103{left:172.800000pt;}
.x4_c01103{left:182.400000pt;}
.xd_c01103{left:184.320000pt;}
.x30_c01103{left:192.000000pt;}
.x12_c01103{left:193.280000pt;}
.xe_c01103{left:220.800000pt;}
.x13_c01103{left:229.120000pt;}
.x32_c01103{left:230.400000pt;}
.x2c_c01103{left:239.360000pt;}
.x1f_c01103{left:249.600000pt;}
.x25_c01103{left:258.560000pt;}
.x14_c01103{left:267.520000pt;}
.x5_c01103{left:277.760000pt;}
.x31_c01103{left:287.360000pt;}
.x2e_c01103{left:295.680000pt;}
.x20_c01103{left:296.960000pt;}
.x1c_c01103{left:305.920000pt;}
.x33_c01103{left:307.200000pt;}
.x2d_c01103{left:314.880000pt;}
.xf_c01103{left:316.160000pt;}
.x17_c01103{left:324.480000pt;}
.x6_c01103{left:326.400000pt;}
.x21_c01103{left:334.080000pt;}
.x2f_c01103{left:344.320000pt;}
.x1d_c01103{left:354.560000pt;}
.x26_c01103{left:362.880000pt;}
.x18_c01103{left:364.160000pt;}
.x2a_c01103{left:382.080000pt;}
.x28_c01103{left:392.320000pt;}
.x7_c01103{left:401.280000pt;}
.x10_c01103{left:402.560000pt;}
.x27_c01103{left:410.880000pt;}
.x22_c01103{left:430.080000pt;}
.x8_c01103{left:440.320000pt;}
.x19_c01103{left:441.600000pt;}
.x11_c01103{left:449.920000pt;}
.x1a_c01103{left:451.200000pt;}
.x2b_c01103{left:463.360000pt;}
.x23_c01103{left:478.080000pt;}
.x29_c01103{left:496.640000pt;}
.x9_c01103{left:497.920000pt;}
.x24_c01103{left:517.120000pt;}
.x1e_c01103{left:545.280000pt;}
.xa_c01103{left:546.560000pt;}
.x3a_c01103{left:555.520000pt;}
.x35_c01103{left:574.080000pt;}
.x15_c01103{left:576.000000pt;}
.x36_c01103{left:603.520000pt;}
.x16_c01103{left:604.800000pt;}
.x37_c01103{left:632.960000pt;}
.x1_c01103{left:636.160000pt;}
.x38_c01103{left:641.280000pt;}
.xb_c01103{left:642.560000pt;}
.x39_c01103{left:659.200000pt;}
.x34_c01103{left:660.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_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_6a449b044483acbecc0d11ba.woff2')format("woff");}.ff1_c01104{font-family:ff1_c01104;line-height:1.109863;font-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_c01104{transform:matrix(0.177600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177600,0.000000,0.000000,0.250000,0,0);}
.m33_c01104{transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);}
.m36_c01104{transform:matrix(0.192400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192400,0.000000,0.000000,0.250000,0,0);}
.m37_c01104{transform:matrix(0.203100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203100,0.000000,0.000000,0.250000,0,0);}
.m41_c01104{transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);}
.m3d_c01104{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m42_c01104{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);}
.m3e_c01104{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m35_c01104{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m28_c01104{transform:matrix(0.239175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239175,0.000000,0.000000,0.250000,0,0);}
.m1f_c01104{transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);}
.m2d_c01104{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m22_c01104{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.mb_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);}
.m1c_c01104{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m20_c01104{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_c01104{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);}
.m2c_c01104{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_c01104{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_c01104{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m18_c01104{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);}
.m29_c01104{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m14_c01104{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);}
.m32_c01104{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m13_c01104{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m12_c01104{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01104{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m6_c01104{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);}
.m23_c01104{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01104{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.ma_c01104{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m5_c01104{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.md_c01104{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01104{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m7_c01104{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3_c01104{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m10_c01104{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m31_c01104{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01104{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m39_c01104{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m8_c01104{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m11_c01104{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m40_c01104{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);}
.m34_c01104{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);}
.m3f_c01104{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m17_c01104{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m19_c01104{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);}
.m2e_c01104{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);}
.m24_c01104{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m0_c01104{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_c01104{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m15_c01104{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01104{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);}
.m26_c01104{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m4_c01104{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);}
.m30_c01104{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.mc_c01104{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.mf_c01104{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01104{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.me_c01104{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m21_c01104{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m2_c01104{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);}
.m2a_c01104{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m27_c01104{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01104{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01104{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m9_c01104{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.v0_c01104{vertical-align:0.000000px;}
.ls0_c01104{letter-spacing:0.000000px;}
.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;}
}
.ws1_c01104{word-spacing:0.000000px;}
.ws0_c01104{word-spacing:31.467360px;}
.fc0_c01104{color:transparent;}
.fsd_c01104{font-size:34.560000px;}
.fs2_c01104{font-size:37.440000px;}
.fs9_c01104{font-size:43.200000px;}
.fse_c01104{font-size:46.080000px;}
.fs8_c01104{font-size:48.960000px;}
.fs5_c01104{font-size:51.840000px;}
.fs4_c01104{font-size:54.720000px;}
.fs6_c01104{font-size:57.600000px;}
.fs0_c01104{font-size:60.480000px;}
.fsb_c01104{font-size:63.360000px;}
.fsc_c01104{font-size:66.240000px;}
.fs3_c01104{font-size:69.120000px;}
.fs1_c01104{font-size:72.000000px;}
.fs7_c01104{font-size:74.880000px;}
.fsa_c01104{font-size:77.760000px;}
.y0_c01104{bottom:0.000000px;}
.y4c_c01104{bottom:66.240000px;}
.y49_c01104{bottom:66.960000px;}
.y7e_c01104{bottom:67.680000px;}
.y7f_c01104{bottom:68.400000px;}
.y48_c01104{bottom:69.120000px;}
.y4b_c01104{bottom:69.840000px;}
.y4a_c01104{bottom:70.560000px;}
.y47_c01104{bottom:110.880000px;}
.y46_c01104{bottom:113.760000px;}
.y3d_c01104{bottom:141.840000px;}
.y3e_c01104{bottom:142.560000px;}
.y3f_c01104{bottom:143.280000px;}
.y3c_c01104{bottom:144.720000px;}
.y38_c01104{bottom:185.040000px;}
.y3b_c01104{bottom:185.760000px;}
.y7d_c01104{bottom:186.480000px;}
.y37_c01104{bottom:187.200000px;}
.y3a_c01104{bottom:187.920000px;}
.y39_c01104{bottom:188.640000px;}
.y36_c01104{bottom:226.800000px;}
.y7b_c01104{bottom:227.520000px;}
.y7a_c01104{bottom:228.240000px;}
.y35_c01104{bottom:228.960000px;}
.y7c_c01104{bottom:229.680000px;}
.y34_c01104{bottom:269.280000px;}
.y32_c01104{bottom:270.000000px;}
.y33_c01104{bottom:270.720000px;}
.y78_c01104{bottom:271.440000px;}
.y31_c01104{bottom:272.160000px;}
.y79_c01104{bottom:273.600000px;}
.y2e_c01104{bottom:311.760000px;}
.y30_c01104{bottom:313.200000px;}
.y2d_c01104{bottom:313.920000px;}
.y77_c01104{bottom:314.640000px;}
.y2f_c01104{bottom:315.360000px;}
.y2c_c01104{bottom:354.960000px;}
.y76_c01104{bottom:355.680000px;}
.y75_c01104{bottom:356.400000px;}
.y2b_c01104{bottom:357.120000px;}
.y2a_c01104{bottom:396.000000px;}
.y29_c01104{bottom:396.720000px;}
.y74_c01104{bottom:398.160000px;}
.y28_c01104{bottom:398.880000px;}
.y73_c01104{bottom:401.040000px;}
.y27_c01104{bottom:439.200000px;}
.y26_c01104{bottom:441.360000px;}
.y71_c01104{bottom:442.080000px;}
.y72_c01104{bottom:443.520000px;}
.y70_c01104{bottom:444.240000px;}
.y25_c01104{bottom:481.680000px;}
.y24_c01104{bottom:483.840000px;}
.y6f_c01104{bottom:486.000000px;}
.y6e_c01104{bottom:486.720000px;}
.y23_c01104{bottom:524.880000px;}
.y22_c01104{bottom:526.320000px;}
.y6c_c01104{bottom:527.040000px;}
.y6b_c01104{bottom:529.200000px;}
.y6d_c01104{bottom:529.920000px;}
.y21_c01104{bottom:566.640000px;}
.y20_c01104{bottom:568.800000px;}
.y69_c01104{bottom:570.240000px;}
.y6a_c01104{bottom:571.680000px;}
.y68_c01104{bottom:572.400000px;}
.y1f_c01104{bottom:610.560000px;}
.y1e_c01104{bottom:611.280000px;}
.y66_c01104{bottom:612.000000px;}
.y65_c01104{bottom:614.880000px;}
.y67_c01104{bottom:615.600000px;}
.y1d_c01104{bottom:652.320000px;}
.y1c_c01104{bottom:653.760000px;}
.y62_c01104{bottom:655.920000px;}
.y64_c01104{bottom:656.640000px;}
.y61_c01104{bottom:657.360000px;}
.y63_c01104{bottom:658.080000px;}
.y1b_c01104{bottom:695.520000px;}
.y1a_c01104{bottom:696.960000px;}
.y60_c01104{bottom:697.680000px;}
.y5f_c01104{bottom:699.120000px;}
.y5e_c01104{bottom:700.560000px;}
.y19_c01104{bottom:737.280000px;}
.y18_c01104{bottom:740.160000px;}
.y5c_c01104{bottom:740.880000px;}
.y5b_c01104{bottom:741.600000px;}
.y5d_c01104{bottom:743.040000px;}
.y5a_c01104{bottom:743.760000px;}
.y17_c01104{bottom:780.480000px;}
.y16_c01104{bottom:781.920000px;}
.y58_c01104{bottom:784.080000px;}
.y57_c01104{bottom:784.800000px;}
.y59_c01104{bottom:785.520000px;}
.y56_c01104{bottom:786.240000px;}
.y15_c01104{bottom:823.680000px;}
.y14_c01104{bottom:824.400000px;}
.y54_c01104{bottom:827.280000px;}
.y53_c01104{bottom:828.720000px;}
.y55_c01104{bottom:829.440000px;}
.y13_c01104{bottom:865.440000px;}
.y12_c01104{bottom:866.160000px;}
.y50_c01104{bottom:869.040000px;}
.y51_c01104{bottom:869.760000px;}
.y52_c01104{bottom:871.200000px;}
.y4f_c01104{bottom:871.920000px;}
.y41_c01104{bottom:907.200000px;}
.y40_c01104{bottom:909.360000px;}
.y45_c01104{bottom:910.080000px;}
.y43_c01104{bottom:910.800000px;}
.y4e_c01104{bottom:911.520000px;}
.y4d_c01104{bottom:912.240000px;}
.y42_c01104{bottom:912.960000px;}
.y44_c01104{bottom:913.680000px;}
.y11_c01104{bottom:951.120000px;}
.y10_c01104{bottom:952.560000px;}
.ya_c01104{bottom:982.080000px;}
.y9_c01104{bottom:983.520000px;}
.yb_c01104{bottom:984.240000px;}
.yd_c01104{bottom:984.960000px;}
.ye_c01104{bottom:987.120000px;}
.yc_c01104{bottom:987.840000px;}
.yf_c01104{bottom:990.720000px;}
.y2_c01104{bottom:1025.280000px;}
.y1_c01104{bottom:1026.000000px;}
.y4_c01104{bottom:1026.720000px;}
.y3_c01104{bottom:1029.600000px;}
.y6_c01104{bottom:1030.320000px;}
.y8_c01104{bottom:1032.480000px;}
.y7_c01104{bottom:1033.200000px;}
.y5_c01104{bottom:1093.680000px;}
.hf_c01104{height:31.100625px;}
.h4_c01104{height:33.692344px;}
.hb_c01104{height:38.875781px;}
.h10_c01104{height:41.467500px;}
.ha_c01104{height:44.059219px;}
.h7_c01104{height:46.650937px;}
.h6_c01104{height:49.242656px;}
.h8_c01104{height:51.834375px;}
.h2_c01104{height:54.426094px;}
.hd_c01104{height:57.017812px;}
.he_c01104{height:59.609531px;}
.h5_c01104{height:62.201250px;}
.h3_c01104{height:64.792969px;}
.h9_c01104{height:67.384687px;}
.hc_c01104{height:69.976406px;}
.h0_c01104{height:1138.320000px;}
.h1_c01104{height:1138.500000px;}
.w0_c01104{width:792.000000px;}
.x0_c01104{left:0.000000px;}
.x1_c01104{left:88.560000px;}
.x15_c01104{left:90.000000px;}
.x12_c01104{left:162.000000px;}
.x2_c01104{left:163.440000px;}
.x22_c01104{left:206.640000px;}
.x16_c01104{left:247.680000px;}
.x14_c01104{left:249.120000px;}
.x19_c01104{left:250.560000px;}
.x3_c01104{left:270.720000px;}
.x13_c01104{left:282.240000px;}
.x17_c01104{left:291.600000px;}
.x1b_c01104{left:293.040000px;}
.x11_c01104{left:302.400000px;}
.x4_c01104{left:312.480000px;}
.xb_c01104{left:321.840000px;}
.x20_c01104{left:334.800000px;}
.x18_c01104{left:345.600000px;}
.xc_c01104{left:367.200000px;}
.x1a_c01104{left:378.000000px;}
.x21_c01104{left:420.480000px;}
.xd_c01104{left:463.680000px;}
.x1c_c01104{left:475.200000px;}
.xe_c01104{left:518.400000px;}
.x1d_c01104{left:527.760000px;}
.x6_c01104{left:560.880000px;}
.x1e_c01104{left:573.120000px;}
.x23_c01104{left:592.560000px;}
.x1f_c01104{left:594.720000px;}
.xf_c01104{left:614.160000px;}
.x25_c01104{left:646.560000px;}
.x7_c01104{left:648.000000px;}
.x26_c01104{left:678.960000px;}
.x8_c01104{left:681.120000px;}
.x5_c01104{left:696.240000px;}
.x9_c01104{left:713.520000px;}
.x24_c01104{left:722.160000px;}
.x10_c01104{left:723.600000px;}
.xa_c01104{left:743.040000px;}
@media print{
.v0_c01104{vertical-align:0.000000pt;}
.ls0_c01104{letter-spacing:0.000000pt;}
.ws1_c01104{word-spacing:0.000000pt;}
.ws0_c01104{word-spacing:27.970987pt;}
.fsd_c01104{font-size:30.720000pt;}
.fs2_c01104{font-size:33.280000pt;}
.fs9_c01104{font-size:38.400000pt;}
.fse_c01104{font-size:40.960000pt;}
.fs8_c01104{font-size:43.520000pt;}
.fs5_c01104{font-size:46.080000pt;}
.fs4_c01104{font-size:48.640000pt;}
.fs6_c01104{font-size:51.200000pt;}
.fs0_c01104{font-size:53.760000pt;}
.fsb_c01104{font-size:56.320000pt;}
.fsc_c01104{font-size:58.880000pt;}
.fs3_c01104{font-size:61.440000pt;}
.fs1_c01104{font-size:64.000000pt;}
.fs7_c01104{font-size:66.560000pt;}
.fsa_c01104{font-size:69.120000pt;}
.y0_c01104{bottom:0.000000pt;}
.y4c_c01104{bottom:58.880000pt;}
.y49_c01104{bottom:59.520000pt;}
.y7e_c01104{bottom:60.160000pt;}
.y7f_c01104{bottom:60.800000pt;}
.y48_c01104{bottom:61.440000pt;}
.y4b_c01104{bottom:62.080000pt;}
.y4a_c01104{bottom:62.720000pt;}
.y47_c01104{bottom:98.560000pt;}
.y46_c01104{bottom:101.120000pt;}
.y3d_c01104{bottom:126.080000pt;}
.y3e_c01104{bottom:126.720000pt;}
.y3f_c01104{bottom:127.360000pt;}
.y3c_c01104{bottom:128.640000pt;}
.y38_c01104{bottom:164.480000pt;}
.y3b_c01104{bottom:165.120000pt;}
.y7d_c01104{bottom:165.760000pt;}
.y37_c01104{bottom:166.400000pt;}
.y3a_c01104{bottom:167.040000pt;}
.y39_c01104{bottom:167.680000pt;}
.y36_c01104{bottom:201.600000pt;}
.y7b_c01104{bottom:202.240000pt;}
.y7a_c01104{bottom:202.880000pt;}
.y35_c01104{bottom:203.520000pt;}
.y7c_c01104{bottom:204.160000pt;}
.y34_c01104{bottom:239.360000pt;}
.y32_c01104{bottom:240.000000pt;}
.y33_c01104{bottom:240.640000pt;}
.y78_c01104{bottom:241.280000pt;}
.y31_c01104{bottom:241.920000pt;}
.y79_c01104{bottom:243.200000pt;}
.y2e_c01104{bottom:277.120000pt;}
.y30_c01104{bottom:278.400000pt;}
.y2d_c01104{bottom:279.040000pt;}
.y77_c01104{bottom:279.680000pt;}
.y2f_c01104{bottom:280.320000pt;}
.y2c_c01104{bottom:315.520000pt;}
.y76_c01104{bottom:316.160000pt;}
.y75_c01104{bottom:316.800000pt;}
.y2b_c01104{bottom:317.440000pt;}
.y2a_c01104{bottom:352.000000pt;}
.y29_c01104{bottom:352.640000pt;}
.y74_c01104{bottom:353.920000pt;}
.y28_c01104{bottom:354.560000pt;}
.y73_c01104{bottom:356.480000pt;}
.y27_c01104{bottom:390.400000pt;}
.y26_c01104{bottom:392.320000pt;}
.y71_c01104{bottom:392.960000pt;}
.y72_c01104{bottom:394.240000pt;}
.y70_c01104{bottom:394.880000pt;}
.y25_c01104{bottom:428.160000pt;}
.y24_c01104{bottom:430.080000pt;}
.y6f_c01104{bottom:432.000000pt;}
.y6e_c01104{bottom:432.640000pt;}
.y23_c01104{bottom:466.560000pt;}
.y22_c01104{bottom:467.840000pt;}
.y6c_c01104{bottom:468.480000pt;}
.y6b_c01104{bottom:470.400000pt;}
.y6d_c01104{bottom:471.040000pt;}
.y21_c01104{bottom:503.680000pt;}
.y20_c01104{bottom:505.600000pt;}
.y69_c01104{bottom:506.880000pt;}
.y6a_c01104{bottom:508.160000pt;}
.y68_c01104{bottom:508.800000pt;}
.y1f_c01104{bottom:542.720000pt;}
.y1e_c01104{bottom:543.360000pt;}
.y66_c01104{bottom:544.000000pt;}
.y65_c01104{bottom:546.560000pt;}
.y67_c01104{bottom:547.200000pt;}
.y1d_c01104{bottom:579.840000pt;}
.y1c_c01104{bottom:581.120000pt;}
.y62_c01104{bottom:583.040000pt;}
.y64_c01104{bottom:583.680000pt;}
.y61_c01104{bottom:584.320000pt;}
.y63_c01104{bottom:584.960000pt;}
.y1b_c01104{bottom:618.240000pt;}
.y1a_c01104{bottom:619.520000pt;}
.y60_c01104{bottom:620.160000pt;}
.y5f_c01104{bottom:621.440000pt;}
.y5e_c01104{bottom:622.720000pt;}
.y19_c01104{bottom:655.360000pt;}
.y18_c01104{bottom:657.920000pt;}
.y5c_c01104{bottom:658.560000pt;}
.y5b_c01104{bottom:659.200000pt;}
.y5d_c01104{bottom:660.480000pt;}
.y5a_c01104{bottom:661.120000pt;}
.y17_c01104{bottom:693.760000pt;}
.y16_c01104{bottom:695.040000pt;}
.y58_c01104{bottom:696.960000pt;}
.y57_c01104{bottom:697.600000pt;}
.y59_c01104{bottom:698.240000pt;}
.y56_c01104{bottom:698.880000pt;}
.y15_c01104{bottom:732.160000pt;}
.y14_c01104{bottom:732.800000pt;}
.y54_c01104{bottom:735.360000pt;}
.y53_c01104{bottom:736.640000pt;}
.y55_c01104{bottom:737.280000pt;}
.y13_c01104{bottom:769.280000pt;}
.y12_c01104{bottom:769.920000pt;}
.y50_c01104{bottom:772.480000pt;}
.y51_c01104{bottom:773.120000pt;}
.y52_c01104{bottom:774.400000pt;}
.y4f_c01104{bottom:775.040000pt;}
.y41_c01104{bottom:806.400000pt;}
.y40_c01104{bottom:808.320000pt;}
.y45_c01104{bottom:808.960000pt;}
.y43_c01104{bottom:809.600000pt;}
.y4e_c01104{bottom:810.240000pt;}
.y4d_c01104{bottom:810.880000pt;}
.y42_c01104{bottom:811.520000pt;}
.y44_c01104{bottom:812.160000pt;}
.y11_c01104{bottom:845.440000pt;}
.y10_c01104{bottom:846.720000pt;}
.ya_c01104{bottom:872.960000pt;}
.y9_c01104{bottom:874.240000pt;}
.yb_c01104{bottom:874.880000pt;}
.yd_c01104{bottom:875.520000pt;}
.ye_c01104{bottom:877.440000pt;}
.yc_c01104{bottom:878.080000pt;}
.yf_c01104{bottom:880.640000pt;}
.y2_c01104{bottom:911.360000pt;}
.y1_c01104{bottom:912.000000pt;}
.y4_c01104{bottom:912.640000pt;}
.y3_c01104{bottom:915.200000pt;}
.y6_c01104{bottom:915.840000pt;}
.y8_c01104{bottom:917.760000pt;}
.y7_c01104{bottom:918.400000pt;}
.y5_c01104{bottom:972.160000pt;}
.hf_c01104{height:27.645000pt;}
.h4_c01104{height:29.948750pt;}
.hb_c01104{height:34.556250pt;}
.h10_c01104{height:36.860000pt;}
.ha_c01104{height:39.163750pt;}
.h7_c01104{height:41.467500pt;}
.h6_c01104{height:43.771250pt;}
.h8_c01104{height:46.075000pt;}
.h2_c01104{height:48.378750pt;}
.hd_c01104{height:50.682500pt;}
.he_c01104{height:52.986250pt;}
.h5_c01104{height:55.290000pt;}
.h3_c01104{height:57.593750pt;}
.h9_c01104{height:59.897500pt;}
.hc_c01104{height:62.201250pt;}
.h0_c01104{height:1011.840000pt;}
.h1_c01104{height:1012.000000pt;}
.w0_c01104{width:704.000000pt;}
.x0_c01104{left:0.000000pt;}
.x1_c01104{left:78.720000pt;}
.x15_c01104{left:80.000000pt;}
.x12_c01104{left:144.000000pt;}
.x2_c01104{left:145.280000pt;}
.x22_c01104{left:183.680000pt;}
.x16_c01104{left:220.160000pt;}
.x14_c01104{left:221.440000pt;}
.x19_c01104{left:222.720000pt;}
.x3_c01104{left:240.640000pt;}
.x13_c01104{left:250.880000pt;}
.x17_c01104{left:259.200000pt;}
.x1b_c01104{left:260.480000pt;}
.x11_c01104{left:268.800000pt;}
.x4_c01104{left:277.760000pt;}
.xb_c01104{left:286.080000pt;}
.x20_c01104{left:297.600000pt;}
.x18_c01104{left:307.200000pt;}
.xc_c01104{left:326.400000pt;}
.x1a_c01104{left:336.000000pt;}
.x21_c01104{left:373.760000pt;}
.xd_c01104{left:412.160000pt;}
.x1c_c01104{left:422.400000pt;}
.xe_c01104{left:460.800000pt;}
.x1d_c01104{left:469.120000pt;}
.x6_c01104{left:498.560000pt;}
.x1e_c01104{left:509.440000pt;}
.x23_c01104{left:526.720000pt;}
.x1f_c01104{left:528.640000pt;}
.xf_c01104{left:545.920000pt;}
.x25_c01104{left:574.720000pt;}
.x7_c01104{left:576.000000pt;}
.x26_c01104{left:603.520000pt;}
.x8_c01104{left:605.440000pt;}
.x5_c01104{left:618.880000pt;}
.x9_c01104{left:634.240000pt;}
.x24_c01104{left:641.920000pt;}
.x10_c01104{left:643.200000pt;}
.xa_c01104{left:660.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_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_e303dd195be7ab1426266cdf.woff2')format("woff");}.ff1_c01105{font-family:ff1_c01105;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4a_c01105{transform:matrix(0.177600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177600,0.000000,0.000000,0.250000,0,0);}
.m38_c01105{transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);}
.m28_c01105{transform:matrix(0.193350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193350,0.000000,0.000000,0.250000,0,0);}
.m19_c01105{transform:matrix(0.205350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205350,0.000000,0.000000,0.250000,0,0);}
.m4f_c01105{transform:matrix(0.214075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214075,0.000000,0.000000,0.250000,0,0);}
.md_c01105{transform:matrix(0.216475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216475,0.000000,0.000000,0.250000,0,0);}
.m1e_c01105{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);}
.mb_c01105{transform:matrix(0.239175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239175,0.000000,0.000000,0.250000,0,0);}
.m10_c01105{transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);}
.m40_c01105{transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);}
.m25_c01105{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01105{transform:matrix(0.244200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244200,0.000000,0.000000,0.250000,0,0);}
.m44_c01105{transform:matrix(0.245200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245200,0.000000,0.000000,0.250000,0,0);}
.m47_c01105{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m1_c01105{transform:matrix(0.245700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245700,0.000000,0.000000,0.250000,0,0);}
.m34_c01105{transform:matrix(0.248675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248675,0.000000,0.000000,0.250000,0,0);}
.m52_c01105{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01105{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m5_c01105{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_c01105{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m27_c01105{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_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);}
.m17_c01105{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m12_c01105{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);}
.m51_c01105{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m26_c01105{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_c01105{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m54_c01105{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01105{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m13_c01105{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m3_c01105{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01105{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mc_c01105{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m29_c01105{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m20_c01105{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m33_c01105{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m32_c01105{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m15_c01105{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m24_c01105{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01105{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m39_c01105{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m7_c01105{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01105{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01105{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01105{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m2_c01105{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.me_c01105{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01105{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m22_c01105{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);}
.m2e_c01105{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m16_c01105{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01105{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m0_c01105{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m8_c01105{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);}
.m43_c01105{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m18_c01105{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m37_c01105{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);}
.ma_c01105{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01105{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);}
.m14_c01105{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);}
.m48_c01105{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01105{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);}
.m2c_c01105{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01105{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m4_c01105{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);}
.m41_c01105{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m46_c01105{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);}
.m45_c01105{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m23_c01105{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);}
.m2f_c01105{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01105{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m31_c01105{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01105{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01105{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);}
.mf_c01105{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);}
.m36_c01105{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01105{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);}
.m2b_c01105{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01105{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);}
.m11_c01105{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m42_c01105{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m50_c01105{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m35_c01105{transform:matrix(0.822500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.822500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.822500,0.000000,0.000000,0.250000,0,0);}
.m53_c01105{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01105{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.v0_c01105{vertical-align:0.000000px;}
.v1_c01105{vertical-align:5.760000px;}
.v2_c01105{vertical-align:8.640000px;}
.ls1_c01105{letter-spacing:0.000000px;}
.ls0_c01105{letter-spacing:42.638400px;}
.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;}
}
.ws4_c01105{word-spacing:-3.248160px;}
.ws5_c01105{word-spacing:0.000000px;}
.ws1_c01105{word-spacing:8.411066px;}
.ws0_c01105{word-spacing:10.937051px;}
.ws3_c01105{word-spacing:13.463637px;}
.ws2_c01105{word-spacing:804.750000px;}
.fc0_c01105{color:transparent;}
.fsc_c01105{font-size:17.280000px;}
.fs11_c01105{font-size:34.560000px;}
.fs10_c01105{font-size:37.440000px;}
.fs8_c01105{font-size:40.320000px;}
.fsf_c01105{font-size:43.200000px;}
.fse_c01105{font-size:46.080000px;}
.fsb_c01105{font-size:48.960000px;}
.fs9_c01105{font-size:51.840000px;}
.fs3_c01105{font-size:54.720000px;}
.fsa_c01105{font-size:57.600000px;}
.fs2_c01105{font-size:60.480000px;}
.fs0_c01105{font-size:63.360000px;}
.fs7_c01105{font-size:66.240000px;}
.fs5_c01105{font-size:69.120000px;}
.fs4_c01105{font-size:72.000000px;}
.fs1_c01105{font-size:74.880000px;}
.fs6_c01105{font-size:77.760000px;}
.fsd_c01105{font-size:100.800000px;}
.y0_c01105{bottom:0.000000px;}
.y88_c01105{bottom:56.880000px;}
.y85_c01105{bottom:58.320000px;}
.y86_c01105{bottom:59.040000px;}
.y87_c01105{bottom:60.480000px;}
.y84_c01105{bottom:61.920000px;}
.y83_c01105{bottom:98.640000px;}
.y81_c01105{bottom:100.080000px;}
.y82_c01105{bottom:100.800000px;}
.y80_c01105{bottom:101.520000px;}
.y7f_c01105{bottom:102.960000px;}
.y7e_c01105{bottom:135.360000px;}
.y7d_c01105{bottom:141.120000px;}
.y7a_c01105{bottom:143.280000px;}
.y7c_c01105{bottom:144.720000px;}
.y79_c01105{bottom:145.440000px;}
.y7b_c01105{bottom:146.880000px;}
.y75_c01105{bottom:185.040000px;}
.y77_c01105{bottom:185.760000px;}
.y78_c01105{bottom:186.480000px;}
.y74_c01105{bottom:187.920000px;}
.y76_c01105{bottom:189.360000px;}
.y70_c01105{bottom:227.520000px;}
.y73_c01105{bottom:228.240000px;}
.y72_c01105{bottom:228.960000px;}
.y6f_c01105{bottom:229.680000px;}
.y71_c01105{bottom:231.120000px;}
.y6c_c01105{bottom:270.000000px;}
.y6a_c01105{bottom:270.720000px;}
.y6b_c01105{bottom:271.440000px;}
.y6d_c01105{bottom:272.160000px;}
.y69_c01105{bottom:272.880000px;}
.y6e_c01105{bottom:273.600000px;}
.y63_c01105{bottom:311.760000px;}
.y66_c01105{bottom:312.480000px;}
.y67_c01105{bottom:313.920000px;}
.y68_c01105{bottom:314.640000px;}
.y62_c01105{bottom:315.360000px;}
.y64_c01105{bottom:316.080000px;}
.y65_c01105{bottom:316.800000px;}
.y5d_c01105{bottom:354.960000px;}
.y5f_c01105{bottom:356.400000px;}
.y5c_c01105{bottom:357.120000px;}
.y60_c01105{bottom:357.840000px;}
.y61_c01105{bottom:358.560000px;}
.y5e_c01105{bottom:359.280000px;}
.y59_c01105{bottom:398.160000px;}
.y58_c01105{bottom:400.320000px;}
.y5a_c01105{bottom:401.040000px;}
.y5b_c01105{bottom:401.760000px;}
.y52_c01105{bottom:441.360000px;}
.y55_c01105{bottom:442.080000px;}
.y51_c01105{bottom:442.800000px;}
.y56_c01105{bottom:443.520000px;}
.y53_c01105{bottom:444.240000px;}
.y54_c01105{bottom:444.960000px;}
.y57_c01105{bottom:445.680000px;}
.y45_c01105{bottom:483.840000px;}
.y50_c01105{bottom:484.560000px;}
.y44_c01105{bottom:485.280000px;}
.y4f_c01105{bottom:486.000000px;}
.y42_c01105{bottom:525.600000px;}
.y43_c01105{bottom:526.320000px;}
.y41_c01105{bottom:527.760000px;}
.y4e_c01105{bottom:529.920000px;}
.y4d_c01105{bottom:531.360000px;}
.y40_c01105{bottom:562.320000px;}
.y3d_c01105{bottom:568.080000px;}
.y3f_c01105{bottom:569.520000px;}
.y3c_c01105{bottom:570.240000px;}
.y4b_c01105{bottom:570.960000px;}
.y3e_c01105{bottom:571.680000px;}
.y4c_c01105{bottom:573.120000px;}
.y3b_c01105{bottom:611.280000px;}
.y3a_c01105{bottom:612.000000px;}
.y38_c01105{bottom:614.160000px;}
.y39_c01105{bottom:614.880000px;}
.y37_c01105{bottom:617.040000px;}
.y33_c01105{bottom:642.240000px;}
.y32_c01105{bottom:644.400000px;}
.y36_c01105{bottom:645.120000px;}
.y35_c01105{bottom:645.840000px;}
.y34_c01105{bottom:646.560000px;}
.y4a_c01105{bottom:647.280000px;}
.y2e_c01105{bottom:685.440000px;}
.y2d_c01105{bottom:686.880000px;}
.y49_c01105{bottom:687.600000px;}
.y31_c01105{bottom:688.320000px;}
.y2f_c01105{bottom:689.040000px;}
.y30_c01105{bottom:689.760000px;}
.y19_c01105{bottom:727.920000px;}
.y1b_c01105{bottom:728.640000px;}
.y18_c01105{bottom:729.360000px;}
.y2c_c01105{bottom:730.080000px;}
.y1a_c01105{bottom:730.800000px;}
.y48_c01105{bottom:732.240000px;}
.y15_c01105{bottom:769.680000px;}
.y17_c01105{bottom:771.120000px;}
.y14_c01105{bottom:771.840000px;}
.y2b_c01105{bottom:773.280000px;}
.y16_c01105{bottom:774.000000px;}
.y47_c01105{bottom:775.440000px;}
.y12_c01105{bottom:812.880000px;}
.y11_c01105{bottom:813.600000px;}
.y2a_c01105{bottom:815.760000px;}
.y13_c01105{bottom:816.480000px;}
.y46_c01105{bottom:818.640000px;}
.ye_c01105{bottom:855.360000px;}
.y10_c01105{bottom:856.080000px;}
.yd_c01105{bottom:856.800000px;}
.yf_c01105{bottom:858.960000px;}
.y29_c01105{bottom:862.560000px;}
.yb_c01105{bottom:897.840000px;}
.ya_c01105{bottom:899.280000px;}
.yc_c01105{bottom:900.720000px;}
.y20_c01105{bottom:901.440000px;}
.y21_c01105{bottom:903.600000px;}
.y27_c01105{bottom:904.320000px;}
.y28_c01105{bottom:905.040000px;}
.y8_c01105{bottom:940.320000px;}
.y7_c01105{bottom:941.760000px;}
.y9_c01105{bottom:943.200000px;}
.y1f_c01105{bottom:944.640000px;}
.y25_c01105{bottom:945.360000px;}
.y26_c01105{bottom:946.800000px;}
.y24_c01105{bottom:947.520000px;}
.y6_c01105{bottom:983.520000px;}
.y5_c01105{bottom:984.960000px;}
.y1e_c01105{bottom:988.560000px;}
.y22_c01105{bottom:990.000000px;}
.y23_c01105{bottom:990.720000px;}
.y2_c01105{bottom:1026.720000px;}
.y1_c01105{bottom:1027.440000px;}
.y4_c01105{bottom:1028.160000px;}
.y3_c01105{bottom:1028.880000px;}
.y1d_c01105{bottom:1031.040000px;}
.y1c_c01105{bottom:1087.920000px;}
.hf_c01105{height:15.550313px;}
.h14_c01105{height:31.100625px;}
.h13_c01105{height:33.692344px;}
.ha_c01105{height:36.284062px;}
.h12_c01105{height:38.875781px;}
.h11_c01105{height:41.467500px;}
.he_c01105{height:44.059219px;}
.hb_c01105{height:46.650937px;}
.h5_c01105{height:49.242656px;}
.hc_c01105{height:51.834375px;}
.h4_c01105{height:54.426094px;}
.h15_c01105{height:55.290937px;}
.h2_c01105{height:57.017812px;}
.hd_c01105{height:57.594375px;}
.h9_c01105{height:59.609531px;}
.h7_c01105{height:62.201250px;}
.h6_c01105{height:64.792969px;}
.h3_c01105{height:67.384687px;}
.h8_c01105{height:69.976406px;}
.h10_c01105{height:90.710156px;}
.h0_c01105{height:1140.480000px;}
.h1_c01105{height:1140.750000px;}
.w0_c01105{width:794.880000px;}
.w1_c01105{width:795.000000px;}
.x0_c01105{left:0.000000px;}
.x1_c01105{left:87.840000px;}
.x24_c01105{left:89.280000px;}
.x1c_c01105{left:151.920000px;}
.x2_c01105{left:162.000000px;}
.x1d_c01105{left:164.160000px;}
.x1e_c01105{left:205.200000px;}
.x31_c01105{left:206.640000px;}
.x2a_c01105{left:227.520000px;}
.x3_c01105{left:248.400000px;}
.x32_c01105{left:250.560000px;}
.x5_c01105{left:280.800000px;}
.xb_c01105{left:290.880000px;}
.x2b_c01105{left:292.320000px;}
.x9_c01105{left:302.400000px;}
.x8_c01105{left:321.840000px;}
.x21_c01105{left:324.000000px;}
.x1f_c01105{left:334.800000px;}
.x25_c01105{left:344.160000px;}
.x1a_c01105{left:345.600000px;}
.x4_c01105{left:375.840000px;}
.x7_c01105{left:377.280000px;}
.x2c_c01105{left:378.720000px;}
.x26_c01105{left:388.080000px;}
.x6_c01105{left:408.240000px;}
.x28_c01105{left:420.480000px;}
.x17_c01105{left:429.840000px;}
.x27_c01105{left:431.280000px;}
.xa_c01105{left:451.440000px;}
.xc_c01105{left:462.240000px;}
.x1b_c01105{left:473.760000px;}
.x18_c01105{left:483.840000px;}
.x2e_c01105{left:485.280000px;}
.x20_c01105{left:506.160000px;}
.x30_c01105{left:516.240000px;}
.x23_c01105{left:522.000000px;}
.x19_c01105{left:527.040000px;}
.x2f_c01105{left:533.520000px;}
.x2d_c01105{left:560.880000px;}
.xe_c01105{left:571.680000px;}
.xf_c01105{left:592.560000px;}
.x29_c01105{left:594.000000px;}
.x10_c01105{left:613.440000px;}
.x12_c01105{left:645.840000px;}
.x15_c01105{left:647.280000px;}
.x13_c01105{left:679.680000px;}
.xd_c01105{left:699.120000px;}
.x22_c01105{left:712.080000px;}
.x11_c01105{left:721.440000px;}
.x14_c01105{left:722.880000px;}
.x16_c01105{left:743.040000px;}
@media print{
.v0_c01105{vertical-align:0.000000pt;}
.v1_c01105{vertical-align:5.120000pt;}
.v2_c01105{vertical-align:7.680000pt;}
.ls1_c01105{letter-spacing:0.000000pt;}
.ls0_c01105{letter-spacing:37.900800pt;}
.ws4_c01105{word-spacing:-2.887253pt;}
.ws5_c01105{word-spacing:0.000000pt;}
.ws1_c01105{word-spacing:7.476503pt;}
.ws0_c01105{word-spacing:9.721823pt;}
.ws3_c01105{word-spacing:11.967677pt;}
.ws2_c01105{word-spacing:715.333333pt;}
.fsc_c01105{font-size:15.360000pt;}
.fs11_c01105{font-size:30.720000pt;}
.fs10_c01105{font-size:33.280000pt;}
.fs8_c01105{font-size:35.840000pt;}
.fsf_c01105{font-size:38.400000pt;}
.fse_c01105{font-size:40.960000pt;}
.fsb_c01105{font-size:43.520000pt;}
.fs9_c01105{font-size:46.080000pt;}
.fs3_c01105{font-size:48.640000pt;}
.fsa_c01105{font-size:51.200000pt;}
.fs2_c01105{font-size:53.760000pt;}
.fs0_c01105{font-size:56.320000pt;}
.fs7_c01105{font-size:58.880000pt;}
.fs5_c01105{font-size:61.440000pt;}
.fs4_c01105{font-size:64.000000pt;}
.fs1_c01105{font-size:66.560000pt;}
.fs6_c01105{font-size:69.120000pt;}
.fsd_c01105{font-size:89.600000pt;}
.y0_c01105{bottom:0.000000pt;}
.y88_c01105{bottom:50.560000pt;}
.y85_c01105{bottom:51.840000pt;}
.y86_c01105{bottom:52.480000pt;}
.y87_c01105{bottom:53.760000pt;}
.y84_c01105{bottom:55.040000pt;}
.y83_c01105{bottom:87.680000pt;}
.y81_c01105{bottom:88.960000pt;}
.y82_c01105{bottom:89.600000pt;}
.y80_c01105{bottom:90.240000pt;}
.y7f_c01105{bottom:91.520000pt;}
.y7e_c01105{bottom:120.320000pt;}
.y7d_c01105{bottom:125.440000pt;}
.y7a_c01105{bottom:127.360000pt;}
.y7c_c01105{bottom:128.640000pt;}
.y79_c01105{bottom:129.280000pt;}
.y7b_c01105{bottom:130.560000pt;}
.y75_c01105{bottom:164.480000pt;}
.y77_c01105{bottom:165.120000pt;}
.y78_c01105{bottom:165.760000pt;}
.y74_c01105{bottom:167.040000pt;}
.y76_c01105{bottom:168.320000pt;}
.y70_c01105{bottom:202.240000pt;}
.y73_c01105{bottom:202.880000pt;}
.y72_c01105{bottom:203.520000pt;}
.y6f_c01105{bottom:204.160000pt;}
.y71_c01105{bottom:205.440000pt;}
.y6c_c01105{bottom:240.000000pt;}
.y6a_c01105{bottom:240.640000pt;}
.y6b_c01105{bottom:241.280000pt;}
.y6d_c01105{bottom:241.920000pt;}
.y69_c01105{bottom:242.560000pt;}
.y6e_c01105{bottom:243.200000pt;}
.y63_c01105{bottom:277.120000pt;}
.y66_c01105{bottom:277.760000pt;}
.y67_c01105{bottom:279.040000pt;}
.y68_c01105{bottom:279.680000pt;}
.y62_c01105{bottom:280.320000pt;}
.y64_c01105{bottom:280.960000pt;}
.y65_c01105{bottom:281.600000pt;}
.y5d_c01105{bottom:315.520000pt;}
.y5f_c01105{bottom:316.800000pt;}
.y5c_c01105{bottom:317.440000pt;}
.y60_c01105{bottom:318.080000pt;}
.y61_c01105{bottom:318.720000pt;}
.y5e_c01105{bottom:319.360000pt;}
.y59_c01105{bottom:353.920000pt;}
.y58_c01105{bottom:355.840000pt;}
.y5a_c01105{bottom:356.480000pt;}
.y5b_c01105{bottom:357.120000pt;}
.y52_c01105{bottom:392.320000pt;}
.y55_c01105{bottom:392.960000pt;}
.y51_c01105{bottom:393.600000pt;}
.y56_c01105{bottom:394.240000pt;}
.y53_c01105{bottom:394.880000pt;}
.y54_c01105{bottom:395.520000pt;}
.y57_c01105{bottom:396.160000pt;}
.y45_c01105{bottom:430.080000pt;}
.y50_c01105{bottom:430.720000pt;}
.y44_c01105{bottom:431.360000pt;}
.y4f_c01105{bottom:432.000000pt;}
.y42_c01105{bottom:467.200000pt;}
.y43_c01105{bottom:467.840000pt;}
.y41_c01105{bottom:469.120000pt;}
.y4e_c01105{bottom:471.040000pt;}
.y4d_c01105{bottom:472.320000pt;}
.y40_c01105{bottom:499.840000pt;}
.y3d_c01105{bottom:504.960000pt;}
.y3f_c01105{bottom:506.240000pt;}
.y3c_c01105{bottom:506.880000pt;}
.y4b_c01105{bottom:507.520000pt;}
.y3e_c01105{bottom:508.160000pt;}
.y4c_c01105{bottom:509.440000pt;}
.y3b_c01105{bottom:543.360000pt;}
.y3a_c01105{bottom:544.000000pt;}
.y38_c01105{bottom:545.920000pt;}
.y39_c01105{bottom:546.560000pt;}
.y37_c01105{bottom:548.480000pt;}
.y33_c01105{bottom:570.880000pt;}
.y32_c01105{bottom:572.800000pt;}
.y36_c01105{bottom:573.440000pt;}
.y35_c01105{bottom:574.080000pt;}
.y34_c01105{bottom:574.720000pt;}
.y4a_c01105{bottom:575.360000pt;}
.y2e_c01105{bottom:609.280000pt;}
.y2d_c01105{bottom:610.560000pt;}
.y49_c01105{bottom:611.200000pt;}
.y31_c01105{bottom:611.840000pt;}
.y2f_c01105{bottom:612.480000pt;}
.y30_c01105{bottom:613.120000pt;}
.y19_c01105{bottom:647.040000pt;}
.y1b_c01105{bottom:647.680000pt;}
.y18_c01105{bottom:648.320000pt;}
.y2c_c01105{bottom:648.960000pt;}
.y1a_c01105{bottom:649.600000pt;}
.y48_c01105{bottom:650.880000pt;}
.y15_c01105{bottom:684.160000pt;}
.y17_c01105{bottom:685.440000pt;}
.y14_c01105{bottom:686.080000pt;}
.y2b_c01105{bottom:687.360000pt;}
.y16_c01105{bottom:688.000000pt;}
.y47_c01105{bottom:689.280000pt;}
.y12_c01105{bottom:722.560000pt;}
.y11_c01105{bottom:723.200000pt;}
.y2a_c01105{bottom:725.120000pt;}
.y13_c01105{bottom:725.760000pt;}
.y46_c01105{bottom:727.680000pt;}
.ye_c01105{bottom:760.320000pt;}
.y10_c01105{bottom:760.960000pt;}
.yd_c01105{bottom:761.600000pt;}
.yf_c01105{bottom:763.520000pt;}
.y29_c01105{bottom:766.720000pt;}
.yb_c01105{bottom:798.080000pt;}
.ya_c01105{bottom:799.360000pt;}
.yc_c01105{bottom:800.640000pt;}
.y20_c01105{bottom:801.280000pt;}
.y21_c01105{bottom:803.200000pt;}
.y27_c01105{bottom:803.840000pt;}
.y28_c01105{bottom:804.480000pt;}
.y8_c01105{bottom:835.840000pt;}
.y7_c01105{bottom:837.120000pt;}
.y9_c01105{bottom:838.400000pt;}
.y1f_c01105{bottom:839.680000pt;}
.y25_c01105{bottom:840.320000pt;}
.y26_c01105{bottom:841.600000pt;}
.y24_c01105{bottom:842.240000pt;}
.y6_c01105{bottom:874.240000pt;}
.y5_c01105{bottom:875.520000pt;}
.y1e_c01105{bottom:878.720000pt;}
.y22_c01105{bottom:880.000000pt;}
.y23_c01105{bottom:880.640000pt;}
.y2_c01105{bottom:912.640000pt;}
.y1_c01105{bottom:913.280000pt;}
.y4_c01105{bottom:913.920000pt;}
.y3_c01105{bottom:914.560000pt;}
.y1d_c01105{bottom:916.480000pt;}
.y1c_c01105{bottom:967.040000pt;}
.hf_c01105{height:13.822500pt;}
.h14_c01105{height:27.645000pt;}
.h13_c01105{height:29.948750pt;}
.ha_c01105{height:32.252500pt;}
.h12_c01105{height:34.556250pt;}
.h11_c01105{height:36.860000pt;}
.he_c01105{height:39.163750pt;}
.hb_c01105{height:41.467500pt;}
.h5_c01105{height:43.771250pt;}
.hc_c01105{height:46.075000pt;}
.h4_c01105{height:48.378750pt;}
.h15_c01105{height:49.147500pt;}
.h2_c01105{height:50.682500pt;}
.hd_c01105{height:51.195000pt;}
.h9_c01105{height:52.986250pt;}
.h7_c01105{height:55.290000pt;}
.h6_c01105{height:57.593750pt;}
.h3_c01105{height:59.897500pt;}
.h8_c01105{height:62.201250pt;}
.h10_c01105{height:80.631250pt;}
.h0_c01105{height:1013.760000pt;}
.h1_c01105{height:1014.000000pt;}
.w0_c01105{width:706.560000pt;}
.w1_c01105{width:706.666667pt;}
.x0_c01105{left:0.000000pt;}
.x1_c01105{left:78.080000pt;}
.x24_c01105{left:79.360000pt;}
.x1c_c01105{left:135.040000pt;}
.x2_c01105{left:144.000000pt;}
.x1d_c01105{left:145.920000pt;}
.x1e_c01105{left:182.400000pt;}
.x31_c01105{left:183.680000pt;}
.x2a_c01105{left:202.240000pt;}
.x3_c01105{left:220.800000pt;}
.x32_c01105{left:222.720000pt;}
.x5_c01105{left:249.600000pt;}
.xb_c01105{left:258.560000pt;}
.x2b_c01105{left:259.840000pt;}
.x9_c01105{left:268.800000pt;}
.x8_c01105{left:286.080000pt;}
.x21_c01105{left:288.000000pt;}
.x1f_c01105{left:297.600000pt;}
.x25_c01105{left:305.920000pt;}
.x1a_c01105{left:307.200000pt;}
.x4_c01105{left:334.080000pt;}
.x7_c01105{left:335.360000pt;}
.x2c_c01105{left:336.640000pt;}
.x26_c01105{left:344.960000pt;}
.x6_c01105{left:362.880000pt;}
.x28_c01105{left:373.760000pt;}
.x17_c01105{left:382.080000pt;}
.x27_c01105{left:383.360000pt;}
.xa_c01105{left:401.280000pt;}
.xc_c01105{left:410.880000pt;}
.x1b_c01105{left:421.120000pt;}
.x18_c01105{left:430.080000pt;}
.x2e_c01105{left:431.360000pt;}
.x20_c01105{left:449.920000pt;}
.x30_c01105{left:458.880000pt;}
.x23_c01105{left:464.000000pt;}
.x19_c01105{left:468.480000pt;}
.x2f_c01105{left:474.240000pt;}
.x2d_c01105{left:498.560000pt;}
.xe_c01105{left:508.160000pt;}
.xf_c01105{left:526.720000pt;}
.x29_c01105{left:528.000000pt;}
.x10_c01105{left:545.280000pt;}
.x12_c01105{left:574.080000pt;}
.x15_c01105{left:575.360000pt;}
.x13_c01105{left:604.160000pt;}
.xd_c01105{left:621.440000pt;}
.x22_c01105{left:632.960000pt;}
.x11_c01105{left:641.280000pt;}
.x14_c01105{left:642.560000pt;}
.x16_c01105{left:660.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_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_d2b365d5c286914f0482adf9.woff2')format("woff");}.ff1_c01106{font-family:ff1_c01106;line-height:1.109863;font-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_c01106{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.m29_c01106{transform:matrix(0.231875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231875,0.000000,0.000000,0.250000,0,0);}
.m40_c01106{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m2e_c01106{transform:matrix(0.249375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249375,0.000000,0.000000,0.250000,0,0);}
.m11_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);}
.m3e_c01106{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m2_c01106{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m3_c01106{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);}
.m2b_c01106{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);}
.m1f_c01106{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_c01106{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m17_c01106{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m6_c01106{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m4_c01106{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);}
.m27_c01106{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);}
.m32_c01106{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m22_c01106{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m34_c01106{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m9_c01106{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);}
.m3b_c01106{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mc_c01106{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_c01106{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m35_c01106{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m23_c01106{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.ma_c01106{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01106{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01106{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m28_c01106{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m8_c01106{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m33_c01106{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m5_c01106{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mf_c01106{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01106{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m26_c01106{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m20_c01106{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01106{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.me_c01106{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m12_c01106{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);}
.m36_c01106{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01106{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);}
.m24_c01106{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m0_c01106{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);}
.m2d_c01106{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01106{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.mb_c01106{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);}
.m38_c01106{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m1_c01106{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m16_c01106{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m19_c01106{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);}
.m30_c01106{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01106{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_c01106{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);}
.m10_c01106{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m39_c01106{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m37_c01106{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01106{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);}
.m18_c01106{transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01106{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01106{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m13_c01106{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m31_c01106{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01106{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m21_c01106{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m7_c01106{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m25_c01106{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.v1_c01106{vertical-align:-5.760000px;}
.v0_c01106{vertical-align:0.000000px;}
.v3_c01106{vertical-align:2.880000px;}
.v2_c01106{vertical-align:5.760000px;}
.ls0_c01106{letter-spacing:0.000000px;}
.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:-6.185760px;}
.ws3_c01106{word-spacing:0.000000px;}
.ws1_c01106{word-spacing:15.879600px;}
.ws2_c01106{word-spacing:18.060000px;}
.fc0_c01106{color:transparent;}
.fsd_c01106{font-size:34.560000px;}
.fsb_c01106{font-size:37.440000px;}
.fs11_c01106{font-size:43.200000px;}
.fsc_c01106{font-size:46.080000px;}
.fs4_c01106{font-size:48.960000px;}
.fs5_c01106{font-size:51.840000px;}
.fs7_c01106{font-size:54.720000px;}
.fs1_c01106{font-size:57.600000px;}
.fs8_c01106{font-size:60.480000px;}
.fs9_c01106{font-size:66.240000px;}
.fs6_c01106{font-size:69.120000px;}
.fs0_c01106{font-size:72.000000px;}
.fs3_c01106{font-size:74.880000px;}
.fs2_c01106{font-size:77.760000px;}
.fsf_c01106{font-size:80.640000px;}
.fse_c01106{font-size:83.520000px;}
.fsa_c01106{font-size:103.680000px;}
.fs10_c01106{font-size:109.440000px;}
.y0_c01106{bottom:0.000000px;}
.y85_c01106{bottom:57.600000px;}
.y82_c01106{bottom:66.960000px;}
.y81_c01106{bottom:67.680000px;}
.y84_c01106{bottom:68.400000px;}
.y86_c01106{bottom:69.120000px;}
.y83_c01106{bottom:69.840000px;}
.y80_c01106{bottom:70.560000px;}
.y7f_c01106{bottom:110.880000px;}
.y7c_c01106{bottom:111.600000px;}
.y7e_c01106{bottom:112.320000px;}
.y7d_c01106{bottom:113.760000px;}
.y7b_c01106{bottom:114.480000px;}
.y7a_c01106{bottom:153.360000px;}
.y79_c01106{bottom:154.080000px;}
.y74_c01106{bottom:185.040000px;}
.y77_c01106{bottom:185.760000px;}
.y76_c01106{bottom:186.480000px;}
.y78_c01106{bottom:187.200000px;}
.y75_c01106{bottom:188.640000px;}
.y73_c01106{bottom:189.360000px;}
.y6f_c01106{bottom:216.720000px;}
.y6d_c01106{bottom:227.520000px;}
.y6e_c01106{bottom:228.240000px;}
.y71_c01106{bottom:228.960000px;}
.y70_c01106{bottom:229.680000px;}
.y6c_c01106{bottom:230.400000px;}
.y72_c01106{bottom:231.840000px;}
.y69_c01106{bottom:270.000000px;}
.y6b_c01106{bottom:270.720000px;}
.y6a_c01106{bottom:271.440000px;}
.y66_c01106{bottom:301.680000px;}
.y64_c01106{bottom:303.120000px;}
.y67_c01106{bottom:303.840000px;}
.y63_c01106{bottom:304.560000px;}
.y65_c01106{bottom:305.280000px;}
.y68_c01106{bottom:306.000000px;}
.y60_c01106{bottom:344.880000px;}
.y62_c01106{bottom:347.040000px;}
.y5f_c01106{bottom:347.760000px;}
.y61_c01106{bottom:348.480000px;}
.y5a_c01106{bottom:388.080000px;}
.y5b_c01106{bottom:388.800000px;}
.y59_c01106{bottom:389.520000px;}
.y5e_c01106{bottom:390.240000px;}
.y5c_c01106{bottom:391.680000px;}
.y5d_c01106{bottom:392.400000px;}
.y55_c01106{bottom:428.400000px;}
.y58_c01106{bottom:431.280000px;}
.y54_c01106{bottom:432.000000px;}
.y57_c01106{bottom:432.720000px;}
.y56_c01106{bottom:434.160000px;}
.y51_c01106{bottom:472.320000px;}
.y53_c01106{bottom:474.480000px;}
.y50_c01106{bottom:475.200000px;}
.y52_c01106{bottom:476.640000px;}
.y4d_c01106{bottom:515.520000px;}
.y4c_c01106{bottom:516.960000px;}
.y4f_c01106{bottom:517.680000px;}
.y4e_c01106{bottom:519.120000px;}
.y47_c01106{bottom:558.000000px;}
.y48_c01106{bottom:558.720000px;}
.y46_c01106{bottom:560.160000px;}
.y4b_c01106{bottom:560.880000px;}
.y49_c01106{bottom:561.600000px;}
.y4a_c01106{bottom:562.320000px;}
.y41_c01106{bottom:601.200000px;}
.y43_c01106{bottom:601.920000px;}
.y40_c01106{bottom:602.640000px;}
.y42_c01106{bottom:604.080000px;}
.y44_c01106{bottom:604.800000px;}
.y45_c01106{bottom:606.240000px;}
.y3a_c01106{bottom:643.680000px;}
.y3c_c01106{bottom:644.400000px;}
.y39_c01106{bottom:645.120000px;}
.y3e_c01106{bottom:646.560000px;}
.y3b_c01106{bottom:647.280000px;}
.y3d_c01106{bottom:648.720000px;}
.y3f_c01106{bottom:649.440000px;}
.y35_c01106{bottom:684.000000px;}
.y34_c01106{bottom:687.600000px;}
.y38_c01106{bottom:689.040000px;}
.y37_c01106{bottom:689.760000px;}
.y36_c01106{bottom:691.200000px;}
.y2e_c01106{bottom:728.640000px;}
.y2f_c01106{bottom:729.360000px;}
.y2d_c01106{bottom:730.080000px;}
.y32_c01106{bottom:732.240000px;}
.y33_c01106{bottom:732.960000px;}
.y30_c01106{bottom:733.680000px;}
.y31_c01106{bottom:734.400000px;}
.y29_c01106{bottom:771.120000px;}
.y28_c01106{bottom:773.280000px;}
.y2a_c01106{bottom:775.440000px;}
.y2b_c01106{bottom:777.600000px;}
.y2c_c01106{bottom:778.320000px;}
.y24_c01106{bottom:814.320000px;}
.y23_c01106{bottom:815.760000px;}
.y26_c01106{bottom:817.920000px;}
.y25_c01106{bottom:820.080000px;}
.y27_c01106{bottom:820.800000px;}
.y1e_c01106{bottom:856.080000px;}
.y1f_c01106{bottom:856.800000px;}
.y1d_c01106{bottom:858.240000px;}
.y21_c01106{bottom:861.120000px;}
.y20_c01106{bottom:862.560000px;}
.y22_c01106{bottom:864.000000px;}
.y16_c01106{bottom:899.280000px;}
.y15_c01106{bottom:900.720000px;}
.y18_c01106{bottom:902.160000px;}
.y17_c01106{bottom:903.600000px;}
.y19_c01106{bottom:904.320000px;}
.y1a_c01106{bottom:905.040000px;}
.y1c_c01106{bottom:906.480000px;}
.y1b_c01106{bottom:907.920000px;}
.y13_c01106{bottom:936.720000px;}
.y10_c01106{bottom:941.760000px;}
.yf_c01106{bottom:943.200000px;}
.y12_c01106{bottom:944.640000px;}
.y11_c01106{bottom:945.360000px;}
.yd_c01106{bottom:946.080000px;}
.y14_c01106{bottom:946.800000px;}
.ye_c01106{bottom:947.520000px;}
.y5_c01106{bottom:984.240000px;}
.y4_c01106{bottom:984.960000px;}
.yc_c01106{bottom:989.280000px;}
.ya_c01106{bottom:990.000000px;}
.yb_c01106{bottom:991.440000px;}
.y3_c01106{bottom:1026.720000px;}
.y2_c01106{bottom:1028.160000px;}
.y8_c01106{bottom:1031.760000px;}
.y7_c01106{bottom:1032.480000px;}
.y6_c01106{bottom:1033.920000px;}
.y9_c01106{bottom:1035.360000px;}
.y1_c01106{bottom:1095.840000px;}
.hf_c01106{height:31.100625px;}
.hd_c01106{height:33.692344px;}
.h14_c01106{height:38.875781px;}
.he_c01106{height:41.467500px;}
.h6_c01106{height:44.059219px;}
.h7_c01106{height:46.650937px;}
.h9_c01106{height:49.242656px;}
.h3_c01106{height:51.834375px;}
.ha_c01106{height:54.426094px;}
.h16_c01106{height:54.714375px;}
.h15_c01106{height:55.002656px;}
.hb_c01106{height:59.609531px;}
.h8_c01106{height:62.201250px;}
.h12_c01106{height:64.216406px;}
.h2_c01106{height:64.792969px;}
.h5_c01106{height:67.384687px;}
.h4_c01106{height:69.976406px;}
.h11_c01106{height:72.568125px;}
.h10_c01106{height:75.159844px;}
.hc_c01106{height:93.301875px;}
.h13_c01106{height:98.485312px;}
.h0_c01106{height:1141.920000px;}
.h1_c01106{height:1142.250000px;}
.w0_c01106{width:796.320000px;}
.w1_c01106{width:796.500000px;}
.x0_c01106{left:0.000000px;}
.x2_c01106{left:81.360000px;}
.x1b_c01106{left:82.800000px;}
.x30_c01106{left:84.240000px;}
.x3_c01106{left:154.800000px;}
.x1c_c01106{left:156.240000px;}
.x2c_c01106{left:157.680000px;}
.x31_c01106{left:243.360000px;}
.xe_c01106{left:250.560000px;}
.x5_c01106{left:252.720000px;}
.x4_c01106{left:284.400000px;}
.x27_c01106{left:285.840000px;}
.xf_c01106{left:295.200000px;}
.x22_c01106{left:296.640000px;}
.x19_c01106{left:306.720000px;}
.x23_c01106{left:329.760000px;}
.x28_c01106{left:340.560000px;}
.x10_c01106{left:348.480000px;}
.x18_c01106{left:349.920000px;}
.x1f_c01106{left:351.360000px;}
.x2d_c01106{left:393.840000px;}
.x14_c01106{left:434.880000px;}
.x1a_c01106{left:446.400000px;}
.x2e_c01106{left:447.840000px;}
.x16_c01106{left:456.480000px;}
.x29_c01106{left:468.720000px;}
.x11_c01106{left:478.080000px;}
.x20_c01106{left:479.520000px;}
.x24_c01106{left:511.920000px;}
.x34_c01106{left:522.720000px;}
.x12_c01106{left:524.880000px;}
.x32_c01106{left:529.200000px;}
.x6_c01106{left:555.120000px;}
.x2f_c01106{left:557.280000px;}
.x1e_c01106{left:565.920000px;}
.x2a_c01106{left:567.360000px;}
.x7_c01106{left:586.080000px;}
.x13_c01106{left:587.520000px;}
.x33_c01106{left:588.960000px;}
.x15_c01106{left:606.960000px;}
.x8_c01106{left:619.200000px;}
.x1d_c01106{left:632.880000px;}
.x9_c01106{left:641.520000px;}
.x25_c01106{left:642.960000px;}
.xb_c01106{left:652.320000px;}
.x21_c01106{left:672.480000px;}
.xc_c01106{left:673.920000px;}
.x26_c01106{left:675.360000px;}
.x1_c01106{left:680.400000px;}
.xd_c01106{left:706.320000px;}
.xa_c01106{left:717.120000px;}
.x2b_c01106{left:719.280000px;}
.x17_c01106{left:738.000000px;}
@media print{
.v1_c01106{vertical-align:-5.120000pt;}
.v0_c01106{vertical-align:0.000000pt;}
.v3_c01106{vertical-align:2.560000pt;}
.v2_c01106{vertical-align:5.120000pt;}
.ls0_c01106{letter-spacing:0.000000pt;}
.ws0_c01106{word-spacing:-5.498453pt;}
.ws3_c01106{word-spacing:0.000000pt;}
.ws1_c01106{word-spacing:14.115200pt;}
.ws2_c01106{word-spacing:16.053333pt;}
.fsd_c01106{font-size:30.720000pt;}
.fsb_c01106{font-size:33.280000pt;}
.fs11_c01106{font-size:38.400000pt;}
.fsc_c01106{font-size:40.960000pt;}
.fs4_c01106{font-size:43.520000pt;}
.fs5_c01106{font-size:46.080000pt;}
.fs7_c01106{font-size:48.640000pt;}
.fs1_c01106{font-size:51.200000pt;}
.fs8_c01106{font-size:53.760000pt;}
.fs9_c01106{font-size:58.880000pt;}
.fs6_c01106{font-size:61.440000pt;}
.fs0_c01106{font-size:64.000000pt;}
.fs3_c01106{font-size:66.560000pt;}
.fs2_c01106{font-size:69.120000pt;}
.fsf_c01106{font-size:71.680000pt;}
.fse_c01106{font-size:74.240000pt;}
.fsa_c01106{font-size:92.160000pt;}
.fs10_c01106{font-size:97.280000pt;}
.y0_c01106{bottom:0.000000pt;}
.y85_c01106{bottom:51.200000pt;}
.y82_c01106{bottom:59.520000pt;}
.y81_c01106{bottom:60.160000pt;}
.y84_c01106{bottom:60.800000pt;}
.y86_c01106{bottom:61.440000pt;}
.y83_c01106{bottom:62.080000pt;}
.y80_c01106{bottom:62.720000pt;}
.y7f_c01106{bottom:98.560000pt;}
.y7c_c01106{bottom:99.200000pt;}
.y7e_c01106{bottom:99.840000pt;}
.y7d_c01106{bottom:101.120000pt;}
.y7b_c01106{bottom:101.760000pt;}
.y7a_c01106{bottom:136.320000pt;}
.y79_c01106{bottom:136.960000pt;}
.y74_c01106{bottom:164.480000pt;}
.y77_c01106{bottom:165.120000pt;}
.y76_c01106{bottom:165.760000pt;}
.y78_c01106{bottom:166.400000pt;}
.y75_c01106{bottom:167.680000pt;}
.y73_c01106{bottom:168.320000pt;}
.y6f_c01106{bottom:192.640000pt;}
.y6d_c01106{bottom:202.240000pt;}
.y6e_c01106{bottom:202.880000pt;}
.y71_c01106{bottom:203.520000pt;}
.y70_c01106{bottom:204.160000pt;}
.y6c_c01106{bottom:204.800000pt;}
.y72_c01106{bottom:206.080000pt;}
.y69_c01106{bottom:240.000000pt;}
.y6b_c01106{bottom:240.640000pt;}
.y6a_c01106{bottom:241.280000pt;}
.y66_c01106{bottom:268.160000pt;}
.y64_c01106{bottom:269.440000pt;}
.y67_c01106{bottom:270.080000pt;}
.y63_c01106{bottom:270.720000pt;}
.y65_c01106{bottom:271.360000pt;}
.y68_c01106{bottom:272.000000pt;}
.y60_c01106{bottom:306.560000pt;}
.y62_c01106{bottom:308.480000pt;}
.y5f_c01106{bottom:309.120000pt;}
.y61_c01106{bottom:309.760000pt;}
.y5a_c01106{bottom:344.960000pt;}
.y5b_c01106{bottom:345.600000pt;}
.y59_c01106{bottom:346.240000pt;}
.y5e_c01106{bottom:346.880000pt;}
.y5c_c01106{bottom:348.160000pt;}
.y5d_c01106{bottom:348.800000pt;}
.y55_c01106{bottom:380.800000pt;}
.y58_c01106{bottom:383.360000pt;}
.y54_c01106{bottom:384.000000pt;}
.y57_c01106{bottom:384.640000pt;}
.y56_c01106{bottom:385.920000pt;}
.y51_c01106{bottom:419.840000pt;}
.y53_c01106{bottom:421.760000pt;}
.y50_c01106{bottom:422.400000pt;}
.y52_c01106{bottom:423.680000pt;}
.y4d_c01106{bottom:458.240000pt;}
.y4c_c01106{bottom:459.520000pt;}
.y4f_c01106{bottom:460.160000pt;}
.y4e_c01106{bottom:461.440000pt;}
.y47_c01106{bottom:496.000000pt;}
.y48_c01106{bottom:496.640000pt;}
.y46_c01106{bottom:497.920000pt;}
.y4b_c01106{bottom:498.560000pt;}
.y49_c01106{bottom:499.200000pt;}
.y4a_c01106{bottom:499.840000pt;}
.y41_c01106{bottom:534.400000pt;}
.y43_c01106{bottom:535.040000pt;}
.y40_c01106{bottom:535.680000pt;}
.y42_c01106{bottom:536.960000pt;}
.y44_c01106{bottom:537.600000pt;}
.y45_c01106{bottom:538.880000pt;}
.y3a_c01106{bottom:572.160000pt;}
.y3c_c01106{bottom:572.800000pt;}
.y39_c01106{bottom:573.440000pt;}
.y3e_c01106{bottom:574.720000pt;}
.y3b_c01106{bottom:575.360000pt;}
.y3d_c01106{bottom:576.640000pt;}
.y3f_c01106{bottom:577.280000pt;}
.y35_c01106{bottom:608.000000pt;}
.y34_c01106{bottom:611.200000pt;}
.y38_c01106{bottom:612.480000pt;}
.y37_c01106{bottom:613.120000pt;}
.y36_c01106{bottom:614.400000pt;}
.y2e_c01106{bottom:647.680000pt;}
.y2f_c01106{bottom:648.320000pt;}
.y2d_c01106{bottom:648.960000pt;}
.y32_c01106{bottom:650.880000pt;}
.y33_c01106{bottom:651.520000pt;}
.y30_c01106{bottom:652.160000pt;}
.y31_c01106{bottom:652.800000pt;}
.y29_c01106{bottom:685.440000pt;}
.y28_c01106{bottom:687.360000pt;}
.y2a_c01106{bottom:689.280000pt;}
.y2b_c01106{bottom:691.200000pt;}
.y2c_c01106{bottom:691.840000pt;}
.y24_c01106{bottom:723.840000pt;}
.y23_c01106{bottom:725.120000pt;}
.y26_c01106{bottom:727.040000pt;}
.y25_c01106{bottom:728.960000pt;}
.y27_c01106{bottom:729.600000pt;}
.y1e_c01106{bottom:760.960000pt;}
.y1f_c01106{bottom:761.600000pt;}
.y1d_c01106{bottom:762.880000pt;}
.y21_c01106{bottom:765.440000pt;}
.y20_c01106{bottom:766.720000pt;}
.y22_c01106{bottom:768.000000pt;}
.y16_c01106{bottom:799.360000pt;}
.y15_c01106{bottom:800.640000pt;}
.y18_c01106{bottom:801.920000pt;}
.y17_c01106{bottom:803.200000pt;}
.y19_c01106{bottom:803.840000pt;}
.y1a_c01106{bottom:804.480000pt;}
.y1c_c01106{bottom:805.760000pt;}
.y1b_c01106{bottom:807.040000pt;}
.y13_c01106{bottom:832.640000pt;}
.y10_c01106{bottom:837.120000pt;}
.yf_c01106{bottom:838.400000pt;}
.y12_c01106{bottom:839.680000pt;}
.y11_c01106{bottom:840.320000pt;}
.yd_c01106{bottom:840.960000pt;}
.y14_c01106{bottom:841.600000pt;}
.ye_c01106{bottom:842.240000pt;}
.y5_c01106{bottom:874.880000pt;}
.y4_c01106{bottom:875.520000pt;}
.yc_c01106{bottom:879.360000pt;}
.ya_c01106{bottom:880.000000pt;}
.yb_c01106{bottom:881.280000pt;}
.y3_c01106{bottom:912.640000pt;}
.y2_c01106{bottom:913.920000pt;}
.y8_c01106{bottom:917.120000pt;}
.y7_c01106{bottom:917.760000pt;}
.y6_c01106{bottom:919.040000pt;}
.y9_c01106{bottom:920.320000pt;}
.y1_c01106{bottom:974.080000pt;}
.hf_c01106{height:27.645000pt;}
.hd_c01106{height:29.948750pt;}
.h14_c01106{height:34.556250pt;}
.he_c01106{height:36.860000pt;}
.h6_c01106{height:39.163750pt;}
.h7_c01106{height:41.467500pt;}
.h9_c01106{height:43.771250pt;}
.h3_c01106{height:46.075000pt;}
.ha_c01106{height:48.378750pt;}
.h16_c01106{height:48.635000pt;}
.h15_c01106{height:48.891250pt;}
.hb_c01106{height:52.986250pt;}
.h8_c01106{height:55.290000pt;}
.h12_c01106{height:57.081250pt;}
.h2_c01106{height:57.593750pt;}
.h5_c01106{height:59.897500pt;}
.h4_c01106{height:62.201250pt;}
.h11_c01106{height:64.505000pt;}
.h10_c01106{height:66.808750pt;}
.hc_c01106{height:82.935000pt;}
.h13_c01106{height:87.542500pt;}
.h0_c01106{height:1015.040000pt;}
.h1_c01106{height:1015.333333pt;}
.w0_c01106{width:707.840000pt;}
.w1_c01106{width:708.000000pt;}
.x0_c01106{left:0.000000pt;}
.x2_c01106{left:72.320000pt;}
.x1b_c01106{left:73.600000pt;}
.x30_c01106{left:74.880000pt;}
.x3_c01106{left:137.600000pt;}
.x1c_c01106{left:138.880000pt;}
.x2c_c01106{left:140.160000pt;}
.x31_c01106{left:216.320000pt;}
.xe_c01106{left:222.720000pt;}
.x5_c01106{left:224.640000pt;}
.x4_c01106{left:252.800000pt;}
.x27_c01106{left:254.080000pt;}
.xf_c01106{left:262.400000pt;}
.x22_c01106{left:263.680000pt;}
.x19_c01106{left:272.640000pt;}
.x23_c01106{left:293.120000pt;}
.x28_c01106{left:302.720000pt;}
.x10_c01106{left:309.760000pt;}
.x18_c01106{left:311.040000pt;}
.x1f_c01106{left:312.320000pt;}
.x2d_c01106{left:350.080000pt;}
.x14_c01106{left:386.560000pt;}
.x1a_c01106{left:396.800000pt;}
.x2e_c01106{left:398.080000pt;}
.x16_c01106{left:405.760000pt;}
.x29_c01106{left:416.640000pt;}
.x11_c01106{left:424.960000pt;}
.x20_c01106{left:426.240000pt;}
.x24_c01106{left:455.040000pt;}
.x34_c01106{left:464.640000pt;}
.x12_c01106{left:466.560000pt;}
.x32_c01106{left:470.400000pt;}
.x6_c01106{left:493.440000pt;}
.x2f_c01106{left:495.360000pt;}
.x1e_c01106{left:503.040000pt;}
.x2a_c01106{left:504.320000pt;}
.x7_c01106{left:520.960000pt;}
.x13_c01106{left:522.240000pt;}
.x33_c01106{left:523.520000pt;}
.x15_c01106{left:539.520000pt;}
.x8_c01106{left:550.400000pt;}
.x1d_c01106{left:562.560000pt;}
.x9_c01106{left:570.240000pt;}
.x25_c01106{left:571.520000pt;}
.xb_c01106{left:579.840000pt;}
.x21_c01106{left:597.760000pt;}
.xc_c01106{left:599.040000pt;}
.x26_c01106{left:600.320000pt;}
.x1_c01106{left:604.800000pt;}
.xd_c01106{left:627.840000pt;}
.xa_c01106{left:637.440000pt;}
.x2b_c01106{left:639.360000pt;}
.x17_c01106{left:656.000000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5df1ad5997caefac995349ad.woff2')format("woff");}.ff1_c01107{font-family:ff1_c01107;line-height:1.109863;font-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_c01107{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m32_c01107{transform:matrix(0.194050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194050,0.000000,0.000000,0.250000,0,0);}
.m42_c01107{transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);}
.m12_c01107{transform:matrix(0.221925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221925,0.000000,0.000000,0.250000,0,0);}
.m55_c01107{transform:matrix(0.232825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232825,0.000000,0.000000,0.250000,0,0);}
.mf_c01107{transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);}
.m56_c01107{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m22_c01107{transform:matrix(0.244025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244025,0.000000,0.000000,0.250000,0,0);}
.m50_c01107{transform:matrix(0.244350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244350,0.000000,0.000000,0.250000,0,0);}
.m21_c01107{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);}
.m4e_c01107{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);}
.m2d_c01107{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);}
.m3b_c01107{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);}
.m4a_c01107{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);}
.m27_c01107{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01107{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m5_c01107{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);}
.m51_c01107{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01107{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m23_c01107{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m49_c01107{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m15_c01107{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);}
.m45_c01107{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m0_c01107{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m13_c01107{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.ma_c01107{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m9_c01107{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m29_c01107{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m11_c01107{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.md_c01107{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01107{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m2_c01107{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01107{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01107{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m7_c01107{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01107{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01107{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01107{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.me_c01107{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m44_c01107{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m17_c01107{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);}
.m52_c01107{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);}
.m38_c01107{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m24_c01107{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);}
.m37_c01107{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);}
.m31_c01107{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m16_c01107{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1_c01107{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);}
.m20_c01107{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m30_c01107{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m14_c01107{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01107{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);}
.m33_c01107{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01107{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);}
.m3d_c01107{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);}
.m40_c01107{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m18_c01107{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m8_c01107{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);}
.m2b_c01107{transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);}
.m19_c01107{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01107{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);}
.m34_c01107{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m53_c01107{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m4_c01107{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m48_c01107{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);}
.m3c_c01107{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01107{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m25_c01107{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);}
.m4c_c01107{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01107{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m47_c01107{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);}
.m39_c01107{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);}
.m46_c01107{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01107{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m36_c01107{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m6_c01107{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m3_c01107{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);}
.m28_c01107{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01107{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);}
.m26_c01107{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);}
.m2f_c01107{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m35_c01107{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m43_c01107{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m10_c01107{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m41_c01107{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);}
.m4d_c01107{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m54_c01107{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.v0_c01107{vertical-align:0.000000px;}
.v1_c01107{vertical-align:2.880000px;}
.ls0_c01107{letter-spacing:0.000000px;}
.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;}
}
.ws2_c01107{word-spacing:0.000000px;}
.ws0_c01107{word-spacing:18.608400px;}
.ws1_c01107{word-spacing:190.367885px;}
.fc0_c01107{color:transparent;}
.fse_c01107{font-size:5.760000px;}
.fs8_c01107{font-size:34.560000px;}
.fsc_c01107{font-size:37.440000px;}
.fsf_c01107{font-size:40.320000px;}
.fs10_c01107{font-size:46.080000px;}
.fs3_c01107{font-size:48.960000px;}
.fs5_c01107{font-size:51.840000px;}
.fs6_c01107{font-size:54.720000px;}
.fsa_c01107{font-size:57.600000px;}
.fs1_c01107{font-size:60.480000px;}
.fs2_c01107{font-size:63.360000px;}
.fsd_c01107{font-size:66.240000px;}
.fs7_c01107{font-size:69.120000px;}
.fs0_c01107{font-size:72.000000px;}
.fs4_c01107{font-size:74.880000px;}
.fsb_c01107{font-size:77.760000px;}
.fs9_c01107{font-size:95.040000px;}
.y0_c01107{bottom:0.000000px;}
.y88_c01107{bottom:44.640000px;}
.y8a_c01107{bottom:45.360000px;}
.y89_c01107{bottom:46.080000px;}
.y85_c01107{bottom:46.800000px;}
.y87_c01107{bottom:48.960000px;}
.y84_c01107{bottom:49.680000px;}
.y86_c01107{bottom:50.400000px;}
.y83_c01107{bottom:86.400000px;}
.y80_c01107{bottom:87.120000px;}
.y81_c01107{bottom:88.560000px;}
.y7e_c01107{bottom:89.280000px;}
.y82_c01107{bottom:90.000000px;}
.y7f_c01107{bottom:91.440000px;}
.y7c_c01107{bottom:92.160000px;}
.y7d_c01107{bottom:92.880000px;}
.y7b_c01107{bottom:129.600000px;}
.y79_c01107{bottom:130.320000px;}
.y78_c01107{bottom:131.040000px;}
.y77_c01107{bottom:131.760000px;}
.y7a_c01107{bottom:132.480000px;}
.y76_c01107{bottom:133.920000px;}
.y73_c01107{bottom:174.240000px;}
.y75_c01107{bottom:176.400000px;}
.y74_c01107{bottom:177.120000px;}
.y72_c01107{bottom:177.840000px;}
.y70_c01107{bottom:205.200000px;}
.y6f_c01107{bottom:205.920000px;}
.y71_c01107{bottom:206.640000px;}
.y6e_c01107{bottom:207.360000px;}
.y6d_c01107{bottom:208.800000px;}
.y6c_c01107{bottom:240.480000px;}
.y6a_c01107{bottom:247.680000px;}
.y6b_c01107{bottom:248.400000px;}
.y67_c01107{bottom:249.840000px;}
.y66_c01107{bottom:250.560000px;}
.y68_c01107{bottom:251.280000px;}
.y69_c01107{bottom:252.000000px;}
.y63_c01107{bottom:282.960000px;}
.y62_c01107{bottom:290.880000px;}
.y64_c01107{bottom:291.600000px;}
.y60_c01107{bottom:292.320000px;}
.y65_c01107{bottom:293.040000px;}
.y5f_c01107{bottom:293.760000px;}
.y61_c01107{bottom:294.480000px;}
.y5b_c01107{bottom:326.160000px;}
.y5e_c01107{bottom:326.880000px;}
.y5c_c01107{bottom:334.080000px;}
.y5a_c01107{bottom:334.800000px;}
.y58_c01107{bottom:335.520000px;}
.y5d_c01107{bottom:336.240000px;}
.y57_c01107{bottom:336.960000px;}
.y59_c01107{bottom:337.680000px;}
.y55_c01107{bottom:377.280000px;}
.y56_c01107{bottom:378.000000px;}
.y54_c01107{bottom:379.440000px;}
.y53_c01107{bottom:411.840000px;}
.y51_c01107{bottom:419.760000px;}
.y52_c01107{bottom:420.480000px;}
.y50_c01107{bottom:421.200000px;}
.y4f_c01107{bottom:454.320000px;}
.y4c_c01107{bottom:455.040000px;}
.y4d_c01107{bottom:462.960000px;}
.y4b_c01107{bottom:463.680000px;}
.y4a_c01107{bottom:464.400000px;}
.y4e_c01107{bottom:465.840000px;}
.y48_c01107{bottom:497.520000px;}
.y49_c01107{bottom:498.240000px;}
.y46_c01107{bottom:506.160000px;}
.y45_c01107{bottom:506.880000px;}
.y47_c01107{bottom:508.320000px;}
.y43_c01107{bottom:548.640000px;}
.y42_c01107{bottom:549.360000px;}
.y41_c01107{bottom:550.080000px;}
.y44_c01107{bottom:550.800000px;}
.y3c_c01107{bottom:590.400000px;}
.y3d_c01107{bottom:591.120000px;}
.y3b_c01107{bottom:591.840000px;}
.y3f_c01107{bottom:592.560000px;}
.y3e_c01107{bottom:593.280000px;}
.y40_c01107{bottom:594.000000px;}
.y38_c01107{bottom:634.320000px;}
.y3a_c01107{bottom:635.040000px;}
.y39_c01107{bottom:636.480000px;}
.y35_c01107{bottom:668.160000px;}
.y33_c01107{bottom:676.080000px;}
.y32_c01107{bottom:676.800000px;}
.y37_c01107{bottom:677.520000px;}
.y34_c01107{bottom:678.240000px;}
.y36_c01107{bottom:678.960000px;}
.y31_c01107{bottom:710.640000px;}
.y2d_c01107{bottom:712.080000px;}
.y30_c01107{bottom:714.240000px;}
.y2c_c01107{bottom:718.560000px;}
.y2a_c01107{bottom:719.280000px;}
.y2e_c01107{bottom:720.000000px;}
.y2b_c01107{bottom:720.720000px;}
.y2f_c01107{bottom:722.160000px;}
.y26_c01107{bottom:761.040000px;}
.y25_c01107{bottom:761.760000px;}
.y28_c01107{bottom:762.480000px;}
.y29_c01107{bottom:763.200000px;}
.y27_c01107{bottom:763.920000px;}
.y21_c01107{bottom:803.520000px;}
.y20_c01107{bottom:804.960000px;}
.y22_c01107{bottom:805.680000px;}
.y23_c01107{bottom:806.400000px;}
.y24_c01107{bottom:807.120000px;}
.y1b_c01107{bottom:844.560000px;}
.y1c_c01107{bottom:846.000000px;}
.y1a_c01107{bottom:846.720000px;}
.y1e_c01107{bottom:848.880000px;}
.y1d_c01107{bottom:850.320000px;}
.y1f_c01107{bottom:851.040000px;}
.y18_c01107{bottom:891.360000px;}
.y19_c01107{bottom:892.080000px;}
.y14_c01107{bottom:920.880000px;}
.y12_c01107{bottom:921.600000px;}
.y13_c01107{bottom:923.760000px;}
.y16_c01107{bottom:924.480000px;}
.y15_c01107{bottom:926.640000px;}
.y17_c01107{bottom:927.360000px;}
.yf_c01107{bottom:958.320000px;}
.yc_c01107{bottom:962.640000px;}
.yb_c01107{bottom:964.080000px;}
.ye_c01107{bottom:964.800000px;}
.y10_c01107{bottom:966.960000px;}
.yd_c01107{bottom:967.680000px;}
.y11_c01107{bottom:969.120000px;}
.y7_c01107{bottom:1007.280000px;}
.y5_c01107{bottom:1009.440000px;}
.y6_c01107{bottom:1010.160000px;}
.y2_c01107{bottom:1038.960000px;}
.y4_c01107{bottom:1039.680000px;}
.y3_c01107{bottom:1041.840000px;}
.y8_c01107{bottom:1042.560000px;}
.ya_c01107{bottom:1043.280000px;}
.y9_c01107{bottom:1045.440000px;}
.y1_c01107{bottom:1083.600000px;}
.h11_c01107{height:5.183438px;}
.ha_c01107{height:31.100625px;}
.he_c01107{height:33.692344px;}
.h12_c01107{height:36.284062px;}
.h13_c01107{height:41.467500px;}
.h5_c01107{height:44.059219px;}
.h7_c01107{height:46.650937px;}
.h8_c01107{height:49.242656px;}
.hc_c01107{height:51.834375px;}
.h3_c01107{height:54.426094px;}
.h4_c01107{height:57.017812px;}
.hf_c01107{height:57.306094px;}
.h10_c01107{height:59.609531px;}
.h9_c01107{height:62.201250px;}
.h2_c01107{height:64.792969px;}
.h6_c01107{height:67.384687px;}
.hd_c01107{height:69.976406px;}
.hb_c01107{height:85.526719px;}
.h0_c01107{height:1136.160000px;}
.h1_c01107{height:1136.250000px;}
.w1_c01107{width:787.500000px;}
.w0_c01107{width:787.680000px;}
.x0_c01107{left:0.000000px;}
.x2_c01107{left:83.520000px;}
.x2f_c01107{left:127.440000px;}
.xd_c01107{left:156.960000px;}
.x3_c01107{left:158.400000px;}
.x17_c01107{left:200.880000px;}
.x7_c01107{left:209.520000px;}
.x2c_c01107{left:211.680000px;}
.x4_c01107{left:243.360000px;}
.x8_c01107{left:253.440000px;}
.xe_c01107{left:285.840000px;}
.x5_c01107{left:296.640000px;}
.x13_c01107{left:306.720000px;}
.x18_c01107{left:318.960000px;}
.x2b_c01107{left:349.920000px;}
.x6_c01107{left:351.360000px;}
.x24_c01107{left:360.720000px;}
.x14_c01107{left:362.160000px;}
.x30_c01107{left:371.520000px;}
.x31_c01107{left:393.840000px;}
.x1c_c01107{left:436.320000px;}
.x25_c01107{left:447.120000px;}
.x19_c01107{left:457.920000px;}
.xf_c01107{left:468.720000px;}
.x21_c01107{left:479.520000px;}
.x29_c01107{left:490.320000px;}
.x1d_c01107{left:500.400000px;}
.x26_c01107{left:505.440000px;}
.x27_c01107{left:511.200000px;}
.x1f_c01107{left:514.080000px;}
.x20_c01107{left:522.720000px;}
.x2a_c01107{left:532.800000px;}
.x22_c01107{left:554.400000px;}
.x1b_c01107{left:555.840000px;}
.x9_c01107{left:557.280000px;}
.x10_c01107{left:587.520000px;}
.xa_c01107{left:589.680000px;}
.xb_c01107{left:609.120000px;}
.x11_c01107{left:620.640000px;}
.x1e_c01107{left:642.240000px;}
.x12_c01107{left:643.680000px;}
.x23_c01107{left:674.640000px;}
.x15_c01107{left:676.080000px;}
.x2d_c01107{left:685.440000px;}
.x1_c01107{left:692.640000px;}
.x28_c01107{left:707.040000px;}
.x1a_c01107{left:708.480000px;}
.xc_c01107{left:717.840000px;}
.x16_c01107{left:719.280000px;}
.x2e_c01107{left:738.720000px;}
@media print{
.v0_c01107{vertical-align:0.000000pt;}
.v1_c01107{vertical-align:2.560000pt;}
.ls0_c01107{letter-spacing:0.000000pt;}
.ws2_c01107{word-spacing:0.000000pt;}
.ws0_c01107{word-spacing:16.540800pt;}
.ws1_c01107{word-spacing:169.215898pt;}
.fse_c01107{font-size:5.120000pt;}
.fs8_c01107{font-size:30.720000pt;}
.fsc_c01107{font-size:33.280000pt;}
.fsf_c01107{font-size:35.840000pt;}
.fs10_c01107{font-size:40.960000pt;}
.fs3_c01107{font-size:43.520000pt;}
.fs5_c01107{font-size:46.080000pt;}
.fs6_c01107{font-size:48.640000pt;}
.fsa_c01107{font-size:51.200000pt;}
.fs1_c01107{font-size:53.760000pt;}
.fs2_c01107{font-size:56.320000pt;}
.fsd_c01107{font-size:58.880000pt;}
.fs7_c01107{font-size:61.440000pt;}
.fs0_c01107{font-size:64.000000pt;}
.fs4_c01107{font-size:66.560000pt;}
.fsb_c01107{font-size:69.120000pt;}
.fs9_c01107{font-size:84.480000pt;}
.y0_c01107{bottom:0.000000pt;}
.y88_c01107{bottom:39.680000pt;}
.y8a_c01107{bottom:40.320000pt;}
.y89_c01107{bottom:40.960000pt;}
.y85_c01107{bottom:41.600000pt;}
.y87_c01107{bottom:43.520000pt;}
.y84_c01107{bottom:44.160000pt;}
.y86_c01107{bottom:44.800000pt;}
.y83_c01107{bottom:76.800000pt;}
.y80_c01107{bottom:77.440000pt;}
.y81_c01107{bottom:78.720000pt;}
.y7e_c01107{bottom:79.360000pt;}
.y82_c01107{bottom:80.000000pt;}
.y7f_c01107{bottom:81.280000pt;}
.y7c_c01107{bottom:81.920000pt;}
.y7d_c01107{bottom:82.560000pt;}
.y7b_c01107{bottom:115.200000pt;}
.y79_c01107{bottom:115.840000pt;}
.y78_c01107{bottom:116.480000pt;}
.y77_c01107{bottom:117.120000pt;}
.y7a_c01107{bottom:117.760000pt;}
.y76_c01107{bottom:119.040000pt;}
.y73_c01107{bottom:154.880000pt;}
.y75_c01107{bottom:156.800000pt;}
.y74_c01107{bottom:157.440000pt;}
.y72_c01107{bottom:158.080000pt;}
.y70_c01107{bottom:182.400000pt;}
.y6f_c01107{bottom:183.040000pt;}
.y71_c01107{bottom:183.680000pt;}
.y6e_c01107{bottom:184.320000pt;}
.y6d_c01107{bottom:185.600000pt;}
.y6c_c01107{bottom:213.760000pt;}
.y6a_c01107{bottom:220.160000pt;}
.y6b_c01107{bottom:220.800000pt;}
.y67_c01107{bottom:222.080000pt;}
.y66_c01107{bottom:222.720000pt;}
.y68_c01107{bottom:223.360000pt;}
.y69_c01107{bottom:224.000000pt;}
.y63_c01107{bottom:251.520000pt;}
.y62_c01107{bottom:258.560000pt;}
.y64_c01107{bottom:259.200000pt;}
.y60_c01107{bottom:259.840000pt;}
.y65_c01107{bottom:260.480000pt;}
.y5f_c01107{bottom:261.120000pt;}
.y61_c01107{bottom:261.760000pt;}
.y5b_c01107{bottom:289.920000pt;}
.y5e_c01107{bottom:290.560000pt;}
.y5c_c01107{bottom:296.960000pt;}
.y5a_c01107{bottom:297.600000pt;}
.y58_c01107{bottom:298.240000pt;}
.y5d_c01107{bottom:298.880000pt;}
.y57_c01107{bottom:299.520000pt;}
.y59_c01107{bottom:300.160000pt;}
.y55_c01107{bottom:335.360000pt;}
.y56_c01107{bottom:336.000000pt;}
.y54_c01107{bottom:337.280000pt;}
.y53_c01107{bottom:366.080000pt;}
.y51_c01107{bottom:373.120000pt;}
.y52_c01107{bottom:373.760000pt;}
.y50_c01107{bottom:374.400000pt;}
.y4f_c01107{bottom:403.840000pt;}
.y4c_c01107{bottom:404.480000pt;}
.y4d_c01107{bottom:411.520000pt;}
.y4b_c01107{bottom:412.160000pt;}
.y4a_c01107{bottom:412.800000pt;}
.y4e_c01107{bottom:414.080000pt;}
.y48_c01107{bottom:442.240000pt;}
.y49_c01107{bottom:442.880000pt;}
.y46_c01107{bottom:449.920000pt;}
.y45_c01107{bottom:450.560000pt;}
.y47_c01107{bottom:451.840000pt;}
.y43_c01107{bottom:487.680000pt;}
.y42_c01107{bottom:488.320000pt;}
.y41_c01107{bottom:488.960000pt;}
.y44_c01107{bottom:489.600000pt;}
.y3c_c01107{bottom:524.800000pt;}
.y3d_c01107{bottom:525.440000pt;}
.y3b_c01107{bottom:526.080000pt;}
.y3f_c01107{bottom:526.720000pt;}
.y3e_c01107{bottom:527.360000pt;}
.y40_c01107{bottom:528.000000pt;}
.y38_c01107{bottom:563.840000pt;}
.y3a_c01107{bottom:564.480000pt;}
.y39_c01107{bottom:565.760000pt;}
.y35_c01107{bottom:593.920000pt;}
.y33_c01107{bottom:600.960000pt;}
.y32_c01107{bottom:601.600000pt;}
.y37_c01107{bottom:602.240000pt;}
.y34_c01107{bottom:602.880000pt;}
.y36_c01107{bottom:603.520000pt;}
.y31_c01107{bottom:631.680000pt;}
.y2d_c01107{bottom:632.960000pt;}
.y30_c01107{bottom:634.880000pt;}
.y2c_c01107{bottom:638.720000pt;}
.y2a_c01107{bottom:639.360000pt;}
.y2e_c01107{bottom:640.000000pt;}
.y2b_c01107{bottom:640.640000pt;}
.y2f_c01107{bottom:641.920000pt;}
.y26_c01107{bottom:676.480000pt;}
.y25_c01107{bottom:677.120000pt;}
.y28_c01107{bottom:677.760000pt;}
.y29_c01107{bottom:678.400000pt;}
.y27_c01107{bottom:679.040000pt;}
.y21_c01107{bottom:714.240000pt;}
.y20_c01107{bottom:715.520000pt;}
.y22_c01107{bottom:716.160000pt;}
.y23_c01107{bottom:716.800000pt;}
.y24_c01107{bottom:717.440000pt;}
.y1b_c01107{bottom:750.720000pt;}
.y1c_c01107{bottom:752.000000pt;}
.y1a_c01107{bottom:752.640000pt;}
.y1e_c01107{bottom:754.560000pt;}
.y1d_c01107{bottom:755.840000pt;}
.y1f_c01107{bottom:756.480000pt;}
.y18_c01107{bottom:792.320000pt;}
.y19_c01107{bottom:792.960000pt;}
.y14_c01107{bottom:818.560000pt;}
.y12_c01107{bottom:819.200000pt;}
.y13_c01107{bottom:821.120000pt;}
.y16_c01107{bottom:821.760000pt;}
.y15_c01107{bottom:823.680000pt;}
.y17_c01107{bottom:824.320000pt;}
.yf_c01107{bottom:851.840000pt;}
.yc_c01107{bottom:855.680000pt;}
.yb_c01107{bottom:856.960000pt;}
.ye_c01107{bottom:857.600000pt;}
.y10_c01107{bottom:859.520000pt;}
.yd_c01107{bottom:860.160000pt;}
.y11_c01107{bottom:861.440000pt;}
.y7_c01107{bottom:895.360000pt;}
.y5_c01107{bottom:897.280000pt;}
.y6_c01107{bottom:897.920000pt;}
.y2_c01107{bottom:923.520000pt;}
.y4_c01107{bottom:924.160000pt;}
.y3_c01107{bottom:926.080000pt;}
.y8_c01107{bottom:926.720000pt;}
.ya_c01107{bottom:927.360000pt;}
.y9_c01107{bottom:929.280000pt;}
.y1_c01107{bottom:963.200000pt;}
.h11_c01107{height:4.607500pt;}
.ha_c01107{height:27.645000pt;}
.he_c01107{height:29.948750pt;}
.h12_c01107{height:32.252500pt;}
.h13_c01107{height:36.860000pt;}
.h5_c01107{height:39.163750pt;}
.h7_c01107{height:41.467500pt;}
.h8_c01107{height:43.771250pt;}
.hc_c01107{height:46.075000pt;}
.h3_c01107{height:48.378750pt;}
.h4_c01107{height:50.682500pt;}
.hf_c01107{height:50.938750pt;}
.h10_c01107{height:52.986250pt;}
.h9_c01107{height:55.290000pt;}
.h2_c01107{height:57.593750pt;}
.h6_c01107{height:59.897500pt;}
.hd_c01107{height:62.201250pt;}
.hb_c01107{height:76.023750pt;}
.h0_c01107{height:1009.920000pt;}
.h1_c01107{height:1010.000000pt;}
.w1_c01107{width:700.000000pt;}
.w0_c01107{width:700.160000pt;}
.x0_c01107{left:0.000000pt;}
.x2_c01107{left:74.240000pt;}
.x2f_c01107{left:113.280000pt;}
.xd_c01107{left:139.520000pt;}
.x3_c01107{left:140.800000pt;}
.x17_c01107{left:178.560000pt;}
.x7_c01107{left:186.240000pt;}
.x2c_c01107{left:188.160000pt;}
.x4_c01107{left:216.320000pt;}
.x8_c01107{left:225.280000pt;}
.xe_c01107{left:254.080000pt;}
.x5_c01107{left:263.680000pt;}
.x13_c01107{left:272.640000pt;}
.x18_c01107{left:283.520000pt;}
.x2b_c01107{left:311.040000pt;}
.x6_c01107{left:312.320000pt;}
.x24_c01107{left:320.640000pt;}
.x14_c01107{left:321.920000pt;}
.x30_c01107{left:330.240000pt;}
.x31_c01107{left:350.080000pt;}
.x1c_c01107{left:387.840000pt;}
.x25_c01107{left:397.440000pt;}
.x19_c01107{left:407.040000pt;}
.xf_c01107{left:416.640000pt;}
.x21_c01107{left:426.240000pt;}
.x29_c01107{left:435.840000pt;}
.x1d_c01107{left:444.800000pt;}
.x26_c01107{left:449.280000pt;}
.x27_c01107{left:454.400000pt;}
.x1f_c01107{left:456.960000pt;}
.x20_c01107{left:464.640000pt;}
.x2a_c01107{left:473.600000pt;}
.x22_c01107{left:492.800000pt;}
.x1b_c01107{left:494.080000pt;}
.x9_c01107{left:495.360000pt;}
.x10_c01107{left:522.240000pt;}
.xa_c01107{left:524.160000pt;}
.xb_c01107{left:541.440000pt;}
.x11_c01107{left:551.680000pt;}
.x1e_c01107{left:570.880000pt;}
.x12_c01107{left:572.160000pt;}
.x23_c01107{left:599.680000pt;}
.x15_c01107{left:600.960000pt;}
.x2d_c01107{left:609.280000pt;}
.x1_c01107{left:615.680000pt;}
.x28_c01107{left:628.480000pt;}
.x1a_c01107{left:629.760000pt;}
.xc_c01107{left:638.080000pt;}
.x16_c01107{left:639.360000pt;}
.x2e_c01107{left:656.640000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2fe962abbdbed901ae4bf332.woff2')format("woff");}.ff1_c01108{font-family:ff1_c01108;line-height:1.109863;font-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_c01108{transform:matrix(0.138900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138900,0.000000,0.000000,0.250000,0,0);}
.m15_c01108{transform:matrix(0.195925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195925,0.000000,0.000000,0.250000,0,0);}
.m63_c01108{transform:matrix(0.205350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205350,0.000000,0.000000,0.250000,0,0);}
.m2b_c01108{transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);}
.m39_c01108{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01108{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m1d_c01108{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m50_c01108{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m5c_c01108{transform:matrix(0.239125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239125,0.000000,0.000000,0.250000,0,0);}
.m14_c01108{transform:matrix(0.241375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241375,0.000000,0.000000,0.250000,0,0);}
.m62_c01108{transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);}
.m32_c01108{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.mb_c01108{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);}
.m37_c01108{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);}
.m40_c01108{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_c01108{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_c01108{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01108{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_c01108{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);}
.m3e_c01108{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);}
.m5e_c01108{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m9_c01108{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.md_c01108{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m6_c01108{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m35_c01108{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_c01108{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);}
.m4c_c01108{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m10_c01108{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);}
.m44_c01108{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m13_c01108{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m4_c01108{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m0_c01108{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01108{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m21_c01108{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m16_c01108{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01108{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m5_c01108{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01108{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m12_c01108{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01108{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01108{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.ma_c01108{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3_c01108{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m2_c01108{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);}
.m47_c01108{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m5a_c01108{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mc_c01108{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);}
.m51_c01108{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);}
.m28_c01108{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m22_c01108{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);}
.m29_c01108{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m36_c01108{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);}
.m3f_c01108{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m20_c01108{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);}
.m46_c01108{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m25_c01108{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m5d_c01108{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);}
.m11_c01108{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m34_c01108{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m57_c01108{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);}
.m33_c01108{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);}
.m41_c01108{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_c01108{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m1_c01108{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01108{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m48_c01108{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m54_c01108{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01108{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);}
.m23_c01108{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m31_c01108{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m60_c01108{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);}
.m49_c01108{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);}
.m3d_c01108{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01108{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m59_c01108{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m8_c01108{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_c01108{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01108{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01108{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m17_c01108{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m56_c01108{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01108{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m30_c01108{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);}
.m4b_c01108{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m58_c01108{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);}
.m5f_c01108{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);}
.m4f_c01108{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m53_c01108{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);}
.m42_c01108{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m55_c01108{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01108{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m4d_c01108{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);}
.m67_c01108{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m66_c01108{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m43_c01108{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);}
.m65_c01108{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m5b_c01108{transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);}
.m38_c01108{transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);}
.m61_c01108{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.me_c01108{transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);}
.m64_c01108{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m52_c01108{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.m18_c01108{transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01108{transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);}
.v2_c01108{vertical-align:-5.760000px;}
.v0_c01108{vertical-align:0.000000px;}
.v1_c01108{vertical-align:5.760000px;}
.ls0_c01108{letter-spacing:0.000000px;}
.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;}
}
.ws2_c01108{word-spacing:0.000000px;}
.ws1_c01108{word-spacing:6.348720px;}
.ws0_c01108{word-spacing:59.494320px;}
.fc0_c01108{color:transparent;}
.fs12_c01108{font-size:14.400000px;}
.fsb_c01108{font-size:17.280000px;}
.fs6_c01108{font-size:25.920000px;}
.fs14_c01108{font-size:31.680000px;}
.fse_c01108{font-size:37.440000px;}
.fs10_c01108{font-size:40.320000px;}
.fs13_c01108{font-size:43.200000px;}
.fs2_c01108{font-size:46.080000px;}
.fs1_c01108{font-size:48.960000px;}
.fs3_c01108{font-size:51.840000px;}
.fsa_c01108{font-size:54.720000px;}
.fs9_c01108{font-size:57.600000px;}
.fs5_c01108{font-size:60.480000px;}
.fs4_c01108{font-size:63.360000px;}
.fsd_c01108{font-size:66.240000px;}
.fs0_c01108{font-size:69.120000px;}
.fs11_c01108{font-size:72.000000px;}
.fsf_c01108{font-size:74.880000px;}
.fsc_c01108{font-size:77.760000px;}
.fs8_c01108{font-size:80.640000px;}
.fs7_c01108{font-size:83.520000px;}
.y0_c01108{bottom:0.000000px;}
.ya5_c01108{bottom:90.000000px;}
.yb4_c01108{bottom:90.720000px;}
.yb5_c01108{bottom:91.440000px;}
.ya4_c01108{bottom:92.880000px;}
.ya6_c01108{bottom:93.600000px;}
.ya2_c01108{bottom:132.480000px;}
.yb3_c01108{bottom:133.200000px;}
.yb2_c01108{bottom:133.920000px;}
.ya1_c01108{bottom:134.640000px;}
.ya3_c01108{bottom:136.080000px;}
.ya0_c01108{bottom:174.960000px;}
.y9d_c01108{bottom:175.680000px;}
.yb1_c01108{bottom:176.400000px;}
.y9b_c01108{bottom:177.120000px;}
.y9f_c01108{bottom:177.840000px;}
.y9c_c01108{bottom:178.560000px;}
.y9e_c01108{bottom:179.280000px;}
.y9a_c01108{bottom:217.440000px;}
.y97_c01108{bottom:218.160000px;}
.y98_c01108{bottom:218.880000px;}
.y99_c01108{bottom:220.320000px;}
.y96_c01108{bottom:221.040000px;}
.yb0_c01108{bottom:221.760000px;}
.y94_c01108{bottom:259.920000px;}
.yad_c01108{bottom:261.360000px;}
.yae_c01108{bottom:262.080000px;}
.y93_c01108{bottom:262.800000px;}
.yaf_c01108{bottom:263.520000px;}
.y95_c01108{bottom:264.240000px;}
.y92_c01108{bottom:303.120000px;}
.yac_c01108{bottom:304.560000px;}
.y90_c01108{bottom:305.280000px;}
.y91_c01108{bottom:307.440000px;}
.y8f_c01108{bottom:338.400000px;}
.y8a_c01108{bottom:345.600000px;}
.y8e_c01108{bottom:346.320000px;}
.y8b_c01108{bottom:347.040000px;}
.yab_c01108{bottom:347.760000px;}
.y89_c01108{bottom:348.480000px;}
.y8c_c01108{bottom:349.200000px;}
.y8d_c01108{bottom:349.920000px;}
.y88_c01108{bottom:388.080000px;}
.yaa_c01108{bottom:389.520000px;}
.y86_c01108{bottom:390.240000px;}
.y87_c01108{bottom:390.960000px;}
.y80_c01108{bottom:429.840000px;}
.y85_c01108{bottom:430.560000px;}
.y84_c01108{bottom:431.280000px;}
.y82_c01108{bottom:432.000000px;}
.y7d_c01108{bottom:432.720000px;}
.y81_c01108{bottom:433.440000px;}
.y83_c01108{bottom:434.160000px;}
.y7f_c01108{bottom:434.880000px;}
.y7e_c01108{bottom:437.040000px;}
.y7a_c01108{bottom:473.760000px;}
.y79_c01108{bottom:474.480000px;}
.ya9_c01108{bottom:475.200000px;}
.y7b_c01108{bottom:475.920000px;}
.y7c_c01108{bottom:477.360000px;}
.y75_c01108{bottom:515.520000px;}
.y76_c01108{bottom:516.240000px;}
.y73_c01108{bottom:516.960000px;}
.y77_c01108{bottom:517.680000px;}
.y74_c01108{bottom:519.120000px;}
.y78_c01108{bottom:519.840000px;}
.ya8_c01108{bottom:520.560000px;}
.y72_c01108{bottom:551.520000px;}
.y6e_c01108{bottom:558.000000px;}
.ya7_c01108{bottom:559.440000px;}
.y6c_c01108{bottom:560.160000px;}
.y6f_c01108{bottom:560.880000px;}
.y71_c01108{bottom:561.600000px;}
.y6d_c01108{bottom:562.320000px;}
.y70_c01108{bottom:563.040000px;}
.y6b_c01108{bottom:602.640000px;}
.y6a_c01108{bottom:604.800000px;}
.y66_c01108{bottom:668.160000px;}
.y68_c01108{bottom:668.880000px;}
.y69_c01108{bottom:670.320000px;}
.y67_c01108{bottom:671.040000px;}
.y63_c01108{bottom:689.760000px;}
.y65_c01108{bottom:691.920000px;}
.y64_c01108{bottom:692.640000px;}
.y60_c01108{bottom:699.840000px;}
.y62_c01108{bottom:701.280000px;}
.y61_c01108{bottom:702.000000px;}
.y5e_c01108{bottom:711.360000px;}
.y5f_c01108{bottom:712.080000px;}
.y5d_c01108{bottom:712.800000px;}
.y5c_c01108{bottom:720.720000px;}
.y5b_c01108{bottom:721.440000px;}
.y58_c01108{bottom:732.240000px;}
.y5a_c01108{bottom:732.960000px;}
.y59_c01108{bottom:735.120000px;}
.y56_c01108{bottom:740.880000px;}
.y57_c01108{bottom:742.320000px;}
.y55_c01108{bottom:743.040000px;}
.y54_c01108{bottom:744.480000px;}
.y50_c01108{bottom:753.840000px;}
.y53_c01108{bottom:754.560000px;}
.y51_c01108{bottom:756.720000px;}
.y52_c01108{bottom:757.440000px;}
.y4f_c01108{bottom:764.640000px;}
.y4d_c01108{bottom:765.360000px;}
.y4e_c01108{bottom:766.080000px;}
.y44_c01108{bottom:773.280000px;}
.y4a_c01108{bottom:774.720000px;}
.y4c_c01108{bottom:775.440000px;}
.y45_c01108{bottom:776.160000px;}
.y46_c01108{bottom:776.880000px;}
.y4b_c01108{bottom:778.320000px;}
.y47_c01108{bottom:784.800000px;}
.y49_c01108{bottom:785.520000px;}
.y48_c01108{bottom:787.680000px;}
.y42_c01108{bottom:796.320000px;}
.y43_c01108{bottom:797.040000px;}
.y3d_c01108{bottom:805.680000px;}
.y3c_c01108{bottom:807.120000px;}
.y3b_c01108{bottom:807.840000px;}
.y3e_c01108{bottom:808.560000px;}
.y40_c01108{bottom:809.280000px;}
.y41_c01108{bottom:810.000000px;}
.y3f_c01108{bottom:811.440000px;}
.y38_c01108{bottom:817.920000px;}
.y3a_c01108{bottom:819.360000px;}
.y39_c01108{bottom:820.800000px;}
.y36_c01108{bottom:828.720000px;}
.y37_c01108{bottom:830.160000px;}
.y30_c01108{bottom:838.080000px;}
.y2f_c01108{bottom:839.520000px;}
.y35_c01108{bottom:840.240000px;}
.y33_c01108{bottom:841.680000px;}
.y34_c01108{bottom:842.400000px;}
.y31_c01108{bottom:849.600000px;}
.y32_c01108{bottom:850.320000px;}
.y2e_c01108{bottom:860.400000px;}
.y2b_c01108{bottom:861.120000px;}
.y2d_c01108{bottom:861.840000px;}
.y2c_c01108{bottom:864.000000px;}
.y24_c01108{bottom:870.480000px;}
.y28_c01108{bottom:871.200000px;}
.y29_c01108{bottom:872.640000px;}
.y2a_c01108{bottom:873.360000px;}
.y25_c01108{bottom:882.000000px;}
.y27_c01108{bottom:882.720000px;}
.y26_c01108{bottom:885.600000px;}
.y22_c01108{bottom:900.000000px;}
.y20_c01108{bottom:902.160000px;}
.y1f_c01108{bottom:902.880000px;}
.y1e_c01108{bottom:903.600000px;}
.y21_c01108{bottom:904.320000px;}
.y23_c01108{bottom:906.480000px;}
.y1b_c01108{bottom:925.200000px;}
.y1d_c01108{bottom:926.640000px;}
.y1c_c01108{bottom:927.360000px;}
.y17_c01108{bottom:944.640000px;}
.y18_c01108{bottom:946.800000px;}
.y19_c01108{bottom:948.240000px;}
.y1a_c01108{bottom:948.960000px;}
.y13_c01108{bottom:954.000000px;}
.y16_c01108{bottom:954.720000px;}
.y14_c01108{bottom:956.160000px;}
.y15_c01108{bottom:959.040000px;}
.ye_c01108{bottom:966.960000px;}
.yf_c01108{bottom:967.680000px;}
.y12_c01108{bottom:974.160000px;}
.y11_c01108{bottom:974.880000px;}
.y10_c01108{bottom:979.920000px;}
.y8_c01108{bottom:1019.520000px;}
.y9_c01108{bottom:1020.240000px;}
.yd_c01108{bottom:1020.960000px;}
.yb_c01108{bottom:1021.680000px;}
.ya_c01108{bottom:1023.120000px;}
.yc_c01108{bottom:1026.000000px;}
.y6_c01108{bottom:1028.160000px;}
.y5_c01108{bottom:1029.600000px;}
.y7_c01108{bottom:1031.040000px;}
.y2_c01108{bottom:1042.560000px;}
.y3_c01108{bottom:1044.000000px;}
.y4_c01108{bottom:1044.720000px;}
.y1_c01108{bottom:1085.040000px;}
.h16_c01108{height:12.958594px;}
.hd_c01108{height:15.550313px;}
.h8_c01108{height:23.325469px;}
.h18_c01108{height:28.508906px;}
.h11_c01108{height:33.692344px;}
.h13_c01108{height:36.284062px;}
.h17_c01108{height:38.875781px;}
.h4_c01108{height:41.467500px;}
.h3_c01108{height:44.059219px;}
.h5_c01108{height:46.650937px;}
.hc_c01108{height:49.242656px;}
.hb_c01108{height:51.834375px;}
.h7_c01108{height:54.426094px;}
.h6_c01108{height:57.017812px;}
.hf_c01108{height:59.609531px;}
.h10_c01108{height:60.186094px;}
.h14_c01108{height:61.624687px;}
.h2_c01108{height:62.201250px;}
.h15_c01108{height:64.792969px;}
.h12_c01108{height:67.384687px;}
.he_c01108{height:69.976406px;}
.ha_c01108{height:72.568125px;}
.h9_c01108{height:75.159844px;}
.h0_c01108{height:1140.480000px;}
.h1_c01108{height:1140.750000px;}
.w0_c01108{width:794.880000px;}
.w1_c01108{width:795.000000px;}
.x0_c01108{left:0.000000px;}
.x7_c01108{left:82.080000px;}
.x32_c01108{left:83.520000px;}
.x19_c01108{left:102.960000px;}
.x8_c01108{left:114.480000px;}
.x12_c01108{left:124.560000px;}
.x41_c01108{left:128.160000px;}
.x21_c01108{left:136.800000px;}
.x28_c01108{left:146.880000px;}
.x33_c01108{left:156.960000px;}
.x13_c01108{left:167.040000px;}
.x30_c01108{left:168.480000px;}
.x14_c01108{left:190.080000px;}
.x2a_c01108{left:198.720000px;}
.x34_c01108{left:200.160000px;}
.x9_c01108{left:208.800000px;}
.x1a_c01108{left:220.320000px;}
.x15_c01108{left:231.120000px;}
.x3b_c01108{left:242.640000px;}
.x3f_c01108{left:244.080000px;}
.x1b_c01108{left:252.720000px;}
.x22_c01108{left:254.160000px;}
.x31_c01108{left:263.520000px;}
.x2_c01108{left:285.840000px;}
.x42_c01108{left:287.280000px;}
.x1c_c01108{left:295.920000px;}
.x2b_c01108{left:297.360000px;}
.x26_c01108{left:306.720000px;}
.x23_c01108{left:308.160000px;}
.xd_c01108{left:316.080000px;}
.x16_c01108{left:317.520000px;}
.x1d_c01108{left:328.320000px;}
.x3_c01108{left:339.120000px;}
.x3c_c01108{left:340.560000px;}
.x2c_c01108{left:349.200000px;}
.x24_c01108{left:350.640000px;}
.x39_c01108{left:352.080000px;}
.x37_c01108{left:360.720000px;}
.x29_c01108{left:372.240000px;}
.x20_c01108{left:382.320000px;}
.x27_c01108{left:383.760000px;}
.x4_c01108{left:393.120000px;}
.x1e_c01108{left:403.920000px;}
.x40_c01108{left:425.520000px;}
.x3a_c01108{left:436.320000px;}
.x1f_c01108{left:446.400000px;}
.x5_c01108{left:447.840000px;}
.x38_c01108{left:468.720000px;}
.x25_c01108{left:479.520000px;}
.x36_c01108{left:488.880000px;}
.x35_c01108{left:490.320000px;}
.x3e_c01108{left:500.400000px;}
.x6_c01108{left:511.920000px;}
.x3d_c01108{left:517.680000px;}
.xe_c01108{left:522.720000px;}
.xa_c01108{left:553.680000px;}
.xf_c01108{left:555.120000px;}
.x4a_c01108{left:556.560000px;}
.x2d_c01108{left:566.640000px;}
.x17_c01108{left:577.440000px;}
.xb_c01108{left:588.240000px;}
.x2e_c01108{left:598.320000px;}
.x18_c01108{left:609.120000px;}
.x4b_c01108{left:621.360000px;}
.xc_c01108{left:629.280000px;}
.x10_c01108{left:630.720000px;}
.x43_c01108{left:642.240000px;}
.x2f_c01108{left:663.840000px;}
.x48_c01108{left:666.000000px;}
.x1_c01108{left:672.480000px;}
.x11_c01108{left:673.920000px;}
.x47_c01108{left:675.360000px;}
.x46_c01108{left:707.040000px;}
.x49_c01108{left:708.480000px;}
.x44_c01108{left:717.840000px;}
.x4c_c01108{left:719.280000px;}
.x45_c01108{left:738.000000px;}
@media print{
.v2_c01108{vertical-align:-5.120000pt;}
.v0_c01108{vertical-align:0.000000pt;}
.v1_c01108{vertical-align:5.120000pt;}
.ls0_c01108{letter-spacing:0.000000pt;}
.ws2_c01108{word-spacing:0.000000pt;}
.ws1_c01108{word-spacing:5.643307pt;}
.ws0_c01108{word-spacing:52.883840pt;}
.fs12_c01108{font-size:12.800000pt;}
.fsb_c01108{font-size:15.360000pt;}
.fs6_c01108{font-size:23.040000pt;}
.fs14_c01108{font-size:28.160000pt;}
.fse_c01108{font-size:33.280000pt;}
.fs10_c01108{font-size:35.840000pt;}
.fs13_c01108{font-size:38.400000pt;}
.fs2_c01108{font-size:40.960000pt;}
.fs1_c01108{font-size:43.520000pt;}
.fs3_c01108{font-size:46.080000pt;}
.fsa_c01108{font-size:48.640000pt;}
.fs9_c01108{font-size:51.200000pt;}
.fs5_c01108{font-size:53.760000pt;}
.fs4_c01108{font-size:56.320000pt;}
.fsd_c01108{font-size:58.880000pt;}
.fs0_c01108{font-size:61.440000pt;}
.fs11_c01108{font-size:64.000000pt;}
.fsf_c01108{font-size:66.560000pt;}
.fsc_c01108{font-size:69.120000pt;}
.fs8_c01108{font-size:71.680000pt;}
.fs7_c01108{font-size:74.240000pt;}
.y0_c01108{bottom:0.000000pt;}
.ya5_c01108{bottom:80.000000pt;}
.yb4_c01108{bottom:80.640000pt;}
.yb5_c01108{bottom:81.280000pt;}
.ya4_c01108{bottom:82.560000pt;}
.ya6_c01108{bottom:83.200000pt;}
.ya2_c01108{bottom:117.760000pt;}
.yb3_c01108{bottom:118.400000pt;}
.yb2_c01108{bottom:119.040000pt;}
.ya1_c01108{bottom:119.680000pt;}
.ya3_c01108{bottom:120.960000pt;}
.ya0_c01108{bottom:155.520000pt;}
.y9d_c01108{bottom:156.160000pt;}
.yb1_c01108{bottom:156.800000pt;}
.y9b_c01108{bottom:157.440000pt;}
.y9f_c01108{bottom:158.080000pt;}
.y9c_c01108{bottom:158.720000pt;}
.y9e_c01108{bottom:159.360000pt;}
.y9a_c01108{bottom:193.280000pt;}
.y97_c01108{bottom:193.920000pt;}
.y98_c01108{bottom:194.560000pt;}
.y99_c01108{bottom:195.840000pt;}
.y96_c01108{bottom:196.480000pt;}
.yb0_c01108{bottom:197.120000pt;}
.y94_c01108{bottom:231.040000pt;}
.yad_c01108{bottom:232.320000pt;}
.yae_c01108{bottom:232.960000pt;}
.y93_c01108{bottom:233.600000pt;}
.yaf_c01108{bottom:234.240000pt;}
.y95_c01108{bottom:234.880000pt;}
.y92_c01108{bottom:269.440000pt;}
.yac_c01108{bottom:270.720000pt;}
.y90_c01108{bottom:271.360000pt;}
.y91_c01108{bottom:273.280000pt;}
.y8f_c01108{bottom:300.800000pt;}
.y8a_c01108{bottom:307.200000pt;}
.y8e_c01108{bottom:307.840000pt;}
.y8b_c01108{bottom:308.480000pt;}
.yab_c01108{bottom:309.120000pt;}
.y89_c01108{bottom:309.760000pt;}
.y8c_c01108{bottom:310.400000pt;}
.y8d_c01108{bottom:311.040000pt;}
.y88_c01108{bottom:344.960000pt;}
.yaa_c01108{bottom:346.240000pt;}
.y86_c01108{bottom:346.880000pt;}
.y87_c01108{bottom:347.520000pt;}
.y80_c01108{bottom:382.080000pt;}
.y85_c01108{bottom:382.720000pt;}
.y84_c01108{bottom:383.360000pt;}
.y82_c01108{bottom:384.000000pt;}
.y7d_c01108{bottom:384.640000pt;}
.y81_c01108{bottom:385.280000pt;}
.y83_c01108{bottom:385.920000pt;}
.y7f_c01108{bottom:386.560000pt;}
.y7e_c01108{bottom:388.480000pt;}
.y7a_c01108{bottom:421.120000pt;}
.y79_c01108{bottom:421.760000pt;}
.ya9_c01108{bottom:422.400000pt;}
.y7b_c01108{bottom:423.040000pt;}
.y7c_c01108{bottom:424.320000pt;}
.y75_c01108{bottom:458.240000pt;}
.y76_c01108{bottom:458.880000pt;}
.y73_c01108{bottom:459.520000pt;}
.y77_c01108{bottom:460.160000pt;}
.y74_c01108{bottom:461.440000pt;}
.y78_c01108{bottom:462.080000pt;}
.ya8_c01108{bottom:462.720000pt;}
.y72_c01108{bottom:490.240000pt;}
.y6e_c01108{bottom:496.000000pt;}
.ya7_c01108{bottom:497.280000pt;}
.y6c_c01108{bottom:497.920000pt;}
.y6f_c01108{bottom:498.560000pt;}
.y71_c01108{bottom:499.200000pt;}
.y6d_c01108{bottom:499.840000pt;}
.y70_c01108{bottom:500.480000pt;}
.y6b_c01108{bottom:535.680000pt;}
.y6a_c01108{bottom:537.600000pt;}
.y66_c01108{bottom:593.920000pt;}
.y68_c01108{bottom:594.560000pt;}
.y69_c01108{bottom:595.840000pt;}
.y67_c01108{bottom:596.480000pt;}
.y63_c01108{bottom:613.120000pt;}
.y65_c01108{bottom:615.040000pt;}
.y64_c01108{bottom:615.680000pt;}
.y60_c01108{bottom:622.080000pt;}
.y62_c01108{bottom:623.360000pt;}
.y61_c01108{bottom:624.000000pt;}
.y5e_c01108{bottom:632.320000pt;}
.y5f_c01108{bottom:632.960000pt;}
.y5d_c01108{bottom:633.600000pt;}
.y5c_c01108{bottom:640.640000pt;}
.y5b_c01108{bottom:641.280000pt;}
.y58_c01108{bottom:650.880000pt;}
.y5a_c01108{bottom:651.520000pt;}
.y59_c01108{bottom:653.440000pt;}
.y56_c01108{bottom:658.560000pt;}
.y57_c01108{bottom:659.840000pt;}
.y55_c01108{bottom:660.480000pt;}
.y54_c01108{bottom:661.760000pt;}
.y50_c01108{bottom:670.080000pt;}
.y53_c01108{bottom:670.720000pt;}
.y51_c01108{bottom:672.640000pt;}
.y52_c01108{bottom:673.280000pt;}
.y4f_c01108{bottom:679.680000pt;}
.y4d_c01108{bottom:680.320000pt;}
.y4e_c01108{bottom:680.960000pt;}
.y44_c01108{bottom:687.360000pt;}
.y4a_c01108{bottom:688.640000pt;}
.y4c_c01108{bottom:689.280000pt;}
.y45_c01108{bottom:689.920000pt;}
.y46_c01108{bottom:690.560000pt;}
.y4b_c01108{bottom:691.840000pt;}
.y47_c01108{bottom:697.600000pt;}
.y49_c01108{bottom:698.240000pt;}
.y48_c01108{bottom:700.160000pt;}
.y42_c01108{bottom:707.840000pt;}
.y43_c01108{bottom:708.480000pt;}
.y3d_c01108{bottom:716.160000pt;}
.y3c_c01108{bottom:717.440000pt;}
.y3b_c01108{bottom:718.080000pt;}
.y3e_c01108{bottom:718.720000pt;}
.y40_c01108{bottom:719.360000pt;}
.y41_c01108{bottom:720.000000pt;}
.y3f_c01108{bottom:721.280000pt;}
.y38_c01108{bottom:727.040000pt;}
.y3a_c01108{bottom:728.320000pt;}
.y39_c01108{bottom:729.600000pt;}
.y36_c01108{bottom:736.640000pt;}
.y37_c01108{bottom:737.920000pt;}
.y30_c01108{bottom:744.960000pt;}
.y2f_c01108{bottom:746.240000pt;}
.y35_c01108{bottom:746.880000pt;}
.y33_c01108{bottom:748.160000pt;}
.y34_c01108{bottom:748.800000pt;}
.y31_c01108{bottom:755.200000pt;}
.y32_c01108{bottom:755.840000pt;}
.y2e_c01108{bottom:764.800000pt;}
.y2b_c01108{bottom:765.440000pt;}
.y2d_c01108{bottom:766.080000pt;}
.y2c_c01108{bottom:768.000000pt;}
.y24_c01108{bottom:773.760000pt;}
.y28_c01108{bottom:774.400000pt;}
.y29_c01108{bottom:775.680000pt;}
.y2a_c01108{bottom:776.320000pt;}
.y25_c01108{bottom:784.000000pt;}
.y27_c01108{bottom:784.640000pt;}
.y26_c01108{bottom:787.200000pt;}
.y22_c01108{bottom:800.000000pt;}
.y20_c01108{bottom:801.920000pt;}
.y1f_c01108{bottom:802.560000pt;}
.y1e_c01108{bottom:803.200000pt;}
.y21_c01108{bottom:803.840000pt;}
.y23_c01108{bottom:805.760000pt;}
.y1b_c01108{bottom:822.400000pt;}
.y1d_c01108{bottom:823.680000pt;}
.y1c_c01108{bottom:824.320000pt;}
.y17_c01108{bottom:839.680000pt;}
.y18_c01108{bottom:841.600000pt;}
.y19_c01108{bottom:842.880000pt;}
.y1a_c01108{bottom:843.520000pt;}
.y13_c01108{bottom:848.000000pt;}
.y16_c01108{bottom:848.640000pt;}
.y14_c01108{bottom:849.920000pt;}
.y15_c01108{bottom:852.480000pt;}
.ye_c01108{bottom:859.520000pt;}
.yf_c01108{bottom:860.160000pt;}
.y12_c01108{bottom:865.920000pt;}
.y11_c01108{bottom:866.560000pt;}
.y10_c01108{bottom:871.040000pt;}
.y8_c01108{bottom:906.240000pt;}
.y9_c01108{bottom:906.880000pt;}
.yd_c01108{bottom:907.520000pt;}
.yb_c01108{bottom:908.160000pt;}
.ya_c01108{bottom:909.440000pt;}
.yc_c01108{bottom:912.000000pt;}
.y6_c01108{bottom:913.920000pt;}
.y5_c01108{bottom:915.200000pt;}
.y7_c01108{bottom:916.480000pt;}
.y2_c01108{bottom:926.720000pt;}
.y3_c01108{bottom:928.000000pt;}
.y4_c01108{bottom:928.640000pt;}
.y1_c01108{bottom:964.480000pt;}
.h16_c01108{height:11.518750pt;}
.hd_c01108{height:13.822500pt;}
.h8_c01108{height:20.733750pt;}
.h18_c01108{height:25.341250pt;}
.h11_c01108{height:29.948750pt;}
.h13_c01108{height:32.252500pt;}
.h17_c01108{height:34.556250pt;}
.h4_c01108{height:36.860000pt;}
.h3_c01108{height:39.163750pt;}
.h5_c01108{height:41.467500pt;}
.hc_c01108{height:43.771250pt;}
.hb_c01108{height:46.075000pt;}
.h7_c01108{height:48.378750pt;}
.h6_c01108{height:50.682500pt;}
.hf_c01108{height:52.986250pt;}
.h10_c01108{height:53.498750pt;}
.h14_c01108{height:54.777500pt;}
.h2_c01108{height:55.290000pt;}
.h15_c01108{height:57.593750pt;}
.h12_c01108{height:59.897500pt;}
.he_c01108{height:62.201250pt;}
.ha_c01108{height:64.505000pt;}
.h9_c01108{height:66.808750pt;}
.h0_c01108{height:1013.760000pt;}
.h1_c01108{height:1014.000000pt;}
.w0_c01108{width:706.560000pt;}
.w1_c01108{width:706.666667pt;}
.x0_c01108{left:0.000000pt;}
.x7_c01108{left:72.960000pt;}
.x32_c01108{left:74.240000pt;}
.x19_c01108{left:91.520000pt;}
.x8_c01108{left:101.760000pt;}
.x12_c01108{left:110.720000pt;}
.x41_c01108{left:113.920000pt;}
.x21_c01108{left:121.600000pt;}
.x28_c01108{left:130.560000pt;}
.x33_c01108{left:139.520000pt;}
.x13_c01108{left:148.480000pt;}
.x30_c01108{left:149.760000pt;}
.x14_c01108{left:168.960000pt;}
.x2a_c01108{left:176.640000pt;}
.x34_c01108{left:177.920000pt;}
.x9_c01108{left:185.600000pt;}
.x1a_c01108{left:195.840000pt;}
.x15_c01108{left:205.440000pt;}
.x3b_c01108{left:215.680000pt;}
.x3f_c01108{left:216.960000pt;}
.x1b_c01108{left:224.640000pt;}
.x22_c01108{left:225.920000pt;}
.x31_c01108{left:234.240000pt;}
.x2_c01108{left:254.080000pt;}
.x42_c01108{left:255.360000pt;}
.x1c_c01108{left:263.040000pt;}
.x2b_c01108{left:264.320000pt;}
.x26_c01108{left:272.640000pt;}
.x23_c01108{left:273.920000pt;}
.xd_c01108{left:280.960000pt;}
.x16_c01108{left:282.240000pt;}
.x1d_c01108{left:291.840000pt;}
.x3_c01108{left:301.440000pt;}
.x3c_c01108{left:302.720000pt;}
.x2c_c01108{left:310.400000pt;}
.x24_c01108{left:311.680000pt;}
.x39_c01108{left:312.960000pt;}
.x37_c01108{left:320.640000pt;}
.x29_c01108{left:330.880000pt;}
.x20_c01108{left:339.840000pt;}
.x27_c01108{left:341.120000pt;}
.x4_c01108{left:349.440000pt;}
.x1e_c01108{left:359.040000pt;}
.x40_c01108{left:378.240000pt;}
.x3a_c01108{left:387.840000pt;}
.x1f_c01108{left:396.800000pt;}
.x5_c01108{left:398.080000pt;}
.x38_c01108{left:416.640000pt;}
.x25_c01108{left:426.240000pt;}
.x36_c01108{left:434.560000pt;}
.x35_c01108{left:435.840000pt;}
.x3e_c01108{left:444.800000pt;}
.x6_c01108{left:455.040000pt;}
.x3d_c01108{left:460.160000pt;}
.xe_c01108{left:464.640000pt;}
.xa_c01108{left:492.160000pt;}
.xf_c01108{left:493.440000pt;}
.x4a_c01108{left:494.720000pt;}
.x2d_c01108{left:503.680000pt;}
.x17_c01108{left:513.280000pt;}
.xb_c01108{left:522.880000pt;}
.x2e_c01108{left:531.840000pt;}
.x18_c01108{left:541.440000pt;}
.x4b_c01108{left:552.320000pt;}
.xc_c01108{left:559.360000pt;}
.x10_c01108{left:560.640000pt;}
.x43_c01108{left:570.880000pt;}
.x2f_c01108{left:590.080000pt;}
.x48_c01108{left:592.000000pt;}
.x1_c01108{left:597.760000pt;}
.x11_c01108{left:599.040000pt;}
.x47_c01108{left:600.320000pt;}
.x46_c01108{left:628.480000pt;}
.x49_c01108{left:629.760000pt;}
.x44_c01108{left:638.080000pt;}
.x4c_c01108{left:639.360000pt;}
.x45_c01108{left:656.000000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f5e4fa560946a88e01ce8bfc.woff2')format("woff");}.ff1_c01109{font-family:ff1_c01109;line-height:1.109863;font-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_c01109{transform:matrix(0.155550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155550,0.000000,0.000000,0.250000,0,0);}
.m16_c01109{transform:matrix(0.159650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159650,0.000000,0.000000,0.250000,0,0);}
.m1d_c01109{transform:matrix(0.222525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222525,0.000000,0.000000,0.250000,0,0);}
.m3c_c01109{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m3f_c01109{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);}
.m3a_c01109{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m3e_c01109{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m22_c01109{transform:matrix(0.244575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244575,0.000000,0.000000,0.250000,0,0);}
.m2d_c01109{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m44_c01109{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m1_c01109{transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);}
.m38_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);}
.m28_c01109{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m7_c01109{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);}
.m39_c01109{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m12_c01109{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.me_c01109{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_c01109{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);}
.m33_c01109{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);}
.m3d_c01109{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m23_c01109{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);}
.m3b_c01109{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m9_c01109{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01109{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m27_c01109{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m3_c01109{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m10_c01109{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01109{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m40_c01109{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m47_c01109{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01109{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.ma_c01109{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mf_c01109{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m17_c01109{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01109{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m37_c01109{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m0_c01109{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mb_c01109{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m34_c01109{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);}
.m36_c01109{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);}
.m45_c01109{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m18_c01109{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m15_c01109{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m24_c01109{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m6_c01109{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m11_c01109{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);}
.m31_c01109{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01109{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m21_c01109{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m32_c01109{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m25_c01109{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m26_c01109{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);}
.m14_c01109{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);}
.m41_c01109{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.md_c01109{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);}
.m2b_c01109{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m46_c01109{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m35_c01109{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);}
.m4_c01109{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m30_c01109{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01109{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m2_c01109{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_c01109{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.mc_c01109{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m13_c01109{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);}
.m19_c01109{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);}
.m1b_c01109{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m29_c01109{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01109{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m43_c01109{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01109{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.m42_c01109{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.v2_c01109{vertical-align:-2.880000px;}
.v0_c01109{vertical-align:0.000000px;}
.v1_c01109{vertical-align:2.880000px;}
.ls0_c01109{letter-spacing:0.000000px;}
.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;}
}
.ws3_c01109{word-spacing:0.000000px;}
.ws0_c01109{word-spacing:47.598000px;}
.ws1_c01109{word-spacing:47.598566px;}
.ws2_c01109{word-spacing:62.370000px;}
.fc0_c01109{color:transparent;}
.fsf_c01109{font-size:17.280000px;}
.fse_c01109{font-size:20.160000px;}
.fs2_c01109{font-size:37.440000px;}
.fs3_c01109{font-size:48.960000px;}
.fs8_c01109{font-size:51.840000px;}
.fsb_c01109{font-size:54.720000px;}
.fsd_c01109{font-size:57.600000px;}
.fs5_c01109{font-size:60.480000px;}
.fs9_c01109{font-size:63.360000px;}
.fs0_c01109{font-size:66.240000px;}
.fs7_c01109{font-size:69.120000px;}
.fsc_c01109{font-size:72.000000px;}
.fs6_c01109{font-size:74.880000px;}
.fs1_c01109{font-size:77.760000px;}
.fsa_c01109{font-size:103.680000px;}
.fs4_c01109{font-size:112.320000px;}
.y0_c01109{bottom:0.000000px;}
.y89_c01109{bottom:65.520000px;}
.y88_c01109{bottom:66.240000px;}
.y86_c01109{bottom:66.960000px;}
.y87_c01109{bottom:67.680000px;}
.y85_c01109{bottom:71.280000px;}
.y84_c01109{bottom:106.560000px;}
.y83_c01109{bottom:109.440000px;}
.y80_c01109{bottom:110.160000px;}
.y81_c01109{bottom:110.880000px;}
.y82_c01109{bottom:111.600000px;}
.y7f_c01109{bottom:113.760000px;}
.y7e_c01109{bottom:150.480000px;}
.y7b_c01109{bottom:152.640000px;}
.y7d_c01109{bottom:153.360000px;}
.y7c_c01109{bottom:154.080000px;}
.y7a_c01109{bottom:155.520000px;}
.y79_c01109{bottom:193.680000px;}
.y78_c01109{bottom:194.400000px;}
.y76_c01109{bottom:195.120000px;}
.y77_c01109{bottom:196.560000px;}
.y73_c01109{bottom:198.720000px;}
.y74_c01109{bottom:199.440000px;}
.y75_c01109{bottom:202.320000px;}
.y72_c01109{bottom:236.160000px;}
.y71_c01109{bottom:236.880000px;}
.y70_c01109{bottom:237.600000px;}
.y6e_c01109{bottom:238.320000px;}
.y6f_c01109{bottom:239.040000px;}
.y6d_c01109{bottom:239.760000px;}
.y6b_c01109{bottom:278.640000px;}
.y6c_c01109{bottom:279.360000px;}
.y68_c01109{bottom:280.080000px;}
.y6a_c01109{bottom:280.800000px;}
.y69_c01109{bottom:282.240000px;}
.y67_c01109{bottom:282.960000px;}
.y66_c01109{bottom:321.840000px;}
.y64_c01109{bottom:323.280000px;}
.y65_c01109{bottom:324.720000px;}
.y63_c01109{bottom:326.160000px;}
.y61_c01109{bottom:365.760000px;}
.y62_c01109{bottom:367.920000px;}
.y60_c01109{bottom:368.640000px;}
.y5f_c01109{bottom:408.240000px;}
.y5d_c01109{bottom:408.960000px;}
.y5e_c01109{bottom:409.680000px;}
.y5c_c01109{bottom:411.120000px;}
.y5a_c01109{bottom:450.720000px;}
.y5b_c01109{bottom:451.440000px;}
.y57_c01109{bottom:452.160000px;}
.y59_c01109{bottom:452.880000px;}
.y58_c01109{bottom:453.600000px;}
.y56_c01109{bottom:454.320000px;}
.y52_c01109{bottom:492.480000px;}
.y53_c01109{bottom:493.200000px;}
.y55_c01109{bottom:494.640000px;}
.y54_c01109{bottom:495.360000px;}
.y50_c01109{bottom:496.080000px;}
.y4f_c01109{bottom:496.800000px;}
.y51_c01109{bottom:497.520000px;}
.y4b_c01109{bottom:536.400000px;}
.y4d_c01109{bottom:537.120000px;}
.y4c_c01109{bottom:537.840000px;}
.y4e_c01109{bottom:538.560000px;}
.y49_c01109{bottom:539.280000px;}
.y4a_c01109{bottom:541.440000px;}
.y44_c01109{bottom:579.600000px;}
.y48_c01109{bottom:580.320000px;}
.y46_c01109{bottom:581.040000px;}
.y43_c01109{bottom:581.760000px;}
.y45_c01109{bottom:582.480000px;}
.y47_c01109{bottom:583.200000px;}
.y3e_c01109{bottom:621.360000px;}
.y42_c01109{bottom:622.080000px;}
.y41_c01109{bottom:622.800000px;}
.y40_c01109{bottom:623.520000px;}
.y3d_c01109{bottom:624.240000px;}
.y3f_c01109{bottom:624.960000px;}
.y30_c01109{bottom:664.560000px;}
.y2e_c01109{bottom:666.000000px;}
.y2f_c01109{bottom:667.440000px;}
.y2a_c01109{bottom:696.240000px;}
.y3c_c01109{bottom:696.960000px;}
.y2c_c01109{bottom:697.680000px;}
.y29_c01109{bottom:698.400000px;}
.y2d_c01109{bottom:699.120000px;}
.y2b_c01109{bottom:699.840000px;}
.y26_c01109{bottom:738.000000px;}
.y3b_c01109{bottom:738.720000px;}
.y25_c01109{bottom:740.160000px;}
.y3a_c01109{bottom:740.880000px;}
.y28_c01109{bottom:741.600000px;}
.y27_c01109{bottom:742.320000px;}
.y24_c01109{bottom:774.720000px;}
.y20_c01109{bottom:781.200000px;}
.y23_c01109{bottom:781.920000px;}
.y21_c01109{bottom:782.640000px;}
.y1f_c01109{bottom:784.080000px;}
.y22_c01109{bottom:784.800000px;}
.y1b_c01109{bottom:824.400000px;}
.y1e_c01109{bottom:825.120000px;}
.y1a_c01109{bottom:825.840000px;}
.y1c_c01109{bottom:828.000000px;}
.y1d_c01109{bottom:828.720000px;}
.y18_c01109{bottom:859.680000px;}
.y14_c01109{bottom:866.160000px;}
.y16_c01109{bottom:866.880000px;}
.y17_c01109{bottom:868.320000px;}
.y13_c01109{bottom:869.040000px;}
.y15_c01109{bottom:871.200000px;}
.y19_c01109{bottom:871.920000px;}
.y11_c01109{bottom:910.080000px;}
.ye_c01109{bottom:911.520000px;}
.y12_c01109{bottom:912.240000px;}
.y10_c01109{bottom:912.960000px;}
.yf_c01109{bottom:913.680000px;}
.y39_c01109{bottom:914.400000px;}
.yd_c01109{bottom:952.560000px;}
.ya_c01109{bottom:953.280000px;}
.y37_c01109{bottom:954.720000px;}
.y36_c01109{bottom:955.440000px;}
.yb_c01109{bottom:956.160000px;}
.yc_c01109{bottom:956.880000px;}
.y38_c01109{bottom:958.320000px;}
.y8_c01109{bottom:995.040000px;}
.y7_c01109{bottom:995.760000px;}
.y33_c01109{bottom:997.920000px;}
.y9_c01109{bottom:998.640000px;}
.y35_c01109{bottom:1000.080000px;}
.y34_c01109{bottom:1001.520000px;}
.y6_c01109{bottom:1029.600000px;}
.y2_c01109{bottom:1037.520000px;}
.y4_c01109{bottom:1038.960000px;}
.y1_c01109{bottom:1039.680000px;}
.y5_c01109{bottom:1040.400000px;}
.y32_c01109{bottom:1041.840000px;}
.y3_c01109{bottom:1042.560000px;}
.y31_c01109{bottom:1101.600000px;}
.h12_c01109{height:15.550313px;}
.h11_c01109{height:18.142031px;}
.h4_c01109{height:33.692344px;}
.h5_c01109{height:44.059219px;}
.ha_c01109{height:46.650937px;}
.hd_c01109{height:49.242656px;}
.hf_c01109{height:51.834375px;}
.h7_c01109{height:54.426094px;}
.h10_c01109{height:54.714375px;}
.hb_c01109{height:57.017812px;}
.h2_c01109{height:59.609531px;}
.h9_c01109{height:62.201250px;}
.he_c01109{height:64.792969px;}
.h8_c01109{height:67.384687px;}
.h3_c01109{height:69.976406px;}
.hc_c01109{height:93.301875px;}
.h6_c01109{height:101.077031px;}
.h0_c01109{height:1138.320000px;}
.h1_c01109{height:1138.500000px;}
.w1_c01109{width:790.500000px;}
.w0_c01109{width:790.560000px;}
.x0_c01109{left:0.000000px;}
.xf_c01109{left:80.640000px;}
.x1_c01109{left:82.080000px;}
.x31_c01109{left:123.120000px;}
.x32_c01109{left:131.760000px;}
.x2c_c01109{left:153.360000px;}
.x2_c01109{left:154.800000px;}
.x26_c01109{left:196.560000px;}
.x8_c01109{left:198.720000px;}
.x2a_c01109{left:239.040000px;}
.xb_c01109{left:240.480000px;}
.x9_c01109{left:251.280000px;}
.x3_c01109{left:252.720000px;}
.x17_c01109{left:262.080000px;}
.x18_c01109{left:282.960000px;}
.x4_c01109{left:294.480000px;}
.xa_c01109{left:316.080000px;}
.x13_c01109{left:326.160000px;}
.x10_c01109{left:347.040000px;}
.x19_c01109{left:368.640000px;}
.x14_c01109{left:380.160000px;}
.x25_c01109{left:390.240000px;}
.xc_c01109{left:391.680000px;}
.x11_c01109{left:401.040000px;}
.x1a_c01109{left:423.360000px;}
.x5_c01109{left:434.160000px;}
.xd_c01109{left:457.200000px;}
.x16_c01109{left:465.840000px;}
.x15_c01109{left:477.360000px;}
.x6_c01109{left:487.440000px;}
.xe_c01109{left:497.520000px;}
.x12_c01109{left:509.760000px;}
.x27_c01109{left:551.520000px;}
.x7_c01109{left:553.680000px;}
.x2d_c01109{left:563.040000px;}
.x2f_c01109{left:583.200000px;}
.x2e_c01109{left:585.360000px;}
.x28_c01109{left:604.800000px;}
.x1c_c01109{left:607.680000px;}
.x30_c01109{left:637.920000px;}
.x22_c01109{left:640.080000px;}
.x1e_c01109{left:641.520000px;}
.x33_c01109{left:671.040000px;}
.x23_c01109{left:672.480000px;}
.x1f_c01109{left:673.920000px;}
.x1b_c01109{left:699.840000px;}
.x34_c01109{left:704.160000px;}
.x1d_c01109{left:706.320000px;}
.x29_c01109{left:714.240000px;}
.x24_c01109{left:715.680000px;}
.x20_c01109{left:717.120000px;}
.x2b_c01109{left:734.400000px;}
.x21_c01109{left:736.560000px;}
@media print{
.v2_c01109{vertical-align:-2.560000pt;}
.v0_c01109{vertical-align:0.000000pt;}
.v1_c01109{vertical-align:2.560000pt;}
.ls0_c01109{letter-spacing:0.000000pt;}
.ws3_c01109{word-spacing:0.000000pt;}
.ws0_c01109{word-spacing:42.309333pt;}
.ws1_c01109{word-spacing:42.309837pt;}
.ws2_c01109{word-spacing:55.440000pt;}
.fsf_c01109{font-size:15.360000pt;}
.fse_c01109{font-size:17.920000pt;}
.fs2_c01109{font-size:33.280000pt;}
.fs3_c01109{font-size:43.520000pt;}
.fs8_c01109{font-size:46.080000pt;}
.fsb_c01109{font-size:48.640000pt;}
.fsd_c01109{font-size:51.200000pt;}
.fs5_c01109{font-size:53.760000pt;}
.fs9_c01109{font-size:56.320000pt;}
.fs0_c01109{font-size:58.880000pt;}
.fs7_c01109{font-size:61.440000pt;}
.fsc_c01109{font-size:64.000000pt;}
.fs6_c01109{font-size:66.560000pt;}
.fs1_c01109{font-size:69.120000pt;}
.fsa_c01109{font-size:92.160000pt;}
.fs4_c01109{font-size:99.840000pt;}
.y0_c01109{bottom:0.000000pt;}
.y89_c01109{bottom:58.240000pt;}
.y88_c01109{bottom:58.880000pt;}
.y86_c01109{bottom:59.520000pt;}
.y87_c01109{bottom:60.160000pt;}
.y85_c01109{bottom:63.360000pt;}
.y84_c01109{bottom:94.720000pt;}
.y83_c01109{bottom:97.280000pt;}
.y80_c01109{bottom:97.920000pt;}
.y81_c01109{bottom:98.560000pt;}
.y82_c01109{bottom:99.200000pt;}
.y7f_c01109{bottom:101.120000pt;}
.y7e_c01109{bottom:133.760000pt;}
.y7b_c01109{bottom:135.680000pt;}
.y7d_c01109{bottom:136.320000pt;}
.y7c_c01109{bottom:136.960000pt;}
.y7a_c01109{bottom:138.240000pt;}
.y79_c01109{bottom:172.160000pt;}
.y78_c01109{bottom:172.800000pt;}
.y76_c01109{bottom:173.440000pt;}
.y77_c01109{bottom:174.720000pt;}
.y73_c01109{bottom:176.640000pt;}
.y74_c01109{bottom:177.280000pt;}
.y75_c01109{bottom:179.840000pt;}
.y72_c01109{bottom:209.920000pt;}
.y71_c01109{bottom:210.560000pt;}
.y70_c01109{bottom:211.200000pt;}
.y6e_c01109{bottom:211.840000pt;}
.y6f_c01109{bottom:212.480000pt;}
.y6d_c01109{bottom:213.120000pt;}
.y6b_c01109{bottom:247.680000pt;}
.y6c_c01109{bottom:248.320000pt;}
.y68_c01109{bottom:248.960000pt;}
.y6a_c01109{bottom:249.600000pt;}
.y69_c01109{bottom:250.880000pt;}
.y67_c01109{bottom:251.520000pt;}
.y66_c01109{bottom:286.080000pt;}
.y64_c01109{bottom:287.360000pt;}
.y65_c01109{bottom:288.640000pt;}
.y63_c01109{bottom:289.920000pt;}
.y61_c01109{bottom:325.120000pt;}
.y62_c01109{bottom:327.040000pt;}
.y60_c01109{bottom:327.680000pt;}
.y5f_c01109{bottom:362.880000pt;}
.y5d_c01109{bottom:363.520000pt;}
.y5e_c01109{bottom:364.160000pt;}
.y5c_c01109{bottom:365.440000pt;}
.y5a_c01109{bottom:400.640000pt;}
.y5b_c01109{bottom:401.280000pt;}
.y57_c01109{bottom:401.920000pt;}
.y59_c01109{bottom:402.560000pt;}
.y58_c01109{bottom:403.200000pt;}
.y56_c01109{bottom:403.840000pt;}
.y52_c01109{bottom:437.760000pt;}
.y53_c01109{bottom:438.400000pt;}
.y55_c01109{bottom:439.680000pt;}
.y54_c01109{bottom:440.320000pt;}
.y50_c01109{bottom:440.960000pt;}
.y4f_c01109{bottom:441.600000pt;}
.y51_c01109{bottom:442.240000pt;}
.y4b_c01109{bottom:476.800000pt;}
.y4d_c01109{bottom:477.440000pt;}
.y4c_c01109{bottom:478.080000pt;}
.y4e_c01109{bottom:478.720000pt;}
.y49_c01109{bottom:479.360000pt;}
.y4a_c01109{bottom:481.280000pt;}
.y44_c01109{bottom:515.200000pt;}
.y48_c01109{bottom:515.840000pt;}
.y46_c01109{bottom:516.480000pt;}
.y43_c01109{bottom:517.120000pt;}
.y45_c01109{bottom:517.760000pt;}
.y47_c01109{bottom:518.400000pt;}
.y3e_c01109{bottom:552.320000pt;}
.y42_c01109{bottom:552.960000pt;}
.y41_c01109{bottom:553.600000pt;}
.y40_c01109{bottom:554.240000pt;}
.y3d_c01109{bottom:554.880000pt;}
.y3f_c01109{bottom:555.520000pt;}
.y30_c01109{bottom:590.720000pt;}
.y2e_c01109{bottom:592.000000pt;}
.y2f_c01109{bottom:593.280000pt;}
.y2a_c01109{bottom:618.880000pt;}
.y3c_c01109{bottom:619.520000pt;}
.y2c_c01109{bottom:620.160000pt;}
.y29_c01109{bottom:620.800000pt;}
.y2d_c01109{bottom:621.440000pt;}
.y2b_c01109{bottom:622.080000pt;}
.y26_c01109{bottom:656.000000pt;}
.y3b_c01109{bottom:656.640000pt;}
.y25_c01109{bottom:657.920000pt;}
.y3a_c01109{bottom:658.560000pt;}
.y28_c01109{bottom:659.200000pt;}
.y27_c01109{bottom:659.840000pt;}
.y24_c01109{bottom:688.640000pt;}
.y20_c01109{bottom:694.400000pt;}
.y23_c01109{bottom:695.040000pt;}
.y21_c01109{bottom:695.680000pt;}
.y1f_c01109{bottom:696.960000pt;}
.y22_c01109{bottom:697.600000pt;}
.y1b_c01109{bottom:732.800000pt;}
.y1e_c01109{bottom:733.440000pt;}
.y1a_c01109{bottom:734.080000pt;}
.y1c_c01109{bottom:736.000000pt;}
.y1d_c01109{bottom:736.640000pt;}
.y18_c01109{bottom:764.160000pt;}
.y14_c01109{bottom:769.920000pt;}
.y16_c01109{bottom:770.560000pt;}
.y17_c01109{bottom:771.840000pt;}
.y13_c01109{bottom:772.480000pt;}
.y15_c01109{bottom:774.400000pt;}
.y19_c01109{bottom:775.040000pt;}
.y11_c01109{bottom:808.960000pt;}
.ye_c01109{bottom:810.240000pt;}
.y12_c01109{bottom:810.880000pt;}
.y10_c01109{bottom:811.520000pt;}
.yf_c01109{bottom:812.160000pt;}
.y39_c01109{bottom:812.800000pt;}
.yd_c01109{bottom:846.720000pt;}
.ya_c01109{bottom:847.360000pt;}
.y37_c01109{bottom:848.640000pt;}
.y36_c01109{bottom:849.280000pt;}
.yb_c01109{bottom:849.920000pt;}
.yc_c01109{bottom:850.560000pt;}
.y38_c01109{bottom:851.840000pt;}
.y8_c01109{bottom:884.480000pt;}
.y7_c01109{bottom:885.120000pt;}
.y33_c01109{bottom:887.040000pt;}
.y9_c01109{bottom:887.680000pt;}
.y35_c01109{bottom:888.960000pt;}
.y34_c01109{bottom:890.240000pt;}
.y6_c01109{bottom:915.200000pt;}
.y2_c01109{bottom:922.240000pt;}
.y4_c01109{bottom:923.520000pt;}
.y1_c01109{bottom:924.160000pt;}
.y5_c01109{bottom:924.800000pt;}
.y32_c01109{bottom:926.080000pt;}
.y3_c01109{bottom:926.720000pt;}
.y31_c01109{bottom:979.200000pt;}
.h12_c01109{height:13.822500pt;}
.h11_c01109{height:16.126250pt;}
.h4_c01109{height:29.948750pt;}
.h5_c01109{height:39.163750pt;}
.ha_c01109{height:41.467500pt;}
.hd_c01109{height:43.771250pt;}
.hf_c01109{height:46.075000pt;}
.h7_c01109{height:48.378750pt;}
.h10_c01109{height:48.635000pt;}
.hb_c01109{height:50.682500pt;}
.h2_c01109{height:52.986250pt;}
.h9_c01109{height:55.290000pt;}
.he_c01109{height:57.593750pt;}
.h8_c01109{height:59.897500pt;}
.h3_c01109{height:62.201250pt;}
.hc_c01109{height:82.935000pt;}
.h6_c01109{height:89.846250pt;}
.h0_c01109{height:1011.840000pt;}
.h1_c01109{height:1012.000000pt;}
.w1_c01109{width:702.666667pt;}
.w0_c01109{width:702.720000pt;}
.x0_c01109{left:0.000000pt;}
.xf_c01109{left:71.680000pt;}
.x1_c01109{left:72.960000pt;}
.x31_c01109{left:109.440000pt;}
.x32_c01109{left:117.120000pt;}
.x2c_c01109{left:136.320000pt;}
.x2_c01109{left:137.600000pt;}
.x26_c01109{left:174.720000pt;}
.x8_c01109{left:176.640000pt;}
.x2a_c01109{left:212.480000pt;}
.xb_c01109{left:213.760000pt;}
.x9_c01109{left:223.360000pt;}
.x3_c01109{left:224.640000pt;}
.x17_c01109{left:232.960000pt;}
.x18_c01109{left:251.520000pt;}
.x4_c01109{left:261.760000pt;}
.xa_c01109{left:280.960000pt;}
.x13_c01109{left:289.920000pt;}
.x10_c01109{left:308.480000pt;}
.x19_c01109{left:327.680000pt;}
.x14_c01109{left:337.920000pt;}
.x25_c01109{left:346.880000pt;}
.xc_c01109{left:348.160000pt;}
.x11_c01109{left:356.480000pt;}
.x1a_c01109{left:376.320000pt;}
.x5_c01109{left:385.920000pt;}
.xd_c01109{left:406.400000pt;}
.x16_c01109{left:414.080000pt;}
.x15_c01109{left:424.320000pt;}
.x6_c01109{left:433.280000pt;}
.xe_c01109{left:442.240000pt;}
.x12_c01109{left:453.120000pt;}
.x27_c01109{left:490.240000pt;}
.x7_c01109{left:492.160000pt;}
.x2d_c01109{left:500.480000pt;}
.x2f_c01109{left:518.400000pt;}
.x2e_c01109{left:520.320000pt;}
.x28_c01109{left:537.600000pt;}
.x1c_c01109{left:540.160000pt;}
.x30_c01109{left:567.040000pt;}
.x22_c01109{left:568.960000pt;}
.x1e_c01109{left:570.240000pt;}
.x33_c01109{left:596.480000pt;}
.x23_c01109{left:597.760000pt;}
.x1f_c01109{left:599.040000pt;}
.x1b_c01109{left:622.080000pt;}
.x34_c01109{left:625.920000pt;}
.x1d_c01109{left:627.840000pt;}
.x29_c01109{left:634.880000pt;}
.x24_c01109{left:636.160000pt;}
.x20_c01109{left:637.440000pt;}
.x2b_c01109{left:652.800000pt;}
.x21_c01109{left:654.720000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ae2f7da5abbf9e87235acf66.woff2')format("woff");}.ff1_c01110{font-family:ff1_c01110;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3a_c01110{transform:matrix(0.143900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143900,0.000000,0.000000,0.250000,0,0);}
.m38_c01110{transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);}
.m2d_c01110{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m4b_c01110{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m47_c01110{transform:matrix(0.216150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216150,0.000000,0.000000,0.250000,0,0);}
.m45_c01110{transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);}
.m34_c01110{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_c01110{transform:matrix(0.232125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232125,0.000000,0.000000,0.250000,0,0);}
.m3b_c01110{transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);}
.m13_c01110{transform:matrix(0.232775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232775,0.000000,0.000000,0.250000,0,0);}
.m39_c01110{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m33_c01110{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m40_c01110{transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);}
.m1c_c01110{transform:matrix(0.241925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241925,0.000000,0.000000,0.250000,0,0);}
.m5_c01110{transform:matrix(0.242075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242075,0.000000,0.000000,0.250000,0,0);}
.mf_c01110{transform:matrix(0.243050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243050,0.000000,0.000000,0.250000,0,0);}
.m3d_c01110{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01110{transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);}
.m28_c01110{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m31_c01110{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m25_c01110{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m3_c01110{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mb_c01110{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m26_c01110{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m22_c01110{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_c01110{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);}
.m46_c01110{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);}
.m37_c01110{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);}
.m2f_c01110{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m16_c01110{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m1_c01110{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m11_c01110{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01110{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);}
.m2b_c01110{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m9_c01110{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_c01110{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01110{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m15_c01110{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m23_c01110{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m36_c01110{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m44_c01110{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m10_c01110{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m2_c01110{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01110{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m35_c01110{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.me_c01110{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m32_c01110{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m30_c01110{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01110{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m4_c01110{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01110{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m14_c01110{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.ma_c01110{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);}
.m4f_c01110{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m48_c01110{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m7_c01110{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m12_c01110{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_c01110{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m27_c01110{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m24_c01110{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m4e_c01110{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);}
.m4a_c01110{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);}
.m0_c01110{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);}
.m19_c01110{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);}
.m20_c01110{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);}
.m42_c01110{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m8_c01110{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m18_c01110{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01110{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m49_c01110{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);}
.m41_c01110{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m29_c01110{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);}
.m6_c01110{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m21_c01110{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);}
.m4c_c01110{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m43_c01110{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m17_c01110{transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01110{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01110{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01110{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.v1_c01110{vertical-align:-5.760000px;}
.v0_c01110{vertical-align:0.000000px;}
.v2_c01110{vertical-align:5.760000px;}
.ls0_c01110{letter-spacing:0.000000px;}
.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;}
}
.ws5_c01110{word-spacing:0.000000px;}
.ws0_c01110{word-spacing:1.669440px;}
.ws3_c01110{word-spacing:9.212400px;}
.ws2_c01110{word-spacing:11.693143px;}
.ws4_c01110{word-spacing:11.856000px;}
.ws1_c01110{word-spacing:12.954505px;}
.fc0_c01110{color:transparent;}
.fsa_c01110{font-size:34.560000px;}
.fsb_c01110{font-size:37.440000px;}
.fsf_c01110{font-size:40.320000px;}
.fsc_c01110{font-size:43.200000px;}
.fse_c01110{font-size:46.080000px;}
.fs6_c01110{font-size:48.960000px;}
.fs5_c01110{font-size:51.840000px;}
.fsd_c01110{font-size:54.720000px;}
.fs0_c01110{font-size:57.600000px;}
.fs9_c01110{font-size:60.480000px;}
.fs8_c01110{font-size:63.360000px;}
.fs3_c01110{font-size:66.240000px;}
.fs2_c01110{font-size:69.120000px;}
.fs7_c01110{font-size:72.000000px;}
.fs4_c01110{font-size:74.880000px;}
.fs1_c01110{font-size:77.760000px;}
.y0_c01110{bottom:0.000000px;}
.y72_c01110{bottom:97.920000px;}
.y7d_c01110{bottom:98.640000px;}
.y7e_c01110{bottom:99.360000px;}
.y7b_c01110{bottom:100.080000px;}
.y7c_c01110{bottom:100.800000px;}
.y71_c01110{bottom:102.240000px;}
.y70_c01110{bottom:140.400000px;}
.y7a_c01110{bottom:141.120000px;}
.y78_c01110{bottom:142.560000px;}
.y79_c01110{bottom:143.280000px;}
.y6f_c01110{bottom:144.720000px;}
.y6e_c01110{bottom:182.880000px;}
.y76_c01110{bottom:183.600000px;}
.y6c_c01110{bottom:184.320000px;}
.y75_c01110{bottom:185.040000px;}
.y77_c01110{bottom:185.760000px;}
.y6d_c01110{bottom:186.480000px;}
.y6b_c01110{bottom:187.200000px;}
.y69_c01110{bottom:226.080000px;}
.y6a_c01110{bottom:226.800000px;}
.y73_c01110{bottom:227.520000px;}
.y74_c01110{bottom:228.240000px;}
.y68_c01110{bottom:228.960000px;}
.y67_c01110{bottom:269.280000px;}
.y66_c01110{bottom:272.880000px;}
.y63_c01110{bottom:300.960000px;}
.y60_c01110{bottom:301.680000px;}
.y62_c01110{bottom:302.400000px;}
.y64_c01110{bottom:303.120000px;}
.y61_c01110{bottom:303.840000px;}
.y65_c01110{bottom:304.560000px;}
.y35_c01110{bottom:342.720000px;}
.y5f_c01110{bottom:343.440000px;}
.y37_c01110{bottom:344.160000px;}
.y5e_c01110{bottom:344.880000px;}
.y34_c01110{bottom:345.600000px;}
.y36_c01110{bottom:347.760000px;}
.y31_c01110{bottom:385.200000px;}
.y33_c01110{bottom:386.640000px;}
.y5d_c01110{bottom:387.360000px;}
.y30_c01110{bottom:388.080000px;}
.y32_c01110{bottom:388.800000px;}
.y2e_c01110{bottom:428.400000px;}
.y5b_c01110{bottom:429.120000px;}
.y2d_c01110{bottom:429.840000px;}
.y5a_c01110{bottom:430.560000px;}
.y5c_c01110{bottom:431.280000px;}
.y2f_c01110{bottom:432.000000px;}
.y2b_c01110{bottom:470.880000px;}
.y59_c01110{bottom:471.600000px;}
.y58_c01110{bottom:472.320000px;}
.y2a_c01110{bottom:473.040000px;}
.y2c_c01110{bottom:474.480000px;}
.y28_c01110{bottom:512.640000px;}
.y29_c01110{bottom:513.360000px;}
.y56_c01110{bottom:514.800000px;}
.y27_c01110{bottom:515.520000px;}
.y57_c01110{bottom:517.680000px;}
.y26_c01110{bottom:555.840000px;}
.y25_c01110{bottom:558.000000px;}
.y54_c01110{bottom:558.720000px;}
.y55_c01110{bottom:560.160000px;}
.y23_c01110{bottom:599.040000px;}
.y52_c01110{bottom:600.480000px;}
.y22_c01110{bottom:601.200000px;}
.y24_c01110{bottom:603.360000px;}
.y53_c01110{bottom:604.080000px;}
.y1e_c01110{bottom:641.520000px;}
.y20_c01110{bottom:642.240000px;}
.y1d_c01110{bottom:643.680000px;}
.y50_c01110{bottom:644.400000px;}
.y51_c01110{bottom:645.120000px;}
.y1f_c01110{bottom:645.840000px;}
.y21_c01110{bottom:646.560000px;}
.y1c_c01110{bottom:684.720000px;}
.y1b_c01110{bottom:686.160000px;}
.y4f_c01110{bottom:686.880000px;}
.y4d_c01110{bottom:687.600000px;}
.y4e_c01110{bottom:689.040000px;}
.y19_c01110{bottom:727.200000px;}
.y17_c01110{bottom:728.640000px;}
.y18_c01110{bottom:730.080000px;}
.y4c_c01110{bottom:730.800000px;}
.y1a_c01110{bottom:731.520000px;}
.y13_c01110{bottom:770.400000px;}
.y12_c01110{bottom:771.120000px;}
.y16_c01110{bottom:771.840000px;}
.y4a_c01110{bottom:772.560000px;}
.y49_c01110{bottom:774.000000px;}
.y14_c01110{bottom:774.720000px;}
.y15_c01110{bottom:775.440000px;}
.y4b_c01110{bottom:776.160000px;}
.y10_c01110{bottom:812.880000px;}
.y11_c01110{bottom:813.600000px;}
.yf_c01110{bottom:815.040000px;}
.y47_c01110{bottom:816.480000px;}
.y46_c01110{bottom:817.200000px;}
.y48_c01110{bottom:817.920000px;}
.yd_c01110{bottom:855.360000px;}
.yc_c01110{bottom:856.800000px;}
.ye_c01110{bottom:857.520000px;}
.y43_c01110{bottom:859.680000px;}
.y45_c01110{bottom:860.400000px;}
.y44_c01110{bottom:861.120000px;}
.yb_c01110{bottom:897.840000px;}
.ya_c01110{bottom:900.000000px;}
.y41_c01110{bottom:902.160000px;}
.y40_c01110{bottom:902.880000px;}
.y42_c01110{bottom:905.760000px;}
.y6_c01110{bottom:940.320000px;}
.y5_c01110{bottom:942.480000px;}
.y9_c01110{bottom:943.200000px;}
.y3f_c01110{bottom:944.640000px;}
.y7_c01110{bottom:945.360000px;}
.y8_c01110{bottom:946.080000px;}
.y4_c01110{bottom:982.800000px;}
.y3_c01110{bottom:984.240000px;}
.y3c_c01110{bottom:987.840000px;}
.y3e_c01110{bottom:989.280000px;}
.y3d_c01110{bottom:990.000000px;}
.y2_c01110{bottom:1026.000000px;}
.y1_c01110{bottom:1027.440000px;}
.y3a_c01110{bottom:1031.040000px;}
.y3b_c01110{bottom:1031.760000px;}
.y39_c01110{bottom:1033.920000px;}
.y38_c01110{bottom:1098.000000px;}
.hc_c01110{height:31.100625px;}
.hd_c01110{height:33.692344px;}
.h12_c01110{height:36.284062px;}
.he_c01110{height:38.875781px;}
.h11_c01110{height:41.467500px;}
.h8_c01110{height:44.059219px;}
.h7_c01110{height:46.650937px;}
.hf_c01110{height:49.242656px;}
.h2_c01110{height:51.834375px;}
.hb_c01110{height:54.426094px;}
.ha_c01110{height:57.017812px;}
.h5_c01110{height:59.609531px;}
.h10_c01110{height:60.186094px;}
.h4_c01110{height:62.201250px;}
.h9_c01110{height:64.792969px;}
.h6_c01110{height:67.384687px;}
.h3_c01110{height:69.976406px;}
.h0_c01110{height:1140.480000px;}
.h1_c01110{height:1140.750000px;}
.w0_c01110{width:794.880000px;}
.w1_c01110{width:795.000000px;}
.x0_c01110{left:0.000000px;}
.x1_c01110{left:79.920000px;}
.x24_c01110{left:81.360000px;}
.xa_c01110{left:123.840000px;}
.x2_c01110{left:153.360000px;}
.x23_c01110{left:154.800000px;}
.x20_c01110{left:207.360000px;}
.x7_c01110{left:239.760000px;}
.x21_c01110{left:241.200000px;}
.x3_c01110{left:282.960000px;}
.x1d_c01110{left:292.320000px;}
.x10_c01110{left:293.760000px;}
.xf_c01110{left:324.720000px;}
.xc_c01110{left:326.160000px;}
.x4_c01110{left:334.800000px;}
.xb_c01110{left:336.240000px;}
.x9_c01110{left:368.640000px;}
.x5_c01110{left:379.440000px;}
.x8_c01110{left:401.040000px;}
.x11_c01110{left:412.560000px;}
.x6_c01110{left:421.920000px;}
.x1e_c01110{left:423.360000px;}
.xd_c01110{left:433.440000px;}
.x22_c01110{left:455.760000px;}
.x1f_c01110{left:477.360000px;}
.xe_c01110{left:488.160000px;}
.x27_c01110{left:554.400000px;}
.x17_c01110{left:561.600000px;}
.x13_c01110{left:563.760000px;}
.x1a_c01110{left:583.920000px;}
.x18_c01110{left:585.360000px;}
.x28_c01110{left:586.800000px;}
.x19_c01110{left:606.240000px;}
.x14_c01110{left:639.360000px;}
.x26_c01110{left:640.800000px;}
.x1b_c01110{left:672.480000px;}
.x29_c01110{left:673.920000px;}
.x12_c01110{left:684.720000px;}
.x1c_c01110{left:705.600000px;}
.x15_c01110{left:715.680000px;}
.x25_c01110{left:717.120000px;}
.x16_c01110{left:736.560000px;}
@media print{
.v1_c01110{vertical-align:-5.120000pt;}
.v0_c01110{vertical-align:0.000000pt;}
.v2_c01110{vertical-align:5.120000pt;}
.ls0_c01110{letter-spacing:0.000000pt;}
.ws5_c01110{word-spacing:0.000000pt;}
.ws0_c01110{word-spacing:1.483947pt;}
.ws3_c01110{word-spacing:8.188800pt;}
.ws2_c01110{word-spacing:10.393905pt;}
.ws4_c01110{word-spacing:10.538667pt;}
.ws1_c01110{word-spacing:11.515116pt;}
.fsa_c01110{font-size:30.720000pt;}
.fsb_c01110{font-size:33.280000pt;}
.fsf_c01110{font-size:35.840000pt;}
.fsc_c01110{font-size:38.400000pt;}
.fse_c01110{font-size:40.960000pt;}
.fs6_c01110{font-size:43.520000pt;}
.fs5_c01110{font-size:46.080000pt;}
.fsd_c01110{font-size:48.640000pt;}
.fs0_c01110{font-size:51.200000pt;}
.fs9_c01110{font-size:53.760000pt;}
.fs8_c01110{font-size:56.320000pt;}
.fs3_c01110{font-size:58.880000pt;}
.fs2_c01110{font-size:61.440000pt;}
.fs7_c01110{font-size:64.000000pt;}
.fs4_c01110{font-size:66.560000pt;}
.fs1_c01110{font-size:69.120000pt;}
.y0_c01110{bottom:0.000000pt;}
.y72_c01110{bottom:87.040000pt;}
.y7d_c01110{bottom:87.680000pt;}
.y7e_c01110{bottom:88.320000pt;}
.y7b_c01110{bottom:88.960000pt;}
.y7c_c01110{bottom:89.600000pt;}
.y71_c01110{bottom:90.880000pt;}
.y70_c01110{bottom:124.800000pt;}
.y7a_c01110{bottom:125.440000pt;}
.y78_c01110{bottom:126.720000pt;}
.y79_c01110{bottom:127.360000pt;}
.y6f_c01110{bottom:128.640000pt;}
.y6e_c01110{bottom:162.560000pt;}
.y76_c01110{bottom:163.200000pt;}
.y6c_c01110{bottom:163.840000pt;}
.y75_c01110{bottom:164.480000pt;}
.y77_c01110{bottom:165.120000pt;}
.y6d_c01110{bottom:165.760000pt;}
.y6b_c01110{bottom:166.400000pt;}
.y69_c01110{bottom:200.960000pt;}
.y6a_c01110{bottom:201.600000pt;}
.y73_c01110{bottom:202.240000pt;}
.y74_c01110{bottom:202.880000pt;}
.y68_c01110{bottom:203.520000pt;}
.y67_c01110{bottom:239.360000pt;}
.y66_c01110{bottom:242.560000pt;}
.y63_c01110{bottom:267.520000pt;}
.y60_c01110{bottom:268.160000pt;}
.y62_c01110{bottom:268.800000pt;}
.y64_c01110{bottom:269.440000pt;}
.y61_c01110{bottom:270.080000pt;}
.y65_c01110{bottom:270.720000pt;}
.y35_c01110{bottom:304.640000pt;}
.y5f_c01110{bottom:305.280000pt;}
.y37_c01110{bottom:305.920000pt;}
.y5e_c01110{bottom:306.560000pt;}
.y34_c01110{bottom:307.200000pt;}
.y36_c01110{bottom:309.120000pt;}
.y31_c01110{bottom:342.400000pt;}
.y33_c01110{bottom:343.680000pt;}
.y5d_c01110{bottom:344.320000pt;}
.y30_c01110{bottom:344.960000pt;}
.y32_c01110{bottom:345.600000pt;}
.y2e_c01110{bottom:380.800000pt;}
.y5b_c01110{bottom:381.440000pt;}
.y2d_c01110{bottom:382.080000pt;}
.y5a_c01110{bottom:382.720000pt;}
.y5c_c01110{bottom:383.360000pt;}
.y2f_c01110{bottom:384.000000pt;}
.y2b_c01110{bottom:418.560000pt;}
.y59_c01110{bottom:419.200000pt;}
.y58_c01110{bottom:419.840000pt;}
.y2a_c01110{bottom:420.480000pt;}
.y2c_c01110{bottom:421.760000pt;}
.y28_c01110{bottom:455.680000pt;}
.y29_c01110{bottom:456.320000pt;}
.y56_c01110{bottom:457.600000pt;}
.y27_c01110{bottom:458.240000pt;}
.y57_c01110{bottom:460.160000pt;}
.y26_c01110{bottom:494.080000pt;}
.y25_c01110{bottom:496.000000pt;}
.y54_c01110{bottom:496.640000pt;}
.y55_c01110{bottom:497.920000pt;}
.y23_c01110{bottom:532.480000pt;}
.y52_c01110{bottom:533.760000pt;}
.y22_c01110{bottom:534.400000pt;}
.y24_c01110{bottom:536.320000pt;}
.y53_c01110{bottom:536.960000pt;}
.y1e_c01110{bottom:570.240000pt;}
.y20_c01110{bottom:570.880000pt;}
.y1d_c01110{bottom:572.160000pt;}
.y50_c01110{bottom:572.800000pt;}
.y51_c01110{bottom:573.440000pt;}
.y1f_c01110{bottom:574.080000pt;}
.y21_c01110{bottom:574.720000pt;}
.y1c_c01110{bottom:608.640000pt;}
.y1b_c01110{bottom:609.920000pt;}
.y4f_c01110{bottom:610.560000pt;}
.y4d_c01110{bottom:611.200000pt;}
.y4e_c01110{bottom:612.480000pt;}
.y19_c01110{bottom:646.400000pt;}
.y17_c01110{bottom:647.680000pt;}
.y18_c01110{bottom:648.960000pt;}
.y4c_c01110{bottom:649.600000pt;}
.y1a_c01110{bottom:650.240000pt;}
.y13_c01110{bottom:684.800000pt;}
.y12_c01110{bottom:685.440000pt;}
.y16_c01110{bottom:686.080000pt;}
.y4a_c01110{bottom:686.720000pt;}
.y49_c01110{bottom:688.000000pt;}
.y14_c01110{bottom:688.640000pt;}
.y15_c01110{bottom:689.280000pt;}
.y4b_c01110{bottom:689.920000pt;}
.y10_c01110{bottom:722.560000pt;}
.y11_c01110{bottom:723.200000pt;}
.yf_c01110{bottom:724.480000pt;}
.y47_c01110{bottom:725.760000pt;}
.y46_c01110{bottom:726.400000pt;}
.y48_c01110{bottom:727.040000pt;}
.yd_c01110{bottom:760.320000pt;}
.yc_c01110{bottom:761.600000pt;}
.ye_c01110{bottom:762.240000pt;}
.y43_c01110{bottom:764.160000pt;}
.y45_c01110{bottom:764.800000pt;}
.y44_c01110{bottom:765.440000pt;}
.yb_c01110{bottom:798.080000pt;}
.ya_c01110{bottom:800.000000pt;}
.y41_c01110{bottom:801.920000pt;}
.y40_c01110{bottom:802.560000pt;}
.y42_c01110{bottom:805.120000pt;}
.y6_c01110{bottom:835.840000pt;}
.y5_c01110{bottom:837.760000pt;}
.y9_c01110{bottom:838.400000pt;}
.y3f_c01110{bottom:839.680000pt;}
.y7_c01110{bottom:840.320000pt;}
.y8_c01110{bottom:840.960000pt;}
.y4_c01110{bottom:873.600000pt;}
.y3_c01110{bottom:874.880000pt;}
.y3c_c01110{bottom:878.080000pt;}
.y3e_c01110{bottom:879.360000pt;}
.y3d_c01110{bottom:880.000000pt;}
.y2_c01110{bottom:912.000000pt;}
.y1_c01110{bottom:913.280000pt;}
.y3a_c01110{bottom:916.480000pt;}
.y3b_c01110{bottom:917.120000pt;}
.y39_c01110{bottom:919.040000pt;}
.y38_c01110{bottom:976.000000pt;}
.hc_c01110{height:27.645000pt;}
.hd_c01110{height:29.948750pt;}
.h12_c01110{height:32.252500pt;}
.he_c01110{height:34.556250pt;}
.h11_c01110{height:36.860000pt;}
.h8_c01110{height:39.163750pt;}
.h7_c01110{height:41.467500pt;}
.hf_c01110{height:43.771250pt;}
.h2_c01110{height:46.075000pt;}
.hb_c01110{height:48.378750pt;}
.ha_c01110{height:50.682500pt;}
.h5_c01110{height:52.986250pt;}
.h10_c01110{height:53.498750pt;}
.h4_c01110{height:55.290000pt;}
.h9_c01110{height:57.593750pt;}
.h6_c01110{height:59.897500pt;}
.h3_c01110{height:62.201250pt;}
.h0_c01110{height:1013.760000pt;}
.h1_c01110{height:1014.000000pt;}
.w0_c01110{width:706.560000pt;}
.w1_c01110{width:706.666667pt;}
.x0_c01110{left:0.000000pt;}
.x1_c01110{left:71.040000pt;}
.x24_c01110{left:72.320000pt;}
.xa_c01110{left:110.080000pt;}
.x2_c01110{left:136.320000pt;}
.x23_c01110{left:137.600000pt;}
.x20_c01110{left:184.320000pt;}
.x7_c01110{left:213.120000pt;}
.x21_c01110{left:214.400000pt;}
.x3_c01110{left:251.520000pt;}
.x1d_c01110{left:259.840000pt;}
.x10_c01110{left:261.120000pt;}
.xf_c01110{left:288.640000pt;}
.xc_c01110{left:289.920000pt;}
.x4_c01110{left:297.600000pt;}
.xb_c01110{left:298.880000pt;}
.x9_c01110{left:327.680000pt;}
.x5_c01110{left:337.280000pt;}
.x8_c01110{left:356.480000pt;}
.x11_c01110{left:366.720000pt;}
.x6_c01110{left:375.040000pt;}
.x1e_c01110{left:376.320000pt;}
.xd_c01110{left:385.280000pt;}
.x22_c01110{left:405.120000pt;}
.x1f_c01110{left:424.320000pt;}
.xe_c01110{left:433.920000pt;}
.x27_c01110{left:492.800000pt;}
.x17_c01110{left:499.200000pt;}
.x13_c01110{left:501.120000pt;}
.x1a_c01110{left:519.040000pt;}
.x18_c01110{left:520.320000pt;}
.x28_c01110{left:521.600000pt;}
.x19_c01110{left:538.880000pt;}
.x14_c01110{left:568.320000pt;}
.x26_c01110{left:569.600000pt;}
.x1b_c01110{left:597.760000pt;}
.x29_c01110{left:599.040000pt;}
.x12_c01110{left:608.640000pt;}
.x1c_c01110{left:627.200000pt;}
.x15_c01110{left:636.160000pt;}
.x25_c01110{left:637.440000pt;}
.x16_c01110{left:654.720000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_56f0baf4d5ca24c2e23aff1f.woff2')format("woff");}.ff1_c01111{font-family:ff1_c01111;line-height:1.109863;font-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_c01111{transform:matrix(0.215050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215050,0.000000,0.000000,0.250000,0,0);}
.m4a_c01111{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);}
.m28_c01111{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m7_c01111{transform:matrix(0.246675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246675,0.000000,0.000000,0.250000,0,0);}
.m13_c01111{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.ma_c01111{transform:matrix(0.248375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248375,0.000000,0.000000,0.250000,0,0);}
.m2f_c01111{transform:matrix(0.249050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249050,0.000000,0.000000,0.250000,0,0);}
.m2d_c01111{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m8_c01111{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m15_c01111{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);}
.m2b_c01111{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_c01111{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);}
.m21_c01111{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m3_c01111{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m10_c01111{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_c01111{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);}
.m24_c01111{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01111{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m19_c01111{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m14_c01111{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m5_c01111{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01111{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m20_c01111{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m39_c01111{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mf_c01111{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01111{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.md_c01111{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m18_c01111{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m27_c01111{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m12_c01111{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01111{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01111{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m11_c01111{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01111{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m23_c01111{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01111{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);}
.m46_c01111{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01111{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m16_c01111{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);}
.m35_c01111{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m9_c01111{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_c01111{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);}
.m32_c01111{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m2_c01111{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m6_c01111{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);}
.me_c01111{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01111{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m43_c01111{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);}
.m29_c01111{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);}
.mb_c01111{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01111{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);}
.m26_c01111{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01111{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m38_c01111{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);}
.m41_c01111{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m0_c01111{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);}
.m44_c01111{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m31_c01111{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m34_c01111{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m33_c01111{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m30_c01111{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);}
.m2a_c01111{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m42_c01111{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m45_c01111{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m22_c01111{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);}
.m2c_c01111{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01111{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01111{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m4_c01111{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);}
.m36_c01111{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m37_c01111{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);}
.m40_c01111{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m47_c01111{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);}
.m48_c01111{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m49_c01111{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.v0_c01111{vertical-align:0.000000px;}
.v1_c01111{vertical-align:2.880000px;}
.ls0_c01111{letter-spacing:0.000000px;}
.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;}
}
.ws4_c01111{word-spacing:0.000000px;}
.ws2_c01111{word-spacing:9.210378px;}
.ws0_c01111{word-spacing:9.474000px;}
.ws3_c01111{word-spacing:14.243161px;}
.ws1_c01111{word-spacing:38.336640px;}
.fc0_c01111{color:transparent;}
.fs4_c01111{font-size:37.440000px;}
.fsd_c01111{font-size:40.320000px;}
.fse_c01111{font-size:43.200000px;}
.fsc_c01111{font-size:46.080000px;}
.fs9_c01111{font-size:48.960000px;}
.fs8_c01111{font-size:51.840000px;}
.fs0_c01111{font-size:54.720000px;}
.fs7_c01111{font-size:57.600000px;}
.fs2_c01111{font-size:60.480000px;}
.fs6_c01111{font-size:63.360000px;}
.fsb_c01111{font-size:66.240000px;}
.fsa_c01111{font-size:69.120000px;}
.fs3_c01111{font-size:72.000000px;}
.fs1_c01111{font-size:74.880000px;}
.fs5_c01111{font-size:77.760000px;}
.y0_c01111{bottom:0.000000px;}
.y79_c01111{bottom:69.120000px;}
.y78_c01111{bottom:77.760000px;}
.y76_c01111{bottom:78.480000px;}
.y75_c01111{bottom:79.200000px;}
.y77_c01111{bottom:79.920000px;}
.y74_c01111{bottom:80.640000px;}
.y87_c01111{bottom:120.240000px;}
.y7a_c01111{bottom:120.960000px;}
.y73_c01111{bottom:121.680000px;}
.y72_c01111{bottom:123.120000px;}
.y71_c01111{bottom:123.840000px;}
.y6f_c01111{bottom:163.440000px;}
.y6e_c01111{bottom:164.160000px;}
.y70_c01111{bottom:165.600000px;}
.y6c_c01111{bottom:195.120000px;}
.y6d_c01111{bottom:195.840000px;}
.y69_c01111{bottom:196.560000px;}
.y68_c01111{bottom:197.280000px;}
.y6a_c01111{bottom:198.000000px;}
.y6b_c01111{bottom:198.720000px;}
.y67_c01111{bottom:229.680000px;}
.y64_c01111{bottom:236.880000px;}
.y66_c01111{bottom:238.320000px;}
.y86_c01111{bottom:239.040000px;}
.y65_c01111{bottom:239.760000px;}
.y62_c01111{bottom:240.480000px;}
.y63_c01111{bottom:241.200000px;}
.y83_c01111{bottom:280.800000px;}
.y84_c01111{bottom:281.520000px;}
.y60_c01111{bottom:282.240000px;}
.y85_c01111{bottom:282.960000px;}
.y61_c01111{bottom:283.680000px;}
.y5d_c01111{bottom:324.000000px;}
.y82_c01111{bottom:324.720000px;}
.y5c_c01111{bottom:325.440000px;}
.y5f_c01111{bottom:326.160000px;}
.y5e_c01111{bottom:326.880000px;}
.y59_c01111{bottom:365.760000px;}
.y58_c01111{bottom:367.200000px;}
.y57_c01111{bottom:367.920000px;}
.y5b_c01111{bottom:368.640000px;}
.y5a_c01111{bottom:369.360000px;}
.y81_c01111{bottom:370.080000px;}
.y54_c01111{bottom:410.400000px;}
.y56_c01111{bottom:411.120000px;}
.y55_c01111{bottom:411.840000px;}
.y80_c01111{bottom:412.560000px;}
.y51_c01111{bottom:451.440000px;}
.y52_c01111{bottom:452.160000px;}
.y50_c01111{bottom:452.880000px;}
.y4f_c01111{bottom:453.600000px;}
.y7f_c01111{bottom:454.320000px;}
.y53_c01111{bottom:455.040000px;}
.y7e_c01111{bottom:455.760000px;}
.y4a_c01111{bottom:493.200000px;}
.y4b_c01111{bottom:493.920000px;}
.y4d_c01111{bottom:494.640000px;}
.y49_c01111{bottom:495.360000px;}
.y4e_c01111{bottom:496.080000px;}
.y4c_c01111{bottom:496.800000px;}
.y7d_c01111{bottom:497.520000px;}
.y44_c01111{bottom:536.400000px;}
.y45_c01111{bottom:537.120000px;}
.y43_c01111{bottom:537.840000px;}
.y46_c01111{bottom:538.560000px;}
.y47_c01111{bottom:539.280000px;}
.y7c_c01111{bottom:540.720000px;}
.y48_c01111{bottom:541.440000px;}
.y41_c01111{bottom:578.880000px;}
.y40_c01111{bottom:579.600000px;}
.y3e_c01111{bottom:580.320000px;}
.y42_c01111{bottom:581.760000px;}
.y3f_c01111{bottom:582.480000px;}
.y7b_c01111{bottom:583.920000px;}
.y37_c01111{bottom:620.640000px;}
.y39_c01111{bottom:621.360000px;}
.y3a_c01111{bottom:622.080000px;}
.y36_c01111{bottom:622.800000px;}
.y3b_c01111{bottom:624.240000px;}
.y38_c01111{bottom:624.960000px;}
.y3d_c01111{bottom:625.680000px;}
.y3c_c01111{bottom:626.400000px;}
.y35_c01111{bottom:663.840000px;}
.y30_c01111{bottom:695.520000px;}
.y33_c01111{bottom:696.960000px;}
.y2f_c01111{bottom:697.680000px;}
.y34_c01111{bottom:698.400000px;}
.y31_c01111{bottom:699.120000px;}
.y32_c01111{bottom:699.840000px;}
.y2e_c01111{bottom:738.720000px;}
.y2d_c01111{bottom:739.440000px;}
.y29_c01111{bottom:741.600000px;}
.y2a_c01111{bottom:743.040000px;}
.y2b_c01111{bottom:743.760000px;}
.y2c_c01111{bottom:744.480000px;}
.y10_c01111{bottom:780.480000px;}
.y11_c01111{bottom:781.920000px;}
.yf_c01111{bottom:782.640000px;}
.y26_c01111{bottom:784.080000px;}
.y28_c01111{bottom:784.800000px;}
.y27_c01111{bottom:786.240000px;}
.ye_c01111{bottom:822.960000px;}
.yd_c01111{bottom:825.120000px;}
.y25_c01111{bottom:828.000000px;}
.yc_c01111{bottom:866.880000px;}
.yb_c01111{bottom:867.600000px;}
.y23_c01111{bottom:870.480000px;}
.y24_c01111{bottom:871.200000px;}
.y22_c01111{bottom:872.640000px;}
.ya_c01111{bottom:909.360000px;}
.y9_c01111{bottom:910.080000px;}
.y21_c01111{bottom:914.400000px;}
.y1f_c01111{bottom:915.120000px;}
.y20_c01111{bottom:915.840000px;}
.y8_c01111{bottom:951.840000px;}
.y7_c01111{bottom:952.560000px;}
.y1c_c01111{bottom:956.160000px;}
.y1d_c01111{bottom:956.880000px;}
.y1b_c01111{bottom:958.320000px;}
.y1e_c01111{bottom:959.760000px;}
.y4_c01111{bottom:995.040000px;}
.y3_c01111{bottom:995.760000px;}
.y6_c01111{bottom:997.200000px;}
.y5_c01111{bottom:999.360000px;}
.y17_c01111{bottom:1000.080000px;}
.y18_c01111{bottom:1000.800000px;}
.y19_c01111{bottom:1002.240000px;}
.y1a_c01111{bottom:1003.680000px;}
.y2_c01111{bottom:1037.520000px;}
.y1_c01111{bottom:1039.680000px;}
.y16_c01111{bottom:1044.000000px;}
.y13_c01111{bottom:1044.720000px;}
.y15_c01111{bottom:1045.440000px;}
.y14_c01111{bottom:1046.160000px;}
.y12_c01111{bottom:1101.600000px;}
.h6_c01111{height:33.692344px;}
.h10_c01111{height:36.284062px;}
.h11_c01111{height:38.875781px;}
.hf_c01111{height:41.467500px;}
.hb_c01111{height:44.059219px;}
.ha_c01111{height:46.650937px;}
.h2_c01111{height:49.242656px;}
.h9_c01111{height:51.834375px;}
.h4_c01111{height:54.426094px;}
.hc_c01111{height:54.714375px;}
.h8_c01111{height:57.017812px;}
.he_c01111{height:59.609531px;}
.hd_c01111{height:62.201250px;}
.h5_c01111{height:64.792969px;}
.h3_c01111{height:67.384687px;}
.h7_c01111{height:69.976406px;}
.h0_c01111{height:1142.640000px;}
.h1_c01111{height:1143.000000px;}
.w0_c01111{width:798.480000px;}
.w1_c01111{width:798.750000px;}
.x0_c01111{left:0.000000px;}
.x1_c01111{left:83.520000px;}
.x22_c01111{left:84.960000px;}
.x2_c01111{left:156.960000px;}
.x18_c01111{left:158.400000px;}
.x21_c01111{left:159.840000px;}
.x19_c01111{left:244.080000px;}
.x3_c01111{left:254.160000px;}
.x11_c01111{left:286.560000px;}
.x4_c01111{left:296.640000px;}
.x23_c01111{left:298.080000px;}
.x1f_c01111{left:308.160000px;}
.x15_c01111{left:329.040000px;}
.x16_c01111{left:340.560000px;}
.x1a_c01111{left:351.360000px;}
.x26_c01111{left:352.800000px;}
.x20_c01111{left:362.160000px;}
.x5_c01111{left:413.280000px;}
.x12_c01111{left:414.720000px;}
.x28_c01111{left:416.880000px;}
.x1b_c01111{left:426.240000px;}
.x27_c01111{left:447.120000px;}
.x24_c01111{left:448.560000px;}
.x29_c01111{left:459.360000px;}
.x13_c01111{left:468.000000px;}
.x1d_c01111{left:479.520000px;}
.x1c_c01111{left:490.320000px;}
.x25_c01111{left:502.560000px;}
.x14_c01111{left:511.920000px;}
.x17_c01111{left:522.720000px;}
.x1e_c01111{left:527.760000px;}
.x7_c01111{left:556.560000px;}
.xf_c01111{left:566.640000px;}
.x8_c01111{left:587.520000px;}
.xc_c01111{left:589.680000px;}
.x10_c01111{left:641.520000px;}
.x9_c01111{left:642.960000px;}
.x2d_c01111{left:644.400000px;}
.xa_c01111{left:676.080000px;}
.x6_c01111{left:681.120000px;}
.xd_c01111{left:707.040000px;}
.xe_c01111{left:708.480000px;}
.x2c_c01111{left:709.920000px;}
.xb_c01111{left:718.560000px;}
.x2b_c01111{left:720.000000px;}
.x2a_c01111{left:739.440000px;}
@media print{
.v0_c01111{vertical-align:0.000000pt;}
.v1_c01111{vertical-align:2.560000pt;}
.ls0_c01111{letter-spacing:0.000000pt;}
.ws4_c01111{word-spacing:0.000000pt;}
.ws2_c01111{word-spacing:8.187003pt;}
.ws0_c01111{word-spacing:8.421333pt;}
.ws3_c01111{word-spacing:12.660588pt;}
.ws1_c01111{word-spacing:34.077013pt;}
.fs4_c01111{font-size:33.280000pt;}
.fsd_c01111{font-size:35.840000pt;}
.fse_c01111{font-size:38.400000pt;}
.fsc_c01111{font-size:40.960000pt;}
.fs9_c01111{font-size:43.520000pt;}
.fs8_c01111{font-size:46.080000pt;}
.fs0_c01111{font-size:48.640000pt;}
.fs7_c01111{font-size:51.200000pt;}
.fs2_c01111{font-size:53.760000pt;}
.fs6_c01111{font-size:56.320000pt;}
.fsb_c01111{font-size:58.880000pt;}
.fsa_c01111{font-size:61.440000pt;}
.fs3_c01111{font-size:64.000000pt;}
.fs1_c01111{font-size:66.560000pt;}
.fs5_c01111{font-size:69.120000pt;}
.y0_c01111{bottom:0.000000pt;}
.y79_c01111{bottom:61.440000pt;}
.y78_c01111{bottom:69.120000pt;}
.y76_c01111{bottom:69.760000pt;}
.y75_c01111{bottom:70.400000pt;}
.y77_c01111{bottom:71.040000pt;}
.y74_c01111{bottom:71.680000pt;}
.y87_c01111{bottom:106.880000pt;}
.y7a_c01111{bottom:107.520000pt;}
.y73_c01111{bottom:108.160000pt;}
.y72_c01111{bottom:109.440000pt;}
.y71_c01111{bottom:110.080000pt;}
.y6f_c01111{bottom:145.280000pt;}
.y6e_c01111{bottom:145.920000pt;}
.y70_c01111{bottom:147.200000pt;}
.y6c_c01111{bottom:173.440000pt;}
.y6d_c01111{bottom:174.080000pt;}
.y69_c01111{bottom:174.720000pt;}
.y68_c01111{bottom:175.360000pt;}
.y6a_c01111{bottom:176.000000pt;}
.y6b_c01111{bottom:176.640000pt;}
.y67_c01111{bottom:204.160000pt;}
.y64_c01111{bottom:210.560000pt;}
.y66_c01111{bottom:211.840000pt;}
.y86_c01111{bottom:212.480000pt;}
.y65_c01111{bottom:213.120000pt;}
.y62_c01111{bottom:213.760000pt;}
.y63_c01111{bottom:214.400000pt;}
.y83_c01111{bottom:249.600000pt;}
.y84_c01111{bottom:250.240000pt;}
.y60_c01111{bottom:250.880000pt;}
.y85_c01111{bottom:251.520000pt;}
.y61_c01111{bottom:252.160000pt;}
.y5d_c01111{bottom:288.000000pt;}
.y82_c01111{bottom:288.640000pt;}
.y5c_c01111{bottom:289.280000pt;}
.y5f_c01111{bottom:289.920000pt;}
.y5e_c01111{bottom:290.560000pt;}
.y59_c01111{bottom:325.120000pt;}
.y58_c01111{bottom:326.400000pt;}
.y57_c01111{bottom:327.040000pt;}
.y5b_c01111{bottom:327.680000pt;}
.y5a_c01111{bottom:328.320000pt;}
.y81_c01111{bottom:328.960000pt;}
.y54_c01111{bottom:364.800000pt;}
.y56_c01111{bottom:365.440000pt;}
.y55_c01111{bottom:366.080000pt;}
.y80_c01111{bottom:366.720000pt;}
.y51_c01111{bottom:401.280000pt;}
.y52_c01111{bottom:401.920000pt;}
.y50_c01111{bottom:402.560000pt;}
.y4f_c01111{bottom:403.200000pt;}
.y7f_c01111{bottom:403.840000pt;}
.y53_c01111{bottom:404.480000pt;}
.y7e_c01111{bottom:405.120000pt;}
.y4a_c01111{bottom:438.400000pt;}
.y4b_c01111{bottom:439.040000pt;}
.y4d_c01111{bottom:439.680000pt;}
.y49_c01111{bottom:440.320000pt;}
.y4e_c01111{bottom:440.960000pt;}
.y4c_c01111{bottom:441.600000pt;}
.y7d_c01111{bottom:442.240000pt;}
.y44_c01111{bottom:476.800000pt;}
.y45_c01111{bottom:477.440000pt;}
.y43_c01111{bottom:478.080000pt;}
.y46_c01111{bottom:478.720000pt;}
.y47_c01111{bottom:479.360000pt;}
.y7c_c01111{bottom:480.640000pt;}
.y48_c01111{bottom:481.280000pt;}
.y41_c01111{bottom:514.560000pt;}
.y40_c01111{bottom:515.200000pt;}
.y3e_c01111{bottom:515.840000pt;}
.y42_c01111{bottom:517.120000pt;}
.y3f_c01111{bottom:517.760000pt;}
.y7b_c01111{bottom:519.040000pt;}
.y37_c01111{bottom:551.680000pt;}
.y39_c01111{bottom:552.320000pt;}
.y3a_c01111{bottom:552.960000pt;}
.y36_c01111{bottom:553.600000pt;}
.y3b_c01111{bottom:554.880000pt;}
.y38_c01111{bottom:555.520000pt;}
.y3d_c01111{bottom:556.160000pt;}
.y3c_c01111{bottom:556.800000pt;}
.y35_c01111{bottom:590.080000pt;}
.y30_c01111{bottom:618.240000pt;}
.y33_c01111{bottom:619.520000pt;}
.y2f_c01111{bottom:620.160000pt;}
.y34_c01111{bottom:620.800000pt;}
.y31_c01111{bottom:621.440000pt;}
.y32_c01111{bottom:622.080000pt;}
.y2e_c01111{bottom:656.640000pt;}
.y2d_c01111{bottom:657.280000pt;}
.y29_c01111{bottom:659.200000pt;}
.y2a_c01111{bottom:660.480000pt;}
.y2b_c01111{bottom:661.120000pt;}
.y2c_c01111{bottom:661.760000pt;}
.y10_c01111{bottom:693.760000pt;}
.y11_c01111{bottom:695.040000pt;}
.yf_c01111{bottom:695.680000pt;}
.y26_c01111{bottom:696.960000pt;}
.y28_c01111{bottom:697.600000pt;}
.y27_c01111{bottom:698.880000pt;}
.ye_c01111{bottom:731.520000pt;}
.yd_c01111{bottom:733.440000pt;}
.y25_c01111{bottom:736.000000pt;}
.yc_c01111{bottom:770.560000pt;}
.yb_c01111{bottom:771.200000pt;}
.y23_c01111{bottom:773.760000pt;}
.y24_c01111{bottom:774.400000pt;}
.y22_c01111{bottom:775.680000pt;}
.ya_c01111{bottom:808.320000pt;}
.y9_c01111{bottom:808.960000pt;}
.y21_c01111{bottom:812.800000pt;}
.y1f_c01111{bottom:813.440000pt;}
.y20_c01111{bottom:814.080000pt;}
.y8_c01111{bottom:846.080000pt;}
.y7_c01111{bottom:846.720000pt;}
.y1c_c01111{bottom:849.920000pt;}
.y1d_c01111{bottom:850.560000pt;}
.y1b_c01111{bottom:851.840000pt;}
.y1e_c01111{bottom:853.120000pt;}
.y4_c01111{bottom:884.480000pt;}
.y3_c01111{bottom:885.120000pt;}
.y6_c01111{bottom:886.400000pt;}
.y5_c01111{bottom:888.320000pt;}
.y17_c01111{bottom:888.960000pt;}
.y18_c01111{bottom:889.600000pt;}
.y19_c01111{bottom:890.880000pt;}
.y1a_c01111{bottom:892.160000pt;}
.y2_c01111{bottom:922.240000pt;}
.y1_c01111{bottom:924.160000pt;}
.y16_c01111{bottom:928.000000pt;}
.y13_c01111{bottom:928.640000pt;}
.y15_c01111{bottom:929.280000pt;}
.y14_c01111{bottom:929.920000pt;}
.y12_c01111{bottom:979.200000pt;}
.h6_c01111{height:29.948750pt;}
.h10_c01111{height:32.252500pt;}
.h11_c01111{height:34.556250pt;}
.hf_c01111{height:36.860000pt;}
.hb_c01111{height:39.163750pt;}
.ha_c01111{height:41.467500pt;}
.h2_c01111{height:43.771250pt;}
.h9_c01111{height:46.075000pt;}
.h4_c01111{height:48.378750pt;}
.hc_c01111{height:48.635000pt;}
.h8_c01111{height:50.682500pt;}
.he_c01111{height:52.986250pt;}
.hd_c01111{height:55.290000pt;}
.h5_c01111{height:57.593750pt;}
.h3_c01111{height:59.897500pt;}
.h7_c01111{height:62.201250pt;}
.h0_c01111{height:1015.680000pt;}
.h1_c01111{height:1016.000000pt;}
.w0_c01111{width:709.760000pt;}
.w1_c01111{width:710.000000pt;}
.x0_c01111{left:0.000000pt;}
.x1_c01111{left:74.240000pt;}
.x22_c01111{left:75.520000pt;}
.x2_c01111{left:139.520000pt;}
.x18_c01111{left:140.800000pt;}
.x21_c01111{left:142.080000pt;}
.x19_c01111{left:216.960000pt;}
.x3_c01111{left:225.920000pt;}
.x11_c01111{left:254.720000pt;}
.x4_c01111{left:263.680000pt;}
.x23_c01111{left:264.960000pt;}
.x1f_c01111{left:273.920000pt;}
.x15_c01111{left:292.480000pt;}
.x16_c01111{left:302.720000pt;}
.x1a_c01111{left:312.320000pt;}
.x26_c01111{left:313.600000pt;}
.x20_c01111{left:321.920000pt;}
.x5_c01111{left:367.360000pt;}
.x12_c01111{left:368.640000pt;}
.x28_c01111{left:370.560000pt;}
.x1b_c01111{left:378.880000pt;}
.x27_c01111{left:397.440000pt;}
.x24_c01111{left:398.720000pt;}
.x29_c01111{left:408.320000pt;}
.x13_c01111{left:416.000000pt;}
.x1d_c01111{left:426.240000pt;}
.x1c_c01111{left:435.840000pt;}
.x25_c01111{left:446.720000pt;}
.x14_c01111{left:455.040000pt;}
.x17_c01111{left:464.640000pt;}
.x1e_c01111{left:469.120000pt;}
.x7_c01111{left:494.720000pt;}
.xf_c01111{left:503.680000pt;}
.x8_c01111{left:522.240000pt;}
.xc_c01111{left:524.160000pt;}
.x10_c01111{left:570.240000pt;}
.x9_c01111{left:571.520000pt;}
.x2d_c01111{left:572.800000pt;}
.xa_c01111{left:600.960000pt;}
.x6_c01111{left:605.440000pt;}
.xd_c01111{left:628.480000pt;}
.xe_c01111{left:629.760000pt;}
.x2c_c01111{left:631.040000pt;}
.xb_c01111{left:638.720000pt;}
.x2b_c01111{left:640.000000pt;}
.x2a_c01111{left:657.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_dc6110c5cdc917b954540355.woff2')format("woff");}.ff1_c01112{font-family:ff1_c01112;line-height:1.109863;font-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_c01112{transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);}
.m53_c01112{transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);}
.m10_c01112{transform:matrix(0.201075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201075,0.000000,0.000000,0.250000,0,0);}
.m5_c01112{transform:matrix(0.205625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205625,0.000000,0.000000,0.250000,0,0);}
.m54_c01112{transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);}
.m33_c01112{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m34_c01112{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m55_c01112{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);}
.m1f_c01112{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.mc_c01112{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.md_c01112{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m5d_c01112{transform:matrix(0.244950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244950,0.000000,0.000000,0.250000,0,0);}
.m43_c01112{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m4a_c01112{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m3d_c01112{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_c01112{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01112{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m16_c01112{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);}
.m59_c01112{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m7_c01112{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);}
.m2c_c01112{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);}
.m45_c01112{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);}
.m4f_c01112{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m24_c01112{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);}
.m40_c01112{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m47_c01112{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);}
.m2d_c01112{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m14_c01112{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01112{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m15_c01112{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mf_c01112{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m18_c01112{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m37_c01112{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m21_c01112{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01112{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01112{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m19_c01112{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m41_c01112{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m8_c01112{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01112{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m38_c01112{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m52_c01112{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m6_c01112{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01112{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.ma_c01112{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);}
.m27_c01112{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m2_c01112{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);}
.m3c_c01112{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);}
.m36_c01112{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m13_c01112{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);}
.m2e_c01112{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.me_c01112{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);}
.m3b_c01112{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);}
.m29_c01112{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m46_c01112{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m1_c01112{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);}
.m44_c01112{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m28_c01112{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m0_c01112{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);}
.m9_c01112{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);}
.m17_c01112{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01112{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);}
.m4c_c01112{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m4_c01112{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);}
.m49_c01112{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);}
.m3_c01112{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m30_c01112{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01112{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01112{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m35_c01112{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);}
.m3a_c01112{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m31_c01112{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01112{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m39_c01112{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);}
.m5b_c01112{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m23_c01112{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m22_c01112{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m11_c01112{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);}
.m25_c01112{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m57_c01112{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);}
.m4e_c01112{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);}
.mb_c01112{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);}
.m20_c01112{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m51_c01112{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m26_c01112{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.m42_c01112{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.m50_c01112{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01112{transform:matrix(0.775000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.775000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.775000,0.000000,0.000000,0.250000,0,0);}
.m5c_c01112{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m56_c01112{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m5a_c01112{transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01112{transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);}
.m48_c01112{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.m58_c01112{transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);}
.v2_c01112{vertical-align:-2.880000px;}
.v0_c01112{vertical-align:0.000000px;}
.v1_c01112{vertical-align:11.520000px;}
.ls0_c01112{letter-spacing:0.000000px;}
.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;}
}
.ws6_c01112{word-spacing:0.000000px;}
.ws4_c01112{word-spacing:29.902522px;}
.ws3_c01112{word-spacing:34.094324px;}
.ws2_c01112{word-spacing:84.954511px;}
.ws0_c01112{word-spacing:106.205760px;}
.ws5_c01112{word-spacing:185.486400px;}
.ws1_c01112{word-spacing:213.427215px;}
.fc0_c01112{color:transparent;}
.fs14_c01112{font-size:14.400000px;}
.fs12_c01112{font-size:17.280000px;}
.fs11_c01112{font-size:20.160000px;}
.fsf_c01112{font-size:23.040000px;}
.fs13_c01112{font-size:25.920000px;}
.fs15_c01112{font-size:31.680000px;}
.fs7_c01112{font-size:37.440000px;}
.fsa_c01112{font-size:40.320000px;}
.fsd_c01112{font-size:46.080000px;}
.fsc_c01112{font-size:48.960000px;}
.fs3_c01112{font-size:51.840000px;}
.fse_c01112{font-size:54.720000px;}
.fs5_c01112{font-size:57.600000px;}
.fs1_c01112{font-size:60.480000px;}
.fs2_c01112{font-size:63.360000px;}
.fs6_c01112{font-size:66.240000px;}
.fs9_c01112{font-size:69.120000px;}
.fs0_c01112{font-size:72.000000px;}
.fs8_c01112{font-size:74.880000px;}
.fsb_c01112{font-size:77.760000px;}
.fs10_c01112{font-size:80.640000px;}
.fs4_c01112{font-size:95.040000px;}
.y0_c01112{bottom:0.000000px;}
.y83_c01112{bottom:54.000000px;}
.y82_c01112{bottom:54.720000px;}
.y84_c01112{bottom:55.440000px;}
.y81_c01112{bottom:56.160000px;}
.y80_c01112{bottom:56.880000px;}
.y93_c01112{bottom:57.600000px;}
.y92_c01112{bottom:61.920000px;}
.y7e_c01112{bottom:97.200000px;}
.y7f_c01112{bottom:97.920000px;}
.y7d_c01112{bottom:98.640000px;}
.y91_c01112{bottom:100.080000px;}
.y7c_c01112{bottom:100.800000px;}
.y90_c01112{bottom:102.960000px;}
.y7a_c01112{bottom:141.120000px;}
.y7b_c01112{bottom:141.840000px;}
.y8f_c01112{bottom:143.280000px;}
.y79_c01112{bottom:144.000000px;}
.y8e_c01112{bottom:146.160000px;}
.y77_c01112{bottom:184.320000px;}
.y76_c01112{bottom:185.040000px;}
.y78_c01112{bottom:185.760000px;}
.y75_c01112{bottom:187.200000px;}
.y8d_c01112{bottom:188.640000px;}
.y74_c01112{bottom:226.800000px;}
.y73_c01112{bottom:227.520000px;}
.y8c_c01112{bottom:228.240000px;}
.y72_c01112{bottom:230.400000px;}
.y8b_c01112{bottom:234.000000px;}
.y71_c01112{bottom:269.280000px;}
.y70_c01112{bottom:270.000000px;}
.y8a_c01112{bottom:271.440000px;}
.y6f_c01112{bottom:272.160000px;}
.y88_c01112{bottom:272.880000px;}
.y89_c01112{bottom:274.320000px;}
.y6e_c01112{bottom:312.480000px;}
.y87_c01112{bottom:313.200000px;}
.y6d_c01112{bottom:313.920000px;}
.y6c_c01112{bottom:315.360000px;}
.y86_c01112{bottom:354.960000px;}
.y6b_c01112{bottom:355.680000px;}
.y6a_c01112{bottom:356.400000px;}
.y69_c01112{bottom:357.840000px;}
.y85_c01112{bottom:362.880000px;}
.y62_c01112{bottom:397.440000px;}
.y68_c01112{bottom:399.600000px;}
.y60_c01112{bottom:400.320000px;}
.y61_c01112{bottom:401.040000px;}
.y5f_c01112{bottom:439.920000px;}
.y65_c01112{bottom:440.640000px;}
.y66_c01112{bottom:442.080000px;}
.y5d_c01112{bottom:442.800000px;}
.y67_c01112{bottom:443.520000px;}
.y5e_c01112{bottom:444.240000px;}
.y5c_c01112{bottom:482.400000px;}
.y63_c01112{bottom:484.560000px;}
.y64_c01112{bottom:485.280000px;}
.y59_c01112{bottom:486.000000px;}
.y5b_c01112{bottom:486.720000px;}
.y5a_c01112{bottom:487.440000px;}
.y57_c01112{bottom:591.120000px;}
.y58_c01112{bottom:591.840000px;}
.y56_c01112{bottom:592.560000px;}
.y55_c01112{bottom:594.000000px;}
.y54_c01112{bottom:612.720000px;}
.y52_c01112{bottom:613.440000px;}
.y51_c01112{bottom:614.160000px;}
.y50_c01112{bottom:614.880000px;}
.y53_c01112{bottom:615.600000px;}
.y4f_c01112{bottom:634.320000px;}
.y4c_c01112{bottom:635.760000px;}
.y4e_c01112{bottom:636.480000px;}
.y4d_c01112{bottom:637.200000px;}
.y47_c01112{bottom:645.840000px;}
.y46_c01112{bottom:647.280000px;}
.y48_c01112{bottom:648.000000px;}
.y4b_c01112{bottom:649.440000px;}
.y4a_c01112{bottom:655.920000px;}
.y49_c01112{bottom:656.640000px;}
.y43_c01112{bottom:676.800000px;}
.y42_c01112{bottom:677.520000px;}
.y45_c01112{bottom:678.240000px;}
.y44_c01112{bottom:680.400000px;}
.y40_c01112{bottom:699.120000px;}
.y41_c01112{bottom:699.840000px;}
.y3b_c01112{bottom:710.640000px;}
.y3a_c01112{bottom:712.080000px;}
.y3d_c01112{bottom:720.000000px;}
.y3e_c01112{bottom:720.720000px;}
.y3f_c01112{bottom:722.160000px;}
.y3c_c01112{bottom:722.880000px;}
.y38_c01112{bottom:740.880000px;}
.y34_c01112{bottom:741.600000px;}
.y37_c01112{bottom:742.320000px;}
.y35_c01112{bottom:743.040000px;}
.y36_c01112{bottom:743.760000px;}
.y39_c01112{bottom:744.480000px;}
.y33_c01112{bottom:763.200000px;}
.y2e_c01112{bottom:770.400000px;}
.y2d_c01112{bottom:772.560000px;}
.y2b_c01112{bottom:774.720000px;}
.y2c_c01112{bottom:775.440000px;}
.y2a_c01112{bottom:776.160000px;}
.y2f_c01112{bottom:784.800000px;}
.y32_c01112{bottom:785.520000px;}
.y30_c01112{bottom:786.240000px;}
.y31_c01112{bottom:786.960000px;}
.y28_c01112{bottom:805.680000px;}
.y29_c01112{bottom:806.400000px;}
.y27_c01112{bottom:817.200000px;}
.y26_c01112{bottom:817.920000px;}
.y20_c01112{bottom:825.120000px;}
.y1f_c01112{bottom:826.560000px;}
.y21_c01112{bottom:827.280000px;}
.y1e_c01112{bottom:828.000000px;}
.y1d_c01112{bottom:828.720000px;}
.y25_c01112{bottom:830.160000px;}
.y24_c01112{bottom:834.480000px;}
.y22_c01112{bottom:838.080000px;}
.y23_c01112{bottom:839.520000px;}
.y19_c01112{bottom:879.840000px;}
.y1c_c01112{bottom:880.560000px;}
.y17_c01112{bottom:881.280000px;}
.y1a_c01112{bottom:882.000000px;}
.y18_c01112{bottom:882.720000px;}
.y1b_c01112{bottom:885.600000px;}
.y13_c01112{bottom:889.920000px;}
.y12_c01112{bottom:891.360000px;}
.y14_c01112{bottom:902.160000px;}
.y16_c01112{bottom:902.880000px;}
.y15_c01112{bottom:903.600000px;}
.yf_c01112{bottom:941.040000px;}
.yc_c01112{bottom:942.480000px;}
.ye_c01112{bottom:943.920000px;}
.y10_c01112{bottom:944.640000px;}
.yd_c01112{bottom:945.360000px;}
.y11_c01112{bottom:946.080000px;}
.ya_c01112{bottom:983.520000px;}
.y7_c01112{bottom:984.960000px;}
.yb_c01112{bottom:986.400000px;}
.y8_c01112{bottom:987.120000px;}
.y9_c01112{bottom:987.840000px;}
.y5_c01112{bottom:1020.960000px;}
.y2_c01112{bottom:1027.440000px;}
.y3_c01112{bottom:1028.160000px;}
.y6_c01112{bottom:1030.320000px;}
.y4_c01112{bottom:1031.040000px;}
.y1_c01112{bottom:1100.880000px;}
.h16_c01112{height:12.958594px;}
.h14_c01112{height:15.550313px;}
.h13_c01112{height:18.142031px;}
.h11_c01112{height:20.733750px;}
.h15_c01112{height:23.325469px;}
.h17_c01112{height:28.508906px;}
.h9_c01112{height:33.692344px;}
.hc_c01112{height:36.284062px;}
.hf_c01112{height:41.467500px;}
.he_c01112{height:44.059219px;}
.h5_c01112{height:46.650937px;}
.h10_c01112{height:49.242656px;}
.h7_c01112{height:51.834375px;}
.h3_c01112{height:54.426094px;}
.h4_c01112{height:57.017812px;}
.h8_c01112{height:59.609531px;}
.hb_c01112{height:62.201250px;}
.h2_c01112{height:64.792969px;}
.ha_c01112{height:67.384687px;}
.hd_c01112{height:69.976406px;}
.h12_c01112{height:72.568125px;}
.h6_c01112{height:85.526719px;}
.h0_c01112{height:1137.600000px;}
.h1_c01112{height:1137.750000px;}
.w1_c01112{width:768.750000px;}
.w0_c01112{width:768.960000px;}
.x0_c01112{left:0.000000px;}
.x42_c01112{left:65.520000px;}
.x2_c01112{left:66.960000px;}
.x24_c01112{left:86.400000px;}
.x29_c01112{left:87.840000px;}
.xf_c01112{left:99.360000px;}
.x3e_c01112{left:108.720000px;}
.x40_c01112{left:110.160000px;}
.x3f_c01112{left:118.800000px;}
.x2b_c01112{left:120.960000px;}
.x43_c01112{left:138.240000px;}
.x9_c01112{left:140.400000px;}
.x3_c01112{left:141.840000px;}
.x30_c01112{left:151.920000px;}
.x25_c01112{left:162.000000px;}
.x1a_c01112{left:163.440000px;}
.x26_c01112{left:184.320000px;}
.x10_c01112{left:193.680000px;}
.xa_c01112{left:195.120000px;}
.x34_c01112{left:204.480000px;}
.x4_c01112{left:226.800000px;}
.x1b_c01112{left:228.240000px;}
.xb_c01112{left:229.680000px;}
.x1c_c01112{left:248.400000px;}
.x11_c01112{left:270.000000px;}
.x1d_c01112{left:278.640000px;}
.x21_c01112{left:280.080000px;}
.x32_c01112{left:290.160000px;}
.x5_c01112{left:291.600000px;}
.x27_c01112{left:312.480000px;}
.x12_c01112{left:324.000000px;}
.x2e_c01112{left:333.360000px;}
.x2c_c01112{left:334.800000px;}
.x41_c01112{left:344.160000px;}
.x2a_c01112{left:356.400000px;}
.x2f_c01112{left:365.040000px;}
.x2d_c01112{left:366.480000px;}
.x13_c01112{left:378.000000px;}
.x16_c01112{left:388.080000px;}
.x31_c01112{left:429.840000px;}
.x6_c01112{left:431.280000px;}
.x14_c01112{left:442.080000px;}
.x15_c01112{left:496.800000px;}
.x1e_c01112{left:516.960000px;}
.x22_c01112{left:518.400000px;}
.x17_c01112{left:527.760000px;}
.x35_c01112{left:538.560000px;}
.xc_c01112{left:540.000000px;}
.x1f_c01112{left:549.360000px;}
.x18_c01112{left:560.880000px;}
.x39_c01112{left:570.240000px;}
.x23_c01112{left:571.680000px;}
.x3b_c01112{left:589.680000px;}
.x19_c01112{left:592.560000px;}
.x33_c01112{left:594.000000px;}
.x28_c01112{left:603.360000px;}
.xd_c01112{left:604.800000px;}
.x38_c01112{left:624.240000px;}
.x7_c01112{left:626.400000px;}
.x36_c01112{left:658.080000px;}
.x1_c01112{left:659.520000px;}
.x20_c01112{left:668.880000px;}
.x8_c01112{left:691.920000px;}
.x3d_c01112{left:699.120000px;}
.x3a_c01112{left:700.560000px;}
.xe_c01112{left:702.000000px;}
.x3c_c01112{left:720.720000px;}
.x37_c01112{left:722.160000px;}
@media print{
.v2_c01112{vertical-align:-2.560000pt;}
.v0_c01112{vertical-align:0.000000pt;}
.v1_c01112{vertical-align:10.240000pt;}
.ls0_c01112{letter-spacing:0.000000pt;}
.ws6_c01112{word-spacing:0.000000pt;}
.ws4_c01112{word-spacing:26.580019pt;}
.ws3_c01112{word-spacing:30.306066pt;}
.ws2_c01112{word-spacing:75.515121pt;}
.ws0_c01112{word-spacing:94.405120pt;}
.ws5_c01112{word-spacing:164.876800pt;}
.ws1_c01112{word-spacing:189.713080pt;}
.fs14_c01112{font-size:12.800000pt;}
.fs12_c01112{font-size:15.360000pt;}
.fs11_c01112{font-size:17.920000pt;}
.fsf_c01112{font-size:20.480000pt;}
.fs13_c01112{font-size:23.040000pt;}
.fs15_c01112{font-size:28.160000pt;}
.fs7_c01112{font-size:33.280000pt;}
.fsa_c01112{font-size:35.840000pt;}
.fsd_c01112{font-size:40.960000pt;}
.fsc_c01112{font-size:43.520000pt;}
.fs3_c01112{font-size:46.080000pt;}
.fse_c01112{font-size:48.640000pt;}
.fs5_c01112{font-size:51.200000pt;}
.fs1_c01112{font-size:53.760000pt;}
.fs2_c01112{font-size:56.320000pt;}
.fs6_c01112{font-size:58.880000pt;}
.fs9_c01112{font-size:61.440000pt;}
.fs0_c01112{font-size:64.000000pt;}
.fs8_c01112{font-size:66.560000pt;}
.fsb_c01112{font-size:69.120000pt;}
.fs10_c01112{font-size:71.680000pt;}
.fs4_c01112{font-size:84.480000pt;}
.y0_c01112{bottom:0.000000pt;}
.y83_c01112{bottom:48.000000pt;}
.y82_c01112{bottom:48.640000pt;}
.y84_c01112{bottom:49.280000pt;}
.y81_c01112{bottom:49.920000pt;}
.y80_c01112{bottom:50.560000pt;}
.y93_c01112{bottom:51.200000pt;}
.y92_c01112{bottom:55.040000pt;}
.y7e_c01112{bottom:86.400000pt;}
.y7f_c01112{bottom:87.040000pt;}
.y7d_c01112{bottom:87.680000pt;}
.y91_c01112{bottom:88.960000pt;}
.y7c_c01112{bottom:89.600000pt;}
.y90_c01112{bottom:91.520000pt;}
.y7a_c01112{bottom:125.440000pt;}
.y7b_c01112{bottom:126.080000pt;}
.y8f_c01112{bottom:127.360000pt;}
.y79_c01112{bottom:128.000000pt;}
.y8e_c01112{bottom:129.920000pt;}
.y77_c01112{bottom:163.840000pt;}
.y76_c01112{bottom:164.480000pt;}
.y78_c01112{bottom:165.120000pt;}
.y75_c01112{bottom:166.400000pt;}
.y8d_c01112{bottom:167.680000pt;}
.y74_c01112{bottom:201.600000pt;}
.y73_c01112{bottom:202.240000pt;}
.y8c_c01112{bottom:202.880000pt;}
.y72_c01112{bottom:204.800000pt;}
.y8b_c01112{bottom:208.000000pt;}
.y71_c01112{bottom:239.360000pt;}
.y70_c01112{bottom:240.000000pt;}
.y8a_c01112{bottom:241.280000pt;}
.y6f_c01112{bottom:241.920000pt;}
.y88_c01112{bottom:242.560000pt;}
.y89_c01112{bottom:243.840000pt;}
.y6e_c01112{bottom:277.760000pt;}
.y87_c01112{bottom:278.400000pt;}
.y6d_c01112{bottom:279.040000pt;}
.y6c_c01112{bottom:280.320000pt;}
.y86_c01112{bottom:315.520000pt;}
.y6b_c01112{bottom:316.160000pt;}
.y6a_c01112{bottom:316.800000pt;}
.y69_c01112{bottom:318.080000pt;}
.y85_c01112{bottom:322.560000pt;}
.y62_c01112{bottom:353.280000pt;}
.y68_c01112{bottom:355.200000pt;}
.y60_c01112{bottom:355.840000pt;}
.y61_c01112{bottom:356.480000pt;}
.y5f_c01112{bottom:391.040000pt;}
.y65_c01112{bottom:391.680000pt;}
.y66_c01112{bottom:392.960000pt;}
.y5d_c01112{bottom:393.600000pt;}
.y67_c01112{bottom:394.240000pt;}
.y5e_c01112{bottom:394.880000pt;}
.y5c_c01112{bottom:428.800000pt;}
.y63_c01112{bottom:430.720000pt;}
.y64_c01112{bottom:431.360000pt;}
.y59_c01112{bottom:432.000000pt;}
.y5b_c01112{bottom:432.640000pt;}
.y5a_c01112{bottom:433.280000pt;}
.y57_c01112{bottom:525.440000pt;}
.y58_c01112{bottom:526.080000pt;}
.y56_c01112{bottom:526.720000pt;}
.y55_c01112{bottom:528.000000pt;}
.y54_c01112{bottom:544.640000pt;}
.y52_c01112{bottom:545.280000pt;}
.y51_c01112{bottom:545.920000pt;}
.y50_c01112{bottom:546.560000pt;}
.y53_c01112{bottom:547.200000pt;}
.y4f_c01112{bottom:563.840000pt;}
.y4c_c01112{bottom:565.120000pt;}
.y4e_c01112{bottom:565.760000pt;}
.y4d_c01112{bottom:566.400000pt;}
.y47_c01112{bottom:574.080000pt;}
.y46_c01112{bottom:575.360000pt;}
.y48_c01112{bottom:576.000000pt;}
.y4b_c01112{bottom:577.280000pt;}
.y4a_c01112{bottom:583.040000pt;}
.y49_c01112{bottom:583.680000pt;}
.y43_c01112{bottom:601.600000pt;}
.y42_c01112{bottom:602.240000pt;}
.y45_c01112{bottom:602.880000pt;}
.y44_c01112{bottom:604.800000pt;}
.y40_c01112{bottom:621.440000pt;}
.y41_c01112{bottom:622.080000pt;}
.y3b_c01112{bottom:631.680000pt;}
.y3a_c01112{bottom:632.960000pt;}
.y3d_c01112{bottom:640.000000pt;}
.y3e_c01112{bottom:640.640000pt;}
.y3f_c01112{bottom:641.920000pt;}
.y3c_c01112{bottom:642.560000pt;}
.y38_c01112{bottom:658.560000pt;}
.y34_c01112{bottom:659.200000pt;}
.y37_c01112{bottom:659.840000pt;}
.y35_c01112{bottom:660.480000pt;}
.y36_c01112{bottom:661.120000pt;}
.y39_c01112{bottom:661.760000pt;}
.y33_c01112{bottom:678.400000pt;}
.y2e_c01112{bottom:684.800000pt;}
.y2d_c01112{bottom:686.720000pt;}
.y2b_c01112{bottom:688.640000pt;}
.y2c_c01112{bottom:689.280000pt;}
.y2a_c01112{bottom:689.920000pt;}
.y2f_c01112{bottom:697.600000pt;}
.y32_c01112{bottom:698.240000pt;}
.y30_c01112{bottom:698.880000pt;}
.y31_c01112{bottom:699.520000pt;}
.y28_c01112{bottom:716.160000pt;}
.y29_c01112{bottom:716.800000pt;}
.y27_c01112{bottom:726.400000pt;}
.y26_c01112{bottom:727.040000pt;}
.y20_c01112{bottom:733.440000pt;}
.y1f_c01112{bottom:734.720000pt;}
.y21_c01112{bottom:735.360000pt;}
.y1e_c01112{bottom:736.000000pt;}
.y1d_c01112{bottom:736.640000pt;}
.y25_c01112{bottom:737.920000pt;}
.y24_c01112{bottom:741.760000pt;}
.y22_c01112{bottom:744.960000pt;}
.y23_c01112{bottom:746.240000pt;}
.y19_c01112{bottom:782.080000pt;}
.y1c_c01112{bottom:782.720000pt;}
.y17_c01112{bottom:783.360000pt;}
.y1a_c01112{bottom:784.000000pt;}
.y18_c01112{bottom:784.640000pt;}
.y1b_c01112{bottom:787.200000pt;}
.y13_c01112{bottom:791.040000pt;}
.y12_c01112{bottom:792.320000pt;}
.y14_c01112{bottom:801.920000pt;}
.y16_c01112{bottom:802.560000pt;}
.y15_c01112{bottom:803.200000pt;}
.yf_c01112{bottom:836.480000pt;}
.yc_c01112{bottom:837.760000pt;}
.ye_c01112{bottom:839.040000pt;}
.y10_c01112{bottom:839.680000pt;}
.yd_c01112{bottom:840.320000pt;}
.y11_c01112{bottom:840.960000pt;}
.ya_c01112{bottom:874.240000pt;}
.y7_c01112{bottom:875.520000pt;}
.yb_c01112{bottom:876.800000pt;}
.y8_c01112{bottom:877.440000pt;}
.y9_c01112{bottom:878.080000pt;}
.y5_c01112{bottom:907.520000pt;}
.y2_c01112{bottom:913.280000pt;}
.y3_c01112{bottom:913.920000pt;}
.y6_c01112{bottom:915.840000pt;}
.y4_c01112{bottom:916.480000pt;}
.y1_c01112{bottom:978.560000pt;}
.h16_c01112{height:11.518750pt;}
.h14_c01112{height:13.822500pt;}
.h13_c01112{height:16.126250pt;}
.h11_c01112{height:18.430000pt;}
.h15_c01112{height:20.733750pt;}
.h17_c01112{height:25.341250pt;}
.h9_c01112{height:29.948750pt;}
.hc_c01112{height:32.252500pt;}
.hf_c01112{height:36.860000pt;}
.he_c01112{height:39.163750pt;}
.h5_c01112{height:41.467500pt;}
.h10_c01112{height:43.771250pt;}
.h7_c01112{height:46.075000pt;}
.h3_c01112{height:48.378750pt;}
.h4_c01112{height:50.682500pt;}
.h8_c01112{height:52.986250pt;}
.hb_c01112{height:55.290000pt;}
.h2_c01112{height:57.593750pt;}
.ha_c01112{height:59.897500pt;}
.hd_c01112{height:62.201250pt;}
.h12_c01112{height:64.505000pt;}
.h6_c01112{height:76.023750pt;}
.h0_c01112{height:1011.200000pt;}
.h1_c01112{height:1011.333333pt;}
.w1_c01112{width:683.333333pt;}
.w0_c01112{width:683.520000pt;}
.x0_c01112{left:0.000000pt;}
.x42_c01112{left:58.240000pt;}
.x2_c01112{left:59.520000pt;}
.x24_c01112{left:76.800000pt;}
.x29_c01112{left:78.080000pt;}
.xf_c01112{left:88.320000pt;}
.x3e_c01112{left:96.640000pt;}
.x40_c01112{left:97.920000pt;}
.x3f_c01112{left:105.600000pt;}
.x2b_c01112{left:107.520000pt;}
.x43_c01112{left:122.880000pt;}
.x9_c01112{left:124.800000pt;}
.x3_c01112{left:126.080000pt;}
.x30_c01112{left:135.040000pt;}
.x25_c01112{left:144.000000pt;}
.x1a_c01112{left:145.280000pt;}
.x26_c01112{left:163.840000pt;}
.x10_c01112{left:172.160000pt;}
.xa_c01112{left:173.440000pt;}
.x34_c01112{left:181.760000pt;}
.x4_c01112{left:201.600000pt;}
.x1b_c01112{left:202.880000pt;}
.xb_c01112{left:204.160000pt;}
.x1c_c01112{left:220.800000pt;}
.x11_c01112{left:240.000000pt;}
.x1d_c01112{left:247.680000pt;}
.x21_c01112{left:248.960000pt;}
.x32_c01112{left:257.920000pt;}
.x5_c01112{left:259.200000pt;}
.x27_c01112{left:277.760000pt;}
.x12_c01112{left:288.000000pt;}
.x2e_c01112{left:296.320000pt;}
.x2c_c01112{left:297.600000pt;}
.x41_c01112{left:305.920000pt;}
.x2a_c01112{left:316.800000pt;}
.x2f_c01112{left:324.480000pt;}
.x2d_c01112{left:325.760000pt;}
.x13_c01112{left:336.000000pt;}
.x16_c01112{left:344.960000pt;}
.x31_c01112{left:382.080000pt;}
.x6_c01112{left:383.360000pt;}
.x14_c01112{left:392.960000pt;}
.x15_c01112{left:441.600000pt;}
.x1e_c01112{left:459.520000pt;}
.x22_c01112{left:460.800000pt;}
.x17_c01112{left:469.120000pt;}
.x35_c01112{left:478.720000pt;}
.xc_c01112{left:480.000000pt;}
.x1f_c01112{left:488.320000pt;}
.x18_c01112{left:498.560000pt;}
.x39_c01112{left:506.880000pt;}
.x23_c01112{left:508.160000pt;}
.x3b_c01112{left:524.160000pt;}
.x19_c01112{left:526.720000pt;}
.x33_c01112{left:528.000000pt;}
.x28_c01112{left:536.320000pt;}
.xd_c01112{left:537.600000pt;}
.x38_c01112{left:554.880000pt;}
.x7_c01112{left:556.800000pt;}
.x36_c01112{left:584.960000pt;}
.x1_c01112{left:586.240000pt;}
.x20_c01112{left:594.560000pt;}
.x8_c01112{left:615.040000pt;}
.x3d_c01112{left:621.440000pt;}
.x3a_c01112{left:622.720000pt;}
.xe_c01112{left:624.000000pt;}
.x3c_c01112{left:640.640000pt;}
.x37_c01112{left:641.920000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6262f37fc272e3eef2df5452.woff2')format("woff");}.ff1_c01113{font-family:ff1_c01113;line-height:1.109863;font-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_c01113{transform:matrix(0.217825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217825,0.000000,0.000000,0.250000,0,0);}
.m2_c01113{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m3f_c01113{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);}
.m2b_c01113{transform:matrix(0.227300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227300,0.000000,0.000000,0.250000,0,0);}
.m23_c01113{transform:matrix(0.229475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229475,0.000000,0.000000,0.250000,0,0);}
.m31_c01113{transform:matrix(0.229900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229900,0.000000,0.000000,0.250000,0,0);}
.m40_c01113{transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);}
.m49_c01113{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m20_c01113{transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);}
.m44_c01113{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m2e_c01113{transform:matrix(0.237875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237875,0.000000,0.000000,0.250000,0,0);}
.m33_c01113{transform:matrix(0.243575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243575,0.000000,0.000000,0.250000,0,0);}
.m32_c01113{transform:matrix(0.247275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247275,0.000000,0.000000,0.250000,0,0);}
.m27_c01113{transform:matrix(0.247600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247600,0.000000,0.000000,0.250000,0,0);}
.m13_c01113{transform:matrix(0.248650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248650,0.000000,0.000000,0.250000,0,0);}
.m34_c01113{transform:matrix(0.249225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249225,0.000000,0.000000,0.250000,0,0);}
.m36_c01113{transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);}
.m5_c01113{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_c01113{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);}
.m2c_c01113{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01113{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_c01113{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m6_c01113{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m3_c01113{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);}
.m39_c01113{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m1_c01113{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m21_c01113{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m24_c01113{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01113{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m7_c01113{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m14_c01113{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);}
.m29_c01113{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m38_c01113{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m17_c01113{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mc_c01113{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01113{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.me_c01113{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m42_c01113{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01113{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m47_c01113{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m45_c01113{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m48_c01113{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01113{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01113{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m4_c01113{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);}
.m43_c01113{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m19_c01113{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);}
.m4c_c01113{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);}
.m35_c01113{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);}
.m30_c01113{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_c01113{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01113{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);}
.m4b_c01113{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);}
.m2a_c01113{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m15_c01113{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);}
.m37_c01113{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.mf_c01113{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);}
.m28_c01113{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);}
.m26_c01113{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);}
.m8_c01113{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);}
.m12_c01113{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m0_c01113{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);}
.m1e_c01113{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);}
.m2f_c01113{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.mb_c01113{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01113{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m41_c01113{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m10_c01113{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01113{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m25_c01113{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.md_c01113{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.ma_c01113{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01113{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m46_c01113{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01113{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01113{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01113{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.v1_c01113{vertical-align:-8.640000px;}
.v2_c01113{vertical-align:-2.880000px;}
.v0_c01113{vertical-align:0.000000px;}
.v3_c01113{vertical-align:8.640000px;}
.ls1_c01113{letter-spacing:0.000000px;}
.ls0_c01113{letter-spacing:47.893680px;}
.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;}
}
.ws5_c01113{word-spacing:0.000000px;}
.ws0_c01113{word-spacing:2.483040px;}
.ws4_c01113{word-spacing:10.937051px;}
.ws2_c01113{word-spacing:11.693143px;}
.ws1_c01113{word-spacing:14.393376px;}
.ws3_c01113{word-spacing:18.060000px;}
.fc0_c01113{color:transparent;}
.fsd_c01113{font-size:34.560000px;}
.fs7_c01113{font-size:40.320000px;}
.fs9_c01113{font-size:43.200000px;}
.fsf_c01113{font-size:46.080000px;}
.fs5_c01113{font-size:48.960000px;}
.fs2_c01113{font-size:51.840000px;}
.fs0_c01113{font-size:54.720000px;}
.fs3_c01113{font-size:57.600000px;}
.fsc_c01113{font-size:60.480000px;}
.fs8_c01113{font-size:63.360000px;}
.fs4_c01113{font-size:66.240000px;}
.fsa_c01113{font-size:69.120000px;}
.fsb_c01113{font-size:72.000000px;}
.fs6_c01113{font-size:74.880000px;}
.fs1_c01113{font-size:77.760000px;}
.fse_c01113{font-size:80.640000px;}
.y0_c01113{bottom:0.000000px;}
.y4e_c01113{bottom:66.960000px;}
.y4c_c01113{bottom:68.400000px;}
.y4d_c01113{bottom:69.120000px;}
.y4b_c01113{bottom:99.360000px;}
.y49_c01113{bottom:100.800000px;}
.y4a_c01113{bottom:101.520000px;}
.y82_c01113{bottom:102.240000px;}
.y81_c01113{bottom:102.960000px;}
.y48_c01113{bottom:103.680000px;}
.y47_c01113{bottom:142.560000px;}
.y7e_c01113{bottom:143.280000px;}
.y7f_c01113{bottom:144.000000px;}
.y80_c01113{bottom:145.440000px;}
.y46_c01113{bottom:146.160000px;}
.y45_c01113{bottom:185.760000px;}
.y7d_c01113{bottom:187.200000px;}
.y7c_c01113{bottom:187.920000px;}
.y44_c01113{bottom:188.640000px;}
.y7b_c01113{bottom:228.240000px;}
.y43_c01113{bottom:228.960000px;}
.y42_c01113{bottom:229.680000px;}
.y7a_c01113{bottom:230.400000px;}
.y41_c01113{bottom:270.000000px;}
.y40_c01113{bottom:270.720000px;}
.y79_c01113{bottom:272.160000px;}
.y3f_c01113{bottom:272.880000px;}
.y78_c01113{bottom:312.480000px;}
.y3d_c01113{bottom:313.200000px;}
.y3e_c01113{bottom:314.640000px;}
.y3c_c01113{bottom:315.360000px;}
.y76_c01113{bottom:316.080000px;}
.y77_c01113{bottom:316.800000px;}
.y3b_c01113{bottom:355.680000px;}
.y75_c01113{bottom:356.400000px;}
.y3a_c01113{bottom:357.120000px;}
.y74_c01113{bottom:358.560000px;}
.y38_c01113{bottom:398.160000px;}
.y37_c01113{bottom:399.600000px;}
.y72_c01113{bottom:400.320000px;}
.y39_c01113{bottom:401.040000px;}
.y73_c01113{bottom:401.760000px;}
.y34_c01113{bottom:439.920000px;}
.y36_c01113{bottom:440.640000px;}
.y70_c01113{bottom:442.080000px;}
.y33_c01113{bottom:442.800000px;}
.y71_c01113{bottom:443.520000px;}
.y35_c01113{bottom:444.240000px;}
.y30_c01113{bottom:483.840000px;}
.y32_c01113{bottom:485.280000px;}
.y2f_c01113{bottom:486.000000px;}
.y6e_c01113{bottom:486.720000px;}
.y31_c01113{bottom:487.440000px;}
.y6f_c01113{bottom:488.160000px;}
.y2c_c01113{bottom:526.320000px;}
.y2e_c01113{bottom:527.040000px;}
.y2b_c01113{bottom:528.480000px;}
.y2d_c01113{bottom:529.200000px;}
.y6d_c01113{bottom:529.920000px;}
.y29_c01113{bottom:569.520000px;}
.y2a_c01113{bottom:570.240000px;}
.y28_c01113{bottom:570.960000px;}
.y6a_c01113{bottom:572.400000px;}
.y6c_c01113{bottom:573.840000px;}
.y6b_c01113{bottom:574.560000px;}
.y25_c01113{bottom:612.000000px;}
.y27_c01113{bottom:612.720000px;}
.y26_c01113{bottom:613.440000px;}
.y24_c01113{bottom:614.160000px;}
.y67_c01113{bottom:614.880000px;}
.y69_c01113{bottom:615.600000px;}
.y68_c01113{bottom:616.320000px;}
.y22_c01113{bottom:654.480000px;}
.y23_c01113{bottom:655.200000px;}
.y21_c01113{bottom:656.640000px;}
.y63_c01113{bottom:658.080000px;}
.y64_c01113{bottom:658.800000px;}
.y66_c01113{bottom:659.520000px;}
.y65_c01113{bottom:660.240000px;}
.y1d_c01113{bottom:697.680000px;}
.y20_c01113{bottom:698.400000px;}
.y1c_c01113{bottom:699.120000px;}
.y61_c01113{bottom:699.840000px;}
.y62_c01113{bottom:700.560000px;}
.y1e_c01113{bottom:701.280000px;}
.y1f_c01113{bottom:702.000000px;}
.y18_c01113{bottom:739.440000px;}
.y17_c01113{bottom:740.880000px;}
.y19_c01113{bottom:742.320000px;}
.y5f_c01113{bottom:743.040000px;}
.y60_c01113{bottom:743.760000px;}
.y1a_c01113{bottom:744.480000px;}
.y1b_c01113{bottom:745.200000px;}
.y16_c01113{bottom:781.920000px;}
.y15_c01113{bottom:783.360000px;}
.y5d_c01113{bottom:785.520000px;}
.y5b_c01113{bottom:786.240000px;}
.y5c_c01113{bottom:786.960000px;}
.y5e_c01113{bottom:788.400000px;}
.y13_c01113{bottom:825.120000px;}
.y14_c01113{bottom:825.840000px;}
.y12_c01113{bottom:826.560000px;}
.y59_c01113{bottom:827.280000px;}
.y58_c01113{bottom:828.720000px;}
.y5a_c01113{bottom:829.440000px;}
.y11_c01113{bottom:867.600000px;}
.y10_c01113{bottom:868.320000px;}
.y55_c01113{bottom:871.200000px;}
.y56_c01113{bottom:871.920000px;}
.y57_c01113{bottom:874.800000px;}
.yf_c01113{bottom:911.520000px;}
.ye_c01113{bottom:912.960000px;}
.ya_c01113{bottom:941.760000px;}
.y9_c01113{bottom:943.200000px;}
.yc_c01113{bottom:944.640000px;}
.yb_c01113{bottom:946.080000px;}
.yd_c01113{bottom:946.800000px;}
.y54_c01113{bottom:947.520000px;}
.y6_c01113{bottom:984.240000px;}
.y5_c01113{bottom:985.680000px;}
.y8_c01113{bottom:990.000000px;}
.y52_c01113{bottom:990.720000px;}
.y7_c01113{bottom:991.440000px;}
.y53_c01113{bottom:992.880000px;}
.y2_c01113{bottom:1027.440000px;}
.y1_c01113{bottom:1028.880000px;}
.y4_c01113{bottom:1032.480000px;}
.y50_c01113{bottom:1033.200000px;}
.y3_c01113{bottom:1034.640000px;}
.y51_c01113{bottom:1036.080000px;}
.y4f_c01113{bottom:1085.040000px;}
.hf_c01113{height:31.100625px;}
.h9_c01113{height:36.284062px;}
.hb_c01113{height:38.875781px;}
.h11_c01113{height:41.467500px;}
.h7_c01113{height:44.059219px;}
.h4_c01113{height:46.650937px;}
.h2_c01113{height:49.242656px;}
.h5_c01113{height:51.834375px;}
.he_c01113{height:54.426094px;}
.ha_c01113{height:57.017812px;}
.h12_c01113{height:58.744687px;}
.h6_c01113{height:59.609531px;}
.h13_c01113{height:60.474375px;}
.hc_c01113{height:62.201250px;}
.hd_c01113{height:64.792969px;}
.h8_c01113{height:67.384687px;}
.h3_c01113{height:69.976406px;}
.h10_c01113{height:72.568125px;}
.h0_c01113{height:1141.920000px;}
.h1_c01113{height:1142.250000px;}
.w0_c01113{width:775.440000px;}
.w1_c01113{width:775.500000px;}
.x0_c01113{left:0.000000px;}
.x1_c01113{left:64.800000px;}
.x15_c01113{left:66.240000px;}
.x1c_c01113{left:131.760000px;}
.x2_c01113{left:138.240000px;}
.x13_c01113{left:139.680000px;}
.xa_c01113{left:181.440000px;}
.x5_c01113{left:224.640000px;}
.x12_c01113{left:226.080000px;}
.xb_c01113{left:234.000000px;}
.x16_c01113{left:236.880000px;}
.x18_c01113{left:248.400000px;}
.xc_c01113{left:267.840000px;}
.x6_c01113{left:278.640000px;}
.x17_c01113{left:311.040000px;}
.x19_c01113{left:312.480000px;}
.x7_c01113{left:320.400000px;}
.x11_c01113{left:353.520000px;}
.xd_c01113{left:375.120000px;}
.x14_c01113{left:408.240000px;}
.xe_c01113{left:427.680000px;}
.x10_c01113{left:429.120000px;}
.x1a_c01113{left:441.360000px;}
.x8_c01113{left:461.520000px;}
.xf_c01113{left:473.040000px;}
.x1b_c01113{left:494.640000px;}
.x9_c01113{left:537.840000px;}
.x25_c01113{left:539.280000px;}
.x22_c01113{left:547.200000px;}
.x3_c01113{left:548.640000px;}
.x4_c01113{left:570.240000px;}
.x27_c01113{left:571.680000px;}
.x23_c01113{left:590.400000px;}
.x26_c01113{left:591.840000px;}
.x24_c01113{left:602.640000px;}
.x1e_c01113{left:624.240000px;}
.x28_c01113{left:625.680000px;}
.x1f_c01113{left:657.360000px;}
.x2a_c01113{left:658.800000px;}
.x1d_c01113{left:685.440000px;}
.x29_c01113{left:691.200000px;}
.x20_c01113{left:700.560000px;}
.x21_c01113{left:721.440000px;}
@media print{
.v1_c01113{vertical-align:-7.680000pt;}
.v2_c01113{vertical-align:-2.560000pt;}
.v0_c01113{vertical-align:0.000000pt;}
.v3_c01113{vertical-align:7.680000pt;}
.ls1_c01113{letter-spacing:0.000000pt;}
.ls0_c01113{letter-spacing:42.572160pt;}
.ws5_c01113{word-spacing:0.000000pt;}
.ws0_c01113{word-spacing:2.207147pt;}
.ws4_c01113{word-spacing:9.721823pt;}
.ws2_c01113{word-spacing:10.393905pt;}
.ws1_c01113{word-spacing:12.794112pt;}
.ws3_c01113{word-spacing:16.053333pt;}
.fsd_c01113{font-size:30.720000pt;}
.fs7_c01113{font-size:35.840000pt;}
.fs9_c01113{font-size:38.400000pt;}
.fsf_c01113{font-size:40.960000pt;}
.fs5_c01113{font-size:43.520000pt;}
.fs2_c01113{font-size:46.080000pt;}
.fs0_c01113{font-size:48.640000pt;}
.fs3_c01113{font-size:51.200000pt;}
.fsc_c01113{font-size:53.760000pt;}
.fs8_c01113{font-size:56.320000pt;}
.fs4_c01113{font-size:58.880000pt;}
.fsa_c01113{font-size:61.440000pt;}
.fsb_c01113{font-size:64.000000pt;}
.fs6_c01113{font-size:66.560000pt;}
.fs1_c01113{font-size:69.120000pt;}
.fse_c01113{font-size:71.680000pt;}
.y0_c01113{bottom:0.000000pt;}
.y4e_c01113{bottom:59.520000pt;}
.y4c_c01113{bottom:60.800000pt;}
.y4d_c01113{bottom:61.440000pt;}
.y4b_c01113{bottom:88.320000pt;}
.y49_c01113{bottom:89.600000pt;}
.y4a_c01113{bottom:90.240000pt;}
.y82_c01113{bottom:90.880000pt;}
.y81_c01113{bottom:91.520000pt;}
.y48_c01113{bottom:92.160000pt;}
.y47_c01113{bottom:126.720000pt;}
.y7e_c01113{bottom:127.360000pt;}
.y7f_c01113{bottom:128.000000pt;}
.y80_c01113{bottom:129.280000pt;}
.y46_c01113{bottom:129.920000pt;}
.y45_c01113{bottom:165.120000pt;}
.y7d_c01113{bottom:166.400000pt;}
.y7c_c01113{bottom:167.040000pt;}
.y44_c01113{bottom:167.680000pt;}
.y7b_c01113{bottom:202.880000pt;}
.y43_c01113{bottom:203.520000pt;}
.y42_c01113{bottom:204.160000pt;}
.y7a_c01113{bottom:204.800000pt;}
.y41_c01113{bottom:240.000000pt;}
.y40_c01113{bottom:240.640000pt;}
.y79_c01113{bottom:241.920000pt;}
.y3f_c01113{bottom:242.560000pt;}
.y78_c01113{bottom:277.760000pt;}
.y3d_c01113{bottom:278.400000pt;}
.y3e_c01113{bottom:279.680000pt;}
.y3c_c01113{bottom:280.320000pt;}
.y76_c01113{bottom:280.960000pt;}
.y77_c01113{bottom:281.600000pt;}
.y3b_c01113{bottom:316.160000pt;}
.y75_c01113{bottom:316.800000pt;}
.y3a_c01113{bottom:317.440000pt;}
.y74_c01113{bottom:318.720000pt;}
.y38_c01113{bottom:353.920000pt;}
.y37_c01113{bottom:355.200000pt;}
.y72_c01113{bottom:355.840000pt;}
.y39_c01113{bottom:356.480000pt;}
.y73_c01113{bottom:357.120000pt;}
.y34_c01113{bottom:391.040000pt;}
.y36_c01113{bottom:391.680000pt;}
.y70_c01113{bottom:392.960000pt;}
.y33_c01113{bottom:393.600000pt;}
.y71_c01113{bottom:394.240000pt;}
.y35_c01113{bottom:394.880000pt;}
.y30_c01113{bottom:430.080000pt;}
.y32_c01113{bottom:431.360000pt;}
.y2f_c01113{bottom:432.000000pt;}
.y6e_c01113{bottom:432.640000pt;}
.y31_c01113{bottom:433.280000pt;}
.y6f_c01113{bottom:433.920000pt;}
.y2c_c01113{bottom:467.840000pt;}
.y2e_c01113{bottom:468.480000pt;}
.y2b_c01113{bottom:469.760000pt;}
.y2d_c01113{bottom:470.400000pt;}
.y6d_c01113{bottom:471.040000pt;}
.y29_c01113{bottom:506.240000pt;}
.y2a_c01113{bottom:506.880000pt;}
.y28_c01113{bottom:507.520000pt;}
.y6a_c01113{bottom:508.800000pt;}
.y6c_c01113{bottom:510.080000pt;}
.y6b_c01113{bottom:510.720000pt;}
.y25_c01113{bottom:544.000000pt;}
.y27_c01113{bottom:544.640000pt;}
.y26_c01113{bottom:545.280000pt;}
.y24_c01113{bottom:545.920000pt;}
.y67_c01113{bottom:546.560000pt;}
.y69_c01113{bottom:547.200000pt;}
.y68_c01113{bottom:547.840000pt;}
.y22_c01113{bottom:581.760000pt;}
.y23_c01113{bottom:582.400000pt;}
.y21_c01113{bottom:583.680000pt;}
.y63_c01113{bottom:584.960000pt;}
.y64_c01113{bottom:585.600000pt;}
.y66_c01113{bottom:586.240000pt;}
.y65_c01113{bottom:586.880000pt;}
.y1d_c01113{bottom:620.160000pt;}
.y20_c01113{bottom:620.800000pt;}
.y1c_c01113{bottom:621.440000pt;}
.y61_c01113{bottom:622.080000pt;}
.y62_c01113{bottom:622.720000pt;}
.y1e_c01113{bottom:623.360000pt;}
.y1f_c01113{bottom:624.000000pt;}
.y18_c01113{bottom:657.280000pt;}
.y17_c01113{bottom:658.560000pt;}
.y19_c01113{bottom:659.840000pt;}
.y5f_c01113{bottom:660.480000pt;}
.y60_c01113{bottom:661.120000pt;}
.y1a_c01113{bottom:661.760000pt;}
.y1b_c01113{bottom:662.400000pt;}
.y16_c01113{bottom:695.040000pt;}
.y15_c01113{bottom:696.320000pt;}
.y5d_c01113{bottom:698.240000pt;}
.y5b_c01113{bottom:698.880000pt;}
.y5c_c01113{bottom:699.520000pt;}
.y5e_c01113{bottom:700.800000pt;}
.y13_c01113{bottom:733.440000pt;}
.y14_c01113{bottom:734.080000pt;}
.y12_c01113{bottom:734.720000pt;}
.y59_c01113{bottom:735.360000pt;}
.y58_c01113{bottom:736.640000pt;}
.y5a_c01113{bottom:737.280000pt;}
.y11_c01113{bottom:771.200000pt;}
.y10_c01113{bottom:771.840000pt;}
.y55_c01113{bottom:774.400000pt;}
.y56_c01113{bottom:775.040000pt;}
.y57_c01113{bottom:777.600000pt;}
.yf_c01113{bottom:810.240000pt;}
.ye_c01113{bottom:811.520000pt;}
.ya_c01113{bottom:837.120000pt;}
.y9_c01113{bottom:838.400000pt;}
.yc_c01113{bottom:839.680000pt;}
.yb_c01113{bottom:840.960000pt;}
.yd_c01113{bottom:841.600000pt;}
.y54_c01113{bottom:842.240000pt;}
.y6_c01113{bottom:874.880000pt;}
.y5_c01113{bottom:876.160000pt;}
.y8_c01113{bottom:880.000000pt;}
.y52_c01113{bottom:880.640000pt;}
.y7_c01113{bottom:881.280000pt;}
.y53_c01113{bottom:882.560000pt;}
.y2_c01113{bottom:913.280000pt;}
.y1_c01113{bottom:914.560000pt;}
.y4_c01113{bottom:917.760000pt;}
.y50_c01113{bottom:918.400000pt;}
.y3_c01113{bottom:919.680000pt;}
.y51_c01113{bottom:920.960000pt;}
.y4f_c01113{bottom:964.480000pt;}
.hf_c01113{height:27.645000pt;}
.h9_c01113{height:32.252500pt;}
.hb_c01113{height:34.556250pt;}
.h11_c01113{height:36.860000pt;}
.h7_c01113{height:39.163750pt;}
.h4_c01113{height:41.467500pt;}
.h2_c01113{height:43.771250pt;}
.h5_c01113{height:46.075000pt;}
.he_c01113{height:48.378750pt;}
.ha_c01113{height:50.682500pt;}
.h12_c01113{height:52.217500pt;}
.h6_c01113{height:52.986250pt;}
.h13_c01113{height:53.755000pt;}
.hc_c01113{height:55.290000pt;}
.hd_c01113{height:57.593750pt;}
.h8_c01113{height:59.897500pt;}
.h3_c01113{height:62.201250pt;}
.h10_c01113{height:64.505000pt;}
.h0_c01113{height:1015.040000pt;}
.h1_c01113{height:1015.333333pt;}
.w0_c01113{width:689.280000pt;}
.w1_c01113{width:689.333333pt;}
.x0_c01113{left:0.000000pt;}
.x1_c01113{left:57.600000pt;}
.x15_c01113{left:58.880000pt;}
.x1c_c01113{left:117.120000pt;}
.x2_c01113{left:122.880000pt;}
.x13_c01113{left:124.160000pt;}
.xa_c01113{left:161.280000pt;}
.x5_c01113{left:199.680000pt;}
.x12_c01113{left:200.960000pt;}
.xb_c01113{left:208.000000pt;}
.x16_c01113{left:210.560000pt;}
.x18_c01113{left:220.800000pt;}
.xc_c01113{left:238.080000pt;}
.x6_c01113{left:247.680000pt;}
.x17_c01113{left:276.480000pt;}
.x19_c01113{left:277.760000pt;}
.x7_c01113{left:284.800000pt;}
.x11_c01113{left:314.240000pt;}
.xd_c01113{left:333.440000pt;}
.x14_c01113{left:362.880000pt;}
.xe_c01113{left:380.160000pt;}
.x10_c01113{left:381.440000pt;}
.x1a_c01113{left:392.320000pt;}
.x8_c01113{left:410.240000pt;}
.xf_c01113{left:420.480000pt;}
.x1b_c01113{left:439.680000pt;}
.x9_c01113{left:478.080000pt;}
.x25_c01113{left:479.360000pt;}
.x22_c01113{left:486.400000pt;}
.x3_c01113{left:487.680000pt;}
.x4_c01113{left:506.880000pt;}
.x27_c01113{left:508.160000pt;}
.x23_c01113{left:524.800000pt;}
.x26_c01113{left:526.080000pt;}
.x24_c01113{left:535.680000pt;}
.x1e_c01113{left:554.880000pt;}
.x28_c01113{left:556.160000pt;}
.x1f_c01113{left:584.320000pt;}
.x2a_c01113{left:585.600000pt;}
.x1d_c01113{left:609.280000pt;}
.x29_c01113{left:614.400000pt;}
.x20_c01113{left:622.720000pt;}
.x21_c01113{left:641.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_cbf386e253fe007e61c1abf2.woff2')format("woff");}.ff1_c01114{font-family:ff1_c01114;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3e_c01114{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m25_c01114{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);}
.m36_c01114{transform:matrix(0.229725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229725,0.000000,0.000000,0.250000,0,0);}
.m7_c01114{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m45_c01114{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m4_c01114{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m19_c01114{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m9_c01114{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m11_c01114{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_c01114{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);}
.m2d_c01114{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_c01114{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mf_c01114{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m2_c01114{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m18_c01114{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.ma_c01114{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mb_c01114{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m5_c01114{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m31_c01114{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m6_c01114{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m24_c01114{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m28_c01114{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m8_c01114{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01114{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01114{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m12_c01114{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01114{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m34_c01114{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m39_c01114{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m3_c01114{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);}
.m2a_c01114{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m35_c01114{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);}
.m2e_c01114{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.me_c01114{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m10_c01114{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);}
.m48_c01114{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);}
.mc_c01114{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m33_c01114{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m1_c01114{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01114{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01114{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);}
.m47_c01114{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);}
.m3f_c01114{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m15_c01114{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);}
.m21_c01114{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);}
.m17_c01114{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);}
.m0_c01114{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m26_c01114{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m23_c01114{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01114{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01114{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01114{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m16_c01114{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m30_c01114{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m13_c01114{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m20_c01114{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m22_c01114{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m42_c01114{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01114{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m43_c01114{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m29_c01114{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);}
.m46_c01114{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01114{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m27_c01114{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m4a_c01114{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m32_c01114{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);}
.m3c_c01114{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01114{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);}
.m41_c01114{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m40_c01114{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01114{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m38_c01114{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m37_c01114{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_c01114{transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);}
.m49_c01114{transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);}
.v1_c01114{vertical-align:-8.640000px;}
.v0_c01114{vertical-align:0.000000px;}
.ls0_c01114{letter-spacing:0.000000px;}
.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;}
}
.ws2_c01114{word-spacing:0.000000px;}
.ws1_c01114{word-spacing:2.795040px;}
.ws0_c01114{word-spacing:4.702666px;}
.fc0_c01114{color:transparent;}
.fs11_c01114{font-size:17.280000px;}
.fs10_c01114{font-size:25.920000px;}
.fsf_c01114{font-size:34.560000px;}
.fsd_c01114{font-size:37.440000px;}
.fse_c01114{font-size:40.320000px;}
.fsc_c01114{font-size:46.080000px;}
.fs6_c01114{font-size:48.960000px;}
.fsa_c01114{font-size:51.840000px;}
.fs5_c01114{font-size:54.720000px;}
.fs2_c01114{font-size:57.600000px;}
.fs1_c01114{font-size:60.480000px;}
.fs7_c01114{font-size:63.360000px;}
.fsb_c01114{font-size:66.240000px;}
.fs0_c01114{font-size:69.120000px;}
.fs8_c01114{font-size:72.000000px;}
.fs3_c01114{font-size:74.880000px;}
.fs4_c01114{font-size:77.760000px;}
.fs9_c01114{font-size:109.440000px;}
.y0_c01114{bottom:0.000000px;}
.y81_c01114{bottom:25.920000px;}
.y7f_c01114{bottom:33.120000px;}
.y83_c01114{bottom:33.840000px;}
.y7e_c01114{bottom:34.560000px;}
.y80_c01114{bottom:35.280000px;}
.y7d_c01114{bottom:36.000000px;}
.y7a_c01114{bottom:37.440000px;}
.y7b_c01114{bottom:38.160000px;}
.y7c_c01114{bottom:41.760000px;}
.y79_c01114{bottom:79.200000px;}
.y78_c01114{bottom:107.280000px;}
.y77_c01114{bottom:108.000000px;}
.y76_c01114{bottom:108.720000px;}
.y82_c01114{bottom:109.440000px;}
.y74_c01114{bottom:110.880000px;}
.y75_c01114{bottom:111.600000px;}
.y73_c01114{bottom:153.360000px;}
.y72_c01114{bottom:154.800000px;}
.y71_c01114{bottom:182.160000px;}
.y70_c01114{bottom:182.880000px;}
.y6f_c01114{bottom:183.600000px;}
.y6e_c01114{bottom:184.320000px;}
.y6d_c01114{bottom:185.040000px;}
.y6c_c01114{bottom:225.360000px;}
.y6a_c01114{bottom:226.080000px;}
.y69_c01114{bottom:226.800000px;}
.y68_c01114{bottom:227.520000px;}
.y6b_c01114{bottom:228.240000px;}
.y67_c01114{bottom:267.120000px;}
.y64_c01114{bottom:269.280000px;}
.y63_c01114{bottom:270.000000px;}
.y66_c01114{bottom:270.720000px;}
.y65_c01114{bottom:271.440000px;}
.y62_c01114{bottom:311.040000px;}
.y60_c01114{bottom:311.760000px;}
.y5f_c01114{bottom:313.200000px;}
.y61_c01114{bottom:314.640000px;}
.y5e_c01114{bottom:354.240000px;}
.y5c_c01114{bottom:354.960000px;}
.y5a_c01114{bottom:355.680000px;}
.y5b_c01114{bottom:356.400000px;}
.y5d_c01114{bottom:357.120000px;}
.y59_c01114{bottom:397.440000px;}
.y56_c01114{bottom:398.160000px;}
.y58_c01114{bottom:399.600000px;}
.y57_c01114{bottom:400.320000px;}
.y50_c01114{bottom:438.480000px;}
.y4d_c01114{bottom:471.600000px;}
.y4b_c01114{bottom:472.320000px;}
.y4a_c01114{bottom:473.040000px;}
.y4f_c01114{bottom:473.760000px;}
.y4e_c01114{bottom:474.480000px;}
.y4c_c01114{bottom:475.200000px;}
.y48_c01114{bottom:516.240000px;}
.y49_c01114{bottom:517.680000px;}
.y44_c01114{bottom:545.040000px;}
.y46_c01114{bottom:546.480000px;}
.y43_c01114{bottom:547.200000px;}
.y55_c01114{bottom:547.920000px;}
.y45_c01114{bottom:548.640000px;}
.y47_c01114{bottom:549.360000px;}
.y41_c01114{bottom:588.960000px;}
.y42_c01114{bottom:591.120000px;}
.y3d_c01114{bottom:619.920000px;}
.y3e_c01114{bottom:620.640000px;}
.y3c_c01114{bottom:621.360000px;}
.y53_c01114{bottom:622.080000px;}
.y3f_c01114{bottom:622.800000px;}
.y40_c01114{bottom:624.240000px;}
.y54_c01114{bottom:624.960000px;}
.y39_c01114{bottom:661.680000px;}
.y38_c01114{bottom:663.840000px;}
.y52_c01114{bottom:664.560000px;}
.y3a_c01114{bottom:665.280000px;}
.y3b_c01114{bottom:666.000000px;}
.y51_c01114{bottom:667.440000px;}
.y32_c01114{bottom:704.880000px;}
.y33_c01114{bottom:705.600000px;}
.y34_c01114{bottom:708.480000px;}
.y30_c01114{bottom:736.560000px;}
.y2f_c01114{bottom:737.280000px;}
.y31_c01114{bottom:740.160000px;}
.y37_c01114{bottom:740.880000px;}
.y2d_c01114{bottom:781.200000px;}
.y2c_c01114{bottom:782.640000px;}
.y2e_c01114{bottom:783.360000px;}
.y29_c01114{bottom:812.160000px;}
.y28_c01114{bottom:813.600000px;}
.y2a_c01114{bottom:815.760000px;}
.y36_c01114{bottom:816.480000px;}
.y35_c01114{bottom:817.920000px;}
.y2b_c01114{bottom:818.640000px;}
.y20_c01114{bottom:855.360000px;}
.y21_c01114{bottom:856.080000px;}
.y22_c01114{bottom:856.800000px;}
.y25_c01114{bottom:858.240000px;}
.y24_c01114{bottom:858.960000px;}
.y23_c01114{bottom:859.680000px;}
.y27_c01114{bottom:860.400000px;}
.y26_c01114{bottom:861.120000px;}
.y1e_c01114{bottom:897.840000px;}
.y1f_c01114{bottom:899.280000px;}
.y1d_c01114{bottom:900.000000px;}
.y1a_c01114{bottom:900.720000px;}
.y1c_c01114{bottom:902.160000px;}
.y1b_c01114{bottom:904.320000px;}
.y15_c01114{bottom:931.680000px;}
.y12_c01114{bottom:940.320000px;}
.y11_c01114{bottom:941.040000px;}
.y14_c01114{bottom:941.760000px;}
.y13_c01114{bottom:942.480000px;}
.y16_c01114{bottom:944.640000px;}
.y17_c01114{bottom:945.360000px;}
.y19_c01114{bottom:946.080000px;}
.y18_c01114{bottom:947.520000px;}
.y7_c01114{bottom:982.800000px;}
.y6_c01114{bottom:984.240000px;}
.yc_c01114{bottom:987.120000px;}
.yd_c01114{bottom:988.560000px;}
.ye_c01114{bottom:989.280000px;}
.y10_c01114{bottom:990.000000px;}
.yf_c01114{bottom:991.440000px;}
.y4_c01114{bottom:1026.000000px;}
.y2_c01114{bottom:1026.720000px;}
.y5_c01114{bottom:1027.440000px;}
.y3_c01114{bottom:1028.160000px;}
.y9_c01114{bottom:1029.600000px;}
.y8_c01114{bottom:1030.320000px;}
.ya_c01114{bottom:1031.040000px;}
.yb_c01114{bottom:1034.640000px;}
.y1_c01114{bottom:1085.040000px;}
.h14_c01114{height:15.550313px;}
.h13_c01114{height:23.325469px;}
.h12_c01114{height:31.100625px;}
.h10_c01114{height:33.692344px;}
.h11_c01114{height:36.284062px;}
.hf_c01114{height:41.467500px;}
.h8_c01114{height:44.059219px;}
.hc_c01114{height:46.650937px;}
.h7_c01114{height:49.242656px;}
.h4_c01114{height:51.834375px;}
.h3_c01114{height:54.426094px;}
.h9_c01114{height:57.017812px;}
.he_c01114{height:58.744688px;}
.hd_c01114{height:59.609531px;}
.h2_c01114{height:62.201250px;}
.ha_c01114{height:64.792969px;}
.h5_c01114{height:67.384687px;}
.h6_c01114{height:69.976406px;}
.hb_c01114{height:98.485312px;}
.h0_c01114{height:1139.760000px;}
.h1_c01114{height:1140.000000px;}
.w1_c01114{width:771.750000px;}
.w0_c01114{width:771.840000px;}
.x0_c01114{left:0.000000px;}
.x2_c01114{left:59.760000px;}
.x2d_c01114{left:61.200000px;}
.x34_c01114{left:62.640000px;}
.x2a_c01114{left:105.120000px;}
.x35_c01114{left:113.760000px;}
.x27_c01114{left:125.280000px;}
.x3_c01114{left:133.200000px;}
.x1f_c01114{left:134.640000px;}
.x2e_c01114{left:136.080000px;}
.x4_c01114{left:167.760000px;}
.x23_c01114{left:177.120000px;}
.x16_c01114{left:187.920000px;}
.x1a_c01114{left:198.000000px;}
.x24_c01114{left:220.320000px;}
.x20_c01114{left:230.400000px;}
.x17_c01114{left:241.200000px;}
.x1b_c01114{left:252.000000px;}
.x18_c01114{left:262.800000px;}
.x6_c01114{left:264.240000px;}
.x2b_c01114{left:273.600000px;}
.x5_c01114{left:275.040000px;}
.x2c_c01114{left:285.120000px;}
.xc_c01114{left:305.280000px;}
.x19_c01114{left:315.360000px;}
.x1d_c01114{left:316.800000px;}
.x25_c01114{left:327.600000px;}
.x11_c01114{left:338.400000px;}
.x36_c01114{left:339.840000px;}
.xd_c01114{left:349.920000px;}
.x21_c01114{left:370.080000px;}
.x15_c01114{left:380.160000px;}
.x12_c01114{left:390.960000px;}
.x13_c01114{left:401.760000px;}
.x26_c01114{left:423.360000px;}
.x1e_c01114{left:434.880000px;}
.x14_c01114{left:456.480000px;}
.x30_c01114{left:457.920000px;}
.x33_c01114{left:468.000000px;}
.x22_c01114{left:478.080000px;}
.x37_c01114{left:483.840000px;}
.xe_c01114{left:488.160000px;}
.xf_c01114{left:533.520000px;}
.x7_c01114{left:544.320000px;}
.x8_c01114{left:565.200000px;}
.x1c_c01114{left:609.840000px;}
.x28_c01114{left:618.480000px;}
.x9_c01114{left:619.920000px;}
.x38_c01114{left:621.360000px;}
.xa_c01114{left:652.320000px;}
.x31_c01114{left:653.760000px;}
.x1_c01114{left:674.640000px;}
.x10_c01114{left:684.720000px;}
.x32_c01114{left:686.160000px;}
.xb_c01114{left:695.520000px;}
.x2f_c01114{left:696.960000px;}
.x29_c01114{left:717.120000px;}
@media print{
.v1_c01114{vertical-align:-7.680000pt;}
.v0_c01114{vertical-align:0.000000pt;}
.ls0_c01114{letter-spacing:0.000000pt;}
.ws2_c01114{word-spacing:0.000000pt;}
.ws1_c01114{word-spacing:2.484480pt;}
.ws0_c01114{word-spacing:4.180147pt;}
.fs11_c01114{font-size:15.360000pt;}
.fs10_c01114{font-size:23.040000pt;}
.fsf_c01114{font-size:30.720000pt;}
.fsd_c01114{font-size:33.280000pt;}
.fse_c01114{font-size:35.840000pt;}
.fsc_c01114{font-size:40.960000pt;}
.fs6_c01114{font-size:43.520000pt;}
.fsa_c01114{font-size:46.080000pt;}
.fs5_c01114{font-size:48.640000pt;}
.fs2_c01114{font-size:51.200000pt;}
.fs1_c01114{font-size:53.760000pt;}
.fs7_c01114{font-size:56.320000pt;}
.fsb_c01114{font-size:58.880000pt;}
.fs0_c01114{font-size:61.440000pt;}
.fs8_c01114{font-size:64.000000pt;}
.fs3_c01114{font-size:66.560000pt;}
.fs4_c01114{font-size:69.120000pt;}
.fs9_c01114{font-size:97.280000pt;}
.y0_c01114{bottom:0.000000pt;}
.y81_c01114{bottom:23.040000pt;}
.y7f_c01114{bottom:29.440000pt;}
.y83_c01114{bottom:30.080000pt;}
.y7e_c01114{bottom:30.720000pt;}
.y80_c01114{bottom:31.360000pt;}
.y7d_c01114{bottom:32.000000pt;}
.y7a_c01114{bottom:33.280000pt;}
.y7b_c01114{bottom:33.920000pt;}
.y7c_c01114{bottom:37.120000pt;}
.y79_c01114{bottom:70.400000pt;}
.y78_c01114{bottom:95.360000pt;}
.y77_c01114{bottom:96.000000pt;}
.y76_c01114{bottom:96.640000pt;}
.y82_c01114{bottom:97.280000pt;}
.y74_c01114{bottom:98.560000pt;}
.y75_c01114{bottom:99.200000pt;}
.y73_c01114{bottom:136.320000pt;}
.y72_c01114{bottom:137.600000pt;}
.y71_c01114{bottom:161.920000pt;}
.y70_c01114{bottom:162.560000pt;}
.y6f_c01114{bottom:163.200000pt;}
.y6e_c01114{bottom:163.840000pt;}
.y6d_c01114{bottom:164.480000pt;}
.y6c_c01114{bottom:200.320000pt;}
.y6a_c01114{bottom:200.960000pt;}
.y69_c01114{bottom:201.600000pt;}
.y68_c01114{bottom:202.240000pt;}
.y6b_c01114{bottom:202.880000pt;}
.y67_c01114{bottom:237.440000pt;}
.y64_c01114{bottom:239.360000pt;}
.y63_c01114{bottom:240.000000pt;}
.y66_c01114{bottom:240.640000pt;}
.y65_c01114{bottom:241.280000pt;}
.y62_c01114{bottom:276.480000pt;}
.y60_c01114{bottom:277.120000pt;}
.y5f_c01114{bottom:278.400000pt;}
.y61_c01114{bottom:279.680000pt;}
.y5e_c01114{bottom:314.880000pt;}
.y5c_c01114{bottom:315.520000pt;}
.y5a_c01114{bottom:316.160000pt;}
.y5b_c01114{bottom:316.800000pt;}
.y5d_c01114{bottom:317.440000pt;}
.y59_c01114{bottom:353.280000pt;}
.y56_c01114{bottom:353.920000pt;}
.y58_c01114{bottom:355.200000pt;}
.y57_c01114{bottom:355.840000pt;}
.y50_c01114{bottom:389.760000pt;}
.y4d_c01114{bottom:419.200000pt;}
.y4b_c01114{bottom:419.840000pt;}
.y4a_c01114{bottom:420.480000pt;}
.y4f_c01114{bottom:421.120000pt;}
.y4e_c01114{bottom:421.760000pt;}
.y4c_c01114{bottom:422.400000pt;}
.y48_c01114{bottom:458.880000pt;}
.y49_c01114{bottom:460.160000pt;}
.y44_c01114{bottom:484.480000pt;}
.y46_c01114{bottom:485.760000pt;}
.y43_c01114{bottom:486.400000pt;}
.y55_c01114{bottom:487.040000pt;}
.y45_c01114{bottom:487.680000pt;}
.y47_c01114{bottom:488.320000pt;}
.y41_c01114{bottom:523.520000pt;}
.y42_c01114{bottom:525.440000pt;}
.y3d_c01114{bottom:551.040000pt;}
.y3e_c01114{bottom:551.680000pt;}
.y3c_c01114{bottom:552.320000pt;}
.y53_c01114{bottom:552.960000pt;}
.y3f_c01114{bottom:553.600000pt;}
.y40_c01114{bottom:554.880000pt;}
.y54_c01114{bottom:555.520000pt;}
.y39_c01114{bottom:588.160000pt;}
.y38_c01114{bottom:590.080000pt;}
.y52_c01114{bottom:590.720000pt;}
.y3a_c01114{bottom:591.360000pt;}
.y3b_c01114{bottom:592.000000pt;}
.y51_c01114{bottom:593.280000pt;}
.y32_c01114{bottom:626.560000pt;}
.y33_c01114{bottom:627.200000pt;}
.y34_c01114{bottom:629.760000pt;}
.y30_c01114{bottom:654.720000pt;}
.y2f_c01114{bottom:655.360000pt;}
.y31_c01114{bottom:657.920000pt;}
.y37_c01114{bottom:658.560000pt;}
.y2d_c01114{bottom:694.400000pt;}
.y2c_c01114{bottom:695.680000pt;}
.y2e_c01114{bottom:696.320000pt;}
.y29_c01114{bottom:721.920000pt;}
.y28_c01114{bottom:723.200000pt;}
.y2a_c01114{bottom:725.120000pt;}
.y36_c01114{bottom:725.760000pt;}
.y35_c01114{bottom:727.040000pt;}
.y2b_c01114{bottom:727.680000pt;}
.y20_c01114{bottom:760.320000pt;}
.y21_c01114{bottom:760.960000pt;}
.y22_c01114{bottom:761.600000pt;}
.y25_c01114{bottom:762.880000pt;}
.y24_c01114{bottom:763.520000pt;}
.y23_c01114{bottom:764.160000pt;}
.y27_c01114{bottom:764.800000pt;}
.y26_c01114{bottom:765.440000pt;}
.y1e_c01114{bottom:798.080000pt;}
.y1f_c01114{bottom:799.360000pt;}
.y1d_c01114{bottom:800.000000pt;}
.y1a_c01114{bottom:800.640000pt;}
.y1c_c01114{bottom:801.920000pt;}
.y1b_c01114{bottom:803.840000pt;}
.y15_c01114{bottom:828.160000pt;}
.y12_c01114{bottom:835.840000pt;}
.y11_c01114{bottom:836.480000pt;}
.y14_c01114{bottom:837.120000pt;}
.y13_c01114{bottom:837.760000pt;}
.y16_c01114{bottom:839.680000pt;}
.y17_c01114{bottom:840.320000pt;}
.y19_c01114{bottom:840.960000pt;}
.y18_c01114{bottom:842.240000pt;}
.y7_c01114{bottom:873.600000pt;}
.y6_c01114{bottom:874.880000pt;}
.yc_c01114{bottom:877.440000pt;}
.yd_c01114{bottom:878.720000pt;}
.ye_c01114{bottom:879.360000pt;}
.y10_c01114{bottom:880.000000pt;}
.yf_c01114{bottom:881.280000pt;}
.y4_c01114{bottom:912.000000pt;}
.y2_c01114{bottom:912.640000pt;}
.y5_c01114{bottom:913.280000pt;}
.y3_c01114{bottom:913.920000pt;}
.y9_c01114{bottom:915.200000pt;}
.y8_c01114{bottom:915.840000pt;}
.ya_c01114{bottom:916.480000pt;}
.yb_c01114{bottom:919.680000pt;}
.y1_c01114{bottom:964.480000pt;}
.h14_c01114{height:13.822500pt;}
.h13_c01114{height:20.733750pt;}
.h12_c01114{height:27.645000pt;}
.h10_c01114{height:29.948750pt;}
.h11_c01114{height:32.252500pt;}
.hf_c01114{height:36.860000pt;}
.h8_c01114{height:39.163750pt;}
.hc_c01114{height:41.467500pt;}
.h7_c01114{height:43.771250pt;}
.h4_c01114{height:46.075000pt;}
.h3_c01114{height:48.378750pt;}
.h9_c01114{height:50.682500pt;}
.he_c01114{height:52.217500pt;}
.hd_c01114{height:52.986250pt;}
.h2_c01114{height:55.290000pt;}
.ha_c01114{height:57.593750pt;}
.h5_c01114{height:59.897500pt;}
.h6_c01114{height:62.201250pt;}
.hb_c01114{height:87.542500pt;}
.h0_c01114{height:1013.120000pt;}
.h1_c01114{height:1013.333333pt;}
.w1_c01114{width:686.000000pt;}
.w0_c01114{width:686.080000pt;}
.x0_c01114{left:0.000000pt;}
.x2_c01114{left:53.120000pt;}
.x2d_c01114{left:54.400000pt;}
.x34_c01114{left:55.680000pt;}
.x2a_c01114{left:93.440000pt;}
.x35_c01114{left:101.120000pt;}
.x27_c01114{left:111.360000pt;}
.x3_c01114{left:118.400000pt;}
.x1f_c01114{left:119.680000pt;}
.x2e_c01114{left:120.960000pt;}
.x4_c01114{left:149.120000pt;}
.x23_c01114{left:157.440000pt;}
.x16_c01114{left:167.040000pt;}
.x1a_c01114{left:176.000000pt;}
.x24_c01114{left:195.840000pt;}
.x20_c01114{left:204.800000pt;}
.x17_c01114{left:214.400000pt;}
.x1b_c01114{left:224.000000pt;}
.x18_c01114{left:233.600000pt;}
.x6_c01114{left:234.880000pt;}
.x2b_c01114{left:243.200000pt;}
.x5_c01114{left:244.480000pt;}
.x2c_c01114{left:253.440000pt;}
.xc_c01114{left:271.360000pt;}
.x19_c01114{left:280.320000pt;}
.x1d_c01114{left:281.600000pt;}
.x25_c01114{left:291.200000pt;}
.x11_c01114{left:300.800000pt;}
.x36_c01114{left:302.080000pt;}
.xd_c01114{left:311.040000pt;}
.x21_c01114{left:328.960000pt;}
.x15_c01114{left:337.920000pt;}
.x12_c01114{left:347.520000pt;}
.x13_c01114{left:357.120000pt;}
.x26_c01114{left:376.320000pt;}
.x1e_c01114{left:386.560000pt;}
.x14_c01114{left:405.760000pt;}
.x30_c01114{left:407.040000pt;}
.x33_c01114{left:416.000000pt;}
.x22_c01114{left:424.960000pt;}
.x37_c01114{left:430.080000pt;}
.xe_c01114{left:433.920000pt;}
.xf_c01114{left:474.240000pt;}
.x7_c01114{left:483.840000pt;}
.x8_c01114{left:502.400000pt;}
.x1c_c01114{left:542.080000pt;}
.x28_c01114{left:549.760000pt;}
.x9_c01114{left:551.040000pt;}
.x38_c01114{left:552.320000pt;}
.xa_c01114{left:579.840000pt;}
.x31_c01114{left:581.120000pt;}
.x1_c01114{left:599.680000pt;}
.x10_c01114{left:608.640000pt;}
.x32_c01114{left:609.920000pt;}
.xb_c01114{left:618.240000pt;}
.x2f_c01114{left:619.520000pt;}
.x29_c01114{left:637.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c7e18ba04f264a3a74cf3cc9.woff2')format("woff");}.ff1_c01115{font-family:ff1_c01115;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5e_c01115{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.m5b_c01115{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m47_c01115{transform:matrix(0.230150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230150,0.000000,0.000000,0.250000,0,0);}
.m23_c01115{transform:matrix(0.231650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231650,0.000000,0.000000,0.250000,0,0);}
.m34_c01115{transform:matrix(0.232825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232825,0.000000,0.000000,0.250000,0,0);}
.m5a_c01115{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m48_c01115{transform:matrix(0.243450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243450,0.000000,0.000000,0.250000,0,0);}
.m53_c01115{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m6_c01115{transform:matrix(0.248700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248700,0.000000,0.000000,0.250000,0,0);}
.m3b_c01115{transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);}
.m38_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);}
.m3e_c01115{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);}
.m4c_c01115{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);}
.m44_c01115{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);}
.m41_c01115{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);}
.m45_c01115{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);}
.m37_c01115{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);}
.m54_c01115{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);}
.m56_c01115{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m43_c01115{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);}
.m36_c01115{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m8_c01115{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m4_c01115{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.ma_c01115{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01115{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m49_c01115{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01115{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01115{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01115{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m40_c01115{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m31_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);}
.m57_c01115{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01115{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m39_c01115{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01115{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m11_c01115{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1_c01115{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);}
.m24_c01115{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m18_c01115{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m12_c01115{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);}
.m4f_c01115{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01115{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);}
.m30_c01115{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m21_c01115{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.md_c01115{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m0_c01115{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01115{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);}
.m4b_c01115{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m26_c01115{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);}
.m32_c01115{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);}
.m17_c01115{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);}
.m4a_c01115{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01115{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);}
.m20_c01115{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);}
.m22_c01115{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m7_c01115{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m29_c01115{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m25_c01115{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);}
.m2b_c01115{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m28_c01115{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);}
.m55_c01115{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m10_c01115{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);}
.m50_c01115{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01115{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m15_c01115{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01115{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m5c_c01115{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01115{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m59_c01115{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.mf_c01115{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01115{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);}
.m3c_c01115{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m9_c01115{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m33_c01115{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m27_c01115{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m16_c01115{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);}
.m46_c01115{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);}
.m2_c01115{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m42_c01115{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m19_c01115{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01115{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);}
.m2c_c01115{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.mc_c01115{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.me_c01115{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);}
.m3_c01115{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m14_c01115{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);}
.mb_c01115{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m35_c01115{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m5_c01115{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01115{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m52_c01115{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.m5d_c01115{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01115{transform:matrix(0.805000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.805000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.805000,0.000000,0.000000,0.250000,0,0);}
.m58_c01115{transform:matrix(0.907500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.907500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.907500,0.000000,0.000000,0.250000,0,0);}
.m51_c01115{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.v1_c01115{vertical-align:-2.880000px;}
.v0_c01115{vertical-align:0.000000px;}
.ls0_c01115{letter-spacing:0.000000px;}
.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;}
}
.ws2_c01115{word-spacing:0.000000px;}
.ws1_c01115{word-spacing:9.210378px;}
.ws0_c01115{word-spacing:12.999600px;}
.fc0_c01115{color:transparent;}
.fsf_c01115{font-size:11.520000px;}
.fs11_c01115{font-size:20.160000px;}
.fse_c01115{font-size:23.040000px;}
.fs12_c01115{font-size:31.680000px;}
.fsa_c01115{font-size:34.560000px;}
.fs9_c01115{font-size:37.440000px;}
.fsc_c01115{font-size:40.320000px;}
.fs10_c01115{font-size:46.080000px;}
.fs3_c01115{font-size:48.960000px;}
.fs1_c01115{font-size:51.840000px;}
.fs5_c01115{font-size:54.720000px;}
.fs8_c01115{font-size:57.600000px;}
.fs0_c01115{font-size:60.480000px;}
.fs6_c01115{font-size:63.360000px;}
.fs7_c01115{font-size:66.240000px;}
.fs2_c01115{font-size:69.120000px;}
.fsd_c01115{font-size:72.000000px;}
.fsb_c01115{font-size:74.880000px;}
.fs4_c01115{font-size:95.040000px;}
.y0_c01115{bottom:0.000000px;}
.y73_c01115{bottom:86.400000px;}
.y72_c01115{bottom:87.840000px;}
.y71_c01115{bottom:97.920000px;}
.y6c_c01115{bottom:100.080000px;}
.y6e_c01115{bottom:101.520000px;}
.y6b_c01115{bottom:102.960000px;}
.y6d_c01115{bottom:105.840000px;}
.y70_c01115{bottom:109.440000px;}
.y6f_c01115{bottom:110.160000px;}
.y6a_c01115{bottom:149.040000px;}
.y67_c01115{bottom:149.760000px;}
.y69_c01115{bottom:150.480000px;}
.y64_c01115{bottom:151.920000px;}
.y62_c01115{bottom:153.360000px;}
.y68_c01115{bottom:155.520000px;}
.y61_c01115{bottom:164.880000px;}
.y66_c01115{bottom:173.520000px;}
.y65_c01115{bottom:174.240000px;}
.y63_c01115{bottom:176.400000px;}
.y60_c01115{bottom:177.120000px;}
.y8a_c01115{bottom:210.960000px;}
.y5f_c01115{bottom:211.680000px;}
.y8b_c01115{bottom:213.120000px;}
.y5c_c01115{bottom:214.560000px;}
.y5e_c01115{bottom:216.000000px;}
.y5d_c01115{bottom:216.720000px;}
.y5b_c01115{bottom:218.880000px;}
.y88_c01115{bottom:254.160000px;}
.y89_c01115{bottom:254.880000px;}
.y5a_c01115{bottom:255.600000px;}
.y59_c01115{bottom:256.320000px;}
.y57_c01115{bottom:257.760000px;}
.y58_c01115{bottom:259.920000px;}
.y56_c01115{bottom:260.640000px;}
.y87_c01115{bottom:297.360000px;}
.y54_c01115{bottom:298.080000px;}
.y55_c01115{bottom:298.800000px;}
.y53_c01115{bottom:300.240000px;}
.y52_c01115{bottom:302.400000px;}
.y86_c01115{bottom:340.560000px;}
.y50_c01115{bottom:341.280000px;}
.y51_c01115{bottom:342.000000px;}
.y4e_c01115{bottom:342.720000px;}
.y4f_c01115{bottom:345.600000px;}
.y4d_c01115{bottom:346.320000px;}
.y85_c01115{bottom:382.320000px;}
.y83_c01115{bottom:383.760000px;}
.y4c_c01115{bottom:384.480000px;}
.y4a_c01115{bottom:385.200000px;}
.y84_c01115{bottom:385.920000px;}
.y4b_c01115{bottom:388.080000px;}
.y49_c01115{bottom:388.800000px;}
.y80_c01115{bottom:426.240000px;}
.y82_c01115{bottom:426.960000px;}
.y48_c01115{bottom:427.680000px;}
.y46_c01115{bottom:428.400000px;}
.y47_c01115{bottom:430.560000px;}
.y45_c01115{bottom:431.280000px;}
.y81_c01115{bottom:435.600000px;}
.y43_c01115{bottom:469.440000px;}
.y40_c01115{bottom:470.880000px;}
.y44_c01115{bottom:471.600000px;}
.y7f_c01115{bottom:472.320000px;}
.y42_c01115{bottom:473.040000px;}
.y41_c01115{bottom:473.760000px;}
.y3f_c01115{bottom:474.480000px;}
.y3d_c01115{bottom:513.360000px;}
.y3e_c01115{bottom:514.080000px;}
.y3c_c01115{bottom:516.240000px;}
.y3b_c01115{bottom:517.680000px;}
.y3a_c01115{bottom:557.280000px;}
.y39_c01115{bottom:558.000000px;}
.y38_c01115{bottom:558.720000px;}
.y37_c01115{bottom:559.440000px;}
.y35_c01115{bottom:599.760000px;}
.y36_c01115{bottom:600.480000px;}
.y34_c01115{bottom:601.200000px;}
.y7e_c01115{bottom:601.920000px;}
.y33_c01115{bottom:602.640000px;}
.y31_c01115{bottom:642.960000px;}
.y30_c01115{bottom:643.680000px;}
.y2f_c01115{bottom:644.400000px;}
.y7d_c01115{bottom:645.120000px;}
.y32_c01115{bottom:645.840000px;}
.y2d_c01115{bottom:686.160000px;}
.y2c_c01115{bottom:686.880000px;}
.y7c_c01115{bottom:687.600000px;}
.y2b_c01115{bottom:688.320000px;}
.y2e_c01115{bottom:689.040000px;}
.y29_c01115{bottom:730.080000px;}
.y28_c01115{bottom:730.800000px;}
.y2a_c01115{bottom:731.520000px;}
.y7b_c01115{bottom:732.240000px;}
.y27_c01115{bottom:764.640000px;}
.y26_c01115{bottom:771.840000px;}
.y25_c01115{bottom:772.560000px;}
.y24_c01115{bottom:773.280000px;}
.y7a_c01115{bottom:774.000000px;}
.y79_c01115{bottom:776.160000px;}
.y21_c01115{bottom:815.040000px;}
.y22_c01115{bottom:817.200000px;}
.y23_c01115{bottom:817.920000px;}
.y1d_c01115{bottom:846.720000px;}
.y20_c01115{bottom:847.440000px;}
.y1c_c01115{bottom:848.160000px;}
.y1e_c01115{bottom:848.880000px;}
.y1f_c01115{bottom:849.600000px;}
.y78_c01115{bottom:850.320000px;}
.y1a_c01115{bottom:889.200000px;}
.y1b_c01115{bottom:892.080000px;}
.y15_c01115{bottom:920.880000px;}
.y14_c01115{bottom:921.600000px;}
.y17_c01115{bottom:922.320000px;}
.y19_c01115{bottom:923.040000px;}
.y16_c01115{bottom:923.760000px;}
.y77_c01115{bottom:924.480000px;}
.y18_c01115{bottom:925.200000px;}
.y10_c01115{bottom:964.080000px;}
.ye_c01115{bottom:964.800000px;}
.y12_c01115{bottom:965.520000px;}
.yf_c01115{bottom:966.960000px;}
.y11_c01115{bottom:967.680000px;}
.y13_c01115{bottom:968.400000px;}
.y9_c01115{bottom:995.760000px;}
.y8_c01115{bottom:996.480000px;}
.ya_c01115{bottom:997.920000px;}
.yb_c01115{bottom:998.640000px;}
.yd_c01115{bottom:999.360000px;}
.yc_c01115{bottom:1000.080000px;}
.y76_c01115{bottom:1000.800000px;}
.y7_c01115{bottom:1032.480000px;}
.y1_c01115{bottom:1038.960000px;}
.y2_c01115{bottom:1039.680000px;}
.y5_c01115{bottom:1040.400000px;}
.y3_c01115{bottom:1041.120000px;}
.y75_c01115{bottom:1041.840000px;}
.y4_c01115{bottom:1042.560000px;}
.y6_c01115{bottom:1043.280000px;}
.y74_c01115{bottom:1097.280000px;}
.h11_c01115{height:10.366875px;}
.h13_c01115{height:18.142031px;}
.h10_c01115{height:20.733750px;}
.h14_c01115{height:28.508906px;}
.hc_c01115{height:31.100625px;}
.hb_c01115{height:33.692344px;}
.he_c01115{height:36.284062px;}
.h12_c01115{height:41.467500px;}
.h5_c01115{height:44.059219px;}
.h3_c01115{height:46.650937px;}
.h7_c01115{height:49.242656px;}
.ha_c01115{height:51.834375px;}
.h2_c01115{height:54.426094px;}
.h8_c01115{height:57.017812px;}
.h9_c01115{height:59.609531px;}
.h4_c01115{height:62.201250px;}
.hf_c01115{height:64.792969px;}
.hd_c01115{height:67.384687px;}
.h6_c01115{height:85.526719px;}
.h0_c01115{height:1140.480000px;}
.h1_c01115{height:1140.750000px;}
.w1_c01115{width:773.250000px;}
.w0_c01115{width:773.280000px;}
.x0_c01115{left:0.000000px;}
.x19_c01115{left:48.960000px;}
.x1_c01115{left:50.400000px;}
.x29_c01115{left:79.920000px;}
.x12_c01115{left:114.480000px;}
.x23_c01115{left:121.680000px;}
.xa_c01115{left:123.120000px;}
.x2_c01115{left:125.280000px;}
.x2a_c01115{left:144.000000px;}
.x28_c01115{left:154.080000px;}
.x27_c01115{left:155.520000px;}
.x2b_c01115{left:174.960000px;}
.x2e_c01115{left:187.920000px;}
.x18_c01115{left:208.080000px;}
.x3_c01115{left:209.520000px;}
.x1d_c01115{left:218.160000px;}
.x1a_c01115{left:219.600000px;}
.x20_c01115{left:228.960000px;}
.x2c_c01115{left:230.400000px;}
.x1f_c01115{left:250.560000px;}
.xb_c01115{left:252.720000px;}
.x2d_c01115{left:260.640000px;}
.x13_c01115{left:262.080000px;}
.x4_c01115{left:263.520000px;}
.x17_c01115{left:272.880000px;}
.x21_c01115{left:282.960000px;}
.xc_c01115{left:305.280000px;}
.x24_c01115{left:315.360000px;}
.x5_c01115{left:317.520000px;}
.x22_c01115{left:326.160000px;}
.x15_c01115{left:327.600000px;}
.x1b_c01115{left:349.200000px;}
.x1e_c01115{left:358.560000px;}
.xd_c01115{left:360.000000px;}
.x25_c01115{left:369.360000px;}
.x16_c01115{left:382.320000px;}
.x1c_c01115{left:391.680000px;}
.xe_c01115{left:403.920000px;}
.x6_c01115{left:414.000000px;}
.x14_c01115{left:434.160000px;}
.x7_c01115{left:457.920000px;}
.x8_c01115{left:462.960000px;}
.x26_c01115{left:466.560000px;}
.x11_c01115{left:468.000000px;}
.xf_c01115{left:478.800000px;}
.x9_c01115{left:522.720000px;}
.x10_c01115{left:533.520000px;}
.x38_c01115{left:576.000000px;}
.x30_c01115{left:600.480000px;}
.x3b_c01115{left:608.400000px;}
.x36_c01115{left:609.840000px;}
.x33_c01115{left:611.280000px;}
.x31_c01115{left:633.600000px;}
.x3c_c01115{left:642.960000px;}
.x34_c01115{left:644.400000px;}
.x3d_c01115{left:652.320000px;}
.x37_c01115{left:654.480000px;}
.x2f_c01115{left:666.000000px;}
.x32_c01115{left:676.080000px;}
.x39_c01115{left:686.160000px;}
.x35_c01115{left:687.600000px;}
.x3a_c01115{left:707.040000px;}
@media print{
.v1_c01115{vertical-align:-2.560000pt;}
.v0_c01115{vertical-align:0.000000pt;}
.ls0_c01115{letter-spacing:0.000000pt;}
.ws2_c01115{word-spacing:0.000000pt;}
.ws1_c01115{word-spacing:8.187003pt;}
.ws0_c01115{word-spacing:11.555200pt;}
.fsf_c01115{font-size:10.240000pt;}
.fs11_c01115{font-size:17.920000pt;}
.fse_c01115{font-size:20.480000pt;}
.fs12_c01115{font-size:28.160000pt;}
.fsa_c01115{font-size:30.720000pt;}
.fs9_c01115{font-size:33.280000pt;}
.fsc_c01115{font-size:35.840000pt;}
.fs10_c01115{font-size:40.960000pt;}
.fs3_c01115{font-size:43.520000pt;}
.fs1_c01115{font-size:46.080000pt;}
.fs5_c01115{font-size:48.640000pt;}
.fs8_c01115{font-size:51.200000pt;}
.fs0_c01115{font-size:53.760000pt;}
.fs6_c01115{font-size:56.320000pt;}
.fs7_c01115{font-size:58.880000pt;}
.fs2_c01115{font-size:61.440000pt;}
.fsd_c01115{font-size:64.000000pt;}
.fsb_c01115{font-size:66.560000pt;}
.fs4_c01115{font-size:84.480000pt;}
.y0_c01115{bottom:0.000000pt;}
.y73_c01115{bottom:76.800000pt;}
.y72_c01115{bottom:78.080000pt;}
.y71_c01115{bottom:87.040000pt;}
.y6c_c01115{bottom:88.960000pt;}
.y6e_c01115{bottom:90.240000pt;}
.y6b_c01115{bottom:91.520000pt;}
.y6d_c01115{bottom:94.080000pt;}
.y70_c01115{bottom:97.280000pt;}
.y6f_c01115{bottom:97.920000pt;}
.y6a_c01115{bottom:132.480000pt;}
.y67_c01115{bottom:133.120000pt;}
.y69_c01115{bottom:133.760000pt;}
.y64_c01115{bottom:135.040000pt;}
.y62_c01115{bottom:136.320000pt;}
.y68_c01115{bottom:138.240000pt;}
.y61_c01115{bottom:146.560000pt;}
.y66_c01115{bottom:154.240000pt;}
.y65_c01115{bottom:154.880000pt;}
.y63_c01115{bottom:156.800000pt;}
.y60_c01115{bottom:157.440000pt;}
.y8a_c01115{bottom:187.520000pt;}
.y5f_c01115{bottom:188.160000pt;}
.y8b_c01115{bottom:189.440000pt;}
.y5c_c01115{bottom:190.720000pt;}
.y5e_c01115{bottom:192.000000pt;}
.y5d_c01115{bottom:192.640000pt;}
.y5b_c01115{bottom:194.560000pt;}
.y88_c01115{bottom:225.920000pt;}
.y89_c01115{bottom:226.560000pt;}
.y5a_c01115{bottom:227.200000pt;}
.y59_c01115{bottom:227.840000pt;}
.y57_c01115{bottom:229.120000pt;}
.y58_c01115{bottom:231.040000pt;}
.y56_c01115{bottom:231.680000pt;}
.y87_c01115{bottom:264.320000pt;}
.y54_c01115{bottom:264.960000pt;}
.y55_c01115{bottom:265.600000pt;}
.y53_c01115{bottom:266.880000pt;}
.y52_c01115{bottom:268.800000pt;}
.y86_c01115{bottom:302.720000pt;}
.y50_c01115{bottom:303.360000pt;}
.y51_c01115{bottom:304.000000pt;}
.y4e_c01115{bottom:304.640000pt;}
.y4f_c01115{bottom:307.200000pt;}
.y4d_c01115{bottom:307.840000pt;}
.y85_c01115{bottom:339.840000pt;}
.y83_c01115{bottom:341.120000pt;}
.y4c_c01115{bottom:341.760000pt;}
.y4a_c01115{bottom:342.400000pt;}
.y84_c01115{bottom:343.040000pt;}
.y4b_c01115{bottom:344.960000pt;}
.y49_c01115{bottom:345.600000pt;}
.y80_c01115{bottom:378.880000pt;}
.y82_c01115{bottom:379.520000pt;}
.y48_c01115{bottom:380.160000pt;}
.y46_c01115{bottom:380.800000pt;}
.y47_c01115{bottom:382.720000pt;}
.y45_c01115{bottom:383.360000pt;}
.y81_c01115{bottom:387.200000pt;}
.y43_c01115{bottom:417.280000pt;}
.y40_c01115{bottom:418.560000pt;}
.y44_c01115{bottom:419.200000pt;}
.y7f_c01115{bottom:419.840000pt;}
.y42_c01115{bottom:420.480000pt;}
.y41_c01115{bottom:421.120000pt;}
.y3f_c01115{bottom:421.760000pt;}
.y3d_c01115{bottom:456.320000pt;}
.y3e_c01115{bottom:456.960000pt;}
.y3c_c01115{bottom:458.880000pt;}
.y3b_c01115{bottom:460.160000pt;}
.y3a_c01115{bottom:495.360000pt;}
.y39_c01115{bottom:496.000000pt;}
.y38_c01115{bottom:496.640000pt;}
.y37_c01115{bottom:497.280000pt;}
.y35_c01115{bottom:533.120000pt;}
.y36_c01115{bottom:533.760000pt;}
.y34_c01115{bottom:534.400000pt;}
.y7e_c01115{bottom:535.040000pt;}
.y33_c01115{bottom:535.680000pt;}
.y31_c01115{bottom:571.520000pt;}
.y30_c01115{bottom:572.160000pt;}
.y2f_c01115{bottom:572.800000pt;}
.y7d_c01115{bottom:573.440000pt;}
.y32_c01115{bottom:574.080000pt;}
.y2d_c01115{bottom:609.920000pt;}
.y2c_c01115{bottom:610.560000pt;}
.y7c_c01115{bottom:611.200000pt;}
.y2b_c01115{bottom:611.840000pt;}
.y2e_c01115{bottom:612.480000pt;}
.y29_c01115{bottom:648.960000pt;}
.y28_c01115{bottom:649.600000pt;}
.y2a_c01115{bottom:650.240000pt;}
.y7b_c01115{bottom:650.880000pt;}
.y27_c01115{bottom:679.680000pt;}
.y26_c01115{bottom:686.080000pt;}
.y25_c01115{bottom:686.720000pt;}
.y24_c01115{bottom:687.360000pt;}
.y7a_c01115{bottom:688.000000pt;}
.y79_c01115{bottom:689.920000pt;}
.y21_c01115{bottom:724.480000pt;}
.y22_c01115{bottom:726.400000pt;}
.y23_c01115{bottom:727.040000pt;}
.y1d_c01115{bottom:752.640000pt;}
.y20_c01115{bottom:753.280000pt;}
.y1c_c01115{bottom:753.920000pt;}
.y1e_c01115{bottom:754.560000pt;}
.y1f_c01115{bottom:755.200000pt;}
.y78_c01115{bottom:755.840000pt;}
.y1a_c01115{bottom:790.400000pt;}
.y1b_c01115{bottom:792.960000pt;}
.y15_c01115{bottom:818.560000pt;}
.y14_c01115{bottom:819.200000pt;}
.y17_c01115{bottom:819.840000pt;}
.y19_c01115{bottom:820.480000pt;}
.y16_c01115{bottom:821.120000pt;}
.y77_c01115{bottom:821.760000pt;}
.y18_c01115{bottom:822.400000pt;}
.y10_c01115{bottom:856.960000pt;}
.ye_c01115{bottom:857.600000pt;}
.y12_c01115{bottom:858.240000pt;}
.yf_c01115{bottom:859.520000pt;}
.y11_c01115{bottom:860.160000pt;}
.y13_c01115{bottom:860.800000pt;}
.y9_c01115{bottom:885.120000pt;}
.y8_c01115{bottom:885.760000pt;}
.ya_c01115{bottom:887.040000pt;}
.yb_c01115{bottom:887.680000pt;}
.yd_c01115{bottom:888.320000pt;}
.yc_c01115{bottom:888.960000pt;}
.y76_c01115{bottom:889.600000pt;}
.y7_c01115{bottom:917.760000pt;}
.y1_c01115{bottom:923.520000pt;}
.y2_c01115{bottom:924.160000pt;}
.y5_c01115{bottom:924.800000pt;}
.y3_c01115{bottom:925.440000pt;}
.y75_c01115{bottom:926.080000pt;}
.y4_c01115{bottom:926.720000pt;}
.y6_c01115{bottom:927.360000pt;}
.y74_c01115{bottom:975.360000pt;}
.h11_c01115{height:9.215000pt;}
.h13_c01115{height:16.126250pt;}
.h10_c01115{height:18.430000pt;}
.h14_c01115{height:25.341250pt;}
.hc_c01115{height:27.645000pt;}
.hb_c01115{height:29.948750pt;}
.he_c01115{height:32.252500pt;}
.h12_c01115{height:36.860000pt;}
.h5_c01115{height:39.163750pt;}
.h3_c01115{height:41.467500pt;}
.h7_c01115{height:43.771250pt;}
.ha_c01115{height:46.075000pt;}
.h2_c01115{height:48.378750pt;}
.h8_c01115{height:50.682500pt;}
.h9_c01115{height:52.986250pt;}
.h4_c01115{height:55.290000pt;}
.hf_c01115{height:57.593750pt;}
.hd_c01115{height:59.897500pt;}
.h6_c01115{height:76.023750pt;}
.h0_c01115{height:1013.760000pt;}
.h1_c01115{height:1014.000000pt;}
.w1_c01115{width:687.333333pt;}
.w0_c01115{width:687.360000pt;}
.x0_c01115{left:0.000000pt;}
.x19_c01115{left:43.520000pt;}
.x1_c01115{left:44.800000pt;}
.x29_c01115{left:71.040000pt;}
.x12_c01115{left:101.760000pt;}
.x23_c01115{left:108.160000pt;}
.xa_c01115{left:109.440000pt;}
.x2_c01115{left:111.360000pt;}
.x2a_c01115{left:128.000000pt;}
.x28_c01115{left:136.960000pt;}
.x27_c01115{left:138.240000pt;}
.x2b_c01115{left:155.520000pt;}
.x2e_c01115{left:167.040000pt;}
.x18_c01115{left:184.960000pt;}
.x3_c01115{left:186.240000pt;}
.x1d_c01115{left:193.920000pt;}
.x1a_c01115{left:195.200000pt;}
.x20_c01115{left:203.520000pt;}
.x2c_c01115{left:204.800000pt;}
.x1f_c01115{left:222.720000pt;}
.xb_c01115{left:224.640000pt;}
.x2d_c01115{left:231.680000pt;}
.x13_c01115{left:232.960000pt;}
.x4_c01115{left:234.240000pt;}
.x17_c01115{left:242.560000pt;}
.x21_c01115{left:251.520000pt;}
.xc_c01115{left:271.360000pt;}
.x24_c01115{left:280.320000pt;}
.x5_c01115{left:282.240000pt;}
.x22_c01115{left:289.920000pt;}
.x15_c01115{left:291.200000pt;}
.x1b_c01115{left:310.400000pt;}
.x1e_c01115{left:318.720000pt;}
.xd_c01115{left:320.000000pt;}
.x25_c01115{left:328.320000pt;}
.x16_c01115{left:339.840000pt;}
.x1c_c01115{left:348.160000pt;}
.xe_c01115{left:359.040000pt;}
.x6_c01115{left:368.000000pt;}
.x14_c01115{left:385.920000pt;}
.x7_c01115{left:407.040000pt;}
.x8_c01115{left:411.520000pt;}
.x26_c01115{left:414.720000pt;}
.x11_c01115{left:416.000000pt;}
.xf_c01115{left:425.600000pt;}
.x9_c01115{left:464.640000pt;}
.x10_c01115{left:474.240000pt;}
.x38_c01115{left:512.000000pt;}
.x30_c01115{left:533.760000pt;}
.x3b_c01115{left:540.800000pt;}
.x36_c01115{left:542.080000pt;}
.x33_c01115{left:543.360000pt;}
.x31_c01115{left:563.200000pt;}
.x3c_c01115{left:571.520000pt;}
.x34_c01115{left:572.800000pt;}
.x3d_c01115{left:579.840000pt;}
.x37_c01115{left:581.760000pt;}
.x2f_c01115{left:592.000000pt;}
.x32_c01115{left:600.960000pt;}
.x39_c01115{left:609.920000pt;}
.x35_c01115{left:611.200000pt;}
.x3a_c01115{left:628.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_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_1c96f15cefc368bb287d08a5.woff2')format("woff");}.ff1_c01116{font-family:ff1_c01116;line-height:1.109863;font-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_c01116{transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);}
.mc_c01116{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m9_c01116{transform:matrix(0.226825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226825,0.000000,0.000000,0.250000,0,0);}
.m30_c01116{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m36_c01116{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);}
.m6_c01116{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m51_c01116{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m18_c01116{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m1a_c01116{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);}
.m4e_c01116{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01116{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_c01116{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m3_c01116{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.ma_c01116{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_c01116{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);}
.m3c_c01116{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m13_c01116{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01116{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01116{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m49_c01116{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m24_c01116{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m20_c01116{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01116{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m33_c01116{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m23_c01116{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m29_c01116{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m16_c01116{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01116{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01116{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m7_c01116{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.me_c01116{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m5_c01116{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01116{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m4_c01116{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);}
.m2e_c01116{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m46_c01116{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m11_c01116{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_c01116{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);}
.m4b_c01116{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01116{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);}
.m3e_c01116{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m22_c01116{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);}
.m2b_c01116{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.md_c01116{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1_c01116{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m15_c01116{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m31_c01116{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01116{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m0_c01116{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);}
.m19_c01116{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01116{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01116{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);}
.m39_c01116{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);}
.m26_c01116{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01116{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m34_c01116{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);}
.m25_c01116{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01116{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m27_c01116{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m32_c01116{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);}
.m38_c01116{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01116{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.mb_c01116{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m45_c01116{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m2_c01116{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m35_c01116{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);}
.m3f_c01116{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01116{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m40_c01116{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);}
.m37_c01116{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m41_c01116{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m42_c01116{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m44_c01116{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m43_c01116{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);}
.m48_c01116{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m21_c01116{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m47_c01116{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m50_c01116{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);}
.m3d_c01116{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01116{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m28_c01116{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.m17_c01116{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);}
.m52_c01116{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.v2_c01116{vertical-align:-2.880000px;}
.v0_c01116{vertical-align:0.000000px;}
.v1_c01116{vertical-align:2.880000px;}
.ls3_c01116{letter-spacing:0.000000px;}
.ls2_c01116{letter-spacing:108.888240px;}
.ls0_c01116{letter-spacing:196.602240px;}
.ls1_c01116{letter-spacing:265.153680px;}
.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;}
}
.ws1_c01116{word-spacing:0.000000px;}
.ws0_c01116{word-spacing:10.275600px;}
.fc0_c01116{color:transparent;}
.fsd_c01116{font-size:34.560000px;}
.fsf_c01116{font-size:37.440000px;}
.fs2_c01116{font-size:43.200000px;}
.fsb_c01116{font-size:46.080000px;}
.fs4_c01116{font-size:48.960000px;}
.fs1_c01116{font-size:51.840000px;}
.fsc_c01116{font-size:54.720000px;}
.fs3_c01116{font-size:57.600000px;}
.fs5_c01116{font-size:60.480000px;}
.fse_c01116{font-size:63.360000px;}
.fs9_c01116{font-size:66.240000px;}
.fsa_c01116{font-size:69.120000px;}
.fs0_c01116{font-size:72.000000px;}
.fs6_c01116{font-size:74.880000px;}
.fs10_c01116{font-size:77.760000px;}
.fs7_c01116{font-size:80.640000px;}
.fs8_c01116{font-size:83.520000px;}
.fs11_c01116{font-size:106.560000px;}
.y0_c01116{bottom:0.000000px;}
.y85_c01116{bottom:77.040000px;}
.y84_c01116{bottom:78.480000px;}
.y87_c01116{bottom:79.200000px;}
.y86_c01116{bottom:79.920000px;}
.y83_c01116{bottom:81.360000px;}
.y8c_c01116{bottom:107.280000px;}
.y81_c01116{bottom:108.000000px;}
.y80_c01116{bottom:108.720000px;}
.y82_c01116{bottom:109.440000px;}
.y7f_c01116{bottom:114.480000px;}
.y8b_c01116{bottom:150.480000px;}
.y7d_c01116{bottom:151.200000px;}
.y7e_c01116{bottom:151.920000px;}
.y7b_c01116{bottom:152.640000px;}
.y7c_c01116{bottom:154.800000px;}
.y7a_c01116{bottom:156.960000px;}
.y79_c01116{bottom:240.480000px;}
.y78_c01116{bottom:241.200000px;}
.y77_c01116{bottom:242.640000px;}
.y76_c01116{bottom:282.960000px;}
.y8a_c01116{bottom:290.880000px;}
.y73_c01116{bottom:291.600000px;}
.y75_c01116{bottom:292.320000px;}
.y71_c01116{bottom:293.040000px;}
.y74_c01116{bottom:293.760000px;}
.y72_c01116{bottom:294.480000px;}
.y70_c01116{bottom:295.200000px;}
.y6f_c01116{bottom:336.240000px;}
.y6e_c01116{bottom:337.680000px;}
.y6d_c01116{bottom:357.120000px;}
.y6c_c01116{bottom:366.480000px;}
.y89_c01116{bottom:367.200000px;}
.y88_c01116{bottom:367.920000px;}
.y6b_c01116{bottom:368.640000px;}
.y6a_c01116{bottom:369.360000px;}
.y69_c01116{bottom:410.400000px;}
.y67_c01116{bottom:411.120000px;}
.y68_c01116{bottom:412.560000px;}
.y63_c01116{bottom:440.640000px;}
.y64_c01116{bottom:441.360000px;}
.y65_c01116{bottom:442.080000px;}
.y66_c01116{bottom:442.800000px;}
.y62_c01116{bottom:444.240000px;}
.y61_c01116{bottom:484.560000px;}
.y60_c01116{bottom:485.280000px;}
.y5d_c01116{bottom:516.240000px;}
.y5c_c01116{bottom:516.960000px;}
.y5b_c01116{bottom:517.680000px;}
.y5a_c01116{bottom:518.400000px;}
.y5f_c01116{bottom:519.120000px;}
.y5e_c01116{bottom:519.840000px;}
.y55_c01116{bottom:560.160000px;}
.y54_c01116{bottom:562.320000px;}
.y51_c01116{bottom:590.400000px;}
.y53_c01116{bottom:591.120000px;}
.y52_c01116{bottom:591.840000px;}
.y50_c01116{bottom:592.560000px;}
.y58_c01116{bottom:593.280000px;}
.y59_c01116{bottom:594.720000px;}
.y4f_c01116{bottom:633.600000px;}
.y4e_c01116{bottom:634.320000px;}
.y4d_c01116{bottom:635.040000px;}
.y56_c01116{bottom:635.760000px;}
.y57_c01116{bottom:637.920000px;}
.y4b_c01116{bottom:722.160000px;}
.y4c_c01116{bottom:722.880000px;}
.y4a_c01116{bottom:786.960000px;}
.y48_c01116{bottom:787.680000px;}
.y49_c01116{bottom:789.120000px;}
.y43_c01116{bottom:806.400000px;}
.y45_c01116{bottom:807.840000px;}
.y46_c01116{bottom:808.560000px;}
.y44_c01116{bottom:809.280000px;}
.y47_c01116{bottom:810.000000px;}
.y3f_c01116{bottom:828.720000px;}
.y41_c01116{bottom:829.440000px;}
.y40_c01116{bottom:830.880000px;}
.y42_c01116{bottom:831.600000px;}
.y39_c01116{bottom:850.320000px;}
.y3c_c01116{bottom:851.040000px;}
.y3b_c01116{bottom:851.760000px;}
.y3a_c01116{bottom:852.480000px;}
.y3e_c01116{bottom:853.200000px;}
.y3d_c01116{bottom:854.640000px;}
.y33_c01116{bottom:871.200000px;}
.y36_c01116{bottom:871.920000px;}
.y35_c01116{bottom:872.640000px;}
.y37_c01116{bottom:873.360000px;}
.y34_c01116{bottom:874.080000px;}
.y38_c01116{bottom:874.800000px;}
.y2e_c01116{bottom:893.520000px;}
.y30_c01116{bottom:894.240000px;}
.y2f_c01116{bottom:894.960000px;}
.y32_c01116{bottom:895.680000px;}
.y31_c01116{bottom:896.400000px;}
.y2c_c01116{bottom:902.160000px;}
.y2a_c01116{bottom:902.880000px;}
.y2d_c01116{bottom:903.600000px;}
.y2b_c01116{bottom:904.320000px;}
.y25_c01116{bottom:914.400000px;}
.y26_c01116{bottom:915.120000px;}
.y24_c01116{bottom:915.840000px;}
.y28_c01116{bottom:916.560000px;}
.y29_c01116{bottom:918.000000px;}
.y27_c01116{bottom:918.720000px;}
.y1e_c01116{bottom:933.840000px;}
.y20_c01116{bottom:936.000000px;}
.y22_c01116{bottom:936.720000px;}
.y1f_c01116{bottom:937.440000px;}
.y21_c01116{bottom:938.880000px;}
.y23_c01116{bottom:939.600000px;}
.y1a_c01116{bottom:958.320000px;}
.y1b_c01116{bottom:959.040000px;}
.y1d_c01116{bottom:960.480000px;}
.y1c_c01116{bottom:961.920000px;}
.y16_c01116{bottom:966.240000px;}
.y18_c01116{bottom:966.960000px;}
.y17_c01116{bottom:967.680000px;}
.y19_c01116{bottom:968.400000px;}
.yf_c01116{bottom:979.200000px;}
.y10_c01116{bottom:979.920000px;}
.y11_c01116{bottom:980.640000px;}
.y12_c01116{bottom:981.360000px;}
.y14_c01116{bottom:982.080000px;}
.y15_c01116{bottom:982.800000px;}
.y13_c01116{bottom:983.520000px;}
.y9_c01116{bottom:999.360000px;}
.ya_c01116{bottom:1001.520000px;}
.yb_c01116{bottom:1002.240000px;}
.yd_c01116{bottom:1002.960000px;}
.ye_c01116{bottom:1003.680000px;}
.yc_c01116{bottom:1005.840000px;}
.y6_c01116{bottom:1028.160000px;}
.y2_c01116{bottom:1030.320000px;}
.y8_c01116{bottom:1031.760000px;}
.y3_c01116{bottom:1032.480000px;}
.y4_c01116{bottom:1033.200000px;}
.y5_c01116{bottom:1033.920000px;}
.y7_c01116{bottom:1036.080000px;}
.y1_c01116{bottom:1095.840000px;}
.h10_c01116{height:31.100625px;}
.h12_c01116{height:33.692344px;}
.h4_c01116{height:38.875781px;}
.he_c01116{height:41.467500px;}
.h6_c01116{height:44.059219px;}
.h3_c01116{height:46.650937px;}
.hb_c01116{height:46.939219px;}
.hf_c01116{height:49.242656px;}
.h5_c01116{height:51.834375px;}
.h14_c01116{height:52.122656px;}
.h7_c01116{height:54.426094px;}
.h11_c01116{height:57.017812px;}
.hc_c01116{height:59.609531px;}
.hd_c01116{height:62.201250px;}
.h2_c01116{height:64.792969px;}
.h8_c01116{height:67.384687px;}
.h13_c01116{height:69.976406px;}
.h9_c01116{height:72.568125px;}
.ha_c01116{height:75.159844px;}
.h15_c01116{height:95.893594px;}
.h0_c01116{height:1141.920000px;}
.h1_c01116{height:1142.250000px;}
.w1_c01116{width:771.000000px;}
.w0_c01116{width:771.120000px;}
.x0_c01116{left:0.000000px;}
.x2_c01116{left:67.680000px;}
.x2e_c01116{left:69.120000px;}
.x1b_c01116{left:88.560000px;}
.x3_c01116{left:97.200000px;}
.x4_c01116{left:131.040000px;}
.x37_c01116{left:132.480000px;}
.x2a_c01116{left:151.200000px;}
.x28_c01116{left:152.640000px;}
.x39_c01116{left:154.080000px;}
.x1e_c01116{left:162.720000px;}
.x5_c01116{left:173.520000px;}
.x6_c01116{left:193.680000px;}
.x10_c01116{left:195.120000px;}
.x1f_c01116{left:196.560000px;}
.x20_c01116{left:205.200000px;}
.x38_c01116{left:206.640000px;}
.x3a_c01116{left:227.520000px;}
.x29_c01116{left:238.320000px;}
.x3b_c01116{left:239.760000px;}
.x26_c01116{left:247.680000px;}
.x7_c01116{left:249.120000px;}
.x2b_c01116{left:259.200000px;}
.x31_c01116{left:280.800000px;}
.x8_c01116{left:290.880000px;}
.x25_c01116{left:292.320000px;}
.x1c_c01116{left:300.960000px;}
.x17_c01116{left:302.400000px;}
.x27_c01116{left:313.200000px;}
.x1d_c01116{left:321.840000px;}
.x9_c01116{left:323.280000px;}
.x11_c01116{left:334.800000px;}
.x18_c01116{left:345.600000px;}
.x34_c01116{left:356.400000px;}
.x2f_c01116{left:357.840000px;}
.x12_c01116{left:367.200000px;}
.x19_c01116{left:377.280000px;}
.x23_c01116{left:378.720000px;}
.xa_c01116{left:399.600000px;}
.x3d_c01116{left:411.120000px;}
.x32_c01116{left:421.200000px;}
.xb_c01116{left:442.080000px;}
.x13_c01116{left:443.520000px;}
.x3c_c01116{left:465.120000px;}
.x33_c01116{left:475.200000px;}
.x30_c01116{left:486.720000px;}
.x35_c01116{left:491.040000px;}
.xc_c01116{left:518.400000px;}
.x36_c01116{left:540.000000px;}
.x2c_c01116{left:541.440000px;}
.xd_c01116{left:550.800000px;}
.x21_c01116{left:572.400000px;}
.x14_c01116{left:573.840000px;}
.x2d_c01116{left:594.000000px;}
.x22_c01116{left:595.440000px;}
.x15_c01116{left:606.240000px;}
.x1a_c01116{left:618.480000px;}
.xe_c01116{left:628.560000px;}
.x41_c01116{left:630.000000px;}
.x1_c01116{left:661.680000px;}
.x3f_c01116{left:663.120000px;}
.xf_c01116{left:671.760000px;}
.x24_c01116{left:695.520000px;}
.x16_c01116{left:704.880000px;}
.x3e_c01116{left:706.320000px;}
.x40_c01116{left:726.480000px;}
@media print{
.v2_c01116{vertical-align:-2.560000pt;}
.v0_c01116{vertical-align:0.000000pt;}
.v1_c01116{vertical-align:2.560000pt;}
.ls3_c01116{letter-spacing:0.000000pt;}
.ls2_c01116{letter-spacing:96.789547pt;}
.ls0_c01116{letter-spacing:174.757547pt;}
.ls1_c01116{letter-spacing:235.692160pt;}
.ws1_c01116{word-spacing:0.000000pt;}
.ws0_c01116{word-spacing:9.133867pt;}
.fsd_c01116{font-size:30.720000pt;}
.fsf_c01116{font-size:33.280000pt;}
.fs2_c01116{font-size:38.400000pt;}
.fsb_c01116{font-size:40.960000pt;}
.fs4_c01116{font-size:43.520000pt;}
.fs1_c01116{font-size:46.080000pt;}
.fsc_c01116{font-size:48.640000pt;}
.fs3_c01116{font-size:51.200000pt;}
.fs5_c01116{font-size:53.760000pt;}
.fse_c01116{font-size:56.320000pt;}
.fs9_c01116{font-size:58.880000pt;}
.fsa_c01116{font-size:61.440000pt;}
.fs0_c01116{font-size:64.000000pt;}
.fs6_c01116{font-size:66.560000pt;}
.fs10_c01116{font-size:69.120000pt;}
.fs7_c01116{font-size:71.680000pt;}
.fs8_c01116{font-size:74.240000pt;}
.fs11_c01116{font-size:94.720000pt;}
.y0_c01116{bottom:0.000000pt;}
.y85_c01116{bottom:68.480000pt;}
.y84_c01116{bottom:69.760000pt;}
.y87_c01116{bottom:70.400000pt;}
.y86_c01116{bottom:71.040000pt;}
.y83_c01116{bottom:72.320000pt;}
.y8c_c01116{bottom:95.360000pt;}
.y81_c01116{bottom:96.000000pt;}
.y80_c01116{bottom:96.640000pt;}
.y82_c01116{bottom:97.280000pt;}
.y7f_c01116{bottom:101.760000pt;}
.y8b_c01116{bottom:133.760000pt;}
.y7d_c01116{bottom:134.400000pt;}
.y7e_c01116{bottom:135.040000pt;}
.y7b_c01116{bottom:135.680000pt;}
.y7c_c01116{bottom:137.600000pt;}
.y7a_c01116{bottom:139.520000pt;}
.y79_c01116{bottom:213.760000pt;}
.y78_c01116{bottom:214.400000pt;}
.y77_c01116{bottom:215.680000pt;}
.y76_c01116{bottom:251.520000pt;}
.y8a_c01116{bottom:258.560000pt;}
.y73_c01116{bottom:259.200000pt;}
.y75_c01116{bottom:259.840000pt;}
.y71_c01116{bottom:260.480000pt;}
.y74_c01116{bottom:261.120000pt;}
.y72_c01116{bottom:261.760000pt;}
.y70_c01116{bottom:262.400000pt;}
.y6f_c01116{bottom:298.880000pt;}
.y6e_c01116{bottom:300.160000pt;}
.y6d_c01116{bottom:317.440000pt;}
.y6c_c01116{bottom:325.760000pt;}
.y89_c01116{bottom:326.400000pt;}
.y88_c01116{bottom:327.040000pt;}
.y6b_c01116{bottom:327.680000pt;}
.y6a_c01116{bottom:328.320000pt;}
.y69_c01116{bottom:364.800000pt;}
.y67_c01116{bottom:365.440000pt;}
.y68_c01116{bottom:366.720000pt;}
.y63_c01116{bottom:391.680000pt;}
.y64_c01116{bottom:392.320000pt;}
.y65_c01116{bottom:392.960000pt;}
.y66_c01116{bottom:393.600000pt;}
.y62_c01116{bottom:394.880000pt;}
.y61_c01116{bottom:430.720000pt;}
.y60_c01116{bottom:431.360000pt;}
.y5d_c01116{bottom:458.880000pt;}
.y5c_c01116{bottom:459.520000pt;}
.y5b_c01116{bottom:460.160000pt;}
.y5a_c01116{bottom:460.800000pt;}
.y5f_c01116{bottom:461.440000pt;}
.y5e_c01116{bottom:462.080000pt;}
.y55_c01116{bottom:497.920000pt;}
.y54_c01116{bottom:499.840000pt;}
.y51_c01116{bottom:524.800000pt;}
.y53_c01116{bottom:525.440000pt;}
.y52_c01116{bottom:526.080000pt;}
.y50_c01116{bottom:526.720000pt;}
.y58_c01116{bottom:527.360000pt;}
.y59_c01116{bottom:528.640000pt;}
.y4f_c01116{bottom:563.200000pt;}
.y4e_c01116{bottom:563.840000pt;}
.y4d_c01116{bottom:564.480000pt;}
.y56_c01116{bottom:565.120000pt;}
.y57_c01116{bottom:567.040000pt;}
.y4b_c01116{bottom:641.920000pt;}
.y4c_c01116{bottom:642.560000pt;}
.y4a_c01116{bottom:699.520000pt;}
.y48_c01116{bottom:700.160000pt;}
.y49_c01116{bottom:701.440000pt;}
.y43_c01116{bottom:716.800000pt;}
.y45_c01116{bottom:718.080000pt;}
.y46_c01116{bottom:718.720000pt;}
.y44_c01116{bottom:719.360000pt;}
.y47_c01116{bottom:720.000000pt;}
.y3f_c01116{bottom:736.640000pt;}
.y41_c01116{bottom:737.280000pt;}
.y40_c01116{bottom:738.560000pt;}
.y42_c01116{bottom:739.200000pt;}
.y39_c01116{bottom:755.840000pt;}
.y3c_c01116{bottom:756.480000pt;}
.y3b_c01116{bottom:757.120000pt;}
.y3a_c01116{bottom:757.760000pt;}
.y3e_c01116{bottom:758.400000pt;}
.y3d_c01116{bottom:759.680000pt;}
.y33_c01116{bottom:774.400000pt;}
.y36_c01116{bottom:775.040000pt;}
.y35_c01116{bottom:775.680000pt;}
.y37_c01116{bottom:776.320000pt;}
.y34_c01116{bottom:776.960000pt;}
.y38_c01116{bottom:777.600000pt;}
.y2e_c01116{bottom:794.240000pt;}
.y30_c01116{bottom:794.880000pt;}
.y2f_c01116{bottom:795.520000pt;}
.y32_c01116{bottom:796.160000pt;}
.y31_c01116{bottom:796.800000pt;}
.y2c_c01116{bottom:801.920000pt;}
.y2a_c01116{bottom:802.560000pt;}
.y2d_c01116{bottom:803.200000pt;}
.y2b_c01116{bottom:803.840000pt;}
.y25_c01116{bottom:812.800000pt;}
.y26_c01116{bottom:813.440000pt;}
.y24_c01116{bottom:814.080000pt;}
.y28_c01116{bottom:814.720000pt;}
.y29_c01116{bottom:816.000000pt;}
.y27_c01116{bottom:816.640000pt;}
.y1e_c01116{bottom:830.080000pt;}
.y20_c01116{bottom:832.000000pt;}
.y22_c01116{bottom:832.640000pt;}
.y1f_c01116{bottom:833.280000pt;}
.y21_c01116{bottom:834.560000pt;}
.y23_c01116{bottom:835.200000pt;}
.y1a_c01116{bottom:851.840000pt;}
.y1b_c01116{bottom:852.480000pt;}
.y1d_c01116{bottom:853.760000pt;}
.y1c_c01116{bottom:855.040000pt;}
.y16_c01116{bottom:858.880000pt;}
.y18_c01116{bottom:859.520000pt;}
.y17_c01116{bottom:860.160000pt;}
.y19_c01116{bottom:860.800000pt;}
.yf_c01116{bottom:870.400000pt;}
.y10_c01116{bottom:871.040000pt;}
.y11_c01116{bottom:871.680000pt;}
.y12_c01116{bottom:872.320000pt;}
.y14_c01116{bottom:872.960000pt;}
.y15_c01116{bottom:873.600000pt;}
.y13_c01116{bottom:874.240000pt;}
.y9_c01116{bottom:888.320000pt;}
.ya_c01116{bottom:890.240000pt;}
.yb_c01116{bottom:890.880000pt;}
.yd_c01116{bottom:891.520000pt;}
.ye_c01116{bottom:892.160000pt;}
.yc_c01116{bottom:894.080000pt;}
.y6_c01116{bottom:913.920000pt;}
.y2_c01116{bottom:915.840000pt;}
.y8_c01116{bottom:917.120000pt;}
.y3_c01116{bottom:917.760000pt;}
.y4_c01116{bottom:918.400000pt;}
.y5_c01116{bottom:919.040000pt;}
.y7_c01116{bottom:920.960000pt;}
.y1_c01116{bottom:974.080000pt;}
.h10_c01116{height:27.645000pt;}
.h12_c01116{height:29.948750pt;}
.h4_c01116{height:34.556250pt;}
.he_c01116{height:36.860000pt;}
.h6_c01116{height:39.163750pt;}
.h3_c01116{height:41.467500pt;}
.hb_c01116{height:41.723750pt;}
.hf_c01116{height:43.771250pt;}
.h5_c01116{height:46.075000pt;}
.h14_c01116{height:46.331250pt;}
.h7_c01116{height:48.378750pt;}
.h11_c01116{height:50.682500pt;}
.hc_c01116{height:52.986250pt;}
.hd_c01116{height:55.290000pt;}
.h2_c01116{height:57.593750pt;}
.h8_c01116{height:59.897500pt;}
.h13_c01116{height:62.201250pt;}
.h9_c01116{height:64.505000pt;}
.ha_c01116{height:66.808750pt;}
.h15_c01116{height:85.238750pt;}
.h0_c01116{height:1015.040000pt;}
.h1_c01116{height:1015.333333pt;}
.w1_c01116{width:685.333333pt;}
.w0_c01116{width:685.440000pt;}
.x0_c01116{left:0.000000pt;}
.x2_c01116{left:60.160000pt;}
.x2e_c01116{left:61.440000pt;}
.x1b_c01116{left:78.720000pt;}
.x3_c01116{left:86.400000pt;}
.x4_c01116{left:116.480000pt;}
.x37_c01116{left:117.760000pt;}
.x2a_c01116{left:134.400000pt;}
.x28_c01116{left:135.680000pt;}
.x39_c01116{left:136.960000pt;}
.x1e_c01116{left:144.640000pt;}
.x5_c01116{left:154.240000pt;}
.x6_c01116{left:172.160000pt;}
.x10_c01116{left:173.440000pt;}
.x1f_c01116{left:174.720000pt;}
.x20_c01116{left:182.400000pt;}
.x38_c01116{left:183.680000pt;}
.x3a_c01116{left:202.240000pt;}
.x29_c01116{left:211.840000pt;}
.x3b_c01116{left:213.120000pt;}
.x26_c01116{left:220.160000pt;}
.x7_c01116{left:221.440000pt;}
.x2b_c01116{left:230.400000pt;}
.x31_c01116{left:249.600000pt;}
.x8_c01116{left:258.560000pt;}
.x25_c01116{left:259.840000pt;}
.x1c_c01116{left:267.520000pt;}
.x17_c01116{left:268.800000pt;}
.x27_c01116{left:278.400000pt;}
.x1d_c01116{left:286.080000pt;}
.x9_c01116{left:287.360000pt;}
.x11_c01116{left:297.600000pt;}
.x18_c01116{left:307.200000pt;}
.x34_c01116{left:316.800000pt;}
.x2f_c01116{left:318.080000pt;}
.x12_c01116{left:326.400000pt;}
.x19_c01116{left:335.360000pt;}
.x23_c01116{left:336.640000pt;}
.xa_c01116{left:355.200000pt;}
.x3d_c01116{left:365.440000pt;}
.x32_c01116{left:374.400000pt;}
.xb_c01116{left:392.960000pt;}
.x13_c01116{left:394.240000pt;}
.x3c_c01116{left:413.440000pt;}
.x33_c01116{left:422.400000pt;}
.x30_c01116{left:432.640000pt;}
.x35_c01116{left:436.480000pt;}
.xc_c01116{left:460.800000pt;}
.x36_c01116{left:480.000000pt;}
.x2c_c01116{left:481.280000pt;}
.xd_c01116{left:489.600000pt;}
.x21_c01116{left:508.800000pt;}
.x14_c01116{left:510.080000pt;}
.x2d_c01116{left:528.000000pt;}
.x22_c01116{left:529.280000pt;}
.x15_c01116{left:538.880000pt;}
.x1a_c01116{left:549.760000pt;}
.xe_c01116{left:558.720000pt;}
.x41_c01116{left:560.000000pt;}
.x1_c01116{left:588.160000pt;}
.x3f_c01116{left:589.440000pt;}
.xf_c01116{left:597.120000pt;}
.x24_c01116{left:618.240000pt;}
.x16_c01116{left:626.560000pt;}
.x3e_c01116{left:627.840000pt;}
.x40_c01116{left:645.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1e790186ce05e302172b8283.woff2')format("woff");}.ff1_c01117{font-family:ff1_c01117;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m35_c01117{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);}
.mf_c01117{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m24_c01117{transform:matrix(0.239175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239175,0.000000,0.000000,0.250000,0,0);}
.m27_c01117{transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);}
.m3a_c01117{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m30_c01117{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m39_c01117{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m29_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);}
.me_c01117{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);}
.m2b_c01117{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);}
.m34_c01117{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);}
.m36_c01117{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m11_c01117{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_c01117{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m5_c01117{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_c01117{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m7_c01117{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1_c01117{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m32_c01117{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m4_c01117{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m9_c01117{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m25_c01117{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01117{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mc_c01117{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.ma_c01117{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01117{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m15_c01117{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01117{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m31_c01117{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m23_c01117{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m12_c01117{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m18_c01117{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01117{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m10_c01117{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m21_c01117{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m20_c01117{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_c01117{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01117{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m13_c01117{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01117{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);}
.m22_c01117{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m0_c01117{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m6_c01117{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);}
.m37_c01117{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01117{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m14_c01117{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);}
.mb_c01117{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01117{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);}
.m26_c01117{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);}
.m33_c01117{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);}
.m2e_c01117{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);}
.m3e_c01117{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_c01117{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01117{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);}
.m40_c01117{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m38_c01117{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m3_c01117{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01117{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);}
.m2_c01117{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);}
.m28_c01117{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01117{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01117{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m19_c01117{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m16_c01117{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01117{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);}
.v2_c01117{vertical-align:-2.880000px;}
.v0_c01117{vertical-align:0.000000px;}
.v3_c01117{vertical-align:5.760000px;}
.v1_c01117{vertical-align:8.640000px;}
.ls2_c01117{letter-spacing:0.000000px;}
.ls1_c01117{letter-spacing:45.308400px;}
.ls0_c01117{letter-spacing:47.972400px;}
.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;}
}
.ws2_c01117{word-spacing:0.000000px;}
.ws0_c01117{word-spacing:1.365600px;}
.ws1_c01117{word-spacing:13.463637px;}
.fc0_c01117{color:transparent;}
.fsc_c01117{font-size:37.440000px;}
.fs8_c01117{font-size:46.080000px;}
.fs2_c01117{font-size:48.960000px;}
.fs9_c01117{font-size:51.840000px;}
.fs3_c01117{font-size:54.720000px;}
.fs4_c01117{font-size:57.600000px;}
.fs0_c01117{font-size:60.480000px;}
.fs6_c01117{font-size:63.360000px;}
.fsb_c01117{font-size:66.240000px;}
.fsa_c01117{font-size:69.120000px;}
.fs7_c01117{font-size:72.000000px;}
.fs1_c01117{font-size:74.880000px;}
.fs5_c01117{font-size:77.760000px;}
.y0_c01117{bottom:0.000000px;}
.y7a_c01117{bottom:94.320000px;}
.y79_c01117{bottom:95.760000px;}
.y78_c01117{bottom:96.480000px;}
.y73_c01117{bottom:97.200000px;}
.y74_c01117{bottom:97.920000px;}
.y71_c01117{bottom:100.800000px;}
.y72_c01117{bottom:101.520000px;}
.y75_c01117{bottom:138.960000px;}
.y70_c01117{bottom:140.400000px;}
.y77_c01117{bottom:141.120000px;}
.y76_c01117{bottom:141.840000px;}
.y6e_c01117{bottom:143.280000px;}
.y6f_c01117{bottom:144.000000px;}
.y6d_c01117{bottom:183.600000px;}
.y69_c01117{bottom:213.840000px;}
.y67_c01117{bottom:214.560000px;}
.y6a_c01117{bottom:215.280000px;}
.y6c_c01117{bottom:216.000000px;}
.y6b_c01117{bottom:216.720000px;}
.y68_c01117{bottom:217.440000px;}
.y66_c01117{bottom:218.880000px;}
.y62_c01117{bottom:256.320000px;}
.y64_c01117{bottom:257.760000px;}
.y63_c01117{bottom:258.480000px;}
.y65_c01117{bottom:260.640000px;}
.y61_c01117{bottom:261.360000px;}
.y52_c01117{bottom:300.240000px;}
.y53_c01117{bottom:300.960000px;}
.y60_c01117{bottom:301.680000px;}
.y51_c01117{bottom:303.120000px;}
.y4f_c01117{bottom:342.720000px;}
.y5f_c01117{bottom:343.440000px;}
.y50_c01117{bottom:344.160000px;}
.y4e_c01117{bottom:346.320000px;}
.y4b_c01117{bottom:385.200000px;}
.y4d_c01117{bottom:385.920000px;}
.y4c_c01117{bottom:386.640000px;}
.y5e_c01117{bottom:387.360000px;}
.y4a_c01117{bottom:388.800000px;}
.y47_c01117{bottom:428.400000px;}
.y48_c01117{bottom:429.120000px;}
.y5d_c01117{bottom:429.840000px;}
.y46_c01117{bottom:430.560000px;}
.y49_c01117{bottom:431.280000px;}
.y45_c01117{bottom:471.600000px;}
.y5c_c01117{bottom:473.040000px;}
.y5b_c01117{bottom:473.760000px;}
.y44_c01117{bottom:474.480000px;}
.y42_c01117{bottom:514.080000px;}
.y43_c01117{bottom:516.240000px;}
.y41_c01117{bottom:516.960000px;}
.y40_c01117{bottom:558.000000px;}
.y3f_c01117{bottom:559.440000px;}
.y5a_c01117{bottom:560.160000px;}
.y59_c01117{bottom:560.880000px;}
.y3e_c01117{bottom:601.200000px;}
.y3d_c01117{bottom:602.640000px;}
.y55_c01117{bottom:603.360000px;}
.y57_c01117{bottom:605.520000px;}
.y58_c01117{bottom:606.240000px;}
.y56_c01117{bottom:607.680000px;}
.y3a_c01117{bottom:642.960000px;}
.y3c_c01117{bottom:644.400000px;}
.y39_c01117{bottom:645.120000px;}
.y54_c01117{bottom:646.560000px;}
.y3b_c01117{bottom:647.280000px;}
.y38_c01117{bottom:686.880000px;}
.y37_c01117{bottom:687.600000px;}
.y33_c01117{bottom:689.760000px;}
.y34_c01117{bottom:690.480000px;}
.y36_c01117{bottom:727.920000px;}
.y35_c01117{bottom:730.800000px;}
.y31_c01117{bottom:732.960000px;}
.y32_c01117{bottom:735.120000px;}
.y12_c01117{bottom:770.400000px;}
.y11_c01117{bottom:774.000000px;}
.y2f_c01117{bottom:776.160000px;}
.y2e_c01117{bottom:778.320000px;}
.y30_c01117{bottom:779.040000px;}
.y10_c01117{bottom:814.320000px;}
.yf_c01117{bottom:816.480000px;}
.y2b_c01117{bottom:818.640000px;}
.y1c_c01117{bottom:819.360000px;}
.y2d_c01117{bottom:820.800000px;}
.y1b_c01117{bottom:821.520000px;}
.y2c_c01117{bottom:822.960000px;}
.ye_c01117{bottom:856.080000px;}
.yd_c01117{bottom:858.240000px;}
.y1a_c01117{bottom:861.840000px;}
.y2a_c01117{bottom:863.280000px;}
.y19_c01117{bottom:864.000000px;}
.y29_c01117{bottom:864.720000px;}
.yc_c01117{bottom:899.280000px;}
.yb_c01117{bottom:901.440000px;}
.y18_c01117{bottom:905.040000px;}
.y28_c01117{bottom:906.480000px;}
.y17_c01117{bottom:907.200000px;}
.y27_c01117{bottom:908.640000px;}
.ya_c01117{bottom:941.760000px;}
.y9_c01117{bottom:943.200000px;}
.y23_c01117{bottom:948.240000px;}
.y16_c01117{bottom:948.960000px;}
.y25_c01117{bottom:949.680000px;}
.y15_c01117{bottom:950.400000px;}
.y24_c01117{bottom:951.120000px;}
.y26_c01117{bottom:951.840000px;}
.y8_c01117{bottom:984.240000px;}
.y7_c01117{bottom:986.400000px;}
.y14_c01117{bottom:991.440000px;}
.y21_c01117{bottom:992.880000px;}
.y13_c01117{bottom:994.320000px;}
.y22_c01117{bottom:995.040000px;}
.y2_c01117{bottom:1028.160000px;}
.y1_c01117{bottom:1029.600000px;}
.y4_c01117{bottom:1032.480000px;}
.y3_c01117{bottom:1033.920000px;}
.y6_c01117{bottom:1034.640000px;}
.y5_c01117{bottom:1035.360000px;}
.y1e_c01117{bottom:1036.080000px;}
.y1f_c01117{bottom:1038.240000px;}
.y20_c01117{bottom:1039.680000px;}
.y1d_c01117{bottom:1110.960000px;}
.h11_c01117{height:33.692344px;}
.ha_c01117{height:41.467500px;}
.h4_c01117{height:44.059219px;}
.hb_c01117{height:46.650937px;}
.h5_c01117{height:49.242656px;}
.h6_c01117{height:51.834375px;}
.h2_c01117{height:54.426094px;}
.h8_c01117{height:57.017812px;}
.h10_c01117{height:57.594375px;}
.hf_c01117{height:59.321250px;}
.he_c01117{height:59.609531px;}
.hd_c01117{height:60.474375px;}
.hc_c01117{height:62.201250px;}
.h9_c01117{height:64.792969px;}
.h3_c01117{height:67.384687px;}
.h7_c01117{height:69.976406px;}
.h1_c01117{height:1143.750000px;}
.h0_c01117{height:1144.080000px;}
.w1_c01117{width:773.250000px;}
.w0_c01117{width:773.280000px;}
.x0_c01117{left:0.000000px;}
.x1_c01117{left:66.240000px;}
.x14_c01117{left:67.680000px;}
.x1c_c01117{left:69.120000px;}
.x2b_c01117{left:71.280000px;}
.x2_c01117{left:149.040000px;}
.x15_c01117{left:150.480000px;}
.x24_c01117{left:151.920000px;}
.x2c_c01117{left:153.360000px;}
.x29_c01117{left:154.800000px;}
.x2a_c01117{left:195.840000px;}
.x12_c01117{left:237.600000px;}
.x16_c01117{left:280.080000px;}
.x18_c01117{left:291.600000px;}
.x19_c01117{left:312.480000px;}
.x17_c01117{left:322.560000px;}
.x3_c01117{left:331.920000px;}
.x27_c01117{left:336.240000px;}
.x13_c01117{left:365.760000px;}
.x1a_c01117{left:367.200000px;}
.x28_c01117{left:378.000000px;}
.x4_c01117{left:385.920000px;}
.x1b_c01117{left:410.400000px;}
.x5_c01117{left:540.000000px;}
.x2d_c01117{left:542.160000px;}
.x7_c01117{left:550.800000px;}
.x1f_c01117{left:552.240000px;}
.x6_c01117{left:570.960000px;}
.x8_c01117{left:572.400000px;}
.x20_c01117{left:574.560000px;}
.x11_c01117{left:593.280000px;}
.x22_c01117{left:594.720000px;}
.xa_c01117{left:625.680000px;}
.xe_c01117{left:627.120000px;}
.x1e_c01117{left:628.560000px;}
.x26_c01117{left:630.000000px;}
.xb_c01117{left:658.800000px;}
.xf_c01117{left:660.240000px;}
.x21_c01117{left:661.680000px;}
.x25_c01117{left:663.120000px;}
.x9_c01117{left:689.760000px;}
.xc_c01117{left:702.720000px;}
.x10_c01117{left:704.160000px;}
.x23_c01117{left:705.600000px;}
.x2e_c01117{left:707.040000px;}
.xd_c01117{left:723.600000px;}
.x1d_c01117{left:725.040000px;}
.x2f_c01117{left:727.920000px;}
@media print{
.v2_c01117{vertical-align:-2.560000pt;}
.v0_c01117{vertical-align:0.000000pt;}
.v3_c01117{vertical-align:5.120000pt;}
.v1_c01117{vertical-align:7.680000pt;}
.ls2_c01117{letter-spacing:0.000000pt;}
.ls1_c01117{letter-spacing:40.274133pt;}
.ls0_c01117{letter-spacing:42.642133pt;}
.ws2_c01117{word-spacing:0.000000pt;}
.ws0_c01117{word-spacing:1.213867pt;}
.ws1_c01117{word-spacing:11.967677pt;}
.fsc_c01117{font-size:33.280000pt;}
.fs8_c01117{font-size:40.960000pt;}
.fs2_c01117{font-size:43.520000pt;}
.fs9_c01117{font-size:46.080000pt;}
.fs3_c01117{font-size:48.640000pt;}
.fs4_c01117{font-size:51.200000pt;}
.fs0_c01117{font-size:53.760000pt;}
.fs6_c01117{font-size:56.320000pt;}
.fsb_c01117{font-size:58.880000pt;}
.fsa_c01117{font-size:61.440000pt;}
.fs7_c01117{font-size:64.000000pt;}
.fs1_c01117{font-size:66.560000pt;}
.fs5_c01117{font-size:69.120000pt;}
.y0_c01117{bottom:0.000000pt;}
.y7a_c01117{bottom:83.840000pt;}
.y79_c01117{bottom:85.120000pt;}
.y78_c01117{bottom:85.760000pt;}
.y73_c01117{bottom:86.400000pt;}
.y74_c01117{bottom:87.040000pt;}
.y71_c01117{bottom:89.600000pt;}
.y72_c01117{bottom:90.240000pt;}
.y75_c01117{bottom:123.520000pt;}
.y70_c01117{bottom:124.800000pt;}
.y77_c01117{bottom:125.440000pt;}
.y76_c01117{bottom:126.080000pt;}
.y6e_c01117{bottom:127.360000pt;}
.y6f_c01117{bottom:128.000000pt;}
.y6d_c01117{bottom:163.200000pt;}
.y69_c01117{bottom:190.080000pt;}
.y67_c01117{bottom:190.720000pt;}
.y6a_c01117{bottom:191.360000pt;}
.y6c_c01117{bottom:192.000000pt;}
.y6b_c01117{bottom:192.640000pt;}
.y68_c01117{bottom:193.280000pt;}
.y66_c01117{bottom:194.560000pt;}
.y62_c01117{bottom:227.840000pt;}
.y64_c01117{bottom:229.120000pt;}
.y63_c01117{bottom:229.760000pt;}
.y65_c01117{bottom:231.680000pt;}
.y61_c01117{bottom:232.320000pt;}
.y52_c01117{bottom:266.880000pt;}
.y53_c01117{bottom:267.520000pt;}
.y60_c01117{bottom:268.160000pt;}
.y51_c01117{bottom:269.440000pt;}
.y4f_c01117{bottom:304.640000pt;}
.y5f_c01117{bottom:305.280000pt;}
.y50_c01117{bottom:305.920000pt;}
.y4e_c01117{bottom:307.840000pt;}
.y4b_c01117{bottom:342.400000pt;}
.y4d_c01117{bottom:343.040000pt;}
.y4c_c01117{bottom:343.680000pt;}
.y5e_c01117{bottom:344.320000pt;}
.y4a_c01117{bottom:345.600000pt;}
.y47_c01117{bottom:380.800000pt;}
.y48_c01117{bottom:381.440000pt;}
.y5d_c01117{bottom:382.080000pt;}
.y46_c01117{bottom:382.720000pt;}
.y49_c01117{bottom:383.360000pt;}
.y45_c01117{bottom:419.200000pt;}
.y5c_c01117{bottom:420.480000pt;}
.y5b_c01117{bottom:421.120000pt;}
.y44_c01117{bottom:421.760000pt;}
.y42_c01117{bottom:456.960000pt;}
.y43_c01117{bottom:458.880000pt;}
.y41_c01117{bottom:459.520000pt;}
.y40_c01117{bottom:496.000000pt;}
.y3f_c01117{bottom:497.280000pt;}
.y5a_c01117{bottom:497.920000pt;}
.y59_c01117{bottom:498.560000pt;}
.y3e_c01117{bottom:534.400000pt;}
.y3d_c01117{bottom:535.680000pt;}
.y55_c01117{bottom:536.320000pt;}
.y57_c01117{bottom:538.240000pt;}
.y58_c01117{bottom:538.880000pt;}
.y56_c01117{bottom:540.160000pt;}
.y3a_c01117{bottom:571.520000pt;}
.y3c_c01117{bottom:572.800000pt;}
.y39_c01117{bottom:573.440000pt;}
.y54_c01117{bottom:574.720000pt;}
.y3b_c01117{bottom:575.360000pt;}
.y38_c01117{bottom:610.560000pt;}
.y37_c01117{bottom:611.200000pt;}
.y33_c01117{bottom:613.120000pt;}
.y34_c01117{bottom:613.760000pt;}
.y36_c01117{bottom:647.040000pt;}
.y35_c01117{bottom:649.600000pt;}
.y31_c01117{bottom:651.520000pt;}
.y32_c01117{bottom:653.440000pt;}
.y12_c01117{bottom:684.800000pt;}
.y11_c01117{bottom:688.000000pt;}
.y2f_c01117{bottom:689.920000pt;}
.y2e_c01117{bottom:691.840000pt;}
.y30_c01117{bottom:692.480000pt;}
.y10_c01117{bottom:723.840000pt;}
.yf_c01117{bottom:725.760000pt;}
.y2b_c01117{bottom:727.680000pt;}
.y1c_c01117{bottom:728.320000pt;}
.y2d_c01117{bottom:729.600000pt;}
.y1b_c01117{bottom:730.240000pt;}
.y2c_c01117{bottom:731.520000pt;}
.ye_c01117{bottom:760.960000pt;}
.yd_c01117{bottom:762.880000pt;}
.y1a_c01117{bottom:766.080000pt;}
.y2a_c01117{bottom:767.360000pt;}
.y19_c01117{bottom:768.000000pt;}
.y29_c01117{bottom:768.640000pt;}
.yc_c01117{bottom:799.360000pt;}
.yb_c01117{bottom:801.280000pt;}
.y18_c01117{bottom:804.480000pt;}
.y28_c01117{bottom:805.760000pt;}
.y17_c01117{bottom:806.400000pt;}
.y27_c01117{bottom:807.680000pt;}
.ya_c01117{bottom:837.120000pt;}
.y9_c01117{bottom:838.400000pt;}
.y23_c01117{bottom:842.880000pt;}
.y16_c01117{bottom:843.520000pt;}
.y25_c01117{bottom:844.160000pt;}
.y15_c01117{bottom:844.800000pt;}
.y24_c01117{bottom:845.440000pt;}
.y26_c01117{bottom:846.080000pt;}
.y8_c01117{bottom:874.880000pt;}
.y7_c01117{bottom:876.800000pt;}
.y14_c01117{bottom:881.280000pt;}
.y21_c01117{bottom:882.560000pt;}
.y13_c01117{bottom:883.840000pt;}
.y22_c01117{bottom:884.480000pt;}
.y2_c01117{bottom:913.920000pt;}
.y1_c01117{bottom:915.200000pt;}
.y4_c01117{bottom:917.760000pt;}
.y3_c01117{bottom:919.040000pt;}
.y6_c01117{bottom:919.680000pt;}
.y5_c01117{bottom:920.320000pt;}
.y1e_c01117{bottom:920.960000pt;}
.y1f_c01117{bottom:922.880000pt;}
.y20_c01117{bottom:924.160000pt;}
.y1d_c01117{bottom:987.520000pt;}
.h11_c01117{height:29.948750pt;}
.ha_c01117{height:36.860000pt;}
.h4_c01117{height:39.163750pt;}
.hb_c01117{height:41.467500pt;}
.h5_c01117{height:43.771250pt;}
.h6_c01117{height:46.075000pt;}
.h2_c01117{height:48.378750pt;}
.h8_c01117{height:50.682500pt;}
.h10_c01117{height:51.195000pt;}
.hf_c01117{height:52.730000pt;}
.he_c01117{height:52.986250pt;}
.hd_c01117{height:53.755000pt;}
.hc_c01117{height:55.290000pt;}
.h9_c01117{height:57.593750pt;}
.h3_c01117{height:59.897500pt;}
.h7_c01117{height:62.201250pt;}
.h1_c01117{height:1016.666667pt;}
.h0_c01117{height:1016.960000pt;}
.w1_c01117{width:687.333333pt;}
.w0_c01117{width:687.360000pt;}
.x0_c01117{left:0.000000pt;}
.x1_c01117{left:58.880000pt;}
.x14_c01117{left:60.160000pt;}
.x1c_c01117{left:61.440000pt;}
.x2b_c01117{left:63.360000pt;}
.x2_c01117{left:132.480000pt;}
.x15_c01117{left:133.760000pt;}
.x24_c01117{left:135.040000pt;}
.x2c_c01117{left:136.320000pt;}
.x29_c01117{left:137.600000pt;}
.x2a_c01117{left:174.080000pt;}
.x12_c01117{left:211.200000pt;}
.x16_c01117{left:248.960000pt;}
.x18_c01117{left:259.200000pt;}
.x19_c01117{left:277.760000pt;}
.x17_c01117{left:286.720000pt;}
.x3_c01117{left:295.040000pt;}
.x27_c01117{left:298.880000pt;}
.x13_c01117{left:325.120000pt;}
.x1a_c01117{left:326.400000pt;}
.x28_c01117{left:336.000000pt;}
.x4_c01117{left:343.040000pt;}
.x1b_c01117{left:364.800000pt;}
.x5_c01117{left:480.000000pt;}
.x2d_c01117{left:481.920000pt;}
.x7_c01117{left:489.600000pt;}
.x1f_c01117{left:490.880000pt;}
.x6_c01117{left:507.520000pt;}
.x8_c01117{left:508.800000pt;}
.x20_c01117{left:510.720000pt;}
.x11_c01117{left:527.360000pt;}
.x22_c01117{left:528.640000pt;}
.xa_c01117{left:556.160000pt;}
.xe_c01117{left:557.440000pt;}
.x1e_c01117{left:558.720000pt;}
.x26_c01117{left:560.000000pt;}
.xb_c01117{left:585.600000pt;}
.xf_c01117{left:586.880000pt;}
.x21_c01117{left:588.160000pt;}
.x25_c01117{left:589.440000pt;}
.x9_c01117{left:613.120000pt;}
.xc_c01117{left:624.640000pt;}
.x10_c01117{left:625.920000pt;}
.x23_c01117{left:627.200000pt;}
.x2e_c01117{left:628.480000pt;}
.xd_c01117{left:643.200000pt;}
.x1d_c01117{left:644.480000pt;}
.x2f_c01117{left:647.040000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_40aa341ac19a9a9fc3c6b689.woff2')format("woff");}.ff1_c01118{font-family:ff1_c01118;line-height:1.109863;font-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.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01118{transform:matrix(0.234675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234675,0.000000,0.000000,0.250000,0,0);}
.m2b_c01118{transform:matrix(0.236075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236075,0.000000,0.000000,0.250000,0,0);}
.m52_c01118{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m20_c01118{transform:matrix(0.245675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245675,0.000000,0.000000,0.250000,0,0);}
.mb_c01118{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);}
.m18_c01118{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m7_c01118{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);}
.m29_c01118{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m16_c01118{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m3_c01118{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m22_c01118{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_c01118{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m6_c01118{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m30_c01118{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01118{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m13_c01118{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m15_c01118{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.me_c01118{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m36_c01118{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m4_c01118{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.md_c01118{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01118{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01118{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mf_c01118{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m11_c01118{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m21_c01118{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01118{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.ma_c01118{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m5_c01118{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m17_c01118{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m27_c01118{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m56_c01118{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);}
.m3a_c01118{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m12_c01118{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);}
.m32_c01118{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.mc_c01118{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m10_c01118{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m9_c01118{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_c01118{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);}
.m4a_c01118{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m19_c01118{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01118{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01118{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);}
.m3e_c01118{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);}
.m51_c01118{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01118{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);}
.m47_c01118{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01118{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m1_c01118{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);}
.m2_c01118{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);}
.m0_c01118{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m45_c01118{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m5b_c01118{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);}
.m4e_c01118{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m40_c01118{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);}
.m2e_c01118{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);}
.m4f_c01118{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m53_c01118{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01118{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01118{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);}
.m38_c01118{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);}
.m28_c01118{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m33_c01118{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m34_c01118{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m46_c01118{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);}
.m3b_c01118{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m42_c01118{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);}
.m8_c01118{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m59_c01118{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m5c_c01118{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m48_c01118{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);}
.m37_c01118{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m35_c01118{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m58_c01118{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01118{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m5d_c01118{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01118{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);}
.m50_c01118{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01118{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01118{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m23_c01118{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m54_c01118{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);}
.m5a_c01118{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m31_c01118{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m43_c01118{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01118{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m44_c01118{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);}
.m26_c01118{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m49_c01118{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m55_c01118{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);}
.m57_c01118{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);}
.m39_c01118{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m41_c01118{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.v0_c01118{vertical-align:0.000000px;}
.v1_c01118{vertical-align:2.880000px;}
.v2_c01118{vertical-align:5.760000px;}
.v3_c01118{vertical-align:8.640000px;}
.ls2_c01118{letter-spacing:0.000000px;}
.ls1_c01118{letter-spacing:26.250000px;}
.ls0_c01118{letter-spacing:47.972400px;}
.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;}
}
.ws2_c01118{word-spacing:0.000000px;}
.ws1_c01118{word-spacing:11.726957px;}
.ws0_c01118{word-spacing:190.368000px;}
.fc0_c01118{color:transparent;}
.fsd_c01118{font-size:14.400000px;}
.fsb_c01118{font-size:23.040000px;}
.fsf_c01118{font-size:37.440000px;}
.fsc_c01118{font-size:40.320000px;}
.fse_c01118{font-size:46.080000px;}
.fsa_c01118{font-size:48.960000px;}
.fs2_c01118{font-size:51.840000px;}
.fs1_c01118{font-size:54.720000px;}
.fs5_c01118{font-size:57.600000px;}
.fs6_c01118{font-size:60.480000px;}
.fs4_c01118{font-size:63.360000px;}
.fs8_c01118{font-size:66.240000px;}
.fs0_c01118{font-size:69.120000px;}
.fs7_c01118{font-size:72.000000px;}
.fs9_c01118{font-size:74.880000px;}
.fs3_c01118{font-size:77.760000px;}
.y0_c01118{bottom:0.000000px;}
.y79_c01118{bottom:56.880000px;}
.y76_c01118{bottom:59.040000px;}
.y78_c01118{bottom:59.760000px;}
.y77_c01118{bottom:60.480000px;}
.y75_c01118{bottom:61.200000px;}
.y71_c01118{bottom:99.360000px;}
.y74_c01118{bottom:100.080000px;}
.y6e_c01118{bottom:101.520000px;}
.y73_c01118{bottom:102.240000px;}
.y72_c01118{bottom:102.960000px;}
.y70_c01118{bottom:103.680000px;}
.y6f_c01118{bottom:104.400000px;}
.y6b_c01118{bottom:144.000000px;}
.y6c_c01118{bottom:144.720000px;}
.y6d_c01118{bottom:145.440000px;}
.y69_c01118{bottom:146.160000px;}
.y6a_c01118{bottom:146.880000px;}
.y68_c01118{bottom:147.600000px;}
.y67_c01118{bottom:196.560000px;}
.y66_c01118{bottom:197.280000px;}
.y65_c01118{bottom:198.000000px;}
.y64_c01118{bottom:199.440000px;}
.y63_c01118{bottom:239.040000px;}
.y61_c01118{bottom:240.480000px;}
.y5f_c01118{bottom:241.200000px;}
.y62_c01118{bottom:242.640000px;}
.y60_c01118{bottom:243.360000px;}
.y5e_c01118{bottom:244.080000px;}
.y5a_c01118{bottom:282.240000px;}
.y5c_c01118{bottom:282.960000px;}
.y5b_c01118{bottom:284.400000px;}
.y5d_c01118{bottom:285.840000px;}
.y59_c01118{bottom:286.560000px;}
.y57_c01118{bottom:336.240000px;}
.y58_c01118{bottom:339.120000px;}
.y55_c01118{bottom:339.840000px;}
.y56_c01118{bottom:340.560000px;}
.y53_c01118{bottom:379.440000px;}
.y54_c01118{bottom:380.160000px;}
.y51_c01118{bottom:382.320000px;}
.y50_c01118{bottom:383.040000px;}
.y52_c01118{bottom:385.920000px;}
.y4d_c01118{bottom:424.800000px;}
.y4c_c01118{bottom:425.520000px;}
.y4e_c01118{bottom:426.240000px;}
.y4f_c01118{bottom:426.960000px;}
.y48_c01118{bottom:486.000000px;}
.y49_c01118{bottom:487.440000px;}
.y4a_c01118{bottom:489.600000px;}
.y44_c01118{bottom:519.120000px;}
.y43_c01118{bottom:519.840000px;}
.y45_c01118{bottom:520.560000px;}
.y47_c01118{bottom:521.280000px;}
.y46_c01118{bottom:522.000000px;}
.y4b_c01118{bottom:522.720000px;}
.y3f_c01118{bottom:560.880000px;}
.y3d_c01118{bottom:561.600000px;}
.y41_c01118{bottom:562.320000px;}
.y3e_c01118{bottom:563.040000px;}
.y40_c01118{bottom:564.480000px;}
.y42_c01118{bottom:565.200000px;}
.y39_c01118{bottom:593.280000px;}
.y38_c01118{bottom:594.000000px;}
.y3b_c01118{bottom:596.160000px;}
.y3a_c01118{bottom:597.600000px;}
.y3c_c01118{bottom:598.320000px;}
.y33_c01118{bottom:636.480000px;}
.y32_c01118{bottom:637.200000px;}
.y34_c01118{bottom:638.640000px;}
.y36_c01118{bottom:639.360000px;}
.y35_c01118{bottom:640.800000px;}
.y37_c01118{bottom:641.520000px;}
.y2d_c01118{bottom:678.960000px;}
.y2e_c01118{bottom:679.680000px;}
.y2f_c01118{bottom:681.120000px;}
.y30_c01118{bottom:681.840000px;}
.y31_c01118{bottom:684.000000px;}
.y2a_c01118{bottom:722.160000px;}
.y2b_c01118{bottom:725.040000px;}
.y2c_c01118{bottom:725.760000px;}
.y26_c01118{bottom:763.920000px;}
.y25_c01118{bottom:764.640000px;}
.y27_c01118{bottom:765.360000px;}
.y28_c01118{bottom:768.240000px;}
.y29_c01118{bottom:771.120000px;}
.y20_c01118{bottom:806.400000px;}
.y1f_c01118{bottom:807.840000px;}
.y21_c01118{bottom:808.560000px;}
.y22_c01118{bottom:811.440000px;}
.y23_c01118{bottom:812.160000px;}
.y24_c01118{bottom:812.880000px;}
.y19_c01118{bottom:848.880000px;}
.y18_c01118{bottom:851.040000px;}
.y1a_c01118{bottom:853.920000px;}
.y1b_c01118{bottom:854.640000px;}
.y1c_c01118{bottom:855.360000px;}
.y1e_c01118{bottom:856.080000px;}
.y1d_c01118{bottom:856.800000px;}
.y14_c01118{bottom:892.080000px;}
.y13_c01118{bottom:893.520000px;}
.y16_c01118{bottom:898.560000px;}
.y17_c01118{bottom:899.280000px;}
.y15_c01118{bottom:900.000000px;}
.ye_c01118{bottom:936.000000px;}
.y10_c01118{bottom:936.720000px;}
.yf_c01118{bottom:938.880000px;}
.y11_c01118{bottom:941.040000px;}
.y12_c01118{bottom:943.200000px;}
.ya_c01118{bottom:979.200000px;}
.y8_c01118{bottom:979.920000px;}
.yb_c01118{bottom:980.640000px;}
.y9_c01118{bottom:982.080000px;}
.yc_c01118{bottom:984.960000px;}
.yd_c01118{bottom:986.400000px;}
.y4_c01118{bottom:1021.680000px;}
.y2_c01118{bottom:1022.400000px;}
.y3_c01118{bottom:1023.840000px;}
.y5_c01118{bottom:1027.440000px;}
.y6_c01118{bottom:1028.160000px;}
.y7_c01118{bottom:1028.880000px;}
.y1_c01118{bottom:1100.880000px;}
.h11_c01118{height:12.958594px;}
.hf_c01118{height:20.733750px;}
.h13_c01118{height:33.692344px;}
.h10_c01118{height:36.284062px;}
.h12_c01118{height:41.467500px;}
.he_c01118{height:44.059219px;}
.h4_c01118{height:46.650937px;}
.h3_c01118{height:49.242656px;}
.h7_c01118{height:51.834375px;}
.h8_c01118{height:54.426094px;}
.ha_c01118{height:54.714375px;}
.h6_c01118{height:57.017812px;}
.hd_c01118{height:57.594375px;}
.hb_c01118{height:59.609531px;}
.h14_c01118{height:60.474375px;}
.h2_c01118{height:62.201250px;}
.h9_c01118{height:64.792969px;}
.hc_c01118{height:67.384687px;}
.h5_c01118{height:69.976406px;}
.h0_c01118{height:1137.600000px;}
.h1_c01118{height:1137.750000px;}
.w1_c01118{width:783.000000px;}
.w0_c01118{width:783.360000px;}
.x0_c01118{left:0.000000px;}
.x2_c01118{left:79.920000px;}
.xc_c01118{left:81.360000px;}
.x1d_c01118{left:82.800000px;}
.x39_c01118{left:84.240000px;}
.x4a_c01118{left:85.680000px;}
.x31_c01118{left:114.480000px;}
.x3a_c01118{left:125.280000px;}
.x42_c01118{left:127.440000px;}
.x52_c01118{left:138.240000px;}
.x58_c01118{left:147.600000px;}
.x3_c01118{left:164.160000px;}
.xd_c01118{left:165.600000px;}
.x1b_c01118{left:167.040000px;}
.x25_c01118{left:168.480000px;}
.x53_c01118{left:169.920000px;}
.x32_c01118{left:179.280000px;}
.x2b_c01118{left:188.640000px;}
.x3c_c01118{left:190.800000px;}
.x3b_c01118{left:200.160000px;}
.x4_c01118{left:207.360000px;}
.x22_c01118{left:211.680000px;}
.x23_c01118{left:221.040000px;}
.x3d_c01118{left:222.480000px;}
.x2c_c01118{left:233.280000px;}
.x59_c01118{left:234.720000px;}
.xe_c01118{left:250.560000px;}
.x17_c01118{left:252.000000px;}
.x3e_c01118{left:254.880000px;}
.x43_c01118{left:257.040000px;}
.xa_c01118{left:264.240000px;}
.x29_c01118{left:274.320000px;}
.x2d_c01118{left:285.120000px;}
.x4d_c01118{left:287.280000px;}
.x13_c01118{left:294.480000px;}
.x1c_c01118{left:305.280000px;}
.x26_c01118{left:306.720000px;}
.x18_c01118{left:316.080000px;}
.x44_c01118{left:319.680000px;}
.x16_c01118{left:326.880000px;}
.x2a_c01118{left:328.320000px;}
.x54_c01118{left:330.480000px;}
.x14_c01118{left:336.240000px;}
.x4b_c01118{left:340.560000px;}
.x3f_c01118{left:351.360000px;}
.x27_c01118{left:360.720000px;}
.x45_c01118{left:362.160000px;}
.x19_c01118{left:370.080000px;}
.x1e_c01118{left:371.520000px;}
.x4c_c01118{left:383.040000px;}
.x33_c01118{left:393.840000px;}
.x5a_c01118{left:406.080000px;}
.x24_c01118{left:425.520000px;}
.x46_c01118{left:437.760000px;}
.x5b_c01118{left:450.000000px;}
.x40_c01118{left:460.080000px;}
.x1f_c01118{left:467.280000px;}
.x34_c01118{left:469.440000px;}
.x2e_c01118{left:480.240000px;}
.x28_c01118{left:490.320000px;}
.x4e_c01118{left:492.480000px;}
.x35_c01118{left:501.120000px;}
.x55_c01118{left:503.280000px;}
.x47_c01118{left:514.080000px;}
.x2f_c01118{left:523.440000px;}
.x36_c01118{left:534.240000px;}
.x4f_c01118{left:535.680000px;}
.x37_c01118{left:545.760000px;}
.x5_c01118{left:553.680000px;}
.x1a_c01118{left:555.120000px;}
.x48_c01118{left:557.280000px;}
.x10_c01118{left:565.920000px;}
.x38_c01118{left:567.360000px;}
.x50_c01118{left:570.240000px;}
.x11_c01118{left:586.800000px;}
.x30_c01118{left:599.760000px;}
.x6_c01118{left:608.400000px;}
.x49_c01118{left:609.840000px;}
.x56_c01118{left:622.800000px;}
.x41_c01118{left:633.600000px;}
.x12_c01118{left:641.520000px;}
.x20_c01118{left:643.680000px;}
.x7_c01118{left:665.280000px;}
.x51_c01118{left:667.440000px;}
.xf_c01118{left:674.640000px;}
.x15_c01118{left:676.080000px;}
.x57_c01118{left:689.040000px;}
.x1_c01118{left:704.160000px;}
.x21_c01118{left:709.200000px;}
.xb_c01118{left:717.120000px;}
.x8_c01118{left:718.560000px;}
.x9_c01118{left:738.720000px;}
@media print{
.v0_c01118{vertical-align:0.000000pt;}
.v1_c01118{vertical-align:2.560000pt;}
.v2_c01118{vertical-align:5.120000pt;}
.v3_c01118{vertical-align:7.680000pt;}
.ls2_c01118{letter-spacing:0.000000pt;}
.ls1_c01118{letter-spacing:23.333333pt;}
.ls0_c01118{letter-spacing:42.642133pt;}
.ws2_c01118{word-spacing:0.000000pt;}
.ws1_c01118{word-spacing:10.423962pt;}
.ws0_c01118{word-spacing:169.216000pt;}
.fsd_c01118{font-size:12.800000pt;}
.fsb_c01118{font-size:20.480000pt;}
.fsf_c01118{font-size:33.280000pt;}
.fsc_c01118{font-size:35.840000pt;}
.fse_c01118{font-size:40.960000pt;}
.fsa_c01118{font-size:43.520000pt;}
.fs2_c01118{font-size:46.080000pt;}
.fs1_c01118{font-size:48.640000pt;}
.fs5_c01118{font-size:51.200000pt;}
.fs6_c01118{font-size:53.760000pt;}
.fs4_c01118{font-size:56.320000pt;}
.fs8_c01118{font-size:58.880000pt;}
.fs0_c01118{font-size:61.440000pt;}
.fs7_c01118{font-size:64.000000pt;}
.fs9_c01118{font-size:66.560000pt;}
.fs3_c01118{font-size:69.120000pt;}
.y0_c01118{bottom:0.000000pt;}
.y79_c01118{bottom:50.560000pt;}
.y76_c01118{bottom:52.480000pt;}
.y78_c01118{bottom:53.120000pt;}
.y77_c01118{bottom:53.760000pt;}
.y75_c01118{bottom:54.400000pt;}
.y71_c01118{bottom:88.320000pt;}
.y74_c01118{bottom:88.960000pt;}
.y6e_c01118{bottom:90.240000pt;}
.y73_c01118{bottom:90.880000pt;}
.y72_c01118{bottom:91.520000pt;}
.y70_c01118{bottom:92.160000pt;}
.y6f_c01118{bottom:92.800000pt;}
.y6b_c01118{bottom:128.000000pt;}
.y6c_c01118{bottom:128.640000pt;}
.y6d_c01118{bottom:129.280000pt;}
.y69_c01118{bottom:129.920000pt;}
.y6a_c01118{bottom:130.560000pt;}
.y68_c01118{bottom:131.200000pt;}
.y67_c01118{bottom:174.720000pt;}
.y66_c01118{bottom:175.360000pt;}
.y65_c01118{bottom:176.000000pt;}
.y64_c01118{bottom:177.280000pt;}
.y63_c01118{bottom:212.480000pt;}
.y61_c01118{bottom:213.760000pt;}
.y5f_c01118{bottom:214.400000pt;}
.y62_c01118{bottom:215.680000pt;}
.y60_c01118{bottom:216.320000pt;}
.y5e_c01118{bottom:216.960000pt;}
.y5a_c01118{bottom:250.880000pt;}
.y5c_c01118{bottom:251.520000pt;}
.y5b_c01118{bottom:252.800000pt;}
.y5d_c01118{bottom:254.080000pt;}
.y59_c01118{bottom:254.720000pt;}
.y57_c01118{bottom:298.880000pt;}
.y58_c01118{bottom:301.440000pt;}
.y55_c01118{bottom:302.080000pt;}
.y56_c01118{bottom:302.720000pt;}
.y53_c01118{bottom:337.280000pt;}
.y54_c01118{bottom:337.920000pt;}
.y51_c01118{bottom:339.840000pt;}
.y50_c01118{bottom:340.480000pt;}
.y52_c01118{bottom:343.040000pt;}
.y4d_c01118{bottom:377.600000pt;}
.y4c_c01118{bottom:378.240000pt;}
.y4e_c01118{bottom:378.880000pt;}
.y4f_c01118{bottom:379.520000pt;}
.y48_c01118{bottom:432.000000pt;}
.y49_c01118{bottom:433.280000pt;}
.y4a_c01118{bottom:435.200000pt;}
.y44_c01118{bottom:461.440000pt;}
.y43_c01118{bottom:462.080000pt;}
.y45_c01118{bottom:462.720000pt;}
.y47_c01118{bottom:463.360000pt;}
.y46_c01118{bottom:464.000000pt;}
.y4b_c01118{bottom:464.640000pt;}
.y3f_c01118{bottom:498.560000pt;}
.y3d_c01118{bottom:499.200000pt;}
.y41_c01118{bottom:499.840000pt;}
.y3e_c01118{bottom:500.480000pt;}
.y40_c01118{bottom:501.760000pt;}
.y42_c01118{bottom:502.400000pt;}
.y39_c01118{bottom:527.360000pt;}
.y38_c01118{bottom:528.000000pt;}
.y3b_c01118{bottom:529.920000pt;}
.y3a_c01118{bottom:531.200000pt;}
.y3c_c01118{bottom:531.840000pt;}
.y33_c01118{bottom:565.760000pt;}
.y32_c01118{bottom:566.400000pt;}
.y34_c01118{bottom:567.680000pt;}
.y36_c01118{bottom:568.320000pt;}
.y35_c01118{bottom:569.600000pt;}
.y37_c01118{bottom:570.240000pt;}
.y2d_c01118{bottom:603.520000pt;}
.y2e_c01118{bottom:604.160000pt;}
.y2f_c01118{bottom:605.440000pt;}
.y30_c01118{bottom:606.080000pt;}
.y31_c01118{bottom:608.000000pt;}
.y2a_c01118{bottom:641.920000pt;}
.y2b_c01118{bottom:644.480000pt;}
.y2c_c01118{bottom:645.120000pt;}
.y26_c01118{bottom:679.040000pt;}
.y25_c01118{bottom:679.680000pt;}
.y27_c01118{bottom:680.320000pt;}
.y28_c01118{bottom:682.880000pt;}
.y29_c01118{bottom:685.440000pt;}
.y20_c01118{bottom:716.800000pt;}
.y1f_c01118{bottom:718.080000pt;}
.y21_c01118{bottom:718.720000pt;}
.y22_c01118{bottom:721.280000pt;}
.y23_c01118{bottom:721.920000pt;}
.y24_c01118{bottom:722.560000pt;}
.y19_c01118{bottom:754.560000pt;}
.y18_c01118{bottom:756.480000pt;}
.y1a_c01118{bottom:759.040000pt;}
.y1b_c01118{bottom:759.680000pt;}
.y1c_c01118{bottom:760.320000pt;}
.y1e_c01118{bottom:760.960000pt;}
.y1d_c01118{bottom:761.600000pt;}
.y14_c01118{bottom:792.960000pt;}
.y13_c01118{bottom:794.240000pt;}
.y16_c01118{bottom:798.720000pt;}
.y17_c01118{bottom:799.360000pt;}
.y15_c01118{bottom:800.000000pt;}
.ye_c01118{bottom:832.000000pt;}
.y10_c01118{bottom:832.640000pt;}
.yf_c01118{bottom:834.560000pt;}
.y11_c01118{bottom:836.480000pt;}
.y12_c01118{bottom:838.400000pt;}
.ya_c01118{bottom:870.400000pt;}
.y8_c01118{bottom:871.040000pt;}
.yb_c01118{bottom:871.680000pt;}
.y9_c01118{bottom:872.960000pt;}
.yc_c01118{bottom:875.520000pt;}
.yd_c01118{bottom:876.800000pt;}
.y4_c01118{bottom:908.160000pt;}
.y2_c01118{bottom:908.800000pt;}
.y3_c01118{bottom:910.080000pt;}
.y5_c01118{bottom:913.280000pt;}
.y6_c01118{bottom:913.920000pt;}
.y7_c01118{bottom:914.560000pt;}
.y1_c01118{bottom:978.560000pt;}
.h11_c01118{height:11.518750pt;}
.hf_c01118{height:18.430000pt;}
.h13_c01118{height:29.948750pt;}
.h10_c01118{height:32.252500pt;}
.h12_c01118{height:36.860000pt;}
.he_c01118{height:39.163750pt;}
.h4_c01118{height:41.467500pt;}
.h3_c01118{height:43.771250pt;}
.h7_c01118{height:46.075000pt;}
.h8_c01118{height:48.378750pt;}
.ha_c01118{height:48.635000pt;}
.h6_c01118{height:50.682500pt;}
.hd_c01118{height:51.195000pt;}
.hb_c01118{height:52.986250pt;}
.h14_c01118{height:53.755000pt;}
.h2_c01118{height:55.290000pt;}
.h9_c01118{height:57.593750pt;}
.hc_c01118{height:59.897500pt;}
.h5_c01118{height:62.201250pt;}
.h0_c01118{height:1011.200000pt;}
.h1_c01118{height:1011.333333pt;}
.w1_c01118{width:696.000000pt;}
.w0_c01118{width:696.320000pt;}
.x0_c01118{left:0.000000pt;}
.x2_c01118{left:71.040000pt;}
.xc_c01118{left:72.320000pt;}
.x1d_c01118{left:73.600000pt;}
.x39_c01118{left:74.880000pt;}
.x4a_c01118{left:76.160000pt;}
.x31_c01118{left:101.760000pt;}
.x3a_c01118{left:111.360000pt;}
.x42_c01118{left:113.280000pt;}
.x52_c01118{left:122.880000pt;}
.x58_c01118{left:131.200000pt;}
.x3_c01118{left:145.920000pt;}
.xd_c01118{left:147.200000pt;}
.x1b_c01118{left:148.480000pt;}
.x25_c01118{left:149.760000pt;}
.x53_c01118{left:151.040000pt;}
.x32_c01118{left:159.360000pt;}
.x2b_c01118{left:167.680000pt;}
.x3c_c01118{left:169.600000pt;}
.x3b_c01118{left:177.920000pt;}
.x4_c01118{left:184.320000pt;}
.x22_c01118{left:188.160000pt;}
.x23_c01118{left:196.480000pt;}
.x3d_c01118{left:197.760000pt;}
.x2c_c01118{left:207.360000pt;}
.x59_c01118{left:208.640000pt;}
.xe_c01118{left:222.720000pt;}
.x17_c01118{left:224.000000pt;}
.x3e_c01118{left:226.560000pt;}
.x43_c01118{left:228.480000pt;}
.xa_c01118{left:234.880000pt;}
.x29_c01118{left:243.840000pt;}
.x2d_c01118{left:253.440000pt;}
.x4d_c01118{left:255.360000pt;}
.x13_c01118{left:261.760000pt;}
.x1c_c01118{left:271.360000pt;}
.x26_c01118{left:272.640000pt;}
.x18_c01118{left:280.960000pt;}
.x44_c01118{left:284.160000pt;}
.x16_c01118{left:290.560000pt;}
.x2a_c01118{left:291.840000pt;}
.x54_c01118{left:293.760000pt;}
.x14_c01118{left:298.880000pt;}
.x4b_c01118{left:302.720000pt;}
.x3f_c01118{left:312.320000pt;}
.x27_c01118{left:320.640000pt;}
.x45_c01118{left:321.920000pt;}
.x19_c01118{left:328.960000pt;}
.x1e_c01118{left:330.240000pt;}
.x4c_c01118{left:340.480000pt;}
.x33_c01118{left:350.080000pt;}
.x5a_c01118{left:360.960000pt;}
.x24_c01118{left:378.240000pt;}
.x46_c01118{left:389.120000pt;}
.x5b_c01118{left:400.000000pt;}
.x40_c01118{left:408.960000pt;}
.x1f_c01118{left:415.360000pt;}
.x34_c01118{left:417.280000pt;}
.x2e_c01118{left:426.880000pt;}
.x28_c01118{left:435.840000pt;}
.x4e_c01118{left:437.760000pt;}
.x35_c01118{left:445.440000pt;}
.x55_c01118{left:447.360000pt;}
.x47_c01118{left:456.960000pt;}
.x2f_c01118{left:465.280000pt;}
.x36_c01118{left:474.880000pt;}
.x4f_c01118{left:476.160000pt;}
.x37_c01118{left:485.120000pt;}
.x5_c01118{left:492.160000pt;}
.x1a_c01118{left:493.440000pt;}
.x48_c01118{left:495.360000pt;}
.x10_c01118{left:503.040000pt;}
.x38_c01118{left:504.320000pt;}
.x50_c01118{left:506.880000pt;}
.x11_c01118{left:521.600000pt;}
.x30_c01118{left:533.120000pt;}
.x6_c01118{left:540.800000pt;}
.x49_c01118{left:542.080000pt;}
.x56_c01118{left:553.600000pt;}
.x41_c01118{left:563.200000pt;}
.x12_c01118{left:570.240000pt;}
.x20_c01118{left:572.160000pt;}
.x7_c01118{left:591.360000pt;}
.x51_c01118{left:593.280000pt;}
.xf_c01118{left:599.680000pt;}
.x15_c01118{left:600.960000pt;}
.x57_c01118{left:612.480000pt;}
.x1_c01118{left:625.920000pt;}
.x21_c01118{left:630.400000pt;}
.xb_c01118{left:637.440000pt;}
.x8_c01118{left:638.720000pt;}
.x9_c01118{left:656.640000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_86610ef73584bc9f481f5388.woff2')format("woff");}.ff1_c01119{font-family:ff1_c01119;line-height:1.109863;font-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_c01119{transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);}
.m33_c01119{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m28_c01119{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m4f_c01119{transform:matrix(0.243825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243825,0.000000,0.000000,0.250000,0,0);}
.m1d_c01119{transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);}
.m3c_c01119{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.mb_c01119{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);}
.m47_c01119{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m16_c01119{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);}
.m2e_c01119{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);}
.m46_c01119{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);}
.m35_c01119{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);}
.m37_c01119{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);}
.m48_c01119{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m11_c01119{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.ma_c01119{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_c01119{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);}
.m44_c01119{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m31_c01119{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m6_c01119{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m38_c01119{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m3_c01119{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m21_c01119{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m2_c01119{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01119{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m42_c01119{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m14_c01119{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m24_c01119{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.md_c01119{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01119{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m5_c01119{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m19_c01119{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);}
.m54_c01119{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01119{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m4_c01119{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);}
.m2a_c01119{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);}
.m29_c01119{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m36_c01119{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);}
.m40_c01119{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m9_c01119{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m17_c01119{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m32_c01119{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);}
.m2b_c01119{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m30_c01119{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m0_c01119{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_c01119{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01119{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m26_c01119{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);}
.m2d_c01119{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m1_c01119{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);}
.m2c_c01119{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.me_c01119{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);}
.m1a_c01119{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m22_c01119{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);}
.m7_c01119{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);}
.m3e_c01119{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);}
.m59_c01119{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m56_c01119{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m34_c01119{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m13_c01119{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);}
.m39_c01119{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01119{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);}
.m25_c01119{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m8_c01119{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);}
.m41_c01119{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m55_c01119{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01119{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);}
.m1b_c01119{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01119{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m15_c01119{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.mf_c01119{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);}
.m51_c01119{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m12_c01119{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m10_c01119{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);}
.m4b_c01119{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);}
.m5f_c01119{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m4d_c01119{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m57_c01119{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);}
.m3d_c01119{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m53_c01119{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m45_c01119{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m50_c01119{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01119{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m5c_c01119{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);}
.m49_c01119{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m5a_c01119{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);}
.m20_c01119{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m52_c01119{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m5b_c01119{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m23_c01119{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m5e_c01119{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m5d_c01119{transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);}
.m58_c01119{transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01119{transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);}
.m43_c01119{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);}
.m18_c01119{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.v3_c01119{vertical-align:-5.760000px;}
.v0_c01119{vertical-align:0.000000px;}
.v1_c01119{vertical-align:5.760000px;}
.v2_c01119{vertical-align:11.520000px;}
.ls1_c01119{letter-spacing:0.000000px;}
.ls0_c01119{letter-spacing:81.576960px;}
.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;}
}
.ws6_c01119{word-spacing:0.000000px;}
.ws4_c01119{word-spacing:32.574586px;}
.ws1_c01119{word-spacing:37.749851px;}
.ws3_c01119{word-spacing:46.451724px;}
.ws2_c01119{word-spacing:56.130900px;}
.ws0_c01119{word-spacing:87.088800px;}
.ws5_c01119{word-spacing:91.671600px;}
.fc0_c01119{color:transparent;}
.fs9_c01119{font-size:14.400000px;}
.fs7_c01119{font-size:20.160000px;}
.fsf_c01119{font-size:23.040000px;}
.fse_c01119{font-size:31.680000px;}
.fsa_c01119{font-size:34.560000px;}
.fs3_c01119{font-size:43.200000px;}
.fs1_c01119{font-size:46.080000px;}
.fs2_c01119{font-size:48.960000px;}
.fs5_c01119{font-size:51.840000px;}
.fs8_c01119{font-size:54.720000px;}
.fs4_c01119{font-size:57.600000px;}
.fs6_c01119{font-size:60.480000px;}
.fsd_c01119{font-size:63.360000px;}
.fsb_c01119{font-size:66.240000px;}
.fs0_c01119{font-size:74.880000px;}
.fsc_c01119{font-size:77.760000px;}
.y0_c01119{bottom:0.000000px;}
.yba_c01119{bottom:117.360000px;}
.yb9_c01119{bottom:119.520000px;}
.yb7_c01119{bottom:120.240000px;}
.yb4_c01119{bottom:120.960000px;}
.yb2_c01119{bottom:121.680000px;}
.yb5_c01119{bottom:123.120000px;}
.yb8_c01119{bottom:123.840000px;}
.yaf_c01119{bottom:133.920000px;}
.yb0_c01119{bottom:134.640000px;}
.yb6_c01119{bottom:144.000000px;}
.yb3_c01119{bottom:144.720000px;}
.yb1_c01119{bottom:146.160000px;}
.yac_c01119{bottom:185.040000px;}
.yab_c01119{bottom:186.480000px;}
.yae_c01119{bottom:187.200000px;}
.yad_c01119{bottom:187.920000px;}
.ya8_c01119{bottom:226.080000px;}
.ya6_c01119{bottom:226.800000px;}
.ya9_c01119{bottom:227.520000px;}
.yaa_c01119{bottom:228.960000px;}
.ya7_c01119{bottom:230.400000px;}
.ya4_c01119{bottom:267.840000px;}
.ya3_c01119{bottom:268.560000px;}
.ya2_c01119{bottom:269.280000px;}
.y9e_c01119{bottom:270.000000px;}
.ya1_c01119{bottom:270.720000px;}
.ya5_c01119{bottom:271.440000px;}
.ya0_c01119{bottom:272.160000px;}
.y9f_c01119{bottom:272.880000px;}
.y9b_c01119{bottom:310.320000px;}
.y99_c01119{bottom:311.040000px;}
.y9d_c01119{bottom:311.760000px;}
.y9a_c01119{bottom:312.480000px;}
.y9c_c01119{bottom:313.920000px;}
.y98_c01119{bottom:315.360000px;}
.y95_c01119{bottom:354.240000px;}
.y97_c01119{bottom:354.960000px;}
.y96_c01119{bottom:356.400000px;}
.y94_c01119{bottom:357.120000px;}
.y93_c01119{bottom:357.840000px;}
.y92_c01119{bottom:418.320000px;}
.y91_c01119{bottom:419.040000px;}
.y90_c01119{bottom:419.760000px;}
.y8e_c01119{bottom:462.240000px;}
.y8d_c01119{bottom:462.960000px;}
.y8c_c01119{bottom:463.680000px;}
.y8f_c01119{bottom:464.400000px;}
.y89_c01119{bottom:482.400000px;}
.y88_c01119{bottom:483.120000px;}
.y8b_c01119{bottom:483.840000px;}
.y8a_c01119{bottom:486.000000px;}
.y83_c01119{bottom:504.000000px;}
.y85_c01119{bottom:504.720000px;}
.y87_c01119{bottom:505.440000px;}
.y84_c01119{bottom:506.880000px;}
.y86_c01119{bottom:507.600000px;}
.y80_c01119{bottom:524.880000px;}
.y7f_c01119{bottom:525.600000px;}
.y7e_c01119{bottom:526.320000px;}
.y81_c01119{bottom:527.040000px;}
.y82_c01119{bottom:527.760000px;}
.y7d_c01119{bottom:528.480000px;}
.y79_c01119{bottom:547.200000px;}
.y7b_c01119{bottom:547.920000px;}
.y7c_c01119{bottom:548.640000px;}
.y7a_c01119{bottom:550.080000px;}
.y76_c01119{bottom:568.080000px;}
.y77_c01119{bottom:568.800000px;}
.y78_c01119{bottom:569.520000px;}
.y6f_c01119{bottom:588.960000px;}
.y71_c01119{bottom:589.680000px;}
.y72_c01119{bottom:590.400000px;}
.y73_c01119{bottom:591.120000px;}
.y70_c01119{bottom:591.840000px;}
.y75_c01119{bottom:592.560000px;}
.y74_c01119{bottom:594.000000px;}
.y6b_c01119{bottom:611.280000px;}
.y6c_c01119{bottom:612.000000px;}
.y6a_c01119{bottom:612.720000px;}
.y6d_c01119{bottom:614.880000px;}
.y6e_c01119{bottom:615.600000px;}
.y67_c01119{bottom:631.440000px;}
.y64_c01119{bottom:632.160000px;}
.y69_c01119{bottom:632.880000px;}
.y65_c01119{bottom:633.600000px;}
.y63_c01119{bottom:634.320000px;}
.y66_c01119{bottom:635.760000px;}
.y68_c01119{bottom:636.480000px;}
.y60_c01119{bottom:653.040000px;}
.y5f_c01119{bottom:654.480000px;}
.y5d_c01119{bottom:655.200000px;}
.y5e_c01119{bottom:655.920000px;}
.y62_c01119{bottom:656.640000px;}
.y61_c01119{bottom:657.360000px;}
.y57_c01119{bottom:674.640000px;}
.y59_c01119{bottom:676.080000px;}
.y5a_c01119{bottom:676.800000px;}
.y58_c01119{bottom:677.520000px;}
.y5c_c01119{bottom:678.240000px;}
.y5b_c01119{bottom:678.960000px;}
.y51_c01119{bottom:695.520000px;}
.y53_c01119{bottom:696.240000px;}
.y54_c01119{bottom:696.960000px;}
.y55_c01119{bottom:697.680000px;}
.y56_c01119{bottom:698.400000px;}
.y52_c01119{bottom:699.120000px;}
.y4b_c01119{bottom:717.120000px;}
.y4c_c01119{bottom:718.560000px;}
.y4d_c01119{bottom:719.280000px;}
.y4f_c01119{bottom:720.000000px;}
.y4e_c01119{bottom:720.720000px;}
.y50_c01119{bottom:722.160000px;}
.y45_c01119{bottom:738.000000px;}
.y47_c01119{bottom:738.720000px;}
.y46_c01119{bottom:739.440000px;}
.y48_c01119{bottom:740.160000px;}
.y49_c01119{bottom:740.880000px;}
.y4a_c01119{bottom:743.040000px;}
.y3f_c01119{bottom:758.880000px;}
.y40_c01119{bottom:760.320000px;}
.y41_c01119{bottom:761.040000px;}
.y43_c01119{bottom:761.760000px;}
.y42_c01119{bottom:762.480000px;}
.y44_c01119{bottom:764.640000px;}
.y3c_c01119{bottom:779.760000px;}
.y3b_c01119{bottom:781.200000px;}
.y3d_c01119{bottom:781.920000px;}
.y3e_c01119{bottom:782.640000px;}
.y3a_c01119{bottom:783.360000px;}
.y36_c01119{bottom:801.360000px;}
.y35_c01119{bottom:802.080000px;}
.y37_c01119{bottom:802.800000px;}
.y34_c01119{bottom:803.520000px;}
.y39_c01119{bottom:804.240000px;}
.y38_c01119{bottom:804.960000px;}
.y2f_c01119{bottom:830.880000px;}
.y2e_c01119{bottom:834.480000px;}
.y2d_c01119{bottom:835.200000px;}
.y32_c01119{bottom:835.920000px;}
.y31_c01119{bottom:836.640000px;}
.y30_c01119{bottom:837.360000px;}
.y33_c01119{bottom:838.080000px;}
.y28_c01119{bottom:875.520000px;}
.y2a_c01119{bottom:877.680000px;}
.y29_c01119{bottom:879.120000px;}
.y2b_c01119{bottom:881.280000px;}
.y2c_c01119{bottom:882.720000px;}
.y20_c01119{bottom:907.200000px;}
.y21_c01119{bottom:907.920000px;}
.y24_c01119{bottom:910.800000px;}
.y25_c01119{bottom:911.520000px;}
.y22_c01119{bottom:912.240000px;}
.y23_c01119{bottom:912.960000px;}
.y26_c01119{bottom:914.400000px;}
.y27_c01119{bottom:915.120000px;}
.y1b_c01119{bottom:940.320000px;}
.y1a_c01119{bottom:941.760000px;}
.y1c_c01119{bottom:942.480000px;}
.y1f_c01119{bottom:943.200000px;}
.y1d_c01119{bottom:944.640000px;}
.y1e_c01119{bottom:945.360000px;}
.y11_c01119{bottom:972.720000px;}
.y13_c01119{bottom:973.440000px;}
.y12_c01119{bottom:974.160000px;}
.y14_c01119{bottom:974.880000px;}
.y15_c01119{bottom:976.320000px;}
.y16_c01119{bottom:977.760000px;}
.y18_c01119{bottom:978.480000px;}
.y17_c01119{bottom:979.200000px;}
.y19_c01119{bottom:979.920000px;}
.y9_c01119{bottom:1015.920000px;}
.ya_c01119{bottom:1017.360000px;}
.yc_c01119{bottom:1018.080000px;}
.yb_c01119{bottom:1018.800000px;}
.y10_c01119{bottom:1019.520000px;}
.yf_c01119{bottom:1020.960000px;}
.yd_c01119{bottom:1021.680000px;}
.y7_c01119{bottom:1024.560000px;}
.ye_c01119{bottom:1025.280000px;}
.y8_c01119{bottom:1026.000000px;}
.y2_c01119{bottom:1039.680000px;}
.y3_c01119{bottom:1041.120000px;}
.y4_c01119{bottom:1041.840000px;}
.y5_c01119{bottom:1042.560000px;}
.y6_c01119{bottom:1043.280000px;}
.y1_c01119{bottom:1081.440000px;}
.hc_c01119{height:12.958594px;}
.h9_c01119{height:18.142031px;}
.h13_c01119{height:20.733750px;}
.h12_c01119{height:28.508906px;}
.hd_c01119{height:31.100625px;}
.h5_c01119{height:38.875781px;}
.h3_c01119{height:41.467500px;}
.h4_c01119{height:44.059219px;}
.h7_c01119{height:46.650937px;}
.hb_c01119{height:47.227500px;}
.ha_c01119{height:49.242656px;}
.h6_c01119{height:51.834375px;}
.h8_c01119{height:54.426094px;}
.h10_c01119{height:57.017812px;}
.h11_c01119{height:58.170937px;}
.he_c01119{height:59.609531px;}
.h2_c01119{height:67.384687px;}
.hf_c01119{height:69.976406px;}
.h0_c01119{height:1142.640000px;}
.h1_c01119{height:1143.000000px;}
.w0_c01119{width:792.000000px;}
.x0_c01119{left:0.000000px;}
.x8_c01119{left:80.640000px;}
.x3b_c01119{left:82.080000px;}
.x40_c01119{left:83.520000px;}
.x2b_c01119{left:92.880000px;}
.x12_c01119{left:101.520000px;}
.x1b_c01119{left:111.600000px;}
.x26_c01119{left:113.040000px;}
.x39_c01119{left:114.480000px;}
.x36_c01119{left:123.840000px;}
.x3d_c01119{left:125.280000px;}
.x31_c01119{left:134.640000px;}
.x3f_c01119{left:136.080000px;}
.x1c_c01119{left:144.720000px;}
.x9_c01119{left:153.360000px;}
.x13_c01119{left:155.520000px;}
.x32_c01119{left:166.320000px;}
.x37_c01119{left:167.760000px;}
.x5f_c01119{left:177.840000px;}
.x5b_c01119{left:179.280000px;}
.x23_c01119{left:187.200000px;}
.x3c_c01119{left:188.640000px;}
.x1d_c01119{left:198.000000px;}
.x47_c01119{left:200.160000px;}
.x55_c01119{left:201.600000px;}
.x24_c01119{left:207.360000px;}
.xa_c01119{left:209.520000px;}
.x2_c01119{left:218.880000px;}
.x4c_c01119{left:220.320000px;}
.x4f_c01119{left:222.480000px;}
.x14_c01119{left:229.680000px;}
.x2c_c01119{left:231.120000px;}
.x56_c01119{left:243.360000px;}
.x5c_c01119{left:254.880000px;}
.x15_c01119{left:262.800000px;}
.x41_c01119{left:264.240000px;}
.xb_c01119{left:273.600000px;}
.x3_c01119{left:282.960000px;}
.x48_c01119{left:286.560000px;}
.x27_c01119{left:304.560000px;}
.x2d_c01119{left:306.720000px;}
.x50_c01119{left:316.800000px;}
.x57_c01119{left:328.320000px;}
.x60_c01119{left:330.480000px;}
.x28_c01119{left:337.680000px;}
.x5d_c01119{left:340.560000px;}
.x4_c01119{left:347.760000px;}
.xc_c01119{left:349.200000px;}
.x4d_c01119{left:351.360000px;}
.x38_c01119{left:360.000000px;}
.x44_c01119{left:361.440000px;}
.x51_c01119{left:371.520000px;}
.x16_c01119{left:380.880000px;}
.x49_c01119{left:383.040000px;}
.x33_c01119{left:391.680000px;}
.x2e_c01119{left:393.120000px;}
.x61_c01119{left:394.560000px;}
.xd_c01119{left:412.560000px;}
.x5_c01119{left:414.000000px;}
.x42_c01119{left:415.440000px;}
.x17_c01119{left:424.080000px;}
.x1e_c01119{left:433.440000px;}
.x53_c01119{left:436.320000px;}
.x5e_c01119{left:437.760000px;}
.x21_c01119{left:455.760000px;}
.x34_c01119{left:457.920000px;}
.x62_c01119{left:460.080000px;}
.x18_c01119{left:466.560000px;}
.xe_c01119{left:477.360000px;}
.x6_c01119{left:488.160000px;}
.x58_c01119{left:490.320000px;}
.x4e_c01119{left:491.760000px;}
.x54_c01119{left:501.120000px;}
.x4a_c01119{left:512.640000px;}
.x64_c01119{left:524.880000px;}
.x19_c01119{left:532.080000px;}
.x2f_c01119{left:533.520000px;}
.x63_c01119{left:534.960000px;}
.x1f_c01119{left:552.960000px;}
.x7_c01119{left:555.120000px;}
.x29_c01119{left:565.200000px;}
.x30_c01119{left:577.440000px;}
.x25_c01119{left:587.520000px;}
.x43_c01119{left:588.960000px;}
.xf_c01119{left:596.880000px;}
.x45_c01119{left:599.760000px;}
.x65_c01119{left:601.200000px;}
.x59_c01119{left:609.840000px;}
.x20_c01119{left:619.920000px;}
.x35_c01119{left:621.360000px;}
.x10_c01119{left:630.720000px;}
.x4b_c01119{left:632.880000px;}
.x2a_c01119{left:642.240000px;}
.x3e_c01119{left:643.680000px;}
.x5a_c01119{left:653.040000px;}
.x22_c01119{left:663.120000px;}
.x52_c01119{left:664.560000px;}
.x46_c01119{left:676.080000px;}
.x11_c01119{left:683.280000px;}
.x1a_c01119{left:685.440000px;}
.x3a_c01119{left:686.880000px;}
.x1_c01119{left:695.520000px;}
.x66_c01119{left:708.480000px;}
@media print{
.v3_c01119{vertical-align:-5.120000pt;}
.v0_c01119{vertical-align:0.000000pt;}
.v1_c01119{vertical-align:5.120000pt;}
.v2_c01119{vertical-align:10.240000pt;}
.ls1_c01119{letter-spacing:0.000000pt;}
.ls0_c01119{letter-spacing:72.512853pt;}
.ws6_c01119{word-spacing:0.000000pt;}
.ws4_c01119{word-spacing:28.955187pt;}
.ws1_c01119{word-spacing:33.555423pt;}
.ws3_c01119{word-spacing:41.290422pt;}
.ws2_c01119{word-spacing:49.894134pt;}
.ws0_c01119{word-spacing:77.412267pt;}
.ws5_c01119{word-spacing:81.485867pt;}
.fs9_c01119{font-size:12.800000pt;}
.fs7_c01119{font-size:17.920000pt;}
.fsf_c01119{font-size:20.480000pt;}
.fse_c01119{font-size:28.160000pt;}
.fsa_c01119{font-size:30.720000pt;}
.fs3_c01119{font-size:38.400000pt;}
.fs1_c01119{font-size:40.960000pt;}
.fs2_c01119{font-size:43.520000pt;}
.fs5_c01119{font-size:46.080000pt;}
.fs8_c01119{font-size:48.640000pt;}
.fs4_c01119{font-size:51.200000pt;}
.fs6_c01119{font-size:53.760000pt;}
.fsd_c01119{font-size:56.320000pt;}
.fsb_c01119{font-size:58.880000pt;}
.fs0_c01119{font-size:66.560000pt;}
.fsc_c01119{font-size:69.120000pt;}
.y0_c01119{bottom:0.000000pt;}
.yba_c01119{bottom:104.320000pt;}
.yb9_c01119{bottom:106.240000pt;}
.yb7_c01119{bottom:106.880000pt;}
.yb4_c01119{bottom:107.520000pt;}
.yb2_c01119{bottom:108.160000pt;}
.yb5_c01119{bottom:109.440000pt;}
.yb8_c01119{bottom:110.080000pt;}
.yaf_c01119{bottom:119.040000pt;}
.yb0_c01119{bottom:119.680000pt;}
.yb6_c01119{bottom:128.000000pt;}
.yb3_c01119{bottom:128.640000pt;}
.yb1_c01119{bottom:129.920000pt;}
.yac_c01119{bottom:164.480000pt;}
.yab_c01119{bottom:165.760000pt;}
.yae_c01119{bottom:166.400000pt;}
.yad_c01119{bottom:167.040000pt;}
.ya8_c01119{bottom:200.960000pt;}
.ya6_c01119{bottom:201.600000pt;}
.ya9_c01119{bottom:202.240000pt;}
.yaa_c01119{bottom:203.520000pt;}
.ya7_c01119{bottom:204.800000pt;}
.ya4_c01119{bottom:238.080000pt;}
.ya3_c01119{bottom:238.720000pt;}
.ya2_c01119{bottom:239.360000pt;}
.y9e_c01119{bottom:240.000000pt;}
.ya1_c01119{bottom:240.640000pt;}
.ya5_c01119{bottom:241.280000pt;}
.ya0_c01119{bottom:241.920000pt;}
.y9f_c01119{bottom:242.560000pt;}
.y9b_c01119{bottom:275.840000pt;}
.y99_c01119{bottom:276.480000pt;}
.y9d_c01119{bottom:277.120000pt;}
.y9a_c01119{bottom:277.760000pt;}
.y9c_c01119{bottom:279.040000pt;}
.y98_c01119{bottom:280.320000pt;}
.y95_c01119{bottom:314.880000pt;}
.y97_c01119{bottom:315.520000pt;}
.y96_c01119{bottom:316.800000pt;}
.y94_c01119{bottom:317.440000pt;}
.y93_c01119{bottom:318.080000pt;}
.y92_c01119{bottom:371.840000pt;}
.y91_c01119{bottom:372.480000pt;}
.y90_c01119{bottom:373.120000pt;}
.y8e_c01119{bottom:410.880000pt;}
.y8d_c01119{bottom:411.520000pt;}
.y8c_c01119{bottom:412.160000pt;}
.y8f_c01119{bottom:412.800000pt;}
.y89_c01119{bottom:428.800000pt;}
.y88_c01119{bottom:429.440000pt;}
.y8b_c01119{bottom:430.080000pt;}
.y8a_c01119{bottom:432.000000pt;}
.y83_c01119{bottom:448.000000pt;}
.y85_c01119{bottom:448.640000pt;}
.y87_c01119{bottom:449.280000pt;}
.y84_c01119{bottom:450.560000pt;}
.y86_c01119{bottom:451.200000pt;}
.y80_c01119{bottom:466.560000pt;}
.y7f_c01119{bottom:467.200000pt;}
.y7e_c01119{bottom:467.840000pt;}
.y81_c01119{bottom:468.480000pt;}
.y82_c01119{bottom:469.120000pt;}
.y7d_c01119{bottom:469.760000pt;}
.y79_c01119{bottom:486.400000pt;}
.y7b_c01119{bottom:487.040000pt;}
.y7c_c01119{bottom:487.680000pt;}
.y7a_c01119{bottom:488.960000pt;}
.y76_c01119{bottom:504.960000pt;}
.y77_c01119{bottom:505.600000pt;}
.y78_c01119{bottom:506.240000pt;}
.y6f_c01119{bottom:523.520000pt;}
.y71_c01119{bottom:524.160000pt;}
.y72_c01119{bottom:524.800000pt;}
.y73_c01119{bottom:525.440000pt;}
.y70_c01119{bottom:526.080000pt;}
.y75_c01119{bottom:526.720000pt;}
.y74_c01119{bottom:528.000000pt;}
.y6b_c01119{bottom:543.360000pt;}
.y6c_c01119{bottom:544.000000pt;}
.y6a_c01119{bottom:544.640000pt;}
.y6d_c01119{bottom:546.560000pt;}
.y6e_c01119{bottom:547.200000pt;}
.y67_c01119{bottom:561.280000pt;}
.y64_c01119{bottom:561.920000pt;}
.y69_c01119{bottom:562.560000pt;}
.y65_c01119{bottom:563.200000pt;}
.y63_c01119{bottom:563.840000pt;}
.y66_c01119{bottom:565.120000pt;}
.y68_c01119{bottom:565.760000pt;}
.y60_c01119{bottom:580.480000pt;}
.y5f_c01119{bottom:581.760000pt;}
.y5d_c01119{bottom:582.400000pt;}
.y5e_c01119{bottom:583.040000pt;}
.y62_c01119{bottom:583.680000pt;}
.y61_c01119{bottom:584.320000pt;}
.y57_c01119{bottom:599.680000pt;}
.y59_c01119{bottom:600.960000pt;}
.y5a_c01119{bottom:601.600000pt;}
.y58_c01119{bottom:602.240000pt;}
.y5c_c01119{bottom:602.880000pt;}
.y5b_c01119{bottom:603.520000pt;}
.y51_c01119{bottom:618.240000pt;}
.y53_c01119{bottom:618.880000pt;}
.y54_c01119{bottom:619.520000pt;}
.y55_c01119{bottom:620.160000pt;}
.y56_c01119{bottom:620.800000pt;}
.y52_c01119{bottom:621.440000pt;}
.y4b_c01119{bottom:637.440000pt;}
.y4c_c01119{bottom:638.720000pt;}
.y4d_c01119{bottom:639.360000pt;}
.y4f_c01119{bottom:640.000000pt;}
.y4e_c01119{bottom:640.640000pt;}
.y50_c01119{bottom:641.920000pt;}
.y45_c01119{bottom:656.000000pt;}
.y47_c01119{bottom:656.640000pt;}
.y46_c01119{bottom:657.280000pt;}
.y48_c01119{bottom:657.920000pt;}
.y49_c01119{bottom:658.560000pt;}
.y4a_c01119{bottom:660.480000pt;}
.y3f_c01119{bottom:674.560000pt;}
.y40_c01119{bottom:675.840000pt;}
.y41_c01119{bottom:676.480000pt;}
.y43_c01119{bottom:677.120000pt;}
.y42_c01119{bottom:677.760000pt;}
.y44_c01119{bottom:679.680000pt;}
.y3c_c01119{bottom:693.120000pt;}
.y3b_c01119{bottom:694.400000pt;}
.y3d_c01119{bottom:695.040000pt;}
.y3e_c01119{bottom:695.680000pt;}
.y3a_c01119{bottom:696.320000pt;}
.y36_c01119{bottom:712.320000pt;}
.y35_c01119{bottom:712.960000pt;}
.y37_c01119{bottom:713.600000pt;}
.y34_c01119{bottom:714.240000pt;}
.y39_c01119{bottom:714.880000pt;}
.y38_c01119{bottom:715.520000pt;}
.y2f_c01119{bottom:738.560000pt;}
.y2e_c01119{bottom:741.760000pt;}
.y2d_c01119{bottom:742.400000pt;}
.y32_c01119{bottom:743.040000pt;}
.y31_c01119{bottom:743.680000pt;}
.y30_c01119{bottom:744.320000pt;}
.y33_c01119{bottom:744.960000pt;}
.y28_c01119{bottom:778.240000pt;}
.y2a_c01119{bottom:780.160000pt;}
.y29_c01119{bottom:781.440000pt;}
.y2b_c01119{bottom:783.360000pt;}
.y2c_c01119{bottom:784.640000pt;}
.y20_c01119{bottom:806.400000pt;}
.y21_c01119{bottom:807.040000pt;}
.y24_c01119{bottom:809.600000pt;}
.y25_c01119{bottom:810.240000pt;}
.y22_c01119{bottom:810.880000pt;}
.y23_c01119{bottom:811.520000pt;}
.y26_c01119{bottom:812.800000pt;}
.y27_c01119{bottom:813.440000pt;}
.y1b_c01119{bottom:835.840000pt;}
.y1a_c01119{bottom:837.120000pt;}
.y1c_c01119{bottom:837.760000pt;}
.y1f_c01119{bottom:838.400000pt;}
.y1d_c01119{bottom:839.680000pt;}
.y1e_c01119{bottom:840.320000pt;}
.y11_c01119{bottom:864.640000pt;}
.y13_c01119{bottom:865.280000pt;}
.y12_c01119{bottom:865.920000pt;}
.y14_c01119{bottom:866.560000pt;}
.y15_c01119{bottom:867.840000pt;}
.y16_c01119{bottom:869.120000pt;}
.y18_c01119{bottom:869.760000pt;}
.y17_c01119{bottom:870.400000pt;}
.y19_c01119{bottom:871.040000pt;}
.y9_c01119{bottom:903.040000pt;}
.ya_c01119{bottom:904.320000pt;}
.yc_c01119{bottom:904.960000pt;}
.yb_c01119{bottom:905.600000pt;}
.y10_c01119{bottom:906.240000pt;}
.yf_c01119{bottom:907.520000pt;}
.yd_c01119{bottom:908.160000pt;}
.y7_c01119{bottom:910.720000pt;}
.ye_c01119{bottom:911.360000pt;}
.y8_c01119{bottom:912.000000pt;}
.y2_c01119{bottom:924.160000pt;}
.y3_c01119{bottom:925.440000pt;}
.y4_c01119{bottom:926.080000pt;}
.y5_c01119{bottom:926.720000pt;}
.y6_c01119{bottom:927.360000pt;}
.y1_c01119{bottom:961.280000pt;}
.hc_c01119{height:11.518750pt;}
.h9_c01119{height:16.126250pt;}
.h13_c01119{height:18.430000pt;}
.h12_c01119{height:25.341250pt;}
.hd_c01119{height:27.645000pt;}
.h5_c01119{height:34.556250pt;}
.h3_c01119{height:36.860000pt;}
.h4_c01119{height:39.163750pt;}
.h7_c01119{height:41.467500pt;}
.hb_c01119{height:41.980000pt;}
.ha_c01119{height:43.771250pt;}
.h6_c01119{height:46.075000pt;}
.h8_c01119{height:48.378750pt;}
.h10_c01119{height:50.682500pt;}
.h11_c01119{height:51.707500pt;}
.he_c01119{height:52.986250pt;}
.h2_c01119{height:59.897500pt;}
.hf_c01119{height:62.201250pt;}
.h0_c01119{height:1015.680000pt;}
.h1_c01119{height:1016.000000pt;}
.w0_c01119{width:704.000000pt;}
.x0_c01119{left:0.000000pt;}
.x8_c01119{left:71.680000pt;}
.x3b_c01119{left:72.960000pt;}
.x40_c01119{left:74.240000pt;}
.x2b_c01119{left:82.560000pt;}
.x12_c01119{left:90.240000pt;}
.x1b_c01119{left:99.200000pt;}
.x26_c01119{left:100.480000pt;}
.x39_c01119{left:101.760000pt;}
.x36_c01119{left:110.080000pt;}
.x3d_c01119{left:111.360000pt;}
.x31_c01119{left:119.680000pt;}
.x3f_c01119{left:120.960000pt;}
.x1c_c01119{left:128.640000pt;}
.x9_c01119{left:136.320000pt;}
.x13_c01119{left:138.240000pt;}
.x32_c01119{left:147.840000pt;}
.x37_c01119{left:149.120000pt;}
.x5f_c01119{left:158.080000pt;}
.x5b_c01119{left:159.360000pt;}
.x23_c01119{left:166.400000pt;}
.x3c_c01119{left:167.680000pt;}
.x1d_c01119{left:176.000000pt;}
.x47_c01119{left:177.920000pt;}
.x55_c01119{left:179.200000pt;}
.x24_c01119{left:184.320000pt;}
.xa_c01119{left:186.240000pt;}
.x2_c01119{left:194.560000pt;}
.x4c_c01119{left:195.840000pt;}
.x4f_c01119{left:197.760000pt;}
.x14_c01119{left:204.160000pt;}
.x2c_c01119{left:205.440000pt;}
.x56_c01119{left:216.320000pt;}
.x5c_c01119{left:226.560000pt;}
.x15_c01119{left:233.600000pt;}
.x41_c01119{left:234.880000pt;}
.xb_c01119{left:243.200000pt;}
.x3_c01119{left:251.520000pt;}
.x48_c01119{left:254.720000pt;}
.x27_c01119{left:270.720000pt;}
.x2d_c01119{left:272.640000pt;}
.x50_c01119{left:281.600000pt;}
.x57_c01119{left:291.840000pt;}
.x60_c01119{left:293.760000pt;}
.x28_c01119{left:300.160000pt;}
.x5d_c01119{left:302.720000pt;}
.x4_c01119{left:309.120000pt;}
.xc_c01119{left:310.400000pt;}
.x4d_c01119{left:312.320000pt;}
.x38_c01119{left:320.000000pt;}
.x44_c01119{left:321.280000pt;}
.x51_c01119{left:330.240000pt;}
.x16_c01119{left:338.560000pt;}
.x49_c01119{left:340.480000pt;}
.x33_c01119{left:348.160000pt;}
.x2e_c01119{left:349.440000pt;}
.x61_c01119{left:350.720000pt;}
.xd_c01119{left:366.720000pt;}
.x5_c01119{left:368.000000pt;}
.x42_c01119{left:369.280000pt;}
.x17_c01119{left:376.960000pt;}
.x1e_c01119{left:385.280000pt;}
.x53_c01119{left:387.840000pt;}
.x5e_c01119{left:389.120000pt;}
.x21_c01119{left:405.120000pt;}
.x34_c01119{left:407.040000pt;}
.x62_c01119{left:408.960000pt;}
.x18_c01119{left:414.720000pt;}
.xe_c01119{left:424.320000pt;}
.x6_c01119{left:433.920000pt;}
.x58_c01119{left:435.840000pt;}
.x4e_c01119{left:437.120000pt;}
.x54_c01119{left:445.440000pt;}
.x4a_c01119{left:455.680000pt;}
.x64_c01119{left:466.560000pt;}
.x19_c01119{left:472.960000pt;}
.x2f_c01119{left:474.240000pt;}
.x63_c01119{left:475.520000pt;}
.x1f_c01119{left:491.520000pt;}
.x7_c01119{left:493.440000pt;}
.x29_c01119{left:502.400000pt;}
.x30_c01119{left:513.280000pt;}
.x25_c01119{left:522.240000pt;}
.x43_c01119{left:523.520000pt;}
.xf_c01119{left:530.560000pt;}
.x45_c01119{left:533.120000pt;}
.x65_c01119{left:534.400000pt;}
.x59_c01119{left:542.080000pt;}
.x20_c01119{left:551.040000pt;}
.x35_c01119{left:552.320000pt;}
.x10_c01119{left:560.640000pt;}
.x4b_c01119{left:562.560000pt;}
.x2a_c01119{left:570.880000pt;}
.x3e_c01119{left:572.160000pt;}
.x5a_c01119{left:580.480000pt;}
.x22_c01119{left:589.440000pt;}
.x52_c01119{left:590.720000pt;}
.x46_c01119{left:600.960000pt;}
.x11_c01119{left:607.360000pt;}
.x1a_c01119{left:609.280000pt;}
.x3a_c01119{left:610.560000pt;}
.x1_c01119{left:618.240000pt;}
.x66_c01119{left:629.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_84783a033db1c727fb9d84c6.woff2')format("woff");}.ff1_c01120{font-family:ff1_c01120;line-height:1.109863;font-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_c01120{transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);}
.m30_c01120{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m48_c01120{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m39_c01120{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m10_c01120{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_c01120{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.ma_c01120{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);}
.m41_c01120{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);}
.m35_c01120{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_c01120{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);}
.m2e_c01120{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m19_c01120{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m56_c01120{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m13_c01120{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);}
.m22_c01120{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);}
.m4a_c01120{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01120{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01120{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mb_c01120{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m6_c01120{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01120{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01120{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m33_c01120{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m20_c01120{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m25_c01120{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01120{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01120{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m32_c01120{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m43_c01120{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m4_c01120{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m8_c01120{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m27_c01120{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);}
.m47_c01120{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01120{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m17_c01120{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);}
.m36_c01120{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);}
.m44_c01120{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01120{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);}
.m45_c01120{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m28_c01120{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);}
.m34_c01120{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.mf_c01120{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);}
.m37_c01120{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m0_c01120{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);}
.m2c_c01120{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);}
.m29_c01120{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01120{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);}
.m2f_c01120{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m1_c01120{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_c01120{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m31_c01120{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);}
.m23_c01120{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01120{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);}
.m49_c01120{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);}
.m52_c01120{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);}
.m4b_c01120{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m24_c01120{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m26_c01120{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m40_c01120{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m51_c01120{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);}
.m2b_c01120{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m11_c01120{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01120{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);}
.me_c01120{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m21_c01120{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m4d_c01120{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m2_c01120{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m15_c01120{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);}
.m57_c01120{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m54_c01120{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m59_c01120{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m38_c01120{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m53_c01120{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m12_c01120{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01120{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);}
.m18_c01120{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);}
.m5a_c01120{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m4e_c01120{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m50_c01120{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);}
.mc_c01120{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);}
.m58_c01120{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m7_c01120{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01120{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m16_c01120{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m5b_c01120{transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01120{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m5_c01120{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);}
.m46_c01120{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.m42_c01120{transform:matrix(0.890000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.890000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.890000,0.000000,0.000000,0.250000,0,0);}
.m55_c01120{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);}
.m9_c01120{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.m14_c01120{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.v3_c01120{vertical-align:-8.640000px;}
.v2_c01120{vertical-align:-2.880000px;}
.v0_c01120{vertical-align:0.000000px;}
.v1_c01120{vertical-align:2.880000px;}
.ls0_c01120{letter-spacing:0.000000px;}
.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;}
}
.ws7_c01120{word-spacing:-2.079360px;}
.ws8_c01120{word-spacing:0.000000px;}
.ws1_c01120{word-spacing:2.629680px;}
.ws2_c01120{word-spacing:6.850800px;}
.ws5_c01120{word-spacing:31.876320px;}
.ws6_c01120{word-spacing:49.892400px;}
.ws3_c01120{word-spacing:58.827600px;}
.ws4_c01120{word-spacing:82.554474px;}
.ws0_c01120{word-spacing:568.662720px;}
.fc0_c01120{color:transparent;}
.fs9_c01120{font-size:8.640000px;}
.fs6_c01120{font-size:11.520000px;}
.fsf_c01120{font-size:20.160000px;}
.fs4_c01120{font-size:34.560000px;}
.fs2_c01120{font-size:43.200000px;}
.fs1_c01120{font-size:46.080000px;}
.fsa_c01120{font-size:48.960000px;}
.fs5_c01120{font-size:51.840000px;}
.fs7_c01120{font-size:54.720000px;}
.fs8_c01120{font-size:57.600000px;}
.fs3_c01120{font-size:60.480000px;}
.fsc_c01120{font-size:63.360000px;}
.fsd_c01120{font-size:66.240000px;}
.fse_c01120{font-size:69.120000px;}
.fs0_c01120{font-size:72.000000px;}
.fsb_c01120{font-size:77.760000px;}
.y0_c01120{bottom:0.000000px;}
.yae_c01120{bottom:168.480000px;}
.yad_c01120{bottom:194.400000px;}
.yab_c01120{bottom:195.120000px;}
.yaa_c01120{bottom:196.560000px;}
.yac_c01120{bottom:197.280000px;}
.ya9_c01120{bottom:200.880000px;}
.ya8_c01120{bottom:202.320000px;}
.ya7_c01120{bottom:203.040000px;}
.ya5_c01120{bottom:226.800000px;}
.ya4_c01120{bottom:227.520000px;}
.ya3_c01120{bottom:228.240000px;}
.ya6_c01120{bottom:228.960000px;}
.ya2_c01120{bottom:231.120000px;}
.ya0_c01120{bottom:232.560000px;}
.y9f_c01120{bottom:234.000000px;}
.ya1_c01120{bottom:234.720000px;}
.y9e_c01120{bottom:258.480000px;}
.y9d_c01120{bottom:259.200000px;}
.y9c_c01120{bottom:261.360000px;}
.y9a_c01120{bottom:262.800000px;}
.y99_c01120{bottom:263.520000px;}
.y9b_c01120{bottom:264.240000px;}
.y98_c01120{bottom:292.320000px;}
.y96_c01120{bottom:293.040000px;}
.y97_c01120{bottom:294.480000px;}
.y94_c01120{bottom:295.200000px;}
.y95_c01120{bottom:295.920000px;}
.y93_c01120{bottom:297.360000px;}
.y92_c01120{bottom:298.080000px;}
.y91_c01120{bottom:298.800000px;}
.y90_c01120{bottom:331.200000px;}
.y8d_c01120{bottom:334.800000px;}
.y8f_c01120{bottom:335.520000px;}
.y8c_c01120{bottom:336.240000px;}
.y8e_c01120{bottom:338.400000px;}
.y85_c01120{bottom:347.760000px;}
.y86_c01120{bottom:348.480000px;}
.y84_c01120{bottom:351.360000px;}
.y8b_c01120{bottom:356.400000px;}
.y8a_c01120{bottom:357.840000px;}
.y89_c01120{bottom:359.280000px;}
.y88_c01120{bottom:360.000000px;}
.y87_c01120{bottom:360.720000px;}
.y83_c01120{bottom:398.880000px;}
.y81_c01120{bottom:399.600000px;}
.y7f_c01120{bottom:400.320000px;}
.y80_c01120{bottom:401.760000px;}
.y82_c01120{bottom:403.200000px;}
.y7d_c01120{bottom:438.480000px;}
.y7e_c01120{bottom:439.920000px;}
.y7b_c01120{bottom:440.640000px;}
.y7a_c01120{bottom:442.080000px;}
.y78_c01120{bottom:442.800000px;}
.y7c_c01120{bottom:443.520000px;}
.y79_c01120{bottom:444.960000px;}
.y77_c01120{bottom:482.400000px;}
.y76_c01120{bottom:485.280000px;}
.y75_c01120{bottom:486.000000px;}
.y74_c01120{bottom:486.720000px;}
.y73_c01120{bottom:487.440000px;}
.y72_c01120{bottom:488.160000px;}
.y71_c01120{bottom:546.480000px;}
.y6f_c01120{bottom:547.200000px;}
.y6d_c01120{bottom:548.640000px;}
.y70_c01120{bottom:549.360000px;}
.y6c_c01120{bottom:550.080000px;}
.y6e_c01120{bottom:550.800000px;}
.y6a_c01120{bottom:591.120000px;}
.y6b_c01120{bottom:593.280000px;}
.y69_c01120{bottom:611.280000px;}
.y67_c01120{bottom:612.000000px;}
.y68_c01120{bottom:612.720000px;}
.y66_c01120{bottom:613.440000px;}
.y65_c01120{bottom:614.880000px;}
.y64_c01120{bottom:632.160000px;}
.y63_c01120{bottom:632.880000px;}
.y62_c01120{bottom:633.600000px;}
.y61_c01120{bottom:634.320000px;}
.y60_c01120{bottom:653.040000px;}
.y5f_c01120{bottom:653.760000px;}
.y5e_c01120{bottom:654.480000px;}
.y5b_c01120{bottom:655.200000px;}
.y5c_c01120{bottom:655.920000px;}
.y5d_c01120{bottom:657.360000px;}
.y5a_c01120{bottom:674.640000px;}
.y59_c01120{bottom:675.360000px;}
.y57_c01120{bottom:676.080000px;}
.y58_c01120{bottom:676.800000px;}
.y55_c01120{bottom:678.240000px;}
.y56_c01120{bottom:678.960000px;}
.y54_c01120{bottom:696.240000px;}
.y53_c01120{bottom:696.960000px;}
.y51_c01120{bottom:697.680000px;}
.y50_c01120{bottom:699.840000px;}
.y52_c01120{bottom:700.560000px;}
.y4f_c01120{bottom:717.840000px;}
.y4b_c01120{bottom:718.560000px;}
.y4c_c01120{bottom:719.280000px;}
.y4d_c01120{bottom:720.000000px;}
.y4a_c01120{bottom:720.720000px;}
.y4e_c01120{bottom:721.440000px;}
.y49_c01120{bottom:738.720000px;}
.y44_c01120{bottom:739.440000px;}
.y45_c01120{bottom:740.160000px;}
.y43_c01120{bottom:740.880000px;}
.y48_c01120{bottom:741.600000px;}
.y46_c01120{bottom:742.320000px;}
.y47_c01120{bottom:743.040000px;}
.y41_c01120{bottom:761.040000px;}
.y3e_c01120{bottom:761.760000px;}
.y42_c01120{bottom:762.480000px;}
.y40_c01120{bottom:763.200000px;}
.y3f_c01120{bottom:763.920000px;}
.y3b_c01120{bottom:781.920000px;}
.y39_c01120{bottom:782.640000px;}
.y3c_c01120{bottom:783.360000px;}
.y3a_c01120{bottom:784.800000px;}
.y3d_c01120{bottom:785.520000px;}
.y33_c01120{bottom:803.520000px;}
.y36_c01120{bottom:804.960000px;}
.y35_c01120{bottom:805.680000px;}
.y34_c01120{bottom:806.400000px;}
.y37_c01120{bottom:807.120000px;}
.y38_c01120{bottom:807.840000px;}
.y2d_c01120{bottom:825.120000px;}
.y2f_c01120{bottom:825.840000px;}
.y30_c01120{bottom:826.560000px;}
.y32_c01120{bottom:827.280000px;}
.y2e_c01120{bottom:828.000000px;}
.y31_c01120{bottom:828.720000px;}
.y2a_c01120{bottom:846.720000px;}
.y2b_c01120{bottom:847.440000px;}
.y29_c01120{bottom:848.160000px;}
.y28_c01120{bottom:848.880000px;}
.y2c_c01120{bottom:850.320000px;}
.y27_c01120{bottom:868.320000px;}
.y25_c01120{bottom:869.040000px;}
.y23_c01120{bottom:869.760000px;}
.y24_c01120{bottom:871.920000px;}
.y26_c01120{bottom:872.640000px;}
.y21_c01120{bottom:897.120000px;}
.y1e_c01120{bottom:900.000000px;}
.y1d_c01120{bottom:900.720000px;}
.y20_c01120{bottom:901.440000px;}
.y22_c01120{bottom:902.160000px;}
.y1f_c01120{bottom:902.880000px;}
.y1b_c01120{bottom:941.760000px;}
.y1c_c01120{bottom:945.360000px;}
.y15_c01120{bottom:974.160000px;}
.y19_c01120{bottom:974.880000px;}
.y16_c01120{bottom:975.600000px;}
.y14_c01120{bottom:976.320000px;}
.y17_c01120{bottom:977.040000px;}
.y18_c01120{bottom:977.760000px;}
.y1a_c01120{bottom:978.480000px;}
.yd_c01120{bottom:1005.120000px;}
.yc_c01120{bottom:1005.840000px;}
.yb_c01120{bottom:1006.560000px;}
.y10_c01120{bottom:1007.280000px;}
.y11_c01120{bottom:1008.000000px;}
.ye_c01120{bottom:1008.720000px;}
.yf_c01120{bottom:1009.440000px;}
.y12_c01120{bottom:1010.160000px;}
.y13_c01120{bottom:1013.040000px;}
.y4_c01120{bottom:1036.800000px;}
.y2_c01120{bottom:1038.240000px;}
.y3_c01120{bottom:1038.960000px;}
.y5_c01120{bottom:1039.680000px;}
.y7_c01120{bottom:1040.400000px;}
.y6_c01120{bottom:1041.120000px;}
.y8_c01120{bottom:1041.840000px;}
.ya_c01120{bottom:1043.280000px;}
.y9_c01120{bottom:1044.000000px;}
.y1_c01120{bottom:1090.800000px;}
.hb_c01120{height:7.775156px;}
.h8_c01120{height:10.366875px;}
.h15_c01120{height:18.142031px;}
.h6_c01120{height:31.100625px;}
.h4_c01120{height:38.875781px;}
.h3_c01120{height:41.467500px;}
.hf_c01120{height:43.770937px;}
.hc_c01120{height:44.059219px;}
.h7_c01120{height:46.650937px;}
.h13_c01120{height:48.377813px;}
.h9_c01120{height:49.242656px;}
.ha_c01120{height:51.834375px;}
.h5_c01120{height:54.426094px;}
.h12_c01120{height:54.714375px;}
.h10_c01120{height:57.017812px;}
.hd_c01120{height:57.306094px;}
.h11_c01120{height:59.609531px;}
.h14_c01120{height:62.201250px;}
.h2_c01120{height:64.792969px;}
.he_c01120{height:69.976406px;}
.h0_c01120{height:1142.640000px;}
.h1_c01120{height:1143.000000px;}
.w1_c01120{width:790.500000px;}
.w0_c01120{width:790.560000px;}
.x0_c01120{left:0.000000px;}
.x48_c01120{left:77.040000px;}
.x2_c01120{left:78.480000px;}
.x32_c01120{left:79.920000px;}
.x2e_c01120{left:88.560000px;}
.x24_c01120{left:90.720000px;}
.x3_c01120{left:99.360000px;}
.x53_c01120{left:108.720000px;}
.x1f_c01120{left:110.880000px;}
.x25_c01120{left:120.960000px;}
.x35_c01120{left:122.400000px;}
.x4_c01120{left:132.480000px;}
.x17_c01120{left:141.840000px;}
.x10_c01120{left:143.280000px;}
.x26_c01120{left:153.360000px;}
.x3f_c01120{left:162.000000px;}
.x2b_c01120{left:164.160000px;}
.x18_c01120{left:174.960000px;}
.x44_c01120{left:183.600000px;}
.x5_c01120{left:185.760000px;}
.x19_c01120{left:195.840000px;}
.x56_c01120{left:204.480000px;}
.x6_c01120{left:207.360000px;}
.x3a_c01120{left:216.720000px;}
.x49_c01120{left:226.080000px;}
.x30_c01120{left:227.520000px;}
.x20_c01120{left:228.960000px;}
.x7_c01120{left:250.560000px;}
.x40_c01120{left:259.200000px;}
.x1a_c01120{left:261.360000px;}
.x45_c01120{left:270.000000px;}
.x4c_c01120{left:280.800000px;}
.x46_c01120{left:292.320000px;}
.x3b_c01120{left:301.680000px;}
.x21_c01120{left:303.120000px;}
.x8_c01120{left:304.560000px;}
.x47_c01120{left:312.480000px;}
.x39_c01120{left:314.640000px;}
.x41_c01120{left:323.280000px;}
.x9_c01120{left:334.800000px;}
.x1b_c01120{left:336.240000px;}
.x50_c01120{left:344.160000px;}
.x37_c01120{left:346.320000px;}
.x2d_c01120{left:347.760000px;}
.x36_c01120{left:356.400000px;}
.x27_c01120{left:357.840000px;}
.x3c_c01120{left:367.200000px;}
.x11_c01120{left:369.360000px;}
.x54_c01120{left:377.280000px;}
.x28_c01120{left:389.520000px;}
.x2c_c01120{left:390.960000px;}
.x33_c01120{left:410.400000px;}
.xa_c01120{left:412.560000px;}
.x12_c01120{left:421.200000px;}
.x55_c01120{left:431.280000px;}
.x42_c01120{left:442.080000px;}
.x1c_c01120{left:443.520000px;}
.x57_c01120{left:452.880000px;}
.xb_c01120{left:454.320000px;}
.x29_c01120{left:455.760000px;}
.x51_c01120{left:462.960000px;}
.x1d_c01120{left:475.920000px;}
.xc_c01120{left:477.360000px;}
.x2f_c01120{left:486.720000px;}
.x31_c01120{left:488.160000px;}
.x3d_c01120{left:507.600000px;}
.x1e_c01120{left:518.400000px;}
.xd_c01120{left:520.560000px;}
.x58_c01120{left:527.760000px;}
.x52_c01120{left:529.200000px;}
.x22_c01120{left:530.640000px;}
.x13_c01120{left:540.720000px;}
.x4d_c01120{left:550.800000px;}
.x43_c01120{left:560.880000px;}
.x4a_c01120{left:562.320000px;}
.x14_c01120{left:573.840000px;}
.x59_c01120{left:583.920000px;}
.x2a_c01120{left:585.360000px;}
.x3e_c01120{left:605.520000px;}
.x4e_c01120{left:617.040000px;}
.xe_c01120{left:618.480000px;}
.x4b_c01120{left:627.840000px;}
.x23_c01120{left:640.080000px;}
.x4f_c01120{left:658.800000px;}
.x15_c01120{left:660.960000px;}
.x38_c01120{left:672.480000px;}
.x34_c01120{left:682.560000px;}
.x16_c01120{left:684.000000px;}
.x1_c01120{left:711.360000px;}
.xf_c01120{left:717.120000px;}
@media print{
.v3_c01120{vertical-align:-7.680000pt;}
.v2_c01120{vertical-align:-2.560000pt;}
.v0_c01120{vertical-align:0.000000pt;}
.v1_c01120{vertical-align:2.560000pt;}
.ls0_c01120{letter-spacing:0.000000pt;}
.ws7_c01120{word-spacing:-1.848320pt;}
.ws8_c01120{word-spacing:0.000000pt;}
.ws1_c01120{word-spacing:2.337493pt;}
.ws2_c01120{word-spacing:6.089600pt;}
.ws5_c01120{word-spacing:28.334507pt;}
.ws6_c01120{word-spacing:44.348800pt;}
.ws3_c01120{word-spacing:52.291200pt;}
.ws4_c01120{word-spacing:73.381755pt;}
.ws0_c01120{word-spacing:505.477973pt;}
.fs9_c01120{font-size:7.680000pt;}
.fs6_c01120{font-size:10.240000pt;}
.fsf_c01120{font-size:17.920000pt;}
.fs4_c01120{font-size:30.720000pt;}
.fs2_c01120{font-size:38.400000pt;}
.fs1_c01120{font-size:40.960000pt;}
.fsa_c01120{font-size:43.520000pt;}
.fs5_c01120{font-size:46.080000pt;}
.fs7_c01120{font-size:48.640000pt;}
.fs8_c01120{font-size:51.200000pt;}
.fs3_c01120{font-size:53.760000pt;}
.fsc_c01120{font-size:56.320000pt;}
.fsd_c01120{font-size:58.880000pt;}
.fse_c01120{font-size:61.440000pt;}
.fs0_c01120{font-size:64.000000pt;}
.fsb_c01120{font-size:69.120000pt;}
.y0_c01120{bottom:0.000000pt;}
.yae_c01120{bottom:149.760000pt;}
.yad_c01120{bottom:172.800000pt;}
.yab_c01120{bottom:173.440000pt;}
.yaa_c01120{bottom:174.720000pt;}
.yac_c01120{bottom:175.360000pt;}
.ya9_c01120{bottom:178.560000pt;}
.ya8_c01120{bottom:179.840000pt;}
.ya7_c01120{bottom:180.480000pt;}
.ya5_c01120{bottom:201.600000pt;}
.ya4_c01120{bottom:202.240000pt;}
.ya3_c01120{bottom:202.880000pt;}
.ya6_c01120{bottom:203.520000pt;}
.ya2_c01120{bottom:205.440000pt;}
.ya0_c01120{bottom:206.720000pt;}
.y9f_c01120{bottom:208.000000pt;}
.ya1_c01120{bottom:208.640000pt;}
.y9e_c01120{bottom:229.760000pt;}
.y9d_c01120{bottom:230.400000pt;}
.y9c_c01120{bottom:232.320000pt;}
.y9a_c01120{bottom:233.600000pt;}
.y99_c01120{bottom:234.240000pt;}
.y9b_c01120{bottom:234.880000pt;}
.y98_c01120{bottom:259.840000pt;}
.y96_c01120{bottom:260.480000pt;}
.y97_c01120{bottom:261.760000pt;}
.y94_c01120{bottom:262.400000pt;}
.y95_c01120{bottom:263.040000pt;}
.y93_c01120{bottom:264.320000pt;}
.y92_c01120{bottom:264.960000pt;}
.y91_c01120{bottom:265.600000pt;}
.y90_c01120{bottom:294.400000pt;}
.y8d_c01120{bottom:297.600000pt;}
.y8f_c01120{bottom:298.240000pt;}
.y8c_c01120{bottom:298.880000pt;}
.y8e_c01120{bottom:300.800000pt;}
.y85_c01120{bottom:309.120000pt;}
.y86_c01120{bottom:309.760000pt;}
.y84_c01120{bottom:312.320000pt;}
.y8b_c01120{bottom:316.800000pt;}
.y8a_c01120{bottom:318.080000pt;}
.y89_c01120{bottom:319.360000pt;}
.y88_c01120{bottom:320.000000pt;}
.y87_c01120{bottom:320.640000pt;}
.y83_c01120{bottom:354.560000pt;}
.y81_c01120{bottom:355.200000pt;}
.y7f_c01120{bottom:355.840000pt;}
.y80_c01120{bottom:357.120000pt;}
.y82_c01120{bottom:358.400000pt;}
.y7d_c01120{bottom:389.760000pt;}
.y7e_c01120{bottom:391.040000pt;}
.y7b_c01120{bottom:391.680000pt;}
.y7a_c01120{bottom:392.960000pt;}
.y78_c01120{bottom:393.600000pt;}
.y7c_c01120{bottom:394.240000pt;}
.y79_c01120{bottom:395.520000pt;}
.y77_c01120{bottom:428.800000pt;}
.y76_c01120{bottom:431.360000pt;}
.y75_c01120{bottom:432.000000pt;}
.y74_c01120{bottom:432.640000pt;}
.y73_c01120{bottom:433.280000pt;}
.y72_c01120{bottom:433.920000pt;}
.y71_c01120{bottom:485.760000pt;}
.y6f_c01120{bottom:486.400000pt;}
.y6d_c01120{bottom:487.680000pt;}
.y70_c01120{bottom:488.320000pt;}
.y6c_c01120{bottom:488.960000pt;}
.y6e_c01120{bottom:489.600000pt;}
.y6a_c01120{bottom:525.440000pt;}
.y6b_c01120{bottom:527.360000pt;}
.y69_c01120{bottom:543.360000pt;}
.y67_c01120{bottom:544.000000pt;}
.y68_c01120{bottom:544.640000pt;}
.y66_c01120{bottom:545.280000pt;}
.y65_c01120{bottom:546.560000pt;}
.y64_c01120{bottom:561.920000pt;}
.y63_c01120{bottom:562.560000pt;}
.y62_c01120{bottom:563.200000pt;}
.y61_c01120{bottom:563.840000pt;}
.y60_c01120{bottom:580.480000pt;}
.y5f_c01120{bottom:581.120000pt;}
.y5e_c01120{bottom:581.760000pt;}
.y5b_c01120{bottom:582.400000pt;}
.y5c_c01120{bottom:583.040000pt;}
.y5d_c01120{bottom:584.320000pt;}
.y5a_c01120{bottom:599.680000pt;}
.y59_c01120{bottom:600.320000pt;}
.y57_c01120{bottom:600.960000pt;}
.y58_c01120{bottom:601.600000pt;}
.y55_c01120{bottom:602.880000pt;}
.y56_c01120{bottom:603.520000pt;}
.y54_c01120{bottom:618.880000pt;}
.y53_c01120{bottom:619.520000pt;}
.y51_c01120{bottom:620.160000pt;}
.y50_c01120{bottom:622.080000pt;}
.y52_c01120{bottom:622.720000pt;}
.y4f_c01120{bottom:638.080000pt;}
.y4b_c01120{bottom:638.720000pt;}
.y4c_c01120{bottom:639.360000pt;}
.y4d_c01120{bottom:640.000000pt;}
.y4a_c01120{bottom:640.640000pt;}
.y4e_c01120{bottom:641.280000pt;}
.y49_c01120{bottom:656.640000pt;}
.y44_c01120{bottom:657.280000pt;}
.y45_c01120{bottom:657.920000pt;}
.y43_c01120{bottom:658.560000pt;}
.y48_c01120{bottom:659.200000pt;}
.y46_c01120{bottom:659.840000pt;}
.y47_c01120{bottom:660.480000pt;}
.y41_c01120{bottom:676.480000pt;}
.y3e_c01120{bottom:677.120000pt;}
.y42_c01120{bottom:677.760000pt;}
.y40_c01120{bottom:678.400000pt;}
.y3f_c01120{bottom:679.040000pt;}
.y3b_c01120{bottom:695.040000pt;}
.y39_c01120{bottom:695.680000pt;}
.y3c_c01120{bottom:696.320000pt;}
.y3a_c01120{bottom:697.600000pt;}
.y3d_c01120{bottom:698.240000pt;}
.y33_c01120{bottom:714.240000pt;}
.y36_c01120{bottom:715.520000pt;}
.y35_c01120{bottom:716.160000pt;}
.y34_c01120{bottom:716.800000pt;}
.y37_c01120{bottom:717.440000pt;}
.y38_c01120{bottom:718.080000pt;}
.y2d_c01120{bottom:733.440000pt;}
.y2f_c01120{bottom:734.080000pt;}
.y30_c01120{bottom:734.720000pt;}
.y32_c01120{bottom:735.360000pt;}
.y2e_c01120{bottom:736.000000pt;}
.y31_c01120{bottom:736.640000pt;}
.y2a_c01120{bottom:752.640000pt;}
.y2b_c01120{bottom:753.280000pt;}
.y29_c01120{bottom:753.920000pt;}
.y28_c01120{bottom:754.560000pt;}
.y2c_c01120{bottom:755.840000pt;}
.y27_c01120{bottom:771.840000pt;}
.y25_c01120{bottom:772.480000pt;}
.y23_c01120{bottom:773.120000pt;}
.y24_c01120{bottom:775.040000pt;}
.y26_c01120{bottom:775.680000pt;}
.y21_c01120{bottom:797.440000pt;}
.y1e_c01120{bottom:800.000000pt;}
.y1d_c01120{bottom:800.640000pt;}
.y20_c01120{bottom:801.280000pt;}
.y22_c01120{bottom:801.920000pt;}
.y1f_c01120{bottom:802.560000pt;}
.y1b_c01120{bottom:837.120000pt;}
.y1c_c01120{bottom:840.320000pt;}
.y15_c01120{bottom:865.920000pt;}
.y19_c01120{bottom:866.560000pt;}
.y16_c01120{bottom:867.200000pt;}
.y14_c01120{bottom:867.840000pt;}
.y17_c01120{bottom:868.480000pt;}
.y18_c01120{bottom:869.120000pt;}
.y1a_c01120{bottom:869.760000pt;}
.yd_c01120{bottom:893.440000pt;}
.yc_c01120{bottom:894.080000pt;}
.yb_c01120{bottom:894.720000pt;}
.y10_c01120{bottom:895.360000pt;}
.y11_c01120{bottom:896.000000pt;}
.ye_c01120{bottom:896.640000pt;}
.yf_c01120{bottom:897.280000pt;}
.y12_c01120{bottom:897.920000pt;}
.y13_c01120{bottom:900.480000pt;}
.y4_c01120{bottom:921.600000pt;}
.y2_c01120{bottom:922.880000pt;}
.y3_c01120{bottom:923.520000pt;}
.y5_c01120{bottom:924.160000pt;}
.y7_c01120{bottom:924.800000pt;}
.y6_c01120{bottom:925.440000pt;}
.y8_c01120{bottom:926.080000pt;}
.ya_c01120{bottom:927.360000pt;}
.y9_c01120{bottom:928.000000pt;}
.y1_c01120{bottom:969.600000pt;}
.hb_c01120{height:6.911250pt;}
.h8_c01120{height:9.215000pt;}
.h15_c01120{height:16.126250pt;}
.h6_c01120{height:27.645000pt;}
.h4_c01120{height:34.556250pt;}
.h3_c01120{height:36.860000pt;}
.hf_c01120{height:38.907500pt;}
.hc_c01120{height:39.163750pt;}
.h7_c01120{height:41.467500pt;}
.h13_c01120{height:43.002500pt;}
.h9_c01120{height:43.771250pt;}
.ha_c01120{height:46.075000pt;}
.h5_c01120{height:48.378750pt;}
.h12_c01120{height:48.635000pt;}
.h10_c01120{height:50.682500pt;}
.hd_c01120{height:50.938750pt;}
.h11_c01120{height:52.986250pt;}
.h14_c01120{height:55.290000pt;}
.h2_c01120{height:57.593750pt;}
.he_c01120{height:62.201250pt;}
.h0_c01120{height:1015.680000pt;}
.h1_c01120{height:1016.000000pt;}
.w1_c01120{width:702.666667pt;}
.w0_c01120{width:702.720000pt;}
.x0_c01120{left:0.000000pt;}
.x48_c01120{left:68.480000pt;}
.x2_c01120{left:69.760000pt;}
.x32_c01120{left:71.040000pt;}
.x2e_c01120{left:78.720000pt;}
.x24_c01120{left:80.640000pt;}
.x3_c01120{left:88.320000pt;}
.x53_c01120{left:96.640000pt;}
.x1f_c01120{left:98.560000pt;}
.x25_c01120{left:107.520000pt;}
.x35_c01120{left:108.800000pt;}
.x4_c01120{left:117.760000pt;}
.x17_c01120{left:126.080000pt;}
.x10_c01120{left:127.360000pt;}
.x26_c01120{left:136.320000pt;}
.x3f_c01120{left:144.000000pt;}
.x2b_c01120{left:145.920000pt;}
.x18_c01120{left:155.520000pt;}
.x44_c01120{left:163.200000pt;}
.x5_c01120{left:165.120000pt;}
.x19_c01120{left:174.080000pt;}
.x56_c01120{left:181.760000pt;}
.x6_c01120{left:184.320000pt;}
.x3a_c01120{left:192.640000pt;}
.x49_c01120{left:200.960000pt;}
.x30_c01120{left:202.240000pt;}
.x20_c01120{left:203.520000pt;}
.x7_c01120{left:222.720000pt;}
.x40_c01120{left:230.400000pt;}
.x1a_c01120{left:232.320000pt;}
.x45_c01120{left:240.000000pt;}
.x4c_c01120{left:249.600000pt;}
.x46_c01120{left:259.840000pt;}
.x3b_c01120{left:268.160000pt;}
.x21_c01120{left:269.440000pt;}
.x8_c01120{left:270.720000pt;}
.x47_c01120{left:277.760000pt;}
.x39_c01120{left:279.680000pt;}
.x41_c01120{left:287.360000pt;}
.x9_c01120{left:297.600000pt;}
.x1b_c01120{left:298.880000pt;}
.x50_c01120{left:305.920000pt;}
.x37_c01120{left:307.840000pt;}
.x2d_c01120{left:309.120000pt;}
.x36_c01120{left:316.800000pt;}
.x27_c01120{left:318.080000pt;}
.x3c_c01120{left:326.400000pt;}
.x11_c01120{left:328.320000pt;}
.x54_c01120{left:335.360000pt;}
.x28_c01120{left:346.240000pt;}
.x2c_c01120{left:347.520000pt;}
.x33_c01120{left:364.800000pt;}
.xa_c01120{left:366.720000pt;}
.x12_c01120{left:374.400000pt;}
.x55_c01120{left:383.360000pt;}
.x42_c01120{left:392.960000pt;}
.x1c_c01120{left:394.240000pt;}
.x57_c01120{left:402.560000pt;}
.xb_c01120{left:403.840000pt;}
.x29_c01120{left:405.120000pt;}
.x51_c01120{left:411.520000pt;}
.x1d_c01120{left:423.040000pt;}
.xc_c01120{left:424.320000pt;}
.x2f_c01120{left:432.640000pt;}
.x31_c01120{left:433.920000pt;}
.x3d_c01120{left:451.200000pt;}
.x1e_c01120{left:460.800000pt;}
.xd_c01120{left:462.720000pt;}
.x58_c01120{left:469.120000pt;}
.x52_c01120{left:470.400000pt;}
.x22_c01120{left:471.680000pt;}
.x13_c01120{left:480.640000pt;}
.x4d_c01120{left:489.600000pt;}
.x43_c01120{left:498.560000pt;}
.x4a_c01120{left:499.840000pt;}
.x14_c01120{left:510.080000pt;}
.x59_c01120{left:519.040000pt;}
.x2a_c01120{left:520.320000pt;}
.x3e_c01120{left:538.240000pt;}
.x4e_c01120{left:548.480000pt;}
.xe_c01120{left:549.760000pt;}
.x4b_c01120{left:558.080000pt;}
.x23_c01120{left:568.960000pt;}
.x4f_c01120{left:585.600000pt;}
.x15_c01120{left:587.520000pt;}
.x38_c01120{left:597.760000pt;}
.x34_c01120{left:606.720000pt;}
.x16_c01120{left:608.000000pt;}
.x1_c01120{left:632.320000pt;}
.xf_c01120{left:637.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_418203ddbc7adf79fb3b1704.woff2')format("woff");}.ff1_c01121{font-family:ff1_c01121;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m30_c01121{transform:matrix(0.185150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185150,0.000000,0.000000,0.250000,0,0);}
.m3_c01121{transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);}
.m50_c01121{transform:matrix(0.216950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216950,0.000000,0.000000,0.250000,0,0);}
.m4e_c01121{transform:matrix(0.235225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235225,0.000000,0.000000,0.250000,0,0);}
.m22_c01121{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m4f_c01121{transform:matrix(0.238325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238325,0.000000,0.000000,0.250000,0,0);}
.m27_c01121{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m29_c01121{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);}
.m2c_c01121{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01121{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);}
.m1b_c01121{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_c01121{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_c01121{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_c01121{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m19_c01121{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m45_c01121{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m13_c01121{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m4_c01121{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m9_c01121{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mf_c01121{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m11_c01121{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m16_c01121{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m21_c01121{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mc_c01121{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m6_c01121{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mb_c01121{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m44_c01121{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01121{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m39_c01121{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m26_c01121{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);}
.m2a_c01121{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m52_c01121{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1_c01121{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);}
.m35_c01121{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);}
.m34_c01121{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01121{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.me_c01121{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);}
.m43_c01121{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m15_c01121{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m25_c01121{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m5_c01121{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m0_c01121{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m10_c01121{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m37_c01121{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01121{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);}
.ma_c01121{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);}
.m28_c01121{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m2_c01121{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);}
.md_c01121{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m7_c01121{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);}
.m12_c01121{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);}
.m36_c01121{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_c01121{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01121{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01121{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);}
.m1f_c01121{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01121{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m31_c01121{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m32_c01121{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);}
.m33_c01121{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01121{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m51_c01121{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01121{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m14_c01121{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);}
.m3e_c01121{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m38_c01121{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);}
.m2e_c01121{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m5b_c01121{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m56_c01121{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m48_c01121{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m24_c01121{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);}
.m4a_c01121{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m47_c01121{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);}
.m5e_c01121{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m60_c01121{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m59_c01121{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);}
.m61_c01121{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);}
.m3f_c01121{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m57_c01121{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01121{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01121{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);}
.m5a_c01121{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m53_c01121{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m58_c01121{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01121{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);}
.m54_c01121{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);}
.m55_c01121{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m5c_c01121{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);}
.m5f_c01121{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m49_c01121{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01121{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m42_c01121{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m41_c01121{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);}
.m5d_c01121{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01121{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m40_c01121{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m20_c01121{transform:matrix(0.877500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.877500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.877500,0.000000,0.000000,0.250000,0,0);}
.m46_c01121{transform:matrix(0.985000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.985000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.985000,0.000000,0.000000,0.250000,0,0);}
.v0_c01121{vertical-align:0.000000px;}
.v1_c01121{vertical-align:2.880000px;}
.ls0_c01121{letter-spacing:0.000000px;}
.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;}
}
.ws4_c01121{word-spacing:0.000000px;}
.ws1_c01121{word-spacing:36.799440px;}
.ws2_c01121{word-spacing:48.934549px;}
.ws0_c01121{word-spacing:50.079600px;}
.ws3_c01121{word-spacing:102.367699px;}
.fc0_c01121{color:transparent;}
.fse_c01121{font-size:20.160000px;}
.fsd_c01121{font-size:34.560000px;}
.fs4_c01121{font-size:43.200000px;}
.fs1_c01121{font-size:46.080000px;}
.fs2_c01121{font-size:48.960000px;}
.fs8_c01121{font-size:51.840000px;}
.fs7_c01121{font-size:54.720000px;}
.fs6_c01121{font-size:57.600000px;}
.fs3_c01121{font-size:60.480000px;}
.fsa_c01121{font-size:63.360000px;}
.fsb_c01121{font-size:66.240000px;}
.fs11_c01121{font-size:69.120000px;}
.fs0_c01121{font-size:74.880000px;}
.fs5_c01121{font-size:77.760000px;}
.fsc_c01121{font-size:97.920000px;}
.fs10_c01121{font-size:100.800000px;}
.fsf_c01121{font-size:106.560000px;}
.fs9_c01121{font-size:144.000000px;}
.y0_c01121{bottom:0.000000px;}
.ycf_c01121{bottom:77.040000px;}
.yd1_c01121{bottom:77.760000px;}
.yd0_c01121{bottom:79.200000px;}
.ycc_c01121{bottom:79.920000px;}
.yce_c01121{bottom:80.640000px;}
.ycd_c01121{bottom:81.360000px;}
.ycb_c01121{bottom:83.520000px;}
.yc8_c01121{bottom:118.800000px;}
.yc6_c01121{bottom:119.520000px;}
.yca_c01121{bottom:120.960000px;}
.yc9_c01121{bottom:122.400000px;}
.yc7_c01121{bottom:123.120000px;}
.yc5_c01121{bottom:124.560000px;}
.yc3_c01121{bottom:162.720000px;}
.yc2_c01121{bottom:164.160000px;}
.yc0_c01121{bottom:164.880000px;}
.yc4_c01121{bottom:165.600000px;}
.yc1_c01121{bottom:167.040000px;}
.ybe_c01121{bottom:203.760000px;}
.ybd_c01121{bottom:204.480000px;}
.ybc_c01121{bottom:205.200000px;}
.ybf_c01121{bottom:206.640000px;}
.ybb_c01121{bottom:208.080000px;}
.yba_c01121{bottom:208.800000px;}
.yb9_c01121{bottom:210.240000px;}
.yb7_c01121{bottom:249.120000px;}
.yb8_c01121{bottom:249.840000px;}
.yb6_c01121{bottom:250.560000px;}
.yb5_c01121{bottom:252.000000px;}
.yb4_c01121{bottom:290.160000px;}
.yb2_c01121{bottom:290.880000px;}
.yb3_c01121{bottom:293.760000px;}
.yb1_c01121{bottom:294.480000px;}
.yb0_c01121{bottom:335.520000px;}
.yaf_c01121{bottom:375.120000px;}
.yad_c01121{bottom:375.840000px;}
.yae_c01121{bottom:378.720000px;}
.yac_c01121{bottom:379.440000px;}
.yab_c01121{bottom:419.040000px;}
.ya6_c01121{bottom:419.760000px;}
.yaa_c01121{bottom:420.480000px;}
.ya8_c01121{bottom:422.640000px;}
.ya9_c01121{bottom:424.800000px;}
.ya7_c01121{bottom:442.800000px;}
.ya4_c01121{bottom:443.520000px;}
.ya5_c01121{bottom:444.240000px;}
.ya3_c01121{bottom:483.120000px;}
.ya2_c01121{bottom:486.000000px;}
.y9f_c01121{bottom:526.320000px;}
.ya0_c01121{bottom:527.040000px;}
.y9d_c01121{bottom:527.760000px;}
.y9c_c01121{bottom:528.480000px;}
.y9e_c01121{bottom:529.200000px;}
.ya1_c01121{bottom:529.920000px;}
.y97_c01121{bottom:589.680000px;}
.y9a_c01121{bottom:591.120000px;}
.y98_c01121{bottom:591.840000px;}
.y99_c01121{bottom:592.560000px;}
.y9b_c01121{bottom:594.000000px;}
.y91_c01121{bottom:631.440000px;}
.y94_c01121{bottom:632.160000px;}
.y93_c01121{bottom:633.600000px;}
.y92_c01121{bottom:634.320000px;}
.y95_c01121{bottom:635.040000px;}
.y96_c01121{bottom:636.480000px;}
.y89_c01121{bottom:652.320000px;}
.y8a_c01121{bottom:653.040000px;}
.y8b_c01121{bottom:653.760000px;}
.y88_c01121{bottom:654.480000px;}
.y8e_c01121{bottom:655.200000px;}
.y8d_c01121{bottom:655.920000px;}
.y8c_c01121{bottom:656.640000px;}
.y8f_c01121{bottom:657.360000px;}
.y90_c01121{bottom:658.080000px;}
.y80_c01121{bottom:672.480000px;}
.y82_c01121{bottom:673.920000px;}
.y83_c01121{bottom:674.640000px;}
.y84_c01121{bottom:675.360000px;}
.y81_c01121{bottom:676.080000px;}
.y87_c01121{bottom:677.520000px;}
.y86_c01121{bottom:678.240000px;}
.y85_c01121{bottom:678.960000px;}
.y7a_c01121{bottom:694.080000px;}
.y7d_c01121{bottom:695.520000px;}
.y7e_c01121{bottom:696.240000px;}
.y7c_c01121{bottom:696.960000px;}
.y7b_c01121{bottom:697.680000px;}
.y7f_c01121{bottom:699.120000px;}
.y75_c01121{bottom:716.400000px;}
.y76_c01121{bottom:717.120000px;}
.y73_c01121{bottom:717.840000px;}
.y74_c01121{bottom:718.560000px;}
.y79_c01121{bottom:719.280000px;}
.y77_c01121{bottom:720.000000px;}
.y78_c01121{bottom:721.440000px;}
.y6b_c01121{bottom:735.840000px;}
.y6d_c01121{bottom:738.000000px;}
.y6c_c01121{bottom:738.720000px;}
.y6f_c01121{bottom:739.440000px;}
.y70_c01121{bottom:740.160000px;}
.y6e_c01121{bottom:740.880000px;}
.y72_c01121{bottom:742.320000px;}
.y71_c01121{bottom:743.040000px;}
.y64_c01121{bottom:757.440000px;}
.y65_c01121{bottom:758.160000px;}
.y60_c01121{bottom:759.600000px;}
.y66_c01121{bottom:760.320000px;}
.y67_c01121{bottom:761.040000px;}
.y68_c01121{bottom:761.760000px;}
.y69_c01121{bottom:762.480000px;}
.y6a_c01121{bottom:763.200000px;}
.y5d_c01121{bottom:779.760000px;}
.y5f_c01121{bottom:780.480000px;}
.y5e_c01121{bottom:781.920000px;}
.y62_c01121{bottom:783.360000px;}
.y61_c01121{bottom:784.080000px;}
.y63_c01121{bottom:784.800000px;}
.y56_c01121{bottom:802.080000px;}
.y55_c01121{bottom:802.800000px;}
.y58_c01121{bottom:803.520000px;}
.y59_c01121{bottom:804.240000px;}
.y57_c01121{bottom:804.960000px;}
.y5c_c01121{bottom:805.680000px;}
.y5b_c01121{bottom:806.400000px;}
.y5a_c01121{bottom:807.840000px;}
.y4e_c01121{bottom:823.680000px;}
.y4f_c01121{bottom:824.400000px;}
.y51_c01121{bottom:825.840000px;}
.y50_c01121{bottom:826.560000px;}
.y54_c01121{bottom:827.280000px;}
.y53_c01121{bottom:828.000000px;}
.y52_c01121{bottom:828.720000px;}
.y49_c01121{bottom:843.120000px;}
.y4b_c01121{bottom:844.560000px;}
.y48_c01121{bottom:845.280000px;}
.y4a_c01121{bottom:846.720000px;}
.y4d_c01121{bottom:848.160000px;}
.y4c_c01121{bottom:848.880000px;}
.y40_c01121{bottom:864.000000px;}
.y41_c01121{bottom:864.720000px;}
.y42_c01121{bottom:865.440000px;}
.y43_c01121{bottom:866.880000px;}
.y46_c01121{bottom:868.320000px;}
.y45_c01121{bottom:869.040000px;}
.y44_c01121{bottom:869.760000px;}
.y47_c01121{bottom:870.480000px;}
.y38_c01121{bottom:885.600000px;}
.y3a_c01121{bottom:887.040000px;}
.y3b_c01121{bottom:887.760000px;}
.y39_c01121{bottom:888.480000px;}
.y3c_c01121{bottom:889.200000px;}
.y3f_c01121{bottom:890.640000px;}
.y3d_c01121{bottom:891.360000px;}
.y3e_c01121{bottom:892.080000px;}
.y2f_c01121{bottom:906.480000px;}
.y30_c01121{bottom:907.200000px;}
.y31_c01121{bottom:907.920000px;}
.y32_c01121{bottom:908.640000px;}
.y33_c01121{bottom:909.360000px;}
.y34_c01121{bottom:910.800000px;}
.y36_c01121{bottom:912.240000px;}
.y35_c01121{bottom:913.680000px;}
.y37_c01121{bottom:915.120000px;}
.y25_c01121{bottom:927.360000px;}
.y1c_c01121{bottom:928.800000px;}
.y27_c01121{bottom:929.520000px;}
.y26_c01121{bottom:930.240000px;}
.y28_c01121{bottom:930.960000px;}
.y29_c01121{bottom:931.680000px;}
.y2a_c01121{bottom:932.400000px;}
.y2b_c01121{bottom:933.120000px;}
.y2c_c01121{bottom:933.840000px;}
.y2e_c01121{bottom:935.280000px;}
.y2d_c01121{bottom:936.720000px;}
.y1a_c01121{bottom:948.960000px;}
.y1b_c01121{bottom:949.680000px;}
.y1d_c01121{bottom:951.840000px;}
.y1e_c01121{bottom:952.560000px;}
.y1f_c01121{bottom:953.280000px;}
.y20_c01121{bottom:954.000000px;}
.y21_c01121{bottom:954.720000px;}
.y24_c01121{bottom:956.160000px;}
.y23_c01121{bottom:956.880000px;}
.y22_c01121{bottom:957.600000px;}
.y13_c01121{bottom:972.000000px;}
.y12_c01121{bottom:973.440000px;}
.y14_c01121{bottom:974.160000px;}
.y16_c01121{bottom:974.880000px;}
.y17_c01121{bottom:975.600000px;}
.y15_c01121{bottom:976.320000px;}
.y18_c01121{bottom:977.040000px;}
.y19_c01121{bottom:977.760000px;}
.yb_c01121{bottom:992.160000px;}
.yc_c01121{bottom:993.600000px;}
.ya_c01121{bottom:994.320000px;}
.yd_c01121{bottom:995.040000px;}
.yf_c01121{bottom:996.480000px;}
.ye_c01121{bottom:997.200000px;}
.y10_c01121{bottom:997.920000px;}
.y11_c01121{bottom:999.360000px;}
.y2_c01121{bottom:1025.280000px;}
.y3_c01121{bottom:1026.000000px;}
.y6_c01121{bottom:1028.160000px;}
.y5_c01121{bottom:1028.880000px;}
.y4_c01121{bottom:1029.600000px;}
.y8_c01121{bottom:1031.040000px;}
.y9_c01121{bottom:1031.760000px;}
.y7_c01121{bottom:1032.480000px;}
.y1_c01121{bottom:1083.600000px;}
.h11_c01121{height:18.142031px;}
.h10_c01121{height:31.100625px;}
.h6_c01121{height:38.875781px;}
.h3_c01121{height:41.467500px;}
.h4_c01121{height:44.059219px;}
.ha_c01121{height:46.650937px;}
.h9_c01121{height:49.242656px;}
.h8_c01121{height:51.834375px;}
.hb_c01121{height:52.122656px;}
.h5_c01121{height:54.426094px;}
.hd_c01121{height:57.017812px;}
.he_c01121{height:59.609531px;}
.h14_c01121{height:62.201250px;}
.h2_c01121{height:67.384687px;}
.h7_c01121{height:69.976406px;}
.hf_c01121{height:88.118437px;}
.h13_c01121{height:90.710156px;}
.h12_c01121{height:95.893594px;}
.hc_c01121{height:129.585938px;}
.h0_c01121{height:1140.480000px;}
.h1_c01121{height:1140.750000px;}
.w1_c01121{width:788.250000px;}
.w0_c01121{width:788.400000px;}
.x0_c01121{left:0.000000px;}
.x2_c01121{left:75.600000px;}
.x26_c01121{left:77.760000px;}
.x2f_c01121{left:79.200000px;}
.x5c_c01121{left:81.360000px;}
.xe_c01121{left:87.120000px;}
.x3_c01121{left:107.280000px;}
.xf_c01121{left:108.720000px;}
.x28_c01121{left:110.160000px;}
.x5f_c01121{left:112.320000px;}
.x1a_c01121{left:118.800000px;}
.x2a_c01121{left:120.960000px;}
.x57_c01121{left:123.120000px;}
.x17_c01121{left:128.880000px;}
.x27_c01121{left:130.320000px;}
.x33_c01121{left:133.920000px;}
.x10_c01121{left:151.200000px;}
.x58_c01121{left:154.080000px;}
.x18_c01121{left:161.280000px;}
.x29_c01121{left:162.720000px;}
.x2c_c01121{left:164.160000px;}
.x60_c01121{left:166.320000px;}
.x4_c01121{left:182.160000px;}
.x39_c01121{left:183.600000px;}
.x43_c01121{left:185.760000px;}
.x34_c01121{left:196.560000px;}
.x3a_c01121{left:217.440000px;}
.x5_c01121{left:224.640000px;}
.x11_c01121{left:226.080000px;}
.x2d_c01121{left:227.520000px;}
.x4f_c01121{left:239.760000px;}
.x44_c01121{left:249.840000px;}
.x42_c01121{left:260.640000px;}
.x61_c01121{left:262.080000px;}
.x3b_c01121{left:280.800000px;}
.x4a_c01121{left:282.960000px;}
.x4d_c01121{left:293.040000px;}
.x62_c01121{left:294.480000px;}
.x6_c01121{left:300.240000px;}
.x1b_c01121{left:301.680000px;}
.x30_c01121{left:303.120000px;}
.x35_c01121{left:313.920000px;}
.x41_c01121{left:324.000000px;}
.x45_c01121{left:326.160000px;}
.x7_c01121{left:332.640000px;}
.x12_c01121{left:334.080000px;}
.x55_c01121{left:336.240000px;}
.x63_c01121{left:337.680000px;}
.x19_c01121{left:343.440000px;}
.x1d_c01121{left:344.880000px;}
.x59_c01121{left:347.760000px;}
.x1c_c01121{left:354.240000px;}
.x21_c01121{left:356.400000px;}
.x50_c01121{left:357.840000px;}
.x3c_c01121{left:367.200000px;}
.x4e_c01121{left:368.640000px;}
.x51_c01121{left:379.440000px;}
.x5d_c01121{left:380.880000px;}
.x13_c01121{left:386.640000px;}
.x1e_c01121{left:388.080000px;}
.x4b_c01121{left:389.520000px;}
.x46_c01121{left:401.760000px;}
.x8_c01121{left:408.240000px;}
.x3d_c01121{left:411.120000px;}
.x36_c01121{left:421.920000px;}
.x52_c01121{left:433.440000px;}
.x64_c01121{left:444.960000px;}
.x9_c01121{left:451.440000px;}
.x22_c01121{left:452.880000px;}
.x47_c01121{left:465.840000px;}
.x20_c01121{left:486.000000px;}
.x48_c01121{left:497.520000px;}
.x5a_c01121{left:498.960000px;}
.x3e_c01121{left:507.600000px;}
.x65_c01121{left:509.760000px;}
.xa_c01121{left:527.040000px;}
.x14_c01121{left:528.480000px;}
.x31_c01121{left:529.920000px;}
.x49_c01121{left:531.360000px;}
.x3f_c01121{left:540.000000px;}
.x53_c01121{left:542.160000px;}
.x37_c01121{left:552.240000px;}
.xb_c01121{left:559.440000px;}
.x23_c01121{left:562.320000px;}
.x15_c01121{left:572.400000px;}
.x2b_c01121{left:573.840000px;}
.x1f_c01121{left:583.200000px;}
.x2e_c01121{left:584.640000px;}
.x16_c01121{left:615.600000px;}
.x5b_c01121{left:617.760000px;}
.x40_c01121{left:627.120000px;}
.x54_c01121{left:628.560000px;}
.xc_c01121{left:637.200000px;}
.x4c_c01121{left:638.640000px;}
.x66_c01121{left:662.400000px;}
.x32_c01121{left:671.760000px;}
.x56_c01121{left:673.200000px;}
.xd_c01121{left:680.400000px;}
.x24_c01121{left:681.840000px;}
.x5e_c01121{left:695.520000px;}
.x1_c01121{left:701.280000px;}
.x25_c01121{left:714.960000px;}
.x38_c01121{left:738.000000px;}
@media print{
.v0_c01121{vertical-align:0.000000pt;}
.v1_c01121{vertical-align:2.560000pt;}
.ls0_c01121{letter-spacing:0.000000pt;}
.ws4_c01121{word-spacing:0.000000pt;}
.ws1_c01121{word-spacing:32.710613pt;}
.ws2_c01121{word-spacing:43.497377pt;}
.ws0_c01121{word-spacing:44.515200pt;}
.ws3_c01121{word-spacing:90.993510pt;}
.fse_c01121{font-size:17.920000pt;}
.fsd_c01121{font-size:30.720000pt;}
.fs4_c01121{font-size:38.400000pt;}
.fs1_c01121{font-size:40.960000pt;}
.fs2_c01121{font-size:43.520000pt;}
.fs8_c01121{font-size:46.080000pt;}
.fs7_c01121{font-size:48.640000pt;}
.fs6_c01121{font-size:51.200000pt;}
.fs3_c01121{font-size:53.760000pt;}
.fsa_c01121{font-size:56.320000pt;}
.fsb_c01121{font-size:58.880000pt;}
.fs11_c01121{font-size:61.440000pt;}
.fs0_c01121{font-size:66.560000pt;}
.fs5_c01121{font-size:69.120000pt;}
.fsc_c01121{font-size:87.040000pt;}
.fs10_c01121{font-size:89.600000pt;}
.fsf_c01121{font-size:94.720000pt;}
.fs9_c01121{font-size:128.000000pt;}
.y0_c01121{bottom:0.000000pt;}
.ycf_c01121{bottom:68.480000pt;}
.yd1_c01121{bottom:69.120000pt;}
.yd0_c01121{bottom:70.400000pt;}
.ycc_c01121{bottom:71.040000pt;}
.yce_c01121{bottom:71.680000pt;}
.ycd_c01121{bottom:72.320000pt;}
.ycb_c01121{bottom:74.240000pt;}
.yc8_c01121{bottom:105.600000pt;}
.yc6_c01121{bottom:106.240000pt;}
.yca_c01121{bottom:107.520000pt;}
.yc9_c01121{bottom:108.800000pt;}
.yc7_c01121{bottom:109.440000pt;}
.yc5_c01121{bottom:110.720000pt;}
.yc3_c01121{bottom:144.640000pt;}
.yc2_c01121{bottom:145.920000pt;}
.yc0_c01121{bottom:146.560000pt;}
.yc4_c01121{bottom:147.200000pt;}
.yc1_c01121{bottom:148.480000pt;}
.ybe_c01121{bottom:181.120000pt;}
.ybd_c01121{bottom:181.760000pt;}
.ybc_c01121{bottom:182.400000pt;}
.ybf_c01121{bottom:183.680000pt;}
.ybb_c01121{bottom:184.960000pt;}
.yba_c01121{bottom:185.600000pt;}
.yb9_c01121{bottom:186.880000pt;}
.yb7_c01121{bottom:221.440000pt;}
.yb8_c01121{bottom:222.080000pt;}
.yb6_c01121{bottom:222.720000pt;}
.yb5_c01121{bottom:224.000000pt;}
.yb4_c01121{bottom:257.920000pt;}
.yb2_c01121{bottom:258.560000pt;}
.yb3_c01121{bottom:261.120000pt;}
.yb1_c01121{bottom:261.760000pt;}
.yb0_c01121{bottom:298.240000pt;}
.yaf_c01121{bottom:333.440000pt;}
.yad_c01121{bottom:334.080000pt;}
.yae_c01121{bottom:336.640000pt;}
.yac_c01121{bottom:337.280000pt;}
.yab_c01121{bottom:372.480000pt;}
.ya6_c01121{bottom:373.120000pt;}
.yaa_c01121{bottom:373.760000pt;}
.ya8_c01121{bottom:375.680000pt;}
.ya9_c01121{bottom:377.600000pt;}
.ya7_c01121{bottom:393.600000pt;}
.ya4_c01121{bottom:394.240000pt;}
.ya5_c01121{bottom:394.880000pt;}
.ya3_c01121{bottom:429.440000pt;}
.ya2_c01121{bottom:432.000000pt;}
.y9f_c01121{bottom:467.840000pt;}
.ya0_c01121{bottom:468.480000pt;}
.y9d_c01121{bottom:469.120000pt;}
.y9c_c01121{bottom:469.760000pt;}
.y9e_c01121{bottom:470.400000pt;}
.ya1_c01121{bottom:471.040000pt;}
.y97_c01121{bottom:524.160000pt;}
.y9a_c01121{bottom:525.440000pt;}
.y98_c01121{bottom:526.080000pt;}
.y99_c01121{bottom:526.720000pt;}
.y9b_c01121{bottom:528.000000pt;}
.y91_c01121{bottom:561.280000pt;}
.y94_c01121{bottom:561.920000pt;}
.y93_c01121{bottom:563.200000pt;}
.y92_c01121{bottom:563.840000pt;}
.y95_c01121{bottom:564.480000pt;}
.y96_c01121{bottom:565.760000pt;}
.y89_c01121{bottom:579.840000pt;}
.y8a_c01121{bottom:580.480000pt;}
.y8b_c01121{bottom:581.120000pt;}
.y88_c01121{bottom:581.760000pt;}
.y8e_c01121{bottom:582.400000pt;}
.y8d_c01121{bottom:583.040000pt;}
.y8c_c01121{bottom:583.680000pt;}
.y8f_c01121{bottom:584.320000pt;}
.y90_c01121{bottom:584.960000pt;}
.y80_c01121{bottom:597.760000pt;}
.y82_c01121{bottom:599.040000pt;}
.y83_c01121{bottom:599.680000pt;}
.y84_c01121{bottom:600.320000pt;}
.y81_c01121{bottom:600.960000pt;}
.y87_c01121{bottom:602.240000pt;}
.y86_c01121{bottom:602.880000pt;}
.y85_c01121{bottom:603.520000pt;}
.y7a_c01121{bottom:616.960000pt;}
.y7d_c01121{bottom:618.240000pt;}
.y7e_c01121{bottom:618.880000pt;}
.y7c_c01121{bottom:619.520000pt;}
.y7b_c01121{bottom:620.160000pt;}
.y7f_c01121{bottom:621.440000pt;}
.y75_c01121{bottom:636.800000pt;}
.y76_c01121{bottom:637.440000pt;}
.y73_c01121{bottom:638.080000pt;}
.y74_c01121{bottom:638.720000pt;}
.y79_c01121{bottom:639.360000pt;}
.y77_c01121{bottom:640.000000pt;}
.y78_c01121{bottom:641.280000pt;}
.y6b_c01121{bottom:654.080000pt;}
.y6d_c01121{bottom:656.000000pt;}
.y6c_c01121{bottom:656.640000pt;}
.y6f_c01121{bottom:657.280000pt;}
.y70_c01121{bottom:657.920000pt;}
.y6e_c01121{bottom:658.560000pt;}
.y72_c01121{bottom:659.840000pt;}
.y71_c01121{bottom:660.480000pt;}
.y64_c01121{bottom:673.280000pt;}
.y65_c01121{bottom:673.920000pt;}
.y60_c01121{bottom:675.200000pt;}
.y66_c01121{bottom:675.840000pt;}
.y67_c01121{bottom:676.480000pt;}
.y68_c01121{bottom:677.120000pt;}
.y69_c01121{bottom:677.760000pt;}
.y6a_c01121{bottom:678.400000pt;}
.y5d_c01121{bottom:693.120000pt;}
.y5f_c01121{bottom:693.760000pt;}
.y5e_c01121{bottom:695.040000pt;}
.y62_c01121{bottom:696.320000pt;}
.y61_c01121{bottom:696.960000pt;}
.y63_c01121{bottom:697.600000pt;}
.y56_c01121{bottom:712.960000pt;}
.y55_c01121{bottom:713.600000pt;}
.y58_c01121{bottom:714.240000pt;}
.y59_c01121{bottom:714.880000pt;}
.y57_c01121{bottom:715.520000pt;}
.y5c_c01121{bottom:716.160000pt;}
.y5b_c01121{bottom:716.800000pt;}
.y5a_c01121{bottom:718.080000pt;}
.y4e_c01121{bottom:732.160000pt;}
.y4f_c01121{bottom:732.800000pt;}
.y51_c01121{bottom:734.080000pt;}
.y50_c01121{bottom:734.720000pt;}
.y54_c01121{bottom:735.360000pt;}
.y53_c01121{bottom:736.000000pt;}
.y52_c01121{bottom:736.640000pt;}
.y49_c01121{bottom:749.440000pt;}
.y4b_c01121{bottom:750.720000pt;}
.y48_c01121{bottom:751.360000pt;}
.y4a_c01121{bottom:752.640000pt;}
.y4d_c01121{bottom:753.920000pt;}
.y4c_c01121{bottom:754.560000pt;}
.y40_c01121{bottom:768.000000pt;}
.y41_c01121{bottom:768.640000pt;}
.y42_c01121{bottom:769.280000pt;}
.y43_c01121{bottom:770.560000pt;}
.y46_c01121{bottom:771.840000pt;}
.y45_c01121{bottom:772.480000pt;}
.y44_c01121{bottom:773.120000pt;}
.y47_c01121{bottom:773.760000pt;}
.y38_c01121{bottom:787.200000pt;}
.y3a_c01121{bottom:788.480000pt;}
.y3b_c01121{bottom:789.120000pt;}
.y39_c01121{bottom:789.760000pt;}
.y3c_c01121{bottom:790.400000pt;}
.y3f_c01121{bottom:791.680000pt;}
.y3d_c01121{bottom:792.320000pt;}
.y3e_c01121{bottom:792.960000pt;}
.y2f_c01121{bottom:805.760000pt;}
.y30_c01121{bottom:806.400000pt;}
.y31_c01121{bottom:807.040000pt;}
.y32_c01121{bottom:807.680000pt;}
.y33_c01121{bottom:808.320000pt;}
.y34_c01121{bottom:809.600000pt;}
.y36_c01121{bottom:810.880000pt;}
.y35_c01121{bottom:812.160000pt;}
.y37_c01121{bottom:813.440000pt;}
.y25_c01121{bottom:824.320000pt;}
.y1c_c01121{bottom:825.600000pt;}
.y27_c01121{bottom:826.240000pt;}
.y26_c01121{bottom:826.880000pt;}
.y28_c01121{bottom:827.520000pt;}
.y29_c01121{bottom:828.160000pt;}
.y2a_c01121{bottom:828.800000pt;}
.y2b_c01121{bottom:829.440000pt;}
.y2c_c01121{bottom:830.080000pt;}
.y2e_c01121{bottom:831.360000pt;}
.y2d_c01121{bottom:832.640000pt;}
.y1a_c01121{bottom:843.520000pt;}
.y1b_c01121{bottom:844.160000pt;}
.y1d_c01121{bottom:846.080000pt;}
.y1e_c01121{bottom:846.720000pt;}
.y1f_c01121{bottom:847.360000pt;}
.y20_c01121{bottom:848.000000pt;}
.y21_c01121{bottom:848.640000pt;}
.y24_c01121{bottom:849.920000pt;}
.y23_c01121{bottom:850.560000pt;}
.y22_c01121{bottom:851.200000pt;}
.y13_c01121{bottom:864.000000pt;}
.y12_c01121{bottom:865.280000pt;}
.y14_c01121{bottom:865.920000pt;}
.y16_c01121{bottom:866.560000pt;}
.y17_c01121{bottom:867.200000pt;}
.y15_c01121{bottom:867.840000pt;}
.y18_c01121{bottom:868.480000pt;}
.y19_c01121{bottom:869.120000pt;}
.yb_c01121{bottom:881.920000pt;}
.yc_c01121{bottom:883.200000pt;}
.ya_c01121{bottom:883.840000pt;}
.yd_c01121{bottom:884.480000pt;}
.yf_c01121{bottom:885.760000pt;}
.ye_c01121{bottom:886.400000pt;}
.y10_c01121{bottom:887.040000pt;}
.y11_c01121{bottom:888.320000pt;}
.y2_c01121{bottom:911.360000pt;}
.y3_c01121{bottom:912.000000pt;}
.y6_c01121{bottom:913.920000pt;}
.y5_c01121{bottom:914.560000pt;}
.y4_c01121{bottom:915.200000pt;}
.y8_c01121{bottom:916.480000pt;}
.y9_c01121{bottom:917.120000pt;}
.y7_c01121{bottom:917.760000pt;}
.y1_c01121{bottom:963.200000pt;}
.h11_c01121{height:16.126250pt;}
.h10_c01121{height:27.645000pt;}
.h6_c01121{height:34.556250pt;}
.h3_c01121{height:36.860000pt;}
.h4_c01121{height:39.163750pt;}
.ha_c01121{height:41.467500pt;}
.h9_c01121{height:43.771250pt;}
.h8_c01121{height:46.075000pt;}
.hb_c01121{height:46.331250pt;}
.h5_c01121{height:48.378750pt;}
.hd_c01121{height:50.682500pt;}
.he_c01121{height:52.986250pt;}
.h14_c01121{height:55.290000pt;}
.h2_c01121{height:59.897500pt;}
.h7_c01121{height:62.201250pt;}
.hf_c01121{height:78.327500pt;}
.h13_c01121{height:80.631250pt;}
.h12_c01121{height:85.238750pt;}
.hc_c01121{height:115.187500pt;}
.h0_c01121{height:1013.760000pt;}
.h1_c01121{height:1014.000000pt;}
.w1_c01121{width:700.666667pt;}
.w0_c01121{width:700.800000pt;}
.x0_c01121{left:0.000000pt;}
.x2_c01121{left:67.200000pt;}
.x26_c01121{left:69.120000pt;}
.x2f_c01121{left:70.400000pt;}
.x5c_c01121{left:72.320000pt;}
.xe_c01121{left:77.440000pt;}
.x3_c01121{left:95.360000pt;}
.xf_c01121{left:96.640000pt;}
.x28_c01121{left:97.920000pt;}
.x5f_c01121{left:99.840000pt;}
.x1a_c01121{left:105.600000pt;}
.x2a_c01121{left:107.520000pt;}
.x57_c01121{left:109.440000pt;}
.x17_c01121{left:114.560000pt;}
.x27_c01121{left:115.840000pt;}
.x33_c01121{left:119.040000pt;}
.x10_c01121{left:134.400000pt;}
.x58_c01121{left:136.960000pt;}
.x18_c01121{left:143.360000pt;}
.x29_c01121{left:144.640000pt;}
.x2c_c01121{left:145.920000pt;}
.x60_c01121{left:147.840000pt;}
.x4_c01121{left:161.920000pt;}
.x39_c01121{left:163.200000pt;}
.x43_c01121{left:165.120000pt;}
.x34_c01121{left:174.720000pt;}
.x3a_c01121{left:193.280000pt;}
.x5_c01121{left:199.680000pt;}
.x11_c01121{left:200.960000pt;}
.x2d_c01121{left:202.240000pt;}
.x4f_c01121{left:213.120000pt;}
.x44_c01121{left:222.080000pt;}
.x42_c01121{left:231.680000pt;}
.x61_c01121{left:232.960000pt;}
.x3b_c01121{left:249.600000pt;}
.x4a_c01121{left:251.520000pt;}
.x4d_c01121{left:260.480000pt;}
.x62_c01121{left:261.760000pt;}
.x6_c01121{left:266.880000pt;}
.x1b_c01121{left:268.160000pt;}
.x30_c01121{left:269.440000pt;}
.x35_c01121{left:279.040000pt;}
.x41_c01121{left:288.000000pt;}
.x45_c01121{left:289.920000pt;}
.x7_c01121{left:295.680000pt;}
.x12_c01121{left:296.960000pt;}
.x55_c01121{left:298.880000pt;}
.x63_c01121{left:300.160000pt;}
.x19_c01121{left:305.280000pt;}
.x1d_c01121{left:306.560000pt;}
.x59_c01121{left:309.120000pt;}
.x1c_c01121{left:314.880000pt;}
.x21_c01121{left:316.800000pt;}
.x50_c01121{left:318.080000pt;}
.x3c_c01121{left:326.400000pt;}
.x4e_c01121{left:327.680000pt;}
.x51_c01121{left:337.280000pt;}
.x5d_c01121{left:338.560000pt;}
.x13_c01121{left:343.680000pt;}
.x1e_c01121{left:344.960000pt;}
.x4b_c01121{left:346.240000pt;}
.x46_c01121{left:357.120000pt;}
.x8_c01121{left:362.880000pt;}
.x3d_c01121{left:365.440000pt;}
.x36_c01121{left:375.040000pt;}
.x52_c01121{left:385.280000pt;}
.x64_c01121{left:395.520000pt;}
.x9_c01121{left:401.280000pt;}
.x22_c01121{left:402.560000pt;}
.x47_c01121{left:414.080000pt;}
.x20_c01121{left:432.000000pt;}
.x48_c01121{left:442.240000pt;}
.x5a_c01121{left:443.520000pt;}
.x3e_c01121{left:451.200000pt;}
.x65_c01121{left:453.120000pt;}
.xa_c01121{left:468.480000pt;}
.x14_c01121{left:469.760000pt;}
.x31_c01121{left:471.040000pt;}
.x49_c01121{left:472.320000pt;}
.x3f_c01121{left:480.000000pt;}
.x53_c01121{left:481.920000pt;}
.x37_c01121{left:490.880000pt;}
.xb_c01121{left:497.280000pt;}
.x23_c01121{left:499.840000pt;}
.x15_c01121{left:508.800000pt;}
.x2b_c01121{left:510.080000pt;}
.x1f_c01121{left:518.400000pt;}
.x2e_c01121{left:519.680000pt;}
.x16_c01121{left:547.200000pt;}
.x5b_c01121{left:549.120000pt;}
.x40_c01121{left:557.440000pt;}
.x54_c01121{left:558.720000pt;}
.xc_c01121{left:566.400000pt;}
.x4c_c01121{left:567.680000pt;}
.x66_c01121{left:588.800000pt;}
.x32_c01121{left:597.120000pt;}
.x56_c01121{left:598.400000pt;}
.xd_c01121{left:604.800000pt;}
.x24_c01121{left:606.080000pt;}
.x5e_c01121{left:618.240000pt;}
.x1_c01121{left:623.360000pt;}
.x25_c01121{left:635.520000pt;}
.x38_c01121{left:656.000000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1628d913a35ad5e3a0d7566e.woff2')format("woff");}.ff1_c01122{font-family:ff1_c01122;line-height:1.109863;font-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_c01122{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m64_c01122{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m17_c01122{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m69_c01122{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m22_c01122{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01122{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01122{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m53_c01122{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01122{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m47_c01122{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m20_c01122{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m10_c01122{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m11_c01122{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);}
.m4c_c01122{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m42_c01122{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);}
.m2e_c01122{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m23_c01122{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);}
.m5c_c01122{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01122{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);}
.m3c_c01122{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01122{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_c01122{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m4_c01122{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m2_c01122{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m63_c01122{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m0_c01122{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);}
.m2d_c01122{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.mc_c01122{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01122{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);}
.m62_c01122{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);}
.m61_c01122{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);}
.m60_c01122{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.md_c01122{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);}
.m14_c01122{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m18_c01122{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);}
.m15_c01122{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.me_c01122{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m7_c01122{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m1_c01122{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m58_c01122{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m36_c01122{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);}
.m33_c01122{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m57_c01122{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);}
.m44_c01122{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01122{transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01122{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);}
.mf_c01122{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01122{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m3_c01122{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01122{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m25_c01122{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);}
.m39_c01122{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m9_c01122{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m67_c01122{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);}
.m6a_c01122{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m27_c01122{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);}
.m43_c01122{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m5d_c01122{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m55_c01122{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m35_c01122{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);}
.m3e_c01122{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.ma_c01122{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m65_c01122{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m24_c01122{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);}
.m52_c01122{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m66_c01122{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m19_c01122{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m29_c01122{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m41_c01122{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);}
.m48_c01122{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);}
.m4d_c01122{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m5_c01122{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m59_c01122{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m31_c01122{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);}
.m5f_c01122{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m13_c01122{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01122{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m32_c01122{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);}
.mb_c01122{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01122{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01122{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01122{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m30_c01122{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);}
.m45_c01122{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);}
.m46_c01122{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m12_c01122{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);}
.m5e_c01122{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01122{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m50_c01122{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m38_c01122{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m5b_c01122{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m26_c01122{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m37_c01122{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m54_c01122{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);}
.m1c_c01122{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m40_c01122{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m21_c01122{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);}
.m8_c01122{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m6_c01122{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m56_c01122{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m68_c01122{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01122{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m34_c01122{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m5a_c01122{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.m51_c01122{transform:matrix(0.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680000,0.000000,0.000000,0.250000,0,0);}
.m49_c01122{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m28_c01122{transform:matrix(1.122500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.122500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.122500,0.000000,0.000000,0.250000,0,0);}
.v1_c01122{vertical-align:-2.880000px;}
.v0_c01122{vertical-align:0.000000px;}
.v3_c01122{vertical-align:2.880000px;}
.v2_c01122{vertical-align:8.640000px;}
.ls0_c01122{letter-spacing:0.000000px;}
.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:-6.490320px;}
.ws2_c01122{word-spacing:-1.837200px;}
.ws1_c01122{word-spacing:-0.393360px;}
.ws4_c01122{word-spacing:0.000000px;}
.ws3_c01122{word-spacing:0.999600px;}
.fc0_c01122{color:transparent;}
.fsc_c01122{font-size:20.160000px;}
.fs4_c01122{font-size:34.560000px;}
.fsd_c01122{font-size:37.440000px;}
.fs3_c01122{font-size:43.200000px;}
.fs5_c01122{font-size:46.080000px;}
.fs2_c01122{font-size:48.960000px;}
.fs1_c01122{font-size:51.840000px;}
.fs6_c01122{font-size:54.720000px;}
.fs7_c01122{font-size:57.600000px;}
.fs9_c01122{font-size:60.480000px;}
.fsb_c01122{font-size:63.360000px;}
.fs8_c01122{font-size:66.240000px;}
.fsa_c01122{font-size:69.120000px;}
.fse_c01122{font-size:72.000000px;}
.fs0_c01122{font-size:74.880000px;}
.y0_c01122{bottom:0.000000px;}
.y8b_c01122{bottom:33.120000px;}
.y8d_c01122{bottom:34.560000px;}
.y8c_c01122{bottom:36.000000px;}
.y8a_c01122{bottom:38.160000px;}
.y89_c01122{bottom:38.880000px;}
.y88_c01122{bottom:39.600000px;}
.y87_c01122{bottom:41.760000px;}
.y86_c01122{bottom:74.880000px;}
.y83_c01122{bottom:77.760000px;}
.y81_c01122{bottom:78.480000px;}
.y85_c01122{bottom:79.200000px;}
.y84_c01122{bottom:79.920000px;}
.y82_c01122{bottom:81.360000px;}
.y80_c01122{bottom:82.800000px;}
.y7f_c01122{bottom:83.520000px;}
.y7e_c01122{bottom:84.960000px;}
.y7a_c01122{bottom:120.240000px;}
.y7d_c01122{bottom:120.960000px;}
.y7c_c01122{bottom:121.680000px;}
.y7b_c01122{bottom:123.120000px;}
.y79_c01122{bottom:123.840000px;}
.y78_c01122{bottom:124.560000px;}
.y77_c01122{bottom:125.280000px;}
.y76_c01122{bottom:126.720000px;}
.y75_c01122{bottom:174.960000px;}
.y73_c01122{bottom:175.680000px;}
.y74_c01122{bottom:177.840000px;}
.y70_c01122{bottom:215.280000px;}
.y72_c01122{bottom:216.720000px;}
.y6f_c01122{bottom:217.440000px;}
.y71_c01122{bottom:218.160000px;}
.y6d_c01122{bottom:219.600000px;}
.y6e_c01122{bottom:220.320000px;}
.y6a_c01122{bottom:258.480000px;}
.y69_c01122{bottom:259.200000px;}
.y6c_c01122{bottom:259.920000px;}
.y6b_c01122{bottom:261.360000px;}
.y68_c01122{bottom:262.800000px;}
.y67_c01122{bottom:263.520000px;}
.y66_c01122{bottom:264.960000px;}
.y65_c01122{bottom:298.800000px;}
.y64_c01122{bottom:300.240000px;}
.y61_c01122{bottom:300.960000px;}
.y62_c01122{bottom:301.680000px;}
.y60_c01122{bottom:303.120000px;}
.y63_c01122{bottom:303.840000px;}
.y5e_c01122{bottom:343.440000px;}
.y5f_c01122{bottom:344.880000px;}
.y5d_c01122{bottom:345.600000px;}
.y5a_c01122{bottom:346.320000px;}
.y5c_c01122{bottom:347.040000px;}
.y5b_c01122{bottom:347.760000px;}
.y59_c01122{bottom:349.920000px;}
.y57_c01122{bottom:385.920000px;}
.y56_c01122{bottom:386.640000px;}
.y55_c01122{bottom:387.360000px;}
.y58_c01122{bottom:388.080000px;}
.y54_c01122{bottom:388.800000px;}
.y53_c01122{bottom:392.400000px;}
.y52_c01122{bottom:428.400000px;}
.y4e_c01122{bottom:430.560000px;}
.y51_c01122{bottom:431.280000px;}
.y50_c01122{bottom:432.000000px;}
.y4f_c01122{bottom:432.720000px;}
.y4d_c01122{bottom:433.440000px;}
.y4a_c01122{bottom:471.600000px;}
.y4b_c01122{bottom:472.320000px;}
.y4c_c01122{bottom:474.480000px;}
.y49_c01122{bottom:475.200000px;}
.y48_c01122{bottom:475.920000px;}
.y47_c01122{bottom:476.640000px;}
.y45_c01122{bottom:514.800000px;}
.y44_c01122{bottom:515.520000px;}
.y46_c01122{bottom:516.960000px;}
.y43_c01122{bottom:517.680000px;}
.y42_c01122{bottom:519.120000px;}
.y41_c01122{bottom:557.280000px;}
.y3e_c01122{bottom:558.000000px;}
.y3f_c01122{bottom:560.160000px;}
.y40_c01122{bottom:560.880000px;}
.y3c_c01122{bottom:599.760000px;}
.y3b_c01122{bottom:601.200000px;}
.y3d_c01122{bottom:602.640000px;}
.y3a_c01122{bottom:603.360000px;}
.y37_c01122{bottom:642.960000px;}
.y36_c01122{bottom:645.120000px;}
.y39_c01122{bottom:645.840000px;}
.y38_c01122{bottom:646.560000px;}
.y35_c01122{bottom:685.440000px;}
.y33_c01122{bottom:687.600000px;}
.y34_c01122{bottom:688.320000px;}
.y32_c01122{bottom:727.200000px;}
.y30_c01122{bottom:727.920000px;}
.y2e_c01122{bottom:729.360000px;}
.y31_c01122{bottom:730.080000px;}
.y2f_c01122{bottom:730.800000px;}
.y2c_c01122{bottom:770.400000px;}
.y2a_c01122{bottom:771.120000px;}
.y2b_c01122{bottom:772.560000px;}
.y2d_c01122{bottom:773.280000px;}
.y24_c01122{bottom:812.160000px;}
.y28_c01122{bottom:812.880000px;}
.y23_c01122{bottom:814.320000px;}
.y25_c01122{bottom:815.040000px;}
.y26_c01122{bottom:815.760000px;}
.y27_c01122{bottom:816.480000px;}
.y29_c01122{bottom:817.200000px;}
.y20_c01122{bottom:855.360000px;}
.y1e_c01122{bottom:856.800000px;}
.y1f_c01122{bottom:857.520000px;}
.y21_c01122{bottom:858.240000px;}
.y22_c01122{bottom:858.960000px;}
.y1a_c01122{bottom:897.840000px;}
.y1d_c01122{bottom:898.560000px;}
.y18_c01122{bottom:899.280000px;}
.y19_c01122{bottom:900.000000px;}
.y1b_c01122{bottom:901.440000px;}
.y1c_c01122{bottom:902.160000px;}
.y13_c01122{bottom:940.320000px;}
.y12_c01122{bottom:941.040000px;}
.y11_c01122{bottom:941.760000px;}
.y15_c01122{bottom:942.480000px;}
.y17_c01122{bottom:943.200000px;}
.y14_c01122{bottom:943.920000px;}
.y16_c01122{bottom:944.640000px;}
.yb_c01122{bottom:983.520000px;}
.yd_c01122{bottom:984.240000px;}
.yc_c01122{bottom:984.960000px;}
.ye_c01122{bottom:986.400000px;}
.yf_c01122{bottom:987.120000px;}
.y10_c01122{bottom:988.560000px;}
.y2_c01122{bottom:1026.720000px;}
.y6_c01122{bottom:1027.440000px;}
.y3_c01122{bottom:1028.160000px;}
.y8_c01122{bottom:1028.880000px;}
.y4_c01122{bottom:1029.600000px;}
.y5_c01122{bottom:1030.320000px;}
.y7_c01122{bottom:1031.040000px;}
.y9_c01122{bottom:1031.760000px;}
.ya_c01122{bottom:1032.480000px;}
.y1_c01122{bottom:1085.760000px;}
.he_c01122{height:18.142031px;}
.h6_c01122{height:31.100625px;}
.hf_c01122{height:33.692344px;}
.h5_c01122{height:38.875781px;}
.h7_c01122{height:41.467500px;}
.h4_c01122{height:44.059219px;}
.h3_c01122{height:46.650937px;}
.h8_c01122{height:49.242656px;}
.h9_c01122{height:51.834375px;}
.hb_c01122{height:54.426094px;}
.hd_c01122{height:57.017812px;}
.ha_c01122{height:59.609531px;}
.hc_c01122{height:62.201250px;}
.h10_c01122{height:64.792969px;}
.h2_c01122{height:67.384687px;}
.h0_c01122{height:1141.920000px;}
.h1_c01122{height:1142.250000px;}
.w1_c01122{width:789.750000px;}
.w0_c01122{width:789.840000px;}
.x0_c01122{left:0.000000px;}
.x2_c01122{left:77.760000px;}
.x48_c01122{left:79.200000px;}
.x11_c01122{left:110.160000px;}
.x1b_c01122{left:119.520000px;}
.x22_c01122{left:120.960000px;}
.x50_c01122{left:142.560000px;}
.xd_c01122{left:152.640000px;}
.x1c_c01122{left:162.720000px;}
.x33_c01122{left:164.160000px;}
.x49_c01122{left:173.520000px;}
.x3_c01122{left:184.320000px;}
.x4d_c01122{left:185.760000px;}
.x2e_c01122{left:195.120000px;}
.x12_c01122{left:205.920000px;}
.x4_c01122{left:216.000000px;}
.x4a_c01122{left:217.440000px;}
.x23_c01122{left:226.800000px;}
.x3b_c01122{left:237.600000px;}
.x29_c01122{left:248.400000px;}
.x1d_c01122{left:258.480000px;}
.x24_c01122{left:260.640000px;}
.x34_c01122{left:270.000000px;}
.x4c_c01122{left:272.880000px;}
.x2a_c01122{left:280.800000px;}
.x46_c01122{left:291.600000px;}
.xe_c01122{left:302.400000px;}
.x2b_c01122{left:312.480000px;}
.x13_c01122{left:313.920000px;}
.x4b_c01122{left:315.360000px;}
.x2f_c01122{left:324.000000px;}
.x37_c01122{left:333.360000px;}
.x3d_c01122{left:344.880000px;}
.x5_c01122{left:346.320000px;}
.x25_c01122{left:354.960000px;}
.x3c_c01122{left:356.400000px;}
.x30_c01122{left:367.200000px;}
.x6_c01122{left:378.000000px;}
.x14_c01122{left:386.640000px;}
.x3e_c01122{left:388.800000px;}
.x26_c01122{left:390.240000px;}
.x2c_c01122{left:399.600000px;}
.x1e_c01122{left:401.040000px;}
.x7_c01122{left:409.680000px;}
.x42_c01122{left:421.200000px;}
.x27_c01122{left:422.640000px;}
.x35_c01122{left:430.560000px;}
.x41_c01122{left:432.000000px;}
.x15_c01122{left:442.080000px;}
.x1f_c01122{left:452.160000px;}
.x4e_c01122{left:453.600000px;}
.x8_c01122{left:464.400000px;}
.xf_c01122{left:475.920000px;}
.x16_c01122{left:486.720000px;}
.x20_c01122{left:496.800000px;}
.x31_c01122{left:498.240000px;}
.x9_c01122{left:506.880000px;}
.x17_c01122{left:518.400000px;}
.x10_c01122{left:529.200000px;}
.x47_c01122{left:540.000000px;}
.xa_c01122{left:550.800000px;}
.x38_c01122{left:552.240000px;}
.x39_c01122{left:561.600000px;}
.x4f_c01122{left:572.400000px;}
.x21_c01122{left:583.920000px;}
.x28_c01122{left:594.000000px;}
.x18_c01122{left:604.800000px;}
.x43_c01122{left:606.960000px;}
.xb_c01122{left:616.320000px;}
.x3a_c01122{left:627.120000px;}
.x19_c01122{left:628.560000px;}
.x32_c01122{left:637.200000px;}
.x44_c01122{left:639.360000px;}
.x3f_c01122{left:648.000000px;}
.x2d_c01122{left:649.440000px;}
.x1a_c01122{left:660.240000px;}
.x45_c01122{left:671.040000px;}
.x36_c01122{left:681.120000px;}
.xc_c01122{left:682.560000px;}
.x40_c01122{left:693.360000px;}
.x1_c01122{left:708.480000px;}
@media print{
.v1_c01122{vertical-align:-2.560000pt;}
.v0_c01122{vertical-align:0.000000pt;}
.v3_c01122{vertical-align:2.560000pt;}
.v2_c01122{vertical-align:7.680000pt;}
.ls0_c01122{letter-spacing:0.000000pt;}
.ws0_c01122{word-spacing:-5.769173pt;}
.ws2_c01122{word-spacing:-1.633067pt;}
.ws1_c01122{word-spacing:-0.349653pt;}
.ws4_c01122{word-spacing:0.000000pt;}
.ws3_c01122{word-spacing:0.888533pt;}
.fsc_c01122{font-size:17.920000pt;}
.fs4_c01122{font-size:30.720000pt;}
.fsd_c01122{font-size:33.280000pt;}
.fs3_c01122{font-size:38.400000pt;}
.fs5_c01122{font-size:40.960000pt;}
.fs2_c01122{font-size:43.520000pt;}
.fs1_c01122{font-size:46.080000pt;}
.fs6_c01122{font-size:48.640000pt;}
.fs7_c01122{font-size:51.200000pt;}
.fs9_c01122{font-size:53.760000pt;}
.fsb_c01122{font-size:56.320000pt;}
.fs8_c01122{font-size:58.880000pt;}
.fsa_c01122{font-size:61.440000pt;}
.fse_c01122{font-size:64.000000pt;}
.fs0_c01122{font-size:66.560000pt;}
.y0_c01122{bottom:0.000000pt;}
.y8b_c01122{bottom:29.440000pt;}
.y8d_c01122{bottom:30.720000pt;}
.y8c_c01122{bottom:32.000000pt;}
.y8a_c01122{bottom:33.920000pt;}
.y89_c01122{bottom:34.560000pt;}
.y88_c01122{bottom:35.200000pt;}
.y87_c01122{bottom:37.120000pt;}
.y86_c01122{bottom:66.560000pt;}
.y83_c01122{bottom:69.120000pt;}
.y81_c01122{bottom:69.760000pt;}
.y85_c01122{bottom:70.400000pt;}
.y84_c01122{bottom:71.040000pt;}
.y82_c01122{bottom:72.320000pt;}
.y80_c01122{bottom:73.600000pt;}
.y7f_c01122{bottom:74.240000pt;}
.y7e_c01122{bottom:75.520000pt;}
.y7a_c01122{bottom:106.880000pt;}
.y7d_c01122{bottom:107.520000pt;}
.y7c_c01122{bottom:108.160000pt;}
.y7b_c01122{bottom:109.440000pt;}
.y79_c01122{bottom:110.080000pt;}
.y78_c01122{bottom:110.720000pt;}
.y77_c01122{bottom:111.360000pt;}
.y76_c01122{bottom:112.640000pt;}
.y75_c01122{bottom:155.520000pt;}
.y73_c01122{bottom:156.160000pt;}
.y74_c01122{bottom:158.080000pt;}
.y70_c01122{bottom:191.360000pt;}
.y72_c01122{bottom:192.640000pt;}
.y6f_c01122{bottom:193.280000pt;}
.y71_c01122{bottom:193.920000pt;}
.y6d_c01122{bottom:195.200000pt;}
.y6e_c01122{bottom:195.840000pt;}
.y6a_c01122{bottom:229.760000pt;}
.y69_c01122{bottom:230.400000pt;}
.y6c_c01122{bottom:231.040000pt;}
.y6b_c01122{bottom:232.320000pt;}
.y68_c01122{bottom:233.600000pt;}
.y67_c01122{bottom:234.240000pt;}
.y66_c01122{bottom:235.520000pt;}
.y65_c01122{bottom:265.600000pt;}
.y64_c01122{bottom:266.880000pt;}
.y61_c01122{bottom:267.520000pt;}
.y62_c01122{bottom:268.160000pt;}
.y60_c01122{bottom:269.440000pt;}
.y63_c01122{bottom:270.080000pt;}
.y5e_c01122{bottom:305.280000pt;}
.y5f_c01122{bottom:306.560000pt;}
.y5d_c01122{bottom:307.200000pt;}
.y5a_c01122{bottom:307.840000pt;}
.y5c_c01122{bottom:308.480000pt;}
.y5b_c01122{bottom:309.120000pt;}
.y59_c01122{bottom:311.040000pt;}
.y57_c01122{bottom:343.040000pt;}
.y56_c01122{bottom:343.680000pt;}
.y55_c01122{bottom:344.320000pt;}
.y58_c01122{bottom:344.960000pt;}
.y54_c01122{bottom:345.600000pt;}
.y53_c01122{bottom:348.800000pt;}
.y52_c01122{bottom:380.800000pt;}
.y4e_c01122{bottom:382.720000pt;}
.y51_c01122{bottom:383.360000pt;}
.y50_c01122{bottom:384.000000pt;}
.y4f_c01122{bottom:384.640000pt;}
.y4d_c01122{bottom:385.280000pt;}
.y4a_c01122{bottom:419.200000pt;}
.y4b_c01122{bottom:419.840000pt;}
.y4c_c01122{bottom:421.760000pt;}
.y49_c01122{bottom:422.400000pt;}
.y48_c01122{bottom:423.040000pt;}
.y47_c01122{bottom:423.680000pt;}
.y45_c01122{bottom:457.600000pt;}
.y44_c01122{bottom:458.240000pt;}
.y46_c01122{bottom:459.520000pt;}
.y43_c01122{bottom:460.160000pt;}
.y42_c01122{bottom:461.440000pt;}
.y41_c01122{bottom:495.360000pt;}
.y3e_c01122{bottom:496.000000pt;}
.y3f_c01122{bottom:497.920000pt;}
.y40_c01122{bottom:498.560000pt;}
.y3c_c01122{bottom:533.120000pt;}
.y3b_c01122{bottom:534.400000pt;}
.y3d_c01122{bottom:535.680000pt;}
.y3a_c01122{bottom:536.320000pt;}
.y37_c01122{bottom:571.520000pt;}
.y36_c01122{bottom:573.440000pt;}
.y39_c01122{bottom:574.080000pt;}
.y38_c01122{bottom:574.720000pt;}
.y35_c01122{bottom:609.280000pt;}
.y33_c01122{bottom:611.200000pt;}
.y34_c01122{bottom:611.840000pt;}
.y32_c01122{bottom:646.400000pt;}
.y30_c01122{bottom:647.040000pt;}
.y2e_c01122{bottom:648.320000pt;}
.y31_c01122{bottom:648.960000pt;}
.y2f_c01122{bottom:649.600000pt;}
.y2c_c01122{bottom:684.800000pt;}
.y2a_c01122{bottom:685.440000pt;}
.y2b_c01122{bottom:686.720000pt;}
.y2d_c01122{bottom:687.360000pt;}
.y24_c01122{bottom:721.920000pt;}
.y28_c01122{bottom:722.560000pt;}
.y23_c01122{bottom:723.840000pt;}
.y25_c01122{bottom:724.480000pt;}
.y26_c01122{bottom:725.120000pt;}
.y27_c01122{bottom:725.760000pt;}
.y29_c01122{bottom:726.400000pt;}
.y20_c01122{bottom:760.320000pt;}
.y1e_c01122{bottom:761.600000pt;}
.y1f_c01122{bottom:762.240000pt;}
.y21_c01122{bottom:762.880000pt;}
.y22_c01122{bottom:763.520000pt;}
.y1a_c01122{bottom:798.080000pt;}
.y1d_c01122{bottom:798.720000pt;}
.y18_c01122{bottom:799.360000pt;}
.y19_c01122{bottom:800.000000pt;}
.y1b_c01122{bottom:801.280000pt;}
.y1c_c01122{bottom:801.920000pt;}
.y13_c01122{bottom:835.840000pt;}
.y12_c01122{bottom:836.480000pt;}
.y11_c01122{bottom:837.120000pt;}
.y15_c01122{bottom:837.760000pt;}
.y17_c01122{bottom:838.400000pt;}
.y14_c01122{bottom:839.040000pt;}
.y16_c01122{bottom:839.680000pt;}
.yb_c01122{bottom:874.240000pt;}
.yd_c01122{bottom:874.880000pt;}
.yc_c01122{bottom:875.520000pt;}
.ye_c01122{bottom:876.800000pt;}
.yf_c01122{bottom:877.440000pt;}
.y10_c01122{bottom:878.720000pt;}
.y2_c01122{bottom:912.640000pt;}
.y6_c01122{bottom:913.280000pt;}
.y3_c01122{bottom:913.920000pt;}
.y8_c01122{bottom:914.560000pt;}
.y4_c01122{bottom:915.200000pt;}
.y5_c01122{bottom:915.840000pt;}
.y7_c01122{bottom:916.480000pt;}
.y9_c01122{bottom:917.120000pt;}
.ya_c01122{bottom:917.760000pt;}
.y1_c01122{bottom:965.120000pt;}
.he_c01122{height:16.126250pt;}
.h6_c01122{height:27.645000pt;}
.hf_c01122{height:29.948750pt;}
.h5_c01122{height:34.556250pt;}
.h7_c01122{height:36.860000pt;}
.h4_c01122{height:39.163750pt;}
.h3_c01122{height:41.467500pt;}
.h8_c01122{height:43.771250pt;}
.h9_c01122{height:46.075000pt;}
.hb_c01122{height:48.378750pt;}
.hd_c01122{height:50.682500pt;}
.ha_c01122{height:52.986250pt;}
.hc_c01122{height:55.290000pt;}
.h10_c01122{height:57.593750pt;}
.h2_c01122{height:59.897500pt;}
.h0_c01122{height:1015.040000pt;}
.h1_c01122{height:1015.333333pt;}
.w1_c01122{width:702.000000pt;}
.w0_c01122{width:702.080000pt;}
.x0_c01122{left:0.000000pt;}
.x2_c01122{left:69.120000pt;}
.x48_c01122{left:70.400000pt;}
.x11_c01122{left:97.920000pt;}
.x1b_c01122{left:106.240000pt;}
.x22_c01122{left:107.520000pt;}
.x50_c01122{left:126.720000pt;}
.xd_c01122{left:135.680000pt;}
.x1c_c01122{left:144.640000pt;}
.x33_c01122{left:145.920000pt;}
.x49_c01122{left:154.240000pt;}
.x3_c01122{left:163.840000pt;}
.x4d_c01122{left:165.120000pt;}
.x2e_c01122{left:173.440000pt;}
.x12_c01122{left:183.040000pt;}
.x4_c01122{left:192.000000pt;}
.x4a_c01122{left:193.280000pt;}
.x23_c01122{left:201.600000pt;}
.x3b_c01122{left:211.200000pt;}
.x29_c01122{left:220.800000pt;}
.x1d_c01122{left:229.760000pt;}
.x24_c01122{left:231.680000pt;}
.x34_c01122{left:240.000000pt;}
.x4c_c01122{left:242.560000pt;}
.x2a_c01122{left:249.600000pt;}
.x46_c01122{left:259.200000pt;}
.xe_c01122{left:268.800000pt;}
.x2b_c01122{left:277.760000pt;}
.x13_c01122{left:279.040000pt;}
.x4b_c01122{left:280.320000pt;}
.x2f_c01122{left:288.000000pt;}
.x37_c01122{left:296.320000pt;}
.x3d_c01122{left:306.560000pt;}
.x5_c01122{left:307.840000pt;}
.x25_c01122{left:315.520000pt;}
.x3c_c01122{left:316.800000pt;}
.x30_c01122{left:326.400000pt;}
.x6_c01122{left:336.000000pt;}
.x14_c01122{left:343.680000pt;}
.x3e_c01122{left:345.600000pt;}
.x26_c01122{left:346.880000pt;}
.x2c_c01122{left:355.200000pt;}
.x1e_c01122{left:356.480000pt;}
.x7_c01122{left:364.160000pt;}
.x42_c01122{left:374.400000pt;}
.x27_c01122{left:375.680000pt;}
.x35_c01122{left:382.720000pt;}
.x41_c01122{left:384.000000pt;}
.x15_c01122{left:392.960000pt;}
.x1f_c01122{left:401.920000pt;}
.x4e_c01122{left:403.200000pt;}
.x8_c01122{left:412.800000pt;}
.xf_c01122{left:423.040000pt;}
.x16_c01122{left:432.640000pt;}
.x20_c01122{left:441.600000pt;}
.x31_c01122{left:442.880000pt;}
.x9_c01122{left:450.560000pt;}
.x17_c01122{left:460.800000pt;}
.x10_c01122{left:470.400000pt;}
.x47_c01122{left:480.000000pt;}
.xa_c01122{left:489.600000pt;}
.x38_c01122{left:490.880000pt;}
.x39_c01122{left:499.200000pt;}
.x4f_c01122{left:508.800000pt;}
.x21_c01122{left:519.040000pt;}
.x28_c01122{left:528.000000pt;}
.x18_c01122{left:537.600000pt;}
.x43_c01122{left:539.520000pt;}
.xb_c01122{left:547.840000pt;}
.x3a_c01122{left:557.440000pt;}
.x19_c01122{left:558.720000pt;}
.x32_c01122{left:566.400000pt;}
.x44_c01122{left:568.320000pt;}
.x3f_c01122{left:576.000000pt;}
.x2d_c01122{left:577.280000pt;}
.x1a_c01122{left:586.880000pt;}
.x45_c01122{left:596.480000pt;}
.x36_c01122{left:605.440000pt;}
.xc_c01122{left:606.720000pt;}
.x40_c01122{left:616.320000pt;}
.x1_c01122{left:629.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b9ee4cd50c8e869007d1b866.woff2')format("woff");}.ff1_c01123{font-family:ff1_c01123;line-height:1.109863;font-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_c01123{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m32_c01123{transform:matrix(0.225100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225100,0.000000,0.000000,0.250000,0,0);}
.m30_c01123{transform:matrix(0.231525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231525,0.000000,0.000000,0.250000,0,0);}
.m51_c01123{transform:matrix(0.248575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248575,0.000000,0.000000,0.250000,0,0);}
.m61_c01123{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m7_c01123{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);}
.m62_c01123{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);}
.m5d_c01123{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);}
.m35_c01123{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);}
.m46_c01123{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_c01123{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);}
.m58_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);}
.m5a_c01123{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m33_c01123{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01123{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m20_c01123{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m31_c01123{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m40_c01123{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01123{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m57_c01123{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);}
.m3e_c01123{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m17_c01123{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);}
.m2_c01123{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m9_c01123{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m42_c01123{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);}
.m59_c01123{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m60_c01123{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);}
.m47_c01123{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m12_c01123{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m14_c01123{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01123{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);}
.m2b_c01123{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m24_c01123{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m21_c01123{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);}
.m25_c01123{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);}
.m10_c01123{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.ma_c01123{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);}
.m43_c01123{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m54_c01123{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);}
.m34_c01123{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01123{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.md_c01123{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01123{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m5f_c01123{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m3_c01123{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m48_c01123{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);}
.m4b_c01123{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.mf_c01123{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);}
.m4_c01123{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_c01123{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01123{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01123{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m4d_c01123{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m39_c01123{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);}
.me_c01123{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m15_c01123{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m22_c01123{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);}
.m36_c01123{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m4f_c01123{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);}
.m1f_c01123{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m56_c01123{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m64_c01123{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01123{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);}
.m63_c01123{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m6_c01123{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m27_c01123{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m1_c01123{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m52_c01123{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m13_c01123{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m5b_c01123{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);}
.m38_c01123{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m29_c01123{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01123{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);}
.m45_c01123{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01123{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.mb_c01123{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m4a_c01123{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m11_c01123{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);}
.m3c_c01123{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m23_c01123{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m44_c01123{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.mc_c01123{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);}
.m55_c01123{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m19_c01123{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);}
.m49_c01123{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m5_c01123{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m53_c01123{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m50_c01123{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m28_c01123{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m18_c01123{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01123{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);}
.m5c_c01123{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m16_c01123{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);}
.m4c_c01123{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m37_c01123{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m26_c01123{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);}
.m4e_c01123{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m5e_c01123{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);}
.m3d_c01123{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m41_c01123{transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);}
.m8_c01123{transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);}
.v3_c01123{vertical-align:-11.520000px;}
.v0_c01123{vertical-align:0.000000px;}
.v1_c01123{vertical-align:2.880000px;}
.v2_c01123{vertical-align:11.520000px;}
.ls0_c01123{letter-spacing:0.000000px;}
.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.979200px;}
.ws3_c01123{word-spacing:0.000000px;}
.ws2_c01123{word-spacing:8.684640px;}
.ws1_c01123{word-spacing:10.026240px;}
.fc0_c01123{color:transparent;}
.fsf_c01123{font-size:31.680000px;}
.fs5_c01123{font-size:34.560000px;}
.fs1_c01123{font-size:37.440000px;}
.fsa_c01123{font-size:43.200000px;}
.fs6_c01123{font-size:46.080000px;}
.fs3_c01123{font-size:48.960000px;}
.fs4_c01123{font-size:51.840000px;}
.fs7_c01123{font-size:54.720000px;}
.fs8_c01123{font-size:57.600000px;}
.fs9_c01123{font-size:60.480000px;}
.fs2_c01123{font-size:63.360000px;}
.fs10_c01123{font-size:66.240000px;}
.fsb_c01123{font-size:69.120000px;}
.fs0_c01123{font-size:74.880000px;}
.fsd_c01123{font-size:100.800000px;}
.fse_c01123{font-size:103.680000px;}
.fsc_c01123{font-size:106.560000px;}
.y0_c01123{bottom:0.000000px;}
.y7f_c01123{bottom:69.120000px;}
.y81_c01123{bottom:69.840000px;}
.y7d_c01123{bottom:70.560000px;}
.y80_c01123{bottom:71.280000px;}
.y7e_c01123{bottom:72.000000px;}
.y7c_c01123{bottom:72.720000px;}
.y7b_c01123{bottom:75.600000px;}
.y7a_c01123{bottom:77.040000px;}
.y79_c01123{bottom:110.160000px;}
.y78_c01123{bottom:113.760000px;}
.y77_c01123{bottom:114.480000px;}
.y75_c01123{bottom:115.200000px;}
.y76_c01123{bottom:115.920000px;}
.y74_c01123{bottom:117.360000px;}
.y73_c01123{bottom:118.080000px;}
.y72_c01123{bottom:118.800000px;}
.y70_c01123{bottom:154.800000px;}
.y71_c01123{bottom:155.520000px;}
.y6e_c01123{bottom:156.960000px;}
.y6c_c01123{bottom:158.400000px;}
.y6f_c01123{bottom:159.120000px;}
.y6d_c01123{bottom:159.840000px;}
.y68_c01123{bottom:197.280000px;}
.y6a_c01123{bottom:198.000000px;}
.y6b_c01123{bottom:198.720000px;}
.y67_c01123{bottom:199.440000px;}
.y66_c01123{bottom:200.160000px;}
.y69_c01123{bottom:200.880000px;}
.y65_c01123{bottom:203.040000px;}
.y63_c01123{bottom:241.200000px;}
.y64_c01123{bottom:242.640000px;}
.y60_c01123{bottom:243.360000px;}
.y62_c01123{bottom:244.080000px;}
.y61_c01123{bottom:245.520000px;}
.y5f_c01123{bottom:246.240000px;}
.y5e_c01123{bottom:282.960000px;}
.y5b_c01123{bottom:284.400000px;}
.y5a_c01123{bottom:285.120000px;}
.y5d_c01123{bottom:285.840000px;}
.y5c_c01123{bottom:286.560000px;}
.y59_c01123{bottom:288.000000px;}
.y56_c01123{bottom:326.160000px;}
.y58_c01123{bottom:328.320000px;}
.y57_c01123{bottom:329.040000px;}
.y55_c01123{bottom:329.760000px;}
.y54_c01123{bottom:330.480000px;}
.y52_c01123{bottom:368.640000px;}
.y51_c01123{bottom:369.360000px;}
.y4f_c01123{bottom:370.080000px;}
.y53_c01123{bottom:371.520000px;}
.y50_c01123{bottom:372.240000px;}
.y4e_c01123{bottom:372.960000px;}
.y4c_c01123{bottom:411.120000px;}
.y4b_c01123{bottom:411.840000px;}
.y49_c01123{bottom:412.560000px;}
.y4d_c01123{bottom:414.000000px;}
.y4a_c01123{bottom:414.720000px;}
.y48_c01123{bottom:454.320000px;}
.y47_c01123{bottom:456.480000px;}
.y46_c01123{bottom:457.200000px;}
.y42_c01123{bottom:496.800000px;}
.y45_c01123{bottom:497.520000px;}
.y44_c01123{bottom:498.960000px;}
.y43_c01123{bottom:499.680000px;}
.y3e_c01123{bottom:538.560000px;}
.y3d_c01123{bottom:539.280000px;}
.y40_c01123{bottom:541.440000px;}
.y3f_c01123{bottom:542.160000px;}
.y41_c01123{bottom:542.880000px;}
.y3b_c01123{bottom:582.480000px;}
.y39_c01123{bottom:583.920000px;}
.y3a_c01123{bottom:584.640000px;}
.y3c_c01123{bottom:585.360000px;}
.y34_c01123{bottom:623.520000px;}
.y35_c01123{bottom:624.240000px;}
.y37_c01123{bottom:624.960000px;}
.y38_c01123{bottom:625.680000px;}
.y33_c01123{bottom:627.120000px;}
.y36_c01123{bottom:627.840000px;}
.y2c_c01123{bottom:676.800000px;}
.y2f_c01123{bottom:677.520000px;}
.y32_c01123{bottom:678.240000px;}
.y2d_c01123{bottom:678.960000px;}
.y2e_c01123{bottom:680.400000px;}
.y30_c01123{bottom:681.120000px;}
.y31_c01123{bottom:681.840000px;}
.y26_c01123{bottom:719.280000px;}
.y29_c01123{bottom:720.720000px;}
.y27_c01123{bottom:722.160000px;}
.y28_c01123{bottom:722.880000px;}
.y2a_c01123{bottom:724.320000px;}
.y2b_c01123{bottom:725.040000px;}
.y25_c01123{bottom:763.200000px;}
.y23_c01123{bottom:764.640000px;}
.y24_c01123{bottom:765.360000px;}
.y20_c01123{bottom:804.960000px;}
.y21_c01123{bottom:805.680000px;}
.y1e_c01123{bottom:806.400000px;}
.y1f_c01123{bottom:807.120000px;}
.y22_c01123{bottom:810.000000px;}
.y18_c01123{bottom:849.600000px;}
.y19_c01123{bottom:851.040000px;}
.y1a_c01123{bottom:851.760000px;}
.y1b_c01123{bottom:852.480000px;}
.y1c_c01123{bottom:853.920000px;}
.y1d_c01123{bottom:854.640000px;}
.y17_c01123{bottom:901.440000px;}
.y10_c01123{bottom:941.760000px;}
.y13_c01123{bottom:944.640000px;}
.y11_c01123{bottom:945.360000px;}
.y12_c01123{bottom:946.080000px;}
.y14_c01123{bottom:947.520000px;}
.y15_c01123{bottom:948.960000px;}
.y16_c01123{bottom:950.400000px;}
.y8_c01123{bottom:984.960000px;}
.yc_c01123{bottom:987.120000px;}
.yd_c01123{bottom:987.840000px;}
.y9_c01123{bottom:988.560000px;}
.ya_c01123{bottom:989.280000px;}
.yb_c01123{bottom:990.000000px;}
.yf_c01123{bottom:990.720000px;}
.ye_c01123{bottom:991.440000px;}
.y3_c01123{bottom:1027.440000px;}
.y2_c01123{bottom:1028.880000px;}
.y4_c01123{bottom:1032.480000px;}
.y5_c01123{bottom:1034.640000px;}
.y6_c01123{bottom:1036.080000px;}
.y7_c01123{bottom:1036.800000px;}
.y1_c01123{bottom:1085.760000px;}
.h12_c01123{height:28.508906px;}
.h7_c01123{height:31.100625px;}
.h3_c01123{height:33.692344px;}
.hd_c01123{height:33.980625px;}
.hc_c01123{height:38.875781px;}
.h8_c01123{height:41.467500px;}
.h5_c01123{height:44.059219px;}
.h6_c01123{height:46.650937px;}
.h9_c01123{height:49.242656px;}
.ha_c01123{height:51.834375px;}
.hb_c01123{height:54.426094px;}
.h14_c01123{height:55.579219px;}
.h4_c01123{height:57.017812px;}
.h13_c01123{height:59.609531px;}
.he_c01123{height:62.201250px;}
.h2_c01123{height:67.384687px;}
.h10_c01123{height:90.710156px;}
.h11_c01123{height:93.301875px;}
.hf_c01123{height:95.893594px;}
.h0_c01123{height:1142.640000px;}
.h1_c01123{height:1143.000000px;}
.w1_c01123{width:790.500000px;}
.w0_c01123{width:790.560000px;}
.x0_c01123{left:0.000000px;}
.x2_c01123{left:76.320000px;}
.x11_c01123{left:77.760000px;}
.x25_c01123{left:79.200000px;}
.x52_c01123{left:80.640000px;}
.x60_c01123{left:82.080000px;}
.x69_c01123{left:101.520000px;}
.x35_c01123{left:109.440000px;}
.x61_c01123{left:112.320000px;}
.x1c_c01123{left:120.960000px;}
.x55_c01123{left:122.400000px;}
.x4a_c01123{left:133.200000px;}
.x3_c01123{left:139.680000px;}
.x1d_c01123{left:151.920000px;}
.x5b_c01123{left:155.520000px;}
.x12_c01123{left:162.000000px;}
.x45_c01123{left:163.440000px;}
.x56_c01123{left:164.880000px;}
.x62_c01123{left:166.320000px;}
.x2d_c01123{left:172.800000px;}
.x3d_c01123{left:174.960000px;}
.x19_c01123{left:184.320000px;}
.x30_c01123{left:186.480000px;}
.xa_c01123{left:194.400000px;}
.x1e_c01123{left:195.840000px;}
.x57_c01123{left:197.280000px;}
.x36_c01123{left:207.360000px;}
.x31_c01123{left:216.720000px;}
.x63_c01123{left:219.600000px;}
.xb_c01123{left:226.800000px;}
.x24_c01123{left:228.240000px;}
.x4b_c01123{left:239.040000px;}
.x58_c01123{left:241.200000px;}
.x4c_c01123{left:249.840000px;}
.x64_c01123{left:251.280000px;}
.xc_c01123{left:269.280000px;}
.x26_c01123{left:271.440000px;}
.x5c_c01123{left:272.880000px;}
.x32_c01123{left:280.800000px;}
.x46_c01123{left:282.960000px;}
.x37_c01123{left:292.320000px;}
.x65_c01123{left:294.480000px;}
.x3e_c01123{left:303.840000px;}
.x4_c01123{left:311.040000px;}
.x1f_c01123{left:313.920000px;}
.x4d_c01123{left:315.360000px;}
.x38_c01123{left:324.000000px;}
.xd_c01123{left:334.080000px;}
.x2e_c01123{left:335.520000px;}
.x66_c01123{left:336.960000px;}
.x13_c01123{left:344.160000px;}
.x42_c01123{left:346.320000px;}
.x5_c01123{left:355.680000px;}
.x53_c01123{left:358.560000px;}
.x27_c01123{left:367.200000px;}
.xe_c01123{left:376.560000px;}
.x5d_c01123{left:378.720000px;}
.x5f_c01123{left:380.160000px;}
.x20_c01123{left:388.080000px;}
.x39_c01123{left:389.520000px;}
.x1a_c01123{left:397.440000px;}
.x28_c01123{left:400.320000px;}
.x21_c01123{left:411.120000px;}
.x50_c01123{left:412.560000px;}
.x14_c01123{left:420.480000px;}
.x29_c01123{left:432.000000px;}
.x3f_c01123{left:433.440000px;}
.x33_c01123{left:442.800000px;}
.x4e_c01123{left:444.240000px;}
.xf_c01123{left:451.440000px;}
.x47_c01123{left:453.600000px;}
.x2a_c01123{left:465.840000px;}
.x1b_c01123{left:473.760000px;}
.x2f_c01123{left:476.640000px;}
.x48_c01123{left:487.440000px;}
.x34_c01123{left:498.240000px;}
.x6a_c01123{left:499.680000px;}
.x6_c01123{left:507.600000px;}
.x59_c01123{left:509.760000px;}
.x15_c01123{left:518.400000px;}
.x43_c01123{left:520.560000px;}
.x3a_c01123{left:530.640000px;}
.x7_c01123{left:540.000000px;}
.x2b_c01123{left:542.160000px;}
.x10_c01123{left:552.960000px;}
.x4f_c01123{left:563.040000px;}
.x22_c01123{left:573.840000px;}
.x51_c01123{left:575.280000px;}
.x16_c01123{left:583.200000px;}
.x40_c01123{left:585.360000px;}
.x2c_c01123{left:606.960000px;}
.x23_c01123{left:617.760000px;}
.x17_c01123{left:626.400000px;}
.x54_c01123{left:629.280000px;}
.x8_c01123{left:637.920000px;}
.x49_c01123{left:639.360000px;}
.x67_c01123{left:641.520000px;}
.x3b_c01123{left:650.160000px;}
.x18_c01123{left:660.240000px;}
.x44_c01123{left:661.680000px;}
.x41_c01123{left:671.760000px;}
.x5a_c01123{left:673.200000px;}
.x68_c01123{left:675.360000px;}
.x9_c01123{left:680.400000px;}
.x3c_c01123{left:682.560000px;}
.x6b_c01123{left:684.720000px;}
.x5e_c01123{left:696.240000px;}
.x1_c01123{left:708.480000px;}
@media print{
.v3_c01123{vertical-align:-10.240000pt;}
.v0_c01123{vertical-align:0.000000pt;}
.v1_c01123{vertical-align:2.560000pt;}
.v2_c01123{vertical-align:10.240000pt;}
.ls0_c01123{letter-spacing:0.000000pt;}
.ws0_c01123{word-spacing:-0.870400pt;}
.ws3_c01123{word-spacing:0.000000pt;}
.ws2_c01123{word-spacing:7.719680pt;}
.ws1_c01123{word-spacing:8.912213pt;}
.fsf_c01123{font-size:28.160000pt;}
.fs5_c01123{font-size:30.720000pt;}
.fs1_c01123{font-size:33.280000pt;}
.fsa_c01123{font-size:38.400000pt;}
.fs6_c01123{font-size:40.960000pt;}
.fs3_c01123{font-size:43.520000pt;}
.fs4_c01123{font-size:46.080000pt;}
.fs7_c01123{font-size:48.640000pt;}
.fs8_c01123{font-size:51.200000pt;}
.fs9_c01123{font-size:53.760000pt;}
.fs2_c01123{font-size:56.320000pt;}
.fs10_c01123{font-size:58.880000pt;}
.fsb_c01123{font-size:61.440000pt;}
.fs0_c01123{font-size:66.560000pt;}
.fsd_c01123{font-size:89.600000pt;}
.fse_c01123{font-size:92.160000pt;}
.fsc_c01123{font-size:94.720000pt;}
.y0_c01123{bottom:0.000000pt;}
.y7f_c01123{bottom:61.440000pt;}
.y81_c01123{bottom:62.080000pt;}
.y7d_c01123{bottom:62.720000pt;}
.y80_c01123{bottom:63.360000pt;}
.y7e_c01123{bottom:64.000000pt;}
.y7c_c01123{bottom:64.640000pt;}
.y7b_c01123{bottom:67.200000pt;}
.y7a_c01123{bottom:68.480000pt;}
.y79_c01123{bottom:97.920000pt;}
.y78_c01123{bottom:101.120000pt;}
.y77_c01123{bottom:101.760000pt;}
.y75_c01123{bottom:102.400000pt;}
.y76_c01123{bottom:103.040000pt;}
.y74_c01123{bottom:104.320000pt;}
.y73_c01123{bottom:104.960000pt;}
.y72_c01123{bottom:105.600000pt;}
.y70_c01123{bottom:137.600000pt;}
.y71_c01123{bottom:138.240000pt;}
.y6e_c01123{bottom:139.520000pt;}
.y6c_c01123{bottom:140.800000pt;}
.y6f_c01123{bottom:141.440000pt;}
.y6d_c01123{bottom:142.080000pt;}
.y68_c01123{bottom:175.360000pt;}
.y6a_c01123{bottom:176.000000pt;}
.y6b_c01123{bottom:176.640000pt;}
.y67_c01123{bottom:177.280000pt;}
.y66_c01123{bottom:177.920000pt;}
.y69_c01123{bottom:178.560000pt;}
.y65_c01123{bottom:180.480000pt;}
.y63_c01123{bottom:214.400000pt;}
.y64_c01123{bottom:215.680000pt;}
.y60_c01123{bottom:216.320000pt;}
.y62_c01123{bottom:216.960000pt;}
.y61_c01123{bottom:218.240000pt;}
.y5f_c01123{bottom:218.880000pt;}
.y5e_c01123{bottom:251.520000pt;}
.y5b_c01123{bottom:252.800000pt;}
.y5a_c01123{bottom:253.440000pt;}
.y5d_c01123{bottom:254.080000pt;}
.y5c_c01123{bottom:254.720000pt;}
.y59_c01123{bottom:256.000000pt;}
.y56_c01123{bottom:289.920000pt;}
.y58_c01123{bottom:291.840000pt;}
.y57_c01123{bottom:292.480000pt;}
.y55_c01123{bottom:293.120000pt;}
.y54_c01123{bottom:293.760000pt;}
.y52_c01123{bottom:327.680000pt;}
.y51_c01123{bottom:328.320000pt;}
.y4f_c01123{bottom:328.960000pt;}
.y53_c01123{bottom:330.240000pt;}
.y50_c01123{bottom:330.880000pt;}
.y4e_c01123{bottom:331.520000pt;}
.y4c_c01123{bottom:365.440000pt;}
.y4b_c01123{bottom:366.080000pt;}
.y49_c01123{bottom:366.720000pt;}
.y4d_c01123{bottom:368.000000pt;}
.y4a_c01123{bottom:368.640000pt;}
.y48_c01123{bottom:403.840000pt;}
.y47_c01123{bottom:405.760000pt;}
.y46_c01123{bottom:406.400000pt;}
.y42_c01123{bottom:441.600000pt;}
.y45_c01123{bottom:442.240000pt;}
.y44_c01123{bottom:443.520000pt;}
.y43_c01123{bottom:444.160000pt;}
.y3e_c01123{bottom:478.720000pt;}
.y3d_c01123{bottom:479.360000pt;}
.y40_c01123{bottom:481.280000pt;}
.y3f_c01123{bottom:481.920000pt;}
.y41_c01123{bottom:482.560000pt;}
.y3b_c01123{bottom:517.760000pt;}
.y39_c01123{bottom:519.040000pt;}
.y3a_c01123{bottom:519.680000pt;}
.y3c_c01123{bottom:520.320000pt;}
.y34_c01123{bottom:554.240000pt;}
.y35_c01123{bottom:554.880000pt;}
.y37_c01123{bottom:555.520000pt;}
.y38_c01123{bottom:556.160000pt;}
.y33_c01123{bottom:557.440000pt;}
.y36_c01123{bottom:558.080000pt;}
.y2c_c01123{bottom:601.600000pt;}
.y2f_c01123{bottom:602.240000pt;}
.y32_c01123{bottom:602.880000pt;}
.y2d_c01123{bottom:603.520000pt;}
.y2e_c01123{bottom:604.800000pt;}
.y30_c01123{bottom:605.440000pt;}
.y31_c01123{bottom:606.080000pt;}
.y26_c01123{bottom:639.360000pt;}
.y29_c01123{bottom:640.640000pt;}
.y27_c01123{bottom:641.920000pt;}
.y28_c01123{bottom:642.560000pt;}
.y2a_c01123{bottom:643.840000pt;}
.y2b_c01123{bottom:644.480000pt;}
.y25_c01123{bottom:678.400000pt;}
.y23_c01123{bottom:679.680000pt;}
.y24_c01123{bottom:680.320000pt;}
.y20_c01123{bottom:715.520000pt;}
.y21_c01123{bottom:716.160000pt;}
.y1e_c01123{bottom:716.800000pt;}
.y1f_c01123{bottom:717.440000pt;}
.y22_c01123{bottom:720.000000pt;}
.y18_c01123{bottom:755.200000pt;}
.y19_c01123{bottom:756.480000pt;}
.y1a_c01123{bottom:757.120000pt;}
.y1b_c01123{bottom:757.760000pt;}
.y1c_c01123{bottom:759.040000pt;}
.y1d_c01123{bottom:759.680000pt;}
.y17_c01123{bottom:801.280000pt;}
.y10_c01123{bottom:837.120000pt;}
.y13_c01123{bottom:839.680000pt;}
.y11_c01123{bottom:840.320000pt;}
.y12_c01123{bottom:840.960000pt;}
.y14_c01123{bottom:842.240000pt;}
.y15_c01123{bottom:843.520000pt;}
.y16_c01123{bottom:844.800000pt;}
.y8_c01123{bottom:875.520000pt;}
.yc_c01123{bottom:877.440000pt;}
.yd_c01123{bottom:878.080000pt;}
.y9_c01123{bottom:878.720000pt;}
.ya_c01123{bottom:879.360000pt;}
.yb_c01123{bottom:880.000000pt;}
.yf_c01123{bottom:880.640000pt;}
.ye_c01123{bottom:881.280000pt;}
.y3_c01123{bottom:913.280000pt;}
.y2_c01123{bottom:914.560000pt;}
.y4_c01123{bottom:917.760000pt;}
.y5_c01123{bottom:919.680000pt;}
.y6_c01123{bottom:920.960000pt;}
.y7_c01123{bottom:921.600000pt;}
.y1_c01123{bottom:965.120000pt;}
.h12_c01123{height:25.341250pt;}
.h7_c01123{height:27.645000pt;}
.h3_c01123{height:29.948750pt;}
.hd_c01123{height:30.205000pt;}
.hc_c01123{height:34.556250pt;}
.h8_c01123{height:36.860000pt;}
.h5_c01123{height:39.163750pt;}
.h6_c01123{height:41.467500pt;}
.h9_c01123{height:43.771250pt;}
.ha_c01123{height:46.075000pt;}
.hb_c01123{height:48.378750pt;}
.h14_c01123{height:49.403750pt;}
.h4_c01123{height:50.682500pt;}
.h13_c01123{height:52.986250pt;}
.he_c01123{height:55.290000pt;}
.h2_c01123{height:59.897500pt;}
.h10_c01123{height:80.631250pt;}
.h11_c01123{height:82.935000pt;}
.hf_c01123{height:85.238750pt;}
.h0_c01123{height:1015.680000pt;}
.h1_c01123{height:1016.000000pt;}
.w1_c01123{width:702.666667pt;}
.w0_c01123{width:702.720000pt;}
.x0_c01123{left:0.000000pt;}
.x2_c01123{left:67.840000pt;}
.x11_c01123{left:69.120000pt;}
.x25_c01123{left:70.400000pt;}
.x52_c01123{left:71.680000pt;}
.x60_c01123{left:72.960000pt;}
.x69_c01123{left:90.240000pt;}
.x35_c01123{left:97.280000pt;}
.x61_c01123{left:99.840000pt;}
.x1c_c01123{left:107.520000pt;}
.x55_c01123{left:108.800000pt;}
.x4a_c01123{left:118.400000pt;}
.x3_c01123{left:124.160000pt;}
.x1d_c01123{left:135.040000pt;}
.x5b_c01123{left:138.240000pt;}
.x12_c01123{left:144.000000pt;}
.x45_c01123{left:145.280000pt;}
.x56_c01123{left:146.560000pt;}
.x62_c01123{left:147.840000pt;}
.x2d_c01123{left:153.600000pt;}
.x3d_c01123{left:155.520000pt;}
.x19_c01123{left:163.840000pt;}
.x30_c01123{left:165.760000pt;}
.xa_c01123{left:172.800000pt;}
.x1e_c01123{left:174.080000pt;}
.x57_c01123{left:175.360000pt;}
.x36_c01123{left:184.320000pt;}
.x31_c01123{left:192.640000pt;}
.x63_c01123{left:195.200000pt;}
.xb_c01123{left:201.600000pt;}
.x24_c01123{left:202.880000pt;}
.x4b_c01123{left:212.480000pt;}
.x58_c01123{left:214.400000pt;}
.x4c_c01123{left:222.080000pt;}
.x64_c01123{left:223.360000pt;}
.xc_c01123{left:239.360000pt;}
.x26_c01123{left:241.280000pt;}
.x5c_c01123{left:242.560000pt;}
.x32_c01123{left:249.600000pt;}
.x46_c01123{left:251.520000pt;}
.x37_c01123{left:259.840000pt;}
.x65_c01123{left:261.760000pt;}
.x3e_c01123{left:270.080000pt;}
.x4_c01123{left:276.480000pt;}
.x1f_c01123{left:279.040000pt;}
.x4d_c01123{left:280.320000pt;}
.x38_c01123{left:288.000000pt;}
.xd_c01123{left:296.960000pt;}
.x2e_c01123{left:298.240000pt;}
.x66_c01123{left:299.520000pt;}
.x13_c01123{left:305.920000pt;}
.x42_c01123{left:307.840000pt;}
.x5_c01123{left:316.160000pt;}
.x53_c01123{left:318.720000pt;}
.x27_c01123{left:326.400000pt;}
.xe_c01123{left:334.720000pt;}
.x5d_c01123{left:336.640000pt;}
.x5f_c01123{left:337.920000pt;}
.x20_c01123{left:344.960000pt;}
.x39_c01123{left:346.240000pt;}
.x1a_c01123{left:353.280000pt;}
.x28_c01123{left:355.840000pt;}
.x21_c01123{left:365.440000pt;}
.x50_c01123{left:366.720000pt;}
.x14_c01123{left:373.760000pt;}
.x29_c01123{left:384.000000pt;}
.x3f_c01123{left:385.280000pt;}
.x33_c01123{left:393.600000pt;}
.x4e_c01123{left:394.880000pt;}
.xf_c01123{left:401.280000pt;}
.x47_c01123{left:403.200000pt;}
.x2a_c01123{left:414.080000pt;}
.x1b_c01123{left:421.120000pt;}
.x2f_c01123{left:423.680000pt;}
.x48_c01123{left:433.280000pt;}
.x34_c01123{left:442.880000pt;}
.x6a_c01123{left:444.160000pt;}
.x6_c01123{left:451.200000pt;}
.x59_c01123{left:453.120000pt;}
.x15_c01123{left:460.800000pt;}
.x43_c01123{left:462.720000pt;}
.x3a_c01123{left:471.680000pt;}
.x7_c01123{left:480.000000pt;}
.x2b_c01123{left:481.920000pt;}
.x10_c01123{left:491.520000pt;}
.x4f_c01123{left:500.480000pt;}
.x22_c01123{left:510.080000pt;}
.x51_c01123{left:511.360000pt;}
.x16_c01123{left:518.400000pt;}
.x40_c01123{left:520.320000pt;}
.x2c_c01123{left:539.520000pt;}
.x23_c01123{left:549.120000pt;}
.x17_c01123{left:556.800000pt;}
.x54_c01123{left:559.360000pt;}
.x8_c01123{left:567.040000pt;}
.x49_c01123{left:568.320000pt;}
.x67_c01123{left:570.240000pt;}
.x3b_c01123{left:577.920000pt;}
.x18_c01123{left:586.880000pt;}
.x44_c01123{left:588.160000pt;}
.x41_c01123{left:597.120000pt;}
.x5a_c01123{left:598.400000pt;}
.x68_c01123{left:600.320000pt;}
.x9_c01123{left:604.800000pt;}
.x3c_c01123{left:606.720000pt;}
.x6b_c01123{left:608.640000pt;}
.x5e_c01123{left:618.880000pt;}
.x1_c01123{left:629.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8bb08ed19cb9a530ff4f3f83.woff2')format("woff");}.ff1_c01124{font-family:ff1_c01124;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m54_c01124{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m10_c01124{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01124{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m53_c01124{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m51_c01124{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m44_c01124{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01124{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01124{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m42_c01124{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m43_c01124{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m16_c01124{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01124{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m52_c01124{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);}
.m47_c01124{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);}
.m39_c01124{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m38_c01124{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m4_c01124{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);}
.m2f_c01124{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m29_c01124{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.me_c01124{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);}
.m4e_c01124{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01124{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m15_c01124{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_c01124{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);}
.m0_c01124{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01124{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);}
.m21_c01124{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01124{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);}
.m18_c01124{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);}
.m22_c01124{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m2_c01124{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.ma_c01124{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m30_c01124{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m49_c01124{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);}
.m8_c01124{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m26_c01124{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m50_c01124{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);}
.m1d_c01124{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);}
.md_c01124{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m6_c01124{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m4a_c01124{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01124{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.mb_c01124{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m25_c01124{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);}
.m13_c01124{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);}
.m31_c01124{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m35_c01124{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m23_c01124{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m19_c01124{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m37_c01124{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);}
.m3c_c01124{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m1_c01124{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01124{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m45_c01124{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m36_c01124{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m11_c01124{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m3_c01124{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m46_c01124{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);}
.m1b_c01124{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);}
.m48_c01124{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m20_c01124{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01124{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01124{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);}
.m1c_c01124{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m5_c01124{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m32_c01124{transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01124{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m28_c01124{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m7_c01124{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m24_c01124{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);}
.m2a_c01124{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m9_c01124{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m14_c01124{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.mf_c01124{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m34_c01124{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01124{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);}
.m27_c01124{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);}
.mc_c01124{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m33_c01124{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m12_c01124{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);}
.m2e_c01124{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m41_c01124{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m55_c01124{transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01124{transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01124{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m40_c01124{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_c01124{vertical-align:0.000000px;}
.v1_c01124{vertical-align:2.880000px;}
.ls0_c01124{letter-spacing:0.000000px;}
.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;}
}
.ws1_c01124{word-spacing:0.000000px;}
.ws0_c01124{word-spacing:17.869680px;}
.fc0_c01124{color:transparent;}
.fs5_c01124{font-size:34.560000px;}
.fs4_c01124{font-size:43.200000px;}
.fs2_c01124{font-size:46.080000px;}
.fs3_c01124{font-size:48.960000px;}
.fs6_c01124{font-size:51.840000px;}
.fsb_c01124{font-size:54.720000px;}
.fs9_c01124{font-size:57.600000px;}
.fs1_c01124{font-size:60.480000px;}
.fs7_c01124{font-size:63.360000px;}
.fsa_c01124{font-size:66.240000px;}
.fs8_c01124{font-size:69.120000px;}
.fs0_c01124{font-size:72.000000px;}
.fsc_c01124{font-size:74.880000px;}
.y0_c01124{bottom:0.000000px;}
.y72_c01124{bottom:101.520000px;}
.y71_c01124{bottom:104.400000px;}
.y70_c01124{bottom:105.120000px;}
.y6e_c01124{bottom:105.840000px;}
.y6f_c01124{bottom:106.560000px;}
.y6d_c01124{bottom:108.000000px;}
.y6b_c01124{bottom:144.000000px;}
.y69_c01124{bottom:145.440000px;}
.y6c_c01124{bottom:146.160000px;}
.y6a_c01124{bottom:146.880000px;}
.y65_c01124{bottom:147.600000px;}
.y66_c01124{bottom:148.320000px;}
.y68_c01124{bottom:149.040000px;}
.y67_c01124{bottom:149.760000px;}
.y61_c01124{bottom:187.920000px;}
.y64_c01124{bottom:189.360000px;}
.y60_c01124{bottom:190.080000px;}
.y63_c01124{bottom:190.800000px;}
.y62_c01124{bottom:191.520000px;}
.y5f_c01124{bottom:229.680000px;}
.y5d_c01124{bottom:230.400000px;}
.y5a_c01124{bottom:231.840000px;}
.y5e_c01124{bottom:232.560000px;}
.y5c_c01124{bottom:233.280000px;}
.y5b_c01124{bottom:234.000000px;}
.y59_c01124{bottom:235.440000px;}
.y57_c01124{bottom:272.880000px;}
.y55_c01124{bottom:273.600000px;}
.y58_c01124{bottom:274.320000px;}
.y56_c01124{bottom:275.040000px;}
.y54_c01124{bottom:275.760000px;}
.y53_c01124{bottom:314.640000px;}
.y52_c01124{bottom:315.360000px;}
.y4e_c01124{bottom:316.800000px;}
.y51_c01124{bottom:317.520000px;}
.y50_c01124{bottom:318.240000px;}
.y4f_c01124{bottom:318.960000px;}
.y4d_c01124{bottom:356.400000px;}
.y4b_c01124{bottom:357.840000px;}
.y4c_c01124{bottom:360.720000px;}
.y4a_c01124{bottom:361.440000px;}
.y47_c01124{bottom:401.040000px;}
.y49_c01124{bottom:403.200000px;}
.y48_c01124{bottom:403.920000px;}
.y46_c01124{bottom:442.800000px;}
.y45_c01124{bottom:443.520000px;}
.y43_c01124{bottom:444.240000px;}
.y44_c01124{bottom:446.400000px;}
.y42_c01124{bottom:447.120000px;}
.y3f_c01124{bottom:486.720000px;}
.y40_c01124{bottom:488.880000px;}
.y41_c01124{bottom:489.600000px;}
.y3d_c01124{bottom:528.480000px;}
.y3c_c01124{bottom:529.200000px;}
.y3b_c01124{bottom:531.360000px;}
.y3e_c01124{bottom:532.080000px;}
.y37_c01124{bottom:570.960000px;}
.y39_c01124{bottom:571.680000px;}
.y3a_c01124{bottom:572.400000px;}
.y36_c01124{bottom:573.840000px;}
.y38_c01124{bottom:574.560000px;}
.y35_c01124{bottom:626.400000px;}
.y31_c01124{bottom:668.880000px;}
.y32_c01124{bottom:669.600000px;}
.y33_c01124{bottom:670.320000px;}
.y34_c01124{bottom:671.040000px;}
.y29_c01124{bottom:708.480000px;}
.y2b_c01124{bottom:709.200000px;}
.y2c_c01124{bottom:709.920000px;}
.y2e_c01124{bottom:710.640000px;}
.y30_c01124{bottom:711.360000px;}
.y2a_c01124{bottom:712.080000px;}
.y2d_c01124{bottom:712.800000px;}
.y2f_c01124{bottom:713.520000px;}
.y23_c01124{bottom:751.680000px;}
.y25_c01124{bottom:752.400000px;}
.y22_c01124{bottom:753.840000px;}
.y24_c01124{bottom:755.280000px;}
.y26_c01124{bottom:756.000000px;}
.y27_c01124{bottom:756.720000px;}
.y28_c01124{bottom:757.440000px;}
.y1e_c01124{bottom:795.600000px;}
.y1f_c01124{bottom:797.040000px;}
.y20_c01124{bottom:797.760000px;}
.y21_c01124{bottom:798.480000px;}
.y18_c01124{bottom:838.800000px;}
.y19_c01124{bottom:839.520000px;}
.y1a_c01124{bottom:840.240000px;}
.y1b_c01124{bottom:840.960000px;}
.y1c_c01124{bottom:841.680000px;}
.y1d_c01124{bottom:842.400000px;}
.y15_c01124{bottom:888.480000px;}
.y16_c01124{bottom:889.920000px;}
.y17_c01124{bottom:892.080000px;}
.yd_c01124{bottom:931.680000px;}
.yc_c01124{bottom:933.120000px;}
.y10_c01124{bottom:933.840000px;}
.yf_c01124{bottom:934.560000px;}
.ye_c01124{bottom:935.280000px;}
.y11_c01124{bottom:936.720000px;}
.y12_c01124{bottom:937.440000px;}
.y13_c01124{bottom:938.160000px;}
.y14_c01124{bottom:939.600000px;}
.y6_c01124{bottom:976.320000px;}
.y8_c01124{bottom:977.040000px;}
.y5_c01124{bottom:977.760000px;}
.y7_c01124{bottom:979.200000px;}
.y9_c01124{bottom:980.640000px;}
.ya_c01124{bottom:982.080000px;}
.yb_c01124{bottom:982.800000px;}
.y2_c01124{bottom:1026.720000px;}
.y3_c01124{bottom:1031.040000px;}
.y4_c01124{bottom:1031.760000px;}
.y1_c01124{bottom:1092.240000px;}
.h7_c01124{height:31.100625px;}
.h6_c01124{height:38.875781px;}
.h4_c01124{height:41.467500px;}
.h5_c01124{height:44.059219px;}
.h8_c01124{height:46.650937px;}
.he_c01124{height:49.242656px;}
.hb_c01124{height:51.834375px;}
.h3_c01124{height:54.426094px;}
.h9_c01124{height:57.017812px;}
.hc_c01124{height:59.609531px;}
.ha_c01124{height:62.201250px;}
.hd_c01124{height:62.489531px;}
.h2_c01124{height:64.792969px;}
.hf_c01124{height:67.384687px;}
.h0_c01124{height:1142.640000px;}
.h1_c01124{height:1143.000000px;}
.w1_c01124{width:790.500000px;}
.w0_c01124{width:790.560000px;}
.x0_c01124{left:0.000000px;}
.x2_c01124{left:69.120000px;}
.x18_c01124{left:70.560000px;}
.x3d_c01124{left:72.000000px;}
.x46_c01124{left:73.440000px;}
.x62_c01124{left:76.320000px;}
.x5c_c01124{left:93.600000px;}
.x26_c01124{left:102.960000px;}
.x1f_c01124{left:113.040000px;}
.x3e_c01124{left:114.480000px;}
.x52_c01124{left:125.280000px;}
.x27_c01124{left:134.640000px;}
.x6e_c01124{left:136.800000px;}
.x3_c01124{left:144.720000px;}
.x20_c01124{left:156.240000px;}
.x53_c01124{left:157.680000px;}
.x28_c01124{left:166.320000px;}
.x4f_c01124{left:168.480000px;}
.x4_c01124{left:176.400000px;}
.x6_c01124{left:177.840000px;}
.x63_c01124{left:180.720000px;}
.x19_c01124{left:186.480000px;}
.x34_c01124{left:187.920000px;}
.x50_c01124{left:200.160000px;}
.x7_c01124{left:208.800000px;}
.x3f_c01124{left:210.240000px;}
.x4b_c01124{left:211.680000px;}
.x54_c01124{left:221.760000px;}
.x5_c01124{left:228.960000px;}
.x1a_c01124{left:230.400000px;}
.x5d_c01124{left:231.840000px;}
.x1b_c01124{left:241.200000px;}
.x40_c01124{left:242.640000px;}
.x8_c01124{left:251.280000px;}
.x47_c01124{left:253.440000px;}
.x6b_c01124{left:254.880000px;}
.x21_c01124{left:263.520000px;}
.xf_c01124{left:272.160000px;}
.x2f_c01124{left:274.320000px;}
.x64_c01124{left:276.480000px;}
.x29_c01124{left:285.120000px;}
.x48_c01124{left:287.280000px;}
.x22_c01124{left:294.480000px;}
.x35_c01124{left:295.920000px;}
.x1c_c01124{left:304.560000px;}
.x10_c01124{left:306.720000px;}
.x5e_c01124{left:308.160000px;}
.x38_c01124{left:316.800000px;}
.x6f_c01124{left:318.960000px;}
.x2a_c01124{left:326.160000px;}
.x36_c01124{left:327.600000px;}
.x58_c01124{left:329.760000px;}
.x41_c01124{left:338.400000px;}
.x65_c01124{left:339.840000px;}
.x9_c01124{left:347.760000px;}
.x39_c01124{left:349.920000px;}
.x30_c01124{left:359.280000px;}
.x11_c01124{left:369.360000px;}
.x42_c01124{left:370.800000px;}
.x70_c01124{left:372.240000px;}
.x59_c01124{left:382.320000px;}
.xa_c01124{left:390.960000px;}
.x23_c01124{left:392.400000px;}
.x31_c01124{left:403.200000px;}
.x5f_c01124{left:404.640000px;}
.x2b_c01124{left:414.000000px;}
.x24_c01124{left:423.360000px;}
.x12_c01124{left:425.520000px;}
.xb_c01124{left:434.880000px;}
.x55_c01124{left:437.040000px;}
.x60_c01124{left:439.200000px;}
.x2c_c01124{left:445.680000px;}
.x3a_c01124{left:447.120000px;}
.x71_c01124{left:448.560000px;}
.x4c_c01124{left:459.360000px;}
.xc_c01124{left:466.560000px;}
.x32_c01124{left:478.800000px;}
.x13_c01124{left:489.600000px;}
.x56_c01124{left:491.040000px;}
.x6c_c01124{left:492.480000px;}
.x2d_c01124{left:500.400000px;}
.x37_c01124{left:511.920000px;}
.x66_c01124{left:513.360000px;}
.x25_c01124{left:521.280000px;}
.x4d_c01124{left:524.160000px;}
.x14_c01124{left:532.080000px;}
.x5a_c01124{left:534.960000px;}
.x43_c01124{left:542.880000px;}
.x67_c01124{left:544.320000px;}
.x49_c01124{left:547.920000px;}
.x51_c01124{left:555.840000px;}
.x33_c01124{left:565.200000px;}
.x61_c01124{left:568.080000px;}
.x68_c01124{left:577.440000px;}
.x5b_c01124{left:578.880000px;}
.xd_c01124{left:587.520000px;}
.x1d_c01124{left:596.160000px;}
.x15_c01124{left:597.600000px;}
.x6d_c01124{left:600.480000px;}
.x57_c01124{left:611.280000px;}
.x16_c01124{left:630.720000px;}
.x44_c01124{left:632.160000px;}
.x3b_c01124{left:641.520000px;}
.x4e_c01124{left:642.960000px;}
.xe_c01124{left:652.320000px;}
.x4a_c01124{left:655.200000px;}
.x1e_c01124{left:663.120000px;}
.x45_c01124{left:665.280000px;}
.x17_c01124{left:673.200000px;}
.x2e_c01124{left:675.360000px;}
.x69_c01124{left:676.800000px;}
.x3c_c01124{left:686.160000px;}
.x6a_c01124{left:709.200000px;}
.x1_c01124{left:716.400000px;}
@media print{
.v0_c01124{vertical-align:0.000000pt;}
.v1_c01124{vertical-align:2.560000pt;}
.ls0_c01124{letter-spacing:0.000000pt;}
.ws1_c01124{word-spacing:0.000000pt;}
.ws0_c01124{word-spacing:15.884160pt;}
.fs5_c01124{font-size:30.720000pt;}
.fs4_c01124{font-size:38.400000pt;}
.fs2_c01124{font-size:40.960000pt;}
.fs3_c01124{font-size:43.520000pt;}
.fs6_c01124{font-size:46.080000pt;}
.fsb_c01124{font-size:48.640000pt;}
.fs9_c01124{font-size:51.200000pt;}
.fs1_c01124{font-size:53.760000pt;}
.fs7_c01124{font-size:56.320000pt;}
.fsa_c01124{font-size:58.880000pt;}
.fs8_c01124{font-size:61.440000pt;}
.fs0_c01124{font-size:64.000000pt;}
.fsc_c01124{font-size:66.560000pt;}
.y0_c01124{bottom:0.000000pt;}
.y72_c01124{bottom:90.240000pt;}
.y71_c01124{bottom:92.800000pt;}
.y70_c01124{bottom:93.440000pt;}
.y6e_c01124{bottom:94.080000pt;}
.y6f_c01124{bottom:94.720000pt;}
.y6d_c01124{bottom:96.000000pt;}
.y6b_c01124{bottom:128.000000pt;}
.y69_c01124{bottom:129.280000pt;}
.y6c_c01124{bottom:129.920000pt;}
.y6a_c01124{bottom:130.560000pt;}
.y65_c01124{bottom:131.200000pt;}
.y66_c01124{bottom:131.840000pt;}
.y68_c01124{bottom:132.480000pt;}
.y67_c01124{bottom:133.120000pt;}
.y61_c01124{bottom:167.040000pt;}
.y64_c01124{bottom:168.320000pt;}
.y60_c01124{bottom:168.960000pt;}
.y63_c01124{bottom:169.600000pt;}
.y62_c01124{bottom:170.240000pt;}
.y5f_c01124{bottom:204.160000pt;}
.y5d_c01124{bottom:204.800000pt;}
.y5a_c01124{bottom:206.080000pt;}
.y5e_c01124{bottom:206.720000pt;}
.y5c_c01124{bottom:207.360000pt;}
.y5b_c01124{bottom:208.000000pt;}
.y59_c01124{bottom:209.280000pt;}
.y57_c01124{bottom:242.560000pt;}
.y55_c01124{bottom:243.200000pt;}
.y58_c01124{bottom:243.840000pt;}
.y56_c01124{bottom:244.480000pt;}
.y54_c01124{bottom:245.120000pt;}
.y53_c01124{bottom:279.680000pt;}
.y52_c01124{bottom:280.320000pt;}
.y4e_c01124{bottom:281.600000pt;}
.y51_c01124{bottom:282.240000pt;}
.y50_c01124{bottom:282.880000pt;}
.y4f_c01124{bottom:283.520000pt;}
.y4d_c01124{bottom:316.800000pt;}
.y4b_c01124{bottom:318.080000pt;}
.y4c_c01124{bottom:320.640000pt;}
.y4a_c01124{bottom:321.280000pt;}
.y47_c01124{bottom:356.480000pt;}
.y49_c01124{bottom:358.400000pt;}
.y48_c01124{bottom:359.040000pt;}
.y46_c01124{bottom:393.600000pt;}
.y45_c01124{bottom:394.240000pt;}
.y43_c01124{bottom:394.880000pt;}
.y44_c01124{bottom:396.800000pt;}
.y42_c01124{bottom:397.440000pt;}
.y3f_c01124{bottom:432.640000pt;}
.y40_c01124{bottom:434.560000pt;}
.y41_c01124{bottom:435.200000pt;}
.y3d_c01124{bottom:469.760000pt;}
.y3c_c01124{bottom:470.400000pt;}
.y3b_c01124{bottom:472.320000pt;}
.y3e_c01124{bottom:472.960000pt;}
.y37_c01124{bottom:507.520000pt;}
.y39_c01124{bottom:508.160000pt;}
.y3a_c01124{bottom:508.800000pt;}
.y36_c01124{bottom:510.080000pt;}
.y38_c01124{bottom:510.720000pt;}
.y35_c01124{bottom:556.800000pt;}
.y31_c01124{bottom:594.560000pt;}
.y32_c01124{bottom:595.200000pt;}
.y33_c01124{bottom:595.840000pt;}
.y34_c01124{bottom:596.480000pt;}
.y29_c01124{bottom:629.760000pt;}
.y2b_c01124{bottom:630.400000pt;}
.y2c_c01124{bottom:631.040000pt;}
.y2e_c01124{bottom:631.680000pt;}
.y30_c01124{bottom:632.320000pt;}
.y2a_c01124{bottom:632.960000pt;}
.y2d_c01124{bottom:633.600000pt;}
.y2f_c01124{bottom:634.240000pt;}
.y23_c01124{bottom:668.160000pt;}
.y25_c01124{bottom:668.800000pt;}
.y22_c01124{bottom:670.080000pt;}
.y24_c01124{bottom:671.360000pt;}
.y26_c01124{bottom:672.000000pt;}
.y27_c01124{bottom:672.640000pt;}
.y28_c01124{bottom:673.280000pt;}
.y1e_c01124{bottom:707.200000pt;}
.y1f_c01124{bottom:708.480000pt;}
.y20_c01124{bottom:709.120000pt;}
.y21_c01124{bottom:709.760000pt;}
.y18_c01124{bottom:745.600000pt;}
.y19_c01124{bottom:746.240000pt;}
.y1a_c01124{bottom:746.880000pt;}
.y1b_c01124{bottom:747.520000pt;}
.y1c_c01124{bottom:748.160000pt;}
.y1d_c01124{bottom:748.800000pt;}
.y15_c01124{bottom:789.760000pt;}
.y16_c01124{bottom:791.040000pt;}
.y17_c01124{bottom:792.960000pt;}
.yd_c01124{bottom:828.160000pt;}
.yc_c01124{bottom:829.440000pt;}
.y10_c01124{bottom:830.080000pt;}
.yf_c01124{bottom:830.720000pt;}
.ye_c01124{bottom:831.360000pt;}
.y11_c01124{bottom:832.640000pt;}
.y12_c01124{bottom:833.280000pt;}
.y13_c01124{bottom:833.920000pt;}
.y14_c01124{bottom:835.200000pt;}
.y6_c01124{bottom:867.840000pt;}
.y8_c01124{bottom:868.480000pt;}
.y5_c01124{bottom:869.120000pt;}
.y7_c01124{bottom:870.400000pt;}
.y9_c01124{bottom:871.680000pt;}
.ya_c01124{bottom:872.960000pt;}
.yb_c01124{bottom:873.600000pt;}
.y2_c01124{bottom:912.640000pt;}
.y3_c01124{bottom:916.480000pt;}
.y4_c01124{bottom:917.120000pt;}
.y1_c01124{bottom:970.880000pt;}
.h7_c01124{height:27.645000pt;}
.h6_c01124{height:34.556250pt;}
.h4_c01124{height:36.860000pt;}
.h5_c01124{height:39.163750pt;}
.h8_c01124{height:41.467500pt;}
.he_c01124{height:43.771250pt;}
.hb_c01124{height:46.075000pt;}
.h3_c01124{height:48.378750pt;}
.h9_c01124{height:50.682500pt;}
.hc_c01124{height:52.986250pt;}
.ha_c01124{height:55.290000pt;}
.hd_c01124{height:55.546250pt;}
.h2_c01124{height:57.593750pt;}
.hf_c01124{height:59.897500pt;}
.h0_c01124{height:1015.680000pt;}
.h1_c01124{height:1016.000000pt;}
.w1_c01124{width:702.666667pt;}
.w0_c01124{width:702.720000pt;}
.x0_c01124{left:0.000000pt;}
.x2_c01124{left:61.440000pt;}
.x18_c01124{left:62.720000pt;}
.x3d_c01124{left:64.000000pt;}
.x46_c01124{left:65.280000pt;}
.x62_c01124{left:67.840000pt;}
.x5c_c01124{left:83.200000pt;}
.x26_c01124{left:91.520000pt;}
.x1f_c01124{left:100.480000pt;}
.x3e_c01124{left:101.760000pt;}
.x52_c01124{left:111.360000pt;}
.x27_c01124{left:119.680000pt;}
.x6e_c01124{left:121.600000pt;}
.x3_c01124{left:128.640000pt;}
.x20_c01124{left:138.880000pt;}
.x53_c01124{left:140.160000pt;}
.x28_c01124{left:147.840000pt;}
.x4f_c01124{left:149.760000pt;}
.x4_c01124{left:156.800000pt;}
.x6_c01124{left:158.080000pt;}
.x63_c01124{left:160.640000pt;}
.x19_c01124{left:165.760000pt;}
.x34_c01124{left:167.040000pt;}
.x50_c01124{left:177.920000pt;}
.x7_c01124{left:185.600000pt;}
.x3f_c01124{left:186.880000pt;}
.x4b_c01124{left:188.160000pt;}
.x54_c01124{left:197.120000pt;}
.x5_c01124{left:203.520000pt;}
.x1a_c01124{left:204.800000pt;}
.x5d_c01124{left:206.080000pt;}
.x1b_c01124{left:214.400000pt;}
.x40_c01124{left:215.680000pt;}
.x8_c01124{left:223.360000pt;}
.x47_c01124{left:225.280000pt;}
.x6b_c01124{left:226.560000pt;}
.x21_c01124{left:234.240000pt;}
.xf_c01124{left:241.920000pt;}
.x2f_c01124{left:243.840000pt;}
.x64_c01124{left:245.760000pt;}
.x29_c01124{left:253.440000pt;}
.x48_c01124{left:255.360000pt;}
.x22_c01124{left:261.760000pt;}
.x35_c01124{left:263.040000pt;}
.x1c_c01124{left:270.720000pt;}
.x10_c01124{left:272.640000pt;}
.x5e_c01124{left:273.920000pt;}
.x38_c01124{left:281.600000pt;}
.x6f_c01124{left:283.520000pt;}
.x2a_c01124{left:289.920000pt;}
.x36_c01124{left:291.200000pt;}
.x58_c01124{left:293.120000pt;}
.x41_c01124{left:300.800000pt;}
.x65_c01124{left:302.080000pt;}
.x9_c01124{left:309.120000pt;}
.x39_c01124{left:311.040000pt;}
.x30_c01124{left:319.360000pt;}
.x11_c01124{left:328.320000pt;}
.x42_c01124{left:329.600000pt;}
.x70_c01124{left:330.880000pt;}
.x59_c01124{left:339.840000pt;}
.xa_c01124{left:347.520000pt;}
.x23_c01124{left:348.800000pt;}
.x31_c01124{left:358.400000pt;}
.x5f_c01124{left:359.680000pt;}
.x2b_c01124{left:368.000000pt;}
.x24_c01124{left:376.320000pt;}
.x12_c01124{left:378.240000pt;}
.xb_c01124{left:386.560000pt;}
.x55_c01124{left:388.480000pt;}
.x60_c01124{left:390.400000pt;}
.x2c_c01124{left:396.160000pt;}
.x3a_c01124{left:397.440000pt;}
.x71_c01124{left:398.720000pt;}
.x4c_c01124{left:408.320000pt;}
.xc_c01124{left:414.720000pt;}
.x32_c01124{left:425.600000pt;}
.x13_c01124{left:435.200000pt;}
.x56_c01124{left:436.480000pt;}
.x6c_c01124{left:437.760000pt;}
.x2d_c01124{left:444.800000pt;}
.x37_c01124{left:455.040000pt;}
.x66_c01124{left:456.320000pt;}
.x25_c01124{left:463.360000pt;}
.x4d_c01124{left:465.920000pt;}
.x14_c01124{left:472.960000pt;}
.x5a_c01124{left:475.520000pt;}
.x43_c01124{left:482.560000pt;}
.x67_c01124{left:483.840000pt;}
.x49_c01124{left:487.040000pt;}
.x51_c01124{left:494.080000pt;}
.x33_c01124{left:502.400000pt;}
.x61_c01124{left:504.960000pt;}
.x68_c01124{left:513.280000pt;}
.x5b_c01124{left:514.560000pt;}
.xd_c01124{left:522.240000pt;}
.x1d_c01124{left:529.920000pt;}
.x15_c01124{left:531.200000pt;}
.x6d_c01124{left:533.760000pt;}
.x57_c01124{left:543.360000pt;}
.x16_c01124{left:560.640000pt;}
.x44_c01124{left:561.920000pt;}
.x3b_c01124{left:570.240000pt;}
.x4e_c01124{left:571.520000pt;}
.xe_c01124{left:579.840000pt;}
.x4a_c01124{left:582.400000pt;}
.x1e_c01124{left:589.440000pt;}
.x45_c01124{left:591.360000pt;}
.x17_c01124{left:598.400000pt;}
.x2e_c01124{left:600.320000pt;}
.x69_c01124{left:601.600000pt;}
.x3c_c01124{left:609.920000pt;}
.x6a_c01124{left:630.400000pt;}
.x1_c01124{left:636.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a349f744817c2a26ce1bccb1.woff2')format("woff");}.ff1_c01125{font-family:ff1_c01125;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m51_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);}
.m27_c01125{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);}
.m4d_c01125{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m5b_c01125{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m56_c01125{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m22_c01125{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m50_c01125{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m43_c01125{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m42_c01125{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01125{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01125{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m47_c01125{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);}
.m3b_c01125{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);}
.m5a_c01125{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.mf_c01125{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m11_c01125{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.mc_c01125{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m15_c01125{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m19_c01125{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m5_c01125{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.md_c01125{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);}
.m34_c01125{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01125{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m2_c01125{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);}
.m26_c01125{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);}
.ma_c01125{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);}
.m0_c01125{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m9_c01125{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);}
.m23_c01125{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m44_c01125{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);}
.m33_c01125{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m59_c01125{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01125{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);}
.m25_c01125{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m37_c01125{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m3_c01125{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);}
.m21_c01125{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);}
.m3f_c01125{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m18_c01125{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m20_c01125{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m41_c01125{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m54_c01125{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m4_c01125{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01125{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);}
.m4a_c01125{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01125{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);}
.m10_c01125{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01125{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01125{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m1_c01125{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);}
.m2e_c01125{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m35_c01125{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m52_c01125{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m29_c01125{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);}
.m46_c01125{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01125{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m13_c01125{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m30_c01125{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m57_c01125{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m28_c01125{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);}
.m2f_c01125{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);}
.m38_c01125{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m17_c01125{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01125{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);}
.m40_c01125{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m39_c01125{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m32_c01125{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m16_c01125{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);}
.m14_c01125{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.mb_c01125{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01125{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m49_c01125{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01125{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);}
.m2c_c01125{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m58_c01125{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);}
.me_c01125{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01125{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);}
.m3a_c01125{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m53_c01125{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m7_c01125{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01125{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m31_c01125{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);}
.m55_c01125{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m24_c01125{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);}
.m36_c01125{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m6_c01125{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m48_c01125{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.m12_c01125{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m45_c01125{transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01125{transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);}
.m8_c01125{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01125{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);}
.v2_c01125{vertical-align:-2.880000px;}
.v0_c01125{vertical-align:0.000000px;}
.v1_c01125{vertical-align:8.640000px;}
.ls0_c01125{letter-spacing:0.000000px;}
.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;}
}
.ws3_c01125{word-spacing:-4.907280px;}
.ws0_c01125{word-spacing:-4.740480px;}
.ws4_c01125{word-spacing:0.000000px;}
.ws2_c01125{word-spacing:0.682800px;}
.ws1_c01125{word-spacing:3.601302px;}
.fc0_c01125{color:transparent;}
.fse_c01125{font-size:23.040000px;}
.fsf_c01125{font-size:31.680000px;}
.fs1_c01125{font-size:34.560000px;}
.fs9_c01125{font-size:37.440000px;}
.fsc_c01125{font-size:40.320000px;}
.fs8_c01125{font-size:43.200000px;}
.fsb_c01125{font-size:46.080000px;}
.fs2_c01125{font-size:48.960000px;}
.fs5_c01125{font-size:51.840000px;}
.fs6_c01125{font-size:54.720000px;}
.fs7_c01125{font-size:57.600000px;}
.fs3_c01125{font-size:60.480000px;}
.fsa_c01125{font-size:63.360000px;}
.fsd_c01125{font-size:66.240000px;}
.fs4_c01125{font-size:69.120000px;}
.fs0_c01125{font-size:72.000000px;}
.y0_c01125{bottom:0.000000px;}
.y97_c01125{bottom:16.560000px;}
.y96_c01125{bottom:49.680000px;}
.y95_c01125{bottom:50.400000px;}
.y94_c01125{bottom:51.120000px;}
.y91_c01125{bottom:52.560000px;}
.y93_c01125{bottom:54.720000px;}
.y92_c01125{bottom:55.440000px;}
.y8f_c01125{bottom:90.720000px;}
.y8d_c01125{bottom:92.160000px;}
.y90_c01125{bottom:92.880000px;}
.y8c_c01125{bottom:93.600000px;}
.y8b_c01125{bottom:94.320000px;}
.y8e_c01125{bottom:95.040000px;}
.y89_c01125{bottom:95.760000px;}
.y8a_c01125{bottom:97.920000px;}
.y86_c01125{bottom:134.640000px;}
.y85_c01125{bottom:135.360000px;}
.y88_c01125{bottom:136.080000px;}
.y87_c01125{bottom:136.800000px;}
.y82_c01125{bottom:138.240000px;}
.y84_c01125{bottom:138.960000px;}
.y83_c01125{bottom:139.680000px;}
.y81_c01125{bottom:141.120000px;}
.y80_c01125{bottom:141.840000px;}
.y7f_c01125{bottom:143.280000px;}
.y7c_c01125{bottom:177.840000px;}
.y7e_c01125{bottom:178.560000px;}
.y7d_c01125{bottom:180.000000px;}
.y79_c01125{bottom:180.720000px;}
.y7b_c01125{bottom:181.440000px;}
.y7a_c01125{bottom:182.160000px;}
.y78_c01125{bottom:183.600000px;}
.y76_c01125{bottom:220.320000px;}
.y75_c01125{bottom:221.040000px;}
.y77_c01125{bottom:222.480000px;}
.y71_c01125{bottom:223.200000px;}
.y74_c01125{bottom:224.640000px;}
.y73_c01125{bottom:225.360000px;}
.y72_c01125{bottom:226.080000px;}
.y6e_c01125{bottom:262.800000px;}
.y6f_c01125{bottom:264.240000px;}
.y6d_c01125{bottom:264.960000px;}
.y6c_c01125{bottom:265.680000px;}
.y70_c01125{bottom:266.400000px;}
.y6b_c01125{bottom:268.560000px;}
.y6a_c01125{bottom:270.000000px;}
.y67_c01125{bottom:306.000000px;}
.y68_c01125{bottom:306.720000px;}
.y65_c01125{bottom:307.440000px;}
.y69_c01125{bottom:308.160000px;}
.y66_c01125{bottom:308.880000px;}
.y62_c01125{bottom:309.600000px;}
.y64_c01125{bottom:310.320000px;}
.y63_c01125{bottom:311.040000px;}
.y61_c01125{bottom:348.480000px;}
.y60_c01125{bottom:349.200000px;}
.y5f_c01125{bottom:349.920000px;}
.y5d_c01125{bottom:351.360000px;}
.y5e_c01125{bottom:352.800000px;}
.y5c_c01125{bottom:354.240000px;}
.y58_c01125{bottom:390.960000px;}
.y5a_c01125{bottom:391.680000px;}
.y59_c01125{bottom:392.400000px;}
.y55_c01125{bottom:393.120000px;}
.y5b_c01125{bottom:393.840000px;}
.y57_c01125{bottom:394.560000px;}
.y56_c01125{bottom:395.280000px;}
.y53_c01125{bottom:434.160000px;}
.y51_c01125{bottom:434.880000px;}
.y4f_c01125{bottom:435.600000px;}
.y54_c01125{bottom:436.320000px;}
.y52_c01125{bottom:437.040000px;}
.y50_c01125{bottom:437.760000px;}
.y4c_c01125{bottom:475.920000px;}
.y4e_c01125{bottom:476.640000px;}
.y4d_c01125{bottom:477.360000px;}
.y49_c01125{bottom:478.800000px;}
.y4b_c01125{bottom:479.520000px;}
.y4a_c01125{bottom:480.240000px;}
.y47_c01125{bottom:519.120000px;}
.y44_c01125{bottom:519.840000px;}
.y48_c01125{bottom:521.280000px;}
.y46_c01125{bottom:522.000000px;}
.y45_c01125{bottom:522.720000px;}
.y43_c01125{bottom:561.600000px;}
.y42_c01125{bottom:562.320000px;}
.y41_c01125{bottom:564.480000px;}
.y40_c01125{bottom:565.200000px;}
.y3e_c01125{bottom:604.800000px;}
.y3f_c01125{bottom:606.960000px;}
.y3d_c01125{bottom:607.680000px;}
.y3b_c01125{bottom:648.000000px;}
.y3a_c01125{bottom:650.160000px;}
.y3c_c01125{bottom:650.880000px;}
.y37_c01125{bottom:689.760000px;}
.y35_c01125{bottom:690.480000px;}
.y34_c01125{bottom:691.920000px;}
.y36_c01125{bottom:692.640000px;}
.y38_c01125{bottom:693.360000px;}
.y39_c01125{bottom:694.080000px;}
.y33_c01125{bottom:734.400000px;}
.y30_c01125{bottom:735.120000px;}
.y31_c01125{bottom:735.840000px;}
.y32_c01125{bottom:736.560000px;}
.y2c_c01125{bottom:775.440000px;}
.y2a_c01125{bottom:776.880000px;}
.y2b_c01125{bottom:777.600000px;}
.y2d_c01125{bottom:778.320000px;}
.y2e_c01125{bottom:779.040000px;}
.y2f_c01125{bottom:779.760000px;}
.y23_c01125{bottom:816.480000px;}
.y24_c01125{bottom:817.920000px;}
.y26_c01125{bottom:818.640000px;}
.y28_c01125{bottom:819.360000px;}
.y25_c01125{bottom:821.520000px;}
.y27_c01125{bottom:822.240000px;}
.y29_c01125{bottom:822.960000px;}
.y1f_c01125{bottom:860.400000px;}
.y20_c01125{bottom:861.120000px;}
.y1d_c01125{bottom:861.840000px;}
.y1e_c01125{bottom:862.560000px;}
.y21_c01125{bottom:864.720000px;}
.y22_c01125{bottom:865.440000px;}
.y18_c01125{bottom:902.160000px;}
.y17_c01125{bottom:904.320000px;}
.y19_c01125{bottom:905.760000px;}
.y1a_c01125{bottom:906.480000px;}
.y1b_c01125{bottom:907.200000px;}
.y1c_c01125{bottom:907.920000px;}
.y12_c01125{bottom:946.080000px;}
.y13_c01125{bottom:947.520000px;}
.y14_c01125{bottom:948.960000px;}
.y15_c01125{bottom:949.680000px;}
.y16_c01125{bottom:951.840000px;}
.y9_c01125{bottom:986.400000px;}
.ya_c01125{bottom:987.120000px;}
.yd_c01125{bottom:988.560000px;}
.ye_c01125{bottom:989.280000px;}
.yb_c01125{bottom:990.000000px;}
.yc_c01125{bottom:990.720000px;}
.yf_c01125{bottom:992.160000px;}
.y10_c01125{bottom:993.600000px;}
.y11_c01125{bottom:994.320000px;}
.y4_c01125{bottom:1028.880000px;}
.y2_c01125{bottom:1030.320000px;}
.y3_c01125{bottom:1031.040000px;}
.y6_c01125{bottom:1031.760000px;}
.y5_c01125{bottom:1033.200000px;}
.y7_c01125{bottom:1035.360000px;}
.y8_c01125{bottom:1036.800000px;}
.y1_c01125{bottom:1090.080000px;}
.h10_c01125{height:20.733750px;}
.h11_c01125{height:28.508906px;}
.h3_c01125{height:31.100625px;}
.hb_c01125{height:33.692344px;}
.he_c01125{height:36.284062px;}
.ha_c01125{height:38.875781px;}
.hd_c01125{height:41.467500px;}
.h4_c01125{height:44.059219px;}
.h7_c01125{height:46.650937px;}
.h8_c01125{height:49.242656px;}
.h9_c01125{height:51.834375px;}
.h5_c01125{height:54.426094px;}
.hc_c01125{height:57.017812px;}
.hf_c01125{height:59.609531px;}
.h6_c01125{height:62.201250px;}
.h2_c01125{height:64.792969px;}
.h0_c01125{height:1142.640000px;}
.h1_c01125{height:1143.000000px;}
.w1_c01125{width:790.500000px;}
.w0_c01125{width:790.560000px;}
.x0_c01125{left:0.000000px;}
.x23_c01125{left:69.840000px;}
.x2_c01125{left:71.280000px;}
.x4d_c01125{left:72.720000px;}
.x3_c01125{left:90.720000px;}
.x34_c01125{left:103.680000px;}
.x3c_c01125{left:114.480000px;}
.x1a_c01125{left:123.840000px;}
.xc_c01125{left:134.640000px;}
.x5e_c01125{left:136.080000px;}
.x29_c01125{left:144.720000px;}
.x49_c01125{left:146.160000px;}
.x56_c01125{left:156.240000px;}
.x4_c01125{left:166.320000px;}
.x5f_c01125{left:168.480000px;}
.x14_c01125{left:177.120000px;}
.x39_c01125{left:178.560000px;}
.x2d_c01125{left:187.920000px;}
.x61_c01125{left:189.360000px;}
.x3d_c01125{left:198.720000px;}
.x5b_c01125{left:200.160000px;}
.x35_c01125{left:209.520000px;}
.x24_c01125{left:218.160000px;}
.x44_c01125{left:220.320000px;}
.xd_c01125{left:231.120000px;}
.x1b_c01125{left:241.200000px;}
.x58_c01125{left:244.080000px;}
.x5_c01125{left:250.560000px;}
.x40_c01125{left:252.720000px;}
.xe_c01125{left:262.800000px;}
.x62_c01125{left:264.240000px;}
.x1c_c01125{left:272.880000px;}
.x51_c01125{left:274.320000px;}
.x25_c01125{left:282.960000px;}
.x41_c01125{left:285.120000px;}
.x59_c01125{left:286.560000px;}
.x2a_c01125{left:294.480000px;}
.x60_c01125{left:296.640000px;}
.x15_c01125{left:304.560000px;}
.x1d_c01125{left:306.000000px;}
.x3e_c01125{left:317.520000px;}
.x6_c01125{left:326.880000px;}
.x36_c01125{left:328.320000px;}
.x2b_c01125{left:336.960000px;}
.x4a_c01125{left:338.400000px;}
.x26_c01125{left:347.760000px;}
.x52_c01125{left:349.200000px;}
.x63_c01125{left:350.640000px;}
.x16_c01125{left:359.280000px;}
.x4e_c01125{left:360.720000px;}
.x1e_c01125{left:369.360000px;}
.x3f_c01125{left:371.520000px;}
.x2e_c01125{left:380.160000px;}
.x4b_c01125{left:382.320000px;}
.x7_c01125{left:390.960000px;}
.xf_c01125{left:401.760000px;}
.x37_c01125{left:403.200000px;}
.x1f_c01125{left:414.000000px;}
.x2f_c01125{left:423.360000px;}
.x38_c01125{left:424.800000px;}
.x2c_c01125{left:434.880000px;}
.x47_c01125{left:436.320000px;}
.x10_c01125{left:445.680000px;}
.x50_c01125{left:447.120000px;}
.x42_c01125{left:457.920000px;}
.x31_c01125{left:468.000000px;}
.x17_c01125{left:478.800000px;}
.x8_c01125{left:489.600000px;}
.x53_c01125{left:491.040000px;}
.x32_c01125{left:501.120000px;}
.x20_c01125{left:511.200000px;}
.x54_c01125{left:521.280000px;}
.x48_c01125{left:522.720000px;}
.x11_c01125{left:532.800000px;}
.x3a_c01125{left:534.240000px;}
.x18_c01125{left:542.160000px;}
.x21_c01125{left:543.600000px;}
.x27_c01125{left:553.680000px;}
.x45_c01125{left:555.120000px;}
.x43_c01125{left:565.200000px;}
.x12_c01125{left:576.000000px;}
.x5c_c01125{left:577.440000px;}
.x28_c01125{left:586.800000px;}
.x9_c01125{left:597.600000px;}
.x4f_c01125{left:599.040000px;}
.x13_c01125{left:608.400000px;}
.x55_c01125{left:609.840000px;}
.x5a_c01125{left:619.920000px;}
.x46_c01125{left:621.360000px;}
.x33_c01125{left:631.440000px;}
.xa_c01125{left:641.520000px;}
.x22_c01125{left:652.320000px;}
.x5d_c01125{left:653.760000px;}
.x19_c01125{left:663.120000px;}
.x3b_c01125{left:664.560000px;}
.xb_c01125{left:674.640000px;}
.x57_c01125{left:676.080000px;}
.x30_c01125{left:685.440000px;}
.x4c_c01125{left:686.880000px;}
.x1_c01125{left:701.280000px;}
@media print{
.v2_c01125{vertical-align:-2.560000pt;}
.v0_c01125{vertical-align:0.000000pt;}
.v1_c01125{vertical-align:7.680000pt;}
.ls0_c01125{letter-spacing:0.000000pt;}
.ws3_c01125{word-spacing:-4.362027pt;}
.ws0_c01125{word-spacing:-4.213760pt;}
.ws4_c01125{word-spacing:0.000000pt;}
.ws2_c01125{word-spacing:0.606933pt;}
.ws1_c01125{word-spacing:3.201157pt;}
.fse_c01125{font-size:20.480000pt;}
.fsf_c01125{font-size:28.160000pt;}
.fs1_c01125{font-size:30.720000pt;}
.fs9_c01125{font-size:33.280000pt;}
.fsc_c01125{font-size:35.840000pt;}
.fs8_c01125{font-size:38.400000pt;}
.fsb_c01125{font-size:40.960000pt;}
.fs2_c01125{font-size:43.520000pt;}
.fs5_c01125{font-size:46.080000pt;}
.fs6_c01125{font-size:48.640000pt;}
.fs7_c01125{font-size:51.200000pt;}
.fs3_c01125{font-size:53.760000pt;}
.fsa_c01125{font-size:56.320000pt;}
.fsd_c01125{font-size:58.880000pt;}
.fs4_c01125{font-size:61.440000pt;}
.fs0_c01125{font-size:64.000000pt;}
.y0_c01125{bottom:0.000000pt;}
.y97_c01125{bottom:14.720000pt;}
.y96_c01125{bottom:44.160000pt;}
.y95_c01125{bottom:44.800000pt;}
.y94_c01125{bottom:45.440000pt;}
.y91_c01125{bottom:46.720000pt;}
.y93_c01125{bottom:48.640000pt;}
.y92_c01125{bottom:49.280000pt;}
.y8f_c01125{bottom:80.640000pt;}
.y8d_c01125{bottom:81.920000pt;}
.y90_c01125{bottom:82.560000pt;}
.y8c_c01125{bottom:83.200000pt;}
.y8b_c01125{bottom:83.840000pt;}
.y8e_c01125{bottom:84.480000pt;}
.y89_c01125{bottom:85.120000pt;}
.y8a_c01125{bottom:87.040000pt;}
.y86_c01125{bottom:119.680000pt;}
.y85_c01125{bottom:120.320000pt;}
.y88_c01125{bottom:120.960000pt;}
.y87_c01125{bottom:121.600000pt;}
.y82_c01125{bottom:122.880000pt;}
.y84_c01125{bottom:123.520000pt;}
.y83_c01125{bottom:124.160000pt;}
.y81_c01125{bottom:125.440000pt;}
.y80_c01125{bottom:126.080000pt;}
.y7f_c01125{bottom:127.360000pt;}
.y7c_c01125{bottom:158.080000pt;}
.y7e_c01125{bottom:158.720000pt;}
.y7d_c01125{bottom:160.000000pt;}
.y79_c01125{bottom:160.640000pt;}
.y7b_c01125{bottom:161.280000pt;}
.y7a_c01125{bottom:161.920000pt;}
.y78_c01125{bottom:163.200000pt;}
.y76_c01125{bottom:195.840000pt;}
.y75_c01125{bottom:196.480000pt;}
.y77_c01125{bottom:197.760000pt;}
.y71_c01125{bottom:198.400000pt;}
.y74_c01125{bottom:199.680000pt;}
.y73_c01125{bottom:200.320000pt;}
.y72_c01125{bottom:200.960000pt;}
.y6e_c01125{bottom:233.600000pt;}
.y6f_c01125{bottom:234.880000pt;}
.y6d_c01125{bottom:235.520000pt;}
.y6c_c01125{bottom:236.160000pt;}
.y70_c01125{bottom:236.800000pt;}
.y6b_c01125{bottom:238.720000pt;}
.y6a_c01125{bottom:240.000000pt;}
.y67_c01125{bottom:272.000000pt;}
.y68_c01125{bottom:272.640000pt;}
.y65_c01125{bottom:273.280000pt;}
.y69_c01125{bottom:273.920000pt;}
.y66_c01125{bottom:274.560000pt;}
.y62_c01125{bottom:275.200000pt;}
.y64_c01125{bottom:275.840000pt;}
.y63_c01125{bottom:276.480000pt;}
.y61_c01125{bottom:309.760000pt;}
.y60_c01125{bottom:310.400000pt;}
.y5f_c01125{bottom:311.040000pt;}
.y5d_c01125{bottom:312.320000pt;}
.y5e_c01125{bottom:313.600000pt;}
.y5c_c01125{bottom:314.880000pt;}
.y58_c01125{bottom:347.520000pt;}
.y5a_c01125{bottom:348.160000pt;}
.y59_c01125{bottom:348.800000pt;}
.y55_c01125{bottom:349.440000pt;}
.y5b_c01125{bottom:350.080000pt;}
.y57_c01125{bottom:350.720000pt;}
.y56_c01125{bottom:351.360000pt;}
.y53_c01125{bottom:385.920000pt;}
.y51_c01125{bottom:386.560000pt;}
.y4f_c01125{bottom:387.200000pt;}
.y54_c01125{bottom:387.840000pt;}
.y52_c01125{bottom:388.480000pt;}
.y50_c01125{bottom:389.120000pt;}
.y4c_c01125{bottom:423.040000pt;}
.y4e_c01125{bottom:423.680000pt;}
.y4d_c01125{bottom:424.320000pt;}
.y49_c01125{bottom:425.600000pt;}
.y4b_c01125{bottom:426.240000pt;}
.y4a_c01125{bottom:426.880000pt;}
.y47_c01125{bottom:461.440000pt;}
.y44_c01125{bottom:462.080000pt;}
.y48_c01125{bottom:463.360000pt;}
.y46_c01125{bottom:464.000000pt;}
.y45_c01125{bottom:464.640000pt;}
.y43_c01125{bottom:499.200000pt;}
.y42_c01125{bottom:499.840000pt;}
.y41_c01125{bottom:501.760000pt;}
.y40_c01125{bottom:502.400000pt;}
.y3e_c01125{bottom:537.600000pt;}
.y3f_c01125{bottom:539.520000pt;}
.y3d_c01125{bottom:540.160000pt;}
.y3b_c01125{bottom:576.000000pt;}
.y3a_c01125{bottom:577.920000pt;}
.y3c_c01125{bottom:578.560000pt;}
.y37_c01125{bottom:613.120000pt;}
.y35_c01125{bottom:613.760000pt;}
.y34_c01125{bottom:615.040000pt;}
.y36_c01125{bottom:615.680000pt;}
.y38_c01125{bottom:616.320000pt;}
.y39_c01125{bottom:616.960000pt;}
.y33_c01125{bottom:652.800000pt;}
.y30_c01125{bottom:653.440000pt;}
.y31_c01125{bottom:654.080000pt;}
.y32_c01125{bottom:654.720000pt;}
.y2c_c01125{bottom:689.280000pt;}
.y2a_c01125{bottom:690.560000pt;}
.y2b_c01125{bottom:691.200000pt;}
.y2d_c01125{bottom:691.840000pt;}
.y2e_c01125{bottom:692.480000pt;}
.y2f_c01125{bottom:693.120000pt;}
.y23_c01125{bottom:725.760000pt;}
.y24_c01125{bottom:727.040000pt;}
.y26_c01125{bottom:727.680000pt;}
.y28_c01125{bottom:728.320000pt;}
.y25_c01125{bottom:730.240000pt;}
.y27_c01125{bottom:730.880000pt;}
.y29_c01125{bottom:731.520000pt;}
.y1f_c01125{bottom:764.800000pt;}
.y20_c01125{bottom:765.440000pt;}
.y1d_c01125{bottom:766.080000pt;}
.y1e_c01125{bottom:766.720000pt;}
.y21_c01125{bottom:768.640000pt;}
.y22_c01125{bottom:769.280000pt;}
.y18_c01125{bottom:801.920000pt;}
.y17_c01125{bottom:803.840000pt;}
.y19_c01125{bottom:805.120000pt;}
.y1a_c01125{bottom:805.760000pt;}
.y1b_c01125{bottom:806.400000pt;}
.y1c_c01125{bottom:807.040000pt;}
.y12_c01125{bottom:840.960000pt;}
.y13_c01125{bottom:842.240000pt;}
.y14_c01125{bottom:843.520000pt;}
.y15_c01125{bottom:844.160000pt;}
.y16_c01125{bottom:846.080000pt;}
.y9_c01125{bottom:876.800000pt;}
.ya_c01125{bottom:877.440000pt;}
.yd_c01125{bottom:878.720000pt;}
.ye_c01125{bottom:879.360000pt;}
.yb_c01125{bottom:880.000000pt;}
.yc_c01125{bottom:880.640000pt;}
.yf_c01125{bottom:881.920000pt;}
.y10_c01125{bottom:883.200000pt;}
.y11_c01125{bottom:883.840000pt;}
.y4_c01125{bottom:914.560000pt;}
.y2_c01125{bottom:915.840000pt;}
.y3_c01125{bottom:916.480000pt;}
.y6_c01125{bottom:917.120000pt;}
.y5_c01125{bottom:918.400000pt;}
.y7_c01125{bottom:920.320000pt;}
.y8_c01125{bottom:921.600000pt;}
.y1_c01125{bottom:968.960000pt;}
.h10_c01125{height:18.430000pt;}
.h11_c01125{height:25.341250pt;}
.h3_c01125{height:27.645000pt;}
.hb_c01125{height:29.948750pt;}
.he_c01125{height:32.252500pt;}
.ha_c01125{height:34.556250pt;}
.hd_c01125{height:36.860000pt;}
.h4_c01125{height:39.163750pt;}
.h7_c01125{height:41.467500pt;}
.h8_c01125{height:43.771250pt;}
.h9_c01125{height:46.075000pt;}
.h5_c01125{height:48.378750pt;}
.hc_c01125{height:50.682500pt;}
.hf_c01125{height:52.986250pt;}
.h6_c01125{height:55.290000pt;}
.h2_c01125{height:57.593750pt;}
.h0_c01125{height:1015.680000pt;}
.h1_c01125{height:1016.000000pt;}
.w1_c01125{width:702.666667pt;}
.w0_c01125{width:702.720000pt;}
.x0_c01125{left:0.000000pt;}
.x23_c01125{left:62.080000pt;}
.x2_c01125{left:63.360000pt;}
.x4d_c01125{left:64.640000pt;}
.x3_c01125{left:80.640000pt;}
.x34_c01125{left:92.160000pt;}
.x3c_c01125{left:101.760000pt;}
.x1a_c01125{left:110.080000pt;}
.xc_c01125{left:119.680000pt;}
.x5e_c01125{left:120.960000pt;}
.x29_c01125{left:128.640000pt;}
.x49_c01125{left:129.920000pt;}
.x56_c01125{left:138.880000pt;}
.x4_c01125{left:147.840000pt;}
.x5f_c01125{left:149.760000pt;}
.x14_c01125{left:157.440000pt;}
.x39_c01125{left:158.720000pt;}
.x2d_c01125{left:167.040000pt;}
.x61_c01125{left:168.320000pt;}
.x3d_c01125{left:176.640000pt;}
.x5b_c01125{left:177.920000pt;}
.x35_c01125{left:186.240000pt;}
.x24_c01125{left:193.920000pt;}
.x44_c01125{left:195.840000pt;}
.xd_c01125{left:205.440000pt;}
.x1b_c01125{left:214.400000pt;}
.x58_c01125{left:216.960000pt;}
.x5_c01125{left:222.720000pt;}
.x40_c01125{left:224.640000pt;}
.xe_c01125{left:233.600000pt;}
.x62_c01125{left:234.880000pt;}
.x1c_c01125{left:242.560000pt;}
.x51_c01125{left:243.840000pt;}
.x25_c01125{left:251.520000pt;}
.x41_c01125{left:253.440000pt;}
.x59_c01125{left:254.720000pt;}
.x2a_c01125{left:261.760000pt;}
.x60_c01125{left:263.680000pt;}
.x15_c01125{left:270.720000pt;}
.x1d_c01125{left:272.000000pt;}
.x3e_c01125{left:282.240000pt;}
.x6_c01125{left:290.560000pt;}
.x36_c01125{left:291.840000pt;}
.x2b_c01125{left:299.520000pt;}
.x4a_c01125{left:300.800000pt;}
.x26_c01125{left:309.120000pt;}
.x52_c01125{left:310.400000pt;}
.x63_c01125{left:311.680000pt;}
.x16_c01125{left:319.360000pt;}
.x4e_c01125{left:320.640000pt;}
.x1e_c01125{left:328.320000pt;}
.x3f_c01125{left:330.240000pt;}
.x2e_c01125{left:337.920000pt;}
.x4b_c01125{left:339.840000pt;}
.x7_c01125{left:347.520000pt;}
.xf_c01125{left:357.120000pt;}
.x37_c01125{left:358.400000pt;}
.x1f_c01125{left:368.000000pt;}
.x2f_c01125{left:376.320000pt;}
.x38_c01125{left:377.600000pt;}
.x2c_c01125{left:386.560000pt;}
.x47_c01125{left:387.840000pt;}
.x10_c01125{left:396.160000pt;}
.x50_c01125{left:397.440000pt;}
.x42_c01125{left:407.040000pt;}
.x31_c01125{left:416.000000pt;}
.x17_c01125{left:425.600000pt;}
.x8_c01125{left:435.200000pt;}
.x53_c01125{left:436.480000pt;}
.x32_c01125{left:445.440000pt;}
.x20_c01125{left:454.400000pt;}
.x54_c01125{left:463.360000pt;}
.x48_c01125{left:464.640000pt;}
.x11_c01125{left:473.600000pt;}
.x3a_c01125{left:474.880000pt;}
.x18_c01125{left:481.920000pt;}
.x21_c01125{left:483.200000pt;}
.x27_c01125{left:492.160000pt;}
.x45_c01125{left:493.440000pt;}
.x43_c01125{left:502.400000pt;}
.x12_c01125{left:512.000000pt;}
.x5c_c01125{left:513.280000pt;}
.x28_c01125{left:521.600000pt;}
.x9_c01125{left:531.200000pt;}
.x4f_c01125{left:532.480000pt;}
.x13_c01125{left:540.800000pt;}
.x55_c01125{left:542.080000pt;}
.x5a_c01125{left:551.040000pt;}
.x46_c01125{left:552.320000pt;}
.x33_c01125{left:561.280000pt;}
.xa_c01125{left:570.240000pt;}
.x22_c01125{left:579.840000pt;}
.x5d_c01125{left:581.120000pt;}
.x19_c01125{left:589.440000pt;}
.x3b_c01125{left:590.720000pt;}
.xb_c01125{left:599.680000pt;}
.x57_c01125{left:600.960000pt;}
.x30_c01125{left:609.280000pt;}
.x4c_c01125{left:610.560000pt;}
.x1_c01125{left:623.360000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_38d5230d7cbada842be3c053.woff2')format("woff");}.ff1_c01126{font-family:ff1_c01126;line-height:1.109863;font-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_c01126{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);}
.m3b_c01126{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);}
.m48_c01126{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mc_c01126{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m39_c01126{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01126{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m59_c01126{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m25_c01126{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01126{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01126{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m45_c01126{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m20_c01126{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);}
.m30_c01126{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);}
.m50_c01126{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m28_c01126{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.mf_c01126{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m9_c01126{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m17_c01126{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m36_c01126{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m3_c01126{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);}
.m42_c01126{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m15_c01126{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);}
.m57_c01126{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.md_c01126{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);}
.m29_c01126{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m0_c01126{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);}
.m53_c01126{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m58_c01126{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);}
.m3e_c01126{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m16_c01126{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);}
.m56_c01126{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01126{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m12_c01126{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m4_c01126{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m2_c01126{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m52_c01126{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);}
.m1_c01126{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m6_c01126{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);}
.m19_c01126{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);}
.m3c_c01126{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m7_c01126{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m13_c01126{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m24_c01126{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m34_c01126{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);}
.m49_c01126{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01126{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m40_c01126{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m33_c01126{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);}
.mb_c01126{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m41_c01126{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m10_c01126{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01126{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);}
.m51_c01126{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m21_c01126{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m55_c01126{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m43_c01126{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);}
.m8_c01126{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m5_c01126{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01126{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m4f_c01126{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01126{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);}
.m2e_c01126{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);}
.m31_c01126{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.ma_c01126{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m26_c01126{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);}
.m3d_c01126{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01126{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01126{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);}
.m22_c01126{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01126{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m18_c01126{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m23_c01126{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m11_c01126{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01126{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);}
.me_c01126{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);}
.m4a_c01126{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01126{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m14_c01126{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01126{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01126{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m35_c01126{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m44_c01126{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01126{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);}
.m37_c01126{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01126{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);}
.m2d_c01126{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m54_c01126{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m47_c01126{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);}
.m5a_c01126{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m38_c01126{transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);}
.m46_c01126{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.v1_c01126{vertical-align:-14.400000px;}
.v0_c01126{vertical-align:0.000000px;}
.ls0_c01126{letter-spacing:0.000000px;}
.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;}
}
.ws1_c01126{word-spacing:0.000000px;}
.ws0_c01126{word-spacing:5.626800px;}
.fc0_c01126{color:transparent;}
.fs5_c01126{font-size:34.560000px;}
.fsa_c01126{font-size:37.440000px;}
.fs6_c01126{font-size:43.200000px;}
.fs1_c01126{font-size:46.080000px;}
.fs4_c01126{font-size:48.960000px;}
.fs3_c01126{font-size:51.840000px;}
.fs9_c01126{font-size:54.720000px;}
.fs8_c01126{font-size:57.600000px;}
.fs2_c01126{font-size:60.480000px;}
.fs7_c01126{font-size:63.360000px;}
.fsb_c01126{font-size:66.240000px;}
.fs0_c01126{font-size:69.120000px;}
.y0_c01126{bottom:0.000000px;}
.y97_c01126{bottom:38.160000px;}
.y93_c01126{bottom:39.600000px;}
.y92_c01126{bottom:40.320000px;}
.y96_c01126{bottom:41.040000px;}
.y95_c01126{bottom:41.760000px;}
.y94_c01126{bottom:42.480000px;}
.y91_c01126{bottom:43.200000px;}
.y90_c01126{bottom:46.080000px;}
.y8f_c01126{bottom:47.520000px;}
.y8e_c01126{bottom:79.920000px;}
.y8c_c01126{bottom:81.360000px;}
.y8b_c01126{bottom:82.080000px;}
.y8d_c01126{bottom:82.800000px;}
.y8a_c01126{bottom:83.520000px;}
.y89_c01126{bottom:84.240000px;}
.y88_c01126{bottom:84.960000px;}
.y87_c01126{bottom:125.280000px;}
.y84_c01126{bottom:126.000000px;}
.y83_c01126{bottom:126.720000px;}
.y86_c01126{bottom:127.440000px;}
.y85_c01126{bottom:128.160000px;}
.y81_c01126{bottom:128.880000px;}
.y82_c01126{bottom:131.040000px;}
.y7f_c01126{bottom:166.320000px;}
.y7d_c01126{bottom:167.760000px;}
.y80_c01126{bottom:168.480000px;}
.y7e_c01126{bottom:169.200000px;}
.y7a_c01126{bottom:171.360000px;}
.y7c_c01126{bottom:172.800000px;}
.y7b_c01126{bottom:173.520000px;}
.y79_c01126{bottom:208.080000px;}
.y76_c01126{bottom:209.520000px;}
.y78_c01126{bottom:210.960000px;}
.y77_c01126{bottom:211.680000px;}
.y75_c01126{bottom:212.400000px;}
.y73_c01126{bottom:213.120000px;}
.y74_c01126{bottom:213.840000px;}
.y72_c01126{bottom:216.000000px;}
.y6f_c01126{bottom:252.000000px;}
.y71_c01126{bottom:253.440000px;}
.y6e_c01126{bottom:254.160000px;}
.y70_c01126{bottom:254.880000px;}
.y6d_c01126{bottom:257.760000px;}
.y6c_c01126{bottom:258.480000px;}
.y6a_c01126{bottom:294.480000px;}
.y6b_c01126{bottom:295.200000px;}
.y68_c01126{bottom:295.920000px;}
.y67_c01126{bottom:296.640000px;}
.y69_c01126{bottom:298.080000px;}
.y66_c01126{bottom:300.240000px;}
.y65_c01126{bottom:300.960000px;}
.y62_c01126{bottom:349.920000px;}
.y64_c01126{bottom:350.640000px;}
.y63_c01126{bottom:352.080000px;}
.y61_c01126{bottom:352.800000px;}
.y60_c01126{bottom:354.240000px;}
.y5f_c01126{bottom:354.960000px;}
.y5d_c01126{bottom:391.680000px;}
.y5a_c01126{bottom:393.120000px;}
.y5e_c01126{bottom:393.840000px;}
.y5c_c01126{bottom:394.560000px;}
.y5b_c01126{bottom:395.280000px;}
.y59_c01126{bottom:434.160000px;}
.y57_c01126{bottom:434.880000px;}
.y54_c01126{bottom:435.600000px;}
.y58_c01126{bottom:436.320000px;}
.y56_c01126{bottom:437.040000px;}
.y55_c01126{bottom:437.760000px;}
.y52_c01126{bottom:438.480000px;}
.y53_c01126{bottom:439.200000px;}
.y50_c01126{bottom:477.360000px;}
.y4d_c01126{bottom:478.080000px;}
.y51_c01126{bottom:479.520000px;}
.y4f_c01126{bottom:480.240000px;}
.y4e_c01126{bottom:480.960000px;}
.y4b_c01126{bottom:519.840000px;}
.y4c_c01126{bottom:520.560000px;}
.y49_c01126{bottom:521.280000px;}
.y4a_c01126{bottom:522.720000px;}
.y48_c01126{bottom:523.440000px;}
.y47_c01126{bottom:524.160000px;}
.y46_c01126{bottom:563.040000px;}
.y44_c01126{bottom:565.200000px;}
.y45_c01126{bottom:565.920000px;}
.y40_c01126{bottom:604.800000px;}
.y3f_c01126{bottom:605.520000px;}
.y42_c01126{bottom:606.240000px;}
.y41_c01126{bottom:607.680000px;}
.y43_c01126{bottom:608.400000px;}
.y3b_c01126{bottom:648.000000px;}
.y3c_c01126{bottom:648.720000px;}
.y3a_c01126{bottom:650.160000px;}
.y3d_c01126{bottom:650.880000px;}
.y3e_c01126{bottom:651.600000px;}
.y36_c01126{bottom:689.760000px;}
.y37_c01126{bottom:690.480000px;}
.y38_c01126{bottom:692.640000px;}
.y39_c01126{bottom:693.360000px;}
.y31_c01126{bottom:732.240000px;}
.y35_c01126{bottom:732.960000px;}
.y33_c01126{bottom:733.680000px;}
.y32_c01126{bottom:735.120000px;}
.y34_c01126{bottom:735.840000px;}
.y30_c01126{bottom:776.160000px;}
.y2b_c01126{bottom:776.880000px;}
.y2c_c01126{bottom:777.600000px;}
.y2d_c01126{bottom:778.320000px;}
.y2e_c01126{bottom:779.040000px;}
.y2f_c01126{bottom:779.760000px;}
.y23_c01126{bottom:816.480000px;}
.y26_c01126{bottom:817.920000px;}
.y27_c01126{bottom:818.640000px;}
.y2a_c01126{bottom:819.360000px;}
.y24_c01126{bottom:820.080000px;}
.y25_c01126{bottom:820.800000px;}
.y28_c01126{bottom:821.520000px;}
.y29_c01126{bottom:822.960000px;}
.y1f_c01126{bottom:861.120000px;}
.y1d_c01126{bottom:862.560000px;}
.y1e_c01126{bottom:863.280000px;}
.y20_c01126{bottom:864.720000px;}
.y21_c01126{bottom:865.440000px;}
.y22_c01126{bottom:866.160000px;}
.y17_c01126{bottom:904.320000px;}
.y18_c01126{bottom:905.040000px;}
.y19_c01126{bottom:905.760000px;}
.y1a_c01126{bottom:906.480000px;}
.y1b_c01126{bottom:907.200000px;}
.y1c_c01126{bottom:908.640000px;}
.y11_c01126{bottom:944.640000px;}
.y12_c01126{bottom:945.360000px;}
.y13_c01126{bottom:946.080000px;}
.y10_c01126{bottom:946.800000px;}
.y15_c01126{bottom:948.240000px;}
.y16_c01126{bottom:948.960000px;}
.y14_c01126{bottom:950.400000px;}
.ya_c01126{bottom:988.560000px;}
.yd_c01126{bottom:989.280000px;}
.ye_c01126{bottom:990.000000px;}
.yb_c01126{bottom:990.720000px;}
.yc_c01126{bottom:992.160000px;}
.yf_c01126{bottom:992.880000px;}
.y3_c01126{bottom:1030.320000px;}
.y4_c01126{bottom:1031.040000px;}
.y2_c01126{bottom:1032.480000px;}
.y7_c01126{bottom:1033.200000px;}
.y5_c01126{bottom:1033.920000px;}
.y6_c01126{bottom:1035.360000px;}
.y8_c01126{bottom:1036.800000px;}
.y9_c01126{bottom:1038.240000px;}
.y1_c01126{bottom:1085.760000px;}
.h7_c01126{height:31.100625px;}
.hc_c01126{height:33.692344px;}
.h8_c01126{height:38.875781px;}
.h3_c01126{height:41.467500px;}
.h6_c01126{height:44.059219px;}
.h5_c01126{height:46.650937px;}
.hb_c01126{height:49.242656px;}
.ha_c01126{height:51.834375px;}
.h4_c01126{height:54.426094px;}
.h9_c01126{height:57.017812px;}
.hd_c01126{height:59.609531px;}
.h2_c01126{height:62.201250px;}
.h1_c01126{height:1143.750000px;}
.h0_c01126{height:1144.080000px;}
.w1_c01126{width:783.750000px;}
.w0_c01126{width:784.080000px;}
.x0_c01126{left:0.000000px;}
.x2_c01126{left:69.120000px;}
.x2e_c01126{left:70.560000px;}
.x38_c01126{left:91.440000px;}
.x20_c01126{left:101.520000px;}
.x3_c01126{left:110.880000px;}
.x46_c01126{left:113.040000px;}
.x29_c01126{left:122.400000px;}
.x11_c01126{left:132.480000px;}
.x4e_c01126{left:133.920000px;}
.x39_c01126{left:143.280000px;}
.x34_c01126{left:144.720000px;}
.x4_c01126{left:154.080000px;}
.x32_c01126{left:155.520000px;}
.x36_c01126{left:164.880000px;}
.x3e_c01126{left:166.320000px;}
.x43_c01126{left:175.680000px;}
.x18_c01126{left:186.480000px;}
.x4c_c01126{left:187.920000px;}
.xb_c01126{left:196.560000px;}
.x3c_c01126{left:198.000000px;}
.x25_c01126{left:207.360000px;}
.x44_c01126{left:208.800000px;}
.x4d_c01126{left:219.600000px;}
.x35_c01126{left:228.960000px;}
.x2a_c01126{left:230.400000px;}
.x12_c01126{left:239.760000px;}
.xc_c01126{left:250.560000px;}
.x19_c01126{left:261.360000px;}
.x5_c01126{left:272.160000px;}
.x48_c01126{left:273.600000px;}
.xd_c01126{left:282.240000px;}
.x1a_c01126{left:293.040000px;}
.xe_c01126{left:304.560000px;}
.x2f_c01126{left:315.360000px;}
.x3a_c01126{left:326.160000px;}
.x3d_c01126{left:327.600000px;}
.x6_c01126{left:336.240000px;}
.x52_c01126{left:339.120000px;}
.xf_c01126{left:347.760000px;}
.x30_c01126{left:357.840000px;}
.x37_c01126{left:368.640000px;}
.x3f_c01126{left:380.160000px;}
.x26_c01126{left:390.960000px;}
.x7_c01126{left:401.040000px;}
.x41_c01126{left:403.200000px;}
.x33_c01126{left:412.560000px;}
.x4f_c01126{left:414.000000px;}
.x13_c01126{left:422.640000px;}
.x1b_c01126{left:433.440000px;}
.x10_c01126{left:444.960000px;}
.x50_c01126{left:446.400000px;}
.x8_c01126{left:454.320000px;}
.x49_c01126{left:456.480000px;}
.x14_c01126{left:465.120000px;}
.x42_c01126{left:466.560000px;}
.x21_c01126{left:468.000000px;}
.x1c_c01126{left:477.360000px;}
.x2b_c01126{left:498.960000px;}
.x45_c01126{left:500.400000px;}
.x1d_c01126{left:509.040000px;}
.x27_c01126{left:510.480000px;}
.x15_c01126{left:520.560000px;}
.x53_c01126{left:522.720000px;}
.x2c_c01126{left:531.360000px;}
.x3b_c01126{left:532.800000px;}
.x9_c01126{left:542.160000px;}
.x4a_c01126{left:543.600000px;}
.x28_c01126{left:553.680000px;}
.x2d_c01126{left:564.480000px;}
.x51_c01126{left:565.920000px;}
.x16_c01126{left:574.560000px;}
.x4b_c01126{left:576.000000px;}
.x22_c01126{left:596.160000px;}
.x40_c01126{left:598.320000px;}
.x1e_c01126{left:608.400000px;}
.xa_c01126{left:618.480000px;}
.x1f_c01126{left:629.280000px;}
.x47_c01126{left:640.800000px;}
.x23_c01126{left:651.600000px;}
.x54_c01126{left:653.760000px;}
.x31_c01126{left:663.120000px;}
.x17_c01126{left:673.920000px;}
.x1_c01126{left:676.080000px;}
.x24_c01126{left:684.720000px;}
@media print{
.v1_c01126{vertical-align:-12.800000pt;}
.v0_c01126{vertical-align:0.000000pt;}
.ls0_c01126{letter-spacing:0.000000pt;}
.ws1_c01126{word-spacing:0.000000pt;}
.ws0_c01126{word-spacing:5.001600pt;}
.fs5_c01126{font-size:30.720000pt;}
.fsa_c01126{font-size:33.280000pt;}
.fs6_c01126{font-size:38.400000pt;}
.fs1_c01126{font-size:40.960000pt;}
.fs4_c01126{font-size:43.520000pt;}
.fs3_c01126{font-size:46.080000pt;}
.fs9_c01126{font-size:48.640000pt;}
.fs8_c01126{font-size:51.200000pt;}
.fs2_c01126{font-size:53.760000pt;}
.fs7_c01126{font-size:56.320000pt;}
.fsb_c01126{font-size:58.880000pt;}
.fs0_c01126{font-size:61.440000pt;}
.y0_c01126{bottom:0.000000pt;}
.y97_c01126{bottom:33.920000pt;}
.y93_c01126{bottom:35.200000pt;}
.y92_c01126{bottom:35.840000pt;}
.y96_c01126{bottom:36.480000pt;}
.y95_c01126{bottom:37.120000pt;}
.y94_c01126{bottom:37.760000pt;}
.y91_c01126{bottom:38.400000pt;}
.y90_c01126{bottom:40.960000pt;}
.y8f_c01126{bottom:42.240000pt;}
.y8e_c01126{bottom:71.040000pt;}
.y8c_c01126{bottom:72.320000pt;}
.y8b_c01126{bottom:72.960000pt;}
.y8d_c01126{bottom:73.600000pt;}
.y8a_c01126{bottom:74.240000pt;}
.y89_c01126{bottom:74.880000pt;}
.y88_c01126{bottom:75.520000pt;}
.y87_c01126{bottom:111.360000pt;}
.y84_c01126{bottom:112.000000pt;}
.y83_c01126{bottom:112.640000pt;}
.y86_c01126{bottom:113.280000pt;}
.y85_c01126{bottom:113.920000pt;}
.y81_c01126{bottom:114.560000pt;}
.y82_c01126{bottom:116.480000pt;}
.y7f_c01126{bottom:147.840000pt;}
.y7d_c01126{bottom:149.120000pt;}
.y80_c01126{bottom:149.760000pt;}
.y7e_c01126{bottom:150.400000pt;}
.y7a_c01126{bottom:152.320000pt;}
.y7c_c01126{bottom:153.600000pt;}
.y7b_c01126{bottom:154.240000pt;}
.y79_c01126{bottom:184.960000pt;}
.y76_c01126{bottom:186.240000pt;}
.y78_c01126{bottom:187.520000pt;}
.y77_c01126{bottom:188.160000pt;}
.y75_c01126{bottom:188.800000pt;}
.y73_c01126{bottom:189.440000pt;}
.y74_c01126{bottom:190.080000pt;}
.y72_c01126{bottom:192.000000pt;}
.y6f_c01126{bottom:224.000000pt;}
.y71_c01126{bottom:225.280000pt;}
.y6e_c01126{bottom:225.920000pt;}
.y70_c01126{bottom:226.560000pt;}
.y6d_c01126{bottom:229.120000pt;}
.y6c_c01126{bottom:229.760000pt;}
.y6a_c01126{bottom:261.760000pt;}
.y6b_c01126{bottom:262.400000pt;}
.y68_c01126{bottom:263.040000pt;}
.y67_c01126{bottom:263.680000pt;}
.y69_c01126{bottom:264.960000pt;}
.y66_c01126{bottom:266.880000pt;}
.y65_c01126{bottom:267.520000pt;}
.y62_c01126{bottom:311.040000pt;}
.y64_c01126{bottom:311.680000pt;}
.y63_c01126{bottom:312.960000pt;}
.y61_c01126{bottom:313.600000pt;}
.y60_c01126{bottom:314.880000pt;}
.y5f_c01126{bottom:315.520000pt;}
.y5d_c01126{bottom:348.160000pt;}
.y5a_c01126{bottom:349.440000pt;}
.y5e_c01126{bottom:350.080000pt;}
.y5c_c01126{bottom:350.720000pt;}
.y5b_c01126{bottom:351.360000pt;}
.y59_c01126{bottom:385.920000pt;}
.y57_c01126{bottom:386.560000pt;}
.y54_c01126{bottom:387.200000pt;}
.y58_c01126{bottom:387.840000pt;}
.y56_c01126{bottom:388.480000pt;}
.y55_c01126{bottom:389.120000pt;}
.y52_c01126{bottom:389.760000pt;}
.y53_c01126{bottom:390.400000pt;}
.y50_c01126{bottom:424.320000pt;}
.y4d_c01126{bottom:424.960000pt;}
.y51_c01126{bottom:426.240000pt;}
.y4f_c01126{bottom:426.880000pt;}
.y4e_c01126{bottom:427.520000pt;}
.y4b_c01126{bottom:462.080000pt;}
.y4c_c01126{bottom:462.720000pt;}
.y49_c01126{bottom:463.360000pt;}
.y4a_c01126{bottom:464.640000pt;}
.y48_c01126{bottom:465.280000pt;}
.y47_c01126{bottom:465.920000pt;}
.y46_c01126{bottom:500.480000pt;}
.y44_c01126{bottom:502.400000pt;}
.y45_c01126{bottom:503.040000pt;}
.y40_c01126{bottom:537.600000pt;}
.y3f_c01126{bottom:538.240000pt;}
.y42_c01126{bottom:538.880000pt;}
.y41_c01126{bottom:540.160000pt;}
.y43_c01126{bottom:540.800000pt;}
.y3b_c01126{bottom:576.000000pt;}
.y3c_c01126{bottom:576.640000pt;}
.y3a_c01126{bottom:577.920000pt;}
.y3d_c01126{bottom:578.560000pt;}
.y3e_c01126{bottom:579.200000pt;}
.y36_c01126{bottom:613.120000pt;}
.y37_c01126{bottom:613.760000pt;}
.y38_c01126{bottom:615.680000pt;}
.y39_c01126{bottom:616.320000pt;}
.y31_c01126{bottom:650.880000pt;}
.y35_c01126{bottom:651.520000pt;}
.y33_c01126{bottom:652.160000pt;}
.y32_c01126{bottom:653.440000pt;}
.y34_c01126{bottom:654.080000pt;}
.y30_c01126{bottom:689.920000pt;}
.y2b_c01126{bottom:690.560000pt;}
.y2c_c01126{bottom:691.200000pt;}
.y2d_c01126{bottom:691.840000pt;}
.y2e_c01126{bottom:692.480000pt;}
.y2f_c01126{bottom:693.120000pt;}
.y23_c01126{bottom:725.760000pt;}
.y26_c01126{bottom:727.040000pt;}
.y27_c01126{bottom:727.680000pt;}
.y2a_c01126{bottom:728.320000pt;}
.y24_c01126{bottom:728.960000pt;}
.y25_c01126{bottom:729.600000pt;}
.y28_c01126{bottom:730.240000pt;}
.y29_c01126{bottom:731.520000pt;}
.y1f_c01126{bottom:765.440000pt;}
.y1d_c01126{bottom:766.720000pt;}
.y1e_c01126{bottom:767.360000pt;}
.y20_c01126{bottom:768.640000pt;}
.y21_c01126{bottom:769.280000pt;}
.y22_c01126{bottom:769.920000pt;}
.y17_c01126{bottom:803.840000pt;}
.y18_c01126{bottom:804.480000pt;}
.y19_c01126{bottom:805.120000pt;}
.y1a_c01126{bottom:805.760000pt;}
.y1b_c01126{bottom:806.400000pt;}
.y1c_c01126{bottom:807.680000pt;}
.y11_c01126{bottom:839.680000pt;}
.y12_c01126{bottom:840.320000pt;}
.y13_c01126{bottom:840.960000pt;}
.y10_c01126{bottom:841.600000pt;}
.y15_c01126{bottom:842.880000pt;}
.y16_c01126{bottom:843.520000pt;}
.y14_c01126{bottom:844.800000pt;}
.ya_c01126{bottom:878.720000pt;}
.yd_c01126{bottom:879.360000pt;}
.ye_c01126{bottom:880.000000pt;}
.yb_c01126{bottom:880.640000pt;}
.yc_c01126{bottom:881.920000pt;}
.yf_c01126{bottom:882.560000pt;}
.y3_c01126{bottom:915.840000pt;}
.y4_c01126{bottom:916.480000pt;}
.y2_c01126{bottom:917.760000pt;}
.y7_c01126{bottom:918.400000pt;}
.y5_c01126{bottom:919.040000pt;}
.y6_c01126{bottom:920.320000pt;}
.y8_c01126{bottom:921.600000pt;}
.y9_c01126{bottom:922.880000pt;}
.y1_c01126{bottom:965.120000pt;}
.h7_c01126{height:27.645000pt;}
.hc_c01126{height:29.948750pt;}
.h8_c01126{height:34.556250pt;}
.h3_c01126{height:36.860000pt;}
.h6_c01126{height:39.163750pt;}
.h5_c01126{height:41.467500pt;}
.hb_c01126{height:43.771250pt;}
.ha_c01126{height:46.075000pt;}
.h4_c01126{height:48.378750pt;}
.h9_c01126{height:50.682500pt;}
.hd_c01126{height:52.986250pt;}
.h2_c01126{height:55.290000pt;}
.h1_c01126{height:1016.666667pt;}
.h0_c01126{height:1016.960000pt;}
.w1_c01126{width:696.666667pt;}
.w0_c01126{width:696.960000pt;}
.x0_c01126{left:0.000000pt;}
.x2_c01126{left:61.440000pt;}
.x2e_c01126{left:62.720000pt;}
.x38_c01126{left:81.280000pt;}
.x20_c01126{left:90.240000pt;}
.x3_c01126{left:98.560000pt;}
.x46_c01126{left:100.480000pt;}
.x29_c01126{left:108.800000pt;}
.x11_c01126{left:117.760000pt;}
.x4e_c01126{left:119.040000pt;}
.x39_c01126{left:127.360000pt;}
.x34_c01126{left:128.640000pt;}
.x4_c01126{left:136.960000pt;}
.x32_c01126{left:138.240000pt;}
.x36_c01126{left:146.560000pt;}
.x3e_c01126{left:147.840000pt;}
.x43_c01126{left:156.160000pt;}
.x18_c01126{left:165.760000pt;}
.x4c_c01126{left:167.040000pt;}
.xb_c01126{left:174.720000pt;}
.x3c_c01126{left:176.000000pt;}
.x25_c01126{left:184.320000pt;}
.x44_c01126{left:185.600000pt;}
.x4d_c01126{left:195.200000pt;}
.x35_c01126{left:203.520000pt;}
.x2a_c01126{left:204.800000pt;}
.x12_c01126{left:213.120000pt;}
.xc_c01126{left:222.720000pt;}
.x19_c01126{left:232.320000pt;}
.x5_c01126{left:241.920000pt;}
.x48_c01126{left:243.200000pt;}
.xd_c01126{left:250.880000pt;}
.x1a_c01126{left:260.480000pt;}
.xe_c01126{left:270.720000pt;}
.x2f_c01126{left:280.320000pt;}
.x3a_c01126{left:289.920000pt;}
.x3d_c01126{left:291.200000pt;}
.x6_c01126{left:298.880000pt;}
.x52_c01126{left:301.440000pt;}
.xf_c01126{left:309.120000pt;}
.x30_c01126{left:318.080000pt;}
.x37_c01126{left:327.680000pt;}
.x3f_c01126{left:337.920000pt;}
.x26_c01126{left:347.520000pt;}
.x7_c01126{left:356.480000pt;}
.x41_c01126{left:358.400000pt;}
.x33_c01126{left:366.720000pt;}
.x4f_c01126{left:368.000000pt;}
.x13_c01126{left:375.680000pt;}
.x1b_c01126{left:385.280000pt;}
.x10_c01126{left:395.520000pt;}
.x50_c01126{left:396.800000pt;}
.x8_c01126{left:403.840000pt;}
.x49_c01126{left:405.760000pt;}
.x14_c01126{left:413.440000pt;}
.x42_c01126{left:414.720000pt;}
.x21_c01126{left:416.000000pt;}
.x1c_c01126{left:424.320000pt;}
.x2b_c01126{left:443.520000pt;}
.x45_c01126{left:444.800000pt;}
.x1d_c01126{left:452.480000pt;}
.x27_c01126{left:453.760000pt;}
.x15_c01126{left:462.720000pt;}
.x53_c01126{left:464.640000pt;}
.x2c_c01126{left:472.320000pt;}
.x3b_c01126{left:473.600000pt;}
.x9_c01126{left:481.920000pt;}
.x4a_c01126{left:483.200000pt;}
.x28_c01126{left:492.160000pt;}
.x2d_c01126{left:501.760000pt;}
.x51_c01126{left:503.040000pt;}
.x16_c01126{left:510.720000pt;}
.x4b_c01126{left:512.000000pt;}
.x22_c01126{left:529.920000pt;}
.x40_c01126{left:531.840000pt;}
.x1e_c01126{left:540.800000pt;}
.xa_c01126{left:549.760000pt;}
.x1f_c01126{left:559.360000pt;}
.x47_c01126{left:569.600000pt;}
.x23_c01126{left:579.200000pt;}
.x54_c01126{left:581.120000pt;}
.x31_c01126{left:589.440000pt;}
.x17_c01126{left:599.040000pt;}
.x1_c01126{left:600.960000pt;}
.x24_c01126{left:608.640000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_90623164cea6f0f6d5aca117.woff2')format("woff");}.ff1_c01127{font-family:ff1_c01127;line-height:1.109863;font-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_c01127{transform:matrix(0.225100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225100,0.000000,0.000000,0.250000,0,0);}
.m28_c01127{transform:matrix(0.231525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231525,0.000000,0.000000,0.250000,0,0);}
.mb_c01127{transform:matrix(0.238525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238525,0.000000,0.000000,0.250000,0,0);}
.m50_c01127{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m61_c01127{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m21_c01127{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m27_c01127{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01127{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m18_c01127{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01127{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m5d_c01127{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m20_c01127{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01127{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01127{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m39_c01127{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m5c_c01127{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01127{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m29_c01127{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01127{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m52_c01127{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);}
.m45_c01127{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);}
.m59_c01127{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m0_c01127{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m58_c01127{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m6_c01127{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);}
.m19_c01127{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01127{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1_c01127{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01127{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);}
.m3f_c01127{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);}
.m47_c01127{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m53_c01127{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m4_c01127{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);}
.m57_c01127{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);}
.m56_c01127{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01127{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);}
.m49_c01127{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m13_c01127{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);}
.m7_c01127{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);}
.m4e_c01127{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m15_c01127{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m5b_c01127{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);}
.mc_c01127{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m37_c01127{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m11_c01127{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01127{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);}
.m36_c01127{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);}
.m2_c01127{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m5f_c01127{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01127{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m32_c01127{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);}
.m2d_c01127{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m55_c01127{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m3_c01127{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);}
.m42_c01127{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m35_c01127{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m38_c01127{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m44_c01127{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m3c_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);}
.m34_c01127{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m63_c01127{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m40_c01127{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.me_c01127{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);}
.m25_c01127{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m46_c01127{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01127{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m12_c01127{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m8_c01127{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);}
.m54_c01127{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.ma_c01127{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m22_c01127{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);}
.m4f_c01127{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.mf_c01127{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m23_c01127{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m60_c01127{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m51_c01127{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m31_c01127{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m17_c01127{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m14_c01127{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m5_c01127{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);}
.m33_c01127{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);}
.m41_c01127{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.md_c01127{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m9_c01127{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m43_c01127{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m24_c01127{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m48_c01127{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);}
.m30_c01127{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m26_c01127{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01127{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);}
.m62_c01127{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m5a_c01127{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01127{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m16_c01127{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);}
.m4d_c01127{transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);}
.m4a_c01127{transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);}
.m10_c01127{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.m5e_c01127{transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01127{transform:matrix(0.962500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.962500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.962500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01127{transform:matrix(0.980000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.980000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.980000,0.000000,0.000000,0.250000,0,0);}
.v0_c01127{vertical-align:0.000000px;}
.v1_c01127{vertical-align:5.760000px;}
.ls2_c01127{letter-spacing:0.000000px;}
.ls0_c01127{letter-spacing:153.138720px;}
.ls1_c01127{letter-spacing:169.374720px;}
.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;}
}
.ws2_c01127{word-spacing:-7.456560px;}
.ws3_c01127{word-spacing:-5.371920px;}
.ws4_c01127{word-spacing:0.000000px;}
.ws0_c01127{word-spacing:2.064240px;}
.ws1_c01127{word-spacing:4.934400px;}
.fc0_c01127{color:transparent;}
.fs9_c01127{font-size:20.160000px;}
.fs7_c01127{font-size:34.560000px;}
.fsb_c01127{font-size:40.320000px;}
.fs8_c01127{font-size:43.200000px;}
.fs4_c01127{font-size:46.080000px;}
.fs1_c01127{font-size:48.960000px;}
.fs5_c01127{font-size:51.840000px;}
.fs3_c01127{font-size:54.720000px;}
.fsa_c01127{font-size:57.600000px;}
.fs2_c01127{font-size:60.480000px;}
.fs6_c01127{font-size:63.360000px;}
.fse_c01127{font-size:66.240000px;}
.fsf_c01127{font-size:69.120000px;}
.fs0_c01127{font-size:72.000000px;}
.fsc_c01127{font-size:100.800000px;}
.fsd_c01127{font-size:103.680000px;}
.y0_c01127{bottom:0.000000px;}
.y80_c01127{bottom:38.160000px;}
.y81_c01127{bottom:39.600000px;}
.y7f_c01127{bottom:41.040000px;}
.y7e_c01127{bottom:42.480000px;}
.y7d_c01127{bottom:43.200000px;}
.y7c_c01127{bottom:43.920000px;}
.y79_c01127{bottom:79.920000px;}
.y78_c01127{bottom:81.360000px;}
.y7b_c01127{bottom:82.800000px;}
.y7a_c01127{bottom:83.520000px;}
.y76_c01127{bottom:84.960000px;}
.y77_c01127{bottom:85.680000px;}
.y75_c01127{bottom:87.120000px;}
.y74_c01127{bottom:125.280000px;}
.y73_c01127{bottom:126.720000px;}
.y72_c01127{bottom:127.440000px;}
.y71_c01127{bottom:128.880000px;}
.y6f_c01127{bottom:177.120000px;}
.y70_c01127{bottom:178.560000px;}
.y6c_c01127{bottom:179.280000px;}
.y6e_c01127{bottom:180.000000px;}
.y6d_c01127{bottom:180.720000px;}
.y6b_c01127{bottom:182.880000px;}
.y6a_c01127{bottom:218.880000px;}
.y67_c01127{bottom:220.320000px;}
.y65_c01127{bottom:221.040000px;}
.y69_c01127{bottom:221.760000px;}
.y68_c01127{bottom:222.480000px;}
.y66_c01127{bottom:223.200000px;}
.y64_c01127{bottom:224.640000px;}
.y63_c01127{bottom:226.800000px;}
.y61_c01127{bottom:261.360000px;}
.y5f_c01127{bottom:263.520000px;}
.y5e_c01127{bottom:264.240000px;}
.y62_c01127{bottom:264.960000px;}
.y60_c01127{bottom:265.680000px;}
.y5d_c01127{bottom:267.120000px;}
.y5c_c01127{bottom:316.080000px;}
.y59_c01127{bottom:316.800000px;}
.y5a_c01127{bottom:318.240000px;}
.y5b_c01127{bottom:318.960000px;}
.y58_c01127{bottom:321.120000px;}
.y55_c01127{bottom:359.280000px;}
.y54_c01127{bottom:360.720000px;}
.y57_c01127{bottom:361.440000px;}
.y56_c01127{bottom:362.160000px;}
.y50_c01127{bottom:401.040000px;}
.y4f_c01127{bottom:401.760000px;}
.y51_c01127{bottom:402.480000px;}
.y52_c01127{bottom:403.920000px;}
.y53_c01127{bottom:404.640000px;}
.y4d_c01127{bottom:444.240000px;}
.y4b_c01127{bottom:444.960000px;}
.y4e_c01127{bottom:446.400000px;}
.y4c_c01127{bottom:447.120000px;}
.y4a_c01127{bottom:447.840000px;}
.y48_c01127{bottom:486.720000px;}
.y47_c01127{bottom:489.600000px;}
.y49_c01127{bottom:490.320000px;}
.y44_c01127{bottom:528.480000px;}
.y42_c01127{bottom:529.200000px;}
.y45_c01127{bottom:529.920000px;}
.y43_c01127{bottom:531.360000px;}
.y41_c01127{bottom:532.080000px;}
.y46_c01127{bottom:532.800000px;}
.y3d_c01127{bottom:571.680000px;}
.y40_c01127{bottom:573.120000px;}
.y3c_c01127{bottom:573.840000px;}
.y3e_c01127{bottom:574.560000px;}
.y3f_c01127{bottom:575.280000px;}
.y36_c01127{bottom:613.440000px;}
.y38_c01127{bottom:614.160000px;}
.y3a_c01127{bottom:614.880000px;}
.y37_c01127{bottom:616.320000px;}
.y39_c01127{bottom:617.760000px;}
.y3b_c01127{bottom:619.200000px;}
.y30_c01127{bottom:655.920000px;}
.y33_c01127{bottom:657.360000px;}
.y2f_c01127{bottom:658.800000px;}
.y31_c01127{bottom:659.520000px;}
.y32_c01127{bottom:660.240000px;}
.y34_c01127{bottom:660.960000px;}
.y35_c01127{bottom:661.680000px;}
.y2e_c01127{bottom:701.280000px;}
.y2b_c01127{bottom:702.000000px;}
.y2c_c01127{bottom:702.720000px;}
.y2d_c01127{bottom:703.440000px;}
.y24_c01127{bottom:740.880000px;}
.y26_c01127{bottom:741.600000px;}
.y23_c01127{bottom:743.760000px;}
.y25_c01127{bottom:744.480000px;}
.y27_c01127{bottom:745.920000px;}
.y28_c01127{bottom:746.640000px;}
.y2a_c01127{bottom:747.360000px;}
.y29_c01127{bottom:749.520000px;}
.y20_c01127{bottom:786.960000px;}
.y21_c01127{bottom:788.400000px;}
.y22_c01127{bottom:789.120000px;}
.y1b_c01127{bottom:827.280000px;}
.y1d_c01127{bottom:828.720000px;}
.y1c_c01127{bottom:830.160000px;}
.y1e_c01127{bottom:832.320000px;}
.y1f_c01127{bottom:833.040000px;}
.y16_c01127{bottom:851.040000px;}
.y17_c01127{bottom:852.480000px;}
.y18_c01127{bottom:853.200000px;}
.y1a_c01127{bottom:853.920000px;}
.y19_c01127{bottom:856.080000px;}
.y15_c01127{bottom:892.080000px;}
.y12_c01127{bottom:935.280000px;}
.y10_c01127{bottom:936.000000px;}
.y11_c01127{bottom:936.720000px;}
.y13_c01127{bottom:938.880000px;}
.y14_c01127{bottom:941.040000px;}
.ya_c01127{bottom:985.680000px;}
.y9_c01127{bottom:986.400000px;}
.yd_c01127{bottom:987.840000px;}
.yb_c01127{bottom:988.560000px;}
.yc_c01127{bottom:989.280000px;}
.ye_c01127{bottom:990.720000px;}
.yf_c01127{bottom:992.160000px;}
.y3_c01127{bottom:1027.440000px;}
.y2_c01127{bottom:1028.160000px;}
.y5_c01127{bottom:1029.600000px;}
.y4_c01127{bottom:1031.040000px;}
.y8_c01127{bottom:1032.480000px;}
.y6_c01127{bottom:1033.200000px;}
.y7_c01127{bottom:1033.920000px;}
.y1_c01127{bottom:1089.360000px;}
.hc_c01127{height:18.142031px;}
.h9_c01127{height:31.100625px;}
.he_c01127{height:36.284062px;}
.ha_c01127{height:38.875781px;}
.h7_c01127{height:41.467500px;}
.h3_c01127{height:44.059219px;}
.h6_c01127{height:46.650937px;}
.hb_c01127{height:47.227500px;}
.h5_c01127{height:49.242656px;}
.hd_c01127{height:51.834375px;}
.h4_c01127{height:54.426094px;}
.h8_c01127{height:57.017812px;}
.h11_c01127{height:59.609531px;}
.h12_c01127{height:62.201250px;}
.h2_c01127{height:64.792969px;}
.hf_c01127{height:90.710156px;}
.h10_c01127{height:93.301875px;}
.h0_c01127{height:1141.920000px;}
.h1_c01127{height:1142.250000px;}
.w0_c01127{width:781.920000px;}
.w1_c01127{width:782.250000px;}
.x0_c01127{left:0.000000px;}
.x2_c01127{left:69.120000px;}
.x1a_c01127{left:70.560000px;}
.x42_c01127{left:72.000000px;}
.x66_c01127{left:73.440000px;}
.x71_c01127{left:74.880000px;}
.x3_c01127{left:101.520000px;}
.x3d_c01127{left:102.960000px;}
.x61_c01127{left:105.120000px;}
.xb_c01127{left:111.600000px;}
.x2c_c01127{left:113.040000px;}
.x59_c01127{left:115.200000px;}
.x3e_c01127{left:124.560000px;}
.x1f_c01127{left:133.920000px;}
.x62_c01127{left:136.080000px;}
.x72_c01127{left:137.520000px;}
.xc_c01127{left:144.720000px;}
.x24_c01127{left:146.160000px;}
.x3f_c01127{left:156.240000px;}
.x14_c01127{left:174.960000px;}
.x25_c01127{left:176.400000px;}
.x28_c01127{left:177.840000px;}
.x5c_c01127{left:180.000000px;}
.xd_c01127{left:185.760000px;}
.x2d_c01127{left:187.920000px;}
.x67_c01127{left:190.800000px;}
.x20_c01127{left:198.720000px;}
.x5a_c01127{left:200.880000px;}
.x1b_c01127{left:208.080000px;}
.x5d_c01127{left:210.960000px;}
.x54_c01127{left:213.120000px;}
.x4_c01127{left:218.160000px;}
.x43_c01127{left:219.600000px;}
.x36_c01127{left:221.040000px;}
.xe_c01127{left:230.400000px;}
.x47_c01127{left:231.840000px;}
.x6d_c01127{left:244.080000px;}
.x40_c01127{left:252.720000px;}
.xf_c01127{left:261.360000px;}
.x21_c01127{left:262.800000px;}
.x48_c01127{left:264.960000px;}
.x29_c01127{left:273.600000px;}
.x68_c01127{left:275.760000px;}
.x5_c01127{left:292.320000px;}
.x6b_c01127{left:297.360000px;}
.x26_c01127{left:305.280000px;}
.x4e_c01127{left:306.720000px;}
.x5e_c01127{left:308.160000px;}
.x15_c01127{left:315.360000px;}
.x32_c01127{left:316.800000px;}
.x73_c01127{left:318.960000px;}
.x23_c01127{left:326.880000px;}
.x10_c01127{left:336.960000px;}
.x27_c01127{left:338.400000px;}
.x2a_c01127{left:347.760000px;}
.x22_c01127{left:349.200000px;}
.x4f_c01127{left:350.640000px;}
.x55_c01127{left:360.720000px;}
.x49_c01127{left:371.520000px;}
.x50_c01127{left:382.320000px;}
.x6_c01127{left:390.960000px;}
.x2e_c01127{left:392.400000px;}
.x74_c01127{left:395.280000px;}
.x16_c01127{left:401.760000px;}
.x37_c01127{left:403.920000px;}
.x1c_c01127{left:414.000000px;}
.x6c_c01127{left:415.440000px;}
.x7_c01127{left:422.640000px;}
.x44_c01127{left:424.800000px;}
.x38_c01127{left:435.600000px;}
.x4a_c01127{left:437.040000px;}
.x1d_c01127{left:444.960000px;}
.x45_c01127{left:446.400000px;}
.x63_c01127{left:447.840000px;}
.x8_c01127{left:455.040000px;}
.x33_c01127{left:457.200000px;}
.x6e_c01127{left:460.080000px;}
.x4b_c01127{left:466.560000px;}
.x56_c01127{left:468.000000px;}
.x5f_c01127{left:469.440000px;}
.x1e_c01127{left:478.080000px;}
.x5b_c01127{left:479.520000px;}
.x11_c01127{left:488.880000px;}
.x51_c01127{left:490.320000px;}
.x17_c01127{left:498.960000px;}
.x39_c01127{left:501.120000px;}
.x4c_c01127{left:511.920000px;}
.x12_c01127{left:520.560000px;}
.x57_c01127{left:522.720000px;}
.x3a_c01127{left:533.520000px;}
.x69_c01127{left:534.960000px;}
.x18_c01127{left:543.600000px;}
.x4d_c01127{left:545.040000px;}
.x13_c01127{left:553.680000px;}
.x58_c01127{left:555.120000px;}
.x60_c01127{left:556.560000px;}
.x3b_c01127{left:566.640000px;}
.x6a_c01127{left:568.080000px;}
.x2b_c01127{left:575.280000px;}
.x64_c01127{left:577.440000px;}
.x9_c01127{left:585.360000px;}
.x75_c01127{left:589.680000px;}
.x34_c01127{left:597.600000px;}
.x52_c01127{left:599.040000px;}
.x2f_c01127{left:609.120000px;}
.x6f_c01127{left:612.000000px;}
.x65_c01127{left:622.080000px;}
.xa_c01127{left:629.280000px;}
.x3c_c01127{left:630.720000px;}
.x53_c01127{left:632.160000px;}
.x30_c01127{left:641.520000px;}
.x35_c01127{left:642.960000px;}
.x46_c01127{left:653.040000px;}
.x19_c01127{left:662.400000px;}
.x70_c01127{left:665.280000px;}
.x31_c01127{left:675.360000px;}
.x1_c01127{left:678.240000px;}
.x41_c01127{left:686.160000px;}
@media print{
.v0_c01127{vertical-align:0.000000pt;}
.v1_c01127{vertical-align:5.120000pt;}
.ls2_c01127{letter-spacing:0.000000pt;}
.ls0_c01127{letter-spacing:136.123307pt;}
.ls1_c01127{letter-spacing:150.555307pt;}
.ws2_c01127{word-spacing:-6.628053pt;}
.ws3_c01127{word-spacing:-4.775040pt;}
.ws4_c01127{word-spacing:0.000000pt;}
.ws0_c01127{word-spacing:1.834880pt;}
.ws1_c01127{word-spacing:4.386133pt;}
.fs9_c01127{font-size:17.920000pt;}
.fs7_c01127{font-size:30.720000pt;}
.fsb_c01127{font-size:35.840000pt;}
.fs8_c01127{font-size:38.400000pt;}
.fs4_c01127{font-size:40.960000pt;}
.fs1_c01127{font-size:43.520000pt;}
.fs5_c01127{font-size:46.080000pt;}
.fs3_c01127{font-size:48.640000pt;}
.fsa_c01127{font-size:51.200000pt;}
.fs2_c01127{font-size:53.760000pt;}
.fs6_c01127{font-size:56.320000pt;}
.fse_c01127{font-size:58.880000pt;}
.fsf_c01127{font-size:61.440000pt;}
.fs0_c01127{font-size:64.000000pt;}
.fsc_c01127{font-size:89.600000pt;}
.fsd_c01127{font-size:92.160000pt;}
.y0_c01127{bottom:0.000000pt;}
.y80_c01127{bottom:33.920000pt;}
.y81_c01127{bottom:35.200000pt;}
.y7f_c01127{bottom:36.480000pt;}
.y7e_c01127{bottom:37.760000pt;}
.y7d_c01127{bottom:38.400000pt;}
.y7c_c01127{bottom:39.040000pt;}
.y79_c01127{bottom:71.040000pt;}
.y78_c01127{bottom:72.320000pt;}
.y7b_c01127{bottom:73.600000pt;}
.y7a_c01127{bottom:74.240000pt;}
.y76_c01127{bottom:75.520000pt;}
.y77_c01127{bottom:76.160000pt;}
.y75_c01127{bottom:77.440000pt;}
.y74_c01127{bottom:111.360000pt;}
.y73_c01127{bottom:112.640000pt;}
.y72_c01127{bottom:113.280000pt;}
.y71_c01127{bottom:114.560000pt;}
.y6f_c01127{bottom:157.440000pt;}
.y70_c01127{bottom:158.720000pt;}
.y6c_c01127{bottom:159.360000pt;}
.y6e_c01127{bottom:160.000000pt;}
.y6d_c01127{bottom:160.640000pt;}
.y6b_c01127{bottom:162.560000pt;}
.y6a_c01127{bottom:194.560000pt;}
.y67_c01127{bottom:195.840000pt;}
.y65_c01127{bottom:196.480000pt;}
.y69_c01127{bottom:197.120000pt;}
.y68_c01127{bottom:197.760000pt;}
.y66_c01127{bottom:198.400000pt;}
.y64_c01127{bottom:199.680000pt;}
.y63_c01127{bottom:201.600000pt;}
.y61_c01127{bottom:232.320000pt;}
.y5f_c01127{bottom:234.240000pt;}
.y5e_c01127{bottom:234.880000pt;}
.y62_c01127{bottom:235.520000pt;}
.y60_c01127{bottom:236.160000pt;}
.y5d_c01127{bottom:237.440000pt;}
.y5c_c01127{bottom:280.960000pt;}
.y59_c01127{bottom:281.600000pt;}
.y5a_c01127{bottom:282.880000pt;}
.y5b_c01127{bottom:283.520000pt;}
.y58_c01127{bottom:285.440000pt;}
.y55_c01127{bottom:319.360000pt;}
.y54_c01127{bottom:320.640000pt;}
.y57_c01127{bottom:321.280000pt;}
.y56_c01127{bottom:321.920000pt;}
.y50_c01127{bottom:356.480000pt;}
.y4f_c01127{bottom:357.120000pt;}
.y51_c01127{bottom:357.760000pt;}
.y52_c01127{bottom:359.040000pt;}
.y53_c01127{bottom:359.680000pt;}
.y4d_c01127{bottom:394.880000pt;}
.y4b_c01127{bottom:395.520000pt;}
.y4e_c01127{bottom:396.800000pt;}
.y4c_c01127{bottom:397.440000pt;}
.y4a_c01127{bottom:398.080000pt;}
.y48_c01127{bottom:432.640000pt;}
.y47_c01127{bottom:435.200000pt;}
.y49_c01127{bottom:435.840000pt;}
.y44_c01127{bottom:469.760000pt;}
.y42_c01127{bottom:470.400000pt;}
.y45_c01127{bottom:471.040000pt;}
.y43_c01127{bottom:472.320000pt;}
.y41_c01127{bottom:472.960000pt;}
.y46_c01127{bottom:473.600000pt;}
.y3d_c01127{bottom:508.160000pt;}
.y40_c01127{bottom:509.440000pt;}
.y3c_c01127{bottom:510.080000pt;}
.y3e_c01127{bottom:510.720000pt;}
.y3f_c01127{bottom:511.360000pt;}
.y36_c01127{bottom:545.280000pt;}
.y38_c01127{bottom:545.920000pt;}
.y3a_c01127{bottom:546.560000pt;}
.y37_c01127{bottom:547.840000pt;}
.y39_c01127{bottom:549.120000pt;}
.y3b_c01127{bottom:550.400000pt;}
.y30_c01127{bottom:583.040000pt;}
.y33_c01127{bottom:584.320000pt;}
.y2f_c01127{bottom:585.600000pt;}
.y31_c01127{bottom:586.240000pt;}
.y32_c01127{bottom:586.880000pt;}
.y34_c01127{bottom:587.520000pt;}
.y35_c01127{bottom:588.160000pt;}
.y2e_c01127{bottom:623.360000pt;}
.y2b_c01127{bottom:624.000000pt;}
.y2c_c01127{bottom:624.640000pt;}
.y2d_c01127{bottom:625.280000pt;}
.y24_c01127{bottom:658.560000pt;}
.y26_c01127{bottom:659.200000pt;}
.y23_c01127{bottom:661.120000pt;}
.y25_c01127{bottom:661.760000pt;}
.y27_c01127{bottom:663.040000pt;}
.y28_c01127{bottom:663.680000pt;}
.y2a_c01127{bottom:664.320000pt;}
.y29_c01127{bottom:666.240000pt;}
.y20_c01127{bottom:699.520000pt;}
.y21_c01127{bottom:700.800000pt;}
.y22_c01127{bottom:701.440000pt;}
.y1b_c01127{bottom:735.360000pt;}
.y1d_c01127{bottom:736.640000pt;}
.y1c_c01127{bottom:737.920000pt;}
.y1e_c01127{bottom:739.840000pt;}
.y1f_c01127{bottom:740.480000pt;}
.y16_c01127{bottom:756.480000pt;}
.y17_c01127{bottom:757.760000pt;}
.y18_c01127{bottom:758.400000pt;}
.y1a_c01127{bottom:759.040000pt;}
.y19_c01127{bottom:760.960000pt;}
.y15_c01127{bottom:792.960000pt;}
.y12_c01127{bottom:831.360000pt;}
.y10_c01127{bottom:832.000000pt;}
.y11_c01127{bottom:832.640000pt;}
.y13_c01127{bottom:834.560000pt;}
.y14_c01127{bottom:836.480000pt;}
.ya_c01127{bottom:876.160000pt;}
.y9_c01127{bottom:876.800000pt;}
.yd_c01127{bottom:878.080000pt;}
.yb_c01127{bottom:878.720000pt;}
.yc_c01127{bottom:879.360000pt;}
.ye_c01127{bottom:880.640000pt;}
.yf_c01127{bottom:881.920000pt;}
.y3_c01127{bottom:913.280000pt;}
.y2_c01127{bottom:913.920000pt;}
.y5_c01127{bottom:915.200000pt;}
.y4_c01127{bottom:916.480000pt;}
.y8_c01127{bottom:917.760000pt;}
.y6_c01127{bottom:918.400000pt;}
.y7_c01127{bottom:919.040000pt;}
.y1_c01127{bottom:968.320000pt;}
.hc_c01127{height:16.126250pt;}
.h9_c01127{height:27.645000pt;}
.he_c01127{height:32.252500pt;}
.ha_c01127{height:34.556250pt;}
.h7_c01127{height:36.860000pt;}
.h3_c01127{height:39.163750pt;}
.h6_c01127{height:41.467500pt;}
.hb_c01127{height:41.980000pt;}
.h5_c01127{height:43.771250pt;}
.hd_c01127{height:46.075000pt;}
.h4_c01127{height:48.378750pt;}
.h8_c01127{height:50.682500pt;}
.h11_c01127{height:52.986250pt;}
.h12_c01127{height:55.290000pt;}
.h2_c01127{height:57.593750pt;}
.hf_c01127{height:80.631250pt;}
.h10_c01127{height:82.935000pt;}
.h0_c01127{height:1015.040000pt;}
.h1_c01127{height:1015.333333pt;}
.w0_c01127{width:695.040000pt;}
.w1_c01127{width:695.333333pt;}
.x0_c01127{left:0.000000pt;}
.x2_c01127{left:61.440000pt;}
.x1a_c01127{left:62.720000pt;}
.x42_c01127{left:64.000000pt;}
.x66_c01127{left:65.280000pt;}
.x71_c01127{left:66.560000pt;}
.x3_c01127{left:90.240000pt;}
.x3d_c01127{left:91.520000pt;}
.x61_c01127{left:93.440000pt;}
.xb_c01127{left:99.200000pt;}
.x2c_c01127{left:100.480000pt;}
.x59_c01127{left:102.400000pt;}
.x3e_c01127{left:110.720000pt;}
.x1f_c01127{left:119.040000pt;}
.x62_c01127{left:120.960000pt;}
.x72_c01127{left:122.240000pt;}
.xc_c01127{left:128.640000pt;}
.x24_c01127{left:129.920000pt;}
.x3f_c01127{left:138.880000pt;}
.x14_c01127{left:155.520000pt;}
.x25_c01127{left:156.800000pt;}
.x28_c01127{left:158.080000pt;}
.x5c_c01127{left:160.000000pt;}
.xd_c01127{left:165.120000pt;}
.x2d_c01127{left:167.040000pt;}
.x67_c01127{left:169.600000pt;}
.x20_c01127{left:176.640000pt;}
.x5a_c01127{left:178.560000pt;}
.x1b_c01127{left:184.960000pt;}
.x5d_c01127{left:187.520000pt;}
.x54_c01127{left:189.440000pt;}
.x4_c01127{left:193.920000pt;}
.x43_c01127{left:195.200000pt;}
.x36_c01127{left:196.480000pt;}
.xe_c01127{left:204.800000pt;}
.x47_c01127{left:206.080000pt;}
.x6d_c01127{left:216.960000pt;}
.x40_c01127{left:224.640000pt;}
.xf_c01127{left:232.320000pt;}
.x21_c01127{left:233.600000pt;}
.x48_c01127{left:235.520000pt;}
.x29_c01127{left:243.200000pt;}
.x68_c01127{left:245.120000pt;}
.x5_c01127{left:259.840000pt;}
.x6b_c01127{left:264.320000pt;}
.x26_c01127{left:271.360000pt;}
.x4e_c01127{left:272.640000pt;}
.x5e_c01127{left:273.920000pt;}
.x15_c01127{left:280.320000pt;}
.x32_c01127{left:281.600000pt;}
.x73_c01127{left:283.520000pt;}
.x23_c01127{left:290.560000pt;}
.x10_c01127{left:299.520000pt;}
.x27_c01127{left:300.800000pt;}
.x2a_c01127{left:309.120000pt;}
.x22_c01127{left:310.400000pt;}
.x4f_c01127{left:311.680000pt;}
.x55_c01127{left:320.640000pt;}
.x49_c01127{left:330.240000pt;}
.x50_c01127{left:339.840000pt;}
.x6_c01127{left:347.520000pt;}
.x2e_c01127{left:348.800000pt;}
.x74_c01127{left:351.360000pt;}
.x16_c01127{left:357.120000pt;}
.x37_c01127{left:359.040000pt;}
.x1c_c01127{left:368.000000pt;}
.x6c_c01127{left:369.280000pt;}
.x7_c01127{left:375.680000pt;}
.x44_c01127{left:377.600000pt;}
.x38_c01127{left:387.200000pt;}
.x4a_c01127{left:388.480000pt;}
.x1d_c01127{left:395.520000pt;}
.x45_c01127{left:396.800000pt;}
.x63_c01127{left:398.080000pt;}
.x8_c01127{left:404.480000pt;}
.x33_c01127{left:406.400000pt;}
.x6e_c01127{left:408.960000pt;}
.x4b_c01127{left:414.720000pt;}
.x56_c01127{left:416.000000pt;}
.x5f_c01127{left:417.280000pt;}
.x1e_c01127{left:424.960000pt;}
.x5b_c01127{left:426.240000pt;}
.x11_c01127{left:434.560000pt;}
.x51_c01127{left:435.840000pt;}
.x17_c01127{left:443.520000pt;}
.x39_c01127{left:445.440000pt;}
.x4c_c01127{left:455.040000pt;}
.x12_c01127{left:462.720000pt;}
.x57_c01127{left:464.640000pt;}
.x3a_c01127{left:474.240000pt;}
.x69_c01127{left:475.520000pt;}
.x18_c01127{left:483.200000pt;}
.x4d_c01127{left:484.480000pt;}
.x13_c01127{left:492.160000pt;}
.x58_c01127{left:493.440000pt;}
.x60_c01127{left:494.720000pt;}
.x3b_c01127{left:503.680000pt;}
.x6a_c01127{left:504.960000pt;}
.x2b_c01127{left:511.360000pt;}
.x64_c01127{left:513.280000pt;}
.x9_c01127{left:520.320000pt;}
.x75_c01127{left:524.160000pt;}
.x34_c01127{left:531.200000pt;}
.x52_c01127{left:532.480000pt;}
.x2f_c01127{left:541.440000pt;}
.x6f_c01127{left:544.000000pt;}
.x65_c01127{left:552.960000pt;}
.xa_c01127{left:559.360000pt;}
.x3c_c01127{left:560.640000pt;}
.x53_c01127{left:561.920000pt;}
.x30_c01127{left:570.240000pt;}
.x35_c01127{left:571.520000pt;}
.x46_c01127{left:580.480000pt;}
.x19_c01127{left:588.800000pt;}
.x70_c01127{left:591.360000pt;}
.x31_c01127{left:600.320000pt;}
.x1_c01127{left:602.880000pt;}
.x41_c01127{left:609.920000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_84959bd41d15c787d339c60c.woff2')format("woff");}.ff1_c01128{font-family:ff1_c01128;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m30_c01128{transform:matrix(0.235100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235100,0.000000,0.000000,0.250000,0,0);}
.m19_c01128{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_c01128{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1_c01128{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m2_c01128{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01128{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m0_c01128{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mb_c01128{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01128{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m51_c01128{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01128{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m5e_c01128{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m5a_c01128{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m57_c01128{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mf_c01128{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m9_c01128{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01128{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);}
.m50_c01128{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m13_c01128{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m5_c01128{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.me_c01128{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01128{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_c01128{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01128{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m5d_c01128{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m17_c01128{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);}
.m3a_c01128{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01128{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);}
.m37_c01128{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.mc_c01128{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_c01128{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m44_c01128{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.ma_c01128{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m45_c01128{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);}
.m31_c01128{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);}
.m46_c01128{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);}
.m1d_c01128{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m40_c01128{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);}
.m10_c01128{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m11_c01128{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);}
.m52_c01128{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01128{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);}
.m18_c01128{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m33_c01128{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01128{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01128{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);}
.m21_c01128{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m48_c01128{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m26_c01128{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);}
.m53_c01128{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m14_c01128{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);}
.m43_c01128{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m34_c01128{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m38_c01128{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.md_c01128{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m22_c01128{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);}
.m27_c01128{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m12_c01128{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01128{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01128{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);}
.m28_c01128{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m39_c01128{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m58_c01128{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m25_c01128{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);}
.m54_c01128{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m8_c01128{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m5f_c01128{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m24_c01128{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);}
.m23_c01128{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m55_c01128{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m56_c01128{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m3_c01128{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_c01128{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m15_c01128{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01128{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m16_c01128{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01128{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);}
.m60_c01128{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);}
.m41_c01128{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m7_c01128{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);}
.m5c_c01128{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m47_c01128{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m59_c01128{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m4_c01128{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01128{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m42_c01128{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01128{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);}
.m36_c01128{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);}
.m1b_c01128{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01128{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);}
.m2b_c01128{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m35_c01128{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m32_c01128{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m5b_c01128{transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);}
.m29_c01128{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01128{transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);}
.m49_c01128{transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);}
.v0_c01128{vertical-align:0.000000px;}
.v1_c01128{vertical-align:2.880000px;}
.ls0_c01128{letter-spacing:0.000000px;}
.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;}
}
.ws1_c01128{word-spacing:0.000000px;}
.ws0_c01128{word-spacing:0.309600px;}
.fc0_c01128{color:transparent;}
.fse_c01128{font-size:31.680000px;}
.fs4_c01128{font-size:34.560000px;}
.fsb_c01128{font-size:37.440000px;}
.fs3_c01128{font-size:43.200000px;}
.fsa_c01128{font-size:46.080000px;}
.fs9_c01128{font-size:48.960000px;}
.fs7_c01128{font-size:51.840000px;}
.fsd_c01128{font-size:54.720000px;}
.fs5_c01128{font-size:57.600000px;}
.fsc_c01128{font-size:60.480000px;}
.fs8_c01128{font-size:63.360000px;}
.fs1_c01128{font-size:66.240000px;}
.fs6_c01128{font-size:69.120000px;}
.fs0_c01128{font-size:72.000000px;}
.fs2_c01128{font-size:74.880000px;}
.y0_c01128{bottom:0.000000px;}
.y9c_c01128{bottom:38.160000px;}
.y98_c01128{bottom:38.880000px;}
.y9b_c01128{bottom:39.600000px;}
.y9a_c01128{bottom:40.320000px;}
.y99_c01128{bottom:41.040000px;}
.y95_c01128{bottom:41.760000px;}
.y97_c01128{bottom:42.480000px;}
.y96_c01128{bottom:43.200000px;}
.y94_c01128{bottom:45.360000px;}
.y93_c01128{bottom:48.240000px;}
.y92_c01128{bottom:79.200000px;}
.y90_c01128{bottom:82.080000px;}
.y8f_c01128{bottom:82.800000px;}
.y91_c01128{bottom:83.520000px;}
.y8e_c01128{bottom:84.240000px;}
.y8b_c01128{bottom:86.400000px;}
.y8d_c01128{bottom:87.120000px;}
.y8c_c01128{bottom:88.560000px;}
.y8a_c01128{bottom:90.000000px;}
.y87_c01128{bottom:123.840000px;}
.y88_c01128{bottom:124.560000px;}
.y89_c01128{bottom:126.000000px;}
.y86_c01128{bottom:126.720000px;}
.y85_c01128{bottom:128.880000px;}
.y84_c01128{bottom:131.040000px;}
.y83_c01128{bottom:131.760000px;}
.y81_c01128{bottom:166.320000px;}
.y82_c01128{bottom:167.040000px;}
.y7f_c01128{bottom:169.200000px;}
.y80_c01128{bottom:169.920000px;}
.y7e_c01128{bottom:172.080000px;}
.y7d_c01128{bottom:174.960000px;}
.y7c_c01128{bottom:205.920000px;}
.y79_c01128{bottom:208.800000px;}
.y7b_c01128{bottom:210.240000px;}
.y7a_c01128{bottom:210.960000px;}
.y78_c01128{bottom:211.680000px;}
.y77_c01128{bottom:212.400000px;}
.y76_c01128{bottom:213.120000px;}
.y75_c01128{bottom:216.720000px;}
.y74_c01128{bottom:250.560000px;}
.y72_c01128{bottom:254.880000px;}
.y73_c01128{bottom:256.320000px;}
.y71_c01128{bottom:258.480000px;}
.y6f_c01128{bottom:293.760000px;}
.y6e_c01128{bottom:294.480000px;}
.y6c_c01128{bottom:295.200000px;}
.y70_c01128{bottom:295.920000px;}
.y6d_c01128{bottom:297.360000px;}
.y6b_c01128{bottom:298.800000px;}
.y69_c01128{bottom:337.680000px;}
.y68_c01128{bottom:338.400000px;}
.y6a_c01128{bottom:339.840000px;}
.y67_c01128{bottom:341.280000px;}
.y66_c01128{bottom:342.720000px;}
.y65_c01128{bottom:379.440000px;}
.y64_c01128{bottom:380.160000px;}
.y61_c01128{bottom:381.600000px;}
.y5f_c01128{bottom:382.320000px;}
.y63_c01128{bottom:383.040000px;}
.y62_c01128{bottom:383.760000px;}
.y60_c01128{bottom:384.480000px;}
.y5e_c01128{bottom:385.200000px;}
.y5d_c01128{bottom:421.200000px;}
.y5c_c01128{bottom:423.360000px;}
.y5a_c01128{bottom:424.080000px;}
.y58_c01128{bottom:425.520000px;}
.y59_c01128{bottom:426.240000px;}
.y5b_c01128{bottom:426.960000px;}
.y57_c01128{bottom:427.680000px;}
.y55_c01128{bottom:465.840000px;}
.y52_c01128{bottom:466.560000px;}
.y51_c01128{bottom:467.280000px;}
.y54_c01128{bottom:468.720000px;}
.y56_c01128{bottom:469.440000px;}
.y53_c01128{bottom:470.160000px;}
.y50_c01128{bottom:508.320000px;}
.y4e_c01128{bottom:509.760000px;}
.y4f_c01128{bottom:511.200000px;}
.y4c_c01128{bottom:511.920000px;}
.y4d_c01128{bottom:512.640000px;}
.y4b_c01128{bottom:551.520000px;}
.y4a_c01128{bottom:552.240000px;}
.y48_c01128{bottom:554.400000px;}
.y49_c01128{bottom:555.120000px;}
.y47_c01128{bottom:555.840000px;}
.y46_c01128{bottom:594.000000px;}
.y43_c01128{bottom:594.720000px;}
.y44_c01128{bottom:596.160000px;}
.y45_c01128{bottom:596.880000px;}
.y42_c01128{bottom:597.600000px;}
.y40_c01128{bottom:647.280000px;}
.y41_c01128{bottom:649.440000px;}
.y3c_c01128{bottom:689.040000px;}
.y3f_c01128{bottom:689.760000px;}
.y3e_c01128{bottom:691.920000px;}
.y3b_c01128{bottom:692.640000px;}
.y3d_c01128{bottom:693.360000px;}
.y35_c01128{bottom:731.520000px;}
.y36_c01128{bottom:732.240000px;}
.y3a_c01128{bottom:732.960000px;}
.y34_c01128{bottom:734.400000px;}
.y37_c01128{bottom:735.120000px;}
.y38_c01128{bottom:735.840000px;}
.y39_c01128{bottom:736.560000px;}
.y2f_c01128{bottom:774.720000px;}
.y33_c01128{bottom:775.440000px;}
.y32_c01128{bottom:776.160000px;}
.y2e_c01128{bottom:776.880000px;}
.y2d_c01128{bottom:777.600000px;}
.y30_c01128{bottom:778.320000px;}
.y31_c01128{bottom:779.040000px;}
.y27_c01128{bottom:816.480000px;}
.y28_c01128{bottom:817.200000px;}
.y29_c01128{bottom:817.920000px;}
.y2b_c01128{bottom:818.640000px;}
.y26_c01128{bottom:819.360000px;}
.y2a_c01128{bottom:820.800000px;}
.y2c_c01128{bottom:822.240000px;}
.y21_c01128{bottom:859.680000px;}
.y20_c01128{bottom:861.840000px;}
.y22_c01128{bottom:862.560000px;}
.y23_c01128{bottom:863.280000px;}
.y24_c01128{bottom:864.000000px;}
.y25_c01128{bottom:864.720000px;}
.y18_c01128{bottom:901.440000px;}
.y1e_c01128{bottom:902.880000px;}
.y19_c01128{bottom:903.600000px;}
.y1b_c01128{bottom:904.320000px;}
.y1a_c01128{bottom:905.040000px;}
.y1c_c01128{bottom:905.760000px;}
.y1d_c01128{bottom:906.480000px;}
.y1f_c01128{bottom:907.200000px;}
.y11_c01128{bottom:943.920000px;}
.y10_c01128{bottom:946.080000px;}
.y16_c01128{bottom:946.800000px;}
.y12_c01128{bottom:947.520000px;}
.y13_c01128{bottom:948.240000px;}
.y14_c01128{bottom:948.960000px;}
.y15_c01128{bottom:949.680000px;}
.y17_c01128{bottom:951.120000px;}
.ya_c01128{bottom:986.400000px;}
.yc_c01128{bottom:989.280000px;}
.ye_c01128{bottom:990.000000px;}
.yb_c01128{bottom:990.720000px;}
.yd_c01128{bottom:991.440000px;}
.yf_c01128{bottom:993.600000px;}
.y2_c01128{bottom:1029.600000px;}
.y3_c01128{bottom:1031.040000px;}
.y6_c01128{bottom:1032.480000px;}
.y8_c01128{bottom:1033.200000px;}
.y4_c01128{bottom:1033.920000px;}
.y5_c01128{bottom:1034.640000px;}
.y7_c01128{bottom:1035.360000px;}
.y9_c01128{bottom:1036.800000px;}
.y1_c01128{bottom:1080.720000px;}
.h11_c01128{height:28.508906px;}
.h6_c01128{height:31.100625px;}
.hd_c01128{height:33.692344px;}
.h5_c01128{height:38.875781px;}
.hc_c01128{height:41.467500px;}
.hb_c01128{height:44.059219px;}
.h9_c01128{height:46.650937px;}
.h10_c01128{height:46.939219px;}
.hf_c01128{height:49.242656px;}
.h7_c01128{height:51.834375px;}
.he_c01128{height:54.426094px;}
.ha_c01128{height:57.017812px;}
.h3_c01128{height:59.609531px;}
.h8_c01128{height:62.201250px;}
.h2_c01128{height:64.792969px;}
.h4_c01128{height:67.384687px;}
.h1_c01128{height:1143.750000px;}
.h0_c01128{height:1144.080000px;}
.w1_c01128{width:784.500000px;}
.w0_c01128{width:784.800000px;}
.x0_c01128{left:0.000000px;}
.x37_c01128{left:64.800000px;}
.x14_c01128{left:69.840000px;}
.x44_c01128{left:71.280000px;}
.x2_c01128{left:72.720000px;}
.x51_c01128{left:92.880000px;}
.xc_c01128{left:101.520000px;}
.x2f_c01128{left:102.960000px;}
.x3_c01128{left:112.320000px;}
.x15_c01128{left:113.760000px;}
.x34_c01128{left:123.120000px;}
.x54_c01128{left:124.560000px;}
.x50_c01128{left:134.640000px;}
.x16_c01128{left:144.720000px;}
.x21_c01128{left:155.520000px;}
.x56_c01128{left:157.680000px;}
.x17_c01128{left:166.320000px;}
.x1d_c01128{left:177.120000px;}
.x29_c01128{left:187.200000px;}
.x18_c01128{left:198.000000px;}
.x3d_c01128{left:208.800000px;}
.x22_c01128{left:218.880000px;}
.x3c_c01128{left:220.320000px;}
.x19_c01128{left:230.400000px;}
.x4_c01128{left:239.760000px;}
.xd_c01128{left:241.920000px;}
.x5_c01128{left:261.360000px;}
.x23_c01128{left:263.520000px;}
.x30_c01128{left:272.880000px;}
.xe_c01128{left:274.320000px;}
.x1a_c01128{left:282.960000px;}
.x45_c01128{left:284.400000px;}
.x57_c01128{left:285.840000px;}
.x6_c01128{left:293.040000px;}
.x3e_c01128{left:305.280000px;}
.x38_c01128{left:316.080000px;}
.x31_c01128{left:325.440000px;}
.x4a_c01128{left:328.320000px;}
.x2a_c01128{left:338.400000px;}
.x24_c01128{left:347.760000px;}
.x1b_c01128{left:349.200000px;}
.x3f_c01128{left:359.280000px;}
.x7_c01128{left:369.360000px;}
.xf_c01128{left:370.800000px;}
.x35_c01128{left:380.880000px;}
.x46_c01128{left:382.320000px;}
.x25_c01128{left:391.680000px;}
.x59_c01128{left:393.840000px;}
.x1e_c01128{left:401.760000px;}
.x58_c01128{left:403.920000px;}
.x2b_c01128{left:414.720000px;}
.x39_c01128{left:423.360000px;}
.x4d_c01128{left:425.520000px;}
.x8_c01128{left:434.160000px;}
.x4b_c01128{left:446.400000px;}
.x1c_c01128{left:456.480000px;}
.x9_c01128{left:466.560000px;}
.x3a_c01128{left:468.720000px;}
.x26_c01128{left:478.800000px;}
.x2c_c01128{left:488.160000px;}
.x47_c01128{left:490.320000px;}
.xa_c01128{left:498.960000px;}
.x10_c01128{left:501.120000px;}
.x42_c01128{left:511.200000px;}
.x5a_c01128{left:512.640000px;}
.x4c_c01128{left:522.720000px;}
.x48_c01128{left:524.880000px;}
.x11_c01128{left:531.360000px;}
.x3b_c01128{left:532.800000px;}
.x43_c01128{left:542.160000px;}
.x4e_c01128{left:543.600000px;}
.x52_c01128{left:545.040000px;}
.x1f_c01128{left:554.400000px;}
.x32_c01128{left:565.200000px;}
.x2d_c01128{left:576.000000px;}
.x20_c01128{left:587.520000px;}
.x33_c01128{left:596.160000px;}
.x40_c01128{left:598.320000px;}
.x36_c01128{left:607.680000px;}
.x4f_c01128{left:609.840000px;}
.x12_c01128{left:619.920000px;}
.x49_c01128{left:630.720000px;}
.x27_c01128{left:641.520000px;}
.xb_c01128{left:650.880000px;}
.x13_c01128{left:653.040000px;}
.x41_c01128{left:663.120000px;}
.x53_c01128{left:664.560000px;}
.x28_c01128{left:673.920000px;}
.x55_c01128{left:675.360000px;}
.x1_c01128{left:676.800000px;}
.x2e_c01128{left:695.520000px;}
@media print{
.v0_c01128{vertical-align:0.000000pt;}
.v1_c01128{vertical-align:2.560000pt;}
.ls0_c01128{letter-spacing:0.000000pt;}
.ws1_c01128{word-spacing:0.000000pt;}
.ws0_c01128{word-spacing:0.275200pt;}
.fse_c01128{font-size:28.160000pt;}
.fs4_c01128{font-size:30.720000pt;}
.fsb_c01128{font-size:33.280000pt;}
.fs3_c01128{font-size:38.400000pt;}
.fsa_c01128{font-size:40.960000pt;}
.fs9_c01128{font-size:43.520000pt;}
.fs7_c01128{font-size:46.080000pt;}
.fsd_c01128{font-size:48.640000pt;}
.fs5_c01128{font-size:51.200000pt;}
.fsc_c01128{font-size:53.760000pt;}
.fs8_c01128{font-size:56.320000pt;}
.fs1_c01128{font-size:58.880000pt;}
.fs6_c01128{font-size:61.440000pt;}
.fs0_c01128{font-size:64.000000pt;}
.fs2_c01128{font-size:66.560000pt;}
.y0_c01128{bottom:0.000000pt;}
.y9c_c01128{bottom:33.920000pt;}
.y98_c01128{bottom:34.560000pt;}
.y9b_c01128{bottom:35.200000pt;}
.y9a_c01128{bottom:35.840000pt;}
.y99_c01128{bottom:36.480000pt;}
.y95_c01128{bottom:37.120000pt;}
.y97_c01128{bottom:37.760000pt;}
.y96_c01128{bottom:38.400000pt;}
.y94_c01128{bottom:40.320000pt;}
.y93_c01128{bottom:42.880000pt;}
.y92_c01128{bottom:70.400000pt;}
.y90_c01128{bottom:72.960000pt;}
.y8f_c01128{bottom:73.600000pt;}
.y91_c01128{bottom:74.240000pt;}
.y8e_c01128{bottom:74.880000pt;}
.y8b_c01128{bottom:76.800000pt;}
.y8d_c01128{bottom:77.440000pt;}
.y8c_c01128{bottom:78.720000pt;}
.y8a_c01128{bottom:80.000000pt;}
.y87_c01128{bottom:110.080000pt;}
.y88_c01128{bottom:110.720000pt;}
.y89_c01128{bottom:112.000000pt;}
.y86_c01128{bottom:112.640000pt;}
.y85_c01128{bottom:114.560000pt;}
.y84_c01128{bottom:116.480000pt;}
.y83_c01128{bottom:117.120000pt;}
.y81_c01128{bottom:147.840000pt;}
.y82_c01128{bottom:148.480000pt;}
.y7f_c01128{bottom:150.400000pt;}
.y80_c01128{bottom:151.040000pt;}
.y7e_c01128{bottom:152.960000pt;}
.y7d_c01128{bottom:155.520000pt;}
.y7c_c01128{bottom:183.040000pt;}
.y79_c01128{bottom:185.600000pt;}
.y7b_c01128{bottom:186.880000pt;}
.y7a_c01128{bottom:187.520000pt;}
.y78_c01128{bottom:188.160000pt;}
.y77_c01128{bottom:188.800000pt;}
.y76_c01128{bottom:189.440000pt;}
.y75_c01128{bottom:192.640000pt;}
.y74_c01128{bottom:222.720000pt;}
.y72_c01128{bottom:226.560000pt;}
.y73_c01128{bottom:227.840000pt;}
.y71_c01128{bottom:229.760000pt;}
.y6f_c01128{bottom:261.120000pt;}
.y6e_c01128{bottom:261.760000pt;}
.y6c_c01128{bottom:262.400000pt;}
.y70_c01128{bottom:263.040000pt;}
.y6d_c01128{bottom:264.320000pt;}
.y6b_c01128{bottom:265.600000pt;}
.y69_c01128{bottom:300.160000pt;}
.y68_c01128{bottom:300.800000pt;}
.y6a_c01128{bottom:302.080000pt;}
.y67_c01128{bottom:303.360000pt;}
.y66_c01128{bottom:304.640000pt;}
.y65_c01128{bottom:337.280000pt;}
.y64_c01128{bottom:337.920000pt;}
.y61_c01128{bottom:339.200000pt;}
.y5f_c01128{bottom:339.840000pt;}
.y63_c01128{bottom:340.480000pt;}
.y62_c01128{bottom:341.120000pt;}
.y60_c01128{bottom:341.760000pt;}
.y5e_c01128{bottom:342.400000pt;}
.y5d_c01128{bottom:374.400000pt;}
.y5c_c01128{bottom:376.320000pt;}
.y5a_c01128{bottom:376.960000pt;}
.y58_c01128{bottom:378.240000pt;}
.y59_c01128{bottom:378.880000pt;}
.y5b_c01128{bottom:379.520000pt;}
.y57_c01128{bottom:380.160000pt;}
.y55_c01128{bottom:414.080000pt;}
.y52_c01128{bottom:414.720000pt;}
.y51_c01128{bottom:415.360000pt;}
.y54_c01128{bottom:416.640000pt;}
.y56_c01128{bottom:417.280000pt;}
.y53_c01128{bottom:417.920000pt;}
.y50_c01128{bottom:451.840000pt;}
.y4e_c01128{bottom:453.120000pt;}
.y4f_c01128{bottom:454.400000pt;}
.y4c_c01128{bottom:455.040000pt;}
.y4d_c01128{bottom:455.680000pt;}
.y4b_c01128{bottom:490.240000pt;}
.y4a_c01128{bottom:490.880000pt;}
.y48_c01128{bottom:492.800000pt;}
.y49_c01128{bottom:493.440000pt;}
.y47_c01128{bottom:494.080000pt;}
.y46_c01128{bottom:528.000000pt;}
.y43_c01128{bottom:528.640000pt;}
.y44_c01128{bottom:529.920000pt;}
.y45_c01128{bottom:530.560000pt;}
.y42_c01128{bottom:531.200000pt;}
.y40_c01128{bottom:575.360000pt;}
.y41_c01128{bottom:577.280000pt;}
.y3c_c01128{bottom:612.480000pt;}
.y3f_c01128{bottom:613.120000pt;}
.y3e_c01128{bottom:615.040000pt;}
.y3b_c01128{bottom:615.680000pt;}
.y3d_c01128{bottom:616.320000pt;}
.y35_c01128{bottom:650.240000pt;}
.y36_c01128{bottom:650.880000pt;}
.y3a_c01128{bottom:651.520000pt;}
.y34_c01128{bottom:652.800000pt;}
.y37_c01128{bottom:653.440000pt;}
.y38_c01128{bottom:654.080000pt;}
.y39_c01128{bottom:654.720000pt;}
.y2f_c01128{bottom:688.640000pt;}
.y33_c01128{bottom:689.280000pt;}
.y32_c01128{bottom:689.920000pt;}
.y2e_c01128{bottom:690.560000pt;}
.y2d_c01128{bottom:691.200000pt;}
.y30_c01128{bottom:691.840000pt;}
.y31_c01128{bottom:692.480000pt;}
.y27_c01128{bottom:725.760000pt;}
.y28_c01128{bottom:726.400000pt;}
.y29_c01128{bottom:727.040000pt;}
.y2b_c01128{bottom:727.680000pt;}
.y26_c01128{bottom:728.320000pt;}
.y2a_c01128{bottom:729.600000pt;}
.y2c_c01128{bottom:730.880000pt;}
.y21_c01128{bottom:764.160000pt;}
.y20_c01128{bottom:766.080000pt;}
.y22_c01128{bottom:766.720000pt;}
.y23_c01128{bottom:767.360000pt;}
.y24_c01128{bottom:768.000000pt;}
.y25_c01128{bottom:768.640000pt;}
.y18_c01128{bottom:801.280000pt;}
.y1e_c01128{bottom:802.560000pt;}
.y19_c01128{bottom:803.200000pt;}
.y1b_c01128{bottom:803.840000pt;}
.y1a_c01128{bottom:804.480000pt;}
.y1c_c01128{bottom:805.120000pt;}
.y1d_c01128{bottom:805.760000pt;}
.y1f_c01128{bottom:806.400000pt;}
.y11_c01128{bottom:839.040000pt;}
.y10_c01128{bottom:840.960000pt;}
.y16_c01128{bottom:841.600000pt;}
.y12_c01128{bottom:842.240000pt;}
.y13_c01128{bottom:842.880000pt;}
.y14_c01128{bottom:843.520000pt;}
.y15_c01128{bottom:844.160000pt;}
.y17_c01128{bottom:845.440000pt;}
.ya_c01128{bottom:876.800000pt;}
.yc_c01128{bottom:879.360000pt;}
.ye_c01128{bottom:880.000000pt;}
.yb_c01128{bottom:880.640000pt;}
.yd_c01128{bottom:881.280000pt;}
.yf_c01128{bottom:883.200000pt;}
.y2_c01128{bottom:915.200000pt;}
.y3_c01128{bottom:916.480000pt;}
.y6_c01128{bottom:917.760000pt;}
.y8_c01128{bottom:918.400000pt;}
.y4_c01128{bottom:919.040000pt;}
.y5_c01128{bottom:919.680000pt;}
.y7_c01128{bottom:920.320000pt;}
.y9_c01128{bottom:921.600000pt;}
.y1_c01128{bottom:960.640000pt;}
.h11_c01128{height:25.341250pt;}
.h6_c01128{height:27.645000pt;}
.hd_c01128{height:29.948750pt;}
.h5_c01128{height:34.556250pt;}
.hc_c01128{height:36.860000pt;}
.hb_c01128{height:39.163750pt;}
.h9_c01128{height:41.467500pt;}
.h10_c01128{height:41.723750pt;}
.hf_c01128{height:43.771250pt;}
.h7_c01128{height:46.075000pt;}
.he_c01128{height:48.378750pt;}
.ha_c01128{height:50.682500pt;}
.h3_c01128{height:52.986250pt;}
.h8_c01128{height:55.290000pt;}
.h2_c01128{height:57.593750pt;}
.h4_c01128{height:59.897500pt;}
.h1_c01128{height:1016.666667pt;}
.h0_c01128{height:1016.960000pt;}
.w1_c01128{width:697.333333pt;}
.w0_c01128{width:697.600000pt;}
.x0_c01128{left:0.000000pt;}
.x37_c01128{left:57.600000pt;}
.x14_c01128{left:62.080000pt;}
.x44_c01128{left:63.360000pt;}
.x2_c01128{left:64.640000pt;}
.x51_c01128{left:82.560000pt;}
.xc_c01128{left:90.240000pt;}
.x2f_c01128{left:91.520000pt;}
.x3_c01128{left:99.840000pt;}
.x15_c01128{left:101.120000pt;}
.x34_c01128{left:109.440000pt;}
.x54_c01128{left:110.720000pt;}
.x50_c01128{left:119.680000pt;}
.x16_c01128{left:128.640000pt;}
.x21_c01128{left:138.240000pt;}
.x56_c01128{left:140.160000pt;}
.x17_c01128{left:147.840000pt;}
.x1d_c01128{left:157.440000pt;}
.x29_c01128{left:166.400000pt;}
.x18_c01128{left:176.000000pt;}
.x3d_c01128{left:185.600000pt;}
.x22_c01128{left:194.560000pt;}
.x3c_c01128{left:195.840000pt;}
.x19_c01128{left:204.800000pt;}
.x4_c01128{left:213.120000pt;}
.xd_c01128{left:215.040000pt;}
.x5_c01128{left:232.320000pt;}
.x23_c01128{left:234.240000pt;}
.x30_c01128{left:242.560000pt;}
.xe_c01128{left:243.840000pt;}
.x1a_c01128{left:251.520000pt;}
.x45_c01128{left:252.800000pt;}
.x57_c01128{left:254.080000pt;}
.x6_c01128{left:260.480000pt;}
.x3e_c01128{left:271.360000pt;}
.x38_c01128{left:280.960000pt;}
.x31_c01128{left:289.280000pt;}
.x4a_c01128{left:291.840000pt;}
.x2a_c01128{left:300.800000pt;}
.x24_c01128{left:309.120000pt;}
.x1b_c01128{left:310.400000pt;}
.x3f_c01128{left:319.360000pt;}
.x7_c01128{left:328.320000pt;}
.xf_c01128{left:329.600000pt;}
.x35_c01128{left:338.560000pt;}
.x46_c01128{left:339.840000pt;}
.x25_c01128{left:348.160000pt;}
.x59_c01128{left:350.080000pt;}
.x1e_c01128{left:357.120000pt;}
.x58_c01128{left:359.040000pt;}
.x2b_c01128{left:368.640000pt;}
.x39_c01128{left:376.320000pt;}
.x4d_c01128{left:378.240000pt;}
.x8_c01128{left:385.920000pt;}
.x4b_c01128{left:396.800000pt;}
.x1c_c01128{left:405.760000pt;}
.x9_c01128{left:414.720000pt;}
.x3a_c01128{left:416.640000pt;}
.x26_c01128{left:425.600000pt;}
.x2c_c01128{left:433.920000pt;}
.x47_c01128{left:435.840000pt;}
.xa_c01128{left:443.520000pt;}
.x10_c01128{left:445.440000pt;}
.x42_c01128{left:454.400000pt;}
.x5a_c01128{left:455.680000pt;}
.x4c_c01128{left:464.640000pt;}
.x48_c01128{left:466.560000pt;}
.x11_c01128{left:472.320000pt;}
.x3b_c01128{left:473.600000pt;}
.x43_c01128{left:481.920000pt;}
.x4e_c01128{left:483.200000pt;}
.x52_c01128{left:484.480000pt;}
.x1f_c01128{left:492.800000pt;}
.x32_c01128{left:502.400000pt;}
.x2d_c01128{left:512.000000pt;}
.x20_c01128{left:522.240000pt;}
.x33_c01128{left:529.920000pt;}
.x40_c01128{left:531.840000pt;}
.x36_c01128{left:540.160000pt;}
.x4f_c01128{left:542.080000pt;}
.x12_c01128{left:551.040000pt;}
.x49_c01128{left:560.640000pt;}
.x27_c01128{left:570.240000pt;}
.xb_c01128{left:578.560000pt;}
.x13_c01128{left:580.480000pt;}
.x41_c01128{left:589.440000pt;}
.x53_c01128{left:590.720000pt;}
.x28_c01128{left:599.040000pt;}
.x55_c01128{left:600.320000pt;}
.x1_c01128{left:601.600000pt;}
.x2e_c01128{left:618.240000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4915049a29223964e2974ec5.woff2')format("woff");}.ff1_c01129{font-family:ff1_c01129;line-height:1.109863;font-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_c01129{transform:matrix(0.234575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234575,0.000000,0.000000,0.250000,0,0);}
.m1f_c01129{transform:matrix(0.246625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246625,0.000000,0.000000,0.250000,0,0);}
.m22_c01129{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mb_c01129{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);}
.m28_c01129{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);}
.m27_c01129{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);}
.m33_c01129{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m21_c01129{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m55_c01129{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01129{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m15_c01129{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m20_c01129{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01129{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01129{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m18_c01129{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m30_c01129{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m10_c01129{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);}
.m2d_c01129{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.md_c01129{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);}
.m2a_c01129{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);}
.m3c_c01129{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m5d_c01129{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m36_c01129{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);}
.m44_c01129{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m13_c01129{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m3_c01129{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);}
.m57_c01129{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1_c01129{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m31_c01129{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m14_c01129{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);}
.m53_c01129{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);}
.m2f_c01129{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);}
.m0_c01129{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m37_c01129{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);}
.m1e_c01129{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m5a_c01129{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);}
.m52_c01129{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);}
.ma_c01129{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m5b_c01129{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01129{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m2_c01129{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m43_c01129{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);}
.m2c_c01129{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m58_c01129{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);}
.m4b_c01129{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);}
.m3d_c01129{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m39_c01129{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01129{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m62_c01129{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m5e_c01129{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);}
.m4e_c01129{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m5_c01129{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m4f_c01129{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);}
.mc_c01129{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01129{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);}
.m29_c01129{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m12_c01129{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m19_c01129{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);}
.m2e_c01129{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m41_c01129{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m59_c01129{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m23_c01129{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);}
.m54_c01129{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.mf_c01129{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m25_c01129{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m61_c01129{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m9_c01129{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m46_c01129{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);}
.m50_c01129{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);}
.m6_c01129{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m5f_c01129{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.me_c01129{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m7_c01129{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);}
.m5c_c01129{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m48_c01129{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m11_c01129{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m45_c01129{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);}
.m4a_c01129{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m16_c01129{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m49_c01129{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01129{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01129{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m8_c01129{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);}
.m3e_c01129{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m38_c01129{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);}
.m51_c01129{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m32_c01129{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m60_c01129{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m40_c01129{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);}
.m4_c01129{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m17_c01129{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);}
.m1c_c01129{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m35_c01129{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m4d_c01129{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m56_c01129{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m34_c01129{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m47_c01129{transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);}
.m42_c01129{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01129{transform:matrix(0.762500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.762500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.762500,0.000000,0.000000,0.250000,0,0);}
.v0_c01129{vertical-align:0.000000px;}
.v2_c01129{vertical-align:2.880000px;}
.v1_c01129{vertical-align:5.760000px;}
.v3_c01129{vertical-align:11.520000px;}
.ls0_c01129{letter-spacing:0.000000px;}
.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;}
}
.ws2_c01129{word-spacing:-6.094320px;}
.ws0_c01129{word-spacing:-0.635280px;}
.ws3_c01129{word-spacing:0.000000px;}
.ws1_c01129{word-spacing:23.704800px;}
.fc0_c01129{color:transparent;}
.fsf_c01129{font-size:31.680000px;}
.fs4_c01129{font-size:34.560000px;}
.fs5_c01129{font-size:37.440000px;}
.fs10_c01129{font-size:40.320000px;}
.fsd_c01129{font-size:43.200000px;}
.fs2_c01129{font-size:46.080000px;}
.fs7_c01129{font-size:48.960000px;}
.fs1_c01129{font-size:51.840000px;}
.fs3_c01129{font-size:54.720000px;}
.fse_c01129{font-size:57.600000px;}
.fs8_c01129{font-size:60.480000px;}
.fs6_c01129{font-size:63.360000px;}
.fsb_c01129{font-size:66.240000px;}
.fs9_c01129{font-size:69.120000px;}
.fs0_c01129{font-size:72.000000px;}
.fsa_c01129{font-size:80.640000px;}
.fsc_c01129{font-size:86.400000px;}
.y0_c01129{bottom:0.000000px;}
.y85_c01129{bottom:88.560000px;}
.y84_c01129{bottom:90.000000px;}
.y83_c01129{bottom:126.000000px;}
.y81_c01129{bottom:128.160000px;}
.y7f_c01129{bottom:128.880000px;}
.y82_c01129{bottom:129.600000px;}
.y80_c01129{bottom:130.320000px;}
.y7e_c01129{bottom:131.040000px;}
.y7d_c01129{bottom:131.760000px;}
.y7c_c01129{bottom:133.920000px;}
.y79_c01129{bottom:170.640000px;}
.y7b_c01129{bottom:172.080000px;}
.y7a_c01129{bottom:174.240000px;}
.y78_c01129{bottom:175.680000px;}
.y76_c01129{bottom:211.680000px;}
.y75_c01129{bottom:212.400000px;}
.y77_c01129{bottom:213.120000px;}
.y74_c01129{bottom:215.280000px;}
.y73_c01129{bottom:216.000000px;}
.y72_c01129{bottom:216.720000px;}
.y71_c01129{bottom:218.160000px;}
.y6e_c01129{bottom:254.880000px;}
.y70_c01129{bottom:255.600000px;}
.y6b_c01129{bottom:256.320000px;}
.y6f_c01129{bottom:257.760000px;}
.y6d_c01129{bottom:258.480000px;}
.y6c_c01129{bottom:259.200000px;}
.y6a_c01129{bottom:308.160000px;}
.y67_c01129{bottom:309.600000px;}
.y69_c01129{bottom:311.040000px;}
.y68_c01129{bottom:311.760000px;}
.y66_c01129{bottom:312.480000px;}
.y65_c01129{bottom:313.200000px;}
.y64_c01129{bottom:351.360000px;}
.y61_c01129{bottom:352.080000px;}
.y62_c01129{bottom:353.520000px;}
.y63_c01129{bottom:354.240000px;}
.y60_c01129{bottom:354.960000px;}
.y5f_c01129{bottom:356.400000px;}
.y5e_c01129{bottom:393.840000px;}
.y5c_c01129{bottom:394.560000px;}
.y5a_c01129{bottom:395.280000px;}
.y5b_c01129{bottom:396.720000px;}
.y5d_c01129{bottom:397.440000px;}
.y59_c01129{bottom:435.600000px;}
.y58_c01129{bottom:436.320000px;}
.y56_c01129{bottom:437.040000px;}
.y57_c01129{bottom:439.200000px;}
.y55_c01129{bottom:439.920000px;}
.y54_c01129{bottom:478.800000px;}
.y52_c01129{bottom:481.680000px;}
.y53_c01129{bottom:482.400000px;}
.y50_c01129{bottom:521.280000px;}
.y4f_c01129{bottom:522.000000px;}
.y4d_c01129{bottom:524.160000px;}
.y4e_c01129{bottom:524.880000px;}
.y51_c01129{bottom:525.600000px;}
.y4c_c01129{bottom:564.480000px;}
.y4a_c01129{bottom:565.200000px;}
.y49_c01129{bottom:566.640000px;}
.y4b_c01129{bottom:567.360000px;}
.y45_c01129{bottom:606.240000px;}
.y46_c01129{bottom:607.680000px;}
.y44_c01129{bottom:609.120000px;}
.y47_c01129{bottom:609.840000px;}
.y48_c01129{bottom:610.560000px;}
.y40_c01129{bottom:650.880000px;}
.y42_c01129{bottom:651.600000px;}
.y41_c01129{bottom:652.320000px;}
.y43_c01129{bottom:653.760000px;}
.y39_c01129{bottom:690.480000px;}
.y3a_c01129{bottom:691.200000px;}
.y3c_c01129{bottom:691.920000px;}
.y3e_c01129{bottom:692.640000px;}
.y38_c01129{bottom:693.360000px;}
.y3b_c01129{bottom:694.080000px;}
.y3d_c01129{bottom:694.800000px;}
.y3f_c01129{bottom:696.240000px;}
.y30_c01129{bottom:732.960000px;}
.y32_c01129{bottom:733.680000px;}
.y35_c01129{bottom:735.840000px;}
.y31_c01129{bottom:736.560000px;}
.y33_c01129{bottom:737.280000px;}
.y34_c01129{bottom:738.000000px;}
.y37_c01129{bottom:738.720000px;}
.y36_c01129{bottom:739.440000px;}
.y2a_c01129{bottom:775.440000px;}
.y2d_c01129{bottom:777.600000px;}
.y2e_c01129{bottom:778.320000px;}
.y2b_c01129{bottom:779.040000px;}
.y2c_c01129{bottom:779.760000px;}
.y2f_c01129{bottom:782.640000px;}
.y27_c01129{bottom:820.080000px;}
.y24_c01129{bottom:820.800000px;}
.y25_c01129{bottom:821.520000px;}
.y26_c01129{bottom:822.240000px;}
.y28_c01129{bottom:824.400000px;}
.y29_c01129{bottom:825.840000px;}
.y21_c01129{bottom:871.200000px;}
.y22_c01129{bottom:871.920000px;}
.y23_c01129{bottom:874.080000px;}
.y1b_c01129{bottom:914.400000px;}
.y1d_c01129{bottom:915.840000px;}
.y1c_c01129{bottom:916.560000px;}
.y1e_c01129{bottom:918.720000px;}
.y20_c01129{bottom:919.440000px;}
.y1f_c01129{bottom:920.880000px;}
.y16_c01129{bottom:956.160000px;}
.y14_c01129{bottom:957.600000px;}
.y15_c01129{bottom:959.040000px;}
.y17_c01129{bottom:959.760000px;}
.y18_c01129{bottom:960.480000px;}
.y19_c01129{bottom:963.360000px;}
.y1a_c01129{bottom:964.080000px;}
.yd_c01129{bottom:998.640000px;}
.yc_c01129{bottom:1000.080000px;}
.yf_c01129{bottom:1000.800000px;}
.ye_c01129{bottom:1002.240000px;}
.y11_c01129{bottom:1002.960000px;}
.y10_c01129{bottom:1004.400000px;}
.y13_c01129{bottom:1005.120000px;}
.y12_c01129{bottom:1006.560000px;}
.y2_c01129{bottom:1038.240000px;}
.y3_c01129{bottom:1039.680000px;}
.y4_c01129{bottom:1043.280000px;}
.y5_c01129{bottom:1045.440000px;}
.y6_c01129{bottom:1046.160000px;}
.yb_c01129{bottom:1046.880000px;}
.y7_c01129{bottom:1047.600000px;}
.y8_c01129{bottom:1048.320000px;}
.y9_c01129{bottom:1049.040000px;}
.ya_c01129{bottom:1049.760000px;}
.y1_c01129{bottom:1095.840000px;}
.h14_c01129{height:28.508906px;}
.h6_c01129{height:31.100625px;}
.h7_c01129{height:33.692344px;}
.h15_c01129{height:36.284062px;}
.h10_c01129{height:36.572344px;}
.h11_c01129{height:38.875781px;}
.h4_c01129{height:41.467500px;}
.h9_c01129{height:44.059219px;}
.h3_c01129{height:46.650937px;}
.hc_c01129{height:47.227500px;}
.h5_c01129{height:49.242656px;}
.h13_c01129{height:51.834375px;}
.ha_c01129{height:54.426094px;}
.h12_c01129{height:55.579219px;}
.h8_c01129{height:57.017812px;}
.he_c01129{height:59.609531px;}
.hb_c01129{height:62.201250px;}
.h2_c01129{height:64.792969px;}
.hd_c01129{height:72.568125px;}
.hf_c01129{height:77.751563px;}
.h1_c01129{height:1143.750000px;}
.h0_c01129{height:1144.080000px;}
.w1_c01129{width:784.500000px;}
.w0_c01129{width:784.800000px;}
.x0_c01129{left:0.000000px;}
.x2_c01129{left:69.120000px;}
.x16_c01129{left:70.560000px;}
.x47_c01129{left:72.000000px;}
.x61_c01129{left:73.440000px;}
.x17_c01129{left:101.520000px;}
.x55_c01129{left:103.680000px;}
.x6e_c01129{left:105.840000px;}
.x50_c01129{left:113.760000px;}
.x73_c01129{left:116.640000px;}
.x3_c01129{left:122.400000px;}
.x62_c01129{left:126.000000px;}
.x18_c01129{left:133.920000px;}
.x6f_c01129{left:136.080000px;}
.xd_c01129{left:143.280000px;}
.x36_c01129{left:146.160000px;}
.x33_c01129{left:155.520000px;}
.x56_c01129{left:156.960000px;}
.x4_c01129{left:165.600000px;}
.x59_c01129{left:168.480000px;}
.x1f_c01129{left:177.120000px;}
.x4b_c01129{left:178.560000px;}
.x34_c01129{left:187.200000px;}
.x48_c01129{left:190.080000px;}
.x37_c01129{left:198.720000px;}
.x26_c01129{left:200.880000px;}
.x29_c01129{left:207.360000px;}
.x19_c01129{left:208.800000px;}
.x4f_c01129{left:210.240000px;}
.x20_c01129{left:211.680000px;}
.x2f_c01129{left:219.600000px;}
.xe_c01129{left:228.960000px;}
.x42_c01129{left:231.840000px;}
.x5d_c01129{left:233.280000px;}
.x3f_c01129{left:241.200000px;}
.x68_c01129{left:243.360000px;}
.x38_c01129{left:252.000000px;}
.x2a_c01129{left:262.800000px;}
.x5_c01129{left:272.160000px;}
.x4c_c01129{left:274.320000px;}
.x70_c01129{left:276.480000px;}
.xf_c01129{left:282.960000px;}
.x3a_c01129{left:284.400000px;}
.x57_c01129{left:285.840000px;}
.x43_c01129{left:295.200000px;}
.x69_c01129{left:298.080000px;}
.x1a_c01129{left:305.280000px;}
.x6_c01129{left:315.360000px;}
.x40_c01129{left:317.520000px;}
.x10_c01129{left:326.160000px;}
.x39_c01129{left:328.320000px;}
.x5e_c01129{left:339.840000px;}
.x27_c01129{left:347.040000px;}
.x49_c01129{left:360.720000px;}
.x4d_c01129{left:371.520000px;}
.x21_c01129{left:380.160000px;}
.x3b_c01129{left:381.600000px;}
.x6a_c01129{left:383.040000px;}
.x30_c01129{left:393.120000px;}
.x7_c01129{left:400.320000px;}
.x2b_c01129{left:402.480000px;}
.x63_c01129{left:404.640000px;}
.x11_c01129{left:412.560000px;}
.x5a_c01129{left:415.440000px;}
.x1b_c01129{left:423.360000px;}
.x44_c01129{left:425.520000px;}
.x28_c01129{left:434.160000px;}
.x5b_c01129{left:437.040000px;}
.x35_c01129{left:445.680000px;}
.x51_c01129{left:447.120000px;}
.x64_c01129{left:448.560000px;}
.x12_c01129{left:455.760000px;}
.x71_c01129{left:459.360000px;}
.x8_c01129{left:466.560000px;}
.x3c_c01129{left:468.000000px;}
.x22_c01129{left:478.800000px;}
.x6b_c01129{left:480.240000px;}
.x9_c01129{left:487.440000px;}
.x52_c01129{left:490.320000px;}
.x13_c01129{left:498.960000px;}
.x3d_c01129{left:500.400000px;}
.x45_c01129{left:511.200000px;}
.x6c_c01129{left:512.640000px;}
.x1c_c01129{left:520.560000px;}
.x31_c01129{left:522.000000px;}
.x5c_c01129{left:523.440000px;}
.xa_c01129{left:532.080000px;}
.x4a_c01129{left:533.520000px;}
.x5f_c01129{left:534.960000px;}
.x4e_c01129{left:544.320000px;}
.x2c_c01129{left:554.400000px;}
.x65_c01129{left:557.280000px;}
.x1d_c01129{left:565.200000px;}
.x41_c01129{left:576.000000px;}
.x53_c01129{left:578.160000px;}
.xb_c01129{left:586.080000px;}
.x23_c01129{left:587.520000px;}
.x6d_c01129{left:589.680000px;}
.x46_c01129{left:598.320000px;}
.x66_c01129{left:611.280000px;}
.xc_c01129{left:617.760000px;}
.x14_c01129{left:619.200000px;}
.x24_c01129{left:622.080000px;}
.x2d_c01129{left:630.720000px;}
.x72_c01129{left:632.160000px;}
.x67_c01129{left:633.600000px;}
.x1e_c01129{left:641.520000px;}
.x60_c01129{left:642.960000px;}
.x15_c01129{left:651.600000px;}
.x3e_c01129{left:653.040000px;}
.x32_c01129{left:663.120000px;}
.x2e_c01129{left:674.640000px;}
.x54_c01129{left:676.080000px;}
.x1_c01129{left:677.520000px;}
.x58_c01129{left:686.880000px;}
.x25_c01129{left:696.240000px;}
@media print{
.v0_c01129{vertical-align:0.000000pt;}
.v2_c01129{vertical-align:2.560000pt;}
.v1_c01129{vertical-align:5.120000pt;}
.v3_c01129{vertical-align:10.240000pt;}
.ls0_c01129{letter-spacing:0.000000pt;}
.ws2_c01129{word-spacing:-5.417173pt;}
.ws0_c01129{word-spacing:-0.564693pt;}
.ws3_c01129{word-spacing:0.000000pt;}
.ws1_c01129{word-spacing:21.070933pt;}
.fsf_c01129{font-size:28.160000pt;}
.fs4_c01129{font-size:30.720000pt;}
.fs5_c01129{font-size:33.280000pt;}
.fs10_c01129{font-size:35.840000pt;}
.fsd_c01129{font-size:38.400000pt;}
.fs2_c01129{font-size:40.960000pt;}
.fs7_c01129{font-size:43.520000pt;}
.fs1_c01129{font-size:46.080000pt;}
.fs3_c01129{font-size:48.640000pt;}
.fse_c01129{font-size:51.200000pt;}
.fs8_c01129{font-size:53.760000pt;}
.fs6_c01129{font-size:56.320000pt;}
.fsb_c01129{font-size:58.880000pt;}
.fs9_c01129{font-size:61.440000pt;}
.fs0_c01129{font-size:64.000000pt;}
.fsa_c01129{font-size:71.680000pt;}
.fsc_c01129{font-size:76.800000pt;}
.y0_c01129{bottom:0.000000pt;}
.y85_c01129{bottom:78.720000pt;}
.y84_c01129{bottom:80.000000pt;}
.y83_c01129{bottom:112.000000pt;}
.y81_c01129{bottom:113.920000pt;}
.y7f_c01129{bottom:114.560000pt;}
.y82_c01129{bottom:115.200000pt;}
.y80_c01129{bottom:115.840000pt;}
.y7e_c01129{bottom:116.480000pt;}
.y7d_c01129{bottom:117.120000pt;}
.y7c_c01129{bottom:119.040000pt;}
.y79_c01129{bottom:151.680000pt;}
.y7b_c01129{bottom:152.960000pt;}
.y7a_c01129{bottom:154.880000pt;}
.y78_c01129{bottom:156.160000pt;}
.y76_c01129{bottom:188.160000pt;}
.y75_c01129{bottom:188.800000pt;}
.y77_c01129{bottom:189.440000pt;}
.y74_c01129{bottom:191.360000pt;}
.y73_c01129{bottom:192.000000pt;}
.y72_c01129{bottom:192.640000pt;}
.y71_c01129{bottom:193.920000pt;}
.y6e_c01129{bottom:226.560000pt;}
.y70_c01129{bottom:227.200000pt;}
.y6b_c01129{bottom:227.840000pt;}
.y6f_c01129{bottom:229.120000pt;}
.y6d_c01129{bottom:229.760000pt;}
.y6c_c01129{bottom:230.400000pt;}
.y6a_c01129{bottom:273.920000pt;}
.y67_c01129{bottom:275.200000pt;}
.y69_c01129{bottom:276.480000pt;}
.y68_c01129{bottom:277.120000pt;}
.y66_c01129{bottom:277.760000pt;}
.y65_c01129{bottom:278.400000pt;}
.y64_c01129{bottom:312.320000pt;}
.y61_c01129{bottom:312.960000pt;}
.y62_c01129{bottom:314.240000pt;}
.y63_c01129{bottom:314.880000pt;}
.y60_c01129{bottom:315.520000pt;}
.y5f_c01129{bottom:316.800000pt;}
.y5e_c01129{bottom:350.080000pt;}
.y5c_c01129{bottom:350.720000pt;}
.y5a_c01129{bottom:351.360000pt;}
.y5b_c01129{bottom:352.640000pt;}
.y5d_c01129{bottom:353.280000pt;}
.y59_c01129{bottom:387.200000pt;}
.y58_c01129{bottom:387.840000pt;}
.y56_c01129{bottom:388.480000pt;}
.y57_c01129{bottom:390.400000pt;}
.y55_c01129{bottom:391.040000pt;}
.y54_c01129{bottom:425.600000pt;}
.y52_c01129{bottom:428.160000pt;}
.y53_c01129{bottom:428.800000pt;}
.y50_c01129{bottom:463.360000pt;}
.y4f_c01129{bottom:464.000000pt;}
.y4d_c01129{bottom:465.920000pt;}
.y4e_c01129{bottom:466.560000pt;}
.y51_c01129{bottom:467.200000pt;}
.y4c_c01129{bottom:501.760000pt;}
.y4a_c01129{bottom:502.400000pt;}
.y49_c01129{bottom:503.680000pt;}
.y4b_c01129{bottom:504.320000pt;}
.y45_c01129{bottom:538.880000pt;}
.y46_c01129{bottom:540.160000pt;}
.y44_c01129{bottom:541.440000pt;}
.y47_c01129{bottom:542.080000pt;}
.y48_c01129{bottom:542.720000pt;}
.y40_c01129{bottom:578.560000pt;}
.y42_c01129{bottom:579.200000pt;}
.y41_c01129{bottom:579.840000pt;}
.y43_c01129{bottom:581.120000pt;}
.y39_c01129{bottom:613.760000pt;}
.y3a_c01129{bottom:614.400000pt;}
.y3c_c01129{bottom:615.040000pt;}
.y3e_c01129{bottom:615.680000pt;}
.y38_c01129{bottom:616.320000pt;}
.y3b_c01129{bottom:616.960000pt;}
.y3d_c01129{bottom:617.600000pt;}
.y3f_c01129{bottom:618.880000pt;}
.y30_c01129{bottom:651.520000pt;}
.y32_c01129{bottom:652.160000pt;}
.y35_c01129{bottom:654.080000pt;}
.y31_c01129{bottom:654.720000pt;}
.y33_c01129{bottom:655.360000pt;}
.y34_c01129{bottom:656.000000pt;}
.y37_c01129{bottom:656.640000pt;}
.y36_c01129{bottom:657.280000pt;}
.y2a_c01129{bottom:689.280000pt;}
.y2d_c01129{bottom:691.200000pt;}
.y2e_c01129{bottom:691.840000pt;}
.y2b_c01129{bottom:692.480000pt;}
.y2c_c01129{bottom:693.120000pt;}
.y2f_c01129{bottom:695.680000pt;}
.y27_c01129{bottom:728.960000pt;}
.y24_c01129{bottom:729.600000pt;}
.y25_c01129{bottom:730.240000pt;}
.y26_c01129{bottom:730.880000pt;}
.y28_c01129{bottom:732.800000pt;}
.y29_c01129{bottom:734.080000pt;}
.y21_c01129{bottom:774.400000pt;}
.y22_c01129{bottom:775.040000pt;}
.y23_c01129{bottom:776.960000pt;}
.y1b_c01129{bottom:812.800000pt;}
.y1d_c01129{bottom:814.080000pt;}
.y1c_c01129{bottom:814.720000pt;}
.y1e_c01129{bottom:816.640000pt;}
.y20_c01129{bottom:817.280000pt;}
.y1f_c01129{bottom:818.560000pt;}
.y16_c01129{bottom:849.920000pt;}
.y14_c01129{bottom:851.200000pt;}
.y15_c01129{bottom:852.480000pt;}
.y17_c01129{bottom:853.120000pt;}
.y18_c01129{bottom:853.760000pt;}
.y19_c01129{bottom:856.320000pt;}
.y1a_c01129{bottom:856.960000pt;}
.yd_c01129{bottom:887.680000pt;}
.yc_c01129{bottom:888.960000pt;}
.yf_c01129{bottom:889.600000pt;}
.ye_c01129{bottom:890.880000pt;}
.y11_c01129{bottom:891.520000pt;}
.y10_c01129{bottom:892.800000pt;}
.y13_c01129{bottom:893.440000pt;}
.y12_c01129{bottom:894.720000pt;}
.y2_c01129{bottom:922.880000pt;}
.y3_c01129{bottom:924.160000pt;}
.y4_c01129{bottom:927.360000pt;}
.y5_c01129{bottom:929.280000pt;}
.y6_c01129{bottom:929.920000pt;}
.yb_c01129{bottom:930.560000pt;}
.y7_c01129{bottom:931.200000pt;}
.y8_c01129{bottom:931.840000pt;}
.y9_c01129{bottom:932.480000pt;}
.ya_c01129{bottom:933.120000pt;}
.y1_c01129{bottom:974.080000pt;}
.h14_c01129{height:25.341250pt;}
.h6_c01129{height:27.645000pt;}
.h7_c01129{height:29.948750pt;}
.h15_c01129{height:32.252500pt;}
.h10_c01129{height:32.508750pt;}
.h11_c01129{height:34.556250pt;}
.h4_c01129{height:36.860000pt;}
.h9_c01129{height:39.163750pt;}
.h3_c01129{height:41.467500pt;}
.hc_c01129{height:41.980000pt;}
.h5_c01129{height:43.771250pt;}
.h13_c01129{height:46.075000pt;}
.ha_c01129{height:48.378750pt;}
.h12_c01129{height:49.403750pt;}
.h8_c01129{height:50.682500pt;}
.he_c01129{height:52.986250pt;}
.hb_c01129{height:55.290000pt;}
.h2_c01129{height:57.593750pt;}
.hd_c01129{height:64.505000pt;}
.hf_c01129{height:69.112500pt;}
.h1_c01129{height:1016.666667pt;}
.h0_c01129{height:1016.960000pt;}
.w1_c01129{width:697.333333pt;}
.w0_c01129{width:697.600000pt;}
.x0_c01129{left:0.000000pt;}
.x2_c01129{left:61.440000pt;}
.x16_c01129{left:62.720000pt;}
.x47_c01129{left:64.000000pt;}
.x61_c01129{left:65.280000pt;}
.x17_c01129{left:90.240000pt;}
.x55_c01129{left:92.160000pt;}
.x6e_c01129{left:94.080000pt;}
.x50_c01129{left:101.120000pt;}
.x73_c01129{left:103.680000pt;}
.x3_c01129{left:108.800000pt;}
.x62_c01129{left:112.000000pt;}
.x18_c01129{left:119.040000pt;}
.x6f_c01129{left:120.960000pt;}
.xd_c01129{left:127.360000pt;}
.x36_c01129{left:129.920000pt;}
.x33_c01129{left:138.240000pt;}
.x56_c01129{left:139.520000pt;}
.x4_c01129{left:147.200000pt;}
.x59_c01129{left:149.760000pt;}
.x1f_c01129{left:157.440000pt;}
.x4b_c01129{left:158.720000pt;}
.x34_c01129{left:166.400000pt;}
.x48_c01129{left:168.960000pt;}
.x37_c01129{left:176.640000pt;}
.x26_c01129{left:178.560000pt;}
.x29_c01129{left:184.320000pt;}
.x19_c01129{left:185.600000pt;}
.x4f_c01129{left:186.880000pt;}
.x20_c01129{left:188.160000pt;}
.x2f_c01129{left:195.200000pt;}
.xe_c01129{left:203.520000pt;}
.x42_c01129{left:206.080000pt;}
.x5d_c01129{left:207.360000pt;}
.x3f_c01129{left:214.400000pt;}
.x68_c01129{left:216.320000pt;}
.x38_c01129{left:224.000000pt;}
.x2a_c01129{left:233.600000pt;}
.x5_c01129{left:241.920000pt;}
.x4c_c01129{left:243.840000pt;}
.x70_c01129{left:245.760000pt;}
.xf_c01129{left:251.520000pt;}
.x3a_c01129{left:252.800000pt;}
.x57_c01129{left:254.080000pt;}
.x43_c01129{left:262.400000pt;}
.x69_c01129{left:264.960000pt;}
.x1a_c01129{left:271.360000pt;}
.x6_c01129{left:280.320000pt;}
.x40_c01129{left:282.240000pt;}
.x10_c01129{left:289.920000pt;}
.x39_c01129{left:291.840000pt;}
.x5e_c01129{left:302.080000pt;}
.x27_c01129{left:308.480000pt;}
.x49_c01129{left:320.640000pt;}
.x4d_c01129{left:330.240000pt;}
.x21_c01129{left:337.920000pt;}
.x3b_c01129{left:339.200000pt;}
.x6a_c01129{left:340.480000pt;}
.x30_c01129{left:349.440000pt;}
.x7_c01129{left:355.840000pt;}
.x2b_c01129{left:357.760000pt;}
.x63_c01129{left:359.680000pt;}
.x11_c01129{left:366.720000pt;}
.x5a_c01129{left:369.280000pt;}
.x1b_c01129{left:376.320000pt;}
.x44_c01129{left:378.240000pt;}
.x28_c01129{left:385.920000pt;}
.x5b_c01129{left:388.480000pt;}
.x35_c01129{left:396.160000pt;}
.x51_c01129{left:397.440000pt;}
.x64_c01129{left:398.720000pt;}
.x12_c01129{left:405.120000pt;}
.x71_c01129{left:408.320000pt;}
.x8_c01129{left:414.720000pt;}
.x3c_c01129{left:416.000000pt;}
.x22_c01129{left:425.600000pt;}
.x6b_c01129{left:426.880000pt;}
.x9_c01129{left:433.280000pt;}
.x52_c01129{left:435.840000pt;}
.x13_c01129{left:443.520000pt;}
.x3d_c01129{left:444.800000pt;}
.x45_c01129{left:454.400000pt;}
.x6c_c01129{left:455.680000pt;}
.x1c_c01129{left:462.720000pt;}
.x31_c01129{left:464.000000pt;}
.x5c_c01129{left:465.280000pt;}
.xa_c01129{left:472.960000pt;}
.x4a_c01129{left:474.240000pt;}
.x5f_c01129{left:475.520000pt;}
.x4e_c01129{left:483.840000pt;}
.x2c_c01129{left:492.800000pt;}
.x65_c01129{left:495.360000pt;}
.x1d_c01129{left:502.400000pt;}
.x41_c01129{left:512.000000pt;}
.x53_c01129{left:513.920000pt;}
.xb_c01129{left:520.960000pt;}
.x23_c01129{left:522.240000pt;}
.x6d_c01129{left:524.160000pt;}
.x46_c01129{left:531.840000pt;}
.x66_c01129{left:543.360000pt;}
.xc_c01129{left:549.120000pt;}
.x14_c01129{left:550.400000pt;}
.x24_c01129{left:552.960000pt;}
.x2d_c01129{left:560.640000pt;}
.x72_c01129{left:561.920000pt;}
.x67_c01129{left:563.200000pt;}
.x1e_c01129{left:570.240000pt;}
.x60_c01129{left:571.520000pt;}
.x15_c01129{left:579.200000pt;}
.x3e_c01129{left:580.480000pt;}
.x32_c01129{left:589.440000pt;}
.x2e_c01129{left:599.680000pt;}
.x54_c01129{left:600.960000pt;}
.x1_c01129{left:602.240000pt;}
.x58_c01129{left:610.560000pt;}
.x25_c01129{left:618.880000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7db3ec72db5d56a12fce9d82.woff2')format("woff");}.ff1_c01130{font-family:ff1_c01130;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m60_c01130{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);}
.m61_c01130{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);}
.m5e_c01130{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mf_c01130{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01130{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01130{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m20_c01130{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m24_c01130{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m14_c01130{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01130{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m12_c01130{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01130{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m53_c01130{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m18_c01130{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m35_c01130{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m5_c01130{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m8_c01130{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);}
.m27_c01130{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);}
.m38_c01130{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01130{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);}
.m57_c01130{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m19_c01130{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m11_c01130{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m16_c01130{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);}
.m3f_c01130{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);}
.m63_c01130{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01130{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);}
.m5b_c01130{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);}
.m0_c01130{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);}
.m44_c01130{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m40_c01130{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);}
.m9_c01130{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m51_c01130{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);}
.m45_c01130{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);}
.m4a_c01130{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);}
.m3_c01130{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m2_c01130{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m54_c01130{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);}
.m25_c01130{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01130{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);}
.m17_c01130{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01130{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);}
.m50_c01130{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);}
.m43_c01130{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m1_c01130{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m56_c01130{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m5d_c01130{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m46_c01130{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);}
.m5c_c01130{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m32_c01130{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m5f_c01130{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);}
.m21_c01130{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);}
.m10_c01130{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m65_c01130{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01130{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m41_c01130{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m13_c01130{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);}
.m37_c01130{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m23_c01130{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01130{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);}
.m33_c01130{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01130{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.ma_c01130{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m22_c01130{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m47_c01130{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);}
.m26_c01130{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);}
.mc_c01130{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.mb_c01130{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01130{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m7_c01130{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);}
.m55_c01130{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01130{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m34_c01130{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.md_c01130{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);}
.m59_c01130{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01130{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m42_c01130{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01130{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m52_c01130{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);}
.m3d_c01130{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m36_c01130{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);}
.m5a_c01130{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01130{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);}
.me_c01130{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m4_c01130{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m58_c01130{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m48_c01130{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m29_c01130{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01130{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01130{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m64_c01130{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);}
.m39_c01130{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);}
.m31_c01130{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01130{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);}
.m49_c01130{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m30_c01130{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m6_c01130{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m15_c01130{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01130{transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);}
.m28_c01130{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01130{transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);}
.m62_c01130{transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);}
.v1_c01130{vertical-align:-2.880000px;}
.v0_c01130{vertical-align:0.000000px;}
.v2_c01130{vertical-align:5.760000px;}
.ls1_c01130{letter-spacing:0.000000px;}
.ls0_c01130{letter-spacing:25.094640px;}
.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;}
}
.ws1_c01130{word-spacing:0.000000px;}
.ws0_c01130{word-spacing:9.658800px;}
.fc0_c01130{color:transparent;}
.fse_c01130{font-size:20.160000px;}
.fsb_c01130{font-size:31.680000px;}
.fs3_c01130{font-size:34.560000px;}
.fs5_c01130{font-size:37.440000px;}
.fsd_c01130{font-size:40.320000px;}
.fs7_c01130{font-size:43.200000px;}
.fs1_c01130{font-size:46.080000px;}
.fs2_c01130{font-size:48.960000px;}
.fs6_c01130{font-size:51.840000px;}
.fsa_c01130{font-size:54.720000px;}
.fs9_c01130{font-size:57.600000px;}
.fs8_c01130{font-size:60.480000px;}
.fs4_c01130{font-size:63.360000px;}
.fsc_c01130{font-size:66.240000px;}
.fs0_c01130{font-size:69.120000px;}
.y0_c01130{bottom:0.000000px;}
.y91_c01130{bottom:58.320000px;}
.y8e_c01130{bottom:61.920000px;}
.y90_c01130{bottom:62.640000px;}
.y8f_c01130{bottom:63.360000px;}
.y8b_c01130{bottom:64.080000px;}
.y8d_c01130{bottom:64.800000px;}
.y8a_c01130{bottom:65.520000px;}
.y8c_c01130{bottom:66.240000px;}
.y89_c01130{bottom:67.680000px;}
.y88_c01130{bottom:100.800000px;}
.y87_c01130{bottom:102.960000px;}
.y86_c01130{bottom:103.680000px;}
.y85_c01130{bottom:104.400000px;}
.y84_c01130{bottom:105.120000px;}
.y81_c01130{bottom:106.560000px;}
.y82_c01130{bottom:107.280000px;}
.y83_c01130{bottom:108.000000px;}
.y80_c01130{bottom:112.320000px;}
.y7e_c01130{bottom:146.160000px;}
.y7f_c01130{bottom:147.600000px;}
.y7d_c01130{bottom:148.320000px;}
.y7b_c01130{bottom:149.040000px;}
.y7a_c01130{bottom:149.760000px;}
.y7c_c01130{bottom:150.480000px;}
.y79_c01130{bottom:152.640000px;}
.y77_c01130{bottom:189.360000px;}
.y74_c01130{bottom:190.800000px;}
.y78_c01130{bottom:191.520000px;}
.y76_c01130{bottom:192.240000px;}
.y75_c01130{bottom:192.960000px;}
.y73_c01130{bottom:194.400000px;}
.y72_c01130{bottom:195.120000px;}
.y71_c01130{bottom:195.840000px;}
.y6f_c01130{bottom:232.560000px;}
.y6c_c01130{bottom:233.280000px;}
.y70_c01130{bottom:234.000000px;}
.y6e_c01130{bottom:234.720000px;}
.y6d_c01130{bottom:236.160000px;}
.y6b_c01130{bottom:237.600000px;}
.y6a_c01130{bottom:238.320000px;}
.y69_c01130{bottom:273.600000px;}
.y64_c01130{bottom:275.760000px;}
.y67_c01130{bottom:276.480000px;}
.y68_c01130{bottom:277.200000px;}
.y66_c01130{bottom:277.920000px;}
.y65_c01130{bottom:279.360000px;}
.y63_c01130{bottom:280.800000px;}
.y61_c01130{bottom:316.800000px;}
.y62_c01130{bottom:318.960000px;}
.y60_c01130{bottom:320.400000px;}
.y5f_c01130{bottom:321.120000px;}
.y5e_c01130{bottom:321.840000px;}
.y5c_c01130{bottom:370.800000px;}
.y5a_c01130{bottom:372.240000px;}
.y5d_c01130{bottom:372.960000px;}
.y5b_c01130{bottom:373.680000px;}
.y59_c01130{bottom:374.400000px;}
.y58_c01130{bottom:375.120000px;}
.y57_c01130{bottom:375.840000px;}
.y56_c01130{bottom:413.280000px;}
.y53_c01130{bottom:414.720000px;}
.y52_c01130{bottom:415.440000px;}
.y55_c01130{bottom:416.160000px;}
.y54_c01130{bottom:417.600000px;}
.y51_c01130{bottom:418.320000px;}
.y4e_c01130{bottom:456.480000px;}
.y4f_c01130{bottom:457.200000px;}
.y50_c01130{bottom:458.640000px;}
.y4c_c01130{bottom:459.360000px;}
.y4d_c01130{bottom:460.080000px;}
.y4b_c01130{bottom:460.800000px;}
.y48_c01130{bottom:499.680000px;}
.y4a_c01130{bottom:501.120000px;}
.y49_c01130{bottom:501.840000px;}
.y46_c01130{bottom:502.560000px;}
.y47_c01130{bottom:503.280000px;}
.y45_c01130{bottom:542.880000px;}
.y43_c01130{bottom:545.040000px;}
.y44_c01130{bottom:545.760000px;}
.y41_c01130{bottom:595.440000px;}
.y40_c01130{bottom:597.600000px;}
.y3f_c01130{bottom:598.320000px;}
.y42_c01130{bottom:599.040000px;}
.y3b_c01130{bottom:637.920000px;}
.y3a_c01130{bottom:638.640000px;}
.y3c_c01130{bottom:640.800000px;}
.y3e_c01130{bottom:641.520000px;}
.y3d_c01130{bottom:642.240000px;}
.y34_c01130{bottom:679.680000px;}
.y39_c01130{bottom:681.840000px;}
.y38_c01130{bottom:682.560000px;}
.y35_c01130{bottom:683.280000px;}
.y36_c01130{bottom:684.000000px;}
.y37_c01130{bottom:684.720000px;}
.y2f_c01130{bottom:722.160000px;}
.y32_c01130{bottom:722.880000px;}
.y31_c01130{bottom:725.040000px;}
.y30_c01130{bottom:725.760000px;}
.y33_c01130{bottom:726.480000px;}
.y2d_c01130{bottom:765.360000px;}
.y2a_c01130{bottom:766.800000px;}
.y29_c01130{bottom:767.520000px;}
.y2c_c01130{bottom:768.240000px;}
.y2b_c01130{bottom:768.960000px;}
.y2e_c01130{bottom:769.680000px;}
.y24_c01130{bottom:807.120000px;}
.y26_c01130{bottom:808.560000px;}
.y22_c01130{bottom:809.280000px;}
.y23_c01130{bottom:810.000000px;}
.y25_c01130{bottom:810.720000px;}
.y27_c01130{bottom:811.440000px;}
.y28_c01130{bottom:812.880000px;}
.y1d_c01130{bottom:852.480000px;}
.y1e_c01130{bottom:853.200000px;}
.y1f_c01130{bottom:854.640000px;}
.y20_c01130{bottom:855.360000px;}
.y21_c01130{bottom:856.080000px;}
.y16_c01130{bottom:903.600000px;}
.y18_c01130{bottom:904.320000px;}
.y17_c01130{bottom:905.760000px;}
.y19_c01130{bottom:907.200000px;}
.y1b_c01130{bottom:907.920000px;}
.y1a_c01130{bottom:908.640000px;}
.y1c_c01130{bottom:909.360000px;}
.y10_c01130{bottom:943.920000px;}
.yf_c01130{bottom:944.640000px;}
.y12_c01130{bottom:947.520000px;}
.y14_c01130{bottom:948.240000px;}
.y11_c01130{bottom:948.960000px;}
.y13_c01130{bottom:949.680000px;}
.y15_c01130{bottom:952.560000px;}
.y8_c01130{bottom:989.280000px;}
.y9_c01130{bottom:990.720000px;}
.ya_c01130{bottom:991.440000px;}
.yd_c01130{bottom:992.160000px;}
.yb_c01130{bottom:992.880000px;}
.yc_c01130{bottom:993.600000px;}
.ye_c01130{bottom:995.760000px;}
.y3_c01130{bottom:1031.040000px;}
.y4_c01130{bottom:1031.760000px;}
.y2_c01130{bottom:1033.200000px;}
.y7_c01130{bottom:1034.640000px;}
.y5_c01130{bottom:1035.360000px;}
.y6_c01130{bottom:1037.520000px;}
.y1_c01130{bottom:1096.560000px;}
.h12_c01130{height:18.142031px;}
.hd_c01130{height:28.508906px;}
.h5_c01130{height:31.100625px;}
.h7_c01130{height:33.692344px;}
.h11_c01130{height:36.284062px;}
.h9_c01130{height:38.875781px;}
.h3_c01130{height:41.467500px;}
.he_c01130{height:43.770937px;}
.h4_c01130{height:44.059219px;}
.h8_c01130{height:46.650937px;}
.hc_c01130{height:49.242656px;}
.hf_c01130{height:49.819219px;}
.hb_c01130{height:51.834375px;}
.ha_c01130{height:54.426094px;}
.h6_c01130{height:57.017812px;}
.h10_c01130{height:59.609531px;}
.h2_c01130{height:62.201250px;}
.h1_c01130{height:1143.750000px;}
.h0_c01130{height:1144.080000px;}
.w1_c01130{width:783.750000px;}
.w0_c01130{width:784.080000px;}
.x0_c01130{left:0.000000px;}
.x29_c01130{left:69.120000px;}
.xa_c01130{left:70.560000px;}
.x5d_c01130{left:72.720000px;}
.x2a_c01130{left:101.520000px;}
.x50_c01130{left:102.960000px;}
.x5e_c01130{left:105.120000px;}
.xb_c01130{left:112.320000px;}
.x13_c01130{left:120.960000px;}
.x3d_c01130{left:123.120000px;}
.x4c_c01130{left:125.280000px;}
.x5f_c01130{left:134.640000px;}
.x72_c01130{left:137.520000px;}
.xc_c01130{left:144.000000px;}
.x53_c01130{left:145.440000px;}
.x4d_c01130{left:155.520000px;}
.x51_c01130{left:156.960000px;}
.x2b_c01130{left:165.600000px;}
.x68_c01130{left:168.480000px;}
.x2_c01130{left:174.960000px;}
.x1c_c01130{left:177.120000px;}
.x56_c01130{left:179.280000px;}
.x14_c01130{left:185.760000px;}
.x33_c01130{left:187.200000px;}
.x63_c01130{left:189.360000px;}
.x1d_c01130{left:198.720000px;}
.x25_c01130{left:208.080000px;}
.x41_c01130{left:209.520000px;}
.x73_c01130{left:211.680000px;}
.x3_c01130{left:218.160000px;}
.x15_c01130{left:220.320000px;}
.x45_c01130{left:230.400000px;}
.x57_c01130{left:231.840000px;}
.xd_c01130{left:241.200000px;}
.x54_c01130{left:243.360000px;}
.x2c_c01130{left:250.560000px;}
.x38_c01130{left:252.000000px;}
.x69_c01130{left:253.440000px;}
.x16_c01130{left:261.360000px;}
.x42_c01130{left:262.800000px;}
.x74_c01130{left:266.400000px;}
.x3e_c01130{left:274.320000px;}
.x4_c01130{left:282.960000px;}
.x4e_c01130{left:285.120000px;}
.x17_c01130{left:294.480000px;}
.x47_c01130{left:295.920000px;}
.x1e_c01130{left:303.840000px;}
.x26_c01130{left:306.000000px;}
.x6f_c01130{left:308.160000px;}
.x2d_c01130{left:315.360000px;}
.xe_c01130{left:316.800000px;}
.x6a_c01130{left:318.240000px;}
.x5_c01130{left:326.160000px;}
.x70_c01130{left:328.320000px;}
.x37_c01130{left:337.680000px;}
.x75_c01130{left:339.120000px;}
.x2e_c01130{left:347.760000px;}
.x58_c01130{left:349.920000px;}
.x6_c01130{left:357.840000px;}
.x43_c01130{left:360.000000px;}
.x1f_c01130{left:369.360000px;}
.x64_c01130{left:371.520000px;}
.x2f_c01130{left:380.160000px;}
.x3f_c01130{left:381.600000px;}
.x20_c01130{left:390.960000px;}
.xf_c01130{left:401.760000px;}
.x48_c01130{left:403.200000px;}
.x40_c01130{left:413.280000px;}
.x4f_c01130{left:414.720000px;}
.x18_c01130{left:424.080000px;}
.x6b_c01130{left:437.040000px;}
.x39_c01130{left:446.400000px;}
.x55_c01130{left:447.840000px;}
.x21_c01130{left:455.760000px;}
.x65_c01130{left:457.920000px;}
.x30_c01130{left:467.280000px;}
.x59_c01130{left:469.440000px;}
.x34_c01130{left:478.080000px;}
.x60_c01130{left:479.520000px;}
.x27_c01130{left:488.160000px;}
.x22_c01130{left:489.600000px;}
.x76_c01130{left:491.760000px;}
.x7_c01130{left:498.240000px;}
.x3a_c01130{left:499.680000px;}
.x6c_c01130{left:501.120000px;}
.x35_c01130{left:510.480000px;}
.x44_c01130{left:511.920000px;}
.x28_c01130{left:521.280000px;}
.x49_c01130{left:522.720000px;}
.x61_c01130{left:524.160000px;}
.x19_c01130{left:530.640000px;}
.x10_c01130{left:532.800000px;}
.x8_c01130{left:542.160000px;}
.x5a_c01130{left:544.320000px;}
.x31_c01130{left:553.680000px;}
.x46_c01130{left:555.120000px;}
.x23_c01130{left:565.920000px;}
.x66_c01130{left:567.360000px;}
.x3b_c01130{left:575.280000px;}
.x32_c01130{left:585.360000px;}
.x5b_c01130{left:587.520000px;}
.x9_c01130{left:596.880000px;}
.x4a_c01130{left:598.320000px;}
.x6d_c01130{left:609.840000px;}
.x77_c01130{left:611.280000px;}
.x36_c01130{left:619.920000px;}
.x1a_c01130{left:630.720000px;}
.x4b_c01130{left:632.160000px;}
.x11_c01130{left:641.520000px;}
.x71_c01130{left:642.960000px;}
.x3c_c01130{left:651.600000px;}
.x52_c01130{left:653.040000px;}
.x12_c01130{left:663.840000px;}
.x67_c01130{left:665.280000px;}
.x24_c01130{left:672.480000px;}
.x1b_c01130{left:673.920000px;}
.x6e_c01130{left:676.080000px;}
.x1_c01130{left:684.720000px;}
.x5c_c01130{left:686.160000px;}
.x62_c01130{left:687.600000px;}
@media print{
.v1_c01130{vertical-align:-2.560000pt;}
.v0_c01130{vertical-align:0.000000pt;}
.v2_c01130{vertical-align:5.120000pt;}
.ls1_c01130{letter-spacing:0.000000pt;}
.ls0_c01130{letter-spacing:22.306347pt;}
.ws1_c01130{word-spacing:0.000000pt;}
.ws0_c01130{word-spacing:8.585600pt;}
.fse_c01130{font-size:17.920000pt;}
.fsb_c01130{font-size:28.160000pt;}
.fs3_c01130{font-size:30.720000pt;}
.fs5_c01130{font-size:33.280000pt;}
.fsd_c01130{font-size:35.840000pt;}
.fs7_c01130{font-size:38.400000pt;}
.fs1_c01130{font-size:40.960000pt;}
.fs2_c01130{font-size:43.520000pt;}
.fs6_c01130{font-size:46.080000pt;}
.fsa_c01130{font-size:48.640000pt;}
.fs9_c01130{font-size:51.200000pt;}
.fs8_c01130{font-size:53.760000pt;}
.fs4_c01130{font-size:56.320000pt;}
.fsc_c01130{font-size:58.880000pt;}
.fs0_c01130{font-size:61.440000pt;}
.y0_c01130{bottom:0.000000pt;}
.y91_c01130{bottom:51.840000pt;}
.y8e_c01130{bottom:55.040000pt;}
.y90_c01130{bottom:55.680000pt;}
.y8f_c01130{bottom:56.320000pt;}
.y8b_c01130{bottom:56.960000pt;}
.y8d_c01130{bottom:57.600000pt;}
.y8a_c01130{bottom:58.240000pt;}
.y8c_c01130{bottom:58.880000pt;}
.y89_c01130{bottom:60.160000pt;}
.y88_c01130{bottom:89.600000pt;}
.y87_c01130{bottom:91.520000pt;}
.y86_c01130{bottom:92.160000pt;}
.y85_c01130{bottom:92.800000pt;}
.y84_c01130{bottom:93.440000pt;}
.y81_c01130{bottom:94.720000pt;}
.y82_c01130{bottom:95.360000pt;}
.y83_c01130{bottom:96.000000pt;}
.y80_c01130{bottom:99.840000pt;}
.y7e_c01130{bottom:129.920000pt;}
.y7f_c01130{bottom:131.200000pt;}
.y7d_c01130{bottom:131.840000pt;}
.y7b_c01130{bottom:132.480000pt;}
.y7a_c01130{bottom:133.120000pt;}
.y7c_c01130{bottom:133.760000pt;}
.y79_c01130{bottom:135.680000pt;}
.y77_c01130{bottom:168.320000pt;}
.y74_c01130{bottom:169.600000pt;}
.y78_c01130{bottom:170.240000pt;}
.y76_c01130{bottom:170.880000pt;}
.y75_c01130{bottom:171.520000pt;}
.y73_c01130{bottom:172.800000pt;}
.y72_c01130{bottom:173.440000pt;}
.y71_c01130{bottom:174.080000pt;}
.y6f_c01130{bottom:206.720000pt;}
.y6c_c01130{bottom:207.360000pt;}
.y70_c01130{bottom:208.000000pt;}
.y6e_c01130{bottom:208.640000pt;}
.y6d_c01130{bottom:209.920000pt;}
.y6b_c01130{bottom:211.200000pt;}
.y6a_c01130{bottom:211.840000pt;}
.y69_c01130{bottom:243.200000pt;}
.y64_c01130{bottom:245.120000pt;}
.y67_c01130{bottom:245.760000pt;}
.y68_c01130{bottom:246.400000pt;}
.y66_c01130{bottom:247.040000pt;}
.y65_c01130{bottom:248.320000pt;}
.y63_c01130{bottom:249.600000pt;}
.y61_c01130{bottom:281.600000pt;}
.y62_c01130{bottom:283.520000pt;}
.y60_c01130{bottom:284.800000pt;}
.y5f_c01130{bottom:285.440000pt;}
.y5e_c01130{bottom:286.080000pt;}
.y5c_c01130{bottom:329.600000pt;}
.y5a_c01130{bottom:330.880000pt;}
.y5d_c01130{bottom:331.520000pt;}
.y5b_c01130{bottom:332.160000pt;}
.y59_c01130{bottom:332.800000pt;}
.y58_c01130{bottom:333.440000pt;}
.y57_c01130{bottom:334.080000pt;}
.y56_c01130{bottom:367.360000pt;}
.y53_c01130{bottom:368.640000pt;}
.y52_c01130{bottom:369.280000pt;}
.y55_c01130{bottom:369.920000pt;}
.y54_c01130{bottom:371.200000pt;}
.y51_c01130{bottom:371.840000pt;}
.y4e_c01130{bottom:405.760000pt;}
.y4f_c01130{bottom:406.400000pt;}
.y50_c01130{bottom:407.680000pt;}
.y4c_c01130{bottom:408.320000pt;}
.y4d_c01130{bottom:408.960000pt;}
.y4b_c01130{bottom:409.600000pt;}
.y48_c01130{bottom:444.160000pt;}
.y4a_c01130{bottom:445.440000pt;}
.y49_c01130{bottom:446.080000pt;}
.y46_c01130{bottom:446.720000pt;}
.y47_c01130{bottom:447.360000pt;}
.y45_c01130{bottom:482.560000pt;}
.y43_c01130{bottom:484.480000pt;}
.y44_c01130{bottom:485.120000pt;}
.y41_c01130{bottom:529.280000pt;}
.y40_c01130{bottom:531.200000pt;}
.y3f_c01130{bottom:531.840000pt;}
.y42_c01130{bottom:532.480000pt;}
.y3b_c01130{bottom:567.040000pt;}
.y3a_c01130{bottom:567.680000pt;}
.y3c_c01130{bottom:569.600000pt;}
.y3e_c01130{bottom:570.240000pt;}
.y3d_c01130{bottom:570.880000pt;}
.y34_c01130{bottom:604.160000pt;}
.y39_c01130{bottom:606.080000pt;}
.y38_c01130{bottom:606.720000pt;}
.y35_c01130{bottom:607.360000pt;}
.y36_c01130{bottom:608.000000pt;}
.y37_c01130{bottom:608.640000pt;}
.y2f_c01130{bottom:641.920000pt;}
.y32_c01130{bottom:642.560000pt;}
.y31_c01130{bottom:644.480000pt;}
.y30_c01130{bottom:645.120000pt;}
.y33_c01130{bottom:645.760000pt;}
.y2d_c01130{bottom:680.320000pt;}
.y2a_c01130{bottom:681.600000pt;}
.y29_c01130{bottom:682.240000pt;}
.y2c_c01130{bottom:682.880000pt;}
.y2b_c01130{bottom:683.520000pt;}
.y2e_c01130{bottom:684.160000pt;}
.y24_c01130{bottom:717.440000pt;}
.y26_c01130{bottom:718.720000pt;}
.y22_c01130{bottom:719.360000pt;}
.y23_c01130{bottom:720.000000pt;}
.y25_c01130{bottom:720.640000pt;}
.y27_c01130{bottom:721.280000pt;}
.y28_c01130{bottom:722.560000pt;}
.y1d_c01130{bottom:757.760000pt;}
.y1e_c01130{bottom:758.400000pt;}
.y1f_c01130{bottom:759.680000pt;}
.y20_c01130{bottom:760.320000pt;}
.y21_c01130{bottom:760.960000pt;}
.y16_c01130{bottom:803.200000pt;}
.y18_c01130{bottom:803.840000pt;}
.y17_c01130{bottom:805.120000pt;}
.y19_c01130{bottom:806.400000pt;}
.y1b_c01130{bottom:807.040000pt;}
.y1a_c01130{bottom:807.680000pt;}
.y1c_c01130{bottom:808.320000pt;}
.y10_c01130{bottom:839.040000pt;}
.yf_c01130{bottom:839.680000pt;}
.y12_c01130{bottom:842.240000pt;}
.y14_c01130{bottom:842.880000pt;}
.y11_c01130{bottom:843.520000pt;}
.y13_c01130{bottom:844.160000pt;}
.y15_c01130{bottom:846.720000pt;}
.y8_c01130{bottom:879.360000pt;}
.y9_c01130{bottom:880.640000pt;}
.ya_c01130{bottom:881.280000pt;}
.yd_c01130{bottom:881.920000pt;}
.yb_c01130{bottom:882.560000pt;}
.yc_c01130{bottom:883.200000pt;}
.ye_c01130{bottom:885.120000pt;}
.y3_c01130{bottom:916.480000pt;}
.y4_c01130{bottom:917.120000pt;}
.y2_c01130{bottom:918.400000pt;}
.y7_c01130{bottom:919.680000pt;}
.y5_c01130{bottom:920.320000pt;}
.y6_c01130{bottom:922.240000pt;}
.y1_c01130{bottom:974.720000pt;}
.h12_c01130{height:16.126250pt;}
.hd_c01130{height:25.341250pt;}
.h5_c01130{height:27.645000pt;}
.h7_c01130{height:29.948750pt;}
.h11_c01130{height:32.252500pt;}
.h9_c01130{height:34.556250pt;}
.h3_c01130{height:36.860000pt;}
.he_c01130{height:38.907500pt;}
.h4_c01130{height:39.163750pt;}
.h8_c01130{height:41.467500pt;}
.hc_c01130{height:43.771250pt;}
.hf_c01130{height:44.283750pt;}
.hb_c01130{height:46.075000pt;}
.ha_c01130{height:48.378750pt;}
.h6_c01130{height:50.682500pt;}
.h10_c01130{height:52.986250pt;}
.h2_c01130{height:55.290000pt;}
.h1_c01130{height:1016.666667pt;}
.h0_c01130{height:1016.960000pt;}
.w1_c01130{width:696.666667pt;}
.w0_c01130{width:696.960000pt;}
.x0_c01130{left:0.000000pt;}
.x29_c01130{left:61.440000pt;}
.xa_c01130{left:62.720000pt;}
.x5d_c01130{left:64.640000pt;}
.x2a_c01130{left:90.240000pt;}
.x50_c01130{left:91.520000pt;}
.x5e_c01130{left:93.440000pt;}
.xb_c01130{left:99.840000pt;}
.x13_c01130{left:107.520000pt;}
.x3d_c01130{left:109.440000pt;}
.x4c_c01130{left:111.360000pt;}
.x5f_c01130{left:119.680000pt;}
.x72_c01130{left:122.240000pt;}
.xc_c01130{left:128.000000pt;}
.x53_c01130{left:129.280000pt;}
.x4d_c01130{left:138.240000pt;}
.x51_c01130{left:139.520000pt;}
.x2b_c01130{left:147.200000pt;}
.x68_c01130{left:149.760000pt;}
.x2_c01130{left:155.520000pt;}
.x1c_c01130{left:157.440000pt;}
.x56_c01130{left:159.360000pt;}
.x14_c01130{left:165.120000pt;}
.x33_c01130{left:166.400000pt;}
.x63_c01130{left:168.320000pt;}
.x1d_c01130{left:176.640000pt;}
.x25_c01130{left:184.960000pt;}
.x41_c01130{left:186.240000pt;}
.x73_c01130{left:188.160000pt;}
.x3_c01130{left:193.920000pt;}
.x15_c01130{left:195.840000pt;}
.x45_c01130{left:204.800000pt;}
.x57_c01130{left:206.080000pt;}
.xd_c01130{left:214.400000pt;}
.x54_c01130{left:216.320000pt;}
.x2c_c01130{left:222.720000pt;}
.x38_c01130{left:224.000000pt;}
.x69_c01130{left:225.280000pt;}
.x16_c01130{left:232.320000pt;}
.x42_c01130{left:233.600000pt;}
.x74_c01130{left:236.800000pt;}
.x3e_c01130{left:243.840000pt;}
.x4_c01130{left:251.520000pt;}
.x4e_c01130{left:253.440000pt;}
.x17_c01130{left:261.760000pt;}
.x47_c01130{left:263.040000pt;}
.x1e_c01130{left:270.080000pt;}
.x26_c01130{left:272.000000pt;}
.x6f_c01130{left:273.920000pt;}
.x2d_c01130{left:280.320000pt;}
.xe_c01130{left:281.600000pt;}
.x6a_c01130{left:282.880000pt;}
.x5_c01130{left:289.920000pt;}
.x70_c01130{left:291.840000pt;}
.x37_c01130{left:300.160000pt;}
.x75_c01130{left:301.440000pt;}
.x2e_c01130{left:309.120000pt;}
.x58_c01130{left:311.040000pt;}
.x6_c01130{left:318.080000pt;}
.x43_c01130{left:320.000000pt;}
.x1f_c01130{left:328.320000pt;}
.x64_c01130{left:330.240000pt;}
.x2f_c01130{left:337.920000pt;}
.x3f_c01130{left:339.200000pt;}
.x20_c01130{left:347.520000pt;}
.xf_c01130{left:357.120000pt;}
.x48_c01130{left:358.400000pt;}
.x40_c01130{left:367.360000pt;}
.x4f_c01130{left:368.640000pt;}
.x18_c01130{left:376.960000pt;}
.x6b_c01130{left:388.480000pt;}
.x39_c01130{left:396.800000pt;}
.x55_c01130{left:398.080000pt;}
.x21_c01130{left:405.120000pt;}
.x65_c01130{left:407.040000pt;}
.x30_c01130{left:415.360000pt;}
.x59_c01130{left:417.280000pt;}
.x34_c01130{left:424.960000pt;}
.x60_c01130{left:426.240000pt;}
.x27_c01130{left:433.920000pt;}
.x22_c01130{left:435.200000pt;}
.x76_c01130{left:437.120000pt;}
.x7_c01130{left:442.880000pt;}
.x3a_c01130{left:444.160000pt;}
.x6c_c01130{left:445.440000pt;}
.x35_c01130{left:453.760000pt;}
.x44_c01130{left:455.040000pt;}
.x28_c01130{left:463.360000pt;}
.x49_c01130{left:464.640000pt;}
.x61_c01130{left:465.920000pt;}
.x19_c01130{left:471.680000pt;}
.x10_c01130{left:473.600000pt;}
.x8_c01130{left:481.920000pt;}
.x5a_c01130{left:483.840000pt;}
.x31_c01130{left:492.160000pt;}
.x46_c01130{left:493.440000pt;}
.x23_c01130{left:503.040000pt;}
.x66_c01130{left:504.320000pt;}
.x3b_c01130{left:511.360000pt;}
.x32_c01130{left:520.320000pt;}
.x5b_c01130{left:522.240000pt;}
.x9_c01130{left:530.560000pt;}
.x4a_c01130{left:531.840000pt;}
.x6d_c01130{left:542.080000pt;}
.x77_c01130{left:543.360000pt;}
.x36_c01130{left:551.040000pt;}
.x1a_c01130{left:560.640000pt;}
.x4b_c01130{left:561.920000pt;}
.x11_c01130{left:570.240000pt;}
.x71_c01130{left:571.520000pt;}
.x3c_c01130{left:579.200000pt;}
.x52_c01130{left:580.480000pt;}
.x12_c01130{left:590.080000pt;}
.x67_c01130{left:591.360000pt;}
.x24_c01130{left:597.760000pt;}
.x1b_c01130{left:599.040000pt;}
.x6e_c01130{left:600.960000pt;}
.x1_c01130{left:608.640000pt;}
.x5c_c01130{left:609.920000pt;}
.x62_c01130{left:611.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e048af6b08e847bffbec887e.woff2')format("woff");}.ff1_c01131{font-family:ff1_c01131;line-height:1.109863;font-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_c01131{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_c01131{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m51_c01131{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01131{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);}
.m35_c01131{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.me_c01131{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m40_c01131{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.md_c01131{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m30_c01131{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m9_c01131{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m5a_c01131{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);}
.m2a_c01131{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m18_c01131{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);}
.m42_c01131{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);}
.m52_c01131{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m15_c01131{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m27_c01131{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m31_c01131{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_c01131{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m21_c01131{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m3_c01131{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m5d_c01131{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);}
.m48_c01131{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m2_c01131{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m7_c01131{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m11_c01131{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.mf_c01131{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);}
.m2f_c01131{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);}
.m0_c01131{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m6_c01131{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);}
.m2b_c01131{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m1a_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);}
.m1e_c01131{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);}
.m28_c01131{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01131{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m55_c01131{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m38_c01131{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);}
.m44_c01131{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m56_c01131{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);}
.m1b_c01131{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m45_c01131{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);}
.m46_c01131{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);}
.m4_c01131{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m43_c01131{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m26_c01131{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m16_c01131{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);}
.m36_c01131{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01131{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m5_c01131{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);}
.m3f_c01131{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m14_c01131{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);}
.m5b_c01131{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m39_c01131{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m17_c01131{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01131{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.mc_c01131{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);}
.m22_c01131{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01131{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);}
.ma_c01131{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m33_c01131{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m59_c01131{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01131{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m25_c01131{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);}
.m4a_c01131{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);}
.m29_c01131{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m8_c01131{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01131{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);}
.m32_c01131{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m37_c01131{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);}
.m53_c01131{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m41_c01131{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m34_c01131{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m47_c01131{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);}
.m2d_c01131{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);}
.m20_c01131{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m10_c01131{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m49_c01131{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m57_c01131{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m12_c01131{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m1_c01131{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m19_c01131{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01131{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);}
.m5c_c01131{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);}
.m54_c01131{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);}
.m2e_c01131{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m23_c01131{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01131{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01131{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);}
.m4d_c01131{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01131{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m58_c01131{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);}
.m50_c01131{transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);}
.m24_c01131{transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01131{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.v0_c01131{vertical-align:0.000000px;}
.ls0_c01131{letter-spacing:0.000000px;}
.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;}
.fc0_c01131{color:transparent;}
.fs7_c01131{font-size:34.560000px;}
.fsf_c01131{font-size:37.440000px;}
.fse_c01131{font-size:40.320000px;}
.fsd_c01131{font-size:43.200000px;}
.fs1_c01131{font-size:46.080000px;}
.fs3_c01131{font-size:48.960000px;}
.fs4_c01131{font-size:51.840000px;}
.fsb_c01131{font-size:54.720000px;}
.fsc_c01131{font-size:57.600000px;}
.fsa_c01131{font-size:60.480000px;}
.fs2_c01131{font-size:63.360000px;}
.fs5_c01131{font-size:66.240000px;}
.fs9_c01131{font-size:69.120000px;}
.fs0_c01131{font-size:72.000000px;}
.fs8_c01131{font-size:74.880000px;}
.fs6_c01131{font-size:77.760000px;}
.y0_c01131{bottom:0.000000px;}
.y89_c01131{bottom:111.600000px;}
.y88_c01131{bottom:113.040000px;}
.y83_c01131{bottom:113.760000px;}
.y87_c01131{bottom:114.480000px;}
.y86_c01131{bottom:115.200000px;}
.y85_c01131{bottom:115.920000px;}
.y84_c01131{bottom:116.640000px;}
.y82_c01131{bottom:118.800000px;}
.y81_c01131{bottom:119.520000px;}
.y80_c01131{bottom:120.240000px;}
.y7f_c01131{bottom:154.080000px;}
.y7e_c01131{bottom:155.520000px;}
.y7a_c01131{bottom:157.680000px;}
.y7c_c01131{bottom:158.400000px;}
.y7d_c01131{bottom:159.120000px;}
.y7b_c01131{bottom:159.840000px;}
.y79_c01131{bottom:162.000000px;}
.y78_c01131{bottom:163.440000px;}
.y77_c01131{bottom:196.560000px;}
.y75_c01131{bottom:198.720000px;}
.y73_c01131{bottom:199.440000px;}
.y76_c01131{bottom:200.880000px;}
.y74_c01131{bottom:202.320000px;}
.y72_c01131{bottom:203.040000px;}
.y71_c01131{bottom:204.480000px;}
.y6e_c01131{bottom:241.200000px;}
.y6d_c01131{bottom:241.920000px;}
.y6c_c01131{bottom:242.640000px;}
.y70_c01131{bottom:243.360000px;}
.y6f_c01131{bottom:244.080000px;}
.y69_c01131{bottom:244.800000px;}
.y6b_c01131{bottom:245.520000px;}
.y6a_c01131{bottom:246.240000px;}
.y68_c01131{bottom:284.400000px;}
.y65_c01131{bottom:286.560000px;}
.y66_c01131{bottom:287.280000px;}
.y67_c01131{bottom:288.000000px;}
.y64_c01131{bottom:289.440000px;}
.y63_c01131{bottom:326.880000px;}
.y61_c01131{bottom:327.600000px;}
.y62_c01131{bottom:329.760000px;}
.y60_c01131{bottom:330.480000px;}
.y5f_c01131{bottom:331.200000px;}
.y5e_c01131{bottom:331.920000px;}
.y5b_c01131{bottom:370.080000px;}
.y5c_c01131{bottom:370.800000px;}
.y59_c01131{bottom:371.520000px;}
.y5d_c01131{bottom:372.240000px;}
.y5a_c01131{bottom:372.960000px;}
.y58_c01131{bottom:373.680000px;}
.y57_c01131{bottom:374.400000px;}
.y53_c01131{bottom:413.280000px;}
.y51_c01131{bottom:414.000000px;}
.y55_c01131{bottom:414.720000px;}
.y54_c01131{bottom:415.440000px;}
.y56_c01131{bottom:416.160000px;}
.y52_c01131{bottom:416.880000px;}
.y50_c01131{bottom:455.040000px;}
.y4d_c01131{bottom:455.760000px;}
.y4f_c01131{bottom:457.920000px;}
.y4e_c01131{bottom:458.640000px;}
.y4c_c01131{bottom:459.360000px;}
.y4b_c01131{bottom:508.320000px;}
.y4a_c01131{bottom:510.480000px;}
.y49_c01131{bottom:511.200000px;}
.y48_c01131{bottom:511.920000px;}
.y46_c01131{bottom:550.080000px;}
.y43_c01131{bottom:550.800000px;}
.y45_c01131{bottom:552.960000px;}
.y44_c01131{bottom:553.680000px;}
.y47_c01131{bottom:554.400000px;}
.y41_c01131{bottom:593.280000px;}
.y40_c01131{bottom:595.440000px;}
.y3f_c01131{bottom:596.160000px;}
.y42_c01131{bottom:596.880000px;}
.y39_c01131{bottom:635.040000px;}
.y3c_c01131{bottom:635.760000px;}
.y3b_c01131{bottom:637.920000px;}
.y3a_c01131{bottom:638.640000px;}
.y3e_c01131{bottom:639.360000px;}
.y3d_c01131{bottom:640.080000px;}
.y38_c01131{bottom:678.240000px;}
.y36_c01131{bottom:679.680000px;}
.y35_c01131{bottom:681.120000px;}
.y34_c01131{bottom:681.840000px;}
.y37_c01131{bottom:682.560000px;}
.y30_c01131{bottom:730.080000px;}
.y31_c01131{bottom:731.520000px;}
.y33_c01131{bottom:732.240000px;}
.y2f_c01131{bottom:733.680000px;}
.y32_c01131{bottom:735.120000px;}
.y27_c01131{bottom:773.280000px;}
.y2a_c01131{bottom:774.720000px;}
.y2b_c01131{bottom:775.440000px;}
.y28_c01131{bottom:776.160000px;}
.y29_c01131{bottom:776.880000px;}
.y2c_c01131{bottom:779.040000px;}
.y2e_c01131{bottom:779.760000px;}
.y2d_c01131{bottom:780.480000px;}
.y21_c01131{bottom:817.920000px;}
.y25_c01131{bottom:818.640000px;}
.y22_c01131{bottom:819.360000px;}
.y23_c01131{bottom:820.080000px;}
.y24_c01131{bottom:821.520000px;}
.y26_c01131{bottom:822.240000px;}
.y1a_c01131{bottom:857.520000px;}
.y1b_c01131{bottom:861.840000px;}
.y1c_c01131{bottom:862.560000px;}
.y1d_c01131{bottom:863.280000px;}
.y1e_c01131{bottom:864.000000px;}
.y1f_c01131{bottom:865.440000px;}
.y20_c01131{bottom:866.160000px;}
.y14_c01131{bottom:901.440000px;}
.y13_c01131{bottom:903.600000px;}
.y15_c01131{bottom:904.320000px;}
.y16_c01131{bottom:905.760000px;}
.y17_c01131{bottom:907.200000px;}
.y18_c01131{bottom:907.920000px;}
.y19_c01131{bottom:908.640000px;}
.yc_c01131{bottom:942.480000px;}
.ye_c01131{bottom:945.360000px;}
.yd_c01131{bottom:946.800000px;}
.y12_c01131{bottom:948.960000px;}
.yf_c01131{bottom:949.680000px;}
.y10_c01131{bottom:950.400000px;}
.y11_c01131{bottom:951.120000px;}
.y8_c01131{bottom:987.120000px;}
.y9_c01131{bottom:987.840000px;}
.y7_c01131{bottom:989.280000px;}
.ya_c01131{bottom:990.000000px;}
.yb_c01131{bottom:994.320000px;}
.y3_c01131{bottom:1038.960000px;}
.y2_c01131{bottom:1041.120000px;}
.y5_c01131{bottom:1041.840000px;}
.y4_c01131{bottom:1042.560000px;}
.y6_c01131{bottom:1045.440000px;}
.y1_c01131{bottom:1109.520000px;}
.h9_c01131{height:31.100625px;}
.h11_c01131{height:33.692344px;}
.h10_c01131{height:36.284062px;}
.hf_c01131{height:38.875781px;}
.h3_c01131{height:41.467500px;}
.h5_c01131{height:44.059219px;}
.h6_c01131{height:46.650937px;}
.hd_c01131{height:49.242656px;}
.he_c01131{height:51.834375px;}
.hc_c01131{height:54.426094px;}
.h4_c01131{height:57.017812px;}
.h7_c01131{height:59.609531px;}
.hb_c01131{height:62.201250px;}
.h2_c01131{height:64.792969px;}
.ha_c01131{height:67.384687px;}
.h8_c01131{height:69.976406px;}
.h0_c01131{height:1142.640000px;}
.h1_c01131{height:1143.000000px;}
.w0_c01131{width:782.640000px;}
.w1_c01131{width:783.000000px;}
.x0_c01131{left:0.000000px;}
.x2_c01131{left:68.400000px;}
.x29_c01131{left:69.840000px;}
.x3e_c01131{left:71.280000px;}
.x52_c01131{left:72.720000px;}
.x3_c01131{left:101.520000px;}
.x3f_c01131{left:102.960000px;}
.x35_c01131{left:113.760000px;}
.x2c_c01131{left:123.840000px;}
.x5f_c01131{left:125.280000px;}
.x23_c01131{left:133.920000px;}
.x58_c01131{left:136.080000px;}
.x31_c01131{left:144.720000px;}
.x4e_c01131{left:146.160000px;}
.x53_c01131{left:154.800000px;}
.x24_c01131{left:164.160000px;}
.x2a_c01131{left:165.600000px;}
.x60_c01131{left:168.480000px;}
.x9_c01131{left:175.680000px;}
.x42_c01131{left:177.120000px;}
.x2d_c01131{left:187.920000px;}
.x4_c01131{left:196.560000px;}
.x1e_c01131{left:198.000000px;}
.x2e_c01131{left:207.360000px;}
.x43_c01131{left:208.800000px;}
.x66_c01131{left:210.960000px;}
.xa_c01131{left:218.160000px;}
.x5_c01131{left:228.960000px;}
.x46_c01131{left:230.400000px;}
.x25_c01131{left:239.760000px;}
.x40_c01131{left:241.200000px;}
.x10_c01131{left:250.560000px;}
.x3b_c01131{left:252.000000px;}
.x1f_c01131{left:261.360000px;}
.x44_c01131{left:263.520000px;}
.xb_c01131{left:272.160000px;}
.x61_c01131{left:274.320000px;}
.x2b_c01131{left:282.960000px;}
.x5b_c01131{left:285.120000px;}
.x6_c01131{left:292.320000px;}
.x18_c01131{left:293.760000px;}
.x62_c01131{left:306.720000px;}
.x11_c01131{left:313.200000px;}
.x20_c01131{left:315.360000px;}
.x4a_c01131{left:326.880000px;}
.x5c_c01131{left:328.320000px;}
.xc_c01131{left:336.240000px;}
.x47_c01131{left:337.680000px;}
.x36_c01131{left:348.480000px;}
.x7_c01131{left:357.840000px;}
.x32_c01131{left:359.280000px;}
.x26_c01131{left:369.360000px;}
.x63_c01131{left:371.520000px;}
.x2f_c01131{left:380.160000px;}
.x54_c01131{left:382.320000px;}
.x4f_c01131{left:384.480000px;}
.x8_c01131{left:390.240000px;}
.x59_c01131{left:392.400000px;}
.x21_c01131{left:401.760000px;}
.x4b_c01131{left:403.920000px;}
.x41_c01131{left:412.560000px;}
.x55_c01131{left:414.720000px;}
.x12_c01131{left:423.360000px;}
.x33_c01131{left:433.440000px;}
.x50_c01131{left:435.600000px;}
.x37_c01131{left:444.960000px;}
.x67_c01131{left:447.120000px;}
.x13_c01131{left:455.760000px;}
.x19_c01131{left:466.560000px;}
.x5a_c01131{left:468.000000px;}
.x64_c01131{left:470.160000px;}
.xd_c01131{left:477.360000px;}
.x30_c01131{left:488.160000px;}
.x1a_c01131{left:498.960000px;}
.x56_c01131{left:501.120000px;}
.x27_c01131{left:509.760000px;}
.xe_c01131{left:520.560000px;}
.x45_c01131{left:522.720000px;}
.x1b_c01131{left:531.360000px;}
.x51_c01131{left:534.240000px;}
.x14_c01131{left:542.160000px;}
.x38_c01131{left:543.600000px;}
.x48_c01131{left:552.960000px;}
.x68_c01131{left:555.120000px;}
.x5d_c01131{left:566.640000px;}
.x15_c01131{left:574.560000px;}
.x39_c01131{left:576.000000px;}
.x49_c01131{left:586.080000px;}
.x4c_c01131{left:587.520000px;}
.x1c_c01131{left:596.880000px;}
.x3c_c01131{left:598.320000px;}
.x16_c01131{left:608.400000px;}
.x65_c01131{left:610.560000px;}
.x3a_c01131{left:619.920000px;}
.x22_c01131{left:629.280000px;}
.x4d_c01131{left:630.720000px;}
.x69_c01131{left:632.880000px;}
.x3d_c01131{left:650.880000px;}
.x6a_c01131{left:652.320000px;}
.x57_c01131{left:654.480000px;}
.x1d_c01131{left:662.400000px;}
.x34_c01131{left:663.840000px;}
.x5e_c01131{left:665.280000px;}
.x28_c01131{left:673.200000px;}
.x17_c01131{left:682.560000px;}
.xf_c01131{left:684.720000px;}
.x1_c01131{left:690.480000px;}
@media print{
.v0_c01131{vertical-align:0.000000pt;}
.ls0_c01131{letter-spacing:0.000000pt;}
.ws0_c01131{word-spacing:0.000000pt;}
.fs7_c01131{font-size:30.720000pt;}
.fsf_c01131{font-size:33.280000pt;}
.fse_c01131{font-size:35.840000pt;}
.fsd_c01131{font-size:38.400000pt;}
.fs1_c01131{font-size:40.960000pt;}
.fs3_c01131{font-size:43.520000pt;}
.fs4_c01131{font-size:46.080000pt;}
.fsb_c01131{font-size:48.640000pt;}
.fsc_c01131{font-size:51.200000pt;}
.fsa_c01131{font-size:53.760000pt;}
.fs2_c01131{font-size:56.320000pt;}
.fs5_c01131{font-size:58.880000pt;}
.fs9_c01131{font-size:61.440000pt;}
.fs0_c01131{font-size:64.000000pt;}
.fs8_c01131{font-size:66.560000pt;}
.fs6_c01131{font-size:69.120000pt;}
.y0_c01131{bottom:0.000000pt;}
.y89_c01131{bottom:99.200000pt;}
.y88_c01131{bottom:100.480000pt;}
.y83_c01131{bottom:101.120000pt;}
.y87_c01131{bottom:101.760000pt;}
.y86_c01131{bottom:102.400000pt;}
.y85_c01131{bottom:103.040000pt;}
.y84_c01131{bottom:103.680000pt;}
.y82_c01131{bottom:105.600000pt;}
.y81_c01131{bottom:106.240000pt;}
.y80_c01131{bottom:106.880000pt;}
.y7f_c01131{bottom:136.960000pt;}
.y7e_c01131{bottom:138.240000pt;}
.y7a_c01131{bottom:140.160000pt;}
.y7c_c01131{bottom:140.800000pt;}
.y7d_c01131{bottom:141.440000pt;}
.y7b_c01131{bottom:142.080000pt;}
.y79_c01131{bottom:144.000000pt;}
.y78_c01131{bottom:145.280000pt;}
.y77_c01131{bottom:174.720000pt;}
.y75_c01131{bottom:176.640000pt;}
.y73_c01131{bottom:177.280000pt;}
.y76_c01131{bottom:178.560000pt;}
.y74_c01131{bottom:179.840000pt;}
.y72_c01131{bottom:180.480000pt;}
.y71_c01131{bottom:181.760000pt;}
.y6e_c01131{bottom:214.400000pt;}
.y6d_c01131{bottom:215.040000pt;}
.y6c_c01131{bottom:215.680000pt;}
.y70_c01131{bottom:216.320000pt;}
.y6f_c01131{bottom:216.960000pt;}
.y69_c01131{bottom:217.600000pt;}
.y6b_c01131{bottom:218.240000pt;}
.y6a_c01131{bottom:218.880000pt;}
.y68_c01131{bottom:252.800000pt;}
.y65_c01131{bottom:254.720000pt;}
.y66_c01131{bottom:255.360000pt;}
.y67_c01131{bottom:256.000000pt;}
.y64_c01131{bottom:257.280000pt;}
.y63_c01131{bottom:290.560000pt;}
.y61_c01131{bottom:291.200000pt;}
.y62_c01131{bottom:293.120000pt;}
.y60_c01131{bottom:293.760000pt;}
.y5f_c01131{bottom:294.400000pt;}
.y5e_c01131{bottom:295.040000pt;}
.y5b_c01131{bottom:328.960000pt;}
.y5c_c01131{bottom:329.600000pt;}
.y59_c01131{bottom:330.240000pt;}
.y5d_c01131{bottom:330.880000pt;}
.y5a_c01131{bottom:331.520000pt;}
.y58_c01131{bottom:332.160000pt;}
.y57_c01131{bottom:332.800000pt;}
.y53_c01131{bottom:367.360000pt;}
.y51_c01131{bottom:368.000000pt;}
.y55_c01131{bottom:368.640000pt;}
.y54_c01131{bottom:369.280000pt;}
.y56_c01131{bottom:369.920000pt;}
.y52_c01131{bottom:370.560000pt;}
.y50_c01131{bottom:404.480000pt;}
.y4d_c01131{bottom:405.120000pt;}
.y4f_c01131{bottom:407.040000pt;}
.y4e_c01131{bottom:407.680000pt;}
.y4c_c01131{bottom:408.320000pt;}
.y4b_c01131{bottom:451.840000pt;}
.y4a_c01131{bottom:453.760000pt;}
.y49_c01131{bottom:454.400000pt;}
.y48_c01131{bottom:455.040000pt;}
.y46_c01131{bottom:488.960000pt;}
.y43_c01131{bottom:489.600000pt;}
.y45_c01131{bottom:491.520000pt;}
.y44_c01131{bottom:492.160000pt;}
.y47_c01131{bottom:492.800000pt;}
.y41_c01131{bottom:527.360000pt;}
.y40_c01131{bottom:529.280000pt;}
.y3f_c01131{bottom:529.920000pt;}
.y42_c01131{bottom:530.560000pt;}
.y39_c01131{bottom:564.480000pt;}
.y3c_c01131{bottom:565.120000pt;}
.y3b_c01131{bottom:567.040000pt;}
.y3a_c01131{bottom:567.680000pt;}
.y3e_c01131{bottom:568.320000pt;}
.y3d_c01131{bottom:568.960000pt;}
.y38_c01131{bottom:602.880000pt;}
.y36_c01131{bottom:604.160000pt;}
.y35_c01131{bottom:605.440000pt;}
.y34_c01131{bottom:606.080000pt;}
.y37_c01131{bottom:606.720000pt;}
.y30_c01131{bottom:648.960000pt;}
.y31_c01131{bottom:650.240000pt;}
.y33_c01131{bottom:650.880000pt;}
.y2f_c01131{bottom:652.160000pt;}
.y32_c01131{bottom:653.440000pt;}
.y27_c01131{bottom:687.360000pt;}
.y2a_c01131{bottom:688.640000pt;}
.y2b_c01131{bottom:689.280000pt;}
.y28_c01131{bottom:689.920000pt;}
.y29_c01131{bottom:690.560000pt;}
.y2c_c01131{bottom:692.480000pt;}
.y2e_c01131{bottom:693.120000pt;}
.y2d_c01131{bottom:693.760000pt;}
.y21_c01131{bottom:727.040000pt;}
.y25_c01131{bottom:727.680000pt;}
.y22_c01131{bottom:728.320000pt;}
.y23_c01131{bottom:728.960000pt;}
.y24_c01131{bottom:730.240000pt;}
.y26_c01131{bottom:730.880000pt;}
.y1a_c01131{bottom:762.240000pt;}
.y1b_c01131{bottom:766.080000pt;}
.y1c_c01131{bottom:766.720000pt;}
.y1d_c01131{bottom:767.360000pt;}
.y1e_c01131{bottom:768.000000pt;}
.y1f_c01131{bottom:769.280000pt;}
.y20_c01131{bottom:769.920000pt;}
.y14_c01131{bottom:801.280000pt;}
.y13_c01131{bottom:803.200000pt;}
.y15_c01131{bottom:803.840000pt;}
.y16_c01131{bottom:805.120000pt;}
.y17_c01131{bottom:806.400000pt;}
.y18_c01131{bottom:807.040000pt;}
.y19_c01131{bottom:807.680000pt;}
.yc_c01131{bottom:837.760000pt;}
.ye_c01131{bottom:840.320000pt;}
.yd_c01131{bottom:841.600000pt;}
.y12_c01131{bottom:843.520000pt;}
.yf_c01131{bottom:844.160000pt;}
.y10_c01131{bottom:844.800000pt;}
.y11_c01131{bottom:845.440000pt;}
.y8_c01131{bottom:877.440000pt;}
.y9_c01131{bottom:878.080000pt;}
.y7_c01131{bottom:879.360000pt;}
.ya_c01131{bottom:880.000000pt;}
.yb_c01131{bottom:883.840000pt;}
.y3_c01131{bottom:923.520000pt;}
.y2_c01131{bottom:925.440000pt;}
.y5_c01131{bottom:926.080000pt;}
.y4_c01131{bottom:926.720000pt;}
.y6_c01131{bottom:929.280000pt;}
.y1_c01131{bottom:986.240000pt;}
.h9_c01131{height:27.645000pt;}
.h11_c01131{height:29.948750pt;}
.h10_c01131{height:32.252500pt;}
.hf_c01131{height:34.556250pt;}
.h3_c01131{height:36.860000pt;}
.h5_c01131{height:39.163750pt;}
.h6_c01131{height:41.467500pt;}
.hd_c01131{height:43.771250pt;}
.he_c01131{height:46.075000pt;}
.hc_c01131{height:48.378750pt;}
.h4_c01131{height:50.682500pt;}
.h7_c01131{height:52.986250pt;}
.hb_c01131{height:55.290000pt;}
.h2_c01131{height:57.593750pt;}
.ha_c01131{height:59.897500pt;}
.h8_c01131{height:62.201250pt;}
.h0_c01131{height:1015.680000pt;}
.h1_c01131{height:1016.000000pt;}
.w0_c01131{width:695.680000pt;}
.w1_c01131{width:696.000000pt;}
.x0_c01131{left:0.000000pt;}
.x2_c01131{left:60.800000pt;}
.x29_c01131{left:62.080000pt;}
.x3e_c01131{left:63.360000pt;}
.x52_c01131{left:64.640000pt;}
.x3_c01131{left:90.240000pt;}
.x3f_c01131{left:91.520000pt;}
.x35_c01131{left:101.120000pt;}
.x2c_c01131{left:110.080000pt;}
.x5f_c01131{left:111.360000pt;}
.x23_c01131{left:119.040000pt;}
.x58_c01131{left:120.960000pt;}
.x31_c01131{left:128.640000pt;}
.x4e_c01131{left:129.920000pt;}
.x53_c01131{left:137.600000pt;}
.x24_c01131{left:145.920000pt;}
.x2a_c01131{left:147.200000pt;}
.x60_c01131{left:149.760000pt;}
.x9_c01131{left:156.160000pt;}
.x42_c01131{left:157.440000pt;}
.x2d_c01131{left:167.040000pt;}
.x4_c01131{left:174.720000pt;}
.x1e_c01131{left:176.000000pt;}
.x2e_c01131{left:184.320000pt;}
.x43_c01131{left:185.600000pt;}
.x66_c01131{left:187.520000pt;}
.xa_c01131{left:193.920000pt;}
.x5_c01131{left:203.520000pt;}
.x46_c01131{left:204.800000pt;}
.x25_c01131{left:213.120000pt;}
.x40_c01131{left:214.400000pt;}
.x10_c01131{left:222.720000pt;}
.x3b_c01131{left:224.000000pt;}
.x1f_c01131{left:232.320000pt;}
.x44_c01131{left:234.240000pt;}
.xb_c01131{left:241.920000pt;}
.x61_c01131{left:243.840000pt;}
.x2b_c01131{left:251.520000pt;}
.x5b_c01131{left:253.440000pt;}
.x6_c01131{left:259.840000pt;}
.x18_c01131{left:261.120000pt;}
.x62_c01131{left:272.640000pt;}
.x11_c01131{left:278.400000pt;}
.x20_c01131{left:280.320000pt;}
.x4a_c01131{left:290.560000pt;}
.x5c_c01131{left:291.840000pt;}
.xc_c01131{left:298.880000pt;}
.x47_c01131{left:300.160000pt;}
.x36_c01131{left:309.760000pt;}
.x7_c01131{left:318.080000pt;}
.x32_c01131{left:319.360000pt;}
.x26_c01131{left:328.320000pt;}
.x63_c01131{left:330.240000pt;}
.x2f_c01131{left:337.920000pt;}
.x54_c01131{left:339.840000pt;}
.x4f_c01131{left:341.760000pt;}
.x8_c01131{left:346.880000pt;}
.x59_c01131{left:348.800000pt;}
.x21_c01131{left:357.120000pt;}
.x4b_c01131{left:359.040000pt;}
.x41_c01131{left:366.720000pt;}
.x55_c01131{left:368.640000pt;}
.x12_c01131{left:376.320000pt;}
.x33_c01131{left:385.280000pt;}
.x50_c01131{left:387.200000pt;}
.x37_c01131{left:395.520000pt;}
.x67_c01131{left:397.440000pt;}
.x13_c01131{left:405.120000pt;}
.x19_c01131{left:414.720000pt;}
.x5a_c01131{left:416.000000pt;}
.x64_c01131{left:417.920000pt;}
.xd_c01131{left:424.320000pt;}
.x30_c01131{left:433.920000pt;}
.x1a_c01131{left:443.520000pt;}
.x56_c01131{left:445.440000pt;}
.x27_c01131{left:453.120000pt;}
.xe_c01131{left:462.720000pt;}
.x45_c01131{left:464.640000pt;}
.x1b_c01131{left:472.320000pt;}
.x51_c01131{left:474.880000pt;}
.x14_c01131{left:481.920000pt;}
.x38_c01131{left:483.200000pt;}
.x48_c01131{left:491.520000pt;}
.x68_c01131{left:493.440000pt;}
.x5d_c01131{left:503.680000pt;}
.x15_c01131{left:510.720000pt;}
.x39_c01131{left:512.000000pt;}
.x49_c01131{left:520.960000pt;}
.x4c_c01131{left:522.240000pt;}
.x1c_c01131{left:530.560000pt;}
.x3c_c01131{left:531.840000pt;}
.x16_c01131{left:540.800000pt;}
.x65_c01131{left:542.720000pt;}
.x3a_c01131{left:551.040000pt;}
.x22_c01131{left:559.360000pt;}
.x4d_c01131{left:560.640000pt;}
.x69_c01131{left:562.560000pt;}
.x3d_c01131{left:578.560000pt;}
.x6a_c01131{left:579.840000pt;}
.x57_c01131{left:581.760000pt;}
.x1d_c01131{left:588.800000pt;}
.x34_c01131{left:590.080000pt;}
.x5e_c01131{left:591.360000pt;}
.x28_c01131{left:598.400000pt;}
.x17_c01131{left:606.720000pt;}
.xf_c01131{left:608.640000pt;}
.x1_c01131{left:613.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_dfa21568b1b00f895ed74a12.woff2')format("woff");}.ff1_c01132{font-family:ff1_c01132;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m43_c01132{transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);}
.m4a_c01132{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);}
.m45_c01132{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);}
.m3b_c01132{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m47_c01132{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01132{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m48_c01132{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m31_c01132{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m27_c01132{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m30_c01132{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01132{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m16_c01132{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.me_c01132{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m44_c01132{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m38_c01132{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m19_c01132{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);}
.m39_c01132{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m13_c01132{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m6_c01132{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m49_c01132{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);}
.m42_c01132{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_c01132{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1_c01132{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.mc_c01132{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);}
.m34_c01132{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);}
.m21_c01132{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);}
.m0_c01132{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m24_c01132{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);}
.m41_c01132{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m14_c01132{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m11_c01132{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);}
.m4e_c01132{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m8_c01132{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m51_c01132{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);}
.m46_c01132{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m4_c01132{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.ma_c01132{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);}
.m1e_c01132{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m29_c01132{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m12_c01132{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01132{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);}
.m9_c01132{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.mb_c01132{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m22_c01132{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);}
.m1b_c01132{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m18_c01132{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);}
.m5_c01132{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m15_c01132{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m23_c01132{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01132{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_c01132{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01132{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01132{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);}
.md_c01132{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m37_c01132{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m7_c01132{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01132{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01132{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);}
.m3e_c01132{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m10_c01132{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01132{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);}
.m33_c01132{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m50_c01132{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);}
.m32_c01132{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01132{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01132{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01132{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);}
.m2_c01132{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01132{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.mf_c01132{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);}
.m28_c01132{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m17_c01132{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m20_c01132{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m26_c01132{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m40_c01132{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);}
.m36_c01132{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);}
.m3a_c01132{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01132{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);}
.m2e_c01132{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m3_c01132{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m35_c01132{transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01132{transform:matrix(7.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(7.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(7.560000,0.000000,0.000000,0.250000,0,0);}
.v3_c01132{vertical-align:-14.400000px;}
.v2_c01132{vertical-align:-8.640000px;}
.v0_c01132{vertical-align:0.000000px;}
.v1_c01132{vertical-align:5.760000px;}
.ls0_c01132{letter-spacing:0.000000px;}
.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:-5.111760px;}
.ws1_c01132{word-spacing:-3.808080px;}
.ws3_c01132{word-spacing:0.000000px;}
.ws2_c01132{word-spacing:8.841120px;}
.fc0_c01132{color:transparent;}
.fse_c01132{font-size:17.280000px;}
.fs7_c01132{font-size:34.560000px;}
.fs8_c01132{font-size:37.440000px;}
.fs1_c01132{font-size:43.200000px;}
.fs2_c01132{font-size:46.080000px;}
.fs5_c01132{font-size:48.960000px;}
.fs4_c01132{font-size:51.840000px;}
.fsa_c01132{font-size:54.720000px;}
.fs6_c01132{font-size:57.600000px;}
.fs3_c01132{font-size:60.480000px;}
.fsb_c01132{font-size:63.360000px;}
.fsc_c01132{font-size:66.240000px;}
.fs9_c01132{font-size:69.120000px;}
.fs0_c01132{font-size:72.000000px;}
.fsd_c01132{font-size:74.880000px;}
.y0_c01132{bottom:0.000000px;}
.y71_c01132{bottom:127.440000px;}
.y6f_c01132{bottom:131.040000px;}
.y70_c01132{bottom:131.760000px;}
.y6e_c01132{bottom:133.200000px;}
.y6d_c01132{bottom:133.920000px;}
.y6c_c01132{bottom:169.200000px;}
.y6a_c01132{bottom:169.920000px;}
.y69_c01132{bottom:170.640000px;}
.y6b_c01132{bottom:172.080000px;}
.y68_c01132{bottom:173.520000px;}
.y67_c01132{bottom:174.240000px;}
.y66_c01132{bottom:177.120000px;}
.y65_c01132{bottom:222.480000px;}
.y64_c01132{bottom:223.920000px;}
.y63_c01132{bottom:224.640000px;}
.y62_c01132{bottom:226.080000px;}
.y61_c01132{bottom:250.560000px;}
.y60_c01132{bottom:253.440000px;}
.y5f_c01132{bottom:258.480000px;}
.y5e_c01132{bottom:262.080000px;}
.y5d_c01132{bottom:298.080000px;}
.y5c_c01132{bottom:298.800000px;}
.y5b_c01132{bottom:300.240000px;}
.y5a_c01132{bottom:303.120000px;}
.y59_c01132{bottom:304.560000px;}
.y58_c01132{bottom:306.000000px;}
.y57_c01132{bottom:340.560000px;}
.y56_c01132{bottom:341.280000px;}
.y55_c01132{bottom:342.000000px;}
.y54_c01132{bottom:343.440000px;}
.y52_c01132{bottom:344.880000px;}
.y53_c01132{bottom:345.600000px;}
.y51_c01132{bottom:383.040000px;}
.y50_c01132{bottom:385.200000px;}
.y4f_c01132{bottom:385.920000px;}
.y4d_c01132{bottom:387.360000px;}
.y4e_c01132{bottom:388.080000px;}
.y4c_c01132{bottom:426.960000px;}
.y4b_c01132{bottom:427.680000px;}
.y4a_c01132{bottom:428.400000px;}
.y49_c01132{bottom:429.120000px;}
.y47_c01132{bottom:429.840000px;}
.y48_c01132{bottom:430.560000px;}
.y46_c01132{bottom:470.880000px;}
.y45_c01132{bottom:471.600000px;}
.y44_c01132{bottom:472.320000px;}
.y43_c01132{bottom:513.360000px;}
.y3e_c01132{bottom:514.080000px;}
.y42_c01132{bottom:514.800000px;}
.y41_c01132{bottom:515.520000px;}
.y40_c01132{bottom:516.240000px;}
.y3f_c01132{bottom:516.960000px;}
.y3d_c01132{bottom:554.400000px;}
.y3b_c01132{bottom:555.120000px;}
.y39_c01132{bottom:555.840000px;}
.y3c_c01132{bottom:557.280000px;}
.y3a_c01132{bottom:558.000000px;}
.y38_c01132{bottom:559.440000px;}
.y33_c01132{bottom:598.320000px;}
.y35_c01132{bottom:599.760000px;}
.y37_c01132{bottom:600.480000px;}
.y34_c01132{bottom:601.200000px;}
.y36_c01132{bottom:601.920000px;}
.y32_c01132{bottom:639.360000px;}
.y2f_c01132{bottom:640.800000px;}
.y31_c01132{bottom:641.520000px;}
.y2e_c01132{bottom:642.240000px;}
.y30_c01132{bottom:642.960000px;}
.y2d_c01132{bottom:643.680000px;}
.y2c_c01132{bottom:681.840000px;}
.y2a_c01132{bottom:685.440000px;}
.y2b_c01132{bottom:686.160000px;}
.y29_c01132{bottom:725.760000px;}
.y28_c01132{bottom:727.920000px;}
.y27_c01132{bottom:728.640000px;}
.y23_c01132{bottom:766.800000px;}
.y26_c01132{bottom:767.520000px;}
.y24_c01132{bottom:770.400000px;}
.y25_c01132{bottom:771.120000px;}
.y1f_c01132{bottom:810.000000px;}
.y21_c01132{bottom:811.440000px;}
.y1e_c01132{bottom:812.880000px;}
.y20_c01132{bottom:813.600000px;}
.y22_c01132{bottom:814.320000px;}
.y1d_c01132{bottom:864.000000px;}
.y16_c01132{bottom:905.040000px;}
.y19_c01132{bottom:906.480000px;}
.y1c_c01132{bottom:907.200000px;}
.y18_c01132{bottom:907.920000px;}
.y17_c01132{bottom:908.640000px;}
.y1a_c01132{bottom:909.360000px;}
.y1b_c01132{bottom:910.080000px;}
.y11_c01132{bottom:948.240000px;}
.y12_c01132{bottom:948.960000px;}
.y10_c01132{bottom:949.680000px;}
.y13_c01132{bottom:950.400000px;}
.y14_c01132{bottom:952.560000px;}
.y15_c01132{bottom:953.280000px;}
.y9_c01132{bottom:990.720000px;}
.ya_c01132{bottom:991.440000px;}
.y8_c01132{bottom:992.160000px;}
.yd_c01132{bottom:992.880000px;}
.yb_c01132{bottom:994.320000px;}
.yc_c01132{bottom:995.040000px;}
.ye_c01132{bottom:995.760000px;}
.yf_c01132{bottom:996.480000px;}
.y4_c01132{bottom:1034.640000px;}
.y5_c01132{bottom:1036.080000px;}
.y2_c01132{bottom:1036.800000px;}
.y7_c01132{bottom:1037.520000px;}
.y3_c01132{bottom:1038.240000px;}
.y6_c01132{bottom:1038.960000px;}
.y1_c01132{bottom:1109.520000px;}
.h11_c01132{height:15.550313px;}
.ha_c01132{height:31.100625px;}
.hb_c01132{height:33.692344px;}
.h3_c01132{height:38.875781px;}
.h4_c01132{height:41.467500px;}
.h9_c01132{height:44.059219px;}
.h7_c01132{height:46.650937px;}
.h6_c01132{height:47.227500px;}
.hd_c01132{height:49.242656px;}
.h8_c01132{height:51.834375px;}
.h5_c01132{height:54.426094px;}
.he_c01132{height:57.017812px;}
.hf_c01132{height:59.609531px;}
.hc_c01132{height:62.201250px;}
.h2_c01132{height:64.792969px;}
.h10_c01132{height:67.384687px;}
.h1_c01132{height:1149.000000px;}
.h0_c01132{height:1149.120000px;}
.w0_c01132{width:779.760000px;}
.w1_c01132{width:780.000000px;}
.x0_c01132{left:0.000000px;}
.x3d_c01132{left:68.400000px;}
.xa_c01132{left:69.840000px;}
.x49_c01132{left:90.720000px;}
.x26_c01132{left:101.520000px;}
.x2c_c01132{left:110.880000px;}
.x35_c01132{left:120.960000px;}
.x27_c01132{left:133.200000px;}
.x3a_c01132{left:142.560000px;}
.x20_c01132{left:144.000000px;}
.x16_c01132{left:154.080000px;}
.x3e_c01132{left:164.160000px;}
.x4a_c01132{left:174.240000px;}
.x2d_c01132{left:175.680000px;}
.x2_c01132{left:177.120000px;}
.x17_c01132{left:185.760000px;}
.x12_c01132{left:187.200000px;}
.x3f_c01132{left:206.640000px;}
.x3_c01132{left:208.800000px;}
.x53_c01132{left:216.720000px;}
.xb_c01132{left:218.160000px;}
.x36_c01132{left:228.960000px;}
.x21_c01132{left:240.480000px;}
.x4b_c01132{left:248.400000px;}
.x28_c01132{left:249.840000px;}
.x3b_c01132{left:259.920000px;}
.x4_c01132{left:261.360000px;}
.x18_c01132{left:272.160000px;}
.x40_c01132{left:282.240000px;}
.x46_c01132{left:283.680000px;}
.x2e_c01132{left:292.320000px;}
.x5_c01132{left:293.760000px;}
.x3c_c01132{left:303.120000px;}
.x31_c01132{left:304.560000px;}
.x41_c01132{left:313.920000px;}
.x13_c01132{left:315.360000px;}
.x2f_c01132{left:336.240000px;}
.x4e_c01132{left:346.320000px;}
.x1c_c01132{left:347.760000px;}
.xc_c01132{left:358.560000px;}
.x42_c01132{left:367.200000px;}
.x48_c01132{left:369.360000px;}
.x32_c01132{left:378.720000px;}
.x47_c01132{left:380.160000px;}
.x29_c01132{left:388.800000px;}
.x6_c01132{left:390.960000px;}
.xd_c01132{left:401.760000px;}
.x43_c01132{left:411.840000px;}
.x4f_c01132{left:421.200000px;}
.x7_c01132{left:433.440000px;}
.x19_c01132{left:444.240000px;}
.x1d_c01132{left:455.760000px;}
.x4d_c01132{left:464.400000px;}
.x2a_c01132{left:466.560000px;}
.x44_c01132{left:476.640000px;}
.x22_c01132{left:487.440000px;}
.x1a_c01132{left:488.880000px;}
.x50_c01132{left:497.520000px;}
.x8_c01132{left:498.960000px;}
.xe_c01132{left:509.760000px;}
.x23_c01132{left:519.120000px;}
.x37_c01132{left:520.560000px;}
.x2b_c01132{left:531.360000px;}
.x51_c01132{left:540.720000px;}
.xf_c01132{left:542.880000px;}
.x38_c01132{left:552.960000px;}
.x33_c01132{left:563.040000px;}
.x14_c01132{left:565.920000px;}
.x4c_c01132{left:572.400000px;}
.x1e_c01132{left:574.560000px;}
.x39_c01132{left:585.360000px;}
.x10_c01132{left:586.800000px;}
.x45_c01132{left:596.160000px;}
.x1b_c01132{left:608.400000px;}
.x1f_c01132{left:617.760000px;}
.x30_c01132{left:639.360000px;}
.x24_c01132{left:641.520000px;}
.x52_c01132{left:650.160000px;}
.x11_c01132{left:652.320000px;}
.x9_c01132{left:661.680000px;}
.x15_c01132{left:663.120000px;}
.x25_c01132{left:673.920000px;}
.x34_c01132{left:684.000000px;}
.x1_c01132{left:702.000000px;}
@media print{
.v3_c01132{vertical-align:-12.800000pt;}
.v2_c01132{vertical-align:-7.680000pt;}
.v0_c01132{vertical-align:0.000000pt;}
.v1_c01132{vertical-align:5.120000pt;}
.ls0_c01132{letter-spacing:0.000000pt;}
.ws0_c01132{word-spacing:-4.543787pt;}
.ws1_c01132{word-spacing:-3.384960pt;}
.ws3_c01132{word-spacing:0.000000pt;}
.ws2_c01132{word-spacing:7.858773pt;}
.fse_c01132{font-size:15.360000pt;}
.fs7_c01132{font-size:30.720000pt;}
.fs8_c01132{font-size:33.280000pt;}
.fs1_c01132{font-size:38.400000pt;}
.fs2_c01132{font-size:40.960000pt;}
.fs5_c01132{font-size:43.520000pt;}
.fs4_c01132{font-size:46.080000pt;}
.fsa_c01132{font-size:48.640000pt;}
.fs6_c01132{font-size:51.200000pt;}
.fs3_c01132{font-size:53.760000pt;}
.fsb_c01132{font-size:56.320000pt;}
.fsc_c01132{font-size:58.880000pt;}
.fs9_c01132{font-size:61.440000pt;}
.fs0_c01132{font-size:64.000000pt;}
.fsd_c01132{font-size:66.560000pt;}
.y0_c01132{bottom:0.000000pt;}
.y71_c01132{bottom:113.280000pt;}
.y6f_c01132{bottom:116.480000pt;}
.y70_c01132{bottom:117.120000pt;}
.y6e_c01132{bottom:118.400000pt;}
.y6d_c01132{bottom:119.040000pt;}
.y6c_c01132{bottom:150.400000pt;}
.y6a_c01132{bottom:151.040000pt;}
.y69_c01132{bottom:151.680000pt;}
.y6b_c01132{bottom:152.960000pt;}
.y68_c01132{bottom:154.240000pt;}
.y67_c01132{bottom:154.880000pt;}
.y66_c01132{bottom:157.440000pt;}
.y65_c01132{bottom:197.760000pt;}
.y64_c01132{bottom:199.040000pt;}
.y63_c01132{bottom:199.680000pt;}
.y62_c01132{bottom:200.960000pt;}
.y61_c01132{bottom:222.720000pt;}
.y60_c01132{bottom:225.280000pt;}
.y5f_c01132{bottom:229.760000pt;}
.y5e_c01132{bottom:232.960000pt;}
.y5d_c01132{bottom:264.960000pt;}
.y5c_c01132{bottom:265.600000pt;}
.y5b_c01132{bottom:266.880000pt;}
.y5a_c01132{bottom:269.440000pt;}
.y59_c01132{bottom:270.720000pt;}
.y58_c01132{bottom:272.000000pt;}
.y57_c01132{bottom:302.720000pt;}
.y56_c01132{bottom:303.360000pt;}
.y55_c01132{bottom:304.000000pt;}
.y54_c01132{bottom:305.280000pt;}
.y52_c01132{bottom:306.560000pt;}
.y53_c01132{bottom:307.200000pt;}
.y51_c01132{bottom:340.480000pt;}
.y50_c01132{bottom:342.400000pt;}
.y4f_c01132{bottom:343.040000pt;}
.y4d_c01132{bottom:344.320000pt;}
.y4e_c01132{bottom:344.960000pt;}
.y4c_c01132{bottom:379.520000pt;}
.y4b_c01132{bottom:380.160000pt;}
.y4a_c01132{bottom:380.800000pt;}
.y49_c01132{bottom:381.440000pt;}
.y47_c01132{bottom:382.080000pt;}
.y48_c01132{bottom:382.720000pt;}
.y46_c01132{bottom:418.560000pt;}
.y45_c01132{bottom:419.200000pt;}
.y44_c01132{bottom:419.840000pt;}
.y43_c01132{bottom:456.320000pt;}
.y3e_c01132{bottom:456.960000pt;}
.y42_c01132{bottom:457.600000pt;}
.y41_c01132{bottom:458.240000pt;}
.y40_c01132{bottom:458.880000pt;}
.y3f_c01132{bottom:459.520000pt;}
.y3d_c01132{bottom:492.800000pt;}
.y3b_c01132{bottom:493.440000pt;}
.y39_c01132{bottom:494.080000pt;}
.y3c_c01132{bottom:495.360000pt;}
.y3a_c01132{bottom:496.000000pt;}
.y38_c01132{bottom:497.280000pt;}
.y33_c01132{bottom:531.840000pt;}
.y35_c01132{bottom:533.120000pt;}
.y37_c01132{bottom:533.760000pt;}
.y34_c01132{bottom:534.400000pt;}
.y36_c01132{bottom:535.040000pt;}
.y32_c01132{bottom:568.320000pt;}
.y2f_c01132{bottom:569.600000pt;}
.y31_c01132{bottom:570.240000pt;}
.y2e_c01132{bottom:570.880000pt;}
.y30_c01132{bottom:571.520000pt;}
.y2d_c01132{bottom:572.160000pt;}
.y2c_c01132{bottom:606.080000pt;}
.y2a_c01132{bottom:609.280000pt;}
.y2b_c01132{bottom:609.920000pt;}
.y29_c01132{bottom:645.120000pt;}
.y28_c01132{bottom:647.040000pt;}
.y27_c01132{bottom:647.680000pt;}
.y23_c01132{bottom:681.600000pt;}
.y26_c01132{bottom:682.240000pt;}
.y24_c01132{bottom:684.800000pt;}
.y25_c01132{bottom:685.440000pt;}
.y1f_c01132{bottom:720.000000pt;}
.y21_c01132{bottom:721.280000pt;}
.y1e_c01132{bottom:722.560000pt;}
.y20_c01132{bottom:723.200000pt;}
.y22_c01132{bottom:723.840000pt;}
.y1d_c01132{bottom:768.000000pt;}
.y16_c01132{bottom:804.480000pt;}
.y19_c01132{bottom:805.760000pt;}
.y1c_c01132{bottom:806.400000pt;}
.y18_c01132{bottom:807.040000pt;}
.y17_c01132{bottom:807.680000pt;}
.y1a_c01132{bottom:808.320000pt;}
.y1b_c01132{bottom:808.960000pt;}
.y11_c01132{bottom:842.880000pt;}
.y12_c01132{bottom:843.520000pt;}
.y10_c01132{bottom:844.160000pt;}
.y13_c01132{bottom:844.800000pt;}
.y14_c01132{bottom:846.720000pt;}
.y15_c01132{bottom:847.360000pt;}
.y9_c01132{bottom:880.640000pt;}
.ya_c01132{bottom:881.280000pt;}
.y8_c01132{bottom:881.920000pt;}
.yd_c01132{bottom:882.560000pt;}
.yb_c01132{bottom:883.840000pt;}
.yc_c01132{bottom:884.480000pt;}
.ye_c01132{bottom:885.120000pt;}
.yf_c01132{bottom:885.760000pt;}
.y4_c01132{bottom:919.680000pt;}
.y5_c01132{bottom:920.960000pt;}
.y2_c01132{bottom:921.600000pt;}
.y7_c01132{bottom:922.240000pt;}
.y3_c01132{bottom:922.880000pt;}
.y6_c01132{bottom:923.520000pt;}
.y1_c01132{bottom:986.240000pt;}
.h11_c01132{height:13.822500pt;}
.ha_c01132{height:27.645000pt;}
.hb_c01132{height:29.948750pt;}
.h3_c01132{height:34.556250pt;}
.h4_c01132{height:36.860000pt;}
.h9_c01132{height:39.163750pt;}
.h7_c01132{height:41.467500pt;}
.h6_c01132{height:41.980000pt;}
.hd_c01132{height:43.771250pt;}
.h8_c01132{height:46.075000pt;}
.h5_c01132{height:48.378750pt;}
.he_c01132{height:50.682500pt;}
.hf_c01132{height:52.986250pt;}
.hc_c01132{height:55.290000pt;}
.h2_c01132{height:57.593750pt;}
.h10_c01132{height:59.897500pt;}
.h1_c01132{height:1021.333333pt;}
.h0_c01132{height:1021.440000pt;}
.w0_c01132{width:693.120000pt;}
.w1_c01132{width:693.333333pt;}
.x0_c01132{left:0.000000pt;}
.x3d_c01132{left:60.800000pt;}
.xa_c01132{left:62.080000pt;}
.x49_c01132{left:80.640000pt;}
.x26_c01132{left:90.240000pt;}
.x2c_c01132{left:98.560000pt;}
.x35_c01132{left:107.520000pt;}
.x27_c01132{left:118.400000pt;}
.x3a_c01132{left:126.720000pt;}
.x20_c01132{left:128.000000pt;}
.x16_c01132{left:136.960000pt;}
.x3e_c01132{left:145.920000pt;}
.x4a_c01132{left:154.880000pt;}
.x2d_c01132{left:156.160000pt;}
.x2_c01132{left:157.440000pt;}
.x17_c01132{left:165.120000pt;}
.x12_c01132{left:166.400000pt;}
.x3f_c01132{left:183.680000pt;}
.x3_c01132{left:185.600000pt;}
.x53_c01132{left:192.640000pt;}
.xb_c01132{left:193.920000pt;}
.x36_c01132{left:203.520000pt;}
.x21_c01132{left:213.760000pt;}
.x4b_c01132{left:220.800000pt;}
.x28_c01132{left:222.080000pt;}
.x3b_c01132{left:231.040000pt;}
.x4_c01132{left:232.320000pt;}
.x18_c01132{left:241.920000pt;}
.x40_c01132{left:250.880000pt;}
.x46_c01132{left:252.160000pt;}
.x2e_c01132{left:259.840000pt;}
.x5_c01132{left:261.120000pt;}
.x3c_c01132{left:269.440000pt;}
.x31_c01132{left:270.720000pt;}
.x41_c01132{left:279.040000pt;}
.x13_c01132{left:280.320000pt;}
.x2f_c01132{left:298.880000pt;}
.x4e_c01132{left:307.840000pt;}
.x1c_c01132{left:309.120000pt;}
.xc_c01132{left:318.720000pt;}
.x42_c01132{left:326.400000pt;}
.x48_c01132{left:328.320000pt;}
.x32_c01132{left:336.640000pt;}
.x47_c01132{left:337.920000pt;}
.x29_c01132{left:345.600000pt;}
.x6_c01132{left:347.520000pt;}
.xd_c01132{left:357.120000pt;}
.x43_c01132{left:366.080000pt;}
.x4f_c01132{left:374.400000pt;}
.x7_c01132{left:385.280000pt;}
.x19_c01132{left:394.880000pt;}
.x1d_c01132{left:405.120000pt;}
.x4d_c01132{left:412.800000pt;}
.x2a_c01132{left:414.720000pt;}
.x44_c01132{left:423.680000pt;}
.x22_c01132{left:433.280000pt;}
.x1a_c01132{left:434.560000pt;}
.x50_c01132{left:442.240000pt;}
.x8_c01132{left:443.520000pt;}
.xe_c01132{left:453.120000pt;}
.x23_c01132{left:461.440000pt;}
.x37_c01132{left:462.720000pt;}
.x2b_c01132{left:472.320000pt;}
.x51_c01132{left:480.640000pt;}
.xf_c01132{left:482.560000pt;}
.x38_c01132{left:491.520000pt;}
.x33_c01132{left:500.480000pt;}
.x14_c01132{left:503.040000pt;}
.x4c_c01132{left:508.800000pt;}
.x1e_c01132{left:510.720000pt;}
.x39_c01132{left:520.320000pt;}
.x10_c01132{left:521.600000pt;}
.x45_c01132{left:529.920000pt;}
.x1b_c01132{left:540.800000pt;}
.x1f_c01132{left:549.120000pt;}
.x30_c01132{left:568.320000pt;}
.x24_c01132{left:570.240000pt;}
.x52_c01132{left:577.920000pt;}
.x11_c01132{left:579.840000pt;}
.x9_c01132{left:588.160000pt;}
.x15_c01132{left:589.440000pt;}
.x25_c01132{left:599.040000pt;}
.x34_c01132{left:608.000000pt;}
.x1_c01132{left:624.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_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_bc0cd26e3b1f6aa6cdd11913.woff2')format("woff");}.ff1_c01133{font-family:ff1_c01133;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5f_c01133{transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);}
.m21_c01133{transform:matrix(0.220225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220225,0.000000,0.000000,0.250000,0,0);}
.m7_c01133{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);}
.m49_c01133{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m8_c01133{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);}
.m60_c01133{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01133{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);}
.m4c_c01133{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01133{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m5c_c01133{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_c01133{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mf_c01133{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);}
.m5a_c01133{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m13_c01133{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01133{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mb_c01133{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m53_c01133{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m5_c01133{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m9_c01133{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m11_c01133{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m22_c01133{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.ma_c01133{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m43_c01133{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m42_c01133{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m50_c01133{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m57_c01133{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01133{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.md_c01133{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.me_c01133{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01133{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);}
.m55_c01133{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01133{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m17_c01133{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);}
.m4d_c01133{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m19_c01133{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);}
.m48_c01133{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m63_c01133{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);}
.m1a_c01133{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m47_c01133{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);}
.m41_c01133{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);}
.m1c_c01133{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);}
.m3_c01133{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01133{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m25_c01133{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m35_c01133{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m1_c01133{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);}
.m4a_c01133{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);}
.m6_c01133{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m27_c01133{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m10_c01133{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m34_c01133{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m18_c01133{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m52_c01133{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);}
.m64_c01133{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m2_c01133{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.mc_c01133{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m15_c01133{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);}
.m4_c01133{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m20_c01133{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m16_c01133{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);}
.m29_c01133{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01133{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m14_c01133{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);}
.m12_c01133{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01133{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m26_c01133{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01133{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m44_c01133{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m5e_c01133{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01133{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);}
.m3e_c01133{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m38_c01133{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);}
.m2d_c01133{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01133{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m40_c01133{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01133{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);}
.m65_c01133{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m62_c01133{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);}
.m54_c01133{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);}
.m23_c01133{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m33_c01133{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m36_c01133{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01133{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m4e_c01133{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m24_c01133{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m31_c01133{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);}
.m30_c01133{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);}
.m5b_c01133{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m58_c01133{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);}
.m32_c01133{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m39_c01133{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m37_c01133{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m61_c01133{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01133{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m59_c01133{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);}
.m28_c01133{transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);}
.m56_c01133{transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);}
.m45_c01133{transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);}
.m46_c01133{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.m5d_c01133{transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);}
.m4f_c01133{transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);}
.m51_c01133{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.v0_c01133{vertical-align:0.000000px;}
.v1_c01133{vertical-align:2.880000px;}
.v2_c01133{vertical-align:8.640000px;}
.ls0_c01133{letter-spacing:0.000000px;}
.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;}
}
.ws2_c01133{word-spacing:0.000000px;}
.ws0_c01133{word-spacing:173.274000px;}
.ws1_c01133{word-spacing:795.096000px;}
.fc0_c01133{color:transparent;}
.fsd_c01133{font-size:31.680000px;}
.fse_c01133{font-size:34.560000px;}
.fsc_c01133{font-size:37.440000px;}
.fs6_c01133{font-size:43.200000px;}
.fs3_c01133{font-size:46.080000px;}
.fs2_c01133{font-size:48.960000px;}
.fs7_c01133{font-size:51.840000px;}
.fs5_c01133{font-size:54.720000px;}
.fs8_c01133{font-size:57.600000px;}
.fs1_c01133{font-size:60.480000px;}
.fs9_c01133{font-size:63.360000px;}
.fsb_c01133{font-size:66.240000px;}
.fs4_c01133{font-size:69.120000px;}
.fsa_c01133{font-size:72.000000px;}
.fs0_c01133{font-size:74.880000px;}
.fsf_c01133{font-size:97.920000px;}
.y0_c01133{bottom:0.000000px;}
.y81_c01133{bottom:51.840000px;}
.y80_c01133{bottom:52.560000px;}
.y82_c01133{bottom:53.280000px;}
.y7d_c01133{bottom:54.720000px;}
.y7e_c01133{bottom:56.160000px;}
.y7f_c01133{bottom:56.880000px;}
.y7b_c01133{bottom:59.040000px;}
.y7c_c01133{bottom:60.480000px;}
.y7a_c01133{bottom:97.920000px;}
.y78_c01133{bottom:100.080000px;}
.y79_c01133{bottom:101.520000px;}
.y77_c01133{bottom:126.000000px;}
.y76_c01133{bottom:127.440000px;}
.y74_c01133{bottom:128.160000px;}
.y72_c01133{bottom:129.600000px;}
.y71_c01133{bottom:130.320000px;}
.y75_c01133{bottom:131.040000px;}
.y73_c01133{bottom:131.760000px;}
.y70_c01133{bottom:133.920000px;}
.y6d_c01133{bottom:164.160000px;}
.y6e_c01133{bottom:170.640000px;}
.y6f_c01133{bottom:171.360000px;}
.y69_c01133{bottom:172.800000px;}
.y6a_c01133{bottom:173.520000px;}
.y6b_c01133{bottom:174.240000px;}
.y6c_c01133{bottom:174.960000px;}
.y68_c01133{bottom:177.120000px;}
.y64_c01133{bottom:213.120000px;}
.y66_c01133{bottom:213.840000px;}
.y61_c01133{bottom:214.560000px;}
.y67_c01133{bottom:215.280000px;}
.y65_c01133{bottom:216.000000px;}
.y63_c01133{bottom:216.720000px;}
.y62_c01133{bottom:218.160000px;}
.y60_c01133{bottom:219.600000px;}
.y5f_c01133{bottom:257.040000px;}
.y5d_c01133{bottom:259.200000px;}
.y5e_c01133{bottom:260.640000px;}
.y5a_c01133{bottom:288.000000px;}
.y5b_c01133{bottom:288.720000px;}
.y58_c01133{bottom:289.440000px;}
.y5c_c01133{bottom:290.160000px;}
.y59_c01133{bottom:291.600000px;}
.y57_c01133{bottom:293.040000px;}
.y53_c01133{bottom:331.200000px;}
.y54_c01133{bottom:331.920000px;}
.y56_c01133{bottom:333.360000px;}
.y55_c01133{bottom:334.080000px;}
.y51_c01133{bottom:334.800000px;}
.y52_c01133{bottom:335.520000px;}
.y4e_c01133{bottom:373.680000px;}
.y50_c01133{bottom:374.400000px;}
.y4f_c01133{bottom:375.120000px;}
.y4b_c01133{bottom:376.560000px;}
.y4d_c01133{bottom:377.280000px;}
.y4c_c01133{bottom:378.000000px;}
.y49_c01133{bottom:415.440000px;}
.y47_c01133{bottom:416.160000px;}
.y4a_c01133{bottom:417.600000px;}
.y45_c01133{bottom:419.040000px;}
.y48_c01133{bottom:419.760000px;}
.y46_c01133{bottom:420.480000px;}
.y42_c01133{bottom:458.640000px;}
.y43_c01133{bottom:459.360000px;}
.y44_c01133{bottom:460.080000px;}
.y40_c01133{bottom:461.520000px;}
.y41_c01133{bottom:462.960000px;}
.y3e_c01133{bottom:504.720000px;}
.y3f_c01133{bottom:505.440000px;}
.y3d_c01133{bottom:556.560000px;}
.y3c_c01133{bottom:558.000000px;}
.y39_c01133{bottom:597.600000px;}
.y3a_c01133{bottom:598.320000px;}
.y38_c01133{bottom:601.200000px;}
.y3b_c01133{bottom:601.920000px;}
.y35_c01133{bottom:641.520000px;}
.y34_c01133{bottom:642.960000px;}
.y33_c01133{bottom:643.680000px;}
.y36_c01133{bottom:644.400000px;}
.y37_c01133{bottom:645.120000px;}
.y2f_c01133{bottom:685.440000px;}
.y30_c01133{bottom:686.160000px;}
.y31_c01133{bottom:686.880000px;}
.y32_c01133{bottom:687.600000px;}
.y2a_c01133{bottom:726.480000px;}
.y2d_c01133{bottom:727.200000px;}
.y29_c01133{bottom:727.920000px;}
.y2b_c01133{bottom:729.360000px;}
.y2c_c01133{bottom:730.080000px;}
.y2e_c01133{bottom:731.520000px;}
.y28_c01133{bottom:778.320000px;}
.y27_c01133{bottom:783.360000px;}
.y14_c01133{bottom:822.960000px;}
.y26_c01133{bottom:825.840000px;}
.y10_c01133{bottom:863.280000px;}
.y11_c01133{bottom:864.000000px;}
.y13_c01133{bottom:864.720000px;}
.y12_c01133{bottom:866.160000px;}
.y25_c01133{bottom:868.320000px;}
.y24_c01133{bottom:869.040000px;}
.yd_c01133{bottom:905.040000px;}
.ye_c01133{bottom:905.760000px;}
.yf_c01133{bottom:908.640000px;}
.y23_c01133{bottom:910.080000px;}
.y22_c01133{bottom:911.520000px;}
.ya_c01133{bottom:947.520000px;}
.yb_c01133{bottom:949.680000px;}
.yc_c01133{bottom:950.400000px;}
.y1f_c01133{bottom:951.840000px;}
.y21_c01133{bottom:954.000000px;}
.y20_c01133{bottom:954.720000px;}
.y6_c01133{bottom:990.720000px;}
.y9_c01133{bottom:991.440000px;}
.y7_c01133{bottom:992.160000px;}
.y8_c01133{bottom:993.600000px;}
.y1b_c01133{bottom:994.320000px;}
.y1c_c01133{bottom:995.040000px;}
.y1e_c01133{bottom:996.480000px;}
.y1d_c01133{bottom:997.920000px;}
.y2_c01133{bottom:1031.040000px;}
.y4_c01133{bottom:1033.200000px;}
.y3_c01133{bottom:1033.920000px;}
.y5_c01133{bottom:1036.080000px;}
.y16_c01133{bottom:1037.520000px;}
.y17_c01133{bottom:1038.240000px;}
.y15_c01133{bottom:1038.960000px;}
.y19_c01133{bottom:1040.400000px;}
.y18_c01133{bottom:1041.120000px;}
.y1a_c01133{bottom:1041.840000px;}
.y1_c01133{bottom:1100.880000px;}
.hf_c01133{height:28.508906px;}
.h11_c01133{height:31.100625px;}
.he_c01133{height:33.692344px;}
.h10_c01133{height:38.875781px;}
.h5_c01133{height:41.467500px;}
.h4_c01133{height:44.059219px;}
.h8_c01133{height:44.347500px;}
.h9_c01133{height:46.650937px;}
.h7_c01133{height:49.242656px;}
.ha_c01133{height:51.834375px;}
.h3_c01133{height:54.426094px;}
.hb_c01133{height:57.017812px;}
.hd_c01133{height:59.609531px;}
.h6_c01133{height:62.201250px;}
.hc_c01133{height:64.792969px;}
.h2_c01133{height:67.384687px;}
.h12_c01133{height:88.118437px;}
.h1_c01133{height:1145.250000px;}
.h0_c01133{height:1145.520000px;}
.w1_c01133{width:766.500000px;}
.w0_c01133{width:766.800000px;}
.x0_c01133{left:0.000000px;}
.x2_c01133{left:56.160000px;}
.x38_c01133{left:58.320000px;}
.x44_c01133{left:59.760000px;}
.x5b_c01133{left:61.200000px;}
.x2e_c01133{left:89.280000px;}
.x6_c01133{left:108.720000px;}
.xa_c01133{left:110.160000px;}
.x21_c01133{left:120.960000px;}
.x39_c01133{left:131.040000px;}
.x48_c01133{left:132.480000px;}
.x58_c01133{left:133.920000px;}
.x3_c01133{left:149.040000px;}
.x27_c01133{left:152.640000px;}
.x9_c01133{left:162.720000px;}
.x49_c01133{left:165.600000px;}
.x3a_c01133{left:174.960000px;}
.x5c_c01133{left:176.400000px;}
.x28_c01133{left:184.320000px;}
.x2f_c01133{left:195.120000px;}
.x59_c01133{left:198.000000px;}
.x4a_c01133{left:207.360000px;}
.x4_c01133{left:215.280000px;}
.x42_c01133{left:218.160000px;}
.x50_c01133{left:219.600000px;}
.x22_c01133{left:237.600000px;}
.x5a_c01133{left:241.200000px;}
.x1c_c01133{left:248.400000px;}
.x4b_c01133{left:250.560000px;}
.x3c_c01133{left:261.360000px;}
.xc_c01133{left:270.000000px;}
.x7_c01133{left:280.800000px;}
.x4c_c01133{left:282.960000px;}
.x5_c01133{left:288.720000px;}
.x8_c01133{left:291.600000px;}
.x51_c01133{left:303.840000px;}
.x29_c01133{left:313.200000px;}
.xb_c01133{left:323.280000px;}
.x45_c01133{left:326.160000px;}
.x1d_c01133{left:333.360000px;}
.x30_c01133{left:334.800000px;}
.x5d_c01133{left:338.400000px;}
.x23_c01133{left:345.600000px;}
.x53_c01133{left:347.760000px;}
.x2a_c01133{left:356.400000px;}
.x52_c01133{left:358.560000px;}
.x14_c01133{left:365.040000px;}
.x46_c01133{left:367.920000px;}
.xd_c01133{left:388.080000px;}
.x3d_c01133{left:401.040000px;}
.x54_c01133{left:402.480000px;}
.xe_c01133{left:408.960000px;}
.x47_c01133{left:411.120000px;}
.x18_c01133{left:421.200000px;}
.x5e_c01133{left:424.080000px;}
.x2b_c01133{left:432.000000px;}
.x31_c01133{left:442.800000px;}
.x1e_c01133{left:453.600000px;}
.x4d_c01133{left:455.760000px;}
.xf_c01133{left:461.520000px;}
.x15_c01133{left:464.400000px;}
.x32_c01133{left:486.720000px;}
.x4e_c01133{left:492.480000px;}
.x2c_c01133{left:495.360000px;}
.x24_c01133{left:497.520000px;}
.x1a_c01133{left:518.400000px;}
.x34_c01133{left:529.920000px;}
.x3e_c01133{left:531.360000px;}
.x55_c01133{left:532.800000px;}
.x16_c01133{left:537.840000px;}
.x10_c01133{left:540.000000px;}
.x25_c01133{left:550.800000px;}
.x11_c01133{left:561.600000px;}
.x1f_c01133{left:572.400000px;}
.x33_c01133{left:583.200000px;}
.x3b_c01133{left:585.360000px;}
.x5f_c01133{left:587.520000px;}
.x1b_c01133{left:596.160000px;}
.x20_c01133{left:605.520000px;}
.x12_c01133{left:615.600000px;}
.x3f_c01133{left:618.480000px;}
.x4f_c01133{left:619.920000px;}
.x35_c01133{left:627.840000px;}
.x26_c01133{left:629.280000px;}
.x2d_c01133{left:638.640000px;}
.x13_c01133{left:647.280000px;}
.x17_c01133{left:649.440000px;}
.x40_c01133{left:652.320000px;}
.x56_c01133{left:653.760000px;}
.x19_c01133{left:660.240000px;}
.x1_c01133{left:678.240000px;}
.x36_c01133{left:694.080000px;}
.x41_c01133{left:695.520000px;}
.x57_c01133{left:697.680000px;}
.x37_c01133{left:714.960000px;}
.x43_c01133{left:716.400000px;}
@media print{
.v0_c01133{vertical-align:0.000000pt;}
.v1_c01133{vertical-align:2.560000pt;}
.v2_c01133{vertical-align:7.680000pt;}
.ls0_c01133{letter-spacing:0.000000pt;}
.ws2_c01133{word-spacing:0.000000pt;}
.ws0_c01133{word-spacing:154.021333pt;}
.ws1_c01133{word-spacing:706.752000pt;}
.fsd_c01133{font-size:28.160000pt;}
.fse_c01133{font-size:30.720000pt;}
.fsc_c01133{font-size:33.280000pt;}
.fs6_c01133{font-size:38.400000pt;}
.fs3_c01133{font-size:40.960000pt;}
.fs2_c01133{font-size:43.520000pt;}
.fs7_c01133{font-size:46.080000pt;}
.fs5_c01133{font-size:48.640000pt;}
.fs8_c01133{font-size:51.200000pt;}
.fs1_c01133{font-size:53.760000pt;}
.fs9_c01133{font-size:56.320000pt;}
.fsb_c01133{font-size:58.880000pt;}
.fs4_c01133{font-size:61.440000pt;}
.fsa_c01133{font-size:64.000000pt;}
.fs0_c01133{font-size:66.560000pt;}
.fsf_c01133{font-size:87.040000pt;}
.y0_c01133{bottom:0.000000pt;}
.y81_c01133{bottom:46.080000pt;}
.y80_c01133{bottom:46.720000pt;}
.y82_c01133{bottom:47.360000pt;}
.y7d_c01133{bottom:48.640000pt;}
.y7e_c01133{bottom:49.920000pt;}
.y7f_c01133{bottom:50.560000pt;}
.y7b_c01133{bottom:52.480000pt;}
.y7c_c01133{bottom:53.760000pt;}
.y7a_c01133{bottom:87.040000pt;}
.y78_c01133{bottom:88.960000pt;}
.y79_c01133{bottom:90.240000pt;}
.y77_c01133{bottom:112.000000pt;}
.y76_c01133{bottom:113.280000pt;}
.y74_c01133{bottom:113.920000pt;}
.y72_c01133{bottom:115.200000pt;}
.y71_c01133{bottom:115.840000pt;}
.y75_c01133{bottom:116.480000pt;}
.y73_c01133{bottom:117.120000pt;}
.y70_c01133{bottom:119.040000pt;}
.y6d_c01133{bottom:145.920000pt;}
.y6e_c01133{bottom:151.680000pt;}
.y6f_c01133{bottom:152.320000pt;}
.y69_c01133{bottom:153.600000pt;}
.y6a_c01133{bottom:154.240000pt;}
.y6b_c01133{bottom:154.880000pt;}
.y6c_c01133{bottom:155.520000pt;}
.y68_c01133{bottom:157.440000pt;}
.y64_c01133{bottom:189.440000pt;}
.y66_c01133{bottom:190.080000pt;}
.y61_c01133{bottom:190.720000pt;}
.y67_c01133{bottom:191.360000pt;}
.y65_c01133{bottom:192.000000pt;}
.y63_c01133{bottom:192.640000pt;}
.y62_c01133{bottom:193.920000pt;}
.y60_c01133{bottom:195.200000pt;}
.y5f_c01133{bottom:228.480000pt;}
.y5d_c01133{bottom:230.400000pt;}
.y5e_c01133{bottom:231.680000pt;}
.y5a_c01133{bottom:256.000000pt;}
.y5b_c01133{bottom:256.640000pt;}
.y58_c01133{bottom:257.280000pt;}
.y5c_c01133{bottom:257.920000pt;}
.y59_c01133{bottom:259.200000pt;}
.y57_c01133{bottom:260.480000pt;}
.y53_c01133{bottom:294.400000pt;}
.y54_c01133{bottom:295.040000pt;}
.y56_c01133{bottom:296.320000pt;}
.y55_c01133{bottom:296.960000pt;}
.y51_c01133{bottom:297.600000pt;}
.y52_c01133{bottom:298.240000pt;}
.y4e_c01133{bottom:332.160000pt;}
.y50_c01133{bottom:332.800000pt;}
.y4f_c01133{bottom:333.440000pt;}
.y4b_c01133{bottom:334.720000pt;}
.y4d_c01133{bottom:335.360000pt;}
.y4c_c01133{bottom:336.000000pt;}
.y49_c01133{bottom:369.280000pt;}
.y47_c01133{bottom:369.920000pt;}
.y4a_c01133{bottom:371.200000pt;}
.y45_c01133{bottom:372.480000pt;}
.y48_c01133{bottom:373.120000pt;}
.y46_c01133{bottom:373.760000pt;}
.y42_c01133{bottom:407.680000pt;}
.y43_c01133{bottom:408.320000pt;}
.y44_c01133{bottom:408.960000pt;}
.y40_c01133{bottom:410.240000pt;}
.y41_c01133{bottom:411.520000pt;}
.y3e_c01133{bottom:448.640000pt;}
.y3f_c01133{bottom:449.280000pt;}
.y3d_c01133{bottom:494.720000pt;}
.y3c_c01133{bottom:496.000000pt;}
.y39_c01133{bottom:531.200000pt;}
.y3a_c01133{bottom:531.840000pt;}
.y38_c01133{bottom:534.400000pt;}
.y3b_c01133{bottom:535.040000pt;}
.y35_c01133{bottom:570.240000pt;}
.y34_c01133{bottom:571.520000pt;}
.y33_c01133{bottom:572.160000pt;}
.y36_c01133{bottom:572.800000pt;}
.y37_c01133{bottom:573.440000pt;}
.y2f_c01133{bottom:609.280000pt;}
.y30_c01133{bottom:609.920000pt;}
.y31_c01133{bottom:610.560000pt;}
.y32_c01133{bottom:611.200000pt;}
.y2a_c01133{bottom:645.760000pt;}
.y2d_c01133{bottom:646.400000pt;}
.y29_c01133{bottom:647.040000pt;}
.y2b_c01133{bottom:648.320000pt;}
.y2c_c01133{bottom:648.960000pt;}
.y2e_c01133{bottom:650.240000pt;}
.y28_c01133{bottom:691.840000pt;}
.y27_c01133{bottom:696.320000pt;}
.y14_c01133{bottom:731.520000pt;}
.y26_c01133{bottom:734.080000pt;}
.y10_c01133{bottom:767.360000pt;}
.y11_c01133{bottom:768.000000pt;}
.y13_c01133{bottom:768.640000pt;}
.y12_c01133{bottom:769.920000pt;}
.y25_c01133{bottom:771.840000pt;}
.y24_c01133{bottom:772.480000pt;}
.yd_c01133{bottom:804.480000pt;}
.ye_c01133{bottom:805.120000pt;}
.yf_c01133{bottom:807.680000pt;}
.y23_c01133{bottom:808.960000pt;}
.y22_c01133{bottom:810.240000pt;}
.ya_c01133{bottom:842.240000pt;}
.yb_c01133{bottom:844.160000pt;}
.yc_c01133{bottom:844.800000pt;}
.y1f_c01133{bottom:846.080000pt;}
.y21_c01133{bottom:848.000000pt;}
.y20_c01133{bottom:848.640000pt;}
.y6_c01133{bottom:880.640000pt;}
.y9_c01133{bottom:881.280000pt;}
.y7_c01133{bottom:881.920000pt;}
.y8_c01133{bottom:883.200000pt;}
.y1b_c01133{bottom:883.840000pt;}
.y1c_c01133{bottom:884.480000pt;}
.y1e_c01133{bottom:885.760000pt;}
.y1d_c01133{bottom:887.040000pt;}
.y2_c01133{bottom:916.480000pt;}
.y4_c01133{bottom:918.400000pt;}
.y3_c01133{bottom:919.040000pt;}
.y5_c01133{bottom:920.960000pt;}
.y16_c01133{bottom:922.240000pt;}
.y17_c01133{bottom:922.880000pt;}
.y15_c01133{bottom:923.520000pt;}
.y19_c01133{bottom:924.800000pt;}
.y18_c01133{bottom:925.440000pt;}
.y1a_c01133{bottom:926.080000pt;}
.y1_c01133{bottom:978.560000pt;}
.hf_c01133{height:25.341250pt;}
.h11_c01133{height:27.645000pt;}
.he_c01133{height:29.948750pt;}
.h10_c01133{height:34.556250pt;}
.h5_c01133{height:36.860000pt;}
.h4_c01133{height:39.163750pt;}
.h8_c01133{height:39.420000pt;}
.h9_c01133{height:41.467500pt;}
.h7_c01133{height:43.771250pt;}
.ha_c01133{height:46.075000pt;}
.h3_c01133{height:48.378750pt;}
.hb_c01133{height:50.682500pt;}
.hd_c01133{height:52.986250pt;}
.h6_c01133{height:55.290000pt;}
.hc_c01133{height:57.593750pt;}
.h2_c01133{height:59.897500pt;}
.h12_c01133{height:78.327500pt;}
.h1_c01133{height:1018.000000pt;}
.h0_c01133{height:1018.240000pt;}
.w1_c01133{width:681.333333pt;}
.w0_c01133{width:681.600000pt;}
.x0_c01133{left:0.000000pt;}
.x2_c01133{left:49.920000pt;}
.x38_c01133{left:51.840000pt;}
.x44_c01133{left:53.120000pt;}
.x5b_c01133{left:54.400000pt;}
.x2e_c01133{left:79.360000pt;}
.x6_c01133{left:96.640000pt;}
.xa_c01133{left:97.920000pt;}
.x21_c01133{left:107.520000pt;}
.x39_c01133{left:116.480000pt;}
.x48_c01133{left:117.760000pt;}
.x58_c01133{left:119.040000pt;}
.x3_c01133{left:132.480000pt;}
.x27_c01133{left:135.680000pt;}
.x9_c01133{left:144.640000pt;}
.x49_c01133{left:147.200000pt;}
.x3a_c01133{left:155.520000pt;}
.x5c_c01133{left:156.800000pt;}
.x28_c01133{left:163.840000pt;}
.x2f_c01133{left:173.440000pt;}
.x59_c01133{left:176.000000pt;}
.x4a_c01133{left:184.320000pt;}
.x4_c01133{left:191.360000pt;}
.x42_c01133{left:193.920000pt;}
.x50_c01133{left:195.200000pt;}
.x22_c01133{left:211.200000pt;}
.x5a_c01133{left:214.400000pt;}
.x1c_c01133{left:220.800000pt;}
.x4b_c01133{left:222.720000pt;}
.x3c_c01133{left:232.320000pt;}
.xc_c01133{left:240.000000pt;}
.x7_c01133{left:249.600000pt;}
.x4c_c01133{left:251.520000pt;}
.x5_c01133{left:256.640000pt;}
.x8_c01133{left:259.200000pt;}
.x51_c01133{left:270.080000pt;}
.x29_c01133{left:278.400000pt;}
.xb_c01133{left:287.360000pt;}
.x45_c01133{left:289.920000pt;}
.x1d_c01133{left:296.320000pt;}
.x30_c01133{left:297.600000pt;}
.x5d_c01133{left:300.800000pt;}
.x23_c01133{left:307.200000pt;}
.x53_c01133{left:309.120000pt;}
.x2a_c01133{left:316.800000pt;}
.x52_c01133{left:318.720000pt;}
.x14_c01133{left:324.480000pt;}
.x46_c01133{left:327.040000pt;}
.xd_c01133{left:344.960000pt;}
.x3d_c01133{left:356.480000pt;}
.x54_c01133{left:357.760000pt;}
.xe_c01133{left:363.520000pt;}
.x47_c01133{left:365.440000pt;}
.x18_c01133{left:374.400000pt;}
.x5e_c01133{left:376.960000pt;}
.x2b_c01133{left:384.000000pt;}
.x31_c01133{left:393.600000pt;}
.x1e_c01133{left:403.200000pt;}
.x4d_c01133{left:405.120000pt;}
.xf_c01133{left:410.240000pt;}
.x15_c01133{left:412.800000pt;}
.x32_c01133{left:432.640000pt;}
.x4e_c01133{left:437.760000pt;}
.x2c_c01133{left:440.320000pt;}
.x24_c01133{left:442.240000pt;}
.x1a_c01133{left:460.800000pt;}
.x34_c01133{left:471.040000pt;}
.x3e_c01133{left:472.320000pt;}
.x55_c01133{left:473.600000pt;}
.x16_c01133{left:478.080000pt;}
.x10_c01133{left:480.000000pt;}
.x25_c01133{left:489.600000pt;}
.x11_c01133{left:499.200000pt;}
.x1f_c01133{left:508.800000pt;}
.x33_c01133{left:518.400000pt;}
.x3b_c01133{left:520.320000pt;}
.x5f_c01133{left:522.240000pt;}
.x1b_c01133{left:529.920000pt;}
.x20_c01133{left:538.240000pt;}
.x12_c01133{left:547.200000pt;}
.x3f_c01133{left:549.760000pt;}
.x4f_c01133{left:551.040000pt;}
.x35_c01133{left:558.080000pt;}
.x26_c01133{left:559.360000pt;}
.x2d_c01133{left:567.680000pt;}
.x13_c01133{left:575.360000pt;}
.x17_c01133{left:577.280000pt;}
.x40_c01133{left:579.840000pt;}
.x56_c01133{left:581.120000pt;}
.x19_c01133{left:586.880000pt;}
.x1_c01133{left:602.880000pt;}
.x36_c01133{left:616.960000pt;}
.x41_c01133{left:618.240000pt;}
.x57_c01133{left:620.160000pt;}
.x37_c01133{left:635.520000pt;}
.x43_c01133{left:636.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_cec2059f5755e7444934b1cf.woff2')format("woff");}.ff1_c01134{font-family:ff1_c01134;line-height:1.109863;font-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_c01134{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m23_c01134{transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);}
.m2c_c01134{transform:matrix(0.246375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246375,0.000000,0.000000,0.250000,0,0);}
.m1a_c01134{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m2b_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);}
.m1_c01134{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);}
.m30_c01134{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_c01134{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01134{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);}
.m3e_c01134{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);}
.m3a_c01134{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);}
.m36_c01134{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m19_c01134{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);}
.m20_c01134{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);}
.m1e_c01134{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);}
.m2d_c01134{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m24_c01134{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01134{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m27_c01134{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.ma_c01134{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m33_c01134{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m22_c01134{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m9_c01134{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01134{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01134{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m5_c01134{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m10_c01134{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01134{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m17_c01134{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m39_c01134{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m7_c01134{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m26_c01134{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mb_c01134{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01134{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);}
.m46_c01134{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m38_c01134{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m21_c01134{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01134{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_c01134{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m0_c01134{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m49_c01134{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m11_c01134{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m18_c01134{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);}
.m47_c01134{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m40_c01134{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);}
.m44_c01134{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);}
.m3_c01134{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01134{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);}
.mf_c01134{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);}
.m43_c01134{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01134{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01134{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);}
.m32_c01134{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);}
.m15_c01134{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);}
.m3c_c01134{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m48_c01134{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m2_c01134{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m28_c01134{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m29_c01134{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m31_c01134{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m34_c01134{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);}
.m45_c01134{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m16_c01134{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.md_c01134{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);}
.m42_c01134{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m14_c01134{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m4_c01134{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);}
.m25_c01134{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m41_c01134{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);}
.m6_c01134{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01134{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m8_c01134{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m35_c01134{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01134{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m37_c01134{transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01134{transform:matrix(1.047500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.047500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.047500,0.000000,0.000000,0.250000,0,0);}
.v2_c01134{vertical-align:-8.640000px;}
.v0_c01134{vertical-align:0.000000px;}
.v1_c01134{vertical-align:8.640000px;}
.ls1_c01134{letter-spacing:0.000000px;}
.ls0_c01134{letter-spacing:50.642400px;}
.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;}
}
.ws2_c01134{word-spacing:-4.418160px;}
.ws3_c01134{word-spacing:0.000000px;}
.ws0_c01134{word-spacing:9.474000px;}
.ws1_c01134{word-spacing:11.693143px;}
.fc0_c01134{color:transparent;}
.fs10_c01134{font-size:25.920000px;}
.fs7_c01134{font-size:34.560000px;}
.fs4_c01134{font-size:37.440000px;}
.fsa_c01134{font-size:40.320000px;}
.fs9_c01134{font-size:43.200000px;}
.fs3_c01134{font-size:46.080000px;}
.fsd_c01134{font-size:48.960000px;}
.fs2_c01134{font-size:51.840000px;}
.fs6_c01134{font-size:54.720000px;}
.fsc_c01134{font-size:57.600000px;}
.fs0_c01134{font-size:60.480000px;}
.fsb_c01134{font-size:63.360000px;}
.fs8_c01134{font-size:66.240000px;}
.fse_c01134{font-size:69.120000px;}
.fs5_c01134{font-size:72.000000px;}
.fs1_c01134{font-size:74.880000px;}
.fsf_c01134{font-size:77.760000px;}
.y0_c01134{bottom:0.000000px;}
.y8e_c01134{bottom:24.480000px;}
.y8d_c01134{bottom:25.200000px;}
.y8b_c01134{bottom:26.640000px;}
.y89_c01134{bottom:27.360000px;}
.y8c_c01134{bottom:28.080000px;}
.y8a_c01134{bottom:29.520000px;}
.y88_c01134{bottom:30.960000px;}
.y87_c01134{bottom:31.680000px;}
.y85_c01134{bottom:70.560000px;}
.y83_c01134{bottom:72.000000px;}
.y86_c01134{bottom:72.720000px;}
.y84_c01134{bottom:74.160000px;}
.y82_c01134{bottom:99.360000px;}
.y7f_c01134{bottom:100.080000px;}
.y80_c01134{bottom:100.800000px;}
.y81_c01134{bottom:101.520000px;}
.y7e_c01134{bottom:102.960000px;}
.y7c_c01134{bottom:104.400000px;}
.y7d_c01134{bottom:105.120000px;}
.y7b_c01134{bottom:106.560000px;}
.y79_c01134{bottom:146.880000px;}
.y7a_c01134{bottom:148.320000px;}
.y76_c01134{bottom:174.960000px;}
.y77_c01134{bottom:175.680000px;}
.y78_c01134{bottom:176.400000px;}
.y75_c01134{bottom:177.120000px;}
.y74_c01134{bottom:178.560000px;}
.y73_c01134{bottom:180.720000px;}
.y6f_c01134{bottom:217.440000px;}
.y6e_c01134{bottom:220.320000px;}
.y6c_c01134{bottom:221.040000px;}
.y6d_c01134{bottom:223.200000px;}
.y72_c01134{bottom:249.840000px;}
.y71_c01134{bottom:250.560000px;}
.y6a_c01134{bottom:251.280000px;}
.y6b_c01134{bottom:252.000000px;}
.y68_c01134{bottom:253.440000px;}
.y69_c01134{bottom:254.880000px;}
.y67_c01134{bottom:255.600000px;}
.y66_c01134{bottom:293.760000px;}
.y65_c01134{bottom:294.480000px;}
.y63_c01134{bottom:326.160000px;}
.y62_c01134{bottom:326.880000px;}
.y70_c01134{bottom:327.600000px;}
.y64_c01134{bottom:328.320000px;}
.y61_c01134{bottom:329.040000px;}
.y60_c01134{bottom:329.760000px;}
.y5f_c01134{bottom:370.080000px;}
.y5e_c01134{bottom:372.960000px;}
.y59_c01134{bottom:401.760000px;}
.y5c_c01134{bottom:402.480000px;}
.y5d_c01134{bottom:403.200000px;}
.y58_c01134{bottom:403.920000px;}
.y5a_c01134{bottom:404.640000px;}
.y5b_c01134{bottom:405.360000px;}
.y53_c01134{bottom:444.240000px;}
.y55_c01134{bottom:444.960000px;}
.y57_c01134{bottom:445.680000px;}
.y56_c01134{bottom:446.400000px;}
.y52_c01134{bottom:447.120000px;}
.y54_c01134{bottom:447.840000px;}
.y45_c01134{bottom:487.440000px;}
.y46_c01134{bottom:488.160000px;}
.y42_c01134{bottom:488.880000px;}
.y51_c01134{bottom:489.600000px;}
.y43_c01134{bottom:490.320000px;}
.y44_c01134{bottom:491.040000px;}
.y3d_c01134{bottom:529.920000px;}
.y3f_c01134{bottom:530.640000px;}
.y41_c01134{bottom:531.360000px;}
.y3c_c01134{bottom:532.080000px;}
.y50_c01134{bottom:532.800000px;}
.y3e_c01134{bottom:533.520000px;}
.y38_c01134{bottom:571.680000px;}
.y3b_c01134{bottom:572.400000px;}
.y3a_c01134{bottom:573.840000px;}
.y37_c01134{bottom:574.560000px;}
.y40_c01134{bottom:575.280000px;}
.y39_c01134{bottom:576.000000px;}
.y4f_c01134{bottom:576.720000px;}
.y35_c01134{bottom:615.600000px;}
.y34_c01134{bottom:616.320000px;}
.y36_c01134{bottom:619.200000px;}
.y30_c01134{bottom:646.560000px;}
.y32_c01134{bottom:647.280000px;}
.y2f_c01134{bottom:648.000000px;}
.y33_c01134{bottom:650.160000px;}
.y31_c01134{bottom:650.880000px;}
.y4e_c01134{bottom:651.600000px;}
.y2b_c01134{bottom:689.760000px;}
.y2c_c01134{bottom:690.480000px;}
.y2a_c01134{bottom:691.200000px;}
.y2d_c01134{bottom:692.640000px;}
.y4d_c01134{bottom:693.360000px;}
.y2e_c01134{bottom:694.080000px;}
.y4c_c01134{bottom:694.800000px;}
.y26_c01134{bottom:731.520000px;}
.y25_c01134{bottom:732.960000px;}
.y27_c01134{bottom:734.400000px;}
.y28_c01134{bottom:735.840000px;}
.y29_c01134{bottom:736.560000px;}
.y4b_c01134{bottom:738.720000px;}
.y21_c01134{bottom:774.000000px;}
.y20_c01134{bottom:776.160000px;}
.y48_c01134{bottom:779.040000px;}
.y49_c01134{bottom:780.480000px;}
.y24_c01134{bottom:781.200000px;}
.y4a_c01134{bottom:781.920000px;}
.y1f_c01134{bottom:817.200000px;}
.y1e_c01134{bottom:818.640000px;}
.y47_c01134{bottom:822.240000px;}
.y23_c01134{bottom:822.960000px;}
.y22_c01134{bottom:824.400000px;}
.y1d_c01134{bottom:860.400000px;}
.y1b_c01134{bottom:864.720000px;}
.y1a_c01134{bottom:865.440000px;}
.y1c_c01134{bottom:866.160000px;}
.y19_c01134{bottom:867.600000px;}
.ye_c01134{bottom:902.880000px;}
.yd_c01134{bottom:904.320000px;}
.y12_c01134{bottom:905.760000px;}
.yf_c01134{bottom:907.200000px;}
.y10_c01134{bottom:907.920000px;}
.y11_c01134{bottom:908.640000px;}
.y18_c01134{bottom:910.800000px;}
.y9_c01134{bottom:946.080000px;}
.yb_c01134{bottom:948.960000px;}
.ya_c01134{bottom:950.400000px;}
.yc_c01134{bottom:951.120000px;}
.y13_c01134{bottom:953.280000px;}
.y16_c01134{bottom:954.720000px;}
.y17_c01134{bottom:956.160000px;}
.y8_c01134{bottom:990.720000px;}
.y7_c01134{bottom:992.160000px;}
.y2_c01134{bottom:1020.960000px;}
.y1_c01134{bottom:1021.680000px;}
.y3_c01134{bottom:1022.400000px;}
.y5_c01134{bottom:1025.280000px;}
.y4_c01134{bottom:1026.720000px;}
.y15_c01134{bottom:1027.440000px;}
.y6_c01134{bottom:1028.880000px;}
.y14_c01134{bottom:1094.400000px;}
.h13_c01134{height:23.325469px;}
.h9_c01134{height:31.100625px;}
.h6_c01134{height:33.692344px;}
.hc_c01134{height:36.284062px;}
.hb_c01134{height:38.875781px;}
.h5_c01134{height:41.467500px;}
.h10_c01134{height:44.059219px;}
.h4_c01134{height:46.650937px;}
.h8_c01134{height:49.242656px;}
.he_c01134{height:51.834375px;}
.h2_c01134{height:54.426094px;}
.hd_c01134{height:57.017812px;}
.ha_c01134{height:59.609531px;}
.hf_c01134{height:60.474375px;}
.h11_c01134{height:62.201250px;}
.h7_c01134{height:64.792969px;}
.h3_c01134{height:67.384687px;}
.h12_c01134{height:69.976406px;}
.h1_c01134{height:1145.250000px;}
.h0_c01134{height:1145.520000px;}
.w1_c01134{width:766.500000px;}
.w0_c01134{width:766.800000px;}
.x0_c01134{left:0.000000px;}
.x1_c01134{left:64.080000px;}
.x31_c01134{left:65.520000px;}
.x37_c01134{left:66.960000px;}
.x1e_c01134{left:108.000000px;}
.x2e_c01134{left:126.720000px;}
.x2a_c01134{left:129.600000px;}
.x16_c01134{left:136.800000px;}
.x2_c01134{left:138.240000px;}
.x38_c01134{left:140.400000px;}
.x9_c01134{left:180.000000px;}
.x34_c01134{left:192.240000px;}
.x3_c01134{left:222.480000px;}
.x19_c01134{left:223.920000px;}
.xb_c01134{left:234.000000px;}
.x36_c01134{left:245.520000px;}
.xd_c01134{left:265.680000px;}
.x4_c01134{left:275.040000px;}
.xa_c01134{left:276.480000px;}
.x1d_c01134{left:277.920000px;}
.x26_c01134{left:287.280000px;}
.x35_c01134{left:299.520000px;}
.x5_c01134{left:319.680000px;}
.x2b_c01134{left:331.920000px;}
.x27_c01134{left:342.000000px;}
.x32_c01134{left:343.440000px;}
.x1a_c01134{left:352.080000px;}
.x6_c01134{left:362.880000px;}
.x1c_c01134{left:373.680000px;}
.x1f_c01134{left:395.280000px;}
.xc_c01134{left:405.360000px;}
.xe_c01134{left:416.160000px;}
.x2c_c01134{left:426.960000px;}
.x20_c01134{left:438.480000px;}
.x23_c01134{left:449.280000px;}
.x1b_c01134{left:460.080000px;}
.x39_c01134{left:462.240000px;}
.x7_c01134{left:481.680000px;}
.x28_c01134{left:492.480000px;}
.x24_c01134{left:504.000000px;}
.x8_c01134{left:536.400000px;}
.x2d_c01134{left:537.840000px;}
.x29_c01134{left:542.880000px;}
.x18_c01134{left:547.200000px;}
.x13_c01134{left:548.640000px;}
.x25_c01134{left:552.240000px;}
.x17_c01134{left:568.080000px;}
.x14_c01134{left:569.520000px;}
.x33_c01134{left:570.960000px;}
.x15_c01134{left:591.120000px;}
.x10_c01134{left:624.240000px;}
.x3a_c01134{left:626.400000px;}
.x11_c01134{left:656.640000px;}
.x2f_c01134{left:658.080000px;}
.xf_c01134{left:678.240000px;}
.x30_c01134{left:691.200000px;}
.x12_c01134{left:700.560000px;}
.x22_c01134{left:702.000000px;}
.x21_c01134{left:721.440000px;}
@media print{
.v2_c01134{vertical-align:-7.680000pt;}
.v0_c01134{vertical-align:0.000000pt;}
.v1_c01134{vertical-align:7.680000pt;}
.ls1_c01134{letter-spacing:0.000000pt;}
.ls0_c01134{letter-spacing:45.015467pt;}
.ws2_c01134{word-spacing:-3.927253pt;}
.ws3_c01134{word-spacing:0.000000pt;}
.ws0_c01134{word-spacing:8.421333pt;}
.ws1_c01134{word-spacing:10.393905pt;}
.fs10_c01134{font-size:23.040000pt;}
.fs7_c01134{font-size:30.720000pt;}
.fs4_c01134{font-size:33.280000pt;}
.fsa_c01134{font-size:35.840000pt;}
.fs9_c01134{font-size:38.400000pt;}
.fs3_c01134{font-size:40.960000pt;}
.fsd_c01134{font-size:43.520000pt;}
.fs2_c01134{font-size:46.080000pt;}
.fs6_c01134{font-size:48.640000pt;}
.fsc_c01134{font-size:51.200000pt;}
.fs0_c01134{font-size:53.760000pt;}
.fsb_c01134{font-size:56.320000pt;}
.fs8_c01134{font-size:58.880000pt;}
.fse_c01134{font-size:61.440000pt;}
.fs5_c01134{font-size:64.000000pt;}
.fs1_c01134{font-size:66.560000pt;}
.fsf_c01134{font-size:69.120000pt;}
.y0_c01134{bottom:0.000000pt;}
.y8e_c01134{bottom:21.760000pt;}
.y8d_c01134{bottom:22.400000pt;}
.y8b_c01134{bottom:23.680000pt;}
.y89_c01134{bottom:24.320000pt;}
.y8c_c01134{bottom:24.960000pt;}
.y8a_c01134{bottom:26.240000pt;}
.y88_c01134{bottom:27.520000pt;}
.y87_c01134{bottom:28.160000pt;}
.y85_c01134{bottom:62.720000pt;}
.y83_c01134{bottom:64.000000pt;}
.y86_c01134{bottom:64.640000pt;}
.y84_c01134{bottom:65.920000pt;}
.y82_c01134{bottom:88.320000pt;}
.y7f_c01134{bottom:88.960000pt;}
.y80_c01134{bottom:89.600000pt;}
.y81_c01134{bottom:90.240000pt;}
.y7e_c01134{bottom:91.520000pt;}
.y7c_c01134{bottom:92.800000pt;}
.y7d_c01134{bottom:93.440000pt;}
.y7b_c01134{bottom:94.720000pt;}
.y79_c01134{bottom:130.560000pt;}
.y7a_c01134{bottom:131.840000pt;}
.y76_c01134{bottom:155.520000pt;}
.y77_c01134{bottom:156.160000pt;}
.y78_c01134{bottom:156.800000pt;}
.y75_c01134{bottom:157.440000pt;}
.y74_c01134{bottom:158.720000pt;}
.y73_c01134{bottom:160.640000pt;}
.y6f_c01134{bottom:193.280000pt;}
.y6e_c01134{bottom:195.840000pt;}
.y6c_c01134{bottom:196.480000pt;}
.y6d_c01134{bottom:198.400000pt;}
.y72_c01134{bottom:222.080000pt;}
.y71_c01134{bottom:222.720000pt;}
.y6a_c01134{bottom:223.360000pt;}
.y6b_c01134{bottom:224.000000pt;}
.y68_c01134{bottom:225.280000pt;}
.y69_c01134{bottom:226.560000pt;}
.y67_c01134{bottom:227.200000pt;}
.y66_c01134{bottom:261.120000pt;}
.y65_c01134{bottom:261.760000pt;}
.y63_c01134{bottom:289.920000pt;}
.y62_c01134{bottom:290.560000pt;}
.y70_c01134{bottom:291.200000pt;}
.y64_c01134{bottom:291.840000pt;}
.y61_c01134{bottom:292.480000pt;}
.y60_c01134{bottom:293.120000pt;}
.y5f_c01134{bottom:328.960000pt;}
.y5e_c01134{bottom:331.520000pt;}
.y59_c01134{bottom:357.120000pt;}
.y5c_c01134{bottom:357.760000pt;}
.y5d_c01134{bottom:358.400000pt;}
.y58_c01134{bottom:359.040000pt;}
.y5a_c01134{bottom:359.680000pt;}
.y5b_c01134{bottom:360.320000pt;}
.y53_c01134{bottom:394.880000pt;}
.y55_c01134{bottom:395.520000pt;}
.y57_c01134{bottom:396.160000pt;}
.y56_c01134{bottom:396.800000pt;}
.y52_c01134{bottom:397.440000pt;}
.y54_c01134{bottom:398.080000pt;}
.y45_c01134{bottom:433.280000pt;}
.y46_c01134{bottom:433.920000pt;}
.y42_c01134{bottom:434.560000pt;}
.y51_c01134{bottom:435.200000pt;}
.y43_c01134{bottom:435.840000pt;}
.y44_c01134{bottom:436.480000pt;}
.y3d_c01134{bottom:471.040000pt;}
.y3f_c01134{bottom:471.680000pt;}
.y41_c01134{bottom:472.320000pt;}
.y3c_c01134{bottom:472.960000pt;}
.y50_c01134{bottom:473.600000pt;}
.y3e_c01134{bottom:474.240000pt;}
.y38_c01134{bottom:508.160000pt;}
.y3b_c01134{bottom:508.800000pt;}
.y3a_c01134{bottom:510.080000pt;}
.y37_c01134{bottom:510.720000pt;}
.y40_c01134{bottom:511.360000pt;}
.y39_c01134{bottom:512.000000pt;}
.y4f_c01134{bottom:512.640000pt;}
.y35_c01134{bottom:547.200000pt;}
.y34_c01134{bottom:547.840000pt;}
.y36_c01134{bottom:550.400000pt;}
.y30_c01134{bottom:574.720000pt;}
.y32_c01134{bottom:575.360000pt;}
.y2f_c01134{bottom:576.000000pt;}
.y33_c01134{bottom:577.920000pt;}
.y31_c01134{bottom:578.560000pt;}
.y4e_c01134{bottom:579.200000pt;}
.y2b_c01134{bottom:613.120000pt;}
.y2c_c01134{bottom:613.760000pt;}
.y2a_c01134{bottom:614.400000pt;}
.y2d_c01134{bottom:615.680000pt;}
.y4d_c01134{bottom:616.320000pt;}
.y2e_c01134{bottom:616.960000pt;}
.y4c_c01134{bottom:617.600000pt;}
.y26_c01134{bottom:650.240000pt;}
.y25_c01134{bottom:651.520000pt;}
.y27_c01134{bottom:652.800000pt;}
.y28_c01134{bottom:654.080000pt;}
.y29_c01134{bottom:654.720000pt;}
.y4b_c01134{bottom:656.640000pt;}
.y21_c01134{bottom:688.000000pt;}
.y20_c01134{bottom:689.920000pt;}
.y48_c01134{bottom:692.480000pt;}
.y49_c01134{bottom:693.760000pt;}
.y24_c01134{bottom:694.400000pt;}
.y4a_c01134{bottom:695.040000pt;}
.y1f_c01134{bottom:726.400000pt;}
.y1e_c01134{bottom:727.680000pt;}
.y47_c01134{bottom:730.880000pt;}
.y23_c01134{bottom:731.520000pt;}
.y22_c01134{bottom:732.800000pt;}
.y1d_c01134{bottom:764.800000pt;}
.y1b_c01134{bottom:768.640000pt;}
.y1a_c01134{bottom:769.280000pt;}
.y1c_c01134{bottom:769.920000pt;}
.y19_c01134{bottom:771.200000pt;}
.ye_c01134{bottom:802.560000pt;}
.yd_c01134{bottom:803.840000pt;}
.y12_c01134{bottom:805.120000pt;}
.yf_c01134{bottom:806.400000pt;}
.y10_c01134{bottom:807.040000pt;}
.y11_c01134{bottom:807.680000pt;}
.y18_c01134{bottom:809.600000pt;}
.y9_c01134{bottom:840.960000pt;}
.yb_c01134{bottom:843.520000pt;}
.ya_c01134{bottom:844.800000pt;}
.yc_c01134{bottom:845.440000pt;}
.y13_c01134{bottom:847.360000pt;}
.y16_c01134{bottom:848.640000pt;}
.y17_c01134{bottom:849.920000pt;}
.y8_c01134{bottom:880.640000pt;}
.y7_c01134{bottom:881.920000pt;}
.y2_c01134{bottom:907.520000pt;}
.y1_c01134{bottom:908.160000pt;}
.y3_c01134{bottom:908.800000pt;}
.y5_c01134{bottom:911.360000pt;}
.y4_c01134{bottom:912.640000pt;}
.y15_c01134{bottom:913.280000pt;}
.y6_c01134{bottom:914.560000pt;}
.y14_c01134{bottom:972.800000pt;}
.h13_c01134{height:20.733750pt;}
.h9_c01134{height:27.645000pt;}
.h6_c01134{height:29.948750pt;}
.hc_c01134{height:32.252500pt;}
.hb_c01134{height:34.556250pt;}
.h5_c01134{height:36.860000pt;}
.h10_c01134{height:39.163750pt;}
.h4_c01134{height:41.467500pt;}
.h8_c01134{height:43.771250pt;}
.he_c01134{height:46.075000pt;}
.h2_c01134{height:48.378750pt;}
.hd_c01134{height:50.682500pt;}
.ha_c01134{height:52.986250pt;}
.hf_c01134{height:53.755000pt;}
.h11_c01134{height:55.290000pt;}
.h7_c01134{height:57.593750pt;}
.h3_c01134{height:59.897500pt;}
.h12_c01134{height:62.201250pt;}
.h1_c01134{height:1018.000000pt;}
.h0_c01134{height:1018.240000pt;}
.w1_c01134{width:681.333333pt;}
.w0_c01134{width:681.600000pt;}
.x0_c01134{left:0.000000pt;}
.x1_c01134{left:56.960000pt;}
.x31_c01134{left:58.240000pt;}
.x37_c01134{left:59.520000pt;}
.x1e_c01134{left:96.000000pt;}
.x2e_c01134{left:112.640000pt;}
.x2a_c01134{left:115.200000pt;}
.x16_c01134{left:121.600000pt;}
.x2_c01134{left:122.880000pt;}
.x38_c01134{left:124.800000pt;}
.x9_c01134{left:160.000000pt;}
.x34_c01134{left:170.880000pt;}
.x3_c01134{left:197.760000pt;}
.x19_c01134{left:199.040000pt;}
.xb_c01134{left:208.000000pt;}
.x36_c01134{left:218.240000pt;}
.xd_c01134{left:236.160000pt;}
.x4_c01134{left:244.480000pt;}
.xa_c01134{left:245.760000pt;}
.x1d_c01134{left:247.040000pt;}
.x26_c01134{left:255.360000pt;}
.x35_c01134{left:266.240000pt;}
.x5_c01134{left:284.160000pt;}
.x2b_c01134{left:295.040000pt;}
.x27_c01134{left:304.000000pt;}
.x32_c01134{left:305.280000pt;}
.x1a_c01134{left:312.960000pt;}
.x6_c01134{left:322.560000pt;}
.x1c_c01134{left:332.160000pt;}
.x1f_c01134{left:351.360000pt;}
.xc_c01134{left:360.320000pt;}
.xe_c01134{left:369.920000pt;}
.x2c_c01134{left:379.520000pt;}
.x20_c01134{left:389.760000pt;}
.x23_c01134{left:399.360000pt;}
.x1b_c01134{left:408.960000pt;}
.x39_c01134{left:410.880000pt;}
.x7_c01134{left:428.160000pt;}
.x28_c01134{left:437.760000pt;}
.x24_c01134{left:448.000000pt;}
.x8_c01134{left:476.800000pt;}
.x2d_c01134{left:478.080000pt;}
.x29_c01134{left:482.560000pt;}
.x18_c01134{left:486.400000pt;}
.x13_c01134{left:487.680000pt;}
.x25_c01134{left:490.880000pt;}
.x17_c01134{left:504.960000pt;}
.x14_c01134{left:506.240000pt;}
.x33_c01134{left:507.520000pt;}
.x15_c01134{left:525.440000pt;}
.x10_c01134{left:554.880000pt;}
.x3a_c01134{left:556.800000pt;}
.x11_c01134{left:583.680000pt;}
.x2f_c01134{left:584.960000pt;}
.xf_c01134{left:602.880000pt;}
.x30_c01134{left:614.400000pt;}
.x12_c01134{left:622.720000pt;}
.x22_c01134{left:624.000000pt;}
.x21_c01134{left:641.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b489467fd7cf53d41dfd6d56.woff2')format("woff");}.ff1_c01135{font-family:ff1_c01135;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m46_c01135{transform:matrix(0.111100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111100,0.000000,0.000000,0.250000,0,0);}
.m49_c01135{transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);}
.m30_c01135{transform:matrix(0.202325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202325,0.000000,0.000000,0.250000,0,0);}
.m37_c01135{transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);}
.m5d_c01135{transform:matrix(0.215275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215275,0.000000,0.000000,0.250000,0,0);}
.m16_c01135{transform:matrix(0.217125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217125,0.000000,0.000000,0.250000,0,0);}
.m27_c01135{transform:matrix(0.230350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230350,0.000000,0.000000,0.250000,0,0);}
.m4b_c01135{transform:matrix(0.234200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234200,0.000000,0.000000,0.250000,0,0);}
.m60_c01135{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m50_c01135{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m31_c01135{transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);}
.m57_c01135{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m3b_c01135{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);}
.m54_c01135{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);}
.m2b_c01135{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);}
.m51_c01135{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);}
.m59_c01135{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);}
.m25_c01135{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);}
.m41_c01135{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);}
.m20_c01135{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_c01135{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m8_c01135{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_c01135{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m35_c01135{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mc_c01135{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);}
.m47_c01135{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m7_c01135{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m32_c01135{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m18_c01135{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m52_c01135{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m24_c01135{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m9_c01135{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m23_c01135{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m6_c01135{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m39_c01135{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3_c01135{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m17_c01135{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01135{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01135{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01135{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m13_c01135{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2_c01135{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01135{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);}
.m2a_c01135{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m56_c01135{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m12_c01135{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);}
.m4a_c01135{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);}
.m4c_c01135{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m55_c01135{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m45_c01135{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m1_c01135{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m58_c01135{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m19_c01135{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m48_c01135{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);}
.m4f_c01135{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);}
.m2e_c01135{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m43_c01135{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m5e_c01135{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);}
.m28_c01135{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);}
.m0_c01135{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m15_c01135{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);}
.m38_c01135{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);}
.m3f_c01135{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01135{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01135{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m40_c01135{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);}
.m3c_c01135{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m53_c01135{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);}
.m5b_c01135{transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01135{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.mf_c01135{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m36_c01135{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m5a_c01135{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);}
.m4_c01135{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m4d_c01135{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m34_c01135{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.ma_c01135{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);}
.m3e_c01135{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);}
.m42_c01135{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m11_c01135{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m29_c01135{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_c01135{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m10_c01135{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m14_c01135{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m21_c01135{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m22_c01135{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.mb_c01135{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m44_c01135{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);}
.m5_c01135{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.md_c01135{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);}
.m33_c01135{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m4e_c01135{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01135{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);}
.m5c_c01135{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m5f_c01135{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01135{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01135{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.v0_c01135{vertical-align:0.000000px;}
.v2_c01135{vertical-align:2.880000px;}
.v1_c01135{vertical-align:5.760000px;}
.ls1_c01135{letter-spacing:0.000000px;}
.ls0_c01135{letter-spacing:351.049680px;}
.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;}
}
.ws2_c01135{word-spacing:0.000000px;}
.ws1_c01135{word-spacing:56.131200px;}
.ws0_c01135{word-spacing:181.224000px;}
.fc0_c01135{color:transparent;}
.fs12_c01135{font-size:11.520000px;}
.fs14_c01135{font-size:14.400000px;}
.fsd_c01135{font-size:17.280000px;}
.fs11_c01135{font-size:23.040000px;}
.fse_c01135{font-size:28.800000px;}
.fs13_c01135{font-size:31.680000px;}
.fs4_c01135{font-size:34.560000px;}
.fsa_c01135{font-size:37.440000px;}
.fs10_c01135{font-size:43.200000px;}
.fs8_c01135{font-size:46.080000px;}
.fs3_c01135{font-size:48.960000px;}
.fs6_c01135{font-size:51.840000px;}
.fs5_c01135{font-size:54.720000px;}
.fs9_c01135{font-size:57.600000px;}
.fs1_c01135{font-size:60.480000px;}
.fs2_c01135{font-size:63.360000px;}
.fsb_c01135{font-size:66.240000px;}
.fs15_c01135{font-size:69.120000px;}
.fs0_c01135{font-size:72.000000px;}
.fs7_c01135{font-size:74.880000px;}
.fsf_c01135{font-size:77.760000px;}
.fsc_c01135{font-size:97.920000px;}
.fs16_c01135{font-size:103.680000px;}
.y0_c01135{bottom:0.000000px;}
.yae_c01135{bottom:113.040000px;}
.yad_c01135{bottom:113.760000px;}
.yac_c01135{bottom:114.480000px;}
.yab_c01135{bottom:115.920000px;}
.yaa_c01135{bottom:120.240000px;}
.ya9_c01135{bottom:120.960000px;}
.ya8_c01135{bottom:155.520000px;}
.ya7_c01135{bottom:156.240000px;}
.ya5_c01135{bottom:156.960000px;}
.ya4_c01135{bottom:158.400000px;}
.ya6_c01135{bottom:159.120000px;}
.ya1_c01135{bottom:162.720000px;}
.ya3_c01135{bottom:164.160000px;}
.ya2_c01135{bottom:164.880000px;}
.y9f_c01135{bottom:199.440000px;}
.ya0_c01135{bottom:200.160000px;}
.y9e_c01135{bottom:200.880000px;}
.y9d_c01135{bottom:201.600000px;}
.y9c_c01135{bottom:203.760000px;}
.y99_c01135{bottom:205.920000px;}
.y9b_c01135{bottom:206.640000px;}
.y9a_c01135{bottom:207.360000px;}
.y96_c01135{bottom:234.000000px;}
.y95_c01135{bottom:242.640000px;}
.y98_c01135{bottom:244.080000px;}
.y97_c01135{bottom:245.520000px;}
.y91_c01135{bottom:247.680000px;}
.y94_c01135{bottom:248.400000px;}
.y93_c01135{bottom:249.120000px;}
.y92_c01135{bottom:249.840000px;}
.y90_c01135{bottom:285.120000px;}
.y8f_c01135{bottom:285.840000px;}
.y8e_c01135{bottom:287.280000px;}
.y8d_c01135{bottom:288.000000px;}
.y8b_c01135{bottom:290.880000px;}
.y8c_c01135{bottom:293.040000px;}
.y89_c01135{bottom:328.320000px;}
.y88_c01135{bottom:329.760000px;}
.y8a_c01135{bottom:330.480000px;}
.y86_c01135{bottom:333.360000px;}
.y87_c01135{bottom:335.520000px;}
.y84_c01135{bottom:375.120000px;}
.y85_c01135{bottom:375.840000px;}
.y83_c01135{bottom:378.000000px;}
.y81_c01135{bottom:437.040000px;}
.y82_c01135{bottom:437.760000px;}
.y80_c01135{bottom:438.480000px;}
.y7f_c01135{bottom:439.200000px;}
.y7e_c01135{bottom:439.920000px;}
.y7d_c01135{bottom:441.360000px;}
.y7c_c01135{bottom:457.200000px;}
.y79_c01135{bottom:457.920000px;}
.y7b_c01135{bottom:458.640000px;}
.y7a_c01135{bottom:459.360000px;}
.y77_c01135{bottom:460.080000px;}
.y76_c01135{bottom:460.800000px;}
.y78_c01135{bottom:462.240000px;}
.y75_c01135{bottom:462.960000px;}
.y74_c01135{bottom:464.400000px;}
.y73_c01135{bottom:478.800000px;}
.y72_c01135{bottom:479.520000px;}
.y71_c01135{bottom:480.240000px;}
.y6f_c01135{bottom:480.960000px;}
.y70_c01135{bottom:481.680000px;}
.y6e_c01135{bottom:482.400000px;}
.y6c_c01135{bottom:483.120000px;}
.y6d_c01135{bottom:484.560000px;}
.y6b_c01135{bottom:501.120000px;}
.y69_c01135{bottom:501.840000px;}
.y67_c01135{bottom:502.560000px;}
.y68_c01135{bottom:503.280000px;}
.y6a_c01135{bottom:504.000000px;}
.y65_c01135{bottom:504.720000px;}
.y66_c01135{bottom:506.880000px;}
.y64_c01135{bottom:522.720000px;}
.y62_c01135{bottom:523.440000px;}
.y60_c01135{bottom:524.160000px;}
.y5f_c01135{bottom:524.880000px;}
.y63_c01135{bottom:525.600000px;}
.y61_c01135{bottom:526.320000px;}
.y5e_c01135{bottom:527.040000px;}
.y5d_c01135{bottom:528.480000px;}
.y58_c01135{bottom:552.960000px;}
.y57_c01135{bottom:553.680000px;}
.y5b_c01135{bottom:556.560000px;}
.y5a_c01135{bottom:557.280000px;}
.y56_c01135{bottom:558.000000px;}
.y55_c01135{bottom:558.720000px;}
.y59_c01135{bottom:559.440000px;}
.y5c_c01135{bottom:563.040000px;}
.y51_c01135{bottom:599.040000px;}
.y54_c01135{bottom:599.760000px;}
.y53_c01135{bottom:601.200000px;}
.y52_c01135{bottom:601.920000px;}
.y4f_c01135{bottom:619.920000px;}
.y50_c01135{bottom:620.640000px;}
.y4d_c01135{bottom:630.720000px;}
.y4c_c01135{bottom:631.440000px;}
.y4e_c01135{bottom:633.600000px;}
.y4b_c01135{bottom:635.040000px;}
.y48_c01135{bottom:642.240000px;}
.y45_c01135{bottom:642.960000px;}
.y46_c01135{bottom:643.680000px;}
.y4a_c01135{bottom:644.400000px;}
.y49_c01135{bottom:645.120000px;}
.y47_c01135{bottom:648.000000px;}
.y3f_c01135{bottom:663.120000px;}
.y43_c01135{bottom:663.840000px;}
.y40_c01135{bottom:664.560000px;}
.y41_c01135{bottom:666.000000px;}
.y42_c01135{bottom:666.720000px;}
.y44_c01135{bottom:669.600000px;}
.y3e_c01135{bottom:694.080000px;}
.y3a_c01135{bottom:695.520000px;}
.y3c_c01135{bottom:696.240000px;}
.y39_c01135{bottom:697.680000px;}
.y3b_c01135{bottom:699.120000px;}
.y3d_c01135{bottom:701.280000px;}
.y33_c01135{bottom:707.040000px;}
.y34_c01135{bottom:707.760000px;}
.y38_c01135{bottom:708.480000px;}
.y37_c01135{bottom:718.560000px;}
.y35_c01135{bottom:719.280000px;}
.y36_c01135{bottom:720.000000px;}
.y2f_c01135{bottom:757.440000px;}
.y2d_c01135{bottom:759.600000px;}
.y2e_c01135{bottom:761.760000px;}
.y30_c01135{bottom:762.480000px;}
.y31_c01135{bottom:763.200000px;}
.y32_c01135{bottom:763.920000px;}
.y27_c01135{bottom:801.360000px;}
.y26_c01135{bottom:802.800000px;}
.y28_c01135{bottom:803.520000px;}
.y2c_c01135{bottom:804.240000px;}
.y29_c01135{bottom:804.960000px;}
.y2a_c01135{bottom:806.400000px;}
.y2b_c01135{bottom:812.880000px;}
.y21_c01135{bottom:843.840000px;}
.y20_c01135{bottom:845.280000px;}
.y24_c01135{bottom:846.720000px;}
.y22_c01135{bottom:847.440000px;}
.y23_c01135{bottom:848.160000px;}
.y25_c01135{bottom:848.880000px;}
.y1a_c01135{bottom:887.040000px;}
.y19_c01135{bottom:887.760000px;}
.y1d_c01135{bottom:889.920000px;}
.y1b_c01135{bottom:890.640000px;}
.y1c_c01135{bottom:891.360000px;}
.y1f_c01135{bottom:892.080000px;}
.y1e_c01135{bottom:892.800000px;}
.y16_c01135{bottom:922.320000px;}
.y12_c01135{bottom:929.520000px;}
.y13_c01135{bottom:930.240000px;}
.y15_c01135{bottom:930.960000px;}
.y17_c01135{bottom:932.400000px;}
.y14_c01135{bottom:933.120000px;}
.y18_c01135{bottom:933.840000px;}
.y10_c01135{bottom:974.880000px;}
.y11_c01135{bottom:975.600000px;}
.y8_c01135{bottom:1004.400000px;}
.y9_c01135{bottom:1005.120000px;}
.yc_c01135{bottom:1005.840000px;}
.ya_c01135{bottom:1007.280000px;}
.yb_c01135{bottom:1008.000000px;}
.ye_c01135{bottom:1008.720000px;}
.yd_c01135{bottom:1009.440000px;}
.yf_c01135{bottom:1010.160000px;}
.y2_c01135{bottom:1046.880000px;}
.y3_c01135{bottom:1047.600000px;}
.y4_c01135{bottom:1048.320000px;}
.y6_c01135{bottom:1051.200000px;}
.y5_c01135{bottom:1051.920000px;}
.y7_c01135{bottom:1053.360000px;}
.y1_c01135{bottom:1086.480000px;}
.h16_c01135{height:10.366875px;}
.h19_c01135{height:12.958594px;}
.h11_c01135{height:15.550313px;}
.h15_c01135{height:20.733750px;}
.h12_c01135{height:25.917187px;}
.h18_c01135{height:28.508906px;}
.h6_c01135{height:31.100625px;}
.hc_c01135{height:33.692344px;}
.h14_c01135{height:38.875781px;}
.ha_c01135{height:41.467500px;}
.h5_c01135{height:44.059219px;}
.h8_c01135{height:46.650937px;}
.h7_c01135{height:49.242656px;}
.h10_c01135{height:49.530938px;}
.hb_c01135{height:51.834375px;}
.h17_c01135{height:52.122656px;}
.h3_c01135{height:54.426094px;}
.h4_c01135{height:57.017812px;}
.hf_c01135{height:57.594375px;}
.hd_c01135{height:59.609531px;}
.h1a_c01135{height:62.201250px;}
.h2_c01135{height:64.792969px;}
.h9_c01135{height:67.384687px;}
.h13_c01135{height:69.976406px;}
.he_c01135{height:88.118437px;}
.h1b_c01135{height:93.301875px;}
.h1_c01135{height:1130.250000px;}
.h0_c01135{height:1130.400000px;}
.w0_c01135{width:745.200000px;}
.w1_c01135{width:745.500000px;}
.x0_c01135{left:0.000000px;}
.x49_c01135{left:47.520000px;}
.x23_c01135{left:48.960000px;}
.x2_c01135{left:50.400000px;}
.x40_c01135{left:58.320000px;}
.x3c_c01135{left:59.760000px;}
.x31_c01135{left:79.920000px;}
.x1e_c01135{left:82.080000px;}
.x43_c01135{left:100.080000px;}
.x3d_c01135{left:101.520000px;}
.x47_c01135{left:120.960000px;}
.x1b_c01135{left:122.400000px;}
.x3_c01135{left:123.840000px;}
.x3e_c01135{left:133.920000px;}
.x32_c01135{left:144.000000px;}
.x37_c01135{left:155.520000px;}
.x45_c01135{left:164.160000px;}
.x1f_c01135{left:174.960000px;}
.xe_c01135{left:176.400000px;}
.x42_c01135{left:196.560000px;}
.x38_c01135{left:198.000000px;}
.x16_c01135{left:208.080000px;}
.x4_c01135{left:209.520000px;}
.x4a_c01135{left:216.720000px;}
.x1c_c01135{left:219.600000px;}
.x44_c01135{left:226.800000px;}
.x28_c01135{left:230.400000px;}
.x20_c01135{left:241.200000px;}
.x29_c01135{left:260.640000px;}
.x5_c01135{left:262.080000px;}
.xf_c01135{left:272.880000px;}
.x21_c01135{left:294.480000px;}
.x24_c01135{left:295.920000px;}
.x4b_c01135{left:302.400000px;}
.x17_c01135{left:304.560000px;}
.x6_c01135{left:316.800000px;}
.x41_c01135{left:326.160000px;}
.x10_c01135{left:327.600000px;}
.x22_c01135{left:348.480000px;}
.x13_c01135{left:359.280000px;}
.x2a_c01135{left:381.600000px;}
.x2b_c01135{left:400.320000px;}
.x18_c01135{left:402.480000px;}
.x11_c01135{left:412.560000px;}
.x25_c01135{left:414.000000px;}
.x39_c01135{left:423.360000px;}
.x2c_c01135{left:434.880000px;}
.xb_c01135{left:444.960000px;}
.x26_c01135{left:455.760000px;}
.x19_c01135{left:457.200000px;}
.x2d_c01135{left:478.080000px;}
.x27_c01135{left:488.160000px;}
.x2e_c01135{left:499.680000px;}
.x34_c01135{left:509.760000px;}
.x4c_c01135{left:519.120000px;}
.x12_c01135{left:521.280000px;}
.x7_c01135{left:522.720000px;}
.x3a_c01135{left:532.080000px;}
.x35_c01135{left:544.320000px;}
.x3f_c01135{left:554.400000px;}
.x36_c01135{left:576.000000px;}
.x2f_c01135{left:587.520000px;}
.x33_c01135{left:596.160000px;}
.x4e_c01135{left:606.960000px;}
.x14_c01135{left:609.120000px;}
.x8_c01135{left:610.560000px;}
.x1a_c01135{left:620.640000px;}
.x30_c01135{left:630.000000px;}
.x4f_c01135{left:640.800000px;}
.x15_c01135{left:642.240000px;}
.x9_c01135{left:643.680000px;}
.x1d_c01135{left:652.320000px;}
.x3b_c01135{left:663.840000px;}
.x4d_c01135{left:673.920000px;}
.xa_c01135{left:676.080000px;}
.x1_c01135{left:677.520000px;}
.x48_c01135{left:684.720000px;}
.xc_c01135{left:686.160000px;}
.x46_c01135{left:705.600000px;}
.xd_c01135{left:707.040000px;}
@media print{
.v0_c01135{vertical-align:0.000000pt;}
.v2_c01135{vertical-align:2.560000pt;}
.v1_c01135{vertical-align:5.120000pt;}
.ls1_c01135{letter-spacing:0.000000pt;}
.ls0_c01135{letter-spacing:312.044160pt;}
.ws2_c01135{word-spacing:0.000000pt;}
.ws1_c01135{word-spacing:49.894400pt;}
.ws0_c01135{word-spacing:161.088000pt;}
.fs12_c01135{font-size:10.240000pt;}
.fs14_c01135{font-size:12.800000pt;}
.fsd_c01135{font-size:15.360000pt;}
.fs11_c01135{font-size:20.480000pt;}
.fse_c01135{font-size:25.600000pt;}
.fs13_c01135{font-size:28.160000pt;}
.fs4_c01135{font-size:30.720000pt;}
.fsa_c01135{font-size:33.280000pt;}
.fs10_c01135{font-size:38.400000pt;}
.fs8_c01135{font-size:40.960000pt;}
.fs3_c01135{font-size:43.520000pt;}
.fs6_c01135{font-size:46.080000pt;}
.fs5_c01135{font-size:48.640000pt;}
.fs9_c01135{font-size:51.200000pt;}
.fs1_c01135{font-size:53.760000pt;}
.fs2_c01135{font-size:56.320000pt;}
.fsb_c01135{font-size:58.880000pt;}
.fs15_c01135{font-size:61.440000pt;}
.fs0_c01135{font-size:64.000000pt;}
.fs7_c01135{font-size:66.560000pt;}
.fsf_c01135{font-size:69.120000pt;}
.fsc_c01135{font-size:87.040000pt;}
.fs16_c01135{font-size:92.160000pt;}
.y0_c01135{bottom:0.000000pt;}
.yae_c01135{bottom:100.480000pt;}
.yad_c01135{bottom:101.120000pt;}
.yac_c01135{bottom:101.760000pt;}
.yab_c01135{bottom:103.040000pt;}
.yaa_c01135{bottom:106.880000pt;}
.ya9_c01135{bottom:107.520000pt;}
.ya8_c01135{bottom:138.240000pt;}
.ya7_c01135{bottom:138.880000pt;}
.ya5_c01135{bottom:139.520000pt;}
.ya4_c01135{bottom:140.800000pt;}
.ya6_c01135{bottom:141.440000pt;}
.ya1_c01135{bottom:144.640000pt;}
.ya3_c01135{bottom:145.920000pt;}
.ya2_c01135{bottom:146.560000pt;}
.y9f_c01135{bottom:177.280000pt;}
.ya0_c01135{bottom:177.920000pt;}
.y9e_c01135{bottom:178.560000pt;}
.y9d_c01135{bottom:179.200000pt;}
.y9c_c01135{bottom:181.120000pt;}
.y99_c01135{bottom:183.040000pt;}
.y9b_c01135{bottom:183.680000pt;}
.y9a_c01135{bottom:184.320000pt;}
.y96_c01135{bottom:208.000000pt;}
.y95_c01135{bottom:215.680000pt;}
.y98_c01135{bottom:216.960000pt;}
.y97_c01135{bottom:218.240000pt;}
.y91_c01135{bottom:220.160000pt;}
.y94_c01135{bottom:220.800000pt;}
.y93_c01135{bottom:221.440000pt;}
.y92_c01135{bottom:222.080000pt;}
.y90_c01135{bottom:253.440000pt;}
.y8f_c01135{bottom:254.080000pt;}
.y8e_c01135{bottom:255.360000pt;}
.y8d_c01135{bottom:256.000000pt;}
.y8b_c01135{bottom:258.560000pt;}
.y8c_c01135{bottom:260.480000pt;}
.y89_c01135{bottom:291.840000pt;}
.y88_c01135{bottom:293.120000pt;}
.y8a_c01135{bottom:293.760000pt;}
.y86_c01135{bottom:296.320000pt;}
.y87_c01135{bottom:298.240000pt;}
.y84_c01135{bottom:333.440000pt;}
.y85_c01135{bottom:334.080000pt;}
.y83_c01135{bottom:336.000000pt;}
.y81_c01135{bottom:388.480000pt;}
.y82_c01135{bottom:389.120000pt;}
.y80_c01135{bottom:389.760000pt;}
.y7f_c01135{bottom:390.400000pt;}
.y7e_c01135{bottom:391.040000pt;}
.y7d_c01135{bottom:392.320000pt;}
.y7c_c01135{bottom:406.400000pt;}
.y79_c01135{bottom:407.040000pt;}
.y7b_c01135{bottom:407.680000pt;}
.y7a_c01135{bottom:408.320000pt;}
.y77_c01135{bottom:408.960000pt;}
.y76_c01135{bottom:409.600000pt;}
.y78_c01135{bottom:410.880000pt;}
.y75_c01135{bottom:411.520000pt;}
.y74_c01135{bottom:412.800000pt;}
.y73_c01135{bottom:425.600000pt;}
.y72_c01135{bottom:426.240000pt;}
.y71_c01135{bottom:426.880000pt;}
.y6f_c01135{bottom:427.520000pt;}
.y70_c01135{bottom:428.160000pt;}
.y6e_c01135{bottom:428.800000pt;}
.y6c_c01135{bottom:429.440000pt;}
.y6d_c01135{bottom:430.720000pt;}
.y6b_c01135{bottom:445.440000pt;}
.y69_c01135{bottom:446.080000pt;}
.y67_c01135{bottom:446.720000pt;}
.y68_c01135{bottom:447.360000pt;}
.y6a_c01135{bottom:448.000000pt;}
.y65_c01135{bottom:448.640000pt;}
.y66_c01135{bottom:450.560000pt;}
.y64_c01135{bottom:464.640000pt;}
.y62_c01135{bottom:465.280000pt;}
.y60_c01135{bottom:465.920000pt;}
.y5f_c01135{bottom:466.560000pt;}
.y63_c01135{bottom:467.200000pt;}
.y61_c01135{bottom:467.840000pt;}
.y5e_c01135{bottom:468.480000pt;}
.y5d_c01135{bottom:469.760000pt;}
.y58_c01135{bottom:491.520000pt;}
.y57_c01135{bottom:492.160000pt;}
.y5b_c01135{bottom:494.720000pt;}
.y5a_c01135{bottom:495.360000pt;}
.y56_c01135{bottom:496.000000pt;}
.y55_c01135{bottom:496.640000pt;}
.y59_c01135{bottom:497.280000pt;}
.y5c_c01135{bottom:500.480000pt;}
.y51_c01135{bottom:532.480000pt;}
.y54_c01135{bottom:533.120000pt;}
.y53_c01135{bottom:534.400000pt;}
.y52_c01135{bottom:535.040000pt;}
.y4f_c01135{bottom:551.040000pt;}
.y50_c01135{bottom:551.680000pt;}
.y4d_c01135{bottom:560.640000pt;}
.y4c_c01135{bottom:561.280000pt;}
.y4e_c01135{bottom:563.200000pt;}
.y4b_c01135{bottom:564.480000pt;}
.y48_c01135{bottom:570.880000pt;}
.y45_c01135{bottom:571.520000pt;}
.y46_c01135{bottom:572.160000pt;}
.y4a_c01135{bottom:572.800000pt;}
.y49_c01135{bottom:573.440000pt;}
.y47_c01135{bottom:576.000000pt;}
.y3f_c01135{bottom:589.440000pt;}
.y43_c01135{bottom:590.080000pt;}
.y40_c01135{bottom:590.720000pt;}
.y41_c01135{bottom:592.000000pt;}
.y42_c01135{bottom:592.640000pt;}
.y44_c01135{bottom:595.200000pt;}
.y3e_c01135{bottom:616.960000pt;}
.y3a_c01135{bottom:618.240000pt;}
.y3c_c01135{bottom:618.880000pt;}
.y39_c01135{bottom:620.160000pt;}
.y3b_c01135{bottom:621.440000pt;}
.y3d_c01135{bottom:623.360000pt;}
.y33_c01135{bottom:628.480000pt;}
.y34_c01135{bottom:629.120000pt;}
.y38_c01135{bottom:629.760000pt;}
.y37_c01135{bottom:638.720000pt;}
.y35_c01135{bottom:639.360000pt;}
.y36_c01135{bottom:640.000000pt;}
.y2f_c01135{bottom:673.280000pt;}
.y2d_c01135{bottom:675.200000pt;}
.y2e_c01135{bottom:677.120000pt;}
.y30_c01135{bottom:677.760000pt;}
.y31_c01135{bottom:678.400000pt;}
.y32_c01135{bottom:679.040000pt;}
.y27_c01135{bottom:712.320000pt;}
.y26_c01135{bottom:713.600000pt;}
.y28_c01135{bottom:714.240000pt;}
.y2c_c01135{bottom:714.880000pt;}
.y29_c01135{bottom:715.520000pt;}
.y2a_c01135{bottom:716.800000pt;}
.y2b_c01135{bottom:722.560000pt;}
.y21_c01135{bottom:750.080000pt;}
.y20_c01135{bottom:751.360000pt;}
.y24_c01135{bottom:752.640000pt;}
.y22_c01135{bottom:753.280000pt;}
.y23_c01135{bottom:753.920000pt;}
.y25_c01135{bottom:754.560000pt;}
.y1a_c01135{bottom:788.480000pt;}
.y19_c01135{bottom:789.120000pt;}
.y1d_c01135{bottom:791.040000pt;}
.y1b_c01135{bottom:791.680000pt;}
.y1c_c01135{bottom:792.320000pt;}
.y1f_c01135{bottom:792.960000pt;}
.y1e_c01135{bottom:793.600000pt;}
.y16_c01135{bottom:819.840000pt;}
.y12_c01135{bottom:826.240000pt;}
.y13_c01135{bottom:826.880000pt;}
.y15_c01135{bottom:827.520000pt;}
.y17_c01135{bottom:828.800000pt;}
.y14_c01135{bottom:829.440000pt;}
.y18_c01135{bottom:830.080000pt;}
.y10_c01135{bottom:866.560000pt;}
.y11_c01135{bottom:867.200000pt;}
.y8_c01135{bottom:892.800000pt;}
.y9_c01135{bottom:893.440000pt;}
.yc_c01135{bottom:894.080000pt;}
.ya_c01135{bottom:895.360000pt;}
.yb_c01135{bottom:896.000000pt;}
.ye_c01135{bottom:896.640000pt;}
.yd_c01135{bottom:897.280000pt;}
.yf_c01135{bottom:897.920000pt;}
.y2_c01135{bottom:930.560000pt;}
.y3_c01135{bottom:931.200000pt;}
.y4_c01135{bottom:931.840000pt;}
.y6_c01135{bottom:934.400000pt;}
.y5_c01135{bottom:935.040000pt;}
.y7_c01135{bottom:936.320000pt;}
.y1_c01135{bottom:965.760000pt;}
.h16_c01135{height:9.215000pt;}
.h19_c01135{height:11.518750pt;}
.h11_c01135{height:13.822500pt;}
.h15_c01135{height:18.430000pt;}
.h12_c01135{height:23.037500pt;}
.h18_c01135{height:25.341250pt;}
.h6_c01135{height:27.645000pt;}
.hc_c01135{height:29.948750pt;}
.h14_c01135{height:34.556250pt;}
.ha_c01135{height:36.860000pt;}
.h5_c01135{height:39.163750pt;}
.h8_c01135{height:41.467500pt;}
.h7_c01135{height:43.771250pt;}
.h10_c01135{height:44.027500pt;}
.hb_c01135{height:46.075000pt;}
.h17_c01135{height:46.331250pt;}
.h3_c01135{height:48.378750pt;}
.h4_c01135{height:50.682500pt;}
.hf_c01135{height:51.195000pt;}
.hd_c01135{height:52.986250pt;}
.h1a_c01135{height:55.290000pt;}
.h2_c01135{height:57.593750pt;}
.h9_c01135{height:59.897500pt;}
.h13_c01135{height:62.201250pt;}
.he_c01135{height:78.327500pt;}
.h1b_c01135{height:82.935000pt;}
.h1_c01135{height:1004.666667pt;}
.h0_c01135{height:1004.800000pt;}
.w0_c01135{width:662.400000pt;}
.w1_c01135{width:662.666667pt;}
.x0_c01135{left:0.000000pt;}
.x49_c01135{left:42.240000pt;}
.x23_c01135{left:43.520000pt;}
.x2_c01135{left:44.800000pt;}
.x40_c01135{left:51.840000pt;}
.x3c_c01135{left:53.120000pt;}
.x31_c01135{left:71.040000pt;}
.x1e_c01135{left:72.960000pt;}
.x43_c01135{left:88.960000pt;}
.x3d_c01135{left:90.240000pt;}
.x47_c01135{left:107.520000pt;}
.x1b_c01135{left:108.800000pt;}
.x3_c01135{left:110.080000pt;}
.x3e_c01135{left:119.040000pt;}
.x32_c01135{left:128.000000pt;}
.x37_c01135{left:138.240000pt;}
.x45_c01135{left:145.920000pt;}
.x1f_c01135{left:155.520000pt;}
.xe_c01135{left:156.800000pt;}
.x42_c01135{left:174.720000pt;}
.x38_c01135{left:176.000000pt;}
.x16_c01135{left:184.960000pt;}
.x4_c01135{left:186.240000pt;}
.x4a_c01135{left:192.640000pt;}
.x1c_c01135{left:195.200000pt;}
.x44_c01135{left:201.600000pt;}
.x28_c01135{left:204.800000pt;}
.x20_c01135{left:214.400000pt;}
.x29_c01135{left:231.680000pt;}
.x5_c01135{left:232.960000pt;}
.xf_c01135{left:242.560000pt;}
.x21_c01135{left:261.760000pt;}
.x24_c01135{left:263.040000pt;}
.x4b_c01135{left:268.800000pt;}
.x17_c01135{left:270.720000pt;}
.x6_c01135{left:281.600000pt;}
.x41_c01135{left:289.920000pt;}
.x10_c01135{left:291.200000pt;}
.x22_c01135{left:309.760000pt;}
.x13_c01135{left:319.360000pt;}
.x2a_c01135{left:339.200000pt;}
.x2b_c01135{left:355.840000pt;}
.x18_c01135{left:357.760000pt;}
.x11_c01135{left:366.720000pt;}
.x25_c01135{left:368.000000pt;}
.x39_c01135{left:376.320000pt;}
.x2c_c01135{left:386.560000pt;}
.xb_c01135{left:395.520000pt;}
.x26_c01135{left:405.120000pt;}
.x19_c01135{left:406.400000pt;}
.x2d_c01135{left:424.960000pt;}
.x27_c01135{left:433.920000pt;}
.x2e_c01135{left:444.160000pt;}
.x34_c01135{left:453.120000pt;}
.x4c_c01135{left:461.440000pt;}
.x12_c01135{left:463.360000pt;}
.x7_c01135{left:464.640000pt;}
.x3a_c01135{left:472.960000pt;}
.x35_c01135{left:483.840000pt;}
.x3f_c01135{left:492.800000pt;}
.x36_c01135{left:512.000000pt;}
.x2f_c01135{left:522.240000pt;}
.x33_c01135{left:529.920000pt;}
.x4e_c01135{left:539.520000pt;}
.x14_c01135{left:541.440000pt;}
.x8_c01135{left:542.720000pt;}
.x1a_c01135{left:551.680000pt;}
.x30_c01135{left:560.000000pt;}
.x4f_c01135{left:569.600000pt;}
.x15_c01135{left:570.880000pt;}
.x9_c01135{left:572.160000pt;}
.x1d_c01135{left:579.840000pt;}
.x3b_c01135{left:590.080000pt;}
.x4d_c01135{left:599.040000pt;}
.xa_c01135{left:600.960000pt;}
.x1_c01135{left:602.240000pt;}
.x48_c01135{left:608.640000pt;}
.xc_c01135{left:609.920000pt;}
.x46_c01135{left:627.200000pt;}
.xd_c01135{left:628.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_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_518ea545603a889f4b63fceb.woff2')format("woff");}.ff1_c01136{font-family:ff1_c01136;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3b_c01136{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m40_c01136{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m35_c01136{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);}
.m33_c01136{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m3a_c01136{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m36_c01136{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m46_c01136{transform:matrix(0.249300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249300,0.000000,0.000000,0.250000,0,0);}
.m44_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);}
.m25_c01136{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);}
.m3d_c01136{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m9_c01136{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);}
.m32_c01136{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m19_c01136{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);}
.m2e_c01136{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);}
.m45_c01136{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);}
.m37_c01136{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.md_c01136{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01136{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m31_c01136{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m24_c01136{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);}
.m39_c01136{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m43_c01136{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m29_c01136{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01136{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m12_c01136{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m16_c01136{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01136{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m20_c01136{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01136{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m2_c01136{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m14_c01136{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m10_c01136{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m18_c01136{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01136{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01136{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m13_c01136{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01136{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.me_c01136{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m28_c01136{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);}
.m42_c01136{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m6_c01136{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m1_c01136{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m7_c01136{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);}
.m0_c01136{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m22_c01136{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m3_c01136{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);}
.m38_c01136{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);}
.m17_c01136{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);}
.m1b_c01136{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);}
.m15_c01136{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01136{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01136{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m27_c01136{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m11_c01136{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);}
.m41_c01136{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01136{transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01136{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m4_c01136{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);}
.m23_c01136{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m26_c01136{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m5_c01136{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);}
.mb_c01136{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m21_c01136{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01136{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);}
.m30_c01136{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.ma_c01136{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);}
.mc_c01136{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01136{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01136{transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);}
.m34_c01136{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01136{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.v0_c01136{vertical-align:0.000000px;}
.v2_c01136{vertical-align:2.880000px;}
.v3_c01136{vertical-align:8.640000px;}
.v1_c01136{vertical-align:11.520000px;}
.ls0_c01136{letter-spacing:0.000000px;}
.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;}
}
.ws2_c01136{word-spacing:-11.866560px;}
.ws0_c01136{word-spacing:-6.459360px;}
.ws3_c01136{word-spacing:0.000000px;}
.ws1_c01136{word-spacing:190.368000px;}
.fc0_c01136{color:transparent;}
.fsd_c01136{font-size:11.520000px;}
.fs4_c01136{font-size:37.440000px;}
.fs3_c01136{font-size:46.080000px;}
.fs6_c01136{font-size:48.960000px;}
.fs2_c01136{font-size:51.840000px;}
.fs9_c01136{font-size:54.720000px;}
.fs7_c01136{font-size:57.600000px;}
.fs1_c01136{font-size:60.480000px;}
.fs5_c01136{font-size:63.360000px;}
.fsa_c01136{font-size:66.240000px;}
.fs8_c01136{font-size:69.120000px;}
.fs0_c01136{font-size:72.000000px;}
.fsc_c01136{font-size:74.880000px;}
.fsb_c01136{font-size:77.760000px;}
.y0_c01136{bottom:0.000000px;}
.y8c_c01136{bottom:56.880000px;}
.y8b_c01136{bottom:58.320000px;}
.y88_c01136{bottom:61.920000px;}
.y8a_c01136{bottom:62.640000px;}
.y89_c01136{bottom:63.360000px;}
.y87_c01136{bottom:64.800000px;}
.y86_c01136{bottom:100.800000px;}
.y85_c01136{bottom:101.520000px;}
.y83_c01136{bottom:102.960000px;}
.y84_c01136{bottom:104.400000px;}
.y82_c01136{bottom:105.120000px;}
.y81_c01136{bottom:108.000000px;}
.y80_c01136{bottom:144.000000px;}
.y7f_c01136{bottom:145.440000px;}
.y7d_c01136{bottom:147.600000px;}
.y7e_c01136{bottom:149.040000px;}
.y7c_c01136{bottom:151.920000px;}
.y7b_c01136{bottom:187.200000px;}
.y7a_c01136{bottom:188.640000px;}
.y78_c01136{bottom:190.080000px;}
.y79_c01136{bottom:191.520000px;}
.y77_c01136{bottom:193.680000px;}
.y75_c01136{bottom:230.400000px;}
.y76_c01136{bottom:231.120000px;}
.y73_c01136{bottom:231.840000px;}
.y70_c01136{bottom:233.280000px;}
.y72_c01136{bottom:234.000000px;}
.y74_c01136{bottom:234.720000px;}
.y71_c01136{bottom:235.440000px;}
.y6f_c01136{bottom:236.160000px;}
.y6e_c01136{bottom:274.320000px;}
.y6d_c01136{bottom:275.040000px;}
.y6a_c01136{bottom:275.760000px;}
.y6c_c01136{bottom:277.200000px;}
.y6b_c01136{bottom:277.920000px;}
.y68_c01136{bottom:279.360000px;}
.y69_c01136{bottom:284.400000px;}
.y67_c01136{bottom:316.800000px;}
.y66_c01136{bottom:317.520000px;}
.y65_c01136{bottom:318.240000px;}
.y63_c01136{bottom:318.960000px;}
.y64_c01136{bottom:320.400000px;}
.y62_c01136{bottom:322.560000px;}
.y61_c01136{bottom:360.720000px;}
.y5f_c01136{bottom:362.160000px;}
.y60_c01136{bottom:363.600000px;}
.y5e_c01136{bottom:365.040000px;}
.y5d_c01136{bottom:403.920000px;}
.y5c_c01136{bottom:404.640000px;}
.y5b_c01136{bottom:405.360000px;}
.y5a_c01136{bottom:407.520000px;}
.y57_c01136{bottom:447.840000px;}
.y59_c01136{bottom:449.280000px;}
.y58_c01136{bottom:450.000000px;}
.y56_c01136{bottom:450.720000px;}
.y52_c01136{bottom:489.600000px;}
.y54_c01136{bottom:490.320000px;}
.y55_c01136{bottom:491.040000px;}
.y51_c01136{bottom:493.200000px;}
.y53_c01136{bottom:493.920000px;}
.y4e_c01136{bottom:532.800000px;}
.y50_c01136{bottom:534.240000px;}
.y4d_c01136{bottom:534.960000px;}
.y4f_c01136{bottom:535.680000px;}
.y4a_c01136{bottom:575.280000px;}
.y48_c01136{bottom:576.720000px;}
.y4b_c01136{bottom:577.440000px;}
.y4c_c01136{bottom:578.880000px;}
.y49_c01136{bottom:579.600000px;}
.y45_c01136{bottom:617.760000px;}
.y46_c01136{bottom:619.920000px;}
.y43_c01136{bottom:620.640000px;}
.y47_c01136{bottom:621.360000px;}
.y44_c01136{bottom:622.080000px;}
.y41_c01136{bottom:660.240000px;}
.y42_c01136{bottom:662.400000px;}
.y3f_c01136{bottom:663.120000px;}
.y40_c01136{bottom:664.560000px;}
.y38_c01136{bottom:702.000000px;}
.y3d_c01136{bottom:703.440000px;}
.y39_c01136{bottom:704.160000px;}
.y3b_c01136{bottom:704.880000px;}
.y3c_c01136{bottom:707.040000px;}
.y3a_c01136{bottom:707.760000px;}
.y3e_c01136{bottom:708.480000px;}
.y31_c01136{bottom:745.920000px;}
.y35_c01136{bottom:746.640000px;}
.y30_c01136{bottom:748.080000px;}
.y36_c01136{bottom:748.800000px;}
.y32_c01136{bottom:749.520000px;}
.y33_c01136{bottom:750.240000px;}
.y34_c01136{bottom:750.960000px;}
.y37_c01136{bottom:751.680000px;}
.y2f_c01136{bottom:790.560000px;}
.y2c_c01136{bottom:791.280000px;}
.y2e_c01136{bottom:792.000000px;}
.y2d_c01136{bottom:793.440000px;}
.y26_c01136{bottom:821.520000px;}
.y27_c01136{bottom:822.240000px;}
.y24_c01136{bottom:822.960000px;}
.y2a_c01136{bottom:823.680000px;}
.y25_c01136{bottom:824.400000px;}
.y2b_c01136{bottom:825.120000px;}
.y28_c01136{bottom:825.840000px;}
.y29_c01136{bottom:826.560000px;}
.y1e_c01136{bottom:864.720000px;}
.y1c_c01136{bottom:865.440000px;}
.y21_c01136{bottom:866.160000px;}
.y1d_c01136{bottom:867.600000px;}
.y1f_c01136{bottom:868.320000px;}
.y20_c01136{bottom:869.040000px;}
.y22_c01136{bottom:869.760000px;}
.y23_c01136{bottom:870.480000px;}
.y14_c01136{bottom:907.200000px;}
.y12_c01136{bottom:907.920000px;}
.y16_c01136{bottom:909.360000px;}
.y15_c01136{bottom:910.800000px;}
.y13_c01136{bottom:911.520000px;}
.y1b_c01136{bottom:912.240000px;}
.y1a_c01136{bottom:912.960000px;}
.y10_c01136{bottom:949.680000px;}
.ye_c01136{bottom:951.120000px;}
.y11_c01136{bottom:951.840000px;}
.yf_c01136{bottom:952.560000px;}
.y18_c01136{bottom:954.000000px;}
.y17_c01136{bottom:956.160000px;}
.y19_c01136{bottom:956.880000px;}
.yb_c01136{bottom:994.320000px;}
.yd_c01136{bottom:995.040000px;}
.ya_c01136{bottom:996.480000px;}
.yc_c01136{bottom:997.200000px;}
.y2_c01136{bottom:1026.000000px;}
.y4_c01136{bottom:1028.160000px;}
.y3_c01136{bottom:1028.880000px;}
.y7_c01136{bottom:1029.600000px;}
.y5_c01136{bottom:1030.320000px;}
.y8_c01136{bottom:1031.040000px;}
.y6_c01136{bottom:1031.760000px;}
.y9_c01136{bottom:1033.200000px;}
.y1_c01136{bottom:1086.480000px;}
.h10_c01136{height:10.366875px;}
.h6_c01136{height:33.692344px;}
.h5_c01136{height:41.467500px;}
.h8_c01136{height:44.059219px;}
.h4_c01136{height:46.650937px;}
.hb_c01136{height:49.242656px;}
.h9_c01136{height:51.834375px;}
.h3_c01136{height:54.426094px;}
.hf_c01136{height:54.714375px;}
.h11_c01136{height:55.290937px;}
.h7_c01136{height:57.017812px;}
.hc_c01136{height:59.609531px;}
.ha_c01136{height:62.201250px;}
.h2_c01136{height:64.792969px;}
.he_c01136{height:67.384687px;}
.hd_c01136{height:69.976406px;}
.h1_c01136{height:1145.250000px;}
.h0_c01136{height:1145.520000px;}
.w0_c01136{width:779.760000px;}
.w1_c01136{width:780.000000px;}
.x0_c01136{left:0.000000px;}
.x2_c01136{left:71.280000px;}
.x27_c01136{left:123.120000px;}
.x3_c01136{left:143.280000px;}
.xd_c01136{left:144.720000px;}
.x4_c01136{left:186.480000px;}
.x23_c01136{left:187.920000px;}
.xe_c01136{left:197.280000px;}
.x1e_c01136{left:228.960000px;}
.x21_c01136{left:239.760000px;}
.xf_c01136{left:241.920000px;}
.x19_c01136{left:261.360000px;}
.x2c_c01136{left:272.880000px;}
.x10_c01136{left:283.680000px;}
.x5_c01136{left:293.760000px;}
.x13_c01136{left:295.200000px;}
.x1a_c01136{left:314.640000px;}
.x11_c01136{left:326.160000px;}
.x16_c01136{left:336.960000px;}
.x6_c01136{left:349.200000px;}
.x1b_c01136{left:358.560000px;}
.x2d_c01136{left:370.080000px;}
.x12_c01136{left:380.880000px;}
.x7_c01136{left:390.960000px;}
.x28_c01136{left:423.360000px;}
.x17_c01136{left:434.160000px;}
.x1c_c01136{left:444.960000px;}
.x29_c01136{left:466.560000px;}
.x8_c01136{left:477.360000px;}
.x18_c01136{left:478.800000px;}
.x1d_c01136{left:500.400000px;}
.x9_c01136{left:543.600000px;}
.x24_c01136{left:555.120000px;}
.x26_c01136{left:575.280000px;}
.x15_c01136{left:576.720000px;}
.x25_c01136{left:596.880000px;}
.xa_c01136{left:598.320000px;}
.x2a_c01136{left:609.840000px;}
.x20_c01136{left:631.440000px;}
.x1f_c01136{left:664.560000px;}
.x2b_c01136{left:688.320000px;}
.x1_c01136{left:694.800000px;}
.x14_c01136{left:697.680000px;}
.xb_c01136{left:707.760000px;}
.xc_c01136{left:727.920000px;}
.x22_c01136{left:729.360000px;}
@media print{
.v0_c01136{vertical-align:0.000000pt;}
.v2_c01136{vertical-align:2.560000pt;}
.v3_c01136{vertical-align:7.680000pt;}
.v1_c01136{vertical-align:10.240000pt;}
.ls0_c01136{letter-spacing:0.000000pt;}
.ws2_c01136{word-spacing:-10.548053pt;}
.ws0_c01136{word-spacing:-5.741653pt;}
.ws3_c01136{word-spacing:0.000000pt;}
.ws1_c01136{word-spacing:169.216000pt;}
.fsd_c01136{font-size:10.240000pt;}
.fs4_c01136{font-size:33.280000pt;}
.fs3_c01136{font-size:40.960000pt;}
.fs6_c01136{font-size:43.520000pt;}
.fs2_c01136{font-size:46.080000pt;}
.fs9_c01136{font-size:48.640000pt;}
.fs7_c01136{font-size:51.200000pt;}
.fs1_c01136{font-size:53.760000pt;}
.fs5_c01136{font-size:56.320000pt;}
.fsa_c01136{font-size:58.880000pt;}
.fs8_c01136{font-size:61.440000pt;}
.fs0_c01136{font-size:64.000000pt;}
.fsc_c01136{font-size:66.560000pt;}
.fsb_c01136{font-size:69.120000pt;}
.y0_c01136{bottom:0.000000pt;}
.y8c_c01136{bottom:50.560000pt;}
.y8b_c01136{bottom:51.840000pt;}
.y88_c01136{bottom:55.040000pt;}
.y8a_c01136{bottom:55.680000pt;}
.y89_c01136{bottom:56.320000pt;}
.y87_c01136{bottom:57.600000pt;}
.y86_c01136{bottom:89.600000pt;}
.y85_c01136{bottom:90.240000pt;}
.y83_c01136{bottom:91.520000pt;}
.y84_c01136{bottom:92.800000pt;}
.y82_c01136{bottom:93.440000pt;}
.y81_c01136{bottom:96.000000pt;}
.y80_c01136{bottom:128.000000pt;}
.y7f_c01136{bottom:129.280000pt;}
.y7d_c01136{bottom:131.200000pt;}
.y7e_c01136{bottom:132.480000pt;}
.y7c_c01136{bottom:135.040000pt;}
.y7b_c01136{bottom:166.400000pt;}
.y7a_c01136{bottom:167.680000pt;}
.y78_c01136{bottom:168.960000pt;}
.y79_c01136{bottom:170.240000pt;}
.y77_c01136{bottom:172.160000pt;}
.y75_c01136{bottom:204.800000pt;}
.y76_c01136{bottom:205.440000pt;}
.y73_c01136{bottom:206.080000pt;}
.y70_c01136{bottom:207.360000pt;}
.y72_c01136{bottom:208.000000pt;}
.y74_c01136{bottom:208.640000pt;}
.y71_c01136{bottom:209.280000pt;}
.y6f_c01136{bottom:209.920000pt;}
.y6e_c01136{bottom:243.840000pt;}
.y6d_c01136{bottom:244.480000pt;}
.y6a_c01136{bottom:245.120000pt;}
.y6c_c01136{bottom:246.400000pt;}
.y6b_c01136{bottom:247.040000pt;}
.y68_c01136{bottom:248.320000pt;}
.y69_c01136{bottom:252.800000pt;}
.y67_c01136{bottom:281.600000pt;}
.y66_c01136{bottom:282.240000pt;}
.y65_c01136{bottom:282.880000pt;}
.y63_c01136{bottom:283.520000pt;}
.y64_c01136{bottom:284.800000pt;}
.y62_c01136{bottom:286.720000pt;}
.y61_c01136{bottom:320.640000pt;}
.y5f_c01136{bottom:321.920000pt;}
.y60_c01136{bottom:323.200000pt;}
.y5e_c01136{bottom:324.480000pt;}
.y5d_c01136{bottom:359.040000pt;}
.y5c_c01136{bottom:359.680000pt;}
.y5b_c01136{bottom:360.320000pt;}
.y5a_c01136{bottom:362.240000pt;}
.y57_c01136{bottom:398.080000pt;}
.y59_c01136{bottom:399.360000pt;}
.y58_c01136{bottom:400.000000pt;}
.y56_c01136{bottom:400.640000pt;}
.y52_c01136{bottom:435.200000pt;}
.y54_c01136{bottom:435.840000pt;}
.y55_c01136{bottom:436.480000pt;}
.y51_c01136{bottom:438.400000pt;}
.y53_c01136{bottom:439.040000pt;}
.y4e_c01136{bottom:473.600000pt;}
.y50_c01136{bottom:474.880000pt;}
.y4d_c01136{bottom:475.520000pt;}
.y4f_c01136{bottom:476.160000pt;}
.y4a_c01136{bottom:511.360000pt;}
.y48_c01136{bottom:512.640000pt;}
.y4b_c01136{bottom:513.280000pt;}
.y4c_c01136{bottom:514.560000pt;}
.y49_c01136{bottom:515.200000pt;}
.y45_c01136{bottom:549.120000pt;}
.y46_c01136{bottom:551.040000pt;}
.y43_c01136{bottom:551.680000pt;}
.y47_c01136{bottom:552.320000pt;}
.y44_c01136{bottom:552.960000pt;}
.y41_c01136{bottom:586.880000pt;}
.y42_c01136{bottom:588.800000pt;}
.y3f_c01136{bottom:589.440000pt;}
.y40_c01136{bottom:590.720000pt;}
.y38_c01136{bottom:624.000000pt;}
.y3d_c01136{bottom:625.280000pt;}
.y39_c01136{bottom:625.920000pt;}
.y3b_c01136{bottom:626.560000pt;}
.y3c_c01136{bottom:628.480000pt;}
.y3a_c01136{bottom:629.120000pt;}
.y3e_c01136{bottom:629.760000pt;}
.y31_c01136{bottom:663.040000pt;}
.y35_c01136{bottom:663.680000pt;}
.y30_c01136{bottom:664.960000pt;}
.y36_c01136{bottom:665.600000pt;}
.y32_c01136{bottom:666.240000pt;}
.y33_c01136{bottom:666.880000pt;}
.y34_c01136{bottom:667.520000pt;}
.y37_c01136{bottom:668.160000pt;}
.y2f_c01136{bottom:702.720000pt;}
.y2c_c01136{bottom:703.360000pt;}
.y2e_c01136{bottom:704.000000pt;}
.y2d_c01136{bottom:705.280000pt;}
.y26_c01136{bottom:730.240000pt;}
.y27_c01136{bottom:730.880000pt;}
.y24_c01136{bottom:731.520000pt;}
.y2a_c01136{bottom:732.160000pt;}
.y25_c01136{bottom:732.800000pt;}
.y2b_c01136{bottom:733.440000pt;}
.y28_c01136{bottom:734.080000pt;}
.y29_c01136{bottom:734.720000pt;}
.y1e_c01136{bottom:768.640000pt;}
.y1c_c01136{bottom:769.280000pt;}
.y21_c01136{bottom:769.920000pt;}
.y1d_c01136{bottom:771.200000pt;}
.y1f_c01136{bottom:771.840000pt;}
.y20_c01136{bottom:772.480000pt;}
.y22_c01136{bottom:773.120000pt;}
.y23_c01136{bottom:773.760000pt;}
.y14_c01136{bottom:806.400000pt;}
.y12_c01136{bottom:807.040000pt;}
.y16_c01136{bottom:808.320000pt;}
.y15_c01136{bottom:809.600000pt;}
.y13_c01136{bottom:810.240000pt;}
.y1b_c01136{bottom:810.880000pt;}
.y1a_c01136{bottom:811.520000pt;}
.y10_c01136{bottom:844.160000pt;}
.ye_c01136{bottom:845.440000pt;}
.y11_c01136{bottom:846.080000pt;}
.yf_c01136{bottom:846.720000pt;}
.y18_c01136{bottom:848.000000pt;}
.y17_c01136{bottom:849.920000pt;}
.y19_c01136{bottom:850.560000pt;}
.yb_c01136{bottom:883.840000pt;}
.yd_c01136{bottom:884.480000pt;}
.ya_c01136{bottom:885.760000pt;}
.yc_c01136{bottom:886.400000pt;}
.y2_c01136{bottom:912.000000pt;}
.y4_c01136{bottom:913.920000pt;}
.y3_c01136{bottom:914.560000pt;}
.y7_c01136{bottom:915.200000pt;}
.y5_c01136{bottom:915.840000pt;}
.y8_c01136{bottom:916.480000pt;}
.y6_c01136{bottom:917.120000pt;}
.y9_c01136{bottom:918.400000pt;}
.y1_c01136{bottom:965.760000pt;}
.h10_c01136{height:9.215000pt;}
.h6_c01136{height:29.948750pt;}
.h5_c01136{height:36.860000pt;}
.h8_c01136{height:39.163750pt;}
.h4_c01136{height:41.467500pt;}
.hb_c01136{height:43.771250pt;}
.h9_c01136{height:46.075000pt;}
.h3_c01136{height:48.378750pt;}
.hf_c01136{height:48.635000pt;}
.h11_c01136{height:49.147500pt;}
.h7_c01136{height:50.682500pt;}
.hc_c01136{height:52.986250pt;}
.ha_c01136{height:55.290000pt;}
.h2_c01136{height:57.593750pt;}
.he_c01136{height:59.897500pt;}
.hd_c01136{height:62.201250pt;}
.h1_c01136{height:1018.000000pt;}
.h0_c01136{height:1018.240000pt;}
.w0_c01136{width:693.120000pt;}
.w1_c01136{width:693.333333pt;}
.x0_c01136{left:0.000000pt;}
.x2_c01136{left:63.360000pt;}
.x27_c01136{left:109.440000pt;}
.x3_c01136{left:127.360000pt;}
.xd_c01136{left:128.640000pt;}
.x4_c01136{left:165.760000pt;}
.x23_c01136{left:167.040000pt;}
.xe_c01136{left:175.360000pt;}
.x1e_c01136{left:203.520000pt;}
.x21_c01136{left:213.120000pt;}
.xf_c01136{left:215.040000pt;}
.x19_c01136{left:232.320000pt;}
.x2c_c01136{left:242.560000pt;}
.x10_c01136{left:252.160000pt;}
.x5_c01136{left:261.120000pt;}
.x13_c01136{left:262.400000pt;}
.x1a_c01136{left:279.680000pt;}
.x11_c01136{left:289.920000pt;}
.x16_c01136{left:299.520000pt;}
.x6_c01136{left:310.400000pt;}
.x1b_c01136{left:318.720000pt;}
.x2d_c01136{left:328.960000pt;}
.x12_c01136{left:338.560000pt;}
.x7_c01136{left:347.520000pt;}
.x28_c01136{left:376.320000pt;}
.x17_c01136{left:385.920000pt;}
.x1c_c01136{left:395.520000pt;}
.x29_c01136{left:414.720000pt;}
.x8_c01136{left:424.320000pt;}
.x18_c01136{left:425.600000pt;}
.x1d_c01136{left:444.800000pt;}
.x9_c01136{left:483.200000pt;}
.x24_c01136{left:493.440000pt;}
.x26_c01136{left:511.360000pt;}
.x15_c01136{left:512.640000pt;}
.x25_c01136{left:530.560000pt;}
.xa_c01136{left:531.840000pt;}
.x2a_c01136{left:542.080000pt;}
.x20_c01136{left:561.280000pt;}
.x1f_c01136{left:590.720000pt;}
.x2b_c01136{left:611.840000pt;}
.x1_c01136{left:617.600000pt;}
.x14_c01136{left:620.160000pt;}
.xb_c01136{left:629.120000pt;}
.xc_c01136{left:647.040000pt;}
.x22_c01136{left:648.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e5e14c2434e04dc6d7ea1f14.woff2')format("woff");}.ff1_c01137{font-family:ff1_c01137;line-height:1.109863;font-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_c01137{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m34_c01137{transform:matrix(0.213925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213925,0.000000,0.000000,0.250000,0,0);}
.m7_c01137{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);}
.mb_c01137{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m4_c01137{transform:matrix(0.241625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241625,0.000000,0.000000,0.250000,0,0);}
.m44_c01137{transform:matrix(0.243800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243800,0.000000,0.000000,0.250000,0,0);}
.m1e_c01137{transform:matrix(0.244525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244525,0.000000,0.000000,0.250000,0,0);}
.m41_c01137{transform:matrix(0.246925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246925,0.000000,0.000000,0.250000,0,0);}
.m1c_c01137{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m19_c01137{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m2_c01137{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.ma_c01137{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);}
.m3b_c01137{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m16_c01137{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01137{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);}
.m39_c01137{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_c01137{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.mf_c01137{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);}
.m42_c01137{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01137{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1_c01137{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);}
.m33_c01137{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m5_c01137{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m15_c01137{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m10_c01137{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01137{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m8_c01137{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01137{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mc_c01137{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m22_c01137{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01137{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m38_c01137{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m40_c01137{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m30_c01137{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m28_c01137{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m11_c01137{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m14_c01137{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);}
.m2d_c01137{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.md_c01137{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01137{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);}
.m36_c01137{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m9_c01137{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m35_c01137{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);}
.m24_c01137{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01137{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);}
.m0_c01137{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m6_c01137{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);}
.me_c01137{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m20_c01137{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);}
.m31_c01137{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);}
.m3a_c01137{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m3_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);}
.m12_c01137{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);}
.m3d_c01137{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m23_c01137{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);}
.m3c_c01137{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m25_c01137{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);}
.m3f_c01137{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01137{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);}
.m13_c01137{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m21_c01137{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m45_c01137{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m17_c01137{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m37_c01137{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01137{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m26_c01137{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m27_c01137{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m32_c01137{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01137{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m43_c01137{transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);}
.v3_c01137{vertical-align:-8.640000px;}
.v2_c01137{vertical-align:-2.880000px;}
.v0_c01137{vertical-align:0.000000px;}
.v1_c01137{vertical-align:2.880000px;}
.ls2_c01137{letter-spacing:0.000000px;}
.ls0_c01137{letter-spacing:40.309680px;}
.ls1_c01137{letter-spacing:45.367680px;}
.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;}
}
.ws2_c01137{word-spacing:-43.655040px;}
.ws4_c01137{word-spacing:0.000000px;}
.ws0_c01137{word-spacing:5.526000px;}
.ws1_c01137{word-spacing:9.474000px;}
.ws3_c01137{word-spacing:80.499600px;}
._0_c01137{width:9.875040px;}
.fc0_c01137{color:transparent;}
.fsb_c01137{font-size:37.440000px;}
.fsa_c01137{font-size:48.960000px;}
.fs5_c01137{font-size:51.840000px;}
.fs7_c01137{font-size:54.720000px;}
.fs3_c01137{font-size:57.600000px;}
.fs0_c01137{font-size:60.480000px;}
.fs8_c01137{font-size:63.360000px;}
.fs6_c01137{font-size:66.240000px;}
.fs9_c01137{font-size:69.120000px;}
.fs1_c01137{font-size:72.000000px;}
.fs2_c01137{font-size:74.880000px;}
.fs4_c01137{font-size:77.760000px;}
.fsc_c01137{font-size:106.560000px;}
.y0_c01137{bottom:0.000000px;}
.y82_c01137{bottom:9.360000px;}
.y81_c01137{bottom:41.040000px;}
.y80_c01137{bottom:41.760000px;}
.y7e_c01137{bottom:42.480000px;}
.y7f_c01137{bottom:43.920000px;}
.y7d_c01137{bottom:44.640000px;}
.y7c_c01137{bottom:48.960000px;}
.y7a_c01137{bottom:84.240000px;}
.y78_c01137{bottom:84.960000px;}
.y7b_c01137{bottom:85.680000px;}
.y76_c01137{bottom:86.400000px;}
.y79_c01137{bottom:87.120000px;}
.y77_c01137{bottom:88.560000px;}
.y75_c01137{bottom:90.720000px;}
.y74_c01137{bottom:127.440000px;}
.y73_c01137{bottom:128.160000px;}
.y71_c01137{bottom:129.600000px;}
.y72_c01137{bottom:131.040000px;}
.y70_c01137{bottom:133.920000px;}
.y6f_c01137{bottom:169.920000px;}
.y6e_c01137{bottom:171.360000px;}
.y6c_c01137{bottom:172.800000px;}
.y6d_c01137{bottom:173.520000px;}
.y6b_c01137{bottom:176.400000px;}
.y68_c01137{bottom:215.280000px;}
.y69_c01137{bottom:216.000000px;}
.y6a_c01137{bottom:216.720000px;}
.y67_c01137{bottom:218.880000px;}
.y66_c01137{bottom:257.040000px;}
.y64_c01137{bottom:258.480000px;}
.y65_c01137{bottom:261.360000px;}
.y63_c01137{bottom:288.000000px;}
.y5e_c01137{bottom:288.720000px;}
.y61_c01137{bottom:289.440000px;}
.y60_c01137{bottom:290.160000px;}
.y62_c01137{bottom:290.880000px;}
.y5f_c01137{bottom:291.600000px;}
.y5d_c01137{bottom:293.040000px;}
.y59_c01137{bottom:331.200000px;}
.y5c_c01137{bottom:331.920000px;}
.y5a_c01137{bottom:332.640000px;}
.y5b_c01137{bottom:334.080000px;}
.y58_c01137{bottom:335.520000px;}
.y57_c01137{bottom:374.400000px;}
.y56_c01137{bottom:375.120000px;}
.y52_c01137{bottom:406.080000px;}
.y51_c01137{bottom:406.800000px;}
.y54_c01137{bottom:407.520000px;}
.y53_c01137{bottom:408.240000px;}
.y50_c01137{bottom:409.680000px;}
.y55_c01137{bottom:410.400000px;}
.y4f_c01137{bottom:449.280000px;}
.y49_c01137{bottom:481.680000px;}
.y4b_c01137{bottom:482.400000px;}
.y4c_c01137{bottom:483.120000px;}
.y4d_c01137{bottom:483.840000px;}
.y48_c01137{bottom:484.560000px;}
.y4a_c01137{bottom:485.280000px;}
.y4e_c01137{bottom:486.000000px;}
.y46_c01137{bottom:514.080000px;}
.y45_c01137{bottom:524.160000px;}
.y44_c01137{bottom:524.880000px;}
.y47_c01137{bottom:526.320000px;}
.y43_c01137{bottom:527.040000px;}
.y2c_c01137{bottom:568.080000px;}
.y2d_c01137{bottom:568.800000px;}
.y2b_c01137{bottom:569.520000px;}
.y41_c01137{bottom:570.240000px;}
.y2e_c01137{bottom:571.680000px;}
.y42_c01137{bottom:572.400000px;}
.y2a_c01137{bottom:610.560000px;}
.y3f_c01137{bottom:612.000000px;}
.y29_c01137{bottom:612.720000px;}
.y3e_c01137{bottom:613.440000px;}
.y40_c01137{bottom:614.160000px;}
.y25_c01137{bottom:653.040000px;}
.y28_c01137{bottom:654.480000px;}
.y26_c01137{bottom:655.200000px;}
.y24_c01137{bottom:655.920000px;}
.y3d_c01137{bottom:656.640000px;}
.y27_c01137{bottom:657.360000px;}
.y20_c01137{bottom:695.520000px;}
.y23_c01137{bottom:696.960000px;}
.y1f_c01137{bottom:697.680000px;}
.y39_c01137{bottom:699.120000px;}
.y21_c01137{bottom:699.840000px;}
.y22_c01137{bottom:700.560000px;}
.y3c_c01137{bottom:701.280000px;}
.y3b_c01137{bottom:702.000000px;}
.y3a_c01137{bottom:702.720000px;}
.y1d_c01137{bottom:738.000000px;}
.y1c_c01137{bottom:740.160000px;}
.y1e_c01137{bottom:742.320000px;}
.y37_c01137{bottom:743.040000px;}
.y38_c01137{bottom:745.200000px;}
.y1a_c01137{bottom:781.200000px;}
.y19_c01137{bottom:782.640000px;}
.y1b_c01137{bottom:783.360000px;}
.y34_c01137{bottom:785.520000px;}
.y35_c01137{bottom:786.240000px;}
.y36_c01137{bottom:786.960000px;}
.y18_c01137{bottom:823.680000px;}
.y17_c01137{bottom:825.840000px;}
.y31_c01137{bottom:828.000000px;}
.y32_c01137{bottom:828.720000px;}
.y33_c01137{bottom:830.160000px;}
.y14_c01137{bottom:866.160000px;}
.y13_c01137{bottom:867.600000px;}
.y16_c01137{bottom:868.320000px;}
.y15_c01137{bottom:870.480000px;}
.y2f_c01137{bottom:871.200000px;}
.y30_c01137{bottom:872.640000px;}
.y12_c01137{bottom:908.640000px;}
.yd_c01137{bottom:941.040000px;}
.yc_c01137{bottom:941.760000px;}
.ye_c01137{bottom:942.480000px;}
.yf_c01137{bottom:946.080000px;}
.y10_c01137{bottom:946.800000px;}
.y11_c01137{bottom:948.960000px;}
.y4_c01137{bottom:983.520000px;}
.y3_c01137{bottom:984.960000px;}
.y9_c01137{bottom:989.280000px;}
.ya_c01137{bottom:990.000000px;}
.yb_c01137{bottom:990.720000px;}
.y1_c01137{bottom:1026.720000px;}
.y2_c01137{bottom:1027.440000px;}
.y6_c01137{bottom:1032.480000px;}
.y7_c01137{bottom:1033.200000px;}
.y8_c01137{bottom:1034.640000px;}
.y5_c01137{bottom:1096.560000px;}
.hc_c01137{height:33.692344px;}
.hb_c01137{height:44.059219px;}
.h6_c01137{height:46.650937px;}
.h8_c01137{height:49.242656px;}
.h4_c01137{height:51.834375px;}
.he_c01137{height:52.122656px;}
.h1_c01137{height:54.426094px;}
.hf_c01137{height:54.714375px;}
.h9_c01137{height:57.017812px;}
.h7_c01137{height:59.609531px;}
.ha_c01137{height:62.201250px;}
.h2_c01137{height:64.792969px;}
.h3_c01137{height:67.384687px;}
.hd_c01137{height:67.672969px;}
.h5_c01137{height:69.976406px;}
.h10_c01137{height:95.893594px;}
.h0_c01137{height:1152.000000px;}
.w1_c01137{width:787.500000px;}
.w0_c01137{width:787.680000px;}
.x0_c01137{left:0.000000px;}
.x1_c01137{left:76.320000px;}
.x22_c01137{left:77.760000px;}
.x2_c01137{left:149.040000px;}
.x1f_c01137{left:150.480000px;}
.x2c_c01137{left:151.920000px;}
.x2d_c01137{left:216.000000px;}
.x3_c01137{left:235.440000px;}
.x16_c01137{left:236.880000px;}
.x31_c01137{left:248.400000px;}
.x2e_c01137{left:257.760000px;}
.xf_c01137{left:266.400000px;}
.x13_c01137{left:278.640000px;}
.x23_c01137{left:288.720000px;}
.x32_c01137{left:290.160000px;}
.x4_c01137{left:310.320000px;}
.x10_c01137{left:321.840000px;}
.x24_c01137{left:332.640000px;}
.x28_c01137{left:343.440000px;}
.x12_c01137{left:354.240000px;}
.x11_c01137{left:365.040000px;}
.x26_c01137{left:376.560000px;}
.xc_c01137{left:384.480000px;}
.x25_c01137{left:387.360000px;}
.x14_c01137{left:407.520000px;}
.x17_c01137{left:419.040000px;}
.xd_c01137{left:429.120000px;}
.x29_c01137{left:432.000000px;}
.x15_c01137{left:451.440000px;}
.x27_c01137{left:462.240000px;}
.x20_c01137{left:506.160000px;}
.xe_c01137{left:514.800000px;}
.x2a_c01137{left:550.800000px;}
.x1c_c01137{left:559.440000px;}
.x6_c01137{left:560.880000px;}
.x2b_c01137{left:571.680000px;}
.x7_c01137{left:581.040000px;}
.x18_c01137{left:582.480000px;}
.x2f_c01137{left:583.920000px;}
.x8_c01137{left:602.640000px;}
.x1d_c01137{left:635.760000px;}
.x19_c01137{left:637.200000px;}
.xa_c01137{left:660.240000px;}
.x1b_c01137{left:669.600000px;}
.x21_c01137{left:671.040000px;}
.x5_c01137{left:686.880000px;}
.x1e_c01137{left:703.440000px;}
.x9_c01137{left:712.800000px;}
.xb_c01137{left:714.240000px;}
.x1a_c01137{left:734.400000px;}
.x30_c01137{left:735.840000px;}
@media print{
.v3_c01137{vertical-align:-7.680000pt;}
.v2_c01137{vertical-align:-2.560000pt;}
.v0_c01137{vertical-align:0.000000pt;}
.v1_c01137{vertical-align:2.560000pt;}
.ls2_c01137{letter-spacing:0.000000pt;}
.ls0_c01137{letter-spacing:35.830827pt;}
.ls1_c01137{letter-spacing:40.326827pt;}
.ws2_c01137{word-spacing:-38.804480pt;}
.ws4_c01137{word-spacing:0.000000pt;}
.ws0_c01137{word-spacing:4.912000pt;}
.ws1_c01137{word-spacing:8.421333pt;}
.ws3_c01137{word-spacing:71.555200pt;}
._0_c01137{width:8.777813pt;}
.fsb_c01137{font-size:33.280000pt;}
.fsa_c01137{font-size:43.520000pt;}
.fs5_c01137{font-size:46.080000pt;}
.fs7_c01137{font-size:48.640000pt;}
.fs3_c01137{font-size:51.200000pt;}
.fs0_c01137{font-size:53.760000pt;}
.fs8_c01137{font-size:56.320000pt;}
.fs6_c01137{font-size:58.880000pt;}
.fs9_c01137{font-size:61.440000pt;}
.fs1_c01137{font-size:64.000000pt;}
.fs2_c01137{font-size:66.560000pt;}
.fs4_c01137{font-size:69.120000pt;}
.fsc_c01137{font-size:94.720000pt;}
.y0_c01137{bottom:0.000000pt;}
.y82_c01137{bottom:8.320000pt;}
.y81_c01137{bottom:36.480000pt;}
.y80_c01137{bottom:37.120000pt;}
.y7e_c01137{bottom:37.760000pt;}
.y7f_c01137{bottom:39.040000pt;}
.y7d_c01137{bottom:39.680000pt;}
.y7c_c01137{bottom:43.520000pt;}
.y7a_c01137{bottom:74.880000pt;}
.y78_c01137{bottom:75.520000pt;}
.y7b_c01137{bottom:76.160000pt;}
.y76_c01137{bottom:76.800000pt;}
.y79_c01137{bottom:77.440000pt;}
.y77_c01137{bottom:78.720000pt;}
.y75_c01137{bottom:80.640000pt;}
.y74_c01137{bottom:113.280000pt;}
.y73_c01137{bottom:113.920000pt;}
.y71_c01137{bottom:115.200000pt;}
.y72_c01137{bottom:116.480000pt;}
.y70_c01137{bottom:119.040000pt;}
.y6f_c01137{bottom:151.040000pt;}
.y6e_c01137{bottom:152.320000pt;}
.y6c_c01137{bottom:153.600000pt;}
.y6d_c01137{bottom:154.240000pt;}
.y6b_c01137{bottom:156.800000pt;}
.y68_c01137{bottom:191.360000pt;}
.y69_c01137{bottom:192.000000pt;}
.y6a_c01137{bottom:192.640000pt;}
.y67_c01137{bottom:194.560000pt;}
.y66_c01137{bottom:228.480000pt;}
.y64_c01137{bottom:229.760000pt;}
.y65_c01137{bottom:232.320000pt;}
.y63_c01137{bottom:256.000000pt;}
.y5e_c01137{bottom:256.640000pt;}
.y61_c01137{bottom:257.280000pt;}
.y60_c01137{bottom:257.920000pt;}
.y62_c01137{bottom:258.560000pt;}
.y5f_c01137{bottom:259.200000pt;}
.y5d_c01137{bottom:260.480000pt;}
.y59_c01137{bottom:294.400000pt;}
.y5c_c01137{bottom:295.040000pt;}
.y5a_c01137{bottom:295.680000pt;}
.y5b_c01137{bottom:296.960000pt;}
.y58_c01137{bottom:298.240000pt;}
.y57_c01137{bottom:332.800000pt;}
.y56_c01137{bottom:333.440000pt;}
.y52_c01137{bottom:360.960000pt;}
.y51_c01137{bottom:361.600000pt;}
.y54_c01137{bottom:362.240000pt;}
.y53_c01137{bottom:362.880000pt;}
.y50_c01137{bottom:364.160000pt;}
.y55_c01137{bottom:364.800000pt;}
.y4f_c01137{bottom:399.360000pt;}
.y49_c01137{bottom:428.160000pt;}
.y4b_c01137{bottom:428.800000pt;}
.y4c_c01137{bottom:429.440000pt;}
.y4d_c01137{bottom:430.080000pt;}
.y48_c01137{bottom:430.720000pt;}
.y4a_c01137{bottom:431.360000pt;}
.y4e_c01137{bottom:432.000000pt;}
.y46_c01137{bottom:456.960000pt;}
.y45_c01137{bottom:465.920000pt;}
.y44_c01137{bottom:466.560000pt;}
.y47_c01137{bottom:467.840000pt;}
.y43_c01137{bottom:468.480000pt;}
.y2c_c01137{bottom:504.960000pt;}
.y2d_c01137{bottom:505.600000pt;}
.y2b_c01137{bottom:506.240000pt;}
.y41_c01137{bottom:506.880000pt;}
.y2e_c01137{bottom:508.160000pt;}
.y42_c01137{bottom:508.800000pt;}
.y2a_c01137{bottom:542.720000pt;}
.y3f_c01137{bottom:544.000000pt;}
.y29_c01137{bottom:544.640000pt;}
.y3e_c01137{bottom:545.280000pt;}
.y40_c01137{bottom:545.920000pt;}
.y25_c01137{bottom:580.480000pt;}
.y28_c01137{bottom:581.760000pt;}
.y26_c01137{bottom:582.400000pt;}
.y24_c01137{bottom:583.040000pt;}
.y3d_c01137{bottom:583.680000pt;}
.y27_c01137{bottom:584.320000pt;}
.y20_c01137{bottom:618.240000pt;}
.y23_c01137{bottom:619.520000pt;}
.y1f_c01137{bottom:620.160000pt;}
.y39_c01137{bottom:621.440000pt;}
.y21_c01137{bottom:622.080000pt;}
.y22_c01137{bottom:622.720000pt;}
.y3c_c01137{bottom:623.360000pt;}
.y3b_c01137{bottom:624.000000pt;}
.y3a_c01137{bottom:624.640000pt;}
.y1d_c01137{bottom:656.000000pt;}
.y1c_c01137{bottom:657.920000pt;}
.y1e_c01137{bottom:659.840000pt;}
.y37_c01137{bottom:660.480000pt;}
.y38_c01137{bottom:662.400000pt;}
.y1a_c01137{bottom:694.400000pt;}
.y19_c01137{bottom:695.680000pt;}
.y1b_c01137{bottom:696.320000pt;}
.y34_c01137{bottom:698.240000pt;}
.y35_c01137{bottom:698.880000pt;}
.y36_c01137{bottom:699.520000pt;}
.y18_c01137{bottom:732.160000pt;}
.y17_c01137{bottom:734.080000pt;}
.y31_c01137{bottom:736.000000pt;}
.y32_c01137{bottom:736.640000pt;}
.y33_c01137{bottom:737.920000pt;}
.y14_c01137{bottom:769.920000pt;}
.y13_c01137{bottom:771.200000pt;}
.y16_c01137{bottom:771.840000pt;}
.y15_c01137{bottom:773.760000pt;}
.y2f_c01137{bottom:774.400000pt;}
.y30_c01137{bottom:775.680000pt;}
.y12_c01137{bottom:807.680000pt;}
.yd_c01137{bottom:836.480000pt;}
.yc_c01137{bottom:837.120000pt;}
.ye_c01137{bottom:837.760000pt;}
.yf_c01137{bottom:840.960000pt;}
.y10_c01137{bottom:841.600000pt;}
.y11_c01137{bottom:843.520000pt;}
.y4_c01137{bottom:874.240000pt;}
.y3_c01137{bottom:875.520000pt;}
.y9_c01137{bottom:879.360000pt;}
.ya_c01137{bottom:880.000000pt;}
.yb_c01137{bottom:880.640000pt;}
.y1_c01137{bottom:912.640000pt;}
.y2_c01137{bottom:913.280000pt;}
.y6_c01137{bottom:917.760000pt;}
.y7_c01137{bottom:918.400000pt;}
.y8_c01137{bottom:919.680000pt;}
.y5_c01137{bottom:974.720000pt;}
.hc_c01137{height:29.948750pt;}
.hb_c01137{height:39.163750pt;}
.h6_c01137{height:41.467500pt;}
.h8_c01137{height:43.771250pt;}
.h4_c01137{height:46.075000pt;}
.he_c01137{height:46.331250pt;}
.h1_c01137{height:48.378750pt;}
.hf_c01137{height:48.635000pt;}
.h9_c01137{height:50.682500pt;}
.h7_c01137{height:52.986250pt;}
.ha_c01137{height:55.290000pt;}
.h2_c01137{height:57.593750pt;}
.h3_c01137{height:59.897500pt;}
.hd_c01137{height:60.153750pt;}
.h5_c01137{height:62.201250pt;}
.h10_c01137{height:85.238750pt;}
.h0_c01137{height:1024.000000pt;}
.w1_c01137{width:700.000000pt;}
.w0_c01137{width:700.160000pt;}
.x0_c01137{left:0.000000pt;}
.x1_c01137{left:67.840000pt;}
.x22_c01137{left:69.120000pt;}
.x2_c01137{left:132.480000pt;}
.x1f_c01137{left:133.760000pt;}
.x2c_c01137{left:135.040000pt;}
.x2d_c01137{left:192.000000pt;}
.x3_c01137{left:209.280000pt;}
.x16_c01137{left:210.560000pt;}
.x31_c01137{left:220.800000pt;}
.x2e_c01137{left:229.120000pt;}
.xf_c01137{left:236.800000pt;}
.x13_c01137{left:247.680000pt;}
.x23_c01137{left:256.640000pt;}
.x32_c01137{left:257.920000pt;}
.x4_c01137{left:275.840000pt;}
.x10_c01137{left:286.080000pt;}
.x24_c01137{left:295.680000pt;}
.x28_c01137{left:305.280000pt;}
.x12_c01137{left:314.880000pt;}
.x11_c01137{left:324.480000pt;}
.x26_c01137{left:334.720000pt;}
.xc_c01137{left:341.760000pt;}
.x25_c01137{left:344.320000pt;}
.x14_c01137{left:362.240000pt;}
.x17_c01137{left:372.480000pt;}
.xd_c01137{left:381.440000pt;}
.x29_c01137{left:384.000000pt;}
.x15_c01137{left:401.280000pt;}
.x27_c01137{left:410.880000pt;}
.x20_c01137{left:449.920000pt;}
.xe_c01137{left:457.600000pt;}
.x2a_c01137{left:489.600000pt;}
.x1c_c01137{left:497.280000pt;}
.x6_c01137{left:498.560000pt;}
.x2b_c01137{left:508.160000pt;}
.x7_c01137{left:516.480000pt;}
.x18_c01137{left:517.760000pt;}
.x2f_c01137{left:519.040000pt;}
.x8_c01137{left:535.680000pt;}
.x1d_c01137{left:565.120000pt;}
.x19_c01137{left:566.400000pt;}
.xa_c01137{left:586.880000pt;}
.x1b_c01137{left:595.200000pt;}
.x21_c01137{left:596.480000pt;}
.x5_c01137{left:610.560000pt;}
.x1e_c01137{left:625.280000pt;}
.x9_c01137{left:633.600000pt;}
.xb_c01137{left:634.880000pt;}
.x1a_c01137{left:652.800000pt;}
.x30_c01137{left:654.080000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_cd789a5b08cda2c614172afa.woff2')format("woff");}.ff1_c01138{font-family:ff1_c01138;line-height:1.109863;font-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_c01138{transform:matrix(0.080925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080925,0.000000,0.000000,0.250000,0,0);}
.m27_c01138{transform:matrix(0.137750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137750,0.000000,0.000000,0.250000,0,0);}
.m50_c01138{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);}
.m31_c01138{transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);}
.m2c_c01138{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);}
.m49_c01138{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);}
.m30_c01138{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m52_c01138{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m4d_c01138{transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);}
.m3f_c01138{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m2a_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);}
.m37_c01138{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01138{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);}
.m41_c01138{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);}
.m5c_c01138{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);}
.m46_c01138{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);}
.m3e_c01138{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);}
.m44_c01138{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_c01138{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);}
.m4b_c01138{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m22_c01138{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01138{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m32_c01138{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m12_c01138{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);}
.m4a_c01138{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m15_c01138{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01138{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m21_c01138{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01138{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m38_c01138{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m6_c01138{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m48_c01138{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.me_c01138{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m40_c01138{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m17_c01138{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1_c01138{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mb_c01138{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m35_c01138{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m7_c01138{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);}
.m54_c01138{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);}
.m3b_c01138{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_c01138{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01138{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01138{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m2_c01138{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m29_c01138{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);}
.m2d_c01138{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m28_c01138{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);}
.m56_c01138{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01138{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);}
.m42_c01138{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);}
.m39_c01138{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m53_c01138{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);}
.m1f_c01138{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_c01138{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);}
.m3d_c01138{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m5b_c01138{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);}
.m45_c01138{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01138{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m10_c01138{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m47_c01138{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);}
.m58_c01138{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01138{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m20_c01138{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m18_c01138{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);}
.ma_c01138{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01138{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m33_c01138{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m5a_c01138{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m4f_c01138{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m34_c01138{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);}
.m0_c01138{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m23_c01138{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);}
.m8_c01138{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m59_c01138{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m13_c01138{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);}
.m14_c01138{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01138{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m11_c01138{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m4_c01138{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.mc_c01138{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);}
.m57_c01138{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m51_c01138{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m16_c01138{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m3_c01138{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m9_c01138{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.md_c01138{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m5_c01138{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01138{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m43_c01138{transform:matrix(0.707500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.707500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.707500,0.000000,0.000000,0.250000,0,0);}
.m36_c01138{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);}
.m55_c01138{transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);}
.m24_c01138{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.v0_c01138{vertical-align:0.000000px;}
.v1_c01138{vertical-align:2.880000px;}
.ls0_c01138{letter-spacing:0.000000px;}
.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;}
}
.ws1_c01138{word-spacing:0.000000px;}
.ws0_c01138{word-spacing:15.600000px;}
.fc0_c01138{color:transparent;}
.fsc_c01138{font-size:17.280000px;}
.fs10_c01138{font-size:23.040000px;}
.fs13_c01138{font-size:25.920000px;}
.fs5_c01138{font-size:34.560000px;}
.fs9_c01138{font-size:37.440000px;}
.fs14_c01138{font-size:40.320000px;}
.fs12_c01138{font-size:43.200000px;}
.fs3_c01138{font-size:46.080000px;}
.fs8_c01138{font-size:48.960000px;}
.fs4_c01138{font-size:51.840000px;}
.fsd_c01138{font-size:54.720000px;}
.fsb_c01138{font-size:57.600000px;}
.fs7_c01138{font-size:60.480000px;}
.fs2_c01138{font-size:63.360000px;}
.fs1_c01138{font-size:66.240000px;}
.fs6_c01138{font-size:69.120000px;}
.fsa_c01138{font-size:72.000000px;}
.fs11_c01138{font-size:74.880000px;}
.fs0_c01138{font-size:77.760000px;}
.fsf_c01138{font-size:129.600000px;}
.fse_c01138{font-size:144.000000px;}
.y0_c01138{bottom:0.000000px;}
.y9d_c01138{bottom:38.160000px;}
.y9c_c01138{bottom:38.880000px;}
.y9b_c01138{bottom:40.320000px;}
.y99_c01138{bottom:42.480000px;}
.y9a_c01138{bottom:44.640000px;}
.y97_c01138{bottom:46.800000px;}
.y98_c01138{bottom:47.520000px;}
.y96_c01138{bottom:82.080000px;}
.y95_c01138{bottom:82.800000px;}
.y94_c01138{bottom:83.520000px;}
.y91_c01138{bottom:84.960000px;}
.y93_c01138{bottom:85.680000px;}
.y92_c01138{bottom:87.120000px;}
.y90_c01138{bottom:90.000000px;}
.y8e_c01138{bottom:126.000000px;}
.y8f_c01138{bottom:126.720000px;}
.y8d_c01138{bottom:127.440000px;}
.y8b_c01138{bottom:131.760000px;}
.y8c_c01138{bottom:133.200000px;}
.y8a_c01138{bottom:168.480000px;}
.y89_c01138{bottom:169.200000px;}
.y88_c01138{bottom:170.640000px;}
.y87_c01138{bottom:171.360000px;}
.y86_c01138{bottom:175.680000px;}
.y85_c01138{bottom:210.960000px;}
.y84_c01138{bottom:211.680000px;}
.y82_c01138{bottom:213.120000px;}
.y83_c01138{bottom:213.840000px;}
.y81_c01138{bottom:217.440000px;}
.y7e_c01138{bottom:255.600000px;}
.y7f_c01138{bottom:256.320000px;}
.y80_c01138{bottom:257.040000px;}
.y7d_c01138{bottom:260.640000px;}
.y60_c01138{bottom:299.520000px;}
.y5d_c01138{bottom:300.240000px;}
.y5e_c01138{bottom:300.960000px;}
.y5f_c01138{bottom:303.120000px;}
.y5c_c01138{bottom:353.520000px;}
.y59_c01138{bottom:354.240000px;}
.y4b_c01138{bottom:354.960000px;}
.y58_c01138{bottom:357.120000px;}
.y51_c01138{bottom:358.560000px;}
.y7c_c01138{bottom:373.680000px;}
.y79_c01138{bottom:374.400000px;}
.y5b_c01138{bottom:375.120000px;}
.y4a_c01138{bottom:375.840000px;}
.y54_c01138{bottom:376.560000px;}
.y5a_c01138{bottom:377.280000px;}
.y4f_c01138{bottom:378.000000px;}
.y50_c01138{bottom:378.720000px;}
.y7b_c01138{bottom:395.280000px;}
.y78_c01138{bottom:396.000000px;}
.y53_c01138{bottom:397.440000px;}
.y49_c01138{bottom:398.160000px;}
.y4e_c01138{bottom:398.880000px;}
.y45_c01138{bottom:401.040000px;}
.y7a_c01138{bottom:417.600000px;}
.y47_c01138{bottom:418.320000px;}
.y44_c01138{bottom:419.040000px;}
.y48_c01138{bottom:419.760000px;}
.y4d_c01138{bottom:420.480000px;}
.y57_c01138{bottom:439.200000px;}
.y77_c01138{bottom:439.920000px;}
.y52_c01138{bottom:440.640000px;}
.y56_c01138{bottom:442.080000px;}
.y46_c01138{bottom:442.800000px;}
.y43_c01138{bottom:443.520000px;}
.y4c_c01138{bottom:444.960000px;}
.y55_c01138{bottom:461.520000px;}
.y42_c01138{bottom:462.240000px;}
.y41_c01138{bottom:462.960000px;}
.y76_c01138{bottom:463.680000px;}
.y37_c01138{bottom:465.120000px;}
.y75_c01138{bottom:488.160000px;}
.y31_c01138{bottom:490.320000px;}
.y39_c01138{bottom:493.920000px;}
.y40_c01138{bottom:494.640000px;}
.y38_c01138{bottom:495.360000px;}
.y30_c01138{bottom:496.080000px;}
.y2f_c01138{bottom:496.800000px;}
.y74_c01138{bottom:502.560000px;}
.y73_c01138{bottom:535.680000px;}
.y72_c01138{bottom:537.120000px;}
.y36_c01138{bottom:538.560000px;}
.y3f_c01138{bottom:539.280000px;}
.y2b_c01138{bottom:547.200000px;}
.y2e_c01138{bottom:547.920000px;}
.y2d_c01138{bottom:549.360000px;}
.y2c_c01138{bottom:550.080000px;}
.y2a_c01138{bottom:558.000000px;}
.y27_c01138{bottom:558.720000px;}
.y28_c01138{bottom:559.440000px;}
.y29_c01138{bottom:562.320000px;}
.y3e_c01138{bottom:568.080000px;}
.y35_c01138{bottom:570.240000px;}
.y34_c01138{bottom:570.960000px;}
.y3d_c01138{bottom:610.560000px;}
.y26_c01138{bottom:611.280000px;}
.y3c_c01138{bottom:612.000000px;}
.y32_c01138{bottom:614.160000px;}
.y3b_c01138{bottom:617.040000px;}
.y23_c01138{bottom:621.360000px;}
.y24_c01138{bottom:622.800000px;}
.y22_c01138{bottom:624.240000px;}
.y33_c01138{bottom:633.600000px;}
.y3a_c01138{bottom:634.320000px;}
.y25_c01138{bottom:635.040000px;}
.y20_c01138{bottom:673.200000px;}
.y21_c01138{bottom:673.920000px;}
.y1f_c01138{bottom:674.640000px;}
.y64_c01138{bottom:676.080000px;}
.y71_c01138{bottom:677.520000px;}
.y1d_c01138{bottom:717.120000px;}
.y1c_c01138{bottom:717.840000px;}
.y70_c01138{bottom:718.560000px;}
.y63_c01138{bottom:719.280000px;}
.y1e_c01138{bottom:720.000000px;}
.y1a_c01138{bottom:759.600000px;}
.y1b_c01138{bottom:762.480000px;}
.y15_c01138{bottom:791.280000px;}
.y14_c01138{bottom:792.000000px;}
.y18_c01138{bottom:792.720000px;}
.y16_c01138{bottom:794.160000px;}
.y17_c01138{bottom:794.880000px;}
.y19_c01138{bottom:795.600000px;}
.y6f_c01138{bottom:797.040000px;}
.y12_c01138{bottom:834.480000px;}
.y62_c01138{bottom:837.360000px;}
.y13_c01138{bottom:838.080000px;}
.y6d_c01138{bottom:839.520000px;}
.y6e_c01138{bottom:840.240000px;}
.ye_c01138{bottom:876.960000px;}
.yf_c01138{bottom:877.680000px;}
.y10_c01138{bottom:880.560000px;}
.y11_c01138{bottom:881.280000px;}
.y6b_c01138{bottom:882.000000px;}
.y6c_c01138{bottom:883.440000px;}
.ya_c01138{bottom:920.160000px;}
.yb_c01138{bottom:920.880000px;}
.y61_c01138{bottom:923.040000px;}
.yc_c01138{bottom:923.760000px;}
.yd_c01138{bottom:925.200000px;}
.y6a_c01138{bottom:927.360000px;}
.y5_c01138{bottom:961.920000px;}
.y6_c01138{bottom:964.080000px;}
.y7_c01138{bottom:966.240000px;}
.y8_c01138{bottom:966.960000px;}
.y9_c01138{bottom:967.680000px;}
.y69_c01138{bottom:968.400000px;}
.y68_c01138{bottom:970.560000px;}
.y67_c01138{bottom:971.280000px;}
.y2_c01138{bottom:1005.840000px;}
.y3_c01138{bottom:1010.160000px;}
.y4_c01138{bottom:1011.600000px;}
.y65_c01138{bottom:1013.040000px;}
.y66_c01138{bottom:1013.760000px;}
.y1_c01138{bottom:1024.560000px;}
.he_c01138{height:15.550313px;}
.h12_c01138{height:20.733750px;}
.h15_c01138{height:23.325469px;}
.h7_c01138{height:31.100625px;}
.hb_c01138{height:33.692344px;}
.h16_c01138{height:36.284062px;}
.h14_c01138{height:38.875781px;}
.h5_c01138{height:41.467500px;}
.ha_c01138{height:44.059219px;}
.h6_c01138{height:46.650937px;}
.hf_c01138{height:49.242656px;}
.hd_c01138{height:51.834375px;}
.h9_c01138{height:54.426094px;}
.h17_c01138{height:54.714375px;}
.h4_c01138{height:57.017812px;}
.h3_c01138{height:59.609531px;}
.h8_c01138{height:62.201250px;}
.hc_c01138{height:64.792969px;}
.h13_c01138{height:67.384687px;}
.h2_c01138{height:69.976406px;}
.h11_c01138{height:116.627344px;}
.h10_c01138{height:129.585938px;}
.h1_c01138{height:1149.750000px;}
.h0_c01138{height:1149.840000px;}
.w1_c01138{width:783.750000px;}
.w0_c01138{width:784.080000px;}
.x0_c01138{left:0.000000px;}
.x1_c01138{left:69.840000px;}
.x2_c01138{left:71.280000px;}
.x2d_c01138{left:73.440000px;}
.x2b_c01138{left:82.080000px;}
.x1c_c01138{left:83.520000px;}
.x10_c01138{left:103.680000px;}
.x2c_c01138{left:115.200000px;}
.x26_c01138{left:125.280000px;}
.x3_c01138{left:144.720000px;}
.xf_c01138{left:146.160000px;}
.x27_c01138{left:156.960000px;}
.x13_c01138{left:166.320000px;}
.x17_c01138{left:177.840000px;}
.x47_c01138{left:188.640000px;}
.x44_c01138{left:190.080000px;}
.x11_c01138{left:198.000000px;}
.x32_c01138{left:199.440000px;}
.x2a_c01138{left:220.320000px;}
.x29_c01138{left:221.760000px;}
.x4_c01138{left:229.680000px;}
.xa_c01138{left:231.120000px;}
.xe_c01138{left:241.200000px;}
.x14_c01138{left:253.440000px;}
.x33_c01138{left:254.880000px;}
.x12_c01138{left:263.520000px;}
.x5_c01138{left:282.960000px;}
.x15_c01138{left:284.400000px;}
.x34_c01138{left:288.000000px;}
.x8_c01138{left:295.200000px;}
.x28_c01138{left:296.640000px;}
.x18_c01138{left:317.520000px;}
.x1d_c01138{left:327.600000px;}
.x16_c01138{left:329.040000px;}
.x6_c01138{left:336.960000px;}
.x7_c01138{left:338.400000px;}
.x9_c01138{left:349.200000px;}
.x2f_c01138{left:350.640000px;}
.x2e_c01138{left:361.440000px;}
.x19_c01138{left:371.520000px;}
.x1a_c01138{left:382.320000px;}
.x30_c01138{left:383.760000px;}
.x1b_c01138{left:392.400000px;}
.x1e_c01138{left:403.920000px;}
.xb_c01138{left:434.160000px;}
.x1f_c01138{left:435.600000px;}
.x23_c01138{left:447.120000px;}
.x4b_c01138{left:457.920000px;}
.x20_c01138{left:468.720000px;}
.x31_c01138{left:480.240000px;}
.xc_c01138{left:489.600000px;}
.x21_c01138{left:501.120000px;}
.x24_c01138{left:522.720000px;}
.x22_c01138{left:533.520000px;}
.xd_c01138{left:544.320000px;}
.x4a_c01138{left:545.760000px;}
.x25_c01138{left:555.120000px;}
.x3d_c01138{left:576.720000px;}
.x42_c01138{left:578.160000px;}
.x3e_c01138{left:599.760000px;}
.x3f_c01138{left:609.120000px;}
.x43_c01138{left:611.280000px;}
.x35_c01138{left:630.720000px;}
.x39_c01138{left:632.160000px;}
.x48_c01138{left:633.600000px;}
.x36_c01138{left:664.560000px;}
.x45_c01138{left:666.000000px;}
.x3c_c01138{left:675.360000px;}
.x41_c01138{left:686.880000px;}
.x37_c01138{left:696.960000px;}
.x3b_c01138{left:698.400000px;}
.x38_c01138{left:707.040000px;}
.x3a_c01138{left:708.480000px;}
.x49_c01138{left:710.640000px;}
.x40_c01138{left:719.280000px;}
.x46_c01138{left:730.080000px;}
@media print{
.v0_c01138{vertical-align:0.000000pt;}
.v1_c01138{vertical-align:2.560000pt;}
.ls0_c01138{letter-spacing:0.000000pt;}
.ws1_c01138{word-spacing:0.000000pt;}
.ws0_c01138{word-spacing:13.866667pt;}
.fsc_c01138{font-size:15.360000pt;}
.fs10_c01138{font-size:20.480000pt;}
.fs13_c01138{font-size:23.040000pt;}
.fs5_c01138{font-size:30.720000pt;}
.fs9_c01138{font-size:33.280000pt;}
.fs14_c01138{font-size:35.840000pt;}
.fs12_c01138{font-size:38.400000pt;}
.fs3_c01138{font-size:40.960000pt;}
.fs8_c01138{font-size:43.520000pt;}
.fs4_c01138{font-size:46.080000pt;}
.fsd_c01138{font-size:48.640000pt;}
.fsb_c01138{font-size:51.200000pt;}
.fs7_c01138{font-size:53.760000pt;}
.fs2_c01138{font-size:56.320000pt;}
.fs1_c01138{font-size:58.880000pt;}
.fs6_c01138{font-size:61.440000pt;}
.fsa_c01138{font-size:64.000000pt;}
.fs11_c01138{font-size:66.560000pt;}
.fs0_c01138{font-size:69.120000pt;}
.fsf_c01138{font-size:115.200000pt;}
.fse_c01138{font-size:128.000000pt;}
.y0_c01138{bottom:0.000000pt;}
.y9d_c01138{bottom:33.920000pt;}
.y9c_c01138{bottom:34.560000pt;}
.y9b_c01138{bottom:35.840000pt;}
.y99_c01138{bottom:37.760000pt;}
.y9a_c01138{bottom:39.680000pt;}
.y97_c01138{bottom:41.600000pt;}
.y98_c01138{bottom:42.240000pt;}
.y96_c01138{bottom:72.960000pt;}
.y95_c01138{bottom:73.600000pt;}
.y94_c01138{bottom:74.240000pt;}
.y91_c01138{bottom:75.520000pt;}
.y93_c01138{bottom:76.160000pt;}
.y92_c01138{bottom:77.440000pt;}
.y90_c01138{bottom:80.000000pt;}
.y8e_c01138{bottom:112.000000pt;}
.y8f_c01138{bottom:112.640000pt;}
.y8d_c01138{bottom:113.280000pt;}
.y8b_c01138{bottom:117.120000pt;}
.y8c_c01138{bottom:118.400000pt;}
.y8a_c01138{bottom:149.760000pt;}
.y89_c01138{bottom:150.400000pt;}
.y88_c01138{bottom:151.680000pt;}
.y87_c01138{bottom:152.320000pt;}
.y86_c01138{bottom:156.160000pt;}
.y85_c01138{bottom:187.520000pt;}
.y84_c01138{bottom:188.160000pt;}
.y82_c01138{bottom:189.440000pt;}
.y83_c01138{bottom:190.080000pt;}
.y81_c01138{bottom:193.280000pt;}
.y7e_c01138{bottom:227.200000pt;}
.y7f_c01138{bottom:227.840000pt;}
.y80_c01138{bottom:228.480000pt;}
.y7d_c01138{bottom:231.680000pt;}
.y60_c01138{bottom:266.240000pt;}
.y5d_c01138{bottom:266.880000pt;}
.y5e_c01138{bottom:267.520000pt;}
.y5f_c01138{bottom:269.440000pt;}
.y5c_c01138{bottom:314.240000pt;}
.y59_c01138{bottom:314.880000pt;}
.y4b_c01138{bottom:315.520000pt;}
.y58_c01138{bottom:317.440000pt;}
.y51_c01138{bottom:318.720000pt;}
.y7c_c01138{bottom:332.160000pt;}
.y79_c01138{bottom:332.800000pt;}
.y5b_c01138{bottom:333.440000pt;}
.y4a_c01138{bottom:334.080000pt;}
.y54_c01138{bottom:334.720000pt;}
.y5a_c01138{bottom:335.360000pt;}
.y4f_c01138{bottom:336.000000pt;}
.y50_c01138{bottom:336.640000pt;}
.y7b_c01138{bottom:351.360000pt;}
.y78_c01138{bottom:352.000000pt;}
.y53_c01138{bottom:353.280000pt;}
.y49_c01138{bottom:353.920000pt;}
.y4e_c01138{bottom:354.560000pt;}
.y45_c01138{bottom:356.480000pt;}
.y7a_c01138{bottom:371.200000pt;}
.y47_c01138{bottom:371.840000pt;}
.y44_c01138{bottom:372.480000pt;}
.y48_c01138{bottom:373.120000pt;}
.y4d_c01138{bottom:373.760000pt;}
.y57_c01138{bottom:390.400000pt;}
.y77_c01138{bottom:391.040000pt;}
.y52_c01138{bottom:391.680000pt;}
.y56_c01138{bottom:392.960000pt;}
.y46_c01138{bottom:393.600000pt;}
.y43_c01138{bottom:394.240000pt;}
.y4c_c01138{bottom:395.520000pt;}
.y55_c01138{bottom:410.240000pt;}
.y42_c01138{bottom:410.880000pt;}
.y41_c01138{bottom:411.520000pt;}
.y76_c01138{bottom:412.160000pt;}
.y37_c01138{bottom:413.440000pt;}
.y75_c01138{bottom:433.920000pt;}
.y31_c01138{bottom:435.840000pt;}
.y39_c01138{bottom:439.040000pt;}
.y40_c01138{bottom:439.680000pt;}
.y38_c01138{bottom:440.320000pt;}
.y30_c01138{bottom:440.960000pt;}
.y2f_c01138{bottom:441.600000pt;}
.y74_c01138{bottom:446.720000pt;}
.y73_c01138{bottom:476.160000pt;}
.y72_c01138{bottom:477.440000pt;}
.y36_c01138{bottom:478.720000pt;}
.y3f_c01138{bottom:479.360000pt;}
.y2b_c01138{bottom:486.400000pt;}
.y2e_c01138{bottom:487.040000pt;}
.y2d_c01138{bottom:488.320000pt;}
.y2c_c01138{bottom:488.960000pt;}
.y2a_c01138{bottom:496.000000pt;}
.y27_c01138{bottom:496.640000pt;}
.y28_c01138{bottom:497.280000pt;}
.y29_c01138{bottom:499.840000pt;}
.y3e_c01138{bottom:504.960000pt;}
.y35_c01138{bottom:506.880000pt;}
.y34_c01138{bottom:507.520000pt;}
.y3d_c01138{bottom:542.720000pt;}
.y26_c01138{bottom:543.360000pt;}
.y3c_c01138{bottom:544.000000pt;}
.y32_c01138{bottom:545.920000pt;}
.y3b_c01138{bottom:548.480000pt;}
.y23_c01138{bottom:552.320000pt;}
.y24_c01138{bottom:553.600000pt;}
.y22_c01138{bottom:554.880000pt;}
.y33_c01138{bottom:563.200000pt;}
.y3a_c01138{bottom:563.840000pt;}
.y25_c01138{bottom:564.480000pt;}
.y20_c01138{bottom:598.400000pt;}
.y21_c01138{bottom:599.040000pt;}
.y1f_c01138{bottom:599.680000pt;}
.y64_c01138{bottom:600.960000pt;}
.y71_c01138{bottom:602.240000pt;}
.y1d_c01138{bottom:637.440000pt;}
.y1c_c01138{bottom:638.080000pt;}
.y70_c01138{bottom:638.720000pt;}
.y63_c01138{bottom:639.360000pt;}
.y1e_c01138{bottom:640.000000pt;}
.y1a_c01138{bottom:675.200000pt;}
.y1b_c01138{bottom:677.760000pt;}
.y15_c01138{bottom:703.360000pt;}
.y14_c01138{bottom:704.000000pt;}
.y18_c01138{bottom:704.640000pt;}
.y16_c01138{bottom:705.920000pt;}
.y17_c01138{bottom:706.560000pt;}
.y19_c01138{bottom:707.200000pt;}
.y6f_c01138{bottom:708.480000pt;}
.y12_c01138{bottom:741.760000pt;}
.y62_c01138{bottom:744.320000pt;}
.y13_c01138{bottom:744.960000pt;}
.y6d_c01138{bottom:746.240000pt;}
.y6e_c01138{bottom:746.880000pt;}
.ye_c01138{bottom:779.520000pt;}
.yf_c01138{bottom:780.160000pt;}
.y10_c01138{bottom:782.720000pt;}
.y11_c01138{bottom:783.360000pt;}
.y6b_c01138{bottom:784.000000pt;}
.y6c_c01138{bottom:785.280000pt;}
.ya_c01138{bottom:817.920000pt;}
.yb_c01138{bottom:818.560000pt;}
.y61_c01138{bottom:820.480000pt;}
.yc_c01138{bottom:821.120000pt;}
.yd_c01138{bottom:822.400000pt;}
.y6a_c01138{bottom:824.320000pt;}
.y5_c01138{bottom:855.040000pt;}
.y6_c01138{bottom:856.960000pt;}
.y7_c01138{bottom:858.880000pt;}
.y8_c01138{bottom:859.520000pt;}
.y9_c01138{bottom:860.160000pt;}
.y69_c01138{bottom:860.800000pt;}
.y68_c01138{bottom:862.720000pt;}
.y67_c01138{bottom:863.360000pt;}
.y2_c01138{bottom:894.080000pt;}
.y3_c01138{bottom:897.920000pt;}
.y4_c01138{bottom:899.200000pt;}
.y65_c01138{bottom:900.480000pt;}
.y66_c01138{bottom:901.120000pt;}
.y1_c01138{bottom:910.720000pt;}
.he_c01138{height:13.822500pt;}
.h12_c01138{height:18.430000pt;}
.h15_c01138{height:20.733750pt;}
.h7_c01138{height:27.645000pt;}
.hb_c01138{height:29.948750pt;}
.h16_c01138{height:32.252500pt;}
.h14_c01138{height:34.556250pt;}
.h5_c01138{height:36.860000pt;}
.ha_c01138{height:39.163750pt;}
.h6_c01138{height:41.467500pt;}
.hf_c01138{height:43.771250pt;}
.hd_c01138{height:46.075000pt;}
.h9_c01138{height:48.378750pt;}
.h17_c01138{height:48.635000pt;}
.h4_c01138{height:50.682500pt;}
.h3_c01138{height:52.986250pt;}
.h8_c01138{height:55.290000pt;}
.hc_c01138{height:57.593750pt;}
.h13_c01138{height:59.897500pt;}
.h2_c01138{height:62.201250pt;}
.h11_c01138{height:103.668750pt;}
.h10_c01138{height:115.187500pt;}
.h1_c01138{height:1022.000000pt;}
.h0_c01138{height:1022.080000pt;}
.w1_c01138{width:696.666667pt;}
.w0_c01138{width:696.960000pt;}
.x0_c01138{left:0.000000pt;}
.x1_c01138{left:62.080000pt;}
.x2_c01138{left:63.360000pt;}
.x2d_c01138{left:65.280000pt;}
.x2b_c01138{left:72.960000pt;}
.x1c_c01138{left:74.240000pt;}
.x10_c01138{left:92.160000pt;}
.x2c_c01138{left:102.400000pt;}
.x26_c01138{left:111.360000pt;}
.x3_c01138{left:128.640000pt;}
.xf_c01138{left:129.920000pt;}
.x27_c01138{left:139.520000pt;}
.x13_c01138{left:147.840000pt;}
.x17_c01138{left:158.080000pt;}
.x47_c01138{left:167.680000pt;}
.x44_c01138{left:168.960000pt;}
.x11_c01138{left:176.000000pt;}
.x32_c01138{left:177.280000pt;}
.x2a_c01138{left:195.840000pt;}
.x29_c01138{left:197.120000pt;}
.x4_c01138{left:204.160000pt;}
.xa_c01138{left:205.440000pt;}
.xe_c01138{left:214.400000pt;}
.x14_c01138{left:225.280000pt;}
.x33_c01138{left:226.560000pt;}
.x12_c01138{left:234.240000pt;}
.x5_c01138{left:251.520000pt;}
.x15_c01138{left:252.800000pt;}
.x34_c01138{left:256.000000pt;}
.x8_c01138{left:262.400000pt;}
.x28_c01138{left:263.680000pt;}
.x18_c01138{left:282.240000pt;}
.x1d_c01138{left:291.200000pt;}
.x16_c01138{left:292.480000pt;}
.x6_c01138{left:299.520000pt;}
.x7_c01138{left:300.800000pt;}
.x9_c01138{left:310.400000pt;}
.x2f_c01138{left:311.680000pt;}
.x2e_c01138{left:321.280000pt;}
.x19_c01138{left:330.240000pt;}
.x1a_c01138{left:339.840000pt;}
.x30_c01138{left:341.120000pt;}
.x1b_c01138{left:348.800000pt;}
.x1e_c01138{left:359.040000pt;}
.xb_c01138{left:385.920000pt;}
.x1f_c01138{left:387.200000pt;}
.x23_c01138{left:397.440000pt;}
.x4b_c01138{left:407.040000pt;}
.x20_c01138{left:416.640000pt;}
.x31_c01138{left:426.880000pt;}
.xc_c01138{left:435.200000pt;}
.x21_c01138{left:445.440000pt;}
.x24_c01138{left:464.640000pt;}
.x22_c01138{left:474.240000pt;}
.xd_c01138{left:483.840000pt;}
.x4a_c01138{left:485.120000pt;}
.x25_c01138{left:493.440000pt;}
.x3d_c01138{left:512.640000pt;}
.x42_c01138{left:513.920000pt;}
.x3e_c01138{left:533.120000pt;}
.x3f_c01138{left:541.440000pt;}
.x43_c01138{left:543.360000pt;}
.x35_c01138{left:560.640000pt;}
.x39_c01138{left:561.920000pt;}
.x48_c01138{left:563.200000pt;}
.x36_c01138{left:590.720000pt;}
.x45_c01138{left:592.000000pt;}
.x3c_c01138{left:600.320000pt;}
.x41_c01138{left:610.560000pt;}
.x37_c01138{left:619.520000pt;}
.x3b_c01138{left:620.800000pt;}
.x38_c01138{left:628.480000pt;}
.x3a_c01138{left:629.760000pt;}
.x49_c01138{left:631.680000pt;}
.x40_c01138{left:639.360000pt;}
.x46_c01138{left:648.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_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_92952de6ec8f0184544f3164.woff2')format("woff");}.ff1_c01139{font-family:ff1_c01139;line-height:1.109863;font-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_c01139{transform:matrix(0.088225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088225,0.000000,0.000000,0.250000,0,0);}
.m12_c01139{transform:matrix(0.180875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180875,0.000000,0.000000,0.250000,0,0);}
.m2a_c01139{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m2c_c01139{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m2b_c01139{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m9_c01139{transform:matrix(0.246375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246375,0.000000,0.000000,0.250000,0,0);}
.m8_c01139{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m2e_c01139{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m20_c01139{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01139{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m3_c01139{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m1_c01139{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01139{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.me_c01139{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m14_c01139{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m2_c01139{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m6_c01139{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01139{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mb_c01139{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m15_c01139{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_c01139{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m29_c01139{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mc_c01139{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m27_c01139{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m18_c01139{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01139{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01139{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01139{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m26_c01139{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m23_c01139{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m4_c01139{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m16_c01139{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m24_c01139{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m34_c01139{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m21_c01139{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_c01139{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);}
.m30_c01139{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m40_c01139{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01139{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);}
.m39_c01139{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m31_c01139{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m25_c01139{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01139{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);}
.m1f_c01139{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);}
.m38_c01139{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m7_c01139{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);}
.m32_c01139{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01139{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);}
.mf_c01139{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01139{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m33_c01139{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m36_c01139{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);}
.m0_c01139{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);}
.m3d_c01139{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01139{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m41_c01139{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m5_c01139{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m37_c01139{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.ma_c01139{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.md_c01139{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);}
.m35_c01139{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m22_c01139{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);}
.m10_c01139{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01139{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01139{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.m28_c01139{transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);}
.v0_c01139{vertical-align:0.000000px;}
.v1_c01139{vertical-align:2.880000px;}
.v2_c01139{vertical-align:5.760000px;}
.ls1_c01139{letter-spacing:0.000000px;}
.ls0_c01139{letter-spacing:42.841680px;}
.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;}
}
.ws1_c01139{word-spacing:0.000000px;}
.ws0_c01139{word-spacing:10.267200px;}
.fc0_c01139{color:transparent;}
.fs6_c01139{font-size:34.560000px;}
.fs4_c01139{font-size:43.200000px;}
.fs7_c01139{font-size:46.080000px;}
.fsf_c01139{font-size:48.960000px;}
.fs0_c01139{font-size:51.840000px;}
.fs8_c01139{font-size:54.720000px;}
.fs5_c01139{font-size:57.600000px;}
.fs3_c01139{font-size:60.480000px;}
.fse_c01139{font-size:63.360000px;}
.fsd_c01139{font-size:66.240000px;}
.fs2_c01139{font-size:69.120000px;}
.fs1_c01139{font-size:72.000000px;}
.fsb_c01139{font-size:74.880000px;}
.fsc_c01139{font-size:89.280000px;}
.fsa_c01139{font-size:97.920000px;}
.fs9_c01139{font-size:115.200000px;}
.y0_c01139{bottom:0.000000px;}
.y1e_c01139{bottom:36.720000px;}
.y1c_c01139{bottom:45.360000px;}
.y1b_c01139{bottom:46.800000px;}
.y1d_c01139{bottom:47.520000px;}
.y1a_c01139{bottom:50.400000px;}
.y18_c01139{bottom:75.600000px;}
.y19_c01139{bottom:77.040000px;}
.y17_c01139{bottom:87.120000px;}
.y15_c01139{bottom:90.000000px;}
.y16_c01139{bottom:92.880000px;}
.y14_c01139{bottom:94.320000px;}
.y13_c01139{bottom:131.040000px;}
.y5a_c01139{bottom:131.760000px;}
.y11_c01139{bottom:132.480000px;}
.y10_c01139{bottom:135.360000px;}
.y12_c01139{bottom:136.080000px;}
.y59_c01139{bottom:173.520000px;}
.yf_c01139{bottom:174.240000px;}
.yc_c01139{bottom:174.960000px;}
.ye_c01139{bottom:175.680000px;}
.yb_c01139{bottom:177.840000px;}
.yd_c01139{bottom:178.560000px;}
.ya_c01139{bottom:216.720000px;}
.y9_c01139{bottom:217.440000px;}
.y8_c01139{bottom:220.320000px;}
.y7_c01139{bottom:259.200000px;}
.y5_c01139{bottom:260.640000px;}
.y57_c01139{bottom:261.360000px;}
.y58_c01139{bottom:262.080000px;}
.y6_c01139{bottom:263.520000px;}
.y4_c01139{bottom:264.240000px;}
.y3_c01139{bottom:302.400000px;}
.y2_c01139{bottom:303.120000px;}
.y56_c01139{bottom:303.840000px;}
.y1_c01139{bottom:306.720000px;}
.y81_c01139{bottom:344.880000px;}
.y55_c01139{bottom:346.320000px;}
.y54_c01139{bottom:349.200000px;}
.y80_c01139{bottom:388.080000px;}
.y53_c01139{bottom:389.520000px;}
.y7f_c01139{bottom:390.960000px;}
.y52_c01139{bottom:392.400000px;}
.y7e_c01139{bottom:430.560000px;}
.y50_c01139{bottom:432.000000px;}
.y51_c01139{bottom:432.720000px;}
.y7d_c01139{bottom:433.440000px;}
.y4f_c01139{bottom:435.600000px;}
.y7c_c01139{bottom:473.040000px;}
.y4d_c01139{bottom:475.200000px;}
.y4c_c01139{bottom:477.360000px;}
.y4e_c01139{bottom:478.080000px;}
.y7b_c01139{bottom:515.520000px;}
.y7a_c01139{bottom:517.680000px;}
.y4a_c01139{bottom:518.400000px;}
.y4b_c01139{bottom:519.120000px;}
.y49_c01139{bottom:520.560000px;}
.y79_c01139{bottom:558.720000px;}
.y47_c01139{bottom:560.880000px;}
.y48_c01139{bottom:561.600000px;}
.y46_c01139{bottom:563.040000px;}
.y78_c01139{bottom:601.200000px;}
.y77_c01139{bottom:603.360000px;}
.y44_c01139{bottom:604.800000px;}
.y45_c01139{bottom:605.520000px;}
.y43_c01139{bottom:606.240000px;}
.y76_c01139{bottom:644.400000px;}
.y75_c01139{bottom:645.840000px;}
.y42_c01139{bottom:648.000000px;}
.y41_c01139{bottom:650.160000px;}
.y74_c01139{bottom:686.880000px;}
.y73_c01139{bottom:689.040000px;}
.y3e_c01139{bottom:690.480000px;}
.y3f_c01139{bottom:691.200000px;}
.y3d_c01139{bottom:692.640000px;}
.y40_c01139{bottom:694.080000px;}
.y72_c01139{bottom:728.640000px;}
.y71_c01139{bottom:731.520000px;}
.y3a_c01139{bottom:733.680000px;}
.y3c_c01139{bottom:735.120000px;}
.y39_c01139{bottom:735.840000px;}
.y3b_c01139{bottom:737.280000px;}
.y70_c01139{bottom:772.560000px;}
.y6f_c01139{bottom:774.000000px;}
.y36_c01139{bottom:776.880000px;}
.y38_c01139{bottom:778.320000px;}
.y35_c01139{bottom:779.040000px;}
.y37_c01139{bottom:779.760000px;}
.y6e_c01139{bottom:815.040000px;}
.y6d_c01139{bottom:816.480000px;}
.y31_c01139{bottom:820.800000px;}
.y32_c01139{bottom:822.240000px;}
.y30_c01139{bottom:822.960000px;}
.y33_c01139{bottom:823.680000px;}
.y34_c01139{bottom:824.400000px;}
.y6a_c01139{bottom:858.240000px;}
.y69_c01139{bottom:858.960000px;}
.y6c_c01139{bottom:859.680000px;}
.y6b_c01139{bottom:863.280000px;}
.y2e_c01139{bottom:864.720000px;}
.y2d_c01139{bottom:865.440000px;}
.y2f_c01139{bottom:866.160000px;}
.y68_c01139{bottom:900.000000px;}
.y67_c01139{bottom:901.440000px;}
.y2a_c01139{bottom:905.760000px;}
.y2b_c01139{bottom:906.480000px;}
.y2c_c01139{bottom:907.200000px;}
.y29_c01139{bottom:909.360000px;}
.y63_c01139{bottom:943.200000px;}
.y66_c01139{bottom:943.920000px;}
.y64_c01139{bottom:946.080000px;}
.y65_c01139{bottom:946.800000px;}
.y27_c01139{bottom:948.960000px;}
.y28_c01139{bottom:949.680000px;}
.y5f_c01139{bottom:985.680000px;}
.y61_c01139{bottom:986.400000px;}
.y60_c01139{bottom:988.560000px;}
.y62_c01139{bottom:990.000000px;}
.y24_c01139{bottom:992.160000px;}
.y23_c01139{bottom:992.880000px;}
.y25_c01139{bottom:995.040000px;}
.y26_c01139{bottom:995.760000px;}
.y5b_c01139{bottom:1028.880000px;}
.y5c_c01139{bottom:1031.040000px;}
.y5e_c01139{bottom:1031.760000px;}
.y5d_c01139{bottom:1033.920000px;}
.y21_c01139{bottom:1035.360000px;}
.y20_c01139{bottom:1036.080000px;}
.y22_c01139{bottom:1036.800000px;}
.y1f_c01139{bottom:1090.080000px;}
.h8_c01139{height:31.100625px;}
.h6_c01139{height:38.875781px;}
.h9_c01139{height:41.467500px;}
.h12_c01139{height:44.059219px;}
.h2_c01139{height:46.650937px;}
.ha_c01139{height:49.242656px;}
.h11_c01139{height:49.530938px;}
.h7_c01139{height:51.834375px;}
.h5_c01139{height:54.426094px;}
.h13_c01139{height:55.002656px;}
.h10_c01139{height:57.017812px;}
.hf_c01139{height:59.609531px;}
.h4_c01139{height:62.201250px;}
.h3_c01139{height:64.792969px;}
.hd_c01139{height:67.384687px;}
.he_c01139{height:80.343281px;}
.hc_c01139{height:88.118437px;}
.hb_c01139{height:103.668750px;}
.h1_c01139{height:1151.250000px;}
.h0_c01139{height:1151.280000px;}
.w1_c01139{width:787.500000px;}
.w0_c01139{width:787.680000px;}
.x0_c01139{left:0.000000px;}
.x25_c01139{left:75.600000px;}
.x30_c01139{left:77.040000px;}
.x1_c01139{left:78.480000px;}
.x6_c01139{left:79.920000px;}
.x31_c01139{left:98.640000px;}
.x26_c01139{left:148.320000px;}
.x2c_c01139{left:149.760000px;}
.x2_c01139{left:151.200000px;}
.x9_c01139{left:152.640000px;}
.x27_c01139{left:191.520000px;}
.x2d_c01139{left:235.440000px;}
.x3_c01139{left:237.600000px;}
.xa_c01139{left:239.040000px;}
.x7_c01139{left:259.200000px;}
.xe_c01139{left:281.520000px;}
.x8_c01139{left:293.040000px;}
.x28_c01139{left:298.800000px;}
.x2e_c01139{left:319.680000px;}
.xb_c01139{left:334.800000px;}
.x29_c01139{left:341.280000px;}
.x4_c01139{left:367.200000px;}
.x2f_c01139{left:375.120000px;}
.x2b_c01139{left:385.200000px;}
.x5_c01139{left:410.400000px;}
.x2a_c01139{left:427.680000px;}
.xf_c01139{left:432.000000px;}
.x10_c01139{left:475.200000px;}
.xc_c01139{left:507.600000px;}
.x12_c01139{left:548.640000px;}
.x1d_c01139{left:550.080000px;}
.x19_c01139{left:560.160000px;}
.x1a_c01139{left:561.600000px;}
.x23_c01139{left:563.040000px;}
.x18_c01139{left:581.040000px;}
.x1b_c01139{left:582.480000px;}
.x21_c01139{left:583.920000px;}
.xd_c01139{left:585.360000px;}
.x13_c01139{left:601.920000px;}
.x20_c01139{left:604.080000px;}
.x24_c01139{left:605.520000px;}
.x15_c01139{left:636.480000px;}
.x16_c01139{left:669.600000px;}
.x1f_c01139{left:671.040000px;}
.x11_c01139{left:685.440000px;}
.x14_c01139{left:712.800000px;}
.x1c_c01139{left:714.240000px;}
.x22_c01139{left:715.680000px;}
.x17_c01139{left:732.960000px;}
.x1e_c01139{left:734.400000px;}
@media print{
.v0_c01139{vertical-align:0.000000pt;}
.v1_c01139{vertical-align:2.560000pt;}
.v2_c01139{vertical-align:5.120000pt;}
.ls1_c01139{letter-spacing:0.000000pt;}
.ls0_c01139{letter-spacing:38.081493pt;}
.ws1_c01139{word-spacing:0.000000pt;}
.ws0_c01139{word-spacing:9.126400pt;}
.fs6_c01139{font-size:30.720000pt;}
.fs4_c01139{font-size:38.400000pt;}
.fs7_c01139{font-size:40.960000pt;}
.fsf_c01139{font-size:43.520000pt;}
.fs0_c01139{font-size:46.080000pt;}
.fs8_c01139{font-size:48.640000pt;}
.fs5_c01139{font-size:51.200000pt;}
.fs3_c01139{font-size:53.760000pt;}
.fse_c01139{font-size:56.320000pt;}
.fsd_c01139{font-size:58.880000pt;}
.fs2_c01139{font-size:61.440000pt;}
.fs1_c01139{font-size:64.000000pt;}
.fsb_c01139{font-size:66.560000pt;}
.fsc_c01139{font-size:79.360000pt;}
.fsa_c01139{font-size:87.040000pt;}
.fs9_c01139{font-size:102.400000pt;}
.y0_c01139{bottom:0.000000pt;}
.y1e_c01139{bottom:32.640000pt;}
.y1c_c01139{bottom:40.320000pt;}
.y1b_c01139{bottom:41.600000pt;}
.y1d_c01139{bottom:42.240000pt;}
.y1a_c01139{bottom:44.800000pt;}
.y18_c01139{bottom:67.200000pt;}
.y19_c01139{bottom:68.480000pt;}
.y17_c01139{bottom:77.440000pt;}
.y15_c01139{bottom:80.000000pt;}
.y16_c01139{bottom:82.560000pt;}
.y14_c01139{bottom:83.840000pt;}
.y13_c01139{bottom:116.480000pt;}
.y5a_c01139{bottom:117.120000pt;}
.y11_c01139{bottom:117.760000pt;}
.y10_c01139{bottom:120.320000pt;}
.y12_c01139{bottom:120.960000pt;}
.y59_c01139{bottom:154.240000pt;}
.yf_c01139{bottom:154.880000pt;}
.yc_c01139{bottom:155.520000pt;}
.ye_c01139{bottom:156.160000pt;}
.yb_c01139{bottom:158.080000pt;}
.yd_c01139{bottom:158.720000pt;}
.ya_c01139{bottom:192.640000pt;}
.y9_c01139{bottom:193.280000pt;}
.y8_c01139{bottom:195.840000pt;}
.y7_c01139{bottom:230.400000pt;}
.y5_c01139{bottom:231.680000pt;}
.y57_c01139{bottom:232.320000pt;}
.y58_c01139{bottom:232.960000pt;}
.y6_c01139{bottom:234.240000pt;}
.y4_c01139{bottom:234.880000pt;}
.y3_c01139{bottom:268.800000pt;}
.y2_c01139{bottom:269.440000pt;}
.y56_c01139{bottom:270.080000pt;}
.y1_c01139{bottom:272.640000pt;}
.y81_c01139{bottom:306.560000pt;}
.y55_c01139{bottom:307.840000pt;}
.y54_c01139{bottom:310.400000pt;}
.y80_c01139{bottom:344.960000pt;}
.y53_c01139{bottom:346.240000pt;}
.y7f_c01139{bottom:347.520000pt;}
.y52_c01139{bottom:348.800000pt;}
.y7e_c01139{bottom:382.720000pt;}
.y50_c01139{bottom:384.000000pt;}
.y51_c01139{bottom:384.640000pt;}
.y7d_c01139{bottom:385.280000pt;}
.y4f_c01139{bottom:387.200000pt;}
.y7c_c01139{bottom:420.480000pt;}
.y4d_c01139{bottom:422.400000pt;}
.y4c_c01139{bottom:424.320000pt;}
.y4e_c01139{bottom:424.960000pt;}
.y7b_c01139{bottom:458.240000pt;}
.y7a_c01139{bottom:460.160000pt;}
.y4a_c01139{bottom:460.800000pt;}
.y4b_c01139{bottom:461.440000pt;}
.y49_c01139{bottom:462.720000pt;}
.y79_c01139{bottom:496.640000pt;}
.y47_c01139{bottom:498.560000pt;}
.y48_c01139{bottom:499.200000pt;}
.y46_c01139{bottom:500.480000pt;}
.y78_c01139{bottom:534.400000pt;}
.y77_c01139{bottom:536.320000pt;}
.y44_c01139{bottom:537.600000pt;}
.y45_c01139{bottom:538.240000pt;}
.y43_c01139{bottom:538.880000pt;}
.y76_c01139{bottom:572.800000pt;}
.y75_c01139{bottom:574.080000pt;}
.y42_c01139{bottom:576.000000pt;}
.y41_c01139{bottom:577.920000pt;}
.y74_c01139{bottom:610.560000pt;}
.y73_c01139{bottom:612.480000pt;}
.y3e_c01139{bottom:613.760000pt;}
.y3f_c01139{bottom:614.400000pt;}
.y3d_c01139{bottom:615.680000pt;}
.y40_c01139{bottom:616.960000pt;}
.y72_c01139{bottom:647.680000pt;}
.y71_c01139{bottom:650.240000pt;}
.y3a_c01139{bottom:652.160000pt;}
.y3c_c01139{bottom:653.440000pt;}
.y39_c01139{bottom:654.080000pt;}
.y3b_c01139{bottom:655.360000pt;}
.y70_c01139{bottom:686.720000pt;}
.y6f_c01139{bottom:688.000000pt;}
.y36_c01139{bottom:690.560000pt;}
.y38_c01139{bottom:691.840000pt;}
.y35_c01139{bottom:692.480000pt;}
.y37_c01139{bottom:693.120000pt;}
.y6e_c01139{bottom:724.480000pt;}
.y6d_c01139{bottom:725.760000pt;}
.y31_c01139{bottom:729.600000pt;}
.y32_c01139{bottom:730.880000pt;}
.y30_c01139{bottom:731.520000pt;}
.y33_c01139{bottom:732.160000pt;}
.y34_c01139{bottom:732.800000pt;}
.y6a_c01139{bottom:762.880000pt;}
.y69_c01139{bottom:763.520000pt;}
.y6c_c01139{bottom:764.160000pt;}
.y6b_c01139{bottom:767.360000pt;}
.y2e_c01139{bottom:768.640000pt;}
.y2d_c01139{bottom:769.280000pt;}
.y2f_c01139{bottom:769.920000pt;}
.y68_c01139{bottom:800.000000pt;}
.y67_c01139{bottom:801.280000pt;}
.y2a_c01139{bottom:805.120000pt;}
.y2b_c01139{bottom:805.760000pt;}
.y2c_c01139{bottom:806.400000pt;}
.y29_c01139{bottom:808.320000pt;}
.y63_c01139{bottom:838.400000pt;}
.y66_c01139{bottom:839.040000pt;}
.y64_c01139{bottom:840.960000pt;}
.y65_c01139{bottom:841.600000pt;}
.y27_c01139{bottom:843.520000pt;}
.y28_c01139{bottom:844.160000pt;}
.y5f_c01139{bottom:876.160000pt;}
.y61_c01139{bottom:876.800000pt;}
.y60_c01139{bottom:878.720000pt;}
.y62_c01139{bottom:880.000000pt;}
.y24_c01139{bottom:881.920000pt;}
.y23_c01139{bottom:882.560000pt;}
.y25_c01139{bottom:884.480000pt;}
.y26_c01139{bottom:885.120000pt;}
.y5b_c01139{bottom:914.560000pt;}
.y5c_c01139{bottom:916.480000pt;}
.y5e_c01139{bottom:917.120000pt;}
.y5d_c01139{bottom:919.040000pt;}
.y21_c01139{bottom:920.320000pt;}
.y20_c01139{bottom:920.960000pt;}
.y22_c01139{bottom:921.600000pt;}
.y1f_c01139{bottom:968.960000pt;}
.h8_c01139{height:27.645000pt;}
.h6_c01139{height:34.556250pt;}
.h9_c01139{height:36.860000pt;}
.h12_c01139{height:39.163750pt;}
.h2_c01139{height:41.467500pt;}
.ha_c01139{height:43.771250pt;}
.h11_c01139{height:44.027500pt;}
.h7_c01139{height:46.075000pt;}
.h5_c01139{height:48.378750pt;}
.h13_c01139{height:48.891250pt;}
.h10_c01139{height:50.682500pt;}
.hf_c01139{height:52.986250pt;}
.h4_c01139{height:55.290000pt;}
.h3_c01139{height:57.593750pt;}
.hd_c01139{height:59.897500pt;}
.he_c01139{height:71.416250pt;}
.hc_c01139{height:78.327500pt;}
.hb_c01139{height:92.150000pt;}
.h1_c01139{height:1023.333333pt;}
.h0_c01139{height:1023.360000pt;}
.w1_c01139{width:700.000000pt;}
.w0_c01139{width:700.160000pt;}
.x0_c01139{left:0.000000pt;}
.x25_c01139{left:67.200000pt;}
.x30_c01139{left:68.480000pt;}
.x1_c01139{left:69.760000pt;}
.x6_c01139{left:71.040000pt;}
.x31_c01139{left:87.680000pt;}
.x26_c01139{left:131.840000pt;}
.x2c_c01139{left:133.120000pt;}
.x2_c01139{left:134.400000pt;}
.x9_c01139{left:135.680000pt;}
.x27_c01139{left:170.240000pt;}
.x2d_c01139{left:209.280000pt;}
.x3_c01139{left:211.200000pt;}
.xa_c01139{left:212.480000pt;}
.x7_c01139{left:230.400000pt;}
.xe_c01139{left:250.240000pt;}
.x8_c01139{left:260.480000pt;}
.x28_c01139{left:265.600000pt;}
.x2e_c01139{left:284.160000pt;}
.xb_c01139{left:297.600000pt;}
.x29_c01139{left:303.360000pt;}
.x4_c01139{left:326.400000pt;}
.x2f_c01139{left:333.440000pt;}
.x2b_c01139{left:342.400000pt;}
.x5_c01139{left:364.800000pt;}
.x2a_c01139{left:380.160000pt;}
.xf_c01139{left:384.000000pt;}
.x10_c01139{left:422.400000pt;}
.xc_c01139{left:451.200000pt;}
.x12_c01139{left:487.680000pt;}
.x1d_c01139{left:488.960000pt;}
.x19_c01139{left:497.920000pt;}
.x1a_c01139{left:499.200000pt;}
.x23_c01139{left:500.480000pt;}
.x18_c01139{left:516.480000pt;}
.x1b_c01139{left:517.760000pt;}
.x21_c01139{left:519.040000pt;}
.xd_c01139{left:520.320000pt;}
.x13_c01139{left:535.040000pt;}
.x20_c01139{left:536.960000pt;}
.x24_c01139{left:538.240000pt;}
.x15_c01139{left:565.760000pt;}
.x16_c01139{left:595.200000pt;}
.x1f_c01139{left:596.480000pt;}
.x11_c01139{left:609.280000pt;}
.x14_c01139{left:633.600000pt;}
.x1c_c01139{left:634.880000pt;}
.x22_c01139{left:636.160000pt;}
.x17_c01139{left:651.520000pt;}
.x1e_c01139{left:652.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_84a70f4fb469965fcf2c3ea8.woff2')format("woff");}.ff1_c01140{font-family:ff1_c01140;line-height:1.109863;font-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_c01140{transform:matrix(0.112600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112600,0.000000,0.000000,0.250000,0,0);}
.md_c01140{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.me_c01140{transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);}
.m30_c01140{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m25_c01140{transform:matrix(0.241550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241550,0.000000,0.000000,0.250000,0,0);}
.m1c_c01140{transform:matrix(0.248375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248375,0.000000,0.000000,0.250000,0,0);}
.m1a_c01140{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m2_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);}
.m20_c01140{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_c01140{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);}
.m3a_c01140{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m5_c01140{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);}
.m31_c01140{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m11_c01140{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);}
.m28_c01140{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m7_c01140{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m18_c01140{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m9_c01140{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m19_c01140{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);}
.m23_c01140{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mf_c01140{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m26_c01140{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m6_c01140{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01140{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01140{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01140{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m39_c01140{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m29_c01140{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m8_c01140{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m4_c01140{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1_c01140{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01140{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01140{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);}
.m3f_c01140{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m22_c01140{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m0_c01140{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);}
.m2f_c01140{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.ma_c01140{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m24_c01140{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01140{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m15_c01140{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);}
.m41_c01140{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);}
.m21_c01140{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m17_c01140{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);}
.m27_c01140{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m34_c01140{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m3_c01140{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m35_c01140{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);}
.m3b_c01140{transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);}
.m13_c01140{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01140{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01140{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m38_c01140{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01140{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m33_c01140{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);}
.mc_c01140{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);}
.m32_c01140{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m36_c01140{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m40_c01140{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);}
.m16_c01140{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m37_c01140{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01140{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m14_c01140{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01140{transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);}
.m10_c01140{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m12_c01140{transform:matrix(0.775000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.775000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.775000,0.000000,0.000000,0.250000,0,0);}
.v0_c01140{vertical-align:0.000000px;}
.v1_c01140{vertical-align:5.760000px;}
.ls1_c01140{letter-spacing:0.000000px;}
.ls0_c01140{letter-spacing:42.841680px;}
.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;}
.fc0_c01140{color:transparent;}
.fsd_c01140{font-size:31.680000px;}
.fsa_c01140{font-size:34.560000px;}
.fs9_c01140{font-size:46.080000px;}
.fs2_c01140{font-size:48.960000px;}
.fs5_c01140{font-size:51.840000px;}
.fs6_c01140{font-size:54.720000px;}
.fs4_c01140{font-size:57.600000px;}
.fs7_c01140{font-size:60.480000px;}
.fsb_c01140{font-size:63.360000px;}
.fs1_c01140{font-size:66.240000px;}
.fs3_c01140{font-size:69.120000px;}
.fs8_c01140{font-size:72.000000px;}
.fs0_c01140{font-size:74.880000px;}
.fs10_c01140{font-size:77.760000px;}
.fsf_c01140{font-size:80.640000px;}
.fsc_c01140{font-size:86.400000px;}
.fse_c01140{font-size:106.560000px;}
.y0_c01140{bottom:0.000000px;}
.y8c_c01140{bottom:53.280000px;}
.y8b_c01140{bottom:54.720000px;}
.y8a_c01140{bottom:55.440000px;}
.y89_c01140{bottom:60.480000px;}
.y87_c01140{bottom:61.200000px;}
.y88_c01140{bottom:61.920000px;}
.y86_c01140{bottom:63.360000px;}
.y83_c01140{bottom:98.640000px;}
.y85_c01140{bottom:99.360000px;}
.y84_c01140{bottom:100.080000px;}
.y82_c01140{bottom:102.240000px;}
.y80_c01140{bottom:103.680000px;}
.y81_c01140{bottom:104.400000px;}
.y7f_c01140{bottom:105.840000px;}
.y7d_c01140{bottom:141.840000px;}
.y7e_c01140{bottom:143.280000px;}
.y7c_c01140{bottom:146.160000px;}
.y7b_c01140{bottom:147.600000px;}
.y7a_c01140{bottom:183.600000px;}
.y79_c01140{bottom:185.040000px;}
.y76_c01140{bottom:188.640000px;}
.y78_c01140{bottom:189.360000px;}
.y77_c01140{bottom:190.080000px;}
.y75_c01140{bottom:190.800000px;}
.y74_c01140{bottom:226.080000px;}
.y73_c01140{bottom:226.800000px;}
.y72_c01140{bottom:227.520000px;}
.y70_c01140{bottom:230.400000px;}
.y6f_c01140{bottom:231.120000px;}
.y71_c01140{bottom:231.840000px;}
.y6e_c01140{bottom:232.560000px;}
.y6c_c01140{bottom:270.000000px;}
.y6d_c01140{bottom:270.720000px;}
.y6b_c01140{bottom:271.440000px;}
.y6a_c01140{bottom:274.320000px;}
.y69_c01140{bottom:275.040000px;}
.y68_c01140{bottom:313.200000px;}
.y66_c01140{bottom:313.920000px;}
.y65_c01140{bottom:314.640000px;}
.y67_c01140{bottom:316.080000px;}
.y64_c01140{bottom:317.520000px;}
.y63_c01140{bottom:356.400000px;}
.y60_c01140{bottom:357.120000px;}
.y62_c01140{bottom:358.560000px;}
.y61_c01140{bottom:360.000000px;}
.y5f_c01140{bottom:361.440000px;}
.y5e_c01140{bottom:389.520000px;}
.y5a_c01140{bottom:398.880000px;}
.y5c_c01140{bottom:399.600000px;}
.y5b_c01140{bottom:400.320000px;}
.y58_c01140{bottom:401.040000px;}
.y5d_c01140{bottom:401.760000px;}
.y57_c01140{bottom:403.200000px;}
.y59_c01140{bottom:403.920000px;}
.y55_c01140{bottom:444.240000px;}
.y54_c01140{bottom:444.960000px;}
.y56_c01140{bottom:446.400000px;}
.y51_c01140{bottom:473.760000px;}
.y53_c01140{bottom:475.200000px;}
.y52_c01140{bottom:475.920000px;}
.y50_c01140{bottom:476.640000px;}
.y4e_c01140{bottom:477.360000px;}
.y4d_c01140{bottom:478.080000px;}
.y4f_c01140{bottom:478.800000px;}
.y4a_c01140{bottom:518.400000px;}
.y4c_c01140{bottom:519.120000px;}
.y49_c01140{bottom:520.560000px;}
.y4b_c01140{bottom:521.280000px;}
.y45_c01140{bottom:560.880000px;}
.y48_c01140{bottom:562.320000px;}
.y44_c01140{bottom:563.040000px;}
.y46_c01140{bottom:563.760000px;}
.y47_c01140{bottom:564.480000px;}
.y40_c01140{bottom:603.360000px;}
.y3e_c01140{bottom:604.080000px;}
.y43_c01140{bottom:604.800000px;}
.y3d_c01140{bottom:605.520000px;}
.y41_c01140{bottom:606.240000px;}
.y3f_c01140{bottom:606.960000px;}
.y42_c01140{bottom:607.680000px;}
.y38_c01140{bottom:645.120000px;}
.y39_c01140{bottom:645.840000px;}
.y3c_c01140{bottom:646.560000px;}
.y37_c01140{bottom:648.000000px;}
.y3a_c01140{bottom:649.440000px;}
.y3b_c01140{bottom:650.160000px;}
.y35_c01140{bottom:688.320000px;}
.y32_c01140{bottom:689.040000px;}
.y31_c01140{bottom:689.760000px;}
.y36_c01140{bottom:690.480000px;}
.y33_c01140{bottom:691.920000px;}
.y34_c01140{bottom:692.640000px;}
.y2c_c01140{bottom:730.080000px;}
.y2b_c01140{bottom:732.240000px;}
.y2e_c01140{bottom:732.960000px;}
.y30_c01140{bottom:733.680000px;}
.y2f_c01140{bottom:735.120000px;}
.y2d_c01140{bottom:735.840000px;}
.y27_c01140{bottom:773.280000px;}
.y26_c01140{bottom:774.720000px;}
.y2a_c01140{bottom:776.880000px;}
.y28_c01140{bottom:778.320000px;}
.y29_c01140{bottom:779.040000px;}
.y22_c01140{bottom:815.760000px;}
.y21_c01140{bottom:817.200000px;}
.y23_c01140{bottom:819.360000px;}
.y24_c01140{bottom:820.080000px;}
.y25_c01140{bottom:820.800000px;}
.y1d_c01140{bottom:852.480000px;}
.y1a_c01140{bottom:856.800000px;}
.y19_c01140{bottom:860.400000px;}
.y1b_c01140{bottom:861.120000px;}
.y1e_c01140{bottom:862.560000px;}
.y20_c01140{bottom:863.280000px;}
.y1f_c01140{bottom:864.000000px;}
.y1c_c01140{bottom:864.720000px;}
.y18_c01140{bottom:902.160000px;}
.y17_c01140{bottom:905.760000px;}
.y10_c01140{bottom:934.560000px;}
.y12_c01140{bottom:935.280000px;}
.y14_c01140{bottom:936.720000px;}
.y13_c01140{bottom:938.160000px;}
.y11_c01140{bottom:938.880000px;}
.y16_c01140{bottom:939.600000px;}
.y15_c01140{bottom:940.320000px;}
.y9_c01140{bottom:976.320000px;}
.y8_c01140{bottom:977.040000px;}
.yb_c01140{bottom:978.480000px;}
.ya_c01140{bottom:980.640000px;}
.yd_c01140{bottom:981.360000px;}
.yc_c01140{bottom:982.080000px;}
.ye_c01140{bottom:983.520000px;}
.yf_c01140{bottom:984.240000px;}
.y3_c01140{bottom:1018.800000px;}
.y2_c01140{bottom:1020.240000px;}
.y5_c01140{bottom:1022.400000px;}
.y4_c01140{bottom:1024.560000px;}
.y6_c01140{bottom:1025.280000px;}
.y7_c01140{bottom:1027.440000px;}
.y1_c01140{bottom:1092.960000px;}
.h10_c01140{height:28.508906px;}
.hc_c01140{height:31.100625px;}
.hb_c01140{height:41.467500px;}
.h4_c01140{height:44.059219px;}
.h7_c01140{height:46.650937px;}
.h8_c01140{height:49.242656px;}
.h6_c01140{height:51.834375px;}
.h9_c01140{height:54.426094px;}
.he_c01140{height:55.002656px;}
.hd_c01140{height:57.017812px;}
.h3_c01140{height:59.609531px;}
.h5_c01140{height:62.201250px;}
.ha_c01140{height:64.792969px;}
.h2_c01140{height:67.384687px;}
.h13_c01140{height:69.976406px;}
.h12_c01140{height:72.568125px;}
.hf_c01140{height:77.751563px;}
.h11_c01140{height:95.893594px;}
.h1_c01140{height:1151.250000px;}
.h0_c01140{height:1151.280000px;}
.w1_c01140{width:786.000000px;}
.w0_c01140{width:786.240000px;}
.x0_c01140{left:0.000000px;}
.x2_c01140{left:77.760000px;}
.x1a_c01140{left:149.040000px;}
.x3_c01140{left:150.480000px;}
.x15_c01140{left:152.640000px;}
.x16_c01140{left:193.680000px;}
.xe_c01140{left:216.000000px;}
.x2a_c01140{left:235.440000px;}
.xb_c01140{left:236.880000px;}
.x21_c01140{left:247.680000px;}
.x1d_c01140{left:257.760000px;}
.xf_c01140{left:268.560000px;}
.x4_c01140{left:279.360000px;}
.x10_c01140{left:288.720000px;}
.xc_c01140{left:290.880000px;}
.x1c_c01140{left:300.960000px;}
.x5_c01140{left:321.840000px;}
.x20_c01140{left:332.640000px;}
.x11_c01140{left:334.080000px;}
.x25_c01140{left:344.160000px;}
.x26_c01140{left:354.240000px;}
.x12_c01140{left:377.280000px;}
.x29_c01140{left:408.240000px;}
.x22_c01140{left:419.040000px;}
.x1e_c01140{left:440.640000px;}
.x13_c01140{left:462.240000px;}
.x27_c01140{left:473.040000px;}
.x1f_c01140{left:483.840000px;}
.x17_c01140{left:495.360000px;}
.x18_c01140{left:515.520000px;}
.x28_c01140{left:522.720000px;}
.x1b_c01140{left:550.800000px;}
.x6_c01140{left:561.600000px;}
.x7_c01140{left:582.480000px;}
.x23_c01140{left:604.080000px;}
.x14_c01140{left:637.200000px;}
.x8_c01140{left:638.640000px;}
.x1_c01140{left:658.800000px;}
.x2b_c01140{left:669.600000px;}
.x9_c01140{left:671.040000px;}
.x19_c01140{left:704.160000px;}
.x24_c01140{left:713.520000px;}
.xa_c01140{left:714.960000px;}
.xd_c01140{left:735.120000px;}
@media print{
.v0_c01140{vertical-align:0.000000pt;}
.v1_c01140{vertical-align:5.120000pt;}
.ls1_c01140{letter-spacing:0.000000pt;}
.ls0_c01140{letter-spacing:38.081493pt;}
.ws0_c01140{word-spacing:0.000000pt;}
.fsd_c01140{font-size:28.160000pt;}
.fsa_c01140{font-size:30.720000pt;}
.fs9_c01140{font-size:40.960000pt;}
.fs2_c01140{font-size:43.520000pt;}
.fs5_c01140{font-size:46.080000pt;}
.fs6_c01140{font-size:48.640000pt;}
.fs4_c01140{font-size:51.200000pt;}
.fs7_c01140{font-size:53.760000pt;}
.fsb_c01140{font-size:56.320000pt;}
.fs1_c01140{font-size:58.880000pt;}
.fs3_c01140{font-size:61.440000pt;}
.fs8_c01140{font-size:64.000000pt;}
.fs0_c01140{font-size:66.560000pt;}
.fs10_c01140{font-size:69.120000pt;}
.fsf_c01140{font-size:71.680000pt;}
.fsc_c01140{font-size:76.800000pt;}
.fse_c01140{font-size:94.720000pt;}
.y0_c01140{bottom:0.000000pt;}
.y8c_c01140{bottom:47.360000pt;}
.y8b_c01140{bottom:48.640000pt;}
.y8a_c01140{bottom:49.280000pt;}
.y89_c01140{bottom:53.760000pt;}
.y87_c01140{bottom:54.400000pt;}
.y88_c01140{bottom:55.040000pt;}
.y86_c01140{bottom:56.320000pt;}
.y83_c01140{bottom:87.680000pt;}
.y85_c01140{bottom:88.320000pt;}
.y84_c01140{bottom:88.960000pt;}
.y82_c01140{bottom:90.880000pt;}
.y80_c01140{bottom:92.160000pt;}
.y81_c01140{bottom:92.800000pt;}
.y7f_c01140{bottom:94.080000pt;}
.y7d_c01140{bottom:126.080000pt;}
.y7e_c01140{bottom:127.360000pt;}
.y7c_c01140{bottom:129.920000pt;}
.y7b_c01140{bottom:131.200000pt;}
.y7a_c01140{bottom:163.200000pt;}
.y79_c01140{bottom:164.480000pt;}
.y76_c01140{bottom:167.680000pt;}
.y78_c01140{bottom:168.320000pt;}
.y77_c01140{bottom:168.960000pt;}
.y75_c01140{bottom:169.600000pt;}
.y74_c01140{bottom:200.960000pt;}
.y73_c01140{bottom:201.600000pt;}
.y72_c01140{bottom:202.240000pt;}
.y70_c01140{bottom:204.800000pt;}
.y6f_c01140{bottom:205.440000pt;}
.y71_c01140{bottom:206.080000pt;}
.y6e_c01140{bottom:206.720000pt;}
.y6c_c01140{bottom:240.000000pt;}
.y6d_c01140{bottom:240.640000pt;}
.y6b_c01140{bottom:241.280000pt;}
.y6a_c01140{bottom:243.840000pt;}
.y69_c01140{bottom:244.480000pt;}
.y68_c01140{bottom:278.400000pt;}
.y66_c01140{bottom:279.040000pt;}
.y65_c01140{bottom:279.680000pt;}
.y67_c01140{bottom:280.960000pt;}
.y64_c01140{bottom:282.240000pt;}
.y63_c01140{bottom:316.800000pt;}
.y60_c01140{bottom:317.440000pt;}
.y62_c01140{bottom:318.720000pt;}
.y61_c01140{bottom:320.000000pt;}
.y5f_c01140{bottom:321.280000pt;}
.y5e_c01140{bottom:346.240000pt;}
.y5a_c01140{bottom:354.560000pt;}
.y5c_c01140{bottom:355.200000pt;}
.y5b_c01140{bottom:355.840000pt;}
.y58_c01140{bottom:356.480000pt;}
.y5d_c01140{bottom:357.120000pt;}
.y57_c01140{bottom:358.400000pt;}
.y59_c01140{bottom:359.040000pt;}
.y55_c01140{bottom:394.880000pt;}
.y54_c01140{bottom:395.520000pt;}
.y56_c01140{bottom:396.800000pt;}
.y51_c01140{bottom:421.120000pt;}
.y53_c01140{bottom:422.400000pt;}
.y52_c01140{bottom:423.040000pt;}
.y50_c01140{bottom:423.680000pt;}
.y4e_c01140{bottom:424.320000pt;}
.y4d_c01140{bottom:424.960000pt;}
.y4f_c01140{bottom:425.600000pt;}
.y4a_c01140{bottom:460.800000pt;}
.y4c_c01140{bottom:461.440000pt;}
.y49_c01140{bottom:462.720000pt;}
.y4b_c01140{bottom:463.360000pt;}
.y45_c01140{bottom:498.560000pt;}
.y48_c01140{bottom:499.840000pt;}
.y44_c01140{bottom:500.480000pt;}
.y46_c01140{bottom:501.120000pt;}
.y47_c01140{bottom:501.760000pt;}
.y40_c01140{bottom:536.320000pt;}
.y3e_c01140{bottom:536.960000pt;}
.y43_c01140{bottom:537.600000pt;}
.y3d_c01140{bottom:538.240000pt;}
.y41_c01140{bottom:538.880000pt;}
.y3f_c01140{bottom:539.520000pt;}
.y42_c01140{bottom:540.160000pt;}
.y38_c01140{bottom:573.440000pt;}
.y39_c01140{bottom:574.080000pt;}
.y3c_c01140{bottom:574.720000pt;}
.y37_c01140{bottom:576.000000pt;}
.y3a_c01140{bottom:577.280000pt;}
.y3b_c01140{bottom:577.920000pt;}
.y35_c01140{bottom:611.840000pt;}
.y32_c01140{bottom:612.480000pt;}
.y31_c01140{bottom:613.120000pt;}
.y36_c01140{bottom:613.760000pt;}
.y33_c01140{bottom:615.040000pt;}
.y34_c01140{bottom:615.680000pt;}
.y2c_c01140{bottom:648.960000pt;}
.y2b_c01140{bottom:650.880000pt;}
.y2e_c01140{bottom:651.520000pt;}
.y30_c01140{bottom:652.160000pt;}
.y2f_c01140{bottom:653.440000pt;}
.y2d_c01140{bottom:654.080000pt;}
.y27_c01140{bottom:687.360000pt;}
.y26_c01140{bottom:688.640000pt;}
.y2a_c01140{bottom:690.560000pt;}
.y28_c01140{bottom:691.840000pt;}
.y29_c01140{bottom:692.480000pt;}
.y22_c01140{bottom:725.120000pt;}
.y21_c01140{bottom:726.400000pt;}
.y23_c01140{bottom:728.320000pt;}
.y24_c01140{bottom:728.960000pt;}
.y25_c01140{bottom:729.600000pt;}
.y1d_c01140{bottom:757.760000pt;}
.y1a_c01140{bottom:761.600000pt;}
.y19_c01140{bottom:764.800000pt;}
.y1b_c01140{bottom:765.440000pt;}
.y1e_c01140{bottom:766.720000pt;}
.y20_c01140{bottom:767.360000pt;}
.y1f_c01140{bottom:768.000000pt;}
.y1c_c01140{bottom:768.640000pt;}
.y18_c01140{bottom:801.920000pt;}
.y17_c01140{bottom:805.120000pt;}
.y10_c01140{bottom:830.720000pt;}
.y12_c01140{bottom:831.360000pt;}
.y14_c01140{bottom:832.640000pt;}
.y13_c01140{bottom:833.920000pt;}
.y11_c01140{bottom:834.560000pt;}
.y16_c01140{bottom:835.200000pt;}
.y15_c01140{bottom:835.840000pt;}
.y9_c01140{bottom:867.840000pt;}
.y8_c01140{bottom:868.480000pt;}
.yb_c01140{bottom:869.760000pt;}
.ya_c01140{bottom:871.680000pt;}
.yd_c01140{bottom:872.320000pt;}
.yc_c01140{bottom:872.960000pt;}
.ye_c01140{bottom:874.240000pt;}
.yf_c01140{bottom:874.880000pt;}
.y3_c01140{bottom:905.600000pt;}
.y2_c01140{bottom:906.880000pt;}
.y5_c01140{bottom:908.800000pt;}
.y4_c01140{bottom:910.720000pt;}
.y6_c01140{bottom:911.360000pt;}
.y7_c01140{bottom:913.280000pt;}
.y1_c01140{bottom:971.520000pt;}
.h10_c01140{height:25.341250pt;}
.hc_c01140{height:27.645000pt;}
.hb_c01140{height:36.860000pt;}
.h4_c01140{height:39.163750pt;}
.h7_c01140{height:41.467500pt;}
.h8_c01140{height:43.771250pt;}
.h6_c01140{height:46.075000pt;}
.h9_c01140{height:48.378750pt;}
.he_c01140{height:48.891250pt;}
.hd_c01140{height:50.682500pt;}
.h3_c01140{height:52.986250pt;}
.h5_c01140{height:55.290000pt;}
.ha_c01140{height:57.593750pt;}
.h2_c01140{height:59.897500pt;}
.h13_c01140{height:62.201250pt;}
.h12_c01140{height:64.505000pt;}
.hf_c01140{height:69.112500pt;}
.h11_c01140{height:85.238750pt;}
.h1_c01140{height:1023.333333pt;}
.h0_c01140{height:1023.360000pt;}
.w1_c01140{width:698.666667pt;}
.w0_c01140{width:698.880000pt;}
.x0_c01140{left:0.000000pt;}
.x2_c01140{left:69.120000pt;}
.x1a_c01140{left:132.480000pt;}
.x3_c01140{left:133.760000pt;}
.x15_c01140{left:135.680000pt;}
.x16_c01140{left:172.160000pt;}
.xe_c01140{left:192.000000pt;}
.x2a_c01140{left:209.280000pt;}
.xb_c01140{left:210.560000pt;}
.x21_c01140{left:220.160000pt;}
.x1d_c01140{left:229.120000pt;}
.xf_c01140{left:238.720000pt;}
.x4_c01140{left:248.320000pt;}
.x10_c01140{left:256.640000pt;}
.xc_c01140{left:258.560000pt;}
.x1c_c01140{left:267.520000pt;}
.x5_c01140{left:286.080000pt;}
.x20_c01140{left:295.680000pt;}
.x11_c01140{left:296.960000pt;}
.x25_c01140{left:305.920000pt;}
.x26_c01140{left:314.880000pt;}
.x12_c01140{left:335.360000pt;}
.x29_c01140{left:362.880000pt;}
.x22_c01140{left:372.480000pt;}
.x1e_c01140{left:391.680000pt;}
.x13_c01140{left:410.880000pt;}
.x27_c01140{left:420.480000pt;}
.x1f_c01140{left:430.080000pt;}
.x17_c01140{left:440.320000pt;}
.x18_c01140{left:458.240000pt;}
.x28_c01140{left:464.640000pt;}
.x1b_c01140{left:489.600000pt;}
.x6_c01140{left:499.200000pt;}
.x7_c01140{left:517.760000pt;}
.x23_c01140{left:536.960000pt;}
.x14_c01140{left:566.400000pt;}
.x8_c01140{left:567.680000pt;}
.x1_c01140{left:585.600000pt;}
.x2b_c01140{left:595.200000pt;}
.x9_c01140{left:596.480000pt;}
.x19_c01140{left:625.920000pt;}
.x24_c01140{left:634.240000pt;}
.xa_c01140{left:635.520000pt;}
.xd_c01140{left:653.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_539f2c1f28498cca4c7928f6.woff2')format("woff");}.ff1_c01141{font-family:ff1_c01141;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4a_c01141{transform:matrix(0.218725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218725,0.000000,0.000000,0.250000,0,0);}
.m43_c01141{transform:matrix(0.218850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218850,0.000000,0.000000,0.250000,0,0);}
.m47_c01141{transform:matrix(0.241650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241650,0.000000,0.000000,0.250000,0,0);}
.m33_c01141{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m32_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);}
.m10_c01141{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m15_c01141{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);}
.m26_c01141{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);}
.m34_c01141{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);}
.m3b_c01141{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01141{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01141{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m7_c01141{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mf_c01141{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.me_c01141{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m9_c01141{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m27_c01141{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m14_c01141{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m16_c01141{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m6_c01141{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m24_c01141{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01141{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01141{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m8_c01141{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m21_c01141{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.ma_c01141{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01141{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m20_c01141{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);}
.m30_c01141{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_c01141{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m0_c01141{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);}
.m35_c01141{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m1_c01141{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m44_c01141{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01141{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);}
.m2f_c01141{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01141{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);}
.m19_c01141{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);}
.m49_c01141{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01141{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);}
.m28_c01141{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m41_c01141{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_c01141{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01141{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m2_c01141{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m46_c01141{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);}
.m37_c01141{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);}
.m42_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);}
.md_c01141{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01141{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m25_c01141{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);}
.m39_c01141{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);}
.m48_c01141{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01141{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m5_c01141{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);}
.m11_c01141{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m29_c01141{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m12_c01141{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.mb_c01141{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);}
.m3c_c01141{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.mc_c01141{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m38_c01141{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);}
.m2a_c01141{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);}
.m2b_c01141{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m22_c01141{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m4_c01141{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01141{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m3_c01141{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m45_c01141{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);}
.m31_c01141{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);}
.m23_c01141{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m36_c01141{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01141{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m40_c01141{transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);}
.m18_c01141{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.v0_c01141{vertical-align:0.000000px;}
.ls0_c01141{letter-spacing:0.000000px;}
.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;}
.fc0_c01141{color:transparent;}
.fsa_c01141{font-size:34.560000px;}
.fs4_c01141{font-size:37.440000px;}
.fsc_c01141{font-size:43.200000px;}
.fs3_c01141{font-size:46.080000px;}
.fs2_c01141{font-size:48.960000px;}
.fs6_c01141{font-size:51.840000px;}
.fs7_c01141{font-size:54.720000px;}
.fs5_c01141{font-size:57.600000px;}
.fs1_c01141{font-size:60.480000px;}
.fs9_c01141{font-size:63.360000px;}
.fsb_c01141{font-size:66.240000px;}
.fs8_c01141{font-size:69.120000px;}
.fsd_c01141{font-size:72.000000px;}
.fs0_c01141{font-size:77.760000px;}
.fse_c01141{font-size:92.160000px;}
.fsf_c01141{font-size:95.040000px;}
.y0_c01141{bottom:0.000000px;}
.y94_c01141{bottom:65.520000px;}
.y95_c01141{bottom:73.440000px;}
.y93_c01141{bottom:74.160000px;}
.y92_c01141{bottom:75.600000px;}
.y91_c01141{bottom:76.320000px;}
.y90_c01141{bottom:79.200000px;}
.y8c_c01141{bottom:108.720000px;}
.y8f_c01141{bottom:109.440000px;}
.y8e_c01141{bottom:116.640000px;}
.y8d_c01141{bottom:117.360000px;}
.y8b_c01141{bottom:118.080000px;}
.y8a_c01141{bottom:118.800000px;}
.y89_c01141{bottom:119.520000px;}
.y88_c01141{bottom:120.960000px;}
.y87_c01141{bottom:151.920000px;}
.y85_c01141{bottom:152.640000px;}
.y84_c01141{bottom:160.560000px;}
.y83_c01141{bottom:161.280000px;}
.y86_c01141{bottom:162.000000px;}
.y82_c01141{bottom:162.720000px;}
.y81_c01141{bottom:163.440000px;}
.y80_c01141{bottom:203.040000px;}
.y7f_c01141{bottom:203.760000px;}
.y7d_c01141{bottom:204.480000px;}
.y7c_c01141{bottom:205.200000px;}
.y7e_c01141{bottom:205.920000px;}
.y7b_c01141{bottom:206.640000px;}
.y7a_c01141{bottom:245.520000px;}
.y78_c01141{bottom:246.960000px;}
.y77_c01141{bottom:247.680000px;}
.y76_c01141{bottom:248.400000px;}
.y79_c01141{bottom:249.120000px;}
.y73_c01141{bottom:289.440000px;}
.y72_c01141{bottom:290.160000px;}
.y71_c01141{bottom:290.880000px;}
.y75_c01141{bottom:291.600000px;}
.y74_c01141{bottom:292.320000px;}
.y6e_c01141{bottom:331.920000px;}
.y6f_c01141{bottom:332.640000px;}
.y70_c01141{bottom:334.080000px;}
.y6d_c01141{bottom:334.800000px;}
.y6b_c01141{bottom:363.600000px;}
.y69_c01141{bottom:364.320000px;}
.y68_c01141{bottom:365.040000px;}
.y6a_c01141{bottom:366.480000px;}
.y6c_c01141{bottom:367.200000px;}
.y67_c01141{bottom:408.960000px;}
.y66_c01141{bottom:409.680000px;}
.y61_c01141{bottom:438.480000px;}
.y5f_c01141{bottom:439.200000px;}
.y63_c01141{bottom:439.920000px;}
.y62_c01141{bottom:440.640000px;}
.y60_c01141{bottom:441.360000px;}
.y64_c01141{bottom:442.080000px;}
.y65_c01141{bottom:442.800000px;}
.y5c_c01141{bottom:481.680000px;}
.y59_c01141{bottom:482.400000px;}
.y5d_c01141{bottom:483.120000px;}
.y5a_c01141{bottom:483.840000px;}
.y5b_c01141{bottom:484.560000px;}
.y5e_c01141{bottom:485.280000px;}
.y54_c01141{bottom:524.160000px;}
.y57_c01141{bottom:526.320000px;}
.y55_c01141{bottom:527.040000px;}
.y56_c01141{bottom:527.760000px;}
.y58_c01141{bottom:529.200000px;}
.y4f_c01141{bottom:567.360000px;}
.y50_c01141{bottom:569.520000px;}
.y51_c01141{bottom:570.240000px;}
.y52_c01141{bottom:570.960000px;}
.y53_c01141{bottom:572.400000px;}
.y4e_c01141{bottom:612.720000px;}
.y48_c01141{bottom:641.520000px;}
.y4a_c01141{bottom:642.960000px;}
.y49_c01141{bottom:644.400000px;}
.y4b_c01141{bottom:645.840000px;}
.y4c_c01141{bottom:647.280000px;}
.y4d_c01141{bottom:648.000000px;}
.y47_c01141{bottom:676.800000px;}
.y3f_c01141{bottom:684.000000px;}
.y40_c01141{bottom:684.720000px;}
.y43_c01141{bottom:686.160000px;}
.y41_c01141{bottom:686.880000px;}
.y42_c01141{bottom:687.600000px;}
.y44_c01141{bottom:688.320000px;}
.y45_c01141{bottom:689.040000px;}
.y46_c01141{bottom:689.760000px;}
.y38_c01141{bottom:726.480000px;}
.y39_c01141{bottom:727.200000px;}
.y3a_c01141{bottom:730.080000px;}
.y3b_c01141{bottom:730.800000px;}
.y3c_c01141{bottom:731.520000px;}
.y3d_c01141{bottom:732.240000px;}
.y3e_c01141{bottom:733.680000px;}
.y32_c01141{bottom:769.680000px;}
.y33_c01141{bottom:770.400000px;}
.y34_c01141{bottom:774.000000px;}
.y35_c01141{bottom:774.720000px;}
.y36_c01141{bottom:776.160000px;}
.y37_c01141{bottom:776.880000px;}
.y28_c01141{bottom:812.160000px;}
.y29_c01141{bottom:812.880000px;}
.y2a_c01141{bottom:813.600000px;}
.y2b_c01141{bottom:816.480000px;}
.y2c_c01141{bottom:817.200000px;}
.y2d_c01141{bottom:817.920000px;}
.y2f_c01141{bottom:818.640000px;}
.y2e_c01141{bottom:819.360000px;}
.y31_c01141{bottom:820.080000px;}
.y30_c01141{bottom:820.800000px;}
.y21_c01141{bottom:854.640000px;}
.y22_c01141{bottom:855.360000px;}
.y23_c01141{bottom:856.080000px;}
.y24_c01141{bottom:858.960000px;}
.y25_c01141{bottom:860.400000px;}
.y27_c01141{bottom:861.120000px;}
.y26_c01141{bottom:861.840000px;}
.y18_c01141{bottom:896.400000px;}
.y19_c01141{bottom:897.840000px;}
.y1a_c01141{bottom:900.720000px;}
.y1b_c01141{bottom:901.440000px;}
.y1c_c01141{bottom:903.600000px;}
.y1d_c01141{bottom:904.320000px;}
.y1f_c01141{bottom:905.040000px;}
.y1e_c01141{bottom:905.760000px;}
.y20_c01141{bottom:907.200000px;}
.y11_c01141{bottom:939.600000px;}
.y12_c01141{bottom:940.320000px;}
.y13_c01141{bottom:943.200000px;}
.y14_c01141{bottom:944.640000px;}
.y15_c01141{bottom:945.360000px;}
.y16_c01141{bottom:946.080000px;}
.y17_c01141{bottom:947.520000px;}
.ya_c01141{bottom:981.360000px;}
.yb_c01141{bottom:982.800000px;}
.yc_c01141{bottom:986.400000px;}
.yd_c01141{bottom:987.120000px;}
.ye_c01141{bottom:988.560000px;}
.yf_c01141{bottom:990.720000px;}
.y10_c01141{bottom:992.160000px;}
.y2_c01141{bottom:1023.840000px;}
.y3_c01141{bottom:1027.440000px;}
.y4_c01141{bottom:1029.600000px;}
.y5_c01141{bottom:1030.320000px;}
.y6_c01141{bottom:1031.040000px;}
.y7_c01141{bottom:1031.760000px;}
.y8_c01141{bottom:1033.920000px;}
.y9_c01141{bottom:1035.360000px;}
.y1_c01141{bottom:1106.640000px;}
.hb_c01141{height:31.100625px;}
.h5_c01141{height:33.692344px;}
.hd_c01141{height:38.875781px;}
.h4_c01141{height:41.467500px;}
.h3_c01141{height:44.059219px;}
.h7_c01141{height:46.650937px;}
.h8_c01141{height:49.242656px;}
.h6_c01141{height:51.834375px;}
.h2_c01141{height:54.426094px;}
.ha_c01141{height:57.017812px;}
.hc_c01141{height:59.609531px;}
.h9_c01141{height:62.201250px;}
.he_c01141{height:64.792969px;}
.h1_c01141{height:69.976406px;}
.hf_c01141{height:82.935000px;}
.h10_c01141{height:85.526719px;}
.h0_c01141{height:1152.000000px;}
.w1_c01141{width:787.500000px;}
.w0_c01141{width:787.680000px;}
.x0_c01141{left:0.000000px;}
.x2_c01141{left:76.320000px;}
.xf_c01141{left:77.760000px;}
.x20_c01141{left:79.200000px;}
.x30_c01141{left:80.640000px;}
.x3b_c01141{left:82.080000px;}
.x3_c01141{left:150.480000px;}
.x19_c01141{left:151.920000px;}
.x21_c01141{left:153.360000px;}
.x31_c01141{left:154.800000px;}
.x1f_c01141{left:205.920000px;}
.x4_c01141{left:234.720000px;}
.x10_c01141{left:236.160000px;}
.x13_c01141{left:237.600000px;}
.x27_c01141{left:239.040000px;}
.x38_c01141{left:240.480000px;}
.x5_c01141{left:288.720000px;}
.x17_c01141{left:290.160000px;}
.x22_c01141{left:291.600000px;}
.x2d_c01141{left:293.040000px;}
.x14_c01141{left:300.240000px;}
.x32_c01141{left:303.840000px;}
.x3e_c01141{left:305.280000px;}
.x6_c01141{left:343.440000px;}
.x1b_c01141{left:344.880000px;}
.x2e_c01141{left:346.320000px;}
.x2a_c01141{left:347.760000px;}
.x15_c01141{left:354.960000px;}
.x33_c01141{left:357.840000px;}
.x23_c01141{left:399.600000px;}
.x34_c01141{left:401.040000px;}
.x2b_c01141{left:442.800000px;}
.x39_c01141{left:444.960000px;}
.x24_c01141{left:453.600000px;}
.x3a_c01141{left:466.560000px;}
.x1c_c01141{left:474.480000px;}
.x25_c01141{left:496.800000px;}
.x2f_c01141{left:509.040000px;}
.x3d_c01141{left:510.480000px;}
.x7_c01141{left:548.640000px;}
.xd_c01141{left:550.080000px;}
.x1d_c01141{left:551.520000px;}
.x28_c01141{left:552.960000px;}
.xe_c01141{left:603.360000px;}
.x8_c01141{left:635.040000px;}
.xb_c01141{left:637.200000px;}
.x1a_c01141{left:638.640000px;}
.x29_c01141{left:640.080000px;}
.x37_c01141{left:641.520000px;}
.x9_c01141{left:669.600000px;}
.x11_c01141{left:671.040000px;}
.x1_c01141{left:672.480000px;}
.x2c_c01141{left:673.920000px;}
.x3f_c01141{left:676.080000px;}
.x16_c01141{left:704.160000px;}
.x36_c01141{left:707.040000px;}
.x3c_c01141{left:708.480000px;}
.xa_c01141{left:712.080000px;}
.xc_c01141{left:713.520000px;}
.x18_c01141{left:714.960000px;}
.x26_c01141{left:716.400000px;}
.x35_c01141{left:717.840000px;}
.x12_c01141{left:734.400000px;}
.x1e_c01141{left:735.840000px;}
@media print{
.v0_c01141{vertical-align:0.000000pt;}
.ls0_c01141{letter-spacing:0.000000pt;}
.ws0_c01141{word-spacing:0.000000pt;}
.fsa_c01141{font-size:30.720000pt;}
.fs4_c01141{font-size:33.280000pt;}
.fsc_c01141{font-size:38.400000pt;}
.fs3_c01141{font-size:40.960000pt;}
.fs2_c01141{font-size:43.520000pt;}
.fs6_c01141{font-size:46.080000pt;}
.fs7_c01141{font-size:48.640000pt;}
.fs5_c01141{font-size:51.200000pt;}
.fs1_c01141{font-size:53.760000pt;}
.fs9_c01141{font-size:56.320000pt;}
.fsb_c01141{font-size:58.880000pt;}
.fs8_c01141{font-size:61.440000pt;}
.fsd_c01141{font-size:64.000000pt;}
.fs0_c01141{font-size:69.120000pt;}
.fse_c01141{font-size:81.920000pt;}
.fsf_c01141{font-size:84.480000pt;}
.y0_c01141{bottom:0.000000pt;}
.y94_c01141{bottom:58.240000pt;}
.y95_c01141{bottom:65.280000pt;}
.y93_c01141{bottom:65.920000pt;}
.y92_c01141{bottom:67.200000pt;}
.y91_c01141{bottom:67.840000pt;}
.y90_c01141{bottom:70.400000pt;}
.y8c_c01141{bottom:96.640000pt;}
.y8f_c01141{bottom:97.280000pt;}
.y8e_c01141{bottom:103.680000pt;}
.y8d_c01141{bottom:104.320000pt;}
.y8b_c01141{bottom:104.960000pt;}
.y8a_c01141{bottom:105.600000pt;}
.y89_c01141{bottom:106.240000pt;}
.y88_c01141{bottom:107.520000pt;}
.y87_c01141{bottom:135.040000pt;}
.y85_c01141{bottom:135.680000pt;}
.y84_c01141{bottom:142.720000pt;}
.y83_c01141{bottom:143.360000pt;}
.y86_c01141{bottom:144.000000pt;}
.y82_c01141{bottom:144.640000pt;}
.y81_c01141{bottom:145.280000pt;}
.y80_c01141{bottom:180.480000pt;}
.y7f_c01141{bottom:181.120000pt;}
.y7d_c01141{bottom:181.760000pt;}
.y7c_c01141{bottom:182.400000pt;}
.y7e_c01141{bottom:183.040000pt;}
.y7b_c01141{bottom:183.680000pt;}
.y7a_c01141{bottom:218.240000pt;}
.y78_c01141{bottom:219.520000pt;}
.y77_c01141{bottom:220.160000pt;}
.y76_c01141{bottom:220.800000pt;}
.y79_c01141{bottom:221.440000pt;}
.y73_c01141{bottom:257.280000pt;}
.y72_c01141{bottom:257.920000pt;}
.y71_c01141{bottom:258.560000pt;}
.y75_c01141{bottom:259.200000pt;}
.y74_c01141{bottom:259.840000pt;}
.y6e_c01141{bottom:295.040000pt;}
.y6f_c01141{bottom:295.680000pt;}
.y70_c01141{bottom:296.960000pt;}
.y6d_c01141{bottom:297.600000pt;}
.y6b_c01141{bottom:323.200000pt;}
.y69_c01141{bottom:323.840000pt;}
.y68_c01141{bottom:324.480000pt;}
.y6a_c01141{bottom:325.760000pt;}
.y6c_c01141{bottom:326.400000pt;}
.y67_c01141{bottom:363.520000pt;}
.y66_c01141{bottom:364.160000pt;}
.y61_c01141{bottom:389.760000pt;}
.y5f_c01141{bottom:390.400000pt;}
.y63_c01141{bottom:391.040000pt;}
.y62_c01141{bottom:391.680000pt;}
.y60_c01141{bottom:392.320000pt;}
.y64_c01141{bottom:392.960000pt;}
.y65_c01141{bottom:393.600000pt;}
.y5c_c01141{bottom:428.160000pt;}
.y59_c01141{bottom:428.800000pt;}
.y5d_c01141{bottom:429.440000pt;}
.y5a_c01141{bottom:430.080000pt;}
.y5b_c01141{bottom:430.720000pt;}
.y5e_c01141{bottom:431.360000pt;}
.y54_c01141{bottom:465.920000pt;}
.y57_c01141{bottom:467.840000pt;}
.y55_c01141{bottom:468.480000pt;}
.y56_c01141{bottom:469.120000pt;}
.y58_c01141{bottom:470.400000pt;}
.y4f_c01141{bottom:504.320000pt;}
.y50_c01141{bottom:506.240000pt;}
.y51_c01141{bottom:506.880000pt;}
.y52_c01141{bottom:507.520000pt;}
.y53_c01141{bottom:508.800000pt;}
.y4e_c01141{bottom:544.640000pt;}
.y48_c01141{bottom:570.240000pt;}
.y4a_c01141{bottom:571.520000pt;}
.y49_c01141{bottom:572.800000pt;}
.y4b_c01141{bottom:574.080000pt;}
.y4c_c01141{bottom:575.360000pt;}
.y4d_c01141{bottom:576.000000pt;}
.y47_c01141{bottom:601.600000pt;}
.y3f_c01141{bottom:608.000000pt;}
.y40_c01141{bottom:608.640000pt;}
.y43_c01141{bottom:609.920000pt;}
.y41_c01141{bottom:610.560000pt;}
.y42_c01141{bottom:611.200000pt;}
.y44_c01141{bottom:611.840000pt;}
.y45_c01141{bottom:612.480000pt;}
.y46_c01141{bottom:613.120000pt;}
.y38_c01141{bottom:645.760000pt;}
.y39_c01141{bottom:646.400000pt;}
.y3a_c01141{bottom:648.960000pt;}
.y3b_c01141{bottom:649.600000pt;}
.y3c_c01141{bottom:650.240000pt;}
.y3d_c01141{bottom:650.880000pt;}
.y3e_c01141{bottom:652.160000pt;}
.y32_c01141{bottom:684.160000pt;}
.y33_c01141{bottom:684.800000pt;}
.y34_c01141{bottom:688.000000pt;}
.y35_c01141{bottom:688.640000pt;}
.y36_c01141{bottom:689.920000pt;}
.y37_c01141{bottom:690.560000pt;}
.y28_c01141{bottom:721.920000pt;}
.y29_c01141{bottom:722.560000pt;}
.y2a_c01141{bottom:723.200000pt;}
.y2b_c01141{bottom:725.760000pt;}
.y2c_c01141{bottom:726.400000pt;}
.y2d_c01141{bottom:727.040000pt;}
.y2f_c01141{bottom:727.680000pt;}
.y2e_c01141{bottom:728.320000pt;}
.y31_c01141{bottom:728.960000pt;}
.y30_c01141{bottom:729.600000pt;}
.y21_c01141{bottom:759.680000pt;}
.y22_c01141{bottom:760.320000pt;}
.y23_c01141{bottom:760.960000pt;}
.y24_c01141{bottom:763.520000pt;}
.y25_c01141{bottom:764.800000pt;}
.y27_c01141{bottom:765.440000pt;}
.y26_c01141{bottom:766.080000pt;}
.y18_c01141{bottom:796.800000pt;}
.y19_c01141{bottom:798.080000pt;}
.y1a_c01141{bottom:800.640000pt;}
.y1b_c01141{bottom:801.280000pt;}
.y1c_c01141{bottom:803.200000pt;}
.y1d_c01141{bottom:803.840000pt;}
.y1f_c01141{bottom:804.480000pt;}
.y1e_c01141{bottom:805.120000pt;}
.y20_c01141{bottom:806.400000pt;}
.y11_c01141{bottom:835.200000pt;}
.y12_c01141{bottom:835.840000pt;}
.y13_c01141{bottom:838.400000pt;}
.y14_c01141{bottom:839.680000pt;}
.y15_c01141{bottom:840.320000pt;}
.y16_c01141{bottom:840.960000pt;}
.y17_c01141{bottom:842.240000pt;}
.ya_c01141{bottom:872.320000pt;}
.yb_c01141{bottom:873.600000pt;}
.yc_c01141{bottom:876.800000pt;}
.yd_c01141{bottom:877.440000pt;}
.ye_c01141{bottom:878.720000pt;}
.yf_c01141{bottom:880.640000pt;}
.y10_c01141{bottom:881.920000pt;}
.y2_c01141{bottom:910.080000pt;}
.y3_c01141{bottom:913.280000pt;}
.y4_c01141{bottom:915.200000pt;}
.y5_c01141{bottom:915.840000pt;}
.y6_c01141{bottom:916.480000pt;}
.y7_c01141{bottom:917.120000pt;}
.y8_c01141{bottom:919.040000pt;}
.y9_c01141{bottom:920.320000pt;}
.y1_c01141{bottom:983.680000pt;}
.hb_c01141{height:27.645000pt;}
.h5_c01141{height:29.948750pt;}
.hd_c01141{height:34.556250pt;}
.h4_c01141{height:36.860000pt;}
.h3_c01141{height:39.163750pt;}
.h7_c01141{height:41.467500pt;}
.h8_c01141{height:43.771250pt;}
.h6_c01141{height:46.075000pt;}
.h2_c01141{height:48.378750pt;}
.ha_c01141{height:50.682500pt;}
.hc_c01141{height:52.986250pt;}
.h9_c01141{height:55.290000pt;}
.he_c01141{height:57.593750pt;}
.h1_c01141{height:62.201250pt;}
.hf_c01141{height:73.720000pt;}
.h10_c01141{height:76.023750pt;}
.h0_c01141{height:1024.000000pt;}
.w1_c01141{width:700.000000pt;}
.w0_c01141{width:700.160000pt;}
.x0_c01141{left:0.000000pt;}
.x2_c01141{left:67.840000pt;}
.xf_c01141{left:69.120000pt;}
.x20_c01141{left:70.400000pt;}
.x30_c01141{left:71.680000pt;}
.x3b_c01141{left:72.960000pt;}
.x3_c01141{left:133.760000pt;}
.x19_c01141{left:135.040000pt;}
.x21_c01141{left:136.320000pt;}
.x31_c01141{left:137.600000pt;}
.x1f_c01141{left:183.040000pt;}
.x4_c01141{left:208.640000pt;}
.x10_c01141{left:209.920000pt;}
.x13_c01141{left:211.200000pt;}
.x27_c01141{left:212.480000pt;}
.x38_c01141{left:213.760000pt;}
.x5_c01141{left:256.640000pt;}
.x17_c01141{left:257.920000pt;}
.x22_c01141{left:259.200000pt;}
.x2d_c01141{left:260.480000pt;}
.x14_c01141{left:266.880000pt;}
.x32_c01141{left:270.080000pt;}
.x3e_c01141{left:271.360000pt;}
.x6_c01141{left:305.280000pt;}
.x1b_c01141{left:306.560000pt;}
.x2e_c01141{left:307.840000pt;}
.x2a_c01141{left:309.120000pt;}
.x15_c01141{left:315.520000pt;}
.x33_c01141{left:318.080000pt;}
.x23_c01141{left:355.200000pt;}
.x34_c01141{left:356.480000pt;}
.x2b_c01141{left:393.600000pt;}
.x39_c01141{left:395.520000pt;}
.x24_c01141{left:403.200000pt;}
.x3a_c01141{left:414.720000pt;}
.x1c_c01141{left:421.760000pt;}
.x25_c01141{left:441.600000pt;}
.x2f_c01141{left:452.480000pt;}
.x3d_c01141{left:453.760000pt;}
.x7_c01141{left:487.680000pt;}
.xd_c01141{left:488.960000pt;}
.x1d_c01141{left:490.240000pt;}
.x28_c01141{left:491.520000pt;}
.xe_c01141{left:536.320000pt;}
.x8_c01141{left:564.480000pt;}
.xb_c01141{left:566.400000pt;}
.x1a_c01141{left:567.680000pt;}
.x29_c01141{left:568.960000pt;}
.x37_c01141{left:570.240000pt;}
.x9_c01141{left:595.200000pt;}
.x11_c01141{left:596.480000pt;}
.x1_c01141{left:597.760000pt;}
.x2c_c01141{left:599.040000pt;}
.x3f_c01141{left:600.960000pt;}
.x16_c01141{left:625.920000pt;}
.x36_c01141{left:628.480000pt;}
.x3c_c01141{left:629.760000pt;}
.xa_c01141{left:632.960000pt;}
.xc_c01141{left:634.240000pt;}
.x18_c01141{left:635.520000pt;}
.x26_c01141{left:636.800000pt;}
.x35_c01141{left:638.080000pt;}
.x12_c01141{left:652.800000pt;}
.x1e_c01141{left:654.080000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_967738458a4f01e9029e22d7.woff2')format("woff");}.ff1_c01142{font-family:ff1_c01142;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3d_c01142{transform:matrix(0.149875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149875,0.000000,0.000000,0.250000,0,0);}
.m1e_c01142{transform:matrix(0.197575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197575,0.000000,0.000000,0.250000,0,0);}
.m50_c01142{transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);}
.m13_c01142{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m4b_c01142{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m56_c01142{transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);}
.m3a_c01142{transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);}
.m58_c01142{transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);}
.m1c_c01142{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m15_c01142{transform:matrix(0.246525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246525,0.000000,0.000000,0.250000,0,0);}
.m54_c01142{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m31_c01142{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);}
.m40_c01142{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m27_c01142{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);}
.m2b_c01142{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_c01142{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);}
.m35_c01142{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m9_c01142{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m21_c01142{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);}
.m42_c01142{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m23_c01142{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_c01142{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);}
.m57_c01142{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);}
.m48_c01142{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mb_c01142{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m4_c01142{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m5_c01142{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m7_c01142{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m51_c01142{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01142{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m4e_c01142{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m19_c01142{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01142{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m37_c01142{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.md_c01142{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mf_c01142{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m5b_c01142{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m28_c01142{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01142{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m41_c01142{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m17_c01142{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m2_c01142{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m18_c01142{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);}
.m4a_c01142{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01142{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);}
.m5d_c01142{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m25_c01142{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m1_c01142{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m6_c01142{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);}
.m4d_c01142{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01142{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);}
.m39_c01142{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);}
.m49_c01142{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m53_c01142{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);}
.m32_c01142{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.mc_c01142{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);}
.m0_c01142{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01142{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);}
.m12_c01142{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m5a_c01142{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);}
.m14_c01142{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);}
.m2f_c01142{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m5c_c01142{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m47_c01142{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m59_c01142{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m52_c01142{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m55_c01142{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);}
.m33_c01142{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);}
.m64_c01142{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m38_c01142{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m10_c01142{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m44_c01142{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);}
.m30_c01142{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01142{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);}
.m24_c01142{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.me_c01142{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m16_c01142{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);}
.m1d_c01142{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m20_c01142{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);}
.m22_c01142{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m29_c01142{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);}
.m5e_c01142{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m66_c01142{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);}
.m34_c01142{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m5f_c01142{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m63_c01142{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01142{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);}
.m36_c01142{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);}
.m3e_c01142{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m62_c01142{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m3_c01142{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.ma_c01142{transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01142{transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);}
.m26_c01142{transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);}
.m45_c01142{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.m46_c01142{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);}
.m65_c01142{transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);}
.m60_c01142{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01142{transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01142{transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);}
.m43_c01142{transform:matrix(0.872500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.872500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.872500,0.000000,0.000000,0.250000,0,0);}
.m61_c01142{transform:matrix(0.885000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.885000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.885000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01142{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.v1_c01142{vertical-align:-2.880000px;}
.v0_c01142{vertical-align:0.000000px;}
.ls0_c01142{letter-spacing:0.000000px;}
.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;}
}
.ws1_c01142{word-spacing:0.000000px;}
.ws0_c01142{word-spacing:200.384400px;}
.fc0_c01142{color:transparent;}
.fse_c01142{font-size:14.400000px;}
.fsd_c01142{font-size:23.040000px;}
.fs3_c01142{font-size:34.560000px;}
.fsc_c01142{font-size:43.200000px;}
.fs9_c01142{font-size:46.080000px;}
.fs2_c01142{font-size:48.960000px;}
.fs5_c01142{font-size:51.840000px;}
.fsa_c01142{font-size:54.720000px;}
.fs7_c01142{font-size:57.600000px;}
.fs1_c01142{font-size:60.480000px;}
.fs4_c01142{font-size:63.360000px;}
.fs8_c01142{font-size:66.240000px;}
.fsb_c01142{font-size:69.120000px;}
.fs0_c01142{font-size:72.000000px;}
.fs6_c01142{font-size:77.760000px;}
.y0_c01142{bottom:0.000000px;}
.yb3_c01142{bottom:75.600000px;}
.yb2_c01142{bottom:77.040000px;}
.yb4_c01142{bottom:78.480000px;}
.yb0_c01142{bottom:82.080000px;}
.yb1_c01142{bottom:82.800000px;}
.yaf_c01142{bottom:118.080000px;}
.yae_c01142{bottom:118.800000px;}
.yad_c01142{bottom:119.520000px;}
.yac_c01142{bottom:120.240000px;}
.yaa_c01142{bottom:123.120000px;}
.yab_c01142{bottom:124.560000px;}
.ya9_c01142{bottom:161.280000px;}
.ya8_c01142{bottom:162.000000px;}
.ya7_c01142{bottom:162.720000px;}
.ya6_c01142{bottom:167.040000px;}
.ya5_c01142{bottom:167.760000px;}
.ya2_c01142{bottom:204.480000px;}
.ya3_c01142{bottom:205.200000px;}
.ya4_c01142{bottom:206.640000px;}
.y9f_c01142{bottom:208.800000px;}
.ya1_c01142{bottom:209.520000px;}
.ya0_c01142{bottom:210.240000px;}
.y9b_c01142{bottom:246.960000px;}
.y9d_c01142{bottom:247.680000px;}
.y9e_c01142{bottom:248.400000px;}
.y98_c01142{bottom:249.120000px;}
.y9c_c01142{bottom:249.840000px;}
.y9a_c01142{bottom:250.560000px;}
.y99_c01142{bottom:251.280000px;}
.y97_c01142{bottom:252.720000px;}
.y93_c01142{bottom:290.160000px;}
.y95_c01142{bottom:290.880000px;}
.y92_c01142{bottom:291.600000px;}
.y96_c01142{bottom:292.320000px;}
.y94_c01142{bottom:293.040000px;}
.y90_c01142{bottom:294.480000px;}
.y91_c01142{bottom:295.200000px;}
.y8b_c01142{bottom:333.360000px;}
.y8a_c01142{bottom:334.080000px;}
.y8d_c01142{bottom:334.800000px;}
.y8c_c01142{bottom:335.520000px;}
.y8f_c01142{bottom:336.240000px;}
.y88_c01142{bottom:336.960000px;}
.y8e_c01142{bottom:337.680000px;}
.y89_c01142{bottom:338.400000px;}
.y86_c01142{bottom:376.560000px;}
.y84_c01142{bottom:377.280000px;}
.y85_c01142{bottom:378.720000px;}
.y82_c01142{bottom:379.440000px;}
.y83_c01142{bottom:380.160000px;}
.y87_c01142{bottom:380.880000px;}
.y7e_c01142{bottom:419.760000px;}
.y81_c01142{bottom:421.200000px;}
.y7c_c01142{bottom:421.920000px;}
.y80_c01142{bottom:422.640000px;}
.y7f_c01142{bottom:423.360000px;}
.y7d_c01142{bottom:424.080000px;}
.y7a_c01142{bottom:464.400000px;}
.y7b_c01142{bottom:465.120000px;}
.y79_c01142{bottom:468.000000px;}
.y75_c01142{bottom:527.760000px;}
.y74_c01142{bottom:528.480000px;}
.y76_c01142{bottom:529.200000px;}
.y77_c01142{bottom:529.920000px;}
.y78_c01142{bottom:532.080000px;}
.y6f_c01142{bottom:548.640000px;}
.y6e_c01142{bottom:550.080000px;}
.y72_c01142{bottom:550.800000px;}
.y6d_c01142{bottom:551.520000px;}
.y70_c01142{bottom:552.240000px;}
.y71_c01142{bottom:552.960000px;}
.y73_c01142{bottom:553.680000px;}
.y68_c01142{bottom:570.240000px;}
.y69_c01142{bottom:570.960000px;}
.y6b_c01142{bottom:571.680000px;}
.y66_c01142{bottom:572.400000px;}
.y67_c01142{bottom:573.120000px;}
.y6c_c01142{bottom:573.840000px;}
.y6a_c01142{bottom:574.560000px;}
.y61_c01142{bottom:591.120000px;}
.y64_c01142{bottom:591.840000px;}
.y65_c01142{bottom:592.560000px;}
.y63_c01142{bottom:593.280000px;}
.y62_c01142{bottom:594.000000px;}
.y5a_c01142{bottom:612.000000px;}
.y5c_c01142{bottom:612.720000px;}
.y5d_c01142{bottom:613.440000px;}
.y5e_c01142{bottom:614.880000px;}
.y5b_c01142{bottom:615.600000px;}
.y60_c01142{bottom:617.040000px;}
.y5f_c01142{bottom:617.760000px;}
.y57_c01142{bottom:635.760000px;}
.y55_c01142{bottom:636.480000px;}
.y56_c01142{bottom:637.200000px;}
.y58_c01142{bottom:638.640000px;}
.y59_c01142{bottom:640.080000px;}
.y4f_c01142{bottom:655.200000px;}
.y50_c01142{bottom:655.920000px;}
.y4e_c01142{bottom:657.360000px;}
.y53_c01142{bottom:658.080000px;}
.y51_c01142{bottom:658.800000px;}
.y52_c01142{bottom:659.520000px;}
.y54_c01142{bottom:660.240000px;}
.y46_c01142{bottom:684.000000px;}
.y4d_c01142{bottom:685.440000px;}
.y48_c01142{bottom:689.760000px;}
.y47_c01142{bottom:690.480000px;}
.y4b_c01142{bottom:691.200000px;}
.y4a_c01142{bottom:691.920000px;}
.y4c_c01142{bottom:693.360000px;}
.y49_c01142{bottom:697.680000px;}
.y41_c01142{bottom:730.800000px;}
.y45_c01142{bottom:732.240000px;}
.y44_c01142{bottom:732.960000px;}
.y42_c01142{bottom:734.400000px;}
.y43_c01142{bottom:735.120000px;}
.y40_c01142{bottom:751.680000px;}
.y3f_c01142{bottom:753.840000px;}
.y3b_c01142{bottom:763.920000px;}
.y3a_c01142{bottom:766.080000px;}
.y39_c01142{bottom:766.800000px;}
.y3c_c01142{bottom:768.240000px;}
.y3e_c01142{bottom:769.680000px;}
.y33_c01142{bottom:771.120000px;}
.y36_c01142{bottom:771.840000px;}
.y34_c01142{bottom:772.560000px;}
.y37_c01142{bottom:773.280000px;}
.y3d_c01142{bottom:774.000000px;}
.y38_c01142{bottom:774.720000px;}
.y35_c01142{bottom:776.160000px;}
.y2c_c01142{bottom:794.880000px;}
.y2d_c01142{bottom:797.040000px;}
.y2e_c01142{bottom:797.760000px;}
.y30_c01142{bottom:798.480000px;}
.y2f_c01142{bottom:799.200000px;}
.y32_c01142{bottom:800.640000px;}
.y31_c01142{bottom:801.360000px;}
.y25_c01142{bottom:837.360000px;}
.y26_c01142{bottom:838.080000px;}
.y27_c01142{bottom:838.800000px;}
.y2b_c01142{bottom:839.520000px;}
.y2a_c01142{bottom:840.240000px;}
.y28_c01142{bottom:841.680000px;}
.y29_c01142{bottom:843.840000px;}
.y24_c01142{bottom:847.440000px;}
.y20_c01142{bottom:859.680000px;}
.y21_c01142{bottom:861.120000px;}
.y22_c01142{bottom:861.840000px;}
.y23_c01142{bottom:862.560000px;}
.y18_c01142{bottom:898.560000px;}
.y17_c01142{bottom:900.000000px;}
.y1c_c01142{bottom:902.160000px;}
.y19_c01142{bottom:902.880000px;}
.y1a_c01142{bottom:904.320000px;}
.y1d_c01142{bottom:905.040000px;}
.y1b_c01142{bottom:905.760000px;}
.y1e_c01142{bottom:907.200000px;}
.y1f_c01142{bottom:909.360000px;}
.yf_c01142{bottom:942.480000px;}
.y12_c01142{bottom:943.200000px;}
.y10_c01142{bottom:944.640000px;}
.y11_c01142{bottom:945.360000px;}
.y13_c01142{bottom:948.240000px;}
.y14_c01142{bottom:948.960000px;}
.y16_c01142{bottom:949.680000px;}
.y15_c01142{bottom:950.400000px;}
.y8_c01142{bottom:984.240000px;}
.ya_c01142{bottom:984.960000px;}
.y9_c01142{bottom:987.840000px;}
.yb_c01142{bottom:991.440000px;}
.yd_c01142{bottom:992.160000px;}
.ye_c01142{bottom:992.880000px;}
.yc_c01142{bottom:994.320000px;}
.y2_c01142{bottom:1027.440000px;}
.y4_c01142{bottom:1029.600000px;}
.y3_c01142{bottom:1031.040000px;}
.y5_c01142{bottom:1034.640000px;}
.y6_c01142{bottom:1036.080000px;}
.y7_c01142{bottom:1036.800000px;}
.y1_c01142{bottom:1095.840000px;}
.h10_c01142{height:12.958594px;}
.hf_c01142{height:20.733750px;}
.h5_c01142{height:31.100625px;}
.he_c01142{height:38.875781px;}
.hb_c01142{height:41.467500px;}
.h4_c01142{height:44.059219px;}
.h7_c01142{height:46.650937px;}
.hc_c01142{height:49.242656px;}
.h9_c01142{height:51.834375px;}
.h3_c01142{height:54.426094px;}
.h6_c01142{height:57.017812px;}
.ha_c01142{height:59.609531px;}
.hd_c01142{height:62.201250px;}
.h2_c01142{height:64.792969px;}
.h8_c01142{height:69.976406px;}
.h1_c01142{height:1149.000000px;}
.h0_c01142{height:1149.120000px;}
.w1_c01142{width:783.750000px;}
.w0_c01142{width:784.080000px;}
.x0_c01142{left:0.000000px;}
.x2_c01142{left:76.320000px;}
.x42_c01142{left:79.200000px;}
.x57_c01142{left:80.640810px;}
.x33_c01142{left:89.280000px;}
.x24_c01142{left:108.000000px;}
.x58_c01142{left:112.320000px;}
.x34_c01142{left:120.960000px;}
.x3c_c01142{left:131.760000px;}
.x3_c01142{left:149.040000px;}
.xd_c01142{left:151.200000px;}
.x35_c01142{left:152.640000px;}
.x3d_c01142{left:163.440000px;}
.x55_c01142{left:164.880000px;}
.x25_c01142{left:172.800000px;}
.x3e_c01142{left:185.040000px;}
.x12_c01142{left:193.680000px;}
.x46_c01142{left:195.120000px;}
.x56_c01142{left:196.560000px;}
.x4_c01142{left:203.760000px;}
.xc_c01142{left:224.640000px;}
.x2b_c01142{left:226.080000px;}
.x3f_c01142{left:227.520000px;}
.x50_c01142{left:239.760000px;}
.x5_c01142{left:245.520000px;}
.x16_c01142{left:248.400000px;}
.x1b_c01142{left:257.760000px;}
.x26_c01142{left:259.200000px;}
.x28_c01142{left:270.000000px;}
.xe_c01142{left:288.720000px;}
.x13_c01142{left:300.960000px;}
.x36_c01142{left:302.400000px;}
.x17_c01142{left:311.040000px;}
.x2c_c01142{left:332.640000px;}
.x49_c01142{left:335.520000px;}
.x4e_c01142{left:345.600000px;}
.x37_c01142{left:355.680000px;}
.x14_c01142{left:365.040000px;}
.x2d_c01142{left:375.120000px;}
.x1c_c01142{left:377.280000px;}
.xf_c01142{left:385.920000px;}
.x38_c01142{left:388.080000px;}
.x43_c01142{left:389.520000px;}
.x1d_c01142{left:396.720000px;}
.x10_c01142{left:407.520000px;}
.x39_c01142{left:409.680000px;}
.x51_c01142{left:411.120000px;}
.x15_c01142{left:419.040000px;}
.x4a_c01142{left:421.920000px;}
.x1e_c01142{left:430.560000px;}
.x4f_c01142{left:432.000000px;}
.x18_c01142{left:451.440000px;}
.x40_c01142{left:453.600000px;}
.x2e_c01142{left:463.680000px;}
.x52_c01142{left:465.840000px;}
.x1f_c01142{left:473.760000px;}
.x29_c01142{left:475.200000px;}
.x19_c01142{left:483.840000px;}
.x20_c01142{left:496.080000px;}
.x4b_c01142{left:501.120000px;}
.x2a_c01142{left:505.440000px;}
.x1a_c01142{left:516.240000px;}
.x2f_c01142{left:528.480000px;}
.x21_c01142{left:539.280000px;}
.x6_c01142{left:548.640000px;}
.x47_c01142{left:550.800000px;}
.x4d_c01142{left:552.240000px;}
.x30_c01142{left:560.880000px;}
.x22_c01142{left:583.200000px;}
.x41_c01142{left:584.640000px;}
.x27_c01142{left:592.560000px;}
.x7_c01142{left:603.360000px;}
.x59_c01142{left:606.240000px;}
.x9_c01142{left:614.160000px;}
.x3a_c01142{left:616.320000px;}
.x44_c01142{left:617.760000px;}
.x23_c01142{left:624.960000px;}
.xa_c01142{left:637.200000px;}
.x3b_c01142{left:638.640000px;}
.x53_c01142{left:640.800000px;}
.xb_c01142{left:671.040000px;}
.x45_c01142{left:672.480000px;}
.x5a_c01142{left:673.920000px;}
.x1_c01142{left:680.400000px;}
.x31_c01142{left:681.840000px;}
.x32_c01142{left:692.640000px;}
.x5c_c01142{left:707.040000px;}
.x8_c01142{left:712.080000px;}
.x11_c01142{left:714.240000px;}
.x48_c01142{left:715.680000px;}
.x54_c01142{left:717.120000px;}
.x4c_c01142{left:736.560000px;}
.x5b_c01142{left:738.000000px;}
@media print{
.v1_c01142{vertical-align:-2.560000pt;}
.v0_c01142{vertical-align:0.000000pt;}
.ls0_c01142{letter-spacing:0.000000pt;}
.ws1_c01142{word-spacing:0.000000pt;}
.ws0_c01142{word-spacing:178.119467pt;}
.fse_c01142{font-size:12.800000pt;}
.fsd_c01142{font-size:20.480000pt;}
.fs3_c01142{font-size:30.720000pt;}
.fsc_c01142{font-size:38.400000pt;}
.fs9_c01142{font-size:40.960000pt;}
.fs2_c01142{font-size:43.520000pt;}
.fs5_c01142{font-size:46.080000pt;}
.fsa_c01142{font-size:48.640000pt;}
.fs7_c01142{font-size:51.200000pt;}
.fs1_c01142{font-size:53.760000pt;}
.fs4_c01142{font-size:56.320000pt;}
.fs8_c01142{font-size:58.880000pt;}
.fsb_c01142{font-size:61.440000pt;}
.fs0_c01142{font-size:64.000000pt;}
.fs6_c01142{font-size:69.120000pt;}
.y0_c01142{bottom:0.000000pt;}
.yb3_c01142{bottom:67.200000pt;}
.yb2_c01142{bottom:68.480000pt;}
.yb4_c01142{bottom:69.760000pt;}
.yb0_c01142{bottom:72.960000pt;}
.yb1_c01142{bottom:73.600000pt;}
.yaf_c01142{bottom:104.960000pt;}
.yae_c01142{bottom:105.600000pt;}
.yad_c01142{bottom:106.240000pt;}
.yac_c01142{bottom:106.880000pt;}
.yaa_c01142{bottom:109.440000pt;}
.yab_c01142{bottom:110.720000pt;}
.ya9_c01142{bottom:143.360000pt;}
.ya8_c01142{bottom:144.000000pt;}
.ya7_c01142{bottom:144.640000pt;}
.ya6_c01142{bottom:148.480000pt;}
.ya5_c01142{bottom:149.120000pt;}
.ya2_c01142{bottom:181.760000pt;}
.ya3_c01142{bottom:182.400000pt;}
.ya4_c01142{bottom:183.680000pt;}
.y9f_c01142{bottom:185.600000pt;}
.ya1_c01142{bottom:186.240000pt;}
.ya0_c01142{bottom:186.880000pt;}
.y9b_c01142{bottom:219.520000pt;}
.y9d_c01142{bottom:220.160000pt;}
.y9e_c01142{bottom:220.800000pt;}
.y98_c01142{bottom:221.440000pt;}
.y9c_c01142{bottom:222.080000pt;}
.y9a_c01142{bottom:222.720000pt;}
.y99_c01142{bottom:223.360000pt;}
.y97_c01142{bottom:224.640000pt;}
.y93_c01142{bottom:257.920000pt;}
.y95_c01142{bottom:258.560000pt;}
.y92_c01142{bottom:259.200000pt;}
.y96_c01142{bottom:259.840000pt;}
.y94_c01142{bottom:260.480000pt;}
.y90_c01142{bottom:261.760000pt;}
.y91_c01142{bottom:262.400000pt;}
.y8b_c01142{bottom:296.320000pt;}
.y8a_c01142{bottom:296.960000pt;}
.y8d_c01142{bottom:297.600000pt;}
.y8c_c01142{bottom:298.240000pt;}
.y8f_c01142{bottom:298.880000pt;}
.y88_c01142{bottom:299.520000pt;}
.y8e_c01142{bottom:300.160000pt;}
.y89_c01142{bottom:300.800000pt;}
.y86_c01142{bottom:334.720000pt;}
.y84_c01142{bottom:335.360000pt;}
.y85_c01142{bottom:336.640000pt;}
.y82_c01142{bottom:337.280000pt;}
.y83_c01142{bottom:337.920000pt;}
.y87_c01142{bottom:338.560000pt;}
.y7e_c01142{bottom:373.120000pt;}
.y81_c01142{bottom:374.400000pt;}
.y7c_c01142{bottom:375.040000pt;}
.y80_c01142{bottom:375.680000pt;}
.y7f_c01142{bottom:376.320000pt;}
.y7d_c01142{bottom:376.960000pt;}
.y7a_c01142{bottom:412.800000pt;}
.y7b_c01142{bottom:413.440000pt;}
.y79_c01142{bottom:416.000000pt;}
.y75_c01142{bottom:469.120000pt;}
.y74_c01142{bottom:469.760000pt;}
.y76_c01142{bottom:470.400000pt;}
.y77_c01142{bottom:471.040000pt;}
.y78_c01142{bottom:472.960000pt;}
.y6f_c01142{bottom:487.680000pt;}
.y6e_c01142{bottom:488.960000pt;}
.y72_c01142{bottom:489.600000pt;}
.y6d_c01142{bottom:490.240000pt;}
.y70_c01142{bottom:490.880000pt;}
.y71_c01142{bottom:491.520000pt;}
.y73_c01142{bottom:492.160000pt;}
.y68_c01142{bottom:506.880000pt;}
.y69_c01142{bottom:507.520000pt;}
.y6b_c01142{bottom:508.160000pt;}
.y66_c01142{bottom:508.800000pt;}
.y67_c01142{bottom:509.440000pt;}
.y6c_c01142{bottom:510.080000pt;}
.y6a_c01142{bottom:510.720000pt;}
.y61_c01142{bottom:525.440000pt;}
.y64_c01142{bottom:526.080000pt;}
.y65_c01142{bottom:526.720000pt;}
.y63_c01142{bottom:527.360000pt;}
.y62_c01142{bottom:528.000000pt;}
.y5a_c01142{bottom:544.000000pt;}
.y5c_c01142{bottom:544.640000pt;}
.y5d_c01142{bottom:545.280000pt;}
.y5e_c01142{bottom:546.560000pt;}
.y5b_c01142{bottom:547.200000pt;}
.y60_c01142{bottom:548.480000pt;}
.y5f_c01142{bottom:549.120000pt;}
.y57_c01142{bottom:565.120000pt;}
.y55_c01142{bottom:565.760000pt;}
.y56_c01142{bottom:566.400000pt;}
.y58_c01142{bottom:567.680000pt;}
.y59_c01142{bottom:568.960000pt;}
.y4f_c01142{bottom:582.400000pt;}
.y50_c01142{bottom:583.040000pt;}
.y4e_c01142{bottom:584.320000pt;}
.y53_c01142{bottom:584.960000pt;}
.y51_c01142{bottom:585.600000pt;}
.y52_c01142{bottom:586.240000pt;}
.y54_c01142{bottom:586.880000pt;}
.y46_c01142{bottom:608.000000pt;}
.y4d_c01142{bottom:609.280000pt;}
.y48_c01142{bottom:613.120000pt;}
.y47_c01142{bottom:613.760000pt;}
.y4b_c01142{bottom:614.400000pt;}
.y4a_c01142{bottom:615.040000pt;}
.y4c_c01142{bottom:616.320000pt;}
.y49_c01142{bottom:620.160000pt;}
.y41_c01142{bottom:649.600000pt;}
.y45_c01142{bottom:650.880000pt;}
.y44_c01142{bottom:651.520000pt;}
.y42_c01142{bottom:652.800000pt;}
.y43_c01142{bottom:653.440000pt;}
.y40_c01142{bottom:668.160000pt;}
.y3f_c01142{bottom:670.080000pt;}
.y3b_c01142{bottom:679.040000pt;}
.y3a_c01142{bottom:680.960000pt;}
.y39_c01142{bottom:681.600000pt;}
.y3c_c01142{bottom:682.880000pt;}
.y3e_c01142{bottom:684.160000pt;}
.y33_c01142{bottom:685.440000pt;}
.y36_c01142{bottom:686.080000pt;}
.y34_c01142{bottom:686.720000pt;}
.y37_c01142{bottom:687.360000pt;}
.y3d_c01142{bottom:688.000000pt;}
.y38_c01142{bottom:688.640000pt;}
.y35_c01142{bottom:689.920000pt;}
.y2c_c01142{bottom:706.560000pt;}
.y2d_c01142{bottom:708.480000pt;}
.y2e_c01142{bottom:709.120000pt;}
.y30_c01142{bottom:709.760000pt;}
.y2f_c01142{bottom:710.400000pt;}
.y32_c01142{bottom:711.680000pt;}
.y31_c01142{bottom:712.320000pt;}
.y25_c01142{bottom:744.320000pt;}
.y26_c01142{bottom:744.960000pt;}
.y27_c01142{bottom:745.600000pt;}
.y2b_c01142{bottom:746.240000pt;}
.y2a_c01142{bottom:746.880000pt;}
.y28_c01142{bottom:748.160000pt;}
.y29_c01142{bottom:750.080000pt;}
.y24_c01142{bottom:753.280000pt;}
.y20_c01142{bottom:764.160000pt;}
.y21_c01142{bottom:765.440000pt;}
.y22_c01142{bottom:766.080000pt;}
.y23_c01142{bottom:766.720000pt;}
.y18_c01142{bottom:798.720000pt;}
.y17_c01142{bottom:800.000000pt;}
.y1c_c01142{bottom:801.920000pt;}
.y19_c01142{bottom:802.560000pt;}
.y1a_c01142{bottom:803.840000pt;}
.y1d_c01142{bottom:804.480000pt;}
.y1b_c01142{bottom:805.120000pt;}
.y1e_c01142{bottom:806.400000pt;}
.y1f_c01142{bottom:808.320000pt;}
.yf_c01142{bottom:837.760000pt;}
.y12_c01142{bottom:838.400000pt;}
.y10_c01142{bottom:839.680000pt;}
.y11_c01142{bottom:840.320000pt;}
.y13_c01142{bottom:842.880000pt;}
.y14_c01142{bottom:843.520000pt;}
.y16_c01142{bottom:844.160000pt;}
.y15_c01142{bottom:844.800000pt;}
.y8_c01142{bottom:874.880000pt;}
.ya_c01142{bottom:875.520000pt;}
.y9_c01142{bottom:878.080000pt;}
.yb_c01142{bottom:881.280000pt;}
.yd_c01142{bottom:881.920000pt;}
.ye_c01142{bottom:882.560000pt;}
.yc_c01142{bottom:883.840000pt;}
.y2_c01142{bottom:913.280000pt;}
.y4_c01142{bottom:915.200000pt;}
.y3_c01142{bottom:916.480000pt;}
.y5_c01142{bottom:919.680000pt;}
.y6_c01142{bottom:920.960000pt;}
.y7_c01142{bottom:921.600000pt;}
.y1_c01142{bottom:974.080000pt;}
.h10_c01142{height:11.518750pt;}
.hf_c01142{height:18.430000pt;}
.h5_c01142{height:27.645000pt;}
.he_c01142{height:34.556250pt;}
.hb_c01142{height:36.860000pt;}
.h4_c01142{height:39.163750pt;}
.h7_c01142{height:41.467500pt;}
.hc_c01142{height:43.771250pt;}
.h9_c01142{height:46.075000pt;}
.h3_c01142{height:48.378750pt;}
.h6_c01142{height:50.682500pt;}
.ha_c01142{height:52.986250pt;}
.hd_c01142{height:55.290000pt;}
.h2_c01142{height:57.593750pt;}
.h8_c01142{height:62.201250pt;}
.h1_c01142{height:1021.333333pt;}
.h0_c01142{height:1021.440000pt;}
.w1_c01142{width:696.666667pt;}
.w0_c01142{width:696.960000pt;}
.x0_c01142{left:0.000000pt;}
.x2_c01142{left:67.840000pt;}
.x42_c01142{left:70.400000pt;}
.x57_c01142{left:71.680720pt;}
.x33_c01142{left:79.360000pt;}
.x24_c01142{left:96.000000pt;}
.x58_c01142{left:99.840000pt;}
.x34_c01142{left:107.520000pt;}
.x3c_c01142{left:117.120000pt;}
.x3_c01142{left:132.480000pt;}
.xd_c01142{left:134.400000pt;}
.x35_c01142{left:135.680000pt;}
.x3d_c01142{left:145.280000pt;}
.x55_c01142{left:146.560000pt;}
.x25_c01142{left:153.600000pt;}
.x3e_c01142{left:164.480000pt;}
.x12_c01142{left:172.160000pt;}
.x46_c01142{left:173.440000pt;}
.x56_c01142{left:174.720000pt;}
.x4_c01142{left:181.120000pt;}
.xc_c01142{left:199.680000pt;}
.x2b_c01142{left:200.960000pt;}
.x3f_c01142{left:202.240000pt;}
.x50_c01142{left:213.120000pt;}
.x5_c01142{left:218.240000pt;}
.x16_c01142{left:220.800000pt;}
.x1b_c01142{left:229.120000pt;}
.x26_c01142{left:230.400000pt;}
.x28_c01142{left:240.000000pt;}
.xe_c01142{left:256.640000pt;}
.x13_c01142{left:267.520000pt;}
.x36_c01142{left:268.800000pt;}
.x17_c01142{left:276.480000pt;}
.x2c_c01142{left:295.680000pt;}
.x49_c01142{left:298.240000pt;}
.x4e_c01142{left:307.200000pt;}
.x37_c01142{left:316.160000pt;}
.x14_c01142{left:324.480000pt;}
.x2d_c01142{left:333.440000pt;}
.x1c_c01142{left:335.360000pt;}
.xf_c01142{left:343.040000pt;}
.x38_c01142{left:344.960000pt;}
.x43_c01142{left:346.240000pt;}
.x1d_c01142{left:352.640000pt;}
.x10_c01142{left:362.240000pt;}
.x39_c01142{left:364.160000pt;}
.x51_c01142{left:365.440000pt;}
.x15_c01142{left:372.480000pt;}
.x4a_c01142{left:375.040000pt;}
.x1e_c01142{left:382.720000pt;}
.x4f_c01142{left:384.000000pt;}
.x18_c01142{left:401.280000pt;}
.x40_c01142{left:403.200000pt;}
.x2e_c01142{left:412.160000pt;}
.x52_c01142{left:414.080000pt;}
.x1f_c01142{left:421.120000pt;}
.x29_c01142{left:422.400000pt;}
.x19_c01142{left:430.080000pt;}
.x20_c01142{left:440.960000pt;}
.x4b_c01142{left:445.440000pt;}
.x2a_c01142{left:449.280000pt;}
.x1a_c01142{left:458.880000pt;}
.x2f_c01142{left:469.760000pt;}
.x21_c01142{left:479.360000pt;}
.x6_c01142{left:487.680000pt;}
.x47_c01142{left:489.600000pt;}
.x4d_c01142{left:490.880000pt;}
.x30_c01142{left:498.560000pt;}
.x22_c01142{left:518.400000pt;}
.x41_c01142{left:519.680000pt;}
.x27_c01142{left:526.720000pt;}
.x7_c01142{left:536.320000pt;}
.x59_c01142{left:538.880000pt;}
.x9_c01142{left:545.920000pt;}
.x3a_c01142{left:547.840000pt;}
.x44_c01142{left:549.120000pt;}
.x23_c01142{left:555.520000pt;}
.xa_c01142{left:566.400000pt;}
.x3b_c01142{left:567.680000pt;}
.x53_c01142{left:569.600000pt;}
.xb_c01142{left:596.480000pt;}
.x45_c01142{left:597.760000pt;}
.x5a_c01142{left:599.040000pt;}
.x1_c01142{left:604.800000pt;}
.x31_c01142{left:606.080000pt;}
.x32_c01142{left:615.680000pt;}
.x5c_c01142{left:628.480000pt;}
.x8_c01142{left:632.960000pt;}
.x11_c01142{left:634.880000pt;}
.x48_c01142{left:636.160000pt;}
.x54_c01142{left:637.440000pt;}
.x4c_c01142{left:654.720000pt;}
.x5b_c01142{left:656.000000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_cdc21e4d4f5a362327ff15df.woff2')format("woff");}.ff1_c01143{font-family:ff1_c01143;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01143{transform:matrix(0.215825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215825,0.000000,0.000000,0.250000,0,0);}
.m33_c01143{transform:matrix(0.239625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239625,0.000000,0.000000,0.250000,0,0);}
.m32_c01143{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m47_c01143{transform:matrix(0.249300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249300,0.000000,0.000000,0.250000,0,0);}
.m38_c01143{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m21_c01143{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_c01143{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);}
.m2e_c01143{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);}
.m28_c01143{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);}
.m3e_c01143{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m26_c01143{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);}
.m39_c01143{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.mb_c01143{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);}
.m3d_c01143{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);}
.m46_c01143{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m40_c01143{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);}
.m2b_c01143{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);}
.m36_c01143{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m8_c01143{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m9_c01143{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m16_c01143{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m10_c01143{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01143{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01143{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01143{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m23_c01143{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m31_c01143{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01143{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.ma_c01143{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01143{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.me_c01143{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m45_c01143{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m7_c01143{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mf_c01143{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m12_c01143{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);}
.m2a_c01143{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);}
.m3c_c01143{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01143{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m14_c01143{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m25_c01143{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m6_c01143{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);}
.m44_c01143{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01143{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.md_c01143{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);}
.m1b_c01143{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m15_c01143{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01143{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);}
.m43_c01143{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);}
.m41_c01143{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m22_c01143{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m48_c01143{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m30_c01143{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m13_c01143{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m5_c01143{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);}
.m37_c01143{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m19_c01143{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m3_c01143{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01143{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m34_c01143{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m4_c01143{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);}
.m2_c01143{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m49_c01143{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01143{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);}
.m29_c01143{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01143{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m20_c01143{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);}
.m18_c01143{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);}
.m1d_c01143{transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);}
.m35_c01143{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);}
.m17_c01143{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01143{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.mc_c01143{transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);}
.m27_c01143{transform:matrix(0.907500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.907500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.907500,0.000000,0.000000,0.250000,0,0);}
.m1_c01143{transform:matrix(0.910000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.910000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.910000,0.000000,0.000000,0.250000,0,0);}
.v2_c01143{vertical-align:-5.760000px;}
.v1_c01143{vertical-align:-2.880000px;}
.v0_c01143{vertical-align:0.000000px;}
.ls0_c01143{letter-spacing:0.000000px;}
.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;}
}
.ws3_c01143{word-spacing:-1.068960px;}
.ws5_c01143{word-spacing:0.000000px;}
.ws0_c01143{word-spacing:2.117040px;}
.ws1_c01143{word-spacing:17.080465px;}
.ws2_c01143{word-spacing:17.894799px;}
.ws4_c01143{word-spacing:70.072800px;}
.fc0_c01143{color:transparent;}
.fsd_c01143{font-size:17.280000px;}
.fs2_c01143{font-size:20.160000px;}
.fsb_c01143{font-size:25.920000px;}
.fs4_c01143{font-size:28.800000px;}
.fs3_c01143{font-size:34.560000px;}
.fs1_c01143{font-size:37.440000px;}
.fse_c01143{font-size:43.200000px;}
.fsc_c01143{font-size:46.080000px;}
.fs6_c01143{font-size:48.960000px;}
.fs5_c01143{font-size:51.840000px;}
.fs9_c01143{font-size:54.720000px;}
.fs8_c01143{font-size:57.600000px;}
.fs7_c01143{font-size:60.480000px;}
.fsf_c01143{font-size:66.240000px;}
.fsa_c01143{font-size:69.120000px;}
.fs0_c01143{font-size:72.000000px;}
.fs10_c01143{font-size:74.880000px;}
.fs11_c01143{font-size:77.760000px;}
.y0_c01143{bottom:0.000000px;}
.y95_c01143{bottom:39.600000px;}
.y93_c01143{bottom:41.760000px;}
.y92_c01143{bottom:42.480000px;}
.y94_c01143{bottom:43.200000px;}
.y91_c01143{bottom:48.960000px;}
.y90_c01143{bottom:83.520000px;}
.y8f_c01143{bottom:84.240000px;}
.y8d_c01143{bottom:86.400000px;}
.y8b_c01143{bottom:87.120000px;}
.y8e_c01143{bottom:88.560000px;}
.y8c_c01143{bottom:90.000000px;}
.y8a_c01143{bottom:91.440000px;}
.y89_c01143{bottom:127.440000px;}
.y85_c01143{bottom:128.880000px;}
.y87_c01143{bottom:129.600000px;}
.y88_c01143{bottom:130.320000px;}
.y86_c01143{bottom:131.040000px;}
.y84_c01143{bottom:133.920000px;}
.y82_c01143{bottom:169.920000px;}
.y83_c01143{bottom:170.640000px;}
.y7f_c01143{bottom:171.360000px;}
.y81_c01143{bottom:172.800000px;}
.y80_c01143{bottom:173.520000px;}
.y7e_c01143{bottom:175.680000px;}
.y7d_c01143{bottom:213.120000px;}
.y7c_c01143{bottom:214.560000px;}
.y7a_c01143{bottom:215.280000px;}
.y7b_c01143{bottom:217.440000px;}
.y79_c01143{bottom:218.880000px;}
.y78_c01143{bottom:257.040000px;}
.y74_c01143{bottom:257.760000px;}
.y77_c01143{bottom:258.480000px;}
.y76_c01143{bottom:259.200000px;}
.y75_c01143{bottom:259.920000px;}
.y73_c01143{bottom:260.640000px;}
.y72_c01143{bottom:262.080000px;}
.y71_c01143{bottom:299.520000px;}
.y6e_c01143{bottom:300.960000px;}
.y70_c01143{bottom:301.680000px;}
.y6f_c01143{bottom:302.400000px;}
.y6d_c01143{bottom:304.560000px;}
.y6a_c01143{bottom:342.000000px;}
.y68_c01143{bottom:342.720000px;}
.y6c_c01143{bottom:344.160000px;}
.y6b_c01143{bottom:344.880000px;}
.y67_c01143{bottom:345.600000px;}
.y69_c01143{bottom:346.320000px;}
.y66_c01143{bottom:384.480000px;}
.y64_c01143{bottom:385.920000px;}
.y65_c01143{bottom:388.080000px;}
.y63_c01143{bottom:388.800000px;}
.y62_c01143{bottom:426.960000px;}
.y60_c01143{bottom:428.400000px;}
.y5f_c01143{bottom:430.560000px;}
.y61_c01143{bottom:431.280000px;}
.y5a_c01143{bottom:470.160000px;}
.y5d_c01143{bottom:471.600000px;}
.y5c_c01143{bottom:472.320000px;}
.y59_c01143{bottom:473.040000px;}
.y5e_c01143{bottom:473.760000px;}
.y5b_c01143{bottom:474.480000px;}
.y55_c01143{bottom:513.360000px;}
.y57_c01143{bottom:514.800000px;}
.y54_c01143{bottom:516.240000px;}
.y56_c01143{bottom:516.960000px;}
.y58_c01143{bottom:517.680000px;}
.y50_c01143{bottom:556.560000px;}
.y53_c01143{bottom:557.280000px;}
.y4f_c01143{bottom:558.000000px;}
.y51_c01143{bottom:560.160000px;}
.y52_c01143{bottom:560.880000px;}
.y4b_c01143{bottom:599.040000px;}
.y4a_c01143{bottom:600.480000px;}
.y4e_c01143{bottom:601.200000px;}
.y4c_c01143{bottom:601.920000px;}
.y4d_c01143{bottom:603.360000px;}
.y43_c01143{bottom:641.520000px;}
.y44_c01143{bottom:642.240000px;}
.y46_c01143{bottom:642.960000px;}
.y42_c01143{bottom:643.680000px;}
.y47_c01143{bottom:645.120000px;}
.y45_c01143{bottom:645.840000px;}
.y48_c01143{bottom:646.560000px;}
.y49_c01143{bottom:647.280000px;}
.y3c_c01143{bottom:684.000000px;}
.y3f_c01143{bottom:684.720000px;}
.y3b_c01143{bottom:686.160000px;}
.y3d_c01143{bottom:687.600000px;}
.y3e_c01143{bottom:688.320000px;}
.y40_c01143{bottom:689.040000px;}
.y41_c01143{bottom:689.760000px;}
.y36_c01143{bottom:726.480000px;}
.y37_c01143{bottom:727.920000px;}
.y35_c01143{bottom:728.640000px;}
.y38_c01143{bottom:730.080000px;}
.y39_c01143{bottom:730.800000px;}
.y3a_c01143{bottom:731.520000px;}
.y2e_c01143{bottom:768.960000px;}
.y30_c01143{bottom:770.400000px;}
.y2d_c01143{bottom:771.120000px;}
.y31_c01143{bottom:773.280000px;}
.y2f_c01143{bottom:774.000000px;}
.y32_c01143{bottom:774.720000px;}
.y34_c01143{bottom:775.440000px;}
.y33_c01143{bottom:776.160000px;}
.y27_c01143{bottom:812.160000px;}
.y26_c01143{bottom:813.600000px;}
.y2a_c01143{bottom:816.480000px;}
.y2c_c01143{bottom:817.920000px;}
.y28_c01143{bottom:818.640000px;}
.y29_c01143{bottom:819.360000px;}
.y2b_c01143{bottom:825.840000px;}
.y1f_c01143{bottom:854.640000px;}
.y1e_c01143{bottom:856.080000px;}
.y21_c01143{bottom:856.800000px;}
.y20_c01143{bottom:858.960000px;}
.y23_c01143{bottom:859.680000px;}
.y25_c01143{bottom:860.400000px;}
.y22_c01143{bottom:861.120000px;}
.y24_c01143{bottom:861.840000px;}
.y18_c01143{bottom:897.840000px;}
.y19_c01143{bottom:900.720000px;}
.y1a_c01143{bottom:902.160000px;}
.y1d_c01143{bottom:902.880000px;}
.y1b_c01143{bottom:905.040000px;}
.y1c_c01143{bottom:912.240000px;}
.y12_c01143{bottom:940.320000px;}
.y13_c01143{bottom:942.480000px;}
.y14_c01143{bottom:944.640000px;}
.y16_c01143{bottom:945.360000px;}
.y17_c01143{bottom:946.080000px;}
.y15_c01143{bottom:947.520000px;}
.ye_c01143{bottom:982.080000px;}
.yc_c01143{bottom:982.800000px;}
.yd_c01143{bottom:984.960000px;}
.yf_c01143{bottom:987.840000px;}
.y10_c01143{bottom:989.280000px;}
.y11_c01143{bottom:990.720000px;}
.y5_c01143{bottom:1025.280000px;}
.y6_c01143{bottom:1028.160000px;}
.y7_c01143{bottom:1030.320000px;}
.y8_c01143{bottom:1031.040000px;}
.y9_c01143{bottom:1031.760000px;}
.ya_c01143{bottom:1032.480000px;}
.yb_c01143{bottom:1033.920000px;}
.y1_c01143{bottom:1107.360000px;}
.y4_c01143{bottom:1108.080000px;}
.y2_c01143{bottom:1116.720000px;}
.y3_c01143{bottom:1119.600000px;}
.hf_c01143{height:15.550313px;}
.h4_c01143{height:18.142031px;}
.hd_c01143{height:23.325469px;}
.h6_c01143{height:25.917187px;}
.h5_c01143{height:31.100625px;}
.h3_c01143{height:33.692344px;}
.h10_c01143{height:38.875781px;}
.he_c01143{height:41.467500px;}
.h8_c01143{height:44.059219px;}
.h7_c01143{height:46.650937px;}
.hb_c01143{height:49.242656px;}
.ha_c01143{height:51.834375px;}
.h9_c01143{height:54.426094px;}
.h11_c01143{height:59.609531px;}
.hc_c01143{height:62.201250px;}
.h2_c01143{height:64.792969px;}
.h12_c01143{height:67.384687px;}
.h13_c01143{height:69.976406px;}
.h1_c01143{height:1149.000000px;}
.h0_c01143{height:1149.120000px;}
.w1_c01143{width:783.750000px;}
.w0_c01143{width:784.080000px;}
.x0_c01143{left:0.000000px;}
.x6_c01143{left:72.720000px;}
.x26_c01143{left:74.880000px;}
.x2f_c01143{left:96.480000px;}
.x7_c01143{left:144.720000px;}
.x1a_c01143{left:146.880000px;}
.x31_c01143{left:148.320000px;}
.x8_c01143{left:187.920000px;}
.x1f_c01143{left:190.080000px;}
.x15_c01143{left:232.560000px;}
.x28_c01143{left:244.080000px;}
.x34_c01143{left:245.520000px;}
.x2c_c01143{left:254.880000px;}
.x1b_c01143{left:275.040000px;}
.x23_c01143{left:285.840000px;}
.x20_c01143{left:287.280000px;}
.x2d_c01143{left:298.080000px;}
.x35_c01143{left:300.240000px;}
.x36_c01143{left:308.880000px;}
.xe_c01143{left:316.080000px;}
.x24_c01143{left:328.320000px;}
.x16_c01143{left:360.720000px;}
.xf_c01143{left:370.800000px;}
.x29_c01143{left:372.960000px;}
.x21_c01143{left:382.320000px;}
.x37_c01143{left:395.280000px;}
.x1c_c01143{left:404.640000px;}
.x17_c01143{left:414.000000px;}
.x2a_c01143{left:415.440000px;}
.x1d_c01143{left:447.120000px;}
.x38_c01143{left:449.280000px;}
.x18_c01143{left:457.920000px;}
.x9_c01143{left:544.320000px;}
.x25_c01143{left:546.480000px;}
.x2b_c01143{left:547.920000px;}
.x10_c01143{left:556.560000px;}
.x39_c01143{left:559.440000px;}
.x11_c01143{left:577.440000px;}
.x12_c01143{left:578.880000px;}
.x2e_c01143{left:580.320000px;}
.x13_c01143{left:599.760000px;}
.xa_c01143{left:632.880000px;}
.x22_c01143{left:634.320000px;}
.x32_c01143{left:635.760000px;}
.xb_c01143{left:665.280000px;}
.x19_c01143{left:666.720000px;}
.x30_c01143{left:668.160000px;}
.x1_c01143{left:672.480000px;}
.x4_c01143{left:691.200000px;}
.x2_c01143{left:692.640000px;}
.x27_c01143{left:700.560000px;}
.x33_c01143{left:702.000000px;}
.x5_c01143{left:708.480000px;}
.xd_c01143{left:709.920000px;}
.x14_c01143{left:711.360000px;}
.x3_c01143{left:712.800000px;}
.xc_c01143{left:729.360000px;}
.x1e_c01143{left:730.800000px;}
@media print{
.v2_c01143{vertical-align:-5.120000pt;}
.v1_c01143{vertical-align:-2.560000pt;}
.v0_c01143{vertical-align:0.000000pt;}
.ls0_c01143{letter-spacing:0.000000pt;}
.ws3_c01143{word-spacing:-0.950187pt;}
.ws5_c01143{word-spacing:0.000000pt;}
.ws0_c01143{word-spacing:1.881813pt;}
.ws1_c01143{word-spacing:15.182636pt;}
.ws2_c01143{word-spacing:15.906488pt;}
.ws4_c01143{word-spacing:62.286933pt;}
.fsd_c01143{font-size:15.360000pt;}
.fs2_c01143{font-size:17.920000pt;}
.fsb_c01143{font-size:23.040000pt;}
.fs4_c01143{font-size:25.600000pt;}
.fs3_c01143{font-size:30.720000pt;}
.fs1_c01143{font-size:33.280000pt;}
.fse_c01143{font-size:38.400000pt;}
.fsc_c01143{font-size:40.960000pt;}
.fs6_c01143{font-size:43.520000pt;}
.fs5_c01143{font-size:46.080000pt;}
.fs9_c01143{font-size:48.640000pt;}
.fs8_c01143{font-size:51.200000pt;}
.fs7_c01143{font-size:53.760000pt;}
.fsf_c01143{font-size:58.880000pt;}
.fsa_c01143{font-size:61.440000pt;}
.fs0_c01143{font-size:64.000000pt;}
.fs10_c01143{font-size:66.560000pt;}
.fs11_c01143{font-size:69.120000pt;}
.y0_c01143{bottom:0.000000pt;}
.y95_c01143{bottom:35.200000pt;}
.y93_c01143{bottom:37.120000pt;}
.y92_c01143{bottom:37.760000pt;}
.y94_c01143{bottom:38.400000pt;}
.y91_c01143{bottom:43.520000pt;}
.y90_c01143{bottom:74.240000pt;}
.y8f_c01143{bottom:74.880000pt;}
.y8d_c01143{bottom:76.800000pt;}
.y8b_c01143{bottom:77.440000pt;}
.y8e_c01143{bottom:78.720000pt;}
.y8c_c01143{bottom:80.000000pt;}
.y8a_c01143{bottom:81.280000pt;}
.y89_c01143{bottom:113.280000pt;}
.y85_c01143{bottom:114.560000pt;}
.y87_c01143{bottom:115.200000pt;}
.y88_c01143{bottom:115.840000pt;}
.y86_c01143{bottom:116.480000pt;}
.y84_c01143{bottom:119.040000pt;}
.y82_c01143{bottom:151.040000pt;}
.y83_c01143{bottom:151.680000pt;}
.y7f_c01143{bottom:152.320000pt;}
.y81_c01143{bottom:153.600000pt;}
.y80_c01143{bottom:154.240000pt;}
.y7e_c01143{bottom:156.160000pt;}
.y7d_c01143{bottom:189.440000pt;}
.y7c_c01143{bottom:190.720000pt;}
.y7a_c01143{bottom:191.360000pt;}
.y7b_c01143{bottom:193.280000pt;}
.y79_c01143{bottom:194.560000pt;}
.y78_c01143{bottom:228.480000pt;}
.y74_c01143{bottom:229.120000pt;}
.y77_c01143{bottom:229.760000pt;}
.y76_c01143{bottom:230.400000pt;}
.y75_c01143{bottom:231.040000pt;}
.y73_c01143{bottom:231.680000pt;}
.y72_c01143{bottom:232.960000pt;}
.y71_c01143{bottom:266.240000pt;}
.y6e_c01143{bottom:267.520000pt;}
.y70_c01143{bottom:268.160000pt;}
.y6f_c01143{bottom:268.800000pt;}
.y6d_c01143{bottom:270.720000pt;}
.y6a_c01143{bottom:304.000000pt;}
.y68_c01143{bottom:304.640000pt;}
.y6c_c01143{bottom:305.920000pt;}
.y6b_c01143{bottom:306.560000pt;}
.y67_c01143{bottom:307.200000pt;}
.y69_c01143{bottom:307.840000pt;}
.y66_c01143{bottom:341.760000pt;}
.y64_c01143{bottom:343.040000pt;}
.y65_c01143{bottom:344.960000pt;}
.y63_c01143{bottom:345.600000pt;}
.y62_c01143{bottom:379.520000pt;}
.y60_c01143{bottom:380.800000pt;}
.y5f_c01143{bottom:382.720000pt;}
.y61_c01143{bottom:383.360000pt;}
.y5a_c01143{bottom:417.920000pt;}
.y5d_c01143{bottom:419.200000pt;}
.y5c_c01143{bottom:419.840000pt;}
.y59_c01143{bottom:420.480000pt;}
.y5e_c01143{bottom:421.120000pt;}
.y5b_c01143{bottom:421.760000pt;}
.y55_c01143{bottom:456.320000pt;}
.y57_c01143{bottom:457.600000pt;}
.y54_c01143{bottom:458.880000pt;}
.y56_c01143{bottom:459.520000pt;}
.y58_c01143{bottom:460.160000pt;}
.y50_c01143{bottom:494.720000pt;}
.y53_c01143{bottom:495.360000pt;}
.y4f_c01143{bottom:496.000000pt;}
.y51_c01143{bottom:497.920000pt;}
.y52_c01143{bottom:498.560000pt;}
.y4b_c01143{bottom:532.480000pt;}
.y4a_c01143{bottom:533.760000pt;}
.y4e_c01143{bottom:534.400000pt;}
.y4c_c01143{bottom:535.040000pt;}
.y4d_c01143{bottom:536.320000pt;}
.y43_c01143{bottom:570.240000pt;}
.y44_c01143{bottom:570.880000pt;}
.y46_c01143{bottom:571.520000pt;}
.y42_c01143{bottom:572.160000pt;}
.y47_c01143{bottom:573.440000pt;}
.y45_c01143{bottom:574.080000pt;}
.y48_c01143{bottom:574.720000pt;}
.y49_c01143{bottom:575.360000pt;}
.y3c_c01143{bottom:608.000000pt;}
.y3f_c01143{bottom:608.640000pt;}
.y3b_c01143{bottom:609.920000pt;}
.y3d_c01143{bottom:611.200000pt;}
.y3e_c01143{bottom:611.840000pt;}
.y40_c01143{bottom:612.480000pt;}
.y41_c01143{bottom:613.120000pt;}
.y36_c01143{bottom:645.760000pt;}
.y37_c01143{bottom:647.040000pt;}
.y35_c01143{bottom:647.680000pt;}
.y38_c01143{bottom:648.960000pt;}
.y39_c01143{bottom:649.600000pt;}
.y3a_c01143{bottom:650.240000pt;}
.y2e_c01143{bottom:683.520000pt;}
.y30_c01143{bottom:684.800000pt;}
.y2d_c01143{bottom:685.440000pt;}
.y31_c01143{bottom:687.360000pt;}
.y2f_c01143{bottom:688.000000pt;}
.y32_c01143{bottom:688.640000pt;}
.y34_c01143{bottom:689.280000pt;}
.y33_c01143{bottom:689.920000pt;}
.y27_c01143{bottom:721.920000pt;}
.y26_c01143{bottom:723.200000pt;}
.y2a_c01143{bottom:725.760000pt;}
.y2c_c01143{bottom:727.040000pt;}
.y28_c01143{bottom:727.680000pt;}
.y29_c01143{bottom:728.320000pt;}
.y2b_c01143{bottom:734.080000pt;}
.y1f_c01143{bottom:759.680000pt;}
.y1e_c01143{bottom:760.960000pt;}
.y21_c01143{bottom:761.600000pt;}
.y20_c01143{bottom:763.520000pt;}
.y23_c01143{bottom:764.160000pt;}
.y25_c01143{bottom:764.800000pt;}
.y22_c01143{bottom:765.440000pt;}
.y24_c01143{bottom:766.080000pt;}
.y18_c01143{bottom:798.080000pt;}
.y19_c01143{bottom:800.640000pt;}
.y1a_c01143{bottom:801.920000pt;}
.y1d_c01143{bottom:802.560000pt;}
.y1b_c01143{bottom:804.480000pt;}
.y1c_c01143{bottom:810.880000pt;}
.y12_c01143{bottom:835.840000pt;}
.y13_c01143{bottom:837.760000pt;}
.y14_c01143{bottom:839.680000pt;}
.y16_c01143{bottom:840.320000pt;}
.y17_c01143{bottom:840.960000pt;}
.y15_c01143{bottom:842.240000pt;}
.ye_c01143{bottom:872.960000pt;}
.yc_c01143{bottom:873.600000pt;}
.yd_c01143{bottom:875.520000pt;}
.yf_c01143{bottom:878.080000pt;}
.y10_c01143{bottom:879.360000pt;}
.y11_c01143{bottom:880.640000pt;}
.y5_c01143{bottom:911.360000pt;}
.y6_c01143{bottom:913.920000pt;}
.y7_c01143{bottom:915.840000pt;}
.y8_c01143{bottom:916.480000pt;}
.y9_c01143{bottom:917.120000pt;}
.ya_c01143{bottom:917.760000pt;}
.yb_c01143{bottom:919.040000pt;}
.y1_c01143{bottom:984.320000pt;}
.y4_c01143{bottom:984.960000pt;}
.y2_c01143{bottom:992.640000pt;}
.y3_c01143{bottom:995.200000pt;}
.hf_c01143{height:13.822500pt;}
.h4_c01143{height:16.126250pt;}
.hd_c01143{height:20.733750pt;}
.h6_c01143{height:23.037500pt;}
.h5_c01143{height:27.645000pt;}
.h3_c01143{height:29.948750pt;}
.h10_c01143{height:34.556250pt;}
.he_c01143{height:36.860000pt;}
.h8_c01143{height:39.163750pt;}
.h7_c01143{height:41.467500pt;}
.hb_c01143{height:43.771250pt;}
.ha_c01143{height:46.075000pt;}
.h9_c01143{height:48.378750pt;}
.h11_c01143{height:52.986250pt;}
.hc_c01143{height:55.290000pt;}
.h2_c01143{height:57.593750pt;}
.h12_c01143{height:59.897500pt;}
.h13_c01143{height:62.201250pt;}
.h1_c01143{height:1021.333333pt;}
.h0_c01143{height:1021.440000pt;}
.w1_c01143{width:696.666667pt;}
.w0_c01143{width:696.960000pt;}
.x0_c01143{left:0.000000pt;}
.x6_c01143{left:64.640000pt;}
.x26_c01143{left:66.560000pt;}
.x2f_c01143{left:85.760000pt;}
.x7_c01143{left:128.640000pt;}
.x1a_c01143{left:130.560000pt;}
.x31_c01143{left:131.840000pt;}
.x8_c01143{left:167.040000pt;}
.x1f_c01143{left:168.960000pt;}
.x15_c01143{left:206.720000pt;}
.x28_c01143{left:216.960000pt;}
.x34_c01143{left:218.240000pt;}
.x2c_c01143{left:226.560000pt;}
.x1b_c01143{left:244.480000pt;}
.x23_c01143{left:254.080000pt;}
.x20_c01143{left:255.360000pt;}
.x2d_c01143{left:264.960000pt;}
.x35_c01143{left:266.880000pt;}
.x36_c01143{left:274.560000pt;}
.xe_c01143{left:280.960000pt;}
.x24_c01143{left:291.840000pt;}
.x16_c01143{left:320.640000pt;}
.xf_c01143{left:329.600000pt;}
.x29_c01143{left:331.520000pt;}
.x21_c01143{left:339.840000pt;}
.x37_c01143{left:351.360000pt;}
.x1c_c01143{left:359.680000pt;}
.x17_c01143{left:368.000000pt;}
.x2a_c01143{left:369.280000pt;}
.x1d_c01143{left:397.440000pt;}
.x38_c01143{left:399.360000pt;}
.x18_c01143{left:407.040000pt;}
.x9_c01143{left:483.840000pt;}
.x25_c01143{left:485.760000pt;}
.x2b_c01143{left:487.040000pt;}
.x10_c01143{left:494.720000pt;}
.x39_c01143{left:497.280000pt;}
.x11_c01143{left:513.280000pt;}
.x12_c01143{left:514.560000pt;}
.x2e_c01143{left:515.840000pt;}
.x13_c01143{left:533.120000pt;}
.xa_c01143{left:562.560000pt;}
.x22_c01143{left:563.840000pt;}
.x32_c01143{left:565.120000pt;}
.xb_c01143{left:591.360000pt;}
.x19_c01143{left:592.640000pt;}
.x30_c01143{left:593.920000pt;}
.x1_c01143{left:597.760000pt;}
.x4_c01143{left:614.400000pt;}
.x2_c01143{left:615.680000pt;}
.x27_c01143{left:622.720000pt;}
.x33_c01143{left:624.000000pt;}
.x5_c01143{left:629.760000pt;}
.xd_c01143{left:631.040000pt;}
.x14_c01143{left:632.320000pt;}
.x3_c01143{left:633.600000pt;}
.xc_c01143{left:648.320000pt;}
.x1e_c01143{left:649.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_65cee7a0296bc0b47cfad77c.woff2')format("woff");}.ff1_c01144{font-family:ff1_c01144;line-height:1.109863;font-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_c01144{transform:matrix(0.163500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01144{transform:matrix(0.189175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189175,0.000000,0.000000,0.250000,0,0);}
.m4e_c01144{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m42_c01144{transform:matrix(0.230700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230700,0.000000,0.000000,0.250000,0,0);}
.m2c_c01144{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m3e_c01144{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m11_c01144{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m2b_c01144{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m2f_c01144{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m43_c01144{transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);}
.m13_c01144{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mf_c01144{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.md_c01144{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_c01144{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_c01144{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01144{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m5_c01144{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m15_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);}
.m22_c01144{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2_c01144{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mb_c01144{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);}
.m47_c01144{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_c01144{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01144{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m46_c01144{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m27_c01144{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1_c01144{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m20_c01144{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m18_c01144{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m23_c01144{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m29_c01144{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01144{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m10_c01144{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m17_c01144{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01144{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01144{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m9_c01144{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);}
.m38_c01144{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m25_c01144{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m14_c01144{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);}
.m40_c01144{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m4_c01144{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);}
.m36_c01144{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m0_c01144{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.mc_c01144{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m53_c01144{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m41_c01144{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01144{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m3_c01144{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);}
.m3c_c01144{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_c01144{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.ma_c01144{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m52_c01144{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);}
.m4a_c01144{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);}
.m33_c01144{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m34_c01144{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m39_c01144{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m6_c01144{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m24_c01144{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);}
.m48_c01144{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);}
.m2e_c01144{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01144{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01144{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m49_c01144{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m56_c01144{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01144{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m55_c01144{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m12_c01144{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m45_c01144{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m30_c01144{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);}
.m3b_c01144{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m50_c01144{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m37_c01144{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);}
.m31_c01144{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01144{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m35_c01144{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);}
.m21_c01144{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m16_c01144{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m26_c01144{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01144{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.me_c01144{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m32_c01144{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m51_c01144{transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);}
.m44_c01144{transform:matrix(0.672500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672500,0.000000,0.000000,0.250000,0,0);}
.m28_c01144{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.m4f_c01144{transform:matrix(1.032500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.032500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.032500,0.000000,0.000000,0.250000,0,0);}
.m54_c01144{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.v2_c01144{vertical-align:-5.760000px;}
.v3_c01144{vertical-align:-2.880000px;}
.v0_c01144{vertical-align:0.000000px;}
.v1_c01144{vertical-align:2.880000px;}
.ls0_c01144{letter-spacing:0.000000px;}
.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;}
}
.ws3_c01144{word-spacing:-0.979200px;}
.ws4_c01144{word-spacing:-0.555600px;}
.ws5_c01144{word-spacing:0.000000px;}
.ws2_c01144{word-spacing:3.230880px;}
.ws0_c01144{word-spacing:10.749600px;}
.ws1_c01144{word-spacing:11.856000px;}
.fc0_c01144{color:transparent;}
.fs16_c01144{font-size:11.520000px;}
.fs11_c01144{font-size:14.400000px;}
.fs12_c01144{font-size:17.280000px;}
.fs14_c01144{font-size:20.160000px;}
.fsf_c01144{font-size:28.800000px;}
.fsb_c01144{font-size:31.680000px;}
.fsa_c01144{font-size:34.560000px;}
.fs15_c01144{font-size:37.440000px;}
.fs13_c01144{font-size:43.200000px;}
.fs4_c01144{font-size:46.080000px;}
.fs5_c01144{font-size:48.960000px;}
.fs3_c01144{font-size:51.840000px;}
.fs7_c01144{font-size:54.720000px;}
.fs8_c01144{font-size:57.600000px;}
.fs0_c01144{font-size:60.480000px;}
.fs9_c01144{font-size:63.360000px;}
.fsd_c01144{font-size:66.240000px;}
.fsc_c01144{font-size:69.120000px;}
.fs1_c01144{font-size:72.000000px;}
.fs6_c01144{font-size:74.880000px;}
.fs2_c01144{font-size:77.760000px;}
.fs10_c01144{font-size:95.040000px;}
.fse_c01144{font-size:118.080000px;}
.y0_c01144{bottom:0.000000px;}
.y91_c01144{bottom:50.400000px;}
.y92_c01144{bottom:51.120000px;}
.y90_c01144{bottom:52.560000px;}
.y8f_c01144{bottom:54.720000px;}
.y8b_c01144{bottom:65.520000px;}
.y8a_c01144{bottom:66.960000px;}
.y88_c01144{bottom:69.120000px;}
.y89_c01144{bottom:72.000000px;}
.y8e_c01144{bottom:73.440000px;}
.y8c_c01144{bottom:75.600000px;}
.y8d_c01144{bottom:76.320000px;}
.y83_c01144{bottom:84.240000px;}
.y84_c01144{bottom:84.960000px;}
.y85_c01144{bottom:85.680000px;}
.y82_c01144{bottom:86.400000px;}
.y86_c01144{bottom:94.320000px;}
.y87_c01144{bottom:95.040000px;}
.y81_c01144{bottom:114.480000px;}
.y80_c01144{bottom:115.920000px;}
.y7e_c01144{bottom:116.640000px;}
.y7b_c01144{bottom:118.800000px;}
.y7d_c01144{bottom:119.520000px;}
.y7c_c01144{bottom:120.240000px;}
.y7f_c01144{bottom:121.680000px;}
.y75_c01144{bottom:131.760000px;}
.y74_c01144{bottom:136.800000px;}
.y7a_c01144{bottom:139.680000px;}
.y79_c01144{bottom:140.400000px;}
.y78_c01144{bottom:141.120000px;}
.y77_c01144{bottom:141.840000px;}
.y76_c01144{bottom:142.560000px;}
.y73_c01144{bottom:178.560000px;}
.y71_c01144{bottom:180.720000px;}
.y72_c01144{bottom:181.440000px;}
.y70_c01144{bottom:182.160000px;}
.y6f_c01144{bottom:184.320000px;}
.y6d_c01144{bottom:224.640000px;}
.y6c_c01144{bottom:225.360000px;}
.y6e_c01144{bottom:227.520000px;}
.y6b_c01144{bottom:253.440000px;}
.y68_c01144{bottom:254.160000px;}
.y6a_c01144{bottom:254.880000px;}
.y69_c01144{bottom:255.600000px;}
.y65_c01144{bottom:256.320000px;}
.y66_c01144{bottom:257.760000px;}
.y67_c01144{bottom:258.480000px;}
.y64_c01144{bottom:259.200000px;}
.y60_c01144{bottom:289.440000px;}
.y63_c01144{bottom:290.160000px;}
.y62_c01144{bottom:297.360000px;}
.y5f_c01144{bottom:298.080000px;}
.y5e_c01144{bottom:298.800000px;}
.y61_c01144{bottom:299.520000px;}
.y5d_c01144{bottom:300.240000px;}
.y5c_c01144{bottom:300.960000px;}
.y58_c01144{bottom:332.640000px;}
.y5b_c01144{bottom:333.360000px;}
.y5a_c01144{bottom:340.560000px;}
.y57_c01144{bottom:341.280000px;}
.y59_c01144{bottom:342.000000px;}
.y56_c01144{bottom:342.720000px;}
.y55_c01144{bottom:344.880000px;}
.y53_c01144{bottom:383.760000px;}
.y54_c01144{bottom:384.480000px;}
.y51_c01144{bottom:385.920000px;}
.y52_c01144{bottom:387.360000px;}
.y50_c01144{bottom:388.080000px;}
.y4d_c01144{bottom:426.960000px;}
.y4f_c01144{bottom:427.680000px;}
.y4c_c01144{bottom:428.400000px;}
.y4e_c01144{bottom:429.840000px;}
.y4b_c01144{bottom:430.560000px;}
.y49_c01144{bottom:470.160000px;}
.y47_c01144{bottom:470.880000px;}
.y4a_c01144{bottom:471.600000px;}
.y46_c01144{bottom:472.320000px;}
.y48_c01144{bottom:473.040000px;}
.y45_c01144{bottom:473.760000px;}
.y44_c01144{bottom:512.640000px;}
.y43_c01144{bottom:513.360000px;}
.y42_c01144{bottom:514.080000px;}
.y41_c01144{bottom:516.240000px;}
.y3e_c01144{bottom:556.560000px;}
.y3d_c01144{bottom:558.000000px;}
.y40_c01144{bottom:558.720000px;}
.y3f_c01144{bottom:559.440000px;}
.y3a_c01144{bottom:599.040000px;}
.y3c_c01144{bottom:599.760000px;}
.y39_c01144{bottom:601.200000px;}
.y3b_c01144{bottom:602.640000px;}
.y35_c01144{bottom:642.240000px;}
.y37_c01144{bottom:642.960000px;}
.y36_c01144{bottom:644.400000px;}
.y38_c01144{bottom:645.120000px;}
.y31_c01144{bottom:671.760000px;}
.y2f_c01144{bottom:683.280000px;}
.y2e_c01144{bottom:684.720000px;}
.y33_c01144{bottom:685.440000px;}
.y30_c01144{bottom:686.160000px;}
.y32_c01144{bottom:687.600000px;}
.y34_c01144{bottom:691.200000px;}
.y29_c01144{bottom:725.760000px;}
.y28_c01144{bottom:727.200000px;}
.y2a_c01144{bottom:727.920000px;}
.y2c_c01144{bottom:728.640000px;}
.y2d_c01144{bottom:730.080000px;}
.y2b_c01144{bottom:730.800000px;}
.y27_c01144{bottom:768.960000px;}
.y25_c01144{bottom:771.840000px;}
.y26_c01144{bottom:772.560000px;}
.y1e_c01144{bottom:800.640000px;}
.y1d_c01144{bottom:802.080000px;}
.y21_c01144{bottom:802.800000px;}
.y22_c01144{bottom:803.520000px;}
.y1f_c01144{bottom:804.240000px;}
.y20_c01144{bottom:804.960000px;}
.y23_c01144{bottom:806.400000px;}
.y24_c01144{bottom:809.280000px;}
.y18_c01144{bottom:843.120000px;}
.y1b_c01144{bottom:844.560000px;}
.y1c_c01144{bottom:845.280000px;}
.y19_c01144{bottom:846.720000px;}
.y1a_c01144{bottom:848.160000px;}
.y12_c01144{bottom:875.520000px;}
.y11_c01144{bottom:876.240000px;}
.y14_c01144{bottom:877.680000px;}
.y15_c01144{bottom:879.120000px;}
.y13_c01144{bottom:879.840000px;}
.y16_c01144{bottom:880.560000px;}
.y17_c01144{bottom:882.000000px;}
.y10_c01144{bottom:919.440000px;}
.yc_c01144{bottom:949.680000px;}
.yb_c01144{bottom:951.120000px;}
.ye_c01144{bottom:951.840000px;}
.yf_c01144{bottom:954.720000px;}
.yd_c01144{bottom:955.440000px;}
.ya_c01144{bottom:993.600000px;}
.y9_c01144{bottom:995.760000px;}
.y1_c01144{bottom:1025.280000px;}
.y2_c01144{bottom:1026.000000px;}
.y3_c01144{bottom:1026.720000px;}
.y4_c01144{bottom:1028.880000px;}
.y5_c01144{bottom:1031.040000px;}
.y6_c01144{bottom:1033.200000px;}
.y8_c01144{bottom:1033.920000px;}
.y7_c01144{bottom:1034.640000px;}
.h1c_c01144{height:10.366875px;}
.h16_c01144{height:12.958594px;}
.h17_c01144{height:15.550313px;}
.h1a_c01144{height:18.142031px;}
.h13_c01144{height:25.917187px;}
.he_c01144{height:28.508906px;}
.hd_c01144{height:31.100625px;}
.h1b_c01144{height:33.692344px;}
.h19_c01144{height:38.875781px;}
.h6_c01144{height:41.467500px;}
.h7_c01144{height:44.059219px;}
.h5_c01144{height:46.650937px;}
.h9_c01144{height:49.242656px;}
.hb_c01144{height:51.834375px;}
.ha_c01144{height:52.122656px;}
.h14_c01144{height:53.849531px;}
.h2_c01144{height:54.426094px;}
.h11_c01144{height:54.714375px;}
.hc_c01144{height:57.017812px;}
.h18_c01144{height:59.321250px;}
.h10_c01144{height:59.609531px;}
.hf_c01144{height:62.201250px;}
.h3_c01144{height:64.792969px;}
.h8_c01144{height:67.384687px;}
.h4_c01144{height:69.976406px;}
.h15_c01144{height:85.526719px;}
.h12_c01144{height:106.260469px;}
.h1_c01144{height:1147.500000px;}
.h0_c01144{height:1147.680000px;}
.w0_c01144{width:781.920000px;}
.w1_c01144{width:782.250000px;}
.x0_c01144{left:0.000000px;}
.x1_c01144{left:73.440000px;}
.x2d_c01144{left:95.040000px;}
.x37_c01144{left:104.400000px;}
.x2_c01144{left:145.440000px;}
.xb_c01144{left:146.880000px;}
.x2e_c01144{left:166.320000px;}
.x38_c01144{left:168.480000px;}
.xc_c01144{left:188.640000px;}
.x10_c01144{left:199.440000px;}
.x2a_c01144{left:210.240000px;}
.x21_c01144{left:231.120000px;}
.x1d_c01144{left:232.560000px;}
.x18_c01144{left:241.920000px;}
.x2c_c01144{left:253.440000px;}
.x3_c01144{left:261.360000px;}
.x2b_c01144{left:264.240000px;}
.x14_c01144{left:285.120000px;}
.x25_c01144{left:295.200000px;}
.x11_c01144{left:296.640000px;}
.x15_c01144{left:313.200000px;}
.x16_c01144{left:315.360000px;}
.xd_c01144{left:317.520000px;}
.x1e_c01144{left:327.600000px;}
.x12_c01144{left:338.400000px;}
.x30_c01144{left:339.840000px;}
.x22_c01144{left:349.920000px;}
.x1f_c01144{left:360.720000px;}
.xe_c01144{left:371.520000px;}
.x33_c01144{left:383.040000px;}
.x29_c01144{left:393.120000px;}
.x20_c01144{left:403.920000px;}
.x4_c01144{left:421.920000px;}
.x26_c01144{left:435.600000px;}
.x17_c01144{left:437.040000px;}
.x27_c01144{left:446.400000px;}
.x5_c01144{left:457.200000px;}
.x2f_c01144{left:458.640000px;}
.x13_c01144{left:479.520000px;}
.x31_c01144{left:490.320000px;}
.x28_c01144{left:501.840000px;}
.x32_c01144{left:522.720000px;}
.x23_c01144{left:545.040000px;}
.x19_c01144{left:546.480000px;}
.x1a_c01144{left:555.120000px;}
.x6_c01144{left:557.280000px;}
.x7_c01144{left:578.160000px;}
.x34_c01144{left:589.680000px;}
.x35_c01144{left:619.920000px;}
.x1b_c01144{left:632.160000px;}
.x8_c01144{left:633.600000px;}
.x36_c01144{left:654.480000px;}
.x9_c01144{left:666.720000px;}
.x24_c01144{left:698.400000px;}
.xa_c01144{left:699.840000px;}
.xf_c01144{left:709.920000px;}
.x1c_c01144{left:730.080000px;}
@media print{
.v2_c01144{vertical-align:-5.120000pt;}
.v3_c01144{vertical-align:-2.560000pt;}
.v0_c01144{vertical-align:0.000000pt;}
.v1_c01144{vertical-align:2.560000pt;}
.ls0_c01144{letter-spacing:0.000000pt;}
.ws3_c01144{word-spacing:-0.870400pt;}
.ws4_c01144{word-spacing:-0.493867pt;}
.ws5_c01144{word-spacing:0.000000pt;}
.ws2_c01144{word-spacing:2.871893pt;}
.ws0_c01144{word-spacing:9.555200pt;}
.ws1_c01144{word-spacing:10.538667pt;}
.fs16_c01144{font-size:10.240000pt;}
.fs11_c01144{font-size:12.800000pt;}
.fs12_c01144{font-size:15.360000pt;}
.fs14_c01144{font-size:17.920000pt;}
.fsf_c01144{font-size:25.600000pt;}
.fsb_c01144{font-size:28.160000pt;}
.fsa_c01144{font-size:30.720000pt;}
.fs15_c01144{font-size:33.280000pt;}
.fs13_c01144{font-size:38.400000pt;}
.fs4_c01144{font-size:40.960000pt;}
.fs5_c01144{font-size:43.520000pt;}
.fs3_c01144{font-size:46.080000pt;}
.fs7_c01144{font-size:48.640000pt;}
.fs8_c01144{font-size:51.200000pt;}
.fs0_c01144{font-size:53.760000pt;}
.fs9_c01144{font-size:56.320000pt;}
.fsd_c01144{font-size:58.880000pt;}
.fsc_c01144{font-size:61.440000pt;}
.fs1_c01144{font-size:64.000000pt;}
.fs6_c01144{font-size:66.560000pt;}
.fs2_c01144{font-size:69.120000pt;}
.fs10_c01144{font-size:84.480000pt;}
.fse_c01144{font-size:104.960000pt;}
.y0_c01144{bottom:0.000000pt;}
.y91_c01144{bottom:44.800000pt;}
.y92_c01144{bottom:45.440000pt;}
.y90_c01144{bottom:46.720000pt;}
.y8f_c01144{bottom:48.640000pt;}
.y8b_c01144{bottom:58.240000pt;}
.y8a_c01144{bottom:59.520000pt;}
.y88_c01144{bottom:61.440000pt;}
.y89_c01144{bottom:64.000000pt;}
.y8e_c01144{bottom:65.280000pt;}
.y8c_c01144{bottom:67.200000pt;}
.y8d_c01144{bottom:67.840000pt;}
.y83_c01144{bottom:74.880000pt;}
.y84_c01144{bottom:75.520000pt;}
.y85_c01144{bottom:76.160000pt;}
.y82_c01144{bottom:76.800000pt;}
.y86_c01144{bottom:83.840000pt;}
.y87_c01144{bottom:84.480000pt;}
.y81_c01144{bottom:101.760000pt;}
.y80_c01144{bottom:103.040000pt;}
.y7e_c01144{bottom:103.680000pt;}
.y7b_c01144{bottom:105.600000pt;}
.y7d_c01144{bottom:106.240000pt;}
.y7c_c01144{bottom:106.880000pt;}
.y7f_c01144{bottom:108.160000pt;}
.y75_c01144{bottom:117.120000pt;}
.y74_c01144{bottom:121.600000pt;}
.y7a_c01144{bottom:124.160000pt;}
.y79_c01144{bottom:124.800000pt;}
.y78_c01144{bottom:125.440000pt;}
.y77_c01144{bottom:126.080000pt;}
.y76_c01144{bottom:126.720000pt;}
.y73_c01144{bottom:158.720000pt;}
.y71_c01144{bottom:160.640000pt;}
.y72_c01144{bottom:161.280000pt;}
.y70_c01144{bottom:161.920000pt;}
.y6f_c01144{bottom:163.840000pt;}
.y6d_c01144{bottom:199.680000pt;}
.y6c_c01144{bottom:200.320000pt;}
.y6e_c01144{bottom:202.240000pt;}
.y6b_c01144{bottom:225.280000pt;}
.y68_c01144{bottom:225.920000pt;}
.y6a_c01144{bottom:226.560000pt;}
.y69_c01144{bottom:227.200000pt;}
.y65_c01144{bottom:227.840000pt;}
.y66_c01144{bottom:229.120000pt;}
.y67_c01144{bottom:229.760000pt;}
.y64_c01144{bottom:230.400000pt;}
.y60_c01144{bottom:257.280000pt;}
.y63_c01144{bottom:257.920000pt;}
.y62_c01144{bottom:264.320000pt;}
.y5f_c01144{bottom:264.960000pt;}
.y5e_c01144{bottom:265.600000pt;}
.y61_c01144{bottom:266.240000pt;}
.y5d_c01144{bottom:266.880000pt;}
.y5c_c01144{bottom:267.520000pt;}
.y58_c01144{bottom:295.680000pt;}
.y5b_c01144{bottom:296.320000pt;}
.y5a_c01144{bottom:302.720000pt;}
.y57_c01144{bottom:303.360000pt;}
.y59_c01144{bottom:304.000000pt;}
.y56_c01144{bottom:304.640000pt;}
.y55_c01144{bottom:306.560000pt;}
.y53_c01144{bottom:341.120000pt;}
.y54_c01144{bottom:341.760000pt;}
.y51_c01144{bottom:343.040000pt;}
.y52_c01144{bottom:344.320000pt;}
.y50_c01144{bottom:344.960000pt;}
.y4d_c01144{bottom:379.520000pt;}
.y4f_c01144{bottom:380.160000pt;}
.y4c_c01144{bottom:380.800000pt;}
.y4e_c01144{bottom:382.080000pt;}
.y4b_c01144{bottom:382.720000pt;}
.y49_c01144{bottom:417.920000pt;}
.y47_c01144{bottom:418.560000pt;}
.y4a_c01144{bottom:419.200000pt;}
.y46_c01144{bottom:419.840000pt;}
.y48_c01144{bottom:420.480000pt;}
.y45_c01144{bottom:421.120000pt;}
.y44_c01144{bottom:455.680000pt;}
.y43_c01144{bottom:456.320000pt;}
.y42_c01144{bottom:456.960000pt;}
.y41_c01144{bottom:458.880000pt;}
.y3e_c01144{bottom:494.720000pt;}
.y3d_c01144{bottom:496.000000pt;}
.y40_c01144{bottom:496.640000pt;}
.y3f_c01144{bottom:497.280000pt;}
.y3a_c01144{bottom:532.480000pt;}
.y3c_c01144{bottom:533.120000pt;}
.y39_c01144{bottom:534.400000pt;}
.y3b_c01144{bottom:535.680000pt;}
.y35_c01144{bottom:570.880000pt;}
.y37_c01144{bottom:571.520000pt;}
.y36_c01144{bottom:572.800000pt;}
.y38_c01144{bottom:573.440000pt;}
.y31_c01144{bottom:597.120000pt;}
.y2f_c01144{bottom:607.360000pt;}
.y2e_c01144{bottom:608.640000pt;}
.y33_c01144{bottom:609.280000pt;}
.y30_c01144{bottom:609.920000pt;}
.y32_c01144{bottom:611.200000pt;}
.y34_c01144{bottom:614.400000pt;}
.y29_c01144{bottom:645.120000pt;}
.y28_c01144{bottom:646.400000pt;}
.y2a_c01144{bottom:647.040000pt;}
.y2c_c01144{bottom:647.680000pt;}
.y2d_c01144{bottom:648.960000pt;}
.y2b_c01144{bottom:649.600000pt;}
.y27_c01144{bottom:683.520000pt;}
.y25_c01144{bottom:686.080000pt;}
.y26_c01144{bottom:686.720000pt;}
.y1e_c01144{bottom:711.680000pt;}
.y1d_c01144{bottom:712.960000pt;}
.y21_c01144{bottom:713.600000pt;}
.y22_c01144{bottom:714.240000pt;}
.y1f_c01144{bottom:714.880000pt;}
.y20_c01144{bottom:715.520000pt;}
.y23_c01144{bottom:716.800000pt;}
.y24_c01144{bottom:719.360000pt;}
.y18_c01144{bottom:749.440000pt;}
.y1b_c01144{bottom:750.720000pt;}
.y1c_c01144{bottom:751.360000pt;}
.y19_c01144{bottom:752.640000pt;}
.y1a_c01144{bottom:753.920000pt;}
.y12_c01144{bottom:778.240000pt;}
.y11_c01144{bottom:778.880000pt;}
.y14_c01144{bottom:780.160000pt;}
.y15_c01144{bottom:781.440000pt;}
.y13_c01144{bottom:782.080000pt;}
.y16_c01144{bottom:782.720000pt;}
.y17_c01144{bottom:784.000000pt;}
.y10_c01144{bottom:817.280000pt;}
.yc_c01144{bottom:844.160000pt;}
.yb_c01144{bottom:845.440000pt;}
.ye_c01144{bottom:846.080000pt;}
.yf_c01144{bottom:848.640000pt;}
.yd_c01144{bottom:849.280000pt;}
.ya_c01144{bottom:883.200000pt;}
.y9_c01144{bottom:885.120000pt;}
.y1_c01144{bottom:911.360000pt;}
.y2_c01144{bottom:912.000000pt;}
.y3_c01144{bottom:912.640000pt;}
.y4_c01144{bottom:914.560000pt;}
.y5_c01144{bottom:916.480000pt;}
.y6_c01144{bottom:918.400000pt;}
.y8_c01144{bottom:919.040000pt;}
.y7_c01144{bottom:919.680000pt;}
.h1c_c01144{height:9.215000pt;}
.h16_c01144{height:11.518750pt;}
.h17_c01144{height:13.822500pt;}
.h1a_c01144{height:16.126250pt;}
.h13_c01144{height:23.037500pt;}
.he_c01144{height:25.341250pt;}
.hd_c01144{height:27.645000pt;}
.h1b_c01144{height:29.948750pt;}
.h19_c01144{height:34.556250pt;}
.h6_c01144{height:36.860000pt;}
.h7_c01144{height:39.163750pt;}
.h5_c01144{height:41.467500pt;}
.h9_c01144{height:43.771250pt;}
.hb_c01144{height:46.075000pt;}
.ha_c01144{height:46.331250pt;}
.h14_c01144{height:47.866250pt;}
.h2_c01144{height:48.378750pt;}
.h11_c01144{height:48.635000pt;}
.hc_c01144{height:50.682500pt;}
.h18_c01144{height:52.730000pt;}
.h10_c01144{height:52.986250pt;}
.hf_c01144{height:55.290000pt;}
.h3_c01144{height:57.593750pt;}
.h8_c01144{height:59.897500pt;}
.h4_c01144{height:62.201250pt;}
.h15_c01144{height:76.023750pt;}
.h12_c01144{height:94.453750pt;}
.h1_c01144{height:1020.000000pt;}
.h0_c01144{height:1020.160000pt;}
.w0_c01144{width:695.040000pt;}
.w1_c01144{width:695.333333pt;}
.x0_c01144{left:0.000000pt;}
.x1_c01144{left:65.280000pt;}
.x2d_c01144{left:84.480000pt;}
.x37_c01144{left:92.800000pt;}
.x2_c01144{left:129.280000pt;}
.xb_c01144{left:130.560000pt;}
.x2e_c01144{left:147.840000pt;}
.x38_c01144{left:149.760000pt;}
.xc_c01144{left:167.680000pt;}
.x10_c01144{left:177.280000pt;}
.x2a_c01144{left:186.880000pt;}
.x21_c01144{left:205.440000pt;}
.x1d_c01144{left:206.720000pt;}
.x18_c01144{left:215.040000pt;}
.x2c_c01144{left:225.280000pt;}
.x3_c01144{left:232.320000pt;}
.x2b_c01144{left:234.880000pt;}
.x14_c01144{left:253.440000pt;}
.x25_c01144{left:262.400000pt;}
.x11_c01144{left:263.680000pt;}
.x15_c01144{left:278.400000pt;}
.x16_c01144{left:280.320000pt;}
.xd_c01144{left:282.240000pt;}
.x1e_c01144{left:291.200000pt;}
.x12_c01144{left:300.800000pt;}
.x30_c01144{left:302.080000pt;}
.x22_c01144{left:311.040000pt;}
.x1f_c01144{left:320.640000pt;}
.xe_c01144{left:330.240000pt;}
.x33_c01144{left:340.480000pt;}
.x29_c01144{left:349.440000pt;}
.x20_c01144{left:359.040000pt;}
.x4_c01144{left:375.040000pt;}
.x26_c01144{left:387.200000pt;}
.x17_c01144{left:388.480000pt;}
.x27_c01144{left:396.800000pt;}
.x5_c01144{left:406.400000pt;}
.x2f_c01144{left:407.680000pt;}
.x13_c01144{left:426.240000pt;}
.x31_c01144{left:435.840000pt;}
.x28_c01144{left:446.080000pt;}
.x32_c01144{left:464.640000pt;}
.x23_c01144{left:484.480000pt;}
.x19_c01144{left:485.760000pt;}
.x1a_c01144{left:493.440000pt;}
.x6_c01144{left:495.360000pt;}
.x7_c01144{left:513.920000pt;}
.x34_c01144{left:524.160000pt;}
.x35_c01144{left:551.040000pt;}
.x1b_c01144{left:561.920000pt;}
.x8_c01144{left:563.200000pt;}
.x36_c01144{left:581.760000pt;}
.x9_c01144{left:592.640000pt;}
.x24_c01144{left:620.800000pt;}
.xa_c01144{left:622.080000pt;}
.xf_c01144{left:631.040000pt;}
.x1c_c01144{left:648.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_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_0b826bb23d30ba9d7a4e9e04.woff2')format("woff");}.ff1_c01145{font-family:ff1_c01145;line-height:1.109863;font-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_c01145{transform:matrix(0.188125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188125,0.000000,0.000000,0.250000,0,0);}
.m54_c01145{transform:matrix(0.208775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208775,0.000000,0.000000,0.250000,0,0);}
.m14_c01145{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.md_c01145{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);}
.m37_c01145{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_c01145{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);}
.m2c_c01145{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);}
.m20_c01145{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m23_c01145{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m29_c01145{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m18_c01145{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);}
.m39_c01145{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m7_c01145{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);}
.m35_c01145{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m5_c01145{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01145{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m15_c01145{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01145{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01145{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01145{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m27_c01145{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1_c01145{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m8_c01145{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m25_c01145{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01145{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m48_c01145{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01145{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m46_c01145{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.me_c01145{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_c01145{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);}
.m43_c01145{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m53_c01145{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);}
.m28_c01145{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m21_c01145{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);}
.m32_c01145{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01145{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);}
.m2d_c01145{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m19_c01145{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);}
.m1e_c01145{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m9_c01145{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01145{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01145{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);}
.m26_c01145{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);}
.m2_c01145{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m12_c01145{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m36_c01145{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);}
.m10_c01145{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m6_c01145{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);}
.m13_c01145{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);}
.m24_c01145{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m0_c01145{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.mf_c01145{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.ma_c01145{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);}
.m16_c01145{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m40_c01145{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);}
.m4e_c01145{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m30_c01145{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);}
.m22_c01145{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01145{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m3_c01145{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01145{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m47_c01145{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m17_c01145{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m41_c01145{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);}
.m31_c01145{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m34_c01145{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.mc_c01145{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.mb_c01145{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);}
.m2e_c01145{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01145{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);}
.m3d_c01145{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m51_c01145{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01145{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m4d_c01145{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m52_c01145{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01145{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m44_c01145{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m49_c01145{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m50_c01145{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01145{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01145{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);}
.m4c_c01145{transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);}
.m45_c01145{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m38_c01145{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.m42_c01145{transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);}
.v3_c01145{vertical-align:-8.640000px;}
.v2_c01145{vertical-align:-5.760000px;}
.v0_c01145{vertical-align:0.000000px;}
.v1_c01145{vertical-align:8.640000px;}
.ls0_c01145{letter-spacing:0.000000px;}
.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;}
}
.ws4_c01145{word-spacing:0.000000px;}
.ws2_c01145{word-spacing:2.779200px;}
.ws1_c01145{word-spacing:14.216640px;}
.ws0_c01145{word-spacing:30.196320px;}
.ws3_c01145{word-spacing:42.841200px;}
.fc0_c01145{color:transparent;}
.fsc_c01145{font-size:34.560000px;}
.fsd_c01145{font-size:37.440000px;}
.fs6_c01145{font-size:40.320000px;}
.fs8_c01145{font-size:43.200000px;}
.fs1_c01145{font-size:46.080000px;}
.fs2_c01145{font-size:48.960000px;}
.fs5_c01145{font-size:51.840000px;}
.fs3_c01145{font-size:54.720000px;}
.fs7_c01145{font-size:57.600000px;}
.fs4_c01145{font-size:60.480000px;}
.fs9_c01145{font-size:63.360000px;}
.fsa_c01145{font-size:66.240000px;}
.fs0_c01145{font-size:69.120000px;}
.fsb_c01145{font-size:72.000000px;}
.fsf_c01145{font-size:95.040000px;}
.fse_c01145{font-size:97.920000px;}
.y0_c01145{bottom:0.000000px;}
.ya9_c01145{bottom:46.080000px;}
.yab_c01145{bottom:51.120000px;}
.yac_c01145{bottom:51.840000px;}
.yaa_c01145{bottom:52.560000px;}
.ya8_c01145{bottom:53.280000px;}
.ya5_c01145{bottom:55.440000px;}
.ya7_c01145{bottom:56.880000px;}
.ya6_c01145{bottom:57.600000px;}
.ya4_c01145{bottom:61.200000px;}
.ya3_c01145{bottom:96.480000px;}
.ya1_c01145{bottom:99.360000px;}
.ya2_c01145{bottom:100.800000px;}
.ya0_c01145{bottom:103.680000px;}
.y9e_c01145{bottom:128.880000px;}
.y9f_c01145{bottom:129.600000px;}
.y9b_c01145{bottom:130.320000px;}
.y99_c01145{bottom:131.040000px;}
.y9d_c01145{bottom:131.760000px;}
.y9c_c01145{bottom:132.480000px;}
.y9a_c01145{bottom:133.920000px;}
.y97_c01145{bottom:134.640000px;}
.y98_c01145{bottom:135.360000px;}
.y96_c01145{bottom:171.360000px;}
.y94_c01145{bottom:172.080000px;}
.y92_c01145{bottom:174.240000px;}
.y95_c01145{bottom:174.960000px;}
.y93_c01145{bottom:176.400000px;}
.y91_c01145{bottom:178.560000px;}
.y8e_c01145{bottom:214.560000px;}
.y90_c01145{bottom:216.000000px;}
.y8b_c01145{bottom:216.720000px;}
.y8f_c01145{bottom:217.440000px;}
.y8d_c01145{bottom:218.160000px;}
.y8c_c01145{bottom:218.880000px;}
.y89_c01145{bottom:221.040000px;}
.y8a_c01145{bottom:221.760000px;}
.y88_c01145{bottom:257.760000px;}
.y86_c01145{bottom:258.480000px;}
.y84_c01145{bottom:259.200000px;}
.y87_c01145{bottom:260.640000px;}
.y85_c01145{bottom:261.360000px;}
.y83_c01145{bottom:262.800000px;}
.y82_c01145{bottom:263.520000px;}
.y80_c01145{bottom:293.760000px;}
.y81_c01145{bottom:301.680000px;}
.y7c_c01145{bottom:303.120000px;}
.y7f_c01145{bottom:303.840000px;}
.y7e_c01145{bottom:304.560000px;}
.y7d_c01145{bottom:305.280000px;}
.y7b_c01145{bottom:306.000000px;}
.y7a_c01145{bottom:342.720000px;}
.y79_c01145{bottom:343.440000px;}
.y77_c01145{bottom:344.160000px;}
.y75_c01145{bottom:344.880000px;}
.y74_c01145{bottom:345.600000px;}
.y78_c01145{bottom:346.320000px;}
.y76_c01145{bottom:347.760000px;}
.y73_c01145{bottom:348.480000px;}
.y72_c01145{bottom:386.640000px;}
.y71_c01145{bottom:387.360000px;}
.y6f_c01145{bottom:390.240000px;}
.y70_c01145{bottom:391.680000px;}
.y6c_c01145{bottom:429.120000px;}
.y6b_c01145{bottom:430.560000px;}
.y6e_c01145{bottom:431.280000px;}
.y69_c01145{bottom:432.000000px;}
.y6d_c01145{bottom:432.720000px;}
.y6a_c01145{bottom:434.160000px;}
.y65_c01145{bottom:471.600000px;}
.y68_c01145{bottom:473.040000px;}
.y66_c01145{bottom:473.760000px;}
.y67_c01145{bottom:475.200000px;}
.y63_c01145{bottom:475.920000px;}
.y64_c01145{bottom:477.360000px;}
.y60_c01145{bottom:514.800000px;}
.y62_c01145{bottom:515.520000px;}
.y61_c01145{bottom:516.960000px;}
.y5e_c01145{bottom:518.400000px;}
.y5f_c01145{bottom:519.840000px;}
.y5c_c01145{bottom:558.000000px;}
.y5a_c01145{bottom:559.440000px;}
.y59_c01145{bottom:560.160000px;}
.y5d_c01145{bottom:561.600000px;}
.y5b_c01145{bottom:562.320000px;}
.y55_c01145{bottom:600.480000px;}
.y58_c01145{bottom:601.920000px;}
.y56_c01145{bottom:602.640000px;}
.y53_c01145{bottom:603.360000px;}
.y54_c01145{bottom:604.800000px;}
.y57_c01145{bottom:605.520000px;}
.y52_c01145{bottom:644.400000px;}
.y4f_c01145{bottom:645.120000px;}
.y50_c01145{bottom:647.280000px;}
.y51_c01145{bottom:648.000000px;}
.y49_c01145{bottom:675.360000px;}
.y4a_c01145{bottom:676.800000px;}
.y48_c01145{bottom:677.520000px;}
.y4e_c01145{bottom:678.240000px;}
.y4c_c01145{bottom:678.960000px;}
.y4b_c01145{bottom:679.680000px;}
.y4d_c01145{bottom:680.400000px;}
.y45_c01145{bottom:717.840000px;}
.y42_c01145{bottom:720.000000px;}
.y44_c01145{bottom:721.440000px;}
.y43_c01145{bottom:722.160000px;}
.y46_c01145{bottom:723.600000px;}
.y47_c01145{bottom:724.320000px;}
.y3e_c01145{bottom:761.040000px;}
.y3c_c01145{bottom:763.200000px;}
.y3f_c01145{bottom:763.920000px;}
.y3d_c01145{bottom:764.640000px;}
.y40_c01145{bottom:766.800000px;}
.y41_c01145{bottom:767.520000px;}
.y3a_c01145{bottom:805.680000px;}
.y38_c01145{bottom:806.400000px;}
.y39_c01145{bottom:807.120000px;}
.y3b_c01145{bottom:807.840000px;}
.y33_c01145{bottom:867.600000px;}
.y35_c01145{bottom:869.040000px;}
.y34_c01145{bottom:870.480000px;}
.y37_c01145{bottom:871.200000px;}
.y36_c01145{bottom:871.920000px;}
.y2d_c01145{bottom:911.520000px;}
.y2e_c01145{bottom:912.240000px;}
.y2c_c01145{bottom:912.960000px;}
.y30_c01145{bottom:914.400000px;}
.y32_c01145{bottom:915.120000px;}
.y2f_c01145{bottom:915.840000px;}
.y31_c01145{bottom:917.280000px;}
.y24_c01145{bottom:931.680000px;}
.y25_c01145{bottom:932.400000px;}
.y26_c01145{bottom:933.120000px;}
.y27_c01145{bottom:934.560000px;}
.y29_c01145{bottom:935.280000px;}
.y2b_c01145{bottom:936.000000px;}
.y28_c01145{bottom:936.720000px;}
.y2a_c01145{bottom:937.440000px;}
.y1a_c01145{bottom:953.280000px;}
.y1c_c01145{bottom:954.000000px;}
.y1d_c01145{bottom:954.720000px;}
.y1b_c01145{bottom:955.440000px;}
.y1f_c01145{bottom:956.160000px;}
.y20_c01145{bottom:956.880000px;}
.y21_c01145{bottom:957.600000px;}
.y1e_c01145{bottom:958.320000px;}
.y22_c01145{bottom:959.760000px;}
.y23_c01145{bottom:961.920000px;}
.y12_c01145{bottom:974.160000px;}
.y13_c01145{bottom:974.880000px;}
.y15_c01145{bottom:976.320000px;}
.y17_c01145{bottom:977.760000px;}
.y14_c01145{bottom:978.480000px;}
.y18_c01145{bottom:979.200000px;}
.y16_c01145{bottom:979.920000px;}
.y19_c01145{bottom:981.360000px;}
.yb_c01145{bottom:996.480000px;}
.y9_c01145{bottom:997.200000px;}
.yc_c01145{bottom:997.920000px;}
.ya_c01145{bottom:998.640000px;}
.ye_c01145{bottom:999.360000px;}
.yd_c01145{bottom:1000.080000px;}
.y10_c01145{bottom:1000.800000px;}
.y11_c01145{bottom:1002.240000px;}
.yf_c01145{bottom:1002.960000px;}
.y2_c01145{bottom:1028.880000px;}
.y3_c01145{bottom:1029.600000px;}
.y4_c01145{bottom:1031.760000px;}
.y5_c01145{bottom:1032.480000px;}
.y7_c01145{bottom:1033.200000px;}
.y6_c01145{bottom:1033.920000px;}
.y8_c01145{bottom:1034.640000px;}
.y1_c01145{bottom:1102.320000px;}
.hf_c01145{height:31.100625px;}
.h11_c01145{height:33.692344px;}
.h8_c01145{height:36.284062px;}
.ha_c01145{height:38.875781px;}
.h3_c01145{height:41.467500px;}
.h4_c01145{height:44.059219px;}
.h7_c01145{height:46.650937px;}
.h5_c01145{height:49.242656px;}
.h9_c01145{height:51.834375px;}
.h6_c01145{height:54.426094px;}
.hb_c01145{height:57.017812px;}
.hd_c01145{height:59.609531px;}
.hc_c01145{height:60.474375px;}
.h2_c01145{height:62.201250px;}
.he_c01145{height:64.792969px;}
.h12_c01145{height:85.526719px;}
.h10_c01145{height:88.118437px;}
.h1_c01145{height:1149.750000px;}
.h0_c01145{height:1149.840000px;}
.w1_c01145{width:785.250000px;}
.w0_c01145{width:785.520000px;}
.x0_c01145{left:0.000000px;}
.x2_c01145{left:73.440000px;}
.x1a_c01145{left:74.880000px;}
.x1f_c01145{left:76.320000px;}
.xe_c01145{left:84.960000px;}
.x3_c01145{left:104.400000px;}
.x1b_c01145{left:116.640000px;}
.xf_c01145{left:126.720000px;}
.x24_c01145{left:136.080000px;}
.x1c_c01145{left:147.600000px;}
.x28_c01145{left:149.040000px;}
.x16_c01145{left:157.680000px;}
.x10_c01145{left:159.120000px;}
.x29_c01145{left:170.640000px;}
.x4_c01145{left:179.280000px;}
.x25_c01145{left:190.080000px;}
.x38_c01145{left:191.520000px;}
.x20_c01145{left:200.880000px;}
.x5_c01145{left:221.760000px;}
.x26_c01145{left:223.200000px;}
.x2f_c01145{left:233.280000px;}
.x2a_c01145{left:243.360000px;}
.x1d_c01145{left:254.880000px;}
.x27_c01145{left:265.680000px;}
.x21_c01145{left:274.320000px;}
.x30_c01145{left:275.760000px;}
.x31_c01145{left:285.120000px;}
.x35_c01145{left:287.280000px;}
.x6_c01145{left:296.640000px;}
.x11_c01145{left:298.080000px;}
.x7_c01145{left:328.320000px;}
.x32_c01145{left:330.480000px;}
.x22_c01145{left:339.840000px;}
.x3f_c01145{left:341.280000px;}
.x12_c01145{left:352.080000px;}
.x3a_c01145{left:361.440000px;}
.x23_c01145{left:372.240000px;}
.x13_c01145{left:384.480000px;}
.x42_c01145{left:385.920000px;}
.x44_c01145{left:395.280000px;}
.x39_c01145{left:405.360000px;}
.x37_c01145{left:416.160000px;}
.x40_c01145{left:427.680000px;}
.x3c_c01145{left:438.480000px;}
.x8_c01145{left:447.840000px;}
.x17_c01145{left:449.280000px;}
.x33_c01145{left:458.640000px;}
.x41_c01145{left:470.880000px;}
.x3d_c01145{left:482.400000px;}
.x43_c01145{left:491.760000px;}
.x3b_c01145{left:508.320000px;}
.x9_c01145{left:524.160000px;}
.x2b_c01145{left:546.480000px;}
.xa_c01145{left:556.560000px;}
.x14_c01145{left:578.880000px;}
.x18_c01145{left:601.920000px;}
.x15_c01145{left:612.000000px;}
.xb_c01145{left:632.880000px;}
.x2c_c01145{left:635.040000px;}
.x1e_c01145{left:667.440000px;}
.x3e_c01145{left:668.880000px;}
.xc_c01145{left:676.800000px;}
.x19_c01145{left:678.240000px;}
.x1_c01145{left:684.720000px;}
.xd_c01145{left:688.320000px;}
.x34_c01145{left:701.280000px;}
.x2d_c01145{left:710.640000px;}
.x36_c01145{left:712.080000px;}
.x2e_c01145{left:731.520000px;}
@media print{
.v3_c01145{vertical-align:-7.680000pt;}
.v2_c01145{vertical-align:-5.120000pt;}
.v0_c01145{vertical-align:0.000000pt;}
.v1_c01145{vertical-align:7.680000pt;}
.ls0_c01145{letter-spacing:0.000000pt;}
.ws4_c01145{word-spacing:0.000000pt;}
.ws2_c01145{word-spacing:2.470400pt;}
.ws1_c01145{word-spacing:12.637013pt;}
.ws0_c01145{word-spacing:26.841173pt;}
.ws3_c01145{word-spacing:38.081067pt;}
.fsc_c01145{font-size:30.720000pt;}
.fsd_c01145{font-size:33.280000pt;}
.fs6_c01145{font-size:35.840000pt;}
.fs8_c01145{font-size:38.400000pt;}
.fs1_c01145{font-size:40.960000pt;}
.fs2_c01145{font-size:43.520000pt;}
.fs5_c01145{font-size:46.080000pt;}
.fs3_c01145{font-size:48.640000pt;}
.fs7_c01145{font-size:51.200000pt;}
.fs4_c01145{font-size:53.760000pt;}
.fs9_c01145{font-size:56.320000pt;}
.fsa_c01145{font-size:58.880000pt;}
.fs0_c01145{font-size:61.440000pt;}
.fsb_c01145{font-size:64.000000pt;}
.fsf_c01145{font-size:84.480000pt;}
.fse_c01145{font-size:87.040000pt;}
.y0_c01145{bottom:0.000000pt;}
.ya9_c01145{bottom:40.960000pt;}
.yab_c01145{bottom:45.440000pt;}
.yac_c01145{bottom:46.080000pt;}
.yaa_c01145{bottom:46.720000pt;}
.ya8_c01145{bottom:47.360000pt;}
.ya5_c01145{bottom:49.280000pt;}
.ya7_c01145{bottom:50.560000pt;}
.ya6_c01145{bottom:51.200000pt;}
.ya4_c01145{bottom:54.400000pt;}
.ya3_c01145{bottom:85.760000pt;}
.ya1_c01145{bottom:88.320000pt;}
.ya2_c01145{bottom:89.600000pt;}
.ya0_c01145{bottom:92.160000pt;}
.y9e_c01145{bottom:114.560000pt;}
.y9f_c01145{bottom:115.200000pt;}
.y9b_c01145{bottom:115.840000pt;}
.y99_c01145{bottom:116.480000pt;}
.y9d_c01145{bottom:117.120000pt;}
.y9c_c01145{bottom:117.760000pt;}
.y9a_c01145{bottom:119.040000pt;}
.y97_c01145{bottom:119.680000pt;}
.y98_c01145{bottom:120.320000pt;}
.y96_c01145{bottom:152.320000pt;}
.y94_c01145{bottom:152.960000pt;}
.y92_c01145{bottom:154.880000pt;}
.y95_c01145{bottom:155.520000pt;}
.y93_c01145{bottom:156.800000pt;}
.y91_c01145{bottom:158.720000pt;}
.y8e_c01145{bottom:190.720000pt;}
.y90_c01145{bottom:192.000000pt;}
.y8b_c01145{bottom:192.640000pt;}
.y8f_c01145{bottom:193.280000pt;}
.y8d_c01145{bottom:193.920000pt;}
.y8c_c01145{bottom:194.560000pt;}
.y89_c01145{bottom:196.480000pt;}
.y8a_c01145{bottom:197.120000pt;}
.y88_c01145{bottom:229.120000pt;}
.y86_c01145{bottom:229.760000pt;}
.y84_c01145{bottom:230.400000pt;}
.y87_c01145{bottom:231.680000pt;}
.y85_c01145{bottom:232.320000pt;}
.y83_c01145{bottom:233.600000pt;}
.y82_c01145{bottom:234.240000pt;}
.y80_c01145{bottom:261.120000pt;}
.y81_c01145{bottom:268.160000pt;}
.y7c_c01145{bottom:269.440000pt;}
.y7f_c01145{bottom:270.080000pt;}
.y7e_c01145{bottom:270.720000pt;}
.y7d_c01145{bottom:271.360000pt;}
.y7b_c01145{bottom:272.000000pt;}
.y7a_c01145{bottom:304.640000pt;}
.y79_c01145{bottom:305.280000pt;}
.y77_c01145{bottom:305.920000pt;}
.y75_c01145{bottom:306.560000pt;}
.y74_c01145{bottom:307.200000pt;}
.y78_c01145{bottom:307.840000pt;}
.y76_c01145{bottom:309.120000pt;}
.y73_c01145{bottom:309.760000pt;}
.y72_c01145{bottom:343.680000pt;}
.y71_c01145{bottom:344.320000pt;}
.y6f_c01145{bottom:346.880000pt;}
.y70_c01145{bottom:348.160000pt;}
.y6c_c01145{bottom:381.440000pt;}
.y6b_c01145{bottom:382.720000pt;}
.y6e_c01145{bottom:383.360000pt;}
.y69_c01145{bottom:384.000000pt;}
.y6d_c01145{bottom:384.640000pt;}
.y6a_c01145{bottom:385.920000pt;}
.y65_c01145{bottom:419.200000pt;}
.y68_c01145{bottom:420.480000pt;}
.y66_c01145{bottom:421.120000pt;}
.y67_c01145{bottom:422.400000pt;}
.y63_c01145{bottom:423.040000pt;}
.y64_c01145{bottom:424.320000pt;}
.y60_c01145{bottom:457.600000pt;}
.y62_c01145{bottom:458.240000pt;}
.y61_c01145{bottom:459.520000pt;}
.y5e_c01145{bottom:460.800000pt;}
.y5f_c01145{bottom:462.080000pt;}
.y5c_c01145{bottom:496.000000pt;}
.y5a_c01145{bottom:497.280000pt;}
.y59_c01145{bottom:497.920000pt;}
.y5d_c01145{bottom:499.200000pt;}
.y5b_c01145{bottom:499.840000pt;}
.y55_c01145{bottom:533.760000pt;}
.y58_c01145{bottom:535.040000pt;}
.y56_c01145{bottom:535.680000pt;}
.y53_c01145{bottom:536.320000pt;}
.y54_c01145{bottom:537.600000pt;}
.y57_c01145{bottom:538.240000pt;}
.y52_c01145{bottom:572.800000pt;}
.y4f_c01145{bottom:573.440000pt;}
.y50_c01145{bottom:575.360000pt;}
.y51_c01145{bottom:576.000000pt;}
.y49_c01145{bottom:600.320000pt;}
.y4a_c01145{bottom:601.600000pt;}
.y48_c01145{bottom:602.240000pt;}
.y4e_c01145{bottom:602.880000pt;}
.y4c_c01145{bottom:603.520000pt;}
.y4b_c01145{bottom:604.160000pt;}
.y4d_c01145{bottom:604.800000pt;}
.y45_c01145{bottom:638.080000pt;}
.y42_c01145{bottom:640.000000pt;}
.y44_c01145{bottom:641.280000pt;}
.y43_c01145{bottom:641.920000pt;}
.y46_c01145{bottom:643.200000pt;}
.y47_c01145{bottom:643.840000pt;}
.y3e_c01145{bottom:676.480000pt;}
.y3c_c01145{bottom:678.400000pt;}
.y3f_c01145{bottom:679.040000pt;}
.y3d_c01145{bottom:679.680000pt;}
.y40_c01145{bottom:681.600000pt;}
.y41_c01145{bottom:682.240000pt;}
.y3a_c01145{bottom:716.160000pt;}
.y38_c01145{bottom:716.800000pt;}
.y39_c01145{bottom:717.440000pt;}
.y3b_c01145{bottom:718.080000pt;}
.y33_c01145{bottom:771.200000pt;}
.y35_c01145{bottom:772.480000pt;}
.y34_c01145{bottom:773.760000pt;}
.y37_c01145{bottom:774.400000pt;}
.y36_c01145{bottom:775.040000pt;}
.y2d_c01145{bottom:810.240000pt;}
.y2e_c01145{bottom:810.880000pt;}
.y2c_c01145{bottom:811.520000pt;}
.y30_c01145{bottom:812.800000pt;}
.y32_c01145{bottom:813.440000pt;}
.y2f_c01145{bottom:814.080000pt;}
.y31_c01145{bottom:815.360000pt;}
.y24_c01145{bottom:828.160000pt;}
.y25_c01145{bottom:828.800000pt;}
.y26_c01145{bottom:829.440000pt;}
.y27_c01145{bottom:830.720000pt;}
.y29_c01145{bottom:831.360000pt;}
.y2b_c01145{bottom:832.000000pt;}
.y28_c01145{bottom:832.640000pt;}
.y2a_c01145{bottom:833.280000pt;}
.y1a_c01145{bottom:847.360000pt;}
.y1c_c01145{bottom:848.000000pt;}
.y1d_c01145{bottom:848.640000pt;}
.y1b_c01145{bottom:849.280000pt;}
.y1f_c01145{bottom:849.920000pt;}
.y20_c01145{bottom:850.560000pt;}
.y21_c01145{bottom:851.200000pt;}
.y1e_c01145{bottom:851.840000pt;}
.y22_c01145{bottom:853.120000pt;}
.y23_c01145{bottom:855.040000pt;}
.y12_c01145{bottom:865.920000pt;}
.y13_c01145{bottom:866.560000pt;}
.y15_c01145{bottom:867.840000pt;}
.y17_c01145{bottom:869.120000pt;}
.y14_c01145{bottom:869.760000pt;}
.y18_c01145{bottom:870.400000pt;}
.y16_c01145{bottom:871.040000pt;}
.y19_c01145{bottom:872.320000pt;}
.yb_c01145{bottom:885.760000pt;}
.y9_c01145{bottom:886.400000pt;}
.yc_c01145{bottom:887.040000pt;}
.ya_c01145{bottom:887.680000pt;}
.ye_c01145{bottom:888.320000pt;}
.yd_c01145{bottom:888.960000pt;}
.y10_c01145{bottom:889.600000pt;}
.y11_c01145{bottom:890.880000pt;}
.yf_c01145{bottom:891.520000pt;}
.y2_c01145{bottom:914.560000pt;}
.y3_c01145{bottom:915.200000pt;}
.y4_c01145{bottom:917.120000pt;}
.y5_c01145{bottom:917.760000pt;}
.y7_c01145{bottom:918.400000pt;}
.y6_c01145{bottom:919.040000pt;}
.y8_c01145{bottom:919.680000pt;}
.y1_c01145{bottom:979.840000pt;}
.hf_c01145{height:27.645000pt;}
.h11_c01145{height:29.948750pt;}
.h8_c01145{height:32.252500pt;}
.ha_c01145{height:34.556250pt;}
.h3_c01145{height:36.860000pt;}
.h4_c01145{height:39.163750pt;}
.h7_c01145{height:41.467500pt;}
.h5_c01145{height:43.771250pt;}
.h9_c01145{height:46.075000pt;}
.h6_c01145{height:48.378750pt;}
.hb_c01145{height:50.682500pt;}
.hd_c01145{height:52.986250pt;}
.hc_c01145{height:53.755000pt;}
.h2_c01145{height:55.290000pt;}
.he_c01145{height:57.593750pt;}
.h12_c01145{height:76.023750pt;}
.h10_c01145{height:78.327500pt;}
.h1_c01145{height:1022.000000pt;}
.h0_c01145{height:1022.080000pt;}
.w1_c01145{width:698.000000pt;}
.w0_c01145{width:698.240000pt;}
.x0_c01145{left:0.000000pt;}
.x2_c01145{left:65.280000pt;}
.x1a_c01145{left:66.560000pt;}
.x1f_c01145{left:67.840000pt;}
.xe_c01145{left:75.520000pt;}
.x3_c01145{left:92.800000pt;}
.x1b_c01145{left:103.680000pt;}
.xf_c01145{left:112.640000pt;}
.x24_c01145{left:120.960000pt;}
.x1c_c01145{left:131.200000pt;}
.x28_c01145{left:132.480000pt;}
.x16_c01145{left:140.160000pt;}
.x10_c01145{left:141.440000pt;}
.x29_c01145{left:151.680000pt;}
.x4_c01145{left:159.360000pt;}
.x25_c01145{left:168.960000pt;}
.x38_c01145{left:170.240000pt;}
.x20_c01145{left:178.560000pt;}
.x5_c01145{left:197.120000pt;}
.x26_c01145{left:198.400000pt;}
.x2f_c01145{left:207.360000pt;}
.x2a_c01145{left:216.320000pt;}
.x1d_c01145{left:226.560000pt;}
.x27_c01145{left:236.160000pt;}
.x21_c01145{left:243.840000pt;}
.x30_c01145{left:245.120000pt;}
.x31_c01145{left:253.440000pt;}
.x35_c01145{left:255.360000pt;}
.x6_c01145{left:263.680000pt;}
.x11_c01145{left:264.960000pt;}
.x7_c01145{left:291.840000pt;}
.x32_c01145{left:293.760000pt;}
.x22_c01145{left:302.080000pt;}
.x3f_c01145{left:303.360000pt;}
.x12_c01145{left:312.960000pt;}
.x3a_c01145{left:321.280000pt;}
.x23_c01145{left:330.880000pt;}
.x13_c01145{left:341.760000pt;}
.x42_c01145{left:343.040000pt;}
.x44_c01145{left:351.360000pt;}
.x39_c01145{left:360.320000pt;}
.x37_c01145{left:369.920000pt;}
.x40_c01145{left:380.160000pt;}
.x3c_c01145{left:389.760000pt;}
.x8_c01145{left:398.080000pt;}
.x17_c01145{left:399.360000pt;}
.x33_c01145{left:407.680000pt;}
.x41_c01145{left:418.560000pt;}
.x3d_c01145{left:428.800000pt;}
.x43_c01145{left:437.120000pt;}
.x3b_c01145{left:451.840000pt;}
.x9_c01145{left:465.920000pt;}
.x2b_c01145{left:485.760000pt;}
.xa_c01145{left:494.720000pt;}
.x14_c01145{left:514.560000pt;}
.x18_c01145{left:535.040000pt;}
.x15_c01145{left:544.000000pt;}
.xb_c01145{left:562.560000pt;}
.x2c_c01145{left:564.480000pt;}
.x1e_c01145{left:593.280000pt;}
.x3e_c01145{left:594.560000pt;}
.xc_c01145{left:601.600000pt;}
.x19_c01145{left:602.880000pt;}
.x1_c01145{left:608.640000pt;}
.xd_c01145{left:611.840000pt;}
.x34_c01145{left:623.360000pt;}
.x2d_c01145{left:631.680000pt;}
.x36_c01145{left:632.960000pt;}
.x2e_c01145{left:650.240000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0d706e3ee14dc385eba4946b.woff2')format("woff");}.ff1_c01146{font-family:ff1_c01146;line-height:1.109863;font-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_c01146{transform:matrix(0.159825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159825,0.000000,0.000000,0.250000,0,0);}
.m14_c01146{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.ma_c01146{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m26_c01146{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m3a_c01146{transform:matrix(0.245450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245450,0.000000,0.000000,0.250000,0,0);}
.m2d_c01146{transform:matrix(0.246375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246375,0.000000,0.000000,0.250000,0,0);}
.m32_c01146{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m31_c01146{transform:matrix(0.247650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247650,0.000000,0.000000,0.250000,0,0);}
.m3b_c01146{transform:matrix(0.249200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249200,0.000000,0.000000,0.250000,0,0);}
.m16_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);}
.m17_c01146{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m18_c01146{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_c01146{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);}
.m29_c01146{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);}
.m35_c01146{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01146{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m22_c01146{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);}
.m2f_c01146{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m19_c01146{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01146{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m9_c01146{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m6_c01146{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);}
.m23_c01146{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m13_c01146{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01146{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m7_c01146{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01146{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m2_c01146{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m27_c01146{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m38_c01146{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01146{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m8_c01146{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m12_c01146{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m24_c01146{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01146{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m21_c01146{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.me_c01146{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1_c01146{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m3_c01146{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m25_c01146{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);}
.m37_c01146{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m0_c01146{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01146{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m20_c01146{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);}
.m33_c01146{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);}
.mc_c01146{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);}
.m39_c01146{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);}
.m3d_c01146{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.mb_c01146{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);}
.m30_c01146{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m36_c01146{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);}
.m34_c01146{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);}
.md_c01146{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01146{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);}
.m2e_c01146{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m5_c01146{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m4_c01146{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.mf_c01146{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);}
.m3e_c01146{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m28_c01146{transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);}
.m15_c01146{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.m10_c01146{transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01146{transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);}
.v5_c01146{vertical-align:-14.400000px;}
.v4_c01146{vertical-align:-8.640000px;}
.v3_c01146{vertical-align:-2.880000px;}
.v0_c01146{vertical-align:0.000000px;}
.v1_c01146{vertical-align:5.760000px;}
.v2_c01146{vertical-align:8.640000px;}
.ls1_c01146{letter-spacing:0.000000px;}
.ls0_c01146{letter-spacing:42.841680px;}
.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;}
}
.ws4_c01146{word-spacing:-2.880720px;}
.ws6_c01146{word-spacing:0.000000px;}
.ws1_c01146{word-spacing:6.912000px;}
.ws3_c01146{word-spacing:11.855347px;}
.ws5_c01146{word-spacing:18.060000px;}
.ws2_c01146{word-spacing:20.750645px;}
.ws0_c01146{word-spacing:468.750000px;}
.fc0_c01146{color:transparent;}
.fsa_c01146{font-size:11.520000px;}
.fs5_c01146{font-size:34.560000px;}
.fs10_c01146{font-size:37.440000px;}
.fs9_c01146{font-size:43.200000px;}
.fsf_c01146{font-size:46.080000px;}
.fs4_c01146{font-size:48.960000px;}
.fs2_c01146{font-size:51.840000px;}
.fs8_c01146{font-size:54.720000px;}
.fs7_c01146{font-size:57.600000px;}
.fs6_c01146{font-size:60.480000px;}
.fs1_c01146{font-size:63.360000px;}
.fsd_c01146{font-size:66.240000px;}
.fsc_c01146{font-size:69.120000px;}
.fs3_c01146{font-size:72.000000px;}
.fs0_c01146{font-size:74.880000px;}
.fse_c01146{font-size:77.760000px;}
.fsb_c01146{font-size:103.680000px;}
.y0_c01146{bottom:0.000000px;}
.y84_c01146{bottom:40.320000px;}
.y81_c01146{bottom:41.760000px;}
.y83_c01146{bottom:42.480000px;}
.y82_c01146{bottom:43.200000px;}
.y80_c01146{bottom:44.640000px;}
.y7f_c01146{bottom:49.680000px;}
.y7e_c01146{bottom:82.800000px;}
.y7c_c01146{bottom:84.960000px;}
.y7d_c01146{bottom:86.400000px;}
.y7b_c01146{bottom:87.120000px;}
.y7a_c01146{bottom:91.440000px;}
.y78_c01146{bottom:126.000000px;}
.y76_c01146{bottom:127.440000px;}
.y79_c01146{bottom:128.160000px;}
.y77_c01146{bottom:128.880000px;}
.y75_c01146{bottom:129.600000px;}
.y74_c01146{bottom:134.640000px;}
.y73_c01146{bottom:169.200000px;}
.y72_c01146{bottom:169.920000px;}
.y71_c01146{bottom:172.800000px;}
.y70_c01146{bottom:176.400000px;}
.y6e_c01146{bottom:213.120000px;}
.y6f_c01146{bottom:213.840000px;}
.y6c_c01146{bottom:215.280000px;}
.y6d_c01146{bottom:216.000000px;}
.y6b_c01146{bottom:219.600000px;}
.y6a_c01146{bottom:254.880000px;}
.y69_c01146{bottom:255.600000px;}
.y67_c01146{bottom:257.040000px;}
.y66_c01146{bottom:258.480000px;}
.y68_c01146{bottom:259.920000px;}
.y65_c01146{bottom:262.080000px;}
.y64_c01146{bottom:299.520000px;}
.y62_c01146{bottom:300.240000px;}
.y60_c01146{bottom:300.960000px;}
.y63_c01146{bottom:301.680000px;}
.y61_c01146{bottom:303.120000px;}
.y5f_c01146{bottom:304.560000px;}
.y5d_c01146{bottom:342.000000px;}
.y5c_c01146{bottom:342.720000px;}
.y59_c01146{bottom:343.440000px;}
.y5e_c01146{bottom:344.160000px;}
.y5b_c01146{bottom:345.600000px;}
.y5a_c01146{bottom:346.320000px;}
.y58_c01146{bottom:347.040000px;}
.y57_c01146{bottom:385.200000px;}
.y56_c01146{bottom:385.920000px;}
.y54_c01146{bottom:386.640000px;}
.y53_c01146{bottom:388.800000px;}
.y55_c01146{bottom:389.520000px;}
.y52_c01146{bottom:427.680000px;}
.y50_c01146{bottom:428.400000px;}
.y4e_c01146{bottom:429.120000px;}
.y4d_c01146{bottom:429.840000px;}
.y4f_c01146{bottom:430.560000px;}
.y51_c01146{bottom:431.280000px;}
.y4c_c01146{bottom:432.720000px;}
.y4a_c01146{bottom:472.320000px;}
.y4b_c01146{bottom:473.040000px;}
.y49_c01146{bottom:474.480000px;}
.y48_c01146{bottom:514.080000px;}
.y45_c01146{bottom:514.800000px;}
.y47_c01146{bottom:515.520000px;}
.y46_c01146{bottom:516.240000px;}
.y44_c01146{bottom:517.680000px;}
.y41_c01146{bottom:557.280000px;}
.y43_c01146{bottom:558.720000px;}
.y40_c01146{bottom:559.440000px;}
.y42_c01146{bottom:560.880000px;}
.y3d_c01146{bottom:600.480000px;}
.y3e_c01146{bottom:601.200000px;}
.y3f_c01146{bottom:601.920000px;}
.y3c_c01146{bottom:602.640000px;}
.y38_c01146{bottom:642.960000px;}
.y39_c01146{bottom:643.680000px;}
.y3a_c01146{bottom:644.400000px;}
.y37_c01146{bottom:645.120000px;}
.y3b_c01146{bottom:646.560000px;}
.y33_c01146{bottom:685.440000px;}
.y32_c01146{bottom:686.880000px;}
.y35_c01146{bottom:687.600000px;}
.y36_c01146{bottom:688.320000px;}
.y34_c01146{bottom:689.040000px;}
.y2e_c01146{bottom:727.200000px;}
.y2d_c01146{bottom:729.360000px;}
.y30_c01146{bottom:730.800000px;}
.y2f_c01146{bottom:732.240000px;}
.y31_c01146{bottom:732.960000px;}
.y28_c01146{bottom:770.400000px;}
.y27_c01146{bottom:771.840000px;}
.y2c_c01146{bottom:773.280000px;}
.y2a_c01146{bottom:774.000000px;}
.y29_c01146{bottom:775.440000px;}
.y2b_c01146{bottom:776.160000px;}
.y23_c01146{bottom:812.880000px;}
.y22_c01146{bottom:815.040000px;}
.y26_c01146{bottom:815.760000px;}
.y25_c01146{bottom:817.200000px;}
.y24_c01146{bottom:818.640000px;}
.y1d_c01146{bottom:855.360000px;}
.y1c_c01146{bottom:856.800000px;}
.y20_c01146{bottom:858.960000px;}
.y1f_c01146{bottom:859.680000px;}
.y1e_c01146{bottom:861.840000px;}
.y21_c01146{bottom:862.560000px;}
.y17_c01146{bottom:897.840000px;}
.y16_c01146{bottom:899.280000px;}
.y1a_c01146{bottom:902.160000px;}
.y19_c01146{bottom:903.600000px;}
.y18_c01146{bottom:905.760000px;}
.y1b_c01146{bottom:906.480000px;}
.y12_c01146{bottom:940.320000px;}
.y11_c01146{bottom:941.760000px;}
.y14_c01146{bottom:946.080000px;}
.y13_c01146{bottom:948.240000px;}
.y15_c01146{bottom:948.960000px;}
.ye_c01146{bottom:979.200000px;}
.y9_c01146{bottom:984.960000px;}
.yb_c01146{bottom:987.120000px;}
.ya_c01146{bottom:987.840000px;}
.yc_c01146{bottom:988.560000px;}
.yd_c01146{bottom:990.000000px;}
.yf_c01146{bottom:990.720000px;}
.y10_c01146{bottom:992.160000px;}
.y2_c01146{bottom:1028.160000px;}
.y3_c01146{bottom:1030.320000px;}
.y6_c01146{bottom:1031.040000px;}
.y4_c01146{bottom:1032.480000px;}
.y5_c01146{bottom:1033.200000px;}
.y7_c01146{bottom:1033.920000px;}
.y8_c01146{bottom:1035.360000px;}
.y1_c01146{bottom:1092.960000px;}
.hc_c01146{height:10.366875px;}
.h7_c01146{height:31.100625px;}
.h12_c01146{height:33.692344px;}
.hb_c01146{height:38.875781px;}
.h11_c01146{height:41.467500px;}
.h6_c01146{height:44.059219px;}
.h4_c01146{height:46.650937px;}
.ha_c01146{height:49.242656px;}
.h9_c01146{height:51.834375px;}
.h8_c01146{height:54.426094px;}
.h13_c01146{height:55.002656px;}
.h14_c01146{height:56.152969px;}
.h3_c01146{height:57.017812px;}
.hf_c01146{height:59.609531px;}
.he_c01146{height:62.201250px;}
.h5_c01146{height:64.792969px;}
.h2_c01146{height:67.384687px;}
.h10_c01146{height:69.976406px;}
.hd_c01146{height:93.301875px;}
.h1_c01146{height:1145.250000px;}
.h0_c01146{height:1145.520000px;}
.w0_c01146{width:779.040000px;}
.w1_c01146{width:779.250000px;}
.x0_c01146{left:0.000000px;}
.x22_c01146{left:72.000000px;}
.x2_c01146{left:73.440000px;}
.x3_c01146{left:145.440000px;}
.x4_c01146{left:188.640000px;}
.x1a_c01146{left:231.840000px;}
.x26_c01146{left:252.720000px;}
.x1b_c01146{left:274.320000px;}
.x5_c01146{left:295.920000px;}
.x23_c01146{left:304.560000px;}
.x20_c01146{left:306.720000px;}
.x1e_c01146{left:326.880000px;}
.xd_c01146{left:348.480000px;}
.x6_c01146{left:349.920000px;}
.x1f_c01146{left:371.520000px;}
.x7_c01146{left:392.400000px;}
.x1d_c01146{left:403.200000px;}
.xe_c01146{left:436.320000px;}
.xf_c01146{left:481.680000px;}
.x8_c01146{left:490.320000px;}
.x10_c01146{left:491.760000px;}
.x9_c01146{left:545.040000px;}
.x21_c01146{left:555.120000px;}
.x14_c01146{left:556.560000px;}
.x19_c01146{left:576.720000px;}
.x15_c01146{left:578.880000px;}
.x18_c01146{left:598.320000px;}
.x11_c01146{left:599.760000px;}
.x17_c01146{left:610.560000px;}
.x24_c01146{left:631.440000px;}
.xa_c01146{left:632.880000px;}
.x16_c01146{left:665.280000px;}
.xb_c01146{left:666.720000px;}
.x1_c01146{left:686.880000px;}
.x12_c01146{left:689.760000px;}
.x25_c01146{left:699.120000px;}
.xc_c01146{left:709.200000px;}
.x1c_c01146{left:710.640000px;}
.x13_c01146{left:730.080000px;}
@media print{
.v5_c01146{vertical-align:-12.800000pt;}
.v4_c01146{vertical-align:-7.680000pt;}
.v3_c01146{vertical-align:-2.560000pt;}
.v0_c01146{vertical-align:0.000000pt;}
.v1_c01146{vertical-align:5.120000pt;}
.v2_c01146{vertical-align:7.680000pt;}
.ls1_c01146{letter-spacing:0.000000pt;}
.ls0_c01146{letter-spacing:38.081493pt;}
.ws4_c01146{word-spacing:-2.560640pt;}
.ws6_c01146{word-spacing:0.000000pt;}
.ws1_c01146{word-spacing:6.144000pt;}
.ws3_c01146{word-spacing:10.538086pt;}
.ws5_c01146{word-spacing:16.053333pt;}
.ws2_c01146{word-spacing:18.445018pt;}
.ws0_c01146{word-spacing:416.666667pt;}
.fsa_c01146{font-size:10.240000pt;}
.fs5_c01146{font-size:30.720000pt;}
.fs10_c01146{font-size:33.280000pt;}
.fs9_c01146{font-size:38.400000pt;}
.fsf_c01146{font-size:40.960000pt;}
.fs4_c01146{font-size:43.520000pt;}
.fs2_c01146{font-size:46.080000pt;}
.fs8_c01146{font-size:48.640000pt;}
.fs7_c01146{font-size:51.200000pt;}
.fs6_c01146{font-size:53.760000pt;}
.fs1_c01146{font-size:56.320000pt;}
.fsd_c01146{font-size:58.880000pt;}
.fsc_c01146{font-size:61.440000pt;}
.fs3_c01146{font-size:64.000000pt;}
.fs0_c01146{font-size:66.560000pt;}
.fse_c01146{font-size:69.120000pt;}
.fsb_c01146{font-size:92.160000pt;}
.y0_c01146{bottom:0.000000pt;}
.y84_c01146{bottom:35.840000pt;}
.y81_c01146{bottom:37.120000pt;}
.y83_c01146{bottom:37.760000pt;}
.y82_c01146{bottom:38.400000pt;}
.y80_c01146{bottom:39.680000pt;}
.y7f_c01146{bottom:44.160000pt;}
.y7e_c01146{bottom:73.600000pt;}
.y7c_c01146{bottom:75.520000pt;}
.y7d_c01146{bottom:76.800000pt;}
.y7b_c01146{bottom:77.440000pt;}
.y7a_c01146{bottom:81.280000pt;}
.y78_c01146{bottom:112.000000pt;}
.y76_c01146{bottom:113.280000pt;}
.y79_c01146{bottom:113.920000pt;}
.y77_c01146{bottom:114.560000pt;}
.y75_c01146{bottom:115.200000pt;}
.y74_c01146{bottom:119.680000pt;}
.y73_c01146{bottom:150.400000pt;}
.y72_c01146{bottom:151.040000pt;}
.y71_c01146{bottom:153.600000pt;}
.y70_c01146{bottom:156.800000pt;}
.y6e_c01146{bottom:189.440000pt;}
.y6f_c01146{bottom:190.080000pt;}
.y6c_c01146{bottom:191.360000pt;}
.y6d_c01146{bottom:192.000000pt;}
.y6b_c01146{bottom:195.200000pt;}
.y6a_c01146{bottom:226.560000pt;}
.y69_c01146{bottom:227.200000pt;}
.y67_c01146{bottom:228.480000pt;}
.y66_c01146{bottom:229.760000pt;}
.y68_c01146{bottom:231.040000pt;}
.y65_c01146{bottom:232.960000pt;}
.y64_c01146{bottom:266.240000pt;}
.y62_c01146{bottom:266.880000pt;}
.y60_c01146{bottom:267.520000pt;}
.y63_c01146{bottom:268.160000pt;}
.y61_c01146{bottom:269.440000pt;}
.y5f_c01146{bottom:270.720000pt;}
.y5d_c01146{bottom:304.000000pt;}
.y5c_c01146{bottom:304.640000pt;}
.y59_c01146{bottom:305.280000pt;}
.y5e_c01146{bottom:305.920000pt;}
.y5b_c01146{bottom:307.200000pt;}
.y5a_c01146{bottom:307.840000pt;}
.y58_c01146{bottom:308.480000pt;}
.y57_c01146{bottom:342.400000pt;}
.y56_c01146{bottom:343.040000pt;}
.y54_c01146{bottom:343.680000pt;}
.y53_c01146{bottom:345.600000pt;}
.y55_c01146{bottom:346.240000pt;}
.y52_c01146{bottom:380.160000pt;}
.y50_c01146{bottom:380.800000pt;}
.y4e_c01146{bottom:381.440000pt;}
.y4d_c01146{bottom:382.080000pt;}
.y4f_c01146{bottom:382.720000pt;}
.y51_c01146{bottom:383.360000pt;}
.y4c_c01146{bottom:384.640000pt;}
.y4a_c01146{bottom:419.840000pt;}
.y4b_c01146{bottom:420.480000pt;}
.y49_c01146{bottom:421.760000pt;}
.y48_c01146{bottom:456.960000pt;}
.y45_c01146{bottom:457.600000pt;}
.y47_c01146{bottom:458.240000pt;}
.y46_c01146{bottom:458.880000pt;}
.y44_c01146{bottom:460.160000pt;}
.y41_c01146{bottom:495.360000pt;}
.y43_c01146{bottom:496.640000pt;}
.y40_c01146{bottom:497.280000pt;}
.y42_c01146{bottom:498.560000pt;}
.y3d_c01146{bottom:533.760000pt;}
.y3e_c01146{bottom:534.400000pt;}
.y3f_c01146{bottom:535.040000pt;}
.y3c_c01146{bottom:535.680000pt;}
.y38_c01146{bottom:571.520000pt;}
.y39_c01146{bottom:572.160000pt;}
.y3a_c01146{bottom:572.800000pt;}
.y37_c01146{bottom:573.440000pt;}
.y3b_c01146{bottom:574.720000pt;}
.y33_c01146{bottom:609.280000pt;}
.y32_c01146{bottom:610.560000pt;}
.y35_c01146{bottom:611.200000pt;}
.y36_c01146{bottom:611.840000pt;}
.y34_c01146{bottom:612.480000pt;}
.y2e_c01146{bottom:646.400000pt;}
.y2d_c01146{bottom:648.320000pt;}
.y30_c01146{bottom:649.600000pt;}
.y2f_c01146{bottom:650.880000pt;}
.y31_c01146{bottom:651.520000pt;}
.y28_c01146{bottom:684.800000pt;}
.y27_c01146{bottom:686.080000pt;}
.y2c_c01146{bottom:687.360000pt;}
.y2a_c01146{bottom:688.000000pt;}
.y29_c01146{bottom:689.280000pt;}
.y2b_c01146{bottom:689.920000pt;}
.y23_c01146{bottom:722.560000pt;}
.y22_c01146{bottom:724.480000pt;}
.y26_c01146{bottom:725.120000pt;}
.y25_c01146{bottom:726.400000pt;}
.y24_c01146{bottom:727.680000pt;}
.y1d_c01146{bottom:760.320000pt;}
.y1c_c01146{bottom:761.600000pt;}
.y20_c01146{bottom:763.520000pt;}
.y1f_c01146{bottom:764.160000pt;}
.y1e_c01146{bottom:766.080000pt;}
.y21_c01146{bottom:766.720000pt;}
.y17_c01146{bottom:798.080000pt;}
.y16_c01146{bottom:799.360000pt;}
.y1a_c01146{bottom:801.920000pt;}
.y19_c01146{bottom:803.200000pt;}
.y18_c01146{bottom:805.120000pt;}
.y1b_c01146{bottom:805.760000pt;}
.y12_c01146{bottom:835.840000pt;}
.y11_c01146{bottom:837.120000pt;}
.y14_c01146{bottom:840.960000pt;}
.y13_c01146{bottom:842.880000pt;}
.y15_c01146{bottom:843.520000pt;}
.ye_c01146{bottom:870.400000pt;}
.y9_c01146{bottom:875.520000pt;}
.yb_c01146{bottom:877.440000pt;}
.ya_c01146{bottom:878.080000pt;}
.yc_c01146{bottom:878.720000pt;}
.yd_c01146{bottom:880.000000pt;}
.yf_c01146{bottom:880.640000pt;}
.y10_c01146{bottom:881.920000pt;}
.y2_c01146{bottom:913.920000pt;}
.y3_c01146{bottom:915.840000pt;}
.y6_c01146{bottom:916.480000pt;}
.y4_c01146{bottom:917.760000pt;}
.y5_c01146{bottom:918.400000pt;}
.y7_c01146{bottom:919.040000pt;}
.y8_c01146{bottom:920.320000pt;}
.y1_c01146{bottom:971.520000pt;}
.hc_c01146{height:9.215000pt;}
.h7_c01146{height:27.645000pt;}
.h12_c01146{height:29.948750pt;}
.hb_c01146{height:34.556250pt;}
.h11_c01146{height:36.860000pt;}
.h6_c01146{height:39.163750pt;}
.h4_c01146{height:41.467500pt;}
.ha_c01146{height:43.771250pt;}
.h9_c01146{height:46.075000pt;}
.h8_c01146{height:48.378750pt;}
.h13_c01146{height:48.891250pt;}
.h14_c01146{height:49.913750pt;}
.h3_c01146{height:50.682500pt;}
.hf_c01146{height:52.986250pt;}
.he_c01146{height:55.290000pt;}
.h5_c01146{height:57.593750pt;}
.h2_c01146{height:59.897500pt;}
.h10_c01146{height:62.201250pt;}
.hd_c01146{height:82.935000pt;}
.h1_c01146{height:1018.000000pt;}
.h0_c01146{height:1018.240000pt;}
.w0_c01146{width:692.480000pt;}
.w1_c01146{width:692.666667pt;}
.x0_c01146{left:0.000000pt;}
.x22_c01146{left:64.000000pt;}
.x2_c01146{left:65.280000pt;}
.x3_c01146{left:129.280000pt;}
.x4_c01146{left:167.680000pt;}
.x1a_c01146{left:206.080000pt;}
.x26_c01146{left:224.640000pt;}
.x1b_c01146{left:243.840000pt;}
.x5_c01146{left:263.040000pt;}
.x23_c01146{left:270.720000pt;}
.x20_c01146{left:272.640000pt;}
.x1e_c01146{left:290.560000pt;}
.xd_c01146{left:309.760000pt;}
.x6_c01146{left:311.040000pt;}
.x1f_c01146{left:330.240000pt;}
.x7_c01146{left:348.800000pt;}
.x1d_c01146{left:358.400000pt;}
.xe_c01146{left:387.840000pt;}
.xf_c01146{left:428.160000pt;}
.x8_c01146{left:435.840000pt;}
.x10_c01146{left:437.120000pt;}
.x9_c01146{left:484.480000pt;}
.x21_c01146{left:493.440000pt;}
.x14_c01146{left:494.720000pt;}
.x19_c01146{left:512.640000pt;}
.x15_c01146{left:514.560000pt;}
.x18_c01146{left:531.840000pt;}
.x11_c01146{left:533.120000pt;}
.x17_c01146{left:542.720000pt;}
.x24_c01146{left:561.280000pt;}
.xa_c01146{left:562.560000pt;}
.x16_c01146{left:591.360000pt;}
.xb_c01146{left:592.640000pt;}
.x1_c01146{left:610.560000pt;}
.x12_c01146{left:613.120000pt;}
.x25_c01146{left:621.440000pt;}
.xc_c01146{left:630.400000pt;}
.x1c_c01146{left:631.680000pt;}
.x13_c01146{left:648.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_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_e3516a839021282a974bacc8.woff2')format("woff");}.ff1_c01147{font-family:ff1_c01147;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m51_c01147{transform:matrix(0.168075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168075,0.000000,0.000000,0.250000,0,0);}
.m4f_c01147{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);}
.m30_c01147{transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);}
.m1b_c01147{transform:matrix(0.220275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220275,0.000000,0.000000,0.250000,0,0);}
.m34_c01147{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m3c_c01147{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m8_c01147{transform:matrix(0.237525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237525,0.000000,0.000000,0.250000,0,0);}
.m52_c01147{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m31_c01147{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m26_c01147{transform:matrix(0.238800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238800,0.000000,0.000000,0.250000,0,0);}
.m2_c01147{transform:matrix(0.239425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239425,0.000000,0.000000,0.250000,0,0);}
.m1c_c01147{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m14_c01147{transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);}
.m33_c01147{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m3d_c01147{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.me_c01147{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);}
.m35_c01147{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m4_c01147{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);}
.m4b_c01147{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m18_c01147{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_c01147{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m11_c01147{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m54_c01147{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m13_c01147{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_c01147{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01147{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01147{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m22_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);}
.m9_c01147{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);}
.m4e_c01147{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01147{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m6_c01147{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m5a_c01147{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m3_c01147{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01147{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m57_c01147{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01147{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m16_c01147{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m49_c01147{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01147{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m17_c01147{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m19_c01147{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m7_c01147{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m12_c01147{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01147{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.ma_c01147{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);}
.m42_c01147{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m56_c01147{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1_c01147{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m23_c01147{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);}
.m4d_c01147{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);}
.m32_c01147{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);}
.m55_c01147{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m27_c01147{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);}
.m5_c01147{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m53_c01147{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m41_c01147{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);}
.m50_c01147{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m47_c01147{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);}
.m38_c01147{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);}
.m25_c01147{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);}
.m0_c01147{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m15_c01147{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);}
.m2a_c01147{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m39_c01147{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);}
.m58_c01147{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);}
.m2c_c01147{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01147{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m43_c01147{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m48_c01147{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);}
.m2b_c01147{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m28_c01147{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);}
.m46_c01147{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);}
.m21_c01147{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m44_c01147{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01147{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.md_c01147{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);}
.m4c_c01147{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);}
.m59_c01147{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01147{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_c01147{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m37_c01147{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m29_c01147{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m5b_c01147{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);}
.m24_c01147{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01147{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01147{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.mf_c01147{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);}
.m36_c01147{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);}
.m40_c01147{transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01147{transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);}
.m45_c01147{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.v2_c01147{vertical-align:-8.640000px;}
.v1_c01147{vertical-align:-2.880000px;}
.v0_c01147{vertical-align:0.000000px;}
.ls0_c01147{letter-spacing:0.000000px;}
.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;}
}
.ws3_c01147{word-spacing:0.000000px;}
.ws0_c01147{word-spacing:10.749600px;}
.ws1_c01147{word-spacing:17.295600px;}
.ws2_c01147{word-spacing:56.131200px;}
.fc0_c01147{color:transparent;}
.fs13_c01147{font-size:11.520000px;}
.fs11_c01147{font-size:20.160000px;}
.fs10_c01147{font-size:23.040000px;}
.fs9_c01147{font-size:34.560000px;}
.fsf_c01147{font-size:37.440000px;}
.fs12_c01147{font-size:43.200000px;}
.fsa_c01147{font-size:46.080000px;}
.fs5_c01147{font-size:48.960000px;}
.fs3_c01147{font-size:51.840000px;}
.fs4_c01147{font-size:54.720000px;}
.fsb_c01147{font-size:57.600000px;}
.fs8_c01147{font-size:60.480000px;}
.fs1_c01147{font-size:63.360000px;}
.fs6_c01147{font-size:66.240000px;}
.fsc_c01147{font-size:69.120000px;}
.fs0_c01147{font-size:72.000000px;}
.fs7_c01147{font-size:74.880000px;}
.fsd_c01147{font-size:77.760000px;}
.fs2_c01147{font-size:86.400000px;}
.fse_c01147{font-size:106.560000px;}
.y0_c01147{bottom:0.000000px;}
.yb1_c01147{bottom:73.440000px;}
.yb0_c01147{bottom:74.160000px;}
.yb2_c01147{bottom:74.880000px;}
.yac_c01147{bottom:75.600000px;}
.yaf_c01147{bottom:76.320000px;}
.yab_c01147{bottom:77.760000px;}
.yaa_c01147{bottom:82.080000px;}
.yad_c01147{bottom:116.640000px;}
.yae_c01147{bottom:117.360000px;}
.ya9_c01147{bottom:118.080000px;}
.ya8_c01147{bottom:120.960000px;}
.ya7_c01147{bottom:123.120000px;}
.ya5_c01147{bottom:124.560000px;}
.ya6_c01147{bottom:125.280000px;}
.ya4_c01147{bottom:164.880000px;}
.ya3_c01147{bottom:165.600000px;}
.ya2_c01147{bottom:168.480000px;}
.ya1_c01147{bottom:224.640000px;}
.ya0_c01147{bottom:225.360000px;}
.y9e_c01147{bottom:226.080000px;}
.y9f_c01147{bottom:226.800000px;}
.y9c_c01147{bottom:227.520000px;}
.y9d_c01147{bottom:228.960000px;}
.y95_c01147{bottom:238.320000px;}
.y94_c01147{bottom:240.480000px;}
.y92_c01147{bottom:242.640000px;}
.y93_c01147{bottom:244.080000px;}
.y9b_c01147{bottom:245.520000px;}
.y99_c01147{bottom:247.680000px;}
.y96_c01147{bottom:248.400000px;}
.y9a_c01147{bottom:249.120000px;}
.y98_c01147{bottom:250.560000px;}
.y97_c01147{bottom:251.280000px;}
.y8a_c01147{bottom:259.920000px;}
.y89_c01147{bottom:262.800000px;}
.y88_c01147{bottom:264.240000px;}
.y87_c01147{bottom:264.960000px;}
.y91_c01147{bottom:267.840000px;}
.y90_c01147{bottom:268.560000px;}
.y8e_c01147{bottom:269.280000px;}
.y8f_c01147{bottom:270.720000px;}
.y8d_c01147{bottom:272.160000px;}
.y8c_c01147{bottom:272.880000px;}
.y8b_c01147{bottom:273.600000px;}
.y83_c01147{bottom:281.520000px;}
.y82_c01147{bottom:282.240000px;}
.y81_c01147{bottom:283.680000px;}
.y80_c01147{bottom:285.120000px;}
.y86_c01147{bottom:288.720000px;}
.y85_c01147{bottom:290.160000px;}
.y7e_c01147{bottom:291.600000px;}
.y7f_c01147{bottom:293.040000px;}
.y84_c01147{bottom:293.760000px;}
.y7d_c01147{bottom:304.560000px;}
.y7c_c01147{bottom:306.000000px;}
.y7a_c01147{bottom:318.960000px;}
.y79_c01147{bottom:320.400000px;}
.y7b_c01147{bottom:321.840000px;}
.y77_c01147{bottom:324.000000px;}
.y76_c01147{bottom:325.440000px;}
.y78_c01147{bottom:326.160000px;}
.y75_c01147{bottom:327.600000px;}
.y74_c01147{bottom:329.760000px;}
.y73_c01147{bottom:352.800000px;}
.y6e_c01147{bottom:354.240000px;}
.y6d_c01147{bottom:358.560000px;}
.y6c_c01147{bottom:360.720000px;}
.y72_c01147{bottom:364.320000px;}
.y71_c01147{bottom:365.760000px;}
.y70_c01147{bottom:367.920000px;}
.y6f_c01147{bottom:368.640000px;}
.y6a_c01147{bottom:397.440000px;}
.y6b_c01147{bottom:398.160000px;}
.y66_c01147{bottom:398.880000px;}
.y67_c01147{bottom:399.600000px;}
.y69_c01147{bottom:400.320000px;}
.y68_c01147{bottom:401.040000px;}
.y65_c01147{bottom:408.960000px;}
.y62_c01147{bottom:411.120000px;}
.y63_c01147{bottom:411.840000px;}
.y64_c01147{bottom:415.440000px;}
.y5d_c01147{bottom:420.480000px;}
.y5f_c01147{bottom:429.840000px;}
.y61_c01147{bottom:431.280000px;}
.y60_c01147{bottom:432.000000px;}
.y5e_c01147{bottom:433.440000px;}
.y5c_c01147{bottom:460.080000px;}
.y5b_c01147{bottom:461.520000px;}
.y58_c01147{bottom:462.240000px;}
.y56_c01147{bottom:462.960000px;}
.y57_c01147{bottom:463.680000px;}
.y59_c01147{bottom:465.120000px;}
.y5a_c01147{bottom:466.560000px;}
.y50_c01147{bottom:473.760000px;}
.y51_c01147{bottom:474.480000px;}
.y52_c01147{bottom:475.200000px;}
.y4f_c01147{bottom:476.640000px;}
.y55_c01147{bottom:485.280000px;}
.y53_c01147{bottom:486.000000px;}
.y54_c01147{bottom:486.720000px;}
.y4c_c01147{bottom:524.160000px;}
.y49_c01147{bottom:524.880000px;}
.y4b_c01147{bottom:525.600000px;}
.y4e_c01147{bottom:526.320000px;}
.y4d_c01147{bottom:527.040000px;}
.y48_c01147{bottom:527.760000px;}
.y4a_c01147{bottom:528.480000px;}
.y45_c01147{bottom:567.360000px;}
.y46_c01147{bottom:568.080000px;}
.y47_c01147{bottom:568.800000px;}
.y44_c01147{bottom:569.520000px;}
.y3f_c01147{bottom:609.840000px;}
.y42_c01147{bottom:610.560000px;}
.y40_c01147{bottom:612.000000px;}
.y3e_c01147{bottom:612.720000px;}
.y41_c01147{bottom:613.440000px;}
.y43_c01147{bottom:614.880000px;}
.y3a_c01147{bottom:653.040000px;}
.y3b_c01147{bottom:654.480000px;}
.y39_c01147{bottom:655.200000px;}
.y3c_c01147{bottom:655.920000px;}
.y3d_c01147{bottom:658.080000px;}
.y33_c01147{bottom:696.960000px;}
.y34_c01147{bottom:697.680000px;}
.y37_c01147{bottom:698.400000px;}
.y38_c01147{bottom:699.120000px;}
.y35_c01147{bottom:699.840000px;}
.y36_c01147{bottom:700.560000px;}
.y2e_c01147{bottom:739.440000px;}
.y2d_c01147{bottom:740.160000px;}
.y2f_c01147{bottom:740.880000px;}
.y30_c01147{bottom:743.040000px;}
.y32_c01147{bottom:743.760000px;}
.y31_c01147{bottom:744.480000px;}
.y2a_c01147{bottom:782.640000px;}
.y29_c01147{bottom:783.360000px;}
.y2b_c01147{bottom:785.520000px;}
.y2c_c01147{bottom:786.240000px;}
.y24_c01147{bottom:824.400000px;}
.y23_c01147{bottom:825.840000px;}
.y26_c01147{bottom:826.560000px;}
.y27_c01147{bottom:828.720000px;}
.y25_c01147{bottom:829.440000px;}
.y28_c01147{bottom:830.880000px;}
.y1d_c01147{bottom:859.680000px;}
.y22_c01147{bottom:862.560000px;}
.y1b_c01147{bottom:866.160000px;}
.y1a_c01147{bottom:867.600000px;}
.y1c_c01147{bottom:868.320000px;}
.y1e_c01147{bottom:871.200000px;}
.y20_c01147{bottom:871.920000px;}
.y1f_c01147{bottom:873.360000px;}
.y21_c01147{bottom:874.800000px;}
.y14_c01147{bottom:909.360000px;}
.y13_c01147{bottom:910.800000px;}
.y16_c01147{bottom:911.520000px;}
.y15_c01147{bottom:913.680000px;}
.y18_c01147{bottom:914.400000px;}
.y19_c01147{bottom:915.840000px;}
.y17_c01147{bottom:916.560000px;}
.yd_c01147{bottom:951.120000px;}
.yc_c01147{bottom:952.560000px;}
.yf_c01147{bottom:954.000000px;}
.ye_c01147{bottom:956.880000px;}
.y11_c01147{bottom:959.040000px;}
.y10_c01147{bottom:959.760000px;}
.y12_c01147{bottom:961.200000px;}
.y7_c01147{bottom:994.320000px;}
.y8_c01147{bottom:996.480000px;}
.ya_c01147{bottom:1000.800000px;}
.yb_c01147{bottom:1001.520000px;}
.y9_c01147{bottom:1002.240000px;}
.y3_c01147{bottom:1036.800000px;}
.y2_c01147{bottom:1037.520000px;}
.y4_c01147{bottom:1044.720000px;}
.y6_c01147{bottom:1045.440000px;}
.y5_c01147{bottom:1046.160000px;}
.y1_c01147{bottom:1105.920000px;}
.h15_c01147{height:10.366875px;}
.h13_c01147{height:18.142031px;}
.h12_c01147{height:20.733750px;}
.hb_c01147{height:31.100625px;}
.h11_c01147{height:33.692344px;}
.h14_c01147{height:38.875781px;}
.hc_c01147{height:41.467500px;}
.h7_c01147{height:44.059219px;}
.h5_c01147{height:46.650937px;}
.h6_c01147{height:49.242656px;}
.hd_c01147{height:51.834375px;}
.ha_c01147{height:54.426094px;}
.h3_c01147{height:57.017812px;}
.h8_c01147{height:59.609531px;}
.he_c01147{height:62.201250px;}
.h2_c01147{height:64.792969px;}
.h9_c01147{height:67.384687px;}
.hf_c01147{height:69.976406px;}
.h4_c01147{height:77.751563px;}
.h10_c01147{height:95.893594px;}
.h1_c01147{height:1149.000000px;}
.h0_c01147{height:1149.120000px;}
.w1_c01147{width:783.000000px;}
.w0_c01147{width:783.360000px;}
.x0_c01147{left:0.000000px;}
.x2_c01147{left:72.000000px;}
.x36_c01147{left:73.440000px;}
.x46_c01147{left:82.800000px;}
.x42_c01147{left:84.240000px;}
.x37_c01147{left:103.680000px;}
.x27_c01147{left:105.120000px;}
.x4c_c01147{left:115.200000px;}
.x43_c01147{left:125.280000px;}
.x3_c01147{left:144.720000px;}
.x13_c01147{left:146.160000px;}
.x47_c01147{left:157.680000px;}
.x38_c01147{left:168.480000px;}
.x28_c01147{left:177.120000px;}
.x50_c01147{left:187.920000px;}
.x39_c01147{left:198.720000px;}
.x4e_c01147{left:200.160000px;}
.x41_c01147{left:220.320000px;}
.x44_c01147{left:221.760000px;}
.x4f_c01147{left:229.680000px;}
.x14_c01147{left:231.120000px;}
.x29_c01147{left:233.280000px;}
.x9_c01147{left:241.920000px;}
.x31_c01147{left:253.440000px;}
.x3a_c01147{left:264.960000px;}
.x23_c01147{left:274.320000px;}
.xb_c01147{left:283.680000px;}
.x1d_c01147{left:285.120000px;}
.x21_c01147{left:293.760000px;}
.x1a_c01147{left:295.200000px;}
.x48_c01147{left:297.360000px;}
.xe_c01147{left:316.800000px;}
.xd_c01147{left:326.160000px;}
.x24_c01147{left:328.320000px;}
.x15_c01147{left:338.400000px;}
.x1b_c01147{left:348.480000px;}
.x2c_c01147{left:349.920000px;}
.x25_c01147{left:370.080000px;}
.x32_c01147{left:371.520000px;}
.x11_c01147{left:380.880000px;}
.x49_c01147{left:383.040000px;}
.x1c_c01147{left:391.680000px;}
.x3b_c01147{left:393.120000px;}
.x2a_c01147{left:403.920000px;}
.x16_c01147{left:424.080000px;}
.x3c_c01147{left:425.520000px;}
.x12_c01147{left:434.880000px;}
.x45_c01147{left:447.120000px;}
.x4a_c01147{left:448.560000px;}
.xf_c01147{left:456.480000px;}
.x2b_c01147{left:458.640000px;}
.x3d_c01147{left:468.720000px;}
.x17_c01147{left:480.240000px;}
.x2d_c01147{left:489.600000px;}
.x3e_c01147{left:491.040000px;}
.x26_c01147{left:501.120000px;}
.x10_c01147{left:522.000000px;}
.x2e_c01147{left:523.440000px;}
.x3f_c01147{left:534.960000px;}
.x4_c01147{left:545.040000px;}
.x2f_c01147{left:555.120000px;}
.x4b_c01147{left:568.080000px;}
.x5_c01147{left:576.720000px;}
.x33_c01147{left:578.160000px;}
.x30_c01147{left:589.680000px;}
.xc_c01147{left:598.320000px;}
.x1f_c01147{left:599.760000px;}
.x22_c01147{left:609.840000px;}
.x4d_c01147{left:611.280000px;}
.x18_c01147{left:630.720000px;}
.x6_c01147{left:632.160000px;}
.x40_c01147{left:643.680000px;}
.x7_c01147{left:665.280000px;}
.x51_c01147{left:666.720000px;}
.x20_c01147{left:676.800000px;}
.x1_c01147{left:684.720000px;}
.x34_c01147{left:688.320000px;}
.x19_c01147{left:698.400000px;}
.x8_c01147{left:708.480000px;}
.x1e_c01147{left:709.920000px;}
.x35_c01147{left:719.280000px;}
.xa_c01147{left:728.640000px;}
.x52_c01147{left:730.800000px;}
@media print{
.v2_c01147{vertical-align:-7.680000pt;}
.v1_c01147{vertical-align:-2.560000pt;}
.v0_c01147{vertical-align:0.000000pt;}
.ls0_c01147{letter-spacing:0.000000pt;}
.ws3_c01147{word-spacing:0.000000pt;}
.ws0_c01147{word-spacing:9.555200pt;}
.ws1_c01147{word-spacing:15.373867pt;}
.ws2_c01147{word-spacing:49.894400pt;}
.fs13_c01147{font-size:10.240000pt;}
.fs11_c01147{font-size:17.920000pt;}
.fs10_c01147{font-size:20.480000pt;}
.fs9_c01147{font-size:30.720000pt;}
.fsf_c01147{font-size:33.280000pt;}
.fs12_c01147{font-size:38.400000pt;}
.fsa_c01147{font-size:40.960000pt;}
.fs5_c01147{font-size:43.520000pt;}
.fs3_c01147{font-size:46.080000pt;}
.fs4_c01147{font-size:48.640000pt;}
.fsb_c01147{font-size:51.200000pt;}
.fs8_c01147{font-size:53.760000pt;}
.fs1_c01147{font-size:56.320000pt;}
.fs6_c01147{font-size:58.880000pt;}
.fsc_c01147{font-size:61.440000pt;}
.fs0_c01147{font-size:64.000000pt;}
.fs7_c01147{font-size:66.560000pt;}
.fsd_c01147{font-size:69.120000pt;}
.fs2_c01147{font-size:76.800000pt;}
.fse_c01147{font-size:94.720000pt;}
.y0_c01147{bottom:0.000000pt;}
.yb1_c01147{bottom:65.280000pt;}
.yb0_c01147{bottom:65.920000pt;}
.yb2_c01147{bottom:66.560000pt;}
.yac_c01147{bottom:67.200000pt;}
.yaf_c01147{bottom:67.840000pt;}
.yab_c01147{bottom:69.120000pt;}
.yaa_c01147{bottom:72.960000pt;}
.yad_c01147{bottom:103.680000pt;}
.yae_c01147{bottom:104.320000pt;}
.ya9_c01147{bottom:104.960000pt;}
.ya8_c01147{bottom:107.520000pt;}
.ya7_c01147{bottom:109.440000pt;}
.ya5_c01147{bottom:110.720000pt;}
.ya6_c01147{bottom:111.360000pt;}
.ya4_c01147{bottom:146.560000pt;}
.ya3_c01147{bottom:147.200000pt;}
.ya2_c01147{bottom:149.760000pt;}
.ya1_c01147{bottom:199.680000pt;}
.ya0_c01147{bottom:200.320000pt;}
.y9e_c01147{bottom:200.960000pt;}
.y9f_c01147{bottom:201.600000pt;}
.y9c_c01147{bottom:202.240000pt;}
.y9d_c01147{bottom:203.520000pt;}
.y95_c01147{bottom:211.840000pt;}
.y94_c01147{bottom:213.760000pt;}
.y92_c01147{bottom:215.680000pt;}
.y93_c01147{bottom:216.960000pt;}
.y9b_c01147{bottom:218.240000pt;}
.y99_c01147{bottom:220.160000pt;}
.y96_c01147{bottom:220.800000pt;}
.y9a_c01147{bottom:221.440000pt;}
.y98_c01147{bottom:222.720000pt;}
.y97_c01147{bottom:223.360000pt;}
.y8a_c01147{bottom:231.040000pt;}
.y89_c01147{bottom:233.600000pt;}
.y88_c01147{bottom:234.880000pt;}
.y87_c01147{bottom:235.520000pt;}
.y91_c01147{bottom:238.080000pt;}
.y90_c01147{bottom:238.720000pt;}
.y8e_c01147{bottom:239.360000pt;}
.y8f_c01147{bottom:240.640000pt;}
.y8d_c01147{bottom:241.920000pt;}
.y8c_c01147{bottom:242.560000pt;}
.y8b_c01147{bottom:243.200000pt;}
.y83_c01147{bottom:250.240000pt;}
.y82_c01147{bottom:250.880000pt;}
.y81_c01147{bottom:252.160000pt;}
.y80_c01147{bottom:253.440000pt;}
.y86_c01147{bottom:256.640000pt;}
.y85_c01147{bottom:257.920000pt;}
.y7e_c01147{bottom:259.200000pt;}
.y7f_c01147{bottom:260.480000pt;}
.y84_c01147{bottom:261.120000pt;}
.y7d_c01147{bottom:270.720000pt;}
.y7c_c01147{bottom:272.000000pt;}
.y7a_c01147{bottom:283.520000pt;}
.y79_c01147{bottom:284.800000pt;}
.y7b_c01147{bottom:286.080000pt;}
.y77_c01147{bottom:288.000000pt;}
.y76_c01147{bottom:289.280000pt;}
.y78_c01147{bottom:289.920000pt;}
.y75_c01147{bottom:291.200000pt;}
.y74_c01147{bottom:293.120000pt;}
.y73_c01147{bottom:313.600000pt;}
.y6e_c01147{bottom:314.880000pt;}
.y6d_c01147{bottom:318.720000pt;}
.y6c_c01147{bottom:320.640000pt;}
.y72_c01147{bottom:323.840000pt;}
.y71_c01147{bottom:325.120000pt;}
.y70_c01147{bottom:327.040000pt;}
.y6f_c01147{bottom:327.680000pt;}
.y6a_c01147{bottom:353.280000pt;}
.y6b_c01147{bottom:353.920000pt;}
.y66_c01147{bottom:354.560000pt;}
.y67_c01147{bottom:355.200000pt;}
.y69_c01147{bottom:355.840000pt;}
.y68_c01147{bottom:356.480000pt;}
.y65_c01147{bottom:363.520000pt;}
.y62_c01147{bottom:365.440000pt;}
.y63_c01147{bottom:366.080000pt;}
.y64_c01147{bottom:369.280000pt;}
.y5d_c01147{bottom:373.760000pt;}
.y5f_c01147{bottom:382.080000pt;}
.y61_c01147{bottom:383.360000pt;}
.y60_c01147{bottom:384.000000pt;}
.y5e_c01147{bottom:385.280000pt;}
.y5c_c01147{bottom:408.960000pt;}
.y5b_c01147{bottom:410.240000pt;}
.y58_c01147{bottom:410.880000pt;}
.y56_c01147{bottom:411.520000pt;}
.y57_c01147{bottom:412.160000pt;}
.y59_c01147{bottom:413.440000pt;}
.y5a_c01147{bottom:414.720000pt;}
.y50_c01147{bottom:421.120000pt;}
.y51_c01147{bottom:421.760000pt;}
.y52_c01147{bottom:422.400000pt;}
.y4f_c01147{bottom:423.680000pt;}
.y55_c01147{bottom:431.360000pt;}
.y53_c01147{bottom:432.000000pt;}
.y54_c01147{bottom:432.640000pt;}
.y4c_c01147{bottom:465.920000pt;}
.y49_c01147{bottom:466.560000pt;}
.y4b_c01147{bottom:467.200000pt;}
.y4e_c01147{bottom:467.840000pt;}
.y4d_c01147{bottom:468.480000pt;}
.y48_c01147{bottom:469.120000pt;}
.y4a_c01147{bottom:469.760000pt;}
.y45_c01147{bottom:504.320000pt;}
.y46_c01147{bottom:504.960000pt;}
.y47_c01147{bottom:505.600000pt;}
.y44_c01147{bottom:506.240000pt;}
.y3f_c01147{bottom:542.080000pt;}
.y42_c01147{bottom:542.720000pt;}
.y40_c01147{bottom:544.000000pt;}
.y3e_c01147{bottom:544.640000pt;}
.y41_c01147{bottom:545.280000pt;}
.y43_c01147{bottom:546.560000pt;}
.y3a_c01147{bottom:580.480000pt;}
.y3b_c01147{bottom:581.760000pt;}
.y39_c01147{bottom:582.400000pt;}
.y3c_c01147{bottom:583.040000pt;}
.y3d_c01147{bottom:584.960000pt;}
.y33_c01147{bottom:619.520000pt;}
.y34_c01147{bottom:620.160000pt;}
.y37_c01147{bottom:620.800000pt;}
.y38_c01147{bottom:621.440000pt;}
.y35_c01147{bottom:622.080000pt;}
.y36_c01147{bottom:622.720000pt;}
.y2e_c01147{bottom:657.280000pt;}
.y2d_c01147{bottom:657.920000pt;}
.y2f_c01147{bottom:658.560000pt;}
.y30_c01147{bottom:660.480000pt;}
.y32_c01147{bottom:661.120000pt;}
.y31_c01147{bottom:661.760000pt;}
.y2a_c01147{bottom:695.680000pt;}
.y29_c01147{bottom:696.320000pt;}
.y2b_c01147{bottom:698.240000pt;}
.y2c_c01147{bottom:698.880000pt;}
.y24_c01147{bottom:732.800000pt;}
.y23_c01147{bottom:734.080000pt;}
.y26_c01147{bottom:734.720000pt;}
.y27_c01147{bottom:736.640000pt;}
.y25_c01147{bottom:737.280000pt;}
.y28_c01147{bottom:738.560000pt;}
.y1d_c01147{bottom:764.160000pt;}
.y22_c01147{bottom:766.720000pt;}
.y1b_c01147{bottom:769.920000pt;}
.y1a_c01147{bottom:771.200000pt;}
.y1c_c01147{bottom:771.840000pt;}
.y1e_c01147{bottom:774.400000pt;}
.y20_c01147{bottom:775.040000pt;}
.y1f_c01147{bottom:776.320000pt;}
.y21_c01147{bottom:777.600000pt;}
.y14_c01147{bottom:808.320000pt;}
.y13_c01147{bottom:809.600000pt;}
.y16_c01147{bottom:810.240000pt;}
.y15_c01147{bottom:812.160000pt;}
.y18_c01147{bottom:812.800000pt;}
.y19_c01147{bottom:814.080000pt;}
.y17_c01147{bottom:814.720000pt;}
.yd_c01147{bottom:845.440000pt;}
.yc_c01147{bottom:846.720000pt;}
.yf_c01147{bottom:848.000000pt;}
.ye_c01147{bottom:850.560000pt;}
.y11_c01147{bottom:852.480000pt;}
.y10_c01147{bottom:853.120000pt;}
.y12_c01147{bottom:854.400000pt;}
.y7_c01147{bottom:883.840000pt;}
.y8_c01147{bottom:885.760000pt;}
.ya_c01147{bottom:889.600000pt;}
.yb_c01147{bottom:890.240000pt;}
.y9_c01147{bottom:890.880000pt;}
.y3_c01147{bottom:921.600000pt;}
.y2_c01147{bottom:922.240000pt;}
.y4_c01147{bottom:928.640000pt;}
.y6_c01147{bottom:929.280000pt;}
.y5_c01147{bottom:929.920000pt;}
.y1_c01147{bottom:983.040000pt;}
.h15_c01147{height:9.215000pt;}
.h13_c01147{height:16.126250pt;}
.h12_c01147{height:18.430000pt;}
.hb_c01147{height:27.645000pt;}
.h11_c01147{height:29.948750pt;}
.h14_c01147{height:34.556250pt;}
.hc_c01147{height:36.860000pt;}
.h7_c01147{height:39.163750pt;}
.h5_c01147{height:41.467500pt;}
.h6_c01147{height:43.771250pt;}
.hd_c01147{height:46.075000pt;}
.ha_c01147{height:48.378750pt;}
.h3_c01147{height:50.682500pt;}
.h8_c01147{height:52.986250pt;}
.he_c01147{height:55.290000pt;}
.h2_c01147{height:57.593750pt;}
.h9_c01147{height:59.897500pt;}
.hf_c01147{height:62.201250pt;}
.h4_c01147{height:69.112500pt;}
.h10_c01147{height:85.238750pt;}
.h1_c01147{height:1021.333333pt;}
.h0_c01147{height:1021.440000pt;}
.w1_c01147{width:696.000000pt;}
.w0_c01147{width:696.320000pt;}
.x0_c01147{left:0.000000pt;}
.x2_c01147{left:64.000000pt;}
.x36_c01147{left:65.280000pt;}
.x46_c01147{left:73.600000pt;}
.x42_c01147{left:74.880000pt;}
.x37_c01147{left:92.160000pt;}
.x27_c01147{left:93.440000pt;}
.x4c_c01147{left:102.400000pt;}
.x43_c01147{left:111.360000pt;}
.x3_c01147{left:128.640000pt;}
.x13_c01147{left:129.920000pt;}
.x47_c01147{left:140.160000pt;}
.x38_c01147{left:149.760000pt;}
.x28_c01147{left:157.440000pt;}
.x50_c01147{left:167.040000pt;}
.x39_c01147{left:176.640000pt;}
.x4e_c01147{left:177.920000pt;}
.x41_c01147{left:195.840000pt;}
.x44_c01147{left:197.120000pt;}
.x4f_c01147{left:204.160000pt;}
.x14_c01147{left:205.440000pt;}
.x29_c01147{left:207.360000pt;}
.x9_c01147{left:215.040000pt;}
.x31_c01147{left:225.280000pt;}
.x3a_c01147{left:235.520000pt;}
.x23_c01147{left:243.840000pt;}
.xb_c01147{left:252.160000pt;}
.x1d_c01147{left:253.440000pt;}
.x21_c01147{left:261.120000pt;}
.x1a_c01147{left:262.400000pt;}
.x48_c01147{left:264.320000pt;}
.xe_c01147{left:281.600000pt;}
.xd_c01147{left:289.920000pt;}
.x24_c01147{left:291.840000pt;}
.x15_c01147{left:300.800000pt;}
.x1b_c01147{left:309.760000pt;}
.x2c_c01147{left:311.040000pt;}
.x25_c01147{left:328.960000pt;}
.x32_c01147{left:330.240000pt;}
.x11_c01147{left:338.560000pt;}
.x49_c01147{left:340.480000pt;}
.x1c_c01147{left:348.160000pt;}
.x3b_c01147{left:349.440000pt;}
.x2a_c01147{left:359.040000pt;}
.x16_c01147{left:376.960000pt;}
.x3c_c01147{left:378.240000pt;}
.x12_c01147{left:386.560000pt;}
.x45_c01147{left:397.440000pt;}
.x4a_c01147{left:398.720000pt;}
.xf_c01147{left:405.760000pt;}
.x2b_c01147{left:407.680000pt;}
.x3d_c01147{left:416.640000pt;}
.x17_c01147{left:426.880000pt;}
.x2d_c01147{left:435.200000pt;}
.x3e_c01147{left:436.480000pt;}
.x26_c01147{left:445.440000pt;}
.x10_c01147{left:464.000000pt;}
.x2e_c01147{left:465.280000pt;}
.x3f_c01147{left:475.520000pt;}
.x4_c01147{left:484.480000pt;}
.x2f_c01147{left:493.440000pt;}
.x4b_c01147{left:504.960000pt;}
.x5_c01147{left:512.640000pt;}
.x33_c01147{left:513.920000pt;}
.x30_c01147{left:524.160000pt;}
.xc_c01147{left:531.840000pt;}
.x1f_c01147{left:533.120000pt;}
.x22_c01147{left:542.080000pt;}
.x4d_c01147{left:543.360000pt;}
.x18_c01147{left:560.640000pt;}
.x6_c01147{left:561.920000pt;}
.x40_c01147{left:572.160000pt;}
.x7_c01147{left:591.360000pt;}
.x51_c01147{left:592.640000pt;}
.x20_c01147{left:601.600000pt;}
.x1_c01147{left:608.640000pt;}
.x34_c01147{left:611.840000pt;}
.x19_c01147{left:620.800000pt;}
.x8_c01147{left:629.760000pt;}
.x1e_c01147{left:631.040000pt;}
.x35_c01147{left:639.360000pt;}
.xa_c01147{left:647.680000pt;}
.x52_c01147{left:649.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3bda633a26f56b6cf672dd3d.woff2')format("woff");}.ff1_c01148{font-family:ff1_c01148;line-height:1.109863;font-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_c01148{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_c01148{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m16_c01148{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);}
.m3f_c01148{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);}
.m33_c01148{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_c01148{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);}
.m2d_c01148{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m21_c01148{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);}
.m41_c01148{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m3_c01148{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m22_c01148{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m28_c01148{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m9_c01148{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);}
.m30_c01148{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);}
.m3a_c01148{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m20_c01148{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m8_c01148{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01148{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1_c01148{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m13_c01148{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m15_c01148{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m31_c01148{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m35_c01148{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m26_c01148{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m12_c01148{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m14_c01148{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m32_c01148{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01148{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mc_c01148{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m23_c01148{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);}
.m2c_c01148{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01148{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);}
.m2_c01148{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m0_c01148{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.mf_c01148{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);}
.m40_c01148{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);}
.m5_c01148{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m4_c01148{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);}
.m3c_c01148{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);}
.m29_c01148{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m6_c01148{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);}
.m18_c01148{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m17_c01148{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.me_c01148{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);}
.m25_c01148{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.md_c01148{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01148{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m34_c01148{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m7_c01148{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);}
.m24_c01148{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m19_c01148{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01148{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01148{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m10_c01148{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);}
.m1f_c01148{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.mb_c01148{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.ma_c01148{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);}
.m3e_c01148{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01148{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m27_c01148{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);}
.m36_c01148{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m38_c01148{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);}
.m39_c01148{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01148{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01148{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m37_c01148{transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);}
.v0_c01148{vertical-align:0.000000px;}
.v1_c01148{vertical-align:2.880000px;}
.ls1_c01148{letter-spacing:0.000000px;}
.ls0_c01148{letter-spacing:139.763520px;}
.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;}
}
.ws1_c01148{word-spacing:0.000000px;}
.ws0_c01148{word-spacing:200.384400px;}
.fc0_c01148{color:transparent;}
.fs7_c01148{font-size:23.040000px;}
.fsa_c01148{font-size:34.560000px;}
.fs8_c01148{font-size:40.320000px;}
.fs2_c01148{font-size:43.200000px;}
.fs3_c01148{font-size:46.080000px;}
.fs6_c01148{font-size:48.960000px;}
.fs4_c01148{font-size:51.840000px;}
.fs5_c01148{font-size:54.720000px;}
.fs9_c01148{font-size:57.600000px;}
.fs0_c01148{font-size:60.480000px;}
.fsd_c01148{font-size:63.360000px;}
.fse_c01148{font-size:66.240000px;}
.fs1_c01148{font-size:69.120000px;}
.fsb_c01148{font-size:72.000000px;}
.fsc_c01148{font-size:74.880000px;}
.y0_c01148{bottom:0.000000px;}
.y49_c01148{bottom:66.240000px;}
.y77_c01148{bottom:66.960000px;}
.y78_c01148{bottom:67.680000px;}
.y47_c01148{bottom:69.120000px;}
.y48_c01148{bottom:71.280000px;}
.y46_c01148{bottom:109.440000px;}
.y76_c01148{bottom:110.160000px;}
.y45_c01148{bottom:113.760000px;}
.y44_c01148{bottom:151.920000px;}
.y74_c01148{bottom:152.640000px;}
.y75_c01148{bottom:153.360000px;}
.y43_c01148{bottom:154.800000px;}
.y41_c01148{bottom:156.240000px;}
.y42_c01148{bottom:156.960000px;}
.y40_c01148{bottom:194.400000px;}
.y72_c01148{bottom:195.840000px;}
.y71_c01148{bottom:196.560000px;}
.y73_c01148{bottom:197.280000px;}
.y3e_c01148{bottom:198.000000px;}
.y3f_c01148{bottom:199.440000px;}
.y3d_c01148{bottom:236.880000px;}
.y70_c01148{bottom:239.040000px;}
.y3c_c01148{bottom:240.480000px;}
.y3b_c01148{bottom:280.080000px;}
.y6f_c01148{bottom:280.800000px;}
.y6e_c01148{bottom:281.520000px;}
.y39_c01148{bottom:282.240000px;}
.y3a_c01148{bottom:285.120000px;}
.y38_c01148{bottom:322.560000px;}
.y6b_c01148{bottom:324.720000px;}
.y6c_c01148{bottom:325.440000px;}
.y36_c01148{bottom:326.160000px;}
.y6d_c01148{bottom:326.880000px;}
.y37_c01148{bottom:327.600000px;}
.y35_c01148{bottom:365.760000px;}
.y34_c01148{bottom:367.920000px;}
.y6a_c01148{bottom:369.360000px;}
.y33_c01148{bottom:408.240000px;}
.y31_c01148{bottom:411.120000px;}
.y69_c01148{bottom:411.840000px;}
.y32_c01148{bottom:412.560000px;}
.y30_c01148{bottom:450.720000px;}
.y2e_c01148{bottom:453.600000px;}
.y67_c01148{bottom:454.320000px;}
.y2f_c01148{bottom:455.040000px;}
.y68_c01148{bottom:457.200000px;}
.y2d_c01148{bottom:494.640000px;}
.y2c_c01148{bottom:495.360000px;}
.y29_c01148{bottom:496.080000px;}
.y2b_c01148{bottom:497.520000px;}
.y2a_c01148{bottom:498.240000px;}
.y66_c01148{bottom:498.960000px;}
.y28_c01148{bottom:537.120000px;}
.y26_c01148{bottom:538.560000px;}
.y27_c01148{bottom:540.720000px;}
.y63_c01148{bottom:541.440000px;}
.y64_c01148{bottom:542.160000px;}
.y65_c01148{bottom:544.320000px;}
.y25_c01148{bottom:579.600000px;}
.y23_c01148{bottom:581.040000px;}
.y24_c01148{bottom:583.200000px;}
.y5f_c01148{bottom:583.920000px;}
.y60_c01148{bottom:585.360000px;}
.y61_c01148{bottom:586.800000px;}
.y62_c01148{bottom:587.520000px;}
.y22_c01148{bottom:622.800000px;}
.y20_c01148{bottom:624.240000px;}
.y21_c01148{bottom:625.680000px;}
.y5c_c01148{bottom:627.120000px;}
.y5e_c01148{bottom:628.560000px;}
.y5d_c01148{bottom:630.000000px;}
.y1f_c01148{bottom:665.280000px;}
.y1d_c01148{bottom:666.000000px;}
.y1e_c01148{bottom:668.880000px;}
.y59_c01148{bottom:670.320000px;}
.y5a_c01148{bottom:671.040000px;}
.y5b_c01148{bottom:673.920000px;}
.y1a_c01148{bottom:708.480000px;}
.y1c_c01148{bottom:710.640000px;}
.y1b_c01148{bottom:711.360000px;}
.y56_c01148{bottom:713.520000px;}
.y57_c01148{bottom:714.240000px;}
.y58_c01148{bottom:716.400000px;}
.y17_c01148{bottom:750.960000px;}
.y19_c01148{bottom:753.840000px;}
.y18_c01148{bottom:754.560000px;}
.y13_c01148{bottom:814.320000px;}
.y15_c01148{bottom:815.760000px;}
.y14_c01148{bottom:817.200000px;}
.y16_c01148{bottom:818.640000px;}
.y11_c01148{bottom:837.360000px;}
.y12_c01148{bottom:839.520000px;}
.y10_c01148{bottom:858.960000px;}
.yd_c01148{bottom:890.640000px;}
.ye_c01148{bottom:892.080000px;}
.yf_c01148{bottom:900.000000px;}
.y55_c01148{bottom:919.440000px;}
.y9_c01148{bottom:935.280000px;}
.y6_c01148{bottom:941.760000px;}
.y5_c01148{bottom:943.920000px;}
.y7_c01148{bottom:945.360000px;}
.ya_c01148{bottom:946.080000px;}
.yc_c01148{bottom:947.520000px;}
.yb_c01148{bottom:948.240000px;}
.y4a_c01148{bottom:948.960000px;}
.y4b_c01148{bottom:951.120000px;}
.y53_c01148{bottom:952.560000px;}
.y54_c01148{bottom:954.000000px;}
.y8_c01148{bottom:958.320000px;}
.y3_c01148{bottom:984.960000px;}
.y4_c01148{bottom:985.680000px;}
.y51_c01148{bottom:994.320000px;}
.y50_c01148{bottom:995.760000px;}
.y52_c01148{bottom:997.200000px;}
.y1_c01148{bottom:1028.160000px;}
.y2_c01148{bottom:1028.880000px;}
.y4e_c01148{bottom:1038.240000px;}
.y4d_c01148{bottom:1039.680000px;}
.y4f_c01148{bottom:1041.120000px;}
.y4c_c01148{bottom:1119.600000px;}
.h9_c01148{height:20.733750px;}
.hd_c01148{height:31.100625px;}
.ha_c01148{height:36.284062px;}
.h4_c01148{height:38.875781px;}
.h5_c01148{height:41.467500px;}
.h8_c01148{height:44.059219px;}
.hb_c01148{height:44.347500px;}
.h6_c01148{height:46.650937px;}
.h7_c01148{height:49.242656px;}
.hc_c01148{height:51.834375px;}
.h2_c01148{height:54.426094px;}
.h10_c01148{height:57.017812px;}
.h12_c01148{height:57.306094px;}
.h11_c01148{height:59.609531px;}
.h3_c01148{height:62.201250px;}
.he_c01148{height:64.792969px;}
.hf_c01148{height:67.384687px;}
.h0_c01148{height:1153.440000px;}
.h1_c01148{height:1153.500000px;}
.w1_c01148{width:789.750000px;}
.w0_c01148{width:789.840000px;}
.x0_c01148{left:0.000000px;}
.x1_c01148{left:73.440000px;}
.x3_c01148{left:74.880000px;}
.x10_c01148{left:76.320000px;}
.x18_c01148{left:77.760000px;}
.x1f_c01148{left:79.200000px;}
.x23_c01148{left:80.640000px;}
.x26_c01148{left:82.080000px;}
.xd_c01148{left:86.400000px;}
.x4_c01148{left:105.840000px;}
.x11_c01148{left:128.160000px;}
.x2_c01148{left:146.160000px;}
.x16_c01148{left:149.040000px;}
.x1a_c01148{left:150.480000px;}
.x20_c01148{left:151.920000px;}
.x22_c01148{left:153.360000px;}
.x27_c01148{left:154.800000px;}
.xe_c01148{left:169.920000px;}
.x5_c01148{left:178.560000px;}
.xb_c01148{left:180.000000px;}
.x17_c01148{left:192.240000px;}
.x19_c01148{left:193.680000px;}
.x1e_c01148{left:195.840000px;}
.x24_c01148{left:197.280000px;}
.x21_c01148{left:205.920000px;}
.x13_c01148{left:213.120000px;}
.xc_c01148{left:222.480000px;}
.xf_c01148{left:223.920000px;}
.x6_c01148{left:233.280000px;}
.x12_c01148{left:235.440000px;}
.x1b_c01148{left:236.880000px;}
.x25_c01148{left:239.760000px;}
.x14_c01148{left:246.240000px;}
.x15_c01148{left:280.080000px;}
.x7_c01148{left:286.560000px;}
.x1c_c01148{left:290.160000px;}
.x8_c01148{left:308.160000px;}
.x1d_c01148{left:332.640000px;}
.x9_c01148{left:362.160000px;}
.xa_c01148{left:383.040000px;}
.x28_c01148{left:447.840000px;}
.x29_c01148{left:468.720000px;}
.x30_c01148{left:546.480000px;}
.x34_c01148{left:548.640000px;}
.x3e_c01148{left:550.800000px;}
.x43_c01148{left:552.240000px;}
.x4a_c01148{left:553.680000px;}
.x2b_c01148{left:557.280000px;}
.x31_c01148{left:569.520000px;}
.x2c_c01148{left:578.880000px;}
.x49_c01148{left:586.800000px;}
.x32_c01148{left:588.960000px;}
.x35_c01148{left:603.360000px;}
.x3c_c01148{left:604.800000px;}
.x41_c01148{left:606.240000px;}
.x4c_c01148{left:609.120000px;}
.x47_c01148{left:617.760000px;}
.x33_c01148{left:624.240000px;}
.x2d_c01148{left:633.600000px;}
.x38_c01148{left:635.040000px;}
.x3a_c01148{left:637.200000px;}
.x3f_c01148{left:638.640000px;}
.x48_c01148{left:641.520000px;}
.x2a_c01148{left:663.120000px;}
.x2e_c01148{left:666.720000px;}
.x39_c01148{left:669.600000px;}
.x3b_c01148{left:671.040000px;}
.x44_c01148{left:673.200000px;}
.x2f_c01148{left:699.840000px;}
.x42_c01148{left:705.600000px;}
.x36_c01148{left:712.800000px;}
.x3d_c01148{left:714.240000px;}
.x45_c01148{left:716.400000px;}
.x4b_c01148{left:719.280000px;}
.x37_c01148{left:733.680000px;}
.x40_c01148{left:735.840000px;}
.x46_c01148{left:737.280000px;}
.x4d_c01148{left:738.720000px;}
@media print{
.v0_c01148{vertical-align:0.000000pt;}
.v1_c01148{vertical-align:2.560000pt;}
.ls1_c01148{letter-spacing:0.000000pt;}
.ls0_c01148{letter-spacing:124.234240pt;}
.ws1_c01148{word-spacing:0.000000pt;}
.ws0_c01148{word-spacing:178.119467pt;}
.fs7_c01148{font-size:20.480000pt;}
.fsa_c01148{font-size:30.720000pt;}
.fs8_c01148{font-size:35.840000pt;}
.fs2_c01148{font-size:38.400000pt;}
.fs3_c01148{font-size:40.960000pt;}
.fs6_c01148{font-size:43.520000pt;}
.fs4_c01148{font-size:46.080000pt;}
.fs5_c01148{font-size:48.640000pt;}
.fs9_c01148{font-size:51.200000pt;}
.fs0_c01148{font-size:53.760000pt;}
.fsd_c01148{font-size:56.320000pt;}
.fse_c01148{font-size:58.880000pt;}
.fs1_c01148{font-size:61.440000pt;}
.fsb_c01148{font-size:64.000000pt;}
.fsc_c01148{font-size:66.560000pt;}
.y0_c01148{bottom:0.000000pt;}
.y49_c01148{bottom:58.880000pt;}
.y77_c01148{bottom:59.520000pt;}
.y78_c01148{bottom:60.160000pt;}
.y47_c01148{bottom:61.440000pt;}
.y48_c01148{bottom:63.360000pt;}
.y46_c01148{bottom:97.280000pt;}
.y76_c01148{bottom:97.920000pt;}
.y45_c01148{bottom:101.120000pt;}
.y44_c01148{bottom:135.040000pt;}
.y74_c01148{bottom:135.680000pt;}
.y75_c01148{bottom:136.320000pt;}
.y43_c01148{bottom:137.600000pt;}
.y41_c01148{bottom:138.880000pt;}
.y42_c01148{bottom:139.520000pt;}
.y40_c01148{bottom:172.800000pt;}
.y72_c01148{bottom:174.080000pt;}
.y71_c01148{bottom:174.720000pt;}
.y73_c01148{bottom:175.360000pt;}
.y3e_c01148{bottom:176.000000pt;}
.y3f_c01148{bottom:177.280000pt;}
.y3d_c01148{bottom:210.560000pt;}
.y70_c01148{bottom:212.480000pt;}
.y3c_c01148{bottom:213.760000pt;}
.y3b_c01148{bottom:248.960000pt;}
.y6f_c01148{bottom:249.600000pt;}
.y6e_c01148{bottom:250.240000pt;}
.y39_c01148{bottom:250.880000pt;}
.y3a_c01148{bottom:253.440000pt;}
.y38_c01148{bottom:286.720000pt;}
.y6b_c01148{bottom:288.640000pt;}
.y6c_c01148{bottom:289.280000pt;}
.y36_c01148{bottom:289.920000pt;}
.y6d_c01148{bottom:290.560000pt;}
.y37_c01148{bottom:291.200000pt;}
.y35_c01148{bottom:325.120000pt;}
.y34_c01148{bottom:327.040000pt;}
.y6a_c01148{bottom:328.320000pt;}
.y33_c01148{bottom:362.880000pt;}
.y31_c01148{bottom:365.440000pt;}
.y69_c01148{bottom:366.080000pt;}
.y32_c01148{bottom:366.720000pt;}
.y30_c01148{bottom:400.640000pt;}
.y2e_c01148{bottom:403.200000pt;}
.y67_c01148{bottom:403.840000pt;}
.y2f_c01148{bottom:404.480000pt;}
.y68_c01148{bottom:406.400000pt;}
.y2d_c01148{bottom:439.680000pt;}
.y2c_c01148{bottom:440.320000pt;}
.y29_c01148{bottom:440.960000pt;}
.y2b_c01148{bottom:442.240000pt;}
.y2a_c01148{bottom:442.880000pt;}
.y66_c01148{bottom:443.520000pt;}
.y28_c01148{bottom:477.440000pt;}
.y26_c01148{bottom:478.720000pt;}
.y27_c01148{bottom:480.640000pt;}
.y63_c01148{bottom:481.280000pt;}
.y64_c01148{bottom:481.920000pt;}
.y65_c01148{bottom:483.840000pt;}
.y25_c01148{bottom:515.200000pt;}
.y23_c01148{bottom:516.480000pt;}
.y24_c01148{bottom:518.400000pt;}
.y5f_c01148{bottom:519.040000pt;}
.y60_c01148{bottom:520.320000pt;}
.y61_c01148{bottom:521.600000pt;}
.y62_c01148{bottom:522.240000pt;}
.y22_c01148{bottom:553.600000pt;}
.y20_c01148{bottom:554.880000pt;}
.y21_c01148{bottom:556.160000pt;}
.y5c_c01148{bottom:557.440000pt;}
.y5e_c01148{bottom:558.720000pt;}
.y5d_c01148{bottom:560.000000pt;}
.y1f_c01148{bottom:591.360000pt;}
.y1d_c01148{bottom:592.000000pt;}
.y1e_c01148{bottom:594.560000pt;}
.y59_c01148{bottom:595.840000pt;}
.y5a_c01148{bottom:596.480000pt;}
.y5b_c01148{bottom:599.040000pt;}
.y1a_c01148{bottom:629.760000pt;}
.y1c_c01148{bottom:631.680000pt;}
.y1b_c01148{bottom:632.320000pt;}
.y56_c01148{bottom:634.240000pt;}
.y57_c01148{bottom:634.880000pt;}
.y58_c01148{bottom:636.800000pt;}
.y17_c01148{bottom:667.520000pt;}
.y19_c01148{bottom:670.080000pt;}
.y18_c01148{bottom:670.720000pt;}
.y13_c01148{bottom:723.840000pt;}
.y15_c01148{bottom:725.120000pt;}
.y14_c01148{bottom:726.400000pt;}
.y16_c01148{bottom:727.680000pt;}
.y11_c01148{bottom:744.320000pt;}
.y12_c01148{bottom:746.240000pt;}
.y10_c01148{bottom:763.520000pt;}
.yd_c01148{bottom:791.680000pt;}
.ye_c01148{bottom:792.960000pt;}
.yf_c01148{bottom:800.000000pt;}
.y55_c01148{bottom:817.280000pt;}
.y9_c01148{bottom:831.360000pt;}
.y6_c01148{bottom:837.120000pt;}
.y5_c01148{bottom:839.040000pt;}
.y7_c01148{bottom:840.320000pt;}
.ya_c01148{bottom:840.960000pt;}
.yc_c01148{bottom:842.240000pt;}
.yb_c01148{bottom:842.880000pt;}
.y4a_c01148{bottom:843.520000pt;}
.y4b_c01148{bottom:845.440000pt;}
.y53_c01148{bottom:846.720000pt;}
.y54_c01148{bottom:848.000000pt;}
.y8_c01148{bottom:851.840000pt;}
.y3_c01148{bottom:875.520000pt;}
.y4_c01148{bottom:876.160000pt;}
.y51_c01148{bottom:883.840000pt;}
.y50_c01148{bottom:885.120000pt;}
.y52_c01148{bottom:886.400000pt;}
.y1_c01148{bottom:913.920000pt;}
.y2_c01148{bottom:914.560000pt;}
.y4e_c01148{bottom:922.880000pt;}
.y4d_c01148{bottom:924.160000pt;}
.y4f_c01148{bottom:925.440000pt;}
.y4c_c01148{bottom:995.200000pt;}
.h9_c01148{height:18.430000pt;}
.hd_c01148{height:27.645000pt;}
.ha_c01148{height:32.252500pt;}
.h4_c01148{height:34.556250pt;}
.h5_c01148{height:36.860000pt;}
.h8_c01148{height:39.163750pt;}
.hb_c01148{height:39.420000pt;}
.h6_c01148{height:41.467500pt;}
.h7_c01148{height:43.771250pt;}
.hc_c01148{height:46.075000pt;}
.h2_c01148{height:48.378750pt;}
.h10_c01148{height:50.682500pt;}
.h12_c01148{height:50.938750pt;}
.h11_c01148{height:52.986250pt;}
.h3_c01148{height:55.290000pt;}
.he_c01148{height:57.593750pt;}
.hf_c01148{height:59.897500pt;}
.h0_c01148{height:1025.280000pt;}
.h1_c01148{height:1025.333333pt;}
.w1_c01148{width:702.000000pt;}
.w0_c01148{width:702.080000pt;}
.x0_c01148{left:0.000000pt;}
.x1_c01148{left:65.280000pt;}
.x3_c01148{left:66.560000pt;}
.x10_c01148{left:67.840000pt;}
.x18_c01148{left:69.120000pt;}
.x1f_c01148{left:70.400000pt;}
.x23_c01148{left:71.680000pt;}
.x26_c01148{left:72.960000pt;}
.xd_c01148{left:76.800000pt;}
.x4_c01148{left:94.080000pt;}
.x11_c01148{left:113.920000pt;}
.x2_c01148{left:129.920000pt;}
.x16_c01148{left:132.480000pt;}
.x1a_c01148{left:133.760000pt;}
.x20_c01148{left:135.040000pt;}
.x22_c01148{left:136.320000pt;}
.x27_c01148{left:137.600000pt;}
.xe_c01148{left:151.040000pt;}
.x5_c01148{left:158.720000pt;}
.xb_c01148{left:160.000000pt;}
.x17_c01148{left:170.880000pt;}
.x19_c01148{left:172.160000pt;}
.x1e_c01148{left:174.080000pt;}
.x24_c01148{left:175.360000pt;}
.x21_c01148{left:183.040000pt;}
.x13_c01148{left:189.440000pt;}
.xc_c01148{left:197.760000pt;}
.xf_c01148{left:199.040000pt;}
.x6_c01148{left:207.360000pt;}
.x12_c01148{left:209.280000pt;}
.x1b_c01148{left:210.560000pt;}
.x25_c01148{left:213.120000pt;}
.x14_c01148{left:218.880000pt;}
.x15_c01148{left:248.960000pt;}
.x7_c01148{left:254.720000pt;}
.x1c_c01148{left:257.920000pt;}
.x8_c01148{left:273.920000pt;}
.x1d_c01148{left:295.680000pt;}
.x9_c01148{left:321.920000pt;}
.xa_c01148{left:340.480000pt;}
.x28_c01148{left:398.080000pt;}
.x29_c01148{left:416.640000pt;}
.x30_c01148{left:485.760000pt;}
.x34_c01148{left:487.680000pt;}
.x3e_c01148{left:489.600000pt;}
.x43_c01148{left:490.880000pt;}
.x4a_c01148{left:492.160000pt;}
.x2b_c01148{left:495.360000pt;}
.x31_c01148{left:506.240000pt;}
.x2c_c01148{left:514.560000pt;}
.x49_c01148{left:521.600000pt;}
.x32_c01148{left:523.520000pt;}
.x35_c01148{left:536.320000pt;}
.x3c_c01148{left:537.600000pt;}
.x41_c01148{left:538.880000pt;}
.x4c_c01148{left:541.440000pt;}
.x47_c01148{left:549.120000pt;}
.x33_c01148{left:554.880000pt;}
.x2d_c01148{left:563.200000pt;}
.x38_c01148{left:564.480000pt;}
.x3a_c01148{left:566.400000pt;}
.x3f_c01148{left:567.680000pt;}
.x48_c01148{left:570.240000pt;}
.x2a_c01148{left:589.440000pt;}
.x2e_c01148{left:592.640000pt;}
.x39_c01148{left:595.200000pt;}
.x3b_c01148{left:596.480000pt;}
.x44_c01148{left:598.400000pt;}
.x2f_c01148{left:622.080000pt;}
.x42_c01148{left:627.200000pt;}
.x36_c01148{left:633.600000pt;}
.x3d_c01148{left:634.880000pt;}
.x45_c01148{left:636.800000pt;}
.x4b_c01148{left:639.360000pt;}
.x37_c01148{left:652.160000pt;}
.x40_c01148{left:654.080000pt;}
.x46_c01148{left:655.360000pt;}
.x4d_c01148{left:656.640000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_74953f6318b62529faa08ffe.woff2')format("woff");}.ff1_c01149{font-family:ff1_c01149;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m45_c01149{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);}
.m42_c01149{transform:matrix(0.232650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232650,0.000000,0.000000,0.250000,0,0);}
.m24_c01149{transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);}
.m32_c01149{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m9_c01149{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m3_c01149{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m8_c01149{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_c01149{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);}
.m2a_c01149{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);}
.m43_c01149{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.mb_c01149{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m29_c01149{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);}
.m22_c01149{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m4_c01149{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_c01149{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mc_c01149{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mf_c01149{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01149{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.md_c01149{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01149{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m6_c01149{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m18_c01149{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m12_c01149{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m25_c01149{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m16_c01149{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m14_c01149{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01149{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01149{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01149{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m5_c01149{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01149{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.ma_c01149{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m20_c01149{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);}
.m36_c01149{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01149{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);}
.m26_c01149{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1_c01149{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01149{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m11_c01149{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);}
.m34_c01149{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);}
.m3f_c01149{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.me_c01149{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);}
.m28_c01149{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);}
.m0_c01149{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01149{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);}
.m27_c01149{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01149{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);}
.m37_c01149{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m19_c01149{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m41_c01149{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m15_c01149{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m33_c01149{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);}
.m30_c01149{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_c01149{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m38_c01149{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01149{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m39_c01149{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01149{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m21_c01149{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m35_c01149{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01149{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m40_c01149{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);}
.m44_c01149{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m7_c01149{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m23_c01149{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m17_c01149{transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);}
.m13_c01149{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01149{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01149{transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01149{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.v0_c01149{vertical-align:0.000000px;}
.v1_c01149{vertical-align:8.640000px;}
.v2_c01149{vertical-align:14.400000px;}
.ls0_c01149{letter-spacing:0.000000px;}
.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;}
}
.ws5_c01149{word-spacing:0.000000px;}
.ws3_c01149{word-spacing:6.276372px;}
.ws1_c01149{word-spacing:8.131200px;}
.ws2_c01149{word-spacing:10.267200px;}
.ws0_c01149{word-spacing:14.957055px;}
.ws4_c01149{word-spacing:865.782000px;}
.fc0_c01149{color:transparent;}
.fs5_c01149{font-size:34.560000px;}
.fsd_c01149{font-size:37.440000px;}
.fsc_c01149{font-size:43.200000px;}
.fs9_c01149{font-size:46.080000px;}
.fs8_c01149{font-size:48.960000px;}
.fs7_c01149{font-size:51.840000px;}
.fs4_c01149{font-size:54.720000px;}
.fs2_c01149{font-size:57.600000px;}
.fs1_c01149{font-size:60.480000px;}
.fsa_c01149{font-size:63.360000px;}
.fs6_c01149{font-size:66.240000px;}
.fsb_c01149{font-size:69.120000px;}
.fs0_c01149{font-size:72.000000px;}
.fs3_c01149{font-size:74.880000px;}
.y0_c01149{bottom:0.000000px;}
.y87_c01149{bottom:56.880000px;}
.y86_c01149{bottom:57.600000px;}
.y85_c01149{bottom:58.320000px;}
.y84_c01149{bottom:60.480000px;}
.y83_c01149{bottom:65.520000px;}
.y82_c01149{bottom:66.240000px;}
.y80_c01149{bottom:101.520000px;}
.y81_c01149{bottom:102.240000px;}
.y7f_c01149{bottom:102.960000px;}
.y7e_c01149{bottom:108.720000px;}
.y7d_c01149{bottom:109.440000px;}
.y7c_c01149{bottom:144.720000px;}
.y7b_c01149{bottom:145.440000px;}
.y7a_c01149{bottom:146.160000px;}
.y79_c01149{bottom:146.880000px;}
.y78_c01149{bottom:150.480000px;}
.y76_c01149{bottom:151.200000px;}
.y77_c01149{bottom:152.640000px;}
.y75_c01149{bottom:187.920000px;}
.y74_c01149{bottom:188.640000px;}
.y73_c01149{bottom:189.360000px;}
.y72_c01149{bottom:193.680000px;}
.y71_c01149{bottom:194.400000px;}
.y6e_c01149{bottom:231.120000px;}
.y6c_c01149{bottom:231.840000px;}
.y6d_c01149{bottom:232.560000px;}
.y70_c01149{bottom:233.280000px;}
.y6f_c01149{bottom:234.000000px;}
.y6a_c01149{bottom:236.160000px;}
.y6b_c01149{bottom:236.880000px;}
.y67_c01149{bottom:275.040000px;}
.y68_c01149{bottom:275.760000px;}
.y69_c01149{bottom:277.200000px;}
.y65_c01149{bottom:277.920000px;}
.y66_c01149{bottom:279.360000px;}
.y64_c01149{bottom:280.080000px;}
.y61_c01149{bottom:317.520000px;}
.y63_c01149{bottom:318.240000px;}
.y62_c01149{bottom:318.960000px;}
.y5f_c01149{bottom:320.400000px;}
.y60_c01149{bottom:321.120000px;}
.y5e_c01149{bottom:321.840000px;}
.y5d_c01149{bottom:359.280000px;}
.y5c_c01149{bottom:361.440000px;}
.y5b_c01149{bottom:362.880000px;}
.y5a_c01149{bottom:363.600000px;}
.y58_c01149{bottom:403.200000px;}
.y59_c01149{bottom:403.920000px;}
.y56_c01149{bottom:404.640000px;}
.y55_c01149{bottom:406.800000px;}
.y57_c01149{bottom:407.520000px;}
.y51_c01149{bottom:446.400000px;}
.y53_c01149{bottom:447.120000px;}
.y52_c01149{bottom:447.840000px;}
.y50_c01149{bottom:448.560000px;}
.y4f_c01149{bottom:449.280000px;}
.y54_c01149{bottom:450.000000px;}
.y4c_c01149{bottom:488.880000px;}
.y4d_c01149{bottom:489.600000px;}
.y4e_c01149{bottom:490.320000px;}
.y4b_c01149{bottom:491.040000px;}
.y4a_c01149{bottom:491.760000px;}
.y49_c01149{bottom:534.960000px;}
.y44_c01149{bottom:563.760000px;}
.y46_c01149{bottom:564.480000px;}
.y45_c01149{bottom:565.200000px;}
.y47_c01149{bottom:565.920000px;}
.y42_c01149{bottom:566.640000px;}
.y43_c01149{bottom:567.360000px;}
.y48_c01149{bottom:568.800000px;}
.y3f_c01149{bottom:606.240000px;}
.y3e_c01149{bottom:607.680000px;}
.y40_c01149{bottom:609.120000px;}
.y41_c01149{bottom:612.000000px;}
.y3b_c01149{bottom:649.440000px;}
.y3a_c01149{bottom:650.880000px;}
.y3c_c01149{bottom:652.320000px;}
.y3d_c01149{bottom:655.200000px;}
.y35_c01149{bottom:692.640000px;}
.y34_c01149{bottom:693.360000px;}
.y33_c01149{bottom:694.080000px;}
.y38_c01149{bottom:695.520000px;}
.y37_c01149{bottom:696.240000px;}
.y36_c01149{bottom:696.960000px;}
.y39_c01149{bottom:699.120000px;}
.y2d_c01149{bottom:735.840000px;}
.y2e_c01149{bottom:738.000000px;}
.y2f_c01149{bottom:738.720000px;}
.y30_c01149{bottom:739.440000px;}
.y32_c01149{bottom:741.600000px;}
.y31_c01149{bottom:743.040000px;}
.y28_c01149{bottom:777.600000px;}
.y25_c01149{bottom:779.040000px;}
.y26_c01149{bottom:780.480000px;}
.y27_c01149{bottom:781.200000px;}
.y2a_c01149{bottom:781.920000px;}
.y29_c01149{bottom:782.640000px;}
.y2b_c01149{bottom:783.360000px;}
.y2c_c01149{bottom:784.800000px;}
.y20_c01149{bottom:820.800000px;}
.y1e_c01149{bottom:821.520000px;}
.y1f_c01149{bottom:823.680000px;}
.y21_c01149{bottom:825.120000px;}
.y22_c01149{bottom:825.840000px;}
.y23_c01149{bottom:827.280000px;}
.y24_c01149{bottom:828.720000px;}
.y1a_c01149{bottom:864.000000px;}
.y18_c01149{bottom:864.720000px;}
.y19_c01149{bottom:866.880000px;}
.y1b_c01149{bottom:868.320000px;}
.y1d_c01149{bottom:869.040000px;}
.y1c_c01149{bottom:870.480000px;}
.y12_c01149{bottom:906.480000px;}
.y13_c01149{bottom:907.200000px;}
.y14_c01149{bottom:909.360000px;}
.y15_c01149{bottom:911.520000px;}
.y17_c01149{bottom:914.400000px;}
.y16_c01149{bottom:915.120000px;}
.yd_c01149{bottom:948.960000px;}
.yf_c01149{bottom:949.680000px;}
.ye_c01149{bottom:951.840000px;}
.y10_c01149{bottom:954.000000px;}
.y11_c01149{bottom:957.600000px;}
.ya_c01149{bottom:990.720000px;}
.y7_c01149{bottom:991.440000px;}
.y8_c01149{bottom:992.160000px;}
.y9_c01149{bottom:994.320000px;}
.yb_c01149{bottom:997.200000px;}
.yc_c01149{bottom:998.640000px;}
.y2_c01149{bottom:1033.920000px;}
.y3_c01149{bottom:1034.640000px;}
.y4_c01149{bottom:1040.400000px;}
.y5_c01149{bottom:1041.120000px;}
.y6_c01149{bottom:1041.840000px;}
.y1_c01149{bottom:1108.080000px;}
.h7_c01149{height:31.100625px;}
.h12_c01149{height:33.692344px;}
.h11_c01149{height:38.875781px;}
.hb_c01149{height:41.467500px;}
.ha_c01149{height:44.059219px;}
.hc_c01149{height:46.650937px;}
.h6_c01149{height:49.242656px;}
.he_c01149{height:50.107500px;}
.h4_c01149{height:51.834375px;}
.h3_c01149{height:54.426094px;}
.h9_c01149{height:55.290937px;}
.hd_c01149{height:57.017812px;}
.h8_c01149{height:59.609531px;}
.hf_c01149{height:62.201250px;}
.h2_c01149{height:64.792969px;}
.h5_c01149{height:67.384687px;}
.h10_c01149{height:68.826094px;}
.h1_c01149{height:1147.500000px;}
.h0_c01149{height:1147.680000px;}
.w1_c01149{width:783.000000px;}
.w0_c01149{width:783.360000px;}
.x0_c01149{left:0.000000px;}
.x2_c01149{left:69.120000px;}
.x10_c01149{left:70.560000px;}
.x21_c01149{left:72.000000px;}
.x26_c01149{left:73.440000px;}
.x3_c01149{left:141.840000px;}
.x16_c01149{left:143.280000px;}
.x1e_c01149{left:145.440000px;}
.x11_c01149{left:185.760000px;}
.x2a_c01149{left:187.920000px;}
.x2e_c01149{left:189.360000px;}
.x4_c01149{left:196.560000px;}
.x17_c01149{left:198.000000px;}
.x27_c01149{left:199.440000px;}
.x2f_c01149{left:222.480000px;}
.x12_c01149{left:228.960000px;}
.x8_c01149{left:230.400000px;}
.xa_c01149{left:238.320000px;}
.x22_c01149{left:240.480000px;}
.x2b_c01149{left:275.040000px;}
.xe_c01149{left:282.960000px;}
.x23_c01149{left:294.480000px;}
.x15_c01149{left:324.000000px;}
.x1b_c01149{left:326.160000px;}
.x24_c01149{left:337.680000px;}
.x18_c01149{left:411.120000px;}
.x1c_c01149{left:421.920000px;}
.x19_c01149{left:455.760000px;}
.x1d_c01149{left:466.560000px;}
.x5_c01149{left:542.160000px;}
.x25_c01149{left:543.600000px;}
.x30_c01149{left:545.040000px;}
.xc_c01149{left:596.160000px;}
.xf_c01149{left:606.960000px;}
.x6_c01149{left:627.840000px;}
.x9_c01149{left:629.280000px;}
.x14_c01149{left:630.720000px;}
.x28_c01149{left:632.880000px;}
.x7_c01149{left:662.400000px;}
.x1_c01149{left:664.560000px;}
.x2c_c01149{left:666.000000px;}
.xb_c01149{left:695.520000px;}
.x1a_c01149{left:696.960000px;}
.x29_c01149{left:698.400000px;}
.x13_c01149{left:706.320000px;}
.x1f_c01149{left:707.760000px;}
.x31_c01149{left:709.920000px;}
.xd_c01149{left:727.200000px;}
.x20_c01149{left:728.640000px;}
.x2d_c01149{left:730.080000px;}
@media print{
.v0_c01149{vertical-align:0.000000pt;}
.v1_c01149{vertical-align:7.680000pt;}
.v2_c01149{vertical-align:12.800000pt;}
.ls0_c01149{letter-spacing:0.000000pt;}
.ws5_c01149{word-spacing:0.000000pt;}
.ws3_c01149{word-spacing:5.578998pt;}
.ws1_c01149{word-spacing:7.227733pt;}
.ws2_c01149{word-spacing:9.126400pt;}
.ws0_c01149{word-spacing:13.295160pt;}
.ws4_c01149{word-spacing:769.584000pt;}
.fs5_c01149{font-size:30.720000pt;}
.fsd_c01149{font-size:33.280000pt;}
.fsc_c01149{font-size:38.400000pt;}
.fs9_c01149{font-size:40.960000pt;}
.fs8_c01149{font-size:43.520000pt;}
.fs7_c01149{font-size:46.080000pt;}
.fs4_c01149{font-size:48.640000pt;}
.fs2_c01149{font-size:51.200000pt;}
.fs1_c01149{font-size:53.760000pt;}
.fsa_c01149{font-size:56.320000pt;}
.fs6_c01149{font-size:58.880000pt;}
.fsb_c01149{font-size:61.440000pt;}
.fs0_c01149{font-size:64.000000pt;}
.fs3_c01149{font-size:66.560000pt;}
.y0_c01149{bottom:0.000000pt;}
.y87_c01149{bottom:50.560000pt;}
.y86_c01149{bottom:51.200000pt;}
.y85_c01149{bottom:51.840000pt;}
.y84_c01149{bottom:53.760000pt;}
.y83_c01149{bottom:58.240000pt;}
.y82_c01149{bottom:58.880000pt;}
.y80_c01149{bottom:90.240000pt;}
.y81_c01149{bottom:90.880000pt;}
.y7f_c01149{bottom:91.520000pt;}
.y7e_c01149{bottom:96.640000pt;}
.y7d_c01149{bottom:97.280000pt;}
.y7c_c01149{bottom:128.640000pt;}
.y7b_c01149{bottom:129.280000pt;}
.y7a_c01149{bottom:129.920000pt;}
.y79_c01149{bottom:130.560000pt;}
.y78_c01149{bottom:133.760000pt;}
.y76_c01149{bottom:134.400000pt;}
.y77_c01149{bottom:135.680000pt;}
.y75_c01149{bottom:167.040000pt;}
.y74_c01149{bottom:167.680000pt;}
.y73_c01149{bottom:168.320000pt;}
.y72_c01149{bottom:172.160000pt;}
.y71_c01149{bottom:172.800000pt;}
.y6e_c01149{bottom:205.440000pt;}
.y6c_c01149{bottom:206.080000pt;}
.y6d_c01149{bottom:206.720000pt;}
.y70_c01149{bottom:207.360000pt;}
.y6f_c01149{bottom:208.000000pt;}
.y6a_c01149{bottom:209.920000pt;}
.y6b_c01149{bottom:210.560000pt;}
.y67_c01149{bottom:244.480000pt;}
.y68_c01149{bottom:245.120000pt;}
.y69_c01149{bottom:246.400000pt;}
.y65_c01149{bottom:247.040000pt;}
.y66_c01149{bottom:248.320000pt;}
.y64_c01149{bottom:248.960000pt;}
.y61_c01149{bottom:282.240000pt;}
.y63_c01149{bottom:282.880000pt;}
.y62_c01149{bottom:283.520000pt;}
.y5f_c01149{bottom:284.800000pt;}
.y60_c01149{bottom:285.440000pt;}
.y5e_c01149{bottom:286.080000pt;}
.y5d_c01149{bottom:319.360000pt;}
.y5c_c01149{bottom:321.280000pt;}
.y5b_c01149{bottom:322.560000pt;}
.y5a_c01149{bottom:323.200000pt;}
.y58_c01149{bottom:358.400000pt;}
.y59_c01149{bottom:359.040000pt;}
.y56_c01149{bottom:359.680000pt;}
.y55_c01149{bottom:361.600000pt;}
.y57_c01149{bottom:362.240000pt;}
.y51_c01149{bottom:396.800000pt;}
.y53_c01149{bottom:397.440000pt;}
.y52_c01149{bottom:398.080000pt;}
.y50_c01149{bottom:398.720000pt;}
.y4f_c01149{bottom:399.360000pt;}
.y54_c01149{bottom:400.000000pt;}
.y4c_c01149{bottom:434.560000pt;}
.y4d_c01149{bottom:435.200000pt;}
.y4e_c01149{bottom:435.840000pt;}
.y4b_c01149{bottom:436.480000pt;}
.y4a_c01149{bottom:437.120000pt;}
.y49_c01149{bottom:475.520000pt;}
.y44_c01149{bottom:501.120000pt;}
.y46_c01149{bottom:501.760000pt;}
.y45_c01149{bottom:502.400000pt;}
.y47_c01149{bottom:503.040000pt;}
.y42_c01149{bottom:503.680000pt;}
.y43_c01149{bottom:504.320000pt;}
.y48_c01149{bottom:505.600000pt;}
.y3f_c01149{bottom:538.880000pt;}
.y3e_c01149{bottom:540.160000pt;}
.y40_c01149{bottom:541.440000pt;}
.y41_c01149{bottom:544.000000pt;}
.y3b_c01149{bottom:577.280000pt;}
.y3a_c01149{bottom:578.560000pt;}
.y3c_c01149{bottom:579.840000pt;}
.y3d_c01149{bottom:582.400000pt;}
.y35_c01149{bottom:615.680000pt;}
.y34_c01149{bottom:616.320000pt;}
.y33_c01149{bottom:616.960000pt;}
.y38_c01149{bottom:618.240000pt;}
.y37_c01149{bottom:618.880000pt;}
.y36_c01149{bottom:619.520000pt;}
.y39_c01149{bottom:621.440000pt;}
.y2d_c01149{bottom:654.080000pt;}
.y2e_c01149{bottom:656.000000pt;}
.y2f_c01149{bottom:656.640000pt;}
.y30_c01149{bottom:657.280000pt;}
.y32_c01149{bottom:659.200000pt;}
.y31_c01149{bottom:660.480000pt;}
.y28_c01149{bottom:691.200000pt;}
.y25_c01149{bottom:692.480000pt;}
.y26_c01149{bottom:693.760000pt;}
.y27_c01149{bottom:694.400000pt;}
.y2a_c01149{bottom:695.040000pt;}
.y29_c01149{bottom:695.680000pt;}
.y2b_c01149{bottom:696.320000pt;}
.y2c_c01149{bottom:697.600000pt;}
.y20_c01149{bottom:729.600000pt;}
.y1e_c01149{bottom:730.240000pt;}
.y1f_c01149{bottom:732.160000pt;}
.y21_c01149{bottom:733.440000pt;}
.y22_c01149{bottom:734.080000pt;}
.y23_c01149{bottom:735.360000pt;}
.y24_c01149{bottom:736.640000pt;}
.y1a_c01149{bottom:768.000000pt;}
.y18_c01149{bottom:768.640000pt;}
.y19_c01149{bottom:770.560000pt;}
.y1b_c01149{bottom:771.840000pt;}
.y1d_c01149{bottom:772.480000pt;}
.y1c_c01149{bottom:773.760000pt;}
.y12_c01149{bottom:805.760000pt;}
.y13_c01149{bottom:806.400000pt;}
.y14_c01149{bottom:808.320000pt;}
.y15_c01149{bottom:810.240000pt;}
.y17_c01149{bottom:812.800000pt;}
.y16_c01149{bottom:813.440000pt;}
.yd_c01149{bottom:843.520000pt;}
.yf_c01149{bottom:844.160000pt;}
.ye_c01149{bottom:846.080000pt;}
.y10_c01149{bottom:848.000000pt;}
.y11_c01149{bottom:851.200000pt;}
.ya_c01149{bottom:880.640000pt;}
.y7_c01149{bottom:881.280000pt;}
.y8_c01149{bottom:881.920000pt;}
.y9_c01149{bottom:883.840000pt;}
.yb_c01149{bottom:886.400000pt;}
.yc_c01149{bottom:887.680000pt;}
.y2_c01149{bottom:919.040000pt;}
.y3_c01149{bottom:919.680000pt;}
.y4_c01149{bottom:924.800000pt;}
.y5_c01149{bottom:925.440000pt;}
.y6_c01149{bottom:926.080000pt;}
.y1_c01149{bottom:984.960000pt;}
.h7_c01149{height:27.645000pt;}
.h12_c01149{height:29.948750pt;}
.h11_c01149{height:34.556250pt;}
.hb_c01149{height:36.860000pt;}
.ha_c01149{height:39.163750pt;}
.hc_c01149{height:41.467500pt;}
.h6_c01149{height:43.771250pt;}
.he_c01149{height:44.540000pt;}
.h4_c01149{height:46.075000pt;}
.h3_c01149{height:48.378750pt;}
.h9_c01149{height:49.147500pt;}
.hd_c01149{height:50.682500pt;}
.h8_c01149{height:52.986250pt;}
.hf_c01149{height:55.290000pt;}
.h2_c01149{height:57.593750pt;}
.h5_c01149{height:59.897500pt;}
.h10_c01149{height:61.178750pt;}
.h1_c01149{height:1020.000000pt;}
.h0_c01149{height:1020.160000pt;}
.w1_c01149{width:696.000000pt;}
.w0_c01149{width:696.320000pt;}
.x0_c01149{left:0.000000pt;}
.x2_c01149{left:61.440000pt;}
.x10_c01149{left:62.720000pt;}
.x21_c01149{left:64.000000pt;}
.x26_c01149{left:65.280000pt;}
.x3_c01149{left:126.080000pt;}
.x16_c01149{left:127.360000pt;}
.x1e_c01149{left:129.280000pt;}
.x11_c01149{left:165.120000pt;}
.x2a_c01149{left:167.040000pt;}
.x2e_c01149{left:168.320000pt;}
.x4_c01149{left:174.720000pt;}
.x17_c01149{left:176.000000pt;}
.x27_c01149{left:177.280000pt;}
.x2f_c01149{left:197.760000pt;}
.x12_c01149{left:203.520000pt;}
.x8_c01149{left:204.800000pt;}
.xa_c01149{left:211.840000pt;}
.x22_c01149{left:213.760000pt;}
.x2b_c01149{left:244.480000pt;}
.xe_c01149{left:251.520000pt;}
.x23_c01149{left:261.760000pt;}
.x15_c01149{left:288.000000pt;}
.x1b_c01149{left:289.920000pt;}
.x24_c01149{left:300.160000pt;}
.x18_c01149{left:365.440000pt;}
.x1c_c01149{left:375.040000pt;}
.x19_c01149{left:405.120000pt;}
.x1d_c01149{left:414.720000pt;}
.x5_c01149{left:481.920000pt;}
.x25_c01149{left:483.200000pt;}
.x30_c01149{left:484.480000pt;}
.xc_c01149{left:529.920000pt;}
.xf_c01149{left:539.520000pt;}
.x6_c01149{left:558.080000pt;}
.x9_c01149{left:559.360000pt;}
.x14_c01149{left:560.640000pt;}
.x28_c01149{left:562.560000pt;}
.x7_c01149{left:588.800000pt;}
.x1_c01149{left:590.720000pt;}
.x2c_c01149{left:592.000000pt;}
.xb_c01149{left:618.240000pt;}
.x1a_c01149{left:619.520000pt;}
.x29_c01149{left:620.800000pt;}
.x13_c01149{left:627.840000pt;}
.x1f_c01149{left:629.120000pt;}
.x31_c01149{left:631.040000pt;}
.xd_c01149{left:646.400000pt;}
.x20_c01149{left:647.680000pt;}
.x2d_c01149{left:648.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_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_8782a0fced8b8019fac71a9c.woff2')format("woff");}.ff1_c01150{font-family:ff1_c01150;line-height:1.109863;font-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_c01150{transform:matrix(0.183400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183400,0.000000,0.000000,0.250000,0,0);}
.m3c_c01150{transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);}
.m20_c01150{transform:matrix(0.229400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229400,0.000000,0.000000,0.250000,0,0);}
.m41_c01150{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m39_c01150{transform:matrix(0.242800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242800,0.000000,0.000000,0.250000,0,0);}
.m3e_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);}
.m43_c01150{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m6_c01150{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);}
.m3f_c01150{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);}
.m31_c01150{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m32_c01150{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01150{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);}
.m34_c01150{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m30_c01150{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);}
.m37_c01150{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);}
.m29_c01150{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m44_c01150{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m2_c01150{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01150{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m3_c01150{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m5_c01150{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01150{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m9_c01150{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mc_c01150{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.ma_c01150{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m19_c01150{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1_c01150{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m24_c01150{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m26_c01150{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m15_c01150{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mf_c01150{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m14_c01150{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m4_c01150{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mb_c01150{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m23_c01150{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_c01150{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m16_c01150{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);}
.m2a_c01150{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_c01150{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m40_c01150{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);}
.m0_c01150{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01150{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);}
.m45_c01150{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m35_c01150{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);}
.m8_c01150{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);}
.m36_c01150{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);}
.m46_c01150{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.me_c01150{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);}
.m42_c01150{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m12_c01150{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m28_c01150{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m27_c01150{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);}
.m10_c01150{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01150{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);}
.m11_c01150{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m21_c01150{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);}
.m2f_c01150{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01150{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_c01150{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m22_c01150{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);}
.m1e_c01150{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m13_c01150{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m18_c01150{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01150{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01150{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);}
.m3a_c01150{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m7_c01150{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m38_c01150{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.m47_c01150{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m25_c01150{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.md_c01150{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m33_c01150{transform:matrix(0.885000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.885000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.885000,0.000000,0.000000,0.250000,0,0);}
.v2_c01150{vertical-align:-2.880000px;}
.v0_c01150{vertical-align:0.000000px;}
.v1_c01150{vertical-align:5.760000px;}
.ls0_c01150{letter-spacing:0.000000px;}
.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:-3.165120px;}
.ws4_c01150{word-spacing:0.000000px;}
.ws1_c01150{word-spacing:2.213760px;}
.ws3_c01150{word-spacing:901.073520px;}
.ws2_c01150{word-spacing:905.502000px;}
.fc0_c01150{color:transparent;}
.fs9_c01150{font-size:17.280000px;}
.fsa_c01150{font-size:34.560000px;}
.fse_c01150{font-size:37.440000px;}
.fsd_c01150{font-size:46.080000px;}
.fs4_c01150{font-size:48.960000px;}
.fs2_c01150{font-size:51.840000px;}
.fs6_c01150{font-size:54.720000px;}
.fs5_c01150{font-size:57.600000px;}
.fs1_c01150{font-size:60.480000px;}
.fsc_c01150{font-size:63.360000px;}
.fsb_c01150{font-size:66.240000px;}
.fs8_c01150{font-size:69.120000px;}
.fs0_c01150{font-size:72.000000px;}
.fs3_c01150{font-size:74.880000px;}
.fs7_c01150{font-size:77.760000px;}
.fsf_c01150{font-size:86.400000px;}
.y0_c01150{bottom:0.000000px;}
.y87_c01150{bottom:78.480000px;}
.y86_c01150{bottom:79.200000px;}
.y85_c01150{bottom:80.640000px;}
.y84_c01150{bottom:82.080000px;}
.y83_c01150{bottom:87.120000px;}
.y81_c01150{bottom:87.840000px;}
.y82_c01150{bottom:88.560000px;}
.y80_c01150{bottom:120.960000px;}
.y7f_c01150{bottom:123.120000px;}
.y7e_c01150{bottom:124.560000px;}
.y7d_c01150{bottom:125.280000px;}
.y7c_c01150{bottom:129.600000px;}
.y7a_c01150{bottom:130.320000px;}
.y7b_c01150{bottom:131.760000px;}
.y78_c01150{bottom:164.880000px;}
.y79_c01150{bottom:166.320000px;}
.y77_c01150{bottom:167.040000px;}
.y76_c01150{bottom:172.800000px;}
.y75_c01150{bottom:206.640000px;}
.y74_c01150{bottom:208.080000px;}
.y72_c01150{bottom:208.800000px;}
.y73_c01150{bottom:209.520000px;}
.y6f_c01150{bottom:213.840000px;}
.y71_c01150{bottom:214.560000px;}
.y70_c01150{bottom:215.280000px;}
.y6e_c01150{bottom:250.560000px;}
.y6d_c01150{bottom:251.280000px;}
.y6c_c01150{bottom:252.000000px;}
.y6a_c01150{bottom:257.040000px;}
.y6b_c01150{bottom:258.480000px;}
.y69_c01150{bottom:291.600000px;}
.y68_c01150{bottom:292.320000px;}
.y67_c01150{bottom:293.040000px;}
.y66_c01150{bottom:294.480000px;}
.y65_c01150{bottom:295.920000px;}
.y63_c01150{bottom:299.520000px;}
.y64_c01150{bottom:300.960000px;}
.y60_c01150{bottom:335.520000px;}
.y62_c01150{bottom:336.240000px;}
.y5f_c01150{bottom:338.400000px;}
.y61_c01150{bottom:339.840000px;}
.y5e_c01150{bottom:343.440000px;}
.y5d_c01150{bottom:379.440000px;}
.y5c_c01150{bottom:380.880000px;}
.y5b_c01150{bottom:382.320000px;}
.y59_c01150{bottom:385.200000px;}
.y5a_c01150{bottom:385.920000px;}
.y58_c01150{bottom:422.640000px;}
.y57_c01150{bottom:423.360000px;}
.y55_c01150{bottom:424.800000px;}
.y56_c01150{bottom:426.960000px;}
.y53_c01150{bottom:428.400000px;}
.y54_c01150{bottom:429.120000px;}
.y4f_c01150{bottom:465.840000px;}
.y52_c01150{bottom:466.560000px;}
.y51_c01150{bottom:467.280000px;}
.y50_c01150{bottom:468.000000px;}
.y4d_c01150{bottom:470.880000px;}
.y4e_c01150{bottom:471.600000px;}
.y4a_c01150{bottom:510.480000px;}
.y4b_c01150{bottom:511.200000px;}
.y4c_c01150{bottom:511.920000px;}
.y47_c01150{bottom:513.360000px;}
.y49_c01150{bottom:514.800000px;}
.y48_c01150{bottom:515.520000px;}
.y45_c01150{bottom:552.960000px;}
.y46_c01150{bottom:553.680000px;}
.y43_c01150{bottom:555.840000px;}
.y44_c01150{bottom:557.280000px;}
.y40_c01150{bottom:595.440000px;}
.y42_c01150{bottom:596.880000px;}
.y41_c01150{bottom:597.600000px;}
.y3d_c01150{bottom:599.040000px;}
.y3f_c01150{bottom:599.760000px;}
.y3e_c01150{bottom:600.480000px;}
.y3a_c01150{bottom:638.640000px;}
.y3b_c01150{bottom:640.080000px;}
.y37_c01150{bottom:640.800000px;}
.y3c_c01150{bottom:641.520000px;}
.y39_c01150{bottom:642.240000px;}
.y38_c01150{bottom:642.960000px;}
.y34_c01150{bottom:681.840000px;}
.y32_c01150{bottom:683.280000px;}
.y36_c01150{bottom:684.720000px;}
.y33_c01150{bottom:685.440000px;}
.y35_c01150{bottom:686.160000px;}
.y2e_c01150{bottom:724.320000px;}
.y31_c01150{bottom:725.040000px;}
.y2b_c01150{bottom:725.760000px;}
.y2f_c01150{bottom:726.480000px;}
.y2d_c01150{bottom:727.200000px;}
.y2c_c01150{bottom:727.920000px;}
.y30_c01150{bottom:729.360000px;}
.y29_c01150{bottom:766.800000px;}
.y26_c01150{bottom:768.240000px;}
.y25_c01150{bottom:768.960000px;}
.y2a_c01150{bottom:769.680000px;}
.y27_c01150{bottom:770.400000px;}
.y28_c01150{bottom:771.120000px;}
.y21_c01150{bottom:809.280000px;}
.y1e_c01150{bottom:810.720000px;}
.y22_c01150{bottom:811.440000px;}
.y23_c01150{bottom:812.160000px;}
.y1f_c01150{bottom:812.880000px;}
.y20_c01150{bottom:813.600000px;}
.y24_c01150{bottom:815.040000px;}
.y1a_c01150{bottom:851.760000px;}
.y18_c01150{bottom:853.920000px;}
.y1b_c01150{bottom:855.360000px;}
.y19_c01150{bottom:856.080000px;}
.y1c_c01150{bottom:857.520000px;}
.y1d_c01150{bottom:858.240000px;}
.y14_c01150{bottom:895.680000px;}
.y15_c01150{bottom:898.560000px;}
.y16_c01150{bottom:899.280000px;}
.y17_c01150{bottom:900.720000px;}
.y10_c01150{bottom:938.160000px;}
.ye_c01150{bottom:939.600000px;}
.y12_c01150{bottom:941.040000px;}
.yf_c01150{bottom:941.760000px;}
.y11_c01150{bottom:942.480000px;}
.y13_c01150{bottom:951.120000px;}
.ya_c01150{bottom:980.640000px;}
.y8_c01150{bottom:981.360000px;}
.y9_c01150{bottom:984.240000px;}
.yb_c01150{bottom:985.680000px;}
.yc_c01150{bottom:986.400000px;}
.yd_c01150{bottom:987.840000px;}
.y2_c01150{bottom:1023.840000px;}
.y3_c01150{bottom:1026.720000px;}
.y4_c01150{bottom:1028.880000px;}
.y6_c01150{bottom:1029.600000px;}
.y7_c01150{bottom:1031.040000px;}
.y5_c01150{bottom:1031.760000px;}
.y1_c01150{bottom:1095.120000px;}
.hb_c01150{height:15.550313px;}
.hc_c01150{height:31.100625px;}
.h10_c01150{height:33.692344px;}
.hf_c01150{height:41.467500px;}
.h11_c01150{height:43.770937px;}
.h6_c01150{height:44.059219px;}
.h4_c01150{height:46.650937px;}
.h8_c01150{height:49.242656px;}
.h7_c01150{height:51.834375px;}
.h3_c01150{height:54.426094px;}
.he_c01150{height:57.017812px;}
.hd_c01150{height:59.609531px;}
.ha_c01150{height:62.201250px;}
.h2_c01150{height:64.792969px;}
.h5_c01150{height:67.384687px;}
.h9_c01150{height:69.976406px;}
.h12_c01150{height:77.751563px;}
.h1_c01150{height:1145.250000px;}
.h0_c01150{height:1145.520000px;}
.w0_c01150{width:779.040000px;}
.w1_c01150{width:779.250000px;}
.x0_c01150{left:0.000000px;}
.x10_c01150{left:71.280000px;}
.x2_c01150{left:72.720405px;}
.x18_c01150{left:143.280000px;}
.x3_c01150{left:144.720000px;}
.x1e_c01150{left:147.600000px;}
.x1c_c01150{left:155.520000px;}
.xd_c01150{left:187.200000px;}
.x4_c01150{left:188.640000px;}
.x20_c01150{left:219.600000px;}
.x15_c01150{left:228.960000px;}
.xc_c01150{left:230.400000px;}
.x12_c01150{left:239.760000px;}
.x17_c01150{left:264.960000px;}
.x21_c01150{left:272.880000px;}
.x13_c01150{left:283.680000px;}
.xe_c01150{left:285.120000px;}
.x1d_c01150{left:325.440000px;}
.xf_c01150{left:326.880000px;}
.x14_c01150{left:380.880000px;}
.x19_c01150{left:542.160000px;}
.x5_c01150{left:544.320000px;}
.xa_c01150{left:599.040000px;}
.x11_c01150{left:609.120000px;}
.x16_c01150{left:630.720000px;}
.x6_c01150{left:632.160000px;}
.x1a_c01150{left:663.840000px;}
.x7_c01150{left:665.280000px;}
.x1_c01150{left:670.320000px;}
.x1b_c01150{left:707.040000px;}
.x8_c01150{left:708.480000px;}
.xb_c01150{left:709.920000px;}
.x1f_c01150{left:717.120000px;}
.x9_c01150{left:728.640000px;}
@media print{
.v2_c01150{vertical-align:-2.560000pt;}
.v0_c01150{vertical-align:0.000000pt;}
.v1_c01150{vertical-align:5.120000pt;}
.ls0_c01150{letter-spacing:0.000000pt;}
.ws0_c01150{word-spacing:-2.813440pt;}
.ws4_c01150{word-spacing:0.000000pt;}
.ws1_c01150{word-spacing:1.967787pt;}
.ws3_c01150{word-spacing:800.954240pt;}
.ws2_c01150{word-spacing:804.890667pt;}
.fs9_c01150{font-size:15.360000pt;}
.fsa_c01150{font-size:30.720000pt;}
.fse_c01150{font-size:33.280000pt;}
.fsd_c01150{font-size:40.960000pt;}
.fs4_c01150{font-size:43.520000pt;}
.fs2_c01150{font-size:46.080000pt;}
.fs6_c01150{font-size:48.640000pt;}
.fs5_c01150{font-size:51.200000pt;}
.fs1_c01150{font-size:53.760000pt;}
.fsc_c01150{font-size:56.320000pt;}
.fsb_c01150{font-size:58.880000pt;}
.fs8_c01150{font-size:61.440000pt;}
.fs0_c01150{font-size:64.000000pt;}
.fs3_c01150{font-size:66.560000pt;}
.fs7_c01150{font-size:69.120000pt;}
.fsf_c01150{font-size:76.800000pt;}
.y0_c01150{bottom:0.000000pt;}
.y87_c01150{bottom:69.760000pt;}
.y86_c01150{bottom:70.400000pt;}
.y85_c01150{bottom:71.680000pt;}
.y84_c01150{bottom:72.960000pt;}
.y83_c01150{bottom:77.440000pt;}
.y81_c01150{bottom:78.080000pt;}
.y82_c01150{bottom:78.720000pt;}
.y80_c01150{bottom:107.520000pt;}
.y7f_c01150{bottom:109.440000pt;}
.y7e_c01150{bottom:110.720000pt;}
.y7d_c01150{bottom:111.360000pt;}
.y7c_c01150{bottom:115.200000pt;}
.y7a_c01150{bottom:115.840000pt;}
.y7b_c01150{bottom:117.120000pt;}
.y78_c01150{bottom:146.560000pt;}
.y79_c01150{bottom:147.840000pt;}
.y77_c01150{bottom:148.480000pt;}
.y76_c01150{bottom:153.600000pt;}
.y75_c01150{bottom:183.680000pt;}
.y74_c01150{bottom:184.960000pt;}
.y72_c01150{bottom:185.600000pt;}
.y73_c01150{bottom:186.240000pt;}
.y6f_c01150{bottom:190.080000pt;}
.y71_c01150{bottom:190.720000pt;}
.y70_c01150{bottom:191.360000pt;}
.y6e_c01150{bottom:222.720000pt;}
.y6d_c01150{bottom:223.360000pt;}
.y6c_c01150{bottom:224.000000pt;}
.y6a_c01150{bottom:228.480000pt;}
.y6b_c01150{bottom:229.760000pt;}
.y69_c01150{bottom:259.200000pt;}
.y68_c01150{bottom:259.840000pt;}
.y67_c01150{bottom:260.480000pt;}
.y66_c01150{bottom:261.760000pt;}
.y65_c01150{bottom:263.040000pt;}
.y63_c01150{bottom:266.240000pt;}
.y64_c01150{bottom:267.520000pt;}
.y60_c01150{bottom:298.240000pt;}
.y62_c01150{bottom:298.880000pt;}
.y5f_c01150{bottom:300.800000pt;}
.y61_c01150{bottom:302.080000pt;}
.y5e_c01150{bottom:305.280000pt;}
.y5d_c01150{bottom:337.280000pt;}
.y5c_c01150{bottom:338.560000pt;}
.y5b_c01150{bottom:339.840000pt;}
.y59_c01150{bottom:342.400000pt;}
.y5a_c01150{bottom:343.040000pt;}
.y58_c01150{bottom:375.680000pt;}
.y57_c01150{bottom:376.320000pt;}
.y55_c01150{bottom:377.600000pt;}
.y56_c01150{bottom:379.520000pt;}
.y53_c01150{bottom:380.800000pt;}
.y54_c01150{bottom:381.440000pt;}
.y4f_c01150{bottom:414.080000pt;}
.y52_c01150{bottom:414.720000pt;}
.y51_c01150{bottom:415.360000pt;}
.y50_c01150{bottom:416.000000pt;}
.y4d_c01150{bottom:418.560000pt;}
.y4e_c01150{bottom:419.200000pt;}
.y4a_c01150{bottom:453.760000pt;}
.y4b_c01150{bottom:454.400000pt;}
.y4c_c01150{bottom:455.040000pt;}
.y47_c01150{bottom:456.320000pt;}
.y49_c01150{bottom:457.600000pt;}
.y48_c01150{bottom:458.240000pt;}
.y45_c01150{bottom:491.520000pt;}
.y46_c01150{bottom:492.160000pt;}
.y43_c01150{bottom:494.080000pt;}
.y44_c01150{bottom:495.360000pt;}
.y40_c01150{bottom:529.280000pt;}
.y42_c01150{bottom:530.560000pt;}
.y41_c01150{bottom:531.200000pt;}
.y3d_c01150{bottom:532.480000pt;}
.y3f_c01150{bottom:533.120000pt;}
.y3e_c01150{bottom:533.760000pt;}
.y3a_c01150{bottom:567.680000pt;}
.y3b_c01150{bottom:568.960000pt;}
.y37_c01150{bottom:569.600000pt;}
.y3c_c01150{bottom:570.240000pt;}
.y39_c01150{bottom:570.880000pt;}
.y38_c01150{bottom:571.520000pt;}
.y34_c01150{bottom:606.080000pt;}
.y32_c01150{bottom:607.360000pt;}
.y36_c01150{bottom:608.640000pt;}
.y33_c01150{bottom:609.280000pt;}
.y35_c01150{bottom:609.920000pt;}
.y2e_c01150{bottom:643.840000pt;}
.y31_c01150{bottom:644.480000pt;}
.y2b_c01150{bottom:645.120000pt;}
.y2f_c01150{bottom:645.760000pt;}
.y2d_c01150{bottom:646.400000pt;}
.y2c_c01150{bottom:647.040000pt;}
.y30_c01150{bottom:648.320000pt;}
.y29_c01150{bottom:681.600000pt;}
.y26_c01150{bottom:682.880000pt;}
.y25_c01150{bottom:683.520000pt;}
.y2a_c01150{bottom:684.160000pt;}
.y27_c01150{bottom:684.800000pt;}
.y28_c01150{bottom:685.440000pt;}
.y21_c01150{bottom:719.360000pt;}
.y1e_c01150{bottom:720.640000pt;}
.y22_c01150{bottom:721.280000pt;}
.y23_c01150{bottom:721.920000pt;}
.y1f_c01150{bottom:722.560000pt;}
.y20_c01150{bottom:723.200000pt;}
.y24_c01150{bottom:724.480000pt;}
.y1a_c01150{bottom:757.120000pt;}
.y18_c01150{bottom:759.040000pt;}
.y1b_c01150{bottom:760.320000pt;}
.y19_c01150{bottom:760.960000pt;}
.y1c_c01150{bottom:762.240000pt;}
.y1d_c01150{bottom:762.880000pt;}
.y14_c01150{bottom:796.160000pt;}
.y15_c01150{bottom:798.720000pt;}
.y16_c01150{bottom:799.360000pt;}
.y17_c01150{bottom:800.640000pt;}
.y10_c01150{bottom:833.920000pt;}
.ye_c01150{bottom:835.200000pt;}
.y12_c01150{bottom:836.480000pt;}
.yf_c01150{bottom:837.120000pt;}
.y11_c01150{bottom:837.760000pt;}
.y13_c01150{bottom:845.440000pt;}
.ya_c01150{bottom:871.680000pt;}
.y8_c01150{bottom:872.320000pt;}
.y9_c01150{bottom:874.880000pt;}
.yb_c01150{bottom:876.160000pt;}
.yc_c01150{bottom:876.800000pt;}
.yd_c01150{bottom:878.080000pt;}
.y2_c01150{bottom:910.080000pt;}
.y3_c01150{bottom:912.640000pt;}
.y4_c01150{bottom:914.560000pt;}
.y6_c01150{bottom:915.200000pt;}
.y7_c01150{bottom:916.480000pt;}
.y5_c01150{bottom:917.120000pt;}
.y1_c01150{bottom:973.440000pt;}
.hb_c01150{height:13.822500pt;}
.hc_c01150{height:27.645000pt;}
.h10_c01150{height:29.948750pt;}
.hf_c01150{height:36.860000pt;}
.h11_c01150{height:38.907500pt;}
.h6_c01150{height:39.163750pt;}
.h4_c01150{height:41.467500pt;}
.h8_c01150{height:43.771250pt;}
.h7_c01150{height:46.075000pt;}
.h3_c01150{height:48.378750pt;}
.he_c01150{height:50.682500pt;}
.hd_c01150{height:52.986250pt;}
.ha_c01150{height:55.290000pt;}
.h2_c01150{height:57.593750pt;}
.h5_c01150{height:59.897500pt;}
.h9_c01150{height:62.201250pt;}
.h12_c01150{height:69.112500pt;}
.h1_c01150{height:1018.000000pt;}
.h0_c01150{height:1018.240000pt;}
.w0_c01150{width:692.480000pt;}
.w1_c01150{width:692.666667pt;}
.x0_c01150{left:0.000000pt;}
.x10_c01150{left:63.360000pt;}
.x2_c01150{left:64.640360pt;}
.x18_c01150{left:127.360000pt;}
.x3_c01150{left:128.640000pt;}
.x1e_c01150{left:131.200000pt;}
.x1c_c01150{left:138.240000pt;}
.xd_c01150{left:166.400000pt;}
.x4_c01150{left:167.680000pt;}
.x20_c01150{left:195.200000pt;}
.x15_c01150{left:203.520000pt;}
.xc_c01150{left:204.800000pt;}
.x12_c01150{left:213.120000pt;}
.x17_c01150{left:235.520000pt;}
.x21_c01150{left:242.560000pt;}
.x13_c01150{left:252.160000pt;}
.xe_c01150{left:253.440000pt;}
.x1d_c01150{left:289.280000pt;}
.xf_c01150{left:290.560000pt;}
.x14_c01150{left:338.560000pt;}
.x19_c01150{left:481.920000pt;}
.x5_c01150{left:483.840000pt;}
.xa_c01150{left:532.480000pt;}
.x11_c01150{left:541.440000pt;}
.x16_c01150{left:560.640000pt;}
.x6_c01150{left:561.920000pt;}
.x1a_c01150{left:590.080000pt;}
.x7_c01150{left:591.360000pt;}
.x1_c01150{left:595.840000pt;}
.x1b_c01150{left:628.480000pt;}
.x8_c01150{left:629.760000pt;}
.xb_c01150{left:631.040000pt;}
.x1f_c01150{left:637.440000pt;}
.x9_c01150{left:647.680000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dc66c3dba5c4a89b13a1cd63.woff2')format("woff");}.ff1_c01151{font-family:ff1_c01151;line-height:1.109863;font-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_c01151{transform:matrix(0.237825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237825,0.000000,0.000000,0.250000,0,0);}
.m36_c01151{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.md_c01151{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);}
.m24_c01151{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m1f_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);}
.m4_c01151{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m12_c01151{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m9_c01151{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m16_c01151{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);}
.m37_c01151{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m6_c01151{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m15_c01151{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m8_c01151{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m31_c01151{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m5_c01151{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);}
.m27_c01151{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m33_c01151{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.me_c01151{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01151{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m23_c01151{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m11_c01151{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.mc_c01151{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.ma_c01151{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m29_c01151{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01151{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2_c01151{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m26_c01151{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01151{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m22_c01151{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m32_c01151{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01151{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m13_c01151{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);}
.m35_c01151{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m7_c01151{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);}
.m30_c01151{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m34_c01151{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01151{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1_c01151{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m28_c01151{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m0_c01151{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);}
.mb_c01151{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);}
.m14_c01151{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);}
.m17_c01151{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m19_c01151{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);}
.m20_c01151{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);}
.m10_c01151{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01151{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01151{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01151{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01151{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m3_c01151{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01151{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m25_c01151{transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01151{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01151{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m38_c01151{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.m18_c01151{transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);}
.v0_c01151{vertical-align:0.000000px;}
.v4_c01151{vertical-align:2.880000px;}
.v3_c01151{vertical-align:8.640000px;}
.v1_c01151{vertical-align:11.520000px;}
.v2_c01151{vertical-align:14.400000px;}
.ls0_c01151{letter-spacing:0.000000px;}
.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:-3.923040px;}
.ws3_c01151{word-spacing:-3.165120px;}
.ws5_c01151{word-spacing:0.000000px;}
.ws2_c01151{word-spacing:200.382941px;}
.ws1_c01151{word-spacing:419.200800px;}
.ws4_c01151{word-spacing:865.678320px;}
.fc0_c01151{color:transparent;}
.fs3_c01151{font-size:34.560000px;}
.fsc_c01151{font-size:37.440000px;}
.fs2_c01151{font-size:48.960000px;}
.fs6_c01151{font-size:51.840000px;}
.fs5_c01151{font-size:54.720000px;}
.fs4_c01151{font-size:57.600000px;}
.fs1_c01151{font-size:60.480000px;}
.fsa_c01151{font-size:63.360000px;}
.fsb_c01151{font-size:66.240000px;}
.fs9_c01151{font-size:69.120000px;}
.fs8_c01151{font-size:72.000000px;}
.fs0_c01151{font-size:74.880000px;}
.fs7_c01151{font-size:77.760000px;}
.y0_c01151{bottom:0.000000px;}
.y86_c01151{bottom:79.920000px;}
.y85_c01151{bottom:80.640000px;}
.y84_c01151{bottom:82.080000px;}
.y83_c01151{bottom:86.400000px;}
.y81_c01151{bottom:123.120000px;}
.y80_c01151{bottom:123.840000px;}
.y82_c01151{bottom:124.560000px;}
.y7f_c01151{bottom:125.280000px;}
.y7e_c01151{bottom:126.000000px;}
.y7d_c01151{bottom:128.160000px;}
.y7c_c01151{bottom:130.320000px;}
.y7b_c01151{bottom:165.600000px;}
.y7a_c01151{bottom:166.320000px;}
.y79_c01151{bottom:167.760000px;}
.y78_c01151{bottom:171.360000px;}
.y77_c01151{bottom:172.800000px;}
.y75_c01151{bottom:208.800000px;}
.y74_c01151{bottom:211.680000px;}
.y76_c01151{bottom:212.400000px;}
.y71_c01151{bottom:214.560000px;}
.y73_c01151{bottom:215.280000px;}
.y72_c01151{bottom:216.000000px;}
.y6f_c01151{bottom:254.160000px;}
.y70_c01151{bottom:254.880000px;}
.y6d_c01151{bottom:256.320000px;}
.y6c_c01151{bottom:257.040000px;}
.y6e_c01151{bottom:258.480000px;}
.y6a_c01151{bottom:295.920000px;}
.y67_c01151{bottom:296.640000px;}
.y6b_c01151{bottom:297.360000px;}
.y68_c01151{bottom:298.080000px;}
.y69_c01151{bottom:298.800000px;}
.y65_c01151{bottom:300.240000px;}
.y66_c01151{bottom:301.680000px;}
.y62_c01151{bottom:339.840000px;}
.y63_c01151{bottom:340.560000px;}
.y64_c01151{bottom:342.000000px;}
.y60_c01151{bottom:343.440000px;}
.y61_c01151{bottom:344.160000px;}
.y5d_c01151{bottom:381.600000px;}
.y5e_c01151{bottom:383.040000px;}
.y5f_c01151{bottom:383.760000px;}
.y5b_c01151{bottom:384.480000px;}
.y5a_c01151{bottom:385.200000px;}
.y5c_c01151{bottom:386.640000px;}
.y57_c01151{bottom:424.800000px;}
.y58_c01151{bottom:425.520000px;}
.y59_c01151{bottom:426.960000px;}
.y56_c01151{bottom:427.680000px;}
.y55_c01151{bottom:428.400000px;}
.y51_c01151{bottom:467.280000px;}
.y53_c01151{bottom:468.000000px;}
.y52_c01151{bottom:468.720000px;}
.y50_c01151{bottom:470.160000px;}
.y54_c01151{bottom:470.880000px;}
.y4f_c01151{bottom:509.760000px;}
.y4c_c01151{bottom:510.480000px;}
.y4e_c01151{bottom:511.200000px;}
.y49_c01151{bottom:512.640000px;}
.y4d_c01151{bottom:513.360000px;}
.y4a_c01151{bottom:514.080000px;}
.y4b_c01151{bottom:514.800000px;}
.y47_c01151{bottom:553.680000px;}
.y48_c01151{bottom:554.400000px;}
.y45_c01151{bottom:555.120000px;}
.y46_c01151{bottom:557.280000px;}
.y41_c01151{bottom:596.160000px;}
.y44_c01151{bottom:596.880000px;}
.y42_c01151{bottom:597.600000px;}
.y3f_c01151{bottom:598.320000px;}
.y40_c01151{bottom:599.760000px;}
.y43_c01151{bottom:600.480000px;}
.y3b_c01151{bottom:638.640000px;}
.y3c_c01151{bottom:639.360000px;}
.y39_c01151{bottom:640.800000px;}
.y3d_c01151{bottom:641.520000px;}
.y3a_c01151{bottom:642.960000px;}
.y3e_c01151{bottom:643.680000px;}
.y35_c01151{bottom:681.840000px;}
.y33_c01151{bottom:683.280000px;}
.y32_c01151{bottom:684.000000px;}
.y36_c01151{bottom:684.720000px;}
.y37_c01151{bottom:685.440000px;}
.y34_c01151{bottom:686.160000px;}
.y38_c01151{bottom:688.320000px;}
.y2e_c01151{bottom:724.320000px;}
.y2d_c01151{bottom:725.760000px;}
.y2c_c01151{bottom:726.480000px;}
.y2f_c01151{bottom:727.920000px;}
.y30_c01151{bottom:729.360000px;}
.y31_c01151{bottom:730.080000px;}
.y2a_c01151{bottom:768.240000px;}
.y28_c01151{bottom:768.960000px;}
.y29_c01151{bottom:771.120000px;}
.y2b_c01151{bottom:772.560000px;}
.y25_c01151{bottom:810.720000px;}
.y23_c01151{bottom:812.160000px;}
.y24_c01151{bottom:814.320000px;}
.y27_c01151{bottom:815.040000px;}
.y26_c01151{bottom:816.480000px;}
.y1d_c01151{bottom:853.920000px;}
.y1e_c01151{bottom:856.800000px;}
.y1f_c01151{bottom:857.520000px;}
.y20_c01151{bottom:859.680000px;}
.y21_c01151{bottom:860.400000px;}
.y22_c01151{bottom:861.120000px;}
.y17_c01151{bottom:896.400000px;}
.y18_c01151{bottom:899.280000px;}
.y19_c01151{bottom:900.000000px;}
.y1b_c01151{bottom:900.720000px;}
.y1a_c01151{bottom:902.160000px;}
.y1c_c01151{bottom:902.880000px;}
.y13_c01151{bottom:938.880000px;}
.y10_c01151{bottom:939.600000px;}
.y14_c01151{bottom:940.320000px;}
.y11_c01151{bottom:941.760000px;}
.y12_c01151{bottom:942.480000px;}
.y15_c01151{bottom:943.200000px;}
.y16_c01151{bottom:944.640000px;}
.yc_c01151{bottom:980.640000px;}
.ya_c01151{bottom:982.080000px;}
.yb_c01151{bottom:984.960000px;}
.yd_c01151{bottom:986.400000px;}
.ye_c01151{bottom:987.120000px;}
.yf_c01151{bottom:989.280000px;}
.y2_c01151{bottom:1023.840000px;}
.y5_c01151{bottom:1024.560000px;}
.y3_c01151{bottom:1027.440000px;}
.y4_c01151{bottom:1028.160000px;}
.y6_c01151{bottom:1028.880000px;}
.y9_c01151{bottom:1029.600000px;}
.y7_c01151{bottom:1031.040000px;}
.y8_c01151{bottom:1031.760000px;}
.y1_c01151{bottom:1097.280000px;}
.h5_c01151{height:31.100625px;}
.hf_c01151{height:33.692344px;}
.h4_c01151{height:44.059219px;}
.h8_c01151{height:46.650937px;}
.h7_c01151{height:49.242656px;}
.h6_c01151{height:51.834375px;}
.h3_c01151{height:54.426094px;}
.hc_c01151{height:57.017812px;}
.he_c01151{height:59.609531px;}
.hb_c01151{height:62.201250px;}
.ha_c01151{height:64.792969px;}
.h2_c01151{height:67.384687px;}
.hd_c01151{height:68.826094px;}
.h9_c01151{height:69.976406px;}
.h1_c01151{height:1151.250000px;}
.h0_c01151{height:1151.280000px;}
.w0_c01151{width:782.640000px;}
.w1_c01151{width:783.000000px;}
.x0_c01151{left:0.000000px;}
.x2_c01151{left:70.560000px;}
.x1e_c01151{left:72.000000px;}
.x11_c01151{left:142.560000px;}
.x3_c01151{left:144.000000px;}
.xa_c01151{left:186.480000px;}
.x4_c01151{left:187.920000px;}
.x20_c01151{left:196.560000px;}
.x17_c01151{left:198.000000px;}
.x5_c01151{left:221.040000px;}
.xd_c01151{left:228.960000px;}
.x19_c01151{left:230.400000px;}
.x18_c01151{left:239.760000px;}
.x21_c01151{left:241.200000px;}
.xb_c01151{left:244.080000px;}
.x12_c01151{left:283.680000px;}
.x1a_c01151{left:315.360000px;}
.x13_c01151{left:326.160000px;}
.x1b_c01151{left:368.640000px;}
.x1c_c01151{left:414.720000px;}
.x1d_c01151{left:483.120000px;}
.x15_c01151{left:542.880000px;}
.x6_c01151{left:544.320000px;}
.x16_c01151{left:598.320000px;}
.x14_c01151{left:609.120000px;}
.x7_c01151{left:632.160000px;}
.x10_c01151{left:663.840000px;}
.x8_c01151{left:665.280000px;}
.x1_c01151{left:673.200000px;}
.xe_c01151{left:697.680000px;}
.x9_c01151{left:707.040000px;}
.xc_c01151{left:708.480000px;}
.xf_c01151{left:728.640000px;}
.x1f_c01151{left:730.080000px;}
@media print{
.v0_c01151{vertical-align:0.000000pt;}
.v4_c01151{vertical-align:2.560000pt;}
.v3_c01151{vertical-align:7.680000pt;}
.v1_c01151{vertical-align:10.240000pt;}
.v2_c01151{vertical-align:12.800000pt;}
.ls0_c01151{letter-spacing:0.000000pt;}
.ws0_c01151{word-spacing:-3.487147pt;}
.ws3_c01151{word-spacing:-2.813440pt;}
.ws5_c01151{word-spacing:0.000000pt;}
.ws2_c01151{word-spacing:178.118170pt;}
.ws1_c01151{word-spacing:372.622933pt;}
.ws4_c01151{word-spacing:769.491840pt;}
.fs3_c01151{font-size:30.720000pt;}
.fsc_c01151{font-size:33.280000pt;}
.fs2_c01151{font-size:43.520000pt;}
.fs6_c01151{font-size:46.080000pt;}
.fs5_c01151{font-size:48.640000pt;}
.fs4_c01151{font-size:51.200000pt;}
.fs1_c01151{font-size:53.760000pt;}
.fsa_c01151{font-size:56.320000pt;}
.fsb_c01151{font-size:58.880000pt;}
.fs9_c01151{font-size:61.440000pt;}
.fs8_c01151{font-size:64.000000pt;}
.fs0_c01151{font-size:66.560000pt;}
.fs7_c01151{font-size:69.120000pt;}
.y0_c01151{bottom:0.000000pt;}
.y86_c01151{bottom:71.040000pt;}
.y85_c01151{bottom:71.680000pt;}
.y84_c01151{bottom:72.960000pt;}
.y83_c01151{bottom:76.800000pt;}
.y81_c01151{bottom:109.440000pt;}
.y80_c01151{bottom:110.080000pt;}
.y82_c01151{bottom:110.720000pt;}
.y7f_c01151{bottom:111.360000pt;}
.y7e_c01151{bottom:112.000000pt;}
.y7d_c01151{bottom:113.920000pt;}
.y7c_c01151{bottom:115.840000pt;}
.y7b_c01151{bottom:147.200000pt;}
.y7a_c01151{bottom:147.840000pt;}
.y79_c01151{bottom:149.120000pt;}
.y78_c01151{bottom:152.320000pt;}
.y77_c01151{bottom:153.600000pt;}
.y75_c01151{bottom:185.600000pt;}
.y74_c01151{bottom:188.160000pt;}
.y76_c01151{bottom:188.800000pt;}
.y71_c01151{bottom:190.720000pt;}
.y73_c01151{bottom:191.360000pt;}
.y72_c01151{bottom:192.000000pt;}
.y6f_c01151{bottom:225.920000pt;}
.y70_c01151{bottom:226.560000pt;}
.y6d_c01151{bottom:227.840000pt;}
.y6c_c01151{bottom:228.480000pt;}
.y6e_c01151{bottom:229.760000pt;}
.y6a_c01151{bottom:263.040000pt;}
.y67_c01151{bottom:263.680000pt;}
.y6b_c01151{bottom:264.320000pt;}
.y68_c01151{bottom:264.960000pt;}
.y69_c01151{bottom:265.600000pt;}
.y65_c01151{bottom:266.880000pt;}
.y66_c01151{bottom:268.160000pt;}
.y62_c01151{bottom:302.080000pt;}
.y63_c01151{bottom:302.720000pt;}
.y64_c01151{bottom:304.000000pt;}
.y60_c01151{bottom:305.280000pt;}
.y61_c01151{bottom:305.920000pt;}
.y5d_c01151{bottom:339.200000pt;}
.y5e_c01151{bottom:340.480000pt;}
.y5f_c01151{bottom:341.120000pt;}
.y5b_c01151{bottom:341.760000pt;}
.y5a_c01151{bottom:342.400000pt;}
.y5c_c01151{bottom:343.680000pt;}
.y57_c01151{bottom:377.600000pt;}
.y58_c01151{bottom:378.240000pt;}
.y59_c01151{bottom:379.520000pt;}
.y56_c01151{bottom:380.160000pt;}
.y55_c01151{bottom:380.800000pt;}
.y51_c01151{bottom:415.360000pt;}
.y53_c01151{bottom:416.000000pt;}
.y52_c01151{bottom:416.640000pt;}
.y50_c01151{bottom:417.920000pt;}
.y54_c01151{bottom:418.560000pt;}
.y4f_c01151{bottom:453.120000pt;}
.y4c_c01151{bottom:453.760000pt;}
.y4e_c01151{bottom:454.400000pt;}
.y49_c01151{bottom:455.680000pt;}
.y4d_c01151{bottom:456.320000pt;}
.y4a_c01151{bottom:456.960000pt;}
.y4b_c01151{bottom:457.600000pt;}
.y47_c01151{bottom:492.160000pt;}
.y48_c01151{bottom:492.800000pt;}
.y45_c01151{bottom:493.440000pt;}
.y46_c01151{bottom:495.360000pt;}
.y41_c01151{bottom:529.920000pt;}
.y44_c01151{bottom:530.560000pt;}
.y42_c01151{bottom:531.200000pt;}
.y3f_c01151{bottom:531.840000pt;}
.y40_c01151{bottom:533.120000pt;}
.y43_c01151{bottom:533.760000pt;}
.y3b_c01151{bottom:567.680000pt;}
.y3c_c01151{bottom:568.320000pt;}
.y39_c01151{bottom:569.600000pt;}
.y3d_c01151{bottom:570.240000pt;}
.y3a_c01151{bottom:571.520000pt;}
.y3e_c01151{bottom:572.160000pt;}
.y35_c01151{bottom:606.080000pt;}
.y33_c01151{bottom:607.360000pt;}
.y32_c01151{bottom:608.000000pt;}
.y36_c01151{bottom:608.640000pt;}
.y37_c01151{bottom:609.280000pt;}
.y34_c01151{bottom:609.920000pt;}
.y38_c01151{bottom:611.840000pt;}
.y2e_c01151{bottom:643.840000pt;}
.y2d_c01151{bottom:645.120000pt;}
.y2c_c01151{bottom:645.760000pt;}
.y2f_c01151{bottom:647.040000pt;}
.y30_c01151{bottom:648.320000pt;}
.y31_c01151{bottom:648.960000pt;}
.y2a_c01151{bottom:682.880000pt;}
.y28_c01151{bottom:683.520000pt;}
.y29_c01151{bottom:685.440000pt;}
.y2b_c01151{bottom:686.720000pt;}
.y25_c01151{bottom:720.640000pt;}
.y23_c01151{bottom:721.920000pt;}
.y24_c01151{bottom:723.840000pt;}
.y27_c01151{bottom:724.480000pt;}
.y26_c01151{bottom:725.760000pt;}
.y1d_c01151{bottom:759.040000pt;}
.y1e_c01151{bottom:761.600000pt;}
.y1f_c01151{bottom:762.240000pt;}
.y20_c01151{bottom:764.160000pt;}
.y21_c01151{bottom:764.800000pt;}
.y22_c01151{bottom:765.440000pt;}
.y17_c01151{bottom:796.800000pt;}
.y18_c01151{bottom:799.360000pt;}
.y19_c01151{bottom:800.000000pt;}
.y1b_c01151{bottom:800.640000pt;}
.y1a_c01151{bottom:801.920000pt;}
.y1c_c01151{bottom:802.560000pt;}
.y13_c01151{bottom:834.560000pt;}
.y10_c01151{bottom:835.200000pt;}
.y14_c01151{bottom:835.840000pt;}
.y11_c01151{bottom:837.120000pt;}
.y12_c01151{bottom:837.760000pt;}
.y15_c01151{bottom:838.400000pt;}
.y16_c01151{bottom:839.680000pt;}
.yc_c01151{bottom:871.680000pt;}
.ya_c01151{bottom:872.960000pt;}
.yb_c01151{bottom:875.520000pt;}
.yd_c01151{bottom:876.800000pt;}
.ye_c01151{bottom:877.440000pt;}
.yf_c01151{bottom:879.360000pt;}
.y2_c01151{bottom:910.080000pt;}
.y5_c01151{bottom:910.720000pt;}
.y3_c01151{bottom:913.280000pt;}
.y4_c01151{bottom:913.920000pt;}
.y6_c01151{bottom:914.560000pt;}
.y9_c01151{bottom:915.200000pt;}
.y7_c01151{bottom:916.480000pt;}
.y8_c01151{bottom:917.120000pt;}
.y1_c01151{bottom:975.360000pt;}
.h5_c01151{height:27.645000pt;}
.hf_c01151{height:29.948750pt;}
.h4_c01151{height:39.163750pt;}
.h8_c01151{height:41.467500pt;}
.h7_c01151{height:43.771250pt;}
.h6_c01151{height:46.075000pt;}
.h3_c01151{height:48.378750pt;}
.hc_c01151{height:50.682500pt;}
.he_c01151{height:52.986250pt;}
.hb_c01151{height:55.290000pt;}
.ha_c01151{height:57.593750pt;}
.h2_c01151{height:59.897500pt;}
.hd_c01151{height:61.178750pt;}
.h9_c01151{height:62.201250pt;}
.h1_c01151{height:1023.333333pt;}
.h0_c01151{height:1023.360000pt;}
.w0_c01151{width:695.680000pt;}
.w1_c01151{width:696.000000pt;}
.x0_c01151{left:0.000000pt;}
.x2_c01151{left:62.720000pt;}
.x1e_c01151{left:64.000000pt;}
.x11_c01151{left:126.720000pt;}
.x3_c01151{left:128.000000pt;}
.xa_c01151{left:165.760000pt;}
.x4_c01151{left:167.040000pt;}
.x20_c01151{left:174.720000pt;}
.x17_c01151{left:176.000000pt;}
.x5_c01151{left:196.480000pt;}
.xd_c01151{left:203.520000pt;}
.x19_c01151{left:204.800000pt;}
.x18_c01151{left:213.120000pt;}
.x21_c01151{left:214.400000pt;}
.xb_c01151{left:216.960000pt;}
.x12_c01151{left:252.160000pt;}
.x1a_c01151{left:280.320000pt;}
.x13_c01151{left:289.920000pt;}
.x1b_c01151{left:327.680000pt;}
.x1c_c01151{left:368.640000pt;}
.x1d_c01151{left:429.440000pt;}
.x15_c01151{left:482.560000pt;}
.x6_c01151{left:483.840000pt;}
.x16_c01151{left:531.840000pt;}
.x14_c01151{left:541.440000pt;}
.x7_c01151{left:561.920000pt;}
.x10_c01151{left:590.080000pt;}
.x8_c01151{left:591.360000pt;}
.x1_c01151{left:598.400000pt;}
.xe_c01151{left:620.160000pt;}
.x9_c01151{left:628.480000pt;}
.xc_c01151{left:629.760000pt;}
.xf_c01151{left:647.680000pt;}
.x1f_c01151{left:648.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_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;}
@font-face{font-family:ff1_c01152;src:url('chunks/assets/font_17f85cafac3dc4ef3a0283d3.woff2')format("woff");}.ff1_c01152{font-family:ff1_c01152;line-height:1.109863;font-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_c01152{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);}
.m36_c01152{transform:matrix(0.242775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242775,0.000000,0.000000,0.250000,0,0);}
.m1a_c01152{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m2b_c01152{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_c01152{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01152{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);}
.m37_c01152{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);}
.m3b_c01152{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);}
.m2f_c01152{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);}
.m39_c01152{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.mc_c01152{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m3_c01152{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_c01152{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m4_c01152{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m14_c01152{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m6_c01152{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m24_c01152{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01152{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m7_c01152{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m15_c01152{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m20_c01152{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m31_c01152{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m38_c01152{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01152{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m17_c01152{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m25_c01152{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2_c01152{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m11_c01152{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mf_c01152{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m18_c01152{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m21_c01152{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m9_c01152{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1_c01152{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);}
.m26_c01152{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01152{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m19_c01152{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_c01152{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m28_c01152{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m10_c01152{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m33_c01152{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01152{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);}
.m5_c01152{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);}
.m8_c01152{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);}
.m0_c01152{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01152{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);}
.m2e_c01152{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m29_c01152{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);}
.m23_c01152{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m35_c01152{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m34_c01152{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);}
.m12_c01152{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m30_c01152{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m22_c01152{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.ma_c01152{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m27_c01152{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01152{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m16_c01152{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01152{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.md_c01152{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01152{transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);}
.v1_c01152{vertical-align:-2.880000px;}
.v0_c01152{vertical-align:0.000000px;}
.ls0_c01152{letter-spacing:0.000000px;}
.sc__c01152{text-shadow:none;}
.sc0_c01152{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01152{-webkit-text-stroke:0px transparent;}
.sc0_c01152{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01152{word-spacing:-0.362160px;}
.ws3_c01152{word-spacing:0.000000px;}
.ws1_c01152{word-spacing:11.693143px;}
.ws0_c01152{word-spacing:197.900400px;}
.fc0_c01152{color:transparent;}
.fs7_c01152{font-size:34.560000px;}
.fs8_c01152{font-size:48.960000px;}
.fs6_c01152{font-size:51.840000px;}
.fs4_c01152{font-size:54.720000px;}
.fs5_c01152{font-size:57.600000px;}
.fs2_c01152{font-size:60.480000px;}
.fs1_c01152{font-size:63.360000px;}
.fs9_c01152{font-size:66.240000px;}
.fs0_c01152{font-size:72.000000px;}
.fs3_c01152{font-size:74.880000px;}
.fsa_c01152{font-size:77.760000px;}
.y0_c01152{bottom:0.000000px;}
.y8b_c01152{bottom:47.520000px;}
.y8d_c01152{bottom:48.240000px;}
.y8a_c01152{bottom:48.960000px;}
.y8c_c01152{bottom:49.680000px;}
.y89_c01152{bottom:50.400000px;}
.y88_c01152{bottom:51.120000px;}
.y87_c01152{bottom:56.160000px;}
.y86_c01152{bottom:56.880000px;}
.y85_c01152{bottom:57.600000px;}
.y84_c01152{bottom:90.720000px;}
.y83_c01152{bottom:91.440000px;}
.y82_c01152{bottom:92.880000px;}
.y81_c01152{bottom:97.920000px;}
.y7f_c01152{bottom:98.640000px;}
.y80_c01152{bottom:100.080000px;}
.y7d_c01152{bottom:133.200000px;}
.y7c_c01152{bottom:133.920000px;}
.y7e_c01152{bottom:134.640000px;}
.y7a_c01152{bottom:135.360000px;}
.y7b_c01152{bottom:136.080000px;}
.y79_c01152{bottom:140.400000px;}
.y77_c01152{bottom:141.120000px;}
.y78_c01152{bottom:141.840000px;}
.y76_c01152{bottom:179.280000px;}
.y75_c01152{bottom:185.040000px;}
.y74_c01152{bottom:220.320000px;}
.y73_c01152{bottom:221.040000px;}
.y72_c01152{bottom:221.760000px;}
.y71_c01152{bottom:226.800000px;}
.y70_c01152{bottom:262.080000px;}
.y6f_c01152{bottom:262.800000px;}
.y6c_c01152{bottom:263.520000px;}
.y6d_c01152{bottom:264.960000px;}
.y6e_c01152{bottom:265.680000px;}
.y6b_c01152{bottom:268.560000px;}
.y69_c01152{bottom:269.280000px;}
.y6a_c01152{bottom:270.720000px;}
.y67_c01152{bottom:306.720000px;}
.y66_c01152{bottom:307.440000px;}
.y68_c01152{bottom:308.160000px;}
.y63_c01152{bottom:311.040000px;}
.y65_c01152{bottom:311.760000px;}
.y64_c01152{bottom:312.480000px;}
.y61_c01152{bottom:350.640000px;}
.y60_c01152{bottom:351.360000px;}
.y62_c01152{bottom:352.800000px;}
.y5e_c01152{bottom:354.240000px;}
.y5f_c01152{bottom:355.680000px;}
.y5b_c01152{bottom:393.120000px;}
.y5c_c01152{bottom:393.840000px;}
.y5d_c01152{bottom:395.280000px;}
.y59_c01152{bottom:396.000000px;}
.y5a_c01152{bottom:397.440000px;}
.y58_c01152{bottom:434.880000px;}
.y55_c01152{bottom:436.320000px;}
.y56_c01152{bottom:437.040000px;}
.y57_c01152{bottom:437.760000px;}
.y53_c01152{bottom:439.920000px;}
.y54_c01152{bottom:441.360000px;}
.y51_c01152{bottom:478.800000px;}
.y52_c01152{bottom:479.520000px;}
.y4f_c01152{bottom:482.400000px;}
.y50_c01152{bottom:483.840000px;}
.y4b_c01152{bottom:521.280000px;}
.y4c_c01152{bottom:522.720000px;}
.y4e_c01152{bottom:523.440000px;}
.y49_c01152{bottom:524.880000px;}
.y4d_c01152{bottom:525.600000px;}
.y4a_c01152{bottom:526.320000px;}
.y47_c01152{bottom:564.480000px;}
.y48_c01152{bottom:565.200000px;}
.y45_c01152{bottom:565.920000px;}
.y44_c01152{bottom:567.360000px;}
.y46_c01152{bottom:568.800000px;}
.y42_c01152{bottom:606.960000px;}
.y43_c01152{bottom:608.400000px;}
.y41_c01152{bottom:609.120000px;}
.y40_c01152{bottom:609.840000px;}
.y3c_c01152{bottom:649.440000px;}
.y3d_c01152{bottom:650.880000px;}
.y3b_c01152{bottom:651.600000px;}
.y3a_c01152{bottom:652.320000px;}
.y3f_c01152{bottom:653.040000px;}
.y3e_c01152{bottom:653.760000px;}
.y35_c01152{bottom:692.640000px;}
.y34_c01152{bottom:693.360000px;}
.y33_c01152{bottom:694.080000px;}
.y36_c01152{bottom:694.800000px;}
.y39_c01152{bottom:695.520000px;}
.y37_c01152{bottom:696.240000px;}
.y38_c01152{bottom:696.960000px;}
.y30_c01152{bottom:734.400000px;}
.y2d_c01152{bottom:736.560000px;}
.y31_c01152{bottom:737.280000px;}
.y2e_c01152{bottom:738.000000px;}
.y2f_c01152{bottom:738.720000px;}
.y32_c01152{bottom:739.440000px;}
.y28_c01152{bottom:777.600000px;}
.y26_c01152{bottom:779.040000px;}
.y2b_c01152{bottom:779.760000px;}
.y29_c01152{bottom:780.480000px;}
.y27_c01152{bottom:781.200000px;}
.y2c_c01152{bottom:781.920000px;}
.y2a_c01152{bottom:783.360000px;}
.y23_c01152{bottom:820.080000px;}
.y20_c01152{bottom:821.520000px;}
.y22_c01152{bottom:822.960000px;}
.y21_c01152{bottom:823.680000px;}
.y25_c01152{bottom:825.120000px;}
.y24_c01152{bottom:825.840000px;}
.y1c_c01152{bottom:863.280000px;}
.y1a_c01152{bottom:864.000000px;}
.y1b_c01152{bottom:866.160000px;}
.y1e_c01152{bottom:866.880000px;}
.y1f_c01152{bottom:868.320000px;}
.y1d_c01152{bottom:869.040000px;}
.y17_c01152{bottom:905.760000px;}
.y15_c01152{bottom:907.200000px;}
.y16_c01152{bottom:909.360000px;}
.y19_c01152{bottom:910.080000px;}
.y18_c01152{bottom:911.520000px;}
.y11_c01152{bottom:948.960000px;}
.ye_c01152{bottom:949.680000px;}
.yf_c01152{bottom:951.840000px;}
.y10_c01152{bottom:952.560000px;}
.y13_c01152{bottom:954.000000px;}
.y12_c01152{bottom:954.720000px;}
.y14_c01152{bottom:956.160000px;}
.y8_c01152{bottom:992.160000px;}
.y9_c01152{bottom:992.880000px;}
.yb_c01152{bottom:995.040000px;}
.ya_c01152{bottom:995.760000px;}
.yd_c01152{bottom:996.480000px;}
.yc_c01152{bottom:998.640000px;}
.y3_c01152{bottom:1034.640000px;}
.y2_c01152{bottom:1035.360000px;}
.y4_c01152{bottom:1038.960000px;}
.y6_c01152{bottom:1039.680000px;}
.y7_c01152{bottom:1041.120000px;}
.y5_c01152{bottom:1042.560000px;}
.y1_c01152{bottom:1100.160000px;}
.h9_c01152{height:31.100625px;}
.ha_c01152{height:44.059219px;}
.h8_c01152{height:46.650937px;}
.h6_c01152{height:49.242656px;}
.h7_c01152{height:51.834375px;}
.h4_c01152{height:54.426094px;}
.h3_c01152{height:57.017812px;}
.hb_c01152{height:59.609531px;}
.h2_c01152{height:64.792969px;}
.h5_c01152{height:67.384687px;}
.hc_c01152{height:69.976406px;}
.h1_c01152{height:1151.250000px;}
.h0_c01152{height:1151.280000px;}
.w1_c01152{width:783.750000px;}
.w0_c01152{width:784.080000px;}
.x0_c01152{left:0.000000px;}
.x2_c01152{left:69.840000px;}
.x3_c01152{left:142.560000px;}
.x4_c01152{left:185.760000px;}
.x9_c01152{left:196.560000px;}
.xa_c01152{left:239.040000px;}
.x11_c01152{left:249.840000px;}
.xe_c01152{left:303.120000px;}
.x5_c01152{left:542.160000px;}
.xb_c01152{left:606.960000px;}
.x12_c01152{left:628.560000px;}
.x6_c01152{left:630.720000px;}
.xc_c01152{left:654.480000px;}
.x14_c01152{left:661.680000px;}
.x7_c01152{left:663.120000px;}
.x1_c01152{left:683.280000px;}
.x10_c01152{left:695.520000px;}
.x13_c01152{left:704.880000px;}
.x8_c01152{left:706.320000px;}
.xf_c01152{left:726.480000px;}
.xd_c01152{left:727.920000px;}
@media print{
.v1_c01152{vertical-align:-2.560000pt;}
.v0_c01152{vertical-align:0.000000pt;}
.ls0_c01152{letter-spacing:0.000000pt;}
.ws2_c01152{word-spacing:-0.321920pt;}
.ws3_c01152{word-spacing:0.000000pt;}
.ws1_c01152{word-spacing:10.393905pt;}
.ws0_c01152{word-spacing:175.911467pt;}
.fs7_c01152{font-size:30.720000pt;}
.fs8_c01152{font-size:43.520000pt;}
.fs6_c01152{font-size:46.080000pt;}
.fs4_c01152{font-size:48.640000pt;}
.fs5_c01152{font-size:51.200000pt;}
.fs2_c01152{font-size:53.760000pt;}
.fs1_c01152{font-size:56.320000pt;}
.fs9_c01152{font-size:58.880000pt;}
.fs0_c01152{font-size:64.000000pt;}
.fs3_c01152{font-size:66.560000pt;}
.fsa_c01152{font-size:69.120000pt;}
.y0_c01152{bottom:0.000000pt;}
.y8b_c01152{bottom:42.240000pt;}
.y8d_c01152{bottom:42.880000pt;}
.y8a_c01152{bottom:43.520000pt;}
.y8c_c01152{bottom:44.160000pt;}
.y89_c01152{bottom:44.800000pt;}
.y88_c01152{bottom:45.440000pt;}
.y87_c01152{bottom:49.920000pt;}
.y86_c01152{bottom:50.560000pt;}
.y85_c01152{bottom:51.200000pt;}
.y84_c01152{bottom:80.640000pt;}
.y83_c01152{bottom:81.280000pt;}
.y82_c01152{bottom:82.560000pt;}
.y81_c01152{bottom:87.040000pt;}
.y7f_c01152{bottom:87.680000pt;}
.y80_c01152{bottom:88.960000pt;}
.y7d_c01152{bottom:118.400000pt;}
.y7c_c01152{bottom:119.040000pt;}
.y7e_c01152{bottom:119.680000pt;}
.y7a_c01152{bottom:120.320000pt;}
.y7b_c01152{bottom:120.960000pt;}
.y79_c01152{bottom:124.800000pt;}
.y77_c01152{bottom:125.440000pt;}
.y78_c01152{bottom:126.080000pt;}
.y76_c01152{bottom:159.360000pt;}
.y75_c01152{bottom:164.480000pt;}
.y74_c01152{bottom:195.840000pt;}
.y73_c01152{bottom:196.480000pt;}
.y72_c01152{bottom:197.120000pt;}
.y71_c01152{bottom:201.600000pt;}
.y70_c01152{bottom:232.960000pt;}
.y6f_c01152{bottom:233.600000pt;}
.y6c_c01152{bottom:234.240000pt;}
.y6d_c01152{bottom:235.520000pt;}
.y6e_c01152{bottom:236.160000pt;}
.y6b_c01152{bottom:238.720000pt;}
.y69_c01152{bottom:239.360000pt;}
.y6a_c01152{bottom:240.640000pt;}
.y67_c01152{bottom:272.640000pt;}
.y66_c01152{bottom:273.280000pt;}
.y68_c01152{bottom:273.920000pt;}
.y63_c01152{bottom:276.480000pt;}
.y65_c01152{bottom:277.120000pt;}
.y64_c01152{bottom:277.760000pt;}
.y61_c01152{bottom:311.680000pt;}
.y60_c01152{bottom:312.320000pt;}
.y62_c01152{bottom:313.600000pt;}
.y5e_c01152{bottom:314.880000pt;}
.y5f_c01152{bottom:316.160000pt;}
.y5b_c01152{bottom:349.440000pt;}
.y5c_c01152{bottom:350.080000pt;}
.y5d_c01152{bottom:351.360000pt;}
.y59_c01152{bottom:352.000000pt;}
.y5a_c01152{bottom:353.280000pt;}
.y58_c01152{bottom:386.560000pt;}
.y55_c01152{bottom:387.840000pt;}
.y56_c01152{bottom:388.480000pt;}
.y57_c01152{bottom:389.120000pt;}
.y53_c01152{bottom:391.040000pt;}
.y54_c01152{bottom:392.320000pt;}
.y51_c01152{bottom:425.600000pt;}
.y52_c01152{bottom:426.240000pt;}
.y4f_c01152{bottom:428.800000pt;}
.y50_c01152{bottom:430.080000pt;}
.y4b_c01152{bottom:463.360000pt;}
.y4c_c01152{bottom:464.640000pt;}
.y4e_c01152{bottom:465.280000pt;}
.y49_c01152{bottom:466.560000pt;}
.y4d_c01152{bottom:467.200000pt;}
.y4a_c01152{bottom:467.840000pt;}
.y47_c01152{bottom:501.760000pt;}
.y48_c01152{bottom:502.400000pt;}
.y45_c01152{bottom:503.040000pt;}
.y44_c01152{bottom:504.320000pt;}
.y46_c01152{bottom:505.600000pt;}
.y42_c01152{bottom:539.520000pt;}
.y43_c01152{bottom:540.800000pt;}
.y41_c01152{bottom:541.440000pt;}
.y40_c01152{bottom:542.080000pt;}
.y3c_c01152{bottom:577.280000pt;}
.y3d_c01152{bottom:578.560000pt;}
.y3b_c01152{bottom:579.200000pt;}
.y3a_c01152{bottom:579.840000pt;}
.y3f_c01152{bottom:580.480000pt;}
.y3e_c01152{bottom:581.120000pt;}
.y35_c01152{bottom:615.680000pt;}
.y34_c01152{bottom:616.320000pt;}
.y33_c01152{bottom:616.960000pt;}
.y36_c01152{bottom:617.600000pt;}
.y39_c01152{bottom:618.240000pt;}
.y37_c01152{bottom:618.880000pt;}
.y38_c01152{bottom:619.520000pt;}
.y30_c01152{bottom:652.800000pt;}
.y2d_c01152{bottom:654.720000pt;}
.y31_c01152{bottom:655.360000pt;}
.y2e_c01152{bottom:656.000000pt;}
.y2f_c01152{bottom:656.640000pt;}
.y32_c01152{bottom:657.280000pt;}
.y28_c01152{bottom:691.200000pt;}
.y26_c01152{bottom:692.480000pt;}
.y2b_c01152{bottom:693.120000pt;}
.y29_c01152{bottom:693.760000pt;}
.y27_c01152{bottom:694.400000pt;}
.y2c_c01152{bottom:695.040000pt;}
.y2a_c01152{bottom:696.320000pt;}
.y23_c01152{bottom:728.960000pt;}
.y20_c01152{bottom:730.240000pt;}
.y22_c01152{bottom:731.520000pt;}
.y21_c01152{bottom:732.160000pt;}
.y25_c01152{bottom:733.440000pt;}
.y24_c01152{bottom:734.080000pt;}
.y1c_c01152{bottom:767.360000pt;}
.y1a_c01152{bottom:768.000000pt;}
.y1b_c01152{bottom:769.920000pt;}
.y1e_c01152{bottom:770.560000pt;}
.y1f_c01152{bottom:771.840000pt;}
.y1d_c01152{bottom:772.480000pt;}
.y17_c01152{bottom:805.120000pt;}
.y15_c01152{bottom:806.400000pt;}
.y16_c01152{bottom:808.320000pt;}
.y19_c01152{bottom:808.960000pt;}
.y18_c01152{bottom:810.240000pt;}
.y11_c01152{bottom:843.520000pt;}
.ye_c01152{bottom:844.160000pt;}
.yf_c01152{bottom:846.080000pt;}
.y10_c01152{bottom:846.720000pt;}
.y13_c01152{bottom:848.000000pt;}
.y12_c01152{bottom:848.640000pt;}
.y14_c01152{bottom:849.920000pt;}
.y8_c01152{bottom:881.920000pt;}
.y9_c01152{bottom:882.560000pt;}
.yb_c01152{bottom:884.480000pt;}
.ya_c01152{bottom:885.120000pt;}
.yd_c01152{bottom:885.760000pt;}
.yc_c01152{bottom:887.680000pt;}
.y3_c01152{bottom:919.680000pt;}
.y2_c01152{bottom:920.320000pt;}
.y4_c01152{bottom:923.520000pt;}
.y6_c01152{bottom:924.160000pt;}
.y7_c01152{bottom:925.440000pt;}
.y5_c01152{bottom:926.720000pt;}
.y1_c01152{bottom:977.920000pt;}
.h9_c01152{height:27.645000pt;}
.ha_c01152{height:39.163750pt;}
.h8_c01152{height:41.467500pt;}
.h6_c01152{height:43.771250pt;}
.h7_c01152{height:46.075000pt;}
.h4_c01152{height:48.378750pt;}
.h3_c01152{height:50.682500pt;}
.hb_c01152{height:52.986250pt;}
.h2_c01152{height:57.593750pt;}
.h5_c01152{height:59.897500pt;}
.hc_c01152{height:62.201250pt;}
.h1_c01152{height:1023.333333pt;}
.h0_c01152{height:1023.360000pt;}
.w1_c01152{width:696.666667pt;}
.w0_c01152{width:696.960000pt;}
.x0_c01152{left:0.000000pt;}
.x2_c01152{left:62.080000pt;}
.x3_c01152{left:126.720000pt;}
.x4_c01152{left:165.120000pt;}
.x9_c01152{left:174.720000pt;}
.xa_c01152{left:212.480000pt;}
.x11_c01152{left:222.080000pt;}
.xe_c01152{left:269.440000pt;}
.x5_c01152{left:481.920000pt;}
.xb_c01152{left:539.520000pt;}
.x12_c01152{left:558.720000pt;}
.x6_c01152{left:560.640000pt;}
.xc_c01152{left:581.760000pt;}
.x14_c01152{left:588.160000pt;}
.x7_c01152{left:589.440000pt;}
.x1_c01152{left:607.360000pt;}
.x10_c01152{left:618.240000pt;}
.x13_c01152{left:626.560000pt;}
.x8_c01152{left:627.840000pt;}
.xf_c01152{left:645.760000pt;}
.xd_c01152{left:647.040000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8823db0068d705c50dcab98a.woff2')format("woff");}.ff1_c01153{font-family:ff1_c01153;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m45_c01153{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m21_c01153{transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);}
.m1b_c01153{transform:matrix(0.200550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200550,0.000000,0.000000,0.250000,0,0);}
.m3e_c01153{transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);}
.m1e_c01153{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m14_c01153{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01153{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);}
.m44_c01153{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);}
.m37_c01153{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);}
.m42_c01153{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_c01153{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);}
.m4d_c01153{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01153{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m17_c01153{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_c01153{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m35_c01153{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m6_c01153{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m13_c01153{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m12_c01153{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m24_c01153{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m3_c01153{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m20_c01153{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m4_c01153{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m5_c01153{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.ma_c01153{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.me_c01153{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m46_c01153{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m10_c01153{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m7_c01153{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m8_c01153{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m4a_c01153{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01153{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1_c01153{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m9_c01153{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m0_c01153{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.mb_c01153{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);}
.m3f_c01153{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m11_c01153{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);}
.m2b_c01153{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01153{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_c01153{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01153{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);}
.m1a_c01153{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m28_c01153{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);}
.m47_c01153{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);}
.m2c_c01153{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m16_c01153{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);}
.m25_c01153{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);}
.m33_c01153{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);}
.m48_c01153{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);}
.m31_c01153{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01153{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);}
.m38_c01153{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_c01153{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m39_c01153{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m27_c01153{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m40_c01153{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);}
.m2a_c01153{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);}
.m4c_c01153{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m22_c01153{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m32_c01153{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m34_c01153{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);}
.m29_c01153{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);}
.m43_c01153{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01153{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);}
.md_c01153{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);}
.m3a_c01153{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01153{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);}
.m19_c01153{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m2_c01153{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.mc_c01153{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m30_c01153{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01153{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m15_c01153{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m49_c01153{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m41_c01153{transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01153{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.m36_c01153{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.v1_c01153{vertical-align:-11.520000px;}
.v0_c01153{vertical-align:0.000000px;}
.v2_c01153{vertical-align:5.760000px;}
.ls0_c01153{letter-spacing:0.000000px;}
.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;}
}
.ws1_c01153{word-spacing:-4.171200px;}
.ws2_c01153{word-spacing:0.000000px;}
.ws0_c01153{word-spacing:6.649440px;}
.fc0_c01153{color:transparent;}
.fsc_c01153{font-size:34.560000px;}
.fsd_c01153{font-size:37.440000px;}
.fse_c01153{font-size:43.200000px;}
.fsa_c01153{font-size:46.080000px;}
.fs2_c01153{font-size:48.960000px;}
.fs1_c01153{font-size:51.840000px;}
.fs7_c01153{font-size:54.720000px;}
.fs8_c01153{font-size:57.600000px;}
.fs4_c01153{font-size:60.480000px;}
.fs0_c01153{font-size:63.360000px;}
.fs5_c01153{font-size:66.240000px;}
.fsb_c01153{font-size:69.120000px;}
.fs9_c01153{font-size:72.000000px;}
.fs3_c01153{font-size:74.880000px;}
.fs6_c01153{font-size:77.760000px;}
.fsf_c01153{font-size:103.680000px;}
.y0_c01153{bottom:0.000000px;}
.y91_c01153{bottom:57.600000px;}
.y8f_c01153{bottom:59.040000px;}
.y92_c01153{bottom:59.760000px;}
.y8c_c01153{bottom:60.480000px;}
.y90_c01153{bottom:61.200000px;}
.y8e_c01153{bottom:61.920000px;}
.y8d_c01153{bottom:62.640000px;}
.y8b_c01153{bottom:63.360000px;}
.y8a_c01153{bottom:102.960000px;}
.y89_c01153{bottom:105.120000px;}
.y88_c01153{bottom:106.560000px;}
.y87_c01153{bottom:108.000000px;}
.y82_c01153{bottom:133.200000px;}
.y80_c01153{bottom:133.920000px;}
.y81_c01153{bottom:134.640000px;}
.y86_c01153{bottom:135.360000px;}
.y7f_c01153{bottom:136.800000px;}
.y85_c01153{bottom:138.240000px;}
.y83_c01153{bottom:139.680000px;}
.y84_c01153{bottom:140.400000px;}
.y7b_c01153{bottom:177.120000px;}
.y7e_c01153{bottom:177.840000px;}
.y79_c01153{bottom:178.560000px;}
.y7a_c01153{bottom:180.720000px;}
.y78_c01153{bottom:182.160000px;}
.y77_c01153{bottom:182.880000px;}
.y72_c01153{bottom:220.320000px;}
.y7c_c01153{bottom:221.040000px;}
.y7d_c01153{bottom:222.480000px;}
.y74_c01153{bottom:223.200000px;}
.y73_c01153{bottom:223.920000px;}
.y70_c01153{bottom:224.640000px;}
.y71_c01153{bottom:225.360000px;}
.y6f_c01153{bottom:262.800000px;}
.y6d_c01153{bottom:263.520000px;}
.y6e_c01153{bottom:265.680000px;}
.y76_c01153{bottom:266.400000px;}
.y6b_c01153{bottom:267.120000px;}
.y6c_c01153{bottom:268.560000px;}
.y6a_c01153{bottom:298.080000px;}
.y67_c01153{bottom:305.280000px;}
.y68_c01153{bottom:306.720000px;}
.y75_c01153{bottom:307.440000px;}
.y69_c01153{bottom:308.880000px;}
.y65_c01153{bottom:309.600000px;}
.y66_c01153{bottom:311.040000px;}
.y60_c01153{bottom:348.480000px;}
.y64_c01153{bottom:349.200000px;}
.y63_c01153{bottom:349.920000px;}
.y61_c01153{bottom:351.360000px;}
.y5e_c01153{bottom:352.080000px;}
.y5f_c01153{bottom:352.800000px;}
.y5c_c01153{bottom:391.680000px;}
.y5d_c01153{bottom:393.840000px;}
.y5a_c01153{bottom:394.560000px;}
.y5b_c01153{bottom:396.000000px;}
.y59_c01153{bottom:434.160000px;}
.y58_c01153{bottom:437.040000px;}
.y57_c01153{bottom:437.760000px;}
.y56_c01153{bottom:438.480000px;}
.y54_c01153{bottom:465.840000px;}
.y62_c01153{bottom:468.000000px;}
.y52_c01153{bottom:468.720000px;}
.y55_c01153{bottom:469.440000px;}
.y53_c01153{bottom:470.160000px;}
.y4f_c01153{bottom:508.320000px;}
.y51_c01153{bottom:509.040000px;}
.y4c_c01153{bottom:510.480000px;}
.y4d_c01153{bottom:511.200000px;}
.y50_c01153{bottom:511.920000px;}
.y4b_c01153{bottom:512.640000px;}
.y4e_c01153{bottom:513.360000px;}
.y47_c01153{bottom:552.240000px;}
.y48_c01153{bottom:552.960000px;}
.y45_c01153{bottom:553.680000px;}
.y4a_c01153{bottom:554.400000px;}
.y46_c01153{bottom:555.840000px;}
.y44_c01153{bottom:588.960000px;}
.y40_c01153{bottom:594.720000px;}
.y41_c01153{bottom:596.160000px;}
.y3f_c01153{bottom:596.880000px;}
.y43_c01153{bottom:597.600000px;}
.y42_c01153{bottom:598.320000px;}
.y49_c01153{bottom:599.760000px;}
.y3c_c01153{bottom:638.640000px;}
.y3a_c01153{bottom:640.080000px;}
.y3b_c01153{bottom:640.800000px;}
.y3e_c01153{bottom:641.520000px;}
.y3d_c01153{bottom:642.960000px;}
.y35_c01153{bottom:680.400000px;}
.y33_c01153{bottom:681.120000px;}
.y37_c01153{bottom:681.840000px;}
.y34_c01153{bottom:683.280000px;}
.y36_c01153{bottom:684.000000px;}
.y38_c01153{bottom:684.720000px;}
.y39_c01153{bottom:686.880000px;}
.y2f_c01153{bottom:722.160000px;}
.y30_c01153{bottom:724.320000px;}
.y2d_c01153{bottom:725.040000px;}
.y2e_c01153{bottom:727.200000px;}
.y31_c01153{bottom:727.920000px;}
.y32_c01153{bottom:730.080000px;}
.y2c_c01153{bottom:766.080000px;}
.y2b_c01153{bottom:767.520000px;}
.y29_c01153{bottom:769.680000px;}
.y2a_c01153{bottom:770.400000px;}
.y28_c01153{bottom:771.840000px;}
.y18_c01153{bottom:809.280000px;}
.y16_c01153{bottom:810.000000px;}
.y17_c01153{bottom:812.160000px;}
.ya_c01153{bottom:812.880000px;}
.y26_c01153{bottom:813.600000px;}
.y27_c01153{bottom:815.040000px;}
.y15_c01153{bottom:851.760000px;}
.y13_c01153{bottom:852.480000px;}
.y14_c01153{bottom:855.360000px;}
.y9_c01153{bottom:856.080000px;}
.y24_c01153{bottom:858.960000px;}
.y25_c01153{bottom:859.680000px;}
.y10_c01153{bottom:894.960000px;}
.y11_c01153{bottom:897.120000px;}
.y12_c01153{bottom:897.840000px;}
.y8_c01153{bottom:898.560000px;}
.y22_c01153{bottom:900.000000px;}
.y21_c01153{bottom:901.440000px;}
.y23_c01153{bottom:902.880000px;}
.yf_c01153{bottom:936.000000px;}
.yd_c01153{bottom:936.720000px;}
.ye_c01153{bottom:939.600000px;}
.y7_c01153{bottom:941.760000px;}
.y1f_c01153{bottom:943.920000px;}
.y20_c01153{bottom:945.360000px;}
.yb_c01153{bottom:979.200000px;}
.yc_c01153{bottom:982.800000px;}
.y6_c01153{bottom:984.240000px;}
.y1d_c01153{bottom:984.960000px;}
.y1e_c01153{bottom:985.680000px;}
.y1c_c01153{bottom:987.840000px;}
.y1_c01153{bottom:1022.400000px;}
.y4_c01153{bottom:1023.120000px;}
.y2_c01153{bottom:1025.280000px;}
.y3_c01153{bottom:1026.000000px;}
.y5_c01153{bottom:1028.160000px;}
.y19_c01153{bottom:1028.880000px;}
.y1b_c01153{bottom:1029.600000px;}
.y1a_c01153{bottom:1031.040000px;}
.hf_c01153{height:31.100625px;}
.h10_c01153{height:33.692344px;}
.h11_c01153{height:38.875781px;}
.hc_c01153{height:41.467500px;}
.h4_c01153{height:44.059219px;}
.h3_c01153{height:46.650937px;}
.h9_c01153{height:49.242656px;}
.ha_c01153{height:51.834375px;}
.hd_c01153{height:53.272969px;}
.h6_c01153{height:54.426094px;}
.h2_c01153{height:57.017812px;}
.h7_c01153{height:59.609531px;}
.he_c01153{height:62.201250px;}
.hb_c01153{height:64.792969px;}
.h5_c01153{height:67.384687px;}
.h8_c01153{height:69.976406px;}
.h12_c01153{height:93.301875px;}
.h1_c01153{height:1149.000000px;}
.h0_c01153{height:1149.120000px;}
.w0_c01153{width:779.760000px;}
.w1_c01153{width:780.000000px;}
.x0_c01153{left:0.000000px;}
.x1_c01153{left:64.800000px;}
.xd_c01153{left:66.240000px;}
.x26_c01153{left:67.680000px;}
.x29_c01153{left:69.120000px;}
.x2_c01153{left:138.240000px;}
.x1b_c01153{left:139.680000px;}
.x2e_c01153{left:151.200000px;}
.x33_c01153{left:152.640000px;}
.x2a_c01153{left:163.440000px;}
.x3_c01153{left:181.440000px;}
.x23_c01153{left:182.880000px;}
.x1f_c01153{left:192.240000px;}
.x2b_c01153{left:194.400000px;}
.x4_c01153{left:234.720000px;}
.x20_c01153{left:236.160000px;}
.x34_c01153{left:237.600000px;}
.x35_c01153{left:248.400000px;}
.x21_c01153{left:278.640000px;}
.x2c_c01153{left:280.080000px;}
.xe_c01153{left:289.440000px;}
.x17_c01153{left:290.880000px;}
.x6_c01153{left:299.520000px;}
.x30_c01153{left:300.960000px;}
.x2d_c01153{left:302.400000px;}
.x1c_c01153{left:333.360000px;}
.x13_c01153{left:343.440000px;}
.x31_c01153{left:345.600000px;}
.xf_c01153{left:375.840000px;}
.x14_c01153{left:386.640000px;}
.x1d_c01153{left:388.080000px;}
.x32_c01153{left:399.600000px;}
.x18_c01153{left:408.240000px;}
.x22_c01153{left:419.040000px;}
.x1e_c01153{left:429.840000px;}
.x27_c01153{left:452.880000px;}
.x15_c01153{left:473.040000px;}
.x28_c01153{left:505.440000px;}
.x16_c01153{left:506.880000px;}
.x5_c01153{left:537.840000px;}
.x1a_c01153{left:540.000000px;}
.x11_c01153{left:571.680000px;}
.xc_c01153{left:591.840000px;}
.x10_c01153{left:593.280000px;}
.x25_c01153{left:594.720000px;}
.x7_c01153{left:625.680000px;}
.x24_c01153{left:627.120000px;}
.x8_c01153{left:658.800000px;}
.x19_c01153{left:660.240000px;}
.x9_c01153{left:702.000000px;}
.x12_c01153{left:704.160000px;}
.xa_c01153{left:722.160000px;}
.xb_c01153{left:723.600000px;}
.x2f_c01153{left:725.040000px;}
@media print{
.v1_c01153{vertical-align:-10.240000pt;}
.v0_c01153{vertical-align:0.000000pt;}
.v2_c01153{vertical-align:5.120000pt;}
.ls0_c01153{letter-spacing:0.000000pt;}
.ws1_c01153{word-spacing:-3.707733pt;}
.ws2_c01153{word-spacing:0.000000pt;}
.ws0_c01153{word-spacing:5.910613pt;}
.fsc_c01153{font-size:30.720000pt;}
.fsd_c01153{font-size:33.280000pt;}
.fse_c01153{font-size:38.400000pt;}
.fsa_c01153{font-size:40.960000pt;}
.fs2_c01153{font-size:43.520000pt;}
.fs1_c01153{font-size:46.080000pt;}
.fs7_c01153{font-size:48.640000pt;}
.fs8_c01153{font-size:51.200000pt;}
.fs4_c01153{font-size:53.760000pt;}
.fs0_c01153{font-size:56.320000pt;}
.fs5_c01153{font-size:58.880000pt;}
.fsb_c01153{font-size:61.440000pt;}
.fs9_c01153{font-size:64.000000pt;}
.fs3_c01153{font-size:66.560000pt;}
.fs6_c01153{font-size:69.120000pt;}
.fsf_c01153{font-size:92.160000pt;}
.y0_c01153{bottom:0.000000pt;}
.y91_c01153{bottom:51.200000pt;}
.y8f_c01153{bottom:52.480000pt;}
.y92_c01153{bottom:53.120000pt;}
.y8c_c01153{bottom:53.760000pt;}
.y90_c01153{bottom:54.400000pt;}
.y8e_c01153{bottom:55.040000pt;}
.y8d_c01153{bottom:55.680000pt;}
.y8b_c01153{bottom:56.320000pt;}
.y8a_c01153{bottom:91.520000pt;}
.y89_c01153{bottom:93.440000pt;}
.y88_c01153{bottom:94.720000pt;}
.y87_c01153{bottom:96.000000pt;}
.y82_c01153{bottom:118.400000pt;}
.y80_c01153{bottom:119.040000pt;}
.y81_c01153{bottom:119.680000pt;}
.y86_c01153{bottom:120.320000pt;}
.y7f_c01153{bottom:121.600000pt;}
.y85_c01153{bottom:122.880000pt;}
.y83_c01153{bottom:124.160000pt;}
.y84_c01153{bottom:124.800000pt;}
.y7b_c01153{bottom:157.440000pt;}
.y7e_c01153{bottom:158.080000pt;}
.y79_c01153{bottom:158.720000pt;}
.y7a_c01153{bottom:160.640000pt;}
.y78_c01153{bottom:161.920000pt;}
.y77_c01153{bottom:162.560000pt;}
.y72_c01153{bottom:195.840000pt;}
.y7c_c01153{bottom:196.480000pt;}
.y7d_c01153{bottom:197.760000pt;}
.y74_c01153{bottom:198.400000pt;}
.y73_c01153{bottom:199.040000pt;}
.y70_c01153{bottom:199.680000pt;}
.y71_c01153{bottom:200.320000pt;}
.y6f_c01153{bottom:233.600000pt;}
.y6d_c01153{bottom:234.240000pt;}
.y6e_c01153{bottom:236.160000pt;}
.y76_c01153{bottom:236.800000pt;}
.y6b_c01153{bottom:237.440000pt;}
.y6c_c01153{bottom:238.720000pt;}
.y6a_c01153{bottom:264.960000pt;}
.y67_c01153{bottom:271.360000pt;}
.y68_c01153{bottom:272.640000pt;}
.y75_c01153{bottom:273.280000pt;}
.y69_c01153{bottom:274.560000pt;}
.y65_c01153{bottom:275.200000pt;}
.y66_c01153{bottom:276.480000pt;}
.y60_c01153{bottom:309.760000pt;}
.y64_c01153{bottom:310.400000pt;}
.y63_c01153{bottom:311.040000pt;}
.y61_c01153{bottom:312.320000pt;}
.y5e_c01153{bottom:312.960000pt;}
.y5f_c01153{bottom:313.600000pt;}
.y5c_c01153{bottom:348.160000pt;}
.y5d_c01153{bottom:350.080000pt;}
.y5a_c01153{bottom:350.720000pt;}
.y5b_c01153{bottom:352.000000pt;}
.y59_c01153{bottom:385.920000pt;}
.y58_c01153{bottom:388.480000pt;}
.y57_c01153{bottom:389.120000pt;}
.y56_c01153{bottom:389.760000pt;}
.y54_c01153{bottom:414.080000pt;}
.y62_c01153{bottom:416.000000pt;}
.y52_c01153{bottom:416.640000pt;}
.y55_c01153{bottom:417.280000pt;}
.y53_c01153{bottom:417.920000pt;}
.y4f_c01153{bottom:451.840000pt;}
.y51_c01153{bottom:452.480000pt;}
.y4c_c01153{bottom:453.760000pt;}
.y4d_c01153{bottom:454.400000pt;}
.y50_c01153{bottom:455.040000pt;}
.y4b_c01153{bottom:455.680000pt;}
.y4e_c01153{bottom:456.320000pt;}
.y47_c01153{bottom:490.880000pt;}
.y48_c01153{bottom:491.520000pt;}
.y45_c01153{bottom:492.160000pt;}
.y4a_c01153{bottom:492.800000pt;}
.y46_c01153{bottom:494.080000pt;}
.y44_c01153{bottom:523.520000pt;}
.y40_c01153{bottom:528.640000pt;}
.y41_c01153{bottom:529.920000pt;}
.y3f_c01153{bottom:530.560000pt;}
.y43_c01153{bottom:531.200000pt;}
.y42_c01153{bottom:531.840000pt;}
.y49_c01153{bottom:533.120000pt;}
.y3c_c01153{bottom:567.680000pt;}
.y3a_c01153{bottom:568.960000pt;}
.y3b_c01153{bottom:569.600000pt;}
.y3e_c01153{bottom:570.240000pt;}
.y3d_c01153{bottom:571.520000pt;}
.y35_c01153{bottom:604.800000pt;}
.y33_c01153{bottom:605.440000pt;}
.y37_c01153{bottom:606.080000pt;}
.y34_c01153{bottom:607.360000pt;}
.y36_c01153{bottom:608.000000pt;}
.y38_c01153{bottom:608.640000pt;}
.y39_c01153{bottom:610.560000pt;}
.y2f_c01153{bottom:641.920000pt;}
.y30_c01153{bottom:643.840000pt;}
.y2d_c01153{bottom:644.480000pt;}
.y2e_c01153{bottom:646.400000pt;}
.y31_c01153{bottom:647.040000pt;}
.y32_c01153{bottom:648.960000pt;}
.y2c_c01153{bottom:680.960000pt;}
.y2b_c01153{bottom:682.240000pt;}
.y29_c01153{bottom:684.160000pt;}
.y2a_c01153{bottom:684.800000pt;}
.y28_c01153{bottom:686.080000pt;}
.y18_c01153{bottom:719.360000pt;}
.y16_c01153{bottom:720.000000pt;}
.y17_c01153{bottom:721.920000pt;}
.ya_c01153{bottom:722.560000pt;}
.y26_c01153{bottom:723.200000pt;}
.y27_c01153{bottom:724.480000pt;}
.y15_c01153{bottom:757.120000pt;}
.y13_c01153{bottom:757.760000pt;}
.y14_c01153{bottom:760.320000pt;}
.y9_c01153{bottom:760.960000pt;}
.y24_c01153{bottom:763.520000pt;}
.y25_c01153{bottom:764.160000pt;}
.y10_c01153{bottom:795.520000pt;}
.y11_c01153{bottom:797.440000pt;}
.y12_c01153{bottom:798.080000pt;}
.y8_c01153{bottom:798.720000pt;}
.y22_c01153{bottom:800.000000pt;}
.y21_c01153{bottom:801.280000pt;}
.y23_c01153{bottom:802.560000pt;}
.yf_c01153{bottom:832.000000pt;}
.yd_c01153{bottom:832.640000pt;}
.ye_c01153{bottom:835.200000pt;}
.y7_c01153{bottom:837.120000pt;}
.y1f_c01153{bottom:839.040000pt;}
.y20_c01153{bottom:840.320000pt;}
.yb_c01153{bottom:870.400000pt;}
.yc_c01153{bottom:873.600000pt;}
.y6_c01153{bottom:874.880000pt;}
.y1d_c01153{bottom:875.520000pt;}
.y1e_c01153{bottom:876.160000pt;}
.y1c_c01153{bottom:878.080000pt;}
.y1_c01153{bottom:908.800000pt;}
.y4_c01153{bottom:909.440000pt;}
.y2_c01153{bottom:911.360000pt;}
.y3_c01153{bottom:912.000000pt;}
.y5_c01153{bottom:913.920000pt;}
.y19_c01153{bottom:914.560000pt;}
.y1b_c01153{bottom:915.200000pt;}
.y1a_c01153{bottom:916.480000pt;}
.hf_c01153{height:27.645000pt;}
.h10_c01153{height:29.948750pt;}
.h11_c01153{height:34.556250pt;}
.hc_c01153{height:36.860000pt;}
.h4_c01153{height:39.163750pt;}
.h3_c01153{height:41.467500pt;}
.h9_c01153{height:43.771250pt;}
.ha_c01153{height:46.075000pt;}
.hd_c01153{height:47.353750pt;}
.h6_c01153{height:48.378750pt;}
.h2_c01153{height:50.682500pt;}
.h7_c01153{height:52.986250pt;}
.he_c01153{height:55.290000pt;}
.hb_c01153{height:57.593750pt;}
.h5_c01153{height:59.897500pt;}
.h8_c01153{height:62.201250pt;}
.h12_c01153{height:82.935000pt;}
.h1_c01153{height:1021.333333pt;}
.h0_c01153{height:1021.440000pt;}
.w0_c01153{width:693.120000pt;}
.w1_c01153{width:693.333333pt;}
.x0_c01153{left:0.000000pt;}
.x1_c01153{left:57.600000pt;}
.xd_c01153{left:58.880000pt;}
.x26_c01153{left:60.160000pt;}
.x29_c01153{left:61.440000pt;}
.x2_c01153{left:122.880000pt;}
.x1b_c01153{left:124.160000pt;}
.x2e_c01153{left:134.400000pt;}
.x33_c01153{left:135.680000pt;}
.x2a_c01153{left:145.280000pt;}
.x3_c01153{left:161.280000pt;}
.x23_c01153{left:162.560000pt;}
.x1f_c01153{left:170.880000pt;}
.x2b_c01153{left:172.800000pt;}
.x4_c01153{left:208.640000pt;}
.x20_c01153{left:209.920000pt;}
.x34_c01153{left:211.200000pt;}
.x35_c01153{left:220.800000pt;}
.x21_c01153{left:247.680000pt;}
.x2c_c01153{left:248.960000pt;}
.xe_c01153{left:257.280000pt;}
.x17_c01153{left:258.560000pt;}
.x6_c01153{left:266.240000pt;}
.x30_c01153{left:267.520000pt;}
.x2d_c01153{left:268.800000pt;}
.x1c_c01153{left:296.320000pt;}
.x13_c01153{left:305.280000pt;}
.x31_c01153{left:307.200000pt;}
.xf_c01153{left:334.080000pt;}
.x14_c01153{left:343.680000pt;}
.x1d_c01153{left:344.960000pt;}
.x32_c01153{left:355.200000pt;}
.x18_c01153{left:362.880000pt;}
.x22_c01153{left:372.480000pt;}
.x1e_c01153{left:382.080000pt;}
.x27_c01153{left:402.560000pt;}
.x15_c01153{left:420.480000pt;}
.x28_c01153{left:449.280000pt;}
.x16_c01153{left:450.560000pt;}
.x5_c01153{left:478.080000pt;}
.x1a_c01153{left:480.000000pt;}
.x11_c01153{left:508.160000pt;}
.xc_c01153{left:526.080000pt;}
.x10_c01153{left:527.360000pt;}
.x25_c01153{left:528.640000pt;}
.x7_c01153{left:556.160000pt;}
.x24_c01153{left:557.440000pt;}
.x8_c01153{left:585.600000pt;}
.x19_c01153{left:586.880000pt;}
.x9_c01153{left:624.000000pt;}
.x12_c01153{left:625.920000pt;}
.xa_c01153{left:641.920000pt;}
.xb_c01153{left:643.200000pt;}
.x2f_c01153{left:644.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_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_6bf9b49e5f048e9729a2a3b0.woff2')format("woff");}.ff1_c01154{font-family:ff1_c01154;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m36_c01154{transform:matrix(0.172525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172525,0.000000,0.000000,0.250000,0,0);}
.m26_c01154{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01154{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m2f_c01154{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);}
.m43_c01154{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01154{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);}
.m4a_c01154{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.mb_c01154{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m7_c01154{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m12_c01154{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m14_c01154{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_c01154{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m15_c01154{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m27_c01154{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01154{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01154{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m10_c01154{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.md_c01154{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01154{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01154{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m31_c01154{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.me_c01154{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m11_c01154{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m38_c01154{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m29_c01154{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_c01154{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m6_c01154{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m9_c01154{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.mc_c01154{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);}
.m2a_c01154{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m3_c01154{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m13_c01154{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01154{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_c01154{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m49_c01154{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m19_c01154{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m17_c01154{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m0_c01154{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);}
.m30_c01154{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01154{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01154{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);}
.m1e_c01154{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m5_c01154{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_c01154{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01154{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);}
.m3a_c01154{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m42_c01154{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);}
.m46_c01154{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);}
.m25_c01154{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.ma_c01154{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m1_c01154{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_c01154{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);}
.m3d_c01154{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m21_c01154{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);}
.m2c_c01154{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m23_c01154{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m22_c01154{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m35_c01154{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01154{transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);}
.m4_c01154{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m16_c01154{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);}
.m28_c01154{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m24_c01154{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m45_c01154{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m33_c01154{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01154{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m48_c01154{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);}
.m40_c01154{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m47_c01154{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m39_c01154{transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);}
.m37_c01154{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m44_c01154{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01154{transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);}
.m32_c01154{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01154{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01154{transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);}
.m34_c01154{transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);}
.v0_c01154{vertical-align:0.000000px;}
.v1_c01154{vertical-align:20.160000px;}
.ls0_c01154{letter-spacing:0.000000px;}
.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;}
}
.ws1_c01154{word-spacing:0.000000px;}
.ws0_c01154{word-spacing:178.506000px;}
.fc0_c01154{color:transparent;}
.fse_c01154{font-size:17.280000px;}
.fsb_c01154{font-size:34.560000px;}
.fsa_c01154{font-size:37.440000px;}
.fs4_c01154{font-size:40.320000px;}
.fsf_c01154{font-size:43.200000px;}
.fsc_c01154{font-size:46.080000px;}
.fs5_c01154{font-size:48.960000px;}
.fs1_c01154{font-size:51.840000px;}
.fs6_c01154{font-size:54.720000px;}
.fs2_c01154{font-size:57.600000px;}
.fs8_c01154{font-size:60.480000px;}
.fs10_c01154{font-size:63.360000px;}
.fs7_c01154{font-size:66.240000px;}
.fs9_c01154{font-size:69.120000px;}
.fs3_c01154{font-size:72.000000px;}
.fs0_c01154{font-size:74.880000px;}
.fsd_c01154{font-size:100.800000px;}
.y0_c01154{bottom:0.000000px;}
.ya7_c01154{bottom:30.240000px;}
.ya6_c01154{bottom:32.400000px;}
.ya4_c01154{bottom:33.120000px;}
.ya5_c01154{bottom:33.840000px;}
.ya3_c01154{bottom:60.480000px;}
.ya2_c01154{bottom:61.200000px;}
.y9f_c01154{bottom:61.920000px;}
.y9d_c01154{bottom:62.640000px;}
.ya1_c01154{bottom:63.360000px;}
.ya0_c01154{bottom:64.800000px;}
.y9e_c01154{bottom:65.520000px;}
.y9b_c01154{bottom:66.240000px;}
.y9c_c01154{bottom:66.960000px;}
.y9a_c01154{bottom:104.400000px;}
.y98_c01154{bottom:105.120000px;}
.y97_c01154{bottom:105.840000px;}
.y99_c01154{bottom:108.000000px;}
.y95_c01154{bottom:109.440000px;}
.y96_c01154{bottom:110.880000px;}
.y92_c01154{bottom:147.600000px;}
.y91_c01154{bottom:148.320000px;}
.y94_c01154{bottom:149.040000px;}
.y93_c01154{bottom:149.760000px;}
.y8f_c01154{bottom:151.920000px;}
.y90_c01154{bottom:152.640000px;}
.y8c_c01154{bottom:190.800000px;}
.y8e_c01154{bottom:192.240000px;}
.y8d_c01154{bottom:192.960000px;}
.y8a_c01154{bottom:194.400000px;}
.y8b_c01154{bottom:195.840000px;}
.y88_c01154{bottom:233.280000px;}
.y84_c01154{bottom:234.000000px;}
.y86_c01154{bottom:234.720000px;}
.y89_c01154{bottom:235.440000px;}
.y87_c01154{bottom:236.160000px;}
.y85_c01154{bottom:236.880000px;}
.y83_c01154{bottom:238.320000px;}
.y82_c01154{bottom:268.560000px;}
.y7d_c01154{bottom:275.760000px;}
.y80_c01154{bottom:276.480000px;}
.y81_c01154{bottom:277.200000px;}
.y7e_c01154{bottom:278.640000px;}
.y7f_c01154{bottom:279.360000px;}
.y7c_c01154{bottom:280.080000px;}
.y7b_c01154{bottom:280.800000px;}
.y78_c01154{bottom:318.960000px;}
.y7a_c01154{bottom:319.680000px;}
.y79_c01154{bottom:321.840000px;}
.y76_c01154{bottom:322.560000px;}
.y77_c01154{bottom:323.280000px;}
.y75_c01154{bottom:362.160000px;}
.y73_c01154{bottom:362.880000px;}
.y74_c01154{bottom:367.200000px;}
.y6f_c01154{bottom:394.560000px;}
.y70_c01154{bottom:395.280000px;}
.y72_c01154{bottom:396.720000px;}
.y6d_c01154{bottom:397.440000px;}
.y71_c01154{bottom:398.160000px;}
.y6e_c01154{bottom:398.880000px;}
.y6a_c01154{bottom:437.040000px;}
.y6b_c01154{bottom:438.480000px;}
.y6c_c01154{bottom:439.200000px;}
.y68_c01154{bottom:440.640000px;}
.y69_c01154{bottom:441.360000px;}
.y66_c01154{bottom:473.040000px;}
.y62_c01154{bottom:480.240000px;}
.y64_c01154{bottom:480.960000px;}
.y65_c01154{bottom:481.680000px;}
.y60_c01154{bottom:482.400000px;}
.y63_c01154{bottom:483.120000px;}
.y61_c01154{bottom:483.840000px;}
.y67_c01154{bottom:484.560000px;}
.y59_c01154{bottom:522.720000px;}
.y5b_c01154{bottom:523.440000px;}
.y5a_c01154{bottom:524.160000px;}
.y5d_c01154{bottom:524.880000px;}
.y5e_c01154{bottom:525.600000px;}
.y58_c01154{bottom:526.320000px;}
.y5c_c01154{bottom:527.040000px;}
.y5f_c01154{bottom:527.760000px;}
.y52_c01154{bottom:565.200000px;}
.y53_c01154{bottom:566.640000px;}
.y50_c01154{bottom:567.360000px;}
.y55_c01154{bottom:568.080000px;}
.y51_c01154{bottom:568.800000px;}
.y54_c01154{bottom:569.520000px;}
.y56_c01154{bottom:570.240000px;}
.y57_c01154{bottom:570.960000px;}
.y4b_c01154{bottom:607.680000px;}
.y4c_c01154{bottom:609.120000px;}
.y49_c01154{bottom:609.840000px;}
.y4e_c01154{bottom:610.560000px;}
.y4a_c01154{bottom:611.280000px;}
.y4d_c01154{bottom:612.720000px;}
.y4f_c01154{bottom:613.440000px;}
.y44_c01154{bottom:650.160000px;}
.y45_c01154{bottom:651.600000px;}
.y42_c01154{bottom:652.320000px;}
.y47_c01154{bottom:653.040000px;}
.y43_c01154{bottom:653.760000px;}
.y46_c01154{bottom:654.480000px;}
.y48_c01154{bottom:655.200000px;}
.y3d_c01154{bottom:693.360000px;}
.y3e_c01154{bottom:694.080000px;}
.y3b_c01154{bottom:694.800000px;}
.y3c_c01154{bottom:696.960000px;}
.y3f_c01154{bottom:697.680000px;}
.y40_c01154{bottom:698.400000px;}
.y41_c01154{bottom:699.120000px;}
.y34_c01154{bottom:735.840000px;}
.y33_c01154{bottom:737.280000px;}
.y35_c01154{bottom:738.720000px;}
.y36_c01154{bottom:740.160000px;}
.y37_c01154{bottom:740.880000px;}
.y3a_c01154{bottom:741.600000px;}
.y39_c01154{bottom:742.320000px;}
.y38_c01154{bottom:743.040000px;}
.y2d_c01154{bottom:778.320000px;}
.y2c_c01154{bottom:779.760000px;}
.y2f_c01154{bottom:780.480000px;}
.y2b_c01154{bottom:781.200000px;}
.y2e_c01154{bottom:782.640000px;}
.y30_c01154{bottom:783.360000px;}
.y31_c01154{bottom:785.520000px;}
.y32_c01154{bottom:786.240000px;}
.y26_c01154{bottom:820.800000px;}
.y25_c01154{bottom:822.240000px;}
.y28_c01154{bottom:823.680000px;}
.y27_c01154{bottom:825.840000px;}
.y29_c01154{bottom:826.560000px;}
.y2a_c01154{bottom:832.320000px;}
.y1f_c01154{bottom:863.280000px;}
.y1e_c01154{bottom:864.720000px;}
.y1d_c01154{bottom:865.440000px;}
.y20_c01154{bottom:866.160000px;}
.y21_c01154{bottom:869.040000px;}
.y22_c01154{bottom:869.760000px;}
.y23_c01154{bottom:870.480000px;}
.y24_c01154{bottom:871.200000px;}
.y18_c01154{bottom:907.200000px;}
.y17_c01154{bottom:907.920000px;}
.y1a_c01154{bottom:910.080000px;}
.y19_c01154{bottom:911.520000px;}
.y1b_c01154{bottom:912.960000px;}
.y1c_c01154{bottom:915.840000px;}
.y12_c01154{bottom:950.400000px;}
.y11_c01154{bottom:951.120000px;}
.y10_c01154{bottom:951.840000px;}
.y13_c01154{bottom:952.560000px;}
.y15_c01154{bottom:955.440000px;}
.y14_c01154{bottom:956.880000px;}
.y16_c01154{bottom:959.040000px;}
.ya_c01154{bottom:992.880000px;}
.y9_c01154{bottom:993.600000px;}
.yb_c01154{bottom:994.320000px;}
.yc_c01154{bottom:995.760000px;}
.ye_c01154{bottom:999.360000px;}
.yd_c01154{bottom:1000.080000px;}
.yf_c01154{bottom:1002.240000px;}
.y2_c01154{bottom:1036.080000px;}
.y6_c01154{bottom:1038.960000px;}
.y3_c01154{bottom:1039.680000px;}
.y4_c01154{bottom:1041.120000px;}
.y5_c01154{bottom:1041.840000px;}
.y8_c01154{bottom:1042.560000px;}
.y7_c01154{bottom:1043.280000px;}
.y1_c01154{bottom:1098.720000px;}
.h11_c01154{height:15.550313px;}
.he_c01154{height:31.100625px;}
.hc_c01154{height:33.692344px;}
.h6_c01154{height:36.284062px;}
.h12_c01154{height:38.875781px;}
.hf_c01154{height:41.467500px;}
.h7_c01154{height:44.059219px;}
.h3_c01154{height:46.650937px;}
.h8_c01154{height:49.242656px;}
.h4_c01154{height:51.834375px;}
.ha_c01154{height:54.426094px;}
.h13_c01154{height:57.017812px;}
.h9_c01154{height:59.609531px;}
.hb_c01154{height:62.201250px;}
.h5_c01154{height:64.792969px;}
.h2_c01154{height:67.384687px;}
.hd_c01154{height:69.402656px;}
.h10_c01154{height:90.710156px;}
.h1_c01154{height:1149.750000px;}
.h0_c01154{height:1149.840000px;}
.w0_c01154{width:780.480000px;}
.w1_c01154{width:780.750000px;}
.x0_c01154{left:0.000000px;}
.x2_c01154{left:64.800000px;}
.x1e_c01154{left:66.240000px;}
.x2d_c01154{left:67.680000px;}
.x36_c01154{left:69.120000px;}
.x3d_c01154{left:140.400000px;}
.x3_c01154{left:146.880000px;}
.x14_c01154{left:148.320000px;}
.x2a_c01154{left:149.760000px;}
.x37_c01154{left:151.200000px;}
.x25_c01154{left:162.000000px;}
.x3e_c01154{left:183.600000px;}
.x1f_c01154{left:191.520000px;}
.x2e_c01154{left:192.960000px;}
.x38_c01154{left:194.400000px;}
.x4_c01154{left:200.880000px;}
.x15_c01154{left:202.320000px;}
.x31_c01154{left:224.640000px;}
.x47_c01154{left:246.960000px;}
.x32_c01154{left:279.360000px;}
.x3f_c01154{left:291.600000px;}
.x22_c01154{left:298.800000px;}
.x20_c01154{left:300.240000px;}
.x39_c01154{left:302.400000px;}
.x5_c01154{left:308.880000px;}
.x1b_c01154{left:311.040000px;}
.x40_c01154{left:334.080000px;}
.x26_c01154{left:344.160000px;}
.x48_c01154{left:345.600000px;}
.x11_c01154{left:352.080000px;}
.x6_c01154{left:353.520000px;}
.x21_c01154{left:385.920000px;}
.x43_c01154{left:388.800000px;}
.x7_c01154{left:393.840000px;}
.xc_c01154{left:395.280000px;}
.x23_c01154{left:396.720000px;}
.x3a_c01154{left:398.880000px;}
.x27_c01154{left:429.840000px;}
.x41_c01154{left:431.280000px;}
.x8_c01154{left:438.480000px;}
.x16_c01154{left:439.920000px;}
.x33_c01154{left:441.360000px;}
.x12_c01154{left:449.280000px;}
.x42_c01154{left:473.760000px;}
.x30_c01154{left:475.200000px;}
.x17_c01154{left:483.120000px;}
.x34_c01154{left:484.560000px;}
.x3b_c01154{left:486.000000px;}
.x13_c01154{left:492.480000px;}
.x9_c01154{left:536.400000px;}
.x18_c01154{left:537.840000px;}
.x2b_c01154{left:539.280000px;}
.x46_c01154{left:540.720000px;}
.xf_c01154{left:590.400000px;}
.xa_c01154{left:591.840000px;}
.x24_c01154{left:593.280000px;}
.x44_c01154{left:594.720000px;}
.x2c_c01154{left:604.080000px;}
.xd_c01154{left:624.960000px;}
.x1d_c01154{left:626.400000px;}
.x35_c01154{left:627.840000px;}
.xe_c01154{left:657.360000px;}
.x1c_c01154{left:658.800000px;}
.x2f_c01154{left:660.240000px;}
.x1_c01154{left:671.040000px;}
.xb_c01154{left:690.480000px;}
.x10_c01154{left:700.560000px;}
.x19_c01154{left:702.000000px;}
.x28_c01154{left:704.160000px;}
.x45_c01154{left:705.600000px;}
.x1a_c01154{left:722.160000px;}
.x29_c01154{left:723.600000px;}
.x3c_c01154{left:725.040000px;}
@media print{
.v0_c01154{vertical-align:0.000000pt;}
.v1_c01154{vertical-align:17.920000pt;}
.ls0_c01154{letter-spacing:0.000000pt;}
.ws1_c01154{word-spacing:0.000000pt;}
.ws0_c01154{word-spacing:158.672000pt;}
.fse_c01154{font-size:15.360000pt;}
.fsb_c01154{font-size:30.720000pt;}
.fsa_c01154{font-size:33.280000pt;}
.fs4_c01154{font-size:35.840000pt;}
.fsf_c01154{font-size:38.400000pt;}
.fsc_c01154{font-size:40.960000pt;}
.fs5_c01154{font-size:43.520000pt;}
.fs1_c01154{font-size:46.080000pt;}
.fs6_c01154{font-size:48.640000pt;}
.fs2_c01154{font-size:51.200000pt;}
.fs8_c01154{font-size:53.760000pt;}
.fs10_c01154{font-size:56.320000pt;}
.fs7_c01154{font-size:58.880000pt;}
.fs9_c01154{font-size:61.440000pt;}
.fs3_c01154{font-size:64.000000pt;}
.fs0_c01154{font-size:66.560000pt;}
.fsd_c01154{font-size:89.600000pt;}
.y0_c01154{bottom:0.000000pt;}
.ya7_c01154{bottom:26.880000pt;}
.ya6_c01154{bottom:28.800000pt;}
.ya4_c01154{bottom:29.440000pt;}
.ya5_c01154{bottom:30.080000pt;}
.ya3_c01154{bottom:53.760000pt;}
.ya2_c01154{bottom:54.400000pt;}
.y9f_c01154{bottom:55.040000pt;}
.y9d_c01154{bottom:55.680000pt;}
.ya1_c01154{bottom:56.320000pt;}
.ya0_c01154{bottom:57.600000pt;}
.y9e_c01154{bottom:58.240000pt;}
.y9b_c01154{bottom:58.880000pt;}
.y9c_c01154{bottom:59.520000pt;}
.y9a_c01154{bottom:92.800000pt;}
.y98_c01154{bottom:93.440000pt;}
.y97_c01154{bottom:94.080000pt;}
.y99_c01154{bottom:96.000000pt;}
.y95_c01154{bottom:97.280000pt;}
.y96_c01154{bottom:98.560000pt;}
.y92_c01154{bottom:131.200000pt;}
.y91_c01154{bottom:131.840000pt;}
.y94_c01154{bottom:132.480000pt;}
.y93_c01154{bottom:133.120000pt;}
.y8f_c01154{bottom:135.040000pt;}
.y90_c01154{bottom:135.680000pt;}
.y8c_c01154{bottom:169.600000pt;}
.y8e_c01154{bottom:170.880000pt;}
.y8d_c01154{bottom:171.520000pt;}
.y8a_c01154{bottom:172.800000pt;}
.y8b_c01154{bottom:174.080000pt;}
.y88_c01154{bottom:207.360000pt;}
.y84_c01154{bottom:208.000000pt;}
.y86_c01154{bottom:208.640000pt;}
.y89_c01154{bottom:209.280000pt;}
.y87_c01154{bottom:209.920000pt;}
.y85_c01154{bottom:210.560000pt;}
.y83_c01154{bottom:211.840000pt;}
.y82_c01154{bottom:238.720000pt;}
.y7d_c01154{bottom:245.120000pt;}
.y80_c01154{bottom:245.760000pt;}
.y81_c01154{bottom:246.400000pt;}
.y7e_c01154{bottom:247.680000pt;}
.y7f_c01154{bottom:248.320000pt;}
.y7c_c01154{bottom:248.960000pt;}
.y7b_c01154{bottom:249.600000pt;}
.y78_c01154{bottom:283.520000pt;}
.y7a_c01154{bottom:284.160000pt;}
.y79_c01154{bottom:286.080000pt;}
.y76_c01154{bottom:286.720000pt;}
.y77_c01154{bottom:287.360000pt;}
.y75_c01154{bottom:321.920000pt;}
.y73_c01154{bottom:322.560000pt;}
.y74_c01154{bottom:326.400000pt;}
.y6f_c01154{bottom:350.720000pt;}
.y70_c01154{bottom:351.360000pt;}
.y72_c01154{bottom:352.640000pt;}
.y6d_c01154{bottom:353.280000pt;}
.y71_c01154{bottom:353.920000pt;}
.y6e_c01154{bottom:354.560000pt;}
.y6a_c01154{bottom:388.480000pt;}
.y6b_c01154{bottom:389.760000pt;}
.y6c_c01154{bottom:390.400000pt;}
.y68_c01154{bottom:391.680000pt;}
.y69_c01154{bottom:392.320000pt;}
.y66_c01154{bottom:420.480000pt;}
.y62_c01154{bottom:426.880000pt;}
.y64_c01154{bottom:427.520000pt;}
.y65_c01154{bottom:428.160000pt;}
.y60_c01154{bottom:428.800000pt;}
.y63_c01154{bottom:429.440000pt;}
.y61_c01154{bottom:430.080000pt;}
.y67_c01154{bottom:430.720000pt;}
.y59_c01154{bottom:464.640000pt;}
.y5b_c01154{bottom:465.280000pt;}
.y5a_c01154{bottom:465.920000pt;}
.y5d_c01154{bottom:466.560000pt;}
.y5e_c01154{bottom:467.200000pt;}
.y58_c01154{bottom:467.840000pt;}
.y5c_c01154{bottom:468.480000pt;}
.y5f_c01154{bottom:469.120000pt;}
.y52_c01154{bottom:502.400000pt;}
.y53_c01154{bottom:503.680000pt;}
.y50_c01154{bottom:504.320000pt;}
.y55_c01154{bottom:504.960000pt;}
.y51_c01154{bottom:505.600000pt;}
.y54_c01154{bottom:506.240000pt;}
.y56_c01154{bottom:506.880000pt;}
.y57_c01154{bottom:507.520000pt;}
.y4b_c01154{bottom:540.160000pt;}
.y4c_c01154{bottom:541.440000pt;}
.y49_c01154{bottom:542.080000pt;}
.y4e_c01154{bottom:542.720000pt;}
.y4a_c01154{bottom:543.360000pt;}
.y4d_c01154{bottom:544.640000pt;}
.y4f_c01154{bottom:545.280000pt;}
.y44_c01154{bottom:577.920000pt;}
.y45_c01154{bottom:579.200000pt;}
.y42_c01154{bottom:579.840000pt;}
.y47_c01154{bottom:580.480000pt;}
.y43_c01154{bottom:581.120000pt;}
.y46_c01154{bottom:581.760000pt;}
.y48_c01154{bottom:582.400000pt;}
.y3d_c01154{bottom:616.320000pt;}
.y3e_c01154{bottom:616.960000pt;}
.y3b_c01154{bottom:617.600000pt;}
.y3c_c01154{bottom:619.520000pt;}
.y3f_c01154{bottom:620.160000pt;}
.y40_c01154{bottom:620.800000pt;}
.y41_c01154{bottom:621.440000pt;}
.y34_c01154{bottom:654.080000pt;}
.y33_c01154{bottom:655.360000pt;}
.y35_c01154{bottom:656.640000pt;}
.y36_c01154{bottom:657.920000pt;}
.y37_c01154{bottom:658.560000pt;}
.y3a_c01154{bottom:659.200000pt;}
.y39_c01154{bottom:659.840000pt;}
.y38_c01154{bottom:660.480000pt;}
.y2d_c01154{bottom:691.840000pt;}
.y2c_c01154{bottom:693.120000pt;}
.y2f_c01154{bottom:693.760000pt;}
.y2b_c01154{bottom:694.400000pt;}
.y2e_c01154{bottom:695.680000pt;}
.y30_c01154{bottom:696.320000pt;}
.y31_c01154{bottom:698.240000pt;}
.y32_c01154{bottom:698.880000pt;}
.y26_c01154{bottom:729.600000pt;}
.y25_c01154{bottom:730.880000pt;}
.y28_c01154{bottom:732.160000pt;}
.y27_c01154{bottom:734.080000pt;}
.y29_c01154{bottom:734.720000pt;}
.y2a_c01154{bottom:739.840000pt;}
.y1f_c01154{bottom:767.360000pt;}
.y1e_c01154{bottom:768.640000pt;}
.y1d_c01154{bottom:769.280000pt;}
.y20_c01154{bottom:769.920000pt;}
.y21_c01154{bottom:772.480000pt;}
.y22_c01154{bottom:773.120000pt;}
.y23_c01154{bottom:773.760000pt;}
.y24_c01154{bottom:774.400000pt;}
.y18_c01154{bottom:806.400000pt;}
.y17_c01154{bottom:807.040000pt;}
.y1a_c01154{bottom:808.960000pt;}
.y19_c01154{bottom:810.240000pt;}
.y1b_c01154{bottom:811.520000pt;}
.y1c_c01154{bottom:814.080000pt;}
.y12_c01154{bottom:844.800000pt;}
.y11_c01154{bottom:845.440000pt;}
.y10_c01154{bottom:846.080000pt;}
.y13_c01154{bottom:846.720000pt;}
.y15_c01154{bottom:849.280000pt;}
.y14_c01154{bottom:850.560000pt;}
.y16_c01154{bottom:852.480000pt;}
.ya_c01154{bottom:882.560000pt;}
.y9_c01154{bottom:883.200000pt;}
.yb_c01154{bottom:883.840000pt;}
.yc_c01154{bottom:885.120000pt;}
.ye_c01154{bottom:888.320000pt;}
.yd_c01154{bottom:888.960000pt;}
.yf_c01154{bottom:890.880000pt;}
.y2_c01154{bottom:920.960000pt;}
.y6_c01154{bottom:923.520000pt;}
.y3_c01154{bottom:924.160000pt;}
.y4_c01154{bottom:925.440000pt;}
.y5_c01154{bottom:926.080000pt;}
.y8_c01154{bottom:926.720000pt;}
.y7_c01154{bottom:927.360000pt;}
.y1_c01154{bottom:976.640000pt;}
.h11_c01154{height:13.822500pt;}
.he_c01154{height:27.645000pt;}
.hc_c01154{height:29.948750pt;}
.h6_c01154{height:32.252500pt;}
.h12_c01154{height:34.556250pt;}
.hf_c01154{height:36.860000pt;}
.h7_c01154{height:39.163750pt;}
.h3_c01154{height:41.467500pt;}
.h8_c01154{height:43.771250pt;}
.h4_c01154{height:46.075000pt;}
.ha_c01154{height:48.378750pt;}
.h13_c01154{height:50.682500pt;}
.h9_c01154{height:52.986250pt;}
.hb_c01154{height:55.290000pt;}
.h5_c01154{height:57.593750pt;}
.h2_c01154{height:59.897500pt;}
.hd_c01154{height:61.691250pt;}
.h10_c01154{height:80.631250pt;}
.h1_c01154{height:1022.000000pt;}
.h0_c01154{height:1022.080000pt;}
.w0_c01154{width:693.760000pt;}
.w1_c01154{width:694.000000pt;}
.x0_c01154{left:0.000000pt;}
.x2_c01154{left:57.600000pt;}
.x1e_c01154{left:58.880000pt;}
.x2d_c01154{left:60.160000pt;}
.x36_c01154{left:61.440000pt;}
.x3d_c01154{left:124.800000pt;}
.x3_c01154{left:130.560000pt;}
.x14_c01154{left:131.840000pt;}
.x2a_c01154{left:133.120000pt;}
.x37_c01154{left:134.400000pt;}
.x25_c01154{left:144.000000pt;}
.x3e_c01154{left:163.200000pt;}
.x1f_c01154{left:170.240000pt;}
.x2e_c01154{left:171.520000pt;}
.x38_c01154{left:172.800000pt;}
.x4_c01154{left:178.560000pt;}
.x15_c01154{left:179.840000pt;}
.x31_c01154{left:199.680000pt;}
.x47_c01154{left:219.520000pt;}
.x32_c01154{left:248.320000pt;}
.x3f_c01154{left:259.200000pt;}
.x22_c01154{left:265.600000pt;}
.x20_c01154{left:266.880000pt;}
.x39_c01154{left:268.800000pt;}
.x5_c01154{left:274.560000pt;}
.x1b_c01154{left:276.480000pt;}
.x40_c01154{left:296.960000pt;}
.x26_c01154{left:305.920000pt;}
.x48_c01154{left:307.200000pt;}
.x11_c01154{left:312.960000pt;}
.x6_c01154{left:314.240000pt;}
.x21_c01154{left:343.040000pt;}
.x43_c01154{left:345.600000pt;}
.x7_c01154{left:350.080000pt;}
.xc_c01154{left:351.360000pt;}
.x23_c01154{left:352.640000pt;}
.x3a_c01154{left:354.560000pt;}
.x27_c01154{left:382.080000pt;}
.x41_c01154{left:383.360000pt;}
.x8_c01154{left:389.760000pt;}
.x16_c01154{left:391.040000pt;}
.x33_c01154{left:392.320000pt;}
.x12_c01154{left:399.360000pt;}
.x42_c01154{left:421.120000pt;}
.x30_c01154{left:422.400000pt;}
.x17_c01154{left:429.440000pt;}
.x34_c01154{left:430.720000pt;}
.x3b_c01154{left:432.000000pt;}
.x13_c01154{left:437.760000pt;}
.x9_c01154{left:476.800000pt;}
.x18_c01154{left:478.080000pt;}
.x2b_c01154{left:479.360000pt;}
.x46_c01154{left:480.640000pt;}
.xf_c01154{left:524.800000pt;}
.xa_c01154{left:526.080000pt;}
.x24_c01154{left:527.360000pt;}
.x44_c01154{left:528.640000pt;}
.x2c_c01154{left:536.960000pt;}
.xd_c01154{left:555.520000pt;}
.x1d_c01154{left:556.800000pt;}
.x35_c01154{left:558.080000pt;}
.xe_c01154{left:584.320000pt;}
.x1c_c01154{left:585.600000pt;}
.x2f_c01154{left:586.880000pt;}
.x1_c01154{left:596.480000pt;}
.xb_c01154{left:613.760000pt;}
.x10_c01154{left:622.720000pt;}
.x19_c01154{left:624.000000pt;}
.x28_c01154{left:625.920000pt;}
.x45_c01154{left:627.200000pt;}
.x1a_c01154{left:641.920000pt;}
.x29_c01154{left:643.200000pt;}
.x3c_c01154{left:644.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_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_dc7ba72fca04eaf9702c04d6.woff2')format("woff");}.ff1_c01155{font-family:ff1_c01155;line-height:1.109863;font-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_c01155{transform:matrix(0.190175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190175,0.000000,0.000000,0.250000,0,0);}
.m1a_c01155{transform:matrix(0.219850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219850,0.000000,0.000000,0.250000,0,0);}
.m41_c01155{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m27_c01155{transform:matrix(0.229400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229400,0.000000,0.000000,0.250000,0,0);}
.m1f_c01155{transform:matrix(0.231800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231800,0.000000,0.000000,0.250000,0,0);}
.m31_c01155{transform:matrix(0.242350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242350,0.000000,0.000000,0.250000,0,0);}
.m47_c01155{transform:matrix(0.244425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244425,0.000000,0.000000,0.250000,0,0);}
.m4a_c01155{transform:matrix(0.249650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249650,0.000000,0.000000,0.250000,0,0);}
.m24_c01155{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01155{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_c01155{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_c01155{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);}
.m3d_c01155{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);}
.m53_c01155{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);}
.m45_c01155{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);}
.m35_c01155{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01155{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m39_c01155{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m9_c01155{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m8_c01155{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m21_c01155{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m25_c01155{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.me_c01155{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m15_c01155{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01155{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01155{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1_c01155{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.md_c01155{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m6_c01155{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m11_c01155{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m7_c01155{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m14_c01155{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m38_c01155{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01155{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mf_c01155{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m26_c01155{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m17_c01155{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m12_c01155{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.mb_c01155{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);}
.m1d_c01155{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01155{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);}
.m2a_c01155{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m2_c01155{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01155{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m0_c01155{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);}
.m28_c01155{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m13_c01155{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.mc_c01155{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);}
.m4_c01155{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_c01155{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);}
.m55_c01155{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m10_c01155{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);}
.m5_c01155{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);}
.m4f_c01155{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01155{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m49_c01155{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);}
.m40_c01155{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01155{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);}
.m33_c01155{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m44_c01155{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.ma_c01155{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);}
.m43_c01155{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01155{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m56_c01155{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);}
.m48_c01155{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m3_c01155{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);}
.m50_c01155{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m37_c01155{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m29_c01155{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);}
.m34_c01155{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m36_c01155{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);}
.m2d_c01155{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);}
.m30_c01155{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01155{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m32_c01155{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01155{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m18_c01155{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01155{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m54_c01155{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);}
.m22_c01155{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m52_c01155{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);}
.m16_c01155{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01155{transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01155{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m20_c01155{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01155{transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);}
.m46_c01155{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.v3_c01155{vertical-align:-8.640000px;}
.v0_c01155{vertical-align:0.000000px;}
.v1_c01155{vertical-align:2.880000px;}
.v2_c01155{vertical-align:11.520000px;}
.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;}
}
.ws3_c01155{word-spacing:0.000000px;}
.ws0_c01155{word-spacing:4.059120px;}
.ws2_c01155{word-spacing:17.079600px;}
.ws1_c01155{word-spacing:207.540000px;}
.fc0_c01155{color:transparent;}
.fs8_c01155{font-size:34.560000px;}
.fs3_c01155{font-size:37.440000px;}
.fsa_c01155{font-size:46.080000px;}
.fs9_c01155{font-size:48.960000px;}
.fs2_c01155{font-size:51.840000px;}
.fs6_c01155{font-size:54.720000px;}
.fs1_c01155{font-size:57.600000px;}
.fs4_c01155{font-size:60.480000px;}
.fsd_c01155{font-size:63.360000px;}
.fsc_c01155{font-size:66.240000px;}
.fs7_c01155{font-size:69.120000px;}
.fs5_c01155{font-size:72.000000px;}
.fs0_c01155{font-size:74.880000px;}
.fsb_c01155{font-size:103.680000px;}
.y0_c01155{bottom:0.000000px;}
.y9c_c01155{bottom:56.880000px;}
.y9a_c01155{bottom:58.320000px;}
.y9d_c01155{bottom:59.040000px;}
.y98_c01155{bottom:60.480000px;}
.y9b_c01155{bottom:61.200000px;}
.y99_c01155{bottom:61.920000px;}
.y97_c01155{bottom:63.360000px;}
.y96_c01155{bottom:99.360000px;}
.y94_c01155{bottom:100.800000px;}
.y92_c01155{bottom:102.240000px;}
.y90_c01155{bottom:102.960000px;}
.y95_c01155{bottom:103.680000px;}
.y93_c01155{bottom:105.120000px;}
.y91_c01155{bottom:105.840000px;}
.y8f_c01155{bottom:107.280000px;}
.y8d_c01155{bottom:144.000000px;}
.y8e_c01155{bottom:145.440000px;}
.y8b_c01155{bottom:146.160000px;}
.y89_c01155{bottom:146.880000px;}
.y8c_c01155{bottom:148.320000px;}
.y8a_c01155{bottom:149.760000px;}
.y88_c01155{bottom:150.480000px;}
.y85_c01155{bottom:186.480000px;}
.y84_c01155{bottom:187.920000px;}
.y87_c01155{bottom:188.640000px;}
.y81_c01155{bottom:189.360000px;}
.y86_c01155{bottom:190.080000px;}
.y83_c01155{bottom:190.800000px;}
.y82_c01155{bottom:191.520000px;}
.y80_c01155{bottom:192.240000px;}
.y7f_c01155{bottom:223.200000px;}
.y7c_c01155{bottom:228.960000px;}
.y7e_c01155{bottom:229.680000px;}
.y7b_c01155{bottom:231.120000px;}
.y79_c01155{bottom:231.840000px;}
.y7d_c01155{bottom:232.560000px;}
.y7a_c01155{bottom:234.000000px;}
.y78_c01155{bottom:234.720000px;}
.y77_c01155{bottom:273.600000px;}
.y75_c01155{bottom:275.040000px;}
.y76_c01155{bottom:277.920000px;}
.y74_c01155{bottom:305.280000px;}
.y72_c01155{bottom:306.000000px;}
.y70_c01155{bottom:306.720000px;}
.y71_c01155{bottom:307.440000px;}
.y73_c01155{bottom:308.160000px;}
.y6f_c01155{bottom:308.880000px;}
.y6c_c01155{bottom:347.760000px;}
.y6b_c01155{bottom:348.480000px;}
.y69_c01155{bottom:349.200000px;}
.y6e_c01155{bottom:349.920000px;}
.y6d_c01155{bottom:350.640000px;}
.y68_c01155{bottom:351.360000px;}
.y6a_c01155{bottom:352.080000px;}
.y65_c01155{bottom:390.960000px;}
.y62_c01155{bottom:391.680000px;}
.y67_c01155{bottom:392.400000px;}
.y66_c01155{bottom:393.120000px;}
.y64_c01155{bottom:393.840000px;}
.y61_c01155{bottom:394.560000px;}
.y63_c01155{bottom:395.280000px;}
.y5e_c01155{bottom:432.720000px;}
.y60_c01155{bottom:433.440000px;}
.y5c_c01155{bottom:434.160000px;}
.y5f_c01155{bottom:435.600000px;}
.y5b_c01155{bottom:436.320000px;}
.y5a_c01155{bottom:437.040000px;}
.y5d_c01155{bottom:437.760000px;}
.y58_c01155{bottom:475.920000px;}
.y56_c01155{bottom:477.360000px;}
.y59_c01155{bottom:478.800000px;}
.y55_c01155{bottom:479.520000px;}
.y57_c01155{bottom:480.240000px;}
.y53_c01155{bottom:518.400000px;}
.y50_c01155{bottom:519.120000px;}
.y54_c01155{bottom:519.840000px;}
.y4f_c01155{bottom:520.560000px;}
.y52_c01155{bottom:522.000000px;}
.y51_c01155{bottom:522.720000px;}
.y4c_c01155{bottom:561.600000px;}
.y4e_c01155{bottom:562.320000px;}
.y4b_c01155{bottom:563.760000px;}
.y4d_c01155{bottom:565.200000px;}
.y46_c01155{bottom:605.520000px;}
.y45_c01155{bottom:606.240000px;}
.y4a_c01155{bottom:606.960000px;}
.y48_c01155{bottom:607.680000px;}
.y47_c01155{bottom:608.400000px;}
.y49_c01155{bottom:609.120000px;}
.y42_c01155{bottom:648.000000px;}
.y41_c01155{bottom:649.440000px;}
.y44_c01155{bottom:650.160000px;}
.y43_c01155{bottom:651.600000px;}
.y3b_c01155{bottom:690.480000px;}
.y3d_c01155{bottom:691.200000px;}
.y3a_c01155{bottom:691.920000px;}
.y3e_c01155{bottom:692.640000px;}
.y3f_c01155{bottom:693.360000px;}
.y3c_c01155{bottom:694.080000px;}
.y40_c01155{bottom:694.800000px;}
.y37_c01155{bottom:726.480000px;}
.y34_c01155{bottom:733.680000px;}
.y33_c01155{bottom:734.400000px;}
.y36_c01155{bottom:735.120000px;}
.y38_c01155{bottom:735.840000px;}
.y35_c01155{bottom:737.280000px;}
.y39_c01155{bottom:738.000000px;}
.y2e_c01155{bottom:776.160000px;}
.y2d_c01155{bottom:776.880000px;}
.y30_c01155{bottom:777.600000px;}
.y2f_c01155{bottom:779.760000px;}
.y31_c01155{bottom:780.480000px;}
.y32_c01155{bottom:781.200000px;}
.y27_c01155{bottom:818.640000px;}
.y25_c01155{bottom:819.360000px;}
.y26_c01155{bottom:820.080000px;}
.y29_c01155{bottom:820.800000px;}
.y2b_c01155{bottom:822.240000px;}
.y2a_c01155{bottom:822.960000px;}
.y28_c01155{bottom:823.680000px;}
.y2c_c01155{bottom:825.120000px;}
.y1e_c01155{bottom:861.840000px;}
.y1d_c01155{bottom:862.560000px;}
.y21_c01155{bottom:864.000000px;}
.y23_c01155{bottom:864.720000px;}
.y1f_c01155{bottom:865.440000px;}
.y20_c01155{bottom:866.160000px;}
.y22_c01155{bottom:866.880000px;}
.y24_c01155{bottom:867.600000px;}
.y18_c01155{bottom:904.320000px;}
.y16_c01155{bottom:905.040000px;}
.y1a_c01155{bottom:905.760000px;}
.y17_c01155{bottom:907.920000px;}
.y19_c01155{bottom:908.640000px;}
.y1b_c01155{bottom:909.360000px;}
.y1c_c01155{bottom:910.080000px;}
.y12_c01155{bottom:946.800000px;}
.y10_c01155{bottom:948.240000px;}
.y13_c01155{bottom:948.960000px;}
.y11_c01155{bottom:950.400000px;}
.y14_c01155{bottom:952.560000px;}
.y15_c01155{bottom:953.280000px;}
.yc_c01155{bottom:989.280000px;}
.ya_c01155{bottom:991.440000px;}
.yb_c01155{bottom:992.160000px;}
.ye_c01155{bottom:993.600000px;}
.yf_c01155{bottom:995.040000px;}
.yd_c01155{bottom:995.760000px;}
.y4_c01155{bottom:1031.760000px;}
.y2_c01155{bottom:1032.480000px;}
.y6_c01155{bottom:1034.640000px;}
.y3_c01155{bottom:1035.360000px;}
.y5_c01155{bottom:1036.800000px;}
.y7_c01155{bottom:1037.520000px;}
.y8_c01155{bottom:1038.240000px;}
.y9_c01155{bottom:1039.680000px;}
.y1_c01155{bottom:1098.720000px;}
.ha_c01155{height:31.100625px;}
.h5_c01155{height:33.692344px;}
.hc_c01155{height:41.467500px;}
.hb_c01155{height:44.059219px;}
.h4_c01155{height:46.650937px;}
.h8_c01155{height:49.242656px;}
.h3_c01155{height:51.834375px;}
.h6_c01155{height:54.426094px;}
.h10_c01155{height:57.017812px;}
.hf_c01155{height:59.609531px;}
.h9_c01155{height:62.201250px;}
.h7_c01155{height:64.792969px;}
.he_c01155{height:65.081250px;}
.h2_c01155{height:67.384687px;}
.hd_c01155{height:93.301875px;}
.h1_c01155{height:1147.500000px;}
.h0_c01155{height:1147.680000px;}
.w0_c01155{width:778.320000px;}
.w1_c01155{width:778.500000px;}
.x0_c01155{left:0.000000px;}
.x2_c01155{left:66.239100px;}
.x3_c01155{left:149.040000px;}
.x28_c01155{left:182.880000px;}
.x4_c01155{left:192.240000px;}
.x14_c01155{left:202.320000px;}
.x1d_c01155{left:234.720000px;}
.x2d_c01155{left:236.160000px;}
.x21_c01155{left:246.240000px;}
.x24_c01155{left:266.400000px;}
.x2f_c01155{left:267.840000px;}
.x2e_c01155{left:277.920000px;}
.x1e_c01155{left:288.720000px;}
.x10_c01155{left:298.800000px;}
.x5_c01155{left:300.240000px;}
.x15_c01155{left:308.880000px;}
.x19_c01155{left:311.040000px;}
.x25_c01155{left:321.120000px;}
.x2c_c01155{left:341.280000px;}
.x6_c01155{left:342.720000px;}
.x16_c01155{left:353.520000px;}
.x1b_c01155{left:363.600000px;}
.x22_c01155{left:373.680000px;}
.x2a_c01155{left:375.120000px;}
.xe_c01155{left:385.920000px;}
.x30_c01155{left:396.000000px;}
.x20_c01155{left:406.800000px;}
.x17_c01155{left:408.240000px;}
.x26_c01155{left:418.320000px;}
.x7_c01155{left:428.400000px;}
.x27_c01155{left:429.840000px;}
.x1f_c01155{left:440.640000px;}
.x1a_c01155{left:450.720000px;}
.x1c_c01155{left:461.520000px;}
.x8_c01155{left:471.600000px;}
.x23_c01155{left:477.360000px;}
.x2b_c01155{left:483.120000px;}
.x29_c01155{left:488.160000px;}
.x18_c01155{left:494.640000px;}
.x9_c01155{left:537.840000px;}
.xf_c01155{left:570.960000px;}
.x11_c01155{left:592.560000px;}
.xa_c01155{left:626.400000px;}
.xb_c01155{left:658.800000px;}
.x1_c01155{left:663.120000px;}
.x12_c01155{left:669.600000px;}
.x13_c01155{left:691.920000px;}
.xc_c01155{left:702.000000px;}
.xd_c01155{left:722.880000px;}
@media print{
.v3_c01155{vertical-align:-7.680000pt;}
.v0_c01155{vertical-align:0.000000pt;}
.v1_c01155{vertical-align:2.560000pt;}
.v2_c01155{vertical-align:10.240000pt;}
.ls0_c01155{letter-spacing:0.000000pt;}
.ws3_c01155{word-spacing:0.000000pt;}
.ws0_c01155{word-spacing:3.608107pt;}
.ws2_c01155{word-spacing:15.181867pt;}
.ws1_c01155{word-spacing:184.480000pt;}
.fs8_c01155{font-size:30.720000pt;}
.fs3_c01155{font-size:33.280000pt;}
.fsa_c01155{font-size:40.960000pt;}
.fs9_c01155{font-size:43.520000pt;}
.fs2_c01155{font-size:46.080000pt;}
.fs6_c01155{font-size:48.640000pt;}
.fs1_c01155{font-size:51.200000pt;}
.fs4_c01155{font-size:53.760000pt;}
.fsd_c01155{font-size:56.320000pt;}
.fsc_c01155{font-size:58.880000pt;}
.fs7_c01155{font-size:61.440000pt;}
.fs5_c01155{font-size:64.000000pt;}
.fs0_c01155{font-size:66.560000pt;}
.fsb_c01155{font-size:92.160000pt;}
.y0_c01155{bottom:0.000000pt;}
.y9c_c01155{bottom:50.560000pt;}
.y9a_c01155{bottom:51.840000pt;}
.y9d_c01155{bottom:52.480000pt;}
.y98_c01155{bottom:53.760000pt;}
.y9b_c01155{bottom:54.400000pt;}
.y99_c01155{bottom:55.040000pt;}
.y97_c01155{bottom:56.320000pt;}
.y96_c01155{bottom:88.320000pt;}
.y94_c01155{bottom:89.600000pt;}
.y92_c01155{bottom:90.880000pt;}
.y90_c01155{bottom:91.520000pt;}
.y95_c01155{bottom:92.160000pt;}
.y93_c01155{bottom:93.440000pt;}
.y91_c01155{bottom:94.080000pt;}
.y8f_c01155{bottom:95.360000pt;}
.y8d_c01155{bottom:128.000000pt;}
.y8e_c01155{bottom:129.280000pt;}
.y8b_c01155{bottom:129.920000pt;}
.y89_c01155{bottom:130.560000pt;}
.y8c_c01155{bottom:131.840000pt;}
.y8a_c01155{bottom:133.120000pt;}
.y88_c01155{bottom:133.760000pt;}
.y85_c01155{bottom:165.760000pt;}
.y84_c01155{bottom:167.040000pt;}
.y87_c01155{bottom:167.680000pt;}
.y81_c01155{bottom:168.320000pt;}
.y86_c01155{bottom:168.960000pt;}
.y83_c01155{bottom:169.600000pt;}
.y82_c01155{bottom:170.240000pt;}
.y80_c01155{bottom:170.880000pt;}
.y7f_c01155{bottom:198.400000pt;}
.y7c_c01155{bottom:203.520000pt;}
.y7e_c01155{bottom:204.160000pt;}
.y7b_c01155{bottom:205.440000pt;}
.y79_c01155{bottom:206.080000pt;}
.y7d_c01155{bottom:206.720000pt;}
.y7a_c01155{bottom:208.000000pt;}
.y78_c01155{bottom:208.640000pt;}
.y77_c01155{bottom:243.200000pt;}
.y75_c01155{bottom:244.480000pt;}
.y76_c01155{bottom:247.040000pt;}
.y74_c01155{bottom:271.360000pt;}
.y72_c01155{bottom:272.000000pt;}
.y70_c01155{bottom:272.640000pt;}
.y71_c01155{bottom:273.280000pt;}
.y73_c01155{bottom:273.920000pt;}
.y6f_c01155{bottom:274.560000pt;}
.y6c_c01155{bottom:309.120000pt;}
.y6b_c01155{bottom:309.760000pt;}
.y69_c01155{bottom:310.400000pt;}
.y6e_c01155{bottom:311.040000pt;}
.y6d_c01155{bottom:311.680000pt;}
.y68_c01155{bottom:312.320000pt;}
.y6a_c01155{bottom:312.960000pt;}
.y65_c01155{bottom:347.520000pt;}
.y62_c01155{bottom:348.160000pt;}
.y67_c01155{bottom:348.800000pt;}
.y66_c01155{bottom:349.440000pt;}
.y64_c01155{bottom:350.080000pt;}
.y61_c01155{bottom:350.720000pt;}
.y63_c01155{bottom:351.360000pt;}
.y5e_c01155{bottom:384.640000pt;}
.y60_c01155{bottom:385.280000pt;}
.y5c_c01155{bottom:385.920000pt;}
.y5f_c01155{bottom:387.200000pt;}
.y5b_c01155{bottom:387.840000pt;}
.y5a_c01155{bottom:388.480000pt;}
.y5d_c01155{bottom:389.120000pt;}
.y58_c01155{bottom:423.040000pt;}
.y56_c01155{bottom:424.320000pt;}
.y59_c01155{bottom:425.600000pt;}
.y55_c01155{bottom:426.240000pt;}
.y57_c01155{bottom:426.880000pt;}
.y53_c01155{bottom:460.800000pt;}
.y50_c01155{bottom:461.440000pt;}
.y54_c01155{bottom:462.080000pt;}
.y4f_c01155{bottom:462.720000pt;}
.y52_c01155{bottom:464.000000pt;}
.y51_c01155{bottom:464.640000pt;}
.y4c_c01155{bottom:499.200000pt;}
.y4e_c01155{bottom:499.840000pt;}
.y4b_c01155{bottom:501.120000pt;}
.y4d_c01155{bottom:502.400000pt;}
.y46_c01155{bottom:538.240000pt;}
.y45_c01155{bottom:538.880000pt;}
.y4a_c01155{bottom:539.520000pt;}
.y48_c01155{bottom:540.160000pt;}
.y47_c01155{bottom:540.800000pt;}
.y49_c01155{bottom:541.440000pt;}
.y42_c01155{bottom:576.000000pt;}
.y41_c01155{bottom:577.280000pt;}
.y44_c01155{bottom:577.920000pt;}
.y43_c01155{bottom:579.200000pt;}
.y3b_c01155{bottom:613.760000pt;}
.y3d_c01155{bottom:614.400000pt;}
.y3a_c01155{bottom:615.040000pt;}
.y3e_c01155{bottom:615.680000pt;}
.y3f_c01155{bottom:616.320000pt;}
.y3c_c01155{bottom:616.960000pt;}
.y40_c01155{bottom:617.600000pt;}
.y37_c01155{bottom:645.760000pt;}
.y34_c01155{bottom:652.160000pt;}
.y33_c01155{bottom:652.800000pt;}
.y36_c01155{bottom:653.440000pt;}
.y38_c01155{bottom:654.080000pt;}
.y35_c01155{bottom:655.360000pt;}
.y39_c01155{bottom:656.000000pt;}
.y2e_c01155{bottom:689.920000pt;}
.y2d_c01155{bottom:690.560000pt;}
.y30_c01155{bottom:691.200000pt;}
.y2f_c01155{bottom:693.120000pt;}
.y31_c01155{bottom:693.760000pt;}
.y32_c01155{bottom:694.400000pt;}
.y27_c01155{bottom:727.680000pt;}
.y25_c01155{bottom:728.320000pt;}
.y26_c01155{bottom:728.960000pt;}
.y29_c01155{bottom:729.600000pt;}
.y2b_c01155{bottom:730.880000pt;}
.y2a_c01155{bottom:731.520000pt;}
.y28_c01155{bottom:732.160000pt;}
.y2c_c01155{bottom:733.440000pt;}
.y1e_c01155{bottom:766.080000pt;}
.y1d_c01155{bottom:766.720000pt;}
.y21_c01155{bottom:768.000000pt;}
.y23_c01155{bottom:768.640000pt;}
.y1f_c01155{bottom:769.280000pt;}
.y20_c01155{bottom:769.920000pt;}
.y22_c01155{bottom:770.560000pt;}
.y24_c01155{bottom:771.200000pt;}
.y18_c01155{bottom:803.840000pt;}
.y16_c01155{bottom:804.480000pt;}
.y1a_c01155{bottom:805.120000pt;}
.y17_c01155{bottom:807.040000pt;}
.y19_c01155{bottom:807.680000pt;}
.y1b_c01155{bottom:808.320000pt;}
.y1c_c01155{bottom:808.960000pt;}
.y12_c01155{bottom:841.600000pt;}
.y10_c01155{bottom:842.880000pt;}
.y13_c01155{bottom:843.520000pt;}
.y11_c01155{bottom:844.800000pt;}
.y14_c01155{bottom:846.720000pt;}
.y15_c01155{bottom:847.360000pt;}
.yc_c01155{bottom:879.360000pt;}
.ya_c01155{bottom:881.280000pt;}
.yb_c01155{bottom:881.920000pt;}
.ye_c01155{bottom:883.200000pt;}
.yf_c01155{bottom:884.480000pt;}
.yd_c01155{bottom:885.120000pt;}
.y4_c01155{bottom:917.120000pt;}
.y2_c01155{bottom:917.760000pt;}
.y6_c01155{bottom:919.680000pt;}
.y3_c01155{bottom:920.320000pt;}
.y5_c01155{bottom:921.600000pt;}
.y7_c01155{bottom:922.240000pt;}
.y8_c01155{bottom:922.880000pt;}
.y9_c01155{bottom:924.160000pt;}
.y1_c01155{bottom:976.640000pt;}
.ha_c01155{height:27.645000pt;}
.h5_c01155{height:29.948750pt;}
.hc_c01155{height:36.860000pt;}
.hb_c01155{height:39.163750pt;}
.h4_c01155{height:41.467500pt;}
.h8_c01155{height:43.771250pt;}
.h3_c01155{height:46.075000pt;}
.h6_c01155{height:48.378750pt;}
.h10_c01155{height:50.682500pt;}
.hf_c01155{height:52.986250pt;}
.h9_c01155{height:55.290000pt;}
.h7_c01155{height:57.593750pt;}
.he_c01155{height:57.850000pt;}
.h2_c01155{height:59.897500pt;}
.hd_c01155{height:82.935000pt;}
.h1_c01155{height:1020.000000pt;}
.h0_c01155{height:1020.160000pt;}
.w0_c01155{width:691.840000pt;}
.w1_c01155{width:692.000000pt;}
.x0_c01155{left:0.000000pt;}
.x2_c01155{left:58.879200pt;}
.x3_c01155{left:132.480000pt;}
.x28_c01155{left:162.560000pt;}
.x4_c01155{left:170.880000pt;}
.x14_c01155{left:179.840000pt;}
.x1d_c01155{left:208.640000pt;}
.x2d_c01155{left:209.920000pt;}
.x21_c01155{left:218.880000pt;}
.x24_c01155{left:236.800000pt;}
.x2f_c01155{left:238.080000pt;}
.x2e_c01155{left:247.040000pt;}
.x1e_c01155{left:256.640000pt;}
.x10_c01155{left:265.600000pt;}
.x5_c01155{left:266.880000pt;}
.x15_c01155{left:274.560000pt;}
.x19_c01155{left:276.480000pt;}
.x25_c01155{left:285.440000pt;}
.x2c_c01155{left:303.360000pt;}
.x6_c01155{left:304.640000pt;}
.x16_c01155{left:314.240000pt;}
.x1b_c01155{left:323.200000pt;}
.x22_c01155{left:332.160000pt;}
.x2a_c01155{left:333.440000pt;}
.xe_c01155{left:343.040000pt;}
.x30_c01155{left:352.000000pt;}
.x20_c01155{left:361.600000pt;}
.x17_c01155{left:362.880000pt;}
.x26_c01155{left:371.840000pt;}
.x7_c01155{left:380.800000pt;}
.x27_c01155{left:382.080000pt;}
.x1f_c01155{left:391.680000pt;}
.x1a_c01155{left:400.640000pt;}
.x1c_c01155{left:410.240000pt;}
.x8_c01155{left:419.200000pt;}
.x23_c01155{left:424.320000pt;}
.x2b_c01155{left:429.440000pt;}
.x29_c01155{left:433.920000pt;}
.x18_c01155{left:439.680000pt;}
.x9_c01155{left:478.080000pt;}
.xf_c01155{left:507.520000pt;}
.x11_c01155{left:526.720000pt;}
.xa_c01155{left:556.800000pt;}
.xb_c01155{left:585.600000pt;}
.x1_c01155{left:589.440000pt;}
.x12_c01155{left:595.200000pt;}
.x13_c01155{left:615.040000pt;}
.xc_c01155{left:624.000000pt;}
.xd_c01155{left:642.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a524952fe37db9b7027bb986.woff2')format("woff");}.ff1_c01156{font-family:ff1_c01156;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m36_c01156{transform:matrix(0.216525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216525,0.000000,0.000000,0.250000,0,0);}
.m45_c01156{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m4a_c01156{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m1_c01156{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m15_c01156{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m7_c01156{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);}
.m29_c01156{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m11_c01156{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mc_c01156{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);}
.m2a_c01156{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_c01156{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);}
.m49_c01156{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);}
.m4b_c01156{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01156{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m19_c01156{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m21_c01156{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01156{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01156{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.ma_c01156{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m47_c01156{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m10_c01156{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m30_c01156{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m42_c01156{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01156{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m33_c01156{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m5_c01156{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m25_c01156{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01156{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01156{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m13_c01156{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01156{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01156{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_c01156{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);}
.m3b_c01156{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01156{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m4_c01156{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m39_c01156{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);}
.m3c_c01156{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.mb_c01156{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m8_c01156{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m18_c01156{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01156{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);}
.m40_c01156{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);}
.m35_c01156{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_c01156{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m0_c01156{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);}
.m20_c01156{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m6_c01156{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);}
.m17_c01156{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);}
.m2e_c01156{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m31_c01156{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m9_c01156{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m14_c01156{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m3_c01156{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m53_c01156{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m34_c01156{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m48_c01156{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);}
.m38_c01156{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01156{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01156{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);}
.m32_c01156{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m27_c01156{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01156{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m28_c01156{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m23_c01156{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);}
.m2b_c01156{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m4f_c01156{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);}
.m3f_c01156{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m2_c01156{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m24_c01156{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m16_c01156{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m52_c01156{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.md_c01156{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.m12_c01156{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);}
.m3a_c01156{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);}
.m4c_c01156{transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);}
.m37_c01156{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);}
.m41_c01156{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m50_c01156{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01156{transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);}
.m44_c01156{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.m43_c01156{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m46_c01156{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.m51_c01156{transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);}
.v0_c01156{vertical-align:0.000000px;}
.ls0_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;}
}
.ws2_c01156{word-spacing:0.000000px;}
.ws0_c01156{word-spacing:17.586138px;}
.ws1_c01156{word-spacing:47.452677px;}
.fc0_c01156{color:transparent;}
.fsc_c01156{font-size:34.560000px;}
.fs2_c01156{font-size:43.200000px;}
.fs4_c01156{font-size:46.080000px;}
.fs7_c01156{font-size:48.960000px;}
.fsa_c01156{font-size:51.840000px;}
.fs0_c01156{font-size:54.720000px;}
.fs3_c01156{font-size:57.600000px;}
.fs6_c01156{font-size:60.480000px;}
.fsb_c01156{font-size:63.360000px;}
.fs8_c01156{font-size:66.240000px;}
.fs9_c01156{font-size:69.120000px;}
.fs5_c01156{font-size:72.000000px;}
.fs1_c01156{font-size:74.880000px;}
.fsd_c01156{font-size:97.920000px;}
.y0_c01156{bottom:0.000000px;}
.y81_c01156{bottom:42.480000px;}
.y7f_c01156{bottom:45.360000px;}
.y80_c01156{bottom:46.080000px;}
.ya4_c01156{bottom:69.840000px;}
.ya3_c01156{bottom:71.280000px;}
.ya2_c01156{bottom:72.000000px;}
.y7c_c01156{bottom:73.440000px;}
.y7a_c01156{bottom:74.880000px;}
.y7e_c01156{bottom:75.600000px;}
.y7d_c01156{bottom:76.320000px;}
.y7b_c01156{bottom:77.760000px;}
.y79_c01156{bottom:78.480000px;}
.y77_c01156{bottom:114.480000px;}
.y76_c01156{bottom:115.920000px;}
.y74_c01156{bottom:117.360000px;}
.y78_c01156{bottom:118.080000px;}
.y75_c01156{bottom:119.520000px;}
.y73_c01156{bottom:121.680000px;}
.y71_c01156{bottom:156.960000px;}
.ya0_c01156{bottom:157.680000px;}
.ya1_c01156{bottom:158.400000px;}
.y6e_c01156{bottom:159.120000px;}
.y6f_c01156{bottom:159.840000px;}
.y72_c01156{bottom:161.280000px;}
.y70_c01156{bottom:162.000000px;}
.y6d_c01156{bottom:163.440000px;}
.y6c_c01156{bottom:200.880000px;}
.y6a_c01156{bottom:203.760000px;}
.y6b_c01156{bottom:205.200000px;}
.y9e_c01156{bottom:232.560000px;}
.y9f_c01156{bottom:233.280000px;}
.y66_c01156{bottom:234.000000px;}
.y64_c01156{bottom:234.720000px;}
.y69_c01156{bottom:235.440000px;}
.y68_c01156{bottom:236.160000px;}
.y67_c01156{bottom:236.880000px;}
.y65_c01156{bottom:237.600000px;}
.y63_c01156{bottom:239.040000px;}
.y62_c01156{bottom:267.840000px;}
.y61_c01156{bottom:275.760000px;}
.y60_c01156{bottom:276.480000px;}
.y5f_c01156{bottom:277.200000px;}
.y9d_c01156{bottom:277.920000px;}
.y9c_c01156{bottom:278.640000px;}
.y5e_c01156{bottom:280.080000px;}
.y5c_c01156{bottom:318.960000px;}
.y59_c01156{bottom:321.120000px;}
.y5b_c01156{bottom:322.560000px;}
.y5a_c01156{bottom:323.280000px;}
.y56_c01156{bottom:351.360000px;}
.y9a_c01156{bottom:352.080000px;}
.y9b_c01156{bottom:352.800000px;}
.y5d_c01156{bottom:353.520000px;}
.y58_c01156{bottom:354.240000px;}
.y57_c01156{bottom:354.960000px;}
.y55_c01156{bottom:356.400000px;}
.y53_c01156{bottom:393.840000px;}
.y51_c01156{bottom:394.560000px;}
.y52_c01156{bottom:395.280000px;}
.y54_c01156{bottom:396.720000px;}
.y50_c01156{bottom:397.440000px;}
.y4f_c01156{bottom:437.040000px;}
.y4d_c01156{bottom:437.760000px;}
.y99_c01156{bottom:438.480000px;}
.y4c_c01156{bottom:439.200000px;}
.y4b_c01156{bottom:439.920000px;}
.y4e_c01156{bottom:440.640000px;}
.y49_c01156{bottom:479.520000px;}
.y46_c01156{bottom:480.240000px;}
.y45_c01156{bottom:481.680000px;}
.y4a_c01156{bottom:482.400000px;}
.y48_c01156{bottom:483.120000px;}
.y47_c01156{bottom:483.840000px;}
.y42_c01156{bottom:522.720000px;}
.y43_c01156{bottom:523.440000px;}
.y98_c01156{bottom:524.160000px;}
.y97_c01156{bottom:525.600000px;}
.y41_c01156{bottom:526.320000px;}
.y44_c01156{bottom:527.040000px;}
.y3d_c01156{bottom:565.200000px;}
.y40_c01156{bottom:565.920000px;}
.y3e_c01156{bottom:566.640000px;}
.y96_c01156{bottom:568.080000px;}
.y3c_c01156{bottom:568.800000px;}
.y95_c01156{bottom:569.520000px;}
.y3f_c01156{bottom:570.240000px;}
.y39_c01156{bottom:608.400000px;}
.y3a_c01156{bottom:609.840000px;}
.y38_c01156{bottom:610.560000px;}
.y3b_c01156{bottom:612.720000px;}
.y34_c01156{bottom:650.160000px;}
.y37_c01156{bottom:651.600000px;}
.y33_c01156{bottom:652.320000px;}
.y93_c01156{bottom:653.040000px;}
.y94_c01156{bottom:653.760000px;}
.y35_c01156{bottom:654.480000px;}
.y36_c01156{bottom:655.200000px;}
.y2f_c01156{bottom:692.640000px;}
.y30_c01156{bottom:694.080000px;}
.y2e_c01156{bottom:694.800000px;}
.y92_c01156{bottom:696.240000px;}
.y31_c01156{bottom:696.960000px;}
.y32_c01156{bottom:697.680000px;}
.y2a_c01156{bottom:735.120000px;}
.y29_c01156{bottom:737.280000px;}
.y90_c01156{bottom:738.720000px;}
.y2c_c01156{bottom:739.440000px;}
.y2b_c01156{bottom:740.160000px;}
.y2d_c01156{bottom:740.880000px;}
.y91_c01156{bottom:741.600000px;}
.y23_c01156{bottom:779.040000px;}
.y22_c01156{bottom:779.760000px;}
.y25_c01156{bottom:780.480000px;}
.y24_c01156{bottom:781.920000px;}
.y8f_c01156{bottom:782.640000px;}
.y28_c01156{bottom:783.360000px;}
.y8e_c01156{bottom:784.800000px;}
.y1e_c01156{bottom:820.800000px;}
.y21_c01156{bottom:822.240000px;}
.y1d_c01156{bottom:822.960000px;}
.y20_c01156{bottom:823.680000px;}
.y1f_c01156{bottom:825.120000px;}
.y27_c01156{bottom:826.560000px;}
.y8d_c01156{bottom:827.280000px;}
.y8c_c01156{bottom:828.000000px;}
.y19_c01156{bottom:862.560000px;}
.y18_c01156{bottom:864.720000px;}
.y1b_c01156{bottom:866.160000px;}
.y1a_c01156{bottom:868.320000px;}
.y1c_c01156{bottom:869.040000px;}
.y8b_c01156{bottom:870.480000px;}
.y8a_c01156{bottom:871.920000px;}
.y15_c01156{bottom:906.480000px;}
.y14_c01156{bottom:907.200000px;}
.y17_c01156{bottom:909.360000px;}
.y16_c01156{bottom:910.800000px;}
.y89_c01156{bottom:911.520000px;}
.y88_c01156{bottom:912.240000px;}
.y26_c01156{bottom:912.960000px;}
.yf_c01156{bottom:948.960000px;}
.ye_c01156{bottom:949.680000px;}
.y11_c01156{bottom:951.840000px;}
.y10_c01156{bottom:954.000000px;}
.y12_c01156{bottom:954.720000px;}
.y13_c01156{bottom:955.440000px;}
.y86_c01156{bottom:956.160000px;}
.y87_c01156{bottom:956.880000px;}
.y8_c01156{bottom:990.720000px;}
.y7_c01156{bottom:992.880000px;}
.ya_c01156{bottom:994.320000px;}
.yc_c01156{bottom:995.040000px;}
.y9_c01156{bottom:996.480000px;}
.yb_c01156{bottom:997.200000px;}
.yd_c01156{bottom:999.360000px;}
.y85_c01156{bottom:1000.080000px;}
.y2_c01156{bottom:1034.640000px;}
.y1_c01156{bottom:1036.080000px;}
.y4_c01156{bottom:1038.240000px;}
.y3_c01156{bottom:1040.400000px;}
.y83_c01156{bottom:1041.120000px;}
.y5_c01156{bottom:1041.840000px;}
.y6_c01156{bottom:1042.560000px;}
.y84_c01156{bottom:1043.280000px;}
.y82_c01156{bottom:1116.000000px;}
.he_c01156{height:31.100625px;}
.h4_c01156{height:38.875781px;}
.h6_c01156{height:41.467500px;}
.h9_c01156{height:44.059219px;}
.hc_c01156{height:46.650937px;}
.h2_c01156{height:49.242656px;}
.h5_c01156{height:51.834375px;}
.h8_c01156{height:54.426094px;}
.hd_c01156{height:57.017812px;}
.ha_c01156{height:59.609531px;}
.hb_c01156{height:62.201250px;}
.h7_c01156{height:64.792969px;}
.h3_c01156{height:67.384687px;}
.hf_c01156{height:88.118437px;}
.h1_c01156{height:1149.000000px;}
.h0_c01156{height:1149.120000px;}
.w0_c01156{width:780.480000px;}
.w1_c01156{width:780.750000px;}
.x0_c01156{left:0.000000px;}
.x1_c01156{left:64.800000px;}
.xf_c01156{left:66.240000px;}
.x26_c01156{left:67.680000px;}
.x2a_c01156{left:138.240000px;}
.x2_c01156{left:146.880000px;}
.x9_c01156{left:148.320000px;}
.x1f_c01156{left:149.760000px;}
.x1c_c01156{left:151.200000px;}
.x14_c01156{left:160.560000px;}
.x25_c01156{left:192.960000px;}
.x1d_c01156{left:224.640000px;}
.x3_c01156{left:233.280000px;}
.x10_c01156{left:235.440000px;}
.x20_c01156{left:236.880000px;}
.xc_c01156{left:265.680000px;}
.x15_c01156{left:277.200000px;}
.x19_c01156{left:278.640000px;}
.x4_c01156{left:287.280000px;}
.xd_c01156{left:320.400000px;}
.x1e_c01156{left:321.840000px;}
.xa_c01156{left:341.280000px;}
.x16_c01156{left:362.880000px;}
.x21_c01156{left:364.320000px;}
.x11_c01156{left:374.400000px;}
.x27_c01156{left:375.840000px;}
.x5_c01156{left:384.480000px;}
.x23_c01156{left:407.520000px;}
.x8_c01156{left:416.880000px;}
.x18_c01156{left:418.320000px;}
.x6_c01156{left:426.960000px;}
.x12_c01156{left:428.400000px;}
.x1b_c01156{left:429.840000px;}
.xb_c01156{left:439.200000px;}
.x24_c01156{left:462.960000px;}
.x17_c01156{left:471.600000px;}
.x1a_c01156{left:473.040000px;}
.xe_c01156{left:481.680000px;}
.x29_c01156{left:484.560000px;}
.x22_c01156{left:511.200000px;}
.x7_c01156{left:536.400000px;}
.x13_c01156{left:537.840000px;}
.x28_c01156{left:539.280000px;}
.x2c_c01156{left:624.240000px;}
.x37_c01156{left:625.680000px;}
.x3a_c01156{left:627.120000px;}
.x32_c01156{left:648.000000px;}
.x2d_c01156{left:657.360000px;}
.x31_c01156{left:658.800000px;}
.x3c_c01156{left:660.240000px;}
.x36_c01156{left:668.880000px;}
.x2b_c01156{left:671.040000px;}
.x33_c01156{left:680.400000px;}
.x38_c01156{left:691.200000px;}
.x3d_c01156{left:693.360000px;}
.x30_c01156{left:699.840000px;}
.x2e_c01156{left:701.280000px;}
.x39_c01156{left:702.720000px;}
.x3b_c01156{left:704.160000px;}
.x2f_c01156{left:721.440000px;}
.x34_c01156{left:723.600000px;}
.x35_c01156{left:743.760000px;}
@media print{
.v0_c01156{vertical-align:0.000000pt;}
.ls0_c01156{letter-spacing:0.000000pt;}
.ws2_c01156{word-spacing:0.000000pt;}
.ws0_c01156{word-spacing:15.632123pt;}
.ws1_c01156{word-spacing:42.180157pt;}
.fsc_c01156{font-size:30.720000pt;}
.fs2_c01156{font-size:38.400000pt;}
.fs4_c01156{font-size:40.960000pt;}
.fs7_c01156{font-size:43.520000pt;}
.fsa_c01156{font-size:46.080000pt;}
.fs0_c01156{font-size:48.640000pt;}
.fs3_c01156{font-size:51.200000pt;}
.fs6_c01156{font-size:53.760000pt;}
.fsb_c01156{font-size:56.320000pt;}
.fs8_c01156{font-size:58.880000pt;}
.fs9_c01156{font-size:61.440000pt;}
.fs5_c01156{font-size:64.000000pt;}
.fs1_c01156{font-size:66.560000pt;}
.fsd_c01156{font-size:87.040000pt;}
.y0_c01156{bottom:0.000000pt;}
.y81_c01156{bottom:37.760000pt;}
.y7f_c01156{bottom:40.320000pt;}
.y80_c01156{bottom:40.960000pt;}
.ya4_c01156{bottom:62.080000pt;}
.ya3_c01156{bottom:63.360000pt;}
.ya2_c01156{bottom:64.000000pt;}
.y7c_c01156{bottom:65.280000pt;}
.y7a_c01156{bottom:66.560000pt;}
.y7e_c01156{bottom:67.200000pt;}
.y7d_c01156{bottom:67.840000pt;}
.y7b_c01156{bottom:69.120000pt;}
.y79_c01156{bottom:69.760000pt;}
.y77_c01156{bottom:101.760000pt;}
.y76_c01156{bottom:103.040000pt;}
.y74_c01156{bottom:104.320000pt;}
.y78_c01156{bottom:104.960000pt;}
.y75_c01156{bottom:106.240000pt;}
.y73_c01156{bottom:108.160000pt;}
.y71_c01156{bottom:139.520000pt;}
.ya0_c01156{bottom:140.160000pt;}
.ya1_c01156{bottom:140.800000pt;}
.y6e_c01156{bottom:141.440000pt;}
.y6f_c01156{bottom:142.080000pt;}
.y72_c01156{bottom:143.360000pt;}
.y70_c01156{bottom:144.000000pt;}
.y6d_c01156{bottom:145.280000pt;}
.y6c_c01156{bottom:178.560000pt;}
.y6a_c01156{bottom:181.120000pt;}
.y6b_c01156{bottom:182.400000pt;}
.y9e_c01156{bottom:206.720000pt;}
.y9f_c01156{bottom:207.360000pt;}
.y66_c01156{bottom:208.000000pt;}
.y64_c01156{bottom:208.640000pt;}
.y69_c01156{bottom:209.280000pt;}
.y68_c01156{bottom:209.920000pt;}
.y67_c01156{bottom:210.560000pt;}
.y65_c01156{bottom:211.200000pt;}
.y63_c01156{bottom:212.480000pt;}
.y62_c01156{bottom:238.080000pt;}
.y61_c01156{bottom:245.120000pt;}
.y60_c01156{bottom:245.760000pt;}
.y5f_c01156{bottom:246.400000pt;}
.y9d_c01156{bottom:247.040000pt;}
.y9c_c01156{bottom:247.680000pt;}
.y5e_c01156{bottom:248.960000pt;}
.y5c_c01156{bottom:283.520000pt;}
.y59_c01156{bottom:285.440000pt;}
.y5b_c01156{bottom:286.720000pt;}
.y5a_c01156{bottom:287.360000pt;}
.y56_c01156{bottom:312.320000pt;}
.y9a_c01156{bottom:312.960000pt;}
.y9b_c01156{bottom:313.600000pt;}
.y5d_c01156{bottom:314.240000pt;}
.y58_c01156{bottom:314.880000pt;}
.y57_c01156{bottom:315.520000pt;}
.y55_c01156{bottom:316.800000pt;}
.y53_c01156{bottom:350.080000pt;}
.y51_c01156{bottom:350.720000pt;}
.y52_c01156{bottom:351.360000pt;}
.y54_c01156{bottom:352.640000pt;}
.y50_c01156{bottom:353.280000pt;}
.y4f_c01156{bottom:388.480000pt;}
.y4d_c01156{bottom:389.120000pt;}
.y99_c01156{bottom:389.760000pt;}
.y4c_c01156{bottom:390.400000pt;}
.y4b_c01156{bottom:391.040000pt;}
.y4e_c01156{bottom:391.680000pt;}
.y49_c01156{bottom:426.240000pt;}
.y46_c01156{bottom:426.880000pt;}
.y45_c01156{bottom:428.160000pt;}
.y4a_c01156{bottom:428.800000pt;}
.y48_c01156{bottom:429.440000pt;}
.y47_c01156{bottom:430.080000pt;}
.y42_c01156{bottom:464.640000pt;}
.y43_c01156{bottom:465.280000pt;}
.y98_c01156{bottom:465.920000pt;}
.y97_c01156{bottom:467.200000pt;}
.y41_c01156{bottom:467.840000pt;}
.y44_c01156{bottom:468.480000pt;}
.y3d_c01156{bottom:502.400000pt;}
.y40_c01156{bottom:503.040000pt;}
.y3e_c01156{bottom:503.680000pt;}
.y96_c01156{bottom:504.960000pt;}
.y3c_c01156{bottom:505.600000pt;}
.y95_c01156{bottom:506.240000pt;}
.y3f_c01156{bottom:506.880000pt;}
.y39_c01156{bottom:540.800000pt;}
.y3a_c01156{bottom:542.080000pt;}
.y38_c01156{bottom:542.720000pt;}
.y3b_c01156{bottom:544.640000pt;}
.y34_c01156{bottom:577.920000pt;}
.y37_c01156{bottom:579.200000pt;}
.y33_c01156{bottom:579.840000pt;}
.y93_c01156{bottom:580.480000pt;}
.y94_c01156{bottom:581.120000pt;}
.y35_c01156{bottom:581.760000pt;}
.y36_c01156{bottom:582.400000pt;}
.y2f_c01156{bottom:615.680000pt;}
.y30_c01156{bottom:616.960000pt;}
.y2e_c01156{bottom:617.600000pt;}
.y92_c01156{bottom:618.880000pt;}
.y31_c01156{bottom:619.520000pt;}
.y32_c01156{bottom:620.160000pt;}
.y2a_c01156{bottom:653.440000pt;}
.y29_c01156{bottom:655.360000pt;}
.y90_c01156{bottom:656.640000pt;}
.y2c_c01156{bottom:657.280000pt;}
.y2b_c01156{bottom:657.920000pt;}
.y2d_c01156{bottom:658.560000pt;}
.y91_c01156{bottom:659.200000pt;}
.y23_c01156{bottom:692.480000pt;}
.y22_c01156{bottom:693.120000pt;}
.y25_c01156{bottom:693.760000pt;}
.y24_c01156{bottom:695.040000pt;}
.y8f_c01156{bottom:695.680000pt;}
.y28_c01156{bottom:696.320000pt;}
.y8e_c01156{bottom:697.600000pt;}
.y1e_c01156{bottom:729.600000pt;}
.y21_c01156{bottom:730.880000pt;}
.y1d_c01156{bottom:731.520000pt;}
.y20_c01156{bottom:732.160000pt;}
.y1f_c01156{bottom:733.440000pt;}
.y27_c01156{bottom:734.720000pt;}
.y8d_c01156{bottom:735.360000pt;}
.y8c_c01156{bottom:736.000000pt;}
.y19_c01156{bottom:766.720000pt;}
.y18_c01156{bottom:768.640000pt;}
.y1b_c01156{bottom:769.920000pt;}
.y1a_c01156{bottom:771.840000pt;}
.y1c_c01156{bottom:772.480000pt;}
.y8b_c01156{bottom:773.760000pt;}
.y8a_c01156{bottom:775.040000pt;}
.y15_c01156{bottom:805.760000pt;}
.y14_c01156{bottom:806.400000pt;}
.y17_c01156{bottom:808.320000pt;}
.y16_c01156{bottom:809.600000pt;}
.y89_c01156{bottom:810.240000pt;}
.y88_c01156{bottom:810.880000pt;}
.y26_c01156{bottom:811.520000pt;}
.yf_c01156{bottom:843.520000pt;}
.ye_c01156{bottom:844.160000pt;}
.y11_c01156{bottom:846.080000pt;}
.y10_c01156{bottom:848.000000pt;}
.y12_c01156{bottom:848.640000pt;}
.y13_c01156{bottom:849.280000pt;}
.y86_c01156{bottom:849.920000pt;}
.y87_c01156{bottom:850.560000pt;}
.y8_c01156{bottom:880.640000pt;}
.y7_c01156{bottom:882.560000pt;}
.ya_c01156{bottom:883.840000pt;}
.yc_c01156{bottom:884.480000pt;}
.y9_c01156{bottom:885.760000pt;}
.yb_c01156{bottom:886.400000pt;}
.yd_c01156{bottom:888.320000pt;}
.y85_c01156{bottom:888.960000pt;}
.y2_c01156{bottom:919.680000pt;}
.y1_c01156{bottom:920.960000pt;}
.y4_c01156{bottom:922.880000pt;}
.y3_c01156{bottom:924.800000pt;}
.y83_c01156{bottom:925.440000pt;}
.y5_c01156{bottom:926.080000pt;}
.y6_c01156{bottom:926.720000pt;}
.y84_c01156{bottom:927.360000pt;}
.y82_c01156{bottom:992.000000pt;}
.he_c01156{height:27.645000pt;}
.h4_c01156{height:34.556250pt;}
.h6_c01156{height:36.860000pt;}
.h9_c01156{height:39.163750pt;}
.hc_c01156{height:41.467500pt;}
.h2_c01156{height:43.771250pt;}
.h5_c01156{height:46.075000pt;}
.h8_c01156{height:48.378750pt;}
.hd_c01156{height:50.682500pt;}
.ha_c01156{height:52.986250pt;}
.hb_c01156{height:55.290000pt;}
.h7_c01156{height:57.593750pt;}
.h3_c01156{height:59.897500pt;}
.hf_c01156{height:78.327500pt;}
.h1_c01156{height:1021.333333pt;}
.h0_c01156{height:1021.440000pt;}
.w0_c01156{width:693.760000pt;}
.w1_c01156{width:694.000000pt;}
.x0_c01156{left:0.000000pt;}
.x1_c01156{left:57.600000pt;}
.xf_c01156{left:58.880000pt;}
.x26_c01156{left:60.160000pt;}
.x2a_c01156{left:122.880000pt;}
.x2_c01156{left:130.560000pt;}
.x9_c01156{left:131.840000pt;}
.x1f_c01156{left:133.120000pt;}
.x1c_c01156{left:134.400000pt;}
.x14_c01156{left:142.720000pt;}
.x25_c01156{left:171.520000pt;}
.x1d_c01156{left:199.680000pt;}
.x3_c01156{left:207.360000pt;}
.x10_c01156{left:209.280000pt;}
.x20_c01156{left:210.560000pt;}
.xc_c01156{left:236.160000pt;}
.x15_c01156{left:246.400000pt;}
.x19_c01156{left:247.680000pt;}
.x4_c01156{left:255.360000pt;}
.xd_c01156{left:284.800000pt;}
.x1e_c01156{left:286.080000pt;}
.xa_c01156{left:303.360000pt;}
.x16_c01156{left:322.560000pt;}
.x21_c01156{left:323.840000pt;}
.x11_c01156{left:332.800000pt;}
.x27_c01156{left:334.080000pt;}
.x5_c01156{left:341.760000pt;}
.x23_c01156{left:362.240000pt;}
.x8_c01156{left:370.560000pt;}
.x18_c01156{left:371.840000pt;}
.x6_c01156{left:379.520000pt;}
.x12_c01156{left:380.800000pt;}
.x1b_c01156{left:382.080000pt;}
.xb_c01156{left:390.400000pt;}
.x24_c01156{left:411.520000pt;}
.x17_c01156{left:419.200000pt;}
.x1a_c01156{left:420.480000pt;}
.xe_c01156{left:428.160000pt;}
.x29_c01156{left:430.720000pt;}
.x22_c01156{left:454.400000pt;}
.x7_c01156{left:476.800000pt;}
.x13_c01156{left:478.080000pt;}
.x28_c01156{left:479.360000pt;}
.x2c_c01156{left:554.880000pt;}
.x37_c01156{left:556.160000pt;}
.x3a_c01156{left:557.440000pt;}
.x32_c01156{left:576.000000pt;}
.x2d_c01156{left:584.320000pt;}
.x31_c01156{left:585.600000pt;}
.x3c_c01156{left:586.880000pt;}
.x36_c01156{left:594.560000pt;}
.x2b_c01156{left:596.480000pt;}
.x33_c01156{left:604.800000pt;}
.x38_c01156{left:614.400000pt;}
.x3d_c01156{left:616.320000pt;}
.x30_c01156{left:622.080000pt;}
.x2e_c01156{left:623.360000pt;}
.x39_c01156{left:624.640000pt;}
.x3b_c01156{left:625.920000pt;}
.x2f_c01156{left:641.280000pt;}
.x34_c01156{left:643.200000pt;}
.x35_c01156{left:661.120000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_50b3d0bc3d90efdded372f71.woff2')format("woff");}.ff1_c01157{font-family:ff1_c01157;line-height:1.109863;font-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_c01157{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);}
.m35_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);}
.m2d_c01157{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);}
.m23_c01157{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m15_c01157{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_c01157{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m14_c01157{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.ma_c01157{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m29_c01157{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);}
.m2a_c01157{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.md_c01157{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m31_c01157{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m19_c01157{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);}
.m32_c01157{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m2_c01157{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);}
.m27_c01157{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m37_c01157{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m26_c01157{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m20_c01157{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m7_c01157{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01157{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m10_c01157{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.me_c01157{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m21_c01157{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01157{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m22_c01157{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m5_c01157{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mc_c01157{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01157{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01157{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m8_c01157{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m13_c01157{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m0_c01157{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m6_c01157{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);}
.m48_c01157{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);}
.m50_c01157{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01157{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m4_c01157{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01157{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m17_c01157{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m38_c01157{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);}
.m30_c01157{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m18_c01157{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);}
.m3a_c01157{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1_c01157{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m33_c01157{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);}
.m4e_c01157{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m3_c01157{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);}
.m4f_c01157{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m9_c01157{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);}
.m49_c01157{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);}
.m44_c01157{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m12_c01157{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m45_c01157{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);}
.m1b_c01157{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);}
.m36_c01157{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m39_c01157{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01157{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m47_c01157{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01157{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01157{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01157{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01157{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m4d_c01157{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);}
.m4a_c01157{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);}
.m25_c01157{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01157{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);}
.m43_c01157{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01157{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);}
.mb_c01157{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m40_c01157{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m46_c01157{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m24_c01157{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m16_c01157{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m41_c01157{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01157{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01157{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);}
.m34_c01157{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m11_c01157{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01157{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m42_c01157{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.v2_c01157{vertical-align:-5.760000px;}
.v0_c01157{vertical-align:0.000000px;}
.v3_c01157{vertical-align:11.520000px;}
.v1_c01157{vertical-align:14.400000px;}
.ls0_c01157{letter-spacing:0.000000px;}
.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;}
}
.ws3_c01157{word-spacing:0.000000px;}
.ws2_c01157{word-spacing:81.435360px;}
.ws1_c01157{word-spacing:183.999600px;}
.ws0_c01157{word-spacing:383.220000px;}
.fc0_c01157{color:transparent;}
.fs8_c01157{font-size:34.560000px;}
.fsd_c01157{font-size:37.440000px;}
.fsb_c01157{font-size:40.320000px;}
.fsf_c01157{font-size:43.200000px;}
.fse_c01157{font-size:46.080000px;}
.fs5_c01157{font-size:48.960000px;}
.fs2_c01157{font-size:51.840000px;}
.fs6_c01157{font-size:54.720000px;}
.fs1_c01157{font-size:57.600000px;}
.fs4_c01157{font-size:60.480000px;}
.fsa_c01157{font-size:63.360000px;}
.fs7_c01157{font-size:66.240000px;}
.fs9_c01157{font-size:69.120000px;}
.fs3_c01157{font-size:72.000000px;}
.fs0_c01157{font-size:74.880000px;}
.fsc_c01157{font-size:86.400000px;}
.y0_c01157{bottom:0.000000px;}
.y9e_c01157{bottom:17.280000px;}
.y9c_c01157{bottom:20.160000px;}
.y9d_c01157{bottom:21.600000px;}
.y9b_c01157{bottom:45.360000px;}
.y99_c01157{bottom:46.080000px;}
.y9a_c01157{bottom:46.800000px;}
.y96_c01157{bottom:48.240000px;}
.y98_c01157{bottom:48.960000px;}
.y94_c01157{bottom:49.680000px;}
.y95_c01157{bottom:50.400000px;}
.y97_c01157{bottom:51.840000px;}
.y93_c01157{bottom:54.000000px;}
.y92_c01157{bottom:87.120000px;}
.y91_c01157{bottom:89.280000px;}
.y8f_c01157{bottom:90.720000px;}
.y8e_c01157{bottom:91.440000px;}
.y8c_c01157{bottom:92.160000px;}
.y90_c01157{bottom:92.880000px;}
.y8d_c01157{bottom:95.040000px;}
.y8b_c01157{bottom:95.760000px;}
.y8a_c01157{bottom:133.920000px;}
.y89_c01157{bottom:138.960000px;}
.y88_c01157{bottom:139.680000px;}
.y87_c01157{bottom:163.440000px;}
.y84_c01157{bottom:166.320000px;}
.y86_c01157{bottom:167.040000px;}
.y81_c01157{bottom:167.760000px;}
.y85_c01157{bottom:168.480000px;}
.y83_c01157{bottom:169.200000px;}
.y82_c01157{bottom:169.920000px;}
.y80_c01157{bottom:170.640000px;}
.y7e_c01157{bottom:208.080000px;}
.y7f_c01157{bottom:208.800000px;}
.y7b_c01157{bottom:209.520000px;}
.y7d_c01157{bottom:211.680000px;}
.y7c_c01157{bottom:213.120000px;}
.y7a_c01157{bottom:213.840000px;}
.y79_c01157{bottom:251.280000px;}
.y77_c01157{bottom:252.000000px;}
.y74_c01157{bottom:252.720000px;}
.y75_c01157{bottom:253.440000px;}
.y78_c01157{bottom:254.160000px;}
.y76_c01157{bottom:254.880000px;}
.y73_c01157{bottom:257.040000px;}
.y72_c01157{bottom:286.560000px;}
.y70_c01157{bottom:293.760000px;}
.y6d_c01157{bottom:295.200000px;}
.y6e_c01157{bottom:295.920000px;}
.y71_c01157{bottom:296.640000px;}
.y6f_c01157{bottom:297.360000px;}
.y6c_c01157{bottom:298.800000px;}
.y6b_c01157{bottom:329.760000px;}
.y69_c01157{bottom:336.960000px;}
.y6a_c01157{bottom:337.680000px;}
.y68_c01157{bottom:338.400000px;}
.y65_c01157{bottom:339.120000px;}
.y67_c01157{bottom:340.560000px;}
.y66_c01157{bottom:341.280000px;}
.y64_c01157{bottom:342.000000px;}
.y62_c01157{bottom:380.160000px;}
.y61_c01157{bottom:380.880000px;}
.y63_c01157{bottom:381.600000px;}
.y60_c01157{bottom:383.760000px;}
.y5b_c01157{bottom:422.640000px;}
.y5d_c01157{bottom:423.360000px;}
.y5c_c01157{bottom:424.080000px;}
.y5e_c01157{bottom:425.520000px;}
.y5f_c01157{bottom:426.240000px;}
.y5a_c01157{bottom:426.960000px;}
.y58_c01157{bottom:465.120000px;}
.y55_c01157{bottom:465.840000px;}
.y57_c01157{bottom:466.560000px;}
.y59_c01157{bottom:468.000000px;}
.y54_c01157{bottom:468.720000px;}
.y56_c01157{bottom:469.440000px;}
.y50_c01157{bottom:507.600000px;}
.y4f_c01157{bottom:508.320000px;}
.y52_c01157{bottom:509.040000px;}
.y51_c01157{bottom:510.480000px;}
.y4e_c01157{bottom:511.200000px;}
.y53_c01157{bottom:512.640000px;}
.y47_c01157{bottom:550.800000px;}
.y49_c01157{bottom:551.520000px;}
.y4d_c01157{bottom:552.240000px;}
.y4b_c01157{bottom:552.960000px;}
.y46_c01157{bottom:553.680000px;}
.y48_c01157{bottom:554.400000px;}
.y4a_c01157{bottom:555.120000px;}
.y4c_c01157{bottom:555.840000px;}
.y43_c01157{bottom:594.000000px;}
.y42_c01157{bottom:594.720000px;}
.y44_c01157{bottom:595.440000px;}
.y45_c01157{bottom:596.160000px;}
.y40_c01157{bottom:596.880000px;}
.y41_c01157{bottom:597.600000px;}
.y3a_c01157{bottom:636.480000px;}
.y3e_c01157{bottom:637.200000px;}
.y3c_c01157{bottom:637.920000px;}
.y39_c01157{bottom:639.360000px;}
.y3b_c01157{bottom:640.080000px;}
.y3d_c01157{bottom:640.800000px;}
.y3f_c01157{bottom:641.520000px;}
.y37_c01157{bottom:679.680000px;}
.y38_c01157{bottom:681.840000px;}
.y36_c01157{bottom:682.560000px;}
.y35_c01157{bottom:716.400000px;}
.y32_c01157{bottom:717.120000px;}
.y2f_c01157{bottom:722.160000px;}
.y2e_c01157{bottom:723.600000px;}
.y33_c01157{bottom:724.320000px;}
.y31_c01157{bottom:725.760000px;}
.y30_c01157{bottom:726.480000px;}
.y34_c01157{bottom:727.920000px;}
.y29_c01157{bottom:764.640000px;}
.y2d_c01157{bottom:766.800000px;}
.y28_c01157{bottom:767.520000px;}
.y2a_c01157{bottom:768.960000px;}
.y2b_c01157{bottom:769.680000px;}
.y2c_c01157{bottom:770.400000px;}
.y22_c01157{bottom:807.840000px;}
.y24_c01157{bottom:809.280000px;}
.y21_c01157{bottom:810.000000px;}
.y23_c01157{bottom:811.440000px;}
.y25_c01157{bottom:812.160000px;}
.y26_c01157{bottom:812.880000px;}
.y27_c01157{bottom:814.320000px;}
.y1c_c01157{bottom:850.320000px;}
.y1b_c01157{bottom:851.760000px;}
.y1f_c01157{bottom:852.480000px;}
.y1d_c01157{bottom:854.640000px;}
.y1e_c01157{bottom:855.360000px;}
.y20_c01157{bottom:857.520000px;}
.y15_c01157{bottom:893.520000px;}
.y14_c01157{bottom:894.960000px;}
.y17_c01157{bottom:895.680000px;}
.y16_c01157{bottom:897.840000px;}
.y19_c01157{bottom:898.560000px;}
.y18_c01157{bottom:900.000000px;}
.y1a_c01157{bottom:900.720000px;}
.yf_c01157{bottom:936.000000px;}
.ye_c01157{bottom:937.440000px;}
.y10_c01157{bottom:940.320000px;}
.y12_c01157{bottom:941.040000px;}
.y13_c01157{bottom:941.760000px;}
.y11_c01157{bottom:942.480000px;}
.y9_c01157{bottom:978.480000px;}
.y8_c01157{bottom:979.920000px;}
.ya_c01157{bottom:983.520000px;}
.yb_c01157{bottom:984.240000px;}
.yc_c01157{bottom:984.960000px;}
.yd_c01157{bottom:987.120000px;}
.y3_c01157{bottom:1020.960000px;}
.y2_c01157{bottom:1022.400000px;}
.y5_c01157{bottom:1023.120000px;}
.y4_c01157{bottom:1026.720000px;}
.y6_c01157{bottom:1027.440000px;}
.y7_c01157{bottom:1029.600000px;}
.y1_c01157{bottom:1113.840000px;}
.ha_c01157{height:31.100625px;}
.h10_c01157{height:33.692344px;}
.he_c01157{height:36.284062px;}
.h12_c01157{height:38.875781px;}
.h11_c01157{height:41.467500px;}
.h7_c01157{height:44.059219px;}
.h4_c01157{height:46.650937px;}
.h8_c01157{height:49.242656px;}
.h3_c01157{height:51.834375px;}
.h6_c01157{height:54.426094px;}
.hc_c01157{height:57.017812px;}
.h9_c01157{height:59.609531px;}
.hb_c01157{height:62.201250px;}
.h13_c01157{height:63.354375px;}
.h5_c01157{height:64.792969px;}
.hd_c01157{height:66.234375px;}
.h2_c01157{height:67.384687px;}
.hf_c01157{height:77.751563px;}
.h1_c01157{height:1147.500000px;}
.h0_c01157{height:1147.680000px;}
.w0_c01157{width:778.320000px;}
.w1_c01157{width:778.500000px;}
.x0_c01157{left:0.000000px;}
.x2_c01157{left:66.240000px;}
.x27_c01157{left:67.680000px;}
.x3_c01157{left:149.760000px;}
.x28_c01157{left:151.200000px;}
.x1e_c01157{left:192.240000px;}
.x4_c01157{left:234.720000px;}
.x20_c01157{left:236.160000px;}
.x12_c01157{left:246.240000px;}
.x22_c01157{left:267.840000px;}
.x10_c01157{left:277.200000px;}
.x5_c01157{left:278.640000px;}
.xa_c01157{left:287.280000px;}
.x13_c01157{left:288.720000px;}
.x2a_c01157{left:290.160000px;}
.x23_c01157{left:310.320000px;}
.xe_c01157{left:321.120000px;}
.xb_c01157{left:331.920000px;}
.x11_c01157{left:364.320000px;}
.x19_c01157{left:374.400000px;}
.x16_c01157{left:375.840000px;}
.x29_c01157{left:408.240000px;}
.x17_c01157{left:418.320000px;}
.x26_c01157{left:428.400000px;}
.x1f_c01157{left:451.440000px;}
.x1c_c01157{left:461.520000px;}
.x1a_c01157{left:472.320000px;}
.x2b_c01157{left:473.760000px;}
.x1d_c01157{left:483.840000px;}
.x25_c01157{left:493.200000px;}
.x24_c01157{left:510.480000px;}
.x6_c01157{left:537.120000px;}
.x21_c01157{left:538.560000px;}
.xf_c01157{left:591.840000px;}
.x7_c01157{left:624.240000px;}
.x14_c01157{left:626.400000px;}
.x8_c01157{left:658.800000px;}
.x1_c01157{left:660.960000px;}
.x1b_c01157{left:669.600000px;}
.x9_c01157{left:691.200000px;}
.x15_c01157{left:692.640000px;}
.xc_c01157{left:701.280000px;}
.x18_c01157{left:703.440000px;}
.xd_c01157{left:722.880000px;}
@media print{
.v2_c01157{vertical-align:-5.120000pt;}
.v0_c01157{vertical-align:0.000000pt;}
.v3_c01157{vertical-align:10.240000pt;}
.v1_c01157{vertical-align:12.800000pt;}
.ls0_c01157{letter-spacing:0.000000pt;}
.ws3_c01157{word-spacing:0.000000pt;}
.ws2_c01157{word-spacing:72.386987pt;}
.ws1_c01157{word-spacing:163.555200pt;}
.ws0_c01157{word-spacing:340.640000pt;}
.fs8_c01157{font-size:30.720000pt;}
.fsd_c01157{font-size:33.280000pt;}
.fsb_c01157{font-size:35.840000pt;}
.fsf_c01157{font-size:38.400000pt;}
.fse_c01157{font-size:40.960000pt;}
.fs5_c01157{font-size:43.520000pt;}
.fs2_c01157{font-size:46.080000pt;}
.fs6_c01157{font-size:48.640000pt;}
.fs1_c01157{font-size:51.200000pt;}
.fs4_c01157{font-size:53.760000pt;}
.fsa_c01157{font-size:56.320000pt;}
.fs7_c01157{font-size:58.880000pt;}
.fs9_c01157{font-size:61.440000pt;}
.fs3_c01157{font-size:64.000000pt;}
.fs0_c01157{font-size:66.560000pt;}
.fsc_c01157{font-size:76.800000pt;}
.y0_c01157{bottom:0.000000pt;}
.y9e_c01157{bottom:15.360000pt;}
.y9c_c01157{bottom:17.920000pt;}
.y9d_c01157{bottom:19.200000pt;}
.y9b_c01157{bottom:40.320000pt;}
.y99_c01157{bottom:40.960000pt;}
.y9a_c01157{bottom:41.600000pt;}
.y96_c01157{bottom:42.880000pt;}
.y98_c01157{bottom:43.520000pt;}
.y94_c01157{bottom:44.160000pt;}
.y95_c01157{bottom:44.800000pt;}
.y97_c01157{bottom:46.080000pt;}
.y93_c01157{bottom:48.000000pt;}
.y92_c01157{bottom:77.440000pt;}
.y91_c01157{bottom:79.360000pt;}
.y8f_c01157{bottom:80.640000pt;}
.y8e_c01157{bottom:81.280000pt;}
.y8c_c01157{bottom:81.920000pt;}
.y90_c01157{bottom:82.560000pt;}
.y8d_c01157{bottom:84.480000pt;}
.y8b_c01157{bottom:85.120000pt;}
.y8a_c01157{bottom:119.040000pt;}
.y89_c01157{bottom:123.520000pt;}
.y88_c01157{bottom:124.160000pt;}
.y87_c01157{bottom:145.280000pt;}
.y84_c01157{bottom:147.840000pt;}
.y86_c01157{bottom:148.480000pt;}
.y81_c01157{bottom:149.120000pt;}
.y85_c01157{bottom:149.760000pt;}
.y83_c01157{bottom:150.400000pt;}
.y82_c01157{bottom:151.040000pt;}
.y80_c01157{bottom:151.680000pt;}
.y7e_c01157{bottom:184.960000pt;}
.y7f_c01157{bottom:185.600000pt;}
.y7b_c01157{bottom:186.240000pt;}
.y7d_c01157{bottom:188.160000pt;}
.y7c_c01157{bottom:189.440000pt;}
.y7a_c01157{bottom:190.080000pt;}
.y79_c01157{bottom:223.360000pt;}
.y77_c01157{bottom:224.000000pt;}
.y74_c01157{bottom:224.640000pt;}
.y75_c01157{bottom:225.280000pt;}
.y78_c01157{bottom:225.920000pt;}
.y76_c01157{bottom:226.560000pt;}
.y73_c01157{bottom:228.480000pt;}
.y72_c01157{bottom:254.720000pt;}
.y70_c01157{bottom:261.120000pt;}
.y6d_c01157{bottom:262.400000pt;}
.y6e_c01157{bottom:263.040000pt;}
.y71_c01157{bottom:263.680000pt;}
.y6f_c01157{bottom:264.320000pt;}
.y6c_c01157{bottom:265.600000pt;}
.y6b_c01157{bottom:293.120000pt;}
.y69_c01157{bottom:299.520000pt;}
.y6a_c01157{bottom:300.160000pt;}
.y68_c01157{bottom:300.800000pt;}
.y65_c01157{bottom:301.440000pt;}
.y67_c01157{bottom:302.720000pt;}
.y66_c01157{bottom:303.360000pt;}
.y64_c01157{bottom:304.000000pt;}
.y62_c01157{bottom:337.920000pt;}
.y61_c01157{bottom:338.560000pt;}
.y63_c01157{bottom:339.200000pt;}
.y60_c01157{bottom:341.120000pt;}
.y5b_c01157{bottom:375.680000pt;}
.y5d_c01157{bottom:376.320000pt;}
.y5c_c01157{bottom:376.960000pt;}
.y5e_c01157{bottom:378.240000pt;}
.y5f_c01157{bottom:378.880000pt;}
.y5a_c01157{bottom:379.520000pt;}
.y58_c01157{bottom:413.440000pt;}
.y55_c01157{bottom:414.080000pt;}
.y57_c01157{bottom:414.720000pt;}
.y59_c01157{bottom:416.000000pt;}
.y54_c01157{bottom:416.640000pt;}
.y56_c01157{bottom:417.280000pt;}
.y50_c01157{bottom:451.200000pt;}
.y4f_c01157{bottom:451.840000pt;}
.y52_c01157{bottom:452.480000pt;}
.y51_c01157{bottom:453.760000pt;}
.y4e_c01157{bottom:454.400000pt;}
.y53_c01157{bottom:455.680000pt;}
.y47_c01157{bottom:489.600000pt;}
.y49_c01157{bottom:490.240000pt;}
.y4d_c01157{bottom:490.880000pt;}
.y4b_c01157{bottom:491.520000pt;}
.y46_c01157{bottom:492.160000pt;}
.y48_c01157{bottom:492.800000pt;}
.y4a_c01157{bottom:493.440000pt;}
.y4c_c01157{bottom:494.080000pt;}
.y43_c01157{bottom:528.000000pt;}
.y42_c01157{bottom:528.640000pt;}
.y44_c01157{bottom:529.280000pt;}
.y45_c01157{bottom:529.920000pt;}
.y40_c01157{bottom:530.560000pt;}
.y41_c01157{bottom:531.200000pt;}
.y3a_c01157{bottom:565.760000pt;}
.y3e_c01157{bottom:566.400000pt;}
.y3c_c01157{bottom:567.040000pt;}
.y39_c01157{bottom:568.320000pt;}
.y3b_c01157{bottom:568.960000pt;}
.y3d_c01157{bottom:569.600000pt;}
.y3f_c01157{bottom:570.240000pt;}
.y37_c01157{bottom:604.160000pt;}
.y38_c01157{bottom:606.080000pt;}
.y36_c01157{bottom:606.720000pt;}
.y35_c01157{bottom:636.800000pt;}
.y32_c01157{bottom:637.440000pt;}
.y2f_c01157{bottom:641.920000pt;}
.y2e_c01157{bottom:643.200000pt;}
.y33_c01157{bottom:643.840000pt;}
.y31_c01157{bottom:645.120000pt;}
.y30_c01157{bottom:645.760000pt;}
.y34_c01157{bottom:647.040000pt;}
.y29_c01157{bottom:679.680000pt;}
.y2d_c01157{bottom:681.600000pt;}
.y28_c01157{bottom:682.240000pt;}
.y2a_c01157{bottom:683.520000pt;}
.y2b_c01157{bottom:684.160000pt;}
.y2c_c01157{bottom:684.800000pt;}
.y22_c01157{bottom:718.080000pt;}
.y24_c01157{bottom:719.360000pt;}
.y21_c01157{bottom:720.000000pt;}
.y23_c01157{bottom:721.280000pt;}
.y25_c01157{bottom:721.920000pt;}
.y26_c01157{bottom:722.560000pt;}
.y27_c01157{bottom:723.840000pt;}
.y1c_c01157{bottom:755.840000pt;}
.y1b_c01157{bottom:757.120000pt;}
.y1f_c01157{bottom:757.760000pt;}
.y1d_c01157{bottom:759.680000pt;}
.y1e_c01157{bottom:760.320000pt;}
.y20_c01157{bottom:762.240000pt;}
.y15_c01157{bottom:794.240000pt;}
.y14_c01157{bottom:795.520000pt;}
.y17_c01157{bottom:796.160000pt;}
.y16_c01157{bottom:798.080000pt;}
.y19_c01157{bottom:798.720000pt;}
.y18_c01157{bottom:800.000000pt;}
.y1a_c01157{bottom:800.640000pt;}
.yf_c01157{bottom:832.000000pt;}
.ye_c01157{bottom:833.280000pt;}
.y10_c01157{bottom:835.840000pt;}
.y12_c01157{bottom:836.480000pt;}
.y13_c01157{bottom:837.120000pt;}
.y11_c01157{bottom:837.760000pt;}
.y9_c01157{bottom:869.760000pt;}
.y8_c01157{bottom:871.040000pt;}
.ya_c01157{bottom:874.240000pt;}
.yb_c01157{bottom:874.880000pt;}
.yc_c01157{bottom:875.520000pt;}
.yd_c01157{bottom:877.440000pt;}
.y3_c01157{bottom:907.520000pt;}
.y2_c01157{bottom:908.800000pt;}
.y5_c01157{bottom:909.440000pt;}
.y4_c01157{bottom:912.640000pt;}
.y6_c01157{bottom:913.280000pt;}
.y7_c01157{bottom:915.200000pt;}
.y1_c01157{bottom:990.080000pt;}
.ha_c01157{height:27.645000pt;}
.h10_c01157{height:29.948750pt;}
.he_c01157{height:32.252500pt;}
.h12_c01157{height:34.556250pt;}
.h11_c01157{height:36.860000pt;}
.h7_c01157{height:39.163750pt;}
.h4_c01157{height:41.467500pt;}
.h8_c01157{height:43.771250pt;}
.h3_c01157{height:46.075000pt;}
.h6_c01157{height:48.378750pt;}
.hc_c01157{height:50.682500pt;}
.h9_c01157{height:52.986250pt;}
.hb_c01157{height:55.290000pt;}
.h13_c01157{height:56.315000pt;}
.h5_c01157{height:57.593750pt;}
.hd_c01157{height:58.875000pt;}
.h2_c01157{height:59.897500pt;}
.hf_c01157{height:69.112500pt;}
.h1_c01157{height:1020.000000pt;}
.h0_c01157{height:1020.160000pt;}
.w0_c01157{width:691.840000pt;}
.w1_c01157{width:692.000000pt;}
.x0_c01157{left:0.000000pt;}
.x2_c01157{left:58.880000pt;}
.x27_c01157{left:60.160000pt;}
.x3_c01157{left:133.120000pt;}
.x28_c01157{left:134.400000pt;}
.x1e_c01157{left:170.880000pt;}
.x4_c01157{left:208.640000pt;}
.x20_c01157{left:209.920000pt;}
.x12_c01157{left:218.880000pt;}
.x22_c01157{left:238.080000pt;}
.x10_c01157{left:246.400000pt;}
.x5_c01157{left:247.680000pt;}
.xa_c01157{left:255.360000pt;}
.x13_c01157{left:256.640000pt;}
.x2a_c01157{left:257.920000pt;}
.x23_c01157{left:275.840000pt;}
.xe_c01157{left:285.440000pt;}
.xb_c01157{left:295.040000pt;}
.x11_c01157{left:323.840000pt;}
.x19_c01157{left:332.800000pt;}
.x16_c01157{left:334.080000pt;}
.x29_c01157{left:362.880000pt;}
.x17_c01157{left:371.840000pt;}
.x26_c01157{left:380.800000pt;}
.x1f_c01157{left:401.280000pt;}
.x1c_c01157{left:410.240000pt;}
.x1a_c01157{left:419.840000pt;}
.x2b_c01157{left:421.120000pt;}
.x1d_c01157{left:430.080000pt;}
.x25_c01157{left:438.400000pt;}
.x24_c01157{left:453.760000pt;}
.x6_c01157{left:477.440000pt;}
.x21_c01157{left:478.720000pt;}
.xf_c01157{left:526.080000pt;}
.x7_c01157{left:554.880000pt;}
.x14_c01157{left:556.800000pt;}
.x8_c01157{left:585.600000pt;}
.x1_c01157{left:587.520000pt;}
.x1b_c01157{left:595.200000pt;}
.x9_c01157{left:614.400000pt;}
.x15_c01157{left:615.680000pt;}
.xc_c01157{left:623.360000pt;}
.x18_c01157{left:625.280000pt;}
.xd_c01157{left:642.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_54b070013957897485f054c8.woff2')format("woff");}.ff1_c01158{font-family:ff1_c01158;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m35_c01158{transform:matrix(0.171425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171425,0.000000,0.000000,0.250000,0,0);}
.m22_c01158{transform:matrix(0.221425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221425,0.000000,0.000000,0.250000,0,0);}
.m40_c01158{transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);}
.m3a_c01158{transform:matrix(0.245850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245850,0.000000,0.000000,0.250000,0,0);}
.m33_c01158{transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);}
.m23_c01158{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01158{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m2_c01158{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m17_c01158{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);}
.m28_c01158{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m10_c01158{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);}
.m48_c01158{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);}
.m41_c01158{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);}
.m3e_c01158{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);}
.m45_c01158{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);}
.m4c_c01158{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_c01158{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mb_c01158{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.me_c01158{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);}
.m2d_c01158{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m13_c01158{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01158{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01158{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m39_c01158{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01158{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01158{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m36_c01158{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m47_c01158{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m14_c01158{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01158{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.md_c01158{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01158{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m18_c01158{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m30_c01158{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);}
.m3d_c01158{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.ma_c01158{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m26_c01158{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);}
.m56_c01158{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m3_c01158{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m12_c01158{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m21_c01158{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01158{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01158{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);}
.m2b_c01158{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);}
.m52_c01158{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01158{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);}
.m44_c01158{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m34_c01158{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);}
.m0_c01158{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1_c01158{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);}
.m4f_c01158{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.mf_c01158{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);}
.m3b_c01158{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);}
.m2a_c01158{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m51_c01158{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01158{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m16_c01158{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);}
.m55_c01158{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m31_c01158{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);}
.m54_c01158{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m27_c01158{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);}
.m49_c01158{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01158{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m50_c01158{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);}
.m38_c01158{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m6_c01158{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01158{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);}
.m37_c01158{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);}
.m53_c01158{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m4_c01158{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m19_c01158{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m25_c01158{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);}
.m2e_c01158{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m20_c01158{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);}
.m24_c01158{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m29_c01158{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m7_c01158{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m11_c01158{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m5_c01158{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01158{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m15_c01158{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m46_c01158{transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01158{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.mc_c01158{transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);}
.m43_c01158{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01158{transform:matrix(0.982500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.982500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.982500,0.000000,0.000000,0.250000,0,0);}
.m42_c01158{transform:matrix(1.092500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.092500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.092500,0.000000,0.000000,0.250000,0,0);}
.v2_c01158{vertical-align:-5.760000px;}
.v1_c01158{vertical-align:-2.880000px;}
.v0_c01158{vertical-align:0.000000px;}
.ls0_c01158{letter-spacing:0.000000px;}
.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;}
}
.ws4_c01158{word-spacing:0.000000px;}
.ws1_c01158{word-spacing:0.065280px;}
.ws3_c01158{word-spacing:179.499600px;}
.ws0_c01158{word-spacing:181.749600px;}
.ws2_c01158{word-spacing:705.018240px;}
.fc0_c01158{color:transparent;}
.fs10_c01158{font-size:25.920000px;}
.fse_c01158{font-size:28.800000px;}
.fs5_c01158{font-size:34.560000px;}
.fsa_c01158{font-size:37.440000px;}
.fsc_c01158{font-size:43.200000px;}
.fs6_c01158{font-size:46.080000px;}
.fs3_c01158{font-size:48.960000px;}
.fs4_c01158{font-size:51.840000px;}
.fs1_c01158{font-size:54.720000px;}
.fs7_c01158{font-size:57.600000px;}
.fs8_c01158{font-size:60.480000px;}
.fsf_c01158{font-size:63.360000px;}
.fsd_c01158{font-size:66.240000px;}
.fs9_c01158{font-size:69.120000px;}
.fs0_c01158{font-size:72.000000px;}
.fs2_c01158{font-size:74.880000px;}
.fs11_c01158{font-size:77.760000px;}
.fsb_c01158{font-size:100.800000px;}
.y0_c01158{bottom:0.000000px;}
.y90_c01158{bottom:67.680000px;}
.y92_c01158{bottom:69.120000px;}
.y8f_c01158{bottom:69.840000px;}
.y91_c01158{bottom:70.560000px;}
.y8e_c01158{bottom:71.280000px;}
.y8d_c01158{bottom:73.440000px;}
.y8c_c01158{bottom:77.760000px;}
.y8b_c01158{bottom:110.880000px;}
.y8a_c01158{bottom:111.600000px;}
.y89_c01158{bottom:113.040000px;}
.y88_c01158{bottom:113.760000px;}
.y86_c01158{bottom:119.520000px;}
.y87_c01158{bottom:120.240000px;}
.y85_c01158{bottom:151.920000px;}
.y84_c01158{bottom:152.640000px;}
.y83_c01158{bottom:154.080000px;}
.y82_c01158{bottom:155.520000px;}
.y81_c01158{bottom:159.840000px;}
.y80_c01158{bottom:161.280000px;}
.y7e_c01158{bottom:196.560000px;}
.y7c_c01158{bottom:198.000000px;}
.y7d_c01158{bottom:198.720000px;}
.y7f_c01158{bottom:199.440000px;}
.y7b_c01158{bottom:201.600000px;}
.y7a_c01158{bottom:203.760000px;}
.y79_c01158{bottom:240.480000px;}
.y77_c01158{bottom:241.200000px;}
.y78_c01158{bottom:242.640000px;}
.y76_c01158{bottom:246.240000px;}
.y75_c01158{bottom:247.680000px;}
.y74_c01158{bottom:280.800000px;}
.y73_c01158{bottom:282.240000px;}
.y71_c01158{bottom:283.680000px;}
.y72_c01158{bottom:285.120000px;}
.y70_c01158{bottom:288.720000px;}
.y6f_c01158{bottom:289.440000px;}
.y6e_c01158{bottom:290.160000px;}
.y6c_c01158{bottom:326.160000px;}
.y6b_c01158{bottom:326.880000px;}
.y6d_c01158{bottom:328.320000px;}
.y69_c01158{bottom:331.920000px;}
.y6a_c01158{bottom:332.640000px;}
.y66_c01158{bottom:368.640000px;}
.y67_c01158{bottom:370.080000px;}
.y68_c01158{bottom:371.520000px;}
.y65_c01158{bottom:372.240000px;}
.y63_c01158{bottom:375.120000px;}
.y64_c01158{bottom:375.840000px;}
.y61_c01158{bottom:412.560000px;}
.y62_c01158{bottom:413.280000px;}
.y5f_c01158{bottom:414.000000px;}
.y60_c01158{bottom:416.880000px;}
.y5e_c01158{bottom:418.320000px;}
.y5d_c01158{bottom:454.320000px;}
.y5c_c01158{bottom:455.040000px;}
.y5a_c01158{bottom:455.760000px;}
.y58_c01158{bottom:456.480000px;}
.y5b_c01158{bottom:457.920000px;}
.y59_c01158{bottom:459.360000px;}
.y57_c01158{bottom:460.080000px;}
.y54_c01158{bottom:498.240000px;}
.y53_c01158{bottom:498.960000px;}
.y50_c01158{bottom:499.680000px;}
.y56_c01158{bottom:500.400000px;}
.y55_c01158{bottom:501.120000px;}
.y52_c01158{bottom:501.840000px;}
.y51_c01158{bottom:502.560000px;}
.y4f_c01158{bottom:503.280000px;}
.y4e_c01158{bottom:504.000000px;}
.y4d_c01158{bottom:541.440000px;}
.y4a_c01158{bottom:542.160000px;}
.y4b_c01158{bottom:542.880000px;}
.y4c_c01158{bottom:544.320000px;}
.y49_c01158{bottom:545.040000px;}
.y45_c01158{bottom:584.640000px;}
.y44_c01158{bottom:585.360000px;}
.y47_c01158{bottom:586.080000px;}
.y48_c01158{bottom:586.800000px;}
.y46_c01158{bottom:587.520000px;}
.y43_c01158{bottom:588.240000px;}
.y42_c01158{bottom:589.680000px;}
.y41_c01158{bottom:627.120000px;}
.y3d_c01158{bottom:627.840000px;}
.y3e_c01158{bottom:628.560000px;}
.y3c_c01158{bottom:630.000000px;}
.y3f_c01158{bottom:630.720000px;}
.y40_c01158{bottom:631.440000px;}
.y3a_c01158{bottom:662.400000px;}
.y38_c01158{bottom:670.320000px;}
.y3b_c01158{bottom:671.040000px;}
.y37_c01158{bottom:672.480000px;}
.y39_c01158{bottom:673.200000px;}
.y36_c01158{bottom:673.920000px;}
.y31_c01158{bottom:712.800000px;}
.y34_c01158{bottom:713.520000px;}
.y33_c01158{bottom:714.240000px;}
.y35_c01158{bottom:715.680000px;}
.y32_c01158{bottom:716.400000px;}
.y30_c01158{bottom:717.120000px;}
.y2c_c01158{bottom:756.000000px;}
.y2b_c01158{bottom:757.440000px;}
.y2f_c01158{bottom:758.160000px;}
.y2a_c01158{bottom:758.880000px;}
.y2d_c01158{bottom:759.600000px;}
.y2e_c01158{bottom:761.040000px;}
.y29_c01158{bottom:798.480000px;}
.y28_c01158{bottom:802.080000px;}
.y22_c01158{bottom:829.440000px;}
.y21_c01158{bottom:831.600000px;}
.y26_c01158{bottom:832.320000px;}
.y23_c01158{bottom:833.040000px;}
.y24_c01158{bottom:833.760000px;}
.y25_c01158{bottom:834.480000px;}
.y27_c01158{bottom:835.920000px;}
.y1e_c01158{bottom:866.160000px;}
.y1a_c01158{bottom:871.920000px;}
.y1d_c01158{bottom:874.800000px;}
.y19_c01158{bottom:875.520000px;}
.y1b_c01158{bottom:876.240000px;}
.y1c_c01158{bottom:876.960000px;}
.y1f_c01158{bottom:877.680000px;}
.y20_c01158{bottom:878.400000px;}
.y18_c01158{bottom:910.080000px;}
.y14_c01158{bottom:915.120000px;}
.y13_c01158{bottom:917.280000px;}
.y15_c01158{bottom:918.720000px;}
.y16_c01158{bottom:920.160000px;}
.y17_c01158{bottom:921.600000px;}
.y12_c01158{bottom:953.280000px;}
.yc_c01158{bottom:958.320000px;}
.ye_c01158{bottom:959.760000px;}
.yb_c01158{bottom:960.480000px;}
.y10_c01158{bottom:961.920000px;}
.yd_c01158{bottom:962.640000px;}
.yf_c01158{bottom:964.080000px;}
.y11_c01158{bottom:964.800000px;}
.ya_c01158{bottom:1001.520000px;}
.y9_c01158{bottom:1004.400000px;}
.y3_c01158{bottom:1033.200000px;}
.y2_c01158{bottom:1034.640000px;}
.y4_c01158{bottom:1037.520000px;}
.y5_c01158{bottom:1038.240000px;}
.y6_c01158{bottom:1038.960000px;}
.y7_c01158{bottom:1039.680000px;}
.y8_c01158{bottom:1040.400000px;}
.y1_c01158{bottom:1109.520000px;}
.h12_c01158{height:23.325469px;}
.h10_c01158{height:25.917187px;}
.h7_c01158{height:31.100625px;}
.hc_c01158{height:33.692344px;}
.he_c01158{height:38.875781px;}
.h8_c01158{height:41.467500px;}
.h5_c01158{height:44.059219px;}
.h6_c01158{height:46.650937px;}
.h3_c01158{height:49.242656px;}
.h9_c01158{height:51.834375px;}
.ha_c01158{height:54.426094px;}
.h11_c01158{height:57.017812px;}
.hf_c01158{height:59.609531px;}
.hb_c01158{height:62.201250px;}
.h2_c01158{height:64.792969px;}
.h4_c01158{height:67.384687px;}
.h13_c01158{height:69.976406px;}
.hd_c01158{height:90.710156px;}
.h1_c01158{height:1145.250000px;}
.h0_c01158{height:1145.520000px;}
.w0_c01158{width:774.000000px;}
.x0_c01158{left:0.000000px;}
.x39_c01158{left:61.200000px;}
.x2_c01158{left:62.640000px;}
.x24_c01158{left:103.680000px;}
.x2d_c01158{left:114.480000px;}
.xe_c01158{left:144.720000px;}
.x3_c01158{left:146.880000px;}
.x3d_c01158{left:155.520000px;}
.x3f_c01158{left:176.400000px;}
.x3a_c01158{left:185.760000px;}
.xf_c01158{left:187.920000px;}
.x21_c01158{left:190.080000px;}
.x3c_c01158{left:198.000000px;}
.x2a_c01158{left:219.600000px;}
.x3e_c01158{left:228.960000px;}
.x4_c01158{left:230.400000px;}
.x40_c01158{left:239.040000px;}
.x15_c01158{left:240.480000px;}
.x1c_c01158{left:251.280000px;}
.x22_c01158{left:252.720000px;}
.x31_c01158{left:272.880000px;}
.x5_c01158{left:274.320000px;}
.x37_c01158{left:282.960000px;}
.x16_c01158{left:284.400000px;}
.x26_c01158{left:294.480000px;}
.x1d_c01158{left:295.920000px;}
.x34_c01158{left:315.360000px;}
.x6_c01158{left:328.320000px;}
.x17_c01158{left:339.120000px;}
.x1e_c01158{left:349.920000px;}
.x10_c01158{left:360.720000px;}
.x2f_c01158{left:362.160000px;}
.x2b_c01158{left:367.200000px;}
.x32_c01158{left:369.360000px;}
.x7_c01158{left:370.800000px;}
.x1a_c01158{left:381.600000px;}
.x30_c01158{left:384.480000px;}
.x1f_c01158{left:392.400000px;}
.x23_c01158{left:403.200000px;}
.x11_c01158{left:413.280000px;}
.x18_c01158{left:424.800000px;}
.x2c_c01158{left:435.600000px;}
.x14_c01158{left:445.680000px;}
.x27_c01158{left:455.760000px;}
.x12_c01158{left:457.920000px;}
.x8_c01158{left:468.720000px;}
.x1b_c01158{left:479.520000px;}
.x20_c01158{left:484.560000px;}
.x28_c01158{left:494.640000px;}
.x41_c01158{left:531.360000px;}
.x2e_c01158{left:532.800000px;}
.x9_c01158{left:534.240000px;}
.x35_c01158{left:598.320000px;}
.x36_c01158{left:619.920000px;}
.x19_c01158{left:621.360000px;}
.xa_c01158{left:622.800000px;}
.x42_c01158{left:652.320000px;}
.x38_c01158{left:653.760000px;}
.xb_c01158{left:655.200000px;}
.x1_c01158{left:665.280000px;}
.x29_c01158{left:686.880000px;}
.x13_c01158{left:688.320000px;}
.x3b_c01158{left:696.240000px;}
.x25_c01158{left:697.680000px;}
.xc_c01158{left:699.120000px;}
.x33_c01158{left:717.840000px;}
.xd_c01158{left:719.280000px;}
@media print{
.v2_c01158{vertical-align:-5.120000pt;}
.v1_c01158{vertical-align:-2.560000pt;}
.v0_c01158{vertical-align:0.000000pt;}
.ls0_c01158{letter-spacing:0.000000pt;}
.ws4_c01158{word-spacing:0.000000pt;}
.ws1_c01158{word-spacing:0.058027pt;}
.ws3_c01158{word-spacing:159.555200pt;}
.ws0_c01158{word-spacing:161.555200pt;}
.ws2_c01158{word-spacing:626.682880pt;}
.fs10_c01158{font-size:23.040000pt;}
.fse_c01158{font-size:25.600000pt;}
.fs5_c01158{font-size:30.720000pt;}
.fsa_c01158{font-size:33.280000pt;}
.fsc_c01158{font-size:38.400000pt;}
.fs6_c01158{font-size:40.960000pt;}
.fs3_c01158{font-size:43.520000pt;}
.fs4_c01158{font-size:46.080000pt;}
.fs1_c01158{font-size:48.640000pt;}
.fs7_c01158{font-size:51.200000pt;}
.fs8_c01158{font-size:53.760000pt;}
.fsf_c01158{font-size:56.320000pt;}
.fsd_c01158{font-size:58.880000pt;}
.fs9_c01158{font-size:61.440000pt;}
.fs0_c01158{font-size:64.000000pt;}
.fs2_c01158{font-size:66.560000pt;}
.fs11_c01158{font-size:69.120000pt;}
.fsb_c01158{font-size:89.600000pt;}
.y0_c01158{bottom:0.000000pt;}
.y90_c01158{bottom:60.160000pt;}
.y92_c01158{bottom:61.440000pt;}
.y8f_c01158{bottom:62.080000pt;}
.y91_c01158{bottom:62.720000pt;}
.y8e_c01158{bottom:63.360000pt;}
.y8d_c01158{bottom:65.280000pt;}
.y8c_c01158{bottom:69.120000pt;}
.y8b_c01158{bottom:98.560000pt;}
.y8a_c01158{bottom:99.200000pt;}
.y89_c01158{bottom:100.480000pt;}
.y88_c01158{bottom:101.120000pt;}
.y86_c01158{bottom:106.240000pt;}
.y87_c01158{bottom:106.880000pt;}
.y85_c01158{bottom:135.040000pt;}
.y84_c01158{bottom:135.680000pt;}
.y83_c01158{bottom:136.960000pt;}
.y82_c01158{bottom:138.240000pt;}
.y81_c01158{bottom:142.080000pt;}
.y80_c01158{bottom:143.360000pt;}
.y7e_c01158{bottom:174.720000pt;}
.y7c_c01158{bottom:176.000000pt;}
.y7d_c01158{bottom:176.640000pt;}
.y7f_c01158{bottom:177.280000pt;}
.y7b_c01158{bottom:179.200000pt;}
.y7a_c01158{bottom:181.120000pt;}
.y79_c01158{bottom:213.760000pt;}
.y77_c01158{bottom:214.400000pt;}
.y78_c01158{bottom:215.680000pt;}
.y76_c01158{bottom:218.880000pt;}
.y75_c01158{bottom:220.160000pt;}
.y74_c01158{bottom:249.600000pt;}
.y73_c01158{bottom:250.880000pt;}
.y71_c01158{bottom:252.160000pt;}
.y72_c01158{bottom:253.440000pt;}
.y70_c01158{bottom:256.640000pt;}
.y6f_c01158{bottom:257.280000pt;}
.y6e_c01158{bottom:257.920000pt;}
.y6c_c01158{bottom:289.920000pt;}
.y6b_c01158{bottom:290.560000pt;}
.y6d_c01158{bottom:291.840000pt;}
.y69_c01158{bottom:295.040000pt;}
.y6a_c01158{bottom:295.680000pt;}
.y66_c01158{bottom:327.680000pt;}
.y67_c01158{bottom:328.960000pt;}
.y68_c01158{bottom:330.240000pt;}
.y65_c01158{bottom:330.880000pt;}
.y63_c01158{bottom:333.440000pt;}
.y64_c01158{bottom:334.080000pt;}
.y61_c01158{bottom:366.720000pt;}
.y62_c01158{bottom:367.360000pt;}
.y5f_c01158{bottom:368.000000pt;}
.y60_c01158{bottom:370.560000pt;}
.y5e_c01158{bottom:371.840000pt;}
.y5d_c01158{bottom:403.840000pt;}
.y5c_c01158{bottom:404.480000pt;}
.y5a_c01158{bottom:405.120000pt;}
.y58_c01158{bottom:405.760000pt;}
.y5b_c01158{bottom:407.040000pt;}
.y59_c01158{bottom:408.320000pt;}
.y57_c01158{bottom:408.960000pt;}
.y54_c01158{bottom:442.880000pt;}
.y53_c01158{bottom:443.520000pt;}
.y50_c01158{bottom:444.160000pt;}
.y56_c01158{bottom:444.800000pt;}
.y55_c01158{bottom:445.440000pt;}
.y52_c01158{bottom:446.080000pt;}
.y51_c01158{bottom:446.720000pt;}
.y4f_c01158{bottom:447.360000pt;}
.y4e_c01158{bottom:448.000000pt;}
.y4d_c01158{bottom:481.280000pt;}
.y4a_c01158{bottom:481.920000pt;}
.y4b_c01158{bottom:482.560000pt;}
.y4c_c01158{bottom:483.840000pt;}
.y49_c01158{bottom:484.480000pt;}
.y45_c01158{bottom:519.680000pt;}
.y44_c01158{bottom:520.320000pt;}
.y47_c01158{bottom:520.960000pt;}
.y48_c01158{bottom:521.600000pt;}
.y46_c01158{bottom:522.240000pt;}
.y43_c01158{bottom:522.880000pt;}
.y42_c01158{bottom:524.160000pt;}
.y41_c01158{bottom:557.440000pt;}
.y3d_c01158{bottom:558.080000pt;}
.y3e_c01158{bottom:558.720000pt;}
.y3c_c01158{bottom:560.000000pt;}
.y3f_c01158{bottom:560.640000pt;}
.y40_c01158{bottom:561.280000pt;}
.y3a_c01158{bottom:588.800000pt;}
.y38_c01158{bottom:595.840000pt;}
.y3b_c01158{bottom:596.480000pt;}
.y37_c01158{bottom:597.760000pt;}
.y39_c01158{bottom:598.400000pt;}
.y36_c01158{bottom:599.040000pt;}
.y31_c01158{bottom:633.600000pt;}
.y34_c01158{bottom:634.240000pt;}
.y33_c01158{bottom:634.880000pt;}
.y35_c01158{bottom:636.160000pt;}
.y32_c01158{bottom:636.800000pt;}
.y30_c01158{bottom:637.440000pt;}
.y2c_c01158{bottom:672.000000pt;}
.y2b_c01158{bottom:673.280000pt;}
.y2f_c01158{bottom:673.920000pt;}
.y2a_c01158{bottom:674.560000pt;}
.y2d_c01158{bottom:675.200000pt;}
.y2e_c01158{bottom:676.480000pt;}
.y29_c01158{bottom:709.760000pt;}
.y28_c01158{bottom:712.960000pt;}
.y22_c01158{bottom:737.280000pt;}
.y21_c01158{bottom:739.200000pt;}
.y26_c01158{bottom:739.840000pt;}
.y23_c01158{bottom:740.480000pt;}
.y24_c01158{bottom:741.120000pt;}
.y25_c01158{bottom:741.760000pt;}
.y27_c01158{bottom:743.040000pt;}
.y1e_c01158{bottom:769.920000pt;}
.y1a_c01158{bottom:775.040000pt;}
.y1d_c01158{bottom:777.600000pt;}
.y19_c01158{bottom:778.240000pt;}
.y1b_c01158{bottom:778.880000pt;}
.y1c_c01158{bottom:779.520000pt;}
.y1f_c01158{bottom:780.160000pt;}
.y20_c01158{bottom:780.800000pt;}
.y18_c01158{bottom:808.960000pt;}
.y14_c01158{bottom:813.440000pt;}
.y13_c01158{bottom:815.360000pt;}
.y15_c01158{bottom:816.640000pt;}
.y16_c01158{bottom:817.920000pt;}
.y17_c01158{bottom:819.200000pt;}
.y12_c01158{bottom:847.360000pt;}
.yc_c01158{bottom:851.840000pt;}
.ye_c01158{bottom:853.120000pt;}
.yb_c01158{bottom:853.760000pt;}
.y10_c01158{bottom:855.040000pt;}
.yd_c01158{bottom:855.680000pt;}
.yf_c01158{bottom:856.960000pt;}
.y11_c01158{bottom:857.600000pt;}
.ya_c01158{bottom:890.240000pt;}
.y9_c01158{bottom:892.800000pt;}
.y3_c01158{bottom:918.400000pt;}
.y2_c01158{bottom:919.680000pt;}
.y4_c01158{bottom:922.240000pt;}
.y5_c01158{bottom:922.880000pt;}
.y6_c01158{bottom:923.520000pt;}
.y7_c01158{bottom:924.160000pt;}
.y8_c01158{bottom:924.800000pt;}
.y1_c01158{bottom:986.240000pt;}
.h12_c01158{height:20.733750pt;}
.h10_c01158{height:23.037500pt;}
.h7_c01158{height:27.645000pt;}
.hc_c01158{height:29.948750pt;}
.he_c01158{height:34.556250pt;}
.h8_c01158{height:36.860000pt;}
.h5_c01158{height:39.163750pt;}
.h6_c01158{height:41.467500pt;}
.h3_c01158{height:43.771250pt;}
.h9_c01158{height:46.075000pt;}
.ha_c01158{height:48.378750pt;}
.h11_c01158{height:50.682500pt;}
.hf_c01158{height:52.986250pt;}
.hb_c01158{height:55.290000pt;}
.h2_c01158{height:57.593750pt;}
.h4_c01158{height:59.897500pt;}
.h13_c01158{height:62.201250pt;}
.hd_c01158{height:80.631250pt;}
.h1_c01158{height:1018.000000pt;}
.h0_c01158{height:1018.240000pt;}
.w0_c01158{width:688.000000pt;}
.x0_c01158{left:0.000000pt;}
.x39_c01158{left:54.400000pt;}
.x2_c01158{left:55.680000pt;}
.x24_c01158{left:92.160000pt;}
.x2d_c01158{left:101.760000pt;}
.xe_c01158{left:128.640000pt;}
.x3_c01158{left:130.560000pt;}
.x3d_c01158{left:138.240000pt;}
.x3f_c01158{left:156.800000pt;}
.x3a_c01158{left:165.120000pt;}
.xf_c01158{left:167.040000pt;}
.x21_c01158{left:168.960000pt;}
.x3c_c01158{left:176.000000pt;}
.x2a_c01158{left:195.200000pt;}
.x3e_c01158{left:203.520000pt;}
.x4_c01158{left:204.800000pt;}
.x40_c01158{left:212.480000pt;}
.x15_c01158{left:213.760000pt;}
.x1c_c01158{left:223.360000pt;}
.x22_c01158{left:224.640000pt;}
.x31_c01158{left:242.560000pt;}
.x5_c01158{left:243.840000pt;}
.x37_c01158{left:251.520000pt;}
.x16_c01158{left:252.800000pt;}
.x26_c01158{left:261.760000pt;}
.x1d_c01158{left:263.040000pt;}
.x34_c01158{left:280.320000pt;}
.x6_c01158{left:291.840000pt;}
.x17_c01158{left:301.440000pt;}
.x1e_c01158{left:311.040000pt;}
.x10_c01158{left:320.640000pt;}
.x2f_c01158{left:321.920000pt;}
.x2b_c01158{left:326.400000pt;}
.x32_c01158{left:328.320000pt;}
.x7_c01158{left:329.600000pt;}
.x1a_c01158{left:339.200000pt;}
.x30_c01158{left:341.760000pt;}
.x1f_c01158{left:348.800000pt;}
.x23_c01158{left:358.400000pt;}
.x11_c01158{left:367.360000pt;}
.x18_c01158{left:377.600000pt;}
.x2c_c01158{left:387.200000pt;}
.x14_c01158{left:396.160000pt;}
.x27_c01158{left:405.120000pt;}
.x12_c01158{left:407.040000pt;}
.x8_c01158{left:416.640000pt;}
.x1b_c01158{left:426.240000pt;}
.x20_c01158{left:430.720000pt;}
.x28_c01158{left:439.680000pt;}
.x41_c01158{left:472.320000pt;}
.x2e_c01158{left:473.600000pt;}
.x9_c01158{left:474.880000pt;}
.x35_c01158{left:531.840000pt;}
.x36_c01158{left:551.040000pt;}
.x19_c01158{left:552.320000pt;}
.xa_c01158{left:553.600000pt;}
.x42_c01158{left:579.840000pt;}
.x38_c01158{left:581.120000pt;}
.xb_c01158{left:582.400000pt;}
.x1_c01158{left:591.360000pt;}
.x29_c01158{left:610.560000pt;}
.x13_c01158{left:611.840000pt;}
.x3b_c01158{left:618.880000pt;}
.x25_c01158{left:620.160000pt;}
.xc_c01158{left:621.440000pt;}
.x33_c01158{left:638.080000pt;}
.xd_c01158{left:639.360000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5d5a60cbaa55c1cc8f35b909.woff2')format("woff");}.ff1_c01159{font-family:ff1_c01159;line-height:1.109863;font-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_c01159{transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);}
.m34_c01159{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m12_c01159{transform:matrix(0.232125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232125,0.000000,0.000000,0.250000,0,0);}
.m28_c01159{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m2f_c01159{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m20_c01159{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m27_c01159{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.ma_c01159{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_c01159{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);}
.m26_c01159{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_c01159{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m22_c01159{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m24_c01159{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m1b_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);}
.m25_c01159{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01159{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01159{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m13_c01159{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m14_c01159{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01159{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m8_c01159{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01159{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m16_c01159{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1d_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);}
.m10_c01159{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m5_c01159{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01159{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m19_c01159{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01159{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.me_c01159{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m18_c01159{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1_c01159{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m6_c01159{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01159{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01159{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m4_c01159{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01159{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);}
.m29_c01159{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m15_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);}
.m0_c01159{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.mc_c01159{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01159{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);}
.m30_c01159{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m21_c01159{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m7_c01159{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m9_c01159{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m11_c01159{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);}
.m32_c01159{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m3_c01159{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);}
.m2_c01159{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m35_c01159{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);}
.md_c01159{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.mf_c01159{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m23_c01159{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.v0_c01159{vertical-align:0.000000px;}
.ls0_c01159{letter-spacing:0.000000px;}
.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;}
.fc0_c01159{color:transparent;}
.fsc_c01159{font-size:43.200000px;}
.fsb_c01159{font-size:46.080000px;}
.fsa_c01159{font-size:48.960000px;}
.fs2_c01159{font-size:51.840000px;}
.fs8_c01159{font-size:54.720000px;}
.fs6_c01159{font-size:57.600000px;}
.fs0_c01159{font-size:60.480000px;}
.fs3_c01159{font-size:63.360000px;}
.fs9_c01159{font-size:66.240000px;}
.fs4_c01159{font-size:69.120000px;}
.fs7_c01159{font-size:72.000000px;}
.fs1_c01159{font-size:74.880000px;}
.fs5_c01159{font-size:77.760000px;}
.y0_c01159{bottom:0.000000px;}
.y7e_c01159{bottom:41.760000px;}
.y7d_c01159{bottom:43.200000px;}
.y7c_c01159{bottom:45.360000px;}
.y7b_c01159{bottom:47.520000px;}
.y38_c01159{bottom:49.680000px;}
.y37_c01159{bottom:54.720000px;}
.y7a_c01159{bottom:86.400000px;}
.y79_c01159{bottom:87.120000px;}
.y78_c01159{bottom:88.560000px;}
.y77_c01159{bottom:90.720000px;}
.y36_c01159{bottom:92.160000px;}
.y35_c01159{bottom:96.480000px;}
.y76_c01159{bottom:129.600000px;}
.y75_c01159{bottom:133.920000px;}
.y34_c01159{bottom:134.640000px;}
.y33_c01159{bottom:138.960000px;}
.y73_c01159{bottom:172.800000px;}
.y74_c01159{bottom:174.960000px;}
.y72_c01159{bottom:175.680000px;}
.y32_c01159{bottom:177.840000px;}
.y31_c01159{bottom:182.160000px;}
.y71_c01159{bottom:216.000000px;}
.y70_c01159{bottom:218.160000px;}
.y6f_c01159{bottom:219.600000px;}
.y30_c01159{bottom:221.040000px;}
.y2f_c01159{bottom:224.640000px;}
.y6e_c01159{bottom:259.200000px;}
.y6d_c01159{bottom:261.360000px;}
.y6c_c01159{bottom:263.520000px;}
.y2e_c01159{bottom:264.240000px;}
.y2d_c01159{bottom:267.840000px;}
.y6b_c01159{bottom:302.400000px;}
.y69_c01159{bottom:303.840000px;}
.y6a_c01159{bottom:305.280000px;}
.y2c_c01159{bottom:306.720000px;}
.y2b_c01159{bottom:309.600000px;}
.y68_c01159{bottom:344.880000px;}
.y67_c01159{bottom:346.320000px;}
.y2a_c01159{bottom:349.200000px;}
.y66_c01159{bottom:349.920000px;}
.y29_c01159{bottom:352.080000px;}
.y64_c01159{bottom:388.800000px;}
.y63_c01159{bottom:389.520000px;}
.y65_c01159{bottom:390.240000px;}
.y28_c01159{bottom:391.680000px;}
.y27_c01159{bottom:395.280000px;}
.y62_c01159{bottom:431.280000px;}
.y61_c01159{bottom:432.000000px;}
.y26_c01159{bottom:434.160000px;}
.y25_c01159{bottom:437.040000px;}
.y60_c01159{bottom:474.480000px;}
.y5f_c01159{bottom:475.200000px;}
.y5e_c01159{bottom:475.920000px;}
.y24_c01159{bottom:476.640000px;}
.y5d_c01159{bottom:478.080000px;}
.y23_c01159{bottom:479.520000px;}
.y5b_c01159{bottom:517.680000px;}
.y22_c01159{bottom:519.120000px;}
.y5c_c01159{bottom:519.840000px;}
.y5a_c01159{bottom:521.280000px;}
.y21_c01159{bottom:522.000000px;}
.y58_c01159{bottom:560.880000px;}
.y20_c01159{bottom:561.600000px;}
.y57_c01159{bottom:562.320000px;}
.y59_c01159{bottom:563.760000px;}
.y56_c01159{bottom:564.480000px;}
.y1f_c01159{bottom:565.920000px;}
.y55_c01159{bottom:604.080000px;}
.y1e_c01159{bottom:605.520000px;}
.y54_c01159{bottom:606.960000px;}
.y1d_c01159{bottom:607.680000px;}
.y53_c01159{bottom:646.560000px;}
.y52_c01159{bottom:647.280000px;}
.y1c_c01159{bottom:648.000000px;}
.y51_c01159{bottom:648.720000px;}
.y1b_c01159{bottom:650.880000px;}
.y1a_c01159{bottom:690.480000px;}
.y19_c01159{bottom:692.640000px;}
.y4f_c01159{bottom:693.360000px;}
.y50_c01159{bottom:694.080000px;}
.y18_c01159{bottom:732.960000px;}
.y4e_c01159{bottom:733.680000px;}
.y4d_c01159{bottom:734.400000px;}
.y17_c01159{bottom:735.120000px;}
.y4c_c01159{bottom:736.560000px;}
.y16_c01159{bottom:776.160000px;}
.y4a_c01159{bottom:776.880000px;}
.y4b_c01159{bottom:777.600000px;}
.y15_c01159{bottom:778.320000px;}
.y49_c01159{bottom:780.480000px;}
.y13_c01159{bottom:818.640000px;}
.y14_c01159{bottom:820.080000px;}
.y46_c01159{bottom:820.800000px;}
.y47_c01159{bottom:821.520000px;}
.y12_c01159{bottom:822.240000px;}
.y48_c01159{bottom:822.960000px;}
.yf_c01159{bottom:861.840000px;}
.y11_c01159{bottom:863.280000px;}
.ye_c01159{bottom:864.000000px;}
.y44_c01159{bottom:864.720000px;}
.y45_c01159{bottom:865.440000px;}
.y10_c01159{bottom:866.160000px;}
.yc_c01159{bottom:905.040000px;}
.yd_c01159{bottom:905.760000px;}
.yb_c01159{bottom:907.200000px;}
.y43_c01159{bottom:909.360000px;}
.y42_c01159{bottom:910.080000px;}
.ya_c01159{bottom:946.800000px;}
.y9_c01159{bottom:948.960000px;}
.y3f_c01159{bottom:950.400000px;}
.y41_c01159{bottom:951.120000px;}
.y40_c01159{bottom:951.840000px;}
.y8_c01159{bottom:990.000000px;}
.y7_c01159{bottom:991.440000px;}
.y3d_c01159{bottom:992.880000px;}
.y3c_c01159{bottom:993.600000px;}
.y3e_c01159{bottom:995.760000px;}
.y2_c01159{bottom:1032.480000px;}
.y1_c01159{bottom:1033.920000px;}
.y6_c01159{bottom:1034.640000px;}
.y4_c01159{bottom:1035.360000px;}
.y3_c01159{bottom:1036.080000px;}
.y3b_c01159{bottom:1036.800000px;}
.y5_c01159{bottom:1037.520000px;}
.y3a_c01159{bottom:1038.960000px;}
.y39_c01159{bottom:1110.960000px;}
.he_c01159{height:38.875781px;}
.hd_c01159{height:41.467500px;}
.hc_c01159{height:44.059219px;}
.h4_c01159{height:46.650937px;}
.ha_c01159{height:49.242656px;}
.h8_c01159{height:51.834375px;}
.h2_c01159{height:54.426094px;}
.h5_c01159{height:57.017812px;}
.hb_c01159{height:59.609531px;}
.h6_c01159{height:62.201250px;}
.h9_c01159{height:64.792969px;}
.h3_c01159{height:67.384687px;}
.h7_c01159{height:69.976406px;}
.h1_c01159{height:1144.500000px;}
.h0_c01159{height:1144.800000px;}
.w0_c01159{width:774.000000px;}
.x0_c01159{left:0.000000px;}
.x10_c01159{left:62.640000px;}
.xd_c01159{left:64.080000px;}
.x7_c01159{left:65.520000px;}
.x1_c01159{left:66.960000px;}
.xf_c01159{left:144.720000px;}
.xe_c01159{left:146.160000px;}
.xc_c01159{left:147.600000px;}
.x2_c01159{left:149.760000px;}
.x3_c01159{left:223.200000px;}
.x8_c01159{left:234.000000px;}
.x4_c01159{left:277.920000px;}
.x9_c01159{left:287.280000px;}
.x5_c01159{left:374.400000px;}
.xa_c01159{left:416.880000px;}
.x6_c01159{left:429.120000px;}
.xb_c01159{left:470.880000px;}
.x1b_c01159{left:536.400000px;}
.x12_c01159{left:537.840000px;}
.x29_c01159{left:544.320000px;}
.x27_c01159{left:545.760000px;}
.x1f_c01159{left:547.200000px;}
.x1c_c01159{left:548.640000px;}
.x2c_c01159{left:565.200000px;}
.x28_c01159{left:566.640000px;}
.x21_c01159{left:568.080000px;}
.x16_c01159{left:570.240000px;}
.x2a_c01159{left:586.800000px;}
.x25_c01159{left:588.240000px;}
.x22_c01159{left:589.680000px;}
.x1d_c01159{left:591.120000px;}
.x2d_c01159{left:598.320000px;}
.x23_c01159{left:600.480000px;}
.x26_c01159{left:612.720000px;}
.x17_c01159{left:624.960000px;}
.x13_c01159{left:626.400000px;}
.x11_c01159{left:655.200000px;}
.x1e_c01159{left:656.640000px;}
.x14_c01159{left:658.800000px;}
.x1a_c01159{left:691.200000px;}
.x2b_c01159{left:696.960000px;}
.x24_c01159{left:698.400000px;}
.x20_c01159{left:699.840000px;}
.x18_c01159{left:701.280000px;}
.x15_c01159{left:702.720000px;}
.x19_c01159{left:722.160000px;}
@media print{
.v0_c01159{vertical-align:0.000000pt;}
.ls0_c01159{letter-spacing:0.000000pt;}
.ws0_c01159{word-spacing:0.000000pt;}
.fsc_c01159{font-size:38.400000pt;}
.fsb_c01159{font-size:40.960000pt;}
.fsa_c01159{font-size:43.520000pt;}
.fs2_c01159{font-size:46.080000pt;}
.fs8_c01159{font-size:48.640000pt;}
.fs6_c01159{font-size:51.200000pt;}
.fs0_c01159{font-size:53.760000pt;}
.fs3_c01159{font-size:56.320000pt;}
.fs9_c01159{font-size:58.880000pt;}
.fs4_c01159{font-size:61.440000pt;}
.fs7_c01159{font-size:64.000000pt;}
.fs1_c01159{font-size:66.560000pt;}
.fs5_c01159{font-size:69.120000pt;}
.y0_c01159{bottom:0.000000pt;}
.y7e_c01159{bottom:37.120000pt;}
.y7d_c01159{bottom:38.400000pt;}
.y7c_c01159{bottom:40.320000pt;}
.y7b_c01159{bottom:42.240000pt;}
.y38_c01159{bottom:44.160000pt;}
.y37_c01159{bottom:48.640000pt;}
.y7a_c01159{bottom:76.800000pt;}
.y79_c01159{bottom:77.440000pt;}
.y78_c01159{bottom:78.720000pt;}
.y77_c01159{bottom:80.640000pt;}
.y36_c01159{bottom:81.920000pt;}
.y35_c01159{bottom:85.760000pt;}
.y76_c01159{bottom:115.200000pt;}
.y75_c01159{bottom:119.040000pt;}
.y34_c01159{bottom:119.680000pt;}
.y33_c01159{bottom:123.520000pt;}
.y73_c01159{bottom:153.600000pt;}
.y74_c01159{bottom:155.520000pt;}
.y72_c01159{bottom:156.160000pt;}
.y32_c01159{bottom:158.080000pt;}
.y31_c01159{bottom:161.920000pt;}
.y71_c01159{bottom:192.000000pt;}
.y70_c01159{bottom:193.920000pt;}
.y6f_c01159{bottom:195.200000pt;}
.y30_c01159{bottom:196.480000pt;}
.y2f_c01159{bottom:199.680000pt;}
.y6e_c01159{bottom:230.400000pt;}
.y6d_c01159{bottom:232.320000pt;}
.y6c_c01159{bottom:234.240000pt;}
.y2e_c01159{bottom:234.880000pt;}
.y2d_c01159{bottom:238.080000pt;}
.y6b_c01159{bottom:268.800000pt;}
.y69_c01159{bottom:270.080000pt;}
.y6a_c01159{bottom:271.360000pt;}
.y2c_c01159{bottom:272.640000pt;}
.y2b_c01159{bottom:275.200000pt;}
.y68_c01159{bottom:306.560000pt;}
.y67_c01159{bottom:307.840000pt;}
.y2a_c01159{bottom:310.400000pt;}
.y66_c01159{bottom:311.040000pt;}
.y29_c01159{bottom:312.960000pt;}
.y64_c01159{bottom:345.600000pt;}
.y63_c01159{bottom:346.240000pt;}
.y65_c01159{bottom:346.880000pt;}
.y28_c01159{bottom:348.160000pt;}
.y27_c01159{bottom:351.360000pt;}
.y62_c01159{bottom:383.360000pt;}
.y61_c01159{bottom:384.000000pt;}
.y26_c01159{bottom:385.920000pt;}
.y25_c01159{bottom:388.480000pt;}
.y60_c01159{bottom:421.760000pt;}
.y5f_c01159{bottom:422.400000pt;}
.y5e_c01159{bottom:423.040000pt;}
.y24_c01159{bottom:423.680000pt;}
.y5d_c01159{bottom:424.960000pt;}
.y23_c01159{bottom:426.240000pt;}
.y5b_c01159{bottom:460.160000pt;}
.y22_c01159{bottom:461.440000pt;}
.y5c_c01159{bottom:462.080000pt;}
.y5a_c01159{bottom:463.360000pt;}
.y21_c01159{bottom:464.000000pt;}
.y58_c01159{bottom:498.560000pt;}
.y20_c01159{bottom:499.200000pt;}
.y57_c01159{bottom:499.840000pt;}
.y59_c01159{bottom:501.120000pt;}
.y56_c01159{bottom:501.760000pt;}
.y1f_c01159{bottom:503.040000pt;}
.y55_c01159{bottom:536.960000pt;}
.y1e_c01159{bottom:538.240000pt;}
.y54_c01159{bottom:539.520000pt;}
.y1d_c01159{bottom:540.160000pt;}
.y53_c01159{bottom:574.720000pt;}
.y52_c01159{bottom:575.360000pt;}
.y1c_c01159{bottom:576.000000pt;}
.y51_c01159{bottom:576.640000pt;}
.y1b_c01159{bottom:578.560000pt;}
.y1a_c01159{bottom:613.760000pt;}
.y19_c01159{bottom:615.680000pt;}
.y4f_c01159{bottom:616.320000pt;}
.y50_c01159{bottom:616.960000pt;}
.y18_c01159{bottom:651.520000pt;}
.y4e_c01159{bottom:652.160000pt;}
.y4d_c01159{bottom:652.800000pt;}
.y17_c01159{bottom:653.440000pt;}
.y4c_c01159{bottom:654.720000pt;}
.y16_c01159{bottom:689.920000pt;}
.y4a_c01159{bottom:690.560000pt;}
.y4b_c01159{bottom:691.200000pt;}
.y15_c01159{bottom:691.840000pt;}
.y49_c01159{bottom:693.760000pt;}
.y13_c01159{bottom:727.680000pt;}
.y14_c01159{bottom:728.960000pt;}
.y46_c01159{bottom:729.600000pt;}
.y47_c01159{bottom:730.240000pt;}
.y12_c01159{bottom:730.880000pt;}
.y48_c01159{bottom:731.520000pt;}
.yf_c01159{bottom:766.080000pt;}
.y11_c01159{bottom:767.360000pt;}
.ye_c01159{bottom:768.000000pt;}
.y44_c01159{bottom:768.640000pt;}
.y45_c01159{bottom:769.280000pt;}
.y10_c01159{bottom:769.920000pt;}
.yc_c01159{bottom:804.480000pt;}
.yd_c01159{bottom:805.120000pt;}
.yb_c01159{bottom:806.400000pt;}
.y43_c01159{bottom:808.320000pt;}
.y42_c01159{bottom:808.960000pt;}
.ya_c01159{bottom:841.600000pt;}
.y9_c01159{bottom:843.520000pt;}
.y3f_c01159{bottom:844.800000pt;}
.y41_c01159{bottom:845.440000pt;}
.y40_c01159{bottom:846.080000pt;}
.y8_c01159{bottom:880.000000pt;}
.y7_c01159{bottom:881.280000pt;}
.y3d_c01159{bottom:882.560000pt;}
.y3c_c01159{bottom:883.200000pt;}
.y3e_c01159{bottom:885.120000pt;}
.y2_c01159{bottom:917.760000pt;}
.y1_c01159{bottom:919.040000pt;}
.y6_c01159{bottom:919.680000pt;}
.y4_c01159{bottom:920.320000pt;}
.y3_c01159{bottom:920.960000pt;}
.y3b_c01159{bottom:921.600000pt;}
.y5_c01159{bottom:922.240000pt;}
.y3a_c01159{bottom:923.520000pt;}
.y39_c01159{bottom:987.520000pt;}
.he_c01159{height:34.556250pt;}
.hd_c01159{height:36.860000pt;}
.hc_c01159{height:39.163750pt;}
.h4_c01159{height:41.467500pt;}
.ha_c01159{height:43.771250pt;}
.h8_c01159{height:46.075000pt;}
.h2_c01159{height:48.378750pt;}
.h5_c01159{height:50.682500pt;}
.hb_c01159{height:52.986250pt;}
.h6_c01159{height:55.290000pt;}
.h9_c01159{height:57.593750pt;}
.h3_c01159{height:59.897500pt;}
.h7_c01159{height:62.201250pt;}
.h1_c01159{height:1017.333333pt;}
.h0_c01159{height:1017.600000pt;}
.w0_c01159{width:688.000000pt;}
.x0_c01159{left:0.000000pt;}
.x10_c01159{left:55.680000pt;}
.xd_c01159{left:56.960000pt;}
.x7_c01159{left:58.240000pt;}
.x1_c01159{left:59.520000pt;}
.xf_c01159{left:128.640000pt;}
.xe_c01159{left:129.920000pt;}
.xc_c01159{left:131.200000pt;}
.x2_c01159{left:133.120000pt;}
.x3_c01159{left:198.400000pt;}
.x8_c01159{left:208.000000pt;}
.x4_c01159{left:247.040000pt;}
.x9_c01159{left:255.360000pt;}
.x5_c01159{left:332.800000pt;}
.xa_c01159{left:370.560000pt;}
.x6_c01159{left:381.440000pt;}
.xb_c01159{left:418.560000pt;}
.x1b_c01159{left:476.800000pt;}
.x12_c01159{left:478.080000pt;}
.x29_c01159{left:483.840000pt;}
.x27_c01159{left:485.120000pt;}
.x1f_c01159{left:486.400000pt;}
.x1c_c01159{left:487.680000pt;}
.x2c_c01159{left:502.400000pt;}
.x28_c01159{left:503.680000pt;}
.x21_c01159{left:504.960000pt;}
.x16_c01159{left:506.880000pt;}
.x2a_c01159{left:521.600000pt;}
.x25_c01159{left:522.880000pt;}
.x22_c01159{left:524.160000pt;}
.x1d_c01159{left:525.440000pt;}
.x2d_c01159{left:531.840000pt;}
.x23_c01159{left:533.760000pt;}
.x26_c01159{left:544.640000pt;}
.x17_c01159{left:555.520000pt;}
.x13_c01159{left:556.800000pt;}
.x11_c01159{left:582.400000pt;}
.x1e_c01159{left:583.680000pt;}
.x14_c01159{left:585.600000pt;}
.x1a_c01159{left:614.400000pt;}
.x2b_c01159{left:619.520000pt;}
.x24_c01159{left:620.800000pt;}
.x20_c01159{left:622.080000pt;}
.x18_c01159{left:623.360000pt;}
.x15_c01159{left:624.640000pt;}
.x19_c01159{left:641.920000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_41fd86b3182c9c2cc6b3c2bd.woff2')format("woff");}.ff1_c01160{font-family:ff1_c01160;line-height:1.109863;font-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_c01160{transform:matrix(0.175550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175550,0.000000,0.000000,0.250000,0,0);}
.m35_c01160{transform:matrix(0.194025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194025,0.000000,0.000000,0.250000,0,0);}
.m3d_c01160{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.ma_c01160{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);}
.m4_c01160{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m3_c01160{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m3a_c01160{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m2b_c01160{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m28_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);}
.m9_c01160{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m20_c01160{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m18_c01160{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_c01160{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01160{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);}
.m30_c01160{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mc_c01160{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m11_c01160{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m2_c01160{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m8_c01160{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m12_c01160{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01160{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m6_c01160{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m17_c01160{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);}
.m29_c01160{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01160{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m13_c01160{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01160{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m16_c01160{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m25_c01160{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m14_c01160{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m39_c01160{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01160{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m23_c01160{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.me_c01160{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mb_c01160{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m36_c01160{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mf_c01160{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01160{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m5_c01160{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m19_c01160{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m15_c01160{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m7_c01160{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01160{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m40_c01160{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);}
.m33_c01160{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);}
.m27_c01160{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01160{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m0_c01160{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);}
.m2f_c01160{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.md_c01160{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);}
.m31_c01160{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m24_c01160{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m41_c01160{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m1_c01160{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m10_c01160{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);}
.m21_c01160{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m32_c01160{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m37_c01160{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m38_c01160{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01160{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01160{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.m26_c01160{transform:matrix(0.822500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.822500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.822500,0.000000,0.000000,0.250000,0,0);}
.m34_c01160{transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);}
.m22_c01160{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01160{transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01160{transform:matrix(0.885000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.885000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.885000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01160{transform:matrix(1.092500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.092500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.092500,0.000000,0.000000,0.250000,0,0);}
.v0_c01160{vertical-align:0.000000px;}
.ls0_c01160{letter-spacing:0.000000px;}
.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;}
.fc0_c01160{color:transparent;}
.fsd_c01160{font-size:25.920000px;}
.fsc_c01160{font-size:43.200000px;}
.fs7_c01160{font-size:46.080000px;}
.fs3_c01160{font-size:48.960000px;}
.fs1_c01160{font-size:51.840000px;}
.fs4_c01160{font-size:54.720000px;}
.fs8_c01160{font-size:57.600000px;}
.fs6_c01160{font-size:60.480000px;}
.fsb_c01160{font-size:63.360000px;}
.fs5_c01160{font-size:66.240000px;}
.fs0_c01160{font-size:69.120000px;}
.fsa_c01160{font-size:72.000000px;}
.fs9_c01160{font-size:74.880000px;}
.fs2_c01160{font-size:77.760000px;}
.y0_c01160{bottom:0.000000px;}
.y8b_c01160{bottom:51.120000px;}
.y8a_c01160{bottom:51.840000px;}
.y89_c01160{bottom:53.280000px;}
.y87_c01160{bottom:54.000000px;}
.y88_c01160{bottom:55.440000px;}
.y86_c01160{bottom:58.320000px;}
.y83_c01160{bottom:95.040000px;}
.y80_c01160{bottom:95.760000px;}
.y85_c01160{bottom:96.480000px;}
.y82_c01160{bottom:97.200000px;}
.y84_c01160{bottom:97.920000px;}
.y81_c01160{bottom:98.640000px;}
.y7f_c01160{bottom:100.080000px;}
.y7e_c01160{bottom:138.240000px;}
.y7a_c01160{bottom:138.960000px;}
.y7c_c01160{bottom:141.120000px;}
.y7d_c01160{bottom:141.840000px;}
.y7b_c01160{bottom:142.560000px;}
.y79_c01160{bottom:144.000000px;}
.y78_c01160{bottom:180.720000px;}
.y75_c01160{bottom:181.440000px;}
.y77_c01160{bottom:182.160000px;}
.y76_c01160{bottom:185.040000px;}
.y74_c01160{bottom:186.480000px;}
.y6f_c01160{bottom:224.640000px;}
.y71_c01160{bottom:225.360000px;}
.y73_c01160{bottom:226.080000px;}
.y72_c01160{bottom:226.800000px;}
.y70_c01160{bottom:227.520000px;}
.y6d_c01160{bottom:228.240000px;}
.y6e_c01160{bottom:228.960000px;}
.y6b_c01160{bottom:267.120000px;}
.y6c_c01160{bottom:267.840000px;}
.y6a_c01160{bottom:270.000000px;}
.y69_c01160{bottom:309.600000px;}
.y65_c01160{bottom:310.320000px;}
.y64_c01160{bottom:311.040000px;}
.y66_c01160{bottom:311.760000px;}
.y68_c01160{bottom:312.480000px;}
.y63_c01160{bottom:313.200000px;}
.y67_c01160{bottom:313.920000px;}
.y5f_c01160{bottom:352.080000px;}
.y62_c01160{bottom:353.520000px;}
.y60_c01160{bottom:354.240000px;}
.y61_c01160{bottom:354.960000px;}
.y5e_c01160{bottom:355.680000px;}
.y5a_c01160{bottom:395.280000px;}
.y5c_c01160{bottom:396.720000px;}
.y5d_c01160{bottom:397.440000px;}
.y59_c01160{bottom:398.160000px;}
.y5b_c01160{bottom:398.880000px;}
.y54_c01160{bottom:438.480000px;}
.y56_c01160{bottom:439.200000px;}
.y58_c01160{bottom:439.920000px;}
.y53_c01160{bottom:440.640000px;}
.y55_c01160{bottom:442.080000px;}
.y57_c01160{bottom:442.800000px;}
.y4e_c01160{bottom:480.240000px;}
.y52_c01160{bottom:482.400000px;}
.y50_c01160{bottom:483.120000px;}
.y4d_c01160{bottom:483.840000px;}
.y4f_c01160{bottom:485.280000px;}
.y51_c01160{bottom:486.000000px;}
.y49_c01160{bottom:524.160000px;}
.y48_c01160{bottom:526.320000px;}
.y4b_c01160{bottom:527.040000px;}
.y4a_c01160{bottom:528.480000px;}
.y4c_c01160{bottom:529.200000px;}
.y43_c01160{bottom:566.640000px;}
.y42_c01160{bottom:568.800000px;}
.y46_c01160{bottom:569.520000px;}
.y45_c01160{bottom:570.240000px;}
.y44_c01160{bottom:571.680000px;}
.y47_c01160{bottom:572.400000px;}
.y3c_c01160{bottom:608.400000px;}
.y3b_c01160{bottom:611.280000px;}
.y3f_c01160{bottom:612.000000px;}
.y40_c01160{bottom:613.440000px;}
.y3d_c01160{bottom:614.160000px;}
.y3e_c01160{bottom:614.880000px;}
.y41_c01160{bottom:615.600000px;}
.y36_c01160{bottom:652.320000px;}
.y35_c01160{bottom:653.040000px;}
.y38_c01160{bottom:656.640000px;}
.y37_c01160{bottom:658.080000px;}
.y39_c01160{bottom:658.800000px;}
.y3a_c01160{bottom:659.520000px;}
.y2f_c01160{bottom:694.080000px;}
.y2e_c01160{bottom:696.960000px;}
.y32_c01160{bottom:698.400000px;}
.y31_c01160{bottom:699.840000px;}
.y30_c01160{bottom:701.280000px;}
.y34_c01160{bottom:702.000000px;}
.y33_c01160{bottom:702.720000px;}
.y27_c01160{bottom:736.560000px;}
.y26_c01160{bottom:738.720000px;}
.y2a_c01160{bottom:740.880000px;}
.y2d_c01160{bottom:741.600000px;}
.y29_c01160{bottom:742.320000px;}
.y2b_c01160{bottom:743.040000px;}
.y28_c01160{bottom:743.760000px;}
.y2c_c01160{bottom:744.480000px;}
.y22_c01160{bottom:779.040000px;}
.y21_c01160{bottom:781.200000px;}
.y24_c01160{bottom:785.520000px;}
.y23_c01160{bottom:786.240000px;}
.y25_c01160{bottom:787.680000px;}
.y1d_c01160{bottom:821.520000px;}
.y1c_c01160{bottom:822.960000px;}
.y1f_c01160{bottom:827.280000px;}
.y20_c01160{bottom:828.000000px;}
.y1e_c01160{bottom:829.440000px;}
.y19_c01160{bottom:865.440000px;}
.y1b_c01160{bottom:870.480000px;}
.y1a_c01160{bottom:872.640000px;}
.y15_c01160{bottom:907.200000px;}
.y14_c01160{bottom:909.360000px;}
.y17_c01160{bottom:913.680000px;}
.y16_c01160{bottom:915.840000px;}
.y18_c01160{bottom:916.560000px;}
.yf_c01160{bottom:950.400000px;}
.ye_c01160{bottom:951.120000px;}
.y11_c01160{bottom:956.160000px;}
.y12_c01160{bottom:956.880000px;}
.y10_c01160{bottom:958.320000px;}
.y13_c01160{bottom:959.760000px;}
.y9_c01160{bottom:992.160000px;}
.y8_c01160{bottom:993.600000px;}
.yb_c01160{bottom:999.360000px;}
.yc_c01160{bottom:1000.080000px;}
.yd_c01160{bottom:1000.800000px;}
.ya_c01160{bottom:1002.240000px;}
.y3_c01160{bottom:1036.080000px;}
.y2_c01160{bottom:1036.800000px;}
.y5_c01160{bottom:1043.280000px;}
.y6_c01160{bottom:1044.000000px;}
.y7_c01160{bottom:1044.720000px;}
.y4_c01160{bottom:1045.440000px;}
.y1_c01160{bottom:1117.440000px;}
.hf_c01160{height:23.325469px;}
.he_c01160{height:38.875781px;}
.h9_c01160{height:41.467500px;}
.h5_c01160{height:44.059219px;}
.h3_c01160{height:46.650937px;}
.h6_c01160{height:49.242656px;}
.ha_c01160{height:51.834375px;}
.h8_c01160{height:54.426094px;}
.hd_c01160{height:57.017812px;}
.h7_c01160{height:59.609531px;}
.h2_c01160{height:62.201250px;}
.hc_c01160{height:64.792969px;}
.hb_c01160{height:67.384687px;}
.h4_c01160{height:69.976406px;}
.h0_c01160{height:1153.440000px;}
.h1_c01160{height:1153.500000px;}
.w1_c01160{width:786.000000px;}
.w0_c01160{width:786.240000px;}
.x0_c01160{left:0.000000px;}
.x2_c01160{left:64.800000px;}
.xf_c01160{left:66.240000px;}
.x17_c01160{left:67.680000px;}
.x1e_c01160{left:69.120000px;}
.x21_c01160{left:120.960000px;}
.x3_c01160{left:146.880000px;}
.x9_c01160{left:148.320000px;}
.x19_c01160{left:149.760000px;}
.x1f_c01160{left:151.200000px;}
.x1b_c01160{left:300.240000px;}
.x1c_c01160{left:354.240000px;}
.x1d_c01160{left:397.440000px;}
.x4_c01160{left:547.920000px;}
.xa_c01160{left:549.360000px;}
.x14_c01160{left:550.800000px;}
.x22_c01160{left:552.240000px;}
.x5_c01160{left:569.520000px;}
.x11_c01160{left:571.680000px;}
.x20_c01160{left:573.840000px;}
.x6_c01160{left:589.680000px;}
.x8_c01160{left:591.120000px;}
.xb_c01160{left:624.240000px;}
.x10_c01160{left:625.680000px;}
.x1a_c01160{left:627.120000px;}
.x24_c01160{left:628.560000px;}
.xc_c01160{left:658.080000px;}
.x15_c01160{left:659.520000px;}
.x1_c01160{left:660.960000px;}
.x25_c01160{left:662.400000px;}
.xd_c01160{left:691.200000px;}
.x12_c01160{left:692.640000px;}
.x26_c01160{left:694.800000px;}
.x7_c01160{left:701.280000px;}
.x16_c01160{left:702.720000px;}
.x18_c01160{left:704.160000px;}
.xe_c01160{left:722.160000px;}
.x13_c01160{left:723.600000px;}
.x23_c01160{left:725.040000px;}
@media print{
.v0_c01160{vertical-align:0.000000pt;}
.ls0_c01160{letter-spacing:0.000000pt;}
.ws0_c01160{word-spacing:0.000000pt;}
.fsd_c01160{font-size:23.040000pt;}
.fsc_c01160{font-size:38.400000pt;}
.fs7_c01160{font-size:40.960000pt;}
.fs3_c01160{font-size:43.520000pt;}
.fs1_c01160{font-size:46.080000pt;}
.fs4_c01160{font-size:48.640000pt;}
.fs8_c01160{font-size:51.200000pt;}
.fs6_c01160{font-size:53.760000pt;}
.fsb_c01160{font-size:56.320000pt;}
.fs5_c01160{font-size:58.880000pt;}
.fs0_c01160{font-size:61.440000pt;}
.fsa_c01160{font-size:64.000000pt;}
.fs9_c01160{font-size:66.560000pt;}
.fs2_c01160{font-size:69.120000pt;}
.y0_c01160{bottom:0.000000pt;}
.y8b_c01160{bottom:45.440000pt;}
.y8a_c01160{bottom:46.080000pt;}
.y89_c01160{bottom:47.360000pt;}
.y87_c01160{bottom:48.000000pt;}
.y88_c01160{bottom:49.280000pt;}
.y86_c01160{bottom:51.840000pt;}
.y83_c01160{bottom:84.480000pt;}
.y80_c01160{bottom:85.120000pt;}
.y85_c01160{bottom:85.760000pt;}
.y82_c01160{bottom:86.400000pt;}
.y84_c01160{bottom:87.040000pt;}
.y81_c01160{bottom:87.680000pt;}
.y7f_c01160{bottom:88.960000pt;}
.y7e_c01160{bottom:122.880000pt;}
.y7a_c01160{bottom:123.520000pt;}
.y7c_c01160{bottom:125.440000pt;}
.y7d_c01160{bottom:126.080000pt;}
.y7b_c01160{bottom:126.720000pt;}
.y79_c01160{bottom:128.000000pt;}
.y78_c01160{bottom:160.640000pt;}
.y75_c01160{bottom:161.280000pt;}
.y77_c01160{bottom:161.920000pt;}
.y76_c01160{bottom:164.480000pt;}
.y74_c01160{bottom:165.760000pt;}
.y6f_c01160{bottom:199.680000pt;}
.y71_c01160{bottom:200.320000pt;}
.y73_c01160{bottom:200.960000pt;}
.y72_c01160{bottom:201.600000pt;}
.y70_c01160{bottom:202.240000pt;}
.y6d_c01160{bottom:202.880000pt;}
.y6e_c01160{bottom:203.520000pt;}
.y6b_c01160{bottom:237.440000pt;}
.y6c_c01160{bottom:238.080000pt;}
.y6a_c01160{bottom:240.000000pt;}
.y69_c01160{bottom:275.200000pt;}
.y65_c01160{bottom:275.840000pt;}
.y64_c01160{bottom:276.480000pt;}
.y66_c01160{bottom:277.120000pt;}
.y68_c01160{bottom:277.760000pt;}
.y63_c01160{bottom:278.400000pt;}
.y67_c01160{bottom:279.040000pt;}
.y5f_c01160{bottom:312.960000pt;}
.y62_c01160{bottom:314.240000pt;}
.y60_c01160{bottom:314.880000pt;}
.y61_c01160{bottom:315.520000pt;}
.y5e_c01160{bottom:316.160000pt;}
.y5a_c01160{bottom:351.360000pt;}
.y5c_c01160{bottom:352.640000pt;}
.y5d_c01160{bottom:353.280000pt;}
.y59_c01160{bottom:353.920000pt;}
.y5b_c01160{bottom:354.560000pt;}
.y54_c01160{bottom:389.760000pt;}
.y56_c01160{bottom:390.400000pt;}
.y58_c01160{bottom:391.040000pt;}
.y53_c01160{bottom:391.680000pt;}
.y55_c01160{bottom:392.960000pt;}
.y57_c01160{bottom:393.600000pt;}
.y4e_c01160{bottom:426.880000pt;}
.y52_c01160{bottom:428.800000pt;}
.y50_c01160{bottom:429.440000pt;}
.y4d_c01160{bottom:430.080000pt;}
.y4f_c01160{bottom:431.360000pt;}
.y51_c01160{bottom:432.000000pt;}
.y49_c01160{bottom:465.920000pt;}
.y48_c01160{bottom:467.840000pt;}
.y4b_c01160{bottom:468.480000pt;}
.y4a_c01160{bottom:469.760000pt;}
.y4c_c01160{bottom:470.400000pt;}
.y43_c01160{bottom:503.680000pt;}
.y42_c01160{bottom:505.600000pt;}
.y46_c01160{bottom:506.240000pt;}
.y45_c01160{bottom:506.880000pt;}
.y44_c01160{bottom:508.160000pt;}
.y47_c01160{bottom:508.800000pt;}
.y3c_c01160{bottom:540.800000pt;}
.y3b_c01160{bottom:543.360000pt;}
.y3f_c01160{bottom:544.000000pt;}
.y40_c01160{bottom:545.280000pt;}
.y3d_c01160{bottom:545.920000pt;}
.y3e_c01160{bottom:546.560000pt;}
.y41_c01160{bottom:547.200000pt;}
.y36_c01160{bottom:579.840000pt;}
.y35_c01160{bottom:580.480000pt;}
.y38_c01160{bottom:583.680000pt;}
.y37_c01160{bottom:584.960000pt;}
.y39_c01160{bottom:585.600000pt;}
.y3a_c01160{bottom:586.240000pt;}
.y2f_c01160{bottom:616.960000pt;}
.y2e_c01160{bottom:619.520000pt;}
.y32_c01160{bottom:620.800000pt;}
.y31_c01160{bottom:622.080000pt;}
.y30_c01160{bottom:623.360000pt;}
.y34_c01160{bottom:624.000000pt;}
.y33_c01160{bottom:624.640000pt;}
.y27_c01160{bottom:654.720000pt;}
.y26_c01160{bottom:656.640000pt;}
.y2a_c01160{bottom:658.560000pt;}
.y2d_c01160{bottom:659.200000pt;}
.y29_c01160{bottom:659.840000pt;}
.y2b_c01160{bottom:660.480000pt;}
.y28_c01160{bottom:661.120000pt;}
.y2c_c01160{bottom:661.760000pt;}
.y22_c01160{bottom:692.480000pt;}
.y21_c01160{bottom:694.400000pt;}
.y24_c01160{bottom:698.240000pt;}
.y23_c01160{bottom:698.880000pt;}
.y25_c01160{bottom:700.160000pt;}
.y1d_c01160{bottom:730.240000pt;}
.y1c_c01160{bottom:731.520000pt;}
.y1f_c01160{bottom:735.360000pt;}
.y20_c01160{bottom:736.000000pt;}
.y1e_c01160{bottom:737.280000pt;}
.y19_c01160{bottom:769.280000pt;}
.y1b_c01160{bottom:773.760000pt;}
.y1a_c01160{bottom:775.680000pt;}
.y15_c01160{bottom:806.400000pt;}
.y14_c01160{bottom:808.320000pt;}
.y17_c01160{bottom:812.160000pt;}
.y16_c01160{bottom:814.080000pt;}
.y18_c01160{bottom:814.720000pt;}
.yf_c01160{bottom:844.800000pt;}
.ye_c01160{bottom:845.440000pt;}
.y11_c01160{bottom:849.920000pt;}
.y12_c01160{bottom:850.560000pt;}
.y10_c01160{bottom:851.840000pt;}
.y13_c01160{bottom:853.120000pt;}
.y9_c01160{bottom:881.920000pt;}
.y8_c01160{bottom:883.200000pt;}
.yb_c01160{bottom:888.320000pt;}
.yc_c01160{bottom:888.960000pt;}
.yd_c01160{bottom:889.600000pt;}
.ya_c01160{bottom:890.880000pt;}
.y3_c01160{bottom:920.960000pt;}
.y2_c01160{bottom:921.600000pt;}
.y5_c01160{bottom:927.360000pt;}
.y6_c01160{bottom:928.000000pt;}
.y7_c01160{bottom:928.640000pt;}
.y4_c01160{bottom:929.280000pt;}
.y1_c01160{bottom:993.280000pt;}
.hf_c01160{height:20.733750pt;}
.he_c01160{height:34.556250pt;}
.h9_c01160{height:36.860000pt;}
.h5_c01160{height:39.163750pt;}
.h3_c01160{height:41.467500pt;}
.h6_c01160{height:43.771250pt;}
.ha_c01160{height:46.075000pt;}
.h8_c01160{height:48.378750pt;}
.hd_c01160{height:50.682500pt;}
.h7_c01160{height:52.986250pt;}
.h2_c01160{height:55.290000pt;}
.hc_c01160{height:57.593750pt;}
.hb_c01160{height:59.897500pt;}
.h4_c01160{height:62.201250pt;}
.h0_c01160{height:1025.280000pt;}
.h1_c01160{height:1025.333333pt;}
.w1_c01160{width:698.666667pt;}
.w0_c01160{width:698.880000pt;}
.x0_c01160{left:0.000000pt;}
.x2_c01160{left:57.600000pt;}
.xf_c01160{left:58.880000pt;}
.x17_c01160{left:60.160000pt;}
.x1e_c01160{left:61.440000pt;}
.x21_c01160{left:107.520000pt;}
.x3_c01160{left:130.560000pt;}
.x9_c01160{left:131.840000pt;}
.x19_c01160{left:133.120000pt;}
.x1f_c01160{left:134.400000pt;}
.x1b_c01160{left:266.880000pt;}
.x1c_c01160{left:314.880000pt;}
.x1d_c01160{left:353.280000pt;}
.x4_c01160{left:487.040000pt;}
.xa_c01160{left:488.320000pt;}
.x14_c01160{left:489.600000pt;}
.x22_c01160{left:490.880000pt;}
.x5_c01160{left:506.240000pt;}
.x11_c01160{left:508.160000pt;}
.x20_c01160{left:510.080000pt;}
.x6_c01160{left:524.160000pt;}
.x8_c01160{left:525.440000pt;}
.xb_c01160{left:554.880000pt;}
.x10_c01160{left:556.160000pt;}
.x1a_c01160{left:557.440000pt;}
.x24_c01160{left:558.720000pt;}
.xc_c01160{left:584.960000pt;}
.x15_c01160{left:586.240000pt;}
.x1_c01160{left:587.520000pt;}
.x25_c01160{left:588.800000pt;}
.xd_c01160{left:614.400000pt;}
.x12_c01160{left:615.680000pt;}
.x26_c01160{left:617.600000pt;}
.x7_c01160{left:623.360000pt;}
.x16_c01160{left:624.640000pt;}
.x18_c01160{left:625.920000pt;}
.xe_c01160{left:641.920000pt;}
.x13_c01160{left:643.200000pt;}
.x23_c01160{left:644.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_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_2c4aa322f97d648407545b7a.woff2')format("woff");}.ff1_c01161{font-family:ff1_c01161;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m34_c01161{transform:matrix(0.195875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195875,0.000000,0.000000,0.250000,0,0);}
.m7_c01161{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m44_c01161{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);}
.m3b_c01161{transform:matrix(0.229400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229400,0.000000,0.000000,0.250000,0,0);}
.m11_c01161{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m2a_c01161{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m3_c01161{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m20_c01161{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m3d_c01161{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m10_c01161{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m4_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);}
.m24_c01161{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);}
.m42_c01161{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m15_c01161{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m9_c01161{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);}
.m3c_c01161{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.ma_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);}
.m30_c01161{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m2_c01161{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m23_c01161{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m43_c01161{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mf_c01161{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);}
.m37_c01161{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mb_c01161{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m22_c01161{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m21_c01161{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01161{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01161{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mc_c01161{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01161{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01161{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01161{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m12_c01161{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m17_c01161{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01161{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m35_c01161{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m5_c01161{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01161{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m31_c01161{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m29_c01161{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m13_c01161{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);}
.m39_c01161{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);}
.m2f_c01161{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m1_c01161{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m16_c01161{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.me_c01161{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);}
.m40_c01161{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m8_c01161{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m0_c01161{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);}
.m6_c01161{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01161{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);}
.m25_c01161{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m32_c01161{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m28_c01161{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01161{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01161{transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01161{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m18_c01161{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);}
.m1b_c01161{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);}
.m33_c01161{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m38_c01161{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);}
.m36_c01161{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);}
.m3a_c01161{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);}
.m27_c01161{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m41_c01161{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01161{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m45_c01161{transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);}
.m26_c01161{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.md_c01161{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m14_c01161{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.v1_c01161{vertical-align:-2.880000px;}
.v0_c01161{vertical-align:0.000000px;}
.ls1_c01161{letter-spacing:0.000000px;}
.ls0_c01161{letter-spacing:50.419680px;}
.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;}
.fc0_c01161{color:transparent;}
.fs10_c01161{font-size:34.560000px;}
.fsd_c01161{font-size:37.440000px;}
.fse_c01161{font-size:40.320000px;}
.fs8_c01161{font-size:43.200000px;}
.fs9_c01161{font-size:46.080000px;}
.fs3_c01161{font-size:48.960000px;}
.fs4_c01161{font-size:51.840000px;}
.fs5_c01161{font-size:54.720000px;}
.fs7_c01161{font-size:57.600000px;}
.fs1_c01161{font-size:60.480000px;}
.fsf_c01161{font-size:63.360000px;}
.fsb_c01161{font-size:66.240000px;}
.fs0_c01161{font-size:69.120000px;}
.fsa_c01161{font-size:72.000000px;}
.fs6_c01161{font-size:74.880000px;}
.fs2_c01161{font-size:77.760000px;}
.fsc_c01161{font-size:95.040000px;}
.y0_c01161{bottom:0.000000px;}
.y89_c01161{bottom:51.120000px;}
.y8b_c01161{bottom:51.840000px;}
.y8a_c01161{bottom:52.560000px;}
.y87_c01161{bottom:53.280000px;}
.y88_c01161{bottom:55.440000px;}
.y86_c01161{bottom:56.880000px;}
.y84_c01161{bottom:94.320000px;}
.y85_c01161{bottom:95.040000px;}
.y83_c01161{bottom:95.760000px;}
.y82_c01161{bottom:98.640000px;}
.y80_c01161{bottom:136.800000px;}
.y81_c01161{bottom:138.240000px;}
.y7f_c01161{bottom:138.960000px;}
.y7e_c01161{bottom:142.560000px;}
.y7d_c01161{bottom:180.000000px;}
.y7a_c01161{bottom:180.720000px;}
.y79_c01161{bottom:181.440000px;}
.y7c_c01161{bottom:182.160000px;}
.y7b_c01161{bottom:183.600000px;}
.y78_c01161{bottom:184.320000px;}
.y74_c01161{bottom:222.480000px;}
.y73_c01161{bottom:223.920000px;}
.y76_c01161{bottom:224.640000px;}
.y77_c01161{bottom:225.360000px;}
.y75_c01161{bottom:226.080000px;}
.y72_c01161{bottom:226.800000px;}
.y6d_c01161{bottom:266.400000px;}
.y70_c01161{bottom:267.120000px;}
.y71_c01161{bottom:267.840000px;}
.y6c_c01161{bottom:268.560000px;}
.y6e_c01161{bottom:269.280000px;}
.y6f_c01161{bottom:270.000000px;}
.y68_c01161{bottom:308.880000px;}
.y6b_c01161{bottom:310.320000px;}
.y69_c01161{bottom:311.040000px;}
.y67_c01161{bottom:313.200000px;}
.y6a_c01161{bottom:313.920000px;}
.y62_c01161{bottom:352.080000px;}
.y64_c01161{bottom:354.240000px;}
.y61_c01161{bottom:354.960000px;}
.y63_c01161{bottom:355.680000px;}
.y65_c01161{bottom:356.400000px;}
.y66_c01161{bottom:357.120000px;}
.y5e_c01161{bottom:395.280000px;}
.y60_c01161{bottom:397.440000px;}
.y5d_c01161{bottom:398.160000px;}
.y5f_c01161{bottom:399.600000px;}
.y5a_c01161{bottom:432.000000px;}
.y58_c01161{bottom:437.760000px;}
.y59_c01161{bottom:439.200000px;}
.y57_c01161{bottom:439.920000px;}
.y5c_c01161{bottom:440.640000px;}
.y5b_c01161{bottom:442.080000px;}
.y53_c01161{bottom:479.520000px;}
.y52_c01161{bottom:482.400000px;}
.y56_c01161{bottom:483.120000px;}
.y54_c01161{bottom:485.280000px;}
.y55_c01161{bottom:486.000000px;}
.y4d_c01161{bottom:522.000000px;}
.y4c_c01161{bottom:524.880000px;}
.y4f_c01161{bottom:526.320000px;}
.y50_c01161{bottom:527.040000px;}
.y4e_c01161{bottom:527.760000px;}
.y51_c01161{bottom:528.480000px;}
.y47_c01161{bottom:565.920000px;}
.y46_c01161{bottom:566.640000px;}
.y49_c01161{bottom:569.520000px;}
.y4a_c01161{bottom:570.240000px;}
.y48_c01161{bottom:570.960000px;}
.y4b_c01161{bottom:571.680000px;}
.y41_c01161{bottom:608.400000px;}
.y40_c01161{bottom:609.840000px;}
.y45_c01161{bottom:612.000000px;}
.y44_c01161{bottom:613.440000px;}
.y42_c01161{bottom:614.160000px;}
.y43_c01161{bottom:614.880000px;}
.y3b_c01161{bottom:650.880000px;}
.y3a_c01161{bottom:653.040000px;}
.y3d_c01161{bottom:655.920000px;}
.y3f_c01161{bottom:656.640000px;}
.y3c_c01161{bottom:657.360000px;}
.y3e_c01161{bottom:658.800000px;}
.y34_c01161{bottom:693.360000px;}
.y33_c01161{bottom:694.800000px;}
.y36_c01161{bottom:699.120000px;}
.y38_c01161{bottom:699.840000px;}
.y35_c01161{bottom:700.560000px;}
.y39_c01161{bottom:701.280000px;}
.y37_c01161{bottom:702.000000px;}
.y2e_c01161{bottom:735.840000px;}
.y2d_c01161{bottom:738.000000px;}
.y31_c01161{bottom:742.320000px;}
.y2f_c01161{bottom:743.760000px;}
.y32_c01161{bottom:744.480000px;}
.y30_c01161{bottom:745.200000px;}
.y28_c01161{bottom:779.760000px;}
.y27_c01161{bottom:780.480000px;}
.y2a_c01161{bottom:785.520000px;}
.y2c_c01161{bottom:786.240000px;}
.y29_c01161{bottom:786.960000px;}
.y2b_c01161{bottom:787.680000px;}
.y23_c01161{bottom:822.960000px;}
.y24_c01161{bottom:829.440000px;}
.y25_c01161{bottom:830.160000px;}
.y26_c01161{bottom:832.320000px;}
.y1b_c01161{bottom:865.440000px;}
.y1a_c01161{bottom:866.160000px;}
.y1c_c01161{bottom:868.320000px;}
.y1d_c01161{bottom:870.480000px;}
.y1e_c01161{bottom:871.200000px;}
.y20_c01161{bottom:871.920000px;}
.y21_c01161{bottom:872.640000px;}
.y1f_c01161{bottom:873.360000px;}
.y22_c01161{bottom:874.800000px;}
.y15_c01161{bottom:907.920000px;}
.y14_c01161{bottom:910.080000px;}
.y17_c01161{bottom:914.400000px;}
.y19_c01161{bottom:915.840000px;}
.y16_c01161{bottom:916.560000px;}
.y18_c01161{bottom:918.000000px;}
.yf_c01161{bottom:950.400000px;}
.ye_c01161{bottom:951.840000px;}
.y10_c01161{bottom:958.320000px;}
.y11_c01161{bottom:959.040000px;}
.y12_c01161{bottom:959.760000px;}
.y13_c01161{bottom:961.920000px;}
.y9_c01161{bottom:992.880000px;}
.y8_c01161{bottom:995.040000px;}
.yb_c01161{bottom:1000.080000px;}
.yc_c01161{bottom:1000.800000px;}
.ya_c01161{bottom:1002.240000px;}
.yd_c01161{bottom:1004.400000px;}
.y3_c01161{bottom:1035.360000px;}
.y2_c01161{bottom:1036.080000px;}
.y5_c01161{bottom:1044.720000px;}
.y4_c01161{bottom:1045.440000px;}
.y6_c01161{bottom:1046.160000px;}
.y7_c01161{bottom:1046.880000px;}
.y1_c01161{bottom:1113.120000px;}
.h11_c01161{height:31.100625px;}
.he_c01161{height:33.692344px;}
.hf_c01161{height:36.284062px;}
.h9_c01161{height:38.875781px;}
.ha_c01161{height:41.467500px;}
.h4_c01161{height:44.059219px;}
.h5_c01161{height:46.650937px;}
.h6_c01161{height:49.242656px;}
.h8_c01161{height:51.834375px;}
.h2_c01161{height:54.426094px;}
.h10_c01161{height:57.017812px;}
.hc_c01161{height:59.609531px;}
.h1_c01161{height:62.201250px;}
.hb_c01161{height:64.792969px;}
.h7_c01161{height:67.384687px;}
.h3_c01161{height:69.976406px;}
.hd_c01161{height:85.526719px;}
.h0_c01161{height:1152.000000px;}
.w1_c01161{width:784.500000px;}
.w0_c01161{width:784.800000px;}
.x0_c01161{left:0.000000px;}
.x2_c01161{left:60.480000px;}
.x9_c01161{left:61.920000px;}
.x19_c01161{left:64.080000px;}
.x22_c01161{left:65.520000px;}
.x2e_c01161{left:66.960000px;}
.x38_c01161{left:68.400000px;}
.x3_c01161{left:142.560000px;}
.xa_c01161{left:144.000000px;}
.x17_c01161{left:145.440000px;}
.x1e_c01161{left:146.880000px;}
.x2d_c01161{left:148.320000px;}
.x39_c01161{left:149.760000px;}
.x29_c01161{left:234.720000px;}
.x3f_c01161{left:236.160000px;}
.x37_c01161{left:268.560000px;}
.x2a_c01161{left:276.480000px;}
.x2f_c01161{left:277.920000px;}
.x3a_c01161{left:279.360000px;}
.x40_c01161{left:290.880000px;}
.xf_c01161{left:294.480000px;}
.x23_c01161{left:330.480000px;}
.x10_c01161{left:347.760000px;}
.x27_c01161{left:384.480000px;}
.x11_c01161{left:392.400000px;}
.x3b_c01161{left:397.440000px;}
.x24_c01161{left:427.680000px;}
.x32_c01161{left:429.840000px;}
.x12_c01161{left:434.880000px;}
.x25_c01161{left:481.680000px;}
.x4_c01161{left:544.320000px;}
.x13_c01161{left:545.760000px;}
.x1f_c01161{left:547.920000px;}
.x33_c01161{left:549.360000px;}
.x3c_c01161{left:550.800000px;}
.x5_c01161{left:565.920000px;}
.x14_c01161{left:567.360000px;}
.x1a_c01161{left:568.800000px;}
.x2b_c01161{left:570.240000px;}
.x34_c01161{left:571.680000px;}
.x35_c01161{left:591.120000px;}
.x3d_c01161{left:593.280000px;}
.x6_c01161{left:619.920000px;}
.xe_c01161{left:621.360000px;}
.x1b_c01161{left:622.800000px;}
.x28_c01161{left:624.240000px;}
.x30_c01161{left:625.680000px;}
.x7_c01161{left:652.320000px;}
.xc_c01161{left:653.760000px;}
.x15_c01161{left:655.200000px;}
.x1c_c01161{left:656.640000px;}
.x2c_c01161{left:658.080000px;}
.x1_c01161{left:666.000000px;}
.xd_c01161{left:686.880000px;}
.x21_c01161{left:689.760000px;}
.x8_c01161{left:696.960000px;}
.x16_c01161{left:698.400000px;}
.x1d_c01161{left:699.840000px;}
.x26_c01161{left:701.280000px;}
.x36_c01161{left:702.720000px;}
.x3e_c01161{left:704.160000px;}
.xb_c01161{left:717.120000px;}
.x18_c01161{left:719.280000px;}
.x20_c01161{left:720.720000px;}
.x31_c01161{left:722.880000px;}
@media print{
.v1_c01161{vertical-align:-2.560000pt;}
.v0_c01161{vertical-align:0.000000pt;}
.ls1_c01161{letter-spacing:0.000000pt;}
.ls0_c01161{letter-spacing:44.817493pt;}
.ws0_c01161{word-spacing:0.000000pt;}
.fs10_c01161{font-size:30.720000pt;}
.fsd_c01161{font-size:33.280000pt;}
.fse_c01161{font-size:35.840000pt;}
.fs8_c01161{font-size:38.400000pt;}
.fs9_c01161{font-size:40.960000pt;}
.fs3_c01161{font-size:43.520000pt;}
.fs4_c01161{font-size:46.080000pt;}
.fs5_c01161{font-size:48.640000pt;}
.fs7_c01161{font-size:51.200000pt;}
.fs1_c01161{font-size:53.760000pt;}
.fsf_c01161{font-size:56.320000pt;}
.fsb_c01161{font-size:58.880000pt;}
.fs0_c01161{font-size:61.440000pt;}
.fsa_c01161{font-size:64.000000pt;}
.fs6_c01161{font-size:66.560000pt;}
.fs2_c01161{font-size:69.120000pt;}
.fsc_c01161{font-size:84.480000pt;}
.y0_c01161{bottom:0.000000pt;}
.y89_c01161{bottom:45.440000pt;}
.y8b_c01161{bottom:46.080000pt;}
.y8a_c01161{bottom:46.720000pt;}
.y87_c01161{bottom:47.360000pt;}
.y88_c01161{bottom:49.280000pt;}
.y86_c01161{bottom:50.560000pt;}
.y84_c01161{bottom:83.840000pt;}
.y85_c01161{bottom:84.480000pt;}
.y83_c01161{bottom:85.120000pt;}
.y82_c01161{bottom:87.680000pt;}
.y80_c01161{bottom:121.600000pt;}
.y81_c01161{bottom:122.880000pt;}
.y7f_c01161{bottom:123.520000pt;}
.y7e_c01161{bottom:126.720000pt;}
.y7d_c01161{bottom:160.000000pt;}
.y7a_c01161{bottom:160.640000pt;}
.y79_c01161{bottom:161.280000pt;}
.y7c_c01161{bottom:161.920000pt;}
.y7b_c01161{bottom:163.200000pt;}
.y78_c01161{bottom:163.840000pt;}
.y74_c01161{bottom:197.760000pt;}
.y73_c01161{bottom:199.040000pt;}
.y76_c01161{bottom:199.680000pt;}
.y77_c01161{bottom:200.320000pt;}
.y75_c01161{bottom:200.960000pt;}
.y72_c01161{bottom:201.600000pt;}
.y6d_c01161{bottom:236.800000pt;}
.y70_c01161{bottom:237.440000pt;}
.y71_c01161{bottom:238.080000pt;}
.y6c_c01161{bottom:238.720000pt;}
.y6e_c01161{bottom:239.360000pt;}
.y6f_c01161{bottom:240.000000pt;}
.y68_c01161{bottom:274.560000pt;}
.y6b_c01161{bottom:275.840000pt;}
.y69_c01161{bottom:276.480000pt;}
.y67_c01161{bottom:278.400000pt;}
.y6a_c01161{bottom:279.040000pt;}
.y62_c01161{bottom:312.960000pt;}
.y64_c01161{bottom:314.880000pt;}
.y61_c01161{bottom:315.520000pt;}
.y63_c01161{bottom:316.160000pt;}
.y65_c01161{bottom:316.800000pt;}
.y66_c01161{bottom:317.440000pt;}
.y5e_c01161{bottom:351.360000pt;}
.y60_c01161{bottom:353.280000pt;}
.y5d_c01161{bottom:353.920000pt;}
.y5f_c01161{bottom:355.200000pt;}
.y5a_c01161{bottom:384.000000pt;}
.y58_c01161{bottom:389.120000pt;}
.y59_c01161{bottom:390.400000pt;}
.y57_c01161{bottom:391.040000pt;}
.y5c_c01161{bottom:391.680000pt;}
.y5b_c01161{bottom:392.960000pt;}
.y53_c01161{bottom:426.240000pt;}
.y52_c01161{bottom:428.800000pt;}
.y56_c01161{bottom:429.440000pt;}
.y54_c01161{bottom:431.360000pt;}
.y55_c01161{bottom:432.000000pt;}
.y4d_c01161{bottom:464.000000pt;}
.y4c_c01161{bottom:466.560000pt;}
.y4f_c01161{bottom:467.840000pt;}
.y50_c01161{bottom:468.480000pt;}
.y4e_c01161{bottom:469.120000pt;}
.y51_c01161{bottom:469.760000pt;}
.y47_c01161{bottom:503.040000pt;}
.y46_c01161{bottom:503.680000pt;}
.y49_c01161{bottom:506.240000pt;}
.y4a_c01161{bottom:506.880000pt;}
.y48_c01161{bottom:507.520000pt;}
.y4b_c01161{bottom:508.160000pt;}
.y41_c01161{bottom:540.800000pt;}
.y40_c01161{bottom:542.080000pt;}
.y45_c01161{bottom:544.000000pt;}
.y44_c01161{bottom:545.280000pt;}
.y42_c01161{bottom:545.920000pt;}
.y43_c01161{bottom:546.560000pt;}
.y3b_c01161{bottom:578.560000pt;}
.y3a_c01161{bottom:580.480000pt;}
.y3d_c01161{bottom:583.040000pt;}
.y3f_c01161{bottom:583.680000pt;}
.y3c_c01161{bottom:584.320000pt;}
.y3e_c01161{bottom:585.600000pt;}
.y34_c01161{bottom:616.320000pt;}
.y33_c01161{bottom:617.600000pt;}
.y36_c01161{bottom:621.440000pt;}
.y38_c01161{bottom:622.080000pt;}
.y35_c01161{bottom:622.720000pt;}
.y39_c01161{bottom:623.360000pt;}
.y37_c01161{bottom:624.000000pt;}
.y2e_c01161{bottom:654.080000pt;}
.y2d_c01161{bottom:656.000000pt;}
.y31_c01161{bottom:659.840000pt;}
.y2f_c01161{bottom:661.120000pt;}
.y32_c01161{bottom:661.760000pt;}
.y30_c01161{bottom:662.400000pt;}
.y28_c01161{bottom:693.120000pt;}
.y27_c01161{bottom:693.760000pt;}
.y2a_c01161{bottom:698.240000pt;}
.y2c_c01161{bottom:698.880000pt;}
.y29_c01161{bottom:699.520000pt;}
.y2b_c01161{bottom:700.160000pt;}
.y23_c01161{bottom:731.520000pt;}
.y24_c01161{bottom:737.280000pt;}
.y25_c01161{bottom:737.920000pt;}
.y26_c01161{bottom:739.840000pt;}
.y1b_c01161{bottom:769.280000pt;}
.y1a_c01161{bottom:769.920000pt;}
.y1c_c01161{bottom:771.840000pt;}
.y1d_c01161{bottom:773.760000pt;}
.y1e_c01161{bottom:774.400000pt;}
.y20_c01161{bottom:775.040000pt;}
.y21_c01161{bottom:775.680000pt;}
.y1f_c01161{bottom:776.320000pt;}
.y22_c01161{bottom:777.600000pt;}
.y15_c01161{bottom:807.040000pt;}
.y14_c01161{bottom:808.960000pt;}
.y17_c01161{bottom:812.800000pt;}
.y19_c01161{bottom:814.080000pt;}
.y16_c01161{bottom:814.720000pt;}
.y18_c01161{bottom:816.000000pt;}
.yf_c01161{bottom:844.800000pt;}
.ye_c01161{bottom:846.080000pt;}
.y10_c01161{bottom:851.840000pt;}
.y11_c01161{bottom:852.480000pt;}
.y12_c01161{bottom:853.120000pt;}
.y13_c01161{bottom:855.040000pt;}
.y9_c01161{bottom:882.560000pt;}
.y8_c01161{bottom:884.480000pt;}
.yb_c01161{bottom:888.960000pt;}
.yc_c01161{bottom:889.600000pt;}
.ya_c01161{bottom:890.880000pt;}
.yd_c01161{bottom:892.800000pt;}
.y3_c01161{bottom:920.320000pt;}
.y2_c01161{bottom:920.960000pt;}
.y5_c01161{bottom:928.640000pt;}
.y4_c01161{bottom:929.280000pt;}
.y6_c01161{bottom:929.920000pt;}
.y7_c01161{bottom:930.560000pt;}
.y1_c01161{bottom:989.440000pt;}
.h11_c01161{height:27.645000pt;}
.he_c01161{height:29.948750pt;}
.hf_c01161{height:32.252500pt;}
.h9_c01161{height:34.556250pt;}
.ha_c01161{height:36.860000pt;}
.h4_c01161{height:39.163750pt;}
.h5_c01161{height:41.467500pt;}
.h6_c01161{height:43.771250pt;}
.h8_c01161{height:46.075000pt;}
.h2_c01161{height:48.378750pt;}
.h10_c01161{height:50.682500pt;}
.hc_c01161{height:52.986250pt;}
.h1_c01161{height:55.290000pt;}
.hb_c01161{height:57.593750pt;}
.h7_c01161{height:59.897500pt;}
.h3_c01161{height:62.201250pt;}
.hd_c01161{height:76.023750pt;}
.h0_c01161{height:1024.000000pt;}
.w1_c01161{width:697.333333pt;}
.w0_c01161{width:697.600000pt;}
.x0_c01161{left:0.000000pt;}
.x2_c01161{left:53.760000pt;}
.x9_c01161{left:55.040000pt;}
.x19_c01161{left:56.960000pt;}
.x22_c01161{left:58.240000pt;}
.x2e_c01161{left:59.520000pt;}
.x38_c01161{left:60.800000pt;}
.x3_c01161{left:126.720000pt;}
.xa_c01161{left:128.000000pt;}
.x17_c01161{left:129.280000pt;}
.x1e_c01161{left:130.560000pt;}
.x2d_c01161{left:131.840000pt;}
.x39_c01161{left:133.120000pt;}
.x29_c01161{left:208.640000pt;}
.x3f_c01161{left:209.920000pt;}
.x37_c01161{left:238.720000pt;}
.x2a_c01161{left:245.760000pt;}
.x2f_c01161{left:247.040000pt;}
.x3a_c01161{left:248.320000pt;}
.x40_c01161{left:258.560000pt;}
.xf_c01161{left:261.760000pt;}
.x23_c01161{left:293.760000pt;}
.x10_c01161{left:309.120000pt;}
.x27_c01161{left:341.760000pt;}
.x11_c01161{left:348.800000pt;}
.x3b_c01161{left:353.280000pt;}
.x24_c01161{left:380.160000pt;}
.x32_c01161{left:382.080000pt;}
.x12_c01161{left:386.560000pt;}
.x25_c01161{left:428.160000pt;}
.x4_c01161{left:483.840000pt;}
.x13_c01161{left:485.120000pt;}
.x1f_c01161{left:487.040000pt;}
.x33_c01161{left:488.320000pt;}
.x3c_c01161{left:489.600000pt;}
.x5_c01161{left:503.040000pt;}
.x14_c01161{left:504.320000pt;}
.x1a_c01161{left:505.600000pt;}
.x2b_c01161{left:506.880000pt;}
.x34_c01161{left:508.160000pt;}
.x35_c01161{left:525.440000pt;}
.x3d_c01161{left:527.360000pt;}
.x6_c01161{left:551.040000pt;}
.xe_c01161{left:552.320000pt;}
.x1b_c01161{left:553.600000pt;}
.x28_c01161{left:554.880000pt;}
.x30_c01161{left:556.160000pt;}
.x7_c01161{left:579.840000pt;}
.xc_c01161{left:581.120000pt;}
.x15_c01161{left:582.400000pt;}
.x1c_c01161{left:583.680000pt;}
.x2c_c01161{left:584.960000pt;}
.x1_c01161{left:592.000000pt;}
.xd_c01161{left:610.560000pt;}
.x21_c01161{left:613.120000pt;}
.x8_c01161{left:619.520000pt;}
.x16_c01161{left:620.800000pt;}
.x1d_c01161{left:622.080000pt;}
.x26_c01161{left:623.360000pt;}
.x36_c01161{left:624.640000pt;}
.x3e_c01161{left:625.920000pt;}
.xb_c01161{left:637.440000pt;}
.x18_c01161{left:639.360000pt;}
.x20_c01161{left:640.640000pt;}
.x31_c01161{left:642.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2af4b81bafce6e43c5f8bad1.woff2')format("woff");}.ff1_c01162{font-family:ff1_c01162;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3b_c01162{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m8_c01162{transform:matrix(0.236900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236900,0.000000,0.000000,0.250000,0,0);}
.m27_c01162{transform:matrix(0.239175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239175,0.000000,0.000000,0.250000,0,0);}
.m11_c01162{transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);}
.m1e_c01162{transform:matrix(0.239575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239575,0.000000,0.000000,0.250000,0,0);}
.m15_c01162{transform:matrix(0.240925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240925,0.000000,0.000000,0.250000,0,0);}
.m2a_c01162{transform:matrix(0.243025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243025,0.000000,0.000000,0.250000,0,0);}
.m30_c01162{transform:matrix(0.244025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244025,0.000000,0.000000,0.250000,0,0);}
.m2d_c01162{transform:matrix(0.246375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246375,0.000000,0.000000,0.250000,0,0);}
.m12_c01162{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m22_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);}
.m1f_c01162{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m14_c01162{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.me_c01162{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m1_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);}
.m24_c01162{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_c01162{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mc_c01162{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01162{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01162{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);}
.m25_c01162{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);}
.m28_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);}
.ma_c01162{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m19_c01162{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);}
.m32_c01162{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01162{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01162{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01162{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mf_c01162{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2_c01162{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m26_c01162{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m6_c01162{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01162{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01162{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m5_c01162{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mb_c01162{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m0_c01162{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.md_c01162{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);}
.m37_c01162{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);}
.m38_c01162{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m21_c01162{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);}
.m36_c01162{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01162{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m13_c01162{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m31_c01162{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m34_c01162{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);}
.m10_c01162{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m18_c01162{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m9_c01162{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m3_c01162{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);}
.m17_c01162{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);}
.m29_c01162{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m7_c01162{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m35_c01162{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);}
.m39_c01162{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m20_c01162{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);}
.m23_c01162{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m33_c01162{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);}
.m2f_c01162{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m16_c01162{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.v0_c01162{vertical-align:0.000000px;}
.v1_c01162{vertical-align:5.760000px;}
.ls1_c01162{letter-spacing:0.000000px;}
.ls0_c01162{letter-spacing:42.841680px;}
.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;}
}
.ws2_c01162{word-spacing:0.000000px;}
.ws0_c01162{word-spacing:10.937051px;}
.ws1_c01162{word-spacing:20.750645px;}
.fc0_c01162{color:transparent;}
.fsc_c01162{font-size:37.440000px;}
.fsb_c01162{font-size:46.080000px;}
.fs9_c01162{font-size:48.960000px;}
.fs6_c01162{font-size:51.840000px;}
.fs3_c01162{font-size:54.720000px;}
.fs8_c01162{font-size:57.600000px;}
.fs5_c01162{font-size:60.480000px;}
.fs0_c01162{font-size:63.360000px;}
.fsa_c01162{font-size:66.240000px;}
.fs2_c01162{font-size:69.120000px;}
.fs7_c01162{font-size:72.000000px;}
.fs1_c01162{font-size:74.880000px;}
.fs4_c01162{font-size:77.760000px;}
.y0_c01162{bottom:0.000000px;}
.y7f_c01162{bottom:79.200000px;}
.y7e_c01162{bottom:79.920000px;}
.y5f_c01162{bottom:80.640000px;}
.y5e_c01162{bottom:82.080000px;}
.y5d_c01162{bottom:82.800000px;}
.y5c_c01162{bottom:87.120000px;}
.y7d_c01162{bottom:122.400000px;}
.y5b_c01162{bottom:123.120000px;}
.y58_c01162{bottom:124.560000px;}
.y7c_c01162{bottom:125.280000px;}
.y5a_c01162{bottom:126.720000px;}
.y59_c01162{bottom:127.440000px;}
.y57_c01162{bottom:129.600000px;}
.y7b_c01162{bottom:165.600000px;}
.y56_c01162{bottom:167.040000px;}
.y55_c01162{bottom:167.760000px;}
.y54_c01162{bottom:170.640000px;}
.y79_c01162{bottom:207.360000px;}
.y7a_c01162{bottom:208.080000px;}
.y53_c01162{bottom:208.800000px;}
.y51_c01162{bottom:209.520000px;}
.y78_c01162{bottom:211.680000px;}
.y52_c01162{bottom:213.120000px;}
.y50_c01162{bottom:214.560000px;}
.y77_c01162{bottom:251.280000px;}
.y4f_c01162{bottom:252.000000px;}
.y4e_c01162{bottom:252.720000px;}
.y4d_c01162{bottom:255.600000px;}
.y76_c01162{bottom:292.320000px;}
.y4c_c01162{bottom:294.480000px;}
.y4b_c01162{bottom:295.200000px;}
.y75_c01162{bottom:295.920000px;}
.y4a_c01162{bottom:299.520000px;}
.y49_c01162{bottom:336.240000px;}
.y73_c01162{bottom:336.960000px;}
.y74_c01162{bottom:337.680000px;}
.y48_c01162{bottom:338.400000px;}
.y71_c01162{bottom:339.120000px;}
.y72_c01162{bottom:339.840000px;}
.y47_c01162{bottom:340.560000px;}
.y46_c01162{bottom:380.160000px;}
.y45_c01162{bottom:380.880000px;}
.y70_c01162{bottom:381.600000px;}
.y44_c01162{bottom:383.040000px;}
.y43_c01162{bottom:421.920000px;}
.y40_c01162{bottom:423.360000px;}
.y42_c01162{bottom:424.080000px;}
.y6f_c01162{bottom:424.800000px;}
.y3f_c01162{bottom:425.520000px;}
.y41_c01162{bottom:426.960000px;}
.y3d_c01162{bottom:465.840000px;}
.y3e_c01162{bottom:466.560000px;}
.y6d_c01162{bottom:467.280000px;}
.y6e_c01162{bottom:468.000000px;}
.y3c_c01162{bottom:470.160000px;}
.y3b_c01162{bottom:509.040000px;}
.y6c_c01162{bottom:509.760000px;}
.y6b_c01162{bottom:510.480000px;}
.y6a_c01162{bottom:511.200000px;}
.y3a_c01162{bottom:512.640000px;}
.y38_c01162{bottom:551.520000px;}
.y39_c01162{bottom:552.960000px;}
.y69_c01162{bottom:553.680000px;}
.y68_c01162{bottom:554.400000px;}
.y37_c01162{bottom:555.120000px;}
.y35_c01162{bottom:595.440000px;}
.y36_c01162{bottom:596.160000px;}
.y34_c01162{bottom:596.880000px;}
.y66_c01162{bottom:597.600000px;}
.y67_c01162{bottom:599.040000px;}
.y31_c01162{bottom:637.200000px;}
.y33_c01162{bottom:638.640000px;}
.y65_c01162{bottom:639.360000px;}
.y30_c01162{bottom:640.080000px;}
.y64_c01162{bottom:640.800000px;}
.y32_c01162{bottom:641.520000px;}
.y2e_c01162{bottom:680.400000px;}
.y2f_c01162{bottom:681.840000px;}
.y2d_c01162{bottom:682.560000px;}
.y62_c01162{bottom:683.280000px;}
.y63_c01162{bottom:684.000000px;}
.y2a_c01162{bottom:722.160000px;}
.y2c_c01162{bottom:724.320000px;}
.y29_c01162{bottom:725.040000px;}
.y60_c01162{bottom:725.760000px;}
.y2b_c01162{bottom:726.480000px;}
.y61_c01162{bottom:727.920000px;}
.y24_c01162{bottom:765.360000px;}
.y25_c01162{bottom:766.800000px;}
.y23_c01162{bottom:767.520000px;}
.y26_c01162{bottom:768.960000px;}
.y27_c01162{bottom:769.680000px;}
.y28_c01162{bottom:770.400000px;}
.y1e_c01162{bottom:807.840000px;}
.y1f_c01162{bottom:808.560000px;}
.y1d_c01162{bottom:810.000000px;}
.y21_c01162{bottom:812.160000px;}
.y20_c01162{bottom:812.880000px;}
.y22_c01162{bottom:813.600000px;}
.y18_c01162{bottom:850.320000px;}
.y17_c01162{bottom:851.040000px;}
.y19_c01162{bottom:852.480000px;}
.y1b_c01162{bottom:854.640000px;}
.y1a_c01162{bottom:855.360000px;}
.y1c_c01162{bottom:856.080000px;}
.y13_c01162{bottom:892.800000px;}
.y12_c01162{bottom:894.960000px;}
.y14_c01162{bottom:897.840000px;}
.y16_c01162{bottom:898.560000px;}
.y15_c01162{bottom:900.000000px;}
.y8_c01162{bottom:936.000000px;}
.y7_c01162{bottom:938.160000px;}
.yf_c01162{bottom:939.600000px;}
.y10_c01162{bottom:941.040000px;}
.y11_c01162{bottom:942.480000px;}
.y5_c01162{bottom:978.480000px;}
.y4_c01162{bottom:980.640000px;}
.y6_c01162{bottom:982.800000px;}
.yc_c01162{bottom:984.240000px;}
.yd_c01162{bottom:985.680000px;}
.ye_c01162{bottom:987.120000px;}
.y2_c01162{bottom:1022.400000px;}
.y1_c01162{bottom:1023.840000px;}
.y3_c01162{bottom:1025.280000px;}
.ya_c01162{bottom:1028.160000px;}
.yb_c01162{bottom:1030.320000px;}
.y9_c01162{bottom:1100.160000px;}
.he_c01162{height:33.692344px;}
.hd_c01162{height:41.467500px;}
.hb_c01162{height:44.059219px;}
.h8_c01162{height:46.650937px;}
.h5_c01162{height:49.242656px;}
.ha_c01162{height:51.834375px;}
.h7_c01162{height:54.426094px;}
.hf_c01162{height:55.002656px;}
.h2_c01162{height:57.017812px;}
.hc_c01162{height:59.609531px;}
.h4_c01162{height:62.201250px;}
.h9_c01162{height:64.792969px;}
.h3_c01162{height:67.384687px;}
.h6_c01162{height:69.976406px;}
.h1_c01162{height:1146.750000px;}
.h0_c01162{height:1146.960000px;}
.w0_c01162{width:777.600000px;}
.w1_c01162{width:777.750000px;}
.x0_c01162{left:0.000000px;}
.x1_c01162{left:60.480000px;}
.x18_c01162{left:61.920000px;}
.x2_c01162{left:143.280000px;}
.x1a_c01162{left:144.720000px;}
.x5_c01162{left:229.680000px;}
.x19_c01162{left:231.120000px;}
.x3_c01162{left:272.160000px;}
.x16_c01162{left:283.680000px;}
.x1b_c01162{left:285.120000px;}
.x12_c01162{left:316.080000px;}
.x14_c01162{left:326.160000px;}
.x10_c01162{left:358.560000px;}
.x13_c01162{left:370.080000px;}
.x15_c01162{left:391.680000px;}
.x4_c01162{left:401.760000px;}
.x17_c01162{left:412.560000px;}
.xc_c01162{left:422.640000px;}
.x1c_c01162{left:456.480000px;}
.xd_c01162{left:477.360000px;}
.x7_c01162{left:544.320000px;}
.x8_c01162{left:564.480000px;}
.xb_c01162{left:565.920000px;}
.x9_c01162{left:586.800000px;}
.xe_c01162{left:598.320000px;}
.x1d_c01162{left:619.920000px;}
.xf_c01162{left:653.760000px;}
.x6_c01162{left:660.960000px;}
.x1f_c01162{left:685.440000px;}
.xa_c01162{left:696.240000px;}
.x11_c01162{left:697.680000px;}
.x1e_c01162{left:717.840000px;}
@media print{
.v0_c01162{vertical-align:0.000000pt;}
.v1_c01162{vertical-align:5.120000pt;}
.ls1_c01162{letter-spacing:0.000000pt;}
.ls0_c01162{letter-spacing:38.081493pt;}
.ws2_c01162{word-spacing:0.000000pt;}
.ws0_c01162{word-spacing:9.721823pt;}
.ws1_c01162{word-spacing:18.445018pt;}
.fsc_c01162{font-size:33.280000pt;}
.fsb_c01162{font-size:40.960000pt;}
.fs9_c01162{font-size:43.520000pt;}
.fs6_c01162{font-size:46.080000pt;}
.fs3_c01162{font-size:48.640000pt;}
.fs8_c01162{font-size:51.200000pt;}
.fs5_c01162{font-size:53.760000pt;}
.fs0_c01162{font-size:56.320000pt;}
.fsa_c01162{font-size:58.880000pt;}
.fs2_c01162{font-size:61.440000pt;}
.fs7_c01162{font-size:64.000000pt;}
.fs1_c01162{font-size:66.560000pt;}
.fs4_c01162{font-size:69.120000pt;}
.y0_c01162{bottom:0.000000pt;}
.y7f_c01162{bottom:70.400000pt;}
.y7e_c01162{bottom:71.040000pt;}
.y5f_c01162{bottom:71.680000pt;}
.y5e_c01162{bottom:72.960000pt;}
.y5d_c01162{bottom:73.600000pt;}
.y5c_c01162{bottom:77.440000pt;}
.y7d_c01162{bottom:108.800000pt;}
.y5b_c01162{bottom:109.440000pt;}
.y58_c01162{bottom:110.720000pt;}
.y7c_c01162{bottom:111.360000pt;}
.y5a_c01162{bottom:112.640000pt;}
.y59_c01162{bottom:113.280000pt;}
.y57_c01162{bottom:115.200000pt;}
.y7b_c01162{bottom:147.200000pt;}
.y56_c01162{bottom:148.480000pt;}
.y55_c01162{bottom:149.120000pt;}
.y54_c01162{bottom:151.680000pt;}
.y79_c01162{bottom:184.320000pt;}
.y7a_c01162{bottom:184.960000pt;}
.y53_c01162{bottom:185.600000pt;}
.y51_c01162{bottom:186.240000pt;}
.y78_c01162{bottom:188.160000pt;}
.y52_c01162{bottom:189.440000pt;}
.y50_c01162{bottom:190.720000pt;}
.y77_c01162{bottom:223.360000pt;}
.y4f_c01162{bottom:224.000000pt;}
.y4e_c01162{bottom:224.640000pt;}
.y4d_c01162{bottom:227.200000pt;}
.y76_c01162{bottom:259.840000pt;}
.y4c_c01162{bottom:261.760000pt;}
.y4b_c01162{bottom:262.400000pt;}
.y75_c01162{bottom:263.040000pt;}
.y4a_c01162{bottom:266.240000pt;}
.y49_c01162{bottom:298.880000pt;}
.y73_c01162{bottom:299.520000pt;}
.y74_c01162{bottom:300.160000pt;}
.y48_c01162{bottom:300.800000pt;}
.y71_c01162{bottom:301.440000pt;}
.y72_c01162{bottom:302.080000pt;}
.y47_c01162{bottom:302.720000pt;}
.y46_c01162{bottom:337.920000pt;}
.y45_c01162{bottom:338.560000pt;}
.y70_c01162{bottom:339.200000pt;}
.y44_c01162{bottom:340.480000pt;}
.y43_c01162{bottom:375.040000pt;}
.y40_c01162{bottom:376.320000pt;}
.y42_c01162{bottom:376.960000pt;}
.y6f_c01162{bottom:377.600000pt;}
.y3f_c01162{bottom:378.240000pt;}
.y41_c01162{bottom:379.520000pt;}
.y3d_c01162{bottom:414.080000pt;}
.y3e_c01162{bottom:414.720000pt;}
.y6d_c01162{bottom:415.360000pt;}
.y6e_c01162{bottom:416.000000pt;}
.y3c_c01162{bottom:417.920000pt;}
.y3b_c01162{bottom:452.480000pt;}
.y6c_c01162{bottom:453.120000pt;}
.y6b_c01162{bottom:453.760000pt;}
.y6a_c01162{bottom:454.400000pt;}
.y3a_c01162{bottom:455.680000pt;}
.y38_c01162{bottom:490.240000pt;}
.y39_c01162{bottom:491.520000pt;}
.y69_c01162{bottom:492.160000pt;}
.y68_c01162{bottom:492.800000pt;}
.y37_c01162{bottom:493.440000pt;}
.y35_c01162{bottom:529.280000pt;}
.y36_c01162{bottom:529.920000pt;}
.y34_c01162{bottom:530.560000pt;}
.y66_c01162{bottom:531.200000pt;}
.y67_c01162{bottom:532.480000pt;}
.y31_c01162{bottom:566.400000pt;}
.y33_c01162{bottom:567.680000pt;}
.y65_c01162{bottom:568.320000pt;}
.y30_c01162{bottom:568.960000pt;}
.y64_c01162{bottom:569.600000pt;}
.y32_c01162{bottom:570.240000pt;}
.y2e_c01162{bottom:604.800000pt;}
.y2f_c01162{bottom:606.080000pt;}
.y2d_c01162{bottom:606.720000pt;}
.y62_c01162{bottom:607.360000pt;}
.y63_c01162{bottom:608.000000pt;}
.y2a_c01162{bottom:641.920000pt;}
.y2c_c01162{bottom:643.840000pt;}
.y29_c01162{bottom:644.480000pt;}
.y60_c01162{bottom:645.120000pt;}
.y2b_c01162{bottom:645.760000pt;}
.y61_c01162{bottom:647.040000pt;}
.y24_c01162{bottom:680.320000pt;}
.y25_c01162{bottom:681.600000pt;}
.y23_c01162{bottom:682.240000pt;}
.y26_c01162{bottom:683.520000pt;}
.y27_c01162{bottom:684.160000pt;}
.y28_c01162{bottom:684.800000pt;}
.y1e_c01162{bottom:718.080000pt;}
.y1f_c01162{bottom:718.720000pt;}
.y1d_c01162{bottom:720.000000pt;}
.y21_c01162{bottom:721.920000pt;}
.y20_c01162{bottom:722.560000pt;}
.y22_c01162{bottom:723.200000pt;}
.y18_c01162{bottom:755.840000pt;}
.y17_c01162{bottom:756.480000pt;}
.y19_c01162{bottom:757.760000pt;}
.y1b_c01162{bottom:759.680000pt;}
.y1a_c01162{bottom:760.320000pt;}
.y1c_c01162{bottom:760.960000pt;}
.y13_c01162{bottom:793.600000pt;}
.y12_c01162{bottom:795.520000pt;}
.y14_c01162{bottom:798.080000pt;}
.y16_c01162{bottom:798.720000pt;}
.y15_c01162{bottom:800.000000pt;}
.y8_c01162{bottom:832.000000pt;}
.y7_c01162{bottom:833.920000pt;}
.yf_c01162{bottom:835.200000pt;}
.y10_c01162{bottom:836.480000pt;}
.y11_c01162{bottom:837.760000pt;}
.y5_c01162{bottom:869.760000pt;}
.y4_c01162{bottom:871.680000pt;}
.y6_c01162{bottom:873.600000pt;}
.yc_c01162{bottom:874.880000pt;}
.yd_c01162{bottom:876.160000pt;}
.ye_c01162{bottom:877.440000pt;}
.y2_c01162{bottom:908.800000pt;}
.y1_c01162{bottom:910.080000pt;}
.y3_c01162{bottom:911.360000pt;}
.ya_c01162{bottom:913.920000pt;}
.yb_c01162{bottom:915.840000pt;}
.y9_c01162{bottom:977.920000pt;}
.he_c01162{height:29.948750pt;}
.hd_c01162{height:36.860000pt;}
.hb_c01162{height:39.163750pt;}
.h8_c01162{height:41.467500pt;}
.h5_c01162{height:43.771250pt;}
.ha_c01162{height:46.075000pt;}
.h7_c01162{height:48.378750pt;}
.hf_c01162{height:48.891250pt;}
.h2_c01162{height:50.682500pt;}
.hc_c01162{height:52.986250pt;}
.h4_c01162{height:55.290000pt;}
.h9_c01162{height:57.593750pt;}
.h3_c01162{height:59.897500pt;}
.h6_c01162{height:62.201250pt;}
.h1_c01162{height:1019.333333pt;}
.h0_c01162{height:1019.520000pt;}
.w0_c01162{width:691.200000pt;}
.w1_c01162{width:691.333333pt;}
.x0_c01162{left:0.000000pt;}
.x1_c01162{left:53.760000pt;}
.x18_c01162{left:55.040000pt;}
.x2_c01162{left:127.360000pt;}
.x1a_c01162{left:128.640000pt;}
.x5_c01162{left:204.160000pt;}
.x19_c01162{left:205.440000pt;}
.x3_c01162{left:241.920000pt;}
.x16_c01162{left:252.160000pt;}
.x1b_c01162{left:253.440000pt;}
.x12_c01162{left:280.960000pt;}
.x14_c01162{left:289.920000pt;}
.x10_c01162{left:318.720000pt;}
.x13_c01162{left:328.960000pt;}
.x15_c01162{left:348.160000pt;}
.x4_c01162{left:357.120000pt;}
.x17_c01162{left:366.720000pt;}
.xc_c01162{left:375.680000pt;}
.x1c_c01162{left:405.760000pt;}
.xd_c01162{left:424.320000pt;}
.x7_c01162{left:483.840000pt;}
.x8_c01162{left:501.760000pt;}
.xb_c01162{left:503.040000pt;}
.x9_c01162{left:521.600000pt;}
.xe_c01162{left:531.840000pt;}
.x1d_c01162{left:551.040000pt;}
.xf_c01162{left:581.120000pt;}
.x6_c01162{left:587.520000pt;}
.x1f_c01162{left:609.280000pt;}
.xa_c01162{left:618.880000pt;}
.x11_c01162{left:620.160000pt;}
.x1e_c01162{left:638.080000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_38e1b2f414054990ddd7e3c4.woff2')format("woff");}.ff1_c01163{font-family:ff1_c01163;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3b_c01163{transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);}
.m56_c01163{transform:matrix(0.185200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185200,0.000000,0.000000,0.250000,0,0);}
.m42_c01163{transform:matrix(0.204275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204275,0.000000,0.000000,0.250000,0,0);}
.m33_c01163{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m65_c01163{transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);}
.m2e_c01163{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m35_c01163{transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);}
.m58_c01163{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m34_c01163{transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);}
.m41_c01163{transform:matrix(0.219075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219075,0.000000,0.000000,0.250000,0,0);}
.m31_c01163{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);}
.m39_c01163{transform:matrix(0.227425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227425,0.000000,0.000000,0.250000,0,0);}
.m2b_c01163{transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);}
.m5a_c01163{transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);}
.m54_c01163{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m4b_c01163{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m52_c01163{transform:matrix(0.239025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239025,0.000000,0.000000,0.250000,0,0);}
.m3_c01163{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);}
.m44_c01163{transform:matrix(0.240850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240850,0.000000,0.000000,0.250000,0,0);}
.m3e_c01163{transform:matrix(0.243050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243050,0.000000,0.000000,0.250000,0,0);}
.m49_c01163{transform:matrix(0.243125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243125,0.000000,0.000000,0.250000,0,0);}
.mf_c01163{transform:matrix(0.243350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243350,0.000000,0.000000,0.250000,0,0);}
.m3a_c01163{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m47_c01163{transform:matrix(0.245325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245325,0.000000,0.000000,0.250000,0,0);}
.m13_c01163{transform:matrix(0.245375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245375,0.000000,0.000000,0.250000,0,0);}
.m4f_c01163{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m55_c01163{transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);}
.m20_c01163{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);}
.m32_c01163{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m48_c01163{transform:matrix(0.248375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248375,0.000000,0.000000,0.250000,0,0);}
.m5_c01163{transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);}
.m4d_c01163{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01163{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);}
.m2d_c01163{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m7_c01163{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m2_c01163{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);}
.m2c_c01163{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m19_c01163{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_c01163{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m30_c01163{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);}
.m60_c01163{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);}
.m28_c01163{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m16_c01163{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01163{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);}
.m25_c01163{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);}
.m45_c01163{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);}
.m38_c01163{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m6_c01163{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m9_c01163{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m26_c01163{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m29_c01163{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m14_c01163{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01163{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m5f_c01163{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m5d_c01163{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m8_c01163{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m5b_c01163{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01163{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mb_c01163{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01163{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m43_c01163{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m63_c01163{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);}
.m61_c01163{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m36_c01163{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m4_c01163{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m0_c01163{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1_c01163{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m18_c01163{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m24_c01163{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_c01163{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m12_c01163{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);}
.m22_c01163{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m15_c01163{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);}
.ma_c01163{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m11_c01163{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01163{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);}
.m3d_c01163{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);}
.m4c_c01163{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m4e_c01163{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01163{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m10_c01163{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m40_c01163{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);}
.m5e_c01163{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.me_c01163{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);}
.md_c01163{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01163{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_c01163{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m53_c01163{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m4a_c01163{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m21_c01163{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);}
.m2f_c01163{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m46_c01163{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m37_c01163{transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);}
.m51_c01163{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);}
.m59_c01163{transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);}
.m57_c01163{transform:matrix(0.697500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697500,0.000000,0.000000,0.250000,0,0);}
.m5c_c01163{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.m50_c01163{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);}
.m68_c01163{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m66_c01163{transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);}
.m64_c01163{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m23_c01163{transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);}
.m67_c01163{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m62_c01163{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.m27_c01163{transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);}
.v1_c01163{vertical-align:-2.880000px;}
.v0_c01163{vertical-align:0.000000px;}
.ls2_c01163{letter-spacing:0.000000px;}
.ls0_c01163{letter-spacing:50.259120px;}
.ls1_c01163{letter-spacing:55.423680px;}
.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;}
}
.ws1_c01163{word-spacing:0.000000px;}
.ws0_c01163{word-spacing:1.339200px;}
.fc0_c01163{color:transparent;}
.fs11_c01163{font-size:25.920000px;}
.fsd_c01163{font-size:31.680000px;}
.fs9_c01163{font-size:34.560000px;}
.fs10_c01163{font-size:37.440000px;}
.fs7_c01163{font-size:40.320000px;}
.fsb_c01163{font-size:43.200000px;}
.fsc_c01163{font-size:48.960000px;}
.fs5_c01163{font-size:51.840000px;}
.fs6_c01163{font-size:54.720000px;}
.fs1_c01163{font-size:57.600000px;}
.fs4_c01163{font-size:60.480000px;}
.fse_c01163{font-size:63.360000px;}
.fsf_c01163{font-size:66.240000px;}
.fs8_c01163{font-size:69.120000px;}
.fs3_c01163{font-size:72.000000px;}
.fs0_c01163{font-size:74.880000px;}
.fs2_c01163{font-size:77.760000px;}
.fsa_c01163{font-size:80.640000px;}
.y0_c01163{bottom:0.000000px;}
.y9f_c01163{bottom:18.720000px;}
.y9e_c01163{bottom:21.600000px;}
.y7d_c01163{bottom:22.320000px;}
.y7b_c01163{bottom:23.760000px;}
.y7c_c01163{bottom:24.480000px;}
.y9d_c01163{bottom:61.200000px;}
.y9c_c01163{bottom:61.920000px;}
.y7a_c01163{bottom:62.640000px;}
.y75_c01163{bottom:63.360000px;}
.y79_c01163{bottom:64.080000px;}
.y74_c01163{bottom:65.520000px;}
.y73_c01163{bottom:69.840000px;}
.y72_c01163{bottom:105.120000px;}
.y78_c01163{bottom:105.840000px;}
.y77_c01163{bottom:106.560000px;}
.y9b_c01163{bottom:107.280000px;}
.y6f_c01163{bottom:108.000000px;}
.y70_c01163{bottom:109.440000px;}
.y71_c01163{bottom:110.160000px;}
.y6e_c01163{bottom:112.320000px;}
.y9a_c01163{bottom:147.600000px;}
.y99_c01163{bottom:148.320000px;}
.y6d_c01163{bottom:149.040000px;}
.y76_c01163{bottom:149.760000px;}
.y6a_c01163{bottom:151.200000px;}
.y6c_c01163{bottom:152.640000px;}
.y6b_c01163{bottom:153.360000px;}
.y69_c01163{bottom:154.800000px;}
.y68_c01163{bottom:191.520000px;}
.y98_c01163{bottom:192.240000px;}
.y67_c01163{bottom:192.960000px;}
.y65_c01163{bottom:193.680000px;}
.y66_c01163{bottom:196.560000px;}
.y64_c01163{bottom:197.280000px;}
.y97_c01163{bottom:234.000000px;}
.y62_c01163{bottom:234.720000px;}
.y63_c01163{bottom:235.440000px;}
.y61_c01163{bottom:236.160000px;}
.y60_c01163{bottom:239.760000px;}
.y5f_c01163{bottom:277.200000px;}
.y95_c01163{bottom:277.920000px;}
.y96_c01163{bottom:278.640000px;}
.y5e_c01163{bottom:279.360000px;}
.y5c_c01163{bottom:282.960000px;}
.y5d_c01163{bottom:283.680000px;}
.y5b_c01163{bottom:320.400000px;}
.y92_c01163{bottom:321.120000px;}
.y59_c01163{bottom:321.840000px;}
.y93_c01163{bottom:322.560000px;}
.y94_c01163{bottom:323.280000px;}
.y5a_c01163{bottom:324.720000px;}
.y58_c01163{bottom:325.440000px;}
.y90_c01163{bottom:362.880000px;}
.y56_c01163{bottom:363.600000px;}
.y55_c01163{bottom:364.320000px;}
.y57_c01163{bottom:365.040000px;}
.y91_c01163{bottom:365.760000px;}
.y54_c01163{bottom:367.920000px;}
.y51_c01163{bottom:406.080000px;}
.y52_c01163{bottom:406.800000px;}
.y8f_c01163{bottom:408.240000px;}
.y53_c01163{bottom:408.960000px;}
.y8e_c01163{bottom:409.680000px;}
.y50_c01163{bottom:410.400000px;}
.y4e_c01163{bottom:448.560000px;}
.y4b_c01163{bottom:449.280000px;}
.y4f_c01163{bottom:450.000000px;}
.y4d_c01163{bottom:450.720000px;}
.y4c_c01163{bottom:452.160000px;}
.y4a_c01163{bottom:453.600000px;}
.y48_c01163{bottom:491.040000px;}
.y45_c01163{bottom:491.760000px;}
.y47_c01163{bottom:492.480000px;}
.y49_c01163{bottom:493.200000px;}
.y44_c01163{bottom:493.920000px;}
.y46_c01163{bottom:495.360000px;}
.y40_c01163{bottom:534.240000px;}
.y42_c01163{bottom:535.680000px;}
.y3f_c01163{bottom:536.400000px;}
.y43_c01163{bottom:537.120000px;}
.y41_c01163{bottom:537.840000px;}
.y3b_c01163{bottom:576.720000px;}
.y3a_c01163{bottom:578.160000px;}
.y8d_c01163{bottom:578.880000px;}
.y37_c01163{bottom:619.200000px;}
.y39_c01163{bottom:619.920000px;}
.y3e_c01163{bottom:620.640000px;}
.y3d_c01163{bottom:621.360000px;}
.y38_c01163{bottom:622.080000px;}
.y36_c01163{bottom:622.800000px;}
.y8c_c01163{bottom:623.520000px;}
.y34_c01163{bottom:661.680000px;}
.y35_c01163{bottom:662.400000px;}
.y8b_c01163{bottom:663.120000px;}
.y89_c01163{bottom:663.840000px;}
.y33_c01163{bottom:664.560000px;}
.y3c_c01163{bottom:666.000000px;}
.y8a_c01163{bottom:666.720000px;}
.y2f_c01163{bottom:704.160000px;}
.y32_c01163{bottom:706.320000px;}
.y30_c01163{bottom:707.760000px;}
.y2e_c01163{bottom:708.480000px;}
.y31_c01163{bottom:709.200000px;}
.y2c_c01163{bottom:747.360000px;}
.y2d_c01163{bottom:748.800000px;}
.y2a_c01163{bottom:749.520000px;}
.y2b_c01163{bottom:750.240000px;}
.y88_c01163{bottom:750.960000px;}
.y28_c01163{bottom:789.120000px;}
.y29_c01163{bottom:791.280000px;}
.y27_c01163{bottom:792.720000px;}
.y26_c01163{bottom:793.440000px;}
.y87_c01163{bottom:794.160000px;}
.y86_c01163{bottom:794.880000px;}
.y20_c01163{bottom:832.320000px;}
.y22_c01163{bottom:833.040000px;}
.y1e_c01163{bottom:833.760000px;}
.y24_c01163{bottom:834.480000px;}
.y1f_c01163{bottom:835.200000px;}
.y21_c01163{bottom:835.920000px;}
.y25_c01163{bottom:836.640000px;}
.y85_c01163{bottom:837.360000px;}
.y23_c01163{bottom:838.080000px;}
.y84_c01163{bottom:838.800000px;}
.y19_c01163{bottom:875.520000px;}
.y1a_c01163{bottom:876.960000px;}
.y18_c01163{bottom:877.680000px;}
.y1d_c01163{bottom:879.120000px;}
.y1c_c01163{bottom:879.840000px;}
.y1b_c01163{bottom:880.560000px;}
.y82_c01163{bottom:881.280000px;}
.y83_c01163{bottom:882.720000px;}
.y13_c01163{bottom:917.280000px;}
.y16_c01163{bottom:919.440000px;}
.y12_c01163{bottom:920.160000px;}
.y14_c01163{bottom:920.880000px;}
.y17_c01163{bottom:922.320000px;}
.y15_c01163{bottom:923.040000px;}
.y81_c01163{bottom:925.200000px;}
.ye_c01163{bottom:960.480000px;}
.yd_c01163{bottom:961.920000px;}
.y10_c01163{bottom:963.360000px;}
.yf_c01163{bottom:964.800000px;}
.y7e_c01163{bottom:965.520000px;}
.y7f_c01163{bottom:966.240000px;}
.y11_c01163{bottom:966.960000px;}
.y80_c01163{bottom:967.680000px;}
.y6_c01163{bottom:1002.240000px;}
.y5_c01163{bottom:1003.680000px;}
.y7_c01163{bottom:1004.400000px;}
.ya_c01163{bottom:1007.280000px;}
.yb_c01163{bottom:1008.000000px;}
.yc_c01163{bottom:1010.160000px;}
.y3_c01163{bottom:1045.440000px;}
.y2_c01163{bottom:1046.880000px;}
.y4_c01163{bottom:1047.600000px;}
.y8_c01163{bottom:1051.200000px;}
.y9_c01163{bottom:1052.640000px;}
.y1_c01163{bottom:1122.480000px;}
.h12_c01163{height:23.325469px;}
.hf_c01163{height:28.508906px;}
.hb_c01163{height:31.100625px;}
.h9_c01163{height:36.284062px;}
.hd_c01163{height:38.875781px;}
.he_c01163{height:44.059219px;}
.h7_c01163{height:46.650937px;}
.h8_c01163{height:49.242656px;}
.h3_c01163{height:51.834375px;}
.h6_c01163{height:54.426094px;}
.h10_c01163{height:57.017812px;}
.h11_c01163{height:59.609531px;}
.ha_c01163{height:62.201250px;}
.h5_c01163{height:64.792969px;}
.h2_c01163{height:67.384687px;}
.h4_c01163{height:69.976406px;}
.hc_c01163{height:72.568125px;}
.h1_c01163{height:1161.750000px;}
.h0_c01163{height:1162.080000px;}
.w0_c01163{width:778.320000px;}
.w1_c01163{width:778.500000px;}
.x0_c01163{left:0.000000px;}
.x2_c01163{left:63.360000px;}
.x21_c01163{left:64.800000px;}
.x15_c01163{left:115.200000px;}
.x18_c01163{left:116.640000px;}
.x3_c01163{left:144.720000px;}
.x5_c01163{left:146.160000px;}
.xb_c01163{left:231.120000px;}
.x4_c01163{left:232.560000px;}
.x20_c01163{left:242.640000px;}
.x22_c01163{left:254.160000px;}
.x25_c01163{left:264.240000px;}
.x6_c01163{left:274.320000px;}
.xc_c01163{left:285.840000px;}
.x19_c01163{left:306.720000px;}
.x23_c01163{left:308.160000px;}
.x1c_c01163{left:319.680000px;}
.xd_c01163{left:328.320000px;}
.x1b_c01163{left:329.760000px;}
.x26_c01163{left:351.360000px;}
.x12_c01163{left:360.720000px;}
.x1a_c01163{left:371.520000px;}
.x10_c01163{left:382.320000px;}
.x1e_c01163{left:393.120000px;}
.x1d_c01163{left:404.640000px;}
.x13_c01163{left:414.000000px;}
.x1f_c01163{left:415.440000px;}
.x16_c01163{left:447.120000px;}
.x28_c01163{left:449.280000px;}
.x14_c01163{left:457.920000px;}
.xe_c01163{left:468.720000px;}
.x24_c01163{left:470.160000px;}
.x17_c01163{left:501.840000px;}
.xf_c01163{left:506.880000px;}
.x7_c01163{left:546.480000px;}
.x27_c01163{left:547.920000px;}
.xa_c01163{left:566.640000px;}
.x11_c01163{left:568.080000px;}
.x8_c01163{left:588.960000px;}
.x29_c01163{left:622.800000px;}
.x2f_c01163{left:624.240000px;}
.x2a_c01163{left:655.920000px;}
.x1_c01163{left:666.000000px;}
.x2d_c01163{left:689.040000px;}
.x9_c01163{left:697.680000px;}
.x2b_c01163{left:699.840000px;}
.x2c_c01163{left:720.000000px;}
.x2e_c01163{left:721.440000px;}
@media print{
.v1_c01163{vertical-align:-2.560000pt;}
.v0_c01163{vertical-align:0.000000pt;}
.ls2_c01163{letter-spacing:0.000000pt;}
.ls0_c01163{letter-spacing:44.674773pt;}
.ls1_c01163{letter-spacing:49.265493pt;}
.ws1_c01163{word-spacing:0.000000pt;}
.ws0_c01163{word-spacing:1.190400pt;}
.fs11_c01163{font-size:23.040000pt;}
.fsd_c01163{font-size:28.160000pt;}
.fs9_c01163{font-size:30.720000pt;}
.fs10_c01163{font-size:33.280000pt;}
.fs7_c01163{font-size:35.840000pt;}
.fsb_c01163{font-size:38.400000pt;}
.fsc_c01163{font-size:43.520000pt;}
.fs5_c01163{font-size:46.080000pt;}
.fs6_c01163{font-size:48.640000pt;}
.fs1_c01163{font-size:51.200000pt;}
.fs4_c01163{font-size:53.760000pt;}
.fse_c01163{font-size:56.320000pt;}
.fsf_c01163{font-size:58.880000pt;}
.fs8_c01163{font-size:61.440000pt;}
.fs3_c01163{font-size:64.000000pt;}
.fs0_c01163{font-size:66.560000pt;}
.fs2_c01163{font-size:69.120000pt;}
.fsa_c01163{font-size:71.680000pt;}
.y0_c01163{bottom:0.000000pt;}
.y9f_c01163{bottom:16.640000pt;}
.y9e_c01163{bottom:19.200000pt;}
.y7d_c01163{bottom:19.840000pt;}
.y7b_c01163{bottom:21.120000pt;}
.y7c_c01163{bottom:21.760000pt;}
.y9d_c01163{bottom:54.400000pt;}
.y9c_c01163{bottom:55.040000pt;}
.y7a_c01163{bottom:55.680000pt;}
.y75_c01163{bottom:56.320000pt;}
.y79_c01163{bottom:56.960000pt;}
.y74_c01163{bottom:58.240000pt;}
.y73_c01163{bottom:62.080000pt;}
.y72_c01163{bottom:93.440000pt;}
.y78_c01163{bottom:94.080000pt;}
.y77_c01163{bottom:94.720000pt;}
.y9b_c01163{bottom:95.360000pt;}
.y6f_c01163{bottom:96.000000pt;}
.y70_c01163{bottom:97.280000pt;}
.y71_c01163{bottom:97.920000pt;}
.y6e_c01163{bottom:99.840000pt;}
.y9a_c01163{bottom:131.200000pt;}
.y99_c01163{bottom:131.840000pt;}
.y6d_c01163{bottom:132.480000pt;}
.y76_c01163{bottom:133.120000pt;}
.y6a_c01163{bottom:134.400000pt;}
.y6c_c01163{bottom:135.680000pt;}
.y6b_c01163{bottom:136.320000pt;}
.y69_c01163{bottom:137.600000pt;}
.y68_c01163{bottom:170.240000pt;}
.y98_c01163{bottom:170.880000pt;}
.y67_c01163{bottom:171.520000pt;}
.y65_c01163{bottom:172.160000pt;}
.y66_c01163{bottom:174.720000pt;}
.y64_c01163{bottom:175.360000pt;}
.y97_c01163{bottom:208.000000pt;}
.y62_c01163{bottom:208.640000pt;}
.y63_c01163{bottom:209.280000pt;}
.y61_c01163{bottom:209.920000pt;}
.y60_c01163{bottom:213.120000pt;}
.y5f_c01163{bottom:246.400000pt;}
.y95_c01163{bottom:247.040000pt;}
.y96_c01163{bottom:247.680000pt;}
.y5e_c01163{bottom:248.320000pt;}
.y5c_c01163{bottom:251.520000pt;}
.y5d_c01163{bottom:252.160000pt;}
.y5b_c01163{bottom:284.800000pt;}
.y92_c01163{bottom:285.440000pt;}
.y59_c01163{bottom:286.080000pt;}
.y93_c01163{bottom:286.720000pt;}
.y94_c01163{bottom:287.360000pt;}
.y5a_c01163{bottom:288.640000pt;}
.y58_c01163{bottom:289.280000pt;}
.y90_c01163{bottom:322.560000pt;}
.y56_c01163{bottom:323.200000pt;}
.y55_c01163{bottom:323.840000pt;}
.y57_c01163{bottom:324.480000pt;}
.y91_c01163{bottom:325.120000pt;}
.y54_c01163{bottom:327.040000pt;}
.y51_c01163{bottom:360.960000pt;}
.y52_c01163{bottom:361.600000pt;}
.y8f_c01163{bottom:362.880000pt;}
.y53_c01163{bottom:363.520000pt;}
.y8e_c01163{bottom:364.160000pt;}
.y50_c01163{bottom:364.800000pt;}
.y4e_c01163{bottom:398.720000pt;}
.y4b_c01163{bottom:399.360000pt;}
.y4f_c01163{bottom:400.000000pt;}
.y4d_c01163{bottom:400.640000pt;}
.y4c_c01163{bottom:401.920000pt;}
.y4a_c01163{bottom:403.200000pt;}
.y48_c01163{bottom:436.480000pt;}
.y45_c01163{bottom:437.120000pt;}
.y47_c01163{bottom:437.760000pt;}
.y49_c01163{bottom:438.400000pt;}
.y44_c01163{bottom:439.040000pt;}
.y46_c01163{bottom:440.320000pt;}
.y40_c01163{bottom:474.880000pt;}
.y42_c01163{bottom:476.160000pt;}
.y3f_c01163{bottom:476.800000pt;}
.y43_c01163{bottom:477.440000pt;}
.y41_c01163{bottom:478.080000pt;}
.y3b_c01163{bottom:512.640000pt;}
.y3a_c01163{bottom:513.920000pt;}
.y8d_c01163{bottom:514.560000pt;}
.y37_c01163{bottom:550.400000pt;}
.y39_c01163{bottom:551.040000pt;}
.y3e_c01163{bottom:551.680000pt;}
.y3d_c01163{bottom:552.320000pt;}
.y38_c01163{bottom:552.960000pt;}
.y36_c01163{bottom:553.600000pt;}
.y8c_c01163{bottom:554.240000pt;}
.y34_c01163{bottom:588.160000pt;}
.y35_c01163{bottom:588.800000pt;}
.y8b_c01163{bottom:589.440000pt;}
.y89_c01163{bottom:590.080000pt;}
.y33_c01163{bottom:590.720000pt;}
.y3c_c01163{bottom:592.000000pt;}
.y8a_c01163{bottom:592.640000pt;}
.y2f_c01163{bottom:625.920000pt;}
.y32_c01163{bottom:627.840000pt;}
.y30_c01163{bottom:629.120000pt;}
.y2e_c01163{bottom:629.760000pt;}
.y31_c01163{bottom:630.400000pt;}
.y2c_c01163{bottom:664.320000pt;}
.y2d_c01163{bottom:665.600000pt;}
.y2a_c01163{bottom:666.240000pt;}
.y2b_c01163{bottom:666.880000pt;}
.y88_c01163{bottom:667.520000pt;}
.y28_c01163{bottom:701.440000pt;}
.y29_c01163{bottom:703.360000pt;}
.y27_c01163{bottom:704.640000pt;}
.y26_c01163{bottom:705.280000pt;}
.y87_c01163{bottom:705.920000pt;}
.y86_c01163{bottom:706.560000pt;}
.y20_c01163{bottom:739.840000pt;}
.y22_c01163{bottom:740.480000pt;}
.y1e_c01163{bottom:741.120000pt;}
.y24_c01163{bottom:741.760000pt;}
.y1f_c01163{bottom:742.400000pt;}
.y21_c01163{bottom:743.040000pt;}
.y25_c01163{bottom:743.680000pt;}
.y85_c01163{bottom:744.320000pt;}
.y23_c01163{bottom:744.960000pt;}
.y84_c01163{bottom:745.600000pt;}
.y19_c01163{bottom:778.240000pt;}
.y1a_c01163{bottom:779.520000pt;}
.y18_c01163{bottom:780.160000pt;}
.y1d_c01163{bottom:781.440000pt;}
.y1c_c01163{bottom:782.080000pt;}
.y1b_c01163{bottom:782.720000pt;}
.y82_c01163{bottom:783.360000pt;}
.y83_c01163{bottom:784.640000pt;}
.y13_c01163{bottom:815.360000pt;}
.y16_c01163{bottom:817.280000pt;}
.y12_c01163{bottom:817.920000pt;}
.y14_c01163{bottom:818.560000pt;}
.y17_c01163{bottom:819.840000pt;}
.y15_c01163{bottom:820.480000pt;}
.y81_c01163{bottom:822.400000pt;}
.ye_c01163{bottom:853.760000pt;}
.yd_c01163{bottom:855.040000pt;}
.y10_c01163{bottom:856.320000pt;}
.yf_c01163{bottom:857.600000pt;}
.y7e_c01163{bottom:858.240000pt;}
.y7f_c01163{bottom:858.880000pt;}
.y11_c01163{bottom:859.520000pt;}
.y80_c01163{bottom:860.160000pt;}
.y6_c01163{bottom:890.880000pt;}
.y5_c01163{bottom:892.160000pt;}
.y7_c01163{bottom:892.800000pt;}
.ya_c01163{bottom:895.360000pt;}
.yb_c01163{bottom:896.000000pt;}
.yc_c01163{bottom:897.920000pt;}
.y3_c01163{bottom:929.280000pt;}
.y2_c01163{bottom:930.560000pt;}
.y4_c01163{bottom:931.200000pt;}
.y8_c01163{bottom:934.400000pt;}
.y9_c01163{bottom:935.680000pt;}
.y1_c01163{bottom:997.760000pt;}
.h12_c01163{height:20.733750pt;}
.hf_c01163{height:25.341250pt;}
.hb_c01163{height:27.645000pt;}
.h9_c01163{height:32.252500pt;}
.hd_c01163{height:34.556250pt;}
.he_c01163{height:39.163750pt;}
.h7_c01163{height:41.467500pt;}
.h8_c01163{height:43.771250pt;}
.h3_c01163{height:46.075000pt;}
.h6_c01163{height:48.378750pt;}
.h10_c01163{height:50.682500pt;}
.h11_c01163{height:52.986250pt;}
.ha_c01163{height:55.290000pt;}
.h5_c01163{height:57.593750pt;}
.h2_c01163{height:59.897500pt;}
.h4_c01163{height:62.201250pt;}
.hc_c01163{height:64.505000pt;}
.h1_c01163{height:1032.666667pt;}
.h0_c01163{height:1032.960000pt;}
.w0_c01163{width:691.840000pt;}
.w1_c01163{width:692.000000pt;}
.x0_c01163{left:0.000000pt;}
.x2_c01163{left:56.320000pt;}
.x21_c01163{left:57.600000pt;}
.x15_c01163{left:102.400000pt;}
.x18_c01163{left:103.680000pt;}
.x3_c01163{left:128.640000pt;}
.x5_c01163{left:129.920000pt;}
.xb_c01163{left:205.440000pt;}
.x4_c01163{left:206.720000pt;}
.x20_c01163{left:215.680000pt;}
.x22_c01163{left:225.920000pt;}
.x25_c01163{left:234.880000pt;}
.x6_c01163{left:243.840000pt;}
.xc_c01163{left:254.080000pt;}
.x19_c01163{left:272.640000pt;}
.x23_c01163{left:273.920000pt;}
.x1c_c01163{left:284.160000pt;}
.xd_c01163{left:291.840000pt;}
.x1b_c01163{left:293.120000pt;}
.x26_c01163{left:312.320000pt;}
.x12_c01163{left:320.640000pt;}
.x1a_c01163{left:330.240000pt;}
.x10_c01163{left:339.840000pt;}
.x1e_c01163{left:349.440000pt;}
.x1d_c01163{left:359.680000pt;}
.x13_c01163{left:368.000000pt;}
.x1f_c01163{left:369.280000pt;}
.x16_c01163{left:397.440000pt;}
.x28_c01163{left:399.360000pt;}
.x14_c01163{left:407.040000pt;}
.xe_c01163{left:416.640000pt;}
.x24_c01163{left:417.920000pt;}
.x17_c01163{left:446.080000pt;}
.xf_c01163{left:450.560000pt;}
.x7_c01163{left:485.760000pt;}
.x27_c01163{left:487.040000pt;}
.xa_c01163{left:503.680000pt;}
.x11_c01163{left:504.960000pt;}
.x8_c01163{left:523.520000pt;}
.x29_c01163{left:553.600000pt;}
.x2f_c01163{left:554.880000pt;}
.x2a_c01163{left:583.040000pt;}
.x1_c01163{left:592.000000pt;}
.x2d_c01163{left:612.480000pt;}
.x9_c01163{left:620.160000pt;}
.x2b_c01163{left:622.080000pt;}
.x2c_c01163{left:640.000000pt;}
.x2e_c01163{left:641.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3a0abafae878d53280e8fffb.woff2')format("woff");}.ff1_c01164{font-family:ff1_c01164;line-height:1.109863;font-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_c01164{transform:matrix(0.213475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213475,0.000000,0.000000,0.250000,0,0);}
.m15_c01164{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01164{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);}
.m4f_c01164{transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);}
.m2d_c01164{transform:matrix(0.230325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230325,0.000000,0.000000,0.250000,0,0);}
.mb_c01164{transform:matrix(0.236900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236900,0.000000,0.000000,0.250000,0,0);}
.m50_c01164{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m21_c01164{transform:matrix(0.239175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239175,0.000000,0.000000,0.250000,0,0);}
.m34_c01164{transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);}
.m44_c01164{transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);}
.m1b_c01164{transform:matrix(0.244150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244150,0.000000,0.000000,0.250000,0,0);}
.m42_c01164{transform:matrix(0.246375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246375,0.000000,0.000000,0.250000,0,0);}
.m46_c01164{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01164{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m31_c01164{transform:matrix(0.248725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248725,0.000000,0.000000,0.250000,0,0);}
.m3a_c01164{transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);}
.m28_c01164{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m17_c01164{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01164{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);}
.m35_c01164{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m24_c01164{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);}
.m47_c01164{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.me_c01164{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.md_c01164{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_c01164{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m25_c01164{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_c01164{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m40_c01164{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m2_c01164{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m8_c01164{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01164{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m23_c01164{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01164{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m9_c01164{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m26_c01164{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01164{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01164{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m0_c01164{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m16_c01164{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m5_c01164{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m29_c01164{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01164{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m19_c01164{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m7_c01164{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m45_c01164{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);}
.m3f_c01164{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m33_c01164{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01164{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m10_c01164{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);}
.m41_c01164{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01164{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);}
.m38_c01164{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.mf_c01164{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1_c01164{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01164{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m18_c01164{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);}
.m1f_c01164{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m39_c01164{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);}
.m2c_c01164{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01164{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m11_c01164{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m37_c01164{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m51_c01164{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01164{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);}
.m4e_c01164{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m20_c01164{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01164{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);}
.m3_c01164{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m4_c01164{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);}
.m49_c01164{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m36_c01164{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m48_c01164{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01164{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m32_c01164{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m6_c01164{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m22_c01164{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m52_c01164{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);}
.m12_c01164{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.ma_c01164{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);}
.m43_c01164{transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01164{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01164{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m30_c01164{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.v2_c01164{vertical-align:-2.880000px;}
.v0_c01164{vertical-align:0.000000px;}
.v1_c01164{vertical-align:17.280000px;}
.ls1_c01164{letter-spacing:0.000000px;}
.ls0_c01164{letter-spacing:49.722960px;}
.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;}
}
.ws5_c01164{word-spacing:0.000000px;}
.ws0_c01164{word-spacing:11.693143px;}
.ws2_c01164{word-spacing:11.821200px;}
.ws3_c01164{word-spacing:15.989676px;}
.ws4_c01164{word-spacing:20.750645px;}
.ws1_c01164{word-spacing:466.688640px;}
.fc0_c01164{color:transparent;}
.fs8_c01164{font-size:34.560000px;}
.fs4_c01164{font-size:37.440000px;}
.fsd_c01164{font-size:40.320000px;}
.fse_c01164{font-size:46.080000px;}
.fs6_c01164{font-size:48.960000px;}
.fs3_c01164{font-size:51.840000px;}
.fs7_c01164{font-size:54.720000px;}
.fs1_c01164{font-size:57.600000px;}
.fs5_c01164{font-size:60.480000px;}
.fsb_c01164{font-size:63.360000px;}
.fs9_c01164{font-size:66.240000px;}
.fs0_c01164{font-size:69.120000px;}
.fs2_c01164{font-size:72.000000px;}
.fsa_c01164{font-size:74.880000px;}
.fsc_c01164{font-size:77.760000px;}
.fsf_c01164{font-size:95.040000px;}
.y0_c01164{bottom:0.000000px;}
.y8e_c01164{bottom:84.960000px;}
.y8b_c01164{bottom:85.680000px;}
.y8d_c01164{bottom:90.720000px;}
.y8a_c01164{bottom:91.440000px;}
.y8c_c01164{bottom:94.320000px;}
.y88_c01164{bottom:95.040000px;}
.y89_c01164{bottom:97.200000px;}
.y87_c01164{bottom:100.080000px;}
.y86_c01164{bottom:136.080000px;}
.y84_c01164{bottom:136.800000px;}
.y85_c01164{bottom:137.520000px;}
.y83_c01164{bottom:138.240000px;}
.y82_c01164{bottom:141.840000px;}
.y81_c01164{bottom:179.280000px;}
.y80_c01164{bottom:182.160000px;}
.y7f_c01164{bottom:183.600000px;}
.y7e_c01164{bottom:184.320000px;}
.y7c_c01164{bottom:210.240000px;}
.y7b_c01164{bottom:210.960000px;}
.y78_c01164{bottom:211.680000px;}
.y7d_c01164{bottom:212.400000px;}
.y79_c01164{bottom:213.120000px;}
.y7a_c01164{bottom:213.840000px;}
.y77_c01164{bottom:215.280000px;}
.y76_c01164{bottom:252.720000px;}
.y72_c01164{bottom:253.440000px;}
.y75_c01164{bottom:254.160000px;}
.y71_c01164{bottom:254.880000px;}
.y74_c01164{bottom:256.320000px;}
.y73_c01164{bottom:257.040000px;}
.y70_c01164{bottom:258.480000px;}
.y6e_c01164{bottom:295.920000px;}
.y6c_c01164{bottom:296.640000px;}
.y6b_c01164{bottom:297.360000px;}
.y6f_c01164{bottom:298.800000px;}
.y6d_c01164{bottom:299.520000px;}
.y6a_c01164{bottom:300.960000px;}
.y69_c01164{bottom:339.120000px;}
.y68_c01164{bottom:339.840000px;}
.y67_c01164{bottom:340.560000px;}
.y66_c01164{bottom:342.720000px;}
.y63_c01164{bottom:382.320000px;}
.y61_c01164{bottom:383.040000px;}
.y62_c01164{bottom:383.760000px;}
.y65_c01164{bottom:384.480000px;}
.y64_c01164{bottom:385.200000px;}
.y60_c01164{bottom:385.920000px;}
.y5c_c01164{bottom:425.520000px;}
.y5d_c01164{bottom:426.240000px;}
.y5e_c01164{bottom:426.960000px;}
.y5f_c01164{bottom:427.680000px;}
.y5b_c01164{bottom:428.400000px;}
.y59_c01164{bottom:468.000000px;}
.y57_c01164{bottom:468.720000px;}
.y58_c01164{bottom:469.440000px;}
.y5a_c01164{bottom:470.160000px;}
.y56_c01164{bottom:470.880000px;}
.y53_c01164{bottom:511.200000px;}
.y54_c01164{bottom:512.640000px;}
.y52_c01164{bottom:513.360000px;}
.y50_c01164{bottom:514.080000px;}
.y55_c01164{bottom:514.800000px;}
.y51_c01164{bottom:515.520000px;}
.y4a_c01164{bottom:554.400000px;}
.y4e_c01164{bottom:555.120000px;}
.y4c_c01164{bottom:555.840000px;}
.y4f_c01164{bottom:556.560000px;}
.y49_c01164{bottom:557.280000px;}
.y4d_c01164{bottom:558.000000px;}
.y4b_c01164{bottom:558.720000px;}
.y46_c01164{bottom:597.600000px;}
.y47_c01164{bottom:599.040000px;}
.y45_c01164{bottom:599.760000px;}
.y48_c01164{bottom:601.200000px;}
.y41_c01164{bottom:640.080000px;}
.y43_c01164{bottom:640.800000px;}
.y40_c01164{bottom:642.960000px;}
.y42_c01164{bottom:644.400000px;}
.y44_c01164{bottom:645.120000px;}
.y3a_c01164{bottom:682.560000px;}
.y39_c01164{bottom:684.720000px;}
.y3c_c01164{bottom:685.440000px;}
.y3e_c01164{bottom:686.160000px;}
.y3b_c01164{bottom:687.600000px;}
.y3f_c01164{bottom:688.320000px;}
.y3d_c01164{bottom:689.040000px;}
.y35_c01164{bottom:725.760000px;}
.y34_c01164{bottom:727.200000px;}
.y32_c01164{bottom:727.920000px;}
.y37_c01164{bottom:728.640000px;}
.y33_c01164{bottom:729.360000px;}
.y36_c01164{bottom:730.080000px;}
.y38_c01164{bottom:730.800000px;}
.y2e_c01164{bottom:768.960000px;}
.y2d_c01164{bottom:769.680000px;}
.y2f_c01164{bottom:772.560000px;}
.y31_c01164{bottom:774.000000px;}
.y30_c01164{bottom:774.720000px;}
.y27_c01164{bottom:811.440000px;}
.y26_c01164{bottom:812.880000px;}
.y29_c01164{bottom:813.600000px;}
.y2a_c01164{bottom:815.040000px;}
.y28_c01164{bottom:815.760000px;}
.y2c_c01164{bottom:816.480000px;}
.y2b_c01164{bottom:817.200000px;}
.y20_c01164{bottom:853.200000px;}
.y1f_c01164{bottom:854.640000px;}
.y22_c01164{bottom:856.080000px;}
.y23_c01164{bottom:857.520000px;}
.y21_c01164{bottom:858.240000px;}
.y24_c01164{bottom:859.680000px;}
.y25_c01164{bottom:860.400000px;}
.y19_c01164{bottom:896.400000px;}
.y18_c01164{bottom:897.840000px;}
.y1b_c01164{bottom:898.560000px;}
.y1a_c01164{bottom:900.720000px;}
.y1c_c01164{bottom:901.440000px;}
.y1d_c01164{bottom:902.880000px;}
.y1e_c01164{bottom:903.600000px;}
.y11_c01164{bottom:939.600000px;}
.y14_c01164{bottom:941.040000px;}
.y16_c01164{bottom:942.480000px;}
.y12_c01164{bottom:943.200000px;}
.y13_c01164{bottom:944.640000px;}
.y15_c01164{bottom:945.360000px;}
.y17_c01164{bottom:946.080000px;}
.ya_c01164{bottom:982.080000px;}
.y9_c01164{bottom:982.800000px;}
.yc_c01164{bottom:983.520000px;}
.yb_c01164{bottom:984.240000px;}
.ye_c01164{bottom:987.120000px;}
.yd_c01164{bottom:988.560000px;}
.yf_c01164{bottom:989.280000px;}
.y10_c01164{bottom:990.000000px;}
.y8_c01164{bottom:1021.680000px;}
.y2_c01164{bottom:1026.000000px;}
.y5_c01164{bottom:1028.880000px;}
.y3_c01164{bottom:1029.600000px;}
.y4_c01164{bottom:1030.320000px;}
.y6_c01164{bottom:1032.480000px;}
.y7_c01164{bottom:1033.920000px;}
.y1_c01164{bottom:1116.720000px;}
.ha_c01164{height:31.100625px;}
.h6_c01164{height:33.692344px;}
.hf_c01164{height:36.284062px;}
.h10_c01164{height:41.467500px;}
.h8_c01164{height:44.059219px;}
.h5_c01164{height:46.650937px;}
.h9_c01164{height:49.242656px;}
.h3_c01164{height:51.834375px;}
.h7_c01164{height:54.426094px;}
.hd_c01164{height:57.017812px;}
.hb_c01164{height:59.609531px;}
.h2_c01164{height:62.201250px;}
.h4_c01164{height:64.792969px;}
.hc_c01164{height:67.384687px;}
.he_c01164{height:69.976406px;}
.h11_c01164{height:85.526719px;}
.h1_c01164{height:1150.500000px;}
.h0_c01164{height:1150.560000px;}
.w0_c01164{width:779.760000px;}
.w1_c01164{width:780.000000px;}
.x0_c01164{left:0.000000px;}
.x2_c01164{left:61.200000px;}
.x13_c01164{left:62.640000px;}
.x3_c01164{left:144.000000px;}
.x1f_c01164{left:146.160000px;}
.x20_c01164{left:185.760000px;}
.x16_c01164{left:187.200000px;}
.x22_c01164{left:228.960000px;}
.x4_c01164{left:230.400000px;}
.x10_c01164{left:272.880000px;}
.x5_c01164{left:284.400000px;}
.x1c_c01164{left:305.280000px;}
.x11_c01164{left:315.360000px;}
.x21_c01164{left:316.800000px;}
.x6_c01164{left:326.160000px;}
.x23_c01164{left:327.600000px;}
.xd_c01164{left:359.280000px;}
.x17_c01164{left:401.760000px;}
.x14_c01164{left:403.200000px;}
.x18_c01164{left:413.280000px;}
.x1d_c01164{left:457.920000px;}
.x7_c01164{left:468.000000px;}
.x24_c01164{left:489.600000px;}
.x1e_c01164{left:494.640000px;}
.xc_c01164{left:500.400000px;}
.x25_c01164{left:510.480000px;}
.x8_c01164{left:516.240000px;}
.x12_c01164{left:545.040000px;}
.x9_c01164{left:565.920000px;}
.xf_c01164{left:567.360000px;}
.x1b_c01164{left:587.520000px;}
.x1a_c01164{left:619.920000px;}
.xa_c01164{left:621.360000px;}
.xe_c01164{left:654.480000px;}
.x1_c01164{left:667.440000px;}
.x19_c01164{left:686.880000px;}
.xb_c01164{left:697.680000px;}
.x15_c01164{left:718.560000px;}
@media print{
.v2_c01164{vertical-align:-2.560000pt;}
.v0_c01164{vertical-align:0.000000pt;}
.v1_c01164{vertical-align:15.360000pt;}
.ls1_c01164{letter-spacing:0.000000pt;}
.ls0_c01164{letter-spacing:44.198187pt;}
.ws5_c01164{word-spacing:0.000000pt;}
.ws0_c01164{word-spacing:10.393905pt;}
.ws2_c01164{word-spacing:10.507733pt;}
.ws3_c01164{word-spacing:14.213046pt;}
.ws4_c01164{word-spacing:18.445018pt;}
.ws1_c01164{word-spacing:414.834347pt;}
.fs8_c01164{font-size:30.720000pt;}
.fs4_c01164{font-size:33.280000pt;}
.fsd_c01164{font-size:35.840000pt;}
.fse_c01164{font-size:40.960000pt;}
.fs6_c01164{font-size:43.520000pt;}
.fs3_c01164{font-size:46.080000pt;}
.fs7_c01164{font-size:48.640000pt;}
.fs1_c01164{font-size:51.200000pt;}
.fs5_c01164{font-size:53.760000pt;}
.fsb_c01164{font-size:56.320000pt;}
.fs9_c01164{font-size:58.880000pt;}
.fs0_c01164{font-size:61.440000pt;}
.fs2_c01164{font-size:64.000000pt;}
.fsa_c01164{font-size:66.560000pt;}
.fsc_c01164{font-size:69.120000pt;}
.fsf_c01164{font-size:84.480000pt;}
.y0_c01164{bottom:0.000000pt;}
.y8e_c01164{bottom:75.520000pt;}
.y8b_c01164{bottom:76.160000pt;}
.y8d_c01164{bottom:80.640000pt;}
.y8a_c01164{bottom:81.280000pt;}
.y8c_c01164{bottom:83.840000pt;}
.y88_c01164{bottom:84.480000pt;}
.y89_c01164{bottom:86.400000pt;}
.y87_c01164{bottom:88.960000pt;}
.y86_c01164{bottom:120.960000pt;}
.y84_c01164{bottom:121.600000pt;}
.y85_c01164{bottom:122.240000pt;}
.y83_c01164{bottom:122.880000pt;}
.y82_c01164{bottom:126.080000pt;}
.y81_c01164{bottom:159.360000pt;}
.y80_c01164{bottom:161.920000pt;}
.y7f_c01164{bottom:163.200000pt;}
.y7e_c01164{bottom:163.840000pt;}
.y7c_c01164{bottom:186.880000pt;}
.y7b_c01164{bottom:187.520000pt;}
.y78_c01164{bottom:188.160000pt;}
.y7d_c01164{bottom:188.800000pt;}
.y79_c01164{bottom:189.440000pt;}
.y7a_c01164{bottom:190.080000pt;}
.y77_c01164{bottom:191.360000pt;}
.y76_c01164{bottom:224.640000pt;}
.y72_c01164{bottom:225.280000pt;}
.y75_c01164{bottom:225.920000pt;}
.y71_c01164{bottom:226.560000pt;}
.y74_c01164{bottom:227.840000pt;}
.y73_c01164{bottom:228.480000pt;}
.y70_c01164{bottom:229.760000pt;}
.y6e_c01164{bottom:263.040000pt;}
.y6c_c01164{bottom:263.680000pt;}
.y6b_c01164{bottom:264.320000pt;}
.y6f_c01164{bottom:265.600000pt;}
.y6d_c01164{bottom:266.240000pt;}
.y6a_c01164{bottom:267.520000pt;}
.y69_c01164{bottom:301.440000pt;}
.y68_c01164{bottom:302.080000pt;}
.y67_c01164{bottom:302.720000pt;}
.y66_c01164{bottom:304.640000pt;}
.y63_c01164{bottom:339.840000pt;}
.y61_c01164{bottom:340.480000pt;}
.y62_c01164{bottom:341.120000pt;}
.y65_c01164{bottom:341.760000pt;}
.y64_c01164{bottom:342.400000pt;}
.y60_c01164{bottom:343.040000pt;}
.y5c_c01164{bottom:378.240000pt;}
.y5d_c01164{bottom:378.880000pt;}
.y5e_c01164{bottom:379.520000pt;}
.y5f_c01164{bottom:380.160000pt;}
.y5b_c01164{bottom:380.800000pt;}
.y59_c01164{bottom:416.000000pt;}
.y57_c01164{bottom:416.640000pt;}
.y58_c01164{bottom:417.280000pt;}
.y5a_c01164{bottom:417.920000pt;}
.y56_c01164{bottom:418.560000pt;}
.y53_c01164{bottom:454.400000pt;}
.y54_c01164{bottom:455.680000pt;}
.y52_c01164{bottom:456.320000pt;}
.y50_c01164{bottom:456.960000pt;}
.y55_c01164{bottom:457.600000pt;}
.y51_c01164{bottom:458.240000pt;}
.y4a_c01164{bottom:492.800000pt;}
.y4e_c01164{bottom:493.440000pt;}
.y4c_c01164{bottom:494.080000pt;}
.y4f_c01164{bottom:494.720000pt;}
.y49_c01164{bottom:495.360000pt;}
.y4d_c01164{bottom:496.000000pt;}
.y4b_c01164{bottom:496.640000pt;}
.y46_c01164{bottom:531.200000pt;}
.y47_c01164{bottom:532.480000pt;}
.y45_c01164{bottom:533.120000pt;}
.y48_c01164{bottom:534.400000pt;}
.y41_c01164{bottom:568.960000pt;}
.y43_c01164{bottom:569.600000pt;}
.y40_c01164{bottom:571.520000pt;}
.y42_c01164{bottom:572.800000pt;}
.y44_c01164{bottom:573.440000pt;}
.y3a_c01164{bottom:606.720000pt;}
.y39_c01164{bottom:608.640000pt;}
.y3c_c01164{bottom:609.280000pt;}
.y3e_c01164{bottom:609.920000pt;}
.y3b_c01164{bottom:611.200000pt;}
.y3f_c01164{bottom:611.840000pt;}
.y3d_c01164{bottom:612.480000pt;}
.y35_c01164{bottom:645.120000pt;}
.y34_c01164{bottom:646.400000pt;}
.y32_c01164{bottom:647.040000pt;}
.y37_c01164{bottom:647.680000pt;}
.y33_c01164{bottom:648.320000pt;}
.y36_c01164{bottom:648.960000pt;}
.y38_c01164{bottom:649.600000pt;}
.y2e_c01164{bottom:683.520000pt;}
.y2d_c01164{bottom:684.160000pt;}
.y2f_c01164{bottom:686.720000pt;}
.y31_c01164{bottom:688.000000pt;}
.y30_c01164{bottom:688.640000pt;}
.y27_c01164{bottom:721.280000pt;}
.y26_c01164{bottom:722.560000pt;}
.y29_c01164{bottom:723.200000pt;}
.y2a_c01164{bottom:724.480000pt;}
.y28_c01164{bottom:725.120000pt;}
.y2c_c01164{bottom:725.760000pt;}
.y2b_c01164{bottom:726.400000pt;}
.y20_c01164{bottom:758.400000pt;}
.y1f_c01164{bottom:759.680000pt;}
.y22_c01164{bottom:760.960000pt;}
.y23_c01164{bottom:762.240000pt;}
.y21_c01164{bottom:762.880000pt;}
.y24_c01164{bottom:764.160000pt;}
.y25_c01164{bottom:764.800000pt;}
.y19_c01164{bottom:796.800000pt;}
.y18_c01164{bottom:798.080000pt;}
.y1b_c01164{bottom:798.720000pt;}
.y1a_c01164{bottom:800.640000pt;}
.y1c_c01164{bottom:801.280000pt;}
.y1d_c01164{bottom:802.560000pt;}
.y1e_c01164{bottom:803.200000pt;}
.y11_c01164{bottom:835.200000pt;}
.y14_c01164{bottom:836.480000pt;}
.y16_c01164{bottom:837.760000pt;}
.y12_c01164{bottom:838.400000pt;}
.y13_c01164{bottom:839.680000pt;}
.y15_c01164{bottom:840.320000pt;}
.y17_c01164{bottom:840.960000pt;}
.ya_c01164{bottom:872.960000pt;}
.y9_c01164{bottom:873.600000pt;}
.yc_c01164{bottom:874.240000pt;}
.yb_c01164{bottom:874.880000pt;}
.ye_c01164{bottom:877.440000pt;}
.yd_c01164{bottom:878.720000pt;}
.yf_c01164{bottom:879.360000pt;}
.y10_c01164{bottom:880.000000pt;}
.y8_c01164{bottom:908.160000pt;}
.y2_c01164{bottom:912.000000pt;}
.y5_c01164{bottom:914.560000pt;}
.y3_c01164{bottom:915.200000pt;}
.y4_c01164{bottom:915.840000pt;}
.y6_c01164{bottom:917.760000pt;}
.y7_c01164{bottom:919.040000pt;}
.y1_c01164{bottom:992.640000pt;}
.ha_c01164{height:27.645000pt;}
.h6_c01164{height:29.948750pt;}
.hf_c01164{height:32.252500pt;}
.h10_c01164{height:36.860000pt;}
.h8_c01164{height:39.163750pt;}
.h5_c01164{height:41.467500pt;}
.h9_c01164{height:43.771250pt;}
.h3_c01164{height:46.075000pt;}
.h7_c01164{height:48.378750pt;}
.hd_c01164{height:50.682500pt;}
.hb_c01164{height:52.986250pt;}
.h2_c01164{height:55.290000pt;}
.h4_c01164{height:57.593750pt;}
.hc_c01164{height:59.897500pt;}
.he_c01164{height:62.201250pt;}
.h11_c01164{height:76.023750pt;}
.h1_c01164{height:1022.666667pt;}
.h0_c01164{height:1022.720000pt;}
.w0_c01164{width:693.120000pt;}
.w1_c01164{width:693.333333pt;}
.x0_c01164{left:0.000000pt;}
.x2_c01164{left:54.400000pt;}
.x13_c01164{left:55.680000pt;}
.x3_c01164{left:128.000000pt;}
.x1f_c01164{left:129.920000pt;}
.x20_c01164{left:165.120000pt;}
.x16_c01164{left:166.400000pt;}
.x22_c01164{left:203.520000pt;}
.x4_c01164{left:204.800000pt;}
.x10_c01164{left:242.560000pt;}
.x5_c01164{left:252.800000pt;}
.x1c_c01164{left:271.360000pt;}
.x11_c01164{left:280.320000pt;}
.x21_c01164{left:281.600000pt;}
.x6_c01164{left:289.920000pt;}
.x23_c01164{left:291.200000pt;}
.xd_c01164{left:319.360000pt;}
.x17_c01164{left:357.120000pt;}
.x14_c01164{left:358.400000pt;}
.x18_c01164{left:367.360000pt;}
.x1d_c01164{left:407.040000pt;}
.x7_c01164{left:416.000000pt;}
.x24_c01164{left:435.200000pt;}
.x1e_c01164{left:439.680000pt;}
.xc_c01164{left:444.800000pt;}
.x25_c01164{left:453.760000pt;}
.x8_c01164{left:458.880000pt;}
.x12_c01164{left:484.480000pt;}
.x9_c01164{left:503.040000pt;}
.xf_c01164{left:504.320000pt;}
.x1b_c01164{left:522.240000pt;}
.x1a_c01164{left:551.040000pt;}
.xa_c01164{left:552.320000pt;}
.xe_c01164{left:581.760000pt;}
.x1_c01164{left:593.280000pt;}
.x19_c01164{left:610.560000pt;}
.xb_c01164{left:620.160000pt;}
.x15_c01164{left:638.720000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3a7f241735c7be9d41668307.woff2')format("woff");}.ff1_c01165{font-family:ff1_c01165;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m35_c01165{transform:matrix(0.176700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176700,0.000000,0.000000,0.250000,0,0);}
.m3e_c01165{transform:matrix(0.202225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202225,0.000000,0.000000,0.250000,0,0);}
.m22_c01165{transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);}
.m3_c01165{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);}
.m1c_c01165{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);}
.m27_c01165{transform:matrix(0.234625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234625,0.000000,0.000000,0.250000,0,0);}
.mf_c01165{transform:matrix(0.234675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234675,0.000000,0.000000,0.250000,0,0);}
.m3f_c01165{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m23_c01165{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m48_c01165{transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);}
.m4c_c01165{transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);}
.m41_c01165{transform:matrix(0.242100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242100,0.000000,0.000000,0.250000,0,0);}
.m1e_c01165{transform:matrix(0.242300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242300,0.000000,0.000000,0.250000,0,0);}
.m2a_c01165{transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);}
.m15_c01165{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m24_c01165{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m33_c01165{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m3c_c01165{transform:matrix(0.249300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249300,0.000000,0.000000,0.250000,0,0);}
.m2c_c01165{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m2_c01165{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_c01165{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.me_c01165{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);}
.m47_c01165{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);}
.m3a_c01165{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_c01165{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mb_c01165{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m30_c01165{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m14_c01165{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);}
.m45_c01165{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.ma_c01165{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m4_c01165{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);}
.m39_c01165{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m6_c01165{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mc_c01165{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m1_c01165{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m28_c01165{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.md_c01165{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m46_c01165{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m11_c01165{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01165{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m43_c01165{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m5_c01165{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m18_c01165{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m20_c01165{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01165{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01165{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01165{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m31_c01165{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);}
.m29_c01165{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m16_c01165{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);}
.m21_c01165{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01165{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m38_c01165{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m32_c01165{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01165{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m13_c01165{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);}
.m1a_c01165{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m8_c01165{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);}
.m1f_c01165{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);}
.m0_c01165{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);}
.m3d_c01165{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m26_c01165{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);}
.m49_c01165{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m44_c01165{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m19_c01165{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);}
.m25_c01165{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m42_c01165{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m34_c01165{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);}
.m7_c01165{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);}
.m2f_c01165{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m9_c01165{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m37_c01165{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);}
.m3b_c01165{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m40_c01165{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m36_c01165{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m17_c01165{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01165{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.v0_c01165{vertical-align:0.000000px;}
.v2_c01165{vertical-align:2.880000px;}
.v1_c01165{vertical-align:5.760000px;}
.ls2_c01165{letter-spacing:0.000000px;}
.ls0_c01165{letter-spacing:45.308400px;}
.ls1_c01165{letter-spacing:47.972400px;}
.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;}
}
.ws4_c01165{word-spacing:0.000000px;}
.ws0_c01165{word-spacing:2.664240px;}
.ws2_c01165{word-spacing:14.393376px;}
.ws1_c01165{word-spacing:17.981649px;}
.ws3_c01165{word-spacing:582.995040px;}
.fc0_c01165{color:transparent;}
.fse_c01165{font-size:34.560000px;}
.fsc_c01165{font-size:37.440000px;}
.fs6_c01165{font-size:43.200000px;}
.fsa_c01165{font-size:46.080000px;}
.fs9_c01165{font-size:48.960000px;}
.fs5_c01165{font-size:51.840000px;}
.fs3_c01165{font-size:54.720000px;}
.fs1_c01165{font-size:57.600000px;}
.fs4_c01165{font-size:60.480000px;}
.fsb_c01165{font-size:63.360000px;}
.fsf_c01165{font-size:66.240000px;}
.fs8_c01165{font-size:69.120000px;}
.fs0_c01165{font-size:72.000000px;}
.fs2_c01165{font-size:74.880000px;}
.fs7_c01165{font-size:77.760000px;}
.fsd_c01165{font-size:100.800000px;}
.y0_c01165{bottom:0.000000px;}
.y8d_c01165{bottom:68.400000px;}
.y8c_c01165{bottom:69.120000px;}
.y8a_c01165{bottom:69.840000px;}
.y8b_c01165{bottom:70.560000px;}
.y88_c01165{bottom:72.000000px;}
.y89_c01165{bottom:73.440000px;}
.y87_c01165{bottom:77.040000px;}
.y86_c01165{bottom:113.040000px;}
.y84_c01165{bottom:113.760000px;}
.y83_c01165{bottom:114.480000px;}
.y85_c01165{bottom:115.200000px;}
.y82_c01165{bottom:118.800000px;}
.y81_c01165{bottom:155.520000px;}
.y7f_c01165{bottom:156.240000px;}
.y7d_c01165{bottom:157.680000px;}
.y80_c01165{bottom:159.120000px;}
.y7e_c01165{bottom:160.560000px;}
.y7c_c01165{bottom:161.280000px;}
.y79_c01165{bottom:198.000000px;}
.y78_c01165{bottom:198.720000px;}
.y77_c01165{bottom:200.160000px;}
.y7a_c01165{bottom:200.880000px;}
.y7b_c01165{bottom:201.600000px;}
.y76_c01165{bottom:204.480000px;}
.y75_c01165{bottom:244.080000px;}
.y74_c01165{bottom:246.960000px;}
.y6f_c01165{bottom:274.320000px;}
.y71_c01165{bottom:275.040000px;}
.y73_c01165{bottom:276.480000px;}
.y72_c01165{bottom:277.200000px;}
.y70_c01165{bottom:277.920000px;}
.y6e_c01165{bottom:278.640000px;}
.y6a_c01165{bottom:316.800000px;}
.y69_c01165{bottom:318.240000px;}
.y6c_c01165{bottom:318.960000px;}
.y6d_c01165{bottom:319.680000px;}
.y68_c01165{bottom:320.400000px;}
.y6b_c01165{bottom:321.120000px;}
.y64_c01165{bottom:360.720000px;}
.y65_c01165{bottom:361.440000px;}
.y66_c01165{bottom:362.160000px;}
.y67_c01165{bottom:362.880000px;}
.y63_c01165{bottom:363.600000px;}
.y5f_c01165{bottom:403.200000px;}
.y62_c01165{bottom:403.920000px;}
.y61_c01165{bottom:404.640000px;}
.y5e_c01165{bottom:406.080000px;}
.y60_c01165{bottom:406.800000px;}
.y5a_c01165{bottom:446.400000px;}
.y5b_c01165{bottom:447.120000px;}
.y5c_c01165{bottom:447.840000px;}
.y59_c01165{bottom:449.280000px;}
.y5d_c01165{bottom:450.000000px;}
.y55_c01165{bottom:488.880000px;}
.y56_c01165{bottom:489.600000px;}
.y57_c01165{bottom:490.320000px;}
.y54_c01165{bottom:491.040000px;}
.y58_c01165{bottom:492.480000px;}
.y4f_c01165{bottom:531.360000px;}
.y51_c01165{bottom:532.080000px;}
.y52_c01165{bottom:532.800000px;}
.y4e_c01165{bottom:533.520000px;}
.y53_c01165{bottom:534.240000px;}
.y50_c01165{bottom:534.960000px;}
.y4b_c01165{bottom:568.080000px;}
.y48_c01165{bottom:573.840000px;}
.y4a_c01165{bottom:575.280000px;}
.y4c_c01165{bottom:576.000000px;}
.y47_c01165{bottom:576.720000px;}
.y49_c01165{bottom:577.440000px;}
.y4d_c01165{bottom:578.880000px;}
.y43_c01165{bottom:617.040000px;}
.y44_c01165{bottom:619.200000px;}
.y42_c01165{bottom:619.920000px;}
.y45_c01165{bottom:621.360000px;}
.y46_c01165{bottom:622.080000px;}
.y3d_c01165{bottom:658.800000px;}
.y3c_c01165{bottom:660.960000px;}
.y3f_c01165{bottom:661.680000px;}
.y3e_c01165{bottom:662.400000px;}
.y40_c01165{bottom:663.120000px;}
.y41_c01165{bottom:665.280000px;}
.y38_c01165{bottom:702.000000px;}
.y39_c01165{bottom:704.160000px;}
.y37_c01165{bottom:705.600000px;}
.y3a_c01165{bottom:706.320000px;}
.y3b_c01165{bottom:707.040000px;}
.y31_c01165{bottom:744.480000px;}
.y32_c01165{bottom:745.920000px;}
.y30_c01165{bottom:746.640000px;}
.y33_c01165{bottom:748.800000px;}
.y35_c01165{bottom:749.520000px;}
.y34_c01165{bottom:750.960000px;}
.y36_c01165{bottom:751.680000px;}
.y2a_c01165{bottom:786.960000px;}
.y29_c01165{bottom:789.120000px;}
.y2c_c01165{bottom:789.840000px;}
.y2b_c01165{bottom:792.000000px;}
.y2d_c01165{bottom:792.720000px;}
.y2f_c01165{bottom:793.440000px;}
.y2e_c01165{bottom:794.880000px;}
.y25_c01165{bottom:830.160000px;}
.y26_c01165{bottom:831.600000px;}
.y24_c01165{bottom:832.320000px;}
.y27_c01165{bottom:835.200000px;}
.y28_c01165{bottom:838.080000px;}
.y21_c01165{bottom:873.360000px;}
.y23_c01165{bottom:875.520000px;}
.y22_c01165{bottom:877.680000px;}
.y1a_c01165{bottom:905.040000px;}
.y19_c01165{bottom:908.640000px;}
.y1b_c01165{bottom:909.360000px;}
.y1d_c01165{bottom:910.800000px;}
.y1c_c01165{bottom:911.520000px;}
.y1f_c01165{bottom:912.240000px;}
.y1e_c01165{bottom:913.680000px;}
.y20_c01165{bottom:914.400000px;}
.y13_c01165{bottom:948.240000px;}
.y14_c01165{bottom:948.960000px;}
.y12_c01165{bottom:951.120000px;}
.y15_c01165{bottom:954.000000px;}
.y16_c01165{bottom:954.720000px;}
.y18_c01165{bottom:956.880000px;}
.y17_c01165{bottom:958.320000px;}
.ya_c01165{bottom:991.440000px;}
.y9_c01165{bottom:992.880000px;}
.yc_c01165{bottom:993.600000px;}
.yb_c01165{bottom:994.320000px;}
.yd_c01165{bottom:997.200000px;}
.ye_c01165{bottom:997.920000px;}
.y10_c01165{bottom:999.360000px;}
.y11_c01165{bottom:1000.080000px;}
.yf_c01165{bottom:1000.800000px;}
.y2_c01165{bottom:1033.920000px;}
.y3_c01165{bottom:1039.680000px;}
.y4_c01165{bottom:1040.400000px;}
.y6_c01165{bottom:1041.120000px;}
.y5_c01165{bottom:1041.840000px;}
.y7_c01165{bottom:1042.560000px;}
.y8_c01165{bottom:1043.280000px;}
.y1_c01165{bottom:1108.800000px;}
.h12_c01165{height:31.100625px;}
.h10_c01165{height:33.692344px;}
.h9_c01165{height:38.875781px;}
.he_c01165{height:41.467500px;}
.hd_c01165{height:44.059219px;}
.h7_c01165{height:46.650937px;}
.h5_c01165{height:49.242656px;}
.h3_c01165{height:51.834375px;}
.h6_c01165{height:54.426094px;}
.hf_c01165{height:57.017812px;}
.hb_c01165{height:57.594375px;}
.h13_c01165{height:59.609531px;}
.hc_c01165{height:62.201250px;}
.h2_c01165{height:64.792969px;}
.h8_c01165{height:67.384687px;}
.ha_c01165{height:69.976406px;}
.h4_c01165{height:73.144688px;}
.h11_c01165{height:90.710156px;}
.h1_c01165{height:1149.000000px;}
.h0_c01165{height:1149.120000px;}
.w0_c01165{width:778.320000px;}
.w1_c01165{width:778.500000px;}
.x0_c01165{left:0.000000px;}
.x2_c01165{left:60.480000px;}
.x17_c01165{left:61.920000px;}
.x25_c01165{left:63.360000px;}
.x3_c01165{left:142.560000px;}
.x11_c01165{left:144.720000px;}
.x2b_c01165{left:146.160000px;}
.x2c_c01165{left:187.920000px;}
.x12_c01165{left:217.440000px;}
.xa_c01165{left:228.960000px;}
.x13_c01165{left:230.400000px;}
.xe_c01165{left:261.360000px;}
.xb_c01165{left:272.160000px;}
.x1b_c01165{left:273.600000px;}
.x26_c01165{left:285.840000px;}
.x16_c01165{left:314.640000px;}
.x22_c01165{left:316.800000px;}
.x19_c01165{left:326.160000px;}
.x1c_c01165{left:327.600000px;}
.x18_c01165{left:359.280000px;}
.x21_c01165{left:360.720000px;}
.x1d_c01165{left:369.360000px;}
.x1f_c01165{left:403.200000px;}
.xf_c01165{left:423.360000px;}
.x10_c01165{left:466.560000px;}
.x27_c01165{left:468.720000px;}
.x1e_c01165{left:505.440000px;}
.x24_c01165{left:534.960000px;}
.x4_c01165{left:544.320000px;}
.x20_c01165{left:545.760000px;}
.xc_c01165{left:564.480000px;}
.x5_c01165{left:565.920000px;}
.x28_c01165{left:568.080000px;}
.x6_c01165{left:619.920000px;}
.x14_c01165{left:621.360000px;}
.x2d_c01165{left:622.800000px;}
.x7_c01165{left:653.040000px;}
.x15_c01165{left:654.480000px;}
.x2e_c01165{left:655.920000px;}
.x1_c01165{left:673.200000px;}
.x1a_c01165{left:686.880000px;}
.xd_c01165{left:696.240000px;}
.x8_c01165{left:697.680000px;}
.x29_c01165{left:699.120000px;}
.x9_c01165{left:717.120000px;}
.x23_c01165{left:718.560000px;}
.x2a_c01165{left:720.000000px;}
@media print{
.v0_c01165{vertical-align:0.000000pt;}
.v2_c01165{vertical-align:2.560000pt;}
.v1_c01165{vertical-align:5.120000pt;}
.ls2_c01165{letter-spacing:0.000000pt;}
.ls0_c01165{letter-spacing:40.274133pt;}
.ls1_c01165{letter-spacing:42.642133pt;}
.ws4_c01165{word-spacing:0.000000pt;}
.ws0_c01165{word-spacing:2.368213pt;}
.ws2_c01165{word-spacing:12.794112pt;}
.ws1_c01165{word-spacing:15.983688pt;}
.ws3_c01165{word-spacing:518.217813pt;}
.fse_c01165{font-size:30.720000pt;}
.fsc_c01165{font-size:33.280000pt;}
.fs6_c01165{font-size:38.400000pt;}
.fsa_c01165{font-size:40.960000pt;}
.fs9_c01165{font-size:43.520000pt;}
.fs5_c01165{font-size:46.080000pt;}
.fs3_c01165{font-size:48.640000pt;}
.fs1_c01165{font-size:51.200000pt;}
.fs4_c01165{font-size:53.760000pt;}
.fsb_c01165{font-size:56.320000pt;}
.fsf_c01165{font-size:58.880000pt;}
.fs8_c01165{font-size:61.440000pt;}
.fs0_c01165{font-size:64.000000pt;}
.fs2_c01165{font-size:66.560000pt;}
.fs7_c01165{font-size:69.120000pt;}
.fsd_c01165{font-size:89.600000pt;}
.y0_c01165{bottom:0.000000pt;}
.y8d_c01165{bottom:60.800000pt;}
.y8c_c01165{bottom:61.440000pt;}
.y8a_c01165{bottom:62.080000pt;}
.y8b_c01165{bottom:62.720000pt;}
.y88_c01165{bottom:64.000000pt;}
.y89_c01165{bottom:65.280000pt;}
.y87_c01165{bottom:68.480000pt;}
.y86_c01165{bottom:100.480000pt;}
.y84_c01165{bottom:101.120000pt;}
.y83_c01165{bottom:101.760000pt;}
.y85_c01165{bottom:102.400000pt;}
.y82_c01165{bottom:105.600000pt;}
.y81_c01165{bottom:138.240000pt;}
.y7f_c01165{bottom:138.880000pt;}
.y7d_c01165{bottom:140.160000pt;}
.y80_c01165{bottom:141.440000pt;}
.y7e_c01165{bottom:142.720000pt;}
.y7c_c01165{bottom:143.360000pt;}
.y79_c01165{bottom:176.000000pt;}
.y78_c01165{bottom:176.640000pt;}
.y77_c01165{bottom:177.920000pt;}
.y7a_c01165{bottom:178.560000pt;}
.y7b_c01165{bottom:179.200000pt;}
.y76_c01165{bottom:181.760000pt;}
.y75_c01165{bottom:216.960000pt;}
.y74_c01165{bottom:219.520000pt;}
.y6f_c01165{bottom:243.840000pt;}
.y71_c01165{bottom:244.480000pt;}
.y73_c01165{bottom:245.760000pt;}
.y72_c01165{bottom:246.400000pt;}
.y70_c01165{bottom:247.040000pt;}
.y6e_c01165{bottom:247.680000pt;}
.y6a_c01165{bottom:281.600000pt;}
.y69_c01165{bottom:282.880000pt;}
.y6c_c01165{bottom:283.520000pt;}
.y6d_c01165{bottom:284.160000pt;}
.y68_c01165{bottom:284.800000pt;}
.y6b_c01165{bottom:285.440000pt;}
.y64_c01165{bottom:320.640000pt;}
.y65_c01165{bottom:321.280000pt;}
.y66_c01165{bottom:321.920000pt;}
.y67_c01165{bottom:322.560000pt;}
.y63_c01165{bottom:323.200000pt;}
.y5f_c01165{bottom:358.400000pt;}
.y62_c01165{bottom:359.040000pt;}
.y61_c01165{bottom:359.680000pt;}
.y5e_c01165{bottom:360.960000pt;}
.y60_c01165{bottom:361.600000pt;}
.y5a_c01165{bottom:396.800000pt;}
.y5b_c01165{bottom:397.440000pt;}
.y5c_c01165{bottom:398.080000pt;}
.y59_c01165{bottom:399.360000pt;}
.y5d_c01165{bottom:400.000000pt;}
.y55_c01165{bottom:434.560000pt;}
.y56_c01165{bottom:435.200000pt;}
.y57_c01165{bottom:435.840000pt;}
.y54_c01165{bottom:436.480000pt;}
.y58_c01165{bottom:437.760000pt;}
.y4f_c01165{bottom:472.320000pt;}
.y51_c01165{bottom:472.960000pt;}
.y52_c01165{bottom:473.600000pt;}
.y4e_c01165{bottom:474.240000pt;}
.y53_c01165{bottom:474.880000pt;}
.y50_c01165{bottom:475.520000pt;}
.y4b_c01165{bottom:504.960000pt;}
.y48_c01165{bottom:510.080000pt;}
.y4a_c01165{bottom:511.360000pt;}
.y4c_c01165{bottom:512.000000pt;}
.y47_c01165{bottom:512.640000pt;}
.y49_c01165{bottom:513.280000pt;}
.y4d_c01165{bottom:514.560000pt;}
.y43_c01165{bottom:548.480000pt;}
.y44_c01165{bottom:550.400000pt;}
.y42_c01165{bottom:551.040000pt;}
.y45_c01165{bottom:552.320000pt;}
.y46_c01165{bottom:552.960000pt;}
.y3d_c01165{bottom:585.600000pt;}
.y3c_c01165{bottom:587.520000pt;}
.y3f_c01165{bottom:588.160000pt;}
.y3e_c01165{bottom:588.800000pt;}
.y40_c01165{bottom:589.440000pt;}
.y41_c01165{bottom:591.360000pt;}
.y38_c01165{bottom:624.000000pt;}
.y39_c01165{bottom:625.920000pt;}
.y37_c01165{bottom:627.200000pt;}
.y3a_c01165{bottom:627.840000pt;}
.y3b_c01165{bottom:628.480000pt;}
.y31_c01165{bottom:661.760000pt;}
.y32_c01165{bottom:663.040000pt;}
.y30_c01165{bottom:663.680000pt;}
.y33_c01165{bottom:665.600000pt;}
.y35_c01165{bottom:666.240000pt;}
.y34_c01165{bottom:667.520000pt;}
.y36_c01165{bottom:668.160000pt;}
.y2a_c01165{bottom:699.520000pt;}
.y29_c01165{bottom:701.440000pt;}
.y2c_c01165{bottom:702.080000pt;}
.y2b_c01165{bottom:704.000000pt;}
.y2d_c01165{bottom:704.640000pt;}
.y2f_c01165{bottom:705.280000pt;}
.y2e_c01165{bottom:706.560000pt;}
.y25_c01165{bottom:737.920000pt;}
.y26_c01165{bottom:739.200000pt;}
.y24_c01165{bottom:739.840000pt;}
.y27_c01165{bottom:742.400000pt;}
.y28_c01165{bottom:744.960000pt;}
.y21_c01165{bottom:776.320000pt;}
.y23_c01165{bottom:778.240000pt;}
.y22_c01165{bottom:780.160000pt;}
.y1a_c01165{bottom:804.480000pt;}
.y19_c01165{bottom:807.680000pt;}
.y1b_c01165{bottom:808.320000pt;}
.y1d_c01165{bottom:809.600000pt;}
.y1c_c01165{bottom:810.240000pt;}
.y1f_c01165{bottom:810.880000pt;}
.y1e_c01165{bottom:812.160000pt;}
.y20_c01165{bottom:812.800000pt;}
.y13_c01165{bottom:842.880000pt;}
.y14_c01165{bottom:843.520000pt;}
.y12_c01165{bottom:845.440000pt;}
.y15_c01165{bottom:848.000000pt;}
.y16_c01165{bottom:848.640000pt;}
.y18_c01165{bottom:850.560000pt;}
.y17_c01165{bottom:851.840000pt;}
.ya_c01165{bottom:881.280000pt;}
.y9_c01165{bottom:882.560000pt;}
.yc_c01165{bottom:883.200000pt;}
.yb_c01165{bottom:883.840000pt;}
.yd_c01165{bottom:886.400000pt;}
.ye_c01165{bottom:887.040000pt;}
.y10_c01165{bottom:888.320000pt;}
.y11_c01165{bottom:888.960000pt;}
.yf_c01165{bottom:889.600000pt;}
.y2_c01165{bottom:919.040000pt;}
.y3_c01165{bottom:924.160000pt;}
.y4_c01165{bottom:924.800000pt;}
.y6_c01165{bottom:925.440000pt;}
.y5_c01165{bottom:926.080000pt;}
.y7_c01165{bottom:926.720000pt;}
.y8_c01165{bottom:927.360000pt;}
.y1_c01165{bottom:985.600000pt;}
.h12_c01165{height:27.645000pt;}
.h10_c01165{height:29.948750pt;}
.h9_c01165{height:34.556250pt;}
.he_c01165{height:36.860000pt;}
.hd_c01165{height:39.163750pt;}
.h7_c01165{height:41.467500pt;}
.h5_c01165{height:43.771250pt;}
.h3_c01165{height:46.075000pt;}
.h6_c01165{height:48.378750pt;}
.hf_c01165{height:50.682500pt;}
.hb_c01165{height:51.195000pt;}
.h13_c01165{height:52.986250pt;}
.hc_c01165{height:55.290000pt;}
.h2_c01165{height:57.593750pt;}
.h8_c01165{height:59.897500pt;}
.ha_c01165{height:62.201250pt;}
.h4_c01165{height:65.017500pt;}
.h11_c01165{height:80.631250pt;}
.h1_c01165{height:1021.333333pt;}
.h0_c01165{height:1021.440000pt;}
.w0_c01165{width:691.840000pt;}
.w1_c01165{width:692.000000pt;}
.x0_c01165{left:0.000000pt;}
.x2_c01165{left:53.760000pt;}
.x17_c01165{left:55.040000pt;}
.x25_c01165{left:56.320000pt;}
.x3_c01165{left:126.720000pt;}
.x11_c01165{left:128.640000pt;}
.x2b_c01165{left:129.920000pt;}
.x2c_c01165{left:167.040000pt;}
.x12_c01165{left:193.280000pt;}
.xa_c01165{left:203.520000pt;}
.x13_c01165{left:204.800000pt;}
.xe_c01165{left:232.320000pt;}
.xb_c01165{left:241.920000pt;}
.x1b_c01165{left:243.200000pt;}
.x26_c01165{left:254.080000pt;}
.x16_c01165{left:279.680000pt;}
.x22_c01165{left:281.600000pt;}
.x19_c01165{left:289.920000pt;}
.x1c_c01165{left:291.200000pt;}
.x18_c01165{left:319.360000pt;}
.x21_c01165{left:320.640000pt;}
.x1d_c01165{left:328.320000pt;}
.x1f_c01165{left:358.400000pt;}
.xf_c01165{left:376.320000pt;}
.x10_c01165{left:414.720000pt;}
.x27_c01165{left:416.640000pt;}
.x1e_c01165{left:449.280000pt;}
.x24_c01165{left:475.520000pt;}
.x4_c01165{left:483.840000pt;}
.x20_c01165{left:485.120000pt;}
.xc_c01165{left:501.760000pt;}
.x5_c01165{left:503.040000pt;}
.x28_c01165{left:504.960000pt;}
.x6_c01165{left:551.040000pt;}
.x14_c01165{left:552.320000pt;}
.x2d_c01165{left:553.600000pt;}
.x7_c01165{left:580.480000pt;}
.x15_c01165{left:581.760000pt;}
.x2e_c01165{left:583.040000pt;}
.x1_c01165{left:598.400000pt;}
.x1a_c01165{left:610.560000pt;}
.xd_c01165{left:618.880000pt;}
.x8_c01165{left:620.160000pt;}
.x29_c01165{left:621.440000pt;}
.x9_c01165{left:637.440000pt;}
.x23_c01165{left:638.720000pt;}
.x2a_c01165{left:640.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_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_7d85f5c824db507607e7c3e8.woff2')format("woff");}.ff1_c01166{font-family:ff1_c01166;line-height:1.109863;font-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_c01166{transform:matrix(0.104175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104175,0.000000,0.000000,0.250000,0,0);}
.m3e_c01166{transform:matrix(0.177600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177600,0.000000,0.000000,0.250000,0,0);}
.m2_c01166{transform:matrix(0.195775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195775,0.000000,0.000000,0.250000,0,0);}
.m10_c01166{transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);}
.md_c01166{transform:matrix(0.208775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208775,0.000000,0.000000,0.250000,0,0);}
.m29_c01166{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);}
.m43_c01166{transform:matrix(0.232475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232475,0.000000,0.000000,0.250000,0,0);}
.m3f_c01166{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m38_c01166{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m3c_c01166{transform:matrix(0.241550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241550,0.000000,0.000000,0.250000,0,0);}
.m30_c01166{transform:matrix(0.246925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246925,0.000000,0.000000,0.250000,0,0);}
.m8_c01166{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m1e_c01166{transform:matrix(0.247975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247975,0.000000,0.000000,0.250000,0,0);}
.m2a_c01166{transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);}
.m25_c01166{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01166{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);}
.m37_c01166{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01166{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m15_c01166{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.me_c01166{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m12_c01166{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);}
.m41_c01166{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);}
.m32_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);}
.m19_c01166{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);}
.m33_c01166{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m45_c01166{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01166{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);}
.m39_c01166{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m21_c01166{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_c01166{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m34_c01166{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1_c01166{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01166{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m11_c01166{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01166{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m9_c01166{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m40_c01166{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m6_c01166{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m4_c01166{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01166{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m16_c01166{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m36_c01166{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m24_c01166{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m47_c01166{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m14_c01166{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m20_c01166{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m22_c01166{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01166{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_c01166{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);}
.m27_c01166{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01166{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_c01166{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01166{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.mc_c01166{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);}
.m0_c01166{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01166{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);}
.m35_c01166{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m5_c01166{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);}
.ma_c01166{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m31_c01166{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m13_c01166{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);}
.m46_c01166{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m17_c01166{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m49_c01166{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m3_c01166{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);}
.m3a_c01166{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m44_c01166{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);}
.m18_c01166{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);}
.m1f_c01166{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m42_c01166{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01166{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m48_c01166{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m23_c01166{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.mb_c01166{transform:matrix(0.885000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.885000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.885000,0.000000,0.000000,0.250000,0,0);}
.v1_c01166{vertical-align:-14.400000px;}
.v0_c01166{vertical-align:0.000000px;}
.ls0_c01166{letter-spacing:0.000000px;}
.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;}
}
.ws2_c01166{word-spacing:0.000000px;}
.ws1_c01166{word-spacing:6.251520px;}
.ws0_c01166{word-spacing:53.884480px;}
.fc0_c01166{color:transparent;}
.fsc_c01166{font-size:34.560000px;}
.fse_c01166{font-size:37.440000px;}
.fs3_c01166{font-size:40.320000px;}
.fs9_c01166{font-size:46.080000px;}
.fsa_c01166{font-size:48.960000px;}
.fs4_c01166{font-size:51.840000px;}
.fs8_c01166{font-size:54.720000px;}
.fs7_c01166{font-size:57.600000px;}
.fs1_c01166{font-size:60.480000px;}
.fsd_c01166{font-size:63.360000px;}
.fs11_c01166{font-size:66.240000px;}
.fs5_c01166{font-size:69.120000px;}
.fs0_c01166{font-size:72.000000px;}
.fs10_c01166{font-size:74.880000px;}
.fsf_c01166{font-size:77.760000px;}
.fsb_c01166{font-size:97.920000px;}
.fs2_c01166{font-size:100.800000px;}
.fs6_c01166{font-size:103.680000px;}
.y0_c01166{bottom:0.000000px;}
.y81_c01166{bottom:81.360000px;}
.y82_c01166{bottom:82.080000px;}
.y83_c01166{bottom:82.800000px;}
.y80_c01166{bottom:83.520000px;}
.y7f_c01166{bottom:84.240000px;}
.y7e_c01166{bottom:88.560000px;}
.y7d_c01166{bottom:123.120000px;}
.y7b_c01166{bottom:124.560000px;}
.y79_c01166{bottom:126.720000px;}
.y7c_c01166{bottom:127.440000px;}
.y7a_c01166{bottom:129.600000px;}
.y77_c01166{bottom:131.040000px;}
.y78_c01166{bottom:131.760000px;}
.y76_c01166{bottom:167.040000px;}
.y74_c01166{bottom:168.480000px;}
.y73_c01166{bottom:169.200000px;}
.y72_c01166{bottom:169.920000px;}
.y75_c01166{bottom:170.640000px;}
.y71_c01166{bottom:172.800000px;}
.y6e_c01166{bottom:210.240000px;}
.y70_c01166{bottom:210.960000px;}
.y6c_c01166{bottom:211.680000px;}
.y6f_c01166{bottom:213.120000px;}
.y6d_c01166{bottom:214.560000px;}
.y6b_c01166{bottom:215.280000px;}
.y6a_c01166{bottom:252.000000px;}
.y69_c01166{bottom:252.720000px;}
.y67_c01166{bottom:253.440000px;}
.y66_c01166{bottom:254.160000px;}
.y68_c01166{bottom:256.320000px;}
.y65_c01166{bottom:257.040000px;}
.y62_c01166{bottom:295.920000px;}
.y61_c01166{bottom:296.640000px;}
.y63_c01166{bottom:298.800000px;}
.y64_c01166{bottom:299.520000px;}
.y60_c01166{bottom:300.960000px;}
.y5d_c01166{bottom:339.120000px;}
.y5c_c01166{bottom:339.840000px;}
.y5e_c01166{bottom:340.560000px;}
.y5f_c01166{bottom:341.280000px;}
.y5b_c01166{bottom:342.720000px;}
.y58_c01166{bottom:382.320000px;}
.y56_c01166{bottom:383.040000px;}
.y5a_c01166{bottom:383.760000px;}
.y57_c01166{bottom:384.480000px;}
.y59_c01166{bottom:385.200000px;}
.y55_c01166{bottom:385.920000px;}
.y53_c01166{bottom:425.520000px;}
.y54_c01166{bottom:427.680000px;}
.y52_c01166{bottom:428.400000px;}
.y4e_c01166{bottom:468.000000px;}
.y51_c01166{bottom:468.720000px;}
.y50_c01166{bottom:469.440000px;}
.y4d_c01166{bottom:470.880000px;}
.y4f_c01166{bottom:471.600000px;}
.y49_c01166{bottom:511.200000px;}
.y4c_c01166{bottom:512.640000px;}
.y48_c01166{bottom:513.360000px;}
.y4a_c01166{bottom:514.080000px;}
.y4b_c01166{bottom:514.800000px;}
.y44_c01166{bottom:554.400000px;}
.y47_c01166{bottom:555.120000px;}
.y46_c01166{bottom:555.840000px;}
.y43_c01166{bottom:556.560000px;}
.y45_c01166{bottom:558.000000px;}
.y3f_c01166{bottom:596.880000px;}
.y40_c01166{bottom:597.600000px;}
.y3e_c01166{bottom:599.040000px;}
.y41_c01166{bottom:601.200000px;}
.y42_c01166{bottom:601.920000px;}
.y3a_c01166{bottom:640.080000px;}
.y39_c01166{bottom:642.240000px;}
.y3c_c01166{bottom:642.960000px;}
.y3d_c01166{bottom:643.680000px;}
.y3b_c01166{bottom:644.400000px;}
.y35_c01166{bottom:682.560000px;}
.y34_c01166{bottom:684.720000px;}
.y37_c01166{bottom:685.440000px;}
.y38_c01166{bottom:686.160000px;}
.y36_c01166{bottom:687.600000px;}
.y2f_c01166{bottom:724.320000px;}
.y30_c01166{bottom:726.480000px;}
.y33_c01166{bottom:727.200000px;}
.y2e_c01166{bottom:727.920000px;}
.y31_c01166{bottom:729.360000px;}
.y32_c01166{bottom:730.080000px;}
.y28_c01166{bottom:767.520000px;}
.y2a_c01166{bottom:768.960000px;}
.y27_c01166{bottom:769.680000px;}
.y29_c01166{bottom:771.120000px;}
.y2b_c01166{bottom:772.560000px;}
.y2d_c01166{bottom:773.280000px;}
.y2c_c01166{bottom:774.000000px;}
.y23_c01166{bottom:810.000000px;}
.y22_c01166{bottom:812.880000px;}
.y25_c01166{bottom:813.600000px;}
.y24_c01166{bottom:814.320000px;}
.y26_c01166{bottom:817.200000px;}
.y1d_c01166{bottom:852.480000px;}
.y1c_c01166{bottom:854.640000px;}
.y20_c01166{bottom:855.360000px;}
.y21_c01166{bottom:856.800000px;}
.y1e_c01166{bottom:857.520000px;}
.y1f_c01166{bottom:858.240000px;}
.y19_c01166{bottom:888.480000px;}
.y17_c01166{bottom:894.960000px;}
.y16_c01166{bottom:897.840000px;}
.y18_c01166{bottom:900.000000px;}
.y1a_c01166{bottom:900.720000px;}
.y1b_c01166{bottom:902.880000px;}
.y11_c01166{bottom:938.880000px;}
.y10_c01166{bottom:939.600000px;}
.y14_c01166{bottom:941.040000px;}
.y12_c01166{bottom:942.480000px;}
.y13_c01166{bottom:943.200000px;}
.y15_c01166{bottom:943.920000px;}
.yb_c01166{bottom:974.880000px;}
.yc_c01166{bottom:982.800000px;}
.ya_c01166{bottom:983.520000px;}
.yd_c01166{bottom:985.680000px;}
.ye_c01166{bottom:986.400000px;}
.yf_c01166{bottom:988.560000px;}
.y3_c01166{bottom:1018.080000px;}
.y7_c01166{bottom:1018.800000px;}
.y2_c01166{bottom:1026.720000px;}
.y5_c01166{bottom:1028.160000px;}
.y4_c01166{bottom:1028.880000px;}
.y6_c01166{bottom:1030.320000px;}
.y8_c01166{bottom:1032.480000px;}
.y9_c01166{bottom:1033.200000px;}
.y1_c01166{bottom:1089.360000px;}
.he_c01166{height:31.100625px;}
.h10_c01166{height:33.692344px;}
.h5_c01166{height:36.284062px;}
.hb_c01166{height:41.467500px;}
.hc_c01166{height:44.059219px;}
.h6_c01166{height:46.650937px;}
.ha_c01166{height:49.242656px;}
.h14_c01166{height:50.392969px;}
.h9_c01166{height:51.834375px;}
.h3_c01166{height:54.426094px;}
.hf_c01166{height:57.017812px;}
.h13_c01166{height:59.609531px;}
.h7_c01166{height:62.201250px;}
.h2_c01166{height:64.792969px;}
.h12_c01166{height:67.384687px;}
.h11_c01166{height:69.976406px;}
.hd_c01166{height:88.118437px;}
.h4_c01166{height:90.710156px;}
.h8_c01166{height:93.301875px;}
.h1_c01166{height:1146.750000px;}
.h0_c01166{height:1146.960000px;}
.w0_c01166{width:776.160000px;}
.w1_c01166{width:776.250000px;}
.x0_c01166{left:0.000000px;}
.x2_c01166{left:61.200000px;}
.x1f_c01166{left:62.640000px;}
.x23_c01166{left:103.680000px;}
.x3_c01166{left:143.280000px;}
.x1d_c01166{left:144.720000px;}
.x10_c01166{left:228.960000px;}
.x4_c01166{left:231.120000px;}
.x19_c01166{left:241.200000px;}
.x5_c01166{left:272.160000px;}
.x14_c01166{left:282.960000px;}
.x24_c01166{left:284.400000px;}
.x1e_c01166{left:315.360000px;}
.x11_c01166{left:326.880000px;}
.x15_c01166{left:336.240000px;}
.x25_c01166{left:337.680000px;}
.x20_c01166{left:362.160000px;}
.x12_c01166{left:369.360000px;}
.x26_c01166{left:370.800000px;}
.x16_c01166{left:380.880000px;}
.x21_c01166{left:402.480000px;}
.x6_c01166{left:413.280000px;}
.x7_c01166{left:455.760000px;}
.x18_c01166{left:534.240000px;}
.x8_c01166{left:543.600000px;}
.x13_c01166{left:545.040000px;}
.x1a_c01166{left:565.200000px;}
.x9_c01166{left:566.640000px;}
.xe_c01166{left:587.520000px;}
.xa_c01166{left:619.920000px;}
.x17_c01166{left:622.080000px;}
.x1b_c01166{left:644.400000px;}
.xb_c01166{left:654.480000px;}
.x1_c01166{left:658.800000px;}
.x1c_c01166{left:664.560000px;}
.xc_c01166{left:686.880000px;}
.xf_c01166{left:697.680000px;}
.xd_c01166{left:717.840000px;}
.x22_c01166{left:719.280000px;}
@media print{
.v1_c01166{vertical-align:-12.800000pt;}
.v0_c01166{vertical-align:0.000000pt;}
.ls0_c01166{letter-spacing:0.000000pt;}
.ws2_c01166{word-spacing:0.000000pt;}
.ws1_c01166{word-spacing:5.556907pt;}
.ws0_c01166{word-spacing:47.897316pt;}
.fsc_c01166{font-size:30.720000pt;}
.fse_c01166{font-size:33.280000pt;}
.fs3_c01166{font-size:35.840000pt;}
.fs9_c01166{font-size:40.960000pt;}
.fsa_c01166{font-size:43.520000pt;}
.fs4_c01166{font-size:46.080000pt;}
.fs8_c01166{font-size:48.640000pt;}
.fs7_c01166{font-size:51.200000pt;}
.fs1_c01166{font-size:53.760000pt;}
.fsd_c01166{font-size:56.320000pt;}
.fs11_c01166{font-size:58.880000pt;}
.fs5_c01166{font-size:61.440000pt;}
.fs0_c01166{font-size:64.000000pt;}
.fs10_c01166{font-size:66.560000pt;}
.fsf_c01166{font-size:69.120000pt;}
.fsb_c01166{font-size:87.040000pt;}
.fs2_c01166{font-size:89.600000pt;}
.fs6_c01166{font-size:92.160000pt;}
.y0_c01166{bottom:0.000000pt;}
.y81_c01166{bottom:72.320000pt;}
.y82_c01166{bottom:72.960000pt;}
.y83_c01166{bottom:73.600000pt;}
.y80_c01166{bottom:74.240000pt;}
.y7f_c01166{bottom:74.880000pt;}
.y7e_c01166{bottom:78.720000pt;}
.y7d_c01166{bottom:109.440000pt;}
.y7b_c01166{bottom:110.720000pt;}
.y79_c01166{bottom:112.640000pt;}
.y7c_c01166{bottom:113.280000pt;}
.y7a_c01166{bottom:115.200000pt;}
.y77_c01166{bottom:116.480000pt;}
.y78_c01166{bottom:117.120000pt;}
.y76_c01166{bottom:148.480000pt;}
.y74_c01166{bottom:149.760000pt;}
.y73_c01166{bottom:150.400000pt;}
.y72_c01166{bottom:151.040000pt;}
.y75_c01166{bottom:151.680000pt;}
.y71_c01166{bottom:153.600000pt;}
.y6e_c01166{bottom:186.880000pt;}
.y70_c01166{bottom:187.520000pt;}
.y6c_c01166{bottom:188.160000pt;}
.y6f_c01166{bottom:189.440000pt;}
.y6d_c01166{bottom:190.720000pt;}
.y6b_c01166{bottom:191.360000pt;}
.y6a_c01166{bottom:224.000000pt;}
.y69_c01166{bottom:224.640000pt;}
.y67_c01166{bottom:225.280000pt;}
.y66_c01166{bottom:225.920000pt;}
.y68_c01166{bottom:227.840000pt;}
.y65_c01166{bottom:228.480000pt;}
.y62_c01166{bottom:263.040000pt;}
.y61_c01166{bottom:263.680000pt;}
.y63_c01166{bottom:265.600000pt;}
.y64_c01166{bottom:266.240000pt;}
.y60_c01166{bottom:267.520000pt;}
.y5d_c01166{bottom:301.440000pt;}
.y5c_c01166{bottom:302.080000pt;}
.y5e_c01166{bottom:302.720000pt;}
.y5f_c01166{bottom:303.360000pt;}
.y5b_c01166{bottom:304.640000pt;}
.y58_c01166{bottom:339.840000pt;}
.y56_c01166{bottom:340.480000pt;}
.y5a_c01166{bottom:341.120000pt;}
.y57_c01166{bottom:341.760000pt;}
.y59_c01166{bottom:342.400000pt;}
.y55_c01166{bottom:343.040000pt;}
.y53_c01166{bottom:378.240000pt;}
.y54_c01166{bottom:380.160000pt;}
.y52_c01166{bottom:380.800000pt;}
.y4e_c01166{bottom:416.000000pt;}
.y51_c01166{bottom:416.640000pt;}
.y50_c01166{bottom:417.280000pt;}
.y4d_c01166{bottom:418.560000pt;}
.y4f_c01166{bottom:419.200000pt;}
.y49_c01166{bottom:454.400000pt;}
.y4c_c01166{bottom:455.680000pt;}
.y48_c01166{bottom:456.320000pt;}
.y4a_c01166{bottom:456.960000pt;}
.y4b_c01166{bottom:457.600000pt;}
.y44_c01166{bottom:492.800000pt;}
.y47_c01166{bottom:493.440000pt;}
.y46_c01166{bottom:494.080000pt;}
.y43_c01166{bottom:494.720000pt;}
.y45_c01166{bottom:496.000000pt;}
.y3f_c01166{bottom:530.560000pt;}
.y40_c01166{bottom:531.200000pt;}
.y3e_c01166{bottom:532.480000pt;}
.y41_c01166{bottom:534.400000pt;}
.y42_c01166{bottom:535.040000pt;}
.y3a_c01166{bottom:568.960000pt;}
.y39_c01166{bottom:570.880000pt;}
.y3c_c01166{bottom:571.520000pt;}
.y3d_c01166{bottom:572.160000pt;}
.y3b_c01166{bottom:572.800000pt;}
.y35_c01166{bottom:606.720000pt;}
.y34_c01166{bottom:608.640000pt;}
.y37_c01166{bottom:609.280000pt;}
.y38_c01166{bottom:609.920000pt;}
.y36_c01166{bottom:611.200000pt;}
.y2f_c01166{bottom:643.840000pt;}
.y30_c01166{bottom:645.760000pt;}
.y33_c01166{bottom:646.400000pt;}
.y2e_c01166{bottom:647.040000pt;}
.y31_c01166{bottom:648.320000pt;}
.y32_c01166{bottom:648.960000pt;}
.y28_c01166{bottom:682.240000pt;}
.y2a_c01166{bottom:683.520000pt;}
.y27_c01166{bottom:684.160000pt;}
.y29_c01166{bottom:685.440000pt;}
.y2b_c01166{bottom:686.720000pt;}
.y2d_c01166{bottom:687.360000pt;}
.y2c_c01166{bottom:688.000000pt;}
.y23_c01166{bottom:720.000000pt;}
.y22_c01166{bottom:722.560000pt;}
.y25_c01166{bottom:723.200000pt;}
.y24_c01166{bottom:723.840000pt;}
.y26_c01166{bottom:726.400000pt;}
.y1d_c01166{bottom:757.760000pt;}
.y1c_c01166{bottom:759.680000pt;}
.y20_c01166{bottom:760.320000pt;}
.y21_c01166{bottom:761.600000pt;}
.y1e_c01166{bottom:762.240000pt;}
.y1f_c01166{bottom:762.880000pt;}
.y19_c01166{bottom:789.760000pt;}
.y17_c01166{bottom:795.520000pt;}
.y16_c01166{bottom:798.080000pt;}
.y18_c01166{bottom:800.000000pt;}
.y1a_c01166{bottom:800.640000pt;}
.y1b_c01166{bottom:802.560000pt;}
.y11_c01166{bottom:834.560000pt;}
.y10_c01166{bottom:835.200000pt;}
.y14_c01166{bottom:836.480000pt;}
.y12_c01166{bottom:837.760000pt;}
.y13_c01166{bottom:838.400000pt;}
.y15_c01166{bottom:839.040000pt;}
.yb_c01166{bottom:866.560000pt;}
.yc_c01166{bottom:873.600000pt;}
.ya_c01166{bottom:874.240000pt;}
.yd_c01166{bottom:876.160000pt;}
.ye_c01166{bottom:876.800000pt;}
.yf_c01166{bottom:878.720000pt;}
.y3_c01166{bottom:904.960000pt;}
.y7_c01166{bottom:905.600000pt;}
.y2_c01166{bottom:912.640000pt;}
.y5_c01166{bottom:913.920000pt;}
.y4_c01166{bottom:914.560000pt;}
.y6_c01166{bottom:915.840000pt;}
.y8_c01166{bottom:917.760000pt;}
.y9_c01166{bottom:918.400000pt;}
.y1_c01166{bottom:968.320000pt;}
.he_c01166{height:27.645000pt;}
.h10_c01166{height:29.948750pt;}
.h5_c01166{height:32.252500pt;}
.hb_c01166{height:36.860000pt;}
.hc_c01166{height:39.163750pt;}
.h6_c01166{height:41.467500pt;}
.ha_c01166{height:43.771250pt;}
.h14_c01166{height:44.793750pt;}
.h9_c01166{height:46.075000pt;}
.h3_c01166{height:48.378750pt;}
.hf_c01166{height:50.682500pt;}
.h13_c01166{height:52.986250pt;}
.h7_c01166{height:55.290000pt;}
.h2_c01166{height:57.593750pt;}
.h12_c01166{height:59.897500pt;}
.h11_c01166{height:62.201250pt;}
.hd_c01166{height:78.327500pt;}
.h4_c01166{height:80.631250pt;}
.h8_c01166{height:82.935000pt;}
.h1_c01166{height:1019.333333pt;}
.h0_c01166{height:1019.520000pt;}
.w0_c01166{width:689.920000pt;}
.w1_c01166{width:690.000000pt;}
.x0_c01166{left:0.000000pt;}
.x2_c01166{left:54.400000pt;}
.x1f_c01166{left:55.680000pt;}
.x23_c01166{left:92.160000pt;}
.x3_c01166{left:127.360000pt;}
.x1d_c01166{left:128.640000pt;}
.x10_c01166{left:203.520000pt;}
.x4_c01166{left:205.440000pt;}
.x19_c01166{left:214.400000pt;}
.x5_c01166{left:241.920000pt;}
.x14_c01166{left:251.520000pt;}
.x24_c01166{left:252.800000pt;}
.x1e_c01166{left:280.320000pt;}
.x11_c01166{left:290.560000pt;}
.x15_c01166{left:298.880000pt;}
.x25_c01166{left:300.160000pt;}
.x20_c01166{left:321.920000pt;}
.x12_c01166{left:328.320000pt;}
.x26_c01166{left:329.600000pt;}
.x16_c01166{left:338.560000pt;}
.x21_c01166{left:357.760000pt;}
.x6_c01166{left:367.360000pt;}
.x7_c01166{left:405.120000pt;}
.x18_c01166{left:474.880000pt;}
.x8_c01166{left:483.200000pt;}
.x13_c01166{left:484.480000pt;}
.x1a_c01166{left:502.400000pt;}
.x9_c01166{left:503.680000pt;}
.xe_c01166{left:522.240000pt;}
.xa_c01166{left:551.040000pt;}
.x17_c01166{left:552.960000pt;}
.x1b_c01166{left:572.800000pt;}
.xb_c01166{left:581.760000pt;}
.x1_c01166{left:585.600000pt;}
.x1c_c01166{left:590.720000pt;}
.xc_c01166{left:610.560000pt;}
.xf_c01166{left:620.160000pt;}
.xd_c01166{left:638.080000pt;}
.x22_c01166{left:639.360000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d81bfa891cf26af268279f79.woff2')format("woff");}.ff1_c01167{font-family:ff1_c01167;line-height:1.109863;font-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_c01167{transform:matrix(0.210800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210800,0.000000,0.000000,0.250000,0,0);}
.m36_c01167{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);}
.m1_c01167{transform:matrix(0.232600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232600,0.000000,0.000000,0.250000,0,0);}
.m2b_c01167{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01167{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m18_c01167{transform:matrix(0.241550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241550,0.000000,0.000000,0.250000,0,0);}
.m1c_c01167{transform:matrix(0.244150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244150,0.000000,0.000000,0.250000,0,0);}
.m13_c01167{transform:matrix(0.246925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246925,0.000000,0.000000,0.250000,0,0);}
.m10_c01167{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m19_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);}
.m26_c01167{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);}
.m34_c01167{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m21_c01167{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01167{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01167{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);}
.m30_c01167{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);}
.m41_c01167{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m3_c01167{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);}
.m42_c01167{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.md_c01167{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_c01167{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01167{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_c01167{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);}
.m4b_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);}
.m3b_c01167{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.ma_c01167{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m23_c01167{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m5_c01167{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m16_c01167{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01167{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01167{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m7_c01167{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01167{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m6_c01167{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01167{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m43_c01167{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m15_c01167{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01167{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m35_c01167{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m49_c01167{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);}
.m45_c01167{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m44_c01167{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_c01167{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);}
.m38_c01167{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01167{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m25_c01167{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m0_c01167{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);}
.m47_c01167{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01167{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m31_c01167{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m17_c01167{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m4a_c01167{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);}
.m2f_c01167{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);}
.m3c_c01167{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m14_c01167{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);}
.m27_c01167{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m40_c01167{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01167{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m22_c01167{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m29_c01167{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m2_c01167{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m37_c01167{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);}
.me_c01167{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);}
.m12_c01167{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01167{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);}
.m39_c01167{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);}
.m32_c01167{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01167{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);}
.m4_c01167{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m28_c01167{transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01167{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m48_c01167{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m46_c01167{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01167{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01167{transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);}
.mb_c01167{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m20_c01167{transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);}
.v2_c01167{vertical-align:-8.640000px;}
.v3_c01167{vertical-align:-5.760000px;}
.v1_c01167{vertical-align:-2.880000px;}
.v0_c01167{vertical-align:0.000000px;}
.ls0_c01167{letter-spacing:0.000000px;}
.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;}
}
.ws5_c01167{word-spacing:0.000000px;}
.ws4_c01167{word-spacing:3.499200px;}
.ws0_c01167{word-spacing:5.218560px;}
.ws3_c01167{word-spacing:9.474000px;}
.ws2_c01167{word-spacing:11.856000px;}
.ws1_c01167{word-spacing:15.331058px;}
.fc0_c01167{color:transparent;}
.fsd_c01167{font-size:14.400000px;}
.fsc_c01167{font-size:20.160000px;}
.fsa_c01167{font-size:34.560000px;}
.fs11_c01167{font-size:37.440000px;}
.fs7_c01167{font-size:40.320000px;}
.fs2_c01167{font-size:43.200000px;}
.fsf_c01167{font-size:46.080000px;}
.fse_c01167{font-size:48.960000px;}
.fs4_c01167{font-size:51.840000px;}
.fs9_c01167{font-size:54.720000px;}
.fs6_c01167{font-size:57.600000px;}
.fs0_c01167{font-size:60.480000px;}
.fs3_c01167{font-size:63.360000px;}
.fs13_c01167{font-size:66.240000px;}
.fs8_c01167{font-size:69.120000px;}
.fs5_c01167{font-size:72.000000px;}
.fsb_c01167{font-size:74.880000px;}
.fs1_c01167{font-size:77.760000px;}
.fs12_c01167{font-size:80.640000px;}
.fs10_c01167{font-size:89.280000px;}
.y0_c01167{bottom:0.000000px;}
.y9d_c01167{bottom:15.120000px;}
.y9c_c01167{bottom:15.840000px;}
.y9e_c01167{bottom:17.280000px;}
.y9b_c01167{bottom:18.720000px;}
.y60_c01167{bottom:19.440000px;}
.y5f_c01167{bottom:24.480000px;}
.y99_c01167{bottom:54.720000px;}
.y98_c01167{bottom:56.160000px;}
.y9a_c01167{bottom:56.880000px;}
.y97_c01167{bottom:57.600000px;}
.y96_c01167{bottom:59.040000px;}
.y5e_c01167{bottom:59.760000px;}
.y5d_c01167{bottom:64.800000px;}
.y95_c01167{bottom:98.640000px;}
.y94_c01167{bottom:99.360000px;}
.y93_c01167{bottom:101.520000px;}
.y5c_c01167{bottom:102.240000px;}
.y5b_c01167{bottom:108.000000px;}
.y92_c01167{bottom:141.840000px;}
.y91_c01167{bottom:142.560000px;}
.y5a_c01167{bottom:143.280000px;}
.y58_c01167{bottom:144.000000px;}
.y90_c01167{bottom:144.720000px;}
.y59_c01167{bottom:147.600000px;}
.y57_c01167{bottom:151.200000px;}
.y8e_c01167{bottom:185.760000px;}
.y8f_c01167{bottom:186.480000px;}
.y54_c01167{bottom:188.640000px;}
.y56_c01167{bottom:189.360000px;}
.y55_c01167{bottom:190.080000px;}
.y53_c01167{bottom:192.960000px;}
.y8d_c01167{bottom:227.520000px;}
.y52_c01167{bottom:228.240000px;}
.y8b_c01167{bottom:231.840000px;}
.y8c_c01167{bottom:232.560000px;}
.y51_c01167{bottom:235.440000px;}
.y8a_c01167{bottom:271.440000px;}
.y89_c01167{bottom:274.320000px;}
.y50_c01167{bottom:275.040000px;}
.y88_c01167{bottom:275.760000px;}
.y4f_c01167{bottom:278.640000px;}
.y87_c01167{bottom:316.080000px;}
.y86_c01167{bottom:316.800000px;}
.y4e_c01167{bottom:317.520000px;}
.y85_c01167{bottom:318.240000px;}
.y4d_c01167{bottom:321.120000px;}
.y83_c01167{bottom:358.560000px;}
.y4c_c01167{bottom:360.000000px;}
.y84_c01167{bottom:360.720000px;}
.y82_c01167{bottom:361.440000px;}
.y4b_c01167{bottom:362.880000px;}
.y81_c01167{bottom:401.760000px;}
.y80_c01167{bottom:402.480000px;}
.y4a_c01167{bottom:403.200000px;}
.y7f_c01167{bottom:404.640000px;}
.y49_c01167{bottom:406.080000px;}
.y7e_c01167{bottom:444.240000px;}
.y48_c01167{bottom:445.680000px;}
.y7d_c01167{bottom:447.120000px;}
.y7c_c01167{bottom:447.840000px;}
.y47_c01167{bottom:449.280000px;}
.y46_c01167{bottom:487.440000px;}
.y44_c01167{bottom:488.160000px;}
.y7b_c01167{bottom:488.880000px;}
.y45_c01167{bottom:490.320000px;}
.y43_c01167{bottom:491.040000px;}
.y42_c01167{bottom:530.640000px;}
.y79_c01167{bottom:531.360000px;}
.y7a_c01167{bottom:532.080000px;}
.y78_c01167{bottom:532.800000px;}
.y41_c01167{bottom:533.520000px;}
.y40_c01167{bottom:572.400000px;}
.y3c_c01167{bottom:573.120000px;}
.y77_c01167{bottom:573.840000px;}
.y3e_c01167{bottom:574.560000px;}
.y3b_c01167{bottom:575.280000px;}
.y3f_c01167{bottom:576.000000px;}
.y3d_c01167{bottom:576.720000px;}
.y39_c01167{bottom:615.600000px;}
.y75_c01167{bottom:616.320000px;}
.y3a_c01167{bottom:617.040000px;}
.y76_c01167{bottom:617.760000px;}
.y38_c01167{bottom:618.480000px;}
.y73_c01167{bottom:619.200000px;}
.y74_c01167{bottom:619.920000px;}
.y37_c01167{bottom:658.800000px;}
.y72_c01167{bottom:660.240000px;}
.y36_c01167{bottom:660.960000px;}
.y71_c01167{bottom:661.680000px;}
.y70_c01167{bottom:662.400000px;}
.y32_c01167{bottom:701.280000px;}
.y35_c01167{bottom:702.000000px;}
.y33_c01167{bottom:702.720000px;}
.y31_c01167{bottom:703.440000px;}
.y6f_c01167{bottom:704.160000px;}
.y34_c01167{bottom:704.880000px;}
.y2f_c01167{bottom:743.760000px;}
.y30_c01167{bottom:745.200000px;}
.y2e_c01167{bottom:745.920000px;}
.y6e_c01167{bottom:746.640000px;}
.y61_c01167{bottom:748.080000px;}
.y62_c01167{bottom:748.800000px;}
.y2d_c01167{bottom:780.480000px;}
.y28_c01167{bottom:786.960000px;}
.y2a_c01167{bottom:787.680000px;}
.y27_c01167{bottom:788.400000px;}
.y6d_c01167{bottom:789.840000px;}
.y2c_c01167{bottom:790.560000px;}
.y29_c01167{bottom:791.280000px;}
.y2b_c01167{bottom:792.000000px;}
.y24_c01167{bottom:830.160000px;}
.y26_c01167{bottom:830.880000px;}
.y21_c01167{bottom:831.600000px;}
.y6a_c01167{bottom:832.320000px;}
.y22_c01167{bottom:833.040000px;}
.y25_c01167{bottom:833.760000px;}
.y6b_c01167{bottom:835.200000px;}
.y6c_c01167{bottom:835.920000px;}
.y23_c01167{bottom:836.640000px;}
.y1d_c01167{bottom:872.640000px;}
.y1c_c01167{bottom:873.360000px;}
.y1e_c01167{bottom:874.800000px;}
.y68_c01167{bottom:875.520000px;}
.y20_c01167{bottom:876.240000px;}
.y1f_c01167{bottom:876.960000px;}
.y67_c01167{bottom:877.680000px;}
.y69_c01167{bottom:878.400000px;}
.y19_c01167{bottom:915.840000px;}
.y18_c01167{bottom:916.560000px;}
.y65_c01167{bottom:919.440000px;}
.y1a_c01167{bottom:920.160000px;}
.y1b_c01167{bottom:920.880000px;}
.y66_c01167{bottom:921.600000px;}
.y14_c01167{bottom:957.600000px;}
.y12_c01167{bottom:959.040000px;}
.y13_c01167{bottom:960.480000px;}
.y17_c01167{bottom:961.200000px;}
.y63_c01167{bottom:961.920000px;}
.y15_c01167{bottom:962.640000px;}
.y16_c01167{bottom:963.360000px;}
.y64_c01167{bottom:964.080000px;}
.yb_c01167{bottom:1000.800000px;}
.yc_c01167{bottom:1001.520000px;}
.ye_c01167{bottom:1002.960000px;}
.yd_c01167{bottom:1004.400000px;}
.y10_c01167{bottom:1005.120000px;}
.y11_c01167{bottom:1005.840000px;}
.yf_c01167{bottom:1006.560000px;}
.y2_c01167{bottom:1042.560000px;}
.y1_c01167{bottom:1043.280000px;}
.y4_c01167{bottom:1045.440000px;}
.y6_c01167{bottom:1046.160000px;}
.y3_c01167{bottom:1047.600000px;}
.ya_c01167{bottom:1048.320000px;}
.y5_c01167{bottom:1049.040000px;}
.y7_c01167{bottom:1049.760000px;}
.y8_c01167{bottom:1050.480000px;}
.y9_c01167{bottom:1105.200000px;}
.h10_c01167{height:12.958594px;}
.hf_c01167{height:18.142031px;}
.hd_c01167{height:31.100625px;}
.h14_c01167{height:33.692344px;}
.h9_c01167{height:36.284062px;}
.h4_c01167{height:38.875781px;}
.h12_c01167{height:41.467500px;}
.h11_c01167{height:44.059219px;}
.h6_c01167{height:46.650937px;}
.hc_c01167{height:49.242656px;}
.h8_c01167{height:51.834375px;}
.h2_c01167{height:54.426094px;}
.h5_c01167{height:57.017812px;}
.h16_c01167{height:59.609531px;}
.hb_c01167{height:62.201250px;}
.h7_c01167{height:64.792969px;}
.ha_c01167{height:67.096406px;}
.he_c01167{height:67.384687px;}
.h3_c01167{height:69.976406px;}
.h15_c01167{height:72.568125px;}
.h13_c01167{height:80.343281px;}
.h0_c01167{height:1155.600000px;}
.h1_c01167{height:1155.750000px;}
.w1_c01167{width:773.250000px;}
.w0_c01167{width:773.280000px;}
.x0_c01167{left:0.000000px;}
.x1_c01167{left:59.760000px;}
.x13_c01167{left:112.320000px;}
.x17_c01167{left:120.960000px;}
.x2_c01167{left:141.840000px;}
.x3_c01167{left:239.040000px;}
.x15_c01167{left:271.440000px;}
.x4_c01167{left:280.800000px;}
.x18_c01167{left:293.040000px;}
.x20_c01167{left:302.400000px;}
.x1a_c01167{left:324.000000px;}
.x1e_c01167{left:334.800000px;}
.x21_c01167{left:355.680000px;}
.x14_c01167{left:367.920000px;}
.x1f_c01167{left:378.720000px;}
.x22_c01167{left:401.040000px;}
.x5_c01167{left:411.120000px;}
.x19_c01167{left:422.640000px;}
.x1b_c01167{left:443.520000px;}
.x1d_c01167{left:453.600000px;}
.x16_c01167{left:455.040000px;}
.x6_c01167{left:465.840000px;}
.x1c_c01167{left:498.240000px;}
.xe_c01167{left:532.080000px;}
.x7_c01167{left:542.880000px;}
.xf_c01167{left:564.480000px;}
.x8_c01167{left:574.560000px;}
.x10_c01167{left:585.360000px;}
.x28_c01167{left:596.160000px;}
.x26_c01167{left:617.760000px;}
.x23_c01167{left:619.200000px;}
.xa_c01167{left:630.000000px;}
.x11_c01167{left:642.960000px;}
.x24_c01167{left:652.320000px;}
.xb_c01167{left:663.120000px;}
.x9_c01167{left:667.440000px;}
.x25_c01167{left:684.720000px;}
.x12_c01167{left:695.520000px;}
.xc_c01167{left:706.320000px;}
.x27_c01167{left:716.400000px;}
.xd_c01167{left:727.200000px;}
@media print{
.v2_c01167{vertical-align:-7.680000pt;}
.v3_c01167{vertical-align:-5.120000pt;}
.v1_c01167{vertical-align:-2.560000pt;}
.v0_c01167{vertical-align:0.000000pt;}
.ls0_c01167{letter-spacing:0.000000pt;}
.ws5_c01167{word-spacing:0.000000pt;}
.ws4_c01167{word-spacing:3.110400pt;}
.ws0_c01167{word-spacing:4.638720pt;}
.ws3_c01167{word-spacing:8.421333pt;}
.ws2_c01167{word-spacing:10.538667pt;}
.ws1_c01167{word-spacing:13.627607pt;}
.fsd_c01167{font-size:12.800000pt;}
.fsc_c01167{font-size:17.920000pt;}
.fsa_c01167{font-size:30.720000pt;}
.fs11_c01167{font-size:33.280000pt;}
.fs7_c01167{font-size:35.840000pt;}
.fs2_c01167{font-size:38.400000pt;}
.fsf_c01167{font-size:40.960000pt;}
.fse_c01167{font-size:43.520000pt;}
.fs4_c01167{font-size:46.080000pt;}
.fs9_c01167{font-size:48.640000pt;}
.fs6_c01167{font-size:51.200000pt;}
.fs0_c01167{font-size:53.760000pt;}
.fs3_c01167{font-size:56.320000pt;}
.fs13_c01167{font-size:58.880000pt;}
.fs8_c01167{font-size:61.440000pt;}
.fs5_c01167{font-size:64.000000pt;}
.fsb_c01167{font-size:66.560000pt;}
.fs1_c01167{font-size:69.120000pt;}
.fs12_c01167{font-size:71.680000pt;}
.fs10_c01167{font-size:79.360000pt;}
.y0_c01167{bottom:0.000000pt;}
.y9d_c01167{bottom:13.440000pt;}
.y9c_c01167{bottom:14.080000pt;}
.y9e_c01167{bottom:15.360000pt;}
.y9b_c01167{bottom:16.640000pt;}
.y60_c01167{bottom:17.280000pt;}
.y5f_c01167{bottom:21.760000pt;}
.y99_c01167{bottom:48.640000pt;}
.y98_c01167{bottom:49.920000pt;}
.y9a_c01167{bottom:50.560000pt;}
.y97_c01167{bottom:51.200000pt;}
.y96_c01167{bottom:52.480000pt;}
.y5e_c01167{bottom:53.120000pt;}
.y5d_c01167{bottom:57.600000pt;}
.y95_c01167{bottom:87.680000pt;}
.y94_c01167{bottom:88.320000pt;}
.y93_c01167{bottom:90.240000pt;}
.y5c_c01167{bottom:90.880000pt;}
.y5b_c01167{bottom:96.000000pt;}
.y92_c01167{bottom:126.080000pt;}
.y91_c01167{bottom:126.720000pt;}
.y5a_c01167{bottom:127.360000pt;}
.y58_c01167{bottom:128.000000pt;}
.y90_c01167{bottom:128.640000pt;}
.y59_c01167{bottom:131.200000pt;}
.y57_c01167{bottom:134.400000pt;}
.y8e_c01167{bottom:165.120000pt;}
.y8f_c01167{bottom:165.760000pt;}
.y54_c01167{bottom:167.680000pt;}
.y56_c01167{bottom:168.320000pt;}
.y55_c01167{bottom:168.960000pt;}
.y53_c01167{bottom:171.520000pt;}
.y8d_c01167{bottom:202.240000pt;}
.y52_c01167{bottom:202.880000pt;}
.y8b_c01167{bottom:206.080000pt;}
.y8c_c01167{bottom:206.720000pt;}
.y51_c01167{bottom:209.280000pt;}
.y8a_c01167{bottom:241.280000pt;}
.y89_c01167{bottom:243.840000pt;}
.y50_c01167{bottom:244.480000pt;}
.y88_c01167{bottom:245.120000pt;}
.y4f_c01167{bottom:247.680000pt;}
.y87_c01167{bottom:280.960000pt;}
.y86_c01167{bottom:281.600000pt;}
.y4e_c01167{bottom:282.240000pt;}
.y85_c01167{bottom:282.880000pt;}
.y4d_c01167{bottom:285.440000pt;}
.y83_c01167{bottom:318.720000pt;}
.y4c_c01167{bottom:320.000000pt;}
.y84_c01167{bottom:320.640000pt;}
.y82_c01167{bottom:321.280000pt;}
.y4b_c01167{bottom:322.560000pt;}
.y81_c01167{bottom:357.120000pt;}
.y80_c01167{bottom:357.760000pt;}
.y4a_c01167{bottom:358.400000pt;}
.y7f_c01167{bottom:359.680000pt;}
.y49_c01167{bottom:360.960000pt;}
.y7e_c01167{bottom:394.880000pt;}
.y48_c01167{bottom:396.160000pt;}
.y7d_c01167{bottom:397.440000pt;}
.y7c_c01167{bottom:398.080000pt;}
.y47_c01167{bottom:399.360000pt;}
.y46_c01167{bottom:433.280000pt;}
.y44_c01167{bottom:433.920000pt;}
.y7b_c01167{bottom:434.560000pt;}
.y45_c01167{bottom:435.840000pt;}
.y43_c01167{bottom:436.480000pt;}
.y42_c01167{bottom:471.680000pt;}
.y79_c01167{bottom:472.320000pt;}
.y7a_c01167{bottom:472.960000pt;}
.y78_c01167{bottom:473.600000pt;}
.y41_c01167{bottom:474.240000pt;}
.y40_c01167{bottom:508.800000pt;}
.y3c_c01167{bottom:509.440000pt;}
.y77_c01167{bottom:510.080000pt;}
.y3e_c01167{bottom:510.720000pt;}
.y3b_c01167{bottom:511.360000pt;}
.y3f_c01167{bottom:512.000000pt;}
.y3d_c01167{bottom:512.640000pt;}
.y39_c01167{bottom:547.200000pt;}
.y75_c01167{bottom:547.840000pt;}
.y3a_c01167{bottom:548.480000pt;}
.y76_c01167{bottom:549.120000pt;}
.y38_c01167{bottom:549.760000pt;}
.y73_c01167{bottom:550.400000pt;}
.y74_c01167{bottom:551.040000pt;}
.y37_c01167{bottom:585.600000pt;}
.y72_c01167{bottom:586.880000pt;}
.y36_c01167{bottom:587.520000pt;}
.y71_c01167{bottom:588.160000pt;}
.y70_c01167{bottom:588.800000pt;}
.y32_c01167{bottom:623.360000pt;}
.y35_c01167{bottom:624.000000pt;}
.y33_c01167{bottom:624.640000pt;}
.y31_c01167{bottom:625.280000pt;}
.y6f_c01167{bottom:625.920000pt;}
.y34_c01167{bottom:626.560000pt;}
.y2f_c01167{bottom:661.120000pt;}
.y30_c01167{bottom:662.400000pt;}
.y2e_c01167{bottom:663.040000pt;}
.y6e_c01167{bottom:663.680000pt;}
.y61_c01167{bottom:664.960000pt;}
.y62_c01167{bottom:665.600000pt;}
.y2d_c01167{bottom:693.760000pt;}
.y28_c01167{bottom:699.520000pt;}
.y2a_c01167{bottom:700.160000pt;}
.y27_c01167{bottom:700.800000pt;}
.y6d_c01167{bottom:702.080000pt;}
.y2c_c01167{bottom:702.720000pt;}
.y29_c01167{bottom:703.360000pt;}
.y2b_c01167{bottom:704.000000pt;}
.y24_c01167{bottom:737.920000pt;}
.y26_c01167{bottom:738.560000pt;}
.y21_c01167{bottom:739.200000pt;}
.y6a_c01167{bottom:739.840000pt;}
.y22_c01167{bottom:740.480000pt;}
.y25_c01167{bottom:741.120000pt;}
.y6b_c01167{bottom:742.400000pt;}
.y6c_c01167{bottom:743.040000pt;}
.y23_c01167{bottom:743.680000pt;}
.y1d_c01167{bottom:775.680000pt;}
.y1c_c01167{bottom:776.320000pt;}
.y1e_c01167{bottom:777.600000pt;}
.y68_c01167{bottom:778.240000pt;}
.y20_c01167{bottom:778.880000pt;}
.y1f_c01167{bottom:779.520000pt;}
.y67_c01167{bottom:780.160000pt;}
.y69_c01167{bottom:780.800000pt;}
.y19_c01167{bottom:814.080000pt;}
.y18_c01167{bottom:814.720000pt;}
.y65_c01167{bottom:817.280000pt;}
.y1a_c01167{bottom:817.920000pt;}
.y1b_c01167{bottom:818.560000pt;}
.y66_c01167{bottom:819.200000pt;}
.y14_c01167{bottom:851.200000pt;}
.y12_c01167{bottom:852.480000pt;}
.y13_c01167{bottom:853.760000pt;}
.y17_c01167{bottom:854.400000pt;}
.y63_c01167{bottom:855.040000pt;}
.y15_c01167{bottom:855.680000pt;}
.y16_c01167{bottom:856.320000pt;}
.y64_c01167{bottom:856.960000pt;}
.yb_c01167{bottom:889.600000pt;}
.yc_c01167{bottom:890.240000pt;}
.ye_c01167{bottom:891.520000pt;}
.yd_c01167{bottom:892.800000pt;}
.y10_c01167{bottom:893.440000pt;}
.y11_c01167{bottom:894.080000pt;}
.yf_c01167{bottom:894.720000pt;}
.y2_c01167{bottom:926.720000pt;}
.y1_c01167{bottom:927.360000pt;}
.y4_c01167{bottom:929.280000pt;}
.y6_c01167{bottom:929.920000pt;}
.y3_c01167{bottom:931.200000pt;}
.ya_c01167{bottom:931.840000pt;}
.y5_c01167{bottom:932.480000pt;}
.y7_c01167{bottom:933.120000pt;}
.y8_c01167{bottom:933.760000pt;}
.y9_c01167{bottom:982.400000pt;}
.h10_c01167{height:11.518750pt;}
.hf_c01167{height:16.126250pt;}
.hd_c01167{height:27.645000pt;}
.h14_c01167{height:29.948750pt;}
.h9_c01167{height:32.252500pt;}
.h4_c01167{height:34.556250pt;}
.h12_c01167{height:36.860000pt;}
.h11_c01167{height:39.163750pt;}
.h6_c01167{height:41.467500pt;}
.hc_c01167{height:43.771250pt;}
.h8_c01167{height:46.075000pt;}
.h2_c01167{height:48.378750pt;}
.h5_c01167{height:50.682500pt;}
.h16_c01167{height:52.986250pt;}
.hb_c01167{height:55.290000pt;}
.h7_c01167{height:57.593750pt;}
.ha_c01167{height:59.641250pt;}
.he_c01167{height:59.897500pt;}
.h3_c01167{height:62.201250pt;}
.h15_c01167{height:64.505000pt;}
.h13_c01167{height:71.416250pt;}
.h0_c01167{height:1027.200000pt;}
.h1_c01167{height:1027.333333pt;}
.w1_c01167{width:687.333333pt;}
.w0_c01167{width:687.360000pt;}
.x0_c01167{left:0.000000pt;}
.x1_c01167{left:53.120000pt;}
.x13_c01167{left:99.840000pt;}
.x17_c01167{left:107.520000pt;}
.x2_c01167{left:126.080000pt;}
.x3_c01167{left:212.480000pt;}
.x15_c01167{left:241.280000pt;}
.x4_c01167{left:249.600000pt;}
.x18_c01167{left:260.480000pt;}
.x20_c01167{left:268.800000pt;}
.x1a_c01167{left:288.000000pt;}
.x1e_c01167{left:297.600000pt;}
.x21_c01167{left:316.160000pt;}
.x14_c01167{left:327.040000pt;}
.x1f_c01167{left:336.640000pt;}
.x22_c01167{left:356.480000pt;}
.x5_c01167{left:365.440000pt;}
.x19_c01167{left:375.680000pt;}
.x1b_c01167{left:394.240000pt;}
.x1d_c01167{left:403.200000pt;}
.x16_c01167{left:404.480000pt;}
.x6_c01167{left:414.080000pt;}
.x1c_c01167{left:442.880000pt;}
.xe_c01167{left:472.960000pt;}
.x7_c01167{left:482.560000pt;}
.xf_c01167{left:501.760000pt;}
.x8_c01167{left:510.720000pt;}
.x10_c01167{left:520.320000pt;}
.x28_c01167{left:529.920000pt;}
.x26_c01167{left:549.120000pt;}
.x23_c01167{left:550.400000pt;}
.xa_c01167{left:560.000000pt;}
.x11_c01167{left:571.520000pt;}
.x24_c01167{left:579.840000pt;}
.xb_c01167{left:589.440000pt;}
.x9_c01167{left:593.280000pt;}
.x25_c01167{left:608.640000pt;}
.x12_c01167{left:618.240000pt;}
.xc_c01167{left:627.840000pt;}
.x27_c01167{left:636.800000pt;}
.xd_c01167{left:646.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_74070d3fcb08ccc55178336b.woff2')format("woff");}.ff1_c01168{font-family:ff1_c01168;line-height:1.109863;font-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_c01168{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m36_c01168{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m25_c01168{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.md_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);}
.m12_c01168{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_c01168{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m2_c01168{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m9_c01168{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m26_c01168{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mc_c01168{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01168{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01168{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m13_c01168{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m18_c01168{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m7_c01168{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);}
.m1e_c01168{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mf_c01168{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m24_c01168{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m31_c01168{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.me_c01168{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m16_c01168{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m32_c01168{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m4_c01168{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01168{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m5_c01168{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.ma_c01168{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m6_c01168{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m35_c01168{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m14_c01168{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3_c01168{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m17_c01168{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m10_c01168{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);}
.m30_c01168{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m27_c01168{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01168{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01168{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m29_c01168{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m19_c01168{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m11_c01168{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01168{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m1_c01168{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m23_c01168{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01168{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.mb_c01168{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);}
.m0_c01168{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m28_c01168{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);}
.m2b_c01168{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m15_c01168{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);}
.m22_c01168{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m34_c01168{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);}
.m1f_c01168{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);}
.m20_c01168{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m8_c01168{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);}
.m21_c01168{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);}
.m33_c01168{transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);}
.v2_c01168{vertical-align:-8.640000px;}
.v1_c01168{vertical-align:-2.880000px;}
.v0_c01168{vertical-align:0.000000px;}
.v3_c01168{vertical-align:5.760000px;}
.ls0_c01168{letter-spacing:0.000000px;}
.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;}
}
.ws5_c01168{word-spacing:0.000000px;}
.ws2_c01168{word-spacing:8.131200px;}
.ws4_c01168{word-spacing:8.499600px;}
.ws1_c01168{word-spacing:15.600000px;}
.ws0_c01168{word-spacing:17.894400px;}
.ws3_c01168{word-spacing:91.908000px;}
.fc0_c01168{color:transparent;}
.fsa_c01168{font-size:37.440000px;}
.fsb_c01168{font-size:43.200000px;}
.fs8_c01168{font-size:46.080000px;}
.fs3_c01168{font-size:48.960000px;}
.fs5_c01168{font-size:51.840000px;}
.fs4_c01168{font-size:54.720000px;}
.fs1_c01168{font-size:57.600000px;}
.fs9_c01168{font-size:60.480000px;}
.fsc_c01168{font-size:63.360000px;}
.fs6_c01168{font-size:66.240000px;}
.fsd_c01168{font-size:69.120000px;}
.fs0_c01168{font-size:72.000000px;}
.fs2_c01168{font-size:74.880000px;}
.fs7_c01168{font-size:77.760000px;}
.y0_c01168{bottom:0.000000px;}
.y81_c01168{bottom:48.240000px;}
.y7f_c01168{bottom:51.120000px;}
.y80_c01168{bottom:51.840000px;}
.y7e_c01168{bottom:56.880000px;}
.y7d_c01168{bottom:90.720000px;}
.y7c_c01168{bottom:91.440000px;}
.y7b_c01168{bottom:92.160000px;}
.y7a_c01168{bottom:94.320000px;}
.y79_c01168{bottom:95.040000px;}
.y78_c01168{bottom:100.080000px;}
.y77_c01168{bottom:133.200000px;}
.y76_c01168{bottom:133.920000px;}
.y75_c01168{bottom:135.360000px;}
.y73_c01168{bottom:137.520000px;}
.y74_c01168{bottom:138.240000px;}
.y72_c01168{bottom:141.840000px;}
.y70_c01168{bottom:178.560000px;}
.y71_c01168{bottom:179.280000px;}
.y6e_c01168{bottom:180.000000px;}
.y6f_c01168{bottom:181.440000px;}
.y6d_c01168{bottom:184.320000px;}
.y6c_c01168{bottom:220.320000px;}
.y69_c01168{bottom:222.480000px;}
.y6b_c01168{bottom:223.200000px;}
.y6a_c01168{bottom:223.920000px;}
.y68_c01168{bottom:226.800000px;}
.y65_c01168{bottom:265.680000px;}
.y67_c01168{bottom:266.400000px;}
.y66_c01168{bottom:267.120000px;}
.y63_c01168{bottom:268.560000px;}
.y64_c01168{bottom:270.000000px;}
.y61_c01168{bottom:306.000000px;}
.y62_c01168{bottom:307.440000px;}
.y5e_c01168{bottom:308.160000px;}
.y5f_c01168{bottom:309.600000px;}
.y60_c01168{bottom:310.320000px;}
.y5d_c01168{bottom:311.040000px;}
.y59_c01168{bottom:350.640000px;}
.y5b_c01168{bottom:351.360000px;}
.y5c_c01168{bottom:352.080000px;}
.y5a_c01168{bottom:352.800000px;}
.y58_c01168{bottom:354.240000px;}
.y55_c01168{bottom:393.120000px;}
.y54_c01168{bottom:393.840000px;}
.y57_c01168{bottom:395.280000px;}
.y56_c01168{bottom:396.000000px;}
.y53_c01168{bottom:396.720000px;}
.y51_c01168{bottom:435.600000px;}
.y50_c01168{bottom:436.320000px;}
.y52_c01168{bottom:437.040000px;}
.y4f_c01168{bottom:439.200000px;}
.y4b_c01168{bottom:479.520000px;}
.y4e_c01168{bottom:480.240000px;}
.y4a_c01168{bottom:481.680000px;}
.y4d_c01168{bottom:482.400000px;}
.y4c_c01168{bottom:483.120000px;}
.y47_c01168{bottom:522.720000px;}
.y48_c01168{bottom:524.160000px;}
.y46_c01168{bottom:524.880000px;}
.y49_c01168{bottom:525.600000px;}
.y41_c01168{bottom:565.200000px;}
.y43_c01168{bottom:566.640000px;}
.y40_c01168{bottom:567.360000px;}
.y45_c01168{bottom:568.080000px;}
.y42_c01168{bottom:568.800000px;}
.y44_c01168{bottom:569.520000px;}
.y3d_c01168{bottom:607.680000px;}
.y3f_c01168{bottom:609.120000px;}
.y3c_c01168{bottom:609.840000px;}
.y3e_c01168{bottom:612.000000px;}
.y38_c01168{bottom:650.160000px;}
.y37_c01168{bottom:652.320000px;}
.y3b_c01168{bottom:653.040000px;}
.y3a_c01168{bottom:653.760000px;}
.y39_c01168{bottom:655.200000px;}
.y30_c01168{bottom:693.360000px;}
.y2f_c01168{bottom:694.800000px;}
.y31_c01168{bottom:695.520000px;}
.y35_c01168{bottom:696.240000px;}
.y36_c01168{bottom:696.960000px;}
.y33_c01168{bottom:697.680000px;}
.y32_c01168{bottom:698.400000px;}
.y34_c01168{bottom:699.120000px;}
.y2b_c01168{bottom:736.560000px;}
.y2a_c01168{bottom:738.000000px;}
.y2d_c01168{bottom:738.720000px;}
.y2e_c01168{bottom:740.160000px;}
.y2c_c01168{bottom:741.600000px;}
.y24_c01168{bottom:779.040000px;}
.y23_c01168{bottom:779.760000px;}
.y27_c01168{bottom:781.920000px;}
.y28_c01168{bottom:782.640000px;}
.y29_c01168{bottom:783.360000px;}
.y26_c01168{bottom:784.080000px;}
.y25_c01168{bottom:784.800000px;}
.y1f_c01168{bottom:821.520000px;}
.y1e_c01168{bottom:822.960000px;}
.y21_c01168{bottom:825.840000px;}
.y20_c01168{bottom:827.280000px;}
.y22_c01168{bottom:828.000000px;}
.y19_c01168{bottom:864.000000px;}
.y18_c01168{bottom:865.440000px;}
.y1c_c01168{bottom:868.320000px;}
.y1d_c01168{bottom:869.040000px;}
.y1a_c01168{bottom:870.480000px;}
.y1b_c01168{bottom:871.200000px;}
.y14_c01168{bottom:906.480000px;}
.y13_c01168{bottom:907.920000px;}
.y16_c01168{bottom:912.240000px;}
.y15_c01168{bottom:913.680000px;}
.y17_c01168{bottom:914.400000px;}
.ye_c01168{bottom:949.680000px;}
.yd_c01168{bottom:950.400000px;}
.y11_c01168{bottom:954.720000px;}
.y10_c01168{bottom:955.440000px;}
.y12_c01168{bottom:956.160000px;}
.yf_c01168{bottom:956.880000px;}
.y9_c01168{bottom:992.880000px;}
.y8_c01168{bottom:993.600000px;}
.yb_c01168{bottom:997.920000px;}
.ya_c01168{bottom:1000.080000px;}
.yc_c01168{bottom:1000.800000px;}
.y3_c01168{bottom:1036.080000px;}
.y2_c01168{bottom:1036.800000px;}
.y6_c01168{bottom:1042.560000px;}
.y4_c01168{bottom:1043.280000px;}
.y5_c01168{bottom:1044.000000px;}
.y7_c01168{bottom:1044.720000px;}
.y1_c01168{bottom:1095.120000px;}
.hd_c01168{height:33.692344px;}
.he_c01168{height:38.875781px;}
.hc_c01168{height:41.467500px;}
.ha_c01168{height:43.770937px;}
.h5_c01168{height:44.059219px;}
.h7_c01168{height:46.650937px;}
.h6_c01168{height:49.242656px;}
.h3_c01168{height:51.834375px;}
.hb_c01168{height:54.426094px;}
.h11_c01168{height:55.002656px;}
.hf_c01168{height:57.017812px;}
.h8_c01168{height:59.609531px;}
.h10_c01168{height:62.201250px;}
.h2_c01168{height:64.792969px;}
.h4_c01168{height:67.384687px;}
.h9_c01168{height:69.976406px;}
.h1_c01168{height:1150.500000px;}
.h0_c01168{height:1150.560000px;}
.w0_c01168{width:780.480000px;}
.w1_c01168{width:780.750000px;}
.x0_c01168{left:0.000000px;}
.x2_c01168{left:61.200000px;}
.x17_c01168{left:62.640000px;}
.x3_c01168{left:143.280000px;}
.x18_c01168{left:144.720000px;}
.x19_c01168{left:167.040000px;}
.xc_c01168{left:187.920000px;}
.x15_c01168{left:282.960000px;}
.xd_c01168{left:304.560000px;}
.xe_c01168{left:357.120000px;}
.xf_c01168{left:402.480000px;}
.x10_c01168{left:444.960000px;}
.x4_c01168{left:533.520000px;}
.x1c_c01168{left:534.960000px;}
.x16_c01168{left:544.320000px;}
.x5_c01168{left:565.200000px;}
.x12_c01168{left:566.640000px;}
.xa_c01168{left:586.800000px;}
.x6_c01168{left:619.920000px;}
.x13_c01168{left:621.360000px;}
.x1a_c01168{left:624.240000px;}
.x1b_c01168{left:635.040000px;}
.x7_c01168{left:653.760000px;}
.x1_c01168{left:676.080000px;}
.xb_c01168{left:686.880000px;}
.x8_c01168{left:696.960000px;}
.x11_c01168{left:711.360000px;}
.x9_c01168{left:717.120000px;}
.x14_c01168{left:718.560000px;}
@media print{
.v2_c01168{vertical-align:-7.680000pt;}
.v1_c01168{vertical-align:-2.560000pt;}
.v0_c01168{vertical-align:0.000000pt;}
.v3_c01168{vertical-align:5.120000pt;}
.ls0_c01168{letter-spacing:0.000000pt;}
.ws5_c01168{word-spacing:0.000000pt;}
.ws2_c01168{word-spacing:7.227733pt;}
.ws4_c01168{word-spacing:7.555200pt;}
.ws1_c01168{word-spacing:13.866667pt;}
.ws0_c01168{word-spacing:15.906133pt;}
.ws3_c01168{word-spacing:81.696000pt;}
.fsa_c01168{font-size:33.280000pt;}
.fsb_c01168{font-size:38.400000pt;}
.fs8_c01168{font-size:40.960000pt;}
.fs3_c01168{font-size:43.520000pt;}
.fs5_c01168{font-size:46.080000pt;}
.fs4_c01168{font-size:48.640000pt;}
.fs1_c01168{font-size:51.200000pt;}
.fs9_c01168{font-size:53.760000pt;}
.fsc_c01168{font-size:56.320000pt;}
.fs6_c01168{font-size:58.880000pt;}
.fsd_c01168{font-size:61.440000pt;}
.fs0_c01168{font-size:64.000000pt;}
.fs2_c01168{font-size:66.560000pt;}
.fs7_c01168{font-size:69.120000pt;}
.y0_c01168{bottom:0.000000pt;}
.y81_c01168{bottom:42.880000pt;}
.y7f_c01168{bottom:45.440000pt;}
.y80_c01168{bottom:46.080000pt;}
.y7e_c01168{bottom:50.560000pt;}
.y7d_c01168{bottom:80.640000pt;}
.y7c_c01168{bottom:81.280000pt;}
.y7b_c01168{bottom:81.920000pt;}
.y7a_c01168{bottom:83.840000pt;}
.y79_c01168{bottom:84.480000pt;}
.y78_c01168{bottom:88.960000pt;}
.y77_c01168{bottom:118.400000pt;}
.y76_c01168{bottom:119.040000pt;}
.y75_c01168{bottom:120.320000pt;}
.y73_c01168{bottom:122.240000pt;}
.y74_c01168{bottom:122.880000pt;}
.y72_c01168{bottom:126.080000pt;}
.y70_c01168{bottom:158.720000pt;}
.y71_c01168{bottom:159.360000pt;}
.y6e_c01168{bottom:160.000000pt;}
.y6f_c01168{bottom:161.280000pt;}
.y6d_c01168{bottom:163.840000pt;}
.y6c_c01168{bottom:195.840000pt;}
.y69_c01168{bottom:197.760000pt;}
.y6b_c01168{bottom:198.400000pt;}
.y6a_c01168{bottom:199.040000pt;}
.y68_c01168{bottom:201.600000pt;}
.y65_c01168{bottom:236.160000pt;}
.y67_c01168{bottom:236.800000pt;}
.y66_c01168{bottom:237.440000pt;}
.y63_c01168{bottom:238.720000pt;}
.y64_c01168{bottom:240.000000pt;}
.y61_c01168{bottom:272.000000pt;}
.y62_c01168{bottom:273.280000pt;}
.y5e_c01168{bottom:273.920000pt;}
.y5f_c01168{bottom:275.200000pt;}
.y60_c01168{bottom:275.840000pt;}
.y5d_c01168{bottom:276.480000pt;}
.y59_c01168{bottom:311.680000pt;}
.y5b_c01168{bottom:312.320000pt;}
.y5c_c01168{bottom:312.960000pt;}
.y5a_c01168{bottom:313.600000pt;}
.y58_c01168{bottom:314.880000pt;}
.y55_c01168{bottom:349.440000pt;}
.y54_c01168{bottom:350.080000pt;}
.y57_c01168{bottom:351.360000pt;}
.y56_c01168{bottom:352.000000pt;}
.y53_c01168{bottom:352.640000pt;}
.y51_c01168{bottom:387.200000pt;}
.y50_c01168{bottom:387.840000pt;}
.y52_c01168{bottom:388.480000pt;}
.y4f_c01168{bottom:390.400000pt;}
.y4b_c01168{bottom:426.240000pt;}
.y4e_c01168{bottom:426.880000pt;}
.y4a_c01168{bottom:428.160000pt;}
.y4d_c01168{bottom:428.800000pt;}
.y4c_c01168{bottom:429.440000pt;}
.y47_c01168{bottom:464.640000pt;}
.y48_c01168{bottom:465.920000pt;}
.y46_c01168{bottom:466.560000pt;}
.y49_c01168{bottom:467.200000pt;}
.y41_c01168{bottom:502.400000pt;}
.y43_c01168{bottom:503.680000pt;}
.y40_c01168{bottom:504.320000pt;}
.y45_c01168{bottom:504.960000pt;}
.y42_c01168{bottom:505.600000pt;}
.y44_c01168{bottom:506.240000pt;}
.y3d_c01168{bottom:540.160000pt;}
.y3f_c01168{bottom:541.440000pt;}
.y3c_c01168{bottom:542.080000pt;}
.y3e_c01168{bottom:544.000000pt;}
.y38_c01168{bottom:577.920000pt;}
.y37_c01168{bottom:579.840000pt;}
.y3b_c01168{bottom:580.480000pt;}
.y3a_c01168{bottom:581.120000pt;}
.y39_c01168{bottom:582.400000pt;}
.y30_c01168{bottom:616.320000pt;}
.y2f_c01168{bottom:617.600000pt;}
.y31_c01168{bottom:618.240000pt;}
.y35_c01168{bottom:618.880000pt;}
.y36_c01168{bottom:619.520000pt;}
.y33_c01168{bottom:620.160000pt;}
.y32_c01168{bottom:620.800000pt;}
.y34_c01168{bottom:621.440000pt;}
.y2b_c01168{bottom:654.720000pt;}
.y2a_c01168{bottom:656.000000pt;}
.y2d_c01168{bottom:656.640000pt;}
.y2e_c01168{bottom:657.920000pt;}
.y2c_c01168{bottom:659.200000pt;}
.y24_c01168{bottom:692.480000pt;}
.y23_c01168{bottom:693.120000pt;}
.y27_c01168{bottom:695.040000pt;}
.y28_c01168{bottom:695.680000pt;}
.y29_c01168{bottom:696.320000pt;}
.y26_c01168{bottom:696.960000pt;}
.y25_c01168{bottom:697.600000pt;}
.y1f_c01168{bottom:730.240000pt;}
.y1e_c01168{bottom:731.520000pt;}
.y21_c01168{bottom:734.080000pt;}
.y20_c01168{bottom:735.360000pt;}
.y22_c01168{bottom:736.000000pt;}
.y19_c01168{bottom:768.000000pt;}
.y18_c01168{bottom:769.280000pt;}
.y1c_c01168{bottom:771.840000pt;}
.y1d_c01168{bottom:772.480000pt;}
.y1a_c01168{bottom:773.760000pt;}
.y1b_c01168{bottom:774.400000pt;}
.y14_c01168{bottom:805.760000pt;}
.y13_c01168{bottom:807.040000pt;}
.y16_c01168{bottom:810.880000pt;}
.y15_c01168{bottom:812.160000pt;}
.y17_c01168{bottom:812.800000pt;}
.ye_c01168{bottom:844.160000pt;}
.yd_c01168{bottom:844.800000pt;}
.y11_c01168{bottom:848.640000pt;}
.y10_c01168{bottom:849.280000pt;}
.y12_c01168{bottom:849.920000pt;}
.yf_c01168{bottom:850.560000pt;}
.y9_c01168{bottom:882.560000pt;}
.y8_c01168{bottom:883.200000pt;}
.yb_c01168{bottom:887.040000pt;}
.ya_c01168{bottom:888.960000pt;}
.yc_c01168{bottom:889.600000pt;}
.y3_c01168{bottom:920.960000pt;}
.y2_c01168{bottom:921.600000pt;}
.y6_c01168{bottom:926.720000pt;}
.y4_c01168{bottom:927.360000pt;}
.y5_c01168{bottom:928.000000pt;}
.y7_c01168{bottom:928.640000pt;}
.y1_c01168{bottom:973.440000pt;}
.hd_c01168{height:29.948750pt;}
.he_c01168{height:34.556250pt;}
.hc_c01168{height:36.860000pt;}
.ha_c01168{height:38.907500pt;}
.h5_c01168{height:39.163750pt;}
.h7_c01168{height:41.467500pt;}
.h6_c01168{height:43.771250pt;}
.h3_c01168{height:46.075000pt;}
.hb_c01168{height:48.378750pt;}
.h11_c01168{height:48.891250pt;}
.hf_c01168{height:50.682500pt;}
.h8_c01168{height:52.986250pt;}
.h10_c01168{height:55.290000pt;}
.h2_c01168{height:57.593750pt;}
.h4_c01168{height:59.897500pt;}
.h9_c01168{height:62.201250pt;}
.h1_c01168{height:1022.666667pt;}
.h0_c01168{height:1022.720000pt;}
.w0_c01168{width:693.760000pt;}
.w1_c01168{width:694.000000pt;}
.x0_c01168{left:0.000000pt;}
.x2_c01168{left:54.400000pt;}
.x17_c01168{left:55.680000pt;}
.x3_c01168{left:127.360000pt;}
.x18_c01168{left:128.640000pt;}
.x19_c01168{left:148.480000pt;}
.xc_c01168{left:167.040000pt;}
.x15_c01168{left:251.520000pt;}
.xd_c01168{left:270.720000pt;}
.xe_c01168{left:317.440000pt;}
.xf_c01168{left:357.760000pt;}
.x10_c01168{left:395.520000pt;}
.x4_c01168{left:474.240000pt;}
.x1c_c01168{left:475.520000pt;}
.x16_c01168{left:483.840000pt;}
.x5_c01168{left:502.400000pt;}
.x12_c01168{left:503.680000pt;}
.xa_c01168{left:521.600000pt;}
.x6_c01168{left:551.040000pt;}
.x13_c01168{left:552.320000pt;}
.x1a_c01168{left:554.880000pt;}
.x1b_c01168{left:564.480000pt;}
.x7_c01168{left:581.120000pt;}
.x1_c01168{left:600.960000pt;}
.xb_c01168{left:610.560000pt;}
.x8_c01168{left:619.520000pt;}
.x11_c01168{left:632.320000pt;}
.x9_c01168{left:637.440000pt;}
.x14_c01168{left:638.720000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_874b1ebbbf3d26d3adcc3af9.woff2')format("woff");}.ff1_c01169{font-family:ff1_c01169;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m41_c01169{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m34_c01169{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m2_c01169{transform:matrix(0.244950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244950,0.000000,0.000000,0.250000,0,0);}
.m3a_c01169{transform:matrix(0.246550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246550,0.000000,0.000000,0.250000,0,0);}
.m14_c01169{transform:matrix(0.246675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246675,0.000000,0.000000,0.250000,0,0);}
.m3e_c01169{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m8_c01169{transform:matrix(0.248375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248375,0.000000,0.000000,0.250000,0,0);}
.m37_c01169{transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);}
.m2c_c01169{transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);}
.m25_c01169{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m17_c01169{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1e_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);}
.m29_c01169{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01169{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);}
.m2f_c01169{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m18_c01169{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);}
.m38_c01169{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);}
.m33_c01169{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m5_c01169{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m36_c01169{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m10_c01169{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_c01169{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m12_c01169{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m26_c01169{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m27_c01169{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m19_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);}
.ma_c01169{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m31_c01169{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m6_c01169{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01169{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m9_c01169{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m35_c01169{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m15_c01169{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m11_c01169{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m4_c01169{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m16_c01169{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m3_c01169{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mf_c01169{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m20_c01169{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.md_c01169{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01169{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);}
.m23_c01169{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m13_c01169{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.me_c01169{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);}
.m40_c01169{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m22_c01169{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m7_c01169{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);}
.mb_c01169{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m0_c01169{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1_c01169{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);}
.m3b_c01169{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);}
.m21_c01169{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01169{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m24_c01169{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);}
.m2d_c01169{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m32_c01169{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m28_c01169{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01169{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01169{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m30_c01169{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01169{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01169{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01169{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);}
.m3c_c01169{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);}
.m39_c01169{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01169{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.v2_c01169{vertical-align:-5.760000px;}
.v3_c01169{vertical-align:-2.880000px;}
.v0_c01169{vertical-align:0.000000px;}
.v1_c01169{vertical-align:2.880000px;}
.ls1_c01169{letter-spacing:0.000000px;}
.ls0_c01169{letter-spacing:161.575680px;}
.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;}
}
.ws3_c01169{word-spacing:0.000000px;}
.ws0_c01169{word-spacing:10.267200px;}
.ws1_c01169{word-spacing:19.060275px;}
.ws2_c01169{word-spacing:21.327710px;}
.fc0_c01169{color:transparent;}
.fs9_c01169{font-size:34.560000px;}
.fsb_c01169{font-size:46.080000px;}
.fs3_c01169{font-size:48.960000px;}
.fs4_c01169{font-size:51.840000px;}
.fs1_c01169{font-size:54.720000px;}
.fs6_c01169{font-size:57.600000px;}
.fs5_c01169{font-size:60.480000px;}
.fs7_c01169{font-size:63.360000px;}
.fsc_c01169{font-size:66.240000px;}
.fsa_c01169{font-size:69.120000px;}
.fs0_c01169{font-size:72.000000px;}
.fs8_c01169{font-size:74.880000px;}
.fs2_c01169{font-size:77.760000px;}
.y0_c01169{bottom:0.000000px;}
.y8a_c01169{bottom:48.960000px;}
.y88_c01169{bottom:49.680000px;}
.y89_c01169{bottom:50.400000px;}
.y87_c01169{bottom:51.120000px;}
.y86_c01169{bottom:56.880000px;}
.y83_c01169{bottom:93.600000px;}
.y85_c01169{bottom:94.320000px;}
.y84_c01169{bottom:95.040000px;}
.y81_c01169{bottom:95.760000px;}
.y82_c01169{bottom:97.920000px;}
.y80_c01169{bottom:98.640000px;}
.y7e_c01169{bottom:136.080000px;}
.y7c_c01169{bottom:136.800000px;}
.y7f_c01169{bottom:137.520000px;}
.y7a_c01169{bottom:138.240000px;}
.y7d_c01169{bottom:138.960000px;}
.y7b_c01169{bottom:141.120000px;}
.y79_c01169{bottom:141.840000px;}
.y78_c01169{bottom:179.280000px;}
.y76_c01169{bottom:180.000000px;}
.y74_c01169{bottom:181.440000px;}
.y77_c01169{bottom:182.160000px;}
.y75_c01169{bottom:182.880000px;}
.y73_c01169{bottom:184.320000px;}
.y6f_c01169{bottom:222.480000px;}
.y6e_c01169{bottom:223.200000px;}
.y71_c01169{bottom:223.920000px;}
.y72_c01169{bottom:224.640000px;}
.y70_c01169{bottom:225.360000px;}
.y6d_c01169{bottom:227.520000px;}
.y6a_c01169{bottom:265.680000px;}
.y68_c01169{bottom:266.400000px;}
.y6c_c01169{bottom:267.840000px;}
.y6b_c01169{bottom:268.560000px;}
.y69_c01169{bottom:269.280000px;}
.y67_c01169{bottom:270.720000px;}
.y62_c01169{bottom:308.160000px;}
.y66_c01169{bottom:308.880000px;}
.y61_c01169{bottom:309.600000px;}
.y64_c01169{bottom:310.320000px;}
.y65_c01169{bottom:311.040000px;}
.y63_c01169{bottom:311.760000px;}
.y60_c01169{bottom:313.200000px;}
.y5e_c01169{bottom:351.360000px;}
.y5c_c01169{bottom:352.800000px;}
.y5f_c01169{bottom:353.520000px;}
.y5b_c01169{bottom:354.960000px;}
.y5d_c01169{bottom:355.680000px;}
.y59_c01169{bottom:394.560000px;}
.y57_c01169{bottom:395.280000px;}
.y58_c01169{bottom:397.440000px;}
.y56_c01169{bottom:398.160000px;}
.y5a_c01169{bottom:398.880000px;}
.y51_c01169{bottom:437.760000px;}
.y52_c01169{bottom:439.200000px;}
.y50_c01169{bottom:439.920000px;}
.y55_c01169{bottom:440.640000px;}
.y53_c01169{bottom:441.360000px;}
.y54_c01169{bottom:442.080000px;}
.y4c_c01169{bottom:480.240000px;}
.y4d_c01169{bottom:481.680000px;}
.y4b_c01169{bottom:483.120000px;}
.y4e_c01169{bottom:483.840000px;}
.y4f_c01169{bottom:484.560000px;}
.y47_c01169{bottom:523.440000px;}
.y48_c01169{bottom:524.160000px;}
.y46_c01169{bottom:525.600000px;}
.y4a_c01169{bottom:526.320000px;}
.y49_c01169{bottom:527.040000px;}
.y40_c01169{bottom:565.200000px;}
.y42_c01169{bottom:566.640000px;}
.y3f_c01169{bottom:567.360000px;}
.y45_c01169{bottom:568.080000px;}
.y44_c01169{bottom:568.800000px;}
.y43_c01169{bottom:569.520000px;}
.y41_c01169{bottom:570.240000px;}
.y3a_c01169{bottom:607.680000px;}
.y3b_c01169{bottom:609.120000px;}
.y39_c01169{bottom:609.840000px;}
.y3d_c01169{bottom:611.280000px;}
.y3e_c01169{bottom:612.000000px;}
.y3c_c01169{bottom:613.440000px;}
.y34_c01169{bottom:650.160000px;}
.y35_c01169{bottom:651.600000px;}
.y33_c01169{bottom:653.040000px;}
.y38_c01169{bottom:655.920000px;}
.y36_c01169{bottom:656.640000px;}
.y37_c01169{bottom:657.360000px;}
.y2e_c01169{bottom:694.800000px;}
.y31_c01169{bottom:696.960000px;}
.y2f_c01169{bottom:697.680000px;}
.y32_c01169{bottom:698.400000px;}
.y30_c01169{bottom:699.120000px;}
.y2a_c01169{bottom:737.280000px;}
.y29_c01169{bottom:738.000000px;}
.y2b_c01169{bottom:740.880000px;}
.y2c_c01169{bottom:743.040000px;}
.y2d_c01169{bottom:743.760000px;}
.y24_c01169{bottom:779.040000px;}
.y23_c01169{bottom:779.760000px;}
.y26_c01169{bottom:781.200000px;}
.y25_c01169{bottom:784.080000px;}
.y28_c01169{bottom:784.800000px;}
.y27_c01169{bottom:786.240000px;}
.y1e_c01169{bottom:822.240000px;}
.y1d_c01169{bottom:823.680000px;}
.y21_c01169{bottom:826.560000px;}
.y20_c01169{bottom:827.280000px;}
.y22_c01169{bottom:828.000000px;}
.y1f_c01169{bottom:829.440000px;}
.y19_c01169{bottom:864.720000px;}
.y18_c01169{bottom:865.440000px;}
.y1c_c01169{bottom:870.480000px;}
.y1b_c01169{bottom:871.920000px;}
.y1a_c01169{bottom:872.640000px;}
.y13_c01169{bottom:907.920000px;}
.y12_c01169{bottom:908.640000px;}
.y16_c01169{bottom:913.680000px;}
.y15_c01169{bottom:914.400000px;}
.y17_c01169{bottom:915.120000px;}
.y14_c01169{bottom:915.840000px;}
.ye_c01169{bottom:950.400000px;}
.yd_c01169{bottom:951.120000px;}
.yf_c01169{bottom:958.320000px;}
.y10_c01169{bottom:959.040000px;}
.y11_c01169{bottom:959.760000px;}
.y7_c01169{bottom:992.880000px;}
.y6_c01169{bottom:993.600000px;}
.y9_c01169{bottom:1000.080000px;}
.yc_c01169{bottom:1000.800000px;}
.y8_c01169{bottom:1001.520000px;}
.ya_c01169{bottom:1002.240000px;}
.yb_c01169{bottom:1003.680000px;}
.y3_c01169{bottom:1036.080000px;}
.y2_c01169{bottom:1036.800000px;}
.y5_c01169{bottom:1044.720000px;}
.y4_c01169{bottom:1045.440000px;}
.y1_c01169{bottom:1091.520000px;}
.hc_c01169{height:31.100625px;}
.he_c01169{height:41.467500px;}
.h5_c01169{height:44.059219px;}
.h6_c01169{height:46.650937px;}
.h3_c01169{height:49.242656px;}
.h9_c01169{height:49.530938px;}
.h8_c01169{height:51.834375px;}
.h7_c01169{height:54.426094px;}
.ha_c01169{height:57.017812px;}
.hf_c01169{height:59.609531px;}
.hd_c01169{height:62.201250px;}
.h2_c01169{height:64.792969px;}
.hb_c01169{height:67.384687px;}
.h4_c01169{height:69.976406px;}
.h1_c01169{height:1150.500000px;}
.h0_c01169{height:1150.560000px;}
.w0_c01169{width:779.760000px;}
.w1_c01169{width:780.000000px;}
.x0_c01169{left:0.000000px;}
.x2_c01169{left:60.480000px;}
.x11_c01169{left:61.920000px;}
.x25_c01169{left:63.360000px;}
.x2d_c01169{left:64.800000px;}
.x3_c01169{left:142.560000px;}
.x12_c01169{left:144.000000px;}
.x26_c01169{left:145.440000px;}
.xc_c01169{left:239.760000px;}
.x1d_c01169{left:241.920000px;}
.x17_c01169{left:252.720000px;}
.x23_c01169{left:285.120000px;}
.xd_c01169{left:293.760000px;}
.x1e_c01169{left:295.920000px;}
.x13_c01169{left:304.560000px;}
.x27_c01169{left:306.720000px;}
.xe_c01169{left:336.960000px;}
.x2b_c01169{left:338.400000px;}
.x14_c01169{left:347.760000px;}
.x2c_c01169{left:381.600000px;}
.x19_c01169{left:401.760000px;}
.x1b_c01169{left:403.200000px;}
.x1a_c01169{left:444.960000px;}
.x1f_c01169{left:447.120000px;}
.x20_c01169{left:489.600000px;}
.x4_c01169{left:532.080000px;}
.x9_c01169{left:533.520000px;}
.x21_c01169{left:535.680000px;}
.x30_c01169{left:547.200000px;}
.x5_c01169{left:565.920000px;}
.x18_c01169{left:567.360000px;}
.x29_c01169{left:600.480000px;}
.x15_c01169{left:610.560000px;}
.x6_c01169{left:619.920000px;}
.xf_c01169{left:621.360000px;}
.x28_c01169{left:623.520000px;}
.x16_c01169{left:643.680000px;}
.x2a_c01169{left:645.840000px;}
.x8_c01169{left:652.320000px;}
.xb_c01169{left:653.760000px;}
.x24_c01169{left:655.200000px;}
.x2f_c01169{left:656.640000px;}
.x1_c01169{left:672.480000px;}
.x7_c01169{left:685.440000px;}
.x10_c01169{left:686.880000px;}
.x22_c01169{left:688.320000px;}
.x2e_c01169{left:689.760000px;}
.xa_c01169{left:696.240000px;}
.x31_c01169{left:699.840000px;}
.x1c_c01169{left:719.280000px;}
@media print{
.v2_c01169{vertical-align:-5.120000pt;}
.v3_c01169{vertical-align:-2.560000pt;}
.v0_c01169{vertical-align:0.000000pt;}
.v1_c01169{vertical-align:2.560000pt;}
.ls1_c01169{letter-spacing:0.000000pt;}
.ls0_c01169{letter-spacing:143.622827pt;}
.ws3_c01169{word-spacing:0.000000pt;}
.ws0_c01169{word-spacing:9.126400pt;}
.ws1_c01169{word-spacing:16.942467pt;}
.ws2_c01169{word-spacing:18.957965pt;}
.fs9_c01169{font-size:30.720000pt;}
.fsb_c01169{font-size:40.960000pt;}
.fs3_c01169{font-size:43.520000pt;}
.fs4_c01169{font-size:46.080000pt;}
.fs1_c01169{font-size:48.640000pt;}
.fs6_c01169{font-size:51.200000pt;}
.fs5_c01169{font-size:53.760000pt;}
.fs7_c01169{font-size:56.320000pt;}
.fsc_c01169{font-size:58.880000pt;}
.fsa_c01169{font-size:61.440000pt;}
.fs0_c01169{font-size:64.000000pt;}
.fs8_c01169{font-size:66.560000pt;}
.fs2_c01169{font-size:69.120000pt;}
.y0_c01169{bottom:0.000000pt;}
.y8a_c01169{bottom:43.520000pt;}
.y88_c01169{bottom:44.160000pt;}
.y89_c01169{bottom:44.800000pt;}
.y87_c01169{bottom:45.440000pt;}
.y86_c01169{bottom:50.560000pt;}
.y83_c01169{bottom:83.200000pt;}
.y85_c01169{bottom:83.840000pt;}
.y84_c01169{bottom:84.480000pt;}
.y81_c01169{bottom:85.120000pt;}
.y82_c01169{bottom:87.040000pt;}
.y80_c01169{bottom:87.680000pt;}
.y7e_c01169{bottom:120.960000pt;}
.y7c_c01169{bottom:121.600000pt;}
.y7f_c01169{bottom:122.240000pt;}
.y7a_c01169{bottom:122.880000pt;}
.y7d_c01169{bottom:123.520000pt;}
.y7b_c01169{bottom:125.440000pt;}
.y79_c01169{bottom:126.080000pt;}
.y78_c01169{bottom:159.360000pt;}
.y76_c01169{bottom:160.000000pt;}
.y74_c01169{bottom:161.280000pt;}
.y77_c01169{bottom:161.920000pt;}
.y75_c01169{bottom:162.560000pt;}
.y73_c01169{bottom:163.840000pt;}
.y6f_c01169{bottom:197.760000pt;}
.y6e_c01169{bottom:198.400000pt;}
.y71_c01169{bottom:199.040000pt;}
.y72_c01169{bottom:199.680000pt;}
.y70_c01169{bottom:200.320000pt;}
.y6d_c01169{bottom:202.240000pt;}
.y6a_c01169{bottom:236.160000pt;}
.y68_c01169{bottom:236.800000pt;}
.y6c_c01169{bottom:238.080000pt;}
.y6b_c01169{bottom:238.720000pt;}
.y69_c01169{bottom:239.360000pt;}
.y67_c01169{bottom:240.640000pt;}
.y62_c01169{bottom:273.920000pt;}
.y66_c01169{bottom:274.560000pt;}
.y61_c01169{bottom:275.200000pt;}
.y64_c01169{bottom:275.840000pt;}
.y65_c01169{bottom:276.480000pt;}
.y63_c01169{bottom:277.120000pt;}
.y60_c01169{bottom:278.400000pt;}
.y5e_c01169{bottom:312.320000pt;}
.y5c_c01169{bottom:313.600000pt;}
.y5f_c01169{bottom:314.240000pt;}
.y5b_c01169{bottom:315.520000pt;}
.y5d_c01169{bottom:316.160000pt;}
.y59_c01169{bottom:350.720000pt;}
.y57_c01169{bottom:351.360000pt;}
.y58_c01169{bottom:353.280000pt;}
.y56_c01169{bottom:353.920000pt;}
.y5a_c01169{bottom:354.560000pt;}
.y51_c01169{bottom:389.120000pt;}
.y52_c01169{bottom:390.400000pt;}
.y50_c01169{bottom:391.040000pt;}
.y55_c01169{bottom:391.680000pt;}
.y53_c01169{bottom:392.320000pt;}
.y54_c01169{bottom:392.960000pt;}
.y4c_c01169{bottom:426.880000pt;}
.y4d_c01169{bottom:428.160000pt;}
.y4b_c01169{bottom:429.440000pt;}
.y4e_c01169{bottom:430.080000pt;}
.y4f_c01169{bottom:430.720000pt;}
.y47_c01169{bottom:465.280000pt;}
.y48_c01169{bottom:465.920000pt;}
.y46_c01169{bottom:467.200000pt;}
.y4a_c01169{bottom:467.840000pt;}
.y49_c01169{bottom:468.480000pt;}
.y40_c01169{bottom:502.400000pt;}
.y42_c01169{bottom:503.680000pt;}
.y3f_c01169{bottom:504.320000pt;}
.y45_c01169{bottom:504.960000pt;}
.y44_c01169{bottom:505.600000pt;}
.y43_c01169{bottom:506.240000pt;}
.y41_c01169{bottom:506.880000pt;}
.y3a_c01169{bottom:540.160000pt;}
.y3b_c01169{bottom:541.440000pt;}
.y39_c01169{bottom:542.080000pt;}
.y3d_c01169{bottom:543.360000pt;}
.y3e_c01169{bottom:544.000000pt;}
.y3c_c01169{bottom:545.280000pt;}
.y34_c01169{bottom:577.920000pt;}
.y35_c01169{bottom:579.200000pt;}
.y33_c01169{bottom:580.480000pt;}
.y38_c01169{bottom:583.040000pt;}
.y36_c01169{bottom:583.680000pt;}
.y37_c01169{bottom:584.320000pt;}
.y2e_c01169{bottom:617.600000pt;}
.y31_c01169{bottom:619.520000pt;}
.y2f_c01169{bottom:620.160000pt;}
.y32_c01169{bottom:620.800000pt;}
.y30_c01169{bottom:621.440000pt;}
.y2a_c01169{bottom:655.360000pt;}
.y29_c01169{bottom:656.000000pt;}
.y2b_c01169{bottom:658.560000pt;}
.y2c_c01169{bottom:660.480000pt;}
.y2d_c01169{bottom:661.120000pt;}
.y24_c01169{bottom:692.480000pt;}
.y23_c01169{bottom:693.120000pt;}
.y26_c01169{bottom:694.400000pt;}
.y25_c01169{bottom:696.960000pt;}
.y28_c01169{bottom:697.600000pt;}
.y27_c01169{bottom:698.880000pt;}
.y1e_c01169{bottom:730.880000pt;}
.y1d_c01169{bottom:732.160000pt;}
.y21_c01169{bottom:734.720000pt;}
.y20_c01169{bottom:735.360000pt;}
.y22_c01169{bottom:736.000000pt;}
.y1f_c01169{bottom:737.280000pt;}
.y19_c01169{bottom:768.640000pt;}
.y18_c01169{bottom:769.280000pt;}
.y1c_c01169{bottom:773.760000pt;}
.y1b_c01169{bottom:775.040000pt;}
.y1a_c01169{bottom:775.680000pt;}
.y13_c01169{bottom:807.040000pt;}
.y12_c01169{bottom:807.680000pt;}
.y16_c01169{bottom:812.160000pt;}
.y15_c01169{bottom:812.800000pt;}
.y17_c01169{bottom:813.440000pt;}
.y14_c01169{bottom:814.080000pt;}
.ye_c01169{bottom:844.800000pt;}
.yd_c01169{bottom:845.440000pt;}
.yf_c01169{bottom:851.840000pt;}
.y10_c01169{bottom:852.480000pt;}
.y11_c01169{bottom:853.120000pt;}
.y7_c01169{bottom:882.560000pt;}
.y6_c01169{bottom:883.200000pt;}
.y9_c01169{bottom:888.960000pt;}
.yc_c01169{bottom:889.600000pt;}
.y8_c01169{bottom:890.240000pt;}
.ya_c01169{bottom:890.880000pt;}
.yb_c01169{bottom:892.160000pt;}
.y3_c01169{bottom:920.960000pt;}
.y2_c01169{bottom:921.600000pt;}
.y5_c01169{bottom:928.640000pt;}
.y4_c01169{bottom:929.280000pt;}
.y1_c01169{bottom:970.240000pt;}
.hc_c01169{height:27.645000pt;}
.he_c01169{height:36.860000pt;}
.h5_c01169{height:39.163750pt;}
.h6_c01169{height:41.467500pt;}
.h3_c01169{height:43.771250pt;}
.h9_c01169{height:44.027500pt;}
.h8_c01169{height:46.075000pt;}
.h7_c01169{height:48.378750pt;}
.ha_c01169{height:50.682500pt;}
.hf_c01169{height:52.986250pt;}
.hd_c01169{height:55.290000pt;}
.h2_c01169{height:57.593750pt;}
.hb_c01169{height:59.897500pt;}
.h4_c01169{height:62.201250pt;}
.h1_c01169{height:1022.666667pt;}
.h0_c01169{height:1022.720000pt;}
.w0_c01169{width:693.120000pt;}
.w1_c01169{width:693.333333pt;}
.x0_c01169{left:0.000000pt;}
.x2_c01169{left:53.760000pt;}
.x11_c01169{left:55.040000pt;}
.x25_c01169{left:56.320000pt;}
.x2d_c01169{left:57.600000pt;}
.x3_c01169{left:126.720000pt;}
.x12_c01169{left:128.000000pt;}
.x26_c01169{left:129.280000pt;}
.xc_c01169{left:213.120000pt;}
.x1d_c01169{left:215.040000pt;}
.x17_c01169{left:224.640000pt;}
.x23_c01169{left:253.440000pt;}
.xd_c01169{left:261.120000pt;}
.x1e_c01169{left:263.040000pt;}
.x13_c01169{left:270.720000pt;}
.x27_c01169{left:272.640000pt;}
.xe_c01169{left:299.520000pt;}
.x2b_c01169{left:300.800000pt;}
.x14_c01169{left:309.120000pt;}
.x2c_c01169{left:339.200000pt;}
.x19_c01169{left:357.120000pt;}
.x1b_c01169{left:358.400000pt;}
.x1a_c01169{left:395.520000pt;}
.x1f_c01169{left:397.440000pt;}
.x20_c01169{left:435.200000pt;}
.x4_c01169{left:472.960000pt;}
.x9_c01169{left:474.240000pt;}
.x21_c01169{left:476.160000pt;}
.x30_c01169{left:486.400000pt;}
.x5_c01169{left:503.040000pt;}
.x18_c01169{left:504.320000pt;}
.x29_c01169{left:533.760000pt;}
.x15_c01169{left:542.720000pt;}
.x6_c01169{left:551.040000pt;}
.xf_c01169{left:552.320000pt;}
.x28_c01169{left:554.240000pt;}
.x16_c01169{left:572.160000pt;}
.x2a_c01169{left:574.080000pt;}
.x8_c01169{left:579.840000pt;}
.xb_c01169{left:581.120000pt;}
.x24_c01169{left:582.400000pt;}
.x2f_c01169{left:583.680000pt;}
.x1_c01169{left:597.760000pt;}
.x7_c01169{left:609.280000pt;}
.x10_c01169{left:610.560000pt;}
.x22_c01169{left:611.840000pt;}
.x2e_c01169{left:613.120000pt;}
.xa_c01169{left:618.880000pt;}
.x31_c01169{left:622.080000pt;}
.x1c_c01169{left:639.360000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_256e3f5cfc49faa7421c4ef8.woff2')format("woff");}.ff1_c01170{font-family:ff1_c01170;line-height:1.109863;font-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_c01170{transform:matrix(0.171925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171925,0.000000,0.000000,0.250000,0,0);}
.m12_c01170{transform:matrix(0.194025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194025,0.000000,0.000000,0.250000,0,0);}
.m43_c01170{transform:matrix(0.234525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234525,0.000000,0.000000,0.250000,0,0);}
.m2d_c01170{transform:matrix(0.237275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237275,0.000000,0.000000,0.250000,0,0);}
.m32_c01170{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m5_c01170{transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);}
.mf_c01170{transform:matrix(0.244425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244425,0.000000,0.000000,0.250000,0,0);}
.m2b_c01170{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m3f_c01170{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m21_c01170{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m17_c01170{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.mb_c01170{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01170{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_c01170{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mc_c01170{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m23_c01170{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m10_c01170{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m3_c01170{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);}
.m33_c01170{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m2_c01170{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01170{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.me_c01170{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.ma_c01170{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01170{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);}
.m25_c01170{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m42_c01170{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m29_c01170{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01170{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m27_c01170{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01170{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m9_c01170{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01170{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01170{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m19_c01170{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m6_c01170{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m16_c01170{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m38_c01170{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m8_c01170{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m7_c01170{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);}
.m2e_c01170{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m22_c01170{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);}
.m24_c01170{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.md_c01170{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m4_c01170{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);}
.m37_c01170{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m0_c01170{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m13_c01170{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1_c01170{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01170{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);}
.m40_c01170{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_c01170{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);}
.m20_c01170{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01170{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);}
.m31_c01170{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01170{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01170{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);}
.m3a_c01170{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m36_c01170{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);}
.m41_c01170{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m18_c01170{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m34_c01170{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m28_c01170{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);}
.m30_c01170{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01170{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m15_c01170{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m26_c01170{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m39_c01170{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);}
.m35_c01170{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.v1_c01170{vertical-align:-5.760000px;}
.v0_c01170{vertical-align:0.000000px;}
.ls0_c01170{letter-spacing:0.000000px;}
.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;}
}
.ws1_c01170{word-spacing:0.000000px;}
.ws0_c01170{word-spacing:10.267200px;}
.fc0_c01170{color:transparent;}
.fsd_c01170{font-size:34.560000px;}
.fse_c01170{font-size:43.200000px;}
.fsa_c01170{font-size:46.080000px;}
.fs6_c01170{font-size:48.960000px;}
.fs3_c01170{font-size:51.840000px;}
.fs5_c01170{font-size:54.720000px;}
.fs1_c01170{font-size:57.600000px;}
.fs9_c01170{font-size:60.480000px;}
.fs7_c01170{font-size:63.360000px;}
.fs4_c01170{font-size:66.240000px;}
.fsb_c01170{font-size:69.120000px;}
.fs0_c01170{font-size:72.000000px;}
.fs8_c01170{font-size:74.880000px;}
.fs2_c01170{font-size:77.760000px;}
.fsc_c01170{font-size:103.680000px;}
.y0_c01170{bottom:0.000000px;}
.y7a_c01170{bottom:41.760000px;}
.y79_c01170{bottom:43.200000px;}
.y77_c01170{bottom:72.720000px;}
.y78_c01170{bottom:73.440000px;}
.y76_c01170{bottom:74.160000px;}
.y75_c01170{bottom:79.920000px;}
.y74_c01170{bottom:118.080000px;}
.y70_c01170{bottom:146.880000px;}
.y73_c01170{bottom:147.600000px;}
.y71_c01170{bottom:148.320000px;}
.y6f_c01170{bottom:149.040000px;}
.y72_c01170{bottom:150.480000px;}
.y6e_c01170{bottom:154.080000px;}
.y6a_c01170{bottom:190.080000px;}
.y6b_c01170{bottom:190.800000px;}
.y68_c01170{bottom:191.520000px;}
.y6d_c01170{bottom:192.240000px;}
.y6c_c01170{bottom:192.960000px;}
.y69_c01170{bottom:193.680000px;}
.y67_c01170{bottom:196.560000px;}
.y66_c01170{bottom:198.720000px;}
.y65_c01170{bottom:234.000000px;}
.y64_c01170{bottom:235.440000px;}
.y63_c01170{bottom:236.160000px;}
.y61_c01170{bottom:264.960000px;}
.y5f_c01170{bottom:265.680000px;}
.y60_c01170{bottom:267.120000px;}
.y62_c01170{bottom:267.840000px;}
.y5e_c01170{bottom:270.720000px;}
.y58_c01170{bottom:300.240000px;}
.y54_c01170{bottom:307.440000px;}
.y56_c01170{bottom:308.160000px;}
.y53_c01170{bottom:308.880000px;}
.y55_c01170{bottom:309.600000px;}
.y57_c01170{bottom:310.320000px;}
.y52_c01170{bottom:312.480000px;}
.y51_c01170{bottom:350.640000px;}
.y50_c01170{bottom:352.800000px;}
.y4e_c01170{bottom:383.760000px;}
.y5c_c01170{bottom:384.480000px;}
.y4f_c01170{bottom:385.920000px;}
.y5d_c01170{bottom:386.640000px;}
.y4d_c01170{bottom:387.360000px;}
.y4b_c01170{bottom:426.960000px;}
.y4c_c01170{bottom:429.840000px;}
.y4a_c01170{bottom:458.640000px;}
.y5a_c01170{bottom:459.360000px;}
.y59_c01170{bottom:460.080000px;}
.y49_c01170{bottom:461.520000px;}
.y5b_c01170{bottom:462.960000px;}
.y48_c01170{bottom:501.840000px;}
.y46_c01170{bottom:502.560000px;}
.y45_c01170{bottom:504.000000px;}
.y47_c01170{bottom:505.440000px;}
.y41_c01170{bottom:533.520000px;}
.y43_c01170{bottom:535.680000px;}
.y40_c01170{bottom:536.400000px;}
.y42_c01170{bottom:537.120000px;}
.y44_c01170{bottom:537.840000px;}
.y3e_c01170{bottom:577.440000px;}
.y3f_c01170{bottom:578.160000px;}
.y39_c01170{bottom:609.120000px;}
.y3b_c01170{bottom:609.840000px;}
.y38_c01170{bottom:610.560000px;}
.y3c_c01170{bottom:611.280000px;}
.y3a_c01170{bottom:612.720000px;}
.y3d_c01170{bottom:614.160000px;}
.y33_c01170{bottom:652.320000px;}
.y32_c01170{bottom:653.760000px;}
.y36_c01170{bottom:654.480000px;}
.y37_c01170{bottom:656.640000px;}
.y2f_c01170{bottom:694.080000px;}
.y31_c01170{bottom:695.520000px;}
.y30_c01170{bottom:696.240000px;}
.y2d_c01170{bottom:726.480000px;}
.y2c_c01170{bottom:728.640000px;}
.y34_c01170{bottom:730.080000px;}
.y2e_c01170{bottom:731.520000px;}
.y35_c01170{bottom:732.960000px;}
.y2b_c01170{bottom:769.680000px;}
.y2a_c01170{bottom:772.560000px;}
.y26_c01170{bottom:800.640000px;}
.y25_c01170{bottom:802.080000px;}
.y27_c01170{bottom:804.240000px;}
.y28_c01170{bottom:804.960000px;}
.y29_c01170{bottom:805.680000px;}
.y22_c01170{bottom:835.200000px;}
.y20_c01170{bottom:843.840000px;}
.y1f_c01170{bottom:844.560000px;}
.y23_c01170{bottom:847.440000px;}
.y21_c01170{bottom:848.160000px;}
.y24_c01170{bottom:851.040000px;}
.y1b_c01170{bottom:885.600000px;}
.y1c_c01170{bottom:887.760000px;}
.y1e_c01170{bottom:888.480000px;}
.y1d_c01170{bottom:890.640000px;}
.y19_c01170{bottom:918.000000px;}
.y18_c01170{bottom:918.720000px;}
.y1a_c01170{bottom:920.880000px;}
.y13_c01170{bottom:923.040000px;}
.y14_c01170{bottom:923.760000px;}
.y17_c01170{bottom:924.480000px;}
.y15_c01170{bottom:925.200000px;}
.y16_c01170{bottom:926.640000px;}
.y10_c01170{bottom:960.480000px;}
.y12_c01170{bottom:961.920000px;}
.y11_c01170{bottom:962.640000px;}
.y9_c01170{bottom:992.880000px;}
.y8_c01170{bottom:993.600000px;}
.yb_c01170{bottom:995.040000px;}
.ya_c01170{bottom:995.760000px;}
.yc_c01170{bottom:997.920000px;}
.yd_c01170{bottom:998.640000px;}
.yf_c01170{bottom:1000.800000px;}
.ye_c01170{bottom:1001.520000px;}
.y2_c01170{bottom:1036.080000px;}
.y3_c01170{bottom:1037.520000px;}
.y5_c01170{bottom:1041.840000px;}
.y4_c01170{bottom:1042.560000px;}
.y6_c01170{bottom:1044.000000px;}
.y7_c01170{bottom:1044.720000px;}
.y1_c01170{bottom:1092.240000px;}
.hf_c01170{height:31.100625px;}
.h10_c01170{height:38.875781px;}
.hc_c01170{height:41.467500px;}
.h8_c01170{height:44.059219px;}
.h5_c01170{height:46.650937px;}
.h7_c01170{height:49.242656px;}
.h3_c01170{height:51.834375px;}
.hb_c01170{height:54.426094px;}
.h9_c01170{height:57.017812px;}
.h6_c01170{height:59.609531px;}
.hd_c01170{height:62.201250px;}
.h2_c01170{height:64.792969px;}
.ha_c01170{height:67.384687px;}
.h4_c01170{height:69.976406px;}
.he_c01170{height:93.301875px;}
.h1_c01170{height:1150.500000px;}
.h0_c01170{height:1150.560000px;}
.w0_c01170{width:780.480000px;}
.w1_c01170{width:780.750000px;}
.x0_c01170{left:0.000000px;}
.x2_c01170{left:64.800000px;}
.x1d_c01170{left:66.240000px;}
.x28_c01170{left:97.200000px;}
.x3_c01170{left:146.880000px;}
.xc_c01170{left:149.040000px;}
.x25_c01170{left:151.200000px;}
.x26_c01170{left:170.640000px;}
.x17_c01170{left:180.000000px;}
.xd_c01170{left:200.880000px;}
.x1c_c01170{left:202.320000px;}
.x1f_c01170{left:244.080000px;}
.x20_c01170{left:255.600000px;}
.x2e_c01170{left:267.840000px;}
.x9_c01170{left:275.760000px;}
.x1a_c01170{left:277.200000px;}
.x23_c01170{left:278.640000px;}
.x2d_c01170{left:300.240000px;}
.xf_c01170{left:318.960000px;}
.x29_c01170{left:320.400000px;}
.x11_c01170{left:328.320000px;}
.xe_c01170{left:329.760000px;}
.x27_c01170{left:331.200000px;}
.x15_c01170{left:352.080000px;}
.x1e_c01170{left:362.880000px;}
.x10_c01170{left:372.960000px;}
.x2a_c01170{left:374.400000px;}
.xa_c01170{left:405.360000px;}
.x24_c01170{left:406.800000px;}
.x12_c01170{left:415.440000px;}
.x13_c01170{left:459.360000px;}
.x18_c01170{left:460.800000px;}
.x21_c01170{left:504.720000px;}
.x4_c01170{left:547.920000px;}
.x14_c01170{left:568.080000px;}
.x5_c01170{left:569.520000px;}
.x2c_c01170{left:571.680000px;}
.x19_c01170{left:622.800000px;}
.x6_c01170{left:624.240000px;}
.x2b_c01170{left:625.680000px;}
.x7_c01170{left:656.640000px;}
.x1b_c01170{left:658.080000px;}
.x1_c01170{left:671.040000px;}
.x8_c01170{left:689.760000px;}
.x22_c01170{left:691.200000px;}
.xb_c01170{left:699.840000px;}
.x16_c01170{left:701.280000px;}
@media print{
.v1_c01170{vertical-align:-5.120000pt;}
.v0_c01170{vertical-align:0.000000pt;}
.ls0_c01170{letter-spacing:0.000000pt;}
.ws1_c01170{word-spacing:0.000000pt;}
.ws0_c01170{word-spacing:9.126400pt;}
.fsd_c01170{font-size:30.720000pt;}
.fse_c01170{font-size:38.400000pt;}
.fsa_c01170{font-size:40.960000pt;}
.fs6_c01170{font-size:43.520000pt;}
.fs3_c01170{font-size:46.080000pt;}
.fs5_c01170{font-size:48.640000pt;}
.fs1_c01170{font-size:51.200000pt;}
.fs9_c01170{font-size:53.760000pt;}
.fs7_c01170{font-size:56.320000pt;}
.fs4_c01170{font-size:58.880000pt;}
.fsb_c01170{font-size:61.440000pt;}
.fs0_c01170{font-size:64.000000pt;}
.fs8_c01170{font-size:66.560000pt;}
.fs2_c01170{font-size:69.120000pt;}
.fsc_c01170{font-size:92.160000pt;}
.y0_c01170{bottom:0.000000pt;}
.y7a_c01170{bottom:37.120000pt;}
.y79_c01170{bottom:38.400000pt;}
.y77_c01170{bottom:64.640000pt;}
.y78_c01170{bottom:65.280000pt;}
.y76_c01170{bottom:65.920000pt;}
.y75_c01170{bottom:71.040000pt;}
.y74_c01170{bottom:104.960000pt;}
.y70_c01170{bottom:130.560000pt;}
.y73_c01170{bottom:131.200000pt;}
.y71_c01170{bottom:131.840000pt;}
.y6f_c01170{bottom:132.480000pt;}
.y72_c01170{bottom:133.760000pt;}
.y6e_c01170{bottom:136.960000pt;}
.y6a_c01170{bottom:168.960000pt;}
.y6b_c01170{bottom:169.600000pt;}
.y68_c01170{bottom:170.240000pt;}
.y6d_c01170{bottom:170.880000pt;}
.y6c_c01170{bottom:171.520000pt;}
.y69_c01170{bottom:172.160000pt;}
.y67_c01170{bottom:174.720000pt;}
.y66_c01170{bottom:176.640000pt;}
.y65_c01170{bottom:208.000000pt;}
.y64_c01170{bottom:209.280000pt;}
.y63_c01170{bottom:209.920000pt;}
.y61_c01170{bottom:235.520000pt;}
.y5f_c01170{bottom:236.160000pt;}
.y60_c01170{bottom:237.440000pt;}
.y62_c01170{bottom:238.080000pt;}
.y5e_c01170{bottom:240.640000pt;}
.y58_c01170{bottom:266.880000pt;}
.y54_c01170{bottom:273.280000pt;}
.y56_c01170{bottom:273.920000pt;}
.y53_c01170{bottom:274.560000pt;}
.y55_c01170{bottom:275.200000pt;}
.y57_c01170{bottom:275.840000pt;}
.y52_c01170{bottom:277.760000pt;}
.y51_c01170{bottom:311.680000pt;}
.y50_c01170{bottom:313.600000pt;}
.y4e_c01170{bottom:341.120000pt;}
.y5c_c01170{bottom:341.760000pt;}
.y4f_c01170{bottom:343.040000pt;}
.y5d_c01170{bottom:343.680000pt;}
.y4d_c01170{bottom:344.320000pt;}
.y4b_c01170{bottom:379.520000pt;}
.y4c_c01170{bottom:382.080000pt;}
.y4a_c01170{bottom:407.680000pt;}
.y5a_c01170{bottom:408.320000pt;}
.y59_c01170{bottom:408.960000pt;}
.y49_c01170{bottom:410.240000pt;}
.y5b_c01170{bottom:411.520000pt;}
.y48_c01170{bottom:446.080000pt;}
.y46_c01170{bottom:446.720000pt;}
.y45_c01170{bottom:448.000000pt;}
.y47_c01170{bottom:449.280000pt;}
.y41_c01170{bottom:474.240000pt;}
.y43_c01170{bottom:476.160000pt;}
.y40_c01170{bottom:476.800000pt;}
.y42_c01170{bottom:477.440000pt;}
.y44_c01170{bottom:478.080000pt;}
.y3e_c01170{bottom:513.280000pt;}
.y3f_c01170{bottom:513.920000pt;}
.y39_c01170{bottom:541.440000pt;}
.y3b_c01170{bottom:542.080000pt;}
.y38_c01170{bottom:542.720000pt;}
.y3c_c01170{bottom:543.360000pt;}
.y3a_c01170{bottom:544.640000pt;}
.y3d_c01170{bottom:545.920000pt;}
.y33_c01170{bottom:579.840000pt;}
.y32_c01170{bottom:581.120000pt;}
.y36_c01170{bottom:581.760000pt;}
.y37_c01170{bottom:583.680000pt;}
.y2f_c01170{bottom:616.960000pt;}
.y31_c01170{bottom:618.240000pt;}
.y30_c01170{bottom:618.880000pt;}
.y2d_c01170{bottom:645.760000pt;}
.y2c_c01170{bottom:647.680000pt;}
.y34_c01170{bottom:648.960000pt;}
.y2e_c01170{bottom:650.240000pt;}
.y35_c01170{bottom:651.520000pt;}
.y2b_c01170{bottom:684.160000pt;}
.y2a_c01170{bottom:686.720000pt;}
.y26_c01170{bottom:711.680000pt;}
.y25_c01170{bottom:712.960000pt;}
.y27_c01170{bottom:714.880000pt;}
.y28_c01170{bottom:715.520000pt;}
.y29_c01170{bottom:716.160000pt;}
.y22_c01170{bottom:742.400000pt;}
.y20_c01170{bottom:750.080000pt;}
.y1f_c01170{bottom:750.720000pt;}
.y23_c01170{bottom:753.280000pt;}
.y21_c01170{bottom:753.920000pt;}
.y24_c01170{bottom:756.480000pt;}
.y1b_c01170{bottom:787.200000pt;}
.y1c_c01170{bottom:789.120000pt;}
.y1e_c01170{bottom:789.760000pt;}
.y1d_c01170{bottom:791.680000pt;}
.y19_c01170{bottom:816.000000pt;}
.y18_c01170{bottom:816.640000pt;}
.y1a_c01170{bottom:818.560000pt;}
.y13_c01170{bottom:820.480000pt;}
.y14_c01170{bottom:821.120000pt;}
.y17_c01170{bottom:821.760000pt;}
.y15_c01170{bottom:822.400000pt;}
.y16_c01170{bottom:823.680000pt;}
.y10_c01170{bottom:853.760000pt;}
.y12_c01170{bottom:855.040000pt;}
.y11_c01170{bottom:855.680000pt;}
.y9_c01170{bottom:882.560000pt;}
.y8_c01170{bottom:883.200000pt;}
.yb_c01170{bottom:884.480000pt;}
.ya_c01170{bottom:885.120000pt;}
.yc_c01170{bottom:887.040000pt;}
.yd_c01170{bottom:887.680000pt;}
.yf_c01170{bottom:889.600000pt;}
.ye_c01170{bottom:890.240000pt;}
.y2_c01170{bottom:920.960000pt;}
.y3_c01170{bottom:922.240000pt;}
.y5_c01170{bottom:926.080000pt;}
.y4_c01170{bottom:926.720000pt;}
.y6_c01170{bottom:928.000000pt;}
.y7_c01170{bottom:928.640000pt;}
.y1_c01170{bottom:970.880000pt;}
.hf_c01170{height:27.645000pt;}
.h10_c01170{height:34.556250pt;}
.hc_c01170{height:36.860000pt;}
.h8_c01170{height:39.163750pt;}
.h5_c01170{height:41.467500pt;}
.h7_c01170{height:43.771250pt;}
.h3_c01170{height:46.075000pt;}
.hb_c01170{height:48.378750pt;}
.h9_c01170{height:50.682500pt;}
.h6_c01170{height:52.986250pt;}
.hd_c01170{height:55.290000pt;}
.h2_c01170{height:57.593750pt;}
.ha_c01170{height:59.897500pt;}
.h4_c01170{height:62.201250pt;}
.he_c01170{height:82.935000pt;}
.h1_c01170{height:1022.666667pt;}
.h0_c01170{height:1022.720000pt;}
.w0_c01170{width:693.760000pt;}
.w1_c01170{width:694.000000pt;}
.x0_c01170{left:0.000000pt;}
.x2_c01170{left:57.600000pt;}
.x1d_c01170{left:58.880000pt;}
.x28_c01170{left:86.400000pt;}
.x3_c01170{left:130.560000pt;}
.xc_c01170{left:132.480000pt;}
.x25_c01170{left:134.400000pt;}
.x26_c01170{left:151.680000pt;}
.x17_c01170{left:160.000000pt;}
.xd_c01170{left:178.560000pt;}
.x1c_c01170{left:179.840000pt;}
.x1f_c01170{left:216.960000pt;}
.x20_c01170{left:227.200000pt;}
.x2e_c01170{left:238.080000pt;}
.x9_c01170{left:245.120000pt;}
.x1a_c01170{left:246.400000pt;}
.x23_c01170{left:247.680000pt;}
.x2d_c01170{left:266.880000pt;}
.xf_c01170{left:283.520000pt;}
.x29_c01170{left:284.800000pt;}
.x11_c01170{left:291.840000pt;}
.xe_c01170{left:293.120000pt;}
.x27_c01170{left:294.400000pt;}
.x15_c01170{left:312.960000pt;}
.x1e_c01170{left:322.560000pt;}
.x10_c01170{left:331.520000pt;}
.x2a_c01170{left:332.800000pt;}
.xa_c01170{left:360.320000pt;}
.x24_c01170{left:361.600000pt;}
.x12_c01170{left:369.280000pt;}
.x13_c01170{left:408.320000pt;}
.x18_c01170{left:409.600000pt;}
.x21_c01170{left:448.640000pt;}
.x4_c01170{left:487.040000pt;}
.x14_c01170{left:504.960000pt;}
.x5_c01170{left:506.240000pt;}
.x2c_c01170{left:508.160000pt;}
.x19_c01170{left:553.600000pt;}
.x6_c01170{left:554.880000pt;}
.x2b_c01170{left:556.160000pt;}
.x7_c01170{left:583.680000pt;}
.x1b_c01170{left:584.960000pt;}
.x1_c01170{left:596.480000pt;}
.x8_c01170{left:613.120000pt;}
.x22_c01170{left:614.400000pt;}
.xb_c01170{left:622.080000pt;}
.x16_c01170{left:623.360000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2e048d4b4200c445b5ded2de.woff2')format("woff");}.ff1_c01171{font-family:ff1_c01171;line-height:1.109863;font-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_c01171{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m25_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);}
.mb_c01171{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_c01171{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);}
.m3b_c01171{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_c01171{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m10_c01171{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_c01171{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m14_c01171{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m28_c01171{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m5_c01171{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);}
.m34_c01171{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01171{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m4_c01171{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.ma_c01171{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m2_c01171{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m18_c01171{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m20_c01171{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01171{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01171{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m24_c01171{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01171{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m12_c01171{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m41_c01171{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m9_c01171{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);}
.m3f_c01171{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m35_c01171{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01171{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.mf_c01171{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);}
.m40_c01171{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m19_c01171{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m3_c01171{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);}
.me_c01171{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m32_c01171{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);}
.m8_c01171{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);}
.m11_c01171{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m23_c01171{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);}
.mc_c01171{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);}
.m0_c01171{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m13_c01171{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);}
.m36_c01171{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01171{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);}
.m31_c01171{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m7_c01171{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m17_c01171{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m27_c01171{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);}
.m1e_c01171{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01171{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m22_c01171{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m29_c01171{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);}
.m3e_c01171{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01171{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);}
.m2a_c01171{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m16_c01171{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m15_c01171{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);}
.m38_c01171{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01171{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01171{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m21_c01171{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m33_c01171{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m42_c01171{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m37_c01171{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);}
.m2d_c01171{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m26_c01171{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m43_c01171{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01171{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m39_c01171{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01171{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.v0_c01171{vertical-align:0.000000px;}
.v2_c01171{vertical-align:5.760000px;}
.v3_c01171{vertical-align:8.640000px;}
.v1_c01171{vertical-align:20.160000px;}
.ls0_c01171{letter-spacing:0.000000px;}
.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;}
}
.ws7_c01171{word-spacing:0.000000px;}
.ws4_c01171{word-spacing:4.169040px;}
.ws3_c01171{word-spacing:13.136947px;}
.ws2_c01171{word-spacing:18.405600px;}
.ws1_c01171{word-spacing:18.407644px;}
.ws6_c01171{word-spacing:20.933683px;}
.ws5_c01171{word-spacing:165.255120px;}
.ws0_c01171{word-spacing:214.036320px;}
.fc0_c01171{color:transparent;}
.fsa_c01171{font-size:34.560000px;}
.fs9_c01171{font-size:43.200000px;}
.fs8_c01171{font-size:46.080000px;}
.fs6_c01171{font-size:48.960000px;}
.fs3_c01171{font-size:51.840000px;}
.fs1_c01171{font-size:54.720000px;}
.fs5_c01171{font-size:57.600000px;}
.fs4_c01171{font-size:60.480000px;}
.fsc_c01171{font-size:63.360000px;}
.fsb_c01171{font-size:69.120000px;}
.fs0_c01171{font-size:72.000000px;}
.fs7_c01171{font-size:74.880000px;}
.fs2_c01171{font-size:77.760000px;}
.y0_c01171{bottom:0.000000px;}
.y81_c01171{bottom:59.760000px;}
.y80_c01171{bottom:60.480000px;}
.y7f_c01171{bottom:62.640000px;}
.y7e_c01171{bottom:65.520000px;}
.y7d_c01171{bottom:102.960000px;}
.y7c_c01171{bottom:108.720000px;}
.y79_c01171{bottom:134.640000px;}
.y7b_c01171{bottom:135.360000px;}
.y76_c01171{bottom:136.800000px;}
.y7a_c01171{bottom:137.520000px;}
.y78_c01171{bottom:138.240000px;}
.y77_c01171{bottom:138.960000px;}
.y75_c01171{bottom:139.680000px;}
.y74_c01171{bottom:177.840000px;}
.y71_c01171{bottom:208.800000px;}
.y72_c01171{bottom:210.240000px;}
.y73_c01171{bottom:210.960000px;}
.y70_c01171{bottom:211.680000px;}
.y6f_c01171{bottom:212.400000px;}
.y6e_c01171{bottom:214.560000px;}
.y6d_c01171{bottom:254.880000px;}
.y6c_c01171{bottom:257.760000px;}
.y6a_c01171{bottom:285.840000px;}
.y68_c01171{bottom:286.560000px;}
.y6b_c01171{bottom:287.280000px;}
.y69_c01171{bottom:288.000000px;}
.y67_c01171{bottom:288.720000px;}
.y64_c01171{bottom:327.600000px;}
.y66_c01171{bottom:328.320000px;}
.y65_c01171{bottom:329.040000px;}
.y63_c01171{bottom:329.760000px;}
.y62_c01171{bottom:330.480000px;}
.y61_c01171{bottom:331.920000px;}
.y5f_c01171{bottom:371.520000px;}
.y5e_c01171{bottom:372.240000px;}
.y5d_c01171{bottom:372.960000px;}
.y5c_c01171{bottom:374.400000px;}
.y60_c01171{bottom:375.120000px;}
.y5a_c01171{bottom:414.000000px;}
.y58_c01171{bottom:415.440000px;}
.y59_c01171{bottom:416.160000px;}
.y57_c01171{bottom:416.880000px;}
.y5b_c01171{bottom:418.320000px;}
.y52_c01171{bottom:457.200000px;}
.y51_c01171{bottom:457.920000px;}
.y53_c01171{bottom:459.360000px;}
.y50_c01171{bottom:460.080000px;}
.y56_c01171{bottom:460.800000px;}
.y54_c01171{bottom:461.520000px;}
.y55_c01171{bottom:462.240000px;}
.y4c_c01171{bottom:499.680000px;}
.y4b_c01171{bottom:500.400000px;}
.y49_c01171{bottom:501.120000px;}
.y48_c01171{bottom:501.840000px;}
.y4f_c01171{bottom:502.560000px;}
.y4a_c01171{bottom:503.280000px;}
.y4d_c01171{bottom:504.000000px;}
.y4e_c01171{bottom:504.720000px;}
.y47_c01171{bottom:542.160000px;}
.y46_c01171{bottom:545.760000px;}
.y43_c01171{bottom:574.560000px;}
.y41_c01171{bottom:576.000000px;}
.y45_c01171{bottom:577.440000px;}
.y42_c01171{bottom:578.160000px;}
.y44_c01171{bottom:579.600000px;}
.y3c_c01171{bottom:616.320000px;}
.y3d_c01171{bottom:617.760000px;}
.y3b_c01171{bottom:618.480000px;}
.y3e_c01171{bottom:619.200000px;}
.y3f_c01171{bottom:619.920000px;}
.y40_c01171{bottom:620.640000px;}
.y3a_c01171{bottom:660.240000px;}
.y35_c01171{bottom:690.480000px;}
.y37_c01171{bottom:692.640000px;}
.y34_c01171{bottom:693.360000px;}
.y38_c01171{bottom:694.800000px;}
.y36_c01171{bottom:695.520000px;}
.y39_c01171{bottom:696.960000px;}
.y2f_c01171{bottom:732.960000px;}
.y2e_c01171{bottom:735.840000px;}
.y30_c01171{bottom:736.560000px;}
.y33_c01171{bottom:738.000000px;}
.y31_c01171{bottom:738.720000px;}
.y32_c01171{bottom:739.440000px;}
.y28_c01171{bottom:776.160000px;}
.y27_c01171{bottom:777.600000px;}
.y2a_c01171{bottom:779.040000px;}
.y29_c01171{bottom:780.480000px;}
.y2c_c01171{bottom:781.200000px;}
.y2b_c01171{bottom:782.640000px;}
.y2d_c01171{bottom:784.800000px;}
.y1e_c01171{bottom:819.360000px;}
.y1d_c01171{bottom:820.800000px;}
.y1f_c01171{bottom:821.520000px;}
.y20_c01171{bottom:822.960000px;}
.y23_c01171{bottom:824.400000px;}
.y21_c01171{bottom:825.120000px;}
.y22_c01171{bottom:825.840000px;}
.y25_c01171{bottom:826.560000px;}
.y24_c01171{bottom:827.280000px;}
.y26_c01171{bottom:828.000000px;}
.y17_c01171{bottom:861.840000px;}
.y16_c01171{bottom:863.280000px;}
.y19_c01171{bottom:865.440000px;}
.y18_c01171{bottom:866.160000px;}
.y1b_c01171{bottom:867.600000px;}
.y1a_c01171{bottom:868.320000px;}
.y1c_c01171{bottom:871.200000px;}
.y10_c01171{bottom:905.040000px;}
.y11_c01171{bottom:905.760000px;}
.y12_c01171{bottom:910.800000px;}
.y14_c01171{bottom:911.520000px;}
.y15_c01171{bottom:912.240000px;}
.y13_c01171{bottom:913.680000px;}
.yc_c01171{bottom:948.240000px;}
.yd_c01171{bottom:953.280000px;}
.ye_c01171{bottom:955.440000px;}
.yf_c01171{bottom:956.880000px;}
.y7_c01171{bottom:991.440000px;}
.y8_c01171{bottom:996.480000px;}
.y9_c01171{bottom:997.920000px;}
.yb_c01171{bottom:998.640000px;}
.ya_c01171{bottom:1000.800000px;}
.y2_c01171{bottom:1033.920000px;}
.y3_c01171{bottom:1034.640000px;}
.y4_c01171{bottom:1040.400000px;}
.y5_c01171{bottom:1041.120000px;}
.y6_c01171{bottom:1041.840000px;}
.y1_c01171{bottom:1093.680000px;}
.hc_c01171{height:31.100625px;}
.hb_c01171{height:38.875781px;}
.ha_c01171{height:41.467500px;}
.h8_c01171{height:44.059219px;}
.h5_c01171{height:46.650937px;}
.h3_c01171{height:49.242656px;}
.h7_c01171{height:51.834375px;}
.h6_c01171{height:54.426094px;}
.hd_c01171{height:55.002656px;}
.hf_c01171{height:57.017812px;}
.he_c01171{height:62.201250px;}
.h2_c01171{height:64.792969px;}
.h9_c01171{height:67.384687px;}
.h4_c01171{height:69.976406px;}
.h1_c01171{height:1146.750000px;}
.h0_c01171{height:1146.960000px;}
.w0_c01171{width:775.440000px;}
.w1_c01171{width:775.500000px;}
.x0_c01171{left:0.000000px;}
.x2_c01171{left:72.720555px;}
.x20_c01171{left:74.160000px;}
.x2f_c01171{left:75.600000px;}
.x3_c01171{left:154.080000px;}
.xe_c01171{left:155.520000px;}
.x1e_c01171{left:156.960000px;}
.x2c_c01171{left:158.400000px;}
.x39_c01171{left:159.840000px;}
.x2d_c01171{left:200.160000px;}
.x1f_c01171{left:210.240000px;}
.x19_c01171{left:220.320000px;}
.x1b_c01171{left:241.920000px;}
.x27_c01171{left:243.360000px;}
.x2e_c01171{left:254.160000px;}
.x17_c01171{left:284.400000px;}
.x21_c01171{left:295.920000px;}
.x30_c01171{left:297.360000px;}
.x1c_c01171{left:306.000000px;}
.x3a_c01171{left:308.880000px;}
.xa_c01171{left:337.680000px;}
.x29_c01171{left:339.840000px;}
.xf_c01171{left:348.480000px;}
.x22_c01171{left:349.920000px;}
.x31_c01171{left:351.360000px;}
.x13_c01171{left:359.280000px;}
.x1d_c01171{left:360.720000px;}
.x3b_c01171{left:362.880000px;}
.x18_c01171{left:381.600000px;}
.xb_c01171{left:391.680000px;}
.x2a_c01171{left:393.120000px;}
.x10_c01171{left:413.280000px;}
.x14_c01171{left:424.800000px;}
.x25_c01171{left:427.680000px;}
.x34_c01171{left:436.320000px;}
.xc_c01171{left:445.680000px;}
.x2b_c01171{left:448.560000px;}
.x11_c01171{left:468.720000px;}
.x15_c01171{left:479.520000px;}
.x35_c01171{left:481.680000px;}
.xd_c01171{left:545.040000px;}
.x23_c01171{left:546.480000px;}
.x36_c01171{left:547.920000px;}
.x4_c01171{left:555.120000px;}
.x5_c01171{left:576.720000px;}
.x16_c01171{left:578.160000px;}
.x32_c01171{left:580.320000px;}
.x6_c01171{left:631.440000px;}
.x12_c01171{left:632.880000px;}
.x28_c01171{left:634.320000px;}
.x7_c01171{left:665.280000px;}
.x24_c01171{left:666.720000px;}
.x37_c01171{left:668.160000px;}
.x1_c01171{left:693.360000px;}
.x9_c01171{left:697.680000px;}
.x1a_c01171{left:699.120000px;}
.x33_c01171{left:700.560000px;}
.x8_c01171{left:708.480000px;}
.x26_c01171{left:709.920000px;}
.x38_c01171{left:711.360000px;}
@media print{
.v0_c01171{vertical-align:0.000000pt;}
.v2_c01171{vertical-align:5.120000pt;}
.v3_c01171{vertical-align:7.680000pt;}
.v1_c01171{vertical-align:17.920000pt;}
.ls0_c01171{letter-spacing:0.000000pt;}
.ws7_c01171{word-spacing:0.000000pt;}
.ws4_c01171{word-spacing:3.705813pt;}
.ws3_c01171{word-spacing:11.677286pt;}
.ws2_c01171{word-spacing:16.360533pt;}
.ws1_c01171{word-spacing:16.362350pt;}
.ws6_c01171{word-spacing:18.607718pt;}
.ws5_c01171{word-spacing:146.893440pt;}
.ws0_c01171{word-spacing:190.254507pt;}
.fsa_c01171{font-size:30.720000pt;}
.fs9_c01171{font-size:38.400000pt;}
.fs8_c01171{font-size:40.960000pt;}
.fs6_c01171{font-size:43.520000pt;}
.fs3_c01171{font-size:46.080000pt;}
.fs1_c01171{font-size:48.640000pt;}
.fs5_c01171{font-size:51.200000pt;}
.fs4_c01171{font-size:53.760000pt;}
.fsc_c01171{font-size:56.320000pt;}
.fsb_c01171{font-size:61.440000pt;}
.fs0_c01171{font-size:64.000000pt;}
.fs7_c01171{font-size:66.560000pt;}
.fs2_c01171{font-size:69.120000pt;}
.y0_c01171{bottom:0.000000pt;}
.y81_c01171{bottom:53.120000pt;}
.y80_c01171{bottom:53.760000pt;}
.y7f_c01171{bottom:55.680000pt;}
.y7e_c01171{bottom:58.240000pt;}
.y7d_c01171{bottom:91.520000pt;}
.y7c_c01171{bottom:96.640000pt;}
.y79_c01171{bottom:119.680000pt;}
.y7b_c01171{bottom:120.320000pt;}
.y76_c01171{bottom:121.600000pt;}
.y7a_c01171{bottom:122.240000pt;}
.y78_c01171{bottom:122.880000pt;}
.y77_c01171{bottom:123.520000pt;}
.y75_c01171{bottom:124.160000pt;}
.y74_c01171{bottom:158.080000pt;}
.y71_c01171{bottom:185.600000pt;}
.y72_c01171{bottom:186.880000pt;}
.y73_c01171{bottom:187.520000pt;}
.y70_c01171{bottom:188.160000pt;}
.y6f_c01171{bottom:188.800000pt;}
.y6e_c01171{bottom:190.720000pt;}
.y6d_c01171{bottom:226.560000pt;}
.y6c_c01171{bottom:229.120000pt;}
.y6a_c01171{bottom:254.080000pt;}
.y68_c01171{bottom:254.720000pt;}
.y6b_c01171{bottom:255.360000pt;}
.y69_c01171{bottom:256.000000pt;}
.y67_c01171{bottom:256.640000pt;}
.y64_c01171{bottom:291.200000pt;}
.y66_c01171{bottom:291.840000pt;}
.y65_c01171{bottom:292.480000pt;}
.y63_c01171{bottom:293.120000pt;}
.y62_c01171{bottom:293.760000pt;}
.y61_c01171{bottom:295.040000pt;}
.y5f_c01171{bottom:330.240000pt;}
.y5e_c01171{bottom:330.880000pt;}
.y5d_c01171{bottom:331.520000pt;}
.y5c_c01171{bottom:332.800000pt;}
.y60_c01171{bottom:333.440000pt;}
.y5a_c01171{bottom:368.000000pt;}
.y58_c01171{bottom:369.280000pt;}
.y59_c01171{bottom:369.920000pt;}
.y57_c01171{bottom:370.560000pt;}
.y5b_c01171{bottom:371.840000pt;}
.y52_c01171{bottom:406.400000pt;}
.y51_c01171{bottom:407.040000pt;}
.y53_c01171{bottom:408.320000pt;}
.y50_c01171{bottom:408.960000pt;}
.y56_c01171{bottom:409.600000pt;}
.y54_c01171{bottom:410.240000pt;}
.y55_c01171{bottom:410.880000pt;}
.y4c_c01171{bottom:444.160000pt;}
.y4b_c01171{bottom:444.800000pt;}
.y49_c01171{bottom:445.440000pt;}
.y48_c01171{bottom:446.080000pt;}
.y4f_c01171{bottom:446.720000pt;}
.y4a_c01171{bottom:447.360000pt;}
.y4d_c01171{bottom:448.000000pt;}
.y4e_c01171{bottom:448.640000pt;}
.y47_c01171{bottom:481.920000pt;}
.y46_c01171{bottom:485.120000pt;}
.y43_c01171{bottom:510.720000pt;}
.y41_c01171{bottom:512.000000pt;}
.y45_c01171{bottom:513.280000pt;}
.y42_c01171{bottom:513.920000pt;}
.y44_c01171{bottom:515.200000pt;}
.y3c_c01171{bottom:547.840000pt;}
.y3d_c01171{bottom:549.120000pt;}
.y3b_c01171{bottom:549.760000pt;}
.y3e_c01171{bottom:550.400000pt;}
.y3f_c01171{bottom:551.040000pt;}
.y40_c01171{bottom:551.680000pt;}
.y3a_c01171{bottom:586.880000pt;}
.y35_c01171{bottom:613.760000pt;}
.y37_c01171{bottom:615.680000pt;}
.y34_c01171{bottom:616.320000pt;}
.y38_c01171{bottom:617.600000pt;}
.y36_c01171{bottom:618.240000pt;}
.y39_c01171{bottom:619.520000pt;}
.y2f_c01171{bottom:651.520000pt;}
.y2e_c01171{bottom:654.080000pt;}
.y30_c01171{bottom:654.720000pt;}
.y33_c01171{bottom:656.000000pt;}
.y31_c01171{bottom:656.640000pt;}
.y32_c01171{bottom:657.280000pt;}
.y28_c01171{bottom:689.920000pt;}
.y27_c01171{bottom:691.200000pt;}
.y2a_c01171{bottom:692.480000pt;}
.y29_c01171{bottom:693.760000pt;}
.y2c_c01171{bottom:694.400000pt;}
.y2b_c01171{bottom:695.680000pt;}
.y2d_c01171{bottom:697.600000pt;}
.y1e_c01171{bottom:728.320000pt;}
.y1d_c01171{bottom:729.600000pt;}
.y1f_c01171{bottom:730.240000pt;}
.y20_c01171{bottom:731.520000pt;}
.y23_c01171{bottom:732.800000pt;}
.y21_c01171{bottom:733.440000pt;}
.y22_c01171{bottom:734.080000pt;}
.y25_c01171{bottom:734.720000pt;}
.y24_c01171{bottom:735.360000pt;}
.y26_c01171{bottom:736.000000pt;}
.y17_c01171{bottom:766.080000pt;}
.y16_c01171{bottom:767.360000pt;}
.y19_c01171{bottom:769.280000pt;}
.y18_c01171{bottom:769.920000pt;}
.y1b_c01171{bottom:771.200000pt;}
.y1a_c01171{bottom:771.840000pt;}
.y1c_c01171{bottom:774.400000pt;}
.y10_c01171{bottom:804.480000pt;}
.y11_c01171{bottom:805.120000pt;}
.y12_c01171{bottom:809.600000pt;}
.y14_c01171{bottom:810.240000pt;}
.y15_c01171{bottom:810.880000pt;}
.y13_c01171{bottom:812.160000pt;}
.yc_c01171{bottom:842.880000pt;}
.yd_c01171{bottom:847.360000pt;}
.ye_c01171{bottom:849.280000pt;}
.yf_c01171{bottom:850.560000pt;}
.y7_c01171{bottom:881.280000pt;}
.y8_c01171{bottom:885.760000pt;}
.y9_c01171{bottom:887.040000pt;}
.yb_c01171{bottom:887.680000pt;}
.ya_c01171{bottom:889.600000pt;}
.y2_c01171{bottom:919.040000pt;}
.y3_c01171{bottom:919.680000pt;}
.y4_c01171{bottom:924.800000pt;}
.y5_c01171{bottom:925.440000pt;}
.y6_c01171{bottom:926.080000pt;}
.y1_c01171{bottom:972.160000pt;}
.hc_c01171{height:27.645000pt;}
.hb_c01171{height:34.556250pt;}
.ha_c01171{height:36.860000pt;}
.h8_c01171{height:39.163750pt;}
.h5_c01171{height:41.467500pt;}
.h3_c01171{height:43.771250pt;}
.h7_c01171{height:46.075000pt;}
.h6_c01171{height:48.378750pt;}
.hd_c01171{height:48.891250pt;}
.hf_c01171{height:50.682500pt;}
.he_c01171{height:55.290000pt;}
.h2_c01171{height:57.593750pt;}
.h9_c01171{height:59.897500pt;}
.h4_c01171{height:62.201250pt;}
.h1_c01171{height:1019.333333pt;}
.h0_c01171{height:1019.520000pt;}
.w0_c01171{width:689.280000pt;}
.w1_c01171{width:689.333333pt;}
.x0_c01171{left:0.000000pt;}
.x2_c01171{left:64.640493pt;}
.x20_c01171{left:65.920000pt;}
.x2f_c01171{left:67.200000pt;}
.x3_c01171{left:136.960000pt;}
.xe_c01171{left:138.240000pt;}
.x1e_c01171{left:139.520000pt;}
.x2c_c01171{left:140.800000pt;}
.x39_c01171{left:142.080000pt;}
.x2d_c01171{left:177.920000pt;}
.x1f_c01171{left:186.880000pt;}
.x19_c01171{left:195.840000pt;}
.x1b_c01171{left:215.040000pt;}
.x27_c01171{left:216.320000pt;}
.x2e_c01171{left:225.920000pt;}
.x17_c01171{left:252.800000pt;}
.x21_c01171{left:263.040000pt;}
.x30_c01171{left:264.320000pt;}
.x1c_c01171{left:272.000000pt;}
.x3a_c01171{left:274.560000pt;}
.xa_c01171{left:300.160000pt;}
.x29_c01171{left:302.080000pt;}
.xf_c01171{left:309.760000pt;}
.x22_c01171{left:311.040000pt;}
.x31_c01171{left:312.320000pt;}
.x13_c01171{left:319.360000pt;}
.x1d_c01171{left:320.640000pt;}
.x3b_c01171{left:322.560000pt;}
.x18_c01171{left:339.200000pt;}
.xb_c01171{left:348.160000pt;}
.x2a_c01171{left:349.440000pt;}
.x10_c01171{left:367.360000pt;}
.x14_c01171{left:377.600000pt;}
.x25_c01171{left:380.160000pt;}
.x34_c01171{left:387.840000pt;}
.xc_c01171{left:396.160000pt;}
.x2b_c01171{left:398.720000pt;}
.x11_c01171{left:416.640000pt;}
.x15_c01171{left:426.240000pt;}
.x35_c01171{left:428.160000pt;}
.xd_c01171{left:484.480000pt;}
.x23_c01171{left:485.760000pt;}
.x36_c01171{left:487.040000pt;}
.x4_c01171{left:493.440000pt;}
.x5_c01171{left:512.640000pt;}
.x16_c01171{left:513.920000pt;}
.x32_c01171{left:515.840000pt;}
.x6_c01171{left:561.280000pt;}
.x12_c01171{left:562.560000pt;}
.x28_c01171{left:563.840000pt;}
.x7_c01171{left:591.360000pt;}
.x24_c01171{left:592.640000pt;}
.x37_c01171{left:593.920000pt;}
.x1_c01171{left:616.320000pt;}
.x9_c01171{left:620.160000pt;}
.x1a_c01171{left:621.440000pt;}
.x33_c01171{left:622.720000pt;}
.x8_c01171{left:629.760000pt;}
.x26_c01171{left:631.040000pt;}
.x38_c01171{left:632.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9b9ae34802e34cd756f1e077.woff2')format("woff");}.ff1_c01172{font-family:ff1_c01172;line-height:1.109863;font-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_c01172{transform:matrix(0.068175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068175,0.000000,0.000000,0.250000,0,0);}
.m1_c01172{transform:matrix(0.160850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160850,0.000000,0.000000,0.250000,0,0);}
.m0_c01172{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m32_c01172{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m38_c01172{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);}
.m29_c01172{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);}
.m2d_c01172{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m22_c01172{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);}
.m41_c01172{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m11_c01172{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01172{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m12_c01172{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01172{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01172{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m13_c01172{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m9_c01172{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m17_c01172{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m31_c01172{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m10_c01172{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m20_c01172{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01172{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01172{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m18_c01172{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m16_c01172{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m4_c01172{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_c01172{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m26_c01172{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mb_c01172{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m21_c01172{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);}
.m3f_c01172{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m19_c01172{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01172{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01172{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_c01172{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m35_c01172{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m37_c01172{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);}
.m15_c01172{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m23_c01172{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);}
.m3b_c01172{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m3_c01172{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);}
.m24_c01172{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.mc_c01172{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m40_c01172{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01172{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01172{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m5_c01172{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);}
.md_c01172{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01172{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m34_c01172{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m14_c01172{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);}
.m30_c01172{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01172{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);}
.m28_c01172{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.me_c01172{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01172{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);}
.m6_c01172{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m25_c01172{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m33_c01172{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01172{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.mf_c01172{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m27_c01172{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m36_c01172{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m7_c01172{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01172{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m39_c01172{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01172{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.v2_c01172{vertical-align:-8.640000px;}
.v0_c01172{vertical-align:0.000000px;}
.v1_c01172{vertical-align:5.760000px;}
.ls0_c01172{letter-spacing:0.000000px;}
.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;}
}
.ws2_c01172{word-spacing:0.000000px;}
.ws0_c01172{word-spacing:14.955600px;}
.ws1_c01172{word-spacing:15.600000px;}
.fc0_c01172{color:transparent;}
.fsa_c01172{font-size:14.400000px;}
.fs6_c01172{font-size:34.560000px;}
.fsb_c01172{font-size:37.440000px;}
.fs9_c01172{font-size:46.080000px;}
.fs8_c01172{font-size:48.960000px;}
.fs5_c01172{font-size:51.840000px;}
.fs3_c01172{font-size:54.720000px;}
.fs7_c01172{font-size:57.600000px;}
.fs4_c01172{font-size:60.480000px;}
.fs2_c01172{font-size:63.360000px;}
.fs0_c01172{font-size:69.120000px;}
.fs1_c01172{font-size:72.000000px;}
.y0_c01172{bottom:0.000000px;}
.y83_c01172{bottom:57.600000px;}
.y82_c01172{bottom:58.320000px;}
.y84_c01172{bottom:59.760000px;}
.y81_c01172{bottom:60.480000px;}
.y80_c01172{bottom:63.360000px;}
.y7f_c01172{bottom:64.080000px;}
.y7e_c01172{bottom:64.800000px;}
.y7c_c01172{bottom:102.240000px;}
.y7d_c01172{bottom:103.680000px;}
.y7b_c01172{bottom:104.400000px;}
.y7a_c01172{bottom:105.840000px;}
.y79_c01172{bottom:108.000000px;}
.y78_c01172{bottom:145.440000px;}
.y77_c01172{bottom:146.880000px;}
.y76_c01172{bottom:148.320000px;}
.y75_c01172{bottom:150.480000px;}
.y72_c01172{bottom:187.920000px;}
.y73_c01172{bottom:188.640000px;}
.y71_c01172{bottom:189.360000px;}
.y74_c01172{bottom:190.800000px;}
.y6f_c01172{bottom:192.240000px;}
.y70_c01172{bottom:193.680000px;}
.y6d_c01172{bottom:230.400000px;}
.y6e_c01172{bottom:231.120000px;}
.y6c_c01172{bottom:231.840000px;}
.y6a_c01172{bottom:233.280000px;}
.y6b_c01172{bottom:234.000000px;}
.y69_c01172{bottom:235.440000px;}
.y67_c01172{bottom:273.600000px;}
.y66_c01172{bottom:274.320000px;}
.y68_c01172{bottom:275.040000px;}
.y64_c01172{bottom:275.760000px;}
.y65_c01172{bottom:276.480000px;}
.y63_c01172{bottom:277.920000px;}
.y60_c01172{bottom:316.800000px;}
.y62_c01172{bottom:317.520000px;}
.y5f_c01172{bottom:318.240000px;}
.y61_c01172{bottom:318.960000px;}
.y5e_c01172{bottom:319.680000px;}
.y5a_c01172{bottom:359.280000px;}
.y5c_c01172{bottom:360.000000px;}
.y59_c01172{bottom:360.720000px;}
.y5d_c01172{bottom:361.440000px;}
.y5b_c01172{bottom:362.160000px;}
.y58_c01172{bottom:362.880000px;}
.y57_c01172{bottom:402.480000px;}
.y55_c01172{bottom:403.200000px;}
.y54_c01172{bottom:404.640000px;}
.y56_c01172{bottom:405.360000px;}
.y51_c01172{bottom:445.680000px;}
.y50_c01172{bottom:446.400000px;}
.y4f_c01172{bottom:447.120000px;}
.y52_c01172{bottom:447.840000px;}
.y53_c01172{bottom:448.560000px;}
.y4c_c01172{bottom:488.880000px;}
.y4b_c01172{bottom:489.600000px;}
.y4a_c01172{bottom:490.320000px;}
.y4d_c01172{bottom:491.040000px;}
.y4e_c01172{bottom:491.760000px;}
.y48_c01172{bottom:531.360000px;}
.y46_c01172{bottom:532.080000px;}
.y45_c01172{bottom:532.800000px;}
.y47_c01172{bottom:534.240000px;}
.y49_c01172{bottom:535.680000px;}
.y41_c01172{bottom:574.560000px;}
.y3e_c01172{bottom:575.280000px;}
.y42_c01172{bottom:576.000000px;}
.y43_c01172{bottom:576.720000px;}
.y40_c01172{bottom:577.440000px;}
.y44_c01172{bottom:578.160000px;}
.y3f_c01172{bottom:580.320000px;}
.y3a_c01172{bottom:617.760000px;}
.y3c_c01172{bottom:618.480000px;}
.y3b_c01172{bottom:619.920000px;}
.y3d_c01172{bottom:621.360000px;}
.y35_c01172{bottom:660.240000px;}
.y34_c01172{bottom:661.680000px;}
.y37_c01172{bottom:662.400000px;}
.y36_c01172{bottom:663.120000px;}
.y39_c01172{bottom:663.840000px;}
.y38_c01172{bottom:665.280000px;}
.y33_c01172{bottom:705.600000px;}
.y2e_c01172{bottom:735.840000px;}
.y31_c01172{bottom:736.560000px;}
.y2f_c01172{bottom:738.000000px;}
.y32_c01172{bottom:738.720000px;}
.y30_c01172{bottom:739.440000px;}
.y28_c01172{bottom:777.600000px;}
.y27_c01172{bottom:778.320000px;}
.y2b_c01172{bottom:779.760000px;}
.y29_c01172{bottom:780.480000px;}
.y2a_c01172{bottom:781.200000px;}
.y2d_c01172{bottom:781.920000px;}
.y2c_c01172{bottom:783.360000px;}
.y21_c01172{bottom:820.080000px;}
.y22_c01172{bottom:820.800000px;}
.y25_c01172{bottom:822.960000px;}
.y23_c01172{bottom:823.680000px;}
.y24_c01172{bottom:824.400000px;}
.y26_c01172{bottom:827.280000px;}
.y1c_c01172{bottom:863.280000px;}
.y1d_c01172{bottom:865.440000px;}
.y1f_c01172{bottom:866.160000px;}
.y1e_c01172{bottom:866.880000px;}
.y20_c01172{bottom:869.040000px;}
.y15_c01172{bottom:905.040000px;}
.y16_c01172{bottom:905.760000px;}
.y17_c01172{bottom:906.480000px;}
.y19_c01172{bottom:908.640000px;}
.y18_c01172{bottom:909.360000px;}
.y1a_c01172{bottom:912.240000px;}
.y1b_c01172{bottom:912.960000px;}
.y10_c01172{bottom:948.240000px;}
.y11_c01172{bottom:948.960000px;}
.y12_c01172{bottom:951.840000px;}
.y13_c01172{bottom:952.560000px;}
.y14_c01172{bottom:955.440000px;}
.ya_c01172{bottom:990.720000px;}
.yb_c01172{bottom:992.160000px;}
.yc_c01172{bottom:994.320000px;}
.ye_c01172{bottom:995.040000px;}
.yd_c01172{bottom:995.760000px;}
.yf_c01172{bottom:997.200000px;}
.y3_c01172{bottom:1033.200000px;}
.y4_c01172{bottom:1033.920000px;}
.y5_c01172{bottom:1035.360000px;}
.y6_c01172{bottom:1038.240000px;}
.y7_c01172{bottom:1038.960000px;}
.y9_c01172{bottom:1041.840000px;}
.y8_c01172{bottom:1042.560000px;}
.y1_c01172{bottom:1092.960000px;}
.y2_c01172{bottom:1095.120000px;}
.hc_c01172{height:12.958594px;}
.h8_c01172{height:31.100625px;}
.hd_c01172{height:33.692344px;}
.hb_c01172{height:41.467500px;}
.ha_c01172{height:44.059219px;}
.h7_c01172{height:46.650937px;}
.h5_c01172{height:49.242656px;}
.h9_c01172{height:51.834375px;}
.h6_c01172{height:54.426094px;}
.he_c01172{height:55.002656px;}
.h4_c01172{height:57.017812px;}
.h2_c01172{height:62.201250px;}
.h3_c01172{height:64.792969px;}
.h1_c01172{height:1148.250000px;}
.h0_c01172{height:1148.400000px;}
.w0_c01172{width:776.160000px;}
.w1_c01172{width:776.250000px;}
.x0_c01172{left:0.000000px;}
.x4_c01172{left:72.000000px;}
.xf_c01172{left:73.440000px;}
.x21_c01172{left:74.879235px;}
.x14_c01172{left:133.920000px;}
.x5_c01172{left:155.520000px;}
.x1b_c01172{left:156.960000px;}
.x13_c01172{left:208.800000px;}
.x6_c01172{left:240.480000px;}
.x15_c01172{left:241.920000px;}
.x10_c01172{left:294.480000px;}
.x1d_c01172{left:295.920000px;}
.x7_c01172{left:304.560000px;}
.x1a_c01172{left:306.000000px;}
.x11_c01172{left:347.760000px;}
.x16_c01172{left:349.200000px;}
.x8_c01172{left:359.280000px;}
.x18_c01172{left:360.720000px;}
.x12_c01172{left:478.080000px;}
.x9_c01172{left:544.320000px;}
.x1e_c01172{left:545.760000px;}
.xa_c01172{left:631.440000px;}
.x19_c01172{left:632.880000px;}
.xb_c01172{left:664.560000px;}
.x1c_c01172{left:666.000000px;}
.x1_c01172{left:688.320000px;}
.xc_c01172{left:697.680000px;}
.x20_c01172{left:699.840000px;}
.x2_c01172{left:705.600000px;}
.xd_c01172{left:707.760000px;}
.x17_c01172{left:709.200000px;}
.x3_c01172{left:724.320000px;}
.xe_c01172{left:727.920000px;}
.x1f_c01172{left:730.800000px;}
@media print{
.v2_c01172{vertical-align:-7.680000pt;}
.v0_c01172{vertical-align:0.000000pt;}
.v1_c01172{vertical-align:5.120000pt;}
.ls0_c01172{letter-spacing:0.000000pt;}
.ws2_c01172{word-spacing:0.000000pt;}
.ws0_c01172{word-spacing:13.293867pt;}
.ws1_c01172{word-spacing:13.866667pt;}
.fsa_c01172{font-size:12.800000pt;}
.fs6_c01172{font-size:30.720000pt;}
.fsb_c01172{font-size:33.280000pt;}
.fs9_c01172{font-size:40.960000pt;}
.fs8_c01172{font-size:43.520000pt;}
.fs5_c01172{font-size:46.080000pt;}
.fs3_c01172{font-size:48.640000pt;}
.fs7_c01172{font-size:51.200000pt;}
.fs4_c01172{font-size:53.760000pt;}
.fs2_c01172{font-size:56.320000pt;}
.fs0_c01172{font-size:61.440000pt;}
.fs1_c01172{font-size:64.000000pt;}
.y0_c01172{bottom:0.000000pt;}
.y83_c01172{bottom:51.200000pt;}
.y82_c01172{bottom:51.840000pt;}
.y84_c01172{bottom:53.120000pt;}
.y81_c01172{bottom:53.760000pt;}
.y80_c01172{bottom:56.320000pt;}
.y7f_c01172{bottom:56.960000pt;}
.y7e_c01172{bottom:57.600000pt;}
.y7c_c01172{bottom:90.880000pt;}
.y7d_c01172{bottom:92.160000pt;}
.y7b_c01172{bottom:92.800000pt;}
.y7a_c01172{bottom:94.080000pt;}
.y79_c01172{bottom:96.000000pt;}
.y78_c01172{bottom:129.280000pt;}
.y77_c01172{bottom:130.560000pt;}
.y76_c01172{bottom:131.840000pt;}
.y75_c01172{bottom:133.760000pt;}
.y72_c01172{bottom:167.040000pt;}
.y73_c01172{bottom:167.680000pt;}
.y71_c01172{bottom:168.320000pt;}
.y74_c01172{bottom:169.600000pt;}
.y6f_c01172{bottom:170.880000pt;}
.y70_c01172{bottom:172.160000pt;}
.y6d_c01172{bottom:204.800000pt;}
.y6e_c01172{bottom:205.440000pt;}
.y6c_c01172{bottom:206.080000pt;}
.y6a_c01172{bottom:207.360000pt;}
.y6b_c01172{bottom:208.000000pt;}
.y69_c01172{bottom:209.280000pt;}
.y67_c01172{bottom:243.200000pt;}
.y66_c01172{bottom:243.840000pt;}
.y68_c01172{bottom:244.480000pt;}
.y64_c01172{bottom:245.120000pt;}
.y65_c01172{bottom:245.760000pt;}
.y63_c01172{bottom:247.040000pt;}
.y60_c01172{bottom:281.600000pt;}
.y62_c01172{bottom:282.240000pt;}
.y5f_c01172{bottom:282.880000pt;}
.y61_c01172{bottom:283.520000pt;}
.y5e_c01172{bottom:284.160000pt;}
.y5a_c01172{bottom:319.360000pt;}
.y5c_c01172{bottom:320.000000pt;}
.y59_c01172{bottom:320.640000pt;}
.y5d_c01172{bottom:321.280000pt;}
.y5b_c01172{bottom:321.920000pt;}
.y58_c01172{bottom:322.560000pt;}
.y57_c01172{bottom:357.760000pt;}
.y55_c01172{bottom:358.400000pt;}
.y54_c01172{bottom:359.680000pt;}
.y56_c01172{bottom:360.320000pt;}
.y51_c01172{bottom:396.160000pt;}
.y50_c01172{bottom:396.800000pt;}
.y4f_c01172{bottom:397.440000pt;}
.y52_c01172{bottom:398.080000pt;}
.y53_c01172{bottom:398.720000pt;}
.y4c_c01172{bottom:434.560000pt;}
.y4b_c01172{bottom:435.200000pt;}
.y4a_c01172{bottom:435.840000pt;}
.y4d_c01172{bottom:436.480000pt;}
.y4e_c01172{bottom:437.120000pt;}
.y48_c01172{bottom:472.320000pt;}
.y46_c01172{bottom:472.960000pt;}
.y45_c01172{bottom:473.600000pt;}
.y47_c01172{bottom:474.880000pt;}
.y49_c01172{bottom:476.160000pt;}
.y41_c01172{bottom:510.720000pt;}
.y3e_c01172{bottom:511.360000pt;}
.y42_c01172{bottom:512.000000pt;}
.y43_c01172{bottom:512.640000pt;}
.y40_c01172{bottom:513.280000pt;}
.y44_c01172{bottom:513.920000pt;}
.y3f_c01172{bottom:515.840000pt;}
.y3a_c01172{bottom:549.120000pt;}
.y3c_c01172{bottom:549.760000pt;}
.y3b_c01172{bottom:551.040000pt;}
.y3d_c01172{bottom:552.320000pt;}
.y35_c01172{bottom:586.880000pt;}
.y34_c01172{bottom:588.160000pt;}
.y37_c01172{bottom:588.800000pt;}
.y36_c01172{bottom:589.440000pt;}
.y39_c01172{bottom:590.080000pt;}
.y38_c01172{bottom:591.360000pt;}
.y33_c01172{bottom:627.200000pt;}
.y2e_c01172{bottom:654.080000pt;}
.y31_c01172{bottom:654.720000pt;}
.y2f_c01172{bottom:656.000000pt;}
.y32_c01172{bottom:656.640000pt;}
.y30_c01172{bottom:657.280000pt;}
.y28_c01172{bottom:691.200000pt;}
.y27_c01172{bottom:691.840000pt;}
.y2b_c01172{bottom:693.120000pt;}
.y29_c01172{bottom:693.760000pt;}
.y2a_c01172{bottom:694.400000pt;}
.y2d_c01172{bottom:695.040000pt;}
.y2c_c01172{bottom:696.320000pt;}
.y21_c01172{bottom:728.960000pt;}
.y22_c01172{bottom:729.600000pt;}
.y25_c01172{bottom:731.520000pt;}
.y23_c01172{bottom:732.160000pt;}
.y24_c01172{bottom:732.800000pt;}
.y26_c01172{bottom:735.360000pt;}
.y1c_c01172{bottom:767.360000pt;}
.y1d_c01172{bottom:769.280000pt;}
.y1f_c01172{bottom:769.920000pt;}
.y1e_c01172{bottom:770.560000pt;}
.y20_c01172{bottom:772.480000pt;}
.y15_c01172{bottom:804.480000pt;}
.y16_c01172{bottom:805.120000pt;}
.y17_c01172{bottom:805.760000pt;}
.y19_c01172{bottom:807.680000pt;}
.y18_c01172{bottom:808.320000pt;}
.y1a_c01172{bottom:810.880000pt;}
.y1b_c01172{bottom:811.520000pt;}
.y10_c01172{bottom:842.880000pt;}
.y11_c01172{bottom:843.520000pt;}
.y12_c01172{bottom:846.080000pt;}
.y13_c01172{bottom:846.720000pt;}
.y14_c01172{bottom:849.280000pt;}
.ya_c01172{bottom:880.640000pt;}
.yb_c01172{bottom:881.920000pt;}
.yc_c01172{bottom:883.840000pt;}
.ye_c01172{bottom:884.480000pt;}
.yd_c01172{bottom:885.120000pt;}
.yf_c01172{bottom:886.400000pt;}
.y3_c01172{bottom:918.400000pt;}
.y4_c01172{bottom:919.040000pt;}
.y5_c01172{bottom:920.320000pt;}
.y6_c01172{bottom:922.880000pt;}
.y7_c01172{bottom:923.520000pt;}
.y9_c01172{bottom:926.080000pt;}
.y8_c01172{bottom:926.720000pt;}
.y1_c01172{bottom:971.520000pt;}
.y2_c01172{bottom:973.440000pt;}
.hc_c01172{height:11.518750pt;}
.h8_c01172{height:27.645000pt;}
.hd_c01172{height:29.948750pt;}
.hb_c01172{height:36.860000pt;}
.ha_c01172{height:39.163750pt;}
.h7_c01172{height:41.467500pt;}
.h5_c01172{height:43.771250pt;}
.h9_c01172{height:46.075000pt;}
.h6_c01172{height:48.378750pt;}
.he_c01172{height:48.891250pt;}
.h4_c01172{height:50.682500pt;}
.h2_c01172{height:55.290000pt;}
.h3_c01172{height:57.593750pt;}
.h1_c01172{height:1020.666667pt;}
.h0_c01172{height:1020.800000pt;}
.w0_c01172{width:689.920000pt;}
.w1_c01172{width:690.000000pt;}
.x0_c01172{left:0.000000pt;}
.x4_c01172{left:64.000000pt;}
.xf_c01172{left:65.280000pt;}
.x21_c01172{left:66.559320pt;}
.x14_c01172{left:119.040000pt;}
.x5_c01172{left:138.240000pt;}
.x1b_c01172{left:139.520000pt;}
.x13_c01172{left:185.600000pt;}
.x6_c01172{left:213.760000pt;}
.x15_c01172{left:215.040000pt;}
.x10_c01172{left:261.760000pt;}
.x1d_c01172{left:263.040000pt;}
.x7_c01172{left:270.720000pt;}
.x1a_c01172{left:272.000000pt;}
.x11_c01172{left:309.120000pt;}
.x16_c01172{left:310.400000pt;}
.x8_c01172{left:319.360000pt;}
.x18_c01172{left:320.640000pt;}
.x12_c01172{left:424.960000pt;}
.x9_c01172{left:483.840000pt;}
.x1e_c01172{left:485.120000pt;}
.xa_c01172{left:561.280000pt;}
.x19_c01172{left:562.560000pt;}
.xb_c01172{left:590.720000pt;}
.x1c_c01172{left:592.000000pt;}
.x1_c01172{left:611.840000pt;}
.xc_c01172{left:620.160000pt;}
.x20_c01172{left:622.080000pt;}
.x2_c01172{left:627.200000pt;}
.xd_c01172{left:629.120000pt;}
.x17_c01172{left:630.400000pt;}
.x3_c01172{left:643.840000pt;}
.xe_c01172{left:647.040000pt;}
.x1f_c01172{left:649.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_26c4f55929f77e2a9702a2f1.woff2')format("woff");}.ff1_c01173{font-family:ff1_c01173;line-height:1.109863;font-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_c01173{transform:matrix(0.097875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097875,0.000000,0.000000,0.250000,0,0);}
.m2b_c01173{transform:matrix(0.215350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215350,0.000000,0.000000,0.250000,0,0);}
.m11_c01173{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);}
.m31_c01173{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01173{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01173{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m27_c01173{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);}
.m34_c01173{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m22_c01173{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m6_c01173{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m12_c01173{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m0_c01173{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01173{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01173{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mc_c01173{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.md_c01173{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01173{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01173{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.me_c01173{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);}
.m32_c01173{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);}
.m2f_c01173{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m2_c01173{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);}
.m38_c01173{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m8_c01173{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);}
.m3a_c01173{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);}
.m20_c01173{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.ma_c01173{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);}
.m2d_c01173{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m7_c01173{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m39_c01173{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);}
.m3b_c01173{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);}
.m1c_c01173{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m9_c01173{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);}
.m26_c01173{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);}
.m33_c01173{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m18_c01173{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m14_c01173{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);}
.m2a_c01173{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m3_c01173{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);}
.mf_c01173{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);}
.m4_c01173{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m23_c01173{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m16_c01173{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m28_c01173{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);}
.m21_c01173{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);}
.m25_c01173{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01173{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m30_c01173{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);}
.m15_c01173{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m35_c01173{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m10_c01173{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01173{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m5_c01173{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m29_c01173{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m13_c01173{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m19_c01173{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m37_c01173{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m36_c01173{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);}
.m2e_c01173{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.mb_c01173{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01173{transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);}
.v0_c01173{vertical-align:0.000000px;}
.v1_c01173{vertical-align:2.880000px;}
.ls0_c01173{letter-spacing:0.000000px;}
.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;}
}
.ws3_c01173{word-spacing:0.000000px;}
.ws1_c01173{word-spacing:5.256720px;}
.ws2_c01173{word-spacing:187.986000px;}
.ws0_c01173{word-spacing:190.368000px;}
.fc0_c01173{color:transparent;}
.fs8_c01173{font-size:31.680000px;}
.fsa_c01173{font-size:34.560000px;}
.fsc_c01173{font-size:43.200000px;}
.fs5_c01173{font-size:46.080000px;}
.fs3_c01173{font-size:48.960000px;}
.fs6_c01173{font-size:51.840000px;}
.fs7_c01173{font-size:54.720000px;}
.fs4_c01173{font-size:57.600000px;}
.fs2_c01173{font-size:60.480000px;}
.fs9_c01173{font-size:63.360000px;}
.fsd_c01173{font-size:66.240000px;}
.fs1_c01173{font-size:69.120000px;}
.fs0_c01173{font-size:74.880000px;}
.fsb_c01173{font-size:92.160000px;}
.y0_c01173{bottom:0.000000px;}
.y84_c01173{bottom:54.000000px;}
.y83_c01173{bottom:55.440000px;}
.y81_c01173{bottom:57.600000px;}
.y82_c01173{bottom:59.040000px;}
.y80_c01173{bottom:59.760000px;}
.y7f_c01173{bottom:62.640000px;}
.y7d_c01173{bottom:98.640000px;}
.y7c_c01173{bottom:99.360000px;}
.y7e_c01173{bottom:100.080000px;}
.y7a_c01173{bottom:101.520000px;}
.y7b_c01173{bottom:102.960000px;}
.y79_c01173{bottom:103.680000px;}
.y78_c01173{bottom:105.840000px;}
.y75_c01173{bottom:141.120000px;}
.y77_c01173{bottom:141.840000px;}
.y74_c01173{bottom:142.560000px;}
.y73_c01173{bottom:143.280000px;}
.y76_c01173{bottom:144.000000px;}
.y72_c01173{bottom:145.440000px;}
.y71_c01173{bottom:147.600000px;}
.y6f_c01173{bottom:185.040000px;}
.y70_c01173{bottom:186.480000px;}
.y6e_c01173{bottom:187.200000px;}
.y6d_c01173{bottom:187.920000px;}
.y6c_c01173{bottom:190.080000px;}
.y6a_c01173{bottom:227.520000px;}
.y69_c01173{bottom:228.240000px;}
.y68_c01173{bottom:229.680000px;}
.y6b_c01173{bottom:230.400000px;}
.y67_c01173{bottom:231.120000px;}
.y66_c01173{bottom:232.560000px;}
.y65_c01173{bottom:272.160000px;}
.y63_c01173{bottom:272.880000px;}
.y62_c01173{bottom:273.600000px;}
.y64_c01173{bottom:274.320000px;}
.y61_c01173{bottom:275.040000px;}
.y5f_c01173{bottom:314.640000px;}
.y5e_c01173{bottom:315.360000px;}
.y5d_c01173{bottom:316.800000px;}
.y60_c01173{bottom:317.520000px;}
.y5c_c01173{bottom:318.240000px;}
.y58_c01173{bottom:357.840000px;}
.y59_c01173{bottom:358.560000px;}
.y57_c01173{bottom:359.280000px;}
.y5b_c01173{bottom:360.000000px;}
.y56_c01173{bottom:360.720000px;}
.y5a_c01173{bottom:361.440000px;}
.y54_c01173{bottom:401.040000px;}
.y53_c01173{bottom:401.760000px;}
.y52_c01173{bottom:403.200000px;}
.y55_c01173{bottom:403.920000px;}
.y50_c01173{bottom:444.240000px;}
.y4f_c01173{bottom:444.960000px;}
.y4e_c01173{bottom:446.400000px;}
.y51_c01173{bottom:447.120000px;}
.y4c_c01173{bottom:487.440000px;}
.y4d_c01173{bottom:488.160000px;}
.y4b_c01173{bottom:488.880000px;}
.y47_c01173{bottom:529.920000px;}
.y49_c01173{bottom:530.640000px;}
.y46_c01173{bottom:531.360000px;}
.y48_c01173{bottom:532.080000px;}
.y4a_c01173{bottom:533.520000px;}
.y42_c01173{bottom:572.400000px;}
.y41_c01173{bottom:573.120000px;}
.y45_c01173{bottom:573.840000px;}
.y44_c01173{bottom:574.560000px;}
.y43_c01173{bottom:576.000000px;}
.y3d_c01173{bottom:607.680000px;}
.y3c_c01173{bottom:614.880000px;}
.y3b_c01173{bottom:615.600000px;}
.y3e_c01173{bottom:617.040000px;}
.y40_c01173{bottom:618.480000px;}
.y3f_c01173{bottom:619.200000px;}
.y3a_c01173{bottom:660.240000px;}
.y34_c01173{bottom:689.760000px;}
.y33_c01173{bottom:690.480000px;}
.y36_c01173{bottom:691.200000px;}
.y39_c01173{bottom:691.920000px;}
.y38_c01173{bottom:692.640000px;}
.y35_c01173{bottom:693.360000px;}
.y37_c01173{bottom:694.800000px;}
.y2f_c01173{bottom:732.240000px;}
.y2e_c01173{bottom:732.960000px;}
.y31_c01173{bottom:734.400000px;}
.y30_c01173{bottom:735.120000px;}
.y32_c01173{bottom:735.840000px;}
.y28_c01173{bottom:775.440000px;}
.y29_c01173{bottom:776.160000px;}
.y2b_c01173{bottom:777.600000px;}
.y2a_c01173{bottom:779.040000px;}
.y2c_c01173{bottom:779.760000px;}
.y2d_c01173{bottom:781.200000px;}
.y22_c01173{bottom:817.920000px;}
.y23_c01173{bottom:818.640000px;}
.y24_c01173{bottom:820.800000px;}
.y25_c01173{bottom:821.520000px;}
.y27_c01173{bottom:822.240000px;}
.y26_c01173{bottom:823.680000px;}
.y1c_c01173{bottom:861.120000px;}
.y1d_c01173{bottom:861.840000px;}
.y20_c01173{bottom:864.000000px;}
.y1e_c01173{bottom:864.720000px;}
.y1f_c01173{bottom:865.440000px;}
.y21_c01173{bottom:867.600000px;}
.y16_c01173{bottom:903.600000px;}
.y17_c01173{bottom:906.480000px;}
.y18_c01173{bottom:907.200000px;}
.y19_c01173{bottom:907.920000px;}
.y1a_c01173{bottom:908.640000px;}
.y1b_c01173{bottom:910.800000px;}
.y10_c01173{bottom:946.080000px;}
.y11_c01173{bottom:947.520000px;}
.y12_c01173{bottom:950.400000px;}
.y13_c01173{bottom:951.120000px;}
.y14_c01173{bottom:951.840000px;}
.y15_c01173{bottom:954.000000px;}
.y9_c01173{bottom:988.560000px;}
.ya_c01173{bottom:989.280000px;}
.yb_c01173{bottom:990.000000px;}
.yc_c01173{bottom:993.600000px;}
.yd_c01173{bottom:994.320000px;}
.yf_c01173{bottom:997.200000px;}
.ye_c01173{bottom:997.920000px;}
.y3_c01173{bottom:1031.040000px;}
.y4_c01173{bottom:1032.480000px;}
.y5_c01173{bottom:1033.200000px;}
.y6_c01173{bottom:1036.800000px;}
.y8_c01173{bottom:1040.400000px;}
.y7_c01173{bottom:1041.120000px;}
.y1_c01173{bottom:1092.960000px;}
.y2_c01173{bottom:1093.680000px;}
.ha_c01173{height:28.508906px;}
.hd_c01173{height:31.100625px;}
.hf_c01173{height:38.875781px;}
.h7_c01173{height:41.467500px;}
.h5_c01173{height:44.059219px;}
.h8_c01173{height:46.650937px;}
.h9_c01173{height:49.242656px;}
.hc_c01173{height:51.834375px;}
.h4_c01173{height:54.426094px;}
.h6_c01173{height:54.714375px;}
.h10_c01173{height:57.017812px;}
.hb_c01173{height:57.306094px;}
.h11_c01173{height:59.609531px;}
.h3_c01173{height:62.201250px;}
.h2_c01173{height:67.384687px;}
.he_c01173{height:82.935000px;}
.h1_c01173{height:1146.750000px;}
.h0_c01173{height:1146.960000px;}
.w0_c01173{width:775.440000px;}
.w1_c01173{width:775.500000px;}
.x0_c01173{left:0.000000px;}
.x3_c01173{left:73.440000px;}
.xf_c01173{left:74.880000px;}
.x1c_c01173{left:76.320000px;}
.x4_c01173{left:157.680000px;}
.x1a_c01173{left:159.120000px;}
.x15_c01173{left:211.680000px;}
.x5_c01173{left:241.920000px;}
.x18_c01173{left:243.360000px;}
.xd_c01173{left:295.200000px;}
.x6_c01173{left:306.720000px;}
.x1d_c01173{left:308.160000px;}
.x19_c01173{left:328.320000px;}
.xe_c01173{left:349.920000px;}
.xa_c01173{left:360.720000px;}
.x16_c01173{left:447.120000px;}
.x14_c01173{left:490.320000px;}
.x17_c01173{left:496.080000px;}
.x7_c01173{left:545.760000px;}
.xb_c01173{left:632.880000px;}
.x11_c01173{left:634.320000px;}
.x8_c01173{left:666.000000px;}
.x12_c01173{left:667.440000px;}
.x1_c01173{left:684.720000px;}
.x9_c01173{left:698.400000px;}
.x13_c01173{left:699.840000px;}
.x1b_c01173{left:701.280000px;}
.x10_c01173{left:709.920000px;}
.x2_c01173{left:720.720000px;}
.xc_c01173{left:730.080000px;}
@media print{
.v0_c01173{vertical-align:0.000000pt;}
.v1_c01173{vertical-align:2.560000pt;}
.ls0_c01173{letter-spacing:0.000000pt;}
.ws3_c01173{word-spacing:0.000000pt;}
.ws1_c01173{word-spacing:4.672640pt;}
.ws2_c01173{word-spacing:167.098667pt;}
.ws0_c01173{word-spacing:169.216000pt;}
.fs8_c01173{font-size:28.160000pt;}
.fsa_c01173{font-size:30.720000pt;}
.fsc_c01173{font-size:38.400000pt;}
.fs5_c01173{font-size:40.960000pt;}
.fs3_c01173{font-size:43.520000pt;}
.fs6_c01173{font-size:46.080000pt;}
.fs7_c01173{font-size:48.640000pt;}
.fs4_c01173{font-size:51.200000pt;}
.fs2_c01173{font-size:53.760000pt;}
.fs9_c01173{font-size:56.320000pt;}
.fsd_c01173{font-size:58.880000pt;}
.fs1_c01173{font-size:61.440000pt;}
.fs0_c01173{font-size:66.560000pt;}
.fsb_c01173{font-size:81.920000pt;}
.y0_c01173{bottom:0.000000pt;}
.y84_c01173{bottom:48.000000pt;}
.y83_c01173{bottom:49.280000pt;}
.y81_c01173{bottom:51.200000pt;}
.y82_c01173{bottom:52.480000pt;}
.y80_c01173{bottom:53.120000pt;}
.y7f_c01173{bottom:55.680000pt;}
.y7d_c01173{bottom:87.680000pt;}
.y7c_c01173{bottom:88.320000pt;}
.y7e_c01173{bottom:88.960000pt;}
.y7a_c01173{bottom:90.240000pt;}
.y7b_c01173{bottom:91.520000pt;}
.y79_c01173{bottom:92.160000pt;}
.y78_c01173{bottom:94.080000pt;}
.y75_c01173{bottom:125.440000pt;}
.y77_c01173{bottom:126.080000pt;}
.y74_c01173{bottom:126.720000pt;}
.y73_c01173{bottom:127.360000pt;}
.y76_c01173{bottom:128.000000pt;}
.y72_c01173{bottom:129.280000pt;}
.y71_c01173{bottom:131.200000pt;}
.y6f_c01173{bottom:164.480000pt;}
.y70_c01173{bottom:165.760000pt;}
.y6e_c01173{bottom:166.400000pt;}
.y6d_c01173{bottom:167.040000pt;}
.y6c_c01173{bottom:168.960000pt;}
.y6a_c01173{bottom:202.240000pt;}
.y69_c01173{bottom:202.880000pt;}
.y68_c01173{bottom:204.160000pt;}
.y6b_c01173{bottom:204.800000pt;}
.y67_c01173{bottom:205.440000pt;}
.y66_c01173{bottom:206.720000pt;}
.y65_c01173{bottom:241.920000pt;}
.y63_c01173{bottom:242.560000pt;}
.y62_c01173{bottom:243.200000pt;}
.y64_c01173{bottom:243.840000pt;}
.y61_c01173{bottom:244.480000pt;}
.y5f_c01173{bottom:279.680000pt;}
.y5e_c01173{bottom:280.320000pt;}
.y5d_c01173{bottom:281.600000pt;}
.y60_c01173{bottom:282.240000pt;}
.y5c_c01173{bottom:282.880000pt;}
.y58_c01173{bottom:318.080000pt;}
.y59_c01173{bottom:318.720000pt;}
.y57_c01173{bottom:319.360000pt;}
.y5b_c01173{bottom:320.000000pt;}
.y56_c01173{bottom:320.640000pt;}
.y5a_c01173{bottom:321.280000pt;}
.y54_c01173{bottom:356.480000pt;}
.y53_c01173{bottom:357.120000pt;}
.y52_c01173{bottom:358.400000pt;}
.y55_c01173{bottom:359.040000pt;}
.y50_c01173{bottom:394.880000pt;}
.y4f_c01173{bottom:395.520000pt;}
.y4e_c01173{bottom:396.800000pt;}
.y51_c01173{bottom:397.440000pt;}
.y4c_c01173{bottom:433.280000pt;}
.y4d_c01173{bottom:433.920000pt;}
.y4b_c01173{bottom:434.560000pt;}
.y47_c01173{bottom:471.040000pt;}
.y49_c01173{bottom:471.680000pt;}
.y46_c01173{bottom:472.320000pt;}
.y48_c01173{bottom:472.960000pt;}
.y4a_c01173{bottom:474.240000pt;}
.y42_c01173{bottom:508.800000pt;}
.y41_c01173{bottom:509.440000pt;}
.y45_c01173{bottom:510.080000pt;}
.y44_c01173{bottom:510.720000pt;}
.y43_c01173{bottom:512.000000pt;}
.y3d_c01173{bottom:540.160000pt;}
.y3c_c01173{bottom:546.560000pt;}
.y3b_c01173{bottom:547.200000pt;}
.y3e_c01173{bottom:548.480000pt;}
.y40_c01173{bottom:549.760000pt;}
.y3f_c01173{bottom:550.400000pt;}
.y3a_c01173{bottom:586.880000pt;}
.y34_c01173{bottom:613.120000pt;}
.y33_c01173{bottom:613.760000pt;}
.y36_c01173{bottom:614.400000pt;}
.y39_c01173{bottom:615.040000pt;}
.y38_c01173{bottom:615.680000pt;}
.y35_c01173{bottom:616.320000pt;}
.y37_c01173{bottom:617.600000pt;}
.y2f_c01173{bottom:650.880000pt;}
.y2e_c01173{bottom:651.520000pt;}
.y31_c01173{bottom:652.800000pt;}
.y30_c01173{bottom:653.440000pt;}
.y32_c01173{bottom:654.080000pt;}
.y28_c01173{bottom:689.280000pt;}
.y29_c01173{bottom:689.920000pt;}
.y2b_c01173{bottom:691.200000pt;}
.y2a_c01173{bottom:692.480000pt;}
.y2c_c01173{bottom:693.120000pt;}
.y2d_c01173{bottom:694.400000pt;}
.y22_c01173{bottom:727.040000pt;}
.y23_c01173{bottom:727.680000pt;}
.y24_c01173{bottom:729.600000pt;}
.y25_c01173{bottom:730.240000pt;}
.y27_c01173{bottom:730.880000pt;}
.y26_c01173{bottom:732.160000pt;}
.y1c_c01173{bottom:765.440000pt;}
.y1d_c01173{bottom:766.080000pt;}
.y20_c01173{bottom:768.000000pt;}
.y1e_c01173{bottom:768.640000pt;}
.y1f_c01173{bottom:769.280000pt;}
.y21_c01173{bottom:771.200000pt;}
.y16_c01173{bottom:803.200000pt;}
.y17_c01173{bottom:805.760000pt;}
.y18_c01173{bottom:806.400000pt;}
.y19_c01173{bottom:807.040000pt;}
.y1a_c01173{bottom:807.680000pt;}
.y1b_c01173{bottom:809.600000pt;}
.y10_c01173{bottom:840.960000pt;}
.y11_c01173{bottom:842.240000pt;}
.y12_c01173{bottom:844.800000pt;}
.y13_c01173{bottom:845.440000pt;}
.y14_c01173{bottom:846.080000pt;}
.y15_c01173{bottom:848.000000pt;}
.y9_c01173{bottom:878.720000pt;}
.ya_c01173{bottom:879.360000pt;}
.yb_c01173{bottom:880.000000pt;}
.yc_c01173{bottom:883.200000pt;}
.yd_c01173{bottom:883.840000pt;}
.yf_c01173{bottom:886.400000pt;}
.ye_c01173{bottom:887.040000pt;}
.y3_c01173{bottom:916.480000pt;}
.y4_c01173{bottom:917.760000pt;}
.y5_c01173{bottom:918.400000pt;}
.y6_c01173{bottom:921.600000pt;}
.y8_c01173{bottom:924.800000pt;}
.y7_c01173{bottom:925.440000pt;}
.y1_c01173{bottom:971.520000pt;}
.y2_c01173{bottom:972.160000pt;}
.ha_c01173{height:25.341250pt;}
.hd_c01173{height:27.645000pt;}
.hf_c01173{height:34.556250pt;}
.h7_c01173{height:36.860000pt;}
.h5_c01173{height:39.163750pt;}
.h8_c01173{height:41.467500pt;}
.h9_c01173{height:43.771250pt;}
.hc_c01173{height:46.075000pt;}
.h4_c01173{height:48.378750pt;}
.h6_c01173{height:48.635000pt;}
.h10_c01173{height:50.682500pt;}
.hb_c01173{height:50.938750pt;}
.h11_c01173{height:52.986250pt;}
.h3_c01173{height:55.290000pt;}
.h2_c01173{height:59.897500pt;}
.he_c01173{height:73.720000pt;}
.h1_c01173{height:1019.333333pt;}
.h0_c01173{height:1019.520000pt;}
.w0_c01173{width:689.280000pt;}
.w1_c01173{width:689.333333pt;}
.x0_c01173{left:0.000000pt;}
.x3_c01173{left:65.280000pt;}
.xf_c01173{left:66.560000pt;}
.x1c_c01173{left:67.840000pt;}
.x4_c01173{left:140.160000pt;}
.x1a_c01173{left:141.440000pt;}
.x15_c01173{left:188.160000pt;}
.x5_c01173{left:215.040000pt;}
.x18_c01173{left:216.320000pt;}
.xd_c01173{left:262.400000pt;}
.x6_c01173{left:272.640000pt;}
.x1d_c01173{left:273.920000pt;}
.x19_c01173{left:291.840000pt;}
.xe_c01173{left:311.040000pt;}
.xa_c01173{left:320.640000pt;}
.x16_c01173{left:397.440000pt;}
.x14_c01173{left:435.840000pt;}
.x17_c01173{left:440.960000pt;}
.x7_c01173{left:485.120000pt;}
.xb_c01173{left:562.560000pt;}
.x11_c01173{left:563.840000pt;}
.x8_c01173{left:592.000000pt;}
.x12_c01173{left:593.280000pt;}
.x1_c01173{left:608.640000pt;}
.x9_c01173{left:620.800000pt;}
.x13_c01173{left:622.080000pt;}
.x1b_c01173{left:623.360000pt;}
.x10_c01173{left:631.040000pt;}
.x2_c01173{left:640.640000pt;}
.xc_c01173{left:648.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_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_9eb89e6c67f0304e3ba32a72.woff2')format("woff");}.ff1_c01174{font-family:ff1_c01174;line-height:1.109863;font-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_c01174{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m17_c01174{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);}
.m32_c01174{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_c01174{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_c01174{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01174{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m6_c01174{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01174{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m20_c01174{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.md_c01174{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m25_c01174{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.mc_c01174{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01174{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m14_c01174{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m30_c01174{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m5_c01174{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m15_c01174{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m23_c01174{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01174{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m18_c01174{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m10_c01174{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m9_c01174{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);}
.m26_c01174{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m13_c01174{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m29_c01174{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);}
.me_c01174{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2_c01174{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m1_c01174{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_c01174{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m7_c01174{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);}
.ma_c01174{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);}
.m27_c01174{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m3_c01174{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m11_c01174{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);}
.m19_c01174{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);}
.m16_c01174{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.mb_c01174{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m24_c01174{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);}
.m2b_c01174{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m22_c01174{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01174{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);}
.m31_c01174{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m12_c01174{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m4_c01174{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_c01174{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01174{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01174{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01174{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);}
.m2e_c01174{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01174{transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);}
.m21_c01174{transform:matrix(2.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.160000,0.000000,0.000000,0.250000,0,0);}
.v5_c01174{vertical-align:-8.640000px;}
.v4_c01174{vertical-align:-5.760000px;}
.v3_c01174{vertical-align:-2.880000px;}
.v0_c01174{vertical-align:0.000000px;}
.v1_c01174{vertical-align:2.880000px;}
.v2_c01174{vertical-align:8.640000px;}
.ls0_c01174{letter-spacing:0.000000px;}
.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;}
}
.ws4_c01174{word-spacing:-6.288240px;}
.ws0_c01174{word-spacing:-5.145840px;}
.ws5_c01174{word-spacing:0.000000px;}
.ws2_c01174{word-spacing:9.212400px;}
.ws3_c01174{word-spacing:10.749600px;}
.ws1_c01174{word-spacing:181.749600px;}
.fc0_c01174{color:transparent;}
.fs7_c01174{font-size:14.400000px;}
.fs8_c01174{font-size:34.560000px;}
.fsa_c01174{font-size:46.080000px;}
.fs5_c01174{font-size:48.960000px;}
.fs4_c01174{font-size:51.840000px;}
.fs6_c01174{font-size:54.720000px;}
.fs1_c01174{font-size:57.600000px;}
.fs2_c01174{font-size:60.480000px;}
.fs3_c01174{font-size:63.360000px;}
.fs9_c01174{font-size:66.240000px;}
.fs0_c01174{font-size:74.880000px;}
.y0_c01174{bottom:0.000000px;}
.y7f_c01174{bottom:43.200000px;}
.y7d_c01174{bottom:44.640000px;}
.y7c_c01174{bottom:45.360000px;}
.y7e_c01174{bottom:46.080000px;}
.y7a_c01174{bottom:48.240000px;}
.y7b_c01174{bottom:50.400000px;}
.y79_c01174{bottom:51.120000px;}
.y78_c01174{bottom:54.000000px;}
.y77_c01174{bottom:87.840000px;}
.y75_c01174{bottom:88.560000px;}
.y74_c01174{bottom:89.280000px;}
.y76_c01174{bottom:91.440000px;}
.y73_c01174{bottom:93.600000px;}
.y72_c01174{bottom:95.760000px;}
.y71_c01174{bottom:131.040000px;}
.y6f_c01174{bottom:132.480000px;}
.y70_c01174{bottom:133.920000px;}
.y6e_c01174{bottom:136.080000px;}
.y6d_c01174{bottom:139.680000px;}
.y6b_c01174{bottom:174.240000px;}
.y6c_c01174{bottom:174.960000px;}
.y69_c01174{bottom:176.400000px;}
.y6a_c01174{bottom:177.120000px;}
.y67_c01174{bottom:177.840000px;}
.y66_c01174{bottom:178.560000px;}
.y68_c01174{bottom:179.280000px;}
.y65_c01174{bottom:180.720000px;}
.y63_c01174{bottom:217.440000px;}
.y64_c01174{bottom:218.160000px;}
.y62_c01174{bottom:218.880000px;}
.y61_c01174{bottom:219.600000px;}
.y60_c01174{bottom:221.760000px;}
.y5f_c01174{bottom:223.200000px;}
.y5e_c01174{bottom:260.640000px;}
.y5d_c01174{bottom:262.080000px;}
.y5b_c01174{bottom:262.800000px;}
.y5a_c01174{bottom:264.240000px;}
.y5c_c01174{bottom:264.960000px;}
.y59_c01174{bottom:265.680000px;}
.y58_c01174{bottom:303.840000px;}
.y57_c01174{bottom:304.560000px;}
.y55_c01174{bottom:305.280000px;}
.y54_c01174{bottom:306.000000px;}
.y56_c01174{bottom:307.440000px;}
.y53_c01174{bottom:308.160000px;}
.y52_c01174{bottom:346.320000px;}
.y51_c01174{bottom:347.760000px;}
.y4f_c01174{bottom:348.480000px;}
.y4e_c01174{bottom:349.200000px;}
.y50_c01174{bottom:349.920000px;}
.y4d_c01174{bottom:350.640000px;}
.y4c_c01174{bottom:390.240000px;}
.y4a_c01174{bottom:390.960000px;}
.y49_c01174{bottom:391.680000px;}
.y4b_c01174{bottom:392.400000px;}
.y48_c01174{bottom:393.120000px;}
.y47_c01174{bottom:432.720000px;}
.y46_c01174{bottom:433.440000px;}
.y45_c01174{bottom:434.880000px;}
.y44_c01174{bottom:435.600000px;}
.y43_c01174{bottom:475.920000px;}
.y42_c01174{bottom:476.640000px;}
.y41_c01174{bottom:477.360000px;}
.y40_c01174{bottom:478.800000px;}
.y3e_c01174{bottom:519.120000px;}
.y3d_c01174{bottom:519.840000px;}
.y3c_c01174{bottom:520.560000px;}
.y3f_c01174{bottom:522.000000px;}
.y39_c01174{bottom:563.040000px;}
.y3b_c01174{bottom:563.760000px;}
.y3a_c01174{bottom:565.200000px;}
.y37_c01174{bottom:606.240000px;}
.y36_c01174{bottom:606.960000px;}
.y38_c01174{bottom:608.400000px;}
.y31_c01174{bottom:648.720000px;}
.y30_c01174{bottom:649.440000px;}
.y33_c01174{bottom:650.160000px;}
.y32_c01174{bottom:650.880000px;}
.y34_c01174{bottom:651.600000px;}
.y35_c01174{bottom:652.320000px;}
.y2c_c01174{bottom:691.920000px;}
.y2e_c01174{bottom:692.640000px;}
.y2d_c01174{bottom:694.080000px;}
.y2f_c01174{bottom:694.800000px;}
.y2b_c01174{bottom:732.240000px;}
.y26_c01174{bottom:734.400000px;}
.y25_c01174{bottom:735.120000px;}
.y28_c01174{bottom:735.840000px;}
.y27_c01174{bottom:737.280000px;}
.y2a_c01174{bottom:738.000000px;}
.y29_c01174{bottom:738.720000px;}
.y21_c01174{bottom:776.880000px;}
.y23_c01174{bottom:778.320000px;}
.y22_c01174{bottom:779.760000px;}
.y24_c01174{bottom:781.920000px;}
.y1d_c01174{bottom:820.080000px;}
.y1f_c01174{bottom:821.520000px;}
.y20_c01174{bottom:822.240000px;}
.y1e_c01174{bottom:822.960000px;}
.y17_c01174{bottom:861.840000px;}
.y18_c01174{bottom:862.560000px;}
.y1a_c01174{bottom:864.720000px;}
.y19_c01174{bottom:865.440000px;}
.y1b_c01174{bottom:866.880000px;}
.y1c_c01174{bottom:867.600000px;}
.y11_c01174{bottom:904.320000px;}
.y12_c01174{bottom:905.040000px;}
.y13_c01174{bottom:905.760000px;}
.y15_c01174{bottom:907.920000px;}
.y14_c01174{bottom:908.640000px;}
.y16_c01174{bottom:910.080000px;}
.yd_c01174{bottom:947.520000px;}
.ye_c01174{bottom:951.120000px;}
.y10_c01174{bottom:951.840000px;}
.yf_c01174{bottom:953.280000px;}
.y8_c01174{bottom:990.000000px;}
.y9_c01174{bottom:990.720000px;}
.yb_c01174{bottom:993.600000px;}
.ya_c01174{bottom:994.320000px;}
.yc_c01174{bottom:997.200000px;}
.y2_c01174{bottom:1032.480000px;}
.y3_c01174{bottom:1033.920000px;}
.y5_c01174{bottom:1036.800000px;}
.y6_c01174{bottom:1037.520000px;}
.y4_c01174{bottom:1038.240000px;}
.y7_c01174{bottom:1040.400000px;}
.y1_c01174{bottom:1088.640000px;}
.hb_c01174{height:12.958594px;}
.hc_c01174{height:31.100625px;}
.he_c01174{height:41.467500px;}
.h7_c01174{height:44.059219px;}
.h6_c01174{height:46.650937px;}
.h9_c01174{height:49.242656px;}
.h3_c01174{height:51.834375px;}
.h4_c01174{height:54.426094px;}
.h5_c01174{height:57.017812px;}
.h8_c01174{height:57.306094px;}
.ha_c01174{height:57.882656px;}
.hd_c01174{height:59.609531px;}
.h2_c01174{height:67.384687px;}
.h0_c01174{height:1141.920000px;}
.h1_c01174{height:1142.250000px;}
.w0_c01174{width:781.920000px;}
.w1_c01174{width:782.250000px;}
.x0_c01174{left:0.000000px;}
.x2_c01174{left:75.600000px;}
.x3_c01174{left:159.120000px;}
.x4_c01174{left:243.360000px;}
.x5_c01174{left:307.440000px;}
.xb_c01174{left:328.320000px;}
.xd_c01174{left:339.840000px;}
.xc_c01174{left:393.120000px;}
.x6_c01174{left:545.760000px;}
.x7_c01174{left:635.040000px;}
.xa_c01174{left:642.240000px;}
.x8_c01174{left:667.440000px;}
.x1_c01174{left:675.360000px;}
.x9_c01174{left:699.840000px;}
@media print{
.v5_c01174{vertical-align:-7.680000pt;}
.v4_c01174{vertical-align:-5.120000pt;}
.v3_c01174{vertical-align:-2.560000pt;}
.v0_c01174{vertical-align:0.000000pt;}
.v1_c01174{vertical-align:2.560000pt;}
.v2_c01174{vertical-align:7.680000pt;}
.ls0_c01174{letter-spacing:0.000000pt;}
.ws4_c01174{word-spacing:-5.589547pt;}
.ws0_c01174{word-spacing:-4.574080pt;}
.ws5_c01174{word-spacing:0.000000pt;}
.ws2_c01174{word-spacing:8.188800pt;}
.ws3_c01174{word-spacing:9.555200pt;}
.ws1_c01174{word-spacing:161.555200pt;}
.fs7_c01174{font-size:12.800000pt;}
.fs8_c01174{font-size:30.720000pt;}
.fsa_c01174{font-size:40.960000pt;}
.fs5_c01174{font-size:43.520000pt;}
.fs4_c01174{font-size:46.080000pt;}
.fs6_c01174{font-size:48.640000pt;}
.fs1_c01174{font-size:51.200000pt;}
.fs2_c01174{font-size:53.760000pt;}
.fs3_c01174{font-size:56.320000pt;}
.fs9_c01174{font-size:58.880000pt;}
.fs0_c01174{font-size:66.560000pt;}
.y0_c01174{bottom:0.000000pt;}
.y7f_c01174{bottom:38.400000pt;}
.y7d_c01174{bottom:39.680000pt;}
.y7c_c01174{bottom:40.320000pt;}
.y7e_c01174{bottom:40.960000pt;}
.y7a_c01174{bottom:42.880000pt;}
.y7b_c01174{bottom:44.800000pt;}
.y79_c01174{bottom:45.440000pt;}
.y78_c01174{bottom:48.000000pt;}
.y77_c01174{bottom:78.080000pt;}
.y75_c01174{bottom:78.720000pt;}
.y74_c01174{bottom:79.360000pt;}
.y76_c01174{bottom:81.280000pt;}
.y73_c01174{bottom:83.200000pt;}
.y72_c01174{bottom:85.120000pt;}
.y71_c01174{bottom:116.480000pt;}
.y6f_c01174{bottom:117.760000pt;}
.y70_c01174{bottom:119.040000pt;}
.y6e_c01174{bottom:120.960000pt;}
.y6d_c01174{bottom:124.160000pt;}
.y6b_c01174{bottom:154.880000pt;}
.y6c_c01174{bottom:155.520000pt;}
.y69_c01174{bottom:156.800000pt;}
.y6a_c01174{bottom:157.440000pt;}
.y67_c01174{bottom:158.080000pt;}
.y66_c01174{bottom:158.720000pt;}
.y68_c01174{bottom:159.360000pt;}
.y65_c01174{bottom:160.640000pt;}
.y63_c01174{bottom:193.280000pt;}
.y64_c01174{bottom:193.920000pt;}
.y62_c01174{bottom:194.560000pt;}
.y61_c01174{bottom:195.200000pt;}
.y60_c01174{bottom:197.120000pt;}
.y5f_c01174{bottom:198.400000pt;}
.y5e_c01174{bottom:231.680000pt;}
.y5d_c01174{bottom:232.960000pt;}
.y5b_c01174{bottom:233.600000pt;}
.y5a_c01174{bottom:234.880000pt;}
.y5c_c01174{bottom:235.520000pt;}
.y59_c01174{bottom:236.160000pt;}
.y58_c01174{bottom:270.080000pt;}
.y57_c01174{bottom:270.720000pt;}
.y55_c01174{bottom:271.360000pt;}
.y54_c01174{bottom:272.000000pt;}
.y56_c01174{bottom:273.280000pt;}
.y53_c01174{bottom:273.920000pt;}
.y52_c01174{bottom:307.840000pt;}
.y51_c01174{bottom:309.120000pt;}
.y4f_c01174{bottom:309.760000pt;}
.y4e_c01174{bottom:310.400000pt;}
.y50_c01174{bottom:311.040000pt;}
.y4d_c01174{bottom:311.680000pt;}
.y4c_c01174{bottom:346.880000pt;}
.y4a_c01174{bottom:347.520000pt;}
.y49_c01174{bottom:348.160000pt;}
.y4b_c01174{bottom:348.800000pt;}
.y48_c01174{bottom:349.440000pt;}
.y47_c01174{bottom:384.640000pt;}
.y46_c01174{bottom:385.280000pt;}
.y45_c01174{bottom:386.560000pt;}
.y44_c01174{bottom:387.200000pt;}
.y43_c01174{bottom:423.040000pt;}
.y42_c01174{bottom:423.680000pt;}
.y41_c01174{bottom:424.320000pt;}
.y40_c01174{bottom:425.600000pt;}
.y3e_c01174{bottom:461.440000pt;}
.y3d_c01174{bottom:462.080000pt;}
.y3c_c01174{bottom:462.720000pt;}
.y3f_c01174{bottom:464.000000pt;}
.y39_c01174{bottom:500.480000pt;}
.y3b_c01174{bottom:501.120000pt;}
.y3a_c01174{bottom:502.400000pt;}
.y37_c01174{bottom:538.880000pt;}
.y36_c01174{bottom:539.520000pt;}
.y38_c01174{bottom:540.800000pt;}
.y31_c01174{bottom:576.640000pt;}
.y30_c01174{bottom:577.280000pt;}
.y33_c01174{bottom:577.920000pt;}
.y32_c01174{bottom:578.560000pt;}
.y34_c01174{bottom:579.200000pt;}
.y35_c01174{bottom:579.840000pt;}
.y2c_c01174{bottom:615.040000pt;}
.y2e_c01174{bottom:615.680000pt;}
.y2d_c01174{bottom:616.960000pt;}
.y2f_c01174{bottom:617.600000pt;}
.y2b_c01174{bottom:650.880000pt;}
.y26_c01174{bottom:652.800000pt;}
.y25_c01174{bottom:653.440000pt;}
.y28_c01174{bottom:654.080000pt;}
.y27_c01174{bottom:655.360000pt;}
.y2a_c01174{bottom:656.000000pt;}
.y29_c01174{bottom:656.640000pt;}
.y21_c01174{bottom:690.560000pt;}
.y23_c01174{bottom:691.840000pt;}
.y22_c01174{bottom:693.120000pt;}
.y24_c01174{bottom:695.040000pt;}
.y1d_c01174{bottom:728.960000pt;}
.y1f_c01174{bottom:730.240000pt;}
.y20_c01174{bottom:730.880000pt;}
.y1e_c01174{bottom:731.520000pt;}
.y17_c01174{bottom:766.080000pt;}
.y18_c01174{bottom:766.720000pt;}
.y1a_c01174{bottom:768.640000pt;}
.y19_c01174{bottom:769.280000pt;}
.y1b_c01174{bottom:770.560000pt;}
.y1c_c01174{bottom:771.200000pt;}
.y11_c01174{bottom:803.840000pt;}
.y12_c01174{bottom:804.480000pt;}
.y13_c01174{bottom:805.120000pt;}
.y15_c01174{bottom:807.040000pt;}
.y14_c01174{bottom:807.680000pt;}
.y16_c01174{bottom:808.960000pt;}
.yd_c01174{bottom:842.240000pt;}
.ye_c01174{bottom:845.440000pt;}
.y10_c01174{bottom:846.080000pt;}
.yf_c01174{bottom:847.360000pt;}
.y8_c01174{bottom:880.000000pt;}
.y9_c01174{bottom:880.640000pt;}
.yb_c01174{bottom:883.200000pt;}
.ya_c01174{bottom:883.840000pt;}
.yc_c01174{bottom:886.400000pt;}
.y2_c01174{bottom:917.760000pt;}
.y3_c01174{bottom:919.040000pt;}
.y5_c01174{bottom:921.600000pt;}
.y6_c01174{bottom:922.240000pt;}
.y4_c01174{bottom:922.880000pt;}
.y7_c01174{bottom:924.800000pt;}
.y1_c01174{bottom:967.680000pt;}
.hb_c01174{height:11.518750pt;}
.hc_c01174{height:27.645000pt;}
.he_c01174{height:36.860000pt;}
.h7_c01174{height:39.163750pt;}
.h6_c01174{height:41.467500pt;}
.h9_c01174{height:43.771250pt;}
.h3_c01174{height:46.075000pt;}
.h4_c01174{height:48.378750pt;}
.h5_c01174{height:50.682500pt;}
.h8_c01174{height:50.938750pt;}
.ha_c01174{height:51.451250pt;}
.hd_c01174{height:52.986250pt;}
.h2_c01174{height:59.897500pt;}
.h0_c01174{height:1015.040000pt;}
.h1_c01174{height:1015.333333pt;}
.w0_c01174{width:695.040000pt;}
.w1_c01174{width:695.333333pt;}
.x0_c01174{left:0.000000pt;}
.x2_c01174{left:67.200000pt;}
.x3_c01174{left:141.440000pt;}
.x4_c01174{left:216.320000pt;}
.x5_c01174{left:273.280000pt;}
.xb_c01174{left:291.840000pt;}
.xd_c01174{left:302.080000pt;}
.xc_c01174{left:349.440000pt;}
.x6_c01174{left:485.120000pt;}
.x7_c01174{left:564.480000pt;}
.xa_c01174{left:570.880000pt;}
.x8_c01174{left:593.280000pt;}
.x1_c01174{left:600.320000pt;}
.x9_c01174{left:622.080000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_86140d30b53dd05d8d5d23c2.woff2')format("woff");}.ff1_c01175{font-family:ff1_c01175;line-height:1.109863;font-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_c01175{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m1f_c01175{transform:matrix(0.234200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234200,0.000000,0.000000,0.250000,0,0);}
.m38_c01175{transform:matrix(0.243850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243850,0.000000,0.000000,0.250000,0,0);}
.m2d_c01175{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m16_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);}
.m3a_c01175{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_c01175{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m22_c01175{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);}
.m49_c01175{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);}
.m48_c01175{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01175{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);}
.m41_c01175{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01175{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);}
.m28_c01175{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01175{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m27_c01175{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01175{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m8_c01175{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m39_c01175{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m25_c01175{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01175{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m34_c01175{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.md_c01175{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m20_c01175{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m12_c01175{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m0_c01175{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m18_c01175{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m6_c01175{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mc_c01175{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m10_c01175{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);}
.m3f_c01175{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m2_c01175{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.me_c01175{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);}
.m46_c01175{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01175{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m13_c01175{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m3_c01175{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m37_c01175{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);}
.ma_c01175{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m44_c01175{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);}
.m3b_c01175{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);}
.m29_c01175{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m7_c01175{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);}
.m32_c01175{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m23_c01175{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01175{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);}
.m24_c01175{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01175{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);}
.m1c_c01175{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);}
.m4_c01175{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m33_c01175{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01175{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m31_c01175{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01175{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01175{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);}
.m19_c01175{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m36_c01175{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.mb_c01175{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);}
.m14_c01175{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m5_c01175{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m11_c01175{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m47_c01175{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);}
.m43_c01175{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m45_c01175{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);}
.m30_c01175{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m42_c01175{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m35_c01175{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m21_c01175{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m15_c01175{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m40_c01175{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01175{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01175{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01175{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);}
.m17_c01175{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m26_c01175{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.v0_c01175{vertical-align:0.000000px;}
.v1_c01175{vertical-align:2.880000px;}
.v3_c01175{vertical-align:5.760000px;}
.v2_c01175{vertical-align:8.640000px;}
.ls0_c01175{letter-spacing:0.000000px;}
.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;}
}
.ws7_c01175{word-spacing:-7.735200px;}
.ws8_c01175{word-spacing:0.000000px;}
.ws2_c01175{word-spacing:1.092720px;}
.ws5_c01175{word-spacing:2.319348px;}
.ws4_c01175{word-spacing:3.294720px;}
.ws0_c01175{word-spacing:4.517520px;}
.ws6_c01175{word-spacing:14.955600px;}
.ws3_c01175{word-spacing:181.749963px;}
.ws1_c01175{word-spacing:190.569600px;}
.fc0_c01175{color:transparent;}
.fs9_c01175{font-size:34.560000px;}
.fs6_c01175{font-size:37.440000px;}
.fsc_c01175{font-size:43.200000px;}
.fs4_c01175{font-size:46.080000px;}
.fs7_c01175{font-size:48.960000px;}
.fs1_c01175{font-size:51.840000px;}
.fs3_c01175{font-size:54.720000px;}
.fs5_c01175{font-size:57.600000px;}
.fs2_c01175{font-size:60.480000px;}
.fs8_c01175{font-size:63.360000px;}
.fsb_c01175{font-size:66.240000px;}
.fsa_c01175{font-size:69.120000px;}
.fs0_c01175{font-size:74.880000px;}
.fsd_c01175{font-size:95.040000px;}
.y0_c01175{bottom:0.000000px;}
.y8a_c01175{bottom:84.240000px;}
.y8b_c01175{bottom:85.680000px;}
.y88_c01175{bottom:113.040000px;}
.y86_c01175{bottom:113.760000px;}
.y85_c01175{bottom:114.480000px;}
.y89_c01175{bottom:115.200000px;}
.y84_c01175{bottom:115.920000px;}
.y87_c01175{bottom:116.640000px;}
.y83_c01175{bottom:118.080000px;}
.y80_c01175{bottom:156.960000px;}
.y81_c01175{bottom:157.680000px;}
.y82_c01175{bottom:158.400000px;}
.y7e_c01175{bottom:159.120000px;}
.y7f_c01175{bottom:159.840000px;}
.y7d_c01175{bottom:160.560000px;}
.y7c_c01175{bottom:199.440000px;}
.y7a_c01175{bottom:200.160000px;}
.y77_c01175{bottom:200.880000px;}
.y7b_c01175{bottom:201.600000px;}
.y79_c01175{bottom:202.320000px;}
.y78_c01175{bottom:203.040000px;}
.y76_c01175{bottom:203.760000px;}
.y73_c01175{bottom:244.080000px;}
.y75_c01175{bottom:246.240000px;}
.y74_c01175{bottom:246.960000px;}
.y70_c01175{bottom:275.040000px;}
.y6e_c01175{bottom:275.760000px;}
.y72_c01175{bottom:276.480000px;}
.y71_c01175{bottom:277.200000px;}
.y6d_c01175{bottom:277.920000px;}
.y6f_c01175{bottom:278.640000px;}
.y6b_c01175{bottom:318.240000px;}
.y69_c01175{bottom:318.960000px;}
.y6c_c01175{bottom:319.680000px;}
.y68_c01175{bottom:320.400000px;}
.y6a_c01175{bottom:321.120000px;}
.y67_c01175{bottom:352.800000px;}
.y65_c01175{bottom:362.160000px;}
.y64_c01175{bottom:362.880000px;}
.y66_c01175{bottom:363.600000px;}
.y63_c01175{bottom:406.800000px;}
.y5e_c01175{bottom:435.600000px;}
.y5d_c01175{bottom:436.320000px;}
.y5c_c01175{bottom:437.040000px;}
.y60_c01175{bottom:437.760000px;}
.y5f_c01175{bottom:438.480000px;}
.y62_c01175{bottom:439.200000px;}
.y61_c01175{bottom:439.920000px;}
.y58_c01175{bottom:478.800000px;}
.y57_c01175{bottom:480.240000px;}
.y59_c01175{bottom:480.960000px;}
.y5b_c01175{bottom:481.680000px;}
.y5a_c01175{bottom:482.400000px;}
.y52_c01175{bottom:522.000000px;}
.y51_c01175{bottom:522.720000px;}
.y54_c01175{bottom:523.440000px;}
.y55_c01175{bottom:524.160000px;}
.y53_c01175{bottom:524.880000px;}
.y56_c01175{bottom:527.040000px;}
.y4c_c01175{bottom:564.480000px;}
.y4f_c01175{bottom:565.920000px;}
.y4d_c01175{bottom:566.640000px;}
.y4e_c01175{bottom:567.360000px;}
.y50_c01175{bottom:570.240000px;}
.y48_c01175{bottom:606.960000px;}
.y47_c01175{bottom:607.680000px;}
.y49_c01175{bottom:609.120000px;}
.y4a_c01175{bottom:610.560000px;}
.y4b_c01175{bottom:612.000000px;}
.y42_c01175{bottom:649.440000px;}
.y3f_c01175{bottom:650.160000px;}
.y41_c01175{bottom:651.600000px;}
.y40_c01175{bottom:652.320000px;}
.y45_c01175{bottom:653.040000px;}
.y43_c01175{bottom:653.760000px;}
.y44_c01175{bottom:655.200000px;}
.y46_c01175{bottom:655.920000px;}
.y3b_c01175{bottom:692.640000px;}
.y3c_c01175{bottom:695.520000px;}
.y3e_c01175{bottom:696.960000px;}
.y3d_c01175{bottom:699.120000px;}
.y34_c01175{bottom:735.120000px;}
.y33_c01175{bottom:735.840000px;}
.y35_c01175{bottom:738.000000px;}
.y36_c01175{bottom:738.720000px;}
.y37_c01175{bottom:739.440000px;}
.y38_c01175{bottom:740.160000px;}
.y39_c01175{bottom:741.600000px;}
.y3a_c01175{bottom:742.320000px;}
.y2c_c01175{bottom:777.600000px;}
.y2d_c01175{bottom:778.320000px;}
.y2e_c01175{bottom:781.200000px;}
.y2f_c01175{bottom:781.920000px;}
.y31_c01175{bottom:783.360000px;}
.y30_c01175{bottom:784.800000px;}
.y32_c01175{bottom:786.240000px;}
.y25_c01175{bottom:820.080000px;}
.y26_c01175{bottom:820.800000px;}
.y27_c01175{bottom:821.520000px;}
.y28_c01175{bottom:824.400000px;}
.y29_c01175{bottom:825.120000px;}
.y2a_c01175{bottom:826.560000px;}
.y2b_c01175{bottom:828.720000px;}
.y24_c01175{bottom:856.080000px;}
.y1c_c01175{bottom:863.280000px;}
.y1d_c01175{bottom:864.000000px;}
.y1f_c01175{bottom:866.880000px;}
.y1e_c01175{bottom:867.600000px;}
.y21_c01175{bottom:868.320000px;}
.y20_c01175{bottom:869.040000px;}
.y22_c01175{bottom:869.760000px;}
.y23_c01175{bottom:872.640000px;}
.y15_c01175{bottom:905.760000px;}
.y16_c01175{bottom:909.360000px;}
.y17_c01175{bottom:910.080000px;}
.y18_c01175{bottom:910.800000px;}
.y19_c01175{bottom:912.240000px;}
.y1a_c01175{bottom:915.120000px;}
.y1b_c01175{bottom:915.840000px;}
.yf_c01175{bottom:948.960000px;}
.y10_c01175{bottom:949.680000px;}
.y11_c01175{bottom:953.280000px;}
.y12_c01175{bottom:955.440000px;}
.y13_c01175{bottom:958.320000px;}
.y14_c01175{bottom:959.040000px;}
.ya_c01175{bottom:991.440000px;}
.yb_c01175{bottom:992.880000px;}
.yc_c01175{bottom:997.200000px;}
.yd_c01175{bottom:998.640000px;}
.ye_c01175{bottom:999.360000px;}
.y3_c01175{bottom:1033.920000px;}
.y4_c01175{bottom:1035.360000px;}
.y5_c01175{bottom:1036.080000px;}
.y6_c01175{bottom:1040.400000px;}
.y7_c01175{bottom:1041.120000px;}
.y9_c01175{bottom:1042.560000px;}
.y8_c01175{bottom:1045.440000px;}
.y1_c01175{bottom:1094.400000px;}
.y2_c01175{bottom:1098.720000px;}
.hc_c01175{height:31.100625px;}
.h9_c01175{height:33.692344px;}
.h11_c01175{height:38.875781px;}
.h6_c01175{height:41.467500px;}
.hb_c01175{height:44.059219px;}
.h3_c01175{height:46.650937px;}
.h5_c01175{height:49.242656px;}
.h7_c01175{height:51.834375px;}
.h4_c01175{height:54.426094px;}
.h10_c01175{height:55.002656px;}
.hd_c01175{height:57.017812px;}
.h8_c01175{height:57.306094px;}
.ha_c01175{height:57.882656px;}
.hf_c01175{height:59.609531px;}
.he_c01175{height:62.201250px;}
.h2_c01175{height:67.384687px;}
.h12_c01175{height:85.526719px;}
.h1_c01175{height:1143.750000px;}
.h0_c01175{height:1144.080000px;}
.w1_c01175{width:784.500000px;}
.w0_c01175{width:784.800000px;}
.x0_c01175{left:0.000000px;}
.x3_c01175{left:74.880000px;}
.x18_c01175{left:76.320000px;}
.x20_c01175{left:77.760000px;}
.x30_c01175{left:79.920000px;}
.x4_c01175{left:158.400000px;}
.x13_c01175{left:159.840000px;}
.x21_c01175{left:161.280000px;}
.x35_c01175{left:163.440000px;}
.x36_c01175{left:205.200000px;}
.x28_c01175{left:213.840000px;}
.x5_c01175{left:242.640000px;}
.xf_c01175{left:244.080000px;}
.x22_c01175{left:246.240000px;}
.x31_c01175{left:247.680000px;}
.x40_c01175{left:259.200000px;}
.xc_c01175{left:296.640000px;}
.x19_c01175{left:298.080000px;}
.x29_c01175{left:300.240000px;}
.x3b_c01175{left:302.400000px;}
.x6_c01175{left:306.720000px;}
.x14_c01175{left:308.160000px;}
.x23_c01175{left:310.320000px;}
.xd_c01175{left:351.360000px;}
.x2a_c01175{left:354.240000px;}
.x37_c01175{left:355.680000px;}
.x15_c01175{left:362.160000px;}
.x1c_c01175{left:363.600000px;}
.x24_c01175{left:365.040000px;}
.x3c_c01175{left:366.480000px;}
.x1e_c01175{left:395.280000px;}
.x26_c01175{left:408.240000px;}
.x38_c01175{left:410.400000px;}
.x2e_c01175{left:451.440000px;}
.x12_c01175{left:480.960000px;}
.x2b_c01175{left:483.840000px;}
.x3d_c01175{left:485.280000px;}
.x27_c01175{left:488.160000px;}
.x32_c01175{left:495.360000px;}
.x39_c01175{left:501.120000px;}
.x7_c01175{left:545.040000px;}
.xe_c01175{left:547.200000px;}
.x1f_c01175{left:548.640000px;}
.x2c_c01175{left:550.080000px;}
.x3a_c01175{left:551.520000px;}
.x8_c01175{left:633.600000px;}
.x16_c01175{left:635.040000px;}
.x25_c01175{left:637.200000px;}
.x33_c01175{left:638.640000px;}
.xb_c01175{left:665.280000px;}
.x9_c01175{left:666.720000px;}
.x17_c01175{left:668.160000px;}
.x1_c01175{left:669.600000px;}
.x34_c01175{left:671.760000px;}
.xa_c01175{left:699.840000px;}
.x1d_c01175{left:702.000000px;}
.x2f_c01175{left:704.160000px;}
.x2_c01175{left:706.320000px;}
.x10_c01175{left:710.640000px;}
.x1a_c01175{left:712.080000px;}
.x2d_c01175{left:714.240000px;}
.x3e_c01175{left:716.400000px;}
.x11_c01175{left:730.800000px;}
.x1b_c01175{left:732.240000px;}
.x3f_c01175{left:736.560000px;}
@media print{
.v0_c01175{vertical-align:0.000000pt;}
.v1_c01175{vertical-align:2.560000pt;}
.v3_c01175{vertical-align:5.120000pt;}
.v2_c01175{vertical-align:7.680000pt;}
.ls0_c01175{letter-spacing:0.000000pt;}
.ws7_c01175{word-spacing:-6.875733pt;}
.ws8_c01175{word-spacing:0.000000pt;}
.ws2_c01175{word-spacing:0.971307pt;}
.ws5_c01175{word-spacing:2.061642pt;}
.ws4_c01175{word-spacing:2.928640pt;}
.ws0_c01175{word-spacing:4.015573pt;}
.ws6_c01175{word-spacing:13.293867pt;}
.ws3_c01175{word-spacing:161.555523pt;}
.ws1_c01175{word-spacing:169.395200pt;}
.fs9_c01175{font-size:30.720000pt;}
.fs6_c01175{font-size:33.280000pt;}
.fsc_c01175{font-size:38.400000pt;}
.fs4_c01175{font-size:40.960000pt;}
.fs7_c01175{font-size:43.520000pt;}
.fs1_c01175{font-size:46.080000pt;}
.fs3_c01175{font-size:48.640000pt;}
.fs5_c01175{font-size:51.200000pt;}
.fs2_c01175{font-size:53.760000pt;}
.fs8_c01175{font-size:56.320000pt;}
.fsb_c01175{font-size:58.880000pt;}
.fsa_c01175{font-size:61.440000pt;}
.fs0_c01175{font-size:66.560000pt;}
.fsd_c01175{font-size:84.480000pt;}
.y0_c01175{bottom:0.000000pt;}
.y8a_c01175{bottom:74.880000pt;}
.y8b_c01175{bottom:76.160000pt;}
.y88_c01175{bottom:100.480000pt;}
.y86_c01175{bottom:101.120000pt;}
.y85_c01175{bottom:101.760000pt;}
.y89_c01175{bottom:102.400000pt;}
.y84_c01175{bottom:103.040000pt;}
.y87_c01175{bottom:103.680000pt;}
.y83_c01175{bottom:104.960000pt;}
.y80_c01175{bottom:139.520000pt;}
.y81_c01175{bottom:140.160000pt;}
.y82_c01175{bottom:140.800000pt;}
.y7e_c01175{bottom:141.440000pt;}
.y7f_c01175{bottom:142.080000pt;}
.y7d_c01175{bottom:142.720000pt;}
.y7c_c01175{bottom:177.280000pt;}
.y7a_c01175{bottom:177.920000pt;}
.y77_c01175{bottom:178.560000pt;}
.y7b_c01175{bottom:179.200000pt;}
.y79_c01175{bottom:179.840000pt;}
.y78_c01175{bottom:180.480000pt;}
.y76_c01175{bottom:181.120000pt;}
.y73_c01175{bottom:216.960000pt;}
.y75_c01175{bottom:218.880000pt;}
.y74_c01175{bottom:219.520000pt;}
.y70_c01175{bottom:244.480000pt;}
.y6e_c01175{bottom:245.120000pt;}
.y72_c01175{bottom:245.760000pt;}
.y71_c01175{bottom:246.400000pt;}
.y6d_c01175{bottom:247.040000pt;}
.y6f_c01175{bottom:247.680000pt;}
.y6b_c01175{bottom:282.880000pt;}
.y69_c01175{bottom:283.520000pt;}
.y6c_c01175{bottom:284.160000pt;}
.y68_c01175{bottom:284.800000pt;}
.y6a_c01175{bottom:285.440000pt;}
.y67_c01175{bottom:313.600000pt;}
.y65_c01175{bottom:321.920000pt;}
.y64_c01175{bottom:322.560000pt;}
.y66_c01175{bottom:323.200000pt;}
.y63_c01175{bottom:361.600000pt;}
.y5e_c01175{bottom:387.200000pt;}
.y5d_c01175{bottom:387.840000pt;}
.y5c_c01175{bottom:388.480000pt;}
.y60_c01175{bottom:389.120000pt;}
.y5f_c01175{bottom:389.760000pt;}
.y62_c01175{bottom:390.400000pt;}
.y61_c01175{bottom:391.040000pt;}
.y58_c01175{bottom:425.600000pt;}
.y57_c01175{bottom:426.880000pt;}
.y59_c01175{bottom:427.520000pt;}
.y5b_c01175{bottom:428.160000pt;}
.y5a_c01175{bottom:428.800000pt;}
.y52_c01175{bottom:464.000000pt;}
.y51_c01175{bottom:464.640000pt;}
.y54_c01175{bottom:465.280000pt;}
.y55_c01175{bottom:465.920000pt;}
.y53_c01175{bottom:466.560000pt;}
.y56_c01175{bottom:468.480000pt;}
.y4c_c01175{bottom:501.760000pt;}
.y4f_c01175{bottom:503.040000pt;}
.y4d_c01175{bottom:503.680000pt;}
.y4e_c01175{bottom:504.320000pt;}
.y50_c01175{bottom:506.880000pt;}
.y48_c01175{bottom:539.520000pt;}
.y47_c01175{bottom:540.160000pt;}
.y49_c01175{bottom:541.440000pt;}
.y4a_c01175{bottom:542.720000pt;}
.y4b_c01175{bottom:544.000000pt;}
.y42_c01175{bottom:577.280000pt;}
.y3f_c01175{bottom:577.920000pt;}
.y41_c01175{bottom:579.200000pt;}
.y40_c01175{bottom:579.840000pt;}
.y45_c01175{bottom:580.480000pt;}
.y43_c01175{bottom:581.120000pt;}
.y44_c01175{bottom:582.400000pt;}
.y46_c01175{bottom:583.040000pt;}
.y3b_c01175{bottom:615.680000pt;}
.y3c_c01175{bottom:618.240000pt;}
.y3e_c01175{bottom:619.520000pt;}
.y3d_c01175{bottom:621.440000pt;}
.y34_c01175{bottom:653.440000pt;}
.y33_c01175{bottom:654.080000pt;}
.y35_c01175{bottom:656.000000pt;}
.y36_c01175{bottom:656.640000pt;}
.y37_c01175{bottom:657.280000pt;}
.y38_c01175{bottom:657.920000pt;}
.y39_c01175{bottom:659.200000pt;}
.y3a_c01175{bottom:659.840000pt;}
.y2c_c01175{bottom:691.200000pt;}
.y2d_c01175{bottom:691.840000pt;}
.y2e_c01175{bottom:694.400000pt;}
.y2f_c01175{bottom:695.040000pt;}
.y31_c01175{bottom:696.320000pt;}
.y30_c01175{bottom:697.600000pt;}
.y32_c01175{bottom:698.880000pt;}
.y25_c01175{bottom:728.960000pt;}
.y26_c01175{bottom:729.600000pt;}
.y27_c01175{bottom:730.240000pt;}
.y28_c01175{bottom:732.800000pt;}
.y29_c01175{bottom:733.440000pt;}
.y2a_c01175{bottom:734.720000pt;}
.y2b_c01175{bottom:736.640000pt;}
.y24_c01175{bottom:760.960000pt;}
.y1c_c01175{bottom:767.360000pt;}
.y1d_c01175{bottom:768.000000pt;}
.y1f_c01175{bottom:770.560000pt;}
.y1e_c01175{bottom:771.200000pt;}
.y21_c01175{bottom:771.840000pt;}
.y20_c01175{bottom:772.480000pt;}
.y22_c01175{bottom:773.120000pt;}
.y23_c01175{bottom:775.680000pt;}
.y15_c01175{bottom:805.120000pt;}
.y16_c01175{bottom:808.320000pt;}
.y17_c01175{bottom:808.960000pt;}
.y18_c01175{bottom:809.600000pt;}
.y19_c01175{bottom:810.880000pt;}
.y1a_c01175{bottom:813.440000pt;}
.y1b_c01175{bottom:814.080000pt;}
.yf_c01175{bottom:843.520000pt;}
.y10_c01175{bottom:844.160000pt;}
.y11_c01175{bottom:847.360000pt;}
.y12_c01175{bottom:849.280000pt;}
.y13_c01175{bottom:851.840000pt;}
.y14_c01175{bottom:852.480000pt;}
.ya_c01175{bottom:881.280000pt;}
.yb_c01175{bottom:882.560000pt;}
.yc_c01175{bottom:886.400000pt;}
.yd_c01175{bottom:887.680000pt;}
.ye_c01175{bottom:888.320000pt;}
.y3_c01175{bottom:919.040000pt;}
.y4_c01175{bottom:920.320000pt;}
.y5_c01175{bottom:920.960000pt;}
.y6_c01175{bottom:924.800000pt;}
.y7_c01175{bottom:925.440000pt;}
.y9_c01175{bottom:926.720000pt;}
.y8_c01175{bottom:929.280000pt;}
.y1_c01175{bottom:972.800000pt;}
.y2_c01175{bottom:976.640000pt;}
.hc_c01175{height:27.645000pt;}
.h9_c01175{height:29.948750pt;}
.h11_c01175{height:34.556250pt;}
.h6_c01175{height:36.860000pt;}
.hb_c01175{height:39.163750pt;}
.h3_c01175{height:41.467500pt;}
.h5_c01175{height:43.771250pt;}
.h7_c01175{height:46.075000pt;}
.h4_c01175{height:48.378750pt;}
.h10_c01175{height:48.891250pt;}
.hd_c01175{height:50.682500pt;}
.h8_c01175{height:50.938750pt;}
.ha_c01175{height:51.451250pt;}
.hf_c01175{height:52.986250pt;}
.he_c01175{height:55.290000pt;}
.h2_c01175{height:59.897500pt;}
.h12_c01175{height:76.023750pt;}
.h1_c01175{height:1016.666667pt;}
.h0_c01175{height:1016.960000pt;}
.w1_c01175{width:697.333333pt;}
.w0_c01175{width:697.600000pt;}
.x0_c01175{left:0.000000pt;}
.x3_c01175{left:66.560000pt;}
.x18_c01175{left:67.840000pt;}
.x20_c01175{left:69.120000pt;}
.x30_c01175{left:71.040000pt;}
.x4_c01175{left:140.800000pt;}
.x13_c01175{left:142.080000pt;}
.x21_c01175{left:143.360000pt;}
.x35_c01175{left:145.280000pt;}
.x36_c01175{left:182.400000pt;}
.x28_c01175{left:190.080000pt;}
.x5_c01175{left:215.680000pt;}
.xf_c01175{left:216.960000pt;}
.x22_c01175{left:218.880000pt;}
.x31_c01175{left:220.160000pt;}
.x40_c01175{left:230.400000pt;}
.xc_c01175{left:263.680000pt;}
.x19_c01175{left:264.960000pt;}
.x29_c01175{left:266.880000pt;}
.x3b_c01175{left:268.800000pt;}
.x6_c01175{left:272.640000pt;}
.x14_c01175{left:273.920000pt;}
.x23_c01175{left:275.840000pt;}
.xd_c01175{left:312.320000pt;}
.x2a_c01175{left:314.880000pt;}
.x37_c01175{left:316.160000pt;}
.x15_c01175{left:321.920000pt;}
.x1c_c01175{left:323.200000pt;}
.x24_c01175{left:324.480000pt;}
.x3c_c01175{left:325.760000pt;}
.x1e_c01175{left:351.360000pt;}
.x26_c01175{left:362.880000pt;}
.x38_c01175{left:364.800000pt;}
.x2e_c01175{left:401.280000pt;}
.x12_c01175{left:427.520000pt;}
.x2b_c01175{left:430.080000pt;}
.x3d_c01175{left:431.360000pt;}
.x27_c01175{left:433.920000pt;}
.x32_c01175{left:440.320000pt;}
.x39_c01175{left:445.440000pt;}
.x7_c01175{left:484.480000pt;}
.xe_c01175{left:486.400000pt;}
.x1f_c01175{left:487.680000pt;}
.x2c_c01175{left:488.960000pt;}
.x3a_c01175{left:490.240000pt;}
.x8_c01175{left:563.200000pt;}
.x16_c01175{left:564.480000pt;}
.x25_c01175{left:566.400000pt;}
.x33_c01175{left:567.680000pt;}
.xb_c01175{left:591.360000pt;}
.x9_c01175{left:592.640000pt;}
.x17_c01175{left:593.920000pt;}
.x1_c01175{left:595.200000pt;}
.x34_c01175{left:597.120000pt;}
.xa_c01175{left:622.080000pt;}
.x1d_c01175{left:624.000000pt;}
.x2f_c01175{left:625.920000pt;}
.x2_c01175{left:627.840000pt;}
.x10_c01175{left:631.680000pt;}
.x1a_c01175{left:632.960000pt;}
.x2d_c01175{left:634.880000pt;}
.x3e_c01175{left:636.800000pt;}
.x11_c01175{left:649.600000pt;}
.x1b_c01175{left:650.880000pt;}
.x3f_c01175{left:654.720000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_65bad610b15d060b0864e95c.woff2')format("woff");}.ff1_c01176{font-family:ff1_c01176;line-height:1.109863;font-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_c01176{transform:matrix(0.210950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210950,0.000000,0.000000,0.250000,0,0);}
.m17_c01176{transform:matrix(0.220450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220450,0.000000,0.000000,0.250000,0,0);}
.m35_c01176{transform:matrix(0.240150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240150,0.000000,0.000000,0.250000,0,0);}
.m30_c01176{transform:matrix(0.242325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242325,0.000000,0.000000,0.250000,0,0);}
.m3c_c01176{transform:matrix(0.244350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244350,0.000000,0.000000,0.250000,0,0);}
.m46_c01176{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m44_c01176{transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);}
.m29_c01176{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);}
.m40_c01176{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);}
.m47_c01176{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);}
.m2d_c01176{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);}
.m31_c01176{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_c01176{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_c01176{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);}
.m2b_c01176{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);}
.m36_c01176{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m8_c01176{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);}
.m2e_c01176{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m11_c01176{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m7_c01176{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01176{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m6_c01176{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mf_c01176{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m5_c01176{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2_c01176{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01176{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m16_c01176{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mc_c01176{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m12_c01176{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m25_c01176{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m18_c01176{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m15_c01176{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);}
.m49_c01176{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m0_c01176{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);}
.m34_c01176{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01176{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);}
.m45_c01176{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01176{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m23_c01176{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m24_c01176{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m14_c01176{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_c01176{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.mb_c01176{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01176{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);}
.m38_c01176{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);}
.m41_c01176{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_c01176{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01176{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m1_c01176{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01176{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);}
.m1f_c01176{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);}
.m3_c01176{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01176{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m33_c01176{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);}
.m43_c01176{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m19_c01176{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);}
.m3e_c01176{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m48_c01176{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);}
.m3a_c01176{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);}
.m37_c01176{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.ma_c01176{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);}
.md_c01176{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m42_c01176{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m4_c01176{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m9_c01176{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);}
.me_c01176{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m39_c01176{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01176{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m22_c01176{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01176{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m26_c01176{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m27_c01176{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);}
.m20_c01176{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01176{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m32_c01176{transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);}
.v2_c01176{vertical-align:-8.640000px;}
.v3_c01176{vertical-align:-2.880000px;}
.v0_c01176{vertical-align:0.000000px;}
.v1_c01176{vertical-align:2.880000px;}
.ls1_c01176{letter-spacing:0.000000px;}
.ls0_c01176{letter-spacing:83.257680px;}
.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;}
}
.ws3_c01176{word-spacing:0.000000px;}
.ws1_c01176{word-spacing:17.295600px;}
.ws0_c01176{word-spacing:185.610000px;}
.ws2_c01176{word-spacing:219.193200px;}
.fc0_c01176{color:transparent;}
.fsa_c01176{font-size:34.560000px;}
.fsc_c01176{font-size:37.440000px;}
.fs10_c01176{font-size:40.320000px;}
.fsf_c01176{font-size:43.200000px;}
.fsb_c01176{font-size:46.080000px;}
.fs7_c01176{font-size:48.960000px;}
.fs1_c01176{font-size:51.840000px;}
.fs6_c01176{font-size:54.720000px;}
.fs5_c01176{font-size:57.600000px;}
.fs3_c01176{font-size:60.480000px;}
.fs2_c01176{font-size:63.360000px;}
.fs8_c01176{font-size:66.240000px;}
.fs4_c01176{font-size:69.120000px;}
.fsd_c01176{font-size:72.000000px;}
.fse_c01176{font-size:74.880000px;}
.fs0_c01176{font-size:77.760000px;}
.fs9_c01176{font-size:95.040000px;}
.y0_c01176{bottom:0.000000px;}
.y79_c01176{bottom:151.920000px;}
.y78_c01176{bottom:152.640000px;}
.y77_c01176{bottom:154.080000px;}
.y76_c01176{bottom:155.520000px;}
.y75_c01176{bottom:160.560000px;}
.y74_c01176{bottom:188.640000px;}
.y72_c01176{bottom:195.120000px;}
.y73_c01176{bottom:197.280000px;}
.y6f_c01176{bottom:198.720000px;}
.y70_c01176{bottom:199.440000px;}
.y71_c01176{bottom:200.880000px;}
.y6e_c01176{bottom:203.760000px;}
.y6c_c01176{bottom:237.600000px;}
.y6d_c01176{bottom:238.320000px;}
.y6b_c01176{bottom:239.040000px;}
.y6a_c01176{bottom:239.760000px;}
.y69_c01176{bottom:240.480000px;}
.y67_c01176{bottom:241.920000px;}
.y68_c01176{bottom:242.640000px;}
.y66_c01176{bottom:246.240000px;}
.y65_c01176{bottom:281.520000px;}
.y64_c01176{bottom:282.960000px;}
.y63_c01176{bottom:283.680000px;}
.y62_c01176{bottom:288.000000px;}
.y61_c01176{bottom:323.280000px;}
.y5f_c01176{bottom:325.440000px;}
.y60_c01176{bottom:326.160000px;}
.y5e_c01176{bottom:326.880000px;}
.y5d_c01176{bottom:330.480000px;}
.y5b_c01176{bottom:368.640000px;}
.y58_c01176{bottom:369.360000px;}
.y5c_c01176{bottom:370.080000px;}
.y5a_c01176{bottom:370.800000px;}
.y59_c01176{bottom:371.520000px;}
.y57_c01176{bottom:373.680000px;}
.y56_c01176{bottom:411.840000px;}
.y55_c01176{bottom:414.000000px;}
.y54_c01176{bottom:416.160000px;}
.y53_c01176{bottom:443.520000px;}
.y52_c01176{bottom:444.240000px;}
.y51_c01176{bottom:444.960000px;}
.y4f_c01176{bottom:445.680000px;}
.y50_c01176{bottom:447.120000px;}
.y4e_c01176{bottom:447.840000px;}
.y4b_c01176{bottom:486.720000px;}
.y49_c01176{bottom:487.440000px;}
.y4c_c01176{bottom:488.880000px;}
.y4a_c01176{bottom:489.600000px;}
.y4d_c01176{bottom:490.320000px;}
.y48_c01176{bottom:491.040000px;}
.y47_c01176{bottom:529.920000px;}
.y46_c01176{bottom:531.360000px;}
.y45_c01176{bottom:534.240000px;}
.y44_c01176{bottom:534.960000px;}
.y40_c01176{bottom:563.040000px;}
.y43_c01176{bottom:563.760000px;}
.y41_c01176{bottom:564.480000px;}
.y3f_c01176{bottom:565.200000px;}
.y42_c01176{bottom:565.920000px;}
.y3b_c01176{bottom:604.800000px;}
.y3e_c01176{bottom:605.520000px;}
.y3c_c01176{bottom:606.960000px;}
.y3a_c01176{bottom:607.680000px;}
.y3d_c01176{bottom:609.120000px;}
.y36_c01176{bottom:648.000000px;}
.y38_c01176{bottom:649.440000px;}
.y37_c01176{bottom:650.160000px;}
.y35_c01176{bottom:650.880000px;}
.y39_c01176{bottom:652.320000px;}
.y34_c01176{bottom:690.480000px;}
.y33_c01176{bottom:692.640000px;}
.y2e_c01176{bottom:732.960000px;}
.y30_c01176{bottom:733.680000px;}
.y2d_c01176{bottom:735.120000px;}
.y31_c01176{bottom:735.840000px;}
.y2f_c01176{bottom:736.560000px;}
.y32_c01176{bottom:738.720000px;}
.y29_c01176{bottom:776.880000px;}
.y27_c01176{bottom:777.600000px;}
.y2c_c01176{bottom:778.320000px;}
.y28_c01176{bottom:779.040000px;}
.y2a_c01176{bottom:780.480000px;}
.y2b_c01176{bottom:781.200000px;}
.y20_c01176{bottom:820.080000px;}
.y22_c01176{bottom:820.800000px;}
.y25_c01176{bottom:821.520000px;}
.y21_c01176{bottom:822.240000px;}
.y23_c01176{bottom:822.960000px;}
.y24_c01176{bottom:823.680000px;}
.y26_c01176{bottom:824.400000px;}
.y19_c01176{bottom:862.560000px;}
.y1c_c01176{bottom:863.280000px;}
.y1e_c01176{bottom:864.000000px;}
.y1a_c01176{bottom:864.720000px;}
.y1b_c01176{bottom:865.440000px;}
.y1d_c01176{bottom:866.160000px;}
.y1f_c01176{bottom:867.600000px;}
.y15_c01176{bottom:898.560000px;}
.y11_c01176{bottom:905.040000px;}
.y12_c01176{bottom:905.760000px;}
.y14_c01176{bottom:906.480000px;}
.y16_c01176{bottom:907.200000px;}
.y13_c01176{bottom:907.920000px;}
.y18_c01176{bottom:909.360000px;}
.y17_c01176{bottom:910.800000px;}
.yf_c01176{bottom:941.760000px;}
.y10_c01176{bottom:942.480000px;}
.yb_c01176{bottom:948.240000px;}
.ye_c01176{bottom:950.400000px;}
.yc_c01176{bottom:951.120000px;}
.yd_c01176{bottom:951.840000px;}
.y9_c01176{bottom:993.600000px;}
.ya_c01176{bottom:994.320000px;}
.y2_c01176{bottom:1023.120000px;}
.y3_c01176{bottom:1024.560000px;}
.y5_c01176{bottom:1025.280000px;}
.y6_c01176{bottom:1026.720000px;}
.y4_c01176{bottom:1027.440000px;}
.y7_c01176{bottom:1028.160000px;}
.y8_c01176{bottom:1030.320000px;}
.y1_c01176{bottom:1087.920000px;}
.hd_c01176{height:31.100625px;}
.hf_c01176{height:33.692344px;}
.h13_c01176{height:36.284062px;}
.h12_c01176{height:38.875781px;}
.he_c01176{height:41.467500px;}
.h9_c01176{height:44.059219px;}
.h3_c01176{height:46.650937px;}
.h8_c01176{height:49.242656px;}
.hc_c01176{height:51.834375px;}
.h5_c01176{height:54.426094px;}
.h7_c01176{height:54.714375px;}
.h4_c01176{height:57.017812px;}
.ha_c01176{height:59.609531px;}
.h6_c01176{height:62.201250px;}
.h10_c01176{height:64.792969px;}
.h11_c01176{height:67.384687px;}
.h2_c01176{height:69.976406px;}
.hb_c01176{height:85.526719px;}
.h1_c01176{height:1143.750000px;}
.h0_c01176{height:1144.080000px;}
.w1_c01176{width:784.500000px;}
.w0_c01176{width:784.800000px;}
.x0_c01176{left:0.000000px;}
.x2_c01176{left:75.600000px;}
.x2c_c01176{left:77.040000px;}
.xa_c01176{left:157.680000px;}
.x3_c01176{left:159.840000px;}
.x26_c01176{left:200.880000px;}
.xb_c01176{left:211.680000px;}
.x4_c01176{left:244.080000px;}
.x1e_c01176{left:254.880000px;}
.xc_c01176{left:265.680000px;}
.x28_c01176{left:287.280000px;}
.xd_c01176{left:297.360000px;}
.x23_c01176{left:306.720000px;}
.x5_c01176{left:308.880000px;}
.x29_c01176{left:330.480000px;}
.xe_c01176{left:352.080000px;}
.x6_c01176{left:362.880000px;}
.x27_c01176{left:384.480000px;}
.x2b_c01176{left:395.280000px;}
.x1b_c01176{left:406.080000px;}
.x17_c01176{left:416.880000px;}
.x24_c01176{left:437.760000px;}
.xf_c01176{left:447.840000px;}
.x1c_c01176{left:460.800000px;}
.x2a_c01176{left:469.440000px;}
.x18_c01176{left:470.880000px;}
.x11_c01176{left:481.680000px;}
.x25_c01176{left:493.200000px;}
.x1d_c01176{left:503.280000px;}
.x19_c01176{left:507.600000px;}
.x12_c01176{left:514.080000px;}
.x13_c01176{left:547.200000px;}
.x7_c01176{left:548.640000px;}
.x22_c01176{left:600.480000px;}
.x1f_c01176{left:602.640000px;}
.x10_c01176{left:633.600000px;}
.x14_c01176{left:635.040000px;}
.x15_c01176{left:667.440000px;}
.x8_c01176{left:668.880000px;}
.x20_c01176{left:678.960000px;}
.x1_c01176{left:680.400000px;}
.x1a_c01176{left:701.280000px;}
.x9_c01176{left:711.360000px;}
.x21_c01176{left:712.800000px;}
.x16_c01176{left:732.240000px;}
@media print{
.v2_c01176{vertical-align:-7.680000pt;}
.v3_c01176{vertical-align:-2.560000pt;}
.v0_c01176{vertical-align:0.000000pt;}
.v1_c01176{vertical-align:2.560000pt;}
.ls1_c01176{letter-spacing:0.000000pt;}
.ls0_c01176{letter-spacing:74.006827pt;}
.ws3_c01176{word-spacing:0.000000pt;}
.ws1_c01176{word-spacing:15.373867pt;}
.ws0_c01176{word-spacing:164.986667pt;}
.ws2_c01176{word-spacing:194.838400pt;}
.fsa_c01176{font-size:30.720000pt;}
.fsc_c01176{font-size:33.280000pt;}
.fs10_c01176{font-size:35.840000pt;}
.fsf_c01176{font-size:38.400000pt;}
.fsb_c01176{font-size:40.960000pt;}
.fs7_c01176{font-size:43.520000pt;}
.fs1_c01176{font-size:46.080000pt;}
.fs6_c01176{font-size:48.640000pt;}
.fs5_c01176{font-size:51.200000pt;}
.fs3_c01176{font-size:53.760000pt;}
.fs2_c01176{font-size:56.320000pt;}
.fs8_c01176{font-size:58.880000pt;}
.fs4_c01176{font-size:61.440000pt;}
.fsd_c01176{font-size:64.000000pt;}
.fse_c01176{font-size:66.560000pt;}
.fs0_c01176{font-size:69.120000pt;}
.fs9_c01176{font-size:84.480000pt;}
.y0_c01176{bottom:0.000000pt;}
.y79_c01176{bottom:135.040000pt;}
.y78_c01176{bottom:135.680000pt;}
.y77_c01176{bottom:136.960000pt;}
.y76_c01176{bottom:138.240000pt;}
.y75_c01176{bottom:142.720000pt;}
.y74_c01176{bottom:167.680000pt;}
.y72_c01176{bottom:173.440000pt;}
.y73_c01176{bottom:175.360000pt;}
.y6f_c01176{bottom:176.640000pt;}
.y70_c01176{bottom:177.280000pt;}
.y71_c01176{bottom:178.560000pt;}
.y6e_c01176{bottom:181.120000pt;}
.y6c_c01176{bottom:211.200000pt;}
.y6d_c01176{bottom:211.840000pt;}
.y6b_c01176{bottom:212.480000pt;}
.y6a_c01176{bottom:213.120000pt;}
.y69_c01176{bottom:213.760000pt;}
.y67_c01176{bottom:215.040000pt;}
.y68_c01176{bottom:215.680000pt;}
.y66_c01176{bottom:218.880000pt;}
.y65_c01176{bottom:250.240000pt;}
.y64_c01176{bottom:251.520000pt;}
.y63_c01176{bottom:252.160000pt;}
.y62_c01176{bottom:256.000000pt;}
.y61_c01176{bottom:287.360000pt;}
.y5f_c01176{bottom:289.280000pt;}
.y60_c01176{bottom:289.920000pt;}
.y5e_c01176{bottom:290.560000pt;}
.y5d_c01176{bottom:293.760000pt;}
.y5b_c01176{bottom:327.680000pt;}
.y58_c01176{bottom:328.320000pt;}
.y5c_c01176{bottom:328.960000pt;}
.y5a_c01176{bottom:329.600000pt;}
.y59_c01176{bottom:330.240000pt;}
.y57_c01176{bottom:332.160000pt;}
.y56_c01176{bottom:366.080000pt;}
.y55_c01176{bottom:368.000000pt;}
.y54_c01176{bottom:369.920000pt;}
.y53_c01176{bottom:394.240000pt;}
.y52_c01176{bottom:394.880000pt;}
.y51_c01176{bottom:395.520000pt;}
.y4f_c01176{bottom:396.160000pt;}
.y50_c01176{bottom:397.440000pt;}
.y4e_c01176{bottom:398.080000pt;}
.y4b_c01176{bottom:432.640000pt;}
.y49_c01176{bottom:433.280000pt;}
.y4c_c01176{bottom:434.560000pt;}
.y4a_c01176{bottom:435.200000pt;}
.y4d_c01176{bottom:435.840000pt;}
.y48_c01176{bottom:436.480000pt;}
.y47_c01176{bottom:471.040000pt;}
.y46_c01176{bottom:472.320000pt;}
.y45_c01176{bottom:474.880000pt;}
.y44_c01176{bottom:475.520000pt;}
.y40_c01176{bottom:500.480000pt;}
.y43_c01176{bottom:501.120000pt;}
.y41_c01176{bottom:501.760000pt;}
.y3f_c01176{bottom:502.400000pt;}
.y42_c01176{bottom:503.040000pt;}
.y3b_c01176{bottom:537.600000pt;}
.y3e_c01176{bottom:538.240000pt;}
.y3c_c01176{bottom:539.520000pt;}
.y3a_c01176{bottom:540.160000pt;}
.y3d_c01176{bottom:541.440000pt;}
.y36_c01176{bottom:576.000000pt;}
.y38_c01176{bottom:577.280000pt;}
.y37_c01176{bottom:577.920000pt;}
.y35_c01176{bottom:578.560000pt;}
.y39_c01176{bottom:579.840000pt;}
.y34_c01176{bottom:613.760000pt;}
.y33_c01176{bottom:615.680000pt;}
.y2e_c01176{bottom:651.520000pt;}
.y30_c01176{bottom:652.160000pt;}
.y2d_c01176{bottom:653.440000pt;}
.y31_c01176{bottom:654.080000pt;}
.y2f_c01176{bottom:654.720000pt;}
.y32_c01176{bottom:656.640000pt;}
.y29_c01176{bottom:690.560000pt;}
.y27_c01176{bottom:691.200000pt;}
.y2c_c01176{bottom:691.840000pt;}
.y28_c01176{bottom:692.480000pt;}
.y2a_c01176{bottom:693.760000pt;}
.y2b_c01176{bottom:694.400000pt;}
.y20_c01176{bottom:728.960000pt;}
.y22_c01176{bottom:729.600000pt;}
.y25_c01176{bottom:730.240000pt;}
.y21_c01176{bottom:730.880000pt;}
.y23_c01176{bottom:731.520000pt;}
.y24_c01176{bottom:732.160000pt;}
.y26_c01176{bottom:732.800000pt;}
.y19_c01176{bottom:766.720000pt;}
.y1c_c01176{bottom:767.360000pt;}
.y1e_c01176{bottom:768.000000pt;}
.y1a_c01176{bottom:768.640000pt;}
.y1b_c01176{bottom:769.280000pt;}
.y1d_c01176{bottom:769.920000pt;}
.y1f_c01176{bottom:771.200000pt;}
.y15_c01176{bottom:798.720000pt;}
.y11_c01176{bottom:804.480000pt;}
.y12_c01176{bottom:805.120000pt;}
.y14_c01176{bottom:805.760000pt;}
.y16_c01176{bottom:806.400000pt;}
.y13_c01176{bottom:807.040000pt;}
.y18_c01176{bottom:808.320000pt;}
.y17_c01176{bottom:809.600000pt;}
.yf_c01176{bottom:837.120000pt;}
.y10_c01176{bottom:837.760000pt;}
.yb_c01176{bottom:842.880000pt;}
.ye_c01176{bottom:844.800000pt;}
.yc_c01176{bottom:845.440000pt;}
.yd_c01176{bottom:846.080000pt;}
.y9_c01176{bottom:883.200000pt;}
.ya_c01176{bottom:883.840000pt;}
.y2_c01176{bottom:909.440000pt;}
.y3_c01176{bottom:910.720000pt;}
.y5_c01176{bottom:911.360000pt;}
.y6_c01176{bottom:912.640000pt;}
.y4_c01176{bottom:913.280000pt;}
.y7_c01176{bottom:913.920000pt;}
.y8_c01176{bottom:915.840000pt;}
.y1_c01176{bottom:967.040000pt;}
.hd_c01176{height:27.645000pt;}
.hf_c01176{height:29.948750pt;}
.h13_c01176{height:32.252500pt;}
.h12_c01176{height:34.556250pt;}
.he_c01176{height:36.860000pt;}
.h9_c01176{height:39.163750pt;}
.h3_c01176{height:41.467500pt;}
.h8_c01176{height:43.771250pt;}
.hc_c01176{height:46.075000pt;}
.h5_c01176{height:48.378750pt;}
.h7_c01176{height:48.635000pt;}
.h4_c01176{height:50.682500pt;}
.ha_c01176{height:52.986250pt;}
.h6_c01176{height:55.290000pt;}
.h10_c01176{height:57.593750pt;}
.h11_c01176{height:59.897500pt;}
.h2_c01176{height:62.201250pt;}
.hb_c01176{height:76.023750pt;}
.h1_c01176{height:1016.666667pt;}
.h0_c01176{height:1016.960000pt;}
.w1_c01176{width:697.333333pt;}
.w0_c01176{width:697.600000pt;}
.x0_c01176{left:0.000000pt;}
.x2_c01176{left:67.200000pt;}
.x2c_c01176{left:68.480000pt;}
.xa_c01176{left:140.160000pt;}
.x3_c01176{left:142.080000pt;}
.x26_c01176{left:178.560000pt;}
.xb_c01176{left:188.160000pt;}
.x4_c01176{left:216.960000pt;}
.x1e_c01176{left:226.560000pt;}
.xc_c01176{left:236.160000pt;}
.x28_c01176{left:255.360000pt;}
.xd_c01176{left:264.320000pt;}
.x23_c01176{left:272.640000pt;}
.x5_c01176{left:274.560000pt;}
.x29_c01176{left:293.760000pt;}
.xe_c01176{left:312.960000pt;}
.x6_c01176{left:322.560000pt;}
.x27_c01176{left:341.760000pt;}
.x2b_c01176{left:351.360000pt;}
.x1b_c01176{left:360.960000pt;}
.x17_c01176{left:370.560000pt;}
.x24_c01176{left:389.120000pt;}
.xf_c01176{left:398.080000pt;}
.x1c_c01176{left:409.600000pt;}
.x2a_c01176{left:417.280000pt;}
.x18_c01176{left:418.560000pt;}
.x11_c01176{left:428.160000pt;}
.x25_c01176{left:438.400000pt;}
.x1d_c01176{left:447.360000pt;}
.x19_c01176{left:451.200000pt;}
.x12_c01176{left:456.960000pt;}
.x13_c01176{left:486.400000pt;}
.x7_c01176{left:487.680000pt;}
.x22_c01176{left:533.760000pt;}
.x1f_c01176{left:535.680000pt;}
.x10_c01176{left:563.200000pt;}
.x14_c01176{left:564.480000pt;}
.x15_c01176{left:593.280000pt;}
.x8_c01176{left:594.560000pt;}
.x20_c01176{left:603.520000pt;}
.x1_c01176{left:604.800000pt;}
.x1a_c01176{left:623.360000pt;}
.x9_c01176{left:632.320000pt;}
.x21_c01176{left:633.600000pt;}
.x16_c01176{left:650.880000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_bfe9170e06bc6cac3dc2d993.woff2')format("woff");}.ff1_c01177{font-family:ff1_c01177;line-height:1.109863;font-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_c01177{transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);}
.m2b_c01177{transform:matrix(0.182775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182775,0.000000,0.000000,0.250000,0,0);}
.m49_c01177{transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);}
.m41_c01177{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m2c_c01177{transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);}
.m3a_c01177{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m36_c01177{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m2d_c01177{transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);}
.m38_c01177{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m33_c01177{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m52_c01177{transform:matrix(0.247675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247675,0.000000,0.000000,0.250000,0,0);}
.m21_c01177{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m1b_c01177{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);}
.m35_c01177{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);}
.m29_c01177{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);}
.m32_c01177{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);}
.m20_c01177{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m16_c01177{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);}
.m4b_c01177{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);}
.m3e_c01177{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);}
.m42_c01177{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);}
.m3c_c01177{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m3_c01177{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01177{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mb_c01177{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);}
.m2e_c01177{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.ma_c01177{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m56_c01177{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m7_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);}
.m30_c01177{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m4_c01177{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01177{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m19_c01177{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m31_c01177{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01177{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m5_c01177{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m25_c01177{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m4e_c01177{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m22_c01177{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m6_c01177{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mf_c01177{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01177{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m2_c01177{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m11_c01177{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.mc_c01177{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1_c01177{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);}
.m24_c01177{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m0_c01177{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);}
.m3f_c01177{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m37_c01177{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.md_c01177{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m34_c01177{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);}
.m39_c01177{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);}
.m2a_c01177{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m15_c01177{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);}
.m3d_c01177{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);}
.m44_c01177{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);}
.m40_c01177{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m27_c01177{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);}
.m48_c01177{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m54_c01177{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m23_c01177{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);}
.m43_c01177{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m12_c01177{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);}
.m4c_c01177{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m46_c01177{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);}
.m4f_c01177{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01177{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01177{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m4d_c01177{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m18_c01177{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m14_c01177{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m26_c01177{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);}
.m10_c01177{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01177{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);}
.m17_c01177{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m50_c01177{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_c01177{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m51_c01177{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m47_c01177{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m55_c01177{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m45_c01177{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01177{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);}
.m4a_c01177{transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);}
.m53_c01177{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.me_c01177{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);}
.m13_c01177{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.v2_c01177{vertical-align:-5.760000px;}
.v0_c01177{vertical-align:0.000000px;}
.v1_c01177{vertical-align:2.880000px;}
.ls0_c01177{letter-spacing:0.000000px;}
.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;}
}
.ws3_c01177{word-spacing:0.000000px;}
.ws1_c01177{word-spacing:14.238000px;}
.ws0_c01177{word-spacing:62.368320px;}
.ws2_c01177{word-spacing:200.384400px;}
.fc0_c01177{color:transparent;}
.fsb_c01177{font-size:11.520000px;}
.fsc_c01177{font-size:14.400000px;}
.fsa_c01177{font-size:20.160000px;}
.fsd_c01177{font-size:34.560000px;}
.fs11_c01177{font-size:37.440000px;}
.fs4_c01177{font-size:43.200000px;}
.fs3_c01177{font-size:46.080000px;}
.fs9_c01177{font-size:48.960000px;}
.fs8_c01177{font-size:51.840000px;}
.fs5_c01177{font-size:54.720000px;}
.fs6_c01177{font-size:57.600000px;}
.fs7_c01177{font-size:60.480000px;}
.fse_c01177{font-size:63.360000px;}
.fs1_c01177{font-size:66.240000px;}
.fs2_c01177{font-size:69.120000px;}
.fsf_c01177{font-size:72.000000px;}
.fs10_c01177{font-size:74.880000px;}
.fs0_c01177{font-size:77.760000px;}
.y0_c01177{bottom:0.000000px;}
.y91_c01177{bottom:68.400000px;}
.y90_c01177{bottom:69.840000px;}
.y8f_c01177{bottom:70.560000px;}
.y8e_c01177{bottom:77.040000px;}
.y8d_c01177{bottom:77.760000px;}
.y8c_c01177{bottom:110.880000px;}
.y8a_c01177{bottom:112.320000px;}
.y8b_c01177{bottom:113.760000px;}
.y89_c01177{bottom:114.480000px;}
.y88_c01177{bottom:120.960000px;}
.y86_c01177{bottom:155.520000px;}
.y87_c01177{bottom:156.240000px;}
.y85_c01177{bottom:157.680000px;}
.y84_c01177{bottom:164.160000px;}
.y83_c01177{bottom:197.280000px;}
.y82_c01177{bottom:200.160000px;}
.y81_c01177{bottom:200.880000px;}
.y80_c01177{bottom:206.640000px;}
.y7e_c01177{bottom:242.640000px;}
.y7f_c01177{bottom:243.360000px;}
.y7c_c01177{bottom:246.960000px;}
.y7d_c01177{bottom:247.680000px;}
.y7b_c01177{bottom:249.840000px;}
.y7a_c01177{bottom:285.120000px;}
.y78_c01177{bottom:285.840000px;}
.y79_c01177{bottom:286.560000px;}
.y77_c01177{bottom:290.880000px;}
.y76_c01177{bottom:291.600000px;}
.y74_c01177{bottom:327.600000px;}
.y75_c01177{bottom:328.320000px;}
.y71_c01177{bottom:329.040000px;}
.y72_c01177{bottom:329.760000px;}
.y73_c01177{bottom:331.200000px;}
.y6f_c01177{bottom:334.080000px;}
.y70_c01177{bottom:334.800000px;}
.y6e_c01177{bottom:369.360000px;}
.y6b_c01177{bottom:370.800000px;}
.y6d_c01177{bottom:371.520000px;}
.y67_c01177{bottom:372.240000px;}
.y6a_c01177{bottom:372.960000px;}
.y6c_c01177{bottom:373.680000px;}
.y69_c01177{bottom:374.400000px;}
.y68_c01177{bottom:375.840000px;}
.y65_c01177{bottom:376.560000px;}
.y66_c01177{bottom:377.280000px;}
.y64_c01177{bottom:414.000000px;}
.y63_c01177{bottom:414.720000px;}
.y62_c01177{bottom:415.440000px;}
.y61_c01177{bottom:419.040000px;}
.y5f_c01177{bottom:457.200000px;}
.y5e_c01177{bottom:458.640000px;}
.y60_c01177{bottom:459.360000px;}
.y5c_c01177{bottom:460.800000px;}
.y5d_c01177{bottom:463.680000px;}
.y59_c01177{bottom:501.840000px;}
.y5a_c01177{bottom:502.560000px;}
.y5b_c01177{bottom:505.440000px;}
.y58_c01177{bottom:565.920000px;}
.y57_c01177{bottom:566.640000px;}
.y56_c01177{bottom:567.360000px;}
.y55_c01177{bottom:568.080000px;}
.y53_c01177{bottom:587.520000px;}
.y52_c01177{bottom:588.240000px;}
.y50_c01177{bottom:588.960000px;}
.y4e_c01177{bottom:589.680000px;}
.y54_c01177{bottom:590.400000px;}
.y51_c01177{bottom:591.120000px;}
.y4f_c01177{bottom:591.840000px;}
.y4d_c01177{bottom:609.120000px;}
.y4b_c01177{bottom:609.840000px;}
.y4a_c01177{bottom:610.560000px;}
.y4c_c01177{bottom:612.000000px;}
.y49_c01177{bottom:612.720000px;}
.y48_c01177{bottom:630.720000px;}
.y47_c01177{bottom:631.440000px;}
.y46_c01177{bottom:632.160000px;}
.y45_c01177{bottom:634.320000px;}
.y44_c01177{bottom:653.040000px;}
.y43_c01177{bottom:653.760000px;}
.y42_c01177{bottom:654.480000px;}
.y41_c01177{bottom:674.640000px;}
.y40_c01177{bottom:675.360000px;}
.y3d_c01177{bottom:696.240000px;}
.y3c_c01177{bottom:696.960000px;}
.y3f_c01177{bottom:697.680000px;}
.y3e_c01177{bottom:698.400000px;}
.y3b_c01177{bottom:717.120000px;}
.y38_c01177{bottom:717.840000px;}
.y39_c01177{bottom:718.560000px;}
.y3a_c01177{bottom:720.000000px;}
.y35_c01177{bottom:738.720000px;}
.y36_c01177{bottom:739.440000px;}
.y34_c01177{bottom:741.600000px;}
.y37_c01177{bottom:742.320000px;}
.y30_c01177{bottom:760.320000px;}
.y31_c01177{bottom:761.040000px;}
.y33_c01177{bottom:761.760000px;}
.y2f_c01177{bottom:762.480000px;}
.y32_c01177{bottom:763.920000px;}
.y29_c01177{bottom:789.120000px;}
.y2c_c01177{bottom:789.840000px;}
.y2e_c01177{bottom:790.560000px;}
.y28_c01177{bottom:793.440000px;}
.y27_c01177{bottom:794.160000px;}
.y2b_c01177{bottom:794.880000px;}
.y2a_c01177{bottom:795.600000px;}
.y2d_c01177{bottom:796.320000px;}
.y24_c01177{bottom:834.480000px;}
.y26_c01177{bottom:835.200000px;}
.y25_c01177{bottom:835.920000px;}
.y23_c01177{bottom:836.640000px;}
.y22_c01177{bottom:837.360000px;}
.y1e_c01177{bottom:866.880000px;}
.y1f_c01177{bottom:867.600000px;}
.y21_c01177{bottom:869.040000px;}
.y1d_c01177{bottom:869.760000px;}
.y20_c01177{bottom:871.200000px;}
.y18_c01177{bottom:899.280000px;}
.y17_c01177{bottom:900.000000px;}
.y19_c01177{bottom:902.160000px;}
.y1a_c01177{bottom:902.880000px;}
.y1c_c01177{bottom:903.600000px;}
.y1b_c01177{bottom:905.760000px;}
.y16_c01177{bottom:941.760000px;}
.y15_c01177{bottom:946.080000px;}
.yf_c01177{bottom:961.920000px;}
.y12_c01177{bottom:962.640000px;}
.y10_c01177{bottom:963.360000px;}
.y13_c01177{bottom:964.800000px;}
.y14_c01177{bottom:965.520000px;}
.y11_c01177{bottom:968.400000px;}
.ye_c01177{bottom:987.120000px;}
.y8_c01177{bottom:1018.080000px;}
.y9_c01177{bottom:1018.800000px;}
.ya_c01177{bottom:1019.520000px;}
.yb_c01177{bottom:1020.240000px;}
.yc_c01177{bottom:1021.680000px;}
.yd_c01177{bottom:1025.280000px;}
.y2_c01177{bottom:1026.720000px;}
.y7_c01177{bottom:1027.440000px;}
.y3_c01177{bottom:1028.160000px;}
.y4_c01177{bottom:1041.840000px;}
.y5_c01177{bottom:1042.560000px;}
.y6_c01177{bottom:1043.280000px;}
.y1_c01177{bottom:1092.240000px;}
.hd_c01177{height:10.366875px;}
.he_c01177{height:12.958594px;}
.hc_c01177{height:18.142031px;}
.hf_c01177{height:31.100625px;}
.h14_c01177{height:33.692344px;}
.h6_c01177{height:38.875781px;}
.h5_c01177{height:41.467500px;}
.hb_c01177{height:44.059219px;}
.ha_c01177{height:46.650937px;}
.h7_c01177{height:49.242656px;}
.h8_c01177{height:51.834375px;}
.h9_c01177{height:54.426094px;}
.h10_c01177{height:57.017812px;}
.h11_c01177{height:57.306094px;}
.h3_c01177{height:59.609531px;}
.h4_c01177{height:62.201250px;}
.h12_c01177{height:64.792969px;}
.h13_c01177{height:67.384687px;}
.h2_c01177{height:69.976406px;}
.h0_c01177{height:1140.480000px;}
.h1_c01177{height:1140.750000px;}
.w0_c01177{width:779.760000px;}
.w1_c01177{width:780.000000px;}
.x0_c01177{left:0.000000px;}
.x9_c01177{left:68.400000px;}
.x31_c01177{left:77.760000px;}
.x2a_c01177{left:79.200000px;}
.x17_c01177{left:87.840000px;}
.x20_c01177{left:89.280000px;}
.x26_c01177{left:98.640000px;}
.x37_c01177{left:108.720000px;}
.x11_c01177{left:110.160000px;}
.x3b_c01177{left:118.800000px;}
.x21_c01177{left:120.960000px;}
.x33_c01177{left:141.120000px;}
.x3f_c01177{left:149.760000px;}
.x12_c01177{left:151.200000px;}
.x2_c01177{left:164.880000px;}
.x13_c01177{left:172.800000px;}
.x3c_c01177{left:192.960000px;}
.x22_c01177{left:194.400000px;}
.x18_c01177{left:203.760000px;}
.x38_c01177{left:214.560000px;}
.x14_c01177{left:216.000000px;}
.x42_c01177{left:225.360000px;}
.x2b_c01177{left:226.800000px;}
.x46_c01177{left:235.440000px;}
.x23_c01177{left:238.320000px;}
.x47_c01177{left:245.520000px;}
.x3_c01177{left:246.960000px;}
.x34_c01177{left:248.400000px;}
.xf_c01177{left:270.000000px;}
.x15_c01177{left:279.360000px;}
.x3d_c01177{left:282.240000px;}
.x27_c01177{left:290.160000px;}
.x16_c01177{left:291.600000px;}
.x10_c01177{left:311.040000px;}
.xa_c01177{left:313.200000px;}
.x19_c01177{left:321.840000px;}
.x4_c01177{left:324.720000px;}
.x35_c01177{left:334.800000px;}
.x39_c01177{left:344.160000px;}
.x2c_c01177{left:345.600000px;}
.x1a_c01177{left:356.400000px;}
.x3e_c01177{left:364.320000px;}
.x43_c01177{left:375.120000px;}
.x2d_c01177{left:376.560000px;}
.x5_c01177{left:378.000000px;}
.x1b_c01177{left:399.600000px;}
.x24_c01177{left:408.960000px;}
.x44_c01177{left:419.040000px;}
.x6_c01177{left:432.000000px;}
.x1c_c01177{left:442.080000px;}
.x45_c01177{left:451.440000px;}
.x1d_c01177{left:465.120000px;}
.xb_c01177{left:487.440000px;}
.x7_c01177{left:497.520000px;}
.x1e_c01177{left:506.880000px;}
.x28_c01177{left:518.400000px;}
.x4a_c01177{left:538.560000px;}
.x25_c01177{left:540.000000px;}
.x29_c01177{left:550.800000px;}
.x8_c01177{left:552.240000px;}
.x1f_c01177{left:563.760000px;}
.x36_c01177{left:573.120000px;}
.x2e_c01177{left:574.560000px;}
.xc_c01177{left:594.720000px;}
.x32_c01177{left:596.160000px;}
.x2f_c01177{left:606.240000px;}
.xd_c01177{left:627.840000px;}
.x3a_c01177{left:660.960000px;}
.x1_c01177{left:666.000000px;}
.xe_c01177{left:671.040000px;}
.x30_c01177{left:672.480000px;}
.x48_c01177{left:693.360000px;}
.x4b_c01177{left:702.720000px;}
.x40_c01177{left:704.160000px;}
.x49_c01177{left:724.320000px;}
.x41_c01177{left:725.760000px;}
@media print{
.v2_c01177{vertical-align:-5.120000pt;}
.v0_c01177{vertical-align:0.000000pt;}
.v1_c01177{vertical-align:2.560000pt;}
.ls0_c01177{letter-spacing:0.000000pt;}
.ws3_c01177{word-spacing:0.000000pt;}
.ws1_c01177{word-spacing:12.656000pt;}
.ws0_c01177{word-spacing:55.438507pt;}
.ws2_c01177{word-spacing:178.119467pt;}
.fsb_c01177{font-size:10.240000pt;}
.fsc_c01177{font-size:12.800000pt;}
.fsa_c01177{font-size:17.920000pt;}
.fsd_c01177{font-size:30.720000pt;}
.fs11_c01177{font-size:33.280000pt;}
.fs4_c01177{font-size:38.400000pt;}
.fs3_c01177{font-size:40.960000pt;}
.fs9_c01177{font-size:43.520000pt;}
.fs8_c01177{font-size:46.080000pt;}
.fs5_c01177{font-size:48.640000pt;}
.fs6_c01177{font-size:51.200000pt;}
.fs7_c01177{font-size:53.760000pt;}
.fse_c01177{font-size:56.320000pt;}
.fs1_c01177{font-size:58.880000pt;}
.fs2_c01177{font-size:61.440000pt;}
.fsf_c01177{font-size:64.000000pt;}
.fs10_c01177{font-size:66.560000pt;}
.fs0_c01177{font-size:69.120000pt;}
.y0_c01177{bottom:0.000000pt;}
.y91_c01177{bottom:60.800000pt;}
.y90_c01177{bottom:62.080000pt;}
.y8f_c01177{bottom:62.720000pt;}
.y8e_c01177{bottom:68.480000pt;}
.y8d_c01177{bottom:69.120000pt;}
.y8c_c01177{bottom:98.560000pt;}
.y8a_c01177{bottom:99.840000pt;}
.y8b_c01177{bottom:101.120000pt;}
.y89_c01177{bottom:101.760000pt;}
.y88_c01177{bottom:107.520000pt;}
.y86_c01177{bottom:138.240000pt;}
.y87_c01177{bottom:138.880000pt;}
.y85_c01177{bottom:140.160000pt;}
.y84_c01177{bottom:145.920000pt;}
.y83_c01177{bottom:175.360000pt;}
.y82_c01177{bottom:177.920000pt;}
.y81_c01177{bottom:178.560000pt;}
.y80_c01177{bottom:183.680000pt;}
.y7e_c01177{bottom:215.680000pt;}
.y7f_c01177{bottom:216.320000pt;}
.y7c_c01177{bottom:219.520000pt;}
.y7d_c01177{bottom:220.160000pt;}
.y7b_c01177{bottom:222.080000pt;}
.y7a_c01177{bottom:253.440000pt;}
.y78_c01177{bottom:254.080000pt;}
.y79_c01177{bottom:254.720000pt;}
.y77_c01177{bottom:258.560000pt;}
.y76_c01177{bottom:259.200000pt;}
.y74_c01177{bottom:291.200000pt;}
.y75_c01177{bottom:291.840000pt;}
.y71_c01177{bottom:292.480000pt;}
.y72_c01177{bottom:293.120000pt;}
.y73_c01177{bottom:294.400000pt;}
.y6f_c01177{bottom:296.960000pt;}
.y70_c01177{bottom:297.600000pt;}
.y6e_c01177{bottom:328.320000pt;}
.y6b_c01177{bottom:329.600000pt;}
.y6d_c01177{bottom:330.240000pt;}
.y67_c01177{bottom:330.880000pt;}
.y6a_c01177{bottom:331.520000pt;}
.y6c_c01177{bottom:332.160000pt;}
.y69_c01177{bottom:332.800000pt;}
.y68_c01177{bottom:334.080000pt;}
.y65_c01177{bottom:334.720000pt;}
.y66_c01177{bottom:335.360000pt;}
.y64_c01177{bottom:368.000000pt;}
.y63_c01177{bottom:368.640000pt;}
.y62_c01177{bottom:369.280000pt;}
.y61_c01177{bottom:372.480000pt;}
.y5f_c01177{bottom:406.400000pt;}
.y5e_c01177{bottom:407.680000pt;}
.y60_c01177{bottom:408.320000pt;}
.y5c_c01177{bottom:409.600000pt;}
.y5d_c01177{bottom:412.160000pt;}
.y59_c01177{bottom:446.080000pt;}
.y5a_c01177{bottom:446.720000pt;}
.y5b_c01177{bottom:449.280000pt;}
.y58_c01177{bottom:503.040000pt;}
.y57_c01177{bottom:503.680000pt;}
.y56_c01177{bottom:504.320000pt;}
.y55_c01177{bottom:504.960000pt;}
.y53_c01177{bottom:522.240000pt;}
.y52_c01177{bottom:522.880000pt;}
.y50_c01177{bottom:523.520000pt;}
.y4e_c01177{bottom:524.160000pt;}
.y54_c01177{bottom:524.800000pt;}
.y51_c01177{bottom:525.440000pt;}
.y4f_c01177{bottom:526.080000pt;}
.y4d_c01177{bottom:541.440000pt;}
.y4b_c01177{bottom:542.080000pt;}
.y4a_c01177{bottom:542.720000pt;}
.y4c_c01177{bottom:544.000000pt;}
.y49_c01177{bottom:544.640000pt;}
.y48_c01177{bottom:560.640000pt;}
.y47_c01177{bottom:561.280000pt;}
.y46_c01177{bottom:561.920000pt;}
.y45_c01177{bottom:563.840000pt;}
.y44_c01177{bottom:580.480000pt;}
.y43_c01177{bottom:581.120000pt;}
.y42_c01177{bottom:581.760000pt;}
.y41_c01177{bottom:599.680000pt;}
.y40_c01177{bottom:600.320000pt;}
.y3d_c01177{bottom:618.880000pt;}
.y3c_c01177{bottom:619.520000pt;}
.y3f_c01177{bottom:620.160000pt;}
.y3e_c01177{bottom:620.800000pt;}
.y3b_c01177{bottom:637.440000pt;}
.y38_c01177{bottom:638.080000pt;}
.y39_c01177{bottom:638.720000pt;}
.y3a_c01177{bottom:640.000000pt;}
.y35_c01177{bottom:656.640000pt;}
.y36_c01177{bottom:657.280000pt;}
.y34_c01177{bottom:659.200000pt;}
.y37_c01177{bottom:659.840000pt;}
.y30_c01177{bottom:675.840000pt;}
.y31_c01177{bottom:676.480000pt;}
.y33_c01177{bottom:677.120000pt;}
.y2f_c01177{bottom:677.760000pt;}
.y32_c01177{bottom:679.040000pt;}
.y29_c01177{bottom:701.440000pt;}
.y2c_c01177{bottom:702.080000pt;}
.y2e_c01177{bottom:702.720000pt;}
.y28_c01177{bottom:705.280000pt;}
.y27_c01177{bottom:705.920000pt;}
.y2b_c01177{bottom:706.560000pt;}
.y2a_c01177{bottom:707.200000pt;}
.y2d_c01177{bottom:707.840000pt;}
.y24_c01177{bottom:741.760000pt;}
.y26_c01177{bottom:742.400000pt;}
.y25_c01177{bottom:743.040000pt;}
.y23_c01177{bottom:743.680000pt;}
.y22_c01177{bottom:744.320000pt;}
.y1e_c01177{bottom:770.560000pt;}
.y1f_c01177{bottom:771.200000pt;}
.y21_c01177{bottom:772.480000pt;}
.y1d_c01177{bottom:773.120000pt;}
.y20_c01177{bottom:774.400000pt;}
.y18_c01177{bottom:799.360000pt;}
.y17_c01177{bottom:800.000000pt;}
.y19_c01177{bottom:801.920000pt;}
.y1a_c01177{bottom:802.560000pt;}
.y1c_c01177{bottom:803.200000pt;}
.y1b_c01177{bottom:805.120000pt;}
.y16_c01177{bottom:837.120000pt;}
.y15_c01177{bottom:840.960000pt;}
.yf_c01177{bottom:855.040000pt;}
.y12_c01177{bottom:855.680000pt;}
.y10_c01177{bottom:856.320000pt;}
.y13_c01177{bottom:857.600000pt;}
.y14_c01177{bottom:858.240000pt;}
.y11_c01177{bottom:860.800000pt;}
.ye_c01177{bottom:877.440000pt;}
.y8_c01177{bottom:904.960000pt;}
.y9_c01177{bottom:905.600000pt;}
.ya_c01177{bottom:906.240000pt;}
.yb_c01177{bottom:906.880000pt;}
.yc_c01177{bottom:908.160000pt;}
.yd_c01177{bottom:911.360000pt;}
.y2_c01177{bottom:912.640000pt;}
.y7_c01177{bottom:913.280000pt;}
.y3_c01177{bottom:913.920000pt;}
.y4_c01177{bottom:926.080000pt;}
.y5_c01177{bottom:926.720000pt;}
.y6_c01177{bottom:927.360000pt;}
.y1_c01177{bottom:970.880000pt;}
.hd_c01177{height:9.215000pt;}
.he_c01177{height:11.518750pt;}
.hc_c01177{height:16.126250pt;}
.hf_c01177{height:27.645000pt;}
.h14_c01177{height:29.948750pt;}
.h6_c01177{height:34.556250pt;}
.h5_c01177{height:36.860000pt;}
.hb_c01177{height:39.163750pt;}
.ha_c01177{height:41.467500pt;}
.h7_c01177{height:43.771250pt;}
.h8_c01177{height:46.075000pt;}
.h9_c01177{height:48.378750pt;}
.h10_c01177{height:50.682500pt;}
.h11_c01177{height:50.938750pt;}
.h3_c01177{height:52.986250pt;}
.h4_c01177{height:55.290000pt;}
.h12_c01177{height:57.593750pt;}
.h13_c01177{height:59.897500pt;}
.h2_c01177{height:62.201250pt;}
.h0_c01177{height:1013.760000pt;}
.h1_c01177{height:1014.000000pt;}
.w0_c01177{width:693.120000pt;}
.w1_c01177{width:693.333333pt;}
.x0_c01177{left:0.000000pt;}
.x9_c01177{left:60.800000pt;}
.x31_c01177{left:69.120000pt;}
.x2a_c01177{left:70.400000pt;}
.x17_c01177{left:78.080000pt;}
.x20_c01177{left:79.360000pt;}
.x26_c01177{left:87.680000pt;}
.x37_c01177{left:96.640000pt;}
.x11_c01177{left:97.920000pt;}
.x3b_c01177{left:105.600000pt;}
.x21_c01177{left:107.520000pt;}
.x33_c01177{left:125.440000pt;}
.x3f_c01177{left:133.120000pt;}
.x12_c01177{left:134.400000pt;}
.x2_c01177{left:146.560000pt;}
.x13_c01177{left:153.600000pt;}
.x3c_c01177{left:171.520000pt;}
.x22_c01177{left:172.800000pt;}
.x18_c01177{left:181.120000pt;}
.x38_c01177{left:190.720000pt;}
.x14_c01177{left:192.000000pt;}
.x42_c01177{left:200.320000pt;}
.x2b_c01177{left:201.600000pt;}
.x46_c01177{left:209.280000pt;}
.x23_c01177{left:211.840000pt;}
.x47_c01177{left:218.240000pt;}
.x3_c01177{left:219.520000pt;}
.x34_c01177{left:220.800000pt;}
.xf_c01177{left:240.000000pt;}
.x15_c01177{left:248.320000pt;}
.x3d_c01177{left:250.880000pt;}
.x27_c01177{left:257.920000pt;}
.x16_c01177{left:259.200000pt;}
.x10_c01177{left:276.480000pt;}
.xa_c01177{left:278.400000pt;}
.x19_c01177{left:286.080000pt;}
.x4_c01177{left:288.640000pt;}
.x35_c01177{left:297.600000pt;}
.x39_c01177{left:305.920000pt;}
.x2c_c01177{left:307.200000pt;}
.x1a_c01177{left:316.800000pt;}
.x3e_c01177{left:323.840000pt;}
.x43_c01177{left:333.440000pt;}
.x2d_c01177{left:334.720000pt;}
.x5_c01177{left:336.000000pt;}
.x1b_c01177{left:355.200000pt;}
.x24_c01177{left:363.520000pt;}
.x44_c01177{left:372.480000pt;}
.x6_c01177{left:384.000000pt;}
.x1c_c01177{left:392.960000pt;}
.x45_c01177{left:401.280000pt;}
.x1d_c01177{left:413.440000pt;}
.xb_c01177{left:433.280000pt;}
.x7_c01177{left:442.240000pt;}
.x1e_c01177{left:450.560000pt;}
.x28_c01177{left:460.800000pt;}
.x4a_c01177{left:478.720000pt;}
.x25_c01177{left:480.000000pt;}
.x29_c01177{left:489.600000pt;}
.x8_c01177{left:490.880000pt;}
.x1f_c01177{left:501.120000pt;}
.x36_c01177{left:509.440000pt;}
.x2e_c01177{left:510.720000pt;}
.xc_c01177{left:528.640000pt;}
.x32_c01177{left:529.920000pt;}
.x2f_c01177{left:538.880000pt;}
.xd_c01177{left:558.080000pt;}
.x3a_c01177{left:587.520000pt;}
.x1_c01177{left:592.000000pt;}
.xe_c01177{left:596.480000pt;}
.x30_c01177{left:597.760000pt;}
.x48_c01177{left:616.320000pt;}
.x4b_c01177{left:624.640000pt;}
.x40_c01177{left:625.920000pt;}
.x49_c01177{left:643.840000pt;}
.x41_c01177{left:645.120000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e9e1fc050111e284571e4915.woff2')format("woff");}.ff1_c01178{font-family:ff1_c01178;line-height:1.109863;font-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_c01178{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);}
.m1d_c01178{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m23_c01178{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_c01178{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);}
.m2b_c01178{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_c01178{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);}
.m26_c01178{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m6_c01178{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m16_c01178{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01178{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m12_c01178{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m2_c01178{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m29_c01178{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.md_c01178{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_c01178{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m7_c01178{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01178{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01178{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01178{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mb_c01178{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mc_c01178{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m8_c01178{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m25_c01178{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01178{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01178{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.ma_c01178{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m17_c01178{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3_c01178{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m24_c01178{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m14_c01178{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m19_c01178{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_c01178{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m1_c01178{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m0_c01178{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);}
.m27_c01178{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01178{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);}
.m2a_c01178{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m30_c01178{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);}
.m2e_c01178{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);}
.m15_c01178{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.mf_c01178{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m20_c01178{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);}
.m4_c01178{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01178{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);}
.m5_c01178{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m22_c01178{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m10_c01178{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);}
.m13_c01178{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.m18_c01178{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.v2_c01178{vertical-align:-5.760000px;}
.v1_c01178{vertical-align:-2.880000px;}
.v0_c01178{vertical-align:0.000000px;}
.ls0_c01178{letter-spacing:0.000000px;}
.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;}
}
.ws4_c01178{word-spacing:0.000000px;}
.ws0_c01178{word-spacing:45.393600px;}
.ws2_c01178{word-spacing:200.384400px;}
.ws1_c01178{word-spacing:202.868400px;}
.ws3_c01178{word-spacing:768.353040px;}
.fc0_c01178{color:transparent;}
.fs3_c01178{font-size:34.560000px;}
.fs9_c01178{font-size:48.960000px;}
.fs2_c01178{font-size:51.840000px;}
.fs5_c01178{font-size:54.720000px;}
.fs4_c01178{font-size:57.600000px;}
.fs1_c01178{font-size:60.480000px;}
.fs7_c01178{font-size:63.360000px;}
.fsb_c01178{font-size:66.240000px;}
.fs8_c01178{font-size:69.120000px;}
.fsa_c01178{font-size:72.000000px;}
.fs6_c01178{font-size:74.880000px;}
.fs0_c01178{font-size:77.760000px;}
.y0_c01178{bottom:0.000000px;}
.y72_c01178{bottom:64.080000px;}
.y73_c01178{bottom:64.800000px;}
.y71_c01178{bottom:65.520000px;}
.y70_c01178{bottom:66.960000px;}
.y6f_c01178{bottom:72.000000px;}
.y6e_c01178{bottom:74.160000px;}
.y6d_c01178{bottom:106.560000px;}
.y6c_c01178{bottom:109.440000px;}
.y6b_c01178{bottom:110.160000px;}
.y6a_c01178{bottom:114.480000px;}
.y69_c01178{bottom:115.920000px;}
.y67_c01178{bottom:149.760000px;}
.y68_c01178{bottom:151.200000px;}
.y66_c01178{bottom:151.920000px;}
.y65_c01178{bottom:152.640000px;}
.y64_c01178{bottom:158.400000px;}
.y63_c01178{bottom:192.960000px;}
.y62_c01178{bottom:193.680000px;}
.y61_c01178{bottom:195.120000px;}
.y60_c01178{bottom:199.440000px;}
.y5f_c01178{bottom:200.880000px;}
.y5e_c01178{bottom:238.320000px;}
.y5d_c01178{bottom:239.040000px;}
.y5c_c01178{bottom:244.080000px;}
.y5b_c01178{bottom:280.800000px;}
.y59_c01178{bottom:281.520000px;}
.y5a_c01178{bottom:282.240000px;}
.y58_c01178{bottom:285.840000px;}
.y57_c01178{bottom:322.560000px;}
.y56_c01178{bottom:323.280000px;}
.y55_c01178{bottom:324.000000px;}
.y54_c01178{bottom:324.720000px;}
.y52_c01178{bottom:329.040000px;}
.y53_c01178{bottom:329.760000px;}
.y51_c01178{bottom:367.200000px;}
.y4f_c01178{bottom:367.920000px;}
.y50_c01178{bottom:370.080000px;}
.y4e_c01178{bottom:371.520000px;}
.y4c_c01178{bottom:409.680000px;}
.y4d_c01178{bottom:410.400000px;}
.y49_c01178{bottom:411.120000px;}
.y4a_c01178{bottom:411.840000px;}
.y4b_c01178{bottom:412.560000px;}
.y48_c01178{bottom:414.000000px;}
.y45_c01178{bottom:453.600000px;}
.y46_c01178{bottom:454.320000px;}
.y47_c01178{bottom:455.040000px;}
.y44_c01178{bottom:457.200000px;}
.y41_c01178{bottom:496.800000px;}
.y42_c01178{bottom:498.240000px;}
.y43_c01178{bottom:498.960000px;}
.y3f_c01178{bottom:499.680000px;}
.y40_c01178{bottom:501.120000px;}
.y3c_c01178{bottom:539.280000px;}
.y3e_c01178{bottom:540.000000px;}
.y3d_c01178{bottom:541.440000px;}
.y3a_c01178{bottom:542.160000px;}
.y3b_c01178{bottom:543.600000px;}
.y37_c01178{bottom:581.760000px;}
.y39_c01178{bottom:583.200000px;}
.y38_c01178{bottom:583.920000px;}
.y36_c01178{bottom:584.640000px;}
.y33_c01178{bottom:624.960000px;}
.y35_c01178{bottom:625.680000px;}
.y34_c01178{bottom:626.400000px;}
.y31_c01178{bottom:627.120000px;}
.y32_c01178{bottom:628.560000px;}
.y2e_c01178{bottom:667.440000px;}
.y2f_c01178{bottom:668.160000px;}
.y2c_c01178{bottom:669.600000px;}
.y30_c01178{bottom:671.040000px;}
.y2d_c01178{bottom:671.760000px;}
.y2a_c01178{bottom:710.640000px;}
.y29_c01178{bottom:712.080000px;}
.y2b_c01178{bottom:712.800000px;}
.y25_c01178{bottom:753.120000px;}
.y23_c01178{bottom:754.560000px;}
.y26_c01178{bottom:755.280000px;}
.y27_c01178{bottom:756.000000px;}
.y24_c01178{bottom:756.720000px;}
.y28_c01178{bottom:757.440000px;}
.y1e_c01178{bottom:796.320000px;}
.y1d_c01178{bottom:797.040000px;}
.y22_c01178{bottom:797.760000px;}
.y1f_c01178{bottom:798.480000px;}
.y21_c01178{bottom:799.200000px;}
.y20_c01178{bottom:801.360000px;}
.y19_c01178{bottom:838.800000px;}
.y18_c01178{bottom:839.520000px;}
.y1a_c01178{bottom:841.680000px;}
.y1c_c01178{bottom:842.400000px;}
.y1b_c01178{bottom:843.840000px;}
.y14_c01178{bottom:882.720000px;}
.y12_c01178{bottom:883.440000px;}
.y16_c01178{bottom:884.880000px;}
.y13_c01178{bottom:885.600000px;}
.y17_c01178{bottom:887.040000px;}
.y15_c01178{bottom:887.760000px;}
.yd_c01178{bottom:925.920000px;}
.ye_c01178{bottom:928.080000px;}
.y10_c01178{bottom:928.800000px;}
.yf_c01178{bottom:929.520000px;}
.y11_c01178{bottom:930.240000px;}
.y9_c01178{bottom:967.680000px;}
.ya_c01178{bottom:971.280000px;}
.yb_c01178{bottom:972.000000px;}
.yc_c01178{bottom:974.160000px;}
.y2_c01178{bottom:1010.880000px;}
.y3_c01178{bottom:1012.320000px;}
.y4_c01178{bottom:1014.480000px;}
.y5_c01178{bottom:1015.200000px;}
.y7_c01178{bottom:1015.920000px;}
.y6_c01178{bottom:1016.640000px;}
.y8_c01178{bottom:1018.080000px;}
.y1_c01178{bottom:1098.720000px;}
.h5_c01178{height:31.100625px;}
.hb_c01178{height:44.059219px;}
.h4_c01178{height:46.650937px;}
.h7_c01178{height:49.242656px;}
.h6_c01178{height:51.834375px;}
.h3_c01178{height:54.426094px;}
.h9_c01178{height:57.017812px;}
.hd_c01178{height:59.609531px;}
.ha_c01178{height:62.201250px;}
.hc_c01178{height:64.792969px;}
.h8_c01178{height:67.384687px;}
.h2_c01178{height:69.976406px;}
.h0_c01178{height:1141.920000px;}
.h1_c01178{height:1142.250000px;}
.w0_c01178{width:781.920000px;}
.w1_c01178{width:782.250000px;}
.x0_c01178{left:0.000000px;}
.x19_c01178{left:66.240000px;}
.x2_c01178{left:67.680000px;}
.x1b_c01178{left:147.600000px;}
.x3_c01178{left:149.040000px;}
.xc_c01178{left:192.240000px;}
.x4_c01178{left:203.040000px;}
.x14_c01178{left:234.000000px;}
.xd_c01178{left:235.440000px;}
.x17_c01178{left:244.800000px;}
.x5_c01178{left:246.240000px;}
.xe_c01178{left:277.920000px;}
.x6_c01178{left:300.960000px;}
.x7_c01178{left:342.720000px;}
.x10_c01178{left:537.840000px;}
.x8_c01178{left:539.280000px;}
.x1c_c01178{left:624.960000px;}
.x9_c01178{left:626.400000px;}
.x11_c01178{left:637.200000px;}
.x15_c01178{left:658.800000px;}
.xa_c01178{left:660.240000px;}
.x12_c01178{left:670.320000px;}
.x1_c01178{left:671.760000px;}
.x1a_c01178{left:691.200000px;}
.x18_c01178{left:692.640000px;}
.x16_c01178{left:702.000000px;}
.xb_c01178{left:703.440000px;}
.xf_c01178{left:723.600000px;}
.x13_c01178{left:734.400000px;}
@media print{
.v2_c01178{vertical-align:-5.120000pt;}
.v1_c01178{vertical-align:-2.560000pt;}
.v0_c01178{vertical-align:0.000000pt;}
.ls0_c01178{letter-spacing:0.000000pt;}
.ws4_c01178{word-spacing:0.000000pt;}
.ws0_c01178{word-spacing:40.349867pt;}
.ws2_c01178{word-spacing:178.119467pt;}
.ws1_c01178{word-spacing:180.327467pt;}
.ws3_c01178{word-spacing:682.980480pt;}
.fs3_c01178{font-size:30.720000pt;}
.fs9_c01178{font-size:43.520000pt;}
.fs2_c01178{font-size:46.080000pt;}
.fs5_c01178{font-size:48.640000pt;}
.fs4_c01178{font-size:51.200000pt;}
.fs1_c01178{font-size:53.760000pt;}
.fs7_c01178{font-size:56.320000pt;}
.fsb_c01178{font-size:58.880000pt;}
.fs8_c01178{font-size:61.440000pt;}
.fsa_c01178{font-size:64.000000pt;}
.fs6_c01178{font-size:66.560000pt;}
.fs0_c01178{font-size:69.120000pt;}
.y0_c01178{bottom:0.000000pt;}
.y72_c01178{bottom:56.960000pt;}
.y73_c01178{bottom:57.600000pt;}
.y71_c01178{bottom:58.240000pt;}
.y70_c01178{bottom:59.520000pt;}
.y6f_c01178{bottom:64.000000pt;}
.y6e_c01178{bottom:65.920000pt;}
.y6d_c01178{bottom:94.720000pt;}
.y6c_c01178{bottom:97.280000pt;}
.y6b_c01178{bottom:97.920000pt;}
.y6a_c01178{bottom:101.760000pt;}
.y69_c01178{bottom:103.040000pt;}
.y67_c01178{bottom:133.120000pt;}
.y68_c01178{bottom:134.400000pt;}
.y66_c01178{bottom:135.040000pt;}
.y65_c01178{bottom:135.680000pt;}
.y64_c01178{bottom:140.800000pt;}
.y63_c01178{bottom:171.520000pt;}
.y62_c01178{bottom:172.160000pt;}
.y61_c01178{bottom:173.440000pt;}
.y60_c01178{bottom:177.280000pt;}
.y5f_c01178{bottom:178.560000pt;}
.y5e_c01178{bottom:211.840000pt;}
.y5d_c01178{bottom:212.480000pt;}
.y5c_c01178{bottom:216.960000pt;}
.y5b_c01178{bottom:249.600000pt;}
.y59_c01178{bottom:250.240000pt;}
.y5a_c01178{bottom:250.880000pt;}
.y58_c01178{bottom:254.080000pt;}
.y57_c01178{bottom:286.720000pt;}
.y56_c01178{bottom:287.360000pt;}
.y55_c01178{bottom:288.000000pt;}
.y54_c01178{bottom:288.640000pt;}
.y52_c01178{bottom:292.480000pt;}
.y53_c01178{bottom:293.120000pt;}
.y51_c01178{bottom:326.400000pt;}
.y4f_c01178{bottom:327.040000pt;}
.y50_c01178{bottom:328.960000pt;}
.y4e_c01178{bottom:330.240000pt;}
.y4c_c01178{bottom:364.160000pt;}
.y4d_c01178{bottom:364.800000pt;}
.y49_c01178{bottom:365.440000pt;}
.y4a_c01178{bottom:366.080000pt;}
.y4b_c01178{bottom:366.720000pt;}
.y48_c01178{bottom:368.000000pt;}
.y45_c01178{bottom:403.200000pt;}
.y46_c01178{bottom:403.840000pt;}
.y47_c01178{bottom:404.480000pt;}
.y44_c01178{bottom:406.400000pt;}
.y41_c01178{bottom:441.600000pt;}
.y42_c01178{bottom:442.880000pt;}
.y43_c01178{bottom:443.520000pt;}
.y3f_c01178{bottom:444.160000pt;}
.y40_c01178{bottom:445.440000pt;}
.y3c_c01178{bottom:479.360000pt;}
.y3e_c01178{bottom:480.000000pt;}
.y3d_c01178{bottom:481.280000pt;}
.y3a_c01178{bottom:481.920000pt;}
.y3b_c01178{bottom:483.200000pt;}
.y37_c01178{bottom:517.120000pt;}
.y39_c01178{bottom:518.400000pt;}
.y38_c01178{bottom:519.040000pt;}
.y36_c01178{bottom:519.680000pt;}
.y33_c01178{bottom:555.520000pt;}
.y35_c01178{bottom:556.160000pt;}
.y34_c01178{bottom:556.800000pt;}
.y31_c01178{bottom:557.440000pt;}
.y32_c01178{bottom:558.720000pt;}
.y2e_c01178{bottom:593.280000pt;}
.y2f_c01178{bottom:593.920000pt;}
.y2c_c01178{bottom:595.200000pt;}
.y30_c01178{bottom:596.480000pt;}
.y2d_c01178{bottom:597.120000pt;}
.y2a_c01178{bottom:631.680000pt;}
.y29_c01178{bottom:632.960000pt;}
.y2b_c01178{bottom:633.600000pt;}
.y25_c01178{bottom:669.440000pt;}
.y23_c01178{bottom:670.720000pt;}
.y26_c01178{bottom:671.360000pt;}
.y27_c01178{bottom:672.000000pt;}
.y24_c01178{bottom:672.640000pt;}
.y28_c01178{bottom:673.280000pt;}
.y1e_c01178{bottom:707.840000pt;}
.y1d_c01178{bottom:708.480000pt;}
.y22_c01178{bottom:709.120000pt;}
.y1f_c01178{bottom:709.760000pt;}
.y21_c01178{bottom:710.400000pt;}
.y20_c01178{bottom:712.320000pt;}
.y19_c01178{bottom:745.600000pt;}
.y18_c01178{bottom:746.240000pt;}
.y1a_c01178{bottom:748.160000pt;}
.y1c_c01178{bottom:748.800000pt;}
.y1b_c01178{bottom:750.080000pt;}
.y14_c01178{bottom:784.640000pt;}
.y12_c01178{bottom:785.280000pt;}
.y16_c01178{bottom:786.560000pt;}
.y13_c01178{bottom:787.200000pt;}
.y17_c01178{bottom:788.480000pt;}
.y15_c01178{bottom:789.120000pt;}
.yd_c01178{bottom:823.040000pt;}
.ye_c01178{bottom:824.960000pt;}
.y10_c01178{bottom:825.600000pt;}
.yf_c01178{bottom:826.240000pt;}
.y11_c01178{bottom:826.880000pt;}
.y9_c01178{bottom:860.160000pt;}
.ya_c01178{bottom:863.360000pt;}
.yb_c01178{bottom:864.000000pt;}
.yc_c01178{bottom:865.920000pt;}
.y2_c01178{bottom:898.560000pt;}
.y3_c01178{bottom:899.840000pt;}
.y4_c01178{bottom:901.760000pt;}
.y5_c01178{bottom:902.400000pt;}
.y7_c01178{bottom:903.040000pt;}
.y6_c01178{bottom:903.680000pt;}
.y8_c01178{bottom:904.960000pt;}
.y1_c01178{bottom:976.640000pt;}
.h5_c01178{height:27.645000pt;}
.hb_c01178{height:39.163750pt;}
.h4_c01178{height:41.467500pt;}
.h7_c01178{height:43.771250pt;}
.h6_c01178{height:46.075000pt;}
.h3_c01178{height:48.378750pt;}
.h9_c01178{height:50.682500pt;}
.hd_c01178{height:52.986250pt;}
.ha_c01178{height:55.290000pt;}
.hc_c01178{height:57.593750pt;}
.h8_c01178{height:59.897500pt;}
.h2_c01178{height:62.201250pt;}
.h0_c01178{height:1015.040000pt;}
.h1_c01178{height:1015.333333pt;}
.w0_c01178{width:695.040000pt;}
.w1_c01178{width:695.333333pt;}
.x0_c01178{left:0.000000pt;}
.x19_c01178{left:58.880000pt;}
.x2_c01178{left:60.160000pt;}
.x1b_c01178{left:131.200000pt;}
.x3_c01178{left:132.480000pt;}
.xc_c01178{left:170.880000pt;}
.x4_c01178{left:180.480000pt;}
.x14_c01178{left:208.000000pt;}
.xd_c01178{left:209.280000pt;}
.x17_c01178{left:217.600000pt;}
.x5_c01178{left:218.880000pt;}
.xe_c01178{left:247.040000pt;}
.x6_c01178{left:267.520000pt;}
.x7_c01178{left:304.640000pt;}
.x10_c01178{left:478.080000pt;}
.x8_c01178{left:479.360000pt;}
.x1c_c01178{left:555.520000pt;}
.x9_c01178{left:556.800000pt;}
.x11_c01178{left:566.400000pt;}
.x15_c01178{left:585.600000pt;}
.xa_c01178{left:586.880000pt;}
.x12_c01178{left:595.840000pt;}
.x1_c01178{left:597.120000pt;}
.x1a_c01178{left:614.400000pt;}
.x18_c01178{left:615.680000pt;}
.x16_c01178{left:624.000000pt;}
.xb_c01178{left:625.280000pt;}
.xf_c01178{left:643.200000pt;}
.x13_c01178{left:652.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_fdc29fdd6bf1e9b2b1214791.woff2')format("woff");}.ff1_c01179{font-family:ff1_c01179;line-height:1.109863;font-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_c01179{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m14_c01179{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m1c_c01179{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m38_c01179{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m13_c01179{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m2_c01179{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);}
.m28_c01179{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);}
.m37_c01179{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m9_c01179{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_c01179{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.me_c01179{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);}
.m2a_c01179{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m4_c01179{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m20_c01179{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m27_c01179{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01179{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m17_c01179{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.md_c01179{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m23_c01179{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3_c01179{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01179{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m8_c01179{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01179{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m31_c01179{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m22_c01179{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.ma_c01179{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01179{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m12_c01179{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);}
.m36_c01179{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m16_c01179{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m15_c01179{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);}
.m2c_c01179{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1_c01179{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);}
.m32_c01179{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m11_c01179{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m6_c01179{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01179{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m19_c01179{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m21_c01179{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);}
.m2d_c01179{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01179{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m18_c01179{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_c01179{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m5_c01179{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);}
.m30_c01179{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m0_c01179{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m10_c01179{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01179{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);}
.m2f_c01179{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m25_c01179{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);}
.m3b_c01179{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01179{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m34_c01179{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);}
.m24_c01179{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m33_c01179{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m29_c01179{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01179{transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);}
.m35_c01179{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m39_c01179{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.mf_c01179{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01179{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.v1_c01179{vertical-align:-2.880000px;}
.v0_c01179{vertical-align:0.000000px;}
.ls0_c01179{letter-spacing:0.000000px;}
.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;}
}
.ws2_c01179{word-spacing:0.000000px;}
.ws0_c01179{word-spacing:7.309920px;}
.ws1_c01179{word-spacing:200.384400px;}
.fc0_c01179{color:transparent;}
.fsb_c01179{font-size:34.560000px;}
.fsa_c01179{font-size:43.200000px;}
.fs3_c01179{font-size:46.080000px;}
.fs5_c01179{font-size:48.960000px;}
.fs6_c01179{font-size:51.840000px;}
.fs4_c01179{font-size:54.720000px;}
.fs8_c01179{font-size:57.600000px;}
.fs1_c01179{font-size:60.480000px;}
.fs7_c01179{font-size:63.360000px;}
.fs9_c01179{font-size:66.240000px;}
.fs0_c01179{font-size:69.120000px;}
.fs2_c01179{font-size:72.000000px;}
.fsc_c01179{font-size:74.880000px;}
.y0_c01179{bottom:0.000000px;}
.y76_c01179{bottom:77.040000px;}
.y77_c01179{bottom:77.760000px;}
.y78_c01179{bottom:79.200000px;}
.y75_c01179{bottom:82.080000px;}
.y74_c01179{bottom:82.800000px;}
.y70_c01179{bottom:120.240000px;}
.y73_c01179{bottom:121.680000px;}
.y72_c01179{bottom:122.400000px;}
.y71_c01179{bottom:123.120000px;}
.y6f_c01179{bottom:123.840000px;}
.y6d_c01179{bottom:124.560000px;}
.y6e_c01179{bottom:125.280000px;}
.y69_c01179{bottom:162.720000px;}
.y6b_c01179{bottom:163.440000px;}
.y6a_c01179{bottom:164.160000px;}
.y6c_c01179{bottom:165.600000px;}
.y67_c01179{bottom:167.760000px;}
.y68_c01179{bottom:168.480000px;}
.y65_c01179{bottom:205.920000px;}
.y63_c01179{bottom:206.640000px;}
.y66_c01179{bottom:208.080000px;}
.y64_c01179{bottom:208.800000px;}
.y62_c01179{bottom:210.240000px;}
.y5f_c01179{bottom:249.120000px;}
.y60_c01179{bottom:250.560000px;}
.y61_c01179{bottom:251.280000px;}
.y5e_c01179{bottom:252.000000px;}
.y5b_c01179{bottom:291.600000px;}
.y5d_c01179{bottom:292.320000px;}
.y5c_c01179{bottom:293.040000px;}
.y5a_c01179{bottom:294.480000px;}
.y56_c01179{bottom:334.080000px;}
.y57_c01179{bottom:335.520000px;}
.y54_c01179{bottom:336.240000px;}
.y59_c01179{bottom:336.960000px;}
.y53_c01179{bottom:337.680000px;}
.y55_c01179{bottom:338.400000px;}
.y58_c01179{bottom:339.120000px;}
.y50_c01179{bottom:378.000000px;}
.y52_c01179{bottom:378.720000px;}
.y51_c01179{bottom:379.440000px;}
.y4e_c01179{bottom:380.880000px;}
.y4f_c01179{bottom:381.600000px;}
.y4b_c01179{bottom:420.480000px;}
.y4c_c01179{bottom:421.920000px;}
.y4d_c01179{bottom:422.640000px;}
.y4a_c01179{bottom:423.360000px;}
.y47_c01179{bottom:463.680000px;}
.y49_c01179{bottom:464.400000px;}
.y45_c01179{bottom:465.120000px;}
.y48_c01179{bottom:465.840000px;}
.y46_c01179{bottom:466.560000px;}
.y43_c01179{bottom:506.160000px;}
.y42_c01179{bottom:508.320000px;}
.y44_c01179{bottom:509.760000px;}
.y3f_c01179{bottom:548.640000px;}
.y3e_c01179{bottom:550.800000px;}
.y40_c01179{bottom:552.240000px;}
.y41_c01179{bottom:552.960000px;}
.y3a_c01179{bottom:592.560000px;}
.y38_c01179{bottom:593.280000px;}
.y39_c01179{bottom:595.440000px;}
.y3c_c01179{bottom:596.160000px;}
.y3d_c01179{bottom:597.600000px;}
.y3b_c01179{bottom:598.320000px;}
.y33_c01179{bottom:635.040000px;}
.y32_c01179{bottom:635.760000px;}
.y34_c01179{bottom:637.200000px;}
.y35_c01179{bottom:638.640000px;}
.y37_c01179{bottom:639.360000px;}
.y36_c01179{bottom:640.800000px;}
.y2e_c01179{bottom:678.240000px;}
.y2d_c01179{bottom:678.960000px;}
.y30_c01179{bottom:681.120000px;}
.y2f_c01179{bottom:681.840000px;}
.y31_c01179{bottom:682.560000px;}
.y2a_c01179{bottom:720.720000px;}
.y29_c01179{bottom:721.440000px;}
.y2b_c01179{bottom:725.040000px;}
.y2c_c01179{bottom:725.760000px;}
.y25_c01179{bottom:763.200000px;}
.y24_c01179{bottom:764.640000px;}
.y26_c01179{bottom:768.240000px;}
.y27_c01179{bottom:768.960000px;}
.y28_c01179{bottom:769.680000px;}
.y1f_c01179{bottom:807.120000px;}
.y20_c01179{bottom:810.000000px;}
.y21_c01179{bottom:810.720000px;}
.y23_c01179{bottom:812.160000px;}
.y22_c01179{bottom:812.880000px;}
.y1a_c01179{bottom:848.880000px;}
.y1b_c01179{bottom:850.320000px;}
.y1c_c01179{bottom:853.920000px;}
.y1d_c01179{bottom:856.080000px;}
.y1e_c01179{bottom:857.520000px;}
.y13_c01179{bottom:892.080000px;}
.y15_c01179{bottom:892.800000px;}
.y14_c01179{bottom:894.240000px;}
.y16_c01179{bottom:896.400000px;}
.y18_c01179{bottom:897.120000px;}
.y17_c01179{bottom:897.840000px;}
.y19_c01179{bottom:900.720000px;}
.yd_c01179{bottom:934.560000px;}
.ye_c01179{bottom:939.600000px;}
.y10_c01179{bottom:940.320000px;}
.yf_c01179{bottom:941.040000px;}
.y11_c01179{bottom:941.760000px;}
.y12_c01179{bottom:943.200000px;}
.y8_c01179{bottom:977.040000px;}
.ya_c01179{bottom:977.760000px;}
.y9_c01179{bottom:980.640000px;}
.yb_c01179{bottom:982.800000px;}
.yc_c01179{bottom:986.400000px;}
.y2_c01179{bottom:1019.520000px;}
.y3_c01179{bottom:1020.960000px;}
.y4_c01179{bottom:1026.000000px;}
.y5_c01179{bottom:1027.440000px;}
.y7_c01179{bottom:1029.600000px;}
.y6_c01179{bottom:1030.320000px;}
.y1_c01179{bottom:1096.560000px;}
.hd_c01179{height:31.100625px;}
.hc_c01179{height:38.875781px;}
.h5_c01179{height:41.467500px;}
.h7_c01179{height:44.059219px;}
.h8_c01179{height:46.650937px;}
.h6_c01179{height:49.242656px;}
.ha_c01179{height:51.834375px;}
.h3_c01179{height:54.426094px;}
.h9_c01179{height:57.017812px;}
.hb_c01179{height:59.609531px;}
.h2_c01179{height:62.201250px;}
.h4_c01179{height:64.792969px;}
.he_c01179{height:67.384687px;}
.h0_c01179{height:1140.480000px;}
.h1_c01179{height:1140.750000px;}
.w0_c01179{width:780.480000px;}
.w1_c01179{width:780.750000px;}
.x0_c01179{left:0.000000px;}
.x2_c01179{left:62.640000px;}
.xc_c01179{left:64.080000px;}
.x1d_c01179{left:65.520000px;}
.x1e_c01179{left:66.960000px;}
.x2d_c01179{left:68.400000px;}
.x3_c01179{left:144.720000px;}
.xf_c01179{left:146.880000px;}
.x1f_c01179{left:148.320000px;}
.x2e_c01179{left:149.760000px;}
.x8_c01179{left:220.320000px;}
.x17_c01179{left:221.760000px;}
.x29_c01179{left:223.200000px;}
.x2f_c01179{left:224.640000px;}
.xb_c01179{left:230.400000px;}
.x20_c01179{left:232.560000px;}
.x2b_c01179{left:234.000000px;}
.x12_c01179{left:264.240000px;}
.x21_c01179{left:277.200000px;}
.x13_c01179{left:317.520000px;}
.x22_c01179{left:319.680000px;}
.x14_c01179{left:361.440000px;}
.x15_c01179{left:485.280000px;}
.x4_c01179{left:533.520000px;}
.xd_c01179{left:534.960000px;}
.x19_c01179{left:536.400000px;}
.x25_c01179{left:537.840000px;}
.x30_c01179{left:539.280000px;}
.x1c_c01179{left:589.680000px;}
.x10_c01179{left:600.480000px;}
.x26_c01179{left:602.640000px;}
.x5_c01179{left:622.080000px;}
.x16_c01179{left:624.240000px;}
.x27_c01179{left:625.680000px;}
.x28_c01179{left:650.160000px;}
.x6_c01179{left:654.480000px;}
.xe_c01179{left:655.920000px;}
.x1a_c01179{left:657.360000px;}
.x23_c01179{left:658.800000px;}
.x31_c01179{left:660.240000px;}
.x1_c01179{left:662.400000px;}
.x7_c01179{left:687.600000px;}
.x9_c01179{left:698.400000px;}
.x11_c01179{left:699.840000px;}
.x1b_c01179{left:701.280000px;}
.x2a_c01179{left:702.720000px;}
.xa_c01179{left:719.280000px;}
.x18_c01179{left:720.720000px;}
.x24_c01179{left:722.160000px;}
.x2c_c01179{left:723.600000px;}
@media print{
.v1_c01179{vertical-align:-2.560000pt;}
.v0_c01179{vertical-align:0.000000pt;}
.ls0_c01179{letter-spacing:0.000000pt;}
.ws2_c01179{word-spacing:0.000000pt;}
.ws0_c01179{word-spacing:6.497707pt;}
.ws1_c01179{word-spacing:178.119467pt;}
.fsb_c01179{font-size:30.720000pt;}
.fsa_c01179{font-size:38.400000pt;}
.fs3_c01179{font-size:40.960000pt;}
.fs5_c01179{font-size:43.520000pt;}
.fs6_c01179{font-size:46.080000pt;}
.fs4_c01179{font-size:48.640000pt;}
.fs8_c01179{font-size:51.200000pt;}
.fs1_c01179{font-size:53.760000pt;}
.fs7_c01179{font-size:56.320000pt;}
.fs9_c01179{font-size:58.880000pt;}
.fs0_c01179{font-size:61.440000pt;}
.fs2_c01179{font-size:64.000000pt;}
.fsc_c01179{font-size:66.560000pt;}
.y0_c01179{bottom:0.000000pt;}
.y76_c01179{bottom:68.480000pt;}
.y77_c01179{bottom:69.120000pt;}
.y78_c01179{bottom:70.400000pt;}
.y75_c01179{bottom:72.960000pt;}
.y74_c01179{bottom:73.600000pt;}
.y70_c01179{bottom:106.880000pt;}
.y73_c01179{bottom:108.160000pt;}
.y72_c01179{bottom:108.800000pt;}
.y71_c01179{bottom:109.440000pt;}
.y6f_c01179{bottom:110.080000pt;}
.y6d_c01179{bottom:110.720000pt;}
.y6e_c01179{bottom:111.360000pt;}
.y69_c01179{bottom:144.640000pt;}
.y6b_c01179{bottom:145.280000pt;}
.y6a_c01179{bottom:145.920000pt;}
.y6c_c01179{bottom:147.200000pt;}
.y67_c01179{bottom:149.120000pt;}
.y68_c01179{bottom:149.760000pt;}
.y65_c01179{bottom:183.040000pt;}
.y63_c01179{bottom:183.680000pt;}
.y66_c01179{bottom:184.960000pt;}
.y64_c01179{bottom:185.600000pt;}
.y62_c01179{bottom:186.880000pt;}
.y5f_c01179{bottom:221.440000pt;}
.y60_c01179{bottom:222.720000pt;}
.y61_c01179{bottom:223.360000pt;}
.y5e_c01179{bottom:224.000000pt;}
.y5b_c01179{bottom:259.200000pt;}
.y5d_c01179{bottom:259.840000pt;}
.y5c_c01179{bottom:260.480000pt;}
.y5a_c01179{bottom:261.760000pt;}
.y56_c01179{bottom:296.960000pt;}
.y57_c01179{bottom:298.240000pt;}
.y54_c01179{bottom:298.880000pt;}
.y59_c01179{bottom:299.520000pt;}
.y53_c01179{bottom:300.160000pt;}
.y55_c01179{bottom:300.800000pt;}
.y58_c01179{bottom:301.440000pt;}
.y50_c01179{bottom:336.000000pt;}
.y52_c01179{bottom:336.640000pt;}
.y51_c01179{bottom:337.280000pt;}
.y4e_c01179{bottom:338.560000pt;}
.y4f_c01179{bottom:339.200000pt;}
.y4b_c01179{bottom:373.760000pt;}
.y4c_c01179{bottom:375.040000pt;}
.y4d_c01179{bottom:375.680000pt;}
.y4a_c01179{bottom:376.320000pt;}
.y47_c01179{bottom:412.160000pt;}
.y49_c01179{bottom:412.800000pt;}
.y45_c01179{bottom:413.440000pt;}
.y48_c01179{bottom:414.080000pt;}
.y46_c01179{bottom:414.720000pt;}
.y43_c01179{bottom:449.920000pt;}
.y42_c01179{bottom:451.840000pt;}
.y44_c01179{bottom:453.120000pt;}
.y3f_c01179{bottom:487.680000pt;}
.y3e_c01179{bottom:489.600000pt;}
.y40_c01179{bottom:490.880000pt;}
.y41_c01179{bottom:491.520000pt;}
.y3a_c01179{bottom:526.720000pt;}
.y38_c01179{bottom:527.360000pt;}
.y39_c01179{bottom:529.280000pt;}
.y3c_c01179{bottom:529.920000pt;}
.y3d_c01179{bottom:531.200000pt;}
.y3b_c01179{bottom:531.840000pt;}
.y33_c01179{bottom:564.480000pt;}
.y32_c01179{bottom:565.120000pt;}
.y34_c01179{bottom:566.400000pt;}
.y35_c01179{bottom:567.680000pt;}
.y37_c01179{bottom:568.320000pt;}
.y36_c01179{bottom:569.600000pt;}
.y2e_c01179{bottom:602.880000pt;}
.y2d_c01179{bottom:603.520000pt;}
.y30_c01179{bottom:605.440000pt;}
.y2f_c01179{bottom:606.080000pt;}
.y31_c01179{bottom:606.720000pt;}
.y2a_c01179{bottom:640.640000pt;}
.y29_c01179{bottom:641.280000pt;}
.y2b_c01179{bottom:644.480000pt;}
.y2c_c01179{bottom:645.120000pt;}
.y25_c01179{bottom:678.400000pt;}
.y24_c01179{bottom:679.680000pt;}
.y26_c01179{bottom:682.880000pt;}
.y27_c01179{bottom:683.520000pt;}
.y28_c01179{bottom:684.160000pt;}
.y1f_c01179{bottom:717.440000pt;}
.y20_c01179{bottom:720.000000pt;}
.y21_c01179{bottom:720.640000pt;}
.y23_c01179{bottom:721.920000pt;}
.y22_c01179{bottom:722.560000pt;}
.y1a_c01179{bottom:754.560000pt;}
.y1b_c01179{bottom:755.840000pt;}
.y1c_c01179{bottom:759.040000pt;}
.y1d_c01179{bottom:760.960000pt;}
.y1e_c01179{bottom:762.240000pt;}
.y13_c01179{bottom:792.960000pt;}
.y15_c01179{bottom:793.600000pt;}
.y14_c01179{bottom:794.880000pt;}
.y16_c01179{bottom:796.800000pt;}
.y18_c01179{bottom:797.440000pt;}
.y17_c01179{bottom:798.080000pt;}
.y19_c01179{bottom:800.640000pt;}
.yd_c01179{bottom:830.720000pt;}
.ye_c01179{bottom:835.200000pt;}
.y10_c01179{bottom:835.840000pt;}
.yf_c01179{bottom:836.480000pt;}
.y11_c01179{bottom:837.120000pt;}
.y12_c01179{bottom:838.400000pt;}
.y8_c01179{bottom:868.480000pt;}
.ya_c01179{bottom:869.120000pt;}
.y9_c01179{bottom:871.680000pt;}
.yb_c01179{bottom:873.600000pt;}
.yc_c01179{bottom:876.800000pt;}
.y2_c01179{bottom:906.240000pt;}
.y3_c01179{bottom:907.520000pt;}
.y4_c01179{bottom:912.000000pt;}
.y5_c01179{bottom:913.280000pt;}
.y7_c01179{bottom:915.200000pt;}
.y6_c01179{bottom:915.840000pt;}
.y1_c01179{bottom:974.720000pt;}
.hd_c01179{height:27.645000pt;}
.hc_c01179{height:34.556250pt;}
.h5_c01179{height:36.860000pt;}
.h7_c01179{height:39.163750pt;}
.h8_c01179{height:41.467500pt;}
.h6_c01179{height:43.771250pt;}
.ha_c01179{height:46.075000pt;}
.h3_c01179{height:48.378750pt;}
.h9_c01179{height:50.682500pt;}
.hb_c01179{height:52.986250pt;}
.h2_c01179{height:55.290000pt;}
.h4_c01179{height:57.593750pt;}
.he_c01179{height:59.897500pt;}
.h0_c01179{height:1013.760000pt;}
.h1_c01179{height:1014.000000pt;}
.w0_c01179{width:693.760000pt;}
.w1_c01179{width:694.000000pt;}
.x0_c01179{left:0.000000pt;}
.x2_c01179{left:55.680000pt;}
.xc_c01179{left:56.960000pt;}
.x1d_c01179{left:58.240000pt;}
.x1e_c01179{left:59.520000pt;}
.x2d_c01179{left:60.800000pt;}
.x3_c01179{left:128.640000pt;}
.xf_c01179{left:130.560000pt;}
.x1f_c01179{left:131.840000pt;}
.x2e_c01179{left:133.120000pt;}
.x8_c01179{left:195.840000pt;}
.x17_c01179{left:197.120000pt;}
.x29_c01179{left:198.400000pt;}
.x2f_c01179{left:199.680000pt;}
.xb_c01179{left:204.800000pt;}
.x20_c01179{left:206.720000pt;}
.x2b_c01179{left:208.000000pt;}
.x12_c01179{left:234.880000pt;}
.x21_c01179{left:246.400000pt;}
.x13_c01179{left:282.240000pt;}
.x22_c01179{left:284.160000pt;}
.x14_c01179{left:321.280000pt;}
.x15_c01179{left:431.360000pt;}
.x4_c01179{left:474.240000pt;}
.xd_c01179{left:475.520000pt;}
.x19_c01179{left:476.800000pt;}
.x25_c01179{left:478.080000pt;}
.x30_c01179{left:479.360000pt;}
.x1c_c01179{left:524.160000pt;}
.x10_c01179{left:533.760000pt;}
.x26_c01179{left:535.680000pt;}
.x5_c01179{left:552.960000pt;}
.x16_c01179{left:554.880000pt;}
.x27_c01179{left:556.160000pt;}
.x28_c01179{left:577.920000pt;}
.x6_c01179{left:581.760000pt;}
.xe_c01179{left:583.040000pt;}
.x1a_c01179{left:584.320000pt;}
.x23_c01179{left:585.600000pt;}
.x31_c01179{left:586.880000pt;}
.x1_c01179{left:588.800000pt;}
.x7_c01179{left:611.200000pt;}
.x9_c01179{left:620.800000pt;}
.x11_c01179{left:622.080000pt;}
.x1b_c01179{left:623.360000pt;}
.x2a_c01179{left:624.640000pt;}
.xa_c01179{left:639.360000pt;}
.x18_c01179{left:640.640000pt;}
.x24_c01179{left:641.920000pt;}
.x2c_c01179{left:643.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_197531b88471c7b2c214230c.woff2')format("woff");}.ff1_c01180{font-family:ff1_c01180;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m35_c01180{transform:matrix(0.161400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161400,0.000000,0.000000,0.250000,0,0);}
.m3e_c01180{transform:matrix(0.224575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224575,0.000000,0.000000,0.250000,0,0);}
.m21_c01180{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m6_c01180{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01180{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m18_c01180{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m3_c01180{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m12_c01180{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01180{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m10_c01180{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01180{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m4_c01180{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);}
.m25_c01180{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m5_c01180{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.me_c01180{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01180{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2_c01180{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m16_c01180{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.mb_c01180{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.md_c01180{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.ma_c01180{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01180{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m22_c01180{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m8_c01180{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01180{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m26_c01180{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m14_c01180{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01180{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01180{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01180{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.mc_c01180{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m17_c01180{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m11_c01180{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m28_c01180{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1_c01180{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01180{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);}
.m13_c01180{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m29_c01180{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m0_c01180{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);}
.m2c_c01180{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m15_c01180{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);}
.m3d_c01180{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m9_c01180{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);}
.m24_c01180{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);}
.m30_c01180{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m34_c01180{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);}
.m3f_c01180{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01180{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01180{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m37_c01180{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);}
.m40_c01180{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m23_c01180{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);}
.m33_c01180{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);}
.m31_c01180{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01180{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m32_c01180{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01180{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m39_c01180{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m38_c01180{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m36_c01180{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);}
.m20_c01180{transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);}
.m19_c01180{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m7_c01180{transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);}
.m27_c01180{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.mf_c01180{transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);}
.v0_c01180{vertical-align:0.000000px;}
.v2_c01180{vertical-align:2.880000px;}
.v3_c01180{vertical-align:8.640000px;}
.v1_c01180{vertical-align:11.520000px;}
.ls0_c01180{letter-spacing:0.000000px;}
.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;}
}
.ws2_c01180{word-spacing:-1.402560px;}
.ws0_c01180{word-spacing:-1.264800px;}
.ws6_c01180{word-spacing:0.000000px;}
.ws3_c01180{word-spacing:6.216480px;}
.ws1_c01180{word-spacing:10.188960px;}
.ws5_c01180{word-spacing:15.600000px;}
.ws4_c01180{word-spacing:195.126000px;}
.fc0_c01180{color:transparent;}
.fse_c01180{font-size:34.560000px;}
.fsd_c01180{font-size:37.440000px;}
.fs10_c01180{font-size:40.320000px;}
.fsc_c01180{font-size:43.200000px;}
.fs9_c01180{font-size:46.080000px;}
.fs6_c01180{font-size:48.960000px;}
.fs2_c01180{font-size:51.840000px;}
.fs5_c01180{font-size:54.720000px;}
.fs1_c01180{font-size:57.600000px;}
.fs4_c01180{font-size:60.480000px;}
.fs7_c01180{font-size:63.360000px;}
.fs3_c01180{font-size:66.240000px;}
.fs0_c01180{font-size:69.120000px;}
.fs8_c01180{font-size:72.000000px;}
.fsb_c01180{font-size:74.880000px;}
.fsf_c01180{font-size:95.040000px;}
.fsa_c01180{font-size:103.680000px;}
.y0_c01180{bottom:0.000000px;}
.y8b_c01180{bottom:71.280000px;}
.y89_c01180{bottom:72.000000px;}
.y86_c01180{bottom:79.200000px;}
.y88_c01180{bottom:79.920000px;}
.y8a_c01180{bottom:81.360000px;}
.y87_c01180{bottom:82.080000px;}
.y85_c01180{bottom:82.800000px;}
.y82_c01180{bottom:120.960000px;}
.y80_c01180{bottom:121.680000px;}
.y84_c01180{bottom:122.400000px;}
.y83_c01180{bottom:123.840000px;}
.y81_c01180{bottom:124.560000px;}
.y7f_c01180{bottom:125.280000px;}
.y7e_c01180{bottom:157.680000px;}
.y79_c01180{bottom:164.160000px;}
.y7c_c01180{bottom:164.880000px;}
.y7d_c01180{bottom:166.320000px;}
.y7b_c01180{bottom:167.040000px;}
.y7a_c01180{bottom:167.760000px;}
.y78_c01180{bottom:168.480000px;}
.y73_c01180{bottom:206.640000px;}
.y75_c01180{bottom:207.360000px;}
.y76_c01180{bottom:208.080000px;}
.y77_c01180{bottom:208.800000px;}
.y74_c01180{bottom:209.520000px;}
.y72_c01180{bottom:210.960000px;}
.y6f_c01180{bottom:243.360000px;}
.y6c_c01180{bottom:250.560000px;}
.y70_c01180{bottom:252.000000px;}
.y6e_c01180{bottom:252.720000px;}
.y6b_c01180{bottom:253.440000px;}
.y6d_c01180{bottom:254.160000px;}
.y71_c01180{bottom:254.880000px;}
.y66_c01180{bottom:293.760000px;}
.y68_c01180{bottom:294.480000px;}
.y69_c01180{bottom:295.200000px;}
.y67_c01180{bottom:295.920000px;}
.y65_c01180{bottom:296.640000px;}
.y6a_c01180{bottom:298.800000px;}
.y61_c01180{bottom:336.960000px;}
.y60_c01180{bottom:338.400000px;}
.y62_c01180{bottom:339.120000px;}
.y63_c01180{bottom:341.280000px;}
.y64_c01180{bottom:342.000000px;}
.y5b_c01180{bottom:378.720000px;}
.y5a_c01180{bottom:380.160000px;}
.y5c_c01180{bottom:382.320000px;}
.y5d_c01180{bottom:383.760000px;}
.y5e_c01180{bottom:384.480000px;}
.y5f_c01180{bottom:385.200000px;}
.y56_c01180{bottom:422.640000px;}
.y54_c01180{bottom:424.080000px;}
.y55_c01180{bottom:425.520000px;}
.y57_c01180{bottom:426.240000px;}
.y58_c01180{bottom:426.960000px;}
.y59_c01180{bottom:428.400000px;}
.y51_c01180{bottom:465.120000px;}
.y50_c01180{bottom:467.280000px;}
.y52_c01180{bottom:468.000000px;}
.y53_c01180{bottom:469.440000px;}
.y4a_c01180{bottom:507.600000px;}
.y48_c01180{bottom:509.040000px;}
.y49_c01180{bottom:510.480000px;}
.y4b_c01180{bottom:511.200000px;}
.y4d_c01180{bottom:511.920000px;}
.y4c_c01180{bottom:512.640000px;}
.y4e_c01180{bottom:514.800000px;}
.y4f_c01180{bottom:515.520000px;}
.y46_c01180{bottom:550.080000px;}
.y44_c01180{bottom:552.240000px;}
.y45_c01180{bottom:553.680000px;}
.y47_c01180{bottom:555.120000px;}
.y3e_c01180{bottom:594.000000px;}
.y3c_c01180{bottom:594.720000px;}
.y3d_c01180{bottom:596.160000px;}
.y3f_c01180{bottom:596.880000px;}
.y40_c01180{bottom:597.600000px;}
.y41_c01180{bottom:598.320000px;}
.y42_c01180{bottom:599.040000px;}
.y43_c01180{bottom:601.200000px;}
.y35_c01180{bottom:636.480000px;}
.y38_c01180{bottom:637.920000px;}
.y36_c01180{bottom:638.640000px;}
.y37_c01180{bottom:640.080000px;}
.y39_c01180{bottom:640.800000px;}
.y3a_c01180{bottom:643.680000px;}
.y3b_c01180{bottom:644.400000px;}
.y31_c01180{bottom:678.240000px;}
.y30_c01180{bottom:679.680000px;}
.y32_c01180{bottom:684.000000px;}
.y34_c01180{bottom:684.720000px;}
.y33_c01180{bottom:686.160000px;}
.y2b_c01180{bottom:721.440000px;}
.y2a_c01180{bottom:722.160000px;}
.y2c_c01180{bottom:726.480000px;}
.y2d_c01180{bottom:727.200000px;}
.y2e_c01180{bottom:727.920000px;}
.y2f_c01180{bottom:728.640000px;}
.y24_c01180{bottom:764.640000px;}
.y25_c01180{bottom:765.360000px;}
.y26_c01180{bottom:769.680000px;}
.y27_c01180{bottom:770.400000px;}
.y28_c01180{bottom:771.840000px;}
.y29_c01180{bottom:772.560000px;}
.y1f_c01180{bottom:806.400000px;}
.y20_c01180{bottom:807.840000px;}
.y21_c01180{bottom:812.880000px;}
.y22_c01180{bottom:814.320000px;}
.y23_c01180{bottom:815.760000px;}
.y1a_c01180{bottom:851.040000px;}
.y1b_c01180{bottom:856.800000px;}
.y1c_c01180{bottom:857.520000px;}
.y1d_c01180{bottom:858.960000px;}
.y1e_c01180{bottom:860.400000px;}
.y16_c01180{bottom:888.480000px;}
.y15_c01180{bottom:893.520000px;}
.y17_c01180{bottom:902.160000px;}
.y19_c01180{bottom:903.600000px;}
.y18_c01180{bottom:904.320000px;}
.yf_c01180{bottom:936.000000px;}
.y10_c01180{bottom:936.720000px;}
.y11_c01180{bottom:943.200000px;}
.y12_c01180{bottom:943.920000px;}
.y13_c01180{bottom:944.640000px;}
.y14_c01180{bottom:948.240000px;}
.y8_c01180{bottom:978.480000px;}
.ya_c01180{bottom:979.920000px;}
.y9_c01180{bottom:982.080000px;}
.yb_c01180{bottom:986.400000px;}
.yc_c01180{bottom:987.840000px;}
.ye_c01180{bottom:990.720000px;}
.yd_c01180{bottom:991.440000px;}
.y2_c01180{bottom:1020.960000px;}
.y3_c01180{bottom:1023.840000px;}
.y4_c01180{bottom:1028.880000px;}
.y5_c01180{bottom:1030.320000px;}
.y6_c01180{bottom:1031.760000px;}
.y7_c01180{bottom:1033.920000px;}
.y1_c01180{bottom:1090.800000px;}
.h12_c01180{height:31.100625px;}
.h11_c01180{height:33.692344px;}
.h14_c01180{height:36.284062px;}
.h10_c01180{height:38.875781px;}
.hb_c01180{height:41.467500px;}
.h7_c01180{height:44.059219px;}
.ha_c01180{height:46.650937px;}
.h6_c01180{height:49.242656px;}
.hd_c01180{height:51.834375px;}
.h5_c01180{height:54.426094px;}
.hf_c01180{height:54.714375px;}
.h8_c01180{height:57.017812px;}
.h3_c01180{height:58.170937px;}
.h4_c01180{height:59.609531px;}
.h2_c01180{height:62.201250px;}
.h9_c01180{height:64.792969px;}
.he_c01180{height:67.384687px;}
.h13_c01180{height:85.526719px;}
.hc_c01180{height:93.301875px;}
.h0_c01180{height:1140.480000px;}
.h1_c01180{height:1140.750000px;}
.w0_c01180{width:779.760000px;}
.w1_c01180{width:780.000000px;}
.x0_c01180{left:0.000000px;}
.x2_c01180{left:58.320000px;}
.x12_c01180{left:59.760000px;}
.x19_c01180{left:61.920000px;}
.x29_c01180{left:63.360000px;}
.x31_c01180{left:64.800000px;}
.x3d_c01180{left:66.240000px;}
.x9_c01180{left:140.400000px;}
.x14_c01180{left:141.840000px;}
.x21_c01180{left:143.280000px;}
.x22_c01180{left:144.720000px;}
.x38_c01180{left:146.160000px;}
.x41_c01180{left:147.600000px;}
.x3_c01180{left:213.840000px;}
.xa_c01180{left:215.280000px;}
.x1a_c01180{left:218.160000px;}
.x26_c01180{left:219.600000px;}
.xe_c01180{left:226.800000px;}
.x23_c01180{left:228.960000px;}
.x24_c01180{left:272.160000px;}
.x32_c01180{left:285.840000px;}
.x3e_c01180{left:287.280000px;}
.x39_c01180{left:329.760000px;}
.x47_c01180{left:342.720000px;}
.x33_c01180{left:371.520000px;}
.x3f_c01180{left:372.960000px;}
.x48_c01180{left:384.480000px;}
.x1b_c01180{left:389.520000px;}
.x34_c01180{left:414.720000px;}
.x45_c01180{left:416.880000px;}
.x1c_c01180{left:444.960000px;}
.x3a_c01180{left:459.360000px;}
.x35_c01180{left:470.160000px;}
.x4b_c01180{left:471.600000px;}
.x49_c01180{left:483.120000px;}
.x4_c01180{left:529.200000px;}
.xf_c01180{left:530.640000px;}
.x1d_c01180{left:532.800000px;}
.x2a_c01180{left:534.240000px;}
.x36_c01180{left:535.680000px;}
.x42_c01180{left:537.120000px;}
.xb_c01180{left:584.640000px;}
.x25_c01180{left:587.520000px;}
.x2b_c01180{left:588.960000px;}
.x3b_c01180{left:590.400000px;}
.x18_c01180{left:597.600000px;}
.xc_c01180{left:605.520000px;}
.x5_c01180{left:617.040000px;}
.x10_c01180{left:618.480000px;}
.x15_c01180{left:619.920000px;}
.x2d_c01180{left:622.800000px;}
.x40_c01180{left:624.240000px;}
.x43_c01180{left:625.680000px;}
.x6_c01180{left:650.160000px;}
.xd_c01180{left:651.600000px;}
.x1e_c01180{left:653.760000px;}
.x2e_c01180{left:655.920000px;}
.x44_c01180{left:658.800000px;}
.x16_c01180{left:663.120000px;}
.x1_c01180{left:682.560000px;}
.x1f_c01180{left:686.160000px;}
.x27_c01180{left:687.600000px;}
.x2f_c01180{left:689.040000px;}
.x7_c01180{left:693.360000px;}
.x13_c01180{left:695.520000px;}
.x2c_c01180{left:699.120000px;}
.x37_c01180{left:700.560000px;}
.x46_c01180{left:702.000000px;}
.x17_c01180{left:706.320000px;}
.x8_c01180{left:713.520000px;}
.x11_c01180{left:714.960000px;}
.x20_c01180{left:717.120000px;}
.x28_c01180{left:718.560000px;}
.x30_c01180{left:720.000000px;}
.x3c_c01180{left:721.440000px;}
.x4a_c01180{left:722.880000px;}
@media print{
.v0_c01180{vertical-align:0.000000pt;}
.v2_c01180{vertical-align:2.560000pt;}
.v3_c01180{vertical-align:7.680000pt;}
.v1_c01180{vertical-align:10.240000pt;}
.ls0_c01180{letter-spacing:0.000000pt;}
.ws2_c01180{word-spacing:-1.246720pt;}
.ws0_c01180{word-spacing:-1.124267pt;}
.ws6_c01180{word-spacing:0.000000pt;}
.ws3_c01180{word-spacing:5.525760pt;}
.ws1_c01180{word-spacing:9.056853pt;}
.ws5_c01180{word-spacing:13.866667pt;}
.ws4_c01180{word-spacing:173.445333pt;}
.fse_c01180{font-size:30.720000pt;}
.fsd_c01180{font-size:33.280000pt;}
.fs10_c01180{font-size:35.840000pt;}
.fsc_c01180{font-size:38.400000pt;}
.fs9_c01180{font-size:40.960000pt;}
.fs6_c01180{font-size:43.520000pt;}
.fs2_c01180{font-size:46.080000pt;}
.fs5_c01180{font-size:48.640000pt;}
.fs1_c01180{font-size:51.200000pt;}
.fs4_c01180{font-size:53.760000pt;}
.fs7_c01180{font-size:56.320000pt;}
.fs3_c01180{font-size:58.880000pt;}
.fs0_c01180{font-size:61.440000pt;}
.fs8_c01180{font-size:64.000000pt;}
.fsb_c01180{font-size:66.560000pt;}
.fsf_c01180{font-size:84.480000pt;}
.fsa_c01180{font-size:92.160000pt;}
.y0_c01180{bottom:0.000000pt;}
.y8b_c01180{bottom:63.360000pt;}
.y89_c01180{bottom:64.000000pt;}
.y86_c01180{bottom:70.400000pt;}
.y88_c01180{bottom:71.040000pt;}
.y8a_c01180{bottom:72.320000pt;}
.y87_c01180{bottom:72.960000pt;}
.y85_c01180{bottom:73.600000pt;}
.y82_c01180{bottom:107.520000pt;}
.y80_c01180{bottom:108.160000pt;}
.y84_c01180{bottom:108.800000pt;}
.y83_c01180{bottom:110.080000pt;}
.y81_c01180{bottom:110.720000pt;}
.y7f_c01180{bottom:111.360000pt;}
.y7e_c01180{bottom:140.160000pt;}
.y79_c01180{bottom:145.920000pt;}
.y7c_c01180{bottom:146.560000pt;}
.y7d_c01180{bottom:147.840000pt;}
.y7b_c01180{bottom:148.480000pt;}
.y7a_c01180{bottom:149.120000pt;}
.y78_c01180{bottom:149.760000pt;}
.y73_c01180{bottom:183.680000pt;}
.y75_c01180{bottom:184.320000pt;}
.y76_c01180{bottom:184.960000pt;}
.y77_c01180{bottom:185.600000pt;}
.y74_c01180{bottom:186.240000pt;}
.y72_c01180{bottom:187.520000pt;}
.y6f_c01180{bottom:216.320000pt;}
.y6c_c01180{bottom:222.720000pt;}
.y70_c01180{bottom:224.000000pt;}
.y6e_c01180{bottom:224.640000pt;}
.y6b_c01180{bottom:225.280000pt;}
.y6d_c01180{bottom:225.920000pt;}
.y71_c01180{bottom:226.560000pt;}
.y66_c01180{bottom:261.120000pt;}
.y68_c01180{bottom:261.760000pt;}
.y69_c01180{bottom:262.400000pt;}
.y67_c01180{bottom:263.040000pt;}
.y65_c01180{bottom:263.680000pt;}
.y6a_c01180{bottom:265.600000pt;}
.y61_c01180{bottom:299.520000pt;}
.y60_c01180{bottom:300.800000pt;}
.y62_c01180{bottom:301.440000pt;}
.y63_c01180{bottom:303.360000pt;}
.y64_c01180{bottom:304.000000pt;}
.y5b_c01180{bottom:336.640000pt;}
.y5a_c01180{bottom:337.920000pt;}
.y5c_c01180{bottom:339.840000pt;}
.y5d_c01180{bottom:341.120000pt;}
.y5e_c01180{bottom:341.760000pt;}
.y5f_c01180{bottom:342.400000pt;}
.y56_c01180{bottom:375.680000pt;}
.y54_c01180{bottom:376.960000pt;}
.y55_c01180{bottom:378.240000pt;}
.y57_c01180{bottom:378.880000pt;}
.y58_c01180{bottom:379.520000pt;}
.y59_c01180{bottom:380.800000pt;}
.y51_c01180{bottom:413.440000pt;}
.y50_c01180{bottom:415.360000pt;}
.y52_c01180{bottom:416.000000pt;}
.y53_c01180{bottom:417.280000pt;}
.y4a_c01180{bottom:451.200000pt;}
.y48_c01180{bottom:452.480000pt;}
.y49_c01180{bottom:453.760000pt;}
.y4b_c01180{bottom:454.400000pt;}
.y4d_c01180{bottom:455.040000pt;}
.y4c_c01180{bottom:455.680000pt;}
.y4e_c01180{bottom:457.600000pt;}
.y4f_c01180{bottom:458.240000pt;}
.y46_c01180{bottom:488.960000pt;}
.y44_c01180{bottom:490.880000pt;}
.y45_c01180{bottom:492.160000pt;}
.y47_c01180{bottom:493.440000pt;}
.y3e_c01180{bottom:528.000000pt;}
.y3c_c01180{bottom:528.640000pt;}
.y3d_c01180{bottom:529.920000pt;}
.y3f_c01180{bottom:530.560000pt;}
.y40_c01180{bottom:531.200000pt;}
.y41_c01180{bottom:531.840000pt;}
.y42_c01180{bottom:532.480000pt;}
.y43_c01180{bottom:534.400000pt;}
.y35_c01180{bottom:565.760000pt;}
.y38_c01180{bottom:567.040000pt;}
.y36_c01180{bottom:567.680000pt;}
.y37_c01180{bottom:568.960000pt;}
.y39_c01180{bottom:569.600000pt;}
.y3a_c01180{bottom:572.160000pt;}
.y3b_c01180{bottom:572.800000pt;}
.y31_c01180{bottom:602.880000pt;}
.y30_c01180{bottom:604.160000pt;}
.y32_c01180{bottom:608.000000pt;}
.y34_c01180{bottom:608.640000pt;}
.y33_c01180{bottom:609.920000pt;}
.y2b_c01180{bottom:641.280000pt;}
.y2a_c01180{bottom:641.920000pt;}
.y2c_c01180{bottom:645.760000pt;}
.y2d_c01180{bottom:646.400000pt;}
.y2e_c01180{bottom:647.040000pt;}
.y2f_c01180{bottom:647.680000pt;}
.y24_c01180{bottom:679.680000pt;}
.y25_c01180{bottom:680.320000pt;}
.y26_c01180{bottom:684.160000pt;}
.y27_c01180{bottom:684.800000pt;}
.y28_c01180{bottom:686.080000pt;}
.y29_c01180{bottom:686.720000pt;}
.y1f_c01180{bottom:716.800000pt;}
.y20_c01180{bottom:718.080000pt;}
.y21_c01180{bottom:722.560000pt;}
.y22_c01180{bottom:723.840000pt;}
.y23_c01180{bottom:725.120000pt;}
.y1a_c01180{bottom:756.480000pt;}
.y1b_c01180{bottom:761.600000pt;}
.y1c_c01180{bottom:762.240000pt;}
.y1d_c01180{bottom:763.520000pt;}
.y1e_c01180{bottom:764.800000pt;}
.y16_c01180{bottom:789.760000pt;}
.y15_c01180{bottom:794.240000pt;}
.y17_c01180{bottom:801.920000pt;}
.y19_c01180{bottom:803.200000pt;}
.y18_c01180{bottom:803.840000pt;}
.yf_c01180{bottom:832.000000pt;}
.y10_c01180{bottom:832.640000pt;}
.y11_c01180{bottom:838.400000pt;}
.y12_c01180{bottom:839.040000pt;}
.y13_c01180{bottom:839.680000pt;}
.y14_c01180{bottom:842.880000pt;}
.y8_c01180{bottom:869.760000pt;}
.ya_c01180{bottom:871.040000pt;}
.y9_c01180{bottom:872.960000pt;}
.yb_c01180{bottom:876.800000pt;}
.yc_c01180{bottom:878.080000pt;}
.ye_c01180{bottom:880.640000pt;}
.yd_c01180{bottom:881.280000pt;}
.y2_c01180{bottom:907.520000pt;}
.y3_c01180{bottom:910.080000pt;}
.y4_c01180{bottom:914.560000pt;}
.y5_c01180{bottom:915.840000pt;}
.y6_c01180{bottom:917.120000pt;}
.y7_c01180{bottom:919.040000pt;}
.y1_c01180{bottom:969.600000pt;}
.h12_c01180{height:27.645000pt;}
.h11_c01180{height:29.948750pt;}
.h14_c01180{height:32.252500pt;}
.h10_c01180{height:34.556250pt;}
.hb_c01180{height:36.860000pt;}
.h7_c01180{height:39.163750pt;}
.ha_c01180{height:41.467500pt;}
.h6_c01180{height:43.771250pt;}
.hd_c01180{height:46.075000pt;}
.h5_c01180{height:48.378750pt;}
.hf_c01180{height:48.635000pt;}
.h8_c01180{height:50.682500pt;}
.h3_c01180{height:51.707500pt;}
.h4_c01180{height:52.986250pt;}
.h2_c01180{height:55.290000pt;}
.h9_c01180{height:57.593750pt;}
.he_c01180{height:59.897500pt;}
.h13_c01180{height:76.023750pt;}
.hc_c01180{height:82.935000pt;}
.h0_c01180{height:1013.760000pt;}
.h1_c01180{height:1014.000000pt;}
.w0_c01180{width:693.120000pt;}
.w1_c01180{width:693.333333pt;}
.x0_c01180{left:0.000000pt;}
.x2_c01180{left:51.840000pt;}
.x12_c01180{left:53.120000pt;}
.x19_c01180{left:55.040000pt;}
.x29_c01180{left:56.320000pt;}
.x31_c01180{left:57.600000pt;}
.x3d_c01180{left:58.880000pt;}
.x9_c01180{left:124.800000pt;}
.x14_c01180{left:126.080000pt;}
.x21_c01180{left:127.360000pt;}
.x22_c01180{left:128.640000pt;}
.x38_c01180{left:129.920000pt;}
.x41_c01180{left:131.200000pt;}
.x3_c01180{left:190.080000pt;}
.xa_c01180{left:191.360000pt;}
.x1a_c01180{left:193.920000pt;}
.x26_c01180{left:195.200000pt;}
.xe_c01180{left:201.600000pt;}
.x23_c01180{left:203.520000pt;}
.x24_c01180{left:241.920000pt;}
.x32_c01180{left:254.080000pt;}
.x3e_c01180{left:255.360000pt;}
.x39_c01180{left:293.120000pt;}
.x47_c01180{left:304.640000pt;}
.x33_c01180{left:330.240000pt;}
.x3f_c01180{left:331.520000pt;}
.x48_c01180{left:341.760000pt;}
.x1b_c01180{left:346.240000pt;}
.x34_c01180{left:368.640000pt;}
.x45_c01180{left:370.560000pt;}
.x1c_c01180{left:395.520000pt;}
.x3a_c01180{left:408.320000pt;}
.x35_c01180{left:417.920000pt;}
.x4b_c01180{left:419.200000pt;}
.x49_c01180{left:429.440000pt;}
.x4_c01180{left:470.400000pt;}
.xf_c01180{left:471.680000pt;}
.x1d_c01180{left:473.600000pt;}
.x2a_c01180{left:474.880000pt;}
.x36_c01180{left:476.160000pt;}
.x42_c01180{left:477.440000pt;}
.xb_c01180{left:519.680000pt;}
.x25_c01180{left:522.240000pt;}
.x2b_c01180{left:523.520000pt;}
.x3b_c01180{left:524.800000pt;}
.x18_c01180{left:531.200000pt;}
.xc_c01180{left:538.240000pt;}
.x5_c01180{left:548.480000pt;}
.x10_c01180{left:549.760000pt;}
.x15_c01180{left:551.040000pt;}
.x2d_c01180{left:553.600000pt;}
.x40_c01180{left:554.880000pt;}
.x43_c01180{left:556.160000pt;}
.x6_c01180{left:577.920000pt;}
.xd_c01180{left:579.200000pt;}
.x1e_c01180{left:581.120000pt;}
.x2e_c01180{left:583.040000pt;}
.x44_c01180{left:585.600000pt;}
.x16_c01180{left:589.440000pt;}
.x1_c01180{left:606.720000pt;}
.x1f_c01180{left:609.920000pt;}
.x27_c01180{left:611.200000pt;}
.x2f_c01180{left:612.480000pt;}
.x7_c01180{left:616.320000pt;}
.x13_c01180{left:618.240000pt;}
.x2c_c01180{left:621.440000pt;}
.x37_c01180{left:622.720000pt;}
.x46_c01180{left:624.000000pt;}
.x17_c01180{left:627.840000pt;}
.x8_c01180{left:634.240000pt;}
.x11_c01180{left:635.520000pt;}
.x20_c01180{left:637.440000pt;}
.x28_c01180{left:638.720000pt;}
.x30_c01180{left:640.000000pt;}
.x3c_c01180{left:641.280000pt;}
.x4a_c01180{left:642.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_237ddb7ef77b32b4c8f4ef10.woff2')format("woff");}.ff1_c01181{font-family:ff1_c01181;line-height:1.109863;font-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_c01181{transform:matrix(0.222525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222525,0.000000,0.000000,0.250000,0,0);}
.m2a_c01181{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m14_c01181{transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);}
.m4a_c01181{transform:matrix(0.240050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240050,0.000000,0.000000,0.250000,0,0);}
.m30_c01181{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m49_c01181{transform:matrix(0.249650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249650,0.000000,0.000000,0.250000,0,0);}
.m1b_c01181{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);}
.m2f_c01181{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);}
.m20_c01181{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m24_c01181{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m15_c01181{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01181{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m8_c01181{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_c01181{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m18_c01181{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m46_c01181{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m36_c01181{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.ma_c01181{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m6_c01181{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m45_c01181{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m10_c01181{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.me_c01181{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1_c01181{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01181{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.md_c01181{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m23_c01181{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m26_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);}
.m7_c01181{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01181{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);}
.m42_c01181{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01181{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m22_c01181{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.mf_c01181{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);}
.m43_c01181{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m9_c01181{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);}
.m3b_c01181{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);}
.m38_c01181{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m12_c01181{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m17_c01181{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.mb_c01181{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);}
.m1e_c01181{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);}
.m41_c01181{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m28_c01181{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);}
.m35_c01181{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m34_c01181{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);}
.m0_c01181{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m32_c01181{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);}
.m39_c01181{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01181{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01181{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m44_c01181{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);}
.m3e_c01181{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m11_c01181{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01181{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);}
.m2_c01181{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m40_c01181{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01181{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m27_c01181{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);}
.m37_c01181{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m29_c01181{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m47_c01181{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);}
.m2e_c01181{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01181{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);}
.m19_c01181{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m4_c01181{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m13_c01181{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01181{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);}
.m33_c01181{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m3_c01181{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01181{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m25_c01181{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.m31_c01181{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m21_c01181{transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);}
.m48_c01181{transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);}
.m16_c01181{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.v3_c01181{vertical-align:-11.520000px;}
.v2_c01181{vertical-align:-2.880000px;}
.v0_c01181{vertical-align:0.000000px;}
.v1_c01181{vertical-align:2.880000px;}
.ls0_c01181{letter-spacing:0.000000px;}
.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;}
}
.ws2_c01181{word-spacing:-0.163200px;}
.ws4_c01181{word-spacing:0.000000px;}
.ws0_c01181{word-spacing:18.060000px;}
.ws1_c01181{word-spacing:56.302502px;}
.ws3_c01181{word-spacing:181.749600px;}
.fc0_c01181{color:transparent;}
.fs3_c01181{font-size:34.560000px;}
.fsb_c01181{font-size:37.440000px;}
.fs2_c01181{font-size:46.080000px;}
.fs9_c01181{font-size:48.960000px;}
.fs4_c01181{font-size:51.840000px;}
.fs1_c01181{font-size:54.720000px;}
.fs5_c01181{font-size:57.600000px;}
.fs7_c01181{font-size:60.480000px;}
.fsc_c01181{font-size:63.360000px;}
.fs6_c01181{font-size:69.120000px;}
.fs0_c01181{font-size:72.000000px;}
.fs8_c01181{font-size:74.880000px;}
.fsa_c01181{font-size:97.920000px;}
.y0_c01181{bottom:0.000000px;}
.y8f_c01181{bottom:64.080000px;}
.y8c_c01181{bottom:65.520000px;}
.y8d_c01181{bottom:66.960000px;}
.y8e_c01181{bottom:67.680000px;}
.y88_c01181{bottom:69.120000px;}
.y8b_c01181{bottom:69.840000px;}
.y8a_c01181{bottom:70.560000px;}
.y89_c01181{bottom:71.280000px;}
.y87_c01181{bottom:74.160000px;}
.y84_c01181{bottom:108.000000px;}
.y85_c01181{bottom:108.720000px;}
.y86_c01181{bottom:109.440000px;}
.y82_c01181{bottom:110.880000px;}
.y83_c01181{bottom:111.600000px;}
.y81_c01181{bottom:112.320000px;}
.y80_c01181{bottom:116.640000px;}
.y7f_c01181{bottom:153.360000px;}
.y7e_c01181{bottom:157.680000px;}
.y7d_c01181{bottom:159.840000px;}
.y7c_c01181{bottom:182.880000px;}
.y7a_c01181{bottom:183.600000px;}
.y79_c01181{bottom:184.320000px;}
.y7b_c01181{bottom:185.040000px;}
.y76_c01181{bottom:186.480000px;}
.y78_c01181{bottom:187.920000px;}
.y77_c01181{bottom:189.360000px;}
.y75_c01181{bottom:191.520000px;}
.y73_c01181{bottom:226.800000px;}
.y72_c01181{bottom:228.240000px;}
.y74_c01181{bottom:229.680000px;}
.y71_c01181{bottom:233.280000px;}
.y6e_c01181{bottom:270.000000px;}
.y6d_c01181{bottom:270.720000px;}
.y70_c01181{bottom:271.440000px;}
.y6f_c01181{bottom:272.880000px;}
.y6c_c01181{bottom:275.040000px;}
.y69_c01181{bottom:311.040000px;}
.y6b_c01181{bottom:312.480000px;}
.y67_c01181{bottom:313.200000px;}
.y66_c01181{bottom:313.920000px;}
.y6a_c01181{bottom:315.360000px;}
.y68_c01181{bottom:316.080000px;}
.y65_c01181{bottom:317.520000px;}
.y62_c01181{bottom:355.680000px;}
.y61_c01181{bottom:356.400000px;}
.y64_c01181{bottom:357.120000px;}
.y63_c01181{bottom:358.560000px;}
.y60_c01181{bottom:360.720000px;}
.y5e_c01181{bottom:398.160000px;}
.y5a_c01181{bottom:398.880000px;}
.y5c_c01181{bottom:399.600000px;}
.y5d_c01181{bottom:401.040000px;}
.y5f_c01181{bottom:401.760000px;}
.y5b_c01181{bottom:402.480000px;}
.y59_c01181{bottom:403.200000px;}
.y56_c01181{bottom:441.360000px;}
.y55_c01181{bottom:442.080000px;}
.y58_c01181{bottom:442.800000px;}
.y57_c01181{bottom:444.240000px;}
.y54_c01181{bottom:445.680000px;}
.y50_c01181{bottom:484.560000px;}
.y52_c01181{bottom:485.280000px;}
.y53_c01181{bottom:486.000000px;}
.y4f_c01181{bottom:488.160000px;}
.y51_c01181{bottom:488.880000px;}
.y4b_c01181{bottom:527.760000px;}
.y4c_c01181{bottom:529.200000px;}
.y4e_c01181{bottom:530.640000px;}
.y4d_c01181{bottom:531.360000px;}
.y4a_c01181{bottom:532.080000px;}
.y49_c01181{bottom:570.960000px;}
.y46_c01181{bottom:572.400000px;}
.y48_c01181{bottom:574.560000px;}
.y47_c01181{bottom:575.280000px;}
.y41_c01181{bottom:603.360000px;}
.y43_c01181{bottom:604.080000px;}
.y42_c01181{bottom:604.800000px;}
.y44_c01181{bottom:606.240000px;}
.y40_c01181{bottom:606.960000px;}
.y45_c01181{bottom:607.680000px;}
.y3a_c01181{bottom:645.840000px;}
.y3d_c01181{bottom:646.560000px;}
.y3c_c01181{bottom:648.000000px;}
.y3e_c01181{bottom:648.720000px;}
.y39_c01181{bottom:649.440000px;}
.y3b_c01181{bottom:650.160000px;}
.y3f_c01181{bottom:650.880000px;}
.y37_c01181{bottom:690.480000px;}
.y36_c01181{bottom:692.640000px;}
.y38_c01181{bottom:693.360000px;}
.y31_c01181{bottom:720.720000px;}
.y30_c01181{bottom:722.880000px;}
.y34_c01181{bottom:723.600000px;}
.y32_c01181{bottom:725.040000px;}
.y33_c01181{bottom:725.760000px;}
.y35_c01181{bottom:726.480000px;}
.y2f_c01181{bottom:758.160000px;}
.y2a_c01181{bottom:763.920000px;}
.y29_c01181{bottom:766.080000px;}
.y2e_c01181{bottom:766.800000px;}
.y2b_c01181{bottom:767.520000px;}
.y2c_c01181{bottom:768.240000px;}
.y2d_c01181{bottom:768.960000px;}
.y24_c01181{bottom:807.120000px;}
.y23_c01181{bottom:807.840000px;}
.y26_c01181{bottom:808.560000px;}
.y28_c01181{bottom:809.280000px;}
.y25_c01181{bottom:811.440000px;}
.y27_c01181{bottom:812.160000px;}
.y1e_c01181{bottom:848.880000px;}
.y1d_c01181{bottom:851.040000px;}
.y20_c01181{bottom:853.200000px;}
.y1f_c01181{bottom:853.920000px;}
.y22_c01181{bottom:854.640000px;}
.y21_c01181{bottom:855.360000px;}
.y17_c01181{bottom:892.800000px;}
.y16_c01181{bottom:893.520000px;}
.y19_c01181{bottom:894.240000px;}
.y1b_c01181{bottom:895.680000px;}
.y18_c01181{bottom:896.400000px;}
.y1a_c01181{bottom:897.840000px;}
.y1c_c01181{bottom:899.280000px;}
.y13_c01181{bottom:930.240000px;}
.yf_c01181{bottom:935.280000px;}
.ye_c01181{bottom:936.000000px;}
.y10_c01181{bottom:937.440000px;}
.y14_c01181{bottom:938.880000px;}
.y11_c01181{bottom:939.600000px;}
.y12_c01181{bottom:940.320000px;}
.y15_c01181{bottom:941.760000px;}
.y9_c01181{bottom:977.760000px;}
.yb_c01181{bottom:979.200000px;}
.ya_c01181{bottom:982.080000px;}
.yd_c01181{bottom:982.800000px;}
.yc_c01181{bottom:983.520000px;}
.y3_c01181{bottom:1021.680000px;}
.y2_c01181{bottom:1023.120000px;}
.y4_c01181{bottom:1023.840000px;}
.y7_c01181{bottom:1025.280000px;}
.y6_c01181{bottom:1026.000000px;}
.y5_c01181{bottom:1026.720000px;}
.y8_c01181{bottom:1028.160000px;}
.y1_c01181{bottom:1082.880000px;}
.h5_c01181{height:31.100625px;}
.hd_c01181{height:33.692344px;}
.h4_c01181{height:41.467500px;}
.hb_c01181{height:44.059219px;}
.h6_c01181{height:46.650937px;}
.h3_c01181{height:49.242656px;}
.h7_c01181{height:51.834375px;}
.h9_c01181{height:54.426094px;}
.he_c01181{height:54.714375px;}
.hf_c01181{height:57.017812px;}
.h8_c01181{height:62.201250px;}
.h2_c01181{height:64.792969px;}
.ha_c01181{height:67.384687px;}
.hc_c01181{height:88.118437px;}
.h0_c01181{height:1141.920000px;}
.h1_c01181{height:1142.250000px;}
.w0_c01181{width:781.920000px;}
.w1_c01181{width:782.250000px;}
.x0_c01181{left:0.000000px;}
.x2_c01181{left:59.039160px;}
.x26_c01181{left:60.480000px;}
.x3_c01181{left:141.120000px;}
.x24_c01181{left:162.000000px;}
.x1c_c01181{left:183.600000px;}
.x1e_c01181{left:195.120000px;}
.x25_c01181{left:216.000000px;}
.x23_c01181{left:226.080000px;}
.x27_c01181{left:227.520000px;}
.x1f_c01181{left:236.880000px;}
.x28_c01181{left:270.000000px;}
.x4_c01181{left:280.800000px;}
.x20_c01181{left:291.600000px;}
.x22_c01181{left:302.400000px;}
.x5_c01181{left:313.200000px;}
.x18_c01181{left:322.560000px;}
.x13_c01181{left:324.000000px;}
.xe_c01181{left:332.640000px;}
.x6_c01181{left:334.800000px;}
.x29_c01181{left:354.960000px;}
.xc_c01181{left:367.200000px;}
.x7_c01181{left:377.280000px;}
.x14_c01181{left:399.600000px;}
.x15_c01181{left:410.400000px;}
.x1b_c01181{left:419.760000px;}
.xf_c01181{left:421.200000px;}
.x21_c01181{left:432.000000px;}
.x16_c01181{left:442.800000px;}
.x1a_c01181{left:453.600000px;}
.x19_c01181{left:464.400000px;}
.x8_c01181{left:475.200000px;}
.x9_c01181{left:529.920000px;}
.xa_c01181{left:563.760000px;}
.x17_c01181{left:584.640000px;}
.x1d_c01181{left:616.320000px;}
.x10_c01181{left:617.760000px;}
.x11_c01181{left:650.880000px;}
.x1_c01181{left:665.280000px;}
.xd_c01181{left:684.000000px;}
.xb_c01181{left:694.080000px;}
.x12_c01181{left:714.960000px;}
@media print{
.v3_c01181{vertical-align:-10.240000pt;}
.v2_c01181{vertical-align:-2.560000pt;}
.v0_c01181{vertical-align:0.000000pt;}
.v1_c01181{vertical-align:2.560000pt;}
.ls0_c01181{letter-spacing:0.000000pt;}
.ws2_c01181{word-spacing:-0.145067pt;}
.ws4_c01181{word-spacing:0.000000pt;}
.ws0_c01181{word-spacing:16.053333pt;}
.ws1_c01181{word-spacing:50.046669pt;}
.ws3_c01181{word-spacing:161.555200pt;}
.fs3_c01181{font-size:30.720000pt;}
.fsb_c01181{font-size:33.280000pt;}
.fs2_c01181{font-size:40.960000pt;}
.fs9_c01181{font-size:43.520000pt;}
.fs4_c01181{font-size:46.080000pt;}
.fs1_c01181{font-size:48.640000pt;}
.fs5_c01181{font-size:51.200000pt;}
.fs7_c01181{font-size:53.760000pt;}
.fsc_c01181{font-size:56.320000pt;}
.fs6_c01181{font-size:61.440000pt;}
.fs0_c01181{font-size:64.000000pt;}
.fs8_c01181{font-size:66.560000pt;}
.fsa_c01181{font-size:87.040000pt;}
.y0_c01181{bottom:0.000000pt;}
.y8f_c01181{bottom:56.960000pt;}
.y8c_c01181{bottom:58.240000pt;}
.y8d_c01181{bottom:59.520000pt;}
.y8e_c01181{bottom:60.160000pt;}
.y88_c01181{bottom:61.440000pt;}
.y8b_c01181{bottom:62.080000pt;}
.y8a_c01181{bottom:62.720000pt;}
.y89_c01181{bottom:63.360000pt;}
.y87_c01181{bottom:65.920000pt;}
.y84_c01181{bottom:96.000000pt;}
.y85_c01181{bottom:96.640000pt;}
.y86_c01181{bottom:97.280000pt;}
.y82_c01181{bottom:98.560000pt;}
.y83_c01181{bottom:99.200000pt;}
.y81_c01181{bottom:99.840000pt;}
.y80_c01181{bottom:103.680000pt;}
.y7f_c01181{bottom:136.320000pt;}
.y7e_c01181{bottom:140.160000pt;}
.y7d_c01181{bottom:142.080000pt;}
.y7c_c01181{bottom:162.560000pt;}
.y7a_c01181{bottom:163.200000pt;}
.y79_c01181{bottom:163.840000pt;}
.y7b_c01181{bottom:164.480000pt;}
.y76_c01181{bottom:165.760000pt;}
.y78_c01181{bottom:167.040000pt;}
.y77_c01181{bottom:168.320000pt;}
.y75_c01181{bottom:170.240000pt;}
.y73_c01181{bottom:201.600000pt;}
.y72_c01181{bottom:202.880000pt;}
.y74_c01181{bottom:204.160000pt;}
.y71_c01181{bottom:207.360000pt;}
.y6e_c01181{bottom:240.000000pt;}
.y6d_c01181{bottom:240.640000pt;}
.y70_c01181{bottom:241.280000pt;}
.y6f_c01181{bottom:242.560000pt;}
.y6c_c01181{bottom:244.480000pt;}
.y69_c01181{bottom:276.480000pt;}
.y6b_c01181{bottom:277.760000pt;}
.y67_c01181{bottom:278.400000pt;}
.y66_c01181{bottom:279.040000pt;}
.y6a_c01181{bottom:280.320000pt;}
.y68_c01181{bottom:280.960000pt;}
.y65_c01181{bottom:282.240000pt;}
.y62_c01181{bottom:316.160000pt;}
.y61_c01181{bottom:316.800000pt;}
.y64_c01181{bottom:317.440000pt;}
.y63_c01181{bottom:318.720000pt;}
.y60_c01181{bottom:320.640000pt;}
.y5e_c01181{bottom:353.920000pt;}
.y5a_c01181{bottom:354.560000pt;}
.y5c_c01181{bottom:355.200000pt;}
.y5d_c01181{bottom:356.480000pt;}
.y5f_c01181{bottom:357.120000pt;}
.y5b_c01181{bottom:357.760000pt;}
.y59_c01181{bottom:358.400000pt;}
.y56_c01181{bottom:392.320000pt;}
.y55_c01181{bottom:392.960000pt;}
.y58_c01181{bottom:393.600000pt;}
.y57_c01181{bottom:394.880000pt;}
.y54_c01181{bottom:396.160000pt;}
.y50_c01181{bottom:430.720000pt;}
.y52_c01181{bottom:431.360000pt;}
.y53_c01181{bottom:432.000000pt;}
.y4f_c01181{bottom:433.920000pt;}
.y51_c01181{bottom:434.560000pt;}
.y4b_c01181{bottom:469.120000pt;}
.y4c_c01181{bottom:470.400000pt;}
.y4e_c01181{bottom:471.680000pt;}
.y4d_c01181{bottom:472.320000pt;}
.y4a_c01181{bottom:472.960000pt;}
.y49_c01181{bottom:507.520000pt;}
.y46_c01181{bottom:508.800000pt;}
.y48_c01181{bottom:510.720000pt;}
.y47_c01181{bottom:511.360000pt;}
.y41_c01181{bottom:536.320000pt;}
.y43_c01181{bottom:536.960000pt;}
.y42_c01181{bottom:537.600000pt;}
.y44_c01181{bottom:538.880000pt;}
.y40_c01181{bottom:539.520000pt;}
.y45_c01181{bottom:540.160000pt;}
.y3a_c01181{bottom:574.080000pt;}
.y3d_c01181{bottom:574.720000pt;}
.y3c_c01181{bottom:576.000000pt;}
.y3e_c01181{bottom:576.640000pt;}
.y39_c01181{bottom:577.280000pt;}
.y3b_c01181{bottom:577.920000pt;}
.y3f_c01181{bottom:578.560000pt;}
.y37_c01181{bottom:613.760000pt;}
.y36_c01181{bottom:615.680000pt;}
.y38_c01181{bottom:616.320000pt;}
.y31_c01181{bottom:640.640000pt;}
.y30_c01181{bottom:642.560000pt;}
.y34_c01181{bottom:643.200000pt;}
.y32_c01181{bottom:644.480000pt;}
.y33_c01181{bottom:645.120000pt;}
.y35_c01181{bottom:645.760000pt;}
.y2f_c01181{bottom:673.920000pt;}
.y2a_c01181{bottom:679.040000pt;}
.y29_c01181{bottom:680.960000pt;}
.y2e_c01181{bottom:681.600000pt;}
.y2b_c01181{bottom:682.240000pt;}
.y2c_c01181{bottom:682.880000pt;}
.y2d_c01181{bottom:683.520000pt;}
.y24_c01181{bottom:717.440000pt;}
.y23_c01181{bottom:718.080000pt;}
.y26_c01181{bottom:718.720000pt;}
.y28_c01181{bottom:719.360000pt;}
.y25_c01181{bottom:721.280000pt;}
.y27_c01181{bottom:721.920000pt;}
.y1e_c01181{bottom:754.560000pt;}
.y1d_c01181{bottom:756.480000pt;}
.y20_c01181{bottom:758.400000pt;}
.y1f_c01181{bottom:759.040000pt;}
.y22_c01181{bottom:759.680000pt;}
.y21_c01181{bottom:760.320000pt;}
.y17_c01181{bottom:793.600000pt;}
.y16_c01181{bottom:794.240000pt;}
.y19_c01181{bottom:794.880000pt;}
.y1b_c01181{bottom:796.160000pt;}
.y18_c01181{bottom:796.800000pt;}
.y1a_c01181{bottom:798.080000pt;}
.y1c_c01181{bottom:799.360000pt;}
.y13_c01181{bottom:826.880000pt;}
.yf_c01181{bottom:831.360000pt;}
.ye_c01181{bottom:832.000000pt;}
.y10_c01181{bottom:833.280000pt;}
.y14_c01181{bottom:834.560000pt;}
.y11_c01181{bottom:835.200000pt;}
.y12_c01181{bottom:835.840000pt;}
.y15_c01181{bottom:837.120000pt;}
.y9_c01181{bottom:869.120000pt;}
.yb_c01181{bottom:870.400000pt;}
.ya_c01181{bottom:872.960000pt;}
.yd_c01181{bottom:873.600000pt;}
.yc_c01181{bottom:874.240000pt;}
.y3_c01181{bottom:908.160000pt;}
.y2_c01181{bottom:909.440000pt;}
.y4_c01181{bottom:910.080000pt;}
.y7_c01181{bottom:911.360000pt;}
.y6_c01181{bottom:912.000000pt;}
.y5_c01181{bottom:912.640000pt;}
.y8_c01181{bottom:913.920000pt;}
.y1_c01181{bottom:962.560000pt;}
.h5_c01181{height:27.645000pt;}
.hd_c01181{height:29.948750pt;}
.h4_c01181{height:36.860000pt;}
.hb_c01181{height:39.163750pt;}
.h6_c01181{height:41.467500pt;}
.h3_c01181{height:43.771250pt;}
.h7_c01181{height:46.075000pt;}
.h9_c01181{height:48.378750pt;}
.he_c01181{height:48.635000pt;}
.hf_c01181{height:50.682500pt;}
.h8_c01181{height:55.290000pt;}
.h2_c01181{height:57.593750pt;}
.ha_c01181{height:59.897500pt;}
.hc_c01181{height:78.327500pt;}
.h0_c01181{height:1015.040000pt;}
.h1_c01181{height:1015.333333pt;}
.w0_c01181{width:695.040000pt;}
.w1_c01181{width:695.333333pt;}
.x0_c01181{left:0.000000pt;}
.x2_c01181{left:52.479253pt;}
.x26_c01181{left:53.760000pt;}
.x3_c01181{left:125.440000pt;}
.x24_c01181{left:144.000000pt;}
.x1c_c01181{left:163.200000pt;}
.x1e_c01181{left:173.440000pt;}
.x25_c01181{left:192.000000pt;}
.x23_c01181{left:200.960000pt;}
.x27_c01181{left:202.240000pt;}
.x1f_c01181{left:210.560000pt;}
.x28_c01181{left:240.000000pt;}
.x4_c01181{left:249.600000pt;}
.x20_c01181{left:259.200000pt;}
.x22_c01181{left:268.800000pt;}
.x5_c01181{left:278.400000pt;}
.x18_c01181{left:286.720000pt;}
.x13_c01181{left:288.000000pt;}
.xe_c01181{left:295.680000pt;}
.x6_c01181{left:297.600000pt;}
.x29_c01181{left:315.520000pt;}
.xc_c01181{left:326.400000pt;}
.x7_c01181{left:335.360000pt;}
.x14_c01181{left:355.200000pt;}
.x15_c01181{left:364.800000pt;}
.x1b_c01181{left:373.120000pt;}
.xf_c01181{left:374.400000pt;}
.x21_c01181{left:384.000000pt;}
.x16_c01181{left:393.600000pt;}
.x1a_c01181{left:403.200000pt;}
.x19_c01181{left:412.800000pt;}
.x8_c01181{left:422.400000pt;}
.x9_c01181{left:471.040000pt;}
.xa_c01181{left:501.120000pt;}
.x17_c01181{left:519.680000pt;}
.x1d_c01181{left:547.840000pt;}
.x10_c01181{left:549.120000pt;}
.x11_c01181{left:578.560000pt;}
.x1_c01181{left:591.360000pt;}
.xd_c01181{left:608.000000pt;}
.xb_c01181{left:616.960000pt;}
.x12_c01181{left:635.520000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ad00d4a8d92ec64316d049d9.woff2')format("woff");}.ff1_c01182{font-family:ff1_c01182;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4c_c01182{transform:matrix(0.198325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198325,0.000000,0.000000,0.250000,0,0);}
.m19_c01182{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.me_c01182{transform:matrix(0.240275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240275,0.000000,0.000000,0.250000,0,0);}
.m2f_c01182{transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);}
.m23_c01182{transform:matrix(0.243525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243525,0.000000,0.000000,0.250000,0,0);}
.m3a_c01182{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m4d_c01182{transform:matrix(0.247650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247650,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);}
.m35_c01182{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01182{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m49_c01182{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m15_c01182{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m2_c01182{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m18_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);}
.m1b_c01182{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m27_c01182{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_c01182{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m28_c01182{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01182{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m11_c01182{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m9_c01182{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01182{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m47_c01182{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01182{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m10_c01182{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m48_c01182{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01182{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01182{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m32_c01182{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mb_c01182{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m8_c01182{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m4a_c01182{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01182{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m24_c01182{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m46_c01182{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);}
.m22_c01182{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.md_c01182{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m12_c01182{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m14_c01182{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m7_c01182{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m4_c01182{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m20_c01182{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_c01182{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01182{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m1_c01182{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);}
.m39_c01182{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m34_c01182{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01182{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);}
.m44_c01182{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);}
.m4f_c01182{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);}
.m0_c01182{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.mc_c01182{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);}
.m17_c01182{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m41_c01182{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);}
.m1d_c01182{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01182{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);}
.m50_c01182{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m40_c01182{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);}
.m43_c01182{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01182{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01182{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01182{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);}
.m38_c01182{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m25_c01182{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.mf_c01182{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);}
.m6_c01182{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m21_c01182{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);}
.m16_c01182{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m3_c01182{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m5_c01182{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01182{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m33_c01182{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);}
.m37_c01182{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m45_c01182{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.m31_c01182{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01182{transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01182{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m13_c01182{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.m36_c01182{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m30_c01182{transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);}
.m42_c01182{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.v0_c01182{vertical-align:0.000000px;}
.v1_c01182{vertical-align:2.880000px;}
.ls0_c01182{letter-spacing:0.000000px;}
.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;}
}
.ws2_c01182{word-spacing:0.000000px;}
.ws1_c01182{word-spacing:15.811096px;}
.ws0_c01182{word-spacing:181.749600px;}
.fc0_c01182{color:transparent;}
.fs2_c01182{font-size:34.560000px;}
.fsa_c01182{font-size:37.440000px;}
.fse_c01182{font-size:40.320000px;}
.fsf_c01182{font-size:43.200000px;}
.fs4_c01182{font-size:46.080000px;}
.fs6_c01182{font-size:48.960000px;}
.fs3_c01182{font-size:51.840000px;}
.fs5_c01182{font-size:54.720000px;}
.fs1_c01182{font-size:57.600000px;}
.fs9_c01182{font-size:60.480000px;}
.fsd_c01182{font-size:63.360000px;}
.fs10_c01182{font-size:66.240000px;}
.fs8_c01182{font-size:69.120000px;}
.fs0_c01182{font-size:72.000000px;}
.fs7_c01182{font-size:74.880000px;}
.fsb_c01182{font-size:77.760000px;}
.fsc_c01182{font-size:100.800000px;}
.fs11_c01182{font-size:103.680000px;}
.y0_c01182{bottom:0.000000px;}
.y97_c01182{bottom:28.800000px;}
.y96_c01182{bottom:29.520000px;}
.y95_c01182{bottom:30.240000px;}
.y98_c01182{bottom:30.960000px;}
.y93_c01182{bottom:32.400000px;}
.y91_c01182{bottom:33.840000px;}
.y94_c01182{bottom:34.560000px;}
.y92_c01182{bottom:36.720000px;}
.y90_c01182{bottom:38.880000px;}
.y8d_c01182{bottom:64.080000px;}
.y8f_c01182{bottom:72.000000px;}
.y8c_c01182{bottom:74.160000px;}
.y8a_c01182{bottom:74.880000px;}
.y8e_c01182{bottom:75.600000px;}
.y88_c01182{bottom:76.320000px;}
.y8b_c01182{bottom:77.040000px;}
.y89_c01182{bottom:78.480000px;}
.y87_c01182{bottom:79.920000px;}
.y85_c01182{bottom:115.200000px;}
.y84_c01182{bottom:116.640000px;}
.y86_c01182{bottom:117.360000px;}
.y81_c01182{bottom:118.800000px;}
.y83_c01182{bottom:120.240000px;}
.y82_c01182{bottom:120.960000px;}
.y80_c01182{bottom:123.120000px;}
.y7e_c01182{bottom:158.400000px;}
.y7f_c01182{bottom:159.120000px;}
.y7d_c01182{bottom:159.840000px;}
.y7c_c01182{bottom:160.560000px;}
.y7a_c01182{bottom:162.000000px;}
.y7b_c01182{bottom:164.160000px;}
.y79_c01182{bottom:165.600000px;}
.y78_c01182{bottom:201.600000px;}
.y77_c01182{bottom:202.320000px;}
.y75_c01182{bottom:204.480000px;}
.y76_c01182{bottom:205.920000px;}
.y74_c01182{bottom:208.080000px;}
.y71_c01182{bottom:244.800000px;}
.y73_c01182{bottom:245.520000px;}
.y6f_c01182{bottom:246.960000px;}
.y72_c01182{bottom:247.680000px;}
.y70_c01182{bottom:249.120000px;}
.y6e_c01182{bottom:249.840000px;}
.y6c_c01182{bottom:288.000000px;}
.y6b_c01182{bottom:290.160000px;}
.y6d_c01182{bottom:291.600000px;}
.y6a_c01182{bottom:293.040000px;}
.y67_c01182{bottom:331.200000px;}
.y65_c01182{bottom:332.640000px;}
.y66_c01182{bottom:333.360000px;}
.y68_c01182{bottom:334.080000px;}
.y69_c01182{bottom:334.800000px;}
.y64_c01182{bottom:335.520000px;}
.y63_c01182{bottom:373.680000px;}
.y60_c01182{bottom:375.120000px;}
.y62_c01182{bottom:375.840000px;}
.y61_c01182{bottom:378.000000px;}
.y5f_c01182{bottom:378.720000px;}
.y5e_c01182{bottom:416.880000px;}
.y5c_c01182{bottom:418.320000px;}
.y5d_c01182{bottom:420.480000px;}
.y5b_c01182{bottom:421.200000px;}
.y59_c01182{bottom:460.080000px;}
.y57_c01182{bottom:460.800000px;}
.y56_c01182{bottom:462.960000px;}
.y5a_c01182{bottom:463.680000px;}
.y58_c01182{bottom:464.400000px;}
.y53_c01182{bottom:502.560000px;}
.y50_c01182{bottom:503.280000px;}
.y52_c01182{bottom:504.000000px;}
.y54_c01182{bottom:504.720000px;}
.y55_c01182{bottom:505.440000px;}
.y4f_c01182{bottom:506.160000px;}
.y51_c01182{bottom:506.880000px;}
.y4b_c01182{bottom:546.480000px;}
.y4d_c01182{bottom:547.200000px;}
.y4a_c01182{bottom:547.920000px;}
.y4e_c01182{bottom:549.360000px;}
.y4c_c01182{bottom:550.080000px;}
.y49_c01182{bottom:581.760000px;}
.y44_c01182{bottom:588.960000px;}
.y45_c01182{bottom:589.680000px;}
.y43_c01182{bottom:590.400000px;}
.y47_c01182{bottom:591.120000px;}
.y46_c01182{bottom:591.840000px;}
.y48_c01182{bottom:592.560000px;}
.y40_c01182{bottom:624.960000px;}
.y3d_c01182{bottom:630.720000px;}
.y3e_c01182{bottom:632.880000px;}
.y3c_c01182{bottom:633.600000px;}
.y3f_c01182{bottom:635.040000px;}
.y41_c01182{bottom:635.760000px;}
.y42_c01182{bottom:636.480000px;}
.y37_c01182{bottom:673.920000px;}
.y38_c01182{bottom:675.360000px;}
.y36_c01182{bottom:676.800000px;}
.y39_c01182{bottom:677.520000px;}
.y3a_c01182{bottom:678.240000px;}
.y3b_c01182{bottom:679.680000px;}
.y32_c01182{bottom:715.680000px;}
.y33_c01182{bottom:718.560000px;}
.y31_c01182{bottom:720.000000px;}
.y34_c01182{bottom:720.720000px;}
.y35_c01182{bottom:721.440000px;}
.y30_c01182{bottom:760.320000px;}
.y2f_c01182{bottom:761.040000px;}
.y28_c01182{bottom:791.280000px;}
.y27_c01182{bottom:793.440000px;}
.y29_c01182{bottom:794.160000px;}
.y2d_c01182{bottom:795.600000px;}
.y2a_c01182{bottom:796.320000px;}
.y2b_c01182{bottom:797.040000px;}
.y2c_c01182{bottom:797.760000px;}
.y2e_c01182{bottom:798.480000px;}
.y25_c01182{bottom:836.640000px;}
.y24_c01182{bottom:838.080000px;}
.y26_c01182{bottom:839.520000px;}
.y1e_c01182{bottom:866.880000px;}
.y1d_c01182{bottom:869.040000px;}
.y21_c01182{bottom:870.480000px;}
.y1f_c01182{bottom:871.200000px;}
.y20_c01182{bottom:872.640000px;}
.y22_c01182{bottom:873.360000px;}
.y23_c01182{bottom:874.080000px;}
.y16_c01182{bottom:910.080000px;}
.y15_c01182{bottom:910.800000px;}
.y18_c01182{bottom:912.240000px;}
.y1a_c01182{bottom:912.960000px;}
.y17_c01182{bottom:914.400000px;}
.y19_c01182{bottom:915.120000px;}
.y1b_c01182{bottom:915.840000px;}
.y1c_c01182{bottom:917.280000px;}
.ye_c01182{bottom:952.560000px;}
.yd_c01182{bottom:954.000000px;}
.y10_c01182{bottom:955.440000px;}
.yf_c01182{bottom:957.600000px;}
.y12_c01182{bottom:958.320000px;}
.y11_c01182{bottom:959.040000px;}
.y13_c01182{bottom:959.760000px;}
.y14_c01182{bottom:960.480000px;}
.ya_c01182{bottom:995.040000px;}
.yc_c01182{bottom:997.920000px;}
.yb_c01182{bottom:999.360000px;}
.y3_c01182{bottom:1028.160000px;}
.y2_c01182{bottom:1028.880000px;}
.y7_c01182{bottom:1031.040000px;}
.y4_c01182{bottom:1032.480000px;}
.y5_c01182{bottom:1033.200000px;}
.y6_c01182{bottom:1033.920000px;}
.y8_c01182{bottom:1034.640000px;}
.y9_c01182{bottom:1036.080000px;}
.y1_c01182{bottom:1099.440000px;}
.h4_c01182{height:31.100625px;}
.hd_c01182{height:33.692344px;}
.h11_c01182{height:36.284062px;}
.h12_c01182{height:38.875781px;}
.h6_c01182{height:41.467500px;}
.h8_c01182{height:44.059219px;}
.h5_c01182{height:46.650937px;}
.hb_c01182{height:49.242656px;}
.h3_c01182{height:51.834375px;}
.h7_c01182{height:52.122656px;}
.hc_c01182{height:54.426094px;}
.h10_c01182{height:57.017812px;}
.h13_c01182{height:59.609531px;}
.ha_c01182{height:62.201250px;}
.h2_c01182{height:64.792969px;}
.h9_c01182{height:67.384687px;}
.he_c01182{height:69.976406px;}
.hf_c01182{height:90.710156px;}
.h14_c01182{height:93.301875px;}
.h1_c01182{height:1147.500000px;}
.h0_c01182{height:1147.680000px;}
.w0_c01182{width:778.320000px;}
.w1_c01182{width:778.500000px;}
.x0_c01182{left:0.000000px;}
.x2_c01182{left:62.640000px;}
.x2a_c01182{left:64.080000px;}
.x3_c01182{left:144.720000px;}
.x32_c01182{left:146.160000px;}
.x27_c01182{left:157.680000px;}
.x17_c01182{left:187.920000px;}
.xc_c01182{left:220.320000px;}
.x4_c01182{left:231.120000px;}
.xe_c01182{left:240.480000px;}
.x28_c01182{left:241.920000px;}
.xd_c01182{left:261.360000px;}
.x19_c01182{left:263.520000px;}
.x5_c01182{left:272.160000px;}
.x13_c01182{left:273.600000px;}
.x22_c01182{left:284.400000px;}
.xf_c01182{left:294.480000px;}
.x1d_c01182{left:315.360000px;}
.x2e_c01182{left:316.800000px;}
.x18_c01182{left:326.880000px;}
.x2b_c01182{left:337.680000px;}
.x25_c01182{left:339.120000px;}
.x1a_c01182{left:347.760000px;}
.x2d_c01182{left:349.200000px;}
.x6_c01182{left:359.280000px;}
.x1e_c01182{left:370.800000px;}
.x23_c01182{left:381.600000px;}
.x14_c01182{left:390.960000px;}
.x1b_c01182{left:403.200000px;}
.x7_c01182{left:414.000000px;}
.x20_c01182{left:424.800000px;}
.x10_c01182{left:436.320000px;}
.x15_c01182{left:447.120000px;}
.x1c_c01182{left:457.200000px;}
.x8_c01182{left:467.280000px;}
.x1f_c01182{left:468.720000px;}
.x21_c01182{left:479.520000px;}
.x31_c01182{left:506.880000px;}
.x9_c01182{left:533.520000px;}
.x2f_c01182{left:534.960000px;}
.x2c_c01182{left:587.520000px;}
.x26_c01182{left:599.760000px;}
.x11_c01182{left:622.080000px;}
.x30_c01182{left:623.520000px;}
.xa_c01182{left:654.480000px;}
.x29_c01182{left:655.920000px;}
.x1_c01182{left:685.440000px;}
.xb_c01182{left:687.600000px;}
.x16_c01182{left:698.400000px;}
.x24_c01182{left:699.840000px;}
.x12_c01182{left:719.280000px;}
.x33_c01182{left:720.720000px;}
@media print{
.v0_c01182{vertical-align:0.000000pt;}
.v1_c01182{vertical-align:2.560000pt;}
.ls0_c01182{letter-spacing:0.000000pt;}
.ws2_c01182{word-spacing:0.000000pt;}
.ws1_c01182{word-spacing:14.054308pt;}
.ws0_c01182{word-spacing:161.555200pt;}
.fs2_c01182{font-size:30.720000pt;}
.fsa_c01182{font-size:33.280000pt;}
.fse_c01182{font-size:35.840000pt;}
.fsf_c01182{font-size:38.400000pt;}
.fs4_c01182{font-size:40.960000pt;}
.fs6_c01182{font-size:43.520000pt;}
.fs3_c01182{font-size:46.080000pt;}
.fs5_c01182{font-size:48.640000pt;}
.fs1_c01182{font-size:51.200000pt;}
.fs9_c01182{font-size:53.760000pt;}
.fsd_c01182{font-size:56.320000pt;}
.fs10_c01182{font-size:58.880000pt;}
.fs8_c01182{font-size:61.440000pt;}
.fs0_c01182{font-size:64.000000pt;}
.fs7_c01182{font-size:66.560000pt;}
.fsb_c01182{font-size:69.120000pt;}
.fsc_c01182{font-size:89.600000pt;}
.fs11_c01182{font-size:92.160000pt;}
.y0_c01182{bottom:0.000000pt;}
.y97_c01182{bottom:25.600000pt;}
.y96_c01182{bottom:26.240000pt;}
.y95_c01182{bottom:26.880000pt;}
.y98_c01182{bottom:27.520000pt;}
.y93_c01182{bottom:28.800000pt;}
.y91_c01182{bottom:30.080000pt;}
.y94_c01182{bottom:30.720000pt;}
.y92_c01182{bottom:32.640000pt;}
.y90_c01182{bottom:34.560000pt;}
.y8d_c01182{bottom:56.960000pt;}
.y8f_c01182{bottom:64.000000pt;}
.y8c_c01182{bottom:65.920000pt;}
.y8a_c01182{bottom:66.560000pt;}
.y8e_c01182{bottom:67.200000pt;}
.y88_c01182{bottom:67.840000pt;}
.y8b_c01182{bottom:68.480000pt;}
.y89_c01182{bottom:69.760000pt;}
.y87_c01182{bottom:71.040000pt;}
.y85_c01182{bottom:102.400000pt;}
.y84_c01182{bottom:103.680000pt;}
.y86_c01182{bottom:104.320000pt;}
.y81_c01182{bottom:105.600000pt;}
.y83_c01182{bottom:106.880000pt;}
.y82_c01182{bottom:107.520000pt;}
.y80_c01182{bottom:109.440000pt;}
.y7e_c01182{bottom:140.800000pt;}
.y7f_c01182{bottom:141.440000pt;}
.y7d_c01182{bottom:142.080000pt;}
.y7c_c01182{bottom:142.720000pt;}
.y7a_c01182{bottom:144.000000pt;}
.y7b_c01182{bottom:145.920000pt;}
.y79_c01182{bottom:147.200000pt;}
.y78_c01182{bottom:179.200000pt;}
.y77_c01182{bottom:179.840000pt;}
.y75_c01182{bottom:181.760000pt;}
.y76_c01182{bottom:183.040000pt;}
.y74_c01182{bottom:184.960000pt;}
.y71_c01182{bottom:217.600000pt;}
.y73_c01182{bottom:218.240000pt;}
.y6f_c01182{bottom:219.520000pt;}
.y72_c01182{bottom:220.160000pt;}
.y70_c01182{bottom:221.440000pt;}
.y6e_c01182{bottom:222.080000pt;}
.y6c_c01182{bottom:256.000000pt;}
.y6b_c01182{bottom:257.920000pt;}
.y6d_c01182{bottom:259.200000pt;}
.y6a_c01182{bottom:260.480000pt;}
.y67_c01182{bottom:294.400000pt;}
.y65_c01182{bottom:295.680000pt;}
.y66_c01182{bottom:296.320000pt;}
.y68_c01182{bottom:296.960000pt;}
.y69_c01182{bottom:297.600000pt;}
.y64_c01182{bottom:298.240000pt;}
.y63_c01182{bottom:332.160000pt;}
.y60_c01182{bottom:333.440000pt;}
.y62_c01182{bottom:334.080000pt;}
.y61_c01182{bottom:336.000000pt;}
.y5f_c01182{bottom:336.640000pt;}
.y5e_c01182{bottom:370.560000pt;}
.y5c_c01182{bottom:371.840000pt;}
.y5d_c01182{bottom:373.760000pt;}
.y5b_c01182{bottom:374.400000pt;}
.y59_c01182{bottom:408.960000pt;}
.y57_c01182{bottom:409.600000pt;}
.y56_c01182{bottom:411.520000pt;}
.y5a_c01182{bottom:412.160000pt;}
.y58_c01182{bottom:412.800000pt;}
.y53_c01182{bottom:446.720000pt;}
.y50_c01182{bottom:447.360000pt;}
.y52_c01182{bottom:448.000000pt;}
.y54_c01182{bottom:448.640000pt;}
.y55_c01182{bottom:449.280000pt;}
.y4f_c01182{bottom:449.920000pt;}
.y51_c01182{bottom:450.560000pt;}
.y4b_c01182{bottom:485.760000pt;}
.y4d_c01182{bottom:486.400000pt;}
.y4a_c01182{bottom:487.040000pt;}
.y4e_c01182{bottom:488.320000pt;}
.y4c_c01182{bottom:488.960000pt;}
.y49_c01182{bottom:517.120000pt;}
.y44_c01182{bottom:523.520000pt;}
.y45_c01182{bottom:524.160000pt;}
.y43_c01182{bottom:524.800000pt;}
.y47_c01182{bottom:525.440000pt;}
.y46_c01182{bottom:526.080000pt;}
.y48_c01182{bottom:526.720000pt;}
.y40_c01182{bottom:555.520000pt;}
.y3d_c01182{bottom:560.640000pt;}
.y3e_c01182{bottom:562.560000pt;}
.y3c_c01182{bottom:563.200000pt;}
.y3f_c01182{bottom:564.480000pt;}
.y41_c01182{bottom:565.120000pt;}
.y42_c01182{bottom:565.760000pt;}
.y37_c01182{bottom:599.040000pt;}
.y38_c01182{bottom:600.320000pt;}
.y36_c01182{bottom:601.600000pt;}
.y39_c01182{bottom:602.240000pt;}
.y3a_c01182{bottom:602.880000pt;}
.y3b_c01182{bottom:604.160000pt;}
.y32_c01182{bottom:636.160000pt;}
.y33_c01182{bottom:638.720000pt;}
.y31_c01182{bottom:640.000000pt;}
.y34_c01182{bottom:640.640000pt;}
.y35_c01182{bottom:641.280000pt;}
.y30_c01182{bottom:675.840000pt;}
.y2f_c01182{bottom:676.480000pt;}
.y28_c01182{bottom:703.360000pt;}
.y27_c01182{bottom:705.280000pt;}
.y29_c01182{bottom:705.920000pt;}
.y2d_c01182{bottom:707.200000pt;}
.y2a_c01182{bottom:707.840000pt;}
.y2b_c01182{bottom:708.480000pt;}
.y2c_c01182{bottom:709.120000pt;}
.y2e_c01182{bottom:709.760000pt;}
.y25_c01182{bottom:743.680000pt;}
.y24_c01182{bottom:744.960000pt;}
.y26_c01182{bottom:746.240000pt;}
.y1e_c01182{bottom:770.560000pt;}
.y1d_c01182{bottom:772.480000pt;}
.y21_c01182{bottom:773.760000pt;}
.y1f_c01182{bottom:774.400000pt;}
.y20_c01182{bottom:775.680000pt;}
.y22_c01182{bottom:776.320000pt;}
.y23_c01182{bottom:776.960000pt;}
.y16_c01182{bottom:808.960000pt;}
.y15_c01182{bottom:809.600000pt;}
.y18_c01182{bottom:810.880000pt;}
.y1a_c01182{bottom:811.520000pt;}
.y17_c01182{bottom:812.800000pt;}
.y19_c01182{bottom:813.440000pt;}
.y1b_c01182{bottom:814.080000pt;}
.y1c_c01182{bottom:815.360000pt;}
.ye_c01182{bottom:846.720000pt;}
.yd_c01182{bottom:848.000000pt;}
.y10_c01182{bottom:849.280000pt;}
.yf_c01182{bottom:851.200000pt;}
.y12_c01182{bottom:851.840000pt;}
.y11_c01182{bottom:852.480000pt;}
.y13_c01182{bottom:853.120000pt;}
.y14_c01182{bottom:853.760000pt;}
.ya_c01182{bottom:884.480000pt;}
.yc_c01182{bottom:887.040000pt;}
.yb_c01182{bottom:888.320000pt;}
.y3_c01182{bottom:913.920000pt;}
.y2_c01182{bottom:914.560000pt;}
.y7_c01182{bottom:916.480000pt;}
.y4_c01182{bottom:917.760000pt;}
.y5_c01182{bottom:918.400000pt;}
.y6_c01182{bottom:919.040000pt;}
.y8_c01182{bottom:919.680000pt;}
.y9_c01182{bottom:920.960000pt;}
.y1_c01182{bottom:977.280000pt;}
.h4_c01182{height:27.645000pt;}
.hd_c01182{height:29.948750pt;}
.h11_c01182{height:32.252500pt;}
.h12_c01182{height:34.556250pt;}
.h6_c01182{height:36.860000pt;}
.h8_c01182{height:39.163750pt;}
.h5_c01182{height:41.467500pt;}
.hb_c01182{height:43.771250pt;}
.h3_c01182{height:46.075000pt;}
.h7_c01182{height:46.331250pt;}
.hc_c01182{height:48.378750pt;}
.h10_c01182{height:50.682500pt;}
.h13_c01182{height:52.986250pt;}
.ha_c01182{height:55.290000pt;}
.h2_c01182{height:57.593750pt;}
.h9_c01182{height:59.897500pt;}
.he_c01182{height:62.201250pt;}
.hf_c01182{height:80.631250pt;}
.h14_c01182{height:82.935000pt;}
.h1_c01182{height:1020.000000pt;}
.h0_c01182{height:1020.160000pt;}
.w0_c01182{width:691.840000pt;}
.w1_c01182{width:692.000000pt;}
.x0_c01182{left:0.000000pt;}
.x2_c01182{left:55.680000pt;}
.x2a_c01182{left:56.960000pt;}
.x3_c01182{left:128.640000pt;}
.x32_c01182{left:129.920000pt;}
.x27_c01182{left:140.160000pt;}
.x17_c01182{left:167.040000pt;}
.xc_c01182{left:195.840000pt;}
.x4_c01182{left:205.440000pt;}
.xe_c01182{left:213.760000pt;}
.x28_c01182{left:215.040000pt;}
.xd_c01182{left:232.320000pt;}
.x19_c01182{left:234.240000pt;}
.x5_c01182{left:241.920000pt;}
.x13_c01182{left:243.200000pt;}
.x22_c01182{left:252.800000pt;}
.xf_c01182{left:261.760000pt;}
.x1d_c01182{left:280.320000pt;}
.x2e_c01182{left:281.600000pt;}
.x18_c01182{left:290.560000pt;}
.x2b_c01182{left:300.160000pt;}
.x25_c01182{left:301.440000pt;}
.x1a_c01182{left:309.120000pt;}
.x2d_c01182{left:310.400000pt;}
.x6_c01182{left:319.360000pt;}
.x1e_c01182{left:329.600000pt;}
.x23_c01182{left:339.200000pt;}
.x14_c01182{left:347.520000pt;}
.x1b_c01182{left:358.400000pt;}
.x7_c01182{left:368.000000pt;}
.x20_c01182{left:377.600000pt;}
.x10_c01182{left:387.840000pt;}
.x15_c01182{left:397.440000pt;}
.x1c_c01182{left:406.400000pt;}
.x8_c01182{left:415.360000pt;}
.x1f_c01182{left:416.640000pt;}
.x21_c01182{left:426.240000pt;}
.x31_c01182{left:450.560000pt;}
.x9_c01182{left:474.240000pt;}
.x2f_c01182{left:475.520000pt;}
.x2c_c01182{left:522.240000pt;}
.x26_c01182{left:533.120000pt;}
.x11_c01182{left:552.960000pt;}
.x30_c01182{left:554.240000pt;}
.xa_c01182{left:581.760000pt;}
.x29_c01182{left:583.040000pt;}
.x1_c01182{left:609.280000pt;}
.xb_c01182{left:611.200000pt;}
.x16_c01182{left:620.800000pt;}
.x24_c01182{left:622.080000pt;}
.x12_c01182{left:639.360000pt;}
.x33_c01182{left:640.640000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a35fbd91d7b4723ef8d7b627.woff2')format("woff");}.ff1_c01183{font-family:ff1_c01183;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3f_c01183{transform:matrix(0.177600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177600,0.000000,0.000000,0.250000,0,0);}
.m37_c01183{transform:matrix(0.207650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207650,0.000000,0.000000,0.250000,0,0);}
.m3d_c01183{transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);}
.m43_c01183{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m32_c01183{transform:matrix(0.246975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246975,0.000000,0.000000,0.250000,0,0);}
.m40_c01183{transform:matrix(0.248725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248725,0.000000,0.000000,0.250000,0,0);}
.m46_c01183{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m21_c01183{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m11_c01183{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);}
.m2e_c01183{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_c01183{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mc_c01183{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);}
.m30_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);}
.m9_c01183{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m26_c01183{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m12_c01183{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m29_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);}
.m2_c01183{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01183{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);}
.m25_c01183{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m8_c01183{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m6_c01183{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m0_c01183{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01183{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m42_c01183{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m3_c01183{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m28_c01183{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01183{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m20_c01183{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m48_c01183{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m7_c01183{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m38_c01183{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m23_c01183{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m18_c01183{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m13_c01183{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m31_c01183{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m19_c01183{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m10_c01183{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);}
.m4a_c01183{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01183{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.mb_c01183{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1_c01183{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m39_c01183{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);}
.m2a_c01183{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m16_c01183{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m41_c01183{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);}
.m3b_c01183{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m34_c01183{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m5_c01183{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);}
.mf_c01183{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m17_c01183{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m44_c01183{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);}
.m1c_c01183{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_c01183{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01183{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);}
.m33_c01183{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);}
.m22_c01183{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01183{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);}
.m35_c01183{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01183{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m27_c01183{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.md_c01183{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m4_c01183{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01183{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01183{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);}
.m3a_c01183{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01183{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m47_c01183{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);}
.m15_c01183{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m14_c01183{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.me_c01183{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.m36_c01183{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);}
.m49_c01183{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m45_c01183{transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);}
.ma_c01183{transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01183{transform:matrix(0.885000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.885000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.885000,0.000000,0.000000,0.250000,0,0);}
.v1_c01183{vertical-align:-5.760000px;}
.v0_c01183{vertical-align:0.000000px;}
.v2_c01183{vertical-align:2.880000px;}
.ls0_c01183{letter-spacing:0.000000px;}
.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;}
}
.ws2_c01183{word-spacing:0.000000px;}
.ws1_c01183{word-spacing:10.267200px;}
.ws0_c01183{word-spacing:19.521600px;}
.fc0_c01183{color:transparent;}
.fs8_c01183{font-size:34.560000px;}
.fsd_c01183{font-size:37.440000px;}
.fs9_c01183{font-size:43.200000px;}
.fs4_c01183{font-size:46.080000px;}
.fs7_c01183{font-size:48.960000px;}
.fs6_c01183{font-size:51.840000px;}
.fs5_c01183{font-size:54.720000px;}
.fs1_c01183{font-size:57.600000px;}
.fs3_c01183{font-size:60.480000px;}
.fsf_c01183{font-size:63.360000px;}
.fsa_c01183{font-size:66.240000px;}
.fs0_c01183{font-size:69.120000px;}
.fs2_c01183{font-size:72.000000px;}
.fsb_c01183{font-size:74.880000px;}
.fsc_c01183{font-size:77.760000px;}
.fs11_c01183{font-size:97.920000px;}
.fs10_c01183{font-size:100.800000px;}
.fse_c01183{font-size:103.680000px;}
.y0_c01183{bottom:0.000000px;}
.y7d_c01183{bottom:85.680000px;}
.y94_c01183{bottom:86.400000px;}
.y7a_c01183{bottom:87.840000px;}
.y79_c01183{bottom:88.560000px;}
.y7b_c01183{bottom:89.280000px;}
.y7c_c01183{bottom:90.000000px;}
.y78_c01183{bottom:92.880000px;}
.y77_c01183{bottom:131.040000px;}
.y76_c01183{bottom:134.640000px;}
.y75_c01183{bottom:136.080000px;}
.y93_c01183{bottom:161.280000px;}
.y72_c01183{bottom:162.720000px;}
.y6f_c01183{bottom:163.440000px;}
.y74_c01183{bottom:164.160000px;}
.y73_c01183{bottom:164.880000px;}
.y71_c01183{bottom:165.600000px;}
.y70_c01183{bottom:166.320000px;}
.y6e_c01183{bottom:167.760000px;}
.y6d_c01183{bottom:206.640000px;}
.y6c_c01183{bottom:209.520000px;}
.y69_c01183{bottom:236.880000px;}
.y66_c01183{bottom:238.320000px;}
.y6a_c01183{bottom:239.040000px;}
.y6b_c01183{bottom:239.760000px;}
.y68_c01183{bottom:240.480000px;}
.y67_c01183{bottom:241.200000px;}
.y65_c01183{bottom:243.360000px;}
.y63_c01183{bottom:272.160000px;}
.y91_c01183{bottom:279.360000px;}
.y92_c01183{bottom:280.080000px;}
.y60_c01183{bottom:280.800000px;}
.y64_c01183{bottom:282.240000px;}
.y62_c01183{bottom:282.960000px;}
.y61_c01183{bottom:283.680000px;}
.y5f_c01183{bottom:285.120000px;}
.y5d_c01183{bottom:314.640000px;}
.y5a_c01183{bottom:323.280000px;}
.y90_c01183{bottom:324.000000px;}
.y5e_c01183{bottom:324.720000px;}
.y8f_c01183{bottom:325.440000px;}
.y5c_c01183{bottom:326.160000px;}
.y5b_c01183{bottom:326.880000px;}
.y59_c01183{bottom:327.600000px;}
.y57_c01183{bottom:365.040000px;}
.y56_c01183{bottom:365.760000px;}
.y58_c01183{bottom:366.480000px;}
.y8d_c01183{bottom:367.920000px;}
.y8e_c01183{bottom:368.640000px;}
.y55_c01183{bottom:369.360000px;}
.y53_c01183{bottom:407.520000px;}
.y51_c01183{bottom:408.960000px;}
.y8c_c01183{bottom:409.680000px;}
.y54_c01183{bottom:411.120000px;}
.y50_c01183{bottom:411.840000px;}
.y52_c01183{bottom:412.560000px;}
.y4e_c01183{bottom:451.440000px;}
.y4c_c01183{bottom:452.160000px;}
.y8b_c01183{bottom:452.880000px;}
.y4f_c01183{bottom:453.600000px;}
.y4b_c01183{bottom:454.320000px;}
.y4d_c01183{bottom:455.040000px;}
.y4a_c01183{bottom:486.720000px;}
.y47_c01183{bottom:494.640000px;}
.y8a_c01183{bottom:495.360000px;}
.y49_c01183{bottom:496.800000px;}
.y46_c01183{bottom:497.520000px;}
.y48_c01183{bottom:498.240000px;}
.y42_c01183{bottom:537.120000px;}
.y44_c01183{bottom:538.560000px;}
.y88_c01183{bottom:539.280000px;}
.y41_c01183{bottom:540.000000px;}
.y43_c01183{bottom:540.720000px;}
.y45_c01183{bottom:541.440000px;}
.y89_c01183{bottom:542.160000px;}
.y3c_c01183{bottom:580.320000px;}
.y3e_c01183{bottom:581.040000px;}
.y3b_c01183{bottom:582.480000px;}
.y40_c01183{bottom:583.920000px;}
.y3d_c01183{bottom:584.640000px;}
.y37_c01183{bottom:622.080000px;}
.y3a_c01183{bottom:623.520000px;}
.y36_c01183{bottom:624.240000px;}
.y39_c01183{bottom:626.400000px;}
.y38_c01183{bottom:627.120000px;}
.y3f_c01183{bottom:627.840000px;}
.y32_c01183{bottom:666.000000px;}
.y33_c01183{bottom:667.440000px;}
.y31_c01183{bottom:668.160000px;}
.y87_c01183{bottom:669.600000px;}
.y34_c01183{bottom:670.320000px;}
.y35_c01183{bottom:671.040000px;}
.y86_c01183{bottom:671.760000px;}
.y2d_c01183{bottom:709.200000px;}
.y2f_c01183{bottom:709.920000px;}
.y2c_c01183{bottom:710.640000px;}
.y85_c01183{bottom:712.800000px;}
.y2e_c01183{bottom:713.520000px;}
.y30_c01183{bottom:714.240000px;}
.y2b_c01183{bottom:746.640000px;}
.y28_c01183{bottom:751.680000px;}
.y27_c01183{bottom:753.120000px;}
.y2a_c01183{bottom:753.840000px;}
.y83_c01183{bottom:756.000000px;}
.y29_c01183{bottom:756.720000px;}
.y84_c01183{bottom:758.160000px;}
.y22_c01183{bottom:793.440000px;}
.y21_c01183{bottom:795.600000px;}
.y26_c01183{bottom:796.320000px;}
.y24_c01183{bottom:797.040000px;}
.y23_c01183{bottom:798.480000px;}
.y25_c01183{bottom:799.920000px;}
.y82_c01183{bottom:801.360000px;}
.y81_c01183{bottom:802.080000px;}
.y20_c01183{bottom:837.360000px;}
.y1e_c01183{bottom:838.080000px;}
.y1f_c01183{bottom:840.960000px;}
.y18_c01183{bottom:869.040000px;}
.y17_c01183{bottom:870.480000px;}
.y1a_c01183{bottom:871.920000px;}
.y19_c01183{bottom:873.360000px;}
.y1b_c01183{bottom:874.080000px;}
.y1c_c01183{bottom:874.800000px;}
.y1d_c01183{bottom:875.520000px;}
.y80_c01183{bottom:876.960000px;}
.y16_c01183{bottom:912.240000px;}
.y15_c01183{bottom:914.400000px;}
.y10_c01183{bottom:943.920000px;}
.yf_c01183{bottom:944.640000px;}
.y11_c01183{bottom:946.080000px;}
.y13_c01183{bottom:947.520000px;}
.y12_c01183{bottom:949.680000px;}
.y14_c01183{bottom:950.400000px;}
.y7f_c01183{bottom:951.120000px;}
.y7e_c01183{bottom:951.840000px;}
.ya_c01183{bottom:986.400000px;}
.y9_c01183{bottom:987.840000px;}
.yc_c01183{bottom:989.280000px;}
.yb_c01183{bottom:991.440000px;}
.ye_c01183{bottom:992.160000px;}
.yd_c01183{bottom:992.880000px;}
.y3_c01183{bottom:1029.600000px;}
.y2_c01183{bottom:1030.320000px;}
.y4_c01183{bottom:1031.760000px;}
.y6_c01183{bottom:1033.200000px;}
.y5_c01183{bottom:1035.360000px;}
.y7_c01183{bottom:1036.800000px;}
.y8_c01183{bottom:1038.240000px;}
.y1_c01183{bottom:1100.880000px;}
.ha_c01183{height:31.100625px;}
.hf_c01183{height:33.692344px;}
.hb_c01183{height:38.875781px;}
.h6_c01183{height:41.467500px;}
.h9_c01183{height:44.059219px;}
.h8_c01183{height:46.650937px;}
.h7_c01183{height:49.242656px;}
.h14_c01183{height:49.530937px;}
.h3_c01183{height:51.834375px;}
.h5_c01183{height:54.426094px;}
.h11_c01183{height:57.017812px;}
.hc_c01183{height:59.609531px;}
.h2_c01183{height:62.201250px;}
.h4_c01183{height:64.792969px;}
.hd_c01183{height:67.384687px;}
.he_c01183{height:69.976406px;}
.h13_c01183{height:88.118437px;}
.h12_c01183{height:90.710156px;}
.h10_c01183{height:93.301875px;}
.h1_c01183{height:1151.250000px;}
.h0_c01183{height:1151.280000px;}
.w0_c01183{width:782.640000px;}
.w1_c01183{width:783.000000px;}
.x0_c01183{left:0.000000px;}
.x2_c01183{left:61.920000px;}
.x2a_c01183{left:63.360000px;}
.x3_c01183{left:143.280000px;}
.x1e_c01183{left:144.720000px;}
.x26_c01183{left:146.160000px;}
.x10_c01183{left:185.760000px;}
.x2b_c01183{left:187.200000px;}
.x4_c01183{left:229.680000px;}
.x14_c01183{left:239.760000px;}
.x1f_c01183{left:241.200000px;}
.x21_c01183{left:251.280000px;}
.x2d_c01183{left:252.720000px;}
.x11_c01183{left:259.920000px;}
.xd_c01183{left:271.440000px;}
.x27_c01183{left:273.600000px;}
.x15_c01183{left:282.960000px;}
.x17_c01183{left:293.040000px;}
.x24_c01183{left:295.200000px;}
.x22_c01183{left:304.560000px;}
.x5_c01183{left:314.640000px;}
.x1c_c01183{left:325.440000px;}
.x28_c01183{left:327.600000px;}
.x16_c01183{left:336.960000px;}
.x18_c01183{left:347.760000px;}
.x23_c01183{left:358.560000px;}
.x6_c01183{left:369.360000px;}
.x1d_c01183{left:380.160000px;}
.x25_c01183{left:390.960000px;}
.x19_c01183{left:401.760000px;}
.x12_c01183{left:412.560000px;}
.xe_c01183{left:423.360000px;}
.x20_c01183{left:435.600000px;}
.x2e_c01183{left:447.120000px;}
.x13_c01183{left:455.760000px;}
.x7_c01183{left:466.560000px;}
.x29_c01183{left:468.720000px;}
.x1b_c01183{left:477.360000px;}
.x2c_c01183{left:479.520000px;}
.x1a_c01183{left:488.880000px;}
.x8_c01183{left:532.800000px;}
.xf_c01183{left:586.800000px;}
.x9_c01183{left:620.640000px;}
.x31_c01183{left:622.080870px;}
.xa_c01183{left:653.760000px;}
.x33_c01183{left:655.200000px;}
.x1_c01183{left:658.080000px;}
.x30_c01183{left:686.880000px;}
.x34_c01183{left:688.320000px;}
.xb_c01183{left:696.960000px;}
.x2f_c01183{left:698.400000px;}
.xc_c01183{left:717.120000px;}
.x32_c01183{left:718.560000px;}
@media print{
.v1_c01183{vertical-align:-5.120000pt;}
.v0_c01183{vertical-align:0.000000pt;}
.v2_c01183{vertical-align:2.560000pt;}
.ls0_c01183{letter-spacing:0.000000pt;}
.ws2_c01183{word-spacing:0.000000pt;}
.ws1_c01183{word-spacing:9.126400pt;}
.ws0_c01183{word-spacing:17.352533pt;}
.fs8_c01183{font-size:30.720000pt;}
.fsd_c01183{font-size:33.280000pt;}
.fs9_c01183{font-size:38.400000pt;}
.fs4_c01183{font-size:40.960000pt;}
.fs7_c01183{font-size:43.520000pt;}
.fs6_c01183{font-size:46.080000pt;}
.fs5_c01183{font-size:48.640000pt;}
.fs1_c01183{font-size:51.200000pt;}
.fs3_c01183{font-size:53.760000pt;}
.fsf_c01183{font-size:56.320000pt;}
.fsa_c01183{font-size:58.880000pt;}
.fs0_c01183{font-size:61.440000pt;}
.fs2_c01183{font-size:64.000000pt;}
.fsb_c01183{font-size:66.560000pt;}
.fsc_c01183{font-size:69.120000pt;}
.fs11_c01183{font-size:87.040000pt;}
.fs10_c01183{font-size:89.600000pt;}
.fse_c01183{font-size:92.160000pt;}
.y0_c01183{bottom:0.000000pt;}
.y7d_c01183{bottom:76.160000pt;}
.y94_c01183{bottom:76.800000pt;}
.y7a_c01183{bottom:78.080000pt;}
.y79_c01183{bottom:78.720000pt;}
.y7b_c01183{bottom:79.360000pt;}
.y7c_c01183{bottom:80.000000pt;}
.y78_c01183{bottom:82.560000pt;}
.y77_c01183{bottom:116.480000pt;}
.y76_c01183{bottom:119.680000pt;}
.y75_c01183{bottom:120.960000pt;}
.y93_c01183{bottom:143.360000pt;}
.y72_c01183{bottom:144.640000pt;}
.y6f_c01183{bottom:145.280000pt;}
.y74_c01183{bottom:145.920000pt;}
.y73_c01183{bottom:146.560000pt;}
.y71_c01183{bottom:147.200000pt;}
.y70_c01183{bottom:147.840000pt;}
.y6e_c01183{bottom:149.120000pt;}
.y6d_c01183{bottom:183.680000pt;}
.y6c_c01183{bottom:186.240000pt;}
.y69_c01183{bottom:210.560000pt;}
.y66_c01183{bottom:211.840000pt;}
.y6a_c01183{bottom:212.480000pt;}
.y6b_c01183{bottom:213.120000pt;}
.y68_c01183{bottom:213.760000pt;}
.y67_c01183{bottom:214.400000pt;}
.y65_c01183{bottom:216.320000pt;}
.y63_c01183{bottom:241.920000pt;}
.y91_c01183{bottom:248.320000pt;}
.y92_c01183{bottom:248.960000pt;}
.y60_c01183{bottom:249.600000pt;}
.y64_c01183{bottom:250.880000pt;}
.y62_c01183{bottom:251.520000pt;}
.y61_c01183{bottom:252.160000pt;}
.y5f_c01183{bottom:253.440000pt;}
.y5d_c01183{bottom:279.680000pt;}
.y5a_c01183{bottom:287.360000pt;}
.y90_c01183{bottom:288.000000pt;}
.y5e_c01183{bottom:288.640000pt;}
.y8f_c01183{bottom:289.280000pt;}
.y5c_c01183{bottom:289.920000pt;}
.y5b_c01183{bottom:290.560000pt;}
.y59_c01183{bottom:291.200000pt;}
.y57_c01183{bottom:324.480000pt;}
.y56_c01183{bottom:325.120000pt;}
.y58_c01183{bottom:325.760000pt;}
.y8d_c01183{bottom:327.040000pt;}
.y8e_c01183{bottom:327.680000pt;}
.y55_c01183{bottom:328.320000pt;}
.y53_c01183{bottom:362.240000pt;}
.y51_c01183{bottom:363.520000pt;}
.y8c_c01183{bottom:364.160000pt;}
.y54_c01183{bottom:365.440000pt;}
.y50_c01183{bottom:366.080000pt;}
.y52_c01183{bottom:366.720000pt;}
.y4e_c01183{bottom:401.280000pt;}
.y4c_c01183{bottom:401.920000pt;}
.y8b_c01183{bottom:402.560000pt;}
.y4f_c01183{bottom:403.200000pt;}
.y4b_c01183{bottom:403.840000pt;}
.y4d_c01183{bottom:404.480000pt;}
.y4a_c01183{bottom:432.640000pt;}
.y47_c01183{bottom:439.680000pt;}
.y8a_c01183{bottom:440.320000pt;}
.y49_c01183{bottom:441.600000pt;}
.y46_c01183{bottom:442.240000pt;}
.y48_c01183{bottom:442.880000pt;}
.y42_c01183{bottom:477.440000pt;}
.y44_c01183{bottom:478.720000pt;}
.y88_c01183{bottom:479.360000pt;}
.y41_c01183{bottom:480.000000pt;}
.y43_c01183{bottom:480.640000pt;}
.y45_c01183{bottom:481.280000pt;}
.y89_c01183{bottom:481.920000pt;}
.y3c_c01183{bottom:515.840000pt;}
.y3e_c01183{bottom:516.480000pt;}
.y3b_c01183{bottom:517.760000pt;}
.y40_c01183{bottom:519.040000pt;}
.y3d_c01183{bottom:519.680000pt;}
.y37_c01183{bottom:552.960000pt;}
.y3a_c01183{bottom:554.240000pt;}
.y36_c01183{bottom:554.880000pt;}
.y39_c01183{bottom:556.800000pt;}
.y38_c01183{bottom:557.440000pt;}
.y3f_c01183{bottom:558.080000pt;}
.y32_c01183{bottom:592.000000pt;}
.y33_c01183{bottom:593.280000pt;}
.y31_c01183{bottom:593.920000pt;}
.y87_c01183{bottom:595.200000pt;}
.y34_c01183{bottom:595.840000pt;}
.y35_c01183{bottom:596.480000pt;}
.y86_c01183{bottom:597.120000pt;}
.y2d_c01183{bottom:630.400000pt;}
.y2f_c01183{bottom:631.040000pt;}
.y2c_c01183{bottom:631.680000pt;}
.y85_c01183{bottom:633.600000pt;}
.y2e_c01183{bottom:634.240000pt;}
.y30_c01183{bottom:634.880000pt;}
.y2b_c01183{bottom:663.680000pt;}
.y28_c01183{bottom:668.160000pt;}
.y27_c01183{bottom:669.440000pt;}
.y2a_c01183{bottom:670.080000pt;}
.y83_c01183{bottom:672.000000pt;}
.y29_c01183{bottom:672.640000pt;}
.y84_c01183{bottom:673.920000pt;}
.y22_c01183{bottom:705.280000pt;}
.y21_c01183{bottom:707.200000pt;}
.y26_c01183{bottom:707.840000pt;}
.y24_c01183{bottom:708.480000pt;}
.y23_c01183{bottom:709.760000pt;}
.y25_c01183{bottom:711.040000pt;}
.y82_c01183{bottom:712.320000pt;}
.y81_c01183{bottom:712.960000pt;}
.y20_c01183{bottom:744.320000pt;}
.y1e_c01183{bottom:744.960000pt;}
.y1f_c01183{bottom:747.520000pt;}
.y18_c01183{bottom:772.480000pt;}
.y17_c01183{bottom:773.760000pt;}
.y1a_c01183{bottom:775.040000pt;}
.y19_c01183{bottom:776.320000pt;}
.y1b_c01183{bottom:776.960000pt;}
.y1c_c01183{bottom:777.600000pt;}
.y1d_c01183{bottom:778.240000pt;}
.y80_c01183{bottom:779.520000pt;}
.y16_c01183{bottom:810.880000pt;}
.y15_c01183{bottom:812.800000pt;}
.y10_c01183{bottom:839.040000pt;}
.yf_c01183{bottom:839.680000pt;}
.y11_c01183{bottom:840.960000pt;}
.y13_c01183{bottom:842.240000pt;}
.y12_c01183{bottom:844.160000pt;}
.y14_c01183{bottom:844.800000pt;}
.y7f_c01183{bottom:845.440000pt;}
.y7e_c01183{bottom:846.080000pt;}
.ya_c01183{bottom:876.800000pt;}
.y9_c01183{bottom:878.080000pt;}
.yc_c01183{bottom:879.360000pt;}
.yb_c01183{bottom:881.280000pt;}
.ye_c01183{bottom:881.920000pt;}
.yd_c01183{bottom:882.560000pt;}
.y3_c01183{bottom:915.200000pt;}
.y2_c01183{bottom:915.840000pt;}
.y4_c01183{bottom:917.120000pt;}
.y6_c01183{bottom:918.400000pt;}
.y5_c01183{bottom:920.320000pt;}
.y7_c01183{bottom:921.600000pt;}
.y8_c01183{bottom:922.880000pt;}
.y1_c01183{bottom:978.560000pt;}
.ha_c01183{height:27.645000pt;}
.hf_c01183{height:29.948750pt;}
.hb_c01183{height:34.556250pt;}
.h6_c01183{height:36.860000pt;}
.h9_c01183{height:39.163750pt;}
.h8_c01183{height:41.467500pt;}
.h7_c01183{height:43.771250pt;}
.h14_c01183{height:44.027500pt;}
.h3_c01183{height:46.075000pt;}
.h5_c01183{height:48.378750pt;}
.h11_c01183{height:50.682500pt;}
.hc_c01183{height:52.986250pt;}
.h2_c01183{height:55.290000pt;}
.h4_c01183{height:57.593750pt;}
.hd_c01183{height:59.897500pt;}
.he_c01183{height:62.201250pt;}
.h13_c01183{height:78.327500pt;}
.h12_c01183{height:80.631250pt;}
.h10_c01183{height:82.935000pt;}
.h1_c01183{height:1023.333333pt;}
.h0_c01183{height:1023.360000pt;}
.w0_c01183{width:695.680000pt;}
.w1_c01183{width:696.000000pt;}
.x0_c01183{left:0.000000pt;}
.x2_c01183{left:55.040000pt;}
.x2a_c01183{left:56.320000pt;}
.x3_c01183{left:127.360000pt;}
.x1e_c01183{left:128.640000pt;}
.x26_c01183{left:129.920000pt;}
.x10_c01183{left:165.120000pt;}
.x2b_c01183{left:166.400000pt;}
.x4_c01183{left:204.160000pt;}
.x14_c01183{left:213.120000pt;}
.x1f_c01183{left:214.400000pt;}
.x21_c01183{left:223.360000pt;}
.x2d_c01183{left:224.640000pt;}
.x11_c01183{left:231.040000pt;}
.xd_c01183{left:241.280000pt;}
.x27_c01183{left:243.200000pt;}
.x15_c01183{left:251.520000pt;}
.x17_c01183{left:260.480000pt;}
.x24_c01183{left:262.400000pt;}
.x22_c01183{left:270.720000pt;}
.x5_c01183{left:279.680000pt;}
.x1c_c01183{left:289.280000pt;}
.x28_c01183{left:291.200000pt;}
.x16_c01183{left:299.520000pt;}
.x18_c01183{left:309.120000pt;}
.x23_c01183{left:318.720000pt;}
.x6_c01183{left:328.320000pt;}
.x1d_c01183{left:337.920000pt;}
.x25_c01183{left:347.520000pt;}
.x19_c01183{left:357.120000pt;}
.x12_c01183{left:366.720000pt;}
.xe_c01183{left:376.320000pt;}
.x20_c01183{left:387.200000pt;}
.x2e_c01183{left:397.440000pt;}
.x13_c01183{left:405.120000pt;}
.x7_c01183{left:414.720000pt;}
.x29_c01183{left:416.640000pt;}
.x1b_c01183{left:424.320000pt;}
.x2c_c01183{left:426.240000pt;}
.x1a_c01183{left:434.560000pt;}
.x8_c01183{left:473.600000pt;}
.xf_c01183{left:521.600000pt;}
.x9_c01183{left:551.680000pt;}
.x31_c01183{left:552.960773pt;}
.xa_c01183{left:581.120000pt;}
.x33_c01183{left:582.400000pt;}
.x1_c01183{left:584.960000pt;}
.x30_c01183{left:610.560000pt;}
.x34_c01183{left:611.840000pt;}
.xb_c01183{left:619.520000pt;}
.x2f_c01183{left:620.800000pt;}
.xc_c01183{left:637.440000pt;}
.x32_c01183{left:638.720000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_087c4524fb0dde544c97095d.woff2')format("woff");}.ff1_c01184{font-family:ff1_c01184;line-height:1.109863;font-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_c01184{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m2e_c01184{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m18_c01184{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m5_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);}
.m8_c01184{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);}
.m36_c01184{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);}
.m33_c01184{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m22_c01184{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);}
.m31_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);}
.m10_c01184{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);}
.m27_c01184{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m19_c01184{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m17_c01184{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01184{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m11_c01184{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01184{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01184{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m4_c01184{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m2_c01184{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m16_c01184{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m14_c01184{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m20_c01184{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m24_c01184{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m7_c01184{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01184{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01184{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mc_c01184{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m23_c01184{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mf_c01184{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01184{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.me_c01184{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m15_c01184{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);}
.m2f_c01184{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m25_c01184{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_c01184{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m28_c01184{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m21_c01184{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1_c01184{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m35_c01184{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.mb_c01184{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);}
.m2d_c01184{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m30_c01184{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m0_c01184{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m3_c01184{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.ma_c01184{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01184{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);}
.m1d_c01184{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m13_c01184{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m12_c01184{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.md_c01184{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);}
.m6_c01184{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m9_c01184{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m34_c01184{transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);}
.m26_c01184{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m29_c01184{transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);}
.v1_c01184{vertical-align:-14.400000px;}
.v0_c01184{vertical-align:0.000000px;}
.ls1_c01184{letter-spacing:0.000000px;}
.ls0_c01184{letter-spacing:55.978800px;}
.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;}
}
.ws3_c01184{word-spacing:0.000000px;}
.ws1_c01184{word-spacing:48.549666px;}
.ws2_c01184{word-spacing:129.674143px;}
.ws0_c01184{word-spacing:200.382941px;}
.fc0_c01184{color:transparent;}
.fs4_c01184{font-size:34.560000px;}
.fs5_c01184{font-size:37.440000px;}
.fse_c01184{font-size:43.200000px;}
.fs9_c01184{font-size:46.080000px;}
.fsb_c01184{font-size:48.960000px;}
.fs2_c01184{font-size:51.840000px;}
.fs3_c01184{font-size:54.720000px;}
.fs1_c01184{font-size:57.600000px;}
.fs7_c01184{font-size:60.480000px;}
.fsc_c01184{font-size:63.360000px;}
.fsd_c01184{font-size:66.240000px;}
.fsa_c01184{font-size:69.120000px;}
.fs0_c01184{font-size:72.000000px;}
.fs8_c01184{font-size:74.880000px;}
.fs6_c01184{font-size:77.760000px;}
.y0_c01184{bottom:0.000000px;}
.y78_c01184{bottom:83.520000px;}
.y79_c01184{bottom:84.240000px;}
.y3e_c01184{bottom:85.680000px;}
.y3d_c01184{bottom:92.160000px;}
.y76_c01184{bottom:125.280000px;}
.y77_c01184{bottom:126.000000px;}
.y75_c01184{bottom:127.440000px;}
.y3b_c01184{bottom:128.880000px;}
.y3c_c01184{bottom:130.320000px;}
.y3a_c01184{bottom:133.920000px;}
.y74_c01184{bottom:168.480000px;}
.y73_c01184{bottom:169.200000px;}
.y72_c01184{bottom:169.920000px;}
.y39_c01184{bottom:171.360000px;}
.y71_c01184{bottom:172.080000px;}
.y38_c01184{bottom:176.400000px;}
.y70_c01184{bottom:212.400000px;}
.y37_c01184{bottom:213.840000px;}
.y6f_c01184{bottom:215.280000px;}
.y36_c01184{bottom:218.160000px;}
.y6e_c01184{bottom:255.600000px;}
.y6d_c01184{bottom:256.320000px;}
.y35_c01184{bottom:257.760000px;}
.y34_c01184{bottom:260.640000px;}
.y33_c01184{bottom:298.800000px;}
.y31_c01184{bottom:299.520000px;}
.y30_c01184{bottom:300.240000px;}
.y32_c01184{bottom:301.680000px;}
.y2f_c01184{bottom:302.400000px;}
.y6c_c01184{bottom:342.000000px;}
.y2e_c01184{bottom:342.720000px;}
.y6b_c01184{bottom:344.880000px;}
.y2d_c01184{bottom:347.040000px;}
.y2c_c01184{bottom:385.200000px;}
.y69_c01184{bottom:385.920000px;}
.y6a_c01184{bottom:386.640000px;}
.y68_c01184{bottom:387.360000px;}
.y2b_c01184{bottom:389.520000px;}
.y66_c01184{bottom:428.400000px;}
.y2a_c01184{bottom:429.120000px;}
.y67_c01184{bottom:430.560000px;}
.y65_c01184{bottom:431.280000px;}
.y29_c01184{bottom:432.000000px;}
.y28_c01184{bottom:471.600000px;}
.y64_c01184{bottom:472.320000px;}
.y63_c01184{bottom:474.480000px;}
.y27_c01184{bottom:475.200000px;}
.y26_c01184{bottom:514.080000px;}
.y61_c01184{bottom:514.800000px;}
.y62_c01184{bottom:515.520000px;}
.y25_c01184{bottom:516.240000px;}
.y60_c01184{bottom:516.960000px;}
.y24_c01184{bottom:555.840000px;}
.y5e_c01184{bottom:558.000000px;}
.y23_c01184{bottom:559.440000px;}
.y5f_c01184{bottom:560.160000px;}
.y5c_c01184{bottom:560.880000px;}
.y5d_c01184{bottom:561.600000px;}
.y22_c01184{bottom:599.040000px;}
.y21_c01184{bottom:601.200000px;}
.y5a_c01184{bottom:603.360000px;}
.y59_c01184{bottom:604.080000px;}
.y5b_c01184{bottom:604.800000px;}
.y20_c01184{bottom:642.240000px;}
.y1f_c01184{bottom:643.680000px;}
.y58_c01184{bottom:644.400000px;}
.y57_c01184{bottom:646.560000px;}
.y1e_c01184{bottom:684.720000px;}
.y1d_c01184{bottom:686.880000px;}
.y56_c01184{bottom:687.600000px;}
.y55_c01184{bottom:689.040000px;}
.y54_c01184{bottom:689.760000px;}
.y1c_c01184{bottom:727.200000px;}
.y1b_c01184{bottom:729.360000px;}
.y52_c01184{bottom:730.800000px;}
.y53_c01184{bottom:732.240000px;}
.y51_c01184{bottom:732.960000px;}
.y18_c01184{bottom:771.840000px;}
.y19_c01184{bottom:772.560000px;}
.y4f_c01184{bottom:774.000000px;}
.y1a_c01184{bottom:774.720000px;}
.y50_c01184{bottom:776.160000px;}
.y17_c01184{bottom:813.600000px;}
.y15_c01184{bottom:814.320000px;}
.y16_c01184{bottom:816.480000px;}
.y4c_c01184{bottom:817.200000px;}
.y4d_c01184{bottom:817.920000px;}
.y4e_c01184{bottom:818.640000px;}
.y14_c01184{bottom:856.800000px;}
.y11_c01184{bottom:858.960000px;}
.y12_c01184{bottom:859.680000px;}
.y13_c01184{bottom:860.400000px;}
.y4a_c01184{bottom:861.840000px;}
.y4b_c01184{bottom:863.280000px;}
.y10_c01184{bottom:900.000000px;}
.ye_c01184{bottom:901.440000px;}
.yf_c01184{bottom:902.880000px;}
.y46_c01184{bottom:903.600000px;}
.y47_c01184{bottom:904.320000px;}
.y48_c01184{bottom:905.040000px;}
.y49_c01184{bottom:906.480000px;}
.yb_c01184{bottom:942.480000px;}
.ya_c01184{bottom:943.200000px;}
.yd_c01184{bottom:943.920000px;}
.yc_c01184{bottom:946.800000px;}
.y44_c01184{bottom:947.520000px;}
.y45_c01184{bottom:950.400000px;}
.y7_c01184{bottom:984.960000px;}
.y9_c01184{bottom:986.400000px;}
.y6_c01184{bottom:987.120000px;}
.y8_c01184{bottom:990.000000px;}
.y42_c01184{bottom:991.440000px;}
.y43_c01184{bottom:993.600000px;}
.y3_c01184{bottom:1028.160000px;}
.y2_c01184{bottom:1028.880000px;}
.y5_c01184{bottom:1029.600000px;}
.y4_c01184{bottom:1031.760000px;}
.y3f_c01184{bottom:1033.200000px;}
.y40_c01184{bottom:1034.640000px;}
.y41_c01184{bottom:1036.080000px;}
.y1_c01184{bottom:1092.240000px;}
.h6_c01184{height:31.100625px;}
.h7_c01184{height:33.692344px;}
.h10_c01184{height:38.875781px;}
.hb_c01184{height:41.467500px;}
.hd_c01184{height:44.059219px;}
.h4_c01184{height:46.650937px;}
.h5_c01184{height:49.242656px;}
.h3_c01184{height:51.834375px;}
.h9_c01184{height:54.426094px;}
.he_c01184{height:57.017812px;}
.hf_c01184{height:59.609531px;}
.hc_c01184{height:62.201250px;}
.h2_c01184{height:64.792969px;}
.ha_c01184{height:67.384687px;}
.h8_c01184{height:69.976406px;}
.h1_c01184{height:1149.000000px;}
.h0_c01184{height:1149.120000px;}
.w0_c01184{width:780.480000px;}
.w1_c01184{width:780.750000px;}
.x0_c01184{left:0.000000px;}
.x2_c01184{left:61.200000px;}
.xc_c01184{left:62.640000px;}
.x7_c01184{left:143.280000px;}
.x3_c01184{left:144.720000px;}
.x8_c01184{left:218.160000px;}
.x6_c01184{left:228.960000px;}
.x4_c01184{left:250.560000px;}
.x9_c01184{left:261.360000px;}
.xa_c01184{left:271.440000px;}
.x5_c01184{left:292.320000px;}
.xd_c01184{left:293.760000px;}
.xb_c01184{left:313.920000px;}
.x10_c01184{left:338.400000px;}
.xe_c01184{left:347.760000px;}
.xf_c01184{left:390.960000px;}
.x11_c01184{left:532.080000px;}
.x18_c01184{left:544.320000px;}
.x19_c01184{left:565.200000px;}
.x1d_c01184{left:566.640000px;}
.x16_c01184{left:586.080000px;}
.x1a_c01184{left:587.520000px;}
.x1b_c01184{left:598.320000px;}
.x12_c01184{left:619.920000px;}
.x13_c01184{left:653.040000px;}
.x1e_c01184{left:654.480000px;}
.x14_c01184{left:686.160000px;}
.x1_c01184{left:693.360000px;}
.x15_c01184{left:696.240000px;}
.x1c_c01184{left:697.680000px;}
.x17_c01184{left:717.120000px;}
@media print{
.v1_c01184{vertical-align:-12.800000pt;}
.v0_c01184{vertical-align:0.000000pt;}
.ls1_c01184{letter-spacing:0.000000pt;}
.ls0_c01184{letter-spacing:49.758933pt;}
.ws3_c01184{word-spacing:0.000000pt;}
.ws1_c01184{word-spacing:43.155259pt;}
.ws2_c01184{word-spacing:115.265905pt;}
.ws0_c01184{word-spacing:178.118170pt;}
.fs4_c01184{font-size:30.720000pt;}
.fs5_c01184{font-size:33.280000pt;}
.fse_c01184{font-size:38.400000pt;}
.fs9_c01184{font-size:40.960000pt;}
.fsb_c01184{font-size:43.520000pt;}
.fs2_c01184{font-size:46.080000pt;}
.fs3_c01184{font-size:48.640000pt;}
.fs1_c01184{font-size:51.200000pt;}
.fs7_c01184{font-size:53.760000pt;}
.fsc_c01184{font-size:56.320000pt;}
.fsd_c01184{font-size:58.880000pt;}
.fsa_c01184{font-size:61.440000pt;}
.fs0_c01184{font-size:64.000000pt;}
.fs8_c01184{font-size:66.560000pt;}
.fs6_c01184{font-size:69.120000pt;}
.y0_c01184{bottom:0.000000pt;}
.y78_c01184{bottom:74.240000pt;}
.y79_c01184{bottom:74.880000pt;}
.y3e_c01184{bottom:76.160000pt;}
.y3d_c01184{bottom:81.920000pt;}
.y76_c01184{bottom:111.360000pt;}
.y77_c01184{bottom:112.000000pt;}
.y75_c01184{bottom:113.280000pt;}
.y3b_c01184{bottom:114.560000pt;}
.y3c_c01184{bottom:115.840000pt;}
.y3a_c01184{bottom:119.040000pt;}
.y74_c01184{bottom:149.760000pt;}
.y73_c01184{bottom:150.400000pt;}
.y72_c01184{bottom:151.040000pt;}
.y39_c01184{bottom:152.320000pt;}
.y71_c01184{bottom:152.960000pt;}
.y38_c01184{bottom:156.800000pt;}
.y70_c01184{bottom:188.800000pt;}
.y37_c01184{bottom:190.080000pt;}
.y6f_c01184{bottom:191.360000pt;}
.y36_c01184{bottom:193.920000pt;}
.y6e_c01184{bottom:227.200000pt;}
.y6d_c01184{bottom:227.840000pt;}
.y35_c01184{bottom:229.120000pt;}
.y34_c01184{bottom:231.680000pt;}
.y33_c01184{bottom:265.600000pt;}
.y31_c01184{bottom:266.240000pt;}
.y30_c01184{bottom:266.880000pt;}
.y32_c01184{bottom:268.160000pt;}
.y2f_c01184{bottom:268.800000pt;}
.y6c_c01184{bottom:304.000000pt;}
.y2e_c01184{bottom:304.640000pt;}
.y6b_c01184{bottom:306.560000pt;}
.y2d_c01184{bottom:308.480000pt;}
.y2c_c01184{bottom:342.400000pt;}
.y69_c01184{bottom:343.040000pt;}
.y6a_c01184{bottom:343.680000pt;}
.y68_c01184{bottom:344.320000pt;}
.y2b_c01184{bottom:346.240000pt;}
.y66_c01184{bottom:380.800000pt;}
.y2a_c01184{bottom:381.440000pt;}
.y67_c01184{bottom:382.720000pt;}
.y65_c01184{bottom:383.360000pt;}
.y29_c01184{bottom:384.000000pt;}
.y28_c01184{bottom:419.200000pt;}
.y64_c01184{bottom:419.840000pt;}
.y63_c01184{bottom:421.760000pt;}
.y27_c01184{bottom:422.400000pt;}
.y26_c01184{bottom:456.960000pt;}
.y61_c01184{bottom:457.600000pt;}
.y62_c01184{bottom:458.240000pt;}
.y25_c01184{bottom:458.880000pt;}
.y60_c01184{bottom:459.520000pt;}
.y24_c01184{bottom:494.080000pt;}
.y5e_c01184{bottom:496.000000pt;}
.y23_c01184{bottom:497.280000pt;}
.y5f_c01184{bottom:497.920000pt;}
.y5c_c01184{bottom:498.560000pt;}
.y5d_c01184{bottom:499.200000pt;}
.y22_c01184{bottom:532.480000pt;}
.y21_c01184{bottom:534.400000pt;}
.y5a_c01184{bottom:536.320000pt;}
.y59_c01184{bottom:536.960000pt;}
.y5b_c01184{bottom:537.600000pt;}
.y20_c01184{bottom:570.880000pt;}
.y1f_c01184{bottom:572.160000pt;}
.y58_c01184{bottom:572.800000pt;}
.y57_c01184{bottom:574.720000pt;}
.y1e_c01184{bottom:608.640000pt;}
.y1d_c01184{bottom:610.560000pt;}
.y56_c01184{bottom:611.200000pt;}
.y55_c01184{bottom:612.480000pt;}
.y54_c01184{bottom:613.120000pt;}
.y1c_c01184{bottom:646.400000pt;}
.y1b_c01184{bottom:648.320000pt;}
.y52_c01184{bottom:649.600000pt;}
.y53_c01184{bottom:650.880000pt;}
.y51_c01184{bottom:651.520000pt;}
.y18_c01184{bottom:686.080000pt;}
.y19_c01184{bottom:686.720000pt;}
.y4f_c01184{bottom:688.000000pt;}
.y1a_c01184{bottom:688.640000pt;}
.y50_c01184{bottom:689.920000pt;}
.y17_c01184{bottom:723.200000pt;}
.y15_c01184{bottom:723.840000pt;}
.y16_c01184{bottom:725.760000pt;}
.y4c_c01184{bottom:726.400000pt;}
.y4d_c01184{bottom:727.040000pt;}
.y4e_c01184{bottom:727.680000pt;}
.y14_c01184{bottom:761.600000pt;}
.y11_c01184{bottom:763.520000pt;}
.y12_c01184{bottom:764.160000pt;}
.y13_c01184{bottom:764.800000pt;}
.y4a_c01184{bottom:766.080000pt;}
.y4b_c01184{bottom:767.360000pt;}
.y10_c01184{bottom:800.000000pt;}
.ye_c01184{bottom:801.280000pt;}
.yf_c01184{bottom:802.560000pt;}
.y46_c01184{bottom:803.200000pt;}
.y47_c01184{bottom:803.840000pt;}
.y48_c01184{bottom:804.480000pt;}
.y49_c01184{bottom:805.760000pt;}
.yb_c01184{bottom:837.760000pt;}
.ya_c01184{bottom:838.400000pt;}
.yd_c01184{bottom:839.040000pt;}
.yc_c01184{bottom:841.600000pt;}
.y44_c01184{bottom:842.240000pt;}
.y45_c01184{bottom:844.800000pt;}
.y7_c01184{bottom:875.520000pt;}
.y9_c01184{bottom:876.800000pt;}
.y6_c01184{bottom:877.440000pt;}
.y8_c01184{bottom:880.000000pt;}
.y42_c01184{bottom:881.280000pt;}
.y43_c01184{bottom:883.200000pt;}
.y3_c01184{bottom:913.920000pt;}
.y2_c01184{bottom:914.560000pt;}
.y5_c01184{bottom:915.200000pt;}
.y4_c01184{bottom:917.120000pt;}
.y3f_c01184{bottom:918.400000pt;}
.y40_c01184{bottom:919.680000pt;}
.y41_c01184{bottom:920.960000pt;}
.y1_c01184{bottom:970.880000pt;}
.h6_c01184{height:27.645000pt;}
.h7_c01184{height:29.948750pt;}
.h10_c01184{height:34.556250pt;}
.hb_c01184{height:36.860000pt;}
.hd_c01184{height:39.163750pt;}
.h4_c01184{height:41.467500pt;}
.h5_c01184{height:43.771250pt;}
.h3_c01184{height:46.075000pt;}
.h9_c01184{height:48.378750pt;}
.he_c01184{height:50.682500pt;}
.hf_c01184{height:52.986250pt;}
.hc_c01184{height:55.290000pt;}
.h2_c01184{height:57.593750pt;}
.ha_c01184{height:59.897500pt;}
.h8_c01184{height:62.201250pt;}
.h1_c01184{height:1021.333333pt;}
.h0_c01184{height:1021.440000pt;}
.w0_c01184{width:693.760000pt;}
.w1_c01184{width:694.000000pt;}
.x0_c01184{left:0.000000pt;}
.x2_c01184{left:54.400000pt;}
.xc_c01184{left:55.680000pt;}
.x7_c01184{left:127.360000pt;}
.x3_c01184{left:128.640000pt;}
.x8_c01184{left:193.920000pt;}
.x6_c01184{left:203.520000pt;}
.x4_c01184{left:222.720000pt;}
.x9_c01184{left:232.320000pt;}
.xa_c01184{left:241.280000pt;}
.x5_c01184{left:259.840000pt;}
.xd_c01184{left:261.120000pt;}
.xb_c01184{left:279.040000pt;}
.x10_c01184{left:300.800000pt;}
.xe_c01184{left:309.120000pt;}
.xf_c01184{left:347.520000pt;}
.x11_c01184{left:472.960000pt;}
.x18_c01184{left:483.840000pt;}
.x19_c01184{left:502.400000pt;}
.x1d_c01184{left:503.680000pt;}
.x16_c01184{left:520.960000pt;}
.x1a_c01184{left:522.240000pt;}
.x1b_c01184{left:531.840000pt;}
.x12_c01184{left:551.040000pt;}
.x13_c01184{left:580.480000pt;}
.x1e_c01184{left:581.760000pt;}
.x14_c01184{left:609.920000pt;}
.x1_c01184{left:616.320000pt;}
.x15_c01184{left:618.880000pt;}
.x1c_c01184{left:620.160000pt;}
.x17_c01184{left:637.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_00f9e04a437553be76c508b7.woff2')format("woff");}.ff1_c01185{font-family:ff1_c01185;line-height:1.109863;font-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_c01185{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m1f_c01185{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m2f_c01185{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.me_c01185{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_c01185{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);}
.m2b_c01185{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m7_c01185{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m3_c01185{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_c01185{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01185{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m24_c01185{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mf_c01185{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);}
.m25_c01185{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m20_c01185{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01185{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m9_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);}
.m28_c01185{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.md_c01185{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m2_c01185{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m22_c01185{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.ma_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);}
.m2d_c01185{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01185{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m13_c01185{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01185{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m5_c01185{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m12_c01185{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m19_c01185{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);}
.m27_c01185{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m10_c01185{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01185{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m15_c01185{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01185{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);}
.m8_c01185{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m23_c01185{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);}
.m11_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);}
.m17_c01185{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1_c01185{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.mc_c01185{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m0_c01185{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m14_c01185{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m21_c01185{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m16_c01185{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);}
.m1d_c01185{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);}
.m30_c01185{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m29_c01185{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.mb_c01185{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.m26_c01185{transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01185{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.v2_c01185{vertical-align:-2.880000px;}
.v0_c01185{vertical-align:0.000000px;}
.v1_c01185{vertical-align:2.880000px;}
.ls1_c01185{letter-spacing:0.000000px;}
.ls0_c01185{letter-spacing:45.580800px;}
.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;}
}
.ws3_c01185{word-spacing:0.000000px;}
.ws0_c01185{word-spacing:10.267200px;}
.ws2_c01185{word-spacing:10.937051px;}
.ws1_c01185{word-spacing:12.615860px;}
.fc0_c01185{color:transparent;}
.fs2_c01185{font-size:43.200000px;}
.fs6_c01185{font-size:46.080000px;}
.fs5_c01185{font-size:48.960000px;}
.fs3_c01185{font-size:51.840000px;}
.fs1_c01185{font-size:54.720000px;}
.fs4_c01185{font-size:57.600000px;}
.fs7_c01185{font-size:60.480000px;}
.fs9_c01185{font-size:63.360000px;}
.fs8_c01185{font-size:66.240000px;}
.fs0_c01185{font-size:69.120000px;}
.fsa_c01185{font-size:72.000000px;}
.y0_c01185{bottom:0.000000px;}
.y83_c01185{bottom:85.680000px;}
.y82_c01185{bottom:87.120000px;}
.y84_c01185{bottom:87.840000px;}
.y81_c01185{bottom:90.720000px;}
.y7e_c01185{bottom:128.160000px;}
.y7c_c01185{bottom:128.880000px;}
.y7f_c01185{bottom:130.320000px;}
.y80_c01185{bottom:131.040000px;}
.y7d_c01185{bottom:131.760000px;}
.y7b_c01185{bottom:132.480000px;}
.y76_c01185{bottom:171.360000px;}
.y77_c01185{bottom:172.800000px;}
.y79_c01185{bottom:173.520000px;}
.y75_c01185{bottom:174.960000px;}
.y7a_c01185{bottom:175.680000px;}
.y78_c01185{bottom:176.400000px;}
.y70_c01185{bottom:213.840000px;}
.y71_c01185{bottom:215.280000px;}
.y73_c01185{bottom:216.000000px;}
.y6f_c01185{bottom:216.720000px;}
.y72_c01185{bottom:217.440000px;}
.y74_c01185{bottom:218.160000px;}
.y6a_c01185{bottom:256.320000px;}
.y6c_c01185{bottom:257.040000px;}
.y6b_c01185{bottom:257.760000px;}
.y6d_c01185{bottom:259.200000px;}
.y69_c01185{bottom:259.920000px;}
.y6e_c01185{bottom:260.640000px;}
.y63_c01185{bottom:299.520000px;}
.y64_c01185{bottom:300.240000px;}
.y62_c01185{bottom:301.680000px;}
.y65_c01185{bottom:302.400000px;}
.y67_c01185{bottom:303.120000px;}
.y66_c01185{bottom:305.280000px;}
.y68_c01185{bottom:306.000000px;}
.y5e_c01185{bottom:342.000000px;}
.y5d_c01185{bottom:342.720000px;}
.y5c_c01185{bottom:344.160000px;}
.y60_c01185{bottom:346.320000px;}
.y5f_c01185{bottom:347.040000px;}
.y61_c01185{bottom:348.480000px;}
.y59_c01185{bottom:385.200000px;}
.y58_c01185{bottom:386.640000px;}
.y5b_c01185{bottom:389.520000px;}
.y5a_c01185{bottom:390.240000px;}
.y54_c01185{bottom:428.400000px;}
.y53_c01185{bottom:429.840000px;}
.y56_c01185{bottom:433.440000px;}
.y55_c01185{bottom:434.880000px;}
.y57_c01185{bottom:435.600000px;}
.y4f_c01185{bottom:470.880000px;}
.y4e_c01185{bottom:473.040000px;}
.y51_c01185{bottom:475.920000px;}
.y50_c01185{bottom:477.360000px;}
.y52_c01185{bottom:479.520000px;}
.y4b_c01185{bottom:513.360000px;}
.y4a_c01185{bottom:514.800000px;}
.y4d_c01185{bottom:519.840000px;}
.y4c_c01185{bottom:520.560000px;}
.y45_c01185{bottom:556.560000px;}
.y44_c01185{bottom:558.720000px;}
.y47_c01185{bottom:562.320000px;}
.y46_c01185{bottom:563.760000px;}
.y48_c01185{bottom:564.480000px;}
.y49_c01185{bottom:565.200000px;}
.y3d_c01185{bottom:599.040000px;}
.y3c_c01185{bottom:601.200000px;}
.y3f_c01185{bottom:605.520000px;}
.y40_c01185{bottom:606.240000px;}
.y41_c01185{bottom:606.960000px;}
.y3e_c01185{bottom:607.680000px;}
.y43_c01185{bottom:609.120000px;}
.y42_c01185{bottom:609.840000px;}
.y36_c01185{bottom:642.240000px;}
.y35_c01185{bottom:643.680000px;}
.y38_c01185{bottom:648.720000px;}
.y39_c01185{bottom:649.440000px;}
.y37_c01185{bottom:650.160000px;}
.y3b_c01185{bottom:651.600000px;}
.y3a_c01185{bottom:653.040000px;}
.y30_c01185{bottom:685.440000px;}
.y32_c01185{bottom:691.920000px;}
.y34_c01185{bottom:693.360000px;}
.y31_c01185{bottom:694.080000px;}
.y33_c01185{bottom:695.520000px;}
.y2d_c01185{bottom:726.480000px;}
.y2c_c01185{bottom:727.920000px;}
.y2f_c01185{bottom:734.400000px;}
.y2e_c01185{bottom:735.840000px;}
.y25_c01185{bottom:769.680000px;}
.y24_c01185{bottom:770.400000px;}
.y27_c01185{bottom:777.600000px;}
.y2a_c01185{bottom:778.320000px;}
.y29_c01185{bottom:779.040000px;}
.y26_c01185{bottom:779.760000px;}
.y28_c01185{bottom:780.480000px;}
.y2b_c01185{bottom:781.200000px;}
.y1e_c01185{bottom:812.880000px;}
.y20_c01185{bottom:820.080000px;}
.y21_c01185{bottom:821.520000px;}
.y1f_c01185{bottom:822.240000px;}
.y22_c01185{bottom:823.680000px;}
.y23_c01185{bottom:824.400000px;}
.y19_c01185{bottom:855.360000px;}
.y18_c01185{bottom:856.080000px;}
.y1a_c01185{bottom:864.720000px;}
.y1b_c01185{bottom:866.160000px;}
.y1d_c01185{bottom:866.880000px;}
.y1c_c01185{bottom:867.600000px;}
.y12_c01185{bottom:897.840000px;}
.y11_c01185{bottom:898.560000px;}
.y14_c01185{bottom:905.760000px;}
.y13_c01185{bottom:907.920000px;}
.y15_c01185{bottom:909.360000px;}
.y16_c01185{bottom:910.080000px;}
.y17_c01185{bottom:910.800000px;}
.yd_c01185{bottom:940.320000px;}
.yc_c01185{bottom:941.040000px;}
.yf_c01185{bottom:950.400000px;}
.ye_c01185{bottom:951.120000px;}
.y10_c01185{bottom:952.560000px;}
.y8_c01185{bottom:983.520000px;}
.y7_c01185{bottom:984.240000px;}
.ya_c01185{bottom:992.880000px;}
.y9_c01185{bottom:994.320000px;}
.yb_c01185{bottom:997.200000px;}
.y3_c01185{bottom:1027.440000px;}
.y2_c01185{bottom:1028.160000px;}
.y5_c01185{bottom:1037.520000px;}
.y6_c01185{bottom:1038.240000px;}
.y4_c01185{bottom:1038.960000px;}
.y1_c01185{bottom:1101.600000px;}
.h4_c01185{height:38.875781px;}
.h8_c01185{height:41.467500px;}
.hb_c01185{height:43.770937px;}
.h7_c01185{height:44.059219px;}
.h5_c01185{height:46.650937px;}
.h3_c01185{height:49.242656px;}
.ha_c01185{height:49.530938px;}
.h6_c01185{height:51.834375px;}
.h9_c01185{height:54.426094px;}
.hd_c01185{height:57.017812px;}
.hc_c01185{height:59.609531px;}
.h2_c01185{height:62.201250px;}
.he_c01185{height:64.792969px;}
.h1_c01185{height:1145.250000px;}
.h0_c01185{height:1145.520000px;}
.w0_c01185{width:774.000000px;}
.x0_c01185{left:0.000000px;}
.x2_c01185{left:54.000000px;}
.xa_c01185{left:55.440000px;}
.x11_c01185{left:56.880000px;}
.x1a_c01185{left:58.320000px;}
.x21_c01185{left:59.760000px;}
.x28_c01185{left:61.200000px;}
.x2f_c01185{left:62.640000px;}
.x35_c01185{left:64.080000px;}
.x3b_c01185{left:65.520000px;}
.x3_c01185{left:136.080000px;}
.xf_c01185{left:137.520000px;}
.x17_c01185{left:138.960000px;}
.x1b_c01185{left:140.400000px;}
.x23_c01185{left:141.840000px;}
.x2b_c01185{left:143.280000px;}
.x33_c01185{left:144.720000px;}
.x3c_c01185{left:146.160000px;}
.x30_c01185{left:231.120000px;}
.x2c_c01185{left:260.640000px;}
.x3f_c01185{left:275.760000px;}
.x3d_c01185{left:286.560000px;}
.x31_c01185{left:358.560000px;}
.x34_c01185{left:360.000000px;}
.x36_c01185{left:403.200000px;}
.x4_c01185{left:537.120000px;}
.x10_c01185{left:538.560000px;}
.x12_c01185{left:540.000000px;}
.x1c_c01185{left:541.440000px;}
.x26_c01185{left:543.600000px;}
.x2d_c01185{left:545.040000px;}
.x38_c01185{left:546.480000px;}
.x40_c01185{left:547.920000px;}
.x5_c01185{left:558.000000px;}
.xc_c01185{left:559.440000px;}
.x13_c01185{left:561.600000px;}
.x1e_c01185{left:563.760000px;}
.x2e_c01185{left:565.920000px;}
.x39_c01185{left:568.080000px;}
.x32_c01185{left:587.520000px;}
.x3a_c01185{left:588.960000px;}
.x6_c01185{left:613.440000px;}
.xd_c01185{left:614.880000px;}
.x14_c01185{left:616.320000px;}
.x1f_c01185{left:617.760000px;}
.x24_c01185{left:619.200000px;}
.x29_c01185{left:620.640000px;}
.x7_c01185{left:645.840000px;}
.xb_c01185{left:647.280000px;}
.x15_c01185{left:648.720000px;}
.x18_c01185{left:650.160000px;}
.x25_c01185{left:652.320000px;}
.x3e_c01185{left:656.640000px;}
.x1_c01185{left:661.680000px;}
.x20_c01185{left:684.720000px;}
.x8_c01185{left:689.040000px;}
.xe_c01185{left:691.200000px;}
.x19_c01185{left:693.360000px;}
.x22_c01185{left:695.520000px;}
.x2a_c01185{left:697.680000px;}
.x37_c01185{left:699.120000px;}
.x9_c01185{left:710.640000px;}
.x16_c01185{left:712.800000px;}
.x1d_c01185{left:714.960000px;}
.x27_c01185{left:717.120000px;}
@media print{
.v2_c01185{vertical-align:-2.560000pt;}
.v0_c01185{vertical-align:0.000000pt;}
.v1_c01185{vertical-align:2.560000pt;}
.ls1_c01185{letter-spacing:0.000000pt;}
.ls0_c01185{letter-spacing:40.516267pt;}
.ws3_c01185{word-spacing:0.000000pt;}
.ws0_c01185{word-spacing:9.126400pt;}
.ws2_c01185{word-spacing:9.721823pt;}
.ws1_c01185{word-spacing:11.214098pt;}
.fs2_c01185{font-size:38.400000pt;}
.fs6_c01185{font-size:40.960000pt;}
.fs5_c01185{font-size:43.520000pt;}
.fs3_c01185{font-size:46.080000pt;}
.fs1_c01185{font-size:48.640000pt;}
.fs4_c01185{font-size:51.200000pt;}
.fs7_c01185{font-size:53.760000pt;}
.fs9_c01185{font-size:56.320000pt;}
.fs8_c01185{font-size:58.880000pt;}
.fs0_c01185{font-size:61.440000pt;}
.fsa_c01185{font-size:64.000000pt;}
.y0_c01185{bottom:0.000000pt;}
.y83_c01185{bottom:76.160000pt;}
.y82_c01185{bottom:77.440000pt;}
.y84_c01185{bottom:78.080000pt;}
.y81_c01185{bottom:80.640000pt;}
.y7e_c01185{bottom:113.920000pt;}
.y7c_c01185{bottom:114.560000pt;}
.y7f_c01185{bottom:115.840000pt;}
.y80_c01185{bottom:116.480000pt;}
.y7d_c01185{bottom:117.120000pt;}
.y7b_c01185{bottom:117.760000pt;}
.y76_c01185{bottom:152.320000pt;}
.y77_c01185{bottom:153.600000pt;}
.y79_c01185{bottom:154.240000pt;}
.y75_c01185{bottom:155.520000pt;}
.y7a_c01185{bottom:156.160000pt;}
.y78_c01185{bottom:156.800000pt;}
.y70_c01185{bottom:190.080000pt;}
.y71_c01185{bottom:191.360000pt;}
.y73_c01185{bottom:192.000000pt;}
.y6f_c01185{bottom:192.640000pt;}
.y72_c01185{bottom:193.280000pt;}
.y74_c01185{bottom:193.920000pt;}
.y6a_c01185{bottom:227.840000pt;}
.y6c_c01185{bottom:228.480000pt;}
.y6b_c01185{bottom:229.120000pt;}
.y6d_c01185{bottom:230.400000pt;}
.y69_c01185{bottom:231.040000pt;}
.y6e_c01185{bottom:231.680000pt;}
.y63_c01185{bottom:266.240000pt;}
.y64_c01185{bottom:266.880000pt;}
.y62_c01185{bottom:268.160000pt;}
.y65_c01185{bottom:268.800000pt;}
.y67_c01185{bottom:269.440000pt;}
.y66_c01185{bottom:271.360000pt;}
.y68_c01185{bottom:272.000000pt;}
.y5e_c01185{bottom:304.000000pt;}
.y5d_c01185{bottom:304.640000pt;}
.y5c_c01185{bottom:305.920000pt;}
.y60_c01185{bottom:307.840000pt;}
.y5f_c01185{bottom:308.480000pt;}
.y61_c01185{bottom:309.760000pt;}
.y59_c01185{bottom:342.400000pt;}
.y58_c01185{bottom:343.680000pt;}
.y5b_c01185{bottom:346.240000pt;}
.y5a_c01185{bottom:346.880000pt;}
.y54_c01185{bottom:380.800000pt;}
.y53_c01185{bottom:382.080000pt;}
.y56_c01185{bottom:385.280000pt;}
.y55_c01185{bottom:386.560000pt;}
.y57_c01185{bottom:387.200000pt;}
.y4f_c01185{bottom:418.560000pt;}
.y4e_c01185{bottom:420.480000pt;}
.y51_c01185{bottom:423.040000pt;}
.y50_c01185{bottom:424.320000pt;}
.y52_c01185{bottom:426.240000pt;}
.y4b_c01185{bottom:456.320000pt;}
.y4a_c01185{bottom:457.600000pt;}
.y4d_c01185{bottom:462.080000pt;}
.y4c_c01185{bottom:462.720000pt;}
.y45_c01185{bottom:494.720000pt;}
.y44_c01185{bottom:496.640000pt;}
.y47_c01185{bottom:499.840000pt;}
.y46_c01185{bottom:501.120000pt;}
.y48_c01185{bottom:501.760000pt;}
.y49_c01185{bottom:502.400000pt;}
.y3d_c01185{bottom:532.480000pt;}
.y3c_c01185{bottom:534.400000pt;}
.y3f_c01185{bottom:538.240000pt;}
.y40_c01185{bottom:538.880000pt;}
.y41_c01185{bottom:539.520000pt;}
.y3e_c01185{bottom:540.160000pt;}
.y43_c01185{bottom:541.440000pt;}
.y42_c01185{bottom:542.080000pt;}
.y36_c01185{bottom:570.880000pt;}
.y35_c01185{bottom:572.160000pt;}
.y38_c01185{bottom:576.640000pt;}
.y39_c01185{bottom:577.280000pt;}
.y37_c01185{bottom:577.920000pt;}
.y3b_c01185{bottom:579.200000pt;}
.y3a_c01185{bottom:580.480000pt;}
.y30_c01185{bottom:609.280000pt;}
.y32_c01185{bottom:615.040000pt;}
.y34_c01185{bottom:616.320000pt;}
.y31_c01185{bottom:616.960000pt;}
.y33_c01185{bottom:618.240000pt;}
.y2d_c01185{bottom:645.760000pt;}
.y2c_c01185{bottom:647.040000pt;}
.y2f_c01185{bottom:652.800000pt;}
.y2e_c01185{bottom:654.080000pt;}
.y25_c01185{bottom:684.160000pt;}
.y24_c01185{bottom:684.800000pt;}
.y27_c01185{bottom:691.200000pt;}
.y2a_c01185{bottom:691.840000pt;}
.y29_c01185{bottom:692.480000pt;}
.y26_c01185{bottom:693.120000pt;}
.y28_c01185{bottom:693.760000pt;}
.y2b_c01185{bottom:694.400000pt;}
.y1e_c01185{bottom:722.560000pt;}
.y20_c01185{bottom:728.960000pt;}
.y21_c01185{bottom:730.240000pt;}
.y1f_c01185{bottom:730.880000pt;}
.y22_c01185{bottom:732.160000pt;}
.y23_c01185{bottom:732.800000pt;}
.y19_c01185{bottom:760.320000pt;}
.y18_c01185{bottom:760.960000pt;}
.y1a_c01185{bottom:768.640000pt;}
.y1b_c01185{bottom:769.920000pt;}
.y1d_c01185{bottom:770.560000pt;}
.y1c_c01185{bottom:771.200000pt;}
.y12_c01185{bottom:798.080000pt;}
.y11_c01185{bottom:798.720000pt;}
.y14_c01185{bottom:805.120000pt;}
.y13_c01185{bottom:807.040000pt;}
.y15_c01185{bottom:808.320000pt;}
.y16_c01185{bottom:808.960000pt;}
.y17_c01185{bottom:809.600000pt;}
.yd_c01185{bottom:835.840000pt;}
.yc_c01185{bottom:836.480000pt;}
.yf_c01185{bottom:844.800000pt;}
.ye_c01185{bottom:845.440000pt;}
.y10_c01185{bottom:846.720000pt;}
.y8_c01185{bottom:874.240000pt;}
.y7_c01185{bottom:874.880000pt;}
.ya_c01185{bottom:882.560000pt;}
.y9_c01185{bottom:883.840000pt;}
.yb_c01185{bottom:886.400000pt;}
.y3_c01185{bottom:913.280000pt;}
.y2_c01185{bottom:913.920000pt;}
.y5_c01185{bottom:922.240000pt;}
.y6_c01185{bottom:922.880000pt;}
.y4_c01185{bottom:923.520000pt;}
.y1_c01185{bottom:979.200000pt;}
.h4_c01185{height:34.556250pt;}
.h8_c01185{height:36.860000pt;}
.hb_c01185{height:38.907500pt;}
.h7_c01185{height:39.163750pt;}
.h5_c01185{height:41.467500pt;}
.h3_c01185{height:43.771250pt;}
.ha_c01185{height:44.027500pt;}
.h6_c01185{height:46.075000pt;}
.h9_c01185{height:48.378750pt;}
.hd_c01185{height:50.682500pt;}
.hc_c01185{height:52.986250pt;}
.h2_c01185{height:55.290000pt;}
.he_c01185{height:57.593750pt;}
.h1_c01185{height:1018.000000pt;}
.h0_c01185{height:1018.240000pt;}
.w0_c01185{width:688.000000pt;}
.x0_c01185{left:0.000000pt;}
.x2_c01185{left:48.000000pt;}
.xa_c01185{left:49.280000pt;}
.x11_c01185{left:50.560000pt;}
.x1a_c01185{left:51.840000pt;}
.x21_c01185{left:53.120000pt;}
.x28_c01185{left:54.400000pt;}
.x2f_c01185{left:55.680000pt;}
.x35_c01185{left:56.960000pt;}
.x3b_c01185{left:58.240000pt;}
.x3_c01185{left:120.960000pt;}
.xf_c01185{left:122.240000pt;}
.x17_c01185{left:123.520000pt;}
.x1b_c01185{left:124.800000pt;}
.x23_c01185{left:126.080000pt;}
.x2b_c01185{left:127.360000pt;}
.x33_c01185{left:128.640000pt;}
.x3c_c01185{left:129.920000pt;}
.x30_c01185{left:205.440000pt;}
.x2c_c01185{left:231.680000pt;}
.x3f_c01185{left:245.120000pt;}
.x3d_c01185{left:254.720000pt;}
.x31_c01185{left:318.720000pt;}
.x34_c01185{left:320.000000pt;}
.x36_c01185{left:358.400000pt;}
.x4_c01185{left:477.440000pt;}
.x10_c01185{left:478.720000pt;}
.x12_c01185{left:480.000000pt;}
.x1c_c01185{left:481.280000pt;}
.x26_c01185{left:483.200000pt;}
.x2d_c01185{left:484.480000pt;}
.x38_c01185{left:485.760000pt;}
.x40_c01185{left:487.040000pt;}
.x5_c01185{left:496.000000pt;}
.xc_c01185{left:497.280000pt;}
.x13_c01185{left:499.200000pt;}
.x1e_c01185{left:501.120000pt;}
.x2e_c01185{left:503.040000pt;}
.x39_c01185{left:504.960000pt;}
.x32_c01185{left:522.240000pt;}
.x3a_c01185{left:523.520000pt;}
.x6_c01185{left:545.280000pt;}
.xd_c01185{left:546.560000pt;}
.x14_c01185{left:547.840000pt;}
.x1f_c01185{left:549.120000pt;}
.x24_c01185{left:550.400000pt;}
.x29_c01185{left:551.680000pt;}
.x7_c01185{left:574.080000pt;}
.xb_c01185{left:575.360000pt;}
.x15_c01185{left:576.640000pt;}
.x18_c01185{left:577.920000pt;}
.x25_c01185{left:579.840000pt;}
.x3e_c01185{left:583.680000pt;}
.x1_c01185{left:588.160000pt;}
.x20_c01185{left:608.640000pt;}
.x8_c01185{left:612.480000pt;}
.xe_c01185{left:614.400000pt;}
.x19_c01185{left:616.320000pt;}
.x22_c01185{left:618.240000pt;}
.x2a_c01185{left:620.160000pt;}
.x37_c01185{left:621.440000pt;}
.x9_c01185{left:631.680000pt;}
.x16_c01185{left:633.600000pt;}
.x1d_c01185{left:635.520000pt;}
.x27_c01185{left:637.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4533aa6bc400c1f0c277c9bd.woff2')format("woff");}.ff1_c01186{font-family:ff1_c01186;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3e_c01186{transform:matrix(0.092725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092725,0.000000,0.000000,0.250000,0,0);}
.m3c_c01186{transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);}
.m33_c01186{transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);}
.m2f_c01186{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);}
.m42_c01186{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m31_c01186{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m1f_c01186{transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);}
.m22_c01186{transform:matrix(0.246375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246375,0.000000,0.000000,0.250000,0,0);}
.m3a_c01186{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m9_c01186{transform:matrix(0.247975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247975,0.000000,0.000000,0.250000,0,0);}
.m15_c01186{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m32_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);}
.m18_c01186{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);}
.m30_c01186{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);}
.m2c_c01186{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m8_c01186{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m19_c01186{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_c01186{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1_c01186{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01186{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m2_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);}
.m17_c01186{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);}
.m29_c01186{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.ma_c01186{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01186{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01186{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m7_c01186{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01186{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m5_c01186{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m27_c01186{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.md_c01186{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01186{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m10_c01186{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m35_c01186{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m12_c01186{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01186{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m38_c01186{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01186{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);}
.m25_c01186{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m11_c01186{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.mb_c01186{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);}
.m21_c01186{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01186{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.me_c01186{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m3_c01186{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m39_c01186{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);}
.m40_c01186{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m23_c01186{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m6_c01186{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m14_c01186{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);}
.m26_c01186{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);}
.m13_c01186{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m0_c01186{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01186{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);}
.mf_c01186{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01186{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m41_c01186{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m34_c01186{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_c01186{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m20_c01186{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);}
.mc_c01186{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m28_c01186{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m37_c01186{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m24_c01186{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m36_c01186{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01186{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01186{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.v2_c01186{vertical-align:-8.640000px;}
.v0_c01186{vertical-align:0.000000px;}
.v1_c01186{vertical-align:2.880000px;}
.v3_c01186{vertical-align:5.760000px;}
.ls1_c01186{letter-spacing:0.000000px;}
.ls0_c01186{letter-spacing:47.893680px;}
.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;}
}
.ws4_c01186{word-spacing:0.000000px;}
.ws3_c01186{word-spacing:4.770000px;}
.ws0_c01186{word-spacing:11.726957px;}
.ws2_c01186{word-spacing:11.855347px;}
.ws1_c01186{word-spacing:14.955600px;}
.fc0_c01186{color:transparent;}
.fsc_c01186{font-size:34.560000px;}
.fsa_c01186{font-size:37.440000px;}
.fsd_c01186{font-size:40.320000px;}
.fs7_c01186{font-size:46.080000px;}
.fs8_c01186{font-size:48.960000px;}
.fs0_c01186{font-size:51.840000px;}
.fs3_c01186{font-size:54.720000px;}
.fs2_c01186{font-size:57.600000px;}
.fs6_c01186{font-size:60.480000px;}
.fsb_c01186{font-size:66.240000px;}
.fs1_c01186{font-size:69.120000px;}
.fs4_c01186{font-size:72.000000px;}
.fs9_c01186{font-size:74.880000px;}
.fs5_c01186{font-size:77.760000px;}
.y0_c01186{bottom:0.000000px;}
.y99_c01186{bottom:56.160000px;}
.y81_c01186{bottom:56.880000px;}
.y80_c01186{bottom:59.040000px;}
.y84_c01186{bottom:59.760000px;}
.y7f_c01186{bottom:61.920000px;}
.y98_c01186{bottom:97.920000px;}
.y97_c01186{bottom:99.360000px;}
.y7e_c01186{bottom:100.080000px;}
.y7c_c01186{bottom:100.800000px;}
.y7d_c01186{bottom:101.520000px;}
.y83_c01186{bottom:102.240000px;}
.y96_c01186{bottom:102.960000px;}
.y7b_c01186{bottom:104.400000px;}
.y7a_c01186{bottom:143.280000px;}
.y78_c01186{bottom:144.000000px;}
.y82_c01186{bottom:144.720000px;}
.y95_c01186{bottom:146.160000px;}
.y77_c01186{bottom:146.880000px;}
.y79_c01186{bottom:147.600000px;}
.y76_c01186{bottom:185.760000px;}
.y74_c01186{bottom:187.200000px;}
.y94_c01186{bottom:187.920000px;}
.y73_c01186{bottom:189.360000px;}
.y75_c01186{bottom:190.080000px;}
.y42_c01186{bottom:228.960000px;}
.y40_c01186{bottom:229.680000px;}
.y72_c01186{bottom:230.400000px;}
.y93_c01186{bottom:231.120000px;}
.y3f_c01186{bottom:231.840000px;}
.y41_c01186{bottom:232.560000px;}
.y92_c01186{bottom:272.160000px;}
.y3d_c01186{bottom:272.880000px;}
.y70_c01186{bottom:273.600000px;}
.y71_c01186{bottom:274.320000px;}
.y3e_c01186{bottom:275.040000px;}
.y3c_c01186{bottom:275.760000px;}
.y91_c01186{bottom:288.720000px;}
.y3a_c01186{bottom:315.360000px;}
.y3b_c01186{bottom:316.080000px;}
.y6e_c01186{bottom:316.800000px;}
.y39_c01186{bottom:318.240000px;}
.y6f_c01186{bottom:318.960000px;}
.y90_c01186{bottom:319.680000px;}
.y37_c01186{bottom:357.120000px;}
.y38_c01186{bottom:357.840000px;}
.y8f_c01186{bottom:358.560000px;}
.y6d_c01186{bottom:359.280000px;}
.y36_c01186{bottom:360.000000px;}
.y8d_c01186{bottom:360.720000px;}
.y8e_c01186{bottom:362.160000px;}
.y31_c01186{bottom:399.600000px;}
.y35_c01186{bottom:400.320000px;}
.y33_c01186{bottom:401.040000px;}
.y6c_c01186{bottom:401.760000px;}
.y30_c01186{bottom:402.480000px;}
.y32_c01186{bottom:403.200000px;}
.y34_c01186{bottom:403.920000px;}
.y8c_c01186{bottom:404.640000px;}
.y2e_c01186{bottom:442.800000px;}
.y2f_c01186{bottom:443.520000px;}
.y8b_c01186{bottom:444.240000px;}
.y2d_c01186{bottom:444.960000px;}
.y6b_c01186{bottom:445.680000px;}
.y8a_c01186{bottom:447.840000px;}
.y2a_c01186{bottom:485.280000px;}
.y2b_c01186{bottom:486.000000px;}
.y2c_c01186{bottom:486.720000px;}
.y29_c01186{bottom:487.440000px;}
.y89_c01186{bottom:488.160000px;}
.y6a_c01186{bottom:490.320000px;}
.y88_c01186{bottom:491.040000px;}
.y27_c01186{bottom:527.040000px;}
.y28_c01186{bottom:528.480000px;}
.y26_c01186{bottom:529.200000px;}
.y85_c01186{bottom:530.640000px;}
.y69_c01186{bottom:531.360000px;}
.y87_c01186{bottom:532.800000px;}
.y86_c01186{bottom:534.240000px;}
.y22_c01186{bottom:570.240000px;}
.y23_c01186{bottom:570.960000px;}
.y25_c01186{bottom:571.680000px;}
.y21_c01186{bottom:572.400000px;}
.y68_c01186{bottom:573.840000px;}
.y24_c01186{bottom:574.560000px;}
.y1f_c01186{bottom:612.720000px;}
.y20_c01186{bottom:614.160000px;}
.y1e_c01186{bottom:614.880000px;}
.y5f_c01186{bottom:617.040000px;}
.y60_c01186{bottom:617.760000px;}
.y67_c01186{bottom:619.920000px;}
.y1c_c01186{bottom:655.920000px;}
.y1b_c01186{bottom:657.360000px;}
.y1d_c01186{bottom:659.520000px;}
.y5d_c01186{bottom:660.240000px;}
.y5e_c01186{bottom:660.960000px;}
.y66_c01186{bottom:663.120000px;}
.y19_c01186{bottom:699.120000px;}
.y18_c01186{bottom:699.840000px;}
.y1a_c01186{bottom:702.720000px;}
.y65_c01186{bottom:703.440000px;}
.y5c_c01186{bottom:704.160000px;}
.y63_c01186{bottom:705.600000px;}
.y64_c01186{bottom:706.320000px;}
.y16_c01186{bottom:741.600000px;}
.y15_c01186{bottom:743.040000px;}
.y17_c01186{bottom:745.920000px;}
.y5a_c01186{bottom:746.640000px;}
.y61_c01186{bottom:748.080000px;}
.y5b_c01186{bottom:748.800000px;}
.y62_c01186{bottom:749.520000px;}
.y12_c01186{bottom:784.800000px;}
.y14_c01186{bottom:786.240000px;}
.y13_c01186{bottom:789.120000px;}
.y58_c01186{bottom:789.840000px;}
.y59_c01186{bottom:791.280000px;}
.yf_c01186{bottom:827.280000px;}
.ye_c01186{bottom:828.000000px;}
.y11_c01186{bottom:830.160000px;}
.y10_c01186{bottom:830.880000px;}
.y55_c01186{bottom:832.320000px;}
.y57_c01186{bottom:833.040000px;}
.y56_c01186{bottom:834.480000px;}
.yc_c01186{bottom:869.040000px;}
.yb_c01186{bottom:870.480000px;}
.yd_c01186{bottom:871.920000px;}
.y52_c01186{bottom:875.520000px;}
.y53_c01186{bottom:876.240000px;}
.y54_c01186{bottom:876.960000px;}
.y9_c01186{bottom:912.960000px;}
.y8_c01186{bottom:913.680000px;}
.ya_c01186{bottom:914.400000px;}
.y4f_c01186{bottom:918.720000px;}
.y50_c01186{bottom:919.440000px;}
.y51_c01186{bottom:921.600000px;}
.y6_c01186{bottom:955.440000px;}
.y7_c01186{bottom:957.600000px;}
.y4c_c01186{bottom:961.200000px;}
.y4d_c01186{bottom:961.920000px;}
.y4e_c01186{bottom:963.360000px;}
.y3_c01186{bottom:997.920000px;}
.y4_c01186{bottom:998.640000px;}
.y5_c01186{bottom:1000.800000px;}
.y48_c01186{bottom:1004.400000px;}
.y49_c01186{bottom:1005.120000px;}
.y4a_c01186{bottom:1005.840000px;}
.y4b_c01186{bottom:1008.720000px;}
.y1_c01186{bottom:1041.120000px;}
.y2_c01186{bottom:1043.280000px;}
.y44_c01186{bottom:1047.600000px;}
.y45_c01186{bottom:1048.320000px;}
.y46_c01186{bottom:1049.040000px;}
.y47_c01186{bottom:1051.200000px;}
.y43_c01186{bottom:1108.080000px;}
.hd_c01186{height:31.100625px;}
.hb_c01186{height:33.692344px;}
.hf_c01186{height:36.284062px;}
.h8_c01186{height:41.467500px;}
.h9_c01186{height:44.059219px;}
.h1_c01186{height:46.650937px;}
.h4_c01186{height:49.242656px;}
.h3_c01186{height:51.834375px;}
.he_c01186{height:52.122656px;}
.h10_c01186{height:52.410937px;}
.h7_c01186{height:54.426094px;}
.hc_c01186{height:59.609531px;}
.h2_c01186{height:62.201250px;}
.h5_c01186{height:64.792969px;}
.ha_c01186{height:67.384687px;}
.h6_c01186{height:69.976406px;}
.h0_c01186{height:1152.000000px;}
.w1_c01186{width:784.500000px;}
.w0_c01186{width:784.800000px;}
.x0_c01186{left:0.000000px;}
.x1_c01186{left:61.200000px;}
.x4_c01186{left:62.640000px;}
.xc_c01186{left:64.080000px;}
.x13_c01186{left:65.520000px;}
.x1b_c01186{left:66.960000px;}
.x37_c01186{left:68.400000px;}
.x2_c01186{left:143.280000px;}
.x7_c01186{left:144.720000px;}
.x11_c01186{left:146.160000px;}
.x18_c01186{left:147.600000px;}
.x1d_c01186{left:149.040000px;}
.x39_c01186{left:150.480000px;}
.x3_c01186{left:229.680000px;}
.x8_c01186{left:231.120000px;}
.xe_c01186{left:232.560000px;}
.x14_c01186{left:234.000000px;}
.x19_c01186{left:235.440000px;}
.x3a_c01186{left:236.880000px;}
.x5_c01186{left:272.880000px;}
.xd_c01186{left:274.320000px;}
.x15_c01186{left:276.480000px;}
.x33_c01186{left:277.920000px;}
.x9_c01186{left:285.120000px;}
.x6_c01186{left:305.280000px;}
.xb_c01186{left:316.080000px;}
.xf_c01186{left:360.720000px;}
.x12_c01186{left:362.160000px;}
.x1e_c01186{left:363.600000px;}
.x38_c01186{left:365.040000px;}
.x1a_c01186{left:395.280000px;}
.x10_c01186{left:403.920000px;}
.x16_c01186{left:406.080000px;}
.x36_c01186{left:408.240000px;}
.xa_c01186{left:414.000000px;}
.x1f_c01186{left:417.600000px;}
.x34_c01186{left:419.040000px;}
.x17_c01186{left:448.560000px;}
.x1c_c01186{left:450.720000px;}
.x35_c01186{left:473.040000px;}
.x21_c01186{left:544.320000px;}
.x27_c01186{left:545.759882px;}
.x2f_c01186{left:547.200000px;}
.x31_c01186{left:548.640000px;}
.x3b_c01186{left:550.080000px;}
.x22_c01186{left:565.920000px;}
.x28_c01186{left:568.080000px;}
.x30_c01186{left:569.520000px;}
.x32_c01186{left:570.960000px;}
.x23_c01186{left:586.080000px;}
.x25_c01186{left:587.520000px;}
.x2e_c01186{left:589.680000px;}
.x29_c01186{left:622.080000px;}
.x2c_c01186{left:623.520225px;}
.x3f_c01186{left:624.960000px;}
.x42_c01186{left:626.400000px;}
.x2a_c01186{left:655.200000px;}
.x2d_c01186{left:656.640000px;}
.x3e_c01186{left:658.080000px;}
.x43_c01186{left:659.520000px;}
.x45_c01186{left:660.960000px;}
.x20_c01186{left:665.280000px;}
.x24_c01186{left:696.240000px;}
.x26_c01186{left:697.680000px;}
.x2b_c01186{left:699.120000px;}
.x3c_c01186{left:701.280000px;}
.x44_c01186{left:702.720000px;}
.x47_c01186{left:704.160000px;}
.x3d_c01186{left:721.440000px;}
.x41_c01186{left:722.880000px;}
.x46_c01186{left:724.320000px;}
.x40_c01186{left:777.600000px;}
@media print{
.v2_c01186{vertical-align:-7.680000pt;}
.v0_c01186{vertical-align:0.000000pt;}
.v1_c01186{vertical-align:2.560000pt;}
.v3_c01186{vertical-align:5.120000pt;}
.ls1_c01186{letter-spacing:0.000000pt;}
.ls0_c01186{letter-spacing:42.572160pt;}
.ws4_c01186{word-spacing:0.000000pt;}
.ws3_c01186{word-spacing:4.240000pt;}
.ws0_c01186{word-spacing:10.423962pt;}
.ws2_c01186{word-spacing:10.538086pt;}
.ws1_c01186{word-spacing:13.293867pt;}
.fsc_c01186{font-size:30.720000pt;}
.fsa_c01186{font-size:33.280000pt;}
.fsd_c01186{font-size:35.840000pt;}
.fs7_c01186{font-size:40.960000pt;}
.fs8_c01186{font-size:43.520000pt;}
.fs0_c01186{font-size:46.080000pt;}
.fs3_c01186{font-size:48.640000pt;}
.fs2_c01186{font-size:51.200000pt;}
.fs6_c01186{font-size:53.760000pt;}
.fsb_c01186{font-size:58.880000pt;}
.fs1_c01186{font-size:61.440000pt;}
.fs4_c01186{font-size:64.000000pt;}
.fs9_c01186{font-size:66.560000pt;}
.fs5_c01186{font-size:69.120000pt;}
.y0_c01186{bottom:0.000000pt;}
.y99_c01186{bottom:49.920000pt;}
.y81_c01186{bottom:50.560000pt;}
.y80_c01186{bottom:52.480000pt;}
.y84_c01186{bottom:53.120000pt;}
.y7f_c01186{bottom:55.040000pt;}
.y98_c01186{bottom:87.040000pt;}
.y97_c01186{bottom:88.320000pt;}
.y7e_c01186{bottom:88.960000pt;}
.y7c_c01186{bottom:89.600000pt;}
.y7d_c01186{bottom:90.240000pt;}
.y83_c01186{bottom:90.880000pt;}
.y96_c01186{bottom:91.520000pt;}
.y7b_c01186{bottom:92.800000pt;}
.y7a_c01186{bottom:127.360000pt;}
.y78_c01186{bottom:128.000000pt;}
.y82_c01186{bottom:128.640000pt;}
.y95_c01186{bottom:129.920000pt;}
.y77_c01186{bottom:130.560000pt;}
.y79_c01186{bottom:131.200000pt;}
.y76_c01186{bottom:165.120000pt;}
.y74_c01186{bottom:166.400000pt;}
.y94_c01186{bottom:167.040000pt;}
.y73_c01186{bottom:168.320000pt;}
.y75_c01186{bottom:168.960000pt;}
.y42_c01186{bottom:203.520000pt;}
.y40_c01186{bottom:204.160000pt;}
.y72_c01186{bottom:204.800000pt;}
.y93_c01186{bottom:205.440000pt;}
.y3f_c01186{bottom:206.080000pt;}
.y41_c01186{bottom:206.720000pt;}
.y92_c01186{bottom:241.920000pt;}
.y3d_c01186{bottom:242.560000pt;}
.y70_c01186{bottom:243.200000pt;}
.y71_c01186{bottom:243.840000pt;}
.y3e_c01186{bottom:244.480000pt;}
.y3c_c01186{bottom:245.120000pt;}
.y91_c01186{bottom:256.640000pt;}
.y3a_c01186{bottom:280.320000pt;}
.y3b_c01186{bottom:280.960000pt;}
.y6e_c01186{bottom:281.600000pt;}
.y39_c01186{bottom:282.880000pt;}
.y6f_c01186{bottom:283.520000pt;}
.y90_c01186{bottom:284.160000pt;}
.y37_c01186{bottom:317.440000pt;}
.y38_c01186{bottom:318.080000pt;}
.y8f_c01186{bottom:318.720000pt;}
.y6d_c01186{bottom:319.360000pt;}
.y36_c01186{bottom:320.000000pt;}
.y8d_c01186{bottom:320.640000pt;}
.y8e_c01186{bottom:321.920000pt;}
.y31_c01186{bottom:355.200000pt;}
.y35_c01186{bottom:355.840000pt;}
.y33_c01186{bottom:356.480000pt;}
.y6c_c01186{bottom:357.120000pt;}
.y30_c01186{bottom:357.760000pt;}
.y32_c01186{bottom:358.400000pt;}
.y34_c01186{bottom:359.040000pt;}
.y8c_c01186{bottom:359.680000pt;}
.y2e_c01186{bottom:393.600000pt;}
.y2f_c01186{bottom:394.240000pt;}
.y8b_c01186{bottom:394.880000pt;}
.y2d_c01186{bottom:395.520000pt;}
.y6b_c01186{bottom:396.160000pt;}
.y8a_c01186{bottom:398.080000pt;}
.y2a_c01186{bottom:431.360000pt;}
.y2b_c01186{bottom:432.000000pt;}
.y2c_c01186{bottom:432.640000pt;}
.y29_c01186{bottom:433.280000pt;}
.y89_c01186{bottom:433.920000pt;}
.y6a_c01186{bottom:435.840000pt;}
.y88_c01186{bottom:436.480000pt;}
.y27_c01186{bottom:468.480000pt;}
.y28_c01186{bottom:469.760000pt;}
.y26_c01186{bottom:470.400000pt;}
.y85_c01186{bottom:471.680000pt;}
.y69_c01186{bottom:472.320000pt;}
.y87_c01186{bottom:473.600000pt;}
.y86_c01186{bottom:474.880000pt;}
.y22_c01186{bottom:506.880000pt;}
.y23_c01186{bottom:507.520000pt;}
.y25_c01186{bottom:508.160000pt;}
.y21_c01186{bottom:508.800000pt;}
.y68_c01186{bottom:510.080000pt;}
.y24_c01186{bottom:510.720000pt;}
.y1f_c01186{bottom:544.640000pt;}
.y20_c01186{bottom:545.920000pt;}
.y1e_c01186{bottom:546.560000pt;}
.y5f_c01186{bottom:548.480000pt;}
.y60_c01186{bottom:549.120000pt;}
.y67_c01186{bottom:551.040000pt;}
.y1c_c01186{bottom:583.040000pt;}
.y1b_c01186{bottom:584.320000pt;}
.y1d_c01186{bottom:586.240000pt;}
.y5d_c01186{bottom:586.880000pt;}
.y5e_c01186{bottom:587.520000pt;}
.y66_c01186{bottom:589.440000pt;}
.y19_c01186{bottom:621.440000pt;}
.y18_c01186{bottom:622.080000pt;}
.y1a_c01186{bottom:624.640000pt;}
.y65_c01186{bottom:625.280000pt;}
.y5c_c01186{bottom:625.920000pt;}
.y63_c01186{bottom:627.200000pt;}
.y64_c01186{bottom:627.840000pt;}
.y16_c01186{bottom:659.200000pt;}
.y15_c01186{bottom:660.480000pt;}
.y17_c01186{bottom:663.040000pt;}
.y5a_c01186{bottom:663.680000pt;}
.y61_c01186{bottom:664.960000pt;}
.y5b_c01186{bottom:665.600000pt;}
.y62_c01186{bottom:666.240000pt;}
.y12_c01186{bottom:697.600000pt;}
.y14_c01186{bottom:698.880000pt;}
.y13_c01186{bottom:701.440000pt;}
.y58_c01186{bottom:702.080000pt;}
.y59_c01186{bottom:703.360000pt;}
.yf_c01186{bottom:735.360000pt;}
.ye_c01186{bottom:736.000000pt;}
.y11_c01186{bottom:737.920000pt;}
.y10_c01186{bottom:738.560000pt;}
.y55_c01186{bottom:739.840000pt;}
.y57_c01186{bottom:740.480000pt;}
.y56_c01186{bottom:741.760000pt;}
.yc_c01186{bottom:772.480000pt;}
.yb_c01186{bottom:773.760000pt;}
.yd_c01186{bottom:775.040000pt;}
.y52_c01186{bottom:778.240000pt;}
.y53_c01186{bottom:778.880000pt;}
.y54_c01186{bottom:779.520000pt;}
.y9_c01186{bottom:811.520000pt;}
.y8_c01186{bottom:812.160000pt;}
.ya_c01186{bottom:812.800000pt;}
.y4f_c01186{bottom:816.640000pt;}
.y50_c01186{bottom:817.280000pt;}
.y51_c01186{bottom:819.200000pt;}
.y6_c01186{bottom:849.280000pt;}
.y7_c01186{bottom:851.200000pt;}
.y4c_c01186{bottom:854.400000pt;}
.y4d_c01186{bottom:855.040000pt;}
.y4e_c01186{bottom:856.320000pt;}
.y3_c01186{bottom:887.040000pt;}
.y4_c01186{bottom:887.680000pt;}
.y5_c01186{bottom:889.600000pt;}
.y48_c01186{bottom:892.800000pt;}
.y49_c01186{bottom:893.440000pt;}
.y4a_c01186{bottom:894.080000pt;}
.y4b_c01186{bottom:896.640000pt;}
.y1_c01186{bottom:925.440000pt;}
.y2_c01186{bottom:927.360000pt;}
.y44_c01186{bottom:931.200000pt;}
.y45_c01186{bottom:931.840000pt;}
.y46_c01186{bottom:932.480000pt;}
.y47_c01186{bottom:934.400000pt;}
.y43_c01186{bottom:984.960000pt;}
.hd_c01186{height:27.645000pt;}
.hb_c01186{height:29.948750pt;}
.hf_c01186{height:32.252500pt;}
.h8_c01186{height:36.860000pt;}
.h9_c01186{height:39.163750pt;}
.h1_c01186{height:41.467500pt;}
.h4_c01186{height:43.771250pt;}
.h3_c01186{height:46.075000pt;}
.he_c01186{height:46.331250pt;}
.h10_c01186{height:46.587500pt;}
.h7_c01186{height:48.378750pt;}
.hc_c01186{height:52.986250pt;}
.h2_c01186{height:55.290000pt;}
.h5_c01186{height:57.593750pt;}
.ha_c01186{height:59.897500pt;}
.h6_c01186{height:62.201250pt;}
.h0_c01186{height:1024.000000pt;}
.w1_c01186{width:697.333333pt;}
.w0_c01186{width:697.600000pt;}
.x0_c01186{left:0.000000pt;}
.x1_c01186{left:54.400000pt;}
.x4_c01186{left:55.680000pt;}
.xc_c01186{left:56.960000pt;}
.x13_c01186{left:58.240000pt;}
.x1b_c01186{left:59.520000pt;}
.x37_c01186{left:60.800000pt;}
.x2_c01186{left:127.360000pt;}
.x7_c01186{left:128.640000pt;}
.x11_c01186{left:129.920000pt;}
.x18_c01186{left:131.200000pt;}
.x1d_c01186{left:132.480000pt;}
.x39_c01186{left:133.760000pt;}
.x3_c01186{left:204.160000pt;}
.x8_c01186{left:205.440000pt;}
.xe_c01186{left:206.720000pt;}
.x14_c01186{left:208.000000pt;}
.x19_c01186{left:209.280000pt;}
.x3a_c01186{left:210.560000pt;}
.x5_c01186{left:242.560000pt;}
.xd_c01186{left:243.840000pt;}
.x15_c01186{left:245.760000pt;}
.x33_c01186{left:247.040000pt;}
.x9_c01186{left:253.440000pt;}
.x6_c01186{left:271.360000pt;}
.xb_c01186{left:280.960000pt;}
.xf_c01186{left:320.640000pt;}
.x12_c01186{left:321.920000pt;}
.x1e_c01186{left:323.200000pt;}
.x38_c01186{left:324.480000pt;}
.x1a_c01186{left:351.360000pt;}
.x10_c01186{left:359.040000pt;}
.x16_c01186{left:360.960000pt;}
.x36_c01186{left:362.880000pt;}
.xa_c01186{left:368.000000pt;}
.x1f_c01186{left:371.200000pt;}
.x34_c01186{left:372.480000pt;}
.x17_c01186{left:398.720000pt;}
.x1c_c01186{left:400.640000pt;}
.x35_c01186{left:420.480000pt;}
.x21_c01186{left:483.840000pt;}
.x27_c01186{left:485.119895pt;}
.x2f_c01186{left:486.400000pt;}
.x31_c01186{left:487.680000pt;}
.x3b_c01186{left:488.960000pt;}
.x22_c01186{left:503.040000pt;}
.x28_c01186{left:504.960000pt;}
.x30_c01186{left:506.240000pt;}
.x32_c01186{left:507.520000pt;}
.x23_c01186{left:520.960000pt;}
.x25_c01186{left:522.240000pt;}
.x2e_c01186{left:524.160000pt;}
.x29_c01186{left:552.960000pt;}
.x2c_c01186{left:554.240200pt;}
.x3f_c01186{left:555.520000pt;}
.x42_c01186{left:556.800000pt;}
.x2a_c01186{left:582.400000pt;}
.x2d_c01186{left:583.680000pt;}
.x3e_c01186{left:584.960000pt;}
.x43_c01186{left:586.240000pt;}
.x45_c01186{left:587.520000pt;}
.x20_c01186{left:591.360000pt;}
.x24_c01186{left:618.880000pt;}
.x26_c01186{left:620.160000pt;}
.x2b_c01186{left:621.440000pt;}
.x3c_c01186{left:623.360000pt;}
.x44_c01186{left:624.640000pt;}
.x47_c01186{left:625.920000pt;}
.x3d_c01186{left:641.280000pt;}
.x41_c01186{left:642.560000pt;}
.x46_c01186{left:643.840000pt;}
.x40_c01186{left:691.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2acbf2b42c540839ca9d0cb0.woff2')format("woff");}.ff1_c01187{font-family:ff1_c01187;line-height:1.109863;font-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_c01187{transform:matrix(0.180700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180700,0.000000,0.000000,0.250000,0,0);}
.m3d_c01187{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m31_c01187{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);}
.m4d_c01187{transform:matrix(0.230300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230300,0.000000,0.000000,0.250000,0,0);}
.m3_c01187{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m1_c01187{transform:matrix(0.236900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236900,0.000000,0.000000,0.250000,0,0);}
.m37_c01187{transform:matrix(0.238725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238725,0.000000,0.000000,0.250000,0,0);}
.m48_c01187{transform:matrix(0.246200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246200,0.000000,0.000000,0.250000,0,0);}
.m47_c01187{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01187{transform:matrix(0.246625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246625,0.000000,0.000000,0.250000,0,0);}
.m4_c01187{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m41_c01187{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);}
.m13_c01187{transform:matrix(0.248375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248375,0.000000,0.000000,0.250000,0,0);}
.m3a_c01187{transform:matrix(0.248575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248575,0.000000,0.000000,0.250000,0,0);}
.m4a_c01187{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m3c_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);}
.m19_c01187{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);}
.m2e_c01187{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m14_c01187{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m2_c01187{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m23_c01187{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);}
.m2f_c01187{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);}
.m32_c01187{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m9_c01187{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.ma_c01187{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);}
.m40_c01187{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.md_c01187{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m20_c01187{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m6_c01187{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01187{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);}
.m2c_c01187{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m15_c01187{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01187{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.me_c01187{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01187{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01187{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m18_c01187{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m8_c01187{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m25_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);}
.m22_c01187{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m34_c01187{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m27_c01187{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m44_c01187{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m49_c01187{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);}
.m43_c01187{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01187{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m0_c01187{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01187{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);}
.m4c_c01187{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m38_c01187{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.mc_c01187{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m16_c01187{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_c01187{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);}
.m29_c01187{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01187{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);}
.m3e_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);}
.m5_c01187{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);}
.m3f_c01187{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m36_c01187{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);}
.m33_c01187{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m39_c01187{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);}
.m35_c01187{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m12_c01187{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_c01187{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.mb_c01187{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m42_c01187{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01187{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m24_c01187{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m26_c01187{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m30_c01187{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m28_c01187{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m7_c01187{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m45_c01187{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.m17_c01187{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.m10_c01187{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01187{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m46_c01187{transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01187{transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);}
.v0_c01187{vertical-align:0.000000px;}
.v1_c01187{vertical-align:5.760000px;}
.v2_c01187{vertical-align:8.640000px;}
.ls2_c01187{letter-spacing:0.000000px;}
.ls1_c01187{letter-spacing:47.893680px;}
.ls0_c01187{letter-spacing:49.722960px;}
.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;}
}
.ws2_c01187{word-spacing:0.000000px;}
.ws0_c01187{word-spacing:7.917875px;}
.ws1_c01187{word-spacing:15.989676px;}
.fc0_c01187{color:transparent;}
.fsd_c01187{font-size:34.560000px;}
.fsb_c01187{font-size:37.440000px;}
.fs5_c01187{font-size:46.080000px;}
.fs9_c01187{font-size:48.960000px;}
.fs6_c01187{font-size:51.840000px;}
.fs3_c01187{font-size:54.720000px;}
.fs4_c01187{font-size:57.600000px;}
.fs1_c01187{font-size:60.480000px;}
.fs8_c01187{font-size:63.360000px;}
.fs7_c01187{font-size:66.240000px;}
.fse_c01187{font-size:69.120000px;}
.fs0_c01187{font-size:72.000000px;}
.fs2_c01187{font-size:74.880000px;}
.fsa_c01187{font-size:77.760000px;}
.fsc_c01187{font-size:103.680000px;}
.y0_c01187{bottom:0.000000px;}
.y9c_c01187{bottom:12.960000px;}
.y9b_c01187{bottom:17.280000px;}
.y9a_c01187{bottom:18.720000px;}
.y99_c01187{bottom:38.160000px;}
.y98_c01187{bottom:41.040000px;}
.y96_c01187{bottom:41.760000px;}
.y97_c01187{bottom:43.920000px;}
.y93_c01187{bottom:44.640000px;}
.y95_c01187{bottom:45.360000px;}
.y94_c01187{bottom:46.800000px;}
.y92_c01187{bottom:49.680000px;}
.y91_c01187{bottom:80.640000px;}
.y90_c01187{bottom:82.800000px;}
.y8f_c01187{bottom:83.520000px;}
.y8e_c01187{bottom:86.400000px;}
.y8d_c01187{bottom:91.440000px;}
.y8c_c01187{bottom:123.120000px;}
.y8b_c01187{bottom:124.560000px;}
.y8a_c01187{bottom:126.000000px;}
.y89_c01187{bottom:128.880000px;}
.y88_c01187{bottom:133.920000px;}
.y87_c01187{bottom:167.040000px;}
.y86_c01187{bottom:167.760000px;}
.y85_c01187{bottom:168.480000px;}
.y84_c01187{bottom:169.920000px;}
.y83_c01187{bottom:172.080000px;}
.y82_c01187{bottom:176.400000px;}
.y80_c01187{bottom:210.240000px;}
.y81_c01187{bottom:210.960000px;}
.y7e_c01187{bottom:211.680000px;}
.y7d_c01187{bottom:212.400000px;}
.y7f_c01187{bottom:213.120000px;}
.y7c_c01187{bottom:213.840000px;}
.y7b_c01187{bottom:218.160000px;}
.y79_c01187{bottom:252.720000px;}
.y7a_c01187{bottom:253.440000px;}
.y78_c01187{bottom:254.880000px;}
.y77_c01187{bottom:255.600000px;}
.y76_c01187{bottom:256.320000px;}
.y75_c01187{bottom:259.920000px;}
.y74_c01187{bottom:297.360000px;}
.y73_c01187{bottom:298.080000px;}
.y72_c01187{bottom:298.800000px;}
.y70_c01187{bottom:303.120000px;}
.y71_c01187{bottom:304.560000px;}
.y6f_c01187{bottom:339.120000px;}
.y6e_c01187{bottom:339.840000px;}
.y6c_c01187{bottom:340.560000px;}
.y6a_c01187{bottom:342.000000px;}
.y6d_c01187{bottom:342.720000px;}
.y6b_c01187{bottom:344.160000px;}
.y69_c01187{bottom:345.600000px;}
.y68_c01187{bottom:381.600000px;}
.y67_c01187{bottom:383.040000px;}
.y64_c01187{bottom:383.760000px;}
.y66_c01187{bottom:384.480000px;}
.y62_c01187{bottom:385.200000px;}
.y65_c01187{bottom:385.920000px;}
.y63_c01187{bottom:387.360000px;}
.y61_c01187{bottom:388.080000px;}
.y5e_c01187{bottom:424.800000px;}
.y5f_c01187{bottom:425.520000px;}
.y5d_c01187{bottom:426.240000px;}
.y5c_c01187{bottom:426.960000px;}
.y5b_c01187{bottom:427.680000px;}
.y60_c01187{bottom:428.400000px;}
.y5a_c01187{bottom:430.560000px;}
.y57_c01187{bottom:470.160000px;}
.y58_c01187{bottom:470.880000px;}
.y59_c01187{bottom:471.600000px;}
.y56_c01187{bottom:473.760000px;}
.y55_c01187{bottom:511.920000px;}
.y51_c01187{bottom:512.640000px;}
.y50_c01187{bottom:513.360000px;}
.y52_c01187{bottom:514.080000px;}
.y54_c01187{bottom:514.800000px;}
.y53_c01187{bottom:515.520000px;}
.y4f_c01187{bottom:516.240000px;}
.y4d_c01187{bottom:555.840000px;}
.y4c_c01187{bottom:556.560000px;}
.y4e_c01187{bottom:557.280000px;}
.y4b_c01187{bottom:559.440000px;}
.y47_c01187{bottom:598.320000px;}
.y45_c01187{bottom:599.040000px;}
.y49_c01187{bottom:599.760000px;}
.y48_c01187{bottom:600.480000px;}
.y44_c01187{bottom:601.200000px;}
.y4a_c01187{bottom:601.920000px;}
.y46_c01187{bottom:602.640000px;}
.y41_c01187{bottom:641.520000px;}
.y43_c01187{bottom:642.240000px;}
.y40_c01187{bottom:642.960000px;}
.y3f_c01187{bottom:643.680000px;}
.y42_c01187{bottom:645.120000px;}
.y3e_c01187{bottom:683.280000px;}
.y3a_c01187{bottom:684.000000px;}
.y3b_c01187{bottom:684.720000px;}
.y3c_c01187{bottom:685.440000px;}
.y39_c01187{bottom:686.160000px;}
.y3d_c01187{bottom:686.880000px;}
.y35_c01187{bottom:727.200000px;}
.y38_c01187{bottom:727.920000px;}
.y34_c01187{bottom:728.640000px;}
.y37_c01187{bottom:730.080000px;}
.y36_c01187{bottom:730.800000px;}
.y2e_c01187{bottom:768.960000px;}
.y32_c01187{bottom:769.680000px;}
.y30_c01187{bottom:770.400000px;}
.y2d_c01187{bottom:771.120000px;}
.y33_c01187{bottom:771.840000px;}
.y31_c01187{bottom:772.560000px;}
.y2f_c01187{bottom:773.280000px;}
.y27_c01187{bottom:811.440000px;}
.y2a_c01187{bottom:812.160000px;}
.y26_c01187{bottom:813.600000px;}
.y2b_c01187{bottom:814.320000px;}
.y2c_c01187{bottom:815.040000px;}
.y29_c01187{bottom:815.760000px;}
.y28_c01187{bottom:816.480000px;}
.y22_c01187{bottom:848.160000px;}
.y20_c01187{bottom:854.640000px;}
.y1f_c01187{bottom:856.080000px;}
.y23_c01187{bottom:857.520000px;}
.y21_c01187{bottom:858.240000px;}
.y25_c01187{bottom:858.960000px;}
.y24_c01187{bottom:859.680000px;}
.y19_c01187{bottom:897.120000px;}
.y1d_c01187{bottom:897.840000px;}
.y18_c01187{bottom:898.560000px;}
.y1c_c01187{bottom:899.280000px;}
.y1e_c01187{bottom:900.720000px;}
.y1b_c01187{bottom:901.440000px;}
.y1a_c01187{bottom:902.160000px;}
.y13_c01187{bottom:940.320000px;}
.y12_c01187{bottom:941.040000px;}
.y16_c01187{bottom:943.200000px;}
.y15_c01187{bottom:943.920000px;}
.y14_c01187{bottom:944.640000px;}
.y17_c01187{bottom:945.360000px;}
.yb_c01187{bottom:982.800000px;}
.ya_c01187{bottom:984.240000px;}
.yc_c01187{bottom:984.960000px;}
.y11_c01187{bottom:986.400000px;}
.yf_c01187{bottom:987.120000px;}
.yd_c01187{bottom:987.840000px;}
.ye_c01187{bottom:988.560000px;}
.y10_c01187{bottom:989.280000px;}
.y3_c01187{bottom:1026.000000px;}
.y2_c01187{bottom:1026.720000px;}
.y4_c01187{bottom:1028.160000px;}
.y6_c01187{bottom:1029.600000px;}
.y5_c01187{bottom:1030.320000px;}
.y9_c01187{bottom:1031.760000px;}
.y8_c01187{bottom:1032.480000px;}
.y7_c01187{bottom:1033.200000px;}
.y1_c01187{bottom:1114.560000px;}
.hf_c01187{height:31.100625px;}
.hd_c01187{height:33.692344px;}
.h7_c01187{height:41.467500px;}
.hb_c01187{height:44.059219px;}
.h8_c01187{height:46.650937px;}
.h5_c01187{height:49.242656px;}
.h6_c01187{height:51.834375px;}
.h10_c01187{height:52.410937px;}
.h3_c01187{height:54.426094px;}
.ha_c01187{height:57.017812px;}
.h12_c01187{height:57.882656px;}
.h9_c01187{height:59.609531px;}
.h11_c01187{height:62.201250px;}
.h2_c01187{height:64.792969px;}
.h4_c01187{height:67.384687px;}
.hc_c01187{height:69.976406px;}
.he_c01187{height:93.301875px;}
.h1_c01187{height:1143.000000px;}
.h0_c01187{height:1143.360000px;}
.w1_c01187{width:771.750000px;}
.w0_c01187{width:771.840000px;}
.x0_c01187{left:0.000000px;}
.x36_c01187{left:54.720000px;}
.x22_c01187{left:56.160000px;}
.x19_c01187{left:57.600000px;}
.x2_c01187{left:59.040450px;}
.x3d_c01187{left:135.360000px;}
.x25_c01187{left:136.800000px;}
.x10_c01187{left:138.960000px;}
.x3_c01187{left:140.400000px;}
.x3a_c01187{left:170.640000px;}
.x44_c01187{left:179.280000px;}
.x26_c01187{left:213.120000px;}
.x41_c01187{left:220.320000px;}
.x3e_c01187{left:222.480000px;}
.x1a_c01187{left:223.920000px;}
.x11_c01187{left:225.360000px;}
.x4_c01187{left:226.800000px;}
.xe_c01187{left:259.200000px;}
.x37_c01187{left:264.960000px;}
.x2b_c01187{left:266.400000px;}
.x1b_c01187{left:267.840000px;}
.x12_c01187{left:279.360000px;}
.x31_c01187{left:298.080000px;}
.x2c_c01187{left:308.880000px;}
.xf_c01187{left:313.200000px;}
.x33_c01187{left:319.680000px;}
.x13_c01187{left:321.840000px;}
.x27_c01187{left:341.280000px;}
.x23_c01187{left:353.520000px;}
.xb_c01187{left:354.960000px;}
.x28_c01187{left:396.000000px;}
.x1e_c01187{left:397.440000px;}
.x42_c01187{left:406.080000px;}
.xc_c01187{left:408.240000px;}
.x29_c01187{left:439.920000px;}
.x43_c01187{left:447.840000px;}
.x1f_c01187{left:451.440000px;}
.xd_c01187{left:452.880000px;}
.x14_c01187{left:463.680000px;}
.x3f_c01187{left:534.240000px;}
.x3b_c01187{left:535.680000px;}
.x34_c01187{left:537.120000px;}
.x2a_c01187{left:538.560000px;}
.x15_c01187{left:540.000000px;}
.x5_c01187{left:541.440000px;}
.x40_c01187{left:557.280000px;}
.x2d_c01187{left:558.720000px;}
.x21_c01187{left:560.160000px;}
.x16_c01187{left:561.600000px;}
.x6_c01187{left:563.040000px;}
.x3c_c01187{left:578.880000px;}
.x35_c01187{left:613.440000px;}
.x24_c01187{left:614.880000px;}
.x17_c01187{left:616.320000px;}
.x7_c01187{left:617.760000px;}
.x38_c01187{left:645.840000px;}
.x30_c01187{left:647.280000px;}
.x1c_c01187{left:648.720000px;}
.x8_c01187{left:650.160000px;}
.x1_c01187{left:671.040000px;}
.x2e_c01187{left:678.960000px;}
.x1d_c01187{left:682.560000px;}
.x39_c01187{left:689.040000px;}
.x32_c01187{left:690.480000px;}
.x20_c01187{left:691.920000px;}
.x9_c01187{left:693.360000px;}
.x2f_c01187{left:711.360000px;}
.x18_c01187{left:712.800000px;}
.xa_c01187{left:714.240000px;}
@media print{
.v0_c01187{vertical-align:0.000000pt;}
.v1_c01187{vertical-align:5.120000pt;}
.v2_c01187{vertical-align:7.680000pt;}
.ls2_c01187{letter-spacing:0.000000pt;}
.ls1_c01187{letter-spacing:42.572160pt;}
.ls0_c01187{letter-spacing:44.198187pt;}
.ws2_c01187{word-spacing:0.000000pt;}
.ws0_c01187{word-spacing:7.038111pt;}
.ws1_c01187{word-spacing:14.213046pt;}
.fsd_c01187{font-size:30.720000pt;}
.fsb_c01187{font-size:33.280000pt;}
.fs5_c01187{font-size:40.960000pt;}
.fs9_c01187{font-size:43.520000pt;}
.fs6_c01187{font-size:46.080000pt;}
.fs3_c01187{font-size:48.640000pt;}
.fs4_c01187{font-size:51.200000pt;}
.fs1_c01187{font-size:53.760000pt;}
.fs8_c01187{font-size:56.320000pt;}
.fs7_c01187{font-size:58.880000pt;}
.fse_c01187{font-size:61.440000pt;}
.fs0_c01187{font-size:64.000000pt;}
.fs2_c01187{font-size:66.560000pt;}
.fsa_c01187{font-size:69.120000pt;}
.fsc_c01187{font-size:92.160000pt;}
.y0_c01187{bottom:0.000000pt;}
.y9c_c01187{bottom:11.520000pt;}
.y9b_c01187{bottom:15.360000pt;}
.y9a_c01187{bottom:16.640000pt;}
.y99_c01187{bottom:33.920000pt;}
.y98_c01187{bottom:36.480000pt;}
.y96_c01187{bottom:37.120000pt;}
.y97_c01187{bottom:39.040000pt;}
.y93_c01187{bottom:39.680000pt;}
.y95_c01187{bottom:40.320000pt;}
.y94_c01187{bottom:41.600000pt;}
.y92_c01187{bottom:44.160000pt;}
.y91_c01187{bottom:71.680000pt;}
.y90_c01187{bottom:73.600000pt;}
.y8f_c01187{bottom:74.240000pt;}
.y8e_c01187{bottom:76.800000pt;}
.y8d_c01187{bottom:81.280000pt;}
.y8c_c01187{bottom:109.440000pt;}
.y8b_c01187{bottom:110.720000pt;}
.y8a_c01187{bottom:112.000000pt;}
.y89_c01187{bottom:114.560000pt;}
.y88_c01187{bottom:119.040000pt;}
.y87_c01187{bottom:148.480000pt;}
.y86_c01187{bottom:149.120000pt;}
.y85_c01187{bottom:149.760000pt;}
.y84_c01187{bottom:151.040000pt;}
.y83_c01187{bottom:152.960000pt;}
.y82_c01187{bottom:156.800000pt;}
.y80_c01187{bottom:186.880000pt;}
.y81_c01187{bottom:187.520000pt;}
.y7e_c01187{bottom:188.160000pt;}
.y7d_c01187{bottom:188.800000pt;}
.y7f_c01187{bottom:189.440000pt;}
.y7c_c01187{bottom:190.080000pt;}
.y7b_c01187{bottom:193.920000pt;}
.y79_c01187{bottom:224.640000pt;}
.y7a_c01187{bottom:225.280000pt;}
.y78_c01187{bottom:226.560000pt;}
.y77_c01187{bottom:227.200000pt;}
.y76_c01187{bottom:227.840000pt;}
.y75_c01187{bottom:231.040000pt;}
.y74_c01187{bottom:264.320000pt;}
.y73_c01187{bottom:264.960000pt;}
.y72_c01187{bottom:265.600000pt;}
.y70_c01187{bottom:269.440000pt;}
.y71_c01187{bottom:270.720000pt;}
.y6f_c01187{bottom:301.440000pt;}
.y6e_c01187{bottom:302.080000pt;}
.y6c_c01187{bottom:302.720000pt;}
.y6a_c01187{bottom:304.000000pt;}
.y6d_c01187{bottom:304.640000pt;}
.y6b_c01187{bottom:305.920000pt;}
.y69_c01187{bottom:307.200000pt;}
.y68_c01187{bottom:339.200000pt;}
.y67_c01187{bottom:340.480000pt;}
.y64_c01187{bottom:341.120000pt;}
.y66_c01187{bottom:341.760000pt;}
.y62_c01187{bottom:342.400000pt;}
.y65_c01187{bottom:343.040000pt;}
.y63_c01187{bottom:344.320000pt;}
.y61_c01187{bottom:344.960000pt;}
.y5e_c01187{bottom:377.600000pt;}
.y5f_c01187{bottom:378.240000pt;}
.y5d_c01187{bottom:378.880000pt;}
.y5c_c01187{bottom:379.520000pt;}
.y5b_c01187{bottom:380.160000pt;}
.y60_c01187{bottom:380.800000pt;}
.y5a_c01187{bottom:382.720000pt;}
.y57_c01187{bottom:417.920000pt;}
.y58_c01187{bottom:418.560000pt;}
.y59_c01187{bottom:419.200000pt;}
.y56_c01187{bottom:421.120000pt;}
.y55_c01187{bottom:455.040000pt;}
.y51_c01187{bottom:455.680000pt;}
.y50_c01187{bottom:456.320000pt;}
.y52_c01187{bottom:456.960000pt;}
.y54_c01187{bottom:457.600000pt;}
.y53_c01187{bottom:458.240000pt;}
.y4f_c01187{bottom:458.880000pt;}
.y4d_c01187{bottom:494.080000pt;}
.y4c_c01187{bottom:494.720000pt;}
.y4e_c01187{bottom:495.360000pt;}
.y4b_c01187{bottom:497.280000pt;}
.y47_c01187{bottom:531.840000pt;}
.y45_c01187{bottom:532.480000pt;}
.y49_c01187{bottom:533.120000pt;}
.y48_c01187{bottom:533.760000pt;}
.y44_c01187{bottom:534.400000pt;}
.y4a_c01187{bottom:535.040000pt;}
.y46_c01187{bottom:535.680000pt;}
.y41_c01187{bottom:570.240000pt;}
.y43_c01187{bottom:570.880000pt;}
.y40_c01187{bottom:571.520000pt;}
.y3f_c01187{bottom:572.160000pt;}
.y42_c01187{bottom:573.440000pt;}
.y3e_c01187{bottom:607.360000pt;}
.y3a_c01187{bottom:608.000000pt;}
.y3b_c01187{bottom:608.640000pt;}
.y3c_c01187{bottom:609.280000pt;}
.y39_c01187{bottom:609.920000pt;}
.y3d_c01187{bottom:610.560000pt;}
.y35_c01187{bottom:646.400000pt;}
.y38_c01187{bottom:647.040000pt;}
.y34_c01187{bottom:647.680000pt;}
.y37_c01187{bottom:648.960000pt;}
.y36_c01187{bottom:649.600000pt;}
.y2e_c01187{bottom:683.520000pt;}
.y32_c01187{bottom:684.160000pt;}
.y30_c01187{bottom:684.800000pt;}
.y2d_c01187{bottom:685.440000pt;}
.y33_c01187{bottom:686.080000pt;}
.y31_c01187{bottom:686.720000pt;}
.y2f_c01187{bottom:687.360000pt;}
.y27_c01187{bottom:721.280000pt;}
.y2a_c01187{bottom:721.920000pt;}
.y26_c01187{bottom:723.200000pt;}
.y2b_c01187{bottom:723.840000pt;}
.y2c_c01187{bottom:724.480000pt;}
.y29_c01187{bottom:725.120000pt;}
.y28_c01187{bottom:725.760000pt;}
.y22_c01187{bottom:753.920000pt;}
.y20_c01187{bottom:759.680000pt;}
.y1f_c01187{bottom:760.960000pt;}
.y23_c01187{bottom:762.240000pt;}
.y21_c01187{bottom:762.880000pt;}
.y25_c01187{bottom:763.520000pt;}
.y24_c01187{bottom:764.160000pt;}
.y19_c01187{bottom:797.440000pt;}
.y1d_c01187{bottom:798.080000pt;}
.y18_c01187{bottom:798.720000pt;}
.y1c_c01187{bottom:799.360000pt;}
.y1e_c01187{bottom:800.640000pt;}
.y1b_c01187{bottom:801.280000pt;}
.y1a_c01187{bottom:801.920000pt;}
.y13_c01187{bottom:835.840000pt;}
.y12_c01187{bottom:836.480000pt;}
.y16_c01187{bottom:838.400000pt;}
.y15_c01187{bottom:839.040000pt;}
.y14_c01187{bottom:839.680000pt;}
.y17_c01187{bottom:840.320000pt;}
.yb_c01187{bottom:873.600000pt;}
.ya_c01187{bottom:874.880000pt;}
.yc_c01187{bottom:875.520000pt;}
.y11_c01187{bottom:876.800000pt;}
.yf_c01187{bottom:877.440000pt;}
.yd_c01187{bottom:878.080000pt;}
.ye_c01187{bottom:878.720000pt;}
.y10_c01187{bottom:879.360000pt;}
.y3_c01187{bottom:912.000000pt;}
.y2_c01187{bottom:912.640000pt;}
.y4_c01187{bottom:913.920000pt;}
.y6_c01187{bottom:915.200000pt;}
.y5_c01187{bottom:915.840000pt;}
.y9_c01187{bottom:917.120000pt;}
.y8_c01187{bottom:917.760000pt;}
.y7_c01187{bottom:918.400000pt;}
.y1_c01187{bottom:990.720000pt;}
.hf_c01187{height:27.645000pt;}
.hd_c01187{height:29.948750pt;}
.h7_c01187{height:36.860000pt;}
.hb_c01187{height:39.163750pt;}
.h8_c01187{height:41.467500pt;}
.h5_c01187{height:43.771250pt;}
.h6_c01187{height:46.075000pt;}
.h10_c01187{height:46.587500pt;}
.h3_c01187{height:48.378750pt;}
.ha_c01187{height:50.682500pt;}
.h12_c01187{height:51.451250pt;}
.h9_c01187{height:52.986250pt;}
.h11_c01187{height:55.290000pt;}
.h2_c01187{height:57.593750pt;}
.h4_c01187{height:59.897500pt;}
.hc_c01187{height:62.201250pt;}
.he_c01187{height:82.935000pt;}
.h1_c01187{height:1016.000000pt;}
.h0_c01187{height:1016.320000pt;}
.w1_c01187{width:686.000000pt;}
.w0_c01187{width:686.080000pt;}
.x0_c01187{left:0.000000pt;}
.x36_c01187{left:48.640000pt;}
.x22_c01187{left:49.920000pt;}
.x19_c01187{left:51.200000pt;}
.x2_c01187{left:52.480400pt;}
.x3d_c01187{left:120.320000pt;}
.x25_c01187{left:121.600000pt;}
.x10_c01187{left:123.520000pt;}
.x3_c01187{left:124.800000pt;}
.x3a_c01187{left:151.680000pt;}
.x44_c01187{left:159.360000pt;}
.x26_c01187{left:189.440000pt;}
.x41_c01187{left:195.840000pt;}
.x3e_c01187{left:197.760000pt;}
.x1a_c01187{left:199.040000pt;}
.x11_c01187{left:200.320000pt;}
.x4_c01187{left:201.600000pt;}
.xe_c01187{left:230.400000pt;}
.x37_c01187{left:235.520000pt;}
.x2b_c01187{left:236.800000pt;}
.x1b_c01187{left:238.080000pt;}
.x12_c01187{left:248.320000pt;}
.x31_c01187{left:264.960000pt;}
.x2c_c01187{left:274.560000pt;}
.xf_c01187{left:278.400000pt;}
.x33_c01187{left:284.160000pt;}
.x13_c01187{left:286.080000pt;}
.x27_c01187{left:303.360000pt;}
.x23_c01187{left:314.240000pt;}
.xb_c01187{left:315.520000pt;}
.x28_c01187{left:352.000000pt;}
.x1e_c01187{left:353.280000pt;}
.x42_c01187{left:360.960000pt;}
.xc_c01187{left:362.880000pt;}
.x29_c01187{left:391.040000pt;}
.x43_c01187{left:398.080000pt;}
.x1f_c01187{left:401.280000pt;}
.xd_c01187{left:402.560000pt;}
.x14_c01187{left:412.160000pt;}
.x3f_c01187{left:474.880000pt;}
.x3b_c01187{left:476.160000pt;}
.x34_c01187{left:477.440000pt;}
.x2a_c01187{left:478.720000pt;}
.x15_c01187{left:480.000000pt;}
.x5_c01187{left:481.280000pt;}
.x40_c01187{left:495.360000pt;}
.x2d_c01187{left:496.640000pt;}
.x21_c01187{left:497.920000pt;}
.x16_c01187{left:499.200000pt;}
.x6_c01187{left:500.480000pt;}
.x3c_c01187{left:514.560000pt;}
.x35_c01187{left:545.280000pt;}
.x24_c01187{left:546.560000pt;}
.x17_c01187{left:547.840000pt;}
.x7_c01187{left:549.120000pt;}
.x38_c01187{left:574.080000pt;}
.x30_c01187{left:575.360000pt;}
.x1c_c01187{left:576.640000pt;}
.x8_c01187{left:577.920000pt;}
.x1_c01187{left:596.480000pt;}
.x2e_c01187{left:603.520000pt;}
.x1d_c01187{left:606.720000pt;}
.x39_c01187{left:612.480000pt;}
.x32_c01187{left:613.760000pt;}
.x20_c01187{left:615.040000pt;}
.x9_c01187{left:616.320000pt;}
.x2f_c01187{left:632.320000pt;}
.x18_c01187{left:633.600000pt;}
.xa_c01187{left:634.880000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_139d1ee6c0577b6c0ba78439.woff2')format("woff");}.ff1_c01188{font-family:ff1_c01188;line-height:1.109863;font-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_c01188{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m2_c01188{transform:matrix(0.239375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239375,0.000000,0.000000,0.250000,0,0);}
.m2b_c01188{transform:matrix(0.239525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239525,0.000000,0.000000,0.250000,0,0);}
.m9_c01188{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m1c_c01188{transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);}
.m19_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);}
.mb_c01188{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m25_c01188{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01188{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m6_c01188{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m15_c01188{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_c01188{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);}
.m2c_c01188{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_c01188{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m26_c01188{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_c01188{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);}
.m20_c01188{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m10_c01188{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m5_c01188{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);}
.m33_c01188{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01188{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01188{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m7_c01188{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m11_c01188{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01188{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m16_c01188{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01188{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01188{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01188{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m29_c01188{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m18_c01188{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m4_c01188{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m12_c01188{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m23_c01188{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m13_c01188{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);}
.m24_c01188{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1_c01188{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);}
.m28_c01188{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);}
.m30_c01188{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_c01188{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01188{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);}
.m31_c01188{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m0_c01188{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.mf_c01188{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m3_c01188{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);}
.mc_c01188{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01188{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);}
.ma_c01188{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.md_c01188{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01188{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m27_c01188{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m32_c01188{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.v1_c01188{vertical-align:-5.760000px;}
.v0_c01188{vertical-align:0.000000px;}
.v2_c01188{vertical-align:2.880000px;}
.ls0_c01188{letter-spacing:0.000000px;}
.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;}
}
.ws3_c01188{word-spacing:0.000000px;}
.ws1_c01188{word-spacing:8.131200px;}
.ws2_c01188{word-spacing:9.210378px;}
.ws0_c01188{word-spacing:13.140000px;}
.fc0_c01188{color:transparent;}
.fs9_c01188{font-size:34.560000px;}
.fsf_c01188{font-size:37.440000px;}
.fs8_c01188{font-size:40.320000px;}
.fsd_c01188{font-size:43.200000px;}
.fse_c01188{font-size:46.080000px;}
.fs3_c01188{font-size:48.960000px;}
.fsa_c01188{font-size:51.840000px;}
.fs4_c01188{font-size:54.720000px;}
.fs5_c01188{font-size:57.600000px;}
.fs1_c01188{font-size:60.480000px;}
.fs6_c01188{font-size:63.360000px;}
.fsc_c01188{font-size:66.240000px;}
.fs0_c01188{font-size:69.120000px;}
.fsb_c01188{font-size:72.000000px;}
.fs7_c01188{font-size:74.880000px;}
.fs2_c01188{font-size:77.760000px;}
.y0_c01188{bottom:0.000000px;}
.y80_c01188{bottom:38.160000px;}
.y7f_c01188{bottom:41.760000px;}
.y7e_c01188{bottom:42.480000px;}
.y7d_c01188{bottom:43.920000px;}
.y7c_c01188{bottom:49.680000px;}
.y7b_c01188{bottom:81.360000px;}
.y7a_c01188{bottom:82.800000px;}
.y79_c01188{bottom:84.240000px;}
.y77_c01188{bottom:84.960000px;}
.y78_c01188{bottom:85.680000px;}
.y76_c01188{bottom:86.400000px;}
.y75_c01188{bottom:92.160000px;}
.y72_c01188{bottom:125.280000px;}
.y74_c01188{bottom:126.000000px;}
.y73_c01188{bottom:126.720000px;}
.y70_c01188{bottom:127.440000px;}
.y71_c01188{bottom:128.160000px;}
.y6f_c01188{bottom:129.600000px;}
.y6e_c01188{bottom:134.640000px;}
.y6d_c01188{bottom:168.480000px;}
.y6c_c01188{bottom:169.920000px;}
.y6b_c01188{bottom:170.640000px;}
.y6a_c01188{bottom:172.080000px;}
.y69_c01188{bottom:177.120000px;}
.y68_c01188{bottom:211.680000px;}
.y67_c01188{bottom:212.400000px;}
.y65_c01188{bottom:213.840000px;}
.y66_c01188{bottom:214.560000px;}
.y64_c01188{bottom:215.280000px;}
.y63_c01188{bottom:218.880000px;}
.y61_c01188{bottom:254.160000px;}
.y62_c01188{bottom:255.600000px;}
.y60_c01188{bottom:257.760000px;}
.y5f_c01188{bottom:258.480000px;}
.y5e_c01188{bottom:262.800000px;}
.y5d_c01188{bottom:296.640000px;}
.y5c_c01188{bottom:298.080000px;}
.y5b_c01188{bottom:300.240000px;}
.y5a_c01188{bottom:301.680000px;}
.y59_c01188{bottom:304.560000px;}
.y58_c01188{bottom:340.560000px;}
.y57_c01188{bottom:342.000000px;}
.y55_c01188{bottom:343.440000px;}
.y56_c01188{bottom:344.160000px;}
.y54_c01188{bottom:347.760000px;}
.y53_c01188{bottom:384.480000px;}
.y52_c01188{bottom:385.200000px;}
.y51_c01188{bottom:386.640000px;}
.y50_c01188{bottom:389.520000px;}
.y4c_c01188{bottom:426.960000px;}
.y4e_c01188{bottom:427.680000px;}
.y4f_c01188{bottom:428.400000px;}
.y4b_c01188{bottom:429.120000px;}
.y4d_c01188{bottom:429.840000px;}
.y4a_c01188{bottom:432.000000px;}
.y49_c01188{bottom:469.440000px;}
.y48_c01188{bottom:470.160000px;}
.y46_c01188{bottom:470.880000px;}
.y45_c01188{bottom:471.600000px;}
.y47_c01188{bottom:472.320000px;}
.y44_c01188{bottom:474.480000px;}
.y43_c01188{bottom:511.920000px;}
.y41_c01188{bottom:514.080000px;}
.y42_c01188{bottom:514.800000px;}
.y40_c01188{bottom:516.240000px;}
.y3e_c01188{bottom:554.400000px;}
.y3f_c01188{bottom:555.120000px;}
.y3b_c01188{bottom:555.840000px;}
.y3c_c01188{bottom:557.280000px;}
.y3d_c01188{bottom:558.000000px;}
.y3a_c01188{bottom:558.720000px;}
.y39_c01188{bottom:598.320000px;}
.y36_c01188{bottom:599.040000px;}
.y38_c01188{bottom:599.760000px;}
.y37_c01188{bottom:600.480000px;}
.y35_c01188{bottom:601.920000px;}
.y32_c01188{bottom:641.520000px;}
.y34_c01188{bottom:642.960000px;}
.y33_c01188{bottom:643.680000px;}
.y31_c01188{bottom:644.400000px;}
.y30_c01188{bottom:684.000000px;}
.y2e_c01188{bottom:684.720000px;}
.y2d_c01188{bottom:686.160000px;}
.y2f_c01188{bottom:686.880000px;}
.y28_c01188{bottom:726.480000px;}
.y2a_c01188{bottom:727.200000px;}
.y2c_c01188{bottom:727.920000px;}
.y2b_c01188{bottom:728.640000px;}
.y27_c01188{bottom:729.360000px;}
.y29_c01188{bottom:730.080000px;}
.y24_c01188{bottom:768.960000px;}
.y22_c01188{bottom:769.680000px;}
.y23_c01188{bottom:770.400000px;}
.y25_c01188{bottom:771.120000px;}
.y21_c01188{bottom:771.840000px;}
.y26_c01188{bottom:772.560000px;}
.y1e_c01188{bottom:812.880000px;}
.y1f_c01188{bottom:813.600000px;}
.y1d_c01188{bottom:814.320000px;}
.y20_c01188{bottom:815.040000px;}
.y18_c01188{bottom:854.640000px;}
.y17_c01188{bottom:856.080000px;}
.y1a_c01188{bottom:856.800000px;}
.y1b_c01188{bottom:857.520000px;}
.y1c_c01188{bottom:858.960000px;}
.y19_c01188{bottom:859.680000px;}
.y13_c01188{bottom:897.840000px;}
.y15_c01188{bottom:899.280000px;}
.y12_c01188{bottom:900.000000px;}
.y16_c01188{bottom:901.440000px;}
.y14_c01188{bottom:902.160000px;}
.yf_c01188{bottom:940.320000px;}
.ye_c01188{bottom:942.480000px;}
.y10_c01188{bottom:943.200000px;}
.y11_c01188{bottom:944.640000px;}
.y9_c01188{bottom:983.520000px;}
.y8_c01188{bottom:984.240000px;}
.yc_c01188{bottom:984.960000px;}
.yd_c01188{bottom:985.680000px;}
.ya_c01188{bottom:987.120000px;}
.yb_c01188{bottom:987.840000px;}
.y3_c01188{bottom:1025.280000px;}
.y2_c01188{bottom:1026.720000px;}
.y5_c01188{bottom:1028.160000px;}
.y6_c01188{bottom:1029.600000px;}
.y4_c01188{bottom:1030.320000px;}
.y7_c01188{bottom:1031.040000px;}
.y1_c01188{bottom:1108.080000px;}
.hb_c01188{height:31.100625px;}
.h10_c01188{height:33.692344px;}
.ha_c01188{height:36.284062px;}
.hf_c01188{height:38.875781px;}
.h5_c01188{height:44.059219px;}
.hc_c01188{height:46.650937px;}
.h6_c01188{height:49.242656px;}
.h7_c01188{height:51.834375px;}
.h3_c01188{height:54.426094px;}
.h8_c01188{height:57.017812px;}
.he_c01188{height:59.609531px;}
.h2_c01188{height:62.201250px;}
.hd_c01188{height:64.792969px;}
.h9_c01188{height:67.384687px;}
.h4_c01188{height:69.976406px;}
.h1_c01188{height:1149.000000px;}
.h0_c01188{height:1149.120000px;}
.w1_c01188{width:766.500000px;}
.w0_c01188{width:766.800000px;}
.x0_c01188{left:0.000000px;}
.x25_c01188{left:57.600000px;}
.x17_c01188{left:59.040000px;}
.x2_c01188{left:60.480000px;}
.x31_c01188{left:137.520000px;}
.x26_c01188{left:138.960000px;}
.x1a_c01188{left:140.400000px;}
.x3_c01188{left:141.840000px;}
.x1f_c01188{left:226.080000px;}
.xc_c01188{left:228.240000px;}
.x1b_c01188{left:237.600000px;}
.x20_c01188{left:268.560000px;}
.x4_c01188{left:270.720000px;}
.x29_c01188{left:278.640000px;}
.x18_c01188{left:280.800000px;}
.xd_c01188{left:311.760000px;}
.x5_c01188{left:313.200000px;}
.x19_c01188{left:323.280000px;}
.x1c_c01188{left:367.200000px;}
.xe_c01188{left:421.200000px;}
.xf_c01188{left:465.120000px;}
.x30_c01188{left:527.040000px;}
.x2c_c01188{left:528.480000px;}
.x21_c01188{left:529.920000px;}
.x12_c01188{left:540.000000px;}
.x6_c01188{left:541.440000px;}
.x2d_c01188{left:560.160000px;}
.x23_c01188{left:561.600000px;}
.x13_c01188{left:563.040000px;}
.x7_c01188{left:564.480000px;}
.x2e_c01188{left:581.040000px;}
.x1e_c01188{left:583.200000px;}
.x14_c01188{left:584.640000px;}
.x10_c01188{left:589.680000px;}
.x28_c01188{left:594.000000px;}
.x32_c01188{left:614.160000px;}
.x2a_c01188{left:615.600000px;}
.x15_c01188{left:617.040000px;}
.x8_c01188{left:618.480000px;}
.x2f_c01188{left:648.000000px;}
.x24_c01188{left:649.440000px;}
.x9_c01188{left:650.880000px;}
.x1_c01188{left:670.320000px;}
.x33_c01188{left:680.400000px;}
.x2b_c01188{left:681.840000px;}
.x16_c01188{left:683.280000px;}
.x11_c01188{left:684.720000px;}
.x35_c01188{left:690.480000px;}
.x27_c01188{left:691.920000px;}
.x1d_c01188{left:693.360000px;}
.xa_c01188{left:694.800000px;}
.x34_c01188{left:711.360000px;}
.x22_c01188{left:712.800000px;}
.xb_c01188{left:714.960000px;}
@media print{
.v1_c01188{vertical-align:-5.120000pt;}
.v0_c01188{vertical-align:0.000000pt;}
.v2_c01188{vertical-align:2.560000pt;}
.ls0_c01188{letter-spacing:0.000000pt;}
.ws3_c01188{word-spacing:0.000000pt;}
.ws1_c01188{word-spacing:7.227733pt;}
.ws2_c01188{word-spacing:8.187003pt;}
.ws0_c01188{word-spacing:11.680000pt;}
.fs9_c01188{font-size:30.720000pt;}
.fsf_c01188{font-size:33.280000pt;}
.fs8_c01188{font-size:35.840000pt;}
.fsd_c01188{font-size:38.400000pt;}
.fse_c01188{font-size:40.960000pt;}
.fs3_c01188{font-size:43.520000pt;}
.fsa_c01188{font-size:46.080000pt;}
.fs4_c01188{font-size:48.640000pt;}
.fs5_c01188{font-size:51.200000pt;}
.fs1_c01188{font-size:53.760000pt;}
.fs6_c01188{font-size:56.320000pt;}
.fsc_c01188{font-size:58.880000pt;}
.fs0_c01188{font-size:61.440000pt;}
.fsb_c01188{font-size:64.000000pt;}
.fs7_c01188{font-size:66.560000pt;}
.fs2_c01188{font-size:69.120000pt;}
.y0_c01188{bottom:0.000000pt;}
.y80_c01188{bottom:33.920000pt;}
.y7f_c01188{bottom:37.120000pt;}
.y7e_c01188{bottom:37.760000pt;}
.y7d_c01188{bottom:39.040000pt;}
.y7c_c01188{bottom:44.160000pt;}
.y7b_c01188{bottom:72.320000pt;}
.y7a_c01188{bottom:73.600000pt;}
.y79_c01188{bottom:74.880000pt;}
.y77_c01188{bottom:75.520000pt;}
.y78_c01188{bottom:76.160000pt;}
.y76_c01188{bottom:76.800000pt;}
.y75_c01188{bottom:81.920000pt;}
.y72_c01188{bottom:111.360000pt;}
.y74_c01188{bottom:112.000000pt;}
.y73_c01188{bottom:112.640000pt;}
.y70_c01188{bottom:113.280000pt;}
.y71_c01188{bottom:113.920000pt;}
.y6f_c01188{bottom:115.200000pt;}
.y6e_c01188{bottom:119.680000pt;}
.y6d_c01188{bottom:149.760000pt;}
.y6c_c01188{bottom:151.040000pt;}
.y6b_c01188{bottom:151.680000pt;}
.y6a_c01188{bottom:152.960000pt;}
.y69_c01188{bottom:157.440000pt;}
.y68_c01188{bottom:188.160000pt;}
.y67_c01188{bottom:188.800000pt;}
.y65_c01188{bottom:190.080000pt;}
.y66_c01188{bottom:190.720000pt;}
.y64_c01188{bottom:191.360000pt;}
.y63_c01188{bottom:194.560000pt;}
.y61_c01188{bottom:225.920000pt;}
.y62_c01188{bottom:227.200000pt;}
.y60_c01188{bottom:229.120000pt;}
.y5f_c01188{bottom:229.760000pt;}
.y5e_c01188{bottom:233.600000pt;}
.y5d_c01188{bottom:263.680000pt;}
.y5c_c01188{bottom:264.960000pt;}
.y5b_c01188{bottom:266.880000pt;}
.y5a_c01188{bottom:268.160000pt;}
.y59_c01188{bottom:270.720000pt;}
.y58_c01188{bottom:302.720000pt;}
.y57_c01188{bottom:304.000000pt;}
.y55_c01188{bottom:305.280000pt;}
.y56_c01188{bottom:305.920000pt;}
.y54_c01188{bottom:309.120000pt;}
.y53_c01188{bottom:341.760000pt;}
.y52_c01188{bottom:342.400000pt;}
.y51_c01188{bottom:343.680000pt;}
.y50_c01188{bottom:346.240000pt;}
.y4c_c01188{bottom:379.520000pt;}
.y4e_c01188{bottom:380.160000pt;}
.y4f_c01188{bottom:380.800000pt;}
.y4b_c01188{bottom:381.440000pt;}
.y4d_c01188{bottom:382.080000pt;}
.y4a_c01188{bottom:384.000000pt;}
.y49_c01188{bottom:417.280000pt;}
.y48_c01188{bottom:417.920000pt;}
.y46_c01188{bottom:418.560000pt;}
.y45_c01188{bottom:419.200000pt;}
.y47_c01188{bottom:419.840000pt;}
.y44_c01188{bottom:421.760000pt;}
.y43_c01188{bottom:455.040000pt;}
.y41_c01188{bottom:456.960000pt;}
.y42_c01188{bottom:457.600000pt;}
.y40_c01188{bottom:458.880000pt;}
.y3e_c01188{bottom:492.800000pt;}
.y3f_c01188{bottom:493.440000pt;}
.y3b_c01188{bottom:494.080000pt;}
.y3c_c01188{bottom:495.360000pt;}
.y3d_c01188{bottom:496.000000pt;}
.y3a_c01188{bottom:496.640000pt;}
.y39_c01188{bottom:531.840000pt;}
.y36_c01188{bottom:532.480000pt;}
.y38_c01188{bottom:533.120000pt;}
.y37_c01188{bottom:533.760000pt;}
.y35_c01188{bottom:535.040000pt;}
.y32_c01188{bottom:570.240000pt;}
.y34_c01188{bottom:571.520000pt;}
.y33_c01188{bottom:572.160000pt;}
.y31_c01188{bottom:572.800000pt;}
.y30_c01188{bottom:608.000000pt;}
.y2e_c01188{bottom:608.640000pt;}
.y2d_c01188{bottom:609.920000pt;}
.y2f_c01188{bottom:610.560000pt;}
.y28_c01188{bottom:645.760000pt;}
.y2a_c01188{bottom:646.400000pt;}
.y2c_c01188{bottom:647.040000pt;}
.y2b_c01188{bottom:647.680000pt;}
.y27_c01188{bottom:648.320000pt;}
.y29_c01188{bottom:648.960000pt;}
.y24_c01188{bottom:683.520000pt;}
.y22_c01188{bottom:684.160000pt;}
.y23_c01188{bottom:684.800000pt;}
.y25_c01188{bottom:685.440000pt;}
.y21_c01188{bottom:686.080000pt;}
.y26_c01188{bottom:686.720000pt;}
.y1e_c01188{bottom:722.560000pt;}
.y1f_c01188{bottom:723.200000pt;}
.y1d_c01188{bottom:723.840000pt;}
.y20_c01188{bottom:724.480000pt;}
.y18_c01188{bottom:759.680000pt;}
.y17_c01188{bottom:760.960000pt;}
.y1a_c01188{bottom:761.600000pt;}
.y1b_c01188{bottom:762.240000pt;}
.y1c_c01188{bottom:763.520000pt;}
.y19_c01188{bottom:764.160000pt;}
.y13_c01188{bottom:798.080000pt;}
.y15_c01188{bottom:799.360000pt;}
.y12_c01188{bottom:800.000000pt;}
.y16_c01188{bottom:801.280000pt;}
.y14_c01188{bottom:801.920000pt;}
.yf_c01188{bottom:835.840000pt;}
.ye_c01188{bottom:837.760000pt;}
.y10_c01188{bottom:838.400000pt;}
.y11_c01188{bottom:839.680000pt;}
.y9_c01188{bottom:874.240000pt;}
.y8_c01188{bottom:874.880000pt;}
.yc_c01188{bottom:875.520000pt;}
.yd_c01188{bottom:876.160000pt;}
.ya_c01188{bottom:877.440000pt;}
.yb_c01188{bottom:878.080000pt;}
.y3_c01188{bottom:911.360000pt;}
.y2_c01188{bottom:912.640000pt;}
.y5_c01188{bottom:913.920000pt;}
.y6_c01188{bottom:915.200000pt;}
.y4_c01188{bottom:915.840000pt;}
.y7_c01188{bottom:916.480000pt;}
.y1_c01188{bottom:984.960000pt;}
.hb_c01188{height:27.645000pt;}
.h10_c01188{height:29.948750pt;}
.ha_c01188{height:32.252500pt;}
.hf_c01188{height:34.556250pt;}
.h5_c01188{height:39.163750pt;}
.hc_c01188{height:41.467500pt;}
.h6_c01188{height:43.771250pt;}
.h7_c01188{height:46.075000pt;}
.h3_c01188{height:48.378750pt;}
.h8_c01188{height:50.682500pt;}
.he_c01188{height:52.986250pt;}
.h2_c01188{height:55.290000pt;}
.hd_c01188{height:57.593750pt;}
.h9_c01188{height:59.897500pt;}
.h4_c01188{height:62.201250pt;}
.h1_c01188{height:1021.333333pt;}
.h0_c01188{height:1021.440000pt;}
.w1_c01188{width:681.333333pt;}
.w0_c01188{width:681.600000pt;}
.x0_c01188{left:0.000000pt;}
.x25_c01188{left:51.200000pt;}
.x17_c01188{left:52.480000pt;}
.x2_c01188{left:53.760000pt;}
.x31_c01188{left:122.240000pt;}
.x26_c01188{left:123.520000pt;}
.x1a_c01188{left:124.800000pt;}
.x3_c01188{left:126.080000pt;}
.x1f_c01188{left:200.960000pt;}
.xc_c01188{left:202.880000pt;}
.x1b_c01188{left:211.200000pt;}
.x20_c01188{left:238.720000pt;}
.x4_c01188{left:240.640000pt;}
.x29_c01188{left:247.680000pt;}
.x18_c01188{left:249.600000pt;}
.xd_c01188{left:277.120000pt;}
.x5_c01188{left:278.400000pt;}
.x19_c01188{left:287.360000pt;}
.x1c_c01188{left:326.400000pt;}
.xe_c01188{left:374.400000pt;}
.xf_c01188{left:413.440000pt;}
.x30_c01188{left:468.480000pt;}
.x2c_c01188{left:469.760000pt;}
.x21_c01188{left:471.040000pt;}
.x12_c01188{left:480.000000pt;}
.x6_c01188{left:481.280000pt;}
.x2d_c01188{left:497.920000pt;}
.x23_c01188{left:499.200000pt;}
.x13_c01188{left:500.480000pt;}
.x7_c01188{left:501.760000pt;}
.x2e_c01188{left:516.480000pt;}
.x1e_c01188{left:518.400000pt;}
.x14_c01188{left:519.680000pt;}
.x10_c01188{left:524.160000pt;}
.x28_c01188{left:528.000000pt;}
.x32_c01188{left:545.920000pt;}
.x2a_c01188{left:547.200000pt;}
.x15_c01188{left:548.480000pt;}
.x8_c01188{left:549.760000pt;}
.x2f_c01188{left:576.000000pt;}
.x24_c01188{left:577.280000pt;}
.x9_c01188{left:578.560000pt;}
.x1_c01188{left:595.840000pt;}
.x33_c01188{left:604.800000pt;}
.x2b_c01188{left:606.080000pt;}
.x16_c01188{left:607.360000pt;}
.x11_c01188{left:608.640000pt;}
.x35_c01188{left:613.760000pt;}
.x27_c01188{left:615.040000pt;}
.x1d_c01188{left:616.320000pt;}
.xa_c01188{left:617.600000pt;}
.x34_c01188{left:632.320000pt;}
.x22_c01188{left:633.600000pt;}
.xb_c01188{left:635.520000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_edd8ea493905deba10e58320.woff2')format("woff");}.ff1_c01189{font-family:ff1_c01189;line-height:1.109863;font-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_c01189{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m16_c01189{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m23_c01189{transform:matrix(0.248075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248075,0.000000,0.000000,0.250000,0,0);}
.m32_c01189{transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);}
.m26_c01189{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m14_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.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);}
.m2c_c01189{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m8_c01189{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m2_c01189{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);}
.m28_c01189{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_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);}
.m1b_c01189{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m11_c01189{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m19_c01189{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m2b_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);}
.m4_c01189{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_c01189{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01189{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m5_c01189{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.ma_c01189{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01189{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.me_c01189{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m31_c01189{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01189{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m15_c01189{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mb_c01189{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01189{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1_c01189{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mf_c01189{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m20_c01189{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m9_c01189{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.md_c01189{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);}
.m2f_c01189{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m30_c01189{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m12_c01189{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m3_c01189{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m24_c01189{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);}
.mc_c01189{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m0_c01189{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m25_c01189{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m22_c01189{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);}
.m1e_c01189{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m6_c01189{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m13_c01189{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m33_c01189{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_c01189{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m27_c01189{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01189{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.m17_c01189{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01189{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m29_c01189{transform:matrix(0.885000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.885000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.885000,0.000000,0.000000,0.250000,0,0);}
.v0_c01189{vertical-align:0.000000px;}
.v1_c01189{vertical-align:2.880000px;}
.ls0_c01189{letter-spacing:0.000000px;}
.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;}
}
.ws2_c01189{word-spacing:0.000000px;}
.ws1_c01189{word-spacing:10.267200px;}
.ws0_c01189{word-spacing:56.301600px;}
.fc0_c01189{color:transparent;}
.fs2_c01189{font-size:46.080000px;}
.fs6_c01189{font-size:48.960000px;}
.fs5_c01189{font-size:51.840000px;}
.fs3_c01189{font-size:54.720000px;}
.fs4_c01189{font-size:57.600000px;}
.fs7_c01189{font-size:60.480000px;}
.fs1_c01189{font-size:63.360000px;}
.fs9_c01189{font-size:66.240000px;}
.fs8_c01189{font-size:72.000000px;}
.fs0_c01189{font-size:74.880000px;}
.fsa_c01189{font-size:77.760000px;}
.y0_c01189{bottom:0.000000px;}
.y7d_c01189{bottom:48.240000px;}
.y7f_c01189{bottom:48.960000px;}
.y80_c01189{bottom:49.680000px;}
.y7b_c01189{bottom:51.120000px;}
.y7e_c01189{bottom:51.840000px;}
.y7c_c01189{bottom:53.280000px;}
.y7a_c01189{bottom:56.880000px;}
.y79_c01189{bottom:91.440000px;}
.y78_c01189{bottom:92.880000px;}
.y76_c01189{bottom:93.600000px;}
.y77_c01189{bottom:94.320000px;}
.y75_c01189{bottom:98.640000px;}
.y73_c01189{bottom:136.080000px;}
.y71_c01189{bottom:136.800000px;}
.y74_c01189{bottom:137.520000px;}
.y72_c01189{bottom:138.240000px;}
.y70_c01189{bottom:141.120000px;}
.y6e_c01189{bottom:177.840000px;}
.y6c_c01189{bottom:178.560000px;}
.y6f_c01189{bottom:180.000000px;}
.y6d_c01189{bottom:181.440000px;}
.y6b_c01189{bottom:182.880000px;}
.y68_c01189{bottom:221.040000px;}
.y69_c01189{bottom:223.200000px;}
.y6a_c01189{bottom:223.920000px;}
.y67_c01189{bottom:226.080000px;}
.y64_c01189{bottom:263.520000px;}
.y62_c01189{bottom:264.240000px;}
.y66_c01189{bottom:265.680000px;}
.y63_c01189{bottom:266.400000px;}
.y65_c01189{bottom:267.120000px;}
.y61_c01189{bottom:268.560000px;}
.y5d_c01189{bottom:306.720000px;}
.y60_c01189{bottom:308.880000px;}
.y5f_c01189{bottom:309.600000px;}
.y5e_c01189{bottom:310.320000px;}
.y5c_c01189{bottom:311.040000px;}
.y58_c01189{bottom:349.920000px;}
.y5b_c01189{bottom:350.640000px;}
.y59_c01189{bottom:352.080000px;}
.y5a_c01189{bottom:352.800000px;}
.y57_c01189{bottom:353.520000px;}
.y54_c01189{bottom:392.400000px;}
.y55_c01189{bottom:393.840000px;}
.y53_c01189{bottom:395.280000px;}
.y56_c01189{bottom:396.000000px;}
.y4f_c01189{bottom:435.600000px;}
.y52_c01189{bottom:436.320000px;}
.y4e_c01189{bottom:437.760000px;}
.y50_c01189{bottom:438.480000px;}
.y51_c01189{bottom:439.200000px;}
.y4a_c01189{bottom:478.080000px;}
.y4c_c01189{bottom:479.520000px;}
.y49_c01189{bottom:480.240000px;}
.y4b_c01189{bottom:480.960000px;}
.y4d_c01189{bottom:481.680000px;}
.y46_c01189{bottom:521.280000px;}
.y45_c01189{bottom:523.440000px;}
.y48_c01189{bottom:524.160000px;}
.y47_c01189{bottom:524.880000px;}
.y41_c01189{bottom:563.760000px;}
.y40_c01189{bottom:565.920000px;}
.y44_c01189{bottom:567.360000px;}
.y42_c01189{bottom:568.080000px;}
.y43_c01189{bottom:568.800000px;}
.y3c_c01189{bottom:606.240000px;}
.y3b_c01189{bottom:608.400000px;}
.y3e_c01189{bottom:609.840000px;}
.y3d_c01189{bottom:610.560000px;}
.y3f_c01189{bottom:611.280000px;}
.y37_c01189{bottom:648.720000px;}
.y36_c01189{bottom:651.600000px;}
.y39_c01189{bottom:652.320000px;}
.y38_c01189{bottom:653.760000px;}
.y3a_c01189{bottom:655.200000px;}
.y32_c01189{bottom:692.640000px;}
.y31_c01189{bottom:694.080000px;}
.y35_c01189{bottom:695.520000px;}
.y33_c01189{bottom:696.960000px;}
.y34_c01189{bottom:697.680000px;}
.y2c_c01189{bottom:735.120000px;}
.y2b_c01189{bottom:736.560000px;}
.y2f_c01189{bottom:738.000000px;}
.y2d_c01189{bottom:738.720000px;}
.y30_c01189{bottom:739.440000px;}
.y2e_c01189{bottom:740.160000px;}
.y26_c01189{bottom:777.600000px;}
.y25_c01189{bottom:779.760000px;}
.y28_c01189{bottom:780.480000px;}
.y29_c01189{bottom:781.920000px;}
.y27_c01189{bottom:782.640000px;}
.y2a_c01189{bottom:784.080000px;}
.y21_c01189{bottom:819.360000px;}
.y20_c01189{bottom:821.520000px;}
.y23_c01189{bottom:824.400000px;}
.y22_c01189{bottom:825.840000px;}
.y24_c01189{bottom:826.560000px;}
.y1a_c01189{bottom:861.840000px;}
.y19_c01189{bottom:864.000000px;}
.y1d_c01189{bottom:866.880000px;}
.y1e_c01189{bottom:867.600000px;}
.y1b_c01189{bottom:868.320000px;}
.y1c_c01189{bottom:869.040000px;}
.y1f_c01189{bottom:869.760000px;}
.y14_c01189{bottom:905.040000px;}
.y13_c01189{bottom:905.760000px;}
.y17_c01189{bottom:910.080000px;}
.y15_c01189{bottom:910.800000px;}
.y18_c01189{bottom:911.520000px;}
.y16_c01189{bottom:912.960000px;}
.ye_c01189{bottom:948.240000px;}
.yd_c01189{bottom:948.960000px;}
.y10_c01189{bottom:952.560000px;}
.y12_c01189{bottom:954.000000px;}
.yf_c01189{bottom:954.720000px;}
.y11_c01189{bottom:955.440000px;}
.y9_c01189{bottom:990.720000px;}
.y8_c01189{bottom:991.440000px;}
.yb_c01189{bottom:997.200000px;}
.ya_c01189{bottom:998.640000px;}
.yc_c01189{bottom:999.360000px;}
.y3_c01189{bottom:1033.920000px;}
.y2_c01189{bottom:1034.640000px;}
.y6_c01189{bottom:1040.400000px;}
.y5_c01189{bottom:1041.120000px;}
.y4_c01189{bottom:1041.840000px;}
.y7_c01189{bottom:1042.560000px;}
.y1_c01189{bottom:1119.600000px;}
.h4_c01189{height:41.467500px;}
.h8_c01189{height:44.059219px;}
.h7_c01189{height:46.650937px;}
.h5_c01189{height:49.242656px;}
.he_c01189{height:49.530937px;}
.h6_c01189{height:51.834375px;}
.hd_c01189{height:52.122656px;}
.h9_c01189{height:54.426094px;}
.h3_c01189{height:57.017812px;}
.hb_c01189{height:59.609531px;}
.ha_c01189{height:64.792969px;}
.h2_c01189{height:67.384687px;}
.hc_c01189{height:69.976406px;}
.h0_c01189{height:1153.440000px;}
.h1_c01189{height:1153.500000px;}
.w1_c01189{width:773.250000px;}
.w0_c01189{width:773.280000px;}
.x0_c01189{left:0.000000px;}
.x2_c01189{left:59.760000px;}
.x12_c01189{left:61.200000px;}
.x3_c01189{left:141.120000px;}
.x14_c01189{left:142.560000px;}
.x15_c01189{left:280.800000px;}
.x16_c01189{left:324.000000px;}
.x4_c01189{left:531.360000px;}
.xa_c01189{left:561.600000px;}
.x5_c01189{left:563.040000px;}
.xb_c01189{left:583.200000px;}
.x10_c01189{left:585.360000px;}
.xf_c01189{left:616.320000px;}
.x6_c01189{left:618.480000px;}
.x7_c01189{left:650.880000px;}
.x11_c01189{left:661.680000px;}
.x1_c01189{left:667.440000px;}
.xc_c01189{left:682.560000px;}
.x9_c01189{left:684.000000px;}
.x8_c01189{left:693.360000px;}
.x13_c01189{left:695.520000px;}
.xd_c01189{left:713.520000px;}
.xe_c01189{left:714.960000px;}
@media print{
.v0_c01189{vertical-align:0.000000pt;}
.v1_c01189{vertical-align:2.560000pt;}
.ls0_c01189{letter-spacing:0.000000pt;}
.ws2_c01189{word-spacing:0.000000pt;}
.ws1_c01189{word-spacing:9.126400pt;}
.ws0_c01189{word-spacing:50.045867pt;}
.fs2_c01189{font-size:40.960000pt;}
.fs6_c01189{font-size:43.520000pt;}
.fs5_c01189{font-size:46.080000pt;}
.fs3_c01189{font-size:48.640000pt;}
.fs4_c01189{font-size:51.200000pt;}
.fs7_c01189{font-size:53.760000pt;}
.fs1_c01189{font-size:56.320000pt;}
.fs9_c01189{font-size:58.880000pt;}
.fs8_c01189{font-size:64.000000pt;}
.fs0_c01189{font-size:66.560000pt;}
.fsa_c01189{font-size:69.120000pt;}
.y0_c01189{bottom:0.000000pt;}
.y7d_c01189{bottom:42.880000pt;}
.y7f_c01189{bottom:43.520000pt;}
.y80_c01189{bottom:44.160000pt;}
.y7b_c01189{bottom:45.440000pt;}
.y7e_c01189{bottom:46.080000pt;}
.y7c_c01189{bottom:47.360000pt;}
.y7a_c01189{bottom:50.560000pt;}
.y79_c01189{bottom:81.280000pt;}
.y78_c01189{bottom:82.560000pt;}
.y76_c01189{bottom:83.200000pt;}
.y77_c01189{bottom:83.840000pt;}
.y75_c01189{bottom:87.680000pt;}
.y73_c01189{bottom:120.960000pt;}
.y71_c01189{bottom:121.600000pt;}
.y74_c01189{bottom:122.240000pt;}
.y72_c01189{bottom:122.880000pt;}
.y70_c01189{bottom:125.440000pt;}
.y6e_c01189{bottom:158.080000pt;}
.y6c_c01189{bottom:158.720000pt;}
.y6f_c01189{bottom:160.000000pt;}
.y6d_c01189{bottom:161.280000pt;}
.y6b_c01189{bottom:162.560000pt;}
.y68_c01189{bottom:196.480000pt;}
.y69_c01189{bottom:198.400000pt;}
.y6a_c01189{bottom:199.040000pt;}
.y67_c01189{bottom:200.960000pt;}
.y64_c01189{bottom:234.240000pt;}
.y62_c01189{bottom:234.880000pt;}
.y66_c01189{bottom:236.160000pt;}
.y63_c01189{bottom:236.800000pt;}
.y65_c01189{bottom:237.440000pt;}
.y61_c01189{bottom:238.720000pt;}
.y5d_c01189{bottom:272.640000pt;}
.y60_c01189{bottom:274.560000pt;}
.y5f_c01189{bottom:275.200000pt;}
.y5e_c01189{bottom:275.840000pt;}
.y5c_c01189{bottom:276.480000pt;}
.y58_c01189{bottom:311.040000pt;}
.y5b_c01189{bottom:311.680000pt;}
.y59_c01189{bottom:312.960000pt;}
.y5a_c01189{bottom:313.600000pt;}
.y57_c01189{bottom:314.240000pt;}
.y54_c01189{bottom:348.800000pt;}
.y55_c01189{bottom:350.080000pt;}
.y53_c01189{bottom:351.360000pt;}
.y56_c01189{bottom:352.000000pt;}
.y4f_c01189{bottom:387.200000pt;}
.y52_c01189{bottom:387.840000pt;}
.y4e_c01189{bottom:389.120000pt;}
.y50_c01189{bottom:389.760000pt;}
.y51_c01189{bottom:390.400000pt;}
.y4a_c01189{bottom:424.960000pt;}
.y4c_c01189{bottom:426.240000pt;}
.y49_c01189{bottom:426.880000pt;}
.y4b_c01189{bottom:427.520000pt;}
.y4d_c01189{bottom:428.160000pt;}
.y46_c01189{bottom:463.360000pt;}
.y45_c01189{bottom:465.280000pt;}
.y48_c01189{bottom:465.920000pt;}
.y47_c01189{bottom:466.560000pt;}
.y41_c01189{bottom:501.120000pt;}
.y40_c01189{bottom:503.040000pt;}
.y44_c01189{bottom:504.320000pt;}
.y42_c01189{bottom:504.960000pt;}
.y43_c01189{bottom:505.600000pt;}
.y3c_c01189{bottom:538.880000pt;}
.y3b_c01189{bottom:540.800000pt;}
.y3e_c01189{bottom:542.080000pt;}
.y3d_c01189{bottom:542.720000pt;}
.y3f_c01189{bottom:543.360000pt;}
.y37_c01189{bottom:576.640000pt;}
.y36_c01189{bottom:579.200000pt;}
.y39_c01189{bottom:579.840000pt;}
.y38_c01189{bottom:581.120000pt;}
.y3a_c01189{bottom:582.400000pt;}
.y32_c01189{bottom:615.680000pt;}
.y31_c01189{bottom:616.960000pt;}
.y35_c01189{bottom:618.240000pt;}
.y33_c01189{bottom:619.520000pt;}
.y34_c01189{bottom:620.160000pt;}
.y2c_c01189{bottom:653.440000pt;}
.y2b_c01189{bottom:654.720000pt;}
.y2f_c01189{bottom:656.000000pt;}
.y2d_c01189{bottom:656.640000pt;}
.y30_c01189{bottom:657.280000pt;}
.y2e_c01189{bottom:657.920000pt;}
.y26_c01189{bottom:691.200000pt;}
.y25_c01189{bottom:693.120000pt;}
.y28_c01189{bottom:693.760000pt;}
.y29_c01189{bottom:695.040000pt;}
.y27_c01189{bottom:695.680000pt;}
.y2a_c01189{bottom:696.960000pt;}
.y21_c01189{bottom:728.320000pt;}
.y20_c01189{bottom:730.240000pt;}
.y23_c01189{bottom:732.800000pt;}
.y22_c01189{bottom:734.080000pt;}
.y24_c01189{bottom:734.720000pt;}
.y1a_c01189{bottom:766.080000pt;}
.y19_c01189{bottom:768.000000pt;}
.y1d_c01189{bottom:770.560000pt;}
.y1e_c01189{bottom:771.200000pt;}
.y1b_c01189{bottom:771.840000pt;}
.y1c_c01189{bottom:772.480000pt;}
.y1f_c01189{bottom:773.120000pt;}
.y14_c01189{bottom:804.480000pt;}
.y13_c01189{bottom:805.120000pt;}
.y17_c01189{bottom:808.960000pt;}
.y15_c01189{bottom:809.600000pt;}
.y18_c01189{bottom:810.240000pt;}
.y16_c01189{bottom:811.520000pt;}
.ye_c01189{bottom:842.880000pt;}
.yd_c01189{bottom:843.520000pt;}
.y10_c01189{bottom:846.720000pt;}
.y12_c01189{bottom:848.000000pt;}
.yf_c01189{bottom:848.640000pt;}
.y11_c01189{bottom:849.280000pt;}
.y9_c01189{bottom:880.640000pt;}
.y8_c01189{bottom:881.280000pt;}
.yb_c01189{bottom:886.400000pt;}
.ya_c01189{bottom:887.680000pt;}
.yc_c01189{bottom:888.320000pt;}
.y3_c01189{bottom:919.040000pt;}
.y2_c01189{bottom:919.680000pt;}
.y6_c01189{bottom:924.800000pt;}
.y5_c01189{bottom:925.440000pt;}
.y4_c01189{bottom:926.080000pt;}
.y7_c01189{bottom:926.720000pt;}
.y1_c01189{bottom:995.200000pt;}
.h4_c01189{height:36.860000pt;}
.h8_c01189{height:39.163750pt;}
.h7_c01189{height:41.467500pt;}
.h5_c01189{height:43.771250pt;}
.he_c01189{height:44.027500pt;}
.h6_c01189{height:46.075000pt;}
.hd_c01189{height:46.331250pt;}
.h9_c01189{height:48.378750pt;}
.h3_c01189{height:50.682500pt;}
.hb_c01189{height:52.986250pt;}
.ha_c01189{height:57.593750pt;}
.h2_c01189{height:59.897500pt;}
.hc_c01189{height:62.201250pt;}
.h0_c01189{height:1025.280000pt;}
.h1_c01189{height:1025.333333pt;}
.w1_c01189{width:687.333333pt;}
.w0_c01189{width:687.360000pt;}
.x0_c01189{left:0.000000pt;}
.x2_c01189{left:53.120000pt;}
.x12_c01189{left:54.400000pt;}
.x3_c01189{left:125.440000pt;}
.x14_c01189{left:126.720000pt;}
.x15_c01189{left:249.600000pt;}
.x16_c01189{left:288.000000pt;}
.x4_c01189{left:472.320000pt;}
.xa_c01189{left:499.200000pt;}
.x5_c01189{left:500.480000pt;}
.xb_c01189{left:518.400000pt;}
.x10_c01189{left:520.320000pt;}
.xf_c01189{left:547.840000pt;}
.x6_c01189{left:549.760000pt;}
.x7_c01189{left:578.560000pt;}
.x11_c01189{left:588.160000pt;}
.x1_c01189{left:593.280000pt;}
.xc_c01189{left:606.720000pt;}
.x9_c01189{left:608.000000pt;}
.x8_c01189{left:616.320000pt;}
.x13_c01189{left:618.240000pt;}
.xd_c01189{left:634.240000pt;}
.xe_c01189{left:635.520000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_638d753f899644f21c3fc62e.woff2')format("woff");}.ff1_c01190{font-family:ff1_c01190;line-height:1.109863;font-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_c01190{transform:matrix(0.232550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232550,0.000000,0.000000,0.250000,0,0);}
.m2c_c01190{transform:matrix(0.235275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235275,0.000000,0.000000,0.250000,0,0);}
.m29_c01190{transform:matrix(0.241575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241575,0.000000,0.000000,0.250000,0,0);}
.m3a_c01190{transform:matrix(0.244850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244850,0.000000,0.000000,0.250000,0,0);}
.m27_c01190{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m2_c01190{transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);}
.mf_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);}
.m1e_c01190{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);}
.m37_c01190{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.ma_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);}
.m16_c01190{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);}
.m2a_c01190{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);}
.m28_c01190{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m5_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);}
.m3_c01190{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);}
.m33_c01190{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m13_c01190{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.me_c01190{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mb_c01190{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_c01190{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m8_c01190{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m17_c01190{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mc_c01190{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m11_c01190{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m7_c01190{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m24_c01190{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m25_c01190{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m6_c01190{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m4_c01190{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01190{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m36_c01190{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.md_c01190{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m20_c01190{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m18_c01190{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m32_c01190{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m22_c01190{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m19_c01190{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1_c01190{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m0_c01190{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);}
.m31_c01190{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m38_c01190{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);}
.m1d_c01190{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01190{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m12_c01190{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m26_c01190{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);}
.m15_c01190{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01190{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);}
.m1b_c01190{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);}
.m39_c01190{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m10_c01190{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01190{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);}
.m2f_c01190{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m21_c01190{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01190{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01190{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m30_c01190{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);}
.m34_c01190{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m35_c01190{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m23_c01190{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m9_c01190{transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);}
.v1_c01190{vertical-align:-5.760000px;}
.v0_c01190{vertical-align:0.000000px;}
.ls0_c01190{letter-spacing:0.000000px;}
.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;}
}
.ws3_c01190{word-spacing:0.000000px;}
.ws1_c01190{word-spacing:11.670106px;}
.ws0_c01190{word-spacing:14.041200px;}
.ws2_c01190{word-spacing:58.828487px;}
.fc0_c01190{color:transparent;}
.fsd_c01190{font-size:34.560000px;}
.fsc_c01190{font-size:37.440000px;}
.fs7_c01190{font-size:46.080000px;}
.fs2_c01190{font-size:48.960000px;}
.fs6_c01190{font-size:51.840000px;}
.fs4_c01190{font-size:54.720000px;}
.fs3_c01190{font-size:57.600000px;}
.fs1_c01190{font-size:60.480000px;}
.fs9_c01190{font-size:63.360000px;}
.fse_c01190{font-size:66.240000px;}
.fs8_c01190{font-size:69.120000px;}
.fs5_c01190{font-size:72.000000px;}
.fs0_c01190{font-size:74.880000px;}
.fsa_c01190{font-size:77.760000px;}
.fsb_c01190{font-size:97.920000px;}
.y0_c01190{bottom:0.000000px;}
.y9a_c01190{bottom:36.000000px;}
.y97_c01190{bottom:36.720000px;}
.y95_c01190{bottom:38.160000px;}
.y99_c01190{bottom:38.880000px;}
.y98_c01190{bottom:39.600000px;}
.y96_c01190{bottom:41.760000px;}
.y94_c01190{bottom:43.920000px;}
.y92_c01190{bottom:79.920000px;}
.y90_c01190{bottom:81.360000px;}
.y93_c01190{bottom:82.080000px;}
.y91_c01190{bottom:82.800000px;}
.y8f_c01190{bottom:85.680000px;}
.y8b_c01190{bottom:121.680000px;}
.y8e_c01190{bottom:122.400000px;}
.y8d_c01190{bottom:123.120000px;}
.y89_c01190{bottom:123.840000px;}
.y8c_c01190{bottom:124.560000px;}
.y8a_c01190{bottom:126.000000px;}
.y88_c01190{bottom:128.880000px;}
.y84_c01190{bottom:164.880000px;}
.y83_c01190{bottom:166.320000px;}
.y87_c01190{bottom:167.040000px;}
.y86_c01190{bottom:167.760000px;}
.y85_c01190{bottom:168.480000px;}
.y82_c01190{bottom:170.640000px;}
.y7d_c01190{bottom:208.800000px;}
.y80_c01190{bottom:209.520000px;}
.y7f_c01190{bottom:210.240000px;}
.y81_c01190{bottom:210.960000px;}
.y7e_c01190{bottom:211.680000px;}
.y7c_c01190{bottom:213.840000px;}
.y78_c01190{bottom:251.280000px;}
.y76_c01190{bottom:252.000000px;}
.y7a_c01190{bottom:252.720000px;}
.y7b_c01190{bottom:253.440000px;}
.y79_c01190{bottom:254.160000px;}
.y77_c01190{bottom:254.880000px;}
.y75_c01190{bottom:255.600000px;}
.y74_c01190{bottom:294.480000px;}
.y72_c01190{bottom:295.200000px;}
.y73_c01190{bottom:297.360000px;}
.y71_c01190{bottom:298.800000px;}
.y6e_c01190{bottom:336.960000px;}
.y6c_c01190{bottom:337.680000px;}
.y70_c01190{bottom:338.400000px;}
.y6f_c01190{bottom:339.120000px;}
.y6d_c01190{bottom:340.560000px;}
.y6b_c01190{bottom:342.000000px;}
.y66_c01190{bottom:380.160000px;}
.y6a_c01190{bottom:380.880000px;}
.y69_c01190{bottom:381.600000px;}
.y67_c01190{bottom:383.040000px;}
.y68_c01190{bottom:383.760000px;}
.y65_c01190{bottom:384.480000px;}
.y64_c01190{bottom:416.160000px;}
.y61_c01190{bottom:416.880000px;}
.y5f_c01190{bottom:423.360000px;}
.y62_c01190{bottom:424.080000px;}
.y60_c01190{bottom:426.240000px;}
.y5e_c01190{bottom:426.960000px;}
.y63_c01190{bottom:427.680000px;}
.y59_c01190{bottom:465.120000px;}
.y5b_c01190{bottom:465.840000px;}
.y5c_c01190{bottom:468.000000px;}
.y5a_c01190{bottom:468.720000px;}
.y58_c01190{bottom:469.440000px;}
.y5d_c01190{bottom:470.160000px;}
.y54_c01190{bottom:509.040000px;}
.y56_c01190{bottom:509.760000px;}
.y57_c01190{bottom:511.200000px;}
.y53_c01190{bottom:511.920000px;}
.y55_c01190{bottom:512.640000px;}
.y4e_c01190{bottom:551.520000px;}
.y50_c01190{bottom:552.960000px;}
.y4d_c01190{bottom:554.400000px;}
.y52_c01190{bottom:555.120000px;}
.y4f_c01190{bottom:555.840000px;}
.y51_c01190{bottom:556.560000px;}
.y48_c01190{bottom:593.280000px;}
.y49_c01190{bottom:594.720000px;}
.y47_c01190{bottom:596.160000px;}
.y4b_c01190{bottom:596.880000px;}
.y4a_c01190{bottom:598.320000px;}
.y4c_c01190{bottom:599.040000px;}
.y40_c01190{bottom:636.480000px;}
.y42_c01190{bottom:637.200000px;}
.y44_c01190{bottom:638.640000px;}
.y3f_c01190{bottom:639.360000px;}
.y41_c01190{bottom:640.080000px;}
.y43_c01190{bottom:640.800000px;}
.y45_c01190{bottom:641.520000px;}
.y46_c01190{bottom:642.240000px;}
.y39_c01190{bottom:678.960000px;}
.y3c_c01190{bottom:679.680000px;}
.y38_c01190{bottom:681.120000px;}
.y3e_c01190{bottom:682.560000px;}
.y3a_c01190{bottom:683.280000px;}
.y3b_c01190{bottom:684.000000px;}
.y3d_c01190{bottom:684.720000px;}
.y32_c01190{bottom:722.160000px;}
.y34_c01190{bottom:723.600000px;}
.y31_c01190{bottom:724.320000px;}
.y33_c01190{bottom:725.760000px;}
.y37_c01190{bottom:726.480000px;}
.y35_c01190{bottom:727.200000px;}
.y36_c01190{bottom:728.640000px;}
.y2b_c01190{bottom:764.640000px;}
.y2d_c01190{bottom:766.080000px;}
.y2a_c01190{bottom:766.800000px;}
.y2f_c01190{bottom:768.240000px;}
.y2c_c01190{bottom:768.960000px;}
.y2e_c01190{bottom:771.120000px;}
.y30_c01190{bottom:771.840000px;}
.y24_c01190{bottom:807.120000px;}
.y26_c01190{bottom:809.280000px;}
.y23_c01190{bottom:810.720000px;}
.y25_c01190{bottom:812.160000px;}
.y29_c01190{bottom:812.880000px;}
.y27_c01190{bottom:813.600000px;}
.y28_c01190{bottom:815.040000px;}
.y1c_c01190{bottom:851.040000px;}
.y1d_c01190{bottom:851.760000px;}
.y1b_c01190{bottom:853.200000px;}
.y1f_c01190{bottom:854.640000px;}
.y20_c01190{bottom:856.080000px;}
.y1e_c01190{bottom:856.800000px;}
.y21_c01190{bottom:857.520000px;}
.y22_c01190{bottom:858.240000px;}
.y15_c01190{bottom:894.240000px;}
.y16_c01190{bottom:894.960000px;}
.y14_c01190{bottom:895.680000px;}
.y19_c01190{bottom:898.560000px;}
.y17_c01190{bottom:899.280000px;}
.y18_c01190{bottom:900.000000px;}
.y1a_c01190{bottom:901.440000px;}
.ye_c01190{bottom:936.000000px;}
.yd_c01190{bottom:937.440000px;}
.yf_c01190{bottom:941.040000px;}
.y11_c01190{bottom:941.760000px;}
.y10_c01190{bottom:942.480000px;}
.y13_c01190{bottom:943.200000px;}
.y12_c01190{bottom:943.920000px;}
.ya_c01190{bottom:979.200000px;}
.y9_c01190{bottom:980.640000px;}
.yb_c01190{bottom:986.400000px;}
.yc_c01190{bottom:987.120000px;}
.y3_c01190{bottom:1021.680000px;}
.y2_c01190{bottom:1022.400000px;}
.y4_c01190{bottom:1023.120000px;}
.y6_c01190{bottom:1028.160000px;}
.y7_c01190{bottom:1028.880000px;}
.y5_c01190{bottom:1029.600000px;}
.y8_c01190{bottom:1031.040000px;}
.y1_c01190{bottom:1111.680000px;}
.hf_c01190{height:31.100625px;}
.he_c01190{height:33.692344px;}
.h9_c01190{height:41.467500px;}
.h4_c01190{height:44.059219px;}
.h8_c01190{height:46.650937px;}
.h6_c01190{height:49.242656px;}
.h5_c01190{height:51.834375px;}
.h3_c01190{height:54.426094px;}
.hb_c01190{height:57.017812px;}
.h10_c01190{height:59.609531px;}
.ha_c01190{height:62.201250px;}
.h7_c01190{height:64.792969px;}
.h2_c01190{height:67.384687px;}
.hc_c01190{height:69.976406px;}
.hd_c01190{height:88.118437px;}
.h1_c01190{height:1147.500000px;}
.h0_c01190{height:1147.680000px;}
.w1_c01190{width:765.750000px;}
.w0_c01190{width:766.080000px;}
.x0_c01190{left:0.000000px;}
.x2_c01190{left:55.440000px;}
.x1e_c01190{left:56.880000px;}
.x3_c01190{left:136.800000px;}
.x1d_c01190{left:138.240000px;}
.x20_c01190{left:235.440000px;}
.x4_c01190{left:276.480000px;}
.x11_c01190{left:308.880000px;}
.xc_c01190{left:318.960000px;}
.x19_c01190{left:320.400000px;}
.xd_c01190{left:329.040000px;}
.x1f_c01190{left:331.200000px;}
.x16_c01190{left:351.360000px;}
.x12_c01190{left:362.880000px;}
.xe_c01190{left:373.680000px;}
.xf_c01190{left:416.880000px;}
.x14_c01190{left:426.240000px;}
.x13_c01190{left:470.880000px;}
.x15_c01190{left:481.680000px;}
.x5_c01190{left:527.040000px;}
.x6_c01190{left:558.720000px;}
.x1b_c01190{left:560.160000px;}
.x17_c01190{left:591.840000px;}
.x7_c01190{left:613.440000px;}
.x18_c01190{left:614.880000px;}
.x8_c01190{left:646.560000px;}
.x1c_c01190{left:648.000000px;}
.x9_c01190{left:679.680000px;}
.x1_c01190{left:682.560000px;}
.xb_c01190{left:689.040000px;}
.x10_c01190{left:690.480000px;}
.xa_c01190{left:709.920000px;}
.x1a_c01190{left:711.360000px;}
@media print{
.v1_c01190{vertical-align:-5.120000pt;}
.v0_c01190{vertical-align:0.000000pt;}
.ls0_c01190{letter-spacing:0.000000pt;}
.ws3_c01190{word-spacing:0.000000pt;}
.ws1_c01190{word-spacing:10.373427pt;}
.ws0_c01190{word-spacing:12.481067pt;}
.ws2_c01190{word-spacing:52.291988pt;}
.fsd_c01190{font-size:30.720000pt;}
.fsc_c01190{font-size:33.280000pt;}
.fs7_c01190{font-size:40.960000pt;}
.fs2_c01190{font-size:43.520000pt;}
.fs6_c01190{font-size:46.080000pt;}
.fs4_c01190{font-size:48.640000pt;}
.fs3_c01190{font-size:51.200000pt;}
.fs1_c01190{font-size:53.760000pt;}
.fs9_c01190{font-size:56.320000pt;}
.fse_c01190{font-size:58.880000pt;}
.fs8_c01190{font-size:61.440000pt;}
.fs5_c01190{font-size:64.000000pt;}
.fs0_c01190{font-size:66.560000pt;}
.fsa_c01190{font-size:69.120000pt;}
.fsb_c01190{font-size:87.040000pt;}
.y0_c01190{bottom:0.000000pt;}
.y9a_c01190{bottom:32.000000pt;}
.y97_c01190{bottom:32.640000pt;}
.y95_c01190{bottom:33.920000pt;}
.y99_c01190{bottom:34.560000pt;}
.y98_c01190{bottom:35.200000pt;}
.y96_c01190{bottom:37.120000pt;}
.y94_c01190{bottom:39.040000pt;}
.y92_c01190{bottom:71.040000pt;}
.y90_c01190{bottom:72.320000pt;}
.y93_c01190{bottom:72.960000pt;}
.y91_c01190{bottom:73.600000pt;}
.y8f_c01190{bottom:76.160000pt;}
.y8b_c01190{bottom:108.160000pt;}
.y8e_c01190{bottom:108.800000pt;}
.y8d_c01190{bottom:109.440000pt;}
.y89_c01190{bottom:110.080000pt;}
.y8c_c01190{bottom:110.720000pt;}
.y8a_c01190{bottom:112.000000pt;}
.y88_c01190{bottom:114.560000pt;}
.y84_c01190{bottom:146.560000pt;}
.y83_c01190{bottom:147.840000pt;}
.y87_c01190{bottom:148.480000pt;}
.y86_c01190{bottom:149.120000pt;}
.y85_c01190{bottom:149.760000pt;}
.y82_c01190{bottom:151.680000pt;}
.y7d_c01190{bottom:185.600000pt;}
.y80_c01190{bottom:186.240000pt;}
.y7f_c01190{bottom:186.880000pt;}
.y81_c01190{bottom:187.520000pt;}
.y7e_c01190{bottom:188.160000pt;}
.y7c_c01190{bottom:190.080000pt;}
.y78_c01190{bottom:223.360000pt;}
.y76_c01190{bottom:224.000000pt;}
.y7a_c01190{bottom:224.640000pt;}
.y7b_c01190{bottom:225.280000pt;}
.y79_c01190{bottom:225.920000pt;}
.y77_c01190{bottom:226.560000pt;}
.y75_c01190{bottom:227.200000pt;}
.y74_c01190{bottom:261.760000pt;}
.y72_c01190{bottom:262.400000pt;}
.y73_c01190{bottom:264.320000pt;}
.y71_c01190{bottom:265.600000pt;}
.y6e_c01190{bottom:299.520000pt;}
.y6c_c01190{bottom:300.160000pt;}
.y70_c01190{bottom:300.800000pt;}
.y6f_c01190{bottom:301.440000pt;}
.y6d_c01190{bottom:302.720000pt;}
.y6b_c01190{bottom:304.000000pt;}
.y66_c01190{bottom:337.920000pt;}
.y6a_c01190{bottom:338.560000pt;}
.y69_c01190{bottom:339.200000pt;}
.y67_c01190{bottom:340.480000pt;}
.y68_c01190{bottom:341.120000pt;}
.y65_c01190{bottom:341.760000pt;}
.y64_c01190{bottom:369.920000pt;}
.y61_c01190{bottom:370.560000pt;}
.y5f_c01190{bottom:376.320000pt;}
.y62_c01190{bottom:376.960000pt;}
.y60_c01190{bottom:378.880000pt;}
.y5e_c01190{bottom:379.520000pt;}
.y63_c01190{bottom:380.160000pt;}
.y59_c01190{bottom:413.440000pt;}
.y5b_c01190{bottom:414.080000pt;}
.y5c_c01190{bottom:416.000000pt;}
.y5a_c01190{bottom:416.640000pt;}
.y58_c01190{bottom:417.280000pt;}
.y5d_c01190{bottom:417.920000pt;}
.y54_c01190{bottom:452.480000pt;}
.y56_c01190{bottom:453.120000pt;}
.y57_c01190{bottom:454.400000pt;}
.y53_c01190{bottom:455.040000pt;}
.y55_c01190{bottom:455.680000pt;}
.y4e_c01190{bottom:490.240000pt;}
.y50_c01190{bottom:491.520000pt;}
.y4d_c01190{bottom:492.800000pt;}
.y52_c01190{bottom:493.440000pt;}
.y4f_c01190{bottom:494.080000pt;}
.y51_c01190{bottom:494.720000pt;}
.y48_c01190{bottom:527.360000pt;}
.y49_c01190{bottom:528.640000pt;}
.y47_c01190{bottom:529.920000pt;}
.y4b_c01190{bottom:530.560000pt;}
.y4a_c01190{bottom:531.840000pt;}
.y4c_c01190{bottom:532.480000pt;}
.y40_c01190{bottom:565.760000pt;}
.y42_c01190{bottom:566.400000pt;}
.y44_c01190{bottom:567.680000pt;}
.y3f_c01190{bottom:568.320000pt;}
.y41_c01190{bottom:568.960000pt;}
.y43_c01190{bottom:569.600000pt;}
.y45_c01190{bottom:570.240000pt;}
.y46_c01190{bottom:570.880000pt;}
.y39_c01190{bottom:603.520000pt;}
.y3c_c01190{bottom:604.160000pt;}
.y38_c01190{bottom:605.440000pt;}
.y3e_c01190{bottom:606.720000pt;}
.y3a_c01190{bottom:607.360000pt;}
.y3b_c01190{bottom:608.000000pt;}
.y3d_c01190{bottom:608.640000pt;}
.y32_c01190{bottom:641.920000pt;}
.y34_c01190{bottom:643.200000pt;}
.y31_c01190{bottom:643.840000pt;}
.y33_c01190{bottom:645.120000pt;}
.y37_c01190{bottom:645.760000pt;}
.y35_c01190{bottom:646.400000pt;}
.y36_c01190{bottom:647.680000pt;}
.y2b_c01190{bottom:679.680000pt;}
.y2d_c01190{bottom:680.960000pt;}
.y2a_c01190{bottom:681.600000pt;}
.y2f_c01190{bottom:682.880000pt;}
.y2c_c01190{bottom:683.520000pt;}
.y2e_c01190{bottom:685.440000pt;}
.y30_c01190{bottom:686.080000pt;}
.y24_c01190{bottom:717.440000pt;}
.y26_c01190{bottom:719.360000pt;}
.y23_c01190{bottom:720.640000pt;}
.y25_c01190{bottom:721.920000pt;}
.y29_c01190{bottom:722.560000pt;}
.y27_c01190{bottom:723.200000pt;}
.y28_c01190{bottom:724.480000pt;}
.y1c_c01190{bottom:756.480000pt;}
.y1d_c01190{bottom:757.120000pt;}
.y1b_c01190{bottom:758.400000pt;}
.y1f_c01190{bottom:759.680000pt;}
.y20_c01190{bottom:760.960000pt;}
.y1e_c01190{bottom:761.600000pt;}
.y21_c01190{bottom:762.240000pt;}
.y22_c01190{bottom:762.880000pt;}
.y15_c01190{bottom:794.880000pt;}
.y16_c01190{bottom:795.520000pt;}
.y14_c01190{bottom:796.160000pt;}
.y19_c01190{bottom:798.720000pt;}
.y17_c01190{bottom:799.360000pt;}
.y18_c01190{bottom:800.000000pt;}
.y1a_c01190{bottom:801.280000pt;}
.ye_c01190{bottom:832.000000pt;}
.yd_c01190{bottom:833.280000pt;}
.yf_c01190{bottom:836.480000pt;}
.y11_c01190{bottom:837.120000pt;}
.y10_c01190{bottom:837.760000pt;}
.y13_c01190{bottom:838.400000pt;}
.y12_c01190{bottom:839.040000pt;}
.ya_c01190{bottom:870.400000pt;}
.y9_c01190{bottom:871.680000pt;}
.yb_c01190{bottom:876.800000pt;}
.yc_c01190{bottom:877.440000pt;}
.y3_c01190{bottom:908.160000pt;}
.y2_c01190{bottom:908.800000pt;}
.y4_c01190{bottom:909.440000pt;}
.y6_c01190{bottom:913.920000pt;}
.y7_c01190{bottom:914.560000pt;}
.y5_c01190{bottom:915.200000pt;}
.y8_c01190{bottom:916.480000pt;}
.y1_c01190{bottom:988.160000pt;}
.hf_c01190{height:27.645000pt;}
.he_c01190{height:29.948750pt;}
.h9_c01190{height:36.860000pt;}
.h4_c01190{height:39.163750pt;}
.h8_c01190{height:41.467500pt;}
.h6_c01190{height:43.771250pt;}
.h5_c01190{height:46.075000pt;}
.h3_c01190{height:48.378750pt;}
.hb_c01190{height:50.682500pt;}
.h10_c01190{height:52.986250pt;}
.ha_c01190{height:55.290000pt;}
.h7_c01190{height:57.593750pt;}
.h2_c01190{height:59.897500pt;}
.hc_c01190{height:62.201250pt;}
.hd_c01190{height:78.327500pt;}
.h1_c01190{height:1020.000000pt;}
.h0_c01190{height:1020.160000pt;}
.w1_c01190{width:680.666667pt;}
.w0_c01190{width:680.960000pt;}
.x0_c01190{left:0.000000pt;}
.x2_c01190{left:49.280000pt;}
.x1e_c01190{left:50.560000pt;}
.x3_c01190{left:121.600000pt;}
.x1d_c01190{left:122.880000pt;}
.x20_c01190{left:209.280000pt;}
.x4_c01190{left:245.760000pt;}
.x11_c01190{left:274.560000pt;}
.xc_c01190{left:283.520000pt;}
.x19_c01190{left:284.800000pt;}
.xd_c01190{left:292.480000pt;}
.x1f_c01190{left:294.400000pt;}
.x16_c01190{left:312.320000pt;}
.x12_c01190{left:322.560000pt;}
.xe_c01190{left:332.160000pt;}
.xf_c01190{left:370.560000pt;}
.x14_c01190{left:378.880000pt;}
.x13_c01190{left:418.560000pt;}
.x15_c01190{left:428.160000pt;}
.x5_c01190{left:468.480000pt;}
.x6_c01190{left:496.640000pt;}
.x1b_c01190{left:497.920000pt;}
.x17_c01190{left:526.080000pt;}
.x7_c01190{left:545.280000pt;}
.x18_c01190{left:546.560000pt;}
.x8_c01190{left:574.720000pt;}
.x1c_c01190{left:576.000000pt;}
.x9_c01190{left:604.160000pt;}
.x1_c01190{left:606.720000pt;}
.xb_c01190{left:612.480000pt;}
.x10_c01190{left:613.760000pt;}
.xa_c01190{left:631.040000pt;}
.x1a_c01190{left:632.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_db0ce729cd6ba72f754089f7.woff2')format("woff");}.ff1_c01191{font-family:ff1_c01191;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m34_c01191{transform:matrix(0.230775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230775,0.000000,0.000000,0.250000,0,0);}
.m31_c01191{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m2e_c01191{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);}
.m2d_c01191{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.mc_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);}
.m33_c01191{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01191{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_c01191{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m19_c01191{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_c01191{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m7_c01191{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.mf_c01191{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1_c01191{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m3_c01191{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m15_c01191{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m11_c01191{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m8_c01191{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m20_c01191{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m18_c01191{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m5_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);}
.m1b_c01191{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01191{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m21_c01191{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m36_c01191{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m9_c01191{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m30_c01191{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m4_c01191{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m25_c01191{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m16_c01191{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m12_c01191{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m27_c01191{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.md_c01191{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);}
.m37_c01191{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m2_c01191{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);}
.m2a_c01191{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m6_c01191{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.me_c01191{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m23_c01191{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m22_c01191{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m0_c01191{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01191{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);}
.m32_c01191{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m29_c01191{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.ma_c01191{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m28_c01191{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);}
.m24_c01191{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01191{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);}
.m38_c01191{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);}
.m1a_c01191{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);}
.m13_c01191{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01191{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);}
.m35_c01191{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m10_c01191{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01191{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.mb_c01191{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);}
.m26_c01191{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m14_c01191{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.v3_c01191{vertical-align:-2.880000px;}
.v0_c01191{vertical-align:0.000000px;}
.v1_c01191{vertical-align:2.880000px;}
.v2_c01191{vertical-align:5.760000px;}
.ls0_c01191{letter-spacing:0.000000px;}
.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;}
}
.ws4_c01191{word-spacing:0.000000px;}
.ws2_c01191{word-spacing:5.581680px;}
.ws1_c01191{word-spacing:10.749600px;}
.ws3_c01191{word-spacing:11.856000px;}
.ws0_c01191{word-spacing:14.041200px;}
.fc0_c01191{color:transparent;}
.fsb_c01191{font-size:31.680000px;}
.fs9_c01191{font-size:34.560000px;}
.fsd_c01191{font-size:37.440000px;}
.fsf_c01191{font-size:40.320000px;}
.fse_c01191{font-size:43.200000px;}
.fs6_c01191{font-size:46.080000px;}
.fs4_c01191{font-size:48.960000px;}
.fs2_c01191{font-size:51.840000px;}
.fs3_c01191{font-size:54.720000px;}
.fs1_c01191{font-size:57.600000px;}
.fs8_c01191{font-size:60.480000px;}
.fsa_c01191{font-size:63.360000px;}
.fs5_c01191{font-size:66.240000px;}
.fs7_c01191{font-size:69.120000px;}
.fsc_c01191{font-size:72.000000px;}
.fs0_c01191{font-size:74.880000px;}
.y0_c01191{bottom:0.000000px;}
.y8a_c01191{bottom:48.240000px;}
.y88_c01191{bottom:49.680000px;}
.y91_c01191{bottom:50.400000px;}
.y86_c01191{bottom:51.120000px;}
.y89_c01191{bottom:51.840000px;}
.y87_c01191{bottom:52.560000px;}
.y85_c01191{bottom:54.720000px;}
.y83_c01191{bottom:92.880000px;}
.y81_c01191{bottom:93.600000px;}
.y90_c01191{bottom:94.320000px;}
.y8f_c01191{bottom:95.040000px;}
.y84_c01191{bottom:95.760000px;}
.y82_c01191{bottom:96.480000px;}
.y80_c01191{bottom:97.920000px;}
.y7e_c01191{bottom:135.360000px;}
.y8e_c01191{bottom:136.800000px;}
.y7f_c01191{bottom:138.240000px;}
.y7d_c01191{bottom:141.120000px;}
.y7a_c01191{bottom:179.280000px;}
.y8d_c01191{bottom:180.720000px;}
.y7b_c01191{bottom:181.440000px;}
.y7c_c01191{bottom:182.160000px;}
.y79_c01191{bottom:183.600000px;}
.y78_c01191{bottom:220.320000px;}
.y8c_c01191{bottom:221.040000px;}
.y76_c01191{bottom:221.760000px;}
.y77_c01191{bottom:223.920000px;}
.y8b_c01191{bottom:224.640000px;}
.y75_c01191{bottom:225.360000px;}
.y6b_c01191{bottom:264.240000px;}
.y73_c01191{bottom:264.960000px;}
.y74_c01191{bottom:266.400000px;}
.y72_c01191{bottom:267.120000px;}
.y6a_c01191{bottom:267.840000px;}
.y69_c01191{bottom:306.720000px;}
.y71_c01191{bottom:308.160000px;}
.y70_c01191{bottom:308.880000px;}
.y6f_c01191{bottom:309.600000px;}
.y68_c01191{bottom:310.320000px;}
.y65_c01191{bottom:349.200000px;}
.y67_c01191{bottom:349.920000px;}
.y66_c01191{bottom:350.640000px;}
.y6e_c01191{bottom:351.360000px;}
.y64_c01191{bottom:352.080000px;}
.y6c_c01191{bottom:352.800000px;}
.y6d_c01191{bottom:353.520000px;}
.y61_c01191{bottom:392.400000px;}
.y63_c01191{bottom:393.840000px;}
.y60_c01191{bottom:394.560000px;}
.y62_c01191{bottom:396.000000px;}
.y5c_c01191{bottom:434.880000px;}
.y5e_c01191{bottom:437.040000px;}
.y5b_c01191{bottom:437.760000px;}
.y5f_c01191{bottom:438.480000px;}
.y5d_c01191{bottom:439.200000px;}
.y57_c01191{bottom:478.080000px;}
.y59_c01191{bottom:479.520000px;}
.y56_c01191{bottom:480.240000px;}
.y58_c01191{bottom:480.960000px;}
.y5a_c01191{bottom:482.400000px;}
.y52_c01191{bottom:521.280000px;}
.y51_c01191{bottom:522.720000px;}
.y55_c01191{bottom:524.160000px;}
.y53_c01191{bottom:525.600000px;}
.y54_c01191{bottom:526.320000px;}
.y4c_c01191{bottom:563.760000px;}
.y4b_c01191{bottom:565.920000px;}
.y4f_c01191{bottom:566.640000px;}
.y4e_c01191{bottom:568.080000px;}
.y4d_c01191{bottom:568.800000px;}
.y50_c01191{bottom:570.240000px;}
.y45_c01191{bottom:606.960000px;}
.y48_c01191{bottom:607.680000px;}
.y44_c01191{bottom:609.120000px;}
.y47_c01191{bottom:610.560000px;}
.y46_c01191{bottom:611.280000px;}
.y49_c01191{bottom:612.720000px;}
.y4a_c01191{bottom:613.440000px;}
.y2c_c01191{bottom:650.160000px;}
.y2b_c01191{bottom:651.600000px;}
.y43_c01191{bottom:653.760000px;}
.y41_c01191{bottom:654.480000px;}
.y40_c01191{bottom:655.200000px;}
.y42_c01191{bottom:655.920000px;}
.y29_c01191{bottom:692.640000px;}
.y2a_c01191{bottom:693.360000px;}
.y28_c01191{bottom:694.080000px;}
.y3c_c01191{bottom:697.680000px;}
.y3f_c01191{bottom:698.400000px;}
.y3d_c01191{bottom:699.120000px;}
.y3e_c01191{bottom:699.840000px;}
.y27_c01191{bottom:735.840000px;}
.y26_c01191{bottom:736.560000px;}
.y3b_c01191{bottom:740.160000px;}
.y3a_c01191{bottom:742.320000px;}
.y24_c01191{bottom:777.600000px;}
.y23_c01191{bottom:779.760000px;}
.y25_c01191{bottom:781.920000px;}
.y38_c01191{bottom:782.640000px;}
.y31_c01191{bottom:784.080000px;}
.y32_c01191{bottom:784.800000px;}
.y39_c01191{bottom:785.520000px;}
.y20_c01191{bottom:820.800000px;}
.y22_c01191{bottom:822.240000px;}
.y21_c01191{bottom:824.400000px;}
.y35_c01191{bottom:825.840000px;}
.y37_c01191{bottom:826.560000px;}
.y2f_c01191{bottom:827.280000px;}
.y30_c01191{bottom:828.000000px;}
.y36_c01191{bottom:828.720000px;}
.y1e_c01191{bottom:863.280000px;}
.y1d_c01191{bottom:864.000000px;}
.y1f_c01191{bottom:864.720000px;}
.y33_c01191{bottom:868.320000px;}
.y2e_c01191{bottom:869.040000px;}
.y2d_c01191{bottom:869.760000px;}
.y34_c01191{bottom:871.200000px;}
.y1b_c01191{bottom:905.760000px;}
.y1a_c01191{bottom:906.480000px;}
.y1c_c01191{bottom:907.200000px;}
.ye_c01191{bottom:910.800000px;}
.yf_c01191{bottom:911.520000px;}
.yd_c01191{bottom:912.240000px;}
.y10_c01191{bottom:914.400000px;}
.y18_c01191{bottom:948.960000px;}
.y19_c01191{bottom:950.400000px;}
.yb_c01191{bottom:954.720000px;}
.y9_c01191{bottom:955.440000px;}
.ya_c01191{bottom:956.160000px;}
.yc_c01191{bottom:957.600000px;}
.y14_c01191{bottom:991.440000px;}
.y17_c01191{bottom:993.600000px;}
.y15_c01191{bottom:995.760000px;}
.y16_c01191{bottom:996.480000px;}
.y7_c01191{bottom:997.920000px;}
.y5_c01191{bottom:998.640000px;}
.y6_c01191{bottom:999.360000px;}
.y8_c01191{bottom:1001.520000px;}
.y11_c01191{bottom:1034.640000px;}
.y13_c01191{bottom:1036.800000px;}
.y12_c01191{bottom:1038.960000px;}
.y2_c01191{bottom:1041.120000px;}
.y4_c01191{bottom:1042.560000px;}
.y3_c01191{bottom:1043.280000px;}
.y1_c01191{bottom:1098.000000px;}
.hd_c01191{height:28.508906px;}
.hb_c01191{height:31.100625px;}
.hf_c01191{height:33.692344px;}
.h13_c01191{height:36.284062px;}
.h10_c01191{height:38.875781px;}
.h8_c01191{height:41.467500px;}
.h6_c01191{height:44.059219px;}
.h4_c01191{height:46.650937px;}
.h5_c01191{height:49.242656px;}
.h11_c01191{height:49.530938px;}
.h3_c01191{height:51.834375px;}
.ha_c01191{height:54.426094px;}
.h12_c01191{height:55.002656px;}
.hc_c01191{height:57.017812px;}
.h7_c01191{height:59.609531px;}
.h9_c01191{height:62.201250px;}
.he_c01191{height:64.792969px;}
.h2_c01191{height:67.384687px;}
.h1_c01191{height:1151.250000px;}
.h0_c01191{height:1151.280000px;}
.w1_c01191{width:770.250000px;}
.w0_c01191{width:770.400000px;}
.x0_c01191{left:0.000000px;}
.xb_c01191{left:54.000000px;}
.x13_c01191{left:55.440000px;}
.x24_c01191{left:56.880000px;}
.x27_c01191{left:58.320000px;}
.x32_c01191{left:59.760000px;}
.xc_c01191{left:135.360000px;}
.x15_c01191{left:136.800000px;}
.x23_c01191{left:138.240000px;}
.x2f_c01191{left:140.400000px;}
.xd_c01191{left:232.560000px;}
.x14_c01191{left:234.000000px;}
.x20_c01191{left:245.520000px;}
.x2b_c01191{left:246.960000px;}
.x33_c01191{left:248.400000px;}
.xe_c01191{left:274.320000px;}
.x11_c01191{left:275.760000px;}
.xf_c01191{left:287.280000px;}
.x2c_c01191{left:288.720000px;}
.x38_c01191{left:290.160000px;}
.x30_c01191{left:300.960000px;}
.x10_c01191{left:328.320000px;}
.x12_c01191{left:330.480000px;}
.x1b_c01191{left:339.840000px;}
.x1c_c01191{left:384.480000px;}
.x26_c01191{left:397.440000px;}
.x34_c01191{left:431.280000px;}
.x21_c01191{left:439.200000px;}
.x2d_c01191{left:440.640000px;}
.x39_c01191{left:442.080000px;}
.x31_c01191{left:451.440000px;}
.x35_c01191{left:473.040000px;}
.x3a_c01191{left:478.800000px;}
.x2e_c01191{left:483.120000px;}
.x22_c01191{left:488.160000px;}
.x2_c01191{left:525.599625px;}
.x16_c01191{left:527.040000px;}
.x28_c01191{left:528.480000px;}
.x36_c01191{left:529.920000px;}
.x6_c01191{left:557.280000px;}
.x17_c01191{left:558.720000px;}
.x1e_c01191{left:560.160000px;}
.x29_c01191{left:561.600000px;}
.x37_c01191{left:563.040000px;}
.x7_c01191{left:578.880000px;}
.x18_c01191{left:580.320000px;}
.x3_c01191{left:612.720000px;}
.x1d_c01191{left:614.160000px;}
.x2a_c01191{left:615.600000px;}
.x3c_c01191{left:617.040000px;}
.x4_c01191{left:645.120000px;}
.x1a_c01191{left:646.560000px;}
.x1f_c01191{left:648.000000px;}
.x3b_c01191{left:649.440000px;}
.x9_c01191{left:678.240000px;}
.x19_c01191{left:680.400000px;}
.x1_c01191{left:682.560000px;}
.x5_c01191{left:687.600000px;}
.x8_c01191{left:689.040000px;}
.x25_c01191{left:691.200000px;}
.xa_c01191{left:709.200000px;}
@media print{
.v3_c01191{vertical-align:-2.560000pt;}
.v0_c01191{vertical-align:0.000000pt;}
.v1_c01191{vertical-align:2.560000pt;}
.v2_c01191{vertical-align:5.120000pt;}
.ls0_c01191{letter-spacing:0.000000pt;}
.ws4_c01191{word-spacing:0.000000pt;}
.ws2_c01191{word-spacing:4.961493pt;}
.ws1_c01191{word-spacing:9.555200pt;}
.ws3_c01191{word-spacing:10.538667pt;}
.ws0_c01191{word-spacing:12.481067pt;}
.fsb_c01191{font-size:28.160000pt;}
.fs9_c01191{font-size:30.720000pt;}
.fsd_c01191{font-size:33.280000pt;}
.fsf_c01191{font-size:35.840000pt;}
.fse_c01191{font-size:38.400000pt;}
.fs6_c01191{font-size:40.960000pt;}
.fs4_c01191{font-size:43.520000pt;}
.fs2_c01191{font-size:46.080000pt;}
.fs3_c01191{font-size:48.640000pt;}
.fs1_c01191{font-size:51.200000pt;}
.fs8_c01191{font-size:53.760000pt;}
.fsa_c01191{font-size:56.320000pt;}
.fs5_c01191{font-size:58.880000pt;}
.fs7_c01191{font-size:61.440000pt;}
.fsc_c01191{font-size:64.000000pt;}
.fs0_c01191{font-size:66.560000pt;}
.y0_c01191{bottom:0.000000pt;}
.y8a_c01191{bottom:42.880000pt;}
.y88_c01191{bottom:44.160000pt;}
.y91_c01191{bottom:44.800000pt;}
.y86_c01191{bottom:45.440000pt;}
.y89_c01191{bottom:46.080000pt;}
.y87_c01191{bottom:46.720000pt;}
.y85_c01191{bottom:48.640000pt;}
.y83_c01191{bottom:82.560000pt;}
.y81_c01191{bottom:83.200000pt;}
.y90_c01191{bottom:83.840000pt;}
.y8f_c01191{bottom:84.480000pt;}
.y84_c01191{bottom:85.120000pt;}
.y82_c01191{bottom:85.760000pt;}
.y80_c01191{bottom:87.040000pt;}
.y7e_c01191{bottom:120.320000pt;}
.y8e_c01191{bottom:121.600000pt;}
.y7f_c01191{bottom:122.880000pt;}
.y7d_c01191{bottom:125.440000pt;}
.y7a_c01191{bottom:159.360000pt;}
.y8d_c01191{bottom:160.640000pt;}
.y7b_c01191{bottom:161.280000pt;}
.y7c_c01191{bottom:161.920000pt;}
.y79_c01191{bottom:163.200000pt;}
.y78_c01191{bottom:195.840000pt;}
.y8c_c01191{bottom:196.480000pt;}
.y76_c01191{bottom:197.120000pt;}
.y77_c01191{bottom:199.040000pt;}
.y8b_c01191{bottom:199.680000pt;}
.y75_c01191{bottom:200.320000pt;}
.y6b_c01191{bottom:234.880000pt;}
.y73_c01191{bottom:235.520000pt;}
.y74_c01191{bottom:236.800000pt;}
.y72_c01191{bottom:237.440000pt;}
.y6a_c01191{bottom:238.080000pt;}
.y69_c01191{bottom:272.640000pt;}
.y71_c01191{bottom:273.920000pt;}
.y70_c01191{bottom:274.560000pt;}
.y6f_c01191{bottom:275.200000pt;}
.y68_c01191{bottom:275.840000pt;}
.y65_c01191{bottom:310.400000pt;}
.y67_c01191{bottom:311.040000pt;}
.y66_c01191{bottom:311.680000pt;}
.y6e_c01191{bottom:312.320000pt;}
.y64_c01191{bottom:312.960000pt;}
.y6c_c01191{bottom:313.600000pt;}
.y6d_c01191{bottom:314.240000pt;}
.y61_c01191{bottom:348.800000pt;}
.y63_c01191{bottom:350.080000pt;}
.y60_c01191{bottom:350.720000pt;}
.y62_c01191{bottom:352.000000pt;}
.y5c_c01191{bottom:386.560000pt;}
.y5e_c01191{bottom:388.480000pt;}
.y5b_c01191{bottom:389.120000pt;}
.y5f_c01191{bottom:389.760000pt;}
.y5d_c01191{bottom:390.400000pt;}
.y57_c01191{bottom:424.960000pt;}
.y59_c01191{bottom:426.240000pt;}
.y56_c01191{bottom:426.880000pt;}
.y58_c01191{bottom:427.520000pt;}
.y5a_c01191{bottom:428.800000pt;}
.y52_c01191{bottom:463.360000pt;}
.y51_c01191{bottom:464.640000pt;}
.y55_c01191{bottom:465.920000pt;}
.y53_c01191{bottom:467.200000pt;}
.y54_c01191{bottom:467.840000pt;}
.y4c_c01191{bottom:501.120000pt;}
.y4b_c01191{bottom:503.040000pt;}
.y4f_c01191{bottom:503.680000pt;}
.y4e_c01191{bottom:504.960000pt;}
.y4d_c01191{bottom:505.600000pt;}
.y50_c01191{bottom:506.880000pt;}
.y45_c01191{bottom:539.520000pt;}
.y48_c01191{bottom:540.160000pt;}
.y44_c01191{bottom:541.440000pt;}
.y47_c01191{bottom:542.720000pt;}
.y46_c01191{bottom:543.360000pt;}
.y49_c01191{bottom:544.640000pt;}
.y4a_c01191{bottom:545.280000pt;}
.y2c_c01191{bottom:577.920000pt;}
.y2b_c01191{bottom:579.200000pt;}
.y43_c01191{bottom:581.120000pt;}
.y41_c01191{bottom:581.760000pt;}
.y40_c01191{bottom:582.400000pt;}
.y42_c01191{bottom:583.040000pt;}
.y29_c01191{bottom:615.680000pt;}
.y2a_c01191{bottom:616.320000pt;}
.y28_c01191{bottom:616.960000pt;}
.y3c_c01191{bottom:620.160000pt;}
.y3f_c01191{bottom:620.800000pt;}
.y3d_c01191{bottom:621.440000pt;}
.y3e_c01191{bottom:622.080000pt;}
.y27_c01191{bottom:654.080000pt;}
.y26_c01191{bottom:654.720000pt;}
.y3b_c01191{bottom:657.920000pt;}
.y3a_c01191{bottom:659.840000pt;}
.y24_c01191{bottom:691.200000pt;}
.y23_c01191{bottom:693.120000pt;}
.y25_c01191{bottom:695.040000pt;}
.y38_c01191{bottom:695.680000pt;}
.y31_c01191{bottom:696.960000pt;}
.y32_c01191{bottom:697.600000pt;}
.y39_c01191{bottom:698.240000pt;}
.y20_c01191{bottom:729.600000pt;}
.y22_c01191{bottom:730.880000pt;}
.y21_c01191{bottom:732.800000pt;}
.y35_c01191{bottom:734.080000pt;}
.y37_c01191{bottom:734.720000pt;}
.y2f_c01191{bottom:735.360000pt;}
.y30_c01191{bottom:736.000000pt;}
.y36_c01191{bottom:736.640000pt;}
.y1e_c01191{bottom:767.360000pt;}
.y1d_c01191{bottom:768.000000pt;}
.y1f_c01191{bottom:768.640000pt;}
.y33_c01191{bottom:771.840000pt;}
.y2e_c01191{bottom:772.480000pt;}
.y2d_c01191{bottom:773.120000pt;}
.y34_c01191{bottom:774.400000pt;}
.y1b_c01191{bottom:805.120000pt;}
.y1a_c01191{bottom:805.760000pt;}
.y1c_c01191{bottom:806.400000pt;}
.ye_c01191{bottom:809.600000pt;}
.yf_c01191{bottom:810.240000pt;}
.yd_c01191{bottom:810.880000pt;}
.y10_c01191{bottom:812.800000pt;}
.y18_c01191{bottom:843.520000pt;}
.y19_c01191{bottom:844.800000pt;}
.yb_c01191{bottom:848.640000pt;}
.y9_c01191{bottom:849.280000pt;}
.ya_c01191{bottom:849.920000pt;}
.yc_c01191{bottom:851.200000pt;}
.y14_c01191{bottom:881.280000pt;}
.y17_c01191{bottom:883.200000pt;}
.y15_c01191{bottom:885.120000pt;}
.y16_c01191{bottom:885.760000pt;}
.y7_c01191{bottom:887.040000pt;}
.y5_c01191{bottom:887.680000pt;}
.y6_c01191{bottom:888.320000pt;}
.y8_c01191{bottom:890.240000pt;}
.y11_c01191{bottom:919.680000pt;}
.y13_c01191{bottom:921.600000pt;}
.y12_c01191{bottom:923.520000pt;}
.y2_c01191{bottom:925.440000pt;}
.y4_c01191{bottom:926.720000pt;}
.y3_c01191{bottom:927.360000pt;}
.y1_c01191{bottom:976.000000pt;}
.hd_c01191{height:25.341250pt;}
.hb_c01191{height:27.645000pt;}
.hf_c01191{height:29.948750pt;}
.h13_c01191{height:32.252500pt;}
.h10_c01191{height:34.556250pt;}
.h8_c01191{height:36.860000pt;}
.h6_c01191{height:39.163750pt;}
.h4_c01191{height:41.467500pt;}
.h5_c01191{height:43.771250pt;}
.h11_c01191{height:44.027500pt;}
.h3_c01191{height:46.075000pt;}
.ha_c01191{height:48.378750pt;}
.h12_c01191{height:48.891250pt;}
.hc_c01191{height:50.682500pt;}
.h7_c01191{height:52.986250pt;}
.h9_c01191{height:55.290000pt;}
.he_c01191{height:57.593750pt;}
.h2_c01191{height:59.897500pt;}
.h1_c01191{height:1023.333333pt;}
.h0_c01191{height:1023.360000pt;}
.w1_c01191{width:684.666667pt;}
.w0_c01191{width:684.800000pt;}
.x0_c01191{left:0.000000pt;}
.xb_c01191{left:48.000000pt;}
.x13_c01191{left:49.280000pt;}
.x24_c01191{left:50.560000pt;}
.x27_c01191{left:51.840000pt;}
.x32_c01191{left:53.120000pt;}
.xc_c01191{left:120.320000pt;}
.x15_c01191{left:121.600000pt;}
.x23_c01191{left:122.880000pt;}
.x2f_c01191{left:124.800000pt;}
.xd_c01191{left:206.720000pt;}
.x14_c01191{left:208.000000pt;}
.x20_c01191{left:218.240000pt;}
.x2b_c01191{left:219.520000pt;}
.x33_c01191{left:220.800000pt;}
.xe_c01191{left:243.840000pt;}
.x11_c01191{left:245.120000pt;}
.xf_c01191{left:255.360000pt;}
.x2c_c01191{left:256.640000pt;}
.x38_c01191{left:257.920000pt;}
.x30_c01191{left:267.520000pt;}
.x10_c01191{left:291.840000pt;}
.x12_c01191{left:293.760000pt;}
.x1b_c01191{left:302.080000pt;}
.x1c_c01191{left:341.760000pt;}
.x26_c01191{left:353.280000pt;}
.x34_c01191{left:383.360000pt;}
.x21_c01191{left:390.400000pt;}
.x2d_c01191{left:391.680000pt;}
.x39_c01191{left:392.960000pt;}
.x31_c01191{left:401.280000pt;}
.x35_c01191{left:420.480000pt;}
.x3a_c01191{left:425.600000pt;}
.x2e_c01191{left:429.440000pt;}
.x22_c01191{left:433.920000pt;}
.x2_c01191{left:467.199667pt;}
.x16_c01191{left:468.480000pt;}
.x28_c01191{left:469.760000pt;}
.x36_c01191{left:471.040000pt;}
.x6_c01191{left:495.360000pt;}
.x17_c01191{left:496.640000pt;}
.x1e_c01191{left:497.920000pt;}
.x29_c01191{left:499.200000pt;}
.x37_c01191{left:500.480000pt;}
.x7_c01191{left:514.560000pt;}
.x18_c01191{left:515.840000pt;}
.x3_c01191{left:544.640000pt;}
.x1d_c01191{left:545.920000pt;}
.x2a_c01191{left:547.200000pt;}
.x3c_c01191{left:548.480000pt;}
.x4_c01191{left:573.440000pt;}
.x1a_c01191{left:574.720000pt;}
.x1f_c01191{left:576.000000pt;}
.x3b_c01191{left:577.280000pt;}
.x9_c01191{left:602.880000pt;}
.x19_c01191{left:604.800000pt;}
.x1_c01191{left:606.720000pt;}
.x5_c01191{left:611.200000pt;}
.x8_c01191{left:612.480000pt;}
.x25_c01191{left:614.400000pt;}
.xa_c01191{left:630.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_703c199d46c92241b00954a9.woff2')format("woff");}.ff1_c01192{font-family:ff1_c01192;line-height:1.109863;font-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_c01192{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m34_c01192{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);}
.m36_c01192{transform:matrix(0.239525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239525,0.000000,0.000000,0.250000,0,0);}
.m18_c01192{transform:matrix(0.241975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241975,0.000000,0.000000,0.250000,0,0);}
.m21_c01192{transform:matrix(0.244950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244950,0.000000,0.000000,0.250000,0,0);}
.m37_c01192{transform:matrix(0.246925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246925,0.000000,0.000000,0.250000,0,0);}
.m1d_c01192{transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);}
.m19_c01192{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_c01192{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);}
.m28_c01192{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);}
.m29_c01192{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m2_c01192{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m23_c01192{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m15_c01192{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mb_c01192{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);}
.m2f_c01192{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m8_c01192{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m5_c01192{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m7_c01192{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m13_c01192{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.ma_c01192{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m4_c01192{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01192{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01192{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01192{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.me_c01192{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m30_c01192{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m6_c01192{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01192{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m16_c01192{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m20_c01192{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mf_c01192{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m25_c01192{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01192{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m14_c01192{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1_c01192{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m9_c01192{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01192{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);}
.m27_c01192{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m0_c01192{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m35_c01192{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m10_c01192{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01192{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);}
.m2d_c01192{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01192{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m32_c01192{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);}
.mc_c01192{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m22_c01192{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);}
.m2b_c01192{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m3_c01192{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);}
.m2e_c01192{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m38_c01192{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);}
.m31_c01192{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m17_c01192{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m11_c01192{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m24_c01192{transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);}
.m26_c01192{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.v3_c01192{vertical-align:-8.640000px;}
.v1_c01192{vertical-align:-5.760000px;}
.v0_c01192{vertical-align:0.000000px;}
.v2_c01192{vertical-align:2.880000px;}
.ls0_c01192{letter-spacing:0.000000px;}
.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;}
}
.ws4_c01192{word-spacing:-3.175649px;}
.ws2_c01192{word-spacing:-0.341040px;}
.ws5_c01192{word-spacing:0.000000px;}
.ws0_c01192{word-spacing:12.615600px;}
.ws3_c01192{word-spacing:45.055200px;}
.ws1_c01192{word-spacing:72.133200px;}
.fc0_c01192{color:transparent;}
.fse_c01192{font-size:34.560000px;}
.fs3_c01192{font-size:37.440000px;}
.fsa_c01192{font-size:46.080000px;}
.fs6_c01192{font-size:48.960000px;}
.fs4_c01192{font-size:51.840000px;}
.fs5_c01192{font-size:54.720000px;}
.fs7_c01192{font-size:57.600000px;}
.fs1_c01192{font-size:60.480000px;}
.fsb_c01192{font-size:63.360000px;}
.fsc_c01192{font-size:66.240000px;}
.fs8_c01192{font-size:69.120000px;}
.fs2_c01192{font-size:72.000000px;}
.fs0_c01192{font-size:74.880000px;}
.fs9_c01192{font-size:77.760000px;}
.fsd_c01192{font-size:92.160000px;}
.y0_c01192{bottom:0.000000px;}
.y93_c01192{bottom:39.600000px;}
.y95_c01192{bottom:40.320000px;}
.y92_c01192{bottom:41.040000px;}
.y90_c01192{bottom:41.760000px;}
.y94_c01192{bottom:42.480000px;}
.y91_c01192{bottom:44.640000px;}
.y8f_c01192{bottom:47.520000px;}
.y8c_c01192{bottom:82.080000px;}
.y8e_c01192{bottom:83.520000px;}
.y8b_c01192{bottom:84.960000px;}
.y8d_c01192{bottom:85.680000px;}
.y8a_c01192{bottom:89.280000px;}
.y87_c01192{bottom:125.280000px;}
.y89_c01192{bottom:126.000000px;}
.y86_c01192{bottom:126.720000px;}
.y84_c01192{bottom:127.440000px;}
.y88_c01192{bottom:128.880000px;}
.y85_c01192{bottom:129.600000px;}
.y83_c01192{bottom:131.760000px;}
.y7f_c01192{bottom:167.760000px;}
.y81_c01192{bottom:168.480000px;}
.y7d_c01192{bottom:169.200000px;}
.y7b_c01192{bottom:169.920000px;}
.y82_c01192{bottom:170.640000px;}
.y80_c01192{bottom:171.360000px;}
.y7e_c01192{bottom:172.080000px;}
.y7c_c01192{bottom:172.800000px;}
.y7a_c01192{bottom:174.240000px;}
.y74_c01192{bottom:204.480000px;}
.y79_c01192{bottom:205.200000px;}
.y75_c01192{bottom:211.680000px;}
.y72_c01192{bottom:212.400000px;}
.y77_c01192{bottom:213.120000px;}
.y76_c01192{bottom:213.840000px;}
.y78_c01192{bottom:214.560000px;}
.y73_c01192{bottom:215.280000px;}
.y71_c01192{bottom:216.720000px;}
.y70_c01192{bottom:254.880000px;}
.y6d_c01192{bottom:255.600000px;}
.y6f_c01192{bottom:257.040000px;}
.y6e_c01192{bottom:257.760000px;}
.y6c_c01192{bottom:259.200000px;}
.y67_c01192{bottom:297.360000px;}
.y6b_c01192{bottom:298.080000px;}
.y66_c01192{bottom:298.800000px;}
.y69_c01192{bottom:299.520000px;}
.y68_c01192{bottom:300.240000px;}
.y6a_c01192{bottom:300.960000px;}
.y65_c01192{bottom:301.680000px;}
.y62_c01192{bottom:340.560000px;}
.y61_c01192{bottom:341.280000px;}
.y63_c01192{bottom:343.440000px;}
.y64_c01192{bottom:344.160000px;}
.y60_c01192{bottom:344.880000px;}
.y5c_c01192{bottom:383.040000px;}
.y5b_c01192{bottom:383.760000px;}
.y5f_c01192{bottom:384.480000px;}
.y5e_c01192{bottom:385.200000px;}
.y5d_c01192{bottom:386.640000px;}
.y5a_c01192{bottom:387.360000px;}
.y56_c01192{bottom:426.960000px;}
.y59_c01192{bottom:427.680000px;}
.y57_c01192{bottom:429.120000px;}
.y58_c01192{bottom:429.840000px;}
.y55_c01192{bottom:430.560000px;}
.y52_c01192{bottom:469.440000px;}
.y54_c01192{bottom:471.600000px;}
.y53_c01192{bottom:472.320000px;}
.y51_c01192{bottom:473.040000px;}
.y4e_c01192{bottom:512.640000px;}
.y4f_c01192{bottom:514.080000px;}
.y4d_c01192{bottom:514.800000px;}
.y50_c01192{bottom:515.520000px;}
.y49_c01192{bottom:555.120000px;}
.y4c_c01192{bottom:557.280000px;}
.y4a_c01192{bottom:558.000000px;}
.y48_c01192{bottom:558.720000px;}
.y4b_c01192{bottom:559.440000px;}
.y43_c01192{bottom:596.880000px;}
.y42_c01192{bottom:599.760000px;}
.y46_c01192{bottom:600.480000px;}
.y44_c01192{bottom:601.920000px;}
.y47_c01192{bottom:602.640000px;}
.y45_c01192{bottom:603.360000px;}
.y3e_c01192{bottom:640.800000px;}
.y41_c01192{bottom:642.240000px;}
.y3d_c01192{bottom:642.960000px;}
.y3f_c01192{bottom:644.400000px;}
.y40_c01192{bottom:645.840000px;}
.y38_c01192{bottom:682.560000px;}
.y37_c01192{bottom:684.720000px;}
.y3b_c01192{bottom:686.160000px;}
.y39_c01192{bottom:686.880000px;}
.y3a_c01192{bottom:687.600000px;}
.y3c_c01192{bottom:688.320000px;}
.y32_c01192{bottom:725.760000px;}
.y31_c01192{bottom:727.920000px;}
.y36_c01192{bottom:728.640000px;}
.y34_c01192{bottom:729.360000px;}
.y33_c01192{bottom:730.080000px;}
.y35_c01192{bottom:731.520000px;}
.y2d_c01192{bottom:768.960000px;}
.y2c_c01192{bottom:771.120000px;}
.y30_c01192{bottom:772.560000px;}
.y2e_c01192{bottom:774.000000px;}
.y2f_c01192{bottom:774.720000px;}
.y26_c01192{bottom:811.440000px;}
.y27_c01192{bottom:812.160000px;}
.y25_c01192{bottom:814.320000px;}
.y29_c01192{bottom:815.040000px;}
.y2a_c01192{bottom:815.760000px;}
.y28_c01192{bottom:817.200000px;}
.y2b_c01192{bottom:818.640000px;}
.y1e_c01192{bottom:853.920000px;}
.y1f_c01192{bottom:855.360000px;}
.y1d_c01192{bottom:856.080000px;}
.y22_c01192{bottom:858.240000px;}
.y24_c01192{bottom:859.680000px;}
.y20_c01192{bottom:860.400000px;}
.y21_c01192{bottom:861.120000px;}
.y23_c01192{bottom:861.840000px;}
.y19_c01192{bottom:896.400000px;}
.y1a_c01192{bottom:897.840000px;}
.y18_c01192{bottom:898.560000px;}
.y1c_c01192{bottom:902.880000px;}
.y1b_c01192{bottom:903.600000px;}
.y14_c01192{bottom:940.320000px;}
.y13_c01192{bottom:941.760000px;}
.y16_c01192{bottom:946.800000px;}
.y15_c01192{bottom:947.520000px;}
.y17_c01192{bottom:948.240000px;}
.yc_c01192{bottom:983.520000px;}
.yb_c01192{bottom:984.240000px;}
.ye_c01192{bottom:985.680000px;}
.yd_c01192{bottom:987.120000px;}
.y10_c01192{bottom:988.560000px;}
.yf_c01192{bottom:990.000000px;}
.y11_c01192{bottom:990.720000px;}
.y12_c01192{bottom:991.440000px;}
.y3_c01192{bottom:1026.720000px;}
.y2_c01192{bottom:1027.440000px;}
.y6_c01192{bottom:1028.880000px;}
.y5_c01192{bottom:1029.600000px;}
.y4_c01192{bottom:1031.040000px;}
.y9_c01192{bottom:1031.760000px;}
.y7_c01192{bottom:1032.480000px;}
.y8_c01192{bottom:1033.920000px;}
.ya_c01192{bottom:1034.640000px;}
.y1_c01192{bottom:1108.080000px;}
.h11_c01192{height:31.100625px;}
.h5_c01192{height:33.692344px;}
.hc_c01192{height:41.467500px;}
.h8_c01192{height:44.059219px;}
.h6_c01192{height:46.650937px;}
.h7_c01192{height:49.242656px;}
.he_c01192{height:49.530938px;}
.h9_c01192{height:51.834375px;}
.h3_c01192{height:54.426094px;}
.hd_c01192{height:57.017812px;}
.hf_c01192{height:59.609531px;}
.ha_c01192{height:62.201250px;}
.h4_c01192{height:64.792969px;}
.h2_c01192{height:67.384687px;}
.hb_c01192{height:69.976406px;}
.h10_c01192{height:82.935000px;}
.h1_c01192{height:1151.250000px;}
.h0_c01192{height:1151.280000px;}
.w1_c01192{width:765.750000px;}
.w0_c01192{width:766.080000px;}
.x0_c01192{left:0.000000px;}
.x2_c01192{left:52.560000px;}
.x15_c01192{left:54.000000px;}
.x3_c01192{left:133.920000px;}
.x1b_c01192{left:135.360000px;}
.xf_c01192{left:231.120000px;}
.x4_c01192{left:241.920000px;}
.x1c_c01192{left:273.600000px;}
.x5_c01192{left:284.400000px;}
.xc_c01192{left:295.920000px;}
.xe_c01192{left:316.800000px;}
.x1d_c01192{left:403.920000px;}
.x14_c01192{left:414.720000px;}
.x19_c01192{left:425.520000px;}
.x6_c01192{left:436.320000px;}
.x1a_c01192{left:457.200000px;}
.x18_c01192{left:467.280000px;}
.x7_c01192{left:524.160000px;}
.x12_c01192{left:534.240000px;}
.x10_c01192{left:555.120000px;}
.x8_c01192{left:556.560000px;}
.x13_c01192{left:576.720000px;}
.x9_c01192{left:611.280000px;}
.xa_c01192{left:643.680000px;}
.x16_c01192{left:645.120000px;}
.x1_c01192{left:668.160000px;}
.xb_c01192{left:676.800000px;}
.x17_c01192{left:678.240000px;}
.x11_c01192{left:686.880000px;}
.xd_c01192{left:707.760000px;}
@media print{
.v3_c01192{vertical-align:-7.680000pt;}
.v1_c01192{vertical-align:-5.120000pt;}
.v0_c01192{vertical-align:0.000000pt;}
.v2_c01192{vertical-align:2.560000pt;}
.ls0_c01192{letter-spacing:0.000000pt;}
.ws4_c01192{word-spacing:-2.822799pt;}
.ws2_c01192{word-spacing:-0.303147pt;}
.ws5_c01192{word-spacing:0.000000pt;}
.ws0_c01192{word-spacing:11.213867pt;}
.ws3_c01192{word-spacing:40.049067pt;}
.ws1_c01192{word-spacing:64.118400pt;}
.fse_c01192{font-size:30.720000pt;}
.fs3_c01192{font-size:33.280000pt;}
.fsa_c01192{font-size:40.960000pt;}
.fs6_c01192{font-size:43.520000pt;}
.fs4_c01192{font-size:46.080000pt;}
.fs5_c01192{font-size:48.640000pt;}
.fs7_c01192{font-size:51.200000pt;}
.fs1_c01192{font-size:53.760000pt;}
.fsb_c01192{font-size:56.320000pt;}
.fsc_c01192{font-size:58.880000pt;}
.fs8_c01192{font-size:61.440000pt;}
.fs2_c01192{font-size:64.000000pt;}
.fs0_c01192{font-size:66.560000pt;}
.fs9_c01192{font-size:69.120000pt;}
.fsd_c01192{font-size:81.920000pt;}
.y0_c01192{bottom:0.000000pt;}
.y93_c01192{bottom:35.200000pt;}
.y95_c01192{bottom:35.840000pt;}
.y92_c01192{bottom:36.480000pt;}
.y90_c01192{bottom:37.120000pt;}
.y94_c01192{bottom:37.760000pt;}
.y91_c01192{bottom:39.680000pt;}
.y8f_c01192{bottom:42.240000pt;}
.y8c_c01192{bottom:72.960000pt;}
.y8e_c01192{bottom:74.240000pt;}
.y8b_c01192{bottom:75.520000pt;}
.y8d_c01192{bottom:76.160000pt;}
.y8a_c01192{bottom:79.360000pt;}
.y87_c01192{bottom:111.360000pt;}
.y89_c01192{bottom:112.000000pt;}
.y86_c01192{bottom:112.640000pt;}
.y84_c01192{bottom:113.280000pt;}
.y88_c01192{bottom:114.560000pt;}
.y85_c01192{bottom:115.200000pt;}
.y83_c01192{bottom:117.120000pt;}
.y7f_c01192{bottom:149.120000pt;}
.y81_c01192{bottom:149.760000pt;}
.y7d_c01192{bottom:150.400000pt;}
.y7b_c01192{bottom:151.040000pt;}
.y82_c01192{bottom:151.680000pt;}
.y80_c01192{bottom:152.320000pt;}
.y7e_c01192{bottom:152.960000pt;}
.y7c_c01192{bottom:153.600000pt;}
.y7a_c01192{bottom:154.880000pt;}
.y74_c01192{bottom:181.760000pt;}
.y79_c01192{bottom:182.400000pt;}
.y75_c01192{bottom:188.160000pt;}
.y72_c01192{bottom:188.800000pt;}
.y77_c01192{bottom:189.440000pt;}
.y76_c01192{bottom:190.080000pt;}
.y78_c01192{bottom:190.720000pt;}
.y73_c01192{bottom:191.360000pt;}
.y71_c01192{bottom:192.640000pt;}
.y70_c01192{bottom:226.560000pt;}
.y6d_c01192{bottom:227.200000pt;}
.y6f_c01192{bottom:228.480000pt;}
.y6e_c01192{bottom:229.120000pt;}
.y6c_c01192{bottom:230.400000pt;}
.y67_c01192{bottom:264.320000pt;}
.y6b_c01192{bottom:264.960000pt;}
.y66_c01192{bottom:265.600000pt;}
.y69_c01192{bottom:266.240000pt;}
.y68_c01192{bottom:266.880000pt;}
.y6a_c01192{bottom:267.520000pt;}
.y65_c01192{bottom:268.160000pt;}
.y62_c01192{bottom:302.720000pt;}
.y61_c01192{bottom:303.360000pt;}
.y63_c01192{bottom:305.280000pt;}
.y64_c01192{bottom:305.920000pt;}
.y60_c01192{bottom:306.560000pt;}
.y5c_c01192{bottom:340.480000pt;}
.y5b_c01192{bottom:341.120000pt;}
.y5f_c01192{bottom:341.760000pt;}
.y5e_c01192{bottom:342.400000pt;}
.y5d_c01192{bottom:343.680000pt;}
.y5a_c01192{bottom:344.320000pt;}
.y56_c01192{bottom:379.520000pt;}
.y59_c01192{bottom:380.160000pt;}
.y57_c01192{bottom:381.440000pt;}
.y58_c01192{bottom:382.080000pt;}
.y55_c01192{bottom:382.720000pt;}
.y52_c01192{bottom:417.280000pt;}
.y54_c01192{bottom:419.200000pt;}
.y53_c01192{bottom:419.840000pt;}
.y51_c01192{bottom:420.480000pt;}
.y4e_c01192{bottom:455.680000pt;}
.y4f_c01192{bottom:456.960000pt;}
.y4d_c01192{bottom:457.600000pt;}
.y50_c01192{bottom:458.240000pt;}
.y49_c01192{bottom:493.440000pt;}
.y4c_c01192{bottom:495.360000pt;}
.y4a_c01192{bottom:496.000000pt;}
.y48_c01192{bottom:496.640000pt;}
.y4b_c01192{bottom:497.280000pt;}
.y43_c01192{bottom:530.560000pt;}
.y42_c01192{bottom:533.120000pt;}
.y46_c01192{bottom:533.760000pt;}
.y44_c01192{bottom:535.040000pt;}
.y47_c01192{bottom:535.680000pt;}
.y45_c01192{bottom:536.320000pt;}
.y3e_c01192{bottom:569.600000pt;}
.y41_c01192{bottom:570.880000pt;}
.y3d_c01192{bottom:571.520000pt;}
.y3f_c01192{bottom:572.800000pt;}
.y40_c01192{bottom:574.080000pt;}
.y38_c01192{bottom:606.720000pt;}
.y37_c01192{bottom:608.640000pt;}
.y3b_c01192{bottom:609.920000pt;}
.y39_c01192{bottom:610.560000pt;}
.y3a_c01192{bottom:611.200000pt;}
.y3c_c01192{bottom:611.840000pt;}
.y32_c01192{bottom:645.120000pt;}
.y31_c01192{bottom:647.040000pt;}
.y36_c01192{bottom:647.680000pt;}
.y34_c01192{bottom:648.320000pt;}
.y33_c01192{bottom:648.960000pt;}
.y35_c01192{bottom:650.240000pt;}
.y2d_c01192{bottom:683.520000pt;}
.y2c_c01192{bottom:685.440000pt;}
.y30_c01192{bottom:686.720000pt;}
.y2e_c01192{bottom:688.000000pt;}
.y2f_c01192{bottom:688.640000pt;}
.y26_c01192{bottom:721.280000pt;}
.y27_c01192{bottom:721.920000pt;}
.y25_c01192{bottom:723.840000pt;}
.y29_c01192{bottom:724.480000pt;}
.y2a_c01192{bottom:725.120000pt;}
.y28_c01192{bottom:726.400000pt;}
.y2b_c01192{bottom:727.680000pt;}
.y1e_c01192{bottom:759.040000pt;}
.y1f_c01192{bottom:760.320000pt;}
.y1d_c01192{bottom:760.960000pt;}
.y22_c01192{bottom:762.880000pt;}
.y24_c01192{bottom:764.160000pt;}
.y20_c01192{bottom:764.800000pt;}
.y21_c01192{bottom:765.440000pt;}
.y23_c01192{bottom:766.080000pt;}
.y19_c01192{bottom:796.800000pt;}
.y1a_c01192{bottom:798.080000pt;}
.y18_c01192{bottom:798.720000pt;}
.y1c_c01192{bottom:802.560000pt;}
.y1b_c01192{bottom:803.200000pt;}
.y14_c01192{bottom:835.840000pt;}
.y13_c01192{bottom:837.120000pt;}
.y16_c01192{bottom:841.600000pt;}
.y15_c01192{bottom:842.240000pt;}
.y17_c01192{bottom:842.880000pt;}
.yc_c01192{bottom:874.240000pt;}
.yb_c01192{bottom:874.880000pt;}
.ye_c01192{bottom:876.160000pt;}
.yd_c01192{bottom:877.440000pt;}
.y10_c01192{bottom:878.720000pt;}
.yf_c01192{bottom:880.000000pt;}
.y11_c01192{bottom:880.640000pt;}
.y12_c01192{bottom:881.280000pt;}
.y3_c01192{bottom:912.640000pt;}
.y2_c01192{bottom:913.280000pt;}
.y6_c01192{bottom:914.560000pt;}
.y5_c01192{bottom:915.200000pt;}
.y4_c01192{bottom:916.480000pt;}
.y9_c01192{bottom:917.120000pt;}
.y7_c01192{bottom:917.760000pt;}
.y8_c01192{bottom:919.040000pt;}
.ya_c01192{bottom:919.680000pt;}
.y1_c01192{bottom:984.960000pt;}
.h11_c01192{height:27.645000pt;}
.h5_c01192{height:29.948750pt;}
.hc_c01192{height:36.860000pt;}
.h8_c01192{height:39.163750pt;}
.h6_c01192{height:41.467500pt;}
.h7_c01192{height:43.771250pt;}
.he_c01192{height:44.027500pt;}
.h9_c01192{height:46.075000pt;}
.h3_c01192{height:48.378750pt;}
.hd_c01192{height:50.682500pt;}
.hf_c01192{height:52.986250pt;}
.ha_c01192{height:55.290000pt;}
.h4_c01192{height:57.593750pt;}
.h2_c01192{height:59.897500pt;}
.hb_c01192{height:62.201250pt;}
.h10_c01192{height:73.720000pt;}
.h1_c01192{height:1023.333333pt;}
.h0_c01192{height:1023.360000pt;}
.w1_c01192{width:680.666667pt;}
.w0_c01192{width:680.960000pt;}
.x0_c01192{left:0.000000pt;}
.x2_c01192{left:46.720000pt;}
.x15_c01192{left:48.000000pt;}
.x3_c01192{left:119.040000pt;}
.x1b_c01192{left:120.320000pt;}
.xf_c01192{left:205.440000pt;}
.x4_c01192{left:215.040000pt;}
.x1c_c01192{left:243.200000pt;}
.x5_c01192{left:252.800000pt;}
.xc_c01192{left:263.040000pt;}
.xe_c01192{left:281.600000pt;}
.x1d_c01192{left:359.040000pt;}
.x14_c01192{left:368.640000pt;}
.x19_c01192{left:378.240000pt;}
.x6_c01192{left:387.840000pt;}
.x1a_c01192{left:406.400000pt;}
.x18_c01192{left:415.360000pt;}
.x7_c01192{left:465.920000pt;}
.x12_c01192{left:474.880000pt;}
.x10_c01192{left:493.440000pt;}
.x8_c01192{left:494.720000pt;}
.x13_c01192{left:512.640000pt;}
.x9_c01192{left:543.360000pt;}
.xa_c01192{left:572.160000pt;}
.x16_c01192{left:573.440000pt;}
.x1_c01192{left:593.920000pt;}
.xb_c01192{left:601.600000pt;}
.x17_c01192{left:602.880000pt;}
.x11_c01192{left:610.560000pt;}
.xd_c01192{left:629.120000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_35fb7c51f107ad470850768f.woff2')format("woff");}.ff1_c01193{font-family:ff1_c01193;line-height:1.109863;font-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_c01193{transform:matrix(0.133000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133000,0.000000,0.000000,0.250000,0,0);}
.m33_c01193{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);}
.m11_c01193{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);}
.m28_c01193{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m14_c01193{transform:matrix(0.247975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247975,0.000000,0.000000,0.250000,0,0);}
.m3c_c01193{transform:matrix(0.249025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249025,0.000000,0.000000,0.250000,0,0);}
.m12_c01193{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m8_c01193{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_c01193{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_c01193{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);}
.m39_c01193{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m7_c01193{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mc_c01193{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01193{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);}
.m2b_c01193{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);}
.m22_c01193{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m17_c01193{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m35_c01193{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.me_c01193{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01193{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m15_c01193{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01193{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.md_c01193{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m10_c01193{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01193{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m29_c01193{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m34_c01193{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m0_c01193{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01193{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m38_c01193{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m5_c01193{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m20_c01193{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m37_c01193{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m6_c01193{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m23_c01193{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01193{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m27_c01193{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m3_c01193{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mb_c01193{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01193{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m19_c01193{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01193{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);}
.m43_c01193{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m36_c01193{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);}
.m31_c01193{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);}
.m2a_c01193{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01193{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);}
.m44_c01193{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.mf_c01193{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01193{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m4_c01193{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);}
.m2c_c01193{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01193{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);}
.m30_c01193{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);}
.m32_c01193{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m41_c01193{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01193{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m9_c01193{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);}
.m3f_c01193{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m18_c01193{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m42_c01193{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m45_c01193{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m2_c01193{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m24_c01193{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01193{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m26_c01193{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01193{transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);}
.m40_c01193{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m21_c01193{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m16_c01193{transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);}
.v1_c01193{vertical-align:-2.880000px;}
.v0_c01193{vertical-align:0.000000px;}
.v2_c01193{vertical-align:5.760000px;}
.ls0_c01193{letter-spacing:0.000000px;}
.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;}
}
.ws2_c01193{word-spacing:0.000000px;}
.ws1_c01193{word-spacing:11.856000px;}
.ws0_c01193{word-spacing:56.131200px;}
.fc0_c01193{color:transparent;}
.fsb_c01193{font-size:11.520000px;}
.fsf_c01193{font-size:34.560000px;}
.fs9_c01193{font-size:46.080000px;}
.fs5_c01193{font-size:48.960000px;}
.fs2_c01193{font-size:51.840000px;}
.fsd_c01193{font-size:54.720000px;}
.fsc_c01193{font-size:57.600000px;}
.fs7_c01193{font-size:60.480000px;}
.fs4_c01193{font-size:63.360000px;}
.fs0_c01193{font-size:66.240000px;}
.fs6_c01193{font-size:69.120000px;}
.fs3_c01193{font-size:72.000000px;}
.fs1_c01193{font-size:74.880000px;}
.fs8_c01193{font-size:77.760000px;}
.fsa_c01193{font-size:112.320000px;}
.fse_c01193{font-size:118.080000px;}
.y0_c01193{bottom:0.000000px;}
.y8f_c01193{bottom:28.800000px;}
.y8e_c01193{bottom:30.240000px;}
.y90_c01193{bottom:30.960000px;}
.y8d_c01193{bottom:31.680000px;}
.y89_c01193{bottom:34.560000px;}
.y88_c01193{bottom:35.280000px;}
.y87_c01193{bottom:36.000000px;}
.y86_c01193{bottom:36.720000px;}
.y85_c01193{bottom:37.440000px;}
.y8b_c01193{bottom:73.440000px;}
.y8c_c01193{bottom:74.160000px;}
.y84_c01193{bottom:74.880000px;}
.y83_c01193{bottom:76.320000px;}
.y82_c01193{bottom:79.200000px;}
.y81_c01193{bottom:115.200000px;}
.y7f_c01193{bottom:116.640000px;}
.y80_c01193{bottom:117.360000px;}
.y7c_c01193{bottom:118.800000px;}
.y7e_c01193{bottom:119.520000px;}
.y7d_c01193{bottom:120.960000px;}
.y79_c01193{bottom:147.600000px;}
.y8a_c01193{bottom:148.320000px;}
.y7b_c01193{bottom:149.040000px;}
.y7a_c01193{bottom:149.760000px;}
.y78_c01193{bottom:150.480000px;}
.y77_c01193{bottom:151.920000px;}
.y76_c01193{bottom:154.080000px;}
.y6f_c01193{bottom:193.680000px;}
.y6e_c01193{bottom:195.120000px;}
.y6d_c01193{bottom:223.200000px;}
.y6a_c01193{bottom:224.640000px;}
.y6b_c01193{bottom:225.360000px;}
.y75_c01193{bottom:226.080000px;}
.y74_c01193{bottom:226.800000px;}
.y6c_c01193{bottom:227.520000px;}
.y69_c01193{bottom:228.240000px;}
.y68_c01193{bottom:266.400000px;}
.y73_c01193{bottom:267.120000px;}
.y67_c01193{bottom:267.840000px;}
.y72_c01193{bottom:268.560000px;}
.y70_c01193{bottom:269.280000px;}
.y71_c01193{bottom:270.000000px;}
.y66_c01193{bottom:270.720000px;}
.y65_c01193{bottom:310.320000px;}
.y64_c01193{bottom:311.760000px;}
.y62_c01193{bottom:340.560000px;}
.y61_c01193{bottom:342.000000px;}
.y63_c01193{bottom:342.720000px;}
.y60_c01193{bottom:344.880000px;}
.y5c_c01193{bottom:383.760000px;}
.y5b_c01193{bottom:384.480000px;}
.y5e_c01193{bottom:385.200000px;}
.y5d_c01193{bottom:385.920000px;}
.y5f_c01193{bottom:386.640000px;}
.y5a_c01193{bottom:387.360000px;}
.y55_c01193{bottom:426.960000px;}
.y56_c01193{bottom:427.680000px;}
.y54_c01193{bottom:459.360000px;}
.y57_c01193{bottom:460.800000px;}
.y58_c01193{bottom:461.520000px;}
.y59_c01193{bottom:462.240000px;}
.y53_c01193{bottom:462.960000px;}
.y4f_c01193{bottom:501.840000px;}
.y52_c01193{bottom:503.280000px;}
.y50_c01193{bottom:504.000000px;}
.y51_c01193{bottom:504.720000px;}
.y4e_c01193{bottom:505.440000px;}
.y4a_c01193{bottom:534.960000px;}
.y49_c01193{bottom:545.760000px;}
.y4d_c01193{bottom:547.200000px;}
.y48_c01193{bottom:547.920000px;}
.y4b_c01193{bottom:549.360000px;}
.y4c_c01193{bottom:550.080000px;}
.y47_c01193{bottom:588.240000px;}
.y46_c01193{bottom:592.560000px;}
.y42_c01193{bottom:619.920000px;}
.y43_c01193{bottom:620.640000px;}
.y44_c01193{bottom:623.520000px;}
.y41_c01193{bottom:624.240000px;}
.y45_c01193{bottom:624.960000px;}
.y1f_c01193{bottom:663.120000px;}
.y1e_c01193{bottom:665.280000px;}
.y3d_c01193{bottom:666.000000px;}
.y3e_c01193{bottom:666.720000px;}
.y40_c01193{bottom:667.440000px;}
.y3f_c01193{bottom:668.880000px;}
.y1d_c01193{bottom:706.320000px;}
.y1c_c01193{bottom:709.200000px;}
.y3a_c01193{bottom:709.920000px;}
.y3c_c01193{bottom:710.640000px;}
.y3b_c01193{bottom:712.080000px;}
.y19_c01193{bottom:748.800000px;}
.y1a_c01193{bottom:750.960000px;}
.y1b_c01193{bottom:751.680000px;}
.y16_c01193{bottom:781.200000px;}
.y15_c01193{bottom:782.640000px;}
.y17_c01193{bottom:783.360000px;}
.y36_c01193{bottom:784.800000px;}
.y37_c01193{bottom:785.520000px;}
.y18_c01193{bottom:786.240000px;}
.y38_c01193{bottom:786.960000px;}
.y39_c01193{bottom:787.680000px;}
.y14_c01193{bottom:823.680000px;}
.y13_c01193{bottom:827.280000px;}
.y32_c01193{bottom:828.000000px;}
.y34_c01193{bottom:828.720000px;}
.y35_c01193{bottom:829.440000px;}
.y33_c01193{bottom:830.160000px;}
.y12_c01193{bottom:866.160000px;}
.y11_c01193{bottom:866.880000px;}
.y2e_c01193{bottom:871.200000px;}
.y2f_c01193{bottom:871.920000px;}
.y30_c01193{bottom:873.360000px;}
.y31_c01193{bottom:874.080000px;}
.ye_c01193{bottom:908.640000px;}
.yd_c01193{bottom:911.520000px;}
.yf_c01193{bottom:912.240000px;}
.y2c_c01193{bottom:913.680000px;}
.y10_c01193{bottom:914.400000px;}
.y2b_c01193{bottom:915.840000px;}
.y2d_c01193{bottom:916.560000px;}
.yb_c01193{bottom:951.840000px;}
.ya_c01193{bottom:954.000000px;}
.yc_c01193{bottom:954.720000px;}
.y29_c01193{bottom:957.600000px;}
.y27_c01193{bottom:958.320000px;}
.y28_c01193{bottom:959.760000px;}
.y2a_c01193{bottom:960.480000px;}
.y6_c01193{bottom:995.040000px;}
.y5_c01193{bottom:996.480000px;}
.y7_c01193{bottom:997.200000px;}
.y9_c01193{bottom:998.640000px;}
.y8_c01193{bottom:1000.800000px;}
.y24_c01193{bottom:1001.520000px;}
.y25_c01193{bottom:1002.960000px;}
.y26_c01193{bottom:1003.680000px;}
.y1_c01193{bottom:1038.240000px;}
.y4_c01193{bottom:1041.120000px;}
.y2_c01193{bottom:1043.280000px;}
.y3_c01193{bottom:1044.000000px;}
.y22_c01193{bottom:1044.720000px;}
.y21_c01193{bottom:1046.160000px;}
.y23_c01193{bottom:1046.880000px;}
.y20_c01193{bottom:1114.560000px;}
.hd_c01193{height:10.366875px;}
.h12_c01193{height:31.100625px;}
.hb_c01193{height:41.467500px;}
.h7_c01193{height:44.059219px;}
.h4_c01193{height:46.650937px;}
.hf_c01193{height:49.242656px;}
.he_c01193{height:51.834375px;}
.h9_c01193{height:54.426094px;}
.h6_c01193{height:57.017812px;}
.h11_c01193{height:57.594375px;}
.h2_c01193{height:59.609531px;}
.h8_c01193{height:62.201250px;}
.h5_c01193{height:64.792969px;}
.h3_c01193{height:67.384687px;}
.ha_c01193{height:69.976406px;}
.hc_c01193{height:101.077031px;}
.h10_c01193{height:106.260469px;}
.h1_c01193{height:1164.750000px;}
.h0_c01193{height:1164.960000px;}
.w1_c01193{width:770.250000px;}
.w0_c01193{width:770.400000px;}
.x0_c01193{left:0.000000px;}
.x1_c01193{left:59.040000px;}
.x29_c01193{left:60.480000px;}
.xd_c01193{left:68.400000px;}
.x2_c01193{left:139.680000px;}
.xc_c01193{left:141.120000px;}
.x2a_c01193{left:142.560000px;}
.xe_c01193{left:151.920000px;}
.x20_c01193{left:182.880000px;}
.x27_c01193{left:205.920000px;}
.x2b_c01193{left:226.080000px;}
.x30_c01193{left:227.520000px;}
.x7_c01193{left:237.600000px;}
.x28_c01193{left:249.120000px;}
.xf_c01193{left:268.560000px;}
.x2e_c01193{left:270.000000px;}
.x3_c01193{left:279.360000px;}
.x21_c01193{left:280.800000px;}
.x23_c01193{left:290.880000px;}
.x1e_c01193{left:311.760000px;}
.x12_c01193{left:321.840000px;}
.x4_c01193{left:332.640000px;}
.x31_c01193{left:335.520000px;}
.x2c_c01193{left:345.600000px;}
.x1f_c01193{left:354.960000px;}
.xa_c01193{left:366.480000px;}
.x5_c01193{left:377.280000px;}
.x25_c01193{left:397.440000px;}
.x8_c01193{left:398.880000px;}
.xb_c01193{left:409.680000px;}
.x6_c01193{left:419.760000px;}
.x22_c01193{left:421.200000px;}
.x24_c01193{left:432.720000px;}
.x9_c01193{left:442.080000px;}
.x10_c01193{left:452.880000px;}
.x11_c01193{left:498.240000px;}
.x2f_c01193{left:509.040000px;}
.x1b_c01193{left:529.200000px;}
.x14_c01193{left:530.640000px;}
.x1c_c01193{left:540.720000px;}
.x26_c01193{left:542.160000px;}
.x15_c01193{left:563.040000px;}
.x1d_c01193{left:616.320000px;}
.x16_c01193{left:617.760000px;}
.x32_c01193{left:619.200000px;}
.x17_c01193{left:650.880000px;}
.x33_c01193{left:652.320000px;}
.x13_c01193{left:672.480000px;}
.x18_c01193{left:684.720000px;}
.x1a_c01193{left:694.800000px;}
.x2d_c01193{left:704.880000px;}
.x19_c01193{left:714.960000px;}
@media print{
.v1_c01193{vertical-align:-2.560000pt;}
.v0_c01193{vertical-align:0.000000pt;}
.v2_c01193{vertical-align:5.120000pt;}
.ls0_c01193{letter-spacing:0.000000pt;}
.ws2_c01193{word-spacing:0.000000pt;}
.ws1_c01193{word-spacing:10.538667pt;}
.ws0_c01193{word-spacing:49.894400pt;}
.fsb_c01193{font-size:10.240000pt;}
.fsf_c01193{font-size:30.720000pt;}
.fs9_c01193{font-size:40.960000pt;}
.fs5_c01193{font-size:43.520000pt;}
.fs2_c01193{font-size:46.080000pt;}
.fsd_c01193{font-size:48.640000pt;}
.fsc_c01193{font-size:51.200000pt;}
.fs7_c01193{font-size:53.760000pt;}
.fs4_c01193{font-size:56.320000pt;}
.fs0_c01193{font-size:58.880000pt;}
.fs6_c01193{font-size:61.440000pt;}
.fs3_c01193{font-size:64.000000pt;}
.fs1_c01193{font-size:66.560000pt;}
.fs8_c01193{font-size:69.120000pt;}
.fsa_c01193{font-size:99.840000pt;}
.fse_c01193{font-size:104.960000pt;}
.y0_c01193{bottom:0.000000pt;}
.y8f_c01193{bottom:25.600000pt;}
.y8e_c01193{bottom:26.880000pt;}
.y90_c01193{bottom:27.520000pt;}
.y8d_c01193{bottom:28.160000pt;}
.y89_c01193{bottom:30.720000pt;}
.y88_c01193{bottom:31.360000pt;}
.y87_c01193{bottom:32.000000pt;}
.y86_c01193{bottom:32.640000pt;}
.y85_c01193{bottom:33.280000pt;}
.y8b_c01193{bottom:65.280000pt;}
.y8c_c01193{bottom:65.920000pt;}
.y84_c01193{bottom:66.560000pt;}
.y83_c01193{bottom:67.840000pt;}
.y82_c01193{bottom:70.400000pt;}
.y81_c01193{bottom:102.400000pt;}
.y7f_c01193{bottom:103.680000pt;}
.y80_c01193{bottom:104.320000pt;}
.y7c_c01193{bottom:105.600000pt;}
.y7e_c01193{bottom:106.240000pt;}
.y7d_c01193{bottom:107.520000pt;}
.y79_c01193{bottom:131.200000pt;}
.y8a_c01193{bottom:131.840000pt;}
.y7b_c01193{bottom:132.480000pt;}
.y7a_c01193{bottom:133.120000pt;}
.y78_c01193{bottom:133.760000pt;}
.y77_c01193{bottom:135.040000pt;}
.y76_c01193{bottom:136.960000pt;}
.y6f_c01193{bottom:172.160000pt;}
.y6e_c01193{bottom:173.440000pt;}
.y6d_c01193{bottom:198.400000pt;}
.y6a_c01193{bottom:199.680000pt;}
.y6b_c01193{bottom:200.320000pt;}
.y75_c01193{bottom:200.960000pt;}
.y74_c01193{bottom:201.600000pt;}
.y6c_c01193{bottom:202.240000pt;}
.y69_c01193{bottom:202.880000pt;}
.y68_c01193{bottom:236.800000pt;}
.y73_c01193{bottom:237.440000pt;}
.y67_c01193{bottom:238.080000pt;}
.y72_c01193{bottom:238.720000pt;}
.y70_c01193{bottom:239.360000pt;}
.y71_c01193{bottom:240.000000pt;}
.y66_c01193{bottom:240.640000pt;}
.y65_c01193{bottom:275.840000pt;}
.y64_c01193{bottom:277.120000pt;}
.y62_c01193{bottom:302.720000pt;}
.y61_c01193{bottom:304.000000pt;}
.y63_c01193{bottom:304.640000pt;}
.y60_c01193{bottom:306.560000pt;}
.y5c_c01193{bottom:341.120000pt;}
.y5b_c01193{bottom:341.760000pt;}
.y5e_c01193{bottom:342.400000pt;}
.y5d_c01193{bottom:343.040000pt;}
.y5f_c01193{bottom:343.680000pt;}
.y5a_c01193{bottom:344.320000pt;}
.y55_c01193{bottom:379.520000pt;}
.y56_c01193{bottom:380.160000pt;}
.y54_c01193{bottom:408.320000pt;}
.y57_c01193{bottom:409.600000pt;}
.y58_c01193{bottom:410.240000pt;}
.y59_c01193{bottom:410.880000pt;}
.y53_c01193{bottom:411.520000pt;}
.y4f_c01193{bottom:446.080000pt;}
.y52_c01193{bottom:447.360000pt;}
.y50_c01193{bottom:448.000000pt;}
.y51_c01193{bottom:448.640000pt;}
.y4e_c01193{bottom:449.280000pt;}
.y4a_c01193{bottom:475.520000pt;}
.y49_c01193{bottom:485.120000pt;}
.y4d_c01193{bottom:486.400000pt;}
.y48_c01193{bottom:487.040000pt;}
.y4b_c01193{bottom:488.320000pt;}
.y4c_c01193{bottom:488.960000pt;}
.y47_c01193{bottom:522.880000pt;}
.y46_c01193{bottom:526.720000pt;}
.y42_c01193{bottom:551.040000pt;}
.y43_c01193{bottom:551.680000pt;}
.y44_c01193{bottom:554.240000pt;}
.y41_c01193{bottom:554.880000pt;}
.y45_c01193{bottom:555.520000pt;}
.y1f_c01193{bottom:589.440000pt;}
.y1e_c01193{bottom:591.360000pt;}
.y3d_c01193{bottom:592.000000pt;}
.y3e_c01193{bottom:592.640000pt;}
.y40_c01193{bottom:593.280000pt;}
.y3f_c01193{bottom:594.560000pt;}
.y1d_c01193{bottom:627.840000pt;}
.y1c_c01193{bottom:630.400000pt;}
.y3a_c01193{bottom:631.040000pt;}
.y3c_c01193{bottom:631.680000pt;}
.y3b_c01193{bottom:632.960000pt;}
.y19_c01193{bottom:665.600000pt;}
.y1a_c01193{bottom:667.520000pt;}
.y1b_c01193{bottom:668.160000pt;}
.y16_c01193{bottom:694.400000pt;}
.y15_c01193{bottom:695.680000pt;}
.y17_c01193{bottom:696.320000pt;}
.y36_c01193{bottom:697.600000pt;}
.y37_c01193{bottom:698.240000pt;}
.y18_c01193{bottom:698.880000pt;}
.y38_c01193{bottom:699.520000pt;}
.y39_c01193{bottom:700.160000pt;}
.y14_c01193{bottom:732.160000pt;}
.y13_c01193{bottom:735.360000pt;}
.y32_c01193{bottom:736.000000pt;}
.y34_c01193{bottom:736.640000pt;}
.y35_c01193{bottom:737.280000pt;}
.y33_c01193{bottom:737.920000pt;}
.y12_c01193{bottom:769.920000pt;}
.y11_c01193{bottom:770.560000pt;}
.y2e_c01193{bottom:774.400000pt;}
.y2f_c01193{bottom:775.040000pt;}
.y30_c01193{bottom:776.320000pt;}
.y31_c01193{bottom:776.960000pt;}
.ye_c01193{bottom:807.680000pt;}
.yd_c01193{bottom:810.240000pt;}
.yf_c01193{bottom:810.880000pt;}
.y2c_c01193{bottom:812.160000pt;}
.y10_c01193{bottom:812.800000pt;}
.y2b_c01193{bottom:814.080000pt;}
.y2d_c01193{bottom:814.720000pt;}
.yb_c01193{bottom:846.080000pt;}
.ya_c01193{bottom:848.000000pt;}
.yc_c01193{bottom:848.640000pt;}
.y29_c01193{bottom:851.200000pt;}
.y27_c01193{bottom:851.840000pt;}
.y28_c01193{bottom:853.120000pt;}
.y2a_c01193{bottom:853.760000pt;}
.y6_c01193{bottom:884.480000pt;}
.y5_c01193{bottom:885.760000pt;}
.y7_c01193{bottom:886.400000pt;}
.y9_c01193{bottom:887.680000pt;}
.y8_c01193{bottom:889.600000pt;}
.y24_c01193{bottom:890.240000pt;}
.y25_c01193{bottom:891.520000pt;}
.y26_c01193{bottom:892.160000pt;}
.y1_c01193{bottom:922.880000pt;}
.y4_c01193{bottom:925.440000pt;}
.y2_c01193{bottom:927.360000pt;}
.y3_c01193{bottom:928.000000pt;}
.y22_c01193{bottom:928.640000pt;}
.y21_c01193{bottom:929.920000pt;}
.y23_c01193{bottom:930.560000pt;}
.y20_c01193{bottom:990.720000pt;}
.hd_c01193{height:9.215000pt;}
.h12_c01193{height:27.645000pt;}
.hb_c01193{height:36.860000pt;}
.h7_c01193{height:39.163750pt;}
.h4_c01193{height:41.467500pt;}
.hf_c01193{height:43.771250pt;}
.he_c01193{height:46.075000pt;}
.h9_c01193{height:48.378750pt;}
.h6_c01193{height:50.682500pt;}
.h11_c01193{height:51.195000pt;}
.h2_c01193{height:52.986250pt;}
.h8_c01193{height:55.290000pt;}
.h5_c01193{height:57.593750pt;}
.h3_c01193{height:59.897500pt;}
.ha_c01193{height:62.201250pt;}
.hc_c01193{height:89.846250pt;}
.h10_c01193{height:94.453750pt;}
.h1_c01193{height:1035.333333pt;}
.h0_c01193{height:1035.520000pt;}
.w1_c01193{width:684.666667pt;}
.w0_c01193{width:684.800000pt;}
.x0_c01193{left:0.000000pt;}
.x1_c01193{left:52.480000pt;}
.x29_c01193{left:53.760000pt;}
.xd_c01193{left:60.800000pt;}
.x2_c01193{left:124.160000pt;}
.xc_c01193{left:125.440000pt;}
.x2a_c01193{left:126.720000pt;}
.xe_c01193{left:135.040000pt;}
.x20_c01193{left:162.560000pt;}
.x27_c01193{left:183.040000pt;}
.x2b_c01193{left:200.960000pt;}
.x30_c01193{left:202.240000pt;}
.x7_c01193{left:211.200000pt;}
.x28_c01193{left:221.440000pt;}
.xf_c01193{left:238.720000pt;}
.x2e_c01193{left:240.000000pt;}
.x3_c01193{left:248.320000pt;}
.x21_c01193{left:249.600000pt;}
.x23_c01193{left:258.560000pt;}
.x1e_c01193{left:277.120000pt;}
.x12_c01193{left:286.080000pt;}
.x4_c01193{left:295.680000pt;}
.x31_c01193{left:298.240000pt;}
.x2c_c01193{left:307.200000pt;}
.x1f_c01193{left:315.520000pt;}
.xa_c01193{left:325.760000pt;}
.x5_c01193{left:335.360000pt;}
.x25_c01193{left:353.280000pt;}
.x8_c01193{left:354.560000pt;}
.xb_c01193{left:364.160000pt;}
.x6_c01193{left:373.120000pt;}
.x22_c01193{left:374.400000pt;}
.x24_c01193{left:384.640000pt;}
.x9_c01193{left:392.960000pt;}
.x10_c01193{left:402.560000pt;}
.x11_c01193{left:442.880000pt;}
.x2f_c01193{left:452.480000pt;}
.x1b_c01193{left:470.400000pt;}
.x14_c01193{left:471.680000pt;}
.x1c_c01193{left:480.640000pt;}
.x26_c01193{left:481.920000pt;}
.x15_c01193{left:500.480000pt;}
.x1d_c01193{left:547.840000pt;}
.x16_c01193{left:549.120000pt;}
.x32_c01193{left:550.400000pt;}
.x17_c01193{left:578.560000pt;}
.x33_c01193{left:579.840000pt;}
.x13_c01193{left:597.760000pt;}
.x18_c01193{left:608.640000pt;}
.x1a_c01193{left:617.600000pt;}
.x2d_c01193{left:626.560000pt;}
.x19_c01193{left:635.520000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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;}
@font-face{font-family:ff1_c01194;src:url('chunks/assets/font_eb9f107f770700934c7543f7.woff2')format("woff");}.ff1_c01194{font-family:ff1_c01194;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m36_c01194{transform:matrix(0.215125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215125,0.000000,0.000000,0.250000,0,0);}
.m39_c01194{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m14_c01194{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m3c_c01194{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);}
.m3e_c01194{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m18_c01194{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_c01194{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m16_c01194{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);}
.m29_c01194{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m8_c01194{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_c01194{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m6_c01194{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m35_c01194{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m30_c01194{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m5_c01194{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01194{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01194{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01194{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01194{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m40_c01194{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m7_c01194{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m13_c01194{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m33_c01194{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m10_c01194{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);}
.m2d_c01194{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01194{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01194{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m15_c01194{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);}
.m38_c01194{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1_c01194{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m22_c01194{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m0_c01194{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01194{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m17_c01194{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m23_c01194{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m9_c01194{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m11_c01194{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.md_c01194{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);}
.m3d_c01194{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m31_c01194{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);}
.m1e_c01194{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01194{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.ma_c01194{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m2_c01194{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);}
.m21_c01194{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);}
.m24_c01194{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);}
.m12_c01194{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m3_c01194{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01194{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m27_c01194{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01194{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.mb_c01194{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01194{transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);}
.m28_c01194{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m4_c01194{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.mc_c01194{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m20_c01194{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01194{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m26_c01194{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01194{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m32_c01194{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);}
.m37_c01194{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m19_c01194{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01194{transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);}
.m34_c01194{transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);}
.v2_c01194{vertical-align:-5.760000px;}
.v0_c01194{vertical-align:0.000000px;}
.v3_c01194{vertical-align:2.880000px;}
.v1_c01194{vertical-align:5.760000px;}
.ls0_c01194{letter-spacing:0.000000px;}
.sc__c01194{text-shadow:none;}
.sc0_c01194{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01194{-webkit-text-stroke:0px transparent;}
.sc0_c01194{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c01194{word-spacing:-8.908080px;}
.ws5_c01194{word-spacing:-8.100240px;}
.ws6_c01194{word-spacing:0.000000px;}
.ws2_c01194{word-spacing:0.529680px;}
.ws3_c01194{word-spacing:8.131200px;}
.ws0_c01194{word-spacing:14.038687px;}
.ws1_c01194{word-spacing:185.486400px;}
.fc0_c01194{color:transparent;}
.fse_c01194{font-size:14.400000px;}
.fsd_c01194{font-size:23.040000px;}
.fs8_c01194{font-size:34.560000px;}
.fs9_c01194{font-size:43.200000px;}
.fs6_c01194{font-size:46.080000px;}
.fs5_c01194{font-size:48.960000px;}
.fs2_c01194{font-size:51.840000px;}
.fs4_c01194{font-size:54.720000px;}
.fs3_c01194{font-size:57.600000px;}
.fs1_c01194{font-size:60.480000px;}
.fs7_c01194{font-size:63.360000px;}
.fsa_c01194{font-size:66.240000px;}
.fsc_c01194{font-size:69.120000px;}
.fsb_c01194{font-size:72.000000px;}
.fs0_c01194{font-size:74.880000px;}
.y0_c01194{bottom:0.000000px;}
.y8a_c01194{bottom:44.640000px;}
.y89_c01194{bottom:47.520000px;}
.y87_c01194{bottom:48.240000px;}
.y88_c01194{bottom:50.400000px;}
.y86_c01194{bottom:51.120000px;}
.y85_c01194{bottom:55.440000px;}
.y84_c01194{bottom:89.280000px;}
.y83_c01194{bottom:90.720000px;}
.y81_c01194{bottom:91.440000px;}
.y80_c01194{bottom:92.880000px;}
.y82_c01194{bottom:93.600000px;}
.y7f_c01194{bottom:96.480000px;}
.y7e_c01194{bottom:131.760000px;}
.y7d_c01194{bottom:132.480000px;}
.y7c_c01194{bottom:133.920000px;}
.y7b_c01194{bottom:136.080000px;}
.y7a_c01194{bottom:138.960000px;}
.y79_c01194{bottom:174.240000px;}
.y78_c01194{bottom:174.960000px;}
.y77_c01194{bottom:176.400000px;}
.y76_c01194{bottom:177.120000px;}
.y75_c01194{bottom:178.560000px;}
.y74_c01194{bottom:181.440000px;}
.y72_c01194{bottom:217.440000px;}
.y71_c01194{bottom:218.880000px;}
.y6f_c01194{bottom:219.600000px;}
.y73_c01194{bottom:220.320000px;}
.y6e_c01194{bottom:221.040000px;}
.y70_c01194{bottom:222.480000px;}
.y6d_c01194{bottom:223.200000px;}
.y6c_c01194{bottom:260.640000px;}
.y6a_c01194{bottom:262.080000px;}
.y69_c01194{bottom:262.800000px;}
.y6b_c01194{bottom:263.520000px;}
.y68_c01194{bottom:264.240000px;}
.y67_c01194{bottom:266.400000px;}
.y66_c01194{bottom:303.840000px;}
.y65_c01194{bottom:304.560000px;}
.y63_c01194{bottom:305.280000px;}
.y64_c01194{bottom:306.000000px;}
.y61_c01194{bottom:306.720000px;}
.y62_c01194{bottom:307.440000px;}
.y60_c01194{bottom:308.160000px;}
.y5f_c01194{bottom:347.040000px;}
.y5e_c01194{bottom:347.760000px;}
.y5d_c01194{bottom:349.920000px;}
.y5c_c01194{bottom:350.640000px;}
.y59_c01194{bottom:390.960000px;}
.y5b_c01194{bottom:391.680000px;}
.y58_c01194{bottom:392.400000px;}
.y57_c01194{bottom:393.120000px;}
.y5a_c01194{bottom:393.840000px;}
.y55_c01194{bottom:434.160000px;}
.y54_c01194{bottom:434.880000px;}
.y56_c01194{bottom:436.320000px;}
.y53_c01194{bottom:437.040000px;}
.y51_c01194{bottom:475.200000px;}
.y50_c01194{bottom:477.360000px;}
.y4f_c01194{bottom:478.080000px;}
.y52_c01194{bottom:478.800000px;}
.y4e_c01194{bottom:479.520000px;}
.y4c_c01194{bottom:519.840000px;}
.y4b_c01194{bottom:522.000000px;}
.y4d_c01194{bottom:522.720000px;}
.y48_c01194{bottom:562.320000px;}
.y47_c01194{bottom:563.040000px;}
.y44_c01194{bottom:563.760000px;}
.y45_c01194{bottom:564.480000px;}
.y49_c01194{bottom:565.200000px;}
.y4a_c01194{bottom:565.920000px;}
.y46_c01194{bottom:568.080000px;}
.y40_c01194{bottom:604.080000px;}
.y41_c01194{bottom:605.520000px;}
.y42_c01194{bottom:606.240000px;}
.y43_c01194{bottom:607.680000px;}
.y3c_c01194{bottom:636.480000px;}
.y3b_c01194{bottom:637.920000px;}
.y3a_c01194{bottom:638.640000px;}
.y3f_c01194{bottom:639.360000px;}
.y3d_c01194{bottom:640.080000px;}
.y3e_c01194{bottom:640.800000px;}
.y36_c01194{bottom:678.960000px;}
.y35_c01194{bottom:680.400000px;}
.y37_c01194{bottom:681.840000px;}
.y38_c01194{bottom:682.560000px;}
.y39_c01194{bottom:683.280000px;}
.y2f_c01194{bottom:722.160000px;}
.y2e_c01194{bottom:722.880000px;}
.y31_c01194{bottom:723.600000px;}
.y30_c01194{bottom:725.760000px;}
.y32_c01194{bottom:726.480000px;}
.y34_c01194{bottom:727.200000px;}
.y33_c01194{bottom:727.920000px;}
.y29_c01194{bottom:765.360000px;}
.y2c_c01194{bottom:766.800000px;}
.y2a_c01194{bottom:767.520000px;}
.y2b_c01194{bottom:768.240000px;}
.y2d_c01194{bottom:768.960000px;}
.y24_c01194{bottom:807.840000px;}
.y23_c01194{bottom:808.560000px;}
.y27_c01194{bottom:809.280000px;}
.y25_c01194{bottom:810.720000px;}
.y26_c01194{bottom:811.440000px;}
.y28_c01194{bottom:812.160000px;}
.y1e_c01194{bottom:850.320000px;}
.y1f_c01194{bottom:851.040000px;}
.y20_c01194{bottom:853.200000px;}
.y21_c01194{bottom:853.920000px;}
.y22_c01194{bottom:856.080000px;}
.y15_c01194{bottom:892.800000px;}
.y17_c01194{bottom:893.520000px;}
.y16_c01194{bottom:894.960000px;}
.y1a_c01194{bottom:895.680000px;}
.y18_c01194{bottom:896.400000px;}
.y19_c01194{bottom:897.120000px;}
.y1c_c01194{bottom:897.840000px;}
.y1d_c01194{bottom:899.280000px;}
.y1b_c01194{bottom:900.720000px;}
.yf_c01194{bottom:936.000000px;}
.y11_c01194{bottom:936.720000px;}
.y10_c01194{bottom:938.160000px;}
.y12_c01194{bottom:939.600000px;}
.y14_c01194{bottom:941.040000px;}
.y13_c01194{bottom:942.480000px;}
.y8_c01194{bottom:978.480000px;}
.y9_c01194{bottom:981.360000px;}
.ya_c01194{bottom:982.080000px;}
.yb_c01194{bottom:982.800000px;}
.yc_c01194{bottom:983.520000px;}
.ye_c01194{bottom:984.960000px;}
.yd_c01194{bottom:986.400000px;}
.y2_c01194{bottom:1021.680000px;}
.y3_c01194{bottom:1022.400000px;}
.y4_c01194{bottom:1025.280000px;}
.y5_c01194{bottom:1026.000000px;}
.y7_c01194{bottom:1028.160000px;}
.y6_c01194{bottom:1029.600000px;}
.y1_c01194{bottom:1103.760000px;}
.h11_c01194{height:12.958594px;}
.h10_c01194{height:20.733750px;}
.ha_c01194{height:31.100625px;}
.hc_c01194{height:38.875781px;}
.h8_c01194{height:41.467500px;}
.h7_c01194{height:44.059219px;}
.h4_c01194{height:46.650937px;}
.h12_c01194{height:48.666094px;}
.h6_c01194{height:49.242656px;}
.h13_c01194{height:49.530938px;}
.h5_c01194{height:51.834375px;}
.h3_c01194{height:54.426094px;}
.h9_c01194{height:57.017812px;}
.hd_c01194{height:59.609531px;}
.hb_c01194{height:60.186094px;}
.hf_c01194{height:62.201250px;}
.he_c01194{height:64.792969px;}
.h2_c01194{height:67.384687px;}
.h1_c01194{height:1149.750000px;}
.h0_c01194{height:1149.840000px;}
.w1_c01194{width:785.250000px;}
.w0_c01194{width:785.520000px;}
.x0_c01194{left:0.000000px;}
.x2_c01194{left:75.600000px;}
.x1b_c01194{left:77.040000px;}
.x22_c01194{left:78.480000px;}
.x19_c01194{left:128.160000px;}
.x1a_c01194{left:136.800000px;}
.x13_c01194{left:157.680000px;}
.x3_c01194{left:159.120000px;}
.x23_c01194{left:160.560000px;}
.x14_c01194{left:211.680000px;}
.x15_c01194{left:223.200000px;}
.x16_c01194{left:233.280000px;}
.x4_c01194{left:243.360000px;}
.x1e_c01194{left:244.800000px;}
.x17_c01194{left:275.040000px;}
.xa_c01194{left:296.640000px;}
.xe_c01194{left:306.720000px;}
.x5_c01194{left:308.160000px;}
.x24_c01194{left:309.600000px;}
.x18_c01194{left:317.520000px;}
.xb_c01194{left:350.640000px;}
.xd_c01194{left:360.720000px;}
.x10_c01194{left:362.880000px;}
.x11_c01194{left:406.080000px;}
.x12_c01194{left:479.520000px;}
.x1c_c01194{left:503.280000px;}
.x6_c01194{left:546.480000px;}
.x1f_c01194{left:547.920000px;}
.x7_c01194{left:634.320000px;}
.x8_c01194{left:666.720000px;}
.x20_c01194{left:668.160000px;}
.x1_c01194{left:682.560000px;}
.xf_c01194{left:699.840000px;}
.x21_c01194{left:701.280000px;}
.x9_c01194{left:709.920000px;}
.xc_c01194{left:730.080000px;}
.x1d_c01194{left:732.240000px;}
@media print{
.v2_c01194{vertical-align:-5.120000pt;}
.v0_c01194{vertical-align:0.000000pt;}
.v3_c01194{vertical-align:2.560000pt;}
.v1_c01194{vertical-align:5.120000pt;}
.ls0_c01194{letter-spacing:0.000000pt;}
.ws4_c01194{word-spacing:-7.918293pt;}
.ws5_c01194{word-spacing:-7.200213pt;}
.ws6_c01194{word-spacing:0.000000pt;}
.ws2_c01194{word-spacing:0.470827pt;}
.ws3_c01194{word-spacing:7.227733pt;}
.ws0_c01194{word-spacing:12.478833pt;}
.ws1_c01194{word-spacing:164.876800pt;}
.fse_c01194{font-size:12.800000pt;}
.fsd_c01194{font-size:20.480000pt;}
.fs8_c01194{font-size:30.720000pt;}
.fs9_c01194{font-size:38.400000pt;}
.fs6_c01194{font-size:40.960000pt;}
.fs5_c01194{font-size:43.520000pt;}
.fs2_c01194{font-size:46.080000pt;}
.fs4_c01194{font-size:48.640000pt;}
.fs3_c01194{font-size:51.200000pt;}
.fs1_c01194{font-size:53.760000pt;}
.fs7_c01194{font-size:56.320000pt;}
.fsa_c01194{font-size:58.880000pt;}
.fsc_c01194{font-size:61.440000pt;}
.fsb_c01194{font-size:64.000000pt;}
.fs0_c01194{font-size:66.560000pt;}
.y0_c01194{bottom:0.000000pt;}
.y8a_c01194{bottom:39.680000pt;}
.y89_c01194{bottom:42.240000pt;}
.y87_c01194{bottom:42.880000pt;}
.y88_c01194{bottom:44.800000pt;}
.y86_c01194{bottom:45.440000pt;}
.y85_c01194{bottom:49.280000pt;}
.y84_c01194{bottom:79.360000pt;}
.y83_c01194{bottom:80.640000pt;}
.y81_c01194{bottom:81.280000pt;}
.y80_c01194{bottom:82.560000pt;}
.y82_c01194{bottom:83.200000pt;}
.y7f_c01194{bottom:85.760000pt;}
.y7e_c01194{bottom:117.120000pt;}
.y7d_c01194{bottom:117.760000pt;}
.y7c_c01194{bottom:119.040000pt;}
.y7b_c01194{bottom:120.960000pt;}
.y7a_c01194{bottom:123.520000pt;}
.y79_c01194{bottom:154.880000pt;}
.y78_c01194{bottom:155.520000pt;}
.y77_c01194{bottom:156.800000pt;}
.y76_c01194{bottom:157.440000pt;}
.y75_c01194{bottom:158.720000pt;}
.y74_c01194{bottom:161.280000pt;}
.y72_c01194{bottom:193.280000pt;}
.y71_c01194{bottom:194.560000pt;}
.y6f_c01194{bottom:195.200000pt;}
.y73_c01194{bottom:195.840000pt;}
.y6e_c01194{bottom:196.480000pt;}
.y70_c01194{bottom:197.760000pt;}
.y6d_c01194{bottom:198.400000pt;}
.y6c_c01194{bottom:231.680000pt;}
.y6a_c01194{bottom:232.960000pt;}
.y69_c01194{bottom:233.600000pt;}
.y6b_c01194{bottom:234.240000pt;}
.y68_c01194{bottom:234.880000pt;}
.y67_c01194{bottom:236.800000pt;}
.y66_c01194{bottom:270.080000pt;}
.y65_c01194{bottom:270.720000pt;}
.y63_c01194{bottom:271.360000pt;}
.y64_c01194{bottom:272.000000pt;}
.y61_c01194{bottom:272.640000pt;}
.y62_c01194{bottom:273.280000pt;}
.y60_c01194{bottom:273.920000pt;}
.y5f_c01194{bottom:308.480000pt;}
.y5e_c01194{bottom:309.120000pt;}
.y5d_c01194{bottom:311.040000pt;}
.y5c_c01194{bottom:311.680000pt;}
.y59_c01194{bottom:347.520000pt;}
.y5b_c01194{bottom:348.160000pt;}
.y58_c01194{bottom:348.800000pt;}
.y57_c01194{bottom:349.440000pt;}
.y5a_c01194{bottom:350.080000pt;}
.y55_c01194{bottom:385.920000pt;}
.y54_c01194{bottom:386.560000pt;}
.y56_c01194{bottom:387.840000pt;}
.y53_c01194{bottom:388.480000pt;}
.y51_c01194{bottom:422.400000pt;}
.y50_c01194{bottom:424.320000pt;}
.y4f_c01194{bottom:424.960000pt;}
.y52_c01194{bottom:425.600000pt;}
.y4e_c01194{bottom:426.240000pt;}
.y4c_c01194{bottom:462.080000pt;}
.y4b_c01194{bottom:464.000000pt;}
.y4d_c01194{bottom:464.640000pt;}
.y48_c01194{bottom:499.840000pt;}
.y47_c01194{bottom:500.480000pt;}
.y44_c01194{bottom:501.120000pt;}
.y45_c01194{bottom:501.760000pt;}
.y49_c01194{bottom:502.400000pt;}
.y4a_c01194{bottom:503.040000pt;}
.y46_c01194{bottom:504.960000pt;}
.y40_c01194{bottom:536.960000pt;}
.y41_c01194{bottom:538.240000pt;}
.y42_c01194{bottom:538.880000pt;}
.y43_c01194{bottom:540.160000pt;}
.y3c_c01194{bottom:565.760000pt;}
.y3b_c01194{bottom:567.040000pt;}
.y3a_c01194{bottom:567.680000pt;}
.y3f_c01194{bottom:568.320000pt;}
.y3d_c01194{bottom:568.960000pt;}
.y3e_c01194{bottom:569.600000pt;}
.y36_c01194{bottom:603.520000pt;}
.y35_c01194{bottom:604.800000pt;}
.y37_c01194{bottom:606.080000pt;}
.y38_c01194{bottom:606.720000pt;}
.y39_c01194{bottom:607.360000pt;}
.y2f_c01194{bottom:641.920000pt;}
.y2e_c01194{bottom:642.560000pt;}
.y31_c01194{bottom:643.200000pt;}
.y30_c01194{bottom:645.120000pt;}
.y32_c01194{bottom:645.760000pt;}
.y34_c01194{bottom:646.400000pt;}
.y33_c01194{bottom:647.040000pt;}
.y29_c01194{bottom:680.320000pt;}
.y2c_c01194{bottom:681.600000pt;}
.y2a_c01194{bottom:682.240000pt;}
.y2b_c01194{bottom:682.880000pt;}
.y2d_c01194{bottom:683.520000pt;}
.y24_c01194{bottom:718.080000pt;}
.y23_c01194{bottom:718.720000pt;}
.y27_c01194{bottom:719.360000pt;}
.y25_c01194{bottom:720.640000pt;}
.y26_c01194{bottom:721.280000pt;}
.y28_c01194{bottom:721.920000pt;}
.y1e_c01194{bottom:755.840000pt;}
.y1f_c01194{bottom:756.480000pt;}
.y20_c01194{bottom:758.400000pt;}
.y21_c01194{bottom:759.040000pt;}
.y22_c01194{bottom:760.960000pt;}
.y15_c01194{bottom:793.600000pt;}
.y17_c01194{bottom:794.240000pt;}
.y16_c01194{bottom:795.520000pt;}
.y1a_c01194{bottom:796.160000pt;}
.y18_c01194{bottom:796.800000pt;}
.y19_c01194{bottom:797.440000pt;}
.y1c_c01194{bottom:798.080000pt;}
.y1d_c01194{bottom:799.360000pt;}
.y1b_c01194{bottom:800.640000pt;}
.yf_c01194{bottom:832.000000pt;}
.y11_c01194{bottom:832.640000pt;}
.y10_c01194{bottom:833.920000pt;}
.y12_c01194{bottom:835.200000pt;}
.y14_c01194{bottom:836.480000pt;}
.y13_c01194{bottom:837.760000pt;}
.y8_c01194{bottom:869.760000pt;}
.y9_c01194{bottom:872.320000pt;}
.ya_c01194{bottom:872.960000pt;}
.yb_c01194{bottom:873.600000pt;}
.yc_c01194{bottom:874.240000pt;}
.ye_c01194{bottom:875.520000pt;}
.yd_c01194{bottom:876.800000pt;}
.y2_c01194{bottom:908.160000pt;}
.y3_c01194{bottom:908.800000pt;}
.y4_c01194{bottom:911.360000pt;}
.y5_c01194{bottom:912.000000pt;}
.y7_c01194{bottom:913.920000pt;}
.y6_c01194{bottom:915.200000pt;}
.y1_c01194{bottom:981.120000pt;}
.h11_c01194{height:11.518750pt;}
.h10_c01194{height:18.430000pt;}
.ha_c01194{height:27.645000pt;}
.hc_c01194{height:34.556250pt;}
.h8_c01194{height:36.860000pt;}
.h7_c01194{height:39.163750pt;}
.h4_c01194{height:41.467500pt;}
.h12_c01194{height:43.258750pt;}
.h6_c01194{height:43.771250pt;}
.h13_c01194{height:44.027500pt;}
.h5_c01194{height:46.075000pt;}
.h3_c01194{height:48.378750pt;}
.h9_c01194{height:50.682500pt;}
.hd_c01194{height:52.986250pt;}
.hb_c01194{height:53.498750pt;}
.hf_c01194{height:55.290000pt;}
.he_c01194{height:57.593750pt;}
.h2_c01194{height:59.897500pt;}
.h1_c01194{height:1022.000000pt;}
.h0_c01194{height:1022.080000pt;}
.w1_c01194{width:698.000000pt;}
.w0_c01194{width:698.240000pt;}
.x0_c01194{left:0.000000pt;}
.x2_c01194{left:67.200000pt;}
.x1b_c01194{left:68.480000pt;}
.x22_c01194{left:69.760000pt;}
.x19_c01194{left:113.920000pt;}
.x1a_c01194{left:121.600000pt;}
.x13_c01194{left:140.160000pt;}
.x3_c01194{left:141.440000pt;}
.x23_c01194{left:142.720000pt;}
.x14_c01194{left:188.160000pt;}
.x15_c01194{left:198.400000pt;}
.x16_c01194{left:207.360000pt;}
.x4_c01194{left:216.320000pt;}
.x1e_c01194{left:217.600000pt;}
.x17_c01194{left:244.480000pt;}
.xa_c01194{left:263.680000pt;}
.xe_c01194{left:272.640000pt;}
.x5_c01194{left:273.920000pt;}
.x24_c01194{left:275.200000pt;}
.x18_c01194{left:282.240000pt;}
.xb_c01194{left:311.680000pt;}
.xd_c01194{left:320.640000pt;}
.x10_c01194{left:322.560000pt;}
.x11_c01194{left:360.960000pt;}
.x12_c01194{left:426.240000pt;}
.x1c_c01194{left:447.360000pt;}
.x6_c01194{left:485.760000pt;}
.x1f_c01194{left:487.040000pt;}
.x7_c01194{left:563.840000pt;}
.x8_c01194{left:592.640000pt;}
.x20_c01194{left:593.920000pt;}
.x1_c01194{left:606.720000pt;}
.xf_c01194{left:622.080000pt;}
.x21_c01194{left:623.360000pt;}
.x9_c01194{left:631.040000pt;}
.xc_c01194{left:648.960000pt;}
.x1d_c01194{left:650.880000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9ac4a582bf2ca0de47c22724.woff2')format("woff");}.ff1_c01195{font-family:ff1_c01195;line-height:1.109863;font-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_c01195{transform:matrix(0.216950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216950,0.000000,0.000000,0.250000,0,0);}
.m9_c01195{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m12_c01195{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01195{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);}
.m42_c01195{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);}
.m35_c01195{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);}
.m32_c01195{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_c01195{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01195{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01195{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);}
.m30_c01195{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1_c01195{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m6_c01195{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);}
.m3d_c01195{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01195{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m8_c01195{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m18_c01195{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01195{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m15_c01195{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01195{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m16_c01195{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m36_c01195{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01195{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01195{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mf_c01195{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m40_c01195{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m13_c01195{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.mb_c01195{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m17_c01195{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);}
.m3b_c01195{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m23_c01195{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);}
.m0_c01195{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m39_c01195{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m11_c01195{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m46_c01195{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m7_c01195{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);}
.mc_c01195{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);}
.m1b_c01195{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);}
.m5_c01195{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01195{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m2_c01195{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);}
.m33_c01195{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m26_c01195{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);}
.m14_c01195{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m37_c01195{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_c01195{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m3_c01195{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m22_c01195{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m25_c01195{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m20_c01195{transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);}
.m28_c01195{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);}
.m27_c01195{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m44_c01195{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m45_c01195{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m41_c01195{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);}
.m4_c01195{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01195{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);}
.m2e_c01195{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);}
.m34_c01195{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.md_c01195{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.me_c01195{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);}
.m21_c01195{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m31_c01195{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m43_c01195{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m38_c01195{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01195{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m29_c01195{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01195{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01195{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.ma_c01195{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01195{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.v2_c01195{vertical-align:-11.520000px;}
.v1_c01195{vertical-align:-8.640000px;}
.v0_c01195{vertical-align:0.000000px;}
.ls0_c01195{letter-spacing:0.000000px;}
.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;}
}
.ws5_c01195{word-spacing:0.000000px;}
.ws4_c01195{word-spacing:11.690400px;}
.ws1_c01195{word-spacing:11.693143px;}
.ws0_c01195{word-spacing:190.367885px;}
.ws2_c01195{word-spacing:197.900116px;}
.ws3_c01195{word-spacing:197.900400px;}
.fc0_c01195{color:transparent;}
.fsb_c01195{font-size:34.560000px;}
.fs8_c01195{font-size:37.440000px;}
.fsc_c01195{font-size:40.320000px;}
.fs3_c01195{font-size:46.080000px;}
.fs4_c01195{font-size:48.960000px;}
.fs5_c01195{font-size:51.840000px;}
.fs9_c01195{font-size:54.720000px;}
.fs6_c01195{font-size:57.600000px;}
.fs2_c01195{font-size:60.480000px;}
.fs7_c01195{font-size:63.360000px;}
.fs1_c01195{font-size:66.240000px;}
.fsd_c01195{font-size:72.000000px;}
.fs0_c01195{font-size:74.880000px;}
.fsa_c01195{font-size:92.160000px;}
.y0_c01195{bottom:0.000000px;}
.y90_c01195{bottom:30.960000px;}
.y8f_c01195{bottom:32.400000px;}
.y8e_c01195{bottom:33.840000px;}
.y8d_c01195{bottom:34.560000px;}
.y8b_c01195{bottom:36.000000px;}
.y8c_c01195{bottom:36.720000px;}
.y8a_c01195{bottom:39.600000px;}
.y88_c01195{bottom:73.440000px;}
.y89_c01195{bottom:74.160000px;}
.y87_c01195{bottom:74.880000px;}
.y85_c01195{bottom:75.600000px;}
.y84_c01195{bottom:76.320000px;}
.y86_c01195{bottom:77.040000px;}
.y83_c01195{bottom:78.480000px;}
.y82_c01195{bottom:81.360000px;}
.y81_c01195{bottom:115.200000px;}
.y80_c01195{bottom:116.640000px;}
.y7e_c01195{bottom:118.080000px;}
.y7d_c01195{bottom:119.520000px;}
.y7f_c01195{bottom:120.240000px;}
.y7c_c01195{bottom:122.400000px;}
.y7b_c01195{bottom:123.840000px;}
.y7a_c01195{bottom:159.840000px;}
.y79_c01195{bottom:161.280000px;}
.y77_c01195{bottom:162.000000px;}
.y78_c01195{bottom:164.160000px;}
.y76_c01195{bottom:164.880000px;}
.y75_c01195{bottom:166.320000px;}
.y74_c01195{bottom:201.600000px;}
.y73_c01195{bottom:203.040000px;}
.y70_c01195{bottom:203.760000px;}
.y6f_c01195{bottom:205.200000px;}
.y72_c01195{bottom:205.920000px;}
.y71_c01195{bottom:206.640000px;}
.y6e_c01195{bottom:208.080000px;}
.y6d_c01195{bottom:209.520000px;}
.y6b_c01195{bottom:245.520000px;}
.y6c_c01195{bottom:246.240000px;}
.y6a_c01195{bottom:246.960000px;}
.y67_c01195{bottom:247.680000px;}
.y69_c01195{bottom:249.120000px;}
.y66_c01195{bottom:249.840000px;}
.y68_c01195{bottom:250.560000px;}
.y65_c01195{bottom:251.280000px;}
.y64_c01195{bottom:288.720000px;}
.y63_c01195{bottom:289.440000px;}
.y61_c01195{bottom:290.880000px;}
.y60_c01195{bottom:291.600000px;}
.y62_c01195{bottom:293.040000px;}
.y5f_c01195{bottom:293.760000px;}
.y5e_c01195{bottom:332.640000px;}
.y5b_c01195{bottom:333.360000px;}
.y5a_c01195{bottom:334.080000px;}
.y5d_c01195{bottom:334.800000px;}
.y5c_c01195{bottom:335.520000px;}
.y59_c01195{bottom:336.240000px;}
.y57_c01195{bottom:375.120000px;}
.y55_c01195{bottom:375.840000px;}
.y58_c01195{bottom:376.560000px;}
.y54_c01195{bottom:377.280000px;}
.y56_c01195{bottom:378.000000px;}
.y53_c01195{bottom:378.720000px;}
.y52_c01195{bottom:417.600000px;}
.y51_c01195{bottom:418.320000px;}
.y4f_c01195{bottom:419.040000px;}
.y4e_c01195{bottom:419.760000px;}
.y50_c01195{bottom:420.480000px;}
.y4d_c01195{bottom:421.200000px;}
.y4b_c01195{bottom:460.800000px;}
.y4c_c01195{bottom:461.520000px;}
.y49_c01195{bottom:462.240000px;}
.y48_c01195{bottom:463.680000px;}
.y4a_c01195{bottom:464.400000px;}
.y46_c01195{bottom:504.000000px;}
.y44_c01195{bottom:504.720000px;}
.y43_c01195{bottom:505.440000px;}
.y47_c01195{bottom:506.160000px;}
.y45_c01195{bottom:506.880000px;}
.y42_c01195{bottom:546.480000px;}
.y3f_c01195{bottom:547.200000px;}
.y3e_c01195{bottom:548.640000px;}
.y40_c01195{bottom:549.360000px;}
.y41_c01195{bottom:550.080000px;}
.y3a_c01195{bottom:590.400000px;}
.y39_c01195{bottom:591.120000px;}
.y3c_c01195{bottom:591.840000px;}
.y3b_c01195{bottom:592.560000px;}
.y3d_c01195{bottom:594.000000px;}
.y35_c01195{bottom:633.600000px;}
.y36_c01195{bottom:634.320000px;}
.y37_c01195{bottom:635.760000px;}
.y38_c01195{bottom:636.480000px;}
.y31_c01195{bottom:676.800000px;}
.y34_c01195{bottom:677.520000px;}
.y32_c01195{bottom:678.960000px;}
.y33_c01195{bottom:679.680000px;}
.y2e_c01195{bottom:719.280000px;}
.y2f_c01195{bottom:720.000000px;}
.y2c_c01195{bottom:721.440000px;}
.y2d_c01195{bottom:722.160000px;}
.y30_c01195{bottom:722.880000px;}
.y2b_c01195{bottom:763.920000px;}
.y2a_c01195{bottom:764.640000px;}
.y25_c01195{bottom:794.160000px;}
.y26_c01195{bottom:794.880000px;}
.y27_c01195{bottom:795.600000px;}
.y28_c01195{bottom:796.320000px;}
.y29_c01195{bottom:798.480000px;}
.y24_c01195{bottom:838.800000px;}
.y1e_c01195{bottom:869.040000px;}
.y20_c01195{bottom:869.760000px;}
.y21_c01195{bottom:870.480000px;}
.y22_c01195{bottom:871.200000px;}
.y1f_c01195{bottom:871.920000px;}
.y23_c01195{bottom:872.640000px;}
.y1d_c01195{bottom:904.320000px;}
.y1a_c01195{bottom:905.040000px;}
.y18_c01195{bottom:911.520000px;}
.y19_c01195{bottom:912.240000px;}
.y1b_c01195{bottom:914.400000px;}
.y1c_c01195{bottom:915.120000px;}
.y11_c01195{bottom:953.280000px;}
.y13_c01195{bottom:954.000000px;}
.y12_c01195{bottom:956.160000px;}
.y14_c01195{bottom:956.880000px;}
.y15_c01195{bottom:957.600000px;}
.y16_c01195{bottom:959.040000px;}
.y17_c01195{bottom:959.760000px;}
.ya_c01195{bottom:995.760000px;}
.yc_c01195{bottom:997.200000px;}
.yb_c01195{bottom:998.640000px;}
.yd_c01195{bottom:1000.080000px;}
.ye_c01195{bottom:1000.800000px;}
.y10_c01195{bottom:1001.520000px;}
.yf_c01195{bottom:1002.960000px;}
.y2_c01195{bottom:1037.520000px;}
.y3_c01195{bottom:1039.680000px;}
.y4_c01195{bottom:1040.400000px;}
.y6_c01195{bottom:1042.560000px;}
.y9_c01195{bottom:1043.280000px;}
.y5_c01195{bottom:1044.000000px;}
.y8_c01195{bottom:1045.440000px;}
.y7_c01195{bottom:1046.160000px;}
.y1_c01195{bottom:1102.320000px;}
.hd_c01195{height:31.100625px;}
.ha_c01195{height:33.692344px;}
.he_c01195{height:36.284062px;}
.h5_c01195{height:41.467500px;}
.h6_c01195{height:44.059219px;}
.h7_c01195{height:46.650937px;}
.hb_c01195{height:49.242656px;}
.h8_c01195{height:51.834375px;}
.h4_c01195{height:54.426094px;}
.h9_c01195{height:57.017812px;}
.h3_c01195{height:59.609531px;}
.hf_c01195{height:64.792969px;}
.h2_c01195{height:67.384687px;}
.hc_c01195{height:82.935000px;}
.h0_c01195{height:1153.440000px;}
.h1_c01195{height:1153.500000px;}
.w0_c01195{width:777.600000px;}
.w1_c01195{width:777.750000px;}
.x0_c01195{left:0.000000px;}
.x2_c01195{left:68.400000px;}
.xc_c01195{left:69.840000px;}
.x16_c01195{left:151.200000px;}
.x3_c01195{left:152.640000px;}
.x17_c01195{left:204.480000px;}
.x1a_c01195{left:235.440000px;}
.x4_c01195{left:236.880000px;}
.x12_c01195{left:290.160000px;}
.x1b_c01195{left:300.240000px;}
.x5_c01195{left:301.680000px;}
.x19_c01195{left:343.440000px;}
.x13_c01195{left:344.880000px;}
.x1c_c01195{left:354.960000px;}
.x6_c01195{left:356.400000px;}
.x1e_c01195{left:398.160000px;}
.xf_c01195{left:441.360000px;}
.x10_c01195{left:451.440000px;}
.x14_c01195{left:474.480000px;}
.x18_c01195{left:484.560000px;}
.x11_c01195{left:506.880000px;}
.xd_c01195{left:540.000000px;}
.x7_c01195{left:541.440000px;}
.x15_c01195{left:626.400000px;}
.x8_c01195{left:628.560000px;}
.x1d_c01195{left:659.520000px;}
.x9_c01195{left:660.960000px;}
.x1_c01195{left:679.680000px;}
.xe_c01195{left:693.360000px;}
.xa_c01195{left:704.160000px;}
.xb_c01195{left:724.320000px;}
@media print{
.v2_c01195{vertical-align:-10.240000pt;}
.v1_c01195{vertical-align:-7.680000pt;}
.v0_c01195{vertical-align:0.000000pt;}
.ls0_c01195{letter-spacing:0.000000pt;}
.ws5_c01195{word-spacing:0.000000pt;}
.ws4_c01195{word-spacing:10.391467pt;}
.ws1_c01195{word-spacing:10.393905pt;}
.ws0_c01195{word-spacing:169.215898pt;}
.ws2_c01195{word-spacing:175.911214pt;}
.ws3_c01195{word-spacing:175.911467pt;}
.fsb_c01195{font-size:30.720000pt;}
.fs8_c01195{font-size:33.280000pt;}
.fsc_c01195{font-size:35.840000pt;}
.fs3_c01195{font-size:40.960000pt;}
.fs4_c01195{font-size:43.520000pt;}
.fs5_c01195{font-size:46.080000pt;}
.fs9_c01195{font-size:48.640000pt;}
.fs6_c01195{font-size:51.200000pt;}
.fs2_c01195{font-size:53.760000pt;}
.fs7_c01195{font-size:56.320000pt;}
.fs1_c01195{font-size:58.880000pt;}
.fsd_c01195{font-size:64.000000pt;}
.fs0_c01195{font-size:66.560000pt;}
.fsa_c01195{font-size:81.920000pt;}
.y0_c01195{bottom:0.000000pt;}
.y90_c01195{bottom:27.520000pt;}
.y8f_c01195{bottom:28.800000pt;}
.y8e_c01195{bottom:30.080000pt;}
.y8d_c01195{bottom:30.720000pt;}
.y8b_c01195{bottom:32.000000pt;}
.y8c_c01195{bottom:32.640000pt;}
.y8a_c01195{bottom:35.200000pt;}
.y88_c01195{bottom:65.280000pt;}
.y89_c01195{bottom:65.920000pt;}
.y87_c01195{bottom:66.560000pt;}
.y85_c01195{bottom:67.200000pt;}
.y84_c01195{bottom:67.840000pt;}
.y86_c01195{bottom:68.480000pt;}
.y83_c01195{bottom:69.760000pt;}
.y82_c01195{bottom:72.320000pt;}
.y81_c01195{bottom:102.400000pt;}
.y80_c01195{bottom:103.680000pt;}
.y7e_c01195{bottom:104.960000pt;}
.y7d_c01195{bottom:106.240000pt;}
.y7f_c01195{bottom:106.880000pt;}
.y7c_c01195{bottom:108.800000pt;}
.y7b_c01195{bottom:110.080000pt;}
.y7a_c01195{bottom:142.080000pt;}
.y79_c01195{bottom:143.360000pt;}
.y77_c01195{bottom:144.000000pt;}
.y78_c01195{bottom:145.920000pt;}
.y76_c01195{bottom:146.560000pt;}
.y75_c01195{bottom:147.840000pt;}
.y74_c01195{bottom:179.200000pt;}
.y73_c01195{bottom:180.480000pt;}
.y70_c01195{bottom:181.120000pt;}
.y6f_c01195{bottom:182.400000pt;}
.y72_c01195{bottom:183.040000pt;}
.y71_c01195{bottom:183.680000pt;}
.y6e_c01195{bottom:184.960000pt;}
.y6d_c01195{bottom:186.240000pt;}
.y6b_c01195{bottom:218.240000pt;}
.y6c_c01195{bottom:218.880000pt;}
.y6a_c01195{bottom:219.520000pt;}
.y67_c01195{bottom:220.160000pt;}
.y69_c01195{bottom:221.440000pt;}
.y66_c01195{bottom:222.080000pt;}
.y68_c01195{bottom:222.720000pt;}
.y65_c01195{bottom:223.360000pt;}
.y64_c01195{bottom:256.640000pt;}
.y63_c01195{bottom:257.280000pt;}
.y61_c01195{bottom:258.560000pt;}
.y60_c01195{bottom:259.200000pt;}
.y62_c01195{bottom:260.480000pt;}
.y5f_c01195{bottom:261.120000pt;}
.y5e_c01195{bottom:295.680000pt;}
.y5b_c01195{bottom:296.320000pt;}
.y5a_c01195{bottom:296.960000pt;}
.y5d_c01195{bottom:297.600000pt;}
.y5c_c01195{bottom:298.240000pt;}
.y59_c01195{bottom:298.880000pt;}
.y57_c01195{bottom:333.440000pt;}
.y55_c01195{bottom:334.080000pt;}
.y58_c01195{bottom:334.720000pt;}
.y54_c01195{bottom:335.360000pt;}
.y56_c01195{bottom:336.000000pt;}
.y53_c01195{bottom:336.640000pt;}
.y52_c01195{bottom:371.200000pt;}
.y51_c01195{bottom:371.840000pt;}
.y4f_c01195{bottom:372.480000pt;}
.y4e_c01195{bottom:373.120000pt;}
.y50_c01195{bottom:373.760000pt;}
.y4d_c01195{bottom:374.400000pt;}
.y4b_c01195{bottom:409.600000pt;}
.y4c_c01195{bottom:410.240000pt;}
.y49_c01195{bottom:410.880000pt;}
.y48_c01195{bottom:412.160000pt;}
.y4a_c01195{bottom:412.800000pt;}
.y46_c01195{bottom:448.000000pt;}
.y44_c01195{bottom:448.640000pt;}
.y43_c01195{bottom:449.280000pt;}
.y47_c01195{bottom:449.920000pt;}
.y45_c01195{bottom:450.560000pt;}
.y42_c01195{bottom:485.760000pt;}
.y3f_c01195{bottom:486.400000pt;}
.y3e_c01195{bottom:487.680000pt;}
.y40_c01195{bottom:488.320000pt;}
.y41_c01195{bottom:488.960000pt;}
.y3a_c01195{bottom:524.800000pt;}
.y39_c01195{bottom:525.440000pt;}
.y3c_c01195{bottom:526.080000pt;}
.y3b_c01195{bottom:526.720000pt;}
.y3d_c01195{bottom:528.000000pt;}
.y35_c01195{bottom:563.200000pt;}
.y36_c01195{bottom:563.840000pt;}
.y37_c01195{bottom:565.120000pt;}
.y38_c01195{bottom:565.760000pt;}
.y31_c01195{bottom:601.600000pt;}
.y34_c01195{bottom:602.240000pt;}
.y32_c01195{bottom:603.520000pt;}
.y33_c01195{bottom:604.160000pt;}
.y2e_c01195{bottom:639.360000pt;}
.y2f_c01195{bottom:640.000000pt;}
.y2c_c01195{bottom:641.280000pt;}
.y2d_c01195{bottom:641.920000pt;}
.y30_c01195{bottom:642.560000pt;}
.y2b_c01195{bottom:679.040000pt;}
.y2a_c01195{bottom:679.680000pt;}
.y25_c01195{bottom:705.920000pt;}
.y26_c01195{bottom:706.560000pt;}
.y27_c01195{bottom:707.200000pt;}
.y28_c01195{bottom:707.840000pt;}
.y29_c01195{bottom:709.760000pt;}
.y24_c01195{bottom:745.600000pt;}
.y1e_c01195{bottom:772.480000pt;}
.y20_c01195{bottom:773.120000pt;}
.y21_c01195{bottom:773.760000pt;}
.y22_c01195{bottom:774.400000pt;}
.y1f_c01195{bottom:775.040000pt;}
.y23_c01195{bottom:775.680000pt;}
.y1d_c01195{bottom:803.840000pt;}
.y1a_c01195{bottom:804.480000pt;}
.y18_c01195{bottom:810.240000pt;}
.y19_c01195{bottom:810.880000pt;}
.y1b_c01195{bottom:812.800000pt;}
.y1c_c01195{bottom:813.440000pt;}
.y11_c01195{bottom:847.360000pt;}
.y13_c01195{bottom:848.000000pt;}
.y12_c01195{bottom:849.920000pt;}
.y14_c01195{bottom:850.560000pt;}
.y15_c01195{bottom:851.200000pt;}
.y16_c01195{bottom:852.480000pt;}
.y17_c01195{bottom:853.120000pt;}
.ya_c01195{bottom:885.120000pt;}
.yc_c01195{bottom:886.400000pt;}
.yb_c01195{bottom:887.680000pt;}
.yd_c01195{bottom:888.960000pt;}
.ye_c01195{bottom:889.600000pt;}
.y10_c01195{bottom:890.240000pt;}
.yf_c01195{bottom:891.520000pt;}
.y2_c01195{bottom:922.240000pt;}
.y3_c01195{bottom:924.160000pt;}
.y4_c01195{bottom:924.800000pt;}
.y6_c01195{bottom:926.720000pt;}
.y9_c01195{bottom:927.360000pt;}
.y5_c01195{bottom:928.000000pt;}
.y8_c01195{bottom:929.280000pt;}
.y7_c01195{bottom:929.920000pt;}
.y1_c01195{bottom:979.840000pt;}
.hd_c01195{height:27.645000pt;}
.ha_c01195{height:29.948750pt;}
.he_c01195{height:32.252500pt;}
.h5_c01195{height:36.860000pt;}
.h6_c01195{height:39.163750pt;}
.h7_c01195{height:41.467500pt;}
.hb_c01195{height:43.771250pt;}
.h8_c01195{height:46.075000pt;}
.h4_c01195{height:48.378750pt;}
.h9_c01195{height:50.682500pt;}
.h3_c01195{height:52.986250pt;}
.hf_c01195{height:57.593750pt;}
.h2_c01195{height:59.897500pt;}
.hc_c01195{height:73.720000pt;}
.h0_c01195{height:1025.280000pt;}
.h1_c01195{height:1025.333333pt;}
.w0_c01195{width:691.200000pt;}
.w1_c01195{width:691.333333pt;}
.x0_c01195{left:0.000000pt;}
.x2_c01195{left:60.800000pt;}
.xc_c01195{left:62.080000pt;}
.x16_c01195{left:134.400000pt;}
.x3_c01195{left:135.680000pt;}
.x17_c01195{left:181.760000pt;}
.x1a_c01195{left:209.280000pt;}
.x4_c01195{left:210.560000pt;}
.x12_c01195{left:257.920000pt;}
.x1b_c01195{left:266.880000pt;}
.x5_c01195{left:268.160000pt;}
.x19_c01195{left:305.280000pt;}
.x13_c01195{left:306.560000pt;}
.x1c_c01195{left:315.520000pt;}
.x6_c01195{left:316.800000pt;}
.x1e_c01195{left:353.920000pt;}
.xf_c01195{left:392.320000pt;}
.x10_c01195{left:401.280000pt;}
.x14_c01195{left:421.760000pt;}
.x18_c01195{left:430.720000pt;}
.x11_c01195{left:450.560000pt;}
.xd_c01195{left:480.000000pt;}
.x7_c01195{left:481.280000pt;}
.x15_c01195{left:556.800000pt;}
.x8_c01195{left:558.720000pt;}
.x1d_c01195{left:586.240000pt;}
.x9_c01195{left:587.520000pt;}
.x1_c01195{left:604.160000pt;}
.xe_c01195{left:616.320000pt;}
.xa_c01195{left:625.920000pt;}
.xb_c01195{left:643.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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;}
@font-face{font-family:ff1_c01196;src:url('chunks/assets/font_4e47a56723d176f7b8ce49d4.woff2')format("woff");}.ff1_c01196{font-family:ff1_c01196;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m30_c01196{transform:matrix(0.172375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172375,0.000000,0.000000,0.250000,0,0);}
.m27_c01196{transform:matrix(0.222375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222375,0.000000,0.000000,0.250000,0,0);}
.m29_c01196{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m3a_c01196{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);}
.m4c_c01196{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01196{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);}
.m45_c01196{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m11_c01196{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);}
.m28_c01196{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);}
.m21_c01196{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01196{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);}
.m37_c01196{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mf_c01196{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m7_c01196{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m38_c01196{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m8_c01196{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m16_c01196{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m23_c01196{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01196{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m48_c01196{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m2_c01196{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m9_c01196{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.ma_c01196{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m17_c01196{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01196{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m3_c01196{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);}
.m3d_c01196{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01196{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m6_c01196{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);}
.m2e_c01196{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.mb_c01196{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01196{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m10_c01196{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);}
.m1e_c01196{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01196{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m1_c01196{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);}
.m0_c01196{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01196{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m12_c01196{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01196{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);}
.m34_c01196{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m46_c01196{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);}
.m47_c01196{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.me_c01196{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m18_c01196{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01196{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);}
.mc_c01196{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01196{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);}
.m1f_c01196{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);}
.m13_c01196{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m15_c01196{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m4d_c01196{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01196{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);}
.m49_c01196{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m24_c01196{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m20_c01196{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);}
.m26_c01196{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);}
.m44_c01196{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m25_c01196{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m32_c01196{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);}
.m39_c01196{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m14_c01196{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m40_c01196{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m33_c01196{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);}
.m3b_c01196{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m4_c01196{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m5_c01196{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);}
.m19_c01196{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01196{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);}
.m41_c01196{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);}
.md_c01196{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01196{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m31_c01196{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m36_c01196{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m43_c01196{transform:matrix(0.712500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.712500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.712500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01196{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);}
.m35_c01196{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.m42_c01196{transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);}
.m22_c01196{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01196{transform:matrix(0.860000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.860000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.860000,0.000000,0.000000,0.250000,0,0);}
.v1_c01196{vertical-align:-2.880000px;}
.v0_c01196{vertical-align:0.000000px;}
.v2_c01196{vertical-align:2.880000px;}
.v3_c01196{vertical-align:5.760000px;}
.ls0_c01196{letter-spacing:0.000000px;}
.sc__c01196{text-shadow:none;}
.sc0_c01196{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01196{-webkit-text-stroke:0px transparent;}
.sc0_c01196{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c01196{word-spacing:0.000000px;}
.ws0_c01196{word-spacing:3.042720px;}
.ws2_c01196{word-spacing:10.749600px;}
.ws4_c01196{word-spacing:14.041200px;}
.ws3_c01196{word-spacing:14.174400px;}
.ws1_c01196{word-spacing:14.955600px;}
.fc0_c01196{color:transparent;}
.fs5_c01196{font-size:37.440000px;}
.fse_c01196{font-size:40.320000px;}
.fsc_c01196{font-size:43.200000px;}
.fs9_c01196{font-size:46.080000px;}
.fs7_c01196{font-size:48.960000px;}
.fs4_c01196{font-size:51.840000px;}
.fs6_c01196{font-size:54.720000px;}
.fs1_c01196{font-size:57.600000px;}
.fs3_c01196{font-size:60.480000px;}
.fs2_c01196{font-size:63.360000px;}
.fsf_c01196{font-size:66.240000px;}
.fs8_c01196{font-size:69.120000px;}
.fs0_c01196{font-size:72.000000px;}
.fsa_c01196{font-size:74.880000px;}
.fsd_c01196{font-size:95.040000px;}
.fsb_c01196{font-size:100.800000px;}
.y0_c01196{bottom:0.000000px;}
.y87_c01196{bottom:53.280000px;}
.y85_c01196{bottom:54.720000px;}
.y83_c01196{bottom:55.440000px;}
.y86_c01196{bottom:56.160000px;}
.y84_c01196{bottom:58.320000px;}
.y82_c01196{bottom:59.760000px;}
.y81_c01196{bottom:62.640000px;}
.y7f_c01196{bottom:97.920000px;}
.y80_c01196{bottom:98.640000px;}
.y7d_c01196{bottom:99.360000px;}
.y7e_c01196{bottom:100.800000px;}
.y7c_c01196{bottom:101.520000px;}
.y7b_c01196{bottom:105.120000px;}
.y7a_c01196{bottom:138.960000px;}
.y79_c01196{bottom:139.680000px;}
.y78_c01196{bottom:140.400000px;}
.y77_c01196{bottom:141.840000px;}
.y76_c01196{bottom:144.000000px;}
.y75_c01196{bottom:146.880000px;}
.y73_c01196{bottom:183.600000px;}
.y74_c01196{bottom:184.320000px;}
.y72_c01196{bottom:185.040000px;}
.y71_c01196{bottom:187.200000px;}
.y70_c01196{bottom:189.360000px;}
.y6f_c01196{bottom:226.080000px;}
.y6e_c01196{bottom:226.800000px;}
.y6c_c01196{bottom:227.520000px;}
.y6d_c01196{bottom:228.960000px;}
.y6b_c01196{bottom:230.400000px;}
.y6a_c01196{bottom:231.840000px;}
.y68_c01196{bottom:268.560000px;}
.y69_c01196{bottom:269.280000px;}
.y66_c01196{bottom:270.000000px;}
.y65_c01196{bottom:272.160000px;}
.y67_c01196{bottom:272.880000px;}
.y64_c01196{bottom:274.320000px;}
.y63_c01196{bottom:311.760000px;}
.y5f_c01196{bottom:312.480000px;}
.y5e_c01196{bottom:313.200000px;}
.y61_c01196{bottom:313.920000px;}
.y60_c01196{bottom:314.640000px;}
.y62_c01196{bottom:315.360000px;}
.y5d_c01196{bottom:317.520000px;}
.y5c_c01196{bottom:355.680000px;}
.y59_c01196{bottom:356.400000px;}
.y5b_c01196{bottom:357.120000px;}
.y58_c01196{bottom:357.840000px;}
.y5a_c01196{bottom:359.280000px;}
.y57_c01196{bottom:360.000000px;}
.y56_c01196{bottom:399.600000px;}
.y54_c01196{bottom:400.320000px;}
.y53_c01196{bottom:401.040000px;}
.y55_c01196{bottom:401.760000px;}
.y52_c01196{bottom:402.480000px;}
.y51_c01196{bottom:442.080000px;}
.y50_c01196{bottom:442.800000px;}
.y4e_c01196{bottom:444.240000px;}
.y4d_c01196{bottom:444.960000px;}
.y4f_c01196{bottom:445.680000px;}
.y4b_c01196{bottom:485.280000px;}
.y4a_c01196{bottom:486.000000px;}
.y4c_c01196{bottom:486.720000px;}
.y48_c01196{bottom:487.440000px;}
.y49_c01196{bottom:488.160000px;}
.y47_c01196{bottom:528.480000px;}
.y45_c01196{bottom:529.200000px;}
.y44_c01196{bottom:530.640000px;}
.y46_c01196{bottom:531.360000px;}
.y43_c01196{bottom:563.040000px;}
.y3e_c01196{bottom:571.680000px;}
.y3f_c01196{bottom:572.400000px;}
.y41_c01196{bottom:573.120000px;}
.y40_c01196{bottom:573.840000px;}
.y42_c01196{bottom:574.560000px;}
.y3d_c01196{bottom:606.240000px;}
.y39_c01196{bottom:614.160000px;}
.y38_c01196{bottom:614.880000px;}
.y3b_c01196{bottom:616.320000px;}
.y3a_c01196{bottom:617.040000px;}
.y3c_c01196{bottom:617.760000px;}
.y37_c01196{bottom:649.440000px;}
.y32_c01196{bottom:657.360000px;}
.y33_c01196{bottom:658.080000px;}
.y34_c01196{bottom:658.800000px;}
.y36_c01196{bottom:659.520000px;}
.y35_c01196{bottom:660.240000px;}
.y2f_c01196{bottom:699.840000px;}
.y30_c01196{bottom:702.000000px;}
.y31_c01196{bottom:702.720000px;}
.y2b_c01196{bottom:731.520000px;}
.y2c_c01196{bottom:732.240000px;}
.y2d_c01196{bottom:732.960000px;}
.y2e_c01196{bottom:734.400000px;}
.y29_c01196{bottom:766.800000px;}
.y26_c01196{bottom:774.720000px;}
.y28_c01196{bottom:775.440000px;}
.y27_c01196{bottom:776.160000px;}
.y2a_c01196{bottom:777.600000px;}
.y25_c01196{bottom:807.840000px;}
.y24_c01196{bottom:810.000000px;}
.y23_c01196{bottom:816.480000px;}
.y1f_c01196{bottom:817.200000px;}
.y20_c01196{bottom:817.920000px;}
.y21_c01196{bottom:819.360000px;}
.y22_c01196{bottom:820.080000px;}
.y1a_c01196{bottom:859.680000px;}
.y1b_c01196{bottom:860.400000px;}
.y1d_c01196{bottom:862.560000px;}
.y1c_c01196{bottom:863.280000px;}
.y1e_c01196{bottom:865.440000px;}
.y14_c01196{bottom:902.880000px;}
.y16_c01196{bottom:903.600000px;}
.y19_c01196{bottom:905.040000px;}
.y18_c01196{bottom:905.760000px;}
.y15_c01196{bottom:906.480000px;}
.y17_c01196{bottom:907.200000px;}
.ye_c01196{bottom:945.360000px;}
.yf_c01196{bottom:946.080000px;}
.y10_c01196{bottom:948.960000px;}
.y11_c01196{bottom:949.680000px;}
.y12_c01196{bottom:951.120000px;}
.y13_c01196{bottom:951.840000px;}
.y7_c01196{bottom:987.840000px;}
.y8_c01196{bottom:988.560000px;}
.y9_c01196{bottom:989.280000px;}
.ya_c01196{bottom:992.160000px;}
.yb_c01196{bottom:992.880000px;}
.yd_c01196{bottom:994.320000px;}
.yc_c01196{bottom:995.040000px;}
.y2_c01196{bottom:1031.040000px;}
.y3_c01196{bottom:1032.480000px;}
.y4_c01196{bottom:1035.360000px;}
.y5_c01196{bottom:1036.080000px;}
.y6_c01196{bottom:1037.520000px;}
.y1_c01196{bottom:1100.160000px;}
.h7_c01196{height:33.692344px;}
.h11_c01196{height:36.284062px;}
.hf_c01196{height:38.875781px;}
.hb_c01196{height:41.467500px;}
.h9_c01196{height:44.059219px;}
.h6_c01196{height:46.650937px;}
.h8_c01196{height:49.242656px;}
.h3_c01196{height:51.834375px;}
.he_c01196{height:52.122656px;}
.h5_c01196{height:54.426094px;}
.h13_c01196{height:55.002656px;}
.h4_c01196{height:57.017812px;}
.h12_c01196{height:59.609531px;}
.ha_c01196{height:62.201250px;}
.h2_c01196{height:64.792969px;}
.hc_c01196{height:67.384687px;}
.h10_c01196{height:85.526719px;}
.hd_c01196{height:90.710156px;}
.h0_c01196{height:1154.880000px;}
.h1_c01196{height:1155.000000px;}
.w0_c01196{width:779.040000px;}
.w1_c01196{width:779.250000px;}
.x0_c01196{left:0.000000px;}
.x13_c01196{left:67.680000px;}
.x2_c01196{left:69.120000px;}
.x14_c01196{left:149.760000px;}
.x3_c01196{left:151.200000px;}
.x19_c01196{left:213.840000px;}
.x2d_c01196{left:234.000000px;}
.xb_c01196{left:235.440000px;}
.x4_c01196{left:236.880000px;}
.x1a_c01196{left:267.840000px;}
.x5_c01196{left:289.440000px;}
.x28_c01196{left:298.800000px;}
.xc_c01196{left:300.240000px;}
.x24_c01196{left:342.720000px;}
.x6_c01196{left:344.160000px;}
.x26_c01196{left:353.520000px;}
.xd_c01196{left:354.960000px;}
.x1b_c01196{left:374.400000px;}
.x2e_c01196{left:384.480000px;}
.x16_c01196{left:386.640000px;}
.x27_c01196{left:397.440000px;}
.x2a_c01196{left:417.600000px;}
.x1c_c01196{left:429.120000px;}
.x20_c01196{left:439.200000px;}
.xf_c01196{left:451.440000px;}
.x1d_c01196{left:461.520000px;}
.x17_c01196{left:467.280000px;}
.x2b_c01196{left:472.320000px;}
.x15_c01196{left:483.120000px;}
.x21_c01196{left:488.880000px;}
.x23_c01196{left:494.640000px;}
.x22_c01196{left:505.440000px;}
.x1e_c01196{left:509.760000px;}
.x1f_c01196{left:516.240000px;}
.x2f_c01196{left:536.400000px;}
.x18_c01196{left:537.840000px;}
.x7_c01196{left:540.000000px;}
.x2c_c01196{left:570.960000px;}
.x10_c01196{left:592.560000px;}
.x25_c01196{left:625.680000px;}
.x8_c01196{left:627.120000px;}
.x30_c01196{left:658.080000px;}
.x9_c01196{left:659.520000px;}
.x1_c01196{left:685.440000px;}
.x29_c01196{left:691.200000px;}
.xa_c01196{left:692.640000px;}
.x11_c01196{left:702.000000px;}
.xe_c01196{left:703.440000px;}
.x12_c01196{left:723.600000px;}
@media print{
.v1_c01196{vertical-align:-2.560000pt;}
.v0_c01196{vertical-align:0.000000pt;}
.v2_c01196{vertical-align:2.560000pt;}
.v3_c01196{vertical-align:5.120000pt;}
.ls0_c01196{letter-spacing:0.000000pt;}
.ws5_c01196{word-spacing:0.000000pt;}
.ws0_c01196{word-spacing:2.704640pt;}
.ws2_c01196{word-spacing:9.555200pt;}
.ws4_c01196{word-spacing:12.481067pt;}
.ws3_c01196{word-spacing:12.599467pt;}
.ws1_c01196{word-spacing:13.293867pt;}
.fs5_c01196{font-size:33.280000pt;}
.fse_c01196{font-size:35.840000pt;}
.fsc_c01196{font-size:38.400000pt;}
.fs9_c01196{font-size:40.960000pt;}
.fs7_c01196{font-size:43.520000pt;}
.fs4_c01196{font-size:46.080000pt;}
.fs6_c01196{font-size:48.640000pt;}
.fs1_c01196{font-size:51.200000pt;}
.fs3_c01196{font-size:53.760000pt;}
.fs2_c01196{font-size:56.320000pt;}
.fsf_c01196{font-size:58.880000pt;}
.fs8_c01196{font-size:61.440000pt;}
.fs0_c01196{font-size:64.000000pt;}
.fsa_c01196{font-size:66.560000pt;}
.fsd_c01196{font-size:84.480000pt;}
.fsb_c01196{font-size:89.600000pt;}
.y0_c01196{bottom:0.000000pt;}
.y87_c01196{bottom:47.360000pt;}
.y85_c01196{bottom:48.640000pt;}
.y83_c01196{bottom:49.280000pt;}
.y86_c01196{bottom:49.920000pt;}
.y84_c01196{bottom:51.840000pt;}
.y82_c01196{bottom:53.120000pt;}
.y81_c01196{bottom:55.680000pt;}
.y7f_c01196{bottom:87.040000pt;}
.y80_c01196{bottom:87.680000pt;}
.y7d_c01196{bottom:88.320000pt;}
.y7e_c01196{bottom:89.600000pt;}
.y7c_c01196{bottom:90.240000pt;}
.y7b_c01196{bottom:93.440000pt;}
.y7a_c01196{bottom:123.520000pt;}
.y79_c01196{bottom:124.160000pt;}
.y78_c01196{bottom:124.800000pt;}
.y77_c01196{bottom:126.080000pt;}
.y76_c01196{bottom:128.000000pt;}
.y75_c01196{bottom:130.560000pt;}
.y73_c01196{bottom:163.200000pt;}
.y74_c01196{bottom:163.840000pt;}
.y72_c01196{bottom:164.480000pt;}
.y71_c01196{bottom:166.400000pt;}
.y70_c01196{bottom:168.320000pt;}
.y6f_c01196{bottom:200.960000pt;}
.y6e_c01196{bottom:201.600000pt;}
.y6c_c01196{bottom:202.240000pt;}
.y6d_c01196{bottom:203.520000pt;}
.y6b_c01196{bottom:204.800000pt;}
.y6a_c01196{bottom:206.080000pt;}
.y68_c01196{bottom:238.720000pt;}
.y69_c01196{bottom:239.360000pt;}
.y66_c01196{bottom:240.000000pt;}
.y65_c01196{bottom:241.920000pt;}
.y67_c01196{bottom:242.560000pt;}
.y64_c01196{bottom:243.840000pt;}
.y63_c01196{bottom:277.120000pt;}
.y5f_c01196{bottom:277.760000pt;}
.y5e_c01196{bottom:278.400000pt;}
.y61_c01196{bottom:279.040000pt;}
.y60_c01196{bottom:279.680000pt;}
.y62_c01196{bottom:280.320000pt;}
.y5d_c01196{bottom:282.240000pt;}
.y5c_c01196{bottom:316.160000pt;}
.y59_c01196{bottom:316.800000pt;}
.y5b_c01196{bottom:317.440000pt;}
.y58_c01196{bottom:318.080000pt;}
.y5a_c01196{bottom:319.360000pt;}
.y57_c01196{bottom:320.000000pt;}
.y56_c01196{bottom:355.200000pt;}
.y54_c01196{bottom:355.840000pt;}
.y53_c01196{bottom:356.480000pt;}
.y55_c01196{bottom:357.120000pt;}
.y52_c01196{bottom:357.760000pt;}
.y51_c01196{bottom:392.960000pt;}
.y50_c01196{bottom:393.600000pt;}
.y4e_c01196{bottom:394.880000pt;}
.y4d_c01196{bottom:395.520000pt;}
.y4f_c01196{bottom:396.160000pt;}
.y4b_c01196{bottom:431.360000pt;}
.y4a_c01196{bottom:432.000000pt;}
.y4c_c01196{bottom:432.640000pt;}
.y48_c01196{bottom:433.280000pt;}
.y49_c01196{bottom:433.920000pt;}
.y47_c01196{bottom:469.760000pt;}
.y45_c01196{bottom:470.400000pt;}
.y44_c01196{bottom:471.680000pt;}
.y46_c01196{bottom:472.320000pt;}
.y43_c01196{bottom:500.480000pt;}
.y3e_c01196{bottom:508.160000pt;}
.y3f_c01196{bottom:508.800000pt;}
.y41_c01196{bottom:509.440000pt;}
.y40_c01196{bottom:510.080000pt;}
.y42_c01196{bottom:510.720000pt;}
.y3d_c01196{bottom:538.880000pt;}
.y39_c01196{bottom:545.920000pt;}
.y38_c01196{bottom:546.560000pt;}
.y3b_c01196{bottom:547.840000pt;}
.y3a_c01196{bottom:548.480000pt;}
.y3c_c01196{bottom:549.120000pt;}
.y37_c01196{bottom:577.280000pt;}
.y32_c01196{bottom:584.320000pt;}
.y33_c01196{bottom:584.960000pt;}
.y34_c01196{bottom:585.600000pt;}
.y36_c01196{bottom:586.240000pt;}
.y35_c01196{bottom:586.880000pt;}
.y2f_c01196{bottom:622.080000pt;}
.y30_c01196{bottom:624.000000pt;}
.y31_c01196{bottom:624.640000pt;}
.y2b_c01196{bottom:650.240000pt;}
.y2c_c01196{bottom:650.880000pt;}
.y2d_c01196{bottom:651.520000pt;}
.y2e_c01196{bottom:652.800000pt;}
.y29_c01196{bottom:681.600000pt;}
.y26_c01196{bottom:688.640000pt;}
.y28_c01196{bottom:689.280000pt;}
.y27_c01196{bottom:689.920000pt;}
.y2a_c01196{bottom:691.200000pt;}
.y25_c01196{bottom:718.080000pt;}
.y24_c01196{bottom:720.000000pt;}
.y23_c01196{bottom:725.760000pt;}
.y1f_c01196{bottom:726.400000pt;}
.y20_c01196{bottom:727.040000pt;}
.y21_c01196{bottom:728.320000pt;}
.y22_c01196{bottom:728.960000pt;}
.y1a_c01196{bottom:764.160000pt;}
.y1b_c01196{bottom:764.800000pt;}
.y1d_c01196{bottom:766.720000pt;}
.y1c_c01196{bottom:767.360000pt;}
.y1e_c01196{bottom:769.280000pt;}
.y14_c01196{bottom:802.560000pt;}
.y16_c01196{bottom:803.200000pt;}
.y19_c01196{bottom:804.480000pt;}
.y18_c01196{bottom:805.120000pt;}
.y15_c01196{bottom:805.760000pt;}
.y17_c01196{bottom:806.400000pt;}
.ye_c01196{bottom:840.320000pt;}
.yf_c01196{bottom:840.960000pt;}
.y10_c01196{bottom:843.520000pt;}
.y11_c01196{bottom:844.160000pt;}
.y12_c01196{bottom:845.440000pt;}
.y13_c01196{bottom:846.080000pt;}
.y7_c01196{bottom:878.080000pt;}
.y8_c01196{bottom:878.720000pt;}
.y9_c01196{bottom:879.360000pt;}
.ya_c01196{bottom:881.920000pt;}
.yb_c01196{bottom:882.560000pt;}
.yd_c01196{bottom:883.840000pt;}
.yc_c01196{bottom:884.480000pt;}
.y2_c01196{bottom:916.480000pt;}
.y3_c01196{bottom:917.760000pt;}
.y4_c01196{bottom:920.320000pt;}
.y5_c01196{bottom:920.960000pt;}
.y6_c01196{bottom:922.240000pt;}
.y1_c01196{bottom:977.920000pt;}
.h7_c01196{height:29.948750pt;}
.h11_c01196{height:32.252500pt;}
.hf_c01196{height:34.556250pt;}
.hb_c01196{height:36.860000pt;}
.h9_c01196{height:39.163750pt;}
.h6_c01196{height:41.467500pt;}
.h8_c01196{height:43.771250pt;}
.h3_c01196{height:46.075000pt;}
.he_c01196{height:46.331250pt;}
.h5_c01196{height:48.378750pt;}
.h13_c01196{height:48.891250pt;}
.h4_c01196{height:50.682500pt;}
.h12_c01196{height:52.986250pt;}
.ha_c01196{height:55.290000pt;}
.h2_c01196{height:57.593750pt;}
.hc_c01196{height:59.897500pt;}
.h10_c01196{height:76.023750pt;}
.hd_c01196{height:80.631250pt;}
.h0_c01196{height:1026.560000pt;}
.h1_c01196{height:1026.666667pt;}
.w0_c01196{width:692.480000pt;}
.w1_c01196{width:692.666667pt;}
.x0_c01196{left:0.000000pt;}
.x13_c01196{left:60.160000pt;}
.x2_c01196{left:61.440000pt;}
.x14_c01196{left:133.120000pt;}
.x3_c01196{left:134.400000pt;}
.x19_c01196{left:190.080000pt;}
.x2d_c01196{left:208.000000pt;}
.xb_c01196{left:209.280000pt;}
.x4_c01196{left:210.560000pt;}
.x1a_c01196{left:238.080000pt;}
.x5_c01196{left:257.280000pt;}
.x28_c01196{left:265.600000pt;}
.xc_c01196{left:266.880000pt;}
.x24_c01196{left:304.640000pt;}
.x6_c01196{left:305.920000pt;}
.x26_c01196{left:314.240000pt;}
.xd_c01196{left:315.520000pt;}
.x1b_c01196{left:332.800000pt;}
.x2e_c01196{left:341.760000pt;}
.x16_c01196{left:343.680000pt;}
.x27_c01196{left:353.280000pt;}
.x2a_c01196{left:371.200000pt;}
.x1c_c01196{left:381.440000pt;}
.x20_c01196{left:390.400000pt;}
.xf_c01196{left:401.280000pt;}
.x1d_c01196{left:410.240000pt;}
.x17_c01196{left:415.360000pt;}
.x2b_c01196{left:419.840000pt;}
.x15_c01196{left:429.440000pt;}
.x21_c01196{left:434.560000pt;}
.x23_c01196{left:439.680000pt;}
.x22_c01196{left:449.280000pt;}
.x1e_c01196{left:453.120000pt;}
.x1f_c01196{left:458.880000pt;}
.x2f_c01196{left:476.800000pt;}
.x18_c01196{left:478.080000pt;}
.x7_c01196{left:480.000000pt;}
.x2c_c01196{left:507.520000pt;}
.x10_c01196{left:526.720000pt;}
.x25_c01196{left:556.160000pt;}
.x8_c01196{left:557.440000pt;}
.x30_c01196{left:584.960000pt;}
.x9_c01196{left:586.240000pt;}
.x1_c01196{left:609.280000pt;}
.x29_c01196{left:614.400000pt;}
.xa_c01196{left:615.680000pt;}
.x11_c01196{left:624.000000pt;}
.xe_c01196{left:625.280000pt;}
.x12_c01196{left:643.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b9fa63db6d6ab106a8024fc7.woff2')format("woff");}.ff1_c01197{font-family:ff1_c01197;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m42_c01197{transform:matrix(0.205350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205350,0.000000,0.000000,0.250000,0,0);}
.m44_c01197{transform:matrix(0.232825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232825,0.000000,0.000000,0.250000,0,0);}
.m37_c01197{transform:matrix(0.237825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237825,0.000000,0.000000,0.250000,0,0);}
.m3f_c01197{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m3c_c01197{transform:matrix(0.244350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244350,0.000000,0.000000,0.250000,0,0);}
.m2d_c01197{transform:matrix(0.245825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245825,0.000000,0.000000,0.250000,0,0);}
.m3a_c01197{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m38_c01197{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01197{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_c01197{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01197{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_c01197{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m6_c01197{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);}
.m2a_c01197{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);}
.m2b_c01197{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m15_c01197{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);}
.m40_c01197{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m25_c01197{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m10_c01197{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);}
.m22_c01197{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m21_c01197{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m24_c01197{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01197{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01197{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m7_c01197{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01197{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mf_c01197{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m34_c01197{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m20_c01197{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.me_c01197{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1_c01197{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m17_c01197{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.ma_c01197{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m0_c01197{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_c01197{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m5_c01197{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.md_c01197{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);}
.m36_c01197{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01197{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m16_c01197{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);}
.m8_c01197{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m18_c01197{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);}
.m26_c01197{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m2_c01197{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m29_c01197{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);}
.m3d_c01197{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);}
.m23_c01197{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);}
.m1c_c01197{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m3_c01197{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.mb_c01197{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);}
.m1a_c01197{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m11_c01197{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m39_c01197{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m45_c01197{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01197{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);}
.mc_c01197{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m31_c01197{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m4_c01197{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);}
.m12_c01197{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m28_c01197{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01197{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);}
.m32_c01197{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m27_c01197{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);}
.m13_c01197{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m35_c01197{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);}
.m41_c01197{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m19_c01197{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);}
.m2f_c01197{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01197{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m43_c01197{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.v0_c01197{vertical-align:0.000000px;}
.ls0_c01197{letter-spacing:0.000000px;}
.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;}
}
.ws1_c01197{word-spacing:0.000000px;}
.ws0_c01197{word-spacing:951.941040px;}
.fc0_c01197{color:transparent;}
.fs8_c01197{font-size:34.560000px;}
.fse_c01197{font-size:40.320000px;}
.fsd_c01197{font-size:43.200000px;}
.fsa_c01197{font-size:46.080000px;}
.fs6_c01197{font-size:48.960000px;}
.fs3_c01197{font-size:51.840000px;}
.fs4_c01197{font-size:54.720000px;}
.fs5_c01197{font-size:57.600000px;}
.fs2_c01197{font-size:60.480000px;}
.fs1_c01197{font-size:63.360000px;}
.fsb_c01197{font-size:66.240000px;}
.fs7_c01197{font-size:69.120000px;}
.fs0_c01197{font-size:72.000000px;}
.fs9_c01197{font-size:74.880000px;}
.fsc_c01197{font-size:77.760000px;}
.y0_c01197{bottom:0.000000px;}
.y80_c01197{bottom:48.960000px;}
.y7f_c01197{bottom:50.400000px;}
.y7d_c01197{bottom:52.560000px;}
.y7e_c01197{bottom:53.280000px;}
.y7c_c01197{bottom:54.000000px;}
.y7b_c01197{bottom:54.720000px;}
.y7a_c01197{bottom:56.160000px;}
.y79_c01197{bottom:61.200000px;}
.y77_c01197{bottom:94.320000px;}
.y74_c01197{bottom:95.760000px;}
.y78_c01197{bottom:96.480000px;}
.y75_c01197{bottom:97.200000px;}
.y76_c01197{bottom:97.920000px;}
.y72_c01197{bottom:98.640000px;}
.y73_c01197{bottom:99.360000px;}
.y71_c01197{bottom:104.400000px;}
.y70_c01197{bottom:138.240000px;}
.y6e_c01197{bottom:140.400000px;}
.y6f_c01197{bottom:143.280000px;}
.y6d_c01197{bottom:145.440000px;}
.y6c_c01197{bottom:181.440000px;}
.y6b_c01197{bottom:182.160000px;}
.y69_c01197{bottom:182.880000px;}
.y6a_c01197{bottom:183.600000px;}
.y68_c01197{bottom:188.640000px;}
.y67_c01197{bottom:224.640000px;}
.y65_c01197{bottom:226.800000px;}
.y66_c01197{bottom:227.520000px;}
.y64_c01197{bottom:231.840000px;}
.y63_c01197{bottom:267.840000px;}
.y62_c01197{bottom:268.560000px;}
.y60_c01197{bottom:269.280000px;}
.y61_c01197{bottom:270.720000px;}
.y5f_c01197{bottom:273.600000px;}
.y5e_c01197{bottom:313.200000px;}
.y5d_c01197{bottom:316.800000px;}
.y5b_c01197{bottom:343.440000px;}
.y5c_c01197{bottom:344.160000px;}
.y58_c01197{bottom:344.880000px;}
.y59_c01197{bottom:346.320000px;}
.y5a_c01197{bottom:347.040000px;}
.y57_c01197{bottom:348.480000px;}
.y55_c01197{bottom:386.640000px;}
.y56_c01197{bottom:387.360000px;}
.y53_c01197{bottom:390.240000px;}
.y54_c01197{bottom:390.960000px;}
.y52_c01197{bottom:428.400000px;}
.y50_c01197{bottom:429.120000px;}
.y51_c01197{bottom:429.840000px;}
.y4e_c01197{bottom:430.560000px;}
.y4f_c01197{bottom:432.720000px;}
.y4d_c01197{bottom:434.160000px;}
.y4c_c01197{bottom:471.600000px;}
.y49_c01197{bottom:472.320000px;}
.y4b_c01197{bottom:473.040000px;}
.y4a_c01197{bottom:475.200000px;}
.y48_c01197{bottom:476.640000px;}
.y45_c01197{bottom:514.800000px;}
.y47_c01197{bottom:516.240000px;}
.y46_c01197{bottom:517.680000px;}
.y44_c01197{bottom:519.840000px;}
.y40_c01197{bottom:558.000000px;}
.y43_c01197{bottom:558.720000px;}
.y42_c01197{bottom:559.440000px;}
.y3f_c01197{bottom:560.880000px;}
.y41_c01197{bottom:561.600000px;}
.y3b_c01197{bottom:600.480000px;}
.y3d_c01197{bottom:601.200000px;}
.y3a_c01197{bottom:603.360000px;}
.y3e_c01197{bottom:604.080000px;}
.y3c_c01197{bottom:604.800000px;}
.y36_c01197{bottom:643.680000px;}
.y35_c01197{bottom:645.840000px;}
.y39_c01197{bottom:646.560000px;}
.y38_c01197{bottom:647.280000px;}
.y37_c01197{bottom:648.000000px;}
.y31_c01197{bottom:686.880000px;}
.y32_c01197{bottom:687.600000px;}
.y30_c01197{bottom:689.040000px;}
.y33_c01197{bottom:689.760000px;}
.y34_c01197{bottom:690.480000px;}
.y2c_c01197{bottom:730.080000px;}
.y2b_c01197{bottom:731.520000px;}
.y2d_c01197{bottom:732.240000px;}
.y2f_c01197{bottom:732.960000px;}
.y2e_c01197{bottom:734.400000px;}
.y27_c01197{bottom:772.560000px;}
.y26_c01197{bottom:774.000000px;}
.y2a_c01197{bottom:775.440000px;}
.y29_c01197{bottom:777.600000px;}
.y28_c01197{bottom:778.320000px;}
.y20_c01197{bottom:816.480000px;}
.y21_c01197{bottom:817.200000px;}
.y23_c01197{bottom:819.360000px;}
.y22_c01197{bottom:820.080000px;}
.y24_c01197{bottom:820.800000px;}
.y25_c01197{bottom:821.520000px;}
.y1a_c01197{bottom:858.960000px;}
.y1b_c01197{bottom:859.680000px;}
.y1c_c01197{bottom:860.400000px;}
.y1e_c01197{bottom:861.840000px;}
.y1f_c01197{bottom:862.560000px;}
.y1d_c01197{bottom:863.280000px;}
.y15_c01197{bottom:901.440000px;}
.y14_c01197{bottom:902.160000px;}
.y18_c01197{bottom:904.320000px;}
.y16_c01197{bottom:905.760000px;}
.y17_c01197{bottom:906.480000px;}
.y19_c01197{bottom:907.200000px;}
.yd_c01197{bottom:944.640000px;}
.ye_c01197{bottom:945.360000px;}
.y11_c01197{bottom:947.520000px;}
.yf_c01197{bottom:948.240000px;}
.y10_c01197{bottom:948.960000px;}
.y12_c01197{bottom:950.400000px;}
.y13_c01197{bottom:951.120000px;}
.y6_c01197{bottom:987.120000px;}
.y7_c01197{bottom:987.840000px;}
.y8_c01197{bottom:988.560000px;}
.y9_c01197{bottom:990.720000px;}
.yc_c01197{bottom:991.440000px;}
.ya_c01197{bottom:992.160000px;}
.yb_c01197{bottom:993.600000px;}
.y2_c01197{bottom:1030.320000px;}
.y3_c01197{bottom:1031.040000px;}
.y4_c01197{bottom:1033.920000px;}
.y5_c01197{bottom:1036.080000px;}
.y1_c01197{bottom:1121.760000px;}
.ha_c01197{height:31.100625px;}
.h10_c01197{height:36.284062px;}
.hf_c01197{height:38.875781px;}
.hc_c01197{height:41.467500px;}
.h8_c01197{height:44.059219px;}
.h5_c01197{height:46.650937px;}
.h6_c01197{height:49.242656px;}
.h7_c01197{height:51.834375px;}
.h4_c01197{height:54.426094px;}
.h3_c01197{height:57.017812px;}
.hd_c01197{height:59.609531px;}
.h9_c01197{height:62.201250px;}
.h2_c01197{height:64.792969px;}
.hb_c01197{height:67.384687px;}
.he_c01197{height:69.976406px;}
.h0_c01197{height:1154.880000px;}
.h1_c01197{height:1155.000000px;}
.w0_c01197{width:777.600000px;}
.w1_c01197{width:777.750000px;}
.x0_c01197{left:0.000000px;}
.xb_c01197{left:64.800000px;}
.x2_c01197{left:66.240000px;}
.xe_c01197{left:145.440000px;}
.xc_c01197{left:147.600000px;}
.x3_c01197{left:149.040000px;}
.x26_c01197{left:188.640000px;}
.x15_c01197{left:220.320000px;}
.x1d_c01197{left:231.120000px;}
.x4_c01197{left:232.560000px;}
.x1f_c01197{left:241.920000px;}
.x16_c01197{left:274.320000px;}
.x22_c01197{left:295.200000px;}
.x5_c01197{left:297.360000px;}
.x17_c01197{left:328.320000px;}
.x23_c01197{left:339.840000px;}
.xa_c01197{left:383.040000px;}
.x12_c01197{left:402.480000px;}
.x18_c01197{left:415.440000px;}
.x24_c01197{left:425.520000px;}
.x19_c01197{left:458.640000px;}
.x25_c01197{left:480.240000px;}
.x20_c01197{left:534.240000px;}
.x6_c01197{left:535.680000px;}
.x13_c01197{left:546.480000px;}
.x11_c01197{left:558.000000px;}
.x14_c01197{left:568.080000px;}
.xf_c01197{left:569.520000px;}
.x1c_c01197{left:588.240000px;}
.x10_c01197{left:622.800000px;}
.x7_c01197{left:624.240000px;}
.x21_c01197{left:655.200000px;}
.x8_c01197{left:656.640000px;}
.x1e_c01197{left:666.000000px;}
.x1_c01197{left:681.120000px;}
.x9_c01197{left:689.760000px;}
.x1b_c01197{left:698.400000px;}
.xd_c01197{left:699.840000px;}
.x1a_c01197{left:719.280000px;}
@media print{
.v0_c01197{vertical-align:0.000000pt;}
.ls0_c01197{letter-spacing:0.000000pt;}
.ws1_c01197{word-spacing:0.000000pt;}
.ws0_c01197{word-spacing:846.169813pt;}
.fs8_c01197{font-size:30.720000pt;}
.fse_c01197{font-size:35.840000pt;}
.fsd_c01197{font-size:38.400000pt;}
.fsa_c01197{font-size:40.960000pt;}
.fs6_c01197{font-size:43.520000pt;}
.fs3_c01197{font-size:46.080000pt;}
.fs4_c01197{font-size:48.640000pt;}
.fs5_c01197{font-size:51.200000pt;}
.fs2_c01197{font-size:53.760000pt;}
.fs1_c01197{font-size:56.320000pt;}
.fsb_c01197{font-size:58.880000pt;}
.fs7_c01197{font-size:61.440000pt;}
.fs0_c01197{font-size:64.000000pt;}
.fs9_c01197{font-size:66.560000pt;}
.fsc_c01197{font-size:69.120000pt;}
.y0_c01197{bottom:0.000000pt;}
.y80_c01197{bottom:43.520000pt;}
.y7f_c01197{bottom:44.800000pt;}
.y7d_c01197{bottom:46.720000pt;}
.y7e_c01197{bottom:47.360000pt;}
.y7c_c01197{bottom:48.000000pt;}
.y7b_c01197{bottom:48.640000pt;}
.y7a_c01197{bottom:49.920000pt;}
.y79_c01197{bottom:54.400000pt;}
.y77_c01197{bottom:83.840000pt;}
.y74_c01197{bottom:85.120000pt;}
.y78_c01197{bottom:85.760000pt;}
.y75_c01197{bottom:86.400000pt;}
.y76_c01197{bottom:87.040000pt;}
.y72_c01197{bottom:87.680000pt;}
.y73_c01197{bottom:88.320000pt;}
.y71_c01197{bottom:92.800000pt;}
.y70_c01197{bottom:122.880000pt;}
.y6e_c01197{bottom:124.800000pt;}
.y6f_c01197{bottom:127.360000pt;}
.y6d_c01197{bottom:129.280000pt;}
.y6c_c01197{bottom:161.280000pt;}
.y6b_c01197{bottom:161.920000pt;}
.y69_c01197{bottom:162.560000pt;}
.y6a_c01197{bottom:163.200000pt;}
.y68_c01197{bottom:167.680000pt;}
.y67_c01197{bottom:199.680000pt;}
.y65_c01197{bottom:201.600000pt;}
.y66_c01197{bottom:202.240000pt;}
.y64_c01197{bottom:206.080000pt;}
.y63_c01197{bottom:238.080000pt;}
.y62_c01197{bottom:238.720000pt;}
.y60_c01197{bottom:239.360000pt;}
.y61_c01197{bottom:240.640000pt;}
.y5f_c01197{bottom:243.200000pt;}
.y5e_c01197{bottom:278.400000pt;}
.y5d_c01197{bottom:281.600000pt;}
.y5b_c01197{bottom:305.280000pt;}
.y5c_c01197{bottom:305.920000pt;}
.y58_c01197{bottom:306.560000pt;}
.y59_c01197{bottom:307.840000pt;}
.y5a_c01197{bottom:308.480000pt;}
.y57_c01197{bottom:309.760000pt;}
.y55_c01197{bottom:343.680000pt;}
.y56_c01197{bottom:344.320000pt;}
.y53_c01197{bottom:346.880000pt;}
.y54_c01197{bottom:347.520000pt;}
.y52_c01197{bottom:380.800000pt;}
.y50_c01197{bottom:381.440000pt;}
.y51_c01197{bottom:382.080000pt;}
.y4e_c01197{bottom:382.720000pt;}
.y4f_c01197{bottom:384.640000pt;}
.y4d_c01197{bottom:385.920000pt;}
.y4c_c01197{bottom:419.200000pt;}
.y49_c01197{bottom:419.840000pt;}
.y4b_c01197{bottom:420.480000pt;}
.y4a_c01197{bottom:422.400000pt;}
.y48_c01197{bottom:423.680000pt;}
.y45_c01197{bottom:457.600000pt;}
.y47_c01197{bottom:458.880000pt;}
.y46_c01197{bottom:460.160000pt;}
.y44_c01197{bottom:462.080000pt;}
.y40_c01197{bottom:496.000000pt;}
.y43_c01197{bottom:496.640000pt;}
.y42_c01197{bottom:497.280000pt;}
.y3f_c01197{bottom:498.560000pt;}
.y41_c01197{bottom:499.200000pt;}
.y3b_c01197{bottom:533.760000pt;}
.y3d_c01197{bottom:534.400000pt;}
.y3a_c01197{bottom:536.320000pt;}
.y3e_c01197{bottom:536.960000pt;}
.y3c_c01197{bottom:537.600000pt;}
.y36_c01197{bottom:572.160000pt;}
.y35_c01197{bottom:574.080000pt;}
.y39_c01197{bottom:574.720000pt;}
.y38_c01197{bottom:575.360000pt;}
.y37_c01197{bottom:576.000000pt;}
.y31_c01197{bottom:610.560000pt;}
.y32_c01197{bottom:611.200000pt;}
.y30_c01197{bottom:612.480000pt;}
.y33_c01197{bottom:613.120000pt;}
.y34_c01197{bottom:613.760000pt;}
.y2c_c01197{bottom:648.960000pt;}
.y2b_c01197{bottom:650.240000pt;}
.y2d_c01197{bottom:650.880000pt;}
.y2f_c01197{bottom:651.520000pt;}
.y2e_c01197{bottom:652.800000pt;}
.y27_c01197{bottom:686.720000pt;}
.y26_c01197{bottom:688.000000pt;}
.y2a_c01197{bottom:689.280000pt;}
.y29_c01197{bottom:691.200000pt;}
.y28_c01197{bottom:691.840000pt;}
.y20_c01197{bottom:725.760000pt;}
.y21_c01197{bottom:726.400000pt;}
.y23_c01197{bottom:728.320000pt;}
.y22_c01197{bottom:728.960000pt;}
.y24_c01197{bottom:729.600000pt;}
.y25_c01197{bottom:730.240000pt;}
.y1a_c01197{bottom:763.520000pt;}
.y1b_c01197{bottom:764.160000pt;}
.y1c_c01197{bottom:764.800000pt;}
.y1e_c01197{bottom:766.080000pt;}
.y1f_c01197{bottom:766.720000pt;}
.y1d_c01197{bottom:767.360000pt;}
.y15_c01197{bottom:801.280000pt;}
.y14_c01197{bottom:801.920000pt;}
.y18_c01197{bottom:803.840000pt;}
.y16_c01197{bottom:805.120000pt;}
.y17_c01197{bottom:805.760000pt;}
.y19_c01197{bottom:806.400000pt;}
.yd_c01197{bottom:839.680000pt;}
.ye_c01197{bottom:840.320000pt;}
.y11_c01197{bottom:842.240000pt;}
.yf_c01197{bottom:842.880000pt;}
.y10_c01197{bottom:843.520000pt;}
.y12_c01197{bottom:844.800000pt;}
.y13_c01197{bottom:845.440000pt;}
.y6_c01197{bottom:877.440000pt;}
.y7_c01197{bottom:878.080000pt;}
.y8_c01197{bottom:878.720000pt;}
.y9_c01197{bottom:880.640000pt;}
.yc_c01197{bottom:881.280000pt;}
.ya_c01197{bottom:881.920000pt;}
.yb_c01197{bottom:883.200000pt;}
.y2_c01197{bottom:915.840000pt;}
.y3_c01197{bottom:916.480000pt;}
.y4_c01197{bottom:919.040000pt;}
.y5_c01197{bottom:920.960000pt;}
.y1_c01197{bottom:997.120000pt;}
.ha_c01197{height:27.645000pt;}
.h10_c01197{height:32.252500pt;}
.hf_c01197{height:34.556250pt;}
.hc_c01197{height:36.860000pt;}
.h8_c01197{height:39.163750pt;}
.h5_c01197{height:41.467500pt;}
.h6_c01197{height:43.771250pt;}
.h7_c01197{height:46.075000pt;}
.h4_c01197{height:48.378750pt;}
.h3_c01197{height:50.682500pt;}
.hd_c01197{height:52.986250pt;}
.h9_c01197{height:55.290000pt;}
.h2_c01197{height:57.593750pt;}
.hb_c01197{height:59.897500pt;}
.he_c01197{height:62.201250pt;}
.h0_c01197{height:1026.560000pt;}
.h1_c01197{height:1026.666667pt;}
.w0_c01197{width:691.200000pt;}
.w1_c01197{width:691.333333pt;}
.x0_c01197{left:0.000000pt;}
.xb_c01197{left:57.600000pt;}
.x2_c01197{left:58.880000pt;}
.xe_c01197{left:129.280000pt;}
.xc_c01197{left:131.200000pt;}
.x3_c01197{left:132.480000pt;}
.x26_c01197{left:167.680000pt;}
.x15_c01197{left:195.840000pt;}
.x1d_c01197{left:205.440000pt;}
.x4_c01197{left:206.720000pt;}
.x1f_c01197{left:215.040000pt;}
.x16_c01197{left:243.840000pt;}
.x22_c01197{left:262.400000pt;}
.x5_c01197{left:264.320000pt;}
.x17_c01197{left:291.840000pt;}
.x23_c01197{left:302.080000pt;}
.xa_c01197{left:340.480000pt;}
.x12_c01197{left:357.760000pt;}
.x18_c01197{left:369.280000pt;}
.x24_c01197{left:378.240000pt;}
.x19_c01197{left:407.680000pt;}
.x25_c01197{left:426.880000pt;}
.x20_c01197{left:474.880000pt;}
.x6_c01197{left:476.160000pt;}
.x13_c01197{left:485.760000pt;}
.x11_c01197{left:496.000000pt;}
.x14_c01197{left:504.960000pt;}
.xf_c01197{left:506.240000pt;}
.x1c_c01197{left:522.880000pt;}
.x10_c01197{left:553.600000pt;}
.x7_c01197{left:554.880000pt;}
.x21_c01197{left:582.400000pt;}
.x8_c01197{left:583.680000pt;}
.x1e_c01197{left:592.000000pt;}
.x1_c01197{left:605.440000pt;}
.x9_c01197{left:613.120000pt;}
.x1b_c01197{left:620.800000pt;}
.xd_c01197{left:622.080000pt;}
.x1a_c01197{left:639.360000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_786203a95cdf0a3e686d6567.woff2')format("woff");}.ff1_c01198{font-family:ff1_c01198;line-height:1.109863;font-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_c01198{transform:matrix(0.096625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096625,0.000000,0.000000,0.250000,0,0);}
.m47_c01198{transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);}
.m28_c01198{transform:matrix(0.218725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218725,0.000000,0.000000,0.250000,0,0);}
.m2_c01198{transform:matrix(0.222275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222275,0.000000,0.000000,0.250000,0,0);}
.m4b_c01198{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m46_c01198{transform:matrix(0.235600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235600,0.000000,0.000000,0.250000,0,0);}
.m6_c01198{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m8_c01198{transform:matrix(0.237825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237825,0.000000,0.000000,0.250000,0,0);}
.m57_c01198{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m45_c01198{transform:matrix(0.241225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241225,0.000000,0.000000,0.250000,0,0);}
.m25_c01198{transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);}
.m17_c01198{transform:matrix(0.245450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245450,0.000000,0.000000,0.250000,0,0);}
.m35_c01198{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m10_c01198{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);}
.m56_c01198{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m15_c01198{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);}
.m53_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);}
.mb_c01198{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);}
.m2a_c01198{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01198{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m0_c01198{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);}
.m2d_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);}
.m49_c01198{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m20_c01198{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.me_c01198{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);}
.m40_c01198{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m14_c01198{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m4_c01198{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m18_c01198{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.ma_c01198{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m23_c01198{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m52_c01198{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01198{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mf_c01198{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01198{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m21_c01198{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01198{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m5_c01198{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mc_c01198{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m24_c01198{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m34_c01198{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m33_c01198{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.md_c01198{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);}
.m30_c01198{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m27_c01198{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1_c01198{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_c01198{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);}
.m5a_c01198{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m7_c01198{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);}
.m4d_c01198{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m54_c01198{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);}
.m4f_c01198{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m16_c01198{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01198{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01198{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_c01198{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);}
.m48_c01198{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m58_c01198{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m29_c01198{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);}
.m4c_c01198{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);}
.m3a_c01198{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01198{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m50_c01198{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);}
.m2c_c01198{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);}
.m51_c01198{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);}
.m32_c01198{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m59_c01198{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m9_c01198{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01198{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);}
.m3b_c01198{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01198{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m37_c01198{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);}
.m26_c01198{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m43_c01198{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m4e_c01198{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);}
.m39_c01198{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);}
.m1d_c01198{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m42_c01198{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);}
.m2f_c01198{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01198{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);}
.m22_c01198{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m3_c01198{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);}
.m19_c01198{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m41_c01198{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m12_c01198{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01198{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01198{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01198{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m36_c01198{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);}
.m38_c01198{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.m44_c01198{transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);}
.v2_c01198{vertical-align:-5.760000px;}
.v1_c01198{vertical-align:-2.880000px;}
.v0_c01198{vertical-align:0.000000px;}
.ls1_c01198{letter-spacing:0.000000px;}
.ls0_c01198{letter-spacing:73.086960px;}
.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;}
}
.ws1_c01198{word-spacing:0.000000px;}
.ws0_c01198{word-spacing:34.366320px;}
.fc0_c01198{color:transparent;}
.fs12_c01198{font-size:14.400000px;}
.fs13_c01198{font-size:17.280000px;}
.fs11_c01198{font-size:23.040000px;}
.fsd_c01198{font-size:34.560000px;}
.fs3_c01198{font-size:37.440000px;}
.fs10_c01198{font-size:43.200000px;}
.fse_c01198{font-size:46.080000px;}
.fs6_c01198{font-size:48.960000px;}
.fsb_c01198{font-size:51.840000px;}
.fs5_c01198{font-size:54.720000px;}
.fsa_c01198{font-size:57.600000px;}
.fs1_c01198{font-size:60.480000px;}
.fs4_c01198{font-size:63.360000px;}
.fs7_c01198{font-size:66.240000px;}
.fs9_c01198{font-size:69.120000px;}
.fs0_c01198{font-size:72.000000px;}
.fs8_c01198{font-size:74.880000px;}
.fs2_c01198{font-size:77.760000px;}
.fsc_c01198{font-size:83.520000px;}
.fsf_c01198{font-size:141.120000px;}
.y0_c01198{bottom:0.000000px;}
.ybd_c01198{bottom:139.680000px;}
.ybf_c01198{bottom:141.120000px;}
.ybe_c01198{bottom:141.840000px;}
.ybc_c01198{bottom:142.560000px;}
.ybb_c01198{bottom:159.120000px;}
.yba_c01198{bottom:161.280000px;}
.yb9_c01198{bottom:162.000000px;}
.yb8_c01198{bottom:162.720000px;}
.yb6_c01198{bottom:163.440000px;}
.yb5_c01198{bottom:164.160000px;}
.yb7_c01198{bottom:164.880000px;}
.yb3_c01198{bottom:167.040000px;}
.yb4_c01198{bottom:167.760000px;}
.yb2_c01198{bottom:168.480000px;}
.yb1_c01198{bottom:180.720000px;}
.yb0_c01198{bottom:182.880000px;}
.yae_c01198{bottom:183.600000px;}
.yaf_c01198{bottom:184.320000px;}
.yad_c01198{bottom:185.040000px;}
.yac_c01198{bottom:185.760000px;}
.yab_c01198{bottom:187.200000px;}
.yaa_c01198{bottom:190.080000px;}
.ya9_c01198{bottom:192.240000px;}
.ya8_c01198{bottom:203.040000px;}
.ya7_c01198{bottom:203.760000px;}
.ya5_c01198{bottom:204.480000px;}
.ya4_c01198{bottom:205.200000px;}
.ya6_c01198{bottom:205.920000px;}
.ya2_c01198{bottom:206.640000px;}
.ya3_c01198{bottom:207.360000px;}
.ya1_c01198{bottom:208.080000px;}
.ya0_c01198{bottom:210.960000px;}
.y9f_c01198{bottom:212.400000px;}
.y9e_c01198{bottom:224.640000px;}
.y9d_c01198{bottom:226.080000px;}
.y9c_c01198{bottom:226.800000px;}
.y9b_c01198{bottom:227.520000px;}
.y9a_c01198{bottom:228.240000px;}
.y99_c01198{bottom:228.960000px;}
.y98_c01198{bottom:231.120000px;}
.y97_c01198{bottom:232.560000px;}
.y96_c01198{bottom:245.520000px;}
.y95_c01198{bottom:246.240000px;}
.y93_c01198{bottom:247.680000px;}
.y92_c01198{bottom:248.400000px;}
.y90_c01198{bottom:249.120000px;}
.y94_c01198{bottom:249.840000px;}
.y8f_c01198{bottom:251.280000px;}
.y91_c01198{bottom:252.000000px;}
.y8e_c01198{bottom:254.160000px;}
.y8d_c01198{bottom:254.880000px;}
.y8c_c01198{bottom:267.120000px;}
.y8b_c01198{bottom:268.560000px;}
.y89_c01198{bottom:269.280000px;}
.y8a_c01198{bottom:270.000000px;}
.y88_c01198{bottom:270.720000px;}
.y87_c01198{bottom:271.440000px;}
.y86_c01198{bottom:272.880000px;}
.y85_c01198{bottom:274.320000px;}
.y84_c01198{bottom:288.720000px;}
.y83_c01198{bottom:289.440000px;}
.y81_c01198{bottom:290.880000px;}
.y82_c01198{bottom:291.600000px;}
.y7f_c01198{bottom:292.320000px;}
.y80_c01198{bottom:293.040000px;}
.y7e_c01198{bottom:293.760000px;}
.y7d_c01198{bottom:295.200000px;}
.y7c_c01198{bottom:311.040000px;}
.y7b_c01198{bottom:311.760000px;}
.y79_c01198{bottom:312.480000px;}
.y7a_c01198{bottom:313.200000px;}
.y77_c01198{bottom:316.080000px;}
.y78_c01198{bottom:316.800000px;}
.y76_c01198{bottom:333.360000px;}
.y75_c01198{bottom:334.080000px;}
.y72_c01198{bottom:335.520000px;}
.y73_c01198{bottom:336.240000px;}
.y74_c01198{bottom:337.680000px;}
.y71_c01198{bottom:338.400000px;}
.y70_c01198{bottom:339.120000px;}
.y6f_c01198{bottom:340.560000px;}
.y6e_c01198{bottom:354.240000px;}
.y6d_c01198{bottom:355.680000px;}
.y6c_c01198{bottom:357.120000px;}
.y6a_c01198{bottom:357.840000px;}
.y6b_c01198{bottom:358.560000px;}
.y69_c01198{bottom:362.160000px;}
.y68_c01198{bottom:383.040000px;}
.y64_c01198{bottom:385.200000px;}
.y63_c01198{bottom:386.640000px;}
.y67_c01198{bottom:388.800000px;}
.y66_c01198{bottom:390.240000px;}
.y65_c01198{bottom:390.960000px;}
.y62_c01198{bottom:391.680000px;}
.y61_c01198{bottom:392.400000px;}
.y60_c01198{bottom:429.840000px;}
.y5f_c01198{bottom:430.560000px;}
.y5b_c01198{bottom:432.000000px;}
.y5d_c01198{bottom:432.720000px;}
.y5c_c01198{bottom:433.440000px;}
.y5a_c01198{bottom:434.160000px;}
.y59_c01198{bottom:434.880000px;}
.y5e_c01198{bottom:436.320000px;}
.y58_c01198{bottom:462.240000px;}
.y57_c01198{bottom:462.960000px;}
.y52_c01198{bottom:464.400000px;}
.y53_c01198{bottom:465.120000px;}
.y55_c01198{bottom:465.840000px;}
.y56_c01198{bottom:466.560000px;}
.y54_c01198{bottom:467.280000px;}
.y4f_c01198{bottom:494.640000px;}
.y50_c01198{bottom:495.360000px;}
.y4c_c01198{bottom:496.080000px;}
.y4d_c01198{bottom:496.800000px;}
.y51_c01198{bottom:497.520000px;}
.y4e_c01198{bottom:498.240000px;}
.y4b_c01198{bottom:498.960000px;}
.y4a_c01198{bottom:499.680000px;}
.y48_c01198{bottom:539.280000px;}
.y49_c01198{bottom:540.000000px;}
.y45_c01198{bottom:548.640000px;}
.y44_c01198{bottom:550.080000px;}
.y42_c01198{bottom:551.520000px;}
.y43_c01198{bottom:555.120000px;}
.y46_c01198{bottom:559.440000px;}
.y47_c01198{bottom:561.600000px;}
.y40_c01198{bottom:602.640000px;}
.y3b_c01198{bottom:603.360000px;}
.y3f_c01198{bottom:605.520000px;}
.y41_c01198{bottom:608.400000px;}
.y3a_c01198{bottom:613.440000px;}
.y39_c01198{bottom:614.160000px;}
.y3c_c01198{bottom:626.400000px;}
.y3e_c01198{bottom:627.120000px;}
.y3d_c01198{bottom:627.840000px;}
.y34_c01198{bottom:665.280000px;}
.y36_c01198{bottom:666.000000px;}
.y37_c01198{bottom:667.440000px;}
.y33_c01198{bottom:668.160000px;}
.y35_c01198{bottom:669.600000px;}
.y38_c01198{bottom:670.320000px;}
.y2e_c01198{bottom:707.760000px;}
.y2d_c01198{bottom:709.200000px;}
.y30_c01198{bottom:709.920000px;}
.y32_c01198{bottom:710.640000px;}
.y31_c01198{bottom:712.080000px;}
.y2f_c01198{bottom:712.800000px;}
.y2c_c01198{bottom:750.240000px;}
.y2b_c01198{bottom:753.840000px;}
.y26_c01198{bottom:781.920000px;}
.y29_c01198{bottom:784.080000px;}
.y25_c01198{bottom:784.800000px;}
.y27_c01198{bottom:785.520000px;}
.y2a_c01198{bottom:786.240000px;}
.y28_c01198{bottom:786.960000px;}
.y1f_c01198{bottom:825.120000px;}
.y21_c01198{bottom:825.840000px;}
.y1e_c01198{bottom:827.280000px;}
.y23_c01198{bottom:828.000000px;}
.y20_c01198{bottom:829.440000px;}
.y22_c01198{bottom:830.160000px;}
.y24_c01198{bottom:831.600000px;}
.y1c_c01198{bottom:869.760000px;}
.y1b_c01198{bottom:870.480000px;}
.y1d_c01198{bottom:872.640000px;}
.y15_c01198{bottom:900.000000px;}
.y14_c01198{bottom:901.440000px;}
.y16_c01198{bottom:902.160000px;}
.y17_c01198{bottom:904.320000px;}
.y18_c01198{bottom:905.040000px;}
.y19_c01198{bottom:905.760000px;}
.y1a_c01198{bottom:906.480000px;}
.ye_c01198{bottom:942.480000px;}
.yf_c01198{bottom:943.200000px;}
.y10_c01198{bottom:945.360000px;}
.y13_c01198{bottom:946.800000px;}
.y11_c01198{bottom:948.240000px;}
.y12_c01198{bottom:948.960000px;}
.y9_c01198{bottom:985.680000px;}
.y8_c01198{bottom:987.120000px;}
.yb_c01198{bottom:987.840000px;}
.ya_c01198{bottom:990.720000px;}
.yc_c01198{bottom:992.160000px;}
.yd_c01198{bottom:992.880000px;}
.y3_c01198{bottom:1028.880000px;}
.y2_c01198{bottom:1030.320000px;}
.y5_c01198{bottom:1031.760000px;}
.y4_c01198{bottom:1033.920000px;}
.y7_c01198{bottom:1034.640000px;}
.y6_c01198{bottom:1035.360000px;}
.y1_c01198{bottom:1117.440000px;}
.h14_c01198{height:12.958594px;}
.h15_c01198{height:15.550313px;}
.h13_c01198{height:20.733750px;}
.hf_c01198{height:31.100625px;}
.h5_c01198{height:33.692344px;}
.h12_c01198{height:38.875781px;}
.h10_c01198{height:41.467500px;}
.h8_c01198{height:44.059219px;}
.hd_c01198{height:46.650937px;}
.h7_c01198{height:49.242656px;}
.hc_c01198{height:51.834375px;}
.h3_c01198{height:54.426094px;}
.h16_c01198{height:56.441250px;}
.h6_c01198{height:57.017812px;}
.h9_c01198{height:59.609531px;}
.hb_c01198{height:62.201250px;}
.h2_c01198{height:64.792969px;}
.ha_c01198{height:67.384687px;}
.h4_c01198{height:69.976406px;}
.he_c01198{height:75.159844px;}
.h11_c01198{height:126.994219px;}
.h0_c01198{height:1153.440000px;}
.h1_c01198{height:1153.500000px;}
.w0_c01198{width:777.600000px;}
.w1_c01198{width:777.750000px;}
.x0_c01198{left:0.000000px;}
.x21_c01198{left:76.320000px;}
.x14_c01198{left:77.760000px;}
.x2_c01198{left:79.200000px;}
.x49_c01198{left:87.840000px;}
.x31_c01198{left:97.200000px;}
.x3b_c01198{left:105.840000px;}
.x45_c01198{left:108.000000px;}
.x2a_c01198{left:116.640000px;}
.x4a_c01198{left:118.080000px;}
.x4d_c01198{left:128.160000px;}
.x32_c01198{left:149.760000px;}
.xb_c01198{left:159.840000px;}
.x3_c01198{left:162.000000px;}
.x22_c01198{left:172.800000px;}
.x2b_c01198{left:181.440000px;}
.x41_c01198{left:192.240000px;}
.x13_c01198{left:203.040000px;}
.x2c_c01198{left:222.480000px;}
.x33_c01198{left:223.920000px;}
.x4b_c01198{left:234.000000px;}
.x1d_c01198{left:245.520000px;}
.x23_c01198{left:254.160000px;}
.x4_c01198{left:257.040000px;}
.x42_c01198{left:265.680000px;}
.xc_c01198{left:267.840000px;}
.x2d_c01198{left:276.480000px;}
.x1e_c01198{left:287.280000px;}
.x2f_c01198{left:288.720000px;}
.x20_c01198{left:298.080000px;}
.x5_c01198{left:299.520000px;}
.x3c_c01198{left:308.160000px;}
.x34_c01198{left:309.600000px;}
.x2e_c01198{left:318.240000px;}
.x30_c01198{left:319.680000px;}
.x24_c01198{left:321.120000px;}
.x35_c01198{left:331.200000px;}
.x43_c01198{left:340.560000px;}
.x18_c01198{left:342.000000px;}
.xd_c01198{left:352.080000px;}
.x4f_c01198{left:354.240000px;}
.x3d_c01198{left:373.680000px;}
.x15_c01198{left:384.480000px;}
.x27_c01198{left:385.920000px;}
.x19_c01198{left:396.720000px;}
.x46_c01198{left:406.800000px;}
.xe_c01198{left:408.240000px;}
.x44_c01198{left:417.600000px;}
.x36_c01198{left:419.040000px;}
.x1f_c01198{left:428.400000px;}
.x16_c01198{left:439.920000px;}
.x3e_c01198{left:448.560000px;}
.x37_c01198{left:450.720000px;}
.x10_c01198{left:460.800000px;}
.x38_c01198{left:482.400000px;}
.x1a_c01198{left:493.920000px;}
.xf_c01198{left:499.680000px;}
.x39_c01198{left:524.880000px;}
.x47_c01198{left:526.320000px;}
.x3f_c01198{left:546.480000px;}
.x11_c01198{left:548.640000px;}
.x6_c01198{left:550.080000px;}
.x25_c01198{left:559.440000px;}
.x4e_c01198{left:570.240000px;}
.x50_c01198{left:579.600000px;}
.x4c_c01198{left:581.760000px;}
.x17_c01198{left:601.920000px;}
.x7_c01198{left:603.360000px;}
.x26_c01198{left:613.440000px;}
.x40_c01198{left:634.320000px;}
.x1b_c01198{left:635.760000px;}
.x9_c01198{left:637.200000px;}
.x28_c01198{left:658.800000px;}
.xa_c01198{left:669.600000px;}
.x48_c01198{left:678.960000px;}
.x1_c01198{left:684.000000px;}
.x29_c01198{left:699.840000px;}
.x3a_c01198{left:701.280000px;}
.x1c_c01198{left:711.360000px;}
.x8_c01198{left:713.520000px;}
.x12_c01198{left:732.240000px;}
@media print{
.v2_c01198{vertical-align:-5.120000pt;}
.v1_c01198{vertical-align:-2.560000pt;}
.v0_c01198{vertical-align:0.000000pt;}
.ls1_c01198{letter-spacing:0.000000pt;}
.ls0_c01198{letter-spacing:64.966187pt;}
.ws1_c01198{word-spacing:0.000000pt;}
.ws0_c01198{word-spacing:30.547840pt;}
.fs12_c01198{font-size:12.800000pt;}
.fs13_c01198{font-size:15.360000pt;}
.fs11_c01198{font-size:20.480000pt;}
.fsd_c01198{font-size:30.720000pt;}
.fs3_c01198{font-size:33.280000pt;}
.fs10_c01198{font-size:38.400000pt;}
.fse_c01198{font-size:40.960000pt;}
.fs6_c01198{font-size:43.520000pt;}
.fsb_c01198{font-size:46.080000pt;}
.fs5_c01198{font-size:48.640000pt;}
.fsa_c01198{font-size:51.200000pt;}
.fs1_c01198{font-size:53.760000pt;}
.fs4_c01198{font-size:56.320000pt;}
.fs7_c01198{font-size:58.880000pt;}
.fs9_c01198{font-size:61.440000pt;}
.fs0_c01198{font-size:64.000000pt;}
.fs8_c01198{font-size:66.560000pt;}
.fs2_c01198{font-size:69.120000pt;}
.fsc_c01198{font-size:74.240000pt;}
.fsf_c01198{font-size:125.440000pt;}
.y0_c01198{bottom:0.000000pt;}
.ybd_c01198{bottom:124.160000pt;}
.ybf_c01198{bottom:125.440000pt;}
.ybe_c01198{bottom:126.080000pt;}
.ybc_c01198{bottom:126.720000pt;}
.ybb_c01198{bottom:141.440000pt;}
.yba_c01198{bottom:143.360000pt;}
.yb9_c01198{bottom:144.000000pt;}
.yb8_c01198{bottom:144.640000pt;}
.yb6_c01198{bottom:145.280000pt;}
.yb5_c01198{bottom:145.920000pt;}
.yb7_c01198{bottom:146.560000pt;}
.yb3_c01198{bottom:148.480000pt;}
.yb4_c01198{bottom:149.120000pt;}
.yb2_c01198{bottom:149.760000pt;}
.yb1_c01198{bottom:160.640000pt;}
.yb0_c01198{bottom:162.560000pt;}
.yae_c01198{bottom:163.200000pt;}
.yaf_c01198{bottom:163.840000pt;}
.yad_c01198{bottom:164.480000pt;}
.yac_c01198{bottom:165.120000pt;}
.yab_c01198{bottom:166.400000pt;}
.yaa_c01198{bottom:168.960000pt;}
.ya9_c01198{bottom:170.880000pt;}
.ya8_c01198{bottom:180.480000pt;}
.ya7_c01198{bottom:181.120000pt;}
.ya5_c01198{bottom:181.760000pt;}
.ya4_c01198{bottom:182.400000pt;}
.ya6_c01198{bottom:183.040000pt;}
.ya2_c01198{bottom:183.680000pt;}
.ya3_c01198{bottom:184.320000pt;}
.ya1_c01198{bottom:184.960000pt;}
.ya0_c01198{bottom:187.520000pt;}
.y9f_c01198{bottom:188.800000pt;}
.y9e_c01198{bottom:199.680000pt;}
.y9d_c01198{bottom:200.960000pt;}
.y9c_c01198{bottom:201.600000pt;}
.y9b_c01198{bottom:202.240000pt;}
.y9a_c01198{bottom:202.880000pt;}
.y99_c01198{bottom:203.520000pt;}
.y98_c01198{bottom:205.440000pt;}
.y97_c01198{bottom:206.720000pt;}
.y96_c01198{bottom:218.240000pt;}
.y95_c01198{bottom:218.880000pt;}
.y93_c01198{bottom:220.160000pt;}
.y92_c01198{bottom:220.800000pt;}
.y90_c01198{bottom:221.440000pt;}
.y94_c01198{bottom:222.080000pt;}
.y8f_c01198{bottom:223.360000pt;}
.y91_c01198{bottom:224.000000pt;}
.y8e_c01198{bottom:225.920000pt;}
.y8d_c01198{bottom:226.560000pt;}
.y8c_c01198{bottom:237.440000pt;}
.y8b_c01198{bottom:238.720000pt;}
.y89_c01198{bottom:239.360000pt;}
.y8a_c01198{bottom:240.000000pt;}
.y88_c01198{bottom:240.640000pt;}
.y87_c01198{bottom:241.280000pt;}
.y86_c01198{bottom:242.560000pt;}
.y85_c01198{bottom:243.840000pt;}
.y84_c01198{bottom:256.640000pt;}
.y83_c01198{bottom:257.280000pt;}
.y81_c01198{bottom:258.560000pt;}
.y82_c01198{bottom:259.200000pt;}
.y7f_c01198{bottom:259.840000pt;}
.y80_c01198{bottom:260.480000pt;}
.y7e_c01198{bottom:261.120000pt;}
.y7d_c01198{bottom:262.400000pt;}
.y7c_c01198{bottom:276.480000pt;}
.y7b_c01198{bottom:277.120000pt;}
.y79_c01198{bottom:277.760000pt;}
.y7a_c01198{bottom:278.400000pt;}
.y77_c01198{bottom:280.960000pt;}
.y78_c01198{bottom:281.600000pt;}
.y76_c01198{bottom:296.320000pt;}
.y75_c01198{bottom:296.960000pt;}
.y72_c01198{bottom:298.240000pt;}
.y73_c01198{bottom:298.880000pt;}
.y74_c01198{bottom:300.160000pt;}
.y71_c01198{bottom:300.800000pt;}
.y70_c01198{bottom:301.440000pt;}
.y6f_c01198{bottom:302.720000pt;}
.y6e_c01198{bottom:314.880000pt;}
.y6d_c01198{bottom:316.160000pt;}
.y6c_c01198{bottom:317.440000pt;}
.y6a_c01198{bottom:318.080000pt;}
.y6b_c01198{bottom:318.720000pt;}
.y69_c01198{bottom:321.920000pt;}
.y68_c01198{bottom:340.480000pt;}
.y64_c01198{bottom:342.400000pt;}
.y63_c01198{bottom:343.680000pt;}
.y67_c01198{bottom:345.600000pt;}
.y66_c01198{bottom:346.880000pt;}
.y65_c01198{bottom:347.520000pt;}
.y62_c01198{bottom:348.160000pt;}
.y61_c01198{bottom:348.800000pt;}
.y60_c01198{bottom:382.080000pt;}
.y5f_c01198{bottom:382.720000pt;}
.y5b_c01198{bottom:384.000000pt;}
.y5d_c01198{bottom:384.640000pt;}
.y5c_c01198{bottom:385.280000pt;}
.y5a_c01198{bottom:385.920000pt;}
.y59_c01198{bottom:386.560000pt;}
.y5e_c01198{bottom:387.840000pt;}
.y58_c01198{bottom:410.880000pt;}
.y57_c01198{bottom:411.520000pt;}
.y52_c01198{bottom:412.800000pt;}
.y53_c01198{bottom:413.440000pt;}
.y55_c01198{bottom:414.080000pt;}
.y56_c01198{bottom:414.720000pt;}
.y54_c01198{bottom:415.360000pt;}
.y4f_c01198{bottom:439.680000pt;}
.y50_c01198{bottom:440.320000pt;}
.y4c_c01198{bottom:440.960000pt;}
.y4d_c01198{bottom:441.600000pt;}
.y51_c01198{bottom:442.240000pt;}
.y4e_c01198{bottom:442.880000pt;}
.y4b_c01198{bottom:443.520000pt;}
.y4a_c01198{bottom:444.160000pt;}
.y48_c01198{bottom:479.360000pt;}
.y49_c01198{bottom:480.000000pt;}
.y45_c01198{bottom:487.680000pt;}
.y44_c01198{bottom:488.960000pt;}
.y42_c01198{bottom:490.240000pt;}
.y43_c01198{bottom:493.440000pt;}
.y46_c01198{bottom:497.280000pt;}
.y47_c01198{bottom:499.200000pt;}
.y40_c01198{bottom:535.680000pt;}
.y3b_c01198{bottom:536.320000pt;}
.y3f_c01198{bottom:538.240000pt;}
.y41_c01198{bottom:540.800000pt;}
.y3a_c01198{bottom:545.280000pt;}
.y39_c01198{bottom:545.920000pt;}
.y3c_c01198{bottom:556.800000pt;}
.y3e_c01198{bottom:557.440000pt;}
.y3d_c01198{bottom:558.080000pt;}
.y34_c01198{bottom:591.360000pt;}
.y36_c01198{bottom:592.000000pt;}
.y37_c01198{bottom:593.280000pt;}
.y33_c01198{bottom:593.920000pt;}
.y35_c01198{bottom:595.200000pt;}
.y38_c01198{bottom:595.840000pt;}
.y2e_c01198{bottom:629.120000pt;}
.y2d_c01198{bottom:630.400000pt;}
.y30_c01198{bottom:631.040000pt;}
.y32_c01198{bottom:631.680000pt;}
.y31_c01198{bottom:632.960000pt;}
.y2f_c01198{bottom:633.600000pt;}
.y2c_c01198{bottom:666.880000pt;}
.y2b_c01198{bottom:670.080000pt;}
.y26_c01198{bottom:695.040000pt;}
.y29_c01198{bottom:696.960000pt;}
.y25_c01198{bottom:697.600000pt;}
.y27_c01198{bottom:698.240000pt;}
.y2a_c01198{bottom:698.880000pt;}
.y28_c01198{bottom:699.520000pt;}
.y1f_c01198{bottom:733.440000pt;}
.y21_c01198{bottom:734.080000pt;}
.y1e_c01198{bottom:735.360000pt;}
.y23_c01198{bottom:736.000000pt;}
.y20_c01198{bottom:737.280000pt;}
.y22_c01198{bottom:737.920000pt;}
.y24_c01198{bottom:739.200000pt;}
.y1c_c01198{bottom:773.120000pt;}
.y1b_c01198{bottom:773.760000pt;}
.y1d_c01198{bottom:775.680000pt;}
.y15_c01198{bottom:800.000000pt;}
.y14_c01198{bottom:801.280000pt;}
.y16_c01198{bottom:801.920000pt;}
.y17_c01198{bottom:803.840000pt;}
.y18_c01198{bottom:804.480000pt;}
.y19_c01198{bottom:805.120000pt;}
.y1a_c01198{bottom:805.760000pt;}
.ye_c01198{bottom:837.760000pt;}
.yf_c01198{bottom:838.400000pt;}
.y10_c01198{bottom:840.320000pt;}
.y13_c01198{bottom:841.600000pt;}
.y11_c01198{bottom:842.880000pt;}
.y12_c01198{bottom:843.520000pt;}
.y9_c01198{bottom:876.160000pt;}
.y8_c01198{bottom:877.440000pt;}
.yb_c01198{bottom:878.080000pt;}
.ya_c01198{bottom:880.640000pt;}
.yc_c01198{bottom:881.920000pt;}
.yd_c01198{bottom:882.560000pt;}
.y3_c01198{bottom:914.560000pt;}
.y2_c01198{bottom:915.840000pt;}
.y5_c01198{bottom:917.120000pt;}
.y4_c01198{bottom:919.040000pt;}
.y7_c01198{bottom:919.680000pt;}
.y6_c01198{bottom:920.320000pt;}
.y1_c01198{bottom:993.280000pt;}
.h14_c01198{height:11.518750pt;}
.h15_c01198{height:13.822500pt;}
.h13_c01198{height:18.430000pt;}
.hf_c01198{height:27.645000pt;}
.h5_c01198{height:29.948750pt;}
.h12_c01198{height:34.556250pt;}
.h10_c01198{height:36.860000pt;}
.h8_c01198{height:39.163750pt;}
.hd_c01198{height:41.467500pt;}
.h7_c01198{height:43.771250pt;}
.hc_c01198{height:46.075000pt;}
.h3_c01198{height:48.378750pt;}
.h16_c01198{height:50.170000pt;}
.h6_c01198{height:50.682500pt;}
.h9_c01198{height:52.986250pt;}
.hb_c01198{height:55.290000pt;}
.h2_c01198{height:57.593750pt;}
.ha_c01198{height:59.897500pt;}
.h4_c01198{height:62.201250pt;}
.he_c01198{height:66.808750pt;}
.h11_c01198{height:112.883750pt;}
.h0_c01198{height:1025.280000pt;}
.h1_c01198{height:1025.333333pt;}
.w0_c01198{width:691.200000pt;}
.w1_c01198{width:691.333333pt;}
.x0_c01198{left:0.000000pt;}
.x21_c01198{left:67.840000pt;}
.x14_c01198{left:69.120000pt;}
.x2_c01198{left:70.400000pt;}
.x49_c01198{left:78.080000pt;}
.x31_c01198{left:86.400000pt;}
.x3b_c01198{left:94.080000pt;}
.x45_c01198{left:96.000000pt;}
.x2a_c01198{left:103.680000pt;}
.x4a_c01198{left:104.960000pt;}
.x4d_c01198{left:113.920000pt;}
.x32_c01198{left:133.120000pt;}
.xb_c01198{left:142.080000pt;}
.x3_c01198{left:144.000000pt;}
.x22_c01198{left:153.600000pt;}
.x2b_c01198{left:161.280000pt;}
.x41_c01198{left:170.880000pt;}
.x13_c01198{left:180.480000pt;}
.x2c_c01198{left:197.760000pt;}
.x33_c01198{left:199.040000pt;}
.x4b_c01198{left:208.000000pt;}
.x1d_c01198{left:218.240000pt;}
.x23_c01198{left:225.920000pt;}
.x4_c01198{left:228.480000pt;}
.x42_c01198{left:236.160000pt;}
.xc_c01198{left:238.080000pt;}
.x2d_c01198{left:245.760000pt;}
.x1e_c01198{left:255.360000pt;}
.x2f_c01198{left:256.640000pt;}
.x20_c01198{left:264.960000pt;}
.x5_c01198{left:266.240000pt;}
.x3c_c01198{left:273.920000pt;}
.x34_c01198{left:275.200000pt;}
.x2e_c01198{left:282.880000pt;}
.x30_c01198{left:284.160000pt;}
.x24_c01198{left:285.440000pt;}
.x35_c01198{left:294.400000pt;}
.x43_c01198{left:302.720000pt;}
.x18_c01198{left:304.000000pt;}
.xd_c01198{left:312.960000pt;}
.x4f_c01198{left:314.880000pt;}
.x3d_c01198{left:332.160000pt;}
.x15_c01198{left:341.760000pt;}
.x27_c01198{left:343.040000pt;}
.x19_c01198{left:352.640000pt;}
.x46_c01198{left:361.600000pt;}
.xe_c01198{left:362.880000pt;}
.x44_c01198{left:371.200000pt;}
.x36_c01198{left:372.480000pt;}
.x1f_c01198{left:380.800000pt;}
.x16_c01198{left:391.040000pt;}
.x3e_c01198{left:398.720000pt;}
.x37_c01198{left:400.640000pt;}
.x10_c01198{left:409.600000pt;}
.x38_c01198{left:428.800000pt;}
.x1a_c01198{left:439.040000pt;}
.xf_c01198{left:444.160000pt;}
.x39_c01198{left:466.560000pt;}
.x47_c01198{left:467.840000pt;}
.x3f_c01198{left:485.760000pt;}
.x11_c01198{left:487.680000pt;}
.x6_c01198{left:488.960000pt;}
.x25_c01198{left:497.280000pt;}
.x4e_c01198{left:506.880000pt;}
.x50_c01198{left:515.200000pt;}
.x4c_c01198{left:517.120000pt;}
.x17_c01198{left:535.040000pt;}
.x7_c01198{left:536.320000pt;}
.x26_c01198{left:545.280000pt;}
.x40_c01198{left:563.840000pt;}
.x1b_c01198{left:565.120000pt;}
.x9_c01198{left:566.400000pt;}
.x28_c01198{left:585.600000pt;}
.xa_c01198{left:595.200000pt;}
.x48_c01198{left:603.520000pt;}
.x1_c01198{left:608.000000pt;}
.x29_c01198{left:622.080000pt;}
.x3a_c01198{left:623.360000pt;}
.x1c_c01198{left:632.320000pt;}
.x8_c01198{left:634.240000pt;}
.x12_c01198{left:650.880000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f53c52cae10502192d5dff90.woff2')format("woff");}.ff1_c01199{font-family:ff1_c01199;line-height:1.109863;font-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_c01199{transform:matrix(0.228875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228875,0.000000,0.000000,0.250000,0,0);}
.m16_c01199{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);}
.m2b_c01199{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m10_c01199{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);}
.m2f_c01199{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);}
.m2d_c01199{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);}
.m20_c01199{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_c01199{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m24_c01199{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.md_c01199{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m21_c01199{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mb_c01199{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m5_c01199{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m25_c01199{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01199{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.me_c01199{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m18_c01199{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m12_c01199{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01199{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m31_c01199{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01199{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m37_c01199{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m23_c01199{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.ma_c01199{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m43_c01199{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01199{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m36_c01199{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m28_c01199{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);}
.m3d_c01199{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m40_c01199{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m15_c01199{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);}
.m45_c01199{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);}
.m46_c01199{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01199{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);}
.m38_c01199{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m22_c01199{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m19_c01199{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m0_c01199{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1_c01199{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m27_c01199{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01199{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01199{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);}
.m42_c01199{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01199{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);}
.m14_c01199{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m33_c01199{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);}
.m4_c01199{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01199{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m2_c01199{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.mf_c01199{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m34_c01199{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01199{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m8_c01199{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01199{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);}
.m7_c01199{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m3_c01199{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01199{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m48_c01199{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m11_c01199{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);}
.m47_c01199{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);}
.m6_c01199{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m29_c01199{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01199{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m13_c01199{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m17_c01199{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);}
.m41_c01199{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);}
.m39_c01199{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m30_c01199{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m9_c01199{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.m35_c01199{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01199{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01199{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.m32_c01199{transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);}
.m49_c01199{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.v4_c01199{vertical-align:-14.400000px;}
.v5_c01199{vertical-align:-5.760000px;}
.v1_c01199{vertical-align:-2.880000px;}
.v0_c01199{vertical-align:0.000000px;}
.v3_c01199{vertical-align:2.880000px;}
.v2_c01199{vertical-align:5.760000px;}
.v6_c01199{vertical-align:14.400000px;}
.ls0_c01199{letter-spacing:0.000000px;}
.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;}
}
.ws4_c01199{word-spacing:-3.718800px;}
.ws6_c01199{word-spacing:0.000000px;}
.ws1_c01199{word-spacing:0.337200px;}
.ws3_c01199{word-spacing:13.628400px;}
.ws5_c01199{word-spacing:25.597200px;}
.ws0_c01199{word-spacing:200.384400px;}
.ws2_c01199{word-spacing:756.540000px;}
.fc0_c01199{color:transparent;}
.fsb_c01199{font-size:34.560000px;}
.fs8_c01199{font-size:37.440000px;}
.fs5_c01199{font-size:43.200000px;}
.fs1_c01199{font-size:46.080000px;}
.fs7_c01199{font-size:48.960000px;}
.fs3_c01199{font-size:51.840000px;}
.fs9_c01199{font-size:54.720000px;}
.fs6_c01199{font-size:57.600000px;}
.fs2_c01199{font-size:60.480000px;}
.fsd_c01199{font-size:63.360000px;}
.fsa_c01199{font-size:69.120000px;}
.fs4_c01199{font-size:72.000000px;}
.fs0_c01199{font-size:74.880000px;}
.fsc_c01199{font-size:77.760000px;}
.y0_c01199{bottom:0.000000px;}
.y8d_c01199{bottom:41.760000px;}
.y8f_c01199{bottom:42.480000px;}
.y8e_c01199{bottom:43.920000px;}
.y8b_c01199{bottom:44.640000px;}
.y8c_c01199{bottom:46.080000px;}
.y89_c01199{bottom:46.800000px;}
.y8a_c01199{bottom:49.680000px;}
.y88_c01199{bottom:51.840000px;}
.y87_c01199{bottom:84.960000px;}
.y86_c01199{bottom:85.680000px;}
.y85_c01199{bottom:87.840000px;}
.y83_c01199{bottom:88.560000px;}
.y84_c01199{bottom:92.160000px;}
.y82_c01199{bottom:94.320000px;}
.y80_c01199{bottom:128.160000px;}
.y7f_c01199{bottom:128.880000px;}
.y81_c01199{bottom:129.600000px;}
.y7d_c01199{bottom:130.320000px;}
.y7b_c01199{bottom:131.760000px;}
.y7e_c01199{bottom:133.200000px;}
.y7c_c01199{bottom:134.640000px;}
.y7a_c01199{bottom:136.800000px;}
.y79_c01199{bottom:169.200000px;}
.y78_c01199{bottom:171.360000px;}
.y76_c01199{bottom:172.080000px;}
.y77_c01199{bottom:172.800000px;}
.y75_c01199{bottom:173.520000px;}
.y74_c01199{bottom:174.240000px;}
.y73_c01199{bottom:179.280000px;}
.y72_c01199{bottom:214.560000px;}
.y6e_c01199{bottom:215.280000px;}
.y6f_c01199{bottom:216.000000px;}
.y71_c01199{bottom:216.720000px;}
.y70_c01199{bottom:217.440000px;}
.y6d_c01199{bottom:221.040000px;}
.y6b_c01199{bottom:257.040000px;}
.y69_c01199{bottom:257.760000px;}
.y6a_c01199{bottom:259.200000px;}
.y6c_c01199{bottom:259.920000px;}
.y68_c01199{bottom:262.080000px;}
.y67_c01199{bottom:264.240000px;}
.y66_c01199{bottom:300.240000px;}
.y62_c01199{bottom:300.960000px;}
.y63_c01199{bottom:302.400000px;}
.y65_c01199{bottom:303.120000px;}
.y64_c01199{bottom:303.840000px;}
.y61_c01199{bottom:306.000000px;}
.y60_c01199{bottom:342.720000px;}
.y5c_c01199{bottom:344.160000px;}
.y5f_c01199{bottom:344.880000px;}
.y5d_c01199{bottom:345.600000px;}
.y5e_c01199{bottom:346.320000px;}
.y5b_c01199{bottom:347.040000px;}
.y5a_c01199{bottom:348.480000px;}
.y56_c01199{bottom:386.640000px;}
.y57_c01199{bottom:387.360000px;}
.y59_c01199{bottom:388.080000px;}
.y58_c01199{bottom:388.800000px;}
.y55_c01199{bottom:389.520000px;}
.y54_c01199{bottom:390.960000px;}
.y51_c01199{bottom:429.840000px;}
.y52_c01199{bottom:431.280000px;}
.y53_c01199{bottom:432.000000px;}
.y50_c01199{bottom:434.160000px;}
.y4f_c01199{bottom:434.880000px;}
.y4c_c01199{bottom:473.040000px;}
.y4d_c01199{bottom:473.760000px;}
.y4e_c01199{bottom:475.200000px;}
.y4b_c01199{bottom:477.360000px;}
.y47_c01199{bottom:514.800000px;}
.y4a_c01199{bottom:515.520000px;}
.y48_c01199{bottom:516.960000px;}
.y49_c01199{bottom:518.400000px;}
.y46_c01199{bottom:519.120000px;}
.y44_c01199{bottom:519.840000px;}
.y45_c01199{bottom:520.560000px;}
.y40_c01199{bottom:558.720000px;}
.y41_c01199{bottom:560.160000px;}
.y43_c01199{bottom:561.600000px;}
.y3f_c01199{bottom:562.320000px;}
.y42_c01199{bottom:563.040000px;}
.y3c_c01199{bottom:601.920000px;}
.y3d_c01199{bottom:603.360000px;}
.y3b_c01199{bottom:604.800000px;}
.y3e_c01199{bottom:605.520000px;}
.y37_c01199{bottom:644.400000px;}
.y38_c01199{bottom:645.840000px;}
.y36_c01199{bottom:646.560000px;}
.y3a_c01199{bottom:647.280000px;}
.y39_c01199{bottom:649.440000px;}
.y33_c01199{bottom:687.600000px;}
.y34_c01199{bottom:689.760000px;}
.y35_c01199{bottom:690.480000px;}
.y31_c01199{bottom:691.200000px;}
.y32_c01199{bottom:691.920000px;}
.y2d_c01199{bottom:730.800000px;}
.y2c_c01199{bottom:732.240000px;}
.y2e_c01199{bottom:732.960000px;}
.y2f_c01199{bottom:734.400000px;}
.y30_c01199{bottom:735.120000px;}
.y29_c01199{bottom:773.280000px;}
.y27_c01199{bottom:774.720000px;}
.y2a_c01199{bottom:776.160000px;}
.y28_c01199{bottom:776.880000px;}
.y2b_c01199{bottom:778.320000px;}
.y23_c01199{bottom:815.760000px;}
.y22_c01199{bottom:817.920000px;}
.y24_c01199{bottom:818.640000px;}
.y26_c01199{bottom:819.360000px;}
.y25_c01199{bottom:820.800000px;}
.y1c_c01199{bottom:858.960000px;}
.y1d_c01199{bottom:860.400000px;}
.y1e_c01199{bottom:861.120000px;}
.y1b_c01199{bottom:861.840000px;}
.y1f_c01199{bottom:863.280000px;}
.y21_c01199{bottom:864.000000px;}
.y20_c01199{bottom:864.720000px;}
.y17_c01199{bottom:901.440000px;}
.y15_c01199{bottom:902.880000px;}
.y18_c01199{bottom:904.320000px;}
.y16_c01199{bottom:905.040000px;}
.y1a_c01199{bottom:906.480000px;}
.y19_c01199{bottom:907.200000px;}
.ye_c01199{bottom:943.920000px;}
.y12_c01199{bottom:945.360000px;}
.y10_c01199{bottom:946.080000px;}
.yd_c01199{bottom:946.800000px;}
.yf_c01199{bottom:947.520000px;}
.y13_c01199{bottom:948.240000px;}
.y11_c01199{bottom:948.960000px;}
.y14_c01199{bottom:950.400000px;}
.y6_c01199{bottom:986.400000px;}
.y5_c01199{bottom:988.560000px;}
.y8_c01199{bottom:989.280000px;}
.y7_c01199{bottom:990.720000px;}
.ya_c01199{bottom:991.440000px;}
.y9_c01199{bottom:992.160000px;}
.yc_c01199{bottom:992.880000px;}
.yb_c01199{bottom:993.600000px;}
.y3_c01199{bottom:1032.480000px;}
.y2_c01199{bottom:1033.200000px;}
.y4_c01199{bottom:1033.920000px;}
.y1_c01199{bottom:1113.840000px;}
.hd_c01199{height:31.100625px;}
.ha_c01199{height:33.692344px;}
.h7_c01199{height:38.875781px;}
.h3_c01199{height:41.467500px;}
.h9_c01199{height:44.059219px;}
.h5_c01199{height:46.650937px;}
.hb_c01199{height:49.242656px;}
.h8_c01199{height:51.834375px;}
.he_c01199{height:52.410938px;}
.h4_c01199{height:54.426094px;}
.h10_c01199{height:57.017812px;}
.hc_c01199{height:62.201250px;}
.h6_c01199{height:64.792969px;}
.h2_c01199{height:67.384687px;}
.hf_c01199{height:69.976406px;}
.h0_c01199{height:1155.600000px;}
.h1_c01199{height:1155.750000px;}
.w0_c01199{width:779.760000px;}
.w1_c01199{width:780.000000px;}
.x0_c01199{left:0.000000px;}
.x1b_c01199{left:74.160000px;}
.x5_c01199{left:75.600000px;}
.x2_c01199{left:124.560000px;}
.x3_c01199{left:147.600000px;}
.x21_c01199{left:154.080000px;}
.x11_c01199{left:155.520000px;}
.x6_c01199{left:156.960000px;}
.x12_c01199{left:198.720000px;}
.x4_c01199{left:229.680000px;}
.x7_c01199{left:231.120000px;}
.x1c_c01199{left:239.760000px;}
.x10_c01199{left:241.920000px;}
.x1f_c01199{left:250.560000px;}
.x22_c01199{left:252.720000px;}
.x1d_c01199{left:283.680000px;}
.x8_c01199{left:285.120000px;}
.x23_c01199{left:294.480000px;}
.x20_c01199{left:295.920000px;}
.x13_c01199{left:306.720000px;}
.x19_c01199{left:326.880000px;}
.x9_c01199{left:339.840000px;}
.x24_c01199{left:380.160000px;}
.xa_c01199{left:381.600000px;}
.x14_c01199{left:392.400000px;}
.x25_c01199{left:434.880000px;}
.xb_c01199{left:436.320000px;}
.x15_c01199{left:447.120000px;}
.x26_c01199{left:483.120000px;}
.x18_c01199{left:544.320000px;}
.xc_c01199{left:545.760000px;}
.x1e_c01199{left:609.840000px;}
.xd_c01199{left:632.880000px;}
.x16_c01199{left:665.280000px;}
.xe_c01199{left:666.720000px;}
.x1_c01199{left:673.920000px;}
.x17_c01199{left:699.120000px;}
.xf_c01199{left:709.200000px;}
.x1a_c01199{left:729.360000px;}
@media print{
.v4_c01199{vertical-align:-12.800000pt;}
.v5_c01199{vertical-align:-5.120000pt;}
.v1_c01199{vertical-align:-2.560000pt;}
.v0_c01199{vertical-align:0.000000pt;}
.v3_c01199{vertical-align:2.560000pt;}
.v2_c01199{vertical-align:5.120000pt;}
.v6_c01199{vertical-align:12.800000pt;}
.ls0_c01199{letter-spacing:0.000000pt;}
.ws4_c01199{word-spacing:-3.305600pt;}
.ws6_c01199{word-spacing:0.000000pt;}
.ws1_c01199{word-spacing:0.299733pt;}
.ws3_c01199{word-spacing:12.114133pt;}
.ws5_c01199{word-spacing:22.753067pt;}
.ws0_c01199{word-spacing:178.119467pt;}
.ws2_c01199{word-spacing:672.480000pt;}
.fsb_c01199{font-size:30.720000pt;}
.fs8_c01199{font-size:33.280000pt;}
.fs5_c01199{font-size:38.400000pt;}
.fs1_c01199{font-size:40.960000pt;}
.fs7_c01199{font-size:43.520000pt;}
.fs3_c01199{font-size:46.080000pt;}
.fs9_c01199{font-size:48.640000pt;}
.fs6_c01199{font-size:51.200000pt;}
.fs2_c01199{font-size:53.760000pt;}
.fsd_c01199{font-size:56.320000pt;}
.fsa_c01199{font-size:61.440000pt;}
.fs4_c01199{font-size:64.000000pt;}
.fs0_c01199{font-size:66.560000pt;}
.fsc_c01199{font-size:69.120000pt;}
.y0_c01199{bottom:0.000000pt;}
.y8d_c01199{bottom:37.120000pt;}
.y8f_c01199{bottom:37.760000pt;}
.y8e_c01199{bottom:39.040000pt;}
.y8b_c01199{bottom:39.680000pt;}
.y8c_c01199{bottom:40.960000pt;}
.y89_c01199{bottom:41.600000pt;}
.y8a_c01199{bottom:44.160000pt;}
.y88_c01199{bottom:46.080000pt;}
.y87_c01199{bottom:75.520000pt;}
.y86_c01199{bottom:76.160000pt;}
.y85_c01199{bottom:78.080000pt;}
.y83_c01199{bottom:78.720000pt;}
.y84_c01199{bottom:81.920000pt;}
.y82_c01199{bottom:83.840000pt;}
.y80_c01199{bottom:113.920000pt;}
.y7f_c01199{bottom:114.560000pt;}
.y81_c01199{bottom:115.200000pt;}
.y7d_c01199{bottom:115.840000pt;}
.y7b_c01199{bottom:117.120000pt;}
.y7e_c01199{bottom:118.400000pt;}
.y7c_c01199{bottom:119.680000pt;}
.y7a_c01199{bottom:121.600000pt;}
.y79_c01199{bottom:150.400000pt;}
.y78_c01199{bottom:152.320000pt;}
.y76_c01199{bottom:152.960000pt;}
.y77_c01199{bottom:153.600000pt;}
.y75_c01199{bottom:154.240000pt;}
.y74_c01199{bottom:154.880000pt;}
.y73_c01199{bottom:159.360000pt;}
.y72_c01199{bottom:190.720000pt;}
.y6e_c01199{bottom:191.360000pt;}
.y6f_c01199{bottom:192.000000pt;}
.y71_c01199{bottom:192.640000pt;}
.y70_c01199{bottom:193.280000pt;}
.y6d_c01199{bottom:196.480000pt;}
.y6b_c01199{bottom:228.480000pt;}
.y69_c01199{bottom:229.120000pt;}
.y6a_c01199{bottom:230.400000pt;}
.y6c_c01199{bottom:231.040000pt;}
.y68_c01199{bottom:232.960000pt;}
.y67_c01199{bottom:234.880000pt;}
.y66_c01199{bottom:266.880000pt;}
.y62_c01199{bottom:267.520000pt;}
.y63_c01199{bottom:268.800000pt;}
.y65_c01199{bottom:269.440000pt;}
.y64_c01199{bottom:270.080000pt;}
.y61_c01199{bottom:272.000000pt;}
.y60_c01199{bottom:304.640000pt;}
.y5c_c01199{bottom:305.920000pt;}
.y5f_c01199{bottom:306.560000pt;}
.y5d_c01199{bottom:307.200000pt;}
.y5e_c01199{bottom:307.840000pt;}
.y5b_c01199{bottom:308.480000pt;}
.y5a_c01199{bottom:309.760000pt;}
.y56_c01199{bottom:343.680000pt;}
.y57_c01199{bottom:344.320000pt;}
.y59_c01199{bottom:344.960000pt;}
.y58_c01199{bottom:345.600000pt;}
.y55_c01199{bottom:346.240000pt;}
.y54_c01199{bottom:347.520000pt;}
.y51_c01199{bottom:382.080000pt;}
.y52_c01199{bottom:383.360000pt;}
.y53_c01199{bottom:384.000000pt;}
.y50_c01199{bottom:385.920000pt;}
.y4f_c01199{bottom:386.560000pt;}
.y4c_c01199{bottom:420.480000pt;}
.y4d_c01199{bottom:421.120000pt;}
.y4e_c01199{bottom:422.400000pt;}
.y4b_c01199{bottom:424.320000pt;}
.y47_c01199{bottom:457.600000pt;}
.y4a_c01199{bottom:458.240000pt;}
.y48_c01199{bottom:459.520000pt;}
.y49_c01199{bottom:460.800000pt;}
.y46_c01199{bottom:461.440000pt;}
.y44_c01199{bottom:462.080000pt;}
.y45_c01199{bottom:462.720000pt;}
.y40_c01199{bottom:496.640000pt;}
.y41_c01199{bottom:497.920000pt;}
.y43_c01199{bottom:499.200000pt;}
.y3f_c01199{bottom:499.840000pt;}
.y42_c01199{bottom:500.480000pt;}
.y3c_c01199{bottom:535.040000pt;}
.y3d_c01199{bottom:536.320000pt;}
.y3b_c01199{bottom:537.600000pt;}
.y3e_c01199{bottom:538.240000pt;}
.y37_c01199{bottom:572.800000pt;}
.y38_c01199{bottom:574.080000pt;}
.y36_c01199{bottom:574.720000pt;}
.y3a_c01199{bottom:575.360000pt;}
.y39_c01199{bottom:577.280000pt;}
.y33_c01199{bottom:611.200000pt;}
.y34_c01199{bottom:613.120000pt;}
.y35_c01199{bottom:613.760000pt;}
.y31_c01199{bottom:614.400000pt;}
.y32_c01199{bottom:615.040000pt;}
.y2d_c01199{bottom:649.600000pt;}
.y2c_c01199{bottom:650.880000pt;}
.y2e_c01199{bottom:651.520000pt;}
.y2f_c01199{bottom:652.800000pt;}
.y30_c01199{bottom:653.440000pt;}
.y29_c01199{bottom:687.360000pt;}
.y27_c01199{bottom:688.640000pt;}
.y2a_c01199{bottom:689.920000pt;}
.y28_c01199{bottom:690.560000pt;}
.y2b_c01199{bottom:691.840000pt;}
.y23_c01199{bottom:725.120000pt;}
.y22_c01199{bottom:727.040000pt;}
.y24_c01199{bottom:727.680000pt;}
.y26_c01199{bottom:728.320000pt;}
.y25_c01199{bottom:729.600000pt;}
.y1c_c01199{bottom:763.520000pt;}
.y1d_c01199{bottom:764.800000pt;}
.y1e_c01199{bottom:765.440000pt;}
.y1b_c01199{bottom:766.080000pt;}
.y1f_c01199{bottom:767.360000pt;}
.y21_c01199{bottom:768.000000pt;}
.y20_c01199{bottom:768.640000pt;}
.y17_c01199{bottom:801.280000pt;}
.y15_c01199{bottom:802.560000pt;}
.y18_c01199{bottom:803.840000pt;}
.y16_c01199{bottom:804.480000pt;}
.y1a_c01199{bottom:805.760000pt;}
.y19_c01199{bottom:806.400000pt;}
.ye_c01199{bottom:839.040000pt;}
.y12_c01199{bottom:840.320000pt;}
.y10_c01199{bottom:840.960000pt;}
.yd_c01199{bottom:841.600000pt;}
.yf_c01199{bottom:842.240000pt;}
.y13_c01199{bottom:842.880000pt;}
.y11_c01199{bottom:843.520000pt;}
.y14_c01199{bottom:844.800000pt;}
.y6_c01199{bottom:876.800000pt;}
.y5_c01199{bottom:878.720000pt;}
.y8_c01199{bottom:879.360000pt;}
.y7_c01199{bottom:880.640000pt;}
.ya_c01199{bottom:881.280000pt;}
.y9_c01199{bottom:881.920000pt;}
.yc_c01199{bottom:882.560000pt;}
.yb_c01199{bottom:883.200000pt;}
.y3_c01199{bottom:917.760000pt;}
.y2_c01199{bottom:918.400000pt;}
.y4_c01199{bottom:919.040000pt;}
.y1_c01199{bottom:990.080000pt;}
.hd_c01199{height:27.645000pt;}
.ha_c01199{height:29.948750pt;}
.h7_c01199{height:34.556250pt;}
.h3_c01199{height:36.860000pt;}
.h9_c01199{height:39.163750pt;}
.h5_c01199{height:41.467500pt;}
.hb_c01199{height:43.771250pt;}
.h8_c01199{height:46.075000pt;}
.he_c01199{height:46.587500pt;}
.h4_c01199{height:48.378750pt;}
.h10_c01199{height:50.682500pt;}
.hc_c01199{height:55.290000pt;}
.h6_c01199{height:57.593750pt;}
.h2_c01199{height:59.897500pt;}
.hf_c01199{height:62.201250pt;}
.h0_c01199{height:1027.200000pt;}
.h1_c01199{height:1027.333333pt;}
.w0_c01199{width:693.120000pt;}
.w1_c01199{width:693.333333pt;}
.x0_c01199{left:0.000000pt;}
.x1b_c01199{left:65.920000pt;}
.x5_c01199{left:67.200000pt;}
.x2_c01199{left:110.720000pt;}
.x3_c01199{left:131.200000pt;}
.x21_c01199{left:136.960000pt;}
.x11_c01199{left:138.240000pt;}
.x6_c01199{left:139.520000pt;}
.x12_c01199{left:176.640000pt;}
.x4_c01199{left:204.160000pt;}
.x7_c01199{left:205.440000pt;}
.x1c_c01199{left:213.120000pt;}
.x10_c01199{left:215.040000pt;}
.x1f_c01199{left:222.720000pt;}
.x22_c01199{left:224.640000pt;}
.x1d_c01199{left:252.160000pt;}
.x8_c01199{left:253.440000pt;}
.x23_c01199{left:261.760000pt;}
.x20_c01199{left:263.040000pt;}
.x13_c01199{left:272.640000pt;}
.x19_c01199{left:290.560000pt;}
.x9_c01199{left:302.080000pt;}
.x24_c01199{left:337.920000pt;}
.xa_c01199{left:339.200000pt;}
.x14_c01199{left:348.800000pt;}
.x25_c01199{left:386.560000pt;}
.xb_c01199{left:387.840000pt;}
.x15_c01199{left:397.440000pt;}
.x26_c01199{left:429.440000pt;}
.x18_c01199{left:483.840000pt;}
.xc_c01199{left:485.120000pt;}
.x1e_c01199{left:542.080000pt;}
.xd_c01199{left:562.560000pt;}
.x16_c01199{left:591.360000pt;}
.xe_c01199{left:592.640000pt;}
.x1_c01199{left:599.040000pt;}
.x17_c01199{left:621.440000pt;}
.xf_c01199{left:630.400000pt;}
.x1a_c01199{left:648.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9dc2b7c08c218bdbc9751c7b.woff2')format("woff");}.ff1_c01200{font-family:ff1_c01200;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m49_c01200{transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);}
.m48_c01200{transform:matrix(0.162650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162650,0.000000,0.000000,0.250000,0,0);}
.m1e_c01200{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);}
.m40_c01200{transform:matrix(0.236900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236900,0.000000,0.000000,0.250000,0,0);}
.m1a_c01200{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m19_c01200{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m39_c01200{transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);}
.m21_c01200{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m3a_c01200{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m1b_c01200{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1_c01200{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);}
.m35_c01200{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);}
.m33_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);}
.m38_c01200{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);}
.m2a_c01200{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m18_c01200{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);}
.m3c_c01200{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);}
.m45_c01200{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);}
.m2d_c01200{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m24_c01200{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m13_c01200{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.me_c01200{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m8_c01200{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);}
.m23_c01200{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m15_c01200{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m41_c01200{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m17_c01200{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m12_c01200{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m16_c01200{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m26_c01200{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01200{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01200{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01200{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m7_c01200{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m20_c01200{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m32_c01200{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m36_c01200{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m29_c01200{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);}
.m37_c01200{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.mb_c01200{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m11_c01200{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);}
.m42_c01200{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01200{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m6_c01200{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m25_c01200{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m4_c01200{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m30_c01200{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);}
.m34_c01200{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m31_c01200{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m22_c01200{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);}
.m2e_c01200{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);}
.m3e_c01200{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m10_c01200{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.md_c01200{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m0_c01200{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m5_c01200{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m28_c01200{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);}
.mc_c01200{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);}
.m2_c01200{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01200{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);}
.m1c_c01200{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);}
.m3_c01200{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.ma_c01200{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01200{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.mf_c01200{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m47_c01200{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m9_c01200{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);}
.m43_c01200{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01200{transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);}
.m44_c01200{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m14_c01200{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01200{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m46_c01200{transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01200{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.v0_c01200{vertical-align:0.000000px;}
.v1_c01200{vertical-align:5.760000px;}
.ls0_c01200{letter-spacing:0.000000px;}
.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;}
}
.ws1_c01200{word-spacing:0.000000px;}
.ws0_c01200{word-spacing:56.301600px;}
.fc0_c01200{color:transparent;}
.fsc_c01200{font-size:14.400000px;}
.fs2_c01200{font-size:43.200000px;}
.fs7_c01200{font-size:46.080000px;}
.fs4_c01200{font-size:48.960000px;}
.fs0_c01200{font-size:51.840000px;}
.fs3_c01200{font-size:54.720000px;}
.fs6_c01200{font-size:57.600000px;}
.fs8_c01200{font-size:60.480000px;}
.fsb_c01200{font-size:63.360000px;}
.fs9_c01200{font-size:66.240000px;}
.fsa_c01200{font-size:69.120000px;}
.fs5_c01200{font-size:72.000000px;}
.fs1_c01200{font-size:74.880000px;}
.fsd_c01200{font-size:77.760000px;}
.fsf_c01200{font-size:141.120000px;}
.fse_c01200{font-size:172.800000px;}
.y0_c01200{bottom:0.000000px;}
.y8f_c01200{bottom:43.920000px;}
.y90_c01200{bottom:50.400000px;}
.y8a_c01200{bottom:58.320000px;}
.y89_c01200{bottom:88.560000px;}
.y8e_c01200{bottom:89.280000px;}
.y8d_c01200{bottom:90.000000px;}
.y87_c01200{bottom:91.440000px;}
.y88_c01200{bottom:92.160000px;}
.y86_c01200{bottom:95.040000px;}
.y8c_c01200{bottom:131.040000px;}
.y7c_c01200{bottom:131.760000px;}
.y85_c01200{bottom:132.480000px;}
.y79_c01200{bottom:133.920000px;}
.y7b_c01200{bottom:134.640000px;}
.y7a_c01200{bottom:135.360000px;}
.y78_c01200{bottom:137.520000px;}
.y77_c01200{bottom:174.240000px;}
.y84_c01200{bottom:175.680000px;}
.y75_c01200{bottom:176.400000px;}
.y8b_c01200{bottom:177.120000px;}
.y76_c01200{bottom:178.560000px;}
.y74_c01200{bottom:180.000000px;}
.y83_c01200{bottom:216.720000px;}
.y73_c01200{bottom:217.440000px;}
.y72_c01200{bottom:218.160000px;}
.y71_c01200{bottom:218.880000px;}
.y70_c01200{bottom:222.480000px;}
.y6f_c01200{bottom:259.920000px;}
.y82_c01200{bottom:260.640000px;}
.y80_c01200{bottom:261.360000px;}
.y6d_c01200{bottom:262.080000px;}
.y81_c01200{bottom:262.800000px;}
.y6e_c01200{bottom:263.520000px;}
.y6b_c01200{bottom:265.680000px;}
.y6c_c01200{bottom:268.560000px;}
.y6a_c01200{bottom:303.120000px;}
.y7f_c01200{bottom:303.840000px;}
.y69_c01200{bottom:304.560000px;}
.y7d_c01200{bottom:305.280000px;}
.y7e_c01200{bottom:306.720000px;}
.y68_c01200{bottom:307.440000px;}
.y67_c01200{bottom:347.040000px;}
.y61_c01200{bottom:347.760000px;}
.y60_c01200{bottom:348.480000px;}
.y66_c01200{bottom:350.640000px;}
.y65_c01200{bottom:389.520000px;}
.y5f_c01200{bottom:390.960000px;}
.y5d_c01200{bottom:392.400000px;}
.y64_c01200{bottom:393.120000px;}
.y5e_c01200{bottom:394.560000px;}
.y63_c01200{bottom:432.720000px;}
.y62_c01200{bottom:433.440000px;}
.y5c_c01200{bottom:434.160000px;}
.y5b_c01200{bottom:434.880000px;}
.y5a_c01200{bottom:435.600000px;}
.y54_c01200{bottom:475.920000px;}
.y52_c01200{bottom:476.640000px;}
.y58_c01200{bottom:477.360000px;}
.y51_c01200{bottom:478.080000px;}
.y53_c01200{bottom:478.800000px;}
.y59_c01200{bottom:479.520000px;}
.y40_c01200{bottom:519.120000px;}
.y3f_c01200{bottom:519.840000px;}
.y50_c01200{bottom:520.560000px;}
.y3e_c01200{bottom:521.280000px;}
.y4f_c01200{bottom:523.440000px;}
.y3d_c01200{bottom:560.880000px;}
.y3c_c01200{bottom:562.320000px;}
.y4e_c01200{bottom:563.760000px;}
.y57_c01200{bottom:564.480000px;}
.y55_c01200{bottom:565.200000px;}
.y56_c01200{bottom:565.920000px;}
.y4d_c01200{bottom:566.640000px;}
.y3b_c01200{bottom:603.360000px;}
.y3a_c01200{bottom:606.240000px;}
.y4b_c01200{bottom:606.960000px;}
.y4c_c01200{bottom:607.680000px;}
.y4a_c01200{bottom:609.120000px;}
.y32_c01200{bottom:646.560000px;}
.y31_c01200{bottom:648.720000px;}
.y49_c01200{bottom:649.440000px;}
.y39_c01200{bottom:651.600000px;}
.y48_c01200{bottom:652.320000px;}
.y47_c01200{bottom:653.040000px;}
.y30_c01200{bottom:689.040000px;}
.y2f_c01200{bottom:690.480000px;}
.y38_c01200{bottom:691.920000px;}
.y45_c01200{bottom:692.640000px;}
.y46_c01200{bottom:693.360000px;}
.y37_c01200{bottom:694.080000px;}
.y2e_c01200{bottom:731.520000px;}
.y2d_c01200{bottom:733.680000px;}
.y42_c01200{bottom:735.120000px;}
.y43_c01200{bottom:735.840000px;}
.y36_c01200{bottom:736.560000px;}
.y35_c01200{bottom:737.280000px;}
.y44_c01200{bottom:738.000000px;}
.y2c_c01200{bottom:774.720000px;}
.y2b_c01200{bottom:776.880000px;}
.y34_c01200{bottom:779.040000px;}
.y33_c01200{bottom:781.200000px;}
.y41_c01200{bottom:781.920000px;}
.y2a_c01200{bottom:817.200000px;}
.y29_c01200{bottom:819.360000px;}
.y22_c01200{bottom:821.520000px;}
.y24_c01200{bottom:822.240000px;}
.y23_c01200{bottom:823.680000px;}
.y21_c01200{bottom:824.400000px;}
.y28_c01200{bottom:860.400000px;}
.y27_c01200{bottom:863.280000px;}
.y1f_c01200{bottom:864.720000px;}
.y1d_c01200{bottom:865.440000px;}
.y20_c01200{bottom:866.160000px;}
.y1e_c01200{bottom:866.880000px;}
.y1c_c01200{bottom:867.600000px;}
.y26_c01200{bottom:903.600000px;}
.y25_c01200{bottom:904.320000px;}
.y1a_c01200{bottom:907.920000px;}
.y1b_c01200{bottom:909.360000px;}
.y19_c01200{bottom:910.080000px;}
.yf_c01200{bottom:946.080000px;}
.ye_c01200{bottom:948.240000px;}
.y11_c01200{bottom:948.960000px;}
.y10_c01200{bottom:951.120000px;}
.y18_c01200{bottom:953.280000px;}
.y12_c01200{bottom:954.000000px;}
.y17_c01200{bottom:954.720000px;}
.y9_c01200{bottom:989.280000px;}
.y8_c01200{bottom:990.000000px;}
.yb_c01200{bottom:992.880000px;}
.ya_c01200{bottom:994.320000px;}
.yc_c01200{bottom:995.760000px;}
.y16_c01200{bottom:996.480000px;}
.yd_c01200{bottom:997.200000px;}
.y2_c01200{bottom:1031.760000px;}
.y1_c01200{bottom:1033.920000px;}
.y6_c01200{bottom:1036.080000px;}
.y4_c01200{bottom:1036.800000px;}
.y3_c01200{bottom:1037.520000px;}
.y14_c01200{bottom:1038.240000px;}
.y5_c01200{bottom:1038.960000px;}
.y7_c01200{bottom:1040.400000px;}
.y15_c01200{bottom:1041.120000px;}
.y13_c01200{bottom:1122.480000px;}
.hf_c01200{height:12.958594px;}
.h4_c01200{height:38.875781px;}
.h9_c01200{height:41.467500px;}
.h6_c01200{height:44.059219px;}
.h2_c01200{height:46.650937px;}
.h5_c01200{height:49.242656px;}
.h8_c01200{height:51.834375px;}
.ha_c01200{height:54.426094px;}
.hb_c01200{height:55.002656px;}
.he_c01200{height:57.017812px;}
.hc_c01200{height:59.609531px;}
.hd_c01200{height:62.201250px;}
.h7_c01200{height:64.792969px;}
.h3_c01200{height:67.384687px;}
.h10_c01200{height:69.976406px;}
.h12_c01200{height:126.994219px;}
.h11_c01200{height:155.503125px;}
.h0_c01200{height:1157.760000px;}
.h1_c01200{height:1158.000000px;}
.w1_c01200{width:783.000000px;}
.w0_c01200{width:783.360000px;}
.x0_c01200{left:0.000000px;}
.x1_c01200{left:73.440000px;}
.x15_c01200{left:74.880000px;}
.x20_c01200{left:77.040000px;}
.x21_c01200{left:136.080000px;}
.x2_c01200{left:155.520000px;}
.x22_c01200{left:156.960000px;}
.x2e_c01200{left:159.120000px;}
.x17_c01200{left:231.120000px;}
.x3_c01200{left:240.480000px;}
.x1f_c01200{left:242.640000px;}
.x24_c01200{left:244.080000px;}
.x26_c01200{left:274.320000px;}
.x1a_c01200{left:285.120000px;}
.x2b_c01200{left:286.560000px;}
.x4_c01200{left:295.200000px;}
.x27_c01200{left:318.240000px;}
.x1b_c01200{left:326.880000px;}
.x23_c01200{left:328.320000px;}
.x2c_c01200{left:340.560000px;}
.x5_c01200{left:348.480000px;}
.x25_c01200{left:371.520000px;}
.x28_c01200{left:372.960000px;}
.x2d_c01200{left:383.040000px;}
.x9_c01200{left:392.400000px;}
.x6_c01200{left:435.600000px;}
.x7_c01200{left:479.520000px;}
.x8_c01200{left:544.320000px;}
.x2a_c01200{left:546.479910px;}
.xf_c01200{left:555.840000px;}
.x16_c01200{left:557.280000px;}
.x10_c01200{left:577.440000px;}
.x1e_c01200{left:578.880000px;}
.x11_c01200{left:599.040000px;}
.x14_c01200{left:609.840000px;}
.x29_c01200{left:611.280000px;}
.x31_c01200{left:613.440000px;}
.x32_c01200{left:624.960000px;}
.xb_c01200{left:632.160000px;}
.x12_c01200{left:634.320000px;}
.xc_c01200{left:665.280000px;}
.x1c_c01200{left:666.720000px;}
.x18_c01200{left:698.400000px;}
.x30_c01200{left:699.840000px;}
.xa_c01200{left:702.000000px;}
.x13_c01200{left:707.040000px;}
.xe_c01200{left:708.480000px;}
.x1d_c01200{left:709.920000px;}
.xd_c01200{left:727.920000px;}
.x19_c01200{left:729.360000px;}
.x2f_c01200{left:730.800000px;}
@media print{
.v0_c01200{vertical-align:0.000000pt;}
.v1_c01200{vertical-align:5.120000pt;}
.ls0_c01200{letter-spacing:0.000000pt;}
.ws1_c01200{word-spacing:0.000000pt;}
.ws0_c01200{word-spacing:50.045867pt;}
.fsc_c01200{font-size:12.800000pt;}
.fs2_c01200{font-size:38.400000pt;}
.fs7_c01200{font-size:40.960000pt;}
.fs4_c01200{font-size:43.520000pt;}
.fs0_c01200{font-size:46.080000pt;}
.fs3_c01200{font-size:48.640000pt;}
.fs6_c01200{font-size:51.200000pt;}
.fs8_c01200{font-size:53.760000pt;}
.fsb_c01200{font-size:56.320000pt;}
.fs9_c01200{font-size:58.880000pt;}
.fsa_c01200{font-size:61.440000pt;}
.fs5_c01200{font-size:64.000000pt;}
.fs1_c01200{font-size:66.560000pt;}
.fsd_c01200{font-size:69.120000pt;}
.fsf_c01200{font-size:125.440000pt;}
.fse_c01200{font-size:153.600000pt;}
.y0_c01200{bottom:0.000000pt;}
.y8f_c01200{bottom:39.040000pt;}
.y90_c01200{bottom:44.800000pt;}
.y8a_c01200{bottom:51.840000pt;}
.y89_c01200{bottom:78.720000pt;}
.y8e_c01200{bottom:79.360000pt;}
.y8d_c01200{bottom:80.000000pt;}
.y87_c01200{bottom:81.280000pt;}
.y88_c01200{bottom:81.920000pt;}
.y86_c01200{bottom:84.480000pt;}
.y8c_c01200{bottom:116.480000pt;}
.y7c_c01200{bottom:117.120000pt;}
.y85_c01200{bottom:117.760000pt;}
.y79_c01200{bottom:119.040000pt;}
.y7b_c01200{bottom:119.680000pt;}
.y7a_c01200{bottom:120.320000pt;}
.y78_c01200{bottom:122.240000pt;}
.y77_c01200{bottom:154.880000pt;}
.y84_c01200{bottom:156.160000pt;}
.y75_c01200{bottom:156.800000pt;}
.y8b_c01200{bottom:157.440000pt;}
.y76_c01200{bottom:158.720000pt;}
.y74_c01200{bottom:160.000000pt;}
.y83_c01200{bottom:192.640000pt;}
.y73_c01200{bottom:193.280000pt;}
.y72_c01200{bottom:193.920000pt;}
.y71_c01200{bottom:194.560000pt;}
.y70_c01200{bottom:197.760000pt;}
.y6f_c01200{bottom:231.040000pt;}
.y82_c01200{bottom:231.680000pt;}
.y80_c01200{bottom:232.320000pt;}
.y6d_c01200{bottom:232.960000pt;}
.y81_c01200{bottom:233.600000pt;}
.y6e_c01200{bottom:234.240000pt;}
.y6b_c01200{bottom:236.160000pt;}
.y6c_c01200{bottom:238.720000pt;}
.y6a_c01200{bottom:269.440000pt;}
.y7f_c01200{bottom:270.080000pt;}
.y69_c01200{bottom:270.720000pt;}
.y7d_c01200{bottom:271.360000pt;}
.y7e_c01200{bottom:272.640000pt;}
.y68_c01200{bottom:273.280000pt;}
.y67_c01200{bottom:308.480000pt;}
.y61_c01200{bottom:309.120000pt;}
.y60_c01200{bottom:309.760000pt;}
.y66_c01200{bottom:311.680000pt;}
.y65_c01200{bottom:346.240000pt;}
.y5f_c01200{bottom:347.520000pt;}
.y5d_c01200{bottom:348.800000pt;}
.y64_c01200{bottom:349.440000pt;}
.y5e_c01200{bottom:350.720000pt;}
.y63_c01200{bottom:384.640000pt;}
.y62_c01200{bottom:385.280000pt;}
.y5c_c01200{bottom:385.920000pt;}
.y5b_c01200{bottom:386.560000pt;}
.y5a_c01200{bottom:387.200000pt;}
.y54_c01200{bottom:423.040000pt;}
.y52_c01200{bottom:423.680000pt;}
.y58_c01200{bottom:424.320000pt;}
.y51_c01200{bottom:424.960000pt;}
.y53_c01200{bottom:425.600000pt;}
.y59_c01200{bottom:426.240000pt;}
.y40_c01200{bottom:461.440000pt;}
.y3f_c01200{bottom:462.080000pt;}
.y50_c01200{bottom:462.720000pt;}
.y3e_c01200{bottom:463.360000pt;}
.y4f_c01200{bottom:465.280000pt;}
.y3d_c01200{bottom:498.560000pt;}
.y3c_c01200{bottom:499.840000pt;}
.y4e_c01200{bottom:501.120000pt;}
.y57_c01200{bottom:501.760000pt;}
.y55_c01200{bottom:502.400000pt;}
.y56_c01200{bottom:503.040000pt;}
.y4d_c01200{bottom:503.680000pt;}
.y3b_c01200{bottom:536.320000pt;}
.y3a_c01200{bottom:538.880000pt;}
.y4b_c01200{bottom:539.520000pt;}
.y4c_c01200{bottom:540.160000pt;}
.y4a_c01200{bottom:541.440000pt;}
.y32_c01200{bottom:574.720000pt;}
.y31_c01200{bottom:576.640000pt;}
.y49_c01200{bottom:577.280000pt;}
.y39_c01200{bottom:579.200000pt;}
.y48_c01200{bottom:579.840000pt;}
.y47_c01200{bottom:580.480000pt;}
.y30_c01200{bottom:612.480000pt;}
.y2f_c01200{bottom:613.760000pt;}
.y38_c01200{bottom:615.040000pt;}
.y45_c01200{bottom:615.680000pt;}
.y46_c01200{bottom:616.320000pt;}
.y37_c01200{bottom:616.960000pt;}
.y2e_c01200{bottom:650.240000pt;}
.y2d_c01200{bottom:652.160000pt;}
.y42_c01200{bottom:653.440000pt;}
.y43_c01200{bottom:654.080000pt;}
.y36_c01200{bottom:654.720000pt;}
.y35_c01200{bottom:655.360000pt;}
.y44_c01200{bottom:656.000000pt;}
.y2c_c01200{bottom:688.640000pt;}
.y2b_c01200{bottom:690.560000pt;}
.y34_c01200{bottom:692.480000pt;}
.y33_c01200{bottom:694.400000pt;}
.y41_c01200{bottom:695.040000pt;}
.y2a_c01200{bottom:726.400000pt;}
.y29_c01200{bottom:728.320000pt;}
.y22_c01200{bottom:730.240000pt;}
.y24_c01200{bottom:730.880000pt;}
.y23_c01200{bottom:732.160000pt;}
.y21_c01200{bottom:732.800000pt;}
.y28_c01200{bottom:764.800000pt;}
.y27_c01200{bottom:767.360000pt;}
.y1f_c01200{bottom:768.640000pt;}
.y1d_c01200{bottom:769.280000pt;}
.y20_c01200{bottom:769.920000pt;}
.y1e_c01200{bottom:770.560000pt;}
.y1c_c01200{bottom:771.200000pt;}
.y26_c01200{bottom:803.200000pt;}
.y25_c01200{bottom:803.840000pt;}
.y1a_c01200{bottom:807.040000pt;}
.y1b_c01200{bottom:808.320000pt;}
.y19_c01200{bottom:808.960000pt;}
.yf_c01200{bottom:840.960000pt;}
.ye_c01200{bottom:842.880000pt;}
.y11_c01200{bottom:843.520000pt;}
.y10_c01200{bottom:845.440000pt;}
.y18_c01200{bottom:847.360000pt;}
.y12_c01200{bottom:848.000000pt;}
.y17_c01200{bottom:848.640000pt;}
.y9_c01200{bottom:879.360000pt;}
.y8_c01200{bottom:880.000000pt;}
.yb_c01200{bottom:882.560000pt;}
.ya_c01200{bottom:883.840000pt;}
.yc_c01200{bottom:885.120000pt;}
.y16_c01200{bottom:885.760000pt;}
.yd_c01200{bottom:886.400000pt;}
.y2_c01200{bottom:917.120000pt;}
.y1_c01200{bottom:919.040000pt;}
.y6_c01200{bottom:920.960000pt;}
.y4_c01200{bottom:921.600000pt;}
.y3_c01200{bottom:922.240000pt;}
.y14_c01200{bottom:922.880000pt;}
.y5_c01200{bottom:923.520000pt;}
.y7_c01200{bottom:924.800000pt;}
.y15_c01200{bottom:925.440000pt;}
.y13_c01200{bottom:997.760000pt;}
.hf_c01200{height:11.518750pt;}
.h4_c01200{height:34.556250pt;}
.h9_c01200{height:36.860000pt;}
.h6_c01200{height:39.163750pt;}
.h2_c01200{height:41.467500pt;}
.h5_c01200{height:43.771250pt;}
.h8_c01200{height:46.075000pt;}
.ha_c01200{height:48.378750pt;}
.hb_c01200{height:48.891250pt;}
.he_c01200{height:50.682500pt;}
.hc_c01200{height:52.986250pt;}
.hd_c01200{height:55.290000pt;}
.h7_c01200{height:57.593750pt;}
.h3_c01200{height:59.897500pt;}
.h10_c01200{height:62.201250pt;}
.h12_c01200{height:112.883750pt;}
.h11_c01200{height:138.225000pt;}
.h0_c01200{height:1029.120000pt;}
.h1_c01200{height:1029.333333pt;}
.w1_c01200{width:696.000000pt;}
.w0_c01200{width:696.320000pt;}
.x0_c01200{left:0.000000pt;}
.x1_c01200{left:65.280000pt;}
.x15_c01200{left:66.560000pt;}
.x20_c01200{left:68.480000pt;}
.x21_c01200{left:120.960000pt;}
.x2_c01200{left:138.240000pt;}
.x22_c01200{left:139.520000pt;}
.x2e_c01200{left:141.440000pt;}
.x17_c01200{left:205.440000pt;}
.x3_c01200{left:213.760000pt;}
.x1f_c01200{left:215.680000pt;}
.x24_c01200{left:216.960000pt;}
.x26_c01200{left:243.840000pt;}
.x1a_c01200{left:253.440000pt;}
.x2b_c01200{left:254.720000pt;}
.x4_c01200{left:262.400000pt;}
.x27_c01200{left:282.880000pt;}
.x1b_c01200{left:290.560000pt;}
.x23_c01200{left:291.840000pt;}
.x2c_c01200{left:302.720000pt;}
.x5_c01200{left:309.760000pt;}
.x25_c01200{left:330.240000pt;}
.x28_c01200{left:331.520000pt;}
.x2d_c01200{left:340.480000pt;}
.x9_c01200{left:348.800000pt;}
.x6_c01200{left:387.200000pt;}
.x7_c01200{left:426.240000pt;}
.x8_c01200{left:483.840000pt;}
.x2a_c01200{left:485.759920pt;}
.xf_c01200{left:494.080000pt;}
.x16_c01200{left:495.360000pt;}
.x10_c01200{left:513.280000pt;}
.x1e_c01200{left:514.560000pt;}
.x11_c01200{left:532.480000pt;}
.x14_c01200{left:542.080000pt;}
.x29_c01200{left:543.360000pt;}
.x31_c01200{left:545.280000pt;}
.x32_c01200{left:555.520000pt;}
.xb_c01200{left:561.920000pt;}
.x12_c01200{left:563.840000pt;}
.xc_c01200{left:591.360000pt;}
.x1c_c01200{left:592.640000pt;}
.x18_c01200{left:620.800000pt;}
.x30_c01200{left:622.080000pt;}
.xa_c01200{left:624.000000pt;}
.x13_c01200{left:628.480000pt;}
.xe_c01200{left:629.760000pt;}
.x1d_c01200{left:631.040000pt;}
.xd_c01200{left:647.040000pt;}
.x19_c01200{left:648.320000pt;}
.x2f_c01200{left:649.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3945127ef480b018866d2d94.woff2')format("woff");}.ff1_c01201{font-family:ff1_c01201;line-height:1.109863;font-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_c01201{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m2c_c01201{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m2_c01201{transform:matrix(0.237150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237150,0.000000,0.000000,0.250000,0,0);}
.m33_c01201{transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);}
.m32_c01201{transform:matrix(0.249375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249375,0.000000,0.000000,0.250000,0,0);}
.m2a_c01201{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m23_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);}
.m39_c01201{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_c01201{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m10_c01201{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m19_c01201{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01201{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_c01201{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_c01201{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m12_c01201{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_c01201{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m17_c01201{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);}
.m2f_c01201{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m15_c01201{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m4_c01201{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.me_c01201{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m6_c01201{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m27_c01201{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m3_c01201{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m7_c01201{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m16_c01201{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m35_c01201{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01201{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01201{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mb_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);}
.m13_c01201{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m5_c01201{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.ma_c01201{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01201{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mf_c01201{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m8_c01201{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m26_c01201{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01201{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m31_c01201{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m29_c01201{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m14_c01201{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01201{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m21_c01201{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m37_c01201{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);}
.mc_c01201{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);}
.m0_c01201{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01201{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m1_c01201{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m20_c01201{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);}
.m38_c01201{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m18_c01201{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m30_c01201{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);}
.m3a_c01201{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m36_c01201{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m11_c01201{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);}
.m2e_c01201{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01201{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);}
.m34_c01201{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m28_c01201{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.m24_c01201{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m25_c01201{transform:matrix(0.817500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.817500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.817500,0.000000,0.000000,0.250000,0,0);}
.v1_c01201{vertical-align:-2.880000px;}
.v0_c01201{vertical-align:0.000000px;}
.ls0_c01201{letter-spacing:0.000000px;}
.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;}
}
.ws5_c01201{word-spacing:0.000000px;}
.ws2_c01201{word-spacing:0.243576px;}
.ws4_c01201{word-spacing:14.243161px;}
.ws1_c01201{word-spacing:15.989676px;}
.ws3_c01201{word-spacing:17.894400px;}
.ws0_c01201{word-spacing:22.531200px;}
.fc0_c01201{color:transparent;}
.fsc_c01201{font-size:34.560000px;}
.fs7_c01201{font-size:37.440000px;}
.fsb_c01201{font-size:43.200000px;}
.fs8_c01201{font-size:46.080000px;}
.fs2_c01201{font-size:48.960000px;}
.fs1_c01201{font-size:51.840000px;}
.fs3_c01201{font-size:54.720000px;}
.fs4_c01201{font-size:57.600000px;}
.fs5_c01201{font-size:60.480000px;}
.fs9_c01201{font-size:66.240000px;}
.fsa_c01201{font-size:69.120000px;}
.fs0_c01201{font-size:72.000000px;}
.fs6_c01201{font-size:74.880000px;}
.y0_c01201{bottom:0.000000px;}
.y8d_c01201{bottom:46.080000px;}
.y8b_c01201{bottom:46.800000px;}
.y8a_c01201{bottom:47.520000px;}
.y8e_c01201{bottom:48.240000px;}
.y88_c01201{bottom:49.680000px;}
.y8c_c01201{bottom:50.400000px;}
.y89_c01201{bottom:51.120000px;}
.y87_c01201{bottom:55.440000px;}
.y86_c01201{bottom:87.120000px;}
.y82_c01201{bottom:89.280000px;}
.y85_c01201{bottom:90.000000px;}
.y81_c01201{bottom:90.720000px;}
.y84_c01201{bottom:91.440000px;}
.y7f_c01201{bottom:92.160000px;}
.y83_c01201{bottom:92.880000px;}
.y80_c01201{bottom:94.320000px;}
.y7e_c01201{bottom:97.200000px;}
.y7b_c01201{bottom:133.200000px;}
.y7d_c01201{bottom:134.640000px;}
.y7a_c01201{bottom:135.360000px;}
.y7c_c01201{bottom:136.080000px;}
.y79_c01201{bottom:140.400000px;}
.y77_c01201{bottom:175.680000px;}
.y75_c01201{bottom:176.400000px;}
.y78_c01201{bottom:177.840000px;}
.y72_c01201{bottom:178.560000px;}
.y76_c01201{bottom:179.280000px;}
.y74_c01201{bottom:180.000000px;}
.y73_c01201{bottom:180.720000px;}
.y71_c01201{bottom:182.160000px;}
.y6d_c01201{bottom:218.880000px;}
.y6f_c01201{bottom:219.600000px;}
.y6c_c01201{bottom:220.320000px;}
.y70_c01201{bottom:221.040000px;}
.y6e_c01201{bottom:221.760000px;}
.y6b_c01201{bottom:224.640000px;}
.y67_c01201{bottom:261.360000px;}
.y6a_c01201{bottom:262.800000px;}
.y66_c01201{bottom:263.520000px;}
.y69_c01201{bottom:264.240000px;}
.y68_c01201{bottom:264.960000px;}
.y65_c01201{bottom:267.120000px;}
.y62_c01201{bottom:304.560000px;}
.y64_c01201{bottom:305.280000px;}
.y60_c01201{bottom:306.000000px;}
.y63_c01201{bottom:308.160000px;}
.y61_c01201{bottom:308.880000px;}
.y5f_c01201{bottom:310.320000px;}
.y5d_c01201{bottom:348.480000px;}
.y5b_c01201{bottom:349.200000px;}
.y5e_c01201{bottom:349.920000px;}
.y5c_c01201{bottom:351.360000px;}
.y5a_c01201{bottom:352.800000px;}
.y56_c01201{bottom:391.680000px;}
.y58_c01201{bottom:392.400000px;}
.y57_c01201{bottom:393.120000px;}
.y59_c01201{bottom:393.840000px;}
.y55_c01201{bottom:395.280000px;}
.y53_c01201{bottom:434.160000px;}
.y54_c01201{bottom:437.040000px;}
.y52_c01201{bottom:437.760000px;}
.y4e_c01201{bottom:476.640000px;}
.y50_c01201{bottom:478.080000px;}
.y4f_c01201{bottom:478.800000px;}
.y4d_c01201{bottom:479.520000px;}
.y51_c01201{bottom:480.240000px;}
.y4a_c01201{bottom:519.840000px;}
.y4c_c01201{bottom:521.280000px;}
.y49_c01201{bottom:522.000000px;}
.y4b_c01201{bottom:523.440000px;}
.y45_c01201{bottom:563.040000px;}
.y47_c01201{bottom:563.760000px;}
.y44_c01201{bottom:564.480000px;}
.y48_c01201{bottom:565.920000px;}
.y46_c01201{bottom:566.640000px;}
.y3f_c01201{bottom:604.800000px;}
.y3e_c01201{bottom:607.680000px;}
.y42_c01201{bottom:608.400000px;}
.y41_c01201{bottom:609.120000px;}
.y40_c01201{bottom:609.840000px;}
.y43_c01201{bottom:610.560000px;}
.y38_c01201{bottom:648.720000px;}
.y37_c01201{bottom:650.160000px;}
.y3c_c01201{bottom:650.880000px;}
.y3b_c01201{bottom:651.600000px;}
.y3d_c01201{bottom:652.320000px;}
.y39_c01201{bottom:653.040000px;}
.y3a_c01201{bottom:653.760000px;}
.y33_c01201{bottom:690.480000px;}
.y32_c01201{bottom:692.640000px;}
.y35_c01201{bottom:694.080000px;}
.y36_c01201{bottom:694.800000px;}
.y34_c01201{bottom:696.240000px;}
.y2c_c01201{bottom:733.680000px;}
.y2b_c01201{bottom:735.840000px;}
.y2f_c01201{bottom:736.560000px;}
.y2e_c01201{bottom:737.280000px;}
.y30_c01201{bottom:738.000000px;}
.y2d_c01201{bottom:738.720000px;}
.y31_c01201{bottom:739.440000px;}
.y25_c01201{bottom:777.600000px;}
.y26_c01201{bottom:778.320000px;}
.y24_c01201{bottom:779.040000px;}
.y28_c01201{bottom:780.480000px;}
.y2a_c01201{bottom:781.200000px;}
.y27_c01201{bottom:781.920000px;}
.y29_c01201{bottom:784.080000px;}
.y20_c01201{bottom:820.080000px;}
.y1f_c01201{bottom:820.800000px;}
.y22_c01201{bottom:823.680000px;}
.y21_c01201{bottom:825.120000px;}
.y23_c01201{bottom:826.560000px;}
.y19_c01201{bottom:862.560000px;}
.y1b_c01201{bottom:863.280000px;}
.y18_c01201{bottom:864.000000px;}
.y1a_c01201{bottom:866.160000px;}
.y1c_c01201{bottom:867.600000px;}
.y1d_c01201{bottom:868.320000px;}
.y1e_c01201{bottom:869.760000px;}
.y12_c01201{bottom:905.040000px;}
.y11_c01201{bottom:906.480000px;}
.y13_c01201{bottom:908.640000px;}
.y15_c01201{bottom:909.360000px;}
.y17_c01201{bottom:910.080000px;}
.y14_c01201{bottom:911.520000px;}
.y16_c01201{bottom:912.240000px;}
.yd_c01201{bottom:947.520000px;}
.yc_c01201{bottom:948.960000px;}
.ye_c01201{bottom:952.560000px;}
.yf_c01201{bottom:953.280000px;}
.y10_c01201{bottom:954.000000px;}
.y8_c01201{bottom:990.000000px;}
.y7_c01201{bottom:991.440000px;}
.y9_c01201{bottom:995.760000px;}
.ya_c01201{bottom:997.200000px;}
.yb_c01201{bottom:997.920000px;}
.y2_c01201{bottom:1033.920000px;}
.y4_c01201{bottom:1035.360000px;}
.y3_c01201{bottom:1038.240000px;}
.y6_c01201{bottom:1038.960000px;}
.y5_c01201{bottom:1039.680000px;}
.y1_c01201{bottom:1124.640000px;}
.hf_c01201{height:31.100625px;}
.h9_c01201{height:33.692344px;}
.hd_c01201{height:38.875781px;}
.ha_c01201{height:41.467500px;}
.he_c01201{height:43.770937px;}
.h4_c01201{height:44.059219px;}
.h3_c01201{height:46.650937px;}
.h5_c01201{height:49.242656px;}
.h6_c01201{height:51.834375px;}
.h7_c01201{height:54.426094px;}
.hb_c01201{height:59.609531px;}
.hc_c01201{height:62.201250px;}
.h2_c01201{height:64.792969px;}
.h8_c01201{height:67.384687px;}
.h0_c01201{height:1157.760000px;}
.h1_c01201{height:1158.000000px;}
.w1_c01201{width:783.000000px;}
.w0_c01201{width:783.360000px;}
.x0_c01201{left:0.000000px;}
.x2_c01201{left:61.200000px;}
.x15_c01201{left:62.640000px;}
.x22_c01201{left:64.080000px;}
.xd_c01201{left:90.720000px;}
.x3_c01201{left:142.560000px;}
.x1c_c01201{left:144.000000px;}
.x16_c01201{left:239.760000px;}
.xb_c01201{left:249.840000px;}
.x17_c01201{left:282.960000px;}
.xe_c01201{left:291.600000px;}
.x4_c01201{left:293.040000px;}
.x1a_c01201{left:294.480000px;}
.x5_c01201{left:334.800000px;}
.x1b_c01201{left:336.960000px;}
.x10_c01201{left:401.040000px;}
.x1d_c01201{left:423.360000px;}
.xc_c01201{left:532.080000px;}
.x13_c01201{left:533.520000px;}
.x6_c01201{left:542.160000px;}
.x7_c01201{left:565.200000px;}
.xf_c01201{left:590.400000px;}
.x8_c01201{left:619.200000px;}
.x18_c01201{left:620.640000px;}
.x1e_c01201{left:641.520000px;}
.x9_c01201{left:652.320000px;}
.x1_c01201{left:654.480000px;}
.x1f_c01201{left:675.360000px;}
.xa_c01201{left:684.720000px;}
.x14_c01201{left:686.880000px;}
.x11_c01201{left:695.520000px;}
.x19_c01201{left:696.960000px;}
.x20_c01201{left:708.480000px;}
.x12_c01201{left:716.400000px;}
.x21_c01201{left:738.720000px;}
@media print{
.v1_c01201{vertical-align:-2.560000pt;}
.v0_c01201{vertical-align:0.000000pt;}
.ls0_c01201{letter-spacing:0.000000pt;}
.ws5_c01201{word-spacing:0.000000pt;}
.ws2_c01201{word-spacing:0.216512pt;}
.ws4_c01201{word-spacing:12.660588pt;}
.ws1_c01201{word-spacing:14.213046pt;}
.ws3_c01201{word-spacing:15.906133pt;}
.ws0_c01201{word-spacing:20.027733pt;}
.fsc_c01201{font-size:30.720000pt;}
.fs7_c01201{font-size:33.280000pt;}
.fsb_c01201{font-size:38.400000pt;}
.fs8_c01201{font-size:40.960000pt;}
.fs2_c01201{font-size:43.520000pt;}
.fs1_c01201{font-size:46.080000pt;}
.fs3_c01201{font-size:48.640000pt;}
.fs4_c01201{font-size:51.200000pt;}
.fs5_c01201{font-size:53.760000pt;}
.fs9_c01201{font-size:58.880000pt;}
.fsa_c01201{font-size:61.440000pt;}
.fs0_c01201{font-size:64.000000pt;}
.fs6_c01201{font-size:66.560000pt;}
.y0_c01201{bottom:0.000000pt;}
.y8d_c01201{bottom:40.960000pt;}
.y8b_c01201{bottom:41.600000pt;}
.y8a_c01201{bottom:42.240000pt;}
.y8e_c01201{bottom:42.880000pt;}
.y88_c01201{bottom:44.160000pt;}
.y8c_c01201{bottom:44.800000pt;}
.y89_c01201{bottom:45.440000pt;}
.y87_c01201{bottom:49.280000pt;}
.y86_c01201{bottom:77.440000pt;}
.y82_c01201{bottom:79.360000pt;}
.y85_c01201{bottom:80.000000pt;}
.y81_c01201{bottom:80.640000pt;}
.y84_c01201{bottom:81.280000pt;}
.y7f_c01201{bottom:81.920000pt;}
.y83_c01201{bottom:82.560000pt;}
.y80_c01201{bottom:83.840000pt;}
.y7e_c01201{bottom:86.400000pt;}
.y7b_c01201{bottom:118.400000pt;}
.y7d_c01201{bottom:119.680000pt;}
.y7a_c01201{bottom:120.320000pt;}
.y7c_c01201{bottom:120.960000pt;}
.y79_c01201{bottom:124.800000pt;}
.y77_c01201{bottom:156.160000pt;}
.y75_c01201{bottom:156.800000pt;}
.y78_c01201{bottom:158.080000pt;}
.y72_c01201{bottom:158.720000pt;}
.y76_c01201{bottom:159.360000pt;}
.y74_c01201{bottom:160.000000pt;}
.y73_c01201{bottom:160.640000pt;}
.y71_c01201{bottom:161.920000pt;}
.y6d_c01201{bottom:194.560000pt;}
.y6f_c01201{bottom:195.200000pt;}
.y6c_c01201{bottom:195.840000pt;}
.y70_c01201{bottom:196.480000pt;}
.y6e_c01201{bottom:197.120000pt;}
.y6b_c01201{bottom:199.680000pt;}
.y67_c01201{bottom:232.320000pt;}
.y6a_c01201{bottom:233.600000pt;}
.y66_c01201{bottom:234.240000pt;}
.y69_c01201{bottom:234.880000pt;}
.y68_c01201{bottom:235.520000pt;}
.y65_c01201{bottom:237.440000pt;}
.y62_c01201{bottom:270.720000pt;}
.y64_c01201{bottom:271.360000pt;}
.y60_c01201{bottom:272.000000pt;}
.y63_c01201{bottom:273.920000pt;}
.y61_c01201{bottom:274.560000pt;}
.y5f_c01201{bottom:275.840000pt;}
.y5d_c01201{bottom:309.760000pt;}
.y5b_c01201{bottom:310.400000pt;}
.y5e_c01201{bottom:311.040000pt;}
.y5c_c01201{bottom:312.320000pt;}
.y5a_c01201{bottom:313.600000pt;}
.y56_c01201{bottom:348.160000pt;}
.y58_c01201{bottom:348.800000pt;}
.y57_c01201{bottom:349.440000pt;}
.y59_c01201{bottom:350.080000pt;}
.y55_c01201{bottom:351.360000pt;}
.y53_c01201{bottom:385.920000pt;}
.y54_c01201{bottom:388.480000pt;}
.y52_c01201{bottom:389.120000pt;}
.y4e_c01201{bottom:423.680000pt;}
.y50_c01201{bottom:424.960000pt;}
.y4f_c01201{bottom:425.600000pt;}
.y4d_c01201{bottom:426.240000pt;}
.y51_c01201{bottom:426.880000pt;}
.y4a_c01201{bottom:462.080000pt;}
.y4c_c01201{bottom:463.360000pt;}
.y49_c01201{bottom:464.000000pt;}
.y4b_c01201{bottom:465.280000pt;}
.y45_c01201{bottom:500.480000pt;}
.y47_c01201{bottom:501.120000pt;}
.y44_c01201{bottom:501.760000pt;}
.y48_c01201{bottom:503.040000pt;}
.y46_c01201{bottom:503.680000pt;}
.y3f_c01201{bottom:537.600000pt;}
.y3e_c01201{bottom:540.160000pt;}
.y42_c01201{bottom:540.800000pt;}
.y41_c01201{bottom:541.440000pt;}
.y40_c01201{bottom:542.080000pt;}
.y43_c01201{bottom:542.720000pt;}
.y38_c01201{bottom:576.640000pt;}
.y37_c01201{bottom:577.920000pt;}
.y3c_c01201{bottom:578.560000pt;}
.y3b_c01201{bottom:579.200000pt;}
.y3d_c01201{bottom:579.840000pt;}
.y39_c01201{bottom:580.480000pt;}
.y3a_c01201{bottom:581.120000pt;}
.y33_c01201{bottom:613.760000pt;}
.y32_c01201{bottom:615.680000pt;}
.y35_c01201{bottom:616.960000pt;}
.y36_c01201{bottom:617.600000pt;}
.y34_c01201{bottom:618.880000pt;}
.y2c_c01201{bottom:652.160000pt;}
.y2b_c01201{bottom:654.080000pt;}
.y2f_c01201{bottom:654.720000pt;}
.y2e_c01201{bottom:655.360000pt;}
.y30_c01201{bottom:656.000000pt;}
.y2d_c01201{bottom:656.640000pt;}
.y31_c01201{bottom:657.280000pt;}
.y25_c01201{bottom:691.200000pt;}
.y26_c01201{bottom:691.840000pt;}
.y24_c01201{bottom:692.480000pt;}
.y28_c01201{bottom:693.760000pt;}
.y2a_c01201{bottom:694.400000pt;}
.y27_c01201{bottom:695.040000pt;}
.y29_c01201{bottom:696.960000pt;}
.y20_c01201{bottom:728.960000pt;}
.y1f_c01201{bottom:729.600000pt;}
.y22_c01201{bottom:732.160000pt;}
.y21_c01201{bottom:733.440000pt;}
.y23_c01201{bottom:734.720000pt;}
.y19_c01201{bottom:766.720000pt;}
.y1b_c01201{bottom:767.360000pt;}
.y18_c01201{bottom:768.000000pt;}
.y1a_c01201{bottom:769.920000pt;}
.y1c_c01201{bottom:771.200000pt;}
.y1d_c01201{bottom:771.840000pt;}
.y1e_c01201{bottom:773.120000pt;}
.y12_c01201{bottom:804.480000pt;}
.y11_c01201{bottom:805.760000pt;}
.y13_c01201{bottom:807.680000pt;}
.y15_c01201{bottom:808.320000pt;}
.y17_c01201{bottom:808.960000pt;}
.y14_c01201{bottom:810.240000pt;}
.y16_c01201{bottom:810.880000pt;}
.yd_c01201{bottom:842.240000pt;}
.yc_c01201{bottom:843.520000pt;}
.ye_c01201{bottom:846.720000pt;}
.yf_c01201{bottom:847.360000pt;}
.y10_c01201{bottom:848.000000pt;}
.y8_c01201{bottom:880.000000pt;}
.y7_c01201{bottom:881.280000pt;}
.y9_c01201{bottom:885.120000pt;}
.ya_c01201{bottom:886.400000pt;}
.yb_c01201{bottom:887.040000pt;}
.y2_c01201{bottom:919.040000pt;}
.y4_c01201{bottom:920.320000pt;}
.y3_c01201{bottom:922.880000pt;}
.y6_c01201{bottom:923.520000pt;}
.y5_c01201{bottom:924.160000pt;}
.y1_c01201{bottom:999.680000pt;}
.hf_c01201{height:27.645000pt;}
.h9_c01201{height:29.948750pt;}
.hd_c01201{height:34.556250pt;}
.ha_c01201{height:36.860000pt;}
.he_c01201{height:38.907500pt;}
.h4_c01201{height:39.163750pt;}
.h3_c01201{height:41.467500pt;}
.h5_c01201{height:43.771250pt;}
.h6_c01201{height:46.075000pt;}
.h7_c01201{height:48.378750pt;}
.hb_c01201{height:52.986250pt;}
.hc_c01201{height:55.290000pt;}
.h2_c01201{height:57.593750pt;}
.h8_c01201{height:59.897500pt;}
.h0_c01201{height:1029.120000pt;}
.h1_c01201{height:1029.333333pt;}
.w1_c01201{width:696.000000pt;}
.w0_c01201{width:696.320000pt;}
.x0_c01201{left:0.000000pt;}
.x2_c01201{left:54.400000pt;}
.x15_c01201{left:55.680000pt;}
.x22_c01201{left:56.960000pt;}
.xd_c01201{left:80.640000pt;}
.x3_c01201{left:126.720000pt;}
.x1c_c01201{left:128.000000pt;}
.x16_c01201{left:213.120000pt;}
.xb_c01201{left:222.080000pt;}
.x17_c01201{left:251.520000pt;}
.xe_c01201{left:259.200000pt;}
.x4_c01201{left:260.480000pt;}
.x1a_c01201{left:261.760000pt;}
.x5_c01201{left:297.600000pt;}
.x1b_c01201{left:299.520000pt;}
.x10_c01201{left:356.480000pt;}
.x1d_c01201{left:376.320000pt;}
.xc_c01201{left:472.960000pt;}
.x13_c01201{left:474.240000pt;}
.x6_c01201{left:481.920000pt;}
.x7_c01201{left:502.400000pt;}
.xf_c01201{left:524.800000pt;}
.x8_c01201{left:550.400000pt;}
.x18_c01201{left:551.680000pt;}
.x1e_c01201{left:570.240000pt;}
.x9_c01201{left:579.840000pt;}
.x1_c01201{left:581.760000pt;}
.x1f_c01201{left:600.320000pt;}
.xa_c01201{left:608.640000pt;}
.x14_c01201{left:610.560000pt;}
.x11_c01201{left:618.240000pt;}
.x19_c01201{left:619.520000pt;}
.x20_c01201{left:629.760000pt;}
.x12_c01201{left:636.800000pt;}
.x21_c01201{left:656.640000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8aef1c5d02fd1364b6235a9b.woff2')format("woff");}.ff1_c01202{font-family:ff1_c01202;line-height:1.109863;font-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_c01202{transform:matrix(0.027350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027350,0.000000,0.000000,0.250000,0,0);}
.m2e_c01202{transform:matrix(0.056400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056400,0.000000,0.000000,0.250000,0,0);}
.m2f_c01202{transform:matrix(0.099950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099950,0.000000,0.000000,0.250000,0,0);}
.m2a_c01202{transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);}
.m8_c01202{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m19_c01202{transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);}
.m2_c01202{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);}
.m3d_c01202{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m15_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);}
.m2b_c01202{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m10_c01202{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.ma_c01202{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);}
.m2d_c01202{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m21_c01202{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);}
.m3c_c01202{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m18_c01202{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mb_c01202{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.me_c01202{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);}
.m2c_c01202{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m9_c01202{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01202{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m28_c01202{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m14_c01202{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m5_c01202{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m12_c01202{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01202{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m7_c01202{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m22_c01202{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m26_c01202{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m33_c01202{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m23_c01202{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m3_c01202{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);}
.m4a_c01202{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1_c01202{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);}
.m40_c01202{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01202{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m27_c01202{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.md_c01202{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.mf_c01202{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);}
.m1d_c01202{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m44_c01202{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m0_c01202{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);}
.m32_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);}
.m1e_c01202{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);}
.m49_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);}
.m36_c01202{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);}
.m43_c01202{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m48_c01202{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m16_c01202{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m34_c01202{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01202{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);}
.m1a_c01202{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m24_c01202{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m4_c01202{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m25_c01202{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01202{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m41_c01202{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m31_c01202{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_c01202{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);}
.m20_c01202{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01202{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);}
.m30_c01202{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m45_c01202{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m6_c01202{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m39_c01202{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);}
.m1f_c01202{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m46_c01202{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m37_c01202{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m35_c01202{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m11_c01202{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m38_c01202{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m42_c01202{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01202{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m47_c01202{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);}
.mc_c01202{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.v1_c01202{vertical-align:-11.520000px;}
.v2_c01202{vertical-align:-8.640000px;}
.v0_c01202{vertical-align:0.000000px;}
.ls0_c01202{letter-spacing:0.000000px;}
.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;}
}
.ws3_c01202{word-spacing:0.000000px;}
.ws2_c01202{word-spacing:11.690400px;}
.ws1_c01202{word-spacing:12.999600px;}
.ws0_c01202{word-spacing:197.900116px;}
.fc0_c01202{color:transparent;}
.fsa_c01202{font-size:25.920000px;}
.fsd_c01202{font-size:34.560000px;}
.fs8_c01202{font-size:40.320000px;}
.fs6_c01202{font-size:46.080000px;}
.fs2_c01202{font-size:48.960000px;}
.fs3_c01202{font-size:51.840000px;}
.fs5_c01202{font-size:54.720000px;}
.fs4_c01202{font-size:57.600000px;}
.fs1_c01202{font-size:60.480000px;}
.fsc_c01202{font-size:63.360000px;}
.fse_c01202{font-size:66.240000px;}
.fsf_c01202{font-size:69.120000px;}
.fs7_c01202{font-size:72.000000px;}
.fs0_c01202{font-size:74.880000px;}
.fs9_c01202{font-size:95.040000px;}
.fsb_c01202{font-size:164.160000px;}
.y0_c01202{bottom:0.000000px;}
.y8b_c01202{bottom:56.880000px;}
.y8a_c01202{bottom:57.600000px;}
.y89_c01202{bottom:59.760000px;}
.y87_c01202{bottom:60.480000px;}
.y88_c01202{bottom:61.920000px;}
.y86_c01202{bottom:63.360000px;}
.y85_c01202{bottom:67.680000px;}
.y84_c01202{bottom:100.800000px;}
.y83_c01202{bottom:102.240000px;}
.y81_c01202{bottom:103.680000px;}
.y82_c01202{bottom:105.840000px;}
.y80_c01202{bottom:106.560000px;}
.y7f_c01202{bottom:110.160000px;}
.y7e_c01202{bottom:146.160000px;}
.y7b_c01202{bottom:146.880000px;}
.y7c_c01202{bottom:147.600000px;}
.y7d_c01202{bottom:148.320000px;}
.y7a_c01202{bottom:149.040000px;}
.y79_c01202{bottom:151.200000px;}
.y78_c01202{bottom:187.200000px;}
.y77_c01202{bottom:188.640000px;}
.y75_c01202{bottom:189.360000px;}
.y76_c01202{bottom:190.800000px;}
.y74_c01202{bottom:191.520000px;}
.y73_c01202{bottom:195.840000px;}
.y70_c01202{bottom:231.840000px;}
.y72_c01202{bottom:232.560000px;}
.y71_c01202{bottom:234.000000px;}
.y6f_c01202{bottom:234.720000px;}
.y6e_c01202{bottom:236.160000px;}
.y6d_c01202{bottom:272.880000px;}
.y6b_c01202{bottom:274.320000px;}
.y6a_c01202{bottom:275.040000px;}
.y6c_c01202{bottom:275.760000px;}
.y69_c01202{bottom:277.200000px;}
.y68_c01202{bottom:279.360000px;}
.y66_c01202{bottom:316.800000px;}
.y67_c01202{bottom:318.960000px;}
.y64_c01202{bottom:320.400000px;}
.y65_c01202{bottom:321.120000px;}
.y63_c01202{bottom:321.840000px;}
.y61_c01202{bottom:363.600000px;}
.y62_c01202{bottom:365.040000px;}
.y60_c01202{bottom:392.400000px;}
.y5d_c01202{bottom:393.120000px;}
.y5f_c01202{bottom:393.840000px;}
.y5a_c01202{bottom:394.560000px;}
.y5e_c01202{bottom:395.280000px;}
.y5c_c01202{bottom:396.000000px;}
.y5b_c01202{bottom:396.720000px;}
.y59_c01202{bottom:397.440000px;}
.y58_c01202{bottom:436.320000px;}
.y55_c01202{bottom:437.040000px;}
.y54_c01202{bottom:437.760000px;}
.y56_c01202{bottom:438.480000px;}
.y57_c01202{bottom:439.200000px;}
.y53_c01202{bottom:439.920000px;}
.y51_c01202{bottom:479.520000px;}
.y50_c01202{bottom:480.960000px;}
.y52_c01202{bottom:481.680000px;}
.y4f_c01202{bottom:483.120000px;}
.y4d_c01202{bottom:522.720000px;}
.y4b_c01202{bottom:523.440000px;}
.y4e_c01202{bottom:524.160000px;}
.y4a_c01202{bottom:524.880000px;}
.y4c_c01202{bottom:525.600000px;}
.y49_c01202{bottom:565.200000px;}
.y47_c01202{bottom:565.920000px;}
.y46_c01202{bottom:566.640000px;}
.y45_c01202{bottom:567.360000px;}
.y48_c01202{bottom:568.080000px;}
.y42_c01202{bottom:607.680000px;}
.y41_c01202{bottom:608.400000px;}
.y40_c01202{bottom:609.120000px;}
.y43_c01202{bottom:610.560000px;}
.y44_c01202{bottom:611.280000px;}
.y3e_c01202{bottom:651.600000px;}
.y3d_c01202{bottom:652.320000px;}
.y3f_c01202{bottom:653.040000px;}
.y3a_c01202{bottom:690.480000px;}
.y3b_c01202{bottom:694.080000px;}
.y3c_c01202{bottom:695.520000px;}
.y33_c01202{bottom:724.320000px;}
.y35_c01202{bottom:725.040000px;}
.y32_c01202{bottom:725.760000px;}
.y36_c01202{bottom:726.480000px;}
.y34_c01202{bottom:727.920000px;}
.y37_c01202{bottom:728.640000px;}
.y38_c01202{bottom:729.360000px;}
.y39_c01202{bottom:732.960000px;}
.y31_c01202{bottom:744.480000px;}
.y30_c01202{bottom:753.120000px;}
.y2f_c01202{bottom:767.520000px;}
.y2e_c01202{bottom:768.240000px;}
.y2d_c01202{bottom:770.400000px;}
.y29_c01202{bottom:799.200000px;}
.y28_c01202{bottom:800.640000px;}
.y2b_c01202{bottom:802.800000px;}
.y2a_c01202{bottom:803.520000px;}
.y2c_c01202{bottom:804.240000px;}
.y24_c01202{bottom:842.400000px;}
.y21_c01202{bottom:843.120000px;}
.y22_c01202{bottom:843.840000px;}
.y25_c01202{bottom:844.560000px;}
.y27_c01202{bottom:845.280000px;}
.y23_c01202{bottom:846.000000px;}
.y26_c01202{bottom:847.440000px;}
.y1b_c01202{bottom:884.880000px;}
.y1a_c01202{bottom:885.600000px;}
.y1d_c01202{bottom:886.320000px;}
.y1f_c01202{bottom:888.480000px;}
.y1c_c01202{bottom:889.200000px;}
.y1e_c01202{bottom:890.640000px;}
.y20_c01202{bottom:891.360000px;}
.y15_c01202{bottom:928.080000px;}
.y14_c01202{bottom:928.800000px;}
.y17_c01202{bottom:929.520000px;}
.y19_c01202{bottom:931.680000px;}
.y16_c01202{bottom:932.400000px;}
.y18_c01202{bottom:933.840000px;}
.yd_c01202{bottom:970.560000px;}
.yc_c01202{bottom:972.000000px;}
.y11_c01202{bottom:972.720000px;}
.y10_c01202{bottom:973.440000px;}
.ye_c01202{bottom:974.880000px;}
.yf_c01202{bottom:975.600000px;}
.y12_c01202{bottom:976.320000px;}
.y13_c01202{bottom:977.040000px;}
.yb_c01202{bottom:1014.480000px;}
.ya_c01202{bottom:1018.080000px;}
.y3_c01202{bottom:1046.160000px;}
.y2_c01202{bottom:1046.880000px;}
.y6_c01202{bottom:1049.040000px;}
.y4_c01202{bottom:1050.480000px;}
.y5_c01202{bottom:1051.200000px;}
.y7_c01202{bottom:1051.920000px;}
.y8_c01202{bottom:1052.640000px;}
.y9_c01202{bottom:1053.360000px;}
.y1_c01202{bottom:1105.920000px;}
.hc_c01202{height:23.325469px;}
.hf_c01202{height:31.100625px;}
.ha_c01202{height:36.284062px;}
.h8_c01202{height:41.467500px;}
.h4_c01202{height:44.059219px;}
.h5_c01202{height:46.650937px;}
.h7_c01202{height:49.242656px;}
.h6_c01202{height:51.834375px;}
.h3_c01202{height:54.426094px;}
.he_c01202{height:57.017812px;}
.h10_c01202{height:59.609531px;}
.h11_c01202{height:62.201250px;}
.h9_c01202{height:64.792969px;}
.h2_c01202{height:67.384687px;}
.hb_c01202{height:85.526719px;}
.hd_c01202{height:147.727969px;}
.h0_c01202{height:1157.040000px;}
.h1_c01202{height:1157.250000px;}
.w0_c01202{width:781.200000px;}
.w1_c01202{width:781.500000px;}
.x0_c01202{left:0.000000px;}
.x2_c01202{left:59.760000px;}
.x3_c01202{left:140.400000px;}
.x23_c01202{left:141.840000px;}
.xe_c01202{left:183.600000px;}
.x16_c01202{left:194.400000px;}
.x1e_c01202{left:224.640000px;}
.x12_c01202{left:226.080000px;}
.x4_c01202{left:236.160000px;}
.x1c_c01202{left:278.640000px;}
.x5_c01202{left:280.080000px;}
.x13_c01202{left:290.160000px;}
.x10_c01202{left:322.560000px;}
.x20_c01202{left:332.640000px;}
.x6_c01202{left:334.800000px;}
.x1d_c01202{left:344.160000px;}
.x14_c01202{left:345.600000px;}
.x18_c01202{left:355.680000px;}
.x22_c01202{left:375.840000px;}
.x11_c01202{left:377.280000px;}
.x19_c01202{left:409.680000px;}
.x7_c01202{left:464.400000px;}
.x15_c01202{left:484.560000px;}
.x21_c01202{left:527.760000px;}
.x1b_c01202{left:529.920000px;}
.x8_c01202{left:531.360000px;}
.x9_c01202{left:563.040000px;}
.x1f_c01202{left:616.320000px;}
.xa_c01202{left:617.760000px;}
.x24_c01202{left:648.720000px;}
.xb_c01202{left:650.160000px;}
.x1_c01202{left:659.520000px;}
.xf_c01202{left:682.560000px;}
.xc_c01202{left:693.360000px;}
.xd_c01202{left:713.520000px;}
.x1a_c01202{left:765.360000px;}
.x17_c01202{left:776.160000px;}
@media print{
.v1_c01202{vertical-align:-10.240000pt;}
.v2_c01202{vertical-align:-7.680000pt;}
.v0_c01202{vertical-align:0.000000pt;}
.ls0_c01202{letter-spacing:0.000000pt;}
.ws3_c01202{word-spacing:0.000000pt;}
.ws2_c01202{word-spacing:10.391467pt;}
.ws1_c01202{word-spacing:11.555200pt;}
.ws0_c01202{word-spacing:175.911214pt;}
.fsa_c01202{font-size:23.040000pt;}
.fsd_c01202{font-size:30.720000pt;}
.fs8_c01202{font-size:35.840000pt;}
.fs6_c01202{font-size:40.960000pt;}
.fs2_c01202{font-size:43.520000pt;}
.fs3_c01202{font-size:46.080000pt;}
.fs5_c01202{font-size:48.640000pt;}
.fs4_c01202{font-size:51.200000pt;}
.fs1_c01202{font-size:53.760000pt;}
.fsc_c01202{font-size:56.320000pt;}
.fse_c01202{font-size:58.880000pt;}
.fsf_c01202{font-size:61.440000pt;}
.fs7_c01202{font-size:64.000000pt;}
.fs0_c01202{font-size:66.560000pt;}
.fs9_c01202{font-size:84.480000pt;}
.fsb_c01202{font-size:145.920000pt;}
.y0_c01202{bottom:0.000000pt;}
.y8b_c01202{bottom:50.560000pt;}
.y8a_c01202{bottom:51.200000pt;}
.y89_c01202{bottom:53.120000pt;}
.y87_c01202{bottom:53.760000pt;}
.y88_c01202{bottom:55.040000pt;}
.y86_c01202{bottom:56.320000pt;}
.y85_c01202{bottom:60.160000pt;}
.y84_c01202{bottom:89.600000pt;}
.y83_c01202{bottom:90.880000pt;}
.y81_c01202{bottom:92.160000pt;}
.y82_c01202{bottom:94.080000pt;}
.y80_c01202{bottom:94.720000pt;}
.y7f_c01202{bottom:97.920000pt;}
.y7e_c01202{bottom:129.920000pt;}
.y7b_c01202{bottom:130.560000pt;}
.y7c_c01202{bottom:131.200000pt;}
.y7d_c01202{bottom:131.840000pt;}
.y7a_c01202{bottom:132.480000pt;}
.y79_c01202{bottom:134.400000pt;}
.y78_c01202{bottom:166.400000pt;}
.y77_c01202{bottom:167.680000pt;}
.y75_c01202{bottom:168.320000pt;}
.y76_c01202{bottom:169.600000pt;}
.y74_c01202{bottom:170.240000pt;}
.y73_c01202{bottom:174.080000pt;}
.y70_c01202{bottom:206.080000pt;}
.y72_c01202{bottom:206.720000pt;}
.y71_c01202{bottom:208.000000pt;}
.y6f_c01202{bottom:208.640000pt;}
.y6e_c01202{bottom:209.920000pt;}
.y6d_c01202{bottom:242.560000pt;}
.y6b_c01202{bottom:243.840000pt;}
.y6a_c01202{bottom:244.480000pt;}
.y6c_c01202{bottom:245.120000pt;}
.y69_c01202{bottom:246.400000pt;}
.y68_c01202{bottom:248.320000pt;}
.y66_c01202{bottom:281.600000pt;}
.y67_c01202{bottom:283.520000pt;}
.y64_c01202{bottom:284.800000pt;}
.y65_c01202{bottom:285.440000pt;}
.y63_c01202{bottom:286.080000pt;}
.y61_c01202{bottom:323.200000pt;}
.y62_c01202{bottom:324.480000pt;}
.y60_c01202{bottom:348.800000pt;}
.y5d_c01202{bottom:349.440000pt;}
.y5f_c01202{bottom:350.080000pt;}
.y5a_c01202{bottom:350.720000pt;}
.y5e_c01202{bottom:351.360000pt;}
.y5c_c01202{bottom:352.000000pt;}
.y5b_c01202{bottom:352.640000pt;}
.y59_c01202{bottom:353.280000pt;}
.y58_c01202{bottom:387.840000pt;}
.y55_c01202{bottom:388.480000pt;}
.y54_c01202{bottom:389.120000pt;}
.y56_c01202{bottom:389.760000pt;}
.y57_c01202{bottom:390.400000pt;}
.y53_c01202{bottom:391.040000pt;}
.y51_c01202{bottom:426.240000pt;}
.y50_c01202{bottom:427.520000pt;}
.y52_c01202{bottom:428.160000pt;}
.y4f_c01202{bottom:429.440000pt;}
.y4d_c01202{bottom:464.640000pt;}
.y4b_c01202{bottom:465.280000pt;}
.y4e_c01202{bottom:465.920000pt;}
.y4a_c01202{bottom:466.560000pt;}
.y4c_c01202{bottom:467.200000pt;}
.y49_c01202{bottom:502.400000pt;}
.y47_c01202{bottom:503.040000pt;}
.y46_c01202{bottom:503.680000pt;}
.y45_c01202{bottom:504.320000pt;}
.y48_c01202{bottom:504.960000pt;}
.y42_c01202{bottom:540.160000pt;}
.y41_c01202{bottom:540.800000pt;}
.y40_c01202{bottom:541.440000pt;}
.y43_c01202{bottom:542.720000pt;}
.y44_c01202{bottom:543.360000pt;}
.y3e_c01202{bottom:579.200000pt;}
.y3d_c01202{bottom:579.840000pt;}
.y3f_c01202{bottom:580.480000pt;}
.y3a_c01202{bottom:613.760000pt;}
.y3b_c01202{bottom:616.960000pt;}
.y3c_c01202{bottom:618.240000pt;}
.y33_c01202{bottom:643.840000pt;}
.y35_c01202{bottom:644.480000pt;}
.y32_c01202{bottom:645.120000pt;}
.y36_c01202{bottom:645.760000pt;}
.y34_c01202{bottom:647.040000pt;}
.y37_c01202{bottom:647.680000pt;}
.y38_c01202{bottom:648.320000pt;}
.y39_c01202{bottom:651.520000pt;}
.y31_c01202{bottom:661.760000pt;}
.y30_c01202{bottom:669.440000pt;}
.y2f_c01202{bottom:682.240000pt;}
.y2e_c01202{bottom:682.880000pt;}
.y2d_c01202{bottom:684.800000pt;}
.y29_c01202{bottom:710.400000pt;}
.y28_c01202{bottom:711.680000pt;}
.y2b_c01202{bottom:713.600000pt;}
.y2a_c01202{bottom:714.240000pt;}
.y2c_c01202{bottom:714.880000pt;}
.y24_c01202{bottom:748.800000pt;}
.y21_c01202{bottom:749.440000pt;}
.y22_c01202{bottom:750.080000pt;}
.y25_c01202{bottom:750.720000pt;}
.y27_c01202{bottom:751.360000pt;}
.y23_c01202{bottom:752.000000pt;}
.y26_c01202{bottom:753.280000pt;}
.y1b_c01202{bottom:786.560000pt;}
.y1a_c01202{bottom:787.200000pt;}
.y1d_c01202{bottom:787.840000pt;}
.y1f_c01202{bottom:789.760000pt;}
.y1c_c01202{bottom:790.400000pt;}
.y1e_c01202{bottom:791.680000pt;}
.y20_c01202{bottom:792.320000pt;}
.y15_c01202{bottom:824.960000pt;}
.y14_c01202{bottom:825.600000pt;}
.y17_c01202{bottom:826.240000pt;}
.y19_c01202{bottom:828.160000pt;}
.y16_c01202{bottom:828.800000pt;}
.y18_c01202{bottom:830.080000pt;}
.yd_c01202{bottom:862.720000pt;}
.yc_c01202{bottom:864.000000pt;}
.y11_c01202{bottom:864.640000pt;}
.y10_c01202{bottom:865.280000pt;}
.ye_c01202{bottom:866.560000pt;}
.yf_c01202{bottom:867.200000pt;}
.y12_c01202{bottom:867.840000pt;}
.y13_c01202{bottom:868.480000pt;}
.yb_c01202{bottom:901.760000pt;}
.ya_c01202{bottom:904.960000pt;}
.y3_c01202{bottom:929.920000pt;}
.y2_c01202{bottom:930.560000pt;}
.y6_c01202{bottom:932.480000pt;}
.y4_c01202{bottom:933.760000pt;}
.y5_c01202{bottom:934.400000pt;}
.y7_c01202{bottom:935.040000pt;}
.y8_c01202{bottom:935.680000pt;}
.y9_c01202{bottom:936.320000pt;}
.y1_c01202{bottom:983.040000pt;}
.hc_c01202{height:20.733750pt;}
.hf_c01202{height:27.645000pt;}
.ha_c01202{height:32.252500pt;}
.h8_c01202{height:36.860000pt;}
.h4_c01202{height:39.163750pt;}
.h5_c01202{height:41.467500pt;}
.h7_c01202{height:43.771250pt;}
.h6_c01202{height:46.075000pt;}
.h3_c01202{height:48.378750pt;}
.he_c01202{height:50.682500pt;}
.h10_c01202{height:52.986250pt;}
.h11_c01202{height:55.290000pt;}
.h9_c01202{height:57.593750pt;}
.h2_c01202{height:59.897500pt;}
.hb_c01202{height:76.023750pt;}
.hd_c01202{height:131.313750pt;}
.h0_c01202{height:1028.480000pt;}
.h1_c01202{height:1028.666667pt;}
.w0_c01202{width:694.400000pt;}
.w1_c01202{width:694.666667pt;}
.x0_c01202{left:0.000000pt;}
.x2_c01202{left:53.120000pt;}
.x3_c01202{left:124.800000pt;}
.x23_c01202{left:126.080000pt;}
.xe_c01202{left:163.200000pt;}
.x16_c01202{left:172.800000pt;}
.x1e_c01202{left:199.680000pt;}
.x12_c01202{left:200.960000pt;}
.x4_c01202{left:209.920000pt;}
.x1c_c01202{left:247.680000pt;}
.x5_c01202{left:248.960000pt;}
.x13_c01202{left:257.920000pt;}
.x10_c01202{left:286.720000pt;}
.x20_c01202{left:295.680000pt;}
.x6_c01202{left:297.600000pt;}
.x1d_c01202{left:305.920000pt;}
.x14_c01202{left:307.200000pt;}
.x18_c01202{left:316.160000pt;}
.x22_c01202{left:334.080000pt;}
.x11_c01202{left:335.360000pt;}
.x19_c01202{left:364.160000pt;}
.x7_c01202{left:412.800000pt;}
.x15_c01202{left:430.720000pt;}
.x21_c01202{left:469.120000pt;}
.x1b_c01202{left:471.040000pt;}
.x8_c01202{left:472.320000pt;}
.x9_c01202{left:500.480000pt;}
.x1f_c01202{left:547.840000pt;}
.xa_c01202{left:549.120000pt;}
.x24_c01202{left:576.640000pt;}
.xb_c01202{left:577.920000pt;}
.x1_c01202{left:586.240000pt;}
.xf_c01202{left:606.720000pt;}
.xc_c01202{left:616.320000pt;}
.xd_c01202{left:634.240000pt;}
.x1a_c01202{left:680.320000pt;}
.x17_c01202{left:689.920000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f3bf56bb2a72080fde82afb8.woff2')format("woff");}.ff1_c01203{font-family:ff1_c01203;line-height:1.109863;font-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_c01203{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01203{transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);}
.m3c_c01203{transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);}
.m2e_c01203{transform:matrix(0.233650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233650,0.000000,0.000000,0.250000,0,0);}
.m52_c01203{transform:matrix(0.233825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233825,0.000000,0.000000,0.250000,0,0);}
.m2f_c01203{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m33_c01203{transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);}
.m4c_c01203{transform:matrix(0.242775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242775,0.000000,0.000000,0.250000,0,0);}
.m39_c01203{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m3b_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);}
.m18_c01203{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);}
.m3a_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);}
.m46_c01203{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);}
.m49_c01203{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);}
.m34_c01203{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_c01203{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);}
.m1f_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);}
.m4b_c01203{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);}
.m28_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);}
.m16_c01203{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);}
.m31_c01203{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01203{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_c01203{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);}
.m41_c01203{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_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);}
.m8_c01203{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01203{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m20_c01203{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m15_c01203{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mc_c01203{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m12_c01203{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01203{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m26_c01203{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01203{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m6_c01203{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m5_c01203{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m4f_c01203{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.me_c01203{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m14_c01203{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m35_c01203{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);}
.m36_c01203{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mf_c01203{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);}
.m32_c01203{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m27_c01203{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.ma_c01203{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);}
.m3e_c01203{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m0_c01203{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m9_c01203{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m7_c01203{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2_c01203{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);}
.m30_c01203{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m38_c01203{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m17_c01203{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m1_c01203{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m13_c01203{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);}
.m2d_c01203{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);}
.m10_c01203{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01203{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m25_c01203{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);}
.m44_c01203{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m11_c01203{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m3_c01203{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);}
.m42_c01203{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01203{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m23_c01203{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m29_c01203{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m45_c01203{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01203{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);}
.mb_c01203{transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);}
.m4_c01203{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m47_c01203{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m21_c01203{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m53_c01203{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01203{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m4a_c01203{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m43_c01203{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);}
.m54_c01203{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m50_c01203{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01203{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.m37_c01203{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);}
.m51_c01203{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01203{transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);}
.m40_c01203{transform:matrix(0.785000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.785000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.785000,0.000000,0.000000,0.250000,0,0);}
.m19_c01203{transform:matrix(0.805000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.805000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.805000,0.000000,0.000000,0.250000,0,0);}
.m22_c01203{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.v3_c01203{vertical-align:-8.640000px;}
.v2_c01203{vertical-align:-2.880000px;}
.v0_c01203{vertical-align:0.000000px;}
.v1_c01203{vertical-align:8.640000px;}
.ls0_c01203{letter-spacing:0.000000px;}
.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;}
}
.ws3_c01203{word-spacing:0.000000px;}
.ws1_c01203{word-spacing:47.739600px;}
.ws2_c01203{word-spacing:53.731200px;}
.ws0_c01203{word-spacing:105.036000px;}
.fc0_c01203{color:transparent;}
.fsa_c01203{font-size:14.400000px;}
.fsb_c01203{font-size:20.160000px;}
.fs9_c01203{font-size:23.040000px;}
.fsc_c01203{font-size:28.800000px;}
.fs8_c01203{font-size:43.200000px;}
.fs7_c01203{font-size:46.080000px;}
.fs4_c01203{font-size:48.960000px;}
.fs3_c01203{font-size:51.840000px;}
.fs1_c01203{font-size:54.720000px;}
.fs5_c01203{font-size:57.600000px;}
.fs2_c01203{font-size:60.480000px;}
.fs6_c01203{font-size:63.360000px;}
.fsd_c01203{font-size:66.240000px;}
.fs11_c01203{font-size:69.120000px;}
.fsf_c01203{font-size:72.000000px;}
.fse_c01203{font-size:74.880000px;}
.fs0_c01203{font-size:77.760000px;}
.fs10_c01203{font-size:100.800000px;}
.y0_c01203{bottom:0.000000px;}
.y90_c01203{bottom:49.680000px;}
.y91_c01203{bottom:51.840000px;}
.y8f_c01203{bottom:53.280000px;}
.y8e_c01203{bottom:54.000000px;}
.y8d_c01203{bottom:60.480000px;}
.y8c_c01203{bottom:61.920000px;}
.y8b_c01203{bottom:93.600000px;}
.y8a_c01203{bottom:94.320000px;}
.y89_c01203{bottom:96.480000px;}
.y88_c01203{bottom:102.960000px;}
.y87_c01203{bottom:105.120000px;}
.y86_c01203{bottom:138.240000px;}
.y84_c01203{bottom:139.680000px;}
.y85_c01203{bottom:141.120000px;}
.y83_c01203{bottom:145.440000px;}
.y82_c01203{bottom:147.600000px;}
.y81_c01203{bottom:181.440000px;}
.y80_c01203{bottom:182.160000px;}
.y7f_c01203{bottom:182.880000px;}
.y7e_c01203{bottom:183.600000px;}
.y7d_c01203{bottom:189.360000px;}
.y7c_c01203{bottom:190.080000px;}
.y7b_c01203{bottom:225.360000px;}
.y79_c01203{bottom:226.080000px;}
.y7a_c01203{bottom:226.800000px;}
.y78_c01203{bottom:232.560000px;}
.y77_c01203{bottom:233.280000px;}
.y75_c01203{bottom:267.840000px;}
.y76_c01203{bottom:268.560000px;}
.y74_c01203{bottom:269.280000px;}
.y73_c01203{bottom:275.040000px;}
.y72_c01203{bottom:309.600000px;}
.y71_c01203{bottom:311.040000px;}
.y70_c01203{bottom:312.480000px;}
.y6f_c01203{bottom:313.200000px;}
.y6e_c01203{bottom:318.240000px;}
.y6d_c01203{bottom:353.520000px;}
.y6b_c01203{bottom:354.240000px;}
.y6c_c01203{bottom:355.680000px;}
.y6a_c01203{bottom:360.000000px;}
.y69_c01203{bottom:396.720000px;}
.y68_c01203{bottom:397.440000px;}
.y67_c01203{bottom:398.160000px;}
.y66_c01203{bottom:403.200000px;}
.y62_c01203{bottom:432.000000px;}
.y65_c01203{bottom:439.200000px;}
.y64_c01203{bottom:439.920000px;}
.y5f_c01203{bottom:440.640000px;}
.y63_c01203{bottom:442.080000px;}
.y61_c01203{bottom:442.800000px;}
.y60_c01203{bottom:443.520000px;}
.y5e_c01203{bottom:444.960000px;}
.y5d_c01203{bottom:482.400000px;}
.y5a_c01203{bottom:483.120000px;}
.y5c_c01203{bottom:484.560000px;}
.y5b_c01203{bottom:485.280000px;}
.y58_c01203{bottom:486.720000px;}
.y59_c01203{bottom:488.160000px;}
.y55_c01203{bottom:526.320000px;}
.y54_c01203{bottom:527.040000px;}
.y57_c01203{bottom:527.760000px;}
.y56_c01203{bottom:528.480000px;}
.y53_c01203{bottom:529.920000px;}
.y50_c01203{bottom:569.520000px;}
.y51_c01203{bottom:570.240000px;}
.y52_c01203{bottom:570.960000px;}
.y4e_c01203{bottom:573.120000px;}
.y4f_c01203{bottom:573.840000px;}
.y4d_c01203{bottom:615.600000px;}
.y4c_c01203{bottom:617.040000px;}
.y4a_c01203{bottom:666.720000px;}
.y47_c01203{bottom:667.440000px;}
.y4b_c01203{bottom:668.880000px;}
.y49_c01203{bottom:669.600000px;}
.y48_c01203{bottom:670.320000px;}
.y43_c01203{bottom:689.040000px;}
.y44_c01203{bottom:689.760000px;}
.y45_c01203{bottom:690.480000px;}
.y46_c01203{bottom:691.200000px;}
.y42_c01203{bottom:692.640000px;}
.y41_c01203{bottom:693.360000px;}
.y40_c01203{bottom:709.920000px;}
.y3e_c01203{bottom:710.640000px;}
.y3c_c01203{bottom:711.360000px;}
.y3d_c01203{bottom:712.080000px;}
.y3f_c01203{bottom:712.800000px;}
.y3b_c01203{bottom:731.520000px;}
.y39_c01203{bottom:732.240000px;}
.y37_c01203{bottom:732.960000px;}
.y3a_c01203{bottom:734.400000px;}
.y38_c01203{bottom:735.120000px;}
.y36_c01203{bottom:753.120000px;}
.y34_c01203{bottom:753.840000px;}
.y33_c01203{bottom:754.560000px;}
.y35_c01203{bottom:755.280000px;}
.y32_c01203{bottom:756.000000px;}
.y31_c01203{bottom:756.720000px;}
.y30_c01203{bottom:774.720000px;}
.y2d_c01203{bottom:775.440000px;}
.y2c_c01203{bottom:776.160000px;}
.y2e_c01203{bottom:776.880000px;}
.y2b_c01203{bottom:777.600000px;}
.y2f_c01203{bottom:778.320000px;}
.y26_c01203{bottom:804.240000px;}
.y2a_c01203{bottom:807.840000px;}
.y25_c01203{bottom:808.560000px;}
.y28_c01203{bottom:809.280000px;}
.y27_c01203{bottom:810.000000px;}
.y29_c01203{bottom:816.480000px;}
.y23_c01203{bottom:849.600000px;}
.y24_c01203{bottom:851.040000px;}
.y21_c01203{bottom:852.480000px;}
.y22_c01203{bottom:853.920000px;}
.y1f_c01203{bottom:861.120000px;}
.y20_c01203{bottom:862.560000px;}
.y1c_c01203{bottom:871.200000px;}
.y15_c01203{bottom:871.920000px;}
.y1d_c01203{bottom:872.640000px;}
.y1e_c01203{bottom:876.240000px;}
.y19_c01203{bottom:882.000000px;}
.y1a_c01203{bottom:882.720000px;}
.y18_c01203{bottom:883.440000px;}
.y17_c01203{bottom:884.160000px;}
.y16_c01203{bottom:884.880000px;}
.y1b_c01203{bottom:887.040000px;}
.y14_c01203{bottom:925.200000px;}
.y10_c01203{bottom:925.920000px;}
.y11_c01203{bottom:927.360000px;}
.y12_c01203{bottom:928.080000px;}
.y13_c01203{bottom:930.960000px;}
.yd_c01203{bottom:936.720000px;}
.ye_c01203{bottom:948.960000px;}
.yf_c01203{bottom:949.680000px;}
.y7_c01203{bottom:987.840000px;}
.y8_c01203{bottom:988.560000px;}
.y9_c01203{bottom:989.280000px;}
.yb_c01203{bottom:990.000000px;}
.ya_c01203{bottom:991.440000px;}
.yc_c01203{bottom:992.160000px;}
.y2_c01203{bottom:1031.760000px;}
.y3_c01203{bottom:1032.480000px;}
.y5_c01203{bottom:1033.200000px;}
.y4_c01203{bottom:1034.640000px;}
.y6_c01203{bottom:1035.360000px;}
.y1_c01203{bottom:1114.560000px;}
.hc_c01203{height:12.958594px;}
.hd_c01203{height:18.142031px;}
.hb_c01203{height:20.733750px;}
.he_c01203{height:25.917187px;}
.ha_c01203{height:38.875781px;}
.h9_c01203{height:41.467500px;}
.h6_c01203{height:44.059219px;}
.h5_c01203{height:46.650937px;}
.h3_c01203{height:49.242656px;}
.h7_c01203{height:51.834375px;}
.h4_c01203{height:54.426094px;}
.h8_c01203{height:57.017812px;}
.hf_c01203{height:59.609531px;}
.h13_c01203{height:62.201250px;}
.h11_c01203{height:64.792969px;}
.h10_c01203{height:67.384687px;}
.h2_c01203{height:69.976406px;}
.h12_c01203{height:90.710156px;}
.h1_c01203{height:1149.000000px;}
.h0_c01203{height:1149.120000px;}
.w1_c01203{width:771.000000px;}
.w0_c01203{width:771.120000px;}
.x0_c01203{left:0.000000px;}
.x46_c01203{left:56.160000px;}
.xa_c01203{left:57.600000px;}
.x2_c01203{left:59.760000px;}
.x30_c01203{left:67.680000px;}
.xb_c01203{left:78.480000px;}
.x28_c01203{left:87.120000px;}
.x21_c01203{left:88.560000px;}
.x31_c01203{left:108.000000px;}
.x22_c01203{left:128.880000px;}
.x45_c01203{left:136.800000px;}
.x40_c01203{left:138.240000px;}
.x32_c01203{left:139.680000px;}
.x3_c01203{left:141.840000px;}
.x14_c01203{left:151.200000px;}
.xc_c01203{left:159.840000px;}
.x15_c01203{left:181.440000px;}
.x29_c01203{left:203.040000px;}
.x37_c01203{left:204.480000px;}
.x3f_c01203{left:211.680000px;}
.x33_c01203{left:213.840000px;}
.x10_c01203{left:225.360000px;}
.x4_c01203{left:226.800000px;}
.x44_c01203{left:233.280000px;}
.x16_c01203{left:236.160000px;}
.x23_c01203{left:246.960000px;}
.x17_c01203{left:266.400000px;}
.x24_c01203{left:267.840000px;}
.x47_c01203{left:275.760000px;}
.x2a_c01203{left:278.640000px;}
.xd_c01203{left:280.800000px;}
.x5_c01203{left:289.440000px;}
.x2b_c01203{left:311.040000px;}
.x48_c01203{left:318.960000px;}
.x38_c01203{left:321.840000px;}
.x18_c01203{left:324.000000px;}
.x34_c01203{left:332.640000px;}
.xe_c01203{left:344.880000px;}
.x19_c01203{left:354.240000px;}
.x35_c01203{left:365.760000px;}
.x1a_c01203{left:375.120000px;}
.x2c_c01203{left:386.640000px;}
.xf_c01203{left:399.600000px;}
.x25_c01203{left:408.960000px;}
.x11_c01203{left:430.560000px;}
.x26_c01203{left:452.880000px;}
.x49_c01203{left:460.080000px;}
.x39_c01203{left:462.960000px;}
.x12_c01203{left:464.400000px;}
.x27_c01203{left:474.480000px;}
.x1b_c01203{left:483.840000px;}
.x13_c01203{left:495.360000px;}
.x2d_c01203{left:506.160000px;}
.x51_c01203{left:524.160000px;}
.x4b_c01203{left:525.600000px;}
.x41_c01203{left:527.040000px;}
.x6_c01203{left:529.200000px;}
.x2e_c01203{left:539.280000px;}
.x3a_c01203{left:550.800000px;}
.x3c_c01203{left:559.440000px;}
.x1c_c01203{left:561.600000px;}
.x4c_c01203{left:580.320000px;}
.x3b_c01203{left:583.200000px;}
.x52_c01203{left:589.680000px;}
.x1d_c01203{left:592.560000px;}
.x36_c01203{left:594.000000px;}
.x3d_c01203{left:605.520000px;}
.x4a_c01203{left:613.440000px;}
.x2f_c01203{left:615.600000px;}
.x7_c01203{left:617.040000px;}
.x50_c01203{left:645.120000px;}
.x4d_c01203{left:646.560000px;}
.x3e_c01203{left:648.000000px;}
.x8_c01203{left:649.440000px;}
.x1e_c01203{left:658.800000px;}
.x1_c01203{left:661.680000px;}
.x42_c01203{left:681.120000px;}
.x9_c01203{left:682.560000px;}
.x4e_c01203{left:689.760000px;}
.x1f_c01203{left:691.200000px;}
.x4f_c01203{left:710.640000px;}
.x43_c01203{left:712.080000px;}
.x20_c01203{left:714.960000px;}
@media print{
.v3_c01203{vertical-align:-7.680000pt;}
.v2_c01203{vertical-align:-2.560000pt;}
.v0_c01203{vertical-align:0.000000pt;}
.v1_c01203{vertical-align:7.680000pt;}
.ls0_c01203{letter-spacing:0.000000pt;}
.ws3_c01203{word-spacing:0.000000pt;}
.ws1_c01203{word-spacing:42.435200pt;}
.ws2_c01203{word-spacing:47.761067pt;}
.ws0_c01203{word-spacing:93.365333pt;}
.fsa_c01203{font-size:12.800000pt;}
.fsb_c01203{font-size:17.920000pt;}
.fs9_c01203{font-size:20.480000pt;}
.fsc_c01203{font-size:25.600000pt;}
.fs8_c01203{font-size:38.400000pt;}
.fs7_c01203{font-size:40.960000pt;}
.fs4_c01203{font-size:43.520000pt;}
.fs3_c01203{font-size:46.080000pt;}
.fs1_c01203{font-size:48.640000pt;}
.fs5_c01203{font-size:51.200000pt;}
.fs2_c01203{font-size:53.760000pt;}
.fs6_c01203{font-size:56.320000pt;}
.fsd_c01203{font-size:58.880000pt;}
.fs11_c01203{font-size:61.440000pt;}
.fsf_c01203{font-size:64.000000pt;}
.fse_c01203{font-size:66.560000pt;}
.fs0_c01203{font-size:69.120000pt;}
.fs10_c01203{font-size:89.600000pt;}
.y0_c01203{bottom:0.000000pt;}
.y90_c01203{bottom:44.160000pt;}
.y91_c01203{bottom:46.080000pt;}
.y8f_c01203{bottom:47.360000pt;}
.y8e_c01203{bottom:48.000000pt;}
.y8d_c01203{bottom:53.760000pt;}
.y8c_c01203{bottom:55.040000pt;}
.y8b_c01203{bottom:83.200000pt;}
.y8a_c01203{bottom:83.840000pt;}
.y89_c01203{bottom:85.760000pt;}
.y88_c01203{bottom:91.520000pt;}
.y87_c01203{bottom:93.440000pt;}
.y86_c01203{bottom:122.880000pt;}
.y84_c01203{bottom:124.160000pt;}
.y85_c01203{bottom:125.440000pt;}
.y83_c01203{bottom:129.280000pt;}
.y82_c01203{bottom:131.200000pt;}
.y81_c01203{bottom:161.280000pt;}
.y80_c01203{bottom:161.920000pt;}
.y7f_c01203{bottom:162.560000pt;}
.y7e_c01203{bottom:163.200000pt;}
.y7d_c01203{bottom:168.320000pt;}
.y7c_c01203{bottom:168.960000pt;}
.y7b_c01203{bottom:200.320000pt;}
.y79_c01203{bottom:200.960000pt;}
.y7a_c01203{bottom:201.600000pt;}
.y78_c01203{bottom:206.720000pt;}
.y77_c01203{bottom:207.360000pt;}
.y75_c01203{bottom:238.080000pt;}
.y76_c01203{bottom:238.720000pt;}
.y74_c01203{bottom:239.360000pt;}
.y73_c01203{bottom:244.480000pt;}
.y72_c01203{bottom:275.200000pt;}
.y71_c01203{bottom:276.480000pt;}
.y70_c01203{bottom:277.760000pt;}
.y6f_c01203{bottom:278.400000pt;}
.y6e_c01203{bottom:282.880000pt;}
.y6d_c01203{bottom:314.240000pt;}
.y6b_c01203{bottom:314.880000pt;}
.y6c_c01203{bottom:316.160000pt;}
.y6a_c01203{bottom:320.000000pt;}
.y69_c01203{bottom:352.640000pt;}
.y68_c01203{bottom:353.280000pt;}
.y67_c01203{bottom:353.920000pt;}
.y66_c01203{bottom:358.400000pt;}
.y62_c01203{bottom:384.000000pt;}
.y65_c01203{bottom:390.400000pt;}
.y64_c01203{bottom:391.040000pt;}
.y5f_c01203{bottom:391.680000pt;}
.y63_c01203{bottom:392.960000pt;}
.y61_c01203{bottom:393.600000pt;}
.y60_c01203{bottom:394.240000pt;}
.y5e_c01203{bottom:395.520000pt;}
.y5d_c01203{bottom:428.800000pt;}
.y5a_c01203{bottom:429.440000pt;}
.y5c_c01203{bottom:430.720000pt;}
.y5b_c01203{bottom:431.360000pt;}
.y58_c01203{bottom:432.640000pt;}
.y59_c01203{bottom:433.920000pt;}
.y55_c01203{bottom:467.840000pt;}
.y54_c01203{bottom:468.480000pt;}
.y57_c01203{bottom:469.120000pt;}
.y56_c01203{bottom:469.760000pt;}
.y53_c01203{bottom:471.040000pt;}
.y50_c01203{bottom:506.240000pt;}
.y51_c01203{bottom:506.880000pt;}
.y52_c01203{bottom:507.520000pt;}
.y4e_c01203{bottom:509.440000pt;}
.y4f_c01203{bottom:510.080000pt;}
.y4d_c01203{bottom:547.200000pt;}
.y4c_c01203{bottom:548.480000pt;}
.y4a_c01203{bottom:592.640000pt;}
.y47_c01203{bottom:593.280000pt;}
.y4b_c01203{bottom:594.560000pt;}
.y49_c01203{bottom:595.200000pt;}
.y48_c01203{bottom:595.840000pt;}
.y43_c01203{bottom:612.480000pt;}
.y44_c01203{bottom:613.120000pt;}
.y45_c01203{bottom:613.760000pt;}
.y46_c01203{bottom:614.400000pt;}
.y42_c01203{bottom:615.680000pt;}
.y41_c01203{bottom:616.320000pt;}
.y40_c01203{bottom:631.040000pt;}
.y3e_c01203{bottom:631.680000pt;}
.y3c_c01203{bottom:632.320000pt;}
.y3d_c01203{bottom:632.960000pt;}
.y3f_c01203{bottom:633.600000pt;}
.y3b_c01203{bottom:650.240000pt;}
.y39_c01203{bottom:650.880000pt;}
.y37_c01203{bottom:651.520000pt;}
.y3a_c01203{bottom:652.800000pt;}
.y38_c01203{bottom:653.440000pt;}
.y36_c01203{bottom:669.440000pt;}
.y34_c01203{bottom:670.080000pt;}
.y33_c01203{bottom:670.720000pt;}
.y35_c01203{bottom:671.360000pt;}
.y32_c01203{bottom:672.000000pt;}
.y31_c01203{bottom:672.640000pt;}
.y30_c01203{bottom:688.640000pt;}
.y2d_c01203{bottom:689.280000pt;}
.y2c_c01203{bottom:689.920000pt;}
.y2e_c01203{bottom:690.560000pt;}
.y2b_c01203{bottom:691.200000pt;}
.y2f_c01203{bottom:691.840000pt;}
.y26_c01203{bottom:714.880000pt;}
.y2a_c01203{bottom:718.080000pt;}
.y25_c01203{bottom:718.720000pt;}
.y28_c01203{bottom:719.360000pt;}
.y27_c01203{bottom:720.000000pt;}
.y29_c01203{bottom:725.760000pt;}
.y23_c01203{bottom:755.200000pt;}
.y24_c01203{bottom:756.480000pt;}
.y21_c01203{bottom:757.760000pt;}
.y22_c01203{bottom:759.040000pt;}
.y1f_c01203{bottom:765.440000pt;}
.y20_c01203{bottom:766.720000pt;}
.y1c_c01203{bottom:774.400000pt;}
.y15_c01203{bottom:775.040000pt;}
.y1d_c01203{bottom:775.680000pt;}
.y1e_c01203{bottom:778.880000pt;}
.y19_c01203{bottom:784.000000pt;}
.y1a_c01203{bottom:784.640000pt;}
.y18_c01203{bottom:785.280000pt;}
.y17_c01203{bottom:785.920000pt;}
.y16_c01203{bottom:786.560000pt;}
.y1b_c01203{bottom:788.480000pt;}
.y14_c01203{bottom:822.400000pt;}
.y10_c01203{bottom:823.040000pt;}
.y11_c01203{bottom:824.320000pt;}
.y12_c01203{bottom:824.960000pt;}
.y13_c01203{bottom:827.520000pt;}
.yd_c01203{bottom:832.640000pt;}
.ye_c01203{bottom:843.520000pt;}
.yf_c01203{bottom:844.160000pt;}
.y7_c01203{bottom:878.080000pt;}
.y8_c01203{bottom:878.720000pt;}
.y9_c01203{bottom:879.360000pt;}
.yb_c01203{bottom:880.000000pt;}
.ya_c01203{bottom:881.280000pt;}
.yc_c01203{bottom:881.920000pt;}
.y2_c01203{bottom:917.120000pt;}
.y3_c01203{bottom:917.760000pt;}
.y5_c01203{bottom:918.400000pt;}
.y4_c01203{bottom:919.680000pt;}
.y6_c01203{bottom:920.320000pt;}
.y1_c01203{bottom:990.720000pt;}
.hc_c01203{height:11.518750pt;}
.hd_c01203{height:16.126250pt;}
.hb_c01203{height:18.430000pt;}
.he_c01203{height:23.037500pt;}
.ha_c01203{height:34.556250pt;}
.h9_c01203{height:36.860000pt;}
.h6_c01203{height:39.163750pt;}
.h5_c01203{height:41.467500pt;}
.h3_c01203{height:43.771250pt;}
.h7_c01203{height:46.075000pt;}
.h4_c01203{height:48.378750pt;}
.h8_c01203{height:50.682500pt;}
.hf_c01203{height:52.986250pt;}
.h13_c01203{height:55.290000pt;}
.h11_c01203{height:57.593750pt;}
.h10_c01203{height:59.897500pt;}
.h2_c01203{height:62.201250pt;}
.h12_c01203{height:80.631250pt;}
.h1_c01203{height:1021.333333pt;}
.h0_c01203{height:1021.440000pt;}
.w1_c01203{width:685.333333pt;}
.w0_c01203{width:685.440000pt;}
.x0_c01203{left:0.000000pt;}
.x46_c01203{left:49.920000pt;}
.xa_c01203{left:51.200000pt;}
.x2_c01203{left:53.120000pt;}
.x30_c01203{left:60.160000pt;}
.xb_c01203{left:69.760000pt;}
.x28_c01203{left:77.440000pt;}
.x21_c01203{left:78.720000pt;}
.x31_c01203{left:96.000000pt;}
.x22_c01203{left:114.560000pt;}
.x45_c01203{left:121.600000pt;}
.x40_c01203{left:122.880000pt;}
.x32_c01203{left:124.160000pt;}
.x3_c01203{left:126.080000pt;}
.x14_c01203{left:134.400000pt;}
.xc_c01203{left:142.080000pt;}
.x15_c01203{left:161.280000pt;}
.x29_c01203{left:180.480000pt;}
.x37_c01203{left:181.760000pt;}
.x3f_c01203{left:188.160000pt;}
.x33_c01203{left:190.080000pt;}
.x10_c01203{left:200.320000pt;}
.x4_c01203{left:201.600000pt;}
.x44_c01203{left:207.360000pt;}
.x16_c01203{left:209.920000pt;}
.x23_c01203{left:219.520000pt;}
.x17_c01203{left:236.800000pt;}
.x24_c01203{left:238.080000pt;}
.x47_c01203{left:245.120000pt;}
.x2a_c01203{left:247.680000pt;}
.xd_c01203{left:249.600000pt;}
.x5_c01203{left:257.280000pt;}
.x2b_c01203{left:276.480000pt;}
.x48_c01203{left:283.520000pt;}
.x38_c01203{left:286.080000pt;}
.x18_c01203{left:288.000000pt;}
.x34_c01203{left:295.680000pt;}
.xe_c01203{left:306.560000pt;}
.x19_c01203{left:314.880000pt;}
.x35_c01203{left:325.120000pt;}
.x1a_c01203{left:333.440000pt;}
.x2c_c01203{left:343.680000pt;}
.xf_c01203{left:355.200000pt;}
.x25_c01203{left:363.520000pt;}
.x11_c01203{left:382.720000pt;}
.x26_c01203{left:402.560000pt;}
.x49_c01203{left:408.960000pt;}
.x39_c01203{left:411.520000pt;}
.x12_c01203{left:412.800000pt;}
.x27_c01203{left:421.760000pt;}
.x1b_c01203{left:430.080000pt;}
.x13_c01203{left:440.320000pt;}
.x2d_c01203{left:449.920000pt;}
.x51_c01203{left:465.920000pt;}
.x4b_c01203{left:467.200000pt;}
.x41_c01203{left:468.480000pt;}
.x6_c01203{left:470.400000pt;}
.x2e_c01203{left:479.360000pt;}
.x3a_c01203{left:489.600000pt;}
.x3c_c01203{left:497.280000pt;}
.x1c_c01203{left:499.200000pt;}
.x4c_c01203{left:515.840000pt;}
.x3b_c01203{left:518.400000pt;}
.x52_c01203{left:524.160000pt;}
.x1d_c01203{left:526.720000pt;}
.x36_c01203{left:528.000000pt;}
.x3d_c01203{left:538.240000pt;}
.x4a_c01203{left:545.280000pt;}
.x2f_c01203{left:547.200000pt;}
.x7_c01203{left:548.480000pt;}
.x50_c01203{left:573.440000pt;}
.x4d_c01203{left:574.720000pt;}
.x3e_c01203{left:576.000000pt;}
.x8_c01203{left:577.280000pt;}
.x1e_c01203{left:585.600000pt;}
.x1_c01203{left:588.160000pt;}
.x42_c01203{left:605.440000pt;}
.x9_c01203{left:606.720000pt;}
.x4e_c01203{left:613.120000pt;}
.x1f_c01203{left:614.400000pt;}
.x4f_c01203{left:631.680000pt;}
.x43_c01203{left:632.960000pt;}
.x20_c01203{left:635.520000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5217f04cb064c1c71bee6d63.woff2')format("woff");}.ff1_c01204{font-family:ff1_c01204;line-height:1.109863;font-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_c01204{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m3e_c01204{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_c01204{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m16_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);}
.m3c_c01204{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m4_c01204{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_c01204{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01204{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01204{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m7_c01204{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);}
.m38_c01204{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mb_c01204{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m6_c01204{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m29_c01204{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mf_c01204{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m11_c01204{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m28_c01204{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m14_c01204{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m26_c01204{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01204{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01204{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.md_c01204{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m10_c01204{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01204{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m22_c01204{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m25_c01204{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m27_c01204{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);}
.m36_c01204{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m3_c01204{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m9_c01204{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);}
.m3b_c01204{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);}
.m32_c01204{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_c01204{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m0_c01204{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);}
.m39_c01204{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m2_c01204{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m15_c01204{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01204{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m37_c01204{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);}
.m31_c01204{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01204{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m18_c01204{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);}
.me_c01204{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m5_c01204{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);}
.mc_c01204{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);}
.m17_c01204{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m23_c01204{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m1_c01204{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m19_c01204{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01204{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m21_c01204{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);}
.m35_c01204{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01204{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01204{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m33_c01204{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m34_c01204{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);}
.m30_c01204{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m20_c01204{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01204{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01204{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m24_c01204{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m8_c01204{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01204{transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01204{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.v0_c01204{vertical-align:0.000000px;}
.v2_c01204{vertical-align:11.520000px;}
.v1_c01204{vertical-align:17.280000px;}
.ls0_c01204{letter-spacing:0.000000px;}
.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;}
}
.ws2_c01204{word-spacing:0.000000px;}
.ws0_c01204{word-spacing:697.320000px;}
.ws1_c01204{word-spacing:721.614000px;}
.fc0_c01204{color:transparent;}
.fsc_c01204{font-size:34.560000px;}
.fsd_c01204{font-size:37.440000px;}
.fs7_c01204{font-size:46.080000px;}
.fs8_c01204{font-size:48.960000px;}
.fs1_c01204{font-size:51.840000px;}
.fs5_c01204{font-size:54.720000px;}
.fs4_c01204{font-size:57.600000px;}
.fs6_c01204{font-size:60.480000px;}
.fs3_c01204{font-size:63.360000px;}
.fsb_c01204{font-size:66.240000px;}
.fsa_c01204{font-size:69.120000px;}
.fs9_c01204{font-size:72.000000px;}
.fs2_c01204{font-size:74.880000px;}
.fs0_c01204{font-size:77.760000px;}
.y0_c01204{bottom:0.000000px;}
.y84_c01204{bottom:67.680000px;}
.y85_c01204{bottom:69.840000px;}
.y87_c01204{bottom:70.560000px;}
.y86_c01204{bottom:71.280000px;}
.y83_c01204{bottom:73.440000px;}
.y80_c01204{bottom:110.880000px;}
.y81_c01204{bottom:112.320000px;}
.y82_c01204{bottom:114.480000px;}
.y7f_c01204{bottom:116.640000px;}
.y7e_c01204{bottom:118.080000px;}
.y7a_c01204{bottom:154.080000px;}
.y7d_c01204{bottom:154.800000px;}
.y7b_c01204{bottom:155.520000px;}
.y7c_c01204{bottom:157.680000px;}
.y79_c01204{bottom:159.120000px;}
.y75_c01204{bottom:196.560000px;}
.y78_c01204{bottom:198.000000px;}
.y76_c01204{bottom:198.720000px;}
.y77_c01204{bottom:200.160000px;}
.y74_c01204{bottom:201.600000px;}
.y71_c01204{bottom:239.040000px;}
.y73_c01204{bottom:240.480000px;}
.y72_c01204{bottom:241.920000px;}
.y70_c01204{bottom:243.360000px;}
.y6f_c01204{bottom:244.080000px;}
.y6a_c01204{bottom:282.240000px;}
.y6c_c01204{bottom:283.680000px;}
.y6b_c01204{bottom:285.120000px;}
.y6e_c01204{bottom:285.840000px;}
.y6d_c01204{bottom:286.560000px;}
.y69_c01204{bottom:287.280000px;}
.y65_c01204{bottom:325.440000px;}
.y67_c01204{bottom:327.600000px;}
.y66_c01204{bottom:328.320000px;}
.y64_c01204{bottom:329.760000px;}
.y63_c01204{bottom:330.480000px;}
.y68_c01204{bottom:331.200000px;}
.y62_c01204{bottom:367.920000px;}
.y60_c01204{bottom:370.080000px;}
.y61_c01204{bottom:372.960000px;}
.y5c_c01204{bottom:401.040000px;}
.y5d_c01204{bottom:402.480000px;}
.y5f_c01204{bottom:403.920000px;}
.y5b_c01204{bottom:404.640000px;}
.y5e_c01204{bottom:405.360000px;}
.y56_c01204{bottom:444.240000px;}
.y57_c01204{bottom:444.960000px;}
.y55_c01204{bottom:446.400000px;}
.y59_c01204{bottom:447.120000px;}
.y5a_c01204{bottom:447.840000px;}
.y58_c01204{bottom:448.560000px;}
.y50_c01204{bottom:486.720000px;}
.y51_c01204{bottom:488.160000px;}
.y4f_c01204{bottom:491.040000px;}
.y54_c01204{bottom:491.760000px;}
.y52_c01204{bottom:492.480000px;}
.y53_c01204{bottom:493.920000px;}
.y4a_c01204{bottom:530.640000px;}
.y48_c01204{bottom:532.080000px;}
.y4b_c01204{bottom:533.520000px;}
.y49_c01204{bottom:534.240000px;}
.y4c_c01204{bottom:534.960000px;}
.y4e_c01204{bottom:535.680000px;}
.y4d_c01204{bottom:536.400000px;}
.y45_c01204{bottom:573.120000px;}
.y44_c01204{bottom:575.280000px;}
.y43_c01204{bottom:576.720000px;}
.y46_c01204{bottom:578.880000px;}
.y47_c01204{bottom:579.600000px;}
.y3e_c01204{bottom:615.600000px;}
.y3d_c01204{bottom:617.760000px;}
.y40_c01204{bottom:619.200000px;}
.y3f_c01204{bottom:619.920000px;}
.y42_c01204{bottom:621.360000px;}
.y41_c01204{bottom:622.800000px;}
.y38_c01204{bottom:658.800000px;}
.y37_c01204{bottom:659.520000px;}
.y36_c01204{bottom:660.240000px;}
.y39_c01204{bottom:663.120000px;}
.y3a_c01204{bottom:663.840000px;}
.y3c_c01204{bottom:665.280000px;}
.y3b_c01204{bottom:666.000000px;}
.y31_c01204{bottom:701.280000px;}
.y2f_c01204{bottom:702.000000px;}
.y30_c01204{bottom:702.720000px;}
.y32_c01204{bottom:705.600000px;}
.y33_c01204{bottom:706.320000px;}
.y35_c01204{bottom:708.480000px;}
.y34_c01204{bottom:709.200000px;}
.y2b_c01204{bottom:744.480000px;}
.y2a_c01204{bottom:745.200000px;}
.y29_c01204{bottom:745.920000px;}
.y2c_c01204{bottom:749.520000px;}
.y2e_c01204{bottom:750.960000px;}
.y2d_c01204{bottom:752.400000px;}
.y24_c01204{bottom:786.960000px;}
.y23_c01204{bottom:787.680000px;}
.y22_c01204{bottom:789.120000px;}
.y25_c01204{bottom:792.000000px;}
.y26_c01204{bottom:792.720000px;}
.y28_c01204{bottom:794.880000px;}
.y27_c01204{bottom:795.600000px;}
.y1d_c01204{bottom:828.720000px;}
.y1c_c01204{bottom:830.880000px;}
.y1e_c01204{bottom:834.480000px;}
.y1f_c01204{bottom:835.920000px;}
.y20_c01204{bottom:836.640000px;}
.y21_c01204{bottom:838.800000px;}
.y17_c01204{bottom:871.920000px;}
.y16_c01204{bottom:872.640000px;}
.y18_c01204{bottom:877.680000px;}
.y1a_c01204{bottom:879.120000px;}
.y19_c01204{bottom:880.560000px;}
.y1b_c01204{bottom:881.280000px;}
.y12_c01204{bottom:914.400000px;}
.y11_c01204{bottom:916.560000px;}
.y13_c01204{bottom:920.880000px;}
.y14_c01204{bottom:922.320000px;}
.y15_c01204{bottom:924.480000px;}
.yd_c01204{bottom:958.320000px;}
.ye_c01204{bottom:964.800000px;}
.yf_c01204{bottom:965.520000px;}
.y10_c01204{bottom:966.960000px;}
.y8_c01204{bottom:1002.240000px;}
.y9_c01204{bottom:1002.960000px;}
.ya_c01204{bottom:1008.000000px;}
.yb_c01204{bottom:1010.880000px;}
.yc_c01204{bottom:1011.600000px;}
.y2_c01204{bottom:1044.720000px;}
.y4_c01204{bottom:1045.440000px;}
.y3_c01204{bottom:1046.880000px;}
.y5_c01204{bottom:1051.200000px;}
.y7_c01204{bottom:1051.920000px;}
.y6_c01204{bottom:1054.080000px;}
.y1_c01204{bottom:1118.880000px;}
.h10_c01204{height:31.100625px;}
.h11_c01204{height:33.692344px;}
.h9_c01204{height:41.467500px;}
.ha_c01204{height:44.059219px;}
.h3_c01204{height:46.650937px;}
.h7_c01204{height:49.242656px;}
.h6_c01204{height:51.834375px;}
.h8_c01204{height:54.426094px;}
.h5_c01204{height:57.017812px;}
.he_c01204{height:59.609531px;}
.hd_c01204{height:62.201250px;}
.hb_c01204{height:64.792969px;}
.hf_c01204{height:65.946094px;}
.h4_c01204{height:67.384687px;}
.h2_c01204{height:69.976406px;}
.hc_c01204{height:71.706094px;}
.h0_c01204{height:1155.600000px;}
.h1_c01204{height:1155.750000px;}
.w0_c01204{width:779.760000px;}
.w1_c01204{width:780.000000px;}
.x0_c01204{left:0.000000px;}
.x2_c01204{left:59.760000px;}
.x12_c01204{left:61.920000px;}
.x25_c01204{left:63.360000px;}
.x32_c01204{left:64.800000px;}
.x38_c01204{left:66.240000px;}
.x3_c01204{left:140.400000px;}
.x13_c01204{left:141.840000px;}
.x20_c01204{left:143.280000px;}
.x2b_c01204{left:145.440000px;}
.x39_c01204{left:146.880000px;}
.x2c_c01204{left:198.720000px;}
.x4_c01204{left:215.280000px;}
.x17_c01204{left:217.440000px;}
.xa_c01204{left:226.800000px;}
.x2e_c01204{left:229.680000px;}
.x3a_c01204{left:231.120000px;}
.x2d_c01204{left:240.480000px;}
.x1a_c01204{left:282.960000px;}
.x21_c01204{left:293.760000px;}
.x26_c01204{left:303.840000px;}
.x1b_c01204{left:324.720000px;}
.x27_c01204{left:357.120000px;}
.x22_c01204{left:380.160000px;}
.x28_c01204{left:402.480000px;}
.x1c_c01204{left:412.560000px;}
.x29_c01204{left:445.680000px;}
.x1d_c01204{left:455.760000px;}
.x5_c01204{left:529.200000px;}
.xd_c01204{left:530.640000px;}
.x1e_c01204{left:532.080000px;}
.x2f_c01204{left:533.520000px;}
.x37_c01204{left:534.960000px;}
.x15_c01204{left:585.360000px;}
.x23_c01204{left:586.800000px;}
.x34_c01204{left:588.240000px;}
.x6_c01204{left:616.320000px;}
.xc_c01204{left:617.760000px;}
.x14_c01204{left:619.200000px;}
.x18_c01204{left:620.640000px;}
.x30_c01204{left:622.080000px;}
.x3b_c01204{left:623.520000px;}
.x7_c01204{left:650.160000px;}
.xe_c01204{left:652.320000px;}
.x2a_c01204{left:653.760000px;}
.x33_c01204{left:655.200000px;}
.x3c_c01204{left:656.640000px;}
.x1_c01204{left:678.960000px;}
.xb_c01204{left:683.280000px;}
.x11_c01204{left:684.720000px;}
.x16_c01204{left:686.160000px;}
.x35_c01204{left:688.320000px;}
.x8_c01204{left:692.640000px;}
.xf_c01204{left:694.800000px;}
.x1f_c01204{left:696.240000px;}
.x24_c01204{left:697.680000px;}
.x36_c01204{left:699.120000px;}
.x9_c01204{left:712.800000px;}
.x10_c01204{left:715.680000px;}
.x19_c01204{left:717.120000px;}
.x31_c01204{left:718.560000px;}
.x3d_c01204{left:720.000000px;}
@media print{
.v0_c01204{vertical-align:0.000000pt;}
.v2_c01204{vertical-align:10.240000pt;}
.v1_c01204{vertical-align:15.360000pt;}
.ls0_c01204{letter-spacing:0.000000pt;}
.ws2_c01204{word-spacing:0.000000pt;}
.ws0_c01204{word-spacing:619.840000pt;}
.ws1_c01204{word-spacing:641.434667pt;}
.fsc_c01204{font-size:30.720000pt;}
.fsd_c01204{font-size:33.280000pt;}
.fs7_c01204{font-size:40.960000pt;}
.fs8_c01204{font-size:43.520000pt;}
.fs1_c01204{font-size:46.080000pt;}
.fs5_c01204{font-size:48.640000pt;}
.fs4_c01204{font-size:51.200000pt;}
.fs6_c01204{font-size:53.760000pt;}
.fs3_c01204{font-size:56.320000pt;}
.fsb_c01204{font-size:58.880000pt;}
.fsa_c01204{font-size:61.440000pt;}
.fs9_c01204{font-size:64.000000pt;}
.fs2_c01204{font-size:66.560000pt;}
.fs0_c01204{font-size:69.120000pt;}
.y0_c01204{bottom:0.000000pt;}
.y84_c01204{bottom:60.160000pt;}
.y85_c01204{bottom:62.080000pt;}
.y87_c01204{bottom:62.720000pt;}
.y86_c01204{bottom:63.360000pt;}
.y83_c01204{bottom:65.280000pt;}
.y80_c01204{bottom:98.560000pt;}
.y81_c01204{bottom:99.840000pt;}
.y82_c01204{bottom:101.760000pt;}
.y7f_c01204{bottom:103.680000pt;}
.y7e_c01204{bottom:104.960000pt;}
.y7a_c01204{bottom:136.960000pt;}
.y7d_c01204{bottom:137.600000pt;}
.y7b_c01204{bottom:138.240000pt;}
.y7c_c01204{bottom:140.160000pt;}
.y79_c01204{bottom:141.440000pt;}
.y75_c01204{bottom:174.720000pt;}
.y78_c01204{bottom:176.000000pt;}
.y76_c01204{bottom:176.640000pt;}
.y77_c01204{bottom:177.920000pt;}
.y74_c01204{bottom:179.200000pt;}
.y71_c01204{bottom:212.480000pt;}
.y73_c01204{bottom:213.760000pt;}
.y72_c01204{bottom:215.040000pt;}
.y70_c01204{bottom:216.320000pt;}
.y6f_c01204{bottom:216.960000pt;}
.y6a_c01204{bottom:250.880000pt;}
.y6c_c01204{bottom:252.160000pt;}
.y6b_c01204{bottom:253.440000pt;}
.y6e_c01204{bottom:254.080000pt;}
.y6d_c01204{bottom:254.720000pt;}
.y69_c01204{bottom:255.360000pt;}
.y65_c01204{bottom:289.280000pt;}
.y67_c01204{bottom:291.200000pt;}
.y66_c01204{bottom:291.840000pt;}
.y64_c01204{bottom:293.120000pt;}
.y63_c01204{bottom:293.760000pt;}
.y68_c01204{bottom:294.400000pt;}
.y62_c01204{bottom:327.040000pt;}
.y60_c01204{bottom:328.960000pt;}
.y61_c01204{bottom:331.520000pt;}
.y5c_c01204{bottom:356.480000pt;}
.y5d_c01204{bottom:357.760000pt;}
.y5f_c01204{bottom:359.040000pt;}
.y5b_c01204{bottom:359.680000pt;}
.y5e_c01204{bottom:360.320000pt;}
.y56_c01204{bottom:394.880000pt;}
.y57_c01204{bottom:395.520000pt;}
.y55_c01204{bottom:396.800000pt;}
.y59_c01204{bottom:397.440000pt;}
.y5a_c01204{bottom:398.080000pt;}
.y58_c01204{bottom:398.720000pt;}
.y50_c01204{bottom:432.640000pt;}
.y51_c01204{bottom:433.920000pt;}
.y4f_c01204{bottom:436.480000pt;}
.y54_c01204{bottom:437.120000pt;}
.y52_c01204{bottom:437.760000pt;}
.y53_c01204{bottom:439.040000pt;}
.y4a_c01204{bottom:471.680000pt;}
.y48_c01204{bottom:472.960000pt;}
.y4b_c01204{bottom:474.240000pt;}
.y49_c01204{bottom:474.880000pt;}
.y4c_c01204{bottom:475.520000pt;}
.y4e_c01204{bottom:476.160000pt;}
.y4d_c01204{bottom:476.800000pt;}
.y45_c01204{bottom:509.440000pt;}
.y44_c01204{bottom:511.360000pt;}
.y43_c01204{bottom:512.640000pt;}
.y46_c01204{bottom:514.560000pt;}
.y47_c01204{bottom:515.200000pt;}
.y3e_c01204{bottom:547.200000pt;}
.y3d_c01204{bottom:549.120000pt;}
.y40_c01204{bottom:550.400000pt;}
.y3f_c01204{bottom:551.040000pt;}
.y42_c01204{bottom:552.320000pt;}
.y41_c01204{bottom:553.600000pt;}
.y38_c01204{bottom:585.600000pt;}
.y37_c01204{bottom:586.240000pt;}
.y36_c01204{bottom:586.880000pt;}
.y39_c01204{bottom:589.440000pt;}
.y3a_c01204{bottom:590.080000pt;}
.y3c_c01204{bottom:591.360000pt;}
.y3b_c01204{bottom:592.000000pt;}
.y31_c01204{bottom:623.360000pt;}
.y2f_c01204{bottom:624.000000pt;}
.y30_c01204{bottom:624.640000pt;}
.y32_c01204{bottom:627.200000pt;}
.y33_c01204{bottom:627.840000pt;}
.y35_c01204{bottom:629.760000pt;}
.y34_c01204{bottom:630.400000pt;}
.y2b_c01204{bottom:661.760000pt;}
.y2a_c01204{bottom:662.400000pt;}
.y29_c01204{bottom:663.040000pt;}
.y2c_c01204{bottom:666.240000pt;}
.y2e_c01204{bottom:667.520000pt;}
.y2d_c01204{bottom:668.800000pt;}
.y24_c01204{bottom:699.520000pt;}
.y23_c01204{bottom:700.160000pt;}
.y22_c01204{bottom:701.440000pt;}
.y25_c01204{bottom:704.000000pt;}
.y26_c01204{bottom:704.640000pt;}
.y28_c01204{bottom:706.560000pt;}
.y27_c01204{bottom:707.200000pt;}
.y1d_c01204{bottom:736.640000pt;}
.y1c_c01204{bottom:738.560000pt;}
.y1e_c01204{bottom:741.760000pt;}
.y1f_c01204{bottom:743.040000pt;}
.y20_c01204{bottom:743.680000pt;}
.y21_c01204{bottom:745.600000pt;}
.y17_c01204{bottom:775.040000pt;}
.y16_c01204{bottom:775.680000pt;}
.y18_c01204{bottom:780.160000pt;}
.y1a_c01204{bottom:781.440000pt;}
.y19_c01204{bottom:782.720000pt;}
.y1b_c01204{bottom:783.360000pt;}
.y12_c01204{bottom:812.800000pt;}
.y11_c01204{bottom:814.720000pt;}
.y13_c01204{bottom:818.560000pt;}
.y14_c01204{bottom:819.840000pt;}
.y15_c01204{bottom:821.760000pt;}
.yd_c01204{bottom:851.840000pt;}
.ye_c01204{bottom:857.600000pt;}
.yf_c01204{bottom:858.240000pt;}
.y10_c01204{bottom:859.520000pt;}
.y8_c01204{bottom:890.880000pt;}
.y9_c01204{bottom:891.520000pt;}
.ya_c01204{bottom:896.000000pt;}
.yb_c01204{bottom:898.560000pt;}
.yc_c01204{bottom:899.200000pt;}
.y2_c01204{bottom:928.640000pt;}
.y4_c01204{bottom:929.280000pt;}
.y3_c01204{bottom:930.560000pt;}
.y5_c01204{bottom:934.400000pt;}
.y7_c01204{bottom:935.040000pt;}
.y6_c01204{bottom:936.960000pt;}
.y1_c01204{bottom:994.560000pt;}
.h10_c01204{height:27.645000pt;}
.h11_c01204{height:29.948750pt;}
.h9_c01204{height:36.860000pt;}
.ha_c01204{height:39.163750pt;}
.h3_c01204{height:41.467500pt;}
.h7_c01204{height:43.771250pt;}
.h6_c01204{height:46.075000pt;}
.h8_c01204{height:48.378750pt;}
.h5_c01204{height:50.682500pt;}
.he_c01204{height:52.986250pt;}
.hd_c01204{height:55.290000pt;}
.hb_c01204{height:57.593750pt;}
.hf_c01204{height:58.618750pt;}
.h4_c01204{height:59.897500pt;}
.h2_c01204{height:62.201250pt;}
.hc_c01204{height:63.738750pt;}
.h0_c01204{height:1027.200000pt;}
.h1_c01204{height:1027.333333pt;}
.w0_c01204{width:693.120000pt;}
.w1_c01204{width:693.333333pt;}
.x0_c01204{left:0.000000pt;}
.x2_c01204{left:53.120000pt;}
.x12_c01204{left:55.040000pt;}
.x25_c01204{left:56.320000pt;}
.x32_c01204{left:57.600000pt;}
.x38_c01204{left:58.880000pt;}
.x3_c01204{left:124.800000pt;}
.x13_c01204{left:126.080000pt;}
.x20_c01204{left:127.360000pt;}
.x2b_c01204{left:129.280000pt;}
.x39_c01204{left:130.560000pt;}
.x2c_c01204{left:176.640000pt;}
.x4_c01204{left:191.360000pt;}
.x17_c01204{left:193.280000pt;}
.xa_c01204{left:201.600000pt;}
.x2e_c01204{left:204.160000pt;}
.x3a_c01204{left:205.440000pt;}
.x2d_c01204{left:213.760000pt;}
.x1a_c01204{left:251.520000pt;}
.x21_c01204{left:261.120000pt;}
.x26_c01204{left:270.080000pt;}
.x1b_c01204{left:288.640000pt;}
.x27_c01204{left:317.440000pt;}
.x22_c01204{left:337.920000pt;}
.x28_c01204{left:357.760000pt;}
.x1c_c01204{left:366.720000pt;}
.x29_c01204{left:396.160000pt;}
.x1d_c01204{left:405.120000pt;}
.x5_c01204{left:470.400000pt;}
.xd_c01204{left:471.680000pt;}
.x1e_c01204{left:472.960000pt;}
.x2f_c01204{left:474.240000pt;}
.x37_c01204{left:475.520000pt;}
.x15_c01204{left:520.320000pt;}
.x23_c01204{left:521.600000pt;}
.x34_c01204{left:522.880000pt;}
.x6_c01204{left:547.840000pt;}
.xc_c01204{left:549.120000pt;}
.x14_c01204{left:550.400000pt;}
.x18_c01204{left:551.680000pt;}
.x30_c01204{left:552.960000pt;}
.x3b_c01204{left:554.240000pt;}
.x7_c01204{left:577.920000pt;}
.xe_c01204{left:579.840000pt;}
.x2a_c01204{left:581.120000pt;}
.x33_c01204{left:582.400000pt;}
.x3c_c01204{left:583.680000pt;}
.x1_c01204{left:603.520000pt;}
.xb_c01204{left:607.360000pt;}
.x11_c01204{left:608.640000pt;}
.x16_c01204{left:609.920000pt;}
.x35_c01204{left:611.840000pt;}
.x8_c01204{left:615.680000pt;}
.xf_c01204{left:617.600000pt;}
.x1f_c01204{left:618.880000pt;}
.x24_c01204{left:620.160000pt;}
.x36_c01204{left:621.440000pt;}
.x9_c01204{left:633.600000pt;}
.x10_c01204{left:636.160000pt;}
.x19_c01204{left:637.440000pt;}
.x31_c01204{left:638.720000pt;}
.x3d_c01204{left:640.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_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_064f1bad6d5e1e4fd822f823.woff2')format("woff");}.ff1_c01205{font-family:ff1_c01205;line-height:1.109863;font-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_c01205{transform:matrix(0.138625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138625,0.000000,0.000000,0.250000,0,0);}
.m35_c01205{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m3b_c01205{transform:matrix(0.201050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201050,0.000000,0.000000,0.250000,0,0);}
.m43_c01205{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);}
.m31_c01205{transform:matrix(0.248700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248700,0.000000,0.000000,0.250000,0,0);}
.m24_c01205{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);}
.m41_c01205{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_c01205{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01205{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m21_c01205{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);}
.m45_c01205{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m5_c01205{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mc_c01205{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);}
.m3e_c01205{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m18_c01205{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.md_c01205{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);}
.m2a_c01205{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01205{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);}
.m2b_c01205{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.ma_c01205{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m9_c01205{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.me_c01205{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m48_c01205{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m4_c01205{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01205{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m13_c01205{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m40_c01205{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m44_c01205{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01205{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m16_c01205{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m33_c01205{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m38_c01205{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m23_c01205{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mb_c01205{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);}
.m37_c01205{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m26_c01205{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1_c01205{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01205{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m17_c01205{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);}
.m8_c01205{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01205{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);}
.m34_c01205{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01205{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);}
.m11_c01205{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);}
.m0_c01205{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);}
.m36_c01205{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);}
.m22_c01205{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01205{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m15_c01205{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m2_c01205{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01205{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01205{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m27_c01205{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m19_c01205{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);}
.m42_c01205{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01205{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m25_c01205{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);}
.m28_c01205{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m14_c01205{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);}
.m39_c01205{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01205{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01205{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m47_c01205{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m30_c01205{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);}
.m3a_c01205{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m46_c01205{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m32_c01205{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m20_c01205{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m49_c01205{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);}
.m29_c01205{transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01205{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.m7_c01205{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.m10_c01205{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01205{transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01205{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.v1_c01205{vertical-align:-2.880000px;}
.v0_c01205{vertical-align:0.000000px;}
.v2_c01205{vertical-align:14.400000px;}
.ls0_c01205{letter-spacing:0.000000px;}
.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;}
}
.ws4_c01205{word-spacing:0.000000px;}
.ws1_c01205{word-spacing:4.177200px;}
.ws3_c01205{word-spacing:11.693143px;}
.ws2_c01205{word-spacing:15.600000px;}
.ws0_c01205{word-spacing:20.131079px;}
._0_c01205{width:88.754041px;}
.fc0_c01205{color:transparent;}
.fsb_c01205{font-size:34.560000px;}
.fs8_c01205{font-size:37.440000px;}
.fsc_c01205{font-size:46.080000px;}
.fs4_c01205{font-size:48.960000px;}
.fs2_c01205{font-size:51.840000px;}
.fs3_c01205{font-size:54.720000px;}
.fs5_c01205{font-size:57.600000px;}
.fs1_c01205{font-size:60.480000px;}
.fsf_c01205{font-size:63.360000px;}
.fsa_c01205{font-size:66.240000px;}
.fs9_c01205{font-size:69.120000px;}
.fs7_c01205{font-size:72.000000px;}
.fs0_c01205{font-size:74.880000px;}
.fs6_c01205{font-size:77.760000px;}
.fsd_c01205{font-size:100.800000px;}
.fse_c01205{font-size:103.680000px;}
.y0_c01205{bottom:0.000000px;}
.y8a_c01205{bottom:99.360000px;}
.y8b_c01205{bottom:100.080000px;}
.y89_c01205{bottom:100.800000px;}
.y86_c01205{bottom:102.240000px;}
.y88_c01205{bottom:103.680000px;}
.y87_c01205{bottom:104.400000px;}
.y85_c01205{bottom:106.560000px;}
.y84_c01205{bottom:136.080000px;}
.y83_c01205{bottom:143.280000px;}
.y82_c01205{bottom:144.000000px;}
.y7f_c01205{bottom:145.440000px;}
.y81_c01205{bottom:146.160000px;}
.y80_c01205{bottom:146.880000px;}
.y7e_c01205{bottom:149.760000px;}
.y7d_c01205{bottom:178.560000px;}
.y7b_c01205{bottom:185.760000px;}
.y7c_c01205{bottom:186.480000px;}
.y77_c01205{bottom:187.200000px;}
.y7a_c01205{bottom:189.360000px;}
.y79_c01205{bottom:190.080000px;}
.y78_c01205{bottom:190.800000px;}
.y76_c01205{bottom:192.240000px;}
.y73_c01205{bottom:228.960000px;}
.y75_c01205{bottom:229.680000px;}
.y72_c01205{bottom:230.400000px;}
.y74_c01205{bottom:231.840000px;}
.y71_c01205{bottom:234.000000px;}
.y70_c01205{bottom:272.160000px;}
.y6d_c01205{bottom:272.880000px;}
.y6e_c01205{bottom:274.320000px;}
.y6f_c01205{bottom:275.040000px;}
.y6c_c01205{bottom:277.200000px;}
.y6a_c01205{bottom:315.360000px;}
.y68_c01205{bottom:316.080000px;}
.y67_c01205{bottom:316.800000px;}
.y6b_c01205{bottom:317.520000px;}
.y69_c01205{bottom:318.240000px;}
.y66_c01205{bottom:319.680000px;}
.y63_c01205{bottom:358.560000px;}
.y65_c01205{bottom:359.280000px;}
.y62_c01205{bottom:361.440000px;}
.y64_c01205{bottom:362.160000px;}
.y5e_c01205{bottom:401.040000px;}
.y60_c01205{bottom:401.760000px;}
.y61_c01205{bottom:403.200000px;}
.y5d_c01205{bottom:403.920000px;}
.y5f_c01205{bottom:404.640000px;}
.y5c_c01205{bottom:443.520000px;}
.y58_c01205{bottom:444.240000px;}
.y5a_c01205{bottom:444.960000px;}
.y5b_c01205{bottom:446.400000px;}
.y57_c01205{bottom:447.120000px;}
.y59_c01205{bottom:447.840000px;}
.y56_c01205{bottom:478.800000px;}
.y51_c01205{bottom:486.720000px;}
.y55_c01205{bottom:487.440000px;}
.y53_c01205{bottom:488.160000px;}
.y50_c01205{bottom:488.880000px;}
.y54_c01205{bottom:489.600000px;}
.y52_c01205{bottom:490.320000px;}
.y4c_c01205{bottom:529.200000px;}
.y4f_c01205{bottom:529.920000px;}
.y4e_c01205{bottom:530.640000px;}
.y4b_c01205{bottom:532.080000px;}
.y4d_c01205{bottom:532.800000px;}
.y48_c01205{bottom:565.200000px;}
.y44_c01205{bottom:571.680000px;}
.y46_c01205{bottom:573.120000px;}
.y43_c01205{bottom:573.840000px;}
.y4a_c01205{bottom:574.560000px;}
.y47_c01205{bottom:575.280000px;}
.y45_c01205{bottom:576.000000px;}
.y49_c01205{bottom:576.720000px;}
.y41_c01205{bottom:614.880000px;}
.y40_c01205{bottom:616.320000px;}
.y42_c01205{bottom:619.200000px;}
.y3b_c01205{bottom:658.080000px;}
.y3d_c01205{bottom:658.800000px;}
.y3a_c01205{bottom:660.240000px;}
.y3c_c01205{bottom:660.960000px;}
.y3e_c01205{bottom:662.400000px;}
.y3f_c01205{bottom:663.120000px;}
.y35_c01205{bottom:700.560000px;}
.y34_c01205{bottom:702.000000px;}
.y38_c01205{bottom:703.440000px;}
.y39_c01205{bottom:704.160000px;}
.y36_c01205{bottom:704.880000px;}
.y37_c01205{bottom:705.600000px;}
.y2e_c01205{bottom:743.040000px;}
.y2d_c01205{bottom:744.480000px;}
.y30_c01205{bottom:745.920000px;}
.y33_c01205{bottom:746.640000px;}
.y2f_c01205{bottom:747.360000px;}
.y31_c01205{bottom:748.080000px;}
.y32_c01205{bottom:748.800000px;}
.y28_c01205{bottom:786.240000px;}
.y27_c01205{bottom:787.680000px;}
.y29_c01205{bottom:788.400000px;}
.y2c_c01205{bottom:789.840000px;}
.y2a_c01205{bottom:791.280000px;}
.y2b_c01205{bottom:792.000000px;}
.y26_c01205{bottom:824.400000px;}
.y20_c01205{bottom:828.720000px;}
.y1f_c01205{bottom:830.880000px;}
.y21_c01205{bottom:831.600000px;}
.y22_c01205{bottom:833.760000px;}
.y24_c01205{bottom:834.480000px;}
.y23_c01205{bottom:835.200000px;}
.y25_c01205{bottom:836.640000px;}
.y19_c01205{bottom:871.200000px;}
.y18_c01205{bottom:873.360000px;}
.y1b_c01205{bottom:874.800000px;}
.y1a_c01205{bottom:876.240000px;}
.y1c_c01205{bottom:876.960000px;}
.y1d_c01205{bottom:877.680000px;}
.y1e_c01205{bottom:878.400000px;}
.y12_c01205{bottom:914.400000px;}
.y11_c01205{bottom:915.840000px;}
.y13_c01205{bottom:916.560000px;}
.y16_c01205{bottom:917.280000px;}
.y14_c01205{bottom:919.440000px;}
.y15_c01205{bottom:920.160000px;}
.y17_c01205{bottom:920.880000px;}
.yd_c01205{bottom:957.600000px;}
.ye_c01205{bottom:961.200000px;}
.yf_c01205{bottom:962.640000px;}
.y10_c01205{bottom:964.800000px;}
.y9_c01205{bottom:1000.800000px;}
.ya_c01205{bottom:1005.840000px;}
.yc_c01205{bottom:1007.280000px;}
.yb_c01205{bottom:1008.000000px;}
.y4_c01205{bottom:1044.000000px;}
.y2_c01205{bottom:1044.720000px;}
.y3_c01205{bottom:1046.160000px;}
.y5_c01205{bottom:1048.320000px;}
.y6_c01205{bottom:1049.040000px;}
.y7_c01205{bottom:1050.480000px;}
.y8_c01205{bottom:1051.200000px;}
.y1_c01205{bottom:1121.040000px;}
.hd_c01205{height:31.100625px;}
.ha_c01205{height:33.692344px;}
.he_c01205{height:41.467500px;}
.h6_c01205{height:44.059219px;}
.h4_c01205{height:46.650937px;}
.h5_c01205{height:49.242656px;}
.h7_c01205{height:51.834375px;}
.h3_c01205{height:54.426094px;}
.h11_c01205{height:57.017812px;}
.hc_c01205{height:59.609531px;}
.hb_c01205{height:62.201250px;}
.h9_c01205{height:64.792969px;}
.h2_c01205{height:67.384687px;}
.h8_c01205{height:69.976406px;}
.hf_c01205{height:90.710156px;}
.h10_c01205{height:93.301875px;}
.h0_c01205{height:1153.440000px;}
.h1_c01205{height:1153.500000px;}
.w0_c01205{width:776.880000px;}
.w1_c01205{width:777.000000px;}
.x0_c01205{left:0.000000px;}
.x2_c01205{left:61.200000px;}
.x25_c01205{left:62.640000px;}
.x3_c01205{left:142.560000px;}
.x29_c01205{left:144.720000px;}
.x4_c01205{left:227.520000px;}
.xb_c01205{left:228.960000px;}
.x12_c01205{left:239.760000px;}
.x16_c01205{left:250.560000px;}
.xf_c01205{left:270.720000px;}
.x2c_c01205{left:272.160000px;}
.x24_c01205{left:282.240000px;}
.x28_c01205{left:304.560000px;}
.xc_c01205{left:313.920000px;}
.x13_c01205{left:324.000000px;}
.x2e_c01205{left:325.440000px;}
.x2d_c01205{left:326.880000px;}
.x26_c01205{left:346.320000px;}
.x10_c01205{left:357.120000px;}
.x17_c01205{left:367.200000px;}
.xd_c01205{left:368.640000px;}
.x14_c01205{left:379.440000px;}
.x27_c01205{left:401.760000px;}
.x11_c01205{left:412.560000px;}
.x2a_c01205{left:421.920000px;}
.x18_c01205{left:423.360000px;}
.x2b_c01205{left:455.040000px;}
.xe_c01205{left:466.560000px;}
.x15_c01205{left:477.360000px;}
.x1c_c01205{left:504.000000px;}
.x5_c01205{left:531.360000px;}
.x19_c01205{left:585.360000px;}
.x1a_c01205{left:597.600000px;}
.x22_c01205{left:618.480000px;}
.x6_c01205{left:619.920000px;}
.x1d_c01205{left:630.720000px;}
.x1b_c01205{left:642.960000px;}
.x7_c01205{left:652.320000px;}
.x1_c01205{left:663.120000px;}
.x8_c01205{left:685.440000px;}
.xa_c01205{left:695.520000px;}
.x20_c01205{left:696.960000px;}
.x1e_c01205{left:707.040000px;}
.x9_c01205{left:715.680000px;}
.x21_c01205{left:717.120000px;}
.x1f_c01205{left:727.920000px;}
.x23_c01205{left:730.080000px;}
@media print{
.v1_c01205{vertical-align:-2.560000pt;}
.v0_c01205{vertical-align:0.000000pt;}
.v2_c01205{vertical-align:12.800000pt;}
.ls0_c01205{letter-spacing:0.000000pt;}
.ws4_c01205{word-spacing:0.000000pt;}
.ws1_c01205{word-spacing:3.713067pt;}
.ws3_c01205{word-spacing:10.393905pt;}
.ws2_c01205{word-spacing:13.866667pt;}
.ws0_c01205{word-spacing:17.894292pt;}
._0_c01205{width:78.892481pt;}
.fsb_c01205{font-size:30.720000pt;}
.fs8_c01205{font-size:33.280000pt;}
.fsc_c01205{font-size:40.960000pt;}
.fs4_c01205{font-size:43.520000pt;}
.fs2_c01205{font-size:46.080000pt;}
.fs3_c01205{font-size:48.640000pt;}
.fs5_c01205{font-size:51.200000pt;}
.fs1_c01205{font-size:53.760000pt;}
.fsf_c01205{font-size:56.320000pt;}
.fsa_c01205{font-size:58.880000pt;}
.fs9_c01205{font-size:61.440000pt;}
.fs7_c01205{font-size:64.000000pt;}
.fs0_c01205{font-size:66.560000pt;}
.fs6_c01205{font-size:69.120000pt;}
.fsd_c01205{font-size:89.600000pt;}
.fse_c01205{font-size:92.160000pt;}
.y0_c01205{bottom:0.000000pt;}
.y8a_c01205{bottom:88.320000pt;}
.y8b_c01205{bottom:88.960000pt;}
.y89_c01205{bottom:89.600000pt;}
.y86_c01205{bottom:90.880000pt;}
.y88_c01205{bottom:92.160000pt;}
.y87_c01205{bottom:92.800000pt;}
.y85_c01205{bottom:94.720000pt;}
.y84_c01205{bottom:120.960000pt;}
.y83_c01205{bottom:127.360000pt;}
.y82_c01205{bottom:128.000000pt;}
.y7f_c01205{bottom:129.280000pt;}
.y81_c01205{bottom:129.920000pt;}
.y80_c01205{bottom:130.560000pt;}
.y7e_c01205{bottom:133.120000pt;}
.y7d_c01205{bottom:158.720000pt;}
.y7b_c01205{bottom:165.120000pt;}
.y7c_c01205{bottom:165.760000pt;}
.y77_c01205{bottom:166.400000pt;}
.y7a_c01205{bottom:168.320000pt;}
.y79_c01205{bottom:168.960000pt;}
.y78_c01205{bottom:169.600000pt;}
.y76_c01205{bottom:170.880000pt;}
.y73_c01205{bottom:203.520000pt;}
.y75_c01205{bottom:204.160000pt;}
.y72_c01205{bottom:204.800000pt;}
.y74_c01205{bottom:206.080000pt;}
.y71_c01205{bottom:208.000000pt;}
.y70_c01205{bottom:241.920000pt;}
.y6d_c01205{bottom:242.560000pt;}
.y6e_c01205{bottom:243.840000pt;}
.y6f_c01205{bottom:244.480000pt;}
.y6c_c01205{bottom:246.400000pt;}
.y6a_c01205{bottom:280.320000pt;}
.y68_c01205{bottom:280.960000pt;}
.y67_c01205{bottom:281.600000pt;}
.y6b_c01205{bottom:282.240000pt;}
.y69_c01205{bottom:282.880000pt;}
.y66_c01205{bottom:284.160000pt;}
.y63_c01205{bottom:318.720000pt;}
.y65_c01205{bottom:319.360000pt;}
.y62_c01205{bottom:321.280000pt;}
.y64_c01205{bottom:321.920000pt;}
.y5e_c01205{bottom:356.480000pt;}
.y60_c01205{bottom:357.120000pt;}
.y61_c01205{bottom:358.400000pt;}
.y5d_c01205{bottom:359.040000pt;}
.y5f_c01205{bottom:359.680000pt;}
.y5c_c01205{bottom:394.240000pt;}
.y58_c01205{bottom:394.880000pt;}
.y5a_c01205{bottom:395.520000pt;}
.y5b_c01205{bottom:396.800000pt;}
.y57_c01205{bottom:397.440000pt;}
.y59_c01205{bottom:398.080000pt;}
.y56_c01205{bottom:425.600000pt;}
.y51_c01205{bottom:432.640000pt;}
.y55_c01205{bottom:433.280000pt;}
.y53_c01205{bottom:433.920000pt;}
.y50_c01205{bottom:434.560000pt;}
.y54_c01205{bottom:435.200000pt;}
.y52_c01205{bottom:435.840000pt;}
.y4c_c01205{bottom:470.400000pt;}
.y4f_c01205{bottom:471.040000pt;}
.y4e_c01205{bottom:471.680000pt;}
.y4b_c01205{bottom:472.960000pt;}
.y4d_c01205{bottom:473.600000pt;}
.y48_c01205{bottom:502.400000pt;}
.y44_c01205{bottom:508.160000pt;}
.y46_c01205{bottom:509.440000pt;}
.y43_c01205{bottom:510.080000pt;}
.y4a_c01205{bottom:510.720000pt;}
.y47_c01205{bottom:511.360000pt;}
.y45_c01205{bottom:512.000000pt;}
.y49_c01205{bottom:512.640000pt;}
.y41_c01205{bottom:546.560000pt;}
.y40_c01205{bottom:547.840000pt;}
.y42_c01205{bottom:550.400000pt;}
.y3b_c01205{bottom:584.960000pt;}
.y3d_c01205{bottom:585.600000pt;}
.y3a_c01205{bottom:586.880000pt;}
.y3c_c01205{bottom:587.520000pt;}
.y3e_c01205{bottom:588.800000pt;}
.y3f_c01205{bottom:589.440000pt;}
.y35_c01205{bottom:622.720000pt;}
.y34_c01205{bottom:624.000000pt;}
.y38_c01205{bottom:625.280000pt;}
.y39_c01205{bottom:625.920000pt;}
.y36_c01205{bottom:626.560000pt;}
.y37_c01205{bottom:627.200000pt;}
.y2e_c01205{bottom:660.480000pt;}
.y2d_c01205{bottom:661.760000pt;}
.y30_c01205{bottom:663.040000pt;}
.y33_c01205{bottom:663.680000pt;}
.y2f_c01205{bottom:664.320000pt;}
.y31_c01205{bottom:664.960000pt;}
.y32_c01205{bottom:665.600000pt;}
.y28_c01205{bottom:698.880000pt;}
.y27_c01205{bottom:700.160000pt;}
.y29_c01205{bottom:700.800000pt;}
.y2c_c01205{bottom:702.080000pt;}
.y2a_c01205{bottom:703.360000pt;}
.y2b_c01205{bottom:704.000000pt;}
.y26_c01205{bottom:732.800000pt;}
.y20_c01205{bottom:736.640000pt;}
.y1f_c01205{bottom:738.560000pt;}
.y21_c01205{bottom:739.200000pt;}
.y22_c01205{bottom:741.120000pt;}
.y24_c01205{bottom:741.760000pt;}
.y23_c01205{bottom:742.400000pt;}
.y25_c01205{bottom:743.680000pt;}
.y19_c01205{bottom:774.400000pt;}
.y18_c01205{bottom:776.320000pt;}
.y1b_c01205{bottom:777.600000pt;}
.y1a_c01205{bottom:778.880000pt;}
.y1c_c01205{bottom:779.520000pt;}
.y1d_c01205{bottom:780.160000pt;}
.y1e_c01205{bottom:780.800000pt;}
.y12_c01205{bottom:812.800000pt;}
.y11_c01205{bottom:814.080000pt;}
.y13_c01205{bottom:814.720000pt;}
.y16_c01205{bottom:815.360000pt;}
.y14_c01205{bottom:817.280000pt;}
.y15_c01205{bottom:817.920000pt;}
.y17_c01205{bottom:818.560000pt;}
.yd_c01205{bottom:851.200000pt;}
.ye_c01205{bottom:854.400000pt;}
.yf_c01205{bottom:855.680000pt;}
.y10_c01205{bottom:857.600000pt;}
.y9_c01205{bottom:889.600000pt;}
.ya_c01205{bottom:894.080000pt;}
.yc_c01205{bottom:895.360000pt;}
.yb_c01205{bottom:896.000000pt;}
.y4_c01205{bottom:928.000000pt;}
.y2_c01205{bottom:928.640000pt;}
.y3_c01205{bottom:929.920000pt;}
.y5_c01205{bottom:931.840000pt;}
.y6_c01205{bottom:932.480000pt;}
.y7_c01205{bottom:933.760000pt;}
.y8_c01205{bottom:934.400000pt;}
.y1_c01205{bottom:996.480000pt;}
.hd_c01205{height:27.645000pt;}
.ha_c01205{height:29.948750pt;}
.he_c01205{height:36.860000pt;}
.h6_c01205{height:39.163750pt;}
.h4_c01205{height:41.467500pt;}
.h5_c01205{height:43.771250pt;}
.h7_c01205{height:46.075000pt;}
.h3_c01205{height:48.378750pt;}
.h11_c01205{height:50.682500pt;}
.hc_c01205{height:52.986250pt;}
.hb_c01205{height:55.290000pt;}
.h9_c01205{height:57.593750pt;}
.h2_c01205{height:59.897500pt;}
.h8_c01205{height:62.201250pt;}
.hf_c01205{height:80.631250pt;}
.h10_c01205{height:82.935000pt;}
.h0_c01205{height:1025.280000pt;}
.h1_c01205{height:1025.333333pt;}
.w0_c01205{width:690.560000pt;}
.w1_c01205{width:690.666667pt;}
.x0_c01205{left:0.000000pt;}
.x2_c01205{left:54.400000pt;}
.x25_c01205{left:55.680000pt;}
.x3_c01205{left:126.720000pt;}
.x29_c01205{left:128.640000pt;}
.x4_c01205{left:202.240000pt;}
.xb_c01205{left:203.520000pt;}
.x12_c01205{left:213.120000pt;}
.x16_c01205{left:222.720000pt;}
.xf_c01205{left:240.640000pt;}
.x2c_c01205{left:241.920000pt;}
.x24_c01205{left:250.880000pt;}
.x28_c01205{left:270.720000pt;}
.xc_c01205{left:279.040000pt;}
.x13_c01205{left:288.000000pt;}
.x2e_c01205{left:289.280000pt;}
.x2d_c01205{left:290.560000pt;}
.x26_c01205{left:307.840000pt;}
.x10_c01205{left:317.440000pt;}
.x17_c01205{left:326.400000pt;}
.xd_c01205{left:327.680000pt;}
.x14_c01205{left:337.280000pt;}
.x27_c01205{left:357.120000pt;}
.x11_c01205{left:366.720000pt;}
.x2a_c01205{left:375.040000pt;}
.x18_c01205{left:376.320000pt;}
.x2b_c01205{left:404.480000pt;}
.xe_c01205{left:414.720000pt;}
.x15_c01205{left:424.320000pt;}
.x1c_c01205{left:448.000000pt;}
.x5_c01205{left:472.320000pt;}
.x19_c01205{left:520.320000pt;}
.x1a_c01205{left:531.200000pt;}
.x22_c01205{left:549.760000pt;}
.x6_c01205{left:551.040000pt;}
.x1d_c01205{left:560.640000pt;}
.x1b_c01205{left:571.520000pt;}
.x7_c01205{left:579.840000pt;}
.x1_c01205{left:589.440000pt;}
.x8_c01205{left:609.280000pt;}
.xa_c01205{left:618.240000pt;}
.x20_c01205{left:619.520000pt;}
.x1e_c01205{left:628.480000pt;}
.x9_c01205{left:636.160000pt;}
.x21_c01205{left:637.440000pt;}
.x1f_c01205{left:647.040000pt;}
.x23_c01205{left:648.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_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_26be255966172871a67f4e87.woff2')format("woff");}.ff1_c01206{font-family:ff1_c01206;line-height:1.109863;font-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_c01206{transform:matrix(0.056400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056400,0.000000,0.000000,0.250000,0,0);}
.m45_c01206{transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01206{transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);}
.m3e_c01206{transform:matrix(0.236900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236900,0.000000,0.000000,0.250000,0,0);}
.m39_c01206{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m2b_c01206{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m42_c01206{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m27_c01206{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m26_c01206{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);}
.m37_c01206{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);}
.m44_c01206{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);}
.m21_c01206{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);}
.m35_c01206{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m13_c01206{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m14_c01206{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m20_c01206{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m36_c01206{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m2_c01206{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m19_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);}
.m18_c01206{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.ma_c01206{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m12_c01206{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_c01206{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);}
.m29_c01206{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01206{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m43_c01206{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m28_c01206{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01206{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01206{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m24_c01206{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01206{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m7_c01206{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m15_c01206{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01206{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m23_c01206{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mf_c01206{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m32_c01206{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01206{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);}
.m34_c01206{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m9_c01206{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01206{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);}
.m30_c01206{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m25_c01206{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01206{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);}
.mc_c01206{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m5_c01206{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m0_c01206{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);}
.m22_c01206{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);}
.m11_c01206{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);}
.m3b_c01206{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m1_c01206{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01206{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);}
.me_c01206{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m17_c01206{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01206{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01206{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);}
.m6_c01206{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);}
.m10_c01206{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01206{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.mb_c01206{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);}
.m2f_c01206{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m38_c01206{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m3_c01206{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m4_c01206{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);}
.m31_c01206{transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01206{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m41_c01206{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m16_c01206{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01206{transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);}
.m33_c01206{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.v0_c01206{vertical-align:0.000000px;}
.v1_c01206{vertical-align:17.280000px;}
.ls0_c01206{letter-spacing:0.000000px;}
.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;}
}
.ws2_c01206{word-spacing:0.000000px;}
.ws1_c01206{word-spacing:22.765128px;}
.ws0_c01206{word-spacing:1214.718960px;}
.fc0_c01206{color:transparent;}
.fs2_c01206{font-size:34.560000px;}
.fs7_c01206{font-size:40.320000px;}
.fsb_c01206{font-size:43.200000px;}
.fsa_c01206{font-size:46.080000px;}
.fs4_c01206{font-size:48.960000px;}
.fs8_c01206{font-size:51.840000px;}
.fs1_c01206{font-size:54.720000px;}
.fs3_c01206{font-size:57.600000px;}
.fs9_c01206{font-size:60.480000px;}
.fsc_c01206{font-size:63.360000px;}
.fs6_c01206{font-size:66.240000px;}
.fse_c01206{font-size:69.120000px;}
.fs5_c01206{font-size:72.000000px;}
.fs0_c01206{font-size:74.880000px;}
.fsd_c01206{font-size:77.760000px;}
.fs10_c01206{font-size:164.160000px;}
.fsf_c01206{font-size:276.480000px;}
.y0_c01206{bottom:0.000000px;}
.y91_c01206{bottom:0.720000px;}
.y8f_c01206{bottom:23.040000px;}
.y90_c01206{bottom:23.760000px;}
.y8e_c01206{bottom:24.480000px;}
.y8d_c01206{bottom:25.200000px;}
.y8c_c01206{bottom:30.240000px;}
.y83_c01206{bottom:42.480000px;}
.y8a_c01206{bottom:63.360000px;}
.y88_c01206{bottom:64.080000px;}
.y8b_c01206{bottom:64.800000px;}
.y86_c01206{bottom:65.520000px;}
.y85_c01206{bottom:66.240000px;}
.y89_c01206{bottom:66.960000px;}
.y87_c01206{bottom:68.400000px;}
.y84_c01206{bottom:71.280000px;}
.y82_c01206{bottom:107.280000px;}
.y7f_c01206{bottom:108.000000px;}
.y7e_c01206{bottom:108.720000px;}
.y80_c01206{bottom:109.440000px;}
.y81_c01206{bottom:110.160000px;}
.y7d_c01206{bottom:113.760000px;}
.y79_c01206{bottom:150.480000px;}
.y78_c01206{bottom:151.200000px;}
.y77_c01206{bottom:151.920000px;}
.y7a_c01206{bottom:152.640000px;}
.y7c_c01206{bottom:153.360000px;}
.y7b_c01206{bottom:154.080000px;}
.y76_c01206{bottom:156.240000px;}
.y73_c01206{bottom:193.680000px;}
.y72_c01206{bottom:194.400000px;}
.y74_c01206{bottom:195.120000px;}
.y75_c01206{bottom:195.840000px;}
.y71_c01206{bottom:198.720000px;}
.y70_c01206{bottom:236.160000px;}
.y6e_c01206{bottom:236.880000px;}
.y6d_c01206{bottom:238.320000px;}
.y6f_c01206{bottom:239.040000px;}
.y6c_c01206{bottom:241.200000px;}
.y67_c01206{bottom:268.560000px;}
.y69_c01206{bottom:269.280000px;}
.y6b_c01206{bottom:270.000000px;}
.y6a_c01206{bottom:271.440000px;}
.y68_c01206{bottom:272.160000px;}
.y66_c01206{bottom:273.600000px;}
.y62_c01206{bottom:311.040000px;}
.y64_c01206{bottom:312.480000px;}
.y65_c01206{bottom:313.200000px;}
.y63_c01206{bottom:314.640000px;}
.y61_c01206{bottom:315.360000px;}
.y60_c01206{bottom:354.240000px;}
.y5d_c01206{bottom:354.960000px;}
.y5f_c01206{bottom:356.400000px;}
.y5c_c01206{bottom:357.840000px;}
.y5e_c01206{bottom:358.560000px;}
.y58_c01206{bottom:397.440000px;}
.y5a_c01206{bottom:398.880000px;}
.y57_c01206{bottom:399.600000px;}
.y59_c01206{bottom:400.320000px;}
.y5b_c01206{bottom:401.040000px;}
.y56_c01206{bottom:401.760000px;}
.y51_c01206{bottom:440.640000px;}
.y54_c01206{bottom:442.080000px;}
.y53_c01206{bottom:442.800000px;}
.y50_c01206{bottom:443.520000px;}
.y52_c01206{bottom:444.240000px;}
.y55_c01206{bottom:444.960000px;}
.y4d_c01206{bottom:483.120000px;}
.y4f_c01206{bottom:485.280000px;}
.y4c_c01206{bottom:486.000000px;}
.y4e_c01206{bottom:488.160000px;}
.y48_c01206{bottom:526.320000px;}
.y47_c01206{bottom:529.200000px;}
.y4a_c01206{bottom:530.640000px;}
.y49_c01206{bottom:531.360000px;}
.y4b_c01206{bottom:532.080000px;}
.y43_c01206{bottom:568.800000px;}
.y45_c01206{bottom:571.680000px;}
.y42_c01206{bottom:573.120000px;}
.y44_c01206{bottom:574.560000px;}
.y46_c01206{bottom:575.280000px;}
.y3e_c01206{bottom:612.000000px;}
.y3d_c01206{bottom:615.600000px;}
.y40_c01206{bottom:616.320000px;}
.y3f_c01206{bottom:617.040000px;}
.y41_c01206{bottom:618.480000px;}
.y39_c01206{bottom:654.480000px;}
.y38_c01206{bottom:657.360000px;}
.y3a_c01206{bottom:659.520000px;}
.y3b_c01206{bottom:660.240000px;}
.y3c_c01206{bottom:660.960000px;}
.y33_c01206{bottom:696.960000px;}
.y32_c01206{bottom:699.840000px;}
.y35_c01206{bottom:700.560000px;}
.y37_c01206{bottom:701.280000px;}
.y36_c01206{bottom:702.720000px;}
.y34_c01206{bottom:703.440000px;}
.y2e_c01206{bottom:739.440000px;}
.y2d_c01206{bottom:741.600000px;}
.y31_c01206{bottom:744.480000px;}
.y30_c01206{bottom:745.200000px;}
.y2f_c01206{bottom:746.640000px;}
.y29_c01206{bottom:782.640000px;}
.y28_c01206{bottom:784.080000px;}
.y2b_c01206{bottom:786.960000px;}
.y2c_c01206{bottom:787.680000px;}
.y2a_c01206{bottom:789.840000px;}
.y23_c01206{bottom:825.840000px;}
.y22_c01206{bottom:826.560000px;}
.y25_c01206{bottom:830.880000px;}
.y26_c01206{bottom:831.600000px;}
.y24_c01206{bottom:832.320000px;}
.y27_c01206{bottom:833.040000px;}
.y1c_c01206{bottom:868.320000px;}
.y1b_c01206{bottom:869.760000px;}
.y1f_c01206{bottom:873.360000px;}
.y20_c01206{bottom:874.080000px;}
.y1e_c01206{bottom:874.800000px;}
.y1d_c01206{bottom:875.520000px;}
.y21_c01206{bottom:876.240000px;}
.y17_c01206{bottom:910.800000px;}
.y16_c01206{bottom:912.960000px;}
.y1a_c01206{bottom:916.560000px;}
.y18_c01206{bottom:918.720000px;}
.y19_c01206{bottom:919.440000px;}
.y11_c01206{bottom:954.000000px;}
.y10_c01206{bottom:955.440000px;}
.y13_c01206{bottom:959.040000px;}
.y14_c01206{bottom:960.480000px;}
.y12_c01206{bottom:961.920000px;}
.y15_c01206{bottom:962.640000px;}
.yb_c01206{bottom:997.200000px;}
.ya_c01206{bottom:997.920000px;}
.yf_c01206{bottom:1002.960000px;}
.yc_c01206{bottom:1005.120000px;}
.yd_c01206{bottom:1005.840000px;}
.ye_c01206{bottom:1006.560000px;}
.y9_c01206{bottom:1036.080000px;}
.y3_c01206{bottom:1040.400000px;}
.y2_c01206{bottom:1041.840000px;}
.y6_c01206{bottom:1044.720000px;}
.y4_c01206{bottom:1045.440000px;}
.y5_c01206{bottom:1046.880000px;}
.y8_c01206{bottom:1047.600000px;}
.y7_c01206{bottom:1048.320000px;}
.y1_c01206{bottom:1126.080000px;}
.h4_c01206{height:31.100625px;}
.h9_c01206{height:36.284062px;}
.hd_c01206{height:38.875781px;}
.hc_c01206{height:41.467500px;}
.h6_c01206{height:44.059219px;}
.ha_c01206{height:46.650937px;}
.h3_c01206{height:49.242656px;}
.h5_c01206{height:51.834375px;}
.hb_c01206{height:54.426094px;}
.he_c01206{height:57.017812px;}
.h8_c01206{height:59.609531px;}
.h10_c01206{height:62.201250px;}
.h7_c01206{height:64.792969px;}
.h2_c01206{height:67.384687px;}
.hf_c01206{height:69.976406px;}
.h12_c01206{height:147.727969px;}
.h11_c01206{height:248.805000px;}
.h1_c01206{height:1161.750000px;}
.h0_c01206{height:1162.080000px;}
.w0_c01206{width:776.880000px;}
.w1_c01206{width:777.000000px;}
.x0_c01206{left:0.000000px;}
.x2_c01206{left:57.600000px;}
.x16_c01206{left:59.040000px;}
.x1c_c01206{left:60.480000px;}
.x2c_c01206{left:62.640000px;}
.xd_c01206{left:138.240000px;}
.x3_c01206{left:140.400000px;}
.x24_c01206{left:141.840000px;}
.x25_c01206{left:184.320000px;}
.x1d_c01206{left:216.000000px;}
.x4_c01206{left:225.360000px;}
.x1f_c01206{left:228.240000px;}
.x5_c01206{left:267.840000px;}
.x20_c01206{left:269.280000px;}
.x26_c01206{left:280.800000px;}
.x6_c01206{left:311.040000px;}
.x27_c01206{left:334.800000px;}
.x29_c01206{left:356.400000px;}
.x2e_c01206{left:357.840000px;}
.x28_c01206{left:378.000000px;}
.x21_c01206{left:399.600000px;}
.x7_c01206{left:408.240000px;}
.xc_c01206{left:440.640000px;}
.x8_c01206{left:451.440000px;}
.x22_c01206{left:452.880000px;}
.x9_c01206{left:528.480000px;}
.xe_c01206{left:540.000000px;}
.x17_c01206{left:541.440000px;}
.xf_c01206{left:561.600000px;}
.x1a_c01206{left:563.040000px;}
.xa_c01206{left:581.760000px;}
.x1b_c01206{left:583.200000px;}
.x30_c01206{left:584.640000px;}
.x1e_c01206{left:595.440000px;}
.x10_c01206{left:615.600000px;}
.x14_c01206{left:617.040000px;}
.x2a_c01206{left:618.480000px;}
.x11_c01206{left:648.720000px;}
.x15_c01206{left:650.160000px;}
.x2f_c01206{left:652.320000px;}
.x1_c01206{left:671.760000px;}
.x13_c01206{left:682.560000px;}
.xb_c01206{left:691.920000px;}
.x18_c01206{left:693.360000px;}
.x23_c01206{left:694.800000px;}
.x12_c01206{left:712.800000px;}
.x19_c01206{left:714.240000px;}
.x2b_c01206{left:715.680000px;}
.x2d_c01206{left:771.120000px;}
@media print{
.v0_c01206{vertical-align:0.000000pt;}
.v1_c01206{vertical-align:15.360000pt;}
.ls0_c01206{letter-spacing:0.000000pt;}
.ws2_c01206{word-spacing:0.000000pt;}
.ws1_c01206{word-spacing:20.235669pt;}
.ws0_c01206{word-spacing:1079.750187pt;}
.fs2_c01206{font-size:30.720000pt;}
.fs7_c01206{font-size:35.840000pt;}
.fsb_c01206{font-size:38.400000pt;}
.fsa_c01206{font-size:40.960000pt;}
.fs4_c01206{font-size:43.520000pt;}
.fs8_c01206{font-size:46.080000pt;}
.fs1_c01206{font-size:48.640000pt;}
.fs3_c01206{font-size:51.200000pt;}
.fs9_c01206{font-size:53.760000pt;}
.fsc_c01206{font-size:56.320000pt;}
.fs6_c01206{font-size:58.880000pt;}
.fse_c01206{font-size:61.440000pt;}
.fs5_c01206{font-size:64.000000pt;}
.fs0_c01206{font-size:66.560000pt;}
.fsd_c01206{font-size:69.120000pt;}
.fs10_c01206{font-size:145.920000pt;}
.fsf_c01206{font-size:245.760000pt;}
.y0_c01206{bottom:0.000000pt;}
.y91_c01206{bottom:0.640000pt;}
.y8f_c01206{bottom:20.480000pt;}
.y90_c01206{bottom:21.120000pt;}
.y8e_c01206{bottom:21.760000pt;}
.y8d_c01206{bottom:22.400000pt;}
.y8c_c01206{bottom:26.880000pt;}
.y83_c01206{bottom:37.760000pt;}
.y8a_c01206{bottom:56.320000pt;}
.y88_c01206{bottom:56.960000pt;}
.y8b_c01206{bottom:57.600000pt;}
.y86_c01206{bottom:58.240000pt;}
.y85_c01206{bottom:58.880000pt;}
.y89_c01206{bottom:59.520000pt;}
.y87_c01206{bottom:60.800000pt;}
.y84_c01206{bottom:63.360000pt;}
.y82_c01206{bottom:95.360000pt;}
.y7f_c01206{bottom:96.000000pt;}
.y7e_c01206{bottom:96.640000pt;}
.y80_c01206{bottom:97.280000pt;}
.y81_c01206{bottom:97.920000pt;}
.y7d_c01206{bottom:101.120000pt;}
.y79_c01206{bottom:133.760000pt;}
.y78_c01206{bottom:134.400000pt;}
.y77_c01206{bottom:135.040000pt;}
.y7a_c01206{bottom:135.680000pt;}
.y7c_c01206{bottom:136.320000pt;}
.y7b_c01206{bottom:136.960000pt;}
.y76_c01206{bottom:138.880000pt;}
.y73_c01206{bottom:172.160000pt;}
.y72_c01206{bottom:172.800000pt;}
.y74_c01206{bottom:173.440000pt;}
.y75_c01206{bottom:174.080000pt;}
.y71_c01206{bottom:176.640000pt;}
.y70_c01206{bottom:209.920000pt;}
.y6e_c01206{bottom:210.560000pt;}
.y6d_c01206{bottom:211.840000pt;}
.y6f_c01206{bottom:212.480000pt;}
.y6c_c01206{bottom:214.400000pt;}
.y67_c01206{bottom:238.720000pt;}
.y69_c01206{bottom:239.360000pt;}
.y6b_c01206{bottom:240.000000pt;}
.y6a_c01206{bottom:241.280000pt;}
.y68_c01206{bottom:241.920000pt;}
.y66_c01206{bottom:243.200000pt;}
.y62_c01206{bottom:276.480000pt;}
.y64_c01206{bottom:277.760000pt;}
.y65_c01206{bottom:278.400000pt;}
.y63_c01206{bottom:279.680000pt;}
.y61_c01206{bottom:280.320000pt;}
.y60_c01206{bottom:314.880000pt;}
.y5d_c01206{bottom:315.520000pt;}
.y5f_c01206{bottom:316.800000pt;}
.y5c_c01206{bottom:318.080000pt;}
.y5e_c01206{bottom:318.720000pt;}
.y58_c01206{bottom:353.280000pt;}
.y5a_c01206{bottom:354.560000pt;}
.y57_c01206{bottom:355.200000pt;}
.y59_c01206{bottom:355.840000pt;}
.y5b_c01206{bottom:356.480000pt;}
.y56_c01206{bottom:357.120000pt;}
.y51_c01206{bottom:391.680000pt;}
.y54_c01206{bottom:392.960000pt;}
.y53_c01206{bottom:393.600000pt;}
.y50_c01206{bottom:394.240000pt;}
.y52_c01206{bottom:394.880000pt;}
.y55_c01206{bottom:395.520000pt;}
.y4d_c01206{bottom:429.440000pt;}
.y4f_c01206{bottom:431.360000pt;}
.y4c_c01206{bottom:432.000000pt;}
.y4e_c01206{bottom:433.920000pt;}
.y48_c01206{bottom:467.840000pt;}
.y47_c01206{bottom:470.400000pt;}
.y4a_c01206{bottom:471.680000pt;}
.y49_c01206{bottom:472.320000pt;}
.y4b_c01206{bottom:472.960000pt;}
.y43_c01206{bottom:505.600000pt;}
.y45_c01206{bottom:508.160000pt;}
.y42_c01206{bottom:509.440000pt;}
.y44_c01206{bottom:510.720000pt;}
.y46_c01206{bottom:511.360000pt;}
.y3e_c01206{bottom:544.000000pt;}
.y3d_c01206{bottom:547.200000pt;}
.y40_c01206{bottom:547.840000pt;}
.y3f_c01206{bottom:548.480000pt;}
.y41_c01206{bottom:549.760000pt;}
.y39_c01206{bottom:581.760000pt;}
.y38_c01206{bottom:584.320000pt;}
.y3a_c01206{bottom:586.240000pt;}
.y3b_c01206{bottom:586.880000pt;}
.y3c_c01206{bottom:587.520000pt;}
.y33_c01206{bottom:619.520000pt;}
.y32_c01206{bottom:622.080000pt;}
.y35_c01206{bottom:622.720000pt;}
.y37_c01206{bottom:623.360000pt;}
.y36_c01206{bottom:624.640000pt;}
.y34_c01206{bottom:625.280000pt;}
.y2e_c01206{bottom:657.280000pt;}
.y2d_c01206{bottom:659.200000pt;}
.y31_c01206{bottom:661.760000pt;}
.y30_c01206{bottom:662.400000pt;}
.y2f_c01206{bottom:663.680000pt;}
.y29_c01206{bottom:695.680000pt;}
.y28_c01206{bottom:696.960000pt;}
.y2b_c01206{bottom:699.520000pt;}
.y2c_c01206{bottom:700.160000pt;}
.y2a_c01206{bottom:702.080000pt;}
.y23_c01206{bottom:734.080000pt;}
.y22_c01206{bottom:734.720000pt;}
.y25_c01206{bottom:738.560000pt;}
.y26_c01206{bottom:739.200000pt;}
.y24_c01206{bottom:739.840000pt;}
.y27_c01206{bottom:740.480000pt;}
.y1c_c01206{bottom:771.840000pt;}
.y1b_c01206{bottom:773.120000pt;}
.y1f_c01206{bottom:776.320000pt;}
.y20_c01206{bottom:776.960000pt;}
.y1e_c01206{bottom:777.600000pt;}
.y1d_c01206{bottom:778.240000pt;}
.y21_c01206{bottom:778.880000pt;}
.y17_c01206{bottom:809.600000pt;}
.y16_c01206{bottom:811.520000pt;}
.y1a_c01206{bottom:814.720000pt;}
.y18_c01206{bottom:816.640000pt;}
.y19_c01206{bottom:817.280000pt;}
.y11_c01206{bottom:848.000000pt;}
.y10_c01206{bottom:849.280000pt;}
.y13_c01206{bottom:852.480000pt;}
.y14_c01206{bottom:853.760000pt;}
.y12_c01206{bottom:855.040000pt;}
.y15_c01206{bottom:855.680000pt;}
.yb_c01206{bottom:886.400000pt;}
.ya_c01206{bottom:887.040000pt;}
.yf_c01206{bottom:891.520000pt;}
.yc_c01206{bottom:893.440000pt;}
.yd_c01206{bottom:894.080000pt;}
.ye_c01206{bottom:894.720000pt;}
.y9_c01206{bottom:920.960000pt;}
.y3_c01206{bottom:924.800000pt;}
.y2_c01206{bottom:926.080000pt;}
.y6_c01206{bottom:928.640000pt;}
.y4_c01206{bottom:929.280000pt;}
.y5_c01206{bottom:930.560000pt;}
.y8_c01206{bottom:931.200000pt;}
.y7_c01206{bottom:931.840000pt;}
.y1_c01206{bottom:1000.960000pt;}
.h4_c01206{height:27.645000pt;}
.h9_c01206{height:32.252500pt;}
.hd_c01206{height:34.556250pt;}
.hc_c01206{height:36.860000pt;}
.h6_c01206{height:39.163750pt;}
.ha_c01206{height:41.467500pt;}
.h3_c01206{height:43.771250pt;}
.h5_c01206{height:46.075000pt;}
.hb_c01206{height:48.378750pt;}
.he_c01206{height:50.682500pt;}
.h8_c01206{height:52.986250pt;}
.h10_c01206{height:55.290000pt;}
.h7_c01206{height:57.593750pt;}
.h2_c01206{height:59.897500pt;}
.hf_c01206{height:62.201250pt;}
.h12_c01206{height:131.313750pt;}
.h11_c01206{height:221.160000pt;}
.h1_c01206{height:1032.666667pt;}
.h0_c01206{height:1032.960000pt;}
.w0_c01206{width:690.560000pt;}
.w1_c01206{width:690.666667pt;}
.x0_c01206{left:0.000000pt;}
.x2_c01206{left:51.200000pt;}
.x16_c01206{left:52.480000pt;}
.x1c_c01206{left:53.760000pt;}
.x2c_c01206{left:55.680000pt;}
.xd_c01206{left:122.880000pt;}
.x3_c01206{left:124.800000pt;}
.x24_c01206{left:126.080000pt;}
.x25_c01206{left:163.840000pt;}
.x1d_c01206{left:192.000000pt;}
.x4_c01206{left:200.320000pt;}
.x1f_c01206{left:202.880000pt;}
.x5_c01206{left:238.080000pt;}
.x20_c01206{left:239.360000pt;}
.x26_c01206{left:249.600000pt;}
.x6_c01206{left:276.480000pt;}
.x27_c01206{left:297.600000pt;}
.x29_c01206{left:316.800000pt;}
.x2e_c01206{left:318.080000pt;}
.x28_c01206{left:336.000000pt;}
.x21_c01206{left:355.200000pt;}
.x7_c01206{left:362.880000pt;}
.xc_c01206{left:391.680000pt;}
.x8_c01206{left:401.280000pt;}
.x22_c01206{left:402.560000pt;}
.x9_c01206{left:469.760000pt;}
.xe_c01206{left:480.000000pt;}
.x17_c01206{left:481.280000pt;}
.xf_c01206{left:499.200000pt;}
.x1a_c01206{left:500.480000pt;}
.xa_c01206{left:517.120000pt;}
.x1b_c01206{left:518.400000pt;}
.x30_c01206{left:519.680000pt;}
.x1e_c01206{left:529.280000pt;}
.x10_c01206{left:547.200000pt;}
.x14_c01206{left:548.480000pt;}
.x2a_c01206{left:549.760000pt;}
.x11_c01206{left:576.640000pt;}
.x15_c01206{left:577.920000pt;}
.x2f_c01206{left:579.840000pt;}
.x1_c01206{left:597.120000pt;}
.x13_c01206{left:606.720000pt;}
.xb_c01206{left:615.040000pt;}
.x18_c01206{left:616.320000pt;}
.x23_c01206{left:617.600000pt;}
.x12_c01206{left:633.600000pt;}
.x19_c01206{left:634.880000pt;}
.x2b_c01206{left:636.160000pt;}
.x2d_c01206{left:685.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6bfd9cf12a25a9826fd6c7e4.woff2')format("woff");}.ff1_c01207{font-family:ff1_c01207;line-height:1.109863;font-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_c01207{transform:matrix(0.181575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181575,0.000000,0.000000,0.250000,0,0);}
.m3a_c01207{transform:matrix(0.212900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212900,0.000000,0.000000,0.250000,0,0);}
.m8_c01207{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m26_c01207{transform:matrix(0.239175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239175,0.000000,0.000000,0.250000,0,0);}
.m2c_c01207{transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);}
.m40_c01207{transform:matrix(0.239575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239575,0.000000,0.000000,0.250000,0,0);}
.m32_c01207{transform:matrix(0.239750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239750,0.000000,0.000000,0.250000,0,0);}
.m36_c01207{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m47_c01207{transform:matrix(0.246375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246375,0.000000,0.000000,0.250000,0,0);}
.m43_c01207{transform:matrix(0.247050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247050,0.000000,0.000000,0.250000,0,0);}
.md_c01207{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m48_c01207{transform:matrix(0.248575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248575,0.000000,0.000000,0.250000,0,0);}
.m1a_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);}
.ma_c01207{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);}
.m29_c01207{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);}
.m21_c01207{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m15_c01207{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_c01207{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mc_c01207{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m5_c01207{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m6_c01207{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m19_c01207{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1_c01207{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m4_c01207{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);}
.m2f_c01207{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m18_c01207{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m37_c01207{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01207{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01207{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01207{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01207{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m34_c01207{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m39_c01207{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m41_c01207{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01207{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m12_c01207{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m14_c01207{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01207{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m25_c01207{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m30_c01207{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m9_c01207{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01207{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mf_c01207{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);}
.m38_c01207{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);}
.m33_c01207{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);}
.m27_c01207{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01207{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);}
.m46_c01207{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m0_c01207{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m7_c01207{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m13_c01207{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);}
.m20_c01207{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01207{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m31_c01207{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_c01207{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);}
.m16_c01207{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);}
.me_c01207{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m44_c01207{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m49_c01207{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m22_c01207{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);}
.m2e_c01207{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m45_c01207{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.mb_c01207{transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);}
.m28_c01207{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m35_c01207{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m24_c01207{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);}
.m1c_c01207{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01207{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m2_c01207{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m23_c01207{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);}
.m42_c01207{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01207{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.m10_c01207{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01207{transform:matrix(2.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.040000,0.000000,0.000000,0.250000,0,0);}
.v4_c01207{vertical-align:-2.880000px;}
.v0_c01207{vertical-align:0.000000px;}
.v2_c01207{vertical-align:2.880000px;}
.v1_c01207{vertical-align:5.760000px;}
.v3_c01207{vertical-align:8.640000px;}
.ls3_c01207{letter-spacing:0.000000px;}
.ls1_c01207{letter-spacing:42.841680px;}
.ls0_c01207{letter-spacing:45.308400px;}
.ls2_c01207{letter-spacing:45.367680px;}
.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;}
}
.ws3_c01207{word-spacing:0.000000px;}
.ws2_c01207{word-spacing:10.749853px;}
.ws0_c01207{word-spacing:20.750645px;}
.ws1_c01207{word-spacing:471.282000px;}
.fc0_c01207{color:transparent;}
.fse_c01207{font-size:17.280000px;}
.fs2_c01207{font-size:34.560000px;}
.fs9_c01207{font-size:37.440000px;}
.fsa_c01207{font-size:46.080000px;}
.fs7_c01207{font-size:48.960000px;}
.fs5_c01207{font-size:51.840000px;}
.fs4_c01207{font-size:54.720000px;}
.fs1_c01207{font-size:57.600000px;}
.fs6_c01207{font-size:60.480000px;}
.fsb_c01207{font-size:63.360000px;}
.fsc_c01207{font-size:66.240000px;}
.fs3_c01207{font-size:69.120000px;}
.fs0_c01207{font-size:72.000000px;}
.fs8_c01207{font-size:74.880000px;}
.fsd_c01207{font-size:77.760000px;}
.y0_c01207{bottom:0.000000px;}
.y88_c01207{bottom:102.240000px;}
.y84_c01207{bottom:102.960000px;}
.y87_c01207{bottom:103.680000px;}
.y85_c01207{bottom:104.400000px;}
.y86_c01207{bottom:105.120000px;}
.y82_c01207{bottom:105.840000px;}
.y83_c01207{bottom:108.000000px;}
.y81_c01207{bottom:110.880000px;}
.y7f_c01207{bottom:145.440000px;}
.y7c_c01207{bottom:146.160000px;}
.y80_c01207{bottom:146.880000px;}
.y7e_c01207{bottom:147.600000px;}
.y7d_c01207{bottom:148.320000px;}
.y7a_c01207{bottom:149.040000px;}
.y7b_c01207{bottom:151.920000px;}
.y79_c01207{bottom:153.360000px;}
.y78_c01207{bottom:189.360000px;}
.y77_c01207{bottom:190.080000px;}
.y75_c01207{bottom:191.520000px;}
.y76_c01207{bottom:194.400000px;}
.y74_c01207{bottom:196.560000px;}
.y73_c01207{bottom:231.840000px;}
.y72_c01207{bottom:232.560000px;}
.y70_c01207{bottom:233.280000px;}
.y71_c01207{bottom:234.000000px;}
.y6f_c01207{bottom:234.720000px;}
.y6e_c01207{bottom:239.040000px;}
.y6b_c01207{bottom:275.040000px;}
.y6c_c01207{bottom:276.480000px;}
.y69_c01207{bottom:277.200000px;}
.y6d_c01207{bottom:277.920000px;}
.y6a_c01207{bottom:280.080000px;}
.y68_c01207{bottom:280.800000px;}
.y64_c01207{bottom:318.960000px;}
.y66_c01207{bottom:319.680000px;}
.y65_c01207{bottom:320.400000px;}
.y63_c01207{bottom:321.120000px;}
.y67_c01207{bottom:321.840000px;}
.y62_c01207{bottom:324.000000px;}
.y5f_c01207{bottom:362.160000px;}
.y5e_c01207{bottom:362.880000px;}
.y61_c01207{bottom:363.600000px;}
.y60_c01207{bottom:365.040000px;}
.y5d_c01207{bottom:366.480000px;}
.y5b_c01207{bottom:404.640000px;}
.y5c_c01207{bottom:405.360000px;}
.y59_c01207{bottom:406.080000px;}
.y5a_c01207{bottom:408.240000px;}
.y58_c01207{bottom:409.680000px;}
.y55_c01207{bottom:447.840000px;}
.y56_c01207{bottom:448.560000px;}
.y57_c01207{bottom:450.720000px;}
.y54_c01207{bottom:451.440000px;}
.y53_c01207{bottom:488.880000px;}
.y51_c01207{bottom:489.600000px;}
.y4f_c01207{bottom:491.040000px;}
.y4e_c01207{bottom:492.480000px;}
.y50_c01207{bottom:493.200000px;}
.y52_c01207{bottom:493.920000px;}
.y4d_c01207{bottom:494.640000px;}
.y4a_c01207{bottom:532.800000px;}
.y49_c01207{bottom:533.520000px;}
.y4b_c01207{bottom:534.960000px;}
.y4c_c01207{bottom:536.400000px;}
.y48_c01207{bottom:537.120000px;}
.y43_c01207{bottom:576.000000px;}
.y47_c01207{bottom:576.720000px;}
.y44_c01207{bottom:577.440000px;}
.y46_c01207{bottom:578.160000px;}
.y45_c01207{bottom:579.600000px;}
.y42_c01207{bottom:580.320000px;}
.y3d_c01207{bottom:619.200000px;}
.y3f_c01207{bottom:619.920000px;}
.y40_c01207{bottom:620.640000px;}
.y3c_c01207{bottom:621.360000px;}
.y41_c01207{bottom:622.080000px;}
.y3e_c01207{bottom:622.800000px;}
.y38_c01207{bottom:662.400000px;}
.y37_c01207{bottom:663.840000px;}
.y3a_c01207{bottom:664.560000px;}
.y39_c01207{bottom:666.000000px;}
.y3b_c01207{bottom:666.720000px;}
.y34_c01207{bottom:704.880000px;}
.y35_c01207{bottom:705.600000px;}
.y33_c01207{bottom:707.040000px;}
.y36_c01207{bottom:709.200000px;}
.y2f_c01207{bottom:748.080000px;}
.y32_c01207{bottom:750.240000px;}
.y2e_c01207{bottom:750.960000px;}
.y30_c01207{bottom:751.680000px;}
.y31_c01207{bottom:753.840000px;}
.y29_c01207{bottom:791.280000px;}
.y2b_c01207{bottom:792.000000px;}
.y28_c01207{bottom:793.440000px;}
.y2c_c01207{bottom:794.160000px;}
.y2a_c01207{bottom:794.880000px;}
.y2d_c01207{bottom:796.320000px;}
.y27_c01207{bottom:828.720000px;}
.y20_c01207{bottom:833.760000px;}
.y24_c01207{bottom:834.480000px;}
.y23_c01207{bottom:835.920000px;}
.y1f_c01207{bottom:836.640000px;}
.y25_c01207{bottom:837.360000px;}
.y21_c01207{bottom:838.080000px;}
.y22_c01207{bottom:838.800000px;}
.y26_c01207{bottom:840.240000px;}
.y1a_c01207{bottom:876.240000px;}
.y1b_c01207{bottom:877.680000px;}
.y19_c01207{bottom:878.400000px;}
.y1c_c01207{bottom:880.560000px;}
.y1d_c01207{bottom:882.000000px;}
.y1e_c01207{bottom:882.720000px;}
.y15_c01207{bottom:919.440000px;}
.y14_c01207{bottom:920.880000px;}
.y17_c01207{bottom:922.320000px;}
.y16_c01207{bottom:923.760000px;}
.y18_c01207{bottom:925.920000px;}
.y10_c01207{bottom:962.640000px;}
.y11_c01207{bottom:963.360000px;}
.y12_c01207{bottom:966.240000px;}
.y13_c01207{bottom:968.400000px;}
.ya_c01207{bottom:1004.400000px;}
.y9_c01207{bottom:1005.840000px;}
.yb_c01207{bottom:1008.720000px;}
.yc_c01207{bottom:1009.440000px;}
.yf_c01207{bottom:1010.880000px;}
.yd_c01207{bottom:1011.600000px;}
.ye_c01207{bottom:1012.320000px;}
.y3_c01207{bottom:1047.600000px;}
.y2_c01207{bottom:1048.320000px;}
.y5_c01207{bottom:1049.760000px;}
.y4_c01207{bottom:1051.920000px;}
.y6_c01207{bottom:1052.640000px;}
.y7_c01207{bottom:1053.360000px;}
.y8_c01207{bottom:1054.800000px;}
.y1_c01207{bottom:1120.320000px;}
.h13_c01207{height:15.550313px;}
.h4_c01207{height:31.100625px;}
.hb_c01207{height:33.692344px;}
.hc_c01207{height:41.467500px;}
.h9_c01207{height:44.059219px;}
.h7_c01207{height:46.650937px;}
.h6_c01207{height:49.242656px;}
.h3_c01207{height:51.834375px;}
.hf_c01207{height:52.122656px;}
.h8_c01207{height:54.426094px;}
.h10_c01207{height:55.002656px;}
.he_c01207{height:57.017812px;}
.hd_c01207{height:57.594375px;}
.h11_c01207{height:59.609531px;}
.h5_c01207{height:62.201250px;}
.h2_c01207{height:64.792969px;}
.ha_c01207{height:67.384687px;}
.h12_c01207{height:69.976406px;}
.h1_c01207{height:1161.750000px;}
.h0_c01207{height:1162.080000px;}
.w0_c01207{width:776.880000px;}
.w1_c01207{width:777.000000px;}
.x0_c01207{left:0.000000px;}
.x2_c01207{left:64.079340px;}
.x18_c01207{left:143.280000px;}
.x3_c01207{left:144.720000px;}
.x23_c01207{left:174.960000px;}
.x20_c01207{left:187.920000px;}
.x12_c01207{left:228.240000px;}
.x19_c01207{left:229.680000px;}
.x4_c01207{left:231.120000px;}
.x1a_c01207{left:272.160000px;}
.x5_c01207{left:273.600000px;}
.x1c_c01207{left:284.400000px;}
.x25_c01207{left:305.280000px;}
.x24_c01207{left:316.080000px;}
.x21_c01207{left:326.160000px;}
.x13_c01207{left:328.320000px;}
.x1b_c01207{left:359.280000px;}
.x14_c01207{left:369.360000px;}
.xf_c01207{left:403.200000px;}
.x1d_c01207{left:413.280000px;}
.x10_c01207{left:445.680000px;}
.x22_c01207{left:456.480000px;}
.x15_c01207{left:505.440000px;}
.x16_c01207{left:543.600000px;}
.x6_c01207{left:545.040000px;}
.x1f_c01207{left:565.200000px;}
.x7_c01207{left:566.640000px;}
.x17_c01207{left:576.720000px;}
.x11_c01207{left:587.520000px;}
.x8_c01207{left:610.560000px;}
.x27_c01207{left:619.920000px;}
.xb_c01207{left:621.360000px;}
.x9_c01207{left:643.680000px;}
.x26_c01207{left:653.040000px;}
.xc_c01207{left:654.480000px;}
.x1_c01207{left:669.600000px;}
.xa_c01207{left:686.160000px;}
.x1e_c01207{left:687.600000px;}
.xd_c01207{left:697.680000px;}
.xe_c01207{left:717.840000px;}
@media print{
.v4_c01207{vertical-align:-2.560000pt;}
.v0_c01207{vertical-align:0.000000pt;}
.v2_c01207{vertical-align:2.560000pt;}
.v1_c01207{vertical-align:5.120000pt;}
.v3_c01207{vertical-align:7.680000pt;}
.ls3_c01207{letter-spacing:0.000000pt;}
.ls1_c01207{letter-spacing:38.081493pt;}
.ls0_c01207{letter-spacing:40.274133pt;}
.ls2_c01207{letter-spacing:40.326827pt;}
.ws3_c01207{word-spacing:0.000000pt;}
.ws2_c01207{word-spacing:9.555425pt;}
.ws0_c01207{word-spacing:18.445018pt;}
.ws1_c01207{word-spacing:418.917333pt;}
.fse_c01207{font-size:15.360000pt;}
.fs2_c01207{font-size:30.720000pt;}
.fs9_c01207{font-size:33.280000pt;}
.fsa_c01207{font-size:40.960000pt;}
.fs7_c01207{font-size:43.520000pt;}
.fs5_c01207{font-size:46.080000pt;}
.fs4_c01207{font-size:48.640000pt;}
.fs1_c01207{font-size:51.200000pt;}
.fs6_c01207{font-size:53.760000pt;}
.fsb_c01207{font-size:56.320000pt;}
.fsc_c01207{font-size:58.880000pt;}
.fs3_c01207{font-size:61.440000pt;}
.fs0_c01207{font-size:64.000000pt;}
.fs8_c01207{font-size:66.560000pt;}
.fsd_c01207{font-size:69.120000pt;}
.y0_c01207{bottom:0.000000pt;}
.y88_c01207{bottom:90.880000pt;}
.y84_c01207{bottom:91.520000pt;}
.y87_c01207{bottom:92.160000pt;}
.y85_c01207{bottom:92.800000pt;}
.y86_c01207{bottom:93.440000pt;}
.y82_c01207{bottom:94.080000pt;}
.y83_c01207{bottom:96.000000pt;}
.y81_c01207{bottom:98.560000pt;}
.y7f_c01207{bottom:129.280000pt;}
.y7c_c01207{bottom:129.920000pt;}
.y80_c01207{bottom:130.560000pt;}
.y7e_c01207{bottom:131.200000pt;}
.y7d_c01207{bottom:131.840000pt;}
.y7a_c01207{bottom:132.480000pt;}
.y7b_c01207{bottom:135.040000pt;}
.y79_c01207{bottom:136.320000pt;}
.y78_c01207{bottom:168.320000pt;}
.y77_c01207{bottom:168.960000pt;}
.y75_c01207{bottom:170.240000pt;}
.y76_c01207{bottom:172.800000pt;}
.y74_c01207{bottom:174.720000pt;}
.y73_c01207{bottom:206.080000pt;}
.y72_c01207{bottom:206.720000pt;}
.y70_c01207{bottom:207.360000pt;}
.y71_c01207{bottom:208.000000pt;}
.y6f_c01207{bottom:208.640000pt;}
.y6e_c01207{bottom:212.480000pt;}
.y6b_c01207{bottom:244.480000pt;}
.y6c_c01207{bottom:245.760000pt;}
.y69_c01207{bottom:246.400000pt;}
.y6d_c01207{bottom:247.040000pt;}
.y6a_c01207{bottom:248.960000pt;}
.y68_c01207{bottom:249.600000pt;}
.y64_c01207{bottom:283.520000pt;}
.y66_c01207{bottom:284.160000pt;}
.y65_c01207{bottom:284.800000pt;}
.y63_c01207{bottom:285.440000pt;}
.y67_c01207{bottom:286.080000pt;}
.y62_c01207{bottom:288.000000pt;}
.y5f_c01207{bottom:321.920000pt;}
.y5e_c01207{bottom:322.560000pt;}
.y61_c01207{bottom:323.200000pt;}
.y60_c01207{bottom:324.480000pt;}
.y5d_c01207{bottom:325.760000pt;}
.y5b_c01207{bottom:359.680000pt;}
.y5c_c01207{bottom:360.320000pt;}
.y59_c01207{bottom:360.960000pt;}
.y5a_c01207{bottom:362.880000pt;}
.y58_c01207{bottom:364.160000pt;}
.y55_c01207{bottom:398.080000pt;}
.y56_c01207{bottom:398.720000pt;}
.y57_c01207{bottom:400.640000pt;}
.y54_c01207{bottom:401.280000pt;}
.y53_c01207{bottom:434.560000pt;}
.y51_c01207{bottom:435.200000pt;}
.y4f_c01207{bottom:436.480000pt;}
.y4e_c01207{bottom:437.760000pt;}
.y50_c01207{bottom:438.400000pt;}
.y52_c01207{bottom:439.040000pt;}
.y4d_c01207{bottom:439.680000pt;}
.y4a_c01207{bottom:473.600000pt;}
.y49_c01207{bottom:474.240000pt;}
.y4b_c01207{bottom:475.520000pt;}
.y4c_c01207{bottom:476.800000pt;}
.y48_c01207{bottom:477.440000pt;}
.y43_c01207{bottom:512.000000pt;}
.y47_c01207{bottom:512.640000pt;}
.y44_c01207{bottom:513.280000pt;}
.y46_c01207{bottom:513.920000pt;}
.y45_c01207{bottom:515.200000pt;}
.y42_c01207{bottom:515.840000pt;}
.y3d_c01207{bottom:550.400000pt;}
.y3f_c01207{bottom:551.040000pt;}
.y40_c01207{bottom:551.680000pt;}
.y3c_c01207{bottom:552.320000pt;}
.y41_c01207{bottom:552.960000pt;}
.y3e_c01207{bottom:553.600000pt;}
.y38_c01207{bottom:588.800000pt;}
.y37_c01207{bottom:590.080000pt;}
.y3a_c01207{bottom:590.720000pt;}
.y39_c01207{bottom:592.000000pt;}
.y3b_c01207{bottom:592.640000pt;}
.y34_c01207{bottom:626.560000pt;}
.y35_c01207{bottom:627.200000pt;}
.y33_c01207{bottom:628.480000pt;}
.y36_c01207{bottom:630.400000pt;}
.y2f_c01207{bottom:664.960000pt;}
.y32_c01207{bottom:666.880000pt;}
.y2e_c01207{bottom:667.520000pt;}
.y30_c01207{bottom:668.160000pt;}
.y31_c01207{bottom:670.080000pt;}
.y29_c01207{bottom:703.360000pt;}
.y2b_c01207{bottom:704.000000pt;}
.y28_c01207{bottom:705.280000pt;}
.y2c_c01207{bottom:705.920000pt;}
.y2a_c01207{bottom:706.560000pt;}
.y2d_c01207{bottom:707.840000pt;}
.y27_c01207{bottom:736.640000pt;}
.y20_c01207{bottom:741.120000pt;}
.y24_c01207{bottom:741.760000pt;}
.y23_c01207{bottom:743.040000pt;}
.y1f_c01207{bottom:743.680000pt;}
.y25_c01207{bottom:744.320000pt;}
.y21_c01207{bottom:744.960000pt;}
.y22_c01207{bottom:745.600000pt;}
.y26_c01207{bottom:746.880000pt;}
.y1a_c01207{bottom:778.880000pt;}
.y1b_c01207{bottom:780.160000pt;}
.y19_c01207{bottom:780.800000pt;}
.y1c_c01207{bottom:782.720000pt;}
.y1d_c01207{bottom:784.000000pt;}
.y1e_c01207{bottom:784.640000pt;}
.y15_c01207{bottom:817.280000pt;}
.y14_c01207{bottom:818.560000pt;}
.y17_c01207{bottom:819.840000pt;}
.y16_c01207{bottom:821.120000pt;}
.y18_c01207{bottom:823.040000pt;}
.y10_c01207{bottom:855.680000pt;}
.y11_c01207{bottom:856.320000pt;}
.y12_c01207{bottom:858.880000pt;}
.y13_c01207{bottom:860.800000pt;}
.ya_c01207{bottom:892.800000pt;}
.y9_c01207{bottom:894.080000pt;}
.yb_c01207{bottom:896.640000pt;}
.yc_c01207{bottom:897.280000pt;}
.yf_c01207{bottom:898.560000pt;}
.yd_c01207{bottom:899.200000pt;}
.ye_c01207{bottom:899.840000pt;}
.y3_c01207{bottom:931.200000pt;}
.y2_c01207{bottom:931.840000pt;}
.y5_c01207{bottom:933.120000pt;}
.y4_c01207{bottom:935.040000pt;}
.y6_c01207{bottom:935.680000pt;}
.y7_c01207{bottom:936.320000pt;}
.y8_c01207{bottom:937.600000pt;}
.y1_c01207{bottom:995.840000pt;}
.h13_c01207{height:13.822500pt;}
.h4_c01207{height:27.645000pt;}
.hb_c01207{height:29.948750pt;}
.hc_c01207{height:36.860000pt;}
.h9_c01207{height:39.163750pt;}
.h7_c01207{height:41.467500pt;}
.h6_c01207{height:43.771250pt;}
.h3_c01207{height:46.075000pt;}
.hf_c01207{height:46.331250pt;}
.h8_c01207{height:48.378750pt;}
.h10_c01207{height:48.891250pt;}
.he_c01207{height:50.682500pt;}
.hd_c01207{height:51.195000pt;}
.h11_c01207{height:52.986250pt;}
.h5_c01207{height:55.290000pt;}
.h2_c01207{height:57.593750pt;}
.ha_c01207{height:59.897500pt;}
.h12_c01207{height:62.201250pt;}
.h1_c01207{height:1032.666667pt;}
.h0_c01207{height:1032.960000pt;}
.w0_c01207{width:690.560000pt;}
.w1_c01207{width:690.666667pt;}
.x0_c01207{left:0.000000pt;}
.x2_c01207{left:56.959413pt;}
.x18_c01207{left:127.360000pt;}
.x3_c01207{left:128.640000pt;}
.x23_c01207{left:155.520000pt;}
.x20_c01207{left:167.040000pt;}
.x12_c01207{left:202.880000pt;}
.x19_c01207{left:204.160000pt;}
.x4_c01207{left:205.440000pt;}
.x1a_c01207{left:241.920000pt;}
.x5_c01207{left:243.200000pt;}
.x1c_c01207{left:252.800000pt;}
.x25_c01207{left:271.360000pt;}
.x24_c01207{left:280.960000pt;}
.x21_c01207{left:289.920000pt;}
.x13_c01207{left:291.840000pt;}
.x1b_c01207{left:319.360000pt;}
.x14_c01207{left:328.320000pt;}
.xf_c01207{left:358.400000pt;}
.x1d_c01207{left:367.360000pt;}
.x10_c01207{left:396.160000pt;}
.x22_c01207{left:405.760000pt;}
.x15_c01207{left:449.280000pt;}
.x16_c01207{left:483.200000pt;}
.x6_c01207{left:484.480000pt;}
.x1f_c01207{left:502.400000pt;}
.x7_c01207{left:503.680000pt;}
.x17_c01207{left:512.640000pt;}
.x11_c01207{left:522.240000pt;}
.x8_c01207{left:542.720000pt;}
.x27_c01207{left:551.040000pt;}
.xb_c01207{left:552.320000pt;}
.x9_c01207{left:572.160000pt;}
.x26_c01207{left:580.480000pt;}
.xc_c01207{left:581.760000pt;}
.x1_c01207{left:595.200000pt;}
.xa_c01207{left:609.920000pt;}
.x1e_c01207{left:611.200000pt;}
.xd_c01207{left:620.160000pt;}
.xe_c01207{left:638.080000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e7cf78c32162db0c898aacc2.woff2')format("woff");}.ff1_c01208{font-family:ff1_c01208;line-height:1.109863;font-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_c01208{transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);}
.m2a_c01208{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.md_c01208{transform:matrix(0.230025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230025,0.000000,0.000000,0.250000,0,0);}
.m11_c01208{transform:matrix(0.232600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232600,0.000000,0.000000,0.250000,0,0);}
.m4_c01208{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m2b_c01208{transform:matrix(0.238075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238075,0.000000,0.000000,0.250000,0,0);}
.m20_c01208{transform:matrix(0.238900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238900,0.000000,0.000000,0.250000,0,0);}
.ma_c01208{transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);}
.m30_c01208{transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);}
.m7_c01208{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m24_c01208{transform:matrix(0.249050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249050,0.000000,0.000000,0.250000,0,0);}
.m2d_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);}
.m19_c01208{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_c01208{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mf_c01208{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m14_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);}
.m35_c01208{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m17_c01208{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m2_c01208{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m6_c01208{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_c01208{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);}
.m25_c01208{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m3_c01208{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.me_c01208{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01208{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m26_c01208{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1a_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);}
.m1b_c01208{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m29_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);}
.m1_c01208{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m37_c01208{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01208{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m33_c01208{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m39_c01208{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m15_c01208{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m12_c01208{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m23_c01208{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);}
.m1f_c01208{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m9_c01208{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.mb_c01208{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01208{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);}
.m2c_c01208{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);}
.m0_c01208{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m10_c01208{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);}
.m5_c01208{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01208{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m18_c01208{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01208{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);}
.m38_c01208{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);}
.m31_c01208{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m21_c01208{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01208{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m36_c01208{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m34_c01208{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);}
.m13_c01208{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.mc_c01208{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m28_c01208{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m27_c01208{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01208{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01208{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.m8_c01208{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.v2_c01208{vertical-align:-8.640000px;}
.v0_c01208{vertical-align:0.000000px;}
.v1_c01208{vertical-align:8.640000px;}
.ls0_c01208{letter-spacing:0.000000px;}
.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;}
}
.ws3_c01208{word-spacing:0.000000px;}
.ws1_c01208{word-spacing:11.690400px;}
.ws2_c01208{word-spacing:18.115073px;}
.ws0_c01208{word-spacing:86.982000px;}
.fc0_c01208{color:transparent;}
.fs9_c01208{font-size:46.080000px;}
.fs5_c01208{font-size:48.960000px;}
.fs8_c01208{font-size:51.840000px;}
.fs3_c01208{font-size:54.720000px;}
.fs7_c01208{font-size:57.600000px;}
.fs4_c01208{font-size:60.480000px;}
.fs6_c01208{font-size:63.360000px;}
.fs1_c01208{font-size:66.240000px;}
.fsa_c01208{font-size:69.120000px;}
.fs0_c01208{font-size:74.880000px;}
.fs2_c01208{font-size:77.760000px;}
.y0_c01208{bottom:0.000000px;}
.y82_c01208{bottom:43.920000px;}
.y81_c01208{bottom:46.080000px;}
.y80_c01208{bottom:47.520000px;}
.y7f_c01208{bottom:48.960000px;}
.y7e_c01208{bottom:50.400000px;}
.y7d_c01208{bottom:51.840000px;}
.y7c_c01208{bottom:59.040000px;}
.y7b_c01208{bottom:89.280000px;}
.y7a_c01208{bottom:90.000000px;}
.y79_c01208{bottom:91.440000px;}
.y78_c01208{bottom:92.160000px;}
.y77_c01208{bottom:92.880000px;}
.y76_c01208{bottom:93.600000px;}
.y75_c01208{bottom:100.800000px;}
.y74_c01208{bottom:133.200000px;}
.y73_c01208{bottom:136.080000px;}
.y72_c01208{bottom:136.800000px;}
.y71_c01208{bottom:142.560000px;}
.y70_c01208{bottom:176.400000px;}
.y6f_c01208{bottom:177.120000px;}
.y6e_c01208{bottom:177.840000px;}
.y6d_c01208{bottom:179.280000px;}
.y6c_c01208{bottom:185.760000px;}
.y69_c01208{bottom:218.880000px;}
.y6b_c01208{bottom:219.600000px;}
.y6a_c01208{bottom:220.320000px;}
.y68_c01208{bottom:221.760000px;}
.y67_c01208{bottom:226.800000px;}
.y66_c01208{bottom:259.920000px;}
.y65_c01208{bottom:261.360000px;}
.y64_c01208{bottom:262.080000px;}
.y63_c01208{bottom:264.240000px;}
.y62_c01208{bottom:264.960000px;}
.y61_c01208{bottom:270.000000px;}
.y60_c01208{bottom:303.840000px;}
.y5e_c01208{bottom:304.560000px;}
.y5f_c01208{bottom:305.280000px;}
.y5d_c01208{bottom:306.000000px;}
.y5c_c01208{bottom:308.880000px;}
.y5b_c01208{bottom:312.480000px;}
.y59_c01208{bottom:347.760000px;}
.y5a_c01208{bottom:349.920000px;}
.y56_c01208{bottom:350.640000px;}
.y57_c01208{bottom:351.360000px;}
.y58_c01208{bottom:352.080000px;}
.y55_c01208{bottom:354.960000px;}
.y53_c01208{bottom:391.680000px;}
.y54_c01208{bottom:393.120000px;}
.y51_c01208{bottom:393.840000px;}
.y52_c01208{bottom:394.560000px;}
.y50_c01208{bottom:397.440000px;}
.y4e_c01208{bottom:434.880000px;}
.y4c_c01208{bottom:436.320000px;}
.y4f_c01208{bottom:437.040000px;}
.y4d_c01208{bottom:437.760000px;}
.y4b_c01208{bottom:441.360000px;}
.y4a_c01208{bottom:478.080000px;}
.y47_c01208{bottom:479.520000px;}
.y49_c01208{bottom:480.240000px;}
.y48_c01208{bottom:480.960000px;}
.y46_c01208{bottom:483.840000px;}
.y43_c01208{bottom:522.000000px;}
.y45_c01208{bottom:523.440000px;}
.y44_c01208{bottom:524.160000px;}
.y42_c01208{bottom:526.320000px;}
.y41_c01208{bottom:564.480000px;}
.y3d_c01208{bottom:565.200000px;}
.y3f_c01208{bottom:565.920000px;}
.y40_c01208{bottom:566.640000px;}
.y3e_c01208{bottom:567.360000px;}
.y3c_c01208{bottom:568.800000px;}
.y37_c01208{bottom:607.680000px;}
.y39_c01208{bottom:608.400000px;}
.y3b_c01208{bottom:609.120000px;}
.y3a_c01208{bottom:609.840000px;}
.y38_c01208{bottom:610.560000px;}
.y36_c01208{bottom:612.000000px;}
.y34_c01208{bottom:650.160000px;}
.y32_c01208{bottom:650.880000px;}
.y35_c01208{bottom:652.320000px;}
.y31_c01208{bottom:653.040000px;}
.y33_c01208{bottom:653.760000px;}
.y2e_c01208{bottom:693.360000px;}
.y30_c01208{bottom:694.080000px;}
.y2f_c01208{bottom:695.520000px;}
.y2d_c01208{bottom:696.240000px;}
.y29_c01208{bottom:735.840000px;}
.y2c_c01208{bottom:736.560000px;}
.y2b_c01208{bottom:737.280000px;}
.y28_c01208{bottom:738.000000px;}
.y2a_c01208{bottom:739.440000px;}
.y24_c01208{bottom:778.320000px;}
.y26_c01208{bottom:779.760000px;}
.y23_c01208{bottom:781.200000px;}
.y27_c01208{bottom:781.920000px;}
.y25_c01208{bottom:782.640000px;}
.y20_c01208{bottom:822.240000px;}
.y21_c01208{bottom:822.960000px;}
.y1f_c01208{bottom:823.680000px;}
.y22_c01208{bottom:825.120000px;}
.y1b_c01208{bottom:864.720000px;}
.y1a_c01208{bottom:865.440000px;}
.y1e_c01208{bottom:866.160000px;}
.y1c_c01208{bottom:866.880000px;}
.y1d_c01208{bottom:868.320000px;}
.y16_c01208{bottom:907.920000px;}
.y19_c01208{bottom:908.640000px;}
.y18_c01208{bottom:909.360000px;}
.y17_c01208{bottom:910.080000px;}
.y15_c01208{bottom:910.800000px;}
.y10_c01208{bottom:950.400000px;}
.y12_c01208{bottom:951.120000px;}
.y14_c01208{bottom:951.840000px;}
.yf_c01208{bottom:952.560000px;}
.y13_c01208{bottom:953.280000px;}
.y11_c01208{bottom:954.720000px;}
.ya_c01208{bottom:993.600000px;}
.y9_c01208{bottom:995.040000px;}
.yc_c01208{bottom:995.760000px;}
.yd_c01208{bottom:996.480000px;}
.ye_c01208{bottom:997.200000px;}
.yb_c01208{bottom:997.920000px;}
.y3_c01208{bottom:1036.800000px;}
.y2_c01208{bottom:1038.240000px;}
.y7_c01208{bottom:1038.960000px;}
.y5_c01208{bottom:1039.680000px;}
.y4_c01208{bottom:1040.400000px;}
.y8_c01208{bottom:1041.120000px;}
.y6_c01208{bottom:1042.560000px;}
.y1_c01208{bottom:1120.320000px;}
.hc_c01208{height:41.467500px;}
.h7_c01208{height:44.059219px;}
.ha_c01208{height:46.650937px;}
.h5_c01208{height:49.242656px;}
.h9_c01208{height:51.834375px;}
.h6_c01208{height:54.426094px;}
.h8_c01208{height:57.017812px;}
.h3_c01208{height:59.609531px;}
.hb_c01208{height:60.474375px;}
.hd_c01208{height:62.201250px;}
.h2_c01208{height:67.384687px;}
.h4_c01208{height:69.976406px;}
.h0_c01208{height:1156.320000px;}
.h1_c01208{height:1156.500000px;}
.w1_c01208{width:768.000000px;}
.w0_c01208{width:768.240000px;}
.x0_c01208{left:0.000000px;}
.x23_c01208{left:58.320000px;}
.x1a_c01208{left:59.760000px;}
.x12_c01208{left:61.200000px;}
.x2_c01208{left:62.640000px;}
.x24_c01208{left:138.240000px;}
.x1d_c01208{left:139.680000px;}
.x13_c01208{left:141.120000px;}
.x3_c01208{left:143.280000px;}
.x2a_c01208{left:224.640000px;}
.xa_c01208{left:227.520000px;}
.xe_c01208{left:237.600000px;}
.xb_c01208{left:271.440000px;}
.xf_c01208{left:282.240000px;}
.xc_c01208{left:326.160000px;}
.x10_c01208{left:336.240000px;}
.xd_c01208{left:455.760000px;}
.x30_c01208{left:526.320000px;}
.x28_c01208{left:527.760000px;}
.x1e_c01208{left:529.200000px;}
.x19_c01208{left:531.360000px;}
.x14_c01208{left:541.440000px;}
.x4_c01208{left:542.880000px;}
.x32_c01208{left:558.000000px;}
.x2c_c01208{left:559.440000px;}
.x25_c01208{left:560.880000px;}
.x1b_c01208{left:562.320000px;}
.x11_c01208{left:563.760000px;}
.x5_c01208{left:565.200000px;}
.x27_c01208{left:581.040000px;}
.x2e_c01208{left:613.440000px;}
.x26_c01208{left:615.600000px;}
.x1f_c01208{left:617.040000px;}
.x15_c01208{left:618.480000px;}
.x6_c01208{left:619.920000px;}
.x31_c01208{left:645.840000px;}
.x29_c01208{left:648.000000px;}
.x22_c01208{left:649.440000px;}
.x17_c01208{left:650.880000px;}
.x7_c01208{left:652.320000px;}
.x1_c01208{left:680.400000px;}
.x1c_c01208{left:682.560000px;}
.x18_c01208{left:684.000000px;}
.x2f_c01208{left:689.760000px;}
.x2b_c01208{left:691.200000px;}
.x20_c01208{left:692.640000px;}
.x16_c01208{left:694.080000px;}
.x8_c01208{left:695.520000px;}
.x2d_c01208{left:711.360000px;}
.x21_c01208{left:713.520000px;}
.x9_c01208{left:715.680000px;}
@media print{
.v2_c01208{vertical-align:-7.680000pt;}
.v0_c01208{vertical-align:0.000000pt;}
.v1_c01208{vertical-align:7.680000pt;}
.ls0_c01208{letter-spacing:0.000000pt;}
.ws3_c01208{word-spacing:0.000000pt;}
.ws1_c01208{word-spacing:10.391467pt;}
.ws2_c01208{word-spacing:16.102287pt;}
.ws0_c01208{word-spacing:77.317333pt;}
.fs9_c01208{font-size:40.960000pt;}
.fs5_c01208{font-size:43.520000pt;}
.fs8_c01208{font-size:46.080000pt;}
.fs3_c01208{font-size:48.640000pt;}
.fs7_c01208{font-size:51.200000pt;}
.fs4_c01208{font-size:53.760000pt;}
.fs6_c01208{font-size:56.320000pt;}
.fs1_c01208{font-size:58.880000pt;}
.fsa_c01208{font-size:61.440000pt;}
.fs0_c01208{font-size:66.560000pt;}
.fs2_c01208{font-size:69.120000pt;}
.y0_c01208{bottom:0.000000pt;}
.y82_c01208{bottom:39.040000pt;}
.y81_c01208{bottom:40.960000pt;}
.y80_c01208{bottom:42.240000pt;}
.y7f_c01208{bottom:43.520000pt;}
.y7e_c01208{bottom:44.800000pt;}
.y7d_c01208{bottom:46.080000pt;}
.y7c_c01208{bottom:52.480000pt;}
.y7b_c01208{bottom:79.360000pt;}
.y7a_c01208{bottom:80.000000pt;}
.y79_c01208{bottom:81.280000pt;}
.y78_c01208{bottom:81.920000pt;}
.y77_c01208{bottom:82.560000pt;}
.y76_c01208{bottom:83.200000pt;}
.y75_c01208{bottom:89.600000pt;}
.y74_c01208{bottom:118.400000pt;}
.y73_c01208{bottom:120.960000pt;}
.y72_c01208{bottom:121.600000pt;}
.y71_c01208{bottom:126.720000pt;}
.y70_c01208{bottom:156.800000pt;}
.y6f_c01208{bottom:157.440000pt;}
.y6e_c01208{bottom:158.080000pt;}
.y6d_c01208{bottom:159.360000pt;}
.y6c_c01208{bottom:165.120000pt;}
.y69_c01208{bottom:194.560000pt;}
.y6b_c01208{bottom:195.200000pt;}
.y6a_c01208{bottom:195.840000pt;}
.y68_c01208{bottom:197.120000pt;}
.y67_c01208{bottom:201.600000pt;}
.y66_c01208{bottom:231.040000pt;}
.y65_c01208{bottom:232.320000pt;}
.y64_c01208{bottom:232.960000pt;}
.y63_c01208{bottom:234.880000pt;}
.y62_c01208{bottom:235.520000pt;}
.y61_c01208{bottom:240.000000pt;}
.y60_c01208{bottom:270.080000pt;}
.y5e_c01208{bottom:270.720000pt;}
.y5f_c01208{bottom:271.360000pt;}
.y5d_c01208{bottom:272.000000pt;}
.y5c_c01208{bottom:274.560000pt;}
.y5b_c01208{bottom:277.760000pt;}
.y59_c01208{bottom:309.120000pt;}
.y5a_c01208{bottom:311.040000pt;}
.y56_c01208{bottom:311.680000pt;}
.y57_c01208{bottom:312.320000pt;}
.y58_c01208{bottom:312.960000pt;}
.y55_c01208{bottom:315.520000pt;}
.y53_c01208{bottom:348.160000pt;}
.y54_c01208{bottom:349.440000pt;}
.y51_c01208{bottom:350.080000pt;}
.y52_c01208{bottom:350.720000pt;}
.y50_c01208{bottom:353.280000pt;}
.y4e_c01208{bottom:386.560000pt;}
.y4c_c01208{bottom:387.840000pt;}
.y4f_c01208{bottom:388.480000pt;}
.y4d_c01208{bottom:389.120000pt;}
.y4b_c01208{bottom:392.320000pt;}
.y4a_c01208{bottom:424.960000pt;}
.y47_c01208{bottom:426.240000pt;}
.y49_c01208{bottom:426.880000pt;}
.y48_c01208{bottom:427.520000pt;}
.y46_c01208{bottom:430.080000pt;}
.y43_c01208{bottom:464.000000pt;}
.y45_c01208{bottom:465.280000pt;}
.y44_c01208{bottom:465.920000pt;}
.y42_c01208{bottom:467.840000pt;}
.y41_c01208{bottom:501.760000pt;}
.y3d_c01208{bottom:502.400000pt;}
.y3f_c01208{bottom:503.040000pt;}
.y40_c01208{bottom:503.680000pt;}
.y3e_c01208{bottom:504.320000pt;}
.y3c_c01208{bottom:505.600000pt;}
.y37_c01208{bottom:540.160000pt;}
.y39_c01208{bottom:540.800000pt;}
.y3b_c01208{bottom:541.440000pt;}
.y3a_c01208{bottom:542.080000pt;}
.y38_c01208{bottom:542.720000pt;}
.y36_c01208{bottom:544.000000pt;}
.y34_c01208{bottom:577.920000pt;}
.y32_c01208{bottom:578.560000pt;}
.y35_c01208{bottom:579.840000pt;}
.y31_c01208{bottom:580.480000pt;}
.y33_c01208{bottom:581.120000pt;}
.y2e_c01208{bottom:616.320000pt;}
.y30_c01208{bottom:616.960000pt;}
.y2f_c01208{bottom:618.240000pt;}
.y2d_c01208{bottom:618.880000pt;}
.y29_c01208{bottom:654.080000pt;}
.y2c_c01208{bottom:654.720000pt;}
.y2b_c01208{bottom:655.360000pt;}
.y28_c01208{bottom:656.000000pt;}
.y2a_c01208{bottom:657.280000pt;}
.y24_c01208{bottom:691.840000pt;}
.y26_c01208{bottom:693.120000pt;}
.y23_c01208{bottom:694.400000pt;}
.y27_c01208{bottom:695.040000pt;}
.y25_c01208{bottom:695.680000pt;}
.y20_c01208{bottom:730.880000pt;}
.y21_c01208{bottom:731.520000pt;}
.y1f_c01208{bottom:732.160000pt;}
.y22_c01208{bottom:733.440000pt;}
.y1b_c01208{bottom:768.640000pt;}
.y1a_c01208{bottom:769.280000pt;}
.y1e_c01208{bottom:769.920000pt;}
.y1c_c01208{bottom:770.560000pt;}
.y1d_c01208{bottom:771.840000pt;}
.y16_c01208{bottom:807.040000pt;}
.y19_c01208{bottom:807.680000pt;}
.y18_c01208{bottom:808.320000pt;}
.y17_c01208{bottom:808.960000pt;}
.y15_c01208{bottom:809.600000pt;}
.y10_c01208{bottom:844.800000pt;}
.y12_c01208{bottom:845.440000pt;}
.y14_c01208{bottom:846.080000pt;}
.yf_c01208{bottom:846.720000pt;}
.y13_c01208{bottom:847.360000pt;}
.y11_c01208{bottom:848.640000pt;}
.ya_c01208{bottom:883.200000pt;}
.y9_c01208{bottom:884.480000pt;}
.yc_c01208{bottom:885.120000pt;}
.yd_c01208{bottom:885.760000pt;}
.ye_c01208{bottom:886.400000pt;}
.yb_c01208{bottom:887.040000pt;}
.y3_c01208{bottom:921.600000pt;}
.y2_c01208{bottom:922.880000pt;}
.y7_c01208{bottom:923.520000pt;}
.y5_c01208{bottom:924.160000pt;}
.y4_c01208{bottom:924.800000pt;}
.y8_c01208{bottom:925.440000pt;}
.y6_c01208{bottom:926.720000pt;}
.y1_c01208{bottom:995.840000pt;}
.hc_c01208{height:36.860000pt;}
.h7_c01208{height:39.163750pt;}
.ha_c01208{height:41.467500pt;}
.h5_c01208{height:43.771250pt;}
.h9_c01208{height:46.075000pt;}
.h6_c01208{height:48.378750pt;}
.h8_c01208{height:50.682500pt;}
.h3_c01208{height:52.986250pt;}
.hb_c01208{height:53.755000pt;}
.hd_c01208{height:55.290000pt;}
.h2_c01208{height:59.897500pt;}
.h4_c01208{height:62.201250pt;}
.h0_c01208{height:1027.840000pt;}
.h1_c01208{height:1028.000000pt;}
.w1_c01208{width:682.666667pt;}
.w0_c01208{width:682.880000pt;}
.x0_c01208{left:0.000000pt;}
.x23_c01208{left:51.840000pt;}
.x1a_c01208{left:53.120000pt;}
.x12_c01208{left:54.400000pt;}
.x2_c01208{left:55.680000pt;}
.x24_c01208{left:122.880000pt;}
.x1d_c01208{left:124.160000pt;}
.x13_c01208{left:125.440000pt;}
.x3_c01208{left:127.360000pt;}
.x2a_c01208{left:199.680000pt;}
.xa_c01208{left:202.240000pt;}
.xe_c01208{left:211.200000pt;}
.xb_c01208{left:241.280000pt;}
.xf_c01208{left:250.880000pt;}
.xc_c01208{left:289.920000pt;}
.x10_c01208{left:298.880000pt;}
.xd_c01208{left:405.120000pt;}
.x30_c01208{left:467.840000pt;}
.x28_c01208{left:469.120000pt;}
.x1e_c01208{left:470.400000pt;}
.x19_c01208{left:472.320000pt;}
.x14_c01208{left:481.280000pt;}
.x4_c01208{left:482.560000pt;}
.x32_c01208{left:496.000000pt;}
.x2c_c01208{left:497.280000pt;}
.x25_c01208{left:498.560000pt;}
.x1b_c01208{left:499.840000pt;}
.x11_c01208{left:501.120000pt;}
.x5_c01208{left:502.400000pt;}
.x27_c01208{left:516.480000pt;}
.x2e_c01208{left:545.280000pt;}
.x26_c01208{left:547.200000pt;}
.x1f_c01208{left:548.480000pt;}
.x15_c01208{left:549.760000pt;}
.x6_c01208{left:551.040000pt;}
.x31_c01208{left:574.080000pt;}
.x29_c01208{left:576.000000pt;}
.x22_c01208{left:577.280000pt;}
.x17_c01208{left:578.560000pt;}
.x7_c01208{left:579.840000pt;}
.x1_c01208{left:604.800000pt;}
.x1c_c01208{left:606.720000pt;}
.x18_c01208{left:608.000000pt;}
.x2f_c01208{left:613.120000pt;}
.x2b_c01208{left:614.400000pt;}
.x20_c01208{left:615.680000pt;}
.x16_c01208{left:616.960000pt;}
.x8_c01208{left:618.240000pt;}
.x2d_c01208{left:632.320000pt;}
.x21_c01208{left:634.240000pt;}
.x9_c01208{left:636.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5e6e9f8b40b3e185f9c22473.woff2')format("woff");}.ff1_c01209{font-family:ff1_c01209;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3a_c01209{transform:matrix(0.200100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200100,0.000000,0.000000,0.250000,0,0);}
.m18_c01209{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m40_c01209{transform:matrix(0.239525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239525,0.000000,0.000000,0.250000,0,0);}
.m3c_c01209{transform:matrix(0.243050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243050,0.000000,0.000000,0.250000,0,0);}
.m37_c01209{transform:matrix(0.247025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247025,0.000000,0.000000,0.250000,0,0);}
.m10_c01209{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m13_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);}
.m1a_c01209{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_c01209{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m2_c01209{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_c01209{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);}
.m38_c01209{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);}
.m1f_c01209{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m14_c01209{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);}
.m33_c01209{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01209{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.ma_c01209{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m20_c01209{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m4_c01209{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01209{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);}
.m3d_c01209{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.me_c01209{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m19_c01209{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m22_c01209{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01209{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m11_c01209{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01209{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m30_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);}
.m31_c01209{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01209{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m5_c01209{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m16_c01209{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m6_c01209{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m34_c01209{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.md_c01209{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mb_c01209{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m28_c01209{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m21_c01209{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);}
.m3e_c01209{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01209{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);}
.m35_c01209{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m9_c01209{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m7_c01209{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.mf_c01209{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m41_c01209{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);}
.mc_c01209{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);}
.m24_c01209{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);}
.m23_c01209{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m32_c01209{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);}
.m0_c01209{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m1_c01209{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01209{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);}
.m29_c01209{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m8_c01209{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);}
.m2d_c01209{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);}
.m3b_c01209{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01209{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);}
.m2e_c01209{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m26_c01209{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m25_c01209{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m36_c01209{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01209{transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);}
.m39_c01209{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m15_c01209{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m27_c01209{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01209{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.v0_c01209{vertical-align:0.000000px;}
.v2_c01209{vertical-align:8.640000px;}
.v1_c01209{vertical-align:11.520000px;}
.ls0_c01209{letter-spacing:0.000000px;}
.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;}
}
.ws4_c01209{word-spacing:0.000000px;}
.ws0_c01209{word-spacing:14.957055px;}
.ws2_c01209{word-spacing:19.060275px;}
.ws3_c01209{word-spacing:56.131200px;}
.ws1_c01209{word-spacing:56.301600px;}
.fc0_c01209{color:transparent;}
.fsa_c01209{font-size:34.560000px;}
.fsc_c01209{font-size:37.440000px;}
.fsb_c01209{font-size:46.080000px;}
.fs3_c01209{font-size:48.960000px;}
.fs1_c01209{font-size:51.840000px;}
.fs4_c01209{font-size:54.720000px;}
.fs5_c01209{font-size:57.600000px;}
.fs7_c01209{font-size:60.480000px;}
.fsd_c01209{font-size:63.360000px;}
.fs9_c01209{font-size:66.240000px;}
.fs6_c01209{font-size:69.120000px;}
.fs0_c01209{font-size:72.000000px;}
.fs2_c01209{font-size:74.880000px;}
.fs8_c01209{font-size:77.760000px;}
.fsf_c01209{font-size:100.800000px;}
.fse_c01209{font-size:103.680000px;}
.y0_c01209{bottom:0.000000px;}
.y91_c01209{bottom:63.360000px;}
.y95_c01209{bottom:64.080000px;}
.y90_c01209{bottom:65.520000px;}
.y94_c01209{bottom:66.960000px;}
.y93_c01209{bottom:67.680000px;}
.y92_c01209{bottom:68.400000px;}
.y8f_c01209{bottom:70.560000px;}
.y8b_c01209{bottom:107.280000px;}
.y88_c01209{bottom:108.000000px;}
.y8d_c01209{bottom:108.720000px;}
.y8e_c01209{bottom:109.440000px;}
.y89_c01209{bottom:110.160000px;}
.y8a_c01209{bottom:110.880000px;}
.y8c_c01209{bottom:111.600000px;}
.y87_c01209{bottom:113.040000px;}
.y82_c01209{bottom:151.200000px;}
.y85_c01209{bottom:151.920000px;}
.y86_c01209{bottom:153.360000px;}
.y83_c01209{bottom:154.080000px;}
.y84_c01209{bottom:154.800000px;}
.y81_c01209{bottom:155.520000px;}
.y7e_c01209{bottom:192.960000px;}
.y7c_c01209{bottom:195.120000px;}
.y80_c01209{bottom:195.840000px;}
.y7d_c01209{bottom:197.280000px;}
.y7f_c01209{bottom:198.000000px;}
.y7b_c01209{bottom:198.720000px;}
.y79_c01209{bottom:229.680000px;}
.y77_c01209{bottom:237.600000px;}
.y78_c01209{bottom:239.760000px;}
.y7a_c01209{bottom:240.480000px;}
.y76_c01209{bottom:241.200000px;}
.y73_c01209{bottom:272.880000px;}
.y72_c01209{bottom:280.080000px;}
.y70_c01209{bottom:280.800000px;}
.y75_c01209{bottom:281.520000px;}
.y71_c01209{bottom:282.960000px;}
.y6f_c01209{bottom:283.680000px;}
.y74_c01209{bottom:284.400000px;}
.y6b_c01209{bottom:315.360000px;}
.y6a_c01209{bottom:323.280000px;}
.y6d_c01209{bottom:324.000000px;}
.y6e_c01209{bottom:325.440000px;}
.y69_c01209{bottom:326.160000px;}
.y6c_c01209{bottom:327.600000px;}
.y64_c01209{bottom:365.760000px;}
.y66_c01209{bottom:366.480000px;}
.y68_c01209{bottom:367.920000px;}
.y63_c01209{bottom:368.640000px;}
.y65_c01209{bottom:369.360000px;}
.y67_c01209{bottom:370.080000px;}
.y5e_c01209{bottom:407.520000px;}
.y60_c01209{bottom:408.960000px;}
.y62_c01209{bottom:410.400000px;}
.y5d_c01209{bottom:411.120000px;}
.y5f_c01209{bottom:411.840000px;}
.y61_c01209{bottom:412.560000px;}
.y57_c01209{bottom:450.720000px;}
.y59_c01209{bottom:452.160000px;}
.y5b_c01209{bottom:452.880000px;}
.y56_c01209{bottom:453.600000px;}
.y58_c01209{bottom:454.320000px;}
.y5a_c01209{bottom:455.040000px;}
.y5c_c01209{bottom:455.760000px;}
.y50_c01209{bottom:493.920000px;}
.y53_c01209{bottom:494.640000px;}
.y52_c01209{bottom:495.360000px;}
.y4f_c01209{bottom:496.080000px;}
.y55_c01209{bottom:496.800000px;}
.y51_c01209{bottom:497.520000px;}
.y54_c01209{bottom:498.960000px;}
.y4a_c01209{bottom:536.400000px;}
.y4b_c01209{bottom:537.120000px;}
.y4d_c01209{bottom:538.560000px;}
.y49_c01209{bottom:539.280000px;}
.y4c_c01209{bottom:541.440000px;}
.y4e_c01209{bottom:542.160000px;}
.y41_c01209{bottom:578.880000px;}
.y43_c01209{bottom:580.320000px;}
.y40_c01209{bottom:581.040000px;}
.y46_c01209{bottom:581.760000px;}
.y45_c01209{bottom:582.480000px;}
.y48_c01209{bottom:583.200000px;}
.y42_c01209{bottom:583.920000px;}
.y44_c01209{bottom:584.640000px;}
.y47_c01209{bottom:586.080000px;}
.y3a_c01209{bottom:622.080000px;}
.y3c_c01209{bottom:622.800000px;}
.y39_c01209{bottom:624.240000px;}
.y3f_c01209{bottom:624.960000px;}
.y3b_c01209{bottom:626.400000px;}
.y3e_c01209{bottom:627.120000px;}
.y3d_c01209{bottom:627.840000px;}
.y33_c01209{bottom:665.280000px;}
.y34_c01209{bottom:666.000000px;}
.y35_c01209{bottom:666.720000px;}
.y32_c01209{bottom:667.440000px;}
.y38_c01209{bottom:670.320000px;}
.y36_c01209{bottom:671.040000px;}
.y37_c01209{bottom:671.760000px;}
.y2d_c01209{bottom:708.480000px;}
.y2c_c01209{bottom:709.200000px;}
.y2f_c01209{bottom:712.080000px;}
.y31_c01209{bottom:712.800000px;}
.y2e_c01209{bottom:714.240000px;}
.y30_c01209{bottom:714.960000px;}
.y26_c01209{bottom:750.960000px;}
.y28_c01209{bottom:751.680000px;}
.y25_c01209{bottom:753.120000px;}
.y27_c01209{bottom:755.280000px;}
.y2a_c01209{bottom:756.000000px;}
.y29_c01209{bottom:757.440000px;}
.y2b_c01209{bottom:758.880000px;}
.y21_c01209{bottom:794.160000px;}
.y20_c01209{bottom:796.320000px;}
.y22_c01209{bottom:799.920000px;}
.y24_c01209{bottom:800.640000px;}
.y23_c01209{bottom:801.360000px;}
.y1d_c01209{bottom:837.360000px;}
.y1c_c01209{bottom:838.080000px;}
.y1f_c01209{bottom:842.400000px;}
.y1e_c01209{bottom:843.840000px;}
.y18_c01209{bottom:879.120000px;}
.y17_c01209{bottom:882.000000px;}
.y1b_c01209{bottom:884.880000px;}
.y1a_c01209{bottom:886.320000px;}
.y19_c01209{bottom:887.040000px;}
.y13_c01209{bottom:922.320000px;}
.y12_c01209{bottom:923.760000px;}
.y16_c01209{bottom:928.080000px;}
.y15_c01209{bottom:928.800000px;}
.y14_c01209{bottom:930.240000px;}
.ye_c01209{bottom:964.800000px;}
.yd_c01209{bottom:966.240000px;}
.y11_c01209{bottom:970.560000px;}
.y10_c01209{bottom:971.280000px;}
.yf_c01209{bottom:973.440000px;}
.y8_c01209{bottom:1008.000000px;}
.yb_c01209{bottom:1015.200000px;}
.y9_c01209{bottom:1015.920000px;}
.ya_c01209{bottom:1016.640000px;}
.yc_c01209{bottom:1017.360000px;}
.y3_c01209{bottom:1051.200000px;}
.y2_c01209{bottom:1052.640000px;}
.y6_c01209{bottom:1057.680000px;}
.y5_c01209{bottom:1058.400000px;}
.y4_c01209{bottom:1059.120000px;}
.y7_c01209{bottom:1059.840000px;}
.y1_c01209{bottom:1128.960000px;}
.hd_c01209{height:31.100625px;}
.hf_c01209{height:33.692344px;}
.he_c01209{height:41.467500px;}
.h5_c01209{height:44.059219px;}
.h3_c01209{height:46.650937px;}
.h6_c01209{height:49.242656px;}
.h7_c01209{height:51.834375px;}
.h9_c01209{height:54.426094px;}
.h13_c01209{height:55.290937px;}
.h10_c01209{height:57.017812px;}
.hb_c01209{height:59.609531px;}
.hc_c01209{height:60.762656px;}
.h8_c01209{height:62.201250px;}
.h2_c01209{height:64.792969px;}
.h4_c01209{height:67.384687px;}
.ha_c01209{height:69.976406px;}
.h12_c01209{height:90.710156px;}
.h11_c01209{height:93.301875px;}
.h1_c01209{height:1164.750000px;}
.h0_c01209{height:1164.960000px;}
.w0_c01209{width:781.200000px;}
.w1_c01209{width:781.500000px;}
.x0_c01209{left:0.000000px;}
.x2_c01209{left:62.640000px;}
.xe_c01209{left:64.080000px;}
.x21_c01209{left:66.240000px;}
.x35_c01209{left:68.400000px;}
.x3_c01209{left:143.280000px;}
.x15_c01209{left:144.720000px;}
.x26_c01209{left:146.160000px;}
.x31_c01209{left:147.600000px;}
.x12_c01209{left:241.920000px;}
.x22_c01209{left:243.360000px;}
.x13_c01209{left:282.960000px;}
.x19_c01209{left:284.400000px;}
.x23_c01209{left:285.840000px;}
.x32_c01209{left:287.280000px;}
.x1e_c01209{left:295.920000px;}
.x27_c01209{left:297.360000px;}
.x39_c01209{left:308.880000px;}
.x30_c01209{left:328.320000px;}
.x28_c01209{left:339.120000px;}
.x2b_c01209{left:341.280000px;}
.x16_c01209{left:370.800000px;}
.x36_c01209{left:373.680000px;}
.x1b_c01209{left:392.400000px;}
.x1a_c01209{left:414.000000px;}
.x1f_c01209{left:425.520000px;}
.x2e_c01209{left:436.320000px;}
.x1c_c01209{left:447.120000px;}
.x20_c01209{left:457.920000px;}
.x24_c01209{left:469.440000px;}
.x37_c01209{left:470.880000px;}
.x29_c01209{left:480.240000px;}
.x2f_c01209{left:491.040000px;}
.x4_c01209{left:533.520000px;}
.xf_c01209{left:534.960000px;}
.x2c_c01209{left:536.400000px;}
.x5_c01209{left:565.920000px;}
.x17_c01209{left:567.360000px;}
.x2d_c01209{left:568.800000px;}
.xb_c01209{left:587.520000px;}
.xd_c01209{left:598.320000px;}
.x6_c01209{left:620.640000px;}
.x10_c01209{left:622.080000px;}
.x33_c01209{left:623.520000px;}
.x7_c01209{left:653.040000px;}
.x11_c01209{left:654.480000px;}
.x25_c01209{left:655.920000px;}
.x1_c01209{left:664.560000px;}
.x8_c01209{left:685.440000px;}
.x14_c01209{left:686.880000px;}
.x1d_c01209{left:688.320000px;}
.x34_c01209{left:689.760000px;}
.xa_c01209{left:696.240000px;}
.xc_c01209{left:697.680000px;}
.x2a_c01209{left:699.840000px;}
.x9_c01209{left:715.680000px;}
.x18_c01209{left:718.560000px;}
.x38_c01209{left:720.720000px;}
@media print{
.v0_c01209{vertical-align:0.000000pt;}
.v2_c01209{vertical-align:7.680000pt;}
.v1_c01209{vertical-align:10.240000pt;}
.ls0_c01209{letter-spacing:0.000000pt;}
.ws4_c01209{word-spacing:0.000000pt;}
.ws0_c01209{word-spacing:13.295160pt;}
.ws2_c01209{word-spacing:16.942467pt;}
.ws3_c01209{word-spacing:49.894400pt;}
.ws1_c01209{word-spacing:50.045867pt;}
.fsa_c01209{font-size:30.720000pt;}
.fsc_c01209{font-size:33.280000pt;}
.fsb_c01209{font-size:40.960000pt;}
.fs3_c01209{font-size:43.520000pt;}
.fs1_c01209{font-size:46.080000pt;}
.fs4_c01209{font-size:48.640000pt;}
.fs5_c01209{font-size:51.200000pt;}
.fs7_c01209{font-size:53.760000pt;}
.fsd_c01209{font-size:56.320000pt;}
.fs9_c01209{font-size:58.880000pt;}
.fs6_c01209{font-size:61.440000pt;}
.fs0_c01209{font-size:64.000000pt;}
.fs2_c01209{font-size:66.560000pt;}
.fs8_c01209{font-size:69.120000pt;}
.fsf_c01209{font-size:89.600000pt;}
.fse_c01209{font-size:92.160000pt;}
.y0_c01209{bottom:0.000000pt;}
.y91_c01209{bottom:56.320000pt;}
.y95_c01209{bottom:56.960000pt;}
.y90_c01209{bottom:58.240000pt;}
.y94_c01209{bottom:59.520000pt;}
.y93_c01209{bottom:60.160000pt;}
.y92_c01209{bottom:60.800000pt;}
.y8f_c01209{bottom:62.720000pt;}
.y8b_c01209{bottom:95.360000pt;}
.y88_c01209{bottom:96.000000pt;}
.y8d_c01209{bottom:96.640000pt;}
.y8e_c01209{bottom:97.280000pt;}
.y89_c01209{bottom:97.920000pt;}
.y8a_c01209{bottom:98.560000pt;}
.y8c_c01209{bottom:99.200000pt;}
.y87_c01209{bottom:100.480000pt;}
.y82_c01209{bottom:134.400000pt;}
.y85_c01209{bottom:135.040000pt;}
.y86_c01209{bottom:136.320000pt;}
.y83_c01209{bottom:136.960000pt;}
.y84_c01209{bottom:137.600000pt;}
.y81_c01209{bottom:138.240000pt;}
.y7e_c01209{bottom:171.520000pt;}
.y7c_c01209{bottom:173.440000pt;}
.y80_c01209{bottom:174.080000pt;}
.y7d_c01209{bottom:175.360000pt;}
.y7f_c01209{bottom:176.000000pt;}
.y7b_c01209{bottom:176.640000pt;}
.y79_c01209{bottom:204.160000pt;}
.y77_c01209{bottom:211.200000pt;}
.y78_c01209{bottom:213.120000pt;}
.y7a_c01209{bottom:213.760000pt;}
.y76_c01209{bottom:214.400000pt;}
.y73_c01209{bottom:242.560000pt;}
.y72_c01209{bottom:248.960000pt;}
.y70_c01209{bottom:249.600000pt;}
.y75_c01209{bottom:250.240000pt;}
.y71_c01209{bottom:251.520000pt;}
.y6f_c01209{bottom:252.160000pt;}
.y74_c01209{bottom:252.800000pt;}
.y6b_c01209{bottom:280.320000pt;}
.y6a_c01209{bottom:287.360000pt;}
.y6d_c01209{bottom:288.000000pt;}
.y6e_c01209{bottom:289.280000pt;}
.y69_c01209{bottom:289.920000pt;}
.y6c_c01209{bottom:291.200000pt;}
.y64_c01209{bottom:325.120000pt;}
.y66_c01209{bottom:325.760000pt;}
.y68_c01209{bottom:327.040000pt;}
.y63_c01209{bottom:327.680000pt;}
.y65_c01209{bottom:328.320000pt;}
.y67_c01209{bottom:328.960000pt;}
.y5e_c01209{bottom:362.240000pt;}
.y60_c01209{bottom:363.520000pt;}
.y62_c01209{bottom:364.800000pt;}
.y5d_c01209{bottom:365.440000pt;}
.y5f_c01209{bottom:366.080000pt;}
.y61_c01209{bottom:366.720000pt;}
.y57_c01209{bottom:400.640000pt;}
.y59_c01209{bottom:401.920000pt;}
.y5b_c01209{bottom:402.560000pt;}
.y56_c01209{bottom:403.200000pt;}
.y58_c01209{bottom:403.840000pt;}
.y5a_c01209{bottom:404.480000pt;}
.y5c_c01209{bottom:405.120000pt;}
.y50_c01209{bottom:439.040000pt;}
.y53_c01209{bottom:439.680000pt;}
.y52_c01209{bottom:440.320000pt;}
.y4f_c01209{bottom:440.960000pt;}
.y55_c01209{bottom:441.600000pt;}
.y51_c01209{bottom:442.240000pt;}
.y54_c01209{bottom:443.520000pt;}
.y4a_c01209{bottom:476.800000pt;}
.y4b_c01209{bottom:477.440000pt;}
.y4d_c01209{bottom:478.720000pt;}
.y49_c01209{bottom:479.360000pt;}
.y4c_c01209{bottom:481.280000pt;}
.y4e_c01209{bottom:481.920000pt;}
.y41_c01209{bottom:514.560000pt;}
.y43_c01209{bottom:515.840000pt;}
.y40_c01209{bottom:516.480000pt;}
.y46_c01209{bottom:517.120000pt;}
.y45_c01209{bottom:517.760000pt;}
.y48_c01209{bottom:518.400000pt;}
.y42_c01209{bottom:519.040000pt;}
.y44_c01209{bottom:519.680000pt;}
.y47_c01209{bottom:520.960000pt;}
.y3a_c01209{bottom:552.960000pt;}
.y3c_c01209{bottom:553.600000pt;}
.y39_c01209{bottom:554.880000pt;}
.y3f_c01209{bottom:555.520000pt;}
.y3b_c01209{bottom:556.800000pt;}
.y3e_c01209{bottom:557.440000pt;}
.y3d_c01209{bottom:558.080000pt;}
.y33_c01209{bottom:591.360000pt;}
.y34_c01209{bottom:592.000000pt;}
.y35_c01209{bottom:592.640000pt;}
.y32_c01209{bottom:593.280000pt;}
.y38_c01209{bottom:595.840000pt;}
.y36_c01209{bottom:596.480000pt;}
.y37_c01209{bottom:597.120000pt;}
.y2d_c01209{bottom:629.760000pt;}
.y2c_c01209{bottom:630.400000pt;}
.y2f_c01209{bottom:632.960000pt;}
.y31_c01209{bottom:633.600000pt;}
.y2e_c01209{bottom:634.880000pt;}
.y30_c01209{bottom:635.520000pt;}
.y26_c01209{bottom:667.520000pt;}
.y28_c01209{bottom:668.160000pt;}
.y25_c01209{bottom:669.440000pt;}
.y27_c01209{bottom:671.360000pt;}
.y2a_c01209{bottom:672.000000pt;}
.y29_c01209{bottom:673.280000pt;}
.y2b_c01209{bottom:674.560000pt;}
.y21_c01209{bottom:705.920000pt;}
.y20_c01209{bottom:707.840000pt;}
.y22_c01209{bottom:711.040000pt;}
.y24_c01209{bottom:711.680000pt;}
.y23_c01209{bottom:712.320000pt;}
.y1d_c01209{bottom:744.320000pt;}
.y1c_c01209{bottom:744.960000pt;}
.y1f_c01209{bottom:748.800000pt;}
.y1e_c01209{bottom:750.080000pt;}
.y18_c01209{bottom:781.440000pt;}
.y17_c01209{bottom:784.000000pt;}
.y1b_c01209{bottom:786.560000pt;}
.y1a_c01209{bottom:787.840000pt;}
.y19_c01209{bottom:788.480000pt;}
.y13_c01209{bottom:819.840000pt;}
.y12_c01209{bottom:821.120000pt;}
.y16_c01209{bottom:824.960000pt;}
.y15_c01209{bottom:825.600000pt;}
.y14_c01209{bottom:826.880000pt;}
.ye_c01209{bottom:857.600000pt;}
.yd_c01209{bottom:858.880000pt;}
.y11_c01209{bottom:862.720000pt;}
.y10_c01209{bottom:863.360000pt;}
.yf_c01209{bottom:865.280000pt;}
.y8_c01209{bottom:896.000000pt;}
.yb_c01209{bottom:902.400000pt;}
.y9_c01209{bottom:903.040000pt;}
.ya_c01209{bottom:903.680000pt;}
.yc_c01209{bottom:904.320000pt;}
.y3_c01209{bottom:934.400000pt;}
.y2_c01209{bottom:935.680000pt;}
.y6_c01209{bottom:940.160000pt;}
.y5_c01209{bottom:940.800000pt;}
.y4_c01209{bottom:941.440000pt;}
.y7_c01209{bottom:942.080000pt;}
.y1_c01209{bottom:1003.520000pt;}
.hd_c01209{height:27.645000pt;}
.hf_c01209{height:29.948750pt;}
.he_c01209{height:36.860000pt;}
.h5_c01209{height:39.163750pt;}
.h3_c01209{height:41.467500pt;}
.h6_c01209{height:43.771250pt;}
.h7_c01209{height:46.075000pt;}
.h9_c01209{height:48.378750pt;}
.h13_c01209{height:49.147500pt;}
.h10_c01209{height:50.682500pt;}
.hb_c01209{height:52.986250pt;}
.hc_c01209{height:54.011250pt;}
.h8_c01209{height:55.290000pt;}
.h2_c01209{height:57.593750pt;}
.h4_c01209{height:59.897500pt;}
.ha_c01209{height:62.201250pt;}
.h12_c01209{height:80.631250pt;}
.h11_c01209{height:82.935000pt;}
.h1_c01209{height:1035.333333pt;}
.h0_c01209{height:1035.520000pt;}
.w0_c01209{width:694.400000pt;}
.w1_c01209{width:694.666667pt;}
.x0_c01209{left:0.000000pt;}
.x2_c01209{left:55.680000pt;}
.xe_c01209{left:56.960000pt;}
.x21_c01209{left:58.880000pt;}
.x35_c01209{left:60.800000pt;}
.x3_c01209{left:127.360000pt;}
.x15_c01209{left:128.640000pt;}
.x26_c01209{left:129.920000pt;}
.x31_c01209{left:131.200000pt;}
.x12_c01209{left:215.040000pt;}
.x22_c01209{left:216.320000pt;}
.x13_c01209{left:251.520000pt;}
.x19_c01209{left:252.800000pt;}
.x23_c01209{left:254.080000pt;}
.x32_c01209{left:255.360000pt;}
.x1e_c01209{left:263.040000pt;}
.x27_c01209{left:264.320000pt;}
.x39_c01209{left:274.560000pt;}
.x30_c01209{left:291.840000pt;}
.x28_c01209{left:301.440000pt;}
.x2b_c01209{left:303.360000pt;}
.x16_c01209{left:329.600000pt;}
.x36_c01209{left:332.160000pt;}
.x1b_c01209{left:348.800000pt;}
.x1a_c01209{left:368.000000pt;}
.x1f_c01209{left:378.240000pt;}
.x2e_c01209{left:387.840000pt;}
.x1c_c01209{left:397.440000pt;}
.x20_c01209{left:407.040000pt;}
.x24_c01209{left:417.280000pt;}
.x37_c01209{left:418.560000pt;}
.x29_c01209{left:426.880000pt;}
.x2f_c01209{left:436.480000pt;}
.x4_c01209{left:474.240000pt;}
.xf_c01209{left:475.520000pt;}
.x2c_c01209{left:476.800000pt;}
.x5_c01209{left:503.040000pt;}
.x17_c01209{left:504.320000pt;}
.x2d_c01209{left:505.600000pt;}
.xb_c01209{left:522.240000pt;}
.xd_c01209{left:531.840000pt;}
.x6_c01209{left:551.680000pt;}
.x10_c01209{left:552.960000pt;}
.x33_c01209{left:554.240000pt;}
.x7_c01209{left:580.480000pt;}
.x11_c01209{left:581.760000pt;}
.x25_c01209{left:583.040000pt;}
.x1_c01209{left:590.720000pt;}
.x8_c01209{left:609.280000pt;}
.x14_c01209{left:610.560000pt;}
.x1d_c01209{left:611.840000pt;}
.x34_c01209{left:613.120000pt;}
.xa_c01209{left:618.880000pt;}
.xc_c01209{left:620.160000pt;}
.x2a_c01209{left:622.080000pt;}
.x9_c01209{left:636.160000pt;}
.x18_c01209{left:638.720000pt;}
.x38_c01209{left:640.640000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_250339f9228feef454fc2c23.woff2')format("woff");}.ff1_c01210{font-family:ff1_c01210;line-height:1.109863;font-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_c01210{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);}
.m2b_c01210{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01210{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m3e_c01210{transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);}
.m37_c01210{transform:matrix(0.241125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241125,0.000000,0.000000,0.250000,0,0);}
.m40_c01210{transform:matrix(0.241550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241550,0.000000,0.000000,0.250000,0,0);}
.m41_c01210{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m1c_c01210{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m3a_c01210{transform:matrix(0.247450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247450,0.000000,0.000000,0.250000,0,0);}
.m38_c01210{transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);}
.m3d_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.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m2_c01210{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m15_c01210{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);}
.m30_c01210{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);}
.m23_c01210{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);}
.m34_c01210{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.ma_c01210{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_c01210{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);}
.m31_c01210{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m13_c01210{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01210{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m4_c01210{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m8_c01210{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m9_c01210{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m35_c01210{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01210{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01210{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m39_c01210{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m3_c01210{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.mf_c01210{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m5_c01210{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m25_c01210{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m19_c01210{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m21_c01210{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01210{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m42_c01210{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01210{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m10_c01210{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);}
.m2a_c01210{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m18_c01210{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1_c01210{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m22_c01210{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m0_c01210{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m11_c01210{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_c01210{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m12_c01210{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m29_c01210{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);}
.m36_c01210{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);}
.m16_c01210{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01210{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);}
.m24_c01210{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);}
.m2d_c01210{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m28_c01210{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.me_c01210{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01210{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);}
.m1f_c01210{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01210{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.md_c01210{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01210{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_c01210{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m20_c01210{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);}
.m14_c01210{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01210{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m7_c01210{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m43_c01210{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);}
.m32_c01210{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.m33_c01210{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.v0_c01210{vertical-align:0.000000px;}
.ls0_c01210{letter-spacing:0.000000px;}
.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;}
.fc0_c01210{color:transparent;}
.fsa_c01210{font-size:37.440000px;}
.fs8_c01210{font-size:40.320000px;}
.fsc_c01210{font-size:46.080000px;}
.fs9_c01210{font-size:48.960000px;}
.fs3_c01210{font-size:51.840000px;}
.fs4_c01210{font-size:54.720000px;}
.fs7_c01210{font-size:57.600000px;}
.fs1_c01210{font-size:60.480000px;}
.fsb_c01210{font-size:63.360000px;}
.fs5_c01210{font-size:66.240000px;}
.fs6_c01210{font-size:69.120000px;}
.fs2_c01210{font-size:72.000000px;}
.fs0_c01210{font-size:74.880000px;}
.fsd_c01210{font-size:77.760000px;}
.y0_c01210{bottom:0.000000px;}
.y8e_c01210{bottom:48.240000px;}
.y8c_c01210{bottom:48.960000px;}
.y8d_c01210{bottom:49.680000px;}
.y8a_c01210{bottom:51.840000px;}
.y8b_c01210{bottom:52.560000px;}
.y89_c01210{bottom:59.040000px;}
.y86_c01210{bottom:92.160000px;}
.y88_c01210{bottom:92.880000px;}
.y87_c01210{bottom:94.320000px;}
.y83_c01210{bottom:95.040000px;}
.y85_c01210{bottom:95.760000px;}
.y84_c01210{bottom:96.480000px;}
.y82_c01210{bottom:100.080000px;}
.y81_c01210{bottom:133.920000px;}
.y7e_c01210{bottom:134.640000px;}
.y80_c01210{bottom:136.080000px;}
.y7c_c01210{bottom:136.800000px;}
.y7f_c01210{bottom:137.520000px;}
.y7d_c01210{bottom:138.960000px;}
.y7b_c01210{bottom:142.560000px;}
.y7a_c01210{bottom:176.400000px;}
.y79_c01210{bottom:177.120000px;}
.y75_c01210{bottom:177.840000px;}
.y77_c01210{bottom:178.560000px;}
.y78_c01210{bottom:179.280000px;}
.y73_c01210{bottom:180.000000px;}
.y76_c01210{bottom:180.720000px;}
.y74_c01210{bottom:182.160000px;}
.y72_c01210{bottom:185.760000px;}
.y71_c01210{bottom:218.160000px;}
.y70_c01210{bottom:219.600000px;}
.y6f_c01210{bottom:220.320000px;}
.y6e_c01210{bottom:222.480000px;}
.y6d_c01210{bottom:226.800000px;}
.y6c_c01210{bottom:262.800000px;}
.y6a_c01210{bottom:264.240000px;}
.y69_c01210{bottom:264.960000px;}
.y6b_c01210{bottom:266.400000px;}
.y68_c01210{bottom:269.280000px;}
.y64_c01210{bottom:306.000000px;}
.y66_c01210{bottom:307.440000px;}
.y62_c01210{bottom:308.160000px;}
.y67_c01210{bottom:308.880000px;}
.y65_c01210{bottom:309.600000px;}
.y63_c01210{bottom:310.320000px;}
.y61_c01210{bottom:311.040000px;}
.y60_c01210{bottom:349.200000px;}
.y5d_c01210{bottom:349.920000px;}
.y5f_c01210{bottom:350.640000px;}
.y5c_c01210{bottom:351.360000px;}
.y5e_c01210{bottom:352.800000px;}
.y5b_c01210{bottom:354.960000px;}
.y57_c01210{bottom:392.400000px;}
.y59_c01210{bottom:393.120000px;}
.y55_c01210{bottom:394.560000px;}
.y5a_c01210{bottom:395.280000px;}
.y58_c01210{bottom:396.000000px;}
.y56_c01210{bottom:396.720000px;}
.y54_c01210{bottom:397.440000px;}
.y53_c01210{bottom:435.600000px;}
.y51_c01210{bottom:436.320000px;}
.y50_c01210{bottom:437.040000px;}
.y52_c01210{bottom:438.480000px;}
.y4f_c01210{bottom:439.920000px;}
.y4b_c01210{bottom:479.520000px;}
.y4a_c01210{bottom:480.240000px;}
.y4e_c01210{bottom:480.960000px;}
.y4d_c01210{bottom:481.680000px;}
.y4c_c01210{bottom:482.400000px;}
.y49_c01210{bottom:483.120000px;}
.y46_c01210{bottom:522.720000px;}
.y47_c01210{bottom:524.880000px;}
.y48_c01210{bottom:525.600000px;}
.y45_c01210{bottom:526.320000px;}
.y41_c01210{bottom:565.200000px;}
.y40_c01210{bottom:565.920000px;}
.y43_c01210{bottom:566.640000px;}
.y44_c01210{bottom:567.360000px;}
.y3f_c01210{bottom:568.080000px;}
.y42_c01210{bottom:568.800000px;}
.y3e_c01210{bottom:607.680000px;}
.y3c_c01210{bottom:609.120000px;}
.y3b_c01210{bottom:611.280000px;}
.y3d_c01210{bottom:612.000000px;}
.y3a_c01210{bottom:641.520000px;}
.y37_c01210{bottom:650.880000px;}
.y36_c01210{bottom:653.760000px;}
.y39_c01210{bottom:654.480000px;}
.y38_c01210{bottom:655.200000px;}
.y32_c01210{bottom:693.360000px;}
.y34_c01210{bottom:694.800000px;}
.y31_c01210{bottom:695.520000px;}
.y35_c01210{bottom:697.680000px;}
.y33_c01210{bottom:698.400000px;}
.y2d_c01210{bottom:737.280000px;}
.y2c_c01210{bottom:738.720000px;}
.y30_c01210{bottom:739.440000px;}
.y2e_c01210{bottom:740.160000px;}
.y2f_c01210{bottom:740.880000px;}
.y29_c01210{bottom:779.760000px;}
.y2b_c01210{bottom:780.480000px;}
.y28_c01210{bottom:781.200000px;}
.y2a_c01210{bottom:783.360000px;}
.y23_c01210{bottom:822.240000px;}
.y25_c01210{bottom:822.960000px;}
.y22_c01210{bottom:824.400000px;}
.y26_c01210{bottom:825.120000px;}
.y24_c01210{bottom:826.560000px;}
.y27_c01210{bottom:827.280000px;}
.y1d_c01210{bottom:865.440000px;}
.y1f_c01210{bottom:866.160000px;}
.y1c_c01210{bottom:866.880000px;}
.y21_c01210{bottom:867.600000px;}
.y20_c01210{bottom:869.040000px;}
.y1e_c01210{bottom:869.760000px;}
.y17_c01210{bottom:907.920000px;}
.y1b_c01210{bottom:909.360000px;}
.y18_c01210{bottom:910.080000px;}
.y16_c01210{bottom:910.800000px;}
.y1a_c01210{bottom:912.240000px;}
.y19_c01210{bottom:912.960000px;}
.y10_c01210{bottom:951.120000px;}
.y13_c01210{bottom:951.840000px;}
.yf_c01210{bottom:952.560000px;}
.y11_c01210{bottom:953.280000px;}
.y15_c01210{bottom:954.000000px;}
.y12_c01210{bottom:955.440000px;}
.y14_c01210{bottom:956.160000px;}
.y9_c01210{bottom:994.320000px;}
.y8_c01210{bottom:995.760000px;}
.yb_c01210{bottom:996.480000px;}
.ya_c01210{bottom:997.920000px;}
.yc_c01210{bottom:998.640000px;}
.yd_c01210{bottom:999.360000px;}
.ye_c01210{bottom:1000.080000px;}
.y3_c01210{bottom:1037.520000px;}
.y2_c01210{bottom:1038.960000px;}
.y7_c01210{bottom:1039.680000px;}
.y4_c01210{bottom:1040.400000px;}
.y5_c01210{bottom:1042.560000px;}
.y6_c01210{bottom:1043.280000px;}
.y1_c01210{bottom:1117.440000px;}
.hc_c01210{height:33.692344px;}
.ha_c01210{height:36.284062px;}
.he_c01210{height:41.467500px;}
.hb_c01210{height:44.059219px;}
.h5_c01210{height:46.650937px;}
.h6_c01210{height:49.242656px;}
.h9_c01210{height:51.834375px;}
.h3_c01210{height:54.426094px;}
.hd_c01210{height:57.017812px;}
.h7_c01210{height:59.609531px;}
.h8_c01210{height:62.201250px;}
.h4_c01210{height:64.792969px;}
.h2_c01210{height:67.384687px;}
.hf_c01210{height:69.976406px;}
.h0_c01210{height:1159.920000px;}
.h1_c01210{height:1160.250000px;}
.w1_c01210{width:772.500000px;}
.w0_c01210{width:772.560000px;}
.x0_c01210{left:0.000000px;}
.x1b_c01210{left:58.320000px;}
.x2_c01210{left:59.760000px;}
.x22_c01210{left:137.520000px;}
.x12_c01210{left:138.960000px;}
.x3_c01210{left:140.400000px;}
.x2d_c01210{left:233.280000px;}
.x13_c01210{left:236.160000px;}
.x4_c01210{left:237.600000px;}
.x16_c01210{left:269.280000px;}
.x26_c01210{left:276.480000px;}
.x1f_c01210{left:277.920000px;}
.xc_c01210{left:279.360000px;}
.x17_c01210{left:311.040000px;}
.x1d_c01210{left:320.400000px;}
.x1c_c01210{left:321.840000px;}
.x2e_c01210{left:330.480000px;}
.x5_c01210{left:366.480000px;}
.xd_c01210{left:409.680000px;}
.x14_c01210{left:419.040000px;}
.x21_c01210{left:439.920000px;}
.xe_c01210{left:452.160000px;}
.x11_c01210{left:462.960000px;}
.x2b_c01210{left:526.320000px;}
.x24_c01210{left:527.760000px;}
.x19_c01210{left:529.200000px;}
.x6_c01210{left:530.640000px;}
.x28_c01210{left:558.720000px;}
.x1e_c01210{left:560.160000px;}
.x7_c01210{left:562.320000px;}
.x2a_c01210{left:579.600000px;}
.x25_c01210{left:581.040000px;}
.x8_c01210{left:583.920000px;}
.x29_c01210{left:613.440000px;}
.x15_c01210{left:615.600000px;}
.xf_c01210{left:617.040000px;}
.x9_c01210{left:619.920000px;}
.x30_c01210{left:645.840000px;}
.x27_c01210{left:647.280000px;}
.x1a_c01210{left:648.720000px;}
.xa_c01210{left:650.160000px;}
.x2f_c01210{left:656.640000px;}
.x1_c01210{left:660.960000px;}
.x31_c01210{left:678.960000px;}
.x20_c01210{left:681.120000px;}
.x10_c01210{left:682.560000px;}
.x2c_c01210{left:689.760000px;}
.x23_c01210{left:691.200000px;}
.xb_c01210{left:692.640000px;}
.x32_c01210{left:710.640000px;}
.x18_c01210{left:712.800000px;}
@media print{
.v0_c01210{vertical-align:0.000000pt;}
.ls0_c01210{letter-spacing:0.000000pt;}
.ws0_c01210{word-spacing:0.000000pt;}
.fsa_c01210{font-size:33.280000pt;}
.fs8_c01210{font-size:35.840000pt;}
.fsc_c01210{font-size:40.960000pt;}
.fs9_c01210{font-size:43.520000pt;}
.fs3_c01210{font-size:46.080000pt;}
.fs4_c01210{font-size:48.640000pt;}
.fs7_c01210{font-size:51.200000pt;}
.fs1_c01210{font-size:53.760000pt;}
.fsb_c01210{font-size:56.320000pt;}
.fs5_c01210{font-size:58.880000pt;}
.fs6_c01210{font-size:61.440000pt;}
.fs2_c01210{font-size:64.000000pt;}
.fs0_c01210{font-size:66.560000pt;}
.fsd_c01210{font-size:69.120000pt;}
.y0_c01210{bottom:0.000000pt;}
.y8e_c01210{bottom:42.880000pt;}
.y8c_c01210{bottom:43.520000pt;}
.y8d_c01210{bottom:44.160000pt;}
.y8a_c01210{bottom:46.080000pt;}
.y8b_c01210{bottom:46.720000pt;}
.y89_c01210{bottom:52.480000pt;}
.y86_c01210{bottom:81.920000pt;}
.y88_c01210{bottom:82.560000pt;}
.y87_c01210{bottom:83.840000pt;}
.y83_c01210{bottom:84.480000pt;}
.y85_c01210{bottom:85.120000pt;}
.y84_c01210{bottom:85.760000pt;}
.y82_c01210{bottom:88.960000pt;}
.y81_c01210{bottom:119.040000pt;}
.y7e_c01210{bottom:119.680000pt;}
.y80_c01210{bottom:120.960000pt;}
.y7c_c01210{bottom:121.600000pt;}
.y7f_c01210{bottom:122.240000pt;}
.y7d_c01210{bottom:123.520000pt;}
.y7b_c01210{bottom:126.720000pt;}
.y7a_c01210{bottom:156.800000pt;}
.y79_c01210{bottom:157.440000pt;}
.y75_c01210{bottom:158.080000pt;}
.y77_c01210{bottom:158.720000pt;}
.y78_c01210{bottom:159.360000pt;}
.y73_c01210{bottom:160.000000pt;}
.y76_c01210{bottom:160.640000pt;}
.y74_c01210{bottom:161.920000pt;}
.y72_c01210{bottom:165.120000pt;}
.y71_c01210{bottom:193.920000pt;}
.y70_c01210{bottom:195.200000pt;}
.y6f_c01210{bottom:195.840000pt;}
.y6e_c01210{bottom:197.760000pt;}
.y6d_c01210{bottom:201.600000pt;}
.y6c_c01210{bottom:233.600000pt;}
.y6a_c01210{bottom:234.880000pt;}
.y69_c01210{bottom:235.520000pt;}
.y6b_c01210{bottom:236.800000pt;}
.y68_c01210{bottom:239.360000pt;}
.y64_c01210{bottom:272.000000pt;}
.y66_c01210{bottom:273.280000pt;}
.y62_c01210{bottom:273.920000pt;}
.y67_c01210{bottom:274.560000pt;}
.y65_c01210{bottom:275.200000pt;}
.y63_c01210{bottom:275.840000pt;}
.y61_c01210{bottom:276.480000pt;}
.y60_c01210{bottom:310.400000pt;}
.y5d_c01210{bottom:311.040000pt;}
.y5f_c01210{bottom:311.680000pt;}
.y5c_c01210{bottom:312.320000pt;}
.y5e_c01210{bottom:313.600000pt;}
.y5b_c01210{bottom:315.520000pt;}
.y57_c01210{bottom:348.800000pt;}
.y59_c01210{bottom:349.440000pt;}
.y55_c01210{bottom:350.720000pt;}
.y5a_c01210{bottom:351.360000pt;}
.y58_c01210{bottom:352.000000pt;}
.y56_c01210{bottom:352.640000pt;}
.y54_c01210{bottom:353.280000pt;}
.y53_c01210{bottom:387.200000pt;}
.y51_c01210{bottom:387.840000pt;}
.y50_c01210{bottom:388.480000pt;}
.y52_c01210{bottom:389.760000pt;}
.y4f_c01210{bottom:391.040000pt;}
.y4b_c01210{bottom:426.240000pt;}
.y4a_c01210{bottom:426.880000pt;}
.y4e_c01210{bottom:427.520000pt;}
.y4d_c01210{bottom:428.160000pt;}
.y4c_c01210{bottom:428.800000pt;}
.y49_c01210{bottom:429.440000pt;}
.y46_c01210{bottom:464.640000pt;}
.y47_c01210{bottom:466.560000pt;}
.y48_c01210{bottom:467.200000pt;}
.y45_c01210{bottom:467.840000pt;}
.y41_c01210{bottom:502.400000pt;}
.y40_c01210{bottom:503.040000pt;}
.y43_c01210{bottom:503.680000pt;}
.y44_c01210{bottom:504.320000pt;}
.y3f_c01210{bottom:504.960000pt;}
.y42_c01210{bottom:505.600000pt;}
.y3e_c01210{bottom:540.160000pt;}
.y3c_c01210{bottom:541.440000pt;}
.y3b_c01210{bottom:543.360000pt;}
.y3d_c01210{bottom:544.000000pt;}
.y3a_c01210{bottom:570.240000pt;}
.y37_c01210{bottom:578.560000pt;}
.y36_c01210{bottom:581.120000pt;}
.y39_c01210{bottom:581.760000pt;}
.y38_c01210{bottom:582.400000pt;}
.y32_c01210{bottom:616.320000pt;}
.y34_c01210{bottom:617.600000pt;}
.y31_c01210{bottom:618.240000pt;}
.y35_c01210{bottom:620.160000pt;}
.y33_c01210{bottom:620.800000pt;}
.y2d_c01210{bottom:655.360000pt;}
.y2c_c01210{bottom:656.640000pt;}
.y30_c01210{bottom:657.280000pt;}
.y2e_c01210{bottom:657.920000pt;}
.y2f_c01210{bottom:658.560000pt;}
.y29_c01210{bottom:693.120000pt;}
.y2b_c01210{bottom:693.760000pt;}
.y28_c01210{bottom:694.400000pt;}
.y2a_c01210{bottom:696.320000pt;}
.y23_c01210{bottom:730.880000pt;}
.y25_c01210{bottom:731.520000pt;}
.y22_c01210{bottom:732.800000pt;}
.y26_c01210{bottom:733.440000pt;}
.y24_c01210{bottom:734.720000pt;}
.y27_c01210{bottom:735.360000pt;}
.y1d_c01210{bottom:769.280000pt;}
.y1f_c01210{bottom:769.920000pt;}
.y1c_c01210{bottom:770.560000pt;}
.y21_c01210{bottom:771.200000pt;}
.y20_c01210{bottom:772.480000pt;}
.y1e_c01210{bottom:773.120000pt;}
.y17_c01210{bottom:807.040000pt;}
.y1b_c01210{bottom:808.320000pt;}
.y18_c01210{bottom:808.960000pt;}
.y16_c01210{bottom:809.600000pt;}
.y1a_c01210{bottom:810.880000pt;}
.y19_c01210{bottom:811.520000pt;}
.y10_c01210{bottom:845.440000pt;}
.y13_c01210{bottom:846.080000pt;}
.yf_c01210{bottom:846.720000pt;}
.y11_c01210{bottom:847.360000pt;}
.y15_c01210{bottom:848.000000pt;}
.y12_c01210{bottom:849.280000pt;}
.y14_c01210{bottom:849.920000pt;}
.y9_c01210{bottom:883.840000pt;}
.y8_c01210{bottom:885.120000pt;}
.yb_c01210{bottom:885.760000pt;}
.ya_c01210{bottom:887.040000pt;}
.yc_c01210{bottom:887.680000pt;}
.yd_c01210{bottom:888.320000pt;}
.ye_c01210{bottom:888.960000pt;}
.y3_c01210{bottom:922.240000pt;}
.y2_c01210{bottom:923.520000pt;}
.y7_c01210{bottom:924.160000pt;}
.y4_c01210{bottom:924.800000pt;}
.y5_c01210{bottom:926.720000pt;}
.y6_c01210{bottom:927.360000pt;}
.y1_c01210{bottom:993.280000pt;}
.hc_c01210{height:29.948750pt;}
.ha_c01210{height:32.252500pt;}
.he_c01210{height:36.860000pt;}
.hb_c01210{height:39.163750pt;}
.h5_c01210{height:41.467500pt;}
.h6_c01210{height:43.771250pt;}
.h9_c01210{height:46.075000pt;}
.h3_c01210{height:48.378750pt;}
.hd_c01210{height:50.682500pt;}
.h7_c01210{height:52.986250pt;}
.h8_c01210{height:55.290000pt;}
.h4_c01210{height:57.593750pt;}
.h2_c01210{height:59.897500pt;}
.hf_c01210{height:62.201250pt;}
.h0_c01210{height:1031.040000pt;}
.h1_c01210{height:1031.333333pt;}
.w1_c01210{width:686.666667pt;}
.w0_c01210{width:686.720000pt;}
.x0_c01210{left:0.000000pt;}
.x1b_c01210{left:51.840000pt;}
.x2_c01210{left:53.120000pt;}
.x22_c01210{left:122.240000pt;}
.x12_c01210{left:123.520000pt;}
.x3_c01210{left:124.800000pt;}
.x2d_c01210{left:207.360000pt;}
.x13_c01210{left:209.920000pt;}
.x4_c01210{left:211.200000pt;}
.x16_c01210{left:239.360000pt;}
.x26_c01210{left:245.760000pt;}
.x1f_c01210{left:247.040000pt;}
.xc_c01210{left:248.320000pt;}
.x17_c01210{left:276.480000pt;}
.x1d_c01210{left:284.800000pt;}
.x1c_c01210{left:286.080000pt;}
.x2e_c01210{left:293.760000pt;}
.x5_c01210{left:325.760000pt;}
.xd_c01210{left:364.160000pt;}
.x14_c01210{left:372.480000pt;}
.x21_c01210{left:391.040000pt;}
.xe_c01210{left:401.920000pt;}
.x11_c01210{left:411.520000pt;}
.x2b_c01210{left:467.840000pt;}
.x24_c01210{left:469.120000pt;}
.x19_c01210{left:470.400000pt;}
.x6_c01210{left:471.680000pt;}
.x28_c01210{left:496.640000pt;}
.x1e_c01210{left:497.920000pt;}
.x7_c01210{left:499.840000pt;}
.x2a_c01210{left:515.200000pt;}
.x25_c01210{left:516.480000pt;}
.x8_c01210{left:519.040000pt;}
.x29_c01210{left:545.280000pt;}
.x15_c01210{left:547.200000pt;}
.xf_c01210{left:548.480000pt;}
.x9_c01210{left:551.040000pt;}
.x30_c01210{left:574.080000pt;}
.x27_c01210{left:575.360000pt;}
.x1a_c01210{left:576.640000pt;}
.xa_c01210{left:577.920000pt;}
.x2f_c01210{left:583.680000pt;}
.x1_c01210{left:587.520000pt;}
.x31_c01210{left:603.520000pt;}
.x20_c01210{left:605.440000pt;}
.x10_c01210{left:606.720000pt;}
.x2c_c01210{left:613.120000pt;}
.x23_c01210{left:614.400000pt;}
.xb_c01210{left:615.680000pt;}
.x32_c01210{left:631.680000pt;}
.x18_c01210{left:633.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0597e4e1e3dcebcff6b47ac5.woff2')format("woff");}.ff1_c01211{font-family:ff1_c01211;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m30_c01211{transform:matrix(0.197550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197550,0.000000,0.000000,0.250000,0,0);}
.m2f_c01211{transform:matrix(0.214275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214275,0.000000,0.000000,0.250000,0,0);}
.m47_c01211{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);}
.m43_c01211{transform:matrix(0.227325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227325,0.000000,0.000000,0.250000,0,0);}
.m2c_c01211{transform:matrix(0.241975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241975,0.000000,0.000000,0.250000,0,0);}
.m45_c01211{transform:matrix(0.243375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243375,0.000000,0.000000,0.250000,0,0);}
.m2_c01211{transform:matrix(0.245800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245800,0.000000,0.000000,0.250000,0,0);}
.m37_c01211{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m13_c01211{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_c01211{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);}
.m22_c01211{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01211{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);}
.m41_c01211{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m26_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);}
.m1b_c01211{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mf_c01211{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);}
.m3d_c01211{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m8_c01211{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m17_c01211{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m35_c01211{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m4_c01211{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);}
.m3a_c01211{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01211{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m5_c01211{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m24_c01211{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m28_c01211{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m14_c01211{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m15_c01211{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01211{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m6_c01211{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m36_c01211{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m19_c01211{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m23_c01211{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01211{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01211{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m33_c01211{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m16_c01211{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m46_c01211{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.me_c01211{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m21_c01211{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mb_c01211{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01211{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);}
.m29_c01211{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m12_c01211{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);}
.m2b_c01211{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m1_c01211{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m9_c01211{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.ma_c01211{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);}
.m38_c01211{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m25_c01211{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01211{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);}
.mc_c01211{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);}
.m0_c01211{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m10_c01211{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m7_c01211{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m27_c01211{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01211{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);}
.m11_c01211{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);}
.m39_c01211{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);}
.m3f_c01211{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m31_c01211{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m42_c01211{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);}
.m2e_c01211{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01211{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01211{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);}
.m32_c01211{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m44_c01211{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m20_c01211{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01211{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.m34_c01211{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m18_c01211{transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);}
.m40_c01211{transform:matrix(1.092500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.092500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.092500,0.000000,0.000000,0.250000,0,0);}
.v1_c01211{vertical-align:-2.880000px;}
.v0_c01211{vertical-align:0.000000px;}
.ls0_c01211{letter-spacing:0.000000px;}
.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;}
}
.ws1_c01211{word-spacing:-2.610000px;}
.ws3_c01211{word-spacing:0.000000px;}
.ws0_c01211{word-spacing:11.856000px;}
.ws2_c01211{word-spacing:19.060275px;}
.fc0_c01211{color:transparent;}
.fs11_c01211{font-size:25.920000px;}
.fs10_c01211{font-size:34.560000px;}
.fsf_c01211{font-size:37.440000px;}
.fs7_c01211{font-size:43.200000px;}
.fs8_c01211{font-size:46.080000px;}
.fs3_c01211{font-size:48.960000px;}
.fs5_c01211{font-size:51.840000px;}
.fs4_c01211{font-size:54.720000px;}
.fs1_c01211{font-size:57.600000px;}
.fsb_c01211{font-size:60.480000px;}
.fsa_c01211{font-size:63.360000px;}
.fsc_c01211{font-size:66.240000px;}
.fs9_c01211{font-size:69.120000px;}
.fs0_c01211{font-size:72.000000px;}
.fs6_c01211{font-size:74.880000px;}
.fs2_c01211{font-size:77.760000px;}
.fsd_c01211{font-size:86.400000px;}
.fse_c01211{font-size:100.800000px;}
.y0_c01211{bottom:0.000000px;}
.y8b_c01211{bottom:61.920000px;}
.y88_c01211{bottom:71.280000px;}
.y87_c01211{bottom:72.000000px;}
.y86_c01211{bottom:72.720000px;}
.y89_c01211{bottom:73.440000px;}
.y8a_c01211{bottom:74.880000px;}
.y85_c01211{bottom:78.480000px;}
.y82_c01211{bottom:108.000000px;}
.y80_c01211{bottom:115.200000px;}
.y7f_c01211{bottom:116.640000px;}
.y83_c01211{bottom:117.360000px;}
.y84_c01211{bottom:118.080000px;}
.y81_c01211{bottom:118.800000px;}
.y7d_c01211{bottom:120.960000px;}
.y7e_c01211{bottom:121.680000px;}
.y78_c01211{bottom:158.400000px;}
.y7a_c01211{bottom:159.120000px;}
.y7c_c01211{bottom:160.560000px;}
.y79_c01211{bottom:161.280000px;}
.y7b_c01211{bottom:162.000000px;}
.y77_c01211{bottom:164.160000px;}
.y76_c01211{bottom:200.880000px;}
.y71_c01211{bottom:234.000000px;}
.y73_c01211{bottom:234.720000px;}
.y75_c01211{bottom:235.440000px;}
.y74_c01211{bottom:236.880000px;}
.y72_c01211{bottom:237.600000px;}
.y70_c01211{bottom:239.040000px;}
.y6f_c01211{bottom:275.760000px;}
.y6e_c01211{bottom:277.200000px;}
.y6d_c01211{bottom:278.640000px;}
.y6c_c01211{bottom:281.520000px;}
.y68_c01211{bottom:308.160000px;}
.y67_c01211{bottom:309.600000px;}
.y69_c01211{bottom:310.320000px;}
.y6b_c01211{bottom:311.040000px;}
.y6a_c01211{bottom:311.760000px;}
.y66_c01211{bottom:312.480000px;}
.y63_c01211{bottom:351.360000px;}
.y61_c01211{bottom:352.080000px;}
.y62_c01211{bottom:352.800000px;}
.y65_c01211{bottom:353.520000px;}
.y64_c01211{bottom:355.680000px;}
.y60_c01211{bottom:356.400000px;}
.y5c_c01211{bottom:394.560000px;}
.y5f_c01211{bottom:396.720000px;}
.y5d_c01211{bottom:397.440000px;}
.y5b_c01211{bottom:398.160000px;}
.y5e_c01211{bottom:398.880000px;}
.y57_c01211{bottom:437.760000px;}
.y59_c01211{bottom:439.200000px;}
.y56_c01211{bottom:440.640000px;}
.y58_c01211{bottom:441.360000px;}
.y5a_c01211{bottom:442.080000px;}
.y53_c01211{bottom:480.240000px;}
.y52_c01211{bottom:480.960000px;}
.y55_c01211{bottom:482.400000px;}
.y51_c01211{bottom:483.120000px;}
.y54_c01211{bottom:484.560000px;}
.y50_c01211{bottom:516.240000px;}
.y4c_c01211{bottom:516.960000px;}
.y4a_c01211{bottom:522.720000px;}
.y49_c01211{bottom:525.600000px;}
.y4f_c01211{bottom:526.320000px;}
.y4b_c01211{bottom:527.040000px;}
.y4e_c01211{bottom:527.760000px;}
.y4d_c01211{bottom:528.480000px;}
.y45_c01211{bottom:564.480000px;}
.y46_c01211{bottom:566.640000px;}
.y44_c01211{bottom:568.080000px;}
.y48_c01211{bottom:569.520000px;}
.y47_c01211{bottom:570.960000px;}
.y3e_c01211{bottom:608.400000px;}
.y3f_c01211{bottom:609.840000px;}
.y3d_c01211{bottom:612.000000px;}
.y43_c01211{bottom:612.720000px;}
.y40_c01211{bottom:613.440000px;}
.y41_c01211{bottom:614.160000px;}
.y42_c01211{bottom:614.880000px;}
.y37_c01211{bottom:651.600000px;}
.y38_c01211{bottom:653.040000px;}
.y36_c01211{bottom:653.760000px;}
.y3c_c01211{bottom:655.200000px;}
.y3b_c01211{bottom:655.920000px;}
.y39_c01211{bottom:656.640000px;}
.y3a_c01211{bottom:658.080000px;}
.y2f_c01211{bottom:694.800000px;}
.y31_c01211{bottom:695.520000px;}
.y2e_c01211{bottom:696.960000px;}
.y30_c01211{bottom:698.400000px;}
.y33_c01211{bottom:699.120000px;}
.y34_c01211{bottom:699.840000px;}
.y32_c01211{bottom:700.560000px;}
.y35_c01211{bottom:701.280000px;}
.y2b_c01211{bottom:738.720000px;}
.y2a_c01211{bottom:739.440000px;}
.y2d_c01211{bottom:742.320000px;}
.y2c_c01211{bottom:744.480000px;}
.y26_c01211{bottom:781.200000px;}
.y25_c01211{bottom:782.640000px;}
.y28_c01211{bottom:784.080000px;}
.y29_c01211{bottom:785.520000px;}
.y27_c01211{bottom:786.960000px;}
.y20_c01211{bottom:823.680000px;}
.y1f_c01211{bottom:824.400000px;}
.y23_c01211{bottom:829.440000px;}
.y21_c01211{bottom:830.160000px;}
.y22_c01211{bottom:830.880000px;}
.y24_c01211{bottom:831.600000px;}
.y19_c01211{bottom:866.880000px;}
.y18_c01211{bottom:867.600000px;}
.y1b_c01211{bottom:871.920000px;}
.y1d_c01211{bottom:872.640000px;}
.y1a_c01211{bottom:873.360000px;}
.y1c_c01211{bottom:874.080000px;}
.y1e_c01211{bottom:875.520000px;}
.y13_c01211{bottom:909.360000px;}
.y12_c01211{bottom:910.080000px;}
.y17_c01211{bottom:915.120000px;}
.y14_c01211{bottom:915.840000px;}
.y15_c01211{bottom:916.560000px;}
.y16_c01211{bottom:917.280000px;}
.ye_c01211{bottom:951.840000px;}
.yd_c01211{bottom:953.280000px;}
.y11_c01211{bottom:957.600000px;}
.yf_c01211{bottom:959.760000px;}
.y10_c01211{bottom:960.480000px;}
.y8_c01211{bottom:995.040000px;}
.y7_c01211{bottom:995.760000px;}
.ya_c01211{bottom:1000.800000px;}
.yc_c01211{bottom:1002.240000px;}
.y9_c01211{bottom:1002.960000px;}
.yb_c01211{bottom:1004.400000px;}
.y2_c01211{bottom:1037.520000px;}
.y5_c01211{bottom:1044.000000px;}
.y4_c01211{bottom:1044.720000px;}
.y3_c01211{bottom:1045.440000px;}
.y6_c01211{bottom:1046.880000px;}
.y1_c01211{bottom:1107.360000px;}
.h13_c01211{height:23.325469px;}
.h12_c01211{height:31.100625px;}
.h11_c01211{height:33.692344px;}
.h9_c01211{height:38.875781px;}
.ha_c01211{height:41.467500px;}
.h5_c01211{height:44.059219px;}
.h7_c01211{height:46.650937px;}
.h6_c01211{height:49.242656px;}
.h3_c01211{height:51.834375px;}
.hd_c01211{height:54.426094px;}
.hc_c01211{height:57.017812px;}
.he_c01211{height:59.609531px;}
.hb_c01211{height:62.201250px;}
.h2_c01211{height:64.792969px;}
.h8_c01211{height:67.384687px;}
.h4_c01211{height:69.976406px;}
.hf_c01211{height:77.751563px;}
.h10_c01211{height:90.710156px;}
.h1_c01211{height:1164.000000px;}
.h0_c01211{height:1164.240000px;}
.w0_c01211{width:779.760000px;}
.w1_c01211{width:780.000000px;}
.x0_c01211{left:0.000000px;}
.x2_c01211{left:60.480000px;}
.x16_c01211{left:61.920000px;}
.x2b_c01211{left:63.360000px;}
.x37_c01211{left:64.800000px;}
.x3b_c01211{left:115.920000px;}
.x9_c01211{left:140.400000px;}
.x3_c01211{left:141.840000px;}
.x2f_c01211{left:143.280000px;}
.x36_c01211{left:144.720000px;}
.x30_c01211{left:187.200000px;}
.x33_c01211{left:230.400000px;}
.x19_c01211{left:239.040000px;}
.x31_c01211{left:240.480000px;}
.x1c_c01211{left:249.840000px;}
.x2c_c01211{left:272.880000px;}
.x22_c01211{left:282.240000px;}
.x15_c01211{left:291.600000px;}
.x17_c01211{left:303.120000px;}
.x28_c01211{left:304.560000px;}
.x23_c01211{left:336.960000px;}
.x18_c01211{left:346.320000px;}
.x38_c01211{left:348.480000px;}
.x29_c01211{left:357.120000px;}
.x3f_c01211{left:359.280000px;}
.x32_c01211{left:370.080000px;}
.x1d_c01211{left:390.240000px;}
.x20_c01211{left:401.760000px;}
.x1a_c01211{left:411.840000px;}
.x3c_c01211{left:414.000000px;}
.x1e_c01211{left:432.720000px;}
.x34_c01211{left:444.960000px;}
.x1b_c01211{left:455.040000px;}
.x39_c01211{left:456.480000px;}
.x3d_c01211{left:467.280000px;}
.x24_c01211{left:477.360000px;}
.x27_c01211{left:488.160000px;}
.x3e_c01211{left:489.600000px;}
.x4_c01211{left:531.360000px;}
.x21_c01211{left:533.520000px;}
.x2d_c01211{left:544.320000px;}
.x5_c01211{left:563.040000px;}
.x10_c01211{left:564.480000px;}
.x25_c01211{left:565.920000px;}
.x40_c01211{left:576.720000px;}
.x1f_c01211{left:585.360000px;}
.x6_c01211{left:617.760000px;}
.x11_c01211{left:619.200000px;}
.x2e_c01211{left:620.640000px;}
.xb_c01211{left:630.000000px;}
.x14_c01211{left:642.240000px;}
.x7_c01211{left:650.160000px;}
.x12_c01211{left:652.320000px;}
.x3a_c01211{left:653.760000px;}
.x1_c01211{left:656.640000px;}
.xc_c01211{left:662.400000px;}
.xa_c01211{left:683.280000px;}
.x13_c01211{left:684.720000px;}
.x26_c01211{left:686.160000px;}
.x8_c01211{left:693.360000px;}
.xd_c01211{left:694.800000px;}
.x35_c01211{left:697.680000px;}
.xf_c01211{left:714.960000px;}
.x2a_c01211{left:717.120000px;}
.xe_c01211{left:725.760000px;}
@media print{
.v1_c01211{vertical-align:-2.560000pt;}
.v0_c01211{vertical-align:0.000000pt;}
.ls0_c01211{letter-spacing:0.000000pt;}
.ws1_c01211{word-spacing:-2.320000pt;}
.ws3_c01211{word-spacing:0.000000pt;}
.ws0_c01211{word-spacing:10.538667pt;}
.ws2_c01211{word-spacing:16.942467pt;}
.fs11_c01211{font-size:23.040000pt;}
.fs10_c01211{font-size:30.720000pt;}
.fsf_c01211{font-size:33.280000pt;}
.fs7_c01211{font-size:38.400000pt;}
.fs8_c01211{font-size:40.960000pt;}
.fs3_c01211{font-size:43.520000pt;}
.fs5_c01211{font-size:46.080000pt;}
.fs4_c01211{font-size:48.640000pt;}
.fs1_c01211{font-size:51.200000pt;}
.fsb_c01211{font-size:53.760000pt;}
.fsa_c01211{font-size:56.320000pt;}
.fsc_c01211{font-size:58.880000pt;}
.fs9_c01211{font-size:61.440000pt;}
.fs0_c01211{font-size:64.000000pt;}
.fs6_c01211{font-size:66.560000pt;}
.fs2_c01211{font-size:69.120000pt;}
.fsd_c01211{font-size:76.800000pt;}
.fse_c01211{font-size:89.600000pt;}
.y0_c01211{bottom:0.000000pt;}
.y8b_c01211{bottom:55.040000pt;}
.y88_c01211{bottom:63.360000pt;}
.y87_c01211{bottom:64.000000pt;}
.y86_c01211{bottom:64.640000pt;}
.y89_c01211{bottom:65.280000pt;}
.y8a_c01211{bottom:66.560000pt;}
.y85_c01211{bottom:69.760000pt;}
.y82_c01211{bottom:96.000000pt;}
.y80_c01211{bottom:102.400000pt;}
.y7f_c01211{bottom:103.680000pt;}
.y83_c01211{bottom:104.320000pt;}
.y84_c01211{bottom:104.960000pt;}
.y81_c01211{bottom:105.600000pt;}
.y7d_c01211{bottom:107.520000pt;}
.y7e_c01211{bottom:108.160000pt;}
.y78_c01211{bottom:140.800000pt;}
.y7a_c01211{bottom:141.440000pt;}
.y7c_c01211{bottom:142.720000pt;}
.y79_c01211{bottom:143.360000pt;}
.y7b_c01211{bottom:144.000000pt;}
.y77_c01211{bottom:145.920000pt;}
.y76_c01211{bottom:178.560000pt;}
.y71_c01211{bottom:208.000000pt;}
.y73_c01211{bottom:208.640000pt;}
.y75_c01211{bottom:209.280000pt;}
.y74_c01211{bottom:210.560000pt;}
.y72_c01211{bottom:211.200000pt;}
.y70_c01211{bottom:212.480000pt;}
.y6f_c01211{bottom:245.120000pt;}
.y6e_c01211{bottom:246.400000pt;}
.y6d_c01211{bottom:247.680000pt;}
.y6c_c01211{bottom:250.240000pt;}
.y68_c01211{bottom:273.920000pt;}
.y67_c01211{bottom:275.200000pt;}
.y69_c01211{bottom:275.840000pt;}
.y6b_c01211{bottom:276.480000pt;}
.y6a_c01211{bottom:277.120000pt;}
.y66_c01211{bottom:277.760000pt;}
.y63_c01211{bottom:312.320000pt;}
.y61_c01211{bottom:312.960000pt;}
.y62_c01211{bottom:313.600000pt;}
.y65_c01211{bottom:314.240000pt;}
.y64_c01211{bottom:316.160000pt;}
.y60_c01211{bottom:316.800000pt;}
.y5c_c01211{bottom:350.720000pt;}
.y5f_c01211{bottom:352.640000pt;}
.y5d_c01211{bottom:353.280000pt;}
.y5b_c01211{bottom:353.920000pt;}
.y5e_c01211{bottom:354.560000pt;}
.y57_c01211{bottom:389.120000pt;}
.y59_c01211{bottom:390.400000pt;}
.y56_c01211{bottom:391.680000pt;}
.y58_c01211{bottom:392.320000pt;}
.y5a_c01211{bottom:392.960000pt;}
.y53_c01211{bottom:426.880000pt;}
.y52_c01211{bottom:427.520000pt;}
.y55_c01211{bottom:428.800000pt;}
.y51_c01211{bottom:429.440000pt;}
.y54_c01211{bottom:430.720000pt;}
.y50_c01211{bottom:458.880000pt;}
.y4c_c01211{bottom:459.520000pt;}
.y4a_c01211{bottom:464.640000pt;}
.y49_c01211{bottom:467.200000pt;}
.y4f_c01211{bottom:467.840000pt;}
.y4b_c01211{bottom:468.480000pt;}
.y4e_c01211{bottom:469.120000pt;}
.y4d_c01211{bottom:469.760000pt;}
.y45_c01211{bottom:501.760000pt;}
.y46_c01211{bottom:503.680000pt;}
.y44_c01211{bottom:504.960000pt;}
.y48_c01211{bottom:506.240000pt;}
.y47_c01211{bottom:507.520000pt;}
.y3e_c01211{bottom:540.800000pt;}
.y3f_c01211{bottom:542.080000pt;}
.y3d_c01211{bottom:544.000000pt;}
.y43_c01211{bottom:544.640000pt;}
.y40_c01211{bottom:545.280000pt;}
.y41_c01211{bottom:545.920000pt;}
.y42_c01211{bottom:546.560000pt;}
.y37_c01211{bottom:579.200000pt;}
.y38_c01211{bottom:580.480000pt;}
.y36_c01211{bottom:581.120000pt;}
.y3c_c01211{bottom:582.400000pt;}
.y3b_c01211{bottom:583.040000pt;}
.y39_c01211{bottom:583.680000pt;}
.y3a_c01211{bottom:584.960000pt;}
.y2f_c01211{bottom:617.600000pt;}
.y31_c01211{bottom:618.240000pt;}
.y2e_c01211{bottom:619.520000pt;}
.y30_c01211{bottom:620.800000pt;}
.y33_c01211{bottom:621.440000pt;}
.y34_c01211{bottom:622.080000pt;}
.y32_c01211{bottom:622.720000pt;}
.y35_c01211{bottom:623.360000pt;}
.y2b_c01211{bottom:656.640000pt;}
.y2a_c01211{bottom:657.280000pt;}
.y2d_c01211{bottom:659.840000pt;}
.y2c_c01211{bottom:661.760000pt;}
.y26_c01211{bottom:694.400000pt;}
.y25_c01211{bottom:695.680000pt;}
.y28_c01211{bottom:696.960000pt;}
.y29_c01211{bottom:698.240000pt;}
.y27_c01211{bottom:699.520000pt;}
.y20_c01211{bottom:732.160000pt;}
.y1f_c01211{bottom:732.800000pt;}
.y23_c01211{bottom:737.280000pt;}
.y21_c01211{bottom:737.920000pt;}
.y22_c01211{bottom:738.560000pt;}
.y24_c01211{bottom:739.200000pt;}
.y19_c01211{bottom:770.560000pt;}
.y18_c01211{bottom:771.200000pt;}
.y1b_c01211{bottom:775.040000pt;}
.y1d_c01211{bottom:775.680000pt;}
.y1a_c01211{bottom:776.320000pt;}
.y1c_c01211{bottom:776.960000pt;}
.y1e_c01211{bottom:778.240000pt;}
.y13_c01211{bottom:808.320000pt;}
.y12_c01211{bottom:808.960000pt;}
.y17_c01211{bottom:813.440000pt;}
.y14_c01211{bottom:814.080000pt;}
.y15_c01211{bottom:814.720000pt;}
.y16_c01211{bottom:815.360000pt;}
.ye_c01211{bottom:846.080000pt;}
.yd_c01211{bottom:847.360000pt;}
.y11_c01211{bottom:851.200000pt;}
.yf_c01211{bottom:853.120000pt;}
.y10_c01211{bottom:853.760000pt;}
.y8_c01211{bottom:884.480000pt;}
.y7_c01211{bottom:885.120000pt;}
.ya_c01211{bottom:889.600000pt;}
.yc_c01211{bottom:890.880000pt;}
.y9_c01211{bottom:891.520000pt;}
.yb_c01211{bottom:892.800000pt;}
.y2_c01211{bottom:922.240000pt;}
.y5_c01211{bottom:928.000000pt;}
.y4_c01211{bottom:928.640000pt;}
.y3_c01211{bottom:929.280000pt;}
.y6_c01211{bottom:930.560000pt;}
.y1_c01211{bottom:984.320000pt;}
.h13_c01211{height:20.733750pt;}
.h12_c01211{height:27.645000pt;}
.h11_c01211{height:29.948750pt;}
.h9_c01211{height:34.556250pt;}
.ha_c01211{height:36.860000pt;}
.h5_c01211{height:39.163750pt;}
.h7_c01211{height:41.467500pt;}
.h6_c01211{height:43.771250pt;}
.h3_c01211{height:46.075000pt;}
.hd_c01211{height:48.378750pt;}
.hc_c01211{height:50.682500pt;}
.he_c01211{height:52.986250pt;}
.hb_c01211{height:55.290000pt;}
.h2_c01211{height:57.593750pt;}
.h8_c01211{height:59.897500pt;}
.h4_c01211{height:62.201250pt;}
.hf_c01211{height:69.112500pt;}
.h10_c01211{height:80.631250pt;}
.h1_c01211{height:1034.666667pt;}
.h0_c01211{height:1034.880000pt;}
.w0_c01211{width:693.120000pt;}
.w1_c01211{width:693.333333pt;}
.x0_c01211{left:0.000000pt;}
.x2_c01211{left:53.760000pt;}
.x16_c01211{left:55.040000pt;}
.x2b_c01211{left:56.320000pt;}
.x37_c01211{left:57.600000pt;}
.x3b_c01211{left:103.040000pt;}
.x9_c01211{left:124.800000pt;}
.x3_c01211{left:126.080000pt;}
.x2f_c01211{left:127.360000pt;}
.x36_c01211{left:128.640000pt;}
.x30_c01211{left:166.400000pt;}
.x33_c01211{left:204.800000pt;}
.x19_c01211{left:212.480000pt;}
.x31_c01211{left:213.760000pt;}
.x1c_c01211{left:222.080000pt;}
.x2c_c01211{left:242.560000pt;}
.x22_c01211{left:250.880000pt;}
.x15_c01211{left:259.200000pt;}
.x17_c01211{left:269.440000pt;}
.x28_c01211{left:270.720000pt;}
.x23_c01211{left:299.520000pt;}
.x18_c01211{left:307.840000pt;}
.x38_c01211{left:309.760000pt;}
.x29_c01211{left:317.440000pt;}
.x3f_c01211{left:319.360000pt;}
.x32_c01211{left:328.960000pt;}
.x1d_c01211{left:346.880000pt;}
.x20_c01211{left:357.120000pt;}
.x1a_c01211{left:366.080000pt;}
.x3c_c01211{left:368.000000pt;}
.x1e_c01211{left:384.640000pt;}
.x34_c01211{left:395.520000pt;}
.x1b_c01211{left:404.480000pt;}
.x39_c01211{left:405.760000pt;}
.x3d_c01211{left:415.360000pt;}
.x24_c01211{left:424.320000pt;}
.x27_c01211{left:433.920000pt;}
.x3e_c01211{left:435.200000pt;}
.x4_c01211{left:472.320000pt;}
.x21_c01211{left:474.240000pt;}
.x2d_c01211{left:483.840000pt;}
.x5_c01211{left:500.480000pt;}
.x10_c01211{left:501.760000pt;}
.x25_c01211{left:503.040000pt;}
.x40_c01211{left:512.640000pt;}
.x1f_c01211{left:520.320000pt;}
.x6_c01211{left:549.120000pt;}
.x11_c01211{left:550.400000pt;}
.x2e_c01211{left:551.680000pt;}
.xb_c01211{left:560.000000pt;}
.x14_c01211{left:570.880000pt;}
.x7_c01211{left:577.920000pt;}
.x12_c01211{left:579.840000pt;}
.x3a_c01211{left:581.120000pt;}
.x1_c01211{left:583.680000pt;}
.xc_c01211{left:588.800000pt;}
.xa_c01211{left:607.360000pt;}
.x13_c01211{left:608.640000pt;}
.x26_c01211{left:609.920000pt;}
.x8_c01211{left:616.320000pt;}
.xd_c01211{left:617.600000pt;}
.x35_c01211{left:620.160000pt;}
.xf_c01211{left:635.520000pt;}
.x2a_c01211{left:637.440000pt;}
.xe_c01211{left:645.120000pt;}
}





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




/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_cbd7bf40aaa30461eac87ba6.woff2')format("woff");}.ff1_c01213{font-family:ff1_c01213;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4f_c01213{transform:matrix(0.061175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.061175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.061175,0.000000,0.000000,0.250000,0,0);}
.m54_c01213{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);}
.m52_c01213{transform:matrix(0.082050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082050,0.000000,0.000000,0.250000,0,0);}
.m3c_c01213{transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);}
.m3f_c01213{transform:matrix(0.191725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191725,0.000000,0.000000,0.250000,0,0);}
.m53_c01213{transform:matrix(0.200550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200550,0.000000,0.000000,0.250000,0,0);}
.m49_c01213{transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);}
.m51_c01213{transform:matrix(0.225625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225625,0.000000,0.000000,0.250000,0,0);}
.m45_c01213{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m41_c01213{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m19_c01213{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_c01213{transform:matrix(0.246675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246675,0.000000,0.000000,0.250000,0,0);}
.m39_c01213{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m13_c01213{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1_c01213{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m2_c01213{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m6_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);}
.m4a_c01213{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_c01213{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);}
.m1b_c01213{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);}
.m32_c01213{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m26_c01213{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01213{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m15_c01213{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m11_c01213{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01213{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);}
.m2e_c01213{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);}
.m36_c01213{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);}
.m27_c01213{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);}
.m28_c01213{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m38_c01213{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.md_c01213{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01213{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.ma_c01213{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m16_c01213{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m4_c01213{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m24_c01213{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.me_c01213{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01213{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m10_c01213{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mf_c01213{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01213{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01213{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m25_c01213{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m5_c01213{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m0_c01213{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m48_c01213{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m3_c01213{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);}
.m44_c01213{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);}
.m3e_c01213{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);}
.m21_c01213{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.mb_c01213{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_c01213{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m12_c01213{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);}
.m37_c01213{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01213{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m22_c01213{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);}
.m43_c01213{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01213{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m33_c01213{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);}
.m47_c01213{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);}
.m3b_c01213{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);}
.m46_c01213{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m18_c01213{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);}
.m42_c01213{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01213{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m14_c01213{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m8_c01213{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);}
.m4c_c01213{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);}
.m23_c01213{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01213{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01213{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m35_c01213{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01213{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01213{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);}
.m31_c01213{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);}
.m2f_c01213{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m34_c01213{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);}
.m4d_c01213{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m17_c01213{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);}
.m50_c01213{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m7_c01213{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m40_c01213{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m29_c01213{transform:matrix(0.757500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.757500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.757500,0.000000,0.000000,0.250000,0,0);}
.m30_c01213{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.v0_c01213{vertical-align:0.000000px;}
.v1_c01213{vertical-align:8.640000px;}
.v2_c01213{vertical-align:25.920000px;}
.ls0_c01213{letter-spacing:0.000000px;}
.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;}
}
.ws3_c01213{word-spacing:0.000000px;}
.ws1_c01213{word-spacing:43.518000px;}
.ws2_c01213{word-spacing:192.748032px;}
.ws0_c01213{word-spacing:1003.967280px;}
.fc0_c01213{color:transparent;}
.fsf_c01213{font-size:14.400000px;}
.fs15_c01213{font-size:17.280000px;}
.fse_c01213{font-size:20.160000px;}
.fs11_c01213{font-size:28.800000px;}
.fs5_c01213{font-size:34.560000px;}
.fsd_c01213{font-size:37.440000px;}
.fs10_c01213{font-size:43.200000px;}
.fs3_c01213{font-size:46.080000px;}
.fs6_c01213{font-size:48.960000px;}
.fs9_c01213{font-size:51.840000px;}
.fs4_c01213{font-size:54.720000px;}
.fs7_c01213{font-size:57.600000px;}
.fs0_c01213{font-size:60.480000px;}
.fsa_c01213{font-size:63.360000px;}
.fsc_c01213{font-size:66.240000px;}
.fs8_c01213{font-size:69.120000px;}
.fs2_c01213{font-size:72.000000px;}
.fs1_c01213{font-size:74.880000px;}
.fsb_c01213{font-size:77.760000px;}
.fs12_c01213{font-size:80.640000px;}
.fs14_c01213{font-size:126.720000px;}
.fs13_c01213{font-size:169.920000px;}
.y0_c01213{bottom:0.000000px;}
.ya9_c01213{bottom:0.720000px;}
.ya8_c01213{bottom:13.680000px;}
.ya7_c01213{bottom:19.440000px;}
.ya6_c01213{bottom:34.560000px;}
.y98_c01213{bottom:67.680000px;}
.ya5_c01213{bottom:68.400000px;}
.ya4_c01213{bottom:69.840000px;}
.y96_c01213{bottom:71.280000px;}
.y97_c01213{bottom:72.720000px;}
.y95_c01213{bottom:76.320000px;}
.ya3_c01213{bottom:77.040000px;}
.ya2_c01213{bottom:110.880000px;}
.ya0_c01213{bottom:112.320000px;}
.ya1_c01213{bottom:113.040000px;}
.y9f_c01213{bottom:113.760000px;}
.y94_c01213{bottom:114.480000px;}
.y93_c01213{bottom:119.520000px;}
.y9e_c01213{bottom:154.800000px;}
.y9d_c01213{bottom:155.520000px;}
.y9c_c01213{bottom:156.240000px;}
.y92_c01213{bottom:156.960000px;}
.y91_c01213{bottom:162.000000px;}
.y9b_c01213{bottom:198.000000px;}
.y99_c01213{bottom:199.440000px;}
.y90_c01213{bottom:200.160000px;}
.y9a_c01213{bottom:201.600000px;}
.y8f_c01213{bottom:205.200000px;}
.y8e_c01213{bottom:245.520000px;}
.y8d_c01213{bottom:246.960000px;}
.y8c_c01213{bottom:248.400000px;}
.y8b_c01213{bottom:297.360000px;}
.y89_c01213{bottom:298.080000px;}
.y8a_c01213{bottom:299.520000px;}
.y87_c01213{bottom:318.240000px;}
.y85_c01213{bottom:318.960000px;}
.y84_c01213{bottom:319.680000px;}
.y86_c01213{bottom:320.400000px;}
.y83_c01213{bottom:321.120000px;}
.y88_c01213{bottom:321.840000px;}
.y81_c01213{bottom:322.560000px;}
.y82_c01213{bottom:324.000000px;}
.y7f_c01213{bottom:339.840000px;}
.y80_c01213{bottom:340.560000px;}
.y7d_c01213{bottom:341.280000px;}
.y7c_c01213{bottom:342.000000px;}
.y7e_c01213{bottom:342.720000px;}
.y7b_c01213{bottom:343.440000px;}
.y77_c01213{bottom:361.440000px;}
.y7a_c01213{bottom:362.160000px;}
.y76_c01213{bottom:362.880000px;}
.y78_c01213{bottom:363.600000px;}
.y79_c01213{bottom:364.320000px;}
.y75_c01213{bottom:365.040000px;}
.y73_c01213{bottom:383.040000px;}
.y71_c01213{bottom:383.760000px;}
.y72_c01213{bottom:384.480000px;}
.y74_c01213{bottom:385.200000px;}
.y6f_c01213{bottom:385.920000px;}
.y70_c01213{bottom:387.360000px;}
.y6e_c01213{bottom:403.200000px;}
.y6c_c01213{bottom:403.920000px;}
.y6b_c01213{bottom:404.640000px;}
.y6a_c01213{bottom:405.360000px;}
.y6d_c01213{bottom:406.080000px;}
.y69_c01213{bottom:407.520000px;}
.y68_c01213{bottom:408.960000px;}
.y67_c01213{bottom:425.520000px;}
.y65_c01213{bottom:426.240000px;}
.y64_c01213{bottom:426.960000px;}
.y63_c01213{bottom:427.680000px;}
.y66_c01213{bottom:428.400000px;}
.y62_c01213{bottom:429.840000px;}
.y61_c01213{bottom:457.920000px;}
.y60_c01213{bottom:458.640000px;}
.y5e_c01213{bottom:459.360000px;}
.y5f_c01213{bottom:460.080000px;}
.y5d_c01213{bottom:461.520000px;}
.y49_c01213{bottom:501.120000px;}
.y48_c01213{bottom:503.280000px;}
.y5c_c01213{bottom:504.000000px;}
.y43_c01213{bottom:532.800000px;}
.y46_c01213{bottom:533.520000px;}
.y44_c01213{bottom:534.240000px;}
.y47_c01213{bottom:535.680000px;}
.y45_c01213{bottom:536.400000px;}
.y42_c01213{bottom:543.600000px;}
.y41_c01213{bottom:544.320000px;}
.y3e_c01213{bottom:545.040000px;}
.y3f_c01213{bottom:545.760000px;}
.y40_c01213{bottom:549.360000px;}
.y3a_c01213{bottom:557.280000px;}
.y3d_c01213{bottom:565.200000px;}
.y3c_c01213{bottom:565.920000px;}
.y3b_c01213{bottom:568.080000px;}
.y5b_c01213{bottom:568.800000px;}
.y39_c01213{bottom:597.600000px;}
.y35_c01213{bottom:598.320000px;}
.y37_c01213{bottom:600.480000px;}
.y36_c01213{bottom:601.200000px;}
.y38_c01213{bottom:603.360000px;}
.y32_c01213{bottom:610.560000px;}
.y31_c01213{bottom:612.720000px;}
.y33_c01213{bottom:621.360000px;}
.y34_c01213{bottom:622.080000px;}
.y30_c01213{bottom:660.240000px;}
.y2f_c01213{bottom:662.400000px;}
.y5a_c01213{bottom:663.120000px;}
.y59_c01213{bottom:665.280000px;}
.y2b_c01213{bottom:703.440000px;}
.y2c_c01213{bottom:704.160000px;}
.y2a_c01213{bottom:704.880000px;}
.y2e_c01213{bottom:706.320000px;}
.y2d_c01213{bottom:707.040000px;}
.y25_c01213{bottom:745.920000px;}
.y24_c01213{bottom:748.080000px;}
.y29_c01213{bottom:749.520000px;}
.y58_c01213{bottom:750.240000px;}
.y28_c01213{bottom:751.680000px;}
.y57_c01213{bottom:752.400000px;}
.y23_c01213{bottom:789.840000px;}
.y22_c01213{bottom:791.280000px;}
.y55_c01213{bottom:792.720000px;}
.y27_c01213{bottom:793.440000px;}
.y26_c01213{bottom:794.880000px;}
.y54_c01213{bottom:795.600000px;}
.y56_c01213{bottom:797.040000px;}
.y1d_c01213{bottom:832.320000px;}
.y1c_c01213{bottom:833.040000px;}
.y20_c01213{bottom:833.760000px;}
.y1f_c01213{bottom:834.480000px;}
.y1e_c01213{bottom:836.640000px;}
.y21_c01213{bottom:837.360000px;}
.y53_c01213{bottom:838.800000px;}
.y17_c01213{bottom:875.520000px;}
.y16_c01213{bottom:876.240000px;}
.y19_c01213{bottom:876.960000px;}
.y1b_c01213{bottom:878.400000px;}
.y52_c01213{bottom:879.120000px;}
.y18_c01213{bottom:880.560000px;}
.y51_c01213{bottom:881.280000px;}
.y14_c01213{bottom:918.000000px;}
.y13_c01213{bottom:918.720000px;}
.y15_c01213{bottom:920.160000px;}
.y50_c01213{bottom:922.320000px;}
.y1a_c01213{bottom:923.760000px;}
.y4f_c01213{bottom:924.480000px;}
.ye_c01213{bottom:961.200000px;}
.yf_c01213{bottom:961.920000px;}
.y10_c01213{bottom:962.640000px;}
.y4d_c01213{bottom:964.800000px;}
.y12_c01213{bottom:965.520000px;}
.y11_c01213{bottom:966.240000px;}
.y4e_c01213{bottom:966.960000px;}
.y6_c01213{bottom:1003.680000px;}
.y7_c01213{bottom:1004.400000px;}
.yb_c01213{bottom:1006.560000px;}
.y9_c01213{bottom:1007.280000px;}
.yd_c01213{bottom:1008.000000px;}
.y8_c01213{bottom:1008.720000px;}
.ya_c01213{bottom:1009.440000px;}
.yc_c01213{bottom:1010.160000px;}
.y4c_c01213{bottom:1010.880000px;}
.y1_c01213{bottom:1046.160000px;}
.y2_c01213{bottom:1046.880000px;}
.y3_c01213{bottom:1049.040000px;}
.y4b_c01213{bottom:1051.200000px;}
.y4_c01213{bottom:1053.360000px;}
.y5_c01213{bottom:1054.080000px;}
.y4a_c01213{bottom:1106.640000px;}
.h12_c01213{height:12.958594px;}
.h19_c01213{height:15.550313px;}
.h11_c01213{height:18.142031px;}
.h15_c01213{height:25.917187px;}
.h7_c01213{height:31.100625px;}
.hf_c01213{height:33.692344px;}
.h13_c01213{height:38.875781px;}
.h5_c01213{height:41.467500px;}
.h8_c01213{height:44.059219px;}
.hb_c01213{height:46.650937px;}
.h6_c01213{height:49.242656px;}
.h9_c01213{height:51.834375px;}
.h14_c01213{height:51.837188px;}
.h2_c01213{height:54.426094px;}
.hc_c01213{height:57.017812px;}
.he_c01213{height:59.609531px;}
.ha_c01213{height:62.201250px;}
.h4_c01213{height:64.792969px;}
.h3_c01213{height:67.384687px;}
.hd_c01213{height:69.976406px;}
.h10_c01213{height:70.841250px;}
.h16_c01213{height:72.568125px;}
.h18_c01213{height:114.035625px;}
.h17_c01213{height:152.911406px;}
.h0_c01213{height:1160.640000px;}
.h1_c01213{height:1161.000000px;}
.w0_c01213{width:775.440000px;}
.w1_c01213{width:775.500000px;}
.x0_c01213{left:0.000000px;}
.x1_c01213{left:59.040000px;}
.x49_c01213{left:60.480000px;}
.x43_c01213{left:67.680000px;}
.x39_c01213{left:69.120000px;}
.x13_c01213{left:77.760000px;}
.x33_c01213{left:87.840000px;}
.x23_c01213{left:97.200000px;}
.x3a_c01213{left:98.640000px;}
.x40_c01213{left:109.440000px;}
.x47_c01213{left:130.320000px;}
.x10_c01213{left:137.520000px;}
.x2_c01213{left:138.960000px;}
.x44_c01213{left:140.400000px;}
.x4a_c01213{left:141.840000px;}
.x14_c01213{left:159.120000px;}
.x24_c01213{left:161.280000px;}
.x25_c01213{left:202.320000px;}
.x45_c01213{left:205.200000px;}
.x3b_c01213{left:213.840000px;}
.x19_c01213{left:215.280000px;}
.x15_c01213{left:225.360000px;}
.x3_c01213{left:236.160000px;}
.xa_c01213{left:246.240000px;}
.x1e_c01213{left:257.760000px;}
.x26_c01213{left:269.280000px;}
.x6_c01213{left:277.920000px;}
.x1a_c01213{left:279.360000px;}
.xd_c01213{left:288.720000px;}
.x1f_c01213{left:298.080000px;}
.x9_c01213{left:299.520000px;}
.x34_c01213{left:311.040000px;}
.x42_c01213{left:312.480000px;}
.xb_c01213{left:321.840000px;}
.x16_c01213{left:332.640000px;}
.x46_c01213{left:334.080000px;}
.x3c_c01213{left:354.960000px;}
.xc_c01213{left:364.320000px;}
.x41_c01213{left:366.480000px;}
.x38_c01213{left:387.360000px;}
.x17_c01213{left:397.440000px;}
.x1b_c01213{left:398.880000px;}
.x20_c01213{left:418.320000px;}
.x27_c01213{left:419.760000px;}
.x7_c01213{left:429.840000px;}
.xe_c01213{left:440.640000px;}
.x11_c01213{left:449.280000px;}
.x21_c01213{left:451.440000px;}
.x18_c01213{left:452.880000px;}
.x28_c01213{left:462.240000px;}
.x8_c01213{left:473.040000px;}
.xf_c01213{left:483.840000px;}
.x35_c01213{left:506.160000px;}
.x3d_c01213{left:507.600000px;}
.x1c_c01213{left:518.400000px;}
.x4c_c01213{left:527.760000px;}
.x4_c01213{left:529.200000px;}
.x36_c01213{left:537.840000px;}
.x22_c01213{left:540.000000px;}
.x29_c01213{left:549.360000px;}
.x12_c01213{left:550.800000px;}
.x1d_c01213{left:560.160000px;}
.x5_c01213{left:561.600000px;}
.x2a_c01213{left:583.200000px;}
.x3e_c01213{left:594.000000px;}
.x2c_c01213{left:615.600000px;}
.x32_c01213{left:637.200000px;}
.x2d_c01213{left:648.000000px;}
.x48_c01213{left:649.440000px;}
.x37_c01213{left:659.520000px;}
.x2e_c01213{left:680.400000px;}
.x2f_c01213{left:681.840000px;}
.x2b_c01213{left:687.600000px;}
.x30_c01213{left:691.920000px;}
.x3f_c01213{left:693.360000px;}
.x31_c01213{left:711.360000px;}
.x4d_c01213{left:712.800000px;}
.x4b_c01213{left:771.120000px;}
@media print{
.v0_c01213{vertical-align:0.000000pt;}
.v1_c01213{vertical-align:7.680000pt;}
.v2_c01213{vertical-align:23.040000pt;}
.ls0_c01213{letter-spacing:0.000000pt;}
.ws3_c01213{word-spacing:0.000000pt;}
.ws1_c01213{word-spacing:38.682667pt;}
.ws2_c01213{word-spacing:171.331584pt;}
.ws0_c01213{word-spacing:892.415360pt;}
.fsf_c01213{font-size:12.800000pt;}
.fs15_c01213{font-size:15.360000pt;}
.fse_c01213{font-size:17.920000pt;}
.fs11_c01213{font-size:25.600000pt;}
.fs5_c01213{font-size:30.720000pt;}
.fsd_c01213{font-size:33.280000pt;}
.fs10_c01213{font-size:38.400000pt;}
.fs3_c01213{font-size:40.960000pt;}
.fs6_c01213{font-size:43.520000pt;}
.fs9_c01213{font-size:46.080000pt;}
.fs4_c01213{font-size:48.640000pt;}
.fs7_c01213{font-size:51.200000pt;}
.fs0_c01213{font-size:53.760000pt;}
.fsa_c01213{font-size:56.320000pt;}
.fsc_c01213{font-size:58.880000pt;}
.fs8_c01213{font-size:61.440000pt;}
.fs2_c01213{font-size:64.000000pt;}
.fs1_c01213{font-size:66.560000pt;}
.fsb_c01213{font-size:69.120000pt;}
.fs12_c01213{font-size:71.680000pt;}
.fs14_c01213{font-size:112.640000pt;}
.fs13_c01213{font-size:151.040000pt;}
.y0_c01213{bottom:0.000000pt;}
.ya9_c01213{bottom:0.640000pt;}
.ya8_c01213{bottom:12.160000pt;}
.ya7_c01213{bottom:17.280000pt;}
.ya6_c01213{bottom:30.720000pt;}
.y98_c01213{bottom:60.160000pt;}
.ya5_c01213{bottom:60.800000pt;}
.ya4_c01213{bottom:62.080000pt;}
.y96_c01213{bottom:63.360000pt;}
.y97_c01213{bottom:64.640000pt;}
.y95_c01213{bottom:67.840000pt;}
.ya3_c01213{bottom:68.480000pt;}
.ya2_c01213{bottom:98.560000pt;}
.ya0_c01213{bottom:99.840000pt;}
.ya1_c01213{bottom:100.480000pt;}
.y9f_c01213{bottom:101.120000pt;}
.y94_c01213{bottom:101.760000pt;}
.y93_c01213{bottom:106.240000pt;}
.y9e_c01213{bottom:137.600000pt;}
.y9d_c01213{bottom:138.240000pt;}
.y9c_c01213{bottom:138.880000pt;}
.y92_c01213{bottom:139.520000pt;}
.y91_c01213{bottom:144.000000pt;}
.y9b_c01213{bottom:176.000000pt;}
.y99_c01213{bottom:177.280000pt;}
.y90_c01213{bottom:177.920000pt;}
.y9a_c01213{bottom:179.200000pt;}
.y8f_c01213{bottom:182.400000pt;}
.y8e_c01213{bottom:218.240000pt;}
.y8d_c01213{bottom:219.520000pt;}
.y8c_c01213{bottom:220.800000pt;}
.y8b_c01213{bottom:264.320000pt;}
.y89_c01213{bottom:264.960000pt;}
.y8a_c01213{bottom:266.240000pt;}
.y87_c01213{bottom:282.880000pt;}
.y85_c01213{bottom:283.520000pt;}
.y84_c01213{bottom:284.160000pt;}
.y86_c01213{bottom:284.800000pt;}
.y83_c01213{bottom:285.440000pt;}
.y88_c01213{bottom:286.080000pt;}
.y81_c01213{bottom:286.720000pt;}
.y82_c01213{bottom:288.000000pt;}
.y7f_c01213{bottom:302.080000pt;}
.y80_c01213{bottom:302.720000pt;}
.y7d_c01213{bottom:303.360000pt;}
.y7c_c01213{bottom:304.000000pt;}
.y7e_c01213{bottom:304.640000pt;}
.y7b_c01213{bottom:305.280000pt;}
.y77_c01213{bottom:321.280000pt;}
.y7a_c01213{bottom:321.920000pt;}
.y76_c01213{bottom:322.560000pt;}
.y78_c01213{bottom:323.200000pt;}
.y79_c01213{bottom:323.840000pt;}
.y75_c01213{bottom:324.480000pt;}
.y73_c01213{bottom:340.480000pt;}
.y71_c01213{bottom:341.120000pt;}
.y72_c01213{bottom:341.760000pt;}
.y74_c01213{bottom:342.400000pt;}
.y6f_c01213{bottom:343.040000pt;}
.y70_c01213{bottom:344.320000pt;}
.y6e_c01213{bottom:358.400000pt;}
.y6c_c01213{bottom:359.040000pt;}
.y6b_c01213{bottom:359.680000pt;}
.y6a_c01213{bottom:360.320000pt;}
.y6d_c01213{bottom:360.960000pt;}
.y69_c01213{bottom:362.240000pt;}
.y68_c01213{bottom:363.520000pt;}
.y67_c01213{bottom:378.240000pt;}
.y65_c01213{bottom:378.880000pt;}
.y64_c01213{bottom:379.520000pt;}
.y63_c01213{bottom:380.160000pt;}
.y66_c01213{bottom:380.800000pt;}
.y62_c01213{bottom:382.080000pt;}
.y61_c01213{bottom:407.040000pt;}
.y60_c01213{bottom:407.680000pt;}
.y5e_c01213{bottom:408.320000pt;}
.y5f_c01213{bottom:408.960000pt;}
.y5d_c01213{bottom:410.240000pt;}
.y49_c01213{bottom:445.440000pt;}
.y48_c01213{bottom:447.360000pt;}
.y5c_c01213{bottom:448.000000pt;}
.y43_c01213{bottom:473.600000pt;}
.y46_c01213{bottom:474.240000pt;}
.y44_c01213{bottom:474.880000pt;}
.y47_c01213{bottom:476.160000pt;}
.y45_c01213{bottom:476.800000pt;}
.y42_c01213{bottom:483.200000pt;}
.y41_c01213{bottom:483.840000pt;}
.y3e_c01213{bottom:484.480000pt;}
.y3f_c01213{bottom:485.120000pt;}
.y40_c01213{bottom:488.320000pt;}
.y3a_c01213{bottom:495.360000pt;}
.y3d_c01213{bottom:502.400000pt;}
.y3c_c01213{bottom:503.040000pt;}
.y3b_c01213{bottom:504.960000pt;}
.y5b_c01213{bottom:505.600000pt;}
.y39_c01213{bottom:531.200000pt;}
.y35_c01213{bottom:531.840000pt;}
.y37_c01213{bottom:533.760000pt;}
.y36_c01213{bottom:534.400000pt;}
.y38_c01213{bottom:536.320000pt;}
.y32_c01213{bottom:542.720000pt;}
.y31_c01213{bottom:544.640000pt;}
.y33_c01213{bottom:552.320000pt;}
.y34_c01213{bottom:552.960000pt;}
.y30_c01213{bottom:586.880000pt;}
.y2f_c01213{bottom:588.800000pt;}
.y5a_c01213{bottom:589.440000pt;}
.y59_c01213{bottom:591.360000pt;}
.y2b_c01213{bottom:625.280000pt;}
.y2c_c01213{bottom:625.920000pt;}
.y2a_c01213{bottom:626.560000pt;}
.y2e_c01213{bottom:627.840000pt;}
.y2d_c01213{bottom:628.480000pt;}
.y25_c01213{bottom:663.040000pt;}
.y24_c01213{bottom:664.960000pt;}
.y29_c01213{bottom:666.240000pt;}
.y58_c01213{bottom:666.880000pt;}
.y28_c01213{bottom:668.160000pt;}
.y57_c01213{bottom:668.800000pt;}
.y23_c01213{bottom:702.080000pt;}
.y22_c01213{bottom:703.360000pt;}
.y55_c01213{bottom:704.640000pt;}
.y27_c01213{bottom:705.280000pt;}
.y26_c01213{bottom:706.560000pt;}
.y54_c01213{bottom:707.200000pt;}
.y56_c01213{bottom:708.480000pt;}
.y1d_c01213{bottom:739.840000pt;}
.y1c_c01213{bottom:740.480000pt;}
.y20_c01213{bottom:741.120000pt;}
.y1f_c01213{bottom:741.760000pt;}
.y1e_c01213{bottom:743.680000pt;}
.y21_c01213{bottom:744.320000pt;}
.y53_c01213{bottom:745.600000pt;}
.y17_c01213{bottom:778.240000pt;}
.y16_c01213{bottom:778.880000pt;}
.y19_c01213{bottom:779.520000pt;}
.y1b_c01213{bottom:780.800000pt;}
.y52_c01213{bottom:781.440000pt;}
.y18_c01213{bottom:782.720000pt;}
.y51_c01213{bottom:783.360000pt;}
.y14_c01213{bottom:816.000000pt;}
.y13_c01213{bottom:816.640000pt;}
.y15_c01213{bottom:817.920000pt;}
.y50_c01213{bottom:819.840000pt;}
.y1a_c01213{bottom:821.120000pt;}
.y4f_c01213{bottom:821.760000pt;}
.ye_c01213{bottom:854.400000pt;}
.yf_c01213{bottom:855.040000pt;}
.y10_c01213{bottom:855.680000pt;}
.y4d_c01213{bottom:857.600000pt;}
.y12_c01213{bottom:858.240000pt;}
.y11_c01213{bottom:858.880000pt;}
.y4e_c01213{bottom:859.520000pt;}
.y6_c01213{bottom:892.160000pt;}
.y7_c01213{bottom:892.800000pt;}
.yb_c01213{bottom:894.720000pt;}
.y9_c01213{bottom:895.360000pt;}
.yd_c01213{bottom:896.000000pt;}
.y8_c01213{bottom:896.640000pt;}
.ya_c01213{bottom:897.280000pt;}
.yc_c01213{bottom:897.920000pt;}
.y4c_c01213{bottom:898.560000pt;}
.y1_c01213{bottom:929.920000pt;}
.y2_c01213{bottom:930.560000pt;}
.y3_c01213{bottom:932.480000pt;}
.y4b_c01213{bottom:934.400000pt;}
.y4_c01213{bottom:936.320000pt;}
.y5_c01213{bottom:936.960000pt;}
.y4a_c01213{bottom:983.680000pt;}
.h12_c01213{height:11.518750pt;}
.h19_c01213{height:13.822500pt;}
.h11_c01213{height:16.126250pt;}
.h15_c01213{height:23.037500pt;}
.h7_c01213{height:27.645000pt;}
.hf_c01213{height:29.948750pt;}
.h13_c01213{height:34.556250pt;}
.h5_c01213{height:36.860000pt;}
.h8_c01213{height:39.163750pt;}
.hb_c01213{height:41.467500pt;}
.h6_c01213{height:43.771250pt;}
.h9_c01213{height:46.075000pt;}
.h14_c01213{height:46.077500pt;}
.h2_c01213{height:48.378750pt;}
.hc_c01213{height:50.682500pt;}
.he_c01213{height:52.986250pt;}
.ha_c01213{height:55.290000pt;}
.h4_c01213{height:57.593750pt;}
.h3_c01213{height:59.897500pt;}
.hd_c01213{height:62.201250pt;}
.h10_c01213{height:62.970000pt;}
.h16_c01213{height:64.505000pt;}
.h18_c01213{height:101.365000pt;}
.h17_c01213{height:135.921250pt;}
.h0_c01213{height:1031.680000pt;}
.h1_c01213{height:1032.000000pt;}
.w0_c01213{width:689.280000pt;}
.w1_c01213{width:689.333333pt;}
.x0_c01213{left:0.000000pt;}
.x1_c01213{left:52.480000pt;}
.x49_c01213{left:53.760000pt;}
.x43_c01213{left:60.160000pt;}
.x39_c01213{left:61.440000pt;}
.x13_c01213{left:69.120000pt;}
.x33_c01213{left:78.080000pt;}
.x23_c01213{left:86.400000pt;}
.x3a_c01213{left:87.680000pt;}
.x40_c01213{left:97.280000pt;}
.x47_c01213{left:115.840000pt;}
.x10_c01213{left:122.240000pt;}
.x2_c01213{left:123.520000pt;}
.x44_c01213{left:124.800000pt;}
.x4a_c01213{left:126.080000pt;}
.x14_c01213{left:141.440000pt;}
.x24_c01213{left:143.360000pt;}
.x25_c01213{left:179.840000pt;}
.x45_c01213{left:182.400000pt;}
.x3b_c01213{left:190.080000pt;}
.x19_c01213{left:191.360000pt;}
.x15_c01213{left:200.320000pt;}
.x3_c01213{left:209.920000pt;}
.xa_c01213{left:218.880000pt;}
.x1e_c01213{left:229.120000pt;}
.x26_c01213{left:239.360000pt;}
.x6_c01213{left:247.040000pt;}
.x1a_c01213{left:248.320000pt;}
.xd_c01213{left:256.640000pt;}
.x1f_c01213{left:264.960000pt;}
.x9_c01213{left:266.240000pt;}
.x34_c01213{left:276.480000pt;}
.x42_c01213{left:277.760000pt;}
.xb_c01213{left:286.080000pt;}
.x16_c01213{left:295.680000pt;}
.x46_c01213{left:296.960000pt;}
.x3c_c01213{left:315.520000pt;}
.xc_c01213{left:323.840000pt;}
.x41_c01213{left:325.760000pt;}
.x38_c01213{left:344.320000pt;}
.x17_c01213{left:353.280000pt;}
.x1b_c01213{left:354.560000pt;}
.x20_c01213{left:371.840000pt;}
.x27_c01213{left:373.120000pt;}
.x7_c01213{left:382.080000pt;}
.xe_c01213{left:391.680000pt;}
.x11_c01213{left:399.360000pt;}
.x21_c01213{left:401.280000pt;}
.x18_c01213{left:402.560000pt;}
.x28_c01213{left:410.880000pt;}
.x8_c01213{left:420.480000pt;}
.xf_c01213{left:430.080000pt;}
.x35_c01213{left:449.920000pt;}
.x3d_c01213{left:451.200000pt;}
.x1c_c01213{left:460.800000pt;}
.x4c_c01213{left:469.120000pt;}
.x4_c01213{left:470.400000pt;}
.x36_c01213{left:478.080000pt;}
.x22_c01213{left:480.000000pt;}
.x29_c01213{left:488.320000pt;}
.x12_c01213{left:489.600000pt;}
.x1d_c01213{left:497.920000pt;}
.x5_c01213{left:499.200000pt;}
.x2a_c01213{left:518.400000pt;}
.x3e_c01213{left:528.000000pt;}
.x2c_c01213{left:547.200000pt;}
.x32_c01213{left:566.400000pt;}
.x2d_c01213{left:576.000000pt;}
.x48_c01213{left:577.280000pt;}
.x37_c01213{left:586.240000pt;}
.x2e_c01213{left:604.800000pt;}
.x2f_c01213{left:606.080000pt;}
.x2b_c01213{left:611.200000pt;}
.x30_c01213{left:615.040000pt;}
.x3f_c01213{left:616.320000pt;}
.x31_c01213{left:632.320000pt;}
.x4d_c01213{left:633.600000pt;}
.x4b_c01213{left:685.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_551ddb57c8cb3a1e73bdb70a.woff2')format("woff");}.ff1_c01214{font-family:ff1_c01214;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3f_c01214{transform:matrix(0.157400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157400,0.000000,0.000000,0.250000,0,0);}
.m29_c01214{transform:matrix(0.202950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202950,0.000000,0.000000,0.250000,0,0);}
.m43_c01214{transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);}
.m3a_c01214{transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);}
.m21_c01214{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m15_c01214{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m44_c01214{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_c01214{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);}
.m34_c01214{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01214{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);}
.m40_c01214{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m2_c01214{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);}
.m41_c01214{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m13_c01214{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01214{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m20_c01214{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.me_c01214{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m8_c01214{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01214{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mb_c01214{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m33_c01214{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m18_c01214{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m7_c01214{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m28_c01214{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m5_c01214{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01214{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01214{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01214{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mc_c01214{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m3_c01214{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m6_c01214{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01214{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01214{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m26_c01214{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.ma_c01214{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m39_c01214{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mf_c01214{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m31_c01214{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m27_c01214{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m1_c01214{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01214{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.md_c01214{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m23_c01214{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m32_c01214{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);}
.m10_c01214{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01214{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m9_c01214{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m24_c01214{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);}
.m0_c01214{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m12_c01214{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01214{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);}
.m37_c01214{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m11_c01214{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);}
.m45_c01214{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m30_c01214{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01214{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01214{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m16_c01214{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);}
.m2f_c01214{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01214{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);}
.m3b_c01214{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);}
.m36_c01214{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01214{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m42_c01214{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);}
.m25_c01214{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);}
.m19_c01214{transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);}
.m22_c01214{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m38_c01214{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.m4_c01214{transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);}
.m35_c01214{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.v1_c01214{vertical-align:-11.520000px;}
.v3_c01214{vertical-align:-5.760000px;}
.v0_c01214{vertical-align:0.000000px;}
.v4_c01214{vertical-align:5.760000px;}
.v2_c01214{vertical-align:14.400000px;}
.ls0_c01214{letter-spacing:0.000000px;}
.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:-20.750400px;}
.ws7_c01214{word-spacing:0.000000px;}
.ws5_c01214{word-spacing:3.772800px;}
.ws1_c01214{word-spacing:6.526319px;}
.ws6_c01214{word-spacing:11.856000px;}
.ws3_c01214{word-spacing:190.286107px;}
.ws2_c01214{word-spacing:200.382941px;}
.ws4_c01214{word-spacing:658.920000px;}
.fc0_c01214{color:transparent;}
.fsc_c01214{font-size:14.400000px;}
.fsd_c01214{font-size:34.560000px;}
.fsf_c01214{font-size:37.440000px;}
.fse_c01214{font-size:40.320000px;}
.fsb_c01214{font-size:43.200000px;}
.fs4_c01214{font-size:46.080000px;}
.fs7_c01214{font-size:48.960000px;}
.fs9_c01214{font-size:51.840000px;}
.fs5_c01214{font-size:54.720000px;}
.fs1_c01214{font-size:57.600000px;}
.fs3_c01214{font-size:60.480000px;}
.fsa_c01214{font-size:63.360000px;}
.fs6_c01214{font-size:66.240000px;}
.fs8_c01214{font-size:69.120000px;}
.fs0_c01214{font-size:72.000000px;}
.fs2_c01214{font-size:74.880000px;}
.fs11_c01214{font-size:95.040000px;}
.fs10_c01214{font-size:100.800000px;}
.y0_c01214{bottom:0.000000px;}
.y81_c01214{bottom:105.120000px;}
.y83_c01214{bottom:105.840000px;}
.y80_c01214{bottom:106.560000px;}
.y85_c01214{bottom:107.280000px;}
.y84_c01214{bottom:108.000000px;}
.y82_c01214{bottom:108.720000px;}
.y86_c01214{bottom:109.440000px;}
.y7f_c01214{bottom:110.880000px;}
.y7d_c01214{bottom:141.840000px;}
.y7b_c01214{bottom:148.320000px;}
.y7a_c01214{bottom:149.040000px;}
.y79_c01214{bottom:150.480000px;}
.y7c_c01214{bottom:151.200000px;}
.y7e_c01214{bottom:152.640000px;}
.y78_c01214{bottom:153.360000px;}
.y76_c01214{bottom:184.320000px;}
.y73_c01214{bottom:191.520000px;}
.y75_c01214{bottom:192.240000px;}
.y77_c01214{bottom:192.960000px;}
.y74_c01214{bottom:194.400000px;}
.y72_c01214{bottom:195.120000px;}
.y6f_c01214{bottom:234.000000px;}
.y6d_c01214{bottom:234.720000px;}
.y6e_c01214{bottom:235.440000px;}
.y70_c01214{bottom:236.880000px;}
.y71_c01214{bottom:237.600000px;}
.y6c_c01214{bottom:238.320000px;}
.y68_c01214{bottom:276.480000px;}
.y67_c01214{bottom:277.200000px;}
.y66_c01214{bottom:280.080000px;}
.y6b_c01214{bottom:280.800000px;}
.y69_c01214{bottom:281.520000px;}
.y6a_c01214{bottom:282.240000px;}
.y61_c01214{bottom:320.400000px;}
.y62_c01214{bottom:322.560000px;}
.y60_c01214{bottom:323.280000px;}
.y63_c01214{bottom:324.000000px;}
.y64_c01214{bottom:325.440000px;}
.y65_c01214{bottom:326.160000px;}
.y5b_c01214{bottom:363.600000px;}
.y5d_c01214{bottom:364.320000px;}
.y58_c01214{bottom:365.760000px;}
.y5c_c01214{bottom:366.480000px;}
.y5a_c01214{bottom:367.200000px;}
.y5f_c01214{bottom:367.920000px;}
.y5e_c01214{bottom:368.640000px;}
.y59_c01214{bottom:370.080000px;}
.y54_c01214{bottom:406.080000px;}
.y55_c01214{bottom:406.800000px;}
.y53_c01214{bottom:408.960000px;}
.y57_c01214{bottom:409.680000px;}
.y56_c01214{bottom:411.120000px;}
.y51_c01214{bottom:450.000000px;}
.y4e_c01214{bottom:451.440000px;}
.y4f_c01214{bottom:452.160000px;}
.y50_c01214{bottom:452.880000px;}
.y52_c01214{bottom:455.040000px;}
.y4a_c01214{bottom:491.760000px;}
.y48_c01214{bottom:495.360000px;}
.y49_c01214{bottom:496.080000px;}
.y4b_c01214{bottom:496.800000px;}
.y4d_c01214{bottom:497.520000px;}
.y4c_c01214{bottom:498.240000px;}
.y45_c01214{bottom:535.680000px;}
.y43_c01214{bottom:537.120000px;}
.y44_c01214{bottom:538.560000px;}
.y47_c01214{bottom:540.000000px;}
.y46_c01214{bottom:541.440000px;}
.y3f_c01214{bottom:578.160000px;}
.y3c_c01214{bottom:579.600000px;}
.y3e_c01214{bottom:581.040000px;}
.y3d_c01214{bottom:581.760000px;}
.y41_c01214{bottom:582.480000px;}
.y40_c01214{bottom:584.640000px;}
.y42_c01214{bottom:585.360000px;}
.y36_c01214{bottom:620.640000px;}
.y35_c01214{bottom:622.080000px;}
.y37_c01214{bottom:624.960000px;}
.y39_c01214{bottom:626.400000px;}
.y3a_c01214{bottom:627.120000px;}
.y38_c01214{bottom:627.840000px;}
.y3b_c01214{bottom:628.560000px;}
.y31_c01214{bottom:663.840000px;}
.y2f_c01214{bottom:664.560000px;}
.y30_c01214{bottom:666.720000px;}
.y33_c01214{bottom:668.160000px;}
.y32_c01214{bottom:668.880000px;}
.y34_c01214{bottom:669.600000px;}
.y2b_c01214{bottom:705.600000px;}
.y29_c01214{bottom:707.040000px;}
.y2a_c01214{bottom:709.200000px;}
.y2c_c01214{bottom:711.360000px;}
.y2d_c01214{bottom:714.240000px;}
.y2e_c01214{bottom:714.960000px;}
.y25_c01214{bottom:748.800000px;}
.y26_c01214{bottom:754.560000px;}
.y27_c01214{bottom:755.280000px;}
.y28_c01214{bottom:757.440000px;}
.y20_c01214{bottom:792.720000px;}
.y21_c01214{bottom:795.600000px;}
.y22_c01214{bottom:797.760000px;}
.y24_c01214{bottom:798.480000px;}
.y23_c01214{bottom:799.920000px;}
.y1b_c01214{bottom:835.200000px;}
.y1c_c01214{bottom:840.240000px;}
.y1e_c01214{bottom:840.960000px;}
.y1d_c01214{bottom:843.120000px;}
.y1f_c01214{bottom:845.280000px;}
.y14_c01214{bottom:878.400000px;}
.y15_c01214{bottom:881.280000px;}
.y16_c01214{bottom:883.440000px;}
.y1a_c01214{bottom:884.880000px;}
.y17_c01214{bottom:886.320000px;}
.y18_c01214{bottom:887.040000px;}
.y19_c01214{bottom:888.480000px;}
.yf_c01214{bottom:920.160000px;}
.y10_c01214{bottom:921.600000px;}
.y11_c01214{bottom:926.640000px;}
.y12_c01214{bottom:929.520000px;}
.y13_c01214{bottom:930.240000px;}
.yb_c01214{bottom:963.360000px;}
.yc_c01214{bottom:964.800000px;}
.yd_c01214{bottom:970.560000px;}
.ye_c01214{bottom:973.440000px;}
.y6_c01214{bottom:1005.840000px;}
.y7_c01214{bottom:1008.000000px;}
.y8_c01214{bottom:1013.760000px;}
.y9_c01214{bottom:1014.480000px;}
.ya_c01214{bottom:1016.640000px;}
.y2_c01214{bottom:1049.040000px;}
.y3_c01214{bottom:1051.200000px;}
.y4_c01214{bottom:1056.960000px;}
.y5_c01214{bottom:1060.560000px;}
.y1_c01214{bottom:1117.440000px;}
.hf_c01214{height:12.958594px;}
.h10_c01214{height:31.100625px;}
.h11_c01214{height:33.692344px;}
.he_c01214{height:38.875781px;}
.h6_c01214{height:41.467500px;}
.h9_c01214{height:44.059219px;}
.hb_c01214{height:46.650937px;}
.h7_c01214{height:49.242656px;}
.h3_c01214{height:51.834375px;}
.h5_c01214{height:54.426094px;}
.hc_c01214{height:57.017812px;}
.h12_c01214{height:57.594375px;}
.h8_c01214{height:59.609531px;}
.ha_c01214{height:62.201250px;}
.h2_c01214{height:64.792969px;}
.h4_c01214{height:67.384687px;}
.hd_c01214{height:68.826094px;}
.h14_c01214{height:85.526719px;}
.h13_c01214{height:90.710156px;}
.h1_c01214{height:1167.000000px;}
.h0_c01214{height:1167.120000px;}
.w1_c01214{width:783.750000px;}
.w0_c01214{width:784.080000px;}
.x0_c01214{left:0.000000px;}
.x2_c01214{left:54.720000px;}
.xe_c01214{left:56.160000px;}
.x1d_c01214{left:57.600000px;}
.x25_c01214{left:59.040000px;}
.x34_c01214{left:60.480000px;}
.x46_c01214{left:61.920000px;}
.x28_c01214{left:118.800000px;}
.x3_c01214{left:133.920000px;}
.xf_c01214{left:135.360000px;}
.x1f_c01214{left:137.520000px;}
.x2e_c01214{left:138.960000px;}
.x40_c01214{left:141.120000px;}
.x29_c01214{left:170.640000px;}
.x1b_c01214{left:179.280000px;}
.x41_c01214{left:185.040000px;}
.xa_c01214{left:209.520000px;}
.x15_c01214{left:210.960000px;}
.x22_c01214{left:213.120000px;}
.x7_c01214{left:220.320000px;}
.x1c_c01214{left:233.280000px;}
.x42_c01214{left:237.600000px;}
.x23_c01214{left:266.400000px;}
.x26_c01214{left:278.640000px;}
.x3c_c01214{left:280.800000px;}
.x35_c01214{left:290.160000px;}
.x24_c01214{left:308.880000px;}
.x2f_c01214{left:311.040000px;}
.x39_c01214{left:312.480000px;}
.x3d_c01214{left:321.840000px;}
.x36_c01214{left:332.640000px;}
.x27_c01214{left:364.320000px;}
.x47_c01214{left:365.760000px;}
.x43_c01214{left:378.000000px;}
.x30_c01214{left:397.440000px;}
.x2a_c01214{left:408.240000px;}
.x37_c01214{left:419.040000px;}
.x48_c01214{left:421.200000px;}
.x3a_c01214{left:431.280000px;}
.x31_c01214{left:440.640000px;}
.x2b_c01214{left:451.440000px;}
.x3e_c01214{left:463.680000px;}
.x4_c01214{left:522.720000px;}
.xb_c01214{left:524.160000px;}
.x16_c01214{left:525.600000px;}
.x1e_c01214{left:527.040000px;}
.x2c_c01214{left:528.480000px;}
.x49_c01214{left:530.640000px;}
.x17_c01214{left:578.880000px;}
.x3f_c01214{left:584.640000px;}
.x5_c01214{left:587.520000px;}
.x10_c01214{left:589.680000px;}
.x6_c01214{left:609.840000px;}
.xc_c01214{left:611.280000px;}
.x13_c01214{left:613.440000px;}
.x20_c01214{left:614.880000px;}
.x32_c01214{left:616.320000px;}
.x44_c01214{left:617.760000px;}
.x8_c01214{left:642.960000px;}
.x12_c01214{left:645.120000px;}
.x19_c01214{left:648.000000px;}
.x33_c01214{left:649.440000px;}
.x45_c01214{left:650.880000px;}
.x9_c01214{left:676.800000px;}
.x4a_c01214{left:684.000000px;}
.x1_c01214{left:686.880000px;}
.x11_c01214{left:688.320000px;}
.x18_c01214{left:689.760000px;}
.x21_c01214{left:691.920000px;}
.x38_c01214{left:693.360000px;}
.xd_c01214{left:707.760000px;}
.x14_c01214{left:709.200000px;}
.x1a_c01214{left:710.640000px;}
.x2d_c01214{left:712.800000px;}
.x3b_c01214{left:714.240000px;}
@media print{
.v1_c01214{vertical-align:-10.240000pt;}
.v3_c01214{vertical-align:-5.120000pt;}
.v0_c01214{vertical-align:0.000000pt;}
.v4_c01214{vertical-align:5.120000pt;}
.v2_c01214{vertical-align:12.800000pt;}
.ls0_c01214{letter-spacing:0.000000pt;}
.ws0_c01214{word-spacing:-18.444800pt;}
.ws7_c01214{word-spacing:0.000000pt;}
.ws5_c01214{word-spacing:3.353600pt;}
.ws1_c01214{word-spacing:5.801172pt;}
.ws6_c01214{word-spacing:10.538667pt;}
.ws3_c01214{word-spacing:169.143206pt;}
.ws2_c01214{word-spacing:178.118170pt;}
.ws4_c01214{word-spacing:585.706667pt;}
.fsc_c01214{font-size:12.800000pt;}
.fsd_c01214{font-size:30.720000pt;}
.fsf_c01214{font-size:33.280000pt;}
.fse_c01214{font-size:35.840000pt;}
.fsb_c01214{font-size:38.400000pt;}
.fs4_c01214{font-size:40.960000pt;}
.fs7_c01214{font-size:43.520000pt;}
.fs9_c01214{font-size:46.080000pt;}
.fs5_c01214{font-size:48.640000pt;}
.fs1_c01214{font-size:51.200000pt;}
.fs3_c01214{font-size:53.760000pt;}
.fsa_c01214{font-size:56.320000pt;}
.fs6_c01214{font-size:58.880000pt;}
.fs8_c01214{font-size:61.440000pt;}
.fs0_c01214{font-size:64.000000pt;}
.fs2_c01214{font-size:66.560000pt;}
.fs11_c01214{font-size:84.480000pt;}
.fs10_c01214{font-size:89.600000pt;}
.y0_c01214{bottom:0.000000pt;}
.y81_c01214{bottom:93.440000pt;}
.y83_c01214{bottom:94.080000pt;}
.y80_c01214{bottom:94.720000pt;}
.y85_c01214{bottom:95.360000pt;}
.y84_c01214{bottom:96.000000pt;}
.y82_c01214{bottom:96.640000pt;}
.y86_c01214{bottom:97.280000pt;}
.y7f_c01214{bottom:98.560000pt;}
.y7d_c01214{bottom:126.080000pt;}
.y7b_c01214{bottom:131.840000pt;}
.y7a_c01214{bottom:132.480000pt;}
.y79_c01214{bottom:133.760000pt;}
.y7c_c01214{bottom:134.400000pt;}
.y7e_c01214{bottom:135.680000pt;}
.y78_c01214{bottom:136.320000pt;}
.y76_c01214{bottom:163.840000pt;}
.y73_c01214{bottom:170.240000pt;}
.y75_c01214{bottom:170.880000pt;}
.y77_c01214{bottom:171.520000pt;}
.y74_c01214{bottom:172.800000pt;}
.y72_c01214{bottom:173.440000pt;}
.y6f_c01214{bottom:208.000000pt;}
.y6d_c01214{bottom:208.640000pt;}
.y6e_c01214{bottom:209.280000pt;}
.y70_c01214{bottom:210.560000pt;}
.y71_c01214{bottom:211.200000pt;}
.y6c_c01214{bottom:211.840000pt;}
.y68_c01214{bottom:245.760000pt;}
.y67_c01214{bottom:246.400000pt;}
.y66_c01214{bottom:248.960000pt;}
.y6b_c01214{bottom:249.600000pt;}
.y69_c01214{bottom:250.240000pt;}
.y6a_c01214{bottom:250.880000pt;}
.y61_c01214{bottom:284.800000pt;}
.y62_c01214{bottom:286.720000pt;}
.y60_c01214{bottom:287.360000pt;}
.y63_c01214{bottom:288.000000pt;}
.y64_c01214{bottom:289.280000pt;}
.y65_c01214{bottom:289.920000pt;}
.y5b_c01214{bottom:323.200000pt;}
.y5d_c01214{bottom:323.840000pt;}
.y58_c01214{bottom:325.120000pt;}
.y5c_c01214{bottom:325.760000pt;}
.y5a_c01214{bottom:326.400000pt;}
.y5f_c01214{bottom:327.040000pt;}
.y5e_c01214{bottom:327.680000pt;}
.y59_c01214{bottom:328.960000pt;}
.y54_c01214{bottom:360.960000pt;}
.y55_c01214{bottom:361.600000pt;}
.y53_c01214{bottom:363.520000pt;}
.y57_c01214{bottom:364.160000pt;}
.y56_c01214{bottom:365.440000pt;}
.y51_c01214{bottom:400.000000pt;}
.y4e_c01214{bottom:401.280000pt;}
.y4f_c01214{bottom:401.920000pt;}
.y50_c01214{bottom:402.560000pt;}
.y52_c01214{bottom:404.480000pt;}
.y4a_c01214{bottom:437.120000pt;}
.y48_c01214{bottom:440.320000pt;}
.y49_c01214{bottom:440.960000pt;}
.y4b_c01214{bottom:441.600000pt;}
.y4d_c01214{bottom:442.240000pt;}
.y4c_c01214{bottom:442.880000pt;}
.y45_c01214{bottom:476.160000pt;}
.y43_c01214{bottom:477.440000pt;}
.y44_c01214{bottom:478.720000pt;}
.y47_c01214{bottom:480.000000pt;}
.y46_c01214{bottom:481.280000pt;}
.y3f_c01214{bottom:513.920000pt;}
.y3c_c01214{bottom:515.200000pt;}
.y3e_c01214{bottom:516.480000pt;}
.y3d_c01214{bottom:517.120000pt;}
.y41_c01214{bottom:517.760000pt;}
.y40_c01214{bottom:519.680000pt;}
.y42_c01214{bottom:520.320000pt;}
.y36_c01214{bottom:551.680000pt;}
.y35_c01214{bottom:552.960000pt;}
.y37_c01214{bottom:555.520000pt;}
.y39_c01214{bottom:556.800000pt;}
.y3a_c01214{bottom:557.440000pt;}
.y38_c01214{bottom:558.080000pt;}
.y3b_c01214{bottom:558.720000pt;}
.y31_c01214{bottom:590.080000pt;}
.y2f_c01214{bottom:590.720000pt;}
.y30_c01214{bottom:592.640000pt;}
.y33_c01214{bottom:593.920000pt;}
.y32_c01214{bottom:594.560000pt;}
.y34_c01214{bottom:595.200000pt;}
.y2b_c01214{bottom:627.200000pt;}
.y29_c01214{bottom:628.480000pt;}
.y2a_c01214{bottom:630.400000pt;}
.y2c_c01214{bottom:632.320000pt;}
.y2d_c01214{bottom:634.880000pt;}
.y2e_c01214{bottom:635.520000pt;}
.y25_c01214{bottom:665.600000pt;}
.y26_c01214{bottom:670.720000pt;}
.y27_c01214{bottom:671.360000pt;}
.y28_c01214{bottom:673.280000pt;}
.y20_c01214{bottom:704.640000pt;}
.y21_c01214{bottom:707.200000pt;}
.y22_c01214{bottom:709.120000pt;}
.y24_c01214{bottom:709.760000pt;}
.y23_c01214{bottom:711.040000pt;}
.y1b_c01214{bottom:742.400000pt;}
.y1c_c01214{bottom:746.880000pt;}
.y1e_c01214{bottom:747.520000pt;}
.y1d_c01214{bottom:749.440000pt;}
.y1f_c01214{bottom:751.360000pt;}
.y14_c01214{bottom:780.800000pt;}
.y15_c01214{bottom:783.360000pt;}
.y16_c01214{bottom:785.280000pt;}
.y1a_c01214{bottom:786.560000pt;}
.y17_c01214{bottom:787.840000pt;}
.y18_c01214{bottom:788.480000pt;}
.y19_c01214{bottom:789.760000pt;}
.yf_c01214{bottom:817.920000pt;}
.y10_c01214{bottom:819.200000pt;}
.y11_c01214{bottom:823.680000pt;}
.y12_c01214{bottom:826.240000pt;}
.y13_c01214{bottom:826.880000pt;}
.yb_c01214{bottom:856.320000pt;}
.yc_c01214{bottom:857.600000pt;}
.yd_c01214{bottom:862.720000pt;}
.ye_c01214{bottom:865.280000pt;}
.y6_c01214{bottom:894.080000pt;}
.y7_c01214{bottom:896.000000pt;}
.y8_c01214{bottom:901.120000pt;}
.y9_c01214{bottom:901.760000pt;}
.ya_c01214{bottom:903.680000pt;}
.y2_c01214{bottom:932.480000pt;}
.y3_c01214{bottom:934.400000pt;}
.y4_c01214{bottom:939.520000pt;}
.y5_c01214{bottom:942.720000pt;}
.y1_c01214{bottom:993.280000pt;}
.hf_c01214{height:11.518750pt;}
.h10_c01214{height:27.645000pt;}
.h11_c01214{height:29.948750pt;}
.he_c01214{height:34.556250pt;}
.h6_c01214{height:36.860000pt;}
.h9_c01214{height:39.163750pt;}
.hb_c01214{height:41.467500pt;}
.h7_c01214{height:43.771250pt;}
.h3_c01214{height:46.075000pt;}
.h5_c01214{height:48.378750pt;}
.hc_c01214{height:50.682500pt;}
.h12_c01214{height:51.195000pt;}
.h8_c01214{height:52.986250pt;}
.ha_c01214{height:55.290000pt;}
.h2_c01214{height:57.593750pt;}
.h4_c01214{height:59.897500pt;}
.hd_c01214{height:61.178750pt;}
.h14_c01214{height:76.023750pt;}
.h13_c01214{height:80.631250pt;}
.h1_c01214{height:1037.333333pt;}
.h0_c01214{height:1037.440000pt;}
.w1_c01214{width:696.666667pt;}
.w0_c01214{width:696.960000pt;}
.x0_c01214{left:0.000000pt;}
.x2_c01214{left:48.640000pt;}
.xe_c01214{left:49.920000pt;}
.x1d_c01214{left:51.200000pt;}
.x25_c01214{left:52.480000pt;}
.x34_c01214{left:53.760000pt;}
.x46_c01214{left:55.040000pt;}
.x28_c01214{left:105.600000pt;}
.x3_c01214{left:119.040000pt;}
.xf_c01214{left:120.320000pt;}
.x1f_c01214{left:122.240000pt;}
.x2e_c01214{left:123.520000pt;}
.x40_c01214{left:125.440000pt;}
.x29_c01214{left:151.680000pt;}
.x1b_c01214{left:159.360000pt;}
.x41_c01214{left:164.480000pt;}
.xa_c01214{left:186.240000pt;}
.x15_c01214{left:187.520000pt;}
.x22_c01214{left:189.440000pt;}
.x7_c01214{left:195.840000pt;}
.x1c_c01214{left:207.360000pt;}
.x42_c01214{left:211.200000pt;}
.x23_c01214{left:236.800000pt;}
.x26_c01214{left:247.680000pt;}
.x3c_c01214{left:249.600000pt;}
.x35_c01214{left:257.920000pt;}
.x24_c01214{left:274.560000pt;}
.x2f_c01214{left:276.480000pt;}
.x39_c01214{left:277.760000pt;}
.x3d_c01214{left:286.080000pt;}
.x36_c01214{left:295.680000pt;}
.x27_c01214{left:323.840000pt;}
.x47_c01214{left:325.120000pt;}
.x43_c01214{left:336.000000pt;}
.x30_c01214{left:353.280000pt;}
.x2a_c01214{left:362.880000pt;}
.x37_c01214{left:372.480000pt;}
.x48_c01214{left:374.400000pt;}
.x3a_c01214{left:383.360000pt;}
.x31_c01214{left:391.680000pt;}
.x2b_c01214{left:401.280000pt;}
.x3e_c01214{left:412.160000pt;}
.x4_c01214{left:464.640000pt;}
.xb_c01214{left:465.920000pt;}
.x16_c01214{left:467.200000pt;}
.x1e_c01214{left:468.480000pt;}
.x2c_c01214{left:469.760000pt;}
.x49_c01214{left:471.680000pt;}
.x17_c01214{left:514.560000pt;}
.x3f_c01214{left:519.680000pt;}
.x5_c01214{left:522.240000pt;}
.x10_c01214{left:524.160000pt;}
.x6_c01214{left:542.080000pt;}
.xc_c01214{left:543.360000pt;}
.x13_c01214{left:545.280000pt;}
.x20_c01214{left:546.560000pt;}
.x32_c01214{left:547.840000pt;}
.x44_c01214{left:549.120000pt;}
.x8_c01214{left:571.520000pt;}
.x12_c01214{left:573.440000pt;}
.x19_c01214{left:576.000000pt;}
.x33_c01214{left:577.280000pt;}
.x45_c01214{left:578.560000pt;}
.x9_c01214{left:601.600000pt;}
.x4a_c01214{left:608.000000pt;}
.x1_c01214{left:610.560000pt;}
.x11_c01214{left:611.840000pt;}
.x18_c01214{left:613.120000pt;}
.x21_c01214{left:615.040000pt;}
.x38_c01214{left:616.320000pt;}
.xd_c01214{left:629.120000pt;}
.x14_c01214{left:630.400000pt;}
.x1a_c01214{left:631.680000pt;}
.x2d_c01214{left:633.600000pt;}
.x3b_c01214{left:634.880000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ea55d81310ce6a950d2acf4c.woff2')format("woff");}.ff1_c01215{font-family:ff1_c01215;line-height:1.109863;font-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_c01215{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.m29_c01215{transform:matrix(0.205425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205425,0.000000,0.000000,0.250000,0,0);}
.m44_c01215{transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);}
.m38_c01215{transform:matrix(0.216525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216525,0.000000,0.000000,0.250000,0,0);}
.m11_c01215{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m48_c01215{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.mb_c01215{transform:matrix(0.233875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233875,0.000000,0.000000,0.250000,0,0);}
.m41_c01215{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m4a_c01215{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m42_c01215{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m45_c01215{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m47_c01215{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_c01215{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);}
.m22_c01215{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01215{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m8_c01215{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m1_c01215{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);}
.m2e_c01215{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);}
.m3a_c01215{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_c01215{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_c01215{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01215{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01215{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m14_c01215{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);}
.m2d_c01215{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);}
.m30_c01215{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m20_c01215{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m31_c01215{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m32_c01215{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01215{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m9_c01215{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01215{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01215{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m35_c01215{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m26_c01215{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mc_c01215{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m6_c01215{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01215{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m43_c01215{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01215{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m0_c01215{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m7_c01215{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m39_c01215{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mf_c01215{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);}
.m34_c01215{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m49_c01215{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);}
.m37_c01215{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m21_c01215{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m5_c01215{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m36_c01215{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);}
.m3d_c01215{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m25_c01215{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m4_c01215{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m3_c01215{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_c01215{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01215{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);}
.m19_c01215{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);}
.m24_c01215{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m16_c01215{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m46_c01215{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m40_c01215{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);}
.m27_c01215{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m33_c01215{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);}
.m2b_c01215{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m10_c01215{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m13_c01215{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);}
.m2_c01215{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.me_c01215{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.ma_c01215{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);}
.m28_c01215{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01215{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);}
.m1d_c01215{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01215{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m15_c01215{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m23_c01215{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01215{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01215{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.v1_c01215{vertical-align:-5.760000px;}
.v0_c01215{vertical-align:0.000000px;}
.ls0_c01215{letter-spacing:0.000000px;}
.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;}
}
.ws2_c01215{word-spacing:0.000000px;}
.ws1_c01215{word-spacing:11.856000px;}
.ws0_c01215{word-spacing:58.828487px;}
.fc0_c01215{color:transparent;}
.fsd_c01215{font-size:34.560000px;}
.fsa_c01215{font-size:37.440000px;}
.fse_c01215{font-size:40.320000px;}
.fsc_c01215{font-size:46.080000px;}
.fs2_c01215{font-size:48.960000px;}
.fs4_c01215{font-size:51.840000px;}
.fs5_c01215{font-size:54.720000px;}
.fsb_c01215{font-size:57.600000px;}
.fs0_c01215{font-size:60.480000px;}
.fs3_c01215{font-size:63.360000px;}
.fsf_c01215{font-size:66.240000px;}
.fs7_c01215{font-size:69.120000px;}
.fs1_c01215{font-size:72.000000px;}
.fs6_c01215{font-size:74.880000px;}
.fs10_c01215{font-size:77.760000px;}
.fs11_c01215{font-size:80.640000px;}
.fs9_c01215{font-size:100.800000px;}
.fs8_c01215{font-size:103.680000px;}
.y0_c01215{bottom:0.000000px;}
.y89_c01215{bottom:26.640000px;}
.y55_c01215{bottom:28.080000px;}
.y88_c01215{bottom:28.800000px;}
.y85_c01215{bottom:29.520000px;}
.y54_c01215{bottom:34.560000px;}
.y87_c01215{bottom:68.400000px;}
.y86_c01215{bottom:69.840000px;}
.y53_c01215{bottom:70.560000px;}
.y84_c01215{bottom:71.280000px;}
.y52_c01215{bottom:77.040000px;}
.y82_c01215{bottom:112.320000px;}
.y83_c01215{bottom:113.040000px;}
.y51_c01215{bottom:114.480000px;}
.y81_c01215{bottom:115.200000px;}
.y50_c01215{bottom:120.240000px;}
.y7d_c01215{bottom:155.520000px;}
.y80_c01215{bottom:156.240000px;}
.y7f_c01215{bottom:156.960000px;}
.y4f_c01215{bottom:157.680000px;}
.y7e_c01215{bottom:158.400000px;}
.y77_c01215{bottom:159.840000px;}
.y4e_c01215{bottom:162.720000px;}
.y7c_c01215{bottom:197.280000px;}
.y7b_c01215{bottom:198.720000px;}
.y76_c01215{bottom:200.160000px;}
.y4d_c01215{bottom:200.880000px;}
.y75_c01215{bottom:201.600000px;}
.y4c_c01215{bottom:204.480000px;}
.y79_c01215{bottom:241.920000px;}
.y4b_c01215{bottom:242.640000px;}
.y7a_c01215{bottom:243.360000px;}
.y78_c01215{bottom:244.080000px;}
.y74_c01215{bottom:244.800000px;}
.y4a_c01215{bottom:247.680000px;}
.y73_c01215{bottom:284.400000px;}
.y71_c01215{bottom:285.120000px;}
.y49_c01215{bottom:285.840000px;}
.y72_c01215{bottom:286.560000px;}
.y70_c01215{bottom:288.720000px;}
.y48_c01215{bottom:290.160000px;}
.y47_c01215{bottom:327.600000px;}
.y6e_c01215{bottom:328.320000px;}
.y46_c01215{bottom:329.760000px;}
.y6f_c01215{bottom:330.480000px;}
.y6c_c01215{bottom:331.200000px;}
.y6d_c01215{bottom:331.920000px;}
.y45_c01215{bottom:332.640000px;}
.y6b_c01215{bottom:369.360000px;}
.y6a_c01215{bottom:370.800000px;}
.y44_c01215{bottom:371.520000px;}
.y57_c01215{bottom:372.240000px;}
.y43_c01215{bottom:373.680000px;}
.y56_c01215{bottom:374.400000px;}
.y69_c01215{bottom:413.280000px;}
.y41_c01215{bottom:414.000000px;}
.y42_c01215{bottom:414.720000px;}
.y68_c01215{bottom:415.440000px;}
.y40_c01215{bottom:417.600000px;}
.y3e_c01215{bottom:456.480000px;}
.y67_c01215{bottom:457.200000px;}
.y3f_c01215{bottom:457.920000px;}
.y3c_c01215{bottom:460.080000px;}
.y3d_c01215{bottom:460.800000px;}
.y3a_c01215{bottom:491.760000px;}
.y38_c01215{bottom:500.400000px;}
.y3b_c01215{bottom:501.120000px;}
.y39_c01215{bottom:502.560000px;}
.y37_c01215{bottom:503.280000px;}
.y36_c01215{bottom:541.440000px;}
.y65_c01215{bottom:543.600000px;}
.y35_c01215{bottom:544.320000px;}
.y66_c01215{bottom:545.760000px;}
.y34_c01215{bottom:546.480000px;}
.y32_c01215{bottom:586.080000px;}
.y64_c01215{bottom:586.800000px;}
.y33_c01215{bottom:587.520000px;}
.y30_c01215{bottom:588.240000px;}
.y31_c01215{bottom:589.680000px;}
.y2e_c01215{bottom:629.280000px;}
.y2d_c01215{bottom:630.720000px;}
.y2f_c01215{bottom:632.160000px;}
.y63_c01215{bottom:633.600000px;}
.y2b_c01215{bottom:672.480000px;}
.y2a_c01215{bottom:673.920000px;}
.y62_c01215{bottom:674.640000px;}
.y2c_c01215{bottom:675.360000px;}
.y25_c01215{bottom:714.960000px;}
.y29_c01215{bottom:715.680000px;}
.y24_c01215{bottom:716.400000px;}
.y28_c01215{bottom:717.840000px;}
.y27_c01215{bottom:718.560000px;}
.y26_c01215{bottom:719.280000px;}
.y23_c01215{bottom:750.960000px;}
.y20_c01215{bottom:757.440000px;}
.y1f_c01215{bottom:759.600000px;}
.y61_c01215{bottom:760.320000px;}
.y21_c01215{bottom:761.040000px;}
.y22_c01215{bottom:762.480000px;}
.y1b_c01215{bottom:800.640000px;}
.y1a_c01215{bottom:802.080000px;}
.y1e_c01215{bottom:802.800000px;}
.y5f_c01215{bottom:803.520000px;}
.y60_c01215{bottom:804.240000px;}
.y1c_c01215{bottom:804.960000px;}
.y1d_c01215{bottom:805.680000px;}
.y17_c01215{bottom:843.120000px;}
.y16_c01215{bottom:844.560000px;}
.y19_c01215{bottom:846.000000px;}
.y18_c01215{bottom:848.160000px;}
.y14_c01215{bottom:887.760000px;}
.y15_c01215{bottom:889.920000px;}
.y10_c01215{bottom:918.720000px;}
.y12_c01215{bottom:920.880000px;}
.y5e_c01215{bottom:921.600000px;}
.y13_c01215{bottom:922.320000px;}
.y11_c01215{bottom:923.040000px;}
.y5d_c01215{bottom:923.760000px;}
.ye_c01215{bottom:955.440000px;}
.yb_c01215{bottom:961.200000px;}
.ya_c01215{bottom:961.920000px;}
.yd_c01215{bottom:964.080000px;}
.y5c_c01215{bottom:964.800000px;}
.yc_c01215{bottom:965.520000px;}
.yf_c01215{bottom:966.240000px;}
.y5b_c01215{bottom:966.960000px;}
.y9_c01215{bottom:997.920000px;}
.y6_c01215{bottom:1004.400000px;}
.y7_c01215{bottom:1006.560000px;}
.y5a_c01215{bottom:1008.000000px;}
.y8_c01215{bottom:1009.440000px;}
.y59_c01215{bottom:1010.160000px;}
.y1_c01215{bottom:1047.600000px;}
.y4_c01215{bottom:1049.040000px;}
.y3_c01215{bottom:1050.480000px;}
.y2_c01215{bottom:1051.920000px;}
.y5_c01215{bottom:1052.640000px;}
.y58_c01215{bottom:1119.600000px;}
.hf_c01215{height:31.100625px;}
.hc_c01215{height:33.692344px;}
.h10_c01215{height:36.284062px;}
.he_c01215{height:41.467500px;}
.h4_c01215{height:44.059219px;}
.h6_c01215{height:46.650937px;}
.h7_c01215{height:49.242656px;}
.hd_c01215{height:51.834375px;}
.h2_c01215{height:54.426094px;}
.h5_c01215{height:57.017812px;}
.h11_c01215{height:59.609531px;}
.h9_c01215{height:62.201250px;}
.h3_c01215{height:64.792969px;}
.h8_c01215{height:67.384687px;}
.h12_c01215{height:69.976406px;}
.h13_c01215{height:72.568125px;}
.hb_c01215{height:90.710156px;}
.ha_c01215{height:93.301875px;}
.h0_c01215{height:1159.920000px;}
.h1_c01215{height:1160.250000px;}
.w1_c01215{width:773.250000px;}
.w0_c01215{width:773.280000px;}
.x0_c01215{left:0.000000px;}
.x13_c01215{left:52.560000px;}
.x1_c01215{left:54.000000px;}
.x14_c01215{left:131.760000px;}
.x2_c01215{left:133.200000px;}
.x8_c01215{left:144.720000px;}
.x12_c01215{left:174.960000px;}
.x19_c01215{left:205.920000px;}
.x18_c01215{left:207.360000px;}
.xc_c01215{left:218.160000px;}
.x3_c01215{left:228.960000px;}
.x9_c01215{left:230.400000px;}
.x10_c01215{left:260.640000px;}
.x1b_c01215{left:270.720000px;}
.xd_c01215{left:272.160000px;}
.x4_c01215{left:282.960000px;}
.x1a_c01215{left:302.400000px;}
.x1c_c01215{left:313.200000px;}
.x16_c01215{left:324.720000px;}
.x15_c01215{left:326.160000px;}
.xa_c01215{left:347.760000px;}
.xe_c01215{left:357.840000px;}
.x5_c01215{left:380.880000px;}
.x1d_c01215{left:399.600000px;}
.xb_c01215{left:401.760000px;}
.xf_c01215{left:412.560000px;}
.x6_c01215{left:423.360000px;}
.x1e_c01215{left:444.240000px;}
.x11_c01215{left:455.760000px;}
.x17_c01215{left:467.280000px;}
.x7_c01215{left:521.280000px;}
.x20_c01215{left:532.080000px;}
.x27_c01215{left:542.880000px;}
.x2a_c01215{left:552.240000px;}
.x1f_c01215{left:554.400000px;}
.x2d_c01215{left:573.840000px;}
.x28_c01215{left:598.320000px;}
.x2c_c01215{left:607.680000px;}
.x22_c01215{left:609.120000px;}
.x29_c01215{left:630.720000px;}
.x2e_c01215{left:640.800000px;}
.x23_c01215{left:642.240000px;}
.x24_c01215{left:674.640000px;}
.x21_c01215{left:684.000000px;}
.x26_c01215{left:685.440000px;}
.x2b_c01215{left:704.160000px;}
.x25_c01215{left:705.600000px;}
@media print{
.v1_c01215{vertical-align:-5.120000pt;}
.v0_c01215{vertical-align:0.000000pt;}
.ls0_c01215{letter-spacing:0.000000pt;}
.ws2_c01215{word-spacing:0.000000pt;}
.ws1_c01215{word-spacing:10.538667pt;}
.ws0_c01215{word-spacing:52.291988pt;}
.fsd_c01215{font-size:30.720000pt;}
.fsa_c01215{font-size:33.280000pt;}
.fse_c01215{font-size:35.840000pt;}
.fsc_c01215{font-size:40.960000pt;}
.fs2_c01215{font-size:43.520000pt;}
.fs4_c01215{font-size:46.080000pt;}
.fs5_c01215{font-size:48.640000pt;}
.fsb_c01215{font-size:51.200000pt;}
.fs0_c01215{font-size:53.760000pt;}
.fs3_c01215{font-size:56.320000pt;}
.fsf_c01215{font-size:58.880000pt;}
.fs7_c01215{font-size:61.440000pt;}
.fs1_c01215{font-size:64.000000pt;}
.fs6_c01215{font-size:66.560000pt;}
.fs10_c01215{font-size:69.120000pt;}
.fs11_c01215{font-size:71.680000pt;}
.fs9_c01215{font-size:89.600000pt;}
.fs8_c01215{font-size:92.160000pt;}
.y0_c01215{bottom:0.000000pt;}
.y89_c01215{bottom:23.680000pt;}
.y55_c01215{bottom:24.960000pt;}
.y88_c01215{bottom:25.600000pt;}
.y85_c01215{bottom:26.240000pt;}
.y54_c01215{bottom:30.720000pt;}
.y87_c01215{bottom:60.800000pt;}
.y86_c01215{bottom:62.080000pt;}
.y53_c01215{bottom:62.720000pt;}
.y84_c01215{bottom:63.360000pt;}
.y52_c01215{bottom:68.480000pt;}
.y82_c01215{bottom:99.840000pt;}
.y83_c01215{bottom:100.480000pt;}
.y51_c01215{bottom:101.760000pt;}
.y81_c01215{bottom:102.400000pt;}
.y50_c01215{bottom:106.880000pt;}
.y7d_c01215{bottom:138.240000pt;}
.y80_c01215{bottom:138.880000pt;}
.y7f_c01215{bottom:139.520000pt;}
.y4f_c01215{bottom:140.160000pt;}
.y7e_c01215{bottom:140.800000pt;}
.y77_c01215{bottom:142.080000pt;}
.y4e_c01215{bottom:144.640000pt;}
.y7c_c01215{bottom:175.360000pt;}
.y7b_c01215{bottom:176.640000pt;}
.y76_c01215{bottom:177.920000pt;}
.y4d_c01215{bottom:178.560000pt;}
.y75_c01215{bottom:179.200000pt;}
.y4c_c01215{bottom:181.760000pt;}
.y79_c01215{bottom:215.040000pt;}
.y4b_c01215{bottom:215.680000pt;}
.y7a_c01215{bottom:216.320000pt;}
.y78_c01215{bottom:216.960000pt;}
.y74_c01215{bottom:217.600000pt;}
.y4a_c01215{bottom:220.160000pt;}
.y73_c01215{bottom:252.800000pt;}
.y71_c01215{bottom:253.440000pt;}
.y49_c01215{bottom:254.080000pt;}
.y72_c01215{bottom:254.720000pt;}
.y70_c01215{bottom:256.640000pt;}
.y48_c01215{bottom:257.920000pt;}
.y47_c01215{bottom:291.200000pt;}
.y6e_c01215{bottom:291.840000pt;}
.y46_c01215{bottom:293.120000pt;}
.y6f_c01215{bottom:293.760000pt;}
.y6c_c01215{bottom:294.400000pt;}
.y6d_c01215{bottom:295.040000pt;}
.y45_c01215{bottom:295.680000pt;}
.y6b_c01215{bottom:328.320000pt;}
.y6a_c01215{bottom:329.600000pt;}
.y44_c01215{bottom:330.240000pt;}
.y57_c01215{bottom:330.880000pt;}
.y43_c01215{bottom:332.160000pt;}
.y56_c01215{bottom:332.800000pt;}
.y69_c01215{bottom:367.360000pt;}
.y41_c01215{bottom:368.000000pt;}
.y42_c01215{bottom:368.640000pt;}
.y68_c01215{bottom:369.280000pt;}
.y40_c01215{bottom:371.200000pt;}
.y3e_c01215{bottom:405.760000pt;}
.y67_c01215{bottom:406.400000pt;}
.y3f_c01215{bottom:407.040000pt;}
.y3c_c01215{bottom:408.960000pt;}
.y3d_c01215{bottom:409.600000pt;}
.y3a_c01215{bottom:437.120000pt;}
.y38_c01215{bottom:444.800000pt;}
.y3b_c01215{bottom:445.440000pt;}
.y39_c01215{bottom:446.720000pt;}
.y37_c01215{bottom:447.360000pt;}
.y36_c01215{bottom:481.280000pt;}
.y65_c01215{bottom:483.200000pt;}
.y35_c01215{bottom:483.840000pt;}
.y66_c01215{bottom:485.120000pt;}
.y34_c01215{bottom:485.760000pt;}
.y32_c01215{bottom:520.960000pt;}
.y64_c01215{bottom:521.600000pt;}
.y33_c01215{bottom:522.240000pt;}
.y30_c01215{bottom:522.880000pt;}
.y31_c01215{bottom:524.160000pt;}
.y2e_c01215{bottom:559.360000pt;}
.y2d_c01215{bottom:560.640000pt;}
.y2f_c01215{bottom:561.920000pt;}
.y63_c01215{bottom:563.200000pt;}
.y2b_c01215{bottom:597.760000pt;}
.y2a_c01215{bottom:599.040000pt;}
.y62_c01215{bottom:599.680000pt;}
.y2c_c01215{bottom:600.320000pt;}
.y25_c01215{bottom:635.520000pt;}
.y29_c01215{bottom:636.160000pt;}
.y24_c01215{bottom:636.800000pt;}
.y28_c01215{bottom:638.080000pt;}
.y27_c01215{bottom:638.720000pt;}
.y26_c01215{bottom:639.360000pt;}
.y23_c01215{bottom:667.520000pt;}
.y20_c01215{bottom:673.280000pt;}
.y1f_c01215{bottom:675.200000pt;}
.y61_c01215{bottom:675.840000pt;}
.y21_c01215{bottom:676.480000pt;}
.y22_c01215{bottom:677.760000pt;}
.y1b_c01215{bottom:711.680000pt;}
.y1a_c01215{bottom:712.960000pt;}
.y1e_c01215{bottom:713.600000pt;}
.y5f_c01215{bottom:714.240000pt;}
.y60_c01215{bottom:714.880000pt;}
.y1c_c01215{bottom:715.520000pt;}
.y1d_c01215{bottom:716.160000pt;}
.y17_c01215{bottom:749.440000pt;}
.y16_c01215{bottom:750.720000pt;}
.y19_c01215{bottom:752.000000pt;}
.y18_c01215{bottom:753.920000pt;}
.y14_c01215{bottom:789.120000pt;}
.y15_c01215{bottom:791.040000pt;}
.y10_c01215{bottom:816.640000pt;}
.y12_c01215{bottom:818.560000pt;}
.y5e_c01215{bottom:819.200000pt;}
.y13_c01215{bottom:819.840000pt;}
.y11_c01215{bottom:820.480000pt;}
.y5d_c01215{bottom:821.120000pt;}
.ye_c01215{bottom:849.280000pt;}
.yb_c01215{bottom:854.400000pt;}
.ya_c01215{bottom:855.040000pt;}
.yd_c01215{bottom:856.960000pt;}
.y5c_c01215{bottom:857.600000pt;}
.yc_c01215{bottom:858.240000pt;}
.yf_c01215{bottom:858.880000pt;}
.y5b_c01215{bottom:859.520000pt;}
.y9_c01215{bottom:887.040000pt;}
.y6_c01215{bottom:892.800000pt;}
.y7_c01215{bottom:894.720000pt;}
.y5a_c01215{bottom:896.000000pt;}
.y8_c01215{bottom:897.280000pt;}
.y59_c01215{bottom:897.920000pt;}
.y1_c01215{bottom:931.200000pt;}
.y4_c01215{bottom:932.480000pt;}
.y3_c01215{bottom:933.760000pt;}
.y2_c01215{bottom:935.040000pt;}
.y5_c01215{bottom:935.680000pt;}
.y58_c01215{bottom:995.200000pt;}
.hf_c01215{height:27.645000pt;}
.hc_c01215{height:29.948750pt;}
.h10_c01215{height:32.252500pt;}
.he_c01215{height:36.860000pt;}
.h4_c01215{height:39.163750pt;}
.h6_c01215{height:41.467500pt;}
.h7_c01215{height:43.771250pt;}
.hd_c01215{height:46.075000pt;}
.h2_c01215{height:48.378750pt;}
.h5_c01215{height:50.682500pt;}
.h11_c01215{height:52.986250pt;}
.h9_c01215{height:55.290000pt;}
.h3_c01215{height:57.593750pt;}
.h8_c01215{height:59.897500pt;}
.h12_c01215{height:62.201250pt;}
.h13_c01215{height:64.505000pt;}
.hb_c01215{height:80.631250pt;}
.ha_c01215{height:82.935000pt;}
.h0_c01215{height:1031.040000pt;}
.h1_c01215{height:1031.333333pt;}
.w1_c01215{width:687.333333pt;}
.w0_c01215{width:687.360000pt;}
.x0_c01215{left:0.000000pt;}
.x13_c01215{left:46.720000pt;}
.x1_c01215{left:48.000000pt;}
.x14_c01215{left:117.120000pt;}
.x2_c01215{left:118.400000pt;}
.x8_c01215{left:128.640000pt;}
.x12_c01215{left:155.520000pt;}
.x19_c01215{left:183.040000pt;}
.x18_c01215{left:184.320000pt;}
.xc_c01215{left:193.920000pt;}
.x3_c01215{left:203.520000pt;}
.x9_c01215{left:204.800000pt;}
.x10_c01215{left:231.680000pt;}
.x1b_c01215{left:240.640000pt;}
.xd_c01215{left:241.920000pt;}
.x4_c01215{left:251.520000pt;}
.x1a_c01215{left:268.800000pt;}
.x1c_c01215{left:278.400000pt;}
.x16_c01215{left:288.640000pt;}
.x15_c01215{left:289.920000pt;}
.xa_c01215{left:309.120000pt;}
.xe_c01215{left:318.080000pt;}
.x5_c01215{left:338.560000pt;}
.x1d_c01215{left:355.200000pt;}
.xb_c01215{left:357.120000pt;}
.xf_c01215{left:366.720000pt;}
.x6_c01215{left:376.320000pt;}
.x1e_c01215{left:394.880000pt;}
.x11_c01215{left:405.120000pt;}
.x17_c01215{left:415.360000pt;}
.x7_c01215{left:463.360000pt;}
.x20_c01215{left:472.960000pt;}
.x27_c01215{left:482.560000pt;}
.x2a_c01215{left:490.880000pt;}
.x1f_c01215{left:492.800000pt;}
.x2d_c01215{left:510.080000pt;}
.x28_c01215{left:531.840000pt;}
.x2c_c01215{left:540.160000pt;}
.x22_c01215{left:541.440000pt;}
.x29_c01215{left:560.640000pt;}
.x2e_c01215{left:569.600000pt;}
.x23_c01215{left:570.880000pt;}
.x24_c01215{left:599.680000pt;}
.x21_c01215{left:608.000000pt;}
.x26_c01215{left:609.280000pt;}
.x2b_c01215{left:625.920000pt;}
.x25_c01215{left:627.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_33798fd2e7aa620841558822.woff2')format("woff");}.ff1_c01216{font-family:ff1_c01216;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3d_c01216{transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);}
.m2d_c01216{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m39_c01216{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);}
.m2c_c01216{transform:matrix(0.228325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228325,0.000000,0.000000,0.250000,0,0);}
.m34_c01216{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m24_c01216{transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);}
.m21_c01216{transform:matrix(0.243175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243175,0.000000,0.000000,0.250000,0,0);}
.m36_c01216{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m32_c01216{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m8_c01216{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_c01216{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_c01216{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.md_c01216{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m16_c01216{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_c01216{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);}
.m33_c01216{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m3_c01216{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01216{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_c01216{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m14_c01216{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01216{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m10_c01216{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m29_c01216{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m12_c01216{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m5_c01216{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01216{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mc_c01216{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01216{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01216{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m22_c01216{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m6_c01216{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.me_c01216{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.ma_c01216{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m19_c01216{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01216{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m11_c01216{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m7_c01216{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m28_c01216{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m15_c01216{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);}
.m1f_c01216{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m0_c01216{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m23_c01216{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m4_c01216{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);}
.m30_c01216{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m27_c01216{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m17_c01216{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);}
.m41_c01216{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m2_c01216{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);}
.m2e_c01216{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m26_c01216{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_c01216{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m25_c01216{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);}
.m18_c01216{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01216{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_c01216{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m40_c01216{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01216{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);}
.m9_c01216{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01216{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01216{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m35_c01216{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01216{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.m37_c01216{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.m31_c01216{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m38_c01216{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01216{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.v0_c01216{vertical-align:0.000000px;}
.v2_c01216{vertical-align:2.880000px;}
.v1_c01216{vertical-align:8.640000px;}
.ls1_c01216{letter-spacing:0.000000px;}
.ls0_c01216{letter-spacing:45.367680px;}
.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;}
}
.ws3_c01216{word-spacing:0.000000px;}
.ws2_c01216{word-spacing:10.264683px;}
.ws1_c01216{word-spacing:10.937051px;}
.ws0_c01216{word-spacing:18.084000px;}
.fc0_c01216{color:transparent;}
.fsd_c01216{font-size:14.400000px;}
.fs6_c01216{font-size:34.560000px;}
.fsc_c01216{font-size:37.440000px;}
.fsb_c01216{font-size:46.080000px;}
.fsf_c01216{font-size:48.960000px;}
.fs9_c01216{font-size:51.840000px;}
.fs2_c01216{font-size:54.720000px;}
.fs4_c01216{font-size:57.600000px;}
.fs0_c01216{font-size:60.480000px;}
.fsa_c01216{font-size:63.360000px;}
.fs8_c01216{font-size:66.240000px;}
.fs5_c01216{font-size:69.120000px;}
.fs7_c01216{font-size:72.000000px;}
.fs1_c01216{font-size:74.880000px;}
.fs3_c01216{font-size:77.760000px;}
.fse_c01216{font-size:83.520000px;}
.y0_c01216{bottom:0.000000px;}
.y48_c01216{bottom:61.200000px;}
.y8c_c01216{bottom:62.640000px;}
.y8b_c01216{bottom:63.360000px;}
.y8a_c01216{bottom:64.080000px;}
.y89_c01216{bottom:64.800000px;}
.y46_c01216{bottom:69.120000px;}
.y47_c01216{bottom:72.000000px;}
.y45_c01216{bottom:103.680000px;}
.y88_c01216{bottom:105.120000px;}
.y44_c01216{bottom:105.840000px;}
.y87_c01216{bottom:106.560000px;}
.y86_c01216{bottom:107.280000px;}
.y43_c01216{bottom:110.880000px;}
.y42_c01216{bottom:146.160000px;}
.y85_c01216{bottom:147.600000px;}
.y40_c01216{bottom:148.320000px;}
.y84_c01216{bottom:149.040000px;}
.y41_c01216{bottom:151.200000px;}
.y3f_c01216{bottom:153.360000px;}
.y3e_c01216{bottom:189.360000px;}
.y83_c01216{bottom:190.080000px;}
.y3c_c01216{bottom:190.800000px;}
.y3d_c01216{bottom:192.240000px;}
.y82_c01216{bottom:192.960000px;}
.y3b_c01216{bottom:195.840000px;}
.y3a_c01216{bottom:232.560000px;}
.y80_c01216{bottom:233.280000px;}
.y7f_c01216{bottom:234.000000px;}
.y38_c01216{bottom:234.720000px;}
.y81_c01216{bottom:235.440000px;}
.y39_c01216{bottom:236.160000px;}
.y37_c01216{bottom:237.600000px;}
.y36_c01216{bottom:276.480000px;}
.y35_c01216{bottom:277.200000px;}
.y7e_c01216{bottom:279.360000px;}
.y7d_c01216{bottom:280.080000px;}
.y34_c01216{bottom:280.800000px;}
.y33_c01216{bottom:318.960000px;}
.y31_c01216{bottom:319.680000px;}
.y7a_c01216{bottom:320.400000px;}
.y7b_c01216{bottom:321.120000px;}
.y32_c01216{bottom:321.840000px;}
.y7c_c01216{bottom:322.560000px;}
.y30_c01216{bottom:323.280000px;}
.y2f_c01216{bottom:362.160000px;}
.y2e_c01216{bottom:362.880000px;}
.y79_c01216{bottom:363.600000px;}
.y78_c01216{bottom:364.320000px;}
.y2d_c01216{bottom:365.760000px;}
.y2b_c01216{bottom:405.360000px;}
.y2c_c01216{bottom:406.080000px;}
.y75_c01216{bottom:407.520000px;}
.y2a_c01216{bottom:408.960000px;}
.y76_c01216{bottom:409.680000px;}
.y77_c01216{bottom:410.400000px;}
.y28_c01216{bottom:447.840000px;}
.y29_c01216{bottom:449.280000px;}
.y72_c01216{bottom:450.720000px;}
.y27_c01216{bottom:452.160000px;}
.y73_c01216{bottom:452.880000px;}
.y74_c01216{bottom:453.600000px;}
.y25_c01216{bottom:491.760000px;}
.y26_c01216{bottom:492.480000px;}
.y71_c01216{bottom:493.920000px;}
.y24_c01216{bottom:494.640000px;}
.y21_c01216{bottom:534.240000px;}
.y23_c01216{bottom:534.960000px;}
.y70_c01216{bottom:536.400000px;}
.y20_c01216{bottom:537.120000px;}
.y22_c01216{bottom:537.840000px;}
.y6f_c01216{bottom:539.280000px;}
.y1d_c01216{bottom:577.440000px;}
.y1f_c01216{bottom:578.160000px;}
.y1c_c01216{bottom:579.600000px;}
.y1e_c01216{bottom:581.040000px;}
.y69_c01216{bottom:582.480000px;}
.y6e_c01216{bottom:583.200000px;}
.y18_c01216{bottom:620.640000px;}
.y1b_c01216{bottom:621.360000px;}
.y1a_c01216{bottom:622.080000px;}
.y17_c01216{bottom:622.800000px;}
.y68_c01216{bottom:623.520000px;}
.y19_c01216{bottom:624.240000px;}
.y6c_c01216{bottom:625.680000px;}
.y6d_c01216{bottom:626.400000px;}
.y15_c01216{bottom:663.120000px;}
.y16_c01216{bottom:663.840000px;}
.y14_c01216{bottom:664.560000px;}
.y6a_c01216{bottom:666.000000px;}
.y66_c01216{bottom:667.440000px;}
.y67_c01216{bottom:668.880000px;}
.y6b_c01216{bottom:669.600000px;}
.y13_c01216{bottom:706.320000px;}
.y12_c01216{bottom:707.760000px;}
.y63_c01216{bottom:709.920000px;}
.y64_c01216{bottom:711.360000px;}
.y65_c01216{bottom:712.080000px;}
.yf_c01216{bottom:747.360000px;}
.ye_c01216{bottom:749.520000px;}
.y11_c01216{bottom:750.240000px;}
.y61_c01216{bottom:751.680000px;}
.y10_c01216{bottom:753.120000px;}
.y62_c01216{bottom:755.280000px;}
.yb_c01216{bottom:791.280000px;}
.yd_c01216{bottom:793.440000px;}
.yc_c01216{bottom:795.600000px;}
.y57_c01216{bottom:796.320000px;}
.y58_c01216{bottom:797.040000px;}
.y60_c01216{bottom:797.760000px;}
.y5f_c01216{bottom:798.480000px;}
.ya_c01216{bottom:834.480000px;}
.y9_c01216{bottom:835.200000px;}
.y5c_c01216{bottom:838.800000px;}
.y5d_c01216{bottom:840.240000px;}
.y56_c01216{bottom:840.960000px;}
.y5e_c01216{bottom:841.680000px;}
.y8_c01216{bottom:876.960000px;}
.y55_c01216{bottom:882.000000px;}
.y5b_c01216{bottom:882.720000px;}
.y54_c01216{bottom:884.880000px;}
.y7_c01216{bottom:920.160000px;}
.y6_c01216{bottom:920.880000px;}
.y53_c01216{bottom:924.480000px;}
.y59_c01216{bottom:925.200000px;}
.y52_c01216{bottom:928.080000px;}
.y5a_c01216{bottom:928.800000px;}
.y5_c01216{bottom:964.080000px;}
.y50_c01216{bottom:968.400000px;}
.y51_c01216{bottom:969.120000px;}
.y4f_c01216{bottom:971.280000px;}
.y4_c01216{bottom:1006.560000px;}
.y3_c01216{bottom:1007.280000px;}
.y4e_c01216{bottom:1012.320000px;}
.y4d_c01216{bottom:1014.480000px;}
.y1_c01216{bottom:1049.040000px;}
.y2_c01216{bottom:1050.480000px;}
.y49_c01216{bottom:1056.960000px;}
.y4a_c01216{bottom:1058.400000px;}
.y4c_c01216{bottom:1059.120000px;}
.y4b_c01216{bottom:1128.960000px;}
.hf_c01216{height:12.958594px;}
.h8_c01216{height:31.100625px;}
.he_c01216{height:33.692344px;}
.hd_c01216{height:41.467500px;}
.h11_c01216{height:44.059219px;}
.hb_c01216{height:46.650937px;}
.h4_c01216{height:49.242656px;}
.h6_c01216{height:51.834375px;}
.h13_c01216{height:52.122656px;}
.h2_c01216{height:54.426094px;}
.hc_c01216{height:57.017812px;}
.ha_c01216{height:59.609531px;}
.h12_c01216{height:60.474375px;}
.h7_c01216{height:62.201250px;}
.h9_c01216{height:64.792969px;}
.h3_c01216{height:67.384687px;}
.h5_c01216{height:69.976406px;}
.h10_c01216{height:75.159844px;}
.h1_c01216{height:1164.000000px;}
.h0_c01216{height:1164.240000px;}
.w0_c01216{width:779.760000px;}
.w1_c01216{width:780.000000px;}
.x0_c01216{left:0.000000px;}
.x1_c01216{left:54.000000px;}
.xa_c01216{left:55.440000px;}
.x11_c01216{left:57.600000px;}
.x18_c01216{left:118.080000px;}
.x2_c01216{left:133.920000px;}
.xc_c01216{left:135.360000px;}
.x16_c01216{left:137.520000px;}
.x3_c01216{left:220.320000px;}
.xd_c01216{left:222.480000px;}
.x4_c01216{left:262.800000px;}
.xe_c01216{left:265.680000px;}
.x17_c01216{left:298.080000px;}
.x12_c01216{left:308.880000px;}
.x8_c01216{left:318.240000px;}
.x13_c01216{left:330.480000px;}
.x6_c01216{left:349.200000px;}
.xb_c01216{left:350.640000px;}
.x14_c01216{left:383.040000px;}
.x5_c01216{left:392.400000px;}
.xf_c01216{left:393.840000px;}
.x7_c01216{left:403.920000px;}
.x15_c01216{left:427.680000px;}
.x10_c01216{left:437.760000px;}
.x9_c01216{left:447.840000px;}
.x34_c01216{left:527.040000px;}
.x19_c01216{left:534.240000px;}
.x23_c01216{left:535.680000px;}
.x2e_c01216{left:537.120180px;}
.x1a_c01216{left:555.120000px;}
.x21_c01216{left:556.560000px;}
.x2c_c01216{left:558.000000px;}
.x35_c01216{left:559.440000px;}
.x22_c01216{left:576.720000px;}
.x2d_c01216{left:578.880000px;}
.x2f_c01216{left:591.120000px;}
.x1c_c01216{left:609.840000px;}
.x20_c01216{left:611.280000px;}
.x2a_c01216{left:613.440000px;}
.x1d_c01216{left:642.960000px;}
.x25_c01216{left:644.400000px;}
.x2b_c01216{left:645.840000px;}
.x30_c01216{left:647.280000px;}
.x1b_c01216{left:669.600000px;}
.x27_c01216{left:678.240000px;}
.x33_c01216{left:680.400000px;}
.x1e_c01216{left:686.160000px;}
.x24_c01216{left:687.600000px;}
.x29_c01216{left:689.040000px;}
.x31_c01216{left:690.480000px;}
.x1f_c01216{left:706.320000px;}
.x26_c01216{left:707.760000px;}
.x28_c01216{left:709.200000px;}
.x32_c01216{left:710.640000px;}
@media print{
.v0_c01216{vertical-align:0.000000pt;}
.v2_c01216{vertical-align:2.560000pt;}
.v1_c01216{vertical-align:7.680000pt;}
.ls1_c01216{letter-spacing:0.000000pt;}
.ls0_c01216{letter-spacing:40.326827pt;}
.ws3_c01216{word-spacing:0.000000pt;}
.ws2_c01216{word-spacing:9.124163pt;}
.ws1_c01216{word-spacing:9.721823pt;}
.ws0_c01216{word-spacing:16.074667pt;}
.fsd_c01216{font-size:12.800000pt;}
.fs6_c01216{font-size:30.720000pt;}
.fsc_c01216{font-size:33.280000pt;}
.fsb_c01216{font-size:40.960000pt;}
.fsf_c01216{font-size:43.520000pt;}
.fs9_c01216{font-size:46.080000pt;}
.fs2_c01216{font-size:48.640000pt;}
.fs4_c01216{font-size:51.200000pt;}
.fs0_c01216{font-size:53.760000pt;}
.fsa_c01216{font-size:56.320000pt;}
.fs8_c01216{font-size:58.880000pt;}
.fs5_c01216{font-size:61.440000pt;}
.fs7_c01216{font-size:64.000000pt;}
.fs1_c01216{font-size:66.560000pt;}
.fs3_c01216{font-size:69.120000pt;}
.fse_c01216{font-size:74.240000pt;}
.y0_c01216{bottom:0.000000pt;}
.y48_c01216{bottom:54.400000pt;}
.y8c_c01216{bottom:55.680000pt;}
.y8b_c01216{bottom:56.320000pt;}
.y8a_c01216{bottom:56.960000pt;}
.y89_c01216{bottom:57.600000pt;}
.y46_c01216{bottom:61.440000pt;}
.y47_c01216{bottom:64.000000pt;}
.y45_c01216{bottom:92.160000pt;}
.y88_c01216{bottom:93.440000pt;}
.y44_c01216{bottom:94.080000pt;}
.y87_c01216{bottom:94.720000pt;}
.y86_c01216{bottom:95.360000pt;}
.y43_c01216{bottom:98.560000pt;}
.y42_c01216{bottom:129.920000pt;}
.y85_c01216{bottom:131.200000pt;}
.y40_c01216{bottom:131.840000pt;}
.y84_c01216{bottom:132.480000pt;}
.y41_c01216{bottom:134.400000pt;}
.y3f_c01216{bottom:136.320000pt;}
.y3e_c01216{bottom:168.320000pt;}
.y83_c01216{bottom:168.960000pt;}
.y3c_c01216{bottom:169.600000pt;}
.y3d_c01216{bottom:170.880000pt;}
.y82_c01216{bottom:171.520000pt;}
.y3b_c01216{bottom:174.080000pt;}
.y3a_c01216{bottom:206.720000pt;}
.y80_c01216{bottom:207.360000pt;}
.y7f_c01216{bottom:208.000000pt;}
.y38_c01216{bottom:208.640000pt;}
.y81_c01216{bottom:209.280000pt;}
.y39_c01216{bottom:209.920000pt;}
.y37_c01216{bottom:211.200000pt;}
.y36_c01216{bottom:245.760000pt;}
.y35_c01216{bottom:246.400000pt;}
.y7e_c01216{bottom:248.320000pt;}
.y7d_c01216{bottom:248.960000pt;}
.y34_c01216{bottom:249.600000pt;}
.y33_c01216{bottom:283.520000pt;}
.y31_c01216{bottom:284.160000pt;}
.y7a_c01216{bottom:284.800000pt;}
.y7b_c01216{bottom:285.440000pt;}
.y32_c01216{bottom:286.080000pt;}
.y7c_c01216{bottom:286.720000pt;}
.y30_c01216{bottom:287.360000pt;}
.y2f_c01216{bottom:321.920000pt;}
.y2e_c01216{bottom:322.560000pt;}
.y79_c01216{bottom:323.200000pt;}
.y78_c01216{bottom:323.840000pt;}
.y2d_c01216{bottom:325.120000pt;}
.y2b_c01216{bottom:360.320000pt;}
.y2c_c01216{bottom:360.960000pt;}
.y75_c01216{bottom:362.240000pt;}
.y2a_c01216{bottom:363.520000pt;}
.y76_c01216{bottom:364.160000pt;}
.y77_c01216{bottom:364.800000pt;}
.y28_c01216{bottom:398.080000pt;}
.y29_c01216{bottom:399.360000pt;}
.y72_c01216{bottom:400.640000pt;}
.y27_c01216{bottom:401.920000pt;}
.y73_c01216{bottom:402.560000pt;}
.y74_c01216{bottom:403.200000pt;}
.y25_c01216{bottom:437.120000pt;}
.y26_c01216{bottom:437.760000pt;}
.y71_c01216{bottom:439.040000pt;}
.y24_c01216{bottom:439.680000pt;}
.y21_c01216{bottom:474.880000pt;}
.y23_c01216{bottom:475.520000pt;}
.y70_c01216{bottom:476.800000pt;}
.y20_c01216{bottom:477.440000pt;}
.y22_c01216{bottom:478.080000pt;}
.y6f_c01216{bottom:479.360000pt;}
.y1d_c01216{bottom:513.280000pt;}
.y1f_c01216{bottom:513.920000pt;}
.y1c_c01216{bottom:515.200000pt;}
.y1e_c01216{bottom:516.480000pt;}
.y69_c01216{bottom:517.760000pt;}
.y6e_c01216{bottom:518.400000pt;}
.y18_c01216{bottom:551.680000pt;}
.y1b_c01216{bottom:552.320000pt;}
.y1a_c01216{bottom:552.960000pt;}
.y17_c01216{bottom:553.600000pt;}
.y68_c01216{bottom:554.240000pt;}
.y19_c01216{bottom:554.880000pt;}
.y6c_c01216{bottom:556.160000pt;}
.y6d_c01216{bottom:556.800000pt;}
.y15_c01216{bottom:589.440000pt;}
.y16_c01216{bottom:590.080000pt;}
.y14_c01216{bottom:590.720000pt;}
.y6a_c01216{bottom:592.000000pt;}
.y66_c01216{bottom:593.280000pt;}
.y67_c01216{bottom:594.560000pt;}
.y6b_c01216{bottom:595.200000pt;}
.y13_c01216{bottom:627.840000pt;}
.y12_c01216{bottom:629.120000pt;}
.y63_c01216{bottom:631.040000pt;}
.y64_c01216{bottom:632.320000pt;}
.y65_c01216{bottom:632.960000pt;}
.yf_c01216{bottom:664.320000pt;}
.ye_c01216{bottom:666.240000pt;}
.y11_c01216{bottom:666.880000pt;}
.y61_c01216{bottom:668.160000pt;}
.y10_c01216{bottom:669.440000pt;}
.y62_c01216{bottom:671.360000pt;}
.yb_c01216{bottom:703.360000pt;}
.yd_c01216{bottom:705.280000pt;}
.yc_c01216{bottom:707.200000pt;}
.y57_c01216{bottom:707.840000pt;}
.y58_c01216{bottom:708.480000pt;}
.y60_c01216{bottom:709.120000pt;}
.y5f_c01216{bottom:709.760000pt;}
.ya_c01216{bottom:741.760000pt;}
.y9_c01216{bottom:742.400000pt;}
.y5c_c01216{bottom:745.600000pt;}
.y5d_c01216{bottom:746.880000pt;}
.y56_c01216{bottom:747.520000pt;}
.y5e_c01216{bottom:748.160000pt;}
.y8_c01216{bottom:779.520000pt;}
.y55_c01216{bottom:784.000000pt;}
.y5b_c01216{bottom:784.640000pt;}
.y54_c01216{bottom:786.560000pt;}
.y7_c01216{bottom:817.920000pt;}
.y6_c01216{bottom:818.560000pt;}
.y53_c01216{bottom:821.760000pt;}
.y59_c01216{bottom:822.400000pt;}
.y52_c01216{bottom:824.960000pt;}
.y5a_c01216{bottom:825.600000pt;}
.y5_c01216{bottom:856.960000pt;}
.y50_c01216{bottom:860.800000pt;}
.y51_c01216{bottom:861.440000pt;}
.y4f_c01216{bottom:863.360000pt;}
.y4_c01216{bottom:894.720000pt;}
.y3_c01216{bottom:895.360000pt;}
.y4e_c01216{bottom:899.840000pt;}
.y4d_c01216{bottom:901.760000pt;}
.y1_c01216{bottom:932.480000pt;}
.y2_c01216{bottom:933.760000pt;}
.y49_c01216{bottom:939.520000pt;}
.y4a_c01216{bottom:940.800000pt;}
.y4c_c01216{bottom:941.440000pt;}
.y4b_c01216{bottom:1003.520000pt;}
.hf_c01216{height:11.518750pt;}
.h8_c01216{height:27.645000pt;}
.he_c01216{height:29.948750pt;}
.hd_c01216{height:36.860000pt;}
.h11_c01216{height:39.163750pt;}
.hb_c01216{height:41.467500pt;}
.h4_c01216{height:43.771250pt;}
.h6_c01216{height:46.075000pt;}
.h13_c01216{height:46.331250pt;}
.h2_c01216{height:48.378750pt;}
.hc_c01216{height:50.682500pt;}
.ha_c01216{height:52.986250pt;}
.h12_c01216{height:53.755000pt;}
.h7_c01216{height:55.290000pt;}
.h9_c01216{height:57.593750pt;}
.h3_c01216{height:59.897500pt;}
.h5_c01216{height:62.201250pt;}
.h10_c01216{height:66.808750pt;}
.h1_c01216{height:1034.666667pt;}
.h0_c01216{height:1034.880000pt;}
.w0_c01216{width:693.120000pt;}
.w1_c01216{width:693.333333pt;}
.x0_c01216{left:0.000000pt;}
.x1_c01216{left:48.000000pt;}
.xa_c01216{left:49.280000pt;}
.x11_c01216{left:51.200000pt;}
.x18_c01216{left:104.960000pt;}
.x2_c01216{left:119.040000pt;}
.xc_c01216{left:120.320000pt;}
.x16_c01216{left:122.240000pt;}
.x3_c01216{left:195.840000pt;}
.xd_c01216{left:197.760000pt;}
.x4_c01216{left:233.600000pt;}
.xe_c01216{left:236.160000pt;}
.x17_c01216{left:264.960000pt;}
.x12_c01216{left:274.560000pt;}
.x8_c01216{left:282.880000pt;}
.x13_c01216{left:293.760000pt;}
.x6_c01216{left:310.400000pt;}
.xb_c01216{left:311.680000pt;}
.x14_c01216{left:340.480000pt;}
.x5_c01216{left:348.800000pt;}
.xf_c01216{left:350.080000pt;}
.x7_c01216{left:359.040000pt;}
.x15_c01216{left:380.160000pt;}
.x10_c01216{left:389.120000pt;}
.x9_c01216{left:398.080000pt;}
.x34_c01216{left:468.480000pt;}
.x19_c01216{left:474.880000pt;}
.x23_c01216{left:476.160000pt;}
.x2e_c01216{left:477.440160pt;}
.x1a_c01216{left:493.440000pt;}
.x21_c01216{left:494.720000pt;}
.x2c_c01216{left:496.000000pt;}
.x35_c01216{left:497.280000pt;}
.x22_c01216{left:512.640000pt;}
.x2d_c01216{left:514.560000pt;}
.x2f_c01216{left:525.440000pt;}
.x1c_c01216{left:542.080000pt;}
.x20_c01216{left:543.360000pt;}
.x2a_c01216{left:545.280000pt;}
.x1d_c01216{left:571.520000pt;}
.x25_c01216{left:572.800000pt;}
.x2b_c01216{left:574.080000pt;}
.x30_c01216{left:575.360000pt;}
.x1b_c01216{left:595.200000pt;}
.x27_c01216{left:602.880000pt;}
.x33_c01216{left:604.800000pt;}
.x1e_c01216{left:609.920000pt;}
.x24_c01216{left:611.200000pt;}
.x29_c01216{left:612.480000pt;}
.x31_c01216{left:613.760000pt;}
.x1f_c01216{left:627.840000pt;}
.x26_c01216{left:629.120000pt;}
.x28_c01216{left:630.400000pt;}
.x32_c01216{left:631.680000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2c4365aac1edd206995b9b0e.woff2')format("woff");}.ff1_c01217{font-family:ff1_c01217;line-height:1.109863;font-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_c01217{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.me_c01217{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01217{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m3e_c01217{transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);}
.m22_c01217{transform:matrix(0.244525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244525,0.000000,0.000000,0.250000,0,0);}
.m36_c01217{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m27_c01217{transform:matrix(0.249825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249825,0.000000,0.000000,0.250000,0,0);}
.m4_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);}
.m2_c01217{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01217{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m19_c01217{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_c01217{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m10_c01217{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m9_c01217{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);}
.m35_c01217{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);}
.m29_c01217{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m18_c01217{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m5_c01217{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01217{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.ma_c01217{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mb_c01217{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01217{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mc_c01217{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m12_c01217{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01217{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01217{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m32_c01217{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m24_c01217{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1_c01217{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01217{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m13_c01217{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m14_c01217{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m3_c01217{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);}
.m2e_c01217{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m38_c01217{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m8_c01217{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01217{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m7_c01217{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.md_c01217{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m0_c01217{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);}
.m2c_c01217{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m11_c01217{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);}
.mf_c01217{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m20_c01217{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);}
.m23_c01217{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_c01217{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);}
.m17_c01217{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);}
.m3a_c01217{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m6_c01217{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m34_c01217{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m26_c01217{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);}
.m28_c01217{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m21_c01217{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m30_c01217{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);}
.m39_c01217{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);}
.m2f_c01217{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);}
.m31_c01217{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01217{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01217{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m33_c01217{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.m16_c01217{transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);}
.m37_c01217{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.m25_c01217{transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);}
.v0_c01217{vertical-align:0.000000px;}
.v1_c01217{vertical-align:2.880000px;}
.ls0_c01217{letter-spacing:0.000000px;}
.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;}
}
.ws2_c01217{word-spacing:0.000000px;}
.ws1_c01217{word-spacing:15.598771px;}
.ws0_c01217{word-spacing:20.931600px;}
.fc0_c01217{color:transparent;}
.fsc_c01217{font-size:34.560000px;}
.fs9_c01217{font-size:43.200000px;}
.fs6_c01217{font-size:46.080000px;}
.fs3_c01217{font-size:48.960000px;}
.fs4_c01217{font-size:51.840000px;}
.fs5_c01217{font-size:54.720000px;}
.fs7_c01217{font-size:57.600000px;}
.fsa_c01217{font-size:60.480000px;}
.fs1_c01217{font-size:63.360000px;}
.fs8_c01217{font-size:66.240000px;}
.fsb_c01217{font-size:69.120000px;}
.fs0_c01217{font-size:72.000000px;}
.fs2_c01217{font-size:74.880000px;}
.fsd_c01217{font-size:77.760000px;}
.y0_c01217{bottom:0.000000px;}
.y89_c01217{bottom:59.040000px;}
.y88_c01217{bottom:59.760000px;}
.y8c_c01217{bottom:60.480000px;}
.y8b_c01217{bottom:61.200000px;}
.y8a_c01217{bottom:62.640000px;}
.y87_c01217{bottom:66.240000px;}
.y84_c01217{bottom:102.240000px;}
.y81_c01217{bottom:103.680000px;}
.y83_c01217{bottom:104.400000px;}
.y86_c01217{bottom:105.120000px;}
.y82_c01217{bottom:105.840000px;}
.y85_c01217{bottom:106.560000px;}
.y80_c01217{bottom:109.440000px;}
.y7d_c01217{bottom:144.000000px;}
.y7b_c01217{bottom:147.600000px;}
.y7f_c01217{bottom:148.320000px;}
.y7c_c01217{bottom:149.040000px;}
.y7e_c01217{bottom:149.760000px;}
.y7a_c01217{bottom:151.920000px;}
.y76_c01217{bottom:187.920000px;}
.y74_c01217{bottom:190.080000px;}
.y78_c01217{bottom:190.800000px;}
.y79_c01217{bottom:191.520000px;}
.y75_c01217{bottom:192.240000px;}
.y77_c01217{bottom:192.960000px;}
.y73_c01217{bottom:194.400000px;}
.y70_c01217{bottom:231.840000px;}
.y6f_c01217{bottom:233.280000px;}
.y71_c01217{bottom:236.160000px;}
.y72_c01217{bottom:236.880000px;}
.y6e_c01217{bottom:237.600000px;}
.y68_c01217{bottom:275.040000px;}
.y66_c01217{bottom:275.760000px;}
.y6d_c01217{bottom:276.480000px;}
.y6a_c01217{bottom:277.200000px;}
.y69_c01217{bottom:277.920000px;}
.y6b_c01217{bottom:278.640000px;}
.y67_c01217{bottom:279.360000px;}
.y65_c01217{bottom:280.080000px;}
.y6c_c01217{bottom:280.800000px;}
.y60_c01217{bottom:318.240000px;}
.y5f_c01217{bottom:318.960000px;}
.y64_c01217{bottom:320.400000px;}
.y63_c01217{bottom:321.120000px;}
.y5e_c01217{bottom:321.840000px;}
.y61_c01217{bottom:322.560000px;}
.y62_c01217{bottom:323.280000px;}
.y5a_c01217{bottom:361.440000px;}
.y5b_c01217{bottom:363.600000px;}
.y59_c01217{bottom:365.040000px;}
.y5c_c01217{bottom:365.760000px;}
.y5d_c01217{bottom:366.480000px;}
.y54_c01217{bottom:403.920000px;}
.y55_c01217{bottom:404.640000px;}
.y53_c01217{bottom:406.800000px;}
.y56_c01217{bottom:408.240000px;}
.y57_c01217{bottom:408.960000px;}
.y58_c01217{bottom:409.680000px;}
.y4f_c01217{bottom:447.120000px;}
.y4e_c01217{bottom:450.000000px;}
.y50_c01217{bottom:451.440000px;}
.y51_c01217{bottom:452.160000px;}
.y52_c01217{bottom:452.880000px;}
.y49_c01217{bottom:489.600000px;}
.y4b_c01217{bottom:490.320000px;}
.y48_c01217{bottom:493.200000px;}
.y4a_c01217{bottom:493.920000px;}
.y4c_c01217{bottom:494.640000px;}
.y4d_c01217{bottom:495.360000px;}
.y43_c01217{bottom:532.800000px;}
.y45_c01217{bottom:533.520000px;}
.y42_c01217{bottom:535.680000px;}
.y44_c01217{bottom:536.400000px;}
.y47_c01217{bottom:537.120000px;}
.y46_c01217{bottom:537.840000px;}
.y3d_c01217{bottom:575.280000px;}
.y3f_c01217{bottom:576.720000px;}
.y3c_c01217{bottom:578.160000px;}
.y3e_c01217{bottom:579.600000px;}
.y40_c01217{bottom:581.760000px;}
.y41_c01217{bottom:582.480000px;}
.y37_c01217{bottom:618.480000px;}
.y36_c01217{bottom:620.640000px;}
.y39_c01217{bottom:622.800000px;}
.y3b_c01217{bottom:624.240000px;}
.y38_c01217{bottom:624.960000px;}
.y3a_c01217{bottom:625.680000px;}
.y32_c01217{bottom:661.680000px;}
.y31_c01217{bottom:663.840000px;}
.y35_c01217{bottom:667.440000px;}
.y33_c01217{bottom:668.160000px;}
.y34_c01217{bottom:669.600000px;}
.y2d_c01217{bottom:704.880000px;}
.y2c_c01217{bottom:706.320000px;}
.y2f_c01217{bottom:709.920000px;}
.y2e_c01217{bottom:711.360000px;}
.y30_c01217{bottom:712.080000px;}
.y29_c01217{bottom:747.360000px;}
.y28_c01217{bottom:749.520000px;}
.y2a_c01217{bottom:754.560000px;}
.y2b_c01217{bottom:756.000000px;}
.y24_c01217{bottom:791.280000px;}
.y23_c01217{bottom:792.000000px;}
.y27_c01217{bottom:797.040000px;}
.y25_c01217{bottom:797.760000px;}
.y26_c01217{bottom:798.480000px;}
.y1e_c01217{bottom:834.480000px;}
.y20_c01217{bottom:839.520000px;}
.y21_c01217{bottom:840.960000px;}
.y1f_c01217{bottom:841.680000px;}
.y22_c01217{bottom:842.400000px;}
.y19_c01217{bottom:876.960000px;}
.y1d_c01217{bottom:882.000000px;}
.y1a_c01217{bottom:884.160000px;}
.y1b_c01217{bottom:884.880000px;}
.y1c_c01217{bottom:885.600000px;}
.y14_c01217{bottom:920.160000px;}
.y16_c01217{bottom:925.200000px;}
.y17_c01217{bottom:925.920000px;}
.y15_c01217{bottom:927.360000px;}
.y18_c01217{bottom:928.080000px;}
.ye_c01217{bottom:962.640000px;}
.y11_c01217{bottom:968.400000px;}
.y12_c01217{bottom:969.120000px;}
.yf_c01217{bottom:969.840000px;}
.y10_c01217{bottom:970.560000px;}
.y13_c01217{bottom:972.000000px;}
.y8_c01217{bottom:1004.400000px;}
.y9_c01217{bottom:1005.120000px;}
.yc_c01217{bottom:1011.600000px;}
.yd_c01217{bottom:1012.320000px;}
.ya_c01217{bottom:1013.040000px;}
.yb_c01217{bottom:1013.760000px;}
.y2_c01217{bottom:1047.600000px;}
.y3_c01217{bottom:1048.320000px;}
.y6_c01217{bottom:1054.800000px;}
.y4_c01217{bottom:1056.240000px;}
.y5_c01217{bottom:1056.960000px;}
.y7_c01217{bottom:1058.400000px;}
.y1_c01217{bottom:1130.400000px;}
.hf_c01217{height:31.100625px;}
.hc_c01217{height:38.875781px;}
.h8_c01217{height:41.467500px;}
.h5_c01217{height:44.059219px;}
.h6_c01217{height:46.650937px;}
.ha_c01217{height:49.242656px;}
.h9_c01217{height:51.834375px;}
.h7_c01217{height:52.122656px;}
.hd_c01217{height:54.426094px;}
.h3_c01217{height:57.017812px;}
.hb_c01217{height:59.609531px;}
.he_c01217{height:62.201250px;}
.h2_c01217{height:64.792969px;}
.h4_c01217{height:67.384687px;}
.h10_c01217{height:69.976406px;}
.h1_c01217{height:1164.750000px;}
.h0_c01217{height:1164.960000px;}
.w0_c01217{width:781.200000px;}
.w1_c01217{width:781.500000px;}
.x0_c01217{left:0.000000px;}
.x2_c01217{left:51.840000px;}
.x12_c01217{left:53.280000px;}
.x1e_c01217{left:54.720000px;}
.x26_c01217{left:56.160000px;}
.x33_c01217{left:58.320000px;}
.x3_c01217{left:131.040000px;}
.x15_c01217{left:132.480000px;}
.x1f_c01217{left:133.920000px;}
.x2b_c01217{left:135.360000px;}
.x35_c01217{left:136.800000px;}
.x2c_c01217{left:232.560000px;}
.x18_c01217{left:272.160000px;}
.x20_c01217{left:273.600000px;}
.x2e_c01217{left:275.040000px;}
.x36_c01217{left:276.480000px;}
.x19_c01217{left:315.360000px;}
.x30_c01217{left:318.240000px;}
.x27_c01217{left:328.320000px;}
.x37_c01217{left:329.760000px;}
.x38_c01217{left:373.680000px;}
.x28_c01217{left:437.040000px;}
.x4_c01217{left:520.560000px;}
.xc_c01217{left:522.000000px;}
.x16_c01217{left:523.440000px;}
.x21_c01217{left:524.880000px;}
.x31_c01217{left:526.320000px;}
.x5_c01217{left:552.960000px;}
.x10_c01217{left:554.400000px;}
.x1a_c01217{left:555.840000px;}
.x24_c01217{left:557.280000px;}
.x39_c01217{left:559.440000px;}
.xa_c01217{left:585.360000px;}
.x2f_c01217{left:589.680000px;}
.x6_c01217{left:607.680000px;}
.xe_c01217{left:609.120000px;}
.x17_c01217{left:610.560000px;}
.x22_c01217{left:612.000000px;}
.x2d_c01217{left:613.440000px;}
.x8_c01217{left:640.800000px;}
.x11_c01217{left:642.240000px;}
.x1b_c01217{left:643.680000px;}
.x29_c01217{left:645.120000px;}
.x3a_c01217{left:647.280000px;}
.xb_c01217{left:663.840000px;}
.x1_c01217{left:671.040000px;}
.x7_c01217{left:672.480000px;}
.xd_c01217{left:673.920000px;}
.x14_c01217{left:675.360000px;}
.x25_c01217{left:677.520000px;}
.x9_c01217{left:684.000000px;}
.x13_c01217{left:685.440000px;}
.x1d_c01217{left:686.880000px;}
.x23_c01217{left:688.320000px;}
.x32_c01217{left:689.760000px;}
.xf_c01217{left:704.880000px;}
.x1c_c01217{left:707.760000px;}
.x2a_c01217{left:709.200000px;}
.x34_c01217{left:710.640000px;}
@media print{
.v0_c01217{vertical-align:0.000000pt;}
.v1_c01217{vertical-align:2.560000pt;}
.ls0_c01217{letter-spacing:0.000000pt;}
.ws2_c01217{word-spacing:0.000000pt;}
.ws1_c01217{word-spacing:13.865574pt;}
.ws0_c01217{word-spacing:18.605867pt;}
.fsc_c01217{font-size:30.720000pt;}
.fs9_c01217{font-size:38.400000pt;}
.fs6_c01217{font-size:40.960000pt;}
.fs3_c01217{font-size:43.520000pt;}
.fs4_c01217{font-size:46.080000pt;}
.fs5_c01217{font-size:48.640000pt;}
.fs7_c01217{font-size:51.200000pt;}
.fsa_c01217{font-size:53.760000pt;}
.fs1_c01217{font-size:56.320000pt;}
.fs8_c01217{font-size:58.880000pt;}
.fsb_c01217{font-size:61.440000pt;}
.fs0_c01217{font-size:64.000000pt;}
.fs2_c01217{font-size:66.560000pt;}
.fsd_c01217{font-size:69.120000pt;}
.y0_c01217{bottom:0.000000pt;}
.y89_c01217{bottom:52.480000pt;}
.y88_c01217{bottom:53.120000pt;}
.y8c_c01217{bottom:53.760000pt;}
.y8b_c01217{bottom:54.400000pt;}
.y8a_c01217{bottom:55.680000pt;}
.y87_c01217{bottom:58.880000pt;}
.y84_c01217{bottom:90.880000pt;}
.y81_c01217{bottom:92.160000pt;}
.y83_c01217{bottom:92.800000pt;}
.y86_c01217{bottom:93.440000pt;}
.y82_c01217{bottom:94.080000pt;}
.y85_c01217{bottom:94.720000pt;}
.y80_c01217{bottom:97.280000pt;}
.y7d_c01217{bottom:128.000000pt;}
.y7b_c01217{bottom:131.200000pt;}
.y7f_c01217{bottom:131.840000pt;}
.y7c_c01217{bottom:132.480000pt;}
.y7e_c01217{bottom:133.120000pt;}
.y7a_c01217{bottom:135.040000pt;}
.y76_c01217{bottom:167.040000pt;}
.y74_c01217{bottom:168.960000pt;}
.y78_c01217{bottom:169.600000pt;}
.y79_c01217{bottom:170.240000pt;}
.y75_c01217{bottom:170.880000pt;}
.y77_c01217{bottom:171.520000pt;}
.y73_c01217{bottom:172.800000pt;}
.y70_c01217{bottom:206.080000pt;}
.y6f_c01217{bottom:207.360000pt;}
.y71_c01217{bottom:209.920000pt;}
.y72_c01217{bottom:210.560000pt;}
.y6e_c01217{bottom:211.200000pt;}
.y68_c01217{bottom:244.480000pt;}
.y66_c01217{bottom:245.120000pt;}
.y6d_c01217{bottom:245.760000pt;}
.y6a_c01217{bottom:246.400000pt;}
.y69_c01217{bottom:247.040000pt;}
.y6b_c01217{bottom:247.680000pt;}
.y67_c01217{bottom:248.320000pt;}
.y65_c01217{bottom:248.960000pt;}
.y6c_c01217{bottom:249.600000pt;}
.y60_c01217{bottom:282.880000pt;}
.y5f_c01217{bottom:283.520000pt;}
.y64_c01217{bottom:284.800000pt;}
.y63_c01217{bottom:285.440000pt;}
.y5e_c01217{bottom:286.080000pt;}
.y61_c01217{bottom:286.720000pt;}
.y62_c01217{bottom:287.360000pt;}
.y5a_c01217{bottom:321.280000pt;}
.y5b_c01217{bottom:323.200000pt;}
.y59_c01217{bottom:324.480000pt;}
.y5c_c01217{bottom:325.120000pt;}
.y5d_c01217{bottom:325.760000pt;}
.y54_c01217{bottom:359.040000pt;}
.y55_c01217{bottom:359.680000pt;}
.y53_c01217{bottom:361.600000pt;}
.y56_c01217{bottom:362.880000pt;}
.y57_c01217{bottom:363.520000pt;}
.y58_c01217{bottom:364.160000pt;}
.y4f_c01217{bottom:397.440000pt;}
.y4e_c01217{bottom:400.000000pt;}
.y50_c01217{bottom:401.280000pt;}
.y51_c01217{bottom:401.920000pt;}
.y52_c01217{bottom:402.560000pt;}
.y49_c01217{bottom:435.200000pt;}
.y4b_c01217{bottom:435.840000pt;}
.y48_c01217{bottom:438.400000pt;}
.y4a_c01217{bottom:439.040000pt;}
.y4c_c01217{bottom:439.680000pt;}
.y4d_c01217{bottom:440.320000pt;}
.y43_c01217{bottom:473.600000pt;}
.y45_c01217{bottom:474.240000pt;}
.y42_c01217{bottom:476.160000pt;}
.y44_c01217{bottom:476.800000pt;}
.y47_c01217{bottom:477.440000pt;}
.y46_c01217{bottom:478.080000pt;}
.y3d_c01217{bottom:511.360000pt;}
.y3f_c01217{bottom:512.640000pt;}
.y3c_c01217{bottom:513.920000pt;}
.y3e_c01217{bottom:515.200000pt;}
.y40_c01217{bottom:517.120000pt;}
.y41_c01217{bottom:517.760000pt;}
.y37_c01217{bottom:549.760000pt;}
.y36_c01217{bottom:551.680000pt;}
.y39_c01217{bottom:553.600000pt;}
.y3b_c01217{bottom:554.880000pt;}
.y38_c01217{bottom:555.520000pt;}
.y3a_c01217{bottom:556.160000pt;}
.y32_c01217{bottom:588.160000pt;}
.y31_c01217{bottom:590.080000pt;}
.y35_c01217{bottom:593.280000pt;}
.y33_c01217{bottom:593.920000pt;}
.y34_c01217{bottom:595.200000pt;}
.y2d_c01217{bottom:626.560000pt;}
.y2c_c01217{bottom:627.840000pt;}
.y2f_c01217{bottom:631.040000pt;}
.y2e_c01217{bottom:632.320000pt;}
.y30_c01217{bottom:632.960000pt;}
.y29_c01217{bottom:664.320000pt;}
.y28_c01217{bottom:666.240000pt;}
.y2a_c01217{bottom:670.720000pt;}
.y2b_c01217{bottom:672.000000pt;}
.y24_c01217{bottom:703.360000pt;}
.y23_c01217{bottom:704.000000pt;}
.y27_c01217{bottom:708.480000pt;}
.y25_c01217{bottom:709.120000pt;}
.y26_c01217{bottom:709.760000pt;}
.y1e_c01217{bottom:741.760000pt;}
.y20_c01217{bottom:746.240000pt;}
.y21_c01217{bottom:747.520000pt;}
.y1f_c01217{bottom:748.160000pt;}
.y22_c01217{bottom:748.800000pt;}
.y19_c01217{bottom:779.520000pt;}
.y1d_c01217{bottom:784.000000pt;}
.y1a_c01217{bottom:785.920000pt;}
.y1b_c01217{bottom:786.560000pt;}
.y1c_c01217{bottom:787.200000pt;}
.y14_c01217{bottom:817.920000pt;}
.y16_c01217{bottom:822.400000pt;}
.y17_c01217{bottom:823.040000pt;}
.y15_c01217{bottom:824.320000pt;}
.y18_c01217{bottom:824.960000pt;}
.ye_c01217{bottom:855.680000pt;}
.y11_c01217{bottom:860.800000pt;}
.y12_c01217{bottom:861.440000pt;}
.yf_c01217{bottom:862.080000pt;}
.y10_c01217{bottom:862.720000pt;}
.y13_c01217{bottom:864.000000pt;}
.y8_c01217{bottom:892.800000pt;}
.y9_c01217{bottom:893.440000pt;}
.yc_c01217{bottom:899.200000pt;}
.yd_c01217{bottom:899.840000pt;}
.ya_c01217{bottom:900.480000pt;}
.yb_c01217{bottom:901.120000pt;}
.y2_c01217{bottom:931.200000pt;}
.y3_c01217{bottom:931.840000pt;}
.y6_c01217{bottom:937.600000pt;}
.y4_c01217{bottom:938.880000pt;}
.y5_c01217{bottom:939.520000pt;}
.y7_c01217{bottom:940.800000pt;}
.y1_c01217{bottom:1004.800000pt;}
.hf_c01217{height:27.645000pt;}
.hc_c01217{height:34.556250pt;}
.h8_c01217{height:36.860000pt;}
.h5_c01217{height:39.163750pt;}
.h6_c01217{height:41.467500pt;}
.ha_c01217{height:43.771250pt;}
.h9_c01217{height:46.075000pt;}
.h7_c01217{height:46.331250pt;}
.hd_c01217{height:48.378750pt;}
.h3_c01217{height:50.682500pt;}
.hb_c01217{height:52.986250pt;}
.he_c01217{height:55.290000pt;}
.h2_c01217{height:57.593750pt;}
.h4_c01217{height:59.897500pt;}
.h10_c01217{height:62.201250pt;}
.h1_c01217{height:1035.333333pt;}
.h0_c01217{height:1035.520000pt;}
.w0_c01217{width:694.400000pt;}
.w1_c01217{width:694.666667pt;}
.x0_c01217{left:0.000000pt;}
.x2_c01217{left:46.080000pt;}
.x12_c01217{left:47.360000pt;}
.x1e_c01217{left:48.640000pt;}
.x26_c01217{left:49.920000pt;}
.x33_c01217{left:51.840000pt;}
.x3_c01217{left:116.480000pt;}
.x15_c01217{left:117.760000pt;}
.x1f_c01217{left:119.040000pt;}
.x2b_c01217{left:120.320000pt;}
.x35_c01217{left:121.600000pt;}
.x2c_c01217{left:206.720000pt;}
.x18_c01217{left:241.920000pt;}
.x20_c01217{left:243.200000pt;}
.x2e_c01217{left:244.480000pt;}
.x36_c01217{left:245.760000pt;}
.x19_c01217{left:280.320000pt;}
.x30_c01217{left:282.880000pt;}
.x27_c01217{left:291.840000pt;}
.x37_c01217{left:293.120000pt;}
.x38_c01217{left:332.160000pt;}
.x28_c01217{left:388.480000pt;}
.x4_c01217{left:462.720000pt;}
.xc_c01217{left:464.000000pt;}
.x16_c01217{left:465.280000pt;}
.x21_c01217{left:466.560000pt;}
.x31_c01217{left:467.840000pt;}
.x5_c01217{left:491.520000pt;}
.x10_c01217{left:492.800000pt;}
.x1a_c01217{left:494.080000pt;}
.x24_c01217{left:495.360000pt;}
.x39_c01217{left:497.280000pt;}
.xa_c01217{left:520.320000pt;}
.x2f_c01217{left:524.160000pt;}
.x6_c01217{left:540.160000pt;}
.xe_c01217{left:541.440000pt;}
.x17_c01217{left:542.720000pt;}
.x22_c01217{left:544.000000pt;}
.x2d_c01217{left:545.280000pt;}
.x8_c01217{left:569.600000pt;}
.x11_c01217{left:570.880000pt;}
.x1b_c01217{left:572.160000pt;}
.x29_c01217{left:573.440000pt;}
.x3a_c01217{left:575.360000pt;}
.xb_c01217{left:590.080000pt;}
.x1_c01217{left:596.480000pt;}
.x7_c01217{left:597.760000pt;}
.xd_c01217{left:599.040000pt;}
.x14_c01217{left:600.320000pt;}
.x25_c01217{left:602.240000pt;}
.x9_c01217{left:608.000000pt;}
.x13_c01217{left:609.280000pt;}
.x1d_c01217{left:610.560000pt;}
.x23_c01217{left:611.840000pt;}
.x32_c01217{left:613.120000pt;}
.xf_c01217{left:626.560000pt;}
.x1c_c01217{left:629.120000pt;}
.x2a_c01217{left:630.400000pt;}
.x34_c01217{left:631.680000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8276d29e385ba1897c027682.woff2')format("woff");}.ff1_c01218{font-family:ff1_c01218;line-height:1.109863;font-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_c01218{transform:matrix(0.197575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197575,0.000000,0.000000,0.250000,0,0);}
.m41_c01218{transform:matrix(0.228075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228075,0.000000,0.000000,0.250000,0,0);}
.m26_c01218{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);}
.m3e_c01218{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m3f_c01218{transform:matrix(0.239025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239025,0.000000,0.000000,0.250000,0,0);}
.m2e_c01218{transform:matrix(0.241550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241550,0.000000,0.000000,0.250000,0,0);}
.m3b_c01218{transform:matrix(0.244100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244100,0.000000,0.000000,0.250000,0,0);}
.m18_c01218{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m14_c01218{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.me_c01218{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m11_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);}
.m2_c01218{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);}
.m21_c01218{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_c01218{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m5_c01218{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m23_c01218{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);}
.m31_c01218{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m12_c01218{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m22_c01218{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mf_c01218{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m8_c01218{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m3_c01218{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m16_c01218{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01218{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m30_c01218{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m19_c01218{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m6_c01218{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01218{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m13_c01218{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4_c01218{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mc_c01218{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01218{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m7_c01218{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01218{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m39_c01218{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m17_c01218{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.md_c01218{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01218{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.ma_c01218{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_c01218{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m10_c01218{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);}
.m36_c01218{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m34_c01218{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m29_c01218{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m1_c01218{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);}
.m1a_c01218{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m0_c01218{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01218{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01218{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01218{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);}
.m25_c01218{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);}
.m38_c01218{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);}
.m27_c01218{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m35_c01218{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);}
.m2d_c01218{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.mb_c01218{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m24_c01218{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m40_c01218{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01218{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);}
.m28_c01218{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);}
.m15_c01218{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);}
.m37_c01218{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);}
.m32_c01218{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01218{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m20_c01218{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m9_c01218{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m42_c01218{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.v0_c01218{vertical-align:0.000000px;}
.v1_c01218{vertical-align:2.880000px;}
.ls0_c01218{letter-spacing:0.000000px;}
.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;}
}
.ws5_c01218{word-spacing:0.000000px;}
.ws3_c01218{word-spacing:7.642313px;}
.ws4_c01218{word-spacing:15.598771px;}
.ws0_c01218{word-spacing:17.079600px;}
.ws1_c01218{word-spacing:58.828487px;}
.ws2_c01218{word-spacing:80.880000px;}
.fc0_c01218{color:transparent;}
.fsb_c01218{font-size:34.560000px;}
.fs9_c01218{font-size:37.440000px;}
.fse_c01218{font-size:40.320000px;}
.fsc_c01218{font-size:43.200000px;}
.fsa_c01218{font-size:46.080000px;}
.fs6_c01218{font-size:48.960000px;}
.fs3_c01218{font-size:51.840000px;}
.fs4_c01218{font-size:54.720000px;}
.fs1_c01218{font-size:57.600000px;}
.fs5_c01218{font-size:60.480000px;}
.fs7_c01218{font-size:66.240000px;}
.fs8_c01218{font-size:69.120000px;}
.fs2_c01218{font-size:72.000000px;}
.fs0_c01218{font-size:74.880000px;}
.fsd_c01218{font-size:77.760000px;}
.fsf_c01218{font-size:83.520000px;}
.y0_c01218{bottom:0.000000px;}
.y88_c01218{bottom:50.400000px;}
.y8a_c01218{bottom:51.120000px;}
.y8b_c01218{bottom:51.840000px;}
.y89_c01218{bottom:53.280000px;}
.y87_c01218{bottom:56.880000px;}
.y85_c01218{bottom:93.600000px;}
.y86_c01218{bottom:95.760000px;}
.y84_c01218{bottom:99.360000px;}
.y80_c01218{bottom:135.360000px;}
.y83_c01218{bottom:136.080000px;}
.y82_c01218{bottom:136.800000px;}
.y7e_c01218{bottom:137.520000px;}
.y81_c01218{bottom:138.240000px;}
.y7f_c01218{bottom:138.960000px;}
.y7d_c01218{bottom:141.120000px;}
.y7a_c01218{bottom:178.560000px;}
.y79_c01218{bottom:179.280000px;}
.y7c_c01218{bottom:180.720000px;}
.y7b_c01218{bottom:181.440000px;}
.y78_c01218{bottom:183.600000px;}
.y72_c01218{bottom:221.760000px;}
.y76_c01218{bottom:222.480000px;}
.y75_c01218{bottom:223.200000px;}
.y77_c01218{bottom:223.920000px;}
.y74_c01218{bottom:224.640000px;}
.y73_c01218{bottom:226.080000px;}
.y71_c01218{bottom:226.800000px;}
.y6f_c01218{bottom:264.240000px;}
.y6d_c01218{bottom:264.960000px;}
.y6e_c01218{bottom:267.120000px;}
.y70_c01218{bottom:267.840000px;}
.y6c_c01218{bottom:268.560000px;}
.y69_c01218{bottom:307.440000px;}
.y6b_c01218{bottom:308.160000px;}
.y6a_c01218{bottom:310.320000px;}
.y68_c01218{bottom:311.040000px;}
.y65_c01218{bottom:350.640000px;}
.y67_c01218{bottom:351.360000px;}
.y66_c01218{bottom:353.520000px;}
.y64_c01218{bottom:354.240000px;}
.y61_c01218{bottom:393.120000px;}
.y60_c01218{bottom:393.840000px;}
.y63_c01218{bottom:394.560000px;}
.y62_c01218{bottom:395.280000px;}
.y5f_c01218{bottom:396.720000px;}
.y5b_c01218{bottom:437.040000px;}
.y5c_c01218{bottom:437.760000px;}
.y5d_c01218{bottom:439.200000px;}
.y5a_c01218{bottom:439.920000px;}
.y5e_c01218{bottom:440.640000px;}
.y56_c01218{bottom:478.800000px;}
.y55_c01218{bottom:479.520000px;}
.y58_c01218{bottom:480.960000px;}
.y59_c01218{bottom:481.680000px;}
.y54_c01218{bottom:482.400000px;}
.y57_c01218{bottom:483.120000px;}
.y4e_c01218{bottom:522.000000px;}
.y51_c01218{bottom:522.720000px;}
.y50_c01218{bottom:523.440000px;}
.y53_c01218{bottom:524.160000px;}
.y52_c01218{bottom:524.880000px;}
.y4d_c01218{bottom:525.600000px;}
.y4f_c01218{bottom:526.320000px;}
.y4a_c01218{bottom:565.200000px;}
.y49_c01218{bottom:567.360000px;}
.y4b_c01218{bottom:568.800000px;}
.y4c_c01218{bottom:569.520000px;}
.y44_c01218{bottom:607.680000px;}
.y46_c01218{bottom:608.400000px;}
.y43_c01218{bottom:609.840000px;}
.y45_c01218{bottom:611.280000px;}
.y47_c01218{bottom:612.720000px;}
.y48_c01218{bottom:613.440000px;}
.y3c_c01218{bottom:650.160000px;}
.y3e_c01218{bottom:651.600000px;}
.y3d_c01218{bottom:652.320000px;}
.y3b_c01218{bottom:653.040000px;}
.y42_c01218{bottom:653.760000px;}
.y40_c01218{bottom:654.480000px;}
.y3f_c01218{bottom:655.200000px;}
.y41_c01218{bottom:655.920000px;}
.y34_c01218{bottom:693.360000px;}
.y36_c01218{bottom:694.800000px;}
.y33_c01218{bottom:695.520000px;}
.y39_c01218{bottom:696.240000px;}
.y35_c01218{bottom:696.960000px;}
.y37_c01218{bottom:697.680000px;}
.y38_c01218{bottom:698.400000px;}
.y3a_c01218{bottom:699.120000px;}
.y2d_c01218{bottom:735.840000px;}
.y2f_c01218{bottom:736.560000px;}
.y2c_c01218{bottom:738.000000px;}
.y31_c01218{bottom:739.440000px;}
.y2e_c01218{bottom:740.880000px;}
.y30_c01218{bottom:741.600000px;}
.y32_c01218{bottom:743.040000px;}
.y27_c01218{bottom:779.040000px;}
.y28_c01218{bottom:780.480000px;}
.y26_c01218{bottom:781.200000px;}
.y2b_c01218{bottom:782.640000px;}
.y2a_c01218{bottom:783.360000px;}
.y29_c01218{bottom:784.800000px;}
.y21_c01218{bottom:821.520000px;}
.y22_c01218{bottom:822.960000px;}
.y20_c01218{bottom:823.680000px;}
.y24_c01218{bottom:825.840000px;}
.y25_c01218{bottom:826.560000px;}
.y23_c01218{bottom:828.000000px;}
.y1c_c01218{bottom:865.440000px;}
.y1b_c01218{bottom:866.160000px;}
.y1f_c01218{bottom:869.040000px;}
.y1d_c01218{bottom:870.480000px;}
.y1e_c01218{bottom:871.200000px;}
.y16_c01218{bottom:907.920000px;}
.y15_c01218{bottom:908.640000px;}
.y19_c01218{bottom:911.520000px;}
.y17_c01218{bottom:912.240000px;}
.y1a_c01218{bottom:912.960000px;}
.y18_c01218{bottom:913.680000px;}
.yf_c01218{bottom:951.120000px;}
.ye_c01218{bottom:951.840000px;}
.y10_c01218{bottom:952.560000px;}
.y13_c01218{bottom:954.720000px;}
.y12_c01218{bottom:955.440000px;}
.y14_c01218{bottom:956.160000px;}
.y11_c01218{bottom:957.600000px;}
.y8_c01218{bottom:993.600000px;}
.y9_c01218{bottom:994.320000px;}
.yb_c01218{bottom:995.760000px;}
.ya_c01218{bottom:998.640000px;}
.yc_c01218{bottom:1000.080000px;}
.yd_c01218{bottom:1001.520000px;}
.y2_c01218{bottom:1037.520000px;}
.y3_c01218{bottom:1038.960000px;}
.y5_c01218{bottom:1041.840000px;}
.y6_c01218{bottom:1042.560000px;}
.y4_c01218{bottom:1043.280000px;}
.y7_c01218{bottom:1044.720000px;}
.y1_c01218{bottom:1114.560000px;}
.he_c01218{height:31.100625px;}
.hb_c01218{height:33.692344px;}
.h11_c01218{height:36.284062px;}
.hf_c01218{height:38.875781px;}
.hc_c01218{height:41.467500px;}
.h8_c01218{height:44.059219px;}
.h5_c01218{height:46.650937px;}
.h6_c01218{height:49.242656px;}
.h3_c01218{height:51.834375px;}
.hd_c01218{height:52.122656px;}
.h7_c01218{height:54.426094px;}
.h12_c01218{height:54.714375px;}
.h9_c01218{height:59.609531px;}
.ha_c01218{height:62.201250px;}
.h4_c01218{height:64.792969px;}
.h2_c01218{height:67.384687px;}
.h10_c01218{height:69.976406px;}
.h13_c01218{height:75.159844px;}
.h0_c01218{height:1153.440000px;}
.h1_c01218{height:1153.500000px;}
.w1_c01218{width:783.000000px;}
.w0_c01218{width:783.360000px;}
.x0_c01218{left:0.000000px;}
.x2_c01218{left:70.560000px;}
.x1b_c01218{left:72.000000px;}
.x23_c01218{left:73.440000px;}
.x3_c01218{left:151.200000px;}
.x1e_c01218{left:152.640000px;}
.xd_c01218{left:247.680000px;}
.x19_c01218{left:249.120000px;}
.x20_c01218{left:260.640000px;}
.x16_c01218{left:280.800000px;}
.x4_c01218{left:290.880000px;}
.x11_c01218{left:302.400000px;}
.x1c_c01218{left:313.200000px;}
.xb_c01218{left:333.360000px;}
.x1d_c01218{left:356.400000px;}
.xf_c01218{left:377.280000px;}
.x1a_c01218{left:421.200000px;}
.x12_c01218{left:464.400000px;}
.x5_c01218{left:540.720000px;}
.x17_c01218{left:542.160000px;}
.x6_c01218{left:573.120000px;}
.x13_c01218{left:574.560000px;}
.xc_c01218{left:594.000000px;}
.x21_c01218{left:595.440000px;}
.x10_c01218{left:627.120000px;}
.x7_c01218{left:628.560000px;}
.x24_c01218{left:630.000000px;}
.x8_c01218{left:660.960000px;}
.x1f_c01218{left:662.400000px;}
.x1_c01218{left:686.880000px;}
.xe_c01218{left:693.360000px;}
.x18_c01218{left:694.800000px;}
.x9_c01218{left:703.440000px;}
.x14_c01218{left:704.880000px;}
.x22_c01218{left:706.320000px;}
.xa_c01218{left:723.600000px;}
.x15_c01218{left:725.040000px;}
@media print{
.v0_c01218{vertical-align:0.000000pt;}
.v1_c01218{vertical-align:2.560000pt;}
.ls0_c01218{letter-spacing:0.000000pt;}
.ws5_c01218{word-spacing:0.000000pt;}
.ws3_c01218{word-spacing:6.793167pt;}
.ws4_c01218{word-spacing:13.865574pt;}
.ws0_c01218{word-spacing:15.181867pt;}
.ws1_c01218{word-spacing:52.291988pt;}
.ws2_c01218{word-spacing:71.893333pt;}
.fsb_c01218{font-size:30.720000pt;}
.fs9_c01218{font-size:33.280000pt;}
.fse_c01218{font-size:35.840000pt;}
.fsc_c01218{font-size:38.400000pt;}
.fsa_c01218{font-size:40.960000pt;}
.fs6_c01218{font-size:43.520000pt;}
.fs3_c01218{font-size:46.080000pt;}
.fs4_c01218{font-size:48.640000pt;}
.fs1_c01218{font-size:51.200000pt;}
.fs5_c01218{font-size:53.760000pt;}
.fs7_c01218{font-size:58.880000pt;}
.fs8_c01218{font-size:61.440000pt;}
.fs2_c01218{font-size:64.000000pt;}
.fs0_c01218{font-size:66.560000pt;}
.fsd_c01218{font-size:69.120000pt;}
.fsf_c01218{font-size:74.240000pt;}
.y0_c01218{bottom:0.000000pt;}
.y88_c01218{bottom:44.800000pt;}
.y8a_c01218{bottom:45.440000pt;}
.y8b_c01218{bottom:46.080000pt;}
.y89_c01218{bottom:47.360000pt;}
.y87_c01218{bottom:50.560000pt;}
.y85_c01218{bottom:83.200000pt;}
.y86_c01218{bottom:85.120000pt;}
.y84_c01218{bottom:88.320000pt;}
.y80_c01218{bottom:120.320000pt;}
.y83_c01218{bottom:120.960000pt;}
.y82_c01218{bottom:121.600000pt;}
.y7e_c01218{bottom:122.240000pt;}
.y81_c01218{bottom:122.880000pt;}
.y7f_c01218{bottom:123.520000pt;}
.y7d_c01218{bottom:125.440000pt;}
.y7a_c01218{bottom:158.720000pt;}
.y79_c01218{bottom:159.360000pt;}
.y7c_c01218{bottom:160.640000pt;}
.y7b_c01218{bottom:161.280000pt;}
.y78_c01218{bottom:163.200000pt;}
.y72_c01218{bottom:197.120000pt;}
.y76_c01218{bottom:197.760000pt;}
.y75_c01218{bottom:198.400000pt;}
.y77_c01218{bottom:199.040000pt;}
.y74_c01218{bottom:199.680000pt;}
.y73_c01218{bottom:200.960000pt;}
.y71_c01218{bottom:201.600000pt;}
.y6f_c01218{bottom:234.880000pt;}
.y6d_c01218{bottom:235.520000pt;}
.y6e_c01218{bottom:237.440000pt;}
.y70_c01218{bottom:238.080000pt;}
.y6c_c01218{bottom:238.720000pt;}
.y69_c01218{bottom:273.280000pt;}
.y6b_c01218{bottom:273.920000pt;}
.y6a_c01218{bottom:275.840000pt;}
.y68_c01218{bottom:276.480000pt;}
.y65_c01218{bottom:311.680000pt;}
.y67_c01218{bottom:312.320000pt;}
.y66_c01218{bottom:314.240000pt;}
.y64_c01218{bottom:314.880000pt;}
.y61_c01218{bottom:349.440000pt;}
.y60_c01218{bottom:350.080000pt;}
.y63_c01218{bottom:350.720000pt;}
.y62_c01218{bottom:351.360000pt;}
.y5f_c01218{bottom:352.640000pt;}
.y5b_c01218{bottom:388.480000pt;}
.y5c_c01218{bottom:389.120000pt;}
.y5d_c01218{bottom:390.400000pt;}
.y5a_c01218{bottom:391.040000pt;}
.y5e_c01218{bottom:391.680000pt;}
.y56_c01218{bottom:425.600000pt;}
.y55_c01218{bottom:426.240000pt;}
.y58_c01218{bottom:427.520000pt;}
.y59_c01218{bottom:428.160000pt;}
.y54_c01218{bottom:428.800000pt;}
.y57_c01218{bottom:429.440000pt;}
.y4e_c01218{bottom:464.000000pt;}
.y51_c01218{bottom:464.640000pt;}
.y50_c01218{bottom:465.280000pt;}
.y53_c01218{bottom:465.920000pt;}
.y52_c01218{bottom:466.560000pt;}
.y4d_c01218{bottom:467.200000pt;}
.y4f_c01218{bottom:467.840000pt;}
.y4a_c01218{bottom:502.400000pt;}
.y49_c01218{bottom:504.320000pt;}
.y4b_c01218{bottom:505.600000pt;}
.y4c_c01218{bottom:506.240000pt;}
.y44_c01218{bottom:540.160000pt;}
.y46_c01218{bottom:540.800000pt;}
.y43_c01218{bottom:542.080000pt;}
.y45_c01218{bottom:543.360000pt;}
.y47_c01218{bottom:544.640000pt;}
.y48_c01218{bottom:545.280000pt;}
.y3c_c01218{bottom:577.920000pt;}
.y3e_c01218{bottom:579.200000pt;}
.y3d_c01218{bottom:579.840000pt;}
.y3b_c01218{bottom:580.480000pt;}
.y42_c01218{bottom:581.120000pt;}
.y40_c01218{bottom:581.760000pt;}
.y3f_c01218{bottom:582.400000pt;}
.y41_c01218{bottom:583.040000pt;}
.y34_c01218{bottom:616.320000pt;}
.y36_c01218{bottom:617.600000pt;}
.y33_c01218{bottom:618.240000pt;}
.y39_c01218{bottom:618.880000pt;}
.y35_c01218{bottom:619.520000pt;}
.y37_c01218{bottom:620.160000pt;}
.y38_c01218{bottom:620.800000pt;}
.y3a_c01218{bottom:621.440000pt;}
.y2d_c01218{bottom:654.080000pt;}
.y2f_c01218{bottom:654.720000pt;}
.y2c_c01218{bottom:656.000000pt;}
.y31_c01218{bottom:657.280000pt;}
.y2e_c01218{bottom:658.560000pt;}
.y30_c01218{bottom:659.200000pt;}
.y32_c01218{bottom:660.480000pt;}
.y27_c01218{bottom:692.480000pt;}
.y28_c01218{bottom:693.760000pt;}
.y26_c01218{bottom:694.400000pt;}
.y2b_c01218{bottom:695.680000pt;}
.y2a_c01218{bottom:696.320000pt;}
.y29_c01218{bottom:697.600000pt;}
.y21_c01218{bottom:730.240000pt;}
.y22_c01218{bottom:731.520000pt;}
.y20_c01218{bottom:732.160000pt;}
.y24_c01218{bottom:734.080000pt;}
.y25_c01218{bottom:734.720000pt;}
.y23_c01218{bottom:736.000000pt;}
.y1c_c01218{bottom:769.280000pt;}
.y1b_c01218{bottom:769.920000pt;}
.y1f_c01218{bottom:772.480000pt;}
.y1d_c01218{bottom:773.760000pt;}
.y1e_c01218{bottom:774.400000pt;}
.y16_c01218{bottom:807.040000pt;}
.y15_c01218{bottom:807.680000pt;}
.y19_c01218{bottom:810.240000pt;}
.y17_c01218{bottom:810.880000pt;}
.y1a_c01218{bottom:811.520000pt;}
.y18_c01218{bottom:812.160000pt;}
.yf_c01218{bottom:845.440000pt;}
.ye_c01218{bottom:846.080000pt;}
.y10_c01218{bottom:846.720000pt;}
.y13_c01218{bottom:848.640000pt;}
.y12_c01218{bottom:849.280000pt;}
.y14_c01218{bottom:849.920000pt;}
.y11_c01218{bottom:851.200000pt;}
.y8_c01218{bottom:883.200000pt;}
.y9_c01218{bottom:883.840000pt;}
.yb_c01218{bottom:885.120000pt;}
.ya_c01218{bottom:887.680000pt;}
.yc_c01218{bottom:888.960000pt;}
.yd_c01218{bottom:890.240000pt;}
.y2_c01218{bottom:922.240000pt;}
.y3_c01218{bottom:923.520000pt;}
.y5_c01218{bottom:926.080000pt;}
.y6_c01218{bottom:926.720000pt;}
.y4_c01218{bottom:927.360000pt;}
.y7_c01218{bottom:928.640000pt;}
.y1_c01218{bottom:990.720000pt;}
.he_c01218{height:27.645000pt;}
.hb_c01218{height:29.948750pt;}
.h11_c01218{height:32.252500pt;}
.hf_c01218{height:34.556250pt;}
.hc_c01218{height:36.860000pt;}
.h8_c01218{height:39.163750pt;}
.h5_c01218{height:41.467500pt;}
.h6_c01218{height:43.771250pt;}
.h3_c01218{height:46.075000pt;}
.hd_c01218{height:46.331250pt;}
.h7_c01218{height:48.378750pt;}
.h12_c01218{height:48.635000pt;}
.h9_c01218{height:52.986250pt;}
.ha_c01218{height:55.290000pt;}
.h4_c01218{height:57.593750pt;}
.h2_c01218{height:59.897500pt;}
.h10_c01218{height:62.201250pt;}
.h13_c01218{height:66.808750pt;}
.h0_c01218{height:1025.280000pt;}
.h1_c01218{height:1025.333333pt;}
.w1_c01218{width:696.000000pt;}
.w0_c01218{width:696.320000pt;}
.x0_c01218{left:0.000000pt;}
.x2_c01218{left:62.720000pt;}
.x1b_c01218{left:64.000000pt;}
.x23_c01218{left:65.280000pt;}
.x3_c01218{left:134.400000pt;}
.x1e_c01218{left:135.680000pt;}
.xd_c01218{left:220.160000pt;}
.x19_c01218{left:221.440000pt;}
.x20_c01218{left:231.680000pt;}
.x16_c01218{left:249.600000pt;}
.x4_c01218{left:258.560000pt;}
.x11_c01218{left:268.800000pt;}
.x1c_c01218{left:278.400000pt;}
.xb_c01218{left:296.320000pt;}
.x1d_c01218{left:316.800000pt;}
.xf_c01218{left:335.360000pt;}
.x1a_c01218{left:374.400000pt;}
.x12_c01218{left:412.800000pt;}
.x5_c01218{left:480.640000pt;}
.x17_c01218{left:481.920000pt;}
.x6_c01218{left:509.440000pt;}
.x13_c01218{left:510.720000pt;}
.xc_c01218{left:528.000000pt;}
.x21_c01218{left:529.280000pt;}
.x10_c01218{left:557.440000pt;}
.x7_c01218{left:558.720000pt;}
.x24_c01218{left:560.000000pt;}
.x8_c01218{left:587.520000pt;}
.x1f_c01218{left:588.800000pt;}
.x1_c01218{left:610.560000pt;}
.xe_c01218{left:616.320000pt;}
.x18_c01218{left:617.600000pt;}
.x9_c01218{left:625.280000pt;}
.x14_c01218{left:626.560000pt;}
.x22_c01218{left:627.840000pt;}
.xa_c01218{left:643.200000pt;}
.x15_c01218{left:644.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_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;}
@font-face{font-family:ff1_c01219;src:url('chunks/assets/font_c0d0f8c0a3a28576d0bc66a9.woff2')format("woff");}.ff1_c01219{font-family:ff1_c01219;line-height:1.109863;font-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_c01219{transform:matrix(0.175675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175675,0.000000,0.000000,0.250000,0,0);}
.m3f_c01219{transform:matrix(0.180050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180050,0.000000,0.000000,0.250000,0,0);}
.m43_c01219{transform:matrix(0.182775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182775,0.000000,0.000000,0.250000,0,0);}
.m44_c01219{transform:matrix(0.192400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192400,0.000000,0.000000,0.250000,0,0);}
.m2_c01219{transform:matrix(0.249350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249350,0.000000,0.000000,0.250000,0,0);}
.m25_c01219{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01219{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);}
.m3c_c01219{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);}
.m39_c01219{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_c01219{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m9_c01219{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_c01219{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m20_c01219{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m23_c01219{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_c01219{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m19_c01219{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mf_c01219{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mc_c01219{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);}
.m45_c01219{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m16_c01219{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m6_c01219{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m31_c01219{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01219{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m11_c01219{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m26_c01219{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m30_c01219{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01219{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m37_c01219{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m4_c01219{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m5_c01219{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.me_c01219{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m15_c01219{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3_c01219{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1_c01219{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m12_c01219{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);}
.m36_c01219{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m7_c01219{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m0_c01219{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_c01219{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m14_c01219{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_c01219{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01219{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m17_c01219{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m29_c01219{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m24_c01219{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);}
.m3a_c01219{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);}
.m32_c01219{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);}
.m40_c01219{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m47_c01219{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);}
.m1b_c01219{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);}
.m8_c01219{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01219{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m46_c01219{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);}
.m2d_c01219{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01219{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);}
.m3e_c01219{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m21_c01219{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);}
.m2b_c01219{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);}
.m2f_c01219{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01219{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01219{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m28_c01219{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);}
.md_c01219{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);}
.m41_c01219{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m35_c01219{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m13_c01219{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01219{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m34_c01219{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m22_c01219{transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01219{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m27_c01219{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.m33_c01219{transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);}
.v0_c01219{vertical-align:0.000000px;}
.v2_c01219{vertical-align:2.880000px;}
.v1_c01219{vertical-align:5.760000px;}
.ls0_c01219{letter-spacing:0.000000px;}
.sc__c01219{text-shadow:none;}
.sc0_c01219{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01219{-webkit-text-stroke:0px transparent;}
.sc0_c01219{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01219{word-spacing:0.000000px;}
.ws1_c01219{word-spacing:10.267200px;}
.ws2_c01219{word-spacing:12.954505px;}
.ws0_c01219{word-spacing:37.700160px;}
.fc0_c01219{color:transparent;}
.fse_c01219{font-size:17.280000px;}
.fsd_c01219{font-size:34.560000px;}
.fsc_c01219{font-size:37.440000px;}
.fsb_c01219{font-size:43.200000px;}
.fs7_c01219{font-size:46.080000px;}
.fs3_c01219{font-size:48.960000px;}
.fs5_c01219{font-size:51.840000px;}
.fs4_c01219{font-size:54.720000px;}
.fs9_c01219{font-size:57.600000px;}
.fs1_c01219{font-size:60.480000px;}
.fs8_c01219{font-size:63.360000px;}
.fsa_c01219{font-size:69.120000px;}
.fs6_c01219{font-size:72.000000px;}
.fs2_c01219{font-size:74.880000px;}
.fs0_c01219{font-size:77.760000px;}
.fsf_c01219{font-size:100.800000px;}
.y0_c01219{bottom:0.000000px;}
.y85_c01219{bottom:58.320000px;}
.y87_c01219{bottom:59.040000px;}
.y86_c01219{bottom:59.760000px;}
.y88_c01219{bottom:60.480000px;}
.y89_c01219{bottom:61.200000px;}
.y84_c01219{bottom:65.520000px;}
.y81_c01219{bottom:102.240000px;}
.y82_c01219{bottom:103.680000px;}
.y83_c01219{bottom:105.120000px;}
.y80_c01219{bottom:108.000000px;}
.y7f_c01219{bottom:145.440000px;}
.y7c_c01219{bottom:146.160000px;}
.y7e_c01219{bottom:146.880000px;}
.y7d_c01219{bottom:148.320000px;}
.y7b_c01219{bottom:151.200000px;}
.y7a_c01219{bottom:187.920000px;}
.y76_c01219{bottom:188.640000px;}
.y79_c01219{bottom:189.360000px;}
.y78_c01219{bottom:190.080000px;}
.y77_c01219{bottom:190.800000px;}
.y75_c01219{bottom:193.680000px;}
.y70_c01219{bottom:231.840000px;}
.y72_c01219{bottom:233.280000px;}
.y71_c01219{bottom:234.000000px;}
.y74_c01219{bottom:234.720000px;}
.y73_c01219{bottom:235.440000px;}
.y6f_c01219{bottom:236.160000px;}
.y6b_c01219{bottom:275.040000px;}
.y6c_c01219{bottom:275.760000px;}
.y6e_c01219{bottom:276.480000px;}
.y6d_c01219{bottom:277.920000px;}
.y6a_c01219{bottom:278.640000px;}
.y66_c01219{bottom:310.320000px;}
.y69_c01219{bottom:311.040000px;}
.y64_c01219{bottom:318.240000px;}
.y65_c01219{bottom:319.680000px;}
.y68_c01219{bottom:320.400000px;}
.y67_c01219{bottom:321.120000px;}
.y63_c01219{bottom:321.840000px;}
.y60_c01219{bottom:360.720000px;}
.y61_c01219{bottom:362.880000px;}
.y5f_c01219{bottom:363.600000px;}
.y62_c01219{bottom:365.040000px;}
.y5c_c01219{bottom:403.200000px;}
.y5b_c01219{bottom:403.920000px;}
.y5e_c01219{bottom:405.360000px;}
.y5d_c01219{bottom:406.080000px;}
.y5a_c01219{bottom:406.800000px;}
.y57_c01219{bottom:439.200000px;}
.y55_c01219{bottom:446.400000px;}
.y56_c01219{bottom:447.120000px;}
.y58_c01219{bottom:448.560000px;}
.y54_c01219{bottom:449.280000px;}
.y59_c01219{bottom:450.000000px;}
.y4c_c01219{bottom:488.880000px;}
.y50_c01219{bottom:489.600000px;}
.y4f_c01219{bottom:490.320000px;}
.y51_c01219{bottom:491.040000px;}
.y4b_c01219{bottom:491.760000px;}
.y4e_c01219{bottom:492.480000px;}
.y4d_c01219{bottom:493.200000px;}
.y52_c01219{bottom:493.920000px;}
.y53_c01219{bottom:501.120000px;}
.y4a_c01219{bottom:532.080000px;}
.y48_c01219{bottom:532.800000px;}
.y49_c01219{bottom:534.960000px;}
.y42_c01219{bottom:563.040000px;}
.y45_c01219{bottom:565.200000px;}
.y41_c01219{bottom:566.640000px;}
.y43_c01219{bottom:567.360000px;}
.y44_c01219{bottom:568.080000px;}
.y46_c01219{bottom:569.520000px;}
.y47_c01219{bottom:570.240000px;}
.y3c_c01219{bottom:606.960000px;}
.y3b_c01219{bottom:609.120000px;}
.y40_c01219{bottom:609.840000px;}
.y3f_c01219{bottom:610.560000px;}
.y3d_c01219{bottom:611.280000px;}
.y3e_c01219{bottom:612.000000px;}
.y36_c01219{bottom:649.440000px;}
.y37_c01219{bottom:650.160000px;}
.y35_c01219{bottom:651.600000px;}
.y39_c01219{bottom:653.760000px;}
.y3a_c01219{bottom:654.480000px;}
.y38_c01219{bottom:655.200000px;}
.y31_c01219{bottom:693.360000px;}
.y30_c01219{bottom:694.800000px;}
.y33_c01219{bottom:697.680000px;}
.y32_c01219{bottom:698.400000px;}
.y34_c01219{bottom:699.120000px;}
.y2a_c01219{bottom:735.840000px;}
.y29_c01219{bottom:737.280000px;}
.y2c_c01219{bottom:739.440000px;}
.y2e_c01219{bottom:740.160000px;}
.y2d_c01219{bottom:740.880000px;}
.y2b_c01219{bottom:741.600000px;}
.y2f_c01219{bottom:742.320000px;}
.y23_c01219{bottom:779.760000px;}
.y25_c01219{bottom:782.640000px;}
.y26_c01219{bottom:783.360000px;}
.y27_c01219{bottom:784.080000px;}
.y24_c01219{bottom:784.800000px;}
.y28_c01219{bottom:785.520000px;}
.y1e_c01219{bottom:822.240000px;}
.y1d_c01219{bottom:822.960000px;}
.y20_c01219{bottom:827.280000px;}
.y1f_c01219{bottom:828.000000px;}
.y22_c01219{bottom:828.720000px;}
.y21_c01219{bottom:829.440000px;}
.y17_c01219{bottom:864.720000px;}
.y16_c01219{bottom:865.440000px;}
.y1a_c01219{bottom:869.040000px;}
.y19_c01219{bottom:869.760000px;}
.y1b_c01219{bottom:870.480000px;}
.y18_c01219{bottom:871.200000px;}
.y1c_c01219{bottom:871.920000px;}
.y11_c01219{bottom:907.920000px;}
.y12_c01219{bottom:908.640000px;}
.y14_c01219{bottom:912.240000px;}
.y13_c01219{bottom:913.680000px;}
.y15_c01219{bottom:914.400000px;}
.yd_c01219{bottom:951.120000px;}
.y10_c01219{bottom:955.440000px;}
.ye_c01219{bottom:956.880000px;}
.yf_c01219{bottom:957.600000px;}
.y7_c01219{bottom:993.600000px;}
.y9_c01219{bottom:997.920000px;}
.yb_c01219{bottom:999.360000px;}
.y8_c01219{bottom:1000.080000px;}
.ya_c01219{bottom:1000.800000px;}
.yc_c01219{bottom:1001.520000px;}
.y2_c01219{bottom:1036.080000px;}
.y4_c01219{bottom:1041.120000px;}
.y5_c01219{bottom:1042.560000px;}
.y3_c01219{bottom:1043.280000px;}
.y6_c01219{bottom:1044.000000px;}
.y1_c01219{bottom:1110.960000px;}
.h10_c01219{height:15.550313px;}
.hf_c01219{height:31.100625px;}
.he_c01219{height:33.692344px;}
.hd_c01219{height:38.875781px;}
.h9_c01219{height:41.467500px;}
.h5_c01219{height:44.059219px;}
.h7_c01219{height:46.650937px;}
.h6_c01219{height:49.242656px;}
.h12_c01219{height:49.530938px;}
.hb_c01219{height:51.834375px;}
.h3_c01219{height:54.426094px;}
.ha_c01219{height:57.017812px;}
.hc_c01219{height:62.201250px;}
.h8_c01219{height:64.792969px;}
.h4_c01219{height:67.384687px;}
.h2_c01219{height:69.976406px;}
.h11_c01219{height:90.710156px;}
.h0_c01219{height:1153.440000px;}
.h1_c01219{height:1153.500000px;}
.w1_c01219{width:783.000000px;}
.w0_c01219{width:783.360000px;}
.x0_c01219{left:0.000000px;}
.x2_c01219{left:69.120000px;}
.x24_c01219{left:70.560000px;}
.x3_c01219{left:149.040000px;}
.x19_c01219{left:151.200000px;}
.x1a_c01219{left:192.960000px;}
.x1e_c01219{left:225.360000px;}
.x12_c01219{left:234.720000px;}
.xf_c01219{left:246.960000px;}
.x13_c01219{left:278.640000px;}
.x25_c01219{left:289.440000px;}
.x11_c01219{left:300.240000px;}
.x1f_c01219{left:311.760000px;}
.x22_c01219{left:321.840000px;}
.x14_c01219{left:333.360000px;}
.x20_c01219{left:354.240000px;}
.x15_c01219{left:375.840000px;}
.x26_c01219{left:419.040000px;}
.x16_c01219{left:429.840000px;}
.x17_c01219{left:440.640000px;}
.x1b_c01219{left:462.240000px;}
.x27_c01219{left:473.040000px;}
.x18_c01219{left:485.280000px;}
.x29_c01219{left:505.440000px;}
.x4_c01219{left:538.560000px;}
.xb_c01219{left:540.000000px;}
.x1c_c01219{left:549.360000px;}
.x2a_c01219{left:550.800000px;}
.x2c_c01219{left:552.240000px;}
.x5_c01219{left:571.680000px;}
.x28_c01219{left:573.120000px;}
.x6_c01219{left:626.400000px;}
.x23_c01219{left:627.840000px;}
.xc_c01219{left:637.920000px;}
.x7_c01219{left:658.800000px;}
.x1d_c01219{left:660.240000px;}
.x1_c01219{left:666.720000px;}
.xd_c01219{left:671.040000px;}
.x8_c01219{left:691.200000px;}
.x10_c01219{left:692.640000px;}
.x2b_c01219{left:694.080000px;}
.xa_c01219{left:702.000000px;}
.xe_c01219{left:704.160000px;}
.x9_c01219{left:722.880000px;}
.x21_c01219{left:724.320000px;}
@media print{
.v0_c01219{vertical-align:0.000000pt;}
.v2_c01219{vertical-align:2.560000pt;}
.v1_c01219{vertical-align:5.120000pt;}
.ls0_c01219{letter-spacing:0.000000pt;}
.ws3_c01219{word-spacing:0.000000pt;}
.ws1_c01219{word-spacing:9.126400pt;}
.ws2_c01219{word-spacing:11.515116pt;}
.ws0_c01219{word-spacing:33.511253pt;}
.fse_c01219{font-size:15.360000pt;}
.fsd_c01219{font-size:30.720000pt;}
.fsc_c01219{font-size:33.280000pt;}
.fsb_c01219{font-size:38.400000pt;}
.fs7_c01219{font-size:40.960000pt;}
.fs3_c01219{font-size:43.520000pt;}
.fs5_c01219{font-size:46.080000pt;}
.fs4_c01219{font-size:48.640000pt;}
.fs9_c01219{font-size:51.200000pt;}
.fs1_c01219{font-size:53.760000pt;}
.fs8_c01219{font-size:56.320000pt;}
.fsa_c01219{font-size:61.440000pt;}
.fs6_c01219{font-size:64.000000pt;}
.fs2_c01219{font-size:66.560000pt;}
.fs0_c01219{font-size:69.120000pt;}
.fsf_c01219{font-size:89.600000pt;}
.y0_c01219{bottom:0.000000pt;}
.y85_c01219{bottom:51.840000pt;}
.y87_c01219{bottom:52.480000pt;}
.y86_c01219{bottom:53.120000pt;}
.y88_c01219{bottom:53.760000pt;}
.y89_c01219{bottom:54.400000pt;}
.y84_c01219{bottom:58.240000pt;}
.y81_c01219{bottom:90.880000pt;}
.y82_c01219{bottom:92.160000pt;}
.y83_c01219{bottom:93.440000pt;}
.y80_c01219{bottom:96.000000pt;}
.y7f_c01219{bottom:129.280000pt;}
.y7c_c01219{bottom:129.920000pt;}
.y7e_c01219{bottom:130.560000pt;}
.y7d_c01219{bottom:131.840000pt;}
.y7b_c01219{bottom:134.400000pt;}
.y7a_c01219{bottom:167.040000pt;}
.y76_c01219{bottom:167.680000pt;}
.y79_c01219{bottom:168.320000pt;}
.y78_c01219{bottom:168.960000pt;}
.y77_c01219{bottom:169.600000pt;}
.y75_c01219{bottom:172.160000pt;}
.y70_c01219{bottom:206.080000pt;}
.y72_c01219{bottom:207.360000pt;}
.y71_c01219{bottom:208.000000pt;}
.y74_c01219{bottom:208.640000pt;}
.y73_c01219{bottom:209.280000pt;}
.y6f_c01219{bottom:209.920000pt;}
.y6b_c01219{bottom:244.480000pt;}
.y6c_c01219{bottom:245.120000pt;}
.y6e_c01219{bottom:245.760000pt;}
.y6d_c01219{bottom:247.040000pt;}
.y6a_c01219{bottom:247.680000pt;}
.y66_c01219{bottom:275.840000pt;}
.y69_c01219{bottom:276.480000pt;}
.y64_c01219{bottom:282.880000pt;}
.y65_c01219{bottom:284.160000pt;}
.y68_c01219{bottom:284.800000pt;}
.y67_c01219{bottom:285.440000pt;}
.y63_c01219{bottom:286.080000pt;}
.y60_c01219{bottom:320.640000pt;}
.y61_c01219{bottom:322.560000pt;}
.y5f_c01219{bottom:323.200000pt;}
.y62_c01219{bottom:324.480000pt;}
.y5c_c01219{bottom:358.400000pt;}
.y5b_c01219{bottom:359.040000pt;}
.y5e_c01219{bottom:360.320000pt;}
.y5d_c01219{bottom:360.960000pt;}
.y5a_c01219{bottom:361.600000pt;}
.y57_c01219{bottom:390.400000pt;}
.y55_c01219{bottom:396.800000pt;}
.y56_c01219{bottom:397.440000pt;}
.y58_c01219{bottom:398.720000pt;}
.y54_c01219{bottom:399.360000pt;}
.y59_c01219{bottom:400.000000pt;}
.y4c_c01219{bottom:434.560000pt;}
.y50_c01219{bottom:435.200000pt;}
.y4f_c01219{bottom:435.840000pt;}
.y51_c01219{bottom:436.480000pt;}
.y4b_c01219{bottom:437.120000pt;}
.y4e_c01219{bottom:437.760000pt;}
.y4d_c01219{bottom:438.400000pt;}
.y52_c01219{bottom:439.040000pt;}
.y53_c01219{bottom:445.440000pt;}
.y4a_c01219{bottom:472.960000pt;}
.y48_c01219{bottom:473.600000pt;}
.y49_c01219{bottom:475.520000pt;}
.y42_c01219{bottom:500.480000pt;}
.y45_c01219{bottom:502.400000pt;}
.y41_c01219{bottom:503.680000pt;}
.y43_c01219{bottom:504.320000pt;}
.y44_c01219{bottom:504.960000pt;}
.y46_c01219{bottom:506.240000pt;}
.y47_c01219{bottom:506.880000pt;}
.y3c_c01219{bottom:539.520000pt;}
.y3b_c01219{bottom:541.440000pt;}
.y40_c01219{bottom:542.080000pt;}
.y3f_c01219{bottom:542.720000pt;}
.y3d_c01219{bottom:543.360000pt;}
.y3e_c01219{bottom:544.000000pt;}
.y36_c01219{bottom:577.280000pt;}
.y37_c01219{bottom:577.920000pt;}
.y35_c01219{bottom:579.200000pt;}
.y39_c01219{bottom:581.120000pt;}
.y3a_c01219{bottom:581.760000pt;}
.y38_c01219{bottom:582.400000pt;}
.y31_c01219{bottom:616.320000pt;}
.y30_c01219{bottom:617.600000pt;}
.y33_c01219{bottom:620.160000pt;}
.y32_c01219{bottom:620.800000pt;}
.y34_c01219{bottom:621.440000pt;}
.y2a_c01219{bottom:654.080000pt;}
.y29_c01219{bottom:655.360000pt;}
.y2c_c01219{bottom:657.280000pt;}
.y2e_c01219{bottom:657.920000pt;}
.y2d_c01219{bottom:658.560000pt;}
.y2b_c01219{bottom:659.200000pt;}
.y2f_c01219{bottom:659.840000pt;}
.y23_c01219{bottom:693.120000pt;}
.y25_c01219{bottom:695.680000pt;}
.y26_c01219{bottom:696.320000pt;}
.y27_c01219{bottom:696.960000pt;}
.y24_c01219{bottom:697.600000pt;}
.y28_c01219{bottom:698.240000pt;}
.y1e_c01219{bottom:730.880000pt;}
.y1d_c01219{bottom:731.520000pt;}
.y20_c01219{bottom:735.360000pt;}
.y1f_c01219{bottom:736.000000pt;}
.y22_c01219{bottom:736.640000pt;}
.y21_c01219{bottom:737.280000pt;}
.y17_c01219{bottom:768.640000pt;}
.y16_c01219{bottom:769.280000pt;}
.y1a_c01219{bottom:772.480000pt;}
.y19_c01219{bottom:773.120000pt;}
.y1b_c01219{bottom:773.760000pt;}
.y18_c01219{bottom:774.400000pt;}
.y1c_c01219{bottom:775.040000pt;}
.y11_c01219{bottom:807.040000pt;}
.y12_c01219{bottom:807.680000pt;}
.y14_c01219{bottom:810.880000pt;}
.y13_c01219{bottom:812.160000pt;}
.y15_c01219{bottom:812.800000pt;}
.yd_c01219{bottom:845.440000pt;}
.y10_c01219{bottom:849.280000pt;}
.ye_c01219{bottom:850.560000pt;}
.yf_c01219{bottom:851.200000pt;}
.y7_c01219{bottom:883.200000pt;}
.y9_c01219{bottom:887.040000pt;}
.yb_c01219{bottom:888.320000pt;}
.y8_c01219{bottom:888.960000pt;}
.ya_c01219{bottom:889.600000pt;}
.yc_c01219{bottom:890.240000pt;}
.y2_c01219{bottom:920.960000pt;}
.y4_c01219{bottom:925.440000pt;}
.y5_c01219{bottom:926.720000pt;}
.y3_c01219{bottom:927.360000pt;}
.y6_c01219{bottom:928.000000pt;}
.y1_c01219{bottom:987.520000pt;}
.h10_c01219{height:13.822500pt;}
.hf_c01219{height:27.645000pt;}
.he_c01219{height:29.948750pt;}
.hd_c01219{height:34.556250pt;}
.h9_c01219{height:36.860000pt;}
.h5_c01219{height:39.163750pt;}
.h7_c01219{height:41.467500pt;}
.h6_c01219{height:43.771250pt;}
.h12_c01219{height:44.027500pt;}
.hb_c01219{height:46.075000pt;}
.h3_c01219{height:48.378750pt;}
.ha_c01219{height:50.682500pt;}
.hc_c01219{height:55.290000pt;}
.h8_c01219{height:57.593750pt;}
.h4_c01219{height:59.897500pt;}
.h2_c01219{height:62.201250pt;}
.h11_c01219{height:80.631250pt;}
.h0_c01219{height:1025.280000pt;}
.h1_c01219{height:1025.333333pt;}
.w1_c01219{width:696.000000pt;}
.w0_c01219{width:696.320000pt;}
.x0_c01219{left:0.000000pt;}
.x2_c01219{left:61.440000pt;}
.x24_c01219{left:62.720000pt;}
.x3_c01219{left:132.480000pt;}
.x19_c01219{left:134.400000pt;}
.x1a_c01219{left:171.520000pt;}
.x1e_c01219{left:200.320000pt;}
.x12_c01219{left:208.640000pt;}
.xf_c01219{left:219.520000pt;}
.x13_c01219{left:247.680000pt;}
.x25_c01219{left:257.280000pt;}
.x11_c01219{left:266.880000pt;}
.x1f_c01219{left:277.120000pt;}
.x22_c01219{left:286.080000pt;}
.x14_c01219{left:296.320000pt;}
.x20_c01219{left:314.880000pt;}
.x15_c01219{left:334.080000pt;}
.x26_c01219{left:372.480000pt;}
.x16_c01219{left:382.080000pt;}
.x17_c01219{left:391.680000pt;}
.x1b_c01219{left:410.880000pt;}
.x27_c01219{left:420.480000pt;}
.x18_c01219{left:431.360000pt;}
.x29_c01219{left:449.280000pt;}
.x4_c01219{left:478.720000pt;}
.xb_c01219{left:480.000000pt;}
.x1c_c01219{left:488.320000pt;}
.x2a_c01219{left:489.600000pt;}
.x2c_c01219{left:490.880000pt;}
.x5_c01219{left:508.160000pt;}
.x28_c01219{left:509.440000pt;}
.x6_c01219{left:556.800000pt;}
.x23_c01219{left:558.080000pt;}
.xc_c01219{left:567.040000pt;}
.x7_c01219{left:585.600000pt;}
.x1d_c01219{left:586.880000pt;}
.x1_c01219{left:592.640000pt;}
.xd_c01219{left:596.480000pt;}
.x8_c01219{left:614.400000pt;}
.x10_c01219{left:615.680000pt;}
.x2b_c01219{left:616.960000pt;}
.xa_c01219{left:624.000000pt;}
.xe_c01219{left:625.920000pt;}
.x9_c01219{left:642.560000pt;}
.x21_c01219{left:643.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_178dd0013405effaff370b52.woff2')format("woff");}.ff1_c01220{font-family:ff1_c01220;line-height:1.109863;font-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_c01220{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.m3b_c01220{transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);}
.m1e_c01220{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m2f_c01220{transform:matrix(0.243625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243625,0.000000,0.000000,0.250000,0,0);}
.m21_c01220{transform:matrix(0.244950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244950,0.000000,0.000000,0.250000,0,0);}
.ma_c01220{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m27_c01220{transform:matrix(0.247825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247825,0.000000,0.000000,0.250000,0,0);}
.m2a_c01220{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m2_c01220{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1_c01220{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01220{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01220{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_c01220{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m11_c01220{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m3_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);}
.m36_c01220{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m14_c01220{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_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);}
.m17_c01220{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m12_c01220{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m13_c01220{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mc_c01220{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01220{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m29_c01220{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m16_c01220{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m25_c01220{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01220{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01220{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m26_c01220{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m23_c01220{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01220{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m22_c01220{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mb_c01220{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01220{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01220{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m20_c01220{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.md_c01220{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m7_c01220{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m0_c01220{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m5_c01220{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m6_c01220{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m31_c01220{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);}
.m34_c01220{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01220{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m4_c01220{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);}
.m38_c01220{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m18_c01220{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);}
.m10_c01220{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m33_c01220{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);}
.m15_c01220{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m19_c01220{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01220{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m39_c01220{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m35_c01220{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);}
.m32_c01220{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m30_c01220{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.mf_c01220{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m28_c01220{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01220{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01220{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m37_c01220{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m24_c01220{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.v1_c01220{vertical-align:-2.880000px;}
.v0_c01220{vertical-align:0.000000px;}
.v2_c01220{vertical-align:2.880000px;}
.v3_c01220{vertical-align:5.760000px;}
.ls0_c01220{letter-spacing:0.000000px;}
.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;}
}
.ws4_c01220{word-spacing:0.000000px;}
.ws0_c01220{word-spacing:6.757200px;}
.ws2_c01220{word-spacing:16.838400px;}
.ws1_c01220{word-spacing:78.283200px;}
.ws3_c01220{word-spacing:195.417291px;}
.fc0_c01220{color:transparent;}
.fsf_c01220{font-size:37.440000px;}
.fsb_c01220{font-size:43.200000px;}
.fse_c01220{font-size:46.080000px;}
.fs6_c01220{font-size:48.960000px;}
.fs5_c01220{font-size:51.840000px;}
.fs4_c01220{font-size:54.720000px;}
.fs3_c01220{font-size:57.600000px;}
.fs7_c01220{font-size:60.480000px;}
.fsa_c01220{font-size:63.360000px;}
.fs1_c01220{font-size:66.240000px;}
.fsd_c01220{font-size:69.120000px;}
.fs0_c01220{font-size:72.000000px;}
.fsc_c01220{font-size:74.880000px;}
.fs9_c01220{font-size:77.760000px;}
.fs8_c01220{font-size:80.640000px;}
.fs2_c01220{font-size:86.400000px;}
.y0_c01220{bottom:0.000000px;}
.y86_c01220{bottom:45.360000px;}
.y85_c01220{bottom:47.520000px;}
.y83_c01220{bottom:48.240000px;}
.y82_c01220{bottom:48.960000px;}
.y84_c01220{bottom:51.120000px;}
.y81_c01220{bottom:52.560000px;}
.y80_c01220{bottom:56.880000px;}
.y7f_c01220{bottom:89.280000px;}
.y7e_c01220{bottom:90.720000px;}
.y7c_c01220{bottom:91.440000px;}
.y7d_c01220{bottom:94.320000px;}
.y7b_c01220{bottom:97.200000px;}
.y7a_c01220{bottom:98.640000px;}
.y79_c01220{bottom:126.000000px;}
.y78_c01220{bottom:132.480000px;}
.y76_c01220{bottom:133.920000px;}
.y77_c01220{bottom:136.080000px;}
.y75_c01220{bottom:136.800000px;}
.y74_c01220{bottom:137.520000px;}
.y73_c01220{bottom:141.120000px;}
.y72_c01220{bottom:174.960000px;}
.y71_c01220{bottom:175.680000px;}
.y70_c01220{bottom:177.120000px;}
.y6f_c01220{bottom:180.000000px;}
.y6e_c01220{bottom:182.880000px;}
.y6d_c01220{bottom:218.160000px;}
.y6c_c01220{bottom:218.880000px;}
.y6b_c01220{bottom:220.320000px;}
.y6a_c01220{bottom:222.480000px;}
.y69_c01220{bottom:225.360000px;}
.y68_c01220{bottom:260.640000px;}
.y66_c01220{bottom:261.360000px;}
.y67_c01220{bottom:262.080000px;}
.y65_c01220{bottom:263.520000px;}
.y64_c01220{bottom:265.680000px;}
.y63_c01220{bottom:267.840000px;}
.y62_c01220{bottom:304.560000px;}
.y5f_c01220{bottom:306.000000px;}
.y61_c01220{bottom:307.440000px;}
.y5e_c01220{bottom:308.160000px;}
.y60_c01220{bottom:308.880000px;}
.y5d_c01220{bottom:310.320000px;}
.y5b_c01220{bottom:347.760000px;}
.y59_c01220{bottom:348.480000px;}
.y5a_c01220{bottom:349.200000px;}
.y5c_c01220{bottom:349.920000px;}
.y58_c01220{bottom:351.360000px;}
.y57_c01220{bottom:352.080000px;}
.y52_c01220{bottom:390.240000px;}
.y56_c01220{bottom:390.960000px;}
.y55_c01220{bottom:391.680000px;}
.y53_c01220{bottom:392.400000px;}
.y54_c01220{bottom:393.840000px;}
.y51_c01220{bottom:396.000000px;}
.y4c_c01220{bottom:434.160000px;}
.y4f_c01220{bottom:434.880000px;}
.y4d_c01220{bottom:435.600000px;}
.y50_c01220{bottom:436.320000px;}
.y4e_c01220{bottom:437.040000px;}
.y4b_c01220{bottom:438.480000px;}
.y49_c01220{bottom:477.360000px;}
.y47_c01220{bottom:478.080000px;}
.y4a_c01220{bottom:478.800000px;}
.y48_c01220{bottom:480.240000px;}
.y46_c01220{bottom:480.960000px;}
.y45_c01220{bottom:520.560000px;}
.y42_c01220{bottom:521.280000px;}
.y44_c01220{bottom:522.720000px;}
.y43_c01220{bottom:523.440000px;}
.y41_c01220{bottom:524.160000px;}
.y3e_c01220{bottom:563.760000px;}
.y40_c01220{bottom:564.480000px;}
.y3d_c01220{bottom:565.920000px;}
.y3f_c01220{bottom:566.640000px;}
.y3a_c01220{bottom:606.960000px;}
.y39_c01220{bottom:609.120000px;}
.y3b_c01220{bottom:609.840000px;}
.y3c_c01220{bottom:610.560000px;}
.y35_c01220{bottom:648.720000px;}
.y38_c01220{bottom:650.160000px;}
.y34_c01220{bottom:651.600000px;}
.y37_c01220{bottom:652.320000px;}
.y36_c01220{bottom:653.040000px;}
.y32_c01220{bottom:691.200000px;}
.y30_c01220{bottom:691.920000px;}
.y33_c01220{bottom:693.360000px;}
.y2f_c01220{bottom:694.080000px;}
.y31_c01220{bottom:695.520000px;}
.y2a_c01220{bottom:735.120000px;}
.y2d_c01220{bottom:735.840000px;}
.y2c_c01220{bottom:736.560000px;}
.y29_c01220{bottom:737.280000px;}
.y2e_c01220{bottom:738.000000px;}
.y2b_c01220{bottom:738.720000px;}
.y25_c01220{bottom:777.600000px;}
.y24_c01220{bottom:779.760000px;}
.y28_c01220{bottom:780.480000px;}
.y26_c01220{bottom:781.200000px;}
.y27_c01220{bottom:781.920000px;}
.y1f_c01220{bottom:820.080000px;}
.y1e_c01220{bottom:821.520000px;}
.y20_c01220{bottom:822.240000px;}
.y22_c01220{bottom:822.960000px;}
.y23_c01220{bottom:823.680000px;}
.y21_c01220{bottom:824.400000px;}
.y19_c01220{bottom:863.280000px;}
.y18_c01220{bottom:864.000000px;}
.y1a_c01220{bottom:864.720000px;}
.y1c_c01220{bottom:865.440000px;}
.y1d_c01220{bottom:866.160000px;}
.y1b_c01220{bottom:867.600000px;}
.y14_c01220{bottom:906.480000px;}
.y13_c01220{bottom:907.920000px;}
.y15_c01220{bottom:908.640000px;}
.y17_c01220{bottom:909.360000px;}
.y16_c01220{bottom:911.520000px;}
.ye_c01220{bottom:949.680000px;}
.yd_c01220{bottom:950.400000px;}
.yf_c01220{bottom:951.840000px;}
.y10_c01220{bottom:952.560000px;}
.y11_c01220{bottom:954.000000px;}
.y12_c01220{bottom:954.720000px;}
.y8_c01220{bottom:992.880000px;}
.y7_c01220{bottom:993.600000px;}
.y9_c01220{bottom:995.760000px;}
.yc_c01220{bottom:997.200000px;}
.yb_c01220{bottom:997.920000px;}
.ya_c01220{bottom:998.640000px;}
.y3_c01220{bottom:1035.360000px;}
.y2_c01220{bottom:1036.080000px;}
.y4_c01220{bottom:1038.960000px;}
.y5_c01220{bottom:1040.400000px;}
.y6_c01220{bottom:1041.840000px;}
.y1_c01220{bottom:1114.560000px;}
.h12_c01220{height:33.692344px;}
.hd_c01220{height:38.875781px;}
.h11_c01220{height:41.467500px;}
.h8_c01220{height:44.059219px;}
.h7_c01220{height:46.650937px;}
.h6_c01220{height:49.242656px;}
.h10_c01220{height:49.530938px;}
.h5_c01220{height:51.834375px;}
.h9_c01220{height:54.426094px;}
.hc_c01220{height:57.017812px;}
.h3_c01220{height:59.609531px;}
.h13_c01220{height:60.186094px;}
.hf_c01220{height:62.201250px;}
.h2_c01220{height:64.792969px;}
.he_c01220{height:67.384687px;}
.hb_c01220{height:69.976406px;}
.ha_c01220{height:72.568125px;}
.h4_c01220{height:77.751563px;}
.h1_c01220{height:1149.000000px;}
.h0_c01220{height:1149.120000px;}
.w1_c01220{width:765.750000px;}
.w0_c01220{width:766.080000px;}
.x0_c01220{left:0.000000px;}
.x24_c01220{left:64.080000px;}
.x13_c01220{left:65.520000px;}
.x2_c01220{left:66.960000px;}
.x25_c01220{left:143.280000px;}
.x14_c01220{left:144.720000px;}
.x3_c01220{left:146.880000px;}
.x28_c01220{left:229.680000px;}
.x2f_c01220{left:282.960000px;}
.x1c_c01220{left:284.400000px;}
.x29_c01220{left:293.760000px;}
.x1a_c01220{left:295.200000px;}
.x1f_c01220{left:306.000000px;}
.xa_c01220{left:328.320000px;}
.xe_c01220{left:329.760000px;}
.x30_c01220{left:337.680000px;}
.x1d_c01220{left:339.120000px;}
.x35_c01220{left:348.480000px;}
.x10_c01220{left:350.640000px;}
.x20_c01220{left:358.560000px;}
.x2d_c01220{left:380.160000px;}
.x1e_c01220{left:381.600000px;}
.xf_c01220{left:383.040000px;}
.x36_c01220{left:390.960000px;}
.x8_c01220{left:393.120000px;}
.x21_c01220{left:403.200000px;}
.x11_c01220{left:415.440000px;}
.x31_c01220{left:433.440000px;}
.x22_c01220{left:446.400000px;}
.xb_c01220{left:448.560000px;}
.x12_c01220{left:470.160000px;}
.x34_c01220{left:481.680000px;}
.x32_c01220{left:483.120000px;}
.x2e_c01220{left:531.360000px;}
.x2a_c01220{left:532.800000px;}
.xc_c01220{left:535.680000px;}
.x23_c01220{left:544.320000px;}
.x4_c01220{left:547.200000px;}
.x26_c01220{left:565.920000px;}
.x5_c01220{left:568.080000px;}
.x15_c01220{left:578.880000px;}
.x16_c01220{left:600.480000px;}
.x27_c01220{left:620.640000px;}
.x18_c01220{left:622.080000px;}
.x6_c01220{left:623.520000px;}
.x2b_c01220{left:653.760000px;}
.x17_c01220{left:655.200000px;}
.x9_c01220{left:656.640000px;}
.x1_c01220{left:662.400000px;}
.x2c_c01220{left:686.160000px;}
.x1b_c01220{left:687.600000px;}
.x7_c01220{left:689.040000px;}
.x33_c01220{left:696.960000px;}
.xd_c01220{left:699.120000px;}
.x19_c01220{left:719.280000px;}
@media print{
.v1_c01220{vertical-align:-2.560000pt;}
.v0_c01220{vertical-align:0.000000pt;}
.v2_c01220{vertical-align:2.560000pt;}
.v3_c01220{vertical-align:5.120000pt;}
.ls0_c01220{letter-spacing:0.000000pt;}
.ws4_c01220{word-spacing:0.000000pt;}
.ws0_c01220{word-spacing:6.006400pt;}
.ws2_c01220{word-spacing:14.967467pt;}
.ws1_c01220{word-spacing:69.585067pt;}
.ws3_c01220{word-spacing:173.704259pt;}
.fsf_c01220{font-size:33.280000pt;}
.fsb_c01220{font-size:38.400000pt;}
.fse_c01220{font-size:40.960000pt;}
.fs6_c01220{font-size:43.520000pt;}
.fs5_c01220{font-size:46.080000pt;}
.fs4_c01220{font-size:48.640000pt;}
.fs3_c01220{font-size:51.200000pt;}
.fs7_c01220{font-size:53.760000pt;}
.fsa_c01220{font-size:56.320000pt;}
.fs1_c01220{font-size:58.880000pt;}
.fsd_c01220{font-size:61.440000pt;}
.fs0_c01220{font-size:64.000000pt;}
.fsc_c01220{font-size:66.560000pt;}
.fs9_c01220{font-size:69.120000pt;}
.fs8_c01220{font-size:71.680000pt;}
.fs2_c01220{font-size:76.800000pt;}
.y0_c01220{bottom:0.000000pt;}
.y86_c01220{bottom:40.320000pt;}
.y85_c01220{bottom:42.240000pt;}
.y83_c01220{bottom:42.880000pt;}
.y82_c01220{bottom:43.520000pt;}
.y84_c01220{bottom:45.440000pt;}
.y81_c01220{bottom:46.720000pt;}
.y80_c01220{bottom:50.560000pt;}
.y7f_c01220{bottom:79.360000pt;}
.y7e_c01220{bottom:80.640000pt;}
.y7c_c01220{bottom:81.280000pt;}
.y7d_c01220{bottom:83.840000pt;}
.y7b_c01220{bottom:86.400000pt;}
.y7a_c01220{bottom:87.680000pt;}
.y79_c01220{bottom:112.000000pt;}
.y78_c01220{bottom:117.760000pt;}
.y76_c01220{bottom:119.040000pt;}
.y77_c01220{bottom:120.960000pt;}
.y75_c01220{bottom:121.600000pt;}
.y74_c01220{bottom:122.240000pt;}
.y73_c01220{bottom:125.440000pt;}
.y72_c01220{bottom:155.520000pt;}
.y71_c01220{bottom:156.160000pt;}
.y70_c01220{bottom:157.440000pt;}
.y6f_c01220{bottom:160.000000pt;}
.y6e_c01220{bottom:162.560000pt;}
.y6d_c01220{bottom:193.920000pt;}
.y6c_c01220{bottom:194.560000pt;}
.y6b_c01220{bottom:195.840000pt;}
.y6a_c01220{bottom:197.760000pt;}
.y69_c01220{bottom:200.320000pt;}
.y68_c01220{bottom:231.680000pt;}
.y66_c01220{bottom:232.320000pt;}
.y67_c01220{bottom:232.960000pt;}
.y65_c01220{bottom:234.240000pt;}
.y64_c01220{bottom:236.160000pt;}
.y63_c01220{bottom:238.080000pt;}
.y62_c01220{bottom:270.720000pt;}
.y5f_c01220{bottom:272.000000pt;}
.y61_c01220{bottom:273.280000pt;}
.y5e_c01220{bottom:273.920000pt;}
.y60_c01220{bottom:274.560000pt;}
.y5d_c01220{bottom:275.840000pt;}
.y5b_c01220{bottom:309.120000pt;}
.y59_c01220{bottom:309.760000pt;}
.y5a_c01220{bottom:310.400000pt;}
.y5c_c01220{bottom:311.040000pt;}
.y58_c01220{bottom:312.320000pt;}
.y57_c01220{bottom:312.960000pt;}
.y52_c01220{bottom:346.880000pt;}
.y56_c01220{bottom:347.520000pt;}
.y55_c01220{bottom:348.160000pt;}
.y53_c01220{bottom:348.800000pt;}
.y54_c01220{bottom:350.080000pt;}
.y51_c01220{bottom:352.000000pt;}
.y4c_c01220{bottom:385.920000pt;}
.y4f_c01220{bottom:386.560000pt;}
.y4d_c01220{bottom:387.200000pt;}
.y50_c01220{bottom:387.840000pt;}
.y4e_c01220{bottom:388.480000pt;}
.y4b_c01220{bottom:389.760000pt;}
.y49_c01220{bottom:424.320000pt;}
.y47_c01220{bottom:424.960000pt;}
.y4a_c01220{bottom:425.600000pt;}
.y48_c01220{bottom:426.880000pt;}
.y46_c01220{bottom:427.520000pt;}
.y45_c01220{bottom:462.720000pt;}
.y42_c01220{bottom:463.360000pt;}
.y44_c01220{bottom:464.640000pt;}
.y43_c01220{bottom:465.280000pt;}
.y41_c01220{bottom:465.920000pt;}
.y3e_c01220{bottom:501.120000pt;}
.y40_c01220{bottom:501.760000pt;}
.y3d_c01220{bottom:503.040000pt;}
.y3f_c01220{bottom:503.680000pt;}
.y3a_c01220{bottom:539.520000pt;}
.y39_c01220{bottom:541.440000pt;}
.y3b_c01220{bottom:542.080000pt;}
.y3c_c01220{bottom:542.720000pt;}
.y35_c01220{bottom:576.640000pt;}
.y38_c01220{bottom:577.920000pt;}
.y34_c01220{bottom:579.200000pt;}
.y37_c01220{bottom:579.840000pt;}
.y36_c01220{bottom:580.480000pt;}
.y32_c01220{bottom:614.400000pt;}
.y30_c01220{bottom:615.040000pt;}
.y33_c01220{bottom:616.320000pt;}
.y2f_c01220{bottom:616.960000pt;}
.y31_c01220{bottom:618.240000pt;}
.y2a_c01220{bottom:653.440000pt;}
.y2d_c01220{bottom:654.080000pt;}
.y2c_c01220{bottom:654.720000pt;}
.y29_c01220{bottom:655.360000pt;}
.y2e_c01220{bottom:656.000000pt;}
.y2b_c01220{bottom:656.640000pt;}
.y25_c01220{bottom:691.200000pt;}
.y24_c01220{bottom:693.120000pt;}
.y28_c01220{bottom:693.760000pt;}
.y26_c01220{bottom:694.400000pt;}
.y27_c01220{bottom:695.040000pt;}
.y1f_c01220{bottom:728.960000pt;}
.y1e_c01220{bottom:730.240000pt;}
.y20_c01220{bottom:730.880000pt;}
.y22_c01220{bottom:731.520000pt;}
.y23_c01220{bottom:732.160000pt;}
.y21_c01220{bottom:732.800000pt;}
.y19_c01220{bottom:767.360000pt;}
.y18_c01220{bottom:768.000000pt;}
.y1a_c01220{bottom:768.640000pt;}
.y1c_c01220{bottom:769.280000pt;}
.y1d_c01220{bottom:769.920000pt;}
.y1b_c01220{bottom:771.200000pt;}
.y14_c01220{bottom:805.760000pt;}
.y13_c01220{bottom:807.040000pt;}
.y15_c01220{bottom:807.680000pt;}
.y17_c01220{bottom:808.320000pt;}
.y16_c01220{bottom:810.240000pt;}
.ye_c01220{bottom:844.160000pt;}
.yd_c01220{bottom:844.800000pt;}
.yf_c01220{bottom:846.080000pt;}
.y10_c01220{bottom:846.720000pt;}
.y11_c01220{bottom:848.000000pt;}
.y12_c01220{bottom:848.640000pt;}
.y8_c01220{bottom:882.560000pt;}
.y7_c01220{bottom:883.200000pt;}
.y9_c01220{bottom:885.120000pt;}
.yc_c01220{bottom:886.400000pt;}
.yb_c01220{bottom:887.040000pt;}
.ya_c01220{bottom:887.680000pt;}
.y3_c01220{bottom:920.320000pt;}
.y2_c01220{bottom:920.960000pt;}
.y4_c01220{bottom:923.520000pt;}
.y5_c01220{bottom:924.800000pt;}
.y6_c01220{bottom:926.080000pt;}
.y1_c01220{bottom:990.720000pt;}
.h12_c01220{height:29.948750pt;}
.hd_c01220{height:34.556250pt;}
.h11_c01220{height:36.860000pt;}
.h8_c01220{height:39.163750pt;}
.h7_c01220{height:41.467500pt;}
.h6_c01220{height:43.771250pt;}
.h10_c01220{height:44.027500pt;}
.h5_c01220{height:46.075000pt;}
.h9_c01220{height:48.378750pt;}
.hc_c01220{height:50.682500pt;}
.h3_c01220{height:52.986250pt;}
.h13_c01220{height:53.498750pt;}
.hf_c01220{height:55.290000pt;}
.h2_c01220{height:57.593750pt;}
.he_c01220{height:59.897500pt;}
.hb_c01220{height:62.201250pt;}
.ha_c01220{height:64.505000pt;}
.h4_c01220{height:69.112500pt;}
.h1_c01220{height:1021.333333pt;}
.h0_c01220{height:1021.440000pt;}
.w1_c01220{width:680.666667pt;}
.w0_c01220{width:680.960000pt;}
.x0_c01220{left:0.000000pt;}
.x24_c01220{left:56.960000pt;}
.x13_c01220{left:58.240000pt;}
.x2_c01220{left:59.520000pt;}
.x25_c01220{left:127.360000pt;}
.x14_c01220{left:128.640000pt;}
.x3_c01220{left:130.560000pt;}
.x28_c01220{left:204.160000pt;}
.x2f_c01220{left:251.520000pt;}
.x1c_c01220{left:252.800000pt;}
.x29_c01220{left:261.120000pt;}
.x1a_c01220{left:262.400000pt;}
.x1f_c01220{left:272.000000pt;}
.xa_c01220{left:291.840000pt;}
.xe_c01220{left:293.120000pt;}
.x30_c01220{left:300.160000pt;}
.x1d_c01220{left:301.440000pt;}
.x35_c01220{left:309.760000pt;}
.x10_c01220{left:311.680000pt;}
.x20_c01220{left:318.720000pt;}
.x2d_c01220{left:337.920000pt;}
.x1e_c01220{left:339.200000pt;}
.xf_c01220{left:340.480000pt;}
.x36_c01220{left:347.520000pt;}
.x8_c01220{left:349.440000pt;}
.x21_c01220{left:358.400000pt;}
.x11_c01220{left:369.280000pt;}
.x31_c01220{left:385.280000pt;}
.x22_c01220{left:396.800000pt;}
.xb_c01220{left:398.720000pt;}
.x12_c01220{left:417.920000pt;}
.x34_c01220{left:428.160000pt;}
.x32_c01220{left:429.440000pt;}
.x2e_c01220{left:472.320000pt;}
.x2a_c01220{left:473.600000pt;}
.xc_c01220{left:476.160000pt;}
.x23_c01220{left:483.840000pt;}
.x4_c01220{left:486.400000pt;}
.x26_c01220{left:503.040000pt;}
.x5_c01220{left:504.960000pt;}
.x15_c01220{left:514.560000pt;}
.x16_c01220{left:533.760000pt;}
.x27_c01220{left:551.680000pt;}
.x18_c01220{left:552.960000pt;}
.x6_c01220{left:554.240000pt;}
.x2b_c01220{left:581.120000pt;}
.x17_c01220{left:582.400000pt;}
.x9_c01220{left:583.680000pt;}
.x1_c01220{left:588.800000pt;}
.x2c_c01220{left:609.920000pt;}
.x1b_c01220{left:611.200000pt;}
.x7_c01220{left:612.480000pt;}
.x33_c01220{left:619.520000pt;}
.xd_c01220{left:621.440000pt;}
.x19_c01220{left:639.360000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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;}
@font-face{font-family:ff1_c01221;src:url('chunks/assets/font_cccf30df76e6a65bc282d0a2.woff2')format("woff");}.ff1_c01221{font-family:ff1_c01221;line-height:1.109863;font-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_c01221{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m38_c01221{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);}
.m23_c01221{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);}
.m2b_c01221{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);}
.m29_c01221{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);}
.m20_c01221{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01221{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m7_c01221{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mf_c01221{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01221{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.me_c01221{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m25_c01221{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01221{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m6_c01221{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01221{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m8_c01221{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m22_c01221{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01221{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01221{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01221{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m15_c01221{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m16_c01221{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m33_c01221{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m30_c01221{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.ma_c01221{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m17_c01221{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m9_c01221{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m28_c01221{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);}
.m21_c01221{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m11_c01221{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m1_c01221{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);}
.m26_c01221{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01221{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);}
.m44_c01221{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);}
.m43_c01221{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);}
.m32_c01221{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);}
.m0_c01221{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m34_c01221{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);}
.m36_c01221{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01221{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);}
.m1f_c01221{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);}
.m37_c01221{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m2_c01221{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m12_c01221{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);}
.m40_c01221{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);}
.mc_c01221{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m18_c01221{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m35_c01221{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);}
.mb_c01221{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m19_c01221{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m31_c01221{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m41_c01221{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.md_c01221{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m3_c01221{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m24_c01221{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m14_c01221{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);}
.m13_c01221{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01221{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01221{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01221{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m4_c01221{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01221{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01221{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m5_c01221{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01221{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01221{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01221{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m39_c01221{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.m42_c01221{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.v1_c01221{vertical-align:-5.760000px;}
.v3_c01221{vertical-align:-2.880000px;}
.v0_c01221{vertical-align:0.000000px;}
.v2_c01221{vertical-align:5.760000px;}
.ls0_c01221{letter-spacing:0.000000px;}
.sc__c01221{text-shadow:none;}
.sc0_c01221{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01221{-webkit-text-stroke:0px transparent;}
.sc0_c01221{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c01221{word-spacing:0.000000px;}
.ws1_c01221{word-spacing:1.555200px;}
.ws0_c01221{word-spacing:3.211200px;}
.ws3_c01221{word-spacing:6.258960px;}
.ws4_c01221{word-spacing:8.499600px;}
.ws8_c01221{word-spacing:11.693143px;}
.ws6_c01221{word-spacing:56.131200px;}
.ws9_c01221{word-spacing:172.644000px;}
.ws5_c01221{word-spacing:192.748032px;}
.ws7_c01221{word-spacing:195.417291px;}
.ws2_c01221{word-spacing:197.900116px;}
.fc0_c01221{color:transparent;}
.fs3_c01221{font-size:34.560000px;}
.fs8_c01221{font-size:37.440000px;}
.fs7_c01221{font-size:46.080000px;}
.fs2_c01221{font-size:48.960000px;}
.fs5_c01221{font-size:51.840000px;}
.fs4_c01221{font-size:54.720000px;}
.fs1_c01221{font-size:57.600000px;}
.fs6_c01221{font-size:60.480000px;}
.fs9_c01221{font-size:63.360000px;}
.fsa_c01221{font-size:66.240000px;}
.fsb_c01221{font-size:69.120000px;}
.fs0_c01221{font-size:72.000000px;}
.y0_c01221{bottom:0.000000px;}
.y80_c01221{bottom:59.040000px;}
.y82_c01221{bottom:59.760000px;}
.y81_c01221{bottom:60.480000px;}
.y7f_c01221{bottom:61.200000px;}
.y7e_c01221{bottom:64.080000px;}
.y7d_c01221{bottom:101.520000px;}
.y7a_c01221{bottom:102.240000px;}
.y7c_c01221{bottom:102.960000px;}
.y7b_c01221{bottom:103.680000px;}
.y79_c01221{bottom:104.400000px;}
.y78_c01221{bottom:107.280000px;}
.y74_c01221{bottom:145.440000px;}
.y75_c01221{bottom:146.160000px;}
.y77_c01221{bottom:146.880000px;}
.y73_c01221{bottom:147.600000px;}
.y76_c01221{bottom:148.320000px;}
.y72_c01221{bottom:149.760000px;}
.y71_c01221{bottom:187.200000px;}
.y70_c01221{bottom:187.920000px;}
.y6f_c01221{bottom:189.360000px;}
.y6d_c01221{bottom:190.080000px;}
.y6e_c01221{bottom:191.520000px;}
.y6c_c01221{bottom:192.960000px;}
.y6b_c01221{bottom:230.400000px;}
.y6a_c01221{bottom:231.120000px;}
.y68_c01221{bottom:231.840000px;}
.y67_c01221{bottom:233.280000px;}
.y69_c01221{bottom:234.000000px;}
.y66_c01221{bottom:235.440000px;}
.y63_c01221{bottom:274.320000px;}
.y65_c01221{bottom:275.040000px;}
.y62_c01221{bottom:276.480000px;}
.y64_c01221{bottom:277.200000px;}
.y61_c01221{bottom:277.920000px;}
.y5c_c01221{bottom:317.520000px;}
.y5f_c01221{bottom:318.240000px;}
.y60_c01221{bottom:318.960000px;}
.y5d_c01221{bottom:319.680000px;}
.y5e_c01221{bottom:320.400000px;}
.y5b_c01221{bottom:321.120000px;}
.y59_c01221{bottom:360.720000px;}
.y58_c01221{bottom:362.160000px;}
.y5a_c01221{bottom:362.880000px;}
.y57_c01221{bottom:363.600000px;}
.y53_c01221{bottom:403.920000px;}
.y56_c01221{bottom:404.640000px;}
.y55_c01221{bottom:405.360000px;}
.y52_c01221{bottom:406.080000px;}
.y54_c01221{bottom:406.800000px;}
.y50_c01221{bottom:445.680000px;}
.y4f_c01221{bottom:446.400000px;}
.y4e_c01221{bottom:447.120000px;}
.y4d_c01221{bottom:448.560000px;}
.y51_c01221{bottom:449.280000px;}
.y4c_c01221{bottom:488.880000px;}
.y4a_c01221{bottom:491.040000px;}
.y4b_c01221{bottom:491.760000px;}
.y46_c01221{bottom:532.080000px;}
.y45_c01221{bottom:532.800000px;}
.y44_c01221{bottom:533.520000px;}
.y47_c01221{bottom:534.240000px;}
.y48_c01221{bottom:534.960000px;}
.y49_c01221{bottom:535.680000px;}
.y42_c01221{bottom:575.280000px;}
.y43_c01221{bottom:576.720000px;}
.y41_c01221{bottom:578.160000px;}
.y3e_c01221{bottom:606.960000px;}
.y3d_c01221{bottom:607.680000px;}
.y40_c01221{bottom:608.400000px;}
.y3f_c01221{bottom:609.840000px;}
.y3a_c01221{bottom:649.440000px;}
.y39_c01221{bottom:650.160000px;}
.y38_c01221{bottom:650.880000px;}
.y3b_c01221{bottom:653.040000px;}
.y3c_c01221{bottom:653.760000px;}
.y34_c01221{bottom:691.920000px;}
.y37_c01221{bottom:693.360000px;}
.y33_c01221{bottom:694.080000px;}
.y36_c01221{bottom:695.520000px;}
.y35_c01221{bottom:696.240000px;}
.y2d_c01221{bottom:735.840000px;}
.y2c_c01221{bottom:736.560000px;}
.y30_c01221{bottom:737.280000px;}
.y32_c01221{bottom:738.000000px;}
.y2e_c01221{bottom:738.720000px;}
.y2f_c01221{bottom:739.440000px;}
.y31_c01221{bottom:740.160000px;}
.y28_c01221{bottom:779.040000px;}
.y27_c01221{bottom:779.760000px;}
.y2a_c01221{bottom:781.200000px;}
.y29_c01221{bottom:781.920000px;}
.y2b_c01221{bottom:782.640000px;}
.y22_c01221{bottom:822.240000px;}
.y23_c01221{bottom:822.960000px;}
.y25_c01221{bottom:823.680000px;}
.y24_c01221{bottom:825.840000px;}
.y26_c01221{bottom:826.560000px;}
.y1c_c01221{bottom:864.720000px;}
.y1d_c01221{bottom:865.440000px;}
.y20_c01221{bottom:866.160000px;}
.y1f_c01221{bottom:866.880000px;}
.y1e_c01221{bottom:868.320000px;}
.y21_c01221{bottom:870.480000px;}
.y16_c01221{bottom:907.920000px;}
.y17_c01221{bottom:908.640000px;}
.y19_c01221{bottom:909.360000px;}
.y1a_c01221{bottom:910.080000px;}
.y1b_c01221{bottom:910.800000px;}
.y18_c01221{bottom:911.520000px;}
.ye_c01221{bottom:950.400000px;}
.yf_c01221{bottom:951.120000px;}
.y10_c01221{bottom:951.840000px;}
.y13_c01221{bottom:952.560000px;}
.y14_c01221{bottom:953.280000px;}
.y12_c01221{bottom:954.000000px;}
.y11_c01221{bottom:954.720000px;}
.y15_c01221{bottom:955.440000px;}
.y7_c01221{bottom:992.160000px;}
.y9_c01221{bottom:994.320000px;}
.yb_c01221{bottom:995.760000px;}
.y8_c01221{bottom:996.480000px;}
.ya_c01221{bottom:997.200000px;}
.yc_c01221{bottom:998.640000px;}
.yd_c01221{bottom:999.360000px;}
.y2_c01221{bottom:1035.360000px;}
.y3_c01221{bottom:1038.960000px;}
.y4_c01221{bottom:1039.680000px;}
.y5_c01221{bottom:1040.400000px;}
.y6_c01221{bottom:1041.120000px;}
.y1_c01221{bottom:1124.640000px;}
.h5_c01221{height:31.100625px;}
.ha_c01221{height:33.692344px;}
.h9_c01221{height:41.467500px;}
.h4_c01221{height:44.059219px;}
.h7_c01221{height:46.650937px;}
.h6_c01221{height:49.242656px;}
.h3_c01221{height:51.834375px;}
.he_c01221{height:52.410937px;}
.h8_c01221{height:54.426094px;}
.hb_c01221{height:57.017812px;}
.hc_c01221{height:59.609531px;}
.hd_c01221{height:62.201250px;}
.h2_c01221{height:64.792969px;}
.h0_c01221{height:1153.440000px;}
.h1_c01221{height:1153.500000px;}
.w0_c01221{width:778.320000px;}
.w1_c01221{width:778.500000px;}
.x0_c01221{left:0.000000px;}
.x2_c01221{left:66.960000px;}
.xe_c01221{left:146.880000px;}
.x3_c01221{left:148.320000px;}
.x18_c01221{left:159.840000px;}
.x14_c01221{left:200.880000px;}
.xf_c01221{left:231.840000px;}
.x4_c01221{left:233.280000px;}
.x15_c01221{left:255.600000px;}
.x17_c01221{left:285.840000px;}
.x5_c01221{left:287.280000px;}
.x10_c01221{left:296.640000px;}
.xb_c01221{left:298.080000px;}
.x6_c01221{left:341.280000px;}
.xc_c01221{left:352.080000px;}
.x13_c01221{left:470.880000px;}
.x11_c01221{left:535.680000px;}
.x7_c01221{left:537.120000px;}
.x8_c01221{left:624.240000px;}
.x9_c01221{left:656.640000px;}
.x1_c01221{left:681.840000px;}
.xa_c01221{left:689.760000px;}
.xd_c01221{left:699.840000px;}
.x12_c01221{left:720.000000px;}
.x16_c01221{left:721.440000px;}
@media print{
.v1_c01221{vertical-align:-5.120000pt;}
.v3_c01221{vertical-align:-2.560000pt;}
.v0_c01221{vertical-align:0.000000pt;}
.v2_c01221{vertical-align:5.120000pt;}
.ls0_c01221{letter-spacing:0.000000pt;}
.wsa_c01221{word-spacing:0.000000pt;}
.ws1_c01221{word-spacing:1.382400pt;}
.ws0_c01221{word-spacing:2.854400pt;}
.ws3_c01221{word-spacing:5.563520pt;}
.ws4_c01221{word-spacing:7.555200pt;}
.ws8_c01221{word-spacing:10.393905pt;}
.ws6_c01221{word-spacing:49.894400pt;}
.ws9_c01221{word-spacing:153.461333pt;}
.ws5_c01221{word-spacing:171.331584pt;}
.ws7_c01221{word-spacing:173.704259pt;}
.ws2_c01221{word-spacing:175.911214pt;}
.fs3_c01221{font-size:30.720000pt;}
.fs8_c01221{font-size:33.280000pt;}
.fs7_c01221{font-size:40.960000pt;}
.fs2_c01221{font-size:43.520000pt;}
.fs5_c01221{font-size:46.080000pt;}
.fs4_c01221{font-size:48.640000pt;}
.fs1_c01221{font-size:51.200000pt;}
.fs6_c01221{font-size:53.760000pt;}
.fs9_c01221{font-size:56.320000pt;}
.fsa_c01221{font-size:58.880000pt;}
.fsb_c01221{font-size:61.440000pt;}
.fs0_c01221{font-size:64.000000pt;}
.y0_c01221{bottom:0.000000pt;}
.y80_c01221{bottom:52.480000pt;}
.y82_c01221{bottom:53.120000pt;}
.y81_c01221{bottom:53.760000pt;}
.y7f_c01221{bottom:54.400000pt;}
.y7e_c01221{bottom:56.960000pt;}
.y7d_c01221{bottom:90.240000pt;}
.y7a_c01221{bottom:90.880000pt;}
.y7c_c01221{bottom:91.520000pt;}
.y7b_c01221{bottom:92.160000pt;}
.y79_c01221{bottom:92.800000pt;}
.y78_c01221{bottom:95.360000pt;}
.y74_c01221{bottom:129.280000pt;}
.y75_c01221{bottom:129.920000pt;}
.y77_c01221{bottom:130.560000pt;}
.y73_c01221{bottom:131.200000pt;}
.y76_c01221{bottom:131.840000pt;}
.y72_c01221{bottom:133.120000pt;}
.y71_c01221{bottom:166.400000pt;}
.y70_c01221{bottom:167.040000pt;}
.y6f_c01221{bottom:168.320000pt;}
.y6d_c01221{bottom:168.960000pt;}
.y6e_c01221{bottom:170.240000pt;}
.y6c_c01221{bottom:171.520000pt;}
.y6b_c01221{bottom:204.800000pt;}
.y6a_c01221{bottom:205.440000pt;}
.y68_c01221{bottom:206.080000pt;}
.y67_c01221{bottom:207.360000pt;}
.y69_c01221{bottom:208.000000pt;}
.y66_c01221{bottom:209.280000pt;}
.y63_c01221{bottom:243.840000pt;}
.y65_c01221{bottom:244.480000pt;}
.y62_c01221{bottom:245.760000pt;}
.y64_c01221{bottom:246.400000pt;}
.y61_c01221{bottom:247.040000pt;}
.y5c_c01221{bottom:282.240000pt;}
.y5f_c01221{bottom:282.880000pt;}
.y60_c01221{bottom:283.520000pt;}
.y5d_c01221{bottom:284.160000pt;}
.y5e_c01221{bottom:284.800000pt;}
.y5b_c01221{bottom:285.440000pt;}
.y59_c01221{bottom:320.640000pt;}
.y58_c01221{bottom:321.920000pt;}
.y5a_c01221{bottom:322.560000pt;}
.y57_c01221{bottom:323.200000pt;}
.y53_c01221{bottom:359.040000pt;}
.y56_c01221{bottom:359.680000pt;}
.y55_c01221{bottom:360.320000pt;}
.y52_c01221{bottom:360.960000pt;}
.y54_c01221{bottom:361.600000pt;}
.y50_c01221{bottom:396.160000pt;}
.y4f_c01221{bottom:396.800000pt;}
.y4e_c01221{bottom:397.440000pt;}
.y4d_c01221{bottom:398.720000pt;}
.y51_c01221{bottom:399.360000pt;}
.y4c_c01221{bottom:434.560000pt;}
.y4a_c01221{bottom:436.480000pt;}
.y4b_c01221{bottom:437.120000pt;}
.y46_c01221{bottom:472.960000pt;}
.y45_c01221{bottom:473.600000pt;}
.y44_c01221{bottom:474.240000pt;}
.y47_c01221{bottom:474.880000pt;}
.y48_c01221{bottom:475.520000pt;}
.y49_c01221{bottom:476.160000pt;}
.y42_c01221{bottom:511.360000pt;}
.y43_c01221{bottom:512.640000pt;}
.y41_c01221{bottom:513.920000pt;}
.y3e_c01221{bottom:539.520000pt;}
.y3d_c01221{bottom:540.160000pt;}
.y40_c01221{bottom:540.800000pt;}
.y3f_c01221{bottom:542.080000pt;}
.y3a_c01221{bottom:577.280000pt;}
.y39_c01221{bottom:577.920000pt;}
.y38_c01221{bottom:578.560000pt;}
.y3b_c01221{bottom:580.480000pt;}
.y3c_c01221{bottom:581.120000pt;}
.y34_c01221{bottom:615.040000pt;}
.y37_c01221{bottom:616.320000pt;}
.y33_c01221{bottom:616.960000pt;}
.y36_c01221{bottom:618.240000pt;}
.y35_c01221{bottom:618.880000pt;}
.y2d_c01221{bottom:654.080000pt;}
.y2c_c01221{bottom:654.720000pt;}
.y30_c01221{bottom:655.360000pt;}
.y32_c01221{bottom:656.000000pt;}
.y2e_c01221{bottom:656.640000pt;}
.y2f_c01221{bottom:657.280000pt;}
.y31_c01221{bottom:657.920000pt;}
.y28_c01221{bottom:692.480000pt;}
.y27_c01221{bottom:693.120000pt;}
.y2a_c01221{bottom:694.400000pt;}
.y29_c01221{bottom:695.040000pt;}
.y2b_c01221{bottom:695.680000pt;}
.y22_c01221{bottom:730.880000pt;}
.y23_c01221{bottom:731.520000pt;}
.y25_c01221{bottom:732.160000pt;}
.y24_c01221{bottom:734.080000pt;}
.y26_c01221{bottom:734.720000pt;}
.y1c_c01221{bottom:768.640000pt;}
.y1d_c01221{bottom:769.280000pt;}
.y20_c01221{bottom:769.920000pt;}
.y1f_c01221{bottom:770.560000pt;}
.y1e_c01221{bottom:771.840000pt;}
.y21_c01221{bottom:773.760000pt;}
.y16_c01221{bottom:807.040000pt;}
.y17_c01221{bottom:807.680000pt;}
.y19_c01221{bottom:808.320000pt;}
.y1a_c01221{bottom:808.960000pt;}
.y1b_c01221{bottom:809.600000pt;}
.y18_c01221{bottom:810.240000pt;}
.ye_c01221{bottom:844.800000pt;}
.yf_c01221{bottom:845.440000pt;}
.y10_c01221{bottom:846.080000pt;}
.y13_c01221{bottom:846.720000pt;}
.y14_c01221{bottom:847.360000pt;}
.y12_c01221{bottom:848.000000pt;}
.y11_c01221{bottom:848.640000pt;}
.y15_c01221{bottom:849.280000pt;}
.y7_c01221{bottom:881.920000pt;}
.y9_c01221{bottom:883.840000pt;}
.yb_c01221{bottom:885.120000pt;}
.y8_c01221{bottom:885.760000pt;}
.ya_c01221{bottom:886.400000pt;}
.yc_c01221{bottom:887.680000pt;}
.yd_c01221{bottom:888.320000pt;}
.y2_c01221{bottom:920.320000pt;}
.y3_c01221{bottom:923.520000pt;}
.y4_c01221{bottom:924.160000pt;}
.y5_c01221{bottom:924.800000pt;}
.y6_c01221{bottom:925.440000pt;}
.y1_c01221{bottom:999.680000pt;}
.h5_c01221{height:27.645000pt;}
.ha_c01221{height:29.948750pt;}
.h9_c01221{height:36.860000pt;}
.h4_c01221{height:39.163750pt;}
.h7_c01221{height:41.467500pt;}
.h6_c01221{height:43.771250pt;}
.h3_c01221{height:46.075000pt;}
.he_c01221{height:46.587500pt;}
.h8_c01221{height:48.378750pt;}
.hb_c01221{height:50.682500pt;}
.hc_c01221{height:52.986250pt;}
.hd_c01221{height:55.290000pt;}
.h2_c01221{height:57.593750pt;}
.h0_c01221{height:1025.280000pt;}
.h1_c01221{height:1025.333333pt;}
.w0_c01221{width:691.840000pt;}
.w1_c01221{width:692.000000pt;}
.x0_c01221{left:0.000000pt;}
.x2_c01221{left:59.520000pt;}
.xe_c01221{left:130.560000pt;}
.x3_c01221{left:131.840000pt;}
.x18_c01221{left:142.080000pt;}
.x14_c01221{left:178.560000pt;}
.xf_c01221{left:206.080000pt;}
.x4_c01221{left:207.360000pt;}
.x15_c01221{left:227.200000pt;}
.x17_c01221{left:254.080000pt;}
.x5_c01221{left:255.360000pt;}
.x10_c01221{left:263.680000pt;}
.xb_c01221{left:264.960000pt;}
.x6_c01221{left:303.360000pt;}
.xc_c01221{left:312.960000pt;}
.x13_c01221{left:418.560000pt;}
.x11_c01221{left:476.160000pt;}
.x7_c01221{left:477.440000pt;}
.x8_c01221{left:554.880000pt;}
.x9_c01221{left:583.680000pt;}
.x1_c01221{left:606.080000pt;}
.xa_c01221{left:613.120000pt;}
.xd_c01221{left:622.080000pt;}
.x12_c01221{left:640.000000pt;}
.x16_c01221{left:641.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_70b6f8a6fb526a91edd25fa9.woff2')format("woff");}.ff1_c01222{font-family:ff1_c01222;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4a_c01222{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m29_c01222{transform:matrix(0.145825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145825,0.000000,0.000000,0.250000,0,0);}
.m5b_c01222{transform:matrix(0.160775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160775,0.000000,0.000000,0.250000,0,0);}
.m3d_c01222{transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);}
.m2a_c01222{transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);}
.m24_c01222{transform:matrix(0.206800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206800,0.000000,0.000000,0.250000,0,0);}
.m41_c01222{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m59_c01222{transform:matrix(0.226825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226825,0.000000,0.000000,0.250000,0,0);}
.m2f_c01222{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m2d_c01222{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m1c_c01222{transform:matrix(0.242325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242325,0.000000,0.000000,0.250000,0,0);}
.m35_c01222{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m3b_c01222{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m37_c01222{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01222{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);}
.m36_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);}
.m5a_c01222{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m19_c01222{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);}
.m33_c01222{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);}
.m58_c01222{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m18_c01222{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);}
.m4e_c01222{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01222{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01222{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01222{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);}
.m25_c01222{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);}
.m40_c01222{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01222{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m20_c01222{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m32_c01222{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m9_c01222{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m39_c01222{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m27_c01222{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m6_c01222{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01222{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1_c01222{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01222{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m13_c01222{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m0_c01222{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01222{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01222{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.ma_c01222{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m17_c01222{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01222{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);}
.m3e_c01222{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);}
.m38_c01222{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m31_c01222{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);}
.m21_c01222{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m5_c01222{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);}
.m42_c01222{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.mf_c01222{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);}
.m50_c01222{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01222{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);}
.m49_c01222{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);}
.md_c01222{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m5e_c01222{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m2_c01222{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);}
.m57_c01222{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);}
.m28_c01222{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);}
.m30_c01222{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m56_c01222{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);}
.m34_c01222{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m5d_c01222{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);}
.m7_c01222{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m10_c01222{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01222{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m14_c01222{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);}
.m8_c01222{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);}
.m45_c01222{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);}
.m54_c01222{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m23_c01222{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m26_c01222{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);}
.m15_c01222{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01222{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);}
.m4c_c01222{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.me_c01222{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);}
.m44_c01222{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.mc_c01222{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m3_c01222{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.mb_c01222{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);}
.m4_c01222{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m11_c01222{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m22_c01222{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);}
.m5c_c01222{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);}
.m48_c01222{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01222{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m55_c01222{transform:matrix(0.707500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.707500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.707500,0.000000,0.000000,0.250000,0,0);}
.m52_c01222{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m12_c01222{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);}
.m53_c01222{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.m16_c01222{transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);}
.m51_c01222{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.m46_c01222{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m43_c01222{transform:matrix(0.810000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.810000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.810000,0.000000,0.000000,0.250000,0,0);}
.m47_c01222{transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);}
.v1_c01222{vertical-align:-5.760000px;}
.v0_c01222{vertical-align:0.000000px;}
.ls0_c01222{letter-spacing:0.000000px;}
.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;}
}
.ws3_c01222{word-spacing:0.000000px;}
.ws1_c01222{word-spacing:9.655891px;}
.ws2_c01222{word-spacing:30.368157px;}
.ws0_c01222{word-spacing:51.006480px;}
.fc0_c01222{color:transparent;}
.fs11_c01222{font-size:2.880000px;}
.fs10_c01222{font-size:17.280000px;}
.fsf_c01222{font-size:25.920000px;}
.fs3_c01222{font-size:34.560000px;}
.fs8_c01222{font-size:37.440000px;}
.fsd_c01222{font-size:46.080000px;}
.fs5_c01222{font-size:48.960000px;}
.fs2_c01222{font-size:51.840000px;}
.fs9_c01222{font-size:54.720000px;}
.fs4_c01222{font-size:57.600000px;}
.fs7_c01222{font-size:60.480000px;}
.fs0_c01222{font-size:63.360000px;}
.fs6_c01222{font-size:66.240000px;}
.fs1_c01222{font-size:69.120000px;}
.fsc_c01222{font-size:72.000000px;}
.fsb_c01222{font-size:74.880000px;}
.fsa_c01222{font-size:77.760000px;}
.fs12_c01222{font-size:80.640000px;}
.fse_c01222{font-size:103.680000px;}
.y0_c01222{bottom:0.000000px;}
.ya5_c01222{bottom:125.280000px;}
.y61_c01222{bottom:126.000000px;}
.y60_c01222{bottom:127.440000px;}
.y5f_c01222{bottom:131.040000px;}
.y5e_c01222{bottom:133.200000px;}
.yb4_c01222{bottom:145.440000px;}
.yb3_c01222{bottom:146.160000px;}
.ya4_c01222{bottom:146.880000px;}
.ya2_c01222{bottom:147.600000px;}
.y5d_c01222{bottom:148.320000px;}
.y5c_c01222{bottom:149.040000px;}
.ya3_c01222{bottom:149.760000px;}
.y5b_c01222{bottom:151.200000px;}
.y5a_c01222{bottom:152.640000px;}
.yb2_c01222{bottom:167.040000px;}
.yb1_c01222{bottom:167.760000px;}
.ya1_c01222{bottom:168.480000px;}
.y59_c01222{bottom:169.200000px;}
.y58_c01222{bottom:170.640000px;}
.ya0_c01222{bottom:171.360000px;}
.y57_c01222{bottom:172.800000px;}
.y56_c01222{bottom:174.960000px;}
.yb0_c01222{bottom:188.640000px;}
.y9f_c01222{bottom:189.360000px;}
.y9d_c01222{bottom:190.080000px;}
.y9e_c01222{bottom:190.800000px;}
.y55_c01222{bottom:191.520000px;}
.y54_c01222{bottom:192.960000px;}
.y53_c01222{bottom:193.680000px;}
.y52_c01222{bottom:197.280000px;}
.yaf_c01222{bottom:209.520000px;}
.yae_c01222{bottom:210.240000px;}
.y9b_c01222{bottom:210.960000px;}
.y51_c01222{bottom:211.680000px;}
.y9c_c01222{bottom:212.400000px;}
.y50_c01222{bottom:213.120000px;}
.y4f_c01222{bottom:215.280000px;}
.y4e_c01222{bottom:216.000000px;}
.yad_c01222{bottom:231.840000px;}
.y9a_c01222{bottom:232.560000px;}
.y99_c01222{bottom:233.280000px;}
.y4d_c01222{bottom:234.720000px;}
.y4c_c01222{bottom:238.320000px;}
.y4b_c01222{bottom:239.760000px;}
.yac_c01222{bottom:253.440000px;}
.y4a_c01222{bottom:254.160000px;}
.y97_c01222{bottom:254.880000px;}
.y49_c01222{bottom:255.600000px;}
.y98_c01222{bottom:256.320000px;}
.y47_c01222{bottom:257.760000px;}
.y48_c01222{bottom:258.480000px;}
.yab_c01222{bottom:274.320000px;}
.y95_c01222{bottom:275.040000px;}
.y94_c01222{bottom:275.760000px;}
.y46_c01222{bottom:276.480000px;}
.y96_c01222{bottom:277.920000px;}
.y44_c01222{bottom:278.640000px;}
.y45_c01222{bottom:279.360000px;}
.y43_c01222{bottom:280.080000px;}
.yaa_c01222{bottom:296.640000px;}
.y93_c01222{bottom:297.360000px;}
.y42_c01222{bottom:298.080000px;}
.y41_c01222{bottom:298.800000px;}
.y92_c01222{bottom:299.520000px;}
.y40_c01222{bottom:301.680000px;}
.y3f_c01222{bottom:318.960000px;}
.y3e_c01222{bottom:320.400000px;}
.y3c_c01222{bottom:321.840000px;}
.y3d_c01222{bottom:322.560000px;}
.ya8_c01222{bottom:325.440000px;}
.ya9_c01222{bottom:330.480000px;}
.ya7_c01222{bottom:331.200000px;}
.ya6_c01222{bottom:332.640000px;}
.y3b_c01222{bottom:341.280000px;}
.y39_c01222{bottom:342.720000px;}
.y3a_c01222{bottom:343.440000px;}
.y38_c01222{bottom:346.320000px;}
.y7c_c01222{bottom:360.720000px;}
.y7a_c01222{bottom:361.440000px;}
.y37_c01222{bottom:362.160000px;}
.y36_c01222{bottom:362.880000px;}
.y79_c01222{bottom:363.600000px;}
.y7b_c01222{bottom:364.320000px;}
.y35_c01222{bottom:366.480000px;}
.y33_c01222{bottom:392.400000px;}
.y78_c01222{bottom:393.120000px;}
.y77_c01222{bottom:394.560000px;}
.y34_c01222{bottom:396.000000px;}
.y32_c01222{bottom:397.440000px;}
.y6e_c01222{bottom:426.960000px;}
.y76_c01222{bottom:427.680000px;}
.y6f_c01222{bottom:428.400000px;}
.y75_c01222{bottom:437.040000px;}
.y70_c01222{bottom:439.200000px;}
.y71_c01222{bottom:439.920000px;}
.y72_c01222{bottom:442.800000px;}
.y73_c01222{bottom:447.840000px;}
.y74_c01222{bottom:448.560000px;}
.y91_c01222{bottom:458.640000px;}
.y6d_c01222{bottom:459.360000px;}
.y6c_c01222{bottom:460.080000px;}
.y90_c01222{bottom:460.800000px;}
.y6b_c01222{bottom:461.520000px;}
.y6a_c01222{bottom:489.600000px;}
.y66_c01222{bottom:490.320000px;}
.y65_c01222{bottom:491.040000px;}
.y69_c01222{bottom:492.480000px;}
.y67_c01222{bottom:493.200000px;}
.y68_c01222{bottom:495.360000px;}
.y64_c01222{bottom:514.800000px;}
.y63_c01222{bottom:515.520000px;}
.y31_c01222{bottom:552.960000px;}
.y8f_c01222{bottom:555.120000px;}
.y2f_c01222{bottom:555.840000px;}
.y30_c01222{bottom:557.280000px;}
.y2e_c01222{bottom:596.880000px;}
.y8d_c01222{bottom:598.320000px;}
.y2d_c01222{bottom:599.040000px;}
.y62_c01222{bottom:600.480000px;}
.y8e_c01222{bottom:601.200000px;}
.y2c_c01222{bottom:632.160000px;}
.y29_c01222{bottom:639.360000px;}
.y28_c01222{bottom:641.520000px;}
.y2a_c01222{bottom:642.960000px;}
.y2b_c01222{bottom:643.680000px;}
.y24_c01222{bottom:681.840000px;}
.y27_c01222{bottom:682.560000px;}
.y23_c01222{bottom:684.720000px;}
.y25_c01222{bottom:685.440000px;}
.y26_c01222{bottom:686.160000px;}
.y8c_c01222{bottom:686.880000px;}
.y22_c01222{bottom:724.320000px;}
.y21_c01222{bottom:725.760000px;}
.y8a_c01222{bottom:726.480000px;}
.y1e_c01222{bottom:727.200000px;}
.y8b_c01222{bottom:729.360000px;}
.y20_c01222{bottom:766.800000px;}
.y1f_c01222{bottom:768.960000px;}
.y1d_c01222{bottom:770.400000px;}
.y89_c01222{bottom:773.280000px;}
.y1a_c01222{bottom:810.000000px;}
.y19_c01222{bottom:811.440000px;}
.y1c_c01222{bottom:813.600000px;}
.y87_c01222{bottom:814.320000px;}
.y88_c01222{bottom:815.760000px;}
.y16_c01222{bottom:854.640000px;}
.y1b_c01222{bottom:856.800000px;}
.y17_c01222{bottom:857.520000px;}
.y18_c01222{bottom:858.240000px;}
.y86_c01222{bottom:858.960000px;}
.y11_c01222{bottom:897.120000px;}
.y12_c01222{bottom:897.840000px;}
.y85_c01222{bottom:899.280000px;}
.y15_c01222{bottom:900.000000px;}
.y13_c01222{bottom:900.720000px;}
.y14_c01222{bottom:901.440000px;}
.y84_c01222{bottom:902.160000px;}
.yc_c01222{bottom:940.320000px;}
.yd_c01222{bottom:941.040000px;}
.yf_c01222{bottom:941.760000px;}
.y83_c01222{bottom:943.200000px;}
.ye_c01222{bottom:943.920000px;}
.y10_c01222{bottom:944.640000px;}
.y82_c01222{bottom:945.360000px;}
.y7_c01222{bottom:982.800000px;}
.y8_c01222{bottom:983.520000px;}
.y9_c01222{bottom:984.240000px;}
.y80_c01222{bottom:986.400000px;}
.ya_c01222{bottom:987.120000px;}
.yb_c01222{bottom:987.840000px;}
.y81_c01222{bottom:988.560000px;}
.y1_c01222{bottom:1026.000000px;}
.y3_c01222{bottom:1026.720000px;}
.y2_c01222{bottom:1027.440000px;}
.y6_c01222{bottom:1029.600000px;}
.y7e_c01222{bottom:1030.320000px;}
.y4_c01222{bottom:1031.040000px;}
.y5_c01222{bottom:1031.760000px;}
.y7f_c01222{bottom:1032.480000px;}
.y7d_c01222{bottom:1074.240000px;}
.h13_c01222{height:2.591719px;}
.h12_c01222{height:15.550313px;}
.h11_c01222{height:23.325469px;}
.h5_c01222{height:31.100625px;}
.ha_c01222{height:33.692344px;}
.hf_c01222{height:41.467500px;}
.h7_c01222{height:44.059219px;}
.h4_c01222{height:46.650937px;}
.hb_c01222{height:49.242656px;}
.h6_c01222{height:51.834375px;}
.h9_c01222{height:54.426094px;}
.h2_c01222{height:57.017812px;}
.h8_c01222{height:59.609531px;}
.h3_c01222{height:62.201250px;}
.he_c01222{height:64.792969px;}
.hd_c01222{height:67.384687px;}
.hc_c01222{height:69.976406px;}
.h14_c01222{height:72.568125px;}
.h10_c01222{height:93.301875px;}
.h0_c01222{height:1153.440000px;}
.h1_c01222{height:1153.500000px;}
.w0_c01222{width:778.320000px;}
.w1_c01222{width:778.500000px;}
.x0_c01222{left:0.000000px;}
.x1_c01222{left:62.640000px;}
.x21_c01222{left:64.080000px;}
.x1c_c01222{left:71.280000px;}
.x18_c01222{left:73.440000px;}
.x15_c01222{left:92.160000px;}
.x1d_c01222{left:102.240000px;}
.x19_c01222{left:103.680000px;}
.x10_c01222{left:113.040000px;}
.x1e_c01222{left:133.920000px;}
.xe_c01222{left:142.560000px;}
.x2_c01222{left:144.000000px;}
.x1b_c01222{left:155.520000px;}
.x22_c01222{left:156.960000px;}
.x16_c01222{left:164.880000px;}
.x34_c01222{left:186.480000px;}
.x17_c01222{left:207.360000px;}
.x1f_c01222{left:208.800000px;}
.x1a_c01222{left:218.880000px;}
.x35_c01222{left:220.320000px;}
.x3_c01222{left:227.520000px;}
.x7_c01222{left:228.960000px;}
.xf_c01222{left:239.040000px;}
.x20_c01222{left:240.480000px;}
.x13_c01222{left:248.400000px;}
.x25_c01222{left:250.560000px;}
.x23_c01222{left:261.360000px;}
.x36_c01222{left:272.160000px;}
.x8_c01222{left:282.960000px;}
.x11_c01222{left:291.600000px;}
.x4_c01222{left:293.040000px;}
.x33_c01222{left:302.400000px;}
.x14_c01222{left:303.840000px;}
.x24_c01222{left:314.640000px;}
.x4a_c01222{left:326.160000px;}
.x9_c01222{left:336.960000px;}
.xb_c01222{left:346.320000px;}
.x5_c01222{left:347.760000px;}
.x4b_c01222{left:358.560000px;}
.x26_c01222{left:369.360000px;}
.x12_c01222{left:378.720000px;}
.xa_c01222{left:380.160000px;}
.x2c_c01222{left:390.960000px;}
.xc_c01222{left:401.760000px;}
.x2d_c01222{left:412.560000px;}
.x2f_c01222{left:421.200000px;}
.x37_c01222{left:422.640000px;}
.x27_c01222{left:433.440000px;}
.x38_c01222{left:454.320000px;}
.x2e_c01222{left:456.480000px;}
.x4c_c01222{left:466.560000px;}
.x28_c01222{left:488.880000px;}
.x31_c01222{left:498.960000px;}
.x49_c01222{left:510.480000px;}
.x29_c01222{left:519.840000px;}
.x30_c01222{left:530.640000px;}
.x6_c01222{left:532.080000px;}
.xd_c01222{left:542.160000px;}
.x2a_c01222{left:554.400000px;}
.x32_c01222{left:565.200000px;}
.x43_c01222{left:585.360000px;}
.x2b_c01222{left:596.160000px;}
.x4e_c01222{left:597.600000px;}
.x46_c01222{left:608.400000px;}
.x3a_c01222{left:618.480000px;}
.x45_c01222{left:619.920000px;}
.x3f_c01222{left:630.720000px;}
.x48_c01222{left:639.360000px;}
.x39_c01222{left:648.000000px;}
.x47_c01222{left:650.880000px;}
.x3b_c01222{left:652.320000px;}
.x40_c01222{left:663.120000px;}
.x4d_c01222{left:673.920000px;}
.x3c_c01222{left:684.720000px;}
.x44_c01222{left:694.080000px;}
.x3d_c01222{left:695.520000px;}
.x41_c01222{left:706.320000px;}
.x3e_c01222{left:715.680000px;}
.x42_c01222{left:726.480000px;}
@media print{
.v1_c01222{vertical-align:-5.120000pt;}
.v0_c01222{vertical-align:0.000000pt;}
.ls0_c01222{letter-spacing:0.000000pt;}
.ws3_c01222{word-spacing:0.000000pt;}
.ws1_c01222{word-spacing:8.583014pt;}
.ws2_c01222{word-spacing:26.993917pt;}
.ws0_c01222{word-spacing:45.339093pt;}
.fs11_c01222{font-size:2.560000pt;}
.fs10_c01222{font-size:15.360000pt;}
.fsf_c01222{font-size:23.040000pt;}
.fs3_c01222{font-size:30.720000pt;}
.fs8_c01222{font-size:33.280000pt;}
.fsd_c01222{font-size:40.960000pt;}
.fs5_c01222{font-size:43.520000pt;}
.fs2_c01222{font-size:46.080000pt;}
.fs9_c01222{font-size:48.640000pt;}
.fs4_c01222{font-size:51.200000pt;}
.fs7_c01222{font-size:53.760000pt;}
.fs0_c01222{font-size:56.320000pt;}
.fs6_c01222{font-size:58.880000pt;}
.fs1_c01222{font-size:61.440000pt;}
.fsc_c01222{font-size:64.000000pt;}
.fsb_c01222{font-size:66.560000pt;}
.fsa_c01222{font-size:69.120000pt;}
.fs12_c01222{font-size:71.680000pt;}
.fse_c01222{font-size:92.160000pt;}
.y0_c01222{bottom:0.000000pt;}
.ya5_c01222{bottom:111.360000pt;}
.y61_c01222{bottom:112.000000pt;}
.y60_c01222{bottom:113.280000pt;}
.y5f_c01222{bottom:116.480000pt;}
.y5e_c01222{bottom:118.400000pt;}
.yb4_c01222{bottom:129.280000pt;}
.yb3_c01222{bottom:129.920000pt;}
.ya4_c01222{bottom:130.560000pt;}
.ya2_c01222{bottom:131.200000pt;}
.y5d_c01222{bottom:131.840000pt;}
.y5c_c01222{bottom:132.480000pt;}
.ya3_c01222{bottom:133.120000pt;}
.y5b_c01222{bottom:134.400000pt;}
.y5a_c01222{bottom:135.680000pt;}
.yb2_c01222{bottom:148.480000pt;}
.yb1_c01222{bottom:149.120000pt;}
.ya1_c01222{bottom:149.760000pt;}
.y59_c01222{bottom:150.400000pt;}
.y58_c01222{bottom:151.680000pt;}
.ya0_c01222{bottom:152.320000pt;}
.y57_c01222{bottom:153.600000pt;}
.y56_c01222{bottom:155.520000pt;}
.yb0_c01222{bottom:167.680000pt;}
.y9f_c01222{bottom:168.320000pt;}
.y9d_c01222{bottom:168.960000pt;}
.y9e_c01222{bottom:169.600000pt;}
.y55_c01222{bottom:170.240000pt;}
.y54_c01222{bottom:171.520000pt;}
.y53_c01222{bottom:172.160000pt;}
.y52_c01222{bottom:175.360000pt;}
.yaf_c01222{bottom:186.240000pt;}
.yae_c01222{bottom:186.880000pt;}
.y9b_c01222{bottom:187.520000pt;}
.y51_c01222{bottom:188.160000pt;}
.y9c_c01222{bottom:188.800000pt;}
.y50_c01222{bottom:189.440000pt;}
.y4f_c01222{bottom:191.360000pt;}
.y4e_c01222{bottom:192.000000pt;}
.yad_c01222{bottom:206.080000pt;}
.y9a_c01222{bottom:206.720000pt;}
.y99_c01222{bottom:207.360000pt;}
.y4d_c01222{bottom:208.640000pt;}
.y4c_c01222{bottom:211.840000pt;}
.y4b_c01222{bottom:213.120000pt;}
.yac_c01222{bottom:225.280000pt;}
.y4a_c01222{bottom:225.920000pt;}
.y97_c01222{bottom:226.560000pt;}
.y49_c01222{bottom:227.200000pt;}
.y98_c01222{bottom:227.840000pt;}
.y47_c01222{bottom:229.120000pt;}
.y48_c01222{bottom:229.760000pt;}
.yab_c01222{bottom:243.840000pt;}
.y95_c01222{bottom:244.480000pt;}
.y94_c01222{bottom:245.120000pt;}
.y46_c01222{bottom:245.760000pt;}
.y96_c01222{bottom:247.040000pt;}
.y44_c01222{bottom:247.680000pt;}
.y45_c01222{bottom:248.320000pt;}
.y43_c01222{bottom:248.960000pt;}
.yaa_c01222{bottom:263.680000pt;}
.y93_c01222{bottom:264.320000pt;}
.y42_c01222{bottom:264.960000pt;}
.y41_c01222{bottom:265.600000pt;}
.y92_c01222{bottom:266.240000pt;}
.y40_c01222{bottom:268.160000pt;}
.y3f_c01222{bottom:283.520000pt;}
.y3e_c01222{bottom:284.800000pt;}
.y3c_c01222{bottom:286.080000pt;}
.y3d_c01222{bottom:286.720000pt;}
.ya8_c01222{bottom:289.280000pt;}
.ya9_c01222{bottom:293.760000pt;}
.ya7_c01222{bottom:294.400000pt;}
.ya6_c01222{bottom:295.680000pt;}
.y3b_c01222{bottom:303.360000pt;}
.y39_c01222{bottom:304.640000pt;}
.y3a_c01222{bottom:305.280000pt;}
.y38_c01222{bottom:307.840000pt;}
.y7c_c01222{bottom:320.640000pt;}
.y7a_c01222{bottom:321.280000pt;}
.y37_c01222{bottom:321.920000pt;}
.y36_c01222{bottom:322.560000pt;}
.y79_c01222{bottom:323.200000pt;}
.y7b_c01222{bottom:323.840000pt;}
.y35_c01222{bottom:325.760000pt;}
.y33_c01222{bottom:348.800000pt;}
.y78_c01222{bottom:349.440000pt;}
.y77_c01222{bottom:350.720000pt;}
.y34_c01222{bottom:352.000000pt;}
.y32_c01222{bottom:353.280000pt;}
.y6e_c01222{bottom:379.520000pt;}
.y76_c01222{bottom:380.160000pt;}
.y6f_c01222{bottom:380.800000pt;}
.y75_c01222{bottom:388.480000pt;}
.y70_c01222{bottom:390.400000pt;}
.y71_c01222{bottom:391.040000pt;}
.y72_c01222{bottom:393.600000pt;}
.y73_c01222{bottom:398.080000pt;}
.y74_c01222{bottom:398.720000pt;}
.y91_c01222{bottom:407.680000pt;}
.y6d_c01222{bottom:408.320000pt;}
.y6c_c01222{bottom:408.960000pt;}
.y90_c01222{bottom:409.600000pt;}
.y6b_c01222{bottom:410.240000pt;}
.y6a_c01222{bottom:435.200000pt;}
.y66_c01222{bottom:435.840000pt;}
.y65_c01222{bottom:436.480000pt;}
.y69_c01222{bottom:437.760000pt;}
.y67_c01222{bottom:438.400000pt;}
.y68_c01222{bottom:440.320000pt;}
.y64_c01222{bottom:457.600000pt;}
.y63_c01222{bottom:458.240000pt;}
.y31_c01222{bottom:491.520000pt;}
.y8f_c01222{bottom:493.440000pt;}
.y2f_c01222{bottom:494.080000pt;}
.y30_c01222{bottom:495.360000pt;}
.y2e_c01222{bottom:530.560000pt;}
.y8d_c01222{bottom:531.840000pt;}
.y2d_c01222{bottom:532.480000pt;}
.y62_c01222{bottom:533.760000pt;}
.y8e_c01222{bottom:534.400000pt;}
.y2c_c01222{bottom:561.920000pt;}
.y29_c01222{bottom:568.320000pt;}
.y28_c01222{bottom:570.240000pt;}
.y2a_c01222{bottom:571.520000pt;}
.y2b_c01222{bottom:572.160000pt;}
.y24_c01222{bottom:606.080000pt;}
.y27_c01222{bottom:606.720000pt;}
.y23_c01222{bottom:608.640000pt;}
.y25_c01222{bottom:609.280000pt;}
.y26_c01222{bottom:609.920000pt;}
.y8c_c01222{bottom:610.560000pt;}
.y22_c01222{bottom:643.840000pt;}
.y21_c01222{bottom:645.120000pt;}
.y8a_c01222{bottom:645.760000pt;}
.y1e_c01222{bottom:646.400000pt;}
.y8b_c01222{bottom:648.320000pt;}
.y20_c01222{bottom:681.600000pt;}
.y1f_c01222{bottom:683.520000pt;}
.y1d_c01222{bottom:684.800000pt;}
.y89_c01222{bottom:687.360000pt;}
.y1a_c01222{bottom:720.000000pt;}
.y19_c01222{bottom:721.280000pt;}
.y1c_c01222{bottom:723.200000pt;}
.y87_c01222{bottom:723.840000pt;}
.y88_c01222{bottom:725.120000pt;}
.y16_c01222{bottom:759.680000pt;}
.y1b_c01222{bottom:761.600000pt;}
.y17_c01222{bottom:762.240000pt;}
.y18_c01222{bottom:762.880000pt;}
.y86_c01222{bottom:763.520000pt;}
.y11_c01222{bottom:797.440000pt;}
.y12_c01222{bottom:798.080000pt;}
.y85_c01222{bottom:799.360000pt;}
.y15_c01222{bottom:800.000000pt;}
.y13_c01222{bottom:800.640000pt;}
.y14_c01222{bottom:801.280000pt;}
.y84_c01222{bottom:801.920000pt;}
.yc_c01222{bottom:835.840000pt;}
.yd_c01222{bottom:836.480000pt;}
.yf_c01222{bottom:837.120000pt;}
.y83_c01222{bottom:838.400000pt;}
.ye_c01222{bottom:839.040000pt;}
.y10_c01222{bottom:839.680000pt;}
.y82_c01222{bottom:840.320000pt;}
.y7_c01222{bottom:873.600000pt;}
.y8_c01222{bottom:874.240000pt;}
.y9_c01222{bottom:874.880000pt;}
.y80_c01222{bottom:876.800000pt;}
.ya_c01222{bottom:877.440000pt;}
.yb_c01222{bottom:878.080000pt;}
.y81_c01222{bottom:878.720000pt;}
.y1_c01222{bottom:912.000000pt;}
.y3_c01222{bottom:912.640000pt;}
.y2_c01222{bottom:913.280000pt;}
.y6_c01222{bottom:915.200000pt;}
.y7e_c01222{bottom:915.840000pt;}
.y4_c01222{bottom:916.480000pt;}
.y5_c01222{bottom:917.120000pt;}
.y7f_c01222{bottom:917.760000pt;}
.y7d_c01222{bottom:954.880000pt;}
.h13_c01222{height:2.303750pt;}
.h12_c01222{height:13.822500pt;}
.h11_c01222{height:20.733750pt;}
.h5_c01222{height:27.645000pt;}
.ha_c01222{height:29.948750pt;}
.hf_c01222{height:36.860000pt;}
.h7_c01222{height:39.163750pt;}
.h4_c01222{height:41.467500pt;}
.hb_c01222{height:43.771250pt;}
.h6_c01222{height:46.075000pt;}
.h9_c01222{height:48.378750pt;}
.h2_c01222{height:50.682500pt;}
.h8_c01222{height:52.986250pt;}
.h3_c01222{height:55.290000pt;}
.he_c01222{height:57.593750pt;}
.hd_c01222{height:59.897500pt;}
.hc_c01222{height:62.201250pt;}
.h14_c01222{height:64.505000pt;}
.h10_c01222{height:82.935000pt;}
.h0_c01222{height:1025.280000pt;}
.h1_c01222{height:1025.333333pt;}
.w0_c01222{width:691.840000pt;}
.w1_c01222{width:692.000000pt;}
.x0_c01222{left:0.000000pt;}
.x1_c01222{left:55.680000pt;}
.x21_c01222{left:56.960000pt;}
.x1c_c01222{left:63.360000pt;}
.x18_c01222{left:65.280000pt;}
.x15_c01222{left:81.920000pt;}
.x1d_c01222{left:90.880000pt;}
.x19_c01222{left:92.160000pt;}
.x10_c01222{left:100.480000pt;}
.x1e_c01222{left:119.040000pt;}
.xe_c01222{left:126.720000pt;}
.x2_c01222{left:128.000000pt;}
.x1b_c01222{left:138.240000pt;}
.x22_c01222{left:139.520000pt;}
.x16_c01222{left:146.560000pt;}
.x34_c01222{left:165.760000pt;}
.x17_c01222{left:184.320000pt;}
.x1f_c01222{left:185.600000pt;}
.x1a_c01222{left:194.560000pt;}
.x35_c01222{left:195.840000pt;}
.x3_c01222{left:202.240000pt;}
.x7_c01222{left:203.520000pt;}
.xf_c01222{left:212.480000pt;}
.x20_c01222{left:213.760000pt;}
.x13_c01222{left:220.800000pt;}
.x25_c01222{left:222.720000pt;}
.x23_c01222{left:232.320000pt;}
.x36_c01222{left:241.920000pt;}
.x8_c01222{left:251.520000pt;}
.x11_c01222{left:259.200000pt;}
.x4_c01222{left:260.480000pt;}
.x33_c01222{left:268.800000pt;}
.x14_c01222{left:270.080000pt;}
.x24_c01222{left:279.680000pt;}
.x4a_c01222{left:289.920000pt;}
.x9_c01222{left:299.520000pt;}
.xb_c01222{left:307.840000pt;}
.x5_c01222{left:309.120000pt;}
.x4b_c01222{left:318.720000pt;}
.x26_c01222{left:328.320000pt;}
.x12_c01222{left:336.640000pt;}
.xa_c01222{left:337.920000pt;}
.x2c_c01222{left:347.520000pt;}
.xc_c01222{left:357.120000pt;}
.x2d_c01222{left:366.720000pt;}
.x2f_c01222{left:374.400000pt;}
.x37_c01222{left:375.680000pt;}
.x27_c01222{left:385.280000pt;}
.x38_c01222{left:403.840000pt;}
.x2e_c01222{left:405.760000pt;}
.x4c_c01222{left:414.720000pt;}
.x28_c01222{left:434.560000pt;}
.x31_c01222{left:443.520000pt;}
.x49_c01222{left:453.760000pt;}
.x29_c01222{left:462.080000pt;}
.x30_c01222{left:471.680000pt;}
.x6_c01222{left:472.960000pt;}
.xd_c01222{left:481.920000pt;}
.x2a_c01222{left:492.800000pt;}
.x32_c01222{left:502.400000pt;}
.x43_c01222{left:520.320000pt;}
.x2b_c01222{left:529.920000pt;}
.x4e_c01222{left:531.200000pt;}
.x46_c01222{left:540.800000pt;}
.x3a_c01222{left:549.760000pt;}
.x45_c01222{left:551.040000pt;}
.x3f_c01222{left:560.640000pt;}
.x48_c01222{left:568.320000pt;}
.x39_c01222{left:576.000000pt;}
.x47_c01222{left:578.560000pt;}
.x3b_c01222{left:579.840000pt;}
.x40_c01222{left:589.440000pt;}
.x4d_c01222{left:599.040000pt;}
.x3c_c01222{left:608.640000pt;}
.x44_c01222{left:616.960000pt;}
.x3d_c01222{left:618.240000pt;}
.x41_c01222{left:627.840000pt;}
.x3e_c01222{left:636.160000pt;}
.x42_c01222{left:645.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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;}
@font-face{font-family:ff1_c01223;src:url('chunks/assets/font_6385de482cf4b8d175ae2000.woff2')format("woff");}.ff1_c01223{font-family:ff1_c01223;line-height:1.109863;font-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_c01223{transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);}
.m1a_c01223{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);}
.m19_c01223{transform:matrix(0.232075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232075,0.000000,0.000000,0.250000,0,0);}
.me_c01223{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01223{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m4d_c01223{transform:matrix(0.248575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248575,0.000000,0.000000,0.250000,0,0);}
.m0_c01223{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01223{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);}
.m3d_c01223{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m13_c01223{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_c01223{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m7_c01223{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);}
.m45_c01223{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m4_c01223{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01223{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);}
.m2f_c01223{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);}
.m27_c01223{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01223{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m10_c01223{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m11_c01223{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mf_c01223{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m24_c01223{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m30_c01223{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m4a_c01223{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m5_c01223{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mc_c01223{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m15_c01223{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m29_c01223{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m35_c01223{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01223{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m18_c01223{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m32_c01223{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m25_c01223{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01223{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m20_c01223{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);}
.m2d_c01223{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01223{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m14_c01223{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);}
.m3c_c01223{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m12_c01223{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.md_c01223{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m38_c01223{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m1_c01223{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m34_c01223{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_c01223{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01223{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);}
.m6_c01223{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m8_c01223{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01223{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);}
.m1d_c01223{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);}
.m26_c01223{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01223{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);}
.m41_c01223{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);}
.m23_c01223{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);}
.m39_c01223{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);}
.m47_c01223{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m49_c01223{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m2_c01223{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);}
.m21_c01223{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_c01223{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m9_c01223{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);}
.m3a_c01223{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m40_c01223{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);}
.m2b_c01223{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);}
.m1f_c01223{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01223{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01223{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m36_c01223{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m37_c01223{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m48_c01223{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01223{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m28_c01223{transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);}
.m31_c01223{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m16_c01223{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m46_c01223{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.m43_c01223{transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);}
.m22_c01223{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.m44_c01223{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.v0_c01223{vertical-align:0.000000px;}
.v1_c01223{vertical-align:2.880000px;}
.ls0_c01223{letter-spacing:0.000000px;}
.sc__c01223{text-shadow:none;}
.sc0_c01223{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01223{-webkit-text-stroke:0px transparent;}
.sc0_c01223{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01223{word-spacing:0.000000px;}
.ws0_c01223{word-spacing:10.267200px;}
.fc0_c01223{color:transparent;}
.fsf_c01223{font-size:17.280000px;}
.fse_c01223{font-size:34.560000px;}
.fs8_c01223{font-size:37.440000px;}
.fs2_c01223{font-size:43.200000px;}
.fsc_c01223{font-size:46.080000px;}
.fs7_c01223{font-size:48.960000px;}
.fs0_c01223{font-size:51.840000px;}
.fs5_c01223{font-size:54.720000px;}
.fs9_c01223{font-size:57.600000px;}
.fs1_c01223{font-size:60.480000px;}
.fs3_c01223{font-size:63.360000px;}
.fsb_c01223{font-size:66.240000px;}
.fsa_c01223{font-size:69.120000px;}
.fsd_c01223{font-size:72.000000px;}
.fs6_c01223{font-size:74.880000px;}
.fs4_c01223{font-size:77.760000px;}
.y0_c01223{bottom:0.000000px;}
.y7b_c01223{bottom:102.960000px;}
.y7e_c01223{bottom:103.680000px;}
.y79_c01223{bottom:104.400000px;}
.y7d_c01223{bottom:105.120000px;}
.y7a_c01223{bottom:106.560000px;}
.y7c_c01223{bottom:107.280000px;}
.y78_c01223{bottom:110.160000px;}
.y77_c01223{bottom:146.160000px;}
.y74_c01223{bottom:146.880000px;}
.y76_c01223{bottom:147.600000px;}
.y75_c01223{bottom:149.760000px;}
.y73_c01223{bottom:151.200000px;}
.y72_c01223{bottom:189.360000px;}
.y6f_c01223{bottom:190.080000px;}
.y71_c01223{bottom:190.800000px;}
.y70_c01223{bottom:192.960000px;}
.y6e_c01223{bottom:194.400000px;}
.y6a_c01223{bottom:232.560000px;}
.y6c_c01223{bottom:233.280000px;}
.y6d_c01223{bottom:234.720000px;}
.y69_c01223{bottom:236.160000px;}
.y6b_c01223{bottom:236.880000px;}
.y68_c01223{bottom:274.320000px;}
.y67_c01223{bottom:278.640000px;}
.y66_c01223{bottom:279.360000px;}
.y62_c01223{bottom:307.440000px;}
.y65_c01223{bottom:308.880000px;}
.y64_c01223{bottom:309.600000px;}
.y63_c01223{bottom:310.320000px;}
.y61_c01223{bottom:311.040000px;}
.y5a_c01223{bottom:349.200000px;}
.y57_c01223{bottom:352.080000px;}
.y59_c01223{bottom:352.800000px;}
.y58_c01223{bottom:354.240000px;}
.y54_c01223{bottom:382.320000px;}
.y55_c01223{bottom:383.040000px;}
.y60_c01223{bottom:384.480000px;}
.y53_c01223{bottom:385.200000px;}
.y56_c01223{bottom:385.920000px;}
.y4f_c01223{bottom:424.080000px;}
.y52_c01223{bottom:424.800000px;}
.y50_c01223{bottom:426.240000px;}
.y5f_c01223{bottom:426.960000px;}
.y51_c01223{bottom:427.680000px;}
.y4e_c01223{bottom:428.400000px;}
.y4b_c01223{bottom:467.280000px;}
.y4c_c01223{bottom:468.720000px;}
.y5d_c01223{bottom:469.440000px;}
.y4a_c01223{bottom:470.880000px;}
.y4d_c01223{bottom:471.600000px;}
.y5e_c01223{bottom:472.320000px;}
.y49_c01223{bottom:503.280000px;}
.y45_c01223{bottom:509.760000px;}
.y48_c01223{bottom:511.920000px;}
.y44_c01223{bottom:513.360000px;}
.y46_c01223{bottom:514.080000px;}
.y47_c01223{bottom:514.800000px;}
.y43_c01223{bottom:553.680000px;}
.y5b_c01223{bottom:555.840000px;}
.y41_c01223{bottom:556.560000px;}
.y42_c01223{bottom:557.280000px;}
.y5c_c01223{bottom:558.720000px;}
.y40_c01223{bottom:596.880000px;}
.y3d_c01223{bottom:599.040000px;}
.y3e_c01223{bottom:601.200000px;}
.y3f_c01223{bottom:601.920000px;}
.y3a_c01223{bottom:639.360000px;}
.y38_c01223{bottom:641.520000px;}
.y39_c01223{bottom:642.960000px;}
.y3b_c01223{bottom:644.400000px;}
.y3c_c01223{bottom:645.120000px;}
.y37_c01223{bottom:682.560000px;}
.y36_c01223{bottom:684.000000px;}
.y35_c01223{bottom:684.720000px;}
.y32_c01223{bottom:685.440000px;}
.y30_c01223{bottom:686.160000px;}
.y31_c01223{bottom:687.600000px;}
.y34_c01223{bottom:725.760000px;}
.y33_c01223{bottom:727.200000px;}
.y2e_c01223{bottom:727.920000px;}
.y2d_c01223{bottom:729.360000px;}
.y2f_c01223{bottom:730.080000px;}
.y28_c01223{bottom:768.960000px;}
.y27_c01223{bottom:770.400000px;}
.y29_c01223{bottom:772.560000px;}
.y2a_c01223{bottom:773.280000px;}
.y2c_c01223{bottom:774.000000px;}
.y2b_c01223{bottom:775.440000px;}
.y22_c01223{bottom:812.880000px;}
.y24_c01223{bottom:813.600000px;}
.y25_c01223{bottom:815.040000px;}
.y23_c01223{bottom:815.760000px;}
.y26_c01223{bottom:818.640000px;}
.ye_c01223{bottom:853.920000px;}
.yd_c01223{bottom:855.360000px;}
.y1e_c01223{bottom:858.240000px;}
.y1f_c01223{bottom:859.680000px;}
.y21_c01223{bottom:861.120000px;}
.y20_c01223{bottom:861.840000px;}
.yb_c01223{bottom:897.840000px;}
.yc_c01223{bottom:900.720000px;}
.y1a_c01223{bottom:902.160000px;}
.y1c_c01223{bottom:902.880000px;}
.y1b_c01223{bottom:903.600000px;}
.y1d_c01223{bottom:905.040000px;}
.ya_c01223{bottom:939.600000px;}
.y8_c01223{bottom:941.040000px;}
.y9_c01223{bottom:943.920000px;}
.y10_c01223{bottom:944.640000px;}
.y18_c01223{bottom:946.080000px;}
.y19_c01223{bottom:946.800000px;}
.y17_c01223{bottom:947.520000px;}
.y7_c01223{bottom:983.520000px;}
.yf_c01223{bottom:987.120000px;}
.y16_c01223{bottom:988.560000px;}
.y14_c01223{bottom:990.000000px;}
.y15_c01223{bottom:990.720000px;}
.y5_c01223{bottom:1025.280000px;}
.y4_c01223{bottom:1026.000000px;}
.y12_c01223{bottom:1030.320000px;}
.y6_c01223{bottom:1031.040000px;}
.y13_c01223{bottom:1033.920000px;}
.y1_c01223{bottom:1072.080000px;}
.y2_c01223{bottom:1073.520000px;}
.y3_c01223{bottom:1074.960000px;}
.y11_c01223{bottom:1078.560000px;}
.h11_c01223{height:15.550313px;}
.h10_c01223{height:31.100625px;}
.ha_c01223{height:33.692344px;}
.h4_c01223{height:38.875781px;}
.he_c01223{height:41.467500px;}
.h9_c01223{height:44.059219px;}
.h2_c01223{height:46.650937px;}
.h7_c01223{height:49.242656px;}
.h12_c01223{height:49.530938px;}
.hb_c01223{height:51.834375px;}
.h3_c01223{height:54.426094px;}
.h5_c01223{height:57.017812px;}
.hd_c01223{height:59.609531px;}
.hc_c01223{height:62.201250px;}
.hf_c01223{height:64.792969px;}
.h8_c01223{height:67.384687px;}
.h6_c01223{height:69.976406px;}
.h0_c01223{height:1153.440000px;}
.h1_c01223{height:1153.500000px;}
.w0_c01223{width:778.320000px;}
.w1_c01223{width:778.500000px;}
.x0_c01223{left:0.000000px;}
.x4_c01223{left:62.640000px;}
.x27_c01223{left:64.080000px;}
.x1_c01223{left:113.040000px;}
.x7_c01223{left:142.560000px;}
.x5_c01223{left:144.000000px;}
.x2_c01223{left:145.440000px;}
.x8_c01223{left:154.800000px;}
.x9_c01223{left:175.680000px;}
.x17_c01223{left:196.560000px;}
.x34_c01223{left:198.000000px;}
.xa_c01223{left:208.800000px;}
.xb_c01223{left:218.160000px;}
.x3_c01223{left:227.520000px;}
.x18_c01223{left:228.960000px;}
.x19_c01223{left:239.040000px;}
.x31_c01223{left:240.480000px;}
.x2a_c01223{left:249.840000px;}
.x13_c01223{left:272.160000px;}
.x22_c01223{left:283.680000px;}
.x24_c01223{left:293.760000px;}
.x14_c01223{left:315.360000px;}
.x28_c01223{left:326.160000px;}
.x2b_c01223{left:336.960000px;}
.x1c_c01223{left:358.560000px;}
.x23_c01223{left:369.360000px;}
.x2e_c01223{left:380.160000px;}
.x1d_c01223{left:403.920000px;}
.x29_c01223{left:412.560000px;}
.x1e_c01223{left:414.000000px;}
.x2f_c01223{left:434.160000px;}
.x21_c01223{left:444.960000px;}
.x1f_c01223{left:456.480000px;}
.x25_c01223{left:466.560000px;}
.x26_c01223{left:511.200000px;}
.x6_c01223{left:532.080000px;}
.x1b_c01223{left:533.520000px;}
.x36_c01223{left:542.880000px;}
.x20_c01223{left:544.320000px;}
.x32_c01223{left:565.920000px;}
.x15_c01223{left:587.520000px;}
.xd_c01223{left:596.880000px;}
.x35_c01223{left:598.320000px;}
.x1a_c01223{left:609.840000px;}
.x10_c01223{left:619.920000px;}
.xc_c01223{left:622.080000px;}
.xe_c01223{left:652.320000px;}
.x30_c01223{left:653.760000px;}
.x12_c01223{left:684.720000px;}
.x16_c01223{left:686.160000px;}
.x33_c01223{left:687.600000px;}
.xf_c01223{left:695.520000px;}
.x2d_c01223{left:696.960000px;}
.x11_c01223{left:715.680000px;}
.x2c_c01223{left:717.840000px;}
@media print{
.v0_c01223{vertical-align:0.000000pt;}
.v1_c01223{vertical-align:2.560000pt;}
.ls0_c01223{letter-spacing:0.000000pt;}
.ws1_c01223{word-spacing:0.000000pt;}
.ws0_c01223{word-spacing:9.126400pt;}
.fsf_c01223{font-size:15.360000pt;}
.fse_c01223{font-size:30.720000pt;}
.fs8_c01223{font-size:33.280000pt;}
.fs2_c01223{font-size:38.400000pt;}
.fsc_c01223{font-size:40.960000pt;}
.fs7_c01223{font-size:43.520000pt;}
.fs0_c01223{font-size:46.080000pt;}
.fs5_c01223{font-size:48.640000pt;}
.fs9_c01223{font-size:51.200000pt;}
.fs1_c01223{font-size:53.760000pt;}
.fs3_c01223{font-size:56.320000pt;}
.fsb_c01223{font-size:58.880000pt;}
.fsa_c01223{font-size:61.440000pt;}
.fsd_c01223{font-size:64.000000pt;}
.fs6_c01223{font-size:66.560000pt;}
.fs4_c01223{font-size:69.120000pt;}
.y0_c01223{bottom:0.000000pt;}
.y7b_c01223{bottom:91.520000pt;}
.y7e_c01223{bottom:92.160000pt;}
.y79_c01223{bottom:92.800000pt;}
.y7d_c01223{bottom:93.440000pt;}
.y7a_c01223{bottom:94.720000pt;}
.y7c_c01223{bottom:95.360000pt;}
.y78_c01223{bottom:97.920000pt;}
.y77_c01223{bottom:129.920000pt;}
.y74_c01223{bottom:130.560000pt;}
.y76_c01223{bottom:131.200000pt;}
.y75_c01223{bottom:133.120000pt;}
.y73_c01223{bottom:134.400000pt;}
.y72_c01223{bottom:168.320000pt;}
.y6f_c01223{bottom:168.960000pt;}
.y71_c01223{bottom:169.600000pt;}
.y70_c01223{bottom:171.520000pt;}
.y6e_c01223{bottom:172.800000pt;}
.y6a_c01223{bottom:206.720000pt;}
.y6c_c01223{bottom:207.360000pt;}
.y6d_c01223{bottom:208.640000pt;}
.y69_c01223{bottom:209.920000pt;}
.y6b_c01223{bottom:210.560000pt;}
.y68_c01223{bottom:243.840000pt;}
.y67_c01223{bottom:247.680000pt;}
.y66_c01223{bottom:248.320000pt;}
.y62_c01223{bottom:273.280000pt;}
.y65_c01223{bottom:274.560000pt;}
.y64_c01223{bottom:275.200000pt;}
.y63_c01223{bottom:275.840000pt;}
.y61_c01223{bottom:276.480000pt;}
.y5a_c01223{bottom:310.400000pt;}
.y57_c01223{bottom:312.960000pt;}
.y59_c01223{bottom:313.600000pt;}
.y58_c01223{bottom:314.880000pt;}
.y54_c01223{bottom:339.840000pt;}
.y55_c01223{bottom:340.480000pt;}
.y60_c01223{bottom:341.760000pt;}
.y53_c01223{bottom:342.400000pt;}
.y56_c01223{bottom:343.040000pt;}
.y4f_c01223{bottom:376.960000pt;}
.y52_c01223{bottom:377.600000pt;}
.y50_c01223{bottom:378.880000pt;}
.y5f_c01223{bottom:379.520000pt;}
.y51_c01223{bottom:380.160000pt;}
.y4e_c01223{bottom:380.800000pt;}
.y4b_c01223{bottom:415.360000pt;}
.y4c_c01223{bottom:416.640000pt;}
.y5d_c01223{bottom:417.280000pt;}
.y4a_c01223{bottom:418.560000pt;}
.y4d_c01223{bottom:419.200000pt;}
.y5e_c01223{bottom:419.840000pt;}
.y49_c01223{bottom:447.360000pt;}
.y45_c01223{bottom:453.120000pt;}
.y48_c01223{bottom:455.040000pt;}
.y44_c01223{bottom:456.320000pt;}
.y46_c01223{bottom:456.960000pt;}
.y47_c01223{bottom:457.600000pt;}
.y43_c01223{bottom:492.160000pt;}
.y5b_c01223{bottom:494.080000pt;}
.y41_c01223{bottom:494.720000pt;}
.y42_c01223{bottom:495.360000pt;}
.y5c_c01223{bottom:496.640000pt;}
.y40_c01223{bottom:530.560000pt;}
.y3d_c01223{bottom:532.480000pt;}
.y3e_c01223{bottom:534.400000pt;}
.y3f_c01223{bottom:535.040000pt;}
.y3a_c01223{bottom:568.320000pt;}
.y38_c01223{bottom:570.240000pt;}
.y39_c01223{bottom:571.520000pt;}
.y3b_c01223{bottom:572.800000pt;}
.y3c_c01223{bottom:573.440000pt;}
.y37_c01223{bottom:606.720000pt;}
.y36_c01223{bottom:608.000000pt;}
.y35_c01223{bottom:608.640000pt;}
.y32_c01223{bottom:609.280000pt;}
.y30_c01223{bottom:609.920000pt;}
.y31_c01223{bottom:611.200000pt;}
.y34_c01223{bottom:645.120000pt;}
.y33_c01223{bottom:646.400000pt;}
.y2e_c01223{bottom:647.040000pt;}
.y2d_c01223{bottom:648.320000pt;}
.y2f_c01223{bottom:648.960000pt;}
.y28_c01223{bottom:683.520000pt;}
.y27_c01223{bottom:684.800000pt;}
.y29_c01223{bottom:686.720000pt;}
.y2a_c01223{bottom:687.360000pt;}
.y2c_c01223{bottom:688.000000pt;}
.y2b_c01223{bottom:689.280000pt;}
.y22_c01223{bottom:722.560000pt;}
.y24_c01223{bottom:723.200000pt;}
.y25_c01223{bottom:724.480000pt;}
.y23_c01223{bottom:725.120000pt;}
.y26_c01223{bottom:727.680000pt;}
.ye_c01223{bottom:759.040000pt;}
.yd_c01223{bottom:760.320000pt;}
.y1e_c01223{bottom:762.880000pt;}
.y1f_c01223{bottom:764.160000pt;}
.y21_c01223{bottom:765.440000pt;}
.y20_c01223{bottom:766.080000pt;}
.yb_c01223{bottom:798.080000pt;}
.yc_c01223{bottom:800.640000pt;}
.y1a_c01223{bottom:801.920000pt;}
.y1c_c01223{bottom:802.560000pt;}
.y1b_c01223{bottom:803.200000pt;}
.y1d_c01223{bottom:804.480000pt;}
.ya_c01223{bottom:835.200000pt;}
.y8_c01223{bottom:836.480000pt;}
.y9_c01223{bottom:839.040000pt;}
.y10_c01223{bottom:839.680000pt;}
.y18_c01223{bottom:840.960000pt;}
.y19_c01223{bottom:841.600000pt;}
.y17_c01223{bottom:842.240000pt;}
.y7_c01223{bottom:874.240000pt;}
.yf_c01223{bottom:877.440000pt;}
.y16_c01223{bottom:878.720000pt;}
.y14_c01223{bottom:880.000000pt;}
.y15_c01223{bottom:880.640000pt;}
.y5_c01223{bottom:911.360000pt;}
.y4_c01223{bottom:912.000000pt;}
.y12_c01223{bottom:915.840000pt;}
.y6_c01223{bottom:916.480000pt;}
.y13_c01223{bottom:919.040000pt;}
.y1_c01223{bottom:952.960000pt;}
.y2_c01223{bottom:954.240000pt;}
.y3_c01223{bottom:955.520000pt;}
.y11_c01223{bottom:958.720000pt;}
.h11_c01223{height:13.822500pt;}
.h10_c01223{height:27.645000pt;}
.ha_c01223{height:29.948750pt;}
.h4_c01223{height:34.556250pt;}
.he_c01223{height:36.860000pt;}
.h9_c01223{height:39.163750pt;}
.h2_c01223{height:41.467500pt;}
.h7_c01223{height:43.771250pt;}
.h12_c01223{height:44.027500pt;}
.hb_c01223{height:46.075000pt;}
.h3_c01223{height:48.378750pt;}
.h5_c01223{height:50.682500pt;}
.hd_c01223{height:52.986250pt;}
.hc_c01223{height:55.290000pt;}
.hf_c01223{height:57.593750pt;}
.h8_c01223{height:59.897500pt;}
.h6_c01223{height:62.201250pt;}
.h0_c01223{height:1025.280000pt;}
.h1_c01223{height:1025.333333pt;}
.w0_c01223{width:691.840000pt;}
.w1_c01223{width:692.000000pt;}
.x0_c01223{left:0.000000pt;}
.x4_c01223{left:55.680000pt;}
.x27_c01223{left:56.960000pt;}
.x1_c01223{left:100.480000pt;}
.x7_c01223{left:126.720000pt;}
.x5_c01223{left:128.000000pt;}
.x2_c01223{left:129.280000pt;}
.x8_c01223{left:137.600000pt;}
.x9_c01223{left:156.160000pt;}
.x17_c01223{left:174.720000pt;}
.x34_c01223{left:176.000000pt;}
.xa_c01223{left:185.600000pt;}
.xb_c01223{left:193.920000pt;}
.x3_c01223{left:202.240000pt;}
.x18_c01223{left:203.520000pt;}
.x19_c01223{left:212.480000pt;}
.x31_c01223{left:213.760000pt;}
.x2a_c01223{left:222.080000pt;}
.x13_c01223{left:241.920000pt;}
.x22_c01223{left:252.160000pt;}
.x24_c01223{left:261.120000pt;}
.x14_c01223{left:280.320000pt;}
.x28_c01223{left:289.920000pt;}
.x2b_c01223{left:299.520000pt;}
.x1c_c01223{left:318.720000pt;}
.x23_c01223{left:328.320000pt;}
.x2e_c01223{left:337.920000pt;}
.x1d_c01223{left:359.040000pt;}
.x29_c01223{left:366.720000pt;}
.x1e_c01223{left:368.000000pt;}
.x2f_c01223{left:385.920000pt;}
.x21_c01223{left:395.520000pt;}
.x1f_c01223{left:405.760000pt;}
.x25_c01223{left:414.720000pt;}
.x26_c01223{left:454.400000pt;}
.x6_c01223{left:472.960000pt;}
.x1b_c01223{left:474.240000pt;}
.x36_c01223{left:482.560000pt;}
.x20_c01223{left:483.840000pt;}
.x32_c01223{left:503.040000pt;}
.x15_c01223{left:522.240000pt;}
.xd_c01223{left:530.560000pt;}
.x35_c01223{left:531.840000pt;}
.x1a_c01223{left:542.080000pt;}
.x10_c01223{left:551.040000pt;}
.xc_c01223{left:552.960000pt;}
.xe_c01223{left:579.840000pt;}
.x30_c01223{left:581.120000pt;}
.x12_c01223{left:608.640000pt;}
.x16_c01223{left:609.920000pt;}
.x33_c01223{left:611.200000pt;}
.xf_c01223{left:618.240000pt;}
.x2d_c01223{left:619.520000pt;}
.x11_c01223{left:636.160000pt;}
.x2c_c01223{left:638.080000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_268a6b554c8214cde06976e4.woff2')format("woff");}.ff1_c01224{font-family:ff1_c01224;line-height:1.109863;font-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_c01224{transform:matrix(0.191175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191175,0.000000,0.000000,0.250000,0,0);}
.m7_c01224{transform:matrix(0.194575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194575,0.000000,0.000000,0.250000,0,0);}
.m2c_c01224{transform:matrix(0.227975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227975,0.000000,0.000000,0.250000,0,0);}
.m30_c01224{transform:matrix(0.230650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230650,0.000000,0.000000,0.250000,0,0);}
.m37_c01224{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.mf_c01224{transform:matrix(0.239175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239175,0.000000,0.000000,0.250000,0,0);}
.m19_c01224{transform:matrix(0.239525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239525,0.000000,0.000000,0.250000,0,0);}
.m3b_c01224{transform:matrix(0.241550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241550,0.000000,0.000000,0.250000,0,0);}
.m43_c01224{transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);}
.mb_c01224{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m33_c01224{transform:matrix(0.244100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244100,0.000000,0.000000,0.250000,0,0);}
.m27_c01224{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m1d_c01224{transform:matrix(0.247900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247900,0.000000,0.000000,0.250000,0,0);}
.m2_c01224{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m14_c01224{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m17_c01224{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);}
.m4d_c01224{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_c01224{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);}
.m36_c01224{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_c01224{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);}
.m32_c01224{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m21_c01224{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);}
.m4a_c01224{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01224{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m9_c01224{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_c01224{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_c01224{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m16_c01224{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m25_c01224{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m13_c01224{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01224{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m20_c01224{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01224{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01224{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01224{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01224{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01224{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m15_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);}
.m23_c01224{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01224{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m34_c01224{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);}
.m2a_c01224{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mc_c01224{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m5_c01224{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);}
.m28_c01224{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m29_c01224{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m12_c01224{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1_c01224{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);}
.m47_c01224{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01224{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m4_c01224{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);}
.m4c_c01224{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);}
.m3f_c01224{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m11_c01224{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01224{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);}
.m42_c01224{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);}
.m1e_c01224{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);}
.m38_c01224{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m35_c01224{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);}
.m2e_c01224{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m41_c01224{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);}
.m50_c01224{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01224{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m3_c01224{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m49_c01224{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m44_c01224{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);}
.m45_c01224{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01224{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m4f_c01224{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m31_c01224{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_c01224{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m46_c01224{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);}
.m6_c01224{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m40_c01224{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m39_c01224{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01224{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.me_c01224{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m18_c01224{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m48_c01224{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);}
.m22_c01224{transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);}
.m24_c01224{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.v0_c01224{vertical-align:0.000000px;}
.v2_c01224{vertical-align:2.880000px;}
.v3_c01224{vertical-align:5.760000px;}
.v1_c01224{vertical-align:8.640000px;}
.ls0_c01224{letter-spacing:0.000000px;}
.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;}
}
.ws3_c01224{word-spacing:-2.302800px;}
.ws6_c01224{word-spacing:0.000000px;}
.ws4_c01224{word-spacing:11.693143px;}
.ws5_c01224{word-spacing:11.855347px;}
.ws2_c01224{word-spacing:20.131200px;}
.ws1_c01224{word-spacing:56.301600px;}
.ws0_c01224{word-spacing:123.104640px;}
.fc0_c01224{color:transparent;}
.fs10_c01224{font-size:25.920000px;}
.fse_c01224{font-size:34.560000px;}
.fsd_c01224{font-size:37.440000px;}
.fsf_c01224{font-size:46.080000px;}
.fs2_c01224{font-size:48.960000px;}
.fs3_c01224{font-size:51.840000px;}
.fs5_c01224{font-size:54.720000px;}
.fs1_c01224{font-size:57.600000px;}
.fs7_c01224{font-size:60.480000px;}
.fs9_c01224{font-size:63.360000px;}
.fsb_c01224{font-size:66.240000px;}
.fs6_c01224{font-size:69.120000px;}
.fs8_c01224{font-size:72.000000px;}
.fs0_c01224{font-size:74.880000px;}
.fsa_c01224{font-size:77.760000px;}
.fs4_c01224{font-size:109.440000px;}
.fsc_c01224{font-size:115.200000px;}
.y0_c01224{bottom:0.000000px;}
.y7f_c01224{bottom:84.240000px;}
.y7d_c01224{bottom:86.400000px;}
.y79_c01224{bottom:87.120000px;}
.y7c_c01224{bottom:88.560000px;}
.y7a_c01224{bottom:89.280000px;}
.y7e_c01224{bottom:91.440000px;}
.y7b_c01224{bottom:109.440000px;}
.y77_c01224{bottom:110.160000px;}
.y78_c01224{bottom:111.600000px;}
.y76_c01224{bottom:147.600000px;}
.y75_c01224{bottom:149.760000px;}
.y74_c01224{bottom:151.920000px;}
.y73_c01224{bottom:153.360000px;}
.y72_c01224{bottom:154.080000px;}
.y90_c01224{bottom:179.280000px;}
.y8f_c01224{bottom:181.440000px;}
.y71_c01224{bottom:182.160000px;}
.y6d_c01224{bottom:182.880000px;}
.y6e_c01224{bottom:183.600000px;}
.y6f_c01224{bottom:184.320000px;}
.y70_c01224{bottom:185.040000px;}
.y6c_c01224{bottom:187.920000px;}
.y8d_c01224{bottom:223.920000px;}
.y6b_c01224{bottom:225.360000px;}
.y8e_c01224{bottom:226.080000px;}
.y6a_c01224{bottom:227.520000px;}
.y69_c01224{bottom:230.400000px;}
.y8b_c01224{bottom:267.840000px;}
.y68_c01224{bottom:268.560000px;}
.y8c_c01224{bottom:269.280000px;}
.y65_c01224{bottom:270.000000px;}
.y67_c01224{bottom:270.720000px;}
.y66_c01224{bottom:271.440000px;}
.y64_c01224{bottom:272.880000px;}
.y63_c01224{bottom:311.040000px;}
.y61_c01224{bottom:311.760000px;}
.y60_c01224{bottom:313.200000px;}
.y62_c01224{bottom:313.920000px;}
.y5f_c01224{bottom:315.360000px;}
.y5d_c01224{bottom:352.800000px;}
.y5a_c01224{bottom:354.240000px;}
.y89_c01224{bottom:354.960000px;}
.y8a_c01224{bottom:355.680000px;}
.y5c_c01224{bottom:356.400000px;}
.y5e_c01224{bottom:357.120000px;}
.y5b_c01224{bottom:357.840000px;}
.y59_c01224{bottom:358.560000px;}
.y55_c01224{bottom:396.720000px;}
.y56_c01224{bottom:397.440000px;}
.y58_c01224{bottom:398.160000px;}
.y57_c01224{bottom:399.600000px;}
.y54_c01224{bottom:401.040000px;}
.y51_c01224{bottom:439.920000px;}
.y52_c01224{bottom:440.640000px;}
.y88_c01224{bottom:441.360000px;}
.y53_c01224{bottom:442.800000px;}
.y50_c01224{bottom:443.520000px;}
.y4e_c01224{bottom:483.120000px;}
.y86_c01224{bottom:483.840000px;}
.y87_c01224{bottom:484.560000px;}
.y4d_c01224{bottom:486.000000px;}
.y4f_c01224{bottom:486.720000px;}
.y4b_c01224{bottom:525.600000px;}
.y85_c01224{bottom:527.760000px;}
.y4c_c01224{bottom:528.480000px;}
.y4a_c01224{bottom:529.200000px;}
.y48_c01224{bottom:568.800000px;}
.y84_c01224{bottom:570.240000px;}
.y47_c01224{bottom:570.960000px;}
.y49_c01224{bottom:572.400000px;}
.y45_c01224{bottom:611.280000px;}
.y46_c01224{bottom:613.440000px;}
.y44_c01224{bottom:614.160000px;}
.y83_c01224{bottom:614.880000px;}
.y82_c01224{bottom:615.600000px;}
.y3f_c01224{bottom:653.760000px;}
.y41_c01224{bottom:654.480000px;}
.y3e_c01224{bottom:655.920000px;}
.y43_c01224{bottom:656.640000px;}
.y42_c01224{bottom:657.360000px;}
.y40_c01224{bottom:658.080000px;}
.y39_c01224{bottom:696.240000px;}
.y3c_c01224{bottom:696.960000px;}
.y3a_c01224{bottom:698.400000px;}
.y38_c01224{bottom:699.120000px;}
.y3d_c01224{bottom:699.840000px;}
.y3b_c01224{bottom:700.560000px;}
.y81_c01224{bottom:701.280000px;}
.y80_c01224{bottom:702.000000px;}
.y37_c01224{bottom:739.440000px;}
.y36_c01224{bottom:743.760000px;}
.y31_c01224{bottom:771.840000px;}
.y30_c01224{bottom:773.280000px;}
.y34_c01224{bottom:774.720000px;}
.y33_c01224{bottom:775.440000px;}
.y32_c01224{bottom:776.160000px;}
.y35_c01224{bottom:776.880000px;}
.y2b_c01224{bottom:805.680000px;}
.y2a_c01224{bottom:815.760000px;}
.y29_c01224{bottom:816.480000px;}
.y2c_c01224{bottom:817.200000px;}
.y2e_c01224{bottom:818.640000px;}
.y2d_c01224{bottom:820.080000px;}
.y2f_c01224{bottom:820.800000px;}
.y23_c01224{bottom:858.240000px;}
.y22_c01224{bottom:858.960000px;}
.y27_c01224{bottom:861.120000px;}
.y24_c01224{bottom:861.840000px;}
.y25_c01224{bottom:863.280000px;}
.y28_c01224{bottom:864.000000px;}
.y20_c01224{bottom:892.800000px;}
.y21_c01224{bottom:895.680000px;}
.y1b_c01224{bottom:900.720000px;}
.y1a_c01224{bottom:902.160000px;}
.y1c_c01224{bottom:902.880000px;}
.y1f_c01224{bottom:904.320000px;}
.y1d_c01224{bottom:905.040000px;}
.y1e_c01224{bottom:905.760000px;}
.y26_c01224{bottom:907.200000px;}
.y13_c01224{bottom:944.640000px;}
.y12_c01224{bottom:945.360000px;}
.y15_c01224{bottom:946.080000px;}
.y16_c01224{bottom:946.800000px;}
.y19_c01224{bottom:947.520000px;}
.y14_c01224{bottom:948.240000px;}
.y18_c01224{bottom:948.960000px;}
.y17_c01224{bottom:949.680000px;}
.y10_c01224{bottom:987.120000px;}
.yf_c01224{bottom:987.840000px;}
.y11_c01224{bottom:988.560000px;}
.y9_c01224{bottom:990.000000px;}
.yb_c01224{bottom:990.720000px;}
.yc_c01224{bottom:991.440000px;}
.ya_c01224{bottom:992.160000px;}
.yd_c01224{bottom:992.880000px;}
.ye_c01224{bottom:993.600000px;}
.y6_c01224{bottom:1020.960000px;}
.y3_c01224{bottom:1030.320000px;}
.y2_c01224{bottom:1031.040000px;}
.y4_c01224{bottom:1032.480000px;}
.y7_c01224{bottom:1033.920000px;}
.y8_c01224{bottom:1034.640000px;}
.y5_c01224{bottom:1035.360000px;}
.y1_c01224{bottom:1130.400000px;}
.h15_c01224{height:23.325469px;}
.h12_c01224{height:31.100625px;}
.h10_c01224{height:33.692344px;}
.h13_c01224{height:41.467500px;}
.h4_c01224{height:44.059219px;}
.h5_c01224{height:46.650937px;}
.h7_c01224{height:49.242656px;}
.h14_c01224{height:49.530937px;}
.h3_c01224{height:51.834375px;}
.hf_c01224{height:52.122656px;}
.h11_c01224{height:52.410937px;}
.h9_c01224{height:54.426094px;}
.hb_c01224{height:57.017812px;}
.hd_c01224{height:59.609531px;}
.h8_c01224{height:62.201250px;}
.ha_c01224{height:64.792969px;}
.h2_c01224{height:67.384687px;}
.hc_c01224{height:69.976406px;}
.h6_c01224{height:98.485312px;}
.he_c01224{height:103.668750px;}
.h1_c01224{height:1164.000000px;}
.h0_c01224{height:1164.240000px;}
.w1_c01224{width:769.500000px;}
.w0_c01224{width:769.680000px;}
.x0_c01224{left:0.000000px;}
.x28_c01224{left:59.039550px;}
.x2_c01224{left:60.480000px;}
.x1d_c01224{left:138.960000px;}
.x3_c01224{left:140.400000px;}
.x21_c01224{left:182.880000px;}
.x11_c01224{left:224.640000px;}
.x4_c01224{left:226.080000px;}
.x2e_c01224{left:235.440000px;}
.x22_c01224{left:236.880000px;}
.x32_c01224{left:246.960000px;}
.x12_c01224{left:269.280000px;}
.x26_c01224{left:278.640000px;}
.x5_c01224{left:280.800000px;}
.x2b_c01224{left:289.440000px;}
.x2f_c01224{left:290.880000px;}
.x27_c01224{left:300.960000px;}
.x1a_c01224{left:311.760000px;}
.x13_c01224{left:322.560000px;}
.x1f_c01224{left:334.080000px;}
.x2c_c01224{left:344.160000px;}
.x15_c01224{left:355.680000px;}
.x6_c01224{left:365.760000px;}
.x23_c01224{left:376.560000px;}
.x30_c01224{left:387.360000px;}
.x1e_c01224{left:396.720000px;}
.x16_c01224{left:408.240000px;}
.x7_c01224{left:409.680000px;}
.x24_c01224{left:419.760000px;}
.x18_c01224{left:441.360000px;}
.x29_c01224{left:451.440000px;}
.x14_c01224{left:452.880000px;}
.x20_c01224{left:462.960000px;}
.x8_c01224{left:464.400000px;}
.x2a_c01224{left:483.840000px;}
.x31_c01224{left:495.360000px;}
.x19_c01224{left:496.800000px;}
.x33_c01224{left:516.240000px;}
.x2d_c01224{left:527.040000px;}
.x25_c01224{left:529.200000px;}
.x1b_c01224{left:539.280000px;}
.x9_c01224{left:540.720000px;}
.x17_c01224{left:561.600000px;}
.xa_c01224{left:563.040000px;}
.xb_c01224{left:583.200000px;}
.x1c_c01224{left:615.600000px;}
.xd_c01224{left:617.040000px;}
.x34_c01224{left:648.720000px;}
.xe_c01224{left:650.160000px;}
.x35_c01224{left:658.800000px;}
.x1_c01224{left:670.320000px;}
.xf_c01224{left:682.560000px;}
.xc_c01224{left:692.640000px;}
.x10_c01224{left:713.520000px;}
@media print{
.v0_c01224{vertical-align:0.000000pt;}
.v2_c01224{vertical-align:2.560000pt;}
.v3_c01224{vertical-align:5.120000pt;}
.v1_c01224{vertical-align:7.680000pt;}
.ls0_c01224{letter-spacing:0.000000pt;}
.ws3_c01224{word-spacing:-2.046933pt;}
.ws6_c01224{word-spacing:0.000000pt;}
.ws4_c01224{word-spacing:10.393905pt;}
.ws5_c01224{word-spacing:10.538086pt;}
.ws2_c01224{word-spacing:17.894400pt;}
.ws1_c01224{word-spacing:50.045867pt;}
.ws0_c01224{word-spacing:109.426347pt;}
.fs10_c01224{font-size:23.040000pt;}
.fse_c01224{font-size:30.720000pt;}
.fsd_c01224{font-size:33.280000pt;}
.fsf_c01224{font-size:40.960000pt;}
.fs2_c01224{font-size:43.520000pt;}
.fs3_c01224{font-size:46.080000pt;}
.fs5_c01224{font-size:48.640000pt;}
.fs1_c01224{font-size:51.200000pt;}
.fs7_c01224{font-size:53.760000pt;}
.fs9_c01224{font-size:56.320000pt;}
.fsb_c01224{font-size:58.880000pt;}
.fs6_c01224{font-size:61.440000pt;}
.fs8_c01224{font-size:64.000000pt;}
.fs0_c01224{font-size:66.560000pt;}
.fsa_c01224{font-size:69.120000pt;}
.fs4_c01224{font-size:97.280000pt;}
.fsc_c01224{font-size:102.400000pt;}
.y0_c01224{bottom:0.000000pt;}
.y7f_c01224{bottom:74.880000pt;}
.y7d_c01224{bottom:76.800000pt;}
.y79_c01224{bottom:77.440000pt;}
.y7c_c01224{bottom:78.720000pt;}
.y7a_c01224{bottom:79.360000pt;}
.y7e_c01224{bottom:81.280000pt;}
.y7b_c01224{bottom:97.280000pt;}
.y77_c01224{bottom:97.920000pt;}
.y78_c01224{bottom:99.200000pt;}
.y76_c01224{bottom:131.200000pt;}
.y75_c01224{bottom:133.120000pt;}
.y74_c01224{bottom:135.040000pt;}
.y73_c01224{bottom:136.320000pt;}
.y72_c01224{bottom:136.960000pt;}
.y90_c01224{bottom:159.360000pt;}
.y8f_c01224{bottom:161.280000pt;}
.y71_c01224{bottom:161.920000pt;}
.y6d_c01224{bottom:162.560000pt;}
.y6e_c01224{bottom:163.200000pt;}
.y6f_c01224{bottom:163.840000pt;}
.y70_c01224{bottom:164.480000pt;}
.y6c_c01224{bottom:167.040000pt;}
.y8d_c01224{bottom:199.040000pt;}
.y6b_c01224{bottom:200.320000pt;}
.y8e_c01224{bottom:200.960000pt;}
.y6a_c01224{bottom:202.240000pt;}
.y69_c01224{bottom:204.800000pt;}
.y8b_c01224{bottom:238.080000pt;}
.y68_c01224{bottom:238.720000pt;}
.y8c_c01224{bottom:239.360000pt;}
.y65_c01224{bottom:240.000000pt;}
.y67_c01224{bottom:240.640000pt;}
.y66_c01224{bottom:241.280000pt;}
.y64_c01224{bottom:242.560000pt;}
.y63_c01224{bottom:276.480000pt;}
.y61_c01224{bottom:277.120000pt;}
.y60_c01224{bottom:278.400000pt;}
.y62_c01224{bottom:279.040000pt;}
.y5f_c01224{bottom:280.320000pt;}
.y5d_c01224{bottom:313.600000pt;}
.y5a_c01224{bottom:314.880000pt;}
.y89_c01224{bottom:315.520000pt;}
.y8a_c01224{bottom:316.160000pt;}
.y5c_c01224{bottom:316.800000pt;}
.y5e_c01224{bottom:317.440000pt;}
.y5b_c01224{bottom:318.080000pt;}
.y59_c01224{bottom:318.720000pt;}
.y55_c01224{bottom:352.640000pt;}
.y56_c01224{bottom:353.280000pt;}
.y58_c01224{bottom:353.920000pt;}
.y57_c01224{bottom:355.200000pt;}
.y54_c01224{bottom:356.480000pt;}
.y51_c01224{bottom:391.040000pt;}
.y52_c01224{bottom:391.680000pt;}
.y88_c01224{bottom:392.320000pt;}
.y53_c01224{bottom:393.600000pt;}
.y50_c01224{bottom:394.240000pt;}
.y4e_c01224{bottom:429.440000pt;}
.y86_c01224{bottom:430.080000pt;}
.y87_c01224{bottom:430.720000pt;}
.y4d_c01224{bottom:432.000000pt;}
.y4f_c01224{bottom:432.640000pt;}
.y4b_c01224{bottom:467.200000pt;}
.y85_c01224{bottom:469.120000pt;}
.y4c_c01224{bottom:469.760000pt;}
.y4a_c01224{bottom:470.400000pt;}
.y48_c01224{bottom:505.600000pt;}
.y84_c01224{bottom:506.880000pt;}
.y47_c01224{bottom:507.520000pt;}
.y49_c01224{bottom:508.800000pt;}
.y45_c01224{bottom:543.360000pt;}
.y46_c01224{bottom:545.280000pt;}
.y44_c01224{bottom:545.920000pt;}
.y83_c01224{bottom:546.560000pt;}
.y82_c01224{bottom:547.200000pt;}
.y3f_c01224{bottom:581.120000pt;}
.y41_c01224{bottom:581.760000pt;}
.y3e_c01224{bottom:583.040000pt;}
.y43_c01224{bottom:583.680000pt;}
.y42_c01224{bottom:584.320000pt;}
.y40_c01224{bottom:584.960000pt;}
.y39_c01224{bottom:618.880000pt;}
.y3c_c01224{bottom:619.520000pt;}
.y3a_c01224{bottom:620.800000pt;}
.y38_c01224{bottom:621.440000pt;}
.y3d_c01224{bottom:622.080000pt;}
.y3b_c01224{bottom:622.720000pt;}
.y81_c01224{bottom:623.360000pt;}
.y80_c01224{bottom:624.000000pt;}
.y37_c01224{bottom:657.280000pt;}
.y36_c01224{bottom:661.120000pt;}
.y31_c01224{bottom:686.080000pt;}
.y30_c01224{bottom:687.360000pt;}
.y34_c01224{bottom:688.640000pt;}
.y33_c01224{bottom:689.280000pt;}
.y32_c01224{bottom:689.920000pt;}
.y35_c01224{bottom:690.560000pt;}
.y2b_c01224{bottom:716.160000pt;}
.y2a_c01224{bottom:725.120000pt;}
.y29_c01224{bottom:725.760000pt;}
.y2c_c01224{bottom:726.400000pt;}
.y2e_c01224{bottom:727.680000pt;}
.y2d_c01224{bottom:728.960000pt;}
.y2f_c01224{bottom:729.600000pt;}
.y23_c01224{bottom:762.880000pt;}
.y22_c01224{bottom:763.520000pt;}
.y27_c01224{bottom:765.440000pt;}
.y24_c01224{bottom:766.080000pt;}
.y25_c01224{bottom:767.360000pt;}
.y28_c01224{bottom:768.000000pt;}
.y20_c01224{bottom:793.600000pt;}
.y21_c01224{bottom:796.160000pt;}
.y1b_c01224{bottom:800.640000pt;}
.y1a_c01224{bottom:801.920000pt;}
.y1c_c01224{bottom:802.560000pt;}
.y1f_c01224{bottom:803.840000pt;}
.y1d_c01224{bottom:804.480000pt;}
.y1e_c01224{bottom:805.120000pt;}
.y26_c01224{bottom:806.400000pt;}
.y13_c01224{bottom:839.680000pt;}
.y12_c01224{bottom:840.320000pt;}
.y15_c01224{bottom:840.960000pt;}
.y16_c01224{bottom:841.600000pt;}
.y19_c01224{bottom:842.240000pt;}
.y14_c01224{bottom:842.880000pt;}
.y18_c01224{bottom:843.520000pt;}
.y17_c01224{bottom:844.160000pt;}
.y10_c01224{bottom:877.440000pt;}
.yf_c01224{bottom:878.080000pt;}
.y11_c01224{bottom:878.720000pt;}
.y9_c01224{bottom:880.000000pt;}
.yb_c01224{bottom:880.640000pt;}
.yc_c01224{bottom:881.280000pt;}
.ya_c01224{bottom:881.920000pt;}
.yd_c01224{bottom:882.560000pt;}
.ye_c01224{bottom:883.200000pt;}
.y6_c01224{bottom:907.520000pt;}
.y3_c01224{bottom:915.840000pt;}
.y2_c01224{bottom:916.480000pt;}
.y4_c01224{bottom:917.760000pt;}
.y7_c01224{bottom:919.040000pt;}
.y8_c01224{bottom:919.680000pt;}
.y5_c01224{bottom:920.320000pt;}
.y1_c01224{bottom:1004.800000pt;}
.h15_c01224{height:20.733750pt;}
.h12_c01224{height:27.645000pt;}
.h10_c01224{height:29.948750pt;}
.h13_c01224{height:36.860000pt;}
.h4_c01224{height:39.163750pt;}
.h5_c01224{height:41.467500pt;}
.h7_c01224{height:43.771250pt;}
.h14_c01224{height:44.027500pt;}
.h3_c01224{height:46.075000pt;}
.hf_c01224{height:46.331250pt;}
.h11_c01224{height:46.587500pt;}
.h9_c01224{height:48.378750pt;}
.hb_c01224{height:50.682500pt;}
.hd_c01224{height:52.986250pt;}
.h8_c01224{height:55.290000pt;}
.ha_c01224{height:57.593750pt;}
.h2_c01224{height:59.897500pt;}
.hc_c01224{height:62.201250pt;}
.h6_c01224{height:87.542500pt;}
.he_c01224{height:92.150000pt;}
.h1_c01224{height:1034.666667pt;}
.h0_c01224{height:1034.880000pt;}
.w1_c01224{width:684.000000pt;}
.w0_c01224{width:684.160000pt;}
.x0_c01224{left:0.000000pt;}
.x28_c01224{left:52.479600pt;}
.x2_c01224{left:53.760000pt;}
.x1d_c01224{left:123.520000pt;}
.x3_c01224{left:124.800000pt;}
.x21_c01224{left:162.560000pt;}
.x11_c01224{left:199.680000pt;}
.x4_c01224{left:200.960000pt;}
.x2e_c01224{left:209.280000pt;}
.x22_c01224{left:210.560000pt;}
.x32_c01224{left:219.520000pt;}
.x12_c01224{left:239.360000pt;}
.x26_c01224{left:247.680000pt;}
.x5_c01224{left:249.600000pt;}
.x2b_c01224{left:257.280000pt;}
.x2f_c01224{left:258.560000pt;}
.x27_c01224{left:267.520000pt;}
.x1a_c01224{left:277.120000pt;}
.x13_c01224{left:286.720000pt;}
.x1f_c01224{left:296.960000pt;}
.x2c_c01224{left:305.920000pt;}
.x15_c01224{left:316.160000pt;}
.x6_c01224{left:325.120000pt;}
.x23_c01224{left:334.720000pt;}
.x30_c01224{left:344.320000pt;}
.x1e_c01224{left:352.640000pt;}
.x16_c01224{left:362.880000pt;}
.x7_c01224{left:364.160000pt;}
.x24_c01224{left:373.120000pt;}
.x18_c01224{left:392.320000pt;}
.x29_c01224{left:401.280000pt;}
.x14_c01224{left:402.560000pt;}
.x20_c01224{left:411.520000pt;}
.x8_c01224{left:412.800000pt;}
.x2a_c01224{left:430.080000pt;}
.x31_c01224{left:440.320000pt;}
.x19_c01224{left:441.600000pt;}
.x33_c01224{left:458.880000pt;}
.x2d_c01224{left:468.480000pt;}
.x25_c01224{left:470.400000pt;}
.x1b_c01224{left:479.360000pt;}
.x9_c01224{left:480.640000pt;}
.x17_c01224{left:499.200000pt;}
.xa_c01224{left:500.480000pt;}
.xb_c01224{left:518.400000pt;}
.x1c_c01224{left:547.200000pt;}
.xd_c01224{left:548.480000pt;}
.x34_c01224{left:576.640000pt;}
.xe_c01224{left:577.920000pt;}
.x35_c01224{left:585.600000pt;}
.x1_c01224{left:595.840000pt;}
.xf_c01224{left:606.720000pt;}
.xc_c01224{left:615.680000pt;}
.x10_c01224{left:634.240000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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;}
@font-face{font-family:ff1_c01225;src:url('chunks/assets/font_6cf4a62effe07c95cdae17cb.woff2')format("woff");}.ff1_c01225{font-family:ff1_c01225;line-height:1.109863;font-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_c01225{transform:matrix(0.145825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145825,0.000000,0.000000,0.250000,0,0);}
.m9_c01225{transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);}
.m1d_c01225{transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);}
.me_c01225{transform:matrix(0.236200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236200,0.000000,0.000000,0.250000,0,0);}
.m45_c01225{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m41_c01225{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m13_c01225{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m10_c01225{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);}
.m3e_c01225{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);}
.m32_c01225{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);}
.m4b_c01225{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m7_c01225{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_c01225{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);}
.m35_c01225{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m14_c01225{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m5_c01225{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.ma_c01225{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m27_c01225{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);}
.m3f_c01225{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m4_c01225{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m47_c01225{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m16_c01225{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01225{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1_c01225{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01225{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01225{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m46_c01225{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m23_c01225{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m11_c01225{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m25_c01225{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m31_c01225{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m34_c01225{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mb_c01225{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m38_c01225{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m20_c01225{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01225{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01225{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m26_c01225{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m2_c01225{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01225{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m15_c01225{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m18_c01225{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);}
.m49_c01225{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m8_c01225{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);}
.m4c_c01225{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m24_c01225{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m22_c01225{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m30_c01225{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_c01225{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);}
.m33_c01225{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);}
.m28_c01225{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m40_c01225{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);}
.m2a_c01225{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01225{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);}
.m29_c01225{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_c01225{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);}
.m2b_c01225{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m12_c01225{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m0_c01225{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);}
.mc_c01225{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);}
.m37_c01225{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.mf_c01225{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m21_c01225{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);}
.m3a_c01225{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01225{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);}
.m2c_c01225{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01225{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01225{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);}
.m39_c01225{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m6_c01225{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m48_c01225{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m36_c01225{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);}
.m44_c01225{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);}
.m4d_c01225{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m43_c01225{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01225{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.m42_c01225{transform:matrix(0.960000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.960000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.960000,0.000000,0.000000,0.250000,0,0);}
.m3_c01225{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.v0_c01225{vertical-align:0.000000px;}
.ls0_c01225{letter-spacing:0.000000px;}
.sc__c01225{text-shadow:none;}
.sc0_c01225{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01225{-webkit-text-stroke:0px transparent;}
.sc0_c01225{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01225{word-spacing:0.000000px;}
.ws0_c01225{word-spacing:84.954511px;}
.fc0_c01225{color:transparent;}
.fsc_c01225{font-size:11.520000px;}
.fs3_c01225{font-size:14.400000px;}
.fse_c01225{font-size:17.280000px;}
.fsf_c01225{font-size:25.920000px;}
.fs2_c01225{font-size:43.200000px;}
.fs1_c01225{font-size:46.080000px;}
.fs9_c01225{font-size:48.960000px;}
.fs6_c01225{font-size:51.840000px;}
.fs4_c01225{font-size:54.720000px;}
.fs5_c01225{font-size:57.600000px;}
.fs7_c01225{font-size:60.480000px;}
.fsa_c01225{font-size:63.360000px;}
.fsb_c01225{font-size:66.240000px;}
.fs0_c01225{font-size:69.120000px;}
.fsd_c01225{font-size:72.000000px;}
.fs8_c01225{font-size:74.880000px;}
.y0_c01225{bottom:0.000000px;}
.y90_c01225{bottom:55.440000px;}
.y8d_c01225{bottom:56.160000px;}
.y8e_c01225{bottom:57.600000px;}
.y8f_c01225{bottom:58.320000px;}
.y8c_c01225{bottom:62.640000px;}
.y89_c01225{bottom:99.360000px;}
.y8b_c01225{bottom:100.080000px;}
.y8a_c01225{bottom:100.800000px;}
.y88_c01225{bottom:105.120000px;}
.y83_c01225{bottom:141.840000px;}
.y84_c01225{bottom:143.280000px;}
.y87_c01225{bottom:144.000000px;}
.y85_c01225{bottom:144.720000px;}
.y86_c01225{bottom:145.440000px;}
.y82_c01225{bottom:146.880000px;}
.y81_c01225{bottom:148.320000px;}
.y7e_c01225{bottom:185.040000px;}
.y7f_c01225{bottom:186.480000px;}
.y80_c01225{bottom:187.920000px;}
.y7d_c01225{bottom:189.360000px;}
.y7c_c01225{bottom:190.080000px;}
.y79_c01225{bottom:228.240000px;}
.y7b_c01225{bottom:228.960000px;}
.y7a_c01225{bottom:229.680000px;}
.y78_c01225{bottom:232.560000px;}
.y77_c01225{bottom:233.280000px;}
.y72_c01225{bottom:271.440000px;}
.y76_c01225{bottom:272.160000px;}
.y73_c01225{bottom:272.880000px;}
.y74_c01225{bottom:273.600000px;}
.y71_c01225{bottom:275.760000px;}
.y75_c01225{bottom:282.960000px;}
.y6e_c01225{bottom:313.200000px;}
.y6f_c01225{bottom:316.080000px;}
.y70_c01225{bottom:318.240000px;}
.y6d_c01225{bottom:318.960000px;}
.y6a_c01225{bottom:357.120000px;}
.y6b_c01225{bottom:358.560000px;}
.y69_c01225{bottom:360.720000px;}
.y6c_c01225{bottom:361.440000px;}
.y66_c01225{bottom:399.600000px;}
.y67_c01225{bottom:401.040000px;}
.y68_c01225{bottom:401.760000px;}
.y64_c01225{bottom:403.200000px;}
.y65_c01225{bottom:403.920000px;}
.y62_c01225{bottom:442.080000px;}
.y60_c01225{bottom:444.240000px;}
.y63_c01225{bottom:444.960000px;}
.y61_c01225{bottom:445.680000px;}
.y5d_c01225{bottom:484.560000px;}
.y5e_c01225{bottom:487.440000px;}
.y5c_c01225{bottom:488.160000px;}
.y5f_c01225{bottom:489.600000px;}
.y59_c01225{bottom:528.480000px;}
.y5a_c01225{bottom:529.920000px;}
.y58_c01225{bottom:530.640000px;}
.y5b_c01225{bottom:532.800000px;}
.y54_c01225{bottom:571.680000px;}
.y53_c01225{bottom:573.120000px;}
.y55_c01225{bottom:573.840000px;}
.y56_c01225{bottom:574.560000px;}
.y57_c01225{bottom:583.920000px;}
.y4f_c01225{bottom:613.440000px;}
.y4d_c01225{bottom:616.320000px;}
.y50_c01225{bottom:617.040000px;}
.y51_c01225{bottom:617.760000px;}
.y4e_c01225{bottom:619.920000px;}
.y52_c01225{bottom:626.400000px;}
.y49_c01225{bottom:657.360000px;}
.y48_c01225{bottom:658.800000px;}
.y4b_c01225{bottom:659.520000px;}
.y4a_c01225{bottom:660.240000px;}
.y4c_c01225{bottom:660.960000px;}
.y45_c01225{bottom:699.120000px;}
.y46_c01225{bottom:699.840000px;}
.y43_c01225{bottom:701.280000px;}
.y42_c01225{bottom:703.440000px;}
.y47_c01225{bottom:704.160000px;}
.y44_c01225{bottom:706.320000px;}
.y3e_c01225{bottom:743.040000px;}
.y3d_c01225{bottom:744.480000px;}
.y3f_c01225{bottom:746.640000px;}
.y40_c01225{bottom:747.360000px;}
.y41_c01225{bottom:748.800000px;}
.y39_c01225{bottom:786.240000px;}
.y38_c01225{bottom:786.960000px;}
.y3a_c01225{bottom:789.840000px;}
.y3c_c01225{bottom:790.560000px;}
.y3b_c01225{bottom:791.280000px;}
.y34_c01225{bottom:828.720000px;}
.y35_c01225{bottom:830.160000px;}
.y36_c01225{bottom:830.880000px;}
.y37_c01225{bottom:832.320000px;}
.y31_c01225{bottom:886.320000px;}
.y33_c01225{bottom:887.040000px;}
.y32_c01225{bottom:889.920000px;}
.y2f_c01225{bottom:907.200000px;}
.y2e_c01225{bottom:908.640000px;}
.y30_c01225{bottom:909.360000px;}
.y28_c01225{bottom:928.080000px;}
.y2a_c01225{bottom:928.800000px;}
.y2b_c01225{bottom:929.520000px;}
.y29_c01225{bottom:930.240000px;}
.y2d_c01225{bottom:930.960000px;}
.y2c_c01225{bottom:932.400000px;}
.y22_c01225{bottom:947.520000px;}
.y21_c01225{bottom:948.960000px;}
.y23_c01225{bottom:949.680000px;}
.y24_c01225{bottom:950.400000px;}
.y25_c01225{bottom:951.120000px;}
.y27_c01225{bottom:952.560000px;}
.y26_c01225{bottom:954.000000px;}
.y1b_c01225{bottom:970.560000px;}
.y1d_c01225{bottom:971.280000px;}
.y1f_c01225{bottom:972.720000px;}
.y1e_c01225{bottom:973.440000px;}
.y1c_c01225{bottom:974.160000px;}
.y20_c01225{bottom:975.600000px;}
.y17_c01225{bottom:981.360000px;}
.y18_c01225{bottom:982.080000px;}
.y19_c01225{bottom:982.800000px;}
.y1a_c01225{bottom:983.520000px;}
.y13_c01225{bottom:992.160000px;}
.y14_c01225{bottom:993.600000px;}
.y16_c01225{bottom:994.320000px;}
.y12_c01225{bottom:995.040000px;}
.y15_c01225{bottom:997.200000px;}
.yb_c01225{bottom:1011.600000px;}
.yc_c01225{bottom:1013.760000px;}
.y10_c01225{bottom:1014.480000px;}
.yd_c01225{bottom:1015.200000px;}
.ye_c01225{bottom:1015.920000px;}
.yf_c01225{bottom:1016.640000px;}
.y11_c01225{bottom:1017.360000px;}
.y2_c01225{bottom:1043.280000px;}
.y5_c01225{bottom:1044.000000px;}
.y3_c01225{bottom:1044.720000px;}
.ya_c01225{bottom:1045.440000px;}
.y6_c01225{bottom:1046.160000px;}
.y4_c01225{bottom:1046.880000px;}
.y8_c01225{bottom:1047.600000px;}
.y7_c01225{bottom:1049.040000px;}
.y9_c01225{bottom:1049.760000px;}
.y1_c01225{bottom:1126.800000px;}
.he_c01225{height:10.366875px;}
.h5_c01225{height:12.958594px;}
.h10_c01225{height:15.550313px;}
.h11_c01225{height:23.325469px;}
.h4_c01225{height:38.875781px;}
.h3_c01225{height:41.467500px;}
.hb_c01225{height:44.059219px;}
.h8_c01225{height:46.650937px;}
.h6_c01225{height:49.242656px;}
.h7_c01225{height:51.834375px;}
.h9_c01225{height:54.426094px;}
.hc_c01225{height:57.017812px;}
.hd_c01225{height:59.609531px;}
.h2_c01225{height:62.201250px;}
.hf_c01225{height:64.792969px;}
.ha_c01225{height:67.384687px;}
.h1_c01225{height:1167.750000px;}
.h0_c01225{height:1167.840000px;}
.w0_c01225{width:775.440000px;}
.w1_c01225{width:775.500000px;}
.x0_c01225{left:0.000000px;}
.x2_c01225{left:59.760000px;}
.x29_c01225{left:61.920000px;}
.x33_c01225{left:63.360000px;}
.x39_c01225{left:64.800000px;}
.x3_c01225{left:79.200000px;}
.x11_c01225{left:80.640000px;}
.x21_c01225{left:88.560000px;}
.x1c_c01225{left:90.720000px;}
.x4_c01225{left:99.360000px;}
.x30_c01225{left:101.520000px;}
.x26_c01225{left:110.880000px;}
.x5_c01225{left:121.680000px;}
.x12_c01225{left:132.480000px;}
.x2a_c01225{left:142.560000px;}
.x3b_c01225{left:144.000000px;}
.x36_c01225{left:155.520000px;}
.x1d_c01225{left:163.440000px;}
.x6_c01225{left:174.240000px;}
.x1e_c01225{left:184.320000px;}
.x32_c01225{left:185.760000px;}
.x7_c01225{left:194.400000px;}
.x13_c01225{left:204.480000px;}
.x34_c01225{left:217.440000px;}
.x3c_c01225{left:218.880000px;}
.x8_c01225{left:238.320000px;}
.x27_c01225{left:262.080000px;}
.x9_c01225{left:280.800000px;}
.x14_c01225{left:292.320000px;}
.xa_c01225{left:313.200000px;}
.x15_c01225{left:336.240000px;}
.x28_c01225{left:355.680000px;}
.x16_c01225{left:367.200000px;}
.x22_c01225{left:369.360000px;}
.xb_c01225{left:388.800000px;}
.xc_c01225{left:432.720000px;}
.x23_c01225{left:434.160000px;}
.x17_c01225{left:442.800000px;}
.x1f_c01225{left:465.840000px;}
.xd_c01225{left:508.320000px;}
.x18_c01225{left:509.760000px;}
.x2b_c01225{left:531.360000px;}
.x38_c01225{left:532.800000px;}
.xe_c01225{left:540.720000px;}
.x24_c01225{left:552.960000px;}
.x19_c01225{left:563.760000px;}
.x1a_c01225{left:585.360000px;}
.x31_c01225{left:586.800000px;}
.x1b_c01225{left:595.440000px;}
.x2d_c01225{left:596.880000px;}
.xf_c01225{left:617.040000px;}
.x35_c01225{left:619.920000px;}
.x3d_c01225{left:621.360000px;}
.x25_c01225{left:651.600000px;}
.x1_c01225{left:653.040000px;}
.x3a_c01225{left:654.480000px;}
.x10_c01225{left:660.960000px;}
.x20_c01225{left:662.400000px;}
.x2c_c01225{left:695.520000px;}
.x2e_c01225{left:697.680000px;}
.x2f_c01225{left:699.120000px;}
.x37_c01225{left:717.840000px;}
.x3e_c01225{left:719.280000px;}
@media print{
.v0_c01225{vertical-align:0.000000pt;}
.ls0_c01225{letter-spacing:0.000000pt;}
.ws1_c01225{word-spacing:0.000000pt;}
.ws0_c01225{word-spacing:75.515121pt;}
.fsc_c01225{font-size:10.240000pt;}
.fs3_c01225{font-size:12.800000pt;}
.fse_c01225{font-size:15.360000pt;}
.fsf_c01225{font-size:23.040000pt;}
.fs2_c01225{font-size:38.400000pt;}
.fs1_c01225{font-size:40.960000pt;}
.fs9_c01225{font-size:43.520000pt;}
.fs6_c01225{font-size:46.080000pt;}
.fs4_c01225{font-size:48.640000pt;}
.fs5_c01225{font-size:51.200000pt;}
.fs7_c01225{font-size:53.760000pt;}
.fsa_c01225{font-size:56.320000pt;}
.fsb_c01225{font-size:58.880000pt;}
.fs0_c01225{font-size:61.440000pt;}
.fsd_c01225{font-size:64.000000pt;}
.fs8_c01225{font-size:66.560000pt;}
.y0_c01225{bottom:0.000000pt;}
.y90_c01225{bottom:49.280000pt;}
.y8d_c01225{bottom:49.920000pt;}
.y8e_c01225{bottom:51.200000pt;}
.y8f_c01225{bottom:51.840000pt;}
.y8c_c01225{bottom:55.680000pt;}
.y89_c01225{bottom:88.320000pt;}
.y8b_c01225{bottom:88.960000pt;}
.y8a_c01225{bottom:89.600000pt;}
.y88_c01225{bottom:93.440000pt;}
.y83_c01225{bottom:126.080000pt;}
.y84_c01225{bottom:127.360000pt;}
.y87_c01225{bottom:128.000000pt;}
.y85_c01225{bottom:128.640000pt;}
.y86_c01225{bottom:129.280000pt;}
.y82_c01225{bottom:130.560000pt;}
.y81_c01225{bottom:131.840000pt;}
.y7e_c01225{bottom:164.480000pt;}
.y7f_c01225{bottom:165.760000pt;}
.y80_c01225{bottom:167.040000pt;}
.y7d_c01225{bottom:168.320000pt;}
.y7c_c01225{bottom:168.960000pt;}
.y79_c01225{bottom:202.880000pt;}
.y7b_c01225{bottom:203.520000pt;}
.y7a_c01225{bottom:204.160000pt;}
.y78_c01225{bottom:206.720000pt;}
.y77_c01225{bottom:207.360000pt;}
.y72_c01225{bottom:241.280000pt;}
.y76_c01225{bottom:241.920000pt;}
.y73_c01225{bottom:242.560000pt;}
.y74_c01225{bottom:243.200000pt;}
.y71_c01225{bottom:245.120000pt;}
.y75_c01225{bottom:251.520000pt;}
.y6e_c01225{bottom:278.400000pt;}
.y6f_c01225{bottom:280.960000pt;}
.y70_c01225{bottom:282.880000pt;}
.y6d_c01225{bottom:283.520000pt;}
.y6a_c01225{bottom:317.440000pt;}
.y6b_c01225{bottom:318.720000pt;}
.y69_c01225{bottom:320.640000pt;}
.y6c_c01225{bottom:321.280000pt;}
.y66_c01225{bottom:355.200000pt;}
.y67_c01225{bottom:356.480000pt;}
.y68_c01225{bottom:357.120000pt;}
.y64_c01225{bottom:358.400000pt;}
.y65_c01225{bottom:359.040000pt;}
.y62_c01225{bottom:392.960000pt;}
.y60_c01225{bottom:394.880000pt;}
.y63_c01225{bottom:395.520000pt;}
.y61_c01225{bottom:396.160000pt;}
.y5d_c01225{bottom:430.720000pt;}
.y5e_c01225{bottom:433.280000pt;}
.y5c_c01225{bottom:433.920000pt;}
.y5f_c01225{bottom:435.200000pt;}
.y59_c01225{bottom:469.760000pt;}
.y5a_c01225{bottom:471.040000pt;}
.y58_c01225{bottom:471.680000pt;}
.y5b_c01225{bottom:473.600000pt;}
.y54_c01225{bottom:508.160000pt;}
.y53_c01225{bottom:509.440000pt;}
.y55_c01225{bottom:510.080000pt;}
.y56_c01225{bottom:510.720000pt;}
.y57_c01225{bottom:519.040000pt;}
.y4f_c01225{bottom:545.280000pt;}
.y4d_c01225{bottom:547.840000pt;}
.y50_c01225{bottom:548.480000pt;}
.y51_c01225{bottom:549.120000pt;}
.y4e_c01225{bottom:551.040000pt;}
.y52_c01225{bottom:556.800000pt;}
.y49_c01225{bottom:584.320000pt;}
.y48_c01225{bottom:585.600000pt;}
.y4b_c01225{bottom:586.240000pt;}
.y4a_c01225{bottom:586.880000pt;}
.y4c_c01225{bottom:587.520000pt;}
.y45_c01225{bottom:621.440000pt;}
.y46_c01225{bottom:622.080000pt;}
.y43_c01225{bottom:623.360000pt;}
.y42_c01225{bottom:625.280000pt;}
.y47_c01225{bottom:625.920000pt;}
.y44_c01225{bottom:627.840000pt;}
.y3e_c01225{bottom:660.480000pt;}
.y3d_c01225{bottom:661.760000pt;}
.y3f_c01225{bottom:663.680000pt;}
.y40_c01225{bottom:664.320000pt;}
.y41_c01225{bottom:665.600000pt;}
.y39_c01225{bottom:698.880000pt;}
.y38_c01225{bottom:699.520000pt;}
.y3a_c01225{bottom:702.080000pt;}
.y3c_c01225{bottom:702.720000pt;}
.y3b_c01225{bottom:703.360000pt;}
.y34_c01225{bottom:736.640000pt;}
.y35_c01225{bottom:737.920000pt;}
.y36_c01225{bottom:738.560000pt;}
.y37_c01225{bottom:739.840000pt;}
.y31_c01225{bottom:787.840000pt;}
.y33_c01225{bottom:788.480000pt;}
.y32_c01225{bottom:791.040000pt;}
.y2f_c01225{bottom:806.400000pt;}
.y2e_c01225{bottom:807.680000pt;}
.y30_c01225{bottom:808.320000pt;}
.y28_c01225{bottom:824.960000pt;}
.y2a_c01225{bottom:825.600000pt;}
.y2b_c01225{bottom:826.240000pt;}
.y29_c01225{bottom:826.880000pt;}
.y2d_c01225{bottom:827.520000pt;}
.y2c_c01225{bottom:828.800000pt;}
.y22_c01225{bottom:842.240000pt;}
.y21_c01225{bottom:843.520000pt;}
.y23_c01225{bottom:844.160000pt;}
.y24_c01225{bottom:844.800000pt;}
.y25_c01225{bottom:845.440000pt;}
.y27_c01225{bottom:846.720000pt;}
.y26_c01225{bottom:848.000000pt;}
.y1b_c01225{bottom:862.720000pt;}
.y1d_c01225{bottom:863.360000pt;}
.y1f_c01225{bottom:864.640000pt;}
.y1e_c01225{bottom:865.280000pt;}
.y1c_c01225{bottom:865.920000pt;}
.y20_c01225{bottom:867.200000pt;}
.y17_c01225{bottom:872.320000pt;}
.y18_c01225{bottom:872.960000pt;}
.y19_c01225{bottom:873.600000pt;}
.y1a_c01225{bottom:874.240000pt;}
.y13_c01225{bottom:881.920000pt;}
.y14_c01225{bottom:883.200000pt;}
.y16_c01225{bottom:883.840000pt;}
.y12_c01225{bottom:884.480000pt;}
.y15_c01225{bottom:886.400000pt;}
.yb_c01225{bottom:899.200000pt;}
.yc_c01225{bottom:901.120000pt;}
.y10_c01225{bottom:901.760000pt;}
.yd_c01225{bottom:902.400000pt;}
.ye_c01225{bottom:903.040000pt;}
.yf_c01225{bottom:903.680000pt;}
.y11_c01225{bottom:904.320000pt;}
.y2_c01225{bottom:927.360000pt;}
.y5_c01225{bottom:928.000000pt;}
.y3_c01225{bottom:928.640000pt;}
.ya_c01225{bottom:929.280000pt;}
.y6_c01225{bottom:929.920000pt;}
.y4_c01225{bottom:930.560000pt;}
.y8_c01225{bottom:931.200000pt;}
.y7_c01225{bottom:932.480000pt;}
.y9_c01225{bottom:933.120000pt;}
.y1_c01225{bottom:1001.600000pt;}
.he_c01225{height:9.215000pt;}
.h5_c01225{height:11.518750pt;}
.h10_c01225{height:13.822500pt;}
.h11_c01225{height:20.733750pt;}
.h4_c01225{height:34.556250pt;}
.h3_c01225{height:36.860000pt;}
.hb_c01225{height:39.163750pt;}
.h8_c01225{height:41.467500pt;}
.h6_c01225{height:43.771250pt;}
.h7_c01225{height:46.075000pt;}
.h9_c01225{height:48.378750pt;}
.hc_c01225{height:50.682500pt;}
.hd_c01225{height:52.986250pt;}
.h2_c01225{height:55.290000pt;}
.hf_c01225{height:57.593750pt;}
.ha_c01225{height:59.897500pt;}
.h1_c01225{height:1038.000000pt;}
.h0_c01225{height:1038.080000pt;}
.w0_c01225{width:689.280000pt;}
.w1_c01225{width:689.333333pt;}
.x0_c01225{left:0.000000pt;}
.x2_c01225{left:53.120000pt;}
.x29_c01225{left:55.040000pt;}
.x33_c01225{left:56.320000pt;}
.x39_c01225{left:57.600000pt;}
.x3_c01225{left:70.400000pt;}
.x11_c01225{left:71.680000pt;}
.x21_c01225{left:78.720000pt;}
.x1c_c01225{left:80.640000pt;}
.x4_c01225{left:88.320000pt;}
.x30_c01225{left:90.240000pt;}
.x26_c01225{left:98.560000pt;}
.x5_c01225{left:108.160000pt;}
.x12_c01225{left:117.760000pt;}
.x2a_c01225{left:126.720000pt;}
.x3b_c01225{left:128.000000pt;}
.x36_c01225{left:138.240000pt;}
.x1d_c01225{left:145.280000pt;}
.x6_c01225{left:154.880000pt;}
.x1e_c01225{left:163.840000pt;}
.x32_c01225{left:165.120000pt;}
.x7_c01225{left:172.800000pt;}
.x13_c01225{left:181.760000pt;}
.x34_c01225{left:193.280000pt;}
.x3c_c01225{left:194.560000pt;}
.x8_c01225{left:211.840000pt;}
.x27_c01225{left:232.960000pt;}
.x9_c01225{left:249.600000pt;}
.x14_c01225{left:259.840000pt;}
.xa_c01225{left:278.400000pt;}
.x15_c01225{left:298.880000pt;}
.x28_c01225{left:316.160000pt;}
.x16_c01225{left:326.400000pt;}
.x22_c01225{left:328.320000pt;}
.xb_c01225{left:345.600000pt;}
.xc_c01225{left:384.640000pt;}
.x23_c01225{left:385.920000pt;}
.x17_c01225{left:393.600000pt;}
.x1f_c01225{left:414.080000pt;}
.xd_c01225{left:451.840000pt;}
.x18_c01225{left:453.120000pt;}
.x2b_c01225{left:472.320000pt;}
.x38_c01225{left:473.600000pt;}
.xe_c01225{left:480.640000pt;}
.x24_c01225{left:491.520000pt;}
.x19_c01225{left:501.120000pt;}
.x1a_c01225{left:520.320000pt;}
.x31_c01225{left:521.600000pt;}
.x1b_c01225{left:529.280000pt;}
.x2d_c01225{left:530.560000pt;}
.xf_c01225{left:548.480000pt;}
.x35_c01225{left:551.040000pt;}
.x3d_c01225{left:552.320000pt;}
.x25_c01225{left:579.200000pt;}
.x1_c01225{left:580.480000pt;}
.x3a_c01225{left:581.760000pt;}
.x10_c01225{left:587.520000pt;}
.x20_c01225{left:588.800000pt;}
.x2c_c01225{left:618.240000pt;}
.x2e_c01225{left:620.160000pt;}
.x2f_c01225{left:621.440000pt;}
.x37_c01225{left:638.080000pt;}
.x3e_c01225{left:639.360000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f8878e782ee747dd651b1c62.woff2')format("woff");}.ff1_c01226{font-family:ff1_c01226;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m46_c01226{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);}
.m2a_c01226{transform:matrix(0.231550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231550,0.000000,0.000000,0.250000,0,0);}
.m6_c01226{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m2c_c01226{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m49_c01226{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m15_c01226{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m16_c01226{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);}
.m35_c01226{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_c01226{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m26_c01226{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m2_c01226{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01226{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);}
.m2e_c01226{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01226{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mf_c01226{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);}
.m22_c01226{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m4_c01226{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m17_c01226{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m27_c01226{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m3_c01226{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01226{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01226{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01226{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m5_c01226{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m7_c01226{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1_c01226{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m28_c01226{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m47_c01226{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.md_c01226{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m8_c01226{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mb_c01226{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01226{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);}
.m34_c01226{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);}
.m40_c01226{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);}
.m21_c01226{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m39_c01226{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);}
.m31_c01226{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m36_c01226{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m19_c01226{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);}
.m12_c01226{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);}
.m1d_c01226{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01226{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m33_c01226{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m0_c01226{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);}
.m4b_c01226{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);}
.m2b_c01226{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m13_c01226{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.me_c01226{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m44_c01226{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m11_c01226{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01226{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);}
.m37_c01226{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01226{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01226{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m29_c01226{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01226{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);}
.m32_c01226{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m41_c01226{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01226{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m9_c01226{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m25_c01226{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m24_c01226{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m45_c01226{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.ma_c01226{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m48_c01226{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m42_c01226{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m38_c01226{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);}
.m23_c01226{transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);}
.m43_c01226{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01226{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01226{transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);}
.m20_c01226{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.m18_c01226{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m30_c01226{transform:matrix(0.817500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.817500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.817500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01226{transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);}
.m10_c01226{transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);}
.v1_c01226{vertical-align:-5.760000px;}
.v2_c01226{vertical-align:-2.880000px;}
.v0_c01226{vertical-align:0.000000px;}
.ls0_c01226{letter-spacing:0.000000px;}
.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;}
}
.ws3_c01226{word-spacing:0.000000px;}
.ws2_c01226{word-spacing:9.655891px;}
.ws1_c01226{word-spacing:9.658800px;}
.ws0_c01226{word-spacing:14.041200px;}
.fc0_c01226{color:transparent;}
.fsc_c01226{font-size:14.400000px;}
.fs7_c01226{font-size:34.560000px;}
.fsd_c01226{font-size:37.440000px;}
.fsa_c01226{font-size:43.200000px;}
.fs8_c01226{font-size:46.080000px;}
.fs6_c01226{font-size:48.960000px;}
.fs5_c01226{font-size:51.840000px;}
.fs9_c01226{font-size:54.720000px;}
.fs4_c01226{font-size:57.600000px;}
.fs3_c01226{font-size:60.480000px;}
.fs1_c01226{font-size:63.360000px;}
.fsb_c01226{font-size:66.240000px;}
.fs0_c01226{font-size:69.120000px;}
.fs2_c01226{font-size:72.000000px;}
.fse_c01226{font-size:74.880000px;}
.y0_c01226{bottom:0.000000px;}
.y7f_c01226{bottom:56.160000px;}
.y7d_c01226{bottom:57.600000px;}
.y80_c01226{bottom:58.320000px;}
.y7e_c01226{bottom:59.760000px;}
.y7c_c01226{bottom:64.080000px;}
.y7a_c01226{bottom:98.640000px;}
.y78_c01226{bottom:99.360000px;}
.y77_c01226{bottom:100.080000px;}
.y7b_c01226{bottom:102.240000px;}
.y79_c01226{bottom:102.960000px;}
.y76_c01226{bottom:105.840000px;}
.y75_c01226{bottom:141.840000px;}
.y74_c01226{bottom:146.880000px;}
.y70_c01226{bottom:174.960000px;}
.y72_c01226{bottom:177.120000px;}
.y71_c01226{bottom:177.840000px;}
.y73_c01226{bottom:178.560000px;}
.y6f_c01226{bottom:180.000000px;}
.y6d_c01226{bottom:217.440000px;}
.y6b_c01226{bottom:218.160000px;}
.y6c_c01226{bottom:218.880000px;}
.y6e_c01226{bottom:220.320000px;}
.y6a_c01226{bottom:223.920000px;}
.y65_c01226{bottom:259.920000px;}
.y66_c01226{bottom:261.360000px;}
.y69_c01226{bottom:262.080000px;}
.y67_c01226{bottom:262.800000px;}
.y68_c01226{bottom:263.520000px;}
.y64_c01226{bottom:264.240000px;}
.y63_c01226{bottom:264.960000px;}
.y5f_c01226{bottom:302.400000px;}
.y62_c01226{bottom:303.840000px;}
.y60_c01226{bottom:304.560000px;}
.y61_c01226{bottom:305.280000px;}
.y5d_c01226{bottom:306.720000px;}
.y5e_c01226{bottom:307.440000px;}
.y5b_c01226{bottom:345.600000px;}
.y5c_c01226{bottom:348.480000px;}
.y59_c01226{bottom:349.920000px;}
.y5a_c01226{bottom:350.640000px;}
.y55_c01226{bottom:389.520000px;}
.y56_c01226{bottom:390.960000px;}
.y57_c01226{bottom:393.120000px;}
.y54_c01226{bottom:393.840000px;}
.y58_c01226{bottom:394.560000px;}
.y50_c01226{bottom:432.000000px;}
.y4f_c01226{bottom:434.160000px;}
.y51_c01226{bottom:434.880000px;}
.y53_c01226{bottom:435.600000px;}
.y52_c01226{bottom:436.320000px;}
.y4c_c01226{bottom:475.200000px;}
.y4e_c01226{bottom:476.640000px;}
.y4b_c01226{bottom:477.360000px;}
.y4a_c01226{bottom:479.520000px;}
.y4d_c01226{bottom:480.240000px;}
.y47_c01226{bottom:517.680000px;}
.y45_c01226{bottom:519.840000px;}
.y48_c01226{bottom:520.560000px;}
.y44_c01226{bottom:521.280000px;}
.y46_c01226{bottom:522.000000px;}
.y49_c01226{bottom:522.720000px;}
.y41_c01226{bottom:560.880000px;}
.y3e_c01226{bottom:563.760000px;}
.y3f_c01226{bottom:564.480000px;}
.y40_c01226{bottom:565.200000px;}
.y42_c01226{bottom:565.920000px;}
.y43_c01226{bottom:567.360000px;}
.y3a_c01226{bottom:604.800000px;}
.y39_c01226{bottom:606.240000px;}
.y3b_c01226{bottom:606.960000px;}
.y3c_c01226{bottom:608.400000px;}
.y3d_c01226{bottom:609.120000px;}
.y34_c01226{bottom:647.280000px;}
.y32_c01226{bottom:648.000000px;}
.y35_c01226{bottom:650.160000px;}
.y33_c01226{bottom:650.880000px;}
.y36_c01226{bottom:651.600000px;}
.y38_c01226{bottom:652.320000px;}
.y37_c01226{bottom:653.040000px;}
.y2f_c01226{bottom:689.760000px;}
.y2e_c01226{bottom:691.200000px;}
.y30_c01226{bottom:692.640000px;}
.y31_c01226{bottom:694.800000px;}
.y28_c01226{bottom:732.960000px;}
.y27_c01226{bottom:734.400000px;}
.y2b_c01226{bottom:735.120000px;}
.y29_c01226{bottom:735.840000px;}
.y2a_c01226{bottom:736.560000px;}
.y2c_c01226{bottom:738.000000px;}
.y2d_c01226{bottom:738.720000px;}
.y23_c01226{bottom:775.440000px;}
.y21_c01226{bottom:776.160000px;}
.y22_c01226{bottom:777.600000px;}
.y24_c01226{bottom:779.040000px;}
.y25_c01226{bottom:781.200000px;}
.y26_c01226{bottom:781.920000px;}
.y1c_c01226{bottom:818.640000px;}
.y1f_c01226{bottom:821.520000px;}
.y1d_c01226{bottom:822.240000px;}
.y20_c01226{bottom:822.960000px;}
.y1e_c01226{bottom:823.680000px;}
.y18_c01226{bottom:861.120000px;}
.y19_c01226{bottom:864.720000px;}
.y1b_c01226{bottom:866.880000px;}
.y1a_c01226{bottom:868.320000px;}
.y14_c01226{bottom:904.320000px;}
.y15_c01226{bottom:907.200000px;}
.y17_c01226{bottom:910.080000px;}
.y16_c01226{bottom:910.800000px;}
.yd_c01226{bottom:946.800000px;}
.y10_c01226{bottom:948.240000px;}
.ye_c01226{bottom:949.680000px;}
.y11_c01226{bottom:950.400000px;}
.yf_c01226{bottom:951.120000px;}
.y12_c01226{bottom:951.840000px;}
.y13_c01226{bottom:953.280000px;}
.y7_c01226{bottom:990.000000px;}
.yb_c01226{bottom:991.440000px;}
.y8_c01226{bottom:992.880000px;}
.y9_c01226{bottom:994.320000px;}
.ya_c01226{bottom:995.040000px;}
.yc_c01226{bottom:997.200000px;}
.y2_c01226{bottom:1032.480000px;}
.y3_c01226{bottom:1033.920000px;}
.y4_c01226{bottom:1038.240000px;}
.y6_c01226{bottom:1038.960000px;}
.y5_c01226{bottom:1039.680000px;}
.y1_c01226{bottom:1114.560000px;}
.he_c01226{height:12.958594px;}
.h9_c01226{height:31.100625px;}
.hf_c01226{height:33.692344px;}
.hc_c01226{height:38.875781px;}
.ha_c01226{height:41.467500px;}
.h8_c01226{height:44.059219px;}
.h7_c01226{height:46.650937px;}
.hb_c01226{height:49.242656px;}
.h6_c01226{height:51.834375px;}
.h5_c01226{height:54.426094px;}
.h3_c01226{height:57.017812px;}
.hd_c01226{height:59.609531px;}
.h2_c01226{height:62.201250px;}
.h4_c01226{height:64.792969px;}
.h10_c01226{height:67.384687px;}
.h1_c01226{height:1168.500000px;}
.h0_c01226{height:1168.560000px;}
.w0_c01226{width:776.160000px;}
.w1_c01226{width:776.250000px;}
.x0_c01226{left:0.000000px;}
.x2_c01226{left:56.880000px;}
.x11_c01226{left:58.320000px;}
.x25_c01226{left:59.760000px;}
.x32_c01226{left:61.200000px;}
.x3_c01226{left:136.800000px;}
.x1d_c01226{left:138.240000px;}
.x36_c01226{left:140.400000px;}
.x2f_c01226{left:141.840000px;}
.x1a_c01226{left:149.760000px;}
.x27_c01226{left:151.200000px;}
.x8_c01226{left:178.560000px;}
.x14_c01226{left:181.440000px;}
.x30_c01226{left:193.680000px;}
.xd_c01226{left:222.480000px;}
.x1e_c01226{left:223.920000px;}
.x9_c01226{left:233.280000px;}
.x23_c01226{left:234.720000px;}
.xe_c01226{left:265.680000px;}
.x1b_c01226{left:267.840000px;}
.x16_c01226{left:277.920000px;}
.x31_c01226{left:279.360000px;}
.xa_c01226{left:287.280000px;}
.x26_c01226{left:288.720000px;}
.x33_c01226{left:290.880000px;}
.x22_c01226{left:298.800000px;}
.xf_c01226{left:308.880000px;}
.x17_c01226{left:319.680000px;}
.x2b_c01226{left:321.840000px;}
.xb_c01226{left:330.480000px;}
.x37_c01226{left:332.640000px;}
.x34_c01226{left:377.280000px;}
.x2c_c01226{left:388.080000px;}
.x38_c01226{left:419.760000px;}
.x2d_c01226{left:429.840000px;}
.x35_c01226{left:474.480000px;}
.x2e_c01226{left:475.920000px;}
.x4_c01226{left:525.600000px;}
.x12_c01226{left:527.040000px;}
.x28_c01226{left:528.480000px;}
.x13_c01226{left:591.840000px;}
.x5_c01226{left:613.440000px;}
.x15_c01226{left:614.880000px;}
.x1f_c01226{left:616.320000px;}
.x1_c01226{left:642.960000px;}
.x6_c01226{left:646.560000px;}
.x18_c01226{left:648.000000px;}
.x29_c01226{left:649.440000px;}
.x10_c01226{left:679.680000px;}
.x24_c01226{left:681.840000px;}
.x7_c01226{left:689.760000px;}
.x1c_c01226{left:691.200000px;}
.x20_c01226{left:692.640000px;}
.xc_c01226{left:709.920000px;}
.x19_c01226{left:711.360000px;}
.x21_c01226{left:712.800000px;}
.x2a_c01226{left:714.240000px;}
@media print{
.v1_c01226{vertical-align:-5.120000pt;}
.v2_c01226{vertical-align:-2.560000pt;}
.v0_c01226{vertical-align:0.000000pt;}
.ls0_c01226{letter-spacing:0.000000pt;}
.ws3_c01226{word-spacing:0.000000pt;}
.ws2_c01226{word-spacing:8.583014pt;}
.ws1_c01226{word-spacing:8.585600pt;}
.ws0_c01226{word-spacing:12.481067pt;}
.fsc_c01226{font-size:12.800000pt;}
.fs7_c01226{font-size:30.720000pt;}
.fsd_c01226{font-size:33.280000pt;}
.fsa_c01226{font-size:38.400000pt;}
.fs8_c01226{font-size:40.960000pt;}
.fs6_c01226{font-size:43.520000pt;}
.fs5_c01226{font-size:46.080000pt;}
.fs9_c01226{font-size:48.640000pt;}
.fs4_c01226{font-size:51.200000pt;}
.fs3_c01226{font-size:53.760000pt;}
.fs1_c01226{font-size:56.320000pt;}
.fsb_c01226{font-size:58.880000pt;}
.fs0_c01226{font-size:61.440000pt;}
.fs2_c01226{font-size:64.000000pt;}
.fse_c01226{font-size:66.560000pt;}
.y0_c01226{bottom:0.000000pt;}
.y7f_c01226{bottom:49.920000pt;}
.y7d_c01226{bottom:51.200000pt;}
.y80_c01226{bottom:51.840000pt;}
.y7e_c01226{bottom:53.120000pt;}
.y7c_c01226{bottom:56.960000pt;}
.y7a_c01226{bottom:87.680000pt;}
.y78_c01226{bottom:88.320000pt;}
.y77_c01226{bottom:88.960000pt;}
.y7b_c01226{bottom:90.880000pt;}
.y79_c01226{bottom:91.520000pt;}
.y76_c01226{bottom:94.080000pt;}
.y75_c01226{bottom:126.080000pt;}
.y74_c01226{bottom:130.560000pt;}
.y70_c01226{bottom:155.520000pt;}
.y72_c01226{bottom:157.440000pt;}
.y71_c01226{bottom:158.080000pt;}
.y73_c01226{bottom:158.720000pt;}
.y6f_c01226{bottom:160.000000pt;}
.y6d_c01226{bottom:193.280000pt;}
.y6b_c01226{bottom:193.920000pt;}
.y6c_c01226{bottom:194.560000pt;}
.y6e_c01226{bottom:195.840000pt;}
.y6a_c01226{bottom:199.040000pt;}
.y65_c01226{bottom:231.040000pt;}
.y66_c01226{bottom:232.320000pt;}
.y69_c01226{bottom:232.960000pt;}
.y67_c01226{bottom:233.600000pt;}
.y68_c01226{bottom:234.240000pt;}
.y64_c01226{bottom:234.880000pt;}
.y63_c01226{bottom:235.520000pt;}
.y5f_c01226{bottom:268.800000pt;}
.y62_c01226{bottom:270.080000pt;}
.y60_c01226{bottom:270.720000pt;}
.y61_c01226{bottom:271.360000pt;}
.y5d_c01226{bottom:272.640000pt;}
.y5e_c01226{bottom:273.280000pt;}
.y5b_c01226{bottom:307.200000pt;}
.y5c_c01226{bottom:309.760000pt;}
.y59_c01226{bottom:311.040000pt;}
.y5a_c01226{bottom:311.680000pt;}
.y55_c01226{bottom:346.240000pt;}
.y56_c01226{bottom:347.520000pt;}
.y57_c01226{bottom:349.440000pt;}
.y54_c01226{bottom:350.080000pt;}
.y58_c01226{bottom:350.720000pt;}
.y50_c01226{bottom:384.000000pt;}
.y4f_c01226{bottom:385.920000pt;}
.y51_c01226{bottom:386.560000pt;}
.y53_c01226{bottom:387.200000pt;}
.y52_c01226{bottom:387.840000pt;}
.y4c_c01226{bottom:422.400000pt;}
.y4e_c01226{bottom:423.680000pt;}
.y4b_c01226{bottom:424.320000pt;}
.y4a_c01226{bottom:426.240000pt;}
.y4d_c01226{bottom:426.880000pt;}
.y47_c01226{bottom:460.160000pt;}
.y45_c01226{bottom:462.080000pt;}
.y48_c01226{bottom:462.720000pt;}
.y44_c01226{bottom:463.360000pt;}
.y46_c01226{bottom:464.000000pt;}
.y49_c01226{bottom:464.640000pt;}
.y41_c01226{bottom:498.560000pt;}
.y3e_c01226{bottom:501.120000pt;}
.y3f_c01226{bottom:501.760000pt;}
.y40_c01226{bottom:502.400000pt;}
.y42_c01226{bottom:503.040000pt;}
.y43_c01226{bottom:504.320000pt;}
.y3a_c01226{bottom:537.600000pt;}
.y39_c01226{bottom:538.880000pt;}
.y3b_c01226{bottom:539.520000pt;}
.y3c_c01226{bottom:540.800000pt;}
.y3d_c01226{bottom:541.440000pt;}
.y34_c01226{bottom:575.360000pt;}
.y32_c01226{bottom:576.000000pt;}
.y35_c01226{bottom:577.920000pt;}
.y33_c01226{bottom:578.560000pt;}
.y36_c01226{bottom:579.200000pt;}
.y38_c01226{bottom:579.840000pt;}
.y37_c01226{bottom:580.480000pt;}
.y2f_c01226{bottom:613.120000pt;}
.y2e_c01226{bottom:614.400000pt;}
.y30_c01226{bottom:615.680000pt;}
.y31_c01226{bottom:617.600000pt;}
.y28_c01226{bottom:651.520000pt;}
.y27_c01226{bottom:652.800000pt;}
.y2b_c01226{bottom:653.440000pt;}
.y29_c01226{bottom:654.080000pt;}
.y2a_c01226{bottom:654.720000pt;}
.y2c_c01226{bottom:656.000000pt;}
.y2d_c01226{bottom:656.640000pt;}
.y23_c01226{bottom:689.280000pt;}
.y21_c01226{bottom:689.920000pt;}
.y22_c01226{bottom:691.200000pt;}
.y24_c01226{bottom:692.480000pt;}
.y25_c01226{bottom:694.400000pt;}
.y26_c01226{bottom:695.040000pt;}
.y1c_c01226{bottom:727.680000pt;}
.y1f_c01226{bottom:730.240000pt;}
.y1d_c01226{bottom:730.880000pt;}
.y20_c01226{bottom:731.520000pt;}
.y1e_c01226{bottom:732.160000pt;}
.y18_c01226{bottom:765.440000pt;}
.y19_c01226{bottom:768.640000pt;}
.y1b_c01226{bottom:770.560000pt;}
.y1a_c01226{bottom:771.840000pt;}
.y14_c01226{bottom:803.840000pt;}
.y15_c01226{bottom:806.400000pt;}
.y17_c01226{bottom:808.960000pt;}
.y16_c01226{bottom:809.600000pt;}
.yd_c01226{bottom:841.600000pt;}
.y10_c01226{bottom:842.880000pt;}
.ye_c01226{bottom:844.160000pt;}
.y11_c01226{bottom:844.800000pt;}
.yf_c01226{bottom:845.440000pt;}
.y12_c01226{bottom:846.080000pt;}
.y13_c01226{bottom:847.360000pt;}
.y7_c01226{bottom:880.000000pt;}
.yb_c01226{bottom:881.280000pt;}
.y8_c01226{bottom:882.560000pt;}
.y9_c01226{bottom:883.840000pt;}
.ya_c01226{bottom:884.480000pt;}
.yc_c01226{bottom:886.400000pt;}
.y2_c01226{bottom:917.760000pt;}
.y3_c01226{bottom:919.040000pt;}
.y4_c01226{bottom:922.880000pt;}
.y6_c01226{bottom:923.520000pt;}
.y5_c01226{bottom:924.160000pt;}
.y1_c01226{bottom:990.720000pt;}
.he_c01226{height:11.518750pt;}
.h9_c01226{height:27.645000pt;}
.hf_c01226{height:29.948750pt;}
.hc_c01226{height:34.556250pt;}
.ha_c01226{height:36.860000pt;}
.h8_c01226{height:39.163750pt;}
.h7_c01226{height:41.467500pt;}
.hb_c01226{height:43.771250pt;}
.h6_c01226{height:46.075000pt;}
.h5_c01226{height:48.378750pt;}
.h3_c01226{height:50.682500pt;}
.hd_c01226{height:52.986250pt;}
.h2_c01226{height:55.290000pt;}
.h4_c01226{height:57.593750pt;}
.h10_c01226{height:59.897500pt;}
.h1_c01226{height:1038.666667pt;}
.h0_c01226{height:1038.720000pt;}
.w0_c01226{width:689.920000pt;}
.w1_c01226{width:690.000000pt;}
.x0_c01226{left:0.000000pt;}
.x2_c01226{left:50.560000pt;}
.x11_c01226{left:51.840000pt;}
.x25_c01226{left:53.120000pt;}
.x32_c01226{left:54.400000pt;}
.x3_c01226{left:121.600000pt;}
.x1d_c01226{left:122.880000pt;}
.x36_c01226{left:124.800000pt;}
.x2f_c01226{left:126.080000pt;}
.x1a_c01226{left:133.120000pt;}
.x27_c01226{left:134.400000pt;}
.x8_c01226{left:158.720000pt;}
.x14_c01226{left:161.280000pt;}
.x30_c01226{left:172.160000pt;}
.xd_c01226{left:197.760000pt;}
.x1e_c01226{left:199.040000pt;}
.x9_c01226{left:207.360000pt;}
.x23_c01226{left:208.640000pt;}
.xe_c01226{left:236.160000pt;}
.x1b_c01226{left:238.080000pt;}
.x16_c01226{left:247.040000pt;}
.x31_c01226{left:248.320000pt;}
.xa_c01226{left:255.360000pt;}
.x26_c01226{left:256.640000pt;}
.x33_c01226{left:258.560000pt;}
.x22_c01226{left:265.600000pt;}
.xf_c01226{left:274.560000pt;}
.x17_c01226{left:284.160000pt;}
.x2b_c01226{left:286.080000pt;}
.xb_c01226{left:293.760000pt;}
.x37_c01226{left:295.680000pt;}
.x34_c01226{left:335.360000pt;}
.x2c_c01226{left:344.960000pt;}
.x38_c01226{left:373.120000pt;}
.x2d_c01226{left:382.080000pt;}
.x35_c01226{left:421.760000pt;}
.x2e_c01226{left:423.040000pt;}
.x4_c01226{left:467.200000pt;}
.x12_c01226{left:468.480000pt;}
.x28_c01226{left:469.760000pt;}
.x13_c01226{left:526.080000pt;}
.x5_c01226{left:545.280000pt;}
.x15_c01226{left:546.560000pt;}
.x1f_c01226{left:547.840000pt;}
.x1_c01226{left:571.520000pt;}
.x6_c01226{left:574.720000pt;}
.x18_c01226{left:576.000000pt;}
.x29_c01226{left:577.280000pt;}
.x10_c01226{left:604.160000pt;}
.x24_c01226{left:606.080000pt;}
.x7_c01226{left:613.120000pt;}
.x1c_c01226{left:614.400000pt;}
.x20_c01226{left:615.680000pt;}
.xc_c01226{left:631.040000pt;}
.x19_c01226{left:632.320000pt;}
.x21_c01226{left:633.600000pt;}
.x2a_c01226{left:634.880000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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;}
@font-face{font-family:ff1_c01227;src:url('chunks/assets/font_3f594bc3cfc4b4723bf8ffb4.woff2')format("woff");}.ff1_c01227{font-family:ff1_c01227;line-height:1.109863;font-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_c01227{transform:matrix(0.169125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169125,0.000000,0.000000,0.250000,0,0);}
.m43_c01227{transform:matrix(0.191675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191675,0.000000,0.000000,0.250000,0,0);}
.m2e_c01227{transform:matrix(0.210350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210350,0.000000,0.000000,0.250000,0,0);}
.m40_c01227{transform:matrix(0.215275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215275,0.000000,0.000000,0.250000,0,0);}
.m34_c01227{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m10_c01227{transform:matrix(0.247925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247925,0.000000,0.000000,0.250000,0,0);}
.m17_c01227{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m23_c01227{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);}
.m44_c01227{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01227{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_c01227{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);}
.m29_c01227{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);}
.m2f_c01227{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);}
.m25_c01227{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);}
.m33_c01227{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);}
.m41_c01227{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_c01227{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m32_c01227{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m1_c01227{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m13_c01227{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m36_c01227{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.ma_c01227{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m28_c01227{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01227{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01227{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m15_c01227{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01227{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.me_c01227{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m5_c01227{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m6_c01227{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01227{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m2_c01227{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m14_c01227{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.mc_c01227{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m8_c01227{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m38_c01227{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);}
.m27_c01227{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m47_c01227{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);}
.m30_c01227{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);}
.m49_c01227{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01227{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);}
.m0_c01227{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m39_c01227{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);}
.m19_c01227{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.mb_c01227{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m16_c01227{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);}
.m9_c01227{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m21_c01227{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m46_c01227{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m12_c01227{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);}
.m26_c01227{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m42_c01227{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);}
.m3a_c01227{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);}
.m37_c01227{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);}
.m45_c01227{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01227{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.mf_c01227{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_c01227{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m3_c01227{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01227{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);}
.m3e_c01227{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01227{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);}
.m1b_c01227{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.md_c01227{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m7_c01227{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01227{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01227{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);}
.m18_c01227{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);}
.m48_c01227{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m24_c01227{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);}
.m31_c01227{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01227{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.m35_c01227{transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);}
.m4a_c01227{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01227{transform:matrix(0.817500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.817500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.817500,0.000000,0.000000,0.250000,0,0);}
.v0_c01227{vertical-align:0.000000px;}
.v2_c01227{vertical-align:5.760000px;}
.v4_c01227{vertical-align:8.640000px;}
.v1_c01227{vertical-align:11.520000px;}
.v3_c01227{vertical-align:14.400000px;}
.ls0_c01227{letter-spacing:0.000000px;}
.sc__c01227{text-shadow:none;}
.sc0_c01227{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01227{-webkit-text-stroke:0px transparent;}
.sc0_c01227{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c01227{word-spacing:0.000000px;}
.ws0_c01227{word-spacing:4.992000px;}
.ws3_c01227{word-spacing:7.157192px;}
.ws2_c01227{word-spacing:15.194491px;}
.ws5_c01227{word-spacing:45.729360px;}
.ws4_c01227{word-spacing:50.954640px;}
.ws1_c01227{word-spacing:56.301600px;}
._0_c01227{width:35.917240px;}
.fc0_c01227{color:transparent;}
.fs5_c01227{font-size:34.560000px;}
.fsa_c01227{font-size:37.440000px;}
.fsc_c01227{font-size:40.320000px;}
.fsb_c01227{font-size:46.080000px;}
.fs7_c01227{font-size:48.960000px;}
.fs2_c01227{font-size:51.840000px;}
.fs0_c01227{font-size:54.720000px;}
.fs9_c01227{font-size:57.600000px;}
.fs6_c01227{font-size:60.480000px;}
.fsf_c01227{font-size:63.360000px;}
.fse_c01227{font-size:66.240000px;}
.fs4_c01227{font-size:69.120000px;}
.fs8_c01227{font-size:72.000000px;}
.fs1_c01227{font-size:74.880000px;}
.fs10_c01227{font-size:97.920000px;}
.fsd_c01227{font-size:100.800000px;}
.fs3_c01227{font-size:103.680000px;}
.y0_c01227{bottom:0.000000px;}
.y8b_c01227{bottom:62.640000px;}
.y8a_c01227{bottom:64.080000px;}
.y95_c01227{bottom:65.520000px;}
.y94_c01227{bottom:66.240000px;}
.y87_c01227{bottom:66.960000px;}
.y89_c01227{bottom:67.680000px;}
.y88_c01227{bottom:68.400000px;}
.y86_c01227{bottom:71.280000px;}
.y85_c01227{bottom:100.080000px;}
.y93_c01227{bottom:107.280000px;}
.y92_c01227{bottom:108.000000px;}
.y83_c01227{bottom:108.720000px;}
.y82_c01227{bottom:109.440000px;}
.y84_c01227{bottom:110.880000px;}
.y81_c01227{bottom:115.200000px;}
.y91_c01227{bottom:149.760000px;}
.y7f_c01227{bottom:150.480000px;}
.y7e_c01227{bottom:151.200000px;}
.y90_c01227{bottom:151.920000px;}
.y80_c01227{bottom:152.640000px;}
.y7c_c01227{bottom:153.360000px;}
.y7d_c01227{bottom:155.520000px;}
.y7b_c01227{bottom:158.400000px;}
.y8f_c01227{bottom:192.960000px;}
.y7a_c01227{bottom:193.680000px;}
.y79_c01227{bottom:194.400000px;}
.y8e_c01227{bottom:195.120000px;}
.y77_c01227{bottom:195.840000px;}
.y78_c01227{bottom:196.560000px;}
.y76_c01227{bottom:200.160000px;}
.y74_c01227{bottom:236.160000px;}
.y72_c01227{bottom:237.600000px;}
.y71_c01227{bottom:238.320000px;}
.y8d_c01227{bottom:239.040000px;}
.y75_c01227{bottom:239.760000px;}
.y73_c01227{bottom:240.480000px;}
.y70_c01227{bottom:242.640000px;}
.y6e_c01227{bottom:278.640000px;}
.y6d_c01227{bottom:280.080000px;}
.y8c_c01227{bottom:280.800000px;}
.y6b_c01227{bottom:281.520000px;}
.y6f_c01227{bottom:282.240000px;}
.y6c_c01227{bottom:283.680000px;}
.y6a_c01227{bottom:286.560000px;}
.y68_c01227{bottom:315.360000px;}
.y69_c01227{bottom:322.560000px;}
.y67_c01227{bottom:323.280000px;}
.y64_c01227{bottom:324.720000px;}
.y66_c01227{bottom:325.440000px;}
.y65_c01227{bottom:326.160000px;}
.y63_c01227{bottom:328.320000px;}
.y4a_c01227{bottom:365.040000px;}
.y62_c01227{bottom:365.760000px;}
.y48_c01227{bottom:367.200000px;}
.y4b_c01227{bottom:367.920000px;}
.y49_c01227{bottom:368.640000px;}
.y47_c01227{bottom:370.800000px;}
.y46_c01227{bottom:401.040000px;}
.y44_c01227{bottom:409.680000px;}
.y61_c01227{bottom:411.120000px;}
.y45_c01227{bottom:411.840000px;}
.y43_c01227{bottom:413.280000px;}
.y42_c01227{bottom:452.160000px;}
.y40_c01227{bottom:452.880000px;}
.y41_c01227{bottom:455.760000px;}
.y3d_c01227{bottom:483.840000px;}
.y3e_c01227{bottom:484.560000px;}
.y5f_c01227{bottom:485.280000px;}
.y60_c01227{bottom:486.000000px;}
.y3f_c01227{bottom:486.720000px;}
.y3c_c01227{bottom:487.440000px;}
.y3b_c01227{bottom:526.320000px;}
.y38_c01227{bottom:527.040000px;}
.y39_c01227{bottom:527.760000px;}
.y5e_c01227{bottom:528.480000px;}
.y3a_c01227{bottom:529.200000px;}
.y37_c01227{bottom:530.640000px;}
.y36_c01227{bottom:561.600000px;}
.y34_c01227{bottom:569.520000px;}
.y5d_c01227{bottom:570.960000px;}
.y35_c01227{bottom:572.400000px;}
.y33_c01227{bottom:573.120000px;}
.y32_c01227{bottom:605.520000px;}
.y2e_c01227{bottom:612.000000px;}
.y30_c01227{bottom:612.720000px;}
.y2d_c01227{bottom:614.880000px;}
.y31_c01227{bottom:615.600000px;}
.y2f_c01227{bottom:616.320000px;}
.y29_c01227{bottom:655.200000px;}
.y2b_c01227{bottom:655.920000px;}
.y5c_c01227{bottom:657.360000px;}
.y2c_c01227{bottom:658.080000px;}
.y28_c01227{bottom:658.800000px;}
.y2a_c01227{bottom:659.520000px;}
.y25_c01227{bottom:698.400000px;}
.y26_c01227{bottom:699.120000px;}
.y24_c01227{bottom:700.560000px;}
.y5b_c01227{bottom:701.280000px;}
.y27_c01227{bottom:702.720000px;}
.y21_c01227{bottom:741.600000px;}
.y22_c01227{bottom:742.320000px;}
.y5a_c01227{bottom:743.760000px;}
.y20_c01227{bottom:744.480000px;}
.y23_c01227{bottom:745.200000px;}
.y59_c01227{bottom:745.920000px;}
.y1c_c01227{bottom:784.080000px;}
.y1f_c01227{bottom:784.800000px;}
.y1b_c01227{bottom:785.520000px;}
.y56_c01227{bottom:786.240000px;}
.y57_c01227{bottom:786.960000px;}
.y1d_c01227{bottom:787.680000px;}
.y1e_c01227{bottom:788.400000px;}
.y58_c01227{bottom:789.120000px;}
.y17_c01227{bottom:827.280000px;}
.y19_c01227{bottom:828.000000px;}
.y16_c01227{bottom:828.720000px;}
.y54_c01227{bottom:830.160000px;}
.y18_c01227{bottom:830.880000px;}
.y1a_c01227{bottom:831.600000px;}
.y55_c01227{bottom:832.320000px;}
.y12_c01227{bottom:870.480000px;}
.y11_c01227{bottom:871.200000px;}
.y14_c01227{bottom:871.920000px;}
.y53_c01227{bottom:872.640000px;}
.y13_c01227{bottom:874.080000px;}
.y15_c01227{bottom:874.800000px;}
.y10_c01227{bottom:914.400000px;}
.ye_c01227{bottom:915.840000px;}
.yf_c01227{bottom:916.560000px;}
.yb_c01227{bottom:944.640000px;}
.yd_c01227{bottom:946.800000px;}
.ya_c01227{bottom:947.520000px;}
.y51_c01227{bottom:948.240000px;}
.y52_c01227{bottom:948.960000px;}
.yc_c01227{bottom:949.680000px;}
.y6_c01227{bottom:988.560000px;}
.y9_c01227{bottom:989.280000px;}
.y5_c01227{bottom:990.000000px;}
.y50_c01227{bottom:991.440000px;}
.y8_c01227{bottom:992.160000px;}
.y7_c01227{bottom:992.880000px;}
.y4_c01227{bottom:1024.560000px;}
.y2_c01227{bottom:1031.040000px;}
.y1_c01227{bottom:1032.480000px;}
.y4d_c01227{bottom:1033.920000px;}
.y3_c01227{bottom:1035.360000px;}
.y4f_c01227{bottom:1036.080000px;}
.y4e_c01227{bottom:1036.800000px;}
.y4c_c01227{bottom:1112.400000px;}
.h7_c01227{height:31.100625px;}
.hb_c01227{height:33.692344px;}
.he_c01227{height:36.284062px;}
.hc_c01227{height:41.467500px;}
.h9_c01227{height:44.059219px;}
.h4_c01227{height:46.650937px;}
.h2_c01227{height:49.242656px;}
.hd_c01227{height:51.834375px;}
.h8_c01227{height:54.426094px;}
.h10_c01227{height:55.002656px;}
.h12_c01227{height:57.017812px;}
.h11_c01227{height:59.609531px;}
.h6_c01227{height:62.201250px;}
.ha_c01227{height:64.792969px;}
.h3_c01227{height:67.384687px;}
.h13_c01227{height:88.118437px;}
.hf_c01227{height:90.710156px;}
.h5_c01227{height:93.301875px;}
.h1_c01227{height:1165.500000px;}
.h0_c01227{height:1165.680000px;}
.w1_c01227{width:771.000000px;}
.w0_c01227{width:771.120000px;}
.x0_c01227{left:0.000000px;}
.xf_c01227{left:59.040000px;}
.x1_c01227{left:60.480000px;}
.x14_c01227{left:138.240000px;}
.x2_c01227{left:139.680000px;}
.xb_c01227{left:192.960000px;}
.x31_c01227{left:222.480000px;}
.x19_c01227{left:223.920000px;}
.x10_c01227{left:225.360000px;}
.x34_c01227{left:234.000000px;}
.xc_c01227{left:235.440000px;}
.x20_c01227{left:245.520000px;}
.x11_c01227{left:267.840000px;}
.x32_c01227{left:277.200000px;}
.x9_c01227{left:278.640000px;}
.x7_c01227{left:280.080000px;}
.x16_c01227{left:288.720000px;}
.x13_c01227{left:309.600000px;}
.x1b_c01227{left:320.400000px;}
.x3_c01227{left:321.840000px;}
.x36_c01227{left:330.480000px;}
.x1a_c01227{left:331.920000px;}
.x17_c01227{left:342.720000px;}
.x2f_c01227{left:352.080000px;}
.x12_c01227{left:353.520000px;}
.x2b_c01227{left:363.600000px;}
.xd_c01227{left:365.040000px;}
.x4_c01227{left:366.480000px;}
.x2e_c01227{left:374.400000px;}
.x1c_c01227{left:375.840000px;}
.xa_c01227{left:378.000000px;}
.x1e_c01227{left:385.200000px;}
.x30_c01227{left:406.800000px;}
.xe_c01227{left:408.240000px;}
.x22_c01227{left:417.600000px;}
.x5_c01227{left:419.760000px;}
.x1d_c01227{left:429.120000px;}
.x1f_c01227{left:440.640000px;}
.x37_c01227{left:460.080000px;}
.x8_c01227{left:462.240000px;}
.x35_c01227{left:471.600000px;}
.x18_c01227{left:473.040000px;}
.x21_c01227{left:499.680000px;}
.x33_c01227{left:526.320000px;}
.x15_c01227{left:527.760000px;}
.x6_c01227{left:529.200000px;}
.x2c_c01227{left:569.520000px;}
.x38_c01227{left:614.160000px;}
.x24_c01227{left:615.600000px;}
.x29_c01227{left:626.400000px;}
.x2d_c01227{left:638.640000px;}
.x23_c01227{left:648.000000px;}
.x27_c01227{left:649.440000px;}
.x25_c01227{left:681.840000px;}
.x39_c01227{left:690.480000px;}
.x28_c01227{left:691.920000px;}
.x2a_c01227{left:711.360000px;}
.x26_c01227{left:712.800000px;}
@media print{
.v0_c01227{vertical-align:0.000000pt;}
.v2_c01227{vertical-align:5.120000pt;}
.v4_c01227{vertical-align:7.680000pt;}
.v1_c01227{vertical-align:10.240000pt;}
.v3_c01227{vertical-align:12.800000pt;}
.ls0_c01227{letter-spacing:0.000000pt;}
.ws6_c01227{word-spacing:0.000000pt;}
.ws0_c01227{word-spacing:4.437333pt;}
.ws3_c01227{word-spacing:6.361948pt;}
.ws2_c01227{word-spacing:13.506214pt;}
.ws5_c01227{word-spacing:40.648320pt;}
.ws4_c01227{word-spacing:45.293013pt;}
.ws1_c01227{word-spacing:50.045867pt;}
._0_c01227{width:31.926436pt;}
.fs5_c01227{font-size:30.720000pt;}
.fsa_c01227{font-size:33.280000pt;}
.fsc_c01227{font-size:35.840000pt;}
.fsb_c01227{font-size:40.960000pt;}
.fs7_c01227{font-size:43.520000pt;}
.fs2_c01227{font-size:46.080000pt;}
.fs0_c01227{font-size:48.640000pt;}
.fs9_c01227{font-size:51.200000pt;}
.fs6_c01227{font-size:53.760000pt;}
.fsf_c01227{font-size:56.320000pt;}
.fse_c01227{font-size:58.880000pt;}
.fs4_c01227{font-size:61.440000pt;}
.fs8_c01227{font-size:64.000000pt;}
.fs1_c01227{font-size:66.560000pt;}
.fs10_c01227{font-size:87.040000pt;}
.fsd_c01227{font-size:89.600000pt;}
.fs3_c01227{font-size:92.160000pt;}
.y0_c01227{bottom:0.000000pt;}
.y8b_c01227{bottom:55.680000pt;}
.y8a_c01227{bottom:56.960000pt;}
.y95_c01227{bottom:58.240000pt;}
.y94_c01227{bottom:58.880000pt;}
.y87_c01227{bottom:59.520000pt;}
.y89_c01227{bottom:60.160000pt;}
.y88_c01227{bottom:60.800000pt;}
.y86_c01227{bottom:63.360000pt;}
.y85_c01227{bottom:88.960000pt;}
.y93_c01227{bottom:95.360000pt;}
.y92_c01227{bottom:96.000000pt;}
.y83_c01227{bottom:96.640000pt;}
.y82_c01227{bottom:97.280000pt;}
.y84_c01227{bottom:98.560000pt;}
.y81_c01227{bottom:102.400000pt;}
.y91_c01227{bottom:133.120000pt;}
.y7f_c01227{bottom:133.760000pt;}
.y7e_c01227{bottom:134.400000pt;}
.y90_c01227{bottom:135.040000pt;}
.y80_c01227{bottom:135.680000pt;}
.y7c_c01227{bottom:136.320000pt;}
.y7d_c01227{bottom:138.240000pt;}
.y7b_c01227{bottom:140.800000pt;}
.y8f_c01227{bottom:171.520000pt;}
.y7a_c01227{bottom:172.160000pt;}
.y79_c01227{bottom:172.800000pt;}
.y8e_c01227{bottom:173.440000pt;}
.y77_c01227{bottom:174.080000pt;}
.y78_c01227{bottom:174.720000pt;}
.y76_c01227{bottom:177.920000pt;}
.y74_c01227{bottom:209.920000pt;}
.y72_c01227{bottom:211.200000pt;}
.y71_c01227{bottom:211.840000pt;}
.y8d_c01227{bottom:212.480000pt;}
.y75_c01227{bottom:213.120000pt;}
.y73_c01227{bottom:213.760000pt;}
.y70_c01227{bottom:215.680000pt;}
.y6e_c01227{bottom:247.680000pt;}
.y6d_c01227{bottom:248.960000pt;}
.y8c_c01227{bottom:249.600000pt;}
.y6b_c01227{bottom:250.240000pt;}
.y6f_c01227{bottom:250.880000pt;}
.y6c_c01227{bottom:252.160000pt;}
.y6a_c01227{bottom:254.720000pt;}
.y68_c01227{bottom:280.320000pt;}
.y69_c01227{bottom:286.720000pt;}
.y67_c01227{bottom:287.360000pt;}
.y64_c01227{bottom:288.640000pt;}
.y66_c01227{bottom:289.280000pt;}
.y65_c01227{bottom:289.920000pt;}
.y63_c01227{bottom:291.840000pt;}
.y4a_c01227{bottom:324.480000pt;}
.y62_c01227{bottom:325.120000pt;}
.y48_c01227{bottom:326.400000pt;}
.y4b_c01227{bottom:327.040000pt;}
.y49_c01227{bottom:327.680000pt;}
.y47_c01227{bottom:329.600000pt;}
.y46_c01227{bottom:356.480000pt;}
.y44_c01227{bottom:364.160000pt;}
.y61_c01227{bottom:365.440000pt;}
.y45_c01227{bottom:366.080000pt;}
.y43_c01227{bottom:367.360000pt;}
.y42_c01227{bottom:401.920000pt;}
.y40_c01227{bottom:402.560000pt;}
.y41_c01227{bottom:405.120000pt;}
.y3d_c01227{bottom:430.080000pt;}
.y3e_c01227{bottom:430.720000pt;}
.y5f_c01227{bottom:431.360000pt;}
.y60_c01227{bottom:432.000000pt;}
.y3f_c01227{bottom:432.640000pt;}
.y3c_c01227{bottom:433.280000pt;}
.y3b_c01227{bottom:467.840000pt;}
.y38_c01227{bottom:468.480000pt;}
.y39_c01227{bottom:469.120000pt;}
.y5e_c01227{bottom:469.760000pt;}
.y3a_c01227{bottom:470.400000pt;}
.y37_c01227{bottom:471.680000pt;}
.y36_c01227{bottom:499.200000pt;}
.y34_c01227{bottom:506.240000pt;}
.y5d_c01227{bottom:507.520000pt;}
.y35_c01227{bottom:508.800000pt;}
.y33_c01227{bottom:509.440000pt;}
.y32_c01227{bottom:538.240000pt;}
.y2e_c01227{bottom:544.000000pt;}
.y30_c01227{bottom:544.640000pt;}
.y2d_c01227{bottom:546.560000pt;}
.y31_c01227{bottom:547.200000pt;}
.y2f_c01227{bottom:547.840000pt;}
.y29_c01227{bottom:582.400000pt;}
.y2b_c01227{bottom:583.040000pt;}
.y5c_c01227{bottom:584.320000pt;}
.y2c_c01227{bottom:584.960000pt;}
.y28_c01227{bottom:585.600000pt;}
.y2a_c01227{bottom:586.240000pt;}
.y25_c01227{bottom:620.800000pt;}
.y26_c01227{bottom:621.440000pt;}
.y24_c01227{bottom:622.720000pt;}
.y5b_c01227{bottom:623.360000pt;}
.y27_c01227{bottom:624.640000pt;}
.y21_c01227{bottom:659.200000pt;}
.y22_c01227{bottom:659.840000pt;}
.y5a_c01227{bottom:661.120000pt;}
.y20_c01227{bottom:661.760000pt;}
.y23_c01227{bottom:662.400000pt;}
.y59_c01227{bottom:663.040000pt;}
.y1c_c01227{bottom:696.960000pt;}
.y1f_c01227{bottom:697.600000pt;}
.y1b_c01227{bottom:698.240000pt;}
.y56_c01227{bottom:698.880000pt;}
.y57_c01227{bottom:699.520000pt;}
.y1d_c01227{bottom:700.160000pt;}
.y1e_c01227{bottom:700.800000pt;}
.y58_c01227{bottom:701.440000pt;}
.y17_c01227{bottom:735.360000pt;}
.y19_c01227{bottom:736.000000pt;}
.y16_c01227{bottom:736.640000pt;}
.y54_c01227{bottom:737.920000pt;}
.y18_c01227{bottom:738.560000pt;}
.y1a_c01227{bottom:739.200000pt;}
.y55_c01227{bottom:739.840000pt;}
.y12_c01227{bottom:773.760000pt;}
.y11_c01227{bottom:774.400000pt;}
.y14_c01227{bottom:775.040000pt;}
.y53_c01227{bottom:775.680000pt;}
.y13_c01227{bottom:776.960000pt;}
.y15_c01227{bottom:777.600000pt;}
.y10_c01227{bottom:812.800000pt;}
.ye_c01227{bottom:814.080000pt;}
.yf_c01227{bottom:814.720000pt;}
.yb_c01227{bottom:839.680000pt;}
.yd_c01227{bottom:841.600000pt;}
.ya_c01227{bottom:842.240000pt;}
.y51_c01227{bottom:842.880000pt;}
.y52_c01227{bottom:843.520000pt;}
.yc_c01227{bottom:844.160000pt;}
.y6_c01227{bottom:878.720000pt;}
.y9_c01227{bottom:879.360000pt;}
.y5_c01227{bottom:880.000000pt;}
.y50_c01227{bottom:881.280000pt;}
.y8_c01227{bottom:881.920000pt;}
.y7_c01227{bottom:882.560000pt;}
.y4_c01227{bottom:910.720000pt;}
.y2_c01227{bottom:916.480000pt;}
.y1_c01227{bottom:917.760000pt;}
.y4d_c01227{bottom:919.040000pt;}
.y3_c01227{bottom:920.320000pt;}
.y4f_c01227{bottom:920.960000pt;}
.y4e_c01227{bottom:921.600000pt;}
.y4c_c01227{bottom:988.800000pt;}
.h7_c01227{height:27.645000pt;}
.hb_c01227{height:29.948750pt;}
.he_c01227{height:32.252500pt;}
.hc_c01227{height:36.860000pt;}
.h9_c01227{height:39.163750pt;}
.h4_c01227{height:41.467500pt;}
.h2_c01227{height:43.771250pt;}
.hd_c01227{height:46.075000pt;}
.h8_c01227{height:48.378750pt;}
.h10_c01227{height:48.891250pt;}
.h12_c01227{height:50.682500pt;}
.h11_c01227{height:52.986250pt;}
.h6_c01227{height:55.290000pt;}
.ha_c01227{height:57.593750pt;}
.h3_c01227{height:59.897500pt;}
.h13_c01227{height:78.327500pt;}
.hf_c01227{height:80.631250pt;}
.h5_c01227{height:82.935000pt;}
.h1_c01227{height:1036.000000pt;}
.h0_c01227{height:1036.160000pt;}
.w1_c01227{width:685.333333pt;}
.w0_c01227{width:685.440000pt;}
.x0_c01227{left:0.000000pt;}
.xf_c01227{left:52.480000pt;}
.x1_c01227{left:53.760000pt;}
.x14_c01227{left:122.880000pt;}
.x2_c01227{left:124.160000pt;}
.xb_c01227{left:171.520000pt;}
.x31_c01227{left:197.760000pt;}
.x19_c01227{left:199.040000pt;}
.x10_c01227{left:200.320000pt;}
.x34_c01227{left:208.000000pt;}
.xc_c01227{left:209.280000pt;}
.x20_c01227{left:218.240000pt;}
.x11_c01227{left:238.080000pt;}
.x32_c01227{left:246.400000pt;}
.x9_c01227{left:247.680000pt;}
.x7_c01227{left:248.960000pt;}
.x16_c01227{left:256.640000pt;}
.x13_c01227{left:275.200000pt;}
.x1b_c01227{left:284.800000pt;}
.x3_c01227{left:286.080000pt;}
.x36_c01227{left:293.760000pt;}
.x1a_c01227{left:295.040000pt;}
.x17_c01227{left:304.640000pt;}
.x2f_c01227{left:312.960000pt;}
.x12_c01227{left:314.240000pt;}
.x2b_c01227{left:323.200000pt;}
.xd_c01227{left:324.480000pt;}
.x4_c01227{left:325.760000pt;}
.x2e_c01227{left:332.800000pt;}
.x1c_c01227{left:334.080000pt;}
.xa_c01227{left:336.000000pt;}
.x1e_c01227{left:342.400000pt;}
.x30_c01227{left:361.600000pt;}
.xe_c01227{left:362.880000pt;}
.x22_c01227{left:371.200000pt;}
.x5_c01227{left:373.120000pt;}
.x1d_c01227{left:381.440000pt;}
.x1f_c01227{left:391.680000pt;}
.x37_c01227{left:408.960000pt;}
.x8_c01227{left:410.880000pt;}
.x35_c01227{left:419.200000pt;}
.x18_c01227{left:420.480000pt;}
.x21_c01227{left:444.160000pt;}
.x33_c01227{left:467.840000pt;}
.x15_c01227{left:469.120000pt;}
.x6_c01227{left:470.400000pt;}
.x2c_c01227{left:506.240000pt;}
.x38_c01227{left:545.920000pt;}
.x24_c01227{left:547.200000pt;}
.x29_c01227{left:556.800000pt;}
.x2d_c01227{left:567.680000pt;}
.x23_c01227{left:576.000000pt;}
.x27_c01227{left:577.280000pt;}
.x25_c01227{left:606.080000pt;}
.x39_c01227{left:613.760000pt;}
.x28_c01227{left:615.040000pt;}
.x2a_c01227{left:632.320000pt;}
.x26_c01227{left:633.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d282be17d25caa63828e6ec6.woff2')format("woff");}.ff1_c01228{font-family:ff1_c01228;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3f_c01228{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m3a_c01228{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m35_c01228{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1_c01228{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_c01228{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);}
.m39_c01228{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_c01228{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);}
.m2a_c01228{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);}
.m40_c01228{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m27_c01228{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m9_c01228{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);}
.m34_c01228{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m13_c01228{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m23_c01228{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m6_c01228{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m11_c01228{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_c01228{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01228{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m28_c01228{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01228{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m20_c01228{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m8_c01228{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m16_c01228{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m38_c01228{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m32_c01228{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m43_c01228{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m45_c01228{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m19_c01228{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01228{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m30_c01228{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m0_c01228{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.ma_c01228{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m2_c01228{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01228{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01228{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m22_c01228{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01228{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m21_c01228{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m33_c01228{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01228{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);}
.m3c_c01228{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01228{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);}
.m29_c01228{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);}
.m46_c01228{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.mc_c01228{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m42_c01228{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);}
.m10_c01228{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m15_c01228{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m18_c01228{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m7_c01228{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m41_c01228{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m31_c01228{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);}
.m2f_c01228{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m5_c01228{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m36_c01228{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.mf_c01228{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m17_c01228{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);}
.m1e_c01228{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m37_c01228{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m4_c01228{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m14_c01228{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.me_c01228{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m24_c01228{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m25_c01228{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m3_c01228{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);}
.mb_c01228{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01228{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);}
.m3e_c01228{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01228{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01228{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m47_c01228{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.m48_c01228{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m44_c01228{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.v2_c01228{vertical-align:-17.280000px;}
.v1_c01228{vertical-align:-2.880000px;}
.v0_c01228{vertical-align:0.000000px;}
.ls0_c01228{letter-spacing:0.000000px;}
.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.032880px;}
.ws2_c01228{word-spacing:0.000000px;}
.ws1_c01228{word-spacing:2.305200px;}
.fc0_c01228{color:transparent;}
.fs9_c01228{font-size:34.560000px;}
.fs6_c01228{font-size:43.200000px;}
.fs2_c01228{font-size:46.080000px;}
.fs3_c01228{font-size:48.960000px;}
.fs4_c01228{font-size:51.840000px;}
.fsa_c01228{font-size:54.720000px;}
.fs7_c01228{font-size:57.600000px;}
.fs0_c01228{font-size:60.480000px;}
.fsb_c01228{font-size:66.240000px;}
.fs8_c01228{font-size:69.120000px;}
.fs5_c01228{font-size:72.000000px;}
.fs1_c01228{font-size:74.880000px;}
.fsc_c01228{font-size:77.760000px;}
.y0_c01228{bottom:0.000000px;}
.y64_c01228{bottom:56.160000px;}
.y63_c01228{bottom:61.200000px;}
.y8d_c01228{bottom:86.400000px;}
.y8e_c01228{bottom:87.120000px;}
.y61_c01228{bottom:87.840000px;}
.y5f_c01228{bottom:88.560000px;}
.y62_c01228{bottom:90.000000px;}
.y60_c01228{bottom:90.720000px;}
.y5e_c01228{bottom:94.320000px;}
.y8c_c01228{bottom:128.880000px;}
.y59_c01228{bottom:129.600000px;}
.y5d_c01228{bottom:131.040000px;}
.y58_c01228{bottom:134.640000px;}
.y57_c01228{bottom:136.800000px;}
.y56_c01228{bottom:171.360000px;}
.y89_c01228{bottom:172.080000px;}
.y5c_c01228{bottom:173.520000px;}
.y8b_c01228{bottom:174.240000px;}
.y8a_c01228{bottom:174.960000px;}
.y55_c01228{bottom:177.840000px;}
.y54_c01228{bottom:179.280000px;}
.y53_c01228{bottom:214.560000px;}
.y5b_c01228{bottom:216.000000px;}
.y86_c01228{bottom:216.720000px;}
.y88_c01228{bottom:217.440000px;}
.y87_c01228{bottom:218.160000px;}
.y52_c01228{bottom:218.880000px;}
.y51_c01228{bottom:221.040000px;}
.y83_c01228{bottom:257.760000px;}
.y85_c01228{bottom:258.480000px;}
.y5a_c01228{bottom:259.200000px;}
.y84_c01228{bottom:260.640000px;}
.y50_c01228{bottom:262.080000px;}
.y4f_c01228{bottom:263.520000px;}
.y4d_c01228{bottom:300.960000px;}
.y82_c01228{bottom:301.680000px;}
.y4a_c01228{bottom:302.400000px;}
.y81_c01228{bottom:303.120000px;}
.y4e_c01228{bottom:303.840000px;}
.y4c_c01228{bottom:304.560000px;}
.y4b_c01228{bottom:306.000000px;}
.y49_c01228{bottom:306.720000px;}
.y48_c01228{bottom:344.160000px;}
.y47_c01228{bottom:349.200000px;}
.y7f_c01228{bottom:376.560000px;}
.y44_c01228{bottom:377.280000px;}
.y80_c01228{bottom:378.720000px;}
.y46_c01228{bottom:379.440000px;}
.y45_c01228{bottom:380.160000px;}
.y43_c01228{bottom:380.880000px;}
.y3f_c01228{bottom:419.040000px;}
.y3e_c01228{bottom:419.760000px;}
.y3d_c01228{bottom:420.480000px;}
.y7e_c01228{bottom:421.200000px;}
.y7d_c01228{bottom:422.640000px;}
.y3c_c01228{bottom:423.360000px;}
.y3b_c01228{bottom:462.240000px;}
.y3a_c01228{bottom:462.960000px;}
.y39_c01228{bottom:463.680000px;}
.y7c_c01228{bottom:464.400000px;}
.y7b_c01228{bottom:465.120000px;}
.y42_c01228{bottom:465.840000px;}
.y38_c01228{bottom:466.560000px;}
.y37_c01228{bottom:505.440000px;}
.y36_c01228{bottom:506.160000px;}
.y79_c01228{bottom:506.880000px;}
.y41_c01228{bottom:507.600000px;}
.y35_c01228{bottom:509.040000px;}
.y7a_c01228{bottom:509.760000px;}
.y34_c01228{bottom:549.360000px;}
.y78_c01228{bottom:550.080000px;}
.y40_c01228{bottom:550.800000px;}
.y33_c01228{bottom:551.520000px;}
.y77_c01228{bottom:552.960000px;}
.y32_c01228{bottom:591.840000px;}
.y31_c01228{bottom:595.440000px;}
.y30_c01228{bottom:596.160000px;}
.y2d_c01228{bottom:623.520000px;}
.y2f_c01228{bottom:624.960000px;}
.y76_c01228{bottom:626.400000px;}
.y2c_c01228{bottom:627.120000px;}
.y2e_c01228{bottom:627.840000px;}
.y75_c01228{bottom:628.560000px;}
.y2b_c01228{bottom:666.720000px;}
.y29_c01228{bottom:667.440000px;}
.y2a_c01228{bottom:670.320000px;}
.y25_c01228{bottom:699.120000px;}
.y24_c01228{bottom:700.560000px;}
.y28_c01228{bottom:701.280000px;}
.y26_c01228{bottom:702.000000px;}
.y27_c01228{bottom:702.720000px;}
.y22_c01228{bottom:741.600000px;}
.y20_c01228{bottom:743.760000px;}
.y23_c01228{bottom:744.480000px;}
.y21_c01228{bottom:745.200000px;}
.y73_c01228{bottom:745.920000px;}
.y74_c01228{bottom:746.640000px;}
.y1b_c01228{bottom:784.080000px;}
.y1a_c01228{bottom:785.520000px;}
.y72_c01228{bottom:787.680000px;}
.y1c_c01228{bottom:788.400000px;}
.y1f_c01228{bottom:789.120000px;}
.y16_c01228{bottom:827.280000px;}
.y15_c01228{bottom:828.000000px;}
.y19_c01228{bottom:828.720000px;}
.y18_c01228{bottom:829.440000px;}
.y71_c01228{bottom:830.880000px;}
.y17_c01228{bottom:831.600000px;}
.y70_c01228{bottom:832.320000px;}
.y12_c01228{bottom:869.760000px;}
.y11_c01228{bottom:870.480000px;}
.y14_c01228{bottom:871.920000px;}
.y6e_c01228{bottom:872.640000px;}
.y13_c01228{bottom:874.080000px;}
.y1e_c01228{bottom:874.800000px;}
.y6f_c01228{bottom:875.520000px;}
.yd_c01228{bottom:912.240000px;}
.yc_c01228{bottom:913.680000px;}
.y10_c01228{bottom:915.120000px;}
.yf_c01228{bottom:915.840000px;}
.ye_c01228{bottom:917.280000px;}
.y1d_c01228{bottom:918.000000px;}
.y6c_c01228{bottom:918.720000px;}
.y6d_c01228{bottom:920.160000px;}
.y9_c01228{bottom:955.440000px;}
.y8_c01228{bottom:956.160000px;}
.ya_c01228{bottom:957.600000px;}
.y68_c01228{bottom:959.040000px;}
.y6a_c01228{bottom:959.760000px;}
.y69_c01228{bottom:960.480000px;}
.yb_c01228{bottom:961.200000px;}
.y6b_c01228{bottom:961.920000px;}
.y5_c01228{bottom:1000.080000px;}
.y7_c01228{bottom:1000.800000px;}
.y6_c01228{bottom:1002.960000px;}
.y1_c01228{bottom:1031.760000px;}
.y2_c01228{bottom:1034.640000px;}
.y66_c01228{bottom:1036.080000px;}
.y4_c01228{bottom:1036.800000px;}
.y3_c01228{bottom:1037.520000px;}
.y67_c01228{bottom:1038.960000px;}
.y65_c01228{bottom:1108.080000px;}
.hb_c01228{height:31.100625px;}
.h8_c01228{height:38.875781px;}
.h4_c01228{height:41.467500px;}
.h5_c01228{height:44.059219px;}
.h6_c01228{height:46.650937px;}
.hc_c01228{height:49.242656px;}
.h9_c01228{height:51.834375px;}
.h2_c01228{height:54.426094px;}
.hd_c01228{height:59.609531px;}
.ha_c01228{height:62.201250px;}
.h7_c01228{height:64.792969px;}
.h3_c01228{height:67.384687px;}
.he_c01228{height:69.976406px;}
.h1_c01228{height:1166.250000px;}
.h0_c01228{height:1166.400000px;}
.w1_c01228{width:773.250000px;}
.w0_c01228{width:773.280000px;}
.x0_c01228{left:0.000000px;}
.x1_c01228{left:59.040000px;}
.x16_c01228{left:136.080000px;}
.x2_c01228{left:138.240000px;}
.x17_c01228{left:180.000000px;}
.x7_c01228{left:191.520000px;}
.x11_c01228{left:211.680000px;}
.x1c_c01228{left:213.120000px;}
.x9_c01228{left:222.480000px;}
.x3_c01228{left:223.920000px;}
.x8_c01228{left:234.000000px;}
.x1a_c01228{left:244.800000px;}
.xd_c01228{left:266.400000px;}
.xa_c01228{left:277.200000px;}
.x1d_c01228{left:283.680000px;}
.x18_c01228{left:288.000000px;}
.x4_c01228{left:308.880000px;}
.x12_c01228{left:321.120000px;}
.xb_c01228{left:330.480000px;}
.x1e_c01228{left:341.280000px;}
.xe_c01228{left:352.800000px;}
.x13_c01228{left:362.880000px;}
.x5_c01228{left:364.320000px;}
.x1b_c01228{left:374.400000px;}
.x19_c01228{left:406.800000px;}
.xf_c01228{left:408.240000px;}
.x6_c01228{left:417.600000px;}
.x1f_c01228{left:427.680000px;}
.xc_c01228{left:439.920000px;}
.x15_c01228{left:460.800000px;}
.x14_c01228{left:462.240000px;}
.x20_c01228{left:480.960000px;}
.x10_c01228{left:527.040000px;}
.x26_c01228{left:613.440000px;}
.x22_c01228{left:614.880000px;}
.x21_c01228{left:645.840000px;}
.x23_c01228{left:648.000000px;}
.x27_c01228{left:680.400000px;}
.x24_c01228{left:690.480000px;}
.x28_c01228{left:691.920000px;}
.x25_c01228{left:710.640000px;}
.x29_c01228{left:712.080000px;}
@media print{
.v2_c01228{vertical-align:-15.360000pt;}
.v1_c01228{vertical-align:-2.560000pt;}
.v0_c01228{vertical-align:0.000000pt;}
.ls0_c01228{letter-spacing:0.000000pt;}
.ws0_c01228{word-spacing:-0.029227pt;}
.ws2_c01228{word-spacing:0.000000pt;}
.ws1_c01228{word-spacing:2.049067pt;}
.fs9_c01228{font-size:30.720000pt;}
.fs6_c01228{font-size:38.400000pt;}
.fs2_c01228{font-size:40.960000pt;}
.fs3_c01228{font-size:43.520000pt;}
.fs4_c01228{font-size:46.080000pt;}
.fsa_c01228{font-size:48.640000pt;}
.fs7_c01228{font-size:51.200000pt;}
.fs0_c01228{font-size:53.760000pt;}
.fsb_c01228{font-size:58.880000pt;}
.fs8_c01228{font-size:61.440000pt;}
.fs5_c01228{font-size:64.000000pt;}
.fs1_c01228{font-size:66.560000pt;}
.fsc_c01228{font-size:69.120000pt;}
.y0_c01228{bottom:0.000000pt;}
.y64_c01228{bottom:49.920000pt;}
.y63_c01228{bottom:54.400000pt;}
.y8d_c01228{bottom:76.800000pt;}
.y8e_c01228{bottom:77.440000pt;}
.y61_c01228{bottom:78.080000pt;}
.y5f_c01228{bottom:78.720000pt;}
.y62_c01228{bottom:80.000000pt;}
.y60_c01228{bottom:80.640000pt;}
.y5e_c01228{bottom:83.840000pt;}
.y8c_c01228{bottom:114.560000pt;}
.y59_c01228{bottom:115.200000pt;}
.y5d_c01228{bottom:116.480000pt;}
.y58_c01228{bottom:119.680000pt;}
.y57_c01228{bottom:121.600000pt;}
.y56_c01228{bottom:152.320000pt;}
.y89_c01228{bottom:152.960000pt;}
.y5c_c01228{bottom:154.240000pt;}
.y8b_c01228{bottom:154.880000pt;}
.y8a_c01228{bottom:155.520000pt;}
.y55_c01228{bottom:158.080000pt;}
.y54_c01228{bottom:159.360000pt;}
.y53_c01228{bottom:190.720000pt;}
.y5b_c01228{bottom:192.000000pt;}
.y86_c01228{bottom:192.640000pt;}
.y88_c01228{bottom:193.280000pt;}
.y87_c01228{bottom:193.920000pt;}
.y52_c01228{bottom:194.560000pt;}
.y51_c01228{bottom:196.480000pt;}
.y83_c01228{bottom:229.120000pt;}
.y85_c01228{bottom:229.760000pt;}
.y5a_c01228{bottom:230.400000pt;}
.y84_c01228{bottom:231.680000pt;}
.y50_c01228{bottom:232.960000pt;}
.y4f_c01228{bottom:234.240000pt;}
.y4d_c01228{bottom:267.520000pt;}
.y82_c01228{bottom:268.160000pt;}
.y4a_c01228{bottom:268.800000pt;}
.y81_c01228{bottom:269.440000pt;}
.y4e_c01228{bottom:270.080000pt;}
.y4c_c01228{bottom:270.720000pt;}
.y4b_c01228{bottom:272.000000pt;}
.y49_c01228{bottom:272.640000pt;}
.y48_c01228{bottom:305.920000pt;}
.y47_c01228{bottom:310.400000pt;}
.y7f_c01228{bottom:334.720000pt;}
.y44_c01228{bottom:335.360000pt;}
.y80_c01228{bottom:336.640000pt;}
.y46_c01228{bottom:337.280000pt;}
.y45_c01228{bottom:337.920000pt;}
.y43_c01228{bottom:338.560000pt;}
.y3f_c01228{bottom:372.480000pt;}
.y3e_c01228{bottom:373.120000pt;}
.y3d_c01228{bottom:373.760000pt;}
.y7e_c01228{bottom:374.400000pt;}
.y7d_c01228{bottom:375.680000pt;}
.y3c_c01228{bottom:376.320000pt;}
.y3b_c01228{bottom:410.880000pt;}
.y3a_c01228{bottom:411.520000pt;}
.y39_c01228{bottom:412.160000pt;}
.y7c_c01228{bottom:412.800000pt;}
.y7b_c01228{bottom:413.440000pt;}
.y42_c01228{bottom:414.080000pt;}
.y38_c01228{bottom:414.720000pt;}
.y37_c01228{bottom:449.280000pt;}
.y36_c01228{bottom:449.920000pt;}
.y79_c01228{bottom:450.560000pt;}
.y41_c01228{bottom:451.200000pt;}
.y35_c01228{bottom:452.480000pt;}
.y7a_c01228{bottom:453.120000pt;}
.y34_c01228{bottom:488.320000pt;}
.y78_c01228{bottom:488.960000pt;}
.y40_c01228{bottom:489.600000pt;}
.y33_c01228{bottom:490.240000pt;}
.y77_c01228{bottom:491.520000pt;}
.y32_c01228{bottom:526.080000pt;}
.y31_c01228{bottom:529.280000pt;}
.y30_c01228{bottom:529.920000pt;}
.y2d_c01228{bottom:554.240000pt;}
.y2f_c01228{bottom:555.520000pt;}
.y76_c01228{bottom:556.800000pt;}
.y2c_c01228{bottom:557.440000pt;}
.y2e_c01228{bottom:558.080000pt;}
.y75_c01228{bottom:558.720000pt;}
.y2b_c01228{bottom:592.640000pt;}
.y29_c01228{bottom:593.280000pt;}
.y2a_c01228{bottom:595.840000pt;}
.y25_c01228{bottom:621.440000pt;}
.y24_c01228{bottom:622.720000pt;}
.y28_c01228{bottom:623.360000pt;}
.y26_c01228{bottom:624.000000pt;}
.y27_c01228{bottom:624.640000pt;}
.y22_c01228{bottom:659.200000pt;}
.y20_c01228{bottom:661.120000pt;}
.y23_c01228{bottom:661.760000pt;}
.y21_c01228{bottom:662.400000pt;}
.y73_c01228{bottom:663.040000pt;}
.y74_c01228{bottom:663.680000pt;}
.y1b_c01228{bottom:696.960000pt;}
.y1a_c01228{bottom:698.240000pt;}
.y72_c01228{bottom:700.160000pt;}
.y1c_c01228{bottom:700.800000pt;}
.y1f_c01228{bottom:701.440000pt;}
.y16_c01228{bottom:735.360000pt;}
.y15_c01228{bottom:736.000000pt;}
.y19_c01228{bottom:736.640000pt;}
.y18_c01228{bottom:737.280000pt;}
.y71_c01228{bottom:738.560000pt;}
.y17_c01228{bottom:739.200000pt;}
.y70_c01228{bottom:739.840000pt;}
.y12_c01228{bottom:773.120000pt;}
.y11_c01228{bottom:773.760000pt;}
.y14_c01228{bottom:775.040000pt;}
.y6e_c01228{bottom:775.680000pt;}
.y13_c01228{bottom:776.960000pt;}
.y1e_c01228{bottom:777.600000pt;}
.y6f_c01228{bottom:778.240000pt;}
.yd_c01228{bottom:810.880000pt;}
.yc_c01228{bottom:812.160000pt;}
.y10_c01228{bottom:813.440000pt;}
.yf_c01228{bottom:814.080000pt;}
.ye_c01228{bottom:815.360000pt;}
.y1d_c01228{bottom:816.000000pt;}
.y6c_c01228{bottom:816.640000pt;}
.y6d_c01228{bottom:817.920000pt;}
.y9_c01228{bottom:849.280000pt;}
.y8_c01228{bottom:849.920000pt;}
.ya_c01228{bottom:851.200000pt;}
.y68_c01228{bottom:852.480000pt;}
.y6a_c01228{bottom:853.120000pt;}
.y69_c01228{bottom:853.760000pt;}
.yb_c01228{bottom:854.400000pt;}
.y6b_c01228{bottom:855.040000pt;}
.y5_c01228{bottom:888.960000pt;}
.y7_c01228{bottom:889.600000pt;}
.y6_c01228{bottom:891.520000pt;}
.y1_c01228{bottom:917.120000pt;}
.y2_c01228{bottom:919.680000pt;}
.y66_c01228{bottom:920.960000pt;}
.y4_c01228{bottom:921.600000pt;}
.y3_c01228{bottom:922.240000pt;}
.y67_c01228{bottom:923.520000pt;}
.y65_c01228{bottom:984.960000pt;}
.hb_c01228{height:27.645000pt;}
.h8_c01228{height:34.556250pt;}
.h4_c01228{height:36.860000pt;}
.h5_c01228{height:39.163750pt;}
.h6_c01228{height:41.467500pt;}
.hc_c01228{height:43.771250pt;}
.h9_c01228{height:46.075000pt;}
.h2_c01228{height:48.378750pt;}
.hd_c01228{height:52.986250pt;}
.ha_c01228{height:55.290000pt;}
.h7_c01228{height:57.593750pt;}
.h3_c01228{height:59.897500pt;}
.he_c01228{height:62.201250pt;}
.h1_c01228{height:1036.666667pt;}
.h0_c01228{height:1036.800000pt;}
.w1_c01228{width:687.333333pt;}
.w0_c01228{width:687.360000pt;}
.x0_c01228{left:0.000000pt;}
.x1_c01228{left:52.480000pt;}
.x16_c01228{left:120.960000pt;}
.x2_c01228{left:122.880000pt;}
.x17_c01228{left:160.000000pt;}
.x7_c01228{left:170.240000pt;}
.x11_c01228{left:188.160000pt;}
.x1c_c01228{left:189.440000pt;}
.x9_c01228{left:197.760000pt;}
.x3_c01228{left:199.040000pt;}
.x8_c01228{left:208.000000pt;}
.x1a_c01228{left:217.600000pt;}
.xd_c01228{left:236.800000pt;}
.xa_c01228{left:246.400000pt;}
.x1d_c01228{left:252.160000pt;}
.x18_c01228{left:256.000000pt;}
.x4_c01228{left:274.560000pt;}
.x12_c01228{left:285.440000pt;}
.xb_c01228{left:293.760000pt;}
.x1e_c01228{left:303.360000pt;}
.xe_c01228{left:313.600000pt;}
.x13_c01228{left:322.560000pt;}
.x5_c01228{left:323.840000pt;}
.x1b_c01228{left:332.800000pt;}
.x19_c01228{left:361.600000pt;}
.xf_c01228{left:362.880000pt;}
.x6_c01228{left:371.200000pt;}
.x1f_c01228{left:380.160000pt;}
.xc_c01228{left:391.040000pt;}
.x15_c01228{left:409.600000pt;}
.x14_c01228{left:410.880000pt;}
.x20_c01228{left:427.520000pt;}
.x10_c01228{left:468.480000pt;}
.x26_c01228{left:545.280000pt;}
.x22_c01228{left:546.560000pt;}
.x21_c01228{left:574.080000pt;}
.x23_c01228{left:576.000000pt;}
.x27_c01228{left:604.800000pt;}
.x24_c01228{left:613.760000pt;}
.x28_c01228{left:615.040000pt;}
.x25_c01228{left:631.680000pt;}
.x29_c01228{left:632.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_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;}
@font-face{font-family:ff1_c01229;src:url('chunks/assets/font_e345921325f251b6d83eb05b.woff2')format("woff");}.ff1_c01229{font-family:ff1_c01229;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m46_c01229{transform:matrix(0.074950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.074950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.074950,0.000000,0.000000,0.250000,0,0);}
.m43_c01229{transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);}
.m44_c01229{transform:matrix(0.156550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156550,0.000000,0.000000,0.250000,0,0);}
.m35_c01229{transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);}
.m15_c01229{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m2e_c01229{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);}
.m34_c01229{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m36_c01229{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.mc_c01229{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.mb_c01229{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m31_c01229{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m2f_c01229{transform:matrix(0.249175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249175,0.000000,0.000000,0.250000,0,0);}
.m24_c01229{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m45_c01229{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01229{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m13_c01229{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m4_c01229{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);}
.m3c_c01229{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_c01229{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);}
.m33_c01229{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01229{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m5_c01229{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01229{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m8_c01229{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m10_c01229{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m28_c01229{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m14_c01229{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m16_c01229{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m11_c01229{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01229{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m3_c01229{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01229{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2_c01229{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m12_c01229{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01229{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m22_c01229{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.ma_c01229{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01229{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m27_c01229{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);}
.m38_c01229{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m23_c01229{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);}
.m2a_c01229{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.mf_c01229{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1_c01229{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m7_c01229{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_c01229{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);}
.m30_c01229{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m20_c01229{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);}
.m40_c01229{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);}
.m2b_c01229{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01229{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);}
.m6_c01229{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);}
.m39_c01229{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);}
.m0_c01229{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m29_c01229{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);}
.m41_c01229{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m26_c01229{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_c01229{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m17_c01229{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);}
.m19_c01229{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m37_c01229{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m42_c01229{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);}
.m1e_c01229{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01229{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01229{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01229{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m32_c01229{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m25_c01229{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01229{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01229{transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);}
.m18_c01229{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.v1_c01229{vertical-align:-2.880000px;}
.v0_c01229{vertical-align:0.000000px;}
.ls2_c01229{letter-spacing:0.000000px;}
.ls0_c01229{letter-spacing:52.651680px;}
.ls1_c01229{letter-spacing:247.176960px;}
.sc__c01229{text-shadow:none;}
.sc0_c01229{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01229{-webkit-text-stroke:0px transparent;}
.sc0_c01229{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01229{word-spacing:0.000000px;}
.ws0_c01229{word-spacing:20.750645px;}
.fc0_c01229{color:transparent;}
.fsb_c01229{font-size:11.520000px;}
.fs12_c01229{font-size:20.160000px;}
.fse_c01229{font-size:25.920000px;}
.fs10_c01229{font-size:34.560000px;}
.fs11_c01229{font-size:37.440000px;}
.fsf_c01229{font-size:40.320000px;}
.fs9_c01229{font-size:43.200000px;}
.fs6_c01229{font-size:46.080000px;}
.fs7_c01229{font-size:48.960000px;}
.fs3_c01229{font-size:51.840000px;}
.fs4_c01229{font-size:54.720000px;}
.fs1_c01229{font-size:57.600000px;}
.fs5_c01229{font-size:60.480000px;}
.fs8_c01229{font-size:63.360000px;}
.fsd_c01229{font-size:66.240000px;}
.fs0_c01229{font-size:69.120000px;}
.fsa_c01229{font-size:72.000000px;}
.fs2_c01229{font-size:74.880000px;}
.fsc_c01229{font-size:77.760000px;}
.y0_c01229{bottom:0.000000px;}
.y95_c01229{bottom:33.840000px;}
.y94_c01229{bottom:48.240000px;}
.y93_c01229{bottom:54.000000px;}
.y92_c01229{bottom:63.360000px;}
.y90_c01229{bottom:64.800000px;}
.y8e_c01229{bottom:65.520000px;}
.y8a_c01229{bottom:66.240000px;}
.y8d_c01229{bottom:66.960000px;}
.y8c_c01229{bottom:67.680000px;}
.y8b_c01229{bottom:68.400000px;}
.y8f_c01229{bottom:69.120000px;}
.y89_c01229{bottom:71.280000px;}
.y91_c01229{bottom:74.880000px;}
.y88_c01229{bottom:108.720000px;}
.y86_c01229{bottom:109.440000px;}
.y87_c01229{bottom:110.880000px;}
.y85_c01229{bottom:113.040000px;}
.y84_c01229{bottom:113.760000px;}
.y7f_c01229{bottom:141.840000px;}
.y83_c01229{bottom:142.560000px;}
.y82_c01229{bottom:143.280000px;}
.y81_c01229{bottom:144.000000px;}
.y80_c01229{bottom:144.720000px;}
.y7e_c01229{bottom:146.160000px;}
.y7c_c01229{bottom:184.320000px;}
.y78_c01229{bottom:185.040000px;}
.y7b_c01229{bottom:185.760000px;}
.y7d_c01229{bottom:186.480000px;}
.y7a_c01229{bottom:187.920000px;}
.y79_c01229{bottom:188.640000px;}
.y77_c01229{bottom:190.080000px;}
.y76_c01229{bottom:217.440000px;}
.y72_c01229{bottom:226.800000px;}
.y70_c01229{bottom:228.240000px;}
.y74_c01229{bottom:228.960000px;}
.y73_c01229{bottom:229.680000px;}
.y71_c01229{bottom:230.400000px;}
.y75_c01229{bottom:231.120000px;}
.y6f_c01229{bottom:231.840000px;}
.y6c_c01229{bottom:270.000000px;}
.y6b_c01229{bottom:271.440000px;}
.y6e_c01229{bottom:272.160000px;}
.y6d_c01229{bottom:272.880000px;}
.y6a_c01229{bottom:274.320000px;}
.y67_c01229{bottom:312.480000px;}
.y65_c01229{bottom:313.920000px;}
.y69_c01229{bottom:315.360000px;}
.y68_c01229{bottom:316.080000px;}
.y64_c01229{bottom:316.800000px;}
.y66_c01229{bottom:317.520000px;}
.y60_c01229{bottom:356.400000px;}
.y5f_c01229{bottom:357.120000px;}
.y62_c01229{bottom:358.560000px;}
.y61_c01229{bottom:359.280000px;}
.y5e_c01229{bottom:360.720000px;}
.y63_c01229{bottom:361.440000px;}
.y5b_c01229{bottom:398.880000px;}
.y5a_c01229{bottom:399.600000px;}
.y5d_c01229{bottom:401.040000px;}
.y59_c01229{bottom:401.760000px;}
.y5c_c01229{bottom:403.920000px;}
.y55_c01229{bottom:441.360000px;}
.y57_c01229{bottom:444.240000px;}
.y58_c01229{bottom:444.960000px;}
.y54_c01229{bottom:445.680000px;}
.y56_c01229{bottom:447.120000px;}
.y4f_c01229{bottom:484.560000px;}
.y4e_c01229{bottom:486.720000px;}
.y51_c01229{bottom:487.440000px;}
.y53_c01229{bottom:488.880000px;}
.y50_c01229{bottom:489.600000px;}
.y52_c01229{bottom:491.040000px;}
.y4a_c01229{bottom:527.040000px;}
.y49_c01229{bottom:529.200000px;}
.y4c_c01229{bottom:530.640000px;}
.y4d_c01229{bottom:531.360000px;}
.y4b_c01229{bottom:532.800000px;}
.y45_c01229{bottom:569.520000px;}
.y44_c01229{bottom:571.680000px;}
.y46_c01229{bottom:575.280000px;}
.y47_c01229{bottom:576.720000px;}
.y48_c01229{bottom:577.440000px;}
.y3f_c01229{bottom:612.720000px;}
.y3e_c01229{bottom:616.320000px;}
.y41_c01229{bottom:617.040000px;}
.y43_c01229{bottom:617.760000px;}
.y40_c01229{bottom:618.480000px;}
.y42_c01229{bottom:619.200000px;}
.y3a_c01229{bottom:655.200000px;}
.y39_c01229{bottom:658.800000px;}
.y3c_c01229{bottom:660.240000px;}
.y3d_c01229{bottom:660.960000px;}
.y3b_c01229{bottom:662.400000px;}
.y33_c01229{bottom:698.400000px;}
.y32_c01229{bottom:701.280000px;}
.y36_c01229{bottom:704.160000px;}
.y34_c01229{bottom:704.880000px;}
.y38_c01229{bottom:705.600000px;}
.y35_c01229{bottom:706.320000px;}
.y37_c01229{bottom:707.040000px;}
.y2d_c01229{bottom:740.880000px;}
.y2c_c01229{bottom:743.760000px;}
.y2f_c01229{bottom:746.640000px;}
.y31_c01229{bottom:747.360000px;}
.y30_c01229{bottom:748.080000px;}
.y2e_c01229{bottom:748.800000px;}
.y26_c01229{bottom:784.800000px;}
.y25_c01229{bottom:786.240000px;}
.y28_c01229{bottom:787.680000px;}
.y27_c01229{bottom:789.840000px;}
.y2b_c01229{bottom:790.560000px;}
.y29_c01229{bottom:791.280000px;}
.y2a_c01229{bottom:792.000000px;}
.y20_c01229{bottom:827.280000px;}
.y1d_c01229{bottom:828.720000px;}
.y1f_c01229{bottom:831.600000px;}
.y22_c01229{bottom:833.040000px;}
.y1e_c01229{bottom:834.480000px;}
.y21_c01229{bottom:835.200000px;}
.y23_c01229{bottom:836.640000px;}
.y24_c01229{bottom:837.360000px;}
.y18_c01229{bottom:871.200000px;}
.y1a_c01229{bottom:875.520000px;}
.y1b_c01229{bottom:876.240000px;}
.y1c_c01229{bottom:876.960000px;}
.y19_c01229{bottom:877.680000px;}
.y12_c01229{bottom:913.680000px;}
.y15_c01229{bottom:919.440000px;}
.y16_c01229{bottom:920.160000px;}
.y14_c01229{bottom:920.880000px;}
.y13_c01229{bottom:921.600000px;}
.y17_c01229{bottom:922.320000px;}
.ye_c01229{bottom:956.160000px;}
.yd_c01229{bottom:956.880000px;}
.y10_c01229{bottom:961.200000px;}
.y11_c01229{bottom:962.640000px;}
.yf_c01229{bottom:963.360000px;}
.y8_c01229{bottom:998.640000px;}
.y7_c01229{bottom:999.360000px;}
.ya_c01229{bottom:1005.120000px;}
.yc_c01229{bottom:1005.840000px;}
.yb_c01229{bottom:1006.560000px;}
.y9_c01229{bottom:1007.280000px;}
.y2_c01229{bottom:1041.840000px;}
.y5_c01229{bottom:1047.600000px;}
.y4_c01229{bottom:1048.320000px;}
.y3_c01229{bottom:1049.760000px;}
.y6_c01229{bottom:1051.200000px;}
.y1_c01229{bottom:1107.360000px;}
.hc_c01229{height:10.366875px;}
.h13_c01229{height:18.142031px;}
.h12_c01229{height:23.325469px;}
.h10_c01229{height:31.100625px;}
.h11_c01229{height:33.692344px;}
.hf_c01229{height:36.284062px;}
.ha_c01229{height:38.875781px;}
.h7_c01229{height:41.467500px;}
.h8_c01229{height:44.059219px;}
.h4_c01229{height:46.650937px;}
.h5_c01229{height:49.242656px;}
.h2_c01229{height:51.834375px;}
.h6_c01229{height:54.426094px;}
.h9_c01229{height:57.017812px;}
.he_c01229{height:59.609531px;}
.h1_c01229{height:62.201250px;}
.hb_c01229{height:64.792969px;}
.h3_c01229{height:67.384687px;}
.hd_c01229{height:69.976406px;}
.h0_c01229{height:1170.000000px;}
.w0_c01229{width:778.320000px;}
.w1_c01229{width:778.500000px;}
.x0_c01229{left:0.000000px;}
.x2_c01229{left:56.880000px;}
.x10_c01229{left:58.320000px;}
.x21_c01229{left:59.760000px;}
.x2c_c01229{left:61.200000px;}
.x3b_c01229{left:62.640000px;}
.x11_c01229{left:116.640000px;}
.xe_c01229{left:126.720000px;}
.x3_c01229{left:136.080000px;}
.x1f_c01229{left:137.520000px;}
.x26_c01229{left:138.960000px;}
.x30_c01229{left:140.400000px;}
.x37_c01229{left:141.840000px;}
.x12_c01229{left:170.640000px;}
.x27_c01229{left:224.640000px;}
.x32_c01229{left:226.080000px;}
.x24_c01229{left:267.840000px;}
.x38_c01229{left:269.280000px;}
.x28_c01229{left:278.640000px;}
.x33_c01229{left:280.800000px;}
.x14_c01229{left:318.960000px;}
.x2d_c01229{left:322.560000px;}
.x39_c01229{left:324.000000px;}
.x15_c01229{left:362.880000px;}
.x3a_c01229{left:367.200000px;}
.x16_c01229{left:417.600000px;}
.x31_c01229{left:453.600000px;}
.x17_c01229{left:461.520000px;}
.x13_c01229{left:527.040000px;}
.x4_c01229{left:536.400000px;}
.xa_c01229{left:537.840000px;}
.x1c_c01229{left:539.280000px;}
.x2e_c01229{left:540.720000px;}
.x5_c01229{left:558.000000px;}
.x18_c01229{left:559.440000px;}
.x20_c01229{left:560.880000px;}
.x2b_c01229{left:562.320000px;}
.xb_c01229{left:579.600000px;}
.x22_c01229{left:581.040000px;}
.x29_c01229{left:582.480000px;}
.x23_c01229{left:592.560000px;}
.x6_c01229{left:612.720000px;}
.x19_c01229{left:614.160000px;}
.x1d_c01229{left:615.600000px;}
.x3c_c01229{left:617.760000px;}
.x1_c01229{left:636.480000px;}
.x7_c01229{left:645.120000px;}
.xd_c01229{left:646.560000px;}
.x1a_c01229{left:648.000000px;}
.x34_c01229{left:650.160000px;}
.x8_c01229{left:678.240000px;}
.x25_c01229{left:681.840000px;}
.x35_c01229{left:684.000000px;}
.x9_c01229{left:688.320000px;}
.xc_c01229{left:689.760000px;}
.x1b_c01229{left:691.200000px;}
.x2a_c01229{left:693.360000px;}
.xf_c01229{left:709.920000px;}
.x1e_c01229{left:712.080000px;}
.x36_c01229{left:714.960000px;}
.x2f_c01229{left:774.720000px;}
@media print{
.v1_c01229{vertical-align:-2.560000pt;}
.v0_c01229{vertical-align:0.000000pt;}
.ls2_c01229{letter-spacing:0.000000pt;}
.ls0_c01229{letter-spacing:46.801493pt;}
.ls1_c01229{letter-spacing:219.712853pt;}
.ws1_c01229{word-spacing:0.000000pt;}
.ws0_c01229{word-spacing:18.445018pt;}
.fsb_c01229{font-size:10.240000pt;}
.fs12_c01229{font-size:17.920000pt;}
.fse_c01229{font-size:23.040000pt;}
.fs10_c01229{font-size:30.720000pt;}
.fs11_c01229{font-size:33.280000pt;}
.fsf_c01229{font-size:35.840000pt;}
.fs9_c01229{font-size:38.400000pt;}
.fs6_c01229{font-size:40.960000pt;}
.fs7_c01229{font-size:43.520000pt;}
.fs3_c01229{font-size:46.080000pt;}
.fs4_c01229{font-size:48.640000pt;}
.fs1_c01229{font-size:51.200000pt;}
.fs5_c01229{font-size:53.760000pt;}
.fs8_c01229{font-size:56.320000pt;}
.fsd_c01229{font-size:58.880000pt;}
.fs0_c01229{font-size:61.440000pt;}
.fsa_c01229{font-size:64.000000pt;}
.fs2_c01229{font-size:66.560000pt;}
.fsc_c01229{font-size:69.120000pt;}
.y0_c01229{bottom:0.000000pt;}
.y95_c01229{bottom:30.080000pt;}
.y94_c01229{bottom:42.880000pt;}
.y93_c01229{bottom:48.000000pt;}
.y92_c01229{bottom:56.320000pt;}
.y90_c01229{bottom:57.600000pt;}
.y8e_c01229{bottom:58.240000pt;}
.y8a_c01229{bottom:58.880000pt;}
.y8d_c01229{bottom:59.520000pt;}
.y8c_c01229{bottom:60.160000pt;}
.y8b_c01229{bottom:60.800000pt;}
.y8f_c01229{bottom:61.440000pt;}
.y89_c01229{bottom:63.360000pt;}
.y91_c01229{bottom:66.560000pt;}
.y88_c01229{bottom:96.640000pt;}
.y86_c01229{bottom:97.280000pt;}
.y87_c01229{bottom:98.560000pt;}
.y85_c01229{bottom:100.480000pt;}
.y84_c01229{bottom:101.120000pt;}
.y7f_c01229{bottom:126.080000pt;}
.y83_c01229{bottom:126.720000pt;}
.y82_c01229{bottom:127.360000pt;}
.y81_c01229{bottom:128.000000pt;}
.y80_c01229{bottom:128.640000pt;}
.y7e_c01229{bottom:129.920000pt;}
.y7c_c01229{bottom:163.840000pt;}
.y78_c01229{bottom:164.480000pt;}
.y7b_c01229{bottom:165.120000pt;}
.y7d_c01229{bottom:165.760000pt;}
.y7a_c01229{bottom:167.040000pt;}
.y79_c01229{bottom:167.680000pt;}
.y77_c01229{bottom:168.960000pt;}
.y76_c01229{bottom:193.280000pt;}
.y72_c01229{bottom:201.600000pt;}
.y70_c01229{bottom:202.880000pt;}
.y74_c01229{bottom:203.520000pt;}
.y73_c01229{bottom:204.160000pt;}
.y71_c01229{bottom:204.800000pt;}
.y75_c01229{bottom:205.440000pt;}
.y6f_c01229{bottom:206.080000pt;}
.y6c_c01229{bottom:240.000000pt;}
.y6b_c01229{bottom:241.280000pt;}
.y6e_c01229{bottom:241.920000pt;}
.y6d_c01229{bottom:242.560000pt;}
.y6a_c01229{bottom:243.840000pt;}
.y67_c01229{bottom:277.760000pt;}
.y65_c01229{bottom:279.040000pt;}
.y69_c01229{bottom:280.320000pt;}
.y68_c01229{bottom:280.960000pt;}
.y64_c01229{bottom:281.600000pt;}
.y66_c01229{bottom:282.240000pt;}
.y60_c01229{bottom:316.800000pt;}
.y5f_c01229{bottom:317.440000pt;}
.y62_c01229{bottom:318.720000pt;}
.y61_c01229{bottom:319.360000pt;}
.y5e_c01229{bottom:320.640000pt;}
.y63_c01229{bottom:321.280000pt;}
.y5b_c01229{bottom:354.560000pt;}
.y5a_c01229{bottom:355.200000pt;}
.y5d_c01229{bottom:356.480000pt;}
.y59_c01229{bottom:357.120000pt;}
.y5c_c01229{bottom:359.040000pt;}
.y55_c01229{bottom:392.320000pt;}
.y57_c01229{bottom:394.880000pt;}
.y58_c01229{bottom:395.520000pt;}
.y54_c01229{bottom:396.160000pt;}
.y56_c01229{bottom:397.440000pt;}
.y4f_c01229{bottom:430.720000pt;}
.y4e_c01229{bottom:432.640000pt;}
.y51_c01229{bottom:433.280000pt;}
.y53_c01229{bottom:434.560000pt;}
.y50_c01229{bottom:435.200000pt;}
.y52_c01229{bottom:436.480000pt;}
.y4a_c01229{bottom:468.480000pt;}
.y49_c01229{bottom:470.400000pt;}
.y4c_c01229{bottom:471.680000pt;}
.y4d_c01229{bottom:472.320000pt;}
.y4b_c01229{bottom:473.600000pt;}
.y45_c01229{bottom:506.240000pt;}
.y44_c01229{bottom:508.160000pt;}
.y46_c01229{bottom:511.360000pt;}
.y47_c01229{bottom:512.640000pt;}
.y48_c01229{bottom:513.280000pt;}
.y3f_c01229{bottom:544.640000pt;}
.y3e_c01229{bottom:547.840000pt;}
.y41_c01229{bottom:548.480000pt;}
.y43_c01229{bottom:549.120000pt;}
.y40_c01229{bottom:549.760000pt;}
.y42_c01229{bottom:550.400000pt;}
.y3a_c01229{bottom:582.400000pt;}
.y39_c01229{bottom:585.600000pt;}
.y3c_c01229{bottom:586.880000pt;}
.y3d_c01229{bottom:587.520000pt;}
.y3b_c01229{bottom:588.800000pt;}
.y33_c01229{bottom:620.800000pt;}
.y32_c01229{bottom:623.360000pt;}
.y36_c01229{bottom:625.920000pt;}
.y34_c01229{bottom:626.560000pt;}
.y38_c01229{bottom:627.200000pt;}
.y35_c01229{bottom:627.840000pt;}
.y37_c01229{bottom:628.480000pt;}
.y2d_c01229{bottom:658.560000pt;}
.y2c_c01229{bottom:661.120000pt;}
.y2f_c01229{bottom:663.680000pt;}
.y31_c01229{bottom:664.320000pt;}
.y30_c01229{bottom:664.960000pt;}
.y2e_c01229{bottom:665.600000pt;}
.y26_c01229{bottom:697.600000pt;}
.y25_c01229{bottom:698.880000pt;}
.y28_c01229{bottom:700.160000pt;}
.y27_c01229{bottom:702.080000pt;}
.y2b_c01229{bottom:702.720000pt;}
.y29_c01229{bottom:703.360000pt;}
.y2a_c01229{bottom:704.000000pt;}
.y20_c01229{bottom:735.360000pt;}
.y1d_c01229{bottom:736.640000pt;}
.y1f_c01229{bottom:739.200000pt;}
.y22_c01229{bottom:740.480000pt;}
.y1e_c01229{bottom:741.760000pt;}
.y21_c01229{bottom:742.400000pt;}
.y23_c01229{bottom:743.680000pt;}
.y24_c01229{bottom:744.320000pt;}
.y18_c01229{bottom:774.400000pt;}
.y1a_c01229{bottom:778.240000pt;}
.y1b_c01229{bottom:778.880000pt;}
.y1c_c01229{bottom:779.520000pt;}
.y19_c01229{bottom:780.160000pt;}
.y12_c01229{bottom:812.160000pt;}
.y15_c01229{bottom:817.280000pt;}
.y16_c01229{bottom:817.920000pt;}
.y14_c01229{bottom:818.560000pt;}
.y13_c01229{bottom:819.200000pt;}
.y17_c01229{bottom:819.840000pt;}
.ye_c01229{bottom:849.920000pt;}
.yd_c01229{bottom:850.560000pt;}
.y10_c01229{bottom:854.400000pt;}
.y11_c01229{bottom:855.680000pt;}
.yf_c01229{bottom:856.320000pt;}
.y8_c01229{bottom:887.680000pt;}
.y7_c01229{bottom:888.320000pt;}
.ya_c01229{bottom:893.440000pt;}
.yc_c01229{bottom:894.080000pt;}
.yb_c01229{bottom:894.720000pt;}
.y9_c01229{bottom:895.360000pt;}
.y2_c01229{bottom:926.080000pt;}
.y5_c01229{bottom:931.200000pt;}
.y4_c01229{bottom:931.840000pt;}
.y3_c01229{bottom:933.120000pt;}
.y6_c01229{bottom:934.400000pt;}
.y1_c01229{bottom:984.320000pt;}
.hc_c01229{height:9.215000pt;}
.h13_c01229{height:16.126250pt;}
.h12_c01229{height:20.733750pt;}
.h10_c01229{height:27.645000pt;}
.h11_c01229{height:29.948750pt;}
.hf_c01229{height:32.252500pt;}
.ha_c01229{height:34.556250pt;}
.h7_c01229{height:36.860000pt;}
.h8_c01229{height:39.163750pt;}
.h4_c01229{height:41.467500pt;}
.h5_c01229{height:43.771250pt;}
.h2_c01229{height:46.075000pt;}
.h6_c01229{height:48.378750pt;}
.h9_c01229{height:50.682500pt;}
.he_c01229{height:52.986250pt;}
.h1_c01229{height:55.290000pt;}
.hb_c01229{height:57.593750pt;}
.h3_c01229{height:59.897500pt;}
.hd_c01229{height:62.201250pt;}
.h0_c01229{height:1040.000000pt;}
.w0_c01229{width:691.840000pt;}
.w1_c01229{width:692.000000pt;}
.x0_c01229{left:0.000000pt;}
.x2_c01229{left:50.560000pt;}
.x10_c01229{left:51.840000pt;}
.x21_c01229{left:53.120000pt;}
.x2c_c01229{left:54.400000pt;}
.x3b_c01229{left:55.680000pt;}
.x11_c01229{left:103.680000pt;}
.xe_c01229{left:112.640000pt;}
.x3_c01229{left:120.960000pt;}
.x1f_c01229{left:122.240000pt;}
.x26_c01229{left:123.520000pt;}
.x30_c01229{left:124.800000pt;}
.x37_c01229{left:126.080000pt;}
.x12_c01229{left:151.680000pt;}
.x27_c01229{left:199.680000pt;}
.x32_c01229{left:200.960000pt;}
.x24_c01229{left:238.080000pt;}
.x38_c01229{left:239.360000pt;}
.x28_c01229{left:247.680000pt;}
.x33_c01229{left:249.600000pt;}
.x14_c01229{left:283.520000pt;}
.x2d_c01229{left:286.720000pt;}
.x39_c01229{left:288.000000pt;}
.x15_c01229{left:322.560000pt;}
.x3a_c01229{left:326.400000pt;}
.x16_c01229{left:371.200000pt;}
.x31_c01229{left:403.200000pt;}
.x17_c01229{left:410.240000pt;}
.x13_c01229{left:468.480000pt;}
.x4_c01229{left:476.800000pt;}
.xa_c01229{left:478.080000pt;}
.x1c_c01229{left:479.360000pt;}
.x2e_c01229{left:480.640000pt;}
.x5_c01229{left:496.000000pt;}
.x18_c01229{left:497.280000pt;}
.x20_c01229{left:498.560000pt;}
.x2b_c01229{left:499.840000pt;}
.xb_c01229{left:515.200000pt;}
.x22_c01229{left:516.480000pt;}
.x29_c01229{left:517.760000pt;}
.x23_c01229{left:526.720000pt;}
.x6_c01229{left:544.640000pt;}
.x19_c01229{left:545.920000pt;}
.x1d_c01229{left:547.200000pt;}
.x3c_c01229{left:549.120000pt;}
.x1_c01229{left:565.760000pt;}
.x7_c01229{left:573.440000pt;}
.xd_c01229{left:574.720000pt;}
.x1a_c01229{left:576.000000pt;}
.x34_c01229{left:577.920000pt;}
.x8_c01229{left:602.880000pt;}
.x25_c01229{left:606.080000pt;}
.x35_c01229{left:608.000000pt;}
.x9_c01229{left:611.840000pt;}
.xc_c01229{left:613.120000pt;}
.x1b_c01229{left:614.400000pt;}
.x2a_c01229{left:616.320000pt;}
.xf_c01229{left:631.040000pt;}
.x1e_c01229{left:632.960000pt;}
.x36_c01229{left:635.520000pt;}
.x2f_c01229{left:688.640000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a2c3a06505a290f8c085573a.woff2')format("woff");}.ff1_c01230{font-family:ff1_c01230;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4f_c01230{transform:matrix(0.112400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112400,0.000000,0.000000,0.250000,0,0);}
.m9_c01230{transform:matrix(0.163200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163200,0.000000,0.000000,0.250000,0,0);}
.m15_c01230{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m1a_c01230{transform:matrix(0.206650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206650,0.000000,0.000000,0.250000,0,0);}
.m37_c01230{transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);}
.ma_c01230{transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);}
.m45_c01230{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);}
.m38_c01230{transform:matrix(0.230700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230700,0.000000,0.000000,0.250000,0,0);}
.m36_c01230{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m47_c01230{transform:matrix(0.238125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238125,0.000000,0.000000,0.250000,0,0);}
.m33_c01230{transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);}
.m12_c01230{transform:matrix(0.240050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240050,0.000000,0.000000,0.250000,0,0);}
.m1e_c01230{transform:matrix(0.243050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243050,0.000000,0.000000,0.250000,0,0);}
.m3b_c01230{transform:matrix(0.244025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244025,0.000000,0.000000,0.250000,0,0);}
.m49_c01230{transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);}
.mf_c01230{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m48_c01230{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);}
.m4a_c01230{transform:matrix(0.248075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248075,0.000000,0.000000,0.250000,0,0);}
.m44_c01230{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m35_c01230{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.mc_c01230{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m40_c01230{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);}
.m41_c01230{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m4_c01230{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m2_c01230{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_c01230{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01230{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m19_c01230{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m16_c01230{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_c01230{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_c01230{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m11_c01230{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);}
.m29_c01230{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01230{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m3_c01230{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);}
.m32_c01230{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);}
.m28_c01230{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01230{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m14_c01230{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.me_c01230{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m31_c01230{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m42_c01230{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.md_c01230{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m13_c01230{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mb_c01230{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m5_c01230{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01230{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01230{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01230{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01230{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m8_c01230{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m0_c01230{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);}
.m4d_c01230{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m23_c01230{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);}
.m1b_c01230{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m25_c01230{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);}
.m24_c01230{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01230{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);}
.m2f_c01230{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m20_c01230{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m4e_c01230{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);}
.m50_c01230{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);}
.m39_c01230{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);}
.m2a_c01230{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01230{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);}
.m3d_c01230{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m22_c01230{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);}
.m46_c01230{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m10_c01230{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01230{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m43_c01230{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m34_c01230{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);}
.m6_c01230{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);}
.m7_c01230{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m30_c01230{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m18_c01230{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01230{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m27_c01230{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01230{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01230{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01230{transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);}
.v0_c01230{vertical-align:0.000000px;}
.v1_c01230{vertical-align:2.880000px;}
.v2_c01230{vertical-align:5.760000px;}
.ls3_c01230{letter-spacing:0.000000px;}
.ls2_c01230{letter-spacing:42.841680px;}
.ls0_c01230{letter-spacing:45.367680px;}
.ls1_c01230{letter-spacing:47.972400px;}
.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;}
.fc0_c01230{color:transparent;}
.fsc_c01230{font-size:34.560000px;}
.fs5_c01230{font-size:37.440000px;}
.fs10_c01230{font-size:40.320000px;}
.fsa_c01230{font-size:46.080000px;}
.fse_c01230{font-size:48.960000px;}
.fs6_c01230{font-size:51.840000px;}
.fs3_c01230{font-size:54.720000px;}
.fs9_c01230{font-size:57.600000px;}
.fs0_c01230{font-size:60.480000px;}
.fs4_c01230{font-size:63.360000px;}
.fsf_c01230{font-size:66.240000px;}
.fsb_c01230{font-size:69.120000px;}
.fs1_c01230{font-size:72.000000px;}
.fs2_c01230{font-size:74.880000px;}
.fsd_c01230{font-size:77.760000px;}
.fs8_c01230{font-size:80.640000px;}
.fs7_c01230{font-size:103.680000px;}
.y0_c01230{bottom:0.000000px;}
.y97_c01230{bottom:1.440000px;}
.y98_c01230{bottom:3.600000px;}
.y96_c01230{bottom:36.720000px;}
.y94_c01230{bottom:38.880000px;}
.y95_c01230{bottom:40.320000px;}
.y75_c01230{bottom:41.040000px;}
.y93_c01230{bottom:41.760000px;}
.y74_c01230{bottom:46.800000px;}
.y91_c01230{bottom:79.920000px;}
.y92_c01230{bottom:81.360000px;}
.y90_c01230{bottom:82.080000px;}
.y73_c01230{bottom:82.800000px;}
.y72_c01230{bottom:87.120000px;}
.y8f_c01230{bottom:123.120000px;}
.y8d_c01230{bottom:124.560000px;}
.y71_c01230{bottom:125.280000px;}
.y8e_c01230{bottom:126.000000px;}
.y8c_c01230{bottom:126.720000px;}
.y70_c01230{bottom:131.760000px;}
.y8b_c01230{bottom:167.040000px;}
.y6f_c01230{bottom:167.760000px;}
.y8a_c01230{bottom:168.480000px;}
.y89_c01230{bottom:169.200000px;}
.y6e_c01230{bottom:172.800000px;}
.y88_c01230{bottom:208.800000px;}
.y87_c01230{bottom:209.520000px;}
.y85_c01230{bottom:210.240000px;}
.y6d_c01230{bottom:210.960000px;}
.y86_c01230{bottom:211.680000px;}
.y84_c01230{bottom:212.400000px;}
.y6c_c01230{bottom:215.280000px;}
.y83_c01230{bottom:252.000000px;}
.y6b_c01230{bottom:254.160000px;}
.y82_c01230{bottom:255.600000px;}
.y6a_c01230{bottom:258.480000px;}
.y81_c01230{bottom:295.200000px;}
.y69_c01230{bottom:295.920000px;}
.y68_c01230{bottom:300.960000px;}
.y67_c01230{bottom:338.400000px;}
.y65_c01230{bottom:339.120000px;}
.y80_c01230{bottom:340.560000px;}
.y76_c01230{bottom:341.280000px;}
.y66_c01230{bottom:342.000000px;}
.y64_c01230{bottom:343.440000px;}
.y63_c01230{bottom:380.880000px;}
.y7f_c01230{bottom:381.600000px;}
.y60_c01230{bottom:382.320000px;}
.y61_c01230{bottom:383.040000px;}
.y7e_c01230{bottom:383.760000px;}
.y7d_c01230{bottom:384.480000px;}
.y62_c01230{bottom:385.200000px;}
.y5f_c01230{bottom:386.640000px;}
.y5e_c01230{bottom:424.080000px;}
.y7c_c01230{bottom:424.800000px;}
.y5d_c01230{bottom:425.520000px;}
.y7b_c01230{bottom:426.240000px;}
.y5c_c01230{bottom:428.400000px;}
.y59_c01230{bottom:468.000000px;}
.y5b_c01230{bottom:468.720000px;}
.y7a_c01230{bottom:470.160000px;}
.y5a_c01230{bottom:470.880000px;}
.y58_c01230{bottom:472.320000px;}
.y56_c01230{bottom:510.480000px;}
.y54_c01230{bottom:511.200000px;}
.y57_c01230{bottom:511.920000px;}
.y79_c01230{bottom:512.640000px;}
.y55_c01230{bottom:513.360000px;}
.y53_c01230{bottom:514.080000px;}
.y4f_c01230{bottom:553.680000px;}
.y51_c01230{bottom:554.400000px;}
.y52_c01230{bottom:555.120000px;}
.y78_c01230{bottom:555.840000px;}
.y50_c01230{bottom:557.280000px;}
.y4e_c01230{bottom:558.000000px;}
.y49_c01230{bottom:596.880000px;}
.y4d_c01230{bottom:597.600000px;}
.y4b_c01230{bottom:598.320000px;}
.y48_c01230{bottom:599.040000px;}
.y4c_c01230{bottom:599.760000px;}
.y4a_c01230{bottom:600.480000px;}
.y77_c01230{bottom:601.200000px;}
.y47_c01230{bottom:632.880000px;}
.y43_c01230{bottom:640.080000px;}
.y46_c01230{bottom:641.520000px;}
.y42_c01230{bottom:642.240000px;}
.y45_c01230{bottom:642.960000px;}
.y44_c01230{bottom:643.680000px;}
.y3c_c01230{bottom:681.840000px;}
.y3e_c01230{bottom:683.280000px;}
.y3b_c01230{bottom:684.000000px;}
.y3d_c01230{bottom:685.440000px;}
.y3f_c01230{bottom:686.160000px;}
.y41_c01230{bottom:686.880000px;}
.y40_c01230{bottom:687.600000px;}
.y36_c01230{bottom:725.040000px;}
.y37_c01230{bottom:725.760000px;}
.y39_c01230{bottom:727.200000px;}
.y38_c01230{bottom:727.920000px;}
.y35_c01230{bottom:728.640000px;}
.y3a_c01230{bottom:729.360000px;}
.y28_c01230{bottom:761.760000px;}
.y25_c01230{bottom:767.520000px;}
.y24_c01230{bottom:770.400000px;}
.y27_c01230{bottom:771.120000px;}
.y26_c01230{bottom:771.840000px;}
.y1f_c01230{bottom:810.000000px;}
.y23_c01230{bottom:811.440000px;}
.y22_c01230{bottom:812.880000px;}
.y1e_c01230{bottom:813.600000px;}
.y20_c01230{bottom:814.320000px;}
.y21_c01230{bottom:815.040000px;}
.y34_c01230{bottom:815.760000px;}
.y1c_c01230{bottom:847.440000px;}
.y1a_c01230{bottom:853.920000px;}
.y19_c01230{bottom:855.360000px;}
.y32_c01230{bottom:856.800000px;}
.y1b_c01230{bottom:857.520000px;}
.y33_c01230{bottom:858.240000px;}
.y1d_c01230{bottom:858.960000px;}
.y17_c01230{bottom:890.640000px;}
.y13_c01230{bottom:896.400000px;}
.y12_c01230{bottom:897.120000px;}
.y16_c01230{bottom:898.560000px;}
.y18_c01230{bottom:899.280000px;}
.y14_c01230{bottom:900.000000px;}
.y15_c01230{bottom:900.720000px;}
.y31_c01230{bottom:901.440000px;}
.y30_c01230{bottom:902.160000px;}
.y11_c01230{bottom:940.320000px;}
.y10_c01230{bottom:943.200000px;}
.yb_c01230{bottom:971.280000px;}
.ya_c01230{bottom:972.000000px;}
.yc_c01230{bottom:973.440000px;}
.ye_c01230{bottom:975.600000px;}
.yd_c01230{bottom:976.320000px;}
.yf_c01230{bottom:977.040000px;}
.y2f_c01230{bottom:977.760000px;}
.y9_c01230{bottom:1009.440000px;}
.y5_c01230{bottom:1015.200000px;}
.y7_c01230{bottom:1017.360000px;}
.y6_c01230{bottom:1018.800000px;}
.y8_c01230{bottom:1019.520000px;}
.y2e_c01230{bottom:1020.960000px;}
.y2d_c01230{bottom:1021.680000px;}
.y1_c01230{bottom:1058.400000px;}
.y2_c01230{bottom:1059.840000px;}
.y4_c01230{bottom:1061.280000px;}
.y3_c01230{bottom:1062.000000px;}
.y2c_c01230{bottom:1062.720000px;}
.y2b_c01230{bottom:1064.160000px;}
.y2a_c01230{bottom:1064.880000px;}
.y29_c01230{bottom:1162.800000px;}
.he_c01230{height:31.100625px;}
.h7_c01230{height:33.692344px;}
.h14_c01230{height:36.284062px;}
.hc_c01230{height:41.467500px;}
.h10_c01230{height:44.059219px;}
.h8_c01230{height:46.650937px;}
.h5_c01230{height:49.242656px;}
.hb_c01230{height:51.834375px;}
.h12_c01230{height:52.122656px;}
.h2_c01230{height:54.426094px;}
.h15_c01230{height:55.002656px;}
.h6_c01230{height:57.017812px;}
.h13_c01230{height:57.594375px;}
.h11_c01230{height:59.609531px;}
.hd_c01230{height:62.201250px;}
.h3_c01230{height:64.792969px;}
.h4_c01230{height:67.384687px;}
.hf_c01230{height:69.976406px;}
.ha_c01230{height:72.568125px;}
.h9_c01230{height:93.301875px;}
.h0_c01230{height:1190.160000px;}
.h1_c01230{height:1190.250000px;}
.w1_c01230{width:771.000000px;}
.w0_c01230{width:771.120000px;}
.x0_c01230{left:0.000000px;}
.x1_c01230{left:54.720000px;}
.x13_c01230{left:132.480000px;}
.x2_c01230{left:133.920000px;}
.xe_c01230{left:176.400000px;}
.xf_c01230{left:218.160000px;}
.x3_c01230{left:219.600000px;}
.x14_c01230{left:251.280000px;}
.x6_c01230{left:262.080000px;}
.x1d_c01230{left:274.320000px;}
.xb_c01230{left:294.480000px;}
.x23_c01230{left:304.560000px;}
.x1e_c01230{left:306.000000px;}
.x10_c01230{left:316.080000px;}
.x25_c01230{left:347.760000px;}
.x26_c01230{left:349.200000px;}
.x24_c01230{left:358.560000px;}
.x27_c01230{left:390.960000px;}
.x7_c01230{left:392.400000px;}
.x16_c01230{left:401.760000px;}
.x1f_c01230{left:423.360000px;}
.xc_c01230{left:424.800000px;}
.x22_c01230{left:434.880000px;}
.x8_c01230{left:444.960000px;}
.x11_c01230{left:447.120000px;}
.x21_c01230{left:456.480000px;}
.x20_c01230{left:468.720000px;}
.xd_c01230{left:477.360000px;}
.x15_c01230{left:483.840000px;}
.x9_c01230{left:489.600000px;}
.x12_c01230{left:493.920000px;}
.x2a_c01230{left:522.720000px;}
.x4_c01230{left:533.520000px;}
.xa_c01230{left:534.960000px;}
.x28_c01230{left:554.400000px;}
.x5_c01230{left:555.840000px;}
.x29_c01230{left:576.000000px;}
.x2b_c01230{left:609.120000px;}
.x18_c01230{left:610.560000px;}
.x19_c01230{left:642.960000px;}
.x17_c01230{left:646.560000px;}
.x1c_c01230{left:676.080000px;}
.x1a_c01230{left:686.160000px;}
.x1b_c01230{left:706.320000px;}
@media print{
.v0_c01230{vertical-align:0.000000pt;}
.v1_c01230{vertical-align:2.560000pt;}
.v2_c01230{vertical-align:5.120000pt;}
.ls3_c01230{letter-spacing:0.000000pt;}
.ls2_c01230{letter-spacing:38.081493pt;}
.ls0_c01230{letter-spacing:40.326827pt;}
.ls1_c01230{letter-spacing:42.642133pt;}
.ws0_c01230{word-spacing:0.000000pt;}
.fsc_c01230{font-size:30.720000pt;}
.fs5_c01230{font-size:33.280000pt;}
.fs10_c01230{font-size:35.840000pt;}
.fsa_c01230{font-size:40.960000pt;}
.fse_c01230{font-size:43.520000pt;}
.fs6_c01230{font-size:46.080000pt;}
.fs3_c01230{font-size:48.640000pt;}
.fs9_c01230{font-size:51.200000pt;}
.fs0_c01230{font-size:53.760000pt;}
.fs4_c01230{font-size:56.320000pt;}
.fsf_c01230{font-size:58.880000pt;}
.fsb_c01230{font-size:61.440000pt;}
.fs1_c01230{font-size:64.000000pt;}
.fs2_c01230{font-size:66.560000pt;}
.fsd_c01230{font-size:69.120000pt;}
.fs8_c01230{font-size:71.680000pt;}
.fs7_c01230{font-size:92.160000pt;}
.y0_c01230{bottom:0.000000pt;}
.y97_c01230{bottom:1.280000pt;}
.y98_c01230{bottom:3.200000pt;}
.y96_c01230{bottom:32.640000pt;}
.y94_c01230{bottom:34.560000pt;}
.y95_c01230{bottom:35.840000pt;}
.y75_c01230{bottom:36.480000pt;}
.y93_c01230{bottom:37.120000pt;}
.y74_c01230{bottom:41.600000pt;}
.y91_c01230{bottom:71.040000pt;}
.y92_c01230{bottom:72.320000pt;}
.y90_c01230{bottom:72.960000pt;}
.y73_c01230{bottom:73.600000pt;}
.y72_c01230{bottom:77.440000pt;}
.y8f_c01230{bottom:109.440000pt;}
.y8d_c01230{bottom:110.720000pt;}
.y71_c01230{bottom:111.360000pt;}
.y8e_c01230{bottom:112.000000pt;}
.y8c_c01230{bottom:112.640000pt;}
.y70_c01230{bottom:117.120000pt;}
.y8b_c01230{bottom:148.480000pt;}
.y6f_c01230{bottom:149.120000pt;}
.y8a_c01230{bottom:149.760000pt;}
.y89_c01230{bottom:150.400000pt;}
.y6e_c01230{bottom:153.600000pt;}
.y88_c01230{bottom:185.600000pt;}
.y87_c01230{bottom:186.240000pt;}
.y85_c01230{bottom:186.880000pt;}
.y6d_c01230{bottom:187.520000pt;}
.y86_c01230{bottom:188.160000pt;}
.y84_c01230{bottom:188.800000pt;}
.y6c_c01230{bottom:191.360000pt;}
.y83_c01230{bottom:224.000000pt;}
.y6b_c01230{bottom:225.920000pt;}
.y82_c01230{bottom:227.200000pt;}
.y6a_c01230{bottom:229.760000pt;}
.y81_c01230{bottom:262.400000pt;}
.y69_c01230{bottom:263.040000pt;}
.y68_c01230{bottom:267.520000pt;}
.y67_c01230{bottom:300.800000pt;}
.y65_c01230{bottom:301.440000pt;}
.y80_c01230{bottom:302.720000pt;}
.y76_c01230{bottom:303.360000pt;}
.y66_c01230{bottom:304.000000pt;}
.y64_c01230{bottom:305.280000pt;}
.y63_c01230{bottom:338.560000pt;}
.y7f_c01230{bottom:339.200000pt;}
.y60_c01230{bottom:339.840000pt;}
.y61_c01230{bottom:340.480000pt;}
.y7e_c01230{bottom:341.120000pt;}
.y7d_c01230{bottom:341.760000pt;}
.y62_c01230{bottom:342.400000pt;}
.y5f_c01230{bottom:343.680000pt;}
.y5e_c01230{bottom:376.960000pt;}
.y7c_c01230{bottom:377.600000pt;}
.y5d_c01230{bottom:378.240000pt;}
.y7b_c01230{bottom:378.880000pt;}
.y5c_c01230{bottom:380.800000pt;}
.y59_c01230{bottom:416.000000pt;}
.y5b_c01230{bottom:416.640000pt;}
.y7a_c01230{bottom:417.920000pt;}
.y5a_c01230{bottom:418.560000pt;}
.y58_c01230{bottom:419.840000pt;}
.y56_c01230{bottom:453.760000pt;}
.y54_c01230{bottom:454.400000pt;}
.y57_c01230{bottom:455.040000pt;}
.y79_c01230{bottom:455.680000pt;}
.y55_c01230{bottom:456.320000pt;}
.y53_c01230{bottom:456.960000pt;}
.y4f_c01230{bottom:492.160000pt;}
.y51_c01230{bottom:492.800000pt;}
.y52_c01230{bottom:493.440000pt;}
.y78_c01230{bottom:494.080000pt;}
.y50_c01230{bottom:495.360000pt;}
.y4e_c01230{bottom:496.000000pt;}
.y49_c01230{bottom:530.560000pt;}
.y4d_c01230{bottom:531.200000pt;}
.y4b_c01230{bottom:531.840000pt;}
.y48_c01230{bottom:532.480000pt;}
.y4c_c01230{bottom:533.120000pt;}
.y4a_c01230{bottom:533.760000pt;}
.y77_c01230{bottom:534.400000pt;}
.y47_c01230{bottom:562.560000pt;}
.y43_c01230{bottom:568.960000pt;}
.y46_c01230{bottom:570.240000pt;}
.y42_c01230{bottom:570.880000pt;}
.y45_c01230{bottom:571.520000pt;}
.y44_c01230{bottom:572.160000pt;}
.y3c_c01230{bottom:606.080000pt;}
.y3e_c01230{bottom:607.360000pt;}
.y3b_c01230{bottom:608.000000pt;}
.y3d_c01230{bottom:609.280000pt;}
.y3f_c01230{bottom:609.920000pt;}
.y41_c01230{bottom:610.560000pt;}
.y40_c01230{bottom:611.200000pt;}
.y36_c01230{bottom:644.480000pt;}
.y37_c01230{bottom:645.120000pt;}
.y39_c01230{bottom:646.400000pt;}
.y38_c01230{bottom:647.040000pt;}
.y35_c01230{bottom:647.680000pt;}
.y3a_c01230{bottom:648.320000pt;}
.y28_c01230{bottom:677.120000pt;}
.y25_c01230{bottom:682.240000pt;}
.y24_c01230{bottom:684.800000pt;}
.y27_c01230{bottom:685.440000pt;}
.y26_c01230{bottom:686.080000pt;}
.y1f_c01230{bottom:720.000000pt;}
.y23_c01230{bottom:721.280000pt;}
.y22_c01230{bottom:722.560000pt;}
.y1e_c01230{bottom:723.200000pt;}
.y20_c01230{bottom:723.840000pt;}
.y21_c01230{bottom:724.480000pt;}
.y34_c01230{bottom:725.120000pt;}
.y1c_c01230{bottom:753.280000pt;}
.y1a_c01230{bottom:759.040000pt;}
.y19_c01230{bottom:760.320000pt;}
.y32_c01230{bottom:761.600000pt;}
.y1b_c01230{bottom:762.240000pt;}
.y33_c01230{bottom:762.880000pt;}
.y1d_c01230{bottom:763.520000pt;}
.y17_c01230{bottom:791.680000pt;}
.y13_c01230{bottom:796.800000pt;}
.y12_c01230{bottom:797.440000pt;}
.y16_c01230{bottom:798.720000pt;}
.y18_c01230{bottom:799.360000pt;}
.y14_c01230{bottom:800.000000pt;}
.y15_c01230{bottom:800.640000pt;}
.y31_c01230{bottom:801.280000pt;}
.y30_c01230{bottom:801.920000pt;}
.y11_c01230{bottom:835.840000pt;}
.y10_c01230{bottom:838.400000pt;}
.yb_c01230{bottom:863.360000pt;}
.ya_c01230{bottom:864.000000pt;}
.yc_c01230{bottom:865.280000pt;}
.ye_c01230{bottom:867.200000pt;}
.yd_c01230{bottom:867.840000pt;}
.yf_c01230{bottom:868.480000pt;}
.y2f_c01230{bottom:869.120000pt;}
.y9_c01230{bottom:897.280000pt;}
.y5_c01230{bottom:902.400000pt;}
.y7_c01230{bottom:904.320000pt;}
.y6_c01230{bottom:905.600000pt;}
.y8_c01230{bottom:906.240000pt;}
.y2e_c01230{bottom:907.520000pt;}
.y2d_c01230{bottom:908.160000pt;}
.y1_c01230{bottom:940.800000pt;}
.y2_c01230{bottom:942.080000pt;}
.y4_c01230{bottom:943.360000pt;}
.y3_c01230{bottom:944.000000pt;}
.y2c_c01230{bottom:944.640000pt;}
.y2b_c01230{bottom:945.920000pt;}
.y2a_c01230{bottom:946.560000pt;}
.y29_c01230{bottom:1033.600000pt;}
.he_c01230{height:27.645000pt;}
.h7_c01230{height:29.948750pt;}
.h14_c01230{height:32.252500pt;}
.hc_c01230{height:36.860000pt;}
.h10_c01230{height:39.163750pt;}
.h8_c01230{height:41.467500pt;}
.h5_c01230{height:43.771250pt;}
.hb_c01230{height:46.075000pt;}
.h12_c01230{height:46.331250pt;}
.h2_c01230{height:48.378750pt;}
.h15_c01230{height:48.891250pt;}
.h6_c01230{height:50.682500pt;}
.h13_c01230{height:51.195000pt;}
.h11_c01230{height:52.986250pt;}
.hd_c01230{height:55.290000pt;}
.h3_c01230{height:57.593750pt;}
.h4_c01230{height:59.897500pt;}
.hf_c01230{height:62.201250pt;}
.ha_c01230{height:64.505000pt;}
.h9_c01230{height:82.935000pt;}
.h0_c01230{height:1057.920000pt;}
.h1_c01230{height:1058.000000pt;}
.w1_c01230{width:685.333333pt;}
.w0_c01230{width:685.440000pt;}
.x0_c01230{left:0.000000pt;}
.x1_c01230{left:48.640000pt;}
.x13_c01230{left:117.760000pt;}
.x2_c01230{left:119.040000pt;}
.xe_c01230{left:156.800000pt;}
.xf_c01230{left:193.920000pt;}
.x3_c01230{left:195.200000pt;}
.x14_c01230{left:223.360000pt;}
.x6_c01230{left:232.960000pt;}
.x1d_c01230{left:243.840000pt;}
.xb_c01230{left:261.760000pt;}
.x23_c01230{left:270.720000pt;}
.x1e_c01230{left:272.000000pt;}
.x10_c01230{left:280.960000pt;}
.x25_c01230{left:309.120000pt;}
.x26_c01230{left:310.400000pt;}
.x24_c01230{left:318.720000pt;}
.x27_c01230{left:347.520000pt;}
.x7_c01230{left:348.800000pt;}
.x16_c01230{left:357.120000pt;}
.x1f_c01230{left:376.320000pt;}
.xc_c01230{left:377.600000pt;}
.x22_c01230{left:386.560000pt;}
.x8_c01230{left:395.520000pt;}
.x11_c01230{left:397.440000pt;}
.x21_c01230{left:405.760000pt;}
.x20_c01230{left:416.640000pt;}
.xd_c01230{left:424.320000pt;}
.x15_c01230{left:430.080000pt;}
.x9_c01230{left:435.200000pt;}
.x12_c01230{left:439.040000pt;}
.x2a_c01230{left:464.640000pt;}
.x4_c01230{left:474.240000pt;}
.xa_c01230{left:475.520000pt;}
.x28_c01230{left:492.800000pt;}
.x5_c01230{left:494.080000pt;}
.x29_c01230{left:512.000000pt;}
.x2b_c01230{left:541.440000pt;}
.x18_c01230{left:542.720000pt;}
.x19_c01230{left:571.520000pt;}
.x17_c01230{left:574.720000pt;}
.x1c_c01230{left:600.960000pt;}
.x1a_c01230{left:609.920000pt;}
.x1b_c01230{left:627.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d8d17b5ff44e4feb98b826f4.woff2')format("woff");}.ff1_c01231{font-family:ff1_c01231;line-height:1.109863;font-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_c01231{transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);}
.m1_c01231{transform:matrix(0.056400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056400,0.000000,0.000000,0.250000,0,0);}
.m35_c01231{transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);}
.m33_c01231{transform:matrix(0.114525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114525,0.000000,0.000000,0.250000,0,0);}
.m3d_c01231{transform:matrix(0.129850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129850,0.000000,0.000000,0.250000,0,0);}
.m3b_c01231{transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01231{transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);}
.m3a_c01231{transform:matrix(0.156950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156950,0.000000,0.000000,0.250000,0,0);}
.m30_c01231{transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);}
.m21_c01231{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m34_c01231{transform:matrix(0.238425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238425,0.000000,0.000000,0.250000,0,0);}
.m31_c01231{transform:matrix(0.239775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239775,0.000000,0.000000,0.250000,0,0);}
.m3e_c01231{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);}
.m39_c01231{transform:matrix(0.242725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242725,0.000000,0.000000,0.250000,0,0);}
.m36_c01231{transform:matrix(0.244925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244925,0.000000,0.000000,0.250000,0,0);}
.m10_c01231{transform:matrix(0.248075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248075,0.000000,0.000000,0.250000,0,0);}
.m3_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);}
.m2d_c01231{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_c01231{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m5_c01231{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);}
.m2e_c01231{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m16_c01231{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);}
.m2a_c01231{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m15_c01231{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_c01231{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m11_c01231{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01231{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m13_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);}
.mb_c01231{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01231{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m18_c01231{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m4_c01231{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m29_c01231{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01231{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m23_c01231{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01231{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m9_c01231{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.md_c01231{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m22_c01231{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mc_c01231{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01231{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01231{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m6_c01231{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);}
.m25_c01231{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m28_c01231{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m17_c01231{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m8_c01231{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);}
.m2_c01231{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01231{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m0_c01231{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.ma_c01231{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);}
.mf_c01231{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);}
.m7_c01231{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);}
.m26_c01231{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01231{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);}
.m37_c01231{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m14_c01231{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);}
.me_c01231{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m20_c01231{transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);}
.m12_c01231{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.m24_c01231{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m27_c01231{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.m19_c01231{transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);}
.v2_c01231{vertical-align:-2.880000px;}
.v0_c01231{vertical-align:0.000000px;}
.v1_c01231{vertical-align:5.760000px;}
.ls1_c01231{letter-spacing:0.000000px;}
.ls0_c01231{letter-spacing:161.575680px;}
.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;}
}
.ws2_c01231{word-spacing:0.000000px;}
.ws1_c01231{word-spacing:14.955600px;}
.ws0_c01231{word-spacing:19.521600px;}
.fc0_c01231{color:transparent;}
.fs12_c01231{font-size:11.520000px;}
.fsf_c01231{font-size:25.920000px;}
.fs5_c01231{font-size:43.200000px;}
.fs6_c01231{font-size:46.080000px;}
.fs8_c01231{font-size:48.960000px;}
.fs4_c01231{font-size:51.840000px;}
.fs2_c01231{font-size:54.720000px;}
.fsa_c01231{font-size:57.600000px;}
.fs9_c01231{font-size:60.480000px;}
.fsc_c01231{font-size:66.240000px;}
.fsb_c01231{font-size:69.120000px;}
.fs0_c01231{font-size:72.000000px;}
.fs7_c01231{font-size:74.880000px;}
.fs3_c01231{font-size:77.760000px;}
.fs10_c01231{font-size:109.440000px;}
.fs11_c01231{font-size:135.360000px;}
.fse_c01231{font-size:138.240000px;}
.fsd_c01231{font-size:169.920000px;}
.fs1_c01231{font-size:276.480000px;}
.y0_c01231{bottom:0.000000px;}
.y91_c01231{bottom:2.880000px;}
.y90_c01231{bottom:7.920000px;}
.y8f_c01231{bottom:20.160000px;}
.y8c_c01231{bottom:50.400000px;}
.y8d_c01231{bottom:53.280000px;}
.y8a_c01231{bottom:54.000000px;}
.y8e_c01231{bottom:54.720000px;}
.y8b_c01231{bottom:55.440000px;}
.y89_c01231{bottom:60.480000px;}
.y88_c01231{bottom:82.080000px;}
.y87_c01231{bottom:90.000000px;}
.y85_c01231{bottom:95.040000px;}
.y83_c01231{bottom:95.760000px;}
.y82_c01231{bottom:96.480000px;}
.y84_c01231{bottom:98.640000px;}
.y81_c01231{bottom:102.240000px;}
.y86_c01231{bottom:102.960000px;}
.y80_c01231{bottom:123.120000px;}
.y7d_c01231{bottom:137.520000px;}
.y7f_c01231{bottom:138.240000px;}
.y7b_c01231{bottom:138.960000px;}
.y7c_c01231{bottom:140.400000px;}
.y7e_c01231{bottom:141.120000px;}
.y7a_c01231{bottom:144.720000px;}
.y79_c01231{bottom:162.000000px;}
.y76_c01231{bottom:180.720000px;}
.y74_c01231{bottom:182.160000px;}
.y78_c01231{bottom:182.880000px;}
.y75_c01231{bottom:183.600000px;}
.y77_c01231{bottom:184.320000px;}
.y73_c01231{bottom:187.200000px;}
.y72_c01231{bottom:204.480000px;}
.y6e_c01231{bottom:223.920000px;}
.y6d_c01231{bottom:224.640000px;}
.y71_c01231{bottom:225.360000px;}
.y70_c01231{bottom:226.080000px;}
.y6f_c01231{bottom:227.520000px;}
.y6c_c01231{bottom:229.680000px;}
.y68_c01231{bottom:268.560000px;}
.y6a_c01231{bottom:269.280000px;}
.y69_c01231{bottom:270.720000px;}
.y6b_c01231{bottom:271.440000px;}
.y67_c01231{bottom:272.880000px;}
.y62_c01231{bottom:311.040000px;}
.y64_c01231{bottom:311.760000px;}
.y65_c01231{bottom:312.480000px;}
.y63_c01231{bottom:313.920000px;}
.y66_c01231{bottom:314.640000px;}
.y61_c01231{bottom:315.360000px;}
.y5d_c01231{bottom:353.520000px;}
.y60_c01231{bottom:355.680000px;}
.y5f_c01231{bottom:356.400000px;}
.y5c_c01231{bottom:357.120000px;}
.y5e_c01231{bottom:357.840000px;}
.y58_c01231{bottom:396.000000px;}
.y5a_c01231{bottom:398.160000px;}
.y5b_c01231{bottom:399.600000px;}
.y57_c01231{bottom:400.320000px;}
.y59_c01231{bottom:401.040000px;}
.y53_c01231{bottom:439.200000px;}
.y56_c01231{bottom:441.360000px;}
.y55_c01231{bottom:442.080000px;}
.y52_c01231{bottom:442.800000px;}
.y54_c01231{bottom:443.520000px;}
.y4e_c01231{bottom:483.120000px;}
.y4d_c01231{bottom:486.000000px;}
.y50_c01231{bottom:486.720000px;}
.y4f_c01231{bottom:487.440000px;}
.y51_c01231{bottom:488.160000px;}
.y49_c01231{bottom:525.600000px;}
.y48_c01231{bottom:528.480000px;}
.y4c_c01231{bottom:529.200000px;}
.y4a_c01231{bottom:529.920000px;}
.y4b_c01231{bottom:530.640000px;}
.y44_c01231{bottom:568.080000px;}
.y43_c01231{bottom:570.960000px;}
.y47_c01231{bottom:571.680000px;}
.y46_c01231{bottom:572.400000px;}
.y45_c01231{bottom:573.120000px;}
.y3f_c01231{bottom:610.560000px;}
.y3e_c01231{bottom:613.440000px;}
.y41_c01231{bottom:614.160000px;}
.y40_c01231{bottom:615.600000px;}
.y42_c01231{bottom:616.320000px;}
.y3a_c01231{bottom:653.760000px;}
.y39_c01231{bottom:656.640000px;}
.y3c_c01231{bottom:657.360000px;}
.y3b_c01231{bottom:658.800000px;}
.y3d_c01231{bottom:659.520000px;}
.y34_c01231{bottom:696.960000px;}
.y33_c01231{bottom:699.120000px;}
.y36_c01231{bottom:700.560000px;}
.y35_c01231{bottom:701.280000px;}
.y37_c01231{bottom:702.000000px;}
.y38_c01231{bottom:702.720000px;}
.y2e_c01231{bottom:740.160000px;}
.y2d_c01231{bottom:740.880000px;}
.y30_c01231{bottom:742.320000px;}
.y31_c01231{bottom:743.040000px;}
.y32_c01231{bottom:744.480000px;}
.y2f_c01231{bottom:745.200000px;}
.y29_c01231{bottom:783.360000px;}
.y28_c01231{bottom:784.080000px;}
.y2c_c01231{bottom:786.960000px;}
.y2a_c01231{bottom:787.680000px;}
.y2b_c01231{bottom:789.120000px;}
.y23_c01231{bottom:825.840000px;}
.y22_c01231{bottom:826.560000px;}
.y27_c01231{bottom:830.160000px;}
.y24_c01231{bottom:830.880000px;}
.y25_c01231{bottom:831.600000px;}
.y26_c01231{bottom:832.320000px;}
.y1d_c01231{bottom:869.040000px;}
.y1c_c01231{bottom:869.760000px;}
.y20_c01231{bottom:873.360000px;}
.y1e_c01231{bottom:874.080000px;}
.y1f_c01231{bottom:874.800000px;}
.y21_c01231{bottom:875.520000px;}
.y17_c01231{bottom:911.520000px;}
.y16_c01231{bottom:912.960000px;}
.y1a_c01231{bottom:915.120000px;}
.y1b_c01231{bottom:915.840000px;}
.y18_c01231{bottom:917.280000px;}
.y19_c01231{bottom:918.000000px;}
.y10_c01231{bottom:954.720000px;}
.yf_c01231{bottom:956.160000px;}
.y14_c01231{bottom:958.320000px;}
.y13_c01231{bottom:959.040000px;}
.y11_c01231{bottom:960.480000px;}
.y12_c01231{bottom:961.200000px;}
.y15_c01231{bottom:961.920000px;}
.ya_c01231{bottom:997.920000px;}
.y9_c01231{bottom:998.640000px;}
.yd_c01231{bottom:1002.240000px;}
.ye_c01231{bottom:1002.960000px;}
.yb_c01231{bottom:1003.680000px;}
.yc_c01231{bottom:1004.400000px;}
.y4_c01231{bottom:1041.120000px;}
.y3_c01231{bottom:1041.840000px;}
.y6_c01231{bottom:1045.440000px;}
.y5_c01231{bottom:1046.880000px;}
.y7_c01231{bottom:1048.320000px;}
.y8_c01231{bottom:1049.040000px;}
.y2_c01231{bottom:1108.080000px;}
.y1_c01231{bottom:1141.200000px;}
.h15_c01231{height:10.366875px;}
.h12_c01231{height:23.325469px;}
.h7_c01231{height:38.875781px;}
.h8_c01231{height:41.467500px;}
.ha_c01231{height:44.059219px;}
.h6_c01231{height:46.650937px;}
.h4_c01231{height:49.242656px;}
.hc_c01231{height:51.834375px;}
.hb_c01231{height:54.426094px;}
.he_c01231{height:55.002656px;}
.hf_c01231{height:59.609531px;}
.hd_c01231{height:62.201250px;}
.h2_c01231{height:64.792969px;}
.h9_c01231{height:67.384687px;}
.h5_c01231{height:69.976406px;}
.h13_c01231{height:98.485312px;}
.h14_c01231{height:121.810781px;}
.h11_c01231{height:124.402500px;}
.h10_c01231{height:152.911406px;}
.h3_c01231{height:248.805000px;}
.h0_c01231{height:1177.200000px;}
.h1_c01231{height:1177.500000px;}
.w0_c01231{width:779.760000px;}
.w1_c01231{width:780.000000px;}
.x0_c01231{left:0.000000px;}
.x3_c01231{left:57.600000px;}
.xe_c01231{left:59.040000px;}
.x16_c01231{left:60.480000px;}
.x4_c01231{left:136.800000px;}
.x15_c01231{left:138.240000px;}
.x17_c01231{left:235.440000px;}
.x19_c01231{left:277.920000px;}
.x1a_c01231{left:320.400000px;}
.x1b_c01231{left:364.320000px;}
.x1c_c01231{left:406.800000px;}
.x5_c01231{left:527.040000px;}
.x11_c01231{left:528.480000px;}
.x6_c01231{left:558.720000px;}
.xd_c01231{left:560.160000px;}
.x14_c01231{left:591.840000px;}
.x7_c01231{left:613.440000px;}
.xf_c01231{left:615.600000px;}
.x8_c01231{left:646.560000px;}
.x10_c01231{left:648.000000px;}
.x1_c01231{left:663.120000px;}
.x9_c01231{left:678.960000px;}
.xc_c01231{left:680.400000px;}
.xb_c01231{left:689.040000px;}
.x12_c01231{left:691.200000px;}
.xa_c01231{left:709.920000px;}
.x13_c01231{left:711.360000px;}
.x2_c01231{left:771.120000px;}
.x18_c01231{left:775.440000px;}
@media print{
.v2_c01231{vertical-align:-2.560000pt;}
.v0_c01231{vertical-align:0.000000pt;}
.v1_c01231{vertical-align:5.120000pt;}
.ls1_c01231{letter-spacing:0.000000pt;}
.ls0_c01231{letter-spacing:143.622827pt;}
.ws2_c01231{word-spacing:0.000000pt;}
.ws1_c01231{word-spacing:13.293867pt;}
.ws0_c01231{word-spacing:17.352533pt;}
.fs12_c01231{font-size:10.240000pt;}
.fsf_c01231{font-size:23.040000pt;}
.fs5_c01231{font-size:38.400000pt;}
.fs6_c01231{font-size:40.960000pt;}
.fs8_c01231{font-size:43.520000pt;}
.fs4_c01231{font-size:46.080000pt;}
.fs2_c01231{font-size:48.640000pt;}
.fsa_c01231{font-size:51.200000pt;}
.fs9_c01231{font-size:53.760000pt;}
.fsc_c01231{font-size:58.880000pt;}
.fsb_c01231{font-size:61.440000pt;}
.fs0_c01231{font-size:64.000000pt;}
.fs7_c01231{font-size:66.560000pt;}
.fs3_c01231{font-size:69.120000pt;}
.fs10_c01231{font-size:97.280000pt;}
.fs11_c01231{font-size:120.320000pt;}
.fse_c01231{font-size:122.880000pt;}
.fsd_c01231{font-size:151.040000pt;}
.fs1_c01231{font-size:245.760000pt;}
.y0_c01231{bottom:0.000000pt;}
.y91_c01231{bottom:2.560000pt;}
.y90_c01231{bottom:7.040000pt;}
.y8f_c01231{bottom:17.920000pt;}
.y8c_c01231{bottom:44.800000pt;}
.y8d_c01231{bottom:47.360000pt;}
.y8a_c01231{bottom:48.000000pt;}
.y8e_c01231{bottom:48.640000pt;}
.y8b_c01231{bottom:49.280000pt;}
.y89_c01231{bottom:53.760000pt;}
.y88_c01231{bottom:72.960000pt;}
.y87_c01231{bottom:80.000000pt;}
.y85_c01231{bottom:84.480000pt;}
.y83_c01231{bottom:85.120000pt;}
.y82_c01231{bottom:85.760000pt;}
.y84_c01231{bottom:87.680000pt;}
.y81_c01231{bottom:90.880000pt;}
.y86_c01231{bottom:91.520000pt;}
.y80_c01231{bottom:109.440000pt;}
.y7d_c01231{bottom:122.240000pt;}
.y7f_c01231{bottom:122.880000pt;}
.y7b_c01231{bottom:123.520000pt;}
.y7c_c01231{bottom:124.800000pt;}
.y7e_c01231{bottom:125.440000pt;}
.y7a_c01231{bottom:128.640000pt;}
.y79_c01231{bottom:144.000000pt;}
.y76_c01231{bottom:160.640000pt;}
.y74_c01231{bottom:161.920000pt;}
.y78_c01231{bottom:162.560000pt;}
.y75_c01231{bottom:163.200000pt;}
.y77_c01231{bottom:163.840000pt;}
.y73_c01231{bottom:166.400000pt;}
.y72_c01231{bottom:181.760000pt;}
.y6e_c01231{bottom:199.040000pt;}
.y6d_c01231{bottom:199.680000pt;}
.y71_c01231{bottom:200.320000pt;}
.y70_c01231{bottom:200.960000pt;}
.y6f_c01231{bottom:202.240000pt;}
.y6c_c01231{bottom:204.160000pt;}
.y68_c01231{bottom:238.720000pt;}
.y6a_c01231{bottom:239.360000pt;}
.y69_c01231{bottom:240.640000pt;}
.y6b_c01231{bottom:241.280000pt;}
.y67_c01231{bottom:242.560000pt;}
.y62_c01231{bottom:276.480000pt;}
.y64_c01231{bottom:277.120000pt;}
.y65_c01231{bottom:277.760000pt;}
.y63_c01231{bottom:279.040000pt;}
.y66_c01231{bottom:279.680000pt;}
.y61_c01231{bottom:280.320000pt;}
.y5d_c01231{bottom:314.240000pt;}
.y60_c01231{bottom:316.160000pt;}
.y5f_c01231{bottom:316.800000pt;}
.y5c_c01231{bottom:317.440000pt;}
.y5e_c01231{bottom:318.080000pt;}
.y58_c01231{bottom:352.000000pt;}
.y5a_c01231{bottom:353.920000pt;}
.y5b_c01231{bottom:355.200000pt;}
.y57_c01231{bottom:355.840000pt;}
.y59_c01231{bottom:356.480000pt;}
.y53_c01231{bottom:390.400000pt;}
.y56_c01231{bottom:392.320000pt;}
.y55_c01231{bottom:392.960000pt;}
.y52_c01231{bottom:393.600000pt;}
.y54_c01231{bottom:394.240000pt;}
.y4e_c01231{bottom:429.440000pt;}
.y4d_c01231{bottom:432.000000pt;}
.y50_c01231{bottom:432.640000pt;}
.y4f_c01231{bottom:433.280000pt;}
.y51_c01231{bottom:433.920000pt;}
.y49_c01231{bottom:467.200000pt;}
.y48_c01231{bottom:469.760000pt;}
.y4c_c01231{bottom:470.400000pt;}
.y4a_c01231{bottom:471.040000pt;}
.y4b_c01231{bottom:471.680000pt;}
.y44_c01231{bottom:504.960000pt;}
.y43_c01231{bottom:507.520000pt;}
.y47_c01231{bottom:508.160000pt;}
.y46_c01231{bottom:508.800000pt;}
.y45_c01231{bottom:509.440000pt;}
.y3f_c01231{bottom:542.720000pt;}
.y3e_c01231{bottom:545.280000pt;}
.y41_c01231{bottom:545.920000pt;}
.y40_c01231{bottom:547.200000pt;}
.y42_c01231{bottom:547.840000pt;}
.y3a_c01231{bottom:581.120000pt;}
.y39_c01231{bottom:583.680000pt;}
.y3c_c01231{bottom:584.320000pt;}
.y3b_c01231{bottom:585.600000pt;}
.y3d_c01231{bottom:586.240000pt;}
.y34_c01231{bottom:619.520000pt;}
.y33_c01231{bottom:621.440000pt;}
.y36_c01231{bottom:622.720000pt;}
.y35_c01231{bottom:623.360000pt;}
.y37_c01231{bottom:624.000000pt;}
.y38_c01231{bottom:624.640000pt;}
.y2e_c01231{bottom:657.920000pt;}
.y2d_c01231{bottom:658.560000pt;}
.y30_c01231{bottom:659.840000pt;}
.y31_c01231{bottom:660.480000pt;}
.y32_c01231{bottom:661.760000pt;}
.y2f_c01231{bottom:662.400000pt;}
.y29_c01231{bottom:696.320000pt;}
.y28_c01231{bottom:696.960000pt;}
.y2c_c01231{bottom:699.520000pt;}
.y2a_c01231{bottom:700.160000pt;}
.y2b_c01231{bottom:701.440000pt;}
.y23_c01231{bottom:734.080000pt;}
.y22_c01231{bottom:734.720000pt;}
.y27_c01231{bottom:737.920000pt;}
.y24_c01231{bottom:738.560000pt;}
.y25_c01231{bottom:739.200000pt;}
.y26_c01231{bottom:739.840000pt;}
.y1d_c01231{bottom:772.480000pt;}
.y1c_c01231{bottom:773.120000pt;}
.y20_c01231{bottom:776.320000pt;}
.y1e_c01231{bottom:776.960000pt;}
.y1f_c01231{bottom:777.600000pt;}
.y21_c01231{bottom:778.240000pt;}
.y17_c01231{bottom:810.240000pt;}
.y16_c01231{bottom:811.520000pt;}
.y1a_c01231{bottom:813.440000pt;}
.y1b_c01231{bottom:814.080000pt;}
.y18_c01231{bottom:815.360000pt;}
.y19_c01231{bottom:816.000000pt;}
.y10_c01231{bottom:848.640000pt;}
.yf_c01231{bottom:849.920000pt;}
.y14_c01231{bottom:851.840000pt;}
.y13_c01231{bottom:852.480000pt;}
.y11_c01231{bottom:853.760000pt;}
.y12_c01231{bottom:854.400000pt;}
.y15_c01231{bottom:855.040000pt;}
.ya_c01231{bottom:887.040000pt;}
.y9_c01231{bottom:887.680000pt;}
.yd_c01231{bottom:890.880000pt;}
.ye_c01231{bottom:891.520000pt;}
.yb_c01231{bottom:892.160000pt;}
.yc_c01231{bottom:892.800000pt;}
.y4_c01231{bottom:925.440000pt;}
.y3_c01231{bottom:926.080000pt;}
.y6_c01231{bottom:929.280000pt;}
.y5_c01231{bottom:930.560000pt;}
.y7_c01231{bottom:931.840000pt;}
.y8_c01231{bottom:932.480000pt;}
.y2_c01231{bottom:984.960000pt;}
.y1_c01231{bottom:1014.400000pt;}
.h15_c01231{height:9.215000pt;}
.h12_c01231{height:20.733750pt;}
.h7_c01231{height:34.556250pt;}
.h8_c01231{height:36.860000pt;}
.ha_c01231{height:39.163750pt;}
.h6_c01231{height:41.467500pt;}
.h4_c01231{height:43.771250pt;}
.hc_c01231{height:46.075000pt;}
.hb_c01231{height:48.378750pt;}
.he_c01231{height:48.891250pt;}
.hf_c01231{height:52.986250pt;}
.hd_c01231{height:55.290000pt;}
.h2_c01231{height:57.593750pt;}
.h9_c01231{height:59.897500pt;}
.h5_c01231{height:62.201250pt;}
.h13_c01231{height:87.542500pt;}
.h14_c01231{height:108.276250pt;}
.h11_c01231{height:110.580000pt;}
.h10_c01231{height:135.921250pt;}
.h3_c01231{height:221.160000pt;}
.h0_c01231{height:1046.400000pt;}
.h1_c01231{height:1046.666667pt;}
.w0_c01231{width:693.120000pt;}
.w1_c01231{width:693.333333pt;}
.x0_c01231{left:0.000000pt;}
.x3_c01231{left:51.200000pt;}
.xe_c01231{left:52.480000pt;}
.x16_c01231{left:53.760000pt;}
.x4_c01231{left:121.600000pt;}
.x15_c01231{left:122.880000pt;}
.x17_c01231{left:209.280000pt;}
.x19_c01231{left:247.040000pt;}
.x1a_c01231{left:284.800000pt;}
.x1b_c01231{left:323.840000pt;}
.x1c_c01231{left:361.600000pt;}
.x5_c01231{left:468.480000pt;}
.x11_c01231{left:469.760000pt;}
.x6_c01231{left:496.640000pt;}
.xd_c01231{left:497.920000pt;}
.x14_c01231{left:526.080000pt;}
.x7_c01231{left:545.280000pt;}
.xf_c01231{left:547.200000pt;}
.x8_c01231{left:574.720000pt;}
.x10_c01231{left:576.000000pt;}
.x1_c01231{left:589.440000pt;}
.x9_c01231{left:603.520000pt;}
.xc_c01231{left:604.800000pt;}
.xb_c01231{left:612.480000pt;}
.x12_c01231{left:614.400000pt;}
.xa_c01231{left:631.040000pt;}
.x13_c01231{left:632.320000pt;}
.x2_c01231{left:685.440000pt;}
.x18_c01231{left:689.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_37c2cfaee540345c674b4636.woff2')format("woff");}.ff1_c01232{font-family:ff1_c01232;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m45_c01232{transform:matrix(0.040550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040550,0.000000,0.000000,0.250000,0,0);}
.m1_c01232{transform:matrix(0.068675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068675,0.000000,0.000000,0.250000,0,0);}
.m46_c01232{transform:matrix(0.093850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093850,0.000000,0.000000,0.250000,0,0);}
.m44_c01232{transform:matrix(0.100050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100050,0.000000,0.000000,0.250000,0,0);}
.m42_c01232{transform:matrix(0.115425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115425,0.000000,0.000000,0.250000,0,0);}
.m43_c01232{transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);}
.m41_c01232{transform:matrix(0.175650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175650,0.000000,0.000000,0.250000,0,0);}
.m47_c01232{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m20_c01232{transform:matrix(0.246975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246975,0.000000,0.000000,0.250000,0,0);}
.m39_c01232{transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);}
.m3e_c01232{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01232{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);}
.m38_c01232{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_c01232{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m3_c01232{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);}
.m29_c01232{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_c01232{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m18_c01232{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m10_c01232{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mb_c01232{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);}
.m35_c01232{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m8_c01232{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);}
.m27_c01232{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.md_c01232{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m7_c01232{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);}
.m28_c01232{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01232{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m15_c01232{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01232{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01232{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m12_c01232{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.mf_c01232{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m34_c01232{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01232{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01232{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m16_c01232{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m11_c01232{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m13_c01232{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01232{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_c01232{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m9_c01232{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01232{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m2_c01232{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01232{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.ma_c01232{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m24_c01232{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.mc_c01232{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m17_c01232{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m6_c01232{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);}
.m2b_c01232{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m4_c01232{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01232{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);}
.m33_c01232{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);}
.m23_c01232{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m22_c01232{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m0_c01232{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m26_c01232{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01232{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);}
.m19_c01232{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m36_c01232{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m25_c01232{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01232{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01232{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m14_c01232{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m21_c01232{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m37_c01232{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m31_c01232{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.me_c01232{transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01232{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01232{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m40_c01232{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01232{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.v1_c01232{vertical-align:-8.640000px;}
.v0_c01232{vertical-align:0.000000px;}
.v3_c01232{vertical-align:2.880000px;}
.v2_c01232{vertical-align:5.760000px;}
.ls0_c01232{letter-spacing:0.000000px;}
.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;}
}
.ws3_c01232{word-spacing:0.000000px;}
.ws2_c01232{word-spacing:4.770000px;}
.ws0_c01232{word-spacing:7.861200px;}
.ws1_c01232{word-spacing:11.690400px;}
.fc0_c01232{color:transparent;}
.fs11_c01232{font-size:20.160000px;}
.fs13_c01232{font-size:28.800000px;}
.fs10_c01232{font-size:31.680000px;}
.fsc_c01232{font-size:34.560000px;}
.fsf_c01232{font-size:37.440000px;}
.fse_c01232{font-size:40.320000px;}
.fs5_c01232{font-size:43.200000px;}
.fs8_c01232{font-size:46.080000px;}
.fsa_c01232{font-size:48.960000px;}
.fs4_c01232{font-size:51.840000px;}
.fs6_c01232{font-size:54.720000px;}
.fs2_c01232{font-size:57.600000px;}
.fs7_c01232{font-size:60.480000px;}
.fsd_c01232{font-size:63.360000px;}
.fsb_c01232{font-size:66.240000px;}
.fs0_c01232{font-size:69.120000px;}
.fs3_c01232{font-size:72.000000px;}
.fs9_c01232{font-size:74.880000px;}
.fs12_c01232{font-size:106.560000px;}
.fs14_c01232{font-size:138.240000px;}
.fs1_c01232{font-size:264.960000px;}
.y0_c01232{bottom:0.000000px;}
.y9f_c01232{bottom:0.720000px;}
.y9e_c01232{bottom:7.920000px;}
.y9d_c01232{bottom:43.200000px;}
.y9c_c01232{bottom:51.840000px;}
.y98_c01232{bottom:60.480000px;}
.y96_c01232{bottom:61.200000px;}
.y99_c01232{bottom:61.920000px;}
.y94_c01232{bottom:62.640000px;}
.y9b_c01232{bottom:63.360000px;}
.y97_c01232{bottom:64.080000px;}
.y95_c01232{bottom:64.800000px;}
.y93_c01232{bottom:67.680000px;}
.y9a_c01232{bottom:76.320000px;}
.y92_c01232{bottom:85.680000px;}
.y91_c01232{bottom:91.440000px;}
.y90_c01232{bottom:101.520000px;}
.y8a_c01232{bottom:102.960000px;}
.y8e_c01232{bottom:105.120000px;}
.y88_c01232{bottom:105.840000px;}
.y8c_c01232{bottom:106.560000px;}
.y8d_c01232{bottom:107.280000px;}
.y89_c01232{bottom:108.000000px;}
.y8f_c01232{bottom:110.160000px;}
.y87_c01232{bottom:110.880000px;}
.y8b_c01232{bottom:121.680000px;}
.y84_c01232{bottom:147.600000px;}
.y81_c01232{bottom:148.320000px;}
.y86_c01232{bottom:149.040000px;}
.y83_c01232{bottom:149.760000px;}
.y82_c01232{bottom:150.480000px;}
.y85_c01232{bottom:151.920000px;}
.y80_c01232{bottom:153.360000px;}
.y7c_c01232{bottom:190.080000px;}
.y7b_c01232{bottom:190.800000px;}
.y79_c01232{bottom:191.520000px;}
.y7e_c01232{bottom:192.240000px;}
.y7f_c01232{bottom:192.960000px;}
.y7d_c01232{bottom:193.680000px;}
.y7a_c01232{bottom:194.400000px;}
.y78_c01232{bottom:195.840000px;}
.y73_c01232{bottom:233.280000px;}
.y75_c01232{bottom:234.000000px;}
.y77_c01232{bottom:234.720000px;}
.y76_c01232{bottom:236.160000px;}
.y74_c01232{bottom:236.880000px;}
.y72_c01232{bottom:238.320000px;}
.y70_c01232{bottom:275.040000px;}
.y6e_c01232{bottom:276.480000px;}
.y71_c01232{bottom:277.920000px;}
.y6f_c01232{bottom:279.360000px;}
.y6d_c01232{bottom:280.800000px;}
.y68_c01232{bottom:318.240000px;}
.y67_c01232{bottom:318.960000px;}
.y6b_c01232{bottom:320.400000px;}
.y6c_c01232{bottom:321.120000px;}
.y6a_c01232{bottom:321.840000px;}
.y66_c01232{bottom:322.560000px;}
.y69_c01232{bottom:323.280000px;}
.y63_c01232{bottom:361.440000px;}
.y61_c01232{bottom:362.160000px;}
.y65_c01232{bottom:363.600000px;}
.y62_c01232{bottom:365.040000px;}
.y60_c01232{bottom:365.760000px;}
.y64_c01232{bottom:366.480000px;}
.y5d_c01232{bottom:404.640000px;}
.y5c_c01232{bottom:405.360000px;}
.y5f_c01232{bottom:406.800000px;}
.y5b_c01232{bottom:408.240000px;}
.y5e_c01232{bottom:408.960000px;}
.y56_c01232{bottom:447.120000px;}
.y59_c01232{bottom:447.840000px;}
.y58_c01232{bottom:448.560000px;}
.y5a_c01232{bottom:450.000000px;}
.y55_c01232{bottom:450.720000px;}
.y57_c01232{bottom:451.440000px;}
.y51_c01232{bottom:490.320000px;}
.y50_c01232{bottom:491.040000px;}
.y53_c01232{bottom:493.200000px;}
.y4f_c01232{bottom:493.920000px;}
.y52_c01232{bottom:495.360000px;}
.y54_c01232{bottom:496.080000px;}
.y4b_c01232{bottom:533.520000px;}
.y49_c01232{bottom:534.240000px;}
.y48_c01232{bottom:535.680000px;}
.y4d_c01232{bottom:536.400000px;}
.y4a_c01232{bottom:537.120000px;}
.y4c_c01232{bottom:538.560000px;}
.y4e_c01232{bottom:539.280000px;}
.y44_c01232{bottom:577.440000px;}
.y43_c01232{bottom:578.880000px;}
.y45_c01232{bottom:580.320000px;}
.y47_c01232{bottom:581.040000px;}
.y46_c01232{bottom:581.760000px;}
.y3f_c01232{bottom:619.920000px;}
.y3d_c01232{bottom:620.640000px;}
.y3c_c01232{bottom:622.080000px;}
.y41_c01232{bottom:622.800000px;}
.y3e_c01232{bottom:623.520000px;}
.y40_c01232{bottom:624.960000px;}
.y42_c01232{bottom:626.400000px;}
.y38_c01232{bottom:663.120000px;}
.y37_c01232{bottom:664.560000px;}
.y39_c01232{bottom:667.440000px;}
.y3b_c01232{bottom:668.160000px;}
.y3a_c01232{bottom:668.880000px;}
.y33_c01232{bottom:706.320000px;}
.y32_c01232{bottom:707.760000px;}
.y34_c01232{bottom:709.920000px;}
.y36_c01232{bottom:711.360000px;}
.y35_c01232{bottom:712.080000px;}
.y2d_c01232{bottom:749.520000px;}
.y2c_c01232{bottom:750.240000px;}
.y30_c01232{bottom:752.400000px;}
.y2e_c01232{bottom:753.120000px;}
.y31_c01232{bottom:753.840000px;}
.y2f_c01232{bottom:755.280000px;}
.y27_c01232{bottom:792.000000px;}
.y28_c01232{bottom:792.720000px;}
.y2a_c01232{bottom:797.040000px;}
.y29_c01232{bottom:797.760000px;}
.y2b_c01232{bottom:798.480000px;}
.y21_c01232{bottom:834.480000px;}
.y20_c01232{bottom:835.920000px;}
.y22_c01232{bottom:838.080000px;}
.y24_c01232{bottom:838.800000px;}
.y25_c01232{bottom:839.520000px;}
.y23_c01232{bottom:840.240000px;}
.y26_c01232{bottom:842.400000px;}
.y1b_c01232{bottom:876.960000px;}
.y1a_c01232{bottom:877.680000px;}
.y1d_c01232{bottom:878.400000px;}
.y1c_c01232{bottom:882.000000px;}
.y1f_c01232{bottom:882.720000px;}
.y1e_c01232{bottom:883.440000px;}
.y15_c01232{bottom:920.160000px;}
.y16_c01232{bottom:920.880000px;}
.y18_c01232{bottom:921.600000px;}
.y17_c01232{bottom:924.480000px;}
.y19_c01232{bottom:927.360000px;}
.ye_c01232{bottom:962.640000px;}
.yf_c01232{bottom:964.080000px;}
.y10_c01232{bottom:964.800000px;}
.y12_c01232{bottom:967.680000px;}
.y14_c01232{bottom:968.400000px;}
.y13_c01232{bottom:969.840000px;}
.y11_c01232{bottom:970.560000px;}
.y9_c01232{bottom:1005.840000px;}
.ya_c01232{bottom:1006.560000px;}
.yb_c01232{bottom:1007.280000px;}
.yd_c01232{bottom:1010.880000px;}
.yc_c01232{bottom:1013.040000px;}
.y3_c01232{bottom:1049.040000px;}
.y4_c01232{bottom:1049.760000px;}
.y6_c01232{bottom:1051.200000px;}
.y5_c01232{bottom:1054.080000px;}
.y8_c01232{bottom:1056.240000px;}
.y7_c01232{bottom:1056.960000px;}
.y2_c01232{bottom:1109.520000px;}
.y1_c01232{bottom:1126.800000px;}
.h15_c01232{height:18.142031px;}
.h17_c01232{height:25.917187px;}
.h14_c01232{height:28.508906px;}
.h10_c01232{height:31.100625px;}
.h13_c01232{height:33.692344px;}
.h12_c01232{height:36.284062px;}
.h7_c01232{height:38.875781px;}
.ha_c01232{height:41.467500px;}
.hc_c01232{height:44.059219px;}
.h6_c01232{height:46.650937px;}
.h8_c01232{height:49.242656px;}
.h4_c01232{height:51.834375px;}
.he_c01232{height:53.561250px;}
.h9_c01232{height:54.426094px;}
.hf_c01232{height:55.002656px;}
.h11_c01232{height:57.017812px;}
.hd_c01232{height:59.609531px;}
.h2_c01232{height:62.201250px;}
.h5_c01232{height:64.792969px;}
.hb_c01232{height:67.384687px;}
.h16_c01232{height:95.893594px;}
.h18_c01232{height:124.402500px;}
.h3_c01232{height:238.438125px;}
.h0_c01232{height:1175.760000px;}
.h1_c01232{height:1176.000000px;}
.w0_c01232{width:778.320000px;}
.w1_c01232{width:778.500000px;}
.x0_c01232{left:0.000000px;}
.x3_c01232{left:56.160000px;}
.x1b_c01232{left:57.600000px;}
.x25_c01232{left:59.760000px;}
.x4_c01232{left:134.640000px;}
.x16_c01232{left:136.080000px;}
.x26_c01232{left:138.240000px;}
.x1f_c01232{left:233.280000px;}
.x2d_c01232{left:234.720000px;}
.x22_c01232{left:265.680000px;}
.x5_c01232{left:274.320000px;}
.x17_c01232{left:275.760000px;}
.x30_c01232{left:277.920000px;}
.x2a_c01232{left:288.000000px;}
.x6_c01232{left:317.520000px;}
.x18_c01232{left:318.960000px;}
.xf_c01232{left:328.320000px;}
.x1e_c01232{left:329.760000px;}
.x31_c01232{left:332.640000px;}
.x19_c01232{left:372.960000px;}
.x23_c01232{left:396.000000px;}
.x20_c01232{left:406.080000px;}
.x2e_c01232{left:407.520000px;}
.x14_c01232{left:414.720000px;}
.x2b_c01232{left:417.600000px;}
.x24_c01232{left:438.480000px;}
.x21_c01232{left:449.280000px;}
.x32_c01232{left:494.640000px;}
.x7_c01232{left:524.880000px;}
.x12_c01232{left:526.320000px;}
.x27_c01232{left:527.760000px;}
.x8_c01232{left:557.280000px;}
.x13_c01232{left:558.720000px;}
.x37_c01232{left:560.160000px;}
.x33_c01232{left:570.960000px;}
.x28_c01232{left:581.040000px;}
.xc_c01232{left:588.960000px;}
.x38_c01232{left:591.840000px;}
.x9_c01232{left:611.280000px;}
.x10_c01232{left:612.720000px;}
.x1c_c01232{left:614.160000px;}
.x39_c01232{left:615.600000px;}
.x1_c01232{left:640.080000px;}
.xa_c01232{left:643.680000px;}
.xd_c01232{left:645.120000px;}
.x1a_c01232{left:646.560000px;}
.x2c_c01232{left:648.000000px;}
.xb_c01232{left:676.800000px;}
.xe_c01232{left:678.240000px;}
.x1d_c01232{left:679.680000px;}
.x34_c01232{left:681.120000px;}
.x11_c01232{left:687.600000px;}
.x15_c01232{left:689.040000px;}
.x29_c01232{left:691.200000px;}
.x2f_c01232{left:710.640000px;}
.x35_c01232{left:712.800000px;}
.x2_c01232{left:770.400000px;}
.x36_c01232{left:774.000000px;}
.x3a_c01232{left:775.440000px;}
@media print{
.v1_c01232{vertical-align:-7.680000pt;}
.v0_c01232{vertical-align:0.000000pt;}
.v3_c01232{vertical-align:2.560000pt;}
.v2_c01232{vertical-align:5.120000pt;}
.ls0_c01232{letter-spacing:0.000000pt;}
.ws3_c01232{word-spacing:0.000000pt;}
.ws2_c01232{word-spacing:4.240000pt;}
.ws0_c01232{word-spacing:6.987733pt;}
.ws1_c01232{word-spacing:10.391467pt;}
.fs11_c01232{font-size:17.920000pt;}
.fs13_c01232{font-size:25.600000pt;}
.fs10_c01232{font-size:28.160000pt;}
.fsc_c01232{font-size:30.720000pt;}
.fsf_c01232{font-size:33.280000pt;}
.fse_c01232{font-size:35.840000pt;}
.fs5_c01232{font-size:38.400000pt;}
.fs8_c01232{font-size:40.960000pt;}
.fsa_c01232{font-size:43.520000pt;}
.fs4_c01232{font-size:46.080000pt;}
.fs6_c01232{font-size:48.640000pt;}
.fs2_c01232{font-size:51.200000pt;}
.fs7_c01232{font-size:53.760000pt;}
.fsd_c01232{font-size:56.320000pt;}
.fsb_c01232{font-size:58.880000pt;}
.fs0_c01232{font-size:61.440000pt;}
.fs3_c01232{font-size:64.000000pt;}
.fs9_c01232{font-size:66.560000pt;}
.fs12_c01232{font-size:94.720000pt;}
.fs14_c01232{font-size:122.880000pt;}
.fs1_c01232{font-size:235.520000pt;}
.y0_c01232{bottom:0.000000pt;}
.y9f_c01232{bottom:0.640000pt;}
.y9e_c01232{bottom:7.040000pt;}
.y9d_c01232{bottom:38.400000pt;}
.y9c_c01232{bottom:46.080000pt;}
.y98_c01232{bottom:53.760000pt;}
.y96_c01232{bottom:54.400000pt;}
.y99_c01232{bottom:55.040000pt;}
.y94_c01232{bottom:55.680000pt;}
.y9b_c01232{bottom:56.320000pt;}
.y97_c01232{bottom:56.960000pt;}
.y95_c01232{bottom:57.600000pt;}
.y93_c01232{bottom:60.160000pt;}
.y9a_c01232{bottom:67.840000pt;}
.y92_c01232{bottom:76.160000pt;}
.y91_c01232{bottom:81.280000pt;}
.y90_c01232{bottom:90.240000pt;}
.y8a_c01232{bottom:91.520000pt;}
.y8e_c01232{bottom:93.440000pt;}
.y88_c01232{bottom:94.080000pt;}
.y8c_c01232{bottom:94.720000pt;}
.y8d_c01232{bottom:95.360000pt;}
.y89_c01232{bottom:96.000000pt;}
.y8f_c01232{bottom:97.920000pt;}
.y87_c01232{bottom:98.560000pt;}
.y8b_c01232{bottom:108.160000pt;}
.y84_c01232{bottom:131.200000pt;}
.y81_c01232{bottom:131.840000pt;}
.y86_c01232{bottom:132.480000pt;}
.y83_c01232{bottom:133.120000pt;}
.y82_c01232{bottom:133.760000pt;}
.y85_c01232{bottom:135.040000pt;}
.y80_c01232{bottom:136.320000pt;}
.y7c_c01232{bottom:168.960000pt;}
.y7b_c01232{bottom:169.600000pt;}
.y79_c01232{bottom:170.240000pt;}
.y7e_c01232{bottom:170.880000pt;}
.y7f_c01232{bottom:171.520000pt;}
.y7d_c01232{bottom:172.160000pt;}
.y7a_c01232{bottom:172.800000pt;}
.y78_c01232{bottom:174.080000pt;}
.y73_c01232{bottom:207.360000pt;}
.y75_c01232{bottom:208.000000pt;}
.y77_c01232{bottom:208.640000pt;}
.y76_c01232{bottom:209.920000pt;}
.y74_c01232{bottom:210.560000pt;}
.y72_c01232{bottom:211.840000pt;}
.y70_c01232{bottom:244.480000pt;}
.y6e_c01232{bottom:245.760000pt;}
.y71_c01232{bottom:247.040000pt;}
.y6f_c01232{bottom:248.320000pt;}
.y6d_c01232{bottom:249.600000pt;}
.y68_c01232{bottom:282.880000pt;}
.y67_c01232{bottom:283.520000pt;}
.y6b_c01232{bottom:284.800000pt;}
.y6c_c01232{bottom:285.440000pt;}
.y6a_c01232{bottom:286.080000pt;}
.y66_c01232{bottom:286.720000pt;}
.y69_c01232{bottom:287.360000pt;}
.y63_c01232{bottom:321.280000pt;}
.y61_c01232{bottom:321.920000pt;}
.y65_c01232{bottom:323.200000pt;}
.y62_c01232{bottom:324.480000pt;}
.y60_c01232{bottom:325.120000pt;}
.y64_c01232{bottom:325.760000pt;}
.y5d_c01232{bottom:359.680000pt;}
.y5c_c01232{bottom:360.320000pt;}
.y5f_c01232{bottom:361.600000pt;}
.y5b_c01232{bottom:362.880000pt;}
.y5e_c01232{bottom:363.520000pt;}
.y56_c01232{bottom:397.440000pt;}
.y59_c01232{bottom:398.080000pt;}
.y58_c01232{bottom:398.720000pt;}
.y5a_c01232{bottom:400.000000pt;}
.y55_c01232{bottom:400.640000pt;}
.y57_c01232{bottom:401.280000pt;}
.y51_c01232{bottom:435.840000pt;}
.y50_c01232{bottom:436.480000pt;}
.y53_c01232{bottom:438.400000pt;}
.y4f_c01232{bottom:439.040000pt;}
.y52_c01232{bottom:440.320000pt;}
.y54_c01232{bottom:440.960000pt;}
.y4b_c01232{bottom:474.240000pt;}
.y49_c01232{bottom:474.880000pt;}
.y48_c01232{bottom:476.160000pt;}
.y4d_c01232{bottom:476.800000pt;}
.y4a_c01232{bottom:477.440000pt;}
.y4c_c01232{bottom:478.720000pt;}
.y4e_c01232{bottom:479.360000pt;}
.y44_c01232{bottom:513.280000pt;}
.y43_c01232{bottom:514.560000pt;}
.y45_c01232{bottom:515.840000pt;}
.y47_c01232{bottom:516.480000pt;}
.y46_c01232{bottom:517.120000pt;}
.y3f_c01232{bottom:551.040000pt;}
.y3d_c01232{bottom:551.680000pt;}
.y3c_c01232{bottom:552.960000pt;}
.y41_c01232{bottom:553.600000pt;}
.y3e_c01232{bottom:554.240000pt;}
.y40_c01232{bottom:555.520000pt;}
.y42_c01232{bottom:556.800000pt;}
.y38_c01232{bottom:589.440000pt;}
.y37_c01232{bottom:590.720000pt;}
.y39_c01232{bottom:593.280000pt;}
.y3b_c01232{bottom:593.920000pt;}
.y3a_c01232{bottom:594.560000pt;}
.y33_c01232{bottom:627.840000pt;}
.y32_c01232{bottom:629.120000pt;}
.y34_c01232{bottom:631.040000pt;}
.y36_c01232{bottom:632.320000pt;}
.y35_c01232{bottom:632.960000pt;}
.y2d_c01232{bottom:666.240000pt;}
.y2c_c01232{bottom:666.880000pt;}
.y30_c01232{bottom:668.800000pt;}
.y2e_c01232{bottom:669.440000pt;}
.y31_c01232{bottom:670.080000pt;}
.y2f_c01232{bottom:671.360000pt;}
.y27_c01232{bottom:704.000000pt;}
.y28_c01232{bottom:704.640000pt;}
.y2a_c01232{bottom:708.480000pt;}
.y29_c01232{bottom:709.120000pt;}
.y2b_c01232{bottom:709.760000pt;}
.y21_c01232{bottom:741.760000pt;}
.y20_c01232{bottom:743.040000pt;}
.y22_c01232{bottom:744.960000pt;}
.y24_c01232{bottom:745.600000pt;}
.y25_c01232{bottom:746.240000pt;}
.y23_c01232{bottom:746.880000pt;}
.y26_c01232{bottom:748.800000pt;}
.y1b_c01232{bottom:779.520000pt;}
.y1a_c01232{bottom:780.160000pt;}
.y1d_c01232{bottom:780.800000pt;}
.y1c_c01232{bottom:784.000000pt;}
.y1f_c01232{bottom:784.640000pt;}
.y1e_c01232{bottom:785.280000pt;}
.y15_c01232{bottom:817.920000pt;}
.y16_c01232{bottom:818.560000pt;}
.y18_c01232{bottom:819.200000pt;}
.y17_c01232{bottom:821.760000pt;}
.y19_c01232{bottom:824.320000pt;}
.ye_c01232{bottom:855.680000pt;}
.yf_c01232{bottom:856.960000pt;}
.y10_c01232{bottom:857.600000pt;}
.y12_c01232{bottom:860.160000pt;}
.y14_c01232{bottom:860.800000pt;}
.y13_c01232{bottom:862.080000pt;}
.y11_c01232{bottom:862.720000pt;}
.y9_c01232{bottom:894.080000pt;}
.ya_c01232{bottom:894.720000pt;}
.yb_c01232{bottom:895.360000pt;}
.yd_c01232{bottom:898.560000pt;}
.yc_c01232{bottom:900.480000pt;}
.y3_c01232{bottom:932.480000pt;}
.y4_c01232{bottom:933.120000pt;}
.y6_c01232{bottom:934.400000pt;}
.y5_c01232{bottom:936.960000pt;}
.y8_c01232{bottom:938.880000pt;}
.y7_c01232{bottom:939.520000pt;}
.y2_c01232{bottom:986.240000pt;}
.y1_c01232{bottom:1001.600000pt;}
.h15_c01232{height:16.126250pt;}
.h17_c01232{height:23.037500pt;}
.h14_c01232{height:25.341250pt;}
.h10_c01232{height:27.645000pt;}
.h13_c01232{height:29.948750pt;}
.h12_c01232{height:32.252500pt;}
.h7_c01232{height:34.556250pt;}
.ha_c01232{height:36.860000pt;}
.hc_c01232{height:39.163750pt;}
.h6_c01232{height:41.467500pt;}
.h8_c01232{height:43.771250pt;}
.h4_c01232{height:46.075000pt;}
.he_c01232{height:47.610000pt;}
.h9_c01232{height:48.378750pt;}
.hf_c01232{height:48.891250pt;}
.h11_c01232{height:50.682500pt;}
.hd_c01232{height:52.986250pt;}
.h2_c01232{height:55.290000pt;}
.h5_c01232{height:57.593750pt;}
.hb_c01232{height:59.897500pt;}
.h16_c01232{height:85.238750pt;}
.h18_c01232{height:110.580000pt;}
.h3_c01232{height:211.945000pt;}
.h0_c01232{height:1045.120000pt;}
.h1_c01232{height:1045.333333pt;}
.w0_c01232{width:691.840000pt;}
.w1_c01232{width:692.000000pt;}
.x0_c01232{left:0.000000pt;}
.x3_c01232{left:49.920000pt;}
.x1b_c01232{left:51.200000pt;}
.x25_c01232{left:53.120000pt;}
.x4_c01232{left:119.680000pt;}
.x16_c01232{left:120.960000pt;}
.x26_c01232{left:122.880000pt;}
.x1f_c01232{left:207.360000pt;}
.x2d_c01232{left:208.640000pt;}
.x22_c01232{left:236.160000pt;}
.x5_c01232{left:243.840000pt;}
.x17_c01232{left:245.120000pt;}
.x30_c01232{left:247.040000pt;}
.x2a_c01232{left:256.000000pt;}
.x6_c01232{left:282.240000pt;}
.x18_c01232{left:283.520000pt;}
.xf_c01232{left:291.840000pt;}
.x1e_c01232{left:293.120000pt;}
.x31_c01232{left:295.680000pt;}
.x19_c01232{left:331.520000pt;}
.x23_c01232{left:352.000000pt;}
.x20_c01232{left:360.960000pt;}
.x2e_c01232{left:362.240000pt;}
.x14_c01232{left:368.640000pt;}
.x2b_c01232{left:371.200000pt;}
.x24_c01232{left:389.760000pt;}
.x21_c01232{left:399.360000pt;}
.x32_c01232{left:439.680000pt;}
.x7_c01232{left:466.560000pt;}
.x12_c01232{left:467.840000pt;}
.x27_c01232{left:469.120000pt;}
.x8_c01232{left:495.360000pt;}
.x13_c01232{left:496.640000pt;}
.x37_c01232{left:497.920000pt;}
.x33_c01232{left:507.520000pt;}
.x28_c01232{left:516.480000pt;}
.xc_c01232{left:523.520000pt;}
.x38_c01232{left:526.080000pt;}
.x9_c01232{left:543.360000pt;}
.x10_c01232{left:544.640000pt;}
.x1c_c01232{left:545.920000pt;}
.x39_c01232{left:547.200000pt;}
.x1_c01232{left:568.960000pt;}
.xa_c01232{left:572.160000pt;}
.xd_c01232{left:573.440000pt;}
.x1a_c01232{left:574.720000pt;}
.x2c_c01232{left:576.000000pt;}
.xb_c01232{left:601.600000pt;}
.xe_c01232{left:602.880000pt;}
.x1d_c01232{left:604.160000pt;}
.x34_c01232{left:605.440000pt;}
.x11_c01232{left:611.200000pt;}
.x15_c01232{left:612.480000pt;}
.x29_c01232{left:614.400000pt;}
.x2f_c01232{left:631.680000pt;}
.x35_c01232{left:633.600000pt;}
.x2_c01232{left:684.800000pt;}
.x36_c01232{left:688.000000pt;}
.x3a_c01232{left:689.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_be1cca334d6b5c832f27df8e.woff2')format("woff");}.ff1_c01233{font-family:ff1_c01233;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3f_c01233{transform:matrix(0.066250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066250,0.000000,0.000000,0.250000,0,0);}
.m3_c01233{transform:matrix(0.214400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214400,0.000000,0.000000,0.250000,0,0);}
.m25_c01233{transform:matrix(0.223675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223675,0.000000,0.000000,0.250000,0,0);}
.m2b_c01233{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m0_c01233{transform:matrix(0.233800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233800,0.000000,0.000000,0.250000,0,0);}
.m2e_c01233{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_c01233{transform:matrix(0.244925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244925,0.000000,0.000000,0.250000,0,0);}
.m21_c01233{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);}
.m1b_c01233{transform:matrix(0.247025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247025,0.000000,0.000000,0.250000,0,0);}
.m3b_c01233{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m3a_c01233{transform:matrix(0.249350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249350,0.000000,0.000000,0.250000,0,0);}
.m2f_c01233{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01233{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);}
.m36_c01233{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.mb_c01233{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_c01233{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m16_c01233{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_c01233{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);}
.m32_c01233{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);}
.m31_c01233{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01233{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mf_c01233{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);}
.m2c_c01233{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m9_c01233{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01233{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mc_c01233{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01233{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.md_c01233{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01233{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m38_c01233{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m14_c01233{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m27_c01233{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m37_c01233{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.ma_c01233{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m34_c01233{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m24_c01233{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01233{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m4_c01233{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m26_c01233{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);}
.m22_c01233{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_c01233{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m17_c01233{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m20_c01233{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m5_c01233{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01233{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m15_c01233{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m29_c01233{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);}
.m33_c01233{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01233{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);}
.m1e_c01233{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01233{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m11_c01233{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m1_c01233{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);}
.m7_c01233{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);}
.m13_c01233{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m30_c01233{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);}
.m39_c01233{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m19_c01233{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m23_c01233{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m28_c01233{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m2_c01233{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01233{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.m35_c01233{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.me_c01233{transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);}
.v0_c01233{vertical-align:0.000000px;}
.v1_c01233{vertical-align:2.880000px;}
.ls0_c01233{letter-spacing:0.000000px;}
.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;}
}
.ws2_c01233{word-spacing:0.000000px;}
.ws1_c01233{word-spacing:21.327710px;}
.ws0_c01233{word-spacing:53.775600px;}
.fc0_c01233{color:transparent;}
.fs2_c01233{font-size:23.040000px;}
.fs3_c01233{font-size:31.680000px;}
.fs1_c01233{font-size:34.560000px;}
.fs6_c01233{font-size:37.440000px;}
.fsd_c01233{font-size:46.080000px;}
.fs8_c01233{font-size:48.960000px;}
.fsa_c01233{font-size:51.840000px;}
.fs9_c01233{font-size:54.720000px;}
.fs4_c01233{font-size:57.600000px;}
.fs7_c01233{font-size:60.480000px;}
.fsf_c01233{font-size:63.360000px;}
.fse_c01233{font-size:66.240000px;}
.fsb_c01233{font-size:69.120000px;}
.fs0_c01233{font-size:72.000000px;}
.fs5_c01233{font-size:74.880000px;}
.fs10_c01233{font-size:77.760000px;}
.fsc_c01233{font-size:97.920000px;}
.fs11_c01233{font-size:146.880000px;}
.y0_c01233{bottom:0.000000px;}
.y84_c01233{bottom:0.720000px;}
.y80_c01233{bottom:93.600000px;}
.y83_c01233{bottom:95.040000px;}
.y82_c01233{bottom:95.760000px;}
.y81_c01233{bottom:97.200000px;}
.y7f_c01233{bottom:101.520000px;}
.y7b_c01233{bottom:136.800000px;}
.y7e_c01233{bottom:137.520000px;}
.y7d_c01233{bottom:138.240000px;}
.y7c_c01233{bottom:139.680000px;}
.y7a_c01233{bottom:143.280000px;}
.y79_c01233{bottom:178.560000px;}
.y78_c01233{bottom:179.280000px;}
.y77_c01233{bottom:180.000000px;}
.y75_c01233{bottom:180.720000px;}
.y76_c01233{bottom:182.880000px;}
.y74_c01233{bottom:186.480000px;}
.y72_c01233{bottom:222.480000px;}
.y70_c01233{bottom:223.920000px;}
.y73_c01233{bottom:224.640000px;}
.y71_c01233{bottom:225.360000px;}
.y6f_c01233{bottom:228.240000px;}
.y6e_c01233{bottom:265.680000px;}
.y6d_c01233{bottom:266.400000px;}
.y6b_c01233{bottom:267.120000px;}
.y6c_c01233{bottom:269.280000px;}
.y6a_c01233{bottom:270.720000px;}
.y67_c01233{bottom:309.600000px;}
.y68_c01233{bottom:311.760000px;}
.y69_c01233{bottom:312.480000px;}
.y66_c01233{bottom:313.200000px;}
.y62_c01233{bottom:352.800000px;}
.y64_c01233{bottom:354.240000px;}
.y65_c01233{bottom:354.960000px;}
.y63_c01233{bottom:356.400000px;}
.y61_c01233{bottom:357.120000px;}
.y5d_c01233{bottom:396.000000px;}
.y5f_c01233{bottom:397.440000px;}
.y60_c01233{bottom:398.160000px;}
.y5e_c01233{bottom:398.880000px;}
.y5c_c01233{bottom:399.600000px;}
.y57_c01233{bottom:438.480000px;}
.y5b_c01233{bottom:439.200000px;}
.y5a_c01233{bottom:439.920000px;}
.y59_c01233{bottom:441.360000px;}
.y58_c01233{bottom:442.080000px;}
.y56_c01233{bottom:442.800000px;}
.y53_c01233{bottom:481.680000px;}
.y55_c01233{bottom:482.400000px;}
.y52_c01233{bottom:484.560000px;}
.y54_c01233{bottom:485.280000px;}
.y4e_c01233{bottom:524.880000px;}
.y50_c01233{bottom:525.600000px;}
.y4d_c01233{bottom:527.040000px;}
.y4f_c01233{bottom:527.760000px;}
.y51_c01233{bottom:528.480000px;}
.y49_c01233{bottom:567.360000px;}
.y4b_c01233{bottom:568.800000px;}
.y48_c01233{bottom:569.520000px;}
.y4a_c01233{bottom:570.960000px;}
.y4c_c01233{bottom:572.400000px;}
.y45_c01233{bottom:609.840000px;}
.y43_c01233{bottom:610.560000px;}
.y47_c01233{bottom:611.280000px;}
.y42_c01233{bottom:612.720000px;}
.y44_c01233{bottom:613.440000px;}
.y46_c01233{bottom:614.160000px;}
.y3e_c01233{bottom:653.040000px;}
.y3d_c01233{bottom:654.480000px;}
.y41_c01233{bottom:655.200000px;}
.y3f_c01233{bottom:656.640000px;}
.y40_c01233{bottom:657.360000px;}
.y38_c01233{bottom:695.520000px;}
.y3a_c01233{bottom:696.240000px;}
.y39_c01233{bottom:696.960000px;}
.y37_c01233{bottom:697.680000px;}
.y3c_c01233{bottom:698.400000px;}
.y3b_c01233{bottom:700.560000px;}
.y32_c01233{bottom:732.960000px;}
.y30_c01233{bottom:738.000000px;}
.y2f_c01233{bottom:740.160000px;}
.y36_c01233{bottom:740.880000px;}
.y33_c01233{bottom:741.600000px;}
.y35_c01233{bottom:742.320000px;}
.y31_c01233{bottom:743.040000px;}
.y34_c01233{bottom:743.760000px;}
.y2a_c01233{bottom:781.200000px;}
.y2b_c01233{bottom:781.920000px;}
.y29_c01233{bottom:783.360000px;}
.y2e_c01233{bottom:784.800000px;}
.y2d_c01233{bottom:785.520000px;}
.y2c_c01233{bottom:786.240000px;}
.y22_c01233{bottom:825.120000px;}
.y21_c01233{bottom:825.840000px;}
.y23_c01233{bottom:826.560000px;}
.y28_c01233{bottom:827.280000px;}
.y27_c01233{bottom:828.000000px;}
.y24_c01233{bottom:828.720000px;}
.y25_c01233{bottom:829.440000px;}
.y26_c01233{bottom:830.160000px;}
.y1c_c01233{bottom:868.320000px;}
.y1b_c01233{bottom:869.040000px;}
.y1f_c01233{bottom:870.480000px;}
.y20_c01233{bottom:871.200000px;}
.y1d_c01233{bottom:872.640000px;}
.y1e_c01233{bottom:873.360000px;}
.y15_c01233{bottom:911.520000px;}
.y18_c01233{bottom:912.240000px;}
.y16_c01233{bottom:912.960000px;}
.y1a_c01233{bottom:913.680000px;}
.y19_c01233{bottom:914.400000px;}
.y17_c01233{bottom:915.840000px;}
.y14_c01233{bottom:954.720000px;}
.yc_c01233{bottom:985.680000px;}
.yd_c01233{bottom:986.400000px;}
.ye_c01233{bottom:987.840000px;}
.y10_c01233{bottom:988.560000px;}
.y12_c01233{bottom:990.000000px;}
.yf_c01233{bottom:990.720000px;}
.y11_c01233{bottom:991.440000px;}
.y13_c01233{bottom:992.880000px;}
.y4_c01233{bottom:1029.600000px;}
.y7_c01233{bottom:1031.040000px;}
.y6_c01233{bottom:1032.480000px;}
.y9_c01233{bottom:1033.200000px;}
.y5_c01233{bottom:1033.920000px;}
.ya_c01233{bottom:1034.640000px;}
.y8_c01233{bottom:1035.360000px;}
.yb_c01233{bottom:1036.080000px;}
.y3_c01233{bottom:1105.200000px;}
.y1_c01233{bottom:1106.640000px;}
.y2_c01233{bottom:1116.000000px;}
.h4_c01233{height:20.733750px;}
.h5_c01233{height:28.508906px;}
.h3_c01233{height:31.100625px;}
.h8_c01233{height:33.692344px;}
.h10_c01233{height:41.467500px;}
.ha_c01233{height:44.059219px;}
.hc_c01233{height:46.650937px;}
.hb_c01233{height:49.242656px;}
.h6_c01233{height:51.834375px;}
.he_c01233{height:52.122656px;}
.h9_c01233{height:54.426094px;}
.h12_c01233{height:57.017812px;}
.h11_c01233{height:59.609531px;}
.hd_c01233{height:62.201250px;}
.h2_c01233{height:64.792969px;}
.h7_c01233{height:67.384687px;}
.h13_c01233{height:69.976406px;}
.hf_c01233{height:88.118437px;}
.h14_c01233{height:132.177656px;}
.h1_c01233{height:1162.500000px;}
.h0_c01233{height:1162.800000px;}
.w1_c01233{width:769.500000px;}
.w0_c01233{width:769.680000px;}
.x0_c01233{left:0.000000px;}
.x5_c01233{left:54.000000px;}
.x6_c01233{left:132.480000px;}
.x13_c01233{left:133.920000px;}
.x7_c01233{left:228.960000px;}
.x1e_c01233{left:239.760000px;}
.x17_c01233{left:261.360000px;}
.x8_c01233{left:272.160000px;}
.x10_c01233{left:282.240000px;}
.x19_c01233{left:304.560000px;}
.x11_c01233{left:326.880000px;}
.x14_c01233{left:358.560000px;}
.x9_c01233{left:401.760000px;}
.x15_c01233{left:413.280000px;}
.x1f_c01233{left:434.160000px;}
.x1a_c01233{left:444.960000px;}
.x12_c01233{left:455.760000px;}
.x20_c01233{left:477.360000px;}
.x1d_c01233{left:488.160000px;}
.x1b_c01233{left:499.680000px;}
.xa_c01233{left:522.720000px;}
.xb_c01233{left:554.400000px;}
.x1c_c01233{left:565.920000px;}
.x16_c01233{left:576.000000px;}
.x22_c01233{left:581.040000px;}
.xc_c01233{left:609.120000px;}
.x1_c01233{left:638.640000px;}
.xd_c01233{left:641.520000px;}
.x18_c01233{left:642.960000px;}
.x2_c01233{left:657.360000px;}
.x4_c01233{left:674.640000px;}
.x21_c01233{left:676.080000px;}
.x3_c01233{left:678.240000px;}
.xe_c01233{left:684.720000px;}
.xf_c01233{left:705.600000px;}
.x23_c01233{left:763.920000px;}
@media print{
.v0_c01233{vertical-align:0.000000pt;}
.v1_c01233{vertical-align:2.560000pt;}
.ls0_c01233{letter-spacing:0.000000pt;}
.ws2_c01233{word-spacing:0.000000pt;}
.ws1_c01233{word-spacing:18.957965pt;}
.ws0_c01233{word-spacing:47.800533pt;}
.fs2_c01233{font-size:20.480000pt;}
.fs3_c01233{font-size:28.160000pt;}
.fs1_c01233{font-size:30.720000pt;}
.fs6_c01233{font-size:33.280000pt;}
.fsd_c01233{font-size:40.960000pt;}
.fs8_c01233{font-size:43.520000pt;}
.fsa_c01233{font-size:46.080000pt;}
.fs9_c01233{font-size:48.640000pt;}
.fs4_c01233{font-size:51.200000pt;}
.fs7_c01233{font-size:53.760000pt;}
.fsf_c01233{font-size:56.320000pt;}
.fse_c01233{font-size:58.880000pt;}
.fsb_c01233{font-size:61.440000pt;}
.fs0_c01233{font-size:64.000000pt;}
.fs5_c01233{font-size:66.560000pt;}
.fs10_c01233{font-size:69.120000pt;}
.fsc_c01233{font-size:87.040000pt;}
.fs11_c01233{font-size:130.560000pt;}
.y0_c01233{bottom:0.000000pt;}
.y84_c01233{bottom:0.640000pt;}
.y80_c01233{bottom:83.200000pt;}
.y83_c01233{bottom:84.480000pt;}
.y82_c01233{bottom:85.120000pt;}
.y81_c01233{bottom:86.400000pt;}
.y7f_c01233{bottom:90.240000pt;}
.y7b_c01233{bottom:121.600000pt;}
.y7e_c01233{bottom:122.240000pt;}
.y7d_c01233{bottom:122.880000pt;}
.y7c_c01233{bottom:124.160000pt;}
.y7a_c01233{bottom:127.360000pt;}
.y79_c01233{bottom:158.720000pt;}
.y78_c01233{bottom:159.360000pt;}
.y77_c01233{bottom:160.000000pt;}
.y75_c01233{bottom:160.640000pt;}
.y76_c01233{bottom:162.560000pt;}
.y74_c01233{bottom:165.760000pt;}
.y72_c01233{bottom:197.760000pt;}
.y70_c01233{bottom:199.040000pt;}
.y73_c01233{bottom:199.680000pt;}
.y71_c01233{bottom:200.320000pt;}
.y6f_c01233{bottom:202.880000pt;}
.y6e_c01233{bottom:236.160000pt;}
.y6d_c01233{bottom:236.800000pt;}
.y6b_c01233{bottom:237.440000pt;}
.y6c_c01233{bottom:239.360000pt;}
.y6a_c01233{bottom:240.640000pt;}
.y67_c01233{bottom:275.200000pt;}
.y68_c01233{bottom:277.120000pt;}
.y69_c01233{bottom:277.760000pt;}
.y66_c01233{bottom:278.400000pt;}
.y62_c01233{bottom:313.600000pt;}
.y64_c01233{bottom:314.880000pt;}
.y65_c01233{bottom:315.520000pt;}
.y63_c01233{bottom:316.800000pt;}
.y61_c01233{bottom:317.440000pt;}
.y5d_c01233{bottom:352.000000pt;}
.y5f_c01233{bottom:353.280000pt;}
.y60_c01233{bottom:353.920000pt;}
.y5e_c01233{bottom:354.560000pt;}
.y5c_c01233{bottom:355.200000pt;}
.y57_c01233{bottom:389.760000pt;}
.y5b_c01233{bottom:390.400000pt;}
.y5a_c01233{bottom:391.040000pt;}
.y59_c01233{bottom:392.320000pt;}
.y58_c01233{bottom:392.960000pt;}
.y56_c01233{bottom:393.600000pt;}
.y53_c01233{bottom:428.160000pt;}
.y55_c01233{bottom:428.800000pt;}
.y52_c01233{bottom:430.720000pt;}
.y54_c01233{bottom:431.360000pt;}
.y4e_c01233{bottom:466.560000pt;}
.y50_c01233{bottom:467.200000pt;}
.y4d_c01233{bottom:468.480000pt;}
.y4f_c01233{bottom:469.120000pt;}
.y51_c01233{bottom:469.760000pt;}
.y49_c01233{bottom:504.320000pt;}
.y4b_c01233{bottom:505.600000pt;}
.y48_c01233{bottom:506.240000pt;}
.y4a_c01233{bottom:507.520000pt;}
.y4c_c01233{bottom:508.800000pt;}
.y45_c01233{bottom:542.080000pt;}
.y43_c01233{bottom:542.720000pt;}
.y47_c01233{bottom:543.360000pt;}
.y42_c01233{bottom:544.640000pt;}
.y44_c01233{bottom:545.280000pt;}
.y46_c01233{bottom:545.920000pt;}
.y3e_c01233{bottom:580.480000pt;}
.y3d_c01233{bottom:581.760000pt;}
.y41_c01233{bottom:582.400000pt;}
.y3f_c01233{bottom:583.680000pt;}
.y40_c01233{bottom:584.320000pt;}
.y38_c01233{bottom:618.240000pt;}
.y3a_c01233{bottom:618.880000pt;}
.y39_c01233{bottom:619.520000pt;}
.y37_c01233{bottom:620.160000pt;}
.y3c_c01233{bottom:620.800000pt;}
.y3b_c01233{bottom:622.720000pt;}
.y32_c01233{bottom:651.520000pt;}
.y30_c01233{bottom:656.000000pt;}
.y2f_c01233{bottom:657.920000pt;}
.y36_c01233{bottom:658.560000pt;}
.y33_c01233{bottom:659.200000pt;}
.y35_c01233{bottom:659.840000pt;}
.y31_c01233{bottom:660.480000pt;}
.y34_c01233{bottom:661.120000pt;}
.y2a_c01233{bottom:694.400000pt;}
.y2b_c01233{bottom:695.040000pt;}
.y29_c01233{bottom:696.320000pt;}
.y2e_c01233{bottom:697.600000pt;}
.y2d_c01233{bottom:698.240000pt;}
.y2c_c01233{bottom:698.880000pt;}
.y22_c01233{bottom:733.440000pt;}
.y21_c01233{bottom:734.080000pt;}
.y23_c01233{bottom:734.720000pt;}
.y28_c01233{bottom:735.360000pt;}
.y27_c01233{bottom:736.000000pt;}
.y24_c01233{bottom:736.640000pt;}
.y25_c01233{bottom:737.280000pt;}
.y26_c01233{bottom:737.920000pt;}
.y1c_c01233{bottom:771.840000pt;}
.y1b_c01233{bottom:772.480000pt;}
.y1f_c01233{bottom:773.760000pt;}
.y20_c01233{bottom:774.400000pt;}
.y1d_c01233{bottom:775.680000pt;}
.y1e_c01233{bottom:776.320000pt;}
.y15_c01233{bottom:810.240000pt;}
.y18_c01233{bottom:810.880000pt;}
.y16_c01233{bottom:811.520000pt;}
.y1a_c01233{bottom:812.160000pt;}
.y19_c01233{bottom:812.800000pt;}
.y17_c01233{bottom:814.080000pt;}
.y14_c01233{bottom:848.640000pt;}
.yc_c01233{bottom:876.160000pt;}
.yd_c01233{bottom:876.800000pt;}
.ye_c01233{bottom:878.080000pt;}
.y10_c01233{bottom:878.720000pt;}
.y12_c01233{bottom:880.000000pt;}
.yf_c01233{bottom:880.640000pt;}
.y11_c01233{bottom:881.280000pt;}
.y13_c01233{bottom:882.560000pt;}
.y4_c01233{bottom:915.200000pt;}
.y7_c01233{bottom:916.480000pt;}
.y6_c01233{bottom:917.760000pt;}
.y9_c01233{bottom:918.400000pt;}
.y5_c01233{bottom:919.040000pt;}
.ya_c01233{bottom:919.680000pt;}
.y8_c01233{bottom:920.320000pt;}
.yb_c01233{bottom:920.960000pt;}
.y3_c01233{bottom:982.400000pt;}
.y1_c01233{bottom:983.680000pt;}
.y2_c01233{bottom:992.000000pt;}
.h4_c01233{height:18.430000pt;}
.h5_c01233{height:25.341250pt;}
.h3_c01233{height:27.645000pt;}
.h8_c01233{height:29.948750pt;}
.h10_c01233{height:36.860000pt;}
.ha_c01233{height:39.163750pt;}
.hc_c01233{height:41.467500pt;}
.hb_c01233{height:43.771250pt;}
.h6_c01233{height:46.075000pt;}
.he_c01233{height:46.331250pt;}
.h9_c01233{height:48.378750pt;}
.h12_c01233{height:50.682500pt;}
.h11_c01233{height:52.986250pt;}
.hd_c01233{height:55.290000pt;}
.h2_c01233{height:57.593750pt;}
.h7_c01233{height:59.897500pt;}
.h13_c01233{height:62.201250pt;}
.hf_c01233{height:78.327500pt;}
.h14_c01233{height:117.491250pt;}
.h1_c01233{height:1033.333333pt;}
.h0_c01233{height:1033.600000pt;}
.w1_c01233{width:684.000000pt;}
.w0_c01233{width:684.160000pt;}
.x0_c01233{left:0.000000pt;}
.x5_c01233{left:48.000000pt;}
.x6_c01233{left:117.760000pt;}
.x13_c01233{left:119.040000pt;}
.x7_c01233{left:203.520000pt;}
.x1e_c01233{left:213.120000pt;}
.x17_c01233{left:232.320000pt;}
.x8_c01233{left:241.920000pt;}
.x10_c01233{left:250.880000pt;}
.x19_c01233{left:270.720000pt;}
.x11_c01233{left:290.560000pt;}
.x14_c01233{left:318.720000pt;}
.x9_c01233{left:357.120000pt;}
.x15_c01233{left:367.360000pt;}
.x1f_c01233{left:385.920000pt;}
.x1a_c01233{left:395.520000pt;}
.x12_c01233{left:405.120000pt;}
.x20_c01233{left:424.320000pt;}
.x1d_c01233{left:433.920000pt;}
.x1b_c01233{left:444.160000pt;}
.xa_c01233{left:464.640000pt;}
.xb_c01233{left:492.800000pt;}
.x1c_c01233{left:503.040000pt;}
.x16_c01233{left:512.000000pt;}
.x22_c01233{left:516.480000pt;}
.xc_c01233{left:541.440000pt;}
.x1_c01233{left:567.680000pt;}
.xd_c01233{left:570.240000pt;}
.x18_c01233{left:571.520000pt;}
.x2_c01233{left:584.320000pt;}
.x4_c01233{left:599.680000pt;}
.x21_c01233{left:600.960000pt;}
.x3_c01233{left:602.880000pt;}
.xe_c01233{left:608.640000pt;}
.xf_c01233{left:627.200000pt;}
.x23_c01233{left:679.040000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c42bb5680aa79f4d03e6866b.woff2')format("woff");}.ff1_c01234{font-family:ff1_c01234;line-height:1.109863;font-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_c01234{transform:matrix(0.188075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188075,0.000000,0.000000,0.250000,0,0);}
.m3a_c01234{transform:matrix(0.205725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205725,0.000000,0.000000,0.250000,0,0);}
.m43_c01234{transform:matrix(0.220850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220850,0.000000,0.000000,0.250000,0,0);}
.m8_c01234{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);}
.m3c_c01234{transform:matrix(0.233125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233125,0.000000,0.000000,0.250000,0,0);}
.m34_c01234{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m40_c01234{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m42_c01234{transform:matrix(0.244950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244950,0.000000,0.000000,0.250000,0,0);}
.m2d_c01234{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m2a_c01234{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m2_c01234{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m20_c01234{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m14_c01234{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_c01234{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);}
.m3f_c01234{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_c01234{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);}
.m29_c01234{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);}
.m30_c01234{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_c01234{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mb_c01234{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m27_c01234{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m5_c01234{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01234{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.md_c01234{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m21_c01234{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m9_c01234{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m7_c01234{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m25_c01234{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m22_c01234{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01234{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m38_c01234{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m35_c01234{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m26_c01234{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m1_c01234{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m13_c01234{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);}
.m2b_c01234{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01234{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);}
.m24_c01234{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01234{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);}
.m2f_c01234{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);}
.m1a_c01234{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.me_c01234{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m41_c01234{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_c01234{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m12_c01234{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.ma_c01234{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);}
.m3d_c01234{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m18_c01234{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);}
.m0_c01234{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m31_c01234{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m16_c01234{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m36_c01234{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01234{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m10_c01234{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);}
.m1f_c01234{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m37_c01234{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);}
.m32_c01234{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m4_c01234{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m11_c01234{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);}
.m39_c01234{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m3_c01234{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m6_c01234{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m17_c01234{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);}
.mc_c01234{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);}
.m3b_c01234{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);}
.m33_c01234{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m28_c01234{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m15_c01234{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.v0_c01234{vertical-align:0.000000px;}
.v2_c01234{vertical-align:5.760000px;}
.v1_c01234{vertical-align:8.640000px;}
.ls0_c01234{letter-spacing:0.000000px;}
.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;}
}
.ws4_c01234{word-spacing:0.000000px;}
.ws1_c01234{word-spacing:9.474000px;}
.ws0_c01234{word-spacing:21.327710px;}
.ws2_c01234{word-spacing:75.999600px;}
.ws3_c01234{word-spacing:82.857600px;}
.fc0_c01234{color:transparent;}
.fs8_c01234{font-size:34.560000px;}
.fs9_c01234{font-size:37.440000px;}
.fs4_c01234{font-size:40.320000px;}
.fsb_c01234{font-size:46.080000px;}
.fs7_c01234{font-size:48.960000px;}
.fs3_c01234{font-size:51.840000px;}
.fs5_c01234{font-size:54.720000px;}
.fs6_c01234{font-size:57.600000px;}
.fs1_c01234{font-size:60.480000px;}
.fsc_c01234{font-size:63.360000px;}
.fsf_c01234{font-size:66.240000px;}
.fsa_c01234{font-size:69.120000px;}
.fs0_c01234{font-size:72.000000px;}
.fs2_c01234{font-size:74.880000px;}
.fs11_c01234{font-size:77.760000px;}
.fs10_c01234{font-size:80.640000px;}
.fsd_c01234{font-size:103.680000px;}
.fse_c01234{font-size:106.560000px;}
.y0_c01234{bottom:0.000000px;}
.y7a_c01234{bottom:60.480000px;}
.y7d_c01234{bottom:61.920000px;}
.y78_c01234{bottom:62.640000px;}
.y7c_c01234{bottom:63.360000px;}
.y79_c01234{bottom:64.080000px;}
.y7b_c01234{bottom:65.520000px;}
.y77_c01234{bottom:69.120000px;}
.y76_c01234{bottom:105.840000px;}
.y73_c01234{bottom:106.560000px;}
.y75_c01234{bottom:107.280000px;}
.y74_c01234{bottom:108.720000px;}
.y72_c01234{bottom:112.320000px;}
.y6d_c01234{bottom:149.760000px;}
.y6f_c01234{bottom:150.480000px;}
.y71_c01234{bottom:151.200000px;}
.y70_c01234{bottom:151.920000px;}
.y6e_c01234{bottom:152.640000px;}
.y6c_c01234{bottom:156.240000px;}
.y68_c01234{bottom:190.800000px;}
.y6b_c01234{bottom:192.240000px;}
.y69_c01234{bottom:192.960000px;}
.y6a_c01234{bottom:194.400000px;}
.y67_c01234{bottom:197.280000px;}
.y66_c01234{bottom:234.720000px;}
.y63_c01234{bottom:235.440000px;}
.y65_c01234{bottom:236.160000px;}
.y64_c01234{bottom:236.880000px;}
.y62_c01234{bottom:239.760000px;}
.y61_c01234{bottom:276.480000px;}
.y60_c01234{bottom:310.320000px;}
.y5d_c01234{bottom:311.040000px;}
.y5f_c01234{bottom:312.480000px;}
.y5e_c01234{bottom:313.200000px;}
.y5c_c01234{bottom:313.920000px;}
.y59_c01234{bottom:341.280000px;}
.y56_c01234{bottom:352.800000px;}
.y57_c01234{bottom:353.520000px;}
.y5a_c01234{bottom:354.240000px;}
.y58_c01234{bottom:355.680000px;}
.y5b_c01234{bottom:356.400000px;}
.y55_c01234{bottom:357.120000px;}
.y53_c01234{bottom:387.360000px;}
.y52_c01234{bottom:396.720000px;}
.y50_c01234{bottom:397.440000px;}
.y54_c01234{bottom:398.160000px;}
.y51_c01234{bottom:398.880000px;}
.y4f_c01234{bottom:400.320000px;}
.y4a_c01234{bottom:438.480000px;}
.y4b_c01234{bottom:439.920000px;}
.y4e_c01234{bottom:440.640000px;}
.y4c_c01234{bottom:441.360000px;}
.y4d_c01234{bottom:442.080000px;}
.y49_c01234{bottom:442.800000px;}
.y44_c01234{bottom:481.680000px;}
.y45_c01234{bottom:483.120000px;}
.y46_c01234{bottom:483.840000px;}
.y48_c01234{bottom:484.560000px;}
.y43_c01234{bottom:485.280000px;}
.y47_c01234{bottom:486.000000px;}
.y42_c01234{bottom:524.880000px;}
.y41_c01234{bottom:525.600000px;}
.y3d_c01234{bottom:558.000000px;}
.y3f_c01234{bottom:559.440000px;}
.y3c_c01234{bottom:560.160000px;}
.y3e_c01234{bottom:561.600000px;}
.y40_c01234{bottom:562.320000px;}
.y3a_c01234{bottom:600.480000px;}
.y3b_c01234{bottom:601.200000px;}
.y36_c01234{bottom:632.880000px;}
.y37_c01234{bottom:633.600000px;}
.y35_c01234{bottom:634.320000px;}
.y38_c01234{bottom:635.040000px;}
.y39_c01234{bottom:635.760000px;}
.y31_c01234{bottom:675.360000px;}
.y30_c01234{bottom:676.800000px;}
.y33_c01234{bottom:678.240000px;}
.y32_c01234{bottom:678.960000px;}
.y34_c01234{bottom:681.840000px;}
.y2b_c01234{bottom:718.560000px;}
.y2a_c01234{bottom:720.000000px;}
.y2c_c01234{bottom:722.160000px;}
.y2f_c01234{bottom:722.880000px;}
.y2e_c01234{bottom:723.600000px;}
.y2d_c01234{bottom:724.320000px;}
.y25_c01234{bottom:761.040000px;}
.y24_c01234{bottom:761.760000px;}
.y29_c01234{bottom:763.920000px;}
.y28_c01234{bottom:764.640000px;}
.y27_c01234{bottom:766.800000px;}
.y26_c01234{bottom:767.520000px;}
.y20_c01234{bottom:803.520000px;}
.y1f_c01234{bottom:804.960000px;}
.y22_c01234{bottom:807.120000px;}
.y21_c01234{bottom:807.840000px;}
.y23_c01234{bottom:808.560000px;}
.y1a_c01234{bottom:846.720000px;}
.y19_c01234{bottom:848.160000px;}
.y1d_c01234{bottom:850.320000px;}
.y1b_c01234{bottom:851.040000px;}
.y1e_c01234{bottom:851.760000px;}
.y1c_c01234{bottom:852.480000px;}
.y16_c01234{bottom:889.200000px;}
.y15_c01234{bottom:890.640000px;}
.y17_c01234{bottom:893.520000px;}
.y18_c01234{bottom:895.680000px;}
.y14_c01234{bottom:933.120000px;}
.y13_c01234{bottom:936.000000px;}
.yc_c01234{bottom:964.800000px;}
.yb_c01234{bottom:965.520000px;}
.yf_c01234{bottom:967.680000px;}
.yd_c01234{bottom:968.400000px;}
.ye_c01234{bottom:969.120000px;}
.y10_c01234{bottom:970.560000px;}
.y12_c01234{bottom:971.280000px;}
.y11_c01234{bottom:972.000000px;}
.ya_c01234{bottom:1008.720000px;}
.y8_c01234{bottom:1010.880000px;}
.y9_c01234{bottom:1012.320000px;}
.y2_c01234{bottom:1040.400000px;}
.y4_c01234{bottom:1043.280000px;}
.y3_c01234{bottom:1044.720000px;}
.y5_c01234{bottom:1046.160000px;}
.y6_c01234{bottom:1046.880000px;}
.y7_c01234{bottom:1047.600000px;}
.y1_c01234{bottom:1121.040000px;}
.ha_c01234{height:31.100625px;}
.hb_c01234{height:33.692344px;}
.h6_c01234{height:36.284062px;}
.hd_c01234{height:41.467500px;}
.h9_c01234{height:44.059219px;}
.h5_c01234{height:46.650937px;}
.h7_c01234{height:49.242656px;}
.h8_c01234{height:51.834375px;}
.h3_c01234{height:54.426094px;}
.h15_c01234{height:55.002656px;}
.he_c01234{height:57.017812px;}
.h12_c01234{height:59.609531px;}
.h11_c01234{height:60.474375px;}
.hc_c01234{height:62.201250px;}
.h2_c01234{height:64.792969px;}
.h4_c01234{height:67.384687px;}
.h14_c01234{height:69.976406px;}
.h13_c01234{height:72.568125px;}
.hf_c01234{height:93.301875px;}
.h10_c01234{height:95.893594px;}
.h1_c01234{height:1167.000000px;}
.h0_c01234{height:1167.120000px;}
.w0_c01234{width:776.160000px;}
.w1_c01234{width:776.250000px;}
.x0_c01234{left:0.000000px;}
.x2_c01234{left:54.720000px;}
.x17_c01234{left:56.160000px;}
.x26_c01234{left:57.600000px;}
.x3_c01234{left:133.920000px;}
.x19_c01234{left:136.080000px;}
.xc_c01234{left:176.400000px;}
.x4_c01234{left:219.600000px;}
.xd_c01234{left:229.680000px;}
.x1a_c01234{left:252.720000px;}
.x15_c01234{left:262.800000px;}
.x5_c01234{left:272.160000px;}
.x20_c01234{left:273.600000px;}
.xe_c01234{left:284.400000px;}
.x2a_c01234{left:295.920000px;}
.x6_c01234{left:315.360000px;}
.x23_c01234{left:317.520000px;}
.xf_c01234{left:326.880000px;}
.x1b_c01234{left:328.320000px;}
.x21_c01234{left:339.120000px;}
.x22_c01234{left:380.160000px;}
.x16_c01234{left:393.120000px;}
.x24_c01234{left:403.920000px;}
.x1c_c01234{left:445.680000px;}
.x1f_c01234{left:447.120000px;}
.x7_c01234{left:457.200000px;}
.x25_c01234{left:458.640000px;}
.x8_c01234{left:523.440000px;}
.x1d_c01234{left:524.880000px;}
.x11_c01234{left:532.800000px;}
.x14_c01234{left:534.960000px;}
.x9_c01234{left:555.840000px;}
.x12_c01234{left:557.280000px;}
.xa_c01234{left:610.560000px;}
.x18_c01234{left:612.000000px;}
.x1_c01234{left:643.680000px;}
.x27_c01234{left:645.120000px;}
.x13_c01234{left:676.800000px;}
.x28_c01234{left:678.240000px;}
.xb_c01234{left:686.160000px;}
.x1e_c01234{left:687.600000px;}
.x29_c01234{left:689.040000px;}
.x10_c01234{left:706.320000px;}
@media print{
.v0_c01234{vertical-align:0.000000pt;}
.v2_c01234{vertical-align:5.120000pt;}
.v1_c01234{vertical-align:7.680000pt;}
.ls0_c01234{letter-spacing:0.000000pt;}
.ws4_c01234{word-spacing:0.000000pt;}
.ws1_c01234{word-spacing:8.421333pt;}
.ws0_c01234{word-spacing:18.957965pt;}
.ws2_c01234{word-spacing:67.555200pt;}
.ws3_c01234{word-spacing:73.651200pt;}
.fs8_c01234{font-size:30.720000pt;}
.fs9_c01234{font-size:33.280000pt;}
.fs4_c01234{font-size:35.840000pt;}
.fsb_c01234{font-size:40.960000pt;}
.fs7_c01234{font-size:43.520000pt;}
.fs3_c01234{font-size:46.080000pt;}
.fs5_c01234{font-size:48.640000pt;}
.fs6_c01234{font-size:51.200000pt;}
.fs1_c01234{font-size:53.760000pt;}
.fsc_c01234{font-size:56.320000pt;}
.fsf_c01234{font-size:58.880000pt;}
.fsa_c01234{font-size:61.440000pt;}
.fs0_c01234{font-size:64.000000pt;}
.fs2_c01234{font-size:66.560000pt;}
.fs11_c01234{font-size:69.120000pt;}
.fs10_c01234{font-size:71.680000pt;}
.fsd_c01234{font-size:92.160000pt;}
.fse_c01234{font-size:94.720000pt;}
.y0_c01234{bottom:0.000000pt;}
.y7a_c01234{bottom:53.760000pt;}
.y7d_c01234{bottom:55.040000pt;}
.y78_c01234{bottom:55.680000pt;}
.y7c_c01234{bottom:56.320000pt;}
.y79_c01234{bottom:56.960000pt;}
.y7b_c01234{bottom:58.240000pt;}
.y77_c01234{bottom:61.440000pt;}
.y76_c01234{bottom:94.080000pt;}
.y73_c01234{bottom:94.720000pt;}
.y75_c01234{bottom:95.360000pt;}
.y74_c01234{bottom:96.640000pt;}
.y72_c01234{bottom:99.840000pt;}
.y6d_c01234{bottom:133.120000pt;}
.y6f_c01234{bottom:133.760000pt;}
.y71_c01234{bottom:134.400000pt;}
.y70_c01234{bottom:135.040000pt;}
.y6e_c01234{bottom:135.680000pt;}
.y6c_c01234{bottom:138.880000pt;}
.y68_c01234{bottom:169.600000pt;}
.y6b_c01234{bottom:170.880000pt;}
.y69_c01234{bottom:171.520000pt;}
.y6a_c01234{bottom:172.800000pt;}
.y67_c01234{bottom:175.360000pt;}
.y66_c01234{bottom:208.640000pt;}
.y63_c01234{bottom:209.280000pt;}
.y65_c01234{bottom:209.920000pt;}
.y64_c01234{bottom:210.560000pt;}
.y62_c01234{bottom:213.120000pt;}
.y61_c01234{bottom:245.760000pt;}
.y60_c01234{bottom:275.840000pt;}
.y5d_c01234{bottom:276.480000pt;}
.y5f_c01234{bottom:277.760000pt;}
.y5e_c01234{bottom:278.400000pt;}
.y5c_c01234{bottom:279.040000pt;}
.y59_c01234{bottom:303.360000pt;}
.y56_c01234{bottom:313.600000pt;}
.y57_c01234{bottom:314.240000pt;}
.y5a_c01234{bottom:314.880000pt;}
.y58_c01234{bottom:316.160000pt;}
.y5b_c01234{bottom:316.800000pt;}
.y55_c01234{bottom:317.440000pt;}
.y53_c01234{bottom:344.320000pt;}
.y52_c01234{bottom:352.640000pt;}
.y50_c01234{bottom:353.280000pt;}
.y54_c01234{bottom:353.920000pt;}
.y51_c01234{bottom:354.560000pt;}
.y4f_c01234{bottom:355.840000pt;}
.y4a_c01234{bottom:389.760000pt;}
.y4b_c01234{bottom:391.040000pt;}
.y4e_c01234{bottom:391.680000pt;}
.y4c_c01234{bottom:392.320000pt;}
.y4d_c01234{bottom:392.960000pt;}
.y49_c01234{bottom:393.600000pt;}
.y44_c01234{bottom:428.160000pt;}
.y45_c01234{bottom:429.440000pt;}
.y46_c01234{bottom:430.080000pt;}
.y48_c01234{bottom:430.720000pt;}
.y43_c01234{bottom:431.360000pt;}
.y47_c01234{bottom:432.000000pt;}
.y42_c01234{bottom:466.560000pt;}
.y41_c01234{bottom:467.200000pt;}
.y3d_c01234{bottom:496.000000pt;}
.y3f_c01234{bottom:497.280000pt;}
.y3c_c01234{bottom:497.920000pt;}
.y3e_c01234{bottom:499.200000pt;}
.y40_c01234{bottom:499.840000pt;}
.y3a_c01234{bottom:533.760000pt;}
.y3b_c01234{bottom:534.400000pt;}
.y36_c01234{bottom:562.560000pt;}
.y37_c01234{bottom:563.200000pt;}
.y35_c01234{bottom:563.840000pt;}
.y38_c01234{bottom:564.480000pt;}
.y39_c01234{bottom:565.120000pt;}
.y31_c01234{bottom:600.320000pt;}
.y30_c01234{bottom:601.600000pt;}
.y33_c01234{bottom:602.880000pt;}
.y32_c01234{bottom:603.520000pt;}
.y34_c01234{bottom:606.080000pt;}
.y2b_c01234{bottom:638.720000pt;}
.y2a_c01234{bottom:640.000000pt;}
.y2c_c01234{bottom:641.920000pt;}
.y2f_c01234{bottom:642.560000pt;}
.y2e_c01234{bottom:643.200000pt;}
.y2d_c01234{bottom:643.840000pt;}
.y25_c01234{bottom:676.480000pt;}
.y24_c01234{bottom:677.120000pt;}
.y29_c01234{bottom:679.040000pt;}
.y28_c01234{bottom:679.680000pt;}
.y27_c01234{bottom:681.600000pt;}
.y26_c01234{bottom:682.240000pt;}
.y20_c01234{bottom:714.240000pt;}
.y1f_c01234{bottom:715.520000pt;}
.y22_c01234{bottom:717.440000pt;}
.y21_c01234{bottom:718.080000pt;}
.y23_c01234{bottom:718.720000pt;}
.y1a_c01234{bottom:752.640000pt;}
.y19_c01234{bottom:753.920000pt;}
.y1d_c01234{bottom:755.840000pt;}
.y1b_c01234{bottom:756.480000pt;}
.y1e_c01234{bottom:757.120000pt;}
.y1c_c01234{bottom:757.760000pt;}
.y16_c01234{bottom:790.400000pt;}
.y15_c01234{bottom:791.680000pt;}
.y17_c01234{bottom:794.240000pt;}
.y18_c01234{bottom:796.160000pt;}
.y14_c01234{bottom:829.440000pt;}
.y13_c01234{bottom:832.000000pt;}
.yc_c01234{bottom:857.600000pt;}
.yb_c01234{bottom:858.240000pt;}
.yf_c01234{bottom:860.160000pt;}
.yd_c01234{bottom:860.800000pt;}
.ye_c01234{bottom:861.440000pt;}
.y10_c01234{bottom:862.720000pt;}
.y12_c01234{bottom:863.360000pt;}
.y11_c01234{bottom:864.000000pt;}
.ya_c01234{bottom:896.640000pt;}
.y8_c01234{bottom:898.560000pt;}
.y9_c01234{bottom:899.840000pt;}
.y2_c01234{bottom:924.800000pt;}
.y4_c01234{bottom:927.360000pt;}
.y3_c01234{bottom:928.640000pt;}
.y5_c01234{bottom:929.920000pt;}
.y6_c01234{bottom:930.560000pt;}
.y7_c01234{bottom:931.200000pt;}
.y1_c01234{bottom:996.480000pt;}
.ha_c01234{height:27.645000pt;}
.hb_c01234{height:29.948750pt;}
.h6_c01234{height:32.252500pt;}
.hd_c01234{height:36.860000pt;}
.h9_c01234{height:39.163750pt;}
.h5_c01234{height:41.467500pt;}
.h7_c01234{height:43.771250pt;}
.h8_c01234{height:46.075000pt;}
.h3_c01234{height:48.378750pt;}
.h15_c01234{height:48.891250pt;}
.he_c01234{height:50.682500pt;}
.h12_c01234{height:52.986250pt;}
.h11_c01234{height:53.755000pt;}
.hc_c01234{height:55.290000pt;}
.h2_c01234{height:57.593750pt;}
.h4_c01234{height:59.897500pt;}
.h14_c01234{height:62.201250pt;}
.h13_c01234{height:64.505000pt;}
.hf_c01234{height:82.935000pt;}
.h10_c01234{height:85.238750pt;}
.h1_c01234{height:1037.333333pt;}
.h0_c01234{height:1037.440000pt;}
.w0_c01234{width:689.920000pt;}
.w1_c01234{width:690.000000pt;}
.x0_c01234{left:0.000000pt;}
.x2_c01234{left:48.640000pt;}
.x17_c01234{left:49.920000pt;}
.x26_c01234{left:51.200000pt;}
.x3_c01234{left:119.040000pt;}
.x19_c01234{left:120.960000pt;}
.xc_c01234{left:156.800000pt;}
.x4_c01234{left:195.200000pt;}
.xd_c01234{left:204.160000pt;}
.x1a_c01234{left:224.640000pt;}
.x15_c01234{left:233.600000pt;}
.x5_c01234{left:241.920000pt;}
.x20_c01234{left:243.200000pt;}
.xe_c01234{left:252.800000pt;}
.x2a_c01234{left:263.040000pt;}
.x6_c01234{left:280.320000pt;}
.x23_c01234{left:282.240000pt;}
.xf_c01234{left:290.560000pt;}
.x1b_c01234{left:291.840000pt;}
.x21_c01234{left:301.440000pt;}
.x22_c01234{left:337.920000pt;}
.x16_c01234{left:349.440000pt;}
.x24_c01234{left:359.040000pt;}
.x1c_c01234{left:396.160000pt;}
.x1f_c01234{left:397.440000pt;}
.x7_c01234{left:406.400000pt;}
.x25_c01234{left:407.680000pt;}
.x8_c01234{left:465.280000pt;}
.x1d_c01234{left:466.560000pt;}
.x11_c01234{left:473.600000pt;}
.x14_c01234{left:475.520000pt;}
.x9_c01234{left:494.080000pt;}
.x12_c01234{left:495.360000pt;}
.xa_c01234{left:542.720000pt;}
.x18_c01234{left:544.000000pt;}
.x1_c01234{left:572.160000pt;}
.x27_c01234{left:573.440000pt;}
.x13_c01234{left:601.600000pt;}
.x28_c01234{left:602.880000pt;}
.xb_c01234{left:609.920000pt;}
.x1e_c01234{left:611.200000pt;}
.x29_c01234{left:612.480000pt;}
.x10_c01234{left:627.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b8524b47247e403dcc32082f.woff2')format("woff");}.ff1_c01235{font-family:ff1_c01235;line-height:1.109863;font-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_c01235{transform:matrix(0.197175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197175,0.000000,0.000000,0.250000,0,0);}
.m42_c01235{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m2d_c01235{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.mf_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);}
.m9_c01235{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m2_c01235{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m11_c01235{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);}
.m39_c01235{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);}
.m4e_c01235{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m13_c01235{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m4_c01235{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);}
.m4b_c01235{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m21_c01235{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mc_c01235{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m19_c01235{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m4f_c01235{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01235{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m26_c01235{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m14_c01235{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3_c01235{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m5_c01235{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m37_c01235{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1_c01235{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mb_c01235{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01235{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01235{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m16_c01235{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01235{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);}
.m41_c01235{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.ma_c01235{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m10_c01235{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m44_c01235{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);}
.m48_c01235{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m30_c01235{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);}
.m40_c01235{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01235{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.me_c01235{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.md_c01235{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m6_c01235{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);}
.m3f_c01235{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);}
.m15_c01235{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);}
.m8_c01235{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);}
.m51_c01235{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);}
.m7_c01235{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m32_c01235{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m0_c01235{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_c01235{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m22_c01235{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);}
.m35_c01235{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);}
.m3b_c01235{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);}
.m3d_c01235{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m23_c01235{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m50_c01235{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01235{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01235{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m20_c01235{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m36_c01235{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m49_c01235{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m18_c01235{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01235{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);}
.m47_c01235{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m25_c01235{transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);}
.m28_c01235{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01235{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m38_c01235{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m12_c01235{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);}
.m3e_c01235{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m24_c01235{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m45_c01235{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);}
.m31_c01235{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01235{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m29_c01235{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01235{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01235{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m43_c01235{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);}
.m46_c01235{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m34_c01235{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m4d_c01235{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m27_c01235{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01235{transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01235{transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01235{transform:matrix(1.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.320000,0.000000,0.000000,0.250000,0,0);}
.v3_c01235{vertical-align:-17.280000px;}
.v0_c01235{vertical-align:0.000000px;}
.v2_c01235{vertical-align:2.880000px;}
.v1_c01235{vertical-align:8.640000px;}
.ls0_c01235{letter-spacing:0.000000px;}
.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;}
}
.ws4_c01235{word-spacing:0.000000px;}
.ws3_c01235{word-spacing:5.466480px;}
.ws1_c01235{word-spacing:14.942062px;}
.ws0_c01235{word-spacing:89.442000px;}
.ws2_c01235{word-spacing:187.986000px;}
.fc0_c01235{color:transparent;}
.fsf_c01235{font-size:14.400000px;}
.fsc_c01235{font-size:34.560000px;}
.fsa_c01235{font-size:37.440000px;}
.fs10_c01235{font-size:40.320000px;}
.fsd_c01235{font-size:43.200000px;}
.fs5_c01235{font-size:46.080000px;}
.fs6_c01235{font-size:48.960000px;}
.fs4_c01235{font-size:51.840000px;}
.fs3_c01235{font-size:54.720000px;}
.fs8_c01235{font-size:57.600000px;}
.fs1_c01235{font-size:60.480000px;}
.fsb_c01235{font-size:63.360000px;}
.fse_c01235{font-size:66.240000px;}
.fs0_c01235{font-size:69.120000px;}
.fs2_c01235{font-size:72.000000px;}
.fs7_c01235{font-size:74.880000px;}
.fs9_c01235{font-size:77.760000px;}
.y0_c01235{bottom:0.000000px;}
.y89_c01235{bottom:23.040000px;}
.y88_c01235{bottom:23.760000px;}
.y87_c01235{bottom:49.680000px;}
.y83_c01235{bottom:50.400000px;}
.y86_c01235{bottom:51.120000px;}
.y85_c01235{bottom:51.840000px;}
.y84_c01235{bottom:52.560000px;}
.y82_c01235{bottom:57.600000px;}
.y7f_c01235{bottom:95.040000px;}
.y81_c01235{bottom:96.480000px;}
.y80_c01235{bottom:97.920000px;}
.y7c_c01235{bottom:126.000000px;}
.y7e_c01235{bottom:126.720000px;}
.y7d_c01235{bottom:127.440000px;}
.y7a_c01235{bottom:128.160000px;}
.y7b_c01235{bottom:129.600000px;}
.y79_c01235{bottom:131.760000px;}
.y78_c01235{bottom:172.800000px;}
.y77_c01235{bottom:173.520000px;}
.y76_c01235{bottom:174.240000px;}
.y74_c01235{bottom:200.880000px;}
.y72_c01235{bottom:201.600000px;}
.y73_c01235{bottom:202.320000px;}
.y75_c01235{bottom:203.040000px;}
.y71_c01235{bottom:203.760000px;}
.y70_c01235{bottom:206.640000px;}
.y6f_c01235{bottom:249.120000px;}
.y6e_c01235{bottom:249.840000px;}
.y6c_c01235{bottom:277.200000px;}
.y6a_c01235{bottom:278.640000px;}
.y6b_c01235{bottom:280.080000px;}
.y6d_c01235{bottom:280.800000px;}
.y69_c01235{bottom:282.240000px;}
.y65_c01235{bottom:320.400000px;}
.y68_c01235{bottom:321.120000px;}
.y64_c01235{bottom:321.840000px;}
.y67_c01235{bottom:322.560000px;}
.y66_c01235{bottom:323.280000px;}
.y63_c01235{bottom:324.000000px;}
.y5f_c01235{bottom:363.600000px;}
.y5e_c01235{bottom:364.320000px;}
.y62_c01235{bottom:365.040000px;}
.y60_c01235{bottom:365.760000px;}
.y61_c01235{bottom:366.480000px;}
.y5d_c01235{bottom:367.200000px;}
.y5a_c01235{bottom:406.800000px;}
.y5b_c01235{bottom:407.520000px;}
.y5c_c01235{bottom:408.240000px;}
.y58_c01235{bottom:408.960000px;}
.y59_c01235{bottom:413.280000px;}
.y53_c01235{bottom:449.280000px;}
.y52_c01235{bottom:450.000000px;}
.y56_c01235{bottom:450.720000px;}
.y55_c01235{bottom:451.440000px;}
.y54_c01235{bottom:452.160000px;}
.y51_c01235{bottom:452.880000px;}
.y57_c01235{bottom:453.600000px;}
.y4d_c01235{bottom:493.200000px;}
.y50_c01235{bottom:493.920000px;}
.y4e_c01235{bottom:494.640000px;}
.y4f_c01235{bottom:495.360000px;}
.y4c_c01235{bottom:496.080000px;}
.y49_c01235{bottom:534.960000px;}
.y47_c01235{bottom:535.680000px;}
.y4a_c01235{bottom:536.400000px;}
.y48_c01235{bottom:537.840000px;}
.y4b_c01235{bottom:538.560000px;}
.y46_c01235{bottom:539.280000px;}
.y42_c01235{bottom:578.160000px;}
.y41_c01235{bottom:578.880000px;}
.y40_c01235{bottom:579.600000px;}
.y43_c01235{bottom:580.320000px;}
.y44_c01235{bottom:581.040000px;}
.y45_c01235{bottom:581.760000px;}
.y3b_c01235{bottom:621.360000px;}
.y3a_c01235{bottom:622.800000px;}
.y3c_c01235{bottom:623.520000px;}
.y3e_c01235{bottom:624.240000px;}
.y3d_c01235{bottom:624.960000px;}
.y3f_c01235{bottom:625.680000px;}
.y34_c01235{bottom:663.840000px;}
.y35_c01235{bottom:664.560000px;}
.y33_c01235{bottom:665.280000px;}
.y37_c01235{bottom:666.000000px;}
.y38_c01235{bottom:666.720000px;}
.y36_c01235{bottom:667.440000px;}
.y39_c01235{bottom:668.880000px;}
.y2e_c01235{bottom:707.040000px;}
.y2d_c01235{bottom:707.760000px;}
.y31_c01235{bottom:708.480000px;}
.y2f_c01235{bottom:709.200000px;}
.y30_c01235{bottom:709.920000px;}
.y32_c01235{bottom:712.080000px;}
.y27_c01235{bottom:750.240000px;}
.y2a_c01235{bottom:751.680000px;}
.y28_c01235{bottom:752.400000px;}
.y29_c01235{bottom:753.120000px;}
.y2b_c01235{bottom:755.280000px;}
.y2c_c01235{bottom:756.000000px;}
.y22_c01235{bottom:793.440000px;}
.y25_c01235{bottom:795.600000px;}
.y23_c01235{bottom:796.320000px;}
.y24_c01235{bottom:797.040000px;}
.y26_c01235{bottom:799.200000px;}
.y20_c01235{bottom:836.640000px;}
.y21_c01235{bottom:838.800000px;}
.y1b_c01235{bottom:868.320000px;}
.y1a_c01235{bottom:869.040000px;}
.y1c_c01235{bottom:871.200000px;}
.y1e_c01235{bottom:871.920000px;}
.y1f_c01235{bottom:872.640000px;}
.y1d_c01235{bottom:873.360000px;}
.y14_c01235{bottom:910.800000px;}
.y16_c01235{bottom:912.240000px;}
.y15_c01235{bottom:914.400000px;}
.y19_c01235{bottom:915.840000px;}
.y18_c01235{bottom:917.280000px;}
.y17_c01235{bottom:918.000000px;}
.yf_c01235{bottom:953.280000px;}
.ye_c01235{bottom:954.000000px;}
.y11_c01235{bottom:957.600000px;}
.y10_c01235{bottom:959.760000px;}
.y13_c01235{bottom:960.480000px;}
.y12_c01235{bottom:961.200000px;}
.y9_c01235{bottom:996.480000px;}
.y8_c01235{bottom:997.200000px;}
.yb_c01235{bottom:1001.520000px;}
.ya_c01235{bottom:1002.960000px;}
.yc_c01235{bottom:1003.680000px;}
.yd_c01235{bottom:1004.400000px;}
.y2_c01235{bottom:1039.680000px;}
.y3_c01235{bottom:1041.840000px;}
.y4_c01235{bottom:1044.000000px;}
.y5_c01235{bottom:1044.720000px;}
.y6_c01235{bottom:1046.880000px;}
.y7_c01235{bottom:1047.600000px;}
.y1_c01235{bottom:1110.960000px;}
.h13_c01235{height:12.958594px;}
.hf_c01235{height:31.100625px;}
.hd_c01235{height:33.692344px;}
.h14_c01235{height:36.284062px;}
.h11_c01235{height:38.875781px;}
.h7_c01235{height:41.467500px;}
.h8_c01235{height:44.059219px;}
.h6_c01235{height:46.650937px;}
.h5_c01235{height:49.242656px;}
.ha_c01235{height:51.834375px;}
.h3_c01235{height:54.426094px;}
.h10_c01235{height:54.714375px;}
.he_c01235{height:57.017812px;}
.h12_c01235{height:59.609531px;}
.hc_c01235{height:60.474375px;}
.h2_c01235{height:62.201250px;}
.h4_c01235{height:64.792969px;}
.h9_c01235{height:67.384687px;}
.hb_c01235{height:69.976406px;}
.h1_c01235{height:1164.750000px;}
.h0_c01235{height:1164.960000px;}
.w0_c01235{width:758.160000px;}
.w1_c01235{width:758.250000px;}
.x0_c01235{left:0.000000px;}
.x2_c01235{left:53.280000px;}
.x19_c01235{left:54.720000px;}
.x1f_c01235{left:56.160000px;}
.x1a_c01235{left:113.040000px;}
.x3_c01235{left:131.760000px;}
.xd_c01235{left:133.200000px;}
.x1e_c01235{left:134.640000px;}
.x2c_c01235{left:136.080000px;}
.x10_c01235{left:185.760000px;}
.x24_c01235{left:187.920000px;}
.x2e_c01235{left:198.720000px;}
.xe_c01235{left:217.440000px;}
.x1b_c01235{left:218.880000px;}
.x25_c01235{left:220.320000px;}
.x11_c01235{left:228.960000px;}
.x2b_c01235{left:231.120000px;}
.xb_c01235{left:239.760000px;}
.x2f_c01235{left:252.000000px;}
.x14_c01235{left:272.160000px;}
.x2d_c01235{left:273.600000px;}
.xc_c01235{left:282.240000px;}
.x26_c01235{left:283.680000px;}
.x30_c01235{left:285.120000px;}
.x4_c01235{left:293.040000px;}
.x15_c01235{left:326.160000px;}
.x20_c01235{left:328.320000px;}
.xf_c01235{left:336.960000px;}
.x27_c01235{left:339.120000px;}
.x21_c01235{left:371.520000px;}
.x28_c01235{left:382.320000px;}
.x22_c01235{left:451.440000px;}
.x29_c01235{left:462.240000px;}
.xa_c01235{left:522.000000px;}
.x1c_c01235{left:523.440000px;}
.x5_c01235{left:531.360000px;}
.x6_c01235{left:555.120000px;}
.x7_c01235{left:609.120000px;}
.x17_c01235{left:610.560000px;}
.x8_c01235{left:641.520000px;}
.x1d_c01235{left:642.960000px;}
.x1_c01235{left:644.400000px;}
.x9_c01235{left:673.920000px;}
.x12_c01235{left:675.360000px;}
.x23_c01235{left:677.520000px;}
.x16_c01235{left:684.720000px;}
.x18_c01235{left:686.160000px;}
.x2a_c01235{left:687.600000px;}
.x13_c01235{left:706.320000px;}
@media print{
.v3_c01235{vertical-align:-15.360000pt;}
.v0_c01235{vertical-align:0.000000pt;}
.v2_c01235{vertical-align:2.560000pt;}
.v1_c01235{vertical-align:7.680000pt;}
.ls0_c01235{letter-spacing:0.000000pt;}
.ws4_c01235{word-spacing:0.000000pt;}
.ws3_c01235{word-spacing:4.859093pt;}
.ws1_c01235{word-spacing:13.281833pt;}
.ws0_c01235{word-spacing:79.504000pt;}
.ws2_c01235{word-spacing:167.098667pt;}
.fsf_c01235{font-size:12.800000pt;}
.fsc_c01235{font-size:30.720000pt;}
.fsa_c01235{font-size:33.280000pt;}
.fs10_c01235{font-size:35.840000pt;}
.fsd_c01235{font-size:38.400000pt;}
.fs5_c01235{font-size:40.960000pt;}
.fs6_c01235{font-size:43.520000pt;}
.fs4_c01235{font-size:46.080000pt;}
.fs3_c01235{font-size:48.640000pt;}
.fs8_c01235{font-size:51.200000pt;}
.fs1_c01235{font-size:53.760000pt;}
.fsb_c01235{font-size:56.320000pt;}
.fse_c01235{font-size:58.880000pt;}
.fs0_c01235{font-size:61.440000pt;}
.fs2_c01235{font-size:64.000000pt;}
.fs7_c01235{font-size:66.560000pt;}
.fs9_c01235{font-size:69.120000pt;}
.y0_c01235{bottom:0.000000pt;}
.y89_c01235{bottom:20.480000pt;}
.y88_c01235{bottom:21.120000pt;}
.y87_c01235{bottom:44.160000pt;}
.y83_c01235{bottom:44.800000pt;}
.y86_c01235{bottom:45.440000pt;}
.y85_c01235{bottom:46.080000pt;}
.y84_c01235{bottom:46.720000pt;}
.y82_c01235{bottom:51.200000pt;}
.y7f_c01235{bottom:84.480000pt;}
.y81_c01235{bottom:85.760000pt;}
.y80_c01235{bottom:87.040000pt;}
.y7c_c01235{bottom:112.000000pt;}
.y7e_c01235{bottom:112.640000pt;}
.y7d_c01235{bottom:113.280000pt;}
.y7a_c01235{bottom:113.920000pt;}
.y7b_c01235{bottom:115.200000pt;}
.y79_c01235{bottom:117.120000pt;}
.y78_c01235{bottom:153.600000pt;}
.y77_c01235{bottom:154.240000pt;}
.y76_c01235{bottom:154.880000pt;}
.y74_c01235{bottom:178.560000pt;}
.y72_c01235{bottom:179.200000pt;}
.y73_c01235{bottom:179.840000pt;}
.y75_c01235{bottom:180.480000pt;}
.y71_c01235{bottom:181.120000pt;}
.y70_c01235{bottom:183.680000pt;}
.y6f_c01235{bottom:221.440000pt;}
.y6e_c01235{bottom:222.080000pt;}
.y6c_c01235{bottom:246.400000pt;}
.y6a_c01235{bottom:247.680000pt;}
.y6b_c01235{bottom:248.960000pt;}
.y6d_c01235{bottom:249.600000pt;}
.y69_c01235{bottom:250.880000pt;}
.y65_c01235{bottom:284.800000pt;}
.y68_c01235{bottom:285.440000pt;}
.y64_c01235{bottom:286.080000pt;}
.y67_c01235{bottom:286.720000pt;}
.y66_c01235{bottom:287.360000pt;}
.y63_c01235{bottom:288.000000pt;}
.y5f_c01235{bottom:323.200000pt;}
.y5e_c01235{bottom:323.840000pt;}
.y62_c01235{bottom:324.480000pt;}
.y60_c01235{bottom:325.120000pt;}
.y61_c01235{bottom:325.760000pt;}
.y5d_c01235{bottom:326.400000pt;}
.y5a_c01235{bottom:361.600000pt;}
.y5b_c01235{bottom:362.240000pt;}
.y5c_c01235{bottom:362.880000pt;}
.y58_c01235{bottom:363.520000pt;}
.y59_c01235{bottom:367.360000pt;}
.y53_c01235{bottom:399.360000pt;}
.y52_c01235{bottom:400.000000pt;}
.y56_c01235{bottom:400.640000pt;}
.y55_c01235{bottom:401.280000pt;}
.y54_c01235{bottom:401.920000pt;}
.y51_c01235{bottom:402.560000pt;}
.y57_c01235{bottom:403.200000pt;}
.y4d_c01235{bottom:438.400000pt;}
.y50_c01235{bottom:439.040000pt;}
.y4e_c01235{bottom:439.680000pt;}
.y4f_c01235{bottom:440.320000pt;}
.y4c_c01235{bottom:440.960000pt;}
.y49_c01235{bottom:475.520000pt;}
.y47_c01235{bottom:476.160000pt;}
.y4a_c01235{bottom:476.800000pt;}
.y48_c01235{bottom:478.080000pt;}
.y4b_c01235{bottom:478.720000pt;}
.y46_c01235{bottom:479.360000pt;}
.y42_c01235{bottom:513.920000pt;}
.y41_c01235{bottom:514.560000pt;}
.y40_c01235{bottom:515.200000pt;}
.y43_c01235{bottom:515.840000pt;}
.y44_c01235{bottom:516.480000pt;}
.y45_c01235{bottom:517.120000pt;}
.y3b_c01235{bottom:552.320000pt;}
.y3a_c01235{bottom:553.600000pt;}
.y3c_c01235{bottom:554.240000pt;}
.y3e_c01235{bottom:554.880000pt;}
.y3d_c01235{bottom:555.520000pt;}
.y3f_c01235{bottom:556.160000pt;}
.y34_c01235{bottom:590.080000pt;}
.y35_c01235{bottom:590.720000pt;}
.y33_c01235{bottom:591.360000pt;}
.y37_c01235{bottom:592.000000pt;}
.y38_c01235{bottom:592.640000pt;}
.y36_c01235{bottom:593.280000pt;}
.y39_c01235{bottom:594.560000pt;}
.y2e_c01235{bottom:628.480000pt;}
.y2d_c01235{bottom:629.120000pt;}
.y31_c01235{bottom:629.760000pt;}
.y2f_c01235{bottom:630.400000pt;}
.y30_c01235{bottom:631.040000pt;}
.y32_c01235{bottom:632.960000pt;}
.y27_c01235{bottom:666.880000pt;}
.y2a_c01235{bottom:668.160000pt;}
.y28_c01235{bottom:668.800000pt;}
.y29_c01235{bottom:669.440000pt;}
.y2b_c01235{bottom:671.360000pt;}
.y2c_c01235{bottom:672.000000pt;}
.y22_c01235{bottom:705.280000pt;}
.y25_c01235{bottom:707.200000pt;}
.y23_c01235{bottom:707.840000pt;}
.y24_c01235{bottom:708.480000pt;}
.y26_c01235{bottom:710.400000pt;}
.y20_c01235{bottom:743.680000pt;}
.y21_c01235{bottom:745.600000pt;}
.y1b_c01235{bottom:771.840000pt;}
.y1a_c01235{bottom:772.480000pt;}
.y1c_c01235{bottom:774.400000pt;}
.y1e_c01235{bottom:775.040000pt;}
.y1f_c01235{bottom:775.680000pt;}
.y1d_c01235{bottom:776.320000pt;}
.y14_c01235{bottom:809.600000pt;}
.y16_c01235{bottom:810.880000pt;}
.y15_c01235{bottom:812.800000pt;}
.y19_c01235{bottom:814.080000pt;}
.y18_c01235{bottom:815.360000pt;}
.y17_c01235{bottom:816.000000pt;}
.yf_c01235{bottom:847.360000pt;}
.ye_c01235{bottom:848.000000pt;}
.y11_c01235{bottom:851.200000pt;}
.y10_c01235{bottom:853.120000pt;}
.y13_c01235{bottom:853.760000pt;}
.y12_c01235{bottom:854.400000pt;}
.y9_c01235{bottom:885.760000pt;}
.y8_c01235{bottom:886.400000pt;}
.yb_c01235{bottom:890.240000pt;}
.ya_c01235{bottom:891.520000pt;}
.yc_c01235{bottom:892.160000pt;}
.yd_c01235{bottom:892.800000pt;}
.y2_c01235{bottom:924.160000pt;}
.y3_c01235{bottom:926.080000pt;}
.y4_c01235{bottom:928.000000pt;}
.y5_c01235{bottom:928.640000pt;}
.y6_c01235{bottom:930.560000pt;}
.y7_c01235{bottom:931.200000pt;}
.y1_c01235{bottom:987.520000pt;}
.h13_c01235{height:11.518750pt;}
.hf_c01235{height:27.645000pt;}
.hd_c01235{height:29.948750pt;}
.h14_c01235{height:32.252500pt;}
.h11_c01235{height:34.556250pt;}
.h7_c01235{height:36.860000pt;}
.h8_c01235{height:39.163750pt;}
.h6_c01235{height:41.467500pt;}
.h5_c01235{height:43.771250pt;}
.ha_c01235{height:46.075000pt;}
.h3_c01235{height:48.378750pt;}
.h10_c01235{height:48.635000pt;}
.he_c01235{height:50.682500pt;}
.h12_c01235{height:52.986250pt;}
.hc_c01235{height:53.755000pt;}
.h2_c01235{height:55.290000pt;}
.h4_c01235{height:57.593750pt;}
.h9_c01235{height:59.897500pt;}
.hb_c01235{height:62.201250pt;}
.h1_c01235{height:1035.333333pt;}
.h0_c01235{height:1035.520000pt;}
.w0_c01235{width:673.920000pt;}
.w1_c01235{width:674.000000pt;}
.x0_c01235{left:0.000000pt;}
.x2_c01235{left:47.360000pt;}
.x19_c01235{left:48.640000pt;}
.x1f_c01235{left:49.920000pt;}
.x1a_c01235{left:100.480000pt;}
.x3_c01235{left:117.120000pt;}
.xd_c01235{left:118.400000pt;}
.x1e_c01235{left:119.680000pt;}
.x2c_c01235{left:120.960000pt;}
.x10_c01235{left:165.120000pt;}
.x24_c01235{left:167.040000pt;}
.x2e_c01235{left:176.640000pt;}
.xe_c01235{left:193.280000pt;}
.x1b_c01235{left:194.560000pt;}
.x25_c01235{left:195.840000pt;}
.x11_c01235{left:203.520000pt;}
.x2b_c01235{left:205.440000pt;}
.xb_c01235{left:213.120000pt;}
.x2f_c01235{left:224.000000pt;}
.x14_c01235{left:241.920000pt;}
.x2d_c01235{left:243.200000pt;}
.xc_c01235{left:250.880000pt;}
.x26_c01235{left:252.160000pt;}
.x30_c01235{left:253.440000pt;}
.x4_c01235{left:260.480000pt;}
.x15_c01235{left:289.920000pt;}
.x20_c01235{left:291.840000pt;}
.xf_c01235{left:299.520000pt;}
.x27_c01235{left:301.440000pt;}
.x21_c01235{left:330.240000pt;}
.x28_c01235{left:339.840000pt;}
.x22_c01235{left:401.280000pt;}
.x29_c01235{left:410.880000pt;}
.xa_c01235{left:464.000000pt;}
.x1c_c01235{left:465.280000pt;}
.x5_c01235{left:472.320000pt;}
.x6_c01235{left:493.440000pt;}
.x7_c01235{left:541.440000pt;}
.x17_c01235{left:542.720000pt;}
.x8_c01235{left:570.240000pt;}
.x1d_c01235{left:571.520000pt;}
.x1_c01235{left:572.800000pt;}
.x9_c01235{left:599.040000pt;}
.x12_c01235{left:600.320000pt;}
.x23_c01235{left:602.240000pt;}
.x16_c01235{left:608.640000pt;}
.x18_c01235{left:609.920000pt;}
.x2a_c01235{left:611.200000pt;}
.x13_c01235{left:627.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_51e62cc8bffccb61ffd4a67d.woff2')format("woff");}.ff1_c01236{font-family:ff1_c01236;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4c_c01236{transform:matrix(0.234200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234200,0.000000,0.000000,0.250000,0,0);}
.m21_c01236{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01236{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);}
.m43_c01236{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_c01236{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_c01236{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);}
.m49_c01236{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01236{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m24_c01236{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);}
.m4a_c01236{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mf_c01236{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01236{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01236{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01236{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m6_c01236{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m19_c01236{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m30_c01236{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m7_c01236{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01236{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01236{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.ma_c01236{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m45_c01236{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m10_c01236{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m11_c01236{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m2_c01236{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.me_c01236{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m15_c01236{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);}
.m3a_c01236{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);}
.m4b_c01236{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m9_c01236{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m12_c01236{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);}
.m35_c01236{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m8_c01236{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1_c01236{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);}
.m36_c01236{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01236{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);}
.m33_c01236{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);}
.m14_c01236{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);}
.m39_c01236{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m0_c01236{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m27_c01236{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01236{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m28_c01236{transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01236{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);}
.m3_c01236{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01236{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);}
.m22_c01236{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m38_c01236{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01236{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m17_c01236{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m13_c01236{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);}
.m18_c01236{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);}
.m1f_c01236{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m32_c01236{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);}
.mb_c01236{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m23_c01236{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m5_c01236{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_c01236{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m31_c01236{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.mc_c01236{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m20_c01236{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);}
.m4_c01236{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m48_c01236{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m47_c01236{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);}
.m34_c01236{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m40_c01236{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.md_c01236{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01236{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m37_c01236{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m41_c01236{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01236{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m46_c01236{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m44_c01236{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01236{transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);}
.m29_c01236{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.m26_c01236{transform:matrix(1.092500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.092500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.092500,0.000000,0.000000,0.250000,0,0);}
.m16_c01236{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.v0_c01236{vertical-align:0.000000px;}
.v2_c01236{vertical-align:2.880000px;}
.v1_c01236{vertical-align:5.760000px;}
.ls0_c01236{letter-spacing:0.000000px;}
.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;}
}
.ws4_c01236{word-spacing:0.000000px;}
.ws2_c01236{word-spacing:4.074960px;}
.ws0_c01236{word-spacing:7.642313px;}
.ws1_c01236{word-spacing:13.140000px;}
.ws3_c01236{word-spacing:190.367885px;}
.fc0_c01236{color:transparent;}
.fs9_c01236{font-size:14.400000px;}
.fsc_c01236{font-size:25.920000px;}
.fs7_c01236{font-size:34.560000px;}
.fs4_c01236{font-size:37.440000px;}
.fsb_c01236{font-size:40.320000px;}
.fse_c01236{font-size:43.200000px;}
.fs8_c01236{font-size:46.080000px;}
.fs6_c01236{font-size:48.960000px;}
.fs3_c01236{font-size:51.840000px;}
.fs1_c01236{font-size:54.720000px;}
.fs5_c01236{font-size:57.600000px;}
.fs2_c01236{font-size:60.480000px;}
.fsa_c01236{font-size:63.360000px;}
.fsd_c01236{font-size:66.240000px;}
.fs0_c01236{font-size:69.120000px;}
.fsf_c01236{font-size:89.280000px;}
.y0_c01236{bottom:0.000000px;}
.y85_c01236{bottom:71.280000px;}
.y83_c01236{bottom:72.720000px;}
.y86_c01236{bottom:74.160000px;}
.y84_c01236{bottom:74.880000px;}
.y82_c01236{bottom:75.600000px;}
.y81_c01236{bottom:80.640000px;}
.y80_c01236{bottom:114.480000px;}
.y7f_c01236{bottom:115.200000px;}
.y7c_c01236{bottom:115.920000px;}
.y7e_c01236{bottom:116.640000px;}
.y7d_c01236{bottom:118.080000px;}
.y7b_c01236{bottom:118.800000px;}
.y7a_c01236{bottom:122.400000px;}
.y78_c01236{bottom:158.400000px;}
.y77_c01236{bottom:159.120000px;}
.y75_c01236{bottom:159.840000px;}
.y79_c01236{bottom:160.560000px;}
.y74_c01236{bottom:161.280000px;}
.y76_c01236{bottom:162.000000px;}
.y73_c01236{bottom:165.600000px;}
.y71_c01236{bottom:194.400000px;}
.y70_c01236{bottom:201.600000px;}
.y6e_c01236{bottom:202.320000px;}
.y72_c01236{bottom:203.040000px;}
.y6f_c01236{bottom:204.480000px;}
.y6d_c01236{bottom:205.200000px;}
.y6c_c01236{bottom:208.800000px;}
.y69_c01236{bottom:244.800000px;}
.y6a_c01236{bottom:245.520000px;}
.y6b_c01236{bottom:246.240000px;}
.y68_c01236{bottom:247.680000px;}
.y67_c01236{bottom:250.560000px;}
.y65_c01236{bottom:288.720000px;}
.y64_c01236{bottom:289.440000px;}
.y63_c01236{bottom:290.160000px;}
.y66_c01236{bottom:290.880000px;}
.y62_c01236{bottom:293.040000px;}
.y61_c01236{bottom:331.200000px;}
.y5f_c01236{bottom:333.360000px;}
.y60_c01236{bottom:334.080000px;}
.y5e_c01236{bottom:335.520000px;}
.y5b_c01236{bottom:374.400000px;}
.y5d_c01236{bottom:375.120000px;}
.y5a_c01236{bottom:375.840000px;}
.y5c_c01236{bottom:376.560000px;}
.y59_c01236{bottom:377.280000px;}
.y56_c01236{bottom:417.600000px;}
.y55_c01236{bottom:418.320000px;}
.y57_c01236{bottom:419.040000px;}
.y58_c01236{bottom:419.760000px;}
.y54_c01236{bottom:420.480000px;}
.y53_c01236{bottom:452.160000px;}
.y4f_c01236{bottom:460.080000px;}
.y52_c01236{bottom:460.800000px;}
.y4e_c01236{bottom:461.520000px;}
.y50_c01236{bottom:462.240000px;}
.y51_c01236{bottom:462.960000px;}
.y4d_c01236{bottom:463.680000px;}
.y4a_c01236{bottom:503.280000px;}
.y49_c01236{bottom:504.000000px;}
.y4b_c01236{bottom:505.440000px;}
.y4c_c01236{bottom:506.160000px;}
.y48_c01236{bottom:506.880000px;}
.y47_c01236{bottom:546.480000px;}
.y46_c01236{bottom:547.200000px;}
.y45_c01236{bottom:549.360000px;}
.y41_c01236{bottom:578.880000px;}
.y40_c01236{bottom:579.600000px;}
.y44_c01236{bottom:580.320000px;}
.y42_c01236{bottom:581.040000px;}
.y3f_c01236{bottom:582.480000px;}
.y43_c01236{bottom:583.200000px;}
.y3e_c01236{bottom:624.240000px;}
.y3d_c01236{bottom:624.960000px;}
.y3a_c01236{bottom:654.480000px;}
.y39_c01236{bottom:655.920000px;}
.y3c_c01236{bottom:656.640000px;}
.y3b_c01236{bottom:657.360000px;}
.y38_c01236{bottom:690.480000px;}
.y34_c01236{bottom:696.960000px;}
.y33_c01236{bottom:697.680000px;}
.y36_c01236{bottom:698.400000px;}
.y32_c01236{bottom:699.840000px;}
.y35_c01236{bottom:700.560000px;}
.y37_c01236{bottom:701.280000px;}
.y2d_c01236{bottom:740.160000px;}
.y2c_c01236{bottom:740.880000px;}
.y2e_c01236{bottom:741.600000px;}
.y2a_c01236{bottom:742.320000px;}
.y2b_c01236{bottom:743.040000px;}
.y2f_c01236{bottom:743.760000px;}
.y30_c01236{bottom:744.480000px;}
.y31_c01236{bottom:745.200000px;}
.y26_c01236{bottom:783.360000px;}
.y25_c01236{bottom:784.080000px;}
.y24_c01236{bottom:785.520000px;}
.y29_c01236{bottom:786.240000px;}
.y27_c01236{bottom:786.960000px;}
.y28_c01236{bottom:787.680000px;}
.y20_c01236{bottom:826.560000px;}
.y1f_c01236{bottom:827.280000px;}
.y22_c01236{bottom:828.000000px;}
.y21_c01236{bottom:828.720000px;}
.y23_c01236{bottom:830.880000px;}
.y1a_c01236{bottom:869.040000px;}
.y1c_c01236{bottom:871.200000px;}
.y1b_c01236{bottom:871.920000px;}
.y1d_c01236{bottom:872.640000px;}
.y1e_c01236{bottom:873.360000px;}
.y14_c01236{bottom:911.520000px;}
.y17_c01236{bottom:912.240000px;}
.y16_c01236{bottom:914.400000px;}
.y19_c01236{bottom:915.120000px;}
.y18_c01236{bottom:915.840000px;}
.y15_c01236{bottom:917.280000px;}
.ye_c01236{bottom:954.720000px;}
.y12_c01236{bottom:956.160000px;}
.yf_c01236{bottom:956.880000px;}
.y10_c01236{bottom:957.600000px;}
.y11_c01236{bottom:959.040000px;}
.y13_c01236{bottom:960.480000px;}
.y9_c01236{bottom:997.920000px;}
.y8_c01236{bottom:998.640000px;}
.yc_c01236{bottom:1000.080000px;}
.ya_c01236{bottom:1000.800000px;}
.yd_c01236{bottom:1001.520000px;}
.yb_c01236{bottom:1002.240000px;}
.y3_c01236{bottom:1041.120000px;}
.y2_c01236{bottom:1041.840000px;}
.y5_c01236{bottom:1043.280000px;}
.y4_c01236{bottom:1044.720000px;}
.y7_c01236{bottom:1046.160000px;}
.y6_c01236{bottom:1046.880000px;}
.y1_c01236{bottom:1110.240000px;}
.hc_c01236{height:12.958594px;}
.h10_c01236{height:23.325469px;}
.h9_c01236{height:31.100625px;}
.h6_c01236{height:33.692344px;}
.he_c01236{height:36.284062px;}
.h12_c01236{height:38.875781px;}
.hb_c01236{height:41.467500px;}
.h8_c01236{height:44.059219px;}
.h5_c01236{height:46.650937px;}
.h3_c01236{height:49.242656px;}
.h7_c01236{height:51.834375px;}
.h4_c01236{height:54.426094px;}
.hd_c01236{height:57.017812px;}
.hf_c01236{height:57.306094px;}
.ha_c01236{height:57.594375px;}
.h11_c01236{height:59.609531px;}
.h2_c01236{height:62.201250px;}
.h13_c01236{height:80.343281px;}
.h1_c01236{height:1164.000000px;}
.h0_c01236{height:1164.240000px;}
.w0_c01236{width:762.480000px;}
.w1_c01236{width:762.750000px;}
.x0_c01236{left:0.000000px;}
.x10_c01236{left:52.560000px;}
.x2_c01236{left:54.000000px;}
.x25_c01236{left:55.440000px;}
.x14_c01236{left:103.680000px;}
.xd_c01236{left:112.320000px;}
.x1d_c01236{left:131.760000px;}
.x3_c01236{left:133.920000px;}
.x1e_c01236{left:185.760000px;}
.x1b_c01236{left:187.200000px;}
.x4_c01236{left:218.160000px;}
.xa_c01236{left:272.160000px;}
.x5_c01236{left:282.960000px;}
.x23_c01236{left:303.840000px;}
.x1f_c01236{left:315.360000px;}
.xb_c01236{left:326.160000px;}
.xe_c01236{left:336.960000px;}
.x6_c01236{left:338.400000px;}
.x20_c01236{left:369.360000px;}
.x17_c01236{left:380.160000px;}
.x22_c01236{left:390.960000px;}
.x11_c01236{left:424.800000px;}
.x15_c01236{left:434.160000px;}
.x18_c01236{left:447.120000px;}
.x1c_c01236{left:456.480000px;}
.x12_c01236{left:468.000000px;}
.x1a_c01236{left:482.400000px;}
.x19_c01236{left:483.840000px;}
.x24_c01236{left:520.560000px;}
.x7_c01236{left:522.720000px;}
.x8_c01236{left:609.840000px;}
.x1_c01236{left:629.280000px;}
.x9_c01236{left:642.240000px;}
.xc_c01236{left:674.640000px;}
.x21_c01236{left:676.080000px;}
.xf_c01236{left:684.000000px;}
.x13_c01236{left:685.440000px;}
.x16_c01236{left:706.320000px;}
@media print{
.v0_c01236{vertical-align:0.000000pt;}
.v2_c01236{vertical-align:2.560000pt;}
.v1_c01236{vertical-align:5.120000pt;}
.ls0_c01236{letter-spacing:0.000000pt;}
.ws4_c01236{word-spacing:0.000000pt;}
.ws2_c01236{word-spacing:3.622187pt;}
.ws0_c01236{word-spacing:6.793167pt;}
.ws1_c01236{word-spacing:11.680000pt;}
.ws3_c01236{word-spacing:169.215898pt;}
.fs9_c01236{font-size:12.800000pt;}
.fsc_c01236{font-size:23.040000pt;}
.fs7_c01236{font-size:30.720000pt;}
.fs4_c01236{font-size:33.280000pt;}
.fsb_c01236{font-size:35.840000pt;}
.fse_c01236{font-size:38.400000pt;}
.fs8_c01236{font-size:40.960000pt;}
.fs6_c01236{font-size:43.520000pt;}
.fs3_c01236{font-size:46.080000pt;}
.fs1_c01236{font-size:48.640000pt;}
.fs5_c01236{font-size:51.200000pt;}
.fs2_c01236{font-size:53.760000pt;}
.fsa_c01236{font-size:56.320000pt;}
.fsd_c01236{font-size:58.880000pt;}
.fs0_c01236{font-size:61.440000pt;}
.fsf_c01236{font-size:79.360000pt;}
.y0_c01236{bottom:0.000000pt;}
.y85_c01236{bottom:63.360000pt;}
.y83_c01236{bottom:64.640000pt;}
.y86_c01236{bottom:65.920000pt;}
.y84_c01236{bottom:66.560000pt;}
.y82_c01236{bottom:67.200000pt;}
.y81_c01236{bottom:71.680000pt;}
.y80_c01236{bottom:101.760000pt;}
.y7f_c01236{bottom:102.400000pt;}
.y7c_c01236{bottom:103.040000pt;}
.y7e_c01236{bottom:103.680000pt;}
.y7d_c01236{bottom:104.960000pt;}
.y7b_c01236{bottom:105.600000pt;}
.y7a_c01236{bottom:108.800000pt;}
.y78_c01236{bottom:140.800000pt;}
.y77_c01236{bottom:141.440000pt;}
.y75_c01236{bottom:142.080000pt;}
.y79_c01236{bottom:142.720000pt;}
.y74_c01236{bottom:143.360000pt;}
.y76_c01236{bottom:144.000000pt;}
.y73_c01236{bottom:147.200000pt;}
.y71_c01236{bottom:172.800000pt;}
.y70_c01236{bottom:179.200000pt;}
.y6e_c01236{bottom:179.840000pt;}
.y72_c01236{bottom:180.480000pt;}
.y6f_c01236{bottom:181.760000pt;}
.y6d_c01236{bottom:182.400000pt;}
.y6c_c01236{bottom:185.600000pt;}
.y69_c01236{bottom:217.600000pt;}
.y6a_c01236{bottom:218.240000pt;}
.y6b_c01236{bottom:218.880000pt;}
.y68_c01236{bottom:220.160000pt;}
.y67_c01236{bottom:222.720000pt;}
.y65_c01236{bottom:256.640000pt;}
.y64_c01236{bottom:257.280000pt;}
.y63_c01236{bottom:257.920000pt;}
.y66_c01236{bottom:258.560000pt;}
.y62_c01236{bottom:260.480000pt;}
.y61_c01236{bottom:294.400000pt;}
.y5f_c01236{bottom:296.320000pt;}
.y60_c01236{bottom:296.960000pt;}
.y5e_c01236{bottom:298.240000pt;}
.y5b_c01236{bottom:332.800000pt;}
.y5d_c01236{bottom:333.440000pt;}
.y5a_c01236{bottom:334.080000pt;}
.y5c_c01236{bottom:334.720000pt;}
.y59_c01236{bottom:335.360000pt;}
.y56_c01236{bottom:371.200000pt;}
.y55_c01236{bottom:371.840000pt;}
.y57_c01236{bottom:372.480000pt;}
.y58_c01236{bottom:373.120000pt;}
.y54_c01236{bottom:373.760000pt;}
.y53_c01236{bottom:401.920000pt;}
.y4f_c01236{bottom:408.960000pt;}
.y52_c01236{bottom:409.600000pt;}
.y4e_c01236{bottom:410.240000pt;}
.y50_c01236{bottom:410.880000pt;}
.y51_c01236{bottom:411.520000pt;}
.y4d_c01236{bottom:412.160000pt;}
.y4a_c01236{bottom:447.360000pt;}
.y49_c01236{bottom:448.000000pt;}
.y4b_c01236{bottom:449.280000pt;}
.y4c_c01236{bottom:449.920000pt;}
.y48_c01236{bottom:450.560000pt;}
.y47_c01236{bottom:485.760000pt;}
.y46_c01236{bottom:486.400000pt;}
.y45_c01236{bottom:488.320000pt;}
.y41_c01236{bottom:514.560000pt;}
.y40_c01236{bottom:515.200000pt;}
.y44_c01236{bottom:515.840000pt;}
.y42_c01236{bottom:516.480000pt;}
.y3f_c01236{bottom:517.760000pt;}
.y43_c01236{bottom:518.400000pt;}
.y3e_c01236{bottom:554.880000pt;}
.y3d_c01236{bottom:555.520000pt;}
.y3a_c01236{bottom:581.760000pt;}
.y39_c01236{bottom:583.040000pt;}
.y3c_c01236{bottom:583.680000pt;}
.y3b_c01236{bottom:584.320000pt;}
.y38_c01236{bottom:613.760000pt;}
.y34_c01236{bottom:619.520000pt;}
.y33_c01236{bottom:620.160000pt;}
.y36_c01236{bottom:620.800000pt;}
.y32_c01236{bottom:622.080000pt;}
.y35_c01236{bottom:622.720000pt;}
.y37_c01236{bottom:623.360000pt;}
.y2d_c01236{bottom:657.920000pt;}
.y2c_c01236{bottom:658.560000pt;}
.y2e_c01236{bottom:659.200000pt;}
.y2a_c01236{bottom:659.840000pt;}
.y2b_c01236{bottom:660.480000pt;}
.y2f_c01236{bottom:661.120000pt;}
.y30_c01236{bottom:661.760000pt;}
.y31_c01236{bottom:662.400000pt;}
.y26_c01236{bottom:696.320000pt;}
.y25_c01236{bottom:696.960000pt;}
.y24_c01236{bottom:698.240000pt;}
.y29_c01236{bottom:698.880000pt;}
.y27_c01236{bottom:699.520000pt;}
.y28_c01236{bottom:700.160000pt;}
.y20_c01236{bottom:734.720000pt;}
.y1f_c01236{bottom:735.360000pt;}
.y22_c01236{bottom:736.000000pt;}
.y21_c01236{bottom:736.640000pt;}
.y23_c01236{bottom:738.560000pt;}
.y1a_c01236{bottom:772.480000pt;}
.y1c_c01236{bottom:774.400000pt;}
.y1b_c01236{bottom:775.040000pt;}
.y1d_c01236{bottom:775.680000pt;}
.y1e_c01236{bottom:776.320000pt;}
.y14_c01236{bottom:810.240000pt;}
.y17_c01236{bottom:810.880000pt;}
.y16_c01236{bottom:812.800000pt;}
.y19_c01236{bottom:813.440000pt;}
.y18_c01236{bottom:814.080000pt;}
.y15_c01236{bottom:815.360000pt;}
.ye_c01236{bottom:848.640000pt;}
.y12_c01236{bottom:849.920000pt;}
.yf_c01236{bottom:850.560000pt;}
.y10_c01236{bottom:851.200000pt;}
.y11_c01236{bottom:852.480000pt;}
.y13_c01236{bottom:853.760000pt;}
.y9_c01236{bottom:887.040000pt;}
.y8_c01236{bottom:887.680000pt;}
.yc_c01236{bottom:888.960000pt;}
.ya_c01236{bottom:889.600000pt;}
.yd_c01236{bottom:890.240000pt;}
.yb_c01236{bottom:890.880000pt;}
.y3_c01236{bottom:925.440000pt;}
.y2_c01236{bottom:926.080000pt;}
.y5_c01236{bottom:927.360000pt;}
.y4_c01236{bottom:928.640000pt;}
.y7_c01236{bottom:929.920000pt;}
.y6_c01236{bottom:930.560000pt;}
.y1_c01236{bottom:986.880000pt;}
.hc_c01236{height:11.518750pt;}
.h10_c01236{height:20.733750pt;}
.h9_c01236{height:27.645000pt;}
.h6_c01236{height:29.948750pt;}
.he_c01236{height:32.252500pt;}
.h12_c01236{height:34.556250pt;}
.hb_c01236{height:36.860000pt;}
.h8_c01236{height:39.163750pt;}
.h5_c01236{height:41.467500pt;}
.h3_c01236{height:43.771250pt;}
.h7_c01236{height:46.075000pt;}
.h4_c01236{height:48.378750pt;}
.hd_c01236{height:50.682500pt;}
.hf_c01236{height:50.938750pt;}
.ha_c01236{height:51.195000pt;}
.h11_c01236{height:52.986250pt;}
.h2_c01236{height:55.290000pt;}
.h13_c01236{height:71.416250pt;}
.h1_c01236{height:1034.666667pt;}
.h0_c01236{height:1034.880000pt;}
.w0_c01236{width:677.760000pt;}
.w1_c01236{width:678.000000pt;}
.x0_c01236{left:0.000000pt;}
.x10_c01236{left:46.720000pt;}
.x2_c01236{left:48.000000pt;}
.x25_c01236{left:49.280000pt;}
.x14_c01236{left:92.160000pt;}
.xd_c01236{left:99.840000pt;}
.x1d_c01236{left:117.120000pt;}
.x3_c01236{left:119.040000pt;}
.x1e_c01236{left:165.120000pt;}
.x1b_c01236{left:166.400000pt;}
.x4_c01236{left:193.920000pt;}
.xa_c01236{left:241.920000pt;}
.x5_c01236{left:251.520000pt;}
.x23_c01236{left:270.080000pt;}
.x1f_c01236{left:280.320000pt;}
.xb_c01236{left:289.920000pt;}
.xe_c01236{left:299.520000pt;}
.x6_c01236{left:300.800000pt;}
.x20_c01236{left:328.320000pt;}
.x17_c01236{left:337.920000pt;}
.x22_c01236{left:347.520000pt;}
.x11_c01236{left:377.600000pt;}
.x15_c01236{left:385.920000pt;}
.x18_c01236{left:397.440000pt;}
.x1c_c01236{left:405.760000pt;}
.x12_c01236{left:416.000000pt;}
.x1a_c01236{left:428.800000pt;}
.x19_c01236{left:430.080000pt;}
.x24_c01236{left:462.720000pt;}
.x7_c01236{left:464.640000pt;}
.x8_c01236{left:542.080000pt;}
.x1_c01236{left:559.360000pt;}
.x9_c01236{left:570.880000pt;}
.xc_c01236{left:599.680000pt;}
.x21_c01236{left:600.960000pt;}
.xf_c01236{left:608.000000pt;}
.x13_c01236{left:609.280000pt;}
.x16_c01236{left:627.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_805cacd841cf12dd8841b1a1.woff2')format("woff");}.ff1_c01237{font-family:ff1_c01237;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m50_c01237{transform:matrix(0.129800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129800,0.000000,0.000000,0.250000,0,0);}
.m43_c01237{transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);}
.m4e_c01237{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);}
.m4f_c01237{transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);}
.m49_c01237{transform:matrix(0.215825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215825,0.000000,0.000000,0.250000,0,0);}
.m5a_c01237{transform:matrix(0.222675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222675,0.000000,0.000000,0.250000,0,0);}
.m51_c01237{transform:matrix(0.223325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223325,0.000000,0.000000,0.250000,0,0);}
.m29_c01237{transform:matrix(0.232300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232300,0.000000,0.000000,0.250000,0,0);}
.m5d_c01237{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m54_c01237{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m62_c01237{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m35_c01237{transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);}
.m59_c01237{transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);}
.m28_c01237{transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);}
.m5e_c01237{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m1e_c01237{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m56_c01237{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01237{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);}
.m5f_c01237{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m7_c01237{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m17_c01237{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_c01237{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);}
.m1f_c01237{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);}
.m46_c01237{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m10_c01237{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.mb_c01237{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m26_c01237{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m16_c01237{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m15_c01237{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m19_c01237{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);}
.m33_c01237{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m11_c01237{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m24_c01237{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m8_c01237{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m22_c01237{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.md_c01237{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m23_c01237{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m38_c01237{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01237{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01237{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m9_c01237{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m34_c01237{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01237{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01237{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m5c_c01237{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m27_c01237{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m1_c01237{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01237{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);}
.m47_c01237{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m6_c01237{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);}
.m55_c01237{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);}
.m42_c01237{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m31_c01237{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.mf_c01237{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m0_c01237{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);}
.m32_c01237{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.mc_c01237{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);}
.m1a_c01237{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01237{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);}
.m53_c01237{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);}
.m5b_c01237{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m30_c01237{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01237{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);}
.m58_c01237{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m20_c01237{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m18_c01237{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m14_c01237{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);}
.m60_c01237{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01237{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m40_c01237{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01237{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01237{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);}
.m4b_c01237{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m21_c01237{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);}
.me_c01237{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);}
.m2_c01237{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m57_c01237{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);}
.m12_c01237{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m41_c01237{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m45_c01237{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m13_c01237{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);}
.m36_c01237{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);}
.m39_c01237{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01237{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);}
.m25_c01237{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m44_c01237{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);}
.m3_c01237{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m37_c01237{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m48_c01237{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);}
.m52_c01237{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01237{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m4_c01237{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01237{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.m4d_c01237{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01237{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01237{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);}
.m61_c01237{transform:matrix(0.775000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.775000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.775000,0.000000,0.000000,0.250000,0,0);}
.m5_c01237{transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01237{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.v3_c01237{vertical-align:-5.760000px;}
.v0_c01237{vertical-align:0.000000px;}
.v1_c01237{vertical-align:5.760000px;}
.v4_c01237{vertical-align:8.640000px;}
.v2_c01237{vertical-align:14.400000px;}
.ls0_c01237{letter-spacing:0.000000px;}
.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;}
}
.ws8_c01237{word-spacing:0.000000px;}
.ws0_c01237{word-spacing:3.744960px;}
.ws1_c01237{word-spacing:19.521600px;}
.ws7_c01237{word-spacing:26.368554px;}
.ws4_c01237{word-spacing:61.778400px;}
.ws6_c01237{word-spacing:87.212681px;}
.ws5_c01237{word-spacing:157.570080px;}
.ws2_c01237{word-spacing:919.188720px;}
.ws3_c01237{word-spacing:921.030000px;}
.fc0_c01237{color:transparent;}
.fs12_c01237{font-size:11.520000px;}
.fs11_c01237{font-size:14.400000px;}
.fsd_c01237{font-size:17.280000px;}
.fs10_c01237{font-size:20.160000px;}
.fs14_c01237{font-size:25.920000px;}
.fse_c01237{font-size:31.680000px;}
.fs3_c01237{font-size:34.560000px;}
.fsf_c01237{font-size:37.440000px;}
.fsc_c01237{font-size:43.200000px;}
.fs4_c01237{font-size:46.080000px;}
.fs8_c01237{font-size:48.960000px;}
.fs2_c01237{font-size:51.840000px;}
.fs5_c01237{font-size:54.720000px;}
.fsa_c01237{font-size:57.600000px;}
.fs1_c01237{font-size:60.480000px;}
.fs6_c01237{font-size:63.360000px;}
.fs7_c01237{font-size:66.240000px;}
.fsb_c01237{font-size:69.120000px;}
.fs0_c01237{font-size:72.000000px;}
.fs9_c01237{font-size:74.880000px;}
.fs13_c01237{font-size:77.760000px;}
.y0_c01237{bottom:0.000000px;}
.ybe_c01237{bottom:141.120000px;}
.ybf_c01237{bottom:141.840000px;}
.yc0_c01237{bottom:142.560000px;}
.ybd_c01237{bottom:143.280000px;}
.yc1_c01237{bottom:144.000000px;}
.yb8_c01237{bottom:153.360000px;}
.yb7_c01237{bottom:154.080000px;}
.yb6_c01237{bottom:158.400000px;}
.yb5_c01237{bottom:159.840000px;}
.ybb_c01237{bottom:162.720000px;}
.yb9_c01237{bottom:163.440000px;}
.yba_c01237{bottom:164.880000px;}
.ybc_c01237{bottom:165.600000px;}
.yb0_c01237{bottom:174.240000px;}
.yae_c01237{bottom:177.840000px;}
.yaf_c01237{bottom:178.560000px;}
.yad_c01237{bottom:179.280000px;}
.yb1_c01237{bottom:184.320000px;}
.yb3_c01237{bottom:185.040000px;}
.yb2_c01237{bottom:185.760000px;}
.yb4_c01237{bottom:187.200000px;}
.ya7_c01237{bottom:196.560000px;}
.ya5_c01237{bottom:199.440000px;}
.ya6_c01237{bottom:200.880000px;}
.yaa_c01237{bottom:205.200000px;}
.ya8_c01237{bottom:205.920000px;}
.yab_c01237{bottom:206.640000px;}
.ya9_c01237{bottom:207.360000px;}
.yac_c01237{bottom:208.800000px;}
.ya0_c01237{bottom:216.720000px;}
.y9f_c01237{bottom:218.160000px;}
.y9d_c01237{bottom:220.320000px;}
.y9e_c01237{bottom:222.480000px;}
.ya3_c01237{bottom:227.520000px;}
.ya1_c01237{bottom:228.240000px;}
.ya4_c01237{bottom:228.960000px;}
.ya2_c01237{bottom:229.680000px;}
.y99_c01237{bottom:239.760000px;}
.y98_c01237{bottom:241.920000px;}
.y97_c01237{bottom:244.800000px;}
.y9c_c01237{bottom:249.120000px;}
.y9a_c01237{bottom:249.840000px;}
.y9b_c01237{bottom:252.000000px;}
.y91_c01237{bottom:260.640000px;}
.y90_c01237{bottom:261.360000px;}
.y8f_c01237{bottom:262.800000px;}
.y8e_c01237{bottom:266.400000px;}
.y92_c01237{bottom:270.720000px;}
.y95_c01237{bottom:271.440000px;}
.y93_c01237{bottom:272.880000px;}
.y94_c01237{bottom:273.600000px;}
.y96_c01237{bottom:274.320000px;}
.y88_c01237{bottom:282.240000px;}
.y87_c01237{bottom:282.960000px;}
.y8d_c01237{bottom:284.400000px;}
.y85_c01237{bottom:285.840000px;}
.y86_c01237{bottom:290.880000px;}
.y8a_c01237{bottom:292.320000px;}
.y89_c01237{bottom:293.040000px;}
.y8b_c01237{bottom:293.760000px;}
.y8c_c01237{bottom:295.200000px;}
.y7f_c01237{bottom:303.120000px;}
.y7e_c01237{bottom:304.560000px;}
.y7c_c01237{bottom:306.720000px;}
.y7d_c01237{bottom:307.440000px;}
.y82_c01237{bottom:313.920000px;}
.y83_c01237{bottom:314.640000px;}
.y80_c01237{bottom:315.360000px;}
.y81_c01237{bottom:316.800000px;}
.y84_c01237{bottom:317.520000px;}
.y7b_c01237{bottom:324.720000px;}
.y7a_c01237{bottom:327.600000px;}
.y79_c01237{bottom:328.320000px;}
.y77_c01237{bottom:343.440000px;}
.y75_c01237{bottom:347.040000px;}
.y74_c01237{bottom:347.760000px;}
.y78_c01237{bottom:348.480000px;}
.y76_c01237{bottom:349.200000px;}
.y73_c01237{bottom:349.920000px;}
.y6e_c01237{bottom:367.920000px;}
.y6d_c01237{bottom:369.360000px;}
.y6c_c01237{bottom:371.520000px;}
.y6b_c01237{bottom:372.960000px;}
.y6f_c01237{bottom:379.440000px;}
.y70_c01237{bottom:381.600000px;}
.y72_c01237{bottom:382.320000px;}
.y71_c01237{bottom:384.480000px;}
.y69_c01237{bottom:391.680000px;}
.y6a_c01237{bottom:393.120000px;}
.y68_c01237{bottom:394.560000px;}
.y67_c01237{bottom:411.840000px;}
.y66_c01237{bottom:412.560000px;}
.y65_c01237{bottom:414.000000px;}
.y63_c01237{bottom:419.040000px;}
.y64_c01237{bottom:423.360000px;}
.y62_c01237{bottom:424.080000px;}
.y61_c01237{bottom:426.240000px;}
.y5f_c01237{bottom:444.960000px;}
.y5c_c01237{bottom:445.680000px;}
.y5e_c01237{bottom:446.400000px;}
.y5d_c01237{bottom:447.120000px;}
.y60_c01237{bottom:447.840000px;}
.y5b_c01237{bottom:453.600000px;}
.y5a_c01237{bottom:457.200000px;}
.y56_c01237{bottom:475.200000px;}
.y55_c01237{bottom:475.920000px;}
.y52_c01237{bottom:476.640000px;}
.y57_c01237{bottom:477.360000px;}
.y53_c01237{bottom:478.080000px;}
.y58_c01237{bottom:478.800000px;}
.y59_c01237{bottom:479.520000px;}
.y54_c01237{bottom:480.960000px;}
.y4c_c01237{bottom:498.240000px;}
.y51_c01237{bottom:509.760000px;}
.y4d_c01237{bottom:510.480000px;}
.y4e_c01237{bottom:511.200000px;}
.y4f_c01237{bottom:511.920000px;}
.y50_c01237{bottom:514.080000px;}
.y47_c01237{bottom:540.720000px;}
.y49_c01237{bottom:541.440000px;}
.y48_c01237{bottom:542.880000px;}
.y4a_c01237{bottom:544.320000px;}
.y4b_c01237{bottom:546.480000px;}
.y41_c01237{bottom:550.080000px;}
.y42_c01237{bottom:550.800000px;}
.y40_c01237{bottom:552.240000px;}
.y43_c01237{bottom:563.040000px;}
.y45_c01237{bottom:563.760000px;}
.y44_c01237{bottom:564.480000px;}
.y46_c01237{bottom:566.640000px;}
.y3c_c01237{bottom:601.920000px;}
.y3e_c01237{bottom:604.080000px;}
.y3b_c01237{bottom:604.800000px;}
.y3f_c01237{bottom:606.240000px;}
.y3d_c01237{bottom:606.960000px;}
.y37_c01237{bottom:644.400000px;}
.y36_c01237{bottom:647.280000px;}
.y39_c01237{bottom:648.720000px;}
.y38_c01237{bottom:649.440000px;}
.y3a_c01237{bottom:650.880000px;}
.y31_c01237{bottom:687.600000px;}
.y2f_c01237{bottom:689.760000px;}
.y30_c01237{bottom:691.200000px;}
.y32_c01237{bottom:691.920000px;}
.y34_c01237{bottom:692.640000px;}
.y33_c01237{bottom:693.360000px;}
.y35_c01237{bottom:694.080000px;}
.y2a_c01237{bottom:731.520000px;}
.y29_c01237{bottom:732.240000px;}
.y2c_c01237{bottom:734.400000px;}
.y2d_c01237{bottom:735.840000px;}
.y2b_c01237{bottom:736.560000px;}
.y2e_c01237{bottom:737.280000px;}
.y24_c01237{bottom:774.720000px;}
.y25_c01237{bottom:777.600000px;}
.y28_c01237{bottom:778.320000px;}
.y26_c01237{bottom:779.760000px;}
.y27_c01237{bottom:787.680000px;}
.y1e_c01237{bottom:817.920000px;}
.y1f_c01237{bottom:820.800000px;}
.y20_c01237{bottom:821.520000px;}
.y23_c01237{bottom:822.240000px;}
.y21_c01237{bottom:822.960000px;}
.y22_c01237{bottom:824.400000px;}
.y1a_c01237{bottom:861.120000px;}
.y1d_c01237{bottom:864.000000px;}
.y1b_c01237{bottom:864.720000px;}
.y1c_c01237{bottom:865.440000px;}
.y16_c01237{bottom:903.600000px;}
.y17_c01237{bottom:906.480000px;}
.y18_c01237{bottom:907.920000px;}
.y19_c01237{bottom:908.640000px;}
.ye_c01237{bottom:946.800000px;}
.y11_c01237{bottom:947.520000px;}
.yf_c01237{bottom:949.680000px;}
.y10_c01237{bottom:950.400000px;}
.y12_c01237{bottom:951.120000px;}
.y14_c01237{bottom:951.840000px;}
.y13_c01237{bottom:953.280000px;}
.y15_c01237{bottom:954.000000px;}
.y8_c01237{bottom:989.280000px;}
.y9_c01237{bottom:990.000000px;}
.yb_c01237{bottom:993.600000px;}
.ya_c01237{bottom:994.320000px;}
.yc_c01237{bottom:996.480000px;}
.yd_c01237{bottom:997.920000px;}
.y2_c01237{bottom:1032.480000px;}
.y3_c01237{bottom:1034.640000px;}
.y7_c01237{bottom:1036.800000px;}
.y4_c01237{bottom:1037.520000px;}
.y5_c01237{bottom:1038.240000px;}
.y6_c01237{bottom:1038.960000px;}
.y1_c01237{bottom:1116.000000px;}
.h17_c01237{height:10.366875px;}
.h16_c01237{height:12.958594px;}
.h11_c01237{height:15.550313px;}
.h15_c01237{height:18.142031px;}
.h1a_c01237{height:23.325469px;}
.h12_c01237{height:28.508906px;}
.h6_c01237{height:31.100625px;}
.h14_c01237{height:33.692344px;}
.h10_c01237{height:38.875781px;}
.h7_c01237{height:41.467500px;}
.hb_c01237{height:44.059219px;}
.h5_c01237{height:46.650937px;}
.hc_c01237{height:49.242656px;}
.he_c01237{height:51.834375px;}
.h4_c01237{height:54.426094px;}
.h8_c01237{height:55.002656px;}
.h9_c01237{height:57.017812px;}
.h18_c01237{height:57.882656px;}
.ha_c01237{height:59.609531px;}
.h3_c01237{height:60.186094px;}
.h13_c01237{height:62.201250px;}
.h2_c01237{height:64.792969px;}
.hd_c01237{height:67.384687px;}
.h19_c01237{height:69.976406px;}
.hf_c01237{height:71.417813px;}
.h1_c01237{height:1168.500000px;}
.h0_c01237{height:1168.560000px;}
.w1_c01237{width:768.750000px;}
.w0_c01237{width:768.960000px;}
.x0_c01237{left:0.000000px;}
.x2_c01237{left:54.000000px;}
.x18_c01237{left:55.440000px;}
.x4f_c01237{left:58.320000px;}
.x3e_c01237{left:66.240165px;}
.x3a_c01237{left:84.960000px;}
.x30_c01237{left:94.320000px;}
.x3f_c01237{left:95.760000px;}
.x41_c01237{left:106.560000px;}
.x4c_c01237{left:108.000000px;}
.x46_c01237{left:126.720000px;}
.x9_c01237{left:132.480000px;}
.x17_c01237{left:133.920000px;}
.x42_c01237{left:136.080000px;}
.x1e_c01237{left:137.520000px;}
.x31_c01237{left:156.960000px;}
.x32_c01237{left:198.000000px;}
.x3b_c01237{left:199.440000px;}
.x47_c01237{left:200.880000px;}
.x19_c01237{left:208.800000px;}
.x43_c01237{left:210.960000px;}
.x3_c01237{left:218.880000px;}
.xd_c01237{left:228.960000px;}
.x40_c01237{left:232.560000px;}
.x1b_c01237{left:240.480000px;}
.x29_c01237{left:253.440000px;}
.x33_c01237{left:264.240000px;}
.xe_c01237{left:272.880000px;}
.x13_c01237{left:274.320000px;}
.x37_c01237{left:275.760000px;}
.x4_c01237{left:283.680000px;}
.x2a_c01237{left:294.480000px;}
.x1c_c01237{left:295.920000px;}
.x24_c01237{left:297.360000px;}
.x1f_c01237{left:307.440000px;}
.x4d_c01237{left:319.680000px;}
.x48_c01237{left:329.760000px;}
.x50_c01237{left:332.640000px;}
.x5_c01237{left:339.120000px;}
.x20_c01237{left:360.720000px;}
.x25_c01237{left:362.160000px;}
.x6_c01237{left:381.600000px;}
.x45_c01237{left:383.760000px;}
.x1d_c01237{left:393.120000px;}
.x2b_c01237{left:394.560000px;}
.x21_c01237{left:416.160000px;}
.x34_c01237{left:425.520000px;}
.x49_c01237{left:426.960000px;}
.x35_c01237{left:458.640000px;}
.x2c_c01237{left:469.440000px;}
.x3c_c01237{left:470.880000px;}
.x22_c01237{left:480.240000px;}
.x26_c01237{left:481.680000px;}
.x38_c01237{left:503.280000px;}
.x2d_c01237{left:513.360000px;}
.x7_c01237{left:522.000000px;}
.x14_c01237{left:523.440000px;}
.x23_c01237{left:535.680000px;}
.x3d_c01237{left:545.040000px;}
.x4a_c01237{left:546.480000px;}
.x53_c01237{left:557.280000px;}
.x51_c01237{left:558.720000px;}
.x27_c01237{left:567.360000px;}
.xa_c01237{left:576.720000px;}
.x2e_c01237{left:578.880000px;}
.x4e_c01237{left:580.320000px;}
.x52_c01237{left:590.400000px;}
.x54_c01237{left:591.840000px;}
.x28_c01237{left:601.200000px;}
.x8_c01237{left:610.560000px;}
.x10_c01237{left:621.360000px;}
.x2f_c01237{left:622.800000px;}
.x36_c01237{left:632.160000px;}
.x44_c01237{left:634.320000px;}
.x1_c01237{left:643.680000px;}
.x55_c01237{left:646.560000px;}
.xb_c01237{left:653.040000px;}
.x16_c01237{left:654.480000px;}
.x4b_c01237{left:655.920000px;}
.x11_c01237{left:664.560000px;}
.xc_c01237{left:686.160000px;}
.x15_c01237{left:687.600000px;}
.x39_c01237{left:689.040000px;}
.x12_c01237{left:697.680000px;}
.xf_c01237{left:706.320000px;}
.x1a_c01237{left:708.480000px;}
@media print{
.v3_c01237{vertical-align:-5.120000pt;}
.v0_c01237{vertical-align:0.000000pt;}
.v1_c01237{vertical-align:5.120000pt;}
.v4_c01237{vertical-align:7.680000pt;}
.v2_c01237{vertical-align:12.800000pt;}
.ls0_c01237{letter-spacing:0.000000pt;}
.ws8_c01237{word-spacing:0.000000pt;}
.ws0_c01237{word-spacing:3.328853pt;}
.ws1_c01237{word-spacing:17.352533pt;}
.ws7_c01237{word-spacing:23.438715pt;}
.ws4_c01237{word-spacing:54.914133pt;}
.ws6_c01237{word-spacing:77.522383pt;}
.ws5_c01237{word-spacing:140.062293pt;}
.ws2_c01237{word-spacing:817.056640pt;}
.ws3_c01237{word-spacing:818.693333pt;}
.fs12_c01237{font-size:10.240000pt;}
.fs11_c01237{font-size:12.800000pt;}
.fsd_c01237{font-size:15.360000pt;}
.fs10_c01237{font-size:17.920000pt;}
.fs14_c01237{font-size:23.040000pt;}
.fse_c01237{font-size:28.160000pt;}
.fs3_c01237{font-size:30.720000pt;}
.fsf_c01237{font-size:33.280000pt;}
.fsc_c01237{font-size:38.400000pt;}
.fs4_c01237{font-size:40.960000pt;}
.fs8_c01237{font-size:43.520000pt;}
.fs2_c01237{font-size:46.080000pt;}
.fs5_c01237{font-size:48.640000pt;}
.fsa_c01237{font-size:51.200000pt;}
.fs1_c01237{font-size:53.760000pt;}
.fs6_c01237{font-size:56.320000pt;}
.fs7_c01237{font-size:58.880000pt;}
.fsb_c01237{font-size:61.440000pt;}
.fs0_c01237{font-size:64.000000pt;}
.fs9_c01237{font-size:66.560000pt;}
.fs13_c01237{font-size:69.120000pt;}
.y0_c01237{bottom:0.000000pt;}
.ybe_c01237{bottom:125.440000pt;}
.ybf_c01237{bottom:126.080000pt;}
.yc0_c01237{bottom:126.720000pt;}
.ybd_c01237{bottom:127.360000pt;}
.yc1_c01237{bottom:128.000000pt;}
.yb8_c01237{bottom:136.320000pt;}
.yb7_c01237{bottom:136.960000pt;}
.yb6_c01237{bottom:140.800000pt;}
.yb5_c01237{bottom:142.080000pt;}
.ybb_c01237{bottom:144.640000pt;}
.yb9_c01237{bottom:145.280000pt;}
.yba_c01237{bottom:146.560000pt;}
.ybc_c01237{bottom:147.200000pt;}
.yb0_c01237{bottom:154.880000pt;}
.yae_c01237{bottom:158.080000pt;}
.yaf_c01237{bottom:158.720000pt;}
.yad_c01237{bottom:159.360000pt;}
.yb1_c01237{bottom:163.840000pt;}
.yb3_c01237{bottom:164.480000pt;}
.yb2_c01237{bottom:165.120000pt;}
.yb4_c01237{bottom:166.400000pt;}
.ya7_c01237{bottom:174.720000pt;}
.ya5_c01237{bottom:177.280000pt;}
.ya6_c01237{bottom:178.560000pt;}
.yaa_c01237{bottom:182.400000pt;}
.ya8_c01237{bottom:183.040000pt;}
.yab_c01237{bottom:183.680000pt;}
.ya9_c01237{bottom:184.320000pt;}
.yac_c01237{bottom:185.600000pt;}
.ya0_c01237{bottom:192.640000pt;}
.y9f_c01237{bottom:193.920000pt;}
.y9d_c01237{bottom:195.840000pt;}
.y9e_c01237{bottom:197.760000pt;}
.ya3_c01237{bottom:202.240000pt;}
.ya1_c01237{bottom:202.880000pt;}
.ya4_c01237{bottom:203.520000pt;}
.ya2_c01237{bottom:204.160000pt;}
.y99_c01237{bottom:213.120000pt;}
.y98_c01237{bottom:215.040000pt;}
.y97_c01237{bottom:217.600000pt;}
.y9c_c01237{bottom:221.440000pt;}
.y9a_c01237{bottom:222.080000pt;}
.y9b_c01237{bottom:224.000000pt;}
.y91_c01237{bottom:231.680000pt;}
.y90_c01237{bottom:232.320000pt;}
.y8f_c01237{bottom:233.600000pt;}
.y8e_c01237{bottom:236.800000pt;}
.y92_c01237{bottom:240.640000pt;}
.y95_c01237{bottom:241.280000pt;}
.y93_c01237{bottom:242.560000pt;}
.y94_c01237{bottom:243.200000pt;}
.y96_c01237{bottom:243.840000pt;}
.y88_c01237{bottom:250.880000pt;}
.y87_c01237{bottom:251.520000pt;}
.y8d_c01237{bottom:252.800000pt;}
.y85_c01237{bottom:254.080000pt;}
.y86_c01237{bottom:258.560000pt;}
.y8a_c01237{bottom:259.840000pt;}
.y89_c01237{bottom:260.480000pt;}
.y8b_c01237{bottom:261.120000pt;}
.y8c_c01237{bottom:262.400000pt;}
.y7f_c01237{bottom:269.440000pt;}
.y7e_c01237{bottom:270.720000pt;}
.y7c_c01237{bottom:272.640000pt;}
.y7d_c01237{bottom:273.280000pt;}
.y82_c01237{bottom:279.040000pt;}
.y83_c01237{bottom:279.680000pt;}
.y80_c01237{bottom:280.320000pt;}
.y81_c01237{bottom:281.600000pt;}
.y84_c01237{bottom:282.240000pt;}
.y7b_c01237{bottom:288.640000pt;}
.y7a_c01237{bottom:291.200000pt;}
.y79_c01237{bottom:291.840000pt;}
.y77_c01237{bottom:305.280000pt;}
.y75_c01237{bottom:308.480000pt;}
.y74_c01237{bottom:309.120000pt;}
.y78_c01237{bottom:309.760000pt;}
.y76_c01237{bottom:310.400000pt;}
.y73_c01237{bottom:311.040000pt;}
.y6e_c01237{bottom:327.040000pt;}
.y6d_c01237{bottom:328.320000pt;}
.y6c_c01237{bottom:330.240000pt;}
.y6b_c01237{bottom:331.520000pt;}
.y6f_c01237{bottom:337.280000pt;}
.y70_c01237{bottom:339.200000pt;}
.y72_c01237{bottom:339.840000pt;}
.y71_c01237{bottom:341.760000pt;}
.y69_c01237{bottom:348.160000pt;}
.y6a_c01237{bottom:349.440000pt;}
.y68_c01237{bottom:350.720000pt;}
.y67_c01237{bottom:366.080000pt;}
.y66_c01237{bottom:366.720000pt;}
.y65_c01237{bottom:368.000000pt;}
.y63_c01237{bottom:372.480000pt;}
.y64_c01237{bottom:376.320000pt;}
.y62_c01237{bottom:376.960000pt;}
.y61_c01237{bottom:378.880000pt;}
.y5f_c01237{bottom:395.520000pt;}
.y5c_c01237{bottom:396.160000pt;}
.y5e_c01237{bottom:396.800000pt;}
.y5d_c01237{bottom:397.440000pt;}
.y60_c01237{bottom:398.080000pt;}
.y5b_c01237{bottom:403.200000pt;}
.y5a_c01237{bottom:406.400000pt;}
.y56_c01237{bottom:422.400000pt;}
.y55_c01237{bottom:423.040000pt;}
.y52_c01237{bottom:423.680000pt;}
.y57_c01237{bottom:424.320000pt;}
.y53_c01237{bottom:424.960000pt;}
.y58_c01237{bottom:425.600000pt;}
.y59_c01237{bottom:426.240000pt;}
.y54_c01237{bottom:427.520000pt;}
.y4c_c01237{bottom:442.880000pt;}
.y51_c01237{bottom:453.120000pt;}
.y4d_c01237{bottom:453.760000pt;}
.y4e_c01237{bottom:454.400000pt;}
.y4f_c01237{bottom:455.040000pt;}
.y50_c01237{bottom:456.960000pt;}
.y47_c01237{bottom:480.640000pt;}
.y49_c01237{bottom:481.280000pt;}
.y48_c01237{bottom:482.560000pt;}
.y4a_c01237{bottom:483.840000pt;}
.y4b_c01237{bottom:485.760000pt;}
.y41_c01237{bottom:488.960000pt;}
.y42_c01237{bottom:489.600000pt;}
.y40_c01237{bottom:490.880000pt;}
.y43_c01237{bottom:500.480000pt;}
.y45_c01237{bottom:501.120000pt;}
.y44_c01237{bottom:501.760000pt;}
.y46_c01237{bottom:503.680000pt;}
.y3c_c01237{bottom:535.040000pt;}
.y3e_c01237{bottom:536.960000pt;}
.y3b_c01237{bottom:537.600000pt;}
.y3f_c01237{bottom:538.880000pt;}
.y3d_c01237{bottom:539.520000pt;}
.y37_c01237{bottom:572.800000pt;}
.y36_c01237{bottom:575.360000pt;}
.y39_c01237{bottom:576.640000pt;}
.y38_c01237{bottom:577.280000pt;}
.y3a_c01237{bottom:578.560000pt;}
.y31_c01237{bottom:611.200000pt;}
.y2f_c01237{bottom:613.120000pt;}
.y30_c01237{bottom:614.400000pt;}
.y32_c01237{bottom:615.040000pt;}
.y34_c01237{bottom:615.680000pt;}
.y33_c01237{bottom:616.320000pt;}
.y35_c01237{bottom:616.960000pt;}
.y2a_c01237{bottom:650.240000pt;}
.y29_c01237{bottom:650.880000pt;}
.y2c_c01237{bottom:652.800000pt;}
.y2d_c01237{bottom:654.080000pt;}
.y2b_c01237{bottom:654.720000pt;}
.y2e_c01237{bottom:655.360000pt;}
.y24_c01237{bottom:688.640000pt;}
.y25_c01237{bottom:691.200000pt;}
.y28_c01237{bottom:691.840000pt;}
.y26_c01237{bottom:693.120000pt;}
.y27_c01237{bottom:700.160000pt;}
.y1e_c01237{bottom:727.040000pt;}
.y1f_c01237{bottom:729.600000pt;}
.y20_c01237{bottom:730.240000pt;}
.y23_c01237{bottom:730.880000pt;}
.y21_c01237{bottom:731.520000pt;}
.y22_c01237{bottom:732.800000pt;}
.y1a_c01237{bottom:765.440000pt;}
.y1d_c01237{bottom:768.000000pt;}
.y1b_c01237{bottom:768.640000pt;}
.y1c_c01237{bottom:769.280000pt;}
.y16_c01237{bottom:803.200000pt;}
.y17_c01237{bottom:805.760000pt;}
.y18_c01237{bottom:807.040000pt;}
.y19_c01237{bottom:807.680000pt;}
.ye_c01237{bottom:841.600000pt;}
.y11_c01237{bottom:842.240000pt;}
.yf_c01237{bottom:844.160000pt;}
.y10_c01237{bottom:844.800000pt;}
.y12_c01237{bottom:845.440000pt;}
.y14_c01237{bottom:846.080000pt;}
.y13_c01237{bottom:847.360000pt;}
.y15_c01237{bottom:848.000000pt;}
.y8_c01237{bottom:879.360000pt;}
.y9_c01237{bottom:880.000000pt;}
.yb_c01237{bottom:883.200000pt;}
.ya_c01237{bottom:883.840000pt;}
.yc_c01237{bottom:885.760000pt;}
.yd_c01237{bottom:887.040000pt;}
.y2_c01237{bottom:917.760000pt;}
.y3_c01237{bottom:919.680000pt;}
.y7_c01237{bottom:921.600000pt;}
.y4_c01237{bottom:922.240000pt;}
.y5_c01237{bottom:922.880000pt;}
.y6_c01237{bottom:923.520000pt;}
.y1_c01237{bottom:992.000000pt;}
.h17_c01237{height:9.215000pt;}
.h16_c01237{height:11.518750pt;}
.h11_c01237{height:13.822500pt;}
.h15_c01237{height:16.126250pt;}
.h1a_c01237{height:20.733750pt;}
.h12_c01237{height:25.341250pt;}
.h6_c01237{height:27.645000pt;}
.h14_c01237{height:29.948750pt;}
.h10_c01237{height:34.556250pt;}
.h7_c01237{height:36.860000pt;}
.hb_c01237{height:39.163750pt;}
.h5_c01237{height:41.467500pt;}
.hc_c01237{height:43.771250pt;}
.he_c01237{height:46.075000pt;}
.h4_c01237{height:48.378750pt;}
.h8_c01237{height:48.891250pt;}
.h9_c01237{height:50.682500pt;}
.h18_c01237{height:51.451250pt;}
.ha_c01237{height:52.986250pt;}
.h3_c01237{height:53.498750pt;}
.h13_c01237{height:55.290000pt;}
.h2_c01237{height:57.593750pt;}
.hd_c01237{height:59.897500pt;}
.h19_c01237{height:62.201250pt;}
.hf_c01237{height:63.482500pt;}
.h1_c01237{height:1038.666667pt;}
.h0_c01237{height:1038.720000pt;}
.w1_c01237{width:683.333333pt;}
.w0_c01237{width:683.520000pt;}
.x0_c01237{left:0.000000pt;}
.x2_c01237{left:48.000000pt;}
.x18_c01237{left:49.280000pt;}
.x4f_c01237{left:51.840000pt;}
.x3e_c01237{left:58.880147pt;}
.x3a_c01237{left:75.520000pt;}
.x30_c01237{left:83.840000pt;}
.x3f_c01237{left:85.120000pt;}
.x41_c01237{left:94.720000pt;}
.x4c_c01237{left:96.000000pt;}
.x46_c01237{left:112.640000pt;}
.x9_c01237{left:117.760000pt;}
.x17_c01237{left:119.040000pt;}
.x42_c01237{left:120.960000pt;}
.x1e_c01237{left:122.240000pt;}
.x31_c01237{left:139.520000pt;}
.x32_c01237{left:176.000000pt;}
.x3b_c01237{left:177.280000pt;}
.x47_c01237{left:178.560000pt;}
.x19_c01237{left:185.600000pt;}
.x43_c01237{left:187.520000pt;}
.x3_c01237{left:194.560000pt;}
.xd_c01237{left:203.520000pt;}
.x40_c01237{left:206.720000pt;}
.x1b_c01237{left:213.760000pt;}
.x29_c01237{left:225.280000pt;}
.x33_c01237{left:234.880000pt;}
.xe_c01237{left:242.560000pt;}
.x13_c01237{left:243.840000pt;}
.x37_c01237{left:245.120000pt;}
.x4_c01237{left:252.160000pt;}
.x2a_c01237{left:261.760000pt;}
.x1c_c01237{left:263.040000pt;}
.x24_c01237{left:264.320000pt;}
.x1f_c01237{left:273.280000pt;}
.x4d_c01237{left:284.160000pt;}
.x48_c01237{left:293.120000pt;}
.x50_c01237{left:295.680000pt;}
.x5_c01237{left:301.440000pt;}
.x20_c01237{left:320.640000pt;}
.x25_c01237{left:321.920000pt;}
.x6_c01237{left:339.200000pt;}
.x45_c01237{left:341.120000pt;}
.x1d_c01237{left:349.440000pt;}
.x2b_c01237{left:350.720000pt;}
.x21_c01237{left:369.920000pt;}
.x34_c01237{left:378.240000pt;}
.x49_c01237{left:379.520000pt;}
.x35_c01237{left:407.680000pt;}
.x2c_c01237{left:417.280000pt;}
.x3c_c01237{left:418.560000pt;}
.x22_c01237{left:426.880000pt;}
.x26_c01237{left:428.160000pt;}
.x38_c01237{left:447.360000pt;}
.x2d_c01237{left:456.320000pt;}
.x7_c01237{left:464.000000pt;}
.x14_c01237{left:465.280000pt;}
.x23_c01237{left:476.160000pt;}
.x3d_c01237{left:484.480000pt;}
.x4a_c01237{left:485.760000pt;}
.x53_c01237{left:495.360000pt;}
.x51_c01237{left:496.640000pt;}
.x27_c01237{left:504.320000pt;}
.xa_c01237{left:512.640000pt;}
.x2e_c01237{left:514.560000pt;}
.x4e_c01237{left:515.840000pt;}
.x52_c01237{left:524.800000pt;}
.x54_c01237{left:526.080000pt;}
.x28_c01237{left:534.400000pt;}
.x8_c01237{left:542.720000pt;}
.x10_c01237{left:552.320000pt;}
.x2f_c01237{left:553.600000pt;}
.x36_c01237{left:561.920000pt;}
.x44_c01237{left:563.840000pt;}
.x1_c01237{left:572.160000pt;}
.x55_c01237{left:574.720000pt;}
.xb_c01237{left:580.480000pt;}
.x16_c01237{left:581.760000pt;}
.x4b_c01237{left:583.040000pt;}
.x11_c01237{left:590.720000pt;}
.xc_c01237{left:609.920000pt;}
.x15_c01237{left:611.200000pt;}
.x39_c01237{left:612.480000pt;}
.x12_c01237{left:620.160000pt;}
.xf_c01237{left:627.840000pt;}
.x1a_c01237{left:629.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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;}
@font-face{font-family:ff1_c01238;src:url('chunks/assets/font_6e65be5873d9c9b036962094.woff2')format("woff");}.ff1_c01238{font-family:ff1_c01238;line-height:1.109863;font-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_c01238{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);}
.m3e_c01238{transform:matrix(0.229975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229975,0.000000,0.000000,0.250000,0,0);}
.m2b_c01238{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m15_c01238{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);}
.m3f_c01238{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01238{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);}
.m34_c01238{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);}
.m2a_c01238{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_c01238{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m20_c01238{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);}
.m38_c01238{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.md_c01238{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m18_c01238{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m25_c01238{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m12_c01238{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m31_c01238{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m11_c01238{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.me_c01238{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m14_c01238{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m7_c01238{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m32_c01238{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mc_c01238{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m29_c01238{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m28_c01238{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m16_c01238{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01238{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m5_c01238{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m6_c01238{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mf_c01238{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01238{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m17_c01238{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);}
.m27_c01238{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);}
.m3b_c01238{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m8_c01238{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m3_c01238{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);}
.m33_c01238{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m35_c01238{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m0_c01238{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);}
.m39_c01238{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_c01238{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);}
.m3d_c01238{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m1_c01238{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m37_c01238{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.mb_c01238{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.ma_c01238{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);}
.m23_c01238{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);}
.m2d_c01238{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m24_c01238{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m4_c01238{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m2_c01238{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);}
.m26_c01238{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m22_c01238{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01238{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01238{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m9_c01238{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m19_c01238{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01238{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m42_c01238{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01238{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m36_c01238{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);}
.m30_c01238{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01238{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);}
.m40_c01238{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01238{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);}
.m21_c01238{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m41_c01238{transform:matrix(1.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.320000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01238{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.v3_c01238{vertical-align:-11.520000px;}
.v2_c01238{vertical-align:-8.640000px;}
.v0_c01238{vertical-align:0.000000px;}
.v1_c01238{vertical-align:5.760000px;}
.ls0_c01238{letter-spacing:0.000000px;}
.sc__c01238{text-shadow:none;}
.sc0_c01238{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01238{-webkit-text-stroke:0px transparent;}
.sc0_c01238{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c01238{word-spacing:0.000000px;}
.ws1_c01238{word-spacing:9.210378px;}
.ws4_c01238{word-spacing:11.856000px;}
.ws2_c01238{word-spacing:15.600000px;}
.ws3_c01238{word-spacing:16.838400px;}
.ws5_c01238{word-spacing:190.367885px;}
.ws0_c01238{word-spacing:213.510000px;}
.fc0_c01238{color:transparent;}
.fsf_c01238{font-size:11.520000px;}
.fsd_c01238{font-size:14.400000px;}
.fsb_c01238{font-size:34.560000px;}
.fsc_c01238{font-size:37.440000px;}
.fse_c01238{font-size:43.200000px;}
.fs9_c01238{font-size:46.080000px;}
.fs2_c01238{font-size:48.960000px;}
.fs1_c01238{font-size:51.840000px;}
.fs8_c01238{font-size:54.720000px;}
.fs6_c01238{font-size:57.600000px;}
.fs3_c01238{font-size:60.480000px;}
.fs5_c01238{font-size:63.360000px;}
.fs4_c01238{font-size:66.240000px;}
.fs7_c01238{font-size:69.120000px;}
.fsa_c01238{font-size:72.000000px;}
.fs0_c01238{font-size:74.880000px;}
.y0_c01238{bottom:0.000000px;}
.y73_c01238{bottom:93.600000px;}
.y75_c01238{bottom:94.320000px;}
.y74_c01238{bottom:95.040000px;}
.y72_c01238{bottom:96.480000px;}
.y70_c01238{bottom:97.200000px;}
.y71_c01238{bottom:97.920000px;}
.y6e_c01238{bottom:100.800000px;}
.y6f_c01238{bottom:104.400000px;}
.y6d_c01238{bottom:135.360000px;}
.y6c_c01238{bottom:136.080000px;}
.y6b_c01238{bottom:136.800000px;}
.y6a_c01238{bottom:138.960000px;}
.y69_c01238{bottom:141.120000px;}
.y68_c01238{bottom:143.280000px;}
.y66_c01238{bottom:179.280000px;}
.y67_c01238{bottom:180.720000px;}
.y64_c01238{bottom:181.440000px;}
.y65_c01238{bottom:182.160000px;}
.y63_c01238{bottom:185.760000px;}
.y5f_c01238{bottom:221.760000px;}
.y62_c01238{bottom:222.480000px;}
.y61_c01238{bottom:223.200000px;}
.y5d_c01238{bottom:223.920000px;}
.y60_c01238{bottom:224.640000px;}
.y5e_c01238{bottom:225.360000px;}
.y5c_c01238{bottom:228.240000px;}
.y5b_c01238{bottom:264.240000px;}
.y59_c01238{bottom:264.960000px;}
.y5a_c01238{bottom:265.680000px;}
.y57_c01238{bottom:266.400000px;}
.y58_c01238{bottom:267.840000px;}
.y56_c01238{bottom:271.440000px;}
.y53_c01238{bottom:308.160000px;}
.y54_c01238{bottom:308.880000px;}
.y55_c01238{bottom:311.040000px;}
.y52_c01238{bottom:311.760000px;}
.y50_c01238{bottom:313.920000px;}
.y51_c01238{bottom:316.800000px;}
.y4f_c01238{bottom:351.360000px;}
.y4e_c01238{bottom:352.080000px;}
.y4d_c01238{bottom:356.400000px;}
.y4b_c01238{bottom:394.560000px;}
.y4c_c01238{bottom:395.280000px;}
.y48_c01238{bottom:396.720000px;}
.y4a_c01238{bottom:397.440000px;}
.y47_c01238{bottom:398.160000px;}
.y49_c01238{bottom:398.880000px;}
.y44_c01238{bottom:437.040000px;}
.y41_c01238{bottom:437.760000px;}
.y46_c01238{bottom:438.480000px;}
.y45_c01238{bottom:439.200000px;}
.y43_c01238{bottom:440.640000px;}
.y42_c01238{bottom:441.360000px;}
.y40_c01238{bottom:442.080000px;}
.y3b_c01238{bottom:480.240000px;}
.y3d_c01238{bottom:480.960000px;}
.y39_c01238{bottom:481.680000px;}
.y3e_c01238{bottom:482.400000px;}
.y3f_c01238{bottom:483.120000px;}
.y3c_c01238{bottom:483.840000px;}
.y38_c01238{bottom:484.560000px;}
.y3a_c01238{bottom:485.280000px;}
.y34_c01238{bottom:524.880000px;}
.y36_c01238{bottom:525.600000px;}
.y37_c01238{bottom:526.320000px;}
.y33_c01238{bottom:527.040000px;}
.y35_c01238{bottom:527.760000px;}
.y2f_c01238{bottom:567.360000px;}
.y31_c01238{bottom:568.080000px;}
.y30_c01238{bottom:568.800000px;}
.y2d_c01238{bottom:569.520000px;}
.y32_c01238{bottom:570.240000px;}
.y2e_c01238{bottom:570.960000px;}
.y2a_c01238{bottom:610.560000px;}
.y2b_c01238{bottom:611.280000px;}
.y28_c01238{bottom:612.720000px;}
.y2c_c01238{bottom:613.440000px;}
.y29_c01238{bottom:614.160000px;}
.y26_c01238{bottom:655.200000px;}
.y27_c01238{bottom:656.640000px;}
.y25_c01238{bottom:657.360000px;}
.y24_c01238{bottom:699.840000px;}
.y23_c01238{bottom:700.560000px;}
.y22_c01238{bottom:729.360000px;}
.y20_c01238{bottom:730.080000px;}
.y21_c01238{bottom:732.240000px;}
.y1f_c01238{bottom:765.360000px;}
.y1a_c01238{bottom:771.840000px;}
.y1b_c01238{bottom:772.560000px;}
.y1e_c01238{bottom:773.280000px;}
.y1d_c01238{bottom:774.720000px;}
.y1c_c01238{bottom:775.440000px;}
.y16_c01238{bottom:814.320000px;}
.y15_c01238{bottom:815.040000px;}
.y19_c01238{bottom:816.480000px;}
.y17_c01238{bottom:817.920000px;}
.y18_c01238{bottom:818.640000px;}
.y10_c01238{bottom:856.800000px;}
.yf_c01238{bottom:857.520000px;}
.y13_c01238{bottom:858.240000px;}
.y11_c01238{bottom:858.960000px;}
.y12_c01238{bottom:859.680000px;}
.y14_c01238{bottom:861.120000px;}
.ye_c01238{bottom:901.440000px;}
.yd_c01238{bottom:903.600000px;}
.y9_c01238{bottom:943.200000px;}
.ya_c01238{bottom:943.920000px;}
.yc_c01238{bottom:945.360000px;}
.yb_c01238{bottom:947.520000px;}
.y7_c01238{bottom:987.840000px;}
.y6_c01238{bottom:989.280000px;}
.y8_c01238{bottom:990.000000px;}
.y2_c01238{bottom:1032.480000px;}
.y3_c01238{bottom:1033.200000px;}
.y4_c01238{bottom:1033.920000px;}
.y5_c01238{bottom:1034.640000px;}
.y1_c01238{bottom:1098.720000px;}
.h13_c01238{height:10.366875px;}
.h11_c01238{height:12.958594px;}
.he_c01238{height:31.100625px;}
.hf_c01238{height:33.692344px;}
.h12_c01238{height:38.875781px;}
.hb_c01238{height:41.467500px;}
.h4_c01238{height:44.059219px;}
.h3_c01238{height:46.650937px;}
.ha_c01238{height:49.242656px;}
.h8_c01238{height:51.834375px;}
.h5_c01238{height:54.426094px;}
.h7_c01238{height:57.017812px;}
.hd_c01238{height:57.594375px;}
.h6_c01238{height:59.609531px;}
.h10_c01238{height:60.186094px;}
.h9_c01238{height:62.201250px;}
.hc_c01238{height:64.792969px;}
.h2_c01238{height:67.384687px;}
.h1_c01238{height:1162.500000px;}
.h0_c01238{height:1162.800000px;}
.w0_c01238{width:760.320000px;}
.w1_c01238{width:760.500000px;}
.x0_c01238{left:0.000000px;}
.x9_c01238{left:51.120000px;}
.x2_c01238{left:99.360000px;}
.x2f_c01238{left:109.440000px;}
.x7_c01238{left:120.960000px;}
.x25_c01238{left:128.160000px;}
.x13_c01238{left:129.600000px;}
.xa_c01238{left:131.040000px;}
.x12_c01238{left:162.720000px;}
.x1e_c01238{left:170.640000px;}
.x3_c01238{left:172.800000px;}
.x1d_c01238{left:182.160000px;}
.x8_c01238{left:192.960000px;}
.x4_c01238{left:215.280000px;}
.x21_c01238{left:225.360000px;}
.x23_c01238{left:236.160000px;}
.x1f_c01238{left:248.400000px;}
.x26_c01238{left:257.040000px;}
.x30_c01238{left:259.200000px;}
.x1a_c01238{left:268.560000px;}
.xb_c01238{left:270.000000px;}
.x24_c01238{left:278.640000px;}
.x5_c01238{left:280.800000px;}
.x34_c01238{left:311.040000px;}
.x6_c01238{left:313.200000px;}
.x27_c01238{left:319.680000px;}
.x2d_c01238{left:322.560000px;}
.xc_c01238{left:324.000000px;}
.x20_c01238{left:333.360000px;}
.x28_c01238{left:334.800000px;}
.xd_c01238{left:367.200000px;}
.x22_c01238{left:398.880000px;}
.x29_c01238{left:408.960000px;}
.x16_c01238{left:419.760000px;}
.x1b_c01238{left:442.080000px;}
.x2c_c01238{left:452.880000px;}
.x2a_c01238{left:457.920000px;}
.x17_c01238{left:469.440000px;}
.x19_c01238{left:474.480000px;}
.x14_c01238{left:519.120000px;}
.xe_c01238{left:520.560000px;}
.x2b_c01238{left:529.920000px;}
.x32_c01238{left:550.800000px;}
.x15_c01238{left:552.240000px;}
.x31_c01238{left:605.520000px;}
.xf_c01238{left:606.960000px;}
.x33_c01238{left:637.920000px;}
.x10_c01238{left:640.080000px;}
.x1_c01238{left:641.520000px;}
.x11_c01238{left:672.480000px;}
.x2e_c01238{left:681.120000px;}
.x18_c01238{left:682.560000px;}
.x1c_c01238{left:702.720000px;}
@media print{
.v3_c01238{vertical-align:-10.240000pt;}
.v2_c01238{vertical-align:-7.680000pt;}
.v0_c01238{vertical-align:0.000000pt;}
.v1_c01238{vertical-align:5.120000pt;}
.ls0_c01238{letter-spacing:0.000000pt;}
.ws6_c01238{word-spacing:0.000000pt;}
.ws1_c01238{word-spacing:8.187003pt;}
.ws4_c01238{word-spacing:10.538667pt;}
.ws2_c01238{word-spacing:13.866667pt;}
.ws3_c01238{word-spacing:14.967467pt;}
.ws5_c01238{word-spacing:169.215898pt;}
.ws0_c01238{word-spacing:189.786667pt;}
.fsf_c01238{font-size:10.240000pt;}
.fsd_c01238{font-size:12.800000pt;}
.fsb_c01238{font-size:30.720000pt;}
.fsc_c01238{font-size:33.280000pt;}
.fse_c01238{font-size:38.400000pt;}
.fs9_c01238{font-size:40.960000pt;}
.fs2_c01238{font-size:43.520000pt;}
.fs1_c01238{font-size:46.080000pt;}
.fs8_c01238{font-size:48.640000pt;}
.fs6_c01238{font-size:51.200000pt;}
.fs3_c01238{font-size:53.760000pt;}
.fs5_c01238{font-size:56.320000pt;}
.fs4_c01238{font-size:58.880000pt;}
.fs7_c01238{font-size:61.440000pt;}
.fsa_c01238{font-size:64.000000pt;}
.fs0_c01238{font-size:66.560000pt;}
.y0_c01238{bottom:0.000000pt;}
.y73_c01238{bottom:83.200000pt;}
.y75_c01238{bottom:83.840000pt;}
.y74_c01238{bottom:84.480000pt;}
.y72_c01238{bottom:85.760000pt;}
.y70_c01238{bottom:86.400000pt;}
.y71_c01238{bottom:87.040000pt;}
.y6e_c01238{bottom:89.600000pt;}
.y6f_c01238{bottom:92.800000pt;}
.y6d_c01238{bottom:120.320000pt;}
.y6c_c01238{bottom:120.960000pt;}
.y6b_c01238{bottom:121.600000pt;}
.y6a_c01238{bottom:123.520000pt;}
.y69_c01238{bottom:125.440000pt;}
.y68_c01238{bottom:127.360000pt;}
.y66_c01238{bottom:159.360000pt;}
.y67_c01238{bottom:160.640000pt;}
.y64_c01238{bottom:161.280000pt;}
.y65_c01238{bottom:161.920000pt;}
.y63_c01238{bottom:165.120000pt;}
.y5f_c01238{bottom:197.120000pt;}
.y62_c01238{bottom:197.760000pt;}
.y61_c01238{bottom:198.400000pt;}
.y5d_c01238{bottom:199.040000pt;}
.y60_c01238{bottom:199.680000pt;}
.y5e_c01238{bottom:200.320000pt;}
.y5c_c01238{bottom:202.880000pt;}
.y5b_c01238{bottom:234.880000pt;}
.y59_c01238{bottom:235.520000pt;}
.y5a_c01238{bottom:236.160000pt;}
.y57_c01238{bottom:236.800000pt;}
.y58_c01238{bottom:238.080000pt;}
.y56_c01238{bottom:241.280000pt;}
.y53_c01238{bottom:273.920000pt;}
.y54_c01238{bottom:274.560000pt;}
.y55_c01238{bottom:276.480000pt;}
.y52_c01238{bottom:277.120000pt;}
.y50_c01238{bottom:279.040000pt;}
.y51_c01238{bottom:281.600000pt;}
.y4f_c01238{bottom:312.320000pt;}
.y4e_c01238{bottom:312.960000pt;}
.y4d_c01238{bottom:316.800000pt;}
.y4b_c01238{bottom:350.720000pt;}
.y4c_c01238{bottom:351.360000pt;}
.y48_c01238{bottom:352.640000pt;}
.y4a_c01238{bottom:353.280000pt;}
.y47_c01238{bottom:353.920000pt;}
.y49_c01238{bottom:354.560000pt;}
.y44_c01238{bottom:388.480000pt;}
.y41_c01238{bottom:389.120000pt;}
.y46_c01238{bottom:389.760000pt;}
.y45_c01238{bottom:390.400000pt;}
.y43_c01238{bottom:391.680000pt;}
.y42_c01238{bottom:392.320000pt;}
.y40_c01238{bottom:392.960000pt;}
.y3b_c01238{bottom:426.880000pt;}
.y3d_c01238{bottom:427.520000pt;}
.y39_c01238{bottom:428.160000pt;}
.y3e_c01238{bottom:428.800000pt;}
.y3f_c01238{bottom:429.440000pt;}
.y3c_c01238{bottom:430.080000pt;}
.y38_c01238{bottom:430.720000pt;}
.y3a_c01238{bottom:431.360000pt;}
.y34_c01238{bottom:466.560000pt;}
.y36_c01238{bottom:467.200000pt;}
.y37_c01238{bottom:467.840000pt;}
.y33_c01238{bottom:468.480000pt;}
.y35_c01238{bottom:469.120000pt;}
.y2f_c01238{bottom:504.320000pt;}
.y31_c01238{bottom:504.960000pt;}
.y30_c01238{bottom:505.600000pt;}
.y2d_c01238{bottom:506.240000pt;}
.y32_c01238{bottom:506.880000pt;}
.y2e_c01238{bottom:507.520000pt;}
.y2a_c01238{bottom:542.720000pt;}
.y2b_c01238{bottom:543.360000pt;}
.y28_c01238{bottom:544.640000pt;}
.y2c_c01238{bottom:545.280000pt;}
.y29_c01238{bottom:545.920000pt;}
.y26_c01238{bottom:582.400000pt;}
.y27_c01238{bottom:583.680000pt;}
.y25_c01238{bottom:584.320000pt;}
.y24_c01238{bottom:622.080000pt;}
.y23_c01238{bottom:622.720000pt;}
.y22_c01238{bottom:648.320000pt;}
.y20_c01238{bottom:648.960000pt;}
.y21_c01238{bottom:650.880000pt;}
.y1f_c01238{bottom:680.320000pt;}
.y1a_c01238{bottom:686.080000pt;}
.y1b_c01238{bottom:686.720000pt;}
.y1e_c01238{bottom:687.360000pt;}
.y1d_c01238{bottom:688.640000pt;}
.y1c_c01238{bottom:689.280000pt;}
.y16_c01238{bottom:723.840000pt;}
.y15_c01238{bottom:724.480000pt;}
.y19_c01238{bottom:725.760000pt;}
.y17_c01238{bottom:727.040000pt;}
.y18_c01238{bottom:727.680000pt;}
.y10_c01238{bottom:761.600000pt;}
.yf_c01238{bottom:762.240000pt;}
.y13_c01238{bottom:762.880000pt;}
.y11_c01238{bottom:763.520000pt;}
.y12_c01238{bottom:764.160000pt;}
.y14_c01238{bottom:765.440000pt;}
.ye_c01238{bottom:801.280000pt;}
.yd_c01238{bottom:803.200000pt;}
.y9_c01238{bottom:838.400000pt;}
.ya_c01238{bottom:839.040000pt;}
.yc_c01238{bottom:840.320000pt;}
.yb_c01238{bottom:842.240000pt;}
.y7_c01238{bottom:878.080000pt;}
.y6_c01238{bottom:879.360000pt;}
.y8_c01238{bottom:880.000000pt;}
.y2_c01238{bottom:917.760000pt;}
.y3_c01238{bottom:918.400000pt;}
.y4_c01238{bottom:919.040000pt;}
.y5_c01238{bottom:919.680000pt;}
.y1_c01238{bottom:976.640000pt;}
.h13_c01238{height:9.215000pt;}
.h11_c01238{height:11.518750pt;}
.he_c01238{height:27.645000pt;}
.hf_c01238{height:29.948750pt;}
.h12_c01238{height:34.556250pt;}
.hb_c01238{height:36.860000pt;}
.h4_c01238{height:39.163750pt;}
.h3_c01238{height:41.467500pt;}
.ha_c01238{height:43.771250pt;}
.h8_c01238{height:46.075000pt;}
.h5_c01238{height:48.378750pt;}
.h7_c01238{height:50.682500pt;}
.hd_c01238{height:51.195000pt;}
.h6_c01238{height:52.986250pt;}
.h10_c01238{height:53.498750pt;}
.h9_c01238{height:55.290000pt;}
.hc_c01238{height:57.593750pt;}
.h2_c01238{height:59.897500pt;}
.h1_c01238{height:1033.333333pt;}
.h0_c01238{height:1033.600000pt;}
.w0_c01238{width:675.840000pt;}
.w1_c01238{width:676.000000pt;}
.x0_c01238{left:0.000000pt;}
.x9_c01238{left:45.440000pt;}
.x2_c01238{left:88.320000pt;}
.x2f_c01238{left:97.280000pt;}
.x7_c01238{left:107.520000pt;}
.x25_c01238{left:113.920000pt;}
.x13_c01238{left:115.200000pt;}
.xa_c01238{left:116.480000pt;}
.x12_c01238{left:144.640000pt;}
.x1e_c01238{left:151.680000pt;}
.x3_c01238{left:153.600000pt;}
.x1d_c01238{left:161.920000pt;}
.x8_c01238{left:171.520000pt;}
.x4_c01238{left:191.360000pt;}
.x21_c01238{left:200.320000pt;}
.x23_c01238{left:209.920000pt;}
.x1f_c01238{left:220.800000pt;}
.x26_c01238{left:228.480000pt;}
.x30_c01238{left:230.400000pt;}
.x1a_c01238{left:238.720000pt;}
.xb_c01238{left:240.000000pt;}
.x24_c01238{left:247.680000pt;}
.x5_c01238{left:249.600000pt;}
.x34_c01238{left:276.480000pt;}
.x6_c01238{left:278.400000pt;}
.x27_c01238{left:284.160000pt;}
.x2d_c01238{left:286.720000pt;}
.xc_c01238{left:288.000000pt;}
.x20_c01238{left:296.320000pt;}
.x28_c01238{left:297.600000pt;}
.xd_c01238{left:326.400000pt;}
.x22_c01238{left:354.560000pt;}
.x29_c01238{left:363.520000pt;}
.x16_c01238{left:373.120000pt;}
.x1b_c01238{left:392.960000pt;}
.x2c_c01238{left:402.560000pt;}
.x2a_c01238{left:407.040000pt;}
.x17_c01238{left:417.280000pt;}
.x19_c01238{left:421.760000pt;}
.x14_c01238{left:461.440000pt;}
.xe_c01238{left:462.720000pt;}
.x2b_c01238{left:471.040000pt;}
.x32_c01238{left:489.600000pt;}
.x15_c01238{left:490.880000pt;}
.x31_c01238{left:538.240000pt;}
.xf_c01238{left:539.520000pt;}
.x33_c01238{left:567.040000pt;}
.x10_c01238{left:568.960000pt;}
.x1_c01238{left:570.240000pt;}
.x11_c01238{left:597.760000pt;}
.x2e_c01238{left:605.440000pt;}
.x18_c01238{left:606.720000pt;}
.x1c_c01238{left:624.640000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_19ef2037b59fc4c6860b5e26.woff2')format("woff");}.ff1_c01239{font-family:ff1_c01239;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m36_c01239{transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);}
.m4b_c01239{transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);}
.m55_c01239{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.m44_c01239{transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);}
.m4c_c01239{transform:matrix(0.225975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225975,0.000000,0.000000,0.250000,0,0);}
.m2a_c01239{transform:matrix(0.232825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232825,0.000000,0.000000,0.250000,0,0);}
.m39_c01239{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m33_c01239{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m49_c01239{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m47_c01239{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01239{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m50_c01239{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_c01239{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m11_c01239{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);}
.m54_c01239{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_c01239{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m22_c01239{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m18_c01239{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);}
.m37_c01239{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);}
.m20_c01239{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m48_c01239{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mc_c01239{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m16_c01239{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01239{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m12_c01239{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01239{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01239{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01239{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m10_c01239{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01239{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m27_c01239{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m17_c01239{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m15_c01239{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m6_c01239{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01239{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m0_c01239{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m4_c01239{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m5_c01239{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m53_c01239{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m14_c01239{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);}
.m41_c01239{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m40_c01239{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m9_c01239{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01239{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);}
.m42_c01239{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01239{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m19_c01239{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m7_c01239{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m1_c01239{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01239{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m21_c01239{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);}
.m4e_c01239{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m23_c01239{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_c01239{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.ma_c01239{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);}
.m4f_c01239{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m43_c01239{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);}
.m51_c01239{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m2_c01239{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m38_c01239{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);}
.m34_c01239{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);}
.m26_c01239{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01239{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m8_c01239{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01239{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);}
.m52_c01239{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);}
.m46_c01239{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);}
.m31_c01239{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m32_c01239{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);}
.m3b_c01239{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m35_c01239{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m25_c01239{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);}
.m30_c01239{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01239{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m3_c01239{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m45_c01239{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.me_c01239{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m24_c01239{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);}
.m2b_c01239{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01239{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);}
.m2c_c01239{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01239{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.m29_c01239{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.mb_c01239{transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);}
.m28_c01239{transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01239{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.v0_c01239{vertical-align:0.000000px;}
.v1_c01239{vertical-align:8.640000px;}
.ls1_c01239{letter-spacing:0.000000px;}
.ls0_c01239{letter-spacing:45.576960px;}
.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;}
.fc0_c01239{color:transparent;}
.fsf_c01239{font-size:11.520000px;}
.fs11_c01239{font-size:17.280000px;}
.fsa_c01239{font-size:31.680000px;}
.fsd_c01239{font-size:34.560000px;}
.fse_c01239{font-size:37.440000px;}
.fs10_c01239{font-size:43.200000px;}
.fs5_c01239{font-size:46.080000px;}
.fs3_c01239{font-size:48.960000px;}
.fs2_c01239{font-size:51.840000px;}
.fs4_c01239{font-size:54.720000px;}
.fs9_c01239{font-size:57.600000px;}
.fs0_c01239{font-size:60.480000px;}
.fs1_c01239{font-size:63.360000px;}
.fs8_c01239{font-size:66.240000px;}
.fsc_c01239{font-size:69.120000px;}
.fs7_c01239{font-size:72.000000px;}
.fs6_c01239{font-size:74.880000px;}
.fsb_c01239{font-size:77.760000px;}
.y0_c01239{bottom:0.000000px;}
.y5e_c01239{bottom:155.520000px;}
.y90_c01239{bottom:170.640000px;}
.y81_c01239{bottom:171.360000px;}
.y93_c01239{bottom:172.080000px;}
.y8f_c01239{bottom:172.800000px;}
.y5d_c01239{bottom:187.920000px;}
.y5c_c01239{bottom:188.640000px;}
.y80_c01239{bottom:191.520000px;}
.y7e_c01239{bottom:192.240000px;}
.y7f_c01239{bottom:193.680000px;}
.y8e_c01239{bottom:195.120000px;}
.y87_c01239{bottom:195.840000px;}
.y7b_c01239{bottom:213.120000px;}
.y8d_c01239{bottom:213.840000px;}
.y7c_c01239{bottom:215.280000px;}
.y86_c01239{bottom:216.000000px;}
.y7d_c01239{bottom:216.720000px;}
.y5b_c01239{bottom:217.440000px;}
.y5a_c01239{bottom:218.160000px;}
.y88_c01239{bottom:218.880000px;}
.y92_c01239{bottom:234.720000px;}
.y79_c01239{bottom:235.440000px;}
.y85_c01239{bottom:236.880000px;}
.y78_c01239{bottom:237.600000px;}
.y7a_c01239{bottom:238.320000px;}
.y59_c01239{bottom:249.840000px;}
.y76_c01239{bottom:257.040000px;}
.y84_c01239{bottom:258.480000px;}
.y77_c01239{bottom:259.200000px;}
.y8c_c01239{bottom:259.920000px;}
.y74_c01239{bottom:278.640000px;}
.y75_c01239{bottom:279.360000px;}
.y82_c01239{bottom:280.080000px;}
.y89_c01239{bottom:281.520000px;}
.y61_c01239{bottom:282.240000px;}
.y58_c01239{bottom:283.680000px;}
.y91_c01239{bottom:300.240000px;}
.y73_c01239{bottom:300.960000px;}
.y83_c01239{bottom:311.760000px;}
.y63_c01239{bottom:312.480000px;}
.y62_c01239{bottom:313.200000px;}
.y57_c01239{bottom:313.920000px;}
.y60_c01239{bottom:315.360000px;}
.y5f_c01239{bottom:316.080000px;}
.y56_c01239{bottom:318.960000px;}
.y8b_c01239{bottom:321.840000px;}
.y72_c01239{bottom:322.560000px;}
.y8a_c01239{bottom:325.440000px;}
.y71_c01239{bottom:354.960000px;}
.y55_c01239{bottom:355.680000px;}
.y70_c01239{bottom:356.400000px;}
.y54_c01239{bottom:357.120000px;}
.y53_c01239{bottom:365.040000px;}
.y4e_c01239{bottom:366.480000px;}
.y51_c01239{bottom:368.640000px;}
.y4d_c01239{bottom:371.520000px;}
.y52_c01239{bottom:372.240000px;}
.y4f_c01239{bottom:375.840000px;}
.y50_c01239{bottom:377.280000px;}
.y4c_c01239{bottom:419.040000px;}
.y6e_c01239{bottom:419.760000px;}
.y6f_c01239{bottom:421.200000px;}
.y66_c01239{bottom:421.920000px;}
.y49_c01239{bottom:429.840000px;}
.y4a_c01239{bottom:430.560000px;}
.y47_c01239{bottom:431.280000px;}
.y48_c01239{bottom:432.000000px;}
.y46_c01239{bottom:432.720000px;}
.y45_c01239{bottom:433.440000px;}
.y6d_c01239{bottom:442.080000px;}
.y4b_c01239{bottom:442.800000px;}
.y44_c01239{bottom:481.680000px;}
.y6c_c01239{bottom:483.840000px;}
.y6b_c01239{bottom:484.560000px;}
.y65_c01239{bottom:485.280000px;}
.y43_c01239{bottom:486.000000px;}
.y42_c01239{bottom:524.160000px;}
.y6a_c01239{bottom:525.600000px;}
.y41_c01239{bottom:527.040000px;}
.y64_c01239{bottom:528.480000px;}
.y69_c01239{bottom:529.200000px;}
.y3d_c01239{bottom:566.640000px;}
.y40_c01239{bottom:568.080000px;}
.y67_c01239{bottom:569.520000px;}
.y3c_c01239{bottom:570.240000px;}
.y3e_c01239{bottom:570.960000px;}
.y3f_c01239{bottom:571.680000px;}
.y68_c01239{bottom:572.400000px;}
.y35_c01239{bottom:609.840000px;}
.y36_c01239{bottom:610.560000px;}
.y3a_c01239{bottom:612.000000px;}
.y39_c01239{bottom:612.720000px;}
.y34_c01239{bottom:613.440000px;}
.y3b_c01239{bottom:614.880000px;}
.y31_c01239{bottom:654.480000px;}
.y33_c01239{bottom:655.200000px;}
.y30_c01239{bottom:655.920000px;}
.y37_c01239{bottom:656.640000px;}
.y32_c01239{bottom:657.360000px;}
.y38_c01239{bottom:658.800000px;}
.y2c_c01239{bottom:696.960000px;}
.y2b_c01239{bottom:698.400000px;}
.y2d_c01239{bottom:699.120000px;}
.y2e_c01239{bottom:699.840000px;}
.y2f_c01239{bottom:700.560000px;}
.y16_c01239{bottom:740.160000px;}
.y15_c01239{bottom:741.600000px;}
.y28_c01239{bottom:742.320000px;}
.y1e_c01239{bottom:743.040000px;}
.y2a_c01239{bottom:744.480000px;}
.y29_c01239{bottom:745.200000px;}
.y14_c01239{bottom:783.360000px;}
.y1d_c01239{bottom:786.240000px;}
.y26_c01239{bottom:786.960000px;}
.y1c_c01239{bottom:788.400000px;}
.y27_c01239{bottom:789.120000px;}
.y13_c01239{bottom:825.840000px;}
.y12_c01239{bottom:826.560000px;}
.y1b_c01239{bottom:829.440000px;}
.y1a_c01239{bottom:830.880000px;}
.y24_c01239{bottom:831.600000px;}
.y25_c01239{bottom:832.320000px;}
.y11_c01239{bottom:869.040000px;}
.y10_c01239{bottom:869.760000px;}
.y19_c01239{bottom:872.640000px;}
.y23_c01239{bottom:874.800000px;}
.yd_c01239{bottom:911.520000px;}
.yb_c01239{bottom:912.960000px;}
.ye_c01239{bottom:913.680000px;}
.yc_c01239{bottom:915.120000px;}
.y22_c01239{bottom:915.840000px;}
.yf_c01239{bottom:917.280000px;}
.y7_c01239{bottom:956.160000px;}
.y8_c01239{bottom:956.880000px;}
.y9_c01239{bottom:959.040000px;}
.ya_c01239{bottom:960.480000px;}
.y5_c01239{bottom:999.360000px;}
.y18_c01239{bottom:1001.520000px;}
.y6_c01239{bottom:1002.240000px;}
.y21_c01239{bottom:1003.680000px;}
.y1_c01239{bottom:1041.120000px;}
.y2_c01239{bottom:1042.560000px;}
.y17_c01239{bottom:1044.720000px;}
.y3_c01239{bottom:1045.440000px;}
.y4_c01239{bottom:1046.160000px;}
.y20_c01239{bottom:1046.880000px;}
.y1f_c01239{bottom:1098.720000px;}
.h12_c01239{height:10.366875px;}
.h14_c01239{height:15.550313px;}
.hc_c01239{height:28.508906px;}
.h10_c01239{height:31.100625px;}
.h11_c01239{height:33.692344px;}
.h13_c01239{height:38.875781px;}
.h7_c01239{height:41.467500px;}
.h5_c01239{height:44.059219px;}
.h4_c01239{height:46.650937px;}
.h6_c01239{height:49.242656px;}
.hb_c01239{height:51.834375px;}
.h2_c01239{height:54.426094px;}
.hd_c01239{height:55.290937px;}
.h3_c01239{height:57.017812px;}
.ha_c01239{height:59.609531px;}
.hf_c01239{height:62.201250px;}
.h9_c01239{height:64.792969px;}
.h8_c01239{height:67.384687px;}
.he_c01239{height:69.976406px;}
.h1_c01239{height:1166.250000px;}
.h0_c01239{height:1166.400000px;}
.w1_c01239{width:765.000000px;}
.w0_c01239{width:765.360000px;}
.x0_c01239{left:0.000000px;}
.x1_c01239{left:51.840000px;}
.x1b_c01239{left:53.280000px;}
.x29_c01239{left:62.640000px;}
.x2a_c01239{left:81.360000px;}
.x2e_c01239{left:82.800000px;}
.x2d_c01239{left:102.240000px;}
.x1f_c01239{left:120.240000px;}
.x8_c01239{left:129.600000px;}
.x2_c01239{left:131.040000px;}
.x26_c01239{left:143.280000px;}
.x9_c01239{left:151.200000px;}
.x30_c01239{left:152.640000px;}
.x31_c01239{left:154.080000px;}
.x2b_c01239{left:173.520000px;}
.x2f_c01239{left:183.600000px;}
.x40_c01239{left:185.040000px;}
.x20_c01239{left:194.400000px;}
.x3_c01239{left:215.280000px;}
.x1c_c01239{left:226.080000px;}
.x27_c01239{left:228.240000px;}
.xa_c01239{left:237.600000px;}
.x2c_c01239{left:239.040000px;}
.x28_c01239{left:258.480000px;}
.x17_c01239{left:259.920000px;}
.x6_c01239{left:270.000000px;}
.x3f_c01239{left:272.160000px;}
.x4_c01239{left:280.080000px;}
.x32_c01239{left:282.240000px;}
.x33_c01239{left:303.120000px;}
.x15_c01239{left:313.200000px;}
.x21_c01239{left:314.640000px;}
.xb_c01239{left:323.280000px;}
.x3c_c01239{left:326.160000px;}
.x5_c01239{left:334.800000px;}
.x22_c01239{left:336.960000px;}
.x3e_c01239{left:347.760000px;}
.x3a_c01239{left:358.560000px;}
.x1d_c01239{left:367.200000px;}
.x7_c01239{left:378.720000px;}
.x23_c01239{left:380.160000px;}
.x24_c01239{left:399.600000px;}
.x1e_c01239{left:410.400000px;}
.x3d_c01239{left:423.360000px;}
.x3b_c01239{left:434.160000px;}
.x25_c01239{left:466.560000px;}
.x38_c01239{left:498.240000px;}
.xc_c01239{left:519.840000px;}
.xe_c01239{left:529.920000px;}
.x16_c01239{left:531.360000px;}
.xd_c01239{left:552.240000px;}
.x41_c01239{left:553.680000px;}
.x1a_c01239{left:574.560000px;}
.x43_c01239{left:576.000000px;}
.x34_c01239{left:585.360000px;}
.x42_c01239{left:586.800000px;}
.x10_c01239{left:606.960000px;}
.x36_c01239{left:608.400000px;}
.x11_c01239{left:639.360000px;}
.x14_c01239{left:640.800000px;}
.xf_c01239{left:643.680000px;}
.x35_c01239{left:650.880000px;}
.x44_c01239{left:652.320000px;}
.x13_c01239{left:672.480000px;}
.x12_c01239{left:682.560000px;}
.x18_c01239{left:684.000000px;}
.x39_c01239{left:685.440000px;}
.x37_c01239{left:695.520000px;}
.x19_c01239{left:704.160000px;}
@media print{
.v0_c01239{vertical-align:0.000000pt;}
.v1_c01239{vertical-align:7.680000pt;}
.ls1_c01239{letter-spacing:0.000000pt;}
.ls0_c01239{letter-spacing:40.512853pt;}
.ws0_c01239{word-spacing:0.000000pt;}
.fsf_c01239{font-size:10.240000pt;}
.fs11_c01239{font-size:15.360000pt;}
.fsa_c01239{font-size:28.160000pt;}
.fsd_c01239{font-size:30.720000pt;}
.fse_c01239{font-size:33.280000pt;}
.fs10_c01239{font-size:38.400000pt;}
.fs5_c01239{font-size:40.960000pt;}
.fs3_c01239{font-size:43.520000pt;}
.fs2_c01239{font-size:46.080000pt;}
.fs4_c01239{font-size:48.640000pt;}
.fs9_c01239{font-size:51.200000pt;}
.fs0_c01239{font-size:53.760000pt;}
.fs1_c01239{font-size:56.320000pt;}
.fs8_c01239{font-size:58.880000pt;}
.fsc_c01239{font-size:61.440000pt;}
.fs7_c01239{font-size:64.000000pt;}
.fs6_c01239{font-size:66.560000pt;}
.fsb_c01239{font-size:69.120000pt;}
.y0_c01239{bottom:0.000000pt;}
.y5e_c01239{bottom:138.240000pt;}
.y90_c01239{bottom:151.680000pt;}
.y81_c01239{bottom:152.320000pt;}
.y93_c01239{bottom:152.960000pt;}
.y8f_c01239{bottom:153.600000pt;}
.y5d_c01239{bottom:167.040000pt;}
.y5c_c01239{bottom:167.680000pt;}
.y80_c01239{bottom:170.240000pt;}
.y7e_c01239{bottom:170.880000pt;}
.y7f_c01239{bottom:172.160000pt;}
.y8e_c01239{bottom:173.440000pt;}
.y87_c01239{bottom:174.080000pt;}
.y7b_c01239{bottom:189.440000pt;}
.y8d_c01239{bottom:190.080000pt;}
.y7c_c01239{bottom:191.360000pt;}
.y86_c01239{bottom:192.000000pt;}
.y7d_c01239{bottom:192.640000pt;}
.y5b_c01239{bottom:193.280000pt;}
.y5a_c01239{bottom:193.920000pt;}
.y88_c01239{bottom:194.560000pt;}
.y92_c01239{bottom:208.640000pt;}
.y79_c01239{bottom:209.280000pt;}
.y85_c01239{bottom:210.560000pt;}
.y78_c01239{bottom:211.200000pt;}
.y7a_c01239{bottom:211.840000pt;}
.y59_c01239{bottom:222.080000pt;}
.y76_c01239{bottom:228.480000pt;}
.y84_c01239{bottom:229.760000pt;}
.y77_c01239{bottom:230.400000pt;}
.y8c_c01239{bottom:231.040000pt;}
.y74_c01239{bottom:247.680000pt;}
.y75_c01239{bottom:248.320000pt;}
.y82_c01239{bottom:248.960000pt;}
.y89_c01239{bottom:250.240000pt;}
.y61_c01239{bottom:250.880000pt;}
.y58_c01239{bottom:252.160000pt;}
.y91_c01239{bottom:266.880000pt;}
.y73_c01239{bottom:267.520000pt;}
.y83_c01239{bottom:277.120000pt;}
.y63_c01239{bottom:277.760000pt;}
.y62_c01239{bottom:278.400000pt;}
.y57_c01239{bottom:279.040000pt;}
.y60_c01239{bottom:280.320000pt;}
.y5f_c01239{bottom:280.960000pt;}
.y56_c01239{bottom:283.520000pt;}
.y8b_c01239{bottom:286.080000pt;}
.y72_c01239{bottom:286.720000pt;}
.y8a_c01239{bottom:289.280000pt;}
.y71_c01239{bottom:315.520000pt;}
.y55_c01239{bottom:316.160000pt;}
.y70_c01239{bottom:316.800000pt;}
.y54_c01239{bottom:317.440000pt;}
.y53_c01239{bottom:324.480000pt;}
.y4e_c01239{bottom:325.760000pt;}
.y51_c01239{bottom:327.680000pt;}
.y4d_c01239{bottom:330.240000pt;}
.y52_c01239{bottom:330.880000pt;}
.y4f_c01239{bottom:334.080000pt;}
.y50_c01239{bottom:335.360000pt;}
.y4c_c01239{bottom:372.480000pt;}
.y6e_c01239{bottom:373.120000pt;}
.y6f_c01239{bottom:374.400000pt;}
.y66_c01239{bottom:375.040000pt;}
.y49_c01239{bottom:382.080000pt;}
.y4a_c01239{bottom:382.720000pt;}
.y47_c01239{bottom:383.360000pt;}
.y48_c01239{bottom:384.000000pt;}
.y46_c01239{bottom:384.640000pt;}
.y45_c01239{bottom:385.280000pt;}
.y6d_c01239{bottom:392.960000pt;}
.y4b_c01239{bottom:393.600000pt;}
.y44_c01239{bottom:428.160000pt;}
.y6c_c01239{bottom:430.080000pt;}
.y6b_c01239{bottom:430.720000pt;}
.y65_c01239{bottom:431.360000pt;}
.y43_c01239{bottom:432.000000pt;}
.y42_c01239{bottom:465.920000pt;}
.y6a_c01239{bottom:467.200000pt;}
.y41_c01239{bottom:468.480000pt;}
.y64_c01239{bottom:469.760000pt;}
.y69_c01239{bottom:470.400000pt;}
.y3d_c01239{bottom:503.680000pt;}
.y40_c01239{bottom:504.960000pt;}
.y67_c01239{bottom:506.240000pt;}
.y3c_c01239{bottom:506.880000pt;}
.y3e_c01239{bottom:507.520000pt;}
.y3f_c01239{bottom:508.160000pt;}
.y68_c01239{bottom:508.800000pt;}
.y35_c01239{bottom:542.080000pt;}
.y36_c01239{bottom:542.720000pt;}
.y3a_c01239{bottom:544.000000pt;}
.y39_c01239{bottom:544.640000pt;}
.y34_c01239{bottom:545.280000pt;}
.y3b_c01239{bottom:546.560000pt;}
.y31_c01239{bottom:581.760000pt;}
.y33_c01239{bottom:582.400000pt;}
.y30_c01239{bottom:583.040000pt;}
.y37_c01239{bottom:583.680000pt;}
.y32_c01239{bottom:584.320000pt;}
.y38_c01239{bottom:585.600000pt;}
.y2c_c01239{bottom:619.520000pt;}
.y2b_c01239{bottom:620.800000pt;}
.y2d_c01239{bottom:621.440000pt;}
.y2e_c01239{bottom:622.080000pt;}
.y2f_c01239{bottom:622.720000pt;}
.y16_c01239{bottom:657.920000pt;}
.y15_c01239{bottom:659.200000pt;}
.y28_c01239{bottom:659.840000pt;}
.y1e_c01239{bottom:660.480000pt;}
.y2a_c01239{bottom:661.760000pt;}
.y29_c01239{bottom:662.400000pt;}
.y14_c01239{bottom:696.320000pt;}
.y1d_c01239{bottom:698.880000pt;}
.y26_c01239{bottom:699.520000pt;}
.y1c_c01239{bottom:700.800000pt;}
.y27_c01239{bottom:701.440000pt;}
.y13_c01239{bottom:734.080000pt;}
.y12_c01239{bottom:734.720000pt;}
.y1b_c01239{bottom:737.280000pt;}
.y1a_c01239{bottom:738.560000pt;}
.y24_c01239{bottom:739.200000pt;}
.y25_c01239{bottom:739.840000pt;}
.y11_c01239{bottom:772.480000pt;}
.y10_c01239{bottom:773.120000pt;}
.y19_c01239{bottom:775.680000pt;}
.y23_c01239{bottom:777.600000pt;}
.yd_c01239{bottom:810.240000pt;}
.yb_c01239{bottom:811.520000pt;}
.ye_c01239{bottom:812.160000pt;}
.yc_c01239{bottom:813.440000pt;}
.y22_c01239{bottom:814.080000pt;}
.yf_c01239{bottom:815.360000pt;}
.y7_c01239{bottom:849.920000pt;}
.y8_c01239{bottom:850.560000pt;}
.y9_c01239{bottom:852.480000pt;}
.ya_c01239{bottom:853.760000pt;}
.y5_c01239{bottom:888.320000pt;}
.y18_c01239{bottom:890.240000pt;}
.y6_c01239{bottom:890.880000pt;}
.y21_c01239{bottom:892.160000pt;}
.y1_c01239{bottom:925.440000pt;}
.y2_c01239{bottom:926.720000pt;}
.y17_c01239{bottom:928.640000pt;}
.y3_c01239{bottom:929.280000pt;}
.y4_c01239{bottom:929.920000pt;}
.y20_c01239{bottom:930.560000pt;}
.y1f_c01239{bottom:976.640000pt;}
.h12_c01239{height:9.215000pt;}
.h14_c01239{height:13.822500pt;}
.hc_c01239{height:25.341250pt;}
.h10_c01239{height:27.645000pt;}
.h11_c01239{height:29.948750pt;}
.h13_c01239{height:34.556250pt;}
.h7_c01239{height:36.860000pt;}
.h5_c01239{height:39.163750pt;}
.h4_c01239{height:41.467500pt;}
.h6_c01239{height:43.771250pt;}
.hb_c01239{height:46.075000pt;}
.h2_c01239{height:48.378750pt;}
.hd_c01239{height:49.147500pt;}
.h3_c01239{height:50.682500pt;}
.ha_c01239{height:52.986250pt;}
.hf_c01239{height:55.290000pt;}
.h9_c01239{height:57.593750pt;}
.h8_c01239{height:59.897500pt;}
.he_c01239{height:62.201250pt;}
.h1_c01239{height:1036.666667pt;}
.h0_c01239{height:1036.800000pt;}
.w1_c01239{width:680.000000pt;}
.w0_c01239{width:680.320000pt;}
.x0_c01239{left:0.000000pt;}
.x1_c01239{left:46.080000pt;}
.x1b_c01239{left:47.360000pt;}
.x29_c01239{left:55.680000pt;}
.x2a_c01239{left:72.320000pt;}
.x2e_c01239{left:73.600000pt;}
.x2d_c01239{left:90.880000pt;}
.x1f_c01239{left:106.880000pt;}
.x8_c01239{left:115.200000pt;}
.x2_c01239{left:116.480000pt;}
.x26_c01239{left:127.360000pt;}
.x9_c01239{left:134.400000pt;}
.x30_c01239{left:135.680000pt;}
.x31_c01239{left:136.960000pt;}
.x2b_c01239{left:154.240000pt;}
.x2f_c01239{left:163.200000pt;}
.x40_c01239{left:164.480000pt;}
.x20_c01239{left:172.800000pt;}
.x3_c01239{left:191.360000pt;}
.x1c_c01239{left:200.960000pt;}
.x27_c01239{left:202.880000pt;}
.xa_c01239{left:211.200000pt;}
.x2c_c01239{left:212.480000pt;}
.x28_c01239{left:229.760000pt;}
.x17_c01239{left:231.040000pt;}
.x6_c01239{left:240.000000pt;}
.x3f_c01239{left:241.920000pt;}
.x4_c01239{left:248.960000pt;}
.x32_c01239{left:250.880000pt;}
.x33_c01239{left:269.440000pt;}
.x15_c01239{left:278.400000pt;}
.x21_c01239{left:279.680000pt;}
.xb_c01239{left:287.360000pt;}
.x3c_c01239{left:289.920000pt;}
.x5_c01239{left:297.600000pt;}
.x22_c01239{left:299.520000pt;}
.x3e_c01239{left:309.120000pt;}
.x3a_c01239{left:318.720000pt;}
.x1d_c01239{left:326.400000pt;}
.x7_c01239{left:336.640000pt;}
.x23_c01239{left:337.920000pt;}
.x24_c01239{left:355.200000pt;}
.x1e_c01239{left:364.800000pt;}
.x3d_c01239{left:376.320000pt;}
.x3b_c01239{left:385.920000pt;}
.x25_c01239{left:414.720000pt;}
.x38_c01239{left:442.880000pt;}
.xc_c01239{left:462.080000pt;}
.xe_c01239{left:471.040000pt;}
.x16_c01239{left:472.320000pt;}
.xd_c01239{left:490.880000pt;}
.x41_c01239{left:492.160000pt;}
.x1a_c01239{left:510.720000pt;}
.x43_c01239{left:512.000000pt;}
.x34_c01239{left:520.320000pt;}
.x42_c01239{left:521.600000pt;}
.x10_c01239{left:539.520000pt;}
.x36_c01239{left:540.800000pt;}
.x11_c01239{left:568.320000pt;}
.x14_c01239{left:569.600000pt;}
.xf_c01239{left:572.160000pt;}
.x35_c01239{left:578.560000pt;}
.x44_c01239{left:579.840000pt;}
.x13_c01239{left:597.760000pt;}
.x12_c01239{left:606.720000pt;}
.x18_c01239{left:608.000000pt;}
.x39_c01239{left:609.280000pt;}
.x37_c01239{left:618.240000pt;}
.x19_c01239{left:625.920000pt;}
}





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

.ir_c01240:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01240{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01240;src:url('chunks/assets/font_37b369d86f386cfd975a376a.woff2')format("woff");}.ff1_c01240{font-family:ff1_c01240;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m52_c01240{transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);}
.m57_c01240{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m4c_c01240{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m5e_c01240{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m54_c01240{transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);}
.m4f_c01240{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m4d_c01240{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m41_c01240{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);}
.m56_c01240{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);}
.m5c_c01240{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);}
.m43_c01240{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_c01240{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.ma_c01240{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);}
.m63_c01240{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);}
.m48_c01240{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);}
.m2a_c01240{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);}
.m46_c01240{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m38_c01240{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);}
.m49_c01240{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01240{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);}
.m3c_c01240{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m17_c01240{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m34_c01240{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m2_c01240{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m50_c01240{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01240{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m19_c01240{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m55_c01240{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m39_c01240{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m9_c01240{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m44_c01240{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m5a_c01240{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m29_c01240{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m5f_c01240{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);}
.m24_c01240{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m58_c01240{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);}
.m3f_c01240{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01240{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);}
.m51_c01240{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m0_c01240{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);}
.m59_c01240{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m8_c01240{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);}
.m3a_c01240{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.mb_c01240{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);}
.m3b_c01240{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m53_c01240{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);}
.m5b_c01240{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);}
.m1a_c01240{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m20_c01240{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m27_c01240{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_c01240{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);}
.m4b_c01240{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_c01240{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m5_c01240{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);}
.m33_c01240{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m23_c01240{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);}
.m26_c01240{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.mc_c01240{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m37_c01240{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m13_c01240{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m5d_c01240{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m22_c01240{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.me_c01240{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);}
.m61_c01240{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);}
.m2b_c01240{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01240{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01240{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m1_c01240{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m11_c01240{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m3_c01240{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);}
.m62_c01240{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m18_c01240{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);}
.m40_c01240{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01240{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);}
.m4_c01240{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m16_c01240{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m12_c01240{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);}
.m30_c01240{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m31_c01240{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01240{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01240{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m47_c01240{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01240{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);}
.m1b_c01240{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);}
.m21_c01240{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m64_c01240{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m32_c01240{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);}
.m4a_c01240{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.md_c01240{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m15_c01240{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m14_c01240{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m36_c01240{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01240{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);}
.m7_c01240{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);}
.m28_c01240{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m35_c01240{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m6_c01240{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);}
.m25_c01240{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m65_c01240{transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01240{transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);}
.m42_c01240{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.m45_c01240{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.v2_c01240{vertical-align:-2.880000px;}
.v0_c01240{vertical-align:0.000000px;}
.v3_c01240{vertical-align:8.640000px;}
.v1_c01240{vertical-align:11.520000px;}
.ls1_c01240{letter-spacing:0.000000px;}
.ls0_c01240{letter-spacing:147.318960px;}
.sc__c01240{text-shadow:none;}
.sc0_c01240{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01240{-webkit-text-stroke:0px transparent;}
.sc0_c01240{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01240{word-spacing:-5.192400px;}
.ws3_c01240{word-spacing:0.000000px;}
.ws1_c01240{word-spacing:36.022320px;}
.ws2_c01240{word-spacing:76.399200px;}
.fc0_c01240{color:transparent;}
.fsf_c01240{font-size:8.640000px;}
.fs10_c01240{font-size:11.520000px;}
.fse_c01240{font-size:20.160000px;}
.fs11_c01240{font-size:25.920000px;}
.fs7_c01240{font-size:31.680000px;}
.fs4_c01240{font-size:34.560000px;}
.fsb_c01240{font-size:37.440000px;}
.fsd_c01240{font-size:43.200000px;}
.fs1_c01240{font-size:46.080000px;}
.fs3_c01240{font-size:48.960000px;}
.fs5_c01240{font-size:51.840000px;}
.fs8_c01240{font-size:54.720000px;}
.fs6_c01240{font-size:57.600000px;}
.fs2_c01240{font-size:60.480000px;}
.fsa_c01240{font-size:63.360000px;}
.fsc_c01240{font-size:66.240000px;}
.fs9_c01240{font-size:69.120000px;}
.fs0_c01240{font-size:74.880000px;}
.y0_c01240{bottom:0.000000px;}
.yb5_c01240{bottom:43.200000px;}
.yb3_c01240{bottom:43.920000px;}
.yb4_c01240{bottom:44.640000px;}
.yb1_c01240{bottom:46.080000px;}
.yb2_c01240{bottom:48.240000px;}
.yb0_c01240{bottom:48.960000px;}
.yaf_c01240{bottom:79.920000px;}
.yac_c01240{bottom:82.800000px;}
.yae_c01240{bottom:83.520000px;}
.yab_c01240{bottom:84.240000px;}
.yad_c01240{bottom:85.680000px;}
.yaa_c01240{bottom:86.400000px;}
.ya9_c01240{bottom:90.000000px;}
.ya8_c01240{bottom:91.440000px;}
.ya7_c01240{bottom:122.400000px;}
.ya6_c01240{bottom:124.560000px;}
.ya3_c01240{bottom:126.720000px;}
.ya4_c01240{bottom:127.440000px;}
.ya5_c01240{bottom:128.160000px;}
.ya2_c01240{bottom:129.600000px;}
.ya1_c01240{bottom:132.480000px;}
.ya0_c01240{bottom:176.400000px;}
.y9f_c01240{bottom:177.840000px;}
.y9e_c01240{bottom:179.280000px;}
.y9d_c01240{bottom:180.720000px;}
.y9c_c01240{bottom:181.440000px;}
.y9b_c01240{bottom:185.040000px;}
.y99_c01240{bottom:220.320000px;}
.y9a_c01240{bottom:221.760000px;}
.y98_c01240{bottom:222.480000px;}
.y97_c01240{bottom:241.200000px;}
.y96_c01240{bottom:242.640000px;}
.y95_c01240{bottom:243.360000px;}
.y94_c01240{bottom:244.800000px;}
.y93_c01240{bottom:245.520000px;}
.y92_c01240{bottom:246.960000px;}
.y91_c01240{bottom:247.680000px;}
.y90_c01240{bottom:249.840000px;}
.y8f_c01240{bottom:263.520000px;}
.y8e_c01240{bottom:264.960000px;}
.y8d_c01240{bottom:265.680000px;}
.y8b_c01240{bottom:266.400000px;}
.y8a_c01240{bottom:267.120000px;}
.y8c_c01240{bottom:268.560000px;}
.y89_c01240{bottom:271.440000px;}
.y88_c01240{bottom:272.880000px;}
.y87_c01240{bottom:284.400000px;}
.y86_c01240{bottom:285.840000px;}
.y85_c01240{bottom:287.280000px;}
.y83_c01240{bottom:288.000000px;}
.y82_c01240{bottom:288.720000px;}
.y84_c01240{bottom:289.440000px;}
.y81_c01240{bottom:290.880000px;}
.y80_c01240{bottom:294.480000px;}
.y7f_c01240{bottom:306.000000px;}
.y7e_c01240{bottom:307.440000px;}
.y7d_c01240{bottom:308.160000px;}
.y7b_c01240{bottom:309.600000px;}
.y7a_c01240{bottom:311.040000px;}
.y7c_c01240{bottom:311.760000px;}
.y79_c01240{bottom:313.200000px;}
.y78_c01240{bottom:315.360000px;}
.y77_c01240{bottom:327.600000px;}
.y76_c01240{bottom:328.320000px;}
.y75_c01240{bottom:329.760000px;}
.y74_c01240{bottom:330.480000px;}
.y73_c01240{bottom:331.200000px;}
.y72_c01240{bottom:332.640000px;}
.y71_c01240{bottom:333.360000px;}
.y70_c01240{bottom:334.800000px;}
.y6f_c01240{bottom:349.200000px;}
.y6e_c01240{bottom:350.640000px;}
.y6d_c01240{bottom:351.360000px;}
.y6c_c01240{bottom:352.080000px;}
.y6b_c01240{bottom:352.800000px;}
.y6a_c01240{bottom:354.240000px;}
.y69_c01240{bottom:355.680000px;}
.y68_c01240{bottom:370.800000px;}
.y67_c01240{bottom:371.520000px;}
.y65_c01240{bottom:372.240000px;}
.y66_c01240{bottom:372.960000px;}
.y63_c01240{bottom:373.680000px;}
.y62_c01240{bottom:374.400000px;}
.y64_c01240{bottom:375.840000px;}
.y61_c01240{bottom:376.560000px;}
.y60_c01240{bottom:391.680000px;}
.y5f_c01240{bottom:393.120000px;}
.y5e_c01240{bottom:393.840000px;}
.y5c_c01240{bottom:394.560000px;}
.y5b_c01240{bottom:395.280000px;}
.y5a_c01240{bottom:396.720000px;}
.y5d_c01240{bottom:397.440000px;}
.y59_c01240{bottom:400.320000px;}
.y58_c01240{bottom:414.000000px;}
.y57_c01240{bottom:414.720000px;}
.y56_c01240{bottom:415.440000px;}
.y55_c01240{bottom:416.160000px;}
.y53_c01240{bottom:416.880000px;}
.y54_c01240{bottom:418.320000px;}
.y52_c01240{bottom:419.040000px;}
.y51_c01240{bottom:421.200000px;}
.y50_c01240{bottom:446.400000px;}
.y4f_c01240{bottom:447.840000px;}
.y4e_c01240{bottom:448.560000px;}
.y4d_c01240{bottom:449.280000px;}
.y4c_c01240{bottom:450.720000px;}
.y4b_c01240{bottom:452.880000px;}
.y4a_c01240{bottom:491.760000px;}
.y49_c01240{bottom:494.640000px;}
.y46_c01240{bottom:522.000000px;}
.y47_c01240{bottom:522.720000px;}
.y48_c01240{bottom:523.440000px;}
.y45_c01240{bottom:524.160000px;}
.y44_c01240{bottom:527.040000px;}
.y40_c01240{bottom:554.400000px;}
.y41_c01240{bottom:555.120000px;}
.y43_c01240{bottom:556.560000px;}
.y42_c01240{bottom:557.280000px;}
.y3f_c01240{bottom:558.720000px;}
.y3e_c01240{bottom:559.440000px;}
.y3b_c01240{bottom:586.800000px;}
.y37_c01240{bottom:587.520000px;}
.y3c_c01240{bottom:588.240000px;}
.y38_c01240{bottom:588.960000px;}
.y39_c01240{bottom:589.680000px;}
.y36_c01240{bottom:590.400000px;}
.y3d_c01240{bottom:591.120000px;}
.y3a_c01240{bottom:591.840000px;}
.y35_c01240{bottom:627.840000px;}
.y33_c01240{bottom:629.280000px;}
.y31_c01240{bottom:631.440000px;}
.y32_c01240{bottom:632.160000px;}
.y34_c01240{bottom:634.320000px;}
.y30_c01240{bottom:652.320000px;}
.y2f_c01240{bottom:653.040000px;}
.y2e_c01240{bottom:653.760000px;}
.y2d_c01240{bottom:702.720000px;}
.y2b_c01240{bottom:704.880000px;}
.y2c_c01240{bottom:706.320000px;}
.y28_c01240{bottom:744.480000px;}
.y2a_c01240{bottom:745.920000px;}
.y27_c01240{bottom:748.080000px;}
.y29_c01240{bottom:748.800000px;}
.y25_c01240{bottom:786.960000px;}
.y22_c01240{bottom:787.680000px;}
.y23_c01240{bottom:788.400000px;}
.y26_c01240{bottom:789.840000px;}
.y24_c01240{bottom:790.560000px;}
.y1e_c01240{bottom:830.160000px;}
.y1f_c01240{bottom:831.600000px;}
.y21_c01240{bottom:832.320000px;}
.y20_c01240{bottom:833.040000px;}
.y1d_c01240{bottom:833.760000px;}
.y17_c01240{bottom:871.920000px;}
.y18_c01240{bottom:872.640000px;}
.y19_c01240{bottom:873.360000px;}
.y1c_c01240{bottom:874.080000px;}
.y1b_c01240{bottom:876.240000px;}
.y1a_c01240{bottom:876.960000px;}
.y13_c01240{bottom:915.840000px;}
.y14_c01240{bottom:916.560000px;}
.y16_c01240{bottom:917.280000px;}
.y15_c01240{bottom:919.440000px;}
.ye_c01240{bottom:959.760000px;}
.yf_c01240{bottom:960.480000px;}
.y11_c01240{bottom:961.200000px;}
.y10_c01240{bottom:961.920000px;}
.y12_c01240{bottom:962.640000px;}
.y7_c01240{bottom:999.360000px;}
.y8_c01240{bottom:1000.800000px;}
.ya_c01240{bottom:1002.960000px;}
.yc_c01240{bottom:1003.680000px;}
.y9_c01240{bottom:1004.400000px;}
.yd_c01240{bottom:1005.840000px;}
.yb_c01240{bottom:1006.560000px;}
.y3_c01240{bottom:1045.440000px;}
.y2_c01240{bottom:1047.600000px;}
.y4_c01240{bottom:1049.040000px;}
.y5_c01240{bottom:1049.760000px;}
.y6_c01240{bottom:1050.480000px;}
.y1_c01240{bottom:1095.120000px;}
.h12_c01240{height:7.775156px;}
.h13_c01240{height:10.366875px;}
.h11_c01240{height:18.142031px;}
.h14_c01240{height:23.325469px;}
.h9_c01240{height:28.508906px;}
.h6_c01240{height:31.100625px;}
.he_c01240{height:33.692344px;}
.h10_c01240{height:38.875781px;}
.h3_c01240{height:41.467500px;}
.h5_c01240{height:44.059219px;}
.h7_c01240{height:46.650937px;}
.hb_c01240{height:49.242656px;}
.h15_c01240{height:50.107500px;}
.h8_c01240{height:51.834375px;}
.h4_c01240{height:54.426094px;}
.hd_c01240{height:57.017812px;}
.ha_c01240{height:58.170937px;}
.hf_c01240{height:59.609531px;}
.hc_c01240{height:62.201250px;}
.h2_c01240{height:67.384687px;}
.h1_c01240{height:1161.750000px;}
.h0_c01240{height:1162.080000px;}
.w1_c01240{width:785.250000px;}
.w0_c01240{width:785.520000px;}
.x0_c01240{left:0.000000px;}
.xb_c01240{left:72.000000px;}
.x2e_c01240{left:73.440000px;}
.x4a_c01240{left:82.080000px;}
.x43_c01240{left:83.520000px;}
.x3a_c01240{left:90.720000px;}
.x40_c01240{left:92.160000px;}
.x2f_c01240{left:102.960000px;}
.xc_c01240{left:112.320000px;}
.x37_c01240{left:113.760000px;}
.x15_c01240{left:123.120000px;}
.x27_c01240{left:132.480000px;}
.x41_c01240{left:133.920000px;}
.xd_c01240{left:144.000000px;}
.x4d_c01240{left:153.360000px;}
.x34_c01240{left:154.800000px;}
.x30_c01240{left:164.160000px;}
.x58_c01240{left:165.600000px;}
.x2_c01240{left:174.960000px;}
.x19_c01240{left:176.400000px;}
.x59_c01240{left:185.040000px;}
.xe_c01240{left:186.480000px;}
.x1c_c01240{left:196.560000px;}
.x21_c01240{left:207.360000px;}
.x4c_c01240{left:217.440000px;}
.x3_c01240{left:218.880000px;}
.x35_c01240{left:239.760000px;}
.x49_c01240{left:241.920000px;}
.x16_c01240{left:244.080000px;}
.x28_c01240{left:251.280000px;}
.x55_c01240{left:259.920000px;}
.x1d_c01240{left:261.360000px;}
.x4_c01240{left:270.720000px;}
.x1e_c01240{left:281.520000px;}
.x29_c01240{left:293.760000px;}
.x17_c01240{left:303.120000px;}
.x4e_c01240{left:304.560000px;}
.xf_c01240{left:315.360000px;}
.x56_c01240{left:324.000000px;}
.x36_c01240{left:325.440000px;}
.x4b_c01240{left:337.680000px;}
.x2a_c01240{left:345.600000px;}
.x5_c01240{left:347.760000px;}
.x3b_c01240{left:358.560000px;}
.x22_c01240{left:367.920000px;}
.x51_c01240{left:378.000000px;}
.x47_c01240{left:379.440000px;}
.x44_c01240{left:380.880000px;}
.x10_c01240{left:390.240000px;}
.x38_c01240{left:391.680000px;}
.x1f_c01240{left:401.040000px;}
.x3c_c01240{left:402.480000px;}
.x42_c01240{left:411.840000px;}
.x23_c01240{left:421.920000px;}
.x52_c01240{left:432.720000px;}
.x1a_c01240{left:434.160000px;}
.x11_c01240{left:444.240000px;}
.x48_c01240{left:445.680000px;}
.x39_c01240{left:456.480000px;}
.x6_c01240{left:466.560000px;}
.x18_c01240{left:477.360000px;}
.x12_c01240{left:488.160000px;}
.x24_c01240{left:489.600000px;}
.x2b_c01240{left:498.960000px;}
.x7_c01240{left:509.760000px;}
.x31_c01240{left:520.560000px;}
.x45_c01240{left:522.000000px;}
.x20_c01240{left:531.360000px;}
.x8_c01240{left:542.160000px;}
.x57_c01240{left:551.520000px;}
.x13_c01240{left:553.680000px;}
.x53_c01240{left:563.760000px;}
.x3d_c01240{left:565.920000px;}
.x2c_c01240{left:574.560000px;}
.x46_c01240{left:576.000000px;}
.x1b_c01240{left:587.520000px;}
.x2d_c01240{left:596.880000px;}
.x14_c01240{left:598.320000px;}
.x54_c01240{left:606.960000px;}
.x9_c01240{left:608.400000px;}
.x25_c01240{left:618.480000px;}
.x32_c01240{left:628.560000px;}
.x3e_c01240{left:630.720000px;}
.xa_c01240{left:642.240000px;}
.x4f_c01240{left:652.320000px;}
.x26_c01240{left:663.120000px;}
.x33_c01240{left:673.920000px;}
.x1_c01240{left:678.240000px;}
.x3f_c01240{left:696.240000px;}
.x50_c01240{left:728.640000px;}
@media print{
.v2_c01240{vertical-align:-2.560000pt;}
.v0_c01240{vertical-align:0.000000pt;}
.v3_c01240{vertical-align:7.680000pt;}
.v1_c01240{vertical-align:10.240000pt;}
.ls1_c01240{letter-spacing:0.000000pt;}
.ls0_c01240{letter-spacing:130.950187pt;}
.ws0_c01240{word-spacing:-4.615467pt;}
.ws3_c01240{word-spacing:0.000000pt;}
.ws1_c01240{word-spacing:32.019840pt;}
.ws2_c01240{word-spacing:67.910400pt;}
.fsf_c01240{font-size:7.680000pt;}
.fs10_c01240{font-size:10.240000pt;}
.fse_c01240{font-size:17.920000pt;}
.fs11_c01240{font-size:23.040000pt;}
.fs7_c01240{font-size:28.160000pt;}
.fs4_c01240{font-size:30.720000pt;}
.fsb_c01240{font-size:33.280000pt;}
.fsd_c01240{font-size:38.400000pt;}
.fs1_c01240{font-size:40.960000pt;}
.fs3_c01240{font-size:43.520000pt;}
.fs5_c01240{font-size:46.080000pt;}
.fs8_c01240{font-size:48.640000pt;}
.fs6_c01240{font-size:51.200000pt;}
.fs2_c01240{font-size:53.760000pt;}
.fsa_c01240{font-size:56.320000pt;}
.fsc_c01240{font-size:58.880000pt;}
.fs9_c01240{font-size:61.440000pt;}
.fs0_c01240{font-size:66.560000pt;}
.y0_c01240{bottom:0.000000pt;}
.yb5_c01240{bottom:38.400000pt;}
.yb3_c01240{bottom:39.040000pt;}
.yb4_c01240{bottom:39.680000pt;}
.yb1_c01240{bottom:40.960000pt;}
.yb2_c01240{bottom:42.880000pt;}
.yb0_c01240{bottom:43.520000pt;}
.yaf_c01240{bottom:71.040000pt;}
.yac_c01240{bottom:73.600000pt;}
.yae_c01240{bottom:74.240000pt;}
.yab_c01240{bottom:74.880000pt;}
.yad_c01240{bottom:76.160000pt;}
.yaa_c01240{bottom:76.800000pt;}
.ya9_c01240{bottom:80.000000pt;}
.ya8_c01240{bottom:81.280000pt;}
.ya7_c01240{bottom:108.800000pt;}
.ya6_c01240{bottom:110.720000pt;}
.ya3_c01240{bottom:112.640000pt;}
.ya4_c01240{bottom:113.280000pt;}
.ya5_c01240{bottom:113.920000pt;}
.ya2_c01240{bottom:115.200000pt;}
.ya1_c01240{bottom:117.760000pt;}
.ya0_c01240{bottom:156.800000pt;}
.y9f_c01240{bottom:158.080000pt;}
.y9e_c01240{bottom:159.360000pt;}
.y9d_c01240{bottom:160.640000pt;}
.y9c_c01240{bottom:161.280000pt;}
.y9b_c01240{bottom:164.480000pt;}
.y99_c01240{bottom:195.840000pt;}
.y9a_c01240{bottom:197.120000pt;}
.y98_c01240{bottom:197.760000pt;}
.y97_c01240{bottom:214.400000pt;}
.y96_c01240{bottom:215.680000pt;}
.y95_c01240{bottom:216.320000pt;}
.y94_c01240{bottom:217.600000pt;}
.y93_c01240{bottom:218.240000pt;}
.y92_c01240{bottom:219.520000pt;}
.y91_c01240{bottom:220.160000pt;}
.y90_c01240{bottom:222.080000pt;}
.y8f_c01240{bottom:234.240000pt;}
.y8e_c01240{bottom:235.520000pt;}
.y8d_c01240{bottom:236.160000pt;}
.y8b_c01240{bottom:236.800000pt;}
.y8a_c01240{bottom:237.440000pt;}
.y8c_c01240{bottom:238.720000pt;}
.y89_c01240{bottom:241.280000pt;}
.y88_c01240{bottom:242.560000pt;}
.y87_c01240{bottom:252.800000pt;}
.y86_c01240{bottom:254.080000pt;}
.y85_c01240{bottom:255.360000pt;}
.y83_c01240{bottom:256.000000pt;}
.y82_c01240{bottom:256.640000pt;}
.y84_c01240{bottom:257.280000pt;}
.y81_c01240{bottom:258.560000pt;}
.y80_c01240{bottom:261.760000pt;}
.y7f_c01240{bottom:272.000000pt;}
.y7e_c01240{bottom:273.280000pt;}
.y7d_c01240{bottom:273.920000pt;}
.y7b_c01240{bottom:275.200000pt;}
.y7a_c01240{bottom:276.480000pt;}
.y7c_c01240{bottom:277.120000pt;}
.y79_c01240{bottom:278.400000pt;}
.y78_c01240{bottom:280.320000pt;}
.y77_c01240{bottom:291.200000pt;}
.y76_c01240{bottom:291.840000pt;}
.y75_c01240{bottom:293.120000pt;}
.y74_c01240{bottom:293.760000pt;}
.y73_c01240{bottom:294.400000pt;}
.y72_c01240{bottom:295.680000pt;}
.y71_c01240{bottom:296.320000pt;}
.y70_c01240{bottom:297.600000pt;}
.y6f_c01240{bottom:310.400000pt;}
.y6e_c01240{bottom:311.680000pt;}
.y6d_c01240{bottom:312.320000pt;}
.y6c_c01240{bottom:312.960000pt;}
.y6b_c01240{bottom:313.600000pt;}
.y6a_c01240{bottom:314.880000pt;}
.y69_c01240{bottom:316.160000pt;}
.y68_c01240{bottom:329.600000pt;}
.y67_c01240{bottom:330.240000pt;}
.y65_c01240{bottom:330.880000pt;}
.y66_c01240{bottom:331.520000pt;}
.y63_c01240{bottom:332.160000pt;}
.y62_c01240{bottom:332.800000pt;}
.y64_c01240{bottom:334.080000pt;}
.y61_c01240{bottom:334.720000pt;}
.y60_c01240{bottom:348.160000pt;}
.y5f_c01240{bottom:349.440000pt;}
.y5e_c01240{bottom:350.080000pt;}
.y5c_c01240{bottom:350.720000pt;}
.y5b_c01240{bottom:351.360000pt;}
.y5a_c01240{bottom:352.640000pt;}
.y5d_c01240{bottom:353.280000pt;}
.y59_c01240{bottom:355.840000pt;}
.y58_c01240{bottom:368.000000pt;}
.y57_c01240{bottom:368.640000pt;}
.y56_c01240{bottom:369.280000pt;}
.y55_c01240{bottom:369.920000pt;}
.y53_c01240{bottom:370.560000pt;}
.y54_c01240{bottom:371.840000pt;}
.y52_c01240{bottom:372.480000pt;}
.y51_c01240{bottom:374.400000pt;}
.y50_c01240{bottom:396.800000pt;}
.y4f_c01240{bottom:398.080000pt;}
.y4e_c01240{bottom:398.720000pt;}
.y4d_c01240{bottom:399.360000pt;}
.y4c_c01240{bottom:400.640000pt;}
.y4b_c01240{bottom:402.560000pt;}
.y4a_c01240{bottom:437.120000pt;}
.y49_c01240{bottom:439.680000pt;}
.y46_c01240{bottom:464.000000pt;}
.y47_c01240{bottom:464.640000pt;}
.y48_c01240{bottom:465.280000pt;}
.y45_c01240{bottom:465.920000pt;}
.y44_c01240{bottom:468.480000pt;}
.y40_c01240{bottom:492.800000pt;}
.y41_c01240{bottom:493.440000pt;}
.y43_c01240{bottom:494.720000pt;}
.y42_c01240{bottom:495.360000pt;}
.y3f_c01240{bottom:496.640000pt;}
.y3e_c01240{bottom:497.280000pt;}
.y3b_c01240{bottom:521.600000pt;}
.y37_c01240{bottom:522.240000pt;}
.y3c_c01240{bottom:522.880000pt;}
.y38_c01240{bottom:523.520000pt;}
.y39_c01240{bottom:524.160000pt;}
.y36_c01240{bottom:524.800000pt;}
.y3d_c01240{bottom:525.440000pt;}
.y3a_c01240{bottom:526.080000pt;}
.y35_c01240{bottom:558.080000pt;}
.y33_c01240{bottom:559.360000pt;}
.y31_c01240{bottom:561.280000pt;}
.y32_c01240{bottom:561.920000pt;}
.y34_c01240{bottom:563.840000pt;}
.y30_c01240{bottom:579.840000pt;}
.y2f_c01240{bottom:580.480000pt;}
.y2e_c01240{bottom:581.120000pt;}
.y2d_c01240{bottom:624.640000pt;}
.y2b_c01240{bottom:626.560000pt;}
.y2c_c01240{bottom:627.840000pt;}
.y28_c01240{bottom:661.760000pt;}
.y2a_c01240{bottom:663.040000pt;}
.y27_c01240{bottom:664.960000pt;}
.y29_c01240{bottom:665.600000pt;}
.y25_c01240{bottom:699.520000pt;}
.y22_c01240{bottom:700.160000pt;}
.y23_c01240{bottom:700.800000pt;}
.y26_c01240{bottom:702.080000pt;}
.y24_c01240{bottom:702.720000pt;}
.y1e_c01240{bottom:737.920000pt;}
.y1f_c01240{bottom:739.200000pt;}
.y21_c01240{bottom:739.840000pt;}
.y20_c01240{bottom:740.480000pt;}
.y1d_c01240{bottom:741.120000pt;}
.y17_c01240{bottom:775.040000pt;}
.y18_c01240{bottom:775.680000pt;}
.y19_c01240{bottom:776.320000pt;}
.y1c_c01240{bottom:776.960000pt;}
.y1b_c01240{bottom:778.880000pt;}
.y1a_c01240{bottom:779.520000pt;}
.y13_c01240{bottom:814.080000pt;}
.y14_c01240{bottom:814.720000pt;}
.y16_c01240{bottom:815.360000pt;}
.y15_c01240{bottom:817.280000pt;}
.ye_c01240{bottom:853.120000pt;}
.yf_c01240{bottom:853.760000pt;}
.y11_c01240{bottom:854.400000pt;}
.y10_c01240{bottom:855.040000pt;}
.y12_c01240{bottom:855.680000pt;}
.y7_c01240{bottom:888.320000pt;}
.y8_c01240{bottom:889.600000pt;}
.ya_c01240{bottom:891.520000pt;}
.yc_c01240{bottom:892.160000pt;}
.y9_c01240{bottom:892.800000pt;}
.yd_c01240{bottom:894.080000pt;}
.yb_c01240{bottom:894.720000pt;}
.y3_c01240{bottom:929.280000pt;}
.y2_c01240{bottom:931.200000pt;}
.y4_c01240{bottom:932.480000pt;}
.y5_c01240{bottom:933.120000pt;}
.y6_c01240{bottom:933.760000pt;}
.y1_c01240{bottom:973.440000pt;}
.h12_c01240{height:6.911250pt;}
.h13_c01240{height:9.215000pt;}
.h11_c01240{height:16.126250pt;}
.h14_c01240{height:20.733750pt;}
.h9_c01240{height:25.341250pt;}
.h6_c01240{height:27.645000pt;}
.he_c01240{height:29.948750pt;}
.h10_c01240{height:34.556250pt;}
.h3_c01240{height:36.860000pt;}
.h5_c01240{height:39.163750pt;}
.h7_c01240{height:41.467500pt;}
.hb_c01240{height:43.771250pt;}
.h15_c01240{height:44.540000pt;}
.h8_c01240{height:46.075000pt;}
.h4_c01240{height:48.378750pt;}
.hd_c01240{height:50.682500pt;}
.ha_c01240{height:51.707500pt;}
.hf_c01240{height:52.986250pt;}
.hc_c01240{height:55.290000pt;}
.h2_c01240{height:59.897500pt;}
.h1_c01240{height:1032.666667pt;}
.h0_c01240{height:1032.960000pt;}
.w1_c01240{width:698.000000pt;}
.w0_c01240{width:698.240000pt;}
.x0_c01240{left:0.000000pt;}
.xb_c01240{left:64.000000pt;}
.x2e_c01240{left:65.280000pt;}
.x4a_c01240{left:72.960000pt;}
.x43_c01240{left:74.240000pt;}
.x3a_c01240{left:80.640000pt;}
.x40_c01240{left:81.920000pt;}
.x2f_c01240{left:91.520000pt;}
.xc_c01240{left:99.840000pt;}
.x37_c01240{left:101.120000pt;}
.x15_c01240{left:109.440000pt;}
.x27_c01240{left:117.760000pt;}
.x41_c01240{left:119.040000pt;}
.xd_c01240{left:128.000000pt;}
.x4d_c01240{left:136.320000pt;}
.x34_c01240{left:137.600000pt;}
.x30_c01240{left:145.920000pt;}
.x58_c01240{left:147.200000pt;}
.x2_c01240{left:155.520000pt;}
.x19_c01240{left:156.800000pt;}
.x59_c01240{left:164.480000pt;}
.xe_c01240{left:165.760000pt;}
.x1c_c01240{left:174.720000pt;}
.x21_c01240{left:184.320000pt;}
.x4c_c01240{left:193.280000pt;}
.x3_c01240{left:194.560000pt;}
.x35_c01240{left:213.120000pt;}
.x49_c01240{left:215.040000pt;}
.x16_c01240{left:216.960000pt;}
.x28_c01240{left:223.360000pt;}
.x55_c01240{left:231.040000pt;}
.x1d_c01240{left:232.320000pt;}
.x4_c01240{left:240.640000pt;}
.x1e_c01240{left:250.240000pt;}
.x29_c01240{left:261.120000pt;}
.x17_c01240{left:269.440000pt;}
.x4e_c01240{left:270.720000pt;}
.xf_c01240{left:280.320000pt;}
.x56_c01240{left:288.000000pt;}
.x36_c01240{left:289.280000pt;}
.x4b_c01240{left:300.160000pt;}
.x2a_c01240{left:307.200000pt;}
.x5_c01240{left:309.120000pt;}
.x3b_c01240{left:318.720000pt;}
.x22_c01240{left:327.040000pt;}
.x51_c01240{left:336.000000pt;}
.x47_c01240{left:337.280000pt;}
.x44_c01240{left:338.560000pt;}
.x10_c01240{left:346.880000pt;}
.x38_c01240{left:348.160000pt;}
.x1f_c01240{left:356.480000pt;}
.x3c_c01240{left:357.760000pt;}
.x42_c01240{left:366.080000pt;}
.x23_c01240{left:375.040000pt;}
.x52_c01240{left:384.640000pt;}
.x1a_c01240{left:385.920000pt;}
.x11_c01240{left:394.880000pt;}
.x48_c01240{left:396.160000pt;}
.x39_c01240{left:405.760000pt;}
.x6_c01240{left:414.720000pt;}
.x18_c01240{left:424.320000pt;}
.x12_c01240{left:433.920000pt;}
.x24_c01240{left:435.200000pt;}
.x2b_c01240{left:443.520000pt;}
.x7_c01240{left:453.120000pt;}
.x31_c01240{left:462.720000pt;}
.x45_c01240{left:464.000000pt;}
.x20_c01240{left:472.320000pt;}
.x8_c01240{left:481.920000pt;}
.x57_c01240{left:490.240000pt;}
.x13_c01240{left:492.160000pt;}
.x53_c01240{left:501.120000pt;}
.x3d_c01240{left:503.040000pt;}
.x2c_c01240{left:510.720000pt;}
.x46_c01240{left:512.000000pt;}
.x1b_c01240{left:522.240000pt;}
.x2d_c01240{left:530.560000pt;}
.x14_c01240{left:531.840000pt;}
.x54_c01240{left:539.520000pt;}
.x9_c01240{left:540.800000pt;}
.x25_c01240{left:549.760000pt;}
.x32_c01240{left:558.720000pt;}
.x3e_c01240{left:560.640000pt;}
.xa_c01240{left:570.880000pt;}
.x4f_c01240{left:579.840000pt;}
.x26_c01240{left:589.440000pt;}
.x33_c01240{left:599.040000pt;}
.x1_c01240{left:602.880000pt;}
.x3f_c01240{left:618.880000pt;}
.x50_c01240{left:647.680000pt;}
}





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

.ir_c01241:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01241{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01241;src:url('chunks/assets/font_6734011a0376c9c1ffdc1bbd.woff2')format("woff");}.ff1_c01241{font-family:ff1_c01241;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3e_c01241{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);}
.m25_c01241{transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);}
.m27_c01241{transform:matrix(0.222725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222725,0.000000,0.000000,0.250000,0,0);}
.m28_c01241{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m44_c01241{transform:matrix(0.227675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227675,0.000000,0.000000,0.250000,0,0);}
.m33_c01241{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m43_c01241{transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);}
.m63_c01241{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m2e_c01241{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m12_c01241{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);}
.m41_c01241{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m17_c01241{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);}
.m5a_c01241{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);}
.m42_c01241{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);}
.m1e_c01241{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);}
.m2c_c01241{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);}
.m29_c01241{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01241{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.ma_c01241{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);}
.m5c_c01241{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);}
.m26_c01241{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01241{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m5_c01241{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m4f_c01241{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m14_c01241{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m6_c01241{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m7_c01241{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01241{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m23_c01241{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m45_c01241{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m40_c01241{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m39_c01241{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3_c01241{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m21_c01241{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2_c01241{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m8_c01241{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m4_c01241{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m15_c01241{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mf_c01241{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);}
.m37_c01241{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);}
.m2a_c01241{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01241{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);}
.m3c_c01241{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01241{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.md_c01241{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m18_c01241{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);}
.m47_c01241{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m24_c01241{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m0_c01241{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);}
.m34_c01241{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01241{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m31_c01241{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);}
.m36_c01241{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m1_c01241{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);}
.m2f_c01241{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01241{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);}
.m38_c01241{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m13_c01241{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);}
.m22_c01241{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);}
.m2b_c01241{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);}
.m32_c01241{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m61_c01241{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m35_c01241{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m19_c01241{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m46_c01241{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);}
.m52_c01241{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);}
.m48_c01241{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01241{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m30_c01241{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);}
.m55_c01241{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m49_c01241{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01241{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m10_c01241{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01241{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);}
.m16_c01241{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m59_c01241{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);}
.m5b_c01241{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m64_c01241{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01241{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);}
.m57_c01241{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);}
.m4e_c01241{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m54_c01241{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);}
.m60_c01241{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.mb_c01241{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);}
.m4a_c01241{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m62_c01241{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m5f_c01241{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);}
.m56_c01241{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);}
.m4d_c01241{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m50_c01241{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m53_c01241{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m20_c01241{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01241{transform:matrix(0.647500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.647500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.647500,0.000000,0.000000,0.250000,0,0);}
.m58_c01241{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m65_c01241{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);}
.me_c01241{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01241{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.m5d_c01241{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);}
.m51_c01241{transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);}
.m9_c01241{transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);}
.m5e_c01241{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.m11_c01241{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.v0_c01241{vertical-align:0.000000px;}
.v1_c01241{vertical-align:2.880000px;}
.v2_c01241{vertical-align:8.640000px;}
.ls0_c01241{letter-spacing:0.000000px;}
.sc__c01241{text-shadow:none;}
.sc0_c01241{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01241{-webkit-text-stroke:0px transparent;}
.sc0_c01241{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c01241{word-spacing:0.000000px;}
.ws4_c01241{word-spacing:3.978960px;}
.ws3_c01241{word-spacing:29.146752px;}
.ws1_c01241{word-spacing:66.066240px;}
.ws2_c01241{word-spacing:111.092708px;}
.ws5_c01241{word-spacing:111.761280px;}
.ws0_c01241{word-spacing:135.911900px;}
._0_c01241{width:169.463620px;}
.fc0_c01241{color:transparent;}
.fs11_c01241{font-size:8.640000px;}
.fsb_c01241{font-size:11.520000px;}
.fs7_c01241{font-size:17.280000px;}
.fse_c01241{font-size:23.040000px;}
.fsd_c01241{font-size:31.680000px;}
.fs9_c01241{font-size:34.560000px;}
.fs2_c01241{font-size:40.320000px;}
.fsa_c01241{font-size:43.200000px;}
.fs1_c01241{font-size:46.080000px;}
.fs6_c01241{font-size:48.960000px;}
.fs3_c01241{font-size:51.840000px;}
.fs4_c01241{font-size:54.720000px;}
.fs5_c01241{font-size:57.600000px;}
.fsc_c01241{font-size:60.480000px;}
.fs8_c01241{font-size:63.360000px;}
.fsf_c01241{font-size:66.240000px;}
.fs10_c01241{font-size:69.120000px;}
.fs0_c01241{font-size:74.880000px;}
.y0_c01241{bottom:0.000000px;}
.ya1_c01241{bottom:121.680000px;}
.y9f_c01241{bottom:151.200000px;}
.ya0_c01241{bottom:152.640000px;}
.y9e_c01241{bottom:154.080000px;}
.y9d_c01241{bottom:157.680000px;}
.y9c_c01241{bottom:180.720000px;}
.y9a_c01241{bottom:181.440000px;}
.y99_c01241{bottom:182.160000px;}
.y9b_c01241{bottom:183.600000px;}
.y98_c01241{bottom:185.760000px;}
.y96_c01241{bottom:186.480000px;}
.y97_c01241{bottom:187.200000px;}
.y95_c01241{bottom:188.640000px;}
.y94_c01241{bottom:213.120000px;}
.y92_c01241{bottom:213.840000px;}
.y91_c01241{bottom:215.280000px;}
.y93_c01241{bottom:216.000000px;}
.y90_c01241{bottom:216.720000px;}
.y8f_c01241{bottom:245.520000px;}
.y8e_c01241{bottom:246.240000px;}
.y8d_c01241{bottom:247.680000px;}
.y8a_c01241{bottom:248.400000px;}
.y8b_c01241{bottom:249.120000px;}
.y8c_c01241{bottom:249.840000px;}
.y89_c01241{bottom:251.280000px;}
.y88_c01241{bottom:252.720000px;}
.y87_c01241{bottom:287.280000px;}
.y85_c01241{bottom:288.720000px;}
.y84_c01241{bottom:289.440000px;}
.y82_c01241{bottom:292.320000px;}
.y83_c01241{bottom:293.040000px;}
.y86_c01241{bottom:293.760000px;}
.y81_c01241{bottom:311.760000px;}
.y80_c01241{bottom:312.480000px;}
.y7e_c01241{bottom:313.920000px;}
.y7f_c01241{bottom:314.640000px;}
.y7d_c01241{bottom:315.360000px;}
.y7c_c01241{bottom:355.680000px;}
.y7b_c01241{bottom:357.120000px;}
.y7a_c01241{bottom:358.560000px;}
.y76_c01241{bottom:394.560000px;}
.y77_c01241{bottom:395.280000px;}
.y78_c01241{bottom:396.000000px;}
.y79_c01241{bottom:396.720000px;}
.y75_c01241{bottom:398.160000px;}
.y73_c01241{bottom:436.320000px;}
.y74_c01241{bottom:437.040000px;}
.y70_c01241{bottom:437.760000px;}
.y72_c01241{bottom:439.200000px;}
.y6f_c01241{bottom:439.920000px;}
.y71_c01241{bottom:440.640000px;}
.y6e_c01241{bottom:442.080000px;}
.y6b_c01241{bottom:479.520000px;}
.y6c_c01241{bottom:480.240000px;}
.y6d_c01241{bottom:482.400000px;}
.y6a_c01241{bottom:483.120000px;}
.y69_c01241{bottom:483.840000px;}
.y67_c01241{bottom:533.520000px;}
.y68_c01241{bottom:534.240000px;}
.y64_c01241{bottom:534.960000px;}
.y66_c01241{bottom:535.680000px;}
.y65_c01241{bottom:537.120000px;}
.y62_c01241{bottom:576.000000px;}
.y61_c01241{bottom:577.440000px;}
.y63_c01241{bottom:579.600000px;}
.y5c_c01241{bottom:598.320000px;}
.y60_c01241{bottom:599.040000px;}
.y5f_c01241{bottom:600.480000px;}
.y5e_c01241{bottom:601.200000px;}
.y5d_c01241{bottom:601.920000px;}
.y57_c01241{bottom:619.200000px;}
.y59_c01241{bottom:619.920000px;}
.y5a_c01241{bottom:620.640000px;}
.y58_c01241{bottom:622.080000px;}
.y5b_c01241{bottom:622.800000px;}
.y54_c01241{bottom:640.800000px;}
.y53_c01241{bottom:641.520000px;}
.y55_c01241{bottom:642.240000px;}
.y52_c01241{bottom:642.960000px;}
.y56_c01241{bottom:643.680000px;}
.y4d_c01241{bottom:661.680000px;}
.y4e_c01241{bottom:662.400000px;}
.y4f_c01241{bottom:663.120000px;}
.y51_c01241{bottom:663.840000px;}
.y4c_c01241{bottom:664.560000px;}
.y4b_c01241{bottom:665.280000px;}
.y50_c01241{bottom:671.760000px;}
.y48_c01241{bottom:684.000000px;}
.y4a_c01241{bottom:684.720000px;}
.y49_c01241{bottom:686.160000px;}
.y44_c01241{bottom:704.880000px;}
.y45_c01241{bottom:705.600000px;}
.y46_c01241{bottom:706.320000px;}
.y47_c01241{bottom:708.480000px;}
.y3f_c01241{bottom:725.760000px;}
.y41_c01241{bottom:726.480000px;}
.y42_c01241{bottom:727.200000px;}
.y43_c01241{bottom:727.920000px;}
.y40_c01241{bottom:728.640000px;}
.y38_c01241{bottom:746.640000px;}
.y39_c01241{bottom:747.360000px;}
.y3a_c01241{bottom:748.080000px;}
.y3c_c01241{bottom:748.800000px;}
.y3d_c01241{bottom:749.520000px;}
.y3b_c01241{bottom:750.240000px;}
.y3e_c01241{bottom:751.680000px;}
.y31_c01241{bottom:768.240000px;}
.y32_c01241{bottom:768.960000px;}
.y33_c01241{bottom:769.680000px;}
.y35_c01241{bottom:770.400000px;}
.y37_c01241{bottom:771.120000px;}
.y34_c01241{bottom:772.560000px;}
.y36_c01241{bottom:773.280000px;}
.y2d_c01241{bottom:789.840000px;}
.y2c_c01241{bottom:790.560000px;}
.y2f_c01241{bottom:791.280000px;}
.y2b_c01241{bottom:792.000000px;}
.y2e_c01241{bottom:792.720000px;}
.y30_c01241{bottom:794.160000px;}
.y26_c01241{bottom:811.440000px;}
.y25_c01241{bottom:812.880000px;}
.y27_c01241{bottom:813.600000px;}
.y28_c01241{bottom:814.320000px;}
.y2a_c01241{bottom:815.760000px;}
.y29_c01241{bottom:816.480000px;}
.y24_c01241{bottom:840.240000px;}
.y1f_c01241{bottom:844.560000px;}
.y20_c01241{bottom:845.280000px;}
.y22_c01241{bottom:846.720000px;}
.y23_c01241{bottom:848.160000px;}
.y21_c01241{bottom:852.480000px;}
.y1c_c01241{bottom:885.600000px;}
.y1e_c01241{bottom:889.920000px;}
.y1d_c01241{bottom:890.640000px;}
.y1a_c01241{bottom:917.280000px;}
.y19_c01241{bottom:919.440000px;}
.y1b_c01241{bottom:922.320000px;}
.y15_c01241{bottom:949.680000px;}
.y13_c01241{bottom:950.400000px;}
.y14_c01241{bottom:951.120000px;}
.y17_c01241{bottom:951.840000px;}
.y16_c01241{bottom:954.000000px;}
.y18_c01241{bottom:954.720000px;}
.yc_c01241{bottom:982.080000px;}
.ye_c01241{bottom:982.800000px;}
.y11_c01241{bottom:983.520000px;}
.yd_c01241{bottom:984.240000px;}
.yf_c01241{bottom:986.400000px;}
.y12_c01241{bottom:987.120000px;}
.y10_c01241{bottom:988.560000px;}
.y5_c01241{bottom:1023.840000px;}
.y6_c01241{bottom:1025.280000px;}
.y7_c01241{bottom:1026.000000px;}
.yb_c01241{bottom:1026.720000px;}
.ya_c01241{bottom:1027.440000px;}
.y8_c01241{bottom:1028.880000px;}
.y9_c01241{bottom:1032.480000px;}
.y2_c01241{bottom:1046.880000px;}
.y3_c01241{bottom:1049.040000px;}
.y4_c01241{bottom:1050.480000px;}
.y1_c01241{bottom:1094.400000px;}
.h15_c01241{height:7.775156px;}
.he_c01241{height:10.366875px;}
.ha_c01241{height:15.550313px;}
.h11_c01241{height:20.733750px;}
.h10_c01241{height:28.508906px;}
.hc_c01241{height:31.100625px;}
.h5_c01241{height:36.284062px;}
.hd_c01241{height:38.875781px;}
.h3_c01241{height:41.467500px;}
.h9_c01241{height:44.059219px;}
.h4_c01241{height:44.347500px;}
.h6_c01241{height:46.650937px;}
.h7_c01241{height:49.242656px;}
.h8_c01241{height:51.834375px;}
.hf_c01241{height:54.426094px;}
.hb_c01241{height:57.017812px;}
.h13_c01241{height:59.609531px;}
.h12_c01241{height:59.897813px;}
.h14_c01241{height:62.201250px;}
.h2_c01241{height:67.384687px;}
.h1_c01241{height:1164.000000px;}
.h0_c01241{height:1164.240000px;}
.w1_c01241{width:788.250000px;}
.w0_c01241{width:788.400000px;}
.x0_c01241{left:0.000000px;}
.xb_c01241{left:72.000000px;}
.x39_c01241{left:73.440000px;}
.x2d_c01241{left:80.640000px;}
.x25_c01241{left:82.080000px;}
.xc_c01241{left:90.720000px;}
.x4f_c01241{left:92.880000px;}
.x1b_c01241{left:101.520000px;}
.x34_c01241{left:102.960000px;}
.x5_c01241{left:112.320000px;}
.x44_c01241{left:114.480000px;}
.x2_c01241{left:121.680000px;}
.x16_c01241{left:123.120000px;}
.x2e_c01241{left:144.000000px;}
.x5b_c01241{left:145.440000px;}
.x26_c01241{left:153.360000px;}
.x50_c01241{left:155.520000px;}
.x45_c01241{left:164.160000px;}
.x1c_c01241{left:174.960000px;}
.x59_c01241{left:176.400000px;}
.x3_c01241{left:185.040000px;}
.x3a_c01241{left:186.480000px;}
.x5a_c01241{left:196.560000px;}
.xd_c01241{left:207.360000px;}
.x1d_c01241{left:216.720000px;}
.x2c_c01241{left:218.160000px;}
.x2a_c01241{left:228.960000px;}
.x6_c01241{left:249.120000px;}
.xe_c01241{left:250.560000px;}
.x46_c01241{left:260.640000px;}
.x40_c01241{left:272.160000px;}
.x1e_c01241{left:293.040000px;}
.x51_c01241{left:295.200000px;}
.x3b_c01241{left:304.560000px;}
.x7_c01241{left:314.640000px;}
.x4c_c01241{left:316.800000px;}
.x1f_c01241{left:324.720000px;}
.x47_c01241{left:326.160000px;}
.x27_c01241{left:336.960000px;}
.xf_c01241{left:345.600000px;}
.x17_c01241{left:347.040000px;}
.x33_c01241{left:348.480000px;}
.x52_c01241{left:358.560000px;}
.x10_c01241{left:379.440000px;}
.x3c_c01241{left:380.880000px;}
.x4_c01241{left:390.240000px;}
.x4d_c01241{left:391.680000px;}
.x20_c01241{left:400.320000px;}
.x53_c01241{left:402.480000px;}
.x57_c01241{left:411.840000px;}
.x41_c01241{left:423.360000px;}
.x8_c01241{left:432.000000px;}
.x11_c01241{left:433.440000px;}
.x3d_c01241{left:436.320000px;}
.x18_c01241{left:442.800000px;}
.x21_c01241{left:444.240000px;}
.x31_c01241{left:445.680000px;}
.x4b_c01241{left:455.760000px;}
.x49_c01241{left:457.200000px;}
.x1a_c01241{left:464.400000px;}
.x9_c01241{left:465.840000px;}
.x54_c01241{left:468.000000px;}
.x12_c01241{left:475.920000px;}
.x35_c01241{left:478.080000px;}
.x4a_c01241{left:488.160000px;}
.x13_c01241{left:498.960000px;}
.x3e_c01241{left:500.400000px;}
.xa_c01241{left:508.320000px;}
.x55_c01241{left:510.480000px;}
.x42_c01241{left:519.120000px;}
.x22_c01241{left:520.560000px;}
.x4e_c01241{left:522.000000px;}
.x58_c01241{left:531.360000px;}
.x14_c01241{left:552.960000px;}
.x2f_c01241{left:554.400000px;}
.x2b_c01241{left:563.760000px;}
.x37_c01241{left:565.920000px;}
.x32_c01241{left:574.560000px;}
.x28_c01241{left:576.000000px;}
.x19_c01241{left:585.360000px;}
.x43_c01241{left:586.800000px;}
.x30_c01241{left:598.320000px;}
.x15_c01241{left:608.400000px;}
.x3f_c01241{left:619.920000px;}
.x23_c01241{left:628.560000px;}
.x56_c01241{left:652.320000px;}
.x48_c01241{left:661.680000px;}
.x38_c01241{left:663.120000px;}
.x24_c01241{left:673.200000px;}
.x1_c01241{left:683.280000px;}
.x29_c01241{left:706.320000px;}
.x36_c01241{left:717.840000px;}
@media print{
.v0_c01241{vertical-align:0.000000pt;}
.v1_c01241{vertical-align:2.560000pt;}
.v2_c01241{vertical-align:7.680000pt;}
.ls0_c01241{letter-spacing:0.000000pt;}
.ws6_c01241{word-spacing:0.000000pt;}
.ws4_c01241{word-spacing:3.536853pt;}
.ws3_c01241{word-spacing:25.908224pt;}
.ws1_c01241{word-spacing:58.725547pt;}
.ws2_c01241{word-spacing:98.749074pt;}
.ws5_c01241{word-spacing:99.343360pt;}
.ws0_c01241{word-spacing:120.810578pt;}
._0_c01241{width:150.634329pt;}
.fs11_c01241{font-size:7.680000pt;}
.fsb_c01241{font-size:10.240000pt;}
.fs7_c01241{font-size:15.360000pt;}
.fse_c01241{font-size:20.480000pt;}
.fsd_c01241{font-size:28.160000pt;}
.fs9_c01241{font-size:30.720000pt;}
.fs2_c01241{font-size:35.840000pt;}
.fsa_c01241{font-size:38.400000pt;}
.fs1_c01241{font-size:40.960000pt;}
.fs6_c01241{font-size:43.520000pt;}
.fs3_c01241{font-size:46.080000pt;}
.fs4_c01241{font-size:48.640000pt;}
.fs5_c01241{font-size:51.200000pt;}
.fsc_c01241{font-size:53.760000pt;}
.fs8_c01241{font-size:56.320000pt;}
.fsf_c01241{font-size:58.880000pt;}
.fs10_c01241{font-size:61.440000pt;}
.fs0_c01241{font-size:66.560000pt;}
.y0_c01241{bottom:0.000000pt;}
.ya1_c01241{bottom:108.160000pt;}
.y9f_c01241{bottom:134.400000pt;}
.ya0_c01241{bottom:135.680000pt;}
.y9e_c01241{bottom:136.960000pt;}
.y9d_c01241{bottom:140.160000pt;}
.y9c_c01241{bottom:160.640000pt;}
.y9a_c01241{bottom:161.280000pt;}
.y99_c01241{bottom:161.920000pt;}
.y9b_c01241{bottom:163.200000pt;}
.y98_c01241{bottom:165.120000pt;}
.y96_c01241{bottom:165.760000pt;}
.y97_c01241{bottom:166.400000pt;}
.y95_c01241{bottom:167.680000pt;}
.y94_c01241{bottom:189.440000pt;}
.y92_c01241{bottom:190.080000pt;}
.y91_c01241{bottom:191.360000pt;}
.y93_c01241{bottom:192.000000pt;}
.y90_c01241{bottom:192.640000pt;}
.y8f_c01241{bottom:218.240000pt;}
.y8e_c01241{bottom:218.880000pt;}
.y8d_c01241{bottom:220.160000pt;}
.y8a_c01241{bottom:220.800000pt;}
.y8b_c01241{bottom:221.440000pt;}
.y8c_c01241{bottom:222.080000pt;}
.y89_c01241{bottom:223.360000pt;}
.y88_c01241{bottom:224.640000pt;}
.y87_c01241{bottom:255.360000pt;}
.y85_c01241{bottom:256.640000pt;}
.y84_c01241{bottom:257.280000pt;}
.y82_c01241{bottom:259.840000pt;}
.y83_c01241{bottom:260.480000pt;}
.y86_c01241{bottom:261.120000pt;}
.y81_c01241{bottom:277.120000pt;}
.y80_c01241{bottom:277.760000pt;}
.y7e_c01241{bottom:279.040000pt;}
.y7f_c01241{bottom:279.680000pt;}
.y7d_c01241{bottom:280.320000pt;}
.y7c_c01241{bottom:316.160000pt;}
.y7b_c01241{bottom:317.440000pt;}
.y7a_c01241{bottom:318.720000pt;}
.y76_c01241{bottom:350.720000pt;}
.y77_c01241{bottom:351.360000pt;}
.y78_c01241{bottom:352.000000pt;}
.y79_c01241{bottom:352.640000pt;}
.y75_c01241{bottom:353.920000pt;}
.y73_c01241{bottom:387.840000pt;}
.y74_c01241{bottom:388.480000pt;}
.y70_c01241{bottom:389.120000pt;}
.y72_c01241{bottom:390.400000pt;}
.y6f_c01241{bottom:391.040000pt;}
.y71_c01241{bottom:391.680000pt;}
.y6e_c01241{bottom:392.960000pt;}
.y6b_c01241{bottom:426.240000pt;}
.y6c_c01241{bottom:426.880000pt;}
.y6d_c01241{bottom:428.800000pt;}
.y6a_c01241{bottom:429.440000pt;}
.y69_c01241{bottom:430.080000pt;}
.y67_c01241{bottom:474.240000pt;}
.y68_c01241{bottom:474.880000pt;}
.y64_c01241{bottom:475.520000pt;}
.y66_c01241{bottom:476.160000pt;}
.y65_c01241{bottom:477.440000pt;}
.y62_c01241{bottom:512.000000pt;}
.y61_c01241{bottom:513.280000pt;}
.y63_c01241{bottom:515.200000pt;}
.y5c_c01241{bottom:531.840000pt;}
.y60_c01241{bottom:532.480000pt;}
.y5f_c01241{bottom:533.760000pt;}
.y5e_c01241{bottom:534.400000pt;}
.y5d_c01241{bottom:535.040000pt;}
.y57_c01241{bottom:550.400000pt;}
.y59_c01241{bottom:551.040000pt;}
.y5a_c01241{bottom:551.680000pt;}
.y58_c01241{bottom:552.960000pt;}
.y5b_c01241{bottom:553.600000pt;}
.y54_c01241{bottom:569.600000pt;}
.y53_c01241{bottom:570.240000pt;}
.y55_c01241{bottom:570.880000pt;}
.y52_c01241{bottom:571.520000pt;}
.y56_c01241{bottom:572.160000pt;}
.y4d_c01241{bottom:588.160000pt;}
.y4e_c01241{bottom:588.800000pt;}
.y4f_c01241{bottom:589.440000pt;}
.y51_c01241{bottom:590.080000pt;}
.y4c_c01241{bottom:590.720000pt;}
.y4b_c01241{bottom:591.360000pt;}
.y50_c01241{bottom:597.120000pt;}
.y48_c01241{bottom:608.000000pt;}
.y4a_c01241{bottom:608.640000pt;}
.y49_c01241{bottom:609.920000pt;}
.y44_c01241{bottom:626.560000pt;}
.y45_c01241{bottom:627.200000pt;}
.y46_c01241{bottom:627.840000pt;}
.y47_c01241{bottom:629.760000pt;}
.y3f_c01241{bottom:645.120000pt;}
.y41_c01241{bottom:645.760000pt;}
.y42_c01241{bottom:646.400000pt;}
.y43_c01241{bottom:647.040000pt;}
.y40_c01241{bottom:647.680000pt;}
.y38_c01241{bottom:663.680000pt;}
.y39_c01241{bottom:664.320000pt;}
.y3a_c01241{bottom:664.960000pt;}
.y3c_c01241{bottom:665.600000pt;}
.y3d_c01241{bottom:666.240000pt;}
.y3b_c01241{bottom:666.880000pt;}
.y3e_c01241{bottom:668.160000pt;}
.y31_c01241{bottom:682.880000pt;}
.y32_c01241{bottom:683.520000pt;}
.y33_c01241{bottom:684.160000pt;}
.y35_c01241{bottom:684.800000pt;}
.y37_c01241{bottom:685.440000pt;}
.y34_c01241{bottom:686.720000pt;}
.y36_c01241{bottom:687.360000pt;}
.y2d_c01241{bottom:702.080000pt;}
.y2c_c01241{bottom:702.720000pt;}
.y2f_c01241{bottom:703.360000pt;}
.y2b_c01241{bottom:704.000000pt;}
.y2e_c01241{bottom:704.640000pt;}
.y30_c01241{bottom:705.920000pt;}
.y26_c01241{bottom:721.280000pt;}
.y25_c01241{bottom:722.560000pt;}
.y27_c01241{bottom:723.200000pt;}
.y28_c01241{bottom:723.840000pt;}
.y2a_c01241{bottom:725.120000pt;}
.y29_c01241{bottom:725.760000pt;}
.y24_c01241{bottom:746.880000pt;}
.y1f_c01241{bottom:750.720000pt;}
.y20_c01241{bottom:751.360000pt;}
.y22_c01241{bottom:752.640000pt;}
.y23_c01241{bottom:753.920000pt;}
.y21_c01241{bottom:757.760000pt;}
.y1c_c01241{bottom:787.200000pt;}
.y1e_c01241{bottom:791.040000pt;}
.y1d_c01241{bottom:791.680000pt;}
.y1a_c01241{bottom:815.360000pt;}
.y19_c01241{bottom:817.280000pt;}
.y1b_c01241{bottom:819.840000pt;}
.y15_c01241{bottom:844.160000pt;}
.y13_c01241{bottom:844.800000pt;}
.y14_c01241{bottom:845.440000pt;}
.y17_c01241{bottom:846.080000pt;}
.y16_c01241{bottom:848.000000pt;}
.y18_c01241{bottom:848.640000pt;}
.yc_c01241{bottom:872.960000pt;}
.ye_c01241{bottom:873.600000pt;}
.y11_c01241{bottom:874.240000pt;}
.yd_c01241{bottom:874.880000pt;}
.yf_c01241{bottom:876.800000pt;}
.y12_c01241{bottom:877.440000pt;}
.y10_c01241{bottom:878.720000pt;}
.y5_c01241{bottom:910.080000pt;}
.y6_c01241{bottom:911.360000pt;}
.y7_c01241{bottom:912.000000pt;}
.yb_c01241{bottom:912.640000pt;}
.ya_c01241{bottom:913.280000pt;}
.y8_c01241{bottom:914.560000pt;}
.y9_c01241{bottom:917.760000pt;}
.y2_c01241{bottom:930.560000pt;}
.y3_c01241{bottom:932.480000pt;}
.y4_c01241{bottom:933.760000pt;}
.y1_c01241{bottom:972.800000pt;}
.h15_c01241{height:6.911250pt;}
.he_c01241{height:9.215000pt;}
.ha_c01241{height:13.822500pt;}
.h11_c01241{height:18.430000pt;}
.h10_c01241{height:25.341250pt;}
.hc_c01241{height:27.645000pt;}
.h5_c01241{height:32.252500pt;}
.hd_c01241{height:34.556250pt;}
.h3_c01241{height:36.860000pt;}
.h9_c01241{height:39.163750pt;}
.h4_c01241{height:39.420000pt;}
.h6_c01241{height:41.467500pt;}
.h7_c01241{height:43.771250pt;}
.h8_c01241{height:46.075000pt;}
.hf_c01241{height:48.378750pt;}
.hb_c01241{height:50.682500pt;}
.h13_c01241{height:52.986250pt;}
.h12_c01241{height:53.242500pt;}
.h14_c01241{height:55.290000pt;}
.h2_c01241{height:59.897500pt;}
.h1_c01241{height:1034.666667pt;}
.h0_c01241{height:1034.880000pt;}
.w1_c01241{width:700.666667pt;}
.w0_c01241{width:700.800000pt;}
.x0_c01241{left:0.000000pt;}
.xb_c01241{left:64.000000pt;}
.x39_c01241{left:65.280000pt;}
.x2d_c01241{left:71.680000pt;}
.x25_c01241{left:72.960000pt;}
.xc_c01241{left:80.640000pt;}
.x4f_c01241{left:82.560000pt;}
.x1b_c01241{left:90.240000pt;}
.x34_c01241{left:91.520000pt;}
.x5_c01241{left:99.840000pt;}
.x44_c01241{left:101.760000pt;}
.x2_c01241{left:108.160000pt;}
.x16_c01241{left:109.440000pt;}
.x2e_c01241{left:128.000000pt;}
.x5b_c01241{left:129.280000pt;}
.x26_c01241{left:136.320000pt;}
.x50_c01241{left:138.240000pt;}
.x45_c01241{left:145.920000pt;}
.x1c_c01241{left:155.520000pt;}
.x59_c01241{left:156.800000pt;}
.x3_c01241{left:164.480000pt;}
.x3a_c01241{left:165.760000pt;}
.x5a_c01241{left:174.720000pt;}
.xd_c01241{left:184.320000pt;}
.x1d_c01241{left:192.640000pt;}
.x2c_c01241{left:193.920000pt;}
.x2a_c01241{left:203.520000pt;}
.x6_c01241{left:221.440000pt;}
.xe_c01241{left:222.720000pt;}
.x46_c01241{left:231.680000pt;}
.x40_c01241{left:241.920000pt;}
.x1e_c01241{left:260.480000pt;}
.x51_c01241{left:262.400000pt;}
.x3b_c01241{left:270.720000pt;}
.x7_c01241{left:279.680000pt;}
.x4c_c01241{left:281.600000pt;}
.x1f_c01241{left:288.640000pt;}
.x47_c01241{left:289.920000pt;}
.x27_c01241{left:299.520000pt;}
.xf_c01241{left:307.200000pt;}
.x17_c01241{left:308.480000pt;}
.x33_c01241{left:309.760000pt;}
.x52_c01241{left:318.720000pt;}
.x10_c01241{left:337.280000pt;}
.x3c_c01241{left:338.560000pt;}
.x4_c01241{left:346.880000pt;}
.x4d_c01241{left:348.160000pt;}
.x20_c01241{left:355.840000pt;}
.x53_c01241{left:357.760000pt;}
.x57_c01241{left:366.080000pt;}
.x41_c01241{left:376.320000pt;}
.x8_c01241{left:384.000000pt;}
.x11_c01241{left:385.280000pt;}
.x3d_c01241{left:387.840000pt;}
.x18_c01241{left:393.600000pt;}
.x21_c01241{left:394.880000pt;}
.x31_c01241{left:396.160000pt;}
.x4b_c01241{left:405.120000pt;}
.x49_c01241{left:406.400000pt;}
.x1a_c01241{left:412.800000pt;}
.x9_c01241{left:414.080000pt;}
.x54_c01241{left:416.000000pt;}
.x12_c01241{left:423.040000pt;}
.x35_c01241{left:424.960000pt;}
.x4a_c01241{left:433.920000pt;}
.x13_c01241{left:443.520000pt;}
.x3e_c01241{left:444.800000pt;}
.xa_c01241{left:451.840000pt;}
.x55_c01241{left:453.760000pt;}
.x42_c01241{left:461.440000pt;}
.x22_c01241{left:462.720000pt;}
.x4e_c01241{left:464.000000pt;}
.x58_c01241{left:472.320000pt;}
.x14_c01241{left:491.520000pt;}
.x2f_c01241{left:492.800000pt;}
.x2b_c01241{left:501.120000pt;}
.x37_c01241{left:503.040000pt;}
.x32_c01241{left:510.720000pt;}
.x28_c01241{left:512.000000pt;}
.x19_c01241{left:520.320000pt;}
.x43_c01241{left:521.600000pt;}
.x30_c01241{left:531.840000pt;}
.x15_c01241{left:540.800000pt;}
.x3f_c01241{left:551.040000pt;}
.x23_c01241{left:558.720000pt;}
.x56_c01241{left:579.840000pt;}
.x48_c01241{left:588.160000pt;}
.x38_c01241{left:589.440000pt;}
.x24_c01241{left:598.400000pt;}
.x1_c01241{left:607.360000pt;}
.x29_c01241{left:627.840000pt;}
.x36_c01241{left:638.080000pt;}
}





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

.ir_c01242:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01242{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01242;src:url('chunks/assets/font_7b0e44fec24235f24f046b20.woff2')format("woff");}.ff1_c01242{font-family:ff1_c01242;line-height:1.109863;font-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_c01242{transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);}
.m3_c01242{transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);}
.m1c_c01242{transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);}
.m58_c01242{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m54_c01242{transform:matrix(0.230850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230850,0.000000,0.000000,0.250000,0,0);}
.m27_c01242{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m14_c01242{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m29_c01242{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m10_c01242{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m35_c01242{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.mc_c01242{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);}
.m30_c01242{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_c01242{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);}
.m21_c01242{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);}
.m2f_c01242{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);}
.m5e_c01242{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);}
.m42_c01242{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m24_c01242{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);}
.m3e_c01242{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m18_c01242{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);}
.m5d_c01242{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m13_c01242{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m36_c01242{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m4_c01242{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m8_c01242{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mf_c01242{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mb_c01242{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m5f_c01242{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m32_c01242{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01242{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1_c01242{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m9_c01242{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01242{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01242{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m26_c01242{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m56_c01242{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01242{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m20_c01242{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01242{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m5_c01242{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01242{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m19_c01242{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_c01242{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01242{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01242{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01242{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m15_c01242{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);}
.m5a_c01242{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m0_c01242{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m23_c01242{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.ma_c01242{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m22_c01242{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m2_c01242{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m5c_c01242{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m17_c01242{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);}
.m34_c01242{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);}
.m47_c01242{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_c01242{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m6_c01242{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m11_c01242{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m5b_c01242{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);}
.m39_c01242{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);}
.m2d_c01242{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);}
.m38_c01242{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m48_c01242{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01242{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m53_c01242{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);}
.m3c_c01242{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m57_c01242{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);}
.m28_c01242{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m43_c01242{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);}
.m3d_c01242{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);}
.m45_c01242{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01242{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m16_c01242{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);}
.m3a_c01242{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m31_c01242{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);}
.m59_c01242{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m41_c01242{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);}
.m46_c01242{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m52_c01242{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m25_c01242{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);}
.m44_c01242{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01242{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m33_c01242{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);}
.m4b_c01242{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m49_c01242{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01242{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m4f_c01242{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01242{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m55_c01242{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m40_c01242{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m51_c01242{transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);}
.m50_c01242{transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);}
.m37_c01242{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.m4d_c01242{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.v3_c01242{vertical-align:-2.880000px;}
.v0_c01242{vertical-align:0.000000px;}
.v4_c01242{vertical-align:2.880000px;}
.v1_c01242{vertical-align:5.760000px;}
.v2_c01242{vertical-align:14.400000px;}
.ls0_c01242{letter-spacing:0.000000px;}
.sc__c01242{text-shadow:none;}
.sc0_c01242{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01242{-webkit-text-stroke:0px transparent;}
.sc0_c01242{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c01242{word-spacing:0.000000px;}
.ws3_c01242{word-spacing:0.940800px;}
.ws0_c01242{word-spacing:31.698959px;}
.ws4_c01242{word-spacing:44.499600px;}
.ws2_c01242{word-spacing:58.251120px;}
.ws1_c01242{word-spacing:88.658400px;}
.fc0_c01242{color:transparent;}
.fsc_c01242{font-size:11.520000px;}
.fsb_c01242{font-size:23.040000px;}
.fs9_c01242{font-size:34.560000px;}
.fsd_c01242{font-size:40.320000px;}
.fsa_c01242{font-size:43.200000px;}
.fs1_c01242{font-size:46.080000px;}
.fs2_c01242{font-size:48.960000px;}
.fs4_c01242{font-size:51.840000px;}
.fs7_c01242{font-size:54.720000px;}
.fs5_c01242{font-size:57.600000px;}
.fs3_c01242{font-size:60.480000px;}
.fs6_c01242{font-size:63.360000px;}
.fs8_c01242{font-size:66.240000px;}
.fse_c01242{font-size:69.120000px;}
.fs0_c01242{font-size:77.760000px;}
.y0_c01242{bottom:0.000000px;}
.yf5_c01242{bottom:82.800000px;}
.yf6_c01242{bottom:84.240000px;}
.yf2_c01242{bottom:84.960000px;}
.yf3_c01242{bottom:85.680000px;}
.yf4_c01242{bottom:86.400000px;}
.yf1_c01242{bottom:87.120000px;}
.yf0_c01242{bottom:88.560000px;}
.yef_c01242{bottom:89.280000px;}
.yee_c01242{bottom:94.320000px;}
.yed_c01242{bottom:103.680000px;}
.yec_c01242{bottom:104.400000px;}
.yeb_c01242{bottom:105.120000px;}
.yea_c01242{bottom:106.560000px;}
.ye9_c01242{bottom:107.280000px;}
.ye8_c01242{bottom:108.000000px;}
.ye7_c01242{bottom:108.720000px;}
.ye6_c01242{bottom:112.320000px;}
.ye5_c01242{bottom:114.480000px;}
.ye4_c01242{bottom:126.000000px;}
.ye3_c01242{bottom:126.720000px;}
.ye2_c01242{bottom:127.440000px;}
.ye1_c01242{bottom:128.160000px;}
.ye0_c01242{bottom:129.600000px;}
.ydf_c01242{bottom:130.320000px;}
.yde_c01242{bottom:133.200000px;}
.ydc_c01242{bottom:136.080000px;}
.ydd_c01242{bottom:136.800000px;}
.ydb_c01242{bottom:145.440000px;}
.yda_c01242{bottom:147.600000px;}
.yd9_c01242{bottom:149.040000px;}
.yd8_c01242{bottom:151.200000px;}
.yd7_c01242{bottom:151.920000px;}
.yd6_c01242{bottom:152.640000px;}
.yd5_c01242{bottom:155.520000px;}
.yd4_c01242{bottom:159.840000px;}
.yd3_c01242{bottom:168.480000px;}
.yd2_c01242{bottom:169.920000px;}
.yd0_c01242{bottom:172.080000px;}
.ycf_c01242{bottom:172.800000px;}
.yd1_c01242{bottom:173.520000px;}
.yce_c01242{bottom:175.680000px;}
.ycd_c01242{bottom:177.840000px;}
.ycc_c01242{bottom:180.000000px;}
.ycb_c01242{bottom:189.360000px;}
.yca_c01242{bottom:190.800000px;}
.yc8_c01242{bottom:191.520000px;}
.yc7_c01242{bottom:192.240000px;}
.yc9_c01242{bottom:193.680000px;}
.yc6_c01242{bottom:194.400000px;}
.yc5_c01242{bottom:195.120000px;}
.yc4_c01242{bottom:197.280000px;}
.yc3_c01242{bottom:201.600000px;}
.yc2_c01242{bottom:211.680000px;}
.yc0_c01242{bottom:213.120000px;}
.yc1_c01242{bottom:213.840000px;}
.ybf_c01242{bottom:215.280000px;}
.ybe_c01242{bottom:216.720000px;}
.ybd_c01242{bottom:220.320000px;}
.ybc_c01242{bottom:233.280000px;}
.yba_c01242{bottom:234.000000px;}
.yb9_c01242{bottom:235.440000px;}
.ybb_c01242{bottom:236.160000px;}
.yb7_c01242{bottom:236.880000px;}
.yb5_c01242{bottom:237.600000px;}
.yb8_c01242{bottom:238.320000px;}
.yb6_c01242{bottom:239.040000px;}
.yb3_c01242{bottom:241.920000px;}
.yb4_c01242{bottom:242.640000px;}
.yb2_c01242{bottom:254.880000px;}
.yb1_c01242{bottom:257.040000px;}
.yaf_c01242{bottom:257.760000px;}
.yae_c01242{bottom:258.480000px;}
.yb0_c01242{bottom:259.200000px;}
.yad_c01242{bottom:259.920000px;}
.yac_c01242{bottom:261.360000px;}
.yab_c01242{bottom:262.800000px;}
.yaa_c01242{bottom:276.480000px;}
.ya9_c01242{bottom:277.200000px;}
.ya8_c01242{bottom:277.920000px;}
.ya6_c01242{bottom:280.080000px;}
.ya7_c01242{bottom:280.800000px;}
.ya5_c01242{bottom:282.240000px;}
.ya3_c01242{bottom:283.680000px;}
.ya4_c01242{bottom:284.400000px;}
.ya2_c01242{bottom:297.360000px;}
.ya0_c01242{bottom:300.240000px;}
.ya1_c01242{bottom:300.960000px;}
.y9e_c01242{bottom:301.680000px;}
.y9f_c01242{bottom:303.120000px;}
.y9d_c01242{bottom:303.840000px;}
.y9c_c01242{bottom:305.280000px;}
.y9b_c01242{bottom:318.960000px;}
.y9a_c01242{bottom:320.400000px;}
.y98_c01242{bottom:321.120000px;}
.y99_c01242{bottom:321.840000px;}
.y96_c01242{bottom:322.560000px;}
.y95_c01242{bottom:323.280000px;}
.y97_c01242{bottom:324.720000px;}
.y94_c01242{bottom:326.880000px;}
.y93_c01242{bottom:329.040000px;}
.y92_c01242{bottom:341.280000px;}
.y90_c01242{bottom:342.720000px;}
.y91_c01242{bottom:343.440000px;}
.y8e_c01242{bottom:344.160000px;}
.y8d_c01242{bottom:344.880000px;}
.y8f_c01242{bottom:345.600000px;}
.y8c_c01242{bottom:346.320000px;}
.y8b_c01242{bottom:349.920000px;}
.y86_c01242{bottom:372.960000px;}
.y8a_c01242{bottom:374.400000px;}
.y89_c01242{bottom:375.120000px;}
.y88_c01242{bottom:376.560000px;}
.y87_c01242{bottom:377.280000px;}
.y85_c01242{bottom:378.000000px;}
.y84_c01242{bottom:378.720000px;}
.y83_c01242{bottom:381.600000px;}
.y80_c01242{bottom:408.240000px;}
.y82_c01242{bottom:408.960000px;}
.y81_c01242{bottom:409.680000px;}
.y7f_c01242{bottom:410.400000px;}
.y7e_c01242{bottom:411.120000px;}
.y7a_c01242{bottom:439.200000px;}
.y7c_c01242{bottom:439.920000px;}
.y7d_c01242{bottom:440.640000px;}
.y79_c01242{bottom:441.360000px;}
.y7b_c01242{bottom:442.080000px;}
.y76_c01242{bottom:470.160000px;}
.y78_c01242{bottom:470.880000px;}
.y75_c01242{bottom:471.600000px;}
.y77_c01242{bottom:473.040000px;}
.y74_c01242{bottom:473.760000px;}
.y73_c01242{bottom:474.480000px;}
.y72_c01242{bottom:475.200000px;}
.y71_c01242{bottom:475.920000px;}
.y70_c01242{bottom:477.360000px;}
.y6f_c01242{bottom:512.640000px;}
.y6d_c01242{bottom:514.080000px;}
.y6c_c01242{bottom:514.800000px;}
.y6a_c01242{bottom:516.240000px;}
.y6b_c01242{bottom:516.960000px;}
.y6e_c01242{bottom:519.840000px;}
.y69_c01242{bottom:537.840000px;}
.y68_c01242{bottom:538.560000px;}
.y67_c01242{bottom:539.280000px;}
.y66_c01242{bottom:540.000000px;}
.y63_c01242{bottom:577.440000px;}
.y62_c01242{bottom:578.160000px;}
.y65_c01242{bottom:579.600000px;}
.y64_c01242{bottom:580.320000px;}
.y61_c01242{bottom:581.040000px;}
.y60_c01242{bottom:582.480000px;}
.y5e_c01242{bottom:619.920000px;}
.y5b_c01242{bottom:620.640000px;}
.y5c_c01242{bottom:622.080000px;}
.y5d_c01242{bottom:622.800000px;}
.y5f_c01242{bottom:623.520000px;}
.y57_c01242{bottom:663.120000px;}
.y5a_c01242{bottom:663.840000px;}
.y59_c01242{bottom:664.560000px;}
.y58_c01242{bottom:665.280000px;}
.y56_c01242{bottom:666.000000px;}
.y54_c01242{bottom:704.880000px;}
.y53_c01242{bottom:705.600000px;}
.y55_c01242{bottom:706.320000px;}
.y52_c01242{bottom:707.760000px;}
.y51_c01242{bottom:708.480000px;}
.y4f_c01242{bottom:758.880000px;}
.y4d_c01242{bottom:759.600000px;}
.y4e_c01242{bottom:760.320000px;}
.y50_c01242{bottom:761.760000px;}
.y4a_c01242{bottom:804.240000px;}
.y49_c01242{bottom:804.960000px;}
.y4c_c01242{bottom:805.680000px;}
.y4b_c01242{bottom:806.400000px;}
.y45_c01242{bottom:822.960000px;}
.y46_c01242{bottom:823.680000px;}
.y47_c01242{bottom:825.120000px;}
.y48_c01242{bottom:827.280000px;}
.y41_c01242{bottom:845.280000px;}
.y42_c01242{bottom:846.000000px;}
.y3f_c01242{bottom:846.720000px;}
.y40_c01242{bottom:847.440000px;}
.y43_c01242{bottom:848.160000px;}
.y44_c01242{bottom:848.880000px;}
.y3b_c01242{bottom:866.880000px;}
.y39_c01242{bottom:867.600000px;}
.y3a_c01242{bottom:868.320000px;}
.y3e_c01242{bottom:869.040000px;}
.y3c_c01242{bottom:869.760000px;}
.y3d_c01242{bottom:870.480000px;}
.y32_c01242{bottom:887.040000px;}
.y33_c01242{bottom:887.760000px;}
.y34_c01242{bottom:888.480000px;}
.y35_c01242{bottom:889.200000px;}
.y38_c01242{bottom:889.920000px;}
.y37_c01242{bottom:890.640000px;}
.y36_c01242{bottom:891.360000px;}
.y2f_c01242{bottom:908.640000px;}
.y2d_c01242{bottom:910.080000px;}
.y30_c01242{bottom:910.800000px;}
.y2e_c01242{bottom:911.520000px;}
.y31_c01242{bottom:913.680000px;}
.y26_c01242{bottom:928.800000px;}
.y27_c01242{bottom:929.520000px;}
.y28_c01242{bottom:930.240000px;}
.y2a_c01242{bottom:930.960000px;}
.y2b_c01242{bottom:931.680000px;}
.y2c_c01242{bottom:932.400000px;}
.y29_c01242{bottom:933.120000px;}
.y1e_c01242{bottom:950.400000px;}
.y1f_c01242{bottom:951.120000px;}
.y20_c01242{bottom:951.840000px;}
.y21_c01242{bottom:952.560000px;}
.y22_c01242{bottom:953.280000px;}
.y24_c01242{bottom:954.000000px;}
.y25_c01242{bottom:955.440000px;}
.y23_c01242{bottom:956.160000px;}
.y18_c01242{bottom:971.280000px;}
.y19_c01242{bottom:973.440000px;}
.y1c_c01242{bottom:974.880000px;}
.y1a_c01242{bottom:975.600000px;}
.y1d_c01242{bottom:976.320000px;}
.y1b_c01242{bottom:977.040000px;}
.y11_c01242{bottom:995.760000px;}
.y12_c01242{bottom:996.480000px;}
.y14_c01242{bottom:997.200000px;}
.y17_c01242{bottom:997.920000px;}
.y15_c01242{bottom:998.640000px;}
.y13_c01242{bottom:999.360000px;}
.y16_c01242{bottom:1000.080000px;}
.ya_c01242{bottom:1014.480000px;}
.yb_c01242{bottom:1015.920000px;}
.y9_c01242{bottom:1016.640000px;}
.yc_c01242{bottom:1017.360000px;}
.ye_c01242{bottom:1018.800000px;}
.yd_c01242{bottom:1019.520000px;}
.yf_c01242{bottom:1020.960000px;}
.y10_c01242{bottom:1021.680000px;}
.y2_c01242{bottom:1048.320000px;}
.y3_c01242{bottom:1049.040000px;}
.y4_c01242{bottom:1050.480000px;}
.y6_c01242{bottom:1051.200000px;}
.y5_c01242{bottom:1051.920000px;}
.y8_c01242{bottom:1052.640000px;}
.y7_c01242{bottom:1053.360000px;}
.y1_c01242{bottom:1087.920000px;}
.h10_c01242{height:10.366875px;}
.hf_c01242{height:20.733750px;}
.hc_c01242{height:31.100625px;}
.h11_c01242{height:36.284062px;}
.he_c01242{height:38.875781px;}
.hd_c01242{height:41.179219px;}
.h3_c01242{height:41.467500px;}
.h4_c01242{height:44.059219px;}
.h6_c01242{height:46.650937px;}
.h9_c01242{height:49.242656px;}
.h7_c01242{height:51.834375px;}
.h12_c01242{height:52.122656px;}
.h5_c01242{height:54.426094px;}
.hb_c01242{height:55.867500px;}
.h8_c01242{height:57.017812px;}
.ha_c01242{height:59.609531px;}
.h13_c01242{height:62.201250px;}
.h2_c01242{height:69.976406px;}
.h1_c01242{height:1162.500000px;}
.h0_c01242{height:1162.800000px;}
.w1_c01242{width:787.500000px;}
.w0_c01242{width:787.680000px;}
.x0_c01242{left:0.000000px;}
.x2_c01242{left:69.120000px;}
.x22_c01242{left:70.560000px;}
.x50_c01242{left:72.000000px;}
.xe_c01242{left:79.920000px;}
.x48_c01242{left:81.360000px;}
.x3b_c01242{left:90.000000px;}
.x3_c01242{left:99.360000px;}
.x4e_c01242{left:100.800000px;}
.x1c_c01242{left:108.720000px;}
.xf_c01242{left:110.160000px;}
.x4a_c01242{left:111.600000px;}
.x17_c01242{left:120.240000px;}
.x51_c01242{left:121.680000px;}
.x26_c01242{left:131.040000px;}
.x23_c01242{left:141.120000px;}
.x4f_c01242{left:142.560000px;}
.x10_c01242{left:151.200000px;}
.x4b_c01242{left:152.640000px;}
.x4_c01242{left:171.360000px;}
.x2a_c01242{left:172.800000px;}
.x27_c01242{left:183.600000px;}
.x2b_c01242{left:204.480000px;}
.x42_c01242{left:213.840000px;}
.x5_c01242{left:215.280000px;}
.x11_c01242{left:225.360000px;}
.x49_c01242{left:226.800000px;}
.x37_c01242{left:237.600000px;}
.x1d_c01242{left:248.400000px;}
.x45_c01242{left:259.200000px;}
.x30_c01242{left:267.840000px;}
.x6_c01242{left:290.160000px;}
.x18_c01242{left:291.600000px;}
.x3c_c01242{left:300.960000px;}
.x43_c01242{left:302.400000px;}
.x38_c01242{left:313.200000px;}
.x7_c01242{left:322.560000px;}
.x3d_c01242{left:324.000000px;}
.x2e_c01242{left:332.640000px;}
.x19_c01242{left:334.080000px;}
.x1e_c01242{left:343.440000px;}
.x12_c01242{left:344.880000px;}
.x31_c01242{left:354.240000px;}
.x46_c01242{left:367.200000px;}
.x13_c01242{left:377.280000px;}
.x36_c01242{left:388.800000px;}
.x32_c01242{left:397.440000px;}
.x8_c01242{left:398.880000px;}
.x39_c01242{left:419.040000px;}
.x34_c01242{left:420.480000px;}
.x47_c01242{left:430.560000px;}
.x9_c01242{left:442.080000px;}
.x4c_c01242{left:443.520000px;}
.x3e_c01242{left:451.440000px;}
.x28_c01242{left:453.600000px;}
.x33_c01242{left:473.760000px;}
.x2c_c01242{left:483.840000px;}
.x35_c01242{left:486.000000px;}
.x3a_c01242{left:495.360000px;}
.x44_c01242{left:496.800000px;}
.x29_c01242{left:508.320000px;}
.xa_c01242{left:518.400000px;}
.x3f_c01242{left:539.280000px;}
.xb_c01242{left:550.800000px;}
.x4d_c01242{left:552.240000px;}
.x1a_c01242{left:561.600000px;}
.x24_c01242{left:563.040000px;}
.x21_c01242{left:572.400000px;}
.x14_c01242{left:573.840000px;}
.x1b_c01242{left:595.440000px;}
.x2f_c01242{left:604.080000px;}
.x15_c01242{left:605.520000px;}
.xc_c01242{left:627.120000px;}
.x16_c01242{left:628.560000px;}
.x2d_c01242{left:638.640000px;}
.x1_c01242{left:654.480000px;}
.x40_c01242{left:659.520000px;}
.x25_c01242{left:660.960000px;}
.xd_c01242{left:670.320000px;}
.x1f_c01242{left:671.760000px;}
.x41_c01242{left:682.560000px;}
.x20_c01242{left:704.160000px;}
@media print{
.v3_c01242{vertical-align:-2.560000pt;}
.v0_c01242{vertical-align:0.000000pt;}
.v4_c01242{vertical-align:2.560000pt;}
.v1_c01242{vertical-align:5.120000pt;}
.v2_c01242{vertical-align:12.800000pt;}
.ls0_c01242{letter-spacing:0.000000pt;}
.ws5_c01242{word-spacing:0.000000pt;}
.ws3_c01242{word-spacing:0.836267pt;}
.ws0_c01242{word-spacing:28.176852pt;}
.ws4_c01242{word-spacing:39.555200pt;}
.ws2_c01242{word-spacing:51.778773pt;}
.ws1_c01242{word-spacing:78.807467pt;}
.fsc_c01242{font-size:10.240000pt;}
.fsb_c01242{font-size:20.480000pt;}
.fs9_c01242{font-size:30.720000pt;}
.fsd_c01242{font-size:35.840000pt;}
.fsa_c01242{font-size:38.400000pt;}
.fs1_c01242{font-size:40.960000pt;}
.fs2_c01242{font-size:43.520000pt;}
.fs4_c01242{font-size:46.080000pt;}
.fs7_c01242{font-size:48.640000pt;}
.fs5_c01242{font-size:51.200000pt;}
.fs3_c01242{font-size:53.760000pt;}
.fs6_c01242{font-size:56.320000pt;}
.fs8_c01242{font-size:58.880000pt;}
.fse_c01242{font-size:61.440000pt;}
.fs0_c01242{font-size:69.120000pt;}
.y0_c01242{bottom:0.000000pt;}
.yf5_c01242{bottom:73.600000pt;}
.yf6_c01242{bottom:74.880000pt;}
.yf2_c01242{bottom:75.520000pt;}
.yf3_c01242{bottom:76.160000pt;}
.yf4_c01242{bottom:76.800000pt;}
.yf1_c01242{bottom:77.440000pt;}
.yf0_c01242{bottom:78.720000pt;}
.yef_c01242{bottom:79.360000pt;}
.yee_c01242{bottom:83.840000pt;}
.yed_c01242{bottom:92.160000pt;}
.yec_c01242{bottom:92.800000pt;}
.yeb_c01242{bottom:93.440000pt;}
.yea_c01242{bottom:94.720000pt;}
.ye9_c01242{bottom:95.360000pt;}
.ye8_c01242{bottom:96.000000pt;}
.ye7_c01242{bottom:96.640000pt;}
.ye6_c01242{bottom:99.840000pt;}
.ye5_c01242{bottom:101.760000pt;}
.ye4_c01242{bottom:112.000000pt;}
.ye3_c01242{bottom:112.640000pt;}
.ye2_c01242{bottom:113.280000pt;}
.ye1_c01242{bottom:113.920000pt;}
.ye0_c01242{bottom:115.200000pt;}
.ydf_c01242{bottom:115.840000pt;}
.yde_c01242{bottom:118.400000pt;}
.ydc_c01242{bottom:120.960000pt;}
.ydd_c01242{bottom:121.600000pt;}
.ydb_c01242{bottom:129.280000pt;}
.yda_c01242{bottom:131.200000pt;}
.yd9_c01242{bottom:132.480000pt;}
.yd8_c01242{bottom:134.400000pt;}
.yd7_c01242{bottom:135.040000pt;}
.yd6_c01242{bottom:135.680000pt;}
.yd5_c01242{bottom:138.240000pt;}
.yd4_c01242{bottom:142.080000pt;}
.yd3_c01242{bottom:149.760000pt;}
.yd2_c01242{bottom:151.040000pt;}
.yd0_c01242{bottom:152.960000pt;}
.ycf_c01242{bottom:153.600000pt;}
.yd1_c01242{bottom:154.240000pt;}
.yce_c01242{bottom:156.160000pt;}
.ycd_c01242{bottom:158.080000pt;}
.ycc_c01242{bottom:160.000000pt;}
.ycb_c01242{bottom:168.320000pt;}
.yca_c01242{bottom:169.600000pt;}
.yc8_c01242{bottom:170.240000pt;}
.yc7_c01242{bottom:170.880000pt;}
.yc9_c01242{bottom:172.160000pt;}
.yc6_c01242{bottom:172.800000pt;}
.yc5_c01242{bottom:173.440000pt;}
.yc4_c01242{bottom:175.360000pt;}
.yc3_c01242{bottom:179.200000pt;}
.yc2_c01242{bottom:188.160000pt;}
.yc0_c01242{bottom:189.440000pt;}
.yc1_c01242{bottom:190.080000pt;}
.ybf_c01242{bottom:191.360000pt;}
.ybe_c01242{bottom:192.640000pt;}
.ybd_c01242{bottom:195.840000pt;}
.ybc_c01242{bottom:207.360000pt;}
.yba_c01242{bottom:208.000000pt;}
.yb9_c01242{bottom:209.280000pt;}
.ybb_c01242{bottom:209.920000pt;}
.yb7_c01242{bottom:210.560000pt;}
.yb5_c01242{bottom:211.200000pt;}
.yb8_c01242{bottom:211.840000pt;}
.yb6_c01242{bottom:212.480000pt;}
.yb3_c01242{bottom:215.040000pt;}
.yb4_c01242{bottom:215.680000pt;}
.yb2_c01242{bottom:226.560000pt;}
.yb1_c01242{bottom:228.480000pt;}
.yaf_c01242{bottom:229.120000pt;}
.yae_c01242{bottom:229.760000pt;}
.yb0_c01242{bottom:230.400000pt;}
.yad_c01242{bottom:231.040000pt;}
.yac_c01242{bottom:232.320000pt;}
.yab_c01242{bottom:233.600000pt;}
.yaa_c01242{bottom:245.760000pt;}
.ya9_c01242{bottom:246.400000pt;}
.ya8_c01242{bottom:247.040000pt;}
.ya6_c01242{bottom:248.960000pt;}
.ya7_c01242{bottom:249.600000pt;}
.ya5_c01242{bottom:250.880000pt;}
.ya3_c01242{bottom:252.160000pt;}
.ya4_c01242{bottom:252.800000pt;}
.ya2_c01242{bottom:264.320000pt;}
.ya0_c01242{bottom:266.880000pt;}
.ya1_c01242{bottom:267.520000pt;}
.y9e_c01242{bottom:268.160000pt;}
.y9f_c01242{bottom:269.440000pt;}
.y9d_c01242{bottom:270.080000pt;}
.y9c_c01242{bottom:271.360000pt;}
.y9b_c01242{bottom:283.520000pt;}
.y9a_c01242{bottom:284.800000pt;}
.y98_c01242{bottom:285.440000pt;}
.y99_c01242{bottom:286.080000pt;}
.y96_c01242{bottom:286.720000pt;}
.y95_c01242{bottom:287.360000pt;}
.y97_c01242{bottom:288.640000pt;}
.y94_c01242{bottom:290.560000pt;}
.y93_c01242{bottom:292.480000pt;}
.y92_c01242{bottom:303.360000pt;}
.y90_c01242{bottom:304.640000pt;}
.y91_c01242{bottom:305.280000pt;}
.y8e_c01242{bottom:305.920000pt;}
.y8d_c01242{bottom:306.560000pt;}
.y8f_c01242{bottom:307.200000pt;}
.y8c_c01242{bottom:307.840000pt;}
.y8b_c01242{bottom:311.040000pt;}
.y86_c01242{bottom:331.520000pt;}
.y8a_c01242{bottom:332.800000pt;}
.y89_c01242{bottom:333.440000pt;}
.y88_c01242{bottom:334.720000pt;}
.y87_c01242{bottom:335.360000pt;}
.y85_c01242{bottom:336.000000pt;}
.y84_c01242{bottom:336.640000pt;}
.y83_c01242{bottom:339.200000pt;}
.y80_c01242{bottom:362.880000pt;}
.y82_c01242{bottom:363.520000pt;}
.y81_c01242{bottom:364.160000pt;}
.y7f_c01242{bottom:364.800000pt;}
.y7e_c01242{bottom:365.440000pt;}
.y7a_c01242{bottom:390.400000pt;}
.y7c_c01242{bottom:391.040000pt;}
.y7d_c01242{bottom:391.680000pt;}
.y79_c01242{bottom:392.320000pt;}
.y7b_c01242{bottom:392.960000pt;}
.y76_c01242{bottom:417.920000pt;}
.y78_c01242{bottom:418.560000pt;}
.y75_c01242{bottom:419.200000pt;}
.y77_c01242{bottom:420.480000pt;}
.y74_c01242{bottom:421.120000pt;}
.y73_c01242{bottom:421.760000pt;}
.y72_c01242{bottom:422.400000pt;}
.y71_c01242{bottom:423.040000pt;}
.y70_c01242{bottom:424.320000pt;}
.y6f_c01242{bottom:455.680000pt;}
.y6d_c01242{bottom:456.960000pt;}
.y6c_c01242{bottom:457.600000pt;}
.y6a_c01242{bottom:458.880000pt;}
.y6b_c01242{bottom:459.520000pt;}
.y6e_c01242{bottom:462.080000pt;}
.y69_c01242{bottom:478.080000pt;}
.y68_c01242{bottom:478.720000pt;}
.y67_c01242{bottom:479.360000pt;}
.y66_c01242{bottom:480.000000pt;}
.y63_c01242{bottom:513.280000pt;}
.y62_c01242{bottom:513.920000pt;}
.y65_c01242{bottom:515.200000pt;}
.y64_c01242{bottom:515.840000pt;}
.y61_c01242{bottom:516.480000pt;}
.y60_c01242{bottom:517.760000pt;}
.y5e_c01242{bottom:551.040000pt;}
.y5b_c01242{bottom:551.680000pt;}
.y5c_c01242{bottom:552.960000pt;}
.y5d_c01242{bottom:553.600000pt;}
.y5f_c01242{bottom:554.240000pt;}
.y57_c01242{bottom:589.440000pt;}
.y5a_c01242{bottom:590.080000pt;}
.y59_c01242{bottom:590.720000pt;}
.y58_c01242{bottom:591.360000pt;}
.y56_c01242{bottom:592.000000pt;}
.y54_c01242{bottom:626.560000pt;}
.y53_c01242{bottom:627.200000pt;}
.y55_c01242{bottom:627.840000pt;}
.y52_c01242{bottom:629.120000pt;}
.y51_c01242{bottom:629.760000pt;}
.y4f_c01242{bottom:674.560000pt;}
.y4d_c01242{bottom:675.200000pt;}
.y4e_c01242{bottom:675.840000pt;}
.y50_c01242{bottom:677.120000pt;}
.y4a_c01242{bottom:714.880000pt;}
.y49_c01242{bottom:715.520000pt;}
.y4c_c01242{bottom:716.160000pt;}
.y4b_c01242{bottom:716.800000pt;}
.y45_c01242{bottom:731.520000pt;}
.y46_c01242{bottom:732.160000pt;}
.y47_c01242{bottom:733.440000pt;}
.y48_c01242{bottom:735.360000pt;}
.y41_c01242{bottom:751.360000pt;}
.y42_c01242{bottom:752.000000pt;}
.y3f_c01242{bottom:752.640000pt;}
.y40_c01242{bottom:753.280000pt;}
.y43_c01242{bottom:753.920000pt;}
.y44_c01242{bottom:754.560000pt;}
.y3b_c01242{bottom:770.560000pt;}
.y39_c01242{bottom:771.200000pt;}
.y3a_c01242{bottom:771.840000pt;}
.y3e_c01242{bottom:772.480000pt;}
.y3c_c01242{bottom:773.120000pt;}
.y3d_c01242{bottom:773.760000pt;}
.y32_c01242{bottom:788.480000pt;}
.y33_c01242{bottom:789.120000pt;}
.y34_c01242{bottom:789.760000pt;}
.y35_c01242{bottom:790.400000pt;}
.y38_c01242{bottom:791.040000pt;}
.y37_c01242{bottom:791.680000pt;}
.y36_c01242{bottom:792.320000pt;}
.y2f_c01242{bottom:807.680000pt;}
.y2d_c01242{bottom:808.960000pt;}
.y30_c01242{bottom:809.600000pt;}
.y2e_c01242{bottom:810.240000pt;}
.y31_c01242{bottom:812.160000pt;}
.y26_c01242{bottom:825.600000pt;}
.y27_c01242{bottom:826.240000pt;}
.y28_c01242{bottom:826.880000pt;}
.y2a_c01242{bottom:827.520000pt;}
.y2b_c01242{bottom:828.160000pt;}
.y2c_c01242{bottom:828.800000pt;}
.y29_c01242{bottom:829.440000pt;}
.y1e_c01242{bottom:844.800000pt;}
.y1f_c01242{bottom:845.440000pt;}
.y20_c01242{bottom:846.080000pt;}
.y21_c01242{bottom:846.720000pt;}
.y22_c01242{bottom:847.360000pt;}
.y24_c01242{bottom:848.000000pt;}
.y25_c01242{bottom:849.280000pt;}
.y23_c01242{bottom:849.920000pt;}
.y18_c01242{bottom:863.360000pt;}
.y19_c01242{bottom:865.280000pt;}
.y1c_c01242{bottom:866.560000pt;}
.y1a_c01242{bottom:867.200000pt;}
.y1d_c01242{bottom:867.840000pt;}
.y1b_c01242{bottom:868.480000pt;}
.y11_c01242{bottom:885.120000pt;}
.y12_c01242{bottom:885.760000pt;}
.y14_c01242{bottom:886.400000pt;}
.y17_c01242{bottom:887.040000pt;}
.y15_c01242{bottom:887.680000pt;}
.y13_c01242{bottom:888.320000pt;}
.y16_c01242{bottom:888.960000pt;}
.ya_c01242{bottom:901.760000pt;}
.yb_c01242{bottom:903.040000pt;}
.y9_c01242{bottom:903.680000pt;}
.yc_c01242{bottom:904.320000pt;}
.ye_c01242{bottom:905.600000pt;}
.yd_c01242{bottom:906.240000pt;}
.yf_c01242{bottom:907.520000pt;}
.y10_c01242{bottom:908.160000pt;}
.y2_c01242{bottom:931.840000pt;}
.y3_c01242{bottom:932.480000pt;}
.y4_c01242{bottom:933.760000pt;}
.y6_c01242{bottom:934.400000pt;}
.y5_c01242{bottom:935.040000pt;}
.y8_c01242{bottom:935.680000pt;}
.y7_c01242{bottom:936.320000pt;}
.y1_c01242{bottom:967.040000pt;}
.h10_c01242{height:9.215000pt;}
.hf_c01242{height:18.430000pt;}
.hc_c01242{height:27.645000pt;}
.h11_c01242{height:32.252500pt;}
.he_c01242{height:34.556250pt;}
.hd_c01242{height:36.603750pt;}
.h3_c01242{height:36.860000pt;}
.h4_c01242{height:39.163750pt;}
.h6_c01242{height:41.467500pt;}
.h9_c01242{height:43.771250pt;}
.h7_c01242{height:46.075000pt;}
.h12_c01242{height:46.331250pt;}
.h5_c01242{height:48.378750pt;}
.hb_c01242{height:49.660000pt;}
.h8_c01242{height:50.682500pt;}
.ha_c01242{height:52.986250pt;}
.h13_c01242{height:55.290000pt;}
.h2_c01242{height:62.201250pt;}
.h1_c01242{height:1033.333333pt;}
.h0_c01242{height:1033.600000pt;}
.w1_c01242{width:700.000000pt;}
.w0_c01242{width:700.160000pt;}
.x0_c01242{left:0.000000pt;}
.x2_c01242{left:61.440000pt;}
.x22_c01242{left:62.720000pt;}
.x50_c01242{left:64.000000pt;}
.xe_c01242{left:71.040000pt;}
.x48_c01242{left:72.320000pt;}
.x3b_c01242{left:80.000000pt;}
.x3_c01242{left:88.320000pt;}
.x4e_c01242{left:89.600000pt;}
.x1c_c01242{left:96.640000pt;}
.xf_c01242{left:97.920000pt;}
.x4a_c01242{left:99.200000pt;}
.x17_c01242{left:106.880000pt;}
.x51_c01242{left:108.160000pt;}
.x26_c01242{left:116.480000pt;}
.x23_c01242{left:125.440000pt;}
.x4f_c01242{left:126.720000pt;}
.x10_c01242{left:134.400000pt;}
.x4b_c01242{left:135.680000pt;}
.x4_c01242{left:152.320000pt;}
.x2a_c01242{left:153.600000pt;}
.x27_c01242{left:163.200000pt;}
.x2b_c01242{left:181.760000pt;}
.x42_c01242{left:190.080000pt;}
.x5_c01242{left:191.360000pt;}
.x11_c01242{left:200.320000pt;}
.x49_c01242{left:201.600000pt;}
.x37_c01242{left:211.200000pt;}
.x1d_c01242{left:220.800000pt;}
.x45_c01242{left:230.400000pt;}
.x30_c01242{left:238.080000pt;}
.x6_c01242{left:257.920000pt;}
.x18_c01242{left:259.200000pt;}
.x3c_c01242{left:267.520000pt;}
.x43_c01242{left:268.800000pt;}
.x38_c01242{left:278.400000pt;}
.x7_c01242{left:286.720000pt;}
.x3d_c01242{left:288.000000pt;}
.x2e_c01242{left:295.680000pt;}
.x19_c01242{left:296.960000pt;}
.x1e_c01242{left:305.280000pt;}
.x12_c01242{left:306.560000pt;}
.x31_c01242{left:314.880000pt;}
.x46_c01242{left:326.400000pt;}
.x13_c01242{left:335.360000pt;}
.x36_c01242{left:345.600000pt;}
.x32_c01242{left:353.280000pt;}
.x8_c01242{left:354.560000pt;}
.x39_c01242{left:372.480000pt;}
.x34_c01242{left:373.760000pt;}
.x47_c01242{left:382.720000pt;}
.x9_c01242{left:392.960000pt;}
.x4c_c01242{left:394.240000pt;}
.x3e_c01242{left:401.280000pt;}
.x28_c01242{left:403.200000pt;}
.x33_c01242{left:421.120000pt;}
.x2c_c01242{left:430.080000pt;}
.x35_c01242{left:432.000000pt;}
.x3a_c01242{left:440.320000pt;}
.x44_c01242{left:441.600000pt;}
.x29_c01242{left:451.840000pt;}
.xa_c01242{left:460.800000pt;}
.x3f_c01242{left:479.360000pt;}
.xb_c01242{left:489.600000pt;}
.x4d_c01242{left:490.880000pt;}
.x1a_c01242{left:499.200000pt;}
.x24_c01242{left:500.480000pt;}
.x21_c01242{left:508.800000pt;}
.x14_c01242{left:510.080000pt;}
.x1b_c01242{left:529.280000pt;}
.x2f_c01242{left:536.960000pt;}
.x15_c01242{left:538.240000pt;}
.xc_c01242{left:557.440000pt;}
.x16_c01242{left:558.720000pt;}
.x2d_c01242{left:567.680000pt;}
.x1_c01242{left:581.760000pt;}
.x40_c01242{left:586.240000pt;}
.x25_c01242{left:587.520000pt;}
.xd_c01242{left:595.840000pt;}
.x1f_c01242{left:597.120000pt;}
.x41_c01242{left:606.720000pt;}
.x20_c01242{left:625.920000pt;}
}





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

.ir_c01243:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01243{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01243;src:url('chunks/assets/font_568f641b5aeff06fa272b82d.woff2')format("woff");}.ff1_c01243{font-family:ff1_c01243;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m47_c01243{transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);}
.m4a_c01243{transform:matrix(0.166175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166175,0.000000,0.000000,0.250000,0,0);}
.m4d_c01243{transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);}
.m4b_c01243{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m3e_c01243{transform:matrix(0.236200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236200,0.000000,0.000000,0.250000,0,0);}
.m4f_c01243{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m6a_c01243{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m43_c01243{transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);}
.m64_c01243{transform:matrix(0.243150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243150,0.000000,0.000000,0.250000,0,0);}
.m6f_c01243{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m3f_c01243{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m56_c01243{transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);}
.m5e_c01243{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m55_c01243{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m2_c01243{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m6b_c01243{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);}
.m30_c01243{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m4_c01243{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);}
.m53_c01243{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);}
.m54_c01243{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);}
.m4e_c01243{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);}
.m52_c01243{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);}
.m48_c01243{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);}
.m50_c01243{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m6_c01243{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);}
.m4c_c01243{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);}
.m2f_c01243{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m67_c01243{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);}
.m65_c01243{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01243{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m5b_c01243{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01243{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m41_c01243{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m27_c01243{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m68_c01243{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m34_c01243{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m0_c01243{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m59_c01243{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m51_c01243{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m66_c01243{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m39_c01243{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m36_c01243{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m38_c01243{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m3_c01243{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);}
.m2d_c01243{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m13_c01243{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mf_c01243{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);}
.m57_c01243{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);}
.m35_c01243{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1_c01243{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);}
.m70_c01243{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01243{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_c01243{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m8_c01243{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m15_c01243{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m49_c01243{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);}
.m69_c01243{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);}
.m6d_c01243{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.ma_c01243{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m42_c01243{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);}
.m1e_c01243{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);}
.m7_c01243{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);}
.m5_c01243{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m25_c01243{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);}
.m3a_c01243{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m40_c01243{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);}
.m2a_c01243{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01243{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m10_c01243{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m72_c01243{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01243{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);}
.m2c_c01243{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01243{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);}
.m44_c01243{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m58_c01243{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);}
.m17_c01243{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);}
.m71_c01243{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m22_c01243{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m32_c01243{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m26_c01243{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01243{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01243{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);}
.m60_c01243{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);}
.m33_c01243{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m31_c01243{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m9_c01243{transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);}
.m28_c01243{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m5d_c01243{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m16_c01243{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m11_c01243{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m29_c01243{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m23_c01243{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m18_c01243{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);}
.m5f_c01243{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.mc_c01243{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m19_c01243{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);}
.m6c_c01243{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m20_c01243{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m14_c01243{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);}
.m12_c01243{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.mb_c01243{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m24_c01243{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.me_c01243{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m46_c01243{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m21_c01243{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m62_c01243{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.md_c01243{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);}
.m37_c01243{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m63_c01243{transform:matrix(0.700000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.700000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.700000,0.000000,0.000000,0.250000,0,0);}
.m45_c01243{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.m61_c01243{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m5a_c01243{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);}
.m5c_c01243{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);}
.m2b_c01243{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);}
.m6e_c01243{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.v1_c01243{vertical-align:-14.400000px;}
.v0_c01243{vertical-align:0.000000px;}
.ls1_c01243{letter-spacing:0.000000px;}
.ls0_c01243{letter-spacing:82.379520px;}
.sc__c01243{text-shadow:none;}
.sc0_c01243{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01243{-webkit-text-stroke:0px transparent;}
.sc0_c01243{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01243{word-spacing:0.000000px;}
.fc0_c01243{color:transparent;}
.fs10_c01243{font-size:14.400000px;}
.fsf_c01243{font-size:17.280000px;}
.fse_c01243{font-size:20.160000px;}
.fsd_c01243{font-size:23.040000px;}
.fs6_c01243{font-size:34.560000px;}
.fsc_c01243{font-size:37.440000px;}
.fs9_c01243{font-size:43.200000px;}
.fs7_c01243{font-size:46.080000px;}
.fs8_c01243{font-size:48.960000px;}
.fs1_c01243{font-size:51.840000px;}
.fs5_c01243{font-size:54.720000px;}
.fs2_c01243{font-size:57.600000px;}
.fs0_c01243{font-size:60.480000px;}
.fs4_c01243{font-size:63.360000px;}
.fsb_c01243{font-size:66.240000px;}
.fs3_c01243{font-size:69.120000px;}
.fsa_c01243{font-size:74.880000px;}
.y0_c01243{bottom:0.000000px;}
.yd3_c01243{bottom:58.320000px;}
.yaa_c01243{bottom:61.200000px;}
.yc0_c01243{bottom:62.640000px;}
.ya1_c01243{bottom:63.360000px;}
.yd2_c01243{bottom:103.680000px;}
.yd1_c01243{bottom:104.400000px;}
.ydf_c01243{bottom:123.840000px;}
.yd0_c01243{bottom:124.560000px;}
.yb8_c01243{bottom:126.000000px;}
.ya0_c01243{bottom:127.440000px;}
.y9f_c01243{bottom:128.160000px;}
.ya9_c01243{bottom:128.880000px;}
.y77_c01243{bottom:130.320000px;}
.y69_c01243{bottom:133.920000px;}
.ye9_c01243{bottom:144.000000px;}
.ycf_c01243{bottom:145.440000px;}
.yb7_c01243{bottom:147.600000px;}
.y9e_c01243{bottom:148.320000px;}
.y9d_c01243{bottom:149.040000px;}
.y9c_c01243{bottom:150.480000px;}
.y76_c01243{bottom:152.640000px;}
.y68_c01243{bottom:154.800000px;}
.y67_c01243{bottom:158.400000px;}
.yde_c01243{bottom:166.320000px;}
.yce_c01243{bottom:167.760000px;}
.yb6_c01243{bottom:168.480000px;}
.ya8_c01243{bottom:169.200000px;}
.ydd_c01243{bottom:169.920000px;}
.y9b_c01243{bottom:170.640000px;}
.y9a_c01243{bottom:171.360000px;}
.y66_c01243{bottom:174.960000px;}
.y65_c01243{bottom:177.120000px;}
.ye8_c01243{bottom:187.920000px;}
.ydc_c01243{bottom:188.640000px;}
.ybf_c01243{bottom:189.360000px;}
.yb5_c01243{bottom:190.800000px;}
.ycd_c01243{bottom:191.520000px;}
.y99_c01243{bottom:192.240000px;}
.ya7_c01243{bottom:192.960000px;}
.y75_c01243{bottom:195.120000px;}
.y63_c01243{bottom:198.000000px;}
.y64_c01243{bottom:198.720000px;}
.ye7_c01243{bottom:208.080000px;}
.ycb_c01243{bottom:210.240000px;}
.ycc_c01243{bottom:210.960000px;}
.yb4_c01243{bottom:211.680000px;}
.y97_c01243{bottom:213.120000px;}
.y98_c01243{bottom:213.840000px;}
.y74_c01243{bottom:216.720000px;}
.y61_c01243{bottom:218.160000px;}
.y62_c01243{bottom:219.600000px;}
.ydb_c01243{bottom:231.120000px;}
.yca_c01243{bottom:231.840000px;}
.yb3_c01243{bottom:232.560000px;}
.ya6_c01243{bottom:233.280000px;}
.y95_c01243{bottom:234.000000px;}
.y96_c01243{bottom:234.720000px;}
.y73_c01243{bottom:236.160000px;}
.y60_c01243{bottom:238.320000px;}
.y72_c01243{bottom:239.040000px;}
.y5f_c01243{bottom:242.640000px;}
.yda_c01243{bottom:252.720000px;}
.yc9_c01243{bottom:253.440000px;}
.yb2_c01243{bottom:254.160000px;}
.y93_c01243{bottom:255.600000px;}
.y94_c01243{bottom:256.320000px;}
.y71_c01243{bottom:257.760000px;}
.y5e_c01243{bottom:259.200000px;}
.y5d_c01243{bottom:263.520000px;}
.yd9_c01243{bottom:273.600000px;}
.yc8_c01243{bottom:274.320000px;}
.ya5_c01243{bottom:275.760000px;}
.ybe_c01243{bottom:276.480000px;}
.y92_c01243{bottom:277.200000px;}
.y91_c01243{bottom:277.920000px;}
.y5c_c01243{bottom:280.800000px;}
.y5b_c01243{bottom:284.400000px;}
.ye6_c01243{bottom:294.480000px;}
.ye5_c01243{bottom:295.200000px;}
.yb1_c01243{bottom:296.640000px;}
.y90_c01243{bottom:298.080000px;}
.y8f_c01243{bottom:298.800000px;}
.y70_c01243{bottom:299.520000px;}
.y59_c01243{bottom:303.120000px;}
.y5a_c01243{bottom:303.840000px;}
.ye4_c01243{bottom:316.080000px;}
.yd8_c01243{bottom:316.800000px;}
.ybd_c01243{bottom:317.520000px;}
.yc7_c01243{bottom:318.240000px;}
.ya4_c01243{bottom:318.960000px;}
.y8e_c01243{bottom:320.400000px;}
.yb0_c01243{bottom:321.120000px;}
.y6f_c01243{bottom:322.560000px;}
.y58_c01243{bottom:324.720000px;}
.y57_c01243{bottom:326.160000px;}
.ye3_c01243{bottom:337.680000px;}
.yd7_c01243{bottom:338.400000px;}
.ybc_c01243{bottom:339.120000px;}
.yaf_c01243{bottom:339.840000px;}
.y8d_c01243{bottom:340.560000px;}
.y8c_c01243{bottom:342.000000px;}
.y56_c01243{bottom:343.440000px;}
.y6e_c01243{bottom:344.160000px;}
.y55_c01243{bottom:345.600000px;}
.ye2_c01243{bottom:359.280000px;}
.yd6_c01243{bottom:360.000000px;}
.yc6_c01243{bottom:360.720000px;}
.ya3_c01243{bottom:361.440000px;}
.yae_c01243{bottom:362.160000px;}
.y8b_c01243{bottom:362.880000px;}
.y6d_c01243{bottom:363.600000px;}
.y54_c01243{bottom:365.040000px;}
.y53_c01243{bottom:366.480000px;}
.yd5_c01243{bottom:381.600000px;}
.yad_c01243{bottom:382.320000px;}
.ye1_c01243{bottom:383.040000px;}
.y8a_c01243{bottom:383.760000px;}
.y89_c01243{bottom:384.480000px;}
.y52_c01243{bottom:385.920000px;}
.y6c_c01243{bottom:386.640000px;}
.y51_c01243{bottom:387.360000px;}
.yc4_c01243{bottom:402.480000px;}
.ybb_c01243{bottom:403.200000px;}
.y87_c01243{bottom:404.640000px;}
.yc5_c01243{bottom:405.360000px;}
.y88_c01243{bottom:406.080000px;}
.y50_c01243{bottom:406.800000px;}
.y4f_c01243{bottom:408.960000px;}
.yd4_c01243{bottom:424.080000px;}
.yba_c01243{bottom:424.800000px;}
.ya2_c01243{bottom:426.240000px;}
.y85_c01243{bottom:426.960000px;}
.y6b_c01243{bottom:427.680000px;}
.yac_c01243{bottom:428.400000px;}
.y86_c01243{bottom:429.120000px;}
.y84_c01243{bottom:429.840000px;}
.y4e_c01243{bottom:432.000000px;}
.ye0_c01243{bottom:444.960000px;}
.yb9_c01243{bottom:446.400000px;}
.yab_c01243{bottom:447.120000px;}
.y6a_c01243{bottom:447.840000px;}
.yc3_c01243{bottom:448.560000px;}
.y4d_c01243{bottom:450.720000px;}
.y4c_c01243{bottom:452.880000px;}
.yc1_c01243{bottom:478.080000px;}
.y83_c01243{bottom:478.800000px;}
.y4b_c01243{bottom:479.520000px;}
.y49_c01243{bottom:480.240000px;}
.y4a_c01243{bottom:480.960000px;}
.y48_c01243{bottom:481.680000px;}
.y47_c01243{bottom:483.120000px;}
.y46_c01243{bottom:484.560000px;}
.y36_c01243{bottom:525.600000px;}
.y82_c01243{bottom:542.880000px;}
.y42_c01243{bottom:543.600000px;}
.y81_c01243{bottom:545.040000px;}
.y35_c01243{bottom:555.840000px;}
.y34_c01243{bottom:559.440000px;}
.y7d_c01243{bottom:574.560000px;}
.y7f_c01243{bottom:576.000000px;}
.y80_c01243{bottom:576.720000px;}
.y41_c01243{bottom:577.440000px;}
.y7e_c01243{bottom:578.160000px;}
.y40_c01243{bottom:578.880000px;}
.y45_c01243{bottom:580.320000px;}
.y33_c01243{bottom:587.520000px;}
.y32_c01243{bottom:590.400000px;}
.y7c_c01243{bottom:606.960000px;}
.y44_c01243{bottom:607.680000px;}
.y7b_c01243{bottom:609.840000px;}
.y3f_c01243{bottom:610.560000px;}
.y3e_c01243{bottom:611.280000px;}
.y31_c01243{bottom:619.920000px;}
.y7a_c01243{bottom:640.080000px;}
.y43_c01243{bottom:640.800000px;}
.y3c_c01243{bottom:642.960000px;}
.y3d_c01243{bottom:643.680000px;}
.yc2_c01243{bottom:645.120000px;}
.y30_c01243{bottom:652.320000px;}
.y2f_c01243{bottom:653.760000px;}
.y2e_c01243{bottom:655.200000px;}
.y79_c01243{bottom:681.120000px;}
.y3b_c01243{bottom:682.560000px;}
.y37_c01243{bottom:683.280000px;}
.y2d_c01243{bottom:684.000000px;}
.y39_c01243{bottom:686.880000px;}
.y78_c01243{bottom:688.320000px;}
.y3a_c01243{bottom:706.320000px;}
.y2c_c01243{bottom:707.040000px;}
.y38_c01243{bottom:707.760000px;}
.y2a_c01243{bottom:746.640000px;}
.y2b_c01243{bottom:749.520000px;}
.y26_c01243{bottom:787.680000px;}
.y29_c01243{bottom:788.400000px;}
.y25_c01243{bottom:789.120000px;}
.y24_c01243{bottom:789.840000px;}
.y27_c01243{bottom:790.560000px;}
.y23_c01243{bottom:791.280000px;}
.y28_c01243{bottom:792.720000px;}
.y1e_c01243{bottom:831.600000px;}
.y22_c01243{bottom:832.320000px;}
.y20_c01243{bottom:833.040000px;}
.y21_c01243{bottom:833.760000px;}
.y1f_c01243{bottom:834.480000px;}
.y1d_c01243{bottom:873.360000px;}
.y1c_c01243{bottom:875.520000px;}
.y19_c01243{bottom:876.240000px;}
.y1a_c01243{bottom:876.960000px;}
.y1b_c01243{bottom:877.680000px;}
.y16_c01243{bottom:916.560000px;}
.y17_c01243{bottom:917.280000px;}
.y13_c01243{bottom:918.000000px;}
.y15_c01243{bottom:918.720000px;}
.y14_c01243{bottom:919.440000px;}
.y18_c01243{bottom:920.160000px;}
.y10_c01243{bottom:959.040000px;}
.ye_c01243{bottom:959.760000px;}
.yc_c01243{bottom:960.480000px;}
.yd_c01243{bottom:961.200000px;}
.yf_c01243{bottom:962.640000px;}
.y11_c01243{bottom:963.360000px;}
.y12_c01243{bottom:964.080000px;}
.y8_c01243{bottom:1002.240000px;}
.y7_c01243{bottom:1004.400000px;}
.y9_c01243{bottom:1005.120000px;}
.ya_c01243{bottom:1005.840000px;}
.yb_c01243{bottom:1006.560000px;}
.y1_c01243{bottom:1054.800000px;}
.y2_c01243{bottom:1056.960000px;}
.y6_c01243{bottom:1057.680000px;}
.y4_c01243{bottom:1058.400000px;}
.y3_c01243{bottom:1059.120000px;}
.y5_c01243{bottom:1059.840000px;}
.h12_c01243{height:12.958594px;}
.h11_c01243{height:15.550313px;}
.h10_c01243{height:18.142031px;}
.hf_c01243{height:20.733750px;}
.h8_c01243{height:31.100625px;}
.he_c01243{height:33.692344px;}
.hb_c01243{height:38.875781px;}
.h9_c01243{height:41.467500px;}
.ha_c01243{height:44.059219px;}
.h3_c01243{height:46.650937px;}
.h7_c01243{height:49.242656px;}
.h4_c01243{height:51.834375px;}
.h2_c01243{height:54.426094px;}
.h6_c01243{height:57.017812px;}
.hd_c01243{height:59.609531px;}
.h5_c01243{height:62.201250px;}
.hc_c01243{height:67.384687px;}
.h0_c01243{height:1160.640000px;}
.h1_c01243{height:1161.000000px;}
.w1_c01243{width:783.000000px;}
.w0_c01243{width:783.360000px;}
.x0_c01243{left:0.000000px;}
.x11_c01243{left:64.800000px;}
.x1_c01243{left:66.240000px;}
.x40_c01243{left:74.880000px;}
.x3f_c01243{left:76.320000px;}
.x32_c01243{left:84.960000px;}
.x36_c01243{left:93.600000px;}
.x34_c01243{left:95.760000px;}
.x33_c01243{left:103.680000px;}
.x12_c01243{left:105.120000px;}
.x22_c01243{left:115.200000px;}
.x41_c01243{left:116.640000px;}
.x1c_c01243{left:125.280000px;}
.x35_c01243{left:126.720000px;}
.x13_c01243{left:135.360000px;}
.x42_c01243{left:136.800000px;}
.x29_c01243{left:144.720000px;}
.x23_c01243{left:146.160000px;}
.x2e_c01243{left:156.960000px;}
.x9_c01243{left:168.480000px;}
.x2_c01243{left:179.280000px;}
.x3d_c01243{left:187.920000px;}
.x3c_c01243{left:200.880000px;}
.x14_c01243{left:210.240000px;}
.x4f_c01243{left:211.680000px;}
.xa_c01243{left:221.760000px;}
.x15_c01243{left:233.280000px;}
.x37_c01243{left:242.640000px;}
.x24_c01243{left:244.080000px;}
.x2a_c01243{left:254.160000px;}
.x16_c01243{left:264.240000px;}
.x25_c01243{left:274.320000px;}
.x3e_c01243{left:285.120000px;}
.x4e_c01243{left:286.560000px;}
.x3_c01243{left:297.360000px;}
.x2b_c01243{left:306.720000px;}
.x38_c01243{left:308.880000px;}
.xb_c01243{left:318.240000px;}
.x3a_c01243{left:329.040000px;}
.x50_c01243{left:330.480000px;}
.x1d_c01243{left:339.840000px;}
.x2f_c01243{left:341.280000px;}
.x26_c01243{left:350.640000px;}
.x51_c01243{left:361.440000px;}
.x39_c01243{left:372.240000px;}
.x4_c01243{left:373.680000px;}
.x27_c01243{left:383.040000px;}
.x3b_c01243{left:384.480000px;}
.x2c_c01243{left:385.920000px;}
.x17_c01243{left:394.560000px;}
.x52_c01243{left:404.640000px;}
.xc_c01243{left:427.680000px;}
.x48_c01243{left:436.320000px;}
.x4d_c01243{left:437.760000px;}
.x5_c01243{left:439.200000px;}
.xd_c01243{left:447.840000px;}
.x1e_c01243{left:450.000000px;}
.x4a_c01243{left:458.640000px;}
.x45_c01243{left:470.160000px;}
.x1f_c01243{left:481.680000px;}
.x43_c01243{left:491.040000px;}
.x6_c01243{left:492.480000px;}
.x56_c01243{left:512.640000px;}
.x18_c01243{left:514.080000px;}
.x44_c01243{left:524.880000px;}
.x4c_c01243{left:534.240000px;}
.x46_c01243{left:535.680000px;}
.x4b_c01243{left:539.280000px;}
.x53_c01243{left:546.480000px;}
.x49_c01243{left:556.560000px;}
.x7_c01243{left:558.720000px;}
.x20_c01243{left:567.360000px;}
.x30_c01243{left:569.520000px;}
.x19_c01243{left:578.880000px;}
.xe_c01243{left:589.680000px;}
.x47_c01243{left:591.120000px;}
.x2d_c01243{left:600.480000px;}
.x57_c01243{left:601.920000px;}
.x31_c01243{left:611.280000px;}
.x8_c01243{left:613.440000px;}
.xf_c01243{left:623.520000px;}
.x28_c01243{left:633.600000px;}
.x54_c01243{left:635.040000px;}
.x21_c01243{left:655.920000px;}
.x55_c01243{left:665.280000px;}
.x1a_c01243{left:666.720000px;}
.x10_c01243{left:676.800000px;}
.x1b_c01243{left:688.320000px;}
.x59_c01243{left:699.120000px;}
.x58_c01243{left:710.640000px;}
@media print{
.v1_c01243{vertical-align:-12.800000pt;}
.v0_c01243{vertical-align:0.000000pt;}
.ls1_c01243{letter-spacing:0.000000pt;}
.ls0_c01243{letter-spacing:73.226240pt;}
.ws0_c01243{word-spacing:0.000000pt;}
.fs10_c01243{font-size:12.800000pt;}
.fsf_c01243{font-size:15.360000pt;}
.fse_c01243{font-size:17.920000pt;}
.fsd_c01243{font-size:20.480000pt;}
.fs6_c01243{font-size:30.720000pt;}
.fsc_c01243{font-size:33.280000pt;}
.fs9_c01243{font-size:38.400000pt;}
.fs7_c01243{font-size:40.960000pt;}
.fs8_c01243{font-size:43.520000pt;}
.fs1_c01243{font-size:46.080000pt;}
.fs5_c01243{font-size:48.640000pt;}
.fs2_c01243{font-size:51.200000pt;}
.fs0_c01243{font-size:53.760000pt;}
.fs4_c01243{font-size:56.320000pt;}
.fsb_c01243{font-size:58.880000pt;}
.fs3_c01243{font-size:61.440000pt;}
.fsa_c01243{font-size:66.560000pt;}
.y0_c01243{bottom:0.000000pt;}
.yd3_c01243{bottom:51.840000pt;}
.yaa_c01243{bottom:54.400000pt;}
.yc0_c01243{bottom:55.680000pt;}
.ya1_c01243{bottom:56.320000pt;}
.yd2_c01243{bottom:92.160000pt;}
.yd1_c01243{bottom:92.800000pt;}
.ydf_c01243{bottom:110.080000pt;}
.yd0_c01243{bottom:110.720000pt;}
.yb8_c01243{bottom:112.000000pt;}
.ya0_c01243{bottom:113.280000pt;}
.y9f_c01243{bottom:113.920000pt;}
.ya9_c01243{bottom:114.560000pt;}
.y77_c01243{bottom:115.840000pt;}
.y69_c01243{bottom:119.040000pt;}
.ye9_c01243{bottom:128.000000pt;}
.ycf_c01243{bottom:129.280000pt;}
.yb7_c01243{bottom:131.200000pt;}
.y9e_c01243{bottom:131.840000pt;}
.y9d_c01243{bottom:132.480000pt;}
.y9c_c01243{bottom:133.760000pt;}
.y76_c01243{bottom:135.680000pt;}
.y68_c01243{bottom:137.600000pt;}
.y67_c01243{bottom:140.800000pt;}
.yde_c01243{bottom:147.840000pt;}
.yce_c01243{bottom:149.120000pt;}
.yb6_c01243{bottom:149.760000pt;}
.ya8_c01243{bottom:150.400000pt;}
.ydd_c01243{bottom:151.040000pt;}
.y9b_c01243{bottom:151.680000pt;}
.y9a_c01243{bottom:152.320000pt;}
.y66_c01243{bottom:155.520000pt;}
.y65_c01243{bottom:157.440000pt;}
.ye8_c01243{bottom:167.040000pt;}
.ydc_c01243{bottom:167.680000pt;}
.ybf_c01243{bottom:168.320000pt;}
.yb5_c01243{bottom:169.600000pt;}
.ycd_c01243{bottom:170.240000pt;}
.y99_c01243{bottom:170.880000pt;}
.ya7_c01243{bottom:171.520000pt;}
.y75_c01243{bottom:173.440000pt;}
.y63_c01243{bottom:176.000000pt;}
.y64_c01243{bottom:176.640000pt;}
.ye7_c01243{bottom:184.960000pt;}
.ycb_c01243{bottom:186.880000pt;}
.ycc_c01243{bottom:187.520000pt;}
.yb4_c01243{bottom:188.160000pt;}
.y97_c01243{bottom:189.440000pt;}
.y98_c01243{bottom:190.080000pt;}
.y74_c01243{bottom:192.640000pt;}
.y61_c01243{bottom:193.920000pt;}
.y62_c01243{bottom:195.200000pt;}
.ydb_c01243{bottom:205.440000pt;}
.yca_c01243{bottom:206.080000pt;}
.yb3_c01243{bottom:206.720000pt;}
.ya6_c01243{bottom:207.360000pt;}
.y95_c01243{bottom:208.000000pt;}
.y96_c01243{bottom:208.640000pt;}
.y73_c01243{bottom:209.920000pt;}
.y60_c01243{bottom:211.840000pt;}
.y72_c01243{bottom:212.480000pt;}
.y5f_c01243{bottom:215.680000pt;}
.yda_c01243{bottom:224.640000pt;}
.yc9_c01243{bottom:225.280000pt;}
.yb2_c01243{bottom:225.920000pt;}
.y93_c01243{bottom:227.200000pt;}
.y94_c01243{bottom:227.840000pt;}
.y71_c01243{bottom:229.120000pt;}
.y5e_c01243{bottom:230.400000pt;}
.y5d_c01243{bottom:234.240000pt;}
.yd9_c01243{bottom:243.200000pt;}
.yc8_c01243{bottom:243.840000pt;}
.ya5_c01243{bottom:245.120000pt;}
.ybe_c01243{bottom:245.760000pt;}
.y92_c01243{bottom:246.400000pt;}
.y91_c01243{bottom:247.040000pt;}
.y5c_c01243{bottom:249.600000pt;}
.y5b_c01243{bottom:252.800000pt;}
.ye6_c01243{bottom:261.760000pt;}
.ye5_c01243{bottom:262.400000pt;}
.yb1_c01243{bottom:263.680000pt;}
.y90_c01243{bottom:264.960000pt;}
.y8f_c01243{bottom:265.600000pt;}
.y70_c01243{bottom:266.240000pt;}
.y59_c01243{bottom:269.440000pt;}
.y5a_c01243{bottom:270.080000pt;}
.ye4_c01243{bottom:280.960000pt;}
.yd8_c01243{bottom:281.600000pt;}
.ybd_c01243{bottom:282.240000pt;}
.yc7_c01243{bottom:282.880000pt;}
.ya4_c01243{bottom:283.520000pt;}
.y8e_c01243{bottom:284.800000pt;}
.yb0_c01243{bottom:285.440000pt;}
.y6f_c01243{bottom:286.720000pt;}
.y58_c01243{bottom:288.640000pt;}
.y57_c01243{bottom:289.920000pt;}
.ye3_c01243{bottom:300.160000pt;}
.yd7_c01243{bottom:300.800000pt;}
.ybc_c01243{bottom:301.440000pt;}
.yaf_c01243{bottom:302.080000pt;}
.y8d_c01243{bottom:302.720000pt;}
.y8c_c01243{bottom:304.000000pt;}
.y56_c01243{bottom:305.280000pt;}
.y6e_c01243{bottom:305.920000pt;}
.y55_c01243{bottom:307.200000pt;}
.ye2_c01243{bottom:319.360000pt;}
.yd6_c01243{bottom:320.000000pt;}
.yc6_c01243{bottom:320.640000pt;}
.ya3_c01243{bottom:321.280000pt;}
.yae_c01243{bottom:321.920000pt;}
.y8b_c01243{bottom:322.560000pt;}
.y6d_c01243{bottom:323.200000pt;}
.y54_c01243{bottom:324.480000pt;}
.y53_c01243{bottom:325.760000pt;}
.yd5_c01243{bottom:339.200000pt;}
.yad_c01243{bottom:339.840000pt;}
.ye1_c01243{bottom:340.480000pt;}
.y8a_c01243{bottom:341.120000pt;}
.y89_c01243{bottom:341.760000pt;}
.y52_c01243{bottom:343.040000pt;}
.y6c_c01243{bottom:343.680000pt;}
.y51_c01243{bottom:344.320000pt;}
.yc4_c01243{bottom:357.760000pt;}
.ybb_c01243{bottom:358.400000pt;}
.y87_c01243{bottom:359.680000pt;}
.yc5_c01243{bottom:360.320000pt;}
.y88_c01243{bottom:360.960000pt;}
.y50_c01243{bottom:361.600000pt;}
.y4f_c01243{bottom:363.520000pt;}
.yd4_c01243{bottom:376.960000pt;}
.yba_c01243{bottom:377.600000pt;}
.ya2_c01243{bottom:378.880000pt;}
.y85_c01243{bottom:379.520000pt;}
.y6b_c01243{bottom:380.160000pt;}
.yac_c01243{bottom:380.800000pt;}
.y86_c01243{bottom:381.440000pt;}
.y84_c01243{bottom:382.080000pt;}
.y4e_c01243{bottom:384.000000pt;}
.ye0_c01243{bottom:395.520000pt;}
.yb9_c01243{bottom:396.800000pt;}
.yab_c01243{bottom:397.440000pt;}
.y6a_c01243{bottom:398.080000pt;}
.yc3_c01243{bottom:398.720000pt;}
.y4d_c01243{bottom:400.640000pt;}
.y4c_c01243{bottom:402.560000pt;}
.yc1_c01243{bottom:424.960000pt;}
.y83_c01243{bottom:425.600000pt;}
.y4b_c01243{bottom:426.240000pt;}
.y49_c01243{bottom:426.880000pt;}
.y4a_c01243{bottom:427.520000pt;}
.y48_c01243{bottom:428.160000pt;}
.y47_c01243{bottom:429.440000pt;}
.y46_c01243{bottom:430.720000pt;}
.y36_c01243{bottom:467.200000pt;}
.y82_c01243{bottom:482.560000pt;}
.y42_c01243{bottom:483.200000pt;}
.y81_c01243{bottom:484.480000pt;}
.y35_c01243{bottom:494.080000pt;}
.y34_c01243{bottom:497.280000pt;}
.y7d_c01243{bottom:510.720000pt;}
.y7f_c01243{bottom:512.000000pt;}
.y80_c01243{bottom:512.640000pt;}
.y41_c01243{bottom:513.280000pt;}
.y7e_c01243{bottom:513.920000pt;}
.y40_c01243{bottom:514.560000pt;}
.y45_c01243{bottom:515.840000pt;}
.y33_c01243{bottom:522.240000pt;}
.y32_c01243{bottom:524.800000pt;}
.y7c_c01243{bottom:539.520000pt;}
.y44_c01243{bottom:540.160000pt;}
.y7b_c01243{bottom:542.080000pt;}
.y3f_c01243{bottom:542.720000pt;}
.y3e_c01243{bottom:543.360000pt;}
.y31_c01243{bottom:551.040000pt;}
.y7a_c01243{bottom:568.960000pt;}
.y43_c01243{bottom:569.600000pt;}
.y3c_c01243{bottom:571.520000pt;}
.y3d_c01243{bottom:572.160000pt;}
.yc2_c01243{bottom:573.440000pt;}
.y30_c01243{bottom:579.840000pt;}
.y2f_c01243{bottom:581.120000pt;}
.y2e_c01243{bottom:582.400000pt;}
.y79_c01243{bottom:605.440000pt;}
.y3b_c01243{bottom:606.720000pt;}
.y37_c01243{bottom:607.360000pt;}
.y2d_c01243{bottom:608.000000pt;}
.y39_c01243{bottom:610.560000pt;}
.y78_c01243{bottom:611.840000pt;}
.y3a_c01243{bottom:627.840000pt;}
.y2c_c01243{bottom:628.480000pt;}
.y38_c01243{bottom:629.120000pt;}
.y2a_c01243{bottom:663.680000pt;}
.y2b_c01243{bottom:666.240000pt;}
.y26_c01243{bottom:700.160000pt;}
.y29_c01243{bottom:700.800000pt;}
.y25_c01243{bottom:701.440000pt;}
.y24_c01243{bottom:702.080000pt;}
.y27_c01243{bottom:702.720000pt;}
.y23_c01243{bottom:703.360000pt;}
.y28_c01243{bottom:704.640000pt;}
.y1e_c01243{bottom:739.200000pt;}
.y22_c01243{bottom:739.840000pt;}
.y20_c01243{bottom:740.480000pt;}
.y21_c01243{bottom:741.120000pt;}
.y1f_c01243{bottom:741.760000pt;}
.y1d_c01243{bottom:776.320000pt;}
.y1c_c01243{bottom:778.240000pt;}
.y19_c01243{bottom:778.880000pt;}
.y1a_c01243{bottom:779.520000pt;}
.y1b_c01243{bottom:780.160000pt;}
.y16_c01243{bottom:814.720000pt;}
.y17_c01243{bottom:815.360000pt;}
.y13_c01243{bottom:816.000000pt;}
.y15_c01243{bottom:816.640000pt;}
.y14_c01243{bottom:817.280000pt;}
.y18_c01243{bottom:817.920000pt;}
.y10_c01243{bottom:852.480000pt;}
.ye_c01243{bottom:853.120000pt;}
.yc_c01243{bottom:853.760000pt;}
.yd_c01243{bottom:854.400000pt;}
.yf_c01243{bottom:855.680000pt;}
.y11_c01243{bottom:856.320000pt;}
.y12_c01243{bottom:856.960000pt;}
.y8_c01243{bottom:890.880000pt;}
.y7_c01243{bottom:892.800000pt;}
.y9_c01243{bottom:893.440000pt;}
.ya_c01243{bottom:894.080000pt;}
.yb_c01243{bottom:894.720000pt;}
.y1_c01243{bottom:937.600000pt;}
.y2_c01243{bottom:939.520000pt;}
.y6_c01243{bottom:940.160000pt;}
.y4_c01243{bottom:940.800000pt;}
.y3_c01243{bottom:941.440000pt;}
.y5_c01243{bottom:942.080000pt;}
.h12_c01243{height:11.518750pt;}
.h11_c01243{height:13.822500pt;}
.h10_c01243{height:16.126250pt;}
.hf_c01243{height:18.430000pt;}
.h8_c01243{height:27.645000pt;}
.he_c01243{height:29.948750pt;}
.hb_c01243{height:34.556250pt;}
.h9_c01243{height:36.860000pt;}
.ha_c01243{height:39.163750pt;}
.h3_c01243{height:41.467500pt;}
.h7_c01243{height:43.771250pt;}
.h4_c01243{height:46.075000pt;}
.h2_c01243{height:48.378750pt;}
.h6_c01243{height:50.682500pt;}
.hd_c01243{height:52.986250pt;}
.h5_c01243{height:55.290000pt;}
.hc_c01243{height:59.897500pt;}
.h0_c01243{height:1031.680000pt;}
.h1_c01243{height:1032.000000pt;}
.w1_c01243{width:696.000000pt;}
.w0_c01243{width:696.320000pt;}
.x0_c01243{left:0.000000pt;}
.x11_c01243{left:57.600000pt;}
.x1_c01243{left:58.880000pt;}
.x40_c01243{left:66.560000pt;}
.x3f_c01243{left:67.840000pt;}
.x32_c01243{left:75.520000pt;}
.x36_c01243{left:83.200000pt;}
.x34_c01243{left:85.120000pt;}
.x33_c01243{left:92.160000pt;}
.x12_c01243{left:93.440000pt;}
.x22_c01243{left:102.400000pt;}
.x41_c01243{left:103.680000pt;}
.x1c_c01243{left:111.360000pt;}
.x35_c01243{left:112.640000pt;}
.x13_c01243{left:120.320000pt;}
.x42_c01243{left:121.600000pt;}
.x29_c01243{left:128.640000pt;}
.x23_c01243{left:129.920000pt;}
.x2e_c01243{left:139.520000pt;}
.x9_c01243{left:149.760000pt;}
.x2_c01243{left:159.360000pt;}
.x3d_c01243{left:167.040000pt;}
.x3c_c01243{left:178.560000pt;}
.x14_c01243{left:186.880000pt;}
.x4f_c01243{left:188.160000pt;}
.xa_c01243{left:197.120000pt;}
.x15_c01243{left:207.360000pt;}
.x37_c01243{left:215.680000pt;}
.x24_c01243{left:216.960000pt;}
.x2a_c01243{left:225.920000pt;}
.x16_c01243{left:234.880000pt;}
.x25_c01243{left:243.840000pt;}
.x3e_c01243{left:253.440000pt;}
.x4e_c01243{left:254.720000pt;}
.x3_c01243{left:264.320000pt;}
.x2b_c01243{left:272.640000pt;}
.x38_c01243{left:274.560000pt;}
.xb_c01243{left:282.880000pt;}
.x3a_c01243{left:292.480000pt;}
.x50_c01243{left:293.760000pt;}
.x1d_c01243{left:302.080000pt;}
.x2f_c01243{left:303.360000pt;}
.x26_c01243{left:311.680000pt;}
.x51_c01243{left:321.280000pt;}
.x39_c01243{left:330.880000pt;}
.x4_c01243{left:332.160000pt;}
.x27_c01243{left:340.480000pt;}
.x3b_c01243{left:341.760000pt;}
.x2c_c01243{left:343.040000pt;}
.x17_c01243{left:350.720000pt;}
.x52_c01243{left:359.680000pt;}
.xc_c01243{left:380.160000pt;}
.x48_c01243{left:387.840000pt;}
.x4d_c01243{left:389.120000pt;}
.x5_c01243{left:390.400000pt;}
.xd_c01243{left:398.080000pt;}
.x1e_c01243{left:400.000000pt;}
.x4a_c01243{left:407.680000pt;}
.x45_c01243{left:417.920000pt;}
.x1f_c01243{left:428.160000pt;}
.x43_c01243{left:436.480000pt;}
.x6_c01243{left:437.760000pt;}
.x56_c01243{left:455.680000pt;}
.x18_c01243{left:456.960000pt;}
.x44_c01243{left:466.560000pt;}
.x4c_c01243{left:474.880000pt;}
.x46_c01243{left:476.160000pt;}
.x4b_c01243{left:479.360000pt;}
.x53_c01243{left:485.760000pt;}
.x49_c01243{left:494.720000pt;}
.x7_c01243{left:496.640000pt;}
.x20_c01243{left:504.320000pt;}
.x30_c01243{left:506.240000pt;}
.x19_c01243{left:514.560000pt;}
.xe_c01243{left:524.160000pt;}
.x47_c01243{left:525.440000pt;}
.x2d_c01243{left:533.760000pt;}
.x57_c01243{left:535.040000pt;}
.x31_c01243{left:543.360000pt;}
.x8_c01243{left:545.280000pt;}
.xf_c01243{left:554.240000pt;}
.x28_c01243{left:563.200000pt;}
.x54_c01243{left:564.480000pt;}
.x21_c01243{left:583.040000pt;}
.x55_c01243{left:591.360000pt;}
.x1a_c01243{left:592.640000pt;}
.x10_c01243{left:601.600000pt;}
.x1b_c01243{left:611.840000pt;}
.x59_c01243{left:621.440000pt;}
.x58_c01243{left:631.680000pt;}
}





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

.ir_c01244:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01244{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01244;src:url('chunks/assets/font_f8b997cc590328a1a9578579.woff2')format("woff");}.ff1_c01244{font-family:ff1_c01244;line-height:1.109863;font-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_c01244{transform:matrix(0.208425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208425,0.000000,0.000000,0.250000,0,0);}
.m1e_c01244{transform:matrix(0.225100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225100,0.000000,0.000000,0.250000,0,0);}
.m47_c01244{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);}
.m5d_c01244{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);}
.m65_c01244{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_c01244{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_c01244{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_c01244{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);}
.m4d_c01244{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);}
.m69_c01244{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mf_c01244{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m50_c01244{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.me_c01244{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01244{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01244{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m66_c01244{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mb_c01244{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m49_c01244{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01244{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m35_c01244{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m10_c01244{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m34_c01244{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m12_c01244{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_c01244{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m57_c01244{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_c01244{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);}
.m5f_c01244{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m33_c01244{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);}
.m39_c01244{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m5c_c01244{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);}
.m52_c01244{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.mc_c01244{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m15_c01244{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m0_c01244{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);}
.m2c_c01244{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);}
.m48_c01244{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);}
.m61_c01244{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01244{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m44_c01244{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m14_c01244{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);}
.m20_c01244{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);}
.m26_c01244{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m3_c01244{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m21_c01244{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01244{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m43_c01244{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);}
.m8_c01244{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m25_c01244{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);}
.m19_c01244{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);}
.m2_c01244{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m32_c01244{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m41_c01244{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m5_c01244{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m42_c01244{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m56_c01244{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m1_c01244{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m5a_c01244{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);}
.m4_c01244{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m28_c01244{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m5e_c01244{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m27_c01244{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);}
.m40_c01244{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m6b_c01244{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m4a_c01244{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);}
.m17_c01244{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m53_c01244{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01244{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m6a_c01244{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m37_c01244{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);}
.m31_c01244{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);}
.m23_c01244{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m24_c01244{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m63_c01244{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m18_c01244{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);}
.m4c_c01244{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01244{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m6d_c01244{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01244{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);}
.m5b_c01244{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m22_c01244{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m30_c01244{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m38_c01244{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);}
.m68_c01244{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01244{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);}
.m58_c01244{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);}
.m55_c01244{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01244{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m6c_c01244{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m36_c01244{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01244{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m29_c01244{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m7_c01244{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01244{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);}
.m4f_c01244{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m64_c01244{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01244{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);}
.m67_c01244{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m45_c01244{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m6_c01244{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m62_c01244{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m16_c01244{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01244{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m54_c01244{transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01244{transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);}
.m46_c01244{transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);}
.m59_c01244{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01244{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01244{transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);}
.m60_c01244{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m51_c01244{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.v0_c01244{vertical-align:0.000000px;}
.v2_c01244{vertical-align:2.880000px;}
.v1_c01244{vertical-align:5.760000px;}
.ls1_c01244{letter-spacing:0.000000px;}
.ls0_c01244{letter-spacing:167.172720px;}
.sc__c01244{text-shadow:none;}
.sc0_c01244{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01244{-webkit-text-stroke:0px transparent;}
.sc0_c01244{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01244{word-spacing:0.000000px;}
.ws0_c01244{word-spacing:144.796800px;}
.fc0_c01244{color:transparent;}
.fsf_c01244{font-size:17.280000px;}
.fsb_c01244{font-size:31.680000px;}
.fs4_c01244{font-size:34.560000px;}
.fsc_c01244{font-size:37.440000px;}
.fs7_c01244{font-size:40.320000px;}
.fs1_c01244{font-size:43.200000px;}
.fs3_c01244{font-size:46.080000px;}
.fs5_c01244{font-size:48.960000px;}
.fs2_c01244{font-size:51.840000px;}
.fs9_c01244{font-size:54.720000px;}
.fs8_c01244{font-size:57.600000px;}
.fs6_c01244{font-size:60.480000px;}
.fse_c01244{font-size:63.360000px;}
.fsd_c01244{font-size:69.120000px;}
.fs0_c01244{font-size:74.880000px;}
.fsa_c01244{font-size:103.680000px;}
.y0_c01244{bottom:0.000000px;}
.y89_c01244{bottom:30.960000px;}
.y8a_c01244{bottom:31.680000px;}
.y85_c01244{bottom:33.840000px;}
.y86_c01244{bottom:34.560000px;}
.y88_c01244{bottom:35.280000px;}
.y87_c01244{bottom:36.000000px;}
.y84_c01244{bottom:38.160000px;}
.y83_c01244{bottom:38.880000px;}
.y82_c01244{bottom:42.480000px;}
.y81_c01244{bottom:43.200000px;}
.y7f_c01244{bottom:75.600000px;}
.y80_c01244{bottom:76.320000px;}
.y7e_c01244{bottom:77.040000px;}
.y7d_c01244{bottom:77.760000px;}
.y7c_c01244{bottom:79.200000px;}
.y7b_c01244{bottom:81.360000px;}
.y7a_c01244{bottom:130.320000px;}
.y79_c01244{bottom:131.040000px;}
.y78_c01244{bottom:134.640000px;}
.y75_c01244{bottom:172.080000px;}
.y77_c01244{bottom:172.800000px;}
.y76_c01244{bottom:173.520000px;}
.y74_c01244{bottom:174.240000px;}
.y73_c01244{bottom:176.400000px;}
.y72_c01244{bottom:177.120000px;}
.y71_c01244{bottom:213.840000px;}
.y70_c01244{bottom:214.560000px;}
.y6d_c01244{bottom:215.280000px;}
.y6c_c01244{bottom:216.000000px;}
.y6e_c01244{bottom:216.720000px;}
.y6f_c01244{bottom:217.440000px;}
.y69_c01244{bottom:218.160000px;}
.y6b_c01244{bottom:218.880000px;}
.y6a_c01244{bottom:219.600000px;}
.y68_c01244{bottom:259.200000px;}
.y66_c01244{bottom:259.920000px;}
.y67_c01244{bottom:260.640000px;}
.y65_c01244{bottom:261.360000px;}
.y64_c01244{bottom:262.080000px;}
.y63_c01244{bottom:263.520000px;}
.y60_c01244{bottom:300.240000px;}
.y62_c01244{bottom:300.960000px;}
.y61_c01244{bottom:302.400000px;}
.y5e_c01244{bottom:303.120000px;}
.y5f_c01244{bottom:303.840000px;}
.y5d_c01244{bottom:306.000000px;}
.y5c_c01244{bottom:306.720000px;}
.y58_c01244{bottom:343.440000px;}
.y5a_c01244{bottom:344.160000px;}
.y59_c01244{bottom:345.600000px;}
.y57_c01244{bottom:347.760000px;}
.y56_c01244{bottom:349.200000px;}
.y5b_c01244{bottom:350.640000px;}
.y52_c01244{bottom:387.360000px;}
.y55_c01244{bottom:388.080000px;}
.y53_c01244{bottom:388.800000px;}
.y54_c01244{bottom:389.520000px;}
.y51_c01244{bottom:390.960000px;}
.y50_c01244{bottom:391.680000px;}
.y4e_c01244{bottom:429.120000px;}
.y4f_c01244{bottom:429.840000px;}
.y4d_c01244{bottom:432.000000px;}
.y4c_c01244{bottom:433.440000px;}
.y4b_c01244{bottom:471.600000px;}
.y4a_c01244{bottom:472.320000px;}
.y48_c01244{bottom:473.040000px;}
.y49_c01244{bottom:474.480000px;}
.y45_c01244{bottom:475.200000px;}
.y47_c01244{bottom:475.920000px;}
.y46_c01244{bottom:476.640000px;}
.y43_c01244{bottom:515.520000px;}
.y41_c01244{bottom:516.240000px;}
.y44_c01244{bottom:516.960000px;}
.y42_c01244{bottom:517.680000px;}
.y40_c01244{bottom:519.120000px;}
.y3d_c01244{bottom:557.280000px;}
.y3e_c01244{bottom:559.440000px;}
.y3c_c01244{bottom:560.160000px;}
.y3f_c01244{bottom:560.880000px;}
.y39_c01244{bottom:599.040000px;}
.y37_c01244{bottom:599.760000px;}
.y3b_c01244{bottom:600.480000px;}
.y38_c01244{bottom:602.640000px;}
.y3a_c01244{bottom:603.360000px;}
.y34_c01244{bottom:642.240000px;}
.y33_c01244{bottom:644.400000px;}
.y32_c01244{bottom:645.120000px;}
.y35_c01244{bottom:645.840000px;}
.y36_c01244{bottom:646.560000px;}
.y2d_c01244{bottom:684.720000px;}
.y2e_c01244{bottom:687.600000px;}
.y2f_c01244{bottom:688.320000px;}
.y30_c01244{bottom:689.040000px;}
.y31_c01244{bottom:689.760000px;}
.y28_c01244{bottom:727.200000px;}
.y2a_c01244{bottom:727.920000px;}
.y29_c01244{bottom:730.080000px;}
.y2b_c01244{bottom:731.520000px;}
.y2c_c01244{bottom:732.240000px;}
.y21_c01244{bottom:770.400000px;}
.y25_c01244{bottom:771.120000px;}
.y20_c01244{bottom:771.840000px;}
.y22_c01244{bottom:772.560000px;}
.y24_c01244{bottom:773.280000px;}
.y23_c01244{bottom:774.000000px;}
.y26_c01244{bottom:774.720000px;}
.y27_c01244{bottom:775.440000px;}
.y1c_c01244{bottom:815.760000px;}
.y1e_c01244{bottom:816.480000px;}
.y1d_c01244{bottom:817.200000px;}
.y1f_c01244{bottom:818.640000px;}
.y17_c01244{bottom:866.160000px;}
.y1a_c01244{bottom:866.880000px;}
.y16_c01244{bottom:869.040000px;}
.y18_c01244{bottom:869.760000px;}
.y19_c01244{bottom:870.480000px;}
.y1b_c01244{bottom:871.920000px;}
.y13_c01244{bottom:921.600000px;}
.y11_c01244{bottom:922.320000px;}
.y12_c01244{bottom:923.040000px;}
.y14_c01244{bottom:924.480000px;}
.y15_c01244{bottom:925.200000px;}
.yc_c01244{bottom:972.720000px;}
.yd_c01244{bottom:974.160000px;}
.ye_c01244{bottom:975.600000px;}
.yf_c01244{bottom:976.320000px;}
.y10_c01244{bottom:979.200000px;}
.y8_c01244{bottom:996.480000px;}
.y9_c01244{bottom:997.200000px;}
.ya_c01244{bottom:1000.080000px;}
.yb_c01244{bottom:1000.800000px;}
.y5_c01244{bottom:1050.480000px;}
.y3_c01244{bottom:1051.200000px;}
.y2_c01244{bottom:1051.920000px;}
.y4_c01244{bottom:1052.640000px;}
.y6_c01244{bottom:1054.080000px;}
.y7_c01244{bottom:1054.800000px;}
.y1_c01244{bottom:1116.000000px;}
.h12_c01244{height:15.550313px;}
.he_c01244{height:28.508906px;}
.h6_c01244{height:31.100625px;}
.hf_c01244{height:33.692344px;}
.ha_c01244{height:36.284062px;}
.h3_c01244{height:38.875781px;}
.h5_c01244{height:41.467500px;}
.h7_c01244{height:44.059219px;}
.h4_c01244{height:46.650937px;}
.hc_c01244{height:49.242656px;}
.h9_c01244{height:50.107500px;}
.hb_c01244{height:51.834375px;}
.h8_c01244{height:54.426094px;}
.h11_c01244{height:57.017812px;}
.h10_c01244{height:62.201250px;}
.h2_c01244{height:67.384687px;}
.hd_c01244{height:93.301875px;}
.h0_c01244{height:1159.920000px;}
.h1_c01244{height:1160.250000px;}
.w0_c01244{width:781.920000px;}
.w1_c01244{width:782.250000px;}
.x0_c01244{left:0.000000px;}
.x1f_c01244{left:64.800000px;}
.x3a_c01244{left:66.960000px;}
.x5d_c01244{left:68.400000px;}
.xe_c01244{left:95.040000px;}
.x54_c01244{left:97.200000px;}
.x2d_c01244{left:103.680000px;}
.x20_c01244{left:105.840000px;}
.xa_c01244{left:115.920000px;}
.x6c_c01244{left:118.080000px;}
.x66_c01244{left:128.160000px;}
.x38_c01244{left:136.080000px;}
.x5e_c01244{left:138.960000px;}
.x18_c01244{left:145.440000px;}
.x2e_c01244{left:146.880000px;}
.x55_c01244{left:157.680000px;}
.x2_c01244{left:166.320000px;}
.x1a_c01244{left:167.760000px;}
.x69_c01244{left:169.200000px;}
.x5f_c01244{left:170.640000px;}
.xb_c01244{left:177.120000px;}
.x47_c01244{left:179.280000px;}
.x39_c01244{left:190.080000px;}
.x58_c01244{left:191.520000px;}
.x3_c01244{left:199.440000px;}
.x4c_c01244{left:200.880000px;}
.x6b_c01244{left:202.320000px;}
.x28_c01244{left:210.240000px;}
.x56_c01244{left:220.320000px;}
.x41_c01244{left:222.480000px;}
.xf_c01244{left:231.840000px;}
.x59_c01244{left:234.720000px;}
.x19_c01244{left:242.640000px;}
.x3b_c01244{left:244.080000px;}
.x42_c01244{left:248.400000px;}
.x11_c01244{left:252.720000px;}
.x1b_c01244{left:254.160000px;}
.x6d_c01244{left:255.600000px;}
.x4_c01244{left:263.520000px;}
.x3c_c01244{left:264.960000px;}
.x6a_c01244{left:266.400000px;}
.x2f_c01244{left:274.320000px;}
.x4a_c01244{left:275.760000px;}
.x60_c01244{left:277.200000px;}
.x12_c01244{left:285.120000px;}
.x57_c01244{left:287.280000px;}
.x21_c01244{left:296.640000px;}
.x4f_c01244{left:298.080000px;}
.x29_c01244{left:308.160000px;}
.x10_c01244{left:317.520000px;}
.x4d_c01244{left:319.680000px;}
.x22_c01244{left:329.040000px;}
.x5a_c01244{left:331.920000px;}
.x1c_c01244{left:340.560000px;}
.x5_c01244{left:349.920000px;}
.x4e_c01244{left:352.080000px;}
.x13_c01244{left:360.720000px;}
.x50_c01244{left:362.880000px;}
.x23_c01244{left:371.520000px;}
.x3d_c01244{left:373.680000px;}
.xc_c01244{left:383.760000px;}
.x6_c01244{left:393.120000px;}
.x14_c01244{left:394.560000px;}
.x51_c01244{left:396.000000px;}
.x4b_c01244{left:406.080000px;}
.x52_c01244{left:408.240000px;}
.x24_c01244{left:414.720000px;}
.x2a_c01244{left:416.160000px;}
.x30_c01244{left:426.240000px;}
.x43_c01244{left:427.680000px;}
.x53_c01244{left:429.120000px;}
.x35_c01244{left:437.760000px;}
.xd_c01244{left:448.560000px;}
.x67_c01244{left:451.440000px;}
.x15_c01244{left:457.920000px;}
.x44_c01244{left:460.080000px;}
.x61_c01244{left:461.520000px;}
.x25_c01244{left:470.160000px;}
.x16_c01244{left:480.960000px;}
.x62_c01244{left:482.400000px;}
.x31_c01244{left:491.760000px;}
.x7_c01244{left:501.840000px;}
.x26_c01244{left:514.080000px;}
.x32_c01244{left:525.600000px;}
.x63_c01244{left:527.040000px;}
.x8_c01244{left:534.240000px;}
.x3e_c01244{left:535.680000px;}
.x45_c01244{left:537.840000px;}
.x27_c01244{left:545.040000px;}
.x2b_c01244{left:546.480000px;}
.x5b_c01244{left:548.640000px;}
.x36_c01244{left:557.280000px;}
.x46_c01244{left:559.440000px;}
.x9_c01244{left:568.080000px;}
.x64_c01244{left:570.240000px;}
.x1d_c01244{left:578.880000px;}
.x17_c01244{left:589.680000px;}
.x48_c01244{left:601.920000px;}
.x2c_c01244{left:611.280000px;}
.x3f_c01244{left:612.720000px;}
.x33_c01244{left:622.080000px;}
.x6e_c01244{left:623.520000px;}
.x68_c01244{left:624.960000px;}
.x37_c01244{left:633.600000px;}
.x65_c01244{left:635.040000px;}
.x40_c01244{left:645.120000px;}
.x5c_c01244{left:646.560000px;}
.x34_c01244{left:654.480000px;}
.x6f_c01244{left:656.640000px;}
.x49_c01244{left:667.440000px;}
.x1_c01244{left:669.600000px;}
.x1e_c01244{left:676.800000px;}
@media print{
.v0_c01244{vertical-align:0.000000pt;}
.v2_c01244{vertical-align:2.560000pt;}
.v1_c01244{vertical-align:5.120000pt;}
.ls1_c01244{letter-spacing:0.000000pt;}
.ls0_c01244{letter-spacing:148.597973pt;}
.ws1_c01244{word-spacing:0.000000pt;}
.ws0_c01244{word-spacing:128.708267pt;}
.fsf_c01244{font-size:15.360000pt;}
.fsb_c01244{font-size:28.160000pt;}
.fs4_c01244{font-size:30.720000pt;}
.fsc_c01244{font-size:33.280000pt;}
.fs7_c01244{font-size:35.840000pt;}
.fs1_c01244{font-size:38.400000pt;}
.fs3_c01244{font-size:40.960000pt;}
.fs5_c01244{font-size:43.520000pt;}
.fs2_c01244{font-size:46.080000pt;}
.fs9_c01244{font-size:48.640000pt;}
.fs8_c01244{font-size:51.200000pt;}
.fs6_c01244{font-size:53.760000pt;}
.fse_c01244{font-size:56.320000pt;}
.fsd_c01244{font-size:61.440000pt;}
.fs0_c01244{font-size:66.560000pt;}
.fsa_c01244{font-size:92.160000pt;}
.y0_c01244{bottom:0.000000pt;}
.y89_c01244{bottom:27.520000pt;}
.y8a_c01244{bottom:28.160000pt;}
.y85_c01244{bottom:30.080000pt;}
.y86_c01244{bottom:30.720000pt;}
.y88_c01244{bottom:31.360000pt;}
.y87_c01244{bottom:32.000000pt;}
.y84_c01244{bottom:33.920000pt;}
.y83_c01244{bottom:34.560000pt;}
.y82_c01244{bottom:37.760000pt;}
.y81_c01244{bottom:38.400000pt;}
.y7f_c01244{bottom:67.200000pt;}
.y80_c01244{bottom:67.840000pt;}
.y7e_c01244{bottom:68.480000pt;}
.y7d_c01244{bottom:69.120000pt;}
.y7c_c01244{bottom:70.400000pt;}
.y7b_c01244{bottom:72.320000pt;}
.y7a_c01244{bottom:115.840000pt;}
.y79_c01244{bottom:116.480000pt;}
.y78_c01244{bottom:119.680000pt;}
.y75_c01244{bottom:152.960000pt;}
.y77_c01244{bottom:153.600000pt;}
.y76_c01244{bottom:154.240000pt;}
.y74_c01244{bottom:154.880000pt;}
.y73_c01244{bottom:156.800000pt;}
.y72_c01244{bottom:157.440000pt;}
.y71_c01244{bottom:190.080000pt;}
.y70_c01244{bottom:190.720000pt;}
.y6d_c01244{bottom:191.360000pt;}
.y6c_c01244{bottom:192.000000pt;}
.y6e_c01244{bottom:192.640000pt;}
.y6f_c01244{bottom:193.280000pt;}
.y69_c01244{bottom:193.920000pt;}
.y6b_c01244{bottom:194.560000pt;}
.y6a_c01244{bottom:195.200000pt;}
.y68_c01244{bottom:230.400000pt;}
.y66_c01244{bottom:231.040000pt;}
.y67_c01244{bottom:231.680000pt;}
.y65_c01244{bottom:232.320000pt;}
.y64_c01244{bottom:232.960000pt;}
.y63_c01244{bottom:234.240000pt;}
.y60_c01244{bottom:266.880000pt;}
.y62_c01244{bottom:267.520000pt;}
.y61_c01244{bottom:268.800000pt;}
.y5e_c01244{bottom:269.440000pt;}
.y5f_c01244{bottom:270.080000pt;}
.y5d_c01244{bottom:272.000000pt;}
.y5c_c01244{bottom:272.640000pt;}
.y58_c01244{bottom:305.280000pt;}
.y5a_c01244{bottom:305.920000pt;}
.y59_c01244{bottom:307.200000pt;}
.y57_c01244{bottom:309.120000pt;}
.y56_c01244{bottom:310.400000pt;}
.y5b_c01244{bottom:311.680000pt;}
.y52_c01244{bottom:344.320000pt;}
.y55_c01244{bottom:344.960000pt;}
.y53_c01244{bottom:345.600000pt;}
.y54_c01244{bottom:346.240000pt;}
.y51_c01244{bottom:347.520000pt;}
.y50_c01244{bottom:348.160000pt;}
.y4e_c01244{bottom:381.440000pt;}
.y4f_c01244{bottom:382.080000pt;}
.y4d_c01244{bottom:384.000000pt;}
.y4c_c01244{bottom:385.280000pt;}
.y4b_c01244{bottom:419.200000pt;}
.y4a_c01244{bottom:419.840000pt;}
.y48_c01244{bottom:420.480000pt;}
.y49_c01244{bottom:421.760000pt;}
.y45_c01244{bottom:422.400000pt;}
.y47_c01244{bottom:423.040000pt;}
.y46_c01244{bottom:423.680000pt;}
.y43_c01244{bottom:458.240000pt;}
.y41_c01244{bottom:458.880000pt;}
.y44_c01244{bottom:459.520000pt;}
.y42_c01244{bottom:460.160000pt;}
.y40_c01244{bottom:461.440000pt;}
.y3d_c01244{bottom:495.360000pt;}
.y3e_c01244{bottom:497.280000pt;}
.y3c_c01244{bottom:497.920000pt;}
.y3f_c01244{bottom:498.560000pt;}
.y39_c01244{bottom:532.480000pt;}
.y37_c01244{bottom:533.120000pt;}
.y3b_c01244{bottom:533.760000pt;}
.y38_c01244{bottom:535.680000pt;}
.y3a_c01244{bottom:536.320000pt;}
.y34_c01244{bottom:570.880000pt;}
.y33_c01244{bottom:572.800000pt;}
.y32_c01244{bottom:573.440000pt;}
.y35_c01244{bottom:574.080000pt;}
.y36_c01244{bottom:574.720000pt;}
.y2d_c01244{bottom:608.640000pt;}
.y2e_c01244{bottom:611.200000pt;}
.y2f_c01244{bottom:611.840000pt;}
.y30_c01244{bottom:612.480000pt;}
.y31_c01244{bottom:613.120000pt;}
.y28_c01244{bottom:646.400000pt;}
.y2a_c01244{bottom:647.040000pt;}
.y29_c01244{bottom:648.960000pt;}
.y2b_c01244{bottom:650.240000pt;}
.y2c_c01244{bottom:650.880000pt;}
.y21_c01244{bottom:684.800000pt;}
.y25_c01244{bottom:685.440000pt;}
.y20_c01244{bottom:686.080000pt;}
.y22_c01244{bottom:686.720000pt;}
.y24_c01244{bottom:687.360000pt;}
.y23_c01244{bottom:688.000000pt;}
.y26_c01244{bottom:688.640000pt;}
.y27_c01244{bottom:689.280000pt;}
.y1c_c01244{bottom:725.120000pt;}
.y1e_c01244{bottom:725.760000pt;}
.y1d_c01244{bottom:726.400000pt;}
.y1f_c01244{bottom:727.680000pt;}
.y17_c01244{bottom:769.920000pt;}
.y1a_c01244{bottom:770.560000pt;}
.y16_c01244{bottom:772.480000pt;}
.y18_c01244{bottom:773.120000pt;}
.y19_c01244{bottom:773.760000pt;}
.y1b_c01244{bottom:775.040000pt;}
.y13_c01244{bottom:819.200000pt;}
.y11_c01244{bottom:819.840000pt;}
.y12_c01244{bottom:820.480000pt;}
.y14_c01244{bottom:821.760000pt;}
.y15_c01244{bottom:822.400000pt;}
.yc_c01244{bottom:864.640000pt;}
.yd_c01244{bottom:865.920000pt;}
.ye_c01244{bottom:867.200000pt;}
.yf_c01244{bottom:867.840000pt;}
.y10_c01244{bottom:870.400000pt;}
.y8_c01244{bottom:885.760000pt;}
.y9_c01244{bottom:886.400000pt;}
.ya_c01244{bottom:888.960000pt;}
.yb_c01244{bottom:889.600000pt;}
.y5_c01244{bottom:933.760000pt;}
.y3_c01244{bottom:934.400000pt;}
.y2_c01244{bottom:935.040000pt;}
.y4_c01244{bottom:935.680000pt;}
.y6_c01244{bottom:936.960000pt;}
.y7_c01244{bottom:937.600000pt;}
.y1_c01244{bottom:992.000000pt;}
.h12_c01244{height:13.822500pt;}
.he_c01244{height:25.341250pt;}
.h6_c01244{height:27.645000pt;}
.hf_c01244{height:29.948750pt;}
.ha_c01244{height:32.252500pt;}
.h3_c01244{height:34.556250pt;}
.h5_c01244{height:36.860000pt;}
.h7_c01244{height:39.163750pt;}
.h4_c01244{height:41.467500pt;}
.hc_c01244{height:43.771250pt;}
.h9_c01244{height:44.540000pt;}
.hb_c01244{height:46.075000pt;}
.h8_c01244{height:48.378750pt;}
.h11_c01244{height:50.682500pt;}
.h10_c01244{height:55.290000pt;}
.h2_c01244{height:59.897500pt;}
.hd_c01244{height:82.935000pt;}
.h0_c01244{height:1031.040000pt;}
.h1_c01244{height:1031.333333pt;}
.w0_c01244{width:695.040000pt;}
.w1_c01244{width:695.333333pt;}
.x0_c01244{left:0.000000pt;}
.x1f_c01244{left:57.600000pt;}
.x3a_c01244{left:59.520000pt;}
.x5d_c01244{left:60.800000pt;}
.xe_c01244{left:84.480000pt;}
.x54_c01244{left:86.400000pt;}
.x2d_c01244{left:92.160000pt;}
.x20_c01244{left:94.080000pt;}
.xa_c01244{left:103.040000pt;}
.x6c_c01244{left:104.960000pt;}
.x66_c01244{left:113.920000pt;}
.x38_c01244{left:120.960000pt;}
.x5e_c01244{left:123.520000pt;}
.x18_c01244{left:129.280000pt;}
.x2e_c01244{left:130.560000pt;}
.x55_c01244{left:140.160000pt;}
.x2_c01244{left:147.840000pt;}
.x1a_c01244{left:149.120000pt;}
.x69_c01244{left:150.400000pt;}
.x5f_c01244{left:151.680000pt;}
.xb_c01244{left:157.440000pt;}
.x47_c01244{left:159.360000pt;}
.x39_c01244{left:168.960000pt;}
.x58_c01244{left:170.240000pt;}
.x3_c01244{left:177.280000pt;}
.x4c_c01244{left:178.560000pt;}
.x6b_c01244{left:179.840000pt;}
.x28_c01244{left:186.880000pt;}
.x56_c01244{left:195.840000pt;}
.x41_c01244{left:197.760000pt;}
.xf_c01244{left:206.080000pt;}
.x59_c01244{left:208.640000pt;}
.x19_c01244{left:215.680000pt;}
.x3b_c01244{left:216.960000pt;}
.x42_c01244{left:220.800000pt;}
.x11_c01244{left:224.640000pt;}
.x1b_c01244{left:225.920000pt;}
.x6d_c01244{left:227.200000pt;}
.x4_c01244{left:234.240000pt;}
.x3c_c01244{left:235.520000pt;}
.x6a_c01244{left:236.800000pt;}
.x2f_c01244{left:243.840000pt;}
.x4a_c01244{left:245.120000pt;}
.x60_c01244{left:246.400000pt;}
.x12_c01244{left:253.440000pt;}
.x57_c01244{left:255.360000pt;}
.x21_c01244{left:263.680000pt;}
.x4f_c01244{left:264.960000pt;}
.x29_c01244{left:273.920000pt;}
.x10_c01244{left:282.240000pt;}
.x4d_c01244{left:284.160000pt;}
.x22_c01244{left:292.480000pt;}
.x5a_c01244{left:295.040000pt;}
.x1c_c01244{left:302.720000pt;}
.x5_c01244{left:311.040000pt;}
.x4e_c01244{left:312.960000pt;}
.x13_c01244{left:320.640000pt;}
.x50_c01244{left:322.560000pt;}
.x23_c01244{left:330.240000pt;}
.x3d_c01244{left:332.160000pt;}
.xc_c01244{left:341.120000pt;}
.x6_c01244{left:349.440000pt;}
.x14_c01244{left:350.720000pt;}
.x51_c01244{left:352.000000pt;}
.x4b_c01244{left:360.960000pt;}
.x52_c01244{left:362.880000pt;}
.x24_c01244{left:368.640000pt;}
.x2a_c01244{left:369.920000pt;}
.x30_c01244{left:378.880000pt;}
.x43_c01244{left:380.160000pt;}
.x53_c01244{left:381.440000pt;}
.x35_c01244{left:389.120000pt;}
.xd_c01244{left:398.720000pt;}
.x67_c01244{left:401.280000pt;}
.x15_c01244{left:407.040000pt;}
.x44_c01244{left:408.960000pt;}
.x61_c01244{left:410.240000pt;}
.x25_c01244{left:417.920000pt;}
.x16_c01244{left:427.520000pt;}
.x62_c01244{left:428.800000pt;}
.x31_c01244{left:437.120000pt;}
.x7_c01244{left:446.080000pt;}
.x26_c01244{left:456.960000pt;}
.x32_c01244{left:467.200000pt;}
.x63_c01244{left:468.480000pt;}
.x8_c01244{left:474.880000pt;}
.x3e_c01244{left:476.160000pt;}
.x45_c01244{left:478.080000pt;}
.x27_c01244{left:484.480000pt;}
.x2b_c01244{left:485.760000pt;}
.x5b_c01244{left:487.680000pt;}
.x36_c01244{left:495.360000pt;}
.x46_c01244{left:497.280000pt;}
.x9_c01244{left:504.960000pt;}
.x64_c01244{left:506.880000pt;}
.x1d_c01244{left:514.560000pt;}
.x17_c01244{left:524.160000pt;}
.x48_c01244{left:535.040000pt;}
.x2c_c01244{left:543.360000pt;}
.x3f_c01244{left:544.640000pt;}
.x33_c01244{left:552.960000pt;}
.x6e_c01244{left:554.240000pt;}
.x68_c01244{left:555.520000pt;}
.x37_c01244{left:563.200000pt;}
.x65_c01244{left:564.480000pt;}
.x40_c01244{left:573.440000pt;}
.x5c_c01244{left:574.720000pt;}
.x34_c01244{left:581.760000pt;}
.x6f_c01244{left:583.680000pt;}
.x49_c01244{left:593.280000pt;}
.x1_c01244{left:595.200000pt;}
.x1e_c01244{left:601.600000pt;}
}





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

.ir_c01245:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01245{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01245;src:url('chunks/assets/font_9c6ed64a27c092041da6dce4.woff2')format("woff");}.ff1_c01245{font-family:ff1_c01245;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m56_c01245{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m16_c01245{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);}
.m43_c01245{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);}
.m37_c01245{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m38_c01245{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m20_c01245{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m33_c01245{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m53_c01245{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m5b_c01245{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m4d_c01245{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01245{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m55_c01245{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m46_c01245{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01245{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);}
.m51_c01245{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m24_c01245{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1_c01245{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);}
.m48_c01245{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m15_c01245{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.mf_c01245{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);}
.m50_c01245{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m9_c01245{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);}
.m35_c01245{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m25_c01245{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);}
.m2e_c01245{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m30_c01245{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m10_c01245{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m29_c01245{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);}
.m0_c01245{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01245{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m3_c01245{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);}
.m2d_c01245{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m36_c01245{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);}
.m19_c01245{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.mb_c01245{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.mc_c01245{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m18_c01245{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m12_c01245{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01245{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);}
.m3f_c01245{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.me_c01245{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m26_c01245{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);}
.m42_c01245{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);}
.m22_c01245{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m59_c01245{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m21_c01245{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01245{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m41_c01245{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);}
.m31_c01245{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01245{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m52_c01245{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);}
.m4_c01245{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);}
.m4b_c01245{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01245{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m4a_c01245{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01245{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);}
.m57_c01245{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m2_c01245{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m49_c01245{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01245{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);}
.m6_c01245{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m34_c01245{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01245{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m13_c01245{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);}
.m23_c01245{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01245{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m7_c01245{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);}
.m11_c01245{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m28_c01245{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01245{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m5a_c01245{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01245{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);}
.m47_c01245{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m39_c01245{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m32_c01245{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.ma_c01245{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m8_c01245{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m14_c01245{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01245{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);}
.m4f_c01245{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m17_c01245{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01245{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m40_c01245{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m45_c01245{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.md_c01245{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m5_c01245{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);}
.m54_c01245{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);}
.m1a_c01245{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m58_c01245{transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);}
.m27_c01245{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);}
.m2f_c01245{transform:matrix(0.982500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.982500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.982500,0.000000,0.000000,0.250000,0,0);}
.m44_c01245{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.v1_c01245{vertical-align:-5.760000px;}
.v0_c01245{vertical-align:0.000000px;}
.ls1_c01245{letter-spacing:0.000000px;}
.ls0_c01245{letter-spacing:28.784640px;}
.sc__c01245{text-shadow:none;}
.sc0_c01245{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01245{-webkit-text-stroke:0px transparent;}
.sc0_c01245{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01245{word-spacing:0.000000px;}
.fc0_c01245{color:transparent;}
.fse_c01245{font-size:17.280000px;}
.fsc_c01245{font-size:23.040000px;}
.fs4_c01245{font-size:34.560000px;}
.fsb_c01245{font-size:37.440000px;}
.fsa_c01245{font-size:40.320000px;}
.fs5_c01245{font-size:46.080000px;}
.fs1_c01245{font-size:48.960000px;}
.fs2_c01245{font-size:51.840000px;}
.fs3_c01245{font-size:54.720000px;}
.fs6_c01245{font-size:57.600000px;}
.fs7_c01245{font-size:60.480000px;}
.fs9_c01245{font-size:63.360000px;}
.fsf_c01245{font-size:66.240000px;}
.fs8_c01245{font-size:69.120000px;}
.fsd_c01245{font-size:72.000000px;}
.fs0_c01245{font-size:74.880000px;}
.y0_c01245{bottom:0.000000px;}
.y83_c01245{bottom:78.480000px;}
.y84_c01245{bottom:82.080000px;}
.y82_c01245{bottom:82.800000px;}
.y81_c01245{bottom:83.520000px;}
.y80_c01245{bottom:87.120000px;}
.y7f_c01245{bottom:90.000000px;}
.y7e_c01245{bottom:123.120000px;}
.y7d_c01245{bottom:125.280000px;}
.y7a_c01245{bottom:126.000000px;}
.y7c_c01245{bottom:126.720000px;}
.y7b_c01245{bottom:127.440000px;}
.y79_c01245{bottom:129.600000px;}
.y78_c01245{bottom:165.600000px;}
.y74_c01245{bottom:167.760000px;}
.y76_c01245{bottom:168.480000px;}
.y77_c01245{bottom:169.200000px;}
.y73_c01245{bottom:169.920000px;}
.y75_c01245{bottom:170.640000px;}
.y72_c01245{bottom:172.800000px;}
.y71_c01245{bottom:173.520000px;}
.y70_c01245{bottom:207.360000px;}
.y6f_c01245{bottom:209.520000px;}
.y6e_c01245{bottom:211.680000px;}
.y6d_c01245{bottom:212.400000px;}
.y6c_c01245{bottom:213.120000px;}
.y6b_c01245{bottom:216.000000px;}
.y6a_c01245{bottom:252.000000px;}
.y67_c01245{bottom:254.880000px;}
.y69_c01245{bottom:255.600000px;}
.y68_c01245{bottom:256.320000px;}
.y66_c01245{bottom:257.040000px;}
.y64_c01245{bottom:294.480000px;}
.y63_c01245{bottom:297.360000px;}
.y65_c01245{bottom:298.080000px;}
.y62_c01245{bottom:301.680000px;}
.y61_c01245{bottom:338.400000px;}
.y5e_c01245{bottom:339.840000px;}
.y60_c01245{bottom:340.560000px;}
.y5f_c01245{bottom:341.280000px;}
.y5d_c01245{bottom:343.440000px;}
.y5a_c01245{bottom:380.880000px;}
.y5b_c01245{bottom:381.600000px;}
.y58_c01245{bottom:382.320000px;}
.y5c_c01245{bottom:383.040000px;}
.y59_c01245{bottom:383.760000px;}
.y57_c01245{bottom:385.200000px;}
.y56_c01245{bottom:385.920000px;}
.y52_c01245{bottom:423.360000px;}
.y55_c01245{bottom:424.080000px;}
.y54_c01245{bottom:424.800000px;}
.y53_c01245{bottom:425.520000px;}
.y51_c01245{bottom:426.240000px;}
.y50_c01245{bottom:426.960000px;}
.y4e_c01245{bottom:465.840000px;}
.y4c_c01245{bottom:466.560000px;}
.y4a_c01245{bottom:468.720000px;}
.y4d_c01245{bottom:469.440000px;}
.y4f_c01245{bottom:470.160000px;}
.y4b_c01245{bottom:472.320000px;}
.y48_c01245{bottom:509.040000px;}
.y49_c01245{bottom:511.200000px;}
.y47_c01245{bottom:511.920000px;}
.y46_c01245{bottom:512.640000px;}
.y43_c01245{bottom:552.240000px;}
.y44_c01245{bottom:552.960000px;}
.y42_c01245{bottom:554.400000px;}
.y41_c01245{bottom:555.120000px;}
.y45_c01245{bottom:555.840000px;}
.y3c_c01245{bottom:594.720000px;}
.y3d_c01245{bottom:596.880000px;}
.y3f_c01245{bottom:597.600000px;}
.y3e_c01245{bottom:598.320000px;}
.y40_c01245{bottom:599.040000px;}
.y3b_c01245{bottom:639.360000px;}
.y39_c01245{bottom:640.080000px;}
.y3a_c01245{bottom:640.800000px;}
.y38_c01245{bottom:692.640000px;}
.y37_c01245{bottom:693.360000px;}
.y2f_c01245{bottom:733.680000px;}
.y33_c01245{bottom:734.400000px;}
.y34_c01245{bottom:735.120000px;}
.y30_c01245{bottom:735.840000px;}
.y31_c01245{bottom:736.560000px;}
.y32_c01245{bottom:737.280000px;}
.y35_c01245{bottom:738.000000px;}
.y36_c01245{bottom:738.720000px;}
.y2b_c01245{bottom:776.880000px;}
.y28_c01245{bottom:777.600000px;}
.y29_c01245{bottom:778.320000px;}
.y2c_c01245{bottom:779.040000px;}
.y2a_c01245{bottom:780.480000px;}
.y2e_c01245{bottom:781.200000px;}
.y2d_c01245{bottom:781.920000px;}
.y23_c01245{bottom:820.800000px;}
.y21_c01245{bottom:821.520000px;}
.y22_c01245{bottom:822.240000px;}
.y24_c01245{bottom:822.960000px;}
.y26_c01245{bottom:823.680000px;}
.y25_c01245{bottom:824.400000px;}
.y27_c01245{bottom:825.120000px;}
.y1d_c01245{bottom:864.720000px;}
.y1e_c01245{bottom:865.440000px;}
.y1f_c01245{bottom:866.160000px;}
.y20_c01245{bottom:866.880000px;}
.y19_c01245{bottom:916.560000px;}
.y1a_c01245{bottom:917.280000px;}
.y1b_c01245{bottom:918.000000px;}
.y1c_c01245{bottom:918.720000px;}
.y11_c01245{bottom:956.880000px;}
.y12_c01245{bottom:957.600000px;}
.y13_c01245{bottom:960.480000px;}
.y14_c01245{bottom:961.200000px;}
.y15_c01245{bottom:961.920000px;}
.y16_c01245{bottom:962.640000px;}
.y17_c01245{bottom:963.360000px;}
.y18_c01245{bottom:964.800000px;}
.y8_c01245{bottom:997.920000px;}
.y9_c01245{bottom:998.640000px;}
.ya_c01245{bottom:1000.080000px;}
.yc_c01245{bottom:1001.520000px;}
.ye_c01245{bottom:1002.960000px;}
.yb_c01245{bottom:1003.680000px;}
.yd_c01245{bottom:1004.400000px;}
.yf_c01245{bottom:1006.560000px;}
.y10_c01245{bottom:1007.280000px;}
.y2_c01245{bottom:1043.280000px;}
.y4_c01245{bottom:1044.000000px;}
.y3_c01245{bottom:1045.440000px;}
.y5_c01245{bottom:1047.600000px;}
.y6_c01245{bottom:1049.760000px;}
.y7_c01245{bottom:1050.480000px;}
.y1_c01245{bottom:1103.040000px;}
.h11_c01245{height:15.550313px;}
.he_c01245{height:20.733750px;}
.h6_c01245{height:31.100625px;}
.hd_c01245{height:33.692344px;}
.hc_c01245{height:36.284062px;}
.h10_c01245{height:40.890937px;}
.h7_c01245{height:41.467500px;}
.h3_c01245{height:44.059219px;}
.h4_c01245{height:46.650937px;}
.h5_c01245{height:49.242656px;}
.h8_c01245{height:51.834375px;}
.h9_c01245{height:54.426094px;}
.hb_c01245{height:57.017812px;}
.h12_c01245{height:59.609531px;}
.ha_c01245{height:62.201250px;}
.hf_c01245{height:64.792969px;}
.h2_c01245{height:67.384687px;}
.h0_c01245{height:1159.920000px;}
.h1_c01245{height:1160.250000px;}
.w0_c01245{width:781.200000px;}
.w1_c01245{width:781.500000px;}
.x0_c01245{left:0.000000px;}
.x2_c01245{left:59.040000px;}
.x15_c01245{left:60.480000px;}
.x36_c01245{left:61.920000px;}
.x5d_c01245{left:63.360000px;}
.x74_c01245{left:64.800000px;}
.x3e_c01245{left:79.920000px;}
.x56_c01245{left:92.880000px;}
.x7b_c01245{left:94.320000px;}
.xc_c01245{left:99.360000px;}
.x3a_c01245{left:101.520000px;}
.x63_c01245{left:102.960000px;}
.x4d_c01245{left:111.600000px;}
.x3_c01245{left:120.240000px;}
.x57_c01245{left:123.120000px;}
.xd_c01245{left:130.320000px;}
.x48_c01245{left:131.760000px;}
.x50_c01245{left:133.920000px;}
.x6e_c01245{left:135.360000px;}
.x16_c01245{left:140.400000px;}
.x27_c01245{left:151.200000px;}
.x75_c01245{left:155.520000px;}
.x17_c01245{left:162.000000px;}
.x3b_c01245{left:164.160000px;}
.xe_c01245{left:172.800000px;}
.x5e_c01245{left:174.960000px;}
.x4_c01245{left:182.880000px;}
.x43_c01245{left:185.040000px;}
.x64_c01245{left:186.480000px;}
.x1f_c01245{left:194.400000px;}
.x58_c01245{left:196.560000px;}
.x76_c01245{left:198.720000px;}
.xf_c01245{left:205.200000px;}
.x51_c01245{left:206.640000px;}
.x5f_c01245{left:218.160000px;}
.x5_c01245{left:225.360000px;}
.x28_c01245{left:227.520000px;}
.x1e_c01245{left:237.600000px;}
.x6f_c01245{left:241.200000px;}
.x3f_c01245{left:249.840000px;}
.x65_c01245{left:252.000000px;}
.x2e_c01245{left:259.920000px;}
.x6a_c01245{left:261.360000px;}
.x20_c01245{left:270.000000px;}
.x59_c01245{left:272.880000px;}
.x18_c01245{left:278.640000px;}
.x2f_c01245{left:280.800000px;}
.x44_c01245{left:282.240000px;}
.x7c_c01245{left:284.400000px;}
.x10_c01245{left:290.880000px;}
.x52_c01245{left:293.760000px;}
.x21_c01245{left:301.680000px;}
.x66_c01245{left:304.560000px;}
.x4e_c01245{left:313.200000px;}
.x6b_c01245{left:315.360000px;}
.x7d_c01245{left:318.240000px;}
.x11_c01245{left:322.560000px;}
.x29_c01245{left:324.720000px;}
.x5a_c01245{left:326.160000px;}
.x37_c01245{left:334.800000px;}
.x19_c01245{left:343.440000px;}
.x5b_c01245{left:347.760000px;}
.x30_c01245{left:356.400000px;}
.x70_c01245{left:360.720000px;}
.x22_c01245{left:366.480000px;}
.x45_c01245{left:367.920000px;}
.x77_c01245{left:370.800000px;}
.x53_c01245{left:380.160000px;}
.x1a_c01245{left:388.800000px;}
.x3c_c01245{left:401.040000px;}
.x6c_c01245{left:402.480000px;}
.x1b_c01245{left:408.960000px;}
.x6_c01245{left:410.400000px;}
.x46_c01245{left:411.840000px;}
.x71_c01245{left:413.280000px;}
.x40_c01245{left:421.920000px;}
.x49_c01245{left:423.360000px;}
.x31_c01245{left:433.440000px;}
.x7_c01245{left:441.360000px;}
.x2a_c01245{left:445.680000px;}
.x78_c01245{left:457.920000px;}
.x1c_c01245{left:465.120000px;}
.x4f_c01245{left:467.280000px;}
.x4a_c01245{left:469.440000px;}
.x23_c01245{left:475.200000px;}
.x2b_c01245{left:476.640000px;}
.x61_c01245{left:478.080000px;}
.x7e_c01245{left:479.520000px;}
.x32_c01245{left:486.000000px;}
.x38_c01245{left:487.440000px;}
.x60_c01245{left:488.880000px;}
.x3d_c01245{left:498.240000px;}
.x67_c01245{left:500.400000px;}
.x2c_c01245{left:508.320000px;}
.x24_c01245{left:509.760000px;}
.x8_c01245{left:519.120000px;}
.x33_c01245{left:521.280000px;}
.x68_c01245{left:532.800000px;}
.x9_c01245{left:540.000000px;}
.x41_c01245{left:542.160000px;}
.x62_c01245{left:545.040000px;}
.x34_c01245{left:552.960000px;}
.x72_c01245{left:555.120000px;}
.x12_c01245{left:563.040000px;}
.x5c_c01245{left:565.920000px;}
.xa_c01245{left:572.400000px;}
.x25_c01245{left:574.560000px;}
.x54_c01245{left:576.720000px;}
.x35_c01245{left:585.360000px;}
.x4b_c01245{left:597.600000px;}
.x6d_c01245{left:599.760000px;}
.x39_c01245{left:605.520000px;}
.x2d_c01245{left:606.960000px;}
.x1d_c01245{left:616.320000px;}
.x47_c01245{left:618.480000px;}
.x69_c01245{left:619.920000px;}
.x13_c01245{left:627.840000px;}
.x55_c01245{left:630.000000px;}
.x79_c01245{left:631.440000px;}
.xb_c01245{left:639.360000px;}
.x7f_c01245{left:641.520000px;}
.x26_c01245{left:648.000000px;}
.x42_c01245{left:650.160000px;}
.x73_c01245{left:653.040000px;}
.x1_c01245{left:654.480000px;}
.x14_c01245{left:660.240000px;}
.x7a_c01245{left:663.840000px;}
.x4c_c01245{left:674.640000px;}
@media print{
.v1_c01245{vertical-align:-5.120000pt;}
.v0_c01245{vertical-align:0.000000pt;}
.ls1_c01245{letter-spacing:0.000000pt;}
.ls0_c01245{letter-spacing:25.586347pt;}
.ws0_c01245{word-spacing:0.000000pt;}
.fse_c01245{font-size:15.360000pt;}
.fsc_c01245{font-size:20.480000pt;}
.fs4_c01245{font-size:30.720000pt;}
.fsb_c01245{font-size:33.280000pt;}
.fsa_c01245{font-size:35.840000pt;}
.fs5_c01245{font-size:40.960000pt;}
.fs1_c01245{font-size:43.520000pt;}
.fs2_c01245{font-size:46.080000pt;}
.fs3_c01245{font-size:48.640000pt;}
.fs6_c01245{font-size:51.200000pt;}
.fs7_c01245{font-size:53.760000pt;}
.fs9_c01245{font-size:56.320000pt;}
.fsf_c01245{font-size:58.880000pt;}
.fs8_c01245{font-size:61.440000pt;}
.fsd_c01245{font-size:64.000000pt;}
.fs0_c01245{font-size:66.560000pt;}
.y0_c01245{bottom:0.000000pt;}
.y83_c01245{bottom:69.760000pt;}
.y84_c01245{bottom:72.960000pt;}
.y82_c01245{bottom:73.600000pt;}
.y81_c01245{bottom:74.240000pt;}
.y80_c01245{bottom:77.440000pt;}
.y7f_c01245{bottom:80.000000pt;}
.y7e_c01245{bottom:109.440000pt;}
.y7d_c01245{bottom:111.360000pt;}
.y7a_c01245{bottom:112.000000pt;}
.y7c_c01245{bottom:112.640000pt;}
.y7b_c01245{bottom:113.280000pt;}
.y79_c01245{bottom:115.200000pt;}
.y78_c01245{bottom:147.200000pt;}
.y74_c01245{bottom:149.120000pt;}
.y76_c01245{bottom:149.760000pt;}
.y77_c01245{bottom:150.400000pt;}
.y73_c01245{bottom:151.040000pt;}
.y75_c01245{bottom:151.680000pt;}
.y72_c01245{bottom:153.600000pt;}
.y71_c01245{bottom:154.240000pt;}
.y70_c01245{bottom:184.320000pt;}
.y6f_c01245{bottom:186.240000pt;}
.y6e_c01245{bottom:188.160000pt;}
.y6d_c01245{bottom:188.800000pt;}
.y6c_c01245{bottom:189.440000pt;}
.y6b_c01245{bottom:192.000000pt;}
.y6a_c01245{bottom:224.000000pt;}
.y67_c01245{bottom:226.560000pt;}
.y69_c01245{bottom:227.200000pt;}
.y68_c01245{bottom:227.840000pt;}
.y66_c01245{bottom:228.480000pt;}
.y64_c01245{bottom:261.760000pt;}
.y63_c01245{bottom:264.320000pt;}
.y65_c01245{bottom:264.960000pt;}
.y62_c01245{bottom:268.160000pt;}
.y61_c01245{bottom:300.800000pt;}
.y5e_c01245{bottom:302.080000pt;}
.y60_c01245{bottom:302.720000pt;}
.y5f_c01245{bottom:303.360000pt;}
.y5d_c01245{bottom:305.280000pt;}
.y5a_c01245{bottom:338.560000pt;}
.y5b_c01245{bottom:339.200000pt;}
.y58_c01245{bottom:339.840000pt;}
.y5c_c01245{bottom:340.480000pt;}
.y59_c01245{bottom:341.120000pt;}
.y57_c01245{bottom:342.400000pt;}
.y56_c01245{bottom:343.040000pt;}
.y52_c01245{bottom:376.320000pt;}
.y55_c01245{bottom:376.960000pt;}
.y54_c01245{bottom:377.600000pt;}
.y53_c01245{bottom:378.240000pt;}
.y51_c01245{bottom:378.880000pt;}
.y50_c01245{bottom:379.520000pt;}
.y4e_c01245{bottom:414.080000pt;}
.y4c_c01245{bottom:414.720000pt;}
.y4a_c01245{bottom:416.640000pt;}
.y4d_c01245{bottom:417.280000pt;}
.y4f_c01245{bottom:417.920000pt;}
.y4b_c01245{bottom:419.840000pt;}
.y48_c01245{bottom:452.480000pt;}
.y49_c01245{bottom:454.400000pt;}
.y47_c01245{bottom:455.040000pt;}
.y46_c01245{bottom:455.680000pt;}
.y43_c01245{bottom:490.880000pt;}
.y44_c01245{bottom:491.520000pt;}
.y42_c01245{bottom:492.800000pt;}
.y41_c01245{bottom:493.440000pt;}
.y45_c01245{bottom:494.080000pt;}
.y3c_c01245{bottom:528.640000pt;}
.y3d_c01245{bottom:530.560000pt;}
.y3f_c01245{bottom:531.200000pt;}
.y3e_c01245{bottom:531.840000pt;}
.y40_c01245{bottom:532.480000pt;}
.y3b_c01245{bottom:568.320000pt;}
.y39_c01245{bottom:568.960000pt;}
.y3a_c01245{bottom:569.600000pt;}
.y38_c01245{bottom:615.680000pt;}
.y37_c01245{bottom:616.320000pt;}
.y2f_c01245{bottom:652.160000pt;}
.y33_c01245{bottom:652.800000pt;}
.y34_c01245{bottom:653.440000pt;}
.y30_c01245{bottom:654.080000pt;}
.y31_c01245{bottom:654.720000pt;}
.y32_c01245{bottom:655.360000pt;}
.y35_c01245{bottom:656.000000pt;}
.y36_c01245{bottom:656.640000pt;}
.y2b_c01245{bottom:690.560000pt;}
.y28_c01245{bottom:691.200000pt;}
.y29_c01245{bottom:691.840000pt;}
.y2c_c01245{bottom:692.480000pt;}
.y2a_c01245{bottom:693.760000pt;}
.y2e_c01245{bottom:694.400000pt;}
.y2d_c01245{bottom:695.040000pt;}
.y23_c01245{bottom:729.600000pt;}
.y21_c01245{bottom:730.240000pt;}
.y22_c01245{bottom:730.880000pt;}
.y24_c01245{bottom:731.520000pt;}
.y26_c01245{bottom:732.160000pt;}
.y25_c01245{bottom:732.800000pt;}
.y27_c01245{bottom:733.440000pt;}
.y1d_c01245{bottom:768.640000pt;}
.y1e_c01245{bottom:769.280000pt;}
.y1f_c01245{bottom:769.920000pt;}
.y20_c01245{bottom:770.560000pt;}
.y19_c01245{bottom:814.720000pt;}
.y1a_c01245{bottom:815.360000pt;}
.y1b_c01245{bottom:816.000000pt;}
.y1c_c01245{bottom:816.640000pt;}
.y11_c01245{bottom:850.560000pt;}
.y12_c01245{bottom:851.200000pt;}
.y13_c01245{bottom:853.760000pt;}
.y14_c01245{bottom:854.400000pt;}
.y15_c01245{bottom:855.040000pt;}
.y16_c01245{bottom:855.680000pt;}
.y17_c01245{bottom:856.320000pt;}
.y18_c01245{bottom:857.600000pt;}
.y8_c01245{bottom:887.040000pt;}
.y9_c01245{bottom:887.680000pt;}
.ya_c01245{bottom:888.960000pt;}
.yc_c01245{bottom:890.240000pt;}
.ye_c01245{bottom:891.520000pt;}
.yb_c01245{bottom:892.160000pt;}
.yd_c01245{bottom:892.800000pt;}
.yf_c01245{bottom:894.720000pt;}
.y10_c01245{bottom:895.360000pt;}
.y2_c01245{bottom:927.360000pt;}
.y4_c01245{bottom:928.000000pt;}
.y3_c01245{bottom:929.280000pt;}
.y5_c01245{bottom:931.200000pt;}
.y6_c01245{bottom:933.120000pt;}
.y7_c01245{bottom:933.760000pt;}
.y1_c01245{bottom:980.480000pt;}
.h11_c01245{height:13.822500pt;}
.he_c01245{height:18.430000pt;}
.h6_c01245{height:27.645000pt;}
.hd_c01245{height:29.948750pt;}
.hc_c01245{height:32.252500pt;}
.h10_c01245{height:36.347500pt;}
.h7_c01245{height:36.860000pt;}
.h3_c01245{height:39.163750pt;}
.h4_c01245{height:41.467500pt;}
.h5_c01245{height:43.771250pt;}
.h8_c01245{height:46.075000pt;}
.h9_c01245{height:48.378750pt;}
.hb_c01245{height:50.682500pt;}
.h12_c01245{height:52.986250pt;}
.ha_c01245{height:55.290000pt;}
.hf_c01245{height:57.593750pt;}
.h2_c01245{height:59.897500pt;}
.h0_c01245{height:1031.040000pt;}
.h1_c01245{height:1031.333333pt;}
.w0_c01245{width:694.400000pt;}
.w1_c01245{width:694.666667pt;}
.x0_c01245{left:0.000000pt;}
.x2_c01245{left:52.480000pt;}
.x15_c01245{left:53.760000pt;}
.x36_c01245{left:55.040000pt;}
.x5d_c01245{left:56.320000pt;}
.x74_c01245{left:57.600000pt;}
.x3e_c01245{left:71.040000pt;}
.x56_c01245{left:82.560000pt;}
.x7b_c01245{left:83.840000pt;}
.xc_c01245{left:88.320000pt;}
.x3a_c01245{left:90.240000pt;}
.x63_c01245{left:91.520000pt;}
.x4d_c01245{left:99.200000pt;}
.x3_c01245{left:106.880000pt;}
.x57_c01245{left:109.440000pt;}
.xd_c01245{left:115.840000pt;}
.x48_c01245{left:117.120000pt;}
.x50_c01245{left:119.040000pt;}
.x6e_c01245{left:120.320000pt;}
.x16_c01245{left:124.800000pt;}
.x27_c01245{left:134.400000pt;}
.x75_c01245{left:138.240000pt;}
.x17_c01245{left:144.000000pt;}
.x3b_c01245{left:145.920000pt;}
.xe_c01245{left:153.600000pt;}
.x5e_c01245{left:155.520000pt;}
.x4_c01245{left:162.560000pt;}
.x43_c01245{left:164.480000pt;}
.x64_c01245{left:165.760000pt;}
.x1f_c01245{left:172.800000pt;}
.x58_c01245{left:174.720000pt;}
.x76_c01245{left:176.640000pt;}
.xf_c01245{left:182.400000pt;}
.x51_c01245{left:183.680000pt;}
.x5f_c01245{left:193.920000pt;}
.x5_c01245{left:200.320000pt;}
.x28_c01245{left:202.240000pt;}
.x1e_c01245{left:211.200000pt;}
.x6f_c01245{left:214.400000pt;}
.x3f_c01245{left:222.080000pt;}
.x65_c01245{left:224.000000pt;}
.x2e_c01245{left:231.040000pt;}
.x6a_c01245{left:232.320000pt;}
.x20_c01245{left:240.000000pt;}
.x59_c01245{left:242.560000pt;}
.x18_c01245{left:247.680000pt;}
.x2f_c01245{left:249.600000pt;}
.x44_c01245{left:250.880000pt;}
.x7c_c01245{left:252.800000pt;}
.x10_c01245{left:258.560000pt;}
.x52_c01245{left:261.120000pt;}
.x21_c01245{left:268.160000pt;}
.x66_c01245{left:270.720000pt;}
.x4e_c01245{left:278.400000pt;}
.x6b_c01245{left:280.320000pt;}
.x7d_c01245{left:282.880000pt;}
.x11_c01245{left:286.720000pt;}
.x29_c01245{left:288.640000pt;}
.x5a_c01245{left:289.920000pt;}
.x37_c01245{left:297.600000pt;}
.x19_c01245{left:305.280000pt;}
.x5b_c01245{left:309.120000pt;}
.x30_c01245{left:316.800000pt;}
.x70_c01245{left:320.640000pt;}
.x22_c01245{left:325.760000pt;}
.x45_c01245{left:327.040000pt;}
.x77_c01245{left:329.600000pt;}
.x53_c01245{left:337.920000pt;}
.x1a_c01245{left:345.600000pt;}
.x3c_c01245{left:356.480000pt;}
.x6c_c01245{left:357.760000pt;}
.x1b_c01245{left:363.520000pt;}
.x6_c01245{left:364.800000pt;}
.x46_c01245{left:366.080000pt;}
.x71_c01245{left:367.360000pt;}
.x40_c01245{left:375.040000pt;}
.x49_c01245{left:376.320000pt;}
.x31_c01245{left:385.280000pt;}
.x7_c01245{left:392.320000pt;}
.x2a_c01245{left:396.160000pt;}
.x78_c01245{left:407.040000pt;}
.x1c_c01245{left:413.440000pt;}
.x4f_c01245{left:415.360000pt;}
.x4a_c01245{left:417.280000pt;}
.x23_c01245{left:422.400000pt;}
.x2b_c01245{left:423.680000pt;}
.x61_c01245{left:424.960000pt;}
.x7e_c01245{left:426.240000pt;}
.x32_c01245{left:432.000000pt;}
.x38_c01245{left:433.280000pt;}
.x60_c01245{left:434.560000pt;}
.x3d_c01245{left:442.880000pt;}
.x67_c01245{left:444.800000pt;}
.x2c_c01245{left:451.840000pt;}
.x24_c01245{left:453.120000pt;}
.x8_c01245{left:461.440000pt;}
.x33_c01245{left:463.360000pt;}
.x68_c01245{left:473.600000pt;}
.x9_c01245{left:480.000000pt;}
.x41_c01245{left:481.920000pt;}
.x62_c01245{left:484.480000pt;}
.x34_c01245{left:491.520000pt;}
.x72_c01245{left:493.440000pt;}
.x12_c01245{left:500.480000pt;}
.x5c_c01245{left:503.040000pt;}
.xa_c01245{left:508.800000pt;}
.x25_c01245{left:510.720000pt;}
.x54_c01245{left:512.640000pt;}
.x35_c01245{left:520.320000pt;}
.x4b_c01245{left:531.200000pt;}
.x6d_c01245{left:533.120000pt;}
.x39_c01245{left:538.240000pt;}
.x2d_c01245{left:539.520000pt;}
.x1d_c01245{left:547.840000pt;}
.x47_c01245{left:549.760000pt;}
.x69_c01245{left:551.040000pt;}
.x13_c01245{left:558.080000pt;}
.x55_c01245{left:560.000000pt;}
.x79_c01245{left:561.280000pt;}
.xb_c01245{left:568.320000pt;}
.x7f_c01245{left:570.240000pt;}
.x26_c01245{left:576.000000pt;}
.x42_c01245{left:577.920000pt;}
.x73_c01245{left:580.480000pt;}
.x1_c01245{left:581.760000pt;}
.x14_c01245{left:586.880000pt;}
.x7a_c01245{left:590.080000pt;}
.x4c_c01245{left:599.680000pt;}
}





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

.ir_c01246:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01246{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01246;src:url('chunks/assets/font_b6061cdd3d0721ec2dba84c5.woff2')format("woff");}.ff1_c01246{font-family:ff1_c01246;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m61_c01246{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);}
.m5f_c01246{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);}
.m5d_c01246{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m5a_c01246{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mb_c01246{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m5c_c01246{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01246{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m24_c01246{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01246{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m5e_c01246{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01246{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m60_c01246{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m5b_c01246{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01246{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);}
.m2a_c01246{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m36_c01246{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);}
.m39_c01246{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m15_c01246{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);}
.m26_c01246{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m30_c01246{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);}
.m64_c01246{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m31_c01246{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);}
.m44_c01246{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01246{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m55_c01246{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m0_c01246{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.mc_c01246{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m4e_c01246{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01246{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.mf_c01246{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);}
.m59_c01246{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m20_c01246{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m10_c01246{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);}
.m57_c01246{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.md_c01246{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);}
.m34_c01246{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m16_c01246{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);}
.m56_c01246{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m29_c01246{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m32_c01246{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m28_c01246{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);}
.m46_c01246{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m6_c01246{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);}
.m43_c01246{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m41_c01246{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);}
.m3_c01246{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);}
.m17_c01246{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m58_c01246{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m7_c01246{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m1_c01246{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m66_c01246{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);}
.m37_c01246{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01246{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.me_c01246{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);}
.m21_c01246{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);}
.m52_c01246{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m19_c01246{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m42_c01246{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01246{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);}
.m2b_c01246{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01246{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m40_c01246{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m23_c01246{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m4_c01246{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m54_c01246{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m18_c01246{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01246{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);}
.m4f_c01246{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);}
.m4d_c01246{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01246{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.ma_c01246{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m14_c01246{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);}
.m38_c01246{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m25_c01246{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m35_c01246{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m49_c01246{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m50_c01246{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01246{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m11_c01246{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m2_c01246{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m47_c01246{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m5_c01246{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m12_c01246{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);}
.m1a_c01246{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m48_c01246{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01246{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01246{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m33_c01246{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01246{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01246{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);}
.m22_c01246{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);}
.m8_c01246{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m13_c01246{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);}
.m53_c01246{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m9_c01246{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01246{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m45_c01246{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01246{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m63_c01246{transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);}
.m27_c01246{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);}
.m2d_c01246{transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);}
.m51_c01246{transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);}
.m62_c01246{transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);}
.v0_c01246{vertical-align:0.000000px;}
.ls0_c01246{letter-spacing:0.000000px;}
.sc__c01246{text-shadow:none;}
.sc0_c01246{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01246{-webkit-text-stroke:0px transparent;}
.sc0_c01246{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01246{word-spacing:0.000000px;}
.fc0_c01246{color:transparent;}
.fsd_c01246{font-size:17.280000px;}
.fs6_c01246{font-size:31.680000px;}
.fs5_c01246{font-size:34.560000px;}
.fs4_c01246{font-size:43.200000px;}
.fs1_c01246{font-size:46.080000px;}
.fs2_c01246{font-size:48.960000px;}
.fs9_c01246{font-size:51.840000px;}
.fs7_c01246{font-size:54.720000px;}
.fs8_c01246{font-size:57.600000px;}
.fs3_c01246{font-size:60.480000px;}
.fsc_c01246{font-size:63.360000px;}
.fsb_c01246{font-size:66.240000px;}
.fsa_c01246{font-size:69.120000px;}
.fs0_c01246{font-size:74.880000px;}
.y0_c01246{bottom:0.000000px;}
.y8b_c01246{bottom:40.320000px;}
.y89_c01246{bottom:41.040000px;}
.y88_c01246{bottom:41.760000px;}
.y8c_c01246{bottom:42.480000px;}
.y87_c01246{bottom:43.920000px;}
.y8a_c01246{bottom:44.640000px;}
.y86_c01246{bottom:45.360000px;}
.y85_c01246{bottom:46.080000px;}
.y84_c01246{bottom:48.960000px;}
.y82_c01246{bottom:84.960000px;}
.y83_c01246{bottom:86.400000px;}
.y81_c01246{bottom:87.120000px;}
.y80_c01246{bottom:88.560000px;}
.y7f_c01246{bottom:89.280000px;}
.y7e_c01246{bottom:137.520000px;}
.y7a_c01246{bottom:138.240000px;}
.y7c_c01246{bottom:138.960000px;}
.y75_c01246{bottom:141.840000px;}
.y78_c01246{bottom:142.560000px;}
.y77_c01246{bottom:143.280000px;}
.y7d_c01246{bottom:144.000000px;}
.y79_c01246{bottom:162.000000px;}
.y7b_c01246{bottom:162.720000px;}
.y76_c01246{bottom:164.160000px;}
.y74_c01246{bottom:165.600000px;}
.y73_c01246{bottom:201.600000px;}
.y71_c01246{bottom:203.040000px;}
.y72_c01246{bottom:204.480000px;}
.y70_c01246{bottom:205.200000px;}
.y6f_c01246{bottom:208.800000px;}
.y6e_c01246{bottom:244.080000px;}
.y6a_c01246{bottom:246.240000px;}
.y6c_c01246{bottom:246.960000px;}
.y6d_c01246{bottom:247.680000px;}
.y6b_c01246{bottom:248.400000px;}
.y69_c01246{bottom:250.560000px;}
.y68_c01246{bottom:251.280000px;}
.y67_c01246{bottom:288.000000px;}
.y65_c01246{bottom:288.720000px;}
.y64_c01246{bottom:290.160000px;}
.y66_c01246{bottom:290.880000px;}
.y63_c01246{bottom:293.040000px;}
.y62_c01246{bottom:294.480000px;}
.y61_c01246{bottom:330.480000px;}
.y60_c01246{bottom:333.360000px;}
.y5f_c01246{bottom:334.800000px;}
.y5c_c01246{bottom:384.480000px;}
.y5b_c01246{bottom:385.200000px;}
.y5e_c01246{bottom:386.640000px;}
.y5d_c01246{bottom:387.360000px;}
.y5a_c01246{bottom:388.080000px;}
.y58_c01246{bottom:426.240000px;}
.y56_c01246{bottom:427.680000px;}
.y54_c01246{bottom:429.120000px;}
.y57_c01246{bottom:429.840000px;}
.y59_c01246{bottom:430.560000px;}
.y55_c01246{bottom:431.280000px;}
.y51_c01246{bottom:470.160000px;}
.y52_c01246{bottom:472.320000px;}
.y53_c01246{bottom:473.040000px;}
.y50_c01246{bottom:473.760000px;}
.y4f_c01246{bottom:513.360000px;}
.y4d_c01246{bottom:514.080000px;}
.y4e_c01246{bottom:515.520000px;}
.y4c_c01246{bottom:516.240000px;}
.y4b_c01246{bottom:516.960000px;}
.y48_c01246{bottom:556.560000px;}
.y47_c01246{bottom:557.280000px;}
.y4a_c01246{bottom:558.720000px;}
.y49_c01246{bottom:559.440000px;}
.y43_c01246{bottom:598.320000px;}
.y45_c01246{bottom:599.040000px;}
.y44_c01246{bottom:599.760000px;}
.y41_c01246{bottom:601.200000px;}
.y42_c01246{bottom:601.920000px;}
.y46_c01246{bottom:602.640000px;}
.y3e_c01246{bottom:640.080000px;}
.y3c_c01246{bottom:640.800000px;}
.y3f_c01246{bottom:641.520000px;}
.y3d_c01246{bottom:644.400000px;}
.y40_c01246{bottom:645.120000px;}
.y37_c01246{bottom:682.560000px;}
.y39_c01246{bottom:683.280000px;}
.y3a_c01246{bottom:684.000000px;}
.y38_c01246{bottom:685.440000px;}
.y36_c01246{bottom:686.160000px;}
.y3b_c01246{bottom:687.600000px;}
.y30_c01246{bottom:725.760000px;}
.y33_c01246{bottom:726.480000px;}
.y35_c01246{bottom:727.200000px;}
.y32_c01246{bottom:728.640000px;}
.y31_c01246{bottom:729.360000px;}
.y34_c01246{bottom:730.080000px;}
.y2a_c01246{bottom:767.520000px;}
.y2b_c01246{bottom:768.960000px;}
.y2f_c01246{bottom:769.680000px;}
.y29_c01246{bottom:771.120000px;}
.y2d_c01246{bottom:771.840000px;}
.y2c_c01246{bottom:772.560000px;}
.y2e_c01246{bottom:773.280000px;}
.y26_c01246{bottom:811.440000px;}
.y24_c01246{bottom:812.880000px;}
.y25_c01246{bottom:814.320000px;}
.y27_c01246{bottom:815.760000px;}
.y28_c01246{bottom:816.480000px;}
.y20_c01246{bottom:853.920000px;}
.y1d_c01246{bottom:855.360000px;}
.y1f_c01246{bottom:856.080000px;}
.y1e_c01246{bottom:856.800000px;}
.y21_c01246{bottom:857.520000px;}
.y22_c01246{bottom:858.240000px;}
.y23_c01246{bottom:858.960000px;}
.y3_c01246{bottom:897.840000px;}
.y4_c01246{bottom:898.560000px;}
.y6_c01246{bottom:899.280000px;}
.y2_c01246{bottom:900.000000px;}
.y7_c01246{bottom:901.440000px;}
.y5_c01246{bottom:902.160000px;}
.y8_c01246{bottom:902.880000px;}
.y19_c01246{bottom:951.120000px;}
.y1c_c01246{bottom:951.840000px;}
.y1a_c01246{bottom:952.560000px;}
.y1b_c01246{bottom:953.280000px;}
.y12_c01246{bottom:993.600000px;}
.y13_c01246{bottom:995.760000px;}
.y14_c01246{bottom:996.480000px;}
.y15_c01246{bottom:997.200000px;}
.y16_c01246{bottom:997.920000px;}
.y17_c01246{bottom:998.640000px;}
.y18_c01246{bottom:999.360000px;}
.y9_c01246{bottom:1034.640000px;}
.yc_c01246{bottom:1036.080000px;}
.ya_c01246{bottom:1037.520000px;}
.yb_c01246{bottom:1038.960000px;}
.yd_c01246{bottom:1039.680000px;}
.ye_c01246{bottom:1041.120000px;}
.yf_c01246{bottom:1041.840000px;}
.y10_c01246{bottom:1042.560000px;}
.y11_c01246{bottom:1043.280000px;}
.y1_c01246{bottom:1114.560000px;}
.hf_c01246{height:15.550313px;}
.h8_c01246{height:28.508906px;}
.h7_c01246{height:31.100625px;}
.h6_c01246{height:38.875781px;}
.h3_c01246{height:41.467500px;}
.h4_c01246{height:44.059219px;}
.hb_c01246{height:46.650937px;}
.h9_c01246{height:49.242656px;}
.ha_c01246{height:51.834375px;}
.h5_c01246{height:54.426094px;}
.he_c01246{height:57.017812px;}
.hd_c01246{height:59.609531px;}
.hc_c01246{height:62.201250px;}
.h2_c01246{height:67.384687px;}
.h1_c01246{height:1162.500000px;}
.h0_c01246{height:1162.800000px;}
.w1_c01246{width:786.000000px;}
.w0_c01246{width:786.240000px;}
.x0_c01246{left:0.000000px;}
.xc_c01246{left:60.480000px;}
.x2a_c01246{left:62.640000px;}
.x43_c01246{left:64.080000px;}
.x5f_c01246{left:65.520000px;}
.x76_c01246{left:66.960000px;}
.x36_c01246{left:82.800000px;}
.xd_c01246{left:90.000000px;}
.x33_c01246{left:92.160000px;}
.x20_c01246{left:101.520000px;}
.x5b_c01246{left:103.680000px;}
.x68_c01246{left:105.120000px;}
.x44_c01246{left:115.200000px;}
.xe_c01246{left:121.680000px;}
.x60_c01246{left:124.560000px;}
.x67_c01246{left:126.000000px;}
.x63_c01246{left:127.440000px;}
.x19_c01246{left:131.040000px;}
.x5c_c01246{left:133.920000px;}
.x37_c01246{left:135.360000px;}
.xf_c01246{left:151.920000px;}
.x21_c01246{left:153.360000px;}
.x39_c01246{left:154.800000px;}
.x77_c01246{left:157.680000px;}
.x2_c01246{left:164.160000px;}
.x57_c01246{left:166.320000px;}
.x71_c01246{left:167.760000px;}
.x10_c01246{left:172.800000px;}
.x48_c01246{left:174.960000px;}
.x69_c01246{left:177.120000px;}
.x1a_c01246{left:184.320000px;}
.x22_c01246{left:185.760000px;}
.x53_c01246{left:187.200000px;}
.x2b_c01246{left:194.400000px;}
.x3a_c01246{left:196.560000px;}
.x3_c01246{left:205.920000px;}
.x45_c01246{left:208.800000px;}
.x25_c01246{left:216.720000px;}
.x2f_c01246{left:218.160000px;}
.x64_c01246{left:220.320000px;}
.x72_c01246{left:229.680000px;}
.x4_c01246{left:237.600000px;}
.x2c_c01246{left:239.760000px;}
.x49_c01246{left:250.560000px;}
.x6a_c01246{left:252.720000px;}
.x26_c01246{left:259.920000px;}
.x54_c01246{left:261.360000px;}
.x11_c01246{left:270.000000px;}
.x4f_c01246{left:272.160000px;}
.x78_c01246{left:273.600000px;}
.x46_c01246{left:282.240000px;}
.x1b_c01246{left:291.600000px;}
.x65_c01246{left:295.920000px;}
.x12_c01246{left:303.840000px;}
.x5d_c01246{left:305.280000px;}
.x61_c01246{left:306.720000px;}
.x3b_c01246{left:314.640000px;}
.x50_c01246{left:316.080000px;}
.x6b_c01246{left:317.520000px;}
.x30_c01246{left:324.720000px;}
.x1c_c01246{left:326.160000px;}
.x73_c01246{left:327.600000px;}
.x13_c01246{left:334.800000px;}
.x2d_c01246{left:336.240000px;}
.x58_c01246{left:337.680000px;}
.x34_c01246{left:347.760000px;}
.x5_c01246{left:356.400000px;}
.x4b_c01246{left:358.560000px;}
.x66_c01246{left:360.000000px;}
.x14_c01246{left:367.200000px;}
.x2e_c01246{left:368.640000px;}
.x6_c01246{left:380.160000px;}
.x6d_c01246{left:382.320000px;}
.x4c_c01246{left:390.960000px;}
.x6c_c01246{left:393.120000px;}
.x15_c01246{left:401.040000px;}
.x7_c01246{left:411.840000px;}
.x55_c01246{left:414.000000px;}
.x38_c01246{left:423.360000px;}
.x3c_c01246{left:433.440000px;}
.x62_c01246{left:435.600000px;}
.x1d_c01246{left:443.520000px;}
.x4a_c01246{left:445.680000px;}
.x6e_c01246{left:457.920000px;}
.x16_c01246{left:465.840000px;}
.x3d_c01246{left:468.000000px;}
.x8_c01246{left:476.640000px;}
.x5e_c01246{left:478.800000px;}
.x31_c01246{left:488.160000px;}
.x6f_c01246{left:489.600000px;}
.x74_c01246{left:492.480000px;}
.x17_c01246{left:498.960000px;}
.x59_c01246{left:500.400000px;}
.x23_c01246{left:509.760000px;}
.x56_c01246{left:511.920000px;}
.x9_c01246{left:519.840000px;}
.x35_c01246{left:521.280000px;}
.x70_c01246{left:523.440000px;}
.x3e_c01246{left:531.360000px;}
.x51_c01246{left:532.800000px;}
.x79_c01246{left:534.240000px;}
.x27_c01246{left:541.440000px;}
.x4d_c01246{left:542.880000px;}
.x1e_c01246{left:563.760000px;}
.x47_c01246{left:565.200000px;}
.x28_c01246{left:576.000000px;}
.x3f_c01246{left:586.080000px;}
.xa_c01246{left:596.160000px;}
.x32_c01246{left:598.320000px;}
.x40_c01246{left:607.680000px;}
.x52_c01246{left:609.120000px;}
.x24_c01246{left:617.760000px;}
.x5a_c01246{left:619.920000px;}
.xb_c01246{left:628.560000px;}
.x29_c01246{left:630.000000px;}
.x7a_c01246{left:631.440000px;}
.x1f_c01246{left:639.360000px;}
.x41_c01246{left:642.240000px;}
.x18_c01246{left:650.160000px;}
.x4e_c01246{left:652.320000px;}
.x75_c01246{left:653.760000px;}
.x1_c01246{left:663.840000px;}
.x42_c01246{left:673.920000px;}
@media print{
.v0_c01246{vertical-align:0.000000pt;}
.ls0_c01246{letter-spacing:0.000000pt;}
.ws0_c01246{word-spacing:0.000000pt;}
.fsd_c01246{font-size:15.360000pt;}
.fs6_c01246{font-size:28.160000pt;}
.fs5_c01246{font-size:30.720000pt;}
.fs4_c01246{font-size:38.400000pt;}
.fs1_c01246{font-size:40.960000pt;}
.fs2_c01246{font-size:43.520000pt;}
.fs9_c01246{font-size:46.080000pt;}
.fs7_c01246{font-size:48.640000pt;}
.fs8_c01246{font-size:51.200000pt;}
.fs3_c01246{font-size:53.760000pt;}
.fsc_c01246{font-size:56.320000pt;}
.fsb_c01246{font-size:58.880000pt;}
.fsa_c01246{font-size:61.440000pt;}
.fs0_c01246{font-size:66.560000pt;}
.y0_c01246{bottom:0.000000pt;}
.y8b_c01246{bottom:35.840000pt;}
.y89_c01246{bottom:36.480000pt;}
.y88_c01246{bottom:37.120000pt;}
.y8c_c01246{bottom:37.760000pt;}
.y87_c01246{bottom:39.040000pt;}
.y8a_c01246{bottom:39.680000pt;}
.y86_c01246{bottom:40.320000pt;}
.y85_c01246{bottom:40.960000pt;}
.y84_c01246{bottom:43.520000pt;}
.y82_c01246{bottom:75.520000pt;}
.y83_c01246{bottom:76.800000pt;}
.y81_c01246{bottom:77.440000pt;}
.y80_c01246{bottom:78.720000pt;}
.y7f_c01246{bottom:79.360000pt;}
.y7e_c01246{bottom:122.240000pt;}
.y7a_c01246{bottom:122.880000pt;}
.y7c_c01246{bottom:123.520000pt;}
.y75_c01246{bottom:126.080000pt;}
.y78_c01246{bottom:126.720000pt;}
.y77_c01246{bottom:127.360000pt;}
.y7d_c01246{bottom:128.000000pt;}
.y79_c01246{bottom:144.000000pt;}
.y7b_c01246{bottom:144.640000pt;}
.y76_c01246{bottom:145.920000pt;}
.y74_c01246{bottom:147.200000pt;}
.y73_c01246{bottom:179.200000pt;}
.y71_c01246{bottom:180.480000pt;}
.y72_c01246{bottom:181.760000pt;}
.y70_c01246{bottom:182.400000pt;}
.y6f_c01246{bottom:185.600000pt;}
.y6e_c01246{bottom:216.960000pt;}
.y6a_c01246{bottom:218.880000pt;}
.y6c_c01246{bottom:219.520000pt;}
.y6d_c01246{bottom:220.160000pt;}
.y6b_c01246{bottom:220.800000pt;}
.y69_c01246{bottom:222.720000pt;}
.y68_c01246{bottom:223.360000pt;}
.y67_c01246{bottom:256.000000pt;}
.y65_c01246{bottom:256.640000pt;}
.y64_c01246{bottom:257.920000pt;}
.y66_c01246{bottom:258.560000pt;}
.y63_c01246{bottom:260.480000pt;}
.y62_c01246{bottom:261.760000pt;}
.y61_c01246{bottom:293.760000pt;}
.y60_c01246{bottom:296.320000pt;}
.y5f_c01246{bottom:297.600000pt;}
.y5c_c01246{bottom:341.760000pt;}
.y5b_c01246{bottom:342.400000pt;}
.y5e_c01246{bottom:343.680000pt;}
.y5d_c01246{bottom:344.320000pt;}
.y5a_c01246{bottom:344.960000pt;}
.y58_c01246{bottom:378.880000pt;}
.y56_c01246{bottom:380.160000pt;}
.y54_c01246{bottom:381.440000pt;}
.y57_c01246{bottom:382.080000pt;}
.y59_c01246{bottom:382.720000pt;}
.y55_c01246{bottom:383.360000pt;}
.y51_c01246{bottom:417.920000pt;}
.y52_c01246{bottom:419.840000pt;}
.y53_c01246{bottom:420.480000pt;}
.y50_c01246{bottom:421.120000pt;}
.y4f_c01246{bottom:456.320000pt;}
.y4d_c01246{bottom:456.960000pt;}
.y4e_c01246{bottom:458.240000pt;}
.y4c_c01246{bottom:458.880000pt;}
.y4b_c01246{bottom:459.520000pt;}
.y48_c01246{bottom:494.720000pt;}
.y47_c01246{bottom:495.360000pt;}
.y4a_c01246{bottom:496.640000pt;}
.y49_c01246{bottom:497.280000pt;}
.y43_c01246{bottom:531.840000pt;}
.y45_c01246{bottom:532.480000pt;}
.y44_c01246{bottom:533.120000pt;}
.y41_c01246{bottom:534.400000pt;}
.y42_c01246{bottom:535.040000pt;}
.y46_c01246{bottom:535.680000pt;}
.y3e_c01246{bottom:568.960000pt;}
.y3c_c01246{bottom:569.600000pt;}
.y3f_c01246{bottom:570.240000pt;}
.y3d_c01246{bottom:572.800000pt;}
.y40_c01246{bottom:573.440000pt;}
.y37_c01246{bottom:606.720000pt;}
.y39_c01246{bottom:607.360000pt;}
.y3a_c01246{bottom:608.000000pt;}
.y38_c01246{bottom:609.280000pt;}
.y36_c01246{bottom:609.920000pt;}
.y3b_c01246{bottom:611.200000pt;}
.y30_c01246{bottom:645.120000pt;}
.y33_c01246{bottom:645.760000pt;}
.y35_c01246{bottom:646.400000pt;}
.y32_c01246{bottom:647.680000pt;}
.y31_c01246{bottom:648.320000pt;}
.y34_c01246{bottom:648.960000pt;}
.y2a_c01246{bottom:682.240000pt;}
.y2b_c01246{bottom:683.520000pt;}
.y2f_c01246{bottom:684.160000pt;}
.y29_c01246{bottom:685.440000pt;}
.y2d_c01246{bottom:686.080000pt;}
.y2c_c01246{bottom:686.720000pt;}
.y2e_c01246{bottom:687.360000pt;}
.y26_c01246{bottom:721.280000pt;}
.y24_c01246{bottom:722.560000pt;}
.y25_c01246{bottom:723.840000pt;}
.y27_c01246{bottom:725.120000pt;}
.y28_c01246{bottom:725.760000pt;}
.y20_c01246{bottom:759.040000pt;}
.y1d_c01246{bottom:760.320000pt;}
.y1f_c01246{bottom:760.960000pt;}
.y1e_c01246{bottom:761.600000pt;}
.y21_c01246{bottom:762.240000pt;}
.y22_c01246{bottom:762.880000pt;}
.y23_c01246{bottom:763.520000pt;}
.y3_c01246{bottom:798.080000pt;}
.y4_c01246{bottom:798.720000pt;}
.y6_c01246{bottom:799.360000pt;}
.y2_c01246{bottom:800.000000pt;}
.y7_c01246{bottom:801.280000pt;}
.y5_c01246{bottom:801.920000pt;}
.y8_c01246{bottom:802.560000pt;}
.y19_c01246{bottom:845.440000pt;}
.y1c_c01246{bottom:846.080000pt;}
.y1a_c01246{bottom:846.720000pt;}
.y1b_c01246{bottom:847.360000pt;}
.y12_c01246{bottom:883.200000pt;}
.y13_c01246{bottom:885.120000pt;}
.y14_c01246{bottom:885.760000pt;}
.y15_c01246{bottom:886.400000pt;}
.y16_c01246{bottom:887.040000pt;}
.y17_c01246{bottom:887.680000pt;}
.y18_c01246{bottom:888.320000pt;}
.y9_c01246{bottom:919.680000pt;}
.yc_c01246{bottom:920.960000pt;}
.ya_c01246{bottom:922.240000pt;}
.yb_c01246{bottom:923.520000pt;}
.yd_c01246{bottom:924.160000pt;}
.ye_c01246{bottom:925.440000pt;}
.yf_c01246{bottom:926.080000pt;}
.y10_c01246{bottom:926.720000pt;}
.y11_c01246{bottom:927.360000pt;}
.y1_c01246{bottom:990.720000pt;}
.hf_c01246{height:13.822500pt;}
.h8_c01246{height:25.341250pt;}
.h7_c01246{height:27.645000pt;}
.h6_c01246{height:34.556250pt;}
.h3_c01246{height:36.860000pt;}
.h4_c01246{height:39.163750pt;}
.hb_c01246{height:41.467500pt;}
.h9_c01246{height:43.771250pt;}
.ha_c01246{height:46.075000pt;}
.h5_c01246{height:48.378750pt;}
.he_c01246{height:50.682500pt;}
.hd_c01246{height:52.986250pt;}
.hc_c01246{height:55.290000pt;}
.h2_c01246{height:59.897500pt;}
.h1_c01246{height:1033.333333pt;}
.h0_c01246{height:1033.600000pt;}
.w1_c01246{width:698.666667pt;}
.w0_c01246{width:698.880000pt;}
.x0_c01246{left:0.000000pt;}
.xc_c01246{left:53.760000pt;}
.x2a_c01246{left:55.680000pt;}
.x43_c01246{left:56.960000pt;}
.x5f_c01246{left:58.240000pt;}
.x76_c01246{left:59.520000pt;}
.x36_c01246{left:73.600000pt;}
.xd_c01246{left:80.000000pt;}
.x33_c01246{left:81.920000pt;}
.x20_c01246{left:90.240000pt;}
.x5b_c01246{left:92.160000pt;}
.x68_c01246{left:93.440000pt;}
.x44_c01246{left:102.400000pt;}
.xe_c01246{left:108.160000pt;}
.x60_c01246{left:110.720000pt;}
.x67_c01246{left:112.000000pt;}
.x63_c01246{left:113.280000pt;}
.x19_c01246{left:116.480000pt;}
.x5c_c01246{left:119.040000pt;}
.x37_c01246{left:120.320000pt;}
.xf_c01246{left:135.040000pt;}
.x21_c01246{left:136.320000pt;}
.x39_c01246{left:137.600000pt;}
.x77_c01246{left:140.160000pt;}
.x2_c01246{left:145.920000pt;}
.x57_c01246{left:147.840000pt;}
.x71_c01246{left:149.120000pt;}
.x10_c01246{left:153.600000pt;}
.x48_c01246{left:155.520000pt;}
.x69_c01246{left:157.440000pt;}
.x1a_c01246{left:163.840000pt;}
.x22_c01246{left:165.120000pt;}
.x53_c01246{left:166.400000pt;}
.x2b_c01246{left:172.800000pt;}
.x3a_c01246{left:174.720000pt;}
.x3_c01246{left:183.040000pt;}
.x45_c01246{left:185.600000pt;}
.x25_c01246{left:192.640000pt;}
.x2f_c01246{left:193.920000pt;}
.x64_c01246{left:195.840000pt;}
.x72_c01246{left:204.160000pt;}
.x4_c01246{left:211.200000pt;}
.x2c_c01246{left:213.120000pt;}
.x49_c01246{left:222.720000pt;}
.x6a_c01246{left:224.640000pt;}
.x26_c01246{left:231.040000pt;}
.x54_c01246{left:232.320000pt;}
.x11_c01246{left:240.000000pt;}
.x4f_c01246{left:241.920000pt;}
.x78_c01246{left:243.200000pt;}
.x46_c01246{left:250.880000pt;}
.x1b_c01246{left:259.200000pt;}
.x65_c01246{left:263.040000pt;}
.x12_c01246{left:270.080000pt;}
.x5d_c01246{left:271.360000pt;}
.x61_c01246{left:272.640000pt;}
.x3b_c01246{left:279.680000pt;}
.x50_c01246{left:280.960000pt;}
.x6b_c01246{left:282.240000pt;}
.x30_c01246{left:288.640000pt;}
.x1c_c01246{left:289.920000pt;}
.x73_c01246{left:291.200000pt;}
.x13_c01246{left:297.600000pt;}
.x2d_c01246{left:298.880000pt;}
.x58_c01246{left:300.160000pt;}
.x34_c01246{left:309.120000pt;}
.x5_c01246{left:316.800000pt;}
.x4b_c01246{left:318.720000pt;}
.x66_c01246{left:320.000000pt;}
.x14_c01246{left:326.400000pt;}
.x2e_c01246{left:327.680000pt;}
.x6_c01246{left:337.920000pt;}
.x6d_c01246{left:339.840000pt;}
.x4c_c01246{left:347.520000pt;}
.x6c_c01246{left:349.440000pt;}
.x15_c01246{left:356.480000pt;}
.x7_c01246{left:366.080000pt;}
.x55_c01246{left:368.000000pt;}
.x38_c01246{left:376.320000pt;}
.x3c_c01246{left:385.280000pt;}
.x62_c01246{left:387.200000pt;}
.x1d_c01246{left:394.240000pt;}
.x4a_c01246{left:396.160000pt;}
.x6e_c01246{left:407.040000pt;}
.x16_c01246{left:414.080000pt;}
.x3d_c01246{left:416.000000pt;}
.x8_c01246{left:423.680000pt;}
.x5e_c01246{left:425.600000pt;}
.x31_c01246{left:433.920000pt;}
.x6f_c01246{left:435.200000pt;}
.x74_c01246{left:437.760000pt;}
.x17_c01246{left:443.520000pt;}
.x59_c01246{left:444.800000pt;}
.x23_c01246{left:453.120000pt;}
.x56_c01246{left:455.040000pt;}
.x9_c01246{left:462.080000pt;}
.x35_c01246{left:463.360000pt;}
.x70_c01246{left:465.280000pt;}
.x3e_c01246{left:472.320000pt;}
.x51_c01246{left:473.600000pt;}
.x79_c01246{left:474.880000pt;}
.x27_c01246{left:481.280000pt;}
.x4d_c01246{left:482.560000pt;}
.x1e_c01246{left:501.120000pt;}
.x47_c01246{left:502.400000pt;}
.x28_c01246{left:512.000000pt;}
.x3f_c01246{left:520.960000pt;}
.xa_c01246{left:529.920000pt;}
.x32_c01246{left:531.840000pt;}
.x40_c01246{left:540.160000pt;}
.x52_c01246{left:541.440000pt;}
.x24_c01246{left:549.120000pt;}
.x5a_c01246{left:551.040000pt;}
.xb_c01246{left:558.720000pt;}
.x29_c01246{left:560.000000pt;}
.x7a_c01246{left:561.280000pt;}
.x1f_c01246{left:568.320000pt;}
.x41_c01246{left:570.880000pt;}
.x18_c01246{left:577.920000pt;}
.x4e_c01246{left:579.840000pt;}
.x75_c01246{left:581.120000pt;}
.x1_c01246{left:590.080000pt;}
.x42_c01246{left:599.040000pt;}
}





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

.ir_c01247:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01247{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01247;src:url('chunks/assets/font_830a3a5ea5d56d931cedad16.woff2')format("woff");}.ff1_c01247{font-family:ff1_c01247;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m59_c01247{transform:matrix(0.210900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210900,0.000000,0.000000,0.250000,0,0);}
.md_c01247{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m58_c01247{transform:matrix(0.225100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225100,0.000000,0.000000,0.250000,0,0);}
.m10_c01247{transform:matrix(0.231525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231525,0.000000,0.000000,0.250000,0,0);}
.m12_c01247{transform:matrix(0.233425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233425,0.000000,0.000000,0.250000,0,0);}
.m3f_c01247{transform:matrix(0.241325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241325,0.000000,0.000000,0.250000,0,0);}
.m41_c01247{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);}
.m61_c01247{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m17_c01247{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m19_c01247{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);}
.m3d_c01247{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mc_c01247{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m43_c01247{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01247{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.mf_c01247{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m5b_c01247{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m11_c01247{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m50_c01247{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01247{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m40_c01247{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m14_c01247{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);}
.m3e_c01247{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);}
.m32_c01247{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01247{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m25_c01247{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.me_c01247{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);}
.m0_c01247{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m16_c01247{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m21_c01247{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.mb_c01247{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);}
.m35_c01247{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m34_c01247{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01247{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);}
.m56_c01247{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);}
.m18_c01247{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m15_c01247{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);}
.m5c_c01247{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);}
.m13_c01247{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);}
.m38_c01247{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01247{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m39_c01247{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m31_c01247{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m1_c01247{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m20_c01247{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);}
.m2_c01247{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m3_c01247{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);}
.m5_c01247{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);}
.m44_c01247{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m7_c01247{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m45_c01247{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01247{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_c01247{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m24_c01247{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m4f_c01247{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);}
.m5d_c01247{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m53_c01247{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);}
.m23_c01247{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m49_c01247{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m4d_c01247{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);}
.m62_c01247{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m47_c01247{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m28_c01247{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);}
.m60_c01247{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m26_c01247{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m46_c01247{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m51_c01247{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);}
.m2a_c01247{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);}
.m5a_c01247{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m37_c01247{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01247{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m64_c01247{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);}
.m2c_c01247{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01247{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01247{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);}
.m4a_c01247{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01247{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m29_c01247{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m4_c01247{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m27_c01247{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);}
.m48_c01247{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);}
.m57_c01247{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m6_c01247{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m36_c01247{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01247{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m4e_c01247{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m54_c01247{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);}
.m63_c01247{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);}
.m9_c01247{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);}
.m1a_c01247{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m8_c01247{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m5e_c01247{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m52_c01247{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.ma_c01247{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m33_c01247{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m5f_c01247{transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);}
.m30_c01247{transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);}
.m55_c01247{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);}
.m1f_c01247{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01247{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01247{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m42_c01247{transform:matrix(0.985000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.985000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.985000,0.000000,0.000000,0.250000,0,0);}
.v1_c01247{vertical-align:-2.880000px;}
.v0_c01247{vertical-align:0.000000px;}
.ls1_c01247{letter-spacing:0.000000px;}
.ls0_c01247{letter-spacing:21.926640px;}
.sc__c01247{text-shadow:none;}
.sc0_c01247{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01247{-webkit-text-stroke:0px transparent;}
.sc0_c01247{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01247{word-spacing:-3.291736px;}
.ws1_c01247{word-spacing:0.000000px;}
.fc0_c01247{color:transparent;}
.fse_c01247{font-size:20.160000px;}
.fsc_c01247{font-size:31.680000px;}
.fs5_c01247{font-size:34.560000px;}
.fsf_c01247{font-size:37.440000px;}
.fs11_c01247{font-size:40.320000px;}
.fs7_c01247{font-size:43.200000px;}
.fs2_c01247{font-size:46.080000px;}
.fs4_c01247{font-size:48.960000px;}
.fs3_c01247{font-size:51.840000px;}
.fs1_c01247{font-size:54.720000px;}
.fsa_c01247{font-size:57.600000px;}
.fs6_c01247{font-size:60.480000px;}
.fsd_c01247{font-size:63.360000px;}
.fs10_c01247{font-size:66.240000px;}
.fsb_c01247{font-size:69.120000px;}
.fs0_c01247{font-size:72.000000px;}
.fs9_c01247{font-size:100.800000px;}
.fs8_c01247{font-size:103.680000px;}
.y0_c01247{bottom:0.000000px;}
.y82_c01247{bottom:49.680000px;}
.y7e_c01247{bottom:51.840000px;}
.y81_c01247{bottom:52.560000px;}
.y80_c01247{bottom:53.280000px;}
.y7f_c01247{bottom:54.000000px;}
.y7d_c01247{bottom:56.160000px;}
.y7c_c01247{bottom:56.880000px;}
.y7b_c01247{bottom:58.320000px;}
.y7a_c01247{bottom:92.880000px;}
.y77_c01247{bottom:95.040000px;}
.y78_c01247{bottom:95.760000px;}
.y79_c01247{bottom:96.480000px;}
.y76_c01247{bottom:97.920000px;}
.y75_c01247{bottom:101.520000px;}
.y72_c01247{bottom:136.800000px;}
.y6f_c01247{bottom:138.240000px;}
.y73_c01247{bottom:138.960000px;}
.y74_c01247{bottom:139.680000px;}
.y71_c01247{bottom:140.400000px;}
.y70_c01247{bottom:141.120000px;}
.y6e_c01247{bottom:145.440000px;}
.y6a_c01247{bottom:179.280000px;}
.y6b_c01247{bottom:180.000000px;}
.y6d_c01247{bottom:181.440000px;}
.y6c_c01247{bottom:182.160000px;}
.y69_c01247{bottom:183.600000px;}
.y68_c01247{bottom:186.480000px;}
.y67_c01247{bottom:188.640000px;}
.y65_c01247{bottom:221.760000px;}
.y66_c01247{bottom:222.480000px;}
.y64_c01247{bottom:223.200000px;}
.y63_c01247{bottom:225.360000px;}
.y62_c01247{bottom:227.520000px;}
.y60_c01247{bottom:275.040000px;}
.y5e_c01247{bottom:276.480000px;}
.y5f_c01247{bottom:279.360000px;}
.y61_c01247{bottom:280.080000px;}
.y5d_c01247{bottom:280.800000px;}
.y5c_c01247{bottom:282.240000px;}
.y5b_c01247{bottom:320.400000px;}
.y5a_c01247{bottom:323.280000px;}
.y59_c01247{bottom:324.000000px;}
.y58_c01247{bottom:324.720000px;}
.y57_c01247{bottom:361.440000px;}
.y53_c01247{bottom:362.880000px;}
.y54_c01247{bottom:363.600000px;}
.y55_c01247{bottom:364.320000px;}
.y56_c01247{bottom:365.040000px;}
.y52_c01247{bottom:365.760000px;}
.y51_c01247{bottom:367.200000px;}
.y4f_c01247{bottom:404.640000px;}
.y4e_c01247{bottom:406.080000px;}
.y50_c01247{bottom:406.800000px;}
.y4d_c01247{bottom:407.520000px;}
.y4c_c01247{bottom:408.960000px;}
.y4b_c01247{bottom:409.680000px;}
.y49_c01247{bottom:447.120000px;}
.y4a_c01247{bottom:447.840000px;}
.y48_c01247{bottom:449.280000px;}
.y47_c01247{bottom:450.000000px;}
.y46_c01247{bottom:450.720000px;}
.y45_c01247{bottom:451.440000px;}
.y41_c01247{bottom:490.320000px;}
.y44_c01247{bottom:491.040000px;}
.y43_c01247{bottom:491.760000px;}
.y42_c01247{bottom:492.480000px;}
.y3e_c01247{bottom:532.800000px;}
.y40_c01247{bottom:533.520000px;}
.y3d_c01247{bottom:534.240000px;}
.y3c_c01247{bottom:534.960000px;}
.y3f_c01247{bottom:535.680000px;}
.y38_c01247{bottom:586.800000px;}
.y36_c01247{bottom:587.520000px;}
.y3b_c01247{bottom:588.240000px;}
.y39_c01247{bottom:588.960000px;}
.y3a_c01247{bottom:592.560000px;}
.y35_c01247{bottom:610.560000px;}
.y37_c01247{bottom:611.280000px;}
.y34_c01247{bottom:653.040000px;}
.y2f_c01247{bottom:692.640000px;}
.y32_c01247{bottom:693.360000px;}
.y30_c01247{bottom:695.520000px;}
.y31_c01247{bottom:696.240000px;}
.y33_c01247{bottom:697.680000px;}
.y29_c01247{bottom:735.840000px;}
.y2c_c01247{bottom:736.560000px;}
.y2e_c01247{bottom:737.280000px;}
.y28_c01247{bottom:738.000000px;}
.y2a_c01247{bottom:738.720000px;}
.y2b_c01247{bottom:739.440000px;}
.y2d_c01247{bottom:740.160000px;}
.y26_c01247{bottom:779.760000px;}
.y22_c01247{bottom:780.480000px;}
.y23_c01247{bottom:781.920000px;}
.y24_c01247{bottom:782.640000px;}
.y25_c01247{bottom:783.360000px;}
.y27_c01247{bottom:784.080000px;}
.y1c_c01247{bottom:820.080000px;}
.y1d_c01247{bottom:821.520000px;}
.y1f_c01247{bottom:822.960000px;}
.y1e_c01247{bottom:825.120000px;}
.y21_c01247{bottom:825.840000px;}
.y20_c01247{bottom:826.560000px;}
.y18_c01247{bottom:864.000000px;}
.y17_c01247{bottom:865.440000px;}
.y1b_c01247{bottom:866.160000px;}
.y19_c01247{bottom:867.600000px;}
.y1a_c01247{bottom:869.040000px;}
.y12_c01247{bottom:907.200000px;}
.y13_c01247{bottom:907.920000px;}
.y15_c01247{bottom:908.640000px;}
.y11_c01247{bottom:909.360000px;}
.y14_c01247{bottom:910.800000px;}
.y16_c01247{bottom:912.240000px;}
.yb_c01247{bottom:959.040000px;}
.yd_c01247{bottom:960.480000px;}
.ya_c01247{bottom:961.920000px;}
.yc_c01247{bottom:963.360000px;}
.ye_c01247{bottom:964.080000px;}
.yf_c01247{bottom:964.800000px;}
.y10_c01247{bottom:966.240000px;}
.y9_c01247{bottom:1000.800000px;}
.y2_c01247{bottom:1045.440000px;}
.y6_c01247{bottom:1047.600000px;}
.y4_c01247{bottom:1048.320000px;}
.y3_c01247{bottom:1049.040000px;}
.y5_c01247{bottom:1050.480000px;}
.y7_c01247{bottom:1051.200000px;}
.y8_c01247{bottom:1051.920000px;}
.y1_c01247{bottom:1099.440000px;}
.h10_c01247{height:18.142031px;}
.he_c01247{height:28.508906px;}
.h7_c01247{height:31.100625px;}
.h11_c01247{height:33.692344px;}
.h13_c01247{height:36.284062px;}
.h9_c01247{height:38.875781px;}
.h4_c01247{height:41.467500px;}
.h6_c01247{height:44.059219px;}
.h5_c01247{height:46.650937px;}
.h3_c01247{height:49.242656px;}
.hc_c01247{height:51.834375px;}
.h8_c01247{height:54.426094px;}
.hf_c01247{height:57.017812px;}
.h12_c01247{height:59.609531px;}
.hd_c01247{height:62.201250px;}
.h2_c01247{height:64.792969px;}
.hb_c01247{height:90.710156px;}
.ha_c01247{height:93.301875px;}
.h0_c01247{height:1160.640000px;}
.h1_c01247{height:1161.000000px;}
.w1_c01247{width:783.750000px;}
.w0_c01247{width:784.080000px;}
.x0_c01247{left:0.000000px;}
.x2_c01247{left:61.200000px;}
.x35_c01247{left:62.640000px;}
.x50_c01247{left:64.800000px;}
.x65_c01247{left:84.240000px;}
.x30_c01247{left:91.440000px;}
.x3c_c01247{left:92.880000px;}
.x36_c01247{left:102.240000px;}
.x68_c01247{left:104.400000px;}
.xc_c01247{left:112.320000px;}
.x5b_c01247{left:114.480000px;}
.x51_c01247{left:123.840000px;}
.x1c_c01247{left:131.760000px;}
.x37_c01247{left:133.200000px;}
.xd_c01247{left:142.560000px;}
.x44_c01247{left:144.000000px;}
.x23_c01247{left:153.360000px;}
.x4b_c01247{left:154.800000px;}
.x3_c01247{left:162.720000px;}
.x38_c01247{left:164.160000px;}
.x3d_c01247{left:165.600000px;}
.xe_c01247{left:174.960000px;}
.x5c_c01247{left:177.840000px;}
.x4c_c01247{left:185.760000px;}
.x52_c01247{left:187.920000px;}
.x4_c01247{left:195.120000px;}
.x56_c01247{left:197.280000px;}
.x5a_c01247{left:198.720000px;}
.x5d_c01247{left:208.800000px;}
.x15_c01247{left:216.720000px;}
.x4d_c01247{left:218.160000px;}
.x6e_c01247{left:220.320000px;}
.x1d_c01247{left:227.520000px;}
.x39_c01247{left:228.960000px;}
.x42_c01247{left:230.400000px;}
.xf_c01247{left:239.760000px;}
.x5e_c01247{left:241.920000px;}
.x24_c01247{left:249.840000px;}
.x31_c01247{left:261.360000px;}
.x69_c01247{left:262.800000px;}
.x10_c01247{left:270.720000px;}
.x45_c01247{left:272.160000px;}
.x5f_c01247{left:273.600000px;}
.x16_c01247{left:281.520000px;}
.x32_c01247{left:292.320000px;}
.x3e_c01247{left:294.480000px;}
.x5_c01247{left:303.120000px;}
.x11_c01247{left:304.560000px;}
.x53_c01247{left:306.720000px;}
.x1e_c01247{left:313.200000px;}
.x25_c01247{left:315.360000px;}
.x61_c01247{left:316.800000px;}
.x33_c01247{left:324.000000px;}
.x2a_c01247{left:325.440000px;}
.x6f_c01247{left:327.600000px;}
.x3a_c01247{left:334.800000px;}
.x46_c01247{left:336.960000px;}
.x12_c01247{left:346.320000px;}
.x40_c01247{left:348.480000px;}
.x57_c01247{left:359.280000px;}
.x3f_c01247{left:369.360000px;}
.x54_c01247{left:371.520000px;}
.x26_c01247{left:379.440000px;}
.x13_c01247{left:380.880000px;}
.x60_c01247{left:382.320000px;}
.x3b_c01247{left:401.760000px;}
.x4e_c01247{left:404.640000px;}
.x17_c01247{left:410.400000px;}
.x66_c01247{left:414.000000px;}
.x27_c01247{left:422.640000px;}
.x47_c01247{left:424.080000px;}
.x70_c01247{left:425.520000px;}
.x6_c01247{left:432.720000px;}
.x2b_c01247{left:434.160000px;}
.x14_c01247{left:444.960000px;}
.x55_c01247{left:446.400000px;}
.x18_c01247{left:455.760000px;}
.x67_c01247{left:457.200000px;}
.x1f_c01247{left:466.560000px;}
.x58_c01247{left:468.000000px;}
.x7_c01247{left:477.360000px;}
.x48_c01247{left:488.880000px;}
.x62_c01247{left:490.320000px;}
.x41_c01247{left:500.400000px;}
.x8_c01247{left:509.760000px;}
.x6a_c01247{left:511.920000px;}
.x28_c01247{left:520.560000px;}
.x49_c01247{left:533.520000px;}
.x2c_c01247{left:542.880000px;}
.x20_c01247{left:552.960000px;}
.x6b_c01247{left:556.560000px;}
.x34_c01247{left:564.480000px;}
.x4a_c01247{left:565.920000px;}
.x19_c01247{left:575.280000px;}
.x2d_c01247{left:576.720000px;}
.x9_c01247{left:585.360000px;}
.x63_c01247{left:587.520000px;}
.x6c_c01247{left:588.960000px;}
.x21_c01247{left:596.160000px;}
.x59_c01247{left:598.320000px;}
.x2e_c01247{left:607.680000px;}
.x4f_c01247{left:609.840000px;}
.xa_c01247{left:617.760000px;}
.x2f_c01247{left:630.720000px;}
.x64_c01247{left:632.160000px;}
.x1a_c01247{left:639.360000px;}
.x29_c01247{left:641.520000px;}
.x6d_c01247{left:643.680000px;}
.xb_c01247{left:651.600000px;}
.x22_c01247{left:662.400000px;}
.x1_c01247{left:663.840000px;}
.x1b_c01247{left:671.760000px;}
.x43_c01247{left:675.360000px;}
@media print{
.v1_c01247{vertical-align:-2.560000pt;}
.v0_c01247{vertical-align:0.000000pt;}
.ls1_c01247{letter-spacing:0.000000pt;}
.ls0_c01247{letter-spacing:19.490347pt;}
.ws0_c01247{word-spacing:-2.925988pt;}
.ws1_c01247{word-spacing:0.000000pt;}
.fse_c01247{font-size:17.920000pt;}
.fsc_c01247{font-size:28.160000pt;}
.fs5_c01247{font-size:30.720000pt;}
.fsf_c01247{font-size:33.280000pt;}
.fs11_c01247{font-size:35.840000pt;}
.fs7_c01247{font-size:38.400000pt;}
.fs2_c01247{font-size:40.960000pt;}
.fs4_c01247{font-size:43.520000pt;}
.fs3_c01247{font-size:46.080000pt;}
.fs1_c01247{font-size:48.640000pt;}
.fsa_c01247{font-size:51.200000pt;}
.fs6_c01247{font-size:53.760000pt;}
.fsd_c01247{font-size:56.320000pt;}
.fs10_c01247{font-size:58.880000pt;}
.fsb_c01247{font-size:61.440000pt;}
.fs0_c01247{font-size:64.000000pt;}
.fs9_c01247{font-size:89.600000pt;}
.fs8_c01247{font-size:92.160000pt;}
.y0_c01247{bottom:0.000000pt;}
.y82_c01247{bottom:44.160000pt;}
.y7e_c01247{bottom:46.080000pt;}
.y81_c01247{bottom:46.720000pt;}
.y80_c01247{bottom:47.360000pt;}
.y7f_c01247{bottom:48.000000pt;}
.y7d_c01247{bottom:49.920000pt;}
.y7c_c01247{bottom:50.560000pt;}
.y7b_c01247{bottom:51.840000pt;}
.y7a_c01247{bottom:82.560000pt;}
.y77_c01247{bottom:84.480000pt;}
.y78_c01247{bottom:85.120000pt;}
.y79_c01247{bottom:85.760000pt;}
.y76_c01247{bottom:87.040000pt;}
.y75_c01247{bottom:90.240000pt;}
.y72_c01247{bottom:121.600000pt;}
.y6f_c01247{bottom:122.880000pt;}
.y73_c01247{bottom:123.520000pt;}
.y74_c01247{bottom:124.160000pt;}
.y71_c01247{bottom:124.800000pt;}
.y70_c01247{bottom:125.440000pt;}
.y6e_c01247{bottom:129.280000pt;}
.y6a_c01247{bottom:159.360000pt;}
.y6b_c01247{bottom:160.000000pt;}
.y6d_c01247{bottom:161.280000pt;}
.y6c_c01247{bottom:161.920000pt;}
.y69_c01247{bottom:163.200000pt;}
.y68_c01247{bottom:165.760000pt;}
.y67_c01247{bottom:167.680000pt;}
.y65_c01247{bottom:197.120000pt;}
.y66_c01247{bottom:197.760000pt;}
.y64_c01247{bottom:198.400000pt;}
.y63_c01247{bottom:200.320000pt;}
.y62_c01247{bottom:202.240000pt;}
.y60_c01247{bottom:244.480000pt;}
.y5e_c01247{bottom:245.760000pt;}
.y5f_c01247{bottom:248.320000pt;}
.y61_c01247{bottom:248.960000pt;}
.y5d_c01247{bottom:249.600000pt;}
.y5c_c01247{bottom:250.880000pt;}
.y5b_c01247{bottom:284.800000pt;}
.y5a_c01247{bottom:287.360000pt;}
.y59_c01247{bottom:288.000000pt;}
.y58_c01247{bottom:288.640000pt;}
.y57_c01247{bottom:321.280000pt;}
.y53_c01247{bottom:322.560000pt;}
.y54_c01247{bottom:323.200000pt;}
.y55_c01247{bottom:323.840000pt;}
.y56_c01247{bottom:324.480000pt;}
.y52_c01247{bottom:325.120000pt;}
.y51_c01247{bottom:326.400000pt;}
.y4f_c01247{bottom:359.680000pt;}
.y4e_c01247{bottom:360.960000pt;}
.y50_c01247{bottom:361.600000pt;}
.y4d_c01247{bottom:362.240000pt;}
.y4c_c01247{bottom:363.520000pt;}
.y4b_c01247{bottom:364.160000pt;}
.y49_c01247{bottom:397.440000pt;}
.y4a_c01247{bottom:398.080000pt;}
.y48_c01247{bottom:399.360000pt;}
.y47_c01247{bottom:400.000000pt;}
.y46_c01247{bottom:400.640000pt;}
.y45_c01247{bottom:401.280000pt;}
.y41_c01247{bottom:435.840000pt;}
.y44_c01247{bottom:436.480000pt;}
.y43_c01247{bottom:437.120000pt;}
.y42_c01247{bottom:437.760000pt;}
.y3e_c01247{bottom:473.600000pt;}
.y40_c01247{bottom:474.240000pt;}
.y3d_c01247{bottom:474.880000pt;}
.y3c_c01247{bottom:475.520000pt;}
.y3f_c01247{bottom:476.160000pt;}
.y38_c01247{bottom:521.600000pt;}
.y36_c01247{bottom:522.240000pt;}
.y3b_c01247{bottom:522.880000pt;}
.y39_c01247{bottom:523.520000pt;}
.y3a_c01247{bottom:526.720000pt;}
.y35_c01247{bottom:542.720000pt;}
.y37_c01247{bottom:543.360000pt;}
.y34_c01247{bottom:580.480000pt;}
.y2f_c01247{bottom:615.680000pt;}
.y32_c01247{bottom:616.320000pt;}
.y30_c01247{bottom:618.240000pt;}
.y31_c01247{bottom:618.880000pt;}
.y33_c01247{bottom:620.160000pt;}
.y29_c01247{bottom:654.080000pt;}
.y2c_c01247{bottom:654.720000pt;}
.y2e_c01247{bottom:655.360000pt;}
.y28_c01247{bottom:656.000000pt;}
.y2a_c01247{bottom:656.640000pt;}
.y2b_c01247{bottom:657.280000pt;}
.y2d_c01247{bottom:657.920000pt;}
.y26_c01247{bottom:693.120000pt;}
.y22_c01247{bottom:693.760000pt;}
.y23_c01247{bottom:695.040000pt;}
.y24_c01247{bottom:695.680000pt;}
.y25_c01247{bottom:696.320000pt;}
.y27_c01247{bottom:696.960000pt;}
.y1c_c01247{bottom:728.960000pt;}
.y1d_c01247{bottom:730.240000pt;}
.y1f_c01247{bottom:731.520000pt;}
.y1e_c01247{bottom:733.440000pt;}
.y21_c01247{bottom:734.080000pt;}
.y20_c01247{bottom:734.720000pt;}
.y18_c01247{bottom:768.000000pt;}
.y17_c01247{bottom:769.280000pt;}
.y1b_c01247{bottom:769.920000pt;}
.y19_c01247{bottom:771.200000pt;}
.y1a_c01247{bottom:772.480000pt;}
.y12_c01247{bottom:806.400000pt;}
.y13_c01247{bottom:807.040000pt;}
.y15_c01247{bottom:807.680000pt;}
.y11_c01247{bottom:808.320000pt;}
.y14_c01247{bottom:809.600000pt;}
.y16_c01247{bottom:810.880000pt;}
.yb_c01247{bottom:852.480000pt;}
.yd_c01247{bottom:853.760000pt;}
.ya_c01247{bottom:855.040000pt;}
.yc_c01247{bottom:856.320000pt;}
.ye_c01247{bottom:856.960000pt;}
.yf_c01247{bottom:857.600000pt;}
.y10_c01247{bottom:858.880000pt;}
.y9_c01247{bottom:889.600000pt;}
.y2_c01247{bottom:929.280000pt;}
.y6_c01247{bottom:931.200000pt;}
.y4_c01247{bottom:931.840000pt;}
.y3_c01247{bottom:932.480000pt;}
.y5_c01247{bottom:933.760000pt;}
.y7_c01247{bottom:934.400000pt;}
.y8_c01247{bottom:935.040000pt;}
.y1_c01247{bottom:977.280000pt;}
.h10_c01247{height:16.126250pt;}
.he_c01247{height:25.341250pt;}
.h7_c01247{height:27.645000pt;}
.h11_c01247{height:29.948750pt;}
.h13_c01247{height:32.252500pt;}
.h9_c01247{height:34.556250pt;}
.h4_c01247{height:36.860000pt;}
.h6_c01247{height:39.163750pt;}
.h5_c01247{height:41.467500pt;}
.h3_c01247{height:43.771250pt;}
.hc_c01247{height:46.075000pt;}
.h8_c01247{height:48.378750pt;}
.hf_c01247{height:50.682500pt;}
.h12_c01247{height:52.986250pt;}
.hd_c01247{height:55.290000pt;}
.h2_c01247{height:57.593750pt;}
.hb_c01247{height:80.631250pt;}
.ha_c01247{height:82.935000pt;}
.h0_c01247{height:1031.680000pt;}
.h1_c01247{height:1032.000000pt;}
.w1_c01247{width:696.666667pt;}
.w0_c01247{width:696.960000pt;}
.x0_c01247{left:0.000000pt;}
.x2_c01247{left:54.400000pt;}
.x35_c01247{left:55.680000pt;}
.x50_c01247{left:57.600000pt;}
.x65_c01247{left:74.880000pt;}
.x30_c01247{left:81.280000pt;}
.x3c_c01247{left:82.560000pt;}
.x36_c01247{left:90.880000pt;}
.x68_c01247{left:92.800000pt;}
.xc_c01247{left:99.840000pt;}
.x5b_c01247{left:101.760000pt;}
.x51_c01247{left:110.080000pt;}
.x1c_c01247{left:117.120000pt;}
.x37_c01247{left:118.400000pt;}
.xd_c01247{left:126.720000pt;}
.x44_c01247{left:128.000000pt;}
.x23_c01247{left:136.320000pt;}
.x4b_c01247{left:137.600000pt;}
.x3_c01247{left:144.640000pt;}
.x38_c01247{left:145.920000pt;}
.x3d_c01247{left:147.200000pt;}
.xe_c01247{left:155.520000pt;}
.x5c_c01247{left:158.080000pt;}
.x4c_c01247{left:165.120000pt;}
.x52_c01247{left:167.040000pt;}
.x4_c01247{left:173.440000pt;}
.x56_c01247{left:175.360000pt;}
.x5a_c01247{left:176.640000pt;}
.x5d_c01247{left:185.600000pt;}
.x15_c01247{left:192.640000pt;}
.x4d_c01247{left:193.920000pt;}
.x6e_c01247{left:195.840000pt;}
.x1d_c01247{left:202.240000pt;}
.x39_c01247{left:203.520000pt;}
.x42_c01247{left:204.800000pt;}
.xf_c01247{left:213.120000pt;}
.x5e_c01247{left:215.040000pt;}
.x24_c01247{left:222.080000pt;}
.x31_c01247{left:232.320000pt;}
.x69_c01247{left:233.600000pt;}
.x10_c01247{left:240.640000pt;}
.x45_c01247{left:241.920000pt;}
.x5f_c01247{left:243.200000pt;}
.x16_c01247{left:250.240000pt;}
.x32_c01247{left:259.840000pt;}
.x3e_c01247{left:261.760000pt;}
.x5_c01247{left:269.440000pt;}
.x11_c01247{left:270.720000pt;}
.x53_c01247{left:272.640000pt;}
.x1e_c01247{left:278.400000pt;}
.x25_c01247{left:280.320000pt;}
.x61_c01247{left:281.600000pt;}
.x33_c01247{left:288.000000pt;}
.x2a_c01247{left:289.280000pt;}
.x6f_c01247{left:291.200000pt;}
.x3a_c01247{left:297.600000pt;}
.x46_c01247{left:299.520000pt;}
.x12_c01247{left:307.840000pt;}
.x40_c01247{left:309.760000pt;}
.x57_c01247{left:319.360000pt;}
.x3f_c01247{left:328.320000pt;}
.x54_c01247{left:330.240000pt;}
.x26_c01247{left:337.280000pt;}
.x13_c01247{left:338.560000pt;}
.x60_c01247{left:339.840000pt;}
.x3b_c01247{left:357.120000pt;}
.x4e_c01247{left:359.680000pt;}
.x17_c01247{left:364.800000pt;}
.x66_c01247{left:368.000000pt;}
.x27_c01247{left:375.680000pt;}
.x47_c01247{left:376.960000pt;}
.x70_c01247{left:378.240000pt;}
.x6_c01247{left:384.640000pt;}
.x2b_c01247{left:385.920000pt;}
.x14_c01247{left:395.520000pt;}
.x55_c01247{left:396.800000pt;}
.x18_c01247{left:405.120000pt;}
.x67_c01247{left:406.400000pt;}
.x1f_c01247{left:414.720000pt;}
.x58_c01247{left:416.000000pt;}
.x7_c01247{left:424.320000pt;}
.x48_c01247{left:434.560000pt;}
.x62_c01247{left:435.840000pt;}
.x41_c01247{left:444.800000pt;}
.x8_c01247{left:453.120000pt;}
.x6a_c01247{left:455.040000pt;}
.x28_c01247{left:462.720000pt;}
.x49_c01247{left:474.240000pt;}
.x2c_c01247{left:482.560000pt;}
.x20_c01247{left:491.520000pt;}
.x6b_c01247{left:494.720000pt;}
.x34_c01247{left:501.760000pt;}
.x4a_c01247{left:503.040000pt;}
.x19_c01247{left:511.360000pt;}
.x2d_c01247{left:512.640000pt;}
.x9_c01247{left:520.320000pt;}
.x63_c01247{left:522.240000pt;}
.x6c_c01247{left:523.520000pt;}
.x21_c01247{left:529.920000pt;}
.x59_c01247{left:531.840000pt;}
.x2e_c01247{left:540.160000pt;}
.x4f_c01247{left:542.080000pt;}
.xa_c01247{left:549.120000pt;}
.x2f_c01247{left:560.640000pt;}
.x64_c01247{left:561.920000pt;}
.x1a_c01247{left:568.320000pt;}
.x29_c01247{left:570.240000pt;}
.x6d_c01247{left:572.160000pt;}
.xb_c01247{left:579.200000pt;}
.x22_c01247{left:588.800000pt;}
.x1_c01247{left:590.080000pt;}
.x1b_c01247{left:597.120000pt;}
.x43_c01247{left:600.320000pt;}
}





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

.ir_c01248:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01248{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01248;src:url('chunks/assets/font_913e4382f5b1eefc245c77b2.woff2')format("woff");}.ff1_c01248{font-family:ff1_c01248;line-height:1.109863;font-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_c01248{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01248{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m60_c01248{transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);}
.m11_c01248{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);}
.m20_c01248{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_c01248{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m7_c01248{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);}
.m5b_c01248{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01248{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mb_c01248{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.md_c01248{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01248{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m43_c01248{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01248{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m21_c01248{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.me_c01248{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mf_c01248{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01248{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01248{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m54_c01248{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m13_c01248{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m10_c01248{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01248{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);}
.m61_c01248{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m31_c01248{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m57_c01248{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01248{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m39_c01248{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1_c01248{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m46_c01248{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01248{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);}
.m26_c01248{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);}
.m25_c01248{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_c01248{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m24_c01248{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_c01248{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);}
.m5f_c01248{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m19_c01248{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m5a_c01248{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01248{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);}
.m38_c01248{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m5_c01248{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);}
.m8_c01248{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);}
.m51_c01248{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);}
.m4f_c01248{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m40_c01248{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m3_c01248{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m22_c01248{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m23_c01248{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m44_c01248{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);}
.m2b_c01248{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m9_c01248{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);}
.m17_c01248{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m5d_c01248{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m42_c01248{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);}
.m0_c01248{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m4_c01248{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01248{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m49_c01248{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);}
.m6_c01248{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m27_c01248{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01248{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m30_c01248{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m58_c01248{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);}
.m59_c01248{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01248{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m29_c01248{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m52_c01248{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);}
.m5c_c01248{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01248{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m14_c01248{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m4e_c01248{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);}
.m2d_c01248{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01248{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01248{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m28_c01248{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m56_c01248{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);}
.m53_c01248{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);}
.m3f_c01248{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m55_c01248{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m16_c01248{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m45_c01248{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m34_c01248{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m33_c01248{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m18_c01248{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);}
.m41_c01248{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m4d_c01248{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);}
.m37_c01248{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m32_c01248{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m35_c01248{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m48_c01248{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m47_c01248{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m36_c01248{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.m50_c01248{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.ma_c01248{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);}
.m5e_c01248{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.m2_c01248{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);}
.m12_c01248{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);}
.v2_c01248{vertical-align:-2.880000px;}
.v0_c01248{vertical-align:0.000000px;}
.v1_c01248{vertical-align:2.880000px;}
.ls2_c01248{letter-spacing:0.000000px;}
.ls1_c01248{letter-spacing:24.997920px;}
.ls0_c01248{letter-spacing:187.228800px;}
.sc__c01248{text-shadow:none;}
.sc0_c01248{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01248{-webkit-text-stroke:0px transparent;}
.sc0_c01248{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01248{word-spacing:-0.179520px;}
.ws1_c01248{word-spacing:0.000000px;}
.fc0_c01248{color:transparent;}
.fsa_c01248{font-size:20.160000px;}
.fsb_c01248{font-size:31.680000px;}
.fs0_c01248{font-size:34.560000px;}
.fse_c01248{font-size:37.440000px;}
.fs2_c01248{font-size:43.200000px;}
.fs1_c01248{font-size:46.080000px;}
.fs4_c01248{font-size:48.960000px;}
.fs3_c01248{font-size:51.840000px;}
.fs8_c01248{font-size:54.720000px;}
.fs6_c01248{font-size:57.600000px;}
.fs7_c01248{font-size:60.480000px;}
.fs9_c01248{font-size:63.360000px;}
.fsd_c01248{font-size:66.240000px;}
.fs5_c01248{font-size:69.120000px;}
.fsf_c01248{font-size:72.000000px;}
.fsc_c01248{font-size:97.920000px;}
.y0_c01248{bottom:0.000000px;}
.y7c_c01248{bottom:43.200000px;}
.y7b_c01248{bottom:44.640000px;}
.y7d_c01248{bottom:46.080000px;}
.y7a_c01248{bottom:46.800000px;}
.y79_c01248{bottom:47.520000px;}
.y78_c01248{bottom:53.280000px;}
.y77_c01248{bottom:85.680000px;}
.y74_c01248{bottom:87.840000px;}
.y76_c01248{bottom:88.560000px;}
.y75_c01248{bottom:89.280000px;}
.y73_c01248{bottom:92.880000px;}
.y72_c01248{bottom:95.760000px;}
.y71_c01248{bottom:127.440000px;}
.y6f_c01248{bottom:129.600000px;}
.y70_c01248{bottom:130.320000px;}
.y6c_c01248{bottom:131.040000px;}
.y6e_c01248{bottom:131.760000px;}
.y6d_c01248{bottom:133.920000px;}
.y6b_c01248{bottom:136.080000px;}
.y6a_c01248{bottom:170.640000px;}
.y68_c01248{bottom:172.800000px;}
.y67_c01248{bottom:173.520000px;}
.y69_c01248{bottom:174.240000px;}
.y66_c01248{bottom:174.960000px;}
.y65_c01248{bottom:179.280000px;}
.y62_c01248{bottom:213.840000px;}
.y63_c01248{bottom:216.000000px;}
.y64_c01248{bottom:216.720000px;}
.y61_c01248{bottom:218.160000px;}
.y60_c01248{bottom:220.320000px;}
.y5f_c01248{bottom:221.760000px;}
.y5d_c01248{bottom:257.040000px;}
.y5b_c01248{bottom:258.480000px;}
.y5e_c01248{bottom:259.200000px;}
.y5c_c01248{bottom:260.640000px;}
.y58_c01248{bottom:299.520000px;}
.y59_c01248{bottom:300.240000px;}
.y5a_c01248{bottom:302.400000px;}
.y56_c01248{bottom:303.120000px;}
.y57_c01248{bottom:303.840000px;}
.y53_c01248{bottom:343.440000px;}
.y54_c01248{bottom:344.880000px;}
.y55_c01248{bottom:345.600000px;}
.y52_c01248{bottom:346.320000px;}
.y51_c01248{bottom:347.040000px;}
.y50_c01248{bottom:385.920000px;}
.y4f_c01248{bottom:388.080000px;}
.y4e_c01248{bottom:388.800000px;}
.y4d_c01248{bottom:389.520000px;}
.y4c_c01248{bottom:390.240000px;}
.y49_c01248{bottom:440.640000px;}
.y4b_c01248{bottom:441.360000px;}
.y48_c01248{bottom:442.080000px;}
.y4a_c01248{bottom:442.800000px;}
.y47_c01248{bottom:483.120000px;}
.y46_c01248{bottom:485.280000px;}
.y45_c01248{bottom:486.000000px;}
.y44_c01248{bottom:486.720000px;}
.y41_c01248{bottom:524.880000px;}
.y43_c01248{bottom:525.600000px;}
.y3f_c01248{bottom:526.320000px;}
.y42_c01248{bottom:527.760000px;}
.y40_c01248{bottom:529.200000px;}
.y3c_c01248{bottom:568.800000px;}
.y3d_c01248{bottom:570.960000px;}
.y3b_c01248{bottom:571.680000px;}
.y3e_c01248{bottom:572.400000px;}
.y37_c01248{bottom:611.280000px;}
.y39_c01248{bottom:612.720000px;}
.y38_c01248{bottom:613.440000px;}
.y36_c01248{bottom:614.160000px;}
.y3a_c01248{bottom:615.600000px;}
.y32_c01248{bottom:653.760000px;}
.y31_c01248{bottom:656.640000px;}
.y33_c01248{bottom:657.360000px;}
.y35_c01248{bottom:658.080000px;}
.y34_c01248{bottom:658.800000px;}
.y30_c01248{bottom:707.760000px;}
.y2f_c01248{bottom:710.640000px;}
.y2b_c01248{bottom:750.240000px;}
.y29_c01248{bottom:750.960000px;}
.y2a_c01248{bottom:751.680000px;}
.y2d_c01248{bottom:752.400000px;}
.y2c_c01248{bottom:753.120000px;}
.y2e_c01248{bottom:753.840000px;}
.y21_c01248{bottom:790.560000px;}
.y23_c01248{bottom:792.000000px;}
.y26_c01248{bottom:793.440000px;}
.y22_c01248{bottom:794.880000px;}
.y24_c01248{bottom:795.600000px;}
.y25_c01248{bottom:796.320000px;}
.y27_c01248{bottom:797.040000px;}
.y28_c01248{bottom:797.760000px;}
.y1b_c01248{bottom:833.040000px;}
.y1c_c01248{bottom:834.480000px;}
.y1e_c01248{bottom:835.920000px;}
.y20_c01248{bottom:836.640000px;}
.y1f_c01248{bottom:837.360000px;}
.y1d_c01248{bottom:838.080000px;}
.y16_c01248{bottom:878.400000px;}
.y17_c01248{bottom:879.120000px;}
.y15_c01248{bottom:880.560000px;}
.y1a_c01248{bottom:881.280000px;}
.y18_c01248{bottom:882.000000px;}
.y19_c01248{bottom:883.440000px;}
.yb_c01248{bottom:930.240000px;}
.yd_c01248{bottom:932.400000px;}
.yf_c01248{bottom:933.120000px;}
.y14_c01248{bottom:933.840000px;}
.y12_c01248{bottom:934.560000px;}
.y11_c01248{bottom:936.000000px;}
.y13_c01248{bottom:939.600000px;}
.ya_c01248{bottom:954.720000px;}
.yc_c01248{bottom:956.160000px;}
.ye_c01248{bottom:956.880000px;}
.y10_c01248{bottom:957.600000px;}
.y5_c01248{bottom:997.920000px;}
.y4_c01248{bottom:998.640000px;}
.y8_c01248{bottom:999.360000px;}
.y6_c01248{bottom:1000.080000px;}
.y7_c01248{bottom:1000.800000px;}
.y9_c01248{bottom:1002.240000px;}
.y1_c01248{bottom:1049.040000px;}
.y2_c01248{bottom:1050.480000px;}
.y3_c01248{bottom:1051.200000px;}
.hc_c01248{height:18.142031px;}
.hd_c01248{height:28.508906px;}
.h2_c01248{height:31.100625px;}
.h11_c01248{height:33.692344px;}
.h4_c01248{height:38.875781px;}
.h3_c01248{height:41.467500px;}
.hf_c01248{height:41.755781px;}
.h13_c01248{height:43.770937px;}
.h6_c01248{height:44.059219px;}
.h5_c01248{height:46.650937px;}
.ha_c01248{height:49.242656px;}
.h8_c01248{height:51.834375px;}
.h9_c01248{height:54.426094px;}
.hb_c01248{height:57.017812px;}
.h10_c01248{height:59.609531px;}
.h7_c01248{height:62.201250px;}
.h12_c01248{height:64.792969px;}
.he_c01248{height:88.118437px;}
.h0_c01248{height:1159.920000px;}
.h1_c01248{height:1160.250000px;}
.w0_c01248{width:781.920000px;}
.w1_c01248{width:782.250000px;}
.x0_c01248{left:0.000000px;}
.x1_c01248{left:56.160000px;}
.x1d_c01248{left:58.320000px;}
.x3c_c01248{left:59.760000px;}
.x4c_c01248{left:61.200000px;}
.x60_c01248{left:62.640000px;}
.x24_c01248{left:79.920000px;}
.xd_c01248{left:88.560000px;}
.x3f_c01248{left:90.000000px;}
.x65_c01248{left:91.440000px;}
.x2_c01248{left:97.200000px;}
.x5a_c01248{left:100.800000px;}
.xc_c01248{left:109.440000px;}
.x6b_c01248{left:110.880000px;}
.x2d_c01248{left:118.800000px;}
.x40_c01248{left:120.960000px;}
.x61_c01248{left:123.120000px;}
.x3_c01248{left:126.720000px;}
.x1e_c01248{left:139.680000px;}
.x5b_c01248{left:141.840000px;}
.x2e_c01248{left:151.200000px;}
.x51_c01248{left:152.640000px;}
.x4_c01248{left:159.840000px;}
.xf_c01248{left:161.280000px;}
.x46_c01248{left:163.440000px;}
.xe_c01248{left:170.640000px;}
.x39_c01248{left:172.080000px;}
.x4d_c01248{left:183.600000px;}
.x62_c01248{left:185.040000px;}
.x5_c01248{left:192.960000px;}
.x52_c01248{left:195.840000px;}
.x33_c01248{left:203.040000px;}
.x3e_c01248{left:205.200000px;}
.x19_c01248{left:224.640000px;}
.x25_c01248{left:226.800000px;}
.x10_c01248{left:235.440000px;}
.x3a_c01248{left:236.880000px;}
.x66_c01248{left:238.320000px;}
.x44_c01248{left:248.400000px;}
.x5e_c01248{left:249.840000px;}
.x6_c01248{left:256.320000px;}
.x2f_c01248{left:258.480000px;}
.x1a_c01248{left:277.920000px;}
.x5c_c01248{left:280.080000px;}
.x67_c01248{left:281.520000px;}
.x12_c01248{left:289.440000px;}
.x53_c01248{left:292.320000px;}
.x11_c01248{left:300.960000px;}
.x34_c01248{left:311.040000px;}
.x31_c01248{left:312.480000px;}
.x47_c01248{left:324.000000px;}
.x26_c01248{left:332.640000px;}
.x41_c01248{left:334.080000px;}
.x1f_c01248{left:342.000000px;}
.x7_c01248{left:343.440000px;}
.x14_c01248{left:355.680000px;}
.x27_c01248{left:365.040000px;}
.x5d_c01248{left:367.920000px;}
.x13_c01248{left:376.560000px;}
.x32_c01248{left:378.000000px;}
.x63_c01248{left:379.440000px;}
.x8_c01248{left:386.640000px;}
.x35_c01248{left:388.080000px;}
.x48_c01248{left:398.880000px;}
.x45_c01248{left:410.400000px;}
.x36_c01248{left:420.480000px;}
.x5f_c01248{left:432.720000px;}
.x16_c01248{left:440.640000px;}
.x15_c01248{left:442.080000px;}
.x1b_c01248{left:452.160000px;}
.x4e_c01248{left:453.600000px;}
.x20_c01248{left:462.960000px;}
.x49_c01248{left:464.400000px;}
.x57_c01248{left:475.920000px;}
.x68_c01248{left:477.360000px;}
.x9_c01248{left:483.840000px;}
.x4f_c01248{left:486.720000px;}
.x28_c01248{left:496.080000px;}
.x54_c01248{left:498.240000px;}
.x21_c01248{left:506.880000px;}
.x58_c01248{left:508.320000px;}
.x17_c01248{left:516.960000px;}
.x50_c01248{left:519.120000px;}
.x64_c01248{left:520.560000px;}
.x29_c01248{left:528.480000px;}
.x55_c01248{left:530.640000px;}
.x59_c01248{left:542.160000px;}
.xa_c01248{left:548.640000px;}
.x3b_c01248{left:550.080000px;}
.x6c_c01248{left:551.520000px;}
.x30_c01248{left:560.880000px;}
.x18_c01248{left:570.240000px;}
.x37_c01248{left:572.400000px;}
.x56_c01248{left:574.560000px;}
.x2a_c01248{left:593.280000px;}
.x22_c01248{left:594.720000px;}
.xb_c01248{left:604.080000px;}
.x4a_c01248{left:606.960000px;}
.x2b_c01248{left:615.600000px;}
.x42_c01248{left:617.040000px;}
.x23_c01248{left:624.960000px;}
.x69_c01248{left:628.560000px;}
.x1c_c01248{left:637.200000px;}
.x4b_c01248{left:638.640000px;}
.x2c_c01248{left:648.000000px;}
.x3d_c01248{left:649.440000px;}
.x43_c01248{left:660.960000px;}
.x38_c01248{left:671.760000px;}
.x6a_c01248{left:673.200000px;}
@media print{
.v2_c01248{vertical-align:-2.560000pt;}
.v0_c01248{vertical-align:0.000000pt;}
.v1_c01248{vertical-align:2.560000pt;}
.ls2_c01248{letter-spacing:0.000000pt;}
.ls1_c01248{letter-spacing:22.220373pt;}
.ls0_c01248{letter-spacing:166.425600pt;}
.ws0_c01248{word-spacing:-0.159573pt;}
.ws1_c01248{word-spacing:0.000000pt;}
.fsa_c01248{font-size:17.920000pt;}
.fsb_c01248{font-size:28.160000pt;}
.fs0_c01248{font-size:30.720000pt;}
.fse_c01248{font-size:33.280000pt;}
.fs2_c01248{font-size:38.400000pt;}
.fs1_c01248{font-size:40.960000pt;}
.fs4_c01248{font-size:43.520000pt;}
.fs3_c01248{font-size:46.080000pt;}
.fs8_c01248{font-size:48.640000pt;}
.fs6_c01248{font-size:51.200000pt;}
.fs7_c01248{font-size:53.760000pt;}
.fs9_c01248{font-size:56.320000pt;}
.fsd_c01248{font-size:58.880000pt;}
.fs5_c01248{font-size:61.440000pt;}
.fsf_c01248{font-size:64.000000pt;}
.fsc_c01248{font-size:87.040000pt;}
.y0_c01248{bottom:0.000000pt;}
.y7c_c01248{bottom:38.400000pt;}
.y7b_c01248{bottom:39.680000pt;}
.y7d_c01248{bottom:40.960000pt;}
.y7a_c01248{bottom:41.600000pt;}
.y79_c01248{bottom:42.240000pt;}
.y78_c01248{bottom:47.360000pt;}
.y77_c01248{bottom:76.160000pt;}
.y74_c01248{bottom:78.080000pt;}
.y76_c01248{bottom:78.720000pt;}
.y75_c01248{bottom:79.360000pt;}
.y73_c01248{bottom:82.560000pt;}
.y72_c01248{bottom:85.120000pt;}
.y71_c01248{bottom:113.280000pt;}
.y6f_c01248{bottom:115.200000pt;}
.y70_c01248{bottom:115.840000pt;}
.y6c_c01248{bottom:116.480000pt;}
.y6e_c01248{bottom:117.120000pt;}
.y6d_c01248{bottom:119.040000pt;}
.y6b_c01248{bottom:120.960000pt;}
.y6a_c01248{bottom:151.680000pt;}
.y68_c01248{bottom:153.600000pt;}
.y67_c01248{bottom:154.240000pt;}
.y69_c01248{bottom:154.880000pt;}
.y66_c01248{bottom:155.520000pt;}
.y65_c01248{bottom:159.360000pt;}
.y62_c01248{bottom:190.080000pt;}
.y63_c01248{bottom:192.000000pt;}
.y64_c01248{bottom:192.640000pt;}
.y61_c01248{bottom:193.920000pt;}
.y60_c01248{bottom:195.840000pt;}
.y5f_c01248{bottom:197.120000pt;}
.y5d_c01248{bottom:228.480000pt;}
.y5b_c01248{bottom:229.760000pt;}
.y5e_c01248{bottom:230.400000pt;}
.y5c_c01248{bottom:231.680000pt;}
.y58_c01248{bottom:266.240000pt;}
.y59_c01248{bottom:266.880000pt;}
.y5a_c01248{bottom:268.800000pt;}
.y56_c01248{bottom:269.440000pt;}
.y57_c01248{bottom:270.080000pt;}
.y53_c01248{bottom:305.280000pt;}
.y54_c01248{bottom:306.560000pt;}
.y55_c01248{bottom:307.200000pt;}
.y52_c01248{bottom:307.840000pt;}
.y51_c01248{bottom:308.480000pt;}
.y50_c01248{bottom:343.040000pt;}
.y4f_c01248{bottom:344.960000pt;}
.y4e_c01248{bottom:345.600000pt;}
.y4d_c01248{bottom:346.240000pt;}
.y4c_c01248{bottom:346.880000pt;}
.y49_c01248{bottom:391.680000pt;}
.y4b_c01248{bottom:392.320000pt;}
.y48_c01248{bottom:392.960000pt;}
.y4a_c01248{bottom:393.600000pt;}
.y47_c01248{bottom:429.440000pt;}
.y46_c01248{bottom:431.360000pt;}
.y45_c01248{bottom:432.000000pt;}
.y44_c01248{bottom:432.640000pt;}
.y41_c01248{bottom:466.560000pt;}
.y43_c01248{bottom:467.200000pt;}
.y3f_c01248{bottom:467.840000pt;}
.y42_c01248{bottom:469.120000pt;}
.y40_c01248{bottom:470.400000pt;}
.y3c_c01248{bottom:505.600000pt;}
.y3d_c01248{bottom:507.520000pt;}
.y3b_c01248{bottom:508.160000pt;}
.y3e_c01248{bottom:508.800000pt;}
.y37_c01248{bottom:543.360000pt;}
.y39_c01248{bottom:544.640000pt;}
.y38_c01248{bottom:545.280000pt;}
.y36_c01248{bottom:545.920000pt;}
.y3a_c01248{bottom:547.200000pt;}
.y32_c01248{bottom:581.120000pt;}
.y31_c01248{bottom:583.680000pt;}
.y33_c01248{bottom:584.320000pt;}
.y35_c01248{bottom:584.960000pt;}
.y34_c01248{bottom:585.600000pt;}
.y30_c01248{bottom:629.120000pt;}
.y2f_c01248{bottom:631.680000pt;}
.y2b_c01248{bottom:666.880000pt;}
.y29_c01248{bottom:667.520000pt;}
.y2a_c01248{bottom:668.160000pt;}
.y2d_c01248{bottom:668.800000pt;}
.y2c_c01248{bottom:669.440000pt;}
.y2e_c01248{bottom:670.080000pt;}
.y21_c01248{bottom:702.720000pt;}
.y23_c01248{bottom:704.000000pt;}
.y26_c01248{bottom:705.280000pt;}
.y22_c01248{bottom:706.560000pt;}
.y24_c01248{bottom:707.200000pt;}
.y25_c01248{bottom:707.840000pt;}
.y27_c01248{bottom:708.480000pt;}
.y28_c01248{bottom:709.120000pt;}
.y1b_c01248{bottom:740.480000pt;}
.y1c_c01248{bottom:741.760000pt;}
.y1e_c01248{bottom:743.040000pt;}
.y20_c01248{bottom:743.680000pt;}
.y1f_c01248{bottom:744.320000pt;}
.y1d_c01248{bottom:744.960000pt;}
.y16_c01248{bottom:780.800000pt;}
.y17_c01248{bottom:781.440000pt;}
.y15_c01248{bottom:782.720000pt;}
.y1a_c01248{bottom:783.360000pt;}
.y18_c01248{bottom:784.000000pt;}
.y19_c01248{bottom:785.280000pt;}
.yb_c01248{bottom:826.880000pt;}
.yd_c01248{bottom:828.800000pt;}
.yf_c01248{bottom:829.440000pt;}
.y14_c01248{bottom:830.080000pt;}
.y12_c01248{bottom:830.720000pt;}
.y11_c01248{bottom:832.000000pt;}
.y13_c01248{bottom:835.200000pt;}
.ya_c01248{bottom:848.640000pt;}
.yc_c01248{bottom:849.920000pt;}
.ye_c01248{bottom:850.560000pt;}
.y10_c01248{bottom:851.200000pt;}
.y5_c01248{bottom:887.040000pt;}
.y4_c01248{bottom:887.680000pt;}
.y8_c01248{bottom:888.320000pt;}
.y6_c01248{bottom:888.960000pt;}
.y7_c01248{bottom:889.600000pt;}
.y9_c01248{bottom:890.880000pt;}
.y1_c01248{bottom:932.480000pt;}
.y2_c01248{bottom:933.760000pt;}
.y3_c01248{bottom:934.400000pt;}
.hc_c01248{height:16.126250pt;}
.hd_c01248{height:25.341250pt;}
.h2_c01248{height:27.645000pt;}
.h11_c01248{height:29.948750pt;}
.h4_c01248{height:34.556250pt;}
.h3_c01248{height:36.860000pt;}
.hf_c01248{height:37.116250pt;}
.h13_c01248{height:38.907500pt;}
.h6_c01248{height:39.163750pt;}
.h5_c01248{height:41.467500pt;}
.ha_c01248{height:43.771250pt;}
.h8_c01248{height:46.075000pt;}
.h9_c01248{height:48.378750pt;}
.hb_c01248{height:50.682500pt;}
.h10_c01248{height:52.986250pt;}
.h7_c01248{height:55.290000pt;}
.h12_c01248{height:57.593750pt;}
.he_c01248{height:78.327500pt;}
.h0_c01248{height:1031.040000pt;}
.h1_c01248{height:1031.333333pt;}
.w0_c01248{width:695.040000pt;}
.w1_c01248{width:695.333333pt;}
.x0_c01248{left:0.000000pt;}
.x1_c01248{left:49.920000pt;}
.x1d_c01248{left:51.840000pt;}
.x3c_c01248{left:53.120000pt;}
.x4c_c01248{left:54.400000pt;}
.x60_c01248{left:55.680000pt;}
.x24_c01248{left:71.040000pt;}
.xd_c01248{left:78.720000pt;}
.x3f_c01248{left:80.000000pt;}
.x65_c01248{left:81.280000pt;}
.x2_c01248{left:86.400000pt;}
.x5a_c01248{left:89.600000pt;}
.xc_c01248{left:97.280000pt;}
.x6b_c01248{left:98.560000pt;}
.x2d_c01248{left:105.600000pt;}
.x40_c01248{left:107.520000pt;}
.x61_c01248{left:109.440000pt;}
.x3_c01248{left:112.640000pt;}
.x1e_c01248{left:124.160000pt;}
.x5b_c01248{left:126.080000pt;}
.x2e_c01248{left:134.400000pt;}
.x51_c01248{left:135.680000pt;}
.x4_c01248{left:142.080000pt;}
.xf_c01248{left:143.360000pt;}
.x46_c01248{left:145.280000pt;}
.xe_c01248{left:151.680000pt;}
.x39_c01248{left:152.960000pt;}
.x4d_c01248{left:163.200000pt;}
.x62_c01248{left:164.480000pt;}
.x5_c01248{left:171.520000pt;}
.x52_c01248{left:174.080000pt;}
.x33_c01248{left:180.480000pt;}
.x3e_c01248{left:182.400000pt;}
.x19_c01248{left:199.680000pt;}
.x25_c01248{left:201.600000pt;}
.x10_c01248{left:209.280000pt;}
.x3a_c01248{left:210.560000pt;}
.x66_c01248{left:211.840000pt;}
.x44_c01248{left:220.800000pt;}
.x5e_c01248{left:222.080000pt;}
.x6_c01248{left:227.840000pt;}
.x2f_c01248{left:229.760000pt;}
.x1a_c01248{left:247.040000pt;}
.x5c_c01248{left:248.960000pt;}
.x67_c01248{left:250.240000pt;}
.x12_c01248{left:257.280000pt;}
.x53_c01248{left:259.840000pt;}
.x11_c01248{left:267.520000pt;}
.x34_c01248{left:276.480000pt;}
.x31_c01248{left:277.760000pt;}
.x47_c01248{left:288.000000pt;}
.x26_c01248{left:295.680000pt;}
.x41_c01248{left:296.960000pt;}
.x1f_c01248{left:304.000000pt;}
.x7_c01248{left:305.280000pt;}
.x14_c01248{left:316.160000pt;}
.x27_c01248{left:324.480000pt;}
.x5d_c01248{left:327.040000pt;}
.x13_c01248{left:334.720000pt;}
.x32_c01248{left:336.000000pt;}
.x63_c01248{left:337.280000pt;}
.x8_c01248{left:343.680000pt;}
.x35_c01248{left:344.960000pt;}
.x48_c01248{left:354.560000pt;}
.x45_c01248{left:364.800000pt;}
.x36_c01248{left:373.760000pt;}
.x5f_c01248{left:384.640000pt;}
.x16_c01248{left:391.680000pt;}
.x15_c01248{left:392.960000pt;}
.x1b_c01248{left:401.920000pt;}
.x4e_c01248{left:403.200000pt;}
.x20_c01248{left:411.520000pt;}
.x49_c01248{left:412.800000pt;}
.x57_c01248{left:423.040000pt;}
.x68_c01248{left:424.320000pt;}
.x9_c01248{left:430.080000pt;}
.x4f_c01248{left:432.640000pt;}
.x28_c01248{left:440.960000pt;}
.x54_c01248{left:442.880000pt;}
.x21_c01248{left:450.560000pt;}
.x58_c01248{left:451.840000pt;}
.x17_c01248{left:459.520000pt;}
.x50_c01248{left:461.440000pt;}
.x64_c01248{left:462.720000pt;}
.x29_c01248{left:469.760000pt;}
.x55_c01248{left:471.680000pt;}
.x59_c01248{left:481.920000pt;}
.xa_c01248{left:487.680000pt;}
.x3b_c01248{left:488.960000pt;}
.x6c_c01248{left:490.240000pt;}
.x30_c01248{left:498.560000pt;}
.x18_c01248{left:506.880000pt;}
.x37_c01248{left:508.800000pt;}
.x56_c01248{left:510.720000pt;}
.x2a_c01248{left:527.360000pt;}
.x22_c01248{left:528.640000pt;}
.xb_c01248{left:536.960000pt;}
.x4a_c01248{left:539.520000pt;}
.x2b_c01248{left:547.200000pt;}
.x42_c01248{left:548.480000pt;}
.x23_c01248{left:555.520000pt;}
.x69_c01248{left:558.720000pt;}
.x1c_c01248{left:566.400000pt;}
.x4b_c01248{left:567.680000pt;}
.x2c_c01248{left:576.000000pt;}
.x3d_c01248{left:577.280000pt;}
.x43_c01248{left:587.520000pt;}
.x38_c01248{left:597.120000pt;}
.x6a_c01248{left:598.400000pt;}
}





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

.ir_c01249:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01249{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01249;src:url('chunks/assets/font_c60a3d31454e3d51acf505ec.woff2')format("woff");}.ff1_c01249{font-family:ff1_c01249;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m51_c01249{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);}
.m61_c01249{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);}
.m41_c01249{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);}
.m29_c01249{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01249{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01249{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01249{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m47_c01249{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01249{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m37_c01249{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m4d_c01249{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m34_c01249{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01249{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m53_c01249{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);}
.m40_c01249{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mb_c01249{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m25_c01249{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);}
.m35_c01249{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);}
.m31_c01249{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m5d_c01249{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_c01249{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m1_c01249{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m5e_c01249{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m7_c01249{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m13_c01249{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m28_c01249{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);}
.m50_c01249{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01249{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);}
.mc_c01249{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);}
.m43_c01249{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);}
.m0_c01249{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01249{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);}
.m1e_c01249{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m22_c01249{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);}
.m11_c01249{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);}
.m4a_c01249{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);}
.m55_c01249{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m17_c01249{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m38_c01249{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m5c_c01249{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);}
.m62_c01249{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m3_c01249{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);}
.m2f_c01249{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m60_c01249{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);}
.m14_c01249{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_c01249{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m36_c01249{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01249{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m20_c01249{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m44_c01249{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);}
.m2c_c01249{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m32_c01249{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m23_c01249{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);}
.m5a_c01249{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m19_c01249{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);}
.m12_c01249{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m45_c01249{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m58_c01249{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m6_c01249{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m26_c01249{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);}
.m1d_c01249{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m57_c01249{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01249{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);}
.m4f_c01249{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m27_c01249{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.mf_c01249{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m21_c01249{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m9_c01249{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m64_c01249{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);}
.m8_c01249{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);}
.m46_c01249{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m16_c01249{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m30_c01249{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.ma_c01249{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);}
.m3a_c01249{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m18_c01249{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01249{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);}
.m1a_c01249{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m39_c01249{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m5b_c01249{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01249{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);}
.m2d_c01249{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m15_c01249{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);}
.m56_c01249{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m24_c01249{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m42_c01249{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m54_c01249{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.md_c01249{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m59_c01249{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.me_c01249{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m2_c01249{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);}
.m49_c01249{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m4e_c01249{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);}
.m4_c01249{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m5_c01249{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01249{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m33_c01249{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);}
.m63_c01249{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m48_c01249{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01249{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);}
.m5f_c01249{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.v1_c01249{vertical-align:-2.880000px;}
.v0_c01249{vertical-align:0.000000px;}
.ls0_c01249{letter-spacing:0.000000px;}
.sc__c01249{text-shadow:none;}
.sc0_c01249{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01249{-webkit-text-stroke:0px transparent;}
.sc0_c01249{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01249{word-spacing:-8.906400px;}
.ws1_c01249{word-spacing:-1.830480px;}
.ws2_c01249{word-spacing:0.000000px;}
.fc0_c01249{color:transparent;}
.fs2_c01249{font-size:34.560000px;}
.fsa_c01249{font-size:37.440000px;}
.fsb_c01249{font-size:43.200000px;}
.fs7_c01249{font-size:46.080000px;}
.fs4_c01249{font-size:48.960000px;}
.fs5_c01249{font-size:51.840000px;}
.fs6_c01249{font-size:54.720000px;}
.fs8_c01249{font-size:57.600000px;}
.fs3_c01249{font-size:60.480000px;}
.fs1_c01249{font-size:63.360000px;}
.fsc_c01249{font-size:66.240000px;}
.fs9_c01249{font-size:69.120000px;}
.fs0_c01249{font-size:72.000000px;}
.fsd_c01249{font-size:83.520000px;}
.y0_c01249{bottom:0.000000px;}
.y94_c01249{bottom:46.080000px;}
.y93_c01249{bottom:47.520000px;}
.y92_c01249{bottom:48.960000px;}
.y91_c01249{bottom:51.120000px;}
.y8f_c01249{bottom:51.840000px;}
.y90_c01249{bottom:52.560000px;}
.y8e_c01249{bottom:90.720000px;}
.y8c_c01249{bottom:92.160000px;}
.y8d_c01249{bottom:92.880000px;}
.y89_c01249{bottom:93.600000px;}
.y8b_c01249{bottom:95.760000px;}
.y8a_c01249{bottom:96.480000px;}
.y88_c01249{bottom:98.640000px;}
.y87_c01249{bottom:99.360000px;}
.y86_c01249{bottom:100.800000px;}
.y84_c01249{bottom:133.920000px;}
.y85_c01249{bottom:136.080000px;}
.y83_c01249{bottom:136.800000px;}
.y81_c01249{bottom:137.520000px;}
.y82_c01249{bottom:138.240000px;}
.y7f_c01249{bottom:140.400000px;}
.y80_c01249{bottom:141.840000px;}
.y7e_c01249{bottom:176.400000px;}
.y7c_c01249{bottom:177.120000px;}
.y7d_c01249{bottom:177.840000px;}
.y7b_c01249{bottom:178.560000px;}
.y79_c01249{bottom:180.720000px;}
.y7a_c01249{bottom:181.440000px;}
.y77_c01249{bottom:184.320000px;}
.y78_c01249{bottom:185.760000px;}
.y76_c01249{bottom:187.920000px;}
.y73_c01249{bottom:221.760000px;}
.y75_c01249{bottom:222.480000px;}
.y74_c01249{bottom:223.200000px;}
.y72_c01249{bottom:224.640000px;}
.y71_c01249{bottom:225.360000px;}
.y70_c01249{bottom:226.800000px;}
.y6f_c01249{bottom:228.960000px;}
.y6d_c01249{bottom:262.800000px;}
.y6a_c01249{bottom:263.520000px;}
.y6b_c01249{bottom:264.240000px;}
.y6e_c01249{bottom:264.960000px;}
.y6c_c01249{bottom:265.680000px;}
.y69_c01249{bottom:267.120000px;}
.y68_c01249{bottom:267.840000px;}
.y67_c01249{bottom:268.560000px;}
.y66_c01249{bottom:269.280000px;}
.y65_c01249{bottom:272.160000px;}
.y64_c01249{bottom:306.000000px;}
.y61_c01249{bottom:308.160000px;}
.y63_c01249{bottom:308.880000px;}
.y62_c01249{bottom:309.600000px;}
.y60_c01249{bottom:311.760000px;}
.y5f_c01249{bottom:360.720000px;}
.y5e_c01249{bottom:363.600000px;}
.y5d_c01249{bottom:364.320000px;}
.y5b_c01249{bottom:365.040000px;}
.y5c_c01249{bottom:366.480000px;}
.y58_c01249{bottom:402.480000px;}
.y57_c01249{bottom:403.200000px;}
.y5a_c01249{bottom:404.640000px;}
.y59_c01249{bottom:405.360000px;}
.y56_c01249{bottom:406.080000px;}
.y55_c01249{bottom:406.800000px;}
.y54_c01249{bottom:408.960000px;}
.y53_c01249{bottom:409.680000px;}
.y52_c01249{bottom:445.680000px;}
.y4f_c01249{bottom:446.400000px;}
.y51_c01249{bottom:447.840000px;}
.y50_c01249{bottom:448.560000px;}
.y4d_c01249{bottom:449.280000px;}
.y4e_c01249{bottom:450.000000px;}
.y4c_c01249{bottom:488.160000px;}
.y4b_c01249{bottom:490.320000px;}
.y4a_c01249{bottom:491.040000px;}
.y49_c01249{bottom:491.760000px;}
.y48_c01249{bottom:492.480000px;}
.y45_c01249{bottom:531.360000px;}
.y43_c01249{bottom:532.800000px;}
.y47_c01249{bottom:533.520000px;}
.y46_c01249{bottom:534.240000px;}
.y44_c01249{bottom:534.960000px;}
.y42_c01249{bottom:535.680000px;}
.y41_c01249{bottom:573.120000px;}
.y40_c01249{bottom:574.560000px;}
.y3f_c01249{bottom:576.720000px;}
.y3e_c01249{bottom:577.440000px;}
.y3d_c01249{bottom:578.160000px;}
.y3c_c01249{bottom:616.320000px;}
.y3a_c01249{bottom:617.040000px;}
.y38_c01249{bottom:618.480000px;}
.y39_c01249{bottom:619.200000px;}
.y3b_c01249{bottom:619.920000px;}
.y35_c01249{bottom:658.800000px;}
.y37_c01249{bottom:659.520000px;}
.y33_c01249{bottom:660.240000px;}
.y34_c01249{bottom:662.400000px;}
.y36_c01249{bottom:663.120000px;}
.y32_c01249{bottom:663.840000px;}
.y2d_c01249{bottom:702.720000px;}
.y2f_c01249{bottom:703.440000px;}
.y2e_c01249{bottom:704.880000px;}
.y30_c01249{bottom:705.600000px;}
.y31_c01249{bottom:706.320000px;}
.y2b_c01249{bottom:745.200000px;}
.y2a_c01249{bottom:745.920000px;}
.y29_c01249{bottom:748.080000px;}
.y2c_c01249{bottom:748.800000px;}
.y26_c01249{bottom:788.400000px;}
.y25_c01249{bottom:789.120000px;}
.y23_c01249{bottom:790.560000px;}
.y24_c01249{bottom:791.280000px;}
.y27_c01249{bottom:792.000000px;}
.y28_c01249{bottom:792.720000px;}
.y1f_c01249{bottom:830.880000px;}
.y1e_c01249{bottom:832.320000px;}
.y20_c01249{bottom:833.760000px;}
.y21_c01249{bottom:834.480000px;}
.y22_c01249{bottom:835.200000px;}
.y1a_c01249{bottom:874.080000px;}
.y1b_c01249{bottom:874.800000px;}
.y19_c01249{bottom:875.520000px;}
.y1c_c01249{bottom:877.680000px;}
.y1d_c01249{bottom:878.400000px;}
.y13_c01249{bottom:915.840000px;}
.y15_c01249{bottom:917.280000px;}
.y12_c01249{bottom:918.000000px;}
.y14_c01249{bottom:918.720000px;}
.y16_c01249{bottom:920.160000px;}
.y17_c01249{bottom:920.880000px;}
.y18_c01249{bottom:921.600000px;}
.yd_c01249{bottom:959.760000px;}
.yf_c01249{bottom:960.480000px;}
.ye_c01249{bottom:961.200000px;}
.y10_c01249{bottom:963.360000px;}
.y11_c01249{bottom:964.080000px;}
.y9_c01249{bottom:1003.680000px;}
.y7_c01249{bottom:1004.400000px;}
.y8_c01249{bottom:1005.120000px;}
.ya_c01249{bottom:1005.840000px;}
.yb_c01249{bottom:1006.560000px;}
.yc_c01249{bottom:1007.280000px;}
.y2_c01249{bottom:1054.080000px;}
.y4_c01249{bottom:1056.240000px;}
.y3_c01249{bottom:1058.400000px;}
.y5_c01249{bottom:1059.840000px;}
.y6_c01249{bottom:1060.560000px;}
.y1_c01249{bottom:1120.320000px;}
.h4_c01249{height:31.100625px;}
.hc_c01249{height:33.692344px;}
.hd_c01249{height:38.875781px;}
.h9_c01249{height:41.467500px;}
.h6_c01249{height:44.059219px;}
.h7_c01249{height:46.650937px;}
.h8_c01249{height:49.242656px;}
.ha_c01249{height:51.834375px;}
.h5_c01249{height:54.426094px;}
.h3_c01249{height:57.017812px;}
.he_c01249{height:59.609531px;}
.hb_c01249{height:62.201250px;}
.h2_c01249{height:64.792969px;}
.hf_c01249{height:75.159844px;}
.h0_c01249{height:1158.480000px;}
.h1_c01249{height:1158.750000px;}
.w0_c01249{width:781.200000px;}
.w1_c01249{width:781.500000px;}
.x0_c01249{left:0.000000px;}
.x2_c01249{left:57.600000px;}
.x3a_c01249{left:59.040000px;}
.x59_c01249{left:60.480000px;}
.x2d_c01249{left:77.760000px;}
.x18_c01249{left:87.120000px;}
.x34_c01249{left:88.560000px;}
.x48_c01249{left:97.920000px;}
.x19_c01249{left:108.000000px;}
.x4e_c01249{left:109.440000px;}
.x12_c01249{left:118.800000px;}
.x2b_c01249{left:128.160000px;}
.x30_c01249{left:129.600000px;}
.x1a_c01249{left:138.960000px;}
.x50_c01249{left:140.400000px;}
.x3_c01249{left:149.040000px;}
.x5a_c01249{left:151.200000px;}
.xb_c01249{left:160.560000px;}
.x1b_c01249{left:171.360000px;}
.x51_c01249{left:172.800000px;}
.x4_c01249{left:181.440000px;}
.x5b_c01249{left:183.600000px;}
.x2e_c01249{left:192.240000px;}
.x49_c01249{left:203.760000px;}
.xc_c01249{left:213.120000px;}
.x35_c01249{left:215.280000px;}
.x3e_c01249{left:225.360000px;}
.x4a_c01249{left:235.440000px;}
.x3b_c01249{left:244.800000px;}
.x26_c01249{left:246.240000px;}
.x5_c01249{left:255.600000px;}
.x36_c01249{left:257.040000px;}
.x21_c01249{left:267.120000px;}
.x13_c01249{left:278.640000px;}
.x3c_c01249{left:289.440000px;}
.x6_c01249{left:300.240000px;}
.x5c_c01249{left:302.400000px;}
.x3d_c01249{left:309.600000px;}
.xd_c01249{left:311.040000px;}
.x52_c01249{left:312.480000px;}
.x22_c01249{left:321.840000px;}
.x55_c01249{left:324.000000px;}
.x38_c01249{left:331.200000px;}
.x3f_c01249{left:332.640000px;}
.x2f_c01249{left:343.440000px;}
.x53_c01249{left:344.880000px;}
.x1c_c01249{left:354.240000px;}
.x44_c01249{left:365.040000px;}
.x14_c01249{left:375.840000px;}
.x56_c01249{left:377.280000px;}
.x7_c01249{left:385.920000px;}
.x54_c01249{left:387.360000px;}
.x5d_c01249{left:388.800000px;}
.x27_c01249{left:397.440000px;}
.x31_c01249{left:408.240000px;}
.x15_c01249{left:419.040000px;}
.x46_c01249{left:421.200000px;}
.xe_c01249{left:429.840000px;}
.x5f_c01249{left:432.000000px;}
.x32_c01249{left:440.640000px;}
.x42_c01249{left:442.080000px;}
.x23_c01249{left:451.440000px;}
.x1d_c01249{left:462.240000px;}
.x4d_c01249{left:463.680000px;}
.x37_c01249{left:473.040000px;}
.xf_c01249{left:483.840000px;}
.x2c_c01249{left:485.280000px;}
.x1e_c01249{left:494.640000px;}
.x57_c01249{left:496.800000px;}
.x8_c01249{left:505.440000px;}
.x45_c01249{left:506.880000px;}
.x10_c01249{left:516.240000px;}
.x28_c01249{left:517.680000px;}
.x40_c01249{left:528.480000px;}
.x9_c01249{left:537.840000px;}
.x4f_c01249{left:540.000000px;}
.x1f_c01249{left:548.640000px;}
.x11_c01249{left:550.080000px;}
.x43_c01249{left:561.600000px;}
.x16_c01249{left:571.680000px;}
.xa_c01249{left:581.040000px;}
.x39_c01249{left:583.200000px;}
.x24_c01249{left:593.280000px;}
.x5e_c01249{left:594.720000px;}
.x17_c01249{left:604.080000px;}
.x41_c01249{left:614.160000px;}
.x29_c01249{left:615.600000px;}
.x20_c01249{left:624.960000px;}
.x4b_c01249{left:626.400000px;}
.x33_c01249{left:635.760000px;}
.x47_c01249{left:637.200000px;}
.x2a_c01249{left:647.280000px;}
.x1_c01249{left:656.640000px;}
.x4c_c01249{left:658.800000px;}
.x25_c01249{left:668.880000px;}
.x58_c01249{left:671.040000px;}
@media print{
.v1_c01249{vertical-align:-2.560000pt;}
.v0_c01249{vertical-align:0.000000pt;}
.ls0_c01249{letter-spacing:0.000000pt;}
.ws0_c01249{word-spacing:-7.916800pt;}
.ws1_c01249{word-spacing:-1.627093pt;}
.ws2_c01249{word-spacing:0.000000pt;}
.fs2_c01249{font-size:30.720000pt;}
.fsa_c01249{font-size:33.280000pt;}
.fsb_c01249{font-size:38.400000pt;}
.fs7_c01249{font-size:40.960000pt;}
.fs4_c01249{font-size:43.520000pt;}
.fs5_c01249{font-size:46.080000pt;}
.fs6_c01249{font-size:48.640000pt;}
.fs8_c01249{font-size:51.200000pt;}
.fs3_c01249{font-size:53.760000pt;}
.fs1_c01249{font-size:56.320000pt;}
.fsc_c01249{font-size:58.880000pt;}
.fs9_c01249{font-size:61.440000pt;}
.fs0_c01249{font-size:64.000000pt;}
.fsd_c01249{font-size:74.240000pt;}
.y0_c01249{bottom:0.000000pt;}
.y94_c01249{bottom:40.960000pt;}
.y93_c01249{bottom:42.240000pt;}
.y92_c01249{bottom:43.520000pt;}
.y91_c01249{bottom:45.440000pt;}
.y8f_c01249{bottom:46.080000pt;}
.y90_c01249{bottom:46.720000pt;}
.y8e_c01249{bottom:80.640000pt;}
.y8c_c01249{bottom:81.920000pt;}
.y8d_c01249{bottom:82.560000pt;}
.y89_c01249{bottom:83.200000pt;}
.y8b_c01249{bottom:85.120000pt;}
.y8a_c01249{bottom:85.760000pt;}
.y88_c01249{bottom:87.680000pt;}
.y87_c01249{bottom:88.320000pt;}
.y86_c01249{bottom:89.600000pt;}
.y84_c01249{bottom:119.040000pt;}
.y85_c01249{bottom:120.960000pt;}
.y83_c01249{bottom:121.600000pt;}
.y81_c01249{bottom:122.240000pt;}
.y82_c01249{bottom:122.880000pt;}
.y7f_c01249{bottom:124.800000pt;}
.y80_c01249{bottom:126.080000pt;}
.y7e_c01249{bottom:156.800000pt;}
.y7c_c01249{bottom:157.440000pt;}
.y7d_c01249{bottom:158.080000pt;}
.y7b_c01249{bottom:158.720000pt;}
.y79_c01249{bottom:160.640000pt;}
.y7a_c01249{bottom:161.280000pt;}
.y77_c01249{bottom:163.840000pt;}
.y78_c01249{bottom:165.120000pt;}
.y76_c01249{bottom:167.040000pt;}
.y73_c01249{bottom:197.120000pt;}
.y75_c01249{bottom:197.760000pt;}
.y74_c01249{bottom:198.400000pt;}
.y72_c01249{bottom:199.680000pt;}
.y71_c01249{bottom:200.320000pt;}
.y70_c01249{bottom:201.600000pt;}
.y6f_c01249{bottom:203.520000pt;}
.y6d_c01249{bottom:233.600000pt;}
.y6a_c01249{bottom:234.240000pt;}
.y6b_c01249{bottom:234.880000pt;}
.y6e_c01249{bottom:235.520000pt;}
.y6c_c01249{bottom:236.160000pt;}
.y69_c01249{bottom:237.440000pt;}
.y68_c01249{bottom:238.080000pt;}
.y67_c01249{bottom:238.720000pt;}
.y66_c01249{bottom:239.360000pt;}
.y65_c01249{bottom:241.920000pt;}
.y64_c01249{bottom:272.000000pt;}
.y61_c01249{bottom:273.920000pt;}
.y63_c01249{bottom:274.560000pt;}
.y62_c01249{bottom:275.200000pt;}
.y60_c01249{bottom:277.120000pt;}
.y5f_c01249{bottom:320.640000pt;}
.y5e_c01249{bottom:323.200000pt;}
.y5d_c01249{bottom:323.840000pt;}
.y5b_c01249{bottom:324.480000pt;}
.y5c_c01249{bottom:325.760000pt;}
.y58_c01249{bottom:357.760000pt;}
.y57_c01249{bottom:358.400000pt;}
.y5a_c01249{bottom:359.680000pt;}
.y59_c01249{bottom:360.320000pt;}
.y56_c01249{bottom:360.960000pt;}
.y55_c01249{bottom:361.600000pt;}
.y54_c01249{bottom:363.520000pt;}
.y53_c01249{bottom:364.160000pt;}
.y52_c01249{bottom:396.160000pt;}
.y4f_c01249{bottom:396.800000pt;}
.y51_c01249{bottom:398.080000pt;}
.y50_c01249{bottom:398.720000pt;}
.y4d_c01249{bottom:399.360000pt;}
.y4e_c01249{bottom:400.000000pt;}
.y4c_c01249{bottom:433.920000pt;}
.y4b_c01249{bottom:435.840000pt;}
.y4a_c01249{bottom:436.480000pt;}
.y49_c01249{bottom:437.120000pt;}
.y48_c01249{bottom:437.760000pt;}
.y45_c01249{bottom:472.320000pt;}
.y43_c01249{bottom:473.600000pt;}
.y47_c01249{bottom:474.240000pt;}
.y46_c01249{bottom:474.880000pt;}
.y44_c01249{bottom:475.520000pt;}
.y42_c01249{bottom:476.160000pt;}
.y41_c01249{bottom:509.440000pt;}
.y40_c01249{bottom:510.720000pt;}
.y3f_c01249{bottom:512.640000pt;}
.y3e_c01249{bottom:513.280000pt;}
.y3d_c01249{bottom:513.920000pt;}
.y3c_c01249{bottom:547.840000pt;}
.y3a_c01249{bottom:548.480000pt;}
.y38_c01249{bottom:549.760000pt;}
.y39_c01249{bottom:550.400000pt;}
.y3b_c01249{bottom:551.040000pt;}
.y35_c01249{bottom:585.600000pt;}
.y37_c01249{bottom:586.240000pt;}
.y33_c01249{bottom:586.880000pt;}
.y34_c01249{bottom:588.800000pt;}
.y36_c01249{bottom:589.440000pt;}
.y32_c01249{bottom:590.080000pt;}
.y2d_c01249{bottom:624.640000pt;}
.y2f_c01249{bottom:625.280000pt;}
.y2e_c01249{bottom:626.560000pt;}
.y30_c01249{bottom:627.200000pt;}
.y31_c01249{bottom:627.840000pt;}
.y2b_c01249{bottom:662.400000pt;}
.y2a_c01249{bottom:663.040000pt;}
.y29_c01249{bottom:664.960000pt;}
.y2c_c01249{bottom:665.600000pt;}
.y26_c01249{bottom:700.800000pt;}
.y25_c01249{bottom:701.440000pt;}
.y23_c01249{bottom:702.720000pt;}
.y24_c01249{bottom:703.360000pt;}
.y27_c01249{bottom:704.000000pt;}
.y28_c01249{bottom:704.640000pt;}
.y1f_c01249{bottom:738.560000pt;}
.y1e_c01249{bottom:739.840000pt;}
.y20_c01249{bottom:741.120000pt;}
.y21_c01249{bottom:741.760000pt;}
.y22_c01249{bottom:742.400000pt;}
.y1a_c01249{bottom:776.960000pt;}
.y1b_c01249{bottom:777.600000pt;}
.y19_c01249{bottom:778.240000pt;}
.y1c_c01249{bottom:780.160000pt;}
.y1d_c01249{bottom:780.800000pt;}
.y13_c01249{bottom:814.080000pt;}
.y15_c01249{bottom:815.360000pt;}
.y12_c01249{bottom:816.000000pt;}
.y14_c01249{bottom:816.640000pt;}
.y16_c01249{bottom:817.920000pt;}
.y17_c01249{bottom:818.560000pt;}
.y18_c01249{bottom:819.200000pt;}
.yd_c01249{bottom:853.120000pt;}
.yf_c01249{bottom:853.760000pt;}
.ye_c01249{bottom:854.400000pt;}
.y10_c01249{bottom:856.320000pt;}
.y11_c01249{bottom:856.960000pt;}
.y9_c01249{bottom:892.160000pt;}
.y7_c01249{bottom:892.800000pt;}
.y8_c01249{bottom:893.440000pt;}
.ya_c01249{bottom:894.080000pt;}
.yb_c01249{bottom:894.720000pt;}
.yc_c01249{bottom:895.360000pt;}
.y2_c01249{bottom:936.960000pt;}
.y4_c01249{bottom:938.880000pt;}
.y3_c01249{bottom:940.800000pt;}
.y5_c01249{bottom:942.080000pt;}
.y6_c01249{bottom:942.720000pt;}
.y1_c01249{bottom:995.840000pt;}
.h4_c01249{height:27.645000pt;}
.hc_c01249{height:29.948750pt;}
.hd_c01249{height:34.556250pt;}
.h9_c01249{height:36.860000pt;}
.h6_c01249{height:39.163750pt;}
.h7_c01249{height:41.467500pt;}
.h8_c01249{height:43.771250pt;}
.ha_c01249{height:46.075000pt;}
.h5_c01249{height:48.378750pt;}
.h3_c01249{height:50.682500pt;}
.he_c01249{height:52.986250pt;}
.hb_c01249{height:55.290000pt;}
.h2_c01249{height:57.593750pt;}
.hf_c01249{height:66.808750pt;}
.h0_c01249{height:1029.760000pt;}
.h1_c01249{height:1030.000000pt;}
.w0_c01249{width:694.400000pt;}
.w1_c01249{width:694.666667pt;}
.x0_c01249{left:0.000000pt;}
.x2_c01249{left:51.200000pt;}
.x3a_c01249{left:52.480000pt;}
.x59_c01249{left:53.760000pt;}
.x2d_c01249{left:69.120000pt;}
.x18_c01249{left:77.440000pt;}
.x34_c01249{left:78.720000pt;}
.x48_c01249{left:87.040000pt;}
.x19_c01249{left:96.000000pt;}
.x4e_c01249{left:97.280000pt;}
.x12_c01249{left:105.600000pt;}
.x2b_c01249{left:113.920000pt;}
.x30_c01249{left:115.200000pt;}
.x1a_c01249{left:123.520000pt;}
.x50_c01249{left:124.800000pt;}
.x3_c01249{left:132.480000pt;}
.x5a_c01249{left:134.400000pt;}
.xb_c01249{left:142.720000pt;}
.x1b_c01249{left:152.320000pt;}
.x51_c01249{left:153.600000pt;}
.x4_c01249{left:161.280000pt;}
.x5b_c01249{left:163.200000pt;}
.x2e_c01249{left:170.880000pt;}
.x49_c01249{left:181.120000pt;}
.xc_c01249{left:189.440000pt;}
.x35_c01249{left:191.360000pt;}
.x3e_c01249{left:200.320000pt;}
.x4a_c01249{left:209.280000pt;}
.x3b_c01249{left:217.600000pt;}
.x26_c01249{left:218.880000pt;}
.x5_c01249{left:227.200000pt;}
.x36_c01249{left:228.480000pt;}
.x21_c01249{left:237.440000pt;}
.x13_c01249{left:247.680000pt;}
.x3c_c01249{left:257.280000pt;}
.x6_c01249{left:266.880000pt;}
.x5c_c01249{left:268.800000pt;}
.x3d_c01249{left:275.200000pt;}
.xd_c01249{left:276.480000pt;}
.x52_c01249{left:277.760000pt;}
.x22_c01249{left:286.080000pt;}
.x55_c01249{left:288.000000pt;}
.x38_c01249{left:294.400000pt;}
.x3f_c01249{left:295.680000pt;}
.x2f_c01249{left:305.280000pt;}
.x53_c01249{left:306.560000pt;}
.x1c_c01249{left:314.880000pt;}
.x44_c01249{left:324.480000pt;}
.x14_c01249{left:334.080000pt;}
.x56_c01249{left:335.360000pt;}
.x7_c01249{left:343.040000pt;}
.x54_c01249{left:344.320000pt;}
.x5d_c01249{left:345.600000pt;}
.x27_c01249{left:353.280000pt;}
.x31_c01249{left:362.880000pt;}
.x15_c01249{left:372.480000pt;}
.x46_c01249{left:374.400000pt;}
.xe_c01249{left:382.080000pt;}
.x5f_c01249{left:384.000000pt;}
.x32_c01249{left:391.680000pt;}
.x42_c01249{left:392.960000pt;}
.x23_c01249{left:401.280000pt;}
.x1d_c01249{left:410.880000pt;}
.x4d_c01249{left:412.160000pt;}
.x37_c01249{left:420.480000pt;}
.xf_c01249{left:430.080000pt;}
.x2c_c01249{left:431.360000pt;}
.x1e_c01249{left:439.680000pt;}
.x57_c01249{left:441.600000pt;}
.x8_c01249{left:449.280000pt;}
.x45_c01249{left:450.560000pt;}
.x10_c01249{left:458.880000pt;}
.x28_c01249{left:460.160000pt;}
.x40_c01249{left:469.760000pt;}
.x9_c01249{left:478.080000pt;}
.x4f_c01249{left:480.000000pt;}
.x1f_c01249{left:487.680000pt;}
.x11_c01249{left:488.960000pt;}
.x43_c01249{left:499.200000pt;}
.x16_c01249{left:508.160000pt;}
.xa_c01249{left:516.480000pt;}
.x39_c01249{left:518.400000pt;}
.x24_c01249{left:527.360000pt;}
.x5e_c01249{left:528.640000pt;}
.x17_c01249{left:536.960000pt;}
.x41_c01249{left:545.920000pt;}
.x29_c01249{left:547.200000pt;}
.x20_c01249{left:555.520000pt;}
.x4b_c01249{left:556.800000pt;}
.x33_c01249{left:565.120000pt;}
.x47_c01249{left:566.400000pt;}
.x2a_c01249{left:575.360000pt;}
.x1_c01249{left:583.680000pt;}
.x4c_c01249{left:585.600000pt;}
.x25_c01249{left:594.560000pt;}
.x58_c01249{left:596.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_c01250 {
    display:none;
  }
  .loading-indicator_c01250.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01250 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01250 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01250" -> "#page-container .classname_c01250")
 */
.pf_c01250 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01250 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01250.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01250 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01250 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01250 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01250 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01250 {overflow:visible;}
  }
}
.c_c01250 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01250 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01250:after { /* webkit #35443 */
  content: '';
}
.t_c01250:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01250 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01250 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01250 { /* info for Javascript */
  display:none;
}
.l_c01250 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01250 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01250 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01250:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01250{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01250;src:url('chunks/assets/font_5595823afaa25283866f8cad.woff2')format("woff");}.ff1_c01250{font-family:ff1_c01250;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m50_c01250{transform:matrix(0.216925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216925,0.000000,0.000000,0.250000,0,0);}
.m32_c01250{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);}
.m4e_c01250{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m16_c01250{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);}
.m3f_c01250{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);}
.m33_c01250{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);}
.m4f_c01250{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);}
.m4a_c01250{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);}
.m2f_c01250{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m52_c01250{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01250{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01250{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m2_c01250{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m53_c01250{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m57_c01250{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m51_c01250{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m18_c01250{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m49_c01250{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m58_c01250{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);}
.m54_c01250{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);}
.m40_c01250{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);}
.m25_c01250{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01250{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m23_c01250{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m34_c01250{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m9_c01250{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);}
.m29_c01250{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m0_c01250{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);}
.m42_c01250{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m20_c01250{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.ma_c01250{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);}
.m46_c01250{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m17_c01250{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);}
.m3d_c01250{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01250{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);}
.mb_c01250{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m1_c01250{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);}
.m37_c01250{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m45_c01250{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m31_c01250{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m43_c01250{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.mf_c01250{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m5_c01250{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01250{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);}
.m24_c01250{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);}
.m4_c01250{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01250{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m8_c01250{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m22_c01250{transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);}
.m14_c01250{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01250{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m19_c01250{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);}
.m3b_c01250{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);}
.m4c_c01250{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01250{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.mc_c01250{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);}
.me_c01250{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01250{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01250{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);}
.m2e_c01250{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m27_c01250{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m36_c01250{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m48_c01250{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m21_c01250{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m55_c01250{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);}
.m59_c01250{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m47_c01250{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m41_c01250{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);}
.m39_c01250{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01250{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m38_c01250{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m35_c01250{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_c01250{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m28_c01250{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01250{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m11_c01250{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m6_c01250{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);}
.m44_c01250{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m12_c01250{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.md_c01250{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m30_c01250{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);}
.m26_c01250{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);}
.m3a_c01250{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m3_c01250{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m7_c01250{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);}
.m3c_c01250{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01250{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m56_c01250{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m10_c01250{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m15_c01250{transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);}
.v1_c01250{vertical-align:-8.640000px;}
.v4_c01250{vertical-align:-2.880000px;}
.v0_c01250{vertical-align:0.000000px;}
.v3_c01250{vertical-align:8.640000px;}
.v2_c01250{vertical-align:11.520000px;}
.ls0_c01250{letter-spacing:0.000000px;}
.sc__c01250{text-shadow:none;}
.sc0_c01250{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01250{-webkit-text-stroke:0px transparent;}
.sc0_c01250{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01250{word-spacing:-5.947440px;}
.ws0_c01250{word-spacing:-5.180400px;}
.ws5_c01250{word-spacing:0.000000px;}
.ws1_c01250{word-spacing:0.687360px;}
.ws4_c01250{word-spacing:2.489040px;}
.ws3_c01250{word-spacing:4.894800px;}
.fc0_c01250{color:transparent;}
.fs3_c01250{font-size:31.680000px;}
.fs6_c01250{font-size:34.560000px;}
.fsf_c01250{font-size:40.320000px;}
.fs1_c01250{font-size:43.200000px;}
.fs4_c01250{font-size:46.080000px;}
.fs9_c01250{font-size:48.960000px;}
.fsd_c01250{font-size:51.840000px;}
.fs5_c01250{font-size:54.720000px;}
.fs7_c01250{font-size:57.600000px;}
.fs8_c01250{font-size:60.480000px;}
.fsa_c01250{font-size:63.360000px;}
.fsb_c01250{font-size:66.240000px;}
.fs2_c01250{font-size:69.120000px;}
.fs0_c01250{font-size:72.000000px;}
.fsc_c01250{font-size:77.760000px;}
.fse_c01250{font-size:86.400000px;}
.y0_c01250{bottom:0.000000px;}
.y82_c01250{bottom:93.600000px;}
.y84_c01250{bottom:95.760000px;}
.y83_c01250{bottom:96.480000px;}
.y81_c01250{bottom:97.920000px;}
.y80_c01250{bottom:100.800000px;}
.y7f_c01250{bottom:103.680000px;}
.y7e_c01250{bottom:105.120000px;}
.y7c_c01250{bottom:136.800000px;}
.y7d_c01250{bottom:138.240000px;}
.y7b_c01250{bottom:138.960000px;}
.y7a_c01250{bottom:141.120000px;}
.y79_c01250{bottom:146.880000px;}
.y78_c01250{bottom:177.840000px;}
.y77_c01250{bottom:179.280000px;}
.y75_c01250{bottom:182.160000px;}
.y76_c01250{bottom:182.880000px;}
.y74_c01250{bottom:183.600000px;}
.y72_c01250{bottom:184.320000px;}
.y73_c01250{bottom:185.760000px;}
.y6e_c01250{bottom:222.480000px;}
.y71_c01250{bottom:223.920000px;}
.y70_c01250{bottom:224.640000px;}
.y6f_c01250{bottom:225.360000px;}
.y6d_c01250{bottom:228.240000px;}
.y6c_c01250{bottom:228.960000px;}
.y6b_c01250{bottom:232.560000px;}
.y6a_c01250{bottom:264.240000px;}
.y68_c01250{bottom:264.960000px;}
.y67_c01250{bottom:266.400000px;}
.y66_c01250{bottom:267.120000px;}
.y69_c01250{bottom:267.840000px;}
.y65_c01250{bottom:270.720000px;}
.y63_c01250{bottom:306.720000px;}
.y62_c01250{bottom:307.440000px;}
.y60_c01250{bottom:308.160000px;}
.y61_c01250{bottom:308.880000px;}
.y5d_c01250{bottom:309.600000px;}
.y64_c01250{bottom:310.320000px;}
.y5f_c01250{bottom:311.040000px;}
.y5e_c01250{bottom:311.760000px;}
.y5c_c01250{bottom:315.360000px;}
.y5a_c01250{bottom:350.640000px;}
.y58_c01250{bottom:352.080000px;}
.y5b_c01250{bottom:352.800000px;}
.y59_c01250{bottom:353.520000px;}
.y57_c01250{bottom:355.680000px;}
.y56_c01250{bottom:357.840000px;}
.y55_c01250{bottom:393.120000px;}
.y51_c01250{bottom:396.000000px;}
.y54_c01250{bottom:396.720000px;}
.y53_c01250{bottom:397.440000px;}
.y52_c01250{bottom:398.160000px;}
.y50_c01250{bottom:399.600000px;}
.y4f_c01250{bottom:435.600000px;}
.y4e_c01250{bottom:436.320000px;}
.y4b_c01250{bottom:438.480000px;}
.y4c_c01250{bottom:439.200000px;}
.y4d_c01250{bottom:439.920000px;}
.y4a_c01250{bottom:443.520000px;}
.y47_c01250{bottom:480.960000px;}
.y46_c01250{bottom:481.680000px;}
.y48_c01250{bottom:482.400000px;}
.y49_c01250{bottom:483.120000px;}
.y44_c01250{bottom:484.560000px;}
.y45_c01250{bottom:485.280000px;}
.y41_c01250{bottom:522.720000px;}
.y42_c01250{bottom:523.440000px;}
.y3e_c01250{bottom:524.160000px;}
.y43_c01250{bottom:525.600000px;}
.y40_c01250{bottom:526.320000px;}
.y3f_c01250{bottom:527.040000px;}
.y3d_c01250{bottom:527.760000px;}
.y3c_c01250{bottom:565.920000px;}
.y3a_c01250{bottom:568.800000px;}
.y3b_c01250{bottom:570.240000px;}
.y39_c01250{bottom:609.120000px;}
.y38_c01250{bottom:609.840000px;}
.y37_c01250{bottom:611.280000px;}
.y35_c01250{bottom:612.000000px;}
.y36_c01250{bottom:612.720000px;}
.y34_c01250{bottom:651.600000px;}
.y33_c01250{bottom:652.320000px;}
.y32_c01250{bottom:654.480000px;}
.y31_c01250{bottom:655.200000px;}
.y30_c01250{bottom:694.080000px;}
.y2e_c01250{bottom:694.800000px;}
.y2d_c01250{bottom:695.520000px;}
.y2c_c01250{bottom:696.960000px;}
.y2b_c01250{bottom:697.680000px;}
.y2f_c01250{bottom:698.400000px;}
.y29_c01250{bottom:737.280000px;}
.y2a_c01250{bottom:738.000000px;}
.y28_c01250{bottom:740.160000px;}
.y25_c01250{bottom:779.760000px;}
.y26_c01250{bottom:780.480000px;}
.y24_c01250{bottom:782.640000px;}
.y27_c01250{bottom:783.360000px;}
.y22_c01250{bottom:822.960000px;}
.y21_c01250{bottom:825.120000px;}
.y20_c01250{bottom:825.840000px;}
.y23_c01250{bottom:826.560000px;}
.y1e_c01250{bottom:876.240000px;}
.y1f_c01250{bottom:876.960000px;}
.y1b_c01250{bottom:877.680000px;}
.y1c_c01250{bottom:878.400000px;}
.y1d_c01250{bottom:879.120000px;}
.y15_c01250{bottom:918.000000px;}
.y19_c01250{bottom:918.720000px;}
.y16_c01250{bottom:919.440000px;}
.y14_c01250{bottom:920.160000px;}
.y17_c01250{bottom:920.880000px;}
.y18_c01250{bottom:921.600000px;}
.y1a_c01250{bottom:922.320000px;}
.y10_c01250{bottom:960.480000px;}
.ye_c01250{bottom:961.920000px;}
.yf_c01250{bottom:963.360000px;}
.y11_c01250{bottom:964.800000px;}
.y12_c01250{bottom:965.520000px;}
.y13_c01250{bottom:966.240000px;}
.y8_c01250{bottom:1002.240000px;}
.y9_c01250{bottom:1003.680000px;}
.ya_c01250{bottom:1004.400000px;}
.yb_c01250{bottom:1008.000000px;}
.yc_c01250{bottom:1008.720000px;}
.yd_c01250{bottom:1009.440000px;}
.y3_c01250{bottom:1047.600000px;}
.y2_c01250{bottom:1049.040000px;}
.y6_c01250{bottom:1049.760000px;}
.y4_c01250{bottom:1051.200000px;}
.y5_c01250{bottom:1051.920000px;}
.y7_c01250{bottom:1052.640000px;}
.y1_c01250{bottom:1101.600000px;}
.h5_c01250{height:28.508906px;}
.h8_c01250{height:31.100625px;}
.h13_c01250{height:36.284062px;}
.h3_c01250{height:38.875781px;}
.h6_c01250{height:41.467500px;}
.ha_c01250{height:44.059219px;}
.h10_c01250{height:46.650937px;}
.h7_c01250{height:49.242656px;}
.h11_c01250{height:50.107500px;}
.h9_c01250{height:51.834375px;}
.hb_c01250{height:54.426094px;}
.hd_c01250{height:55.579219px;}
.hc_c01250{height:57.017812px;}
.he_c01250{height:59.609531px;}
.h4_c01250{height:62.201250px;}
.h2_c01250{height:64.792969px;}
.hf_c01250{height:69.976406px;}
.h12_c01250{height:77.751563px;}
.h1_c01250{height:1162.500000px;}
.h0_c01250{height:1162.800000px;}
.w1_c01250{width:787.500000px;}
.w0_c01250{width:787.680000px;}
.x0_c01250{left:0.000000px;}
.x2_c01250{left:66.960000px;}
.x32_c01250{left:68.400000px;}
.x1e_c01250{left:69.840000px;}
.x3_c01250{left:96.480000px;}
.x3a_c01250{left:98.640000px;}
.x3d_c01250{left:107.280000px;}
.x4a_c01250{left:109.440000px;}
.xa_c01250{left:116.640000px;}
.x44_c01250{left:118.800000px;}
.x10_c01250{left:127.440000px;}
.x36_c01250{left:138.240000px;}
.x43_c01250{left:139.680000px;}
.x33_c01250{left:147.600000px;}
.x19_c01250{left:149.040000px;}
.xb_c01250{left:159.840000px;}
.x23_c01250{left:169.200000px;}
.x37_c01250{left:170.640000px;}
.x2d_c01250{left:181.440000px;}
.x40_c01250{left:191.520000px;}
.x24_c01250{left:200.880000px;}
.x45_c01250{left:203.040000px;}
.x48_c01250{left:205.200000px;}
.x1a_c01250{left:212.400000px;}
.x1f_c01250{left:223.920000px;}
.x11_c01250{left:233.280000px;}
.x4_c01250{left:245.520000px;}
.x2a_c01250{left:254.880000px;}
.x5_c01250{left:276.480000px;}
.x1b_c01250{left:277.920000px;}
.x46_c01250{left:287.280000px;}
.xc_c01250{left:298.080000px;}
.x12_c01250{left:319.680000px;}
.x47_c01250{left:321.120000px;}
.x6_c01250{left:330.480000px;}
.x20_c01250{left:341.280000px;}
.x38_c01250{left:342.720000px;}
.x13_c01250{left:352.800000px;}
.x28_c01250{left:362.880000px;}
.x2e_c01250{left:373.680000px;}
.x21_c01250{left:375.840000px;}
.xd_c01250{left:385.200000px;}
.x14_c01250{left:396.000000px;}
.x29_c01250{left:406.800000px;}
.x7_c01250{left:417.600000px;}
.x15_c01250{left:429.120000px;}
.x49_c01250{left:440.640000px;}
.x8_c01250{left:450.000000px;}
.x4b_c01250{left:451.440000px;}
.x41_c01250{left:461.520000px;}
.x3b_c01250{left:472.320000px;}
.x9_c01250{left:483.120000px;}
.x16_c01250{left:493.200000px;}
.x22_c01250{left:494.640000px;}
.x25_c01250{left:504.720000px;}
.x3e_c01250{left:514.800000px;}
.xe_c01250{left:525.600000px;}
.x1c_c01250{left:527.040000px;}
.x26_c01250{left:537.840000px;}
.x2f_c01250{left:548.640000px;}
.x17_c01250{left:559.440000px;}
.xf_c01250{left:570.240000px;}
.x2b_c01250{left:581.040000px;}
.x30_c01250{left:582.480000px;}
.x3f_c01250{left:591.840000px;}
.x3c_c01250{left:602.640000px;}
.x18_c01250{left:612.720000px;}
.x4c_c01250{left:614.160000px;}
.x42_c01250{left:617.040000px;}
.x2c_c01250{left:624.960000px;}
.x34_c01250{left:635.040000px;}
.x1_c01250{left:645.120000px;}
.x1d_c01250{left:656.640000px;}
.x39_c01250{left:668.160000px;}
.x35_c01250{left:678.240000px;}
.x27_c01250{left:689.760000px;}
.x31_c01250{left:691.200000px;}
@media print{
.v1_c01250{vertical-align:-7.680000pt;}
.v4_c01250{vertical-align:-2.560000pt;}
.v0_c01250{vertical-align:0.000000pt;}
.v3_c01250{vertical-align:7.680000pt;}
.v2_c01250{vertical-align:10.240000pt;}
.ls0_c01250{letter-spacing:0.000000pt;}
.ws2_c01250{word-spacing:-5.286613pt;}
.ws0_c01250{word-spacing:-4.604800pt;}
.ws5_c01250{word-spacing:0.000000pt;}
.ws1_c01250{word-spacing:0.610987pt;}
.ws4_c01250{word-spacing:2.212480pt;}
.ws3_c01250{word-spacing:4.350933pt;}
.fs3_c01250{font-size:28.160000pt;}
.fs6_c01250{font-size:30.720000pt;}
.fsf_c01250{font-size:35.840000pt;}
.fs1_c01250{font-size:38.400000pt;}
.fs4_c01250{font-size:40.960000pt;}
.fs9_c01250{font-size:43.520000pt;}
.fsd_c01250{font-size:46.080000pt;}
.fs5_c01250{font-size:48.640000pt;}
.fs7_c01250{font-size:51.200000pt;}
.fs8_c01250{font-size:53.760000pt;}
.fsa_c01250{font-size:56.320000pt;}
.fsb_c01250{font-size:58.880000pt;}
.fs2_c01250{font-size:61.440000pt;}
.fs0_c01250{font-size:64.000000pt;}
.fsc_c01250{font-size:69.120000pt;}
.fse_c01250{font-size:76.800000pt;}
.y0_c01250{bottom:0.000000pt;}
.y82_c01250{bottom:83.200000pt;}
.y84_c01250{bottom:85.120000pt;}
.y83_c01250{bottom:85.760000pt;}
.y81_c01250{bottom:87.040000pt;}
.y80_c01250{bottom:89.600000pt;}
.y7f_c01250{bottom:92.160000pt;}
.y7e_c01250{bottom:93.440000pt;}
.y7c_c01250{bottom:121.600000pt;}
.y7d_c01250{bottom:122.880000pt;}
.y7b_c01250{bottom:123.520000pt;}
.y7a_c01250{bottom:125.440000pt;}
.y79_c01250{bottom:130.560000pt;}
.y78_c01250{bottom:158.080000pt;}
.y77_c01250{bottom:159.360000pt;}
.y75_c01250{bottom:161.920000pt;}
.y76_c01250{bottom:162.560000pt;}
.y74_c01250{bottom:163.200000pt;}
.y72_c01250{bottom:163.840000pt;}
.y73_c01250{bottom:165.120000pt;}
.y6e_c01250{bottom:197.760000pt;}
.y71_c01250{bottom:199.040000pt;}
.y70_c01250{bottom:199.680000pt;}
.y6f_c01250{bottom:200.320000pt;}
.y6d_c01250{bottom:202.880000pt;}
.y6c_c01250{bottom:203.520000pt;}
.y6b_c01250{bottom:206.720000pt;}
.y6a_c01250{bottom:234.880000pt;}
.y68_c01250{bottom:235.520000pt;}
.y67_c01250{bottom:236.800000pt;}
.y66_c01250{bottom:237.440000pt;}
.y69_c01250{bottom:238.080000pt;}
.y65_c01250{bottom:240.640000pt;}
.y63_c01250{bottom:272.640000pt;}
.y62_c01250{bottom:273.280000pt;}
.y60_c01250{bottom:273.920000pt;}
.y61_c01250{bottom:274.560000pt;}
.y5d_c01250{bottom:275.200000pt;}
.y64_c01250{bottom:275.840000pt;}
.y5f_c01250{bottom:276.480000pt;}
.y5e_c01250{bottom:277.120000pt;}
.y5c_c01250{bottom:280.320000pt;}
.y5a_c01250{bottom:311.680000pt;}
.y58_c01250{bottom:312.960000pt;}
.y5b_c01250{bottom:313.600000pt;}
.y59_c01250{bottom:314.240000pt;}
.y57_c01250{bottom:316.160000pt;}
.y56_c01250{bottom:318.080000pt;}
.y55_c01250{bottom:349.440000pt;}
.y51_c01250{bottom:352.000000pt;}
.y54_c01250{bottom:352.640000pt;}
.y53_c01250{bottom:353.280000pt;}
.y52_c01250{bottom:353.920000pt;}
.y50_c01250{bottom:355.200000pt;}
.y4f_c01250{bottom:387.200000pt;}
.y4e_c01250{bottom:387.840000pt;}
.y4b_c01250{bottom:389.760000pt;}
.y4c_c01250{bottom:390.400000pt;}
.y4d_c01250{bottom:391.040000pt;}
.y4a_c01250{bottom:394.240000pt;}
.y47_c01250{bottom:427.520000pt;}
.y46_c01250{bottom:428.160000pt;}
.y48_c01250{bottom:428.800000pt;}
.y49_c01250{bottom:429.440000pt;}
.y44_c01250{bottom:430.720000pt;}
.y45_c01250{bottom:431.360000pt;}
.y41_c01250{bottom:464.640000pt;}
.y42_c01250{bottom:465.280000pt;}
.y3e_c01250{bottom:465.920000pt;}
.y43_c01250{bottom:467.200000pt;}
.y40_c01250{bottom:467.840000pt;}
.y3f_c01250{bottom:468.480000pt;}
.y3d_c01250{bottom:469.120000pt;}
.y3c_c01250{bottom:503.040000pt;}
.y3a_c01250{bottom:505.600000pt;}
.y3b_c01250{bottom:506.880000pt;}
.y39_c01250{bottom:541.440000pt;}
.y38_c01250{bottom:542.080000pt;}
.y37_c01250{bottom:543.360000pt;}
.y35_c01250{bottom:544.000000pt;}
.y36_c01250{bottom:544.640000pt;}
.y34_c01250{bottom:579.200000pt;}
.y33_c01250{bottom:579.840000pt;}
.y32_c01250{bottom:581.760000pt;}
.y31_c01250{bottom:582.400000pt;}
.y30_c01250{bottom:616.960000pt;}
.y2e_c01250{bottom:617.600000pt;}
.y2d_c01250{bottom:618.240000pt;}
.y2c_c01250{bottom:619.520000pt;}
.y2b_c01250{bottom:620.160000pt;}
.y2f_c01250{bottom:620.800000pt;}
.y29_c01250{bottom:655.360000pt;}
.y2a_c01250{bottom:656.000000pt;}
.y28_c01250{bottom:657.920000pt;}
.y25_c01250{bottom:693.120000pt;}
.y26_c01250{bottom:693.760000pt;}
.y24_c01250{bottom:695.680000pt;}
.y27_c01250{bottom:696.320000pt;}
.y22_c01250{bottom:731.520000pt;}
.y21_c01250{bottom:733.440000pt;}
.y20_c01250{bottom:734.080000pt;}
.y23_c01250{bottom:734.720000pt;}
.y1e_c01250{bottom:778.880000pt;}
.y1f_c01250{bottom:779.520000pt;}
.y1b_c01250{bottom:780.160000pt;}
.y1c_c01250{bottom:780.800000pt;}
.y1d_c01250{bottom:781.440000pt;}
.y15_c01250{bottom:816.000000pt;}
.y19_c01250{bottom:816.640000pt;}
.y16_c01250{bottom:817.280000pt;}
.y14_c01250{bottom:817.920000pt;}
.y17_c01250{bottom:818.560000pt;}
.y18_c01250{bottom:819.200000pt;}
.y1a_c01250{bottom:819.840000pt;}
.y10_c01250{bottom:853.760000pt;}
.ye_c01250{bottom:855.040000pt;}
.yf_c01250{bottom:856.320000pt;}
.y11_c01250{bottom:857.600000pt;}
.y12_c01250{bottom:858.240000pt;}
.y13_c01250{bottom:858.880000pt;}
.y8_c01250{bottom:890.880000pt;}
.y9_c01250{bottom:892.160000pt;}
.ya_c01250{bottom:892.800000pt;}
.yb_c01250{bottom:896.000000pt;}
.yc_c01250{bottom:896.640000pt;}
.yd_c01250{bottom:897.280000pt;}
.y3_c01250{bottom:931.200000pt;}
.y2_c01250{bottom:932.480000pt;}
.y6_c01250{bottom:933.120000pt;}
.y4_c01250{bottom:934.400000pt;}
.y5_c01250{bottom:935.040000pt;}
.y7_c01250{bottom:935.680000pt;}
.y1_c01250{bottom:979.200000pt;}
.h5_c01250{height:25.341250pt;}
.h8_c01250{height:27.645000pt;}
.h13_c01250{height:32.252500pt;}
.h3_c01250{height:34.556250pt;}
.h6_c01250{height:36.860000pt;}
.ha_c01250{height:39.163750pt;}
.h10_c01250{height:41.467500pt;}
.h7_c01250{height:43.771250pt;}
.h11_c01250{height:44.540000pt;}
.h9_c01250{height:46.075000pt;}
.hb_c01250{height:48.378750pt;}
.hd_c01250{height:49.403750pt;}
.hc_c01250{height:50.682500pt;}
.he_c01250{height:52.986250pt;}
.h4_c01250{height:55.290000pt;}
.h2_c01250{height:57.593750pt;}
.hf_c01250{height:62.201250pt;}
.h12_c01250{height:69.112500pt;}
.h1_c01250{height:1033.333333pt;}
.h0_c01250{height:1033.600000pt;}
.w1_c01250{width:700.000000pt;}
.w0_c01250{width:700.160000pt;}
.x0_c01250{left:0.000000pt;}
.x2_c01250{left:59.520000pt;}
.x32_c01250{left:60.800000pt;}
.x1e_c01250{left:62.080000pt;}
.x3_c01250{left:85.760000pt;}
.x3a_c01250{left:87.680000pt;}
.x3d_c01250{left:95.360000pt;}
.x4a_c01250{left:97.280000pt;}
.xa_c01250{left:103.680000pt;}
.x44_c01250{left:105.600000pt;}
.x10_c01250{left:113.280000pt;}
.x36_c01250{left:122.880000pt;}
.x43_c01250{left:124.160000pt;}
.x33_c01250{left:131.200000pt;}
.x19_c01250{left:132.480000pt;}
.xb_c01250{left:142.080000pt;}
.x23_c01250{left:150.400000pt;}
.x37_c01250{left:151.680000pt;}
.x2d_c01250{left:161.280000pt;}
.x40_c01250{left:170.240000pt;}
.x24_c01250{left:178.560000pt;}
.x45_c01250{left:180.480000pt;}
.x48_c01250{left:182.400000pt;}
.x1a_c01250{left:188.800000pt;}
.x1f_c01250{left:199.040000pt;}
.x11_c01250{left:207.360000pt;}
.x4_c01250{left:218.240000pt;}
.x2a_c01250{left:226.560000pt;}
.x5_c01250{left:245.760000pt;}
.x1b_c01250{left:247.040000pt;}
.x46_c01250{left:255.360000pt;}
.xc_c01250{left:264.960000pt;}
.x12_c01250{left:284.160000pt;}
.x47_c01250{left:285.440000pt;}
.x6_c01250{left:293.760000pt;}
.x20_c01250{left:303.360000pt;}
.x38_c01250{left:304.640000pt;}
.x13_c01250{left:313.600000pt;}
.x28_c01250{left:322.560000pt;}
.x2e_c01250{left:332.160000pt;}
.x21_c01250{left:334.080000pt;}
.xd_c01250{left:342.400000pt;}
.x14_c01250{left:352.000000pt;}
.x29_c01250{left:361.600000pt;}
.x7_c01250{left:371.200000pt;}
.x15_c01250{left:381.440000pt;}
.x49_c01250{left:391.680000pt;}
.x8_c01250{left:400.000000pt;}
.x4b_c01250{left:401.280000pt;}
.x41_c01250{left:410.240000pt;}
.x3b_c01250{left:419.840000pt;}
.x9_c01250{left:429.440000pt;}
.x16_c01250{left:438.400000pt;}
.x22_c01250{left:439.680000pt;}
.x25_c01250{left:448.640000pt;}
.x3e_c01250{left:457.600000pt;}
.xe_c01250{left:467.200000pt;}
.x1c_c01250{left:468.480000pt;}
.x26_c01250{left:478.080000pt;}
.x2f_c01250{left:487.680000pt;}
.x17_c01250{left:497.280000pt;}
.xf_c01250{left:506.880000pt;}
.x2b_c01250{left:516.480000pt;}
.x30_c01250{left:517.760000pt;}
.x3f_c01250{left:526.080000pt;}
.x3c_c01250{left:535.680000pt;}
.x18_c01250{left:544.640000pt;}
.x4c_c01250{left:545.920000pt;}
.x42_c01250{left:548.480000pt;}
.x2c_c01250{left:555.520000pt;}
.x34_c01250{left:564.480000pt;}
.x1_c01250{left:573.440000pt;}
.x1d_c01250{left:583.680000pt;}
.x39_c01250{left:593.920000pt;}
.x35_c01250{left:602.880000pt;}
.x27_c01250{left:613.120000pt;}
.x31_c01250{left:614.400000pt;}
}





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

.ir_c01251:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01251{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01251;src:url('chunks/assets/font_d788dcc2fa6b94b1ab7616cd.woff2')format("woff");}.ff1_c01251{font-family:ff1_c01251;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3b_c01251{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m50_c01251{transform:matrix(0.223025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223025,0.000000,0.000000,0.250000,0,0);}
.m1_c01251{transform:matrix(0.234325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234325,0.000000,0.000000,0.250000,0,0);}
.m67_c01251{transform:matrix(0.239075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239075,0.000000,0.000000,0.250000,0,0);}
.m5b_c01251{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m7_c01251{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);}
.m6a_c01251{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);}
.m58_c01251{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);}
.m65_c01251{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m6c_c01251{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);}
.m3c_c01251{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m27_c01251{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01251{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m63_c01251{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2_c01251{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01251{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m6_c01251{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m8_c01251{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m22_c01251{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01251{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m34_c01251{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01251{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m6d_c01251{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m68_c01251{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m15_c01251{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);}
.m54_c01251{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m53_c01251{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);}
.m46_c01251{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_c01251{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m0_c01251{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);}
.m21_c01251{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m43_c01251{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_c01251{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m5a_c01251{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m18_c01251{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m26_c01251{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);}
.m30_c01251{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);}
.m52_c01251{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m41_c01251{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m35_c01251{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);}
.m51_c01251{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);}
.m5f_c01251{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);}
.m38_c01251{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.mb_c01251{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);}
.m2d_c01251{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m37_c01251{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);}
.m56_c01251{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);}
.m13_c01251{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);}
.ma_c01251{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m11_c01251{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m55_c01251{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01251{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);}
.m29_c01251{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m5_c01251{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);}
.m42_c01251{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m5e_c01251{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);}
.m12_c01251{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);}
.m2c_c01251{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m19_c01251{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m24_c01251{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m36_c01251{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.mc_c01251{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);}
.m2b_c01251{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m45_c01251{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m25_c01251{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);}
.m60_c01251{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01251{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);}
.md_c01251{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m62_c01251{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01251{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m9_c01251{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);}
.m47_c01251{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m66_c01251{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m64_c01251{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m32_c01251{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);}
.m4d_c01251{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m17_c01251{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01251{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m49_c01251{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m31_c01251{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);}
.m61_c01251{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);}
.me_c01251{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m16_c01251{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01251{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);}
.m33_c01251{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m4_c01251{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m59_c01251{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m48_c01251{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);}
.m2e_c01251{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m23_c01251{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m4f_c01251{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01251{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);}
.m5d_c01251{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m57_c01251{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);}
.m2a_c01251{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m20_c01251{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);}
.m40_c01251{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m6b_c01251{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m5c_c01251{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m28_c01251{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01251{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01251{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m44_c01251{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);}
.m3_c01251{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m10_c01251{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.mf_c01251{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m39_c01251{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01251{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01251{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.m69_c01251{transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);}
.v1_c01251{vertical-align:-5.760000px;}
.v3_c01251{vertical-align:-2.880000px;}
.v0_c01251{vertical-align:0.000000px;}
.v2_c01251{vertical-align:8.640000px;}
.ls0_c01251{letter-spacing:0.000000px;}
.sc__c01251{text-shadow:none;}
.sc0_c01251{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01251{-webkit-text-stroke:0px transparent;}
.sc0_c01251{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01251{word-spacing:0.000000px;}
.ws1_c01251{word-spacing:0.738720px;}
.ws2_c01251{word-spacing:2.736000px;}
.ws0_c01251{word-spacing:7.642800px;}
.fc0_c01251{color:transparent;}
.fs3_c01251{font-size:34.560000px;}
.fse_c01251{font-size:37.440000px;}
.fsb_c01251{font-size:43.200000px;}
.fs7_c01251{font-size:46.080000px;}
.fs4_c01251{font-size:48.960000px;}
.fs9_c01251{font-size:51.840000px;}
.fs8_c01251{font-size:54.720000px;}
.fsd_c01251{font-size:57.600000px;}
.fs2_c01251{font-size:60.480000px;}
.fsa_c01251{font-size:63.360000px;}
.fs5_c01251{font-size:66.240000px;}
.fs6_c01251{font-size:69.120000px;}
.fs0_c01251{font-size:77.760000px;}
.fs1_c01251{font-size:80.640000px;}
.fsf_c01251{font-size:83.520000px;}
.fsc_c01251{font-size:92.160000px;}
.y0_c01251{bottom:0.000000px;}
.y8d_c01251{bottom:47.520000px;}
.y8b_c01251{bottom:48.960000px;}
.y8a_c01251{bottom:49.680000px;}
.y89_c01251{bottom:51.120000px;}
.y8c_c01251{bottom:51.840000px;}
.y88_c01251{bottom:54.000000px;}
.y87_c01251{bottom:56.880000px;}
.y86_c01251{bottom:58.320000px;}
.y85_c01251{bottom:91.440000px;}
.y83_c01251{bottom:92.880000px;}
.y80_c01251{bottom:93.600000px;}
.y84_c01251{bottom:94.320000px;}
.y82_c01251{bottom:95.040000px;}
.y81_c01251{bottom:95.760000px;}
.y7e_c01251{bottom:96.480000px;}
.y7f_c01251{bottom:97.200000px;}
.y7d_c01251{bottom:100.080000px;}
.y7c_c01251{bottom:135.360000px;}
.y7b_c01251{bottom:138.240000px;}
.y7a_c01251{bottom:139.680000px;}
.y78_c01251{bottom:141.120000px;}
.y79_c01251{bottom:141.840000px;}
.y75_c01251{bottom:178.560000px;}
.y74_c01251{bottom:179.280000px;}
.y77_c01251{bottom:180.000000px;}
.y76_c01251{bottom:181.440000px;}
.y73_c01251{bottom:182.160000px;}
.y72_c01251{bottom:184.320000px;}
.y70_c01251{bottom:185.040000px;}
.y71_c01251{bottom:187.200000px;}
.y6f_c01251{bottom:220.320000px;}
.y6e_c01251{bottom:221.760000px;}
.y6b_c01251{bottom:223.200000px;}
.y6d_c01251{bottom:223.920000px;}
.y6c_c01251{bottom:224.640000px;}
.y6a_c01251{bottom:229.680000px;}
.y69_c01251{bottom:264.240000px;}
.y65_c01251{bottom:265.680000px;}
.y68_c01251{bottom:266.400000px;}
.y67_c01251{bottom:267.120000px;}
.y66_c01251{bottom:267.840000px;}
.y64_c01251{bottom:270.720000px;}
.y63_c01251{bottom:307.440000px;}
.y61_c01251{bottom:308.880000px;}
.y62_c01251{bottom:309.600000px;}
.y60_c01251{bottom:311.760000px;}
.y5c_c01251{bottom:362.880000px;}
.y5f_c01251{bottom:363.600000px;}
.y5e_c01251{bottom:364.320000px;}
.y5d_c01251{bottom:365.040000px;}
.y5b_c01251{bottom:367.200000px;}
.y5a_c01251{bottom:375.120000px;}
.y57_c01251{bottom:403.920000px;}
.y56_c01251{bottom:405.360000px;}
.y59_c01251{bottom:406.080000px;}
.y58_c01251{bottom:406.800000px;}
.y55_c01251{bottom:408.240000px;}
.y53_c01251{bottom:446.400000px;}
.y50_c01251{bottom:448.560000px;}
.y54_c01251{bottom:449.280000px;}
.y52_c01251{bottom:450.000000px;}
.y51_c01251{bottom:450.720000px;}
.y4c_c01251{bottom:488.880000px;}
.y4f_c01251{bottom:489.600000px;}
.y4e_c01251{bottom:491.040000px;}
.y4d_c01251{bottom:491.760000px;}
.y4b_c01251{bottom:492.480000px;}
.y4a_c01251{bottom:501.840000px;}
.y49_c01251{bottom:531.360000px;}
.y46_c01251{bottom:532.080000px;}
.y48_c01251{bottom:534.240000px;}
.y47_c01251{bottom:534.960000px;}
.y45_c01251{bottom:535.680000px;}
.y43_c01251{bottom:574.560000px;}
.y40_c01251{bottom:575.280000px;}
.y44_c01251{bottom:576.000000px;}
.y42_c01251{bottom:577.440000px;}
.y41_c01251{bottom:578.160000px;}
.y3c_c01251{bottom:617.040000px;}
.y3f_c01251{bottom:617.760000px;}
.y3d_c01251{bottom:619.920000px;}
.y3e_c01251{bottom:620.640000px;}
.y3a_c01251{bottom:660.240000px;}
.y38_c01251{bottom:660.960000px;}
.y37_c01251{bottom:662.400000px;}
.y39_c01251{bottom:663.120000px;}
.y3b_c01251{bottom:663.840000px;}
.y36_c01251{bottom:673.200000px;}
.y33_c01251{bottom:702.720000px;}
.y34_c01251{bottom:705.600000px;}
.y35_c01251{bottom:707.040000px;}
.y2f_c01251{bottom:746.640000px;}
.y32_c01251{bottom:747.360000px;}
.y2e_c01251{bottom:748.080000px;}
.y30_c01251{bottom:748.800000px;}
.y31_c01251{bottom:749.520000px;}
.y27_c01251{bottom:787.680000px;}
.y29_c01251{bottom:788.400000px;}
.y2d_c01251{bottom:789.120000px;}
.y28_c01251{bottom:790.560000px;}
.y2a_c01251{bottom:791.280000px;}
.y2b_c01251{bottom:792.000000px;}
.y2c_c01251{bottom:792.720000px;}
.y26_c01251{bottom:831.600000px;}
.y24_c01251{bottom:832.320000px;}
.y21_c01251{bottom:833.040000px;}
.y22_c01251{bottom:833.760000px;}
.y23_c01251{bottom:834.480000px;}
.y25_c01251{bottom:835.920000px;}
.y1b_c01251{bottom:873.360000px;}
.y1d_c01251{bottom:874.080000px;}
.y20_c01251{bottom:875.520000px;}
.y1c_c01251{bottom:876.240000px;}
.y1e_c01251{bottom:877.680000px;}
.y1f_c01251{bottom:878.400000px;}
.y16_c01251{bottom:915.840000px;}
.y15_c01251{bottom:917.280000px;}
.y18_c01251{bottom:918.000000px;}
.y19_c01251{bottom:918.720000px;}
.y17_c01251{bottom:920.880000px;}
.y1a_c01251{bottom:922.320000px;}
.yf_c01251{bottom:958.320000px;}
.y10_c01251{bottom:959.040000px;}
.ye_c01251{bottom:959.760000px;}
.y12_c01251{bottom:960.480000px;}
.y14_c01251{bottom:961.200000px;}
.y11_c01251{bottom:963.360000px;}
.y13_c01251{bottom:964.080000px;}
.y8_c01251{bottom:1002.240000px;}
.ya_c01251{bottom:1002.960000px;}
.yc_c01251{bottom:1003.680000px;}
.y9_c01251{bottom:1004.400000px;}
.yb_c01251{bottom:1005.840000px;}
.yd_c01251{bottom:1007.280000px;}
.y2_c01251{bottom:1042.560000px;}
.y3_c01251{bottom:1044.000000px;}
.y5_c01251{bottom:1046.160000px;}
.y6_c01251{bottom:1046.880000px;}
.y4_c01251{bottom:1048.320000px;}
.y7_c01251{bottom:1049.760000px;}
.y1_c01251{bottom:1100.160000px;}
.h5_c01251{height:31.100625px;}
.h10_c01251{height:33.692344px;}
.hd_c01251{height:38.875781px;}
.h9_c01251{height:41.467500px;}
.h6_c01251{height:44.059219px;}
.hb_c01251{height:46.650937px;}
.ha_c01251{height:49.242656px;}
.hf_c01251{height:51.834375px;}
.h12_c01251{height:54.137812px;}
.h4_c01251{height:54.426094px;}
.hc_c01251{height:57.017812px;}
.h7_c01251{height:59.609531px;}
.h8_c01251{height:62.201250px;}
.h2_c01251{height:69.976406px;}
.h3_c01251{height:72.568125px;}
.h11_c01251{height:75.159844px;}
.he_c01251{height:82.935000px;}
.h0_c01251{height:1156.320000px;}
.h1_c01251{height:1156.500000px;}
.w0_c01251{width:777.600000px;}
.w1_c01251{width:777.750000px;}
.x0_c01251{left:0.000000px;}
.x2c_c01251{left:64.800000px;}
.x2_c01251{left:66.240000px;}
.x5b_c01251{left:67.680000px;}
.x39_c01251{left:85.680000px;}
.x5f_c01251{left:87.120000px;}
.x2d_c01251{left:105.840000px;}
.x55_c01251{left:107.280000px;}
.x11_c01251{left:114.480000px;}
.x3d_c01251{left:115.920000px;}
.x60_c01251{left:117.360000px;}
.x1b_c01251{left:125.280000px;}
.x6a_c01251{left:127.440000px;}
.x5a_c01251{left:138.240000px;}
.x12_c01251{left:146.880000px;}
.x3a_c01251{left:148.320000px;}
.x34_c01251{left:157.680000px;}
.x4b_c01251{left:159.120000px;}
.x3_c01251{left:167.760000px;}
.x40_c01251{left:169.200000px;}
.xc_c01251{left:177.840000px;}
.x23_c01251{left:179.280000px;}
.x64_c01251{left:180.720000px;}
.x35_c01251{left:190.080000px;}
.x3c_c01251{left:198.720000px;}
.x13_c01251{left:200.160000px;}
.x4_c01251{left:209.520000px;}
.x56_c01251{left:211.680000px;}
.x3b_c01251{left:221.760000px;}
.x24_c01251{left:232.560000px;}
.x41_c01251{left:242.640000px;}
.x5_c01251{left:252.720000px;}
.x2e_c01251{left:254.160000px;}
.x6b_c01251{left:257.040000px;}
.x47_c01251{left:264.240000px;}
.x51_c01251{left:265.680000px;}
.x28_c01251{left:274.320000px;}
.x42_c01251{left:275.760000px;}
.x57_c01251{left:277.200000px;}
.xd_c01251{left:285.120000px;}
.x1c_c01251{left:287.280000px;}
.x61_c01251{left:290.160000px;}
.x6_c01251{left:297.360000px;}
.x14_c01251{left:306.720000px;}
.x67_c01251{left:308.880000px;}
.x43_c01251{left:318.240000px;}
.x5c_c01251{left:319.680000px;}
.x36_c01251{left:329.040000px;}
.x1d_c01251{left:330.480000px;}
.xe_c01251{left:339.840000px;}
.x6c_c01251{left:342.720000px;}
.x15_c01251{left:351.360000px;}
.x1e_c01251{left:361.440000px;}
.x7_c01251{left:371.520000px;}
.x62_c01251{left:374.400000px;}
.x2f_c01251{left:383.760000px;}
.x5d_c01251{left:395.280000px;}
.x3e_c01251{left:404.640000px;}
.x1f_c01251{left:406.080000px;}
.x30_c01251{left:415.440000px;}
.x37_c01251{left:416.880000px;}
.x16_c01251{left:426.240000px;}
.x52_c01251{left:427.680000px;}
.x65_c01251{left:429.120000px;}
.x29_c01251{left:438.480000px;}
.x8_c01251{left:439.920000px;}
.x31_c01251{left:447.840000px;}
.x25_c01251{left:449.280000px;}
.x63_c01251{left:451.440000px;}
.x4a_c01251{left:460.080000px;}
.x44_c01251{left:470.160000px;}
.x53_c01251{left:472.320000px;}
.x17_c01251{left:481.680000px;}
.x4c_c01251{left:483.120000px;}
.x2a_c01251{left:491.040000px;}
.x48_c01251{left:492.480000px;}
.x20_c01251{left:502.560000px;}
.x66_c01251{left:504.000000px;}
.x9_c01251{left:514.080000px;}
.x32_c01251{left:524.880000px;}
.x5e_c01251{left:526.320000px;}
.x26_c01251{left:533.520000px;}
.x21_c01251{left:535.680000px;}
.x18_c01251{left:556.560000px;}
.x33_c01251{left:558.000000px;}
.x68_c01251{left:559.440000px;}
.xf_c01251{left:568.080000px;}
.x58_c01251{left:569.520000px;}
.x4e_c01251{left:579.600000px;}
.x45_c01251{left:589.680000px;}
.xa_c01251{left:591.120000px;}
.x3f_c01251{left:592.560000px;}
.x10_c01251{left:600.480000px;}
.x54_c01251{left:602.640000px;}
.x2b_c01251{left:611.280000px;}
.x4f_c01251{left:612.720000px;}
.x38_c01251{left:614.880000px;}
.x49_c01251{left:622.080000px;}
.x46_c01251{left:624.240000px;}
.x19_c01251{left:633.600000px;}
.x6d_c01251{left:635.760000px;}
.x27_c01251{left:643.680000px;}
.x69_c01251{left:645.840000px;}
.xb_c01251{left:654.480000px;}
.x50_c01251{left:656.640000px;}
.x1a_c01251{left:665.280000px;}
.x59_c01251{left:667.440000px;}
.x22_c01251{left:676.080000px;}
.x4d_c01251{left:677.520000px;}
.x1_c01251{left:681.840000px;}
@media print{
.v1_c01251{vertical-align:-5.120000pt;}
.v3_c01251{vertical-align:-2.560000pt;}
.v0_c01251{vertical-align:0.000000pt;}
.v2_c01251{vertical-align:7.680000pt;}
.ls0_c01251{letter-spacing:0.000000pt;}
.ws3_c01251{word-spacing:0.000000pt;}
.ws1_c01251{word-spacing:0.656640pt;}
.ws2_c01251{word-spacing:2.432000pt;}
.ws0_c01251{word-spacing:6.793600pt;}
.fs3_c01251{font-size:30.720000pt;}
.fse_c01251{font-size:33.280000pt;}
.fsb_c01251{font-size:38.400000pt;}
.fs7_c01251{font-size:40.960000pt;}
.fs4_c01251{font-size:43.520000pt;}
.fs9_c01251{font-size:46.080000pt;}
.fs8_c01251{font-size:48.640000pt;}
.fsd_c01251{font-size:51.200000pt;}
.fs2_c01251{font-size:53.760000pt;}
.fsa_c01251{font-size:56.320000pt;}
.fs5_c01251{font-size:58.880000pt;}
.fs6_c01251{font-size:61.440000pt;}
.fs0_c01251{font-size:69.120000pt;}
.fs1_c01251{font-size:71.680000pt;}
.fsf_c01251{font-size:74.240000pt;}
.fsc_c01251{font-size:81.920000pt;}
.y0_c01251{bottom:0.000000pt;}
.y8d_c01251{bottom:42.240000pt;}
.y8b_c01251{bottom:43.520000pt;}
.y8a_c01251{bottom:44.160000pt;}
.y89_c01251{bottom:45.440000pt;}
.y8c_c01251{bottom:46.080000pt;}
.y88_c01251{bottom:48.000000pt;}
.y87_c01251{bottom:50.560000pt;}
.y86_c01251{bottom:51.840000pt;}
.y85_c01251{bottom:81.280000pt;}
.y83_c01251{bottom:82.560000pt;}
.y80_c01251{bottom:83.200000pt;}
.y84_c01251{bottom:83.840000pt;}
.y82_c01251{bottom:84.480000pt;}
.y81_c01251{bottom:85.120000pt;}
.y7e_c01251{bottom:85.760000pt;}
.y7f_c01251{bottom:86.400000pt;}
.y7d_c01251{bottom:88.960000pt;}
.y7c_c01251{bottom:120.320000pt;}
.y7b_c01251{bottom:122.880000pt;}
.y7a_c01251{bottom:124.160000pt;}
.y78_c01251{bottom:125.440000pt;}
.y79_c01251{bottom:126.080000pt;}
.y75_c01251{bottom:158.720000pt;}
.y74_c01251{bottom:159.360000pt;}
.y77_c01251{bottom:160.000000pt;}
.y76_c01251{bottom:161.280000pt;}
.y73_c01251{bottom:161.920000pt;}
.y72_c01251{bottom:163.840000pt;}
.y70_c01251{bottom:164.480000pt;}
.y71_c01251{bottom:166.400000pt;}
.y6f_c01251{bottom:195.840000pt;}
.y6e_c01251{bottom:197.120000pt;}
.y6b_c01251{bottom:198.400000pt;}
.y6d_c01251{bottom:199.040000pt;}
.y6c_c01251{bottom:199.680000pt;}
.y6a_c01251{bottom:204.160000pt;}
.y69_c01251{bottom:234.880000pt;}
.y65_c01251{bottom:236.160000pt;}
.y68_c01251{bottom:236.800000pt;}
.y67_c01251{bottom:237.440000pt;}
.y66_c01251{bottom:238.080000pt;}
.y64_c01251{bottom:240.640000pt;}
.y63_c01251{bottom:273.280000pt;}
.y61_c01251{bottom:274.560000pt;}
.y62_c01251{bottom:275.200000pt;}
.y60_c01251{bottom:277.120000pt;}
.y5c_c01251{bottom:322.560000pt;}
.y5f_c01251{bottom:323.200000pt;}
.y5e_c01251{bottom:323.840000pt;}
.y5d_c01251{bottom:324.480000pt;}
.y5b_c01251{bottom:326.400000pt;}
.y5a_c01251{bottom:333.440000pt;}
.y57_c01251{bottom:359.040000pt;}
.y56_c01251{bottom:360.320000pt;}
.y59_c01251{bottom:360.960000pt;}
.y58_c01251{bottom:361.600000pt;}
.y55_c01251{bottom:362.880000pt;}
.y53_c01251{bottom:396.800000pt;}
.y50_c01251{bottom:398.720000pt;}
.y54_c01251{bottom:399.360000pt;}
.y52_c01251{bottom:400.000000pt;}
.y51_c01251{bottom:400.640000pt;}
.y4c_c01251{bottom:434.560000pt;}
.y4f_c01251{bottom:435.200000pt;}
.y4e_c01251{bottom:436.480000pt;}
.y4d_c01251{bottom:437.120000pt;}
.y4b_c01251{bottom:437.760000pt;}
.y4a_c01251{bottom:446.080000pt;}
.y49_c01251{bottom:472.320000pt;}
.y46_c01251{bottom:472.960000pt;}
.y48_c01251{bottom:474.880000pt;}
.y47_c01251{bottom:475.520000pt;}
.y45_c01251{bottom:476.160000pt;}
.y43_c01251{bottom:510.720000pt;}
.y40_c01251{bottom:511.360000pt;}
.y44_c01251{bottom:512.000000pt;}
.y42_c01251{bottom:513.280000pt;}
.y41_c01251{bottom:513.920000pt;}
.y3c_c01251{bottom:548.480000pt;}
.y3f_c01251{bottom:549.120000pt;}
.y3d_c01251{bottom:551.040000pt;}
.y3e_c01251{bottom:551.680000pt;}
.y3a_c01251{bottom:586.880000pt;}
.y38_c01251{bottom:587.520000pt;}
.y37_c01251{bottom:588.800000pt;}
.y39_c01251{bottom:589.440000pt;}
.y3b_c01251{bottom:590.080000pt;}
.y36_c01251{bottom:598.400000pt;}
.y33_c01251{bottom:624.640000pt;}
.y34_c01251{bottom:627.200000pt;}
.y35_c01251{bottom:628.480000pt;}
.y2f_c01251{bottom:663.680000pt;}
.y32_c01251{bottom:664.320000pt;}
.y2e_c01251{bottom:664.960000pt;}
.y30_c01251{bottom:665.600000pt;}
.y31_c01251{bottom:666.240000pt;}
.y27_c01251{bottom:700.160000pt;}
.y29_c01251{bottom:700.800000pt;}
.y2d_c01251{bottom:701.440000pt;}
.y28_c01251{bottom:702.720000pt;}
.y2a_c01251{bottom:703.360000pt;}
.y2b_c01251{bottom:704.000000pt;}
.y2c_c01251{bottom:704.640000pt;}
.y26_c01251{bottom:739.200000pt;}
.y24_c01251{bottom:739.840000pt;}
.y21_c01251{bottom:740.480000pt;}
.y22_c01251{bottom:741.120000pt;}
.y23_c01251{bottom:741.760000pt;}
.y25_c01251{bottom:743.040000pt;}
.y1b_c01251{bottom:776.320000pt;}
.y1d_c01251{bottom:776.960000pt;}
.y20_c01251{bottom:778.240000pt;}
.y1c_c01251{bottom:778.880000pt;}
.y1e_c01251{bottom:780.160000pt;}
.y1f_c01251{bottom:780.800000pt;}
.y16_c01251{bottom:814.080000pt;}
.y15_c01251{bottom:815.360000pt;}
.y18_c01251{bottom:816.000000pt;}
.y19_c01251{bottom:816.640000pt;}
.y17_c01251{bottom:818.560000pt;}
.y1a_c01251{bottom:819.840000pt;}
.yf_c01251{bottom:851.840000pt;}
.y10_c01251{bottom:852.480000pt;}
.ye_c01251{bottom:853.120000pt;}
.y12_c01251{bottom:853.760000pt;}
.y14_c01251{bottom:854.400000pt;}
.y11_c01251{bottom:856.320000pt;}
.y13_c01251{bottom:856.960000pt;}
.y8_c01251{bottom:890.880000pt;}
.ya_c01251{bottom:891.520000pt;}
.yc_c01251{bottom:892.160000pt;}
.y9_c01251{bottom:892.800000pt;}
.yb_c01251{bottom:894.080000pt;}
.yd_c01251{bottom:895.360000pt;}
.y2_c01251{bottom:926.720000pt;}
.y3_c01251{bottom:928.000000pt;}
.y5_c01251{bottom:929.920000pt;}
.y6_c01251{bottom:930.560000pt;}
.y4_c01251{bottom:931.840000pt;}
.y7_c01251{bottom:933.120000pt;}
.y1_c01251{bottom:977.920000pt;}
.h5_c01251{height:27.645000pt;}
.h10_c01251{height:29.948750pt;}
.hd_c01251{height:34.556250pt;}
.h9_c01251{height:36.860000pt;}
.h6_c01251{height:39.163750pt;}
.hb_c01251{height:41.467500pt;}
.ha_c01251{height:43.771250pt;}
.hf_c01251{height:46.075000pt;}
.h12_c01251{height:48.122500pt;}
.h4_c01251{height:48.378750pt;}
.hc_c01251{height:50.682500pt;}
.h7_c01251{height:52.986250pt;}
.h8_c01251{height:55.290000pt;}
.h2_c01251{height:62.201250pt;}
.h3_c01251{height:64.505000pt;}
.h11_c01251{height:66.808750pt;}
.he_c01251{height:73.720000pt;}
.h0_c01251{height:1027.840000pt;}
.h1_c01251{height:1028.000000pt;}
.w0_c01251{width:691.200000pt;}
.w1_c01251{width:691.333333pt;}
.x0_c01251{left:0.000000pt;}
.x2c_c01251{left:57.600000pt;}
.x2_c01251{left:58.880000pt;}
.x5b_c01251{left:60.160000pt;}
.x39_c01251{left:76.160000pt;}
.x5f_c01251{left:77.440000pt;}
.x2d_c01251{left:94.080000pt;}
.x55_c01251{left:95.360000pt;}
.x11_c01251{left:101.760000pt;}
.x3d_c01251{left:103.040000pt;}
.x60_c01251{left:104.320000pt;}
.x1b_c01251{left:111.360000pt;}
.x6a_c01251{left:113.280000pt;}
.x5a_c01251{left:122.880000pt;}
.x12_c01251{left:130.560000pt;}
.x3a_c01251{left:131.840000pt;}
.x34_c01251{left:140.160000pt;}
.x4b_c01251{left:141.440000pt;}
.x3_c01251{left:149.120000pt;}
.x40_c01251{left:150.400000pt;}
.xc_c01251{left:158.080000pt;}
.x23_c01251{left:159.360000pt;}
.x64_c01251{left:160.640000pt;}
.x35_c01251{left:168.960000pt;}
.x3c_c01251{left:176.640000pt;}
.x13_c01251{left:177.920000pt;}
.x4_c01251{left:186.240000pt;}
.x56_c01251{left:188.160000pt;}
.x3b_c01251{left:197.120000pt;}
.x24_c01251{left:206.720000pt;}
.x41_c01251{left:215.680000pt;}
.x5_c01251{left:224.640000pt;}
.x2e_c01251{left:225.920000pt;}
.x6b_c01251{left:228.480000pt;}
.x47_c01251{left:234.880000pt;}
.x51_c01251{left:236.160000pt;}
.x28_c01251{left:243.840000pt;}
.x42_c01251{left:245.120000pt;}
.x57_c01251{left:246.400000pt;}
.xd_c01251{left:253.440000pt;}
.x1c_c01251{left:255.360000pt;}
.x61_c01251{left:257.920000pt;}
.x6_c01251{left:264.320000pt;}
.x14_c01251{left:272.640000pt;}
.x67_c01251{left:274.560000pt;}
.x43_c01251{left:282.880000pt;}
.x5c_c01251{left:284.160000pt;}
.x36_c01251{left:292.480000pt;}
.x1d_c01251{left:293.760000pt;}
.xe_c01251{left:302.080000pt;}
.x6c_c01251{left:304.640000pt;}
.x15_c01251{left:312.320000pt;}
.x1e_c01251{left:321.280000pt;}
.x7_c01251{left:330.240000pt;}
.x62_c01251{left:332.800000pt;}
.x2f_c01251{left:341.120000pt;}
.x5d_c01251{left:351.360000pt;}
.x3e_c01251{left:359.680000pt;}
.x1f_c01251{left:360.960000pt;}
.x30_c01251{left:369.280000pt;}
.x37_c01251{left:370.560000pt;}
.x16_c01251{left:378.880000pt;}
.x52_c01251{left:380.160000pt;}
.x65_c01251{left:381.440000pt;}
.x29_c01251{left:389.760000pt;}
.x8_c01251{left:391.040000pt;}
.x31_c01251{left:398.080000pt;}
.x25_c01251{left:399.360000pt;}
.x63_c01251{left:401.280000pt;}
.x4a_c01251{left:408.960000pt;}
.x44_c01251{left:417.920000pt;}
.x53_c01251{left:419.840000pt;}
.x17_c01251{left:428.160000pt;}
.x4c_c01251{left:429.440000pt;}
.x2a_c01251{left:436.480000pt;}
.x48_c01251{left:437.760000pt;}
.x20_c01251{left:446.720000pt;}
.x66_c01251{left:448.000000pt;}
.x9_c01251{left:456.960000pt;}
.x32_c01251{left:466.560000pt;}
.x5e_c01251{left:467.840000pt;}
.x26_c01251{left:474.240000pt;}
.x21_c01251{left:476.160000pt;}
.x18_c01251{left:494.720000pt;}
.x33_c01251{left:496.000000pt;}
.x68_c01251{left:497.280000pt;}
.xf_c01251{left:504.960000pt;}
.x58_c01251{left:506.240000pt;}
.x4e_c01251{left:515.200000pt;}
.x45_c01251{left:524.160000pt;}
.xa_c01251{left:525.440000pt;}
.x3f_c01251{left:526.720000pt;}
.x10_c01251{left:533.760000pt;}
.x54_c01251{left:535.680000pt;}
.x2b_c01251{left:543.360000pt;}
.x4f_c01251{left:544.640000pt;}
.x38_c01251{left:546.560000pt;}
.x49_c01251{left:552.960000pt;}
.x46_c01251{left:554.880000pt;}
.x19_c01251{left:563.200000pt;}
.x6d_c01251{left:565.120000pt;}
.x27_c01251{left:572.160000pt;}
.x69_c01251{left:574.080000pt;}
.xb_c01251{left:581.760000pt;}
.x50_c01251{left:583.680000pt;}
.x1a_c01251{left:591.360000pt;}
.x59_c01251{left:593.280000pt;}
.x22_c01251{left:600.960000pt;}
.x4d_c01251{left:602.240000pt;}
.x1_c01251{left:606.080000pt;}
}





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

.ir_c01252:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01252{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01252;src:url('chunks/assets/font_9bdc5559bf2aa69ef3fc5778.woff2')format("woff");}.ff1_c01252{font-family:ff1_c01252;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m36_c01252{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m48_c01252{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);}
.m5b_c01252{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);}
.m29_c01252{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m57_c01252{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m25_c01252{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m58_c01252{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m35_c01252{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m50_c01252{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m20_c01252{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m5e_c01252{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01252{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3_c01252{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m17_c01252{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01252{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);}
.m60_c01252{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01252{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);}
.m4a_c01252{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m11_c01252{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m14_c01252{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_c01252{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m31_c01252{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m6_c01252{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m19_c01252{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.me_c01252{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);}
.m47_c01252{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01252{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);}
.m55_c01252{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);}
.m0_c01252{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m26_c01252{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);}
.m3f_c01252{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01252{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);}
.m52_c01252{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m37_c01252{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01252{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m5_c01252{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);}
.m28_c01252{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);}
.m5d_c01252{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m59_c01252{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);}
.m53_c01252{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);}
.m2c_c01252{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m33_c01252{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m4_c01252{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m30_c01252{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m5a_c01252{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);}
.m9_c01252{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01252{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);}
.m23_c01252{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m18_c01252{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);}
.m1a_c01252{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m24_c01252{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m43_c01252{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m5c_c01252{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m1_c01252{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);}
.m1e_c01252{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m41_c01252{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01252{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m8_c01252{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);}
.m16_c01252{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m32_c01252{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m21_c01252{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m22_c01252{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m42_c01252{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);}
.m3c_c01252{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m49_c01252{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m27_c01252{transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);}
.ma_c01252{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.mb_c01252{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m38_c01252{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);}
.m3e_c01252{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m15_c01252{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m34_c01252{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m46_c01252{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);}
.m2_c01252{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.md_c01252{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);}
.m4f_c01252{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01252{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m44_c01252{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m13_c01252{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01252{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m56_c01252{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01252{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);}
.m2e_c01252{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);}
.m3d_c01252{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);}
.m12_c01252{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m5f_c01252{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01252{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);}
.m2a_c01252{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m40_c01252{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m10_c01252{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01252{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.mf_c01252{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);}
.m61_c01252{transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);}
.m45_c01252{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.m54_c01252{transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);}
.m7_c01252{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);}
.m51_c01252{transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);}
.m39_c01252{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.v2_c01252{vertical-align:-2.880000px;}
.v0_c01252{vertical-align:0.000000px;}
.v1_c01252{vertical-align:2.880000px;}
.v3_c01252{vertical-align:5.760000px;}
.v4_c01252{vertical-align:8.640000px;}
.ls1_c01252{letter-spacing:0.000000px;}
.ls0_c01252{letter-spacing:24.606000px;}
.sc__c01252{text-shadow:none;}
.sc0_c01252{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01252{-webkit-text-stroke:0px transparent;}
.sc0_c01252{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01252{word-spacing:-4.743600px;}
.ws4_c01252{word-spacing:0.000000px;}
.ws2_c01252{word-spacing:2.054400px;}
.ws3_c01252{word-spacing:5.928240px;}
.ws0_c01252{word-spacing:7.183680px;}
.fc0_c01252{color:transparent;}
.fsd_c01252{font-size:14.400000px;}
.fs6_c01252{font-size:31.680000px;}
.fs1_c01252{font-size:34.560000px;}
.fse_c01252{font-size:37.440000px;}
.fs4_c01252{font-size:43.200000px;}
.fs2_c01252{font-size:46.080000px;}
.fs5_c01252{font-size:48.960000px;}
.fsa_c01252{font-size:51.840000px;}
.fs7_c01252{font-size:54.720000px;}
.fsb_c01252{font-size:57.600000px;}
.fs9_c01252{font-size:60.480000px;}
.fsc_c01252{font-size:63.360000px;}
.fs8_c01252{font-size:66.240000px;}
.fs3_c01252{font-size:69.120000px;}
.fs0_c01252{font-size:72.000000px;}
.y0_c01252{bottom:0.000000px;}
.y87_c01252{bottom:41.760000px;}
.y85_c01252{bottom:42.480000px;}
.y83_c01252{bottom:43.920000px;}
.y86_c01252{bottom:44.640000px;}
.y84_c01252{bottom:45.360000px;}
.y82_c01252{bottom:46.080000px;}
.y81_c01252{bottom:49.680000px;}
.y7f_c01252{bottom:84.960000px;}
.y80_c01252{bottom:87.120000px;}
.y7e_c01252{bottom:87.840000px;}
.y7d_c01252{bottom:88.560000px;}
.y7c_c01252{bottom:89.280000px;}
.y7b_c01252{bottom:90.720000px;}
.y7a_c01252{bottom:92.160000px;}
.y79_c01252{bottom:94.320000px;}
.y76_c01252{bottom:128.160000px;}
.y77_c01252{bottom:130.320000px;}
.y78_c01252{bottom:131.040000px;}
.y75_c01252{bottom:132.480000px;}
.y74_c01252{bottom:133.920000px;}
.y73_c01252{bottom:136.800000px;}
.y72_c01252{bottom:137.520000px;}
.y71_c01252{bottom:172.800000px;}
.y6f_c01252{bottom:173.520000px;}
.y70_c01252{bottom:174.240000px;}
.y6e_c01252{bottom:175.680000px;}
.y6d_c01252{bottom:177.120000px;}
.y6b_c01252{bottom:212.400000px;}
.y6c_c01252{bottom:213.120000px;}
.y6a_c01252{bottom:215.280000px;}
.y69_c01252{bottom:216.000000px;}
.y68_c01252{bottom:217.440000px;}
.y67_c01252{bottom:220.320000px;}
.y66_c01252{bottom:221.760000px;}
.y65_c01252{bottom:254.880000px;}
.y63_c01252{bottom:255.600000px;}
.y64_c01252{bottom:258.480000px;}
.y62_c01252{bottom:259.920000px;}
.y61_c01252{bottom:260.640000px;}
.y60_c01252{bottom:298.080000px;}
.y5d_c01252{bottom:298.800000px;}
.y5e_c01252{bottom:300.960000px;}
.y5f_c01252{bottom:301.680000px;}
.y5a_c01252{bottom:302.400000px;}
.y5c_c01252{bottom:303.120000px;}
.y5b_c01252{bottom:303.840000px;}
.y59_c01252{bottom:304.560000px;}
.y55_c01252{bottom:340.560000px;}
.y56_c01252{bottom:341.280000px;}
.y58_c01252{bottom:344.160000px;}
.y57_c01252{bottom:344.880000px;}
.y53_c01252{bottom:345.600000px;}
.y54_c01252{bottom:346.320000px;}
.y52_c01252{bottom:384.480000px;}
.y50_c01252{bottom:385.200000px;}
.y4f_c01252{bottom:385.920000px;}
.y51_c01252{bottom:387.360000px;}
.y4e_c01252{bottom:388.800000px;}
.y4d_c01252{bottom:389.520000px;}
.y4b_c01252{bottom:428.400000px;}
.y4a_c01252{bottom:430.560000px;}
.y4c_c01252{bottom:431.280000px;}
.y49_c01252{bottom:432.000000px;}
.y48_c01252{bottom:485.280000px;}
.y46_c01252{bottom:524.160000px;}
.y44_c01252{bottom:525.600000px;}
.y47_c01252{bottom:527.040000px;}
.y45_c01252{bottom:527.760000px;}
.y43_c01252{bottom:529.200000px;}
.y3f_c01252{bottom:567.360000px;}
.y40_c01252{bottom:568.800000px;}
.y41_c01252{bottom:570.240000px;}
.y42_c01252{bottom:570.960000px;}
.y3e_c01252{bottom:612.000000px;}
.y3d_c01252{bottom:612.720000px;}
.y3c_c01252{bottom:613.440000px;}
.y3a_c01252{bottom:653.040000px;}
.y39_c01252{bottom:653.760000px;}
.y38_c01252{bottom:655.200000px;}
.y37_c01252{bottom:655.920000px;}
.y36_c01252{bottom:656.640000px;}
.y3b_c01252{bottom:657.360000px;}
.y35_c01252{bottom:695.520000px;}
.y34_c01252{bottom:696.240000px;}
.y33_c01252{bottom:696.960000px;}
.y32_c01252{bottom:698.400000px;}
.y31_c01252{bottom:699.120000px;}
.y30_c01252{bottom:699.840000px;}
.y2f_c01252{bottom:738.720000px;}
.y2c_c01252{bottom:739.440000px;}
.y2b_c01252{bottom:740.880000px;}
.y2d_c01252{bottom:741.600000px;}
.y2e_c01252{bottom:742.320000px;}
.y26_c01252{bottom:780.480000px;}
.y29_c01252{bottom:781.920000px;}
.y25_c01252{bottom:782.640000px;}
.y27_c01252{bottom:783.360000px;}
.y28_c01252{bottom:784.080000px;}
.y2a_c01252{bottom:784.800000px;}
.y1f_c01252{bottom:822.960000px;}
.y21_c01252{bottom:823.680000px;}
.y22_c01252{bottom:825.840000px;}
.y20_c01252{bottom:826.560000px;}
.y23_c01252{bottom:827.280000px;}
.y24_c01252{bottom:828.000000px;}
.y1c_c01252{bottom:866.880000px;}
.y1b_c01252{bottom:869.040000px;}
.y1a_c01252{bottom:869.760000px;}
.y1d_c01252{bottom:870.480000px;}
.y1e_c01252{bottom:871.200000px;}
.y15_c01252{bottom:919.440000px;}
.y14_c01252{bottom:920.160000px;}
.y18_c01252{bottom:921.600000px;}
.y16_c01252{bottom:923.040000px;}
.y17_c01252{bottom:923.760000px;}
.y19_c01252{bottom:924.480000px;}
.yf_c01252{bottom:961.920000px;}
.yc_c01252{bottom:962.640000px;}
.yd_c01252{bottom:964.080000px;}
.ye_c01252{bottom:964.800000px;}
.y10_c01252{bottom:965.520000px;}
.y11_c01252{bottom:966.240000px;}
.y13_c01252{bottom:966.960000px;}
.y12_c01252{bottom:967.680000px;}
.y9_c01252{bottom:1005.120000px;}
.y7_c01252{bottom:1005.840000px;}
.y8_c01252{bottom:1007.280000px;}
.ya_c01252{bottom:1009.440000px;}
.yb_c01252{bottom:1010.160000px;}
.y2_c01252{bottom:1048.320000px;}
.y3_c01252{bottom:1049.760000px;}
.y5_c01252{bottom:1051.200000px;}
.y4_c01252{bottom:1053.360000px;}
.y6_c01252{bottom:1054.080000px;}
.y1_c01252{bottom:1110.240000px;}
.h10_c01252{height:12.958594px;}
.h8_c01252{height:28.508906px;}
.h3_c01252{height:31.100625px;}
.h11_c01252{height:33.692344px;}
.h6_c01252{height:38.875781px;}
.h4_c01252{height:41.467500px;}
.h7_c01252{height:44.059219px;}
.hc_c01252{height:46.650937px;}
.h9_c01252{height:49.242656px;}
.he_c01252{height:51.834375px;}
.hd_c01252{height:52.122656px;}
.hb_c01252{height:54.426094px;}
.h12_c01252{height:55.290937px;}
.hf_c01252{height:57.017812px;}
.ha_c01252{height:59.609531px;}
.h5_c01252{height:62.201250px;}
.h2_c01252{height:64.792969px;}
.h1_c01252{height:1162.500000px;}
.h0_c01252{height:1162.800000px;}
.w1_c01252{width:787.500000px;}
.w0_c01252{width:787.680000px;}
.x0_c01252{left:0.000000px;}
.x2_c01252{left:68.400000px;}
.x26_c01252{left:69.840000px;}
.x4c_c01252{left:71.280000px;}
.x5e_c01252{left:72.720000px;}
.x3_c01252{left:87.840000px;}
.x32_c01252{left:89.280000px;}
.xd_c01252{left:97.200000px;}
.x3a_c01252{left:98.640000px;}
.x57_c01252{left:100.080000px;}
.x33_c01252{left:107.280000px;}
.x4f_c01252{left:110.160000px;}
.x4_c01252{left:118.080000px;}
.x19_c01252{left:128.160000px;}
.x34_c01252{left:129.600000px;}
.x58_c01252{left:131.760000px;}
.xe_c01252{left:138.240000px;}
.x3d_c01252{left:139.680000px;}
.x35_c01252{left:141.120000px;}
.x15_c01252{left:149.760000px;}
.x47_c01252{left:151.200000px;}
.x27_c01252{left:159.840000px;}
.x1e_c01252{left:170.640000px;}
.x5b_c01252{left:172.800000px;}
.x2b_c01252{left:181.440000px;}
.x4d_c01252{left:182.880000px;}
.x28_c01252{left:192.240000px;}
.x48_c01252{left:193.680000px;}
.x16_c01252{left:203.040000px;}
.x2c_c01252{left:214.560000px;}
.x36_c01252{left:224.640000px;}
.x5_c01252{left:234.720000px;}
.x55_c01252{left:236.160000px;}
.xf_c01252{left:246.240000px;}
.x59_c01252{left:248.400000px;}
.x1f_c01252{left:257.040000px;}
.x37_c01252{left:267.840000px;}
.x50_c01252{left:269.280000px;}
.x6_c01252{left:278.640000px;}
.x56_c01252{left:280.080000px;}
.x2d_c01252{left:289.440000px;}
.x20_c01252{left:299.520000px;}
.x2e_c01252{left:319.680000px;}
.x10_c01252{left:321.840000px;}
.x5c_c01252{left:323.280000px;}
.x40_c01252{left:331.920000px;}
.x5f_c01252{left:334.080000px;}
.x30_c01252{left:342.720000px;}
.x41_c01252{left:344.160000px;}
.x11_c01252{left:353.520000px;}
.x1a_c01252{left:365.040000px;}
.x7_c01252{left:375.840000px;}
.x12_c01252{left:385.920000px;}
.x3b_c01252{left:397.440000px;}
.x52_c01252{left:398.880000px;}
.x8_c01252{left:406.080000px;}
.x42_c01252{left:407.520000px;}
.x1b_c01252{left:408.960000px;}
.x38_c01252{left:419.040000px;}
.x29_c01252{left:429.120000px;}
.x49_c01252{left:431.280000px;}
.x51_c01252{left:442.080000px;}
.x9_c01252{left:451.440000px;}
.x4a_c01252{left:453.600000px;}
.x17_c01252{left:462.240000px;}
.x53_c01252{left:463.680000px;}
.x2f_c01252{left:473.040000px;}
.x21_c01252{left:483.840000px;}
.x3c_c01252{left:485.280000px;}
.x3e_c01252{left:495.360000px;}
.xa_c01252{left:505.440000px;}
.x4e_c01252{left:506.880000px;}
.x1c_c01252{left:508.320000px;}
.x22_c01252{left:516.240000px;}
.x43_c01252{left:517.680000px;}
.x3f_c01252{left:527.760000px;}
.x5a_c01252{left:529.200000px;}
.x13_c01252{left:538.560000px;}
.x44_c01252{left:548.640000px;}
.x2a_c01252{left:550.080000px;}
.x54_c01252{left:561.600000px;}
.x23_c01252{left:571.680000px;}
.xb_c01252{left:581.760000px;}
.x4b_c01252{left:583.200000px;}
.x45_c01252{left:593.280000px;}
.xc_c01252{left:603.360000px;}
.x1d_c01252{left:604.800000px;}
.x5d_c01252{left:615.600000px;}
.x24_c01252{left:624.960000px;}
.x46_c01252{left:626.400000px;}
.x14_c01252{left:636.480000px;}
.x31_c01252{left:648.720000px;}
.x25_c01252{left:658.080000px;}
.x39_c01252{left:670.320000px;}
.x1_c01252{left:673.920000px;}
.x18_c01252{left:680.400000px;}
@media print{
.v2_c01252{vertical-align:-2.560000pt;}
.v0_c01252{vertical-align:0.000000pt;}
.v1_c01252{vertical-align:2.560000pt;}
.v3_c01252{vertical-align:5.120000pt;}
.v4_c01252{vertical-align:7.680000pt;}
.ls1_c01252{letter-spacing:0.000000pt;}
.ls0_c01252{letter-spacing:21.872000pt;}
.ws1_c01252{word-spacing:-4.216533pt;}
.ws4_c01252{word-spacing:0.000000pt;}
.ws2_c01252{word-spacing:1.826133pt;}
.ws3_c01252{word-spacing:5.269547pt;}
.ws0_c01252{word-spacing:6.385493pt;}
.fsd_c01252{font-size:12.800000pt;}
.fs6_c01252{font-size:28.160000pt;}
.fs1_c01252{font-size:30.720000pt;}
.fse_c01252{font-size:33.280000pt;}
.fs4_c01252{font-size:38.400000pt;}
.fs2_c01252{font-size:40.960000pt;}
.fs5_c01252{font-size:43.520000pt;}
.fsa_c01252{font-size:46.080000pt;}
.fs7_c01252{font-size:48.640000pt;}
.fsb_c01252{font-size:51.200000pt;}
.fs9_c01252{font-size:53.760000pt;}
.fsc_c01252{font-size:56.320000pt;}
.fs8_c01252{font-size:58.880000pt;}
.fs3_c01252{font-size:61.440000pt;}
.fs0_c01252{font-size:64.000000pt;}
.y0_c01252{bottom:0.000000pt;}
.y87_c01252{bottom:37.120000pt;}
.y85_c01252{bottom:37.760000pt;}
.y83_c01252{bottom:39.040000pt;}
.y86_c01252{bottom:39.680000pt;}
.y84_c01252{bottom:40.320000pt;}
.y82_c01252{bottom:40.960000pt;}
.y81_c01252{bottom:44.160000pt;}
.y7f_c01252{bottom:75.520000pt;}
.y80_c01252{bottom:77.440000pt;}
.y7e_c01252{bottom:78.080000pt;}
.y7d_c01252{bottom:78.720000pt;}
.y7c_c01252{bottom:79.360000pt;}
.y7b_c01252{bottom:80.640000pt;}
.y7a_c01252{bottom:81.920000pt;}
.y79_c01252{bottom:83.840000pt;}
.y76_c01252{bottom:113.920000pt;}
.y77_c01252{bottom:115.840000pt;}
.y78_c01252{bottom:116.480000pt;}
.y75_c01252{bottom:117.760000pt;}
.y74_c01252{bottom:119.040000pt;}
.y73_c01252{bottom:121.600000pt;}
.y72_c01252{bottom:122.240000pt;}
.y71_c01252{bottom:153.600000pt;}
.y6f_c01252{bottom:154.240000pt;}
.y70_c01252{bottom:154.880000pt;}
.y6e_c01252{bottom:156.160000pt;}
.y6d_c01252{bottom:157.440000pt;}
.y6b_c01252{bottom:188.800000pt;}
.y6c_c01252{bottom:189.440000pt;}
.y6a_c01252{bottom:191.360000pt;}
.y69_c01252{bottom:192.000000pt;}
.y68_c01252{bottom:193.280000pt;}
.y67_c01252{bottom:195.840000pt;}
.y66_c01252{bottom:197.120000pt;}
.y65_c01252{bottom:226.560000pt;}
.y63_c01252{bottom:227.200000pt;}
.y64_c01252{bottom:229.760000pt;}
.y62_c01252{bottom:231.040000pt;}
.y61_c01252{bottom:231.680000pt;}
.y60_c01252{bottom:264.960000pt;}
.y5d_c01252{bottom:265.600000pt;}
.y5e_c01252{bottom:267.520000pt;}
.y5f_c01252{bottom:268.160000pt;}
.y5a_c01252{bottom:268.800000pt;}
.y5c_c01252{bottom:269.440000pt;}
.y5b_c01252{bottom:270.080000pt;}
.y59_c01252{bottom:270.720000pt;}
.y55_c01252{bottom:302.720000pt;}
.y56_c01252{bottom:303.360000pt;}
.y58_c01252{bottom:305.920000pt;}
.y57_c01252{bottom:306.560000pt;}
.y53_c01252{bottom:307.200000pt;}
.y54_c01252{bottom:307.840000pt;}
.y52_c01252{bottom:341.760000pt;}
.y50_c01252{bottom:342.400000pt;}
.y4f_c01252{bottom:343.040000pt;}
.y51_c01252{bottom:344.320000pt;}
.y4e_c01252{bottom:345.600000pt;}
.y4d_c01252{bottom:346.240000pt;}
.y4b_c01252{bottom:380.800000pt;}
.y4a_c01252{bottom:382.720000pt;}
.y4c_c01252{bottom:383.360000pt;}
.y49_c01252{bottom:384.000000pt;}
.y48_c01252{bottom:431.360000pt;}
.y46_c01252{bottom:465.920000pt;}
.y44_c01252{bottom:467.200000pt;}
.y47_c01252{bottom:468.480000pt;}
.y45_c01252{bottom:469.120000pt;}
.y43_c01252{bottom:470.400000pt;}
.y3f_c01252{bottom:504.320000pt;}
.y40_c01252{bottom:505.600000pt;}
.y41_c01252{bottom:506.880000pt;}
.y42_c01252{bottom:507.520000pt;}
.y3e_c01252{bottom:544.000000pt;}
.y3d_c01252{bottom:544.640000pt;}
.y3c_c01252{bottom:545.280000pt;}
.y3a_c01252{bottom:580.480000pt;}
.y39_c01252{bottom:581.120000pt;}
.y38_c01252{bottom:582.400000pt;}
.y37_c01252{bottom:583.040000pt;}
.y36_c01252{bottom:583.680000pt;}
.y3b_c01252{bottom:584.320000pt;}
.y35_c01252{bottom:618.240000pt;}
.y34_c01252{bottom:618.880000pt;}
.y33_c01252{bottom:619.520000pt;}
.y32_c01252{bottom:620.800000pt;}
.y31_c01252{bottom:621.440000pt;}
.y30_c01252{bottom:622.080000pt;}
.y2f_c01252{bottom:656.640000pt;}
.y2c_c01252{bottom:657.280000pt;}
.y2b_c01252{bottom:658.560000pt;}
.y2d_c01252{bottom:659.200000pt;}
.y2e_c01252{bottom:659.840000pt;}
.y26_c01252{bottom:693.760000pt;}
.y29_c01252{bottom:695.040000pt;}
.y25_c01252{bottom:695.680000pt;}
.y27_c01252{bottom:696.320000pt;}
.y28_c01252{bottom:696.960000pt;}
.y2a_c01252{bottom:697.600000pt;}
.y1f_c01252{bottom:731.520000pt;}
.y21_c01252{bottom:732.160000pt;}
.y22_c01252{bottom:734.080000pt;}
.y20_c01252{bottom:734.720000pt;}
.y23_c01252{bottom:735.360000pt;}
.y24_c01252{bottom:736.000000pt;}
.y1c_c01252{bottom:770.560000pt;}
.y1b_c01252{bottom:772.480000pt;}
.y1a_c01252{bottom:773.120000pt;}
.y1d_c01252{bottom:773.760000pt;}
.y1e_c01252{bottom:774.400000pt;}
.y15_c01252{bottom:817.280000pt;}
.y14_c01252{bottom:817.920000pt;}
.y18_c01252{bottom:819.200000pt;}
.y16_c01252{bottom:820.480000pt;}
.y17_c01252{bottom:821.120000pt;}
.y19_c01252{bottom:821.760000pt;}
.yf_c01252{bottom:855.040000pt;}
.yc_c01252{bottom:855.680000pt;}
.yd_c01252{bottom:856.960000pt;}
.ye_c01252{bottom:857.600000pt;}
.y10_c01252{bottom:858.240000pt;}
.y11_c01252{bottom:858.880000pt;}
.y13_c01252{bottom:859.520000pt;}
.y12_c01252{bottom:860.160000pt;}
.y9_c01252{bottom:893.440000pt;}
.y7_c01252{bottom:894.080000pt;}
.y8_c01252{bottom:895.360000pt;}
.ya_c01252{bottom:897.280000pt;}
.yb_c01252{bottom:897.920000pt;}
.y2_c01252{bottom:931.840000pt;}
.y3_c01252{bottom:933.120000pt;}
.y5_c01252{bottom:934.400000pt;}
.y4_c01252{bottom:936.320000pt;}
.y6_c01252{bottom:936.960000pt;}
.y1_c01252{bottom:986.880000pt;}
.h10_c01252{height:11.518750pt;}
.h8_c01252{height:25.341250pt;}
.h3_c01252{height:27.645000pt;}
.h11_c01252{height:29.948750pt;}
.h6_c01252{height:34.556250pt;}
.h4_c01252{height:36.860000pt;}
.h7_c01252{height:39.163750pt;}
.hc_c01252{height:41.467500pt;}
.h9_c01252{height:43.771250pt;}
.he_c01252{height:46.075000pt;}
.hd_c01252{height:46.331250pt;}
.hb_c01252{height:48.378750pt;}
.h12_c01252{height:49.147500pt;}
.hf_c01252{height:50.682500pt;}
.ha_c01252{height:52.986250pt;}
.h5_c01252{height:55.290000pt;}
.h2_c01252{height:57.593750pt;}
.h1_c01252{height:1033.333333pt;}
.h0_c01252{height:1033.600000pt;}
.w1_c01252{width:700.000000pt;}
.w0_c01252{width:700.160000pt;}
.x0_c01252{left:0.000000pt;}
.x2_c01252{left:60.800000pt;}
.x26_c01252{left:62.080000pt;}
.x4c_c01252{left:63.360000pt;}
.x5e_c01252{left:64.640000pt;}
.x3_c01252{left:78.080000pt;}
.x32_c01252{left:79.360000pt;}
.xd_c01252{left:86.400000pt;}
.x3a_c01252{left:87.680000pt;}
.x57_c01252{left:88.960000pt;}
.x33_c01252{left:95.360000pt;}
.x4f_c01252{left:97.920000pt;}
.x4_c01252{left:104.960000pt;}
.x19_c01252{left:113.920000pt;}
.x34_c01252{left:115.200000pt;}
.x58_c01252{left:117.120000pt;}
.xe_c01252{left:122.880000pt;}
.x3d_c01252{left:124.160000pt;}
.x35_c01252{left:125.440000pt;}
.x15_c01252{left:133.120000pt;}
.x47_c01252{left:134.400000pt;}
.x27_c01252{left:142.080000pt;}
.x1e_c01252{left:151.680000pt;}
.x5b_c01252{left:153.600000pt;}
.x2b_c01252{left:161.280000pt;}
.x4d_c01252{left:162.560000pt;}
.x28_c01252{left:170.880000pt;}
.x48_c01252{left:172.160000pt;}
.x16_c01252{left:180.480000pt;}
.x2c_c01252{left:190.720000pt;}
.x36_c01252{left:199.680000pt;}
.x5_c01252{left:208.640000pt;}
.x55_c01252{left:209.920000pt;}
.xf_c01252{left:218.880000pt;}
.x59_c01252{left:220.800000pt;}
.x1f_c01252{left:228.480000pt;}
.x37_c01252{left:238.080000pt;}
.x50_c01252{left:239.360000pt;}
.x6_c01252{left:247.680000pt;}
.x56_c01252{left:248.960000pt;}
.x2d_c01252{left:257.280000pt;}
.x20_c01252{left:266.240000pt;}
.x2e_c01252{left:284.160000pt;}
.x10_c01252{left:286.080000pt;}
.x5c_c01252{left:287.360000pt;}
.x40_c01252{left:295.040000pt;}
.x5f_c01252{left:296.960000pt;}
.x30_c01252{left:304.640000pt;}
.x41_c01252{left:305.920000pt;}
.x11_c01252{left:314.240000pt;}
.x1a_c01252{left:324.480000pt;}
.x7_c01252{left:334.080000pt;}
.x12_c01252{left:343.040000pt;}
.x3b_c01252{left:353.280000pt;}
.x52_c01252{left:354.560000pt;}
.x8_c01252{left:360.960000pt;}
.x42_c01252{left:362.240000pt;}
.x1b_c01252{left:363.520000pt;}
.x38_c01252{left:372.480000pt;}
.x29_c01252{left:381.440000pt;}
.x49_c01252{left:383.360000pt;}
.x51_c01252{left:392.960000pt;}
.x9_c01252{left:401.280000pt;}
.x4a_c01252{left:403.200000pt;}
.x17_c01252{left:410.880000pt;}
.x53_c01252{left:412.160000pt;}
.x2f_c01252{left:420.480000pt;}
.x21_c01252{left:430.080000pt;}
.x3c_c01252{left:431.360000pt;}
.x3e_c01252{left:440.320000pt;}
.xa_c01252{left:449.280000pt;}
.x4e_c01252{left:450.560000pt;}
.x1c_c01252{left:451.840000pt;}
.x22_c01252{left:458.880000pt;}
.x43_c01252{left:460.160000pt;}
.x3f_c01252{left:469.120000pt;}
.x5a_c01252{left:470.400000pt;}
.x13_c01252{left:478.720000pt;}
.x44_c01252{left:487.680000pt;}
.x2a_c01252{left:488.960000pt;}
.x54_c01252{left:499.200000pt;}
.x23_c01252{left:508.160000pt;}
.xb_c01252{left:517.120000pt;}
.x4b_c01252{left:518.400000pt;}
.x45_c01252{left:527.360000pt;}
.xc_c01252{left:536.320000pt;}
.x1d_c01252{left:537.600000pt;}
.x5d_c01252{left:547.200000pt;}
.x24_c01252{left:555.520000pt;}
.x46_c01252{left:556.800000pt;}
.x14_c01252{left:565.760000pt;}
.x31_c01252{left:576.640000pt;}
.x25_c01252{left:584.960000pt;}
.x39_c01252{left:595.840000pt;}
.x1_c01252{left:599.040000pt;}
.x18_c01252{left:604.800000pt;}
}





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

.ir_c01253:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01253{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01253;src:url('chunks/assets/font_873dcc6229b6cbf64e3022ca.woff2')format("woff");}.ff1_c01253{font-family:ff1_c01253;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5a_c01253{transform:matrix(0.229625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229625,0.000000,0.000000,0.250000,0,0);}
.m0_c01253{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);}
.m29_c01253{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m50_c01253{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01253{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m37_c01253{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m13_c01253{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m22_c01253{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m51_c01253{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m56_c01253{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m26_c01253{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m41_c01253{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01253{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01253{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);}
.m39_c01253{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m4_c01253{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);}
.m55_c01253{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.md_c01253{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m43_c01253{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m17_c01253{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);}
.m27_c01253{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m6_c01253{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);}
.m30_c01253{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);}
.m15_c01253{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m24_c01253{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);}
.m3f_c01253{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);}
.m53_c01253{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);}
.m5b_c01253{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);}
.m18_c01253{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m28_c01253{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);}
.m11_c01253{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);}
.m47_c01253{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);}
.m3_c01253{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m12_c01253{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01253{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);}
.m33_c01253{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m42_c01253{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);}
.m58_c01253{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m49_c01253{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);}
.m9_c01253{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_c01253{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m44_c01253{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m31_c01253{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m16_c01253{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);}
.m25_c01253{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m1_c01253{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);}
.me_c01253{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.mc_c01253{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);}
.m2d_c01253{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m46_c01253{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01253{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m4d_c01253{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01253{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_c01253{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m5c_c01253{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m4a_c01253{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m32_c01253{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m20_c01253{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01253{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m54_c01253{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m52_c01253{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m34_c01253{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);}
.mb_c01253{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);}
.m40_c01253{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m2_c01253{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m57_c01253{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m14_c01253{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);}
.mf_c01253{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m10_c01253{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m48_c01253{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m36_c01253{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);}
.m4f_c01253{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01253{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m8_c01253{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01253{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.ma_c01253{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);}
.m38_c01253{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);}
.m1d_c01253{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);}
.m4c_c01253{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01253{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01253{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01253{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m7_c01253{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m23_c01253{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m19_c01253{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);}
.m2f_c01253{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01253{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);}
.m3d_c01253{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m21_c01253{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m5_c01253{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m59_c01253{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);}
.m35_c01253{transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01253{transform:matrix(0.700000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.700000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.700000,0.000000,0.000000,0.250000,0,0);}
.v0_c01253{vertical-align:0.000000px;}
.ls0_c01253{letter-spacing:0.000000px;}
.sc__c01253{text-shadow:none;}
.sc0_c01253{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01253{-webkit-text-stroke:0px transparent;}
.sc0_c01253{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01253{word-spacing:0.000000px;}
.fc0_c01253{color:transparent;}
.fs4_c01253{font-size:34.560000px;}
.fsc_c01253{font-size:37.440000px;}
.fs7_c01253{font-size:43.200000px;}
.fs2_c01253{font-size:46.080000px;}
.fs6_c01253{font-size:48.960000px;}
.fs1_c01253{font-size:51.840000px;}
.fs8_c01253{font-size:54.720000px;}
.fsb_c01253{font-size:57.600000px;}
.fs5_c01253{font-size:60.480000px;}
.fsa_c01253{font-size:63.360000px;}
.fs9_c01253{font-size:66.240000px;}
.fs3_c01253{font-size:69.120000px;}
.fsd_c01253{font-size:72.000000px;}
.fs0_c01253{font-size:74.880000px;}
.y0_c01253{bottom:0.000000px;}
.y8e_c01253{bottom:38.880000px;}
.y8c_c01253{bottom:40.320000px;}
.y8d_c01253{bottom:42.480000px;}
.y8b_c01253{bottom:43.920000px;}
.y8a_c01253{bottom:44.640000px;}
.y89_c01253{bottom:46.080000px;}
.y88_c01253{bottom:47.520000px;}
.y87_c01253{bottom:82.800000px;}
.y85_c01253{bottom:84.240000px;}
.y86_c01253{bottom:84.960000px;}
.y84_c01253{bottom:85.680000px;}
.y83_c01253{bottom:88.560000px;}
.y81_c01253{bottom:136.800000px;}
.y82_c01253{bottom:137.520000px;}
.y80_c01253{bottom:138.960000px;}
.y7f_c01253{bottom:139.680000px;}
.y7e_c01253{bottom:140.400000px;}
.y7d_c01253{bottom:141.120000px;}
.y7c_c01253{bottom:142.560000px;}
.y7b_c01253{bottom:144.000000px;}
.y7a_c01253{bottom:145.440000px;}
.y79_c01253{bottom:179.280000px;}
.y78_c01253{bottom:180.000000px;}
.y77_c01253{bottom:182.160000px;}
.y76_c01253{bottom:184.320000px;}
.y75_c01253{bottom:185.040000px;}
.y74_c01253{bottom:186.480000px;}
.y71_c01253{bottom:222.480000px;}
.y70_c01253{bottom:223.200000px;}
.y73_c01253{bottom:223.920000px;}
.y72_c01253{bottom:224.640000px;}
.y6f_c01253{bottom:225.360000px;}
.y6e_c01253{bottom:226.080000px;}
.y6d_c01253{bottom:226.800000px;}
.y6c_c01253{bottom:227.520000px;}
.y6b_c01253{bottom:231.840000px;}
.y69_c01253{bottom:264.960000px;}
.y68_c01253{bottom:265.680000px;}
.y6a_c01253{bottom:267.120000px;}
.y67_c01253{bottom:267.840000px;}
.y66_c01253{bottom:268.560000px;}
.y65_c01253{bottom:269.280000px;}
.y64_c01253{bottom:319.680000px;}
.y63_c01253{bottom:323.280000px;}
.y62_c01253{bottom:325.440000px;}
.y61_c01253{bottom:326.160000px;}
.y5e_c01253{bottom:361.440000px;}
.y5d_c01253{bottom:363.600000px;}
.y60_c01253{bottom:364.320000px;}
.y5f_c01253{bottom:365.040000px;}
.y5c_c01253{bottom:366.480000px;}
.y5b_c01253{bottom:367.920000px;}
.y5a_c01253{bottom:404.640000px;}
.y59_c01253{bottom:405.360000px;}
.y57_c01253{bottom:407.520000px;}
.y58_c01253{bottom:408.240000px;}
.y56_c01253{bottom:411.120000px;}
.y55_c01253{bottom:447.840000px;}
.y54_c01253{bottom:450.000000px;}
.y53_c01253{bottom:450.720000px;}
.y52_c01253{bottom:451.440000px;}
.y51_c01253{bottom:452.160000px;}
.y50_c01253{bottom:490.320000px;}
.y4d_c01253{bottom:491.040000px;}
.y4f_c01253{bottom:493.200000px;}
.y4e_c01253{bottom:493.920000px;}
.y4c_c01253{bottom:533.520000px;}
.y49_c01253{bottom:534.240000px;}
.y4b_c01253{bottom:535.680000px;}
.y4a_c01253{bottom:536.400000px;}
.y48_c01253{bottom:537.120000px;}
.y47_c01253{bottom:575.280000px;}
.y46_c01253{bottom:576.000000px;}
.y45_c01253{bottom:576.720000px;}
.y44_c01253{bottom:579.600000px;}
.y43_c01253{bottom:618.480000px;}
.y3f_c01253{bottom:619.200000px;}
.y41_c01253{bottom:620.640000px;}
.y40_c01253{bottom:621.360000px;}
.y42_c01253{bottom:622.080000px;}
.y3b_c01253{bottom:661.680000px;}
.y3e_c01253{bottom:662.400000px;}
.y3c_c01253{bottom:663.840000px;}
.y3a_c01253{bottom:664.560000px;}
.y3d_c01253{bottom:665.280000px;}
.y36_c01253{bottom:704.160000px;}
.y37_c01253{bottom:704.880000px;}
.y39_c01253{bottom:705.600000px;}
.y35_c01253{bottom:707.040000px;}
.y38_c01253{bottom:707.760000px;}
.y30_c01253{bottom:746.640000px;}
.y32_c01253{bottom:747.360000px;}
.y34_c01253{bottom:748.080000px;}
.y31_c01253{bottom:750.240000px;}
.y33_c01253{bottom:750.960000px;}
.y29_c01253{bottom:789.120000px;}
.y2c_c01253{bottom:790.560000px;}
.y2d_c01253{bottom:791.280000px;}
.y2a_c01253{bottom:792.720000px;}
.y2b_c01253{bottom:793.440000px;}
.y2e_c01253{bottom:794.160000px;}
.y2f_c01253{bottom:794.880000px;}
.y27_c01253{bottom:833.040000px;}
.y28_c01253{bottom:833.760000px;}
.y24_c01253{bottom:834.480000px;}
.y25_c01253{bottom:835.200000px;}
.y26_c01253{bottom:835.920000px;}
.y1e_c01253{bottom:876.960000px;}
.y1f_c01253{bottom:877.680000px;}
.y20_c01253{bottom:878.400000px;}
.y21_c01253{bottom:879.120000px;}
.y22_c01253{bottom:879.840000px;}
.y23_c01253{bottom:880.560000px;}
.y1b_c01253{bottom:918.720000px;}
.y18_c01253{bottom:919.440000px;}
.y19_c01253{bottom:920.160000px;}
.y1a_c01253{bottom:920.880000px;}
.y1c_c01253{bottom:922.320000px;}
.y1d_c01253{bottom:923.040000px;}
.y10_c01253{bottom:959.040000px;}
.y11_c01253{bottom:961.200000px;}
.y14_c01253{bottom:961.920000px;}
.y15_c01253{bottom:963.360000px;}
.y13_c01253{bottom:964.080000px;}
.y12_c01253{bottom:964.800000px;}
.y16_c01253{bottom:965.520000px;}
.y17_c01253{bottom:966.240000px;}
.ya_c01253{bottom:1003.680000px;}
.y8_c01253{bottom:1004.400000px;}
.yd_c01253{bottom:1005.840000px;}
.y9_c01253{bottom:1006.560000px;}
.ye_c01253{bottom:1007.280000px;}
.yc_c01253{bottom:1008.000000px;}
.yb_c01253{bottom:1008.720000px;}
.yf_c01253{bottom:1009.440000px;}
.y2_c01253{bottom:1046.160000px;}
.y4_c01253{bottom:1046.880000px;}
.y3_c01253{bottom:1048.320000px;}
.y6_c01253{bottom:1049.040000px;}
.y7_c01253{bottom:1050.480000px;}
.y5_c01253{bottom:1051.920000px;}
.y1_c01253{bottom:1105.200000px;}
.h6_c01253{height:31.100625px;}
.he_c01253{height:33.692344px;}
.h9_c01253{height:38.875781px;}
.h4_c01253{height:41.467500px;}
.h8_c01253{height:44.059219px;}
.h3_c01253{height:46.650937px;}
.ha_c01253{height:49.242656px;}
.hd_c01253{height:51.834375px;}
.h7_c01253{height:54.426094px;}
.hc_c01253{height:57.017812px;}
.hb_c01253{height:59.609531px;}
.h5_c01253{height:62.201250px;}
.hf_c01253{height:64.792969px;}
.h2_c01253{height:67.384687px;}
.h1_c01253{height:1162.500000px;}
.h0_c01253{height:1162.800000px;}
.w1_c01253{width:786.000000px;}
.w0_c01253{width:786.240000px;}
.x0_c01253{left:0.000000px;}
.x2_c01253{left:64.800000px;}
.xc_c01253{left:66.240000px;}
.x40_c01253{left:67.680000px;}
.x47_c01253{left:69.120000px;}
.x1a_c01253{left:93.600000px;}
.x3a_c01253{left:96.480000px;}
.x55_c01253{left:97.920000px;}
.x12_c01253{left:105.840000px;}
.x61_c01253{left:108.000000px;}
.x26_c01253{left:116.640000px;}
.x23_c01253{left:126.000000px;}
.x49_c01253{left:127.440000px;}
.x3_c01253{left:136.080000px;}
.x3b_c01253{left:137.520000px;}
.x56_c01253{left:138.960000px;}
.x27_c01253{left:146.160000px;}
.x4a_c01253{left:148.320000px;}
.xd_c01253{left:157.680000px;}
.x67_c01253{left:159.840000px;}
.x4_c01253{left:167.760000px;}
.x4f_c01253{left:169.920000px;}
.x1f_c01253{left:178.560000px;}
.x1b_c01253{left:188.640000px;}
.x4b_c01253{left:190.080000px;}
.x62_c01253{left:191.520000px;}
.xe_c01253{left:199.440000px;}
.x41_c01253{left:200.880000px;}
.x5_c01253{left:210.240000px;}
.x2f_c01253{left:213.120000px;}
.x20_c01253{left:221.760000px;}
.x13_c01253{left:231.840000px;}
.x68_c01253{left:234.000000px;}
.x5c_c01253{left:235.440000px;}
.x1c_c01253{left:241.920000px;}
.x39_c01253{left:243.360000px;}
.x63_c01253{left:246.240000px;}
.x24_c01253{left:253.440000px;}
.x48_c01253{left:254.880000px;}
.x37_c01253{left:265.680000px;}
.x14_c01253{left:275.760000px;}
.x33_c01253{left:286.560000px;}
.x50_c01253{left:288.000000px;}
.x3c_c01253{left:296.640000px;}
.x4c_c01253{left:298.080000px;}
.x2b_c01253{left:307.440000px;}
.x57_c01253{left:308.880000px;}
.x1d_c01253{left:318.960000px;}
.x64_c01253{left:321.120000px;}
.x6_c01253{left:328.320000px;}
.x34_c01253{left:330.480000px;}
.x30_c01253{left:341.280000px;}
.x25_c01253{left:352.080000px;}
.x5d_c01253{left:354.240000px;}
.x35_c01253{left:362.880000px;}
.x7_c01253{left:372.960000px;}
.x15_c01253{left:383.040000px;}
.x36_c01253{left:384.480000px;}
.x3d_c01253{left:395.280000px;}
.x28_c01253{left:405.360000px;}
.x51_c01253{left:406.800000px;}
.x2c_c01253{left:414.720000px;}
.x1e_c01253{left:416.880000px;}
.x5e_c01253{left:428.400000px;}
.x16_c01253{left:437.760000px;}
.x4d_c01253{left:439.920000px;}
.x21_c01253{left:447.840000px;}
.xf_c01253{left:460.080000px;}
.x65_c01253{left:461.520000px;}
.x17_c01253{left:469.440000px;}
.x45_c01253{left:470.880000px;}
.x4e_c01253{left:472.320000px;}
.x8_c01253{left:480.960000px;}
.x42_c01253{left:482.400000px;}
.x29_c01253{left:491.760000px;}
.x66_c01253{left:493.920000px;}
.x43_c01253{left:504.000000px;}
.x9_c01253{left:513.360000px;}
.x58_c01253{left:516.240000px;}
.x3e_c01253{left:525.600000px;}
.x18_c01253{left:535.680000px;}
.x59_c01253{left:537.120000px;}
.x44_c01253{left:547.200000px;}
.x5f_c01253{left:548.640000px;}
.xa_c01253{left:556.560000px;}
.x31_c01253{left:558.000000px;}
.x5a_c01253{left:560.160000px;}
.x19_c01253{left:568.080000px;}
.x52_c01253{left:569.520000px;}
.x10_c01253{left:578.880000px;}
.x60_c01253{left:581.040000px;}
.x2d_c01253{left:589.680000px;}
.x3f_c01253{left:591.120000px;}
.x22_c01253{left:611.280000px;}
.x53_c01253{left:613.440000px;}
.xb_c01253{left:622.800000px;}
.x5b_c01253{left:624.240000px;}
.x11_c01253{left:634.320000px;}
.x46_c01253{left:645.840000px;}
.x2a_c01253{left:655.200000px;}
.x1_c01253{left:659.520000px;}
.x2e_c01253{left:666.000000px;}
.x54_c01253{left:668.160000px;}
.x32_c01253{left:677.520000px;}
.x38_c01253{left:678.960000px;}
@media print{
.v0_c01253{vertical-align:0.000000pt;}
.ls0_c01253{letter-spacing:0.000000pt;}
.ws0_c01253{word-spacing:0.000000pt;}
.fs4_c01253{font-size:30.720000pt;}
.fsc_c01253{font-size:33.280000pt;}
.fs7_c01253{font-size:38.400000pt;}
.fs2_c01253{font-size:40.960000pt;}
.fs6_c01253{font-size:43.520000pt;}
.fs1_c01253{font-size:46.080000pt;}
.fs8_c01253{font-size:48.640000pt;}
.fsb_c01253{font-size:51.200000pt;}
.fs5_c01253{font-size:53.760000pt;}
.fsa_c01253{font-size:56.320000pt;}
.fs9_c01253{font-size:58.880000pt;}
.fs3_c01253{font-size:61.440000pt;}
.fsd_c01253{font-size:64.000000pt;}
.fs0_c01253{font-size:66.560000pt;}
.y0_c01253{bottom:0.000000pt;}
.y8e_c01253{bottom:34.560000pt;}
.y8c_c01253{bottom:35.840000pt;}
.y8d_c01253{bottom:37.760000pt;}
.y8b_c01253{bottom:39.040000pt;}
.y8a_c01253{bottom:39.680000pt;}
.y89_c01253{bottom:40.960000pt;}
.y88_c01253{bottom:42.240000pt;}
.y87_c01253{bottom:73.600000pt;}
.y85_c01253{bottom:74.880000pt;}
.y86_c01253{bottom:75.520000pt;}
.y84_c01253{bottom:76.160000pt;}
.y83_c01253{bottom:78.720000pt;}
.y81_c01253{bottom:121.600000pt;}
.y82_c01253{bottom:122.240000pt;}
.y80_c01253{bottom:123.520000pt;}
.y7f_c01253{bottom:124.160000pt;}
.y7e_c01253{bottom:124.800000pt;}
.y7d_c01253{bottom:125.440000pt;}
.y7c_c01253{bottom:126.720000pt;}
.y7b_c01253{bottom:128.000000pt;}
.y7a_c01253{bottom:129.280000pt;}
.y79_c01253{bottom:159.360000pt;}
.y78_c01253{bottom:160.000000pt;}
.y77_c01253{bottom:161.920000pt;}
.y76_c01253{bottom:163.840000pt;}
.y75_c01253{bottom:164.480000pt;}
.y74_c01253{bottom:165.760000pt;}
.y71_c01253{bottom:197.760000pt;}
.y70_c01253{bottom:198.400000pt;}
.y73_c01253{bottom:199.040000pt;}
.y72_c01253{bottom:199.680000pt;}
.y6f_c01253{bottom:200.320000pt;}
.y6e_c01253{bottom:200.960000pt;}
.y6d_c01253{bottom:201.600000pt;}
.y6c_c01253{bottom:202.240000pt;}
.y6b_c01253{bottom:206.080000pt;}
.y69_c01253{bottom:235.520000pt;}
.y68_c01253{bottom:236.160000pt;}
.y6a_c01253{bottom:237.440000pt;}
.y67_c01253{bottom:238.080000pt;}
.y66_c01253{bottom:238.720000pt;}
.y65_c01253{bottom:239.360000pt;}
.y64_c01253{bottom:284.160000pt;}
.y63_c01253{bottom:287.360000pt;}
.y62_c01253{bottom:289.280000pt;}
.y61_c01253{bottom:289.920000pt;}
.y5e_c01253{bottom:321.280000pt;}
.y5d_c01253{bottom:323.200000pt;}
.y60_c01253{bottom:323.840000pt;}
.y5f_c01253{bottom:324.480000pt;}
.y5c_c01253{bottom:325.760000pt;}
.y5b_c01253{bottom:327.040000pt;}
.y5a_c01253{bottom:359.680000pt;}
.y59_c01253{bottom:360.320000pt;}
.y57_c01253{bottom:362.240000pt;}
.y58_c01253{bottom:362.880000pt;}
.y56_c01253{bottom:365.440000pt;}
.y55_c01253{bottom:398.080000pt;}
.y54_c01253{bottom:400.000000pt;}
.y53_c01253{bottom:400.640000pt;}
.y52_c01253{bottom:401.280000pt;}
.y51_c01253{bottom:401.920000pt;}
.y50_c01253{bottom:435.840000pt;}
.y4d_c01253{bottom:436.480000pt;}
.y4f_c01253{bottom:438.400000pt;}
.y4e_c01253{bottom:439.040000pt;}
.y4c_c01253{bottom:474.240000pt;}
.y49_c01253{bottom:474.880000pt;}
.y4b_c01253{bottom:476.160000pt;}
.y4a_c01253{bottom:476.800000pt;}
.y48_c01253{bottom:477.440000pt;}
.y47_c01253{bottom:511.360000pt;}
.y46_c01253{bottom:512.000000pt;}
.y45_c01253{bottom:512.640000pt;}
.y44_c01253{bottom:515.200000pt;}
.y43_c01253{bottom:549.760000pt;}
.y3f_c01253{bottom:550.400000pt;}
.y41_c01253{bottom:551.680000pt;}
.y40_c01253{bottom:552.320000pt;}
.y42_c01253{bottom:552.960000pt;}
.y3b_c01253{bottom:588.160000pt;}
.y3e_c01253{bottom:588.800000pt;}
.y3c_c01253{bottom:590.080000pt;}
.y3a_c01253{bottom:590.720000pt;}
.y3d_c01253{bottom:591.360000pt;}
.y36_c01253{bottom:625.920000pt;}
.y37_c01253{bottom:626.560000pt;}
.y39_c01253{bottom:627.200000pt;}
.y35_c01253{bottom:628.480000pt;}
.y38_c01253{bottom:629.120000pt;}
.y30_c01253{bottom:663.680000pt;}
.y32_c01253{bottom:664.320000pt;}
.y34_c01253{bottom:664.960000pt;}
.y31_c01253{bottom:666.880000pt;}
.y33_c01253{bottom:667.520000pt;}
.y29_c01253{bottom:701.440000pt;}
.y2c_c01253{bottom:702.720000pt;}
.y2d_c01253{bottom:703.360000pt;}
.y2a_c01253{bottom:704.640000pt;}
.y2b_c01253{bottom:705.280000pt;}
.y2e_c01253{bottom:705.920000pt;}
.y2f_c01253{bottom:706.560000pt;}
.y27_c01253{bottom:740.480000pt;}
.y28_c01253{bottom:741.120000pt;}
.y24_c01253{bottom:741.760000pt;}
.y25_c01253{bottom:742.400000pt;}
.y26_c01253{bottom:743.040000pt;}
.y1e_c01253{bottom:779.520000pt;}
.y1f_c01253{bottom:780.160000pt;}
.y20_c01253{bottom:780.800000pt;}
.y21_c01253{bottom:781.440000pt;}
.y22_c01253{bottom:782.080000pt;}
.y23_c01253{bottom:782.720000pt;}
.y1b_c01253{bottom:816.640000pt;}
.y18_c01253{bottom:817.280000pt;}
.y19_c01253{bottom:817.920000pt;}
.y1a_c01253{bottom:818.560000pt;}
.y1c_c01253{bottom:819.840000pt;}
.y1d_c01253{bottom:820.480000pt;}
.y10_c01253{bottom:852.480000pt;}
.y11_c01253{bottom:854.400000pt;}
.y14_c01253{bottom:855.040000pt;}
.y15_c01253{bottom:856.320000pt;}
.y13_c01253{bottom:856.960000pt;}
.y12_c01253{bottom:857.600000pt;}
.y16_c01253{bottom:858.240000pt;}
.y17_c01253{bottom:858.880000pt;}
.ya_c01253{bottom:892.160000pt;}
.y8_c01253{bottom:892.800000pt;}
.yd_c01253{bottom:894.080000pt;}
.y9_c01253{bottom:894.720000pt;}
.ye_c01253{bottom:895.360000pt;}
.yc_c01253{bottom:896.000000pt;}
.yb_c01253{bottom:896.640000pt;}
.yf_c01253{bottom:897.280000pt;}
.y2_c01253{bottom:929.920000pt;}
.y4_c01253{bottom:930.560000pt;}
.y3_c01253{bottom:931.840000pt;}
.y6_c01253{bottom:932.480000pt;}
.y7_c01253{bottom:933.760000pt;}
.y5_c01253{bottom:935.040000pt;}
.y1_c01253{bottom:982.400000pt;}
.h6_c01253{height:27.645000pt;}
.he_c01253{height:29.948750pt;}
.h9_c01253{height:34.556250pt;}
.h4_c01253{height:36.860000pt;}
.h8_c01253{height:39.163750pt;}
.h3_c01253{height:41.467500pt;}
.ha_c01253{height:43.771250pt;}
.hd_c01253{height:46.075000pt;}
.h7_c01253{height:48.378750pt;}
.hc_c01253{height:50.682500pt;}
.hb_c01253{height:52.986250pt;}
.h5_c01253{height:55.290000pt;}
.hf_c01253{height:57.593750pt;}
.h2_c01253{height:59.897500pt;}
.h1_c01253{height:1033.333333pt;}
.h0_c01253{height:1033.600000pt;}
.w1_c01253{width:698.666667pt;}
.w0_c01253{width:698.880000pt;}
.x0_c01253{left:0.000000pt;}
.x2_c01253{left:57.600000pt;}
.xc_c01253{left:58.880000pt;}
.x40_c01253{left:60.160000pt;}
.x47_c01253{left:61.440000pt;}
.x1a_c01253{left:83.200000pt;}
.x3a_c01253{left:85.760000pt;}
.x55_c01253{left:87.040000pt;}
.x12_c01253{left:94.080000pt;}
.x61_c01253{left:96.000000pt;}
.x26_c01253{left:103.680000pt;}
.x23_c01253{left:112.000000pt;}
.x49_c01253{left:113.280000pt;}
.x3_c01253{left:120.960000pt;}
.x3b_c01253{left:122.240000pt;}
.x56_c01253{left:123.520000pt;}
.x27_c01253{left:129.920000pt;}
.x4a_c01253{left:131.840000pt;}
.xd_c01253{left:140.160000pt;}
.x67_c01253{left:142.080000pt;}
.x4_c01253{left:149.120000pt;}
.x4f_c01253{left:151.040000pt;}
.x1f_c01253{left:158.720000pt;}
.x1b_c01253{left:167.680000pt;}
.x4b_c01253{left:168.960000pt;}
.x62_c01253{left:170.240000pt;}
.xe_c01253{left:177.280000pt;}
.x41_c01253{left:178.560000pt;}
.x5_c01253{left:186.880000pt;}
.x2f_c01253{left:189.440000pt;}
.x20_c01253{left:197.120000pt;}
.x13_c01253{left:206.080000pt;}
.x68_c01253{left:208.000000pt;}
.x5c_c01253{left:209.280000pt;}
.x1c_c01253{left:215.040000pt;}
.x39_c01253{left:216.320000pt;}
.x63_c01253{left:218.880000pt;}
.x24_c01253{left:225.280000pt;}
.x48_c01253{left:226.560000pt;}
.x37_c01253{left:236.160000pt;}
.x14_c01253{left:245.120000pt;}
.x33_c01253{left:254.720000pt;}
.x50_c01253{left:256.000000pt;}
.x3c_c01253{left:263.680000pt;}
.x4c_c01253{left:264.960000pt;}
.x2b_c01253{left:273.280000pt;}
.x57_c01253{left:274.560000pt;}
.x1d_c01253{left:283.520000pt;}
.x64_c01253{left:285.440000pt;}
.x6_c01253{left:291.840000pt;}
.x34_c01253{left:293.760000pt;}
.x30_c01253{left:303.360000pt;}
.x25_c01253{left:312.960000pt;}
.x5d_c01253{left:314.880000pt;}
.x35_c01253{left:322.560000pt;}
.x7_c01253{left:331.520000pt;}
.x15_c01253{left:340.480000pt;}
.x36_c01253{left:341.760000pt;}
.x3d_c01253{left:351.360000pt;}
.x28_c01253{left:360.320000pt;}
.x51_c01253{left:361.600000pt;}
.x2c_c01253{left:368.640000pt;}
.x1e_c01253{left:370.560000pt;}
.x5e_c01253{left:380.800000pt;}
.x16_c01253{left:389.120000pt;}
.x4d_c01253{left:391.040000pt;}
.x21_c01253{left:398.080000pt;}
.xf_c01253{left:408.960000pt;}
.x65_c01253{left:410.240000pt;}
.x17_c01253{left:417.280000pt;}
.x45_c01253{left:418.560000pt;}
.x4e_c01253{left:419.840000pt;}
.x8_c01253{left:427.520000pt;}
.x42_c01253{left:428.800000pt;}
.x29_c01253{left:437.120000pt;}
.x66_c01253{left:439.040000pt;}
.x43_c01253{left:448.000000pt;}
.x9_c01253{left:456.320000pt;}
.x58_c01253{left:458.880000pt;}
.x3e_c01253{left:467.200000pt;}
.x18_c01253{left:476.160000pt;}
.x59_c01253{left:477.440000pt;}
.x44_c01253{left:486.400000pt;}
.x5f_c01253{left:487.680000pt;}
.xa_c01253{left:494.720000pt;}
.x31_c01253{left:496.000000pt;}
.x5a_c01253{left:497.920000pt;}
.x19_c01253{left:504.960000pt;}
.x52_c01253{left:506.240000pt;}
.x10_c01253{left:514.560000pt;}
.x60_c01253{left:516.480000pt;}
.x2d_c01253{left:524.160000pt;}
.x3f_c01253{left:525.440000pt;}
.x22_c01253{left:543.360000pt;}
.x53_c01253{left:545.280000pt;}
.xb_c01253{left:553.600000pt;}
.x5b_c01253{left:554.880000pt;}
.x11_c01253{left:563.840000pt;}
.x46_c01253{left:574.080000pt;}
.x2a_c01253{left:582.400000pt;}
.x1_c01253{left:586.240000pt;}
.x2e_c01253{left:592.000000pt;}
.x54_c01253{left:593.920000pt;}
.x32_c01253{left:602.240000pt;}
.x38_c01253{left:603.520000pt;}
}





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

.ir_c01254:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01254{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01254;src:url('chunks/assets/font_bcd0b4cd687a428f4e367c8e.woff2')format("woff");}.ff1_c01254{font-family:ff1_c01254;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m43_c01254{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m0_c01254{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01254{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01254{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01254{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m31_c01254{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m13_c01254{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m47_c01254{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m41_c01254{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m49_c01254{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);}
.m33_c01254{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);}
.m4b_c01254{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m16_c01254{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m7_c01254{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01254{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);}
.m4c_c01254{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m18_c01254{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m14_c01254{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m1_c01254{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);}
.m22_c01254{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m5a_c01254{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m30_c01254{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);}
.m5b_c01254{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);}
.m42_c01254{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);}
.m36_c01254{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01254{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);}
.m39_c01254{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m27_c01254{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);}
.m52_c01254{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);}
.m17_c01254{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.ma_c01254{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m38_c01254{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m10_c01254{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);}
.me_c01254{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m59_c01254{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);}
.m2b_c01254{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01254{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);}
.m2_c01254{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);}
.m54_c01254{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m25_c01254{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.mc_c01254{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01254{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);}
.m58_c01254{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m19_c01254{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01254{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);}
.m37_c01254{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m34_c01254{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);}
.m4_c01254{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m29_c01254{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m35_c01254{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m20_c01254{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m9_c01254{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);}
.m50_c01254{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m5_c01254{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m5d_c01254{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.mb_c01254{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);}
.m57_c01254{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01254{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01254{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01254{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01254{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);}
.m53_c01254{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);}
.mf_c01254{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m40_c01254{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m6_c01254{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);}
.m3a_c01254{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m32_c01254{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01254{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);}
.m44_c01254{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m8_c01254{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m45_c01254{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.md_c01254{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m56_c01254{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m23_c01254{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);}
.m12_c01254{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m24_c01254{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m3_c01254{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m51_c01254{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m48_c01254{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);}
.m2a_c01254{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);}
.m2c_c01254{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01254{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m26_c01254{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);}
.m3d_c01254{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m11_c01254{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01254{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01254{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01254{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m15_c01254{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m46_c01254{transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);}
.m55_c01254{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.m21_c01254{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m5c_c01254{transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);}
.m28_c01254{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.v0_c01254{vertical-align:0.000000px;}
.ls0_c01254{letter-spacing:0.000000px;}
.sc__c01254{text-shadow:none;}
.sc0_c01254{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01254{-webkit-text-stroke:0px transparent;}
.sc0_c01254{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01254{word-spacing:-1.126080px;}
.ws2_c01254{word-spacing:0.000000px;}
.ws1_c01254{word-spacing:0.020160px;}
.fc0_c01254{color:transparent;}
.fs8_c01254{font-size:31.680000px;}
.fs5_c01254{font-size:34.560000px;}
.fsd_c01254{font-size:37.440000px;}
.fsa_c01254{font-size:43.200000px;}
.fs3_c01254{font-size:46.080000px;}
.fs2_c01254{font-size:48.960000px;}
.fs4_c01254{font-size:51.840000px;}
.fsb_c01254{font-size:54.720000px;}
.fs6_c01254{font-size:57.600000px;}
.fs1_c01254{font-size:60.480000px;}
.fs7_c01254{font-size:63.360000px;}
.fsc_c01254{font-size:66.240000px;}
.fs9_c01254{font-size:69.120000px;}
.fs0_c01254{font-size:72.000000px;}
.y0_c01254{bottom:0.000000px;}
.y80_c01254{bottom:37.440000px;}
.y7f_c01254{bottom:41.760000px;}
.y7e_c01254{bottom:42.480000px;}
.y7d_c01254{bottom:43.200000px;}
.y7c_c01254{bottom:46.080000px;}
.y7b_c01254{bottom:47.520000px;}
.y7a_c01254{bottom:50.400000px;}
.y78_c01254{bottom:82.080000px;}
.y76_c01254{bottom:83.520000px;}
.y79_c01254{bottom:84.240000px;}
.y77_c01254{bottom:85.680000px;}
.y75_c01254{bottom:86.400000px;}
.y74_c01254{bottom:90.000000px;}
.y73_c01254{bottom:139.680000px;}
.y72_c01254{bottom:143.280000px;}
.y71_c01254{bottom:145.440000px;}
.y6f_c01254{bottom:179.280000px;}
.y70_c01254{bottom:180.720000px;}
.y6d_c01254{bottom:181.440000px;}
.y6e_c01254{bottom:182.160000px;}
.y6c_c01254{bottom:185.040000px;}
.y6b_c01254{bottom:187.200000px;}
.y6a_c01254{bottom:189.360000px;}
.y69_c01254{bottom:221.760000px;}
.y68_c01254{bottom:222.480000px;}
.y67_c01254{bottom:223.920000px;}
.y66_c01254{bottom:224.640000px;}
.y65_c01254{bottom:227.520000px;}
.y64_c01254{bottom:229.680000px;}
.y63_c01254{bottom:230.400000px;}
.y5f_c01254{bottom:264.960000px;}
.y5e_c01254{bottom:265.680000px;}
.y62_c01254{bottom:266.400000px;}
.y61_c01254{bottom:267.120000px;}
.y60_c01254{bottom:267.840000px;}
.y5d_c01254{bottom:269.280000px;}
.y5c_c01254{bottom:309.600000px;}
.y5b_c01254{bottom:310.320000px;}
.y5a_c01254{bottom:311.040000px;}
.y59_c01254{bottom:362.880000px;}
.y57_c01254{bottom:364.320000px;}
.y58_c01254{bottom:365.040000px;}
.y56_c01254{bottom:365.760000px;}
.y53_c01254{bottom:403.920000px;}
.y55_c01254{bottom:406.080000px;}
.y54_c01254{bottom:406.800000px;}
.y52_c01254{bottom:407.520000px;}
.y51_c01254{bottom:408.960000px;}
.y50_c01254{bottom:446.400000px;}
.y4f_c01254{bottom:447.120000px;}
.y4e_c01254{bottom:449.280000px;}
.y4d_c01254{bottom:450.000000px;}
.y4c_c01254{bottom:450.720000px;}
.y4b_c01254{bottom:451.440000px;}
.y4a_c01254{bottom:490.320000px;}
.y49_c01254{bottom:492.480000px;}
.y48_c01254{bottom:493.200000px;}
.y47_c01254{bottom:494.640000px;}
.y46_c01254{bottom:532.800000px;}
.y45_c01254{bottom:533.520000px;}
.y41_c01254{bottom:534.240000px;}
.y44_c01254{bottom:535.680000px;}
.y43_c01254{bottom:536.400000px;}
.y42_c01254{bottom:537.120000px;}
.y40_c01254{bottom:576.000000px;}
.y3d_c01254{bottom:576.720000px;}
.y3c_c01254{bottom:578.160000px;}
.y3f_c01254{bottom:578.880000px;}
.y3e_c01254{bottom:579.600000px;}
.y3b_c01254{bottom:618.480000px;}
.y38_c01254{bottom:619.200000px;}
.y3a_c01254{bottom:621.360000px;}
.y39_c01254{bottom:622.080000px;}
.y37_c01254{bottom:622.800000px;}
.y35_c01254{bottom:661.680000px;}
.y34_c01254{bottom:662.400000px;}
.y33_c01254{bottom:664.560000px;}
.y32_c01254{bottom:665.280000px;}
.y36_c01254{bottom:666.000000px;}
.y2b_c01254{bottom:704.160000px;}
.y2c_c01254{bottom:705.600000px;}
.y31_c01254{bottom:706.320000px;}
.y2e_c01254{bottom:707.040000px;}
.y2d_c01254{bottom:707.760000px;}
.y30_c01254{bottom:708.480000px;}
.y2f_c01254{bottom:709.200000px;}
.y27_c01254{bottom:747.360000px;}
.y2a_c01254{bottom:748.080000px;}
.y28_c01254{bottom:749.520000px;}
.y26_c01254{bottom:750.240000px;}
.y29_c01254{bottom:750.960000px;}
.y22_c01254{bottom:789.840000px;}
.y23_c01254{bottom:790.560000px;}
.y24_c01254{bottom:792.720000px;}
.y25_c01254{bottom:793.440000px;}
.y1f_c01254{bottom:833.040000px;}
.y1d_c01254{bottom:833.760000px;}
.y1e_c01254{bottom:835.200000px;}
.y20_c01254{bottom:835.920000px;}
.y21_c01254{bottom:836.640000px;}
.y1b_c01254{bottom:875.520000px;}
.y19_c01254{bottom:876.960000px;}
.y1a_c01254{bottom:878.400000px;}
.y1c_c01254{bottom:879.120000px;}
.y15_c01254{bottom:918.000000px;}
.y13_c01254{bottom:918.720000px;}
.y18_c01254{bottom:919.440000px;}
.y14_c01254{bottom:920.160000px;}
.y16_c01254{bottom:921.600000px;}
.y17_c01254{bottom:922.320000px;}
.yf_c01254{bottom:960.480000px;}
.yd_c01254{bottom:961.200000px;}
.ye_c01254{bottom:961.920000px;}
.y12_c01254{bottom:962.640000px;}
.y10_c01254{bottom:964.800000px;}
.y11_c01254{bottom:965.520000px;}
.y8_c01254{bottom:1004.400000px;}
.yb_c01254{bottom:1005.120000px;}
.y9_c01254{bottom:1006.560000px;}
.ya_c01254{bottom:1008.000000px;}
.yc_c01254{bottom:1008.720000px;}
.y2_c01254{bottom:1044.000000px;}
.y3_c01254{bottom:1046.160000px;}
.y7_c01254{bottom:1049.040000px;}
.y5_c01254{bottom:1049.760000px;}
.y4_c01254{bottom:1050.480000px;}
.y6_c01254{bottom:1051.920000px;}
.y1_c01254{bottom:1102.320000px;}
.ha_c01254{height:28.508906px;}
.h7_c01254{height:31.100625px;}
.hf_c01254{height:33.692344px;}
.hc_c01254{height:38.875781px;}
.h5_c01254{height:41.467500px;}
.h4_c01254{height:44.059219px;}
.h6_c01254{height:46.650937px;}
.hd_c01254{height:49.242656px;}
.h8_c01254{height:51.834375px;}
.h3_c01254{height:54.426094px;}
.h9_c01254{height:57.017812px;}
.he_c01254{height:59.609531px;}
.hb_c01254{height:62.201250px;}
.h2_c01254{height:64.792969px;}
.h1_c01254{height:1161.750000px;}
.h0_c01254{height:1162.080000px;}
.w1_c01254{width:783.750000px;}
.w0_c01254{width:784.080000px;}
.x0_c01254{left:0.000000px;}
.x2_c01254{left:67.680000px;}
.xb_c01254{left:69.120000px;}
.x38_c01254{left:70.560000px;}
.x4b_c01254{left:90.000000px;}
.x18_c01254{left:97.920000px;}
.x53_c01254{left:99.360000px;}
.x12_c01254{left:108.000000px;}
.x45_c01254{left:109.440000px;}
.x3_c01254{left:118.080000px;}
.x58_c01254{left:119.520000px;}
.x19_c01254{left:128.880000px;}
.x56_c01254{left:130.320000px;}
.x13_c01254{left:138.240000px;}
.x50_c01254{left:139.680000px;}
.x24_c01254{left:149.040000px;}
.x34_c01254{left:160.560000px;}
.x4_c01254{left:170.640000px;}
.x57_c01254{left:172.800000px;}
.x41_c01254{left:180.720000px;}
.x1e_c01254{left:182.160000px;}
.x31_c01254{left:192.240000px;}
.x39_c01254{left:203.040000px;}
.x1a_c01254{left:213.120000px;}
.x5_c01254{left:222.480000px;}
.x2e_c01254{left:223.920000px;}
.x4c_c01254{left:226.080000px;}
.xc_c01254{left:234.720000px;}
.x46_c01254{left:244.800000px;}
.x1f_c01254{left:246.240000px;}
.x2c_c01254{left:257.040000px;}
.x42_c01254{left:266.400000px;}
.x35_c01254{left:267.840000px;}
.x54_c01254{left:277.920000px;}
.x25_c01254{left:288.000000px;}
.x14_c01254{left:289.440000px;}
.x32_c01254{left:298.800000px;}
.x47_c01254{left:300.240000px;}
.xd_c01254{left:311.040000px;}
.x26_c01254{left:321.120000px;}
.x6_c01254{left:331.200000px;}
.x3a_c01254{left:342.000000px;}
.x20_c01254{left:343.440000px;}
.x27_c01254{left:354.240000px;}
.xe_c01254{left:364.320000px;}
.x36_c01254{left:375.840000px;}
.x55_c01254{left:385.200000px;}
.x3e_c01254{left:386.640000px;}
.x7_c01254{left:397.440000px;}
.x33_c01254{left:406.800000px;}
.xf_c01254{left:408.240000px;}
.x4d_c01254{left:417.600000px;}
.x48_c01254{left:419.760000px;}
.x1b_c01254{left:429.120000px;}
.x28_c01254{left:440.640000px;}
.x4e_c01254{left:452.160000px;}
.x8_c01254{left:460.800000px;}
.x49_c01254{left:462.240000px;}
.x37_c01254{left:473.040000px;}
.x4f_c01254{left:474.480000px;}
.x2f_c01254{left:483.840000px;}
.x10_c01254{left:494.640000px;}
.x21_c01254{left:505.440000px;}
.x4a_c01254{left:506.880000px;}
.x15_c01254{left:516.240000px;}
.x2d_c01254{left:527.040000px;}
.x3b_c01254{left:529.200000px;}
.x29_c01254{left:538.560000px;}
.x51_c01254{left:540.000000px;}
.x16_c01254{left:548.640000px;}
.x30_c01254{left:550.080000px;}
.x1c_c01254{left:570.240000px;}
.x2a_c01254{left:571.680000px;}
.x11_c01254{left:581.040000px;}
.x43_c01254{left:582.480000px;}
.x22_c01254{left:592.560000px;}
.x52_c01254{left:604.080000px;}
.x1d_c01254{left:614.160000px;}
.x3f_c01254{left:615.600000px;}
.x9_c01254{left:625.680000px;}
.x3c_c01254{left:636.480000px;}
.x59_c01254{left:637.920000px;}
.x40_c01254{left:646.560000px;}
.x2b_c01254{left:648.000000px;}
.x44_c01254{left:656.640000px;}
.xa_c01254{left:658.080000px;}
.x17_c01254{left:668.880000px;}
.x1_c01254{left:671.040000px;}
.x23_c01254{left:680.400000px;}
.x3d_c01254{left:691.200000px;}
@media print{
.v0_c01254{vertical-align:0.000000pt;}
.ls0_c01254{letter-spacing:0.000000pt;}
.ws0_c01254{word-spacing:-1.000960pt;}
.ws2_c01254{word-spacing:0.000000pt;}
.ws1_c01254{word-spacing:0.017920pt;}
.fs8_c01254{font-size:28.160000pt;}
.fs5_c01254{font-size:30.720000pt;}
.fsd_c01254{font-size:33.280000pt;}
.fsa_c01254{font-size:38.400000pt;}
.fs3_c01254{font-size:40.960000pt;}
.fs2_c01254{font-size:43.520000pt;}
.fs4_c01254{font-size:46.080000pt;}
.fsb_c01254{font-size:48.640000pt;}
.fs6_c01254{font-size:51.200000pt;}
.fs1_c01254{font-size:53.760000pt;}
.fs7_c01254{font-size:56.320000pt;}
.fsc_c01254{font-size:58.880000pt;}
.fs9_c01254{font-size:61.440000pt;}
.fs0_c01254{font-size:64.000000pt;}
.y0_c01254{bottom:0.000000pt;}
.y80_c01254{bottom:33.280000pt;}
.y7f_c01254{bottom:37.120000pt;}
.y7e_c01254{bottom:37.760000pt;}
.y7d_c01254{bottom:38.400000pt;}
.y7c_c01254{bottom:40.960000pt;}
.y7b_c01254{bottom:42.240000pt;}
.y7a_c01254{bottom:44.800000pt;}
.y78_c01254{bottom:72.960000pt;}
.y76_c01254{bottom:74.240000pt;}
.y79_c01254{bottom:74.880000pt;}
.y77_c01254{bottom:76.160000pt;}
.y75_c01254{bottom:76.800000pt;}
.y74_c01254{bottom:80.000000pt;}
.y73_c01254{bottom:124.160000pt;}
.y72_c01254{bottom:127.360000pt;}
.y71_c01254{bottom:129.280000pt;}
.y6f_c01254{bottom:159.360000pt;}
.y70_c01254{bottom:160.640000pt;}
.y6d_c01254{bottom:161.280000pt;}
.y6e_c01254{bottom:161.920000pt;}
.y6c_c01254{bottom:164.480000pt;}
.y6b_c01254{bottom:166.400000pt;}
.y6a_c01254{bottom:168.320000pt;}
.y69_c01254{bottom:197.120000pt;}
.y68_c01254{bottom:197.760000pt;}
.y67_c01254{bottom:199.040000pt;}
.y66_c01254{bottom:199.680000pt;}
.y65_c01254{bottom:202.240000pt;}
.y64_c01254{bottom:204.160000pt;}
.y63_c01254{bottom:204.800000pt;}
.y5f_c01254{bottom:235.520000pt;}
.y5e_c01254{bottom:236.160000pt;}
.y62_c01254{bottom:236.800000pt;}
.y61_c01254{bottom:237.440000pt;}
.y60_c01254{bottom:238.080000pt;}
.y5d_c01254{bottom:239.360000pt;}
.y5c_c01254{bottom:275.200000pt;}
.y5b_c01254{bottom:275.840000pt;}
.y5a_c01254{bottom:276.480000pt;}
.y59_c01254{bottom:322.560000pt;}
.y57_c01254{bottom:323.840000pt;}
.y58_c01254{bottom:324.480000pt;}
.y56_c01254{bottom:325.120000pt;}
.y53_c01254{bottom:359.040000pt;}
.y55_c01254{bottom:360.960000pt;}
.y54_c01254{bottom:361.600000pt;}
.y52_c01254{bottom:362.240000pt;}
.y51_c01254{bottom:363.520000pt;}
.y50_c01254{bottom:396.800000pt;}
.y4f_c01254{bottom:397.440000pt;}
.y4e_c01254{bottom:399.360000pt;}
.y4d_c01254{bottom:400.000000pt;}
.y4c_c01254{bottom:400.640000pt;}
.y4b_c01254{bottom:401.280000pt;}
.y4a_c01254{bottom:435.840000pt;}
.y49_c01254{bottom:437.760000pt;}
.y48_c01254{bottom:438.400000pt;}
.y47_c01254{bottom:439.680000pt;}
.y46_c01254{bottom:473.600000pt;}
.y45_c01254{bottom:474.240000pt;}
.y41_c01254{bottom:474.880000pt;}
.y44_c01254{bottom:476.160000pt;}
.y43_c01254{bottom:476.800000pt;}
.y42_c01254{bottom:477.440000pt;}
.y40_c01254{bottom:512.000000pt;}
.y3d_c01254{bottom:512.640000pt;}
.y3c_c01254{bottom:513.920000pt;}
.y3f_c01254{bottom:514.560000pt;}
.y3e_c01254{bottom:515.200000pt;}
.y3b_c01254{bottom:549.760000pt;}
.y38_c01254{bottom:550.400000pt;}
.y3a_c01254{bottom:552.320000pt;}
.y39_c01254{bottom:552.960000pt;}
.y37_c01254{bottom:553.600000pt;}
.y35_c01254{bottom:588.160000pt;}
.y34_c01254{bottom:588.800000pt;}
.y33_c01254{bottom:590.720000pt;}
.y32_c01254{bottom:591.360000pt;}
.y36_c01254{bottom:592.000000pt;}
.y2b_c01254{bottom:625.920000pt;}
.y2c_c01254{bottom:627.200000pt;}
.y31_c01254{bottom:627.840000pt;}
.y2e_c01254{bottom:628.480000pt;}
.y2d_c01254{bottom:629.120000pt;}
.y30_c01254{bottom:629.760000pt;}
.y2f_c01254{bottom:630.400000pt;}
.y27_c01254{bottom:664.320000pt;}
.y2a_c01254{bottom:664.960000pt;}
.y28_c01254{bottom:666.240000pt;}
.y26_c01254{bottom:666.880000pt;}
.y29_c01254{bottom:667.520000pt;}
.y22_c01254{bottom:702.080000pt;}
.y23_c01254{bottom:702.720000pt;}
.y24_c01254{bottom:704.640000pt;}
.y25_c01254{bottom:705.280000pt;}
.y1f_c01254{bottom:740.480000pt;}
.y1d_c01254{bottom:741.120000pt;}
.y1e_c01254{bottom:742.400000pt;}
.y20_c01254{bottom:743.040000pt;}
.y21_c01254{bottom:743.680000pt;}
.y1b_c01254{bottom:778.240000pt;}
.y19_c01254{bottom:779.520000pt;}
.y1a_c01254{bottom:780.800000pt;}
.y1c_c01254{bottom:781.440000pt;}
.y15_c01254{bottom:816.000000pt;}
.y13_c01254{bottom:816.640000pt;}
.y18_c01254{bottom:817.280000pt;}
.y14_c01254{bottom:817.920000pt;}
.y16_c01254{bottom:819.200000pt;}
.y17_c01254{bottom:819.840000pt;}
.yf_c01254{bottom:853.760000pt;}
.yd_c01254{bottom:854.400000pt;}
.ye_c01254{bottom:855.040000pt;}
.y12_c01254{bottom:855.680000pt;}
.y10_c01254{bottom:857.600000pt;}
.y11_c01254{bottom:858.240000pt;}
.y8_c01254{bottom:892.800000pt;}
.yb_c01254{bottom:893.440000pt;}
.y9_c01254{bottom:894.720000pt;}
.ya_c01254{bottom:896.000000pt;}
.yc_c01254{bottom:896.640000pt;}
.y2_c01254{bottom:928.000000pt;}
.y3_c01254{bottom:929.920000pt;}
.y7_c01254{bottom:932.480000pt;}
.y5_c01254{bottom:933.120000pt;}
.y4_c01254{bottom:933.760000pt;}
.y6_c01254{bottom:935.040000pt;}
.y1_c01254{bottom:979.840000pt;}
.ha_c01254{height:25.341250pt;}
.h7_c01254{height:27.645000pt;}
.hf_c01254{height:29.948750pt;}
.hc_c01254{height:34.556250pt;}
.h5_c01254{height:36.860000pt;}
.h4_c01254{height:39.163750pt;}
.h6_c01254{height:41.467500pt;}
.hd_c01254{height:43.771250pt;}
.h8_c01254{height:46.075000pt;}
.h3_c01254{height:48.378750pt;}
.h9_c01254{height:50.682500pt;}
.he_c01254{height:52.986250pt;}
.hb_c01254{height:55.290000pt;}
.h2_c01254{height:57.593750pt;}
.h1_c01254{height:1032.666667pt;}
.h0_c01254{height:1032.960000pt;}
.w1_c01254{width:696.666667pt;}
.w0_c01254{width:696.960000pt;}
.x0_c01254{left:0.000000pt;}
.x2_c01254{left:60.160000pt;}
.xb_c01254{left:61.440000pt;}
.x38_c01254{left:62.720000pt;}
.x4b_c01254{left:80.000000pt;}
.x18_c01254{left:87.040000pt;}
.x53_c01254{left:88.320000pt;}
.x12_c01254{left:96.000000pt;}
.x45_c01254{left:97.280000pt;}
.x3_c01254{left:104.960000pt;}
.x58_c01254{left:106.240000pt;}
.x19_c01254{left:114.560000pt;}
.x56_c01254{left:115.840000pt;}
.x13_c01254{left:122.880000pt;}
.x50_c01254{left:124.160000pt;}
.x24_c01254{left:132.480000pt;}
.x34_c01254{left:142.720000pt;}
.x4_c01254{left:151.680000pt;}
.x57_c01254{left:153.600000pt;}
.x41_c01254{left:160.640000pt;}
.x1e_c01254{left:161.920000pt;}
.x31_c01254{left:170.880000pt;}
.x39_c01254{left:180.480000pt;}
.x1a_c01254{left:189.440000pt;}
.x5_c01254{left:197.760000pt;}
.x2e_c01254{left:199.040000pt;}
.x4c_c01254{left:200.960000pt;}
.xc_c01254{left:208.640000pt;}
.x46_c01254{left:217.600000pt;}
.x1f_c01254{left:218.880000pt;}
.x2c_c01254{left:228.480000pt;}
.x42_c01254{left:236.800000pt;}
.x35_c01254{left:238.080000pt;}
.x54_c01254{left:247.040000pt;}
.x25_c01254{left:256.000000pt;}
.x14_c01254{left:257.280000pt;}
.x32_c01254{left:265.600000pt;}
.x47_c01254{left:266.880000pt;}
.xd_c01254{left:276.480000pt;}
.x26_c01254{left:285.440000pt;}
.x6_c01254{left:294.400000pt;}
.x3a_c01254{left:304.000000pt;}
.x20_c01254{left:305.280000pt;}
.x27_c01254{left:314.880000pt;}
.xe_c01254{left:323.840000pt;}
.x36_c01254{left:334.080000pt;}
.x55_c01254{left:342.400000pt;}
.x3e_c01254{left:343.680000pt;}
.x7_c01254{left:353.280000pt;}
.x33_c01254{left:361.600000pt;}
.xf_c01254{left:362.880000pt;}
.x4d_c01254{left:371.200000pt;}
.x48_c01254{left:373.120000pt;}
.x1b_c01254{left:381.440000pt;}
.x28_c01254{left:391.680000pt;}
.x4e_c01254{left:401.920000pt;}
.x8_c01254{left:409.600000pt;}
.x49_c01254{left:410.880000pt;}
.x37_c01254{left:420.480000pt;}
.x4f_c01254{left:421.760000pt;}
.x2f_c01254{left:430.080000pt;}
.x10_c01254{left:439.680000pt;}
.x21_c01254{left:449.280000pt;}
.x4a_c01254{left:450.560000pt;}
.x15_c01254{left:458.880000pt;}
.x2d_c01254{left:468.480000pt;}
.x3b_c01254{left:470.400000pt;}
.x29_c01254{left:478.720000pt;}
.x51_c01254{left:480.000000pt;}
.x16_c01254{left:487.680000pt;}
.x30_c01254{left:488.960000pt;}
.x1c_c01254{left:506.880000pt;}
.x2a_c01254{left:508.160000pt;}
.x11_c01254{left:516.480000pt;}
.x43_c01254{left:517.760000pt;}
.x22_c01254{left:526.720000pt;}
.x52_c01254{left:536.960000pt;}
.x1d_c01254{left:545.920000pt;}
.x3f_c01254{left:547.200000pt;}
.x9_c01254{left:556.160000pt;}
.x3c_c01254{left:565.760000pt;}
.x59_c01254{left:567.040000pt;}
.x40_c01254{left:574.720000pt;}
.x2b_c01254{left:576.000000pt;}
.x44_c01254{left:583.680000pt;}
.xa_c01254{left:584.960000pt;}
.x17_c01254{left:594.560000pt;}
.x1_c01254{left:596.480000pt;}
.x23_c01254{left:604.800000pt;}
.x3d_c01254{left:614.400000pt;}
}





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

.ir_c01255:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01255{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01255;src:url('chunks/assets/font_6df118c4027f892873254159.woff2')format("woff");}.ff1_c01255{font-family:ff1_c01255;line-height:1.109863;font-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_c01255{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01255{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m25_c01255{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);}
.m46_c01255{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);}
.m52_c01255{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m17_c01255{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);}
.m3c_c01255{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m51_c01255{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m34_c01255{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01255{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m54_c01255{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01255{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01255{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m50_c01255{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m39_c01255{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m42_c01255{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01255{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01255{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01255{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);}
.m36_c01255{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m1_c01255{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m4_c01255{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m29_c01255{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01255{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m14_c01255{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m40_c01255{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);}
.m16_c01255{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);}
.m5_c01255{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m3_c01255{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m18_c01255{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m12_c01255{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);}
.m2d_c01255{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);}
.m0_c01255{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m53_c01255{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);}
.m37_c01255{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m27_c01255{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);}
.m23_c01255{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01255{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m19_c01255{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.me_c01255{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m26_c01255{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m10_c01255{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);}
.m3e_c01255{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m13_c01255{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);}
.mf_c01255{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m31_c01255{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);}
.m11_c01255{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);}
.mb_c01255{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m20_c01255{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m22_c01255{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01255{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);}
.m44_c01255{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m30_c01255{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m49_c01255{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);}
.m35_c01255{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m24_c01255{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);}
.m2a_c01255{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01255{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01255{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.md_c01255{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);}
.m2e_c01255{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);}
.m38_c01255{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m6_c01255{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m8_c01255{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01255{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m2_c01255{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);}
.m4d_c01255{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01255{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.mc_c01255{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);}
.m45_c01255{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m33_c01255{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);}
.m47_c01255{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m7_c01255{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01255{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);}
.m32_c01255{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);}
.m43_c01255{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m48_c01255{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01255{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m9_c01255{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01255{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);}
.m2c_c01255{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m55_c01255{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m41_c01255{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01255{transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01255{transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);}
.m15_c01255{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.v0_c01255{vertical-align:0.000000px;}
.ls0_c01255{letter-spacing:0.000000px;}
.sc__c01255{text-shadow:none;}
.sc0_c01255{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01255{-webkit-text-stroke:0px transparent;}
.sc0_c01255{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01255{word-spacing:-6.434160px;}
.ws1_c01255{word-spacing:0.000000px;}
.fc0_c01255{color:transparent;}
.fs9_c01255{font-size:11.520000px;}
.fsb_c01255{font-size:14.400000px;}
.fs7_c01255{font-size:34.560000px;}
.fsd_c01255{font-size:37.440000px;}
.fsf_c01255{font-size:40.320000px;}
.fs6_c01255{font-size:43.200000px;}
.fs2_c01255{font-size:46.080000px;}
.fs3_c01255{font-size:48.960000px;}
.fs4_c01255{font-size:51.840000px;}
.fsc_c01255{font-size:54.720000px;}
.fse_c01255{font-size:57.600000px;}
.fs5_c01255{font-size:60.480000px;}
.fs8_c01255{font-size:63.360000px;}
.fs1_c01255{font-size:66.240000px;}
.fsa_c01255{font-size:69.120000px;}
.fs0_c01255{font-size:72.000000px;}
.y0_c01255{bottom:0.000000px;}
.y76_c01255{bottom:61.200000px;}
.y78_c01255{bottom:61.920000px;}
.y7a_c01255{bottom:63.360000px;}
.y79_c01255{bottom:64.080000px;}
.y77_c01255{bottom:64.800000px;}
.y75_c01255{bottom:65.520000px;}
.y74_c01255{bottom:66.240000px;}
.y73_c01255{bottom:68.400000px;}
.y71_c01255{bottom:105.120000px;}
.y6f_c01255{bottom:105.840000px;}
.y72_c01255{bottom:107.280000px;}
.y70_c01255{bottom:108.000000px;}
.y6e_c01255{bottom:108.720000px;}
.y6d_c01255{bottom:110.880000px;}
.y6c_c01255{bottom:162.000000px;}
.y6a_c01255{bottom:164.880000px;}
.y6b_c01255{bottom:166.320000px;}
.y68_c01255{bottom:201.600000px;}
.y66_c01255{bottom:202.320000px;}
.y69_c01255{bottom:203.760000px;}
.y67_c01255{bottom:204.480000px;}
.y65_c01255{bottom:205.920000px;}
.y64_c01255{bottom:208.080000px;}
.y62_c01255{bottom:244.080000px;}
.y61_c01255{bottom:244.800000px;}
.y63_c01255{bottom:247.680000px;}
.y60_c01255{bottom:248.400000px;}
.y5f_c01255{bottom:250.560000px;}
.y5e_c01255{bottom:251.280000px;}
.y5c_c01255{bottom:287.280000px;}
.y5a_c01255{bottom:288.000000px;}
.y59_c01255{bottom:288.720000px;}
.y5b_c01255{bottom:290.160000px;}
.y5d_c01255{bottom:290.880000px;}
.y58_c01255{bottom:292.320000px;}
.y57_c01255{bottom:293.760000px;}
.y53_c01255{bottom:330.480000px;}
.y54_c01255{bottom:332.640000px;}
.y56_c01255{bottom:333.360000px;}
.y55_c01255{bottom:334.080000px;}
.y52_c01255{bottom:334.800000px;}
.y4e_c01255{bottom:372.960000px;}
.y50_c01255{bottom:373.680000px;}
.y51_c01255{bottom:374.400000px;}
.y4c_c01255{bottom:375.120000px;}
.y4f_c01255{bottom:375.840000px;}
.y4d_c01255{bottom:377.280000px;}
.y4b_c01255{bottom:378.000000px;}
.y47_c01255{bottom:416.160000px;}
.y48_c01255{bottom:416.880000px;}
.y4a_c01255{bottom:417.600000px;}
.y45_c01255{bottom:419.040000px;}
.y46_c01255{bottom:419.760000px;}
.y49_c01255{bottom:420.480000px;}
.y44_c01255{bottom:462.240000px;}
.y42_c01255{bottom:462.960000px;}
.y43_c01255{bottom:463.680000px;}
.y41_c01255{bottom:502.560000px;}
.y40_c01255{bottom:504.720000px;}
.y3f_c01255{bottom:505.440000px;}
.y3e_c01255{bottom:506.160000px;}
.y3b_c01255{bottom:545.040000px;}
.y39_c01255{bottom:545.760000px;}
.y3c_c01255{bottom:546.480000px;}
.y3a_c01255{bottom:547.920000px;}
.y38_c01255{bottom:548.640000px;}
.y3d_c01255{bottom:549.360000px;}
.y35_c01255{bottom:587.520000px;}
.y37_c01255{bottom:588.960000px;}
.y34_c01255{bottom:590.400000px;}
.y36_c01255{bottom:591.840000px;}
.y30_c01255{bottom:640.800000px;}
.y32_c01255{bottom:642.960000px;}
.y2e_c01255{bottom:643.680000px;}
.y33_c01255{bottom:644.400000px;}
.y31_c01255{bottom:645.120000px;}
.y2f_c01255{bottom:646.560000px;}
.y2b_c01255{bottom:683.280000px;}
.y2d_c01255{bottom:684.720000px;}
.y2a_c01255{bottom:686.160000px;}
.y2c_c01255{bottom:686.880000px;}
.y27_c01255{bottom:726.480000px;}
.y28_c01255{bottom:727.920000px;}
.y25_c01255{bottom:728.640000px;}
.y29_c01255{bottom:730.080000px;}
.y26_c01255{bottom:731.520000px;}
.y23_c01255{bottom:770.400000px;}
.y1f_c01255{bottom:771.120000px;}
.y21_c01255{bottom:771.840000px;}
.y22_c01255{bottom:773.280000px;}
.y24_c01255{bottom:774.000000px;}
.y20_c01255{bottom:774.720000px;}
.y1e_c01255{bottom:812.880000px;}
.y1a_c01255{bottom:813.600000px;}
.y1c_c01255{bottom:815.040000px;}
.y1d_c01255{bottom:815.760000px;}
.y1b_c01255{bottom:816.480000px;}
.y16_c01255{bottom:856.080000px;}
.y18_c01255{bottom:856.800000px;}
.y19_c01255{bottom:857.520000px;}
.y17_c01255{bottom:858.960000px;}
.y13_c01255{bottom:898.560000px;}
.y15_c01255{bottom:901.440000px;}
.y14_c01255{bottom:902.160000px;}
.y10_c01255{bottom:948.960000px;}
.y12_c01255{bottom:952.560000px;}
.y11_c01255{bottom:953.280000px;}
.ya_c01255{bottom:990.720000px;}
.yb_c01255{bottom:995.760000px;}
.yd_c01255{bottom:997.200000px;}
.yc_c01255{bottom:997.920000px;}
.yf_c01255{bottom:998.640000px;}
.ye_c01255{bottom:999.360000px;}
.y2_c01255{bottom:1036.080000px;}
.y3_c01255{bottom:1038.240000px;}
.y5_c01255{bottom:1039.680000px;}
.y6_c01255{bottom:1041.120000px;}
.y4_c01255{bottom:1041.840000px;}
.y7_c01255{bottom:1043.280000px;}
.y9_c01255{bottom:1044.720000px;}
.y8_c01255{bottom:1045.440000px;}
.y1_c01255{bottom:1098.720000px;}
.hb_c01255{height:10.366875px;}
.hd_c01255{height:12.958594px;}
.h9_c01255{height:31.100625px;}
.hf_c01255{height:33.692344px;}
.h11_c01255{height:36.284062px;}
.h8_c01255{height:38.875781px;}
.h4_c01255{height:41.467500px;}
.h5_c01255{height:44.059219px;}
.h6_c01255{height:46.650937px;}
.he_c01255{height:49.242656px;}
.h10_c01255{height:51.834375px;}
.h7_c01255{height:54.426094px;}
.ha_c01255{height:57.017812px;}
.h3_c01255{height:59.609531px;}
.hc_c01255{height:62.201250px;}
.h2_c01255{height:64.792969px;}
.h1_c01255{height:1164.000000px;}
.h0_c01255{height:1164.240000px;}
.w1_c01255{width:787.500000px;}
.w0_c01255{width:787.680000px;}
.x0_c01255{left:0.000000px;}
.x2_c01255{left:66.240000px;}
.x18_c01255{left:68.400000px;}
.x28_c01255{left:69.840000px;}
.x4a_c01255{left:71.280000px;}
.x69_c01255{left:72.720000px;}
.x63_c01255{left:101.520000px;}
.xc_c01255{left:105.840000px;}
.x24_c01255{left:107.280000px;}
.x45_c01255{left:109.440000px;}
.x13_c01255{left:116.640000px;}
.x33_c01255{left:118.080000px;}
.x54_c01255{left:120.960000px;}
.x15_c01255{left:126.000000px;}
.x19_c01255{left:127.440000px;}
.x25_c01255{left:128.880000px;}
.x64_c01255{left:131.760000px;}
.x14_c01255{left:138.240000px;}
.x55_c01255{left:141.840000px;}
.x34_c01255{left:149.760000px;}
.x5b_c01255{left:151.200000px;}
.x3a_c01255{left:160.560000px;}
.x2e_c01255{left:171.360000px;}
.x65_c01255{left:172.800000px;}
.x1a_c01255{left:180.000000px;}
.x3b_c01255{left:192.240000px;}
.x4e_c01255{left:203.040000px;}
.x66_c01255{left:205.200000px;}
.xd_c01255{left:211.680000px;}
.x4b_c01255{left:214.560000px;}
.x6a_c01255{left:216.000000px;}
.x2f_c01255{left:223.920000px;}
.x5f_c01255{left:226.800000px;}
.xe_c01255{left:232.560000px;}
.x3c_c01255{left:234.720000px;}
.x3_c01255{left:242.640000px;}
.x1c_c01255{left:244.080000px;}
.x26_c01255{left:246.240000px;}
.x4f_c01255{left:257.040000px;}
.x16_c01255{left:265.680000px;}
.x46_c01255{left:267.840000px;}
.x35_c01255{left:277.920000px;}
.x4_c01255{left:285.120000px;}
.x56_c01255{left:289.440000px;}
.xf_c01255{left:296.640000px;}
.x1d_c01255{left:310.320000px;}
.x6b_c01255{left:312.480000px;}
.x3d_c01255{left:321.840000px;}
.x60_c01255{left:323.280000px;}
.x1e_c01255{left:330.480000px;}
.x40_c01255{left:331.920000px;}
.x29_c01255{left:342.000000px;}
.x57_c01255{left:343.440000px;}
.x61_c01255{left:344.880000px;}
.x5_c01255{left:351.360000px;}
.x1f_c01255{left:352.800000px;}
.x50_c01255{left:354.240000px;}
.x6c_c01255{left:355.680000px;}
.x1b_c01255{left:363.600000px;}
.x2a_c01255{left:365.040000px;}
.x17_c01255{left:372.960000px;}
.x6_c01255{left:383.760000px;}
.x2c_c01255{left:387.360000px;}
.x41_c01255{left:396.000000px;}
.x51_c01255{left:397.440000px;}
.x62_c01255{left:399.600000px;}
.x47_c01255{left:408.240000px;}
.x36_c01255{left:418.320000px;}
.x4c_c01255{left:419.760000px;}
.x67_c01255{left:421.200000px;}
.x2d_c01255{left:427.680000px;}
.x37_c01255{left:440.640000px;}
.x58_c01255{left:442.080000px;}
.x10_c01255{left:449.280000px;}
.x20_c01255{left:451.440000px;}
.x52_c01255{left:453.600000px;}
.x27_c01255{left:460.080000px;}
.x22_c01255{left:462.240000px;}
.x7_c01255{left:470.880000px;}
.x3e_c01255{left:473.040000px;}
.x42_c01255{left:484.560000px;}
.x8_c01255{left:492.480000px;}
.x30_c01255{left:494.640000px;}
.x5c_c01255{left:496.080000px;}
.x2b_c01255{left:504.720000px;}
.x43_c01255{left:516.240000px;}
.x59_c01255{left:528.480000px;}
.x9_c01255{left:535.680000px;}
.x38_c01255{left:537.840000px;}
.x5d_c01255{left:540.000000px;}
.x21_c01255{left:557.280000px;}
.x23_c01255{left:568.800000px;}
.x44_c01255{left:571.680000px;}
.x11_c01255{left:581.040000px;}
.x48_c01255{left:593.280000px;}
.x4d_c01255{left:604.080000px;}
.x3f_c01255{left:614.880000px;}
.x68_c01255{left:616.320000px;}
.x31_c01255{left:624.240000px;}
.x6d_c01255{left:628.560000px;}
.x49_c01255{left:637.200000px;}
.xa_c01255{left:645.840000px;}
.x5e_c01255{left:648.720000px;}
.x12_c01255{left:655.920000px;}
.x32_c01255{left:657.360000px;}
.x5a_c01255{left:659.520000px;}
.x1_c01255{left:663.120000px;}
.x39_c01255{left:668.880000px;}
.xb_c01255{left:676.800000px;}
.x53_c01255{left:681.120000px;}
@media print{
.v0_c01255{vertical-align:0.000000pt;}
.ls0_c01255{letter-spacing:0.000000pt;}
.ws0_c01255{word-spacing:-5.719253pt;}
.ws1_c01255{word-spacing:0.000000pt;}
.fs9_c01255{font-size:10.240000pt;}
.fsb_c01255{font-size:12.800000pt;}
.fs7_c01255{font-size:30.720000pt;}
.fsd_c01255{font-size:33.280000pt;}
.fsf_c01255{font-size:35.840000pt;}
.fs6_c01255{font-size:38.400000pt;}
.fs2_c01255{font-size:40.960000pt;}
.fs3_c01255{font-size:43.520000pt;}
.fs4_c01255{font-size:46.080000pt;}
.fsc_c01255{font-size:48.640000pt;}
.fse_c01255{font-size:51.200000pt;}
.fs5_c01255{font-size:53.760000pt;}
.fs8_c01255{font-size:56.320000pt;}
.fs1_c01255{font-size:58.880000pt;}
.fsa_c01255{font-size:61.440000pt;}
.fs0_c01255{font-size:64.000000pt;}
.y0_c01255{bottom:0.000000pt;}
.y76_c01255{bottom:54.400000pt;}
.y78_c01255{bottom:55.040000pt;}
.y7a_c01255{bottom:56.320000pt;}
.y79_c01255{bottom:56.960000pt;}
.y77_c01255{bottom:57.600000pt;}
.y75_c01255{bottom:58.240000pt;}
.y74_c01255{bottom:58.880000pt;}
.y73_c01255{bottom:60.800000pt;}
.y71_c01255{bottom:93.440000pt;}
.y6f_c01255{bottom:94.080000pt;}
.y72_c01255{bottom:95.360000pt;}
.y70_c01255{bottom:96.000000pt;}
.y6e_c01255{bottom:96.640000pt;}
.y6d_c01255{bottom:98.560000pt;}
.y6c_c01255{bottom:144.000000pt;}
.y6a_c01255{bottom:146.560000pt;}
.y6b_c01255{bottom:147.840000pt;}
.y68_c01255{bottom:179.200000pt;}
.y66_c01255{bottom:179.840000pt;}
.y69_c01255{bottom:181.120000pt;}
.y67_c01255{bottom:181.760000pt;}
.y65_c01255{bottom:183.040000pt;}
.y64_c01255{bottom:184.960000pt;}
.y62_c01255{bottom:216.960000pt;}
.y61_c01255{bottom:217.600000pt;}
.y63_c01255{bottom:220.160000pt;}
.y60_c01255{bottom:220.800000pt;}
.y5f_c01255{bottom:222.720000pt;}
.y5e_c01255{bottom:223.360000pt;}
.y5c_c01255{bottom:255.360000pt;}
.y5a_c01255{bottom:256.000000pt;}
.y59_c01255{bottom:256.640000pt;}
.y5b_c01255{bottom:257.920000pt;}
.y5d_c01255{bottom:258.560000pt;}
.y58_c01255{bottom:259.840000pt;}
.y57_c01255{bottom:261.120000pt;}
.y53_c01255{bottom:293.760000pt;}
.y54_c01255{bottom:295.680000pt;}
.y56_c01255{bottom:296.320000pt;}
.y55_c01255{bottom:296.960000pt;}
.y52_c01255{bottom:297.600000pt;}
.y4e_c01255{bottom:331.520000pt;}
.y50_c01255{bottom:332.160000pt;}
.y51_c01255{bottom:332.800000pt;}
.y4c_c01255{bottom:333.440000pt;}
.y4f_c01255{bottom:334.080000pt;}
.y4d_c01255{bottom:335.360000pt;}
.y4b_c01255{bottom:336.000000pt;}
.y47_c01255{bottom:369.920000pt;}
.y48_c01255{bottom:370.560000pt;}
.y4a_c01255{bottom:371.200000pt;}
.y45_c01255{bottom:372.480000pt;}
.y46_c01255{bottom:373.120000pt;}
.y49_c01255{bottom:373.760000pt;}
.y44_c01255{bottom:410.880000pt;}
.y42_c01255{bottom:411.520000pt;}
.y43_c01255{bottom:412.160000pt;}
.y41_c01255{bottom:446.720000pt;}
.y40_c01255{bottom:448.640000pt;}
.y3f_c01255{bottom:449.280000pt;}
.y3e_c01255{bottom:449.920000pt;}
.y3b_c01255{bottom:484.480000pt;}
.y39_c01255{bottom:485.120000pt;}
.y3c_c01255{bottom:485.760000pt;}
.y3a_c01255{bottom:487.040000pt;}
.y38_c01255{bottom:487.680000pt;}
.y3d_c01255{bottom:488.320000pt;}
.y35_c01255{bottom:522.240000pt;}
.y37_c01255{bottom:523.520000pt;}
.y34_c01255{bottom:524.800000pt;}
.y36_c01255{bottom:526.080000pt;}
.y30_c01255{bottom:569.600000pt;}
.y32_c01255{bottom:571.520000pt;}
.y2e_c01255{bottom:572.160000pt;}
.y33_c01255{bottom:572.800000pt;}
.y31_c01255{bottom:573.440000pt;}
.y2f_c01255{bottom:574.720000pt;}
.y2b_c01255{bottom:607.360000pt;}
.y2d_c01255{bottom:608.640000pt;}
.y2a_c01255{bottom:609.920000pt;}
.y2c_c01255{bottom:610.560000pt;}
.y27_c01255{bottom:645.760000pt;}
.y28_c01255{bottom:647.040000pt;}
.y25_c01255{bottom:647.680000pt;}
.y29_c01255{bottom:648.960000pt;}
.y26_c01255{bottom:650.240000pt;}
.y23_c01255{bottom:684.800000pt;}
.y1f_c01255{bottom:685.440000pt;}
.y21_c01255{bottom:686.080000pt;}
.y22_c01255{bottom:687.360000pt;}
.y24_c01255{bottom:688.000000pt;}
.y20_c01255{bottom:688.640000pt;}
.y1e_c01255{bottom:722.560000pt;}
.y1a_c01255{bottom:723.200000pt;}
.y1c_c01255{bottom:724.480000pt;}
.y1d_c01255{bottom:725.120000pt;}
.y1b_c01255{bottom:725.760000pt;}
.y16_c01255{bottom:760.960000pt;}
.y18_c01255{bottom:761.600000pt;}
.y19_c01255{bottom:762.240000pt;}
.y17_c01255{bottom:763.520000pt;}
.y13_c01255{bottom:798.720000pt;}
.y15_c01255{bottom:801.280000pt;}
.y14_c01255{bottom:801.920000pt;}
.y10_c01255{bottom:843.520000pt;}
.y12_c01255{bottom:846.720000pt;}
.y11_c01255{bottom:847.360000pt;}
.ya_c01255{bottom:880.640000pt;}
.yb_c01255{bottom:885.120000pt;}
.yd_c01255{bottom:886.400000pt;}
.yc_c01255{bottom:887.040000pt;}
.yf_c01255{bottom:887.680000pt;}
.ye_c01255{bottom:888.320000pt;}
.y2_c01255{bottom:920.960000pt;}
.y3_c01255{bottom:922.880000pt;}
.y5_c01255{bottom:924.160000pt;}
.y6_c01255{bottom:925.440000pt;}
.y4_c01255{bottom:926.080000pt;}
.y7_c01255{bottom:927.360000pt;}
.y9_c01255{bottom:928.640000pt;}
.y8_c01255{bottom:929.280000pt;}
.y1_c01255{bottom:976.640000pt;}
.hb_c01255{height:9.215000pt;}
.hd_c01255{height:11.518750pt;}
.h9_c01255{height:27.645000pt;}
.hf_c01255{height:29.948750pt;}
.h11_c01255{height:32.252500pt;}
.h8_c01255{height:34.556250pt;}
.h4_c01255{height:36.860000pt;}
.h5_c01255{height:39.163750pt;}
.h6_c01255{height:41.467500pt;}
.he_c01255{height:43.771250pt;}
.h10_c01255{height:46.075000pt;}
.h7_c01255{height:48.378750pt;}
.ha_c01255{height:50.682500pt;}
.h3_c01255{height:52.986250pt;}
.hc_c01255{height:55.290000pt;}
.h2_c01255{height:57.593750pt;}
.h1_c01255{height:1034.666667pt;}
.h0_c01255{height:1034.880000pt;}
.w1_c01255{width:700.000000pt;}
.w0_c01255{width:700.160000pt;}
.x0_c01255{left:0.000000pt;}
.x2_c01255{left:58.880000pt;}
.x18_c01255{left:60.800000pt;}
.x28_c01255{left:62.080000pt;}
.x4a_c01255{left:63.360000pt;}
.x69_c01255{left:64.640000pt;}
.x63_c01255{left:90.240000pt;}
.xc_c01255{left:94.080000pt;}
.x24_c01255{left:95.360000pt;}
.x45_c01255{left:97.280000pt;}
.x13_c01255{left:103.680000pt;}
.x33_c01255{left:104.960000pt;}
.x54_c01255{left:107.520000pt;}
.x15_c01255{left:112.000000pt;}
.x19_c01255{left:113.280000pt;}
.x25_c01255{left:114.560000pt;}
.x64_c01255{left:117.120000pt;}
.x14_c01255{left:122.880000pt;}
.x55_c01255{left:126.080000pt;}
.x34_c01255{left:133.120000pt;}
.x5b_c01255{left:134.400000pt;}
.x3a_c01255{left:142.720000pt;}
.x2e_c01255{left:152.320000pt;}
.x65_c01255{left:153.600000pt;}
.x1a_c01255{left:160.000000pt;}
.x3b_c01255{left:170.880000pt;}
.x4e_c01255{left:180.480000pt;}
.x66_c01255{left:182.400000pt;}
.xd_c01255{left:188.160000pt;}
.x4b_c01255{left:190.720000pt;}
.x6a_c01255{left:192.000000pt;}
.x2f_c01255{left:199.040000pt;}
.x5f_c01255{left:201.600000pt;}
.xe_c01255{left:206.720000pt;}
.x3c_c01255{left:208.640000pt;}
.x3_c01255{left:215.680000pt;}
.x1c_c01255{left:216.960000pt;}
.x26_c01255{left:218.880000pt;}
.x4f_c01255{left:228.480000pt;}
.x16_c01255{left:236.160000pt;}
.x46_c01255{left:238.080000pt;}
.x35_c01255{left:247.040000pt;}
.x4_c01255{left:253.440000pt;}
.x56_c01255{left:257.280000pt;}
.xf_c01255{left:263.680000pt;}
.x1d_c01255{left:275.840000pt;}
.x6b_c01255{left:277.760000pt;}
.x3d_c01255{left:286.080000pt;}
.x60_c01255{left:287.360000pt;}
.x1e_c01255{left:293.760000pt;}
.x40_c01255{left:295.040000pt;}
.x29_c01255{left:304.000000pt;}
.x57_c01255{left:305.280000pt;}
.x61_c01255{left:306.560000pt;}
.x5_c01255{left:312.320000pt;}
.x1f_c01255{left:313.600000pt;}
.x50_c01255{left:314.880000pt;}
.x6c_c01255{left:316.160000pt;}
.x1b_c01255{left:323.200000pt;}
.x2a_c01255{left:324.480000pt;}
.x17_c01255{left:331.520000pt;}
.x6_c01255{left:341.120000pt;}
.x2c_c01255{left:344.320000pt;}
.x41_c01255{left:352.000000pt;}
.x51_c01255{left:353.280000pt;}
.x62_c01255{left:355.200000pt;}
.x47_c01255{left:362.880000pt;}
.x36_c01255{left:371.840000pt;}
.x4c_c01255{left:373.120000pt;}
.x67_c01255{left:374.400000pt;}
.x2d_c01255{left:380.160000pt;}
.x37_c01255{left:391.680000pt;}
.x58_c01255{left:392.960000pt;}
.x10_c01255{left:399.360000pt;}
.x20_c01255{left:401.280000pt;}
.x52_c01255{left:403.200000pt;}
.x27_c01255{left:408.960000pt;}
.x22_c01255{left:410.880000pt;}
.x7_c01255{left:418.560000pt;}
.x3e_c01255{left:420.480000pt;}
.x42_c01255{left:430.720000pt;}
.x8_c01255{left:437.760000pt;}
.x30_c01255{left:439.680000pt;}
.x5c_c01255{left:440.960000pt;}
.x2b_c01255{left:448.640000pt;}
.x43_c01255{left:458.880000pt;}
.x59_c01255{left:469.760000pt;}
.x9_c01255{left:476.160000pt;}
.x38_c01255{left:478.080000pt;}
.x5d_c01255{left:480.000000pt;}
.x21_c01255{left:495.360000pt;}
.x23_c01255{left:505.600000pt;}
.x44_c01255{left:508.160000pt;}
.x11_c01255{left:516.480000pt;}
.x48_c01255{left:527.360000pt;}
.x4d_c01255{left:536.960000pt;}
.x3f_c01255{left:546.560000pt;}
.x68_c01255{left:547.840000pt;}
.x31_c01255{left:554.880000pt;}
.x6d_c01255{left:558.720000pt;}
.x49_c01255{left:566.400000pt;}
.xa_c01255{left:574.080000pt;}
.x5e_c01255{left:576.640000pt;}
.x12_c01255{left:583.040000pt;}
.x32_c01255{left:584.320000pt;}
.x5a_c01255{left:586.240000pt;}
.x1_c01255{left:589.440000pt;}
.x39_c01255{left:594.560000pt;}
.xb_c01255{left:601.600000pt;}
.x53_c01255{left:605.440000pt;}
}





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

.ir_c01256:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01256{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01256;src:url('chunks/assets/font_280e088a7f4d51315004f8c0.woff2')format("woff");}.ff1_c01256{font-family:ff1_c01256;line-height:1.109863;font-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_c01256{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);}
.m55_c01256{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m25_c01256{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m13_c01256{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.md_c01256{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01256{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m5d_c01256{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mf_c01256{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01256{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m30_c01256{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mc_c01256{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01256{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m44_c01256{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01256{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);}
.m51_c01256{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);}
.m52_c01256{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01256{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);}
.m56_c01256{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01256{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m0_c01256{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m28_c01256{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m15_c01256{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);}
.m35_c01256{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m5b_c01256{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01256{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);}
.m57_c01256{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);}
.m32_c01256{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_c01256{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);}
.m58_c01256{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m45_c01256{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_c01256{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);}
.m5_c01256{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m1_c01256{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);}
.m33_c01256{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m34_c01256{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);}
.m59_c01256{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m5e_c01256{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);}
.m24_c01256{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);}
.m48_c01256{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m47_c01256{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m18_c01256{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);}
.m49_c01256{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m16_c01256{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m29_c01256{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);}
.m23_c01256{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);}
.m41_c01256{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m43_c01256{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m5f_c01256{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m39_c01256{transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01256{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m46_c01256{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m10_c01256{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01256{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);}
.m2a_c01256{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m40_c01256{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01256{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01256{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01256{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01256{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);}
.m37_c01256{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);}
.m7_c01256{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m8_c01256{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m17_c01256{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m2_c01256{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);}
.m3a_c01256{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.me_c01256{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m5a_c01256{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.mb_c01256{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);}
.m12_c01256{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m4_c01256{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01256{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);}
.m3_c01256{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01256{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);}
.m53_c01256{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m9_c01256{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);}
.m3f_c01256{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01256{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m26_c01256{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m20_c01256{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m60_c01256{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m22_c01256{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m42_c01256{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);}
.m27_c01256{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);}
.m6_c01256{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);}
.m4b_c01256{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01256{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01256{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.ma_c01256{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m11_c01256{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.m36_c01256{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m54_c01256{transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);}
.m38_c01256{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);}
.m5c_c01256{transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);}
.m61_c01256{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);}
.m50_c01256{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01256{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01256{transform:matrix(0.685000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685000,0.000000,0.000000,0.250000,0,0);}
.m14_c01256{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.v0_c01256{vertical-align:0.000000px;}
.ls0_c01256{letter-spacing:0.000000px;}
.sc__c01256{text-shadow:none;}
.sc0_c01256{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01256{-webkit-text-stroke:0px transparent;}
.sc0_c01256{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01256{word-spacing:0.000000px;}
.fc0_c01256{color:transparent;}
.fse_c01256{font-size:8.640000px;}
.fsb_c01256{font-size:31.680000px;}
.fs2_c01256{font-size:34.560000px;}
.fs4_c01256{font-size:37.440000px;}
.fs1_c01256{font-size:43.200000px;}
.fs6_c01256{font-size:46.080000px;}
.fs3_c01256{font-size:48.960000px;}
.fs7_c01256{font-size:51.840000px;}
.fsd_c01256{font-size:54.720000px;}
.fs8_c01256{font-size:57.600000px;}
.fs5_c01256{font-size:60.480000px;}
.fs9_c01256{font-size:63.360000px;}
.fsc_c01256{font-size:66.240000px;}
.fsa_c01256{font-size:69.120000px;}
.fs0_c01256{font-size:74.880000px;}
.y0_c01256{bottom:0.000000px;}
.y81_c01256{bottom:126.720000px;}
.y80_c01256{bottom:127.440000px;}
.y7f_c01256{bottom:130.320000px;}
.y7e_c01256{bottom:131.040000px;}
.y7d_c01256{bottom:132.480000px;}
.y7c_c01256{bottom:133.920000px;}
.y7b_c01256{bottom:137.520000px;}
.y79_c01256{bottom:138.960000px;}
.y7a_c01256{bottom:147.600000px;}
.y75_c01256{bottom:171.360000px;}
.y78_c01256{bottom:172.080000px;}
.y77_c01256{bottom:172.800000px;}
.y76_c01256{bottom:173.520000px;}
.y74_c01256{bottom:174.240000px;}
.y73_c01256{bottom:175.680000px;}
.y72_c01256{bottom:176.400000px;}
.y70_c01256{bottom:212.400000px;}
.y6e_c01256{bottom:213.840000px;}
.y71_c01256{bottom:214.560000px;}
.y6f_c01256{bottom:215.280000px;}
.y6d_c01256{bottom:216.000000px;}
.y6c_c01256{bottom:216.720000px;}
.y6a_c01256{bottom:218.160000px;}
.y6b_c01256{bottom:218.880000px;}
.y69_c01256{bottom:222.480000px;}
.y67_c01256{bottom:255.600000px;}
.y68_c01256{bottom:257.760000px;}
.y65_c01256{bottom:258.480000px;}
.y66_c01256{bottom:259.200000px;}
.y64_c01256{bottom:259.920000px;}
.y63_c01256{bottom:260.640000px;}
.y62_c01256{bottom:261.360000px;}
.y61_c01256{bottom:262.080000px;}
.y60_c01256{bottom:264.240000px;}
.y5f_c01256{bottom:298.080000px;}
.y5d_c01256{bottom:299.520000px;}
.y5c_c01256{bottom:300.960000px;}
.y5e_c01256{bottom:301.680000px;}
.y5b_c01256{bottom:303.840000px;}
.y5a_c01256{bottom:351.360000px;}
.y59_c01256{bottom:352.080000px;}
.y58_c01256{bottom:352.800000px;}
.y57_c01256{bottom:354.240000px;}
.y54_c01256{bottom:355.680000px;}
.y56_c01256{bottom:356.400000px;}
.y55_c01256{bottom:357.120000px;}
.y53_c01256{bottom:360.000000px;}
.y52_c01256{bottom:396.720000px;}
.y51_c01256{bottom:397.440000px;}
.y50_c01256{bottom:398.160000px;}
.y4f_c01256{bottom:398.880000px;}
.y4e_c01256{bottom:400.320000px;}
.y4d_c01256{bottom:401.760000px;}
.y4b_c01256{bottom:437.040000px;}
.y48_c01256{bottom:437.760000px;}
.y4c_c01256{bottom:439.200000px;}
.y4a_c01256{bottom:439.920000px;}
.y49_c01256{bottom:440.640000px;}
.y47_c01256{bottom:442.080000px;}
.y46_c01256{bottom:442.800000px;}
.y45_c01256{bottom:445.680000px;}
.y42_c01256{bottom:480.960000px;}
.y44_c01256{bottom:482.400000px;}
.y43_c01256{bottom:483.120000px;}
.y41_c01256{bottom:483.840000px;}
.y40_c01256{bottom:484.560000px;}
.y3f_c01256{bottom:485.280000px;}
.y3e_c01256{bottom:536.400000px;}
.y3d_c01256{bottom:537.840000px;}
.y3c_c01256{bottom:538.560000px;}
.y3b_c01256{bottom:539.280000px;}
.y3a_c01256{bottom:577.440000px;}
.y37_c01256{bottom:578.160000px;}
.y38_c01256{bottom:579.600000px;}
.y39_c01256{bottom:580.320000px;}
.y36_c01256{bottom:581.040000px;}
.y35_c01256{bottom:581.760000px;}
.y34_c01256{bottom:583.200000px;}
.y33_c01256{bottom:620.640000px;}
.y30_c01256{bottom:621.360000px;}
.y32_c01256{bottom:623.520000px;}
.y31_c01256{bottom:624.240000px;}
.y2f_c01256{bottom:624.960000px;}
.y2e_c01256{bottom:664.560000px;}
.y2d_c01256{bottom:666.000000px;}
.y2c_c01256{bottom:666.720000px;}
.y2b_c01256{bottom:707.040000px;}
.y2a_c01256{bottom:709.200000px;}
.y29_c01256{bottom:709.920000px;}
.y26_c01256{bottom:750.240000px;}
.y25_c01256{bottom:751.680000px;}
.y28_c01256{bottom:752.400000px;}
.y27_c01256{bottom:753.120000px;}
.y22_c01256{bottom:792.000000px;}
.y24_c01256{bottom:793.440000px;}
.y23_c01256{bottom:795.600000px;}
.y1d_c01256{bottom:834.480000px;}
.y20_c01256{bottom:835.920000px;}
.y1e_c01256{bottom:837.360000px;}
.y1f_c01256{bottom:838.080000px;}
.y21_c01256{bottom:838.800000px;}
.y1c_c01256{bottom:878.400000px;}
.y18_c01256{bottom:879.120000px;}
.y19_c01256{bottom:879.840000px;}
.y1a_c01256{bottom:880.560000px;}
.y1b_c01256{bottom:881.280000px;}
.y15_c01256{bottom:920.880000px;}
.y12_c01256{bottom:921.600000px;}
.y13_c01256{bottom:922.320000px;}
.y14_c01256{bottom:923.040000px;}
.y17_c01256{bottom:923.760000px;}
.y16_c01256{bottom:924.480000px;}
.yf_c01256{bottom:962.640000px;}
.ye_c01256{bottom:964.080000px;}
.y11_c01256{bottom:964.800000px;}
.y10_c01256{bottom:966.960000px;}
.yc_c01256{bottom:1006.560000px;}
.y9_c01256{bottom:1007.280000px;}
.ya_c01256{bottom:1008.000000px;}
.yb_c01256{bottom:1009.440000px;}
.yd_c01256{bottom:1010.160000px;}
.y2_c01256{bottom:1046.880000px;}
.y3_c01256{bottom:1050.480000px;}
.y4_c01256{bottom:1051.200000px;}
.y5_c01256{bottom:1051.920000px;}
.y7_c01256{bottom:1052.640000px;}
.y6_c01256{bottom:1053.360000px;}
.y8_c01256{bottom:1054.080000px;}
.y1_c01256{bottom:1104.480000px;}
.h10_c01256{height:7.775156px;}
.hd_c01256{height:28.508906px;}
.h4_c01256{height:31.100625px;}
.h6_c01256{height:33.692344px;}
.h3_c01256{height:38.875781px;}
.h8_c01256{height:41.467500px;}
.h5_c01256{height:44.059219px;}
.h9_c01256{height:46.650937px;}
.hf_c01256{height:49.242656px;}
.ha_c01256{height:51.834375px;}
.h7_c01256{height:54.426094px;}
.hb_c01256{height:57.017812px;}
.he_c01256{height:59.609531px;}
.hc_c01256{height:62.201250px;}
.h2_c01256{height:67.384687px;}
.h1_c01256{height:1162.500000px;}
.h0_c01256{height:1162.800000px;}
.w1_c01256{width:786.000000px;}
.w0_c01256{width:786.240000px;}
.x0_c01256{left:0.000000px;}
.x2_c01256{left:64.800000px;}
.x36_c01256{left:66.240000px;}
.x4c_c01256{left:67.680000px;}
.x4e_c01256{left:76.320000px;}
.x3_c01256{left:84.240000px;}
.x14_c01256{left:93.600000px;}
.x3e_c01256{left:95.040000px;}
.x4d_c01256{left:98.640000px;}
.x33_c01256{left:105.840000px;}
.x4_c01256{left:114.480000px;}
.x15_c01256{left:124.560000px;}
.x31_c01256{left:134.640000px;}
.x47_c01256{left:136.080000px;}
.x1f_c01256{left:145.440000px;}
.x43_c01256{left:146.880000px;}
.x1a_c01256{left:156.240000px;}
.x3f_c01256{left:166.320000px;}
.x37_c01256{left:167.760000px;}
.x25_c01256{left:177.120000px;}
.x5_c01256{left:186.480000px;}
.x20_c01256{left:187.920000px;}
.x1b_c01256{left:197.280000px;}
.x34_c01256{left:198.720000px;}
.x49_c01256{left:208.080000px;}
.x41_c01256{left:220.320000px;}
.x45_c01256{left:230.400000px;}
.xe_c01256{left:241.920000px;}
.x3b_c01256{left:243.360000px;}
.x26_c01256{left:252.000000px;}
.x6_c01256{left:263.520000px;}
.xf_c01256{left:274.320000px;}
.x3c_c01256{left:285.120000px;}
.x21_c01256{left:295.920000px;}
.x27_c01256{left:306.720000px;}
.x16_c01256{left:316.800000px;}
.x22_c01256{left:328.320000px;}
.x1c_c01256{left:339.120000px;}
.x2d_c01256{left:349.920000px;}
.x44_c01256{left:360.000000px;}
.x7_c01256{left:361.440000px;}
.x4f_c01256{left:370.080000px;}
.x10_c01256{left:372.240000px;}
.x2e_c01256{left:382.320000px;}
.x8_c01256{left:393.840000px;}
.x1d_c01256{left:403.920000px;}
.x11_c01256{left:414.720000px;}
.x48_c01256{left:425.520000px;}
.x2f_c01256{left:437.040000px;}
.x46_c01256{left:439.200000px;}
.x28_c01256{left:447.840000px;}
.x23_c01256{left:458.640000px;}
.x9_c01256{left:469.440000px;}
.x38_c01256{left:479.520000px;}
.x24_c01256{left:490.320000px;}
.x29_c01256{left:492.480000px;}
.xa_c01256{left:501.840000px;}
.x3d_c01256{left:503.280000px;}
.x12_c01256{left:512.640000px;}
.x4a_c01256{left:522.720000px;}
.x42_c01256{left:524.880000px;}
.x39_c01256{left:534.240000px;}
.x1e_c01256{left:535.680000px;}
.x40_c01256{left:545.040000px;}
.x32_c01256{left:546.480000px;}
.xb_c01256{left:555.840000px;}
.x30_c01256{left:567.360000px;}
.x17_c01256{left:578.160000px;}
.x3a_c01256{left:588.240000px;}
.x35_c01256{left:599.040000px;}
.x2a_c01256{left:609.840000px;}
.x18_c01256{left:622.080000px;}
.x2b_c01256{left:632.880000px;}
.x4b_c01256{left:642.240000px;}
.xc_c01256{left:643.680000px;}
.x19_c01256{left:654.480000px;}
.x13_c01256{left:666.000000px;}
.x1_c01256{left:673.920000px;}
.xd_c01256{left:676.080000px;}
.x2c_c01256{left:677.520000px;}
@media print{
.v0_c01256{vertical-align:0.000000pt;}
.ls0_c01256{letter-spacing:0.000000pt;}
.ws0_c01256{word-spacing:0.000000pt;}
.fse_c01256{font-size:7.680000pt;}
.fsb_c01256{font-size:28.160000pt;}
.fs2_c01256{font-size:30.720000pt;}
.fs4_c01256{font-size:33.280000pt;}
.fs1_c01256{font-size:38.400000pt;}
.fs6_c01256{font-size:40.960000pt;}
.fs3_c01256{font-size:43.520000pt;}
.fs7_c01256{font-size:46.080000pt;}
.fsd_c01256{font-size:48.640000pt;}
.fs8_c01256{font-size:51.200000pt;}
.fs5_c01256{font-size:53.760000pt;}
.fs9_c01256{font-size:56.320000pt;}
.fsc_c01256{font-size:58.880000pt;}
.fsa_c01256{font-size:61.440000pt;}
.fs0_c01256{font-size:66.560000pt;}
.y0_c01256{bottom:0.000000pt;}
.y81_c01256{bottom:112.640000pt;}
.y80_c01256{bottom:113.280000pt;}
.y7f_c01256{bottom:115.840000pt;}
.y7e_c01256{bottom:116.480000pt;}
.y7d_c01256{bottom:117.760000pt;}
.y7c_c01256{bottom:119.040000pt;}
.y7b_c01256{bottom:122.240000pt;}
.y79_c01256{bottom:123.520000pt;}
.y7a_c01256{bottom:131.200000pt;}
.y75_c01256{bottom:152.320000pt;}
.y78_c01256{bottom:152.960000pt;}
.y77_c01256{bottom:153.600000pt;}
.y76_c01256{bottom:154.240000pt;}
.y74_c01256{bottom:154.880000pt;}
.y73_c01256{bottom:156.160000pt;}
.y72_c01256{bottom:156.800000pt;}
.y70_c01256{bottom:188.800000pt;}
.y6e_c01256{bottom:190.080000pt;}
.y71_c01256{bottom:190.720000pt;}
.y6f_c01256{bottom:191.360000pt;}
.y6d_c01256{bottom:192.000000pt;}
.y6c_c01256{bottom:192.640000pt;}
.y6a_c01256{bottom:193.920000pt;}
.y6b_c01256{bottom:194.560000pt;}
.y69_c01256{bottom:197.760000pt;}
.y67_c01256{bottom:227.200000pt;}
.y68_c01256{bottom:229.120000pt;}
.y65_c01256{bottom:229.760000pt;}
.y66_c01256{bottom:230.400000pt;}
.y64_c01256{bottom:231.040000pt;}
.y63_c01256{bottom:231.680000pt;}
.y62_c01256{bottom:232.320000pt;}
.y61_c01256{bottom:232.960000pt;}
.y60_c01256{bottom:234.880000pt;}
.y5f_c01256{bottom:264.960000pt;}
.y5d_c01256{bottom:266.240000pt;}
.y5c_c01256{bottom:267.520000pt;}
.y5e_c01256{bottom:268.160000pt;}
.y5b_c01256{bottom:270.080000pt;}
.y5a_c01256{bottom:312.320000pt;}
.y59_c01256{bottom:312.960000pt;}
.y58_c01256{bottom:313.600000pt;}
.y57_c01256{bottom:314.880000pt;}
.y54_c01256{bottom:316.160000pt;}
.y56_c01256{bottom:316.800000pt;}
.y55_c01256{bottom:317.440000pt;}
.y53_c01256{bottom:320.000000pt;}
.y52_c01256{bottom:352.640000pt;}
.y51_c01256{bottom:353.280000pt;}
.y50_c01256{bottom:353.920000pt;}
.y4f_c01256{bottom:354.560000pt;}
.y4e_c01256{bottom:355.840000pt;}
.y4d_c01256{bottom:357.120000pt;}
.y4b_c01256{bottom:388.480000pt;}
.y48_c01256{bottom:389.120000pt;}
.y4c_c01256{bottom:390.400000pt;}
.y4a_c01256{bottom:391.040000pt;}
.y49_c01256{bottom:391.680000pt;}
.y47_c01256{bottom:392.960000pt;}
.y46_c01256{bottom:393.600000pt;}
.y45_c01256{bottom:396.160000pt;}
.y42_c01256{bottom:427.520000pt;}
.y44_c01256{bottom:428.800000pt;}
.y43_c01256{bottom:429.440000pt;}
.y41_c01256{bottom:430.080000pt;}
.y40_c01256{bottom:430.720000pt;}
.y3f_c01256{bottom:431.360000pt;}
.y3e_c01256{bottom:476.800000pt;}
.y3d_c01256{bottom:478.080000pt;}
.y3c_c01256{bottom:478.720000pt;}
.y3b_c01256{bottom:479.360000pt;}
.y3a_c01256{bottom:513.280000pt;}
.y37_c01256{bottom:513.920000pt;}
.y38_c01256{bottom:515.200000pt;}
.y39_c01256{bottom:515.840000pt;}
.y36_c01256{bottom:516.480000pt;}
.y35_c01256{bottom:517.120000pt;}
.y34_c01256{bottom:518.400000pt;}
.y33_c01256{bottom:551.680000pt;}
.y30_c01256{bottom:552.320000pt;}
.y32_c01256{bottom:554.240000pt;}
.y31_c01256{bottom:554.880000pt;}
.y2f_c01256{bottom:555.520000pt;}
.y2e_c01256{bottom:590.720000pt;}
.y2d_c01256{bottom:592.000000pt;}
.y2c_c01256{bottom:592.640000pt;}
.y2b_c01256{bottom:628.480000pt;}
.y2a_c01256{bottom:630.400000pt;}
.y29_c01256{bottom:631.040000pt;}
.y26_c01256{bottom:666.880000pt;}
.y25_c01256{bottom:668.160000pt;}
.y28_c01256{bottom:668.800000pt;}
.y27_c01256{bottom:669.440000pt;}
.y22_c01256{bottom:704.000000pt;}
.y24_c01256{bottom:705.280000pt;}
.y23_c01256{bottom:707.200000pt;}
.y1d_c01256{bottom:741.760000pt;}
.y20_c01256{bottom:743.040000pt;}
.y1e_c01256{bottom:744.320000pt;}
.y1f_c01256{bottom:744.960000pt;}
.y21_c01256{bottom:745.600000pt;}
.y1c_c01256{bottom:780.800000pt;}
.y18_c01256{bottom:781.440000pt;}
.y19_c01256{bottom:782.080000pt;}
.y1a_c01256{bottom:782.720000pt;}
.y1b_c01256{bottom:783.360000pt;}
.y15_c01256{bottom:818.560000pt;}
.y12_c01256{bottom:819.200000pt;}
.y13_c01256{bottom:819.840000pt;}
.y14_c01256{bottom:820.480000pt;}
.y17_c01256{bottom:821.120000pt;}
.y16_c01256{bottom:821.760000pt;}
.yf_c01256{bottom:855.680000pt;}
.ye_c01256{bottom:856.960000pt;}
.y11_c01256{bottom:857.600000pt;}
.y10_c01256{bottom:859.520000pt;}
.yc_c01256{bottom:894.720000pt;}
.y9_c01256{bottom:895.360000pt;}
.ya_c01256{bottom:896.000000pt;}
.yb_c01256{bottom:897.280000pt;}
.yd_c01256{bottom:897.920000pt;}
.y2_c01256{bottom:930.560000pt;}
.y3_c01256{bottom:933.760000pt;}
.y4_c01256{bottom:934.400000pt;}
.y5_c01256{bottom:935.040000pt;}
.y7_c01256{bottom:935.680000pt;}
.y6_c01256{bottom:936.320000pt;}
.y8_c01256{bottom:936.960000pt;}
.y1_c01256{bottom:981.760000pt;}
.h10_c01256{height:6.911250pt;}
.hd_c01256{height:25.341250pt;}
.h4_c01256{height:27.645000pt;}
.h6_c01256{height:29.948750pt;}
.h3_c01256{height:34.556250pt;}
.h8_c01256{height:36.860000pt;}
.h5_c01256{height:39.163750pt;}
.h9_c01256{height:41.467500pt;}
.hf_c01256{height:43.771250pt;}
.ha_c01256{height:46.075000pt;}
.h7_c01256{height:48.378750pt;}
.hb_c01256{height:50.682500pt;}
.he_c01256{height:52.986250pt;}
.hc_c01256{height:55.290000pt;}
.h2_c01256{height:59.897500pt;}
.h1_c01256{height:1033.333333pt;}
.h0_c01256{height:1033.600000pt;}
.w1_c01256{width:698.666667pt;}
.w0_c01256{width:698.880000pt;}
.x0_c01256{left:0.000000pt;}
.x2_c01256{left:57.600000pt;}
.x36_c01256{left:58.880000pt;}
.x4c_c01256{left:60.160000pt;}
.x4e_c01256{left:67.840000pt;}
.x3_c01256{left:74.880000pt;}
.x14_c01256{left:83.200000pt;}
.x3e_c01256{left:84.480000pt;}
.x4d_c01256{left:87.680000pt;}
.x33_c01256{left:94.080000pt;}
.x4_c01256{left:101.760000pt;}
.x15_c01256{left:110.720000pt;}
.x31_c01256{left:119.680000pt;}
.x47_c01256{left:120.960000pt;}
.x1f_c01256{left:129.280000pt;}
.x43_c01256{left:130.560000pt;}
.x1a_c01256{left:138.880000pt;}
.x3f_c01256{left:147.840000pt;}
.x37_c01256{left:149.120000pt;}
.x25_c01256{left:157.440000pt;}
.x5_c01256{left:165.760000pt;}
.x20_c01256{left:167.040000pt;}
.x1b_c01256{left:175.360000pt;}
.x34_c01256{left:176.640000pt;}
.x49_c01256{left:184.960000pt;}
.x41_c01256{left:195.840000pt;}
.x45_c01256{left:204.800000pt;}
.xe_c01256{left:215.040000pt;}
.x3b_c01256{left:216.320000pt;}
.x26_c01256{left:224.000000pt;}
.x6_c01256{left:234.240000pt;}
.xf_c01256{left:243.840000pt;}
.x3c_c01256{left:253.440000pt;}
.x21_c01256{left:263.040000pt;}
.x27_c01256{left:272.640000pt;}
.x16_c01256{left:281.600000pt;}
.x22_c01256{left:291.840000pt;}
.x1c_c01256{left:301.440000pt;}
.x2d_c01256{left:311.040000pt;}
.x44_c01256{left:320.000000pt;}
.x7_c01256{left:321.280000pt;}
.x4f_c01256{left:328.960000pt;}
.x10_c01256{left:330.880000pt;}
.x2e_c01256{left:339.840000pt;}
.x8_c01256{left:350.080000pt;}
.x1d_c01256{left:359.040000pt;}
.x11_c01256{left:368.640000pt;}
.x48_c01256{left:378.240000pt;}
.x2f_c01256{left:388.480000pt;}
.x46_c01256{left:390.400000pt;}
.x28_c01256{left:398.080000pt;}
.x23_c01256{left:407.680000pt;}
.x9_c01256{left:417.280000pt;}
.x38_c01256{left:426.240000pt;}
.x24_c01256{left:435.840000pt;}
.x29_c01256{left:437.760000pt;}
.xa_c01256{left:446.080000pt;}
.x3d_c01256{left:447.360000pt;}
.x12_c01256{left:455.680000pt;}
.x4a_c01256{left:464.640000pt;}
.x42_c01256{left:466.560000pt;}
.x39_c01256{left:474.880000pt;}
.x1e_c01256{left:476.160000pt;}
.x40_c01256{left:484.480000pt;}
.x32_c01256{left:485.760000pt;}
.xb_c01256{left:494.080000pt;}
.x30_c01256{left:504.320000pt;}
.x17_c01256{left:513.920000pt;}
.x3a_c01256{left:522.880000pt;}
.x35_c01256{left:532.480000pt;}
.x2a_c01256{left:542.080000pt;}
.x18_c01256{left:552.960000pt;}
.x2b_c01256{left:562.560000pt;}
.x4b_c01256{left:570.880000pt;}
.xc_c01256{left:572.160000pt;}
.x19_c01256{left:581.760000pt;}
.x13_c01256{left:592.000000pt;}
.x1_c01256{left:599.040000pt;}
.xd_c01256{left:600.960000pt;}
.x2c_c01256{left:602.240000pt;}
}





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

.ir_c01257:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01257{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01257;src:url('chunks/assets/font_d0ac0a566002c2e7fe08040b.woff2')format("woff");}.ff1_c01257{font-family:ff1_c01257;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m45_c01257{transform:matrix(0.153425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153425,0.000000,0.000000,0.250000,0,0);}
.m43_c01257{transform:matrix(0.158375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158375,0.000000,0.000000,0.250000,0,0);}
.m44_c01257{transform:matrix(0.170475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170475,0.000000,0.000000,0.250000,0,0);}
.m40_c01257{transform:matrix(0.190925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190925,0.000000,0.000000,0.250000,0,0);}
.m3e_c01257{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m5f_c01257{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01257{transform:matrix(0.246050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246050,0.000000,0.000000,0.250000,0,0);}
.mf_c01257{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01257{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);}
.m29_c01257{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_c01257{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);}
.m30_c01257{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m19_c01257{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m26_c01257{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);}
.m2b_c01257{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m14_c01257{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m21_c01257{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m10_c01257{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m7_c01257{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);}
.m2d_c01257{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.ma_c01257{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m24_c01257{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m15_c01257{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mc_c01257{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m0_c01257{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m6_c01257{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m18_c01257{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m17_c01257{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m5_c01257{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m8_c01257{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01257{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01257{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m27_c01257{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m22_c01257{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m12_c01257{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m4_c01257{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);}
.m25_c01257{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01257{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m28_c01257{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);}
.m23_c01257{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.mb_c01257{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m9_c01257{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m31_c01257{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_c01257{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01257{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);}
.me_c01257{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2_c01257{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);}
.m5e_c01257{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);}
.m13_c01257{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m34_c01257{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m3_c01257{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);}
.m16_c01257{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);}
.m1c_c01257{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_c01257{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);}
.m59_c01257{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01257{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);}
.m33_c01257{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01257{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);}
.m52_c01257{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01257{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);}
.m32_c01257{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01257{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);}
.m5b_c01257{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);}
.m2e_c01257{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m56_c01257{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);}
.m47_c01257{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m4e_c01257{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01257{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);}
.m5d_c01257{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m20_c01257{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);}
.m4d_c01257{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m46_c01257{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m57_c01257{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m36_c01257{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);}
.m37_c01257{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m53_c01257{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);}
.m38_c01257{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m54_c01257{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);}
.m58_c01257{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m55_c01257{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m5a_c01257{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m50_c01257{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);}
.m5c_c01257{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m4f_c01257{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m51_c01257{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m49_c01257{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m48_c01257{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m35_c01257{transform:matrix(0.672500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01257{transform:matrix(0.805000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.805000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.805000,0.000000,0.000000,0.250000,0,0);}
.m42_c01257{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);}
.m3c_c01257{transform:matrix(0.985000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.985000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.985000,0.000000,0.000000,0.250000,0,0);}
.m41_c01257{transform:matrix(1.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.200000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01257{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01257{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.m39_c01257{transform:matrix(2.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.040000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01257{transform:matrix(2.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.160000,0.000000,0.000000,0.250000,0,0);}
.v1_c01257{vertical-align:-8.640000px;}
.v0_c01257{vertical-align:0.000000px;}
.ls1_c01257{letter-spacing:0.000000px;}
.ls0_c01257{letter-spacing:67.913760px;}
.sc__c01257{text-shadow:none;}
.sc0_c01257{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01257{-webkit-text-stroke:0px transparent;}
.sc0_c01257{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01257{word-spacing:0.000000px;}
.ws1_c01257{word-spacing:9.171325px;}
.ws0_c01257{word-spacing:34.505084px;}
.fc0_c01257{color:transparent;}
.fsf_c01257{font-size:11.520000px;}
.fsd_c01257{font-size:14.400000px;}
.fsc_c01257{font-size:17.280000px;}
.fse_c01257{font-size:20.160000px;}
.fs10_c01257{font-size:23.040000px;}
.fsb_c01257{font-size:34.560000px;}
.fs15_c01257{font-size:37.440000px;}
.fs14_c01257{font-size:40.320000px;}
.fs8_c01257{font-size:43.200000px;}
.fs2_c01257{font-size:46.080000px;}
.fs1_c01257{font-size:48.960000px;}
.fs7_c01257{font-size:51.840000px;}
.fs3_c01257{font-size:54.720000px;}
.fs4_c01257{font-size:57.600000px;}
.fs6_c01257{font-size:60.480000px;}
.fs5_c01257{font-size:63.360000px;}
.fs9_c01257{font-size:66.240000px;}
.fs0_c01257{font-size:69.120000px;}
.fsa_c01257{font-size:74.880000px;}
.fs12_c01257{font-size:86.400000px;}
.fs11_c01257{font-size:89.280000px;}
.fs13_c01257{font-size:92.160000px;}
.y0_c01257{bottom:0.000000px;}
.y92_c01257{bottom:57.600000px;}
.y91_c01257{bottom:59.760000px;}
.y93_c01257{bottom:60.480000px;}
.y90_c01257{bottom:62.640000px;}
.y8f_c01257{bottom:63.360000px;}
.y8e_c01257{bottom:67.680000px;}
.y8d_c01257{bottom:69.120000px;}
.y8c_c01257{bottom:102.960000px;}
.y8b_c01257{bottom:103.680000px;}
.y88_c01257{bottom:104.400000px;}
.y8a_c01257{bottom:105.120000px;}
.y89_c01257{bottom:106.560000px;}
.y87_c01257{bottom:110.160000px;}
.y86_c01257{bottom:111.600000px;}
.y85_c01257{bottom:146.160000px;}
.y83_c01257{bottom:146.880000px;}
.y84_c01257{bottom:147.600000px;}
.y81_c01257{bottom:148.320000px;}
.y82_c01257{bottom:149.040000px;}
.y80_c01257{bottom:151.200000px;}
.y7f_c01257{bottom:190.080000px;}
.y7e_c01257{bottom:190.800000px;}
.y7d_c01257{bottom:191.520000px;}
.y7c_c01257{bottom:192.240000px;}
.y7b_c01257{bottom:193.680000px;}
.y7a_c01257{bottom:241.920000px;}
.y6f_c01257{bottom:243.360000px;}
.y6d_c01257{bottom:246.960000px;}
.y6c_c01257{bottom:248.400000px;}
.y6e_c01257{bottom:249.840000px;}
.y6b_c01257{bottom:251.280000px;}
.y79_c01257{bottom:283.680000px;}
.y77_c01257{bottom:284.400000px;}
.y78_c01257{bottom:285.840000px;}
.y6a_c01257{bottom:287.280000px;}
.y69_c01257{bottom:290.160000px;}
.y68_c01257{bottom:292.320000px;}
.y67_c01257{bottom:294.480000px;}
.y75_c01257{bottom:327.600000px;}
.y76_c01257{bottom:328.320000px;}
.y66_c01257{bottom:329.760000px;}
.y64_c01257{bottom:333.360000px;}
.y63_c01257{bottom:334.800000px;}
.y65_c01257{bottom:335.520000px;}
.y62_c01257{bottom:336.240000px;}
.y73_c01257{bottom:370.800000px;}
.y61_c01257{bottom:372.960000px;}
.y74_c01257{bottom:373.680000px;}
.y60_c01257{bottom:375.840000px;}
.y5e_c01257{bottom:376.560000px;}
.y5f_c01257{bottom:378.720000px;}
.y5d_c01257{bottom:379.440000px;}
.y72_c01257{bottom:414.000000px;}
.y5c_c01257{bottom:415.440000px;}
.y5b_c01257{bottom:418.320000px;}
.y59_c01257{bottom:419.760000px;}
.y58_c01257{bottom:421.200000px;}
.y5a_c01257{bottom:422.640000px;}
.y57_c01257{bottom:432.000000px;}
.y71_c01257{bottom:457.200000px;}
.y56_c01257{bottom:458.640000px;}
.y55_c01257{bottom:460.800000px;}
.y53_c01257{bottom:461.520000px;}
.y52_c01257{bottom:463.680000px;}
.y54_c01257{bottom:464.400000px;}
.y51_c01257{bottom:474.480000px;}
.y70_c01257{bottom:486.000000px;}
.y50_c01257{bottom:488.160000px;}
.y4f_c01257{bottom:488.880000px;}
.y4d_c01257{bottom:519.120000px;}
.y4c_c01257{bottom:520.560000px;}
.y49_c01257{bottom:522.720000px;}
.y4e_c01257{bottom:523.440000px;}
.y4b_c01257{bottom:524.160000px;}
.y4a_c01257{bottom:524.880000px;}
.y48_c01257{bottom:552.960000px;}
.y47_c01257{bottom:553.680000px;}
.y45_c01257{bottom:555.120000px;}
.y44_c01257{bottom:574.560000px;}
.y46_c01257{bottom:576.720000px;}
.y43_c01257{bottom:577.440000px;}
.y40_c01257{bottom:617.040000px;}
.y32_c01257{bottom:617.760000px;}
.y2b_c01257{bottom:618.480000px;}
.y42_c01257{bottom:619.200000px;}
.y1e_c01257{bottom:619.920000px;}
.y41_c01257{bottom:639.360000px;}
.y2a_c01257{bottom:640.800000px;}
.y1d_c01257{bottom:641.520000px;}
.y1c_c01257{bottom:642.240000px;}
.y1b_c01257{bottom:691.920000px;}
.y1a_c01257{bottom:692.640000px;}
.y3e_c01257{bottom:693.360000px;}
.y19_c01257{bottom:713.520000px;}
.y29_c01257{bottom:714.240000px;}
.y31_c01257{bottom:714.960000px;}
.y3f_c01257{bottom:715.680000px;}
.y18_c01257{bottom:716.400000px;}
.y16_c01257{bottom:766.800000px;}
.y3c_c01257{bottom:767.520000px;}
.y17_c01257{bottom:768.240000px;}
.y28_c01257{bottom:768.960000px;}
.y30_c01257{bottom:769.680000px;}
.y3d_c01257{bottom:789.120000px;}
.y2f_c01257{bottom:789.840000px;}
.y13_c01257{bottom:790.560000px;}
.y14_c01257{bottom:791.280000px;}
.y15_c01257{bottom:792.000000px;}
.y27_c01257{bottom:792.720000px;}
.y12_c01257{bottom:843.120000px;}
.y26_c01257{bottom:843.840000px;}
.y3b_c01257{bottom:844.560000px;}
.y2e_c01257{bottom:845.280000px;}
.y11_c01257{bottom:864.000000px;}
.y25_c01257{bottom:864.720000px;}
.yf_c01257{bottom:865.440000px;}
.y10_c01257{bottom:866.160000px;}
.y3a_c01257{bottom:866.880000px;}
.yd_c01257{bottom:916.560000px;}
.ye_c01257{bottom:918.000000px;}
.y24_c01257{bottom:918.720000px;}
.y38_c01257{bottom:920.160000px;}
.ya_c01257{bottom:929.520000px;}
.yc_c01257{bottom:939.600000px;}
.yb_c01257{bottom:940.320000px;}
.y23_c01257{bottom:941.040000px;}
.y37_c01257{bottom:941.760000px;}
.y39_c01257{bottom:942.480000px;}
.y2d_c01257{bottom:943.200000px;}
.y8_c01257{bottom:981.360000px;}
.y9_c01257{bottom:982.080000px;}
.y2c_c01257{bottom:982.800000px;}
.y22_c01257{bottom:983.520000px;}
.y36_c01257{bottom:984.960000px;}
.y7_c01257{bottom:992.880000px;}
.y6_c01257{bottom:1003.680000px;}
.y21_c01257{bottom:1004.400000px;}
.y34_c01257{bottom:1005.120000px;}
.y35_c01257{bottom:1005.840000px;}
.y4_c01257{bottom:1046.880000px;}
.y5_c01257{bottom:1049.040000px;}
.y1f_c01257{bottom:1049.760000px;}
.y20_c01257{bottom:1050.480000px;}
.y1_c01257{bottom:1085.040000px;}
.y2_c01257{bottom:1086.480000px;}
.y3_c01257{bottom:1089.360000px;}
.y33_c01257{bottom:1126.080000px;}
.h11_c01257{height:10.366875px;}
.hf_c01257{height:12.958594px;}
.he_c01257{height:15.550313px;}
.h10_c01257{height:18.142031px;}
.h12_c01257{height:20.733750px;}
.hd_c01257{height:31.100625px;}
.h17_c01257{height:33.692344px;}
.h16_c01257{height:36.284062px;}
.ha_c01257{height:38.875781px;}
.h4_c01257{height:41.467500px;}
.h3_c01257{height:44.059219px;}
.h9_c01257{height:46.650937px;}
.h5_c01257{height:49.242656px;}
.h6_c01257{height:51.834375px;}
.h8_c01257{height:54.426094px;}
.h7_c01257{height:57.017812px;}
.hb_c01257{height:59.609531px;}
.h2_c01257{height:62.201250px;}
.hc_c01257{height:67.384687px;}
.h14_c01257{height:77.751563px;}
.h13_c01257{height:80.343281px;}
.h15_c01257{height:82.935000px;}
.h1_c01257{height:1161.750000px;}
.h0_c01257{height:1162.080000px;}
.w1_c01257{width:785.250000px;}
.w0_c01257{width:785.520000px;}
.x0_c01257{left:0.000000px;}
.x6_c01257{left:69.120000px;}
.x1_c01257{left:71.280000px;}
.x28_c01257{left:72.720000px;}
.x30_c01257{left:80.640000px;}
.x7_c01257{left:99.360000px;}
.x34_c01257{left:100.800000px;}
.x4_c01257{left:107.280000px;}
.x9_c01257{left:108.720000px;}
.x29_c01257{left:110.160000px;}
.x2f_c01257{left:117.360000px;}
.x2_c01257{left:118.800000px;}
.xb_c01257{left:120.240000px;}
.x31_c01257{left:129.600000px;}
.x35_c01257{left:140.400000px;}
.x8_c01257{left:151.200000px;}
.x3_c01257{left:160.560000px;}
.x26_c01257{left:162.000000px;}
.x5_c01257{left:171.360000px;}
.x36_c01257{left:172.800000px;}
.xa_c01257{left:182.160000px;}
.x2a_c01257{left:192.240000px;}
.x32_c01257{left:203.040000px;}
.x33_c01257{left:215.280000px;}
.x3f_c01257{left:223.920000px;}
.x19_c01257{left:225.360000px;}
.x37_c01257{left:226.800000px;}
.xc_c01257{left:234.000000px;}
.x18_c01257{left:235.440000px;}
.x1e_c01257{left:246.240000px;}
.x22_c01257{left:257.040000px;}
.x46_c01257{left:278.640000px;}
.x1a_c01257{left:290.161215px;}
.xd_c01257{left:300.240000px;}
.x1f_c01257{left:311.040000px;}
.x23_c01257{left:321.840000px;}
.x2b_c01257{left:331.920000px;}
.x39_c01257{left:354.240000px;}
.x3a_c01257{left:355.680000px;}
.xf_c01257{left:366.480000px;}
.xe_c01257{left:375.840000px;}
.x38_c01257{left:385.200000px;}
.x10_c01257{left:388.080000px;}
.x42_c01257{left:397.440000px;}
.x2c_c01257{left:408.960000px;}
.x11_c01257{left:441.360000px;}
.x14_c01257{left:442.800000px;}
.x12_c01257{left:452.879325px;}
.x13_c01257{left:463.680000px;}
.x40_c01257{left:473.040000px;}
.x3e_c01257{left:483.840000px;}
.x3c_c01257{left:495.360000px;}
.x1b_c01257{left:516.960000px;}
.x1c_c01257{left:518.400000px;}
.x16_c01257{left:527.760000px;}
.x2d_c01257{left:529.200000px;}
.x24_c01257{left:538.560000px;}
.x20_c01257{left:548.640000px;}
.x43_c01257{left:550.080000px;}
.x3b_c01257{left:561.600000px;}
.x2e_c01257{left:571.680000px;}
.x44_c01257{left:582.480000px;}
.x3d_c01257{left:594.000000px;}
.x27_c01257{left:605.520000px;}
.x17_c01257{left:614.880000px;}
.x1d_c01257{left:616.320000px;}
.x21_c01257{left:625.680000px;}
.x25_c01257{left:627.120000px;}
.x41_c01257{left:636.480000px;}
.x45_c01257{left:648.000000px;}
.x15_c01257{left:684.720000px;}
@media print{
.v1_c01257{vertical-align:-7.680000pt;}
.v0_c01257{vertical-align:0.000000pt;}
.ls1_c01257{letter-spacing:0.000000pt;}
.ls0_c01257{letter-spacing:60.367787pt;}
.ws2_c01257{word-spacing:0.000000pt;}
.ws1_c01257{word-spacing:8.152289pt;}
.ws0_c01257{word-spacing:30.671186pt;}
.fsf_c01257{font-size:10.240000pt;}
.fsd_c01257{font-size:12.800000pt;}
.fsc_c01257{font-size:15.360000pt;}
.fse_c01257{font-size:17.920000pt;}
.fs10_c01257{font-size:20.480000pt;}
.fsb_c01257{font-size:30.720000pt;}
.fs15_c01257{font-size:33.280000pt;}
.fs14_c01257{font-size:35.840000pt;}
.fs8_c01257{font-size:38.400000pt;}
.fs2_c01257{font-size:40.960000pt;}
.fs1_c01257{font-size:43.520000pt;}
.fs7_c01257{font-size:46.080000pt;}
.fs3_c01257{font-size:48.640000pt;}
.fs4_c01257{font-size:51.200000pt;}
.fs6_c01257{font-size:53.760000pt;}
.fs5_c01257{font-size:56.320000pt;}
.fs9_c01257{font-size:58.880000pt;}
.fs0_c01257{font-size:61.440000pt;}
.fsa_c01257{font-size:66.560000pt;}
.fs12_c01257{font-size:76.800000pt;}
.fs11_c01257{font-size:79.360000pt;}
.fs13_c01257{font-size:81.920000pt;}
.y0_c01257{bottom:0.000000pt;}
.y92_c01257{bottom:51.200000pt;}
.y91_c01257{bottom:53.120000pt;}
.y93_c01257{bottom:53.760000pt;}
.y90_c01257{bottom:55.680000pt;}
.y8f_c01257{bottom:56.320000pt;}
.y8e_c01257{bottom:60.160000pt;}
.y8d_c01257{bottom:61.440000pt;}
.y8c_c01257{bottom:91.520000pt;}
.y8b_c01257{bottom:92.160000pt;}
.y88_c01257{bottom:92.800000pt;}
.y8a_c01257{bottom:93.440000pt;}
.y89_c01257{bottom:94.720000pt;}
.y87_c01257{bottom:97.920000pt;}
.y86_c01257{bottom:99.200000pt;}
.y85_c01257{bottom:129.920000pt;}
.y83_c01257{bottom:130.560000pt;}
.y84_c01257{bottom:131.200000pt;}
.y81_c01257{bottom:131.840000pt;}
.y82_c01257{bottom:132.480000pt;}
.y80_c01257{bottom:134.400000pt;}
.y7f_c01257{bottom:168.960000pt;}
.y7e_c01257{bottom:169.600000pt;}
.y7d_c01257{bottom:170.240000pt;}
.y7c_c01257{bottom:170.880000pt;}
.y7b_c01257{bottom:172.160000pt;}
.y7a_c01257{bottom:215.040000pt;}
.y6f_c01257{bottom:216.320000pt;}
.y6d_c01257{bottom:219.520000pt;}
.y6c_c01257{bottom:220.800000pt;}
.y6e_c01257{bottom:222.080000pt;}
.y6b_c01257{bottom:223.360000pt;}
.y79_c01257{bottom:252.160000pt;}
.y77_c01257{bottom:252.800000pt;}
.y78_c01257{bottom:254.080000pt;}
.y6a_c01257{bottom:255.360000pt;}
.y69_c01257{bottom:257.920000pt;}
.y68_c01257{bottom:259.840000pt;}
.y67_c01257{bottom:261.760000pt;}
.y75_c01257{bottom:291.200000pt;}
.y76_c01257{bottom:291.840000pt;}
.y66_c01257{bottom:293.120000pt;}
.y64_c01257{bottom:296.320000pt;}
.y63_c01257{bottom:297.600000pt;}
.y65_c01257{bottom:298.240000pt;}
.y62_c01257{bottom:298.880000pt;}
.y73_c01257{bottom:329.600000pt;}
.y61_c01257{bottom:331.520000pt;}
.y74_c01257{bottom:332.160000pt;}
.y60_c01257{bottom:334.080000pt;}
.y5e_c01257{bottom:334.720000pt;}
.y5f_c01257{bottom:336.640000pt;}
.y5d_c01257{bottom:337.280000pt;}
.y72_c01257{bottom:368.000000pt;}
.y5c_c01257{bottom:369.280000pt;}
.y5b_c01257{bottom:371.840000pt;}
.y59_c01257{bottom:373.120000pt;}
.y58_c01257{bottom:374.400000pt;}
.y5a_c01257{bottom:375.680000pt;}
.y57_c01257{bottom:384.000000pt;}
.y71_c01257{bottom:406.400000pt;}
.y56_c01257{bottom:407.680000pt;}
.y55_c01257{bottom:409.600000pt;}
.y53_c01257{bottom:410.240000pt;}
.y52_c01257{bottom:412.160000pt;}
.y54_c01257{bottom:412.800000pt;}
.y51_c01257{bottom:421.760000pt;}
.y70_c01257{bottom:432.000000pt;}
.y50_c01257{bottom:433.920000pt;}
.y4f_c01257{bottom:434.560000pt;}
.y4d_c01257{bottom:461.440000pt;}
.y4c_c01257{bottom:462.720000pt;}
.y49_c01257{bottom:464.640000pt;}
.y4e_c01257{bottom:465.280000pt;}
.y4b_c01257{bottom:465.920000pt;}
.y4a_c01257{bottom:466.560000pt;}
.y48_c01257{bottom:491.520000pt;}
.y47_c01257{bottom:492.160000pt;}
.y45_c01257{bottom:493.440000pt;}
.y44_c01257{bottom:510.720000pt;}
.y46_c01257{bottom:512.640000pt;}
.y43_c01257{bottom:513.280000pt;}
.y40_c01257{bottom:548.480000pt;}
.y32_c01257{bottom:549.120000pt;}
.y2b_c01257{bottom:549.760000pt;}
.y42_c01257{bottom:550.400000pt;}
.y1e_c01257{bottom:551.040000pt;}
.y41_c01257{bottom:568.320000pt;}
.y2a_c01257{bottom:569.600000pt;}
.y1d_c01257{bottom:570.240000pt;}
.y1c_c01257{bottom:570.880000pt;}
.y1b_c01257{bottom:615.040000pt;}
.y1a_c01257{bottom:615.680000pt;}
.y3e_c01257{bottom:616.320000pt;}
.y19_c01257{bottom:634.240000pt;}
.y29_c01257{bottom:634.880000pt;}
.y31_c01257{bottom:635.520000pt;}
.y3f_c01257{bottom:636.160000pt;}
.y18_c01257{bottom:636.800000pt;}
.y16_c01257{bottom:681.600000pt;}
.y3c_c01257{bottom:682.240000pt;}
.y17_c01257{bottom:682.880000pt;}
.y28_c01257{bottom:683.520000pt;}
.y30_c01257{bottom:684.160000pt;}
.y3d_c01257{bottom:701.440000pt;}
.y2f_c01257{bottom:702.080000pt;}
.y13_c01257{bottom:702.720000pt;}
.y14_c01257{bottom:703.360000pt;}
.y15_c01257{bottom:704.000000pt;}
.y27_c01257{bottom:704.640000pt;}
.y12_c01257{bottom:749.440000pt;}
.y26_c01257{bottom:750.080000pt;}
.y3b_c01257{bottom:750.720000pt;}
.y2e_c01257{bottom:751.360000pt;}
.y11_c01257{bottom:768.000000pt;}
.y25_c01257{bottom:768.640000pt;}
.yf_c01257{bottom:769.280000pt;}
.y10_c01257{bottom:769.920000pt;}
.y3a_c01257{bottom:770.560000pt;}
.yd_c01257{bottom:814.720000pt;}
.ye_c01257{bottom:816.000000pt;}
.y24_c01257{bottom:816.640000pt;}
.y38_c01257{bottom:817.920000pt;}
.ya_c01257{bottom:826.240000pt;}
.yc_c01257{bottom:835.200000pt;}
.yb_c01257{bottom:835.840000pt;}
.y23_c01257{bottom:836.480000pt;}
.y37_c01257{bottom:837.120000pt;}
.y39_c01257{bottom:837.760000pt;}
.y2d_c01257{bottom:838.400000pt;}
.y8_c01257{bottom:872.320000pt;}
.y9_c01257{bottom:872.960000pt;}
.y2c_c01257{bottom:873.600000pt;}
.y22_c01257{bottom:874.240000pt;}
.y36_c01257{bottom:875.520000pt;}
.y7_c01257{bottom:882.560000pt;}
.y6_c01257{bottom:892.160000pt;}
.y21_c01257{bottom:892.800000pt;}
.y34_c01257{bottom:893.440000pt;}
.y35_c01257{bottom:894.080000pt;}
.y4_c01257{bottom:930.560000pt;}
.y5_c01257{bottom:932.480000pt;}
.y1f_c01257{bottom:933.120000pt;}
.y20_c01257{bottom:933.760000pt;}
.y1_c01257{bottom:964.480000pt;}
.y2_c01257{bottom:965.760000pt;}
.y3_c01257{bottom:968.320000pt;}
.y33_c01257{bottom:1000.960000pt;}
.h11_c01257{height:9.215000pt;}
.hf_c01257{height:11.518750pt;}
.he_c01257{height:13.822500pt;}
.h10_c01257{height:16.126250pt;}
.h12_c01257{height:18.430000pt;}
.hd_c01257{height:27.645000pt;}
.h17_c01257{height:29.948750pt;}
.h16_c01257{height:32.252500pt;}
.ha_c01257{height:34.556250pt;}
.h4_c01257{height:36.860000pt;}
.h3_c01257{height:39.163750pt;}
.h9_c01257{height:41.467500pt;}
.h5_c01257{height:43.771250pt;}
.h6_c01257{height:46.075000pt;}
.h8_c01257{height:48.378750pt;}
.h7_c01257{height:50.682500pt;}
.hb_c01257{height:52.986250pt;}
.h2_c01257{height:55.290000pt;}
.hc_c01257{height:59.897500pt;}
.h14_c01257{height:69.112500pt;}
.h13_c01257{height:71.416250pt;}
.h15_c01257{height:73.720000pt;}
.h1_c01257{height:1032.666667pt;}
.h0_c01257{height:1032.960000pt;}
.w1_c01257{width:698.000000pt;}
.w0_c01257{width:698.240000pt;}
.x0_c01257{left:0.000000pt;}
.x6_c01257{left:61.440000pt;}
.x1_c01257{left:63.360000pt;}
.x28_c01257{left:64.640000pt;}
.x30_c01257{left:71.680000pt;}
.x7_c01257{left:88.320000pt;}
.x34_c01257{left:89.600000pt;}
.x4_c01257{left:95.360000pt;}
.x9_c01257{left:96.640000pt;}
.x29_c01257{left:97.920000pt;}
.x2f_c01257{left:104.320000pt;}
.x2_c01257{left:105.600000pt;}
.xb_c01257{left:106.880000pt;}
.x31_c01257{left:115.200000pt;}
.x35_c01257{left:124.800000pt;}
.x8_c01257{left:134.400000pt;}
.x3_c01257{left:142.720000pt;}
.x26_c01257{left:144.000000pt;}
.x5_c01257{left:152.320000pt;}
.x36_c01257{left:153.600000pt;}
.xa_c01257{left:161.920000pt;}
.x2a_c01257{left:170.880000pt;}
.x32_c01257{left:180.480000pt;}
.x33_c01257{left:191.360000pt;}
.x3f_c01257{left:199.040000pt;}
.x19_c01257{left:200.320000pt;}
.x37_c01257{left:201.600000pt;}
.xc_c01257{left:208.000000pt;}
.x18_c01257{left:209.280000pt;}
.x1e_c01257{left:218.880000pt;}
.x22_c01257{left:228.480000pt;}
.x46_c01257{left:247.680000pt;}
.x1a_c01257{left:257.921080pt;}
.xd_c01257{left:266.880000pt;}
.x1f_c01257{left:276.480000pt;}
.x23_c01257{left:286.080000pt;}
.x2b_c01257{left:295.040000pt;}
.x39_c01257{left:314.880000pt;}
.x3a_c01257{left:316.160000pt;}
.xf_c01257{left:325.760000pt;}
.xe_c01257{left:334.080000pt;}
.x38_c01257{left:342.400000pt;}
.x10_c01257{left:344.960000pt;}
.x42_c01257{left:353.280000pt;}
.x2c_c01257{left:363.520000pt;}
.x11_c01257{left:392.320000pt;}
.x14_c01257{left:393.600000pt;}
.x12_c01257{left:402.559400pt;}
.x13_c01257{left:412.160000pt;}
.x40_c01257{left:420.480000pt;}
.x3e_c01257{left:430.080000pt;}
.x3c_c01257{left:440.320000pt;}
.x1b_c01257{left:459.520000pt;}
.x1c_c01257{left:460.800000pt;}
.x16_c01257{left:469.120000pt;}
.x2d_c01257{left:470.400000pt;}
.x24_c01257{left:478.720000pt;}
.x20_c01257{left:487.680000pt;}
.x43_c01257{left:488.960000pt;}
.x3b_c01257{left:499.200000pt;}
.x2e_c01257{left:508.160000pt;}
.x44_c01257{left:517.760000pt;}
.x3d_c01257{left:528.000000pt;}
.x27_c01257{left:538.240000pt;}
.x17_c01257{left:546.560000pt;}
.x1d_c01257{left:547.840000pt;}
.x21_c01257{left:556.160000pt;}
.x25_c01257{left:557.440000pt;}
.x41_c01257{left:565.760000pt;}
.x45_c01257{left:576.000000pt;}
.x15_c01257{left:608.640000pt;}
}





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

.ir_c01258:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01258{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01258;src:url('chunks/assets/font_4df448aeb8a769be504dff35.woff2')format("woff");}.ff1_c01258{font-family:ff1_c01258;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4c_c01258{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);}
.m4b_c01258{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);}
.m54_c01258{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);}
.m43_c01258{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);}
.m4e_c01258{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m51_c01258{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m28_c01258{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01258{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m42_c01258{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m12_c01258{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m13_c01258{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m18_c01258{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);}
.m56_c01258{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);}
.m3f_c01258{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m29_c01258{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);}
.m2e_c01258{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);}
.m46_c01258{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m35_c01258{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m19_c01258{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m3_c01258{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m49_c01258{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01258{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);}
.m41_c01258{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);}
.m0_c01258{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m5_c01258{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);}
.m50_c01258{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m36_c01258{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);}
.m21_c01258{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);}
.m33_c01258{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);}
.m17_c01258{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m40_c01258{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01258{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m1_c01258{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);}
.m24_c01258{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01258{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m15_c01258{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);}
.m32_c01258{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);}
.m58_c01258{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m14_c01258{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01258{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m48_c01258{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m39_c01258{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);}
.ma_c01258{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01258{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01258{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);}
.m3a_c01258{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01258{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);}
.m4_c01258{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.mc_c01258{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m30_c01258{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.md_c01258{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);}
.mb_c01258{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m52_c01258{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m11_c01258{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m47_c01258{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01258{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.me_c01258{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m45_c01258{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);}
.m2_c01258{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);}
.m34_c01258{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m38_c01258{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m23_c01258{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);}
.m27_c01258{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.mf_c01258{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m4d_c01258{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);}
.m57_c01258{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m44_c01258{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m6_c01258{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01258{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01258{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);}
.m22_c01258{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m8_c01258{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);}
.m31_c01258{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m10_c01258{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01258{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01258{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m20_c01258{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);}
.m53_c01258{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);}
.m7_c01258{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m16_c01258{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);}
.m9_c01258{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m26_c01258{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01258{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m55_c01258{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);}
.m25_c01258{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01258{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m37_c01258{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01258{transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01258{transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);}
.v2_c01258{vertical-align:-11.520000px;}
.v1_c01258{vertical-align:-5.760000px;}
.v0_c01258{vertical-align:0.000000px;}
.ls0_c01258{letter-spacing:0.000000px;}
.sc__c01258{text-shadow:none;}
.sc0_c01258{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01258{-webkit-text-stroke:0px transparent;}
.sc0_c01258{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01258{word-spacing:-2.435520px;}
.ws1_c01258{word-spacing:-1.865520px;}
.ws2_c01258{word-spacing:0.000000px;}
.fc0_c01258{color:transparent;}
.fsb_c01258{font-size:31.680000px;}
.fs6_c01258{font-size:34.560000px;}
.fs2_c01258{font-size:37.440000px;}
.fs1_c01258{font-size:43.200000px;}
.fsa_c01258{font-size:46.080000px;}
.fs3_c01258{font-size:48.960000px;}
.fs4_c01258{font-size:51.840000px;}
.fs8_c01258{font-size:54.720000px;}
.fs5_c01258{font-size:57.600000px;}
.fs7_c01258{font-size:60.480000px;}
.fsc_c01258{font-size:63.360000px;}
.fs9_c01258{font-size:66.240000px;}
.fsd_c01258{font-size:69.120000px;}
.fs0_c01258{font-size:72.000000px;}
.y0_c01258{bottom:0.000000px;}
.y7b_c01258{bottom:74.160000px;}
.y7d_c01258{bottom:74.880000px;}
.y7c_c01258{bottom:75.600000px;}
.y79_c01258{bottom:77.040000px;}
.y7a_c01258{bottom:77.760000px;}
.y78_c01258{bottom:82.800000px;}
.y77_c01258{bottom:83.520000px;}
.y76_c01258{bottom:117.360000px;}
.y74_c01258{bottom:118.080000px;}
.y75_c01258{bottom:118.800000px;}
.y73_c01258{bottom:120.960000px;}
.y72_c01258{bottom:121.680000px;}
.y71_c01258{bottom:122.400000px;}
.y6e_c01258{bottom:157.680000px;}
.y6f_c01258{bottom:158.400000px;}
.y6c_c01258{bottom:159.120000px;}
.y70_c01258{bottom:160.560000px;}
.y6d_c01258{bottom:161.280000px;}
.y6b_c01258{bottom:162.720000px;}
.y6a_c01258{bottom:164.160000px;}
.y68_c01258{bottom:200.880000px;}
.y69_c01258{bottom:201.600000px;}
.y66_c01258{bottom:203.760000px;}
.y67_c01258{bottom:204.480000px;}
.y65_c01258{bottom:205.200000px;}
.y62_c01258{bottom:254.880000px;}
.y63_c01258{bottom:255.600000px;}
.y64_c01258{bottom:257.760000px;}
.y61_c01258{bottom:259.200000px;}
.y60_c01258{bottom:260.640000px;}
.y5f_c01258{bottom:261.360000px;}
.y5e_c01258{bottom:262.800000px;}
.y5c_c01258{bottom:298.080000px;}
.y5b_c01258{bottom:299.520000px;}
.y5d_c01258{bottom:300.240000px;}
.y5a_c01258{bottom:302.400000px;}
.y59_c01258{bottom:303.120000px;}
.y58_c01258{bottom:304.560000px;}
.y55_c01258{bottom:340.560000px;}
.y52_c01258{bottom:341.280000px;}
.y57_c01258{bottom:342.000000px;}
.y54_c01258{bottom:342.720000px;}
.y56_c01258{bottom:343.440000px;}
.y53_c01258{bottom:344.880000px;}
.y51_c01258{bottom:345.600000px;}
.y50_c01258{bottom:348.480000px;}
.y4d_c01258{bottom:383.040000px;}
.y4f_c01258{bottom:385.200000px;}
.y4e_c01258{bottom:385.920000px;}
.y4c_c01258{bottom:386.640000px;}
.y4b_c01258{bottom:390.240000px;}
.y4a_c01258{bottom:390.960000px;}
.y48_c01258{bottom:426.240000px;}
.y46_c01258{bottom:427.680000px;}
.y49_c01258{bottom:428.400000px;}
.y47_c01258{bottom:429.840000px;}
.y45_c01258{bottom:431.280000px;}
.y43_c01258{bottom:480.240000px;}
.y42_c01258{bottom:480.960000px;}
.y44_c01258{bottom:481.680000px;}
.y41_c01258{bottom:482.400000px;}
.y40_c01258{bottom:483.120000px;}
.y3f_c01258{bottom:483.840000px;}
.y3e_c01258{bottom:486.720000px;}
.y3d_c01258{bottom:522.720000px;}
.y3a_c01258{bottom:524.160000px;}
.y39_c01258{bottom:524.880000px;}
.y3b_c01258{bottom:525.600000px;}
.y3c_c01258{bottom:526.320000px;}
.y38_c01258{bottom:565.920000px;}
.y37_c01258{bottom:568.800000px;}
.y36_c01258{bottom:569.520000px;}
.y35_c01258{bottom:570.960000px;}
.y34_c01258{bottom:571.680000px;}
.y33_c01258{bottom:609.120000px;}
.y32_c01258{bottom:612.000000px;}
.y31_c01258{bottom:612.720000px;}
.y30_c01258{bottom:663.840000px;}
.y2f_c01258{bottom:666.000000px;}
.y2c_c01258{bottom:705.600000px;}
.y2d_c01258{bottom:706.320000px;}
.y2e_c01258{bottom:708.480000px;}
.y2b_c01258{bottom:709.200000px;}
.y28_c01258{bottom:748.800000px;}
.y2a_c01258{bottom:749.520000px;}
.y27_c01258{bottom:751.680000px;}
.y29_c01258{bottom:752.400000px;}
.y26_c01258{bottom:792.000000px;}
.y23_c01258{bottom:793.440000px;}
.y24_c01258{bottom:794.160000px;}
.y25_c01258{bottom:794.880000px;}
.y1c_c01258{bottom:833.760000px;}
.y20_c01258{bottom:834.480000px;}
.y1f_c01258{bottom:835.200000px;}
.y1b_c01258{bottom:835.920000px;}
.y1d_c01258{bottom:836.640000px;}
.y1e_c01258{bottom:837.360000px;}
.y22_c01258{bottom:838.080000px;}
.y21_c01258{bottom:838.800000px;}
.y1a_c01258{bottom:849.600000px;}
.y16_c01258{bottom:877.680000px;}
.y17_c01258{bottom:879.120000px;}
.y18_c01258{bottom:879.840000px;}
.y19_c01258{bottom:880.560000px;}
.y12_c01258{bottom:920.160000px;}
.y11_c01258{bottom:920.880000px;}
.y13_c01258{bottom:922.320000px;}
.y15_c01258{bottom:923.040000px;}
.y14_c01258{bottom:923.760000px;}
.yd_c01258{bottom:959.760000px;}
.y10_c01258{bottom:963.360000px;}
.ye_c01258{bottom:965.520000px;}
.yf_c01258{bottom:966.240000px;}
.y7_c01258{bottom:1005.840000px;}
.y8_c01258{bottom:1006.560000px;}
.yb_c01258{bottom:1007.280000px;}
.y9_c01258{bottom:1008.720000px;}
.ya_c01258{bottom:1009.440000px;}
.yc_c01258{bottom:1010.160000px;}
.y2_c01258{bottom:1046.160000px;}
.y3_c01258{bottom:1049.040000px;}
.y4_c01258{bottom:1050.480000px;}
.y5_c01258{bottom:1051.920000px;}
.y6_c01258{bottom:1052.640000px;}
.y1_c01258{bottom:1106.640000px;}
.hd_c01258{height:28.508906px;}
.h8_c01258{height:31.100625px;}
.h4_c01258{height:33.692344px;}
.h3_c01258{height:38.875781px;}
.hc_c01258{height:41.467500px;}
.h5_c01258{height:44.059219px;}
.h6_c01258{height:46.650937px;}
.ha_c01258{height:49.242656px;}
.h7_c01258{height:51.834375px;}
.h9_c01258{height:54.426094px;}
.he_c01258{height:57.017812px;}
.hb_c01258{height:59.609531px;}
.hf_c01258{height:62.201250px;}
.h2_c01258{height:64.792969px;}
.h1_c01258{height:1164.000000px;}
.h0_c01258{height:1164.240000px;}
.w1_c01258{width:787.500000px;}
.w0_c01258{width:787.680000px;}
.x0_c01258{left:0.000000px;}
.x2_c01258{left:66.240000px;}
.x25_c01258{left:67.680000px;}
.x47_c01258{left:69.120000px;}
.x3_c01258{left:86.400000px;}
.x19_c01258{left:96.480000px;}
.x3d_c01258{left:97.920000px;}
.xc_c01258{left:106.560000px;}
.x4a_c01258{left:108.720000px;}
.x30_c01258{left:115.920000px;}
.x53_c01258{left:118.800000px;}
.x4_c01258{left:127.440000px;}
.x48_c01258{left:128.880000px;}
.x35_c01258{left:136.800000px;}
.x4d_c01258{left:138.240000px;}
.x3e_c01258{left:149.040000px;}
.x1a_c01258{left:168.480000px;}
.x5_c01258{left:180.720000px;}
.x13_c01258{left:190.080000px;}
.xd_c01258{left:200.880000px;}
.x1b_c01258{left:209.520000px;}
.x26_c01258{left:211.680000px;}
.x54_c01258{left:213.120000px;}
.x2c_c01258{left:221.040000px;}
.xe_c01258{left:222.480000px;}
.x36_c01258{left:232.560000px;}
.x1c_c01258{left:244.080000px;}
.x31_c01258{left:254.160000px;}
.x4e_c01258{left:265.680000px;}
.x14_c01258{left:276.480000px;}
.x32_c01258{left:286.560000px;}
.x27_c01258{left:297.360000px;}
.xf_c01258{left:298.800000px;}
.x37_c01258{left:308.160000px;}
.x15_c01258{left:318.960000px;}
.x33_c01258{left:329.760000px;}
.x3b_c01258{left:340.560000px;}
.x4b_c01258{left:342.000000px;}
.x1d_c01258{left:352.080000px;}
.x16_c01258{left:362.160000px;}
.x38_c01258{left:372.960000px;}
.x3f_c01258{left:375.120000px;}
.x1e_c01258{left:383.040000px;}
.x4f_c01258{left:385.200000px;}
.x6_c01258{left:395.280000px;}
.x42_c01258{left:406.080000px;}
.x51_c01258{left:416.160000px;}
.x10_c01258{left:417.600000px;}
.x1f_c01258{left:427.680000px;}
.x28_c01258{left:438.480000px;}
.x20_c01258{left:448.560000px;}
.x43_c01258{left:450.720000px;}
.x17_c01258{left:460.080000px;}
.x2d_c01258{left:470.880000px;}
.x39_c01258{left:480.960000px;}
.x29_c01258{left:482.400000px;}
.x21_c01258{left:492.480000px;}
.x2e_c01258{left:503.280000px;}
.x49_c01258{left:505.440000px;}
.x7_c01258{left:514.080000px;}
.x11_c01258{left:525.600000px;}
.x44_c01258{left:527.040000px;}
.x4c_c01258{left:535.680000px;}
.x45_c01258{left:547.200000px;}
.x8_c01258{left:558.000000px;}
.x40_c01258{left:559.440000px;}
.x18_c01258{left:568.800000px;}
.x12_c01258{left:570.240000px;}
.x22_c01258{left:578.880000px;}
.x3a_c01258{left:580.320000px;}
.x41_c01258{left:590.400000px;}
.x2a_c01258{left:591.840000px;}
.x9_c01258{left:601.200000px;}
.x3c_c01258{left:602.640000px;}
.x2b_c01258{left:613.440000px;}
.x23_c01258{left:623.520000px;}
.xa_c01258{left:633.600000px;}
.x46_c01258{left:643.680000px;}
.x50_c01258{left:646.560000px;}
.x24_c01258{left:655.920000px;}
.x52_c01258{left:657.360000px;}
.x2f_c01258{left:666.000000px;}
.x34_c01258{left:667.440000px;}
.xb_c01258{left:677.520000px;}
.x1_c01258{left:691.200000px;}
@media print{
.v2_c01258{vertical-align:-10.240000pt;}
.v1_c01258{vertical-align:-5.120000pt;}
.v0_c01258{vertical-align:0.000000pt;}
.ls0_c01258{letter-spacing:0.000000pt;}
.ws0_c01258{word-spacing:-2.164907pt;}
.ws1_c01258{word-spacing:-1.658240pt;}
.ws2_c01258{word-spacing:0.000000pt;}
.fsb_c01258{font-size:28.160000pt;}
.fs6_c01258{font-size:30.720000pt;}
.fs2_c01258{font-size:33.280000pt;}
.fs1_c01258{font-size:38.400000pt;}
.fsa_c01258{font-size:40.960000pt;}
.fs3_c01258{font-size:43.520000pt;}
.fs4_c01258{font-size:46.080000pt;}
.fs8_c01258{font-size:48.640000pt;}
.fs5_c01258{font-size:51.200000pt;}
.fs7_c01258{font-size:53.760000pt;}
.fsc_c01258{font-size:56.320000pt;}
.fs9_c01258{font-size:58.880000pt;}
.fsd_c01258{font-size:61.440000pt;}
.fs0_c01258{font-size:64.000000pt;}
.y0_c01258{bottom:0.000000pt;}
.y7b_c01258{bottom:65.920000pt;}
.y7d_c01258{bottom:66.560000pt;}
.y7c_c01258{bottom:67.200000pt;}
.y79_c01258{bottom:68.480000pt;}
.y7a_c01258{bottom:69.120000pt;}
.y78_c01258{bottom:73.600000pt;}
.y77_c01258{bottom:74.240000pt;}
.y76_c01258{bottom:104.320000pt;}
.y74_c01258{bottom:104.960000pt;}
.y75_c01258{bottom:105.600000pt;}
.y73_c01258{bottom:107.520000pt;}
.y72_c01258{bottom:108.160000pt;}
.y71_c01258{bottom:108.800000pt;}
.y6e_c01258{bottom:140.160000pt;}
.y6f_c01258{bottom:140.800000pt;}
.y6c_c01258{bottom:141.440000pt;}
.y70_c01258{bottom:142.720000pt;}
.y6d_c01258{bottom:143.360000pt;}
.y6b_c01258{bottom:144.640000pt;}
.y6a_c01258{bottom:145.920000pt;}
.y68_c01258{bottom:178.560000pt;}
.y69_c01258{bottom:179.200000pt;}
.y66_c01258{bottom:181.120000pt;}
.y67_c01258{bottom:181.760000pt;}
.y65_c01258{bottom:182.400000pt;}
.y62_c01258{bottom:226.560000pt;}
.y63_c01258{bottom:227.200000pt;}
.y64_c01258{bottom:229.120000pt;}
.y61_c01258{bottom:230.400000pt;}
.y60_c01258{bottom:231.680000pt;}
.y5f_c01258{bottom:232.320000pt;}
.y5e_c01258{bottom:233.600000pt;}
.y5c_c01258{bottom:264.960000pt;}
.y5b_c01258{bottom:266.240000pt;}
.y5d_c01258{bottom:266.880000pt;}
.y5a_c01258{bottom:268.800000pt;}
.y59_c01258{bottom:269.440000pt;}
.y58_c01258{bottom:270.720000pt;}
.y55_c01258{bottom:302.720000pt;}
.y52_c01258{bottom:303.360000pt;}
.y57_c01258{bottom:304.000000pt;}
.y54_c01258{bottom:304.640000pt;}
.y56_c01258{bottom:305.280000pt;}
.y53_c01258{bottom:306.560000pt;}
.y51_c01258{bottom:307.200000pt;}
.y50_c01258{bottom:309.760000pt;}
.y4d_c01258{bottom:340.480000pt;}
.y4f_c01258{bottom:342.400000pt;}
.y4e_c01258{bottom:343.040000pt;}
.y4c_c01258{bottom:343.680000pt;}
.y4b_c01258{bottom:346.880000pt;}
.y4a_c01258{bottom:347.520000pt;}
.y48_c01258{bottom:378.880000pt;}
.y46_c01258{bottom:380.160000pt;}
.y49_c01258{bottom:380.800000pt;}
.y47_c01258{bottom:382.080000pt;}
.y45_c01258{bottom:383.360000pt;}
.y43_c01258{bottom:426.880000pt;}
.y42_c01258{bottom:427.520000pt;}
.y44_c01258{bottom:428.160000pt;}
.y41_c01258{bottom:428.800000pt;}
.y40_c01258{bottom:429.440000pt;}
.y3f_c01258{bottom:430.080000pt;}
.y3e_c01258{bottom:432.640000pt;}
.y3d_c01258{bottom:464.640000pt;}
.y3a_c01258{bottom:465.920000pt;}
.y39_c01258{bottom:466.560000pt;}
.y3b_c01258{bottom:467.200000pt;}
.y3c_c01258{bottom:467.840000pt;}
.y38_c01258{bottom:503.040000pt;}
.y37_c01258{bottom:505.600000pt;}
.y36_c01258{bottom:506.240000pt;}
.y35_c01258{bottom:507.520000pt;}
.y34_c01258{bottom:508.160000pt;}
.y33_c01258{bottom:541.440000pt;}
.y32_c01258{bottom:544.000000pt;}
.y31_c01258{bottom:544.640000pt;}
.y30_c01258{bottom:590.080000pt;}
.y2f_c01258{bottom:592.000000pt;}
.y2c_c01258{bottom:627.200000pt;}
.y2d_c01258{bottom:627.840000pt;}
.y2e_c01258{bottom:629.760000pt;}
.y2b_c01258{bottom:630.400000pt;}
.y28_c01258{bottom:665.600000pt;}
.y2a_c01258{bottom:666.240000pt;}
.y27_c01258{bottom:668.160000pt;}
.y29_c01258{bottom:668.800000pt;}
.y26_c01258{bottom:704.000000pt;}
.y23_c01258{bottom:705.280000pt;}
.y24_c01258{bottom:705.920000pt;}
.y25_c01258{bottom:706.560000pt;}
.y1c_c01258{bottom:741.120000pt;}
.y20_c01258{bottom:741.760000pt;}
.y1f_c01258{bottom:742.400000pt;}
.y1b_c01258{bottom:743.040000pt;}
.y1d_c01258{bottom:743.680000pt;}
.y1e_c01258{bottom:744.320000pt;}
.y22_c01258{bottom:744.960000pt;}
.y21_c01258{bottom:745.600000pt;}
.y1a_c01258{bottom:755.200000pt;}
.y16_c01258{bottom:780.160000pt;}
.y17_c01258{bottom:781.440000pt;}
.y18_c01258{bottom:782.080000pt;}
.y19_c01258{bottom:782.720000pt;}
.y12_c01258{bottom:817.920000pt;}
.y11_c01258{bottom:818.560000pt;}
.y13_c01258{bottom:819.840000pt;}
.y15_c01258{bottom:820.480000pt;}
.y14_c01258{bottom:821.120000pt;}
.yd_c01258{bottom:853.120000pt;}
.y10_c01258{bottom:856.320000pt;}
.ye_c01258{bottom:858.240000pt;}
.yf_c01258{bottom:858.880000pt;}
.y7_c01258{bottom:894.080000pt;}
.y8_c01258{bottom:894.720000pt;}
.yb_c01258{bottom:895.360000pt;}
.y9_c01258{bottom:896.640000pt;}
.ya_c01258{bottom:897.280000pt;}
.yc_c01258{bottom:897.920000pt;}
.y2_c01258{bottom:929.920000pt;}
.y3_c01258{bottom:932.480000pt;}
.y4_c01258{bottom:933.760000pt;}
.y5_c01258{bottom:935.040000pt;}
.y6_c01258{bottom:935.680000pt;}
.y1_c01258{bottom:983.680000pt;}
.hd_c01258{height:25.341250pt;}
.h8_c01258{height:27.645000pt;}
.h4_c01258{height:29.948750pt;}
.h3_c01258{height:34.556250pt;}
.hc_c01258{height:36.860000pt;}
.h5_c01258{height:39.163750pt;}
.h6_c01258{height:41.467500pt;}
.ha_c01258{height:43.771250pt;}
.h7_c01258{height:46.075000pt;}
.h9_c01258{height:48.378750pt;}
.he_c01258{height:50.682500pt;}
.hb_c01258{height:52.986250pt;}
.hf_c01258{height:55.290000pt;}
.h2_c01258{height:57.593750pt;}
.h1_c01258{height:1034.666667pt;}
.h0_c01258{height:1034.880000pt;}
.w1_c01258{width:700.000000pt;}
.w0_c01258{width:700.160000pt;}
.x0_c01258{left:0.000000pt;}
.x2_c01258{left:58.880000pt;}
.x25_c01258{left:60.160000pt;}
.x47_c01258{left:61.440000pt;}
.x3_c01258{left:76.800000pt;}
.x19_c01258{left:85.760000pt;}
.x3d_c01258{left:87.040000pt;}
.xc_c01258{left:94.720000pt;}
.x4a_c01258{left:96.640000pt;}
.x30_c01258{left:103.040000pt;}
.x53_c01258{left:105.600000pt;}
.x4_c01258{left:113.280000pt;}
.x48_c01258{left:114.560000pt;}
.x35_c01258{left:121.600000pt;}
.x4d_c01258{left:122.880000pt;}
.x3e_c01258{left:132.480000pt;}
.x1a_c01258{left:149.760000pt;}
.x5_c01258{left:160.640000pt;}
.x13_c01258{left:168.960000pt;}
.xd_c01258{left:178.560000pt;}
.x1b_c01258{left:186.240000pt;}
.x26_c01258{left:188.160000pt;}
.x54_c01258{left:189.440000pt;}
.x2c_c01258{left:196.480000pt;}
.xe_c01258{left:197.760000pt;}
.x36_c01258{left:206.720000pt;}
.x1c_c01258{left:216.960000pt;}
.x31_c01258{left:225.920000pt;}
.x4e_c01258{left:236.160000pt;}
.x14_c01258{left:245.760000pt;}
.x32_c01258{left:254.720000pt;}
.x27_c01258{left:264.320000pt;}
.xf_c01258{left:265.600000pt;}
.x37_c01258{left:273.920000pt;}
.x15_c01258{left:283.520000pt;}
.x33_c01258{left:293.120000pt;}
.x3b_c01258{left:302.720000pt;}
.x4b_c01258{left:304.000000pt;}
.x1d_c01258{left:312.960000pt;}
.x16_c01258{left:321.920000pt;}
.x38_c01258{left:331.520000pt;}
.x3f_c01258{left:333.440000pt;}
.x1e_c01258{left:340.480000pt;}
.x4f_c01258{left:342.400000pt;}
.x6_c01258{left:351.360000pt;}
.x42_c01258{left:360.960000pt;}
.x51_c01258{left:369.920000pt;}
.x10_c01258{left:371.200000pt;}
.x1f_c01258{left:380.160000pt;}
.x28_c01258{left:389.760000pt;}
.x20_c01258{left:398.720000pt;}
.x43_c01258{left:400.640000pt;}
.x17_c01258{left:408.960000pt;}
.x2d_c01258{left:418.560000pt;}
.x39_c01258{left:427.520000pt;}
.x29_c01258{left:428.800000pt;}
.x21_c01258{left:437.760000pt;}
.x2e_c01258{left:447.360000pt;}
.x49_c01258{left:449.280000pt;}
.x7_c01258{left:456.960000pt;}
.x11_c01258{left:467.200000pt;}
.x44_c01258{left:468.480000pt;}
.x4c_c01258{left:476.160000pt;}
.x45_c01258{left:486.400000pt;}
.x8_c01258{left:496.000000pt;}
.x40_c01258{left:497.280000pt;}
.x18_c01258{left:505.600000pt;}
.x12_c01258{left:506.880000pt;}
.x22_c01258{left:514.560000pt;}
.x3a_c01258{left:515.840000pt;}
.x41_c01258{left:524.800000pt;}
.x2a_c01258{left:526.080000pt;}
.x9_c01258{left:534.400000pt;}
.x3c_c01258{left:535.680000pt;}
.x2b_c01258{left:545.280000pt;}
.x23_c01258{left:554.240000pt;}
.xa_c01258{left:563.200000pt;}
.x46_c01258{left:572.160000pt;}
.x50_c01258{left:574.720000pt;}
.x24_c01258{left:583.040000pt;}
.x52_c01258{left:584.320000pt;}
.x2f_c01258{left:592.000000pt;}
.x34_c01258{left:593.280000pt;}
.xb_c01258{left:602.240000pt;}
.x1_c01258{left:614.400000pt;}
}





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

.ir_c01259:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01259{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01259;src:url('chunks/assets/font_b339be318ed403c01578033b.woff2')format("woff");}.ff1_c01259{font-family:ff1_c01259;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3f_c01259{transform:matrix(0.221475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221475,0.000000,0.000000,0.250000,0,0);}
.m60_c01259{transform:matrix(0.247925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247925,0.000000,0.000000,0.250000,0,0);}
.m64_c01259{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m3_c01259{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);}
.m56_c01259{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);}
.m4c_c01259{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m15_c01259{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);}
.m44_c01259{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);}
.m30_c01259{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01259{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01259{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m5c_c01259{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m51_c01259{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m8_c01259{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01259{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m13_c01259{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m41_c01259{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01259{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);}
.m5f_c01259{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m55_c01259{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m10_c01259{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m16_c01259{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m5_c01259{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);}
.m5b_c01259{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m27_c01259{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);}
.m4a_c01259{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m59_c01259{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);}
.m33_c01259{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m38_c01259{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);}
.m42_c01259{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1_c01259{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m12_c01259{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01259{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m22_c01259{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);}
.m7_c01259{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);}
.m0_c01259{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01259{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);}
.m40_c01259{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m5d_c01259{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m6_c01259{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);}
.m1d_c01259{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);}
.m11_c01259{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01259{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01259{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m37_c01259{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);}
.m61_c01259{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01259{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);}
.m4d_c01259{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m20_c01259{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);}
.mc_c01259{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);}
.m2e_c01259{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01259{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m18_c01259{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01259{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);}
.m45_c01259{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m29_c01259{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m21_c01259{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);}
.m58_c01259{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m23_c01259{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.mf_c01259{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.md_c01259{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01259{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m14_c01259{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);}
.m34_c01259{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m2_c01259{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01259{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m49_c01259{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m17_c01259{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01259{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.ma_c01259{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m54_c01259{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m28_c01259{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);}
.m9_c01259{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);}
.m66_c01259{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m25_c01259{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01259{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m4e_c01259{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);}
.m39_c01259{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m36_c01259{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.mb_c01259{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m57_c01259{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);}
.m46_c01259{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m53_c01259{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.me_c01259{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m4_c01259{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);}
.m3e_c01259{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m43_c01259{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);}
.m26_c01259{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);}
.m63_c01259{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m50_c01259{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m48_c01259{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01259{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m32_c01259{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m24_c01259{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01259{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);}
.m47_c01259{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m5a_c01259{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m31_c01259{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);}
.m35_c01259{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m5e_c01259{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m52_c01259{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m62_c01259{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.m65_c01259{transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);}
.v2_c01259{vertical-align:-2.880000px;}
.v0_c01259{vertical-align:0.000000px;}
.v1_c01259{vertical-align:2.880000px;}
.ls0_c01259{letter-spacing:0.000000px;}
.sc__c01259{text-shadow:none;}
.sc0_c01259{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01259{-webkit-text-stroke:0px transparent;}
.sc0_c01259{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01259{word-spacing:-7.342560px;}
.ws0_c01259{word-spacing:-4.366560px;}
.ws1_c01259{word-spacing:-2.055600px;}
.ws3_c01259{word-spacing:0.000000px;}
.fc0_c01259{color:transparent;}
.fsb_c01259{font-size:34.560000px;}
.fsa_c01259{font-size:37.440000px;}
.fsd_c01259{font-size:40.320000px;}
.fs10_c01259{font-size:43.200000px;}
.fs1_c01259{font-size:46.080000px;}
.fs6_c01259{font-size:48.960000px;}
.fs2_c01259{font-size:51.840000px;}
.fs8_c01259{font-size:54.720000px;}
.fs7_c01259{font-size:57.600000px;}
.fs3_c01259{font-size:60.480000px;}
.fs4_c01259{font-size:63.360000px;}
.fs5_c01259{font-size:66.240000px;}
.fs9_c01259{font-size:69.120000px;}
.fs0_c01259{font-size:72.000000px;}
.fsf_c01259{font-size:77.760000px;}
.fse_c01259{font-size:80.640000px;}
.fsc_c01259{font-size:89.280000px;}
.y0_c01259{bottom:0.000000px;}
.y91_c01259{bottom:17.280000px;}
.y90_c01259{bottom:18.720000px;}
.y8d_c01259{bottom:19.440000px;}
.y92_c01259{bottom:20.160000px;}
.y8f_c01259{bottom:21.600000px;}
.y8e_c01259{bottom:22.320000px;}
.y8c_c01259{bottom:25.200000px;}
.y87_c01259{bottom:57.600000px;}
.y8a_c01259{bottom:58.320000px;}
.y88_c01259{bottom:59.040000px;}
.y8b_c01259{bottom:59.760000px;}
.y84_c01259{bottom:60.480000px;}
.y89_c01259{bottom:61.200000px;}
.y86_c01259{bottom:61.920000px;}
.y85_c01259{bottom:63.360000px;}
.y82_c01259{bottom:65.520000px;}
.y83_c01259{bottom:66.960000px;}
.y7f_c01259{bottom:102.240000px;}
.y81_c01259{bottom:102.960000px;}
.y80_c01259{bottom:104.400000px;}
.y7e_c01259{bottom:105.120000px;}
.y7d_c01259{bottom:105.840000px;}
.y7c_c01259{bottom:106.560000px;}
.y7b_c01259{bottom:109.440000px;}
.y7a_c01259{bottom:111.600000px;}
.y79_c01259{bottom:144.000000px;}
.y78_c01259{bottom:146.160000px;}
.y77_c01259{bottom:147.600000px;}
.y76_c01259{bottom:149.760000px;}
.y75_c01259{bottom:150.480000px;}
.y74_c01259{bottom:151.920000px;}
.y71_c01259{bottom:187.200000px;}
.y70_c01259{bottom:187.920000px;}
.y73_c01259{bottom:188.640000px;}
.y6f_c01259{bottom:189.360000px;}
.y72_c01259{bottom:190.800000px;}
.y6e_c01259{bottom:229.680000px;}
.y6b_c01259{bottom:230.400000px;}
.y6d_c01259{bottom:232.560000px;}
.y6a_c01259{bottom:233.280000px;}
.y6c_c01259{bottom:234.000000px;}
.y69_c01259{bottom:234.720000px;}
.y68_c01259{bottom:236.880000px;}
.y67_c01259{bottom:237.600000px;}
.y65_c01259{bottom:273.600000px;}
.y66_c01259{bottom:275.760000px;}
.y64_c01259{bottom:276.480000px;}
.y63_c01259{bottom:277.920000px;}
.y62_c01259{bottom:280.080000px;}
.y61_c01259{bottom:281.520000px;}
.y60_c01259{bottom:316.080000px;}
.y5e_c01259{bottom:316.800000px;}
.y5d_c01259{bottom:318.240000px;}
.y5f_c01259{bottom:318.960000px;}
.y5c_c01259{bottom:322.560000px;}
.y5b_c01259{bottom:358.560000px;}
.y5a_c01259{bottom:362.160000px;}
.y59_c01259{bottom:363.600000px;}
.y55_c01259{bottom:403.920000px;}
.y58_c01259{bottom:404.640000px;}
.y56_c01259{bottom:405.360000px;}
.y57_c01259{bottom:406.080000px;}
.y54_c01259{bottom:406.800000px;}
.y53_c01259{bottom:407.520000px;}
.y52_c01259{bottom:445.680000px;}
.y4f_c01259{bottom:446.400000px;}
.y50_c01259{bottom:447.840000px;}
.y51_c01259{bottom:448.560000px;}
.y4e_c01259{bottom:449.280000px;}
.y4d_c01259{bottom:451.440000px;}
.y4a_c01259{bottom:488.880000px;}
.y4c_c01259{bottom:491.040000px;}
.y4b_c01259{bottom:491.760000px;}
.y49_c01259{bottom:492.480000px;}
.y47_c01259{bottom:493.200000px;}
.y48_c01259{bottom:493.920000px;}
.y45_c01259{bottom:531.360000px;}
.y46_c01259{bottom:534.240000px;}
.y42_c01259{bottom:584.640000px;}
.y44_c01259{bottom:586.800000px;}
.y43_c01259{bottom:587.520000px;}
.y3f_c01259{bottom:627.840000px;}
.y40_c01259{bottom:630.000000px;}
.y3e_c01259{bottom:630.720000px;}
.y41_c01259{bottom:631.440000px;}
.y38_c01259{bottom:669.600000px;}
.y3b_c01259{bottom:670.320000px;}
.y3a_c01259{bottom:671.040000px;}
.y3c_c01259{bottom:671.760000px;}
.y37_c01259{bottom:672.480000px;}
.y39_c01259{bottom:673.200000px;}
.y3d_c01259{bottom:673.920000px;}
.y32_c01259{bottom:712.800000px;}
.y36_c01259{bottom:713.520000px;}
.y35_c01259{bottom:714.960000px;}
.y31_c01259{bottom:715.680000px;}
.y33_c01259{bottom:716.400000px;}
.y34_c01259{bottom:717.120000px;}
.y2c_c01259{bottom:756.000000px;}
.y2f_c01259{bottom:756.720000px;}
.y2b_c01259{bottom:758.160000px;}
.y2d_c01259{bottom:758.880000px;}
.y2e_c01259{bottom:759.600000px;}
.y30_c01259{bottom:760.320000px;}
.y29_c01259{bottom:799.200000px;}
.y2a_c01259{bottom:799.920000px;}
.y25_c01259{bottom:800.640000px;}
.y26_c01259{bottom:801.360000px;}
.y27_c01259{bottom:802.080000px;}
.y28_c01259{bottom:802.800000px;}
.y21_c01259{bottom:840.960000px;}
.y22_c01259{bottom:844.560000px;}
.y23_c01259{bottom:845.280000px;}
.y24_c01259{bottom:846.000000px;}
.y1c_c01259{bottom:883.440000px;}
.y1e_c01259{bottom:885.600000px;}
.y1d_c01259{bottom:887.040000px;}
.y1f_c01259{bottom:888.480000px;}
.y20_c01259{bottom:889.200000px;}
.y18_c01259{bottom:927.360000px;}
.y16_c01259{bottom:928.080000px;}
.y17_c01259{bottom:928.800000px;}
.y1b_c01259{bottom:930.240000px;}
.y19_c01259{bottom:930.960000px;}
.y1a_c01259{bottom:931.680000px;}
.yf_c01259{bottom:969.120000px;}
.y13_c01259{bottom:972.000000px;}
.y10_c01259{bottom:972.720000px;}
.y11_c01259{bottom:973.440000px;}
.y12_c01259{bottom:974.160000px;}
.y14_c01259{bottom:974.880000px;}
.y15_c01259{bottom:975.600000px;}
.ye_c01259{bottom:987.840000px;}
.y7_c01259{bottom:1010.160000px;}
.y8_c01259{bottom:1012.320000px;}
.yb_c01259{bottom:1015.200000px;}
.y9_c01259{bottom:1016.640000px;}
.ya_c01259{bottom:1018.080000px;}
.yc_c01259{bottom:1018.800000px;}
.yd_c01259{bottom:1019.520000px;}
.y6_c01259{bottom:1058.400000px;}
.y2_c01259{bottom:1059.120000px;}
.y3_c01259{bottom:1059.840000px;}
.y4_c01259{bottom:1060.560000px;}
.y5_c01259{bottom:1061.280000px;}
.y1_c01259{bottom:1110.960000px;}
.he_c01259{height:31.100625px;}
.hd_c01259{height:33.692344px;}
.h10_c01259{height:36.284062px;}
.h13_c01259{height:38.875781px;}
.h3_c01259{height:41.467500px;}
.h9_c01259{height:44.059219px;}
.h4_c01259{height:46.650937px;}
.hb_c01259{height:49.242656px;}
.h8_c01259{height:49.530938px;}
.ha_c01259{height:51.834375px;}
.h5_c01259{height:54.426094px;}
.h6_c01259{height:57.017812px;}
.h7_c01259{height:59.609531px;}
.hc_c01259{height:62.201250px;}
.h2_c01259{height:64.792969px;}
.h12_c01259{height:69.976406px;}
.h11_c01259{height:72.568125px;}
.hf_c01259{height:80.343281px;}
.h0_c01259{height:1171.440000px;}
.h1_c01259{height:1171.500000px;}
.w0_c01259{width:781.920000px;}
.w1_c01259{width:782.250000px;}
.x0_c01259{left:0.000000px;}
.x69_c01259{left:61.200000px;}
.x8_c01259{left:62.640000px;}
.x33_c01259{left:64.080000px;}
.x49_c01259{left:66.240000px;}
.x62_c01259{left:69.120000px;}
.x1b_c01259{left:91.440000px;}
.x41_c01259{left:92.880000px;}
.x4d_c01259{left:94.320000px;}
.x9_c01259{left:101.520000px;}
.x45_c01259{left:103.680000px;}
.x5e_c01259{left:105.120000px;}
.x3c_c01259{left:112.320000px;}
.x63_c01259{left:115.200000px;}
.x1c_c01259{left:123.120000px;}
.x29_c01259{left:133.200000px;}
.x4a_c01259{left:134.640000px;}
.x64_c01259{left:145.440000px;}
.x20_c01259{left:153.360000px;}
.x47_c01259{left:155.520000px;}
.x2_c01259{left:162.720000px;}
.x11_c01259{left:164.160000px;}
.x40_c01259{left:165.600000px;}
.x2d_c01259{left:174.960000px;}
.xa_c01259{left:195.120000px;}
.x34_c01259{left:196.560000px;}
.x56_c01259{left:198.720000px;}
.x21_c01259{left:206.640000px;}
.x5c_c01259{left:209.520000px;}
.x1d_c01259{left:217.440000px;}
.x65_c01259{left:220.320000px;}
.x3_c01259{left:227.520000px;}
.x12_c01259{left:228.960000px;}
.x2a_c01259{left:239.040000px;}
.x52_c01259{left:240.480000px;}
.x5f_c01259{left:241.920000px;}
.x1e_c01259{left:249.840000px;}
.x66_c01259{left:252.000000px;}
.x13_c01259{left:259.200000px;}
.x42_c01259{left:261.360000px;}
.x2e_c01259{left:271.440000px;}
.x3d_c01259{left:283.680000px;}
.x22_c01259{left:291.600000px;}
.x46_c01259{left:293.760000px;}
.x2f_c01259{left:298.080000px;}
.xb_c01259{left:303.120000px;}
.x38_c01259{left:304.560000px;}
.x6a_c01259{left:306.000000px;}
.x3e_c01259{left:314.640000px;}
.x60_c01259{left:317.520000px;}
.x30_c01259{left:324.720000px;}
.x14_c01259{left:326.160000px;}
.x48_c01259{left:328.320000px;}
.x4_c01259{left:336.240000px;}
.x53_c01259{left:337.680000px;}
.x39_c01259{left:348.480000px;}
.x43_c01259{left:358.560000px;}
.x4e_c01259{left:362.160000px;}
.x15_c01259{left:369.360000px;}
.xc_c01259{left:379.440000px;}
.x57_c01259{left:382.320000px;}
.x23_c01259{left:390.960000px;}
.x3a_c01259{left:400.320000px;}
.x5_c01259{left:411.840000px;}
.x4b_c01259{left:413.280000px;}
.x4f_c01259{left:414.720000px;}
.x24_c01259{left:423.360000px;}
.x2b_c01259{left:432.720000px;}
.x16_c01259{left:434.160000px;}
.x35_c01259{left:444.960000px;}
.x58_c01259{left:446.400000px;}
.x27_c01259{left:455.760000px;}
.x6b_c01259{left:457.920000px;}
.x3b_c01259{left:466.560000px;}
.x50_c01259{left:468.000000px;}
.x6_c01259{left:476.640000px;}
.x5d_c01259{left:479.520000px;}
.x1f_c01259{left:488.880000px;}
.x59_c01259{left:490.320000px;}
.x54_c01259{left:499.680000px;}
.x67_c01259{left:501.120000px;}
.x2c_c01259{left:509.760000px;}
.x36_c01259{left:511.920000px;}
.xd_c01259{left:521.280000px;}
.x5a_c01259{left:522.720000px;}
.x25_c01259{left:531.360000px;}
.x4c_c01259{left:533.520000px;}
.x31_c01259{left:542.880000px;}
.x3f_c01259{left:544.320000px;}
.x17_c01259{left:554.400000px;}
.x7_c01259{left:563.760000px;}
.x44_c01259{left:565.920000px;}
.x32_c01259{left:576.000000px;}
.x61_c01259{left:577.440000px;}
.x18_c01259{left:585.360000px;}
.x55_c01259{left:587.520000px;}
.x10_c01259{left:597.600000px;}
.x68_c01259{left:599.040000px;}
.x37_c01259{left:609.120000px;}
.x19_c01259{left:617.760000px;}
.x26_c01259{left:629.280000px;}
.x28_c01259{left:630.720000px;}
.xe_c01259{left:640.800000px;}
.x6c_c01259{left:642.240000px;}
.x1a_c01259{left:651.600000px;}
.x51_c01259{left:653.040000px;}
.x5b_c01259{left:665.280000px;}
.xf_c01259{left:673.920000px;}
.x1_c01259{left:682.560000px;}
@media print{
.v2_c01259{vertical-align:-2.560000pt;}
.v0_c01259{vertical-align:0.000000pt;}
.v1_c01259{vertical-align:2.560000pt;}
.ls0_c01259{letter-spacing:0.000000pt;}
.ws2_c01259{word-spacing:-6.526720pt;}
.ws0_c01259{word-spacing:-3.881387pt;}
.ws1_c01259{word-spacing:-1.827200pt;}
.ws3_c01259{word-spacing:0.000000pt;}
.fsb_c01259{font-size:30.720000pt;}
.fsa_c01259{font-size:33.280000pt;}
.fsd_c01259{font-size:35.840000pt;}
.fs10_c01259{font-size:38.400000pt;}
.fs1_c01259{font-size:40.960000pt;}
.fs6_c01259{font-size:43.520000pt;}
.fs2_c01259{font-size:46.080000pt;}
.fs8_c01259{font-size:48.640000pt;}
.fs7_c01259{font-size:51.200000pt;}
.fs3_c01259{font-size:53.760000pt;}
.fs4_c01259{font-size:56.320000pt;}
.fs5_c01259{font-size:58.880000pt;}
.fs9_c01259{font-size:61.440000pt;}
.fs0_c01259{font-size:64.000000pt;}
.fsf_c01259{font-size:69.120000pt;}
.fse_c01259{font-size:71.680000pt;}
.fsc_c01259{font-size:79.360000pt;}
.y0_c01259{bottom:0.000000pt;}
.y91_c01259{bottom:15.360000pt;}
.y90_c01259{bottom:16.640000pt;}
.y8d_c01259{bottom:17.280000pt;}
.y92_c01259{bottom:17.920000pt;}
.y8f_c01259{bottom:19.200000pt;}
.y8e_c01259{bottom:19.840000pt;}
.y8c_c01259{bottom:22.400000pt;}
.y87_c01259{bottom:51.200000pt;}
.y8a_c01259{bottom:51.840000pt;}
.y88_c01259{bottom:52.480000pt;}
.y8b_c01259{bottom:53.120000pt;}
.y84_c01259{bottom:53.760000pt;}
.y89_c01259{bottom:54.400000pt;}
.y86_c01259{bottom:55.040000pt;}
.y85_c01259{bottom:56.320000pt;}
.y82_c01259{bottom:58.240000pt;}
.y83_c01259{bottom:59.520000pt;}
.y7f_c01259{bottom:90.880000pt;}
.y81_c01259{bottom:91.520000pt;}
.y80_c01259{bottom:92.800000pt;}
.y7e_c01259{bottom:93.440000pt;}
.y7d_c01259{bottom:94.080000pt;}
.y7c_c01259{bottom:94.720000pt;}
.y7b_c01259{bottom:97.280000pt;}
.y7a_c01259{bottom:99.200000pt;}
.y79_c01259{bottom:128.000000pt;}
.y78_c01259{bottom:129.920000pt;}
.y77_c01259{bottom:131.200000pt;}
.y76_c01259{bottom:133.120000pt;}
.y75_c01259{bottom:133.760000pt;}
.y74_c01259{bottom:135.040000pt;}
.y71_c01259{bottom:166.400000pt;}
.y70_c01259{bottom:167.040000pt;}
.y73_c01259{bottom:167.680000pt;}
.y6f_c01259{bottom:168.320000pt;}
.y72_c01259{bottom:169.600000pt;}
.y6e_c01259{bottom:204.160000pt;}
.y6b_c01259{bottom:204.800000pt;}
.y6d_c01259{bottom:206.720000pt;}
.y6a_c01259{bottom:207.360000pt;}
.y6c_c01259{bottom:208.000000pt;}
.y69_c01259{bottom:208.640000pt;}
.y68_c01259{bottom:210.560000pt;}
.y67_c01259{bottom:211.200000pt;}
.y65_c01259{bottom:243.200000pt;}
.y66_c01259{bottom:245.120000pt;}
.y64_c01259{bottom:245.760000pt;}
.y63_c01259{bottom:247.040000pt;}
.y62_c01259{bottom:248.960000pt;}
.y61_c01259{bottom:250.240000pt;}
.y60_c01259{bottom:280.960000pt;}
.y5e_c01259{bottom:281.600000pt;}
.y5d_c01259{bottom:282.880000pt;}
.y5f_c01259{bottom:283.520000pt;}
.y5c_c01259{bottom:286.720000pt;}
.y5b_c01259{bottom:318.720000pt;}
.y5a_c01259{bottom:321.920000pt;}
.y59_c01259{bottom:323.200000pt;}
.y55_c01259{bottom:359.040000pt;}
.y58_c01259{bottom:359.680000pt;}
.y56_c01259{bottom:360.320000pt;}
.y57_c01259{bottom:360.960000pt;}
.y54_c01259{bottom:361.600000pt;}
.y53_c01259{bottom:362.240000pt;}
.y52_c01259{bottom:396.160000pt;}
.y4f_c01259{bottom:396.800000pt;}
.y50_c01259{bottom:398.080000pt;}
.y51_c01259{bottom:398.720000pt;}
.y4e_c01259{bottom:399.360000pt;}
.y4d_c01259{bottom:401.280000pt;}
.y4a_c01259{bottom:434.560000pt;}
.y4c_c01259{bottom:436.480000pt;}
.y4b_c01259{bottom:437.120000pt;}
.y49_c01259{bottom:437.760000pt;}
.y47_c01259{bottom:438.400000pt;}
.y48_c01259{bottom:439.040000pt;}
.y45_c01259{bottom:472.320000pt;}
.y46_c01259{bottom:474.880000pt;}
.y42_c01259{bottom:519.680000pt;}
.y44_c01259{bottom:521.600000pt;}
.y43_c01259{bottom:522.240000pt;}
.y3f_c01259{bottom:558.080000pt;}
.y40_c01259{bottom:560.000000pt;}
.y3e_c01259{bottom:560.640000pt;}
.y41_c01259{bottom:561.280000pt;}
.y38_c01259{bottom:595.200000pt;}
.y3b_c01259{bottom:595.840000pt;}
.y3a_c01259{bottom:596.480000pt;}
.y3c_c01259{bottom:597.120000pt;}
.y37_c01259{bottom:597.760000pt;}
.y39_c01259{bottom:598.400000pt;}
.y3d_c01259{bottom:599.040000pt;}
.y32_c01259{bottom:633.600000pt;}
.y36_c01259{bottom:634.240000pt;}
.y35_c01259{bottom:635.520000pt;}
.y31_c01259{bottom:636.160000pt;}
.y33_c01259{bottom:636.800000pt;}
.y34_c01259{bottom:637.440000pt;}
.y2c_c01259{bottom:672.000000pt;}
.y2f_c01259{bottom:672.640000pt;}
.y2b_c01259{bottom:673.920000pt;}
.y2d_c01259{bottom:674.560000pt;}
.y2e_c01259{bottom:675.200000pt;}
.y30_c01259{bottom:675.840000pt;}
.y29_c01259{bottom:710.400000pt;}
.y2a_c01259{bottom:711.040000pt;}
.y25_c01259{bottom:711.680000pt;}
.y26_c01259{bottom:712.320000pt;}
.y27_c01259{bottom:712.960000pt;}
.y28_c01259{bottom:713.600000pt;}
.y21_c01259{bottom:747.520000pt;}
.y22_c01259{bottom:750.720000pt;}
.y23_c01259{bottom:751.360000pt;}
.y24_c01259{bottom:752.000000pt;}
.y1c_c01259{bottom:785.280000pt;}
.y1e_c01259{bottom:787.200000pt;}
.y1d_c01259{bottom:788.480000pt;}
.y1f_c01259{bottom:789.760000pt;}
.y20_c01259{bottom:790.400000pt;}
.y18_c01259{bottom:824.320000pt;}
.y16_c01259{bottom:824.960000pt;}
.y17_c01259{bottom:825.600000pt;}
.y1b_c01259{bottom:826.880000pt;}
.y19_c01259{bottom:827.520000pt;}
.y1a_c01259{bottom:828.160000pt;}
.yf_c01259{bottom:861.440000pt;}
.y13_c01259{bottom:864.000000pt;}
.y10_c01259{bottom:864.640000pt;}
.y11_c01259{bottom:865.280000pt;}
.y12_c01259{bottom:865.920000pt;}
.y14_c01259{bottom:866.560000pt;}
.y15_c01259{bottom:867.200000pt;}
.ye_c01259{bottom:878.080000pt;}
.y7_c01259{bottom:897.920000pt;}
.y8_c01259{bottom:899.840000pt;}
.yb_c01259{bottom:902.400000pt;}
.y9_c01259{bottom:903.680000pt;}
.ya_c01259{bottom:904.960000pt;}
.yc_c01259{bottom:905.600000pt;}
.yd_c01259{bottom:906.240000pt;}
.y6_c01259{bottom:940.800000pt;}
.y2_c01259{bottom:941.440000pt;}
.y3_c01259{bottom:942.080000pt;}
.y4_c01259{bottom:942.720000pt;}
.y5_c01259{bottom:943.360000pt;}
.y1_c01259{bottom:987.520000pt;}
.he_c01259{height:27.645000pt;}
.hd_c01259{height:29.948750pt;}
.h10_c01259{height:32.252500pt;}
.h13_c01259{height:34.556250pt;}
.h3_c01259{height:36.860000pt;}
.h9_c01259{height:39.163750pt;}
.h4_c01259{height:41.467500pt;}
.hb_c01259{height:43.771250pt;}
.h8_c01259{height:44.027500pt;}
.ha_c01259{height:46.075000pt;}
.h5_c01259{height:48.378750pt;}
.h6_c01259{height:50.682500pt;}
.h7_c01259{height:52.986250pt;}
.hc_c01259{height:55.290000pt;}
.h2_c01259{height:57.593750pt;}
.h12_c01259{height:62.201250pt;}
.h11_c01259{height:64.505000pt;}
.hf_c01259{height:71.416250pt;}
.h0_c01259{height:1041.280000pt;}
.h1_c01259{height:1041.333333pt;}
.w0_c01259{width:695.040000pt;}
.w1_c01259{width:695.333333pt;}
.x0_c01259{left:0.000000pt;}
.x69_c01259{left:54.400000pt;}
.x8_c01259{left:55.680000pt;}
.x33_c01259{left:56.960000pt;}
.x49_c01259{left:58.880000pt;}
.x62_c01259{left:61.440000pt;}
.x1b_c01259{left:81.280000pt;}
.x41_c01259{left:82.560000pt;}
.x4d_c01259{left:83.840000pt;}
.x9_c01259{left:90.240000pt;}
.x45_c01259{left:92.160000pt;}
.x5e_c01259{left:93.440000pt;}
.x3c_c01259{left:99.840000pt;}
.x63_c01259{left:102.400000pt;}
.x1c_c01259{left:109.440000pt;}
.x29_c01259{left:118.400000pt;}
.x4a_c01259{left:119.680000pt;}
.x64_c01259{left:129.280000pt;}
.x20_c01259{left:136.320000pt;}
.x47_c01259{left:138.240000pt;}
.x2_c01259{left:144.640000pt;}
.x11_c01259{left:145.920000pt;}
.x40_c01259{left:147.200000pt;}
.x2d_c01259{left:155.520000pt;}
.xa_c01259{left:173.440000pt;}
.x34_c01259{left:174.720000pt;}
.x56_c01259{left:176.640000pt;}
.x21_c01259{left:183.680000pt;}
.x5c_c01259{left:186.240000pt;}
.x1d_c01259{left:193.280000pt;}
.x65_c01259{left:195.840000pt;}
.x3_c01259{left:202.240000pt;}
.x12_c01259{left:203.520000pt;}
.x2a_c01259{left:212.480000pt;}
.x52_c01259{left:213.760000pt;}
.x5f_c01259{left:215.040000pt;}
.x1e_c01259{left:222.080000pt;}
.x66_c01259{left:224.000000pt;}
.x13_c01259{left:230.400000pt;}
.x42_c01259{left:232.320000pt;}
.x2e_c01259{left:241.280000pt;}
.x3d_c01259{left:252.160000pt;}
.x22_c01259{left:259.200000pt;}
.x46_c01259{left:261.120000pt;}
.x2f_c01259{left:264.960000pt;}
.xb_c01259{left:269.440000pt;}
.x38_c01259{left:270.720000pt;}
.x6a_c01259{left:272.000000pt;}
.x3e_c01259{left:279.680000pt;}
.x60_c01259{left:282.240000pt;}
.x30_c01259{left:288.640000pt;}
.x14_c01259{left:289.920000pt;}
.x48_c01259{left:291.840000pt;}
.x4_c01259{left:298.880000pt;}
.x53_c01259{left:300.160000pt;}
.x39_c01259{left:309.760000pt;}
.x43_c01259{left:318.720000pt;}
.x4e_c01259{left:321.920000pt;}
.x15_c01259{left:328.320000pt;}
.xc_c01259{left:337.280000pt;}
.x57_c01259{left:339.840000pt;}
.x23_c01259{left:347.520000pt;}
.x3a_c01259{left:355.840000pt;}
.x5_c01259{left:366.080000pt;}
.x4b_c01259{left:367.360000pt;}
.x4f_c01259{left:368.640000pt;}
.x24_c01259{left:376.320000pt;}
.x2b_c01259{left:384.640000pt;}
.x16_c01259{left:385.920000pt;}
.x35_c01259{left:395.520000pt;}
.x58_c01259{left:396.800000pt;}
.x27_c01259{left:405.120000pt;}
.x6b_c01259{left:407.040000pt;}
.x3b_c01259{left:414.720000pt;}
.x50_c01259{left:416.000000pt;}
.x6_c01259{left:423.680000pt;}
.x5d_c01259{left:426.240000pt;}
.x1f_c01259{left:434.560000pt;}
.x59_c01259{left:435.840000pt;}
.x54_c01259{left:444.160000pt;}
.x67_c01259{left:445.440000pt;}
.x2c_c01259{left:453.120000pt;}
.x36_c01259{left:455.040000pt;}
.xd_c01259{left:463.360000pt;}
.x5a_c01259{left:464.640000pt;}
.x25_c01259{left:472.320000pt;}
.x4c_c01259{left:474.240000pt;}
.x31_c01259{left:482.560000pt;}
.x3f_c01259{left:483.840000pt;}
.x17_c01259{left:492.800000pt;}
.x7_c01259{left:501.120000pt;}
.x44_c01259{left:503.040000pt;}
.x32_c01259{left:512.000000pt;}
.x61_c01259{left:513.280000pt;}
.x18_c01259{left:520.320000pt;}
.x55_c01259{left:522.240000pt;}
.x10_c01259{left:531.200000pt;}
.x68_c01259{left:532.480000pt;}
.x37_c01259{left:541.440000pt;}
.x19_c01259{left:549.120000pt;}
.x26_c01259{left:559.360000pt;}
.x28_c01259{left:560.640000pt;}
.xe_c01259{left:569.600000pt;}
.x6c_c01259{left:570.880000pt;}
.x1a_c01259{left:579.200000pt;}
.x51_c01259{left:580.480000pt;}
.x5b_c01259{left:591.360000pt;}
.xf_c01259{left:599.040000pt;}
.x1_c01259{left:606.720000pt;}
}





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

.ir_c01260:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01260{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01260;src:url('chunks/assets/font_862274ba7284a4f233a5d0bc.woff2')format("woff");}.ff1_c01260{font-family:ff1_c01260;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5c_c01260{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m44_c01260{transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);}
.m31_c01260{transform:matrix(0.239375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239375,0.000000,0.000000,0.250000,0,0);}
.m42_c01260{transform:matrix(0.241325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241325,0.000000,0.000000,0.250000,0,0);}
.m5b_c01260{transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);}
.m38_c01260{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01260{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);}
.m58_c01260{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);}
.m36_c01260{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m5a_c01260{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);}
.m65_c01260{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_c01260{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);}
.m3c_c01260{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m45_c01260{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);}
.m5d_c01260{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);}
.m60_c01260{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01260{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01260{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01260{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m56_c01260{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01260{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.md_c01260{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01260{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01260{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m57_c01260{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m4f_c01260{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m46_c01260{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01260{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m29_c01260{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m34_c01260{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01260{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01260{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m12_c01260{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);}
.m30_c01260{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m2_c01260{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);}
.m41_c01260{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);}
.m27_c01260{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m15_c01260{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m0_c01260{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);}
.m23_c01260{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);}
.m13_c01260{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m6_c01260{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m24_c01260{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);}
.m1d_c01260{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);}
.m59_c01260{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m9_c01260{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);}
.m49_c01260{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.mb_c01260{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m16_c01260{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m1_c01260{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_c01260{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01260{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m4e_c01260{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m25_c01260{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m52_c01260{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);}
.m2b_c01260{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.ma_c01260{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);}
.m63_c01260{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m43_c01260{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m47_c01260{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m4a_c01260{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m5_c01260{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);}
.m62_c01260{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m14_c01260{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m26_c01260{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m51_c01260{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m48_c01260{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.mc_c01260{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);}
.m5f_c01260{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m53_c01260{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m20_c01260{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m4_c01260{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01260{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01260{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m37_c01260{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m22_c01260{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.me_c01260{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);}
.m39_c01260{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01260{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m28_c01260{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);}
.m50_c01260{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m61_c01260{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m7_c01260{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m64_c01260{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);}
.m32_c01260{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);}
.m10_c01260{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);}
.m4c_c01260{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m19_c01260{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m3_c01260{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.mf_c01260{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);}
.m18_c01260{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);}
.m17_c01260{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m55_c01260{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);}
.m3b_c01260{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m21_c01260{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m11_c01260{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m40_c01260{transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);}
.m8_c01260{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m54_c01260{transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);}
.m5e_c01260{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.m35_c01260{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);}
.m33_c01260{transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);}
.v2_c01260{vertical-align:-2.880000px;}
.v0_c01260{vertical-align:0.000000px;}
.v1_c01260{vertical-align:5.760000px;}
.ls0_c01260{letter-spacing:0.000000px;}
.sc__c01260{text-shadow:none;}
.sc0_c01260{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01260{-webkit-text-stroke:0px transparent;}
.sc0_c01260{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01260{word-spacing:-4.184880px;}
.ws2_c01260{word-spacing:0.000000px;}
.ws1_c01260{word-spacing:32.368320px;}
.fc0_c01260{color:transparent;}
.fsc_c01260{font-size:17.280000px;}
.fsd_c01260{font-size:20.160000px;}
.fsf_c01260{font-size:31.680000px;}
.fs6_c01260{font-size:34.560000px;}
.fs8_c01260{font-size:37.440000px;}
.fs5_c01260{font-size:43.200000px;}
.fs3_c01260{font-size:46.080000px;}
.fs2_c01260{font-size:48.960000px;}
.fs4_c01260{font-size:51.840000px;}
.fs7_c01260{font-size:54.720000px;}
.fs1_c01260{font-size:57.600000px;}
.fs9_c01260{font-size:60.480000px;}
.fse_c01260{font-size:63.360000px;}
.fsb_c01260{font-size:66.240000px;}
.fsa_c01260{font-size:69.120000px;}
.fs0_c01260{font-size:72.000000px;}
.y0_c01260{bottom:0.000000px;}
.y95_c01260{bottom:128.880000px;}
.y93_c01260{bottom:131.760000px;}
.y92_c01260{bottom:132.480000px;}
.y91_c01260{bottom:133.200000px;}
.y90_c01260{bottom:133.920000px;}
.y94_c01260{bottom:134.640000px;}
.y8f_c01260{bottom:138.960000px;}
.y8e_c01260{bottom:140.400000px;}
.y8d_c01260{bottom:142.560000px;}
.y8c_c01260{bottom:162.000000px;}
.y8b_c01260{bottom:163.440000px;}
.y89_c01260{bottom:164.160000px;}
.y87_c01260{bottom:166.320000px;}
.y8a_c01260{bottom:167.040000px;}
.y88_c01260{bottom:167.760000px;}
.y86_c01260{bottom:168.480000px;}
.y85_c01260{bottom:172.080000px;}
.y84_c01260{bottom:174.240000px;}
.y83_c01260{bottom:193.680000px;}
.y82_c01260{bottom:195.840000px;}
.y81_c01260{bottom:196.560000px;}
.y7e_c01260{bottom:197.280000px;}
.y7d_c01260{bottom:198.000000px;}
.y80_c01260{bottom:198.720000px;}
.y7f_c01260{bottom:199.440000px;}
.y7c_c01260{bottom:201.600000px;}
.y7b_c01260{bottom:204.480000px;}
.y7a_c01260{bottom:206.640000px;}
.y79_c01260{bottom:226.080000px;}
.y78_c01260{bottom:227.520000px;}
.y76_c01260{bottom:228.240000px;}
.y74_c01260{bottom:228.960000px;}
.y77_c01260{bottom:229.680000px;}
.y73_c01260{bottom:230.400000px;}
.y75_c01260{bottom:231.120000px;}
.y71_c01260{bottom:231.840000px;}
.y72_c01260{bottom:232.560000px;}
.y70_c01260{bottom:234.000000px;}
.y6f_c01260{bottom:238.320000px;}
.y6e_c01260{bottom:257.760000px;}
.y6c_c01260{bottom:259.200000px;}
.y6b_c01260{bottom:260.640000px;}
.y6d_c01260{bottom:261.360000px;}
.y6a_c01260{bottom:262.080000px;}
.y69_c01260{bottom:262.800000px;}
.y68_c01260{bottom:264.240000px;}
.y67_c01260{bottom:264.960000px;}
.y66_c01260{bottom:269.280000px;}
.y65_c01260{bottom:290.160000px;}
.y64_c01260{bottom:291.600000px;}
.y62_c01260{bottom:292.320000px;}
.y61_c01260{bottom:293.040000px;}
.y63_c01260{bottom:294.480000px;}
.y60_c01260{bottom:295.200000px;}
.y5f_c01260{bottom:295.920000px;}
.y5e_c01260{bottom:297.360000px;}
.y5d_c01260{bottom:298.080000px;}
.y5c_c01260{bottom:300.960000px;}
.y5a_c01260{bottom:324.000000px;}
.y5b_c01260{bottom:325.440000px;}
.y59_c01260{bottom:326.160000px;}
.y58_c01260{bottom:326.880000px;}
.y57_c01260{bottom:327.600000px;}
.y56_c01260{bottom:329.040000px;}
.y55_c01260{bottom:330.480000px;}
.y53_c01260{bottom:367.920000px;}
.y54_c01260{bottom:368.640000px;}
.y52_c01260{bottom:370.080000px;}
.y51_c01260{bottom:372.240000px;}
.y50_c01260{bottom:373.680000px;}
.y4d_c01260{bottom:408.960000px;}
.y4c_c01260{bottom:409.680000px;}
.y4f_c01260{bottom:411.120000px;}
.y4e_c01260{bottom:411.840000px;}
.y4b_c01260{bottom:412.560000px;}
.y4a_c01260{bottom:414.000000px;}
.y49_c01260{bottom:456.480000px;}
.y48_c01260{bottom:485.280000px;}
.y46_c01260{bottom:486.000000px;}
.y47_c01260{bottom:486.720000px;}
.y44_c01260{bottom:487.440000px;}
.y45_c01260{bottom:489.600000px;}
.y42_c01260{bottom:490.320000px;}
.y43_c01260{bottom:491.760000px;}
.y41_c01260{bottom:540.000000px;}
.y40_c01260{bottom:542.880000px;}
.y3f_c01260{bottom:571.680000px;}
.y3e_c01260{bottom:573.120000px;}
.y3b_c01260{bottom:575.280000px;}
.y3d_c01260{bottom:576.000000px;}
.y3c_c01260{bottom:576.720000px;}
.y38_c01260{bottom:626.400000px;}
.y35_c01260{bottom:627.840000px;}
.y39_c01260{bottom:628.560000px;}
.y37_c01260{bottom:629.280000px;}
.y36_c01260{bottom:630.000000px;}
.y3a_c01260{bottom:632.160000px;}
.y32_c01260{bottom:679.680000px;}
.y34_c01260{bottom:680.400000px;}
.y2e_c01260{bottom:681.120000px;}
.y2f_c01260{bottom:682.560000px;}
.y31_c01260{bottom:683.280000px;}
.y33_c01260{bottom:684.000000px;}
.y30_c01260{bottom:686.160000px;}
.y28_c01260{bottom:733.680000px;}
.y2d_c01260{bottom:735.840000px;}
.y29_c01260{bottom:736.560000px;}
.y2b_c01260{bottom:737.280000px;}
.y2c_c01260{bottom:739.440000px;}
.y2a_c01260{bottom:740.160000px;}
.y25_c01260{bottom:795.600000px;}
.y26_c01260{bottom:796.320000px;}
.y27_c01260{bottom:797.040000px;}
.y24_c01260{bottom:838.800000px;}
.y23_c01260{bottom:839.520000px;}
.y20_c01260{bottom:840.960000px;}
.y22_c01260{bottom:841.680000px;}
.y21_c01260{bottom:842.400000px;}
.y1b_c01260{bottom:882.000000px;}
.y1e_c01260{bottom:882.720000px;}
.y19_c01260{bottom:883.440000px;}
.y1a_c01260{bottom:884.160000px;}
.y1c_c01260{bottom:884.880000px;}
.y1f_c01260{bottom:885.600000px;}
.y1d_c01260{bottom:886.320000px;}
.y17_c01260{bottom:924.480000px;}
.y15_c01260{bottom:925.200000px;}
.y16_c01260{bottom:927.360000px;}
.y18_c01260{bottom:928.080000px;}
.ye_c01260{bottom:964.800000px;}
.y11_c01260{bottom:967.680000px;}
.y14_c01260{bottom:968.400000px;}
.yf_c01260{bottom:969.120000px;}
.y10_c01260{bottom:969.840000px;}
.y13_c01260{bottom:970.560000px;}
.y12_c01260{bottom:971.280000px;}
.y9_c01260{bottom:1008.720000px;}
.y8_c01260{bottom:1010.160000px;}
.yc_c01260{bottom:1010.880000px;}
.ya_c01260{bottom:1013.040000px;}
.yb_c01260{bottom:1013.760000px;}
.yd_c01260{bottom:1014.480000px;}
.y2_c01260{bottom:1052.640000px;}
.y3_c01260{bottom:1054.800000px;}
.y5_c01260{bottom:1055.520000px;}
.y4_c01260{bottom:1056.240000px;}
.y7_c01260{bottom:1056.960000px;}
.y6_c01260{bottom:1057.680000px;}
.y1_c01260{bottom:1110.960000px;}
.he_c01260{height:15.550313px;}
.hf_c01260{height:18.142031px;}
.h11_c01260{height:28.508906px;}
.h8_c01260{height:31.100625px;}
.ha_c01260{height:33.692344px;}
.h7_c01260{height:38.875781px;}
.h5_c01260{height:41.467500px;}
.h4_c01260{height:44.059219px;}
.h6_c01260{height:46.650937px;}
.h9_c01260{height:49.242656px;}
.h3_c01260{height:51.834375px;}
.hb_c01260{height:54.426094px;}
.h10_c01260{height:57.017812px;}
.hd_c01260{height:59.609531px;}
.hc_c01260{height:62.201250px;}
.h2_c01260{height:64.792969px;}
.h1_c01260{height:1167.750000px;}
.h0_c01260{height:1167.840000px;}
.w0_c01260{width:781.920000px;}
.w1_c01260{width:782.250000px;}
.x0_c01260{left:0.000000px;}
.x52_c01260{left:60.480000px;}
.x2_c01260{left:65.520000px;}
.x21_c01260{left:66.960000px;}
.x46_c01260{left:69.120000px;}
.x47_c01260{left:87.120000px;}
.x33_c01260{left:95.760000px;}
.x4d_c01260{left:97.200000px;}
.xd_c01260{left:105.840000px;}
.x48_c01260{left:117.360000px;}
.x34_c01260{left:126.720000px;}
.x3_c01260{left:136.800000px;}
.x4e_c01260{left:138.240000px;}
.x28_c01260{left:147.600000px;}
.x35_c01260{left:156.240000px;}
.x1b_c01260{left:157.680000px;}
.x2b_c01260{left:167.040000px;}
.x4_c01260{left:168.480000px;}
.x22_c01260{left:179.280000px;}
.x2f_c01260{left:188.640000px;}
.x1c_c01260{left:190.080000px;}
.x40_c01260{left:199.440000px;}
.x5_c01260{left:200.880000px;}
.x2c_c01260{left:209.520000px;}
.xe_c01260{left:221.040000px;}
.x2d_c01260{left:231.840000px;}
.xf_c01260{left:241.920000px;}
.x15_c01260{left:254.160000px;}
.x29_c01260{left:257.040000px;}
.x6_c01260{left:264.240000px;}
.x41_c01260{left:265.680000px;}
.x36_c01260{left:275.040000px;}
.x10_c01260{left:285.840000px;}
.x3e_c01260{left:287.280000px;}
.x1d_c01260{left:297.360000px;}
.x27_c01260{left:306.720000px;}
.x1e_c01260{left:318.960000px;}
.x23_c01260{left:323.280000px;}
.x37_c01260{left:329.040000px;}
.x42_c01260{left:330.480000px;}
.x3c_c01260{left:340.560000px;}
.x1f_c01260{left:351.360000px;}
.x24_c01260{left:362.880000px;}
.x38_c01260{left:371.520000px;}
.x16_c01260{left:373.680000px;}
.x43_c01260{left:383.040000px;}
.x49_c01260{left:384.480000px;}
.x50_c01260{left:395.280000px;}
.x7_c01260{left:406.080000px;}
.x17_c01260{left:415.440000px;}
.x4f_c01260{left:416.880000px;}
.x30_c01260{left:425.520000px;}
.x2a_c01260{left:426.960000px;}
.x8_c01260{left:438.480000px;}
.x44_c01260{left:449.280000px;}
.x3f_c01260{left:459.360000px;}
.x9_c01260{left:470.160000px;}
.x53_c01260{left:471.600000px;}
.x18_c01260{left:480.960000px;}
.x25_c01260{left:492.480000px;}
.x45_c01260{left:502.560000px;}
.x54_c01260{left:504.000000px;}
.x26_c01260{left:513.360000px;}
.x2e_c01260{left:523.440000px;}
.xa_c01260{left:525.600000px;}
.x11_c01260{left:535.680000px;}
.x31_c01260{left:545.040000px;}
.x39_c01260{left:546.480000px;}
.x4a_c01260{left:547.920000px;}
.xb_c01260{left:558.000000px;}
.x32_c01260{left:567.360000px;}
.x12_c01260{left:568.800000px;}
.x3a_c01260{left:589.680000px;}
.x19_c01260{left:591.120000px;}
.x13_c01260{left:600.480000px;}
.x4c_c01260{left:602.640000px;}
.x3b_c01260{left:611.280000px;}
.x55_c01260{left:613.440000px;}
.x3d_c01260{left:633.600000px;}
.xc_c01260{left:643.680000px;}
.x56_c01260{left:645.120000px;}
.x20_c01260{left:654.480000px;}
.x14_c01260{left:655.920000px;}
.x1a_c01260{left:666.000000px;}
.x4b_c01260{left:678.960000px;}
.x1_c01260{left:688.320000px;}
.x51_c01260{left:722.160000px;}
@media print{
.v2_c01260{vertical-align:-2.560000pt;}
.v0_c01260{vertical-align:0.000000pt;}
.v1_c01260{vertical-align:5.120000pt;}
.ls0_c01260{letter-spacing:0.000000pt;}
.ws0_c01260{word-spacing:-3.719893pt;}
.ws2_c01260{word-spacing:0.000000pt;}
.ws1_c01260{word-spacing:28.771840pt;}
.fsc_c01260{font-size:15.360000pt;}
.fsd_c01260{font-size:17.920000pt;}
.fsf_c01260{font-size:28.160000pt;}
.fs6_c01260{font-size:30.720000pt;}
.fs8_c01260{font-size:33.280000pt;}
.fs5_c01260{font-size:38.400000pt;}
.fs3_c01260{font-size:40.960000pt;}
.fs2_c01260{font-size:43.520000pt;}
.fs4_c01260{font-size:46.080000pt;}
.fs7_c01260{font-size:48.640000pt;}
.fs1_c01260{font-size:51.200000pt;}
.fs9_c01260{font-size:53.760000pt;}
.fse_c01260{font-size:56.320000pt;}
.fsb_c01260{font-size:58.880000pt;}
.fsa_c01260{font-size:61.440000pt;}
.fs0_c01260{font-size:64.000000pt;}
.y0_c01260{bottom:0.000000pt;}
.y95_c01260{bottom:114.560000pt;}
.y93_c01260{bottom:117.120000pt;}
.y92_c01260{bottom:117.760000pt;}
.y91_c01260{bottom:118.400000pt;}
.y90_c01260{bottom:119.040000pt;}
.y94_c01260{bottom:119.680000pt;}
.y8f_c01260{bottom:123.520000pt;}
.y8e_c01260{bottom:124.800000pt;}
.y8d_c01260{bottom:126.720000pt;}
.y8c_c01260{bottom:144.000000pt;}
.y8b_c01260{bottom:145.280000pt;}
.y89_c01260{bottom:145.920000pt;}
.y87_c01260{bottom:147.840000pt;}
.y8a_c01260{bottom:148.480000pt;}
.y88_c01260{bottom:149.120000pt;}
.y86_c01260{bottom:149.760000pt;}
.y85_c01260{bottom:152.960000pt;}
.y84_c01260{bottom:154.880000pt;}
.y83_c01260{bottom:172.160000pt;}
.y82_c01260{bottom:174.080000pt;}
.y81_c01260{bottom:174.720000pt;}
.y7e_c01260{bottom:175.360000pt;}
.y7d_c01260{bottom:176.000000pt;}
.y80_c01260{bottom:176.640000pt;}
.y7f_c01260{bottom:177.280000pt;}
.y7c_c01260{bottom:179.200000pt;}
.y7b_c01260{bottom:181.760000pt;}
.y7a_c01260{bottom:183.680000pt;}
.y79_c01260{bottom:200.960000pt;}
.y78_c01260{bottom:202.240000pt;}
.y76_c01260{bottom:202.880000pt;}
.y74_c01260{bottom:203.520000pt;}
.y77_c01260{bottom:204.160000pt;}
.y73_c01260{bottom:204.800000pt;}
.y75_c01260{bottom:205.440000pt;}
.y71_c01260{bottom:206.080000pt;}
.y72_c01260{bottom:206.720000pt;}
.y70_c01260{bottom:208.000000pt;}
.y6f_c01260{bottom:211.840000pt;}
.y6e_c01260{bottom:229.120000pt;}
.y6c_c01260{bottom:230.400000pt;}
.y6b_c01260{bottom:231.680000pt;}
.y6d_c01260{bottom:232.320000pt;}
.y6a_c01260{bottom:232.960000pt;}
.y69_c01260{bottom:233.600000pt;}
.y68_c01260{bottom:234.880000pt;}
.y67_c01260{bottom:235.520000pt;}
.y66_c01260{bottom:239.360000pt;}
.y65_c01260{bottom:257.920000pt;}
.y64_c01260{bottom:259.200000pt;}
.y62_c01260{bottom:259.840000pt;}
.y61_c01260{bottom:260.480000pt;}
.y63_c01260{bottom:261.760000pt;}
.y60_c01260{bottom:262.400000pt;}
.y5f_c01260{bottom:263.040000pt;}
.y5e_c01260{bottom:264.320000pt;}
.y5d_c01260{bottom:264.960000pt;}
.y5c_c01260{bottom:267.520000pt;}
.y5a_c01260{bottom:288.000000pt;}
.y5b_c01260{bottom:289.280000pt;}
.y59_c01260{bottom:289.920000pt;}
.y58_c01260{bottom:290.560000pt;}
.y57_c01260{bottom:291.200000pt;}
.y56_c01260{bottom:292.480000pt;}
.y55_c01260{bottom:293.760000pt;}
.y53_c01260{bottom:327.040000pt;}
.y54_c01260{bottom:327.680000pt;}
.y52_c01260{bottom:328.960000pt;}
.y51_c01260{bottom:330.880000pt;}
.y50_c01260{bottom:332.160000pt;}
.y4d_c01260{bottom:363.520000pt;}
.y4c_c01260{bottom:364.160000pt;}
.y4f_c01260{bottom:365.440000pt;}
.y4e_c01260{bottom:366.080000pt;}
.y4b_c01260{bottom:366.720000pt;}
.y4a_c01260{bottom:368.000000pt;}
.y49_c01260{bottom:405.760000pt;}
.y48_c01260{bottom:431.360000pt;}
.y46_c01260{bottom:432.000000pt;}
.y47_c01260{bottom:432.640000pt;}
.y44_c01260{bottom:433.280000pt;}
.y45_c01260{bottom:435.200000pt;}
.y42_c01260{bottom:435.840000pt;}
.y43_c01260{bottom:437.120000pt;}
.y41_c01260{bottom:480.000000pt;}
.y40_c01260{bottom:482.560000pt;}
.y3f_c01260{bottom:508.160000pt;}
.y3e_c01260{bottom:509.440000pt;}
.y3b_c01260{bottom:511.360000pt;}
.y3d_c01260{bottom:512.000000pt;}
.y3c_c01260{bottom:512.640000pt;}
.y38_c01260{bottom:556.800000pt;}
.y35_c01260{bottom:558.080000pt;}
.y39_c01260{bottom:558.720000pt;}
.y37_c01260{bottom:559.360000pt;}
.y36_c01260{bottom:560.000000pt;}
.y3a_c01260{bottom:561.920000pt;}
.y32_c01260{bottom:604.160000pt;}
.y34_c01260{bottom:604.800000pt;}
.y2e_c01260{bottom:605.440000pt;}
.y2f_c01260{bottom:606.720000pt;}
.y31_c01260{bottom:607.360000pt;}
.y33_c01260{bottom:608.000000pt;}
.y30_c01260{bottom:609.920000pt;}
.y28_c01260{bottom:652.160000pt;}
.y2d_c01260{bottom:654.080000pt;}
.y29_c01260{bottom:654.720000pt;}
.y2b_c01260{bottom:655.360000pt;}
.y2c_c01260{bottom:657.280000pt;}
.y2a_c01260{bottom:657.920000pt;}
.y25_c01260{bottom:707.200000pt;}
.y26_c01260{bottom:707.840000pt;}
.y27_c01260{bottom:708.480000pt;}
.y24_c01260{bottom:745.600000pt;}
.y23_c01260{bottom:746.240000pt;}
.y20_c01260{bottom:747.520000pt;}
.y22_c01260{bottom:748.160000pt;}
.y21_c01260{bottom:748.800000pt;}
.y1b_c01260{bottom:784.000000pt;}
.y1e_c01260{bottom:784.640000pt;}
.y19_c01260{bottom:785.280000pt;}
.y1a_c01260{bottom:785.920000pt;}
.y1c_c01260{bottom:786.560000pt;}
.y1f_c01260{bottom:787.200000pt;}
.y1d_c01260{bottom:787.840000pt;}
.y17_c01260{bottom:821.760000pt;}
.y15_c01260{bottom:822.400000pt;}
.y16_c01260{bottom:824.320000pt;}
.y18_c01260{bottom:824.960000pt;}
.ye_c01260{bottom:857.600000pt;}
.y11_c01260{bottom:860.160000pt;}
.y14_c01260{bottom:860.800000pt;}
.yf_c01260{bottom:861.440000pt;}
.y10_c01260{bottom:862.080000pt;}
.y13_c01260{bottom:862.720000pt;}
.y12_c01260{bottom:863.360000pt;}
.y9_c01260{bottom:896.640000pt;}
.y8_c01260{bottom:897.920000pt;}
.yc_c01260{bottom:898.560000pt;}
.ya_c01260{bottom:900.480000pt;}
.yb_c01260{bottom:901.120000pt;}
.yd_c01260{bottom:901.760000pt;}
.y2_c01260{bottom:935.680000pt;}
.y3_c01260{bottom:937.600000pt;}
.y5_c01260{bottom:938.240000pt;}
.y4_c01260{bottom:938.880000pt;}
.y7_c01260{bottom:939.520000pt;}
.y6_c01260{bottom:940.160000pt;}
.y1_c01260{bottom:987.520000pt;}
.he_c01260{height:13.822500pt;}
.hf_c01260{height:16.126250pt;}
.h11_c01260{height:25.341250pt;}
.h8_c01260{height:27.645000pt;}
.ha_c01260{height:29.948750pt;}
.h7_c01260{height:34.556250pt;}
.h5_c01260{height:36.860000pt;}
.h4_c01260{height:39.163750pt;}
.h6_c01260{height:41.467500pt;}
.h9_c01260{height:43.771250pt;}
.h3_c01260{height:46.075000pt;}
.hb_c01260{height:48.378750pt;}
.h10_c01260{height:50.682500pt;}
.hd_c01260{height:52.986250pt;}
.hc_c01260{height:55.290000pt;}
.h2_c01260{height:57.593750pt;}
.h1_c01260{height:1038.000000pt;}
.h0_c01260{height:1038.080000pt;}
.w0_c01260{width:695.040000pt;}
.w1_c01260{width:695.333333pt;}
.x0_c01260{left:0.000000pt;}
.x52_c01260{left:53.760000pt;}
.x2_c01260{left:58.240000pt;}
.x21_c01260{left:59.520000pt;}
.x46_c01260{left:61.440000pt;}
.x47_c01260{left:77.440000pt;}
.x33_c01260{left:85.120000pt;}
.x4d_c01260{left:86.400000pt;}
.xd_c01260{left:94.080000pt;}
.x48_c01260{left:104.320000pt;}
.x34_c01260{left:112.640000pt;}
.x3_c01260{left:121.600000pt;}
.x4e_c01260{left:122.880000pt;}
.x28_c01260{left:131.200000pt;}
.x35_c01260{left:138.880000pt;}
.x1b_c01260{left:140.160000pt;}
.x2b_c01260{left:148.480000pt;}
.x4_c01260{left:149.760000pt;}
.x22_c01260{left:159.360000pt;}
.x2f_c01260{left:167.680000pt;}
.x1c_c01260{left:168.960000pt;}
.x40_c01260{left:177.280000pt;}
.x5_c01260{left:178.560000pt;}
.x2c_c01260{left:186.240000pt;}
.xe_c01260{left:196.480000pt;}
.x2d_c01260{left:206.080000pt;}
.xf_c01260{left:215.040000pt;}
.x15_c01260{left:225.920000pt;}
.x29_c01260{left:228.480000pt;}
.x6_c01260{left:234.880000pt;}
.x41_c01260{left:236.160000pt;}
.x36_c01260{left:244.480000pt;}
.x10_c01260{left:254.080000pt;}
.x3e_c01260{left:255.360000pt;}
.x1d_c01260{left:264.320000pt;}
.x27_c01260{left:272.640000pt;}
.x1e_c01260{left:283.520000pt;}
.x23_c01260{left:287.360000pt;}
.x37_c01260{left:292.480000pt;}
.x42_c01260{left:293.760000pt;}
.x3c_c01260{left:302.720000pt;}
.x1f_c01260{left:312.320000pt;}
.x24_c01260{left:322.560000pt;}
.x38_c01260{left:330.240000pt;}
.x16_c01260{left:332.160000pt;}
.x43_c01260{left:340.480000pt;}
.x49_c01260{left:341.760000pt;}
.x50_c01260{left:351.360000pt;}
.x7_c01260{left:360.960000pt;}
.x17_c01260{left:369.280000pt;}
.x4f_c01260{left:370.560000pt;}
.x30_c01260{left:378.240000pt;}
.x2a_c01260{left:379.520000pt;}
.x8_c01260{left:389.760000pt;}
.x44_c01260{left:399.360000pt;}
.x3f_c01260{left:408.320000pt;}
.x9_c01260{left:417.920000pt;}
.x53_c01260{left:419.200000pt;}
.x18_c01260{left:427.520000pt;}
.x25_c01260{left:437.760000pt;}
.x45_c01260{left:446.720000pt;}
.x54_c01260{left:448.000000pt;}
.x26_c01260{left:456.320000pt;}
.x2e_c01260{left:465.280000pt;}
.xa_c01260{left:467.200000pt;}
.x11_c01260{left:476.160000pt;}
.x31_c01260{left:484.480000pt;}
.x39_c01260{left:485.760000pt;}
.x4a_c01260{left:487.040000pt;}
.xb_c01260{left:496.000000pt;}
.x32_c01260{left:504.320000pt;}
.x12_c01260{left:505.600000pt;}
.x3a_c01260{left:524.160000pt;}
.x19_c01260{left:525.440000pt;}
.x13_c01260{left:533.760000pt;}
.x4c_c01260{left:535.680000pt;}
.x3b_c01260{left:543.360000pt;}
.x55_c01260{left:545.280000pt;}
.x3d_c01260{left:563.200000pt;}
.xc_c01260{left:572.160000pt;}
.x56_c01260{left:573.440000pt;}
.x20_c01260{left:581.760000pt;}
.x14_c01260{left:583.040000pt;}
.x1a_c01260{left:592.000000pt;}
.x4b_c01260{left:603.520000pt;}
.x1_c01260{left:611.840000pt;}
.x51_c01260{left:641.920000pt;}
}





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

.ir_c01261:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01261{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01261;src:url('chunks/assets/font_df250adde2d09ad0308c7955.woff2')format("woff");}.ff1_c01261{font-family:ff1_c01261;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m46_c01261{transform:matrix(0.208425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208425,0.000000,0.000000,0.250000,0,0);}
.m4e_c01261{transform:matrix(0.210900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210900,0.000000,0.000000,0.250000,0,0);}
.m4d_c01261{transform:matrix(0.218725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218725,0.000000,0.000000,0.250000,0,0);}
.m43_c01261{transform:matrix(0.222950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222950,0.000000,0.000000,0.250000,0,0);}
.m52_c01261{transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);}
.m56_c01261{transform:matrix(0.225100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225100,0.000000,0.000000,0.250000,0,0);}
.m55_c01261{transform:matrix(0.227125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227125,0.000000,0.000000,0.250000,0,0);}
.m53_c01261{transform:matrix(0.231525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231525,0.000000,0.000000,0.250000,0,0);}
.m50_c01261{transform:matrix(0.233425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233425,0.000000,0.000000,0.250000,0,0);}
.m4c_c01261{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m3_c01261{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);}
.m49_c01261{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);}
.m44_c01261{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);}
.m45_c01261{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);}
.m48_c01261{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);}
.m4a_c01261{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);}
.m4b_c01261{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m51_c01261{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m26_c01261{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01261{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m47_c01261{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01261{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01261{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m27_c01261{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01261{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m54_c01261{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01261{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01261{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);}
.m40_c01261{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m22_c01261{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);}
.m42_c01261{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m10_c01261{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.md_c01261{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.mc_c01261{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m29_c01261{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m0_c01261{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);}
.m20_c01261{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m9_c01261{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m17_c01261{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);}
.m28_c01261{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m38_c01261{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);}
.m21_c01261{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);}
.m5_c01261{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);}
.mf_c01261{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m32_c01261{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m6_c01261{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m15_c01261{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m1_c01261{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01261{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);}
.m3b_c01261{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);}
.m5a_c01261{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);}
.me_c01261{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m5b_c01261{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m11_c01261{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);}
.m1e_c01261{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01261{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);}
.m25_c01261{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m39_c01261{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);}
.m13_c01261{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m2_c01261{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m30_c01261{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m24_c01261{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);}
.m35_c01261{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m59_c01261{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01261{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m8_c01261{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);}
.m57_c01261{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m4_c01261{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m41_c01261{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01261{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01261{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);}
.m3d_c01261{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);}
.mb_c01261{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m18_c01261{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);}
.m34_c01261{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m33_c01261{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m36_c01261{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.ma_c01261{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);}
.m14_c01261{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01261{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01261{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);}
.m12_c01261{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);}
.m31_c01261{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01261{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m58_c01261{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m19_c01261{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m7_c01261{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m37_c01261{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m23_c01261{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);}
.m16_c01261{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);}
.m1f_c01261{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01261{transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);}
.m5c_c01261{transform:matrix(2.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.150000,0.000000,0.000000,0.250000,0,0);}
.v4_c01261{vertical-align:-11.520000px;}
.v3_c01261{vertical-align:-5.760000px;}
.v2_c01261{vertical-align:-2.880000px;}
.v0_c01261{vertical-align:0.000000px;}
.v1_c01261{vertical-align:14.400000px;}
.ls1_c01261{letter-spacing:0.000000px;}
.ls0_c01261{letter-spacing:24.422640px;}
.sc__c01261{text-shadow:none;}
.sc0_c01261{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01261{-webkit-text-stroke:0px transparent;}
.sc0_c01261{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01261{word-spacing:-7.491360px;}
.ws0_c01261{word-spacing:-2.563200px;}
.ws4_c01261{word-spacing:0.000000px;}
.ws2_c01261{word-spacing:51.320640px;}
.ws3_c01261{word-spacing:74.872800px;}
.fc0_c01261{color:transparent;}
.fs11_c01261{font-size:31.680000px;}
.fs4_c01261{font-size:34.560000px;}
.fs5_c01261{font-size:37.440000px;}
.fs7_c01261{font-size:43.200000px;}
.fsa_c01261{font-size:46.080000px;}
.fs1_c01261{font-size:48.960000px;}
.fs2_c01261{font-size:51.840000px;}
.fs9_c01261{font-size:54.720000px;}
.fsb_c01261{font-size:57.600000px;}
.fs3_c01261{font-size:60.480000px;}
.fs6_c01261{font-size:63.360000px;}
.fs8_c01261{font-size:66.240000px;}
.fsd_c01261{font-size:69.120000px;}
.fsc_c01261{font-size:72.000000px;}
.fs0_c01261{font-size:74.880000px;}
.fse_c01261{font-size:100.800000px;}
.fsf_c01261{font-size:103.680000px;}
.fs10_c01261{font-size:106.560000px;}
.y0_c01261{bottom:0.000000px;}
.y79_c01261{bottom:52.560000px;}
.y7b_c01261{bottom:53.280000px;}
.y7a_c01261{bottom:54.000000px;}
.y78_c01261{bottom:55.440000px;}
.y77_c01261{bottom:60.480000px;}
.y76_c01261{bottom:66.240000px;}
.y73_c01261{bottom:95.760000px;}
.y75_c01261{bottom:96.480000px;}
.y74_c01261{bottom:97.200000px;}
.y71_c01261{bottom:98.640000px;}
.y72_c01261{bottom:100.080000px;}
.y70_c01261{bottom:103.680000px;}
.y6f_c01261{bottom:105.840000px;}
.y6c_c01261{bottom:137.520000px;}
.y6b_c01261{bottom:138.240000px;}
.y6e_c01261{bottom:139.680000px;}
.y6d_c01261{bottom:140.400000px;}
.y6a_c01261{bottom:141.120000px;}
.y69_c01261{bottom:141.840000px;}
.y68_c01261{bottom:142.560000px;}
.y67_c01261{bottom:144.720000px;}
.y55_c01261{bottom:194.400000px;}
.y66_c01261{bottom:195.120000px;}
.y65_c01261{bottom:195.840000px;}
.y56_c01261{bottom:196.560000px;}
.y50_c01261{bottom:200.880000px;}
.y4f_c01261{bottom:203.040000px;}
.y62_c01261{bottom:245.520000px;}
.y53_c01261{bottom:247.680000px;}
.y63_c01261{bottom:249.120000px;}
.y54_c01261{bottom:249.840000px;}
.y4e_c01261{bottom:251.280000px;}
.y4d_c01261{bottom:253.440000px;}
.y4c_c01261{bottom:254.880000px;}
.y60_c01261{bottom:299.520000px;}
.y4a_c01261{bottom:302.400000px;}
.y61_c01261{bottom:303.120000px;}
.y64_c01261{bottom:304.560000px;}
.y4b_c01261{bottom:305.280000px;}
.y49_c01261{bottom:308.880000px;}
.y5f_c01261{bottom:353.520000px;}
.y47_c01261{bottom:355.680000px;}
.y5e_c01261{bottom:357.120000px;}
.y48_c01261{bottom:359.280000px;}
.y46_c01261{bottom:360.000000px;}
.y45_c01261{bottom:361.440000px;}
.y5c_c01261{bottom:406.800000px;}
.y5a_c01261{bottom:407.520000px;}
.y43_c01261{bottom:409.680000px;}
.y5b_c01261{bottom:410.400000px;}
.y5d_c01261{bottom:411.120000px;}
.y44_c01261{bottom:412.560000px;}
.y42_c01261{bottom:414.000000px;}
.y51_c01261{bottom:461.520000px;}
.y40_c01261{bottom:462.960000px;}
.y52_c01261{bottom:464.400000px;}
.y41_c01261{bottom:465.120000px;}
.y3f_c01261{bottom:467.280000px;}
.y57_c01261{bottom:514.800000px;}
.y3d_c01261{bottom:516.240000px;}
.y59_c01261{bottom:517.680000px;}
.y3e_c01261{bottom:518.400000px;}
.y58_c01261{bottom:519.120000px;}
.y3c_c01261{bottom:519.840000px;}
.y3b_c01261{bottom:520.560000px;}
.y3a_c01261{bottom:568.080000px;}
.y37_c01261{bottom:568.800000px;}
.y39_c01261{bottom:570.960000px;}
.y38_c01261{bottom:571.680000px;}
.y36_c01261{bottom:572.400000px;}
.y34_c01261{bottom:611.280000px;}
.y35_c01261{bottom:613.440000px;}
.y33_c01261{bottom:614.160000px;}
.y31_c01261{bottom:653.760000px;}
.y32_c01261{bottom:656.640000px;}
.y30_c01261{bottom:657.360000px;}
.y2d_c01261{bottom:696.960000px;}
.y2e_c01261{bottom:699.120000px;}
.y2c_c01261{bottom:699.840000px;}
.y2f_c01261{bottom:700.560000px;}
.y27_c01261{bottom:749.520000px;}
.y29_c01261{bottom:750.240000px;}
.y2b_c01261{bottom:750.960000px;}
.y28_c01261{bottom:753.120000px;}
.y2a_c01261{bottom:753.840000px;}
.y24_c01261{bottom:792.720000px;}
.y23_c01261{bottom:795.600000px;}
.y25_c01261{bottom:796.320000px;}
.y26_c01261{bottom:797.040000px;}
.y1e_c01261{bottom:835.920000px;}
.y1f_c01261{bottom:836.640000px;}
.y21_c01261{bottom:837.360000px;}
.y1d_c01261{bottom:838.080000px;}
.y20_c01261{bottom:839.520000px;}
.y22_c01261{bottom:840.240000px;}
.y19_c01261{bottom:877.680000px;}
.y1a_c01261{bottom:881.280000px;}
.y1b_c01261{bottom:882.000000px;}
.y1c_c01261{bottom:882.720000px;}
.y14_c01261{bottom:922.320000px;}
.y17_c01261{bottom:923.040000px;}
.y15_c01261{bottom:923.760000px;}
.y16_c01261{bottom:925.200000px;}
.y18_c01261{bottom:925.920000px;}
.yd_c01261{bottom:962.640000px;}
.y11_c01261{bottom:965.520000px;}
.ye_c01261{bottom:966.240000px;}
.yf_c01261{bottom:966.960000px;}
.y10_c01261{bottom:967.680000px;}
.y12_c01261{bottom:968.400000px;}
.y13_c01261{bottom:969.120000px;}
.y7_c01261{bottom:1008.000000px;}
.yc_c01261{bottom:1008.720000px;}
.y8_c01261{bottom:1009.440000px;}
.y9_c01261{bottom:1010.160000px;}
.ya_c01261{bottom:1010.880000px;}
.yb_c01261{bottom:1011.600000px;}
.y5_c01261{bottom:1051.920000px;}
.y2_c01261{bottom:1052.640000px;}
.y3_c01261{bottom:1053.360000px;}
.y4_c01261{bottom:1054.800000px;}
.y6_c01261{bottom:1055.520000px;}
.y1_c01261{bottom:1105.200000px;}
.h14_c01261{height:28.508906px;}
.h6_c01261{height:31.100625px;}
.h7_c01261{height:33.692344px;}
.h13_c01261{height:37.722656px;}
.h9_c01261{height:38.875781px;}
.hb_c01261{height:41.467500px;}
.h3_c01261{height:44.059219px;}
.h4_c01261{height:46.650937px;}
.h12_c01261{height:49.242656px;}
.hc_c01261{height:51.834375px;}
.h5_c01261{height:54.426094px;}
.h8_c01261{height:57.017812px;}
.he_c01261{height:62.201250px;}
.ha_c01261{height:63.642656px;}
.hd_c01261{height:64.792969px;}
.h2_c01261{height:67.384687px;}
.hf_c01261{height:90.710156px;}
.h10_c01261{height:93.301875px;}
.h11_c01261{height:95.893594px;}
.h1_c01261{height:1167.750000px;}
.h0_c01261{height:1167.840000px;}
.w0_c01261{width:781.920000px;}
.w1_c01261{width:782.250000px;}
.x0_c01261{left:0.000000px;}
.xa_c01261{left:61.920000px;}
.x2d_c01261{left:63.360000px;}
.x45_c01261{left:64.800000px;}
.x48_c01261{left:66.240000px;}
.x2e_c01261{left:90.720000px;}
.x41_c01261{left:92.880000px;}
.x3a_c01261{left:101.520000px;}
.x35_c01261{left:112.320000px;}
.x43_c01261{left:114.480000px;}
.x12_c01261{left:122.400000px;}
.x5e_c01261{left:123.840000px;}
.xb_c01261{left:131.760000px;}
.x13_c01261{left:151.920000px;}
.x44_c01261{left:153.360000px;}
.x46_c01261{left:154.800000px;}
.x2_c01261{left:162.000000px;}
.x20_c01261{left:163.440000px;}
.x55_c01261{left:164.880000px;}
.x5b_c01261{left:166.320000px;}
.xc_c01261{left:173.520000px;}
.x42_c01261{left:174.960000px;}
.x5f_c01261{left:176.400000px;}
.x3b_c01261{left:185.760000px;}
.x21_c01261{left:195.840000px;}
.x47_c01261{left:197.280000px;}
.x49_c01261{left:198.720000px;}
.x3_c01261{left:205.920000px;}
.xd_c01261{left:216.000000px;}
.x3c_c01261{left:228.960000px;}
.x14_c01261{left:238.320000px;}
.x4b_c01261{left:240.480000px;}
.x2f_c01261{left:249.120000px;}
.x37_c01261{left:250.560000px;}
.x1c_c01261{left:258.480000px;}
.x15_c01261{left:270.000000px;}
.x28_c01261{left:271.440000px;}
.x22_c01261{left:281.520000px;}
.x4a_c01261{left:282.960000px;}
.x4c_c01261{left:285.120000px;}
.x30_c01261{left:302.400000px;}
.x23_c01261{left:314.640000px;}
.x5c_c01261{left:317.520000px;}
.x4_c01261{left:323.280000px;}
.x4d_c01261{left:325.440000px;}
.x3d_c01261{left:336.240000px;}
.x16_c01261{left:345.600000px;}
.x38_c01261{left:347.040000px;}
.xe_c01261{left:357.120000px;}
.x56_c01261{left:358.560000px;}
.x5_c01261{left:367.200000px;}
.x31_c01261{left:368.640000px;}
.x50_c01261{left:371.520000px;}
.x54_c01261{left:380.880000px;}
.x17_c01261{left:388.080000px;}
.x29_c01261{left:389.520000px;}
.xf_c01261{left:390.960000px;}
.x32_c01261{left:400.320000px;}
.x39_c01261{left:401.760000px;}
.x4f_c01261{left:412.560000px;}
.x1d_c01261{left:421.920000px;}
.x3f_c01261{left:434.160000px;}
.x57_c01261{left:435.600000px;}
.x6_c01261{left:443.520000px;}
.x5d_c01261{left:444.960000px;}
.x18_c01261{left:455.040000px;}
.x4e_c01261{left:457.200000px;}
.x24_c01261{left:466.560000px;}
.x51_c01261{left:468.000000px;}
.x33_c01261{left:477.360000px;}
.x7_c01261{left:487.440000px;}
.x60_c01261{left:489.600000px;}
.x25_c01261{left:498.960000px;}
.x1e_c01261{left:509.040000px;}
.x58_c01261{left:511.920000px;}
.x19_c01261{left:519.120000px;}
.x26_c01261{left:521.280000px;}
.x36_c01261{left:531.360000px;}
.x10_c01261{left:541.440000px;}
.x53_c01261{left:544.320000px;}
.x1a_c01261{left:551.520000px;}
.x52_c01261{left:555.840000px;}
.x11_c01261{left:563.040000px;}
.x27_c01261{left:574.560000px;}
.x2a_c01261{left:586.080000px;}
.x8_c01261{left:596.160000px;}
.x40_c01261{left:597.600000px;}
.x3e_c01261{left:609.120000px;}
.x2b_c01261{left:617.760000px;}
.x59_c01261{left:619.920000px;}
.x9_c01261{left:628.560000px;}
.x61_c01261{left:631.440000px;}
.x1b_c01261{left:639.360000px;}
.x1f_c01261{left:651.600000px;}
.x5a_c01261{left:653.040000px;}
.x2c_c01261{left:662.400000px;}
.x62_c01261{left:663.840000px;}
.x34_c01261{left:673.200000px;}
.x1_c01261{left:694.080000px;}
@media print{
.v4_c01261{vertical-align:-10.240000pt;}
.v3_c01261{vertical-align:-5.120000pt;}
.v2_c01261{vertical-align:-2.560000pt;}
.v0_c01261{vertical-align:0.000000pt;}
.v1_c01261{vertical-align:12.800000pt;}
.ls1_c01261{letter-spacing:0.000000pt;}
.ls0_c01261{letter-spacing:21.709013pt;}
.ws1_c01261{word-spacing:-6.658987pt;}
.ws0_c01261{word-spacing:-2.278400pt;}
.ws4_c01261{word-spacing:0.000000pt;}
.ws2_c01261{word-spacing:45.618347pt;}
.ws3_c01261{word-spacing:66.553600pt;}
.fs11_c01261{font-size:28.160000pt;}
.fs4_c01261{font-size:30.720000pt;}
.fs5_c01261{font-size:33.280000pt;}
.fs7_c01261{font-size:38.400000pt;}
.fsa_c01261{font-size:40.960000pt;}
.fs1_c01261{font-size:43.520000pt;}
.fs2_c01261{font-size:46.080000pt;}
.fs9_c01261{font-size:48.640000pt;}
.fsb_c01261{font-size:51.200000pt;}
.fs3_c01261{font-size:53.760000pt;}
.fs6_c01261{font-size:56.320000pt;}
.fs8_c01261{font-size:58.880000pt;}
.fsd_c01261{font-size:61.440000pt;}
.fsc_c01261{font-size:64.000000pt;}
.fs0_c01261{font-size:66.560000pt;}
.fse_c01261{font-size:89.600000pt;}
.fsf_c01261{font-size:92.160000pt;}
.fs10_c01261{font-size:94.720000pt;}
.y0_c01261{bottom:0.000000pt;}
.y79_c01261{bottom:46.720000pt;}
.y7b_c01261{bottom:47.360000pt;}
.y7a_c01261{bottom:48.000000pt;}
.y78_c01261{bottom:49.280000pt;}
.y77_c01261{bottom:53.760000pt;}
.y76_c01261{bottom:58.880000pt;}
.y73_c01261{bottom:85.120000pt;}
.y75_c01261{bottom:85.760000pt;}
.y74_c01261{bottom:86.400000pt;}
.y71_c01261{bottom:87.680000pt;}
.y72_c01261{bottom:88.960000pt;}
.y70_c01261{bottom:92.160000pt;}
.y6f_c01261{bottom:94.080000pt;}
.y6c_c01261{bottom:122.240000pt;}
.y6b_c01261{bottom:122.880000pt;}
.y6e_c01261{bottom:124.160000pt;}
.y6d_c01261{bottom:124.800000pt;}
.y6a_c01261{bottom:125.440000pt;}
.y69_c01261{bottom:126.080000pt;}
.y68_c01261{bottom:126.720000pt;}
.y67_c01261{bottom:128.640000pt;}
.y55_c01261{bottom:172.800000pt;}
.y66_c01261{bottom:173.440000pt;}
.y65_c01261{bottom:174.080000pt;}
.y56_c01261{bottom:174.720000pt;}
.y50_c01261{bottom:178.560000pt;}
.y4f_c01261{bottom:180.480000pt;}
.y62_c01261{bottom:218.240000pt;}
.y53_c01261{bottom:220.160000pt;}
.y63_c01261{bottom:221.440000pt;}
.y54_c01261{bottom:222.080000pt;}
.y4e_c01261{bottom:223.360000pt;}
.y4d_c01261{bottom:225.280000pt;}
.y4c_c01261{bottom:226.560000pt;}
.y60_c01261{bottom:266.240000pt;}
.y4a_c01261{bottom:268.800000pt;}
.y61_c01261{bottom:269.440000pt;}
.y64_c01261{bottom:270.720000pt;}
.y4b_c01261{bottom:271.360000pt;}
.y49_c01261{bottom:274.560000pt;}
.y5f_c01261{bottom:314.240000pt;}
.y47_c01261{bottom:316.160000pt;}
.y5e_c01261{bottom:317.440000pt;}
.y48_c01261{bottom:319.360000pt;}
.y46_c01261{bottom:320.000000pt;}
.y45_c01261{bottom:321.280000pt;}
.y5c_c01261{bottom:361.600000pt;}
.y5a_c01261{bottom:362.240000pt;}
.y43_c01261{bottom:364.160000pt;}
.y5b_c01261{bottom:364.800000pt;}
.y5d_c01261{bottom:365.440000pt;}
.y44_c01261{bottom:366.720000pt;}
.y42_c01261{bottom:368.000000pt;}
.y51_c01261{bottom:410.240000pt;}
.y40_c01261{bottom:411.520000pt;}
.y52_c01261{bottom:412.800000pt;}
.y41_c01261{bottom:413.440000pt;}
.y3f_c01261{bottom:415.360000pt;}
.y57_c01261{bottom:457.600000pt;}
.y3d_c01261{bottom:458.880000pt;}
.y59_c01261{bottom:460.160000pt;}
.y3e_c01261{bottom:460.800000pt;}
.y58_c01261{bottom:461.440000pt;}
.y3c_c01261{bottom:462.080000pt;}
.y3b_c01261{bottom:462.720000pt;}
.y3a_c01261{bottom:504.960000pt;}
.y37_c01261{bottom:505.600000pt;}
.y39_c01261{bottom:507.520000pt;}
.y38_c01261{bottom:508.160000pt;}
.y36_c01261{bottom:508.800000pt;}
.y34_c01261{bottom:543.360000pt;}
.y35_c01261{bottom:545.280000pt;}
.y33_c01261{bottom:545.920000pt;}
.y31_c01261{bottom:581.120000pt;}
.y32_c01261{bottom:583.680000pt;}
.y30_c01261{bottom:584.320000pt;}
.y2d_c01261{bottom:619.520000pt;}
.y2e_c01261{bottom:621.440000pt;}
.y2c_c01261{bottom:622.080000pt;}
.y2f_c01261{bottom:622.720000pt;}
.y27_c01261{bottom:666.240000pt;}
.y29_c01261{bottom:666.880000pt;}
.y2b_c01261{bottom:667.520000pt;}
.y28_c01261{bottom:669.440000pt;}
.y2a_c01261{bottom:670.080000pt;}
.y24_c01261{bottom:704.640000pt;}
.y23_c01261{bottom:707.200000pt;}
.y25_c01261{bottom:707.840000pt;}
.y26_c01261{bottom:708.480000pt;}
.y1e_c01261{bottom:743.040000pt;}
.y1f_c01261{bottom:743.680000pt;}
.y21_c01261{bottom:744.320000pt;}
.y1d_c01261{bottom:744.960000pt;}
.y20_c01261{bottom:746.240000pt;}
.y22_c01261{bottom:746.880000pt;}
.y19_c01261{bottom:780.160000pt;}
.y1a_c01261{bottom:783.360000pt;}
.y1b_c01261{bottom:784.000000pt;}
.y1c_c01261{bottom:784.640000pt;}
.y14_c01261{bottom:819.840000pt;}
.y17_c01261{bottom:820.480000pt;}
.y15_c01261{bottom:821.120000pt;}
.y16_c01261{bottom:822.400000pt;}
.y18_c01261{bottom:823.040000pt;}
.yd_c01261{bottom:855.680000pt;}
.y11_c01261{bottom:858.240000pt;}
.ye_c01261{bottom:858.880000pt;}
.yf_c01261{bottom:859.520000pt;}
.y10_c01261{bottom:860.160000pt;}
.y12_c01261{bottom:860.800000pt;}
.y13_c01261{bottom:861.440000pt;}
.y7_c01261{bottom:896.000000pt;}
.yc_c01261{bottom:896.640000pt;}
.y8_c01261{bottom:897.280000pt;}
.y9_c01261{bottom:897.920000pt;}
.ya_c01261{bottom:898.560000pt;}
.yb_c01261{bottom:899.200000pt;}
.y5_c01261{bottom:935.040000pt;}
.y2_c01261{bottom:935.680000pt;}
.y3_c01261{bottom:936.320000pt;}
.y4_c01261{bottom:937.600000pt;}
.y6_c01261{bottom:938.240000pt;}
.y1_c01261{bottom:982.400000pt;}
.h14_c01261{height:25.341250pt;}
.h6_c01261{height:27.645000pt;}
.h7_c01261{height:29.948750pt;}
.h13_c01261{height:33.531250pt;}
.h9_c01261{height:34.556250pt;}
.hb_c01261{height:36.860000pt;}
.h3_c01261{height:39.163750pt;}
.h4_c01261{height:41.467500pt;}
.h12_c01261{height:43.771250pt;}
.hc_c01261{height:46.075000pt;}
.h5_c01261{height:48.378750pt;}
.h8_c01261{height:50.682500pt;}
.he_c01261{height:55.290000pt;}
.ha_c01261{height:56.571250pt;}
.hd_c01261{height:57.593750pt;}
.h2_c01261{height:59.897500pt;}
.hf_c01261{height:80.631250pt;}
.h10_c01261{height:82.935000pt;}
.h11_c01261{height:85.238750pt;}
.h1_c01261{height:1038.000000pt;}
.h0_c01261{height:1038.080000pt;}
.w0_c01261{width:695.040000pt;}
.w1_c01261{width:695.333333pt;}
.x0_c01261{left:0.000000pt;}
.xa_c01261{left:55.040000pt;}
.x2d_c01261{left:56.320000pt;}
.x45_c01261{left:57.600000pt;}
.x48_c01261{left:58.880000pt;}
.x2e_c01261{left:80.640000pt;}
.x41_c01261{left:82.560000pt;}
.x3a_c01261{left:90.240000pt;}
.x35_c01261{left:99.840000pt;}
.x43_c01261{left:101.760000pt;}
.x12_c01261{left:108.800000pt;}
.x5e_c01261{left:110.080000pt;}
.xb_c01261{left:117.120000pt;}
.x13_c01261{left:135.040000pt;}
.x44_c01261{left:136.320000pt;}
.x46_c01261{left:137.600000pt;}
.x2_c01261{left:144.000000pt;}
.x20_c01261{left:145.280000pt;}
.x55_c01261{left:146.560000pt;}
.x5b_c01261{left:147.840000pt;}
.xc_c01261{left:154.240000pt;}
.x42_c01261{left:155.520000pt;}
.x5f_c01261{left:156.800000pt;}
.x3b_c01261{left:165.120000pt;}
.x21_c01261{left:174.080000pt;}
.x47_c01261{left:175.360000pt;}
.x49_c01261{left:176.640000pt;}
.x3_c01261{left:183.040000pt;}
.xd_c01261{left:192.000000pt;}
.x3c_c01261{left:203.520000pt;}
.x14_c01261{left:211.840000pt;}
.x4b_c01261{left:213.760000pt;}
.x2f_c01261{left:221.440000pt;}
.x37_c01261{left:222.720000pt;}
.x1c_c01261{left:229.760000pt;}
.x15_c01261{left:240.000000pt;}
.x28_c01261{left:241.280000pt;}
.x22_c01261{left:250.240000pt;}
.x4a_c01261{left:251.520000pt;}
.x4c_c01261{left:253.440000pt;}
.x30_c01261{left:268.800000pt;}
.x23_c01261{left:279.680000pt;}
.x5c_c01261{left:282.240000pt;}
.x4_c01261{left:287.360000pt;}
.x4d_c01261{left:289.280000pt;}
.x3d_c01261{left:298.880000pt;}
.x16_c01261{left:307.200000pt;}
.x38_c01261{left:308.480000pt;}
.xe_c01261{left:317.440000pt;}
.x56_c01261{left:318.720000pt;}
.x5_c01261{left:326.400000pt;}
.x31_c01261{left:327.680000pt;}
.x50_c01261{left:330.240000pt;}
.x54_c01261{left:338.560000pt;}
.x17_c01261{left:344.960000pt;}
.x29_c01261{left:346.240000pt;}
.xf_c01261{left:347.520000pt;}
.x32_c01261{left:355.840000pt;}
.x39_c01261{left:357.120000pt;}
.x4f_c01261{left:366.720000pt;}
.x1d_c01261{left:375.040000pt;}
.x3f_c01261{left:385.920000pt;}
.x57_c01261{left:387.200000pt;}
.x6_c01261{left:394.240000pt;}
.x5d_c01261{left:395.520000pt;}
.x18_c01261{left:404.480000pt;}
.x4e_c01261{left:406.400000pt;}
.x24_c01261{left:414.720000pt;}
.x51_c01261{left:416.000000pt;}
.x33_c01261{left:424.320000pt;}
.x7_c01261{left:433.280000pt;}
.x60_c01261{left:435.200000pt;}
.x25_c01261{left:443.520000pt;}
.x1e_c01261{left:452.480000pt;}
.x58_c01261{left:455.040000pt;}
.x19_c01261{left:461.440000pt;}
.x26_c01261{left:463.360000pt;}
.x36_c01261{left:472.320000pt;}
.x10_c01261{left:481.280000pt;}
.x53_c01261{left:483.840000pt;}
.x1a_c01261{left:490.240000pt;}
.x52_c01261{left:494.080000pt;}
.x11_c01261{left:500.480000pt;}
.x27_c01261{left:510.720000pt;}
.x2a_c01261{left:520.960000pt;}
.x8_c01261{left:529.920000pt;}
.x40_c01261{left:531.200000pt;}
.x3e_c01261{left:541.440000pt;}
.x2b_c01261{left:549.120000pt;}
.x59_c01261{left:551.040000pt;}
.x9_c01261{left:558.720000pt;}
.x61_c01261{left:561.280000pt;}
.x1b_c01261{left:568.320000pt;}
.x1f_c01261{left:579.200000pt;}
.x5a_c01261{left:580.480000pt;}
.x2c_c01261{left:588.800000pt;}
.x62_c01261{left:590.080000pt;}
.x34_c01261{left:598.400000pt;}
.x1_c01261{left:616.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_c01262 {
    display:none;
  }
  .loading-indicator_c01262.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01262 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01262 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01262" -> "#page-container .classname_c01262")
 */
.pf_c01262 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01262 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01262.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01262 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01262 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01262 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01262 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01262 {overflow:visible;}
  }
}
.c_c01262 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01262 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01262:after { /* webkit #35443 */
  content: '';
}
.t_c01262:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01262 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01262 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01262 { /* info for Javascript */
  display:none;
}
.l_c01262 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01262 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01262 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01262:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01262{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01262;src:url('chunks/assets/font_81228bfd2c3f980b734bd925.woff2')format("woff");}.ff1_c01262{font-family:ff1_c01262;line-height:1.109863;font-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_c01262{transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);}
.m21_c01262{transform:matrix(0.195850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195850,0.000000,0.000000,0.250000,0,0);}
.m2b_c01262{transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);}
.m19_c01262{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m26_c01262{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m24_c01262{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m1c_c01262{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m23_c01262{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m2d_c01262{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01262{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01262{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);}
.m20_c01262{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01262{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m4_c01262{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01262{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);}
.m4e_c01262{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);}
.m2c_c01262{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m28_c01262{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m9_c01262{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);}
.m5e_c01262{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01262{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m44_c01262{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m22_c01262{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01262{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01262{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01262{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1_c01262{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m25_c01262{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);}
.m3a_c01262{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);}
.m30_c01262{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);}
.m3e_c01262{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m16_c01262{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);}
.m35_c01262{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01262{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);}
.m50_c01262{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m6_c01262{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m5a_c01262{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m58_c01262{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m31_c01262{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);}
.m0_c01262{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.ma_c01262{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);}
.m57_c01262{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m15_c01262{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);}
.mf_c01262{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);}
.m53_c01262{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m39_c01262{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m41_c01262{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01262{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);}
.m55_c01262{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);}
.m5d_c01262{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);}
.m45_c01262{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.md_c01262{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01262{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.mb_c01262{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m13_c01262{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);}
.m63_c01262{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m10_c01262{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m46_c01262{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);}
.m49_c01262{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);}
.m56_c01262{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m40_c01262{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m33_c01262{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m7_c01262{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m52_c01262{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);}
.m11_c01262{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m60_c01262{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m48_c01262{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01262{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);}
.m3_c01262{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01262{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m47_c01262{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01262{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);}
.m2_c01262{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m43_c01262{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01262{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m34_c01262{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);}
.m51_c01262{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01262{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m37_c01262{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);}
.m61_c01262{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m12_c01262{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.me_c01262{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m4a_c01262{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);}
.mc_c01262{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);}
.m5c_c01262{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m42_c01262{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m62_c01262{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m5b_c01262{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);}
.m5f_c01262{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);}
.m8_c01262{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);}
.m36_c01262{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m59_c01262{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m54_c01262{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m14_c01262{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.m38_c01262{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);}
.m32_c01262{transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);}
.m5_c01262{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m27_c01262{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);}
.m1e_c01262{transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);}
.m29_c01262{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.v2_c01262{vertical-align:-14.400000px;}
.v0_c01262{vertical-align:0.000000px;}
.v1_c01262{vertical-align:2.880000px;}
.ls2_c01262{letter-spacing:0.000000px;}
.ls1_c01262{letter-spacing:89.308800px;}
.ls0_c01262{letter-spacing:145.469520px;}
.sc__c01262{text-shadow:none;}
.sc0_c01262{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01262{-webkit-text-stroke:0px transparent;}
.sc0_c01262{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01262{word-spacing:0.000000px;}
.ws0_c01262{word-spacing:89.252698px;}
.fc0_c01262{color:transparent;}
.fse_c01262{font-size:8.640000px;}
.fsc_c01262{font-size:11.520000px;}
.fs4_c01262{font-size:17.280000px;}
.fsb_c01262{font-size:20.160000px;}
.fs6_c01262{font-size:34.560000px;}
.fs9_c01262{font-size:43.200000px;}
.fs7_c01262{font-size:46.080000px;}
.fs3_c01262{font-size:48.960000px;}
.fs5_c01262{font-size:51.840000px;}
.fs2_c01262{font-size:54.720000px;}
.fsf_c01262{font-size:57.600000px;}
.fs8_c01262{font-size:60.480000px;}
.fsd_c01262{font-size:63.360000px;}
.fs1_c01262{font-size:66.240000px;}
.fsa_c01262{font-size:69.120000px;}
.fs0_c01262{font-size:72.000000px;}
.y0_c01262{bottom:0.000000px;}
.y7c_c01262{bottom:89.280000px;}
.y7b_c01262{bottom:123.840000px;}
.y78_c01262{bottom:126.000000px;}
.y7a_c01262{bottom:126.720000px;}
.y79_c01262{bottom:128.160000px;}
.y77_c01262{bottom:130.320000px;}
.y76_c01262{bottom:132.480000px;}
.y74_c01262{bottom:167.040000px;}
.y75_c01262{bottom:169.200000px;}
.y73_c01262{bottom:169.920000px;}
.y70_c01262{bottom:171.360000px;}
.y72_c01262{bottom:172.800000px;}
.y71_c01262{bottom:173.520000px;}
.y6f_c01262{bottom:209.520000px;}
.y6c_c01262{bottom:210.240000px;}
.y6e_c01262{bottom:211.680000px;}
.y6d_c01262{bottom:212.400000px;}
.y6b_c01262{bottom:213.120000px;}
.y6a_c01262{bottom:213.840000px;}
.y69_c01262{bottom:214.560000px;}
.y68_c01262{bottom:216.720000px;}
.y67_c01262{bottom:218.160000px;}
.y66_c01262{bottom:252.720000px;}
.y63_c01262{bottom:254.880000px;}
.y65_c01262{bottom:255.600000px;}
.y64_c01262{bottom:256.320000px;}
.y62_c01262{bottom:257.040000px;}
.y61_c01262{bottom:259.920000px;}
.y5f_c01262{bottom:295.200000px;}
.y5c_c01262{bottom:296.640000px;}
.y60_c01262{bottom:297.360000px;}
.y5a_c01262{bottom:298.080000px;}
.y5d_c01262{bottom:298.800000px;}
.y5e_c01262{bottom:299.520000px;}
.y5b_c01262{bottom:300.960000px;}
.y59_c01262{bottom:338.400000px;}
.y57_c01262{bottom:339.120000px;}
.y58_c01262{bottom:340.560000px;}
.y56_c01262{bottom:342.720000px;}
.y55_c01262{bottom:344.160000px;}
.y53_c01262{bottom:380.880000px;}
.y52_c01262{bottom:381.600000px;}
.y51_c01262{bottom:383.040000px;}
.y54_c01262{bottom:383.760000px;}
.y50_c01262{bottom:384.480000px;}
.y4f_c01262{bottom:424.080000px;}
.y4e_c01262{bottom:426.240000px;}
.y4d_c01262{bottom:426.960000px;}
.y4c_c01262{bottom:427.680000px;}
.y4b_c01262{bottom:553.680000px;}
.y4a_c01262{bottom:555.840000px;}
.y48_c01262{bottom:556.560000px;}
.y49_c01262{bottom:557.280000px;}
.y47_c01262{bottom:599.040000px;}
.y46_c01262{bottom:599.760000px;}
.y43_c01262{bottom:639.360000px;}
.y42_c01262{bottom:642.240000px;}
.y44_c01262{bottom:642.960000px;}
.y45_c01262{bottom:643.680000px;}
.y3f_c01262{bottom:693.360000px;}
.y3d_c01262{bottom:694.080000px;}
.y41_c01262{bottom:694.800000px;}
.y3b_c01262{bottom:695.520000px;}
.y3a_c01262{bottom:696.240000px;}
.y3c_c01262{bottom:698.400000px;}
.y3e_c01262{bottom:699.120000px;}
.y40_c01262{bottom:699.840000px;}
.y35_c01262{bottom:735.840000px;}
.y36_c01262{bottom:736.560000px;}
.y37_c01262{bottom:737.280000px;}
.y34_c01262{bottom:738.720000px;}
.y38_c01262{bottom:739.440000px;}
.y39_c01262{bottom:743.040000px;}
.y2a_c01262{bottom:777.600000px;}
.y2b_c01262{bottom:779.040000px;}
.y2d_c01262{bottom:779.760000px;}
.y33_c01262{bottom:780.480000px;}
.y29_c01262{bottom:781.200000px;}
.y2e_c01262{bottom:781.920000px;}
.y32_c01262{bottom:782.640000px;}
.y30_c01262{bottom:783.360000px;}
.y2c_c01262{bottom:784.080000px;}
.y2f_c01262{bottom:784.800000px;}
.y31_c01262{bottom:785.520000px;}
.y23_c01262{bottom:820.080000px;}
.y24_c01262{bottom:821.520000px;}
.y22_c01262{bottom:822.960000px;}
.y27_c01262{bottom:823.680000px;}
.y26_c01262{bottom:825.840000px;}
.y25_c01262{bottom:826.560000px;}
.y28_c01262{bottom:828.720000px;}
.y1c_c01262{bottom:863.280000px;}
.y1e_c01262{bottom:864.720000px;}
.y1b_c01262{bottom:865.440000px;}
.y1d_c01262{bottom:866.880000px;}
.y20_c01262{bottom:868.320000px;}
.y1f_c01262{bottom:869.040000px;}
.y21_c01262{bottom:871.200000px;}
.y13_c01262{bottom:905.040000px;}
.y12_c01262{bottom:907.200000px;}
.y14_c01262{bottom:908.640000px;}
.y15_c01262{bottom:909.360000px;}
.y16_c01262{bottom:910.080000px;}
.y18_c01262{bottom:910.800000px;}
.y17_c01262{bottom:911.520000px;}
.y1a_c01262{bottom:912.240000px;}
.y19_c01262{bottom:914.400000px;}
.y10_c01262{bottom:948.960000px;}
.y11_c01262{bottom:951.120000px;}
.y8_c01262{bottom:989.280000px;}
.ya_c01262{bottom:992.160000px;}
.ye_c01262{bottom:994.320000px;}
.y9_c01262{bottom:995.040000px;}
.yb_c01262{bottom:995.760000px;}
.yc_c01262{bottom:996.480000px;}
.yd_c01262{bottom:997.200000px;}
.yf_c01262{bottom:997.920000px;}
.y2_c01262{bottom:1034.640000px;}
.y5_c01262{bottom:1037.520000px;}
.y3_c01262{bottom:1038.240000px;}
.y6_c01262{bottom:1038.960000px;}
.y4_c01262{bottom:1039.680000px;}
.y7_c01262{bottom:1040.400000px;}
.y1_c01262{bottom:1088.640000px;}
.h10_c01262{height:7.775156px;}
.he_c01262{height:10.366875px;}
.h5_c01262{height:15.550313px;}
.hd_c01262{height:18.142031px;}
.h7_c01262{height:31.100625px;}
.ha_c01262{height:38.875781px;}
.h8_c01262{height:41.467500px;}
.h4_c01262{height:44.059219px;}
.hc_c01262{height:44.347500px;}
.h6_c01262{height:46.650937px;}
.h12_c01262{height:47.801250px;}
.h3_c01262{height:49.242656px;}
.h11_c01262{height:51.834375px;}
.h9_c01262{height:54.426094px;}
.hf_c01262{height:57.017812px;}
.h2_c01262{height:59.609531px;}
.hb_c01262{height:62.201250px;}
.h1_c01262{height:64.792969px;}
.h0_c01262{height:1152.000000px;}
.w1_c01262{width:788.250000px;}
.w0_c01262{width:788.400000px;}
.x0_c01262{left:0.000000px;}
.x2_c01262{left:66.960000px;}
.x14_c01262{left:68.400000px;}
.x28_c01262{left:69.840000px;}
.x4d_c01262{left:71.280000px;}
.x32_c01262{left:97.920000px;}
.x16_c01262{left:99.360000px;}
.x15_c01262{left:116.640000px;}
.x17_c01262{left:118.080000px;}
.x40_c01262{left:119.520000px;}
.x33_c01262{left:127.440000px;}
.x54_c01262{left:130.320000px;}
.x23_c01262{left:137.520000px;}
.x3b_c01262{left:149.040000px;}
.x42_c01262{left:150.480000px;}
.x24_c01262{left:158.400000px;}
.x18_c01262{left:159.840000px;}
.x48_c01262{left:161.280000px;}
.x3_c01262{left:168.480000px;}
.x2b_c01262{left:170.640000px;}
.x25_c01262{left:179.280000px;}
.x43_c01262{left:181.440000px;}
.x34_c01262{left:190.800000px;}
.x3c_c01262{left:192.240000px;}
.xa_c01262{left:200.880000px;}
.x19_c01262{left:202.320000px;}
.x50_c01262{left:213.120000px;}
.x26_c01262{left:222.480000px;}
.x2c_c01262{left:223.920000px;}
.x35_c01262{left:234.720000px;}
.x20_c01262{left:244.080000px;}
.x1a_c01262{left:245.520000px;}
.x44_c01262{left:257.040000px;}
.x27_c01262{left:265.680000px;}
.xb_c01262{left:276.480000px;}
.x37_c01262{left:277.920000px;}
.x4_c01262{left:287.280000px;}
.x29_c01262{left:288.720000px;}
.x3d_c01262{left:300.240000px;}
.xc_c01262{left:308.880000px;}
.x5_c01262{left:330.480000px;}
.x1b_c01262{left:331.920000px;}
.x55_c01262{left:342.720000px;}
.x2a_c01262{left:352.080000px;}
.x36_c01262{left:353.520000px;}
.xd_c01262{left:363.600000px;}
.x21_c01262{left:373.680000px;}
.x1c_c01262{left:375.120000px;}
.x38_c01262{left:385.200000px;}
.x56_c01262{left:386.640000px;}
.xe_c01262{left:395.280000px;}
.x49_c01262{left:396.720000px;}
.x1d_c01262{left:398.160000px;}
.x6_c01262{left:419.040000px;}
.x1e_c01262{left:427.680000px;}
.x7_c01262{left:439.200000px;}
.x4a_c01262{left:440.640000px;}
.x31_c01262{left:449.280000px;}
.x22_c01262{left:450.720000px;}
.xf_c01262{left:460.080000px;}
.x1f_c01262{left:461.520000px;}
.x3e_c01262{left:474.480000px;}
.x2d_c01262{left:483.840000px;}
.x4e_c01262{left:494.640000px;}
.x51_c01262{left:496.080000px;}
.x10_c01262{left:504.000000px;}
.x45_c01262{left:505.440000px;}
.x57_c01262{left:515.520000px;}
.x8_c01262{left:525.600000px;}
.x41_c01262{left:527.040000px;}
.x2e_c01262{left:537.120000px;}
.x39_c01262{left:547.920000px;}
.x52_c01262{left:560.880000px;}
.x46_c01262{left:570.960000px;}
.x11_c01262{left:581.040000px;}
.x3a_c01262{left:593.280000px;}
.x3f_c01262{left:602.640000px;}
.x12_c01262{left:612.720000px;}
.x4b_c01262{left:614.160000px;}
.x4f_c01262{left:635.760000px;}
.x9_c01262{left:644.400000px;}
.x2f_c01262{left:645.840000px;}
.x4c_c01262{left:648.000000px;}
.x47_c01262{left:658.800000px;}
.x13_c01262{left:667.440000px;}
.x58_c01262{left:668.880000px;}
.x30_c01262{left:678.960000px;}
.x53_c01262{left:680.400000px;}
.x1_c01262{left:685.440000px;}
@media print{
.v2_c01262{vertical-align:-12.800000pt;}
.v0_c01262{vertical-align:0.000000pt;}
.v1_c01262{vertical-align:2.560000pt;}
.ls2_c01262{letter-spacing:0.000000pt;}
.ls1_c01262{letter-spacing:79.385600pt;}
.ls0_c01262{letter-spacing:129.306240pt;}
.ws1_c01262{word-spacing:0.000000pt;}
.ws0_c01262{word-spacing:79.335731pt;}
.fse_c01262{font-size:7.680000pt;}
.fsc_c01262{font-size:10.240000pt;}
.fs4_c01262{font-size:15.360000pt;}
.fsb_c01262{font-size:17.920000pt;}
.fs6_c01262{font-size:30.720000pt;}
.fs9_c01262{font-size:38.400000pt;}
.fs7_c01262{font-size:40.960000pt;}
.fs3_c01262{font-size:43.520000pt;}
.fs5_c01262{font-size:46.080000pt;}
.fs2_c01262{font-size:48.640000pt;}
.fsf_c01262{font-size:51.200000pt;}
.fs8_c01262{font-size:53.760000pt;}
.fsd_c01262{font-size:56.320000pt;}
.fs1_c01262{font-size:58.880000pt;}
.fsa_c01262{font-size:61.440000pt;}
.fs0_c01262{font-size:64.000000pt;}
.y0_c01262{bottom:0.000000pt;}
.y7c_c01262{bottom:79.360000pt;}
.y7b_c01262{bottom:110.080000pt;}
.y78_c01262{bottom:112.000000pt;}
.y7a_c01262{bottom:112.640000pt;}
.y79_c01262{bottom:113.920000pt;}
.y77_c01262{bottom:115.840000pt;}
.y76_c01262{bottom:117.760000pt;}
.y74_c01262{bottom:148.480000pt;}
.y75_c01262{bottom:150.400000pt;}
.y73_c01262{bottom:151.040000pt;}
.y70_c01262{bottom:152.320000pt;}
.y72_c01262{bottom:153.600000pt;}
.y71_c01262{bottom:154.240000pt;}
.y6f_c01262{bottom:186.240000pt;}
.y6c_c01262{bottom:186.880000pt;}
.y6e_c01262{bottom:188.160000pt;}
.y6d_c01262{bottom:188.800000pt;}
.y6b_c01262{bottom:189.440000pt;}
.y6a_c01262{bottom:190.080000pt;}
.y69_c01262{bottom:190.720000pt;}
.y68_c01262{bottom:192.640000pt;}
.y67_c01262{bottom:193.920000pt;}
.y66_c01262{bottom:224.640000pt;}
.y63_c01262{bottom:226.560000pt;}
.y65_c01262{bottom:227.200000pt;}
.y64_c01262{bottom:227.840000pt;}
.y62_c01262{bottom:228.480000pt;}
.y61_c01262{bottom:231.040000pt;}
.y5f_c01262{bottom:262.400000pt;}
.y5c_c01262{bottom:263.680000pt;}
.y60_c01262{bottom:264.320000pt;}
.y5a_c01262{bottom:264.960000pt;}
.y5d_c01262{bottom:265.600000pt;}
.y5e_c01262{bottom:266.240000pt;}
.y5b_c01262{bottom:267.520000pt;}
.y59_c01262{bottom:300.800000pt;}
.y57_c01262{bottom:301.440000pt;}
.y58_c01262{bottom:302.720000pt;}
.y56_c01262{bottom:304.640000pt;}
.y55_c01262{bottom:305.920000pt;}
.y53_c01262{bottom:338.560000pt;}
.y52_c01262{bottom:339.200000pt;}
.y51_c01262{bottom:340.480000pt;}
.y54_c01262{bottom:341.120000pt;}
.y50_c01262{bottom:341.760000pt;}
.y4f_c01262{bottom:376.960000pt;}
.y4e_c01262{bottom:378.880000pt;}
.y4d_c01262{bottom:379.520000pt;}
.y4c_c01262{bottom:380.160000pt;}
.y4b_c01262{bottom:492.160000pt;}
.y4a_c01262{bottom:494.080000pt;}
.y48_c01262{bottom:494.720000pt;}
.y49_c01262{bottom:495.360000pt;}
.y47_c01262{bottom:532.480000pt;}
.y46_c01262{bottom:533.120000pt;}
.y43_c01262{bottom:568.320000pt;}
.y42_c01262{bottom:570.880000pt;}
.y44_c01262{bottom:571.520000pt;}
.y45_c01262{bottom:572.160000pt;}
.y3f_c01262{bottom:616.320000pt;}
.y3d_c01262{bottom:616.960000pt;}
.y41_c01262{bottom:617.600000pt;}
.y3b_c01262{bottom:618.240000pt;}
.y3a_c01262{bottom:618.880000pt;}
.y3c_c01262{bottom:620.800000pt;}
.y3e_c01262{bottom:621.440000pt;}
.y40_c01262{bottom:622.080000pt;}
.y35_c01262{bottom:654.080000pt;}
.y36_c01262{bottom:654.720000pt;}
.y37_c01262{bottom:655.360000pt;}
.y34_c01262{bottom:656.640000pt;}
.y38_c01262{bottom:657.280000pt;}
.y39_c01262{bottom:660.480000pt;}
.y2a_c01262{bottom:691.200000pt;}
.y2b_c01262{bottom:692.480000pt;}
.y2d_c01262{bottom:693.120000pt;}
.y33_c01262{bottom:693.760000pt;}
.y29_c01262{bottom:694.400000pt;}
.y2e_c01262{bottom:695.040000pt;}
.y32_c01262{bottom:695.680000pt;}
.y30_c01262{bottom:696.320000pt;}
.y2c_c01262{bottom:696.960000pt;}
.y2f_c01262{bottom:697.600000pt;}
.y31_c01262{bottom:698.240000pt;}
.y23_c01262{bottom:728.960000pt;}
.y24_c01262{bottom:730.240000pt;}
.y22_c01262{bottom:731.520000pt;}
.y27_c01262{bottom:732.160000pt;}
.y26_c01262{bottom:734.080000pt;}
.y25_c01262{bottom:734.720000pt;}
.y28_c01262{bottom:736.640000pt;}
.y1c_c01262{bottom:767.360000pt;}
.y1e_c01262{bottom:768.640000pt;}
.y1b_c01262{bottom:769.280000pt;}
.y1d_c01262{bottom:770.560000pt;}
.y20_c01262{bottom:771.840000pt;}
.y1f_c01262{bottom:772.480000pt;}
.y21_c01262{bottom:774.400000pt;}
.y13_c01262{bottom:804.480000pt;}
.y12_c01262{bottom:806.400000pt;}
.y14_c01262{bottom:807.680000pt;}
.y15_c01262{bottom:808.320000pt;}
.y16_c01262{bottom:808.960000pt;}
.y18_c01262{bottom:809.600000pt;}
.y17_c01262{bottom:810.240000pt;}
.y1a_c01262{bottom:810.880000pt;}
.y19_c01262{bottom:812.800000pt;}
.y10_c01262{bottom:843.520000pt;}
.y11_c01262{bottom:845.440000pt;}
.y8_c01262{bottom:879.360000pt;}
.ya_c01262{bottom:881.920000pt;}
.ye_c01262{bottom:883.840000pt;}
.y9_c01262{bottom:884.480000pt;}
.yb_c01262{bottom:885.120000pt;}
.yc_c01262{bottom:885.760000pt;}
.yd_c01262{bottom:886.400000pt;}
.yf_c01262{bottom:887.040000pt;}
.y2_c01262{bottom:919.680000pt;}
.y5_c01262{bottom:922.240000pt;}
.y3_c01262{bottom:922.880000pt;}
.y6_c01262{bottom:923.520000pt;}
.y4_c01262{bottom:924.160000pt;}
.y7_c01262{bottom:924.800000pt;}
.y1_c01262{bottom:967.680000pt;}
.h10_c01262{height:6.911250pt;}
.he_c01262{height:9.215000pt;}
.h5_c01262{height:13.822500pt;}
.hd_c01262{height:16.126250pt;}
.h7_c01262{height:27.645000pt;}
.ha_c01262{height:34.556250pt;}
.h8_c01262{height:36.860000pt;}
.h4_c01262{height:39.163750pt;}
.hc_c01262{height:39.420000pt;}
.h6_c01262{height:41.467500pt;}
.h12_c01262{height:42.490000pt;}
.h3_c01262{height:43.771250pt;}
.h11_c01262{height:46.075000pt;}
.h9_c01262{height:48.378750pt;}
.hf_c01262{height:50.682500pt;}
.h2_c01262{height:52.986250pt;}
.hb_c01262{height:55.290000pt;}
.h1_c01262{height:57.593750pt;}
.h0_c01262{height:1024.000000pt;}
.w1_c01262{width:700.666667pt;}
.w0_c01262{width:700.800000pt;}
.x0_c01262{left:0.000000pt;}
.x2_c01262{left:59.520000pt;}
.x14_c01262{left:60.800000pt;}
.x28_c01262{left:62.080000pt;}
.x4d_c01262{left:63.360000pt;}
.x32_c01262{left:87.040000pt;}
.x16_c01262{left:88.320000pt;}
.x15_c01262{left:103.680000pt;}
.x17_c01262{left:104.960000pt;}
.x40_c01262{left:106.240000pt;}
.x33_c01262{left:113.280000pt;}
.x54_c01262{left:115.840000pt;}
.x23_c01262{left:122.240000pt;}
.x3b_c01262{left:132.480000pt;}
.x42_c01262{left:133.760000pt;}
.x24_c01262{left:140.800000pt;}
.x18_c01262{left:142.080000pt;}
.x48_c01262{left:143.360000pt;}
.x3_c01262{left:149.760000pt;}
.x2b_c01262{left:151.680000pt;}
.x25_c01262{left:159.360000pt;}
.x43_c01262{left:161.280000pt;}
.x34_c01262{left:169.600000pt;}
.x3c_c01262{left:170.880000pt;}
.xa_c01262{left:178.560000pt;}
.x19_c01262{left:179.840000pt;}
.x50_c01262{left:189.440000pt;}
.x26_c01262{left:197.760000pt;}
.x2c_c01262{left:199.040000pt;}
.x35_c01262{left:208.640000pt;}
.x20_c01262{left:216.960000pt;}
.x1a_c01262{left:218.240000pt;}
.x44_c01262{left:228.480000pt;}
.x27_c01262{left:236.160000pt;}
.xb_c01262{left:245.760000pt;}
.x37_c01262{left:247.040000pt;}
.x4_c01262{left:255.360000pt;}
.x29_c01262{left:256.640000pt;}
.x3d_c01262{left:266.880000pt;}
.xc_c01262{left:274.560000pt;}
.x5_c01262{left:293.760000pt;}
.x1b_c01262{left:295.040000pt;}
.x55_c01262{left:304.640000pt;}
.x2a_c01262{left:312.960000pt;}
.x36_c01262{left:314.240000pt;}
.xd_c01262{left:323.200000pt;}
.x21_c01262{left:332.160000pt;}
.x1c_c01262{left:333.440000pt;}
.x38_c01262{left:342.400000pt;}
.x56_c01262{left:343.680000pt;}
.xe_c01262{left:351.360000pt;}
.x49_c01262{left:352.640000pt;}
.x1d_c01262{left:353.920000pt;}
.x6_c01262{left:372.480000pt;}
.x1e_c01262{left:380.160000pt;}
.x7_c01262{left:390.400000pt;}
.x4a_c01262{left:391.680000pt;}
.x31_c01262{left:399.360000pt;}
.x22_c01262{left:400.640000pt;}
.xf_c01262{left:408.960000pt;}
.x1f_c01262{left:410.240000pt;}
.x3e_c01262{left:421.760000pt;}
.x2d_c01262{left:430.080000pt;}
.x4e_c01262{left:439.680000pt;}
.x51_c01262{left:440.960000pt;}
.x10_c01262{left:448.000000pt;}
.x45_c01262{left:449.280000pt;}
.x57_c01262{left:458.240000pt;}
.x8_c01262{left:467.200000pt;}
.x41_c01262{left:468.480000pt;}
.x2e_c01262{left:477.440000pt;}
.x39_c01262{left:487.040000pt;}
.x52_c01262{left:498.560000pt;}
.x46_c01262{left:507.520000pt;}
.x11_c01262{left:516.480000pt;}
.x3a_c01262{left:527.360000pt;}
.x3f_c01262{left:535.680000pt;}
.x12_c01262{left:544.640000pt;}
.x4b_c01262{left:545.920000pt;}
.x4f_c01262{left:565.120000pt;}
.x9_c01262{left:572.800000pt;}
.x2f_c01262{left:574.080000pt;}
.x4c_c01262{left:576.000000pt;}
.x47_c01262{left:585.600000pt;}
.x13_c01262{left:593.280000pt;}
.x58_c01262{left:594.560000pt;}
.x30_c01262{left:603.520000pt;}
.x53_c01262{left:604.800000pt;}
.x1_c01262{left:609.280000pt;}
}





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

.ir_c01263:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01263{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01263;src:url('chunks/assets/font_170c039703542480cb3054fb.woff2')format("woff");}.ff1_c01263{font-family:ff1_c01263;line-height:1.109863;font-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_c01263{transform:matrix(0.170525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170525,0.000000,0.000000,0.250000,0,0);}
.m59_c01263{transform:matrix(0.231900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231900,0.000000,0.000000,0.250000,0,0);}
.m0_c01263{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m5c_c01263{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);}
.m58_c01263{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);}
.m5a_c01263{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m56_c01263{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);}
.m38_c01263{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m12_c01263{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01263{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01263{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m30_c01263{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m36_c01263{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01263{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m60_c01263{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m25_c01263{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m54_c01263{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.me_c01263{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m17_c01263{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m8_c01263{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);}
.m29_c01263{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m52_c01263{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);}
.m2b_c01263{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m9_c01263{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);}
.m5f_c01263{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m10_c01263{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);}
.m42_c01263{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01263{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);}
.m4c_c01263{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m23_c01263{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m4_c01263{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);}
.m4b_c01263{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);}
.m28_c01263{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);}
.m39_c01263{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01263{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m1_c01263{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m7_c01263{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);}
.m24_c01263{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);}
.m3_c01263{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m2_c01263{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m31_c01263{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m15_c01263{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);}
.m18_c01263{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m55_c01263{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);}
.m53_c01263{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01263{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.md_c01263{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m32_c01263{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m22_c01263{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);}
.m44_c01263{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m46_c01263{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m35_c01263{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);}
.m5e_c01263{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.mb_c01263{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);}
.m5_c01263{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m45_c01263{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m16_c01263{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01263{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m19_c01263{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);}
.m21_c01263{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m40_c01263{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01263{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m20_c01263{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m49_c01263{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m11_c01263{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01263{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m34_c01263{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01263{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);}
.m5b_c01263{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01263{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m43_c01263{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01263{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);}
.m47_c01263{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01263{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m5d_c01263{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);}
.m50_c01263{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01263{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01263{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m6_c01263{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m51_c01263{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);}
.m3e_c01263{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01263{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01263{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);}
.m13_c01263{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_c01263{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m41_c01263{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m26_c01263{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m27_c01263{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m4a_c01263{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01263{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);}
.m37_c01263{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.ma_c01263{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);}
.m57_c01263{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m14_c01263{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);}
.m33_c01263{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.mc_c01263{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01263{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.v1_c01263{vertical-align:-8.640000px;}
.v0_c01263{vertical-align:0.000000px;}
.ls0_c01263{letter-spacing:0.000000px;}
.sc__c01263{text-shadow:none;}
.sc0_c01263{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01263{-webkit-text-stroke:0px transparent;}
.sc0_c01263{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01263{word-spacing:-0.594480px;}
.ws1_c01263{word-spacing:0.000000px;}
.fc0_c01263{color:transparent;}
.fs6_c01263{font-size:34.560000px;}
.fs9_c01263{font-size:37.440000px;}
.fse_c01263{font-size:40.320000px;}
.fsc_c01263{font-size:43.200000px;}
.fs7_c01263{font-size:46.080000px;}
.fs4_c01263{font-size:48.960000px;}
.fs3_c01263{font-size:51.840000px;}
.fs1_c01263{font-size:54.720000px;}
.fsb_c01263{font-size:57.600000px;}
.fs5_c01263{font-size:60.480000px;}
.fs2_c01263{font-size:63.360000px;}
.fs8_c01263{font-size:66.240000px;}
.fsa_c01263{font-size:69.120000px;}
.fsd_c01263{font-size:72.000000px;}
.fs0_c01263{font-size:77.760000px;}
.y0_c01263{bottom:0.000000px;}
.y84_c01263{bottom:46.800000px;}
.y86_c01263{bottom:48.960000px;}
.y85_c01263{bottom:49.680000px;}
.y83_c01263{bottom:50.400000px;}
.y82_c01263{bottom:51.120000px;}
.y80_c01263{bottom:52.560000px;}
.y81_c01263{bottom:54.000000px;}
.y7f_c01263{bottom:58.320000px;}
.y7d_c01263{bottom:90.000000px;}
.y7c_c01263{bottom:90.720000px;}
.y7e_c01263{bottom:91.440000px;}
.y7a_c01263{bottom:92.160000px;}
.y7b_c01263{bottom:92.880000px;}
.y79_c01263{bottom:94.320000px;}
.y78_c01263{bottom:95.040000px;}
.y77_c01263{bottom:97.920000px;}
.y73_c01263{bottom:133.200000px;}
.y74_c01263{bottom:133.920000px;}
.y76_c01263{bottom:135.360000px;}
.y75_c01263{bottom:136.080000px;}
.y71_c01263{bottom:136.800000px;}
.y72_c01263{bottom:137.520000px;}
.y6f_c01263{bottom:138.960000px;}
.y70_c01263{bottom:141.120000px;}
.y6e_c01263{bottom:176.400000px;}
.y6d_c01263{bottom:178.560000px;}
.y6c_c01263{bottom:180.000000px;}
.y6b_c01263{bottom:182.880000px;}
.y6a_c01263{bottom:218.880000px;}
.y68_c01263{bottom:219.600000px;}
.y66_c01263{bottom:221.040000px;}
.y67_c01263{bottom:221.760000px;}
.y69_c01263{bottom:222.480000px;}
.y63_c01263{bottom:223.200000px;}
.y65_c01263{bottom:223.920000px;}
.y64_c01263{bottom:225.360000px;}
.y62_c01263{bottom:262.080000px;}
.y5f_c01263{bottom:263.520000px;}
.y61_c01263{bottom:264.960000px;}
.y60_c01263{bottom:265.680000px;}
.y5e_c01263{bottom:267.120000px;}
.y5d_c01263{bottom:267.840000px;}
.y5c_c01263{bottom:305.280000px;}
.y5a_c01263{bottom:306.720000px;}
.y58_c01263{bottom:307.440000px;}
.y5b_c01263{bottom:308.160000px;}
.y59_c01263{bottom:309.600000px;}
.y57_c01263{bottom:311.760000px;}
.y56_c01263{bottom:313.200000px;}
.y53_c01263{bottom:348.480000px;}
.y54_c01263{bottom:349.200000px;}
.y55_c01263{bottom:350.640000px;}
.y52_c01263{bottom:352.080000px;}
.y51_c01263{bottom:352.800000px;}
.y4d_c01263{bottom:391.680000px;}
.y50_c01263{bottom:393.840000px;}
.y4e_c01263{bottom:394.560000px;}
.y4f_c01263{bottom:395.280000px;}
.y4c_c01263{bottom:397.440000px;}
.y4b_c01263{bottom:434.880000px;}
.y4a_c01263{bottom:437.040000px;}
.y49_c01263{bottom:437.760000px;}
.y48_c01263{bottom:438.480000px;}
.y47_c01263{bottom:439.200000px;}
.y44_c01263{bottom:477.360000px;}
.y43_c01263{bottom:478.080000px;}
.y46_c01263{bottom:480.240000px;}
.y45_c01263{bottom:480.960000px;}
.y42_c01263{bottom:482.400000px;}
.y41_c01263{bottom:520.560000px;}
.y40_c01263{bottom:523.440000px;}
.y3f_c01263{bottom:524.160000px;}
.y3d_c01263{bottom:563.760000px;}
.y3e_c01263{bottom:565.920000px;}
.y3b_c01263{bottom:566.640000px;}
.y3c_c01263{bottom:567.360000px;}
.y39_c01263{bottom:606.240000px;}
.y38_c01263{bottom:608.400000px;}
.y37_c01263{bottom:609.120000px;}
.y3a_c01263{bottom:609.840000px;}
.y34_c01263{bottom:648.720000px;}
.y33_c01263{bottom:649.440000px;}
.y36_c01263{bottom:650.160000px;}
.y32_c01263{bottom:651.600000px;}
.y35_c01263{bottom:652.320000px;}
.y2d_c01263{bottom:691.200000px;}
.y2e_c01263{bottom:691.920000px;}
.y2f_c01263{bottom:692.640000px;}
.y2c_c01263{bottom:694.080000px;}
.y31_c01263{bottom:695.520000px;}
.y30_c01263{bottom:696.240000px;}
.y29_c01263{bottom:735.120000px;}
.y27_c01263{bottom:737.280000px;}
.y28_c01263{bottom:738.000000px;}
.y2b_c01263{bottom:738.720000px;}
.y2a_c01263{bottom:739.440000px;}
.y23_c01263{bottom:786.960000px;}
.y24_c01263{bottom:787.680000px;}
.y26_c01263{bottom:789.120000px;}
.y25_c01263{bottom:791.280000px;}
.y1e_c01263{bottom:832.320000px;}
.y20_c01263{bottom:833.040000px;}
.y1f_c01263{bottom:833.760000px;}
.y21_c01263{bottom:835.200000px;}
.y22_c01263{bottom:835.920000px;}
.y18_c01263{bottom:873.360000px;}
.y19_c01263{bottom:874.080000px;}
.y1a_c01263{bottom:876.960000px;}
.y1b_c01263{bottom:877.680000px;}
.y1c_c01263{bottom:878.400000px;}
.y1d_c01263{bottom:879.120000px;}
.y12_c01263{bottom:917.280000px;}
.y15_c01263{bottom:918.000000px;}
.y13_c01263{bottom:919.440000px;}
.y14_c01263{bottom:920.160000px;}
.y16_c01263{bottom:921.600000px;}
.y17_c01263{bottom:922.320000px;}
.yd_c01263{bottom:959.760000px;}
.yc_c01263{bottom:960.480000px;}
.yf_c01263{bottom:961.920000px;}
.ye_c01263{bottom:964.080000px;}
.y10_c01263{bottom:965.520000px;}
.y11_c01263{bottom:966.240000px;}
.y6_c01263{bottom:1003.680000px;}
.y9_c01263{bottom:1004.400000px;}
.y4_c01263{bottom:1005.120000px;}
.y5_c01263{bottom:1005.840000px;}
.y8_c01263{bottom:1007.280000px;}
.y7_c01263{bottom:1008.000000px;}
.ya_c01263{bottom:1008.720000px;}
.yb_c01263{bottom:1009.440000px;}
.y3_c01263{bottom:1047.600000px;}
.y2_c01263{bottom:1049.760000px;}
.y1_c01263{bottom:1089.360000px;}
.h8_c01263{height:31.100625px;}
.hb_c01263{height:33.692344px;}
.h10_c01263{height:36.284062px;}
.he_c01263{height:38.875781px;}
.h9_c01263{height:41.467500px;}
.h6_c01263{height:44.059219px;}
.h5_c01263{height:46.650937px;}
.h3_c01263{height:49.242656px;}
.hd_c01263{height:51.834375px;}
.h7_c01263{height:54.426094px;}
.h4_c01263{height:57.017812px;}
.ha_c01263{height:59.609531px;}
.hc_c01263{height:62.201250px;}
.hf_c01263{height:64.792969px;}
.h2_c01263{height:69.976406px;}
.h1_c01263{height:1147.500000px;}
.h0_c01263{height:1147.680000px;}
.w1_c01263{width:785.250000px;}
.w0_c01263{width:785.520000px;}
.x0_c01263{left:0.000000px;}
.xe_c01263{left:66.240000px;}
.x2c_c01263{left:67.680000px;}
.x33_c01263{left:69.120000px;}
.x66_c01263{left:71.280000px;}
.x5f_c01263{left:79.200000px;}
.x27_c01263{left:86.400000px;}
.x34_c01263{left:97.200000px;}
.x59_c01263{left:99.360000px;}
.x20_c01263{left:105.840000px;}
.x77_c01263{left:110.160000px;}
.x35_c01263{left:116.640000px;}
.x60_c01263{left:119.520000px;}
.x15_c01263{left:126.000000px;}
.x2d_c01263{left:127.440000px;}
.x48_c01263{left:129.600000px;}
.x21_c01263{left:146.880000px;}
.x3a_c01263{left:148.320000px;}
.x6d_c01263{left:149.760000px;}
.x36_c01263{left:157.680000px;}
.x49_c01263{left:159.120000px;}
.x6f_c01263{left:160.560000px;}
.xf_c01263{left:167.040000px;}
.x4_c01263{left:168.480000px;}
.x61_c01263{left:171.360000px;}
.x4b_c01263{left:190.800000px;}
.x56_c01263{left:192.960000px;}
.x28_c01263{left:200.880000px;}
.x62_c01263{left:203.040000px;}
.x1d_c01263{left:210.960000px;}
.x78_c01263{left:213.840000px;}
.x2_c01263{left:220.320000px;}
.x16_c01263{left:221.760000px;}
.x4c_c01263{left:223.200000px;}
.x5a_c01263{left:224.640000px;}
.x5_c01263{left:231.840000px;}
.x29_c01263{left:233.280000px;}
.x57_c01263{left:234.720000px;}
.x22_c01263{left:242.640000px;}
.x17_c01263{left:253.440000px;}
.x40_c01263{left:254.880000px;}
.x5b_c01263{left:256.320000px;}
.x6_c01263{left:263.520000px;}
.x51_c01263{left:266.400000px;}
.x70_c01263{left:267.840000px;}
.x1e_c01263{left:275.040000px;}
.x10_c01263{left:285.120000px;}
.x3b_c01263{left:287.280000px;}
.x69_c01263{left:288.720000px;}
.x37_c01263{left:298.800000px;}
.x2e_c01263{left:307.440000px;}
.x52_c01263{left:308.880000px;}
.x67_c01263{left:310.320000px;}
.x18_c01263{left:318.240000px;}
.x45_c01263{left:320.400000px;}
.x4a_c01263{left:324.720000px;}
.x7_c01263{left:329.760000px;}
.x2a_c01263{left:341.280000px;}
.x68_c01263{left:342.720000px;}
.x41_c01263{left:351.360000px;}
.x6a_c01263{left:352.800000px;}
.x71_c01263{left:354.240000px;}
.x8_c01263{left:360.720000px;}
.x19_c01263{left:362.880000px;}
.x3_c01263{left:371.520000px;}
.x11_c01263{left:372.960000px;}
.x5c_c01263{left:375.840000px;}
.x46_c01263{left:384.480000px;}
.x72_c01263{left:386.640000px;}
.x38_c01263{left:406.080000px;}
.x63_c01263{left:408.240000px;}
.x3c_c01263{left:416.880000px;}
.x79_c01263{left:419.040000px;}
.x4d_c01263{left:420.480000px;}
.x42_c01263{left:429.120000px;}
.x9_c01263{left:437.760000px;}
.x6b_c01263{left:439.920000px;}
.x23_c01263{left:449.280000px;}
.x53_c01263{left:451.440000px;}
.x1a_c01263{left:458.640000px;}
.x3d_c01263{left:460.080000px;}
.x5d_c01263{left:461.520000px;}
.x12_c01263{left:469.440000px;}
.x1f_c01263{left:470.880000px;}
.x73_c01263{left:473.040000px;}
.x2f_c01263{left:482.400000px;}
.x54_c01263{left:483.840000px;}
.x39_c01263{left:491.760000px;}
.x24_c01263{left:501.840000px;}
.x3e_c01263{left:503.280000px;}
.x4e_c01263{left:505.440000px;}
.x2b_c01263{left:515.520000px;}
.x74_c01263{left:516.960000px;}
.xa_c01263{left:535.680000px;}
.x58_c01263{left:537.840000px;}
.x5e_c01263{left:548.640000px;}
.x30_c01263{left:558.000000px;}
.x43_c01263{left:559.440000px;}
.x75_c01263{left:560.880000px;}
.xb_c01263{left:568.080000px;}
.x4f_c01263{left:569.520000px;}
.x25_c01263{left:580.320000px;}
.x44_c01263{left:591.120000px;}
.x6c_c01263{left:593.280000px;}
.x1b_c01263{left:600.480000px;}
.x31_c01263{left:601.920000px;}
.x55_c01263{left:613.440000px;}
.x7a_c01263{left:614.880000px;}
.x1c_c01263{left:622.080000px;}
.x26_c01263{left:623.520000px;}
.x64_c01263{left:626.400000px;}
.x13_c01263{left:633.600000px;}
.x32_c01263{left:635.760000px;}
.x47_c01263{left:645.840000px;}
.x76_c01263{left:647.280000px;}
.xc_c01263{left:654.480000px;}
.x50_c01263{left:657.360000px;}
.x1_c01263{left:658.800000px;}
.x14_c01263{left:665.280000px;}
.xd_c01263{left:676.080000px;}
.x3f_c01263{left:678.960000px;}
.x65_c01263{left:680.400000px;}
.x6e_c01263{left:692.640000px;}
@media print{
.v1_c01263{vertical-align:-7.680000pt;}
.v0_c01263{vertical-align:0.000000pt;}
.ls0_c01263{letter-spacing:0.000000pt;}
.ws0_c01263{word-spacing:-0.528427pt;}
.ws1_c01263{word-spacing:0.000000pt;}
.fs6_c01263{font-size:30.720000pt;}
.fs9_c01263{font-size:33.280000pt;}
.fse_c01263{font-size:35.840000pt;}
.fsc_c01263{font-size:38.400000pt;}
.fs7_c01263{font-size:40.960000pt;}
.fs4_c01263{font-size:43.520000pt;}
.fs3_c01263{font-size:46.080000pt;}
.fs1_c01263{font-size:48.640000pt;}
.fsb_c01263{font-size:51.200000pt;}
.fs5_c01263{font-size:53.760000pt;}
.fs2_c01263{font-size:56.320000pt;}
.fs8_c01263{font-size:58.880000pt;}
.fsa_c01263{font-size:61.440000pt;}
.fsd_c01263{font-size:64.000000pt;}
.fs0_c01263{font-size:69.120000pt;}
.y0_c01263{bottom:0.000000pt;}
.y84_c01263{bottom:41.600000pt;}
.y86_c01263{bottom:43.520000pt;}
.y85_c01263{bottom:44.160000pt;}
.y83_c01263{bottom:44.800000pt;}
.y82_c01263{bottom:45.440000pt;}
.y80_c01263{bottom:46.720000pt;}
.y81_c01263{bottom:48.000000pt;}
.y7f_c01263{bottom:51.840000pt;}
.y7d_c01263{bottom:80.000000pt;}
.y7c_c01263{bottom:80.640000pt;}
.y7e_c01263{bottom:81.280000pt;}
.y7a_c01263{bottom:81.920000pt;}
.y7b_c01263{bottom:82.560000pt;}
.y79_c01263{bottom:83.840000pt;}
.y78_c01263{bottom:84.480000pt;}
.y77_c01263{bottom:87.040000pt;}
.y73_c01263{bottom:118.400000pt;}
.y74_c01263{bottom:119.040000pt;}
.y76_c01263{bottom:120.320000pt;}
.y75_c01263{bottom:120.960000pt;}
.y71_c01263{bottom:121.600000pt;}
.y72_c01263{bottom:122.240000pt;}
.y6f_c01263{bottom:123.520000pt;}
.y70_c01263{bottom:125.440000pt;}
.y6e_c01263{bottom:156.800000pt;}
.y6d_c01263{bottom:158.720000pt;}
.y6c_c01263{bottom:160.000000pt;}
.y6b_c01263{bottom:162.560000pt;}
.y6a_c01263{bottom:194.560000pt;}
.y68_c01263{bottom:195.200000pt;}
.y66_c01263{bottom:196.480000pt;}
.y67_c01263{bottom:197.120000pt;}
.y69_c01263{bottom:197.760000pt;}
.y63_c01263{bottom:198.400000pt;}
.y65_c01263{bottom:199.040000pt;}
.y64_c01263{bottom:200.320000pt;}
.y62_c01263{bottom:232.960000pt;}
.y5f_c01263{bottom:234.240000pt;}
.y61_c01263{bottom:235.520000pt;}
.y60_c01263{bottom:236.160000pt;}
.y5e_c01263{bottom:237.440000pt;}
.y5d_c01263{bottom:238.080000pt;}
.y5c_c01263{bottom:271.360000pt;}
.y5a_c01263{bottom:272.640000pt;}
.y58_c01263{bottom:273.280000pt;}
.y5b_c01263{bottom:273.920000pt;}
.y59_c01263{bottom:275.200000pt;}
.y57_c01263{bottom:277.120000pt;}
.y56_c01263{bottom:278.400000pt;}
.y53_c01263{bottom:309.760000pt;}
.y54_c01263{bottom:310.400000pt;}
.y55_c01263{bottom:311.680000pt;}
.y52_c01263{bottom:312.960000pt;}
.y51_c01263{bottom:313.600000pt;}
.y4d_c01263{bottom:348.160000pt;}
.y50_c01263{bottom:350.080000pt;}
.y4e_c01263{bottom:350.720000pt;}
.y4f_c01263{bottom:351.360000pt;}
.y4c_c01263{bottom:353.280000pt;}
.y4b_c01263{bottom:386.560000pt;}
.y4a_c01263{bottom:388.480000pt;}
.y49_c01263{bottom:389.120000pt;}
.y48_c01263{bottom:389.760000pt;}
.y47_c01263{bottom:390.400000pt;}
.y44_c01263{bottom:424.320000pt;}
.y43_c01263{bottom:424.960000pt;}
.y46_c01263{bottom:426.880000pt;}
.y45_c01263{bottom:427.520000pt;}
.y42_c01263{bottom:428.800000pt;}
.y41_c01263{bottom:462.720000pt;}
.y40_c01263{bottom:465.280000pt;}
.y3f_c01263{bottom:465.920000pt;}
.y3d_c01263{bottom:501.120000pt;}
.y3e_c01263{bottom:503.040000pt;}
.y3b_c01263{bottom:503.680000pt;}
.y3c_c01263{bottom:504.320000pt;}
.y39_c01263{bottom:538.880000pt;}
.y38_c01263{bottom:540.800000pt;}
.y37_c01263{bottom:541.440000pt;}
.y3a_c01263{bottom:542.080000pt;}
.y34_c01263{bottom:576.640000pt;}
.y33_c01263{bottom:577.280000pt;}
.y36_c01263{bottom:577.920000pt;}
.y32_c01263{bottom:579.200000pt;}
.y35_c01263{bottom:579.840000pt;}
.y2d_c01263{bottom:614.400000pt;}
.y2e_c01263{bottom:615.040000pt;}
.y2f_c01263{bottom:615.680000pt;}
.y2c_c01263{bottom:616.960000pt;}
.y31_c01263{bottom:618.240000pt;}
.y30_c01263{bottom:618.880000pt;}
.y29_c01263{bottom:653.440000pt;}
.y27_c01263{bottom:655.360000pt;}
.y28_c01263{bottom:656.000000pt;}
.y2b_c01263{bottom:656.640000pt;}
.y2a_c01263{bottom:657.280000pt;}
.y23_c01263{bottom:699.520000pt;}
.y24_c01263{bottom:700.160000pt;}
.y26_c01263{bottom:701.440000pt;}
.y25_c01263{bottom:703.360000pt;}
.y1e_c01263{bottom:739.840000pt;}
.y20_c01263{bottom:740.480000pt;}
.y1f_c01263{bottom:741.120000pt;}
.y21_c01263{bottom:742.400000pt;}
.y22_c01263{bottom:743.040000pt;}
.y18_c01263{bottom:776.320000pt;}
.y19_c01263{bottom:776.960000pt;}
.y1a_c01263{bottom:779.520000pt;}
.y1b_c01263{bottom:780.160000pt;}
.y1c_c01263{bottom:780.800000pt;}
.y1d_c01263{bottom:781.440000pt;}
.y12_c01263{bottom:815.360000pt;}
.y15_c01263{bottom:816.000000pt;}
.y13_c01263{bottom:817.280000pt;}
.y14_c01263{bottom:817.920000pt;}
.y16_c01263{bottom:819.200000pt;}
.y17_c01263{bottom:819.840000pt;}
.yd_c01263{bottom:853.120000pt;}
.yc_c01263{bottom:853.760000pt;}
.yf_c01263{bottom:855.040000pt;}
.ye_c01263{bottom:856.960000pt;}
.y10_c01263{bottom:858.240000pt;}
.y11_c01263{bottom:858.880000pt;}
.y6_c01263{bottom:892.160000pt;}
.y9_c01263{bottom:892.800000pt;}
.y4_c01263{bottom:893.440000pt;}
.y5_c01263{bottom:894.080000pt;}
.y8_c01263{bottom:895.360000pt;}
.y7_c01263{bottom:896.000000pt;}
.ya_c01263{bottom:896.640000pt;}
.yb_c01263{bottom:897.280000pt;}
.y3_c01263{bottom:931.200000pt;}
.y2_c01263{bottom:933.120000pt;}
.y1_c01263{bottom:968.320000pt;}
.h8_c01263{height:27.645000pt;}
.hb_c01263{height:29.948750pt;}
.h10_c01263{height:32.252500pt;}
.he_c01263{height:34.556250pt;}
.h9_c01263{height:36.860000pt;}
.h6_c01263{height:39.163750pt;}
.h5_c01263{height:41.467500pt;}
.h3_c01263{height:43.771250pt;}
.hd_c01263{height:46.075000pt;}
.h7_c01263{height:48.378750pt;}
.h4_c01263{height:50.682500pt;}
.ha_c01263{height:52.986250pt;}
.hc_c01263{height:55.290000pt;}
.hf_c01263{height:57.593750pt;}
.h2_c01263{height:62.201250pt;}
.h1_c01263{height:1020.000000pt;}
.h0_c01263{height:1020.160000pt;}
.w1_c01263{width:698.000000pt;}
.w0_c01263{width:698.240000pt;}
.x0_c01263{left:0.000000pt;}
.xe_c01263{left:58.880000pt;}
.x2c_c01263{left:60.160000pt;}
.x33_c01263{left:61.440000pt;}
.x66_c01263{left:63.360000pt;}
.x5f_c01263{left:70.400000pt;}
.x27_c01263{left:76.800000pt;}
.x34_c01263{left:86.400000pt;}
.x59_c01263{left:88.320000pt;}
.x20_c01263{left:94.080000pt;}
.x77_c01263{left:97.920000pt;}
.x35_c01263{left:103.680000pt;}
.x60_c01263{left:106.240000pt;}
.x15_c01263{left:112.000000pt;}
.x2d_c01263{left:113.280000pt;}
.x48_c01263{left:115.200000pt;}
.x21_c01263{left:130.560000pt;}
.x3a_c01263{left:131.840000pt;}
.x6d_c01263{left:133.120000pt;}
.x36_c01263{left:140.160000pt;}
.x49_c01263{left:141.440000pt;}
.x6f_c01263{left:142.720000pt;}
.xf_c01263{left:148.480000pt;}
.x4_c01263{left:149.760000pt;}
.x61_c01263{left:152.320000pt;}
.x4b_c01263{left:169.600000pt;}
.x56_c01263{left:171.520000pt;}
.x28_c01263{left:178.560000pt;}
.x62_c01263{left:180.480000pt;}
.x1d_c01263{left:187.520000pt;}
.x78_c01263{left:190.080000pt;}
.x2_c01263{left:195.840000pt;}
.x16_c01263{left:197.120000pt;}
.x4c_c01263{left:198.400000pt;}
.x5a_c01263{left:199.680000pt;}
.x5_c01263{left:206.080000pt;}
.x29_c01263{left:207.360000pt;}
.x57_c01263{left:208.640000pt;}
.x22_c01263{left:215.680000pt;}
.x17_c01263{left:225.280000pt;}
.x40_c01263{left:226.560000pt;}
.x5b_c01263{left:227.840000pt;}
.x6_c01263{left:234.240000pt;}
.x51_c01263{left:236.800000pt;}
.x70_c01263{left:238.080000pt;}
.x1e_c01263{left:244.480000pt;}
.x10_c01263{left:253.440000pt;}
.x3b_c01263{left:255.360000pt;}
.x69_c01263{left:256.640000pt;}
.x37_c01263{left:265.600000pt;}
.x2e_c01263{left:273.280000pt;}
.x52_c01263{left:274.560000pt;}
.x67_c01263{left:275.840000pt;}
.x18_c01263{left:282.880000pt;}
.x45_c01263{left:284.800000pt;}
.x4a_c01263{left:288.640000pt;}
.x7_c01263{left:293.120000pt;}
.x2a_c01263{left:303.360000pt;}
.x68_c01263{left:304.640000pt;}
.x41_c01263{left:312.320000pt;}
.x6a_c01263{left:313.600000pt;}
.x71_c01263{left:314.880000pt;}
.x8_c01263{left:320.640000pt;}
.x19_c01263{left:322.560000pt;}
.x3_c01263{left:330.240000pt;}
.x11_c01263{left:331.520000pt;}
.x5c_c01263{left:334.080000pt;}
.x46_c01263{left:341.760000pt;}
.x72_c01263{left:343.680000pt;}
.x38_c01263{left:360.960000pt;}
.x63_c01263{left:362.880000pt;}
.x3c_c01263{left:370.560000pt;}
.x79_c01263{left:372.480000pt;}
.x4d_c01263{left:373.760000pt;}
.x42_c01263{left:381.440000pt;}
.x9_c01263{left:389.120000pt;}
.x6b_c01263{left:391.040000pt;}
.x23_c01263{left:399.360000pt;}
.x53_c01263{left:401.280000pt;}
.x1a_c01263{left:407.680000pt;}
.x3d_c01263{left:408.960000pt;}
.x5d_c01263{left:410.240000pt;}
.x12_c01263{left:417.280000pt;}
.x1f_c01263{left:418.560000pt;}
.x73_c01263{left:420.480000pt;}
.x2f_c01263{left:428.800000pt;}
.x54_c01263{left:430.080000pt;}
.x39_c01263{left:437.120000pt;}
.x24_c01263{left:446.080000pt;}
.x3e_c01263{left:447.360000pt;}
.x4e_c01263{left:449.280000pt;}
.x2b_c01263{left:458.240000pt;}
.x74_c01263{left:459.520000pt;}
.xa_c01263{left:476.160000pt;}
.x58_c01263{left:478.080000pt;}
.x5e_c01263{left:487.680000pt;}
.x30_c01263{left:496.000000pt;}
.x43_c01263{left:497.280000pt;}
.x75_c01263{left:498.560000pt;}
.xb_c01263{left:504.960000pt;}
.x4f_c01263{left:506.240000pt;}
.x25_c01263{left:515.840000pt;}
.x44_c01263{left:525.440000pt;}
.x6c_c01263{left:527.360000pt;}
.x1b_c01263{left:533.760000pt;}
.x31_c01263{left:535.040000pt;}
.x55_c01263{left:545.280000pt;}
.x7a_c01263{left:546.560000pt;}
.x1c_c01263{left:552.960000pt;}
.x26_c01263{left:554.240000pt;}
.x64_c01263{left:556.800000pt;}
.x13_c01263{left:563.200000pt;}
.x32_c01263{left:565.120000pt;}
.x47_c01263{left:574.080000pt;}
.x76_c01263{left:575.360000pt;}
.xc_c01263{left:581.760000pt;}
.x50_c01263{left:584.320000pt;}
.x1_c01263{left:585.600000pt;}
.x14_c01263{left:591.360000pt;}
.xd_c01263{left:600.960000pt;}
.x3f_c01263{left:603.520000pt;}
.x65_c01263{left:604.800000pt;}
.x6e_c01263{left:615.680000pt;}
}





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

.ir_c01264:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01264{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01264;src:url('chunks/assets/font_01ddc3ee988e5577499eb358.woff2')format("woff");}.ff1_c01264{font-family:ff1_c01264;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m57_c01264{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);}
.m5a_c01264{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);}
.m43_c01264{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);}
.m52_c01264{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mc_c01264{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m13_c01264{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m26_c01264{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01264{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01264{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m39_c01264{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m40_c01264{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);}
.m3c_c01264{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01264{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);}
.m50_c01264{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);}
.m4c_c01264{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);}
.m20_c01264{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m33_c01264{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m21_c01264{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m27_c01264{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m31_c01264{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m0_c01264{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m25_c01264{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m17_c01264{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m24_c01264{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);}
.me_c01264{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);}
.ma_c01264{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);}
.m22_c01264{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);}
.m28_c01264{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01264{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);}
.m54_c01264{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);}
.m2_c01264{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01264{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01264{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01264{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);}
.m9_c01264{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m12_c01264{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01264{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_c01264{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);}
.m8_c01264{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m32_c01264{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m56_c01264{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m35_c01264{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m49_c01264{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);}
.m42_c01264{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m37_c01264{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m44_c01264{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);}
.m16_c01264{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m7_c01264{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);}
.m41_c01264{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m34_c01264{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01264{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m4_c01264{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);}
.m55_c01264{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m59_c01264{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);}
.m2e_c01264{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m30_c01264{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m47_c01264{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m45_c01264{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m58_c01264{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);}
.m1_c01264{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);}
.m6_c01264{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01264{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.mb_c01264{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);}
.m53_c01264{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m36_c01264{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m4f_c01264{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);}
.m4b_c01264{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m29_c01264{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01264{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01264{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m51_c01264{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01264{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);}
.m2a_c01264{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);}
.m11_c01264{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m23_c01264{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m3_c01264{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m5b_c01264{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m5_c01264{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.md_c01264{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01264{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m38_c01264{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);}
.m14_c01264{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m15_c01264{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);}
.m2c_c01264{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m46_c01264{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.mf_c01264{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m48_c01264{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m19_c01264{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m18_c01264{transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);}
.m10_c01264{transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01264{transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01264{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.v3_c01264{vertical-align:-14.400000px;}
.v1_c01264{vertical-align:-5.760000px;}
.v0_c01264{vertical-align:0.000000px;}
.v2_c01264{vertical-align:8.640000px;}
.ls0_c01264{letter-spacing:0.000000px;}
.sc__c01264{text-shadow:none;}
.sc0_c01264{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01264{-webkit-text-stroke:0px transparent;}
.sc0_c01264{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01264{word-spacing:-6.066000px;}
.ws4_c01264{word-spacing:0.000000px;}
.ws1_c01264{word-spacing:0.176878px;}
.ws0_c01264{word-spacing:1.406400px;}
.ws3_c01264{word-spacing:2.259120px;}
.fc0_c01264{color:transparent;}
.fs3_c01264{font-size:34.560000px;}
.fs7_c01264{font-size:37.440000px;}
.fs1_c01264{font-size:40.320000px;}
.fs9_c01264{font-size:43.200000px;}
.fs2_c01264{font-size:46.080000px;}
.fsa_c01264{font-size:48.960000px;}
.fs4_c01264{font-size:51.840000px;}
.fse_c01264{font-size:54.720000px;}
.fsb_c01264{font-size:57.600000px;}
.fs6_c01264{font-size:60.480000px;}
.fs5_c01264{font-size:63.360000px;}
.fs8_c01264{font-size:66.240000px;}
.fsc_c01264{font-size:69.120000px;}
.fsd_c01264{font-size:72.000000px;}
.fs0_c01264{font-size:74.880000px;}
.y0_c01264{bottom:0.000000px;}
.y80_c01264{bottom:56.160000px;}
.y83_c01264{bottom:56.880000px;}
.y85_c01264{bottom:57.600000px;}
.y84_c01264{bottom:58.320000px;}
.y81_c01264{bottom:59.040000px;}
.y82_c01264{bottom:59.760000px;}
.y7f_c01264{bottom:61.920000px;}
.y7e_c01264{bottom:63.360000px;}
.y7d_c01264{bottom:68.400000px;}
.y7c_c01264{bottom:97.200000px;}
.y7b_c01264{bottom:98.640000px;}
.y78_c01264{bottom:99.360000px;}
.y7a_c01264{bottom:101.520000px;}
.y79_c01264{bottom:102.240000px;}
.y77_c01264{bottom:104.400000px;}
.y76_c01264{bottom:108.000000px;}
.y75_c01264{bottom:109.440000px;}
.y74_c01264{bottom:110.880000px;}
.y73_c01264{bottom:141.840000px;}
.y72_c01264{bottom:144.720000px;}
.y71_c01264{bottom:147.600000px;}
.y70_c01264{bottom:148.320000px;}
.y6f_c01264{bottom:151.920000px;}
.y6d_c01264{bottom:185.760000px;}
.y6e_c01264{bottom:187.200000px;}
.y6c_c01264{bottom:188.640000px;}
.y6a_c01264{bottom:189.360000px;}
.y6b_c01264{bottom:190.080000px;}
.y69_c01264{bottom:192.960000px;}
.y68_c01264{bottom:194.400000px;}
.y67_c01264{bottom:228.960000px;}
.y66_c01264{bottom:230.400000px;}
.y63_c01264{bottom:231.120000px;}
.y65_c01264{bottom:231.840000px;}
.y64_c01264{bottom:232.560000px;}
.y62_c01264{bottom:234.000000px;}
.y61_c01264{bottom:237.600000px;}
.y5f_c01264{bottom:271.440000px;}
.y5c_c01264{bottom:273.600000px;}
.y60_c01264{bottom:274.320000px;}
.y5e_c01264{bottom:275.040000px;}
.y5d_c01264{bottom:276.480000px;}
.y5a_c01264{bottom:313.920000px;}
.y5b_c01264{bottom:314.640000px;}
.y57_c01264{bottom:316.800000px;}
.y59_c01264{bottom:317.520000px;}
.y58_c01264{bottom:318.240000px;}
.y56_c01264{bottom:320.400000px;}
.y55_c01264{bottom:321.840000px;}
.y53_c01264{bottom:357.120000px;}
.y54_c01264{bottom:357.840000px;}
.y52_c01264{bottom:360.000000px;}
.y51_c01264{bottom:361.440000px;}
.y50_c01264{bottom:362.160000px;}
.y4f_c01264{bottom:364.320000px;}
.y4c_c01264{bottom:399.600000px;}
.y4d_c01264{bottom:400.320000px;}
.y4e_c01264{bottom:402.480000px;}
.y4a_c01264{bottom:403.200000px;}
.y4b_c01264{bottom:404.640000px;}
.y48_c01264{bottom:443.520000px;}
.y49_c01264{bottom:445.680000px;}
.y47_c01264{bottom:446.400000px;}
.y44_c01264{bottom:486.000000px;}
.y46_c01264{bottom:486.720000px;}
.y41_c01264{bottom:487.440000px;}
.y45_c01264{bottom:488.880000px;}
.y43_c01264{bottom:489.600000px;}
.y42_c01264{bottom:490.320000px;}
.y40_c01264{bottom:528.480000px;}
.y3d_c01264{bottom:529.200000px;}
.y3f_c01264{bottom:531.360000px;}
.y3e_c01264{bottom:532.080000px;}
.y3c_c01264{bottom:533.520000px;}
.y38_c01264{bottom:571.680000px;}
.y39_c01264{bottom:572.400000px;}
.y3b_c01264{bottom:573.840000px;}
.y3a_c01264{bottom:574.560000px;}
.y36_c01264{bottom:614.160000px;}
.y37_c01264{bottom:616.320000px;}
.y35_c01264{bottom:617.040000px;}
.y31_c01264{bottom:656.640000px;}
.y34_c01264{bottom:657.360000px;}
.y33_c01264{bottom:658.080000px;}
.y30_c01264{bottom:658.800000px;}
.y32_c01264{bottom:659.520000px;}
.y2f_c01264{bottom:660.240000px;}
.y2d_c01264{bottom:699.840000px;}
.y2e_c01264{bottom:700.560000px;}
.y2c_c01264{bottom:702.720000px;}
.y2b_c01264{bottom:703.440000px;}
.y2a_c01264{bottom:755.280000px;}
.y29_c01264{bottom:756.000000px;}
.y24_c01264{bottom:795.600000px;}
.y27_c01264{bottom:797.040000px;}
.y26_c01264{bottom:798.480000px;}
.y25_c01264{bottom:799.200000px;}
.y28_c01264{bottom:799.920000px;}
.y21_c01264{bottom:838.080000px;}
.y20_c01264{bottom:840.240000px;}
.y22_c01264{bottom:841.680000px;}
.y23_c01264{bottom:842.400000px;}
.y1a_c01264{bottom:880.560000px;}
.y1c_c01264{bottom:882.000000px;}
.y19_c01264{bottom:883.440000px;}
.y1b_c01264{bottom:884.160000px;}
.y1d_c01264{bottom:884.880000px;}
.y1f_c01264{bottom:885.600000px;}
.y1e_c01264{bottom:886.320000px;}
.y13_c01264{bottom:924.480000px;}
.y12_c01264{bottom:925.200000px;}
.y16_c01264{bottom:925.920000px;}
.y14_c01264{bottom:927.360000px;}
.y15_c01264{bottom:928.080000px;}
.y18_c01264{bottom:928.800000px;}
.y17_c01264{bottom:929.520000px;}
.yd_c01264{bottom:964.800000px;}
.y11_c01264{bottom:969.120000px;}
.ye_c01264{bottom:970.560000px;}
.y10_c01264{bottom:971.280000px;}
.yf_c01264{bottom:972.000000px;}
.y6_c01264{bottom:1006.560000px;}
.y8_c01264{bottom:1008.720000px;}
.y7_c01264{bottom:1010.880000px;}
.y9_c01264{bottom:1012.320000px;}
.ya_c01264{bottom:1013.040000px;}
.yb_c01264{bottom:1014.480000px;}
.yc_c01264{bottom:1015.200000px;}
.y2_c01264{bottom:1051.920000px;}
.y3_c01264{bottom:1054.800000px;}
.y4_c01264{bottom:1055.520000px;}
.y5_c01264{bottom:1056.960000px;}
.y1_c01264{bottom:1107.360000px;}
.h5_c01264{height:31.100625px;}
.h9_c01264{height:33.692344px;}
.h3_c01264{height:36.284062px;}
.hb_c01264{height:38.875781px;}
.h4_c01264{height:41.467500px;}
.hc_c01264{height:44.059219px;}
.h6_c01264{height:46.650937px;}
.h10_c01264{height:49.242656px;}
.hd_c01264{height:51.834375px;}
.h8_c01264{height:54.426094px;}
.h7_c01264{height:57.017812px;}
.ha_c01264{height:59.609531px;}
.he_c01264{height:62.201250px;}
.hf_c01264{height:64.792969px;}
.h2_c01264{height:67.384687px;}
.h1_c01264{height:1149.750000px;}
.h0_c01264{height:1149.840000px;}
.w0_c01264{width:777.600000px;}
.w1_c01264{width:777.750000px;}
.x0_c01264{left:0.000000px;}
.x2_c01264{left:68.400000px;}
.x23_c01264{left:69.840000px;}
.x42_c01264{left:71.280000px;}
.x4d_c01264{left:72.720000px;}
.xc_c01264{left:87.840000px;}
.x48_c01264{left:100.080000px;}
.x4e_c01264{left:101.520000px;}
.x2e_c01264{left:108.720000px;}
.x43_c01264{left:110.160000px;}
.xd_c01264{left:117.360000px;}
.x57_c01264{left:120.240000px;}
.x3_c01264{left:127.440000px;}
.x24_c01264{left:128.880000px;}
.x55_c01264{left:131.040000px;}
.x28_c01264{left:138.240000px;}
.x52_c01264{left:140.400000px;}
.x4c_c01264{left:149.040000px;}
.x47_c01264{left:150.480000px;}
.x3a_c01264{left:159.840000px;}
.x4f_c01264{left:161.280000px;}
.x4_c01264{left:170.640000px;}
.x2f_c01264{left:172.080000px;}
.xe_c01264{left:181.440000px;}
.x35_c01264{left:190.080000px;}
.x29_c01264{left:191.520000px;}
.x5b_c01264{left:193.680000px;}
.x5_c01264{left:201.600000px;}
.x3f_c01264{left:203.760000px;}
.x17_c01264{left:213.120000px;}
.x2a_c01264{left:224.640000px;}
.x45_c01264{left:233.280000px;}
.x3b_c01264{left:234.720000px;}
.xf_c01264{left:244.800000px;}
.x58_c01264{left:246.240000px;}
.x30_c01264{left:256.320000px;}
.x18_c01264{left:267.120000px;}
.x2b_c01264{left:276.480000px;}
.x36_c01264{left:278.640000px;}
.x10_c01264{left:288.000000px;}
.x25_c01264{left:298.080000px;}
.x20_c01264{left:300.240000px;}
.x6_c01264{left:308.880000px;}
.x50_c01264{left:311.040000px;}
.x37_c01264{left:320.400000px;}
.x56_c01264{left:321.840000px;}
.x7_c01264{left:342.720000px;}
.x3c_c01264{left:353.520000px;}
.x44_c01264{left:365.040000px;}
.x8_c01264{left:374.400000px;}
.x19_c01264{left:375.840000px;}
.x40_c01264{left:386.640000px;}
.x11_c01264{left:396.720000px;}
.x1a_c01264{left:406.080000px;}
.x49_c01264{left:408.240000px;}
.x2c_c01264{left:418.320000px;}
.x12_c01264{left:429.120000px;}
.x5c_c01264{left:430.560000px;}
.x38_c01264{left:440.640000px;}
.x1b_c01264{left:450.000000px;}
.x26_c01264{left:451.440000px;}
.x21_c01264{left:460.800000px;}
.x9_c01264{left:462.240000px;}
.x3d_c01264{left:473.040000px;}
.x27_c01264{left:483.120000px;}
.x53_c01264{left:484.560000px;}
.x13_c01264{left:493.920000px;}
.x46_c01264{left:495.360000px;}
.xa_c01264{left:505.440000px;}
.x2d_c01264{left:516.240000px;}
.x14_c01264{left:527.040000px;}
.x31_c01264{left:537.840000px;}
.x5d_c01264{left:540.000000px;}
.x1d_c01264{left:547.920000px;}
.x39_c01264{left:549.360000px;}
.x15_c01264{left:559.440000px;}
.x4a_c01264{left:560.880000px;}
.x32_c01264{left:570.240000px;}
.x41_c01264{left:571.680000px;}
.xb_c01264{left:581.760000px;}
.x4b_c01264{left:592.560000px;}
.x59_c01264{left:594.000000px;}
.x51_c01264{left:604.800000px;}
.x16_c01264{left:613.440000px;}
.x33_c01264{left:614.880000px;}
.x1c_c01264{left:624.960000px;}
.x5a_c01264{left:626.400000px;}
.x3e_c01264{left:636.480000px;}
.x54_c01264{left:648.720000px;}
.x1e_c01264{left:658.080000px;}
.x1_c01264{left:663.840000px;}
.x22_c01264{left:668.160000px;}
.x1f_c01264{left:678.240000px;}
.x34_c01264{left:679.680000px;}
@media print{
.v3_c01264{vertical-align:-12.800000pt;}
.v1_c01264{vertical-align:-5.120000pt;}
.v0_c01264{vertical-align:0.000000pt;}
.v2_c01264{vertical-align:7.680000pt;}
.ls0_c01264{letter-spacing:0.000000pt;}
.ws2_c01264{word-spacing:-5.392000pt;}
.ws4_c01264{word-spacing:0.000000pt;}
.ws1_c01264{word-spacing:0.157225pt;}
.ws0_c01264{word-spacing:1.250133pt;}
.ws3_c01264{word-spacing:2.008107pt;}
.fs3_c01264{font-size:30.720000pt;}
.fs7_c01264{font-size:33.280000pt;}
.fs1_c01264{font-size:35.840000pt;}
.fs9_c01264{font-size:38.400000pt;}
.fs2_c01264{font-size:40.960000pt;}
.fsa_c01264{font-size:43.520000pt;}
.fs4_c01264{font-size:46.080000pt;}
.fse_c01264{font-size:48.640000pt;}
.fsb_c01264{font-size:51.200000pt;}
.fs6_c01264{font-size:53.760000pt;}
.fs5_c01264{font-size:56.320000pt;}
.fs8_c01264{font-size:58.880000pt;}
.fsc_c01264{font-size:61.440000pt;}
.fsd_c01264{font-size:64.000000pt;}
.fs0_c01264{font-size:66.560000pt;}
.y0_c01264{bottom:0.000000pt;}
.y80_c01264{bottom:49.920000pt;}
.y83_c01264{bottom:50.560000pt;}
.y85_c01264{bottom:51.200000pt;}
.y84_c01264{bottom:51.840000pt;}
.y81_c01264{bottom:52.480000pt;}
.y82_c01264{bottom:53.120000pt;}
.y7f_c01264{bottom:55.040000pt;}
.y7e_c01264{bottom:56.320000pt;}
.y7d_c01264{bottom:60.800000pt;}
.y7c_c01264{bottom:86.400000pt;}
.y7b_c01264{bottom:87.680000pt;}
.y78_c01264{bottom:88.320000pt;}
.y7a_c01264{bottom:90.240000pt;}
.y79_c01264{bottom:90.880000pt;}
.y77_c01264{bottom:92.800000pt;}
.y76_c01264{bottom:96.000000pt;}
.y75_c01264{bottom:97.280000pt;}
.y74_c01264{bottom:98.560000pt;}
.y73_c01264{bottom:126.080000pt;}
.y72_c01264{bottom:128.640000pt;}
.y71_c01264{bottom:131.200000pt;}
.y70_c01264{bottom:131.840000pt;}
.y6f_c01264{bottom:135.040000pt;}
.y6d_c01264{bottom:165.120000pt;}
.y6e_c01264{bottom:166.400000pt;}
.y6c_c01264{bottom:167.680000pt;}
.y6a_c01264{bottom:168.320000pt;}
.y6b_c01264{bottom:168.960000pt;}
.y69_c01264{bottom:171.520000pt;}
.y68_c01264{bottom:172.800000pt;}
.y67_c01264{bottom:203.520000pt;}
.y66_c01264{bottom:204.800000pt;}
.y63_c01264{bottom:205.440000pt;}
.y65_c01264{bottom:206.080000pt;}
.y64_c01264{bottom:206.720000pt;}
.y62_c01264{bottom:208.000000pt;}
.y61_c01264{bottom:211.200000pt;}
.y5f_c01264{bottom:241.280000pt;}
.y5c_c01264{bottom:243.200000pt;}
.y60_c01264{bottom:243.840000pt;}
.y5e_c01264{bottom:244.480000pt;}
.y5d_c01264{bottom:245.760000pt;}
.y5a_c01264{bottom:279.040000pt;}
.y5b_c01264{bottom:279.680000pt;}
.y57_c01264{bottom:281.600000pt;}
.y59_c01264{bottom:282.240000pt;}
.y58_c01264{bottom:282.880000pt;}
.y56_c01264{bottom:284.800000pt;}
.y55_c01264{bottom:286.080000pt;}
.y53_c01264{bottom:317.440000pt;}
.y54_c01264{bottom:318.080000pt;}
.y52_c01264{bottom:320.000000pt;}
.y51_c01264{bottom:321.280000pt;}
.y50_c01264{bottom:321.920000pt;}
.y4f_c01264{bottom:323.840000pt;}
.y4c_c01264{bottom:355.200000pt;}
.y4d_c01264{bottom:355.840000pt;}
.y4e_c01264{bottom:357.760000pt;}
.y4a_c01264{bottom:358.400000pt;}
.y4b_c01264{bottom:359.680000pt;}
.y48_c01264{bottom:394.240000pt;}
.y49_c01264{bottom:396.160000pt;}
.y47_c01264{bottom:396.800000pt;}
.y44_c01264{bottom:432.000000pt;}
.y46_c01264{bottom:432.640000pt;}
.y41_c01264{bottom:433.280000pt;}
.y45_c01264{bottom:434.560000pt;}
.y43_c01264{bottom:435.200000pt;}
.y42_c01264{bottom:435.840000pt;}
.y40_c01264{bottom:469.760000pt;}
.y3d_c01264{bottom:470.400000pt;}
.y3f_c01264{bottom:472.320000pt;}
.y3e_c01264{bottom:472.960000pt;}
.y3c_c01264{bottom:474.240000pt;}
.y38_c01264{bottom:508.160000pt;}
.y39_c01264{bottom:508.800000pt;}
.y3b_c01264{bottom:510.080000pt;}
.y3a_c01264{bottom:510.720000pt;}
.y36_c01264{bottom:545.920000pt;}
.y37_c01264{bottom:547.840000pt;}
.y35_c01264{bottom:548.480000pt;}
.y31_c01264{bottom:583.680000pt;}
.y34_c01264{bottom:584.320000pt;}
.y33_c01264{bottom:584.960000pt;}
.y30_c01264{bottom:585.600000pt;}
.y32_c01264{bottom:586.240000pt;}
.y2f_c01264{bottom:586.880000pt;}
.y2d_c01264{bottom:622.080000pt;}
.y2e_c01264{bottom:622.720000pt;}
.y2c_c01264{bottom:624.640000pt;}
.y2b_c01264{bottom:625.280000pt;}
.y2a_c01264{bottom:671.360000pt;}
.y29_c01264{bottom:672.000000pt;}
.y24_c01264{bottom:707.200000pt;}
.y27_c01264{bottom:708.480000pt;}
.y26_c01264{bottom:709.760000pt;}
.y25_c01264{bottom:710.400000pt;}
.y28_c01264{bottom:711.040000pt;}
.y21_c01264{bottom:744.960000pt;}
.y20_c01264{bottom:746.880000pt;}
.y22_c01264{bottom:748.160000pt;}
.y23_c01264{bottom:748.800000pt;}
.y1a_c01264{bottom:782.720000pt;}
.y1c_c01264{bottom:784.000000pt;}
.y19_c01264{bottom:785.280000pt;}
.y1b_c01264{bottom:785.920000pt;}
.y1d_c01264{bottom:786.560000pt;}
.y1f_c01264{bottom:787.200000pt;}
.y1e_c01264{bottom:787.840000pt;}
.y13_c01264{bottom:821.760000pt;}
.y12_c01264{bottom:822.400000pt;}
.y16_c01264{bottom:823.040000pt;}
.y14_c01264{bottom:824.320000pt;}
.y15_c01264{bottom:824.960000pt;}
.y18_c01264{bottom:825.600000pt;}
.y17_c01264{bottom:826.240000pt;}
.yd_c01264{bottom:857.600000pt;}
.y11_c01264{bottom:861.440000pt;}
.ye_c01264{bottom:862.720000pt;}
.y10_c01264{bottom:863.360000pt;}
.yf_c01264{bottom:864.000000pt;}
.y6_c01264{bottom:894.720000pt;}
.y8_c01264{bottom:896.640000pt;}
.y7_c01264{bottom:898.560000pt;}
.y9_c01264{bottom:899.840000pt;}
.ya_c01264{bottom:900.480000pt;}
.yb_c01264{bottom:901.760000pt;}
.yc_c01264{bottom:902.400000pt;}
.y2_c01264{bottom:935.040000pt;}
.y3_c01264{bottom:937.600000pt;}
.y4_c01264{bottom:938.240000pt;}
.y5_c01264{bottom:939.520000pt;}
.y1_c01264{bottom:984.320000pt;}
.h5_c01264{height:27.645000pt;}
.h9_c01264{height:29.948750pt;}
.h3_c01264{height:32.252500pt;}
.hb_c01264{height:34.556250pt;}
.h4_c01264{height:36.860000pt;}
.hc_c01264{height:39.163750pt;}
.h6_c01264{height:41.467500pt;}
.h10_c01264{height:43.771250pt;}
.hd_c01264{height:46.075000pt;}
.h8_c01264{height:48.378750pt;}
.h7_c01264{height:50.682500pt;}
.ha_c01264{height:52.986250pt;}
.he_c01264{height:55.290000pt;}
.hf_c01264{height:57.593750pt;}
.h2_c01264{height:59.897500pt;}
.h1_c01264{height:1022.000000pt;}
.h0_c01264{height:1022.080000pt;}
.w0_c01264{width:691.200000pt;}
.w1_c01264{width:691.333333pt;}
.x0_c01264{left:0.000000pt;}
.x2_c01264{left:60.800000pt;}
.x23_c01264{left:62.080000pt;}
.x42_c01264{left:63.360000pt;}
.x4d_c01264{left:64.640000pt;}
.xc_c01264{left:78.080000pt;}
.x48_c01264{left:88.960000pt;}
.x4e_c01264{left:90.240000pt;}
.x2e_c01264{left:96.640000pt;}
.x43_c01264{left:97.920000pt;}
.xd_c01264{left:104.320000pt;}
.x57_c01264{left:106.880000pt;}
.x3_c01264{left:113.280000pt;}
.x24_c01264{left:114.560000pt;}
.x55_c01264{left:116.480000pt;}
.x28_c01264{left:122.880000pt;}
.x52_c01264{left:124.800000pt;}
.x4c_c01264{left:132.480000pt;}
.x47_c01264{left:133.760000pt;}
.x3a_c01264{left:142.080000pt;}
.x4f_c01264{left:143.360000pt;}
.x4_c01264{left:151.680000pt;}
.x2f_c01264{left:152.960000pt;}
.xe_c01264{left:161.280000pt;}
.x35_c01264{left:168.960000pt;}
.x29_c01264{left:170.240000pt;}
.x5b_c01264{left:172.160000pt;}
.x5_c01264{left:179.200000pt;}
.x3f_c01264{left:181.120000pt;}
.x17_c01264{left:189.440000pt;}
.x2a_c01264{left:199.680000pt;}
.x45_c01264{left:207.360000pt;}
.x3b_c01264{left:208.640000pt;}
.xf_c01264{left:217.600000pt;}
.x58_c01264{left:218.880000pt;}
.x30_c01264{left:227.840000pt;}
.x18_c01264{left:237.440000pt;}
.x2b_c01264{left:245.760000pt;}
.x36_c01264{left:247.680000pt;}
.x10_c01264{left:256.000000pt;}
.x25_c01264{left:264.960000pt;}
.x20_c01264{left:266.880000pt;}
.x6_c01264{left:274.560000pt;}
.x50_c01264{left:276.480000pt;}
.x37_c01264{left:284.800000pt;}
.x56_c01264{left:286.080000pt;}
.x7_c01264{left:304.640000pt;}
.x3c_c01264{left:314.240000pt;}
.x44_c01264{left:324.480000pt;}
.x8_c01264{left:332.800000pt;}
.x19_c01264{left:334.080000pt;}
.x40_c01264{left:343.680000pt;}
.x11_c01264{left:352.640000pt;}
.x1a_c01264{left:360.960000pt;}
.x49_c01264{left:362.880000pt;}
.x2c_c01264{left:371.840000pt;}
.x12_c01264{left:381.440000pt;}
.x5c_c01264{left:382.720000pt;}
.x38_c01264{left:391.680000pt;}
.x1b_c01264{left:400.000000pt;}
.x26_c01264{left:401.280000pt;}
.x21_c01264{left:409.600000pt;}
.x9_c01264{left:410.880000pt;}
.x3d_c01264{left:420.480000pt;}
.x27_c01264{left:429.440000pt;}
.x53_c01264{left:430.720000pt;}
.x13_c01264{left:439.040000pt;}
.x46_c01264{left:440.320000pt;}
.xa_c01264{left:449.280000pt;}
.x2d_c01264{left:458.880000pt;}
.x14_c01264{left:468.480000pt;}
.x31_c01264{left:478.080000pt;}
.x5d_c01264{left:480.000000pt;}
.x1d_c01264{left:487.040000pt;}
.x39_c01264{left:488.320000pt;}
.x15_c01264{left:497.280000pt;}
.x4a_c01264{left:498.560000pt;}
.x32_c01264{left:506.880000pt;}
.x41_c01264{left:508.160000pt;}
.xb_c01264{left:517.120000pt;}
.x4b_c01264{left:526.720000pt;}
.x59_c01264{left:528.000000pt;}
.x51_c01264{left:537.600000pt;}
.x16_c01264{left:545.280000pt;}
.x33_c01264{left:546.560000pt;}
.x1c_c01264{left:555.520000pt;}
.x5a_c01264{left:556.800000pt;}
.x3e_c01264{left:565.760000pt;}
.x54_c01264{left:576.640000pt;}
.x1e_c01264{left:584.960000pt;}
.x1_c01264{left:590.080000pt;}
.x22_c01264{left:593.920000pt;}
.x1f_c01264{left:602.880000pt;}
.x34_c01264{left:604.160000pt;}
}





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

.ir_c01265:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01265{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01265;src:url('chunks/assets/font_2fddc4fdd4b2861b2bac236a.woff2')format("woff");}.ff1_c01265{font-family:ff1_c01265;line-height:1.109863;font-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_c01265{transform:matrix(0.106775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106775,0.000000,0.000000,0.250000,0,0);}
.m1_c01265{transform:matrix(0.215825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215825,0.000000,0.000000,0.250000,0,0);}
.m0_c01265{transform:matrix(0.233800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233800,0.000000,0.000000,0.250000,0,0);}
.m56_c01265{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m37_c01265{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m15_c01265{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.md_c01265{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01265{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m58_c01265{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m50_c01265{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m41_c01265{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m32_c01265{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);}
.m36_c01265{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m52_c01265{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m3_c01265{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m11_c01265{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);}
.m34_c01265{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m18_c01265{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m6_c01265{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.me_c01265{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_c01265{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m10_c01265{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m13_c01265{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);}
.m1d_c01265{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m53_c01265{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.ma_c01265{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);}
.m28_c01265{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);}
.m4c_c01265{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_c01265{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m26_c01265{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);}
.m54_c01265{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m30_c01265{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);}
.m23_c01265{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);}
.m7_c01265{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m44_c01265{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01265{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m16_c01265{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);}
.m3d_c01265{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01265{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);}
.m43_c01265{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);}
.m4b_c01265{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m4e_c01265{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01265{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m9_c01265{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.mb_c01265{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);}
.m49_c01265{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01265{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m47_c01265{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);}
.m2a_c01265{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01265{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);}
.m5b_c01265{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01265{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m48_c01265{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m25_c01265{transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01265{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m31_c01265{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);}
.m4f_c01265{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m14_c01265{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m42_c01265{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m33_c01265{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m35_c01265{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);}
.mc_c01265{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m45_c01265{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m5_c01265{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);}
.m40_c01265{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m4a_c01265{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m29_c01265{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m57_c01265{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m38_c01265{transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01265{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m4_c01265{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m19_c01265{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m21_c01265{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01265{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);}
.m5a_c01265{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);}
.m17_c01265{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);}
.m12_c01265{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01265{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m55_c01265{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m8_c01265{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m27_c01265{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m46_c01265{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);}
.mf_c01265{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);}
.m4d_c01265{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01265{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);}
.m51_c01265{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m20_c01265{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m39_c01265{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01265{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m59_c01265{transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01265{transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);}
.m24_c01265{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.v0_c01265{vertical-align:0.000000px;}
.ls0_c01265{letter-spacing:0.000000px;}
.sc__c01265{text-shadow:none;}
.sc0_c01265{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01265{-webkit-text-stroke:0px transparent;}
.sc0_c01265{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01265{word-spacing:0.000000px;}
.fc0_c01265{color:transparent;}
.fsd_c01265{font-size:31.680000px;}
.fs3_c01265{font-size:34.560000px;}
.fsc_c01265{font-size:37.440000px;}
.fs7_c01265{font-size:43.200000px;}
.fs2_c01265{font-size:46.080000px;}
.fs6_c01265{font-size:48.960000px;}
.fs4_c01265{font-size:51.840000px;}
.fsb_c01265{font-size:54.720000px;}
.fs9_c01265{font-size:57.600000px;}
.fs5_c01265{font-size:60.480000px;}
.fs1_c01265{font-size:63.360000px;}
.fsa_c01265{font-size:66.240000px;}
.fs8_c01265{font-size:69.120000px;}
.fs0_c01265{font-size:72.000000px;}
.y0_c01265{bottom:0.000000px;}
.y85_c01265{bottom:68.400000px;}
.y82_c01265{bottom:69.120000px;}
.y81_c01265{bottom:70.560000px;}
.y84_c01265{bottom:71.280000px;}
.y83_c01265{bottom:72.000000px;}
.y7f_c01265{bottom:72.720000px;}
.y80_c01265{bottom:74.160000px;}
.y7e_c01265{bottom:77.760000px;}
.y7d_c01265{bottom:78.480000px;}
.y7c_c01265{bottom:113.040000px;}
.y7b_c01265{bottom:114.480000px;}
.y79_c01265{bottom:115.200000px;}
.y7a_c01265{bottom:115.920000px;}
.y78_c01265{bottom:116.640000px;}
.y77_c01265{bottom:118.800000px;}
.y75_c01265{bottom:166.320000px;}
.y76_c01265{bottom:168.480000px;}
.y74_c01265{bottom:169.200000px;}
.y73_c01265{bottom:169.920000px;}
.y72_c01265{bottom:172.800000px;}
.y71_c01265{bottom:174.240000px;}
.y70_c01265{bottom:175.680000px;}
.y6f_c01265{bottom:176.400000px;}
.y6d_c01265{bottom:208.800000px;}
.y6c_c01265{bottom:210.240000px;}
.y6b_c01265{bottom:211.680000px;}
.y6e_c01265{bottom:212.400000px;}
.y6a_c01265{bottom:213.120000px;}
.y69_c01265{bottom:216.720000px;}
.y67_c01265{bottom:252.720000px;}
.y68_c01265{bottom:254.160000px;}
.y66_c01265{bottom:254.880000px;}
.y65_c01265{bottom:255.600000px;}
.y64_c01265{bottom:257.040000px;}
.y63_c01265{bottom:257.760000px;}
.y62_c01265{bottom:258.480000px;}
.y61_c01265{bottom:261.360000px;}
.y60_c01265{bottom:295.200000px;}
.y5d_c01265{bottom:297.360000px;}
.y5f_c01265{bottom:298.080000px;}
.y5e_c01265{bottom:298.800000px;}
.y5c_c01265{bottom:299.520000px;}
.y59_c01265{bottom:336.960000px;}
.y5b_c01265{bottom:337.680000px;}
.y5a_c01265{bottom:339.840000px;}
.y58_c01265{bottom:340.560000px;}
.y57_c01265{bottom:341.280000px;}
.y55_c01265{bottom:342.000000px;}
.y56_c01265{bottom:343.440000px;}
.y54_c01265{bottom:345.600000px;}
.y51_c01265{bottom:381.600000px;}
.y52_c01265{bottom:383.040000px;}
.y53_c01265{bottom:383.760000px;}
.y4f_c01265{bottom:385.200000px;}
.y50_c01265{bottom:385.920000px;}
.y4e_c01265{bottom:437.040000px;}
.y4d_c01265{bottom:437.760000px;}
.y4c_c01265{bottom:440.640000px;}
.y4a_c01265{bottom:477.360000px;}
.y48_c01265{bottom:478.800000px;}
.y49_c01265{bottom:479.520000px;}
.y4b_c01265{bottom:480.240000px;}
.y45_c01265{bottom:480.960000px;}
.y47_c01265{bottom:481.680000px;}
.y46_c01265{bottom:483.120000px;}
.y44_c01265{bottom:520.560000px;}
.y43_c01265{bottom:523.440000px;}
.y42_c01265{bottom:524.160000px;}
.y41_c01265{bottom:524.880000px;}
.y40_c01265{bottom:526.320000px;}
.y3f_c01265{bottom:563.760000px;}
.y3c_c01265{bottom:565.200000px;}
.y3e_c01265{bottom:565.920000px;}
.y3d_c01265{bottom:566.640000px;}
.y3b_c01265{bottom:568.080000px;}
.y39_c01265{bottom:606.960000px;}
.y38_c01265{bottom:609.840000px;}
.y3a_c01265{bottom:610.560000px;}
.y36_c01265{bottom:648.720000px;}
.y37_c01265{bottom:650.160000px;}
.y32_c01265{bottom:650.880000px;}
.y34_c01265{bottom:652.320000px;}
.y33_c01265{bottom:653.040000px;}
.y35_c01265{bottom:653.760000px;}
.y30_c01265{bottom:692.640000px;}
.y2f_c01265{bottom:695.520000px;}
.y31_c01265{bottom:696.240000px;}
.y2d_c01265{bottom:735.840000px;}
.y2e_c01265{bottom:736.560000px;}
.y2b_c01265{bottom:737.280000px;}
.y2a_c01265{bottom:738.000000px;}
.y2c_c01265{bottom:738.720000px;}
.y28_c01265{bottom:778.320000px;}
.y26_c01265{bottom:780.480000px;}
.y27_c01265{bottom:781.200000px;}
.y29_c01265{bottom:781.920000px;}
.y21_c01265{bottom:820.800000px;}
.y24_c01265{bottom:821.520000px;}
.y20_c01265{bottom:822.240000px;}
.y22_c01265{bottom:823.680000px;}
.y23_c01265{bottom:824.400000px;}
.y25_c01265{bottom:825.120000px;}
.y18_c01265{bottom:861.840000px;}
.y1a_c01265{bottom:863.280000px;}
.y1f_c01265{bottom:864.000000px;}
.y1d_c01265{bottom:864.720000px;}
.y19_c01265{bottom:865.440000px;}
.y1c_c01265{bottom:866.160000px;}
.y1b_c01265{bottom:866.880000px;}
.y1e_c01265{bottom:867.600000px;}
.y11_c01265{bottom:904.320000px;}
.y14_c01265{bottom:906.480000px;}
.y17_c01265{bottom:907.200000px;}
.y12_c01265{bottom:907.920000px;}
.y13_c01265{bottom:908.640000px;}
.y15_c01265{bottom:909.360000px;}
.y16_c01265{bottom:910.080000px;}
.yd_c01265{bottom:948.960000px;}
.y10_c01265{bottom:949.680000px;}
.yc_c01265{bottom:951.840000px;}
.ye_c01265{bottom:952.560000px;}
.yf_c01265{bottom:953.280000px;}
.y9_c01265{bottom:999.360000px;}
.ya_c01265{bottom:1002.960000px;}
.yb_c01265{bottom:1005.840000px;}
.y3_c01265{bottom:1044.720000px;}
.y4_c01265{bottom:1045.440000px;}
.y6_c01265{bottom:1046.160000px;}
.y5_c01265{bottom:1046.880000px;}
.y8_c01265{bottom:1047.600000px;}
.y7_c01265{bottom:1049.760000px;}
.y1_c01265{bottom:1099.440000px;}
.y2_c01265{bottom:1101.600000px;}
.hf_c01265{height:28.508906px;}
.h5_c01265{height:31.100625px;}
.he_c01265{height:33.692344px;}
.h9_c01265{height:38.875781px;}
.h4_c01265{height:41.467500px;}
.h8_c01265{height:44.059219px;}
.h6_c01265{height:46.650937px;}
.hd_c01265{height:49.242656px;}
.hb_c01265{height:51.834375px;}
.h7_c01265{height:54.426094px;}
.h3_c01265{height:57.017812px;}
.hc_c01265{height:59.609531px;}
.ha_c01265{height:62.201250px;}
.h2_c01265{height:64.792969px;}
.h1_c01265{height:1144.500000px;}
.h0_c01265{height:1144.800000px;}
.w1_c01265{width:771.000000px;}
.w0_c01265{width:771.120000px;}
.x0_c01265{left:0.000000px;}
.x4_c01265{left:63.360000px;}
.x31_c01265{left:64.800000px;}
.x44_c01265{left:66.240000px;}
.x5_c01265{left:91.440000px;}
.x23_c01265{left:92.880000px;}
.x45_c01265{left:94.320000px;}
.x1c_c01265{left:102.240000px;}
.x39_c01265{left:113.040000px;}
.x6_c01265{left:120.960000px;}
.x17_c01265{left:123.120000px;}
.x1d_c01265{left:132.480000px;}
.x41_c01265{left:133.920000px;}
.x32_c01265{left:144.000000px;}
.x18_c01265{left:153.360000px;}
.x46_c01265{left:155.520000px;}
.x10_c01265{left:164.160000px;}
.x1e_c01265{left:174.960000px;}
.x49_c01265{left:180.000000px;}
.x7_c01265{left:185.760000px;}
.x24_c01265{left:196.560000px;}
.x11_c01265{left:205.920000px;}
.x19_c01265{left:217.440000px;}
.x3a_c01265{left:228.960000px;}
.x33_c01265{left:239.040000px;}
.x28_c01265{left:248.400000px;}
.x25_c01265{left:250.560000px;}
.x1f_c01265{left:260.640000px;}
.x34_c01265{left:270.720000px;}
.x3e_c01265{left:281.520000px;}
.x3b_c01265{left:291.600000px;}
.x20_c01265{left:293.040000px;}
.x8_c01265{left:314.640000px;}
.xe_c01265{left:326.160000px;}
.x2a_c01265{left:335.520000px;}
.x9_c01265{left:346.320000px;}
.x4a_c01265{left:347.760000px;}
.xf_c01265{left:357.840000px;}
.x1a_c01265{left:369.360000px;}
.xa_c01265{left:380.160000px;}
.x12_c01265{left:390.240000px;}
.x1b_c01265{left:401.040000px;}
.x4d_c01265{left:412.560000px;}
.x21_c01265{left:423.360000px;}
.x4b_c01265{left:433.440000px;}
.x47_c01265{left:439.920000px;}
.x3f_c01265{left:444.960000px;}
.x26_c01265{left:455.760000px;}
.x13_c01265{left:466.560000px;}
.x36_c01265{left:477.360000px;}
.xb_c01265{left:488.160000px;}
.x2d_c01265{left:489.600000px;}
.x3c_c01265{left:498.960000px;}
.x14_c01265{left:509.760000px;}
.xc_c01265{left:521.280000px;}
.x22_c01265{left:531.360000px;}
.x2e_c01265{left:542.160000px;}
.x4f_c01265{left:543.600000px;}
.x35_c01265{left:552.960000px;}
.x4c_c01265{left:565.200000px;}
.x2c_c01265{left:574.560000px;}
.x15_c01265{left:576.000000px;}
.x2f_c01265{left:585.360000px;}
.x37_c01265{left:586.800000px;}
.x29_c01265{left:596.880000px;}
.x3d_c01265{left:606.240000px;}
.x40_c01265{left:607.680000px;}
.x2b_c01265{left:609.120000px;}
.x38_c01265{left:619.920000px;}
.xd_c01265{left:629.280000px;}
.x42_c01265{left:630.720000px;}
.x30_c01265{left:640.080000px;}
.x4e_c01265{left:641.520000px;}
.x43_c01265{left:645.840000px;}
.x27_c01265{left:650.880000px;}
.x48_c01265{left:652.320000px;}
.x1_c01265{left:668.880000px;}
.x16_c01265{left:672.480000px;}
.x2_c01265{left:687.600000px;}
.x3_c01265{left:705.600000px;}
@media print{
.v0_c01265{vertical-align:0.000000pt;}
.ls0_c01265{letter-spacing:0.000000pt;}
.ws0_c01265{word-spacing:0.000000pt;}
.fsd_c01265{font-size:28.160000pt;}
.fs3_c01265{font-size:30.720000pt;}
.fsc_c01265{font-size:33.280000pt;}
.fs7_c01265{font-size:38.400000pt;}
.fs2_c01265{font-size:40.960000pt;}
.fs6_c01265{font-size:43.520000pt;}
.fs4_c01265{font-size:46.080000pt;}
.fsb_c01265{font-size:48.640000pt;}
.fs9_c01265{font-size:51.200000pt;}
.fs5_c01265{font-size:53.760000pt;}
.fs1_c01265{font-size:56.320000pt;}
.fsa_c01265{font-size:58.880000pt;}
.fs8_c01265{font-size:61.440000pt;}
.fs0_c01265{font-size:64.000000pt;}
.y0_c01265{bottom:0.000000pt;}
.y85_c01265{bottom:60.800000pt;}
.y82_c01265{bottom:61.440000pt;}
.y81_c01265{bottom:62.720000pt;}
.y84_c01265{bottom:63.360000pt;}
.y83_c01265{bottom:64.000000pt;}
.y7f_c01265{bottom:64.640000pt;}
.y80_c01265{bottom:65.920000pt;}
.y7e_c01265{bottom:69.120000pt;}
.y7d_c01265{bottom:69.760000pt;}
.y7c_c01265{bottom:100.480000pt;}
.y7b_c01265{bottom:101.760000pt;}
.y79_c01265{bottom:102.400000pt;}
.y7a_c01265{bottom:103.040000pt;}
.y78_c01265{bottom:103.680000pt;}
.y77_c01265{bottom:105.600000pt;}
.y75_c01265{bottom:147.840000pt;}
.y76_c01265{bottom:149.760000pt;}
.y74_c01265{bottom:150.400000pt;}
.y73_c01265{bottom:151.040000pt;}
.y72_c01265{bottom:153.600000pt;}
.y71_c01265{bottom:154.880000pt;}
.y70_c01265{bottom:156.160000pt;}
.y6f_c01265{bottom:156.800000pt;}
.y6d_c01265{bottom:185.600000pt;}
.y6c_c01265{bottom:186.880000pt;}
.y6b_c01265{bottom:188.160000pt;}
.y6e_c01265{bottom:188.800000pt;}
.y6a_c01265{bottom:189.440000pt;}
.y69_c01265{bottom:192.640000pt;}
.y67_c01265{bottom:224.640000pt;}
.y68_c01265{bottom:225.920000pt;}
.y66_c01265{bottom:226.560000pt;}
.y65_c01265{bottom:227.200000pt;}
.y64_c01265{bottom:228.480000pt;}
.y63_c01265{bottom:229.120000pt;}
.y62_c01265{bottom:229.760000pt;}
.y61_c01265{bottom:232.320000pt;}
.y60_c01265{bottom:262.400000pt;}
.y5d_c01265{bottom:264.320000pt;}
.y5f_c01265{bottom:264.960000pt;}
.y5e_c01265{bottom:265.600000pt;}
.y5c_c01265{bottom:266.240000pt;}
.y59_c01265{bottom:299.520000pt;}
.y5b_c01265{bottom:300.160000pt;}
.y5a_c01265{bottom:302.080000pt;}
.y58_c01265{bottom:302.720000pt;}
.y57_c01265{bottom:303.360000pt;}
.y55_c01265{bottom:304.000000pt;}
.y56_c01265{bottom:305.280000pt;}
.y54_c01265{bottom:307.200000pt;}
.y51_c01265{bottom:339.200000pt;}
.y52_c01265{bottom:340.480000pt;}
.y53_c01265{bottom:341.120000pt;}
.y4f_c01265{bottom:342.400000pt;}
.y50_c01265{bottom:343.040000pt;}
.y4e_c01265{bottom:388.480000pt;}
.y4d_c01265{bottom:389.120000pt;}
.y4c_c01265{bottom:391.680000pt;}
.y4a_c01265{bottom:424.320000pt;}
.y48_c01265{bottom:425.600000pt;}
.y49_c01265{bottom:426.240000pt;}
.y4b_c01265{bottom:426.880000pt;}
.y45_c01265{bottom:427.520000pt;}
.y47_c01265{bottom:428.160000pt;}
.y46_c01265{bottom:429.440000pt;}
.y44_c01265{bottom:462.720000pt;}
.y43_c01265{bottom:465.280000pt;}
.y42_c01265{bottom:465.920000pt;}
.y41_c01265{bottom:466.560000pt;}
.y40_c01265{bottom:467.840000pt;}
.y3f_c01265{bottom:501.120000pt;}
.y3c_c01265{bottom:502.400000pt;}
.y3e_c01265{bottom:503.040000pt;}
.y3d_c01265{bottom:503.680000pt;}
.y3b_c01265{bottom:504.960000pt;}
.y39_c01265{bottom:539.520000pt;}
.y38_c01265{bottom:542.080000pt;}
.y3a_c01265{bottom:542.720000pt;}
.y36_c01265{bottom:576.640000pt;}
.y37_c01265{bottom:577.920000pt;}
.y32_c01265{bottom:578.560000pt;}
.y34_c01265{bottom:579.840000pt;}
.y33_c01265{bottom:580.480000pt;}
.y35_c01265{bottom:581.120000pt;}
.y30_c01265{bottom:615.680000pt;}
.y2f_c01265{bottom:618.240000pt;}
.y31_c01265{bottom:618.880000pt;}
.y2d_c01265{bottom:654.080000pt;}
.y2e_c01265{bottom:654.720000pt;}
.y2b_c01265{bottom:655.360000pt;}
.y2a_c01265{bottom:656.000000pt;}
.y2c_c01265{bottom:656.640000pt;}
.y28_c01265{bottom:691.840000pt;}
.y26_c01265{bottom:693.760000pt;}
.y27_c01265{bottom:694.400000pt;}
.y29_c01265{bottom:695.040000pt;}
.y21_c01265{bottom:729.600000pt;}
.y24_c01265{bottom:730.240000pt;}
.y20_c01265{bottom:730.880000pt;}
.y22_c01265{bottom:732.160000pt;}
.y23_c01265{bottom:732.800000pt;}
.y25_c01265{bottom:733.440000pt;}
.y18_c01265{bottom:766.080000pt;}
.y1a_c01265{bottom:767.360000pt;}
.y1f_c01265{bottom:768.000000pt;}
.y1d_c01265{bottom:768.640000pt;}
.y19_c01265{bottom:769.280000pt;}
.y1c_c01265{bottom:769.920000pt;}
.y1b_c01265{bottom:770.560000pt;}
.y1e_c01265{bottom:771.200000pt;}
.y11_c01265{bottom:803.840000pt;}
.y14_c01265{bottom:805.760000pt;}
.y17_c01265{bottom:806.400000pt;}
.y12_c01265{bottom:807.040000pt;}
.y13_c01265{bottom:807.680000pt;}
.y15_c01265{bottom:808.320000pt;}
.y16_c01265{bottom:808.960000pt;}
.yd_c01265{bottom:843.520000pt;}
.y10_c01265{bottom:844.160000pt;}
.yc_c01265{bottom:846.080000pt;}
.ye_c01265{bottom:846.720000pt;}
.yf_c01265{bottom:847.360000pt;}
.y9_c01265{bottom:888.320000pt;}
.ya_c01265{bottom:891.520000pt;}
.yb_c01265{bottom:894.080000pt;}
.y3_c01265{bottom:928.640000pt;}
.y4_c01265{bottom:929.280000pt;}
.y6_c01265{bottom:929.920000pt;}
.y5_c01265{bottom:930.560000pt;}
.y8_c01265{bottom:931.200000pt;}
.y7_c01265{bottom:933.120000pt;}
.y1_c01265{bottom:977.280000pt;}
.y2_c01265{bottom:979.200000pt;}
.hf_c01265{height:25.341250pt;}
.h5_c01265{height:27.645000pt;}
.he_c01265{height:29.948750pt;}
.h9_c01265{height:34.556250pt;}
.h4_c01265{height:36.860000pt;}
.h8_c01265{height:39.163750pt;}
.h6_c01265{height:41.467500pt;}
.hd_c01265{height:43.771250pt;}
.hb_c01265{height:46.075000pt;}
.h7_c01265{height:48.378750pt;}
.h3_c01265{height:50.682500pt;}
.hc_c01265{height:52.986250pt;}
.ha_c01265{height:55.290000pt;}
.h2_c01265{height:57.593750pt;}
.h1_c01265{height:1017.333333pt;}
.h0_c01265{height:1017.600000pt;}
.w1_c01265{width:685.333333pt;}
.w0_c01265{width:685.440000pt;}
.x0_c01265{left:0.000000pt;}
.x4_c01265{left:56.320000pt;}
.x31_c01265{left:57.600000pt;}
.x44_c01265{left:58.880000pt;}
.x5_c01265{left:81.280000pt;}
.x23_c01265{left:82.560000pt;}
.x45_c01265{left:83.840000pt;}
.x1c_c01265{left:90.880000pt;}
.x39_c01265{left:100.480000pt;}
.x6_c01265{left:107.520000pt;}
.x17_c01265{left:109.440000pt;}
.x1d_c01265{left:117.760000pt;}
.x41_c01265{left:119.040000pt;}
.x32_c01265{left:128.000000pt;}
.x18_c01265{left:136.320000pt;}
.x46_c01265{left:138.240000pt;}
.x10_c01265{left:145.920000pt;}
.x1e_c01265{left:155.520000pt;}
.x49_c01265{left:160.000000pt;}
.x7_c01265{left:165.120000pt;}
.x24_c01265{left:174.720000pt;}
.x11_c01265{left:183.040000pt;}
.x19_c01265{left:193.280000pt;}
.x3a_c01265{left:203.520000pt;}
.x33_c01265{left:212.480000pt;}
.x28_c01265{left:220.800000pt;}
.x25_c01265{left:222.720000pt;}
.x1f_c01265{left:231.680000pt;}
.x34_c01265{left:240.640000pt;}
.x3e_c01265{left:250.240000pt;}
.x3b_c01265{left:259.200000pt;}
.x20_c01265{left:260.480000pt;}
.x8_c01265{left:279.680000pt;}
.xe_c01265{left:289.920000pt;}
.x2a_c01265{left:298.240000pt;}
.x9_c01265{left:307.840000pt;}
.x4a_c01265{left:309.120000pt;}
.xf_c01265{left:318.080000pt;}
.x1a_c01265{left:328.320000pt;}
.xa_c01265{left:337.920000pt;}
.x12_c01265{left:346.880000pt;}
.x1b_c01265{left:356.480000pt;}
.x4d_c01265{left:366.720000pt;}
.x21_c01265{left:376.320000pt;}
.x4b_c01265{left:385.280000pt;}
.x47_c01265{left:391.040000pt;}
.x3f_c01265{left:395.520000pt;}
.x26_c01265{left:405.120000pt;}
.x13_c01265{left:414.720000pt;}
.x36_c01265{left:424.320000pt;}
.xb_c01265{left:433.920000pt;}
.x2d_c01265{left:435.200000pt;}
.x3c_c01265{left:443.520000pt;}
.x14_c01265{left:453.120000pt;}
.xc_c01265{left:463.360000pt;}
.x22_c01265{left:472.320000pt;}
.x2e_c01265{left:481.920000pt;}
.x4f_c01265{left:483.200000pt;}
.x35_c01265{left:491.520000pt;}
.x4c_c01265{left:502.400000pt;}
.x2c_c01265{left:510.720000pt;}
.x15_c01265{left:512.000000pt;}
.x2f_c01265{left:520.320000pt;}
.x37_c01265{left:521.600000pt;}
.x29_c01265{left:530.560000pt;}
.x3d_c01265{left:538.880000pt;}
.x40_c01265{left:540.160000pt;}
.x2b_c01265{left:541.440000pt;}
.x38_c01265{left:551.040000pt;}
.xd_c01265{left:559.360000pt;}
.x42_c01265{left:560.640000pt;}
.x30_c01265{left:568.960000pt;}
.x4e_c01265{left:570.240000pt;}
.x43_c01265{left:574.080000pt;}
.x27_c01265{left:578.560000pt;}
.x48_c01265{left:579.840000pt;}
.x1_c01265{left:594.560000pt;}
.x16_c01265{left:597.760000pt;}
.x2_c01265{left:611.200000pt;}
.x3_c01265{left:627.200000pt;}
}





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

.ir_c01266:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01266{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01266;src:url('chunks/assets/font_99065a8d2b4e7692ccdf0e19.woff2')format("woff");}.ff1_c01266{font-family:ff1_c01266;line-height:1.109863;font-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_c01266{transform:matrix(0.177800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177800,0.000000,0.000000,0.250000,0,0);}
.m47_c01266{transform:matrix(0.240200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240200,0.000000,0.000000,0.250000,0,0);}
.m51_c01266{transform:matrix(0.248225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248225,0.000000,0.000000,0.250000,0,0);}
.m61_c01266{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);}
.m4b_c01266{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);}
.m54_c01266{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m12_c01266{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);}
.m3d_c01266{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m22_c01266{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);}
.m5c_c01266{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mf_c01266{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);}
.m1e_c01266{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);}
.m42_c01266{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m14_c01266{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m48_c01266{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01266{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01266{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.md_c01266{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01266{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m57_c01266{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01266{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01266{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);}
.m5d_c01266{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m6_c01266{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.ma_c01266{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);}
.m59_c01266{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m56_c01266{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);}
.m4a_c01266{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01266{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);}
.m20_c01266{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m23_c01266{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);}
.m46_c01266{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1_c01266{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01266{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m2_c01266{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m0_c01266{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);}
.m41_c01266{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);}
.m37_c01266{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.me_c01266{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);}
.m29_c01266{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01266{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);}
.m7_c01266{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);}
.m58_c01266{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);}
.m5_c01266{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m44_c01266{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m35_c01266{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m18_c01266{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);}
.m49_c01266{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);}
.m60_c01266{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m52_c01266{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);}
.m2c_c01266{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01266{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01266{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01266{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m3_c01266{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01266{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m38_c01266{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);}
.m4f_c01266{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m40_c01266{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);}
.m34_c01266{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m31_c01266{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01266{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m17_c01266{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);}
.m4e_c01266{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m50_c01266{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m21_c01266{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m32_c01266{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);}
.m45_c01266{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m5e_c01266{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m4_c01266{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m10_c01266{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01266{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m26_c01266{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);}
.m11_c01266{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01266{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m19_c01266{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);}
.m3b_c01266{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m5a_c01266{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m16_c01266{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m43_c01266{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);}
.m55_c01266{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m25_c01266{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m15_c01266{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m9_c01266{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m4d_c01266{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);}
.m5f_c01266{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m27_c01266{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);}
.m33_c01266{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m53_c01266{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m28_c01266{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m39_c01266{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m36_c01266{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m8_c01266{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m30_c01266{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01266{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);}
.m5b_c01266{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);}
.m13_c01266{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.mc_c01266{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.v0_c01266{vertical-align:0.000000px;}
.ls0_c01266{letter-spacing:0.000000px;}
.sc__c01266{text-shadow:none;}
.sc0_c01266{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01266{-webkit-text-stroke:0px transparent;}
.sc0_c01266{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01266{word-spacing:0.000000px;}
.fc0_c01266{color:transparent;}
.fs6_c01266{font-size:34.560000px;}
.fsa_c01266{font-size:37.440000px;}
.fsc_c01266{font-size:43.200000px;}
.fs7_c01266{font-size:46.080000px;}
.fs2_c01266{font-size:48.960000px;}
.fs4_c01266{font-size:51.840000px;}
.fs3_c01266{font-size:54.720000px;}
.fs1_c01266{font-size:57.600000px;}
.fs5_c01266{font-size:60.480000px;}
.fsb_c01266{font-size:63.360000px;}
.fs8_c01266{font-size:66.240000px;}
.fs9_c01266{font-size:69.120000px;}
.fs0_c01266{font-size:72.000000px;}
.fsd_c01266{font-size:89.280000px;}
.y0_c01266{bottom:0.000000px;}
.y7b_c01266{bottom:57.600000px;}
.y78_c01266{bottom:58.320000px;}
.y7c_c01266{bottom:59.760000px;}
.y79_c01266{bottom:61.200000px;}
.y7a_c01266{bottom:61.920000px;}
.y77_c01266{bottom:69.840000px;}
.y75_c01266{bottom:101.520000px;}
.y76_c01266{bottom:102.960000px;}
.y74_c01266{bottom:103.680000px;}
.y73_c01266{bottom:104.400000px;}
.y72_c01266{bottom:105.840000px;}
.y70_c01266{bottom:107.280000px;}
.y71_c01266{bottom:108.720000px;}
.y6f_c01266{bottom:110.880000px;}
.y6e_c01266{bottom:143.280000px;}
.y6c_c01266{bottom:144.720000px;}
.y6d_c01266{bottom:146.880000px;}
.y6b_c01266{bottom:147.600000px;}
.y69_c01266{bottom:149.040000px;}
.y6a_c01266{bottom:149.760000px;}
.y68_c01266{bottom:153.360000px;}
.y64_c01266{bottom:187.200000px;}
.y67_c01266{bottom:188.640000px;}
.y66_c01266{bottom:189.360000px;}
.y65_c01266{bottom:190.080000px;}
.y63_c01266{bottom:190.800000px;}
.y62_c01266{bottom:191.520000px;}
.y61_c01266{bottom:192.240000px;}
.y60_c01266{bottom:192.960000px;}
.y5f_c01266{bottom:193.680000px;}
.y5e_c01266{bottom:195.840000px;}
.y5b_c01266{bottom:230.400000px;}
.y5d_c01266{bottom:232.560000px;}
.y5c_c01266{bottom:233.280000px;}
.y5a_c01266{bottom:234.000000px;}
.y59_c01266{bottom:234.720000px;}
.y58_c01266{bottom:237.600000px;}
.y57_c01266{bottom:273.600000px;}
.y56_c01266{bottom:275.760000px;}
.y55_c01266{bottom:277.200000px;}
.y54_c01266{bottom:277.920000px;}
.y4f_c01266{bottom:326.880000px;}
.y52_c01266{bottom:327.600000px;}
.y53_c01266{bottom:329.040000px;}
.y51_c01266{bottom:329.760000px;}
.y50_c01266{bottom:330.480000px;}
.y4e_c01266{bottom:331.200000px;}
.y4d_c01266{bottom:333.360000px;}
.y4c_c01266{bottom:334.800000px;}
.y4a_c01266{bottom:370.080000px;}
.y4b_c01266{bottom:370.800000px;}
.y49_c01266{bottom:372.960000px;}
.y46_c01266{bottom:373.680000px;}
.y48_c01266{bottom:374.400000px;}
.y47_c01266{bottom:375.120000px;}
.y45_c01266{bottom:377.280000px;}
.y44_c01266{bottom:414.000000px;}
.y43_c01266{bottom:414.720000px;}
.y41_c01266{bottom:415.440000px;}
.y42_c01266{bottom:416.160000px;}
.y40_c01266{bottom:416.880000px;}
.y3f_c01266{bottom:417.600000px;}
.y3e_c01266{bottom:467.280000px;}
.y3c_c01266{bottom:468.000000px;}
.y3d_c01266{bottom:469.440000px;}
.y3a_c01266{bottom:470.160000px;}
.y3b_c01266{bottom:471.600000px;}
.y39_c01266{bottom:509.760000px;}
.y38_c01266{bottom:511.200000px;}
.y35_c01266{bottom:512.640000px;}
.y37_c01266{bottom:513.360000px;}
.y36_c01266{bottom:514.080000px;}
.y34_c01266{bottom:552.960000px;}
.y32_c01266{bottom:554.400000px;}
.y33_c01266{bottom:555.840000px;}
.y30_c01266{bottom:596.160000px;}
.y2f_c01266{bottom:598.320000px;}
.y31_c01266{bottom:599.040000px;}
.y2e_c01266{bottom:649.440000px;}
.y2c_c01266{bottom:651.600000px;}
.y2d_c01266{bottom:652.320000px;}
.y29_c01266{bottom:691.920000px;}
.y2a_c01266{bottom:692.640000px;}
.y27_c01266{bottom:694.080000px;}
.y28_c01266{bottom:694.800000px;}
.y2b_c01266{bottom:695.520000px;}
.y24_c01266{bottom:734.400000px;}
.y25_c01266{bottom:735.120000px;}
.y22_c01266{bottom:736.560000px;}
.y23_c01266{bottom:737.280000px;}
.y26_c01266{bottom:738.000000px;}
.y20_c01266{bottom:778.320000px;}
.y1e_c01266{bottom:779.040000px;}
.y1f_c01266{bottom:780.480000px;}
.y21_c01266{bottom:781.200000px;}
.y17_c01266{bottom:819.360000px;}
.y1c_c01266{bottom:820.800000px;}
.y18_c01266{bottom:821.520000px;}
.y19_c01266{bottom:822.240000px;}
.y1a_c01266{bottom:822.960000px;}
.y1b_c01266{bottom:823.680000px;}
.y1d_c01266{bottom:824.400000px;}
.y15_c01266{bottom:864.000000px;}
.y14_c01266{bottom:864.720000px;}
.y13_c01266{bottom:866.160000px;}
.y16_c01266{bottom:866.880000px;}
.y12_c01266{bottom:915.840000px;}
.y11_c01266{bottom:916.560000px;}
.yb_c01266{bottom:957.600000px;}
.yd_c01266{bottom:959.760000px;}
.yc_c01266{bottom:961.920000px;}
.ye_c01266{bottom:963.360000px;}
.yf_c01266{bottom:964.080000px;}
.y10_c01266{bottom:964.800000px;}
.y5_c01266{bottom:1002.240000px;}
.y6_c01266{bottom:1003.680000px;}
.y7_c01266{bottom:1004.400000px;}
.y9_c01266{bottom:1005.120000px;}
.y8_c01266{bottom:1006.560000px;}
.ya_c01266{bottom:1007.280000px;}
.y2_c01266{bottom:1044.720000px;}
.y3_c01266{bottom:1048.320000px;}
.y4_c01266{bottom:1050.480000px;}
.y1_c01266{bottom:1095.120000px;}
.h8_c01266{height:31.100625px;}
.hc_c01266{height:33.692344px;}
.he_c01266{height:38.875781px;}
.h9_c01266{height:41.467500px;}
.h4_c01266{height:44.059219px;}
.h6_c01266{height:46.650937px;}
.h5_c01266{height:49.242656px;}
.h3_c01266{height:51.834375px;}
.h7_c01266{height:54.426094px;}
.hd_c01266{height:57.017812px;}
.ha_c01266{height:59.609531px;}
.hb_c01266{height:62.201250px;}
.h2_c01266{height:64.792969px;}
.hf_c01266{height:80.343281px;}
.h1_c01266{height:1145.250000px;}
.h0_c01266{height:1145.520000px;}
.w1_c01266{width:771.750000px;}
.w0_c01266{width:771.840000px;}
.x0_c01266{left:0.000000px;}
.x2_c01266{left:66.240000px;}
.x36_c01266{left:68.400000px;}
.x56_c01266{left:69.840000px;}
.x1f_c01266{left:86.400000px;}
.xa_c01266{left:95.040000px;}
.x3a_c01266{left:96.480000px;}
.x44_c01266{left:97.920000px;}
.x60_c01266{left:99.360000px;}
.x2c_c01266{left:105.840000px;}
.x57_c01266{left:108.000000px;}
.x41_c01266{left:115.920000px;}
.x59_c01266{left:117.360000px;}
.x20_c01266{left:125.280000px;}
.x3b_c01266{left:126.720000px;}
.x51_c01266{left:128.160000px;}
.x2d_c01266{left:136.080000px;}
.x3_c01266{left:145.440000px;}
.x5a_c01266{left:149.040000px;}
.xb_c01266{left:156.240000px;}
.x2f_c01266{left:157.680000px;}
.x1b_c01266{left:167.040000px;}
.x2e_c01266{left:168.480000px;}
.x5b_c01266{left:180.720000px;}
.x4_c01266{left:187.200000px;}
.xc_c01266{left:188.640000px;}
.x48_c01266{left:190.080000px;}
.x13_c01266{left:198.720000px;}
.x52_c01266{left:200.880000px;}
.x33_c01266{left:210.240000px;}
.x4f_c01266{left:211.680000px;}
.x49_c01266{left:221.760000px;}
.x25_c01266{left:231.120000px;}
.x45_c01266{left:232.560000px;}
.x14_c01266{left:241.920000px;}
.x4c_c01266{left:243.360000px;}
.x21_c01266{left:252.720000px;}
.x53_c01266{left:254.160000px;}
.x26_c01266{left:264.240000px;}
.x15_c01266{left:274.320000px;}
.x4d_c01266{left:275.760000px;}
.x22_c01266{left:285.840000px;}
.xd_c01266{left:295.200000px;}
.x5c_c01266{left:297.360000px;}
.x42_c01266{left:307.440000px;}
.x16_c01266{left:317.520000px;}
.x3c_c01266{left:330.480000px;}
.xe_c01266{left:339.840000px;}
.x4a_c01266{left:341.280000px;}
.x1c_c01266{left:350.640000px;}
.x30_c01266{left:361.440000px;}
.xf_c01266{left:371.520000px;}
.x43_c01266{left:373.680000px;}
.x5_c01266{left:382.320000px;}
.x37_c01266{left:384.480000px;}
.x17_c01266{left:391.680000px;}
.x2a_c01266{left:393.840000px;}
.x58_c01266{left:395.280000px;}
.x23_c01266{left:403.920000px;}
.x31_c01266{left:406.080000px;}
.x46_c01266{left:416.160000px;}
.x6_c01266{left:426.240000px;}
.x4e_c01266{left:427.680000px;}
.x54_c01266{left:437.760000px;}
.x34_c01266{left:439.920000px;}
.x3d_c01266{left:450.000000px;}
.x1d_c01266{left:457.920000px;}
.x18_c01266{left:459.360000px;}
.x5d_c01266{left:460.800000px;}
.x7_c01266{left:468.720000px;}
.x19_c01266{left:480.240000px;}
.x27_c01266{left:491.040000px;}
.x4b_c01266{left:492.480000px;}
.x10_c01266{left:493.920000px;}
.x38_c01266{left:501.840000px;}
.x47_c01266{left:503.280000px;}
.x24_c01266{left:513.360000px;}
.x32_c01266{left:525.600000px;}
.x50_c01266{left:535.680000px;}
.x28_c01266{left:545.760000px;}
.x55_c01266{left:547.200000px;}
.x8_c01266{left:555.840000px;}
.x3e_c01266{left:557.280000px;}
.x39_c01266{left:568.080000px;}
.x11_c01266{left:578.880000px;}
.x3f_c01266{left:581.040000px;}
.x1e_c01266{left:589.680000px;}
.x5e_c01266{left:591.120000px;}
.x2b_c01266{left:611.280000px;}
.x40_c01266{left:612.720000px;}
.x1a_c01266{left:622.080000px;}
.x5f_c01266{left:623.520000px;}
.x12_c01266{left:642.960000px;}
.x35_c01266{left:644.400000px;}
.x61_c01266{left:656.640000px;}
.x9_c01266{left:665.280000px;}
.x1_c01266{left:673.200000px;}
.x29_c01266{left:676.800000px;}
@media print{
.v0_c01266{vertical-align:0.000000pt;}
.ls0_c01266{letter-spacing:0.000000pt;}
.ws0_c01266{word-spacing:0.000000pt;}
.fs6_c01266{font-size:30.720000pt;}
.fsa_c01266{font-size:33.280000pt;}
.fsc_c01266{font-size:38.400000pt;}
.fs7_c01266{font-size:40.960000pt;}
.fs2_c01266{font-size:43.520000pt;}
.fs4_c01266{font-size:46.080000pt;}
.fs3_c01266{font-size:48.640000pt;}
.fs1_c01266{font-size:51.200000pt;}
.fs5_c01266{font-size:53.760000pt;}
.fsb_c01266{font-size:56.320000pt;}
.fs8_c01266{font-size:58.880000pt;}
.fs9_c01266{font-size:61.440000pt;}
.fs0_c01266{font-size:64.000000pt;}
.fsd_c01266{font-size:79.360000pt;}
.y0_c01266{bottom:0.000000pt;}
.y7b_c01266{bottom:51.200000pt;}
.y78_c01266{bottom:51.840000pt;}
.y7c_c01266{bottom:53.120000pt;}
.y79_c01266{bottom:54.400000pt;}
.y7a_c01266{bottom:55.040000pt;}
.y77_c01266{bottom:62.080000pt;}
.y75_c01266{bottom:90.240000pt;}
.y76_c01266{bottom:91.520000pt;}
.y74_c01266{bottom:92.160000pt;}
.y73_c01266{bottom:92.800000pt;}
.y72_c01266{bottom:94.080000pt;}
.y70_c01266{bottom:95.360000pt;}
.y71_c01266{bottom:96.640000pt;}
.y6f_c01266{bottom:98.560000pt;}
.y6e_c01266{bottom:127.360000pt;}
.y6c_c01266{bottom:128.640000pt;}
.y6d_c01266{bottom:130.560000pt;}
.y6b_c01266{bottom:131.200000pt;}
.y69_c01266{bottom:132.480000pt;}
.y6a_c01266{bottom:133.120000pt;}
.y68_c01266{bottom:136.320000pt;}
.y64_c01266{bottom:166.400000pt;}
.y67_c01266{bottom:167.680000pt;}
.y66_c01266{bottom:168.320000pt;}
.y65_c01266{bottom:168.960000pt;}
.y63_c01266{bottom:169.600000pt;}
.y62_c01266{bottom:170.240000pt;}
.y61_c01266{bottom:170.880000pt;}
.y60_c01266{bottom:171.520000pt;}
.y5f_c01266{bottom:172.160000pt;}
.y5e_c01266{bottom:174.080000pt;}
.y5b_c01266{bottom:204.800000pt;}
.y5d_c01266{bottom:206.720000pt;}
.y5c_c01266{bottom:207.360000pt;}
.y5a_c01266{bottom:208.000000pt;}
.y59_c01266{bottom:208.640000pt;}
.y58_c01266{bottom:211.200000pt;}
.y57_c01266{bottom:243.200000pt;}
.y56_c01266{bottom:245.120000pt;}
.y55_c01266{bottom:246.400000pt;}
.y54_c01266{bottom:247.040000pt;}
.y4f_c01266{bottom:290.560000pt;}
.y52_c01266{bottom:291.200000pt;}
.y53_c01266{bottom:292.480000pt;}
.y51_c01266{bottom:293.120000pt;}
.y50_c01266{bottom:293.760000pt;}
.y4e_c01266{bottom:294.400000pt;}
.y4d_c01266{bottom:296.320000pt;}
.y4c_c01266{bottom:297.600000pt;}
.y4a_c01266{bottom:328.960000pt;}
.y4b_c01266{bottom:329.600000pt;}
.y49_c01266{bottom:331.520000pt;}
.y46_c01266{bottom:332.160000pt;}
.y48_c01266{bottom:332.800000pt;}
.y47_c01266{bottom:333.440000pt;}
.y45_c01266{bottom:335.360000pt;}
.y44_c01266{bottom:368.000000pt;}
.y43_c01266{bottom:368.640000pt;}
.y41_c01266{bottom:369.280000pt;}
.y42_c01266{bottom:369.920000pt;}
.y40_c01266{bottom:370.560000pt;}
.y3f_c01266{bottom:371.200000pt;}
.y3e_c01266{bottom:415.360000pt;}
.y3c_c01266{bottom:416.000000pt;}
.y3d_c01266{bottom:417.280000pt;}
.y3a_c01266{bottom:417.920000pt;}
.y3b_c01266{bottom:419.200000pt;}
.y39_c01266{bottom:453.120000pt;}
.y38_c01266{bottom:454.400000pt;}
.y35_c01266{bottom:455.680000pt;}
.y37_c01266{bottom:456.320000pt;}
.y36_c01266{bottom:456.960000pt;}
.y34_c01266{bottom:491.520000pt;}
.y32_c01266{bottom:492.800000pt;}
.y33_c01266{bottom:494.080000pt;}
.y30_c01266{bottom:529.920000pt;}
.y2f_c01266{bottom:531.840000pt;}
.y31_c01266{bottom:532.480000pt;}
.y2e_c01266{bottom:577.280000pt;}
.y2c_c01266{bottom:579.200000pt;}
.y2d_c01266{bottom:579.840000pt;}
.y29_c01266{bottom:615.040000pt;}
.y2a_c01266{bottom:615.680000pt;}
.y27_c01266{bottom:616.960000pt;}
.y28_c01266{bottom:617.600000pt;}
.y2b_c01266{bottom:618.240000pt;}
.y24_c01266{bottom:652.800000pt;}
.y25_c01266{bottom:653.440000pt;}
.y22_c01266{bottom:654.720000pt;}
.y23_c01266{bottom:655.360000pt;}
.y26_c01266{bottom:656.000000pt;}
.y20_c01266{bottom:691.840000pt;}
.y1e_c01266{bottom:692.480000pt;}
.y1f_c01266{bottom:693.760000pt;}
.y21_c01266{bottom:694.400000pt;}
.y17_c01266{bottom:728.320000pt;}
.y1c_c01266{bottom:729.600000pt;}
.y18_c01266{bottom:730.240000pt;}
.y19_c01266{bottom:730.880000pt;}
.y1a_c01266{bottom:731.520000pt;}
.y1b_c01266{bottom:732.160000pt;}
.y1d_c01266{bottom:732.800000pt;}
.y15_c01266{bottom:768.000000pt;}
.y14_c01266{bottom:768.640000pt;}
.y13_c01266{bottom:769.920000pt;}
.y16_c01266{bottom:770.560000pt;}
.y12_c01266{bottom:814.080000pt;}
.y11_c01266{bottom:814.720000pt;}
.yb_c01266{bottom:851.200000pt;}
.yd_c01266{bottom:853.120000pt;}
.yc_c01266{bottom:855.040000pt;}
.ye_c01266{bottom:856.320000pt;}
.yf_c01266{bottom:856.960000pt;}
.y10_c01266{bottom:857.600000pt;}
.y5_c01266{bottom:890.880000pt;}
.y6_c01266{bottom:892.160000pt;}
.y7_c01266{bottom:892.800000pt;}
.y9_c01266{bottom:893.440000pt;}
.y8_c01266{bottom:894.720000pt;}
.ya_c01266{bottom:895.360000pt;}
.y2_c01266{bottom:928.640000pt;}
.y3_c01266{bottom:931.840000pt;}
.y4_c01266{bottom:933.760000pt;}
.y1_c01266{bottom:973.440000pt;}
.h8_c01266{height:27.645000pt;}
.hc_c01266{height:29.948750pt;}
.he_c01266{height:34.556250pt;}
.h9_c01266{height:36.860000pt;}
.h4_c01266{height:39.163750pt;}
.h6_c01266{height:41.467500pt;}
.h5_c01266{height:43.771250pt;}
.h3_c01266{height:46.075000pt;}
.h7_c01266{height:48.378750pt;}
.hd_c01266{height:50.682500pt;}
.ha_c01266{height:52.986250pt;}
.hb_c01266{height:55.290000pt;}
.h2_c01266{height:57.593750pt;}
.hf_c01266{height:71.416250pt;}
.h1_c01266{height:1018.000000pt;}
.h0_c01266{height:1018.240000pt;}
.w1_c01266{width:686.000000pt;}
.w0_c01266{width:686.080000pt;}
.x0_c01266{left:0.000000pt;}
.x2_c01266{left:58.880000pt;}
.x36_c01266{left:60.800000pt;}
.x56_c01266{left:62.080000pt;}
.x1f_c01266{left:76.800000pt;}
.xa_c01266{left:84.480000pt;}
.x3a_c01266{left:85.760000pt;}
.x44_c01266{left:87.040000pt;}
.x60_c01266{left:88.320000pt;}
.x2c_c01266{left:94.080000pt;}
.x57_c01266{left:96.000000pt;}
.x41_c01266{left:103.040000pt;}
.x59_c01266{left:104.320000pt;}
.x20_c01266{left:111.360000pt;}
.x3b_c01266{left:112.640000pt;}
.x51_c01266{left:113.920000pt;}
.x2d_c01266{left:120.960000pt;}
.x3_c01266{left:129.280000pt;}
.x5a_c01266{left:132.480000pt;}
.xb_c01266{left:138.880000pt;}
.x2f_c01266{left:140.160000pt;}
.x1b_c01266{left:148.480000pt;}
.x2e_c01266{left:149.760000pt;}
.x5b_c01266{left:160.640000pt;}
.x4_c01266{left:166.400000pt;}
.xc_c01266{left:167.680000pt;}
.x48_c01266{left:168.960000pt;}
.x13_c01266{left:176.640000pt;}
.x52_c01266{left:178.560000pt;}
.x33_c01266{left:186.880000pt;}
.x4f_c01266{left:188.160000pt;}
.x49_c01266{left:197.120000pt;}
.x25_c01266{left:205.440000pt;}
.x45_c01266{left:206.720000pt;}
.x14_c01266{left:215.040000pt;}
.x4c_c01266{left:216.320000pt;}
.x21_c01266{left:224.640000pt;}
.x53_c01266{left:225.920000pt;}
.x26_c01266{left:234.880000pt;}
.x15_c01266{left:243.840000pt;}
.x4d_c01266{left:245.120000pt;}
.x22_c01266{left:254.080000pt;}
.xd_c01266{left:262.400000pt;}
.x5c_c01266{left:264.320000pt;}
.x42_c01266{left:273.280000pt;}
.x16_c01266{left:282.240000pt;}
.x3c_c01266{left:293.760000pt;}
.xe_c01266{left:302.080000pt;}
.x4a_c01266{left:303.360000pt;}
.x1c_c01266{left:311.680000pt;}
.x30_c01266{left:321.280000pt;}
.xf_c01266{left:330.240000pt;}
.x43_c01266{left:332.160000pt;}
.x5_c01266{left:339.840000pt;}
.x37_c01266{left:341.760000pt;}
.x17_c01266{left:348.160000pt;}
.x2a_c01266{left:350.080000pt;}
.x58_c01266{left:351.360000pt;}
.x23_c01266{left:359.040000pt;}
.x31_c01266{left:360.960000pt;}
.x46_c01266{left:369.920000pt;}
.x6_c01266{left:378.880000pt;}
.x4e_c01266{left:380.160000pt;}
.x54_c01266{left:389.120000pt;}
.x34_c01266{left:391.040000pt;}
.x3d_c01266{left:400.000000pt;}
.x1d_c01266{left:407.040000pt;}
.x18_c01266{left:408.320000pt;}
.x5d_c01266{left:409.600000pt;}
.x7_c01266{left:416.640000pt;}
.x19_c01266{left:426.880000pt;}
.x27_c01266{left:436.480000pt;}
.x4b_c01266{left:437.760000pt;}
.x10_c01266{left:439.040000pt;}
.x38_c01266{left:446.080000pt;}
.x47_c01266{left:447.360000pt;}
.x24_c01266{left:456.320000pt;}
.x32_c01266{left:467.200000pt;}
.x50_c01266{left:476.160000pt;}
.x28_c01266{left:485.120000pt;}
.x55_c01266{left:486.400000pt;}
.x8_c01266{left:494.080000pt;}
.x3e_c01266{left:495.360000pt;}
.x39_c01266{left:504.960000pt;}
.x11_c01266{left:514.560000pt;}
.x3f_c01266{left:516.480000pt;}
.x1e_c01266{left:524.160000pt;}
.x5e_c01266{left:525.440000pt;}
.x2b_c01266{left:543.360000pt;}
.x40_c01266{left:544.640000pt;}
.x1a_c01266{left:552.960000pt;}
.x5f_c01266{left:554.240000pt;}
.x12_c01266{left:571.520000pt;}
.x35_c01266{left:572.800000pt;}
.x61_c01266{left:583.680000pt;}
.x9_c01266{left:591.360000pt;}
.x1_c01266{left:598.400000pt;}
.x29_c01266{left:601.600000pt;}
}





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

.ir_c01267:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01267{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01267;src:url('chunks/assets/font_4e4026550e585636c66f3e3c.woff2')format("woff");}.ff1_c01267{font-family:ff1_c01267;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3f_c01267{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);}
.m43_c01267{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);}
.m62_c01267{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);}
.m41_c01267{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);}
.m2d_c01267{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);}
.m48_c01267{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);}
.m3b_c01267{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);}
.m35_c01267{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m34_c01267{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m4f_c01267{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m60_c01267{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m0_c01267{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m25_c01267{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m30_c01267{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m40_c01267{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m5b_c01267{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m29_c01267{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.md_c01267{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);}
.m2e_c01267{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01267{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_c01267{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m3_c01267{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);}
.m2f_c01267{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m22_c01267{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);}
.m5c_c01267{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m59_c01267{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);}
.m3d_c01267{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m66_c01267{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.mb_c01267{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01267{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01267{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m14_c01267{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);}
.m55_c01267{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);}
.m28_c01267{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m4_c01267{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);}
.m53_c01267{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m61_c01267{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);}
.m47_c01267{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);}
.m31_c01267{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);}
.m5_c01267{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m63_c01267{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m36_c01267{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m33_c01267{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_c01267{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m38_c01267{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);}
.m16_c01267{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.ma_c01267{transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);}
.m1_c01267{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);}
.me_c01267{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m6_c01267{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m58_c01267{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01267{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m42_c01267{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);}
.m5e_c01267{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m49_c01267{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m64_c01267{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);}
.m56_c01267{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m4d_c01267{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);}
.m26_c01267{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m51_c01267{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01267{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);}
.m2_c01267{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m11_c01267{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01267{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01267{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);}
.m3e_c01267{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m9_c01267{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m7_c01267{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01267{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m17_c01267{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);}
.m8_c01267{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m10_c01267{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.mf_c01267{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);}
.m4c_c01267{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m21_c01267{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m52_c01267{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m12_c01267{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);}
.m5d_c01267{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m20_c01267{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m57_c01267{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m54_c01267{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m65_c01267{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);}
.m39_c01267{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);}
.mc_c01267{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01267{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);}
.m32_c01267{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01267{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m23_c01267{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m4e_c01267{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01267{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m45_c01267{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m27_c01267{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);}
.m18_c01267{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m24_c01267{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);}
.m50_c01267{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01267{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01267{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m46_c01267{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m37_c01267{transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);}
.m5f_c01267{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);}
.m44_c01267{transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);}
.m15_c01267{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m5a_c01267{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);}
.v4_c01267{vertical-align:-5.760000px;}
.v3_c01267{vertical-align:-2.880000px;}
.v0_c01267{vertical-align:0.000000px;}
.v1_c01267{vertical-align:2.880000px;}
.v2_c01267{vertical-align:5.760000px;}
.ls0_c01267{letter-spacing:0.000000px;}
.sc__c01267{text-shadow:none;}
.sc0_c01267{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01267{-webkit-text-stroke:0px transparent;}
.sc0_c01267{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01267{word-spacing:-0.304320px;}
.ws5_c01267{word-spacing:0.000000px;}
.ws3_c01267{word-spacing:1.114800px;}
.ws0_c01267{word-spacing:3.245280px;}
.ws4_c01267{word-spacing:5.561280px;}
.ws2_c01267{word-spacing:15.527040px;}
.fc0_c01267{color:transparent;}
.fsc_c01267{font-size:31.680000px;}
.fs9_c01267{font-size:34.560000px;}
.fsd_c01267{font-size:37.440000px;}
.fs6_c01267{font-size:43.200000px;}
.fs3_c01267{font-size:46.080000px;}
.fs1_c01267{font-size:48.960000px;}
.fs5_c01267{font-size:51.840000px;}
.fs8_c01267{font-size:54.720000px;}
.fsb_c01267{font-size:57.600000px;}
.fs2_c01267{font-size:60.480000px;}
.fs7_c01267{font-size:63.360000px;}
.fs4_c01267{font-size:66.240000px;}
.fsa_c01267{font-size:69.120000px;}
.fs0_c01267{font-size:72.000000px;}
.fse_c01267{font-size:77.760000px;}
.y0_c01267{bottom:0.000000px;}
.y85_c01267{bottom:25.200000px;}
.y83_c01267{bottom:26.640000px;}
.y82_c01267{bottom:28.800000px;}
.y84_c01267{bottom:29.520000px;}
.y81_c01267{bottom:30.960000px;}
.y80_c01267{bottom:33.120000px;}
.y7f_c01267{bottom:37.440000px;}
.y7c_c01267{bottom:69.120000px;}
.y7e_c01267{bottom:70.560000px;}
.y7d_c01267{bottom:71.280000px;}
.y7b_c01267{bottom:72.000000px;}
.y7a_c01267{bottom:72.720000px;}
.y78_c01267{bottom:76.320000px;}
.y79_c01267{bottom:77.040000px;}
.y76_c01267{bottom:111.600000px;}
.y77_c01267{bottom:113.040000px;}
.y75_c01267{bottom:114.480000px;}
.y73_c01267{bottom:115.200000px;}
.y74_c01267{bottom:115.920000px;}
.y72_c01267{bottom:119.520000px;}
.y71_c01267{bottom:122.400000px;}
.y70_c01267{bottom:156.960000px;}
.y6f_c01267{bottom:157.680000px;}
.y6e_c01267{bottom:158.400000px;}
.y6d_c01267{bottom:159.120000px;}
.y6c_c01267{bottom:161.280000px;}
.y6a_c01267{bottom:198.720000px;}
.y6b_c01267{bottom:200.160000px;}
.y69_c01267{bottom:200.880000px;}
.y68_c01267{bottom:201.600000px;}
.y67_c01267{bottom:203.760000px;}
.y66_c01267{bottom:205.200000px;}
.y63_c01267{bottom:240.480000px;}
.y64_c01267{bottom:242.640000px;}
.y65_c01267{bottom:243.360000px;}
.y62_c01267{bottom:244.080000px;}
.y61_c01267{bottom:244.800000px;}
.y60_c01267{bottom:246.960000px;}
.y5f_c01267{bottom:282.960000px;}
.y5e_c01267{bottom:283.680000px;}
.y5a_c01267{bottom:285.840000px;}
.y5d_c01267{bottom:286.560000px;}
.y5c_c01267{bottom:287.280000px;}
.y5b_c01267{bottom:288.000000px;}
.y57_c01267{bottom:326.880000px;}
.y55_c01267{bottom:327.600000px;}
.y54_c01267{bottom:328.320000px;}
.y56_c01267{bottom:329.040000px;}
.y59_c01267{bottom:329.760000px;}
.y58_c01267{bottom:330.480000px;}
.y53_c01267{bottom:331.200000px;}
.y52_c01267{bottom:333.360000px;}
.y51_c01267{bottom:334.080000px;}
.y4f_c01267{bottom:370.080000px;}
.y50_c01267{bottom:372.240000px;}
.y4e_c01267{bottom:373.680000px;}
.y4d_c01267{bottom:377.280000px;}
.y4c_c01267{bottom:412.560000px;}
.y4a_c01267{bottom:413.280000px;}
.y4b_c01267{bottom:414.720000px;}
.y49_c01267{bottom:415.440000px;}
.y48_c01267{bottom:416.880000px;}
.y44_c01267{bottom:467.280000px;}
.y47_c01267{bottom:468.720000px;}
.y46_c01267{bottom:469.440000px;}
.y45_c01267{bottom:470.160000px;}
.y43_c01267{bottom:509.760000px;}
.y42_c01267{bottom:511.920000px;}
.y41_c01267{bottom:512.640000px;}
.y40_c01267{bottom:513.360000px;}
.y3e_c01267{bottom:552.240000px;}
.y3c_c01267{bottom:552.960000px;}
.y3f_c01267{bottom:553.680000px;}
.y3d_c01267{bottom:555.120000px;}
.y3b_c01267{bottom:555.840000px;}
.y3a_c01267{bottom:557.280000px;}
.y38_c01267{bottom:594.720000px;}
.y36_c01267{bottom:595.440000px;}
.y37_c01267{bottom:598.320000px;}
.y39_c01267{bottom:599.040000px;}
.y34_c01267{bottom:637.920000px;}
.y35_c01267{bottom:640.080000px;}
.y32_c01267{bottom:640.800000px;}
.y33_c01267{bottom:641.520000px;}
.y2f_c01267{bottom:691.920000px;}
.y30_c01267{bottom:692.640000px;}
.y2e_c01267{bottom:694.080000px;}
.y2d_c01267{bottom:694.800000px;}
.y31_c01267{bottom:695.520000px;}
.y28_c01267{bottom:734.400000px;}
.y2b_c01267{bottom:735.120000px;}
.y2a_c01267{bottom:735.840000px;}
.y29_c01267{bottom:736.560000px;}
.y27_c01267{bottom:737.280000px;}
.y2c_c01267{bottom:738.720000px;}
.y24_c01267{bottom:778.320000px;}
.y21_c01267{bottom:779.040000px;}
.y22_c01267{bottom:779.760000px;}
.y23_c01267{bottom:780.480000px;}
.y26_c01267{bottom:781.200000px;}
.y25_c01267{bottom:781.920000px;}
.y1c_c01267{bottom:820.080000px;}
.y1d_c01267{bottom:820.800000px;}
.y1a_c01267{bottom:821.520000px;}
.y20_c01267{bottom:822.240000px;}
.y1b_c01267{bottom:822.960000px;}
.y1e_c01267{bottom:823.680000px;}
.y1f_c01267{bottom:825.120000px;}
.y15_c01267{bottom:864.000000px;}
.y16_c01267{bottom:864.720000px;}
.y17_c01267{bottom:866.160000px;}
.y18_c01267{bottom:866.880000px;}
.y19_c01267{bottom:867.600000px;}
.yf_c01267{bottom:903.600000px;}
.y11_c01267{bottom:905.760000px;}
.y13_c01267{bottom:907.200000px;}
.y10_c01267{bottom:907.920000px;}
.y12_c01267{bottom:908.640000px;}
.y14_c01267{bottom:910.080000px;}
.ya_c01267{bottom:948.240000px;}
.y9_c01267{bottom:948.960000px;}
.yc_c01267{bottom:951.120000px;}
.yb_c01267{bottom:951.840000px;}
.yd_c01267{bottom:952.560000px;}
.ye_c01267{bottom:953.280000px;}
.y7_c01267{bottom:992.880000px;}
.y5_c01267{bottom:993.600000px;}
.y6_c01267{bottom:995.040000px;}
.y8_c01267{bottom:997.200000px;}
.y2_c01267{bottom:1044.720000px;}
.y3_c01267{bottom:1046.880000px;}
.y4_c01267{bottom:1049.040000px;}
.y1_c01267{bottom:1097.280000px;}
.hf_c01267{height:28.508906px;}
.hb_c01267{height:31.100625px;}
.h10_c01267{height:33.692344px;}
.h8_c01267{height:38.875781px;}
.h5_c01267{height:41.467500px;}
.h3_c01267{height:44.059219px;}
.h7_c01267{height:46.650937px;}
.hd_c01267{height:46.939219px;}
.ha_c01267{height:49.242656px;}
.he_c01267{height:51.834375px;}
.h4_c01267{height:54.426094px;}
.h9_c01267{height:57.017812px;}
.h11_c01267{height:57.594375px;}
.h6_c01267{height:59.609531px;}
.hc_c01267{height:62.201250px;}
.h2_c01267{height:64.792969px;}
.h12_c01267{height:69.976406px;}
.h1_c01267{height:1147.500000px;}
.h0_c01267{height:1147.680000px;}
.w0_c01267{width:775.440000px;}
.w1_c01267{width:775.500000px;}
.x0_c01267{left:0.000000px;}
.x2_c01267{left:65.520000px;}
.x14_c01267{left:66.960000px;}
.x3e_c01267{left:68.400000px;}
.x52_c01267{left:69.840000px;}
.x54_c01267{left:71.280000px;}
.x64_c01267{left:72.720000px;}
.x1c_c01267{left:96.480000px;}
.x4e_c01267{left:97.920000px;}
.x43_c01267{left:107.280000px;}
.x2b_c01267{left:116.640000px;}
.x62_c01267{left:118.800000px;}
.x3_c01267{left:126.000000px;}
.x1d_c01267{left:135.360000px;}
.x44_c01267{left:138.240000px;}
.xe_c01267{left:145.440000px;}
.x2c_c01267{left:146.880000px;}
.x25_c01267{left:156.240000px;}
.x4_c01267{left:157.680000px;}
.x7_c01267{left:166.320000px;}
.x1e_c01267{left:168.480000px;}
.x5a_c01267{left:169.920000px;}
.x15_c01267{left:177.120000px;}
.x2d_c01267{left:179.280000px;}
.x5f_c01267{left:190.800000px;}
.x39_c01267{left:198.720000px;}
.x36_c01267{left:200.880000px;}
.x8_c01267{left:209.520000px;}
.x4c_c01267{left:211.680000px;}
.xf_c01267{left:221.040000px;}
.x4f_c01267{left:222.480000px;}
.x16_c01267{left:231.120000px;}
.x67_c01267{left:244.080000px;}
.x5_c01267{left:252.720000px;}
.x3f_c01267{left:256.320000px;}
.x1f_c01267{left:263.520000px;}
.x3a_c01267{left:265.680000px;}
.x9_c01267{left:274.320000px;}
.x55_c01267{left:276.480000px;}
.x6_c01267{left:284.400000px;}
.x49_c01267{left:285.840000px;}
.x60_c01267{left:288.000000px;}
.x2e_c01267{left:298.080000px;}
.x37_c01267{left:307.440000px;}
.x4a_c01267{left:308.880000px;}
.x10_c01267{left:316.800000px;}
.x45_c01267{left:318.240000px;}
.x26_c01267{left:328.320000px;}
.x56_c01267{left:330.480000px;}
.x3b_c01267{left:339.120000px;}
.x40_c01267{left:341.280000px;}
.x17_c01267{left:349.920000px;}
.x31_c01267{left:352.080000px;}
.xa_c01267{left:371.520000px;}
.x27_c01267{left:373.680000px;}
.x5b_c01267{left:375.120000px;}
.x65_c01267{left:377.280000px;}
.x32_c01267{left:383.040000px;}
.x4b_c01267{left:384.480000px;}
.xb_c01267{left:393.120000px;}
.x18_c01267{left:394.560000px;}
.x28_c01267{left:404.640000px;}
.x50_c01267{left:406.080000px;}
.x46_c01267{left:416.160000px;}
.x19_c01267{left:427.680000px;}
.x2f_c01267{left:438.480000px;}
.x3c_c01267{left:449.280000px;}
.x41_c01267{left:451.440000px;}
.x33_c01267{left:460.080000px;}
.x5e_c01267{left:470.880000px;}
.x20_c01267{left:480.960000px;}
.x38_c01267{left:482.400000px;}
.x34_c01267{left:492.480000px;}
.x57_c01267{left:494.640000px;}
.xc_c01267{left:502.560000px;}
.x21_c01267{left:514.080000px;}
.x3d_c01267{left:524.160000px;}
.x35_c01267{left:525.600000px;}
.x1a_c01267{left:534.960000px;}
.x61_c01267{left:537.120000px;}
.x22_c01267{left:545.760000px;}
.x1b_c01267{left:557.280000px;}
.x4d_c01267{left:568.800000px;}
.x11_c01267{left:578.160000px;}
.x47_c01267{left:581.040000px;}
.x51_c01267{left:589.680000px;}
.x53_c01267{left:591.840000px;}
.x29_c01267{left:600.480000px;}
.x63_c01267{left:601.920000px;}
.x30_c01267{left:612.000000px;}
.x23_c01267{left:622.080000px;}
.x2a_c01267{left:632.880000px;}
.x58_c01267{left:635.040000px;}
.x24_c01267{left:644.400000px;}
.x66_c01267{left:645.840000px;}
.x42_c01267{left:650.880000px;}
.x12_c01267{left:654.480000px;}
.x5c_c01267{left:656.640000px;}
.x48_c01267{left:668.160000px;}
.x59_c01267{left:669.600000px;}
.x1_c01267{left:674.640000px;}
.xd_c01267{left:676.800000px;}
.x13_c01267{left:687.600000px;}
.x5d_c01267{left:689.040000px;}
@media print{
.v4_c01267{vertical-align:-5.120000pt;}
.v3_c01267{vertical-align:-2.560000pt;}
.v0_c01267{vertical-align:0.000000pt;}
.v1_c01267{vertical-align:2.560000pt;}
.v2_c01267{vertical-align:5.120000pt;}
.ls0_c01267{letter-spacing:0.000000pt;}
.ws1_c01267{word-spacing:-0.270507pt;}
.ws5_c01267{word-spacing:0.000000pt;}
.ws3_c01267{word-spacing:0.990933pt;}
.ws0_c01267{word-spacing:2.884693pt;}
.ws4_c01267{word-spacing:4.943360pt;}
.ws2_c01267{word-spacing:13.801813pt;}
.fsc_c01267{font-size:28.160000pt;}
.fs9_c01267{font-size:30.720000pt;}
.fsd_c01267{font-size:33.280000pt;}
.fs6_c01267{font-size:38.400000pt;}
.fs3_c01267{font-size:40.960000pt;}
.fs1_c01267{font-size:43.520000pt;}
.fs5_c01267{font-size:46.080000pt;}
.fs8_c01267{font-size:48.640000pt;}
.fsb_c01267{font-size:51.200000pt;}
.fs2_c01267{font-size:53.760000pt;}
.fs7_c01267{font-size:56.320000pt;}
.fs4_c01267{font-size:58.880000pt;}
.fsa_c01267{font-size:61.440000pt;}
.fs0_c01267{font-size:64.000000pt;}
.fse_c01267{font-size:69.120000pt;}
.y0_c01267{bottom:0.000000pt;}
.y85_c01267{bottom:22.400000pt;}
.y83_c01267{bottom:23.680000pt;}
.y82_c01267{bottom:25.600000pt;}
.y84_c01267{bottom:26.240000pt;}
.y81_c01267{bottom:27.520000pt;}
.y80_c01267{bottom:29.440000pt;}
.y7f_c01267{bottom:33.280000pt;}
.y7c_c01267{bottom:61.440000pt;}
.y7e_c01267{bottom:62.720000pt;}
.y7d_c01267{bottom:63.360000pt;}
.y7b_c01267{bottom:64.000000pt;}
.y7a_c01267{bottom:64.640000pt;}
.y78_c01267{bottom:67.840000pt;}
.y79_c01267{bottom:68.480000pt;}
.y76_c01267{bottom:99.200000pt;}
.y77_c01267{bottom:100.480000pt;}
.y75_c01267{bottom:101.760000pt;}
.y73_c01267{bottom:102.400000pt;}
.y74_c01267{bottom:103.040000pt;}
.y72_c01267{bottom:106.240000pt;}
.y71_c01267{bottom:108.800000pt;}
.y70_c01267{bottom:139.520000pt;}
.y6f_c01267{bottom:140.160000pt;}
.y6e_c01267{bottom:140.800000pt;}
.y6d_c01267{bottom:141.440000pt;}
.y6c_c01267{bottom:143.360000pt;}
.y6a_c01267{bottom:176.640000pt;}
.y6b_c01267{bottom:177.920000pt;}
.y69_c01267{bottom:178.560000pt;}
.y68_c01267{bottom:179.200000pt;}
.y67_c01267{bottom:181.120000pt;}
.y66_c01267{bottom:182.400000pt;}
.y63_c01267{bottom:213.760000pt;}
.y64_c01267{bottom:215.680000pt;}
.y65_c01267{bottom:216.320000pt;}
.y62_c01267{bottom:216.960000pt;}
.y61_c01267{bottom:217.600000pt;}
.y60_c01267{bottom:219.520000pt;}
.y5f_c01267{bottom:251.520000pt;}
.y5e_c01267{bottom:252.160000pt;}
.y5a_c01267{bottom:254.080000pt;}
.y5d_c01267{bottom:254.720000pt;}
.y5c_c01267{bottom:255.360000pt;}
.y5b_c01267{bottom:256.000000pt;}
.y57_c01267{bottom:290.560000pt;}
.y55_c01267{bottom:291.200000pt;}
.y54_c01267{bottom:291.840000pt;}
.y56_c01267{bottom:292.480000pt;}
.y59_c01267{bottom:293.120000pt;}
.y58_c01267{bottom:293.760000pt;}
.y53_c01267{bottom:294.400000pt;}
.y52_c01267{bottom:296.320000pt;}
.y51_c01267{bottom:296.960000pt;}
.y4f_c01267{bottom:328.960000pt;}
.y50_c01267{bottom:330.880000pt;}
.y4e_c01267{bottom:332.160000pt;}
.y4d_c01267{bottom:335.360000pt;}
.y4c_c01267{bottom:366.720000pt;}
.y4a_c01267{bottom:367.360000pt;}
.y4b_c01267{bottom:368.640000pt;}
.y49_c01267{bottom:369.280000pt;}
.y48_c01267{bottom:370.560000pt;}
.y44_c01267{bottom:415.360000pt;}
.y47_c01267{bottom:416.640000pt;}
.y46_c01267{bottom:417.280000pt;}
.y45_c01267{bottom:417.920000pt;}
.y43_c01267{bottom:453.120000pt;}
.y42_c01267{bottom:455.040000pt;}
.y41_c01267{bottom:455.680000pt;}
.y40_c01267{bottom:456.320000pt;}
.y3e_c01267{bottom:490.880000pt;}
.y3c_c01267{bottom:491.520000pt;}
.y3f_c01267{bottom:492.160000pt;}
.y3d_c01267{bottom:493.440000pt;}
.y3b_c01267{bottom:494.080000pt;}
.y3a_c01267{bottom:495.360000pt;}
.y38_c01267{bottom:528.640000pt;}
.y36_c01267{bottom:529.280000pt;}
.y37_c01267{bottom:531.840000pt;}
.y39_c01267{bottom:532.480000pt;}
.y34_c01267{bottom:567.040000pt;}
.y35_c01267{bottom:568.960000pt;}
.y32_c01267{bottom:569.600000pt;}
.y33_c01267{bottom:570.240000pt;}
.y2f_c01267{bottom:615.040000pt;}
.y30_c01267{bottom:615.680000pt;}
.y2e_c01267{bottom:616.960000pt;}
.y2d_c01267{bottom:617.600000pt;}
.y31_c01267{bottom:618.240000pt;}
.y28_c01267{bottom:652.800000pt;}
.y2b_c01267{bottom:653.440000pt;}
.y2a_c01267{bottom:654.080000pt;}
.y29_c01267{bottom:654.720000pt;}
.y27_c01267{bottom:655.360000pt;}
.y2c_c01267{bottom:656.640000pt;}
.y24_c01267{bottom:691.840000pt;}
.y21_c01267{bottom:692.480000pt;}
.y22_c01267{bottom:693.120000pt;}
.y23_c01267{bottom:693.760000pt;}
.y26_c01267{bottom:694.400000pt;}
.y25_c01267{bottom:695.040000pt;}
.y1c_c01267{bottom:728.960000pt;}
.y1d_c01267{bottom:729.600000pt;}
.y1a_c01267{bottom:730.240000pt;}
.y20_c01267{bottom:730.880000pt;}
.y1b_c01267{bottom:731.520000pt;}
.y1e_c01267{bottom:732.160000pt;}
.y1f_c01267{bottom:733.440000pt;}
.y15_c01267{bottom:768.000000pt;}
.y16_c01267{bottom:768.640000pt;}
.y17_c01267{bottom:769.920000pt;}
.y18_c01267{bottom:770.560000pt;}
.y19_c01267{bottom:771.200000pt;}
.yf_c01267{bottom:803.200000pt;}
.y11_c01267{bottom:805.120000pt;}
.y13_c01267{bottom:806.400000pt;}
.y10_c01267{bottom:807.040000pt;}
.y12_c01267{bottom:807.680000pt;}
.y14_c01267{bottom:808.960000pt;}
.ya_c01267{bottom:842.880000pt;}
.y9_c01267{bottom:843.520000pt;}
.yc_c01267{bottom:845.440000pt;}
.yb_c01267{bottom:846.080000pt;}
.yd_c01267{bottom:846.720000pt;}
.ye_c01267{bottom:847.360000pt;}
.y7_c01267{bottom:882.560000pt;}
.y5_c01267{bottom:883.200000pt;}
.y6_c01267{bottom:884.480000pt;}
.y8_c01267{bottom:886.400000pt;}
.y2_c01267{bottom:928.640000pt;}
.y3_c01267{bottom:930.560000pt;}
.y4_c01267{bottom:932.480000pt;}
.y1_c01267{bottom:975.360000pt;}
.hf_c01267{height:25.341250pt;}
.hb_c01267{height:27.645000pt;}
.h10_c01267{height:29.948750pt;}
.h8_c01267{height:34.556250pt;}
.h5_c01267{height:36.860000pt;}
.h3_c01267{height:39.163750pt;}
.h7_c01267{height:41.467500pt;}
.hd_c01267{height:41.723750pt;}
.ha_c01267{height:43.771250pt;}
.he_c01267{height:46.075000pt;}
.h4_c01267{height:48.378750pt;}
.h9_c01267{height:50.682500pt;}
.h11_c01267{height:51.195000pt;}
.h6_c01267{height:52.986250pt;}
.hc_c01267{height:55.290000pt;}
.h2_c01267{height:57.593750pt;}
.h12_c01267{height:62.201250pt;}
.h1_c01267{height:1020.000000pt;}
.h0_c01267{height:1020.160000pt;}
.w0_c01267{width:689.280000pt;}
.w1_c01267{width:689.333333pt;}
.x0_c01267{left:0.000000pt;}
.x2_c01267{left:58.240000pt;}
.x14_c01267{left:59.520000pt;}
.x3e_c01267{left:60.800000pt;}
.x52_c01267{left:62.080000pt;}
.x54_c01267{left:63.360000pt;}
.x64_c01267{left:64.640000pt;}
.x1c_c01267{left:85.760000pt;}
.x4e_c01267{left:87.040000pt;}
.x43_c01267{left:95.360000pt;}
.x2b_c01267{left:103.680000pt;}
.x62_c01267{left:105.600000pt;}
.x3_c01267{left:112.000000pt;}
.x1d_c01267{left:120.320000pt;}
.x44_c01267{left:122.880000pt;}
.xe_c01267{left:129.280000pt;}
.x2c_c01267{left:130.560000pt;}
.x25_c01267{left:138.880000pt;}
.x4_c01267{left:140.160000pt;}
.x7_c01267{left:147.840000pt;}
.x1e_c01267{left:149.760000pt;}
.x5a_c01267{left:151.040000pt;}
.x15_c01267{left:157.440000pt;}
.x2d_c01267{left:159.360000pt;}
.x5f_c01267{left:169.600000pt;}
.x39_c01267{left:176.640000pt;}
.x36_c01267{left:178.560000pt;}
.x8_c01267{left:186.240000pt;}
.x4c_c01267{left:188.160000pt;}
.xf_c01267{left:196.480000pt;}
.x4f_c01267{left:197.760000pt;}
.x16_c01267{left:205.440000pt;}
.x67_c01267{left:216.960000pt;}
.x5_c01267{left:224.640000pt;}
.x3f_c01267{left:227.840000pt;}
.x1f_c01267{left:234.240000pt;}
.x3a_c01267{left:236.160000pt;}
.x9_c01267{left:243.840000pt;}
.x55_c01267{left:245.760000pt;}
.x6_c01267{left:252.800000pt;}
.x49_c01267{left:254.080000pt;}
.x60_c01267{left:256.000000pt;}
.x2e_c01267{left:264.960000pt;}
.x37_c01267{left:273.280000pt;}
.x4a_c01267{left:274.560000pt;}
.x10_c01267{left:281.600000pt;}
.x45_c01267{left:282.880000pt;}
.x26_c01267{left:291.840000pt;}
.x56_c01267{left:293.760000pt;}
.x3b_c01267{left:301.440000pt;}
.x40_c01267{left:303.360000pt;}
.x17_c01267{left:311.040000pt;}
.x31_c01267{left:312.960000pt;}
.xa_c01267{left:330.240000pt;}
.x27_c01267{left:332.160000pt;}
.x5b_c01267{left:333.440000pt;}
.x65_c01267{left:335.360000pt;}
.x32_c01267{left:340.480000pt;}
.x4b_c01267{left:341.760000pt;}
.xb_c01267{left:349.440000pt;}
.x18_c01267{left:350.720000pt;}
.x28_c01267{left:359.680000pt;}
.x50_c01267{left:360.960000pt;}
.x46_c01267{left:369.920000pt;}
.x19_c01267{left:380.160000pt;}
.x2f_c01267{left:389.760000pt;}
.x3c_c01267{left:399.360000pt;}
.x41_c01267{left:401.280000pt;}
.x33_c01267{left:408.960000pt;}
.x5e_c01267{left:418.560000pt;}
.x20_c01267{left:427.520000pt;}
.x38_c01267{left:428.800000pt;}
.x34_c01267{left:437.760000pt;}
.x57_c01267{left:439.680000pt;}
.xc_c01267{left:446.720000pt;}
.x21_c01267{left:456.960000pt;}
.x3d_c01267{left:465.920000pt;}
.x35_c01267{left:467.200000pt;}
.x1a_c01267{left:475.520000pt;}
.x61_c01267{left:477.440000pt;}
.x22_c01267{left:485.120000pt;}
.x1b_c01267{left:495.360000pt;}
.x4d_c01267{left:505.600000pt;}
.x11_c01267{left:513.920000pt;}
.x47_c01267{left:516.480000pt;}
.x51_c01267{left:524.160000pt;}
.x53_c01267{left:526.080000pt;}
.x29_c01267{left:533.760000pt;}
.x63_c01267{left:535.040000pt;}
.x30_c01267{left:544.000000pt;}
.x23_c01267{left:552.960000pt;}
.x2a_c01267{left:562.560000pt;}
.x58_c01267{left:564.480000pt;}
.x24_c01267{left:572.800000pt;}
.x66_c01267{left:574.080000pt;}
.x42_c01267{left:578.560000pt;}
.x12_c01267{left:581.760000pt;}
.x5c_c01267{left:583.680000pt;}
.x48_c01267{left:593.920000pt;}
.x59_c01267{left:595.200000pt;}
.x1_c01267{left:599.680000pt;}
.xd_c01267{left:601.600000pt;}
.x13_c01267{left:611.200000pt;}
.x5d_c01267{left:612.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_c01268 {
    display:none;
  }
  .loading-indicator_c01268.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01268 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01268 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01268" -> "#page-container .classname_c01268")
 */
.pf_c01268 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01268 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01268.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01268 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01268 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01268 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01268 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01268 {overflow:visible;}
  }
}
.c_c01268 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01268 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01268:after { /* webkit #35443 */
  content: '';
}
.t_c01268:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01268 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01268 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01268 { /* info for Javascript */
  display:none;
}
.l_c01268 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01268 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01268 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01268:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01268{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01268;src:url('chunks/assets/font_2946dd39bac5bd330ec80ad8.woff2')format("woff");}.ff1_c01268{font-family:ff1_c01268;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m52_c01268{transform:matrix(0.229375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229375,0.000000,0.000000,0.250000,0,0);}
.m27_c01268{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m36_c01268{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m17_c01268{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m7_c01268{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);}
.m4c_c01268{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m16_c01268{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);}
.m63_c01268{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m1_c01268{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m4e_c01268{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m9_c01268{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01268{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m59_c01268{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01268{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01268{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01268{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m14_c01268{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.md_c01268{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01268{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m28_c01268{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m21_c01268{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);}
.m2a_c01268{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);}
.m4d_c01268{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m44_c01268{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);}
.m60_c01268{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.ma_c01268{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);}
.m18_c01268{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m5e_c01268{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m19_c01268{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m57_c01268{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);}
.m34_c01268{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);}
.m37_c01268{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m15_c01268{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m5_c01268{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);}
.m31_c01268{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);}
.m0_c01268{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.mc_c01268{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);}
.m8_c01268{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01268{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);}
.m3_c01268{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);}
.m2c_c01268{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m47_c01268{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m41_c01268{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01268{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);}
.m48_c01268{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01268{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);}
.m2f_c01268{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);}
.m29_c01268{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);}
.m20_c01268{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m4a_c01268{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01268{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01268{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m24_c01268{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m40_c01268{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);}
.m30_c01268{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.me_c01268{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);}
.m61_c01268{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m23_c01268{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m12_c01268{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m2_c01268{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);}
.m2e_c01268{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m54_c01268{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01268{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);}
.mf_c01268{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m62_c01268{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01268{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m11_c01268{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m43_c01268{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m22_c01268{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);}
.m32_c01268{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);}
.m3d_c01268{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m51_c01268{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.mb_c01268{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);}
.m46_c01268{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m33_c01268{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m50_c01268{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);}
.m5a_c01268{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01268{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01268{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m4_c01268{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);}
.m2d_c01268{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m58_c01268{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);}
.m53_c01268{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);}
.m56_c01268{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m6_c01268{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m26_c01268{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m39_c01268{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m35_c01268{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m42_c01268{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m5f_c01268{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);}
.m5c_c01268{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);}
.m25_c01268{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);}
.m55_c01268{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m38_c01268{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m49_c01268{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m5b_c01268{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m5d_c01268{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01268{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m10_c01268{transform:matrix(0.650000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.650000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.650000,0.000000,0.000000,0.250000,0,0);}
.m45_c01268{transform:matrix(0.700000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.700000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.700000,0.000000,0.000000,0.250000,0,0);}
.v1_c01268{vertical-align:-2.880000px;}
.v0_c01268{vertical-align:0.000000px;}
.v2_c01268{vertical-align:11.520000px;}
.ls0_c01268{letter-spacing:0.000000px;}
.sc__c01268{text-shadow:none;}
.sc0_c01268{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01268{-webkit-text-stroke:0px transparent;}
.sc0_c01268{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01268{word-spacing:-4.738320px;}
.ws0_c01268{word-spacing:-3.803760px;}
.ws2_c01268{word-spacing:-3.360000px;}
.ws3_c01268{word-spacing:0.000000px;}
.fc0_c01268{color:transparent;}
.fs2_c01268{font-size:34.560000px;}
.fsc_c01268{font-size:37.440000px;}
.fs7_c01268{font-size:46.080000px;}
.fs4_c01268{font-size:48.960000px;}
.fs3_c01268{font-size:51.840000px;}
.fs6_c01268{font-size:54.720000px;}
.fsb_c01268{font-size:57.600000px;}
.fs1_c01268{font-size:60.480000px;}
.fs8_c01268{font-size:63.360000px;}
.fs9_c01268{font-size:66.240000px;}
.fs5_c01268{font-size:69.120000px;}
.fs0_c01268{font-size:72.000000px;}
.fsa_c01268{font-size:74.880000px;}
.fsd_c01268{font-size:77.760000px;}
.y0_c01268{bottom:0.000000px;}
.y7b_c01268{bottom:71.280000px;}
.y79_c01268{bottom:72.000000px;}
.y7a_c01268{bottom:72.720000px;}
.y78_c01268{bottom:75.600000px;}
.y77_c01268{bottom:121.680000px;}
.y76_c01268{bottom:123.120000px;}
.y75_c01268{bottom:123.840000px;}
.y74_c01268{bottom:126.720000px;}
.y73_c01268{bottom:127.440000px;}
.y72_c01268{bottom:129.600000px;}
.y71_c01268{bottom:130.320000px;}
.y70_c01268{bottom:131.760000px;}
.y6f_c01268{bottom:167.760000px;}
.y6e_c01268{bottom:168.480000px;}
.y6c_c01268{bottom:169.200000px;}
.y6d_c01268{bottom:169.920000px;}
.y6b_c01268{bottom:170.640000px;}
.y6a_c01268{bottom:208.080000px;}
.y69_c01268{bottom:210.960000px;}
.y68_c01268{bottom:211.680000px;}
.y67_c01268{bottom:212.400000px;}
.y66_c01268{bottom:213.840000px;}
.y65_c01268{bottom:215.280000px;}
.y64_c01268{bottom:217.440000px;}
.y62_c01268{bottom:252.720000px;}
.y61_c01268{bottom:253.440000px;}
.y60_c01268{bottom:254.160000px;}
.y63_c01268{bottom:254.880000px;}
.y5f_c01268{bottom:257.040000px;}
.y5e_c01268{bottom:258.480000px;}
.y5d_c01268{bottom:259.200000px;}
.y5c_c01268{bottom:295.200000px;}
.y5a_c01268{bottom:295.920000px;}
.y5b_c01268{bottom:297.360000px;}
.y57_c01268{bottom:298.080000px;}
.y59_c01268{bottom:298.800000px;}
.y58_c01268{bottom:300.240000px;}
.y54_c01268{bottom:339.120000px;}
.y56_c01268{bottom:340.560000px;}
.y55_c01268{bottom:341.280000px;}
.y53_c01268{bottom:342.000000px;}
.y52_c01268{bottom:345.600000px;}
.y51_c01268{bottom:381.600000px;}
.y50_c01268{bottom:382.320000px;}
.y4f_c01268{bottom:384.480000px;}
.y4e_c01268{bottom:385.920000px;}
.y4d_c01268{bottom:387.360000px;}
.y4a_c01268{bottom:424.800000px;}
.y49_c01268{bottom:425.520000px;}
.y4c_c01268{bottom:426.960000px;}
.y4b_c01268{bottom:427.680000px;}
.y48_c01268{bottom:429.120000px;}
.y47_c01268{bottom:429.840000px;}
.y46_c01268{bottom:431.280000px;}
.y45_c01268{bottom:468.000000px;}
.y44_c01268{bottom:470.160000px;}
.y43_c01268{bottom:470.880000px;}
.y42_c01268{bottom:471.600000px;}
.y41_c01268{bottom:472.320000px;}
.y3f_c01268{bottom:510.480000px;}
.y3e_c01268{bottom:511.200000px;}
.y3b_c01268{bottom:511.920000px;}
.y3c_c01268{bottom:512.640000px;}
.y40_c01268{bottom:513.360000px;}
.y3d_c01268{bottom:514.080000px;}
.y3a_c01268{bottom:553.680000px;}
.y38_c01268{bottom:554.400000px;}
.y39_c01268{bottom:556.560000px;}
.y37_c01268{bottom:557.280000px;}
.y35_c01268{bottom:606.960000px;}
.y36_c01268{bottom:607.680000px;}
.y34_c01268{bottom:608.400000px;}
.y31_c01268{bottom:649.440000px;}
.y30_c01268{bottom:650.160000px;}
.y33_c01268{bottom:652.320000px;}
.y32_c01268{bottom:653.040000px;}
.y2f_c01268{bottom:693.360000px;}
.y2d_c01268{bottom:695.520000px;}
.y2e_c01268{bottom:696.240000px;}
.y28_c01268{bottom:735.120000px;}
.y2c_c01268{bottom:735.840000px;}
.y2a_c01268{bottom:738.000000px;}
.y29_c01268{bottom:738.720000px;}
.y2b_c01268{bottom:739.440000px;}
.y25_c01268{bottom:777.600000px;}
.y26_c01268{bottom:779.040000px;}
.y23_c01268{bottom:780.480000px;}
.y24_c01268{bottom:781.200000px;}
.y27_c01268{bottom:781.920000px;}
.y22_c01268{bottom:821.520000px;}
.y21_c01268{bottom:822.240000px;}
.y1e_c01268{bottom:823.680000px;}
.y1f_c01268{bottom:824.400000px;}
.y20_c01268{bottom:825.120000px;}
.y1a_c01268{bottom:874.800000px;}
.y19_c01268{bottom:875.520000px;}
.y1d_c01268{bottom:876.240000px;}
.y1b_c01268{bottom:877.680000px;}
.y1c_c01268{bottom:878.400000px;}
.y14_c01268{bottom:915.840000px;}
.y15_c01268{bottom:916.560000px;}
.y16_c01268{bottom:918.720000px;}
.y18_c01268{bottom:921.600000px;}
.y17_c01268{bottom:922.320000px;}
.ye_c01268{bottom:958.320000px;}
.yf_c01268{bottom:959.760000px;}
.y13_c01268{bottom:961.200000px;}
.y12_c01268{bottom:961.920000px;}
.y10_c01268{bottom:962.640000px;}
.y11_c01268{bottom:963.360000px;}
.y9_c01268{bottom:1002.960000px;}
.y8_c01268{bottom:1003.680000px;}
.yb_c01268{bottom:1005.120000px;}
.ya_c01268{bottom:1005.840000px;}
.yc_c01268{bottom:1008.000000px;}
.yd_c01268{bottom:1008.720000px;}
.y2_c01268{bottom:1045.440000px;}
.y3_c01268{bottom:1048.320000px;}
.y4_c01268{bottom:1049.760000px;}
.y5_c01268{bottom:1050.480000px;}
.y6_c01268{bottom:1051.200000px;}
.y7_c01268{bottom:1051.920000px;}
.y1_c01268{bottom:1103.040000px;}
.h4_c01268{height:31.100625px;}
.he_c01268{height:33.692344px;}
.h9_c01268{height:41.467500px;}
.h6_c01268{height:44.059219px;}
.h5_c01268{height:46.650937px;}
.h8_c01268{height:49.242656px;}
.hd_c01268{height:51.834375px;}
.h3_c01268{height:54.426094px;}
.ha_c01268{height:57.017812px;}
.hb_c01268{height:59.609531px;}
.h7_c01268{height:62.201250px;}
.h2_c01268{height:64.792969px;}
.hc_c01268{height:67.384687px;}
.hf_c01268{height:69.976406px;}
.h1_c01268{height:1146.750000px;}
.h0_c01268{height:1146.960000px;}
.w1_c01268{width:773.250000px;}
.w0_c01268{width:773.280000px;}
.x0_c01268{left:0.000000px;}
.x2_c01268{left:64.800000px;}
.x18_c01268{left:66.960000px;}
.x3b_c01268{left:69.120000px;}
.x31_c01268{left:95.040000px;}
.x3_c01268{left:104.400000px;}
.x42_c01268{left:105.840000px;}
.x55_c01268{left:116.640000px;}
.x4_c01268{left:124.560000px;}
.x43_c01268{left:134.640000px;}
.x32_c01268{left:136.080000px;}
.x4a_c01268{left:138.960000px;}
.xe_c01268{left:144.720000px;}
.x3c_c01268{left:146.880000px;}
.x57_c01268{left:157.680000px;}
.xf_c01268{left:165.600000px;}
.x21_c01268{left:167.760000px;}
.x5c_c01268{left:169.200000px;}
.x2d_c01268{left:177.120000px;}
.x5_c01268{left:185.760000px;}
.x33_c01268{left:188.640000px;}
.x2e_c01268{left:197.280000px;}
.x12_c01268{left:198.720000px;}
.x5d_c01268{left:200.160000px;}
.x28_c01268{left:209.520000px;}
.x34_c01268{left:220.320000px;}
.x4b_c01268{left:221.760000px;}
.x13_c01268{left:228.960000px;}
.x40_c01268{left:230.400000px;}
.x5e_c01268{left:231.840000px;}
.x29_c01268{left:240.480000px;}
.x19_c01268{left:252.720000px;}
.x35_c01268{left:262.080000px;}
.x3d_c01268{left:263.520000px;}
.x22_c01268{left:274.320000px;}
.x6_c01268{left:283.680000px;}
.x4f_c01268{left:285.120000px;}
.x3e_c01268{left:295.920000px;}
.x23_c01268{left:304.560000px;}
.x2f_c01268{left:306.000000px;}
.x7_c01268{left:317.520000px;}
.x59_c01268{left:320.400000px;}
.x3f_c01268{left:328.320000px;}
.x30_c01268{left:339.120000px;}
.x8_c01268{left:347.760000px;}
.x44_c01268{left:350.640000px;}
.x41_c01268{left:360.720000px;}
.x14_c01268{left:362.880000px;}
.x50_c01268{left:371.520000px;}
.x2a_c01268{left:381.600000px;}
.x1a_c01268{left:392.400000px;}
.x5f_c01268{left:393.840000px;}
.x1c_c01268{left:403.920000px;}
.x5a_c01268{left:406.080000px;}
.x51_c01268{left:414.720000px;}
.x9_c01268{left:424.800000px;}
.x58_c01268{left:426.240000px;}
.x4c_c01268{left:436.320000px;}
.x36_c01268{left:437.760000px;}
.x1d_c01268{left:447.120000px;}
.x47_c01268{left:450.720000px;}
.xa_c01268{left:457.200000px;}
.x15_c01268{left:459.360000px;}
.x24_c01268{left:468.720000px;}
.x5b_c01268{left:470.160000px;}
.x1e_c01268{left:479.520000px;}
.x37_c01268{left:490.320000px;}
.x10_c01268{left:501.840000px;}
.x45_c01268{left:513.360000px;}
.x2b_c01268{left:522.720000px;}
.x16_c01268{left:524.160000px;}
.x1b_c01268{left:533.520000px;}
.x60_c01268{left:535.680000px;}
.x25_c01268{left:544.320000px;}
.x48_c01268{left:546.480000px;}
.x52_c01268{left:557.280000px;}
.x2c_c01268{left:566.640000px;}
.x1f_c01268{left:568.800000px;}
.xb_c01268{left:576.720000px;}
.x38_c01268{left:578.160000px;}
.x26_c01268{left:588.960000px;}
.x17_c01268{left:598.320000px;}
.x4d_c01268{left:599.760000px;}
.x3a_c01268{left:609.120000px;}
.xc_c01268{left:610.560000px;}
.x11_c01268{left:619.920000px;}
.x46_c01268{left:622.080000px;}
.x54_c01268{left:632.160000px;}
.x56_c01268{left:633.600000px;}
.xd_c01268{left:641.520000px;}
.x49_c01268{left:643.680000px;}
.x1_c01268{left:654.480000px;}
.x20_c01268{left:665.280000px;}
.x53_c01268{left:666.720000px;}
.x27_c01268{left:674.640000px;}
.x39_c01268{left:676.080000px;}
.x4e_c01268{left:687.600000px;}
@media print{
.v1_c01268{vertical-align:-2.560000pt;}
.v0_c01268{vertical-align:0.000000pt;}
.v2_c01268{vertical-align:10.240000pt;}
.ls0_c01268{letter-spacing:0.000000pt;}
.ws1_c01268{word-spacing:-4.211840pt;}
.ws0_c01268{word-spacing:-3.381120pt;}
.ws2_c01268{word-spacing:-2.986667pt;}
.ws3_c01268{word-spacing:0.000000pt;}
.fs2_c01268{font-size:30.720000pt;}
.fsc_c01268{font-size:33.280000pt;}
.fs7_c01268{font-size:40.960000pt;}
.fs4_c01268{font-size:43.520000pt;}
.fs3_c01268{font-size:46.080000pt;}
.fs6_c01268{font-size:48.640000pt;}
.fsb_c01268{font-size:51.200000pt;}
.fs1_c01268{font-size:53.760000pt;}
.fs8_c01268{font-size:56.320000pt;}
.fs9_c01268{font-size:58.880000pt;}
.fs5_c01268{font-size:61.440000pt;}
.fs0_c01268{font-size:64.000000pt;}
.fsa_c01268{font-size:66.560000pt;}
.fsd_c01268{font-size:69.120000pt;}
.y0_c01268{bottom:0.000000pt;}
.y7b_c01268{bottom:63.360000pt;}
.y79_c01268{bottom:64.000000pt;}
.y7a_c01268{bottom:64.640000pt;}
.y78_c01268{bottom:67.200000pt;}
.y77_c01268{bottom:108.160000pt;}
.y76_c01268{bottom:109.440000pt;}
.y75_c01268{bottom:110.080000pt;}
.y74_c01268{bottom:112.640000pt;}
.y73_c01268{bottom:113.280000pt;}
.y72_c01268{bottom:115.200000pt;}
.y71_c01268{bottom:115.840000pt;}
.y70_c01268{bottom:117.120000pt;}
.y6f_c01268{bottom:149.120000pt;}
.y6e_c01268{bottom:149.760000pt;}
.y6c_c01268{bottom:150.400000pt;}
.y6d_c01268{bottom:151.040000pt;}
.y6b_c01268{bottom:151.680000pt;}
.y6a_c01268{bottom:184.960000pt;}
.y69_c01268{bottom:187.520000pt;}
.y68_c01268{bottom:188.160000pt;}
.y67_c01268{bottom:188.800000pt;}
.y66_c01268{bottom:190.080000pt;}
.y65_c01268{bottom:191.360000pt;}
.y64_c01268{bottom:193.280000pt;}
.y62_c01268{bottom:224.640000pt;}
.y61_c01268{bottom:225.280000pt;}
.y60_c01268{bottom:225.920000pt;}
.y63_c01268{bottom:226.560000pt;}
.y5f_c01268{bottom:228.480000pt;}
.y5e_c01268{bottom:229.760000pt;}
.y5d_c01268{bottom:230.400000pt;}
.y5c_c01268{bottom:262.400000pt;}
.y5a_c01268{bottom:263.040000pt;}
.y5b_c01268{bottom:264.320000pt;}
.y57_c01268{bottom:264.960000pt;}
.y59_c01268{bottom:265.600000pt;}
.y58_c01268{bottom:266.880000pt;}
.y54_c01268{bottom:301.440000pt;}
.y56_c01268{bottom:302.720000pt;}
.y55_c01268{bottom:303.360000pt;}
.y53_c01268{bottom:304.000000pt;}
.y52_c01268{bottom:307.200000pt;}
.y51_c01268{bottom:339.200000pt;}
.y50_c01268{bottom:339.840000pt;}
.y4f_c01268{bottom:341.760000pt;}
.y4e_c01268{bottom:343.040000pt;}
.y4d_c01268{bottom:344.320000pt;}
.y4a_c01268{bottom:377.600000pt;}
.y49_c01268{bottom:378.240000pt;}
.y4c_c01268{bottom:379.520000pt;}
.y4b_c01268{bottom:380.160000pt;}
.y48_c01268{bottom:381.440000pt;}
.y47_c01268{bottom:382.080000pt;}
.y46_c01268{bottom:383.360000pt;}
.y45_c01268{bottom:416.000000pt;}
.y44_c01268{bottom:417.920000pt;}
.y43_c01268{bottom:418.560000pt;}
.y42_c01268{bottom:419.200000pt;}
.y41_c01268{bottom:419.840000pt;}
.y3f_c01268{bottom:453.760000pt;}
.y3e_c01268{bottom:454.400000pt;}
.y3b_c01268{bottom:455.040000pt;}
.y3c_c01268{bottom:455.680000pt;}
.y40_c01268{bottom:456.320000pt;}
.y3d_c01268{bottom:456.960000pt;}
.y3a_c01268{bottom:492.160000pt;}
.y38_c01268{bottom:492.800000pt;}
.y39_c01268{bottom:494.720000pt;}
.y37_c01268{bottom:495.360000pt;}
.y35_c01268{bottom:539.520000pt;}
.y36_c01268{bottom:540.160000pt;}
.y34_c01268{bottom:540.800000pt;}
.y31_c01268{bottom:577.280000pt;}
.y30_c01268{bottom:577.920000pt;}
.y33_c01268{bottom:579.840000pt;}
.y32_c01268{bottom:580.480000pt;}
.y2f_c01268{bottom:616.320000pt;}
.y2d_c01268{bottom:618.240000pt;}
.y2e_c01268{bottom:618.880000pt;}
.y28_c01268{bottom:653.440000pt;}
.y2c_c01268{bottom:654.080000pt;}
.y2a_c01268{bottom:656.000000pt;}
.y29_c01268{bottom:656.640000pt;}
.y2b_c01268{bottom:657.280000pt;}
.y25_c01268{bottom:691.200000pt;}
.y26_c01268{bottom:692.480000pt;}
.y23_c01268{bottom:693.760000pt;}
.y24_c01268{bottom:694.400000pt;}
.y27_c01268{bottom:695.040000pt;}
.y22_c01268{bottom:730.240000pt;}
.y21_c01268{bottom:730.880000pt;}
.y1e_c01268{bottom:732.160000pt;}
.y1f_c01268{bottom:732.800000pt;}
.y20_c01268{bottom:733.440000pt;}
.y1a_c01268{bottom:777.600000pt;}
.y19_c01268{bottom:778.240000pt;}
.y1d_c01268{bottom:778.880000pt;}
.y1b_c01268{bottom:780.160000pt;}
.y1c_c01268{bottom:780.800000pt;}
.y14_c01268{bottom:814.080000pt;}
.y15_c01268{bottom:814.720000pt;}
.y16_c01268{bottom:816.640000pt;}
.y18_c01268{bottom:819.200000pt;}
.y17_c01268{bottom:819.840000pt;}
.ye_c01268{bottom:851.840000pt;}
.yf_c01268{bottom:853.120000pt;}
.y13_c01268{bottom:854.400000pt;}
.y12_c01268{bottom:855.040000pt;}
.y10_c01268{bottom:855.680000pt;}
.y11_c01268{bottom:856.320000pt;}
.y9_c01268{bottom:891.520000pt;}
.y8_c01268{bottom:892.160000pt;}
.yb_c01268{bottom:893.440000pt;}
.ya_c01268{bottom:894.080000pt;}
.yc_c01268{bottom:896.000000pt;}
.yd_c01268{bottom:896.640000pt;}
.y2_c01268{bottom:929.280000pt;}
.y3_c01268{bottom:931.840000pt;}
.y4_c01268{bottom:933.120000pt;}
.y5_c01268{bottom:933.760000pt;}
.y6_c01268{bottom:934.400000pt;}
.y7_c01268{bottom:935.040000pt;}
.y1_c01268{bottom:980.480000pt;}
.h4_c01268{height:27.645000pt;}
.he_c01268{height:29.948750pt;}
.h9_c01268{height:36.860000pt;}
.h6_c01268{height:39.163750pt;}
.h5_c01268{height:41.467500pt;}
.h8_c01268{height:43.771250pt;}
.hd_c01268{height:46.075000pt;}
.h3_c01268{height:48.378750pt;}
.ha_c01268{height:50.682500pt;}
.hb_c01268{height:52.986250pt;}
.h7_c01268{height:55.290000pt;}
.h2_c01268{height:57.593750pt;}
.hc_c01268{height:59.897500pt;}
.hf_c01268{height:62.201250pt;}
.h1_c01268{height:1019.333333pt;}
.h0_c01268{height:1019.520000pt;}
.w1_c01268{width:687.333333pt;}
.w0_c01268{width:687.360000pt;}
.x0_c01268{left:0.000000pt;}
.x2_c01268{left:57.600000pt;}
.x18_c01268{left:59.520000pt;}
.x3b_c01268{left:61.440000pt;}
.x31_c01268{left:84.480000pt;}
.x3_c01268{left:92.800000pt;}
.x42_c01268{left:94.080000pt;}
.x55_c01268{left:103.680000pt;}
.x4_c01268{left:110.720000pt;}
.x43_c01268{left:119.680000pt;}
.x32_c01268{left:120.960000pt;}
.x4a_c01268{left:123.520000pt;}
.xe_c01268{left:128.640000pt;}
.x3c_c01268{left:130.560000pt;}
.x57_c01268{left:140.160000pt;}
.xf_c01268{left:147.200000pt;}
.x21_c01268{left:149.120000pt;}
.x5c_c01268{left:150.400000pt;}
.x2d_c01268{left:157.440000pt;}
.x5_c01268{left:165.120000pt;}
.x33_c01268{left:167.680000pt;}
.x2e_c01268{left:175.360000pt;}
.x12_c01268{left:176.640000pt;}
.x5d_c01268{left:177.920000pt;}
.x28_c01268{left:186.240000pt;}
.x34_c01268{left:195.840000pt;}
.x4b_c01268{left:197.120000pt;}
.x13_c01268{left:203.520000pt;}
.x40_c01268{left:204.800000pt;}
.x5e_c01268{left:206.080000pt;}
.x29_c01268{left:213.760000pt;}
.x19_c01268{left:224.640000pt;}
.x35_c01268{left:232.960000pt;}
.x3d_c01268{left:234.240000pt;}
.x22_c01268{left:243.840000pt;}
.x6_c01268{left:252.160000pt;}
.x4f_c01268{left:253.440000pt;}
.x3e_c01268{left:263.040000pt;}
.x23_c01268{left:270.720000pt;}
.x2f_c01268{left:272.000000pt;}
.x7_c01268{left:282.240000pt;}
.x59_c01268{left:284.800000pt;}
.x3f_c01268{left:291.840000pt;}
.x30_c01268{left:301.440000pt;}
.x8_c01268{left:309.120000pt;}
.x44_c01268{left:311.680000pt;}
.x41_c01268{left:320.640000pt;}
.x14_c01268{left:322.560000pt;}
.x50_c01268{left:330.240000pt;}
.x2a_c01268{left:339.200000pt;}
.x1a_c01268{left:348.800000pt;}
.x5f_c01268{left:350.080000pt;}
.x1c_c01268{left:359.040000pt;}
.x5a_c01268{left:360.960000pt;}
.x51_c01268{left:368.640000pt;}
.x9_c01268{left:377.600000pt;}
.x58_c01268{left:378.880000pt;}
.x4c_c01268{left:387.840000pt;}
.x36_c01268{left:389.120000pt;}
.x1d_c01268{left:397.440000pt;}
.x47_c01268{left:400.640000pt;}
.xa_c01268{left:406.400000pt;}
.x15_c01268{left:408.320000pt;}
.x24_c01268{left:416.640000pt;}
.x5b_c01268{left:417.920000pt;}
.x1e_c01268{left:426.240000pt;}
.x37_c01268{left:435.840000pt;}
.x10_c01268{left:446.080000pt;}
.x45_c01268{left:456.320000pt;}
.x2b_c01268{left:464.640000pt;}
.x16_c01268{left:465.920000pt;}
.x1b_c01268{left:474.240000pt;}
.x60_c01268{left:476.160000pt;}
.x25_c01268{left:483.840000pt;}
.x48_c01268{left:485.760000pt;}
.x52_c01268{left:495.360000pt;}
.x2c_c01268{left:503.680000pt;}
.x1f_c01268{left:505.600000pt;}
.xb_c01268{left:512.640000pt;}
.x38_c01268{left:513.920000pt;}
.x26_c01268{left:523.520000pt;}
.x17_c01268{left:531.840000pt;}
.x4d_c01268{left:533.120000pt;}
.x3a_c01268{left:541.440000pt;}
.xc_c01268{left:542.720000pt;}
.x11_c01268{left:551.040000pt;}
.x46_c01268{left:552.960000pt;}
.x54_c01268{left:561.920000pt;}
.x56_c01268{left:563.200000pt;}
.xd_c01268{left:570.240000pt;}
.x49_c01268{left:572.160000pt;}
.x1_c01268{left:581.760000pt;}
.x20_c01268{left:591.360000pt;}
.x53_c01268{left:592.640000pt;}
.x27_c01268{left:599.680000pt;}
.x39_c01268{left:600.960000pt;}
.x4e_c01268{left:611.200000pt;}
}





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

.ir_c01269:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01269{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01269;src:url('chunks/assets/font_2cece448cb994c77881ae0cb.woff2')format("woff");}.ff1_c01269{font-family:ff1_c01269;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m59_c01269{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mf_c01269{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_c01269{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);}
.m56_c01269{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01269{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);}
.m30_c01269{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m32_c01269{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m29_c01269{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m24_c01269{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m5b_c01269{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m41_c01269{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m34_c01269{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01269{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01269{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m18_c01269{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mb_c01269{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);}
.m22_c01269{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);}
.m57_c01269{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m14_c01269{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.me_c01269{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m33_c01269{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);}
.m2_c01269{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.ma_c01269{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);}
.m5_c01269{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1_c01269{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m0_c01269{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);}
.m4c_c01269{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01269{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.md_c01269{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);}
.m4f_c01269{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);}
.m52_c01269{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m23_c01269{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);}
.m2e_c01269{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_c01269{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);}
.m27_c01269{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);}
.m28_c01269{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m48_c01269{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m7_c01269{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);}
.m3b_c01269{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01269{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);}
.m4a_c01269{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01269{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);}
.m36_c01269{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);}
.m37_c01269{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m17_c01269{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m55_c01269{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01269{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m21_c01269{transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);}
.m13_c01269{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01269{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m35_c01269{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);}
.m4e_c01269{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m19_c01269{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);}
.m45_c01269{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m44_c01269{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01269{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m8_c01269{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m3_c01269{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);}
.m3f_c01269{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m50_c01269{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m38_c01269{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01269{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);}
.m42_c01269{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m15_c01269{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m16_c01269{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m58_c01269{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m47_c01269{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);}
.m5c_c01269{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);}
.m10_c01269{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m12_c01269{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.mc_c01269{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m4d_c01269{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_c01269{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01269{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m9_c01269{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01269{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m39_c01269{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m20_c01269{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m11_c01269{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);}
.m5a_c01269{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m4_c01269{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m51_c01269{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m53_c01269{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m46_c01269{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);}
.m40_c01269{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);}
.m25_c01269{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01269{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01269{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m31_c01269{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m43_c01269{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01269{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m54_c01269{transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);}
.m49_c01269{transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);}
.v0_c01269{vertical-align:0.000000px;}
.ls0_c01269{letter-spacing:0.000000px;}
.sc__c01269{text-shadow:none;}
.sc0_c01269{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01269{-webkit-text-stroke:0px transparent;}
.sc0_c01269{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01269{word-spacing:0.000000px;}
.fc0_c01269{color:transparent;}
.fs3_c01269{font-size:31.680000px;}
.fs7_c01269{font-size:34.560000px;}
.fs8_c01269{font-size:37.440000px;}
.fsa_c01269{font-size:43.200000px;}
.fs2_c01269{font-size:46.080000px;}
.fs4_c01269{font-size:48.960000px;}
.fs6_c01269{font-size:51.840000px;}
.fs1_c01269{font-size:54.720000px;}
.fsc_c01269{font-size:57.600000px;}
.fs9_c01269{font-size:60.480000px;}
.fsd_c01269{font-size:63.360000px;}
.fsb_c01269{font-size:66.240000px;}
.fs5_c01269{font-size:69.120000px;}
.fse_c01269{font-size:72.000000px;}
.fs0_c01269{font-size:74.880000px;}
.y0_c01269{bottom:0.000000px;}
.y81_c01269{bottom:23.760000px;}
.y7f_c01269{bottom:24.480000px;}
.y80_c01269{bottom:26.640000px;}
.y7e_c01269{bottom:27.360000px;}
.y7d_c01269{bottom:28.080000px;}
.y7c_c01269{bottom:30.960000px;}
.y7b_c01269{bottom:35.280000px;}
.y7a_c01269{bottom:66.960000px;}
.y78_c01269{bottom:69.120000px;}
.y79_c01269{bottom:69.840000px;}
.y77_c01269{bottom:75.600000px;}
.y76_c01269{bottom:77.760000px;}
.y73_c01269{bottom:110.880000px;}
.y75_c01269{bottom:112.320000px;}
.y74_c01269{bottom:113.040000px;}
.y72_c01269{bottom:115.200000px;}
.y71_c01269{bottom:116.640000px;}
.y70_c01269{bottom:117.360000px;}
.y6f_c01269{bottom:119.520000px;}
.y6c_c01269{bottom:153.360000px;}
.y6b_c01269{bottom:154.080000px;}
.y6e_c01269{bottom:155.520000px;}
.y6d_c01269{bottom:156.960000px;}
.y6a_c01269{bottom:158.400000px;}
.y69_c01269{bottom:162.720000px;}
.y68_c01269{bottom:165.600000px;}
.y67_c01269{bottom:196.560000px;}
.y66_c01269{bottom:198.720000px;}
.y65_c01269{bottom:199.440000px;}
.y64_c01269{bottom:200.160000px;}
.y63_c01269{bottom:202.320000px;}
.y62_c01269{bottom:203.040000px;}
.y61_c01269{bottom:203.760000px;}
.y60_c01269{bottom:208.080000px;}
.y5f_c01269{bottom:239.040000px;}
.y5e_c01269{bottom:240.480000px;}
.y5d_c01269{bottom:244.080000px;}
.y5c_c01269{bottom:245.520000px;}
.y5b_c01269{bottom:246.240000px;}
.y5a_c01269{bottom:246.960000px;}
.y59_c01269{bottom:249.120000px;}
.y57_c01269{bottom:282.960000px;}
.y55_c01269{bottom:284.400000px;}
.y58_c01269{bottom:285.120000px;}
.y56_c01269{bottom:285.840000px;}
.y54_c01269{bottom:288.000000px;}
.y53_c01269{bottom:289.440000px;}
.y51_c01269{bottom:326.880000px;}
.y52_c01269{bottom:328.320000px;}
.y50_c01269{bottom:329.040000px;}
.y4f_c01269{bottom:390.240000px;}
.y4e_c01269{bottom:393.120000px;}
.y4d_c01269{bottom:393.840000px;}
.y4c_c01269{bottom:395.280000px;}
.y4b_c01269{bottom:397.440000px;}
.y47_c01269{bottom:433.440000px;}
.y48_c01269{bottom:434.160000px;}
.y4a_c01269{bottom:435.600000px;}
.y49_c01269{bottom:436.320000px;}
.y46_c01269{bottom:437.040000px;}
.y45_c01269{bottom:438.480000px;}
.y41_c01269{bottom:475.920000px;}
.y43_c01269{bottom:476.640000px;}
.y44_c01269{bottom:478.080000px;}
.y42_c01269{bottom:478.800000px;}
.y40_c01269{bottom:479.520000px;}
.y3f_c01269{bottom:480.960000px;}
.y3e_c01269{bottom:483.120000px;}
.y3a_c01269{bottom:519.120000px;}
.y3b_c01269{bottom:519.840000px;}
.y3d_c01269{bottom:520.560000px;}
.y39_c01269{bottom:521.280000px;}
.y3c_c01269{bottom:522.000000px;}
.y37_c01269{bottom:561.600000px;}
.y38_c01269{bottom:562.320000px;}
.y36_c01269{bottom:563.040000px;}
.y35_c01269{bottom:563.760000px;}
.y34_c01269{bottom:565.200000px;}
.y33_c01269{bottom:617.760000px;}
.y32_c01269{bottom:618.480000px;}
.y31_c01269{bottom:619.920000px;}
.y30_c01269{bottom:658.800000px;}
.y2d_c01269{bottom:659.520000px;}
.y2e_c01269{bottom:661.680000px;}
.y2f_c01269{bottom:662.400000px;}
.y28_c01269{bottom:702.000000px;}
.y29_c01269{bottom:702.720000px;}
.y2b_c01269{bottom:704.880000px;}
.y2a_c01269{bottom:705.600000px;}
.y2c_c01269{bottom:706.320000px;}
.y25_c01269{bottom:745.200000px;}
.y26_c01269{bottom:748.080000px;}
.y27_c01269{bottom:748.800000px;}
.y21_c01269{bottom:787.680000px;}
.y23_c01269{bottom:788.400000px;}
.y1f_c01269{bottom:789.840000px;}
.y20_c01269{bottom:790.560000px;}
.y22_c01269{bottom:791.280000px;}
.y24_c01269{bottom:792.000000px;}
.y1c_c01269{bottom:831.600000px;}
.y1b_c01269{bottom:832.320000px;}
.y1d_c01269{bottom:833.760000px;}
.y1e_c01269{bottom:834.480000px;}
.y16_c01269{bottom:871.920000px;}
.y19_c01269{bottom:874.800000px;}
.y17_c01269{bottom:876.240000px;}
.y18_c01269{bottom:876.960000px;}
.y1a_c01269{bottom:877.680000px;}
.y11_c01269{bottom:915.120000px;}
.y13_c01269{bottom:915.840000px;}
.y15_c01269{bottom:917.280000px;}
.y12_c01269{bottom:919.440000px;}
.y14_c01269{bottom:920.160000px;}
.yd_c01269{bottom:956.880000px;}
.yf_c01269{bottom:959.760000px;}
.ye_c01269{bottom:961.920000px;}
.y10_c01269{bottom:962.640000px;}
.y7_c01269{bottom:1000.800000px;}
.y8_c01269{bottom:1002.240000px;}
.y9_c01269{bottom:1003.680000px;}
.ya_c01269{bottom:1004.400000px;}
.yb_c01269{bottom:1005.120000px;}
.yc_c01269{bottom:1005.840000px;}
.y2_c01269{bottom:1042.560000px;}
.y5_c01269{bottom:1045.440000px;}
.y3_c01269{bottom:1046.880000px;}
.y4_c01269{bottom:1048.320000px;}
.y6_c01269{bottom:1049.760000px;}
.y1_c01269{bottom:1093.680000px;}
.h5_c01269{height:28.508906px;}
.h9_c01269{height:31.100625px;}
.ha_c01269{height:33.692344px;}
.hc_c01269{height:38.875781px;}
.h4_c01269{height:41.467500px;}
.h6_c01269{height:44.059219px;}
.h8_c01269{height:46.650937px;}
.h3_c01269{height:49.242656px;}
.he_c01269{height:51.834375px;}
.hb_c01269{height:54.426094px;}
.hf_c01269{height:57.017812px;}
.hd_c01269{height:59.609531px;}
.h7_c01269{height:62.201250px;}
.h10_c01269{height:64.792969px;}
.h2_c01269{height:67.384687px;}
.h0_c01269{height:1140.480000px;}
.h1_c01269{height:1140.750000px;}
.w0_c01269{width:764.640000px;}
.w1_c01269{width:765.000000px;}
.x0_c01269{left:0.000000px;}
.xb_c01269{left:60.480000px;}
.x2_c01269{left:61.920000px;}
.x4d_c01269{left:63.360000px;}
.x4e_c01269{left:81.360000px;}
.x36_c01269{left:90.000000px;}
.xc_c01269{left:100.080000px;}
.x33_c01269{left:110.880000px;}
.x28_c01269{left:119.520000px;}
.x57_c01269{left:120.960000px;}
.xd_c01269{left:129.600000px;}
.x53_c01269{left:131.760000px;}
.x3_c01269{left:141.120000px;}
.x37_c01269{left:149.760000px;}
.x4f_c01269{left:151.200000px;}
.x58_c01269{left:152.640000px;}
.x15_c01269{left:162.000000px;}
.x4_c01269{left:170.640000px;}
.x3f_c01269{left:172.800000px;}
.x2f_c01269{left:174.960000px;}
.x48_c01269{left:177.120000px;}
.x4c_c01269{left:182.160000px;}
.x1e_c01269{left:193.680000px;}
.x44_c01269{left:203.760000px;}
.x24_c01269{left:205.200000px;}
.x46_c01269{left:213.840000px;}
.x5a_c01269{left:215.280000px;}
.x16_c01269{left:224.640000px;}
.x38_c01269{left:226.080000px;}
.x54_c01269{left:228.960000px;}
.xe_c01269{left:236.160000px;}
.x1b_c01269{left:237.600000px;}
.x29_c01269{left:246.960000px;}
.x34_c01269{left:257.760000px;}
.x1f_c01269{left:259.200000px;}
.x25_c01269{left:268.560000px;}
.x30_c01269{left:270.000000px;}
.x40_c01269{left:278.640000px;}
.x5_c01269{left:290.160000px;}
.x47_c01269{left:300.240000px;}
.x59_c01269{left:301.680000px;}
.x6_c01269{left:312.480000px;}
.x41_c01269{left:322.560000px;}
.x39_c01269{left:333.360000px;}
.xf_c01269{left:334.800000px;}
.x50_c01269{left:344.160000px;}
.x7_c01269{left:345.600000px;}
.x45_c01269{left:354.240000px;}
.x10_c01269{left:356.400000px;}
.x17_c01269{left:366.480000px;}
.x3a_c01269{left:375.840000px;}
.x2c_c01269{left:378.000000px;}
.x3c_c01269{left:387.360000px;}
.x11_c01269{left:388.800000px;}
.x31_c01269{left:398.160000px;}
.x8_c01269{left:409.680000px;}
.x20_c01269{left:420.480000px;}
.x51_c01269{left:431.280000px;}
.x18_c01269{left:432.720000px;}
.x49_c01269{left:441.360000px;}
.x42_c01269{left:453.600000px;}
.x52_c01269{left:464.400000px;}
.x26_c01269{left:474.480000px;}
.x21_c01269{left:475.920000px;}
.x1c_c01269{left:486.000000px;}
.x3b_c01269{left:496.080000px;}
.x19_c01269{left:501.840000px;}
.x22_c01269{left:507.600000px;}
.x12_c01269{left:519.120000px;}
.x27_c01269{left:528.480000px;}
.x9_c01269{left:529.920000px;}
.x4a_c01269{left:540.000000px;}
.x13_c01269{left:551.520000px;}
.x2d_c01269{left:563.040000px;}
.x43_c01269{left:572.400000px;}
.x35_c01269{left:583.920000px;}
.x14_c01269{left:585.360000px;}
.x2a_c01269{left:594.720000px;}
.x4b_c01269{left:606.240000px;}
.x3d_c01269{left:616.320000px;}
.x1d_c01269{left:617.760000px;}
.x1a_c01269{left:619.200000px;}
.x23_c01269{left:626.400000px;}
.x2b_c01269{left:627.840000px;}
.x56_c01269{left:639.360000px;}
.xa_c01269{left:650.160000px;}
.x3e_c01269{left:658.800000px;}
.x55_c01269{left:660.240000px;}
.x32_c01269{left:671.040000px;}
.x1_c01269{left:673.920000px;}
.x2e_c01269{left:681.840000px;}
@media print{
.v0_c01269{vertical-align:0.000000pt;}
.ls0_c01269{letter-spacing:0.000000pt;}
.ws0_c01269{word-spacing:0.000000pt;}
.fs3_c01269{font-size:28.160000pt;}
.fs7_c01269{font-size:30.720000pt;}
.fs8_c01269{font-size:33.280000pt;}
.fsa_c01269{font-size:38.400000pt;}
.fs2_c01269{font-size:40.960000pt;}
.fs4_c01269{font-size:43.520000pt;}
.fs6_c01269{font-size:46.080000pt;}
.fs1_c01269{font-size:48.640000pt;}
.fsc_c01269{font-size:51.200000pt;}
.fs9_c01269{font-size:53.760000pt;}
.fsd_c01269{font-size:56.320000pt;}
.fsb_c01269{font-size:58.880000pt;}
.fs5_c01269{font-size:61.440000pt;}
.fse_c01269{font-size:64.000000pt;}
.fs0_c01269{font-size:66.560000pt;}
.y0_c01269{bottom:0.000000pt;}
.y81_c01269{bottom:21.120000pt;}
.y7f_c01269{bottom:21.760000pt;}
.y80_c01269{bottom:23.680000pt;}
.y7e_c01269{bottom:24.320000pt;}
.y7d_c01269{bottom:24.960000pt;}
.y7c_c01269{bottom:27.520000pt;}
.y7b_c01269{bottom:31.360000pt;}
.y7a_c01269{bottom:59.520000pt;}
.y78_c01269{bottom:61.440000pt;}
.y79_c01269{bottom:62.080000pt;}
.y77_c01269{bottom:67.200000pt;}
.y76_c01269{bottom:69.120000pt;}
.y73_c01269{bottom:98.560000pt;}
.y75_c01269{bottom:99.840000pt;}
.y74_c01269{bottom:100.480000pt;}
.y72_c01269{bottom:102.400000pt;}
.y71_c01269{bottom:103.680000pt;}
.y70_c01269{bottom:104.320000pt;}
.y6f_c01269{bottom:106.240000pt;}
.y6c_c01269{bottom:136.320000pt;}
.y6b_c01269{bottom:136.960000pt;}
.y6e_c01269{bottom:138.240000pt;}
.y6d_c01269{bottom:139.520000pt;}
.y6a_c01269{bottom:140.800000pt;}
.y69_c01269{bottom:144.640000pt;}
.y68_c01269{bottom:147.200000pt;}
.y67_c01269{bottom:174.720000pt;}
.y66_c01269{bottom:176.640000pt;}
.y65_c01269{bottom:177.280000pt;}
.y64_c01269{bottom:177.920000pt;}
.y63_c01269{bottom:179.840000pt;}
.y62_c01269{bottom:180.480000pt;}
.y61_c01269{bottom:181.120000pt;}
.y60_c01269{bottom:184.960000pt;}
.y5f_c01269{bottom:212.480000pt;}
.y5e_c01269{bottom:213.760000pt;}
.y5d_c01269{bottom:216.960000pt;}
.y5c_c01269{bottom:218.240000pt;}
.y5b_c01269{bottom:218.880000pt;}
.y5a_c01269{bottom:219.520000pt;}
.y59_c01269{bottom:221.440000pt;}
.y57_c01269{bottom:251.520000pt;}
.y55_c01269{bottom:252.800000pt;}
.y58_c01269{bottom:253.440000pt;}
.y56_c01269{bottom:254.080000pt;}
.y54_c01269{bottom:256.000000pt;}
.y53_c01269{bottom:257.280000pt;}
.y51_c01269{bottom:290.560000pt;}
.y52_c01269{bottom:291.840000pt;}
.y50_c01269{bottom:292.480000pt;}
.y4f_c01269{bottom:346.880000pt;}
.y4e_c01269{bottom:349.440000pt;}
.y4d_c01269{bottom:350.080000pt;}
.y4c_c01269{bottom:351.360000pt;}
.y4b_c01269{bottom:353.280000pt;}
.y47_c01269{bottom:385.280000pt;}
.y48_c01269{bottom:385.920000pt;}
.y4a_c01269{bottom:387.200000pt;}
.y49_c01269{bottom:387.840000pt;}
.y46_c01269{bottom:388.480000pt;}
.y45_c01269{bottom:389.760000pt;}
.y41_c01269{bottom:423.040000pt;}
.y43_c01269{bottom:423.680000pt;}
.y44_c01269{bottom:424.960000pt;}
.y42_c01269{bottom:425.600000pt;}
.y40_c01269{bottom:426.240000pt;}
.y3f_c01269{bottom:427.520000pt;}
.y3e_c01269{bottom:429.440000pt;}
.y3a_c01269{bottom:461.440000pt;}
.y3b_c01269{bottom:462.080000pt;}
.y3d_c01269{bottom:462.720000pt;}
.y39_c01269{bottom:463.360000pt;}
.y3c_c01269{bottom:464.000000pt;}
.y37_c01269{bottom:499.200000pt;}
.y38_c01269{bottom:499.840000pt;}
.y36_c01269{bottom:500.480000pt;}
.y35_c01269{bottom:501.120000pt;}
.y34_c01269{bottom:502.400000pt;}
.y33_c01269{bottom:549.120000pt;}
.y32_c01269{bottom:549.760000pt;}
.y31_c01269{bottom:551.040000pt;}
.y30_c01269{bottom:585.600000pt;}
.y2d_c01269{bottom:586.240000pt;}
.y2e_c01269{bottom:588.160000pt;}
.y2f_c01269{bottom:588.800000pt;}
.y28_c01269{bottom:624.000000pt;}
.y29_c01269{bottom:624.640000pt;}
.y2b_c01269{bottom:626.560000pt;}
.y2a_c01269{bottom:627.200000pt;}
.y2c_c01269{bottom:627.840000pt;}
.y25_c01269{bottom:662.400000pt;}
.y26_c01269{bottom:664.960000pt;}
.y27_c01269{bottom:665.600000pt;}
.y21_c01269{bottom:700.160000pt;}
.y23_c01269{bottom:700.800000pt;}
.y1f_c01269{bottom:702.080000pt;}
.y20_c01269{bottom:702.720000pt;}
.y22_c01269{bottom:703.360000pt;}
.y24_c01269{bottom:704.000000pt;}
.y1c_c01269{bottom:739.200000pt;}
.y1b_c01269{bottom:739.840000pt;}
.y1d_c01269{bottom:741.120000pt;}
.y1e_c01269{bottom:741.760000pt;}
.y16_c01269{bottom:775.040000pt;}
.y19_c01269{bottom:777.600000pt;}
.y17_c01269{bottom:778.880000pt;}
.y18_c01269{bottom:779.520000pt;}
.y1a_c01269{bottom:780.160000pt;}
.y11_c01269{bottom:813.440000pt;}
.y13_c01269{bottom:814.080000pt;}
.y15_c01269{bottom:815.360000pt;}
.y12_c01269{bottom:817.280000pt;}
.y14_c01269{bottom:817.920000pt;}
.yd_c01269{bottom:850.560000pt;}
.yf_c01269{bottom:853.120000pt;}
.ye_c01269{bottom:855.040000pt;}
.y10_c01269{bottom:855.680000pt;}
.y7_c01269{bottom:889.600000pt;}
.y8_c01269{bottom:890.880000pt;}
.y9_c01269{bottom:892.160000pt;}
.ya_c01269{bottom:892.800000pt;}
.yb_c01269{bottom:893.440000pt;}
.yc_c01269{bottom:894.080000pt;}
.y2_c01269{bottom:926.720000pt;}
.y5_c01269{bottom:929.280000pt;}
.y3_c01269{bottom:930.560000pt;}
.y4_c01269{bottom:931.840000pt;}
.y6_c01269{bottom:933.120000pt;}
.y1_c01269{bottom:972.160000pt;}
.h5_c01269{height:25.341250pt;}
.h9_c01269{height:27.645000pt;}
.ha_c01269{height:29.948750pt;}
.hc_c01269{height:34.556250pt;}
.h4_c01269{height:36.860000pt;}
.h6_c01269{height:39.163750pt;}
.h8_c01269{height:41.467500pt;}
.h3_c01269{height:43.771250pt;}
.he_c01269{height:46.075000pt;}
.hb_c01269{height:48.378750pt;}
.hf_c01269{height:50.682500pt;}
.hd_c01269{height:52.986250pt;}
.h7_c01269{height:55.290000pt;}
.h10_c01269{height:57.593750pt;}
.h2_c01269{height:59.897500pt;}
.h0_c01269{height:1013.760000pt;}
.h1_c01269{height:1014.000000pt;}
.w0_c01269{width:679.680000pt;}
.w1_c01269{width:680.000000pt;}
.x0_c01269{left:0.000000pt;}
.xb_c01269{left:53.760000pt;}
.x2_c01269{left:55.040000pt;}
.x4d_c01269{left:56.320000pt;}
.x4e_c01269{left:72.320000pt;}
.x36_c01269{left:80.000000pt;}
.xc_c01269{left:88.960000pt;}
.x33_c01269{left:98.560000pt;}
.x28_c01269{left:106.240000pt;}
.x57_c01269{left:107.520000pt;}
.xd_c01269{left:115.200000pt;}
.x53_c01269{left:117.120000pt;}
.x3_c01269{left:125.440000pt;}
.x37_c01269{left:133.120000pt;}
.x4f_c01269{left:134.400000pt;}
.x58_c01269{left:135.680000pt;}
.x15_c01269{left:144.000000pt;}
.x4_c01269{left:151.680000pt;}
.x3f_c01269{left:153.600000pt;}
.x2f_c01269{left:155.520000pt;}
.x48_c01269{left:157.440000pt;}
.x4c_c01269{left:161.920000pt;}
.x1e_c01269{left:172.160000pt;}
.x44_c01269{left:181.120000pt;}
.x24_c01269{left:182.400000pt;}
.x46_c01269{left:190.080000pt;}
.x5a_c01269{left:191.360000pt;}
.x16_c01269{left:199.680000pt;}
.x38_c01269{left:200.960000pt;}
.x54_c01269{left:203.520000pt;}
.xe_c01269{left:209.920000pt;}
.x1b_c01269{left:211.200000pt;}
.x29_c01269{left:219.520000pt;}
.x34_c01269{left:229.120000pt;}
.x1f_c01269{left:230.400000pt;}
.x25_c01269{left:238.720000pt;}
.x30_c01269{left:240.000000pt;}
.x40_c01269{left:247.680000pt;}
.x5_c01269{left:257.920000pt;}
.x47_c01269{left:266.880000pt;}
.x59_c01269{left:268.160000pt;}
.x6_c01269{left:277.760000pt;}
.x41_c01269{left:286.720000pt;}
.x39_c01269{left:296.320000pt;}
.xf_c01269{left:297.600000pt;}
.x50_c01269{left:305.920000pt;}
.x7_c01269{left:307.200000pt;}
.x45_c01269{left:314.880000pt;}
.x10_c01269{left:316.800000pt;}
.x17_c01269{left:325.760000pt;}
.x3a_c01269{left:334.080000pt;}
.x2c_c01269{left:336.000000pt;}
.x3c_c01269{left:344.320000pt;}
.x11_c01269{left:345.600000pt;}
.x31_c01269{left:353.920000pt;}
.x8_c01269{left:364.160000pt;}
.x20_c01269{left:373.760000pt;}
.x51_c01269{left:383.360000pt;}
.x18_c01269{left:384.640000pt;}
.x49_c01269{left:392.320000pt;}
.x42_c01269{left:403.200000pt;}
.x52_c01269{left:412.800000pt;}
.x26_c01269{left:421.760000pt;}
.x21_c01269{left:423.040000pt;}
.x1c_c01269{left:432.000000pt;}
.x3b_c01269{left:440.960000pt;}
.x19_c01269{left:446.080000pt;}
.x22_c01269{left:451.200000pt;}
.x12_c01269{left:461.440000pt;}
.x27_c01269{left:469.760000pt;}
.x9_c01269{left:471.040000pt;}
.x4a_c01269{left:480.000000pt;}
.x13_c01269{left:490.240000pt;}
.x2d_c01269{left:500.480000pt;}
.x43_c01269{left:508.800000pt;}
.x35_c01269{left:519.040000pt;}
.x14_c01269{left:520.320000pt;}
.x2a_c01269{left:528.640000pt;}
.x4b_c01269{left:538.880000pt;}
.x3d_c01269{left:547.840000pt;}
.x1d_c01269{left:549.120000pt;}
.x1a_c01269{left:550.400000pt;}
.x23_c01269{left:556.800000pt;}
.x2b_c01269{left:558.080000pt;}
.x56_c01269{left:568.320000pt;}
.xa_c01269{left:577.920000pt;}
.x3e_c01269{left:585.600000pt;}
.x55_c01269{left:586.880000pt;}
.x32_c01269{left:596.480000pt;}
.x1_c01269{left:599.040000pt;}
.x2e_c01269{left:606.080000pt;}
}





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

.ir_c01270:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01270{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01270;src:url('chunks/assets/font_f47b06912a9466fbe609fd6c.woff2')format("woff");}.ff1_c01270{font-family:ff1_c01270;line-height:1.109863;font-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_c01270{transform:matrix(0.240025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240025,0.000000,0.000000,0.250000,0,0);}
.m43_c01270{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m3f_c01270{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);}
.m5b_c01270{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);}
.m4e_c01270{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m11_c01270{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_c01270{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m53_c01270{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m58_c01270{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01270{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m7_c01270{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01270{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m8_c01270{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m13_c01270{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m6_c01270{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m42_c01270{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01270{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m5e_c01270{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);}
.m4a_c01270{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);}
.m39_c01270{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m0_c01270{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m14_c01270{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);}
.m50_c01270{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m18_c01270{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m5a_c01270{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);}
.m57_c01270{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);}
.m4b_c01270{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m55_c01270{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.mf_c01270{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);}
.m5d_c01270{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);}
.ma_c01270{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_c01270{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m24_c01270{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);}
.m49_c01270{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01270{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);}
.m2c_c01270{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m1_c01270{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);}
.m35_c01270{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01270{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m45_c01270{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m37_c01270{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);}
.m28_c01270{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m12_c01270{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m25_c01270{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_c01270{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);}
.m36_c01270{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m41_c01270{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01270{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m48_c01270{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m38_c01270{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);}
.m34_c01270{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m15_c01270{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01270{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);}
.m2b_c01270{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m27_c01270{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);}
.md_c01270{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m47_c01270{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m5_c01270{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m10_c01270{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m2_c01270{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);}
.m51_c01270{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m46_c01270{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01270{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01270{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);}
.m5c_c01270{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.me_c01270{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m56_c01270{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m29_c01270{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01270{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);}
.m4_c01270{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);}
.m30_c01270{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.mc_c01270{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m16_c01270{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);}
.m19_c01270{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m54_c01270{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01270{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m40_c01270{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);}
.m59_c01270{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);}
.m52_c01270{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01270{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);}
.m20_c01270{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);}
.mb_c01270{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01270{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m17_c01270{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m26_c01270{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m32_c01270{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01270{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);}
.m21_c01270{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);}
.m3_c01270{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m31_c01270{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01270{transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01270{transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);}
.m22_c01270{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01270{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m44_c01270{transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);}
.m5f_c01270{transform:matrix(2.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.420000,0.000000,0.000000,0.250000,0,0);}
.v0_c01270{vertical-align:0.000000px;}
.ls0_c01270{letter-spacing:0.000000px;}
.sc__c01270{text-shadow:none;}
.sc0_c01270{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01270{-webkit-text-stroke:0px transparent;}
.sc0_c01270{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01270{word-spacing:-1.832492px;}
.ws2_c01270{word-spacing:0.000000px;}
.ws0_c01270{word-spacing:3.140640px;}
.fc0_c01270{color:transparent;}
.fsf_c01270{font-size:25.920000px;}
.fs3_c01270{font-size:34.560000px;}
.fs9_c01270{font-size:37.440000px;}
.fs7_c01270{font-size:40.320000px;}
.fsb_c01270{font-size:43.200000px;}
.fs8_c01270{font-size:46.080000px;}
.fs1_c01270{font-size:48.960000px;}
.fs4_c01270{font-size:51.840000px;}
.fs2_c01270{font-size:54.720000px;}
.fsa_c01270{font-size:57.600000px;}
.fs6_c01270{font-size:60.480000px;}
.fsd_c01270{font-size:63.360000px;}
.fsc_c01270{font-size:66.240000px;}
.fs5_c01270{font-size:69.120000px;}
.fs0_c01270{font-size:74.880000px;}
.fse_c01270{font-size:77.760000px;}
.y0_c01270{bottom:0.000000px;}
.y76_c01270{bottom:21.600000px;}
.y77_c01270{bottom:23.760000px;}
.y75_c01270{bottom:25.920000px;}
.y74_c01270{bottom:32.400000px;}
.y73_c01270{bottom:33.120000px;}
.y72_c01270{bottom:62.640000px;}
.y70_c01270{bottom:64.080000px;}
.y71_c01270{bottom:64.800000px;}
.y6f_c01270{bottom:66.960000px;}
.y6d_c01270{bottom:68.400000px;}
.y6e_c01270{bottom:69.120000px;}
.y6c_c01270{bottom:120.240000px;}
.y6a_c01270{bottom:120.960000px;}
.y6b_c01270{bottom:121.680000px;}
.y69_c01270{bottom:122.400000px;}
.y68_c01270{bottom:160.560000px;}
.y66_c01270{bottom:161.280000px;}
.y67_c01270{bottom:164.160000px;}
.y65_c01270{bottom:165.600000px;}
.y64_c01270{bottom:167.040000px;}
.y63_c01270{bottom:167.760000px;}
.y60_c01270{bottom:205.200000px;}
.y62_c01270{bottom:205.920000px;}
.y61_c01270{bottom:206.640000px;}
.y5f_c01270{bottom:210.240000px;}
.y5e_c01270{bottom:258.480000px;}
.y5d_c01270{bottom:262.080000px;}
.y5c_c01270{bottom:265.680000px;}
.y5b_c01270{bottom:300.240000px;}
.y59_c01270{bottom:302.400000px;}
.y5a_c01270{bottom:303.840000px;}
.y58_c01270{bottom:306.000000px;}
.y57_c01270{bottom:307.440000px;}
.y56_c01270{bottom:308.160000px;}
.y54_c01270{bottom:343.440000px;}
.y55_c01270{bottom:345.600000px;}
.y53_c01270{bottom:346.320000px;}
.y52_c01270{bottom:347.040000px;}
.y51_c01270{bottom:349.200000px;}
.y50_c01270{bottom:352.080000px;}
.y4f_c01270{bottom:386.640000px;}
.y4c_c01270{bottom:388.080000px;}
.y4d_c01270{bottom:388.800000px;}
.y4e_c01270{bottom:389.520000px;}
.y4b_c01270{bottom:390.240000px;}
.y4a_c01270{bottom:430.560000px;}
.y49_c01270{bottom:432.000000px;}
.y48_c01270{bottom:432.720000px;}
.y47_c01270{bottom:433.440000px;}
.y46_c01270{bottom:434.880000px;}
.y45_c01270{bottom:437.040000px;}
.y43_c01270{bottom:473.040000px;}
.y42_c01270{bottom:475.200000px;}
.y44_c01270{bottom:475.920000px;}
.y41_c01270{bottom:476.640000px;}
.y40_c01270{bottom:477.360000px;}
.y3f_c01270{bottom:527.040000px;}
.y3c_c01270{bottom:529.200000px;}
.y3e_c01270{bottom:529.920000px;}
.y3d_c01270{bottom:530.640000px;}
.y3b_c01270{bottom:532.800000px;}
.y38_c01270{bottom:569.520000px;}
.y39_c01270{bottom:570.240000px;}
.y3a_c01270{bottom:572.400000px;}
.y37_c01270{bottom:573.120000px;}
.y36_c01270{bottom:573.840000px;}
.y34_c01270{bottom:613.440000px;}
.y35_c01270{bottom:615.600000px;}
.y33_c01270{bottom:616.320000px;}
.y31_c01270{bottom:655.200000px;}
.y32_c01270{bottom:655.920000px;}
.y30_c01270{bottom:658.080000px;}
.y2f_c01270{bottom:658.800000px;}
.y2c_c01270{bottom:700.560000px;}
.y2e_c01270{bottom:701.280000px;}
.y2d_c01270{bottom:702.000000px;}
.y27_c01270{bottom:740.880000px;}
.y2a_c01270{bottom:741.600000px;}
.y2b_c01270{bottom:743.040000px;}
.y29_c01270{bottom:743.760000px;}
.y28_c01270{bottom:744.480000px;}
.y25_c01270{bottom:784.080000px;}
.y24_c01270{bottom:784.800000px;}
.y22_c01270{bottom:786.240000px;}
.y23_c01270{bottom:786.960000px;}
.y26_c01270{bottom:787.680000px;}
.y21_c01270{bottom:828.000000px;}
.y1e_c01270{bottom:829.440000px;}
.y20_c01270{bottom:830.160000px;}
.y1f_c01270{bottom:830.880000px;}
.y1a_c01270{bottom:879.120000px;}
.y1b_c01270{bottom:880.560000px;}
.y1c_c01270{bottom:883.440000px;}
.y1d_c01270{bottom:884.160000px;}
.y17_c01270{bottom:922.320000px;}
.y16_c01270{bottom:923.040000px;}
.y18_c01270{bottom:924.480000px;}
.y19_c01270{bottom:927.360000px;}
.yf_c01270{bottom:964.800000px;}
.ye_c01270{bottom:966.240000px;}
.y10_c01270{bottom:967.680000px;}
.y15_c01270{bottom:968.400000px;}
.y11_c01270{bottom:969.120000px;}
.y12_c01270{bottom:969.840000px;}
.y13_c01270{bottom:970.560000px;}
.y14_c01270{bottom:971.280000px;}
.y7_c01270{bottom:1005.840000px;}
.y8_c01270{bottom:1008.720000px;}
.yc_c01270{bottom:1010.160000px;}
.ya_c01270{bottom:1010.880000px;}
.y9_c01270{bottom:1012.320000px;}
.yb_c01270{bottom:1013.040000px;}
.yd_c01270{bottom:1013.760000px;}
.y2_c01270{bottom:1048.320000px;}
.y3_c01270{bottom:1053.360000px;}
.y6_c01270{bottom:1054.080000px;}
.y4_c01270{bottom:1056.240000px;}
.y5_c01270{bottom:1056.960000px;}
.y1_c01270{bottom:1098.000000px;}
.h11_c01270{height:23.325469px;}
.h5_c01270{height:31.100625px;}
.hb_c01270{height:33.692344px;}
.h9_c01270{height:36.284062px;}
.hd_c01270{height:38.875781px;}
.ha_c01270{height:41.467500px;}
.h3_c01270{height:44.059219px;}
.h6_c01270{height:46.650937px;}
.h4_c01270{height:49.242656px;}
.hc_c01270{height:51.834375px;}
.h8_c01270{height:54.426094px;}
.hf_c01270{height:57.017812px;}
.he_c01270{height:59.609531px;}
.h7_c01270{height:62.201250px;}
.h2_c01270{height:67.384687px;}
.h10_c01270{height:69.976406px;}
.h1_c01270{height:1151.250000px;}
.h0_c01270{height:1151.280000px;}
.w1_c01270{width:771.000000px;}
.w0_c01270{width:771.120000px;}
.x0_c01270{left:0.000000px;}
.x2_c01270{left:62.640900px;}
.x1c_c01270{left:64.080000px;}
.xa_c01270{left:65.520000px;}
.x50_c01270{left:66.960000px;}
.x48_c01270{left:84.240000px;}
.x38_c01270{left:92.880000px;}
.x42_c01270{left:94.320000px;}
.x3_c01270{left:100.800000px;}
.x36_c01270{left:102.240000px;}
.x4b_c01270{left:103.680000px;}
.x13_c01270{left:111.600000px;}
.x45_c01270{left:113.040000px;}
.x32_c01270{left:123.120000px;}
.x55_c01270{left:125.280000px;}
.x14_c01270{left:131.760000px;}
.x4c_c01270{left:134.640000px;}
.x3c_c01270{left:144.000000px;}
.xb_c01270{left:154.080000px;}
.x24_c01270{left:162.720000px;}
.x46_c01270{left:164.160000px;}
.x3d_c01270{left:165.600000px;}
.x2c_c01270{left:174.960000px;}
.x20_c01270{left:184.320000px;}
.x15_c01270{left:195.840000px;}
.x25_c01270{left:205.920000px;}
.x4f_c01270{left:207.360000px;}
.x4_c01270{left:217.440000px;}
.x28_c01270{left:227.520000px;}
.x5_c01270{left:237.600000px;}
.x3e_c01270{left:249.840000px;}
.xc_c01270{left:259.200000px;}
.x4d_c01270{left:261.360000px;}
.x6_c01270{left:270.720000px;}
.x51_c01270{left:272.160000px;}
.x33_c01270{left:281.520000px;}
.x43_c01270{left:282.960000px;}
.x2d_c01270{left:293.040000px;}
.x16_c01270{left:303.120000px;}
.x34_c01270{left:313.920000px;}
.x21_c01270{left:324.720000px;}
.x52_c01270{left:336.960000px;}
.x3f_c01270{left:347.040000px;}
.x2e_c01270{left:357.120000px;}
.x53_c01270{left:358.560000px;}
.xd_c01270{left:367.200000px;}
.x3a_c01270{left:368.640000px;}
.x47_c01270{left:380.160000px;}
.x37_c01270{left:390.960000px;}
.x7_c01270{left:398.880000px;}
.x29_c01270{left:401.040000px;}
.x1d_c01270{left:411.840000px;}
.xe_c01270{left:421.200000px;}
.x17_c01270{left:423.360000px;}
.x35_c01270{left:434.160000px;}
.x18_c01270{left:444.240000px;}
.x1e_c01270{left:453.600000px;}
.x40_c01270{left:456.480000px;}
.xf_c01270{left:465.840000px;}
.x39_c01270{left:467.280000px;}
.x22_c01270{left:477.360000px;}
.x2a_c01270{left:488.160000px;}
.x1f_c01270{left:498.240000px;}
.x19_c01270{left:509.760000px;}
.x10_c01270{left:519.840000px;}
.x2f_c01270{left:522.000000px;}
.x8_c01270{left:532.080000px;}
.x1a_c01270{left:542.160000px;}
.x23_c01270{left:543.600000px;}
.x26_c01270{left:553.680000px;}
.x9_c01270{left:562.320000px;}
.x30_c01270{left:564.480000px;}
.x56_c01270{left:565.920000px;}
.x49_c01270{left:574.560000px;}
.x3b_c01270{left:576.720000px;}
.x11_c01270{left:585.360000px;}
.x41_c01270{left:597.600000px;}
.x44_c01270{left:606.960000px;}
.x12_c01270{left:617.760000px;}
.x4a_c01270{left:619.920000px;}
.x4e_c01270{left:630.000000px;}
.x27_c01270{left:640.800000px;}
.x31_c01270{left:650.880000px;}
.x57_c01270{left:652.320000px;}
.x1b_c01270{left:661.680000px;}
.x54_c01270{left:663.120000px;}
.x2b_c01270{left:673.920000px;}
.x1_c01270{left:681.840000px;}
@media print{
.v0_c01270{vertical-align:0.000000pt;}
.ls0_c01270{letter-spacing:0.000000pt;}
.ws1_c01270{word-spacing:-1.628882pt;}
.ws2_c01270{word-spacing:0.000000pt;}
.ws0_c01270{word-spacing:2.791680pt;}
.fsf_c01270{font-size:23.040000pt;}
.fs3_c01270{font-size:30.720000pt;}
.fs9_c01270{font-size:33.280000pt;}
.fs7_c01270{font-size:35.840000pt;}
.fsb_c01270{font-size:38.400000pt;}
.fs8_c01270{font-size:40.960000pt;}
.fs1_c01270{font-size:43.520000pt;}
.fs4_c01270{font-size:46.080000pt;}
.fs2_c01270{font-size:48.640000pt;}
.fsa_c01270{font-size:51.200000pt;}
.fs6_c01270{font-size:53.760000pt;}
.fsd_c01270{font-size:56.320000pt;}
.fsc_c01270{font-size:58.880000pt;}
.fs5_c01270{font-size:61.440000pt;}
.fs0_c01270{font-size:66.560000pt;}
.fse_c01270{font-size:69.120000pt;}
.y0_c01270{bottom:0.000000pt;}
.y76_c01270{bottom:19.200000pt;}
.y77_c01270{bottom:21.120000pt;}
.y75_c01270{bottom:23.040000pt;}
.y74_c01270{bottom:28.800000pt;}
.y73_c01270{bottom:29.440000pt;}
.y72_c01270{bottom:55.680000pt;}
.y70_c01270{bottom:56.960000pt;}
.y71_c01270{bottom:57.600000pt;}
.y6f_c01270{bottom:59.520000pt;}
.y6d_c01270{bottom:60.800000pt;}
.y6e_c01270{bottom:61.440000pt;}
.y6c_c01270{bottom:106.880000pt;}
.y6a_c01270{bottom:107.520000pt;}
.y6b_c01270{bottom:108.160000pt;}
.y69_c01270{bottom:108.800000pt;}
.y68_c01270{bottom:142.720000pt;}
.y66_c01270{bottom:143.360000pt;}
.y67_c01270{bottom:145.920000pt;}
.y65_c01270{bottom:147.200000pt;}
.y64_c01270{bottom:148.480000pt;}
.y63_c01270{bottom:149.120000pt;}
.y60_c01270{bottom:182.400000pt;}
.y62_c01270{bottom:183.040000pt;}
.y61_c01270{bottom:183.680000pt;}
.y5f_c01270{bottom:186.880000pt;}
.y5e_c01270{bottom:229.760000pt;}
.y5d_c01270{bottom:232.960000pt;}
.y5c_c01270{bottom:236.160000pt;}
.y5b_c01270{bottom:266.880000pt;}
.y59_c01270{bottom:268.800000pt;}
.y5a_c01270{bottom:270.080000pt;}
.y58_c01270{bottom:272.000000pt;}
.y57_c01270{bottom:273.280000pt;}
.y56_c01270{bottom:273.920000pt;}
.y54_c01270{bottom:305.280000pt;}
.y55_c01270{bottom:307.200000pt;}
.y53_c01270{bottom:307.840000pt;}
.y52_c01270{bottom:308.480000pt;}
.y51_c01270{bottom:310.400000pt;}
.y50_c01270{bottom:312.960000pt;}
.y4f_c01270{bottom:343.680000pt;}
.y4c_c01270{bottom:344.960000pt;}
.y4d_c01270{bottom:345.600000pt;}
.y4e_c01270{bottom:346.240000pt;}
.y4b_c01270{bottom:346.880000pt;}
.y4a_c01270{bottom:382.720000pt;}
.y49_c01270{bottom:384.000000pt;}
.y48_c01270{bottom:384.640000pt;}
.y47_c01270{bottom:385.280000pt;}
.y46_c01270{bottom:386.560000pt;}
.y45_c01270{bottom:388.480000pt;}
.y43_c01270{bottom:420.480000pt;}
.y42_c01270{bottom:422.400000pt;}
.y44_c01270{bottom:423.040000pt;}
.y41_c01270{bottom:423.680000pt;}
.y40_c01270{bottom:424.320000pt;}
.y3f_c01270{bottom:468.480000pt;}
.y3c_c01270{bottom:470.400000pt;}
.y3e_c01270{bottom:471.040000pt;}
.y3d_c01270{bottom:471.680000pt;}
.y3b_c01270{bottom:473.600000pt;}
.y38_c01270{bottom:506.240000pt;}
.y39_c01270{bottom:506.880000pt;}
.y3a_c01270{bottom:508.800000pt;}
.y37_c01270{bottom:509.440000pt;}
.y36_c01270{bottom:510.080000pt;}
.y34_c01270{bottom:545.280000pt;}
.y35_c01270{bottom:547.200000pt;}
.y33_c01270{bottom:547.840000pt;}
.y31_c01270{bottom:582.400000pt;}
.y32_c01270{bottom:583.040000pt;}
.y30_c01270{bottom:584.960000pt;}
.y2f_c01270{bottom:585.600000pt;}
.y2c_c01270{bottom:622.720000pt;}
.y2e_c01270{bottom:623.360000pt;}
.y2d_c01270{bottom:624.000000pt;}
.y27_c01270{bottom:658.560000pt;}
.y2a_c01270{bottom:659.200000pt;}
.y2b_c01270{bottom:660.480000pt;}
.y29_c01270{bottom:661.120000pt;}
.y28_c01270{bottom:661.760000pt;}
.y25_c01270{bottom:696.960000pt;}
.y24_c01270{bottom:697.600000pt;}
.y22_c01270{bottom:698.880000pt;}
.y23_c01270{bottom:699.520000pt;}
.y26_c01270{bottom:700.160000pt;}
.y21_c01270{bottom:736.000000pt;}
.y1e_c01270{bottom:737.280000pt;}
.y20_c01270{bottom:737.920000pt;}
.y1f_c01270{bottom:738.560000pt;}
.y1a_c01270{bottom:781.440000pt;}
.y1b_c01270{bottom:782.720000pt;}
.y1c_c01270{bottom:785.280000pt;}
.y1d_c01270{bottom:785.920000pt;}
.y17_c01270{bottom:819.840000pt;}
.y16_c01270{bottom:820.480000pt;}
.y18_c01270{bottom:821.760000pt;}
.y19_c01270{bottom:824.320000pt;}
.yf_c01270{bottom:857.600000pt;}
.ye_c01270{bottom:858.880000pt;}
.y10_c01270{bottom:860.160000pt;}
.y15_c01270{bottom:860.800000pt;}
.y11_c01270{bottom:861.440000pt;}
.y12_c01270{bottom:862.080000pt;}
.y13_c01270{bottom:862.720000pt;}
.y14_c01270{bottom:863.360000pt;}
.y7_c01270{bottom:894.080000pt;}
.y8_c01270{bottom:896.640000pt;}
.yc_c01270{bottom:897.920000pt;}
.ya_c01270{bottom:898.560000pt;}
.y9_c01270{bottom:899.840000pt;}
.yb_c01270{bottom:900.480000pt;}
.yd_c01270{bottom:901.120000pt;}
.y2_c01270{bottom:931.840000pt;}
.y3_c01270{bottom:936.320000pt;}
.y6_c01270{bottom:936.960000pt;}
.y4_c01270{bottom:938.880000pt;}
.y5_c01270{bottom:939.520000pt;}
.y1_c01270{bottom:976.000000pt;}
.h11_c01270{height:20.733750pt;}
.h5_c01270{height:27.645000pt;}
.hb_c01270{height:29.948750pt;}
.h9_c01270{height:32.252500pt;}
.hd_c01270{height:34.556250pt;}
.ha_c01270{height:36.860000pt;}
.h3_c01270{height:39.163750pt;}
.h6_c01270{height:41.467500pt;}
.h4_c01270{height:43.771250pt;}
.hc_c01270{height:46.075000pt;}
.h8_c01270{height:48.378750pt;}
.hf_c01270{height:50.682500pt;}
.he_c01270{height:52.986250pt;}
.h7_c01270{height:55.290000pt;}
.h2_c01270{height:59.897500pt;}
.h10_c01270{height:62.201250pt;}
.h1_c01270{height:1023.333333pt;}
.h0_c01270{height:1023.360000pt;}
.w1_c01270{width:685.333333pt;}
.w0_c01270{width:685.440000pt;}
.x0_c01270{left:0.000000pt;}
.x2_c01270{left:55.680800pt;}
.x1c_c01270{left:56.960000pt;}
.xa_c01270{left:58.240000pt;}
.x50_c01270{left:59.520000pt;}
.x48_c01270{left:74.880000pt;}
.x38_c01270{left:82.560000pt;}
.x42_c01270{left:83.840000pt;}
.x3_c01270{left:89.600000pt;}
.x36_c01270{left:90.880000pt;}
.x4b_c01270{left:92.160000pt;}
.x13_c01270{left:99.200000pt;}
.x45_c01270{left:100.480000pt;}
.x32_c01270{left:109.440000pt;}
.x55_c01270{left:111.360000pt;}
.x14_c01270{left:117.120000pt;}
.x4c_c01270{left:119.680000pt;}
.x3c_c01270{left:128.000000pt;}
.xb_c01270{left:136.960000pt;}
.x24_c01270{left:144.640000pt;}
.x46_c01270{left:145.920000pt;}
.x3d_c01270{left:147.200000pt;}
.x2c_c01270{left:155.520000pt;}
.x20_c01270{left:163.840000pt;}
.x15_c01270{left:174.080000pt;}
.x25_c01270{left:183.040000pt;}
.x4f_c01270{left:184.320000pt;}
.x4_c01270{left:193.280000pt;}
.x28_c01270{left:202.240000pt;}
.x5_c01270{left:211.200000pt;}
.x3e_c01270{left:222.080000pt;}
.xc_c01270{left:230.400000pt;}
.x4d_c01270{left:232.320000pt;}
.x6_c01270{left:240.640000pt;}
.x51_c01270{left:241.920000pt;}
.x33_c01270{left:250.240000pt;}
.x43_c01270{left:251.520000pt;}
.x2d_c01270{left:260.480000pt;}
.x16_c01270{left:269.440000pt;}
.x34_c01270{left:279.040000pt;}
.x21_c01270{left:288.640000pt;}
.x52_c01270{left:299.520000pt;}
.x3f_c01270{left:308.480000pt;}
.x2e_c01270{left:317.440000pt;}
.x53_c01270{left:318.720000pt;}
.xd_c01270{left:326.400000pt;}
.x3a_c01270{left:327.680000pt;}
.x47_c01270{left:337.920000pt;}
.x37_c01270{left:347.520000pt;}
.x7_c01270{left:354.560000pt;}
.x29_c01270{left:356.480000pt;}
.x1d_c01270{left:366.080000pt;}
.xe_c01270{left:374.400000pt;}
.x17_c01270{left:376.320000pt;}
.x35_c01270{left:385.920000pt;}
.x18_c01270{left:394.880000pt;}
.x1e_c01270{left:403.200000pt;}
.x40_c01270{left:405.760000pt;}
.xf_c01270{left:414.080000pt;}
.x39_c01270{left:415.360000pt;}
.x22_c01270{left:424.320000pt;}
.x2a_c01270{left:433.920000pt;}
.x1f_c01270{left:442.880000pt;}
.x19_c01270{left:453.120000pt;}
.x10_c01270{left:462.080000pt;}
.x2f_c01270{left:464.000000pt;}
.x8_c01270{left:472.960000pt;}
.x1a_c01270{left:481.920000pt;}
.x23_c01270{left:483.200000pt;}
.x26_c01270{left:492.160000pt;}
.x9_c01270{left:499.840000pt;}
.x30_c01270{left:501.760000pt;}
.x56_c01270{left:503.040000pt;}
.x49_c01270{left:510.720000pt;}
.x3b_c01270{left:512.640000pt;}
.x11_c01270{left:520.320000pt;}
.x41_c01270{left:531.200000pt;}
.x44_c01270{left:539.520000pt;}
.x12_c01270{left:549.120000pt;}
.x4a_c01270{left:551.040000pt;}
.x4e_c01270{left:560.000000pt;}
.x27_c01270{left:569.600000pt;}
.x31_c01270{left:578.560000pt;}
.x57_c01270{left:579.840000pt;}
.x1b_c01270{left:588.160000pt;}
.x54_c01270{left:589.440000pt;}
.x2b_c01270{left:599.040000pt;}
.x1_c01270{left:606.080000pt;}
}





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

.ir_c01271:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01271{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01271;src:url('chunks/assets/font_f4ee5ba509b0a7bf4a145ef4.woff2')format("woff");}.ff1_c01271{font-family:ff1_c01271;line-height:1.109863;font-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_c01271{transform:matrix(0.248575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248575,0.000000,0.000000,0.250000,0,0);}
.m1_c01271{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);}
.m4a_c01271{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);}
.m47_c01271{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);}
.m29_c01271{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);}
.m50_c01271{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01271{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01271{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mb_c01271{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m59_c01271{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01271{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m12_c01271{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m48_c01271{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m40_c01271{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m13_c01271{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);}
.m4f_c01271{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m8_c01271{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);}
.m45_c01271{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01271{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_c01271{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m51_c01271{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m19_c01271{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01271{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);}
.m4_c01271{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);}
.m1a_c01271{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01271{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m39_c01271{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);}
.m5d_c01271{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);}
.m0_c01271{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m33_c01271{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);}
.m4c_c01271{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m32_c01271{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);}
.ma_c01271{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);}
.m1c_c01271{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);}
.m27_c01271{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01271{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m43_c01271{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m15_c01271{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);}
.m11_c01271{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m42_c01271{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);}
.m54_c01271{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m5b_c01271{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m16_c01271{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01271{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01271{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01271{transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);}
.m14_c01271{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m9_c01271{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m49_c01271{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);}
.m56_c01271{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01271{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);}
.m38_c01271{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m23_c01271{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01271{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m46_c01271{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.mc_c01271{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);}
.m20_c01271{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01271{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m24_c01271{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01271{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);}
.m10_c01271{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m35_c01271{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m53_c01271{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m44_c01271{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m30_c01271{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.me_c01271{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);}
.mf_c01271{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01271{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m22_c01271{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01271{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);}
.m41_c01271{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m17_c01271{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m5_c01271{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m58_c01271{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m25_c01271{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m2_c01271{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01271{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m6_c01271{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);}
.m36_c01271{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);}
.m34_c01271{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m55_c01271{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.md_c01271{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m5c_c01271{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01271{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m21_c01271{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);}
.m3c_c01271{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m5e_c01271{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m3_c01271{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m31_c01271{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);}
.m5a_c01271{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m18_c01271{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m28_c01271{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.m57_c01271{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m37_c01271{transform:matrix(0.650000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.650000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.650000,0.000000,0.000000,0.250000,0,0);}
.m52_c01271{transform:matrix(1.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.130000,0.000000,0.000000,0.250000,0,0);}
.v1_c01271{vertical-align:-8.640000px;}
.v0_c01271{vertical-align:0.000000px;}
.ls0_c01271{letter-spacing:0.000000px;}
.sc__c01271{text-shadow:none;}
.sc0_c01271{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01271{-webkit-text-stroke:0px transparent;}
.sc0_c01271{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01271{word-spacing:0.000000px;}
.ws0_c01271{word-spacing:1.525440px;}
.fc0_c01271{color:transparent;}
.fsd_c01271{font-size:17.280000px;}
.fs2_c01271{font-size:31.680000px;}
.fs1_c01271{font-size:34.560000px;}
.fse_c01271{font-size:37.440000px;}
.fsf_c01271{font-size:40.320000px;}
.fs4_c01271{font-size:43.200000px;}
.fs5_c01271{font-size:46.080000px;}
.fs3_c01271{font-size:48.960000px;}
.fs9_c01271{font-size:51.840000px;}
.fsc_c01271{font-size:54.720000px;}
.fs6_c01271{font-size:57.600000px;}
.fs7_c01271{font-size:60.480000px;}
.fs8_c01271{font-size:63.360000px;}
.fsa_c01271{font-size:66.240000px;}
.fsb_c01271{font-size:69.120000px;}
.fs0_c01271{font-size:72.000000px;}
.y0_c01271{bottom:0.000000px;}
.y73_c01271{bottom:77.040000px;}
.y72_c01271{bottom:82.080000px;}
.y71_c01271{bottom:84.240000px;}
.y70_c01271{bottom:118.080000px;}
.y6f_c01271{bottom:118.800000px;}
.y6e_c01271{bottom:120.240000px;}
.y6d_c01271{bottom:123.120000px;}
.y6c_c01271{bottom:125.280000px;}
.y6a_c01271{bottom:158.400000px;}
.y69_c01271{bottom:161.280000px;}
.y6b_c01271{bottom:162.000000px;}
.y68_c01271{bottom:163.440000px;}
.y67_c01271{bottom:167.040000px;}
.y66_c01271{bottom:169.920000px;}
.y65_c01271{bottom:203.760000px;}
.y64_c01271{bottom:205.200000px;}
.y63_c01271{bottom:205.920000px;}
.y62_c01271{bottom:209.520000px;}
.y61_c01271{bottom:210.960000px;}
.y5d_c01271{bottom:244.800000px;}
.y60_c01271{bottom:246.960000px;}
.y5f_c01271{bottom:247.680000px;}
.y5e_c01271{bottom:248.400000px;}
.y5c_c01271{bottom:250.560000px;}
.y5b_c01271{bottom:253.440000px;}
.y5a_c01271{bottom:254.160000px;}
.y58_c01271{bottom:288.000000px;}
.y59_c01271{bottom:290.160000px;}
.y57_c01271{bottom:291.600000px;}
.y56_c01271{bottom:293.760000px;}
.y55_c01271{bottom:295.920000px;}
.y54_c01271{bottom:331.200000px;}
.y51_c01271{bottom:332.640000px;}
.y53_c01271{bottom:333.360000px;}
.y52_c01271{bottom:334.080000px;}
.y50_c01271{bottom:335.520000px;}
.y4f_c01271{bottom:336.960000px;}
.y4e_c01271{bottom:338.400000px;}
.y4c_c01271{bottom:372.960000px;}
.y4d_c01271{bottom:374.400000px;}
.y49_c01271{bottom:375.840000px;}
.y4b_c01271{bottom:376.560000px;}
.y4a_c01271{bottom:377.280000px;}
.y48_c01271{bottom:378.000000px;}
.y45_c01271{bottom:416.880000px;}
.y44_c01271{bottom:417.600000px;}
.y42_c01271{bottom:418.320000px;}
.y46_c01271{bottom:419.040000px;}
.y47_c01271{bottom:419.760000px;}
.y43_c01271{bottom:420.480000px;}
.y41_c01271{bottom:460.080000px;}
.y40_c01271{bottom:462.240000px;}
.y3f_c01271{bottom:462.960000px;}
.y3e_c01271{bottom:463.680000px;}
.y3d_c01271{bottom:464.400000px;}
.y3a_c01271{bottom:503.280000px;}
.y38_c01271{bottom:504.720000px;}
.y3b_c01271{bottom:505.440000px;}
.y3c_c01271{bottom:506.160000px;}
.y39_c01271{bottom:506.880000px;}
.y37_c01271{bottom:559.440000px;}
.y35_c01271{bottom:600.480000px;}
.y36_c01271{bottom:601.920000px;}
.y34_c01271{bottom:602.640000px;}
.y31_c01271{bottom:642.240000px;}
.y32_c01271{bottom:645.120000px;}
.y33_c01271{bottom:645.840000px;}
.y2f_c01271{bottom:686.160000px;}
.y2d_c01271{bottom:687.600000px;}
.y2e_c01271{bottom:688.320000px;}
.y30_c01271{bottom:689.040000px;}
.y2b_c01271{bottom:728.640000px;}
.y29_c01271{bottom:730.080000px;}
.y28_c01271{bottom:730.800000px;}
.y2a_c01271{bottom:731.520000px;}
.y2c_c01271{bottom:732.240000px;}
.y22_c01271{bottom:769.680000px;}
.y23_c01271{bottom:771.120000px;}
.y27_c01271{bottom:771.840000px;}
.y26_c01271{bottom:772.560000px;}
.y24_c01271{bottom:774.000000px;}
.y25_c01271{bottom:775.440000px;}
.y21_c01271{bottom:815.040000px;}
.y1e_c01271{bottom:815.760000px;}
.y1f_c01271{bottom:817.200000px;}
.y20_c01271{bottom:817.920000px;}
.y19_c01271{bottom:857.520000px;}
.y1a_c01271{bottom:858.240000px;}
.y1b_c01271{bottom:859.680000px;}
.y1c_c01271{bottom:860.400000px;}
.y1d_c01271{bottom:861.120000px;}
.y14_c01271{bottom:900.000000px;}
.y16_c01271{bottom:901.440000px;}
.y18_c01271{bottom:902.160000px;}
.y15_c01271{bottom:903.600000px;}
.y17_c01271{bottom:904.320000px;}
.y11_c01271{bottom:951.840000px;}
.y10_c01271{bottom:953.280000px;}
.y12_c01271{bottom:955.440000px;}
.y13_c01271{bottom:956.160000px;}
.y9_c01271{bottom:992.160000px;}
.ya_c01271{bottom:994.320000px;}
.yf_c01271{bottom:997.920000px;}
.yb_c01271{bottom:998.640000px;}
.yc_c01271{bottom:999.360000px;}
.yd_c01271{bottom:1000.080000px;}
.ye_c01271{bottom:1000.800000px;}
.y2_c01271{bottom:1035.360000px;}
.y3_c01271{bottom:1039.680000px;}
.y6_c01271{bottom:1040.400000px;}
.y4_c01271{bottom:1041.120000px;}
.y5_c01271{bottom:1041.840000px;}
.y8_c01271{bottom:1042.560000px;}
.y7_c01271{bottom:1043.280000px;}
.y1_c01271{bottom:1095.840000px;}
.h10_c01271{height:15.550313px;}
.h4_c01271{height:28.508906px;}
.h3_c01271{height:31.100625px;}
.h11_c01271{height:33.692344px;}
.h12_c01271{height:36.284062px;}
.h6_c01271{height:38.875781px;}
.h7_c01271{height:41.467500px;}
.h5_c01271{height:44.059219px;}
.he_c01271{height:45.786094px;}
.hb_c01271{height:46.650937px;}
.hf_c01271{height:49.242656px;}
.h8_c01271{height:51.834375px;}
.h9_c01271{height:54.426094px;}
.ha_c01271{height:57.017812px;}
.hc_c01271{height:59.609531px;}
.hd_c01271{height:62.201250px;}
.h2_c01271{height:64.792969px;}
.h0_c01271{height:1138.320000px;}
.h1_c01271{height:1138.500000px;}
.w1_c01271{width:771.000000px;}
.w0_c01271{width:771.120000px;}
.x0_c01271{left:0.000000px;}
.x2_c01271{left:62.640000px;}
.x3b_c01271{left:64.800000px;}
.x50_c01271{left:66.240000px;}
.x13_c01271{left:90.720000px;}
.x4a_c01271{left:93.600000px;}
.x45_c01271{left:95.040000px;}
.xc_c01271{left:101.520000px;}
.x4c_c01271{left:103.680000px;}
.x2c_c01271{left:112.320000px;}
.x51_c01271{left:114.480000px;}
.x3c_c01271{left:122.400000px;}
.x46_c01271{left:123.840000px;}
.x3_c01271{left:131.760000px;}
.x4d_c01271{left:133.920000px;}
.x1e_c01271{left:141.840000px;}
.x16_c01271{left:152.640000px;}
.x47_c01271{left:154.080000px;}
.x4_c01271{left:164.160000px;}
.x14_c01271{left:173.520000px;}
.x3e_c01271{left:175.680000px;}
.x3d_c01271{left:184.320000px;}
.x42_c01271{left:185.760000px;}
.x5_c01271{left:194.400000px;}
.x17_c01271{left:205.200000px;}
.x15_c01271{left:217.440000px;}
.x2d_c01271{left:226.800000px;}
.x1f_c01271{left:237.600000px;}
.x3f_c01271{left:239.040000px;}
.x18_c01271{left:248.400000px;}
.xd_c01271{left:259.200000px;}
.x2e_c01271{left:270.720000px;}
.x6_c01271{left:280.800000px;}
.x20_c01271{left:282.240000px;}
.x40_c01271{left:293.760000px;}
.xe_c01271{left:303.120000px;}
.x37_c01271{left:313.920000px;}
.x7_c01271{left:324.000000px;}
.x19_c01271{left:334.800000px;}
.x4b_c01271{left:347.760000px;}
.x8_c01271{left:357.120000px;}
.x28_c01271{left:358.560000px;}
.x33_c01271{left:367.920000px;}
.x21_c01271{left:369.360000px;}
.x1a_c01271{left:377.280000px;}
.x4e_c01271{left:380.160000px;}
.x32_c01271{left:390.240000px;}
.x24_c01271{left:399.600000px;}
.xf_c01271{left:410.400000px;}
.x29_c01271{left:412.560000px;}
.x35_c01271{left:421.200000px;}
.x9_c01271{left:423.360000px;}
.x2f_c01271{left:433.440000px;}
.x1b_c01271{left:455.760000px;}
.xa_c01271{left:466.560000px;}
.x38_c01271{left:476.640000px;}
.x4f_c01271{left:478.080000px;}
.x22_c01271{left:488.160000px;}
.x30_c01271{left:498.960000px;}
.x10_c01271{left:509.760000px;}
.x25_c01271{left:520.560000px;}
.x1c_c01271{left:531.360000px;}
.x39_c01271{left:542.160000px;}
.x26_c01271{left:552.960000px;}
.x43_c01271{left:554.400000px;}
.xb_c01271{left:563.760000px;}
.x48_c01271{left:565.200000px;}
.x41_c01271{left:575.280000px;}
.x11_c01271{left:585.360000px;}
.x49_c01271{left:586.800000px;}
.x2a_c01271{left:596.160000px;}
.x23_c01271{left:607.680000px;}
.x31_c01271{left:618.480000px;}
.x34_c01271{left:619.920000px;}
.x12_c01271{left:628.560000px;}
.x44_c01271{left:630.720000px;}
.x1d_c01271{left:640.080000px;}
.x2b_c01271{left:650.160000px;}
.x36_c01271{left:651.600000px;}
.x27_c01271{left:662.400000px;}
.x3a_c01271{left:673.920000px;}
.x1_c01271{left:678.240000px;}
@media print{
.v1_c01271{vertical-align:-7.680000pt;}
.v0_c01271{vertical-align:0.000000pt;}
.ls0_c01271{letter-spacing:0.000000pt;}
.ws1_c01271{word-spacing:0.000000pt;}
.ws0_c01271{word-spacing:1.355947pt;}
.fsd_c01271{font-size:15.360000pt;}
.fs2_c01271{font-size:28.160000pt;}
.fs1_c01271{font-size:30.720000pt;}
.fse_c01271{font-size:33.280000pt;}
.fsf_c01271{font-size:35.840000pt;}
.fs4_c01271{font-size:38.400000pt;}
.fs5_c01271{font-size:40.960000pt;}
.fs3_c01271{font-size:43.520000pt;}
.fs9_c01271{font-size:46.080000pt;}
.fsc_c01271{font-size:48.640000pt;}
.fs6_c01271{font-size:51.200000pt;}
.fs7_c01271{font-size:53.760000pt;}
.fs8_c01271{font-size:56.320000pt;}
.fsa_c01271{font-size:58.880000pt;}
.fsb_c01271{font-size:61.440000pt;}
.fs0_c01271{font-size:64.000000pt;}
.y0_c01271{bottom:0.000000pt;}
.y73_c01271{bottom:68.480000pt;}
.y72_c01271{bottom:72.960000pt;}
.y71_c01271{bottom:74.880000pt;}
.y70_c01271{bottom:104.960000pt;}
.y6f_c01271{bottom:105.600000pt;}
.y6e_c01271{bottom:106.880000pt;}
.y6d_c01271{bottom:109.440000pt;}
.y6c_c01271{bottom:111.360000pt;}
.y6a_c01271{bottom:140.800000pt;}
.y69_c01271{bottom:143.360000pt;}
.y6b_c01271{bottom:144.000000pt;}
.y68_c01271{bottom:145.280000pt;}
.y67_c01271{bottom:148.480000pt;}
.y66_c01271{bottom:151.040000pt;}
.y65_c01271{bottom:181.120000pt;}
.y64_c01271{bottom:182.400000pt;}
.y63_c01271{bottom:183.040000pt;}
.y62_c01271{bottom:186.240000pt;}
.y61_c01271{bottom:187.520000pt;}
.y5d_c01271{bottom:217.600000pt;}
.y60_c01271{bottom:219.520000pt;}
.y5f_c01271{bottom:220.160000pt;}
.y5e_c01271{bottom:220.800000pt;}
.y5c_c01271{bottom:222.720000pt;}
.y5b_c01271{bottom:225.280000pt;}
.y5a_c01271{bottom:225.920000pt;}
.y58_c01271{bottom:256.000000pt;}
.y59_c01271{bottom:257.920000pt;}
.y57_c01271{bottom:259.200000pt;}
.y56_c01271{bottom:261.120000pt;}
.y55_c01271{bottom:263.040000pt;}
.y54_c01271{bottom:294.400000pt;}
.y51_c01271{bottom:295.680000pt;}
.y53_c01271{bottom:296.320000pt;}
.y52_c01271{bottom:296.960000pt;}
.y50_c01271{bottom:298.240000pt;}
.y4f_c01271{bottom:299.520000pt;}
.y4e_c01271{bottom:300.800000pt;}
.y4c_c01271{bottom:331.520000pt;}
.y4d_c01271{bottom:332.800000pt;}
.y49_c01271{bottom:334.080000pt;}
.y4b_c01271{bottom:334.720000pt;}
.y4a_c01271{bottom:335.360000pt;}
.y48_c01271{bottom:336.000000pt;}
.y45_c01271{bottom:370.560000pt;}
.y44_c01271{bottom:371.200000pt;}
.y42_c01271{bottom:371.840000pt;}
.y46_c01271{bottom:372.480000pt;}
.y47_c01271{bottom:373.120000pt;}
.y43_c01271{bottom:373.760000pt;}
.y41_c01271{bottom:408.960000pt;}
.y40_c01271{bottom:410.880000pt;}
.y3f_c01271{bottom:411.520000pt;}
.y3e_c01271{bottom:412.160000pt;}
.y3d_c01271{bottom:412.800000pt;}
.y3a_c01271{bottom:447.360000pt;}
.y38_c01271{bottom:448.640000pt;}
.y3b_c01271{bottom:449.280000pt;}
.y3c_c01271{bottom:449.920000pt;}
.y39_c01271{bottom:450.560000pt;}
.y37_c01271{bottom:497.280000pt;}
.y35_c01271{bottom:533.760000pt;}
.y36_c01271{bottom:535.040000pt;}
.y34_c01271{bottom:535.680000pt;}
.y31_c01271{bottom:570.880000pt;}
.y32_c01271{bottom:573.440000pt;}
.y33_c01271{bottom:574.080000pt;}
.y2f_c01271{bottom:609.920000pt;}
.y2d_c01271{bottom:611.200000pt;}
.y2e_c01271{bottom:611.840000pt;}
.y30_c01271{bottom:612.480000pt;}
.y2b_c01271{bottom:647.680000pt;}
.y29_c01271{bottom:648.960000pt;}
.y28_c01271{bottom:649.600000pt;}
.y2a_c01271{bottom:650.240000pt;}
.y2c_c01271{bottom:650.880000pt;}
.y22_c01271{bottom:684.160000pt;}
.y23_c01271{bottom:685.440000pt;}
.y27_c01271{bottom:686.080000pt;}
.y26_c01271{bottom:686.720000pt;}
.y24_c01271{bottom:688.000000pt;}
.y25_c01271{bottom:689.280000pt;}
.y21_c01271{bottom:724.480000pt;}
.y1e_c01271{bottom:725.120000pt;}
.y1f_c01271{bottom:726.400000pt;}
.y20_c01271{bottom:727.040000pt;}
.y19_c01271{bottom:762.240000pt;}
.y1a_c01271{bottom:762.880000pt;}
.y1b_c01271{bottom:764.160000pt;}
.y1c_c01271{bottom:764.800000pt;}
.y1d_c01271{bottom:765.440000pt;}
.y14_c01271{bottom:800.000000pt;}
.y16_c01271{bottom:801.280000pt;}
.y18_c01271{bottom:801.920000pt;}
.y15_c01271{bottom:803.200000pt;}
.y17_c01271{bottom:803.840000pt;}
.y11_c01271{bottom:846.080000pt;}
.y10_c01271{bottom:847.360000pt;}
.y12_c01271{bottom:849.280000pt;}
.y13_c01271{bottom:849.920000pt;}
.y9_c01271{bottom:881.920000pt;}
.ya_c01271{bottom:883.840000pt;}
.yf_c01271{bottom:887.040000pt;}
.yb_c01271{bottom:887.680000pt;}
.yc_c01271{bottom:888.320000pt;}
.yd_c01271{bottom:888.960000pt;}
.ye_c01271{bottom:889.600000pt;}
.y2_c01271{bottom:920.320000pt;}
.y3_c01271{bottom:924.160000pt;}
.y6_c01271{bottom:924.800000pt;}
.y4_c01271{bottom:925.440000pt;}
.y5_c01271{bottom:926.080000pt;}
.y8_c01271{bottom:926.720000pt;}
.y7_c01271{bottom:927.360000pt;}
.y1_c01271{bottom:974.080000pt;}
.h10_c01271{height:13.822500pt;}
.h4_c01271{height:25.341250pt;}
.h3_c01271{height:27.645000pt;}
.h11_c01271{height:29.948750pt;}
.h12_c01271{height:32.252500pt;}
.h6_c01271{height:34.556250pt;}
.h7_c01271{height:36.860000pt;}
.h5_c01271{height:39.163750pt;}
.he_c01271{height:40.698750pt;}
.hb_c01271{height:41.467500pt;}
.hf_c01271{height:43.771250pt;}
.h8_c01271{height:46.075000pt;}
.h9_c01271{height:48.378750pt;}
.ha_c01271{height:50.682500pt;}
.hc_c01271{height:52.986250pt;}
.hd_c01271{height:55.290000pt;}
.h2_c01271{height:57.593750pt;}
.h0_c01271{height:1011.840000pt;}
.h1_c01271{height:1012.000000pt;}
.w1_c01271{width:685.333333pt;}
.w0_c01271{width:685.440000pt;}
.x0_c01271{left:0.000000pt;}
.x2_c01271{left:55.680000pt;}
.x3b_c01271{left:57.600000pt;}
.x50_c01271{left:58.880000pt;}
.x13_c01271{left:80.640000pt;}
.x4a_c01271{left:83.200000pt;}
.x45_c01271{left:84.480000pt;}
.xc_c01271{left:90.240000pt;}
.x4c_c01271{left:92.160000pt;}
.x2c_c01271{left:99.840000pt;}
.x51_c01271{left:101.760000pt;}
.x3c_c01271{left:108.800000pt;}
.x46_c01271{left:110.080000pt;}
.x3_c01271{left:117.120000pt;}
.x4d_c01271{left:119.040000pt;}
.x1e_c01271{left:126.080000pt;}
.x16_c01271{left:135.680000pt;}
.x47_c01271{left:136.960000pt;}
.x4_c01271{left:145.920000pt;}
.x14_c01271{left:154.240000pt;}
.x3e_c01271{left:156.160000pt;}
.x3d_c01271{left:163.840000pt;}
.x42_c01271{left:165.120000pt;}
.x5_c01271{left:172.800000pt;}
.x17_c01271{left:182.400000pt;}
.x15_c01271{left:193.280000pt;}
.x2d_c01271{left:201.600000pt;}
.x1f_c01271{left:211.200000pt;}
.x3f_c01271{left:212.480000pt;}
.x18_c01271{left:220.800000pt;}
.xd_c01271{left:230.400000pt;}
.x2e_c01271{left:240.640000pt;}
.x6_c01271{left:249.600000pt;}
.x20_c01271{left:250.880000pt;}
.x40_c01271{left:261.120000pt;}
.xe_c01271{left:269.440000pt;}
.x37_c01271{left:279.040000pt;}
.x7_c01271{left:288.000000pt;}
.x19_c01271{left:297.600000pt;}
.x4b_c01271{left:309.120000pt;}
.x8_c01271{left:317.440000pt;}
.x28_c01271{left:318.720000pt;}
.x33_c01271{left:327.040000pt;}
.x21_c01271{left:328.320000pt;}
.x1a_c01271{left:335.360000pt;}
.x4e_c01271{left:337.920000pt;}
.x32_c01271{left:346.880000pt;}
.x24_c01271{left:355.200000pt;}
.xf_c01271{left:364.800000pt;}
.x29_c01271{left:366.720000pt;}
.x35_c01271{left:374.400000pt;}
.x9_c01271{left:376.320000pt;}
.x2f_c01271{left:385.280000pt;}
.x1b_c01271{left:405.120000pt;}
.xa_c01271{left:414.720000pt;}
.x38_c01271{left:423.680000pt;}
.x4f_c01271{left:424.960000pt;}
.x22_c01271{left:433.920000pt;}
.x30_c01271{left:443.520000pt;}
.x10_c01271{left:453.120000pt;}
.x25_c01271{left:462.720000pt;}
.x1c_c01271{left:472.320000pt;}
.x39_c01271{left:481.920000pt;}
.x26_c01271{left:491.520000pt;}
.x43_c01271{left:492.800000pt;}
.xb_c01271{left:501.120000pt;}
.x48_c01271{left:502.400000pt;}
.x41_c01271{left:511.360000pt;}
.x11_c01271{left:520.320000pt;}
.x49_c01271{left:521.600000pt;}
.x2a_c01271{left:529.920000pt;}
.x23_c01271{left:540.160000pt;}
.x31_c01271{left:549.760000pt;}
.x34_c01271{left:551.040000pt;}
.x12_c01271{left:558.720000pt;}
.x44_c01271{left:560.640000pt;}
.x1d_c01271{left:568.960000pt;}
.x2b_c01271{left:577.920000pt;}
.x36_c01271{left:579.200000pt;}
.x27_c01271{left:588.800000pt;}
.x3a_c01271{left:599.040000pt;}
.x1_c01271{left:602.880000pt;}
}





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

.ir_c01272:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01272{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01272;src:url('chunks/assets/font_aaa42dc19e9a136ddeea88cd.woff2')format("woff");}.ff1_c01272{font-family:ff1_c01272;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5a_c01272{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);}
.m53_c01272{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);}
.m5d_c01272{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);}
.m47_c01272{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m15_c01272{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);}
.m38_c01272{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m32_c01272{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.mf_c01272{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m40_c01272{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01272{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m43_c01272{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01272{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m6_c01272{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m12_c01272{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_c01272{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);}
.m50_c01272{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01272{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);}
.m4d_c01272{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m5_c01272{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);}
.m39_c01272{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m52_c01272{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01272{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m54_c01272{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);}
.m44_c01272{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m4_c01272{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m21_c01272{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);}
.mb_c01272{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m34_c01272{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);}
.m0_c01272{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m57_c01272{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);}
.m29_c01272{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m18_c01272{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);}
.m3d_c01272{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m1_c01272{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);}
.m41_c01272{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01272{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m20_c01272{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m11_c01272{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);}
.me_c01272{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);}
.m2_c01272{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.mc_c01272{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);}
.m14_c01272{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_c01272{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m37_c01272{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m36_c01272{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);}
.m3_c01272{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m17_c01272{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01272{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);}
.m2e_c01272{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);}
.m2b_c01272{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01272{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m58_c01272{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m22_c01272{transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);}
.m28_c01272{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01272{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m13_c01272{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m7_c01272{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);}
.m55_c01272{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m25_c01272{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m24_c01272{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.ma_c01272{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m16_c01272{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);}
.m33_c01272{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);}
.m51_c01272{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m19_c01272{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m8_c01272{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m46_c01272{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);}
.m5c_c01272{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m5b_c01272{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01272{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);}
.m23_c01272{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01272{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01272{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m35_c01272{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m30_c01272{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);}
.m31_c01272{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m27_c01272{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m26_c01272{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);}
.m2f_c01272{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m48_c01272{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m10_c01272{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m45_c01272{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m4f_c01272{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01272{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);}
.m4a_c01272{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);}
.m5e_c01272{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01272{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01272{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m59_c01272{transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);}
.m49_c01272{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01272{transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);}
.m4e_c01272{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.m56_c01272{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m42_c01272{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);}
.md_c01272{transform:matrix(1.122500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.122500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.122500,0.000000,0.000000,0.250000,0,0);}
.v0_c01272{vertical-align:0.000000px;}
.ls0_c01272{letter-spacing:0.000000px;}
.sc__c01272{text-shadow:none;}
.sc0_c01272{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01272{-webkit-text-stroke:0px transparent;}
.sc0_c01272{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01272{word-spacing:-6.000240px;}
.ws2_c01272{word-spacing:0.000000px;}
.ws0_c01272{word-spacing:2.422560px;}
.fc0_c01272{color:transparent;}
.fs6_c01272{font-size:20.160000px;}
.fs7_c01272{font-size:34.560000px;}
.fsb_c01272{font-size:37.440000px;}
.fs8_c01272{font-size:40.320000px;}
.fsc_c01272{font-size:43.200000px;}
.fs5_c01272{font-size:46.080000px;}
.fs4_c01272{font-size:48.960000px;}
.fs2_c01272{font-size:51.840000px;}
.fsd_c01272{font-size:54.720000px;}
.fsa_c01272{font-size:57.600000px;}
.fs3_c01272{font-size:60.480000px;}
.fs9_c01272{font-size:63.360000px;}
.fse_c01272{font-size:66.240000px;}
.fs1_c01272{font-size:69.120000px;}
.fs0_c01272{font-size:72.000000px;}
.fsf_c01272{font-size:74.880000px;}
.y0_c01272{bottom:0.000000px;}
.y8a_c01272{bottom:31.680000px;}
.y88_c01272{bottom:34.560000px;}
.y89_c01272{bottom:35.280000px;}
.y87_c01272{bottom:36.000000px;}
.y84_c01272{bottom:75.600000px;}
.y86_c01272{bottom:77.040000px;}
.y85_c01272{bottom:77.760000px;}
.y83_c01272{bottom:78.480000px;}
.y82_c01272{bottom:79.920000px;}
.y81_c01272{bottom:81.360000px;}
.y80_c01272{bottom:82.800000px;}
.y7e_c01272{bottom:118.800000px;}
.y7d_c01272{bottom:120.240000px;}
.y7f_c01272{bottom:121.680000px;}
.y7b_c01272{bottom:122.400000px;}
.y7c_c01272{bottom:123.840000px;}
.y7a_c01272{bottom:124.560000px;}
.y79_c01272{bottom:128.160000px;}
.y77_c01272{bottom:161.280000px;}
.y74_c01272{bottom:162.000000px;}
.y78_c01272{bottom:164.160000px;}
.y75_c01272{bottom:164.880000px;}
.y76_c01272{bottom:165.600000px;}
.y73_c01272{bottom:166.320000px;}
.y72_c01272{bottom:167.760000px;}
.y71_c01272{bottom:169.200000px;}
.y70_c01272{bottom:170.640000px;}
.y6e_c01272{bottom:205.200000px;}
.y6f_c01272{bottom:206.640000px;}
.y6c_c01272{bottom:207.360000px;}
.y6b_c01272{bottom:208.080000px;}
.y6d_c01272{bottom:208.800000px;}
.y6a_c01272{bottom:212.400000px;}
.y69_c01272{bottom:247.680000px;}
.y67_c01272{bottom:248.400000px;}
.y68_c01272{bottom:249.120000px;}
.y66_c01272{bottom:249.840000px;}
.y62_c01272{bottom:250.560000px;}
.y65_c01272{bottom:251.280000px;}
.y63_c01272{bottom:252.000000px;}
.y64_c01272{bottom:252.720000px;}
.y61_c01272{bottom:290.880000px;}
.y5e_c01272{bottom:291.600000px;}
.y60_c01272{bottom:293.040000px;}
.y5f_c01272{bottom:293.760000px;}
.y5d_c01272{bottom:294.480000px;}
.y5c_c01272{bottom:295.200000px;}
.y5a_c01272{bottom:334.080000px;}
.y59_c01272{bottom:336.240000px;}
.y5b_c01272{bottom:336.960000px;}
.y58_c01272{bottom:337.680000px;}
.y57_c01272{bottom:375.840000px;}
.y56_c01272{bottom:376.560000px;}
.y54_c01272{bottom:377.280000px;}
.y52_c01272{bottom:378.720000px;}
.y55_c01272{bottom:379.440000px;}
.y53_c01272{bottom:380.160000px;}
.y51_c01272{bottom:381.600000px;}
.y50_c01272{bottom:418.320000px;}
.y4f_c01272{bottom:419.760000px;}
.y4e_c01272{bottom:420.480000px;}
.y4c_c01272{bottom:421.920000px;}
.y4d_c01272{bottom:422.640000px;}
.y49_c01272{bottom:462.240000px;}
.y4b_c01272{bottom:464.400000px;}
.y4a_c01272{bottom:465.120000px;}
.y47_c01272{bottom:515.520000px;}
.y48_c01272{bottom:517.680000px;}
.y46_c01272{bottom:518.400000px;}
.y44_c01272{bottom:558.000000px;}
.y43_c01272{bottom:558.720000px;}
.y42_c01272{bottom:560.880000px;}
.y41_c01272{bottom:561.600000px;}
.y45_c01272{bottom:562.320000px;}
.y3e_c01272{bottom:599.760000px;}
.y3f_c01272{bottom:601.200000px;}
.y3c_c01272{bottom:601.920000px;}
.y3d_c01272{bottom:604.080000px;}
.y40_c01272{bottom:604.800000px;}
.y3a_c01272{bottom:644.400000px;}
.y39_c01272{bottom:645.120000px;}
.y38_c01272{bottom:646.560000px;}
.y37_c01272{bottom:647.280000px;}
.y3b_c01272{bottom:648.000000px;}
.y34_c01272{bottom:696.240000px;}
.y35_c01272{bottom:699.840000px;}
.y36_c01272{bottom:700.560000px;}
.y30_c01272{bottom:740.160000px;}
.y2e_c01272{bottom:741.600000px;}
.y2f_c01272{bottom:742.320000px;}
.y31_c01272{bottom:743.760000px;}
.y32_c01272{bottom:744.480000px;}
.y33_c01272{bottom:745.200000px;}
.y29_c01272{bottom:781.920000px;}
.y2d_c01272{bottom:785.520000px;}
.y2a_c01272{bottom:786.240000px;}
.y2c_c01272{bottom:786.960000px;}
.y2b_c01272{bottom:787.680000px;}
.y22_c01272{bottom:826.560000px;}
.y23_c01272{bottom:827.280000px;}
.y24_c01272{bottom:828.000000px;}
.y27_c01272{bottom:828.720000px;}
.y25_c01272{bottom:829.440000px;}
.y26_c01272{bottom:830.160000px;}
.y28_c01272{bottom:830.880000px;}
.y1c_c01272{bottom:867.600000px;}
.y1e_c01272{bottom:868.320000px;}
.y1d_c01272{bottom:870.480000px;}
.y1f_c01272{bottom:871.920000px;}
.y20_c01272{bottom:873.360000px;}
.y21_c01272{bottom:874.080000px;}
.y16_c01272{bottom:910.800000px;}
.y17_c01272{bottom:912.960000px;}
.y1a_c01272{bottom:913.680000px;}
.y18_c01272{bottom:914.400000px;}
.y19_c01272{bottom:915.120000px;}
.y1b_c01272{bottom:916.560000px;}
.yf_c01272{bottom:953.280000px;}
.y10_c01272{bottom:954.000000px;}
.y11_c01272{bottom:955.440000px;}
.y12_c01272{bottom:956.160000px;}
.y13_c01272{bottom:956.880000px;}
.y14_c01272{bottom:958.320000px;}
.y15_c01272{bottom:959.040000px;}
.y7_c01272{bottom:994.320000px;}
.y8_c01272{bottom:995.760000px;}
.yb_c01272{bottom:997.200000px;}
.y9_c01272{bottom:998.640000px;}
.ya_c01272{bottom:999.360000px;}
.yc_c01272{bottom:1000.800000px;}
.yd_c01272{bottom:1001.520000px;}
.ye_c01272{bottom:1002.240000px;}
.y2_c01272{bottom:1038.960000px;}
.y4_c01272{bottom:1041.840000px;}
.y3_c01272{bottom:1042.560000px;}
.y5_c01272{bottom:1044.720000px;}
.y6_c01272{bottom:1045.440000px;}
.y1_c01272{bottom:1082.880000px;}
.h8_c01272{height:18.142031px;}
.h9_c01272{height:31.100625px;}
.hd_c01272{height:33.692344px;}
.ha_c01272{height:36.284062px;}
.he_c01272{height:38.875781px;}
.h7_c01272{height:41.467500px;}
.h6_c01272{height:44.059219px;}
.h4_c01272{height:46.650937px;}
.hf_c01272{height:49.242656px;}
.hc_c01272{height:51.834375px;}
.h5_c01272{height:54.426094px;}
.hb_c01272{height:57.017812px;}
.h10_c01272{height:59.609531px;}
.h3_c01272{height:62.201250px;}
.h2_c01272{height:64.792969px;}
.h11_c01272{height:67.384687px;}
.h0_c01272{height:1141.920000px;}
.h1_c01272{height:1142.250000px;}
.w0_c01272{width:776.160000px;}
.w1_c01272{width:776.250000px;}
.x0_c01272{left:0.000000px;}
.x14_c01272{left:64.800000px;}
.xa_c01272{left:66.240000px;}
.x2f_c01272{left:67.680000px;}
.x53_c01272{left:69.120000px;}
.x63_c01272{left:70.560000px;}
.x26_c01272{left:95.760000px;}
.x54_c01272{left:97.920000px;}
.x74_c01272{left:99.360000px;}
.x15_c01272{left:105.840000px;}
.x42_c01272{left:107.280000px;}
.x64_c01272{left:108.720000px;}
.xb_c01272{left:114.480000px;}
.x3c_c01272{left:118.080000px;}
.x27_c01272{left:127.440000px;}
.x71_c01272{left:128.880000px;}
.xc_c01272{left:136.080000px;}
.x3d_c01272{left:138.240000px;}
.x6c_c01272{left:140.400000px;}
.x4d_c01272{left:149.040000px;}
.x78_c01272{left:151.200000px;}
.x46_c01272{left:159.840000px;}
.x65_c01272{left:161.280000px;}
.x2_c01272{left:168.480000px;}
.x33_c01272{left:169.920000px;}
.x72_c01272{left:172.080000px;}
.x16_c01272{left:179.280000px;}
.x4e_c01272{left:180.720000px;}
.x66_c01272{left:182.160000px;}
.x7c_c01272{left:183.600000px;}
.xd_c01272{left:187.920000px;}
.x3e_c01272{left:190.080000px;}
.x38_c01272{left:201.600000px;}
.x75_c01272{left:213.840000px;}
.x3_c01272{left:222.480000px;}
.x4a_c01272{left:224.640000px;}
.x47_c01272{left:234.000000px;}
.x39_c01272{left:235.440000px;}
.x28_c01272{left:244.800000px;}
.x6d_c01272{left:246.240000px;}
.x1f_c01272{left:253.440000px;}
.x4_c01272{left:254.880000px;}
.x4f_c01272{left:256.320000px;}
.x4b_c01272{left:257.760000px;}
.x48_c01272{left:267.120000px;}
.x21_c01272{left:276.480000px;}
.x59_c01272{left:278.640000px;}
.x17_c01272{left:286.560000px;}
.x55_c01272{left:289.440000px;}
.xe_c01272{left:296.640000px;}
.x30_c01272{left:298.080000px;}
.x76_c01272{left:300.240000px;}
.x22_c01272{left:308.160000px;}
.x6e_c01272{left:311.040000px;}
.x18_c01272{left:319.680000px;}
.x5e_c01272{left:321.120000px;}
.x79_c01272{left:322.560000px;}
.x31_c01272{left:330.480000px;}
.x29_c01272{left:341.280000px;}
.x50_c01272{left:343.440000px;}
.x19_c01272{left:349.920000px;}
.x34_c01272{left:352.080000px;}
.x3a_c01272{left:353.520000px;}
.x7d_c01272{left:355.680000px;}
.x23_c01272{left:362.880000px;}
.x37_c01272{left:365.760000px;}
.x5_c01272{left:373.680000px;}
.x67_c01272{left:375.840000px;}
.xf_c01272{left:383.040000px;}
.x3f_c01272{left:385.200000px;}
.x5f_c01272{left:386.640000px;}
.x2a_c01272{left:395.280000px;}
.x5a_c01272{left:397.440000px;}
.x1a_c01272{left:405.360000px;}
.x43_c01272{left:406.800000px;}
.x56_c01272{left:408.240000px;}
.x10_c01272{left:416.880000px;}
.x2b_c01272{left:427.680000px;}
.x68_c01272{left:430.560000px;}
.x1b_c01272{left:437.760000px;}
.x57_c01272{left:441.360000px;}
.x35_c01272{left:450.000000px;}
.x69_c01272{left:451.440000px;}
.x7a_c01272{left:453.600000px;}
.x2c_c01272{left:460.080000px;}
.x6_c01272{left:470.160000px;}
.x1c_c01272{left:481.680000px;}
.x40_c01272{left:483.120000px;}
.x73_c01272{left:485.280000px;}
.x24_c01272{left:492.480000px;}
.x44_c01272{left:494.640000px;}
.x7_c01272{left:502.560000px;}
.x11_c01272{left:514.080000px;}
.x2d_c01272{left:515.520000px;}
.x6f_c01272{left:518.400000px;}
.x7e_c01272{left:519.840000px;}
.x1d_c01272{left:524.880000px;}
.x5b_c01272{left:527.760000px;}
.x51_c01272{left:537.840000px;}
.x7b_c01272{left:540.000000px;}
.x20_c01272{left:547.200000px;}
.x60_c01272{left:549.360000px;}
.x36_c01272{left:558.720000px;}
.x5c_c01272{left:560.880000px;}
.x32_c01272{left:568.800000px;}
.x52_c01272{left:570.960000px;}
.x77_c01272{left:572.400000px;}
.x8_c01272{left:579.600000px;}
.x49_c01272{left:581.040000px;}
.x61_c01272{left:582.480000px;}
.x25_c01272{left:591.120000px;}
.x4c_c01272{left:592.560000px;}
.x41_c01272{left:602.640000px;}
.x70_c01272{left:604.800000px;}
.x12_c01272{left:612.000000px;}
.x6a_c01272{left:614.880000px;}
.x1e_c01272{left:622.800000px;}
.x7f_c01272{left:627.120000px;}
.x45_c01272{left:635.040000px;}
.x62_c01272{left:636.480000px;}
.x13_c01272{left:643.680000px;}
.x3b_c01272{left:645.840000px;}
.x1_c01272{left:655.920000px;}
.x6b_c01272{left:658.800000px;}
.x9_c01272{left:665.280000px;}
.x2e_c01272{left:666.720000px;}
.x5d_c01272{left:668.880000px;}
.x58_c01272{left:679.680000px;}
@media print{
.v0_c01272{vertical-align:0.000000pt;}
.ls0_c01272{letter-spacing:0.000000pt;}
.ws1_c01272{word-spacing:-5.333547pt;}
.ws2_c01272{word-spacing:0.000000pt;}
.ws0_c01272{word-spacing:2.153387pt;}
.fs6_c01272{font-size:17.920000pt;}
.fs7_c01272{font-size:30.720000pt;}
.fsb_c01272{font-size:33.280000pt;}
.fs8_c01272{font-size:35.840000pt;}
.fsc_c01272{font-size:38.400000pt;}
.fs5_c01272{font-size:40.960000pt;}
.fs4_c01272{font-size:43.520000pt;}
.fs2_c01272{font-size:46.080000pt;}
.fsd_c01272{font-size:48.640000pt;}
.fsa_c01272{font-size:51.200000pt;}
.fs3_c01272{font-size:53.760000pt;}
.fs9_c01272{font-size:56.320000pt;}
.fse_c01272{font-size:58.880000pt;}
.fs1_c01272{font-size:61.440000pt;}
.fs0_c01272{font-size:64.000000pt;}
.fsf_c01272{font-size:66.560000pt;}
.y0_c01272{bottom:0.000000pt;}
.y8a_c01272{bottom:28.160000pt;}
.y88_c01272{bottom:30.720000pt;}
.y89_c01272{bottom:31.360000pt;}
.y87_c01272{bottom:32.000000pt;}
.y84_c01272{bottom:67.200000pt;}
.y86_c01272{bottom:68.480000pt;}
.y85_c01272{bottom:69.120000pt;}
.y83_c01272{bottom:69.760000pt;}
.y82_c01272{bottom:71.040000pt;}
.y81_c01272{bottom:72.320000pt;}
.y80_c01272{bottom:73.600000pt;}
.y7e_c01272{bottom:105.600000pt;}
.y7d_c01272{bottom:106.880000pt;}
.y7f_c01272{bottom:108.160000pt;}
.y7b_c01272{bottom:108.800000pt;}
.y7c_c01272{bottom:110.080000pt;}
.y7a_c01272{bottom:110.720000pt;}
.y79_c01272{bottom:113.920000pt;}
.y77_c01272{bottom:143.360000pt;}
.y74_c01272{bottom:144.000000pt;}
.y78_c01272{bottom:145.920000pt;}
.y75_c01272{bottom:146.560000pt;}
.y76_c01272{bottom:147.200000pt;}
.y73_c01272{bottom:147.840000pt;}
.y72_c01272{bottom:149.120000pt;}
.y71_c01272{bottom:150.400000pt;}
.y70_c01272{bottom:151.680000pt;}
.y6e_c01272{bottom:182.400000pt;}
.y6f_c01272{bottom:183.680000pt;}
.y6c_c01272{bottom:184.320000pt;}
.y6b_c01272{bottom:184.960000pt;}
.y6d_c01272{bottom:185.600000pt;}
.y6a_c01272{bottom:188.800000pt;}
.y69_c01272{bottom:220.160000pt;}
.y67_c01272{bottom:220.800000pt;}
.y68_c01272{bottom:221.440000pt;}
.y66_c01272{bottom:222.080000pt;}
.y62_c01272{bottom:222.720000pt;}
.y65_c01272{bottom:223.360000pt;}
.y63_c01272{bottom:224.000000pt;}
.y64_c01272{bottom:224.640000pt;}
.y61_c01272{bottom:258.560000pt;}
.y5e_c01272{bottom:259.200000pt;}
.y60_c01272{bottom:260.480000pt;}
.y5f_c01272{bottom:261.120000pt;}
.y5d_c01272{bottom:261.760000pt;}
.y5c_c01272{bottom:262.400000pt;}
.y5a_c01272{bottom:296.960000pt;}
.y59_c01272{bottom:298.880000pt;}
.y5b_c01272{bottom:299.520000pt;}
.y58_c01272{bottom:300.160000pt;}
.y57_c01272{bottom:334.080000pt;}
.y56_c01272{bottom:334.720000pt;}
.y54_c01272{bottom:335.360000pt;}
.y52_c01272{bottom:336.640000pt;}
.y55_c01272{bottom:337.280000pt;}
.y53_c01272{bottom:337.920000pt;}
.y51_c01272{bottom:339.200000pt;}
.y50_c01272{bottom:371.840000pt;}
.y4f_c01272{bottom:373.120000pt;}
.y4e_c01272{bottom:373.760000pt;}
.y4c_c01272{bottom:375.040000pt;}
.y4d_c01272{bottom:375.680000pt;}
.y49_c01272{bottom:410.880000pt;}
.y4b_c01272{bottom:412.800000pt;}
.y4a_c01272{bottom:413.440000pt;}
.y47_c01272{bottom:458.240000pt;}
.y48_c01272{bottom:460.160000pt;}
.y46_c01272{bottom:460.800000pt;}
.y44_c01272{bottom:496.000000pt;}
.y43_c01272{bottom:496.640000pt;}
.y42_c01272{bottom:498.560000pt;}
.y41_c01272{bottom:499.200000pt;}
.y45_c01272{bottom:499.840000pt;}
.y3e_c01272{bottom:533.120000pt;}
.y3f_c01272{bottom:534.400000pt;}
.y3c_c01272{bottom:535.040000pt;}
.y3d_c01272{bottom:536.960000pt;}
.y40_c01272{bottom:537.600000pt;}
.y3a_c01272{bottom:572.800000pt;}
.y39_c01272{bottom:573.440000pt;}
.y38_c01272{bottom:574.720000pt;}
.y37_c01272{bottom:575.360000pt;}
.y3b_c01272{bottom:576.000000pt;}
.y34_c01272{bottom:618.880000pt;}
.y35_c01272{bottom:622.080000pt;}
.y36_c01272{bottom:622.720000pt;}
.y30_c01272{bottom:657.920000pt;}
.y2e_c01272{bottom:659.200000pt;}
.y2f_c01272{bottom:659.840000pt;}
.y31_c01272{bottom:661.120000pt;}
.y32_c01272{bottom:661.760000pt;}
.y33_c01272{bottom:662.400000pt;}
.y29_c01272{bottom:695.040000pt;}
.y2d_c01272{bottom:698.240000pt;}
.y2a_c01272{bottom:698.880000pt;}
.y2c_c01272{bottom:699.520000pt;}
.y2b_c01272{bottom:700.160000pt;}
.y22_c01272{bottom:734.720000pt;}
.y23_c01272{bottom:735.360000pt;}
.y24_c01272{bottom:736.000000pt;}
.y27_c01272{bottom:736.640000pt;}
.y25_c01272{bottom:737.280000pt;}
.y26_c01272{bottom:737.920000pt;}
.y28_c01272{bottom:738.560000pt;}
.y1c_c01272{bottom:771.200000pt;}
.y1e_c01272{bottom:771.840000pt;}
.y1d_c01272{bottom:773.760000pt;}
.y1f_c01272{bottom:775.040000pt;}
.y20_c01272{bottom:776.320000pt;}
.y21_c01272{bottom:776.960000pt;}
.y16_c01272{bottom:809.600000pt;}
.y17_c01272{bottom:811.520000pt;}
.y1a_c01272{bottom:812.160000pt;}
.y18_c01272{bottom:812.800000pt;}
.y19_c01272{bottom:813.440000pt;}
.y1b_c01272{bottom:814.720000pt;}
.yf_c01272{bottom:847.360000pt;}
.y10_c01272{bottom:848.000000pt;}
.y11_c01272{bottom:849.280000pt;}
.y12_c01272{bottom:849.920000pt;}
.y13_c01272{bottom:850.560000pt;}
.y14_c01272{bottom:851.840000pt;}
.y15_c01272{bottom:852.480000pt;}
.y7_c01272{bottom:883.840000pt;}
.y8_c01272{bottom:885.120000pt;}
.yb_c01272{bottom:886.400000pt;}
.y9_c01272{bottom:887.680000pt;}
.ya_c01272{bottom:888.320000pt;}
.yc_c01272{bottom:889.600000pt;}
.yd_c01272{bottom:890.240000pt;}
.ye_c01272{bottom:890.880000pt;}
.y2_c01272{bottom:923.520000pt;}
.y4_c01272{bottom:926.080000pt;}
.y3_c01272{bottom:926.720000pt;}
.y5_c01272{bottom:928.640000pt;}
.y6_c01272{bottom:929.280000pt;}
.y1_c01272{bottom:962.560000pt;}
.h8_c01272{height:16.126250pt;}
.h9_c01272{height:27.645000pt;}
.hd_c01272{height:29.948750pt;}
.ha_c01272{height:32.252500pt;}
.he_c01272{height:34.556250pt;}
.h7_c01272{height:36.860000pt;}
.h6_c01272{height:39.163750pt;}
.h4_c01272{height:41.467500pt;}
.hf_c01272{height:43.771250pt;}
.hc_c01272{height:46.075000pt;}
.h5_c01272{height:48.378750pt;}
.hb_c01272{height:50.682500pt;}
.h10_c01272{height:52.986250pt;}
.h3_c01272{height:55.290000pt;}
.h2_c01272{height:57.593750pt;}
.h11_c01272{height:59.897500pt;}
.h0_c01272{height:1015.040000pt;}
.h1_c01272{height:1015.333333pt;}
.w0_c01272{width:689.920000pt;}
.w1_c01272{width:690.000000pt;}
.x0_c01272{left:0.000000pt;}
.x14_c01272{left:57.600000pt;}
.xa_c01272{left:58.880000pt;}
.x2f_c01272{left:60.160000pt;}
.x53_c01272{left:61.440000pt;}
.x63_c01272{left:62.720000pt;}
.x26_c01272{left:85.120000pt;}
.x54_c01272{left:87.040000pt;}
.x74_c01272{left:88.320000pt;}
.x15_c01272{left:94.080000pt;}
.x42_c01272{left:95.360000pt;}
.x64_c01272{left:96.640000pt;}
.xb_c01272{left:101.760000pt;}
.x3c_c01272{left:104.960000pt;}
.x27_c01272{left:113.280000pt;}
.x71_c01272{left:114.560000pt;}
.xc_c01272{left:120.960000pt;}
.x3d_c01272{left:122.880000pt;}
.x6c_c01272{left:124.800000pt;}
.x4d_c01272{left:132.480000pt;}
.x78_c01272{left:134.400000pt;}
.x46_c01272{left:142.080000pt;}
.x65_c01272{left:143.360000pt;}
.x2_c01272{left:149.760000pt;}
.x33_c01272{left:151.040000pt;}
.x72_c01272{left:152.960000pt;}
.x16_c01272{left:159.360000pt;}
.x4e_c01272{left:160.640000pt;}
.x66_c01272{left:161.920000pt;}
.x7c_c01272{left:163.200000pt;}
.xd_c01272{left:167.040000pt;}
.x3e_c01272{left:168.960000pt;}
.x38_c01272{left:179.200000pt;}
.x75_c01272{left:190.080000pt;}
.x3_c01272{left:197.760000pt;}
.x4a_c01272{left:199.680000pt;}
.x47_c01272{left:208.000000pt;}
.x39_c01272{left:209.280000pt;}
.x28_c01272{left:217.600000pt;}
.x6d_c01272{left:218.880000pt;}
.x1f_c01272{left:225.280000pt;}
.x4_c01272{left:226.560000pt;}
.x4f_c01272{left:227.840000pt;}
.x4b_c01272{left:229.120000pt;}
.x48_c01272{left:237.440000pt;}
.x21_c01272{left:245.760000pt;}
.x59_c01272{left:247.680000pt;}
.x17_c01272{left:254.720000pt;}
.x55_c01272{left:257.280000pt;}
.xe_c01272{left:263.680000pt;}
.x30_c01272{left:264.960000pt;}
.x76_c01272{left:266.880000pt;}
.x22_c01272{left:273.920000pt;}
.x6e_c01272{left:276.480000pt;}
.x18_c01272{left:284.160000pt;}
.x5e_c01272{left:285.440000pt;}
.x79_c01272{left:286.720000pt;}
.x31_c01272{left:293.760000pt;}
.x29_c01272{left:303.360000pt;}
.x50_c01272{left:305.280000pt;}
.x19_c01272{left:311.040000pt;}
.x34_c01272{left:312.960000pt;}
.x3a_c01272{left:314.240000pt;}
.x7d_c01272{left:316.160000pt;}
.x23_c01272{left:322.560000pt;}
.x37_c01272{left:325.120000pt;}
.x5_c01272{left:332.160000pt;}
.x67_c01272{left:334.080000pt;}
.xf_c01272{left:340.480000pt;}
.x3f_c01272{left:342.400000pt;}
.x5f_c01272{left:343.680000pt;}
.x2a_c01272{left:351.360000pt;}
.x5a_c01272{left:353.280000pt;}
.x1a_c01272{left:360.320000pt;}
.x43_c01272{left:361.600000pt;}
.x56_c01272{left:362.880000pt;}
.x10_c01272{left:370.560000pt;}
.x2b_c01272{left:380.160000pt;}
.x68_c01272{left:382.720000pt;}
.x1b_c01272{left:389.120000pt;}
.x57_c01272{left:392.320000pt;}
.x35_c01272{left:400.000000pt;}
.x69_c01272{left:401.280000pt;}
.x7a_c01272{left:403.200000pt;}
.x2c_c01272{left:408.960000pt;}
.x6_c01272{left:417.920000pt;}
.x1c_c01272{left:428.160000pt;}
.x40_c01272{left:429.440000pt;}
.x73_c01272{left:431.360000pt;}
.x24_c01272{left:437.760000pt;}
.x44_c01272{left:439.680000pt;}
.x7_c01272{left:446.720000pt;}
.x11_c01272{left:456.960000pt;}
.x2d_c01272{left:458.240000pt;}
.x6f_c01272{left:460.800000pt;}
.x7e_c01272{left:462.080000pt;}
.x1d_c01272{left:466.560000pt;}
.x5b_c01272{left:469.120000pt;}
.x51_c01272{left:478.080000pt;}
.x7b_c01272{left:480.000000pt;}
.x20_c01272{left:486.400000pt;}
.x60_c01272{left:488.320000pt;}
.x36_c01272{left:496.640000pt;}
.x5c_c01272{left:498.560000pt;}
.x32_c01272{left:505.600000pt;}
.x52_c01272{left:507.520000pt;}
.x77_c01272{left:508.800000pt;}
.x8_c01272{left:515.200000pt;}
.x49_c01272{left:516.480000pt;}
.x61_c01272{left:517.760000pt;}
.x25_c01272{left:525.440000pt;}
.x4c_c01272{left:526.720000pt;}
.x41_c01272{left:535.680000pt;}
.x70_c01272{left:537.600000pt;}
.x12_c01272{left:544.000000pt;}
.x6a_c01272{left:546.560000pt;}
.x1e_c01272{left:553.600000pt;}
.x7f_c01272{left:557.440000pt;}
.x45_c01272{left:564.480000pt;}
.x62_c01272{left:565.760000pt;}
.x13_c01272{left:572.160000pt;}
.x3b_c01272{left:574.080000pt;}
.x1_c01272{left:583.040000pt;}
.x6b_c01272{left:585.600000pt;}
.x9_c01272{left:591.360000pt;}
.x2e_c01272{left:592.640000pt;}
.x5d_c01272{left:594.560000pt;}
.x58_c01272{left:604.160000pt;}
}





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

.ir_c01273:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01273{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01273;src:url('chunks/assets/font_eb44471bd928405381f40d1d.woff2')format("woff");}.ff1_c01273{font-family:ff1_c01273;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m65_c01273{transform:matrix(0.174275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174275,0.000000,0.000000,0.250000,0,0);}
.m5f_c01273{transform:matrix(0.241325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241325,0.000000,0.000000,0.250000,0,0);}
.m63_c01273{transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);}
.m64_c01273{transform:matrix(0.244600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244600,0.000000,0.000000,0.250000,0,0);}
.m5a_c01273{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);}
.m5c_c01273{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);}
.m56_c01273{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);}
.m61_c01273{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);}
.m5e_c01273{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m55_c01273{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m28_c01273{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);}
.m5d_c01273{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);}
.m37_c01273{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m5b_c01273{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m46_c01273{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m48_c01273{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m18_c01273{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m35_c01273{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m38_c01273{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m59_c01273{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m60_c01273{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m62_c01273{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m0_c01273{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m68_c01273{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m42_c01273{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m57_c01273{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.me_c01273{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);}
.m3b_c01273{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m22_c01273{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mf_c01273{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);}
.m34_c01273{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m41_c01273{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m14_c01273{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m29_c01273{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01273{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.md_c01273{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01273{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);}
.m51_c01273{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m9_c01273{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m4e_c01273{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m24_c01273{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);}
.m2f_c01273{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m20_c01273{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);}
.m36_c01273{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m11_c01273{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.mc_c01273{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01273{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);}
.m3d_c01273{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);}
.m4_c01273{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m8_c01273{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m30_c01273{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01273{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);}
.m44_c01273{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01273{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);}
.m43_c01273{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m27_c01273{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);}
.m12_c01273{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);}
.m26_c01273{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01273{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m5_c01273{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);}
.mb_c01273{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m6_c01273{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m13_c01273{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);}
.m3_c01273{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m16_c01273{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);}
.m17_c01273{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m1_c01273{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m58_c01273{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m23_c01273{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);}
.m3c_c01273{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m39_c01273{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m50_c01273{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m52_c01273{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);}
.m31_c01273{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01273{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m10_c01273{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m45_c01273{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m54_c01273{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);}
.m1b_c01273{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m7_c01273{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m53_c01273{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);}
.m3f_c01273{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01273{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m25_c01273{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01273{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m2_c01273{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);}
.m4d_c01273{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.ma_c01273{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m32_c01273{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);}
.m33_c01273{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);}
.m2b_c01273{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m19_c01273{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m47_c01273{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);}
.m21_c01273{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);}
.m4c_c01273{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01273{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);}
.m40_c01273{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m15_c01273{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01273{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m49_c01273{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01273{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01273{transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01273{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.m66_c01273{transform:matrix(7.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(7.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(7.440000,0.000000,0.000000,0.250000,0,0);}
.m67_c01273{transform:matrix(7.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(7.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(7.680000,0.000000,0.000000,0.250000,0,0);}
.v2_c01273{vertical-align:-8.640000px;}
.v1_c01273{vertical-align:-2.880000px;}
.v0_c01273{vertical-align:0.000000px;}
.ls1_c01273{letter-spacing:0.000000px;}
.ls0_c01273{letter-spacing:365.033520px;}
.sc__c01273{text-shadow:none;}
.sc0_c01273{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01273{-webkit-text-stroke:0px transparent;}
.sc0_c01273{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01273{word-spacing:0.000000px;}
.ws0_c01273{word-spacing:205.011600px;}
.fc0_c01273{color:transparent;}
.fse_c01273{font-size:17.280000px;}
.fsf_c01273{font-size:25.920000px;}
.fs9_c01273{font-size:31.680000px;}
.fs8_c01273{font-size:34.560000px;}
.fsd_c01273{font-size:37.440000px;}
.fs5_c01273{font-size:43.200000px;}
.fs3_c01273{font-size:46.080000px;}
.fs4_c01273{font-size:48.960000px;}
.fs1_c01273{font-size:51.840000px;}
.fsa_c01273{font-size:54.720000px;}
.fs6_c01273{font-size:57.600000px;}
.fs0_c01273{font-size:60.480000px;}
.fs7_c01273{font-size:63.360000px;}
.fs2_c01273{font-size:66.240000px;}
.fsc_c01273{font-size:69.120000px;}
.fsb_c01273{font-size:72.000000px;}
.fs10_c01273{font-size:77.760000px;}
.y0_c01273{bottom:0.000000px;}
.y90_c01273{bottom:11.520000px;}
.y8f_c01273{bottom:12.240000px;}
.y8e_c01273{bottom:12.960000px;}
.y8d_c01273{bottom:14.400000px;}
.y8c_c01273{bottom:16.560000px;}
.y8b_c01273{bottom:20.160000px;}
.y8a_c01273{bottom:28.800000px;}
.y89_c01273{bottom:31.680000px;}
.y88_c01273{bottom:32.400000px;}
.y87_c01273{bottom:36.000000px;}
.y85_c01273{bottom:58.320000px;}
.y83_c01273{bottom:60.480000px;}
.y86_c01273{bottom:61.920000px;}
.y84_c01273{bottom:64.080000px;}
.y82_c01273{bottom:66.960000px;}
.y81_c01273{bottom:68.400000px;}
.y80_c01273{bottom:74.160000px;}
.y7f_c01273{bottom:93.600000px;}
.y7e_c01273{bottom:95.040000px;}
.y7d_c01273{bottom:95.760000px;}
.y7c_c01273{bottom:96.480000px;}
.y7b_c01273{bottom:100.080000px;}
.y7a_c01273{bottom:100.800000px;}
.y79_c01273{bottom:104.400000px;}
.y78_c01273{bottom:126.720000px;}
.y77_c01273{bottom:128.880000px;}
.y76_c01273{bottom:129.600000px;}
.y75_c01273{bottom:131.760000px;}
.y74_c01273{bottom:136.800000px;}
.y72_c01273{bottom:160.560000px;}
.y73_c01273{bottom:161.280000px;}
.y71_c01273{bottom:162.720000px;}
.y70_c01273{bottom:164.880000px;}
.y6f_c01273{bottom:168.480000px;}
.y6d_c01273{bottom:191.520000px;}
.y6c_c01273{bottom:192.960000px;}
.y6e_c01273{bottom:193.680000px;}
.y6b_c01273{bottom:194.400000px;}
.y6a_c01273{bottom:195.120000px;}
.y69_c01273{bottom:200.880000px;}
.y68_c01273{bottom:224.640000px;}
.y67_c01273{bottom:225.360000px;}
.y66_c01273{bottom:226.800000px;}
.y65_c01273{bottom:227.520000px;}
.y64_c01273{bottom:228.960000px;}
.y63_c01273{bottom:231.840000px;}
.y61_c01273{bottom:255.600000px;}
.y62_c01273{bottom:257.040000px;}
.y5f_c01273{bottom:257.760000px;}
.y5e_c01273{bottom:259.200000px;}
.y5d_c01273{bottom:259.920000px;}
.y5c_c01273{bottom:261.360000px;}
.y60_c01273{bottom:264.240000px;}
.y5b_c01273{bottom:298.800000px;}
.y59_c01273{bottom:301.680000px;}
.y5a_c01273{bottom:302.400000px;}
.y58_c01273{bottom:305.280000px;}
.y57_c01273{bottom:339.840000px;}
.y56_c01273{bottom:343.440000px;}
.y54_c01273{bottom:344.160000px;}
.y55_c01273{bottom:345.600000px;}
.y53_c01273{bottom:348.480000px;}
.y4f_c01273{bottom:385.920000px;}
.y52_c01273{bottom:386.640000px;}
.y51_c01273{bottom:387.360000px;}
.y50_c01273{bottom:388.080000px;}
.y4e_c01273{bottom:388.800000px;}
.y4d_c01273{bottom:389.520000px;}
.y4c_c01273{bottom:426.240000px;}
.y4b_c01273{bottom:429.120000px;}
.y49_c01273{bottom:429.840000px;}
.y4a_c01273{bottom:430.560000px;}
.y48_c01273{bottom:431.280000px;}
.y47_c01273{bottom:432.000000px;}
.y46_c01273{bottom:432.720000px;}
.y44_c01273{bottom:470.880000px;}
.y45_c01273{bottom:473.040000px;}
.y43_c01273{bottom:473.760000px;}
.y40_c01273{bottom:524.160000px;}
.y42_c01273{bottom:527.040000px;}
.y41_c01273{bottom:527.760000px;}
.y3d_c01273{bottom:565.920000px;}
.y3b_c01273{bottom:566.640000px;}
.y3c_c01273{bottom:567.360000px;}
.y3f_c01273{bottom:569.520000px;}
.y3e_c01273{bottom:570.240000px;}
.y3a_c01273{bottom:609.120000px;}
.y38_c01273{bottom:609.840000px;}
.y39_c01273{bottom:610.560000px;}
.y37_c01273{bottom:612.720000px;}
.y36_c01273{bottom:613.440000px;}
.y35_c01273{bottom:614.160000px;}
.y30_c01273{bottom:652.320000px;}
.y31_c01273{bottom:653.040000px;}
.y33_c01273{bottom:653.760000px;}
.y32_c01273{bottom:655.200000px;}
.y2f_c01273{bottom:655.920000px;}
.y34_c01273{bottom:656.640000px;}
.y2b_c01273{bottom:695.520000px;}
.y2d_c01273{bottom:696.240000px;}
.y2e_c01273{bottom:697.680000px;}
.y2c_c01273{bottom:698.400000px;}
.y2a_c01273{bottom:699.120000px;}
.y26_c01273{bottom:737.280000px;}
.y29_c01273{bottom:738.000000px;}
.y27_c01273{bottom:738.720000px;}
.y25_c01273{bottom:740.880000px;}
.y28_c01273{bottom:741.600000px;}
.y20_c01273{bottom:779.760000px;}
.y21_c01273{bottom:780.480000px;}
.y23_c01273{bottom:781.200000px;}
.y22_c01273{bottom:783.360000px;}
.y24_c01273{bottom:784.080000px;}
.y19_c01273{bottom:822.960000px;}
.y1c_c01273{bottom:823.680000px;}
.y1d_c01273{bottom:824.400000px;}
.y1f_c01273{bottom:825.120000px;}
.y1a_c01273{bottom:825.840000px;}
.y1b_c01273{bottom:826.560000px;}
.y1e_c01273{bottom:827.280000px;}
.y17_c01273{bottom:866.880000px;}
.y13_c01273{bottom:867.600000px;}
.y14_c01273{bottom:868.320000px;}
.y15_c01273{bottom:869.040000px;}
.y16_c01273{bottom:869.760000px;}
.y18_c01273{bottom:870.480000px;}
.y10_c01273{bottom:908.640000px;}
.yc_c01273{bottom:909.360000px;}
.y12_c01273{bottom:910.080000px;}
.yd_c01273{bottom:910.800000px;}
.ye_c01273{bottom:911.520000px;}
.yf_c01273{bottom:912.240000px;}
.y11_c01273{bottom:912.960000px;}
.y9_c01273{bottom:951.840000px;}
.y7_c01273{bottom:952.560000px;}
.y8_c01273{bottom:954.000000px;}
.yb_c01273{bottom:954.720000px;}
.ya_c01273{bottom:956.160000px;}
.y3_c01273{bottom:995.040000px;}
.y5_c01273{bottom:995.760000px;}
.y4_c01273{bottom:997.920000px;}
.y6_c01273{bottom:998.640000px;}
.y1_c01273{bottom:1046.160000px;}
.y2_c01273{bottom:1049.760000px;}
.h10_c01273{height:15.550313px;}
.h11_c01273{height:23.325469px;}
.hb_c01273{height:28.508906px;}
.ha_c01273{height:31.100625px;}
.hf_c01273{height:33.692344px;}
.h7_c01273{height:38.875781px;}
.h5_c01273{height:41.467500px;}
.h6_c01273{height:44.059219px;}
.h3_c01273{height:46.650937px;}
.hc_c01273{height:49.242656px;}
.h8_c01273{height:51.834375px;}
.h2_c01273{height:54.426094px;}
.h9_c01273{height:57.017812px;}
.h4_c01273{height:59.609531px;}
.he_c01273{height:62.201250px;}
.hd_c01273{height:64.792969px;}
.h12_c01273{height:69.976406px;}
.h0_c01273{height:1157.760000px;}
.h1_c01273{height:1158.000000px;}
.w1_c01273{width:765.000000px;}
.w0_c01273{width:765.360000px;}
.x0_c01273{left:0.000000px;}
.x1_c01273{left:58.320000px;}
.x3a_c01273{left:60.480000px;}
.x57_c01273{left:79.920000px;}
.x31_c01273{left:87.120000px;}
.x14_c01273{left:88.560000px;}
.x44_c01273{left:99.360000px;}
.x21_c01273{left:108.720000px;}
.x2_c01273{left:118.800000px;}
.x4f_c01273{left:120.240000px;}
.x22_c01273{left:128.880000px;}
.x49_c01273{left:130.320000px;}
.x29_c01273{left:139.680000px;}
.x45_c01273{left:141.120000px;}
.x1b_c01273{left:149.760000px;}
.x3_c01273{left:160.560000px;}
.x2a_c01273{left:170.640000px;}
.x35_c01273{left:181.440000px;}
.xd_c01273{left:192.960000px;}
.x53_c01273{left:201.600000px;}
.x32_c01273{left:203.760000px;}
.x58_c01273{left:205.200000px;}
.x4_c01273{left:213.840000px;}
.x4b_c01273{left:216.000000px;}
.xe_c01273{left:224.640000px;}
.x38_c01273{left:226.080000px;}
.x23_c01273{left:235.440000px;}
.x2e_c01273{left:246.240000px;}
.x5_c01273{left:257.040000px;}
.x1c_c01273{left:258.480000px;}
.x42_c01273{left:267.840000px;}
.x15_c01273{left:279.360000px;}
.x39_c01273{left:289.440000px;}
.x59_c01273{left:291.600000px;}
.x50_c01273{left:298.800000px;}
.x6_c01273{left:300.960000px;}
.x16_c01273{left:311.040000px;}
.x4a_c01273{left:312.480000px;}
.x33_c01273{left:332.640000px;}
.x24_c01273{left:343.440000px;}
.x17_c01273{left:354.240000px;}
.x2f_c01273{left:355.680000px;}
.x7_c01273{left:365.040000px;}
.xf_c01273{left:378.000000px;}
.x51_c01273{left:384.480000px;}
.x2b_c01273{left:386.640000px;}
.x10_c01273{left:397.440000px;}
.x4c_c01273{left:398.880000px;}
.x34_c01273{left:408.240000px;}
.x8_c01273{left:409.680000px;}
.x11_c01273{left:421.200000px;}
.x3b_c01273{left:430.560000px;}
.x4d_c01273{left:439.920000px;}
.x18_c01273{left:441.360000px;}
.x12_c01273{left:452.160000px;}
.x40_c01273{left:463.680000px;}
.x54_c01273{left:471.600000px;}
.x19_c01273{left:473.040000px;}
.x25_c01273{left:474.480000px;}
.x5a_c01273{left:475.920000px;}
.x3f_c01273{left:484.560000px;}
.x1d_c01273{left:486.000000px;}
.x9_c01273{left:496.080000px;}
.x1a_c01273{left:506.160000px;}
.x43_c01273{left:507.600000px;}
.x1e_c01273{left:517.680000px;}
.x3c_c01273{left:527.040000px;}
.x36_c01273{left:528.480000px;}
.x30_c01273{left:549.360000px;}
.x13_c01273{left:550.800000px;}
.x5b_c01273{left:552.240000px;}
.x52_c01273{left:559.440000px;}
.x3d_c01273{left:560.880000px;}
.x55_c01273{left:562.320000px;}
.xa_c01273{left:571.680000px;}
.x4e_c01273{left:573.120000px;}
.x26_c01273{left:583.200000px;}
.x47_c01273{left:584.640000px;}
.x41_c01273{left:594.000000px;}
.x37_c01273{left:603.360000px;}
.x2c_c01273{left:604.800000px;}
.x1f_c01273{left:615.600000px;}
.xb_c01273{left:626.400000px;}
.x27_c01273{left:637.920000px;}
.x2d_c01273{left:647.280000px;}
.x20_c01273{left:648.720000px;}
.x56_c01273{left:650.160000px;}
.x46_c01273{left:658.800000px;}
.x28_c01273{left:660.240000px;}
.xc_c01273{left:670.320000px;}
.x3e_c01273{left:671.760000px;}
.x48_c01273{left:681.840000px;}
@media print{
.v2_c01273{vertical-align:-7.680000pt;}
.v1_c01273{vertical-align:-2.560000pt;}
.v0_c01273{vertical-align:0.000000pt;}
.ls1_c01273{letter-spacing:0.000000pt;}
.ls0_c01273{letter-spacing:324.474240pt;}
.ws1_c01273{word-spacing:0.000000pt;}
.ws0_c01273{word-spacing:182.232533pt;}
.fse_c01273{font-size:15.360000pt;}
.fsf_c01273{font-size:23.040000pt;}
.fs9_c01273{font-size:28.160000pt;}
.fs8_c01273{font-size:30.720000pt;}
.fsd_c01273{font-size:33.280000pt;}
.fs5_c01273{font-size:38.400000pt;}
.fs3_c01273{font-size:40.960000pt;}
.fs4_c01273{font-size:43.520000pt;}
.fs1_c01273{font-size:46.080000pt;}
.fsa_c01273{font-size:48.640000pt;}
.fs6_c01273{font-size:51.200000pt;}
.fs0_c01273{font-size:53.760000pt;}
.fs7_c01273{font-size:56.320000pt;}
.fs2_c01273{font-size:58.880000pt;}
.fsc_c01273{font-size:61.440000pt;}
.fsb_c01273{font-size:64.000000pt;}
.fs10_c01273{font-size:69.120000pt;}
.y0_c01273{bottom:0.000000pt;}
.y90_c01273{bottom:10.240000pt;}
.y8f_c01273{bottom:10.880000pt;}
.y8e_c01273{bottom:11.520000pt;}
.y8d_c01273{bottom:12.800000pt;}
.y8c_c01273{bottom:14.720000pt;}
.y8b_c01273{bottom:17.920000pt;}
.y8a_c01273{bottom:25.600000pt;}
.y89_c01273{bottom:28.160000pt;}
.y88_c01273{bottom:28.800000pt;}
.y87_c01273{bottom:32.000000pt;}
.y85_c01273{bottom:51.840000pt;}
.y83_c01273{bottom:53.760000pt;}
.y86_c01273{bottom:55.040000pt;}
.y84_c01273{bottom:56.960000pt;}
.y82_c01273{bottom:59.520000pt;}
.y81_c01273{bottom:60.800000pt;}
.y80_c01273{bottom:65.920000pt;}
.y7f_c01273{bottom:83.200000pt;}
.y7e_c01273{bottom:84.480000pt;}
.y7d_c01273{bottom:85.120000pt;}
.y7c_c01273{bottom:85.760000pt;}
.y7b_c01273{bottom:88.960000pt;}
.y7a_c01273{bottom:89.600000pt;}
.y79_c01273{bottom:92.800000pt;}
.y78_c01273{bottom:112.640000pt;}
.y77_c01273{bottom:114.560000pt;}
.y76_c01273{bottom:115.200000pt;}
.y75_c01273{bottom:117.120000pt;}
.y74_c01273{bottom:121.600000pt;}
.y72_c01273{bottom:142.720000pt;}
.y73_c01273{bottom:143.360000pt;}
.y71_c01273{bottom:144.640000pt;}
.y70_c01273{bottom:146.560000pt;}
.y6f_c01273{bottom:149.760000pt;}
.y6d_c01273{bottom:170.240000pt;}
.y6c_c01273{bottom:171.520000pt;}
.y6e_c01273{bottom:172.160000pt;}
.y6b_c01273{bottom:172.800000pt;}
.y6a_c01273{bottom:173.440000pt;}
.y69_c01273{bottom:178.560000pt;}
.y68_c01273{bottom:199.680000pt;}
.y67_c01273{bottom:200.320000pt;}
.y66_c01273{bottom:201.600000pt;}
.y65_c01273{bottom:202.240000pt;}
.y64_c01273{bottom:203.520000pt;}
.y63_c01273{bottom:206.080000pt;}
.y61_c01273{bottom:227.200000pt;}
.y62_c01273{bottom:228.480000pt;}
.y5f_c01273{bottom:229.120000pt;}
.y5e_c01273{bottom:230.400000pt;}
.y5d_c01273{bottom:231.040000pt;}
.y5c_c01273{bottom:232.320000pt;}
.y60_c01273{bottom:234.880000pt;}
.y5b_c01273{bottom:265.600000pt;}
.y59_c01273{bottom:268.160000pt;}
.y5a_c01273{bottom:268.800000pt;}
.y58_c01273{bottom:271.360000pt;}
.y57_c01273{bottom:302.080000pt;}
.y56_c01273{bottom:305.280000pt;}
.y54_c01273{bottom:305.920000pt;}
.y55_c01273{bottom:307.200000pt;}
.y53_c01273{bottom:309.760000pt;}
.y4f_c01273{bottom:343.040000pt;}
.y52_c01273{bottom:343.680000pt;}
.y51_c01273{bottom:344.320000pt;}
.y50_c01273{bottom:344.960000pt;}
.y4e_c01273{bottom:345.600000pt;}
.y4d_c01273{bottom:346.240000pt;}
.y4c_c01273{bottom:378.880000pt;}
.y4b_c01273{bottom:381.440000pt;}
.y49_c01273{bottom:382.080000pt;}
.y4a_c01273{bottom:382.720000pt;}
.y48_c01273{bottom:383.360000pt;}
.y47_c01273{bottom:384.000000pt;}
.y46_c01273{bottom:384.640000pt;}
.y44_c01273{bottom:418.560000pt;}
.y45_c01273{bottom:420.480000pt;}
.y43_c01273{bottom:421.120000pt;}
.y40_c01273{bottom:465.920000pt;}
.y42_c01273{bottom:468.480000pt;}
.y41_c01273{bottom:469.120000pt;}
.y3d_c01273{bottom:503.040000pt;}
.y3b_c01273{bottom:503.680000pt;}
.y3c_c01273{bottom:504.320000pt;}
.y3f_c01273{bottom:506.240000pt;}
.y3e_c01273{bottom:506.880000pt;}
.y3a_c01273{bottom:541.440000pt;}
.y38_c01273{bottom:542.080000pt;}
.y39_c01273{bottom:542.720000pt;}
.y37_c01273{bottom:544.640000pt;}
.y36_c01273{bottom:545.280000pt;}
.y35_c01273{bottom:545.920000pt;}
.y30_c01273{bottom:579.840000pt;}
.y31_c01273{bottom:580.480000pt;}
.y33_c01273{bottom:581.120000pt;}
.y32_c01273{bottom:582.400000pt;}
.y2f_c01273{bottom:583.040000pt;}
.y34_c01273{bottom:583.680000pt;}
.y2b_c01273{bottom:618.240000pt;}
.y2d_c01273{bottom:618.880000pt;}
.y2e_c01273{bottom:620.160000pt;}
.y2c_c01273{bottom:620.800000pt;}
.y2a_c01273{bottom:621.440000pt;}
.y26_c01273{bottom:655.360000pt;}
.y29_c01273{bottom:656.000000pt;}
.y27_c01273{bottom:656.640000pt;}
.y25_c01273{bottom:658.560000pt;}
.y28_c01273{bottom:659.200000pt;}
.y20_c01273{bottom:693.120000pt;}
.y21_c01273{bottom:693.760000pt;}
.y23_c01273{bottom:694.400000pt;}
.y22_c01273{bottom:696.320000pt;}
.y24_c01273{bottom:696.960000pt;}
.y19_c01273{bottom:731.520000pt;}
.y1c_c01273{bottom:732.160000pt;}
.y1d_c01273{bottom:732.800000pt;}
.y1f_c01273{bottom:733.440000pt;}
.y1a_c01273{bottom:734.080000pt;}
.y1b_c01273{bottom:734.720000pt;}
.y1e_c01273{bottom:735.360000pt;}
.y17_c01273{bottom:770.560000pt;}
.y13_c01273{bottom:771.200000pt;}
.y14_c01273{bottom:771.840000pt;}
.y15_c01273{bottom:772.480000pt;}
.y16_c01273{bottom:773.120000pt;}
.y18_c01273{bottom:773.760000pt;}
.y10_c01273{bottom:807.680000pt;}
.yc_c01273{bottom:808.320000pt;}
.y12_c01273{bottom:808.960000pt;}
.yd_c01273{bottom:809.600000pt;}
.ye_c01273{bottom:810.240000pt;}
.yf_c01273{bottom:810.880000pt;}
.y11_c01273{bottom:811.520000pt;}
.y9_c01273{bottom:846.080000pt;}
.y7_c01273{bottom:846.720000pt;}
.y8_c01273{bottom:848.000000pt;}
.yb_c01273{bottom:848.640000pt;}
.ya_c01273{bottom:849.920000pt;}
.y3_c01273{bottom:884.480000pt;}
.y5_c01273{bottom:885.120000pt;}
.y4_c01273{bottom:887.040000pt;}
.y6_c01273{bottom:887.680000pt;}
.y1_c01273{bottom:929.920000pt;}
.y2_c01273{bottom:933.120000pt;}
.h10_c01273{height:13.822500pt;}
.h11_c01273{height:20.733750pt;}
.hb_c01273{height:25.341250pt;}
.ha_c01273{height:27.645000pt;}
.hf_c01273{height:29.948750pt;}
.h7_c01273{height:34.556250pt;}
.h5_c01273{height:36.860000pt;}
.h6_c01273{height:39.163750pt;}
.h3_c01273{height:41.467500pt;}
.hc_c01273{height:43.771250pt;}
.h8_c01273{height:46.075000pt;}
.h2_c01273{height:48.378750pt;}
.h9_c01273{height:50.682500pt;}
.h4_c01273{height:52.986250pt;}
.he_c01273{height:55.290000pt;}
.hd_c01273{height:57.593750pt;}
.h12_c01273{height:62.201250pt;}
.h0_c01273{height:1029.120000pt;}
.h1_c01273{height:1029.333333pt;}
.w1_c01273{width:680.000000pt;}
.w0_c01273{width:680.320000pt;}
.x0_c01273{left:0.000000pt;}
.x1_c01273{left:51.840000pt;}
.x3a_c01273{left:53.760000pt;}
.x57_c01273{left:71.040000pt;}
.x31_c01273{left:77.440000pt;}
.x14_c01273{left:78.720000pt;}
.x44_c01273{left:88.320000pt;}
.x21_c01273{left:96.640000pt;}
.x2_c01273{left:105.600000pt;}
.x4f_c01273{left:106.880000pt;}
.x22_c01273{left:114.560000pt;}
.x49_c01273{left:115.840000pt;}
.x29_c01273{left:124.160000pt;}
.x45_c01273{left:125.440000pt;}
.x1b_c01273{left:133.120000pt;}
.x3_c01273{left:142.720000pt;}
.x2a_c01273{left:151.680000pt;}
.x35_c01273{left:161.280000pt;}
.xd_c01273{left:171.520000pt;}
.x53_c01273{left:179.200000pt;}
.x32_c01273{left:181.120000pt;}
.x58_c01273{left:182.400000pt;}
.x4_c01273{left:190.080000pt;}
.x4b_c01273{left:192.000000pt;}
.xe_c01273{left:199.680000pt;}
.x38_c01273{left:200.960000pt;}
.x23_c01273{left:209.280000pt;}
.x2e_c01273{left:218.880000pt;}
.x5_c01273{left:228.480000pt;}
.x1c_c01273{left:229.760000pt;}
.x42_c01273{left:238.080000pt;}
.x15_c01273{left:248.320000pt;}
.x39_c01273{left:257.280000pt;}
.x59_c01273{left:259.200000pt;}
.x50_c01273{left:265.600000pt;}
.x6_c01273{left:267.520000pt;}
.x16_c01273{left:276.480000pt;}
.x4a_c01273{left:277.760000pt;}
.x33_c01273{left:295.680000pt;}
.x24_c01273{left:305.280000pt;}
.x17_c01273{left:314.880000pt;}
.x2f_c01273{left:316.160000pt;}
.x7_c01273{left:324.480000pt;}
.xf_c01273{left:336.000000pt;}
.x51_c01273{left:341.760000pt;}
.x2b_c01273{left:343.680000pt;}
.x10_c01273{left:353.280000pt;}
.x4c_c01273{left:354.560000pt;}
.x34_c01273{left:362.880000pt;}
.x8_c01273{left:364.160000pt;}
.x11_c01273{left:374.400000pt;}
.x3b_c01273{left:382.720000pt;}
.x4d_c01273{left:391.040000pt;}
.x18_c01273{left:392.320000pt;}
.x12_c01273{left:401.920000pt;}
.x40_c01273{left:412.160000pt;}
.x54_c01273{left:419.200000pt;}
.x19_c01273{left:420.480000pt;}
.x25_c01273{left:421.760000pt;}
.x5a_c01273{left:423.040000pt;}
.x3f_c01273{left:430.720000pt;}
.x1d_c01273{left:432.000000pt;}
.x9_c01273{left:440.960000pt;}
.x1a_c01273{left:449.920000pt;}
.x43_c01273{left:451.200000pt;}
.x1e_c01273{left:460.160000pt;}
.x3c_c01273{left:468.480000pt;}
.x36_c01273{left:469.760000pt;}
.x30_c01273{left:488.320000pt;}
.x13_c01273{left:489.600000pt;}
.x5b_c01273{left:490.880000pt;}
.x52_c01273{left:497.280000pt;}
.x3d_c01273{left:498.560000pt;}
.x55_c01273{left:499.840000pt;}
.xa_c01273{left:508.160000pt;}
.x4e_c01273{left:509.440000pt;}
.x26_c01273{left:518.400000pt;}
.x47_c01273{left:519.680000pt;}
.x41_c01273{left:528.000000pt;}
.x37_c01273{left:536.320000pt;}
.x2c_c01273{left:537.600000pt;}
.x1f_c01273{left:547.200000pt;}
.xb_c01273{left:556.800000pt;}
.x27_c01273{left:567.040000pt;}
.x2d_c01273{left:575.360000pt;}
.x20_c01273{left:576.640000pt;}
.x56_c01273{left:577.920000pt;}
.x46_c01273{left:585.600000pt;}
.x28_c01273{left:586.880000pt;}
.xc_c01273{left:595.840000pt;}
.x3e_c01273{left:597.120000pt;}
.x48_c01273{left:606.080000pt;}
}





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

.ir_c01274:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01274{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01274;src:url('chunks/assets/font_53f47a8d09bb43f84d864b03.woff2')format("woff");}.ff1_c01274{font-family:ff1_c01274;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m59_c01274{transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);}
.m2b_c01274{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m17_c01274{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);}
.m5c_c01274{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);}
.m57_c01274{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);}
.m5b_c01274{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m22_c01274{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);}
.m55_c01274{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);}
.m37_c01274{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m45_c01274{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m38_c01274{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m58_c01274{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m5e_c01274{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01274{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m31_c01274{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01274{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m36_c01274{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m47_c01274{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m53_c01274{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m40_c01274{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m43_c01274{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m21_c01274{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m6_c01274{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mc_c01274{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);}
.m34_c01274{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m25_c01274{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m7_c01274{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);}
.m4c_c01274{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m30_c01274{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);}
.m1c_c01274{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m56_c01274{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m0_c01274{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);}
.m46_c01274{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m32_c01274{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01274{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);}
.m5a_c01274{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);}
.m4f_c01274{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);}
.m48_c01274{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);}
.m1a_c01274{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m1_c01274{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);}
.m1e_c01274{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);}
.m4_c01274{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);}
.m3_c01274{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m18_c01274{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01274{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);}
.m52_c01274{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m23_c01274{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m20_c01274{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m5d_c01274{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);}
.m13_c01274{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);}
.m4d_c01274{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m28_c01274{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m44_c01274{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m15_c01274{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m5f_c01274{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.me_c01274{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m24_c01274{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);}
.m3f_c01274{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m12_c01274{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);}
.m41_c01274{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m4e_c01274{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m2_c01274{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m16_c01274{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.ma_c01274{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);}
.m29_c01274{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m50_c01274{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m10_c01274{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);}
.m42_c01274{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.mf_c01274{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m19_c01274{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);}
.m49_c01274{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01274{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m9_c01274{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);}
.m2c_c01274{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m33_c01274{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m54_c01274{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);}
.m2e_c01274{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m11_c01274{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.md_c01274{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m5_c01274{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.mb_c01274{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01274{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);}
.m4a_c01274{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m26_c01274{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m39_c01274{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m27_c01274{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m35_c01274{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);}
.m14_c01274{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);}
.m1b_c01274{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01274{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);}
.m3e_c01274{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01274{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01274{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m51_c01274{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01274{transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);}
.m8_c01274{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.v1_c01274{vertical-align:-5.760000px;}
.v0_c01274{vertical-align:0.000000px;}
.ls0_c01274{letter-spacing:0.000000px;}
.sc__c01274{text-shadow:none;}
.sc0_c01274{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01274{-webkit-text-stroke:0px transparent;}
.sc0_c01274{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01274{word-spacing:-5.682000px;}
.ws1_c01274{word-spacing:0.000000px;}
.fc0_c01274{color:transparent;}
.fs4_c01274{font-size:34.560000px;}
.fs7_c01274{font-size:37.440000px;}
.fs1_c01274{font-size:43.200000px;}
.fs5_c01274{font-size:46.080000px;}
.fs8_c01274{font-size:48.960000px;}
.fs2_c01274{font-size:51.840000px;}
.fs6_c01274{font-size:54.720000px;}
.fsb_c01274{font-size:57.600000px;}
.fs3_c01274{font-size:60.480000px;}
.fsa_c01274{font-size:63.360000px;}
.fsc_c01274{font-size:66.240000px;}
.fs9_c01274{font-size:69.120000px;}
.fsd_c01274{font-size:72.000000px;}
.fs0_c01274{font-size:74.880000px;}
.y0_c01274{bottom:0.000000px;}
.y88_c01274{bottom:54.720000px;}
.y87_c01274{bottom:55.440000px;}
.y86_c01274{bottom:56.880000px;}
.y85_c01274{bottom:57.600000px;}
.y84_c01274{bottom:59.040000px;}
.y83_c01274{bottom:61.200000px;}
.y81_c01274{bottom:95.760000px;}
.y82_c01274{bottom:98.640000px;}
.y80_c01274{bottom:100.080000px;}
.y7f_c01274{bottom:100.800000px;}
.y7d_c01274{bottom:101.520000px;}
.y7e_c01274{bottom:102.240000px;}
.y7c_c01274{bottom:105.840000px;}
.y79_c01274{bottom:138.960000px;}
.y77_c01274{bottom:140.400000px;}
.y7b_c01274{bottom:141.120000px;}
.y7a_c01274{bottom:141.840000px;}
.y76_c01274{bottom:142.560000px;}
.y78_c01274{bottom:143.280000px;}
.y75_c01274{bottom:145.440000px;}
.y74_c01274{bottom:148.320000px;}
.y73_c01274{bottom:149.760000px;}
.y71_c01274{bottom:182.160000px;}
.y70_c01274{bottom:182.880000px;}
.y6f_c01274{bottom:183.600000px;}
.y72_c01274{bottom:184.320000px;}
.y6b_c01274{bottom:187.200000px;}
.y6e_c01274{bottom:187.920000px;}
.y6d_c01274{bottom:188.640000px;}
.y6c_c01274{bottom:190.800000px;}
.y67_c01274{bottom:226.080000px;}
.y68_c01274{bottom:226.800000px;}
.y6a_c01274{bottom:227.520000px;}
.y69_c01274{bottom:228.960000px;}
.y66_c01274{bottom:230.400000px;}
.y65_c01274{bottom:232.560000px;}
.y63_c01274{bottom:268.560000px;}
.y62_c01274{bottom:269.280000px;}
.y64_c01274{bottom:271.440000px;}
.y61_c01274{bottom:272.160000px;}
.y60_c01274{bottom:272.880000px;}
.y5f_c01274{bottom:275.040000px;}
.y5e_c01274{bottom:276.480000px;}
.y5d_c01274{bottom:277.920000px;}
.y5c_c01274{bottom:311.760000px;}
.y5a_c01274{bottom:312.480000px;}
.y57_c01274{bottom:314.640000px;}
.y5b_c01274{bottom:315.360000px;}
.y59_c01274{bottom:316.080000px;}
.y58_c01274{bottom:316.800000px;}
.y56_c01274{bottom:318.240000px;}
.y55_c01274{bottom:318.960000px;}
.y54_c01274{bottom:319.680000px;}
.y52_c01274{bottom:354.960000px;}
.y50_c01274{bottom:357.120000px;}
.y53_c01274{bottom:357.840000px;}
.y51_c01274{bottom:358.560000px;}
.y4f_c01274{bottom:362.160000px;}
.y4d_c01274{bottom:398.880000px;}
.y4e_c01274{bottom:400.320000px;}
.y4c_c01274{bottom:401.040000px;}
.y4b_c01274{bottom:402.480000px;}
.y4a_c01274{bottom:404.640000px;}
.y49_c01274{bottom:440.640000px;}
.y48_c01274{bottom:444.240000px;}
.y47_c01274{bottom:444.960000px;}
.y46_c01274{bottom:484.560000px;}
.y44_c01274{bottom:485.280000px;}
.y42_c01274{bottom:486.000000px;}
.y45_c01274{bottom:486.720000px;}
.y41_c01274{bottom:487.440000px;}
.y43_c01274{bottom:488.160000px;}
.y40_c01274{bottom:527.040000px;}
.y3f_c01274{bottom:527.760000px;}
.y3c_c01274{bottom:529.920000px;}
.y3e_c01274{bottom:530.640000px;}
.y3d_c01274{bottom:531.360000px;}
.y3b_c01274{bottom:572.400000px;}
.y3a_c01274{bottom:573.120000px;}
.y38_c01274{bottom:573.840000px;}
.y39_c01274{bottom:574.560000px;}
.y37_c01274{bottom:612.720000px;}
.y34_c01274{bottom:613.440000px;}
.y35_c01274{bottom:615.600000px;}
.y36_c01274{bottom:616.320000px;}
.y31_c01274{bottom:655.200000px;}
.y32_c01274{bottom:655.920000px;}
.y33_c01274{bottom:658.080000px;}
.y2f_c01274{bottom:658.800000px;}
.y30_c01274{bottom:659.520000px;}
.y2e_c01274{bottom:698.400000px;}
.y2d_c01274{bottom:699.120000px;}
.y2c_c01274{bottom:701.280000px;}
.y2b_c01274{bottom:702.000000px;}
.y2a_c01274{bottom:754.560000px;}
.y25_c01274{bottom:794.160000px;}
.y27_c01274{bottom:797.040000px;}
.y26_c01274{bottom:797.760000px;}
.y28_c01274{bottom:798.480000px;}
.y29_c01274{bottom:799.200000px;}
.y20_c01274{bottom:838.080000px;}
.y1f_c01274{bottom:838.800000px;}
.y24_c01274{bottom:839.520000px;}
.y22_c01274{bottom:840.240000px;}
.y21_c01274{bottom:840.960000px;}
.y23_c01274{bottom:841.680000px;}
.y1e_c01274{bottom:882.000000px;}
.y1b_c01274{bottom:883.440000px;}
.y1c_c01274{bottom:884.160000px;}
.y1d_c01274{bottom:884.880000px;}
.y16_c01274{bottom:933.840000px;}
.y14_c01274{bottom:935.280000px;}
.y1a_c01274{bottom:936.000000px;}
.y15_c01274{bottom:936.720000px;}
.y17_c01274{bottom:937.440000px;}
.y18_c01274{bottom:938.160000px;}
.y19_c01274{bottom:938.880000px;}
.yd_c01274{bottom:975.600000px;}
.y10_c01274{bottom:978.480000px;}
.ye_c01274{bottom:979.200000px;}
.yf_c01274{bottom:979.920000px;}
.y11_c01274{bottom:981.360000px;}
.y12_c01274{bottom:982.080000px;}
.y13_c01274{bottom:982.800000px;}
.y6_c01274{bottom:1020.240000px;}
.y7_c01274{bottom:1021.680000px;}
.y8_c01274{bottom:1022.400000px;}
.y9_c01274{bottom:1023.120000px;}
.ya_c01274{bottom:1023.840000px;}
.yc_c01274{bottom:1024.560000px;}
.yb_c01274{bottom:1025.280000px;}
.y4_c01274{bottom:1064.880000px;}
.y2_c01274{bottom:1065.600000px;}
.y3_c01274{bottom:1067.040000px;}
.y5_c01274{bottom:1067.760000px;}
.y1_c01274{bottom:1116.000000px;}
.h6_c01274{height:31.100625px;}
.h9_c01274{height:33.692344px;}
.h3_c01274{height:38.875781px;}
.h7_c01274{height:41.467500px;}
.ha_c01274{height:44.059219px;}
.h4_c01274{height:46.650937px;}
.h8_c01274{height:49.242656px;}
.hd_c01274{height:51.834375px;}
.h5_c01274{height:54.426094px;}
.hc_c01274{height:57.017812px;}
.he_c01274{height:59.609531px;}
.hb_c01274{height:62.201250px;}
.hf_c01274{height:64.792969px;}
.h2_c01274{height:67.384687px;}
.h0_c01274{height:1158.480000px;}
.h1_c01274{height:1158.750000px;}
.w1_c01274{width:766.500000px;}
.w0_c01274{width:766.800000px;}
.x0_c01274{left:0.000000px;}
.xa_c01274{left:60.480000px;}
.x2f_c01274{left:61.920000px;}
.x4d_c01274{left:89.280000px;}
.xb_c01274{left:90.720000px;}
.x3e_c01274{left:99.360000px;}
.x33_c01274{left:100.800000px;}
.x43_c01274{left:110.880000px;}
.x4e_c01274{left:119.520000px;}
.x19_c01274{left:120.960000px;}
.x34_c01274{left:130.320000px;}
.x30_c01274{left:131.760000px;}
.x13_c01274{left:142.560000px;}
.x1a_c01274{left:151.920000px;}
.x31_c01274{left:162.000000px;}
.x2_c01274{left:164.160000px;}
.x44_c01274{left:172.800000px;}
.x28_c01274{left:183.600000px;}
.x24_c01274{left:185.040000px;}
.x2b_c01274{left:194.400000px;}
.x3_c01274{left:195.840000px;}
.x35_c01274{left:204.480000px;}
.x1b_c01274{left:206.640000px;}
.x49_c01274{left:215.280000px;}
.x25_c01274{left:216.720000px;}
.x14_c01274{left:227.520000px;}
.x29_c01274{left:237.600000px;}
.x4f_c01274{left:246.960000px;}
.x51_c01274{left:248.400000px;}
.x3b_c01274{left:259.920000px;}
.xc_c01274{left:270.720000px;}
.x20_c01274{left:280.800000px;}
.x26_c01274{left:292.320000px;}
.xd_c01274{left:302.400000px;}
.x45_c01274{left:311.760000px;}
.x15_c01274{left:313.920000px;}
.x27_c01274{left:324.000000px;}
.x38_c01274{left:334.800000px;}
.x21_c01274{left:336.240000px;}
.x53_c01274{left:344.880000px;}
.x4_c01274{left:346.320000px;}
.x36_c01274{left:356.400000px;}
.x1c_c01274{left:357.840000px;}
.x39_c01274{left:367.200000px;}
.x47_c01274{left:378.000000px;}
.xe_c01274{left:379.440000px;}
.x2a_c01274{left:388.800000px;}
.x2c_c01274{left:399.600000px;}
.x3a_c01274{left:409.680000px;}
.x5_c01274{left:411.840000px;}
.x41_c01274{left:421.200000px;}
.x3c_c01274{left:432.000000px;}
.x22_c01274{left:434.160000px;}
.x54_c01274{left:442.800000px;}
.x42_c01274{left:454.320000px;}
.x4a_c01274{left:464.400000px;}
.x1d_c01274{left:465.840000px;}
.x32_c01274{left:475.920000px;}
.x6_c01274{left:487.440000px;}
.x1e_c01274{left:492.480000px;}
.x55_c01274{left:496.800000px;}
.x16_c01274{left:498.960000px;}
.x3f_c01274{left:508.320000px;}
.xf_c01274{left:509.760000px;}
.x50_c01274{left:519.120000px;}
.x7_c01274{left:520.560000px;}
.x48_c01274{left:529.920000px;}
.x10_c01274{left:531.360000px;}
.x4b_c01274{left:540.000000px;}
.x2d_c01274{left:541.440000px;}
.x1f_c01274{left:552.960000px;}
.x3d_c01274{left:563.040000px;}
.x4c_c01274{left:574.560000px;}
.x17_c01274{left:584.640000px;}
.x23_c01274{left:596.160000px;}
.x11_c01274{left:607.680000px;}
.x18_c01274{left:617.760000px;}
.x8_c01274{left:629.280000px;}
.x52_c01274{left:637.920000px;}
.x12_c01274{left:640.080000px;}
.x37_c01274{left:650.160000px;}
.x40_c01274{left:660.240000px;}
.x9_c01274{left:661.680000px;}
.x46_c01274{left:671.760000px;}
.x1_c01274{left:680.400000px;}
.x2e_c01274{left:684.000000px;}
@media print{
.v1_c01274{vertical-align:-5.120000pt;}
.v0_c01274{vertical-align:0.000000pt;}
.ls0_c01274{letter-spacing:0.000000pt;}
.ws0_c01274{word-spacing:-5.050667pt;}
.ws1_c01274{word-spacing:0.000000pt;}
.fs4_c01274{font-size:30.720000pt;}
.fs7_c01274{font-size:33.280000pt;}
.fs1_c01274{font-size:38.400000pt;}
.fs5_c01274{font-size:40.960000pt;}
.fs8_c01274{font-size:43.520000pt;}
.fs2_c01274{font-size:46.080000pt;}
.fs6_c01274{font-size:48.640000pt;}
.fsb_c01274{font-size:51.200000pt;}
.fs3_c01274{font-size:53.760000pt;}
.fsa_c01274{font-size:56.320000pt;}
.fsc_c01274{font-size:58.880000pt;}
.fs9_c01274{font-size:61.440000pt;}
.fsd_c01274{font-size:64.000000pt;}
.fs0_c01274{font-size:66.560000pt;}
.y0_c01274{bottom:0.000000pt;}
.y88_c01274{bottom:48.640000pt;}
.y87_c01274{bottom:49.280000pt;}
.y86_c01274{bottom:50.560000pt;}
.y85_c01274{bottom:51.200000pt;}
.y84_c01274{bottom:52.480000pt;}
.y83_c01274{bottom:54.400000pt;}
.y81_c01274{bottom:85.120000pt;}
.y82_c01274{bottom:87.680000pt;}
.y80_c01274{bottom:88.960000pt;}
.y7f_c01274{bottom:89.600000pt;}
.y7d_c01274{bottom:90.240000pt;}
.y7e_c01274{bottom:90.880000pt;}
.y7c_c01274{bottom:94.080000pt;}
.y79_c01274{bottom:123.520000pt;}
.y77_c01274{bottom:124.800000pt;}
.y7b_c01274{bottom:125.440000pt;}
.y7a_c01274{bottom:126.080000pt;}
.y76_c01274{bottom:126.720000pt;}
.y78_c01274{bottom:127.360000pt;}
.y75_c01274{bottom:129.280000pt;}
.y74_c01274{bottom:131.840000pt;}
.y73_c01274{bottom:133.120000pt;}
.y71_c01274{bottom:161.920000pt;}
.y70_c01274{bottom:162.560000pt;}
.y6f_c01274{bottom:163.200000pt;}
.y72_c01274{bottom:163.840000pt;}
.y6b_c01274{bottom:166.400000pt;}
.y6e_c01274{bottom:167.040000pt;}
.y6d_c01274{bottom:167.680000pt;}
.y6c_c01274{bottom:169.600000pt;}
.y67_c01274{bottom:200.960000pt;}
.y68_c01274{bottom:201.600000pt;}
.y6a_c01274{bottom:202.240000pt;}
.y69_c01274{bottom:203.520000pt;}
.y66_c01274{bottom:204.800000pt;}
.y65_c01274{bottom:206.720000pt;}
.y63_c01274{bottom:238.720000pt;}
.y62_c01274{bottom:239.360000pt;}
.y64_c01274{bottom:241.280000pt;}
.y61_c01274{bottom:241.920000pt;}
.y60_c01274{bottom:242.560000pt;}
.y5f_c01274{bottom:244.480000pt;}
.y5e_c01274{bottom:245.760000pt;}
.y5d_c01274{bottom:247.040000pt;}
.y5c_c01274{bottom:277.120000pt;}
.y5a_c01274{bottom:277.760000pt;}
.y57_c01274{bottom:279.680000pt;}
.y5b_c01274{bottom:280.320000pt;}
.y59_c01274{bottom:280.960000pt;}
.y58_c01274{bottom:281.600000pt;}
.y56_c01274{bottom:282.880000pt;}
.y55_c01274{bottom:283.520000pt;}
.y54_c01274{bottom:284.160000pt;}
.y52_c01274{bottom:315.520000pt;}
.y50_c01274{bottom:317.440000pt;}
.y53_c01274{bottom:318.080000pt;}
.y51_c01274{bottom:318.720000pt;}
.y4f_c01274{bottom:321.920000pt;}
.y4d_c01274{bottom:354.560000pt;}
.y4e_c01274{bottom:355.840000pt;}
.y4c_c01274{bottom:356.480000pt;}
.y4b_c01274{bottom:357.760000pt;}
.y4a_c01274{bottom:359.680000pt;}
.y49_c01274{bottom:391.680000pt;}
.y48_c01274{bottom:394.880000pt;}
.y47_c01274{bottom:395.520000pt;}
.y46_c01274{bottom:430.720000pt;}
.y44_c01274{bottom:431.360000pt;}
.y42_c01274{bottom:432.000000pt;}
.y45_c01274{bottom:432.640000pt;}
.y41_c01274{bottom:433.280000pt;}
.y43_c01274{bottom:433.920000pt;}
.y40_c01274{bottom:468.480000pt;}
.y3f_c01274{bottom:469.120000pt;}
.y3c_c01274{bottom:471.040000pt;}
.y3e_c01274{bottom:471.680000pt;}
.y3d_c01274{bottom:472.320000pt;}
.y3b_c01274{bottom:508.800000pt;}
.y3a_c01274{bottom:509.440000pt;}
.y38_c01274{bottom:510.080000pt;}
.y39_c01274{bottom:510.720000pt;}
.y37_c01274{bottom:544.640000pt;}
.y34_c01274{bottom:545.280000pt;}
.y35_c01274{bottom:547.200000pt;}
.y36_c01274{bottom:547.840000pt;}
.y31_c01274{bottom:582.400000pt;}
.y32_c01274{bottom:583.040000pt;}
.y33_c01274{bottom:584.960000pt;}
.y2f_c01274{bottom:585.600000pt;}
.y30_c01274{bottom:586.240000pt;}
.y2e_c01274{bottom:620.800000pt;}
.y2d_c01274{bottom:621.440000pt;}
.y2c_c01274{bottom:623.360000pt;}
.y2b_c01274{bottom:624.000000pt;}
.y2a_c01274{bottom:670.720000pt;}
.y25_c01274{bottom:705.920000pt;}
.y27_c01274{bottom:708.480000pt;}
.y26_c01274{bottom:709.120000pt;}
.y28_c01274{bottom:709.760000pt;}
.y29_c01274{bottom:710.400000pt;}
.y20_c01274{bottom:744.960000pt;}
.y1f_c01274{bottom:745.600000pt;}
.y24_c01274{bottom:746.240000pt;}
.y22_c01274{bottom:746.880000pt;}
.y21_c01274{bottom:747.520000pt;}
.y23_c01274{bottom:748.160000pt;}
.y1e_c01274{bottom:784.000000pt;}
.y1b_c01274{bottom:785.280000pt;}
.y1c_c01274{bottom:785.920000pt;}
.y1d_c01274{bottom:786.560000pt;}
.y16_c01274{bottom:830.080000pt;}
.y14_c01274{bottom:831.360000pt;}
.y1a_c01274{bottom:832.000000pt;}
.y15_c01274{bottom:832.640000pt;}
.y17_c01274{bottom:833.280000pt;}
.y18_c01274{bottom:833.920000pt;}
.y19_c01274{bottom:834.560000pt;}
.yd_c01274{bottom:867.200000pt;}
.y10_c01274{bottom:869.760000pt;}
.ye_c01274{bottom:870.400000pt;}
.yf_c01274{bottom:871.040000pt;}
.y11_c01274{bottom:872.320000pt;}
.y12_c01274{bottom:872.960000pt;}
.y13_c01274{bottom:873.600000pt;}
.y6_c01274{bottom:906.880000pt;}
.y7_c01274{bottom:908.160000pt;}
.y8_c01274{bottom:908.800000pt;}
.y9_c01274{bottom:909.440000pt;}
.ya_c01274{bottom:910.080000pt;}
.yc_c01274{bottom:910.720000pt;}
.yb_c01274{bottom:911.360000pt;}
.y4_c01274{bottom:946.560000pt;}
.y2_c01274{bottom:947.200000pt;}
.y3_c01274{bottom:948.480000pt;}
.y5_c01274{bottom:949.120000pt;}
.y1_c01274{bottom:992.000000pt;}
.h6_c01274{height:27.645000pt;}
.h9_c01274{height:29.948750pt;}
.h3_c01274{height:34.556250pt;}
.h7_c01274{height:36.860000pt;}
.ha_c01274{height:39.163750pt;}
.h4_c01274{height:41.467500pt;}
.h8_c01274{height:43.771250pt;}
.hd_c01274{height:46.075000pt;}
.h5_c01274{height:48.378750pt;}
.hc_c01274{height:50.682500pt;}
.he_c01274{height:52.986250pt;}
.hb_c01274{height:55.290000pt;}
.hf_c01274{height:57.593750pt;}
.h2_c01274{height:59.897500pt;}
.h0_c01274{height:1029.760000pt;}
.h1_c01274{height:1030.000000pt;}
.w1_c01274{width:681.333333pt;}
.w0_c01274{width:681.600000pt;}
.x0_c01274{left:0.000000pt;}
.xa_c01274{left:53.760000pt;}
.x2f_c01274{left:55.040000pt;}
.x4d_c01274{left:79.360000pt;}
.xb_c01274{left:80.640000pt;}
.x3e_c01274{left:88.320000pt;}
.x33_c01274{left:89.600000pt;}
.x43_c01274{left:98.560000pt;}
.x4e_c01274{left:106.240000pt;}
.x19_c01274{left:107.520000pt;}
.x34_c01274{left:115.840000pt;}
.x30_c01274{left:117.120000pt;}
.x13_c01274{left:126.720000pt;}
.x1a_c01274{left:135.040000pt;}
.x31_c01274{left:144.000000pt;}
.x2_c01274{left:145.920000pt;}
.x44_c01274{left:153.600000pt;}
.x28_c01274{left:163.200000pt;}
.x24_c01274{left:164.480000pt;}
.x2b_c01274{left:172.800000pt;}
.x3_c01274{left:174.080000pt;}
.x35_c01274{left:181.760000pt;}
.x1b_c01274{left:183.680000pt;}
.x49_c01274{left:191.360000pt;}
.x25_c01274{left:192.640000pt;}
.x14_c01274{left:202.240000pt;}
.x29_c01274{left:211.200000pt;}
.x4f_c01274{left:219.520000pt;}
.x51_c01274{left:220.800000pt;}
.x3b_c01274{left:231.040000pt;}
.xc_c01274{left:240.640000pt;}
.x20_c01274{left:249.600000pt;}
.x26_c01274{left:259.840000pt;}
.xd_c01274{left:268.800000pt;}
.x45_c01274{left:277.120000pt;}
.x15_c01274{left:279.040000pt;}
.x27_c01274{left:288.000000pt;}
.x38_c01274{left:297.600000pt;}
.x21_c01274{left:298.880000pt;}
.x53_c01274{left:306.560000pt;}
.x4_c01274{left:307.840000pt;}
.x36_c01274{left:316.800000pt;}
.x1c_c01274{left:318.080000pt;}
.x39_c01274{left:326.400000pt;}
.x47_c01274{left:336.000000pt;}
.xe_c01274{left:337.280000pt;}
.x2a_c01274{left:345.600000pt;}
.x2c_c01274{left:355.200000pt;}
.x3a_c01274{left:364.160000pt;}
.x5_c01274{left:366.080000pt;}
.x41_c01274{left:374.400000pt;}
.x3c_c01274{left:384.000000pt;}
.x22_c01274{left:385.920000pt;}
.x54_c01274{left:393.600000pt;}
.x42_c01274{left:403.840000pt;}
.x4a_c01274{left:412.800000pt;}
.x1d_c01274{left:414.080000pt;}
.x32_c01274{left:423.040000pt;}
.x6_c01274{left:433.280000pt;}
.x1e_c01274{left:437.760000pt;}
.x55_c01274{left:441.600000pt;}
.x16_c01274{left:443.520000pt;}
.x3f_c01274{left:451.840000pt;}
.xf_c01274{left:453.120000pt;}
.x50_c01274{left:461.440000pt;}
.x7_c01274{left:462.720000pt;}
.x48_c01274{left:471.040000pt;}
.x10_c01274{left:472.320000pt;}
.x4b_c01274{left:480.000000pt;}
.x2d_c01274{left:481.280000pt;}
.x1f_c01274{left:491.520000pt;}
.x3d_c01274{left:500.480000pt;}
.x4c_c01274{left:510.720000pt;}
.x17_c01274{left:519.680000pt;}
.x23_c01274{left:529.920000pt;}
.x11_c01274{left:540.160000pt;}
.x18_c01274{left:549.120000pt;}
.x8_c01274{left:559.360000pt;}
.x52_c01274{left:567.040000pt;}
.x12_c01274{left:568.960000pt;}
.x37_c01274{left:577.920000pt;}
.x40_c01274{left:586.880000pt;}
.x9_c01274{left:588.160000pt;}
.x46_c01274{left:597.120000pt;}
.x1_c01274{left:604.800000pt;}
.x2e_c01274{left:608.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_c01275 {
    display:none;
  }
  .loading-indicator_c01275.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01275 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01275 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01275" -> "#page-container .classname_c01275")
 */
.pf_c01275 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01275 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01275.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01275 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01275 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01275 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01275 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01275 {overflow:visible;}
  }
}
.c_c01275 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01275 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01275:after { /* webkit #35443 */
  content: '';
}
.t_c01275:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01275 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01275 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01275 { /* info for Javascript */
  display:none;
}
.l_c01275 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01275 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01275 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01275:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01275{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01275;src:url('chunks/assets/font_579e42f4486127c1c7152e0b.woff2')format("woff");}.ff1_c01275{font-family:ff1_c01275;line-height:1.109863;font-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_c01275{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m20_c01275{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01275{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m38_c01275{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01275{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m51_c01275{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);}
.m2d_c01275{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01275{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m12_c01275{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);}
.m3e_c01275{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);}
.m34_c01275{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m22_c01275{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);}
.m49_c01275{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m53_c01275{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.md_c01275{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01275{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);}
.m2b_c01275{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);}
.m2a_c01275{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.mf_c01275{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m13_c01275{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m0_c01275{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);}
.m29_c01275{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m6_c01275{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);}
.m33_c01275{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);}
.m47_c01275{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);}
.m3b_c01275{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);}
.m3c_c01275{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m31_c01275{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m5_c01275{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m55_c01275{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01275{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.mc_c01275{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);}
.m23_c01275{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);}
.m11_c01275{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m9_c01275{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m4f_c01275{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m16_c01275{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);}
.m39_c01275{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m3_c01275{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01275{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);}
.m45_c01275{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m1_c01275{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);}
.m41_c01275{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m26_c01275{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01275{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);}
.m1e_c01275{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01275{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01275{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01275{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01275{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m28_c01275{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m40_c01275{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);}
.m10_c01275{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);}
.m15_c01275{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01275{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m37_c01275{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);}
.m3f_c01275{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m43_c01275{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m14_c01275{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m56_c01275{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m25_c01275{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);}
.m52_c01275{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01275{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m30_c01275{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01275{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m27_c01275{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);}
.m35_c01275{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.ma_c01275{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m19_c01275{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m2_c01275{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m4_c01275{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m17_c01275{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);}
.m21_c01275{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);}
.m46_c01275{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m7_c01275{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);}
.m50_c01275{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.me_c01275{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m48_c01275{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01275{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m36_c01275{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m8_c01275{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.mb_c01275{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m44_c01275{transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);}
.m18_c01275{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);}
.m54_c01275{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01275{transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);}
.m42_c01275{transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);}
.v3_c01275{vertical-align:-17.280000px;}
.v2_c01275{vertical-align:-2.880000px;}
.v0_c01275{vertical-align:0.000000px;}
.v1_c01275{vertical-align:8.640000px;}
.ls0_c01275{letter-spacing:0.000000px;}
.sc__c01275{text-shadow:none;}
.sc0_c01275{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01275{-webkit-text-stroke:0px transparent;}
.sc0_c01275{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01275{word-spacing:-6.775440px;}
.ws0_c01275{word-spacing:-2.038560px;}
.ws2_c01275{word-spacing:-1.582560px;}
.ws4_c01275{word-spacing:0.000000px;}
.ws3_c01275{word-spacing:6.754800px;}
.fc0_c01275{color:transparent;}
.fs8_c01275{font-size:31.680000px;}
.fs3_c01275{font-size:34.560000px;}
.fs4_c01275{font-size:43.200000px;}
.fs6_c01275{font-size:46.080000px;}
.fs1_c01275{font-size:48.960000px;}
.fs9_c01275{font-size:51.840000px;}
.fs2_c01275{font-size:54.720000px;}
.fs5_c01275{font-size:57.600000px;}
.fs7_c01275{font-size:60.480000px;}
.fsc_c01275{font-size:63.360000px;}
.fsa_c01275{font-size:66.240000px;}
.fsb_c01275{font-size:69.120000px;}
.fs0_c01275{font-size:72.000000px;}
.y0_c01275{bottom:0.000000px;}
.y76_c01275{bottom:62.640000px;}
.y77_c01275{bottom:64.800000px;}
.y75_c01275{bottom:65.520000px;}
.y74_c01275{bottom:69.120000px;}
.y73_c01275{bottom:70.560000px;}
.y72_c01275{bottom:71.280000px;}
.y71_c01275{bottom:105.120000px;}
.y6e_c01275{bottom:108.720000px;}
.y70_c01275{bottom:109.440000px;}
.y6f_c01275{bottom:110.880000px;}
.y6d_c01275{bottom:111.600000px;}
.y6c_c01275{bottom:113.040000px;}
.y6b_c01275{bottom:115.200000px;}
.y6a_c01275{bottom:149.040000px;}
.y66_c01275{bottom:149.760000px;}
.y68_c01275{bottom:151.200000px;}
.y69_c01275{bottom:151.920000px;}
.y67_c01275{bottom:152.640000px;}
.y65_c01275{bottom:153.360000px;}
.y64_c01275{bottom:154.080000px;}
.y63_c01275{bottom:155.520000px;}
.y60_c01275{bottom:203.040000px;}
.y61_c01275{bottom:203.760000px;}
.y62_c01275{bottom:205.200000px;}
.y5f_c01275{bottom:205.920000px;}
.y5e_c01275{bottom:206.640000px;}
.y5d_c01275{bottom:207.360000px;}
.y5c_c01275{bottom:208.080000px;}
.y5b_c01275{bottom:209.520000px;}
.y58_c01275{bottom:246.240000px;}
.y5a_c01275{bottom:247.680000px;}
.y59_c01275{bottom:248.400000px;}
.y57_c01275{bottom:249.840000px;}
.y56_c01275{bottom:251.280000px;}
.y55_c01275{bottom:252.000000px;}
.y53_c01275{bottom:288.720000px;}
.y51_c01275{bottom:290.160000px;}
.y54_c01275{bottom:290.880000px;}
.y52_c01275{bottom:291.600000px;}
.y50_c01275{bottom:293.760000px;}
.y4f_c01275{bottom:344.160000px;}
.y4e_c01275{bottom:348.480000px;}
.y4b_c01275{bottom:384.480000px;}
.y4c_c01275{bottom:385.200000px;}
.y4d_c01275{bottom:387.360000px;}
.y4a_c01275{bottom:388.080000px;}
.y49_c01275{bottom:388.800000px;}
.y48_c01275{bottom:390.240000px;}
.y46_c01275{bottom:427.680000px;}
.y45_c01275{bottom:429.120000px;}
.y47_c01275{bottom:430.560000px;}
.y44_c01275{bottom:431.280000px;}
.y43_c01275{bottom:432.000000px;}
.y42_c01275{bottom:432.720000px;}
.y40_c01275{bottom:470.160000px;}
.y3e_c01275{bottom:471.600000px;}
.y3f_c01275{bottom:473.040000px;}
.y41_c01275{bottom:473.760000px;}
.y3d_c01275{bottom:474.480000px;}
.y3c_c01275{bottom:516.240000px;}
.y3b_c01275{bottom:516.960000px;}
.y3a_c01275{bottom:517.680000px;}
.y39_c01275{bottom:518.400000px;}
.y38_c01275{bottom:557.280000px;}
.y36_c01275{bottom:559.440000px;}
.y35_c01275{bottom:560.160000px;}
.y37_c01275{bottom:560.880000px;}
.y34_c01275{bottom:613.440000px;}
.y32_c01275{bottom:653.760000px;}
.y30_c01275{bottom:655.920000px;}
.y31_c01275{bottom:656.640000px;}
.y33_c01275{bottom:657.360000px;}
.y2d_c01275{bottom:695.520000px;}
.y2e_c01275{bottom:696.240000px;}
.y2c_c01275{bottom:698.400000px;}
.y2b_c01275{bottom:699.120000px;}
.y2f_c01275{bottom:699.840000px;}
.y26_c01275{bottom:738.720000px;}
.y29_c01275{bottom:739.440000px;}
.y25_c01275{bottom:740.880000px;}
.y27_c01275{bottom:741.600000px;}
.y28_c01275{bottom:742.320000px;}
.y2a_c01275{bottom:743.040000px;}
.y20_c01275{bottom:779.760000px;}
.y21_c01275{bottom:781.920000px;}
.y24_c01275{bottom:782.640000px;}
.y22_c01275{bottom:784.800000px;}
.y23_c01275{bottom:785.520000px;}
.y1e_c01275{bottom:825.120000px;}
.y1b_c01275{bottom:825.840000px;}
.y1c_c01275{bottom:826.560000px;}
.y1d_c01275{bottom:827.280000px;}
.y1f_c01275{bottom:828.000000px;}
.y17_c01275{bottom:867.600000px;}
.y19_c01275{bottom:868.320000px;}
.y18_c01275{bottom:869.760000px;}
.y1a_c01275{bottom:871.200000px;}
.y15_c01275{bottom:910.080000px;}
.y11_c01275{bottom:910.800000px;}
.y12_c01275{bottom:911.520000px;}
.y13_c01275{bottom:912.240000px;}
.y14_c01275{bottom:912.960000px;}
.y16_c01275{bottom:913.680000px;}
.ye_c01275{bottom:952.560000px;}
.yd_c01275{bottom:955.440000px;}
.yf_c01275{bottom:956.160000px;}
.y10_c01275{bottom:956.880000px;}
.y8_c01275{bottom:1005.840000px;}
.y9_c01275{bottom:1007.280000px;}
.ya_c01275{bottom:1008.000000px;}
.yb_c01275{bottom:1009.440000px;}
.yc_c01275{bottom:1010.160000px;}
.y2_c01275{bottom:1048.320000px;}
.y4_c01275{bottom:1049.760000px;}
.y3_c01275{bottom:1051.920000px;}
.y6_c01275{bottom:1052.640000px;}
.y5_c01275{bottom:1053.360000px;}
.y7_c01275{bottom:1054.080000px;}
.y1_c01275{bottom:1105.920000px;}
.hb_c01275{height:28.508906px;}
.h4_c01275{height:31.100625px;}
.h5_c01275{height:38.875781px;}
.h9_c01275{height:41.467500px;}
.h6_c01275{height:44.059219px;}
.hc_c01275{height:46.650937px;}
.h8_c01275{height:49.242656px;}
.h7_c01275{height:51.834375px;}
.ha_c01275{height:54.426094px;}
.h3_c01275{height:57.882656px;}
.hd_c01275{height:59.609531px;}
.he_c01275{height:62.201250px;}
.h2_c01275{height:64.792969px;}
.h1_c01275{height:1146.750000px;}
.h0_c01275{height:1146.960000px;}
.w1_c01275{width:768.750000px;}
.w0_c01275{width:768.960000px;}
.x0_c01275{left:0.000000px;}
.x2_c01275{left:61.920000px;}
.x37_c01275{left:63.360000px;}
.x4b_c01275{left:64.800000px;}
.x25_c01275{left:90.720000px;}
.x2b_c01275{left:101.520000px;}
.x1a_c01275{left:110.880000px;}
.x31_c01275{left:121.680000px;}
.x2a_c01275{left:132.480000px;}
.x3b_c01275{left:133.920000px;}
.xb_c01275{left:143.280000px;}
.x21_c01275{left:153.360000px;}
.x43_c01275{left:154.800000px;}
.x12_c01275{left:163.440000px;}
.x3f_c01275{left:165.600000px;}
.xc_c01275{left:172.800000px;}
.x44_c01275{left:174.960000px;}
.x22_c01275{left:183.600000px;}
.x3c_c01275{left:185.760000px;}
.x1b_c01275{left:195.840000px;}
.xd_c01275{left:207.360000px;}
.x2c_c01275{left:218.160000px;}
.x3d_c01275{left:227.520000px;}
.x32_c01275{left:228.960000px;}
.x1c_c01275{left:239.040000px;}
.x26_c01275{left:249.840000px;}
.x3_c01275{left:260.640000px;}
.x1d_c01275{left:280.800000px;}
.x27_c01275{left:282.240000px;}
.x4_c01275{left:293.040000px;}
.x38_c01275{left:304.560000px;}
.x34_c01275{left:313.920000px;}
.xe_c01275{left:315.360000px;}
.x1e_c01275{left:326.160000px;}
.x5_c01275{left:336.240000px;}
.xf_c01275{left:347.040000px;}
.x46_c01275{left:348.480000px;}
.x13_c01275{left:357.840000px;}
.x4c_c01275{left:359.280000px;}
.x6_c01275{left:369.360000px;}
.x10_c01275{left:378.720000px;}
.x39_c01275{left:380.160000px;}
.x14_c01275{left:390.960000px;}
.x41_c01275{left:401.040000px;}
.x23_c01275{left:402.480000px;}
.x2d_c01275{left:412.560000px;}
.x49_c01275{left:423.360000px;}
.x11_c01275{left:434.160000px;}
.x1f_c01275{left:444.960000px;}
.x33_c01275{left:466.560000px;}
.x7_c01275{left:477.360000px;}
.x47_c01275{left:478.800000px;}
.x28_c01275{left:487.440000px;}
.x2e_c01275{left:498.960000px;}
.x40_c01275{left:500.400000px;}
.x15_c01275{left:509.760000px;}
.x20_c01275{left:520.560000px;}
.x2f_c01275{left:531.360000px;}
.x16_c01275{left:542.160000px;}
.x45_c01275{left:543.600000px;}
.x29_c01275{left:552.960000px;}
.x42_c01275{left:554.400000px;}
.x30_c01275{left:563.760000px;}
.x3a_c01275{left:575.280000px;}
.x24_c01275{left:585.360000px;}
.x17_c01275{left:596.160000px;}
.x8_c01275{left:597.600000px;}
.x3e_c01275{left:607.680000px;}
.x35_c01275{left:617.760000px;}
.x9_c01275{left:630.000000px;}
.x18_c01275{left:640.800000px;}
.x4a_c01275{left:642.240000px;}
.x36_c01275{left:651.600000px;}
.xa_c01275{left:663.120000px;}
.x19_c01275{left:673.200000px;}
.x1_c01275{left:680.400000px;}
.x48_c01275{left:684.720000px;}
@media print{
.v3_c01275{vertical-align:-15.360000pt;}
.v2_c01275{vertical-align:-2.560000pt;}
.v0_c01275{vertical-align:0.000000pt;}
.v1_c01275{vertical-align:7.680000pt;}
.ls0_c01275{letter-spacing:0.000000pt;}
.ws1_c01275{word-spacing:-6.022613pt;}
.ws0_c01275{word-spacing:-1.812053pt;}
.ws2_c01275{word-spacing:-1.406720pt;}
.ws4_c01275{word-spacing:0.000000pt;}
.ws3_c01275{word-spacing:6.004267pt;}
.fs8_c01275{font-size:28.160000pt;}
.fs3_c01275{font-size:30.720000pt;}
.fs4_c01275{font-size:38.400000pt;}
.fs6_c01275{font-size:40.960000pt;}
.fs1_c01275{font-size:43.520000pt;}
.fs9_c01275{font-size:46.080000pt;}
.fs2_c01275{font-size:48.640000pt;}
.fs5_c01275{font-size:51.200000pt;}
.fs7_c01275{font-size:53.760000pt;}
.fsc_c01275{font-size:56.320000pt;}
.fsa_c01275{font-size:58.880000pt;}
.fsb_c01275{font-size:61.440000pt;}
.fs0_c01275{font-size:64.000000pt;}
.y0_c01275{bottom:0.000000pt;}
.y76_c01275{bottom:55.680000pt;}
.y77_c01275{bottom:57.600000pt;}
.y75_c01275{bottom:58.240000pt;}
.y74_c01275{bottom:61.440000pt;}
.y73_c01275{bottom:62.720000pt;}
.y72_c01275{bottom:63.360000pt;}
.y71_c01275{bottom:93.440000pt;}
.y6e_c01275{bottom:96.640000pt;}
.y70_c01275{bottom:97.280000pt;}
.y6f_c01275{bottom:98.560000pt;}
.y6d_c01275{bottom:99.200000pt;}
.y6c_c01275{bottom:100.480000pt;}
.y6b_c01275{bottom:102.400000pt;}
.y6a_c01275{bottom:132.480000pt;}
.y66_c01275{bottom:133.120000pt;}
.y68_c01275{bottom:134.400000pt;}
.y69_c01275{bottom:135.040000pt;}
.y67_c01275{bottom:135.680000pt;}
.y65_c01275{bottom:136.320000pt;}
.y64_c01275{bottom:136.960000pt;}
.y63_c01275{bottom:138.240000pt;}
.y60_c01275{bottom:180.480000pt;}
.y61_c01275{bottom:181.120000pt;}
.y62_c01275{bottom:182.400000pt;}
.y5f_c01275{bottom:183.040000pt;}
.y5e_c01275{bottom:183.680000pt;}
.y5d_c01275{bottom:184.320000pt;}
.y5c_c01275{bottom:184.960000pt;}
.y5b_c01275{bottom:186.240000pt;}
.y58_c01275{bottom:218.880000pt;}
.y5a_c01275{bottom:220.160000pt;}
.y59_c01275{bottom:220.800000pt;}
.y57_c01275{bottom:222.080000pt;}
.y56_c01275{bottom:223.360000pt;}
.y55_c01275{bottom:224.000000pt;}
.y53_c01275{bottom:256.640000pt;}
.y51_c01275{bottom:257.920000pt;}
.y54_c01275{bottom:258.560000pt;}
.y52_c01275{bottom:259.200000pt;}
.y50_c01275{bottom:261.120000pt;}
.y4f_c01275{bottom:305.920000pt;}
.y4e_c01275{bottom:309.760000pt;}
.y4b_c01275{bottom:341.760000pt;}
.y4c_c01275{bottom:342.400000pt;}
.y4d_c01275{bottom:344.320000pt;}
.y4a_c01275{bottom:344.960000pt;}
.y49_c01275{bottom:345.600000pt;}
.y48_c01275{bottom:346.880000pt;}
.y46_c01275{bottom:380.160000pt;}
.y45_c01275{bottom:381.440000pt;}
.y47_c01275{bottom:382.720000pt;}
.y44_c01275{bottom:383.360000pt;}
.y43_c01275{bottom:384.000000pt;}
.y42_c01275{bottom:384.640000pt;}
.y40_c01275{bottom:417.920000pt;}
.y3e_c01275{bottom:419.200000pt;}
.y3f_c01275{bottom:420.480000pt;}
.y41_c01275{bottom:421.120000pt;}
.y3d_c01275{bottom:421.760000pt;}
.y3c_c01275{bottom:458.880000pt;}
.y3b_c01275{bottom:459.520000pt;}
.y3a_c01275{bottom:460.160000pt;}
.y39_c01275{bottom:460.800000pt;}
.y38_c01275{bottom:495.360000pt;}
.y36_c01275{bottom:497.280000pt;}
.y35_c01275{bottom:497.920000pt;}
.y37_c01275{bottom:498.560000pt;}
.y34_c01275{bottom:545.280000pt;}
.y32_c01275{bottom:581.120000pt;}
.y30_c01275{bottom:583.040000pt;}
.y31_c01275{bottom:583.680000pt;}
.y33_c01275{bottom:584.320000pt;}
.y2d_c01275{bottom:618.240000pt;}
.y2e_c01275{bottom:618.880000pt;}
.y2c_c01275{bottom:620.800000pt;}
.y2b_c01275{bottom:621.440000pt;}
.y2f_c01275{bottom:622.080000pt;}
.y26_c01275{bottom:656.640000pt;}
.y29_c01275{bottom:657.280000pt;}
.y25_c01275{bottom:658.560000pt;}
.y27_c01275{bottom:659.200000pt;}
.y28_c01275{bottom:659.840000pt;}
.y2a_c01275{bottom:660.480000pt;}
.y20_c01275{bottom:693.120000pt;}
.y21_c01275{bottom:695.040000pt;}
.y24_c01275{bottom:695.680000pt;}
.y22_c01275{bottom:697.600000pt;}
.y23_c01275{bottom:698.240000pt;}
.y1e_c01275{bottom:733.440000pt;}
.y1b_c01275{bottom:734.080000pt;}
.y1c_c01275{bottom:734.720000pt;}
.y1d_c01275{bottom:735.360000pt;}
.y1f_c01275{bottom:736.000000pt;}
.y17_c01275{bottom:771.200000pt;}
.y19_c01275{bottom:771.840000pt;}
.y18_c01275{bottom:773.120000pt;}
.y1a_c01275{bottom:774.400000pt;}
.y15_c01275{bottom:808.960000pt;}
.y11_c01275{bottom:809.600000pt;}
.y12_c01275{bottom:810.240000pt;}
.y13_c01275{bottom:810.880000pt;}
.y14_c01275{bottom:811.520000pt;}
.y16_c01275{bottom:812.160000pt;}
.ye_c01275{bottom:846.720000pt;}
.yd_c01275{bottom:849.280000pt;}
.yf_c01275{bottom:849.920000pt;}
.y10_c01275{bottom:850.560000pt;}
.y8_c01275{bottom:894.080000pt;}
.y9_c01275{bottom:895.360000pt;}
.ya_c01275{bottom:896.000000pt;}
.yb_c01275{bottom:897.280000pt;}
.yc_c01275{bottom:897.920000pt;}
.y2_c01275{bottom:931.840000pt;}
.y4_c01275{bottom:933.120000pt;}
.y3_c01275{bottom:935.040000pt;}
.y6_c01275{bottom:935.680000pt;}
.y5_c01275{bottom:936.320000pt;}
.y7_c01275{bottom:936.960000pt;}
.y1_c01275{bottom:983.040000pt;}
.hb_c01275{height:25.341250pt;}
.h4_c01275{height:27.645000pt;}
.h5_c01275{height:34.556250pt;}
.h9_c01275{height:36.860000pt;}
.h6_c01275{height:39.163750pt;}
.hc_c01275{height:41.467500pt;}
.h8_c01275{height:43.771250pt;}
.h7_c01275{height:46.075000pt;}
.ha_c01275{height:48.378750pt;}
.h3_c01275{height:51.451250pt;}
.hd_c01275{height:52.986250pt;}
.he_c01275{height:55.290000pt;}
.h2_c01275{height:57.593750pt;}
.h1_c01275{height:1019.333333pt;}
.h0_c01275{height:1019.520000pt;}
.w1_c01275{width:683.333333pt;}
.w0_c01275{width:683.520000pt;}
.x0_c01275{left:0.000000pt;}
.x2_c01275{left:55.040000pt;}
.x37_c01275{left:56.320000pt;}
.x4b_c01275{left:57.600000pt;}
.x25_c01275{left:80.640000pt;}
.x2b_c01275{left:90.240000pt;}
.x1a_c01275{left:98.560000pt;}
.x31_c01275{left:108.160000pt;}
.x2a_c01275{left:117.760000pt;}
.x3b_c01275{left:119.040000pt;}
.xb_c01275{left:127.360000pt;}
.x21_c01275{left:136.320000pt;}
.x43_c01275{left:137.600000pt;}
.x12_c01275{left:145.280000pt;}
.x3f_c01275{left:147.200000pt;}
.xc_c01275{left:153.600000pt;}
.x44_c01275{left:155.520000pt;}
.x22_c01275{left:163.200000pt;}
.x3c_c01275{left:165.120000pt;}
.x1b_c01275{left:174.080000pt;}
.xd_c01275{left:184.320000pt;}
.x2c_c01275{left:193.920000pt;}
.x3d_c01275{left:202.240000pt;}
.x32_c01275{left:203.520000pt;}
.x1c_c01275{left:212.480000pt;}
.x26_c01275{left:222.080000pt;}
.x3_c01275{left:231.680000pt;}
.x1d_c01275{left:249.600000pt;}
.x27_c01275{left:250.880000pt;}
.x4_c01275{left:260.480000pt;}
.x38_c01275{left:270.720000pt;}
.x34_c01275{left:279.040000pt;}
.xe_c01275{left:280.320000pt;}
.x1e_c01275{left:289.920000pt;}
.x5_c01275{left:298.880000pt;}
.xf_c01275{left:308.480000pt;}
.x46_c01275{left:309.760000pt;}
.x13_c01275{left:318.080000pt;}
.x4c_c01275{left:319.360000pt;}
.x6_c01275{left:328.320000pt;}
.x10_c01275{left:336.640000pt;}
.x39_c01275{left:337.920000pt;}
.x14_c01275{left:347.520000pt;}
.x41_c01275{left:356.480000pt;}
.x23_c01275{left:357.760000pt;}
.x2d_c01275{left:366.720000pt;}
.x49_c01275{left:376.320000pt;}
.x11_c01275{left:385.920000pt;}
.x1f_c01275{left:395.520000pt;}
.x33_c01275{left:414.720000pt;}
.x7_c01275{left:424.320000pt;}
.x47_c01275{left:425.600000pt;}
.x28_c01275{left:433.280000pt;}
.x2e_c01275{left:443.520000pt;}
.x40_c01275{left:444.800000pt;}
.x15_c01275{left:453.120000pt;}
.x20_c01275{left:462.720000pt;}
.x2f_c01275{left:472.320000pt;}
.x16_c01275{left:481.920000pt;}
.x45_c01275{left:483.200000pt;}
.x29_c01275{left:491.520000pt;}
.x42_c01275{left:492.800000pt;}
.x30_c01275{left:501.120000pt;}
.x3a_c01275{left:511.360000pt;}
.x24_c01275{left:520.320000pt;}
.x17_c01275{left:529.920000pt;}
.x8_c01275{left:531.200000pt;}
.x3e_c01275{left:540.160000pt;}
.x35_c01275{left:549.120000pt;}
.x9_c01275{left:560.000000pt;}
.x18_c01275{left:569.600000pt;}
.x4a_c01275{left:570.880000pt;}
.x36_c01275{left:579.200000pt;}
.xa_c01275{left:589.440000pt;}
.x19_c01275{left:598.400000pt;}
.x1_c01275{left:604.800000pt;}
.x48_c01275{left:608.640000pt;}
}





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

.ir_c01276:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01276{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01276;src:url('chunks/assets/font_0644c2c5ce38e4bc17b029f7.woff2')format("woff");}.ff1_c01276{font-family:ff1_c01276;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m53_c01276{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m10_c01276{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);}
.m58_c01276{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m5b_c01276{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m28_c01276{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m46_c01276{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m56_c01276{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01276{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01276{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);}
.m35_c01276{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m47_c01276{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);}
.m40_c01276{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01276{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);}
.m38_c01276{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01276{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);}
.m2e_c01276{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01276{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m18_c01276{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_c01276{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.mf_c01276{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m16_c01276{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);}
.m2a_c01276{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m1_c01276{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);}
.m0_c01276{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01276{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m4_c01276{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01276{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);}
.m24_c01276{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m17_c01276{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01276{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m21_c01276{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m31_c01276{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_c01276{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m41_c01276{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);}
.m3b_c01276{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m48_c01276{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_c01276{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m39_c01276{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m12_c01276{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01276{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m32_c01276{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);}
.m7_c01276{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m6_c01276{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m5a_c01276{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);}
.m43_c01276{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.mb_c01276{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);}
.m52_c01276{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m45_c01276{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m19_c01276{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m34_c01276{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m8_c01276{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_c01276{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m23_c01276{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01276{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.me_c01276{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);}
.m4b_c01276{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01276{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m4d_c01276{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.md_c01276{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m55_c01276{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);}
.m11_c01276{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);}
.m59_c01276{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m3_c01276{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m37_c01276{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m25_c01276{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);}
.m2b_c01276{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m57_c01276{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m54_c01276{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m9_c01276{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);}
.m30_c01276{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m13_c01276{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m5c_c01276{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m5_c01276{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m50_c01276{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);}
.m4a_c01276{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m44_c01276{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);}
.m42_c01276{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m26_c01276{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);}
.m29_c01276{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m15_c01276{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01276{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m2_c01276{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01276{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m49_c01276{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m14_c01276{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);}
.m4f_c01276{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m22_c01276{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.ma_c01276{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01276{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);}
.m36_c01276{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m33_c01276{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m51_c01276{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m20_c01276{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.v0_c01276{vertical-align:0.000000px;}
.v1_c01276{vertical-align:11.520000px;}
.ls0_c01276{letter-spacing:0.000000px;}
.sc__c01276{text-shadow:none;}
.sc0_c01276{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01276{-webkit-text-stroke:0px transparent;}
.sc0_c01276{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01276{word-spacing:-2.727360px;}
.ws1_c01276{word-spacing:0.000000px;}
.fc0_c01276{color:transparent;}
.fs2_c01276{font-size:34.560000px;}
.fs7_c01276{font-size:37.440000px;}
.fs8_c01276{font-size:43.200000px;}
.fs9_c01276{font-size:46.080000px;}
.fs1_c01276{font-size:48.960000px;}
.fs4_c01276{font-size:51.840000px;}
.fsb_c01276{font-size:54.720000px;}
.fs6_c01276{font-size:57.600000px;}
.fs3_c01276{font-size:60.480000px;}
.fsa_c01276{font-size:63.360000px;}
.fsc_c01276{font-size:66.240000px;}
.fs5_c01276{font-size:69.120000px;}
.fs0_c01276{font-size:72.000000px;}
.y0_c01276{bottom:0.000000px;}
.y6f_c01276{bottom:74.160000px;}
.y72_c01276{bottom:74.880000px;}
.y70_c01276{bottom:75.600000px;}
.y74_c01276{bottom:76.320000px;}
.y73_c01276{bottom:77.040000px;}
.y71_c01276{bottom:77.760000px;}
.y6e_c01276{bottom:79.920000px;}
.y6d_c01276{bottom:82.080000px;}
.y6c_c01276{bottom:84.240000px;}
.y68_c01276{bottom:116.640000px;}
.y69_c01276{bottom:118.080000px;}
.y6b_c01276{bottom:118.800000px;}
.y6a_c01276{bottom:119.520000px;}
.y66_c01276{bottom:120.240000px;}
.y67_c01276{bottom:120.960000px;}
.y65_c01276{bottom:124.560000px;}
.y64_c01276{bottom:127.440000px;}
.y62_c01276{bottom:160.560000px;}
.y60_c01276{bottom:162.000000px;}
.y63_c01276{bottom:162.720000px;}
.y61_c01276{bottom:163.440000px;}
.y5f_c01276{bottom:166.320000px;}
.y5e_c01276{bottom:167.040000px;}
.y5d_c01276{bottom:169.200000px;}
.y5b_c01276{bottom:202.320000px;}
.y5a_c01276{bottom:203.040000px;}
.y59_c01276{bottom:203.760000px;}
.y57_c01276{bottom:204.480000px;}
.y5c_c01276{bottom:205.200000px;}
.y58_c01276{bottom:206.640000px;}
.y56_c01276{bottom:208.080000px;}
.y55_c01276{bottom:208.800000px;}
.y54_c01276{bottom:209.520000px;}
.y51_c01276{bottom:246.240000px;}
.y53_c01276{bottom:248.400000px;}
.y52_c01276{bottom:249.120000px;}
.y50_c01276{bottom:249.840000px;}
.y4f_c01276{bottom:250.560000px;}
.y4e_c01276{bottom:252.720000px;}
.y4c_c01276{bottom:290.160000px;}
.y4d_c01276{bottom:291.600000px;}
.y4a_c01276{bottom:292.320000px;}
.y4b_c01276{bottom:293.760000px;}
.y49_c01276{bottom:296.640000px;}
.y46_c01276{bottom:332.640000px;}
.y48_c01276{bottom:334.800000px;}
.y47_c01276{bottom:335.520000px;}
.y45_c01276{bottom:336.240000px;}
.y44_c01276{bottom:336.960000px;}
.y43_c01276{bottom:392.400000px;}
.y41_c01276{bottom:431.280000px;}
.y40_c01276{bottom:432.000000px;}
.y42_c01276{bottom:432.720000px;}
.y3f_c01276{bottom:434.880000px;}
.y3d_c01276{bottom:472.320000px;}
.y3e_c01276{bottom:474.480000px;}
.y3c_c01276{bottom:475.200000px;}
.y3b_c01276{bottom:475.920000px;}
.y3a_c01276{bottom:476.640000px;}
.y39_c01276{bottom:478.080000px;}
.y38_c01276{bottom:514.800000px;}
.y37_c01276{bottom:515.520000px;}
.y33_c01276{bottom:516.960000px;}
.y36_c01276{bottom:517.680000px;}
.y35_c01276{bottom:518.400000px;}
.y34_c01276{bottom:519.120000px;}
.y2f_c01276{bottom:558.000000px;}
.y30_c01276{bottom:558.720000px;}
.y32_c01276{bottom:560.160000px;}
.y31_c01276{bottom:560.880000px;}
.y2e_c01276{bottom:562.320000px;}
.y2d_c01276{bottom:602.640000px;}
.y2c_c01276{bottom:603.360000px;}
.y2b_c01276{bottom:604.080000px;}
.y29_c01276{bottom:643.680000px;}
.y2a_c01276{bottom:645.840000px;}
.y28_c01276{bottom:646.560000px;}
.y26_c01276{bottom:686.160000px;}
.y25_c01276{bottom:689.040000px;}
.y27_c01276{bottom:689.760000px;}
.y24_c01276{bottom:729.360000px;}
.y23_c01276{bottom:731.520000px;}
.y22_c01276{bottom:732.240000px;}
.y1e_c01276{bottom:771.840000px;}
.y20_c01276{bottom:772.560000px;}
.y1d_c01276{bottom:774.000000px;}
.y21_c01276{bottom:774.720000px;}
.y1f_c01276{bottom:775.440000px;}
.y1c_c01276{bottom:815.760000px;}
.y19_c01276{bottom:816.480000px;}
.y1a_c01276{bottom:817.920000px;}
.y1b_c01276{bottom:818.640000px;}
.y14_c01276{bottom:856.800000px;}
.y15_c01276{bottom:857.520000px;}
.y18_c01276{bottom:858.240000px;}
.y16_c01276{bottom:861.120000px;}
.y17_c01276{bottom:861.840000px;}
.y11_c01276{bottom:900.720000px;}
.y12_c01276{bottom:901.440000px;}
.yf_c01276{bottom:902.160000px;}
.y13_c01276{bottom:903.600000px;}
.y10_c01276{bottom:904.320000px;}
.yc_c01276{bottom:943.920000px;}
.ya_c01276{bottom:944.640000px;}
.yb_c01276{bottom:945.360000px;}
.yd_c01276{bottom:946.800000px;}
.ye_c01276{bottom:947.520000px;}
.y8_c01276{bottom:987.120000px;}
.y7_c01276{bottom:990.000000px;}
.y9_c01276{bottom:990.720000px;}
.y2_c01276{bottom:1037.520000px;}
.y5_c01276{bottom:1040.400000px;}
.y3_c01276{bottom:1041.840000px;}
.y4_c01276{bottom:1042.560000px;}
.y6_c01276{bottom:1043.280000px;}
.y1_c01276{bottom:1083.600000px;}
.h4_c01276{height:31.100625px;}
.h9_c01276{height:33.692344px;}
.ha_c01276{height:38.875781px;}
.hb_c01276{height:41.467500px;}
.h3_c01276{height:44.059219px;}
.h6_c01276{height:46.650937px;}
.hd_c01276{height:49.242656px;}
.h8_c01276{height:51.834375px;}
.h5_c01276{height:54.426094px;}
.hc_c01276{height:57.017812px;}
.he_c01276{height:59.609531px;}
.h7_c01276{height:62.201250px;}
.h2_c01276{height:64.792969px;}
.h0_c01276{height:1142.640000px;}
.h1_c01276{height:1143.000000px;}
.w1_c01276{width:767.250000px;}
.w0_c01276{width:767.520000px;}
.x0_c01276{left:0.000000px;}
.x2_c01276{left:59.760000px;}
.x47_c01276{left:61.200000px;}
.x4d_c01276{left:62.640000px;}
.x1c_c01276{left:78.480000px;}
.xd_c01276{left:88.560000px;}
.x3b_c01276{left:98.640000px;}
.x3_c01276{left:108.000000px;}
.x4e_c01276{left:109.440000px;}
.x39_c01276{left:118.800000px;}
.xe_c01276{left:128.880000px;}
.x4f_c01276{left:138.960000px;}
.x4_c01276{left:149.760000px;}
.x48_c01276{left:159.840000px;}
.x7_c01276{left:161.280000px;}
.x23_c01276{left:170.640000px;}
.x2a_c01276{left:181.440000px;}
.x17_c01276{left:182.880000px;}
.x5_c01276{left:192.240000px;}
.x1d_c01276{left:203.040000px;}
.x18_c01276{left:213.840000px;}
.x49_c01276{left:223.920000px;}
.x2f_c01276{left:225.360000px;}
.xf_c01276{left:234.000000px;}
.x3f_c01276{left:235.440000px;}
.x1e_c01276{left:245.520000px;}
.x2b_c01276{left:246.960000px;}
.x24_c01276{left:257.040000px;}
.x40_c01276{left:267.120000px;}
.x8_c01276{left:268.560000px;}
.x10_c01276{left:278.640000px;}
.x6_c01276{left:289.440000px;}
.x19_c01276{left:300.240000px;}
.x42_c01276{left:310.320000px;}
.x9_c01276{left:321.840000px;}
.x25_c01276{left:323.280000px;}
.x32_c01276{left:332.640000px;}
.x3e_c01276{left:342.720000px;}
.x30_c01276{left:354.240000px;}
.x11_c01276{left:365.040000px;}
.x3c_c01276{left:375.840000px;}
.x1f_c01276{left:377.280000px;}
.xa_c01276{left:387.360000px;}
.x20_c01276{left:397.440000px;}
.x4b_c01276{left:399.600000px;}
.x12_c01276{left:408.240000px;}
.x33_c01276{left:429.840000px;}
.x2c_c01276{left:431.280000px;}
.xb_c01276{left:441.360000px;}
.x26_c01276{left:452.160000px;}
.x43_c01276{left:462.240000px;}
.x21_c01276{left:473.040000px;}
.x27_c01276{left:484.560000px;}
.xc_c01276{left:486.000000px;}
.x41_c01276{left:495.360000px;}
.x4a_c01276{left:496.800000px;}
.x1a_c01276{left:506.880000px;}
.x28_c01276{left:516.240000px;}
.x34_c01276{left:517.680000px;}
.x4c_c01276{left:527.760000px;}
.x2d_c01276{left:538.560000px;}
.x13_c01276{left:540.000000px;}
.x45_c01276{left:548.640000px;}
.x35_c01276{left:550.080000px;}
.x14_c01276{left:570.960000px;}
.x29_c01276{left:572.400000px;}
.x38_c01276{left:581.040000px;}
.x36_c01276{left:582.480000px;}
.x3a_c01276{left:594.000000px;}
.x2e_c01276{left:603.360000px;}
.x15_c01276{left:604.800000px;}
.x3d_c01276{left:615.600000px;}
.x1b_c01276{left:626.400000px;}
.x44_c01276{left:635.760000px;}
.x31_c01276{left:637.200000px;}
.x37_c01276{left:646.560000px;}
.x22_c01276{left:648.000000px;}
.x16_c01276{left:658.080000px;}
.x1_c01276{left:667.440000px;}
.x46_c01276{left:669.600000px;}
@media print{
.v0_c01276{vertical-align:0.000000pt;}
.v1_c01276{vertical-align:10.240000pt;}
.ls0_c01276{letter-spacing:0.000000pt;}
.ws0_c01276{word-spacing:-2.424320pt;}
.ws1_c01276{word-spacing:0.000000pt;}
.fs2_c01276{font-size:30.720000pt;}
.fs7_c01276{font-size:33.280000pt;}
.fs8_c01276{font-size:38.400000pt;}
.fs9_c01276{font-size:40.960000pt;}
.fs1_c01276{font-size:43.520000pt;}
.fs4_c01276{font-size:46.080000pt;}
.fsb_c01276{font-size:48.640000pt;}
.fs6_c01276{font-size:51.200000pt;}
.fs3_c01276{font-size:53.760000pt;}
.fsa_c01276{font-size:56.320000pt;}
.fsc_c01276{font-size:58.880000pt;}
.fs5_c01276{font-size:61.440000pt;}
.fs0_c01276{font-size:64.000000pt;}
.y0_c01276{bottom:0.000000pt;}
.y6f_c01276{bottom:65.920000pt;}
.y72_c01276{bottom:66.560000pt;}
.y70_c01276{bottom:67.200000pt;}
.y74_c01276{bottom:67.840000pt;}
.y73_c01276{bottom:68.480000pt;}
.y71_c01276{bottom:69.120000pt;}
.y6e_c01276{bottom:71.040000pt;}
.y6d_c01276{bottom:72.960000pt;}
.y6c_c01276{bottom:74.880000pt;}
.y68_c01276{bottom:103.680000pt;}
.y69_c01276{bottom:104.960000pt;}
.y6b_c01276{bottom:105.600000pt;}
.y6a_c01276{bottom:106.240000pt;}
.y66_c01276{bottom:106.880000pt;}
.y67_c01276{bottom:107.520000pt;}
.y65_c01276{bottom:110.720000pt;}
.y64_c01276{bottom:113.280000pt;}
.y62_c01276{bottom:142.720000pt;}
.y60_c01276{bottom:144.000000pt;}
.y63_c01276{bottom:144.640000pt;}
.y61_c01276{bottom:145.280000pt;}
.y5f_c01276{bottom:147.840000pt;}
.y5e_c01276{bottom:148.480000pt;}
.y5d_c01276{bottom:150.400000pt;}
.y5b_c01276{bottom:179.840000pt;}
.y5a_c01276{bottom:180.480000pt;}
.y59_c01276{bottom:181.120000pt;}
.y57_c01276{bottom:181.760000pt;}
.y5c_c01276{bottom:182.400000pt;}
.y58_c01276{bottom:183.680000pt;}
.y56_c01276{bottom:184.960000pt;}
.y55_c01276{bottom:185.600000pt;}
.y54_c01276{bottom:186.240000pt;}
.y51_c01276{bottom:218.880000pt;}
.y53_c01276{bottom:220.800000pt;}
.y52_c01276{bottom:221.440000pt;}
.y50_c01276{bottom:222.080000pt;}
.y4f_c01276{bottom:222.720000pt;}
.y4e_c01276{bottom:224.640000pt;}
.y4c_c01276{bottom:257.920000pt;}
.y4d_c01276{bottom:259.200000pt;}
.y4a_c01276{bottom:259.840000pt;}
.y4b_c01276{bottom:261.120000pt;}
.y49_c01276{bottom:263.680000pt;}
.y46_c01276{bottom:295.680000pt;}
.y48_c01276{bottom:297.600000pt;}
.y47_c01276{bottom:298.240000pt;}
.y45_c01276{bottom:298.880000pt;}
.y44_c01276{bottom:299.520000pt;}
.y43_c01276{bottom:348.800000pt;}
.y41_c01276{bottom:383.360000pt;}
.y40_c01276{bottom:384.000000pt;}
.y42_c01276{bottom:384.640000pt;}
.y3f_c01276{bottom:386.560000pt;}
.y3d_c01276{bottom:419.840000pt;}
.y3e_c01276{bottom:421.760000pt;}
.y3c_c01276{bottom:422.400000pt;}
.y3b_c01276{bottom:423.040000pt;}
.y3a_c01276{bottom:423.680000pt;}
.y39_c01276{bottom:424.960000pt;}
.y38_c01276{bottom:457.600000pt;}
.y37_c01276{bottom:458.240000pt;}
.y33_c01276{bottom:459.520000pt;}
.y36_c01276{bottom:460.160000pt;}
.y35_c01276{bottom:460.800000pt;}
.y34_c01276{bottom:461.440000pt;}
.y2f_c01276{bottom:496.000000pt;}
.y30_c01276{bottom:496.640000pt;}
.y32_c01276{bottom:497.920000pt;}
.y31_c01276{bottom:498.560000pt;}
.y2e_c01276{bottom:499.840000pt;}
.y2d_c01276{bottom:535.680000pt;}
.y2c_c01276{bottom:536.320000pt;}
.y2b_c01276{bottom:536.960000pt;}
.y29_c01276{bottom:572.160000pt;}
.y2a_c01276{bottom:574.080000pt;}
.y28_c01276{bottom:574.720000pt;}
.y26_c01276{bottom:609.920000pt;}
.y25_c01276{bottom:612.480000pt;}
.y27_c01276{bottom:613.120000pt;}
.y24_c01276{bottom:648.320000pt;}
.y23_c01276{bottom:650.240000pt;}
.y22_c01276{bottom:650.880000pt;}
.y1e_c01276{bottom:686.080000pt;}
.y20_c01276{bottom:686.720000pt;}
.y1d_c01276{bottom:688.000000pt;}
.y21_c01276{bottom:688.640000pt;}
.y1f_c01276{bottom:689.280000pt;}
.y1c_c01276{bottom:725.120000pt;}
.y19_c01276{bottom:725.760000pt;}
.y1a_c01276{bottom:727.040000pt;}
.y1b_c01276{bottom:727.680000pt;}
.y14_c01276{bottom:761.600000pt;}
.y15_c01276{bottom:762.240000pt;}
.y18_c01276{bottom:762.880000pt;}
.y16_c01276{bottom:765.440000pt;}
.y17_c01276{bottom:766.080000pt;}
.y11_c01276{bottom:800.640000pt;}
.y12_c01276{bottom:801.280000pt;}
.yf_c01276{bottom:801.920000pt;}
.y13_c01276{bottom:803.200000pt;}
.y10_c01276{bottom:803.840000pt;}
.yc_c01276{bottom:839.040000pt;}
.ya_c01276{bottom:839.680000pt;}
.yb_c01276{bottom:840.320000pt;}
.yd_c01276{bottom:841.600000pt;}
.ye_c01276{bottom:842.240000pt;}
.y8_c01276{bottom:877.440000pt;}
.y7_c01276{bottom:880.000000pt;}
.y9_c01276{bottom:880.640000pt;}
.y2_c01276{bottom:922.240000pt;}
.y5_c01276{bottom:924.800000pt;}
.y3_c01276{bottom:926.080000pt;}
.y4_c01276{bottom:926.720000pt;}
.y6_c01276{bottom:927.360000pt;}
.y1_c01276{bottom:963.200000pt;}
.h4_c01276{height:27.645000pt;}
.h9_c01276{height:29.948750pt;}
.ha_c01276{height:34.556250pt;}
.hb_c01276{height:36.860000pt;}
.h3_c01276{height:39.163750pt;}
.h6_c01276{height:41.467500pt;}
.hd_c01276{height:43.771250pt;}
.h8_c01276{height:46.075000pt;}
.h5_c01276{height:48.378750pt;}
.hc_c01276{height:50.682500pt;}
.he_c01276{height:52.986250pt;}
.h7_c01276{height:55.290000pt;}
.h2_c01276{height:57.593750pt;}
.h0_c01276{height:1015.680000pt;}
.h1_c01276{height:1016.000000pt;}
.w1_c01276{width:682.000000pt;}
.w0_c01276{width:682.240000pt;}
.x0_c01276{left:0.000000pt;}
.x2_c01276{left:53.120000pt;}
.x47_c01276{left:54.400000pt;}
.x4d_c01276{left:55.680000pt;}
.x1c_c01276{left:69.760000pt;}
.xd_c01276{left:78.720000pt;}
.x3b_c01276{left:87.680000pt;}
.x3_c01276{left:96.000000pt;}
.x4e_c01276{left:97.280000pt;}
.x39_c01276{left:105.600000pt;}
.xe_c01276{left:114.560000pt;}
.x4f_c01276{left:123.520000pt;}
.x4_c01276{left:133.120000pt;}
.x48_c01276{left:142.080000pt;}
.x7_c01276{left:143.360000pt;}
.x23_c01276{left:151.680000pt;}
.x2a_c01276{left:161.280000pt;}
.x17_c01276{left:162.560000pt;}
.x5_c01276{left:170.880000pt;}
.x1d_c01276{left:180.480000pt;}
.x18_c01276{left:190.080000pt;}
.x49_c01276{left:199.040000pt;}
.x2f_c01276{left:200.320000pt;}
.xf_c01276{left:208.000000pt;}
.x3f_c01276{left:209.280000pt;}
.x1e_c01276{left:218.240000pt;}
.x2b_c01276{left:219.520000pt;}
.x24_c01276{left:228.480000pt;}
.x40_c01276{left:237.440000pt;}
.x8_c01276{left:238.720000pt;}
.x10_c01276{left:247.680000pt;}
.x6_c01276{left:257.280000pt;}
.x19_c01276{left:266.880000pt;}
.x42_c01276{left:275.840000pt;}
.x9_c01276{left:286.080000pt;}
.x25_c01276{left:287.360000pt;}
.x32_c01276{left:295.680000pt;}
.x3e_c01276{left:304.640000pt;}
.x30_c01276{left:314.880000pt;}
.x11_c01276{left:324.480000pt;}
.x3c_c01276{left:334.080000pt;}
.x1f_c01276{left:335.360000pt;}
.xa_c01276{left:344.320000pt;}
.x20_c01276{left:353.280000pt;}
.x4b_c01276{left:355.200000pt;}
.x12_c01276{left:362.880000pt;}
.x33_c01276{left:382.080000pt;}
.x2c_c01276{left:383.360000pt;}
.xb_c01276{left:392.320000pt;}
.x26_c01276{left:401.920000pt;}
.x43_c01276{left:410.880000pt;}
.x21_c01276{left:420.480000pt;}
.x27_c01276{left:430.720000pt;}
.xc_c01276{left:432.000000pt;}
.x41_c01276{left:440.320000pt;}
.x4a_c01276{left:441.600000pt;}
.x1a_c01276{left:450.560000pt;}
.x28_c01276{left:458.880000pt;}
.x34_c01276{left:460.160000pt;}
.x4c_c01276{left:469.120000pt;}
.x2d_c01276{left:478.720000pt;}
.x13_c01276{left:480.000000pt;}
.x45_c01276{left:487.680000pt;}
.x35_c01276{left:488.960000pt;}
.x14_c01276{left:507.520000pt;}
.x29_c01276{left:508.800000pt;}
.x38_c01276{left:516.480000pt;}
.x36_c01276{left:517.760000pt;}
.x3a_c01276{left:528.000000pt;}
.x2e_c01276{left:536.320000pt;}
.x15_c01276{left:537.600000pt;}
.x3d_c01276{left:547.200000pt;}
.x1b_c01276{left:556.800000pt;}
.x44_c01276{left:565.120000pt;}
.x31_c01276{left:566.400000pt;}
.x37_c01276{left:574.720000pt;}
.x22_c01276{left:576.000000pt;}
.x16_c01276{left:584.960000pt;}
.x1_c01276{left:593.280000pt;}
.x46_c01276{left:595.200000pt;}
}





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

.ir_c01277:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01277{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01277;src:url('chunks/assets/font_78a3077cc0ddc6213c600905.woff2')format("woff");}.ff1_c01277{font-family:ff1_c01277;line-height:1.109863;font-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_c01277{transform:matrix(0.168375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168375,0.000000,0.000000,0.250000,0,0);}
.m5f_c01277{transform:matrix(0.243675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243675,0.000000,0.000000,0.250000,0,0);}
.m32_c01277{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);}
.m2d_c01277{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01277{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01277{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m48_c01277{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01277{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m56_c01277{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m15_c01277{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01277{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m55_c01277{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m4a_c01277{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mf_c01277{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01277{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m0_c01277{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m4_c01277{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);}
.m47_c01277{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);}
.m51_c01277{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m58_c01277{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);}
.m39_c01277{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01277{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m41_c01277{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);}
.m36_c01277{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m31_c01277{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);}
.m7_c01277{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_c01277{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m10_c01277{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m46_c01277{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);}
.m45_c01277{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m1_c01277{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);}
.m2c_c01277{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m5_c01277{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);}
.m37_c01277{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m53_c01277{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);}
.m42_c01277{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);}
.m3a_c01277{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.md_c01277{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01277{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m52_c01277{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m22_c01277{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);}
.m25_c01277{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m33_c01277{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m20_c01277{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m44_c01277{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);}
.m49_c01277{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);}
.m35_c01277{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.ma_c01277{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m12_c01277{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m54_c01277{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m50_c01277{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);}
.m43_c01277{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01277{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01277{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);}
.m24_c01277{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m4d_c01277{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);}
.m27_c01277{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01277{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m11_c01277{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);}
.m3e_c01277{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.me_c01277{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m59_c01277{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m28_c01277{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);}
.m19_c01277{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.mb_c01277{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01277{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m29_c01277{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m5e_c01277{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);}
.m5a_c01277{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m17_c01277{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01277{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m3_c01277{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);}
.mc_c01277{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m6_c01277{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01277{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m13_c01277{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m5d_c01277{transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);}
.m18_c01277{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m38_c01277{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);}
.m2_c01277{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m34_c01277{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);}
.m1b_c01277{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01277{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01277{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m30_c01277{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m5b_c01277{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m21_c01277{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m23_c01277{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);}
.m14_c01277{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);}
.m4b_c01277{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01277{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);}
.m9_c01277{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m8_c01277{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m57_c01277{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m5c_c01277{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.m40_c01277{transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);}
.v0_c01277{vertical-align:0.000000px;}
.ls0_c01277{letter-spacing:0.000000px;}
.sc__c01277{text-shadow:none;}
.sc0_c01277{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01277{-webkit-text-stroke:0px transparent;}
.sc0_c01277{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01277{word-spacing:0.000000px;}
.fc0_c01277{color:transparent;}
.fs7_c01277{font-size:31.680000px;}
.fs1_c01277{font-size:34.560000px;}
.fs3_c01277{font-size:37.440000px;}
.fsb_c01277{font-size:43.200000px;}
.fs2_c01277{font-size:46.080000px;}
.fs5_c01277{font-size:48.960000px;}
.fsd_c01277{font-size:51.840000px;}
.fs6_c01277{font-size:54.720000px;}
.fse_c01277{font-size:57.600000px;}
.fs8_c01277{font-size:60.480000px;}
.fsa_c01277{font-size:63.360000px;}
.fs9_c01277{font-size:66.240000px;}
.fs4_c01277{font-size:69.120000px;}
.fs0_c01277{font-size:74.880000px;}
.fsc_c01277{font-size:97.920000px;}
.y0_c01277{bottom:0.000000px;}
.y84_c01277{bottom:47.520000px;}
.y82_c01277{bottom:48.240000px;}
.y83_c01277{bottom:48.960000px;}
.y81_c01277{bottom:49.680000px;}
.y80_c01277{bottom:51.120000px;}
.y7f_c01277{bottom:53.280000px;}
.y7e_c01277{bottom:57.600000px;}
.y7c_c01277{bottom:89.280000px;}
.y7d_c01277{bottom:91.440000px;}
.y7b_c01277{bottom:92.160000px;}
.y7a_c01277{bottom:95.040000px;}
.y79_c01277{bottom:144.000000px;}
.y78_c01277{bottom:145.440000px;}
.y77_c01277{bottom:146.160000px;}
.y76_c01277{bottom:147.600000px;}
.y75_c01277{bottom:151.200000px;}
.y72_c01277{bottom:185.760000px;}
.y74_c01277{bottom:187.920000px;}
.y71_c01277{bottom:188.640000px;}
.y73_c01277{bottom:189.360000px;}
.y70_c01277{bottom:190.080000px;}
.y6f_c01277{bottom:192.240000px;}
.y6e_c01277{bottom:193.680000px;}
.y6d_c01277{bottom:195.840000px;}
.y6a_c01277{bottom:228.240000px;}
.y6b_c01277{bottom:228.960000px;}
.y6c_c01277{bottom:230.400000px;}
.y69_c01277{bottom:231.840000px;}
.y68_c01277{bottom:233.280000px;}
.y67_c01277{bottom:234.000000px;}
.y66_c01277{bottom:236.880000px;}
.y64_c01277{bottom:271.440000px;}
.y65_c01277{bottom:273.600000px;}
.y63_c01277{bottom:274.320000px;}
.y62_c01277{bottom:275.040000px;}
.y61_c01277{bottom:277.200000px;}
.y5f_c01277{bottom:325.440000px;}
.y60_c01277{bottom:326.880000px;}
.y5c_c01277{bottom:327.600000px;}
.y5e_c01277{bottom:328.320000px;}
.y5d_c01277{bottom:329.760000px;}
.y5b_c01277{bottom:331.920000px;}
.y5a_c01277{bottom:332.640000px;}
.y59_c01277{bottom:366.480000px;}
.y58_c01277{bottom:367.920000px;}
.y54_c01277{bottom:370.080000px;}
.y57_c01277{bottom:370.800000px;}
.y56_c01277{bottom:371.520000px;}
.y55_c01277{bottom:372.240000px;}
.y53_c01277{bottom:372.960000px;}
.y52_c01277{bottom:409.680000px;}
.y51_c01277{bottom:410.400000px;}
.y4f_c01277{bottom:411.840000px;}
.y50_c01277{bottom:413.280000px;}
.y4c_c01277{bottom:414.000000px;}
.y4d_c01277{bottom:414.720000px;}
.y4e_c01277{bottom:415.440000px;}
.y4b_c01277{bottom:417.600000px;}
.y49_c01277{bottom:456.480000px;}
.y4a_c01277{bottom:457.200000px;}
.y48_c01277{bottom:457.920000px;}
.y47_c01277{bottom:458.640000px;}
.y45_c01277{bottom:510.480000px;}
.y46_c01277{bottom:511.200000px;}
.y44_c01277{bottom:511.920000px;}
.y43_c01277{bottom:512.640000px;}
.y40_c01277{bottom:550.800000px;}
.y42_c01277{bottom:551.520000px;}
.y3e_c01277{bottom:552.960000px;}
.y41_c01277{bottom:553.680000px;}
.y3f_c01277{bottom:554.400000px;}
.y3b_c01277{bottom:593.280000px;}
.y3d_c01277{bottom:594.000000px;}
.y3c_c01277{bottom:594.720000px;}
.y3a_c01277{bottom:596.880000px;}
.y38_c01277{bottom:597.600000px;}
.y39_c01277{bottom:598.320000px;}
.y35_c01277{bottom:636.480000px;}
.y37_c01277{bottom:637.200000px;}
.y36_c01277{bottom:639.360000px;}
.y34_c01277{bottom:640.080000px;}
.y31_c01277{bottom:679.680000px;}
.y2f_c01277{bottom:681.840000px;}
.y32_c01277{bottom:682.560000px;}
.y33_c01277{bottom:683.280000px;}
.y30_c01277{bottom:684.000000px;}
.y2a_c01277{bottom:722.880000px;}
.y2b_c01277{bottom:723.600000px;}
.y2d_c01277{bottom:724.320000px;}
.y28_c01277{bottom:725.040000px;}
.y29_c01277{bottom:725.760000px;}
.y2c_c01277{bottom:726.480000px;}
.y2e_c01277{bottom:727.200000px;}
.y26_c01277{bottom:756.720000px;}
.y24_c01277{bottom:765.360000px;}
.y27_c01277{bottom:766.800000px;}
.y23_c01277{bottom:768.240000px;}
.y25_c01277{bottom:768.960000px;}
.y1e_c01277{bottom:817.920000px;}
.y21_c01277{bottom:818.640000px;}
.y22_c01277{bottom:819.360000px;}
.y1d_c01277{bottom:820.080000px;}
.y1f_c01277{bottom:820.800000px;}
.y20_c01277{bottom:821.520000px;}
.y19_c01277{bottom:861.120000px;}
.y18_c01277{bottom:861.840000px;}
.y1a_c01277{bottom:864.000000px;}
.y1b_c01277{bottom:864.720000px;}
.y1c_c01277{bottom:865.440000px;}
.y11_c01277{bottom:901.440000px;}
.y15_c01277{bottom:904.320000px;}
.y16_c01277{bottom:905.040000px;}
.y12_c01277{bottom:905.760000px;}
.y13_c01277{bottom:906.480000px;}
.y14_c01277{bottom:907.200000px;}
.y17_c01277{bottom:907.920000px;}
.ye_c01277{bottom:947.520000px;}
.yc_c01277{bottom:948.960000px;}
.yd_c01277{bottom:949.680000px;}
.y10_c01277{bottom:950.400000px;}
.yf_c01277{bottom:951.120000px;}
.ya_c01277{bottom:1000.080000px;}
.y8_c01277{bottom:1000.800000px;}
.y9_c01277{bottom:1001.520000px;}
.yb_c01277{bottom:1003.680000px;}
.y2_c01277{bottom:1042.560000px;}
.y5_c01277{bottom:1043.280000px;}
.y3_c01277{bottom:1044.000000px;}
.y4_c01277{bottom:1044.720000px;}
.y7_c01277{bottom:1045.440000px;}
.y6_c01277{bottom:1047.600000px;}
.y1_c01277{bottom:1095.120000px;}
.h9_c01277{height:28.508906px;}
.h3_c01277{height:31.100625px;}
.h5_c01277{height:33.692344px;}
.hd_c01277{height:38.875781px;}
.h4_c01277{height:41.467500px;}
.h7_c01277{height:44.059219px;}
.hf_c01277{height:46.650937px;}
.h8_c01277{height:49.242656px;}
.h10_c01277{height:51.834375px;}
.ha_c01277{height:54.426094px;}
.hc_c01277{height:57.017812px;}
.hb_c01277{height:59.609531px;}
.h6_c01277{height:62.201250px;}
.h2_c01277{height:67.384687px;}
.he_c01277{height:88.118437px;}
.h1_c01277{height:1143.750000px;}
.h0_c01277{height:1144.080000px;}
.w1_c01277{width:768.750000px;}
.w0_c01277{width:768.960000px;}
.x0_c01277{left:0.000000px;}
.x2_c01277{left:58.320000px;}
.x41_c01277{left:59.760000px;}
.x4e_c01277{left:61.200000px;}
.x3_c01277{left:77.040000px;}
.x1c_c01277{left:87.120000px;}
.x4f_c01277{left:88.560000px;}
.xc_c01277{left:95.760000px;}
.x2d_c01277{left:97.200000px;}
.x4_c01277{left:107.280000px;}
.x21_c01277{left:117.360000px;}
.x27_c01277{left:127.440000px;}
.x15_c01277{left:137.520000px;}
.x22_c01277{left:149.040000px;}
.x5_c01277{left:158.400000px;}
.x39_c01277{left:159.840000px;}
.x44_c01277{left:168.480000px;}
.x35_c01277{left:170.640000px;}
.x16_c01277{left:180.000000px;}
.x1d_c01277{left:190.080000px;}
.x23_c01277{left:191.520000px;}
.x25_c01277{left:201.600000px;}
.x50_c01277{left:211.680000px;}
.x3d_c01277{left:213.120000px;}
.x2e_c01277{left:222.480000px;}
.xf_c01277{left:223.920000px;}
.x28_c01277{left:233.280000px;}
.x4a_c01277{left:235.440000px;}
.x10_c01277{left:244.080000px;}
.x3e_c01277{left:245.520000px;}
.xd_c01277{left:254.880000px;}
.x17_c01277{left:277.200000px;}
.x32_c01277{left:286.560000px;}
.x6_c01277{left:288.000000px;}
.x24_c01277{left:298.080000px;}
.x51_c01277{left:308.160000px;}
.x4d_c01277{left:310.320000px;}
.x18_c01277{left:319.680000px;}
.x11_c01277{left:321.120000px;}
.x3a_c01277{left:330.480000px;}
.x12_c01277{left:341.280000px;}
.x7_c01277{left:352.800000px;}
.x33_c01277{left:363.600000px;}
.x45_c01277{left:373.680000px;}
.xe_c01277{left:375.120000px;}
.x52_c01277{left:385.200000px;}
.x26_c01277{left:395.280000px;}
.x8_c01277{left:396.720000px;}
.x2f_c01277{left:406.800000px;}
.x1e_c01277{left:416.880000px;}
.x4c_c01277{left:419.040000px;}
.x36_c01277{left:428.400000px;}
.x19_c01277{left:438.480000px;}
.x42_c01277{left:449.280000px;}
.x30_c01277{left:460.800000px;}
.x29_c01277{left:473.040000px;}
.x4b_c01277{left:482.400000px;}
.x13_c01277{left:483.840000px;}
.x3f_c01277{left:492.480000px;}
.x46_c01277{left:493.920000px;}
.x43_c01277{left:504.000000px;}
.x37_c01277{left:505.440000px;}
.x1f_c01277{left:514.800000px;}
.x9_c01277{left:516.240000px;}
.x31_c01277{left:525.600000px;}
.x2a_c01277{left:537.840000px;}
.xa_c01277{left:547.920000px;}
.x20_c01277{left:549.360000px;}
.x47_c01277{left:558.000000px;}
.x2b_c01277{left:569.520000px;}
.x1a_c01277{left:570.960000px;}
.x3b_c01277{left:580.320000px;}
.xb_c01277{left:591.840000px;}
.x14_c01277{left:602.640000px;}
.x1b_c01277{left:613.440000px;}
.x3c_c01277{left:624.240000px;}
.x48_c01277{left:635.040000px;}
.x40_c01277{left:636.480000px;}
.x38_c01277{left:645.840000px;}
.x2c_c01277{left:647.280000px;}
.x34_c01277{left:656.640000px;}
.x1_c01277{left:665.280000px;}
.x49_c01277{left:667.440000px;}
.x53_c01277{left:668.880000px;}
@media print{
.v0_c01277{vertical-align:0.000000pt;}
.ls0_c01277{letter-spacing:0.000000pt;}
.ws0_c01277{word-spacing:0.000000pt;}
.fs7_c01277{font-size:28.160000pt;}
.fs1_c01277{font-size:30.720000pt;}
.fs3_c01277{font-size:33.280000pt;}
.fsb_c01277{font-size:38.400000pt;}
.fs2_c01277{font-size:40.960000pt;}
.fs5_c01277{font-size:43.520000pt;}
.fsd_c01277{font-size:46.080000pt;}
.fs6_c01277{font-size:48.640000pt;}
.fse_c01277{font-size:51.200000pt;}
.fs8_c01277{font-size:53.760000pt;}
.fsa_c01277{font-size:56.320000pt;}
.fs9_c01277{font-size:58.880000pt;}
.fs4_c01277{font-size:61.440000pt;}
.fs0_c01277{font-size:66.560000pt;}
.fsc_c01277{font-size:87.040000pt;}
.y0_c01277{bottom:0.000000pt;}
.y84_c01277{bottom:42.240000pt;}
.y82_c01277{bottom:42.880000pt;}
.y83_c01277{bottom:43.520000pt;}
.y81_c01277{bottom:44.160000pt;}
.y80_c01277{bottom:45.440000pt;}
.y7f_c01277{bottom:47.360000pt;}
.y7e_c01277{bottom:51.200000pt;}
.y7c_c01277{bottom:79.360000pt;}
.y7d_c01277{bottom:81.280000pt;}
.y7b_c01277{bottom:81.920000pt;}
.y7a_c01277{bottom:84.480000pt;}
.y79_c01277{bottom:128.000000pt;}
.y78_c01277{bottom:129.280000pt;}
.y77_c01277{bottom:129.920000pt;}
.y76_c01277{bottom:131.200000pt;}
.y75_c01277{bottom:134.400000pt;}
.y72_c01277{bottom:165.120000pt;}
.y74_c01277{bottom:167.040000pt;}
.y71_c01277{bottom:167.680000pt;}
.y73_c01277{bottom:168.320000pt;}
.y70_c01277{bottom:168.960000pt;}
.y6f_c01277{bottom:170.880000pt;}
.y6e_c01277{bottom:172.160000pt;}
.y6d_c01277{bottom:174.080000pt;}
.y6a_c01277{bottom:202.880000pt;}
.y6b_c01277{bottom:203.520000pt;}
.y6c_c01277{bottom:204.800000pt;}
.y69_c01277{bottom:206.080000pt;}
.y68_c01277{bottom:207.360000pt;}
.y67_c01277{bottom:208.000000pt;}
.y66_c01277{bottom:210.560000pt;}
.y64_c01277{bottom:241.280000pt;}
.y65_c01277{bottom:243.200000pt;}
.y63_c01277{bottom:243.840000pt;}
.y62_c01277{bottom:244.480000pt;}
.y61_c01277{bottom:246.400000pt;}
.y5f_c01277{bottom:289.280000pt;}
.y60_c01277{bottom:290.560000pt;}
.y5c_c01277{bottom:291.200000pt;}
.y5e_c01277{bottom:291.840000pt;}
.y5d_c01277{bottom:293.120000pt;}
.y5b_c01277{bottom:295.040000pt;}
.y5a_c01277{bottom:295.680000pt;}
.y59_c01277{bottom:325.760000pt;}
.y58_c01277{bottom:327.040000pt;}
.y54_c01277{bottom:328.960000pt;}
.y57_c01277{bottom:329.600000pt;}
.y56_c01277{bottom:330.240000pt;}
.y55_c01277{bottom:330.880000pt;}
.y53_c01277{bottom:331.520000pt;}
.y52_c01277{bottom:364.160000pt;}
.y51_c01277{bottom:364.800000pt;}
.y4f_c01277{bottom:366.080000pt;}
.y50_c01277{bottom:367.360000pt;}
.y4c_c01277{bottom:368.000000pt;}
.y4d_c01277{bottom:368.640000pt;}
.y4e_c01277{bottom:369.280000pt;}
.y4b_c01277{bottom:371.200000pt;}
.y49_c01277{bottom:405.760000pt;}
.y4a_c01277{bottom:406.400000pt;}
.y48_c01277{bottom:407.040000pt;}
.y47_c01277{bottom:407.680000pt;}
.y45_c01277{bottom:453.760000pt;}
.y46_c01277{bottom:454.400000pt;}
.y44_c01277{bottom:455.040000pt;}
.y43_c01277{bottom:455.680000pt;}
.y40_c01277{bottom:489.600000pt;}
.y42_c01277{bottom:490.240000pt;}
.y3e_c01277{bottom:491.520000pt;}
.y41_c01277{bottom:492.160000pt;}
.y3f_c01277{bottom:492.800000pt;}
.y3b_c01277{bottom:527.360000pt;}
.y3d_c01277{bottom:528.000000pt;}
.y3c_c01277{bottom:528.640000pt;}
.y3a_c01277{bottom:530.560000pt;}
.y38_c01277{bottom:531.200000pt;}
.y39_c01277{bottom:531.840000pt;}
.y35_c01277{bottom:565.760000pt;}
.y37_c01277{bottom:566.400000pt;}
.y36_c01277{bottom:568.320000pt;}
.y34_c01277{bottom:568.960000pt;}
.y31_c01277{bottom:604.160000pt;}
.y2f_c01277{bottom:606.080000pt;}
.y32_c01277{bottom:606.720000pt;}
.y33_c01277{bottom:607.360000pt;}
.y30_c01277{bottom:608.000000pt;}
.y2a_c01277{bottom:642.560000pt;}
.y2b_c01277{bottom:643.200000pt;}
.y2d_c01277{bottom:643.840000pt;}
.y28_c01277{bottom:644.480000pt;}
.y29_c01277{bottom:645.120000pt;}
.y2c_c01277{bottom:645.760000pt;}
.y2e_c01277{bottom:646.400000pt;}
.y26_c01277{bottom:672.640000pt;}
.y24_c01277{bottom:680.320000pt;}
.y27_c01277{bottom:681.600000pt;}
.y23_c01277{bottom:682.880000pt;}
.y25_c01277{bottom:683.520000pt;}
.y1e_c01277{bottom:727.040000pt;}
.y21_c01277{bottom:727.680000pt;}
.y22_c01277{bottom:728.320000pt;}
.y1d_c01277{bottom:728.960000pt;}
.y1f_c01277{bottom:729.600000pt;}
.y20_c01277{bottom:730.240000pt;}
.y19_c01277{bottom:765.440000pt;}
.y18_c01277{bottom:766.080000pt;}
.y1a_c01277{bottom:768.000000pt;}
.y1b_c01277{bottom:768.640000pt;}
.y1c_c01277{bottom:769.280000pt;}
.y11_c01277{bottom:801.280000pt;}
.y15_c01277{bottom:803.840000pt;}
.y16_c01277{bottom:804.480000pt;}
.y12_c01277{bottom:805.120000pt;}
.y13_c01277{bottom:805.760000pt;}
.y14_c01277{bottom:806.400000pt;}
.y17_c01277{bottom:807.040000pt;}
.ye_c01277{bottom:842.240000pt;}
.yc_c01277{bottom:843.520000pt;}
.yd_c01277{bottom:844.160000pt;}
.y10_c01277{bottom:844.800000pt;}
.yf_c01277{bottom:845.440000pt;}
.ya_c01277{bottom:888.960000pt;}
.y8_c01277{bottom:889.600000pt;}
.y9_c01277{bottom:890.240000pt;}
.yb_c01277{bottom:892.160000pt;}
.y2_c01277{bottom:926.720000pt;}
.y5_c01277{bottom:927.360000pt;}
.y3_c01277{bottom:928.000000pt;}
.y4_c01277{bottom:928.640000pt;}
.y7_c01277{bottom:929.280000pt;}
.y6_c01277{bottom:931.200000pt;}
.y1_c01277{bottom:973.440000pt;}
.h9_c01277{height:25.341250pt;}
.h3_c01277{height:27.645000pt;}
.h5_c01277{height:29.948750pt;}
.hd_c01277{height:34.556250pt;}
.h4_c01277{height:36.860000pt;}
.h7_c01277{height:39.163750pt;}
.hf_c01277{height:41.467500pt;}
.h8_c01277{height:43.771250pt;}
.h10_c01277{height:46.075000pt;}
.ha_c01277{height:48.378750pt;}
.hc_c01277{height:50.682500pt;}
.hb_c01277{height:52.986250pt;}
.h6_c01277{height:55.290000pt;}
.h2_c01277{height:59.897500pt;}
.he_c01277{height:78.327500pt;}
.h1_c01277{height:1016.666667pt;}
.h0_c01277{height:1016.960000pt;}
.w1_c01277{width:683.333333pt;}
.w0_c01277{width:683.520000pt;}
.x0_c01277{left:0.000000pt;}
.x2_c01277{left:51.840000pt;}
.x41_c01277{left:53.120000pt;}
.x4e_c01277{left:54.400000pt;}
.x3_c01277{left:68.480000pt;}
.x1c_c01277{left:77.440000pt;}
.x4f_c01277{left:78.720000pt;}
.xc_c01277{left:85.120000pt;}
.x2d_c01277{left:86.400000pt;}
.x4_c01277{left:95.360000pt;}
.x21_c01277{left:104.320000pt;}
.x27_c01277{left:113.280000pt;}
.x15_c01277{left:122.240000pt;}
.x22_c01277{left:132.480000pt;}
.x5_c01277{left:140.800000pt;}
.x39_c01277{left:142.080000pt;}
.x44_c01277{left:149.760000pt;}
.x35_c01277{left:151.680000pt;}
.x16_c01277{left:160.000000pt;}
.x1d_c01277{left:168.960000pt;}
.x23_c01277{left:170.240000pt;}
.x25_c01277{left:179.200000pt;}
.x50_c01277{left:188.160000pt;}
.x3d_c01277{left:189.440000pt;}
.x2e_c01277{left:197.760000pt;}
.xf_c01277{left:199.040000pt;}
.x28_c01277{left:207.360000pt;}
.x4a_c01277{left:209.280000pt;}
.x10_c01277{left:216.960000pt;}
.x3e_c01277{left:218.240000pt;}
.xd_c01277{left:226.560000pt;}
.x17_c01277{left:246.400000pt;}
.x32_c01277{left:254.720000pt;}
.x6_c01277{left:256.000000pt;}
.x24_c01277{left:264.960000pt;}
.x51_c01277{left:273.920000pt;}
.x4d_c01277{left:275.840000pt;}
.x18_c01277{left:284.160000pt;}
.x11_c01277{left:285.440000pt;}
.x3a_c01277{left:293.760000pt;}
.x12_c01277{left:303.360000pt;}
.x7_c01277{left:313.600000pt;}
.x33_c01277{left:323.200000pt;}
.x45_c01277{left:332.160000pt;}
.xe_c01277{left:333.440000pt;}
.x52_c01277{left:342.400000pt;}
.x26_c01277{left:351.360000pt;}
.x8_c01277{left:352.640000pt;}
.x2f_c01277{left:361.600000pt;}
.x1e_c01277{left:370.560000pt;}
.x4c_c01277{left:372.480000pt;}
.x36_c01277{left:380.800000pt;}
.x19_c01277{left:389.760000pt;}
.x42_c01277{left:399.360000pt;}
.x30_c01277{left:409.600000pt;}
.x29_c01277{left:420.480000pt;}
.x4b_c01277{left:428.800000pt;}
.x13_c01277{left:430.080000pt;}
.x3f_c01277{left:437.760000pt;}
.x46_c01277{left:439.040000pt;}
.x43_c01277{left:448.000000pt;}
.x37_c01277{left:449.280000pt;}
.x1f_c01277{left:457.600000pt;}
.x9_c01277{left:458.880000pt;}
.x31_c01277{left:467.200000pt;}
.x2a_c01277{left:478.080000pt;}
.xa_c01277{left:487.040000pt;}
.x20_c01277{left:488.320000pt;}
.x47_c01277{left:496.000000pt;}
.x2b_c01277{left:506.240000pt;}
.x1a_c01277{left:507.520000pt;}
.x3b_c01277{left:515.840000pt;}
.xb_c01277{left:526.080000pt;}
.x14_c01277{left:535.680000pt;}
.x1b_c01277{left:545.280000pt;}
.x3c_c01277{left:554.880000pt;}
.x48_c01277{left:564.480000pt;}
.x40_c01277{left:565.760000pt;}
.x38_c01277{left:574.080000pt;}
.x2c_c01277{left:575.360000pt;}
.x34_c01277{left:583.680000pt;}
.x1_c01277{left:591.360000pt;}
.x49_c01277{left:593.280000pt;}
.x53_c01277{left:594.560000pt;}
}





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

.ir_c01278:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01278{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01278;src:url('chunks/assets/font_03f1cd9dde16b1ad78c27a16.woff2')format("woff");}.ff1_c01278{font-family:ff1_c01278;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m56_c01278{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m2_c01278{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01278{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m35_c01278{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m26_c01278{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01278{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.ma_c01278{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m45_c01278{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m4e_c01278{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01278{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01278{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m13_c01278{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m58_c01278{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m16_c01278{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m6_c01278{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m9_c01278{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m22_c01278{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m10_c01278{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1_c01278{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m7_c01278{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);}
.m41_c01278{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m46_c01278{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);}
.m54_c01278{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);}
.m39_c01278{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m8_c01278{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m4_c01278{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m21_c01278{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);}
.m3e_c01278{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);}
.m0_c01278{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01278{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);}
.m4a_c01278{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m31_c01278{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);}
.m5b_c01278{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);}
.m44_c01278{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m5e_c01278{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01278{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m34_c01278{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);}
.m2d_c01278{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01278{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_c01278{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);}
.m19_c01278{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);}
.m15_c01278{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01278{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m5_c01278{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01278{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m53_c01278{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);}
.m25_c01278{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01278{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01278{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);}
.m51_c01278{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.mf_c01278{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);}
.m2a_c01278{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m38_c01278{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m5d_c01278{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.mc_c01278{transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);}
.m28_c01278{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.mb_c01278{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m3_c01278{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m29_c01278{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m49_c01278{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m30_c01278{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m23_c01278{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);}
.m2e_c01278{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);}
.m12_c01278{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m48_c01278{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m59_c01278{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);}
.m57_c01278{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01278{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.md_c01278{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m55_c01278{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01278{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);}
.m3c_c01278{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m37_c01278{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01278{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m52_c01278{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);}
.me_c01278{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);}
.m36_c01278{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m11_c01278{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);}
.m5a_c01278{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m17_c01278{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m24_c01278{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m27_c01278{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m20_c01278{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01278{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);}
.m47_c01278{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);}
.m33_c01278{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);}
.m3d_c01278{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m50_c01278{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m43_c01278{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m40_c01278{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m42_c01278{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01278{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);}
.m32_c01278{transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);}
.m5c_c01278{transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);}
.m14_c01278{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_c01278{vertical-align:0.000000px;}
.ls0_c01278{letter-spacing:0.000000px;}
.sc__c01278{text-shadow:none;}
.sc0_c01278{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01278{-webkit-text-stroke:0px transparent;}
.sc0_c01278{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01278{word-spacing:-1.150451px;}
.ws1_c01278{word-spacing:0.000000px;}
.fc0_c01278{color:transparent;}
.fsa_c01278{font-size:34.560000px;}
.fsb_c01278{font-size:37.440000px;}
.fs9_c01278{font-size:40.320000px;}
.fs5_c01278{font-size:43.200000px;}
.fs3_c01278{font-size:46.080000px;}
.fs4_c01278{font-size:48.960000px;}
.fs8_c01278{font-size:51.840000px;}
.fsc_c01278{font-size:54.720000px;}
.fs6_c01278{font-size:57.600000px;}
.fs7_c01278{font-size:60.480000px;}
.fsd_c01278{font-size:63.360000px;}
.fs1_c01278{font-size:66.240000px;}
.fs2_c01278{font-size:69.120000px;}
.fs0_c01278{font-size:72.000000px;}
.y0_c01278{bottom:0.000000px;}
.y70_c01278{bottom:59.040000px;}
.y71_c01278{bottom:60.480000px;}
.y6f_c01278{bottom:61.200000px;}
.y6e_c01278{bottom:61.920000px;}
.y6d_c01278{bottom:62.640000px;}
.y6c_c01278{bottom:63.360000px;}
.y6b_c01278{bottom:66.960000px;}
.y6a_c01278{bottom:69.120000px;}
.y66_c01278{bottom:101.520000px;}
.y67_c01278{bottom:102.240000px;}
.y69_c01278{bottom:104.400000px;}
.y68_c01278{bottom:105.120000px;}
.y65_c01278{bottom:106.560000px;}
.y64_c01278{bottom:107.280000px;}
.y63_c01278{bottom:110.160000px;}
.y62_c01278{bottom:111.600000px;}
.y61_c01278{bottom:144.000000px;}
.y60_c01278{bottom:144.720000px;}
.y5d_c01278{bottom:146.880000px;}
.y5f_c01278{bottom:147.600000px;}
.y5e_c01278{bottom:148.320000px;}
.y5c_c01278{bottom:151.200000px;}
.y5a_c01278{bottom:187.920000px;}
.y58_c01278{bottom:189.360000px;}
.y5b_c01278{bottom:190.080000px;}
.y59_c01278{bottom:190.800000px;}
.y57_c01278{bottom:193.680000px;}
.y56_c01278{bottom:195.120000px;}
.y55_c01278{bottom:196.560000px;}
.y53_c01278{bottom:231.120000px;}
.y51_c01278{bottom:233.280000px;}
.y54_c01278{bottom:234.000000px;}
.y52_c01278{bottom:234.720000px;}
.y50_c01278{bottom:236.160000px;}
.y4f_c01278{bottom:237.600000px;}
.y4e_c01278{bottom:239.040000px;}
.y4d_c01278{bottom:239.760000px;}
.y4b_c01278{bottom:274.320000px;}
.y49_c01278{bottom:275.040000px;}
.y4c_c01278{bottom:275.760000px;}
.y4a_c01278{bottom:277.200000px;}
.y48_c01278{bottom:277.920000px;}
.y47_c01278{bottom:278.640000px;}
.y46_c01278{bottom:282.240000px;}
.y45_c01278{bottom:317.520000px;}
.y44_c01278{bottom:319.680000px;}
.y43_c01278{bottom:320.400000px;}
.y42_c01278{bottom:321.120000px;}
.y41_c01278{bottom:321.840000px;}
.y40_c01278{bottom:375.840000px;}
.y3e_c01278{bottom:414.000000px;}
.y3d_c01278{bottom:415.440000px;}
.y3f_c01278{bottom:416.880000px;}
.y3b_c01278{bottom:457.200000px;}
.y39_c01278{bottom:459.360000px;}
.y3c_c01278{bottom:460.080000px;}
.y3a_c01278{bottom:460.800000px;}
.y38_c01278{bottom:500.400000px;}
.y35_c01278{bottom:501.120000px;}
.y37_c01278{bottom:502.560000px;}
.y36_c01278{bottom:503.280000px;}
.y34_c01278{bottom:504.000000px;}
.y33_c01278{bottom:555.840000px;}
.y31_c01278{bottom:556.560000px;}
.y32_c01278{bottom:557.280000px;}
.y2f_c01278{bottom:596.880000px;}
.y30_c01278{bottom:597.600000px;}
.y2e_c01278{bottom:599.040000px;}
.y2d_c01278{bottom:599.760000px;}
.y2c_c01278{bottom:600.480000px;}
.y29_c01278{bottom:638.640000px;}
.y2b_c01278{bottom:639.360000px;}
.y2a_c01278{bottom:640.080000px;}
.y28_c01278{bottom:641.520000px;}
.y27_c01278{bottom:642.240000px;}
.y26_c01278{bottom:642.960000px;}
.y25_c01278{bottom:681.840000px;}
.y24_c01278{bottom:682.560000px;}
.y22_c01278{bottom:684.720000px;}
.y23_c01278{bottom:685.440000px;}
.y20_c01278{bottom:738.000000px;}
.y21_c01278{bottom:738.720000px;}
.y1f_c01278{bottom:779.040000px;}
.y1c_c01278{bottom:780.480000px;}
.y1d_c01278{bottom:781.200000px;}
.y1e_c01278{bottom:781.920000px;}
.y1b_c01278{bottom:822.240000px;}
.y17_c01278{bottom:822.960000px;}
.y18_c01278{bottom:823.680000px;}
.y19_c01278{bottom:824.400000px;}
.y1a_c01278{bottom:825.120000px;}
.y14_c01278{bottom:864.720000px;}
.y12_c01278{bottom:865.440000px;}
.y13_c01278{bottom:866.160000px;}
.y15_c01278{bottom:867.600000px;}
.y16_c01278{bottom:868.320000px;}
.ye_c01278{bottom:907.920000px;}
.y11_c01278{bottom:908.640000px;}
.yd_c01278{bottom:910.080000px;}
.y10_c01278{bottom:910.800000px;}
.yf_c01278{bottom:911.520000px;}
.yc_c01278{bottom:960.480000px;}
.y7_c01278{bottom:1001.520000px;}
.y8_c01278{bottom:1005.840000px;}
.y9_c01278{bottom:1007.280000px;}
.ya_c01278{bottom:1008.000000px;}
.yb_c01278{bottom:1008.720000px;}
.y2_c01278{bottom:1043.280000px;}
.y3_c01278{bottom:1046.880000px;}
.y4_c01278{bottom:1047.600000px;}
.y6_c01278{bottom:1049.040000px;}
.y5_c01278{bottom:1051.200000px;}
.y1_c01278{bottom:1092.960000px;}
.hc_c01278{height:31.100625px;}
.hd_c01278{height:33.692344px;}
.hb_c01278{height:36.284062px;}
.h7_c01278{height:38.875781px;}
.h5_c01278{height:41.467500px;}
.h6_c01278{height:44.059219px;}
.ha_c01278{height:46.650937px;}
.he_c01278{height:49.242656px;}
.h8_c01278{height:51.834375px;}
.h9_c01278{height:54.426094px;}
.hf_c01278{height:57.017812px;}
.h3_c01278{height:59.609531px;}
.h4_c01278{height:62.201250px;}
.h2_c01278{height:64.792969px;}
.h1_c01278{height:1143.750000px;}
.h0_c01278{height:1144.080000px;}
.w1_c01278{width:767.250000px;}
.w0_c01278{width:767.520000px;}
.x0_c01278{left:0.000000px;}
.x2_c01278{left:57.600000px;}
.x31_c01278{left:59.040000px;}
.x4e_c01278{left:60.480000px;}
.x32_c01278{left:77.760000px;}
.x25_c01278{left:86.400000px;}
.x4b_c01278{left:87.840000px;}
.x41_c01278{left:97.200000px;}
.x4c_c01278{left:107.280000px;}
.x16_c01278{left:116.640000px;}
.x3_c01278{left:127.440000px;}
.x1e_c01278{left:138.240000px;}
.x17_c01278{left:149.040000px;}
.x2b_c01278{left:158.400000px;}
.x10_c01278{left:159.839400px;}
.x3c_c01278{left:167.760000px;}
.x26_c01278{left:169.200000px;}
.x43_c01278{left:179.280000px;}
.x11_c01278{left:190.080000px;}
.x44_c01278{left:191.520000px;}
.x2d_c01278{left:200.880000px;}
.xa_c01278{left:202.320000px;}
.x2c_c01278{left:210.960000px;}
.x18_c01278{left:212.400000px;}
.x4_c01278{left:222.480000px;}
.x1f_c01278{left:233.280000px;}
.x2e_c01278{left:244.080000px;}
.x19_c01278{left:245.520000px;}
.x45_c01278{left:254.880000px;}
.x5_c01278{left:265.680000px;}
.x20_c01278{left:267.120000px;}
.x33_c01278{left:276.480000px;}
.x2f_c01278{left:277.920000px;}
.x3d_c01278{left:287.280000px;}
.x6_c01278{left:298.800000px;}
.x37_c01278{left:308.880000px;}
.x1a_c01278{left:310.320000px;}
.x30_c01278{left:330.480000px;}
.x7_c01278{left:341.280000px;}
.xb_c01278{left:352.800000px;}
.x27_c01278{left:363.600000px;}
.x51_c01278{left:372.960000px;}
.x42_c01278{left:374.400000px;}
.x3e_c01278{left:384.480000px;}
.x21_c01278{left:386.640000px;}
.xc_c01278{left:395.280000px;}
.x38_c01278{left:406.080000px;}
.x8_c01278{left:407.520000px;}
.x47_c01278{left:416.880000px;}
.x12_c01278{left:418.320000px;}
.x22_c01278{left:429.120000px;}
.x28_c01278{left:439.920000px;}
.x39_c01278{left:449.280000px;}
.x48_c01278{left:460.080000px;}
.x4d_c01278{left:470.880000px;}
.x34_c01278{left:473.040000px;}
.x4f_c01278{left:482.400000px;}
.x1b_c01278{left:483.840000px;}
.x13_c01278{left:493.200000px;}
.x1c_c01278{left:504.720000px;}
.x23_c01278{left:516.240000px;}
.x3f_c01278{left:525.600000px;}
.x3a_c01278{left:536.400000px;}
.x9_c01278{left:537.840000px;}
.xd_c01278{left:548.640000px;}
.x24_c01278{left:559.440000px;}
.x46_c01278{left:569.520000px;}
.x49_c01278{left:570.960000px;}
.xe_c01278{left:581.040000px;}
.x29_c01278{left:591.840000px;}
.x50_c01278{left:601.920000px;}
.x35_c01278{left:603.360000px;}
.xf_c01278{left:613.440000px;}
.x14_c01278{left:624.240000px;}
.x1d_c01278{left:635.040000px;}
.x4a_c01278{left:644.400000px;}
.x40_c01278{left:645.840000px;}
.x36_c01278{left:657.360000px;}
.x15_c01278{left:666.000000px;}
.x1_c01278{left:667.440000px;}
.x2a_c01278{left:668.880000px;}
.x3b_c01278{left:680.400000px;}
@media print{
.v0_c01278{vertical-align:0.000000pt;}
.ls0_c01278{letter-spacing:0.000000pt;}
.ws0_c01278{word-spacing:-1.022623pt;}
.ws1_c01278{word-spacing:0.000000pt;}
.fsa_c01278{font-size:30.720000pt;}
.fsb_c01278{font-size:33.280000pt;}
.fs9_c01278{font-size:35.840000pt;}
.fs5_c01278{font-size:38.400000pt;}
.fs3_c01278{font-size:40.960000pt;}
.fs4_c01278{font-size:43.520000pt;}
.fs8_c01278{font-size:46.080000pt;}
.fsc_c01278{font-size:48.640000pt;}
.fs6_c01278{font-size:51.200000pt;}
.fs7_c01278{font-size:53.760000pt;}
.fsd_c01278{font-size:56.320000pt;}
.fs1_c01278{font-size:58.880000pt;}
.fs2_c01278{font-size:61.440000pt;}
.fs0_c01278{font-size:64.000000pt;}
.y0_c01278{bottom:0.000000pt;}
.y70_c01278{bottom:52.480000pt;}
.y71_c01278{bottom:53.760000pt;}
.y6f_c01278{bottom:54.400000pt;}
.y6e_c01278{bottom:55.040000pt;}
.y6d_c01278{bottom:55.680000pt;}
.y6c_c01278{bottom:56.320000pt;}
.y6b_c01278{bottom:59.520000pt;}
.y6a_c01278{bottom:61.440000pt;}
.y66_c01278{bottom:90.240000pt;}
.y67_c01278{bottom:90.880000pt;}
.y69_c01278{bottom:92.800000pt;}
.y68_c01278{bottom:93.440000pt;}
.y65_c01278{bottom:94.720000pt;}
.y64_c01278{bottom:95.360000pt;}
.y63_c01278{bottom:97.920000pt;}
.y62_c01278{bottom:99.200000pt;}
.y61_c01278{bottom:128.000000pt;}
.y60_c01278{bottom:128.640000pt;}
.y5d_c01278{bottom:130.560000pt;}
.y5f_c01278{bottom:131.200000pt;}
.y5e_c01278{bottom:131.840000pt;}
.y5c_c01278{bottom:134.400000pt;}
.y5a_c01278{bottom:167.040000pt;}
.y58_c01278{bottom:168.320000pt;}
.y5b_c01278{bottom:168.960000pt;}
.y59_c01278{bottom:169.600000pt;}
.y57_c01278{bottom:172.160000pt;}
.y56_c01278{bottom:173.440000pt;}
.y55_c01278{bottom:174.720000pt;}
.y53_c01278{bottom:205.440000pt;}
.y51_c01278{bottom:207.360000pt;}
.y54_c01278{bottom:208.000000pt;}
.y52_c01278{bottom:208.640000pt;}
.y50_c01278{bottom:209.920000pt;}
.y4f_c01278{bottom:211.200000pt;}
.y4e_c01278{bottom:212.480000pt;}
.y4d_c01278{bottom:213.120000pt;}
.y4b_c01278{bottom:243.840000pt;}
.y49_c01278{bottom:244.480000pt;}
.y4c_c01278{bottom:245.120000pt;}
.y4a_c01278{bottom:246.400000pt;}
.y48_c01278{bottom:247.040000pt;}
.y47_c01278{bottom:247.680000pt;}
.y46_c01278{bottom:250.880000pt;}
.y45_c01278{bottom:282.240000pt;}
.y44_c01278{bottom:284.160000pt;}
.y43_c01278{bottom:284.800000pt;}
.y42_c01278{bottom:285.440000pt;}
.y41_c01278{bottom:286.080000pt;}
.y40_c01278{bottom:334.080000pt;}
.y3e_c01278{bottom:368.000000pt;}
.y3d_c01278{bottom:369.280000pt;}
.y3f_c01278{bottom:370.560000pt;}
.y3b_c01278{bottom:406.400000pt;}
.y39_c01278{bottom:408.320000pt;}
.y3c_c01278{bottom:408.960000pt;}
.y3a_c01278{bottom:409.600000pt;}
.y38_c01278{bottom:444.800000pt;}
.y35_c01278{bottom:445.440000pt;}
.y37_c01278{bottom:446.720000pt;}
.y36_c01278{bottom:447.360000pt;}
.y34_c01278{bottom:448.000000pt;}
.y33_c01278{bottom:494.080000pt;}
.y31_c01278{bottom:494.720000pt;}
.y32_c01278{bottom:495.360000pt;}
.y2f_c01278{bottom:530.560000pt;}
.y30_c01278{bottom:531.200000pt;}
.y2e_c01278{bottom:532.480000pt;}
.y2d_c01278{bottom:533.120000pt;}
.y2c_c01278{bottom:533.760000pt;}
.y29_c01278{bottom:567.680000pt;}
.y2b_c01278{bottom:568.320000pt;}
.y2a_c01278{bottom:568.960000pt;}
.y28_c01278{bottom:570.240000pt;}
.y27_c01278{bottom:570.880000pt;}
.y26_c01278{bottom:571.520000pt;}
.y25_c01278{bottom:606.080000pt;}
.y24_c01278{bottom:606.720000pt;}
.y22_c01278{bottom:608.640000pt;}
.y23_c01278{bottom:609.280000pt;}
.y20_c01278{bottom:656.000000pt;}
.y21_c01278{bottom:656.640000pt;}
.y1f_c01278{bottom:692.480000pt;}
.y1c_c01278{bottom:693.760000pt;}
.y1d_c01278{bottom:694.400000pt;}
.y1e_c01278{bottom:695.040000pt;}
.y1b_c01278{bottom:730.880000pt;}
.y17_c01278{bottom:731.520000pt;}
.y18_c01278{bottom:732.160000pt;}
.y19_c01278{bottom:732.800000pt;}
.y1a_c01278{bottom:733.440000pt;}
.y14_c01278{bottom:768.640000pt;}
.y12_c01278{bottom:769.280000pt;}
.y13_c01278{bottom:769.920000pt;}
.y15_c01278{bottom:771.200000pt;}
.y16_c01278{bottom:771.840000pt;}
.ye_c01278{bottom:807.040000pt;}
.y11_c01278{bottom:807.680000pt;}
.yd_c01278{bottom:808.960000pt;}
.y10_c01278{bottom:809.600000pt;}
.yf_c01278{bottom:810.240000pt;}
.yc_c01278{bottom:853.760000pt;}
.y7_c01278{bottom:890.240000pt;}
.y8_c01278{bottom:894.080000pt;}
.y9_c01278{bottom:895.360000pt;}
.ya_c01278{bottom:896.000000pt;}
.yb_c01278{bottom:896.640000pt;}
.y2_c01278{bottom:927.360000pt;}
.y3_c01278{bottom:930.560000pt;}
.y4_c01278{bottom:931.200000pt;}
.y6_c01278{bottom:932.480000pt;}
.y5_c01278{bottom:934.400000pt;}
.y1_c01278{bottom:971.520000pt;}
.hc_c01278{height:27.645000pt;}
.hd_c01278{height:29.948750pt;}
.hb_c01278{height:32.252500pt;}
.h7_c01278{height:34.556250pt;}
.h5_c01278{height:36.860000pt;}
.h6_c01278{height:39.163750pt;}
.ha_c01278{height:41.467500pt;}
.he_c01278{height:43.771250pt;}
.h8_c01278{height:46.075000pt;}
.h9_c01278{height:48.378750pt;}
.hf_c01278{height:50.682500pt;}
.h3_c01278{height:52.986250pt;}
.h4_c01278{height:55.290000pt;}
.h2_c01278{height:57.593750pt;}
.h1_c01278{height:1016.666667pt;}
.h0_c01278{height:1016.960000pt;}
.w1_c01278{width:682.000000pt;}
.w0_c01278{width:682.240000pt;}
.x0_c01278{left:0.000000pt;}
.x2_c01278{left:51.200000pt;}
.x31_c01278{left:52.480000pt;}
.x4e_c01278{left:53.760000pt;}
.x32_c01278{left:69.120000pt;}
.x25_c01278{left:76.800000pt;}
.x4b_c01278{left:78.080000pt;}
.x41_c01278{left:86.400000pt;}
.x4c_c01278{left:95.360000pt;}
.x16_c01278{left:103.680000pt;}
.x3_c01278{left:113.280000pt;}
.x1e_c01278{left:122.880000pt;}
.x17_c01278{left:132.480000pt;}
.x2b_c01278{left:140.800000pt;}
.x10_c01278{left:142.079467pt;}
.x3c_c01278{left:149.120000pt;}
.x26_c01278{left:150.400000pt;}
.x43_c01278{left:159.360000pt;}
.x11_c01278{left:168.960000pt;}
.x44_c01278{left:170.240000pt;}
.x2d_c01278{left:178.560000pt;}
.xa_c01278{left:179.840000pt;}
.x2c_c01278{left:187.520000pt;}
.x18_c01278{left:188.800000pt;}
.x4_c01278{left:197.760000pt;}
.x1f_c01278{left:207.360000pt;}
.x2e_c01278{left:216.960000pt;}
.x19_c01278{left:218.240000pt;}
.x45_c01278{left:226.560000pt;}
.x5_c01278{left:236.160000pt;}
.x20_c01278{left:237.440000pt;}
.x33_c01278{left:245.760000pt;}
.x2f_c01278{left:247.040000pt;}
.x3d_c01278{left:255.360000pt;}
.x6_c01278{left:265.600000pt;}
.x37_c01278{left:274.560000pt;}
.x1a_c01278{left:275.840000pt;}
.x30_c01278{left:293.760000pt;}
.x7_c01278{left:303.360000pt;}
.xb_c01278{left:313.600000pt;}
.x27_c01278{left:323.200000pt;}
.x51_c01278{left:331.520000pt;}
.x42_c01278{left:332.800000pt;}
.x3e_c01278{left:341.760000pt;}
.x21_c01278{left:343.680000pt;}
.xc_c01278{left:351.360000pt;}
.x38_c01278{left:360.960000pt;}
.x8_c01278{left:362.240000pt;}
.x47_c01278{left:370.560000pt;}
.x12_c01278{left:371.840000pt;}
.x22_c01278{left:381.440000pt;}
.x28_c01278{left:391.040000pt;}
.x39_c01278{left:399.360000pt;}
.x48_c01278{left:408.960000pt;}
.x4d_c01278{left:418.560000pt;}
.x34_c01278{left:420.480000pt;}
.x4f_c01278{left:428.800000pt;}
.x1b_c01278{left:430.080000pt;}
.x13_c01278{left:438.400000pt;}
.x1c_c01278{left:448.640000pt;}
.x23_c01278{left:458.880000pt;}
.x3f_c01278{left:467.200000pt;}
.x3a_c01278{left:476.800000pt;}
.x9_c01278{left:478.080000pt;}
.xd_c01278{left:487.680000pt;}
.x24_c01278{left:497.280000pt;}
.x46_c01278{left:506.240000pt;}
.x49_c01278{left:507.520000pt;}
.xe_c01278{left:516.480000pt;}
.x29_c01278{left:526.080000pt;}
.x50_c01278{left:535.040000pt;}
.x35_c01278{left:536.320000pt;}
.xf_c01278{left:545.280000pt;}
.x14_c01278{left:554.880000pt;}
.x1d_c01278{left:564.480000pt;}
.x4a_c01278{left:572.800000pt;}
.x40_c01278{left:574.080000pt;}
.x36_c01278{left:584.320000pt;}
.x15_c01278{left:592.000000pt;}
.x1_c01278{left:593.280000pt;}
.x2a_c01278{left:594.560000pt;}
.x3b_c01278{left:604.800000pt;}
}





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

.ir_c01279:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01279{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01279;src:url('chunks/assets/font_53695b59afa68411a0e7ad8f.woff2')format("woff");}.ff1_c01279{font-family:ff1_c01279;line-height:1.109863;font-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_c01279{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);}
.m29_c01279{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m53_c01279{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m58_c01279{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m10_c01279{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01279{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m38_c01279{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m44_c01279{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m56_c01279{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m50_c01279{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m51_c01279{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m24_c01279{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.md_c01279{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01279{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_c01279{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);}
.m3f_c01279{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);}
.m4e_c01279{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m57_c01279{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);}
.m4c_c01279{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01279{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m35_c01279{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m21_c01279{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01279{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);}
.m47_c01279{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m17_c01279{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m42_c01279{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);}
.m2e_c01279{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m1_c01279{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);}
.m4f_c01279{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m6_c01279{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);}
.m0_c01279{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01279{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);}
.m12_c01279{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);}
.m3e_c01279{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);}
.m25_c01279{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m9_c01279{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m59_c01279{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);}
.m2f_c01279{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m5_c01279{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m33_c01279{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);}
.m31_c01279{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m5c_c01279{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m16_c01279{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.me_c01279{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m20_c01279{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);}
.m54_c01279{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m45_c01279{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01279{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);}
.m49_c01279{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m18_c01279{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);}
.m22_c01279{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m13_c01279{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m37_c01279{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m7_c01279{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);}
.m15_c01279{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01279{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01279{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m55_c01279{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);}
.mf_c01279{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01279{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.mb_c01279{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m23_c01279{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m8_c01279{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01279{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);}
.m14_c01279{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m27_c01279{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m3_c01279{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m5a_c01279{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);}
.m46_c01279{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m28_c01279{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m41_c01279{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m19_c01279{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.mc_c01279{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m48_c01279{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01279{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);}
.m4a_c01279{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m11_c01279{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);}
.m32_c01279{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m4_c01279{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m43_c01279{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m36_c01279{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m30_c01279{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m40_c01279{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m52_c01279{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);}
.m1e_c01279{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m34_c01279{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01279{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);}
.ma_c01279{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m26_c01279{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01279{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);}
.m39_c01279{transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);}
.m5b_c01279{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.m5d_c01279{transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01279{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.v1_c01279{vertical-align:-11.520000px;}
.v0_c01279{vertical-align:0.000000px;}
.ls0_c01279{letter-spacing:0.000000px;}
.sc__c01279{text-shadow:none;}
.sc0_c01279{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01279{-webkit-text-stroke:0px transparent;}
.sc0_c01279{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01279{word-spacing:0.000000px;}
.ws0_c01279{word-spacing:13.399440px;}
.fc0_c01279{color:transparent;}
.fsc_c01279{font-size:31.680000px;}
.fs2_c01279{font-size:34.560000px;}
.fs8_c01279{font-size:43.200000px;}
.fs1_c01279{font-size:46.080000px;}
.fs5_c01279{font-size:48.960000px;}
.fs4_c01279{font-size:51.840000px;}
.fs9_c01279{font-size:54.720000px;}
.fs7_c01279{font-size:57.600000px;}
.fs3_c01279{font-size:60.480000px;}
.fsb_c01279{font-size:63.360000px;}
.fsa_c01279{font-size:66.240000px;}
.fs6_c01279{font-size:69.120000px;}
.fs0_c01279{font-size:72.000000px;}
.fsd_c01279{font-size:74.880000px;}
.y0_c01279{bottom:0.000000px;}
.y76_c01279{bottom:31.680000px;}
.y74_c01279{bottom:33.840000px;}
.y77_c01279{bottom:34.560000px;}
.y73_c01279{bottom:35.280000px;}
.y75_c01279{bottom:36.000000px;}
.y71_c01279{bottom:38.880000px;}
.y72_c01279{bottom:39.600000px;}
.y70_c01279{bottom:44.640000px;}
.y6f_c01279{bottom:73.440000px;}
.y6e_c01279{bottom:74.880000px;}
.y6d_c01279{bottom:77.760000px;}
.y6c_c01279{bottom:79.920000px;}
.y6b_c01279{bottom:81.360000px;}
.y6a_c01279{bottom:135.360000px;}
.y69_c01279{bottom:139.680000px;}
.y67_c01279{bottom:172.080000px;}
.y68_c01279{bottom:174.240000px;}
.y66_c01279{bottom:174.960000px;}
.y65_c01279{bottom:176.400000px;}
.y64_c01279{bottom:177.840000px;}
.y63_c01279{bottom:179.280000px;}
.y62_c01279{bottom:213.840000px;}
.y5f_c01279{bottom:215.280000px;}
.y60_c01279{bottom:217.440000px;}
.y61_c01279{bottom:218.160000px;}
.y5e_c01279{bottom:218.880000px;}
.y5c_c01279{bottom:219.600000px;}
.y5d_c01279{bottom:220.320000px;}
.y5b_c01279{bottom:222.480000px;}
.y59_c01279{bottom:257.040000px;}
.y5a_c01279{bottom:257.760000px;}
.y58_c01279{bottom:260.640000px;}
.y57_c01279{bottom:261.360000px;}
.y56_c01279{bottom:262.800000px;}
.y55_c01279{bottom:263.520000px;}
.y53_c01279{bottom:312.480000px;}
.y54_c01279{bottom:313.200000px;}
.y51_c01279{bottom:313.920000px;}
.y52_c01279{bottom:316.080000px;}
.y50_c01279{bottom:317.520000px;}
.y4d_c01279{bottom:354.240000px;}
.y4b_c01279{bottom:355.680000px;}
.y4f_c01279{bottom:356.400000px;}
.y4e_c01279{bottom:357.120000px;}
.y4c_c01279{bottom:357.840000px;}
.y4a_c01279{bottom:361.440000px;}
.y49_c01279{bottom:399.600000px;}
.y48_c01279{bottom:400.320000px;}
.y47_c01279{bottom:401.760000px;}
.y46_c01279{bottom:451.440000px;}
.y45_c01279{bottom:456.480000px;}
.y43_c01279{bottom:493.200000px;}
.y40_c01279{bottom:495.360000px;}
.y44_c01279{bottom:496.080000px;}
.y42_c01279{bottom:496.800000px;}
.y41_c01279{bottom:497.520000px;}
.y3f_c01279{bottom:498.240000px;}
.y3e_c01279{bottom:498.960000px;}
.y3a_c01279{bottom:537.120000px;}
.y3b_c01279{bottom:537.840000px;}
.y3c_c01279{bottom:539.280000px;}
.y3d_c01279{bottom:540.000000px;}
.y39_c01279{bottom:541.440000px;}
.y37_c01279{bottom:580.320000px;}
.y38_c01279{bottom:583.200000px;}
.y34_c01279{bottom:623.520000px;}
.y35_c01279{bottom:625.680000px;}
.y36_c01279{bottom:626.400000px;}
.y33_c01279{bottom:666.000000px;}
.y32_c01279{bottom:668.880000px;}
.y30_c01279{bottom:708.480000px;}
.y2e_c01279{bottom:709.200000px;}
.y31_c01279{bottom:711.360000px;}
.y2f_c01279{bottom:712.080000px;}
.y2d_c01279{bottom:751.680000px;}
.y2b_c01279{bottom:752.400000px;}
.y28_c01279{bottom:753.120000px;}
.y29_c01279{bottom:753.840000px;}
.y2a_c01279{bottom:754.560000px;}
.y2c_c01279{bottom:755.280000px;}
.y24_c01279{bottom:793.440000px;}
.y25_c01279{bottom:794.160000px;}
.y26_c01279{bottom:794.880000px;}
.y27_c01279{bottom:797.760000px;}
.y1f_c01279{bottom:835.200000px;}
.y23_c01279{bottom:836.640000px;}
.y21_c01279{bottom:837.360000px;}
.y20_c01279{bottom:838.800000px;}
.y22_c01279{bottom:840.240000px;}
.y1b_c01279{bottom:879.120000px;}
.y1e_c01279{bottom:879.840000px;}
.y1a_c01279{bottom:880.560000px;}
.y1c_c01279{bottom:882.720000px;}
.y1d_c01279{bottom:883.440000px;}
.y15_c01279{bottom:923.040000px;}
.y16_c01279{bottom:923.760000px;}
.y17_c01279{bottom:924.480000px;}
.y18_c01279{bottom:925.200000px;}
.y19_c01279{bottom:925.920000px;}
.y10_c01279{bottom:965.520000px;}
.y11_c01279{bottom:966.240000px;}
.y12_c01279{bottom:967.680000px;}
.y13_c01279{bottom:968.400000px;}
.y14_c01279{bottom:969.120000px;}
.ya_c01279{bottom:1005.840000px;}
.y9_c01279{bottom:1007.280000px;}
.yc_c01279{bottom:1008.000000px;}
.yd_c01279{bottom:1008.720000px;}
.yb_c01279{bottom:1009.440000px;}
.yf_c01279{bottom:1010.880000px;}
.ye_c01279{bottom:1011.600000px;}
.y2_c01279{bottom:1046.880000px;}
.y3_c01279{bottom:1048.320000px;}
.y6_c01279{bottom:1051.920000px;}
.y4_c01279{bottom:1053.360000px;}
.y8_c01279{bottom:1054.080000px;}
.y5_c01279{bottom:1054.800000px;}
.y7_c01279{bottom:1055.520000px;}
.y1_c01279{bottom:1104.480000px;}
.he_c01279{height:28.508906px;}
.h4_c01279{height:31.100625px;}
.ha_c01279{height:38.875781px;}
.h3_c01279{height:41.467500px;}
.h7_c01279{height:44.059219px;}
.h6_c01279{height:46.650937px;}
.hb_c01279{height:49.242656px;}
.h9_c01279{height:51.834375px;}
.h5_c01279{height:54.426094px;}
.hd_c01279{height:57.017812px;}
.hc_c01279{height:59.609531px;}
.h8_c01279{height:62.201250px;}
.h2_c01279{height:64.792969px;}
.hf_c01279{height:67.384687px;}
.h0_c01279{height:1152.720000px;}
.h1_c01279{height:1152.750000px;}
.w0_c01279{width:763.200000px;}
.w1_c01279{width:763.500000px;}
.x0_c01279{left:0.000000px;}
.x2_c01279{left:53.280000px;}
.x3f_c01279{left:55.440000px;}
.x44_c01279{left:56.880000px;}
.x3_c01279{left:72.000000px;}
.x16_c01279{left:80.640000px;}
.xd_c01279{left:82.080000px;}
.x4a_c01279{left:84.240000px;}
.x26_c01279{left:92.880000px;}
.x1b_c01279{left:113.040000px;}
.xe_c01279{left:123.120000px;}
.x2d_c01279{left:133.200000px;}
.x46_c01279{left:143.280000px;}
.xf_c01279{left:154.080000px;}
.x47_c01279{left:155.520000px;}
.x1c_c01279{left:164.160000px;}
.x38_c01279{left:165.600000px;}
.x4_c01279{left:174.960000px;}
.x17_c01279{left:186.480000px;}
.x35_c01279{left:196.560000px;}
.x1d_c01279{left:207.360000px;}
.x29_c01279{left:218.160000px;}
.x48_c01279{left:219.600000px;}
.x42_c01279{left:228.960000px;}
.x5_c01279{left:230.400000px;}
.x1e_c01279{left:239.760000px;}
.x10_c01279{left:250.560000px;}
.x6_c01279{left:261.360000px;}
.x31_c01279{left:272.160000px;}
.x43_c01279{left:283.680000px;}
.x7_c01279{left:293.760000px;}
.x1f_c01279{left:304.560000px;}
.x36_c01279{left:306.000000px;}
.x32_c01279{left:315.360000px;}
.x39_c01279{left:326.160000px;}
.x2a_c01279{left:336.960000px;}
.x4b_c01279{left:338.400000px;}
.x20_c01279{left:359.280000px;}
.x3b_c01279{left:370.080000px;}
.x2e_c01279{left:380.160000px;}
.x8_c01279{left:382.320000px;}
.x11_c01279{left:391.680000px;}
.x2f_c01279{left:401.760000px;}
.x9_c01279{left:403.200000px;}
.x3c_c01279{left:412.560000px;}
.x2b_c01279{left:423.360000px;}
.x23_c01279{left:424.800000px;}
.x40_c01279{left:434.880000px;}
.x12_c01279{left:436.320000px;}
.x3a_c01279{left:445.680000px;}
.x30_c01279{left:447.120000px;}
.x2c_c01279{left:457.200000px;}
.x21_c01279{left:466.560000px;}
.x41_c01279{left:468.720000px;}
.xa_c01279{left:478.800000px;}
.x33_c01279{left:488.160000px;}
.x4c_c01279{left:490.320000px;}
.x22_c01279{left:500.400000px;}
.x27_c01279{left:511.200000px;}
.x45_c01279{left:521.280000px;}
.x3d_c01279{left:522.720000px;}
.x13_c01279{left:533.520000px;}
.x18_c01279{left:544.320000px;}
.x19_c01279{left:564.480000px;}
.x14_c01279{left:565.920000px;}
.xb_c01279{left:576.720000px;}
.x24_c01279{left:587.520000px;}
.xc_c01279{left:598.320000px;}
.x37_c01279{left:609.120000px;}
.x49_c01279{left:611.280000px;}
.x25_c01279{left:619.920000px;}
.x1a_c01279{left:630.720000px;}
.x28_c01279{left:641.520000px;}
.x3e_c01279{left:652.320000px;}
.x1_c01279{left:660.960000px;}
.x15_c01279{left:663.120000px;}
.x34_c01279{left:673.920000px;}
@media print{
.v1_c01279{vertical-align:-10.240000pt;}
.v0_c01279{vertical-align:0.000000pt;}
.ls0_c01279{letter-spacing:0.000000pt;}
.ws1_c01279{word-spacing:0.000000pt;}
.ws0_c01279{word-spacing:11.910613pt;}
.fsc_c01279{font-size:28.160000pt;}
.fs2_c01279{font-size:30.720000pt;}
.fs8_c01279{font-size:38.400000pt;}
.fs1_c01279{font-size:40.960000pt;}
.fs5_c01279{font-size:43.520000pt;}
.fs4_c01279{font-size:46.080000pt;}
.fs9_c01279{font-size:48.640000pt;}
.fs7_c01279{font-size:51.200000pt;}
.fs3_c01279{font-size:53.760000pt;}
.fsb_c01279{font-size:56.320000pt;}
.fsa_c01279{font-size:58.880000pt;}
.fs6_c01279{font-size:61.440000pt;}
.fs0_c01279{font-size:64.000000pt;}
.fsd_c01279{font-size:66.560000pt;}
.y0_c01279{bottom:0.000000pt;}
.y76_c01279{bottom:28.160000pt;}
.y74_c01279{bottom:30.080000pt;}
.y77_c01279{bottom:30.720000pt;}
.y73_c01279{bottom:31.360000pt;}
.y75_c01279{bottom:32.000000pt;}
.y71_c01279{bottom:34.560000pt;}
.y72_c01279{bottom:35.200000pt;}
.y70_c01279{bottom:39.680000pt;}
.y6f_c01279{bottom:65.280000pt;}
.y6e_c01279{bottom:66.560000pt;}
.y6d_c01279{bottom:69.120000pt;}
.y6c_c01279{bottom:71.040000pt;}
.y6b_c01279{bottom:72.320000pt;}
.y6a_c01279{bottom:120.320000pt;}
.y69_c01279{bottom:124.160000pt;}
.y67_c01279{bottom:152.960000pt;}
.y68_c01279{bottom:154.880000pt;}
.y66_c01279{bottom:155.520000pt;}
.y65_c01279{bottom:156.800000pt;}
.y64_c01279{bottom:158.080000pt;}
.y63_c01279{bottom:159.360000pt;}
.y62_c01279{bottom:190.080000pt;}
.y5f_c01279{bottom:191.360000pt;}
.y60_c01279{bottom:193.280000pt;}
.y61_c01279{bottom:193.920000pt;}
.y5e_c01279{bottom:194.560000pt;}
.y5c_c01279{bottom:195.200000pt;}
.y5d_c01279{bottom:195.840000pt;}
.y5b_c01279{bottom:197.760000pt;}
.y59_c01279{bottom:228.480000pt;}
.y5a_c01279{bottom:229.120000pt;}
.y58_c01279{bottom:231.680000pt;}
.y57_c01279{bottom:232.320000pt;}
.y56_c01279{bottom:233.600000pt;}
.y55_c01279{bottom:234.240000pt;}
.y53_c01279{bottom:277.760000pt;}
.y54_c01279{bottom:278.400000pt;}
.y51_c01279{bottom:279.040000pt;}
.y52_c01279{bottom:280.960000pt;}
.y50_c01279{bottom:282.240000pt;}
.y4d_c01279{bottom:314.880000pt;}
.y4b_c01279{bottom:316.160000pt;}
.y4f_c01279{bottom:316.800000pt;}
.y4e_c01279{bottom:317.440000pt;}
.y4c_c01279{bottom:318.080000pt;}
.y4a_c01279{bottom:321.280000pt;}
.y49_c01279{bottom:355.200000pt;}
.y48_c01279{bottom:355.840000pt;}
.y47_c01279{bottom:357.120000pt;}
.y46_c01279{bottom:401.280000pt;}
.y45_c01279{bottom:405.760000pt;}
.y43_c01279{bottom:438.400000pt;}
.y40_c01279{bottom:440.320000pt;}
.y44_c01279{bottom:440.960000pt;}
.y42_c01279{bottom:441.600000pt;}
.y41_c01279{bottom:442.240000pt;}
.y3f_c01279{bottom:442.880000pt;}
.y3e_c01279{bottom:443.520000pt;}
.y3a_c01279{bottom:477.440000pt;}
.y3b_c01279{bottom:478.080000pt;}
.y3c_c01279{bottom:479.360000pt;}
.y3d_c01279{bottom:480.000000pt;}
.y39_c01279{bottom:481.280000pt;}
.y37_c01279{bottom:515.840000pt;}
.y38_c01279{bottom:518.400000pt;}
.y34_c01279{bottom:554.240000pt;}
.y35_c01279{bottom:556.160000pt;}
.y36_c01279{bottom:556.800000pt;}
.y33_c01279{bottom:592.000000pt;}
.y32_c01279{bottom:594.560000pt;}
.y30_c01279{bottom:629.760000pt;}
.y2e_c01279{bottom:630.400000pt;}
.y31_c01279{bottom:632.320000pt;}
.y2f_c01279{bottom:632.960000pt;}
.y2d_c01279{bottom:668.160000pt;}
.y2b_c01279{bottom:668.800000pt;}
.y28_c01279{bottom:669.440000pt;}
.y29_c01279{bottom:670.080000pt;}
.y2a_c01279{bottom:670.720000pt;}
.y2c_c01279{bottom:671.360000pt;}
.y24_c01279{bottom:705.280000pt;}
.y25_c01279{bottom:705.920000pt;}
.y26_c01279{bottom:706.560000pt;}
.y27_c01279{bottom:709.120000pt;}
.y1f_c01279{bottom:742.400000pt;}
.y23_c01279{bottom:743.680000pt;}
.y21_c01279{bottom:744.320000pt;}
.y20_c01279{bottom:745.600000pt;}
.y22_c01279{bottom:746.880000pt;}
.y1b_c01279{bottom:781.440000pt;}
.y1e_c01279{bottom:782.080000pt;}
.y1a_c01279{bottom:782.720000pt;}
.y1c_c01279{bottom:784.640000pt;}
.y1d_c01279{bottom:785.280000pt;}
.y15_c01279{bottom:820.480000pt;}
.y16_c01279{bottom:821.120000pt;}
.y17_c01279{bottom:821.760000pt;}
.y18_c01279{bottom:822.400000pt;}
.y19_c01279{bottom:823.040000pt;}
.y10_c01279{bottom:858.240000pt;}
.y11_c01279{bottom:858.880000pt;}
.y12_c01279{bottom:860.160000pt;}
.y13_c01279{bottom:860.800000pt;}
.y14_c01279{bottom:861.440000pt;}
.ya_c01279{bottom:894.080000pt;}
.y9_c01279{bottom:895.360000pt;}
.yc_c01279{bottom:896.000000pt;}
.yd_c01279{bottom:896.640000pt;}
.yb_c01279{bottom:897.280000pt;}
.yf_c01279{bottom:898.560000pt;}
.ye_c01279{bottom:899.200000pt;}
.y2_c01279{bottom:930.560000pt;}
.y3_c01279{bottom:931.840000pt;}
.y6_c01279{bottom:935.040000pt;}
.y4_c01279{bottom:936.320000pt;}
.y8_c01279{bottom:936.960000pt;}
.y5_c01279{bottom:937.600000pt;}
.y7_c01279{bottom:938.240000pt;}
.y1_c01279{bottom:981.760000pt;}
.he_c01279{height:25.341250pt;}
.h4_c01279{height:27.645000pt;}
.ha_c01279{height:34.556250pt;}
.h3_c01279{height:36.860000pt;}
.h7_c01279{height:39.163750pt;}
.h6_c01279{height:41.467500pt;}
.hb_c01279{height:43.771250pt;}
.h9_c01279{height:46.075000pt;}
.h5_c01279{height:48.378750pt;}
.hd_c01279{height:50.682500pt;}
.hc_c01279{height:52.986250pt;}
.h8_c01279{height:55.290000pt;}
.h2_c01279{height:57.593750pt;}
.hf_c01279{height:59.897500pt;}
.h0_c01279{height:1024.640000pt;}
.h1_c01279{height:1024.666667pt;}
.w0_c01279{width:678.400000pt;}
.w1_c01279{width:678.666667pt;}
.x0_c01279{left:0.000000pt;}
.x2_c01279{left:47.360000pt;}
.x3f_c01279{left:49.280000pt;}
.x44_c01279{left:50.560000pt;}
.x3_c01279{left:64.000000pt;}
.x16_c01279{left:71.680000pt;}
.xd_c01279{left:72.960000pt;}
.x4a_c01279{left:74.880000pt;}
.x26_c01279{left:82.560000pt;}
.x1b_c01279{left:100.480000pt;}
.xe_c01279{left:109.440000pt;}
.x2d_c01279{left:118.400000pt;}
.x46_c01279{left:127.360000pt;}
.xf_c01279{left:136.960000pt;}
.x47_c01279{left:138.240000pt;}
.x1c_c01279{left:145.920000pt;}
.x38_c01279{left:147.200000pt;}
.x4_c01279{left:155.520000pt;}
.x17_c01279{left:165.760000pt;}
.x35_c01279{left:174.720000pt;}
.x1d_c01279{left:184.320000pt;}
.x29_c01279{left:193.920000pt;}
.x48_c01279{left:195.200000pt;}
.x42_c01279{left:203.520000pt;}
.x5_c01279{left:204.800000pt;}
.x1e_c01279{left:213.120000pt;}
.x10_c01279{left:222.720000pt;}
.x6_c01279{left:232.320000pt;}
.x31_c01279{left:241.920000pt;}
.x43_c01279{left:252.160000pt;}
.x7_c01279{left:261.120000pt;}
.x1f_c01279{left:270.720000pt;}
.x36_c01279{left:272.000000pt;}
.x32_c01279{left:280.320000pt;}
.x39_c01279{left:289.920000pt;}
.x2a_c01279{left:299.520000pt;}
.x4b_c01279{left:300.800000pt;}
.x20_c01279{left:319.360000pt;}
.x3b_c01279{left:328.960000pt;}
.x2e_c01279{left:337.920000pt;}
.x8_c01279{left:339.840000pt;}
.x11_c01279{left:348.160000pt;}
.x2f_c01279{left:357.120000pt;}
.x9_c01279{left:358.400000pt;}
.x3c_c01279{left:366.720000pt;}
.x2b_c01279{left:376.320000pt;}
.x23_c01279{left:377.600000pt;}
.x40_c01279{left:386.560000pt;}
.x12_c01279{left:387.840000pt;}
.x3a_c01279{left:396.160000pt;}
.x30_c01279{left:397.440000pt;}
.x2c_c01279{left:406.400000pt;}
.x21_c01279{left:414.720000pt;}
.x41_c01279{left:416.640000pt;}
.xa_c01279{left:425.600000pt;}
.x33_c01279{left:433.920000pt;}
.x4c_c01279{left:435.840000pt;}
.x22_c01279{left:444.800000pt;}
.x27_c01279{left:454.400000pt;}
.x45_c01279{left:463.360000pt;}
.x3d_c01279{left:464.640000pt;}
.x13_c01279{left:474.240000pt;}
.x18_c01279{left:483.840000pt;}
.x19_c01279{left:501.760000pt;}
.x14_c01279{left:503.040000pt;}
.xb_c01279{left:512.640000pt;}
.x24_c01279{left:522.240000pt;}
.xc_c01279{left:531.840000pt;}
.x37_c01279{left:541.440000pt;}
.x49_c01279{left:543.360000pt;}
.x25_c01279{left:551.040000pt;}
.x1a_c01279{left:560.640000pt;}
.x28_c01279{left:570.240000pt;}
.x3e_c01279{left:579.840000pt;}
.x1_c01279{left:587.520000pt;}
.x15_c01279{left:589.440000pt;}
.x34_c01279{left:599.040000pt;}
}





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

.ir_c01280:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01280{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01280;src:url('chunks/assets/font_84528ba58d6ee1b60c7be8bd.woff2')format("woff");}.ff1_c01280{font-family:ff1_c01280;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m53_c01280{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);}
.m4b_c01280{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m50_c01280{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m55_c01280{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01280{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m54_c01280{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m12_c01280{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1_c01280{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);}
.m4f_c01280{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m22_c01280{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);}
.m45_c01280{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m2_c01280{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m0_c01280{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);}
.m3d_c01280{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);}
.m36_c01280{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.ma_c01280{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01280{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01280{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.me_c01280{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);}
.m48_c01280{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m8_c01280{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.md_c01280{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);}
.m23_c01280{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);}
.m33_c01280{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m25_c01280{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);}
.m52_c01280{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m35_c01280{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);}
.m2e_c01280{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);}
.m49_c01280{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m40_c01280{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m32_c01280{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m21_c01280{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m7_c01280{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m27_c01280{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);}
.m29_c01280{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m18_c01280{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);}
.mf_c01280{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);}
.m43_c01280{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m15_c01280{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01280{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01280{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01280{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);}
.m19_c01280{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01280{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01280{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m14_c01280{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m46_c01280{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);}
.m38_c01280{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01280{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01280{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01280{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);}
.m4a_c01280{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m13_c01280{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m5_c01280{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m47_c01280{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m30_c01280{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);}
.m4_c01280{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);}
.m3b_c01280{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.mc_c01280{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m3_c01280{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);}
.m44_c01280{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m41_c01280{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m6_c01280{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);}
.m42_c01280{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01280{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m28_c01280{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m39_c01280{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m11_c01280{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m37_c01280{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m24_c01280{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);}
.m34_c01280{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);}
.m26_c01280{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m10_c01280{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m51_c01280{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01280{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m16_c01280{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m20_c01280{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01280{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);}
.m4c_c01280{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m9_c01280{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);}
.mb_c01280{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m17_c01280{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01280{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01280{transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);}
.m31_c01280{transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01280{transform:matrix(0.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680000,0.000000,0.000000,0.250000,0,0);}
.v2_c01280{vertical-align:-2.880000px;}
.v0_c01280{vertical-align:0.000000px;}
.v1_c01280{vertical-align:5.760000px;}
.ls0_c01280{letter-spacing:0.000000px;}
.sc__c01280{text-shadow:none;}
.sc0_c01280{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01280{-webkit-text-stroke:0px transparent;}
.sc0_c01280{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01280{word-spacing:0.000000px;}
.ws1_c01280{word-spacing:2.665920px;}
.ws0_c01280{word-spacing:2.814720px;}
.fc0_c01280{color:transparent;}
.fsd_c01280{font-size:31.680000px;}
.fs3_c01280{font-size:34.560000px;}
.fsb_c01280{font-size:37.440000px;}
.fs5_c01280{font-size:43.200000px;}
.fs6_c01280{font-size:46.080000px;}
.fs8_c01280{font-size:48.960000px;}
.fs4_c01280{font-size:51.840000px;}
.fse_c01280{font-size:54.720000px;}
.fs7_c01280{font-size:57.600000px;}
.fs2_c01280{font-size:60.480000px;}
.fsa_c01280{font-size:63.360000px;}
.fs1_c01280{font-size:66.240000px;}
.fs9_c01280{font-size:69.120000px;}
.fsc_c01280{font-size:72.000000px;}
.fs0_c01280{font-size:74.880000px;}
.y0_c01280{bottom:0.000000px;}
.y78_c01280{bottom:64.080000px;}
.y7b_c01280{bottom:66.240000px;}
.y79_c01280{bottom:66.960000px;}
.y7a_c01280{bottom:67.680000px;}
.y77_c01280{bottom:68.400000px;}
.y76_c01280{bottom:69.120000px;}
.y75_c01280{bottom:72.720000px;}
.y73_c01280{bottom:107.280000px;}
.y70_c01280{bottom:108.000000px;}
.y74_c01280{bottom:109.440000px;}
.y72_c01280{bottom:110.160000px;}
.y71_c01280{bottom:110.880000px;}
.y6f_c01280{bottom:113.760000px;}
.y6e_c01280{bottom:114.480000px;}
.y6d_c01280{bottom:119.520000px;}
.y6a_c01280{bottom:149.760000px;}
.y6b_c01280{bottom:150.480000px;}
.y69_c01280{bottom:151.200000px;}
.y6c_c01280{bottom:153.360000px;}
.y68_c01280{bottom:154.800000px;}
.y67_c01280{bottom:155.520000px;}
.y66_c01280{bottom:156.240000px;}
.y65_c01280{bottom:158.400000px;}
.y64_c01280{bottom:159.840000px;}
.y62_c01280{bottom:193.680000px;}
.y60_c01280{bottom:195.120000px;}
.y63_c01280{bottom:195.840000px;}
.y5e_c01280{bottom:196.560000px;}
.y61_c01280{bottom:197.280000px;}
.y5f_c01280{bottom:198.720000px;}
.y5c_c01280{bottom:200.160000px;}
.y5d_c01280{bottom:201.600000px;}
.y5a_c01280{bottom:236.880000px;}
.y5b_c01280{bottom:239.040000px;}
.y59_c01280{bottom:239.760000px;}
.y58_c01280{bottom:240.480000px;}
.y57_c01280{bottom:241.200000px;}
.y56_c01280{bottom:242.640000px;}
.y55_c01280{bottom:290.880000px;}
.y54_c01280{bottom:293.040000px;}
.y53_c01280{bottom:293.760000px;}
.y52_c01280{bottom:295.200000px;}
.y50_c01280{bottom:296.640000px;}
.y51_c01280{bottom:297.360000px;}
.y4f_c01280{bottom:333.360000px;}
.y4e_c01280{bottom:334.080000px;}
.y4b_c01280{bottom:335.520000px;}
.y4d_c01280{bottom:336.960000px;}
.y4c_c01280{bottom:337.680000px;}
.y4a_c01280{bottom:339.120000px;}
.y49_c01280{bottom:339.840000px;}
.y48_c01280{bottom:340.560000px;}
.y47_c01280{bottom:342.000000px;}
.y46_c01280{bottom:376.560000px;}
.y42_c01280{bottom:378.720000px;}
.y45_c01280{bottom:379.440000px;}
.y43_c01280{bottom:380.160000px;}
.y44_c01280{bottom:380.880000px;}
.y41_c01280{bottom:381.600000px;}
.y40_c01280{bottom:382.320000px;}
.y3f_c01280{bottom:432.000000px;}
.y3e_c01280{bottom:436.320000px;}
.y3d_c01280{bottom:474.480000px;}
.y39_c01280{bottom:475.920000px;}
.y3a_c01280{bottom:476.640000px;}
.y3c_c01280{bottom:477.360000px;}
.y3b_c01280{bottom:478.080000px;}
.y38_c01280{bottom:479.520000px;}
.y37_c01280{bottom:480.240000px;}
.y34_c01280{bottom:517.680000px;}
.y33_c01280{bottom:518.400000px;}
.y32_c01280{bottom:519.120000px;}
.y36_c01280{bottom:519.840000px;}
.y35_c01280{bottom:520.560000px;}
.y2e_c01280{bottom:561.600000px;}
.y31_c01280{bottom:562.320000px;}
.y2f_c01280{bottom:563.040000px;}
.y30_c01280{bottom:563.760000px;}
.y2d_c01280{bottom:565.200000px;}
.y2c_c01280{bottom:604.080000px;}
.y2b_c01280{bottom:606.240000px;}
.y2a_c01280{bottom:606.960000px;}
.y29_c01280{bottom:658.080000px;}
.y28_c01280{bottom:660.240000px;}
.y24_c01280{bottom:699.120000px;}
.y27_c01280{bottom:700.560000px;}
.y26_c01280{bottom:702.000000px;}
.y25_c01280{bottom:702.720000px;}
.y21_c01280{bottom:742.320000px;}
.y22_c01280{bottom:743.040000px;}
.y1f_c01280{bottom:744.480000px;}
.y23_c01280{bottom:745.200000px;}
.y20_c01280{bottom:745.920000px;}
.y1c_c01280{bottom:784.800000px;}
.y1d_c01280{bottom:788.400000px;}
.y1e_c01280{bottom:789.120000px;}
.y1a_c01280{bottom:828.720000px;}
.y19_c01280{bottom:831.600000px;}
.y1b_c01280{bottom:832.320000px;}
.y18_c01280{bottom:882.720000px;}
.y11_c01280{bottom:925.200000px;}
.y16_c01280{bottom:925.920000px;}
.y12_c01280{bottom:926.640000px;}
.y13_c01280{bottom:927.360000px;}
.y14_c01280{bottom:928.080000px;}
.y17_c01280{bottom:928.800000px;}
.y15_c01280{bottom:929.520000px;}
.yd_c01280{bottom:968.400000px;}
.ye_c01280{bottom:969.120000px;}
.yf_c01280{bottom:971.280000px;}
.y10_c01280{bottom:972.000000px;}
.y7_c01280{bottom:1010.880000px;}
.yb_c01280{bottom:1011.600000px;}
.ya_c01280{bottom:1012.320000px;}
.y8_c01280{bottom:1013.760000px;}
.y9_c01280{bottom:1014.480000px;}
.yc_c01280{bottom:1015.200000px;}
.y2_c01280{bottom:1051.920000px;}
.y3_c01280{bottom:1054.800000px;}
.y6_c01280{bottom:1055.520000px;}
.y5_c01280{bottom:1057.680000px;}
.y4_c01280{bottom:1058.400000px;}
.y1_c01280{bottom:1093.680000px;}
.hf_c01280{height:28.508906px;}
.h5_c01280{height:31.100625px;}
.hd_c01280{height:33.692344px;}
.h7_c01280{height:38.875781px;}
.h8_c01280{height:41.467500px;}
.ha_c01280{height:44.059219px;}
.h6_c01280{height:46.650937px;}
.h11_c01280{height:49.242656px;}
.h10_c01280{height:49.819219px;}
.h12_c01280{height:51.546094px;}
.h9_c01280{height:51.834375px;}
.h4_c01280{height:54.426094px;}
.hc_c01280{height:57.017812px;}
.h3_c01280{height:59.609531px;}
.hb_c01280{height:62.201250px;}
.he_c01280{height:64.792969px;}
.h2_c01280{height:67.384687px;}
.h0_c01280{height:1154.880000px;}
.h1_c01280{height:1155.000000px;}
.w1_c01280{width:767.250000px;}
.w0_c01280{width:767.520000px;}
.x0_c01280{left:0.000000px;}
.x2_c01280{left:56.160000px;}
.xb_c01280{left:57.600000px;}
.x13_c01280{left:85.680000px;}
.x1a_c01280{left:95.760000px;}
.x36_c01280{left:105.120000px;}
.x14_c01280{left:116.640000px;}
.x1b_c01280{left:125.280000px;}
.x30_c01280{left:127.440000px;}
.x39_c01280{left:135.360000px;}
.x47_c01280{left:145.440000px;}
.x2d_c01280{left:146.880000px;}
.x20_c01280{left:157.680000px;}
.x37_c01280{left:166.320000px;}
.x3a_c01280{left:177.840000px;}
.x3_c01280{left:179.280000px;}
.x21_c01280{left:188.640000px;}
.x2b_c01280{left:190.080000px;}
.x3d_c01280{left:198.720000px;}
.x1c_c01280{left:210.240000px;}
.xc_c01280{left:221.760000px;}
.x3e_c01280{left:230.400000px;}
.x15_c01280{left:232.560000px;}
.x27_c01280{left:241.920000px;}
.xd_c01280{left:252.720000px;}
.x31_c01280{left:264.240000px;}
.x22_c01280{left:274.320000px;}
.x2e_c01280{left:275.760000px;}
.x48_c01280{left:285.120000px;}
.x1d_c01280{left:287.280000px;}
.x16_c01280{left:296.640000px;}
.x4_c01280{left:298.080000px;}
.x28_c01280{left:308.160000px;}
.x32_c01280{left:317.520000px;}
.x5_c01280{left:318.960000px;}
.x4c_c01280{left:327.600000px;}
.x41_c01280{left:329.040000px;}
.xe_c01280{left:340.560000px;}
.x17_c01280{left:350.640000px;}
.x6_c01280{left:361.440000px;}
.x45_c01280{left:372.240000px;}
.x1e_c01280{left:384.480000px;}
.x2c_c01280{left:404.640000px;}
.x3f_c01280{left:406.080000px;}
.x4d_c01280{left:415.440000px;}
.x38_c01280{left:426.960000px;}
.x23_c01280{left:437.760000px;}
.x42_c01280{left:449.280000px;}
.x4a_c01280{left:459.360000px;}
.x43_c01280{left:469.440000px;}
.xf_c01280{left:470.880000px;}
.x49_c01280{left:480.240000px;}
.x34_c01280{left:481.680000px;}
.x7_c01280{left:492.480000px;}
.x3b_c01280{left:501.840000px;}
.x18_c01280{left:504.000000px;}
.x8_c01280{left:514.080000px;}
.x10_c01280{left:515.520000px;}
.x4b_c01280{left:524.160000px;}
.x24_c01280{left:535.680000px;}
.x4e_c01280{left:546.480000px;}
.x11_c01280{left:547.920000px;}
.x29_c01280{left:557.280000px;}
.x9_c01280{left:558.720000px;}
.x40_c01280{left:566.640000px;}
.x25_c01280{left:568.080000px;}
.x46_c01280{left:578.160000px;}
.x35_c01280{left:579.600000px;}
.x44_c01280{left:588.240000px;}
.x3c_c01280{left:589.680000px;}
.x12_c01280{left:600.480000px;}
.x2a_c01280{left:602.640000px;}
.x2f_c01280{left:611.280000px;}
.x1f_c01280{left:622.800000px;}
.x26_c01280{left:632.880000px;}
.x19_c01280{left:644.400000px;}
.xa_c01280{left:655.200000px;}
.x33_c01280{left:666.720000px;}
.x1_c01280{left:668.880000px;}
@media print{
.v2_c01280{vertical-align:-2.560000pt;}
.v0_c01280{vertical-align:0.000000pt;}
.v1_c01280{vertical-align:5.120000pt;}
.ls0_c01280{letter-spacing:0.000000pt;}
.ws2_c01280{word-spacing:0.000000pt;}
.ws1_c01280{word-spacing:2.369707pt;}
.ws0_c01280{word-spacing:2.501973pt;}
.fsd_c01280{font-size:28.160000pt;}
.fs3_c01280{font-size:30.720000pt;}
.fsb_c01280{font-size:33.280000pt;}
.fs5_c01280{font-size:38.400000pt;}
.fs6_c01280{font-size:40.960000pt;}
.fs8_c01280{font-size:43.520000pt;}
.fs4_c01280{font-size:46.080000pt;}
.fse_c01280{font-size:48.640000pt;}
.fs7_c01280{font-size:51.200000pt;}
.fs2_c01280{font-size:53.760000pt;}
.fsa_c01280{font-size:56.320000pt;}
.fs1_c01280{font-size:58.880000pt;}
.fs9_c01280{font-size:61.440000pt;}
.fsc_c01280{font-size:64.000000pt;}
.fs0_c01280{font-size:66.560000pt;}
.y0_c01280{bottom:0.000000pt;}
.y78_c01280{bottom:56.960000pt;}
.y7b_c01280{bottom:58.880000pt;}
.y79_c01280{bottom:59.520000pt;}
.y7a_c01280{bottom:60.160000pt;}
.y77_c01280{bottom:60.800000pt;}
.y76_c01280{bottom:61.440000pt;}
.y75_c01280{bottom:64.640000pt;}
.y73_c01280{bottom:95.360000pt;}
.y70_c01280{bottom:96.000000pt;}
.y74_c01280{bottom:97.280000pt;}
.y72_c01280{bottom:97.920000pt;}
.y71_c01280{bottom:98.560000pt;}
.y6f_c01280{bottom:101.120000pt;}
.y6e_c01280{bottom:101.760000pt;}
.y6d_c01280{bottom:106.240000pt;}
.y6a_c01280{bottom:133.120000pt;}
.y6b_c01280{bottom:133.760000pt;}
.y69_c01280{bottom:134.400000pt;}
.y6c_c01280{bottom:136.320000pt;}
.y68_c01280{bottom:137.600000pt;}
.y67_c01280{bottom:138.240000pt;}
.y66_c01280{bottom:138.880000pt;}
.y65_c01280{bottom:140.800000pt;}
.y64_c01280{bottom:142.080000pt;}
.y62_c01280{bottom:172.160000pt;}
.y60_c01280{bottom:173.440000pt;}
.y63_c01280{bottom:174.080000pt;}
.y5e_c01280{bottom:174.720000pt;}
.y61_c01280{bottom:175.360000pt;}
.y5f_c01280{bottom:176.640000pt;}
.y5c_c01280{bottom:177.920000pt;}
.y5d_c01280{bottom:179.200000pt;}
.y5a_c01280{bottom:210.560000pt;}
.y5b_c01280{bottom:212.480000pt;}
.y59_c01280{bottom:213.120000pt;}
.y58_c01280{bottom:213.760000pt;}
.y57_c01280{bottom:214.400000pt;}
.y56_c01280{bottom:215.680000pt;}
.y55_c01280{bottom:258.560000pt;}
.y54_c01280{bottom:260.480000pt;}
.y53_c01280{bottom:261.120000pt;}
.y52_c01280{bottom:262.400000pt;}
.y50_c01280{bottom:263.680000pt;}
.y51_c01280{bottom:264.320000pt;}
.y4f_c01280{bottom:296.320000pt;}
.y4e_c01280{bottom:296.960000pt;}
.y4b_c01280{bottom:298.240000pt;}
.y4d_c01280{bottom:299.520000pt;}
.y4c_c01280{bottom:300.160000pt;}
.y4a_c01280{bottom:301.440000pt;}
.y49_c01280{bottom:302.080000pt;}
.y48_c01280{bottom:302.720000pt;}
.y47_c01280{bottom:304.000000pt;}
.y46_c01280{bottom:334.720000pt;}
.y42_c01280{bottom:336.640000pt;}
.y45_c01280{bottom:337.280000pt;}
.y43_c01280{bottom:337.920000pt;}
.y44_c01280{bottom:338.560000pt;}
.y41_c01280{bottom:339.200000pt;}
.y40_c01280{bottom:339.840000pt;}
.y3f_c01280{bottom:384.000000pt;}
.y3e_c01280{bottom:387.840000pt;}
.y3d_c01280{bottom:421.760000pt;}
.y39_c01280{bottom:423.040000pt;}
.y3a_c01280{bottom:423.680000pt;}
.y3c_c01280{bottom:424.320000pt;}
.y3b_c01280{bottom:424.960000pt;}
.y38_c01280{bottom:426.240000pt;}
.y37_c01280{bottom:426.880000pt;}
.y34_c01280{bottom:460.160000pt;}
.y33_c01280{bottom:460.800000pt;}
.y32_c01280{bottom:461.440000pt;}
.y36_c01280{bottom:462.080000pt;}
.y35_c01280{bottom:462.720000pt;}
.y2e_c01280{bottom:499.200000pt;}
.y31_c01280{bottom:499.840000pt;}
.y2f_c01280{bottom:500.480000pt;}
.y30_c01280{bottom:501.120000pt;}
.y2d_c01280{bottom:502.400000pt;}
.y2c_c01280{bottom:536.960000pt;}
.y2b_c01280{bottom:538.880000pt;}
.y2a_c01280{bottom:539.520000pt;}
.y29_c01280{bottom:584.960000pt;}
.y28_c01280{bottom:586.880000pt;}
.y24_c01280{bottom:621.440000pt;}
.y27_c01280{bottom:622.720000pt;}
.y26_c01280{bottom:624.000000pt;}
.y25_c01280{bottom:624.640000pt;}
.y21_c01280{bottom:659.840000pt;}
.y22_c01280{bottom:660.480000pt;}
.y1f_c01280{bottom:661.760000pt;}
.y23_c01280{bottom:662.400000pt;}
.y20_c01280{bottom:663.040000pt;}
.y1c_c01280{bottom:697.600000pt;}
.y1d_c01280{bottom:700.800000pt;}
.y1e_c01280{bottom:701.440000pt;}
.y1a_c01280{bottom:736.640000pt;}
.y19_c01280{bottom:739.200000pt;}
.y1b_c01280{bottom:739.840000pt;}
.y18_c01280{bottom:784.640000pt;}
.y11_c01280{bottom:822.400000pt;}
.y16_c01280{bottom:823.040000pt;}
.y12_c01280{bottom:823.680000pt;}
.y13_c01280{bottom:824.320000pt;}
.y14_c01280{bottom:824.960000pt;}
.y17_c01280{bottom:825.600000pt;}
.y15_c01280{bottom:826.240000pt;}
.yd_c01280{bottom:860.800000pt;}
.ye_c01280{bottom:861.440000pt;}
.yf_c01280{bottom:863.360000pt;}
.y10_c01280{bottom:864.000000pt;}
.y7_c01280{bottom:898.560000pt;}
.yb_c01280{bottom:899.200000pt;}
.ya_c01280{bottom:899.840000pt;}
.y8_c01280{bottom:901.120000pt;}
.y9_c01280{bottom:901.760000pt;}
.yc_c01280{bottom:902.400000pt;}
.y2_c01280{bottom:935.040000pt;}
.y3_c01280{bottom:937.600000pt;}
.y6_c01280{bottom:938.240000pt;}
.y5_c01280{bottom:940.160000pt;}
.y4_c01280{bottom:940.800000pt;}
.y1_c01280{bottom:972.160000pt;}
.hf_c01280{height:25.341250pt;}
.h5_c01280{height:27.645000pt;}
.hd_c01280{height:29.948750pt;}
.h7_c01280{height:34.556250pt;}
.h8_c01280{height:36.860000pt;}
.ha_c01280{height:39.163750pt;}
.h6_c01280{height:41.467500pt;}
.h11_c01280{height:43.771250pt;}
.h10_c01280{height:44.283750pt;}
.h12_c01280{height:45.818750pt;}
.h9_c01280{height:46.075000pt;}
.h4_c01280{height:48.378750pt;}
.hc_c01280{height:50.682500pt;}
.h3_c01280{height:52.986250pt;}
.hb_c01280{height:55.290000pt;}
.he_c01280{height:57.593750pt;}
.h2_c01280{height:59.897500pt;}
.h0_c01280{height:1026.560000pt;}
.h1_c01280{height:1026.666667pt;}
.w1_c01280{width:682.000000pt;}
.w0_c01280{width:682.240000pt;}
.x0_c01280{left:0.000000pt;}
.x2_c01280{left:49.920000pt;}
.xb_c01280{left:51.200000pt;}
.x13_c01280{left:76.160000pt;}
.x1a_c01280{left:85.120000pt;}
.x36_c01280{left:93.440000pt;}
.x14_c01280{left:103.680000pt;}
.x1b_c01280{left:111.360000pt;}
.x30_c01280{left:113.280000pt;}
.x39_c01280{left:120.320000pt;}
.x47_c01280{left:129.280000pt;}
.x2d_c01280{left:130.560000pt;}
.x20_c01280{left:140.160000pt;}
.x37_c01280{left:147.840000pt;}
.x3a_c01280{left:158.080000pt;}
.x3_c01280{left:159.360000pt;}
.x21_c01280{left:167.680000pt;}
.x2b_c01280{left:168.960000pt;}
.x3d_c01280{left:176.640000pt;}
.x1c_c01280{left:186.880000pt;}
.xc_c01280{left:197.120000pt;}
.x3e_c01280{left:204.800000pt;}
.x15_c01280{left:206.720000pt;}
.x27_c01280{left:215.040000pt;}
.xd_c01280{left:224.640000pt;}
.x31_c01280{left:234.880000pt;}
.x22_c01280{left:243.840000pt;}
.x2e_c01280{left:245.120000pt;}
.x48_c01280{left:253.440000pt;}
.x1d_c01280{left:255.360000pt;}
.x16_c01280{left:263.680000pt;}
.x4_c01280{left:264.960000pt;}
.x28_c01280{left:273.920000pt;}
.x32_c01280{left:282.240000pt;}
.x5_c01280{left:283.520000pt;}
.x4c_c01280{left:291.200000pt;}
.x41_c01280{left:292.480000pt;}
.xe_c01280{left:302.720000pt;}
.x17_c01280{left:311.680000pt;}
.x6_c01280{left:321.280000pt;}
.x45_c01280{left:330.880000pt;}
.x1e_c01280{left:341.760000pt;}
.x2c_c01280{left:359.680000pt;}
.x3f_c01280{left:360.960000pt;}
.x4d_c01280{left:369.280000pt;}
.x38_c01280{left:379.520000pt;}
.x23_c01280{left:389.120000pt;}
.x42_c01280{left:399.360000pt;}
.x4a_c01280{left:408.320000pt;}
.x43_c01280{left:417.280000pt;}
.xf_c01280{left:418.560000pt;}
.x49_c01280{left:426.880000pt;}
.x34_c01280{left:428.160000pt;}
.x7_c01280{left:437.760000pt;}
.x3b_c01280{left:446.080000pt;}
.x18_c01280{left:448.000000pt;}
.x8_c01280{left:456.960000pt;}
.x10_c01280{left:458.240000pt;}
.x4b_c01280{left:465.920000pt;}
.x24_c01280{left:476.160000pt;}
.x4e_c01280{left:485.760000pt;}
.x11_c01280{left:487.040000pt;}
.x29_c01280{left:495.360000pt;}
.x9_c01280{left:496.640000pt;}
.x40_c01280{left:503.680000pt;}
.x25_c01280{left:504.960000pt;}
.x46_c01280{left:513.920000pt;}
.x35_c01280{left:515.200000pt;}
.x44_c01280{left:522.880000pt;}
.x3c_c01280{left:524.160000pt;}
.x12_c01280{left:533.760000pt;}
.x2a_c01280{left:535.680000pt;}
.x2f_c01280{left:543.360000pt;}
.x1f_c01280{left:553.600000pt;}
.x26_c01280{left:562.560000pt;}
.x19_c01280{left:572.800000pt;}
.xa_c01280{left:582.400000pt;}
.x33_c01280{left:592.640000pt;}
.x1_c01280{left:594.560000pt;}
}





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

.ir_c01281:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01281{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01281;src:url('chunks/assets/font_6bbcd844db2d3f3e53188a97.woff2')format("woff");}.ff1_c01281{font-family:ff1_c01281;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4a_c01281{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m53_c01281{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2_c01281{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m4_c01281{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1_c01281{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m21_c01281{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m6_c01281{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m9_c01281{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mf_c01281{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);}
.m3f_c01281{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m16_c01281{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);}
.m56_c01281{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m42_c01281{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01281{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m41_c01281{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.md_c01281{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m40_c01281{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m14_c01281{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m11_c01281{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);}
.m32_c01281{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m0_c01281{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_c01281{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);}
.m48_c01281{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);}
.m25_c01281{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01281{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);}
.m29_c01281{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m35_c01281{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);}
.m57_c01281{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);}
.m28_c01281{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);}
.m2e_c01281{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m52_c01281{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m33_c01281{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m20_c01281{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);}
.m2d_c01281{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m47_c01281{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);}
.m4c_c01281{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m27_c01281{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);}
.m36_c01281{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);}
.m1b_c01281{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m8_c01281{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m23_c01281{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);}
.m30_c01281{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m22_c01281{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m19_c01281{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);}
.m34_c01281{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);}
.m59_c01281{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m3_c01281{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m46_c01281{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);}
.m54_c01281{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01281{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m51_c01281{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01281{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);}
.m1d_c01281{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01281{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.mc_c01281{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m17_c01281{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);}
.m24_c01281{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);}
.m38_c01281{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m13_c01281{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01281{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m7_c01281{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);}
.m1a_c01281{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m15_c01281{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m58_c01281{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m31_c01281{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);}
.m3a_c01281{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01281{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01281{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01281{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m37_c01281{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.mb_c01281{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);}
.me_c01281{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);}
.m4e_c01281{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m26_c01281{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m39_c01281{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01281{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m50_c01281{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m5_c01281{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);}
.m2b_c01281{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);}
.m3e_c01281{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m55_c01281{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m49_c01281{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);}
.m12_c01281{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m44_c01281{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m45_c01281{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.ma_c01281{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m18_c01281{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);}
.m4b_c01281{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);}
.m4f_c01281{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m43_c01281{transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);}
.v0_c01281{vertical-align:0.000000px;}
.ls0_c01281{letter-spacing:0.000000px;}
.sc__c01281{text-shadow:none;}
.sc0_c01281{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01281{-webkit-text-stroke:0px transparent;}
.sc0_c01281{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01281{word-spacing:0.000000px;}
.fc0_c01281{color:transparent;}
.fsb_c01281{font-size:31.680000px;}
.fs4_c01281{font-size:34.560000px;}
.fs7_c01281{font-size:43.200000px;}
.fs8_c01281{font-size:46.080000px;}
.fs2_c01281{font-size:48.960000px;}
.fs6_c01281{font-size:51.840000px;}
.fsa_c01281{font-size:54.720000px;}
.fsc_c01281{font-size:57.600000px;}
.fs1_c01281{font-size:60.480000px;}
.fs9_c01281{font-size:63.360000px;}
.fsd_c01281{font-size:66.240000px;}
.fs3_c01281{font-size:69.120000px;}
.fs0_c01281{font-size:74.880000px;}
.fs5_c01281{font-size:77.760000px;}
.y0_c01281{bottom:0.000000px;}
.y7d_c01281{bottom:96.480000px;}
.y7c_c01281{bottom:97.200000px;}
.y7e_c01281{bottom:97.920000px;}
.y7b_c01281{bottom:100.080000px;}
.y79_c01281{bottom:138.240000px;}
.y78_c01281{bottom:140.400000px;}
.y7a_c01281{bottom:141.120000px;}
.y77_c01281{bottom:146.160000px;}
.y76_c01281{bottom:146.880000px;}
.y75_c01281{bottom:180.720000px;}
.y73_c01281{bottom:181.440000px;}
.y72_c01281{bottom:183.600000px;}
.y74_c01281{bottom:184.320000px;}
.y71_c01281{bottom:185.040000px;}
.y70_c01281{bottom:186.480000px;}
.y6f_c01281{bottom:187.920000px;}
.y6e_c01281{bottom:189.360000px;}
.y6d_c01281{bottom:190.800000px;}
.y6c_c01281{bottom:223.920000px;}
.y6b_c01281{bottom:226.800000px;}
.y69_c01281{bottom:227.520000px;}
.y6a_c01281{bottom:228.240000px;}
.y68_c01281{bottom:231.840000px;}
.y66_c01281{bottom:267.120000px;}
.y65_c01281{bottom:267.840000px;}
.y63_c01281{bottom:268.560000px;}
.y67_c01281{bottom:270.000000px;}
.y64_c01281{bottom:270.720000px;}
.y62_c01281{bottom:271.440000px;}
.y61_c01281{bottom:272.160000px;}
.y60_c01281{bottom:324.720000px;}
.y5f_c01281{bottom:328.320000px;}
.y5d_c01281{bottom:363.600000px;}
.y5c_c01281{bottom:364.320000px;}
.y59_c01281{bottom:365.040000px;}
.y5e_c01281{bottom:365.760000px;}
.y5b_c01281{bottom:366.480000px;}
.y5a_c01281{bottom:367.200000px;}
.y58_c01281{bottom:367.920000px;}
.y57_c01281{bottom:368.640000px;}
.y56_c01281{bottom:371.520000px;}
.y54_c01281{bottom:406.800000px;}
.y55_c01281{bottom:408.960000px;}
.y53_c01281{bottom:409.680000px;}
.y52_c01281{bottom:410.400000px;}
.y51_c01281{bottom:412.560000px;}
.y4f_c01281{bottom:450.000000px;}
.y50_c01281{bottom:452.160000px;}
.y4e_c01281{bottom:452.880000px;}
.y4d_c01281{bottom:453.600000px;}
.y4c_c01281{bottom:455.040000px;}
.y4b_c01281{bottom:492.480000px;}
.y4a_c01281{bottom:494.640000px;}
.y48_c01281{bottom:495.360000px;}
.y49_c01281{bottom:496.080000px;}
.y47_c01281{bottom:497.520000px;}
.y46_c01281{bottom:498.240000px;}
.y43_c01281{bottom:535.680000px;}
.y42_c01281{bottom:536.400000px;}
.y44_c01281{bottom:537.840000px;}
.y45_c01281{bottom:538.560000px;}
.y41_c01281{bottom:539.280000px;}
.y40_c01281{bottom:540.720000px;}
.y3e_c01281{bottom:579.600000px;}
.y3b_c01281{bottom:580.320000px;}
.y3d_c01281{bottom:581.040000px;}
.y3f_c01281{bottom:581.760000px;}
.y3c_c01281{bottom:582.480000px;}
.y39_c01281{bottom:621.360000px;}
.y37_c01281{bottom:622.080000px;}
.y3a_c01281{bottom:624.240000px;}
.y38_c01281{bottom:624.960000px;}
.y36_c01281{bottom:664.560000px;}
.y33_c01281{bottom:665.280000px;}
.y34_c01281{bottom:667.440000px;}
.y35_c01281{bottom:668.160000px;}
.y32_c01281{bottom:668.880000px;}
.y2e_c01281{bottom:707.760000px;}
.y2f_c01281{bottom:708.480000px;}
.y2c_c01281{bottom:709.920000px;}
.y30_c01281{bottom:710.640000px;}
.y2d_c01281{bottom:711.360000px;}
.y31_c01281{bottom:712.080000px;}
.y26_c01281{bottom:750.240000px;}
.y29_c01281{bottom:750.960000px;}
.y2b_c01281{bottom:751.680000px;}
.y27_c01281{bottom:753.840000px;}
.y28_c01281{bottom:754.560000px;}
.y2a_c01281{bottom:755.280000px;}
.y22_c01281{bottom:793.440000px;}
.y24_c01281{bottom:794.880000px;}
.y21_c01281{bottom:795.600000px;}
.y23_c01281{bottom:797.040000px;}
.y25_c01281{bottom:797.760000px;}
.y1e_c01281{bottom:838.080000px;}
.y1d_c01281{bottom:838.800000px;}
.y1f_c01281{bottom:839.520000px;}
.y20_c01281{bottom:840.240000px;}
.y1b_c01281{bottom:879.120000px;}
.y1a_c01281{bottom:880.560000px;}
.y1c_c01281{bottom:882.720000px;}
.y14_c01281{bottom:920.160000px;}
.y16_c01281{bottom:922.320000px;}
.y17_c01281{bottom:923.040000px;}
.y15_c01281{bottom:925.200000px;}
.y19_c01281{bottom:925.920000px;}
.y18_c01281{bottom:926.640000px;}
.y10_c01281{bottom:962.640000px;}
.y12_c01281{bottom:965.520000px;}
.y11_c01281{bottom:967.680000px;}
.y13_c01281{bottom:968.400000px;}
.yd_c01281{bottom:1006.560000px;}
.yb_c01281{bottom:1007.280000px;}
.yc_c01281{bottom:1008.720000px;}
.ye_c01281{bottom:1010.880000px;}
.yf_c01281{bottom:1011.600000px;}
.y2_c01281{bottom:1047.600000px;}
.y3_c01281{bottom:1048.320000px;}
.y7_c01281{bottom:1049.040000px;}
.y5_c01281{bottom:1049.760000px;}
.y9_c01281{bottom:1051.200000px;}
.y8_c01281{bottom:1051.920000px;}
.y4_c01281{bottom:1052.640000px;}
.y6_c01281{bottom:1054.080000px;}
.ya_c01281{bottom:1054.800000px;}
.y1_c01281{bottom:1098.000000px;}
.hd_c01281{height:28.508906px;}
.h6_c01281{height:31.100625px;}
.h9_c01281{height:38.875781px;}
.ha_c01281{height:41.467500px;}
.h4_c01281{height:44.059219px;}
.h8_c01281{height:46.650937px;}
.hc_c01281{height:49.242656px;}
.he_c01281{height:51.834375px;}
.h3_c01281{height:54.426094px;}
.hb_c01281{height:57.017812px;}
.hf_c01281{height:59.609531px;}
.h5_c01281{height:62.201250px;}
.h2_c01281{height:67.384687px;}
.h7_c01281{height:69.976406px;}
.h0_c01281{height:1153.440000px;}
.h1_c01281{height:1153.500000px;}
.w1_c01281{width:765.000000px;}
.w0_c01281{width:765.360000px;}
.x0_c01281{left:0.000000px;}
.x2_c01281{left:53.280000px;}
.x3c_c01281{left:55.440000px;}
.x45_c01281{left:56.880000px;}
.x1e_c01281{left:72.000000px;}
.xe_c01281{left:82.080000px;}
.x3a_c01281{left:83.520000px;}
.x3d_c01281{left:92.880000px;}
.x41_c01281{left:94.320000px;}
.x3_c01281{left:102.240000px;}
.xf_c01281{left:111.600000px;}
.x46_c01281{left:123.120000px;}
.x42_c01281{left:124.560000px;}
.x4_c01281{left:133.200000px;}
.x3e_c01281{left:134.640000px;}
.x10_c01281{left:142.560000px;}
.x37_c01281{left:144.000000px;}
.x1f_c01281{left:154.080000px;}
.x2b_c01281{left:164.880000px;}
.x5_c01281{left:174.960000px;}
.x20_c01281{left:185.760000px;}
.x4a_c01281{left:196.560000px;}
.x11_c01281{left:207.360000px;}
.x19_c01281{left:218.160000px;}
.x47_c01281{left:219.600000px;}
.x21_c01281{left:228.960000px;}
.x1a_c01281{left:240.480000px;}
.x6_c01281{left:250.560000px;}
.x28_c01281{left:261.360000px;}
.x12_c01281{left:272.880000px;}
.x22_c01281{left:283.680000px;}
.x7_c01281{left:293.760000px;}
.x3f_c01281{left:304.560000px;}
.x13_c01281{left:315.360000px;}
.x1b_c01281{left:326.880000px;}
.x23_c01281{left:336.960000px;}
.x31_c01281{left:347.760000px;}
.x1c_c01281{left:358.560000px;}
.x24_c01281{left:380.880000px;}
.x29_c01281{left:390.960000px;}
.x8_c01281{left:402.480000px;}
.x2c_c01281{left:413.280000px;}
.x1d_c01281{left:424.080000px;}
.x2f_c01281{left:434.160000px;}
.x25_c01281{left:435.600000px;}
.x43_c01281{left:446.400000px;}
.x34_c01281{left:456.480000px;}
.x26_c01281{left:466.560000px;}
.x9_c01281{left:468.000000px;}
.x33_c01281{left:477.360000px;}
.x32_c01281{left:488.880000px;}
.x14_c01281{left:499.680000px;}
.x2d_c01281{left:510.480000px;}
.xa_c01281{left:511.920000px;}
.x35_c01281{left:522.000000px;}
.x44_c01281{left:532.080000px;}
.x2a_c01281{left:533.520000px;}
.x38_c01281{left:542.880000px;}
.x15_c01281{left:544.320000px;}
.x2e_c01281{left:555.120000px;}
.x36_c01281{left:564.480000px;}
.x48_c01281{left:565.920000px;}
.x16_c01281{left:576.000000px;}
.xb_c01281{left:587.520000px;}
.x30_c01281{left:597.600000px;}
.x27_c01281{left:609.120000px;}
.x39_c01281{left:618.480000px;}
.xc_c01281{left:619.920000px;}
.x17_c01281{left:630.720000px;}
.x49_c01281{left:641.520000px;}
.x3b_c01281{left:642.960000px;}
.xd_c01281{left:651.600000px;}
.x40_c01281{left:653.040000px;}
.x1_c01281{left:660.240000px;}
.x18_c01281{left:663.120000px;}
@media print{
.v0_c01281{vertical-align:0.000000pt;}
.ls0_c01281{letter-spacing:0.000000pt;}
.ws0_c01281{word-spacing:0.000000pt;}
.fsb_c01281{font-size:28.160000pt;}
.fs4_c01281{font-size:30.720000pt;}
.fs7_c01281{font-size:38.400000pt;}
.fs8_c01281{font-size:40.960000pt;}
.fs2_c01281{font-size:43.520000pt;}
.fs6_c01281{font-size:46.080000pt;}
.fsa_c01281{font-size:48.640000pt;}
.fsc_c01281{font-size:51.200000pt;}
.fs1_c01281{font-size:53.760000pt;}
.fs9_c01281{font-size:56.320000pt;}
.fsd_c01281{font-size:58.880000pt;}
.fs3_c01281{font-size:61.440000pt;}
.fs0_c01281{font-size:66.560000pt;}
.fs5_c01281{font-size:69.120000pt;}
.y0_c01281{bottom:0.000000pt;}
.y7d_c01281{bottom:85.760000pt;}
.y7c_c01281{bottom:86.400000pt;}
.y7e_c01281{bottom:87.040000pt;}
.y7b_c01281{bottom:88.960000pt;}
.y79_c01281{bottom:122.880000pt;}
.y78_c01281{bottom:124.800000pt;}
.y7a_c01281{bottom:125.440000pt;}
.y77_c01281{bottom:129.920000pt;}
.y76_c01281{bottom:130.560000pt;}
.y75_c01281{bottom:160.640000pt;}
.y73_c01281{bottom:161.280000pt;}
.y72_c01281{bottom:163.200000pt;}
.y74_c01281{bottom:163.840000pt;}
.y71_c01281{bottom:164.480000pt;}
.y70_c01281{bottom:165.760000pt;}
.y6f_c01281{bottom:167.040000pt;}
.y6e_c01281{bottom:168.320000pt;}
.y6d_c01281{bottom:169.600000pt;}
.y6c_c01281{bottom:199.040000pt;}
.y6b_c01281{bottom:201.600000pt;}
.y69_c01281{bottom:202.240000pt;}
.y6a_c01281{bottom:202.880000pt;}
.y68_c01281{bottom:206.080000pt;}
.y66_c01281{bottom:237.440000pt;}
.y65_c01281{bottom:238.080000pt;}
.y63_c01281{bottom:238.720000pt;}
.y67_c01281{bottom:240.000000pt;}
.y64_c01281{bottom:240.640000pt;}
.y62_c01281{bottom:241.280000pt;}
.y61_c01281{bottom:241.920000pt;}
.y60_c01281{bottom:288.640000pt;}
.y5f_c01281{bottom:291.840000pt;}
.y5d_c01281{bottom:323.200000pt;}
.y5c_c01281{bottom:323.840000pt;}
.y59_c01281{bottom:324.480000pt;}
.y5e_c01281{bottom:325.120000pt;}
.y5b_c01281{bottom:325.760000pt;}
.y5a_c01281{bottom:326.400000pt;}
.y58_c01281{bottom:327.040000pt;}
.y57_c01281{bottom:327.680000pt;}
.y56_c01281{bottom:330.240000pt;}
.y54_c01281{bottom:361.600000pt;}
.y55_c01281{bottom:363.520000pt;}
.y53_c01281{bottom:364.160000pt;}
.y52_c01281{bottom:364.800000pt;}
.y51_c01281{bottom:366.720000pt;}
.y4f_c01281{bottom:400.000000pt;}
.y50_c01281{bottom:401.920000pt;}
.y4e_c01281{bottom:402.560000pt;}
.y4d_c01281{bottom:403.200000pt;}
.y4c_c01281{bottom:404.480000pt;}
.y4b_c01281{bottom:437.760000pt;}
.y4a_c01281{bottom:439.680000pt;}
.y48_c01281{bottom:440.320000pt;}
.y49_c01281{bottom:440.960000pt;}
.y47_c01281{bottom:442.240000pt;}
.y46_c01281{bottom:442.880000pt;}
.y43_c01281{bottom:476.160000pt;}
.y42_c01281{bottom:476.800000pt;}
.y44_c01281{bottom:478.080000pt;}
.y45_c01281{bottom:478.720000pt;}
.y41_c01281{bottom:479.360000pt;}
.y40_c01281{bottom:480.640000pt;}
.y3e_c01281{bottom:515.200000pt;}
.y3b_c01281{bottom:515.840000pt;}
.y3d_c01281{bottom:516.480000pt;}
.y3f_c01281{bottom:517.120000pt;}
.y3c_c01281{bottom:517.760000pt;}
.y39_c01281{bottom:552.320000pt;}
.y37_c01281{bottom:552.960000pt;}
.y3a_c01281{bottom:554.880000pt;}
.y38_c01281{bottom:555.520000pt;}
.y36_c01281{bottom:590.720000pt;}
.y33_c01281{bottom:591.360000pt;}
.y34_c01281{bottom:593.280000pt;}
.y35_c01281{bottom:593.920000pt;}
.y32_c01281{bottom:594.560000pt;}
.y2e_c01281{bottom:629.120000pt;}
.y2f_c01281{bottom:629.760000pt;}
.y2c_c01281{bottom:631.040000pt;}
.y30_c01281{bottom:631.680000pt;}
.y2d_c01281{bottom:632.320000pt;}
.y31_c01281{bottom:632.960000pt;}
.y26_c01281{bottom:666.880000pt;}
.y29_c01281{bottom:667.520000pt;}
.y2b_c01281{bottom:668.160000pt;}
.y27_c01281{bottom:670.080000pt;}
.y28_c01281{bottom:670.720000pt;}
.y2a_c01281{bottom:671.360000pt;}
.y22_c01281{bottom:705.280000pt;}
.y24_c01281{bottom:706.560000pt;}
.y21_c01281{bottom:707.200000pt;}
.y23_c01281{bottom:708.480000pt;}
.y25_c01281{bottom:709.120000pt;}
.y1e_c01281{bottom:744.960000pt;}
.y1d_c01281{bottom:745.600000pt;}
.y1f_c01281{bottom:746.240000pt;}
.y20_c01281{bottom:746.880000pt;}
.y1b_c01281{bottom:781.440000pt;}
.y1a_c01281{bottom:782.720000pt;}
.y1c_c01281{bottom:784.640000pt;}
.y14_c01281{bottom:817.920000pt;}
.y16_c01281{bottom:819.840000pt;}
.y17_c01281{bottom:820.480000pt;}
.y15_c01281{bottom:822.400000pt;}
.y19_c01281{bottom:823.040000pt;}
.y18_c01281{bottom:823.680000pt;}
.y10_c01281{bottom:855.680000pt;}
.y12_c01281{bottom:858.240000pt;}
.y11_c01281{bottom:860.160000pt;}
.y13_c01281{bottom:860.800000pt;}
.yd_c01281{bottom:894.720000pt;}
.yb_c01281{bottom:895.360000pt;}
.yc_c01281{bottom:896.640000pt;}
.ye_c01281{bottom:898.560000pt;}
.yf_c01281{bottom:899.200000pt;}
.y2_c01281{bottom:931.200000pt;}
.y3_c01281{bottom:931.840000pt;}
.y7_c01281{bottom:932.480000pt;}
.y5_c01281{bottom:933.120000pt;}
.y9_c01281{bottom:934.400000pt;}
.y8_c01281{bottom:935.040000pt;}
.y4_c01281{bottom:935.680000pt;}
.y6_c01281{bottom:936.960000pt;}
.ya_c01281{bottom:937.600000pt;}
.y1_c01281{bottom:976.000000pt;}
.hd_c01281{height:25.341250pt;}
.h6_c01281{height:27.645000pt;}
.h9_c01281{height:34.556250pt;}
.ha_c01281{height:36.860000pt;}
.h4_c01281{height:39.163750pt;}
.h8_c01281{height:41.467500pt;}
.hc_c01281{height:43.771250pt;}
.he_c01281{height:46.075000pt;}
.h3_c01281{height:48.378750pt;}
.hb_c01281{height:50.682500pt;}
.hf_c01281{height:52.986250pt;}
.h5_c01281{height:55.290000pt;}
.h2_c01281{height:59.897500pt;}
.h7_c01281{height:62.201250pt;}
.h0_c01281{height:1025.280000pt;}
.h1_c01281{height:1025.333333pt;}
.w1_c01281{width:680.000000pt;}
.w0_c01281{width:680.320000pt;}
.x0_c01281{left:0.000000pt;}
.x2_c01281{left:47.360000pt;}
.x3c_c01281{left:49.280000pt;}
.x45_c01281{left:50.560000pt;}
.x1e_c01281{left:64.000000pt;}
.xe_c01281{left:72.960000pt;}
.x3a_c01281{left:74.240000pt;}
.x3d_c01281{left:82.560000pt;}
.x41_c01281{left:83.840000pt;}
.x3_c01281{left:90.880000pt;}
.xf_c01281{left:99.200000pt;}
.x46_c01281{left:109.440000pt;}
.x42_c01281{left:110.720000pt;}
.x4_c01281{left:118.400000pt;}
.x3e_c01281{left:119.680000pt;}
.x10_c01281{left:126.720000pt;}
.x37_c01281{left:128.000000pt;}
.x1f_c01281{left:136.960000pt;}
.x2b_c01281{left:146.560000pt;}
.x5_c01281{left:155.520000pt;}
.x20_c01281{left:165.120000pt;}
.x4a_c01281{left:174.720000pt;}
.x11_c01281{left:184.320000pt;}
.x19_c01281{left:193.920000pt;}
.x47_c01281{left:195.200000pt;}
.x21_c01281{left:203.520000pt;}
.x1a_c01281{left:213.760000pt;}
.x6_c01281{left:222.720000pt;}
.x28_c01281{left:232.320000pt;}
.x12_c01281{left:242.560000pt;}
.x22_c01281{left:252.160000pt;}
.x7_c01281{left:261.120000pt;}
.x3f_c01281{left:270.720000pt;}
.x13_c01281{left:280.320000pt;}
.x1b_c01281{left:290.560000pt;}
.x23_c01281{left:299.520000pt;}
.x31_c01281{left:309.120000pt;}
.x1c_c01281{left:318.720000pt;}
.x24_c01281{left:338.560000pt;}
.x29_c01281{left:347.520000pt;}
.x8_c01281{left:357.760000pt;}
.x2c_c01281{left:367.360000pt;}
.x1d_c01281{left:376.960000pt;}
.x2f_c01281{left:385.920000pt;}
.x25_c01281{left:387.200000pt;}
.x43_c01281{left:396.800000pt;}
.x34_c01281{left:405.760000pt;}
.x26_c01281{left:414.720000pt;}
.x9_c01281{left:416.000000pt;}
.x33_c01281{left:424.320000pt;}
.x32_c01281{left:434.560000pt;}
.x14_c01281{left:444.160000pt;}
.x2d_c01281{left:453.760000pt;}
.xa_c01281{left:455.040000pt;}
.x35_c01281{left:464.000000pt;}
.x44_c01281{left:472.960000pt;}
.x2a_c01281{left:474.240000pt;}
.x38_c01281{left:482.560000pt;}
.x15_c01281{left:483.840000pt;}
.x2e_c01281{left:493.440000pt;}
.x36_c01281{left:501.760000pt;}
.x48_c01281{left:503.040000pt;}
.x16_c01281{left:512.000000pt;}
.xb_c01281{left:522.240000pt;}
.x30_c01281{left:531.200000pt;}
.x27_c01281{left:541.440000pt;}
.x39_c01281{left:549.760000pt;}
.xc_c01281{left:551.040000pt;}
.x17_c01281{left:560.640000pt;}
.x49_c01281{left:570.240000pt;}
.x3b_c01281{left:571.520000pt;}
.xd_c01281{left:579.200000pt;}
.x40_c01281{left:580.480000pt;}
.x1_c01281{left:586.880000pt;}
.x18_c01281{left:589.440000pt;}
}





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

.ir_c01282:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01282{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01282;src:url('chunks/assets/font_36c1463be5de87d67381e126.woff2')format("woff");}.ff1_c01282{font-family:ff1_c01282;line-height:1.109863;font-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_c01282{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m12_c01282{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);}
.m34_c01282{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m20_c01282{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m32_c01282{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m18_c01282{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01282{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01282{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m25_c01282{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m16_c01282{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m5_c01282{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m0_c01282{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m2_c01282{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m39_c01282{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);}
.m26_c01282{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m15_c01282{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m10_c01282{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m30_c01282{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);}
.m3d_c01282{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);}
.m2d_c01282{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01282{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01282{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m3_c01282{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);}
.m1a_c01282{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.mb_c01282{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.ma_c01282{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);}
.m2f_c01282{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m38_c01282{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);}
.m3c_c01282{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m19_c01282{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);}
.md_c01282{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m9_c01282{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);}
.m3a_c01282{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m4_c01282{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01282{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01282{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);}
.m2a_c01282{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m13_c01282{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);}
.m33_c01282{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.mc_c01282{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);}
.m21_c01282{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01282{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m7_c01282{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m31_c01282{transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);}
.m28_c01282{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m14_c01282{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m29_c01282{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m27_c01282{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01282{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m23_c01282{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);}
.m1c_c01282{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_c01282{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m22_c01282{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m6_c01282{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m11_c01282{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m37_c01282{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m17_c01282{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m35_c01282{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);}
.m3e_c01282{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m24_c01282{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.me_c01282{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);}
.m8_c01282{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01282{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m36_c01282{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.v0_c01282{vertical-align:0.000000px;}
.ls0_c01282{letter-spacing:0.000000px;}
.sc__c01282{text-shadow:none;}
.sc0_c01282{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01282{-webkit-text-stroke:0px transparent;}
.sc0_c01282{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01282{word-spacing:0.000000px;}
.fc0_c01282{color:transparent;}
.fs5_c01282{font-size:34.560000px;}
.fsa_c01282{font-size:43.200000px;}
.fs2_c01282{font-size:46.080000px;}
.fs3_c01282{font-size:48.960000px;}
.fs6_c01282{font-size:51.840000px;}
.fs8_c01282{font-size:54.720000px;}
.fsb_c01282{font-size:57.600000px;}
.fs1_c01282{font-size:60.480000px;}
.fs4_c01282{font-size:63.360000px;}
.fs7_c01282{font-size:66.240000px;}
.fs9_c01282{font-size:69.120000px;}
.fs0_c01282{font-size:74.880000px;}
.y0_c01282{bottom:0.000000px;}
.y2c_c01282{bottom:649.440000px;}
.y2b_c01282{bottom:650.880000px;}
.y2a_c01282{bottom:689.040000px;}
.y28_c01282{bottom:689.760000px;}
.y26_c01282{bottom:690.480000px;}
.y29_c01282{bottom:691.920000px;}
.y27_c01282{bottom:692.640000px;}
.y25_c01282{bottom:693.360000px;}
.y24_c01282{bottom:732.240000px;}
.y23_c01282{bottom:732.960000px;}
.y20_c01282{bottom:735.120000px;}
.y22_c01282{bottom:735.840000px;}
.y21_c01282{bottom:736.560000px;}
.y1f_c01282{bottom:774.720000px;}
.y1d_c01282{bottom:775.440000px;}
.y1c_c01282{bottom:776.160000px;}
.y1e_c01282{bottom:777.600000px;}
.y1b_c01282{bottom:778.320000px;}
.y19_c01282{bottom:817.920000px;}
.y1a_c01282{bottom:818.640000px;}
.y17_c01282{bottom:820.800000px;}
.y18_c01282{bottom:821.520000px;}
.y12_c01282{bottom:861.120000px;}
.y16_c01282{bottom:861.840000px;}
.y13_c01282{bottom:864.000000px;}
.y14_c01282{bottom:864.720000px;}
.y15_c01282{bottom:865.440000px;}
.y11_c01282{bottom:905.040000px;}
.y10_c01282{bottom:907.200000px;}
.yf_c01282{bottom:907.920000px;}
.ya_c01282{bottom:956.160000px;}
.ye_c01282{bottom:959.040000px;}
.yb_c01282{bottom:960.480000px;}
.yc_c01282{bottom:961.200000px;}
.yd_c01282{bottom:961.920000px;}
.y6_c01282{bottom:1001.520000px;}
.y7_c01282{bottom:1002.240000px;}
.y8_c01282{bottom:1004.400000px;}
.y9_c01282{bottom:1005.120000px;}
.y2_c01282{bottom:1042.560000px;}
.y3_c01282{bottom:1045.440000px;}
.y5_c01282{bottom:1047.600000px;}
.y4_c01282{bottom:1048.320000px;}
.y1_c01282{bottom:1095.120000px;}
.h7_c01282{height:31.100625px;}
.hc_c01282{height:38.875781px;}
.h4_c01282{height:41.467500px;}
.h5_c01282{height:44.059219px;}
.h8_c01282{height:46.650937px;}
.ha_c01282{height:49.242656px;}
.hd_c01282{height:51.834375px;}
.h3_c01282{height:54.426094px;}
.h6_c01282{height:57.017812px;}
.h9_c01282{height:59.609531px;}
.hb_c01282{height:62.201250px;}
.h2_c01282{height:67.384687px;}
.h0_c01282{height:1155.600000px;}
.h1_c01282{height:1155.750000px;}
.w1_c01282{width:768.750000px;}
.w0_c01282{width:768.960000px;}
.x0_c01282{left:0.000000px;}
.x24_c01282{left:51.840000px;}
.x2_c01282{left:53.280000px;}
.xb_c01282{left:82.080000px;}
.x13_c01282{left:90.720000px;}
.x29_c01282{left:101.520000px;}
.x30_c01282{left:110.880000px;}
.x1e_c01282{left:112.320000px;}
.xc_c01282{left:121.680000px;}
.x2a_c01282{left:131.760000px;}
.x14_c01282{left:142.560000px;}
.x3_c01282{left:153.360000px;}
.x1f_c01282{left:184.320000px;}
.x31_c01282{left:194.400000px;}
.xd_c01282{left:196.560000px;}
.x15_c01282{left:205.200000px;}
.x19_c01282{left:206.640000px;}
.x34_c01282{left:216.000000px;}
.xe_c01282{left:217.440000px;}
.x25_c01282{left:227.520000px;}
.x35_c01282{left:239.040000px;}
.x20_c01282{left:249.840000px;}
.x32_c01282{left:261.360000px;}
.x4_c01282{left:271.440000px;}
.x16_c01282{left:282.960000px;}
.x1a_c01282{left:293.760000px;}
.x36_c01282{left:313.920000px;}
.x5_c01282{left:315.360000px;}
.xf_c01282{left:336.240000px;}
.x17_c01282{left:347.760000px;}
.x6_c01282{left:358.560000px;}
.x10_c01282{left:369.360000px;}
.x26_c01282{left:380.160000px;}
.x21_c01282{left:390.240000px;}
.x18_c01282{left:421.920000px;}
.x27_c01282{left:423.360000px;}
.x37_c01282{left:434.160000px;}
.x2b_c01282{left:444.960000px;}
.x11_c01282{left:455.760000px;}
.x1b_c01282{left:467.280000px;}
.x2c_c01282{left:477.360000px;}
.x7_c01282{left:489.600000px;}
.x22_c01282{left:510.480000px;}
.x8_c01282{left:521.280000px;}
.x23_c01282{left:543.600000px;}
.x1c_c01282{left:553.680000px;}
.x9_c01282{left:575.280000px;}
.x2d_c01282{left:619.920000px;}
.x12_c01282{left:628.560000px;}
.x33_c01282{left:630.720000px;}
.xa_c01282{left:639.360000px;}
.x2e_c01282{left:641.520000px;}
.x28_c01282{left:652.320000px;}
.x1_c01282{left:661.680000px;}
.x1d_c01282{left:663.120000px;}
.x2f_c01282{left:673.920000px;}
@media print{
.v0_c01282{vertical-align:0.000000pt;}
.ls0_c01282{letter-spacing:0.000000pt;}
.ws0_c01282{word-spacing:0.000000pt;}
.fs5_c01282{font-size:30.720000pt;}
.fsa_c01282{font-size:38.400000pt;}
.fs2_c01282{font-size:40.960000pt;}
.fs3_c01282{font-size:43.520000pt;}
.fs6_c01282{font-size:46.080000pt;}
.fs8_c01282{font-size:48.640000pt;}
.fsb_c01282{font-size:51.200000pt;}
.fs1_c01282{font-size:53.760000pt;}
.fs4_c01282{font-size:56.320000pt;}
.fs7_c01282{font-size:58.880000pt;}
.fs9_c01282{font-size:61.440000pt;}
.fs0_c01282{font-size:66.560000pt;}
.y0_c01282{bottom:0.000000pt;}
.y2c_c01282{bottom:577.280000pt;}
.y2b_c01282{bottom:578.560000pt;}
.y2a_c01282{bottom:612.480000pt;}
.y28_c01282{bottom:613.120000pt;}
.y26_c01282{bottom:613.760000pt;}
.y29_c01282{bottom:615.040000pt;}
.y27_c01282{bottom:615.680000pt;}
.y25_c01282{bottom:616.320000pt;}
.y24_c01282{bottom:650.880000pt;}
.y23_c01282{bottom:651.520000pt;}
.y20_c01282{bottom:653.440000pt;}
.y22_c01282{bottom:654.080000pt;}
.y21_c01282{bottom:654.720000pt;}
.y1f_c01282{bottom:688.640000pt;}
.y1d_c01282{bottom:689.280000pt;}
.y1c_c01282{bottom:689.920000pt;}
.y1e_c01282{bottom:691.200000pt;}
.y1b_c01282{bottom:691.840000pt;}
.y19_c01282{bottom:727.040000pt;}
.y1a_c01282{bottom:727.680000pt;}
.y17_c01282{bottom:729.600000pt;}
.y18_c01282{bottom:730.240000pt;}
.y12_c01282{bottom:765.440000pt;}
.y16_c01282{bottom:766.080000pt;}
.y13_c01282{bottom:768.000000pt;}
.y14_c01282{bottom:768.640000pt;}
.y15_c01282{bottom:769.280000pt;}
.y11_c01282{bottom:804.480000pt;}
.y10_c01282{bottom:806.400000pt;}
.yf_c01282{bottom:807.040000pt;}
.ya_c01282{bottom:849.920000pt;}
.ye_c01282{bottom:852.480000pt;}
.yb_c01282{bottom:853.760000pt;}
.yc_c01282{bottom:854.400000pt;}
.yd_c01282{bottom:855.040000pt;}
.y6_c01282{bottom:890.240000pt;}
.y7_c01282{bottom:890.880000pt;}
.y8_c01282{bottom:892.800000pt;}
.y9_c01282{bottom:893.440000pt;}
.y2_c01282{bottom:926.720000pt;}
.y3_c01282{bottom:929.280000pt;}
.y5_c01282{bottom:931.200000pt;}
.y4_c01282{bottom:931.840000pt;}
.y1_c01282{bottom:973.440000pt;}
.h7_c01282{height:27.645000pt;}
.hc_c01282{height:34.556250pt;}
.h4_c01282{height:36.860000pt;}
.h5_c01282{height:39.163750pt;}
.h8_c01282{height:41.467500pt;}
.ha_c01282{height:43.771250pt;}
.hd_c01282{height:46.075000pt;}
.h3_c01282{height:48.378750pt;}
.h6_c01282{height:50.682500pt;}
.h9_c01282{height:52.986250pt;}
.hb_c01282{height:55.290000pt;}
.h2_c01282{height:59.897500pt;}
.h0_c01282{height:1027.200000pt;}
.h1_c01282{height:1027.333333pt;}
.w1_c01282{width:683.333333pt;}
.w0_c01282{width:683.520000pt;}
.x0_c01282{left:0.000000pt;}
.x24_c01282{left:46.080000pt;}
.x2_c01282{left:47.360000pt;}
.xb_c01282{left:72.960000pt;}
.x13_c01282{left:80.640000pt;}
.x29_c01282{left:90.240000pt;}
.x30_c01282{left:98.560000pt;}
.x1e_c01282{left:99.840000pt;}
.xc_c01282{left:108.160000pt;}
.x2a_c01282{left:117.120000pt;}
.x14_c01282{left:126.720000pt;}
.x3_c01282{left:136.320000pt;}
.x1f_c01282{left:163.840000pt;}
.x31_c01282{left:172.800000pt;}
.xd_c01282{left:174.720000pt;}
.x15_c01282{left:182.400000pt;}
.x19_c01282{left:183.680000pt;}
.x34_c01282{left:192.000000pt;}
.xe_c01282{left:193.280000pt;}
.x25_c01282{left:202.240000pt;}
.x35_c01282{left:212.480000pt;}
.x20_c01282{left:222.080000pt;}
.x32_c01282{left:232.320000pt;}
.x4_c01282{left:241.280000pt;}
.x16_c01282{left:251.520000pt;}
.x1a_c01282{left:261.120000pt;}
.x36_c01282{left:279.040000pt;}
.x5_c01282{left:280.320000pt;}
.xf_c01282{left:298.880000pt;}
.x17_c01282{left:309.120000pt;}
.x6_c01282{left:318.720000pt;}
.x10_c01282{left:328.320000pt;}
.x26_c01282{left:337.920000pt;}
.x21_c01282{left:346.880000pt;}
.x18_c01282{left:375.040000pt;}
.x27_c01282{left:376.320000pt;}
.x37_c01282{left:385.920000pt;}
.x2b_c01282{left:395.520000pt;}
.x11_c01282{left:405.120000pt;}
.x1b_c01282{left:415.360000pt;}
.x2c_c01282{left:424.320000pt;}
.x7_c01282{left:435.200000pt;}
.x22_c01282{left:453.760000pt;}
.x8_c01282{left:463.360000pt;}
.x23_c01282{left:483.200000pt;}
.x1c_c01282{left:492.160000pt;}
.x9_c01282{left:511.360000pt;}
.x2d_c01282{left:551.040000pt;}
.x12_c01282{left:558.720000pt;}
.x33_c01282{left:560.640000pt;}
.xa_c01282{left:568.320000pt;}
.x2e_c01282{left:570.240000pt;}
.x28_c01282{left:579.840000pt;}
.x1_c01282{left:588.160000pt;}
.x1d_c01282{left:589.440000pt;}
.x2f_c01282{left:599.040000pt;}
}





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

.ir_c01283:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01283{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01283;src:url('chunks/assets/font_01780f64fb1675afd52cdc41.woff2')format("woff");}.ff1_c01283{font-family:ff1_c01283;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01283{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);}
.m2f_c01283{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);}
.m2c_c01283{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1_c01283{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);}
.m44_c01283{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m2_c01283{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01283{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m13_c01283{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m55_c01283{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01283{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m39_c01283{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01283{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01283{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);}
.m25_c01283{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m33_c01283{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);}
.m2a_c01283{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);}
.m52_c01283{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m53_c01283{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m11_c01283{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m45_c01283{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);}
.m51_c01283{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m3_c01283{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m24_c01283{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m41_c01283{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);}
.m27_c01283{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01283{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m5_c01283{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m29_c01283{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);}
.m3d_c01283{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);}
.m2d_c01283{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.me_c01283{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);}
.md_c01283{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m18_c01283{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_c01283{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.mb_c01283{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m37_c01283{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01283{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01283{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01283{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m20_c01283{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);}
.m46_c01283{transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);}
.m9_c01283{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.ma_c01283{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m14_c01283{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);}
.m42_c01283{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m7_c01283{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m4_c01283{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);}
.m6_c01283{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m43_c01283{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m8_c01283{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);}
.m38_c01283{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m21_c01283{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01283{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m30_c01283{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);}
.m16_c01283{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m10_c01283{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m28_c01283{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01283{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m19_c01283{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01283{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);}
.m12_c01283{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);}
.m48_c01283{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01283{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01283{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m47_c01283{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);}
.m4a_c01283{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m40_c01283{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01283{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m50_c01283{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);}
.m54_c01283{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m36_c01283{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m17_c01283{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m4d_c01283{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01283{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);}
.m56_c01283{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01283{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m31_c01283{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m59_c01283{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m22_c01283{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m26_c01283{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m15_c01283{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);}
.mc_c01283{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);}
.mf_c01283{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);}
.m57_c01283{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m58_c01283{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m34_c01283{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m35_c01283{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m32_c01283{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.m23_c01283{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m49_c01283{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.v1_c01283{vertical-align:-2.880000px;}
.v0_c01283{vertical-align:0.000000px;}
.ls0_c01283{letter-spacing:0.000000px;}
.sc__c01283{text-shadow:none;}
.sc0_c01283{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01283{-webkit-text-stroke:0px transparent;}
.sc0_c01283{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01283{word-spacing:-7.512240px;}
.ws2_c01283{word-spacing:-7.044720px;}
.ws4_c01283{word-spacing:0.000000px;}
.ws0_c01283{word-spacing:2.731680px;}
.ws3_c01283{word-spacing:3.359520px;}
.fc0_c01283{color:transparent;}
.fs9_c01283{font-size:31.680000px;}
.fs5_c01283{font-size:34.560000px;}
.fsc_c01283{font-size:37.440000px;}
.fsd_c01283{font-size:40.320000px;}
.fs4_c01283{font-size:43.200000px;}
.fs3_c01283{font-size:46.080000px;}
.fs7_c01283{font-size:48.960000px;}
.fs1_c01283{font-size:51.840000px;}
.fs6_c01283{font-size:54.720000px;}
.fs8_c01283{font-size:57.600000px;}
.fs2_c01283{font-size:60.480000px;}
.fsa_c01283{font-size:63.360000px;}
.fse_c01283{font-size:66.240000px;}
.fsb_c01283{font-size:69.120000px;}
.fs0_c01283{font-size:77.760000px;}
.y0_c01283{bottom:0.000000px;}
.y6b_c01283{bottom:61.920000px;}
.y69_c01283{bottom:62.640000px;}
.y6c_c01283{bottom:64.080000px;}
.y6a_c01283{bottom:64.800000px;}
.y68_c01283{bottom:68.400000px;}
.y67_c01283{bottom:69.120000px;}
.y66_c01283{bottom:72.000000px;}
.y65_c01283{bottom:105.120000px;}
.y64_c01283{bottom:108.000000px;}
.y63_c01283{bottom:108.720000px;}
.y62_c01283{bottom:109.440000px;}
.y61_c01283{bottom:110.880000px;}
.y60_c01283{bottom:162.000000px;}
.y5f_c01283{bottom:162.720000px;}
.y5e_c01283{bottom:166.320000px;}
.y5d_c01283{bottom:169.200000px;}
.y5a_c01283{bottom:202.320000px;}
.y5c_c01283{bottom:203.040000px;}
.y59_c01283{bottom:205.200000px;}
.y5b_c01283{bottom:205.920000px;}
.y58_c01283{bottom:206.640000px;}
.y56_c01283{bottom:207.360000px;}
.y57_c01283{bottom:208.080000px;}
.y55_c01283{bottom:245.520000px;}
.y52_c01283{bottom:247.680000px;}
.y54_c01283{bottom:248.400000px;}
.y53_c01283{bottom:249.120000px;}
.y51_c01283{bottom:249.840000px;}
.y50_c01283{bottom:254.160000px;}
.y4e_c01283{bottom:288.000000px;}
.y4f_c01283{bottom:290.880000px;}
.y4d_c01283{bottom:291.600000px;}
.y4c_c01283{bottom:292.320000px;}
.y4b_c01283{bottom:293.040000px;}
.y4a_c01283{bottom:294.480000px;}
.y49_c01283{bottom:297.360000px;}
.y48_c01283{bottom:331.200000px;}
.y46_c01283{bottom:331.920000px;}
.y47_c01283{bottom:334.080000px;}
.y45_c01283{bottom:335.520000px;}
.y43_c01283{bottom:374.400000px;}
.y42_c01283{bottom:375.120000px;}
.y44_c01283{bottom:376.560000px;}
.y40_c01283{bottom:378.000000px;}
.y41_c01283{bottom:378.720000px;}
.y3f_c01283{bottom:416.880000px;}
.y3e_c01283{bottom:417.600000px;}
.y3b_c01283{bottom:419.760000px;}
.y3c_c01283{bottom:420.480000px;}
.y3d_c01283{bottom:421.200000px;}
.y3a_c01283{bottom:423.360000px;}
.y39_c01283{bottom:460.080000px;}
.y37_c01283{bottom:460.800000px;}
.y35_c01283{bottom:462.960000px;}
.y38_c01283{bottom:463.680000px;}
.y36_c01283{bottom:464.400000px;}
.y34_c01283{bottom:465.840000px;}
.y33_c01283{bottom:503.280000px;}
.y31_c01283{bottom:504.000000px;}
.y30_c01283{bottom:504.720000px;}
.y32_c01283{bottom:506.160000px;}
.y2f_c01283{bottom:507.600000px;}
.y2e_c01283{bottom:508.320000px;}
.y2c_c01283{bottom:546.480000px;}
.y2d_c01283{bottom:547.200000px;}
.y2b_c01283{bottom:549.360000px;}
.y2a_c01283{bottom:550.080000px;}
.y29_c01283{bottom:550.800000px;}
.y26_c01283{bottom:590.400000px;}
.y27_c01283{bottom:592.560000px;}
.y28_c01283{bottom:593.280000px;}
.y25_c01283{bottom:594.000000px;}
.y24_c01283{bottom:643.680000px;}
.y23_c01283{bottom:645.840000px;}
.y22_c01283{bottom:646.560000px;}
.y1f_c01283{bottom:686.160000px;}
.y20_c01283{bottom:686.880000px;}
.y1e_c01283{bottom:689.040000px;}
.y21_c01283{bottom:689.760000px;}
.y18_c01283{bottom:728.640000px;}
.y19_c01283{bottom:729.360000px;}
.y1c_c01283{bottom:730.080000px;}
.y1d_c01283{bottom:731.520000px;}
.y1b_c01283{bottom:732.240000px;}
.y1a_c01283{bottom:732.960000px;}
.y15_c01283{bottom:774.720000px;}
.y16_c01283{bottom:775.440000px;}
.y17_c01283{bottom:776.160000px;}
.y13_c01283{bottom:815.760000px;}
.y10_c01283{bottom:816.480000px;}
.y11_c01283{bottom:817.920000px;}
.y12_c01283{bottom:818.640000px;}
.y14_c01283{bottom:819.360000px;}
.yc_c01283{bottom:856.080000px;}
.ye_c01283{bottom:858.960000px;}
.yd_c01283{bottom:861.120000px;}
.yf_c01283{bottom:861.840000px;}
.y8_c01283{bottom:901.440000px;}
.yb_c01283{bottom:902.160000px;}
.ya_c01283{bottom:903.600000px;}
.y9_c01283{bottom:904.320000px;}
.y5_c01283{bottom:943.920000px;}
.y6_c01283{bottom:945.360000px;}
.y4_c01283{bottom:946.800000px;}
.y7_c01283{bottom:947.520000px;}
.y3_c01283{bottom:1000.080000px;}
.y2_c01283{bottom:1054.800000px;}
.y1_c01283{bottom:1107.360000px;}
.ha_c01283{height:28.508906px;}
.h7_c01283{height:31.100625px;}
.hf_c01283{height:33.692344px;}
.h10_c01283{height:36.284062px;}
.h6_c01283{height:38.875781px;}
.h5_c01283{height:41.467500px;}
.hc_c01283{height:44.059219px;}
.h3_c01283{height:46.650937px;}
.h9_c01283{height:48.954375px;}
.h8_c01283{height:49.242656px;}
.hb_c01283{height:51.834375px;}
.h4_c01283{height:54.426094px;}
.hd_c01283{height:57.017812px;}
.h11_c01283{height:59.609531px;}
.he_c01283{height:62.201250px;}
.h2_c01283{height:69.976406px;}
.h0_c01283{height:1152.720000px;}
.h1_c01283{height:1152.750000px;}
.w0_c01283{width:763.200000px;}
.w1_c01283{width:763.500000px;}
.x0_c01283{left:0.000000px;}
.xb_c01283{left:47.520000px;}
.x41_c01283{left:49.680000px;}
.x4b_c01283{left:51.120000px;}
.x17_c01283{left:56.160000px;}
.x27_c01283{left:75.600000px;}
.x46_c01283{left:77.040000px;}
.x3c_c01283{left:84.960000px;}
.x40_c01283{left:86.400000px;}
.x18_c01283{left:95.760000px;}
.x49_c01283{left:97.200000px;}
.x21_c01283{left:105.840000px;}
.x2c_c01283{left:115.200000px;}
.x37_c01283{left:116.640000px;}
.x4a_c01283{left:126.000000px;}
.x1f_c01283{left:136.080000px;}
.x2d_c01283{left:146.160000px;}
.x5_c01283{left:147.600000px;}
.x19_c01283{left:157.680000px;}
.xc_c01283{left:167.760000px;}
.x47_c01283{left:177.840000px;}
.x2e_c01283{left:179.280000px;}
.x22_c01283{left:189.360000px;}
.x12_c01283{left:198.720000px;}
.x4_c01283{left:200.880000px;}
.x38_c01283{left:210.240000px;}
.x48_c01283{left:220.320000px;}
.x28_c01283{left:221.760000px;}
.x39_c01283{left:232.560000px;}
.x2_c01283{left:244.080000px;}
.x42_c01283{left:253.440000px;}
.xd_c01283{left:254.880000px;}
.x3a_c01283{left:264.960000px;}
.x13_c01283{left:276.480000px;}
.xe_c01283{left:285.840000px;}
.x34_c01283{left:297.360000px;}
.x3d_c01283{left:307.440000px;}
.x1a_c01283{left:308.880000px;}
.x6_c01283{left:318.960000px;}
.x35_c01283{left:329.760000px;}
.x3_c01283{left:331.200000px;}
.x2f_c01283{left:340.560000px;}
.x1b_c01283{left:351.360000px;}
.x29_c01283{left:362.160000px;}
.x7_c01283{left:363.600000px;}
.x30_c01283{left:372.960000px;}
.x2a_c01283{left:383.760000px;}
.x4c_c01283{left:395.280000px;}
.xf_c01283{left:406.080000px;}
.x23_c01283{left:427.680000px;}
.x43_c01283{left:429.840000px;}
.x31_c01283{left:438.480000px;}
.x3e_c01283{left:449.280000px;}
.x14_c01283{left:460.800000px;}
.x20_c01283{left:470.880000px;}
.x36_c01283{left:480.960000px;}
.x32_c01283{left:483.120000px;}
.x15_c01283{left:492.480000px;}
.x8_c01283{left:493.920000px;}
.x10_c01283{left:504.000000px;}
.x9_c01283{left:514.080000px;}
.x1c_c01283{left:525.600000px;}
.x11_c01283{left:536.400000px;}
.x24_c01283{left:547.200000px;}
.x44_c01283{left:558.000000px;}
.x3b_c01283{left:568.080000px;}
.x33_c01283{left:570.240000px;}
.x2b_c01283{left:580.320000px;}
.x45_c01283{left:590.400000px;}
.x25_c01283{left:591.840000px;}
.x16_c01283{left:601.920000px;}
.x1d_c01283{left:612.720000px;}
.x3f_c01283{left:623.520000px;}
.x26_c01283{left:635.040000px;}
.x1e_c01283{left:645.840000px;}
.xa_c01283{left:655.200000px;}
.x1_c01283{left:666.000000px;}
@media print{
.v1_c01283{vertical-align:-2.560000pt;}
.v0_c01283{vertical-align:0.000000pt;}
.ls0_c01283{letter-spacing:0.000000pt;}
.ws1_c01283{word-spacing:-6.677547pt;}
.ws2_c01283{word-spacing:-6.261973pt;}
.ws4_c01283{word-spacing:0.000000pt;}
.ws0_c01283{word-spacing:2.428160pt;}
.ws3_c01283{word-spacing:2.986240pt;}
.fs9_c01283{font-size:28.160000pt;}
.fs5_c01283{font-size:30.720000pt;}
.fsc_c01283{font-size:33.280000pt;}
.fsd_c01283{font-size:35.840000pt;}
.fs4_c01283{font-size:38.400000pt;}
.fs3_c01283{font-size:40.960000pt;}
.fs7_c01283{font-size:43.520000pt;}
.fs1_c01283{font-size:46.080000pt;}
.fs6_c01283{font-size:48.640000pt;}
.fs8_c01283{font-size:51.200000pt;}
.fs2_c01283{font-size:53.760000pt;}
.fsa_c01283{font-size:56.320000pt;}
.fse_c01283{font-size:58.880000pt;}
.fsb_c01283{font-size:61.440000pt;}
.fs0_c01283{font-size:69.120000pt;}
.y0_c01283{bottom:0.000000pt;}
.y6b_c01283{bottom:55.040000pt;}
.y69_c01283{bottom:55.680000pt;}
.y6c_c01283{bottom:56.960000pt;}
.y6a_c01283{bottom:57.600000pt;}
.y68_c01283{bottom:60.800000pt;}
.y67_c01283{bottom:61.440000pt;}
.y66_c01283{bottom:64.000000pt;}
.y65_c01283{bottom:93.440000pt;}
.y64_c01283{bottom:96.000000pt;}
.y63_c01283{bottom:96.640000pt;}
.y62_c01283{bottom:97.280000pt;}
.y61_c01283{bottom:98.560000pt;}
.y60_c01283{bottom:144.000000pt;}
.y5f_c01283{bottom:144.640000pt;}
.y5e_c01283{bottom:147.840000pt;}
.y5d_c01283{bottom:150.400000pt;}
.y5a_c01283{bottom:179.840000pt;}
.y5c_c01283{bottom:180.480000pt;}
.y59_c01283{bottom:182.400000pt;}
.y5b_c01283{bottom:183.040000pt;}
.y58_c01283{bottom:183.680000pt;}
.y56_c01283{bottom:184.320000pt;}
.y57_c01283{bottom:184.960000pt;}
.y55_c01283{bottom:218.240000pt;}
.y52_c01283{bottom:220.160000pt;}
.y54_c01283{bottom:220.800000pt;}
.y53_c01283{bottom:221.440000pt;}
.y51_c01283{bottom:222.080000pt;}
.y50_c01283{bottom:225.920000pt;}
.y4e_c01283{bottom:256.000000pt;}
.y4f_c01283{bottom:258.560000pt;}
.y4d_c01283{bottom:259.200000pt;}
.y4c_c01283{bottom:259.840000pt;}
.y4b_c01283{bottom:260.480000pt;}
.y4a_c01283{bottom:261.760000pt;}
.y49_c01283{bottom:264.320000pt;}
.y48_c01283{bottom:294.400000pt;}
.y46_c01283{bottom:295.040000pt;}
.y47_c01283{bottom:296.960000pt;}
.y45_c01283{bottom:298.240000pt;}
.y43_c01283{bottom:332.800000pt;}
.y42_c01283{bottom:333.440000pt;}
.y44_c01283{bottom:334.720000pt;}
.y40_c01283{bottom:336.000000pt;}
.y41_c01283{bottom:336.640000pt;}
.y3f_c01283{bottom:370.560000pt;}
.y3e_c01283{bottom:371.200000pt;}
.y3b_c01283{bottom:373.120000pt;}
.y3c_c01283{bottom:373.760000pt;}
.y3d_c01283{bottom:374.400000pt;}
.y3a_c01283{bottom:376.320000pt;}
.y39_c01283{bottom:408.960000pt;}
.y37_c01283{bottom:409.600000pt;}
.y35_c01283{bottom:411.520000pt;}
.y38_c01283{bottom:412.160000pt;}
.y36_c01283{bottom:412.800000pt;}
.y34_c01283{bottom:414.080000pt;}
.y33_c01283{bottom:447.360000pt;}
.y31_c01283{bottom:448.000000pt;}
.y30_c01283{bottom:448.640000pt;}
.y32_c01283{bottom:449.920000pt;}
.y2f_c01283{bottom:451.200000pt;}
.y2e_c01283{bottom:451.840000pt;}
.y2c_c01283{bottom:485.760000pt;}
.y2d_c01283{bottom:486.400000pt;}
.y2b_c01283{bottom:488.320000pt;}
.y2a_c01283{bottom:488.960000pt;}
.y29_c01283{bottom:489.600000pt;}
.y26_c01283{bottom:524.800000pt;}
.y27_c01283{bottom:526.720000pt;}
.y28_c01283{bottom:527.360000pt;}
.y25_c01283{bottom:528.000000pt;}
.y24_c01283{bottom:572.160000pt;}
.y23_c01283{bottom:574.080000pt;}
.y22_c01283{bottom:574.720000pt;}
.y1f_c01283{bottom:609.920000pt;}
.y20_c01283{bottom:610.560000pt;}
.y1e_c01283{bottom:612.480000pt;}
.y21_c01283{bottom:613.120000pt;}
.y18_c01283{bottom:647.680000pt;}
.y19_c01283{bottom:648.320000pt;}
.y1c_c01283{bottom:648.960000pt;}
.y1d_c01283{bottom:650.240000pt;}
.y1b_c01283{bottom:650.880000pt;}
.y1a_c01283{bottom:651.520000pt;}
.y15_c01283{bottom:688.640000pt;}
.y16_c01283{bottom:689.280000pt;}
.y17_c01283{bottom:689.920000pt;}
.y13_c01283{bottom:725.120000pt;}
.y10_c01283{bottom:725.760000pt;}
.y11_c01283{bottom:727.040000pt;}
.y12_c01283{bottom:727.680000pt;}
.y14_c01283{bottom:728.320000pt;}
.yc_c01283{bottom:760.960000pt;}
.ye_c01283{bottom:763.520000pt;}
.yd_c01283{bottom:765.440000pt;}
.yf_c01283{bottom:766.080000pt;}
.y8_c01283{bottom:801.280000pt;}
.yb_c01283{bottom:801.920000pt;}
.ya_c01283{bottom:803.200000pt;}
.y9_c01283{bottom:803.840000pt;}
.y5_c01283{bottom:839.040000pt;}
.y6_c01283{bottom:840.320000pt;}
.y4_c01283{bottom:841.600000pt;}
.y7_c01283{bottom:842.240000pt;}
.y3_c01283{bottom:888.960000pt;}
.y2_c01283{bottom:937.600000pt;}
.y1_c01283{bottom:984.320000pt;}
.ha_c01283{height:25.341250pt;}
.h7_c01283{height:27.645000pt;}
.hf_c01283{height:29.948750pt;}
.h10_c01283{height:32.252500pt;}
.h6_c01283{height:34.556250pt;}
.h5_c01283{height:36.860000pt;}
.hc_c01283{height:39.163750pt;}
.h3_c01283{height:41.467500pt;}
.h9_c01283{height:43.515000pt;}
.h8_c01283{height:43.771250pt;}
.hb_c01283{height:46.075000pt;}
.h4_c01283{height:48.378750pt;}
.hd_c01283{height:50.682500pt;}
.h11_c01283{height:52.986250pt;}
.he_c01283{height:55.290000pt;}
.h2_c01283{height:62.201250pt;}
.h0_c01283{height:1024.640000pt;}
.h1_c01283{height:1024.666667pt;}
.w0_c01283{width:678.400000pt;}
.w1_c01283{width:678.666667pt;}
.x0_c01283{left:0.000000pt;}
.xb_c01283{left:42.240000pt;}
.x41_c01283{left:44.160000pt;}
.x4b_c01283{left:45.440000pt;}
.x17_c01283{left:49.920000pt;}
.x27_c01283{left:67.200000pt;}
.x46_c01283{left:68.480000pt;}
.x3c_c01283{left:75.520000pt;}
.x40_c01283{left:76.800000pt;}
.x18_c01283{left:85.120000pt;}
.x49_c01283{left:86.400000pt;}
.x21_c01283{left:94.080000pt;}
.x2c_c01283{left:102.400000pt;}
.x37_c01283{left:103.680000pt;}
.x4a_c01283{left:112.000000pt;}
.x1f_c01283{left:120.960000pt;}
.x2d_c01283{left:129.920000pt;}
.x5_c01283{left:131.200000pt;}
.x19_c01283{left:140.160000pt;}
.xc_c01283{left:149.120000pt;}
.x47_c01283{left:158.080000pt;}
.x2e_c01283{left:159.360000pt;}
.x22_c01283{left:168.320000pt;}
.x12_c01283{left:176.640000pt;}
.x4_c01283{left:178.560000pt;}
.x38_c01283{left:186.880000pt;}
.x48_c01283{left:195.840000pt;}
.x28_c01283{left:197.120000pt;}
.x39_c01283{left:206.720000pt;}
.x2_c01283{left:216.960000pt;}
.x42_c01283{left:225.280000pt;}
.xd_c01283{left:226.560000pt;}
.x3a_c01283{left:235.520000pt;}
.x13_c01283{left:245.760000pt;}
.xe_c01283{left:254.080000pt;}
.x34_c01283{left:264.320000pt;}
.x3d_c01283{left:273.280000pt;}
.x1a_c01283{left:274.560000pt;}
.x6_c01283{left:283.520000pt;}
.x35_c01283{left:293.120000pt;}
.x3_c01283{left:294.400000pt;}
.x2f_c01283{left:302.720000pt;}
.x1b_c01283{left:312.320000pt;}
.x29_c01283{left:321.920000pt;}
.x7_c01283{left:323.200000pt;}
.x30_c01283{left:331.520000pt;}
.x2a_c01283{left:341.120000pt;}
.x4c_c01283{left:351.360000pt;}
.xf_c01283{left:360.960000pt;}
.x23_c01283{left:380.160000pt;}
.x43_c01283{left:382.080000pt;}
.x31_c01283{left:389.760000pt;}
.x3e_c01283{left:399.360000pt;}
.x14_c01283{left:409.600000pt;}
.x20_c01283{left:418.560000pt;}
.x36_c01283{left:427.520000pt;}
.x32_c01283{left:429.440000pt;}
.x15_c01283{left:437.760000pt;}
.x8_c01283{left:439.040000pt;}
.x10_c01283{left:448.000000pt;}
.x9_c01283{left:456.960000pt;}
.x1c_c01283{left:467.200000pt;}
.x11_c01283{left:476.800000pt;}
.x24_c01283{left:486.400000pt;}
.x44_c01283{left:496.000000pt;}
.x3b_c01283{left:504.960000pt;}
.x33_c01283{left:506.880000pt;}
.x2b_c01283{left:515.840000pt;}
.x45_c01283{left:524.800000pt;}
.x25_c01283{left:526.080000pt;}
.x16_c01283{left:535.040000pt;}
.x1d_c01283{left:544.640000pt;}
.x3f_c01283{left:554.240000pt;}
.x26_c01283{left:564.480000pt;}
.x1e_c01283{left:574.080000pt;}
.xa_c01283{left:582.400000pt;}
.x1_c01283{left:592.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_c01284 {
    display:none;
  }
  .loading-indicator_c01284.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01284 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01284 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01284" -> "#page-container .classname_c01284")
 */
.pf_c01284 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01284 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01284.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01284 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01284 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01284 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01284 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01284 {overflow:visible;}
  }
}
.c_c01284 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01284 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01284:after { /* webkit #35443 */
  content: '';
}
.t_c01284:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01284 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01284 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01284 { /* info for Javascript */
  display:none;
}
.l_c01284 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01284 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01284 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01284:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01284{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01284;src:url('chunks/assets/font_5f670a52255c0b2ab0c0f47a.woff2')format("woff");}.ff1_c01284{font-family:ff1_c01284;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4e_c01284{transform:matrix(0.235025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235025,0.000000,0.000000,0.250000,0,0);}
.m54_c01284{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);}
.m4f_c01284{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);}
.m4d_c01284{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m5e_c01284{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);}
.m2a_c01284{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_c01284{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m60_c01284{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01284{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m33_c01284{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m22_c01284{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01284{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m20_c01284{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01284{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01284{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mf_c01284{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m35_c01284{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m49_c01284{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);}
.m5c_c01284{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m31_c01284{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);}
.m59_c01284{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.me_c01284{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m26_c01284{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);}
.m4a_c01284{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_c01284{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m7_c01284{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m14_c01284{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m5a_c01284{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);}
.m30_c01284{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m51_c01284{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m41_c01284{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);}
.m44_c01284{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m1_c01284{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_c01284{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m5b_c01284{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);}
.m0_c01284{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.mb_c01284{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);}
.m3f_c01284{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01284{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);}
.m52_c01284{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m5d_c01284{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m48_c01284{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m6_c01284{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_c01284{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m10_c01284{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01284{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);}
.m4_c01284{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);}
.m39_c01284{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m38_c01284{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m45_c01284{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01284{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m3_c01284{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);}
.m5_c01284{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m36_c01284{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m24_c01284{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);}
.md_c01284{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01284{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);}
.m3b_c01284{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m12_c01284{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);}
.m37_c01284{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m11_c01284{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01284{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);}
.m18_c01284{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m55_c01284{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.mc_c01284{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m42_c01284{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01284{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m34_c01284{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);}
.m3e_c01284{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);}
.m2_c01284{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m8_c01284{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);}
.m5f_c01284{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m32_c01284{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m29_c01284{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m56_c01284{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m21_c01284{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m43_c01284{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m57_c01284{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m46_c01284{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);}
.m28_c01284{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01284{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);}
.m47_c01284{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m23_c01284{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);}
.m13_c01284{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m50_c01284{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m27_c01284{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m16_c01284{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m25_c01284{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01284{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);}
.m4b_c01284{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01284{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m9_c01284{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m40_c01284{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m53_c01284{transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);}
.m15_c01284{transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);}
.ma_c01284{transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);}
.m58_c01284{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.v1_c01284{vertical-align:-2.880000px;}
.v0_c01284{vertical-align:0.000000px;}
.v2_c01284{vertical-align:11.520000px;}
.ls0_c01284{letter-spacing:0.000000px;}
.sc__c01284{text-shadow:none;}
.sc0_c01284{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01284{-webkit-text-stroke:0px transparent;}
.sc0_c01284{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01284{word-spacing:-5.858880px;}
.ws2_c01284{word-spacing:0.000000px;}
.ws1_c01284{word-spacing:3.924480px;}
.fc0_c01284{color:transparent;}
.fse_c01284{font-size:31.680000px;}
.fs6_c01284{font-size:34.560000px;}
.fsa_c01284{font-size:37.440000px;}
.fs8_c01284{font-size:40.320000px;}
.fsc_c01284{font-size:43.200000px;}
.fs4_c01284{font-size:46.080000px;}
.fs2_c01284{font-size:48.960000px;}
.fs1_c01284{font-size:51.840000px;}
.fs3_c01284{font-size:54.720000px;}
.fs7_c01284{font-size:57.600000px;}
.fs5_c01284{font-size:60.480000px;}
.fsb_c01284{font-size:63.360000px;}
.fsd_c01284{font-size:66.240000px;}
.fs9_c01284{font-size:69.120000px;}
.fs0_c01284{font-size:72.000000px;}
.y0_c01284{bottom:0.000000px;}
.y74_c01284{bottom:79.920000px;}
.y73_c01284{bottom:80.640000px;}
.y75_c01284{bottom:81.360000px;}
.y72_c01284{bottom:84.240000px;}
.y71_c01284{bottom:86.400000px;}
.y6f_c01284{bottom:123.120000px;}
.y70_c01284{bottom:123.840000px;}
.y6e_c01284{bottom:124.560000px;}
.y6d_c01284{bottom:128.160000px;}
.y6c_c01284{bottom:130.320000px;}
.y6b_c01284{bottom:163.440000px;}
.y6a_c01284{bottom:164.160000px;}
.y69_c01284{bottom:166.320000px;}
.y68_c01284{bottom:167.040000px;}
.y66_c01284{bottom:167.760000px;}
.y67_c01284{bottom:169.200000px;}
.y65_c01284{bottom:172.800000px;}
.y63_c01284{bottom:205.920000px;}
.y64_c01284{bottom:206.640000px;}
.y60_c01284{bottom:207.360000px;}
.y62_c01284{bottom:209.520000px;}
.y61_c01284{bottom:210.240000px;}
.y5e_c01284{bottom:210.960000px;}
.y5d_c01284{bottom:211.680000px;}
.y5f_c01284{bottom:212.400000px;}
.y5a_c01284{bottom:249.840000px;}
.y59_c01284{bottom:251.280000px;}
.y5c_c01284{bottom:252.000000px;}
.y5b_c01284{bottom:252.720000px;}
.y58_c01284{bottom:254.160000px;}
.y57_c01284{bottom:255.600000px;}
.y54_c01284{bottom:292.320000px;}
.y56_c01284{bottom:293.040000px;}
.y52_c01284{bottom:293.760000px;}
.y53_c01284{bottom:295.200000px;}
.y55_c01284{bottom:295.920000px;}
.y51_c01284{bottom:300.240000px;}
.y4f_c01284{bottom:336.240000px;}
.y4e_c01284{bottom:336.960000px;}
.y50_c01284{bottom:339.120000px;}
.y4d_c01284{bottom:339.840000px;}
.y4c_c01284{bottom:341.280000px;}
.y4b_c01284{bottom:396.000000px;}
.y46_c01284{bottom:433.440000px;}
.y49_c01284{bottom:434.880000px;}
.y4a_c01284{bottom:435.600000px;}
.y47_c01284{bottom:436.320000px;}
.y48_c01284{bottom:437.040000px;}
.y45_c01284{bottom:437.760000px;}
.y44_c01284{bottom:438.480000px;}
.y42_c01284{bottom:477.360000px;}
.y41_c01284{bottom:478.800000px;}
.y43_c01284{bottom:479.520000px;}
.y3f_c01284{bottom:480.240000px;}
.y40_c01284{bottom:480.960000px;}
.y3d_c01284{bottom:518.400000px;}
.y3c_c01284{bottom:519.840000px;}
.y3a_c01284{bottom:520.560000px;}
.y3e_c01284{bottom:521.280000px;}
.y3b_c01284{bottom:522.720000px;}
.y39_c01284{bottom:523.440000px;}
.y38_c01284{bottom:524.880000px;}
.y37_c01284{bottom:563.040000px;}
.y34_c01284{bottom:563.760000px;}
.y35_c01284{bottom:565.200000px;}
.y36_c01284{bottom:565.920000px;}
.y2f_c01284{bottom:604.800000px;}
.y31_c01284{bottom:605.520000px;}
.y30_c01284{bottom:606.240000px;}
.y33_c01284{bottom:607.680000px;}
.y32_c01284{bottom:608.400000px;}
.y2e_c01284{bottom:609.120000px;}
.y29_c01284{bottom:648.000000px;}
.y2d_c01284{bottom:648.720000px;}
.y2c_c01284{bottom:650.160000px;}
.y2b_c01284{bottom:650.880000px;}
.y2a_c01284{bottom:651.600000px;}
.y27_c01284{bottom:691.200000px;}
.y28_c01284{bottom:693.360000px;}
.y26_c01284{bottom:694.080000px;}
.y24_c01284{bottom:743.760000px;}
.y25_c01284{bottom:745.200000px;}
.y23_c01284{bottom:747.360000px;}
.y21_c01284{bottom:786.960000px;}
.y20_c01284{bottom:787.680000px;}
.y1f_c01284{bottom:788.400000px;}
.y22_c01284{bottom:790.560000px;}
.y1c_c01284{bottom:830.160000px;}
.y1a_c01284{bottom:831.600000px;}
.y1b_c01284{bottom:832.320000px;}
.y1d_c01284{bottom:833.040000px;}
.y1e_c01284{bottom:833.760000px;}
.y19_c01284{bottom:874.080000px;}
.y17_c01284{bottom:876.240000px;}
.y18_c01284{bottom:876.960000px;}
.y16_c01284{bottom:923.760000px;}
.y10_c01284{bottom:969.120000px;}
.y15_c01284{bottom:970.560000px;}
.y11_c01284{bottom:971.280000px;}
.y12_c01284{bottom:972.000000px;}
.y13_c01284{bottom:972.720000px;}
.y14_c01284{bottom:973.440000px;}
.y9_c01284{bottom:1011.600000px;}
.ye_c01284{bottom:1013.040000px;}
.yf_c01284{bottom:1013.760000px;}
.ya_c01284{bottom:1014.480000px;}
.yb_c01284{bottom:1015.200000px;}
.yc_c01284{bottom:1015.920000px;}
.yd_c01284{bottom:1016.640000px;}
.y2_c01284{bottom:1054.080000px;}
.y5_c01284{bottom:1056.240000px;}
.y3_c01284{bottom:1056.960000px;}
.y4_c01284{bottom:1057.680000px;}
.y7_c01284{bottom:1059.120000px;}
.y6_c01284{bottom:1059.840000px;}
.y8_c01284{bottom:1060.560000px;}
.y1_c01284{bottom:1096.560000px;}
.h10_c01284{height:28.508906px;}
.h8_c01284{height:31.100625px;}
.hc_c01284{height:33.692344px;}
.ha_c01284{height:36.284062px;}
.he_c01284{height:38.875781px;}
.h6_c01284{height:41.467500px;}
.h4_c01284{height:44.059219px;}
.h3_c01284{height:46.650937px;}
.h5_c01284{height:49.242656px;}
.h9_c01284{height:51.834375px;}
.h7_c01284{height:54.426094px;}
.hd_c01284{height:57.017812px;}
.hf_c01284{height:59.609531px;}
.hb_c01284{height:62.201250px;}
.h11_c01284{height:63.354375px;}
.h2_c01284{height:64.792969px;}
.h0_c01284{height:1153.440000px;}
.h1_c01284{height:1153.500000px;}
.w1_c01284{width:765.000000px;}
.w0_c01284{width:765.360000px;}
.x0_c01284{left:0.000000px;}
.x2_c01284{left:50.400000px;}
.x15_c01284{left:51.840000px;}
.x42_c01284{left:53.280000px;}
.x52_c01284{left:54.720000px;}
.x55_c01284{left:56.160000px;}
.x57_c01284{left:74.160000px;}
.x22_c01284{left:89.280000px;}
.x3e_c01284{left:90.720000px;}
.x2c_c01284{left:92.880000px;}
.x53_c01284{left:101.520000px;}
.x3_c01284{left:109.440000px;}
.x4f_c01284{left:110.880000px;}
.xd_c01284{left:120.960000px;}
.x16_c01284{left:129.600000px;}
.x23_c01284{left:131.040000px;}
.x37_c01284{left:140.400000px;}
.x5a_c01284{left:142.560000px;}
.x4_c01284{left:149.760000px;}
.x1d_c01284{left:151.200000px;}
.x2e_c01284{left:152.640000px;}
.x17_c01284{left:161.280000px;}
.x43_c01284{left:162.720000px;}
.xe_c01284{left:172.080000px;}
.x2d_c01284{left:173.520000px;}
.x49_c01284{left:183.600000px;}
.x1e_c01284{left:193.680000px;}
.x28_c01284{left:203.040000px;}
.x32_c01284{left:204.480000px;}
.x18_c01284{left:215.280000px;}
.xf_c01284{left:236.880000px;}
.x19_c01284{left:246.960000px;}
.x3f_c01284{left:248.400000px;}
.x58_c01284{left:257.040000px;}
.x44_c01284{left:259.200000px;}
.x5_c01284{left:268.560000px;}
.x50_c01284{left:270.000000px;}
.x4a_c01284{left:280.080000px;}
.x33_c01284{left:289.440000px;}
.x45_c01284{left:291.600000px;}
.x29_c01284{left:293.760000px;}
.x24_c01284{left:300.240000px;}
.x38_c01284{left:301.680000px;}
.x6_c01284{left:312.480000px;}
.x1f_c01284{left:322.560000px;}
.x59_c01284{left:324.000000px;}
.x1a_c01284{left:334.080000px;}
.x56_c01284{left:335.520000px;}
.x7_c01284{left:345.600000px;}
.x39_c01284{left:356.400000px;}
.x10_c01284{left:366.480000px;}
.x34_c01284{left:367.920000px;}
.x25_c01284{left:378.000000px;}
.x11_c01284{left:388.800000px;}
.x2a_c01284{left:390.240000px;}
.x3b_c01284{left:399.600000px;}
.x26_c01284{left:410.400000px;}
.x46_c01284{left:421.200000px;}
.x8_c01284{left:432.000000px;}
.x4b_c01284{left:442.080000px;}
.x1b_c01284{left:453.600000px;}
.x51_c01284{left:455.040000px;}
.x35_c01284{left:465.120000px;}
.x12_c01284{left:475.920000px;}
.x40_c01284{left:478.080000px;}
.x3a_c01284{left:486.720000px;}
.x9_c01284{left:496.800000px;}
.x36_c01284{left:507.600000px;}
.x4d_c01284{left:509.040000px;}
.x2f_c01284{left:519.120000px;}
.x54_c01284{left:520.560000px;}
.x3c_c01284{left:529.920000px;}
.x20_c01284{left:540.000000px;}
.x47_c01284{left:541.440000px;}
.x4c_c01284{left:552.960000px;}
.x21_c01284{left:563.040000px;}
.x13_c01284{left:572.400000px;}
.x48_c01284{left:573.840000px;}
.x41_c01284{left:575.280000px;}
.xa_c01284{left:584.640000px;}
.x2b_c01284{left:594.720000px;}
.x27_c01284{left:596.160000px;}
.xb_c01284{left:606.240000px;}
.x30_c01284{left:627.840000px;}
.xc_c01284{left:638.640000px;}
.x14_c01284{left:649.440000px;}
.x3d_c01284{left:660.240000px;}
.x4e_c01284{left:661.680000px;}
.x1_c01284{left:666.000000px;}
.x31_c01284{left:671.760000px;}
.x1c_c01284{left:682.560000px;}
@media print{
.v1_c01284{vertical-align:-2.560000pt;}
.v0_c01284{vertical-align:0.000000pt;}
.v2_c01284{vertical-align:10.240000pt;}
.ls0_c01284{letter-spacing:0.000000pt;}
.ws0_c01284{word-spacing:-5.207893pt;}
.ws2_c01284{word-spacing:0.000000pt;}
.ws1_c01284{word-spacing:3.488427pt;}
.fse_c01284{font-size:28.160000pt;}
.fs6_c01284{font-size:30.720000pt;}
.fsa_c01284{font-size:33.280000pt;}
.fs8_c01284{font-size:35.840000pt;}
.fsc_c01284{font-size:38.400000pt;}
.fs4_c01284{font-size:40.960000pt;}
.fs2_c01284{font-size:43.520000pt;}
.fs1_c01284{font-size:46.080000pt;}
.fs3_c01284{font-size:48.640000pt;}
.fs7_c01284{font-size:51.200000pt;}
.fs5_c01284{font-size:53.760000pt;}
.fsb_c01284{font-size:56.320000pt;}
.fsd_c01284{font-size:58.880000pt;}
.fs9_c01284{font-size:61.440000pt;}
.fs0_c01284{font-size:64.000000pt;}
.y0_c01284{bottom:0.000000pt;}
.y74_c01284{bottom:71.040000pt;}
.y73_c01284{bottom:71.680000pt;}
.y75_c01284{bottom:72.320000pt;}
.y72_c01284{bottom:74.880000pt;}
.y71_c01284{bottom:76.800000pt;}
.y6f_c01284{bottom:109.440000pt;}
.y70_c01284{bottom:110.080000pt;}
.y6e_c01284{bottom:110.720000pt;}
.y6d_c01284{bottom:113.920000pt;}
.y6c_c01284{bottom:115.840000pt;}
.y6b_c01284{bottom:145.280000pt;}
.y6a_c01284{bottom:145.920000pt;}
.y69_c01284{bottom:147.840000pt;}
.y68_c01284{bottom:148.480000pt;}
.y66_c01284{bottom:149.120000pt;}
.y67_c01284{bottom:150.400000pt;}
.y65_c01284{bottom:153.600000pt;}
.y63_c01284{bottom:183.040000pt;}
.y64_c01284{bottom:183.680000pt;}
.y60_c01284{bottom:184.320000pt;}
.y62_c01284{bottom:186.240000pt;}
.y61_c01284{bottom:186.880000pt;}
.y5e_c01284{bottom:187.520000pt;}
.y5d_c01284{bottom:188.160000pt;}
.y5f_c01284{bottom:188.800000pt;}
.y5a_c01284{bottom:222.080000pt;}
.y59_c01284{bottom:223.360000pt;}
.y5c_c01284{bottom:224.000000pt;}
.y5b_c01284{bottom:224.640000pt;}
.y58_c01284{bottom:225.920000pt;}
.y57_c01284{bottom:227.200000pt;}
.y54_c01284{bottom:259.840000pt;}
.y56_c01284{bottom:260.480000pt;}
.y52_c01284{bottom:261.120000pt;}
.y53_c01284{bottom:262.400000pt;}
.y55_c01284{bottom:263.040000pt;}
.y51_c01284{bottom:266.880000pt;}
.y4f_c01284{bottom:298.880000pt;}
.y4e_c01284{bottom:299.520000pt;}
.y50_c01284{bottom:301.440000pt;}
.y4d_c01284{bottom:302.080000pt;}
.y4c_c01284{bottom:303.360000pt;}
.y4b_c01284{bottom:352.000000pt;}
.y46_c01284{bottom:385.280000pt;}
.y49_c01284{bottom:386.560000pt;}
.y4a_c01284{bottom:387.200000pt;}
.y47_c01284{bottom:387.840000pt;}
.y48_c01284{bottom:388.480000pt;}
.y45_c01284{bottom:389.120000pt;}
.y44_c01284{bottom:389.760000pt;}
.y42_c01284{bottom:424.320000pt;}
.y41_c01284{bottom:425.600000pt;}
.y43_c01284{bottom:426.240000pt;}
.y3f_c01284{bottom:426.880000pt;}
.y40_c01284{bottom:427.520000pt;}
.y3d_c01284{bottom:460.800000pt;}
.y3c_c01284{bottom:462.080000pt;}
.y3a_c01284{bottom:462.720000pt;}
.y3e_c01284{bottom:463.360000pt;}
.y3b_c01284{bottom:464.640000pt;}
.y39_c01284{bottom:465.280000pt;}
.y38_c01284{bottom:466.560000pt;}
.y37_c01284{bottom:500.480000pt;}
.y34_c01284{bottom:501.120000pt;}
.y35_c01284{bottom:502.400000pt;}
.y36_c01284{bottom:503.040000pt;}
.y2f_c01284{bottom:537.600000pt;}
.y31_c01284{bottom:538.240000pt;}
.y30_c01284{bottom:538.880000pt;}
.y33_c01284{bottom:540.160000pt;}
.y32_c01284{bottom:540.800000pt;}
.y2e_c01284{bottom:541.440000pt;}
.y29_c01284{bottom:576.000000pt;}
.y2d_c01284{bottom:576.640000pt;}
.y2c_c01284{bottom:577.920000pt;}
.y2b_c01284{bottom:578.560000pt;}
.y2a_c01284{bottom:579.200000pt;}
.y27_c01284{bottom:614.400000pt;}
.y28_c01284{bottom:616.320000pt;}
.y26_c01284{bottom:616.960000pt;}
.y24_c01284{bottom:661.120000pt;}
.y25_c01284{bottom:662.400000pt;}
.y23_c01284{bottom:664.320000pt;}
.y21_c01284{bottom:699.520000pt;}
.y20_c01284{bottom:700.160000pt;}
.y1f_c01284{bottom:700.800000pt;}
.y22_c01284{bottom:702.720000pt;}
.y1c_c01284{bottom:737.920000pt;}
.y1a_c01284{bottom:739.200000pt;}
.y1b_c01284{bottom:739.840000pt;}
.y1d_c01284{bottom:740.480000pt;}
.y1e_c01284{bottom:741.120000pt;}
.y19_c01284{bottom:776.960000pt;}
.y17_c01284{bottom:778.880000pt;}
.y18_c01284{bottom:779.520000pt;}
.y16_c01284{bottom:821.120000pt;}
.y10_c01284{bottom:861.440000pt;}
.y15_c01284{bottom:862.720000pt;}
.y11_c01284{bottom:863.360000pt;}
.y12_c01284{bottom:864.000000pt;}
.y13_c01284{bottom:864.640000pt;}
.y14_c01284{bottom:865.280000pt;}
.y9_c01284{bottom:899.200000pt;}
.ye_c01284{bottom:900.480000pt;}
.yf_c01284{bottom:901.120000pt;}
.ya_c01284{bottom:901.760000pt;}
.yb_c01284{bottom:902.400000pt;}
.yc_c01284{bottom:903.040000pt;}
.yd_c01284{bottom:903.680000pt;}
.y2_c01284{bottom:936.960000pt;}
.y5_c01284{bottom:938.880000pt;}
.y3_c01284{bottom:939.520000pt;}
.y4_c01284{bottom:940.160000pt;}
.y7_c01284{bottom:941.440000pt;}
.y6_c01284{bottom:942.080000pt;}
.y8_c01284{bottom:942.720000pt;}
.y1_c01284{bottom:974.720000pt;}
.h10_c01284{height:25.341250pt;}
.h8_c01284{height:27.645000pt;}
.hc_c01284{height:29.948750pt;}
.ha_c01284{height:32.252500pt;}
.he_c01284{height:34.556250pt;}
.h6_c01284{height:36.860000pt;}
.h4_c01284{height:39.163750pt;}
.h3_c01284{height:41.467500pt;}
.h5_c01284{height:43.771250pt;}
.h9_c01284{height:46.075000pt;}
.h7_c01284{height:48.378750pt;}
.hd_c01284{height:50.682500pt;}
.hf_c01284{height:52.986250pt;}
.hb_c01284{height:55.290000pt;}
.h11_c01284{height:56.315000pt;}
.h2_c01284{height:57.593750pt;}
.h0_c01284{height:1025.280000pt;}
.h1_c01284{height:1025.333333pt;}
.w1_c01284{width:680.000000pt;}
.w0_c01284{width:680.320000pt;}
.x0_c01284{left:0.000000pt;}
.x2_c01284{left:44.800000pt;}
.x15_c01284{left:46.080000pt;}
.x42_c01284{left:47.360000pt;}
.x52_c01284{left:48.640000pt;}
.x55_c01284{left:49.920000pt;}
.x57_c01284{left:65.920000pt;}
.x22_c01284{left:79.360000pt;}
.x3e_c01284{left:80.640000pt;}
.x2c_c01284{left:82.560000pt;}
.x53_c01284{left:90.240000pt;}
.x3_c01284{left:97.280000pt;}
.x4f_c01284{left:98.560000pt;}
.xd_c01284{left:107.520000pt;}
.x16_c01284{left:115.200000pt;}
.x23_c01284{left:116.480000pt;}
.x37_c01284{left:124.800000pt;}
.x5a_c01284{left:126.720000pt;}
.x4_c01284{left:133.120000pt;}
.x1d_c01284{left:134.400000pt;}
.x2e_c01284{left:135.680000pt;}
.x17_c01284{left:143.360000pt;}
.x43_c01284{left:144.640000pt;}
.xe_c01284{left:152.960000pt;}
.x2d_c01284{left:154.240000pt;}
.x49_c01284{left:163.200000pt;}
.x1e_c01284{left:172.160000pt;}
.x28_c01284{left:180.480000pt;}
.x32_c01284{left:181.760000pt;}
.x18_c01284{left:191.360000pt;}
.xf_c01284{left:210.560000pt;}
.x19_c01284{left:219.520000pt;}
.x3f_c01284{left:220.800000pt;}
.x58_c01284{left:228.480000pt;}
.x44_c01284{left:230.400000pt;}
.x5_c01284{left:238.720000pt;}
.x50_c01284{left:240.000000pt;}
.x4a_c01284{left:248.960000pt;}
.x33_c01284{left:257.280000pt;}
.x45_c01284{left:259.200000pt;}
.x29_c01284{left:261.120000pt;}
.x24_c01284{left:266.880000pt;}
.x38_c01284{left:268.160000pt;}
.x6_c01284{left:277.760000pt;}
.x1f_c01284{left:286.720000pt;}
.x59_c01284{left:288.000000pt;}
.x1a_c01284{left:296.960000pt;}
.x56_c01284{left:298.240000pt;}
.x7_c01284{left:307.200000pt;}
.x39_c01284{left:316.800000pt;}
.x10_c01284{left:325.760000pt;}
.x34_c01284{left:327.040000pt;}
.x25_c01284{left:336.000000pt;}
.x11_c01284{left:345.600000pt;}
.x2a_c01284{left:346.880000pt;}
.x3b_c01284{left:355.200000pt;}
.x26_c01284{left:364.800000pt;}
.x46_c01284{left:374.400000pt;}
.x8_c01284{left:384.000000pt;}
.x4b_c01284{left:392.960000pt;}
.x1b_c01284{left:403.200000pt;}
.x51_c01284{left:404.480000pt;}
.x35_c01284{left:413.440000pt;}
.x12_c01284{left:423.040000pt;}
.x40_c01284{left:424.960000pt;}
.x3a_c01284{left:432.640000pt;}
.x9_c01284{left:441.600000pt;}
.x36_c01284{left:451.200000pt;}
.x4d_c01284{left:452.480000pt;}
.x2f_c01284{left:461.440000pt;}
.x54_c01284{left:462.720000pt;}
.x3c_c01284{left:471.040000pt;}
.x20_c01284{left:480.000000pt;}
.x47_c01284{left:481.280000pt;}
.x4c_c01284{left:491.520000pt;}
.x21_c01284{left:500.480000pt;}
.x13_c01284{left:508.800000pt;}
.x48_c01284{left:510.080000pt;}
.x41_c01284{left:511.360000pt;}
.xa_c01284{left:519.680000pt;}
.x2b_c01284{left:528.640000pt;}
.x27_c01284{left:529.920000pt;}
.xb_c01284{left:538.880000pt;}
.x30_c01284{left:558.080000pt;}
.xc_c01284{left:567.680000pt;}
.x14_c01284{left:577.280000pt;}
.x3d_c01284{left:586.880000pt;}
.x4e_c01284{left:588.160000pt;}
.x1_c01284{left:592.000000pt;}
.x31_c01284{left:597.120000pt;}
.x1c_c01284{left:606.720000pt;}
}





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

.ir_c01285:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01285{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01285;src:url('chunks/assets/font_11356f2a348de23380600d19.woff2')format("woff");}.ff1_c01285{font-family:ff1_c01285;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3b_c01285{transform:matrix(0.126275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126275,0.000000,0.000000,0.250000,0,0);}
.m67_c01285{transform:matrix(0.183675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183675,0.000000,0.000000,0.250000,0,0);}
.m3a_c01285{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01285{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);}
.m53_c01285{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m28_c01285{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);}
.m3f_c01285{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);}
.m25_c01285{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m43_c01285{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m54_c01285{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01285{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m30_c01285{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01285{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m27_c01285{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m51_c01285{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m35_c01285{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m14_c01285{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m63_c01285{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.ma_c01285{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01285{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);}
.m68_c01285{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);}
.m5e_c01285{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);}
.m23_c01285{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01285{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);}
.m4e_c01285{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m44_c01285{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m2_c01285{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m5_c01285{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);}
.m36_c01285{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);}
.m39_c01285{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m12_c01285{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m18_c01285{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);}
.mc_c01285{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);}
.m7_c01285{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);}
.m0_c01285{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m9_c01285{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01285{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01285{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m16_c01285{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);}
.m46_c01285{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);}
.m1e_c01285{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m24_c01285{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m64_c01285{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m62_c01285{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);}
.me_c01285{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m5f_c01285{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01285{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);}
.m15_c01285{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);}
.m6b_c01285{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m50_c01285{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m66_c01285{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m49_c01285{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);}
.m42_c01285{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m11_c01285{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m19_c01285{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);}
.m4f_c01285{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m1_c01285{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);}
.m48_c01285{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m41_c01285{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m58_c01285{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m32_c01285{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);}
.m8_c01285{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m47_c01285{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01285{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m65_c01285{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);}
.m6_c01285{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m59_c01285{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01285{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m56_c01285{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01285{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);}
.m33_c01285{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);}
.m5a_c01285{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m52_c01285{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m69_c01285{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m21_c01285{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);}
.m61_c01285{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m55_c01285{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01285{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m60_c01285{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);}
.m29_c01285{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.mb_c01285{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m34_c01285{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m57_c01285{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m3_c01285{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);}
.m45_c01285{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m5c_c01285{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01285{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);}
.m31_c01285{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m40_c01285{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01285{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m20_c01285{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.mf_c01285{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m6a_c01285{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m17_c01285{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);}
.m26_c01285{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);}
.m37_c01285{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m10_c01285{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01285{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);}
.m1d_c01285{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m13_c01285{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m5b_c01285{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m22_c01285{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);}
.m5d_c01285{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01285{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.md_c01285{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m4_c01285{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.m38_c01285{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01285{transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);}
.v2_c01285{vertical-align:-14.400000px;}
.v3_c01285{vertical-align:-11.520000px;}
.v0_c01285{vertical-align:0.000000px;}
.v1_c01285{vertical-align:8.640000px;}
.ls0_c01285{letter-spacing:0.000000px;}
.sc__c01285{text-shadow:none;}
.sc0_c01285{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01285{-webkit-text-stroke:0px transparent;}
.sc0_c01285{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01285{word-spacing:-1.352880px;}
.ws0_c01285{word-spacing:-0.337200px;}
.ws3_c01285{word-spacing:0.000000px;}
.ws1_c01285{word-spacing:7.642800px;}
.fc0_c01285{color:transparent;}
.fsd_c01285{font-size:8.640000px;}
.fsa_c01285{font-size:31.680000px;}
.fs7_c01285{font-size:34.560000px;}
.fsc_c01285{font-size:37.440000px;}
.fs4_c01285{font-size:43.200000px;}
.fs3_c01285{font-size:46.080000px;}
.fs2_c01285{font-size:48.960000px;}
.fs6_c01285{font-size:51.840000px;}
.fs1_c01285{font-size:54.720000px;}
.fs8_c01285{font-size:57.600000px;}
.fs5_c01285{font-size:60.480000px;}
.fs9_c01285{font-size:63.360000px;}
.fsb_c01285{font-size:69.120000px;}
.fs0_c01285{font-size:72.000000px;}
.y0_c01285{bottom:0.000000px;}
.y8c_c01285{bottom:56.880000px;}
.y8a_c01285{bottom:58.320000px;}
.y8b_c01285{bottom:59.040000px;}
.y89_c01285{bottom:59.760000px;}
.y88_c01285{bottom:61.200000px;}
.y86_c01285{bottom:62.640000px;}
.y87_c01285{bottom:63.360000px;}
.y84_c01285{bottom:68.400000px;}
.y85_c01285{bottom:77.040000px;}
.y81_c01285{bottom:98.640000px;}
.y83_c01285{bottom:100.080000px;}
.y7f_c01285{bottom:100.800000px;}
.y82_c01285{bottom:102.240000px;}
.y80_c01285{bottom:102.960000px;}
.y7e_c01285{bottom:105.840000px;}
.y7b_c01285{bottom:144.000000px;}
.y7c_c01285{bottom:145.440000px;}
.y7d_c01285{bottom:146.160000px;}
.y7a_c01285{bottom:199.440000px;}
.y79_c01285{bottom:200.160000px;}
.y78_c01285{bottom:200.880000px;}
.y77_c01285{bottom:205.200000px;}
.y73_c01285{bottom:239.760000px;}
.y76_c01285{bottom:240.480000px;}
.y71_c01285{bottom:241.200000px;}
.y72_c01285{bottom:241.920000px;}
.y74_c01285{bottom:242.640000px;}
.y75_c01285{bottom:243.360000px;}
.y70_c01285{bottom:244.080000px;}
.y6f_c01285{bottom:244.800000px;}
.y6e_c01285{bottom:246.960000px;}
.y6d_c01285{bottom:247.680000px;}
.y6c_c01285{bottom:283.680000px;}
.y6a_c01285{bottom:285.120000px;}
.y6b_c01285{bottom:285.840000px;}
.y69_c01285{bottom:286.560000px;}
.y68_c01285{bottom:288.000000px;}
.y66_c01285{bottom:326.160000px;}
.y63_c01285{bottom:326.880000px;}
.y65_c01285{bottom:328.320000px;}
.y64_c01285{bottom:329.040000px;}
.y67_c01285{bottom:329.760000px;}
.y62_c01285{bottom:332.640000px;}
.y5e_c01285{bottom:368.640000px;}
.y60_c01285{bottom:369.360000px;}
.y5f_c01285{bottom:370.800000px;}
.y61_c01285{bottom:371.520000px;}
.y5d_c01285{bottom:372.960000px;}
.y5c_c01285{bottom:373.680000px;}
.y5a_c01285{bottom:411.840000px;}
.y5b_c01285{bottom:414.000000px;}
.y59_c01285{bottom:414.720000px;}
.y58_c01285{bottom:415.440000px;}
.y57_c01285{bottom:416.160000px;}
.y56_c01285{bottom:457.200000px;}
.y55_c01285{bottom:457.920000px;}
.y54_c01285{bottom:458.640000px;}
.y53_c01285{bottom:459.360000px;}
.y51_c01285{bottom:498.240000px;}
.y50_c01285{bottom:500.400000px;}
.y4f_c01285{bottom:501.120000px;}
.y52_c01285{bottom:501.840000px;}
.y4e_c01285{bottom:502.560000px;}
.y4b_c01285{bottom:540.720000px;}
.y4c_c01285{bottom:541.440000px;}
.y4d_c01285{bottom:542.880000px;}
.y4a_c01285{bottom:543.600000px;}
.y49_c01285{bottom:545.040000px;}
.y47_c01285{bottom:584.640000px;}
.y45_c01285{bottom:585.360000px;}
.y46_c01285{bottom:586.800000px;}
.y48_c01285{bottom:587.520000px;}
.y42_c01285{bottom:627.120000px;}
.y44_c01285{bottom:627.840000px;}
.y41_c01285{bottom:630.000000px;}
.y43_c01285{bottom:630.720000px;}
.y3c_c01285{bottom:670.320000px;}
.y40_c01285{bottom:671.040000px;}
.y3d_c01285{bottom:672.480000px;}
.y3e_c01285{bottom:673.200000px;}
.y3f_c01285{bottom:673.920000px;}
.y36_c01285{bottom:712.800000px;}
.y3a_c01285{bottom:713.520000px;}
.y38_c01285{bottom:714.240000px;}
.y35_c01285{bottom:714.960000px;}
.y37_c01285{bottom:715.680000px;}
.y39_c01285{bottom:716.400000px;}
.y3b_c01285{bottom:717.120000px;}
.y31_c01285{bottom:755.280000px;}
.y34_c01285{bottom:756.720000px;}
.y32_c01285{bottom:758.160000px;}
.y33_c01285{bottom:759.600000px;}
.y2b_c01285{bottom:798.480000px;}
.y30_c01285{bottom:799.200000px;}
.y2e_c01285{bottom:800.640000px;}
.y2c_c01285{bottom:801.360000px;}
.y2d_c01285{bottom:802.080000px;}
.y2f_c01285{bottom:802.800000px;}
.y25_c01285{bottom:842.400000px;}
.y29_c01285{bottom:843.120000px;}
.y26_c01285{bottom:843.840000px;}
.y27_c01285{bottom:844.560000px;}
.y28_c01285{bottom:845.280000px;}
.y2a_c01285{bottom:846.000000px;}
.y1f_c01285{bottom:884.880000px;}
.y22_c01285{bottom:885.600000px;}
.y20_c01285{bottom:886.320000px;}
.y21_c01285{bottom:887.040000px;}
.y23_c01285{bottom:888.480000px;}
.y24_c01285{bottom:889.200000px;}
.y17_c01285{bottom:926.640000px;}
.y1c_c01285{bottom:927.360000px;}
.y18_c01285{bottom:928.080000px;}
.y19_c01285{bottom:928.800000px;}
.y1a_c01285{bottom:929.520000px;}
.y1b_c01285{bottom:930.240000px;}
.y1d_c01285{bottom:930.960000px;}
.y1e_c01285{bottom:931.680000px;}
.y10_c01285{bottom:967.680000px;}
.yf_c01285{bottom:969.120000px;}
.y14_c01285{bottom:970.560000px;}
.y16_c01285{bottom:971.280000px;}
.y11_c01285{bottom:972.000000px;}
.y13_c01285{bottom:972.720000px;}
.y12_c01285{bottom:973.440000px;}
.y15_c01285{bottom:974.160000px;}
.y9_c01285{bottom:1011.600000px;}
.ya_c01285{bottom:1013.760000px;}
.ye_c01285{bottom:1014.480000px;}
.yb_c01285{bottom:1015.920000px;}
.yd_c01285{bottom:1016.640000px;}
.yc_c01285{bottom:1017.360000px;}
.y2_c01285{bottom:1054.080000px;}
.y3_c01285{bottom:1056.240000px;}
.y7_c01285{bottom:1056.960000px;}
.y6_c01285{bottom:1057.680000px;}
.y4_c01285{bottom:1058.400000px;}
.y5_c01285{bottom:1059.120000px;}
.y8_c01285{bottom:1059.840000px;}
.y1_c01285{bottom:1101.600000px;}
.h10_c01285{height:7.775156px;}
.hd_c01285{height:28.508906px;}
.ha_c01285{height:31.100625px;}
.hf_c01285{height:33.692344px;}
.h6_c01285{height:38.875781px;}
.h5_c01285{height:41.467500px;}
.h4_c01285{height:44.059219px;}
.h9_c01285{height:46.650937px;}
.h3_c01285{height:49.242656px;}
.hb_c01285{height:51.834375px;}
.h8_c01285{height:52.699219px;}
.h7_c01285{height:54.426094px;}
.hc_c01285{height:57.017812px;}
.he_c01285{height:62.201250px;}
.h2_c01285{height:64.792969px;}
.h0_c01285{height:1154.880000px;}
.h1_c01285{height:1155.000000px;}
.w1_c01285{width:766.500000px;}
.w0_c01285{width:766.800000px;}
.x0_c01285{left:0.000000px;}
.x2_c01285{left:51.120000px;}
.x3b_c01285{left:52.560000px;}
.x3f_c01285{left:54.000000px;}
.x53_c01285{left:55.440000px;}
.x5c_c01285{left:73.440000px;}
.x2b_c01285{left:79.920000px;}
.x4d_c01285{left:81.360000px;}
.x5b_c01285{left:86.400000px;}
.x1b_c01285{left:90.720000px;}
.x13_c01285{left:99.360000px;}
.x44_c01285{left:100.800000px;}
.xb_c01285{left:110.880000px;}
.x1c_c01285{left:118.800000px;}
.x3_c01285{left:120.240000px;}
.x55_c01285{left:122.400000px;}
.x40_c01285{left:131.040000px;}
.x35_c01285{left:141.120000px;}
.x21_c01285{left:142.560000px;}
.xc_c01285{left:149.760000px;}
.x4_c01285{left:151.200000px;}
.x1d_c01285{left:162.000000px;}
.x45_c01285{left:163.440000px;}
.x2e_c01285{left:172.080000px;}
.x51_c01285{left:173.520000px;}
.x22_c01285{left:182.880000px;}
.x5_c01285{left:193.680000px;}
.x14_c01285{left:203.760000px;}
.x2f_c01285{left:205.920000px;}
.x36_c01285{left:215.280000px;}
.x56_c01285{left:227.520000px;}
.x1e_c01285{left:238.320000px;}
.x46_c01285{left:246.960000px;}
.x6_c01285{left:248.400000px;}
.x5d_c01285{left:249.840000px;}
.x23_c01285{left:258.480000px;}
.x41_c01285{left:259.920000px;}
.x37_c01285{left:269.280000px;}
.xd_c01285{left:280.800000px;}
.x54_c01285{left:290.880000px;}
.x4f_c01285{left:292.320000px;}
.x2c_c01285{left:303.120000px;}
.x30_c01285{left:312.480000px;}
.x52_c01285{left:313.920000px;}
.x24_c01285{left:324.000000px;}
.x47_c01285{left:334.080000px;}
.x38_c01285{left:335.520000px;}
.x7_c01285{left:345.600000px;}
.x15_c01285{left:356.400000px;}
.x48_c01285{left:367.200000px;}
.xe_c01285{left:378.000000px;}
.x16_c01285{left:388.800000px;}
.x25_c01285{left:398.880000px;}
.x58_c01285{left:401.040000px;}
.xf_c01285{left:410.400000px;}
.x17_c01285{left:421.200000px;}
.x42_c01285{left:422.640000px;}
.x3c_c01285{left:432.720000px;}
.x59_c01285{left:434.160000px;}
.x1f_c01285{left:444.240000px;}
.x8_c01285{left:453.600000px;}
.x50_c01285{left:455.760000px;}
.x43_c01285{left:464.400000px;}
.x31_c01285{left:465.840000px;}
.x10_c01285{left:475.200000px;}
.x39_c01285{left:476.640000px;}
.x49_c01285{left:486.000000px;}
.x26_c01285{left:488.160000px;}
.x4e_c01285{left:497.520000px;}
.x2d_c01285{left:498.960000px;}
.x18_c01285{left:507.600000px;}
.x3d_c01285{left:509.040000px;}
.x11_c01285{left:518.400000px;}
.x20_c01285{left:519.840000px;}
.x4a_c01285{left:531.360000px;}
.x27_c01285{left:540.000000px;}
.x57_c01285{left:541.440000px;}
.x19_c01285{left:552.240000px;}
.x32_c01285{left:562.320000px;}
.x3a_c01285{left:563.760000px;}
.x28_c01285{left:574.560000px;}
.x9_c01285{left:583.920000px;}
.x12_c01285{left:585.360000px;}
.x33_c01285{left:596.160000px;}
.x4b_c01285{left:606.960000px;}
.x3e_c01285{left:617.760000px;}
.x1a_c01285{left:627.120000px;}
.x34_c01285{left:629.280000px;}
.xa_c01285{left:639.360000px;}
.x29_c01285{left:649.440000px;}
.x5a_c01285{left:650.880000px;}
.x1_c01285{left:660.960000px;}
.x4c_c01285{left:663.120000px;}
.x2a_c01285{left:671.760000px;}
@media print{
.v2_c01285{vertical-align:-12.800000pt;}
.v3_c01285{vertical-align:-10.240000pt;}
.v0_c01285{vertical-align:0.000000pt;}
.v1_c01285{vertical-align:7.680000pt;}
.ls0_c01285{letter-spacing:0.000000pt;}
.ws2_c01285{word-spacing:-1.202560pt;}
.ws0_c01285{word-spacing:-0.299733pt;}
.ws3_c01285{word-spacing:0.000000pt;}
.ws1_c01285{word-spacing:6.793600pt;}
.fsd_c01285{font-size:7.680000pt;}
.fsa_c01285{font-size:28.160000pt;}
.fs7_c01285{font-size:30.720000pt;}
.fsc_c01285{font-size:33.280000pt;}
.fs4_c01285{font-size:38.400000pt;}
.fs3_c01285{font-size:40.960000pt;}
.fs2_c01285{font-size:43.520000pt;}
.fs6_c01285{font-size:46.080000pt;}
.fs1_c01285{font-size:48.640000pt;}
.fs8_c01285{font-size:51.200000pt;}
.fs5_c01285{font-size:53.760000pt;}
.fs9_c01285{font-size:56.320000pt;}
.fsb_c01285{font-size:61.440000pt;}
.fs0_c01285{font-size:64.000000pt;}
.y0_c01285{bottom:0.000000pt;}
.y8c_c01285{bottom:50.560000pt;}
.y8a_c01285{bottom:51.840000pt;}
.y8b_c01285{bottom:52.480000pt;}
.y89_c01285{bottom:53.120000pt;}
.y88_c01285{bottom:54.400000pt;}
.y86_c01285{bottom:55.680000pt;}
.y87_c01285{bottom:56.320000pt;}
.y84_c01285{bottom:60.800000pt;}
.y85_c01285{bottom:68.480000pt;}
.y81_c01285{bottom:87.680000pt;}
.y83_c01285{bottom:88.960000pt;}
.y7f_c01285{bottom:89.600000pt;}
.y82_c01285{bottom:90.880000pt;}
.y80_c01285{bottom:91.520000pt;}
.y7e_c01285{bottom:94.080000pt;}
.y7b_c01285{bottom:128.000000pt;}
.y7c_c01285{bottom:129.280000pt;}
.y7d_c01285{bottom:129.920000pt;}
.y7a_c01285{bottom:177.280000pt;}
.y79_c01285{bottom:177.920000pt;}
.y78_c01285{bottom:178.560000pt;}
.y77_c01285{bottom:182.400000pt;}
.y73_c01285{bottom:213.120000pt;}
.y76_c01285{bottom:213.760000pt;}
.y71_c01285{bottom:214.400000pt;}
.y72_c01285{bottom:215.040000pt;}
.y74_c01285{bottom:215.680000pt;}
.y75_c01285{bottom:216.320000pt;}
.y70_c01285{bottom:216.960000pt;}
.y6f_c01285{bottom:217.600000pt;}
.y6e_c01285{bottom:219.520000pt;}
.y6d_c01285{bottom:220.160000pt;}
.y6c_c01285{bottom:252.160000pt;}
.y6a_c01285{bottom:253.440000pt;}
.y6b_c01285{bottom:254.080000pt;}
.y69_c01285{bottom:254.720000pt;}
.y68_c01285{bottom:256.000000pt;}
.y66_c01285{bottom:289.920000pt;}
.y63_c01285{bottom:290.560000pt;}
.y65_c01285{bottom:291.840000pt;}
.y64_c01285{bottom:292.480000pt;}
.y67_c01285{bottom:293.120000pt;}
.y62_c01285{bottom:295.680000pt;}
.y5e_c01285{bottom:327.680000pt;}
.y60_c01285{bottom:328.320000pt;}
.y5f_c01285{bottom:329.600000pt;}
.y61_c01285{bottom:330.240000pt;}
.y5d_c01285{bottom:331.520000pt;}
.y5c_c01285{bottom:332.160000pt;}
.y5a_c01285{bottom:366.080000pt;}
.y5b_c01285{bottom:368.000000pt;}
.y59_c01285{bottom:368.640000pt;}
.y58_c01285{bottom:369.280000pt;}
.y57_c01285{bottom:369.920000pt;}
.y56_c01285{bottom:406.400000pt;}
.y55_c01285{bottom:407.040000pt;}
.y54_c01285{bottom:407.680000pt;}
.y53_c01285{bottom:408.320000pt;}
.y51_c01285{bottom:442.880000pt;}
.y50_c01285{bottom:444.800000pt;}
.y4f_c01285{bottom:445.440000pt;}
.y52_c01285{bottom:446.080000pt;}
.y4e_c01285{bottom:446.720000pt;}
.y4b_c01285{bottom:480.640000pt;}
.y4c_c01285{bottom:481.280000pt;}
.y4d_c01285{bottom:482.560000pt;}
.y4a_c01285{bottom:483.200000pt;}
.y49_c01285{bottom:484.480000pt;}
.y47_c01285{bottom:519.680000pt;}
.y45_c01285{bottom:520.320000pt;}
.y46_c01285{bottom:521.600000pt;}
.y48_c01285{bottom:522.240000pt;}
.y42_c01285{bottom:557.440000pt;}
.y44_c01285{bottom:558.080000pt;}
.y41_c01285{bottom:560.000000pt;}
.y43_c01285{bottom:560.640000pt;}
.y3c_c01285{bottom:595.840000pt;}
.y40_c01285{bottom:596.480000pt;}
.y3d_c01285{bottom:597.760000pt;}
.y3e_c01285{bottom:598.400000pt;}
.y3f_c01285{bottom:599.040000pt;}
.y36_c01285{bottom:633.600000pt;}
.y3a_c01285{bottom:634.240000pt;}
.y38_c01285{bottom:634.880000pt;}
.y35_c01285{bottom:635.520000pt;}
.y37_c01285{bottom:636.160000pt;}
.y39_c01285{bottom:636.800000pt;}
.y3b_c01285{bottom:637.440000pt;}
.y31_c01285{bottom:671.360000pt;}
.y34_c01285{bottom:672.640000pt;}
.y32_c01285{bottom:673.920000pt;}
.y33_c01285{bottom:675.200000pt;}
.y2b_c01285{bottom:709.760000pt;}
.y30_c01285{bottom:710.400000pt;}
.y2e_c01285{bottom:711.680000pt;}
.y2c_c01285{bottom:712.320000pt;}
.y2d_c01285{bottom:712.960000pt;}
.y2f_c01285{bottom:713.600000pt;}
.y25_c01285{bottom:748.800000pt;}
.y29_c01285{bottom:749.440000pt;}
.y26_c01285{bottom:750.080000pt;}
.y27_c01285{bottom:750.720000pt;}
.y28_c01285{bottom:751.360000pt;}
.y2a_c01285{bottom:752.000000pt;}
.y1f_c01285{bottom:786.560000pt;}
.y22_c01285{bottom:787.200000pt;}
.y20_c01285{bottom:787.840000pt;}
.y21_c01285{bottom:788.480000pt;}
.y23_c01285{bottom:789.760000pt;}
.y24_c01285{bottom:790.400000pt;}
.y17_c01285{bottom:823.680000pt;}
.y1c_c01285{bottom:824.320000pt;}
.y18_c01285{bottom:824.960000pt;}
.y19_c01285{bottom:825.600000pt;}
.y1a_c01285{bottom:826.240000pt;}
.y1b_c01285{bottom:826.880000pt;}
.y1d_c01285{bottom:827.520000pt;}
.y1e_c01285{bottom:828.160000pt;}
.y10_c01285{bottom:860.160000pt;}
.yf_c01285{bottom:861.440000pt;}
.y14_c01285{bottom:862.720000pt;}
.y16_c01285{bottom:863.360000pt;}
.y11_c01285{bottom:864.000000pt;}
.y13_c01285{bottom:864.640000pt;}
.y12_c01285{bottom:865.280000pt;}
.y15_c01285{bottom:865.920000pt;}
.y9_c01285{bottom:899.200000pt;}
.ya_c01285{bottom:901.120000pt;}
.ye_c01285{bottom:901.760000pt;}
.yb_c01285{bottom:903.040000pt;}
.yd_c01285{bottom:903.680000pt;}
.yc_c01285{bottom:904.320000pt;}
.y2_c01285{bottom:936.960000pt;}
.y3_c01285{bottom:938.880000pt;}
.y7_c01285{bottom:939.520000pt;}
.y6_c01285{bottom:940.160000pt;}
.y4_c01285{bottom:940.800000pt;}
.y5_c01285{bottom:941.440000pt;}
.y8_c01285{bottom:942.080000pt;}
.y1_c01285{bottom:979.200000pt;}
.h10_c01285{height:6.911250pt;}
.hd_c01285{height:25.341250pt;}
.ha_c01285{height:27.645000pt;}
.hf_c01285{height:29.948750pt;}
.h6_c01285{height:34.556250pt;}
.h5_c01285{height:36.860000pt;}
.h4_c01285{height:39.163750pt;}
.h9_c01285{height:41.467500pt;}
.h3_c01285{height:43.771250pt;}
.hb_c01285{height:46.075000pt;}
.h8_c01285{height:46.843750pt;}
.h7_c01285{height:48.378750pt;}
.hc_c01285{height:50.682500pt;}
.he_c01285{height:55.290000pt;}
.h2_c01285{height:57.593750pt;}
.h0_c01285{height:1026.560000pt;}
.h1_c01285{height:1026.666667pt;}
.w1_c01285{width:681.333333pt;}
.w0_c01285{width:681.600000pt;}
.x0_c01285{left:0.000000pt;}
.x2_c01285{left:45.440000pt;}
.x3b_c01285{left:46.720000pt;}
.x3f_c01285{left:48.000000pt;}
.x53_c01285{left:49.280000pt;}
.x5c_c01285{left:65.280000pt;}
.x2b_c01285{left:71.040000pt;}
.x4d_c01285{left:72.320000pt;}
.x5b_c01285{left:76.800000pt;}
.x1b_c01285{left:80.640000pt;}
.x13_c01285{left:88.320000pt;}
.x44_c01285{left:89.600000pt;}
.xb_c01285{left:98.560000pt;}
.x1c_c01285{left:105.600000pt;}
.x3_c01285{left:106.880000pt;}
.x55_c01285{left:108.800000pt;}
.x40_c01285{left:116.480000pt;}
.x35_c01285{left:125.440000pt;}
.x21_c01285{left:126.720000pt;}
.xc_c01285{left:133.120000pt;}
.x4_c01285{left:134.400000pt;}
.x1d_c01285{left:144.000000pt;}
.x45_c01285{left:145.280000pt;}
.x2e_c01285{left:152.960000pt;}
.x51_c01285{left:154.240000pt;}
.x22_c01285{left:162.560000pt;}
.x5_c01285{left:172.160000pt;}
.x14_c01285{left:181.120000pt;}
.x2f_c01285{left:183.040000pt;}
.x36_c01285{left:191.360000pt;}
.x56_c01285{left:202.240000pt;}
.x1e_c01285{left:211.840000pt;}
.x46_c01285{left:219.520000pt;}
.x6_c01285{left:220.800000pt;}
.x5d_c01285{left:222.080000pt;}
.x23_c01285{left:229.760000pt;}
.x41_c01285{left:231.040000pt;}
.x37_c01285{left:239.360000pt;}
.xd_c01285{left:249.600000pt;}
.x54_c01285{left:258.560000pt;}
.x4f_c01285{left:259.840000pt;}
.x2c_c01285{left:269.440000pt;}
.x30_c01285{left:277.760000pt;}
.x52_c01285{left:279.040000pt;}
.x24_c01285{left:288.000000pt;}
.x47_c01285{left:296.960000pt;}
.x38_c01285{left:298.240000pt;}
.x7_c01285{left:307.200000pt;}
.x15_c01285{left:316.800000pt;}
.x48_c01285{left:326.400000pt;}
.xe_c01285{left:336.000000pt;}
.x16_c01285{left:345.600000pt;}
.x25_c01285{left:354.560000pt;}
.x58_c01285{left:356.480000pt;}
.xf_c01285{left:364.800000pt;}
.x17_c01285{left:374.400000pt;}
.x42_c01285{left:375.680000pt;}
.x3c_c01285{left:384.640000pt;}
.x59_c01285{left:385.920000pt;}
.x1f_c01285{left:394.880000pt;}
.x8_c01285{left:403.200000pt;}
.x50_c01285{left:405.120000pt;}
.x43_c01285{left:412.800000pt;}
.x31_c01285{left:414.080000pt;}
.x10_c01285{left:422.400000pt;}
.x39_c01285{left:423.680000pt;}
.x49_c01285{left:432.000000pt;}
.x26_c01285{left:433.920000pt;}
.x4e_c01285{left:442.240000pt;}
.x2d_c01285{left:443.520000pt;}
.x18_c01285{left:451.200000pt;}
.x3d_c01285{left:452.480000pt;}
.x11_c01285{left:460.800000pt;}
.x20_c01285{left:462.080000pt;}
.x4a_c01285{left:472.320000pt;}
.x27_c01285{left:480.000000pt;}
.x57_c01285{left:481.280000pt;}
.x19_c01285{left:490.880000pt;}
.x32_c01285{left:499.840000pt;}
.x3a_c01285{left:501.120000pt;}
.x28_c01285{left:510.720000pt;}
.x9_c01285{left:519.040000pt;}
.x12_c01285{left:520.320000pt;}
.x33_c01285{left:529.920000pt;}
.x4b_c01285{left:539.520000pt;}
.x3e_c01285{left:549.120000pt;}
.x1a_c01285{left:557.440000pt;}
.x34_c01285{left:559.360000pt;}
.xa_c01285{left:568.320000pt;}
.x29_c01285{left:577.280000pt;}
.x5a_c01285{left:578.560000pt;}
.x1_c01285{left:587.520000pt;}
.x4c_c01285{left:589.440000pt;}
.x2a_c01285{left:597.120000pt;}
}





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

.ir_c01286:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01286{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01286;src:url('chunks/assets/font_6244207e788fba139d052f64.woff2')format("woff");}.ff1_c01286{font-family:ff1_c01286;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m53_c01286{transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);}
.m57_c01286{transform:matrix(0.241325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241325,0.000000,0.000000,0.250000,0,0);}
.m3c_c01286{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m10_c01286{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);}
.m51_c01286{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01286{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m5_c01286{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01286{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m50_c01286{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m52_c01286{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01286{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01286{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m13_c01286{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m24_c01286{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m17_c01286{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m38_c01286{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);}
.m46_c01286{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m4_c01286{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m6_c01286{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m56_c01286{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);}
.mc_c01286{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);}
.m22_c01286{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m16_c01286{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.md_c01286{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m0_c01286{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.mb_c01286{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);}
.m4a_c01286{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01286{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m1_c01286{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m41_c01286{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);}
.m1f_c01286{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);}
.m3a_c01286{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);}
.m3f_c01286{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m55_c01286{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.ma_c01286{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m15_c01286{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);}
.m33_c01286{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m58_c01286{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);}
.m25_c01286{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m27_c01286{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);}
.m2c_c01286{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);}
.m28_c01286{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m44_c01286{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01286{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m35_c01286{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m39_c01286{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m7_c01286{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m8_c01286{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m30_c01286{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);}
.m2e_c01286{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m34_c01286{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m49_c01286{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m45_c01286{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01286{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);}
.m9_c01286{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m23_c01286{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m32_c01286{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m19_c01286{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);}
.m4b_c01286{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m11_c01286{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m59_c01286{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m18_c01286{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.mf_c01286{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);}
.m2d_c01286{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);}
.m14_c01286{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m21_c01286{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01286{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);}
.m1a_c01286{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m48_c01286{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m42_c01286{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m2_c01286{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01286{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m29_c01286{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);}
.m20_c01286{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);}
.m40_c01286{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m54_c01286{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m31_c01286{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01286{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m12_c01286{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01286{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m26_c01286{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);}
.m4d_c01286{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);}
.me_c01286{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m36_c01286{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01286{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);}
.m37_c01286{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m47_c01286{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01286{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01286{transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);}
.m43_c01286{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.v0_c01286{vertical-align:0.000000px;}
.v2_c01286{vertical-align:11.520000px;}
.v1_c01286{vertical-align:14.400000px;}
.ls0_c01286{letter-spacing:0.000000px;}
.sc__c01286{text-shadow:none;}
.sc0_c01286{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01286{-webkit-text-stroke:0px transparent;}
.sc0_c01286{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01286{word-spacing:-0.770880px;}
.ws2_c01286{word-spacing:0.000000px;}
.ws0_c01286{word-spacing:8.301120px;}
.fc0_c01286{color:transparent;}
.fsd_c01286{font-size:31.680000px;}
.fs2_c01286{font-size:34.560000px;}
.fsa_c01286{font-size:37.440000px;}
.fs9_c01286{font-size:43.200000px;}
.fsb_c01286{font-size:46.080000px;}
.fs1_c01286{font-size:48.960000px;}
.fs7_c01286{font-size:51.840000px;}
.fsc_c01286{font-size:54.720000px;}
.fs3_c01286{font-size:57.600000px;}
.fs8_c01286{font-size:60.480000px;}
.fs5_c01286{font-size:63.360000px;}
.fs4_c01286{font-size:66.240000px;}
.fs6_c01286{font-size:69.120000px;}
.fs0_c01286{font-size:72.000000px;}
.y0_c01286{bottom:0.000000px;}
.y83_c01286{bottom:36.000000px;}
.y84_c01286{bottom:36.720000px;}
.y82_c01286{bottom:38.880000px;}
.y81_c01286{bottom:39.600000px;}
.y80_c01286{bottom:43.200000px;}
.y7f_c01286{bottom:47.520000px;}
.y7d_c01286{bottom:79.200000px;}
.y7b_c01286{bottom:79.920000px;}
.y7c_c01286{bottom:80.640000px;}
.y7e_c01286{bottom:81.360000px;}
.y7a_c01286{bottom:82.080000px;}
.y79_c01286{bottom:84.240000px;}
.y78_c01286{bottom:86.400000px;}
.y77_c01286{bottom:87.120000px;}
.y76_c01286{bottom:88.560000px;}
.y73_c01286{bottom:121.680000px;}
.y75_c01286{bottom:122.400000px;}
.y74_c01286{bottom:124.560000px;}
.y72_c01286{bottom:125.280000px;}
.y71_c01286{bottom:126.000000px;}
.y70_c01286{bottom:126.720000px;}
.y6f_c01286{bottom:128.160000px;}
.y6a_c01286{bottom:164.160000px;}
.y6c_c01286{bottom:164.880000px;}
.y6e_c01286{bottom:167.040000px;}
.y6b_c01286{bottom:167.760000px;}
.y6d_c01286{bottom:168.480000px;}
.y69_c01286{bottom:170.640000px;}
.y68_c01286{bottom:175.680000px;}
.y67_c01286{bottom:207.360000px;}
.y66_c01286{bottom:208.080000px;}
.y64_c01286{bottom:210.240000px;}
.y65_c01286{bottom:210.960000px;}
.y63_c01286{bottom:211.680000px;}
.y62_c01286{bottom:212.400000px;}
.y61_c01286{bottom:213.840000px;}
.y60_c01286{bottom:214.560000px;}
.y5d_c01286{bottom:250.560000px;}
.y5c_c01286{bottom:251.280000px;}
.y5b_c01286{bottom:252.000000px;}
.y5f_c01286{bottom:252.720000px;}
.y5e_c01286{bottom:254.160000px;}
.y5a_c01286{bottom:254.880000px;}
.y59_c01286{bottom:257.040000px;}
.y56_c01286{bottom:293.760000px;}
.y57_c01286{bottom:294.480000px;}
.y55_c01286{bottom:295.200000px;}
.y58_c01286{bottom:296.640000px;}
.y54_c01286{bottom:298.080000px;}
.y53_c01286{bottom:336.960000px;}
.y52_c01286{bottom:339.840000px;}
.y51_c01286{bottom:340.560000px;}
.y50_c01286{bottom:342.000000px;}
.y4f_c01286{bottom:391.680000px;}
.y4c_c01286{bottom:394.560000px;}
.y4e_c01286{bottom:395.280000px;}
.y4d_c01286{bottom:396.000000px;}
.y4b_c01286{bottom:434.160000px;}
.y4a_c01286{bottom:434.880000px;}
.y47_c01286{bottom:436.320000px;}
.y49_c01286{bottom:437.040000px;}
.y48_c01286{bottom:438.480000px;}
.y46_c01286{bottom:439.200000px;}
.y42_c01286{bottom:478.080000px;}
.y44_c01286{bottom:478.800000px;}
.y45_c01286{bottom:480.240000px;}
.y41_c01286{bottom:480.960000px;}
.y43_c01286{bottom:481.680000px;}
.y40_c01286{bottom:521.280000px;}
.y3e_c01286{bottom:523.440000px;}
.y3f_c01286{bottom:524.160000px;}
.y3c_c01286{bottom:564.480000px;}
.y3b_c01286{bottom:565.200000px;}
.y3d_c01286{bottom:566.640000px;}
.y3a_c01286{bottom:567.360000px;}
.y38_c01286{bottom:606.960000px;}
.y39_c01286{bottom:609.120000px;}
.y37_c01286{bottom:609.840000px;}
.y36_c01286{bottom:610.560000px;}
.y34_c01286{bottom:649.440000px;}
.y35_c01286{bottom:650.160000px;}
.y33_c01286{bottom:651.600000px;}
.y31_c01286{bottom:652.320000px;}
.y32_c01286{bottom:653.040000px;}
.y2d_c01286{bottom:691.200000px;}
.y30_c01286{bottom:691.920000px;}
.y2f_c01286{bottom:692.640000px;}
.y2b_c01286{bottom:694.080000px;}
.y2c_c01286{bottom:694.800000px;}
.y2e_c01286{bottom:695.520000px;}
.y2a_c01286{bottom:735.120000px;}
.y26_c01286{bottom:736.560000px;}
.y27_c01286{bottom:737.280000px;}
.y28_c01286{bottom:738.000000px;}
.y29_c01286{bottom:738.720000px;}
.y25_c01286{bottom:777.600000px;}
.y24_c01286{bottom:778.320000px;}
.y20_c01286{bottom:779.040000px;}
.y22_c01286{bottom:779.760000px;}
.y21_c01286{bottom:780.480000px;}
.y23_c01286{bottom:781.200000px;}
.y1e_c01286{bottom:820.800000px;}
.y1d_c01286{bottom:823.680000px;}
.y1f_c01286{bottom:824.400000px;}
.y18_c01286{bottom:872.640000px;}
.y19_c01286{bottom:874.080000px;}
.y1a_c01286{bottom:874.800000px;}
.y17_c01286{bottom:875.520000px;}
.y1b_c01286{bottom:876.960000px;}
.y1c_c01286{bottom:877.680000px;}
.y12_c01286{bottom:915.840000px;}
.y11_c01286{bottom:917.280000px;}
.y13_c01286{bottom:918.720000px;}
.y14_c01286{bottom:920.160000px;}
.y15_c01286{bottom:920.880000px;}
.y16_c01286{bottom:921.600000px;}
.yd_c01286{bottom:957.600000px;}
.y10_c01286{bottom:961.200000px;}
.ye_c01286{bottom:963.360000px;}
.yf_c01286{bottom:964.080000px;}
.y7_c01286{bottom:999.360000px;}
.y8_c01286{bottom:1003.680000px;}
.yc_c01286{bottom:1004.400000px;}
.y9_c01286{bottom:1005.120000px;}
.ya_c01286{bottom:1006.560000px;}
.yb_c01286{bottom:1007.280000px;}
.y2_c01286{bottom:1045.440000px;}
.y4_c01286{bottom:1046.880000px;}
.y3_c01286{bottom:1047.600000px;}
.y6_c01286{bottom:1049.760000px;}
.y5_c01286{bottom:1050.480000px;}
.y1_c01286{bottom:1088.640000px;}
.hf_c01286{height:28.508906px;}
.h4_c01286{height:31.100625px;}
.hc_c01286{height:33.692344px;}
.hb_c01286{height:38.875781px;}
.hd_c01286{height:41.467500px;}
.h3_c01286{height:44.059219px;}
.h9_c01286{height:46.650937px;}
.he_c01286{height:49.242656px;}
.h5_c01286{height:51.834375px;}
.ha_c01286{height:54.426094px;}
.h7_c01286{height:57.017812px;}
.h6_c01286{height:59.609531px;}
.h8_c01286{height:62.201250px;}
.h2_c01286{height:64.792969px;}
.h10_c01286{height:66.234375px;}
.h1_c01286{height:1144.500000px;}
.h0_c01286{height:1144.800000px;}
.w1_c01286{width:752.250000px;}
.w0_c01286{width:752.400000px;}
.x0_c01286{left:0.000000px;}
.x1a_c01286{left:46.080000px;}
.x2_c01286{left:47.520000px;}
.x4e_c01286{left:48.960000px;}
.x37_c01286{left:66.240000px;}
.x1b_c01286{left:75.600000px;}
.x50_c01286{left:77.760000px;}
.xb_c01286{left:85.680000px;}
.x1c_c01286{left:95.760000px;}
.x3_c01286{left:105.840000px;}
.x20_c01286{left:115.920000px;}
.x38_c01286{left:117.360000px;}
.xc_c01286{left:125.280000px;}
.x2d_c01286{left:126.720000px;}
.x1d_c01286{left:136.080000px;}
.x4_c01286{left:137.520000px;}
.x39_c01286{left:146.160000px;}
.x23_c01286{left:148.320000px;}
.x13_c01286{left:156.960000px;}
.x4a_c01286{left:167.760000px;}
.x34_c01286{left:177.120000px;}
.x24_c01286{left:178.560000px;}
.x42_c01286{left:188.640000px;}
.x5_c01286{left:192.240000px;}
.x2e_c01286{left:198.720000px;}
.x3a_c01286{left:200.160000px;}
.x4b_c01286{left:209.520000px;}
.x14_c01286{left:210.960000px;}
.x21_c01286{left:221.760000px;}
.xd_c01286{left:232.560000px;}
.x43_c01286{left:243.360000px;}
.x1e_c01286{left:254.160000px;}
.xe_c01286{left:264.960000px;}
.x2f_c01286{left:275.760000px;}
.x49_c01286{left:285.840000px;}
.x15_c01286{left:287.280000px;}
.x46_c01286{left:297.360000px;}
.x6_c01286{left:298.800000px;}
.x53_c01286{left:308.880000px;}
.x16_c01286{left:318.960000px;}
.x25_c01286{left:330.480000px;}
.x44_c01286{left:341.280000px;}
.x22_c01286{left:351.360000px;}
.x3b_c01286{left:353.520000px;}
.x7_c01286{left:362.880000px;}
.x1f_c01286{left:372.960000px;}
.x47_c01286{left:383.040000px;}
.x26_c01286{left:384.480000px;}
.x17_c01286{left:394.560000px;}
.xf_c01286{left:406.080000px;}
.x3f_c01286{left:416.880000px;}
.x27_c01286{left:419.040000px;}
.x30_c01286{left:426.240000px;}
.x3c_c01286{left:427.680000px;}
.x35_c01286{left:437.760000px;}
.x8_c01286{left:439.200000px;}
.x51_c01286{left:447.840000px;}
.x31_c01286{left:450.000000px;}
.x28_c01286{left:460.800000px;}
.x18_c01286{left:471.600000px;}
.x40_c01286{left:481.680000px;}
.x29_c01286{left:492.480000px;}
.x9_c01286{left:504.000000px;}
.x10_c01286{left:514.800000px;}
.x48_c01286{left:524.880000px;}
.x32_c01286{left:527.040000px;}
.x2a_c01286{left:536.400000px;}
.x41_c01286{left:537.840000px;}
.x4f_c01286{left:546.480000px;}
.x4c_c01286{left:548.640000px;}
.x11_c01286{left:557.280000px;}
.x52_c01286{left:558.720000px;}
.x33_c01286{left:568.080000px;}
.x3d_c01286{left:569.520000px;}
.x36_c01286{left:578.880000px;}
.xa_c01286{left:580.320000px;}
.x19_c01286{left:590.400000px;}
.x3e_c01286{left:601.200000px;}
.x4d_c01286{left:612.720000px;}
.x2b_c01286{left:623.520000px;}
.x45_c01286{left:635.040000px;}
.x2c_c01286{left:645.120000px;}
.x1_c01286{left:651.600000px;}
.x12_c01286{left:655.920000px;}
@media print{
.v0_c01286{vertical-align:0.000000pt;}
.v2_c01286{vertical-align:10.240000pt;}
.v1_c01286{vertical-align:12.800000pt;}
.ls0_c01286{letter-spacing:0.000000pt;}
.ws1_c01286{word-spacing:-0.685227pt;}
.ws2_c01286{word-spacing:0.000000pt;}
.ws0_c01286{word-spacing:7.378773pt;}
.fsd_c01286{font-size:28.160000pt;}
.fs2_c01286{font-size:30.720000pt;}
.fsa_c01286{font-size:33.280000pt;}
.fs9_c01286{font-size:38.400000pt;}
.fsb_c01286{font-size:40.960000pt;}
.fs1_c01286{font-size:43.520000pt;}
.fs7_c01286{font-size:46.080000pt;}
.fsc_c01286{font-size:48.640000pt;}
.fs3_c01286{font-size:51.200000pt;}
.fs8_c01286{font-size:53.760000pt;}
.fs5_c01286{font-size:56.320000pt;}
.fs4_c01286{font-size:58.880000pt;}
.fs6_c01286{font-size:61.440000pt;}
.fs0_c01286{font-size:64.000000pt;}
.y0_c01286{bottom:0.000000pt;}
.y83_c01286{bottom:32.000000pt;}
.y84_c01286{bottom:32.640000pt;}
.y82_c01286{bottom:34.560000pt;}
.y81_c01286{bottom:35.200000pt;}
.y80_c01286{bottom:38.400000pt;}
.y7f_c01286{bottom:42.240000pt;}
.y7d_c01286{bottom:70.400000pt;}
.y7b_c01286{bottom:71.040000pt;}
.y7c_c01286{bottom:71.680000pt;}
.y7e_c01286{bottom:72.320000pt;}
.y7a_c01286{bottom:72.960000pt;}
.y79_c01286{bottom:74.880000pt;}
.y78_c01286{bottom:76.800000pt;}
.y77_c01286{bottom:77.440000pt;}
.y76_c01286{bottom:78.720000pt;}
.y73_c01286{bottom:108.160000pt;}
.y75_c01286{bottom:108.800000pt;}
.y74_c01286{bottom:110.720000pt;}
.y72_c01286{bottom:111.360000pt;}
.y71_c01286{bottom:112.000000pt;}
.y70_c01286{bottom:112.640000pt;}
.y6f_c01286{bottom:113.920000pt;}
.y6a_c01286{bottom:145.920000pt;}
.y6c_c01286{bottom:146.560000pt;}
.y6e_c01286{bottom:148.480000pt;}
.y6b_c01286{bottom:149.120000pt;}
.y6d_c01286{bottom:149.760000pt;}
.y69_c01286{bottom:151.680000pt;}
.y68_c01286{bottom:156.160000pt;}
.y67_c01286{bottom:184.320000pt;}
.y66_c01286{bottom:184.960000pt;}
.y64_c01286{bottom:186.880000pt;}
.y65_c01286{bottom:187.520000pt;}
.y63_c01286{bottom:188.160000pt;}
.y62_c01286{bottom:188.800000pt;}
.y61_c01286{bottom:190.080000pt;}
.y60_c01286{bottom:190.720000pt;}
.y5d_c01286{bottom:222.720000pt;}
.y5c_c01286{bottom:223.360000pt;}
.y5b_c01286{bottom:224.000000pt;}
.y5f_c01286{bottom:224.640000pt;}
.y5e_c01286{bottom:225.920000pt;}
.y5a_c01286{bottom:226.560000pt;}
.y59_c01286{bottom:228.480000pt;}
.y56_c01286{bottom:261.120000pt;}
.y57_c01286{bottom:261.760000pt;}
.y55_c01286{bottom:262.400000pt;}
.y58_c01286{bottom:263.680000pt;}
.y54_c01286{bottom:264.960000pt;}
.y53_c01286{bottom:299.520000pt;}
.y52_c01286{bottom:302.080000pt;}
.y51_c01286{bottom:302.720000pt;}
.y50_c01286{bottom:304.000000pt;}
.y4f_c01286{bottom:348.160000pt;}
.y4c_c01286{bottom:350.720000pt;}
.y4e_c01286{bottom:351.360000pt;}
.y4d_c01286{bottom:352.000000pt;}
.y4b_c01286{bottom:385.920000pt;}
.y4a_c01286{bottom:386.560000pt;}
.y47_c01286{bottom:387.840000pt;}
.y49_c01286{bottom:388.480000pt;}
.y48_c01286{bottom:389.760000pt;}
.y46_c01286{bottom:390.400000pt;}
.y42_c01286{bottom:424.960000pt;}
.y44_c01286{bottom:425.600000pt;}
.y45_c01286{bottom:426.880000pt;}
.y41_c01286{bottom:427.520000pt;}
.y43_c01286{bottom:428.160000pt;}
.y40_c01286{bottom:463.360000pt;}
.y3e_c01286{bottom:465.280000pt;}
.y3f_c01286{bottom:465.920000pt;}
.y3c_c01286{bottom:501.760000pt;}
.y3b_c01286{bottom:502.400000pt;}
.y3d_c01286{bottom:503.680000pt;}
.y3a_c01286{bottom:504.320000pt;}
.y38_c01286{bottom:539.520000pt;}
.y39_c01286{bottom:541.440000pt;}
.y37_c01286{bottom:542.080000pt;}
.y36_c01286{bottom:542.720000pt;}
.y34_c01286{bottom:577.280000pt;}
.y35_c01286{bottom:577.920000pt;}
.y33_c01286{bottom:579.200000pt;}
.y31_c01286{bottom:579.840000pt;}
.y32_c01286{bottom:580.480000pt;}
.y2d_c01286{bottom:614.400000pt;}
.y30_c01286{bottom:615.040000pt;}
.y2f_c01286{bottom:615.680000pt;}
.y2b_c01286{bottom:616.960000pt;}
.y2c_c01286{bottom:617.600000pt;}
.y2e_c01286{bottom:618.240000pt;}
.y2a_c01286{bottom:653.440000pt;}
.y26_c01286{bottom:654.720000pt;}
.y27_c01286{bottom:655.360000pt;}
.y28_c01286{bottom:656.000000pt;}
.y29_c01286{bottom:656.640000pt;}
.y25_c01286{bottom:691.200000pt;}
.y24_c01286{bottom:691.840000pt;}
.y20_c01286{bottom:692.480000pt;}
.y22_c01286{bottom:693.120000pt;}
.y21_c01286{bottom:693.760000pt;}
.y23_c01286{bottom:694.400000pt;}
.y1e_c01286{bottom:729.600000pt;}
.y1d_c01286{bottom:732.160000pt;}
.y1f_c01286{bottom:732.800000pt;}
.y18_c01286{bottom:775.680000pt;}
.y19_c01286{bottom:776.960000pt;}
.y1a_c01286{bottom:777.600000pt;}
.y17_c01286{bottom:778.240000pt;}
.y1b_c01286{bottom:779.520000pt;}
.y1c_c01286{bottom:780.160000pt;}
.y12_c01286{bottom:814.080000pt;}
.y11_c01286{bottom:815.360000pt;}
.y13_c01286{bottom:816.640000pt;}
.y14_c01286{bottom:817.920000pt;}
.y15_c01286{bottom:818.560000pt;}
.y16_c01286{bottom:819.200000pt;}
.yd_c01286{bottom:851.200000pt;}
.y10_c01286{bottom:854.400000pt;}
.ye_c01286{bottom:856.320000pt;}
.yf_c01286{bottom:856.960000pt;}
.y7_c01286{bottom:888.320000pt;}
.y8_c01286{bottom:892.160000pt;}
.yc_c01286{bottom:892.800000pt;}
.y9_c01286{bottom:893.440000pt;}
.ya_c01286{bottom:894.720000pt;}
.yb_c01286{bottom:895.360000pt;}
.y2_c01286{bottom:929.280000pt;}
.y4_c01286{bottom:930.560000pt;}
.y3_c01286{bottom:931.200000pt;}
.y6_c01286{bottom:933.120000pt;}
.y5_c01286{bottom:933.760000pt;}
.y1_c01286{bottom:967.680000pt;}
.hf_c01286{height:25.341250pt;}
.h4_c01286{height:27.645000pt;}
.hc_c01286{height:29.948750pt;}
.hb_c01286{height:34.556250pt;}
.hd_c01286{height:36.860000pt;}
.h3_c01286{height:39.163750pt;}
.h9_c01286{height:41.467500pt;}
.he_c01286{height:43.771250pt;}
.h5_c01286{height:46.075000pt;}
.ha_c01286{height:48.378750pt;}
.h7_c01286{height:50.682500pt;}
.h6_c01286{height:52.986250pt;}
.h8_c01286{height:55.290000pt;}
.h2_c01286{height:57.593750pt;}
.h10_c01286{height:58.875000pt;}
.h1_c01286{height:1017.333333pt;}
.h0_c01286{height:1017.600000pt;}
.w1_c01286{width:668.666667pt;}
.w0_c01286{width:668.800000pt;}
.x0_c01286{left:0.000000pt;}
.x1a_c01286{left:40.960000pt;}
.x2_c01286{left:42.240000pt;}
.x4e_c01286{left:43.520000pt;}
.x37_c01286{left:58.880000pt;}
.x1b_c01286{left:67.200000pt;}
.x50_c01286{left:69.120000pt;}
.xb_c01286{left:76.160000pt;}
.x1c_c01286{left:85.120000pt;}
.x3_c01286{left:94.080000pt;}
.x20_c01286{left:103.040000pt;}
.x38_c01286{left:104.320000pt;}
.xc_c01286{left:111.360000pt;}
.x2d_c01286{left:112.640000pt;}
.x1d_c01286{left:120.960000pt;}
.x4_c01286{left:122.240000pt;}
.x39_c01286{left:129.920000pt;}
.x23_c01286{left:131.840000pt;}
.x13_c01286{left:139.520000pt;}
.x4a_c01286{left:149.120000pt;}
.x34_c01286{left:157.440000pt;}
.x24_c01286{left:158.720000pt;}
.x42_c01286{left:167.680000pt;}
.x5_c01286{left:170.880000pt;}
.x2e_c01286{left:176.640000pt;}
.x3a_c01286{left:177.920000pt;}
.x4b_c01286{left:186.240000pt;}
.x14_c01286{left:187.520000pt;}
.x21_c01286{left:197.120000pt;}
.xd_c01286{left:206.720000pt;}
.x43_c01286{left:216.320000pt;}
.x1e_c01286{left:225.920000pt;}
.xe_c01286{left:235.520000pt;}
.x2f_c01286{left:245.120000pt;}
.x49_c01286{left:254.080000pt;}
.x15_c01286{left:255.360000pt;}
.x46_c01286{left:264.320000pt;}
.x6_c01286{left:265.600000pt;}
.x53_c01286{left:274.560000pt;}
.x16_c01286{left:283.520000pt;}
.x25_c01286{left:293.760000pt;}
.x44_c01286{left:303.360000pt;}
.x22_c01286{left:312.320000pt;}
.x3b_c01286{left:314.240000pt;}
.x7_c01286{left:322.560000pt;}
.x1f_c01286{left:331.520000pt;}
.x47_c01286{left:340.480000pt;}
.x26_c01286{left:341.760000pt;}
.x17_c01286{left:350.720000pt;}
.xf_c01286{left:360.960000pt;}
.x3f_c01286{left:370.560000pt;}
.x27_c01286{left:372.480000pt;}
.x30_c01286{left:378.880000pt;}
.x3c_c01286{left:380.160000pt;}
.x35_c01286{left:389.120000pt;}
.x8_c01286{left:390.400000pt;}
.x51_c01286{left:398.080000pt;}
.x31_c01286{left:400.000000pt;}
.x28_c01286{left:409.600000pt;}
.x18_c01286{left:419.200000pt;}
.x40_c01286{left:428.160000pt;}
.x29_c01286{left:437.760000pt;}
.x9_c01286{left:448.000000pt;}
.x10_c01286{left:457.600000pt;}
.x48_c01286{left:466.560000pt;}
.x32_c01286{left:468.480000pt;}
.x2a_c01286{left:476.800000pt;}
.x41_c01286{left:478.080000pt;}
.x4f_c01286{left:485.760000pt;}
.x4c_c01286{left:487.680000pt;}
.x11_c01286{left:495.360000pt;}
.x52_c01286{left:496.640000pt;}
.x33_c01286{left:504.960000pt;}
.x3d_c01286{left:506.240000pt;}
.x36_c01286{left:514.560000pt;}
.xa_c01286{left:515.840000pt;}
.x19_c01286{left:524.800000pt;}
.x3e_c01286{left:534.400000pt;}
.x4d_c01286{left:544.640000pt;}
.x2b_c01286{left:554.240000pt;}
.x45_c01286{left:564.480000pt;}
.x2c_c01286{left:573.440000pt;}
.x1_c01286{left:579.200000pt;}
.x12_c01286{left:583.040000pt;}
}





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

.ir_c01287:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01287{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01287;src:url('chunks/assets/font_9620a2c24c47060ac28f6c8d.woff2')format("woff");}.ff1_c01287{font-family:ff1_c01287;line-height:1.109863;font-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_c01287{transform:matrix(0.056400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056400,0.000000,0.000000,0.250000,0,0);}
.m6_c01287{transform:matrix(0.068975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068975,0.000000,0.000000,0.250000,0,0);}
.m3a_c01287{transform:matrix(0.082050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082050,0.000000,0.000000,0.250000,0,0);}
.m30_c01287{transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);}
.m15_c01287{transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);}
.me_c01287{transform:matrix(0.106175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106175,0.000000,0.000000,0.250000,0,0);}
.m19_c01287{transform:matrix(0.112800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112800,0.000000,0.000000,0.250000,0,0);}
.m11_c01287{transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);}
.m44_c01287{transform:matrix(0.113625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113625,0.000000,0.000000,0.250000,0,0);}
.m14_c01287{transform:matrix(0.120325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120325,0.000000,0.000000,0.250000,0,0);}
.md_c01287{transform:matrix(0.120350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120350,0.000000,0.000000,0.250000,0,0);}
.ma_c01287{transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);}
.m5e_c01287{transform:matrix(0.138675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138675,0.000000,0.000000,0.250000,0,0);}
.m2a_c01287{transform:matrix(0.138850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138850,0.000000,0.000000,0.250000,0,0);}
.mc_c01287{transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);}
.m7d_c01287{transform:matrix(0.153550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153550,0.000000,0.000000,0.250000,0,0);}
.m16_c01287{transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);}
.m28_c01287{transform:matrix(0.169225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169225,0.000000,0.000000,0.250000,0,0);}
.m46_c01287{transform:matrix(0.170450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170450,0.000000,0.000000,0.250000,0,0);}
.m7_c01287{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01287{transform:matrix(0.185400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185400,0.000000,0.000000,0.250000,0,0);}
.m6a_c01287{transform:matrix(0.188700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188700,0.000000,0.000000,0.250000,0,0);}
.m2_c01287{transform:matrix(0.189675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189675,0.000000,0.000000,0.250000,0,0);}
.m17_c01287{transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);}
.m2b_c01287{transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);}
.m39_c01287{transform:matrix(0.214400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214400,0.000000,0.000000,0.250000,0,0);}
.m51_c01287{transform:matrix(0.215475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215475,0.000000,0.000000,0.250000,0,0);}
.m73_c01287{transform:matrix(0.216425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216425,0.000000,0.000000,0.250000,0,0);}
.m7c_c01287{transform:matrix(0.219375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219375,0.000000,0.000000,0.250000,0,0);}
.m18_c01287{transform:matrix(0.225625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225625,0.000000,0.000000,0.250000,0,0);}
.m4b_c01287{transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);}
.m33_c01287{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m83_c01287{transform:matrix(0.241575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241575,0.000000,0.000000,0.250000,0,0);}
.m80_c01287{transform:matrix(0.249325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249325,0.000000,0.000000,0.250000,0,0);}
.mb_c01287{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m72_c01287{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);}
.m5c_c01287{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m10_c01287{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);}
.m5a_c01287{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);}
.m56_c01287{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);}
.m53_c01287{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m59_c01287{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);}
.m5d_c01287{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);}
.m70_c01287{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m13_c01287{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);}
.m79_c01287{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m7b_c01287{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m6e_c01287{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m6c_c01287{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01287{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m26_c01287{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m5_c01287{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mf_c01287{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m7f_c01287{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m7a_c01287{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);}
.m5f_c01287{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m12_c01287{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);}
.m75_c01287{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m23_c01287{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m82_c01287{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);}
.m71_c01287{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);}
.m38_c01287{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01287{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);}
.m45_c01287{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);}
.m50_c01287{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m81_c01287{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01287{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);}
.m74_c01287{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);}
.m6b_c01287{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);}
.m0_c01287{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m40_c01287{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);}
.m3c_c01287{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);}
.m78_c01287{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m76_c01287{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m58_c01287{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m6d_c01287{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m7e_c01287{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);}
.m54_c01287{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m9_c01287{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01287{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m27_c01287{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01287{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);}
.m67_c01287{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m60_c01287{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01287{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m65_c01287{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);}
.m4e_c01287{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m55_c01287{transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);}
.m42_c01287{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m43_c01287{transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01287{transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);}
.m35_c01287{transform:matrix(0.695000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.695000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.695000,0.000000,0.000000,0.250000,0,0);}
.m61_c01287{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m3_c01287{transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);}
.m64_c01287{transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);}
.m66_c01287{transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);}
.m57_c01287{transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);}
.m68_c01287{transform:matrix(0.775000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.775000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.775000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01287{transform:matrix(0.800000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.800000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.800000,0.000000,0.000000,0.250000,0,0);}
.m36_c01287{transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);}
.m37_c01287{transform:matrix(0.832500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832500,0.000000,0.000000,0.250000,0,0);}
.m52_c01287{transform:matrix(0.967500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.967500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.967500,0.000000,0.000000,0.250000,0,0);}
.m63_c01287{transform:matrix(1.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.060000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01287{transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);}
.m41_c01287{transform:matrix(1.082500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.082500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.082500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01287{transform:matrix(1.117500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.117500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.117500,0.000000,0.000000,0.250000,0,0);}
.m6f_c01287{transform:matrix(1.142500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.142500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.142500,0.000000,0.000000,0.250000,0,0);}
.m34_c01287{transform:matrix(1.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.170000,0.000000,0.000000,0.250000,0,0);}
.m62_c01287{transform:matrix(1.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.177500,0.000000,0.000000,0.250000,0,0);}
.m8_c01287{transform:matrix(1.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.200000,0.000000,0.000000,0.250000,0,0);}
.m5b_c01287{transform:matrix(1.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.255000,0.000000,0.000000,0.250000,0,0);}
.m31_c01287{transform:matrix(1.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.320000,0.000000,0.000000,0.250000,0,0);}
.m49_c01287{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.m69_c01287{transform:matrix(1.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.462500,0.000000,0.000000,0.250000,0,0);}
.m77_c01287{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.m4f_c01287{transform:matrix(1.607500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.607500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.607500,0.000000,0.000000,0.250000,0,0);}
.m47_c01287{transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);}
.m1_c01287{transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);}
.m4_c01287{transform:matrix(1.805000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.805000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.805000,0.000000,0.000000,0.250000,0,0);}
.m20_c01287{transform:matrix(1.920000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.920000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.920000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01287{transform:matrix(2.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.040000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01287{transform:matrix(2.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.160000,0.000000,0.000000,0.250000,0,0);}
.m22_c01287{transform:matrix(2.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.280000,0.000000,0.000000,0.250000,0,0);}
.m48_c01287{transform:matrix(2.640000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.640000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.640000,0.000000,0.000000,0.250000,0,0);}
.m21_c01287{transform:matrix(4.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.440000,0.000000,0.000000,0.250000,0,0);}
.m25_c01287{transform:matrix(4.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.560000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01287{transform:matrix(4.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.680000,0.000000,0.000000,0.250000,0,0);}
.m32_c01287{transform:matrix(4.880000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.880000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.880000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01287{transform:matrix(5.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.400000,0.000000,0.000000,0.250000,0,0);}
.m24_c01287{transform:matrix(5.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.505000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01287{transform:matrix(5.760000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.760000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.760000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01287{transform:matrix(10.920000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(10.920000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(10.920000,0.000000,0.000000,0.250000,0,0);}
.v1_c01287{vertical-align:-2.880000px;}
.v0_c01287{vertical-align:0.000000px;}
.v2_c01287{vertical-align:25.920000px;}
.ls4_c01287{letter-spacing:0.000000px;}
.ls1_c01287{letter-spacing:8.376960px;}
.ls0_c01287{letter-spacing:647.418240px;}
.ls2_c01287{letter-spacing:1474.317360px;}
.ls3_c01287{letter-spacing:1561.671600px;}
.sc__c01287{text-shadow:none;}
.sc0_c01287{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01287{-webkit-text-stroke:0px transparent;}
.sc0_c01287{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01287{word-spacing:0.000000px;}
.ws0_c01287{word-spacing:3.924184px;}
.fc0_c01287{color:transparent;}
.fs11_c01287{font-size:2.880000px;}
.fs10_c01287{font-size:5.760000px;}
.fs1_c01287{font-size:8.640000px;}
.fs20_c01287{font-size:17.280000px;}
.fs7_c01287{font-size:20.160000px;}
.fs4_c01287{font-size:23.040000px;}
.fs3_c01287{font-size:25.920000px;}
.fs14_c01287{font-size:28.800000px;}
.fsf_c01287{font-size:31.680000px;}
.fs0_c01287{font-size:34.560000px;}
.fs8_c01287{font-size:37.440000px;}
.fs9_c01287{font-size:40.320000px;}
.fs6_c01287{font-size:43.200000px;}
.fse_c01287{font-size:46.080000px;}
.fsb_c01287{font-size:48.960000px;}
.fsa_c01287{font-size:51.840000px;}
.fs1e_c01287{font-size:54.720000px;}
.fsc_c01287{font-size:60.480000px;}
.fsd_c01287{font-size:63.360000px;}
.fs16_c01287{font-size:66.240000px;}
.fs1a_c01287{font-size:69.120000px;}
.fs1d_c01287{font-size:77.760000px;}
.fs15_c01287{font-size:80.640000px;}
.fs5_c01287{font-size:83.520000px;}
.fs13_c01287{font-size:89.280000px;}
.fs12_c01287{font-size:92.160000px;}
.fs2_c01287{font-size:95.040000px;}
.fs21_c01287{font-size:97.920000px;}
.fs1b_c01287{font-size:100.800000px;}
.fs17_c01287{font-size:103.680000px;}
.fs1c_c01287{font-size:112.320000px;}
.fs18_c01287{font-size:126.720000px;}
.fs19_c01287{font-size:129.600000px;}
.fs1f_c01287{font-size:138.240000px;}
.y0_c01287{bottom:0.000000px;}
.ya8_c01287{bottom:32.400000px;}
.ya7_c01287{bottom:38.880000px;}
.ya5_c01287{bottom:95.760000px;}
.ya6_c01287{bottom:96.480000px;}
.y92_c01287{bottom:140.400000px;}
.ya2_c01287{bottom:141.120000px;}
.ya3_c01287{bottom:141.840000px;}
.ya4_c01287{bottom:142.560000px;}
.y91_c01287{bottom:146.160000px;}
.y90_c01287{bottom:148.320000px;}
.y8f_c01287{bottom:150.480000px;}
.y8e_c01287{bottom:151.920000px;}
.y8d_c01287{bottom:155.520000px;}
.y8c_c01287{bottom:156.960000px;}
.y8b_c01287{bottom:157.680000px;}
.y89_c01287{bottom:161.280000px;}
.y8a_c01287{bottom:162.720000px;}
.y88_c01287{bottom:164.160000px;}
.y85_c01287{bottom:167.760000px;}
.y86_c01287{bottom:168.480000px;}
.y87_c01287{bottom:169.920000px;}
.y83_c01287{bottom:174.240000px;}
.y84_c01287{bottom:179.280000px;}
.ya0_c01287{bottom:184.320000px;}
.ya1_c01287{bottom:185.040000px;}
.y81_c01287{bottom:185.760000px;}
.y80_c01287{bottom:187.200000px;}
.y7f_c01287{bottom:187.920000px;}
.y82_c01287{bottom:191.520000px;}
.y7d_c01287{bottom:195.120000px;}
.y7e_c01287{bottom:212.400000px;}
.y7c_c01287{bottom:226.800000px;}
.y7b_c01287{bottom:232.560000px;}
.y78_c01287{bottom:255.600000px;}
.y7a_c01287{bottom:256.320000px;}
.y79_c01287{bottom:260.640000px;}
.y77_c01287{bottom:267.120000px;}
.y76_c01287{bottom:270.000000px;}
.y75_c01287{bottom:279.360000px;}
.y74_c01287{bottom:297.360000px;}
.y9e_c01287{bottom:298.080000px;}
.y73_c01287{bottom:298.800000px;}
.y9a_c01287{bottom:300.240000px;}
.y9f_c01287{bottom:301.680000px;}
.y9d_c01287{bottom:307.440000px;}
.y72_c01287{bottom:312.480000px;}
.y71_c01287{bottom:315.360000px;}
.y6f_c01287{bottom:334.080000px;}
.y9c_c01287{bottom:334.800000px;}
.y99_c01287{bottom:335.520000px;}
.y9b_c01287{bottom:336.960000px;}
.y70_c01287{bottom:341.280000px;}
.y6d_c01287{bottom:347.760000px;}
.y6e_c01287{bottom:350.640000px;}
.y6b_c01287{bottom:372.240000px;}
.y6c_c01287{bottom:380.880000px;}
.y69_c01287{bottom:385.200000px;}
.y68_c01287{bottom:387.360000px;}
.y6a_c01287{bottom:393.120000px;}
.y64_c01287{bottom:405.360000px;}
.y63_c01287{bottom:408.960000px;}
.y65_c01287{bottom:418.320000px;}
.y66_c01287{bottom:419.040000px;}
.y67_c01287{bottom:419.760000px;}
.y60_c01287{bottom:428.400000px;}
.y61_c01287{bottom:433.440000px;}
.y62_c01287{bottom:436.320000px;}
.y5e_c01287{bottom:452.160000px;}
.y5f_c01287{bottom:452.880000px;}
.y5d_c01287{bottom:462.240000px;}
.y5b_c01287{bottom:468.000000px;}
.y5c_c01287{bottom:468.720000px;}
.y5a_c01287{bottom:474.480000px;}
.y58_c01287{bottom:482.400000px;}
.y57_c01287{bottom:484.560000px;}
.y59_c01287{bottom:486.000000px;}
.y55_c01287{bottom:492.480000px;}
.y56_c01287{bottom:495.360000px;}
.y54_c01287{bottom:501.120000px;}
.y53_c01287{bottom:501.840000px;}
.y52_c01287{bottom:504.000000px;}
.y51_c01287{bottom:530.640000px;}
.y50_c01287{bottom:535.680000px;}
.y4e_c01287{bottom:545.040000px;}
.y4f_c01287{bottom:546.480000px;}
.y4d_c01287{bottom:550.080000px;}
.y4c_c01287{bottom:559.440000px;}
.y4b_c01287{bottom:564.480000px;}
.y4a_c01287{bottom:568.080000px;}
.y49_c01287{bottom:572.400000px;}
.y48_c01287{bottom:573.840000px;}
.y47_c01287{bottom:576.720000px;}
.y46_c01287{bottom:581.040000px;}
.y45_c01287{bottom:583.920000px;}
.y41_c01287{bottom:590.400000px;}
.y44_c01287{bottom:592.560000px;}
.y3e_c01287{bottom:607.680000px;}
.y43_c01287{bottom:609.120000px;}
.y42_c01287{bottom:609.840000px;}
.y40_c01287{bottom:614.880000px;}
.y3f_c01287{bottom:616.320000px;}
.y3c_c01287{bottom:620.640000px;}
.y3d_c01287{bottom:624.240000px;}
.y3b_c01287{bottom:630.720000px;}
.y3a_c01287{bottom:635.760000px;}
.y97_c01287{bottom:639.360000px;}
.y98_c01287{bottom:640.800000px;}
.y39_c01287{bottom:642.960000px;}
.y37_c01287{bottom:653.040000px;}
.y36_c01287{bottom:654.480000px;}
.y38_c01287{bottom:658.800000px;}
.y33_c01287{bottom:667.440000px;}
.y34_c01287{bottom:670.320000px;}
.y35_c01287{bottom:675.360000px;}
.y31_c01287{bottom:678.960000px;}
.y30_c01287{bottom:681.840000px;}
.y2f_c01287{bottom:684.000000px;}
.y32_c01287{bottom:692.640000px;}
.y2d_c01287{bottom:701.280000px;}
.y2c_c01287{bottom:703.440000px;}
.y2e_c01287{bottom:705.600000px;}
.y2b_c01287{bottom:717.840000px;}
.y2a_c01287{bottom:728.640000px;}
.y29_c01287{bottom:733.680000px;}
.y26_c01287{bottom:748.800000px;}
.y27_c01287{bottom:749.520000px;}
.y28_c01287{bottom:756.720000px;}
.y24_c01287{bottom:766.080000px;}
.y25_c01287{bottom:769.680000px;}
.y22_c01287{bottom:771.840000px;}
.y20_c01287{bottom:775.440000px;}
.y21_c01287{bottom:776.160000px;}
.y23_c01287{bottom:776.880000px;}
.y1c_c01287{bottom:789.120000px;}
.y1d_c01287{bottom:792.720000px;}
.y1e_c01287{bottom:795.600000px;}
.y1f_c01287{bottom:796.320000px;}
.y94_c01287{bottom:802.800000px;}
.y1a_c01287{bottom:807.120000px;}
.y1b_c01287{bottom:809.280000px;}
.y19_c01287{bottom:813.600000px;}
.y18_c01287{bottom:822.960000px;}
.y17_c01287{bottom:824.400000px;}
.y16_c01287{bottom:831.600000px;}
.y96_c01287{bottom:833.040000px;}
.y14_c01287{bottom:839.520000px;}
.y15_c01287{bottom:846.000000px;}
.y10_c01287{bottom:856.800000px;}
.y13_c01287{bottom:857.520000px;}
.y12_c01287{bottom:860.400000px;}
.y11_c01287{bottom:863.280000px;}
.ye_c01287{bottom:868.320000px;}
.yf_c01287{bottom:871.920000px;}
.yd_c01287{bottom:872.640000px;}
.yc_c01287{bottom:885.600000px;}
.yb_c01287{bottom:887.760000px;}
.ya_c01287{bottom:900.720000px;}
.y7_c01287{bottom:915.120000px;}
.y9_c01287{bottom:915.840000px;}
.y8_c01287{bottom:921.600000px;}
.y4_c01287{bottom:923.760000px;}
.y6_c01287{bottom:927.360000px;}
.y1_c01287{bottom:928.800000px;}
.y5_c01287{bottom:929.520000px;}
.y3_c01287{bottom:935.280000px;}
.y2_c01287{bottom:936.000000px;}
.y93_c01287{bottom:1088.640000px;}
.y95_c01287{bottom:1090.800000px;}
.h13_c01287{height:2.591719px;}
.h12_c01287{height:5.183438px;}
.h3_c01287{height:7.775156px;}
.h23_c01287{height:15.550313px;}
.h9_c01287{height:18.142031px;}
.h6_c01287{height:20.733750px;}
.h5_c01287{height:23.325469px;}
.h16_c01287{height:25.917187px;}
.h11_c01287{height:28.508906px;}
.h2_c01287{height:31.100625px;}
.ha_c01287{height:33.692344px;}
.hb_c01287{height:36.284062px;}
.h8_c01287{height:38.875781px;}
.h10_c01287{height:41.467500px;}
.hd_c01287{height:44.059219px;}
.hc_c01287{height:46.650937px;}
.h21_c01287{height:49.242656px;}
.he_c01287{height:54.426094px;}
.hf_c01287{height:57.017812px;}
.h19_c01287{height:59.609531px;}
.h1d_c01287{height:62.201250px;}
.h18_c01287{height:64.795781px;}
.h20_c01287{height:69.976406px;}
.h17_c01287{height:72.568125px;}
.h7_c01287{height:75.159844px;}
.h15_c01287{height:80.343281px;}
.h14_c01287{height:82.935000px;}
.h4_c01287{height:85.526719px;}
.h24_c01287{height:88.118437px;}
.h1e_c01287{height:90.710156px;}
.h1a_c01287{height:93.301875px;}
.h1f_c01287{height:101.077031px;}
.h1b_c01287{height:114.035625px;}
.h1c_c01287{height:116.627344px;}
.h22_c01287{height:124.402500px;}
.h1_c01287{height:1183.500000px;}
.h0_c01287{height:1183.680000px;}
.w1_c01287{width:1505.250000px;}
.w0_c01287{width:1505.520000px;}
.x0_c01287{left:0.000000px;}
.x6d_c01287{left:79.920000px;}
.x6e_c01287{left:92.880000px;}
.x56_c01287{left:105.840000px;}
.x53_c01287{left:107.280000px;}
.x59_c01287{left:110.160000px;}
.x51_c01287{left:116.640000px;}
.x4f_c01287{left:131.760000px;}
.x5a_c01287{left:133.200000px;}
.x5e_c01287{left:146.160000px;}
.x3c_c01287{left:149.040000px;}
.x3a_c01287{left:151.920000px;}
.x62_c01287{left:155.520000px;}
.x4c_c01287{left:159.120000px;}
.x4a_c01287{left:162.000000px;}
.x66_c01287{left:166.320000px;}
.x38_c01287{left:176.400000px;}
.x67_c01287{left:185.040000px;}
.x36_c01287{left:192.240000px;}
.x68_c01287{left:216.000000px;}
.x34_c01287{left:227.520000px;}
.x69_c01287{left:237.600000px;}
.x6f_c01287{left:246.960000px;}
.x32_c01287{left:275.040000px;}
.x63_c01287{left:278.640000px;}
.x31_c01287{left:289.440000px;}
.x64_c01287{left:304.560000px;}
.x11_c01287{left:317.520000px;}
.x5f_c01287{left:334.080000px;}
.x12_c01287{left:357.840000px;}
.x5b_c01287{left:365.760000px;}
.x13_c01287{left:375.840000px;}
.x4d_c01287{left:378.720000px;}
.x14_c01287{left:394.560000px;}
.x15_c01287{left:414.000000px;}
.x71_c01287{left:429.120000px;}
.x70_c01287{left:430.560000px;}
.x61_c01287{left:451.440000px;}
.x1_c01287{left:453.600000px;}
.x65_c01287{left:457.200000px;}
.x6a_c01287{left:469.440000px;}
.x6c_c01287{left:490.320000px;}
.x2_c01287{left:493.200000px;}
.x3_c01287{left:509.760000px;}
.x16_c01287{left:526.320000px;}
.x8_c01287{left:529.200000px;}
.x6b_c01287{left:537.840000px;}
.x17_c01287{left:545.040000px;}
.x50_c01287{left:568.080000px;}
.x4e_c01287{left:572.400000px;}
.x52_c01287{left:576.720000px;}
.x18_c01287{left:580.320000px;}
.x4b_c01287{left:583.200000px;}
.x54_c01287{left:584.640000px;}
.x49_c01287{left:606.240000px;}
.x57_c01287{left:612.000000px;}
.x60_c01287{left:616.320000px;}
.x47_c01287{left:619.920000px;}
.x19_c01287{left:623.520000px;}
.x48_c01287{left:637.200000px;}
.x1a_c01287{left:642.240000px;}
.x5c_c01287{left:648.000000px;}
.x3d_c01287{left:655.200000px;}
.x1b_c01287{left:660.960000px;}
.x5d_c01287{left:665.280000px;}
.xb_c01287{left:670.320000px;}
.x72_c01287{left:671.760000px;}
.x1c_c01287{left:679.680000px;}
.x3b_c01287{left:682.560000px;}
.x55_c01287{left:691.920000px;}
.x58_c01287{left:705.600000px;}
.x39_c01287{left:710.640000px;}
.x1d_c01287{left:712.800000px;}
.x37_c01287{left:720.720000px;}
.x35_c01287{left:726.480000px;}
.x28_c01287{left:727.920000px;}
.x1e_c01287{left:730.800000px;}
.x33_c01287{left:735.840000px;}
.x1f_c01287{left:751.680000px;}
.x20_c01287{left:792.720000px;}
.x30_c01287{left:801.360000px;}
.x2f_c01287{left:812.160000px;}
.xe_c01287{left:822.240000px;}
.x29_c01287{left:838.080000px;}
.x2e_c01287{left:844.560000px;}
.x21_c01287{left:849.600000px;}
.x2d_c01287{left:894.960000px;}
.x2a_c01287{left:905.760000px;}
.xc_c01287{left:911.520000px;}
.x26_c01287{left:913.680000px;}
.xd_c01287{left:928.080000px;}
.x2c_c01287{left:941.760000px;}
.x22_c01287{left:951.120000px;}
.x2b_c01287{left:969.120000px;}
.x23_c01287{left:984.960000px;}
.x10_c01287{left:1014.480000px;}
.x3e_c01287{left:1030.320000px;}
.x24_c01287{left:1034.640000px;}
.x3f_c01287{left:1064.160000px;}
.x25_c01287{left:1073.520000px;}
.x77_c01287{left:1077.840000px;}
.x40_c01287{left:1080.720000px;}
.x41_c01287{left:1097.280000px;}
.x27_c01287{left:1099.440000px;}
.x7d_c01287{left:1103.040000px;}
.x73_c01287{left:1109.520000px;}
.x4_c01287{left:1115.280000px;}
.x42_c01287{left:1116.720000px;}
.x7e_c01287{left:1118.880000px;}
.x9_c01287{left:1133.280000px;}
.x82_c01287{left:1139.040000px;}
.x7f_c01287{left:1145.520000px;}
.x43_c01287{left:1149.120000px;}
.x44_c01287{left:1165.680000px;}
.x78_c01287{left:1168.560000px;}
.x5_c01287{left:1176.480000px;}
.x45_c01287{left:1185.840000px;}
.x75_c01287{left:1188.000000px;}
.x6_c01287{left:1190.160000px;}
.x46_c01287{left:1198.800000px;}
.xa_c01287{left:1201.680000px;}
.x7_c01287{left:1203.120000px;}
.xf_c01287{left:1204.560000px;}
.x76_c01287{left:1207.440000px;}
.x79_c01287{left:1211.760000px;}
.x80_c01287{left:1233.360000px;}
.x85_c01287{left:1240.560000px;}
.x83_c01287{left:1252.800000px;}
.x7a_c01287{left:1255.680000px;}
.x74_c01287{left:1262.160000px;}
.x81_c01287{left:1315.440000px;}
.x7b_c01287{left:1325.520000px;}
.x84_c01287{left:1350.000000px;}
.x7c_c01287{left:1382.400000px;}
@media print{
.v1_c01287{vertical-align:-2.560000pt;}
.v0_c01287{vertical-align:0.000000pt;}
.v2_c01287{vertical-align:23.040000pt;}
.ls4_c01287{letter-spacing:0.000000pt;}
.ls1_c01287{letter-spacing:7.446187pt;}
.ls0_c01287{letter-spacing:575.482880pt;}
.ls2_c01287{letter-spacing:1310.504320pt;}
.ls3_c01287{letter-spacing:1388.152533pt;}
.ws1_c01287{word-spacing:0.000000pt;}
.ws0_c01287{word-spacing:3.488164pt;}
.fs11_c01287{font-size:2.560000pt;}
.fs10_c01287{font-size:5.120000pt;}
.fs1_c01287{font-size:7.680000pt;}
.fs20_c01287{font-size:15.360000pt;}
.fs7_c01287{font-size:17.920000pt;}
.fs4_c01287{font-size:20.480000pt;}
.fs3_c01287{font-size:23.040000pt;}
.fs14_c01287{font-size:25.600000pt;}
.fsf_c01287{font-size:28.160000pt;}
.fs0_c01287{font-size:30.720000pt;}
.fs8_c01287{font-size:33.280000pt;}
.fs9_c01287{font-size:35.840000pt;}
.fs6_c01287{font-size:38.400000pt;}
.fse_c01287{font-size:40.960000pt;}
.fsb_c01287{font-size:43.520000pt;}
.fsa_c01287{font-size:46.080000pt;}
.fs1e_c01287{font-size:48.640000pt;}
.fsc_c01287{font-size:53.760000pt;}
.fsd_c01287{font-size:56.320000pt;}
.fs16_c01287{font-size:58.880000pt;}
.fs1a_c01287{font-size:61.440000pt;}
.fs1d_c01287{font-size:69.120000pt;}
.fs15_c01287{font-size:71.680000pt;}
.fs5_c01287{font-size:74.240000pt;}
.fs13_c01287{font-size:79.360000pt;}
.fs12_c01287{font-size:81.920000pt;}
.fs2_c01287{font-size:84.480000pt;}
.fs21_c01287{font-size:87.040000pt;}
.fs1b_c01287{font-size:89.600000pt;}
.fs17_c01287{font-size:92.160000pt;}
.fs1c_c01287{font-size:99.840000pt;}
.fs18_c01287{font-size:112.640000pt;}
.fs19_c01287{font-size:115.200000pt;}
.fs1f_c01287{font-size:122.880000pt;}
.y0_c01287{bottom:0.000000pt;}
.ya8_c01287{bottom:28.800000pt;}
.ya7_c01287{bottom:34.560000pt;}
.ya5_c01287{bottom:85.120000pt;}
.ya6_c01287{bottom:85.760000pt;}
.y92_c01287{bottom:124.800000pt;}
.ya2_c01287{bottom:125.440000pt;}
.ya3_c01287{bottom:126.080000pt;}
.ya4_c01287{bottom:126.720000pt;}
.y91_c01287{bottom:129.920000pt;}
.y90_c01287{bottom:131.840000pt;}
.y8f_c01287{bottom:133.760000pt;}
.y8e_c01287{bottom:135.040000pt;}
.y8d_c01287{bottom:138.240000pt;}
.y8c_c01287{bottom:139.520000pt;}
.y8b_c01287{bottom:140.160000pt;}
.y89_c01287{bottom:143.360000pt;}
.y8a_c01287{bottom:144.640000pt;}
.y88_c01287{bottom:145.920000pt;}
.y85_c01287{bottom:149.120000pt;}
.y86_c01287{bottom:149.760000pt;}
.y87_c01287{bottom:151.040000pt;}
.y83_c01287{bottom:154.880000pt;}
.y84_c01287{bottom:159.360000pt;}
.ya0_c01287{bottom:163.840000pt;}
.ya1_c01287{bottom:164.480000pt;}
.y81_c01287{bottom:165.120000pt;}
.y80_c01287{bottom:166.400000pt;}
.y7f_c01287{bottom:167.040000pt;}
.y82_c01287{bottom:170.240000pt;}
.y7d_c01287{bottom:173.440000pt;}
.y7e_c01287{bottom:188.800000pt;}
.y7c_c01287{bottom:201.600000pt;}
.y7b_c01287{bottom:206.720000pt;}
.y78_c01287{bottom:227.200000pt;}
.y7a_c01287{bottom:227.840000pt;}
.y79_c01287{bottom:231.680000pt;}
.y77_c01287{bottom:237.440000pt;}
.y76_c01287{bottom:240.000000pt;}
.y75_c01287{bottom:248.320000pt;}
.y74_c01287{bottom:264.320000pt;}
.y9e_c01287{bottom:264.960000pt;}
.y73_c01287{bottom:265.600000pt;}
.y9a_c01287{bottom:266.880000pt;}
.y9f_c01287{bottom:268.160000pt;}
.y9d_c01287{bottom:273.280000pt;}
.y72_c01287{bottom:277.760000pt;}
.y71_c01287{bottom:280.320000pt;}
.y6f_c01287{bottom:296.960000pt;}
.y9c_c01287{bottom:297.600000pt;}
.y99_c01287{bottom:298.240000pt;}
.y9b_c01287{bottom:299.520000pt;}
.y70_c01287{bottom:303.360000pt;}
.y6d_c01287{bottom:309.120000pt;}
.y6e_c01287{bottom:311.680000pt;}
.y6b_c01287{bottom:330.880000pt;}
.y6c_c01287{bottom:338.560000pt;}
.y69_c01287{bottom:342.400000pt;}
.y68_c01287{bottom:344.320000pt;}
.y6a_c01287{bottom:349.440000pt;}
.y64_c01287{bottom:360.320000pt;}
.y63_c01287{bottom:363.520000pt;}
.y65_c01287{bottom:371.840000pt;}
.y66_c01287{bottom:372.480000pt;}
.y67_c01287{bottom:373.120000pt;}
.y60_c01287{bottom:380.800000pt;}
.y61_c01287{bottom:385.280000pt;}
.y62_c01287{bottom:387.840000pt;}
.y5e_c01287{bottom:401.920000pt;}
.y5f_c01287{bottom:402.560000pt;}
.y5d_c01287{bottom:410.880000pt;}
.y5b_c01287{bottom:416.000000pt;}
.y5c_c01287{bottom:416.640000pt;}
.y5a_c01287{bottom:421.760000pt;}
.y58_c01287{bottom:428.800000pt;}
.y57_c01287{bottom:430.720000pt;}
.y59_c01287{bottom:432.000000pt;}
.y55_c01287{bottom:437.760000pt;}
.y56_c01287{bottom:440.320000pt;}
.y54_c01287{bottom:445.440000pt;}
.y53_c01287{bottom:446.080000pt;}
.y52_c01287{bottom:448.000000pt;}
.y51_c01287{bottom:471.680000pt;}
.y50_c01287{bottom:476.160000pt;}
.y4e_c01287{bottom:484.480000pt;}
.y4f_c01287{bottom:485.760000pt;}
.y4d_c01287{bottom:488.960000pt;}
.y4c_c01287{bottom:497.280000pt;}
.y4b_c01287{bottom:501.760000pt;}
.y4a_c01287{bottom:504.960000pt;}
.y49_c01287{bottom:508.800000pt;}
.y48_c01287{bottom:510.080000pt;}
.y47_c01287{bottom:512.640000pt;}
.y46_c01287{bottom:516.480000pt;}
.y45_c01287{bottom:519.040000pt;}
.y41_c01287{bottom:524.800000pt;}
.y44_c01287{bottom:526.720000pt;}
.y3e_c01287{bottom:540.160000pt;}
.y43_c01287{bottom:541.440000pt;}
.y42_c01287{bottom:542.080000pt;}
.y40_c01287{bottom:546.560000pt;}
.y3f_c01287{bottom:547.840000pt;}
.y3c_c01287{bottom:551.680000pt;}
.y3d_c01287{bottom:554.880000pt;}
.y3b_c01287{bottom:560.640000pt;}
.y3a_c01287{bottom:565.120000pt;}
.y97_c01287{bottom:568.320000pt;}
.y98_c01287{bottom:569.600000pt;}
.y39_c01287{bottom:571.520000pt;}
.y37_c01287{bottom:580.480000pt;}
.y36_c01287{bottom:581.760000pt;}
.y38_c01287{bottom:585.600000pt;}
.y33_c01287{bottom:593.280000pt;}
.y34_c01287{bottom:595.840000pt;}
.y35_c01287{bottom:600.320000pt;}
.y31_c01287{bottom:603.520000pt;}
.y30_c01287{bottom:606.080000pt;}
.y2f_c01287{bottom:608.000000pt;}
.y32_c01287{bottom:615.680000pt;}
.y2d_c01287{bottom:623.360000pt;}
.y2c_c01287{bottom:625.280000pt;}
.y2e_c01287{bottom:627.200000pt;}
.y2b_c01287{bottom:638.080000pt;}
.y2a_c01287{bottom:647.680000pt;}
.y29_c01287{bottom:652.160000pt;}
.y26_c01287{bottom:665.600000pt;}
.y27_c01287{bottom:666.240000pt;}
.y28_c01287{bottom:672.640000pt;}
.y24_c01287{bottom:680.960000pt;}
.y25_c01287{bottom:684.160000pt;}
.y22_c01287{bottom:686.080000pt;}
.y20_c01287{bottom:689.280000pt;}
.y21_c01287{bottom:689.920000pt;}
.y23_c01287{bottom:690.560000pt;}
.y1c_c01287{bottom:701.440000pt;}
.y1d_c01287{bottom:704.640000pt;}
.y1e_c01287{bottom:707.200000pt;}
.y1f_c01287{bottom:707.840000pt;}
.y94_c01287{bottom:713.600000pt;}
.y1a_c01287{bottom:717.440000pt;}
.y1b_c01287{bottom:719.360000pt;}
.y19_c01287{bottom:723.200000pt;}
.y18_c01287{bottom:731.520000pt;}
.y17_c01287{bottom:732.800000pt;}
.y16_c01287{bottom:739.200000pt;}
.y96_c01287{bottom:740.480000pt;}
.y14_c01287{bottom:746.240000pt;}
.y15_c01287{bottom:752.000000pt;}
.y10_c01287{bottom:761.600000pt;}
.y13_c01287{bottom:762.240000pt;}
.y12_c01287{bottom:764.800000pt;}
.y11_c01287{bottom:767.360000pt;}
.ye_c01287{bottom:771.840000pt;}
.yf_c01287{bottom:775.040000pt;}
.yd_c01287{bottom:775.680000pt;}
.yc_c01287{bottom:787.200000pt;}
.yb_c01287{bottom:789.120000pt;}
.ya_c01287{bottom:800.640000pt;}
.y7_c01287{bottom:813.440000pt;}
.y9_c01287{bottom:814.080000pt;}
.y8_c01287{bottom:819.200000pt;}
.y4_c01287{bottom:821.120000pt;}
.y6_c01287{bottom:824.320000pt;}
.y1_c01287{bottom:825.600000pt;}
.y5_c01287{bottom:826.240000pt;}
.y3_c01287{bottom:831.360000pt;}
.y2_c01287{bottom:832.000000pt;}
.y93_c01287{bottom:967.680000pt;}
.y95_c01287{bottom:969.600000pt;}
.h13_c01287{height:2.303750pt;}
.h12_c01287{height:4.607500pt;}
.h3_c01287{height:6.911250pt;}
.h23_c01287{height:13.822500pt;}
.h9_c01287{height:16.126250pt;}
.h6_c01287{height:18.430000pt;}
.h5_c01287{height:20.733750pt;}
.h16_c01287{height:23.037500pt;}
.h11_c01287{height:25.341250pt;}
.h2_c01287{height:27.645000pt;}
.ha_c01287{height:29.948750pt;}
.hb_c01287{height:32.252500pt;}
.h8_c01287{height:34.556250pt;}
.h10_c01287{height:36.860000pt;}
.hd_c01287{height:39.163750pt;}
.hc_c01287{height:41.467500pt;}
.h21_c01287{height:43.771250pt;}
.he_c01287{height:48.378750pt;}
.hf_c01287{height:50.682500pt;}
.h19_c01287{height:52.986250pt;}
.h1d_c01287{height:55.290000pt;}
.h18_c01287{height:57.596250pt;}
.h20_c01287{height:62.201250pt;}
.h17_c01287{height:64.505000pt;}
.h7_c01287{height:66.808750pt;}
.h15_c01287{height:71.416250pt;}
.h14_c01287{height:73.720000pt;}
.h4_c01287{height:76.023750pt;}
.h24_c01287{height:78.327500pt;}
.h1e_c01287{height:80.631250pt;}
.h1a_c01287{height:82.935000pt;}
.h1f_c01287{height:89.846250pt;}
.h1b_c01287{height:101.365000pt;}
.h1c_c01287{height:103.668750pt;}
.h22_c01287{height:110.580000pt;}
.h1_c01287{height:1052.000000pt;}
.h0_c01287{height:1052.160000pt;}
.w1_c01287{width:1338.000000pt;}
.w0_c01287{width:1338.240000pt;}
.x0_c01287{left:0.000000pt;}
.x6d_c01287{left:71.040000pt;}
.x6e_c01287{left:82.560000pt;}
.x56_c01287{left:94.080000pt;}
.x53_c01287{left:95.360000pt;}
.x59_c01287{left:97.920000pt;}
.x51_c01287{left:103.680000pt;}
.x4f_c01287{left:117.120000pt;}
.x5a_c01287{left:118.400000pt;}
.x5e_c01287{left:129.920000pt;}
.x3c_c01287{left:132.480000pt;}
.x3a_c01287{left:135.040000pt;}
.x62_c01287{left:138.240000pt;}
.x4c_c01287{left:141.440000pt;}
.x4a_c01287{left:144.000000pt;}
.x66_c01287{left:147.840000pt;}
.x38_c01287{left:156.800000pt;}
.x67_c01287{left:164.480000pt;}
.x36_c01287{left:170.880000pt;}
.x68_c01287{left:192.000000pt;}
.x34_c01287{left:202.240000pt;}
.x69_c01287{left:211.200000pt;}
.x6f_c01287{left:219.520000pt;}
.x32_c01287{left:244.480000pt;}
.x63_c01287{left:247.680000pt;}
.x31_c01287{left:257.280000pt;}
.x64_c01287{left:270.720000pt;}
.x11_c01287{left:282.240000pt;}
.x5f_c01287{left:296.960000pt;}
.x12_c01287{left:318.080000pt;}
.x5b_c01287{left:325.120000pt;}
.x13_c01287{left:334.080000pt;}
.x4d_c01287{left:336.640000pt;}
.x14_c01287{left:350.720000pt;}
.x15_c01287{left:368.000000pt;}
.x71_c01287{left:381.440000pt;}
.x70_c01287{left:382.720000pt;}
.x61_c01287{left:401.280000pt;}
.x1_c01287{left:403.200000pt;}
.x65_c01287{left:406.400000pt;}
.x6a_c01287{left:417.280000pt;}
.x6c_c01287{left:435.840000pt;}
.x2_c01287{left:438.400000pt;}
.x3_c01287{left:453.120000pt;}
.x16_c01287{left:467.840000pt;}
.x8_c01287{left:470.400000pt;}
.x6b_c01287{left:478.080000pt;}
.x17_c01287{left:484.480000pt;}
.x50_c01287{left:504.960000pt;}
.x4e_c01287{left:508.800000pt;}
.x52_c01287{left:512.640000pt;}
.x18_c01287{left:515.840000pt;}
.x4b_c01287{left:518.400000pt;}
.x54_c01287{left:519.680000pt;}
.x49_c01287{left:538.880000pt;}
.x57_c01287{left:544.000000pt;}
.x60_c01287{left:547.840000pt;}
.x47_c01287{left:551.040000pt;}
.x19_c01287{left:554.240000pt;}
.x48_c01287{left:566.400000pt;}
.x1a_c01287{left:570.880000pt;}
.x5c_c01287{left:576.000000pt;}
.x3d_c01287{left:582.400000pt;}
.x1b_c01287{left:587.520000pt;}
.x5d_c01287{left:591.360000pt;}
.xb_c01287{left:595.840000pt;}
.x72_c01287{left:597.120000pt;}
.x1c_c01287{left:604.160000pt;}
.x3b_c01287{left:606.720000pt;}
.x55_c01287{left:615.040000pt;}
.x58_c01287{left:627.200000pt;}
.x39_c01287{left:631.680000pt;}
.x1d_c01287{left:633.600000pt;}
.x37_c01287{left:640.640000pt;}
.x35_c01287{left:645.760000pt;}
.x28_c01287{left:647.040000pt;}
.x1e_c01287{left:649.600000pt;}
.x33_c01287{left:654.080000pt;}
.x1f_c01287{left:668.160000pt;}
.x20_c01287{left:704.640000pt;}
.x30_c01287{left:712.320000pt;}
.x2f_c01287{left:721.920000pt;}
.xe_c01287{left:730.880000pt;}
.x29_c01287{left:744.960000pt;}
.x2e_c01287{left:750.720000pt;}
.x21_c01287{left:755.200000pt;}
.x2d_c01287{left:795.520000pt;}
.x2a_c01287{left:805.120000pt;}
.xc_c01287{left:810.240000pt;}
.x26_c01287{left:812.160000pt;}
.xd_c01287{left:824.960000pt;}
.x2c_c01287{left:837.120000pt;}
.x22_c01287{left:845.440000pt;}
.x2b_c01287{left:861.440000pt;}
.x23_c01287{left:875.520000pt;}
.x10_c01287{left:901.760000pt;}
.x3e_c01287{left:915.840000pt;}
.x24_c01287{left:919.680000pt;}
.x3f_c01287{left:945.920000pt;}
.x25_c01287{left:954.240000pt;}
.x77_c01287{left:958.080000pt;}
.x40_c01287{left:960.640000pt;}
.x41_c01287{left:975.360000pt;}
.x27_c01287{left:977.280000pt;}
.x7d_c01287{left:980.480000pt;}
.x73_c01287{left:986.240000pt;}
.x4_c01287{left:991.360000pt;}
.x42_c01287{left:992.640000pt;}
.x7e_c01287{left:994.560000pt;}
.x9_c01287{left:1007.360000pt;}
.x82_c01287{left:1012.480000pt;}
.x7f_c01287{left:1018.240000pt;}
.x43_c01287{left:1021.440000pt;}
.x44_c01287{left:1036.160000pt;}
.x78_c01287{left:1038.720000pt;}
.x5_c01287{left:1045.760000pt;}
.x45_c01287{left:1054.080000pt;}
.x75_c01287{left:1056.000000pt;}
.x6_c01287{left:1057.920000pt;}
.x46_c01287{left:1065.600000pt;}
.xa_c01287{left:1068.160000pt;}
.x7_c01287{left:1069.440000pt;}
.xf_c01287{left:1070.720000pt;}
.x76_c01287{left:1073.280000pt;}
.x79_c01287{left:1077.120000pt;}
.x80_c01287{left:1096.320000pt;}
.x85_c01287{left:1102.720000pt;}
.x83_c01287{left:1113.600000pt;}
.x7a_c01287{left:1116.160000pt;}
.x74_c01287{left:1121.920000pt;}
.x81_c01287{left:1169.280000pt;}
.x7b_c01287{left:1178.240000pt;}
.x84_c01287{left:1200.000000pt;}
.x7c_c01287{left:1228.800000pt;}
}





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

.ir_c01288:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01288{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01288;src:url('chunks/assets/font_9ca504bd86b514341b27645b.woff2')format("woff");}.ff1_c01288{font-family:ff1_c01288;line-height:1.109863;font-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_c01288{transform:matrix(0.019550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019550,0.000000,0.000000,0.250000,0,0);}
.mf_c01288{transform:matrix(0.023675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.023675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.023675,0.000000,0.000000,0.250000,0,0);}
.m13_c01288{transform:matrix(0.024975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024975,0.000000,0.000000,0.250000,0,0);}
.m11_c01288{transform:matrix(0.026450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026450,0.000000,0.000000,0.250000,0,0);}
.m27_c01288{transform:matrix(0.034725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.034725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.034725,0.000000,0.000000,0.250000,0,0);}
.m10_c01288{transform:matrix(0.039100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.039100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.039100,0.000000,0.000000,0.250000,0,0);}
.mb_c01288{transform:matrix(0.049950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.049950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.049950,0.000000,0.000000,0.250000,0,0);}
.m22_c01288{transform:matrix(0.056400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056400,0.000000,0.000000,0.250000,0,0);}
.m24_c01288{transform:matrix(0.058225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058225,0.000000,0.000000,0.250000,0,0);}
.m1f_c01288{transform:matrix(0.066850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066850,0.000000,0.000000,0.250000,0,0);}
.m9_c01288{transform:matrix(0.074950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.074950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.074950,0.000000,0.000000,0.250000,0,0);}
.me_c01288{transform:matrix(0.085950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085950,0.000000,0.000000,0.250000,0,0);}
.m25_c01288{transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);}
.m1d_c01288{transform:matrix(0.109800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109800,0.000000,0.000000,0.250000,0,0);}
.m18_c01288{transform:matrix(0.115300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115300,0.000000,0.000000,0.250000,0,0);}
.m15_c01288{transform:matrix(0.116900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116900,0.000000,0.000000,0.250000,0,0);}
.m4_c01288{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m26_c01288{transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);}
.m17_c01288{transform:matrix(0.129450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129450,0.000000,0.000000,0.250000,0,0);}
.m16_c01288{transform:matrix(0.134900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134900,0.000000,0.000000,0.250000,0,0);}
.m19_c01288{transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);}
.m7_c01288{transform:matrix(0.171600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171600,0.000000,0.000000,0.250000,0,0);}
.m1b_c01288{transform:matrix(0.196625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196625,0.000000,0.000000,0.250000,0,0);}
.m14_c01288{transform:matrix(0.204375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204375,0.000000,0.000000,0.250000,0,0);}
.m35_c01288{transform:matrix(0.228850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228850,0.000000,0.000000,0.250000,0,0);}
.m0_c01288{transform:matrix(0.235550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235550,0.000000,0.000000,0.250000,0,0);}
.m6_c01288{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m21_c01288{transform:matrix(0.247100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247100,0.000000,0.000000,0.250000,0,0);}
.m1c_c01288{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m28_c01288{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01288{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m2_c01288{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1_c01288{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01288{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m30_c01288{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01288{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01288{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m20_c01288{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01288{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);}
.m2d_c01288{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m33_c01288{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.mc_c01288{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01288{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m31_c01288{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);}
.m32_c01288{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);}
.m34_c01288{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);}
.m2f_c01288{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);}
.m3_c01288{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_c01288{transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);}
.md_c01288{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);}
.m23_c01288{transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);}
.ma_c01288{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m5_c01288{transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);}
.m29_c01288{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.v2_c01288{vertical-align:-5.760000px;}
.v1_c01288{vertical-align:-2.880000px;}
.v0_c01288{vertical-align:0.000000px;}
.ls3_c01288{letter-spacing:0.000000px;}
.ls0_c01288{letter-spacing:44.011200px;}
.ls2_c01288{letter-spacing:982.897678px;}
.ls1_c01288{letter-spacing:1481.502960px;}
.sc__c01288{text-shadow:none;}
.sc0_c01288{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01288{-webkit-text-stroke:0px transparent;}
.sc0_c01288{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01288{word-spacing:0.000000px;}
.fc0_c01288{color:transparent;}
.fs3_c01288{font-size:5.760000px;}
.fs6_c01288{font-size:8.640000px;}
.fs4_c01288{font-size:11.520000px;}
.fs5_c01288{font-size:14.400000px;}
.fs9_c01288{font-size:17.280000px;}
.fs2_c01288{font-size:25.920000px;}
.fs19_c01288{font-size:40.320000px;}
.fs7_c01288{font-size:43.200000px;}
.fsd_c01288{font-size:48.960000px;}
.fs8_c01288{font-size:51.840000px;}
.fsb_c01288{font-size:54.720000px;}
.fsa_c01288{font-size:60.480000px;}
.fse_c01288{font-size:63.360000px;}
.fsc_c01288{font-size:66.240000px;}
.fs1b_c01288{font-size:69.120000px;}
.fsf_c01288{font-size:72.000000px;}
.fs1a_c01288{font-size:74.880000px;}
.fs15_c01288{font-size:77.760000px;}
.fs12_c01288{font-size:86.400000px;}
.fs17_c01288{font-size:89.280000px;}
.fs18_c01288{font-size:92.160000px;}
.fs11_c01288{font-size:95.040000px;}
.fs1_c01288{font-size:97.920000px;}
.fs10_c01288{font-size:100.800000px;}
.fs13_c01288{font-size:103.680000px;}
.fs1c_c01288{font-size:109.440000px;}
.fs0_c01288{font-size:112.320000px;}
.fs16_c01288{font-size:115.200000px;}
.fs14_c01288{font-size:123.840000px;}
.y0_c01288{bottom:0.000000px;}
.y31_c01288{bottom:33.840000px;}
.y30_c01288{bottom:39.600000px;}
.y2c_c01288{bottom:85.680000px;}
.y2f_c01288{bottom:86.400000px;}
.y2e_c01288{bottom:87.120000px;}
.y2d_c01288{bottom:87.840000px;}
.y2a_c01288{bottom:127.440000px;}
.y2b_c01288{bottom:128.160000px;}
.y28_c01288{bottom:282.240000px;}
.y29_c01288{bottom:288.000000px;}
.y27_c01288{bottom:625.680000px;}
.y26_c01288{bottom:646.560000px;}
.y25_c01288{bottom:649.440000px;}
.y22_c01288{bottom:652.320000px;}
.y1f_c01288{bottom:657.360000px;}
.y24_c01288{bottom:658.080000px;}
.y23_c01288{bottom:658.800000px;}
.y21_c01288{bottom:660.960000px;}
.y20_c01288{bottom:664.560000px;}
.y1e_c01288{bottom:666.720000px;}
.y1d_c01288{bottom:675.360000px;}
.y1c_c01288{bottom:676.800000px;}
.y1b_c01288{bottom:677.520000px;}
.y1a_c01288{bottom:678.240000px;}
.y19_c01288{bottom:693.360000px;}
.y18_c01288{bottom:704.880000px;}
.y14_c01288{bottom:706.320000px;}
.y17_c01288{bottom:707.760000px;}
.y16_c01288{bottom:711.360000px;}
.y15_c01288{bottom:713.520000px;}
.y11_c01288{bottom:731.520000px;}
.y13_c01288{bottom:732.240000px;}
.y12_c01288{bottom:738.720000px;}
.y10_c01288{bottom:756.000000px;}
.yf_c01288{bottom:765.360000px;}
.ye_c01288{bottom:781.200000px;}
.yd_c01288{bottom:783.360000px;}
.yc_c01288{bottom:785.520000px;}
.yb_c01288{bottom:805.680000px;}
.y9_c01288{bottom:825.840000px;}
.ya_c01288{bottom:828.720000px;}
.y7_c01288{bottom:856.800000px;}
.y8_c01288{bottom:862.560000px;}
.y6_c01288{bottom:871.920000px;}
.y5_c01288{bottom:897.840000px;}
.y3_c01288{bottom:906.480000px;}
.y4_c01288{bottom:910.080000px;}
.y1_c01288{bottom:1108.080000px;}
.y2_c01288{bottom:1112.400000px;}
.h5_c01288{height:5.183438px;}
.hb_c01288{height:7.775156px;}
.h6_c01288{height:10.366875px;}
.h7_c01288{height:12.958594px;}
.ha_c01288{height:15.550313px;}
.h4_c01288{height:23.325469px;}
.h1b_c01288{height:36.284062px;}
.h8_c01288{height:38.875781px;}
.hf_c01288{height:44.059219px;}
.h9_c01288{height:46.650937px;}
.hd_c01288{height:49.242656px;}
.hc_c01288{height:54.426094px;}
.h10_c01288{height:57.017812px;}
.he_c01288{height:59.609531px;}
.h1d_c01288{height:62.201250px;}
.h11_c01288{height:64.792969px;}
.h1c_c01288{height:67.384687px;}
.h17_c01288{height:69.976406px;}
.h14_c01288{height:77.751563px;}
.h19_c01288{height:80.343281px;}
.h1a_c01288{height:82.935000px;}
.h13_c01288{height:85.526719px;}
.h3_c01288{height:88.118437px;}
.h12_c01288{height:90.710156px;}
.h15_c01288{height:93.301875px;}
.h1e_c01288{height:98.485312px;}
.h2_c01288{height:101.077031px;}
.h18_c01288{height:103.668750px;}
.h16_c01288{height:111.443906px;}
.h1_c01288{height:1187.250000px;}
.h0_c01288{height:1187.280000px;}
.w1_c01288{width:1272.750000px;}
.w0_c01288{width:1272.960000px;}
.x0_c01288{left:0.000000px;}
.x16_c01288{left:43.920000px;}
.x13_c01288{left:45.360000px;}
.x1_c01288{left:73.440000px;}
.x17_c01288{left:94.320000px;}
.x1c_c01288{left:122.400000px;}
.xd_c01288{left:149.040000px;}
.xe_c01288{left:161.280000px;}
.x1d_c01288{left:197.280000px;}
.xb_c01288{left:201.600000px;}
.x10_c01288{left:208.080000px;}
.x1e_c01288{left:212.400000px;}
.x2_c01288{left:214.560000px;}
.x3_c01288{left:252.720000px;}
.x7_c01288{left:304.560000px;}
.x19_c01288{left:312.480000px;}
.x8_c01288{left:321.840000px;}
.xf_c01288{left:336.240000px;}
.x9_c01288{left:342.000000px;}
.x1a_c01288{left:570.240000px;}
.x14_c01288{left:590.400000px;}
.x6_c01288{left:602.640000px;}
.x4_c01288{left:632.160000px;}
.x5_c01288{left:644.400000px;}
.xa_c01288{left:717.840000px;}
.xc_c01288{left:719.280000px;}
.x1b_c01288{left:822.960000px;}
.x11_c01288{left:843.120000px;}
.x24_c01288{left:884.160000px;}
.x1f_c01288{left:885.600000px;}
.x25_c01288{left:949.680000px;}
.x28_c01288{left:967.680000px;}
.x12_c01288{left:969.840000px;}
.x20_c01288{left:990.720000px;}
.x26_c01288{left:1000.080000px;}
.x29_c01288{left:1011.600000px;}
.x21_c01288{left:1036.800000px;}
.x18_c01288{left:1097.280000px;}
.x27_c01288{left:1105.920000px;}
.x22_c01288{left:1132.560000px;}
.x23_c01288{left:1153.440000px;}
.x15_c01288{left:1158.480000px;}
@media print{
.v2_c01288{vertical-align:-5.120000pt;}
.v1_c01288{vertical-align:-2.560000pt;}
.v0_c01288{vertical-align:0.000000pt;}
.ls3_c01288{letter-spacing:0.000000pt;}
.ls0_c01288{letter-spacing:39.121067pt;}
.ls2_c01288{letter-spacing:873.686825pt;}
.ls1_c01288{letter-spacing:1316.891520pt;}
.ws0_c01288{word-spacing:0.000000pt;}
.fs3_c01288{font-size:5.120000pt;}
.fs6_c01288{font-size:7.680000pt;}
.fs4_c01288{font-size:10.240000pt;}
.fs5_c01288{font-size:12.800000pt;}
.fs9_c01288{font-size:15.360000pt;}
.fs2_c01288{font-size:23.040000pt;}
.fs19_c01288{font-size:35.840000pt;}
.fs7_c01288{font-size:38.400000pt;}
.fsd_c01288{font-size:43.520000pt;}
.fs8_c01288{font-size:46.080000pt;}
.fsb_c01288{font-size:48.640000pt;}
.fsa_c01288{font-size:53.760000pt;}
.fse_c01288{font-size:56.320000pt;}
.fsc_c01288{font-size:58.880000pt;}
.fs1b_c01288{font-size:61.440000pt;}
.fsf_c01288{font-size:64.000000pt;}
.fs1a_c01288{font-size:66.560000pt;}
.fs15_c01288{font-size:69.120000pt;}
.fs12_c01288{font-size:76.800000pt;}
.fs17_c01288{font-size:79.360000pt;}
.fs18_c01288{font-size:81.920000pt;}
.fs11_c01288{font-size:84.480000pt;}
.fs1_c01288{font-size:87.040000pt;}
.fs10_c01288{font-size:89.600000pt;}
.fs13_c01288{font-size:92.160000pt;}
.fs1c_c01288{font-size:97.280000pt;}
.fs0_c01288{font-size:99.840000pt;}
.fs16_c01288{font-size:102.400000pt;}
.fs14_c01288{font-size:110.080000pt;}
.y0_c01288{bottom:0.000000pt;}
.y31_c01288{bottom:30.080000pt;}
.y30_c01288{bottom:35.200000pt;}
.y2c_c01288{bottom:76.160000pt;}
.y2f_c01288{bottom:76.800000pt;}
.y2e_c01288{bottom:77.440000pt;}
.y2d_c01288{bottom:78.080000pt;}
.y2a_c01288{bottom:113.280000pt;}
.y2b_c01288{bottom:113.920000pt;}
.y28_c01288{bottom:250.880000pt;}
.y29_c01288{bottom:256.000000pt;}
.y27_c01288{bottom:556.160000pt;}
.y26_c01288{bottom:574.720000pt;}
.y25_c01288{bottom:577.280000pt;}
.y22_c01288{bottom:579.840000pt;}
.y1f_c01288{bottom:584.320000pt;}
.y24_c01288{bottom:584.960000pt;}
.y23_c01288{bottom:585.600000pt;}
.y21_c01288{bottom:587.520000pt;}
.y20_c01288{bottom:590.720000pt;}
.y1e_c01288{bottom:592.640000pt;}
.y1d_c01288{bottom:600.320000pt;}
.y1c_c01288{bottom:601.600000pt;}
.y1b_c01288{bottom:602.240000pt;}
.y1a_c01288{bottom:602.880000pt;}
.y19_c01288{bottom:616.320000pt;}
.y18_c01288{bottom:626.560000pt;}
.y14_c01288{bottom:627.840000pt;}
.y17_c01288{bottom:629.120000pt;}
.y16_c01288{bottom:632.320000pt;}
.y15_c01288{bottom:634.240000pt;}
.y11_c01288{bottom:650.240000pt;}
.y13_c01288{bottom:650.880000pt;}
.y12_c01288{bottom:656.640000pt;}
.y10_c01288{bottom:672.000000pt;}
.yf_c01288{bottom:680.320000pt;}
.ye_c01288{bottom:694.400000pt;}
.yd_c01288{bottom:696.320000pt;}
.yc_c01288{bottom:698.240000pt;}
.yb_c01288{bottom:716.160000pt;}
.y9_c01288{bottom:734.080000pt;}
.ya_c01288{bottom:736.640000pt;}
.y7_c01288{bottom:761.600000pt;}
.y8_c01288{bottom:766.720000pt;}
.y6_c01288{bottom:775.040000pt;}
.y5_c01288{bottom:798.080000pt;}
.y3_c01288{bottom:805.760000pt;}
.y4_c01288{bottom:808.960000pt;}
.y1_c01288{bottom:984.960000pt;}
.y2_c01288{bottom:988.800000pt;}
.h5_c01288{height:4.607500pt;}
.hb_c01288{height:6.911250pt;}
.h6_c01288{height:9.215000pt;}
.h7_c01288{height:11.518750pt;}
.ha_c01288{height:13.822500pt;}
.h4_c01288{height:20.733750pt;}
.h1b_c01288{height:32.252500pt;}
.h8_c01288{height:34.556250pt;}
.hf_c01288{height:39.163750pt;}
.h9_c01288{height:41.467500pt;}
.hd_c01288{height:43.771250pt;}
.hc_c01288{height:48.378750pt;}
.h10_c01288{height:50.682500pt;}
.he_c01288{height:52.986250pt;}
.h1d_c01288{height:55.290000pt;}
.h11_c01288{height:57.593750pt;}
.h1c_c01288{height:59.897500pt;}
.h17_c01288{height:62.201250pt;}
.h14_c01288{height:69.112500pt;}
.h19_c01288{height:71.416250pt;}
.h1a_c01288{height:73.720000pt;}
.h13_c01288{height:76.023750pt;}
.h3_c01288{height:78.327500pt;}
.h12_c01288{height:80.631250pt;}
.h15_c01288{height:82.935000pt;}
.h1e_c01288{height:87.542500pt;}
.h2_c01288{height:89.846250pt;}
.h18_c01288{height:92.150000pt;}
.h16_c01288{height:99.061250pt;}
.h1_c01288{height:1055.333333pt;}
.h0_c01288{height:1055.360000pt;}
.w1_c01288{width:1131.333333pt;}
.w0_c01288{width:1131.520000pt;}
.x0_c01288{left:0.000000pt;}
.x16_c01288{left:39.040000pt;}
.x13_c01288{left:40.320000pt;}
.x1_c01288{left:65.280000pt;}
.x17_c01288{left:83.840000pt;}
.x1c_c01288{left:108.800000pt;}
.xd_c01288{left:132.480000pt;}
.xe_c01288{left:143.360000pt;}
.x1d_c01288{left:175.360000pt;}
.xb_c01288{left:179.200000pt;}
.x10_c01288{left:184.960000pt;}
.x1e_c01288{left:188.800000pt;}
.x2_c01288{left:190.720000pt;}
.x3_c01288{left:224.640000pt;}
.x7_c01288{left:270.720000pt;}
.x19_c01288{left:277.760000pt;}
.x8_c01288{left:286.080000pt;}
.xf_c01288{left:298.880000pt;}
.x9_c01288{left:304.000000pt;}
.x1a_c01288{left:506.880000pt;}
.x14_c01288{left:524.800000pt;}
.x6_c01288{left:535.680000pt;}
.x4_c01288{left:561.920000pt;}
.x5_c01288{left:572.800000pt;}
.xa_c01288{left:638.080000pt;}
.xc_c01288{left:639.360000pt;}
.x1b_c01288{left:731.520000pt;}
.x11_c01288{left:749.440000pt;}
.x24_c01288{left:785.920000pt;}
.x1f_c01288{left:787.200000pt;}
.x25_c01288{left:844.160000pt;}
.x28_c01288{left:860.160000pt;}
.x12_c01288{left:862.080000pt;}
.x20_c01288{left:880.640000pt;}
.x26_c01288{left:888.960000pt;}
.x29_c01288{left:899.200000pt;}
.x21_c01288{left:921.600000pt;}
.x18_c01288{left:975.360000pt;}
.x27_c01288{left:983.040000pt;}
.x22_c01288{left:1006.720000pt;}
.x23_c01288{left:1025.280000pt;}
.x15_c01288{left:1029.760000pt;}
}





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

.ir_c01289:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01289{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01289;src:url('chunks/assets/font_3c088247c803d2e37e1c0230.woff2')format("woff");}.ff1_c01289{font-family:ff1_c01289;line-height:1.109863;font-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_c01289{transform:matrix(0.029975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.029975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.029975,0.000000,0.000000,0.250000,0,0);}
.m11_c01289{transform:matrix(0.032125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032125,0.000000,0.000000,0.250000,0,0);}
.m1_c01289{transform:matrix(0.079375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079375,0.000000,0.000000,0.250000,0,0);}
.m23_c01289{transform:matrix(0.111650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111650,0.000000,0.000000,0.250000,0,0);}
.m15_c01289{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m24_c01289{transform:matrix(0.124575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124575,0.000000,0.000000,0.250000,0,0);}
.m1a_c01289{transform:matrix(0.129450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129450,0.000000,0.000000,0.250000,0,0);}
.m18_c01289{transform:matrix(0.141325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141325,0.000000,0.000000,0.250000,0,0);}
.m4_c01289{transform:matrix(0.157125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157125,0.000000,0.000000,0.250000,0,0);}
.m1d_c01289{transform:matrix(0.169150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169150,0.000000,0.000000,0.250000,0,0);}
.m9_c01289{transform:matrix(0.195550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195550,0.000000,0.000000,0.250000,0,0);}
.m8_c01289{transform:matrix(0.196625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196625,0.000000,0.000000,0.250000,0,0);}
.mf_c01289{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.m25_c01289{transform:matrix(0.202375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202375,0.000000,0.000000,0.250000,0,0);}
.m2e_c01289{transform:matrix(0.202825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202825,0.000000,0.000000,0.250000,0,0);}
.m1f_c01289{transform:matrix(0.214975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214975,0.000000,0.000000,0.250000,0,0);}
.m7_c01289{transform:matrix(0.215050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215050,0.000000,0.000000,0.250000,0,0);}
.m19_c01289{transform:matrix(0.220225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220225,0.000000,0.000000,0.250000,0,0);}
.m12_c01289{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m28_c01289{transform:matrix(0.232850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232850,0.000000,0.000000,0.250000,0,0);}
.m13_c01289{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);}
.m22_c01289{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m2a_c01289{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m0_c01289{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m21_c01289{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_c01289{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2_c01289{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m6_c01289{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m31_c01289{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01289{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01289{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m27_c01289{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m26_c01289{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);}
.m30_c01289{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m32_c01289{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.me_c01289{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);}
.m2c_c01289{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);}
.m2d_c01289{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m17_c01289{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.mb_c01289{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m10_c01289{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m3_c01289{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m14_c01289{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.md_c01289{transform:matrix(0.850000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.850000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.850000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01289{transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01289{transform:matrix(1.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.100000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01289{transform:matrix(1.920000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.920000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.920000,0.000000,0.000000,0.250000,0,0);}
.ma_c01289{transform:matrix(4.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.280000,0.000000,0.000000,0.250000,0,0);}
.m20_c01289{transform:matrix(5.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.250000,0.000000,0.000000,0.250000,0,0);}
.mc_c01289{transform:matrix(7.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(7.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(7.080000,0.000000,0.000000,0.250000,0,0);}
.m29_c01289{transform:matrix(8.640000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(8.640000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(8.640000,0.000000,0.000000,0.250000,0,0);}
.v0_c01289{vertical-align:0.000000px;}
.ls0_c01289{letter-spacing:0.000000px;}
.sc__c01289{text-shadow:none;}
.sc0_c01289{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01289{-webkit-text-stroke:0px transparent;}
.sc0_c01289{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01289{word-spacing:0.000000px;}
.fc0_c01289{color:transparent;}
.fsb_c01289{font-size:5.760000px;}
.fsc_c01289{font-size:8.640000px;}
.fsa_c01289{font-size:11.520000px;}
.fs13_c01289{font-size:23.040000px;}
.fs18_c01289{font-size:25.920000px;}
.fs17_c01289{font-size:31.680000px;}
.fs15_c01289{font-size:34.560000px;}
.fsd_c01289{font-size:37.440000px;}
.fs10_c01289{font-size:40.320000px;}
.fs9_c01289{font-size:43.200000px;}
.fs3_c01289{font-size:46.080000px;}
.fs1_c01289{font-size:51.840000px;}
.fs16_c01289{font-size:57.600000px;}
.fs8_c01289{font-size:60.480000px;}
.fs0_c01289{font-size:63.360000px;}
.fs7_c01289{font-size:66.240000px;}
.fsf_c01289{font-size:80.640000px;}
.fs2_c01289{font-size:86.400000px;}
.fs6_c01289{font-size:95.040000px;}
.fs5_c01289{font-size:97.920000px;}
.fs11_c01289{font-size:100.800000px;}
.fse_c01289{font-size:103.680000px;}
.fs14_c01289{font-size:106.560000px;}
.fs12_c01289{font-size:109.440000px;}
.fs19_c01289{font-size:118.080000px;}
.fs4_c01289{font-size:123.840000px;}
.y0_c01289{bottom:0.000000px;}
.y3_c01289{bottom:49.680000px;}
.y1_c01289{bottom:52.560000px;}
.y2_c01289{bottom:54.720000px;}
.y22_c01289{bottom:87.840000px;}
.y20_c01289{bottom:89.280000px;}
.y21_c01289{bottom:94.320000px;}
.y24_c01289{bottom:97.200000px;}
.y23_c01289{bottom:97.920000px;}
.y1d_c01289{bottom:142.560000px;}
.y1f_c01289{bottom:143.280000px;}
.y1e_c01289{bottom:144.000000px;}
.y1a_c01289{bottom:151.200000px;}
.y19_c01289{bottom:156.240000px;}
.y15_c01289{bottom:164.160000px;}
.y16_c01289{bottom:164.880000px;}
.y18_c01289{bottom:169.200000px;}
.y14_c01289{bottom:171.360000px;}
.y17_c01289{bottom:173.520000px;}
.y1b_c01289{bottom:375.120000px;}
.y1c_c01289{bottom:384.480000px;}
.yb_c01289{bottom:797.760000px;}
.yc_c01289{bottom:799.920000px;}
.ye_c01289{bottom:800.640000px;}
.yd_c01289{bottom:801.360000px;}
.y12_c01289{bottom:802.080000px;}
.yf_c01289{bottom:804.240000px;}
.y9_c01289{bottom:809.280000px;}
.y11_c01289{bottom:814.320000px;}
.y10_c01289{bottom:815.760000px;}
.y8_c01289{bottom:835.920000px;}
.y13_c01289{bottom:840.960000px;}
.ya_c01289{bottom:968.400000px;}
.y5_c01289{bottom:1105.200000px;}
.y6_c01289{bottom:1113.120000px;}
.y7_c01289{bottom:1114.560000px;}
.y4_c01289{bottom:1153.440000px;}
.hd_c01289{height:5.183438px;}
.he_c01289{height:7.775156px;}
.hc_c01289{height:10.366875px;}
.h15_c01289{height:20.733750px;}
.h1a_c01289{height:23.325469px;}
.h19_c01289{height:28.508906px;}
.h17_c01289{height:31.100625px;}
.hf_c01289{height:33.692344px;}
.h12_c01289{height:36.284062px;}
.hb_c01289{height:38.875781px;}
.h5_c01289{height:41.467500px;}
.h3_c01289{height:46.650937px;}
.h18_c01289{height:51.834375px;}
.ha_c01289{height:54.426094px;}
.h2_c01289{height:57.017812px;}
.h9_c01289{height:59.609531px;}
.h11_c01289{height:72.568125px;}
.h4_c01289{height:77.751563px;}
.h8_c01289{height:85.526719px;}
.h7_c01289{height:88.118437px;}
.h13_c01289{height:90.710156px;}
.h10_c01289{height:93.301875px;}
.h16_c01289{height:95.893594px;}
.h14_c01289{height:98.485312px;}
.h1b_c01289{height:106.260469px;}
.h6_c01289{height:111.443906px;}
.h1_c01289{height:1187.250000px;}
.h0_c01289{height:1187.280000px;}
.w1_c01289{width:1529.250000px;}
.w0_c01289{width:1529.280000px;}
.x0_c01289{left:0.000000px;}
.x5_c01289{left:8.640000px;}
.xa_c01289{left:28.800000px;}
.x8_c01289{left:33.120000px;}
.x37_c01289{left:59.040000px;}
.xb_c01289{left:95.040000px;}
.xc_c01289{left:108.000000px;}
.x6_c01289{left:134.640000px;}
.x38_c01289{left:154.080000px;}
.x7_c01289{left:169.920000px;}
.x29_c01289{left:223.200000px;}
.x2a_c01289{left:237.600000px;}
.x2e_c01289{left:241.920000px;}
.x2f_c01289{left:249.120000px;}
.x2b_c01289{left:257.760000px;}
.x2c_c01289{left:288.000000px;}
.x2d_c01289{left:298.800000px;}
.xd_c01289{left:334.800000px;}
.xe_c01289{left:388.800000px;}
.x9_c01289{left:398.880000px;}
.xf_c01289{left:402.480000px;}
.x10_c01289{left:455.040000px;}
.x11_c01289{left:468.720000px;}
.x12_c01289{left:554.400000px;}
.x13_c01289{left:563.760000px;}
.x14_c01289{left:592.560000px;}
.x15_c01289{left:602.640000px;}
.x16_c01289{left:651.600000px;}
.x30_c01289{left:654.480000px;}
.x17_c01289{left:681.120000px;}
.x18_c01289{left:691.200000px;}
.x31_c01289{left:712.800000px;}
.x19_c01289{left:717.120000px;}
.x1a_c01289{left:726.480000px;}
.x32_c01289{left:751.680000px;}
.x1b_c01289{left:777.600000px;}
.x1c_c01289{left:807.120000px;}
.x1d_c01289{left:846.720000px;}
.x1e_c01289{left:851.040000px;}
.x1f_c01289{left:905.040000px;}
.x20_c01289{left:935.280000px;}
.x22_c01289{left:981.360000px;}
.x23_c01289{left:1045.440000px;}
.x24_c01289{left:1100.880000px;}
.x33_c01289{left:1140.480000px;}
.x39_c01289{left:1142.640000px;}
.x4_c01289{left:1152.720000px;}
.x25_c01289{left:1188.000000px;}
.x3a_c01289{left:1203.840000px;}
.x1_c01289{left:1217.520000px;}
.x26_c01289{left:1229.040000px;}
.x2_c01289{left:1238.400000px;}
.x34_c01289{left:1249.200000px;}
.x3_c01289{left:1251.360000px;}
.x3b_c01289{left:1257.120000px;}
.x27_c01289{left:1277.280000px;}
.x28_c01289{left:1287.360000px;}
.x21_c01289{left:1295.280000px;}
.x3c_c01289{left:1361.520000px;}
.x35_c01289{left:1391.040000px;}
.x36_c01289{left:1419.120000px;}
@media print{
.v0_c01289{vertical-align:0.000000pt;}
.ls0_c01289{letter-spacing:0.000000pt;}
.ws0_c01289{word-spacing:0.000000pt;}
.fsb_c01289{font-size:5.120000pt;}
.fsc_c01289{font-size:7.680000pt;}
.fsa_c01289{font-size:10.240000pt;}
.fs13_c01289{font-size:20.480000pt;}
.fs18_c01289{font-size:23.040000pt;}
.fs17_c01289{font-size:28.160000pt;}
.fs15_c01289{font-size:30.720000pt;}
.fsd_c01289{font-size:33.280000pt;}
.fs10_c01289{font-size:35.840000pt;}
.fs9_c01289{font-size:38.400000pt;}
.fs3_c01289{font-size:40.960000pt;}
.fs1_c01289{font-size:46.080000pt;}
.fs16_c01289{font-size:51.200000pt;}
.fs8_c01289{font-size:53.760000pt;}
.fs0_c01289{font-size:56.320000pt;}
.fs7_c01289{font-size:58.880000pt;}
.fsf_c01289{font-size:71.680000pt;}
.fs2_c01289{font-size:76.800000pt;}
.fs6_c01289{font-size:84.480000pt;}
.fs5_c01289{font-size:87.040000pt;}
.fs11_c01289{font-size:89.600000pt;}
.fse_c01289{font-size:92.160000pt;}
.fs14_c01289{font-size:94.720000pt;}
.fs12_c01289{font-size:97.280000pt;}
.fs19_c01289{font-size:104.960000pt;}
.fs4_c01289{font-size:110.080000pt;}
.y0_c01289{bottom:0.000000pt;}
.y3_c01289{bottom:44.160000pt;}
.y1_c01289{bottom:46.720000pt;}
.y2_c01289{bottom:48.640000pt;}
.y22_c01289{bottom:78.080000pt;}
.y20_c01289{bottom:79.360000pt;}
.y21_c01289{bottom:83.840000pt;}
.y24_c01289{bottom:86.400000pt;}
.y23_c01289{bottom:87.040000pt;}
.y1d_c01289{bottom:126.720000pt;}
.y1f_c01289{bottom:127.360000pt;}
.y1e_c01289{bottom:128.000000pt;}
.y1a_c01289{bottom:134.400000pt;}
.y19_c01289{bottom:138.880000pt;}
.y15_c01289{bottom:145.920000pt;}
.y16_c01289{bottom:146.560000pt;}
.y18_c01289{bottom:150.400000pt;}
.y14_c01289{bottom:152.320000pt;}
.y17_c01289{bottom:154.240000pt;}
.y1b_c01289{bottom:333.440000pt;}
.y1c_c01289{bottom:341.760000pt;}
.yb_c01289{bottom:709.120000pt;}
.yc_c01289{bottom:711.040000pt;}
.ye_c01289{bottom:711.680000pt;}
.yd_c01289{bottom:712.320000pt;}
.y12_c01289{bottom:712.960000pt;}
.yf_c01289{bottom:714.880000pt;}
.y9_c01289{bottom:719.360000pt;}
.y11_c01289{bottom:723.840000pt;}
.y10_c01289{bottom:725.120000pt;}
.y8_c01289{bottom:743.040000pt;}
.y13_c01289{bottom:747.520000pt;}
.ya_c01289{bottom:860.800000pt;}
.y5_c01289{bottom:982.400000pt;}
.y6_c01289{bottom:989.440000pt;}
.y7_c01289{bottom:990.720000pt;}
.y4_c01289{bottom:1025.280000pt;}
.hd_c01289{height:4.607500pt;}
.he_c01289{height:6.911250pt;}
.hc_c01289{height:9.215000pt;}
.h15_c01289{height:18.430000pt;}
.h1a_c01289{height:20.733750pt;}
.h19_c01289{height:25.341250pt;}
.h17_c01289{height:27.645000pt;}
.hf_c01289{height:29.948750pt;}
.h12_c01289{height:32.252500pt;}
.hb_c01289{height:34.556250pt;}
.h5_c01289{height:36.860000pt;}
.h3_c01289{height:41.467500pt;}
.h18_c01289{height:46.075000pt;}
.ha_c01289{height:48.378750pt;}
.h2_c01289{height:50.682500pt;}
.h9_c01289{height:52.986250pt;}
.h11_c01289{height:64.505000pt;}
.h4_c01289{height:69.112500pt;}
.h8_c01289{height:76.023750pt;}
.h7_c01289{height:78.327500pt;}
.h13_c01289{height:80.631250pt;}
.h10_c01289{height:82.935000pt;}
.h16_c01289{height:85.238750pt;}
.h14_c01289{height:87.542500pt;}
.h1b_c01289{height:94.453750pt;}
.h6_c01289{height:99.061250pt;}
.h1_c01289{height:1055.333333pt;}
.h0_c01289{height:1055.360000pt;}
.w1_c01289{width:1359.333333pt;}
.w0_c01289{width:1359.360000pt;}
.x0_c01289{left:0.000000pt;}
.x5_c01289{left:7.680000pt;}
.xa_c01289{left:25.600000pt;}
.x8_c01289{left:29.440000pt;}
.x37_c01289{left:52.480000pt;}
.xb_c01289{left:84.480000pt;}
.xc_c01289{left:96.000000pt;}
.x6_c01289{left:119.680000pt;}
.x38_c01289{left:136.960000pt;}
.x7_c01289{left:151.040000pt;}
.x29_c01289{left:198.400000pt;}
.x2a_c01289{left:211.200000pt;}
.x2e_c01289{left:215.040000pt;}
.x2f_c01289{left:221.440000pt;}
.x2b_c01289{left:229.120000pt;}
.x2c_c01289{left:256.000000pt;}
.x2d_c01289{left:265.600000pt;}
.xd_c01289{left:297.600000pt;}
.xe_c01289{left:345.600000pt;}
.x9_c01289{left:354.560000pt;}
.xf_c01289{left:357.760000pt;}
.x10_c01289{left:404.480000pt;}
.x11_c01289{left:416.640000pt;}
.x12_c01289{left:492.800000pt;}
.x13_c01289{left:501.120000pt;}
.x14_c01289{left:526.720000pt;}
.x15_c01289{left:535.680000pt;}
.x16_c01289{left:579.200000pt;}
.x30_c01289{left:581.760000pt;}
.x17_c01289{left:605.440000pt;}
.x18_c01289{left:614.400000pt;}
.x31_c01289{left:633.600000pt;}
.x19_c01289{left:637.440000pt;}
.x1a_c01289{left:645.760000pt;}
.x32_c01289{left:668.160000pt;}
.x1b_c01289{left:691.200000pt;}
.x1c_c01289{left:717.440000pt;}
.x1d_c01289{left:752.640000pt;}
.x1e_c01289{left:756.480000pt;}
.x1f_c01289{left:804.480000pt;}
.x20_c01289{left:831.360000pt;}
.x22_c01289{left:872.320000pt;}
.x23_c01289{left:929.280000pt;}
.x24_c01289{left:978.560000pt;}
.x33_c01289{left:1013.760000pt;}
.x39_c01289{left:1015.680000pt;}
.x4_c01289{left:1024.640000pt;}
.x25_c01289{left:1056.000000pt;}
.x3a_c01289{left:1070.080000pt;}
.x1_c01289{left:1082.240000pt;}
.x26_c01289{left:1092.480000pt;}
.x2_c01289{left:1100.800000pt;}
.x34_c01289{left:1110.400000pt;}
.x3_c01289{left:1112.320000pt;}
.x3b_c01289{left:1117.440000pt;}
.x27_c01289{left:1135.360000pt;}
.x28_c01289{left:1144.320000pt;}
.x21_c01289{left:1151.360000pt;}
.x3c_c01289{left:1210.240000pt;}
.x35_c01289{left:1236.480000pt;}
.x36_c01289{left:1261.440000pt;}
}





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

.ir_c01290:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01290{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01290;src:url('chunks/assets/font_8ef4cc5d263fe8c40c1abda0.woff2')format("woff");}.ff1_c01290{font-family:ff1_c01290;line-height:1.109863;font-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_c01290{transform:matrix(0.032225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032225,0.000000,0.000000,0.250000,0,0);}
.m16_c01290{transform:matrix(0.033425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.033425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.033425,0.000000,0.000000,0.250000,0,0);}
.m22_c01290{transform:matrix(0.066850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066850,0.000000,0.000000,0.250000,0,0);}
.me_c01290{transform:matrix(0.068125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068125,0.000000,0.000000,0.250000,0,0);}
.m15_c01290{transform:matrix(0.112400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112400,0.000000,0.000000,0.250000,0,0);}
.m9_c01290{transform:matrix(0.125875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125875,0.000000,0.000000,0.250000,0,0);}
.m2d_c01290{transform:matrix(0.128475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128475,0.000000,0.000000,0.250000,0,0);}
.m13_c01290{transform:matrix(0.132250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132250,0.000000,0.000000,0.250000,0,0);}
.m1e_c01290{transform:matrix(0.138900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138900,0.000000,0.000000,0.250000,0,0);}
.mb_c01290{transform:matrix(0.149200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149200,0.000000,0.000000,0.250000,0,0);}
.m1f_c01290{transform:matrix(0.183825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183825,0.000000,0.000000,0.250000,0,0);}
.m3_c01290{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.ma_c01290{transform:matrix(0.190850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190850,0.000000,0.000000,0.250000,0,0);}
.m19_c01290{transform:matrix(0.201100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201100,0.000000,0.000000,0.250000,0,0);}
.m27_c01290{transform:matrix(0.218350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218350,0.000000,0.000000,0.250000,0,0);}
.m21_c01290{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m2b_c01290{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m2_c01290{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_c01290{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m17_c01290{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);}
.m1c_c01290{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m12_c01290{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m4_c01290{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01290{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m30_c01290{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m6_c01290{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01290{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_c01290{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);}
.m33_c01290{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m11_c01290{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);}
.m32_c01290{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m31_c01290{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m1_c01290{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m0_c01290{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01290{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m23_c01290{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);}
.m18_c01290{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);}
.m34_c01290{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m29_c01290{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);}
.m25_c01290{transform:matrix(0.800000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.800000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.800000,0.000000,0.000000,0.250000,0,0);}
.m7_c01290{transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);}
.m24_c01290{transform:matrix(1.032500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.032500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.032500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01290{transform:matrix(1.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.417500,0.000000,0.000000,0.250000,0,0);}
.m10_c01290{transform:matrix(1.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.442500,0.000000,0.000000,0.250000,0,0);}
.m28_c01290{transform:matrix(1.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.522500,0.000000,0.000000,0.250000,0,0);}
.m8_c01290{transform:matrix(1.750000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.750000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.750000,0.000000,0.000000,0.250000,0,0);}
.m20_c01290{transform:matrix(1.972500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.972500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.972500,0.000000,0.000000,0.250000,0,0);}
.m26_c01290{transform:matrix(2.027500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.027500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.027500,0.000000,0.000000,0.250000,0,0);}
.md_c01290{transform:matrix(2.042500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.042500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.042500,0.000000,0.000000,0.250000,0,0);}
.mf_c01290{transform:matrix(3.750000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.750000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.750000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01290{transform:matrix(4.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.440000,0.000000,0.000000,0.250000,0,0);}
.mc_c01290{transform:matrix(5.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.417500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01290{transform:matrix(7.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(7.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(7.680000,0.000000,0.000000,0.250000,0,0);}
.v0_c01290{vertical-align:0.000000px;}
.ls0_c01290{letter-spacing:0.000000px;}
.sc__c01290{text-shadow:none;}
.sc0_c01290{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01290{-webkit-text-stroke:0px transparent;}
.sc0_c01290{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01290{word-spacing:0.000000px;}
.fc0_c01290{color:transparent;}
.fsb_c01290{font-size:8.640000px;}
.fsd_c01290{font-size:11.520000px;}
.fs7_c01290{font-size:17.280000px;}
.fs0_c01290{font-size:20.160000px;}
.fs6_c01290{font-size:25.920000px;}
.fs19_c01290{font-size:28.800000px;}
.fs1e_c01290{font-size:31.680000px;}
.fs1b_c01290{font-size:34.560000px;}
.fs15_c01290{font-size:43.200000px;}
.fs12_c01290{font-size:46.080000px;}
.fs10_c01290{font-size:48.960000px;}
.fsf_c01290{font-size:51.840000px;}
.fs1_c01290{font-size:60.480000px;}
.fse_c01290{font-size:63.360000px;}
.fs1d_c01290{font-size:66.240000px;}
.fs14_c01290{font-size:69.120000px;}
.fs5_c01290{font-size:72.000000px;}
.fs1c_c01290{font-size:74.880000px;}
.fs13_c01290{font-size:77.760000px;}
.fs11_c01290{font-size:80.640000px;}
.fs2_c01290{font-size:95.040000px;}
.fs4_c01290{font-size:97.920000px;}
.fs3_c01290{font-size:120.960000px;}
.fs17_c01290{font-size:144.000000px;}
.fs16_c01290{font-size:155.520000px;}
.fs8_c01290{font-size:158.400000px;}
.fsa_c01290{font-size:161.280000px;}
.fsc_c01290{font-size:172.800000px;}
.fs18_c01290{font-size:256.320000px;}
.fs1a_c01290{font-size:259.200000px;}
.fs9_c01290{font-size:267.840000px;}
.y0_c01290{bottom:0.000000px;}
.y3_c01290{bottom:67.680000px;}
.y2_c01290{bottom:69.840000px;}
.y1_c01290{bottom:96.480000px;}
.y27_c01290{bottom:109.440000px;}
.y28_c01290{bottom:110.880000px;}
.y26_c01290{bottom:153.360000px;}
.y25_c01290{bottom:154.080000px;}
.y24_c01290{bottom:203.040000px;}
.y23_c01290{bottom:203.760000px;}
.y22_c01290{bottom:204.480000px;}
.y1e_c01290{bottom:344.160000px;}
.y18_c01290{bottom:347.040000px;}
.y20_c01290{bottom:360.720000px;}
.y21_c01290{bottom:363.600000px;}
.y1f_c01290{bottom:364.320000px;}
.y1d_c01290{bottom:365.760000px;}
.y1c_c01290{bottom:366.480000px;}
.y16_c01290{bottom:367.200000px;}
.y17_c01290{bottom:368.640000px;}
.y1a_c01290{bottom:369.360000px;}
.y15_c01290{bottom:370.080000px;}
.y19_c01290{bottom:390.240000px;}
.y1b_c01290{bottom:419.040000px;}
.y14_c01290{bottom:421.200000px;}
.y29_c01290{bottom:684.000000px;}
.y11_c01290{bottom:702.720000px;}
.y13_c01290{bottom:703.440000px;}
.y12_c01290{bottom:704.160000px;}
.y9_c01290{bottom:858.240000px;}
.yb_c01290{bottom:875.520000px;}
.yc_c01290{bottom:877.680000px;}
.y7_c01290{bottom:878.400000px;}
.ya_c01290{bottom:879.120000px;}
.y10_c01290{bottom:879.840000px;}
.y8_c01290{bottom:880.560000px;}
.ye_c01290{bottom:902.880000px;}
.yf_c01290{bottom:904.320000px;}
.yd_c01290{bottom:928.080000px;}
.y6_c01290{bottom:932.400000px;}
.y4_c01290{bottom:1141.200000px;}
.y5_c01290{bottom:1147.680000px;}
.hd_c01290{height:7.775156px;}
.hf_c01290{height:10.366875px;}
.h9_c01290{height:15.550313px;}
.h2_c01290{height:18.142031px;}
.h8_c01290{height:23.325469px;}
.h1b_c01290{height:25.917187px;}
.h20_c01290{height:28.508906px;}
.h1d_c01290{height:31.100625px;}
.h17_c01290{height:38.875781px;}
.h14_c01290{height:41.467500px;}
.h12_c01290{height:44.059219px;}
.h11_c01290{height:46.650937px;}
.h3_c01290{height:54.426094px;}
.h10_c01290{height:57.017812px;}
.h1f_c01290{height:59.609531px;}
.h16_c01290{height:62.201250px;}
.h7_c01290{height:64.792969px;}
.h1e_c01290{height:67.384687px;}
.h15_c01290{height:69.976406px;}
.h13_c01290{height:72.568125px;}
.h4_c01290{height:85.526719px;}
.h6_c01290{height:88.118437px;}
.h5_c01290{height:108.852188px;}
.h19_c01290{height:129.585938px;}
.h18_c01290{height:139.952812px;}
.ha_c01290{height:142.544531px;}
.hc_c01290{height:145.136250px;}
.he_c01290{height:155.503125px;}
.h1a_c01290{height:230.662969px;}
.h1c_c01290{height:233.254688px;}
.hb_c01290{height:241.029844px;}
.h1_c01290{height:1238.250000px;}
.h0_c01290{height:1238.400000px;}
.w1_c01290{width:1305.750000px;}
.w0_c01290{width:1306.080000px;}
.x0_c01290{left:0.000000px;}
.x4_c01290{left:54.000000px;}
.x1d_c01290{left:97.200000px;}
.x18_c01290{left:100.800000px;}
.x2c_c01290{left:105.840000px;}
.x1e_c01290{left:138.960000px;}
.x8_c01290{left:140.400000px;}
.x5_c01290{left:175.680000px;}
.x9_c01290{left:189.360000px;}
.x19_c01290{left:197.280000px;}
.x2d_c01290{left:208.080000px;}
.x6_c01290{left:209.520000px;}
.x1a_c01290{left:231.120000px;}
.x2e_c01290{left:241.200000px;}
.x1f_c01290{left:248.400000px;}
.xa_c01290{left:251.280000px;}
.x1b_c01290{left:252.720000px;}
.x2f_c01290{left:257.040000px;}
.x20_c01290{left:311.040000px;}
.xb_c01290{left:313.920000px;}
.x1c_c01290{left:339.840000px;}
.x7_c01290{left:343.440000px;}
.xc_c01290{left:378.000000px;}
.xd_c01290{left:411.120000px;}
.x21_c01290{left:440.640000px;}
.xe_c01290{left:457.920000px;}
.xf_c01290{left:506.160000px;}
.x23_c01290{left:529.200000px;}
.x22_c01290{left:534.960000px;}
.x10_c01290{left:542.160000px;}
.x25_c01290{left:567.360000px;}
.x11_c01290{left:585.360000px;}
.x26_c01290{left:630.720000px;}
.x15_c01290{left:658.800000px;}
.x14_c01290{left:662.400000px;}
.x27_c01290{left:693.360000px;}
.x24_c01290{left:757.440000px;}
.x28_c01290{left:759.600000px;}
.x12_c01290{left:768.240000px;}
.x13_c01290{left:792.720000px;}
.x29_c01290{left:821.520000px;}
.x30_c01290{left:869.040000px;}
.x32_c01290{left:876.960000px;}
.x2a_c01290{left:883.440000px;}
.x17_c01290{left:909.360000px;}
.x16_c01290{left:915.120000px;}
.x33_c01290{left:942.480000px;}
.x2b_c01290{left:946.080000px;}
.x2_c01290{left:997.200000px;}
.x31_c01290{left:1002.240000px;}
.x1_c01290{left:1023.840000px;}
.x3_c01290{left:1030.320000px;}
.x34_c01290{left:1101.600000px;}
.x35_c01290{left:1145.520000px;}
@media print{
.v0_c01290{vertical-align:0.000000pt;}
.ls0_c01290{letter-spacing:0.000000pt;}
.ws0_c01290{word-spacing:0.000000pt;}
.fsb_c01290{font-size:7.680000pt;}
.fsd_c01290{font-size:10.240000pt;}
.fs7_c01290{font-size:15.360000pt;}
.fs0_c01290{font-size:17.920000pt;}
.fs6_c01290{font-size:23.040000pt;}
.fs19_c01290{font-size:25.600000pt;}
.fs1e_c01290{font-size:28.160000pt;}
.fs1b_c01290{font-size:30.720000pt;}
.fs15_c01290{font-size:38.400000pt;}
.fs12_c01290{font-size:40.960000pt;}
.fs10_c01290{font-size:43.520000pt;}
.fsf_c01290{font-size:46.080000pt;}
.fs1_c01290{font-size:53.760000pt;}
.fse_c01290{font-size:56.320000pt;}
.fs1d_c01290{font-size:58.880000pt;}
.fs14_c01290{font-size:61.440000pt;}
.fs5_c01290{font-size:64.000000pt;}
.fs1c_c01290{font-size:66.560000pt;}
.fs13_c01290{font-size:69.120000pt;}
.fs11_c01290{font-size:71.680000pt;}
.fs2_c01290{font-size:84.480000pt;}
.fs4_c01290{font-size:87.040000pt;}
.fs3_c01290{font-size:107.520000pt;}
.fs17_c01290{font-size:128.000000pt;}
.fs16_c01290{font-size:138.240000pt;}
.fs8_c01290{font-size:140.800000pt;}
.fsa_c01290{font-size:143.360000pt;}
.fsc_c01290{font-size:153.600000pt;}
.fs18_c01290{font-size:227.840000pt;}
.fs1a_c01290{font-size:230.400000pt;}
.fs9_c01290{font-size:238.080000pt;}
.y0_c01290{bottom:0.000000pt;}
.y3_c01290{bottom:60.160000pt;}
.y2_c01290{bottom:62.080000pt;}
.y1_c01290{bottom:85.760000pt;}
.y27_c01290{bottom:97.280000pt;}
.y28_c01290{bottom:98.560000pt;}
.y26_c01290{bottom:136.320000pt;}
.y25_c01290{bottom:136.960000pt;}
.y24_c01290{bottom:180.480000pt;}
.y23_c01290{bottom:181.120000pt;}
.y22_c01290{bottom:181.760000pt;}
.y1e_c01290{bottom:305.920000pt;}
.y18_c01290{bottom:308.480000pt;}
.y20_c01290{bottom:320.640000pt;}
.y21_c01290{bottom:323.200000pt;}
.y1f_c01290{bottom:323.840000pt;}
.y1d_c01290{bottom:325.120000pt;}
.y1c_c01290{bottom:325.760000pt;}
.y16_c01290{bottom:326.400000pt;}
.y17_c01290{bottom:327.680000pt;}
.y1a_c01290{bottom:328.320000pt;}
.y15_c01290{bottom:328.960000pt;}
.y19_c01290{bottom:346.880000pt;}
.y1b_c01290{bottom:372.480000pt;}
.y14_c01290{bottom:374.400000pt;}
.y29_c01290{bottom:608.000000pt;}
.y11_c01290{bottom:624.640000pt;}
.y13_c01290{bottom:625.280000pt;}
.y12_c01290{bottom:625.920000pt;}
.y9_c01290{bottom:762.880000pt;}
.yb_c01290{bottom:778.240000pt;}
.yc_c01290{bottom:780.160000pt;}
.y7_c01290{bottom:780.800000pt;}
.ya_c01290{bottom:781.440000pt;}
.y10_c01290{bottom:782.080000pt;}
.y8_c01290{bottom:782.720000pt;}
.ye_c01290{bottom:802.560000pt;}
.yf_c01290{bottom:803.840000pt;}
.yd_c01290{bottom:824.960000pt;}
.y6_c01290{bottom:828.800000pt;}
.y4_c01290{bottom:1014.400000pt;}
.y5_c01290{bottom:1020.160000pt;}
.hd_c01290{height:6.911250pt;}
.hf_c01290{height:9.215000pt;}
.h9_c01290{height:13.822500pt;}
.h2_c01290{height:16.126250pt;}
.h8_c01290{height:20.733750pt;}
.h1b_c01290{height:23.037500pt;}
.h20_c01290{height:25.341250pt;}
.h1d_c01290{height:27.645000pt;}
.h17_c01290{height:34.556250pt;}
.h14_c01290{height:36.860000pt;}
.h12_c01290{height:39.163750pt;}
.h11_c01290{height:41.467500pt;}
.h3_c01290{height:48.378750pt;}
.h10_c01290{height:50.682500pt;}
.h1f_c01290{height:52.986250pt;}
.h16_c01290{height:55.290000pt;}
.h7_c01290{height:57.593750pt;}
.h1e_c01290{height:59.897500pt;}
.h15_c01290{height:62.201250pt;}
.h13_c01290{height:64.505000pt;}
.h4_c01290{height:76.023750pt;}
.h6_c01290{height:78.327500pt;}
.h5_c01290{height:96.757500pt;}
.h19_c01290{height:115.187500pt;}
.h18_c01290{height:124.402500pt;}
.ha_c01290{height:126.706250pt;}
.hc_c01290{height:129.010000pt;}
.he_c01290{height:138.225000pt;}
.h1a_c01290{height:205.033750pt;}
.h1c_c01290{height:207.337500pt;}
.hb_c01290{height:214.248750pt;}
.h1_c01290{height:1100.666667pt;}
.h0_c01290{height:1100.800000pt;}
.w1_c01290{width:1160.666667pt;}
.w0_c01290{width:1160.960000pt;}
.x0_c01290{left:0.000000pt;}
.x4_c01290{left:48.000000pt;}
.x1d_c01290{left:86.400000pt;}
.x18_c01290{left:89.600000pt;}
.x2c_c01290{left:94.080000pt;}
.x1e_c01290{left:123.520000pt;}
.x8_c01290{left:124.800000pt;}
.x5_c01290{left:156.160000pt;}
.x9_c01290{left:168.320000pt;}
.x19_c01290{left:175.360000pt;}
.x2d_c01290{left:184.960000pt;}
.x6_c01290{left:186.240000pt;}
.x1a_c01290{left:205.440000pt;}
.x2e_c01290{left:214.400000pt;}
.x1f_c01290{left:220.800000pt;}
.xa_c01290{left:223.360000pt;}
.x1b_c01290{left:224.640000pt;}
.x2f_c01290{left:228.480000pt;}
.x20_c01290{left:276.480000pt;}
.xb_c01290{left:279.040000pt;}
.x1c_c01290{left:302.080000pt;}
.x7_c01290{left:305.280000pt;}
.xc_c01290{left:336.000000pt;}
.xd_c01290{left:365.440000pt;}
.x21_c01290{left:391.680000pt;}
.xe_c01290{left:407.040000pt;}
.xf_c01290{left:449.920000pt;}
.x23_c01290{left:470.400000pt;}
.x22_c01290{left:475.520000pt;}
.x10_c01290{left:481.920000pt;}
.x25_c01290{left:504.320000pt;}
.x11_c01290{left:520.320000pt;}
.x26_c01290{left:560.640000pt;}
.x15_c01290{left:585.600000pt;}
.x14_c01290{left:588.800000pt;}
.x27_c01290{left:616.320000pt;}
.x24_c01290{left:673.280000pt;}
.x28_c01290{left:675.200000pt;}
.x12_c01290{left:682.880000pt;}
.x13_c01290{left:704.640000pt;}
.x29_c01290{left:730.240000pt;}
.x30_c01290{left:772.480000pt;}
.x32_c01290{left:779.520000pt;}
.x2a_c01290{left:785.280000pt;}
.x17_c01290{left:808.320000pt;}
.x16_c01290{left:813.440000pt;}
.x33_c01290{left:837.760000pt;}
.x2b_c01290{left:840.960000pt;}
.x2_c01290{left:886.400000pt;}
.x31_c01290{left:890.880000pt;}
.x1_c01290{left:910.080000pt;}
.x3_c01290{left:915.840000pt;}
.x34_c01290{left:979.200000pt;}
.x35_c01290{left:1018.240000pt;}
}





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

.ir_c01291:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01291{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01291;src:url('chunks/assets/font_46613587869678f523d13b8f.woff2')format("woff");}.ff1_c01291{font-family:ff1_c01291;line-height:1.109863;font-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_c01291{transform:matrix(0.053200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053200,0.000000,0.000000,0.250000,0,0);}
.m18_c01291{transform:matrix(0.053525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053525,0.000000,0.000000,0.250000,0,0);}
.m1a_c01291{transform:matrix(0.076775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076775,0.000000,0.000000,0.250000,0,0);}
.md_c01291{transform:matrix(0.084300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084300,0.000000,0.000000,0.250000,0,0);}
.m1b_c01291{transform:matrix(0.096350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096350,0.000000,0.000000,0.250000,0,0);}
.m25_c01291{transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);}
.m7_c01291{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mb_c01291{transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);}
.m6_c01291{transform:matrix(0.160125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160125,0.000000,0.000000,0.250000,0,0);}
.m15_c01291{transform:matrix(0.200775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200775,0.000000,0.000000,0.250000,0,0);}
.m12_c01291{transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);}
.m8_c01291{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m26_c01291{transform:matrix(0.240450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240450,0.000000,0.000000,0.250000,0,0);}
.m0_c01291{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01291{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m19_c01291{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m10_c01291{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_c01291{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m4_c01291{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01291{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m16_c01291{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m20_c01291{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mf_c01291{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m5_c01291{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3_c01291{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m14_c01291{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m23_c01291{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m22_c01291{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m17_c01291{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);}
.m1c_c01291{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);}
.m21_c01291{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_c01291{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m13_c01291{transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);}
.m1_c01291{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m2_c01291{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);}
.m9_c01291{transform:matrix(0.822500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.822500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.822500,0.000000,0.000000,0.250000,0,0);}
.me_c01291{transform:matrix(1.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.080000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01291{transform:matrix(3.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.375000,0.000000,0.000000,0.250000,0,0);}
.ma_c01291{transform:matrix(5.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01291{vertical-align:0.000000px;}
.ls0_c01291{letter-spacing:0.000000px;}
.sc__c01291{text-shadow:none;}
.sc0_c01291{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01291{-webkit-text-stroke:0px transparent;}
.sc0_c01291{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01291{word-spacing:0.000000px;}
.fc0_c01291{color:transparent;}
.fs13_c01291{font-size:5.760000px;}
.fs7_c01291{font-size:8.640000px;}
.fs14_c01291{font-size:11.520000px;}
.fs2_c01291{font-size:20.160000px;}
.fs8_c01291{font-size:25.920000px;}
.fs1_c01291{font-size:28.800000px;}
.fsd_c01291{font-size:43.200000px;}
.fsc_c01291{font-size:46.080000px;}
.fs17_c01291{font-size:51.840000px;}
.fs10_c01291{font-size:63.360000px;}
.fs5_c01291{font-size:66.240000px;}
.fs15_c01291{font-size:69.120000px;}
.fs16_c01291{font-size:72.000000px;}
.fsf_c01291{font-size:74.880000px;}
.fs3_c01291{font-size:95.040000px;}
.fs4_c01291{font-size:100.800000px;}
.fs18_c01291{font-size:106.560000px;}
.fs0_c01291{font-size:109.440000px;}
.fsb_c01291{font-size:115.200000px;}
.fs12_c01291{font-size:118.080000px;}
.fs11_c01291{font-size:120.960000px;}
.fs6_c01291{font-size:244.800000px;}
.fse_c01291{font-size:250.560000px;}
.fs9_c01291{font-size:256.320000px;}
.fsa_c01291{font-size:336.960000px;}
.y0_c01291{bottom:0.000000px;}
.y26_c01291{bottom:58.320000px;}
.y24_c01291{bottom:64.080000px;}
.y25_c01291{bottom:65.520000px;}
.y23_c01291{bottom:105.840000px;}
.y22_c01291{bottom:106.560000px;}
.y20_c01291{bottom:107.280000px;}
.y21_c01291{bottom:108.000000px;}
.y1f_c01291{bottom:150.480000px;}
.y1e_c01291{bottom:151.920000px;}
.y1d_c01291{bottom:193.680000px;}
.y1c_c01291{bottom:194.400000px;}
.y1b_c01291{bottom:195.120000px;}
.y16_c01291{bottom:296.640000px;}
.y1a_c01291{bottom:313.920000px;}
.y19_c01291{bottom:314.640000px;}
.y18_c01291{bottom:317.520000px;}
.y17_c01291{bottom:318.960000px;}
.y15_c01291{bottom:320.400000px;}
.y14_c01291{bottom:363.600000px;}
.y13_c01291{bottom:364.320000px;}
.y12_c01291{bottom:426.240000px;}
.y11_c01291{bottom:496.080000px;}
.y10_c01291{bottom:654.480000px;}
.yf_c01291{bottom:655.200000px;}
.ye_c01291{bottom:732.240000px;}
.yd_c01291{bottom:734.400000px;}
.yb_c01291{bottom:771.120000px;}
.ya_c01291{bottom:794.160000px;}
.yc_c01291{bottom:795.600000px;}
.y9_c01291{bottom:860.400000px;}
.y8_c01291{bottom:861.120000px;}
.y3_c01291{bottom:888.480000px;}
.y7_c01291{bottom:898.560000px;}
.y2_c01291{bottom:959.040000px;}
.y6_c01291{bottom:966.960000px;}
.y1_c01291{bottom:1134.000000px;}
.y5_c01291{bottom:1135.440000px;}
.y4_c01291{bottom:1136.880000px;}
.h15_c01291{height:5.183438px;}
.h9_c01291{height:7.775156px;}
.h16_c01291{height:10.366875px;}
.h4_c01291{height:18.142031px;}
.ha_c01291{height:23.325469px;}
.h3_c01291{height:25.917187px;}
.hf_c01291{height:38.875781px;}
.he_c01291{height:41.467500px;}
.h19_c01291{height:46.650937px;}
.h12_c01291{height:57.017812px;}
.h7_c01291{height:59.609531px;}
.h17_c01291{height:62.201250px;}
.h18_c01291{height:64.792969px;}
.h11_c01291{height:67.384687px;}
.h5_c01291{height:85.526719px;}
.h6_c01291{height:90.710156px;}
.h1a_c01291{height:95.893594px;}
.h2_c01291{height:98.485312px;}
.hd_c01291{height:103.668750px;}
.h14_c01291{height:106.260469px;}
.h13_c01291{height:108.852188px;}
.h8_c01291{height:220.296094px;}
.h10_c01291{height:225.479531px;}
.hb_c01291{height:230.662969px;}
.hc_c01291{height:303.231094px;}
.h1_c01291{height:1238.250000px;}
.h0_c01291{height:1238.400000px;}
.w1_c01291{width:1305.750000px;}
.w0_c01291{width:1306.080000px;}
.x0_c01291{left:0.000000px;}
.x1_c01291{left:68.400000px;}
.x11_c01291{left:105.120000px;}
.x3_c01291{left:154.800000px;}
.x2_c01291{left:167.760000px;}
.x15_c01291{left:182.880000px;}
.x1c_c01291{left:193.680000px;}
.xa_c01291{left:196.560000px;}
.x4_c01291{left:209.520000px;}
.x1d_c01291{left:219.600000px;}
.xb_c01291{left:228.960000px;}
.x5_c01291{left:245.520000px;}
.x12_c01291{left:248.400000px;}
.xc_c01291{left:275.040000px;}
.x8_c01291{left:332.640000px;}
.x9_c01291{left:342.000000px;}
.xd_c01291{left:347.760000px;}
.xe_c01291{left:411.840000px;}
.xf_c01291{left:414.720000px;}
.x10_c01291{left:425.520000px;}
.x16_c01291{left:498.960000px;}
.x17_c01291{left:600.480000px;}
.x14_c01291{left:602.640000px;}
.x13_c01291{left:610.560000px;}
.x18_c01291{left:752.400000px;}
.x7_c01291{left:769.680000px;}
.x6_c01291{left:779.760000px;}
.x1e_c01291{left:876.960000px;}
.x19_c01291{left:879.120000px;}
.x20_c01291{left:887.760000px;}
.x21_c01291{left:951.840000px;}
.x24_c01291{left:966.960000px;}
.x1a_c01291{left:972.000000px;}
.x1b_c01291{left:982.080000px;}
.x25_c01291{left:990.000000px;}
.x26_c01291{left:1002.240000px;}
.x22_c01291{left:1008.720000px;}
.x1f_c01291{left:1010.880000px;}
.x23_c01291{left:1108.800000px;}
@media print{
.v0_c01291{vertical-align:0.000000pt;}
.ls0_c01291{letter-spacing:0.000000pt;}
.ws0_c01291{word-spacing:0.000000pt;}
.fs13_c01291{font-size:5.120000pt;}
.fs7_c01291{font-size:7.680000pt;}
.fs14_c01291{font-size:10.240000pt;}
.fs2_c01291{font-size:17.920000pt;}
.fs8_c01291{font-size:23.040000pt;}
.fs1_c01291{font-size:25.600000pt;}
.fsd_c01291{font-size:38.400000pt;}
.fsc_c01291{font-size:40.960000pt;}
.fs17_c01291{font-size:46.080000pt;}
.fs10_c01291{font-size:56.320000pt;}
.fs5_c01291{font-size:58.880000pt;}
.fs15_c01291{font-size:61.440000pt;}
.fs16_c01291{font-size:64.000000pt;}
.fsf_c01291{font-size:66.560000pt;}
.fs3_c01291{font-size:84.480000pt;}
.fs4_c01291{font-size:89.600000pt;}
.fs18_c01291{font-size:94.720000pt;}
.fs0_c01291{font-size:97.280000pt;}
.fsb_c01291{font-size:102.400000pt;}
.fs12_c01291{font-size:104.960000pt;}
.fs11_c01291{font-size:107.520000pt;}
.fs6_c01291{font-size:217.600000pt;}
.fse_c01291{font-size:222.720000pt;}
.fs9_c01291{font-size:227.840000pt;}
.fsa_c01291{font-size:299.520000pt;}
.y0_c01291{bottom:0.000000pt;}
.y26_c01291{bottom:51.840000pt;}
.y24_c01291{bottom:56.960000pt;}
.y25_c01291{bottom:58.240000pt;}
.y23_c01291{bottom:94.080000pt;}
.y22_c01291{bottom:94.720000pt;}
.y20_c01291{bottom:95.360000pt;}
.y21_c01291{bottom:96.000000pt;}
.y1f_c01291{bottom:133.760000pt;}
.y1e_c01291{bottom:135.040000pt;}
.y1d_c01291{bottom:172.160000pt;}
.y1c_c01291{bottom:172.800000pt;}
.y1b_c01291{bottom:173.440000pt;}
.y16_c01291{bottom:263.680000pt;}
.y1a_c01291{bottom:279.040000pt;}
.y19_c01291{bottom:279.680000pt;}
.y18_c01291{bottom:282.240000pt;}
.y17_c01291{bottom:283.520000pt;}
.y15_c01291{bottom:284.800000pt;}
.y14_c01291{bottom:323.200000pt;}
.y13_c01291{bottom:323.840000pt;}
.y12_c01291{bottom:378.880000pt;}
.y11_c01291{bottom:440.960000pt;}
.y10_c01291{bottom:581.760000pt;}
.yf_c01291{bottom:582.400000pt;}
.ye_c01291{bottom:650.880000pt;}
.yd_c01291{bottom:652.800000pt;}
.yb_c01291{bottom:685.440000pt;}
.ya_c01291{bottom:705.920000pt;}
.yc_c01291{bottom:707.200000pt;}
.y9_c01291{bottom:764.800000pt;}
.y8_c01291{bottom:765.440000pt;}
.y3_c01291{bottom:789.760000pt;}
.y7_c01291{bottom:798.720000pt;}
.y2_c01291{bottom:852.480000pt;}
.y6_c01291{bottom:859.520000pt;}
.y1_c01291{bottom:1008.000000pt;}
.y5_c01291{bottom:1009.280000pt;}
.y4_c01291{bottom:1010.560000pt;}
.h15_c01291{height:4.607500pt;}
.h9_c01291{height:6.911250pt;}
.h16_c01291{height:9.215000pt;}
.h4_c01291{height:16.126250pt;}
.ha_c01291{height:20.733750pt;}
.h3_c01291{height:23.037500pt;}
.hf_c01291{height:34.556250pt;}
.he_c01291{height:36.860000pt;}
.h19_c01291{height:41.467500pt;}
.h12_c01291{height:50.682500pt;}
.h7_c01291{height:52.986250pt;}
.h17_c01291{height:55.290000pt;}
.h18_c01291{height:57.593750pt;}
.h11_c01291{height:59.897500pt;}
.h5_c01291{height:76.023750pt;}
.h6_c01291{height:80.631250pt;}
.h1a_c01291{height:85.238750pt;}
.h2_c01291{height:87.542500pt;}
.hd_c01291{height:92.150000pt;}
.h14_c01291{height:94.453750pt;}
.h13_c01291{height:96.757500pt;}
.h8_c01291{height:195.818750pt;}
.h10_c01291{height:200.426250pt;}
.hb_c01291{height:205.033750pt;}
.hc_c01291{height:269.538750pt;}
.h1_c01291{height:1100.666667pt;}
.h0_c01291{height:1100.800000pt;}
.w1_c01291{width:1160.666667pt;}
.w0_c01291{width:1160.960000pt;}
.x0_c01291{left:0.000000pt;}
.x1_c01291{left:60.800000pt;}
.x11_c01291{left:93.440000pt;}
.x3_c01291{left:137.600000pt;}
.x2_c01291{left:149.120000pt;}
.x15_c01291{left:162.560000pt;}
.x1c_c01291{left:172.160000pt;}
.xa_c01291{left:174.720000pt;}
.x4_c01291{left:186.240000pt;}
.x1d_c01291{left:195.200000pt;}
.xb_c01291{left:203.520000pt;}
.x5_c01291{left:218.240000pt;}
.x12_c01291{left:220.800000pt;}
.xc_c01291{left:244.480000pt;}
.x8_c01291{left:295.680000pt;}
.x9_c01291{left:304.000000pt;}
.xd_c01291{left:309.120000pt;}
.xe_c01291{left:366.080000pt;}
.xf_c01291{left:368.640000pt;}
.x10_c01291{left:378.240000pt;}
.x16_c01291{left:443.520000pt;}
.x17_c01291{left:533.760000pt;}
.x14_c01291{left:535.680000pt;}
.x13_c01291{left:542.720000pt;}
.x18_c01291{left:668.800000pt;}
.x7_c01291{left:684.160000pt;}
.x6_c01291{left:693.120000pt;}
.x1e_c01291{left:779.520000pt;}
.x19_c01291{left:781.440000pt;}
.x20_c01291{left:789.120000pt;}
.x21_c01291{left:846.080000pt;}
.x24_c01291{left:859.520000pt;}
.x1a_c01291{left:864.000000pt;}
.x1b_c01291{left:872.960000pt;}
.x25_c01291{left:880.000000pt;}
.x26_c01291{left:890.880000pt;}
.x22_c01291{left:896.640000pt;}
.x1f_c01291{left:898.560000pt;}
.x23_c01291{left:985.600000pt;}
}





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

.ir_c01292:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01292{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01292;src:url('chunks/assets/font_18fa1a22f9a32eefb6b72315.woff2')format("woff");}.ff1_c01292{font-family:ff1_c01292;line-height:1.109863;font-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_c01292{transform:matrix(0.076650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076650,0.000000,0.000000,0.250000,0,0);}
.m13_c01292{transform:matrix(0.080300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080300,0.000000,0.000000,0.250000,0,0);}
.m1d_c01292{transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);}
.m15_c01292{transform:matrix(0.101700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101700,0.000000,0.000000,0.250000,0,0);}
.m8_c01292{transform:matrix(0.132250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132250,0.000000,0.000000,0.250000,0,0);}
.m7_c01292{transform:matrix(0.140200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140200,0.000000,0.000000,0.250000,0,0);}
.m14_c01292{transform:matrix(0.143275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143275,0.000000,0.000000,0.250000,0,0);}
.mf_c01292{transform:matrix(0.146775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146775,0.000000,0.000000,0.250000,0,0);}
.m4_c01292{transform:matrix(0.148425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148425,0.000000,0.000000,0.250000,0,0);}
.m11_c01292{transform:matrix(0.183775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183775,0.000000,0.000000,0.250000,0,0);}
.m0_c01292{transform:matrix(0.207450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207450,0.000000,0.000000,0.250000,0,0);}
.m6_c01292{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.ma_c01292{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01292{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m16_c01292{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m17_c01292{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01292{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m10_c01292{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2_c01292{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m18_c01292{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1_c01292{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.me_c01292{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mc_c01292{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3_c01292{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01292{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m5_c01292{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m19_c01292{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01292{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_c01292{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m9_c01292{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.md_c01292{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_c01292{vertical-align:0.000000px;}
.ls0_c01292{letter-spacing:0.000000px;}
.sc__c01292{text-shadow:none;}
.sc0_c01292{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01292{-webkit-text-stroke:0px transparent;}
.sc0_c01292{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01292{word-spacing:0.000000px;}
.fc0_c01292{color:transparent;}
.fsd_c01292{font-size:40.320000px;}
.fsc_c01292{font-size:43.200000px;}
.fsa_c01292{font-size:46.080000px;}
.fs7_c01292{font-size:48.960000px;}
.fs5_c01292{font-size:51.840000px;}
.fs10_c01292{font-size:54.720000px;}
.fsb_c01292{font-size:60.480000px;}
.fs3_c01292{font-size:66.240000px;}
.fsf_c01292{font-size:69.120000px;}
.fs9_c01292{font-size:72.000000px;}
.fs11_c01292{font-size:86.400000px;}
.fs8_c01292{font-size:89.280000px;}
.fs1_c01292{font-size:97.920000px;}
.fs2_c01292{font-size:100.800000px;}
.fs0_c01292{font-size:120.960000px;}
.fse_c01292{font-size:126.720000px;}
.fs4_c01292{font-size:256.320000px;}
.fs6_c01292{font-size:259.200000px;}
.y0_c01292{bottom:0.000000px;}
.y20_c01292{bottom:56.160000px;}
.y1e_c01292{bottom:59.040000px;}
.y1f_c01292{bottom:60.480000px;}
.y1d_c01292{bottom:103.680000px;}
.y1c_c01292{bottom:104.400000px;}
.y1b_c01292{bottom:106.560000px;}
.y1a_c01292{bottom:146.880000px;}
.y19_c01292{bottom:148.320000px;}
.y18_c01292{bottom:241.920000px;}
.y17_c01292{bottom:243.360000px;}
.y15_c01292{bottom:363.600000px;}
.y16_c01292{bottom:383.040000px;}
.y14_c01292{bottom:387.360000px;}
.y13_c01292{bottom:388.080000px;}
.y12_c01292{bottom:430.560000px;}
.y11_c01292{bottom:465.840000px;}
.yf_c01292{bottom:489.600000px;}
.y10_c01292{bottom:505.440000px;}
.ye_c01292{bottom:556.560000px;}
.yb_c01292{bottom:712.080000px;}
.yc_c01292{bottom:712.800000px;}
.yd_c01292{bottom:713.520000px;}
.y8_c01292{bottom:830.880000px;}
.ya_c01292{bottom:849.600000px;}
.y9_c01292{bottom:871.920000px;}
.y7_c01292{bottom:875.520000px;}
.y6_c01292{bottom:900.720000px;}
.y5_c01292{bottom:958.320000px;}
.y4_c01292{bottom:1024.560000px;}
.y1_c01292{bottom:1130.400000px;}
.y3_c01292{bottom:1134.720000px;}
.y2_c01292{bottom:1136.160000px;}
.hf_c01292{height:36.284062px;}
.he_c01292{height:38.875781px;}
.hc_c01292{height:41.467500px;}
.h9_c01292{height:44.059219px;}
.h7_c01292{height:46.650937px;}
.h12_c01292{height:49.242656px;}
.hd_c01292{height:54.426094px;}
.h5_c01292{height:59.609531px;}
.h11_c01292{height:62.201250px;}
.hb_c01292{height:64.792969px;}
.h13_c01292{height:77.751563px;}
.ha_c01292{height:80.343281px;}
.h3_c01292{height:88.118437px;}
.h4_c01292{height:90.710156px;}
.h2_c01292{height:108.852188px;}
.h10_c01292{height:114.035625px;}
.h6_c01292{height:230.662969px;}
.h8_c01292{height:233.254688px;}
.h1_c01292{height:1238.250000px;}
.h0_c01292{height:1238.400000px;}
.w1_c01292{width:1305.750000px;}
.w0_c01292{width:1306.080000px;}
.x0_c01292{left:0.000000px;}
.x1_c01292{left:61.920000px;}
.x17_c01292{left:117.360000px;}
.xb_c01292{left:120.960000px;}
.x2_c01292{left:197.280000px;}
.x13_c01292{left:201.600000px;}
.x7_c01292{left:209.520000px;}
.xc_c01292{left:218.880000px;}
.x18_c01292{left:221.760000px;}
.x3_c01292{left:232.560000px;}
.xd_c01292{left:251.280000px;}
.x19_c01292{left:257.040000px;}
.xe_c01292{left:270.000000px;}
.x14_c01292{left:329.760000px;}
.x15_c01292{left:552.960000px;}
.x8_c01292{left:555.120000px;}
.x10_c01292{left:561.600000px;}
.x5_c01292{left:565.920000px;}
.xf_c01292{left:568.800000px;}
.x6_c01292{left:570.240000px;}
.x4_c01292{left:573.120000px;}
.xa_c01292{left:692.640000px;}
.x9_c01292{left:720.000000px;}
.x12_c01292{left:788.400000px;}
.x11_c01292{left:815.760000px;}
.x16_c01292{left:836.640000px;}
.x1a_c01292{left:888.480000px;}
.x1c_c01292{left:891.360000px;}
.x1d_c01292{left:959.760000px;}
.x20_c01292{left:990.000000px;}
.x1e_c01292{left:1013.760000px;}
.x1b_c01292{left:1015.920000px;}
.x21_c01292{left:1026.720000px;}
.x1f_c01292{left:1123.200000px;}
@media print{
.v0_c01292{vertical-align:0.000000pt;}
.ls0_c01292{letter-spacing:0.000000pt;}
.ws0_c01292{word-spacing:0.000000pt;}
.fsd_c01292{font-size:35.840000pt;}
.fsc_c01292{font-size:38.400000pt;}
.fsa_c01292{font-size:40.960000pt;}
.fs7_c01292{font-size:43.520000pt;}
.fs5_c01292{font-size:46.080000pt;}
.fs10_c01292{font-size:48.640000pt;}
.fsb_c01292{font-size:53.760000pt;}
.fs3_c01292{font-size:58.880000pt;}
.fsf_c01292{font-size:61.440000pt;}
.fs9_c01292{font-size:64.000000pt;}
.fs11_c01292{font-size:76.800000pt;}
.fs8_c01292{font-size:79.360000pt;}
.fs1_c01292{font-size:87.040000pt;}
.fs2_c01292{font-size:89.600000pt;}
.fs0_c01292{font-size:107.520000pt;}
.fse_c01292{font-size:112.640000pt;}
.fs4_c01292{font-size:227.840000pt;}
.fs6_c01292{font-size:230.400000pt;}
.y0_c01292{bottom:0.000000pt;}
.y20_c01292{bottom:49.920000pt;}
.y1e_c01292{bottom:52.480000pt;}
.y1f_c01292{bottom:53.760000pt;}
.y1d_c01292{bottom:92.160000pt;}
.y1c_c01292{bottom:92.800000pt;}
.y1b_c01292{bottom:94.720000pt;}
.y1a_c01292{bottom:130.560000pt;}
.y19_c01292{bottom:131.840000pt;}
.y18_c01292{bottom:215.040000pt;}
.y17_c01292{bottom:216.320000pt;}
.y15_c01292{bottom:323.200000pt;}
.y16_c01292{bottom:340.480000pt;}
.y14_c01292{bottom:344.320000pt;}
.y13_c01292{bottom:344.960000pt;}
.y12_c01292{bottom:382.720000pt;}
.y11_c01292{bottom:414.080000pt;}
.yf_c01292{bottom:435.200000pt;}
.y10_c01292{bottom:449.280000pt;}
.ye_c01292{bottom:494.720000pt;}
.yb_c01292{bottom:632.960000pt;}
.yc_c01292{bottom:633.600000pt;}
.yd_c01292{bottom:634.240000pt;}
.y8_c01292{bottom:738.560000pt;}
.ya_c01292{bottom:755.200000pt;}
.y9_c01292{bottom:775.040000pt;}
.y7_c01292{bottom:778.240000pt;}
.y6_c01292{bottom:800.640000pt;}
.y5_c01292{bottom:851.840000pt;}
.y4_c01292{bottom:910.720000pt;}
.y1_c01292{bottom:1004.800000pt;}
.y3_c01292{bottom:1008.640000pt;}
.y2_c01292{bottom:1009.920000pt;}
.hf_c01292{height:32.252500pt;}
.he_c01292{height:34.556250pt;}
.hc_c01292{height:36.860000pt;}
.h9_c01292{height:39.163750pt;}
.h7_c01292{height:41.467500pt;}
.h12_c01292{height:43.771250pt;}
.hd_c01292{height:48.378750pt;}
.h5_c01292{height:52.986250pt;}
.h11_c01292{height:55.290000pt;}
.hb_c01292{height:57.593750pt;}
.h13_c01292{height:69.112500pt;}
.ha_c01292{height:71.416250pt;}
.h3_c01292{height:78.327500pt;}
.h4_c01292{height:80.631250pt;}
.h2_c01292{height:96.757500pt;}
.h10_c01292{height:101.365000pt;}
.h6_c01292{height:205.033750pt;}
.h8_c01292{height:207.337500pt;}
.h1_c01292{height:1100.666667pt;}
.h0_c01292{height:1100.800000pt;}
.w1_c01292{width:1160.666667pt;}
.w0_c01292{width:1160.960000pt;}
.x0_c01292{left:0.000000pt;}
.x1_c01292{left:55.040000pt;}
.x17_c01292{left:104.320000pt;}
.xb_c01292{left:107.520000pt;}
.x2_c01292{left:175.360000pt;}
.x13_c01292{left:179.200000pt;}
.x7_c01292{left:186.240000pt;}
.xc_c01292{left:194.560000pt;}
.x18_c01292{left:197.120000pt;}
.x3_c01292{left:206.720000pt;}
.xd_c01292{left:223.360000pt;}
.x19_c01292{left:228.480000pt;}
.xe_c01292{left:240.000000pt;}
.x14_c01292{left:293.120000pt;}
.x15_c01292{left:491.520000pt;}
.x8_c01292{left:493.440000pt;}
.x10_c01292{left:499.200000pt;}
.x5_c01292{left:503.040000pt;}
.xf_c01292{left:505.600000pt;}
.x6_c01292{left:506.880000pt;}
.x4_c01292{left:509.440000pt;}
.xa_c01292{left:615.680000pt;}
.x9_c01292{left:640.000000pt;}
.x12_c01292{left:700.800000pt;}
.x11_c01292{left:725.120000pt;}
.x16_c01292{left:743.680000pt;}
.x1a_c01292{left:789.760000pt;}
.x1c_c01292{left:792.320000pt;}
.x1d_c01292{left:853.120000pt;}
.x20_c01292{left:880.000000pt;}
.x1e_c01292{left:901.120000pt;}
.x1b_c01292{left:903.040000pt;}
.x21_c01292{left:912.640000pt;}
.x1f_c01292{left:998.400000pt;}
}





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

.ir_c01293:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01293{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01293;src:url('chunks/assets/font_d0a9369cd0042605b87282f1.woff2')format("woff");}.ff1_c01293{font-family:ff1_c01293;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01293{transform:matrix(0.231150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231150,0.000000,0.000000,0.250000,0,0);}
.m9_c01293{transform:matrix(0.246275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246275,0.000000,0.000000,0.250000,0,0);}
.me_c01293{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m2_c01293{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1_c01293{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.ma_c01293{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mb_c01293{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m8_c01293{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m7_c01293{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mc_c01293{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m3_c01293{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.md_c01293{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m6_c01293{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m4_c01293{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m5_c01293{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.v0_c01293{vertical-align:0.000000px;}
.v1_c01293{vertical-align:5.760000px;}
.ls0_c01293{letter-spacing:0.000000px;}
.sc__c01293{text-shadow:none;}
.sc0_c01293{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01293{-webkit-text-stroke:0px transparent;}
.sc0_c01293{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01293{word-spacing:0.000000px;}
.ws0_c01293{word-spacing:21.799680px;}
.fc0_c01293{color:transparent;}
.fs4_c01293{font-size:11.520000px;}
.fs3_c01293{font-size:17.280000px;}
.fs5_c01293{font-size:25.920000px;}
.fs8_c01293{font-size:60.480000px;}
.fs6_c01293{font-size:63.360000px;}
.fs7_c01293{font-size:66.240000px;}
.fsa_c01293{font-size:69.120000px;}
.fs9_c01293{font-size:72.000000px;}
.fs1_c01293{font-size:95.040000px;}
.fs2_c01293{font-size:100.800000px;}
.fsb_c01293{font-size:103.680000px;}
.fs0_c01293{font-size:115.200000px;}
.y0_c01293{bottom:0.000000px;}
.y10_c01293{bottom:49.680000px;}
.yf_c01293{bottom:53.280000px;}
.yd_c01293{bottom:97.200000px;}
.yc_c01293{bottom:97.920000px;}
.ye_c01293{bottom:98.640000px;}
.y9_c01293{bottom:143.280000px;}
.y8_c01293{bottom:144.000000px;}
.ya_c01293{bottom:145.440000px;}
.yb_c01293{bottom:146.160000px;}
.y7_c01293{bottom:523.440000px;}
.y6_c01293{bottom:1064.880000px;}
.y4_c01293{bottom:1101.600000px;}
.y5_c01293{bottom:1103.040000px;}
.y1_c01293{bottom:1120.320000px;}
.y3_c01293{bottom:1126.080000px;}
.y2_c01293{bottom:1126.800000px;}
.h6_c01293{height:10.366875px;}
.h5_c01293{height:15.550313px;}
.h7_c01293{height:23.325469px;}
.h8_c01293{height:57.017812px;}
.hb_c01293{height:59.609531px;}
.h9_c01293{height:60.186094px;}
.hc_c01293{height:62.201250px;}
.ha_c01293{height:64.792969px;}
.h3_c01293{height:85.526719px;}
.h4_c01293{height:90.710156px;}
.hd_c01293{height:93.301875px;}
.h2_c01293{height:103.668750px;}
.h1_c01293{height:1222.500000px;}
.h0_c01293{height:1222.560000px;}
.w0_c01293{width:792.720000px;}
.w1_c01293{width:792.750000px;}
.x0_c01293{left:0.000000px;}
.x1_c01293{left:54.000000px;}
.x2_c01293{left:195.840000px;}
.x3_c01293{left:231.840000px;}
.x6_c01293{left:262.080000px;}
.x8_c01293{left:349.920000px;}
.xb_c01293{left:408.960000px;}
.x4_c01293{left:439.200000px;}
.x5_c01293{left:455.040000px;}
.x7_c01293{left:457.920000px;}
.xc_c01293{left:473.040000px;}
.xf_c01293{left:478.800000px;}
.x10_c01293{left:516.240000px;}
.xd_c01293{left:521.280000px;}
.xe_c01293{left:617.760000px;}
.x9_c01293{left:638.640000px;}
.xa_c01293{left:698.400000px;}
@media print{
.v0_c01293{vertical-align:0.000000pt;}
.v1_c01293{vertical-align:5.120000pt;}
.ls0_c01293{letter-spacing:0.000000pt;}
.ws1_c01293{word-spacing:0.000000pt;}
.ws0_c01293{word-spacing:19.377493pt;}
.fs4_c01293{font-size:10.240000pt;}
.fs3_c01293{font-size:15.360000pt;}
.fs5_c01293{font-size:23.040000pt;}
.fs8_c01293{font-size:53.760000pt;}
.fs6_c01293{font-size:56.320000pt;}
.fs7_c01293{font-size:58.880000pt;}
.fsa_c01293{font-size:61.440000pt;}
.fs9_c01293{font-size:64.000000pt;}
.fs1_c01293{font-size:84.480000pt;}
.fs2_c01293{font-size:89.600000pt;}
.fsb_c01293{font-size:92.160000pt;}
.fs0_c01293{font-size:102.400000pt;}
.y0_c01293{bottom:0.000000pt;}
.y10_c01293{bottom:44.160000pt;}
.yf_c01293{bottom:47.360000pt;}
.yd_c01293{bottom:86.400000pt;}
.yc_c01293{bottom:87.040000pt;}
.ye_c01293{bottom:87.680000pt;}
.y9_c01293{bottom:127.360000pt;}
.y8_c01293{bottom:128.000000pt;}
.ya_c01293{bottom:129.280000pt;}
.yb_c01293{bottom:129.920000pt;}
.y7_c01293{bottom:465.280000pt;}
.y6_c01293{bottom:946.560000pt;}
.y4_c01293{bottom:979.200000pt;}
.y5_c01293{bottom:980.480000pt;}
.y1_c01293{bottom:995.840000pt;}
.y3_c01293{bottom:1000.960000pt;}
.y2_c01293{bottom:1001.600000pt;}
.h6_c01293{height:9.215000pt;}
.h5_c01293{height:13.822500pt;}
.h7_c01293{height:20.733750pt;}
.h8_c01293{height:50.682500pt;}
.hb_c01293{height:52.986250pt;}
.h9_c01293{height:53.498750pt;}
.hc_c01293{height:55.290000pt;}
.ha_c01293{height:57.593750pt;}
.h3_c01293{height:76.023750pt;}
.h4_c01293{height:80.631250pt;}
.hd_c01293{height:82.935000pt;}
.h2_c01293{height:92.150000pt;}
.h1_c01293{height:1086.666667pt;}
.h0_c01293{height:1086.720000pt;}
.w0_c01293{width:704.640000pt;}
.w1_c01293{width:704.666667pt;}
.x0_c01293{left:0.000000pt;}
.x1_c01293{left:48.000000pt;}
.x2_c01293{left:174.080000pt;}
.x3_c01293{left:206.080000pt;}
.x6_c01293{left:232.960000pt;}
.x8_c01293{left:311.040000pt;}
.xb_c01293{left:363.520000pt;}
.x4_c01293{left:390.400000pt;}
.x5_c01293{left:404.480000pt;}
.x7_c01293{left:407.040000pt;}
.xc_c01293{left:420.480000pt;}
.xf_c01293{left:425.600000pt;}
.x10_c01293{left:458.880000pt;}
.xd_c01293{left:463.360000pt;}
.xe_c01293{left:549.120000pt;}
.x9_c01293{left:567.680000pt;}
.xa_c01293{left:620.800000pt;}
}





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

.ir_c01294:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01294{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01294;src:url('chunks/assets/font_ebdfa3a56574277d4be1798e.woff2')format("woff");}.ff1_c01294{font-family:ff1_c01294;line-height:1.109863;font-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_c01294{transform:matrix(0.102375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102375,0.000000,0.000000,0.250000,0,0);}
.m4_c01294{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mb_c01294{transform:matrix(0.132250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132250,0.000000,0.000000,0.250000,0,0);}
.m9_c01294{transform:matrix(0.134025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134025,0.000000,0.000000,0.250000,0,0);}
.m12_c01294{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mc_c01294{transform:matrix(0.225625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225625,0.000000,0.000000,0.250000,0,0);}
.m3_c01294{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_c01294{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m13_c01294{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01294{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m15_c01294{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m14_c01294{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.ma_c01294{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01294{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m18_c01294{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m7_c01294{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.md_c01294{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m1_c01294{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m11_c01294{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);}
.m16_c01294{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01294{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_c01294{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m8_c01294{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);}
.m5_c01294{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);}
.m10_c01294{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m2_c01294{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.mf_c01294{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.me_c01294{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m6_c01294{transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);}
.v0_c01294{vertical-align:0.000000px;}
.ls0_c01294{letter-spacing:0.000000px;}
.sc__c01294{text-shadow:none;}
.sc0_c01294{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01294{-webkit-text-stroke:0px transparent;}
.sc0_c01294{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01294{word-spacing:0.000000px;}
.fc0_c01294{color:transparent;}
.fs3_c01294{font-size:5.760000px;}
.fs2_c01294{font-size:8.640000px;}
.fsd_c01294{font-size:17.280000px;}
.fs5_c01294{font-size:20.160000px;}
.fsf_c01294{font-size:23.040000px;}
.fs4_c01294{font-size:25.920000px;}
.fsb_c01294{font-size:28.800000px;}
.fsc_c01294{font-size:34.560000px;}
.fse_c01294{font-size:46.080000px;}
.fsa_c01294{font-size:48.960000px;}
.fs9_c01294{font-size:51.840000px;}
.fs12_c01294{font-size:60.480000px;}
.fs7_c01294{font-size:63.360000px;}
.fs11_c01294{font-size:66.240000px;}
.fs10_c01294{font-size:69.120000px;}
.fs13_c01294{font-size:89.280000px;}
.fs1_c01294{font-size:97.920000px;}
.fs0_c01294{font-size:109.440000px;}
.fs8_c01294{font-size:256.320000px;}
.fs6_c01294{font-size:267.840000px;}
.y0_c01294{bottom:0.000000px;}
.y1c_c01294{bottom:59.760000px;}
.y1b_c01294{bottom:65.520000px;}
.y1a_c01294{bottom:108.720000px;}
.y19_c01294{bottom:109.440000px;}
.y18_c01294{bottom:110.880000px;}
.y15_c01294{bottom:154.800000px;}
.y16_c01294{bottom:155.520000px;}
.y17_c01294{bottom:156.240000px;}
.y11_c01294{bottom:416.880000px;}
.y13_c01294{bottom:417.600000px;}
.y12_c01294{bottom:418.320000px;}
.y14_c01294{bottom:422.640000px;}
.y10_c01294{bottom:549.360000px;}
.yf_c01294{bottom:550.800000px;}
.ye_c01294{bottom:552.960000px;}
.yb_c01294{bottom:553.680000px;}
.yc_c01294{bottom:570.240000px;}
.yd_c01294{bottom:571.680000px;}
.y9_c01294{bottom:681.120000px;}
.ya_c01294{bottom:690.480000px;}
.y8_c01294{bottom:828.720000px;}
.y7_c01294{bottom:829.440000px;}
.y6_c01294{bottom:846.720000px;}
.y5_c01294{bottom:849.600000px;}
.y4_c01294{bottom:873.360000px;}
.y3_c01294{bottom:875.520000px;}
.y1_c01294{bottom:1136.160000px;}
.y2_c01294{bottom:1139.760000px;}
.h5_c01294{height:5.183438px;}
.h4_c01294{height:7.775156px;}
.hf_c01294{height:15.550313px;}
.h7_c01294{height:18.142031px;}
.h11_c01294{height:20.733750px;}
.h6_c01294{height:23.325469px;}
.hd_c01294{height:25.917187px;}
.he_c01294{height:31.100625px;}
.h10_c01294{height:41.467500px;}
.hc_c01294{height:44.059219px;}
.hb_c01294{height:46.650937px;}
.h14_c01294{height:54.426094px;}
.h9_c01294{height:57.017812px;}
.h13_c01294{height:59.609531px;}
.h12_c01294{height:62.201250px;}
.h15_c01294{height:80.343281px;}
.h3_c01294{height:88.118437px;}
.h2_c01294{height:98.485312px;}
.ha_c01294{height:230.662969px;}
.h8_c01294{height:241.029844px;}
.h1_c01294{height:1233.000000px;}
.h0_c01294{height:1233.360000px;}
.w0_c01294{width:1355.040000px;}
.w1_c01294{width:1355.250000px;}
.x0_c01294{left:0.000000px;}
.x9_c01294{left:41.760000px;}
.x1_c01294{left:72.720000px;}
.xf_c01294{left:77.760000px;}
.x10_c01294{left:81.360000px;}
.xa_c01294{left:86.400000px;}
.x11_c01294{left:90.720000px;}
.x12_c01294{left:110.880000px;}
.xd_c01294{left:175.680000px;}
.x13_c01294{left:200.880000px;}
.xc_c01294{left:205.200000px;}
.x2_c01294{left:223.920000px;}
.xe_c01294{left:304.560000px;}
.x7_c01294{left:571.680000px;}
.x8_c01294{left:581.760000px;}
.x5_c01294{left:740.880000px;}
.x6_c01294{left:749.520000px;}
.x3_c01294{left:756.720000px;}
.x4_c01294{left:767.520000px;}
.x14_c01294{left:776.880000px;}
.x15_c01294{left:820.080000px;}
.x16_c01294{left:832.320000px;}
.x17_c01294{left:846.000000px;}
.x18_c01294{left:879.120000px;}
.x19_c01294{left:964.080000px;}
.x1f_c01294{left:966.960000px;}
.x20_c01294{left:1026.720000px;}
.x23_c01294{left:1043.280000px;}
.x1a_c01294{left:1072.080000px;}
.x21_c01294{left:1075.680000px;}
.x24_c01294{left:1080.720000px;}
.x1b_c01294{left:1128.240000px;}
.x22_c01294{left:1177.200000px;}
.x1c_c01294{left:1188.000000px;}
.xb_c01294{left:1205.280000px;}
.x1d_c01294{left:1235.520000px;}
.x1e_c01294{left:1247.760000px;}
@media print{
.v0_c01294{vertical-align:0.000000pt;}
.ls0_c01294{letter-spacing:0.000000pt;}
.ws0_c01294{word-spacing:0.000000pt;}
.fs3_c01294{font-size:5.120000pt;}
.fs2_c01294{font-size:7.680000pt;}
.fsd_c01294{font-size:15.360000pt;}
.fs5_c01294{font-size:17.920000pt;}
.fsf_c01294{font-size:20.480000pt;}
.fs4_c01294{font-size:23.040000pt;}
.fsb_c01294{font-size:25.600000pt;}
.fsc_c01294{font-size:30.720000pt;}
.fse_c01294{font-size:40.960000pt;}
.fsa_c01294{font-size:43.520000pt;}
.fs9_c01294{font-size:46.080000pt;}
.fs12_c01294{font-size:53.760000pt;}
.fs7_c01294{font-size:56.320000pt;}
.fs11_c01294{font-size:58.880000pt;}
.fs10_c01294{font-size:61.440000pt;}
.fs13_c01294{font-size:79.360000pt;}
.fs1_c01294{font-size:87.040000pt;}
.fs0_c01294{font-size:97.280000pt;}
.fs8_c01294{font-size:227.840000pt;}
.fs6_c01294{font-size:238.080000pt;}
.y0_c01294{bottom:0.000000pt;}
.y1c_c01294{bottom:53.120000pt;}
.y1b_c01294{bottom:58.240000pt;}
.y1a_c01294{bottom:96.640000pt;}
.y19_c01294{bottom:97.280000pt;}
.y18_c01294{bottom:98.560000pt;}
.y15_c01294{bottom:137.600000pt;}
.y16_c01294{bottom:138.240000pt;}
.y17_c01294{bottom:138.880000pt;}
.y11_c01294{bottom:370.560000pt;}
.y13_c01294{bottom:371.200000pt;}
.y12_c01294{bottom:371.840000pt;}
.y14_c01294{bottom:375.680000pt;}
.y10_c01294{bottom:488.320000pt;}
.yf_c01294{bottom:489.600000pt;}
.ye_c01294{bottom:491.520000pt;}
.yb_c01294{bottom:492.160000pt;}
.yc_c01294{bottom:506.880000pt;}
.yd_c01294{bottom:508.160000pt;}
.y9_c01294{bottom:605.440000pt;}
.ya_c01294{bottom:613.760000pt;}
.y8_c01294{bottom:736.640000pt;}
.y7_c01294{bottom:737.280000pt;}
.y6_c01294{bottom:752.640000pt;}
.y5_c01294{bottom:755.200000pt;}
.y4_c01294{bottom:776.320000pt;}
.y3_c01294{bottom:778.240000pt;}
.y1_c01294{bottom:1009.920000pt;}
.y2_c01294{bottom:1013.120000pt;}
.h5_c01294{height:4.607500pt;}
.h4_c01294{height:6.911250pt;}
.hf_c01294{height:13.822500pt;}
.h7_c01294{height:16.126250pt;}
.h11_c01294{height:18.430000pt;}
.h6_c01294{height:20.733750pt;}
.hd_c01294{height:23.037500pt;}
.he_c01294{height:27.645000pt;}
.h10_c01294{height:36.860000pt;}
.hc_c01294{height:39.163750pt;}
.hb_c01294{height:41.467500pt;}
.h14_c01294{height:48.378750pt;}
.h9_c01294{height:50.682500pt;}
.h13_c01294{height:52.986250pt;}
.h12_c01294{height:55.290000pt;}
.h15_c01294{height:71.416250pt;}
.h3_c01294{height:78.327500pt;}
.h2_c01294{height:87.542500pt;}
.ha_c01294{height:205.033750pt;}
.h8_c01294{height:214.248750pt;}
.h1_c01294{height:1096.000000pt;}
.h0_c01294{height:1096.320000pt;}
.w0_c01294{width:1204.480000pt;}
.w1_c01294{width:1204.666667pt;}
.x0_c01294{left:0.000000pt;}
.x9_c01294{left:37.120000pt;}
.x1_c01294{left:64.640000pt;}
.xf_c01294{left:69.120000pt;}
.x10_c01294{left:72.320000pt;}
.xa_c01294{left:76.800000pt;}
.x11_c01294{left:80.640000pt;}
.x12_c01294{left:98.560000pt;}
.xd_c01294{left:156.160000pt;}
.x13_c01294{left:178.560000pt;}
.xc_c01294{left:182.400000pt;}
.x2_c01294{left:199.040000pt;}
.xe_c01294{left:270.720000pt;}
.x7_c01294{left:508.160000pt;}
.x8_c01294{left:517.120000pt;}
.x5_c01294{left:658.560000pt;}
.x6_c01294{left:666.240000pt;}
.x3_c01294{left:672.640000pt;}
.x4_c01294{left:682.240000pt;}
.x14_c01294{left:690.560000pt;}
.x15_c01294{left:728.960000pt;}
.x16_c01294{left:739.840000pt;}
.x17_c01294{left:752.000000pt;}
.x18_c01294{left:781.440000pt;}
.x19_c01294{left:856.960000pt;}
.x1f_c01294{left:859.520000pt;}
.x20_c01294{left:912.640000pt;}
.x23_c01294{left:927.360000pt;}
.x1a_c01294{left:952.960000pt;}
.x21_c01294{left:956.160000pt;}
.x24_c01294{left:960.640000pt;}
.x1b_c01294{left:1002.880000pt;}
.x22_c01294{left:1046.400000pt;}
.x1c_c01294{left:1056.000000pt;}
.xb_c01294{left:1071.360000pt;}
.x1d_c01294{left:1098.240000pt;}
.x1e_c01294{left:1109.120000pt;}
}





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

.ir_c01295:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01295{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01295;src:url('chunks/assets/font_b7d05e00e98e6372041d1fd0.woff2')format("woff");}.ff1_c01295{font-family:ff1_c01295;line-height:1.109863;font-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_c01295{transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);}
.m4b_c01295{transform:matrix(0.229050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229050,0.000000,0.000000,0.250000,0,0);}
.m61_c01295{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m41_c01295{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);}
.m53_c01295{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);}
.m3f_c01295{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);}
.m4e_c01295{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);}
.m54_c01295{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m27_c01295{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);}
.m42_c01295{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);}
.m5d_c01295{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);}
.m43_c01295{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);}
.m51_c01295{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m12_c01295{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m10_c01295{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m62_c01295{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01295{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m58_c01295{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01295{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m4f_c01295{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01295{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m30_c01295{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m6c_c01295{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01295{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m1_c01295{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m0_c01295{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.md_c01295{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);}
.m6b_c01295{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);}
.m50_c01295{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m2_c01295{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m6a_c01295{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);}
.m37_c01295{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m4_c01295{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m63_c01295{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);}
.m47_c01295{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);}
.m40_c01295{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m6d_c01295{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m18_c01295{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);}
.m15_c01295{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m34_c01295{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);}
.m5b_c01295{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.me_c01295{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);}
.m2b_c01295{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01295{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);}
.m5c_c01295{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);}
.m1e_c01295{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);}
.m26_c01295{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m5e_c01295{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m55_c01295{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m39_c01295{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);}
.m14_c01295{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m52_c01295{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);}
.m3a_c01295{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m17_c01295{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);}
.m11_c01295{transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);}
.m19_c01295{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m13_c01295{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.ma_c01295{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m4d_c01295{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m6_c01295{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);}
.m3d_c01295{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.mb_c01295{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m3_c01295{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);}
.m23_c01295{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01295{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);}
.m2a_c01295{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m38_c01295{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.mc_c01295{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m67_c01295{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m28_c01295{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);}
.m4a_c01295{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m65_c01295{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m5a_c01295{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m49_c01295{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);}
.m59_c01295{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m64_c01295{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m20_c01295{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m35_c01295{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m24_c01295{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m6e_c01295{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);}
.m29_c01295{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);}
.m3b_c01295{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01295{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);}
.m36_c01295{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m25_c01295{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m48_c01295{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m16_c01295{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m32_c01295{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);}
.m69_c01295{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m45_c01295{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m31_c01295{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01295{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);}
.m68_c01295{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01295{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);}
.m7_c01295{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01295{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m9_c01295{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01295{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m46_c01295{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m5f_c01295{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);}
.m2c_c01295{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m5_c01295{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);}
.m66_c01295{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m8_c01295{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.mf_c01295{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m44_c01295{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m33_c01295{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m56_c01295{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);}
.m60_c01295{transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);}
.m57_c01295{transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);}
.m22_c01295{transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);}
.v0_c01295{vertical-align:0.000000px;}
.ls0_c01295{letter-spacing:0.000000px;}
.sc__c01295{text-shadow:none;}
.sc0_c01295{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01295{-webkit-text-stroke:0px transparent;}
.sc0_c01295{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01295{word-spacing:0.000000px;}
.fc0_c01295{color:transparent;}
.fsb_c01295{font-size:20.160000px;}
.fs5_c01295{font-size:34.560000px;}
.fse_c01295{font-size:37.440000px;}
.fsf_c01295{font-size:40.320000px;}
.fs6_c01295{font-size:43.200000px;}
.fs4_c01295{font-size:46.080000px;}
.fs3_c01295{font-size:48.960000px;}
.fs2_c01295{font-size:51.840000px;}
.fs7_c01295{font-size:54.720000px;}
.fs8_c01295{font-size:57.600000px;}
.fs1_c01295{font-size:60.480000px;}
.fs9_c01295{font-size:63.360000px;}
.fsc_c01295{font-size:66.240000px;}
.fsa_c01295{font-size:69.120000px;}
.fsd_c01295{font-size:72.000000px;}
.fs0_c01295{font-size:74.880000px;}
.y0_c01295{bottom:0.000000px;}
.y75_c01295{bottom:84.240000px;}
.y77_c01295{bottom:84.960000px;}
.y76_c01295{bottom:85.680000px;}
.y78_c01295{bottom:86.400000px;}
.y74_c01295{bottom:87.120000px;}
.y79_c01295{bottom:87.840000px;}
.y71_c01295{bottom:125.280000px;}
.y6e_c01295{bottom:126.000000px;}
.y70_c01295{bottom:126.720000px;}
.y6f_c01295{bottom:127.440000px;}
.y72_c01295{bottom:128.160000px;}
.y6d_c01295{bottom:129.600000px;}
.y73_c01295{bottom:130.320000px;}
.y6c_c01295{bottom:131.760000px;}
.y68_c01295{bottom:169.200000px;}
.y69_c01295{bottom:169.920000px;}
.y66_c01295{bottom:170.640000px;}
.y67_c01295{bottom:171.360000px;}
.y6a_c01295{bottom:172.800000px;}
.y6b_c01295{bottom:173.520000px;}
.y65_c01295{bottom:174.240000px;}
.y5f_c01295{bottom:210.960000px;}
.y5d_c01295{bottom:211.680000px;}
.y5e_c01295{bottom:212.400000px;}
.y63_c01295{bottom:213.840000px;}
.y60_c01295{bottom:214.560000px;}
.y61_c01295{bottom:215.280000px;}
.y62_c01295{bottom:216.000000px;}
.y64_c01295{bottom:216.720000px;}
.y5a_c01295{bottom:257.040000px;}
.y58_c01295{bottom:257.760000px;}
.y59_c01295{bottom:258.480000px;}
.y5b_c01295{bottom:259.200000px;}
.y5c_c01295{bottom:259.920000px;}
.y54_c01295{bottom:308.880000px;}
.y53_c01295{bottom:309.600000px;}
.y55_c01295{bottom:311.040000px;}
.y56_c01295{bottom:311.760000px;}
.y57_c01295{bottom:312.480000px;}
.y52_c01295{bottom:313.200000px;}
.y4e_c01295{bottom:351.360000px;}
.y4d_c01295{bottom:352.080000px;}
.y50_c01295{bottom:352.800000px;}
.y4c_c01295{bottom:354.240000px;}
.y4f_c01295{bottom:354.960000px;}
.y4b_c01295{bottom:355.680000px;}
.y51_c01295{bottom:357.120000px;}
.y48_c01295{bottom:395.280000px;}
.y47_c01295{bottom:396.720000px;}
.y46_c01295{bottom:397.440000px;}
.y45_c01295{bottom:398.160000px;}
.y49_c01295{bottom:398.880000px;}
.y4a_c01295{bottom:399.600000px;}
.y40_c01295{bottom:437.760000px;}
.y43_c01295{bottom:438.480000px;}
.y42_c01295{bottom:439.920000px;}
.y41_c01295{bottom:440.640000px;}
.y44_c01295{bottom:441.360000px;}
.y3d_c01295{bottom:480.960000px;}
.y3e_c01295{bottom:481.680000px;}
.y3f_c01295{bottom:482.400000px;}
.y3c_c01295{bottom:484.560000px;}
.y37_c01295{bottom:523.440000px;}
.y39_c01295{bottom:524.160000px;}
.y3b_c01295{bottom:525.600000px;}
.y38_c01295{bottom:526.320000px;}
.y36_c01295{bottom:527.040000px;}
.y3a_c01295{bottom:527.760000px;}
.y33_c01295{bottom:567.360000px;}
.y34_c01295{bottom:569.520000px;}
.y35_c01295{bottom:570.240000px;}
.y2f_c01295{bottom:609.120000px;}
.y30_c01295{bottom:609.840000px;}
.y31_c01295{bottom:610.560000px;}
.y2e_c01295{bottom:612.720000px;}
.y32_c01295{bottom:613.440000px;}
.y2d_c01295{bottom:653.040000px;}
.y2b_c01295{bottom:655.200000px;}
.y2c_c01295{bottom:655.920000px;}
.y27_c01295{bottom:696.240000px;}
.y2a_c01295{bottom:698.400000px;}
.y29_c01295{bottom:699.120000px;}
.y28_c01295{bottom:699.840000px;}
.y25_c01295{bottom:738.720000px;}
.y26_c01295{bottom:740.880000px;}
.y23_c01295{bottom:741.600000px;}
.y24_c01295{bottom:742.320000px;}
.y1f_c01295{bottom:781.920000px;}
.y22_c01295{bottom:782.640000px;}
.y1e_c01295{bottom:784.080000px;}
.y21_c01295{bottom:784.800000px;}
.y20_c01295{bottom:785.520000px;}
.y1d_c01295{bottom:825.840000px;}
.y1c_c01295{bottom:828.000000px;}
.y1b_c01295{bottom:828.720000px;}
.y18_c01295{bottom:878.400000px;}
.y1a_c01295{bottom:880.560000px;}
.y19_c01295{bottom:881.280000px;}
.y16_c01295{bottom:920.880000px;}
.y12_c01295{bottom:921.600000px;}
.y15_c01295{bottom:922.320000px;}
.y17_c01295{bottom:923.760000px;}
.y13_c01295{bottom:924.480000px;}
.y14_c01295{bottom:925.200000px;}
.yc_c01295{bottom:963.360000px;}
.yf_c01295{bottom:964.080000px;}
.ye_c01295{bottom:964.800000px;}
.y11_c01295{bottom:966.240000px;}
.y10_c01295{bottom:966.960000px;}
.yd_c01295{bottom:967.680000px;}
.yb_c01295{bottom:1005.840000px;}
.y8_c01295{bottom:1006.560000px;}
.y6_c01295{bottom:1007.280000px;}
.ya_c01295{bottom:1008.720000px;}
.y5_c01295{bottom:1009.440000px;}
.y7_c01295{bottom:1010.160000px;}
.y9_c01295{bottom:1010.880000px;}
.y2_c01295{bottom:1049.760000px;}
.y3_c01295{bottom:1052.640000px;}
.y4_c01295{bottom:1053.360000px;}
.y1_c01295{bottom:1089.360000px;}
.hd_c01295{height:18.142031px;}
.h7_c01295{height:31.100625px;}
.h10_c01295{height:33.692344px;}
.h11_c01295{height:36.284062px;}
.h8_c01295{height:38.875781px;}
.h6_c01295{height:41.467500px;}
.h5_c01295{height:44.059219px;}
.h4_c01295{height:46.650937px;}
.h9_c01295{height:49.242656px;}
.ha_c01295{height:51.834375px;}
.h3_c01295{height:54.426094px;}
.hb_c01295{height:57.017812px;}
.he_c01295{height:59.609531px;}
.hc_c01295{height:62.201250px;}
.hf_c01295{height:64.792969px;}
.h2_c01295{height:67.384687px;}
.h1_c01295{height:1149.000000px;}
.h0_c01295{height:1149.120000px;}
.w0_c01295{width:742.320000px;}
.w1_c01295{width:742.500000px;}
.x0_c01295{left:0.000000px;}
.x2_c01295{left:35.280000px;}
.x14_c01295{left:36.720000px;}
.x22_c01295{left:38.880000px;}
.x4a_c01295{left:40.320000px;}
.x51_c01295{left:42.480000px;}
.x23_c01295{left:56.160000px;}
.xd_c01295{left:67.680000px;}
.x3a_c01295{left:69.120000px;}
.x15_c01295{left:78.480000px;}
.x29_c01295{left:79.920000px;}
.x1b_c01295{left:88.560000px;}
.x24_c01295{left:91.440000px;}
.x2e_c01295{left:100.080000px;}
.x4b_c01295{left:101.520000px;}
.x3_c01295{left:111.600000px;}
.x3b_c01295{left:121.680000px;}
.x2a_c01295{left:133.200000px;}
.x25_c01295{left:142.560000px;}
.x3c_c01295{left:144.000000px;}
.x16_c01295{left:154.800000px;}
.x32_c01295{left:165.600000px;}
.x3d_c01295{left:168.480000px;}
.x2b_c01295{left:175.680000px;}
.x4f_c01295{left:177.120000px;}
.x52_c01295{left:178.560000px;}
.x1c_c01295{left:187.920000px;}
.x36_c01295{left:190.080000px;}
.x4_c01295{left:198.720000px;}
.x46_c01295{left:200.880000px;}
.x33_c01295{left:209.520000px;}
.x2c_c01295{left:220.320000px;}
.x4c_c01295{left:231.120000px;}
.x54_c01295{left:232.560000px;}
.xe_c01295{left:241.920000px;}
.x26_c01295{left:252.720000px;}
.x17_c01295{left:263.520000px;}
.x2f_c01295{left:274.320000px;}
.x5_c01295{left:285.120000px;}
.x55_c01295{left:287.280000px;}
.x49_c01295{left:294.480000px;}
.x1d_c01295{left:295.920000px;}
.x37_c01295{left:308.160000px;}
.x6_c01295{left:316.800000px;}
.x47_c01295{left:318.960000px;}
.x1e_c01295{left:328.320000px;}
.x3e_c01295{left:339.120000px;}
.x7_c01295{left:349.200000px;}
.x18_c01295{left:360.720000px;}
.x30_c01295{left:371.520000px;}
.xf_c01295{left:380.880000px;}
.x42_c01295{left:382.320000px;}
.x38_c01295{left:385.200000px;}
.x1f_c01295{left:393.120000px;}
.x8_c01295{left:403.920000px;}
.x50_c01295{left:414.000000px;}
.x48_c01295{left:416.880000px;}
.x20_c01295{left:424.800000px;}
.x44_c01295{left:427.680000px;}
.x3f_c01295{left:434.880000px;}
.x9_c01295{left:436.320000px;}
.x27_c01295{left:446.400000px;}
.x10_c01295{left:455.760000px;}
.x53_c01295{left:457.200000px;}
.xa_c01295{left:468.720000px;}
.x57_c01295{left:490.320000px;}
.x21_c01295{left:498.960000px;}
.x19_c01295{left:501.120000px;}
.x11_c01295{left:510.480000px;}
.x56_c01295{left:522.720000px;}
.x58_c01295{left:532.080000px;}
.xb_c01295{left:533.520000px;}
.x31_c01295{left:542.880000px;}
.x39_c01295{left:553.680000px;}
.x12_c01295{left:555.120000px;}
.x34_c01295{left:574.560000px;}
.xc_c01295{left:576.720000px;}
.x40_c01295{left:586.080000px;}
.x13_c01295{left:587.520000px;}
.x43_c01295{left:596.160000px;}
.x35_c01295{left:597.600000px;}
.x1a_c01295{left:608.400000px;}
.x4d_c01295{left:617.760000px;}
.x2d_c01295{left:620.640000px;}
.x4e_c01295{left:628.560000px;}
.x45_c01295{left:632.160000px;}
.x1_c01295{left:637.200000px;}
.x41_c01295{left:640.080000px;}
.x28_c01295{left:652.320000px;}
@media print{
.v0_c01295{vertical-align:0.000000pt;}
.ls0_c01295{letter-spacing:0.000000pt;}
.ws0_c01295{word-spacing:0.000000pt;}
.fsb_c01295{font-size:17.920000pt;}
.fs5_c01295{font-size:30.720000pt;}
.fse_c01295{font-size:33.280000pt;}
.fsf_c01295{font-size:35.840000pt;}
.fs6_c01295{font-size:38.400000pt;}
.fs4_c01295{font-size:40.960000pt;}
.fs3_c01295{font-size:43.520000pt;}
.fs2_c01295{font-size:46.080000pt;}
.fs7_c01295{font-size:48.640000pt;}
.fs8_c01295{font-size:51.200000pt;}
.fs1_c01295{font-size:53.760000pt;}
.fs9_c01295{font-size:56.320000pt;}
.fsc_c01295{font-size:58.880000pt;}
.fsa_c01295{font-size:61.440000pt;}
.fsd_c01295{font-size:64.000000pt;}
.fs0_c01295{font-size:66.560000pt;}
.y0_c01295{bottom:0.000000pt;}
.y75_c01295{bottom:74.880000pt;}
.y77_c01295{bottom:75.520000pt;}
.y76_c01295{bottom:76.160000pt;}
.y78_c01295{bottom:76.800000pt;}
.y74_c01295{bottom:77.440000pt;}
.y79_c01295{bottom:78.080000pt;}
.y71_c01295{bottom:111.360000pt;}
.y6e_c01295{bottom:112.000000pt;}
.y70_c01295{bottom:112.640000pt;}
.y6f_c01295{bottom:113.280000pt;}
.y72_c01295{bottom:113.920000pt;}
.y6d_c01295{bottom:115.200000pt;}
.y73_c01295{bottom:115.840000pt;}
.y6c_c01295{bottom:117.120000pt;}
.y68_c01295{bottom:150.400000pt;}
.y69_c01295{bottom:151.040000pt;}
.y66_c01295{bottom:151.680000pt;}
.y67_c01295{bottom:152.320000pt;}
.y6a_c01295{bottom:153.600000pt;}
.y6b_c01295{bottom:154.240000pt;}
.y65_c01295{bottom:154.880000pt;}
.y5f_c01295{bottom:187.520000pt;}
.y5d_c01295{bottom:188.160000pt;}
.y5e_c01295{bottom:188.800000pt;}
.y63_c01295{bottom:190.080000pt;}
.y60_c01295{bottom:190.720000pt;}
.y61_c01295{bottom:191.360000pt;}
.y62_c01295{bottom:192.000000pt;}
.y64_c01295{bottom:192.640000pt;}
.y5a_c01295{bottom:228.480000pt;}
.y58_c01295{bottom:229.120000pt;}
.y59_c01295{bottom:229.760000pt;}
.y5b_c01295{bottom:230.400000pt;}
.y5c_c01295{bottom:231.040000pt;}
.y54_c01295{bottom:274.560000pt;}
.y53_c01295{bottom:275.200000pt;}
.y55_c01295{bottom:276.480000pt;}
.y56_c01295{bottom:277.120000pt;}
.y57_c01295{bottom:277.760000pt;}
.y52_c01295{bottom:278.400000pt;}
.y4e_c01295{bottom:312.320000pt;}
.y4d_c01295{bottom:312.960000pt;}
.y50_c01295{bottom:313.600000pt;}
.y4c_c01295{bottom:314.880000pt;}
.y4f_c01295{bottom:315.520000pt;}
.y4b_c01295{bottom:316.160000pt;}
.y51_c01295{bottom:317.440000pt;}
.y48_c01295{bottom:351.360000pt;}
.y47_c01295{bottom:352.640000pt;}
.y46_c01295{bottom:353.280000pt;}
.y45_c01295{bottom:353.920000pt;}
.y49_c01295{bottom:354.560000pt;}
.y4a_c01295{bottom:355.200000pt;}
.y40_c01295{bottom:389.120000pt;}
.y43_c01295{bottom:389.760000pt;}
.y42_c01295{bottom:391.040000pt;}
.y41_c01295{bottom:391.680000pt;}
.y44_c01295{bottom:392.320000pt;}
.y3d_c01295{bottom:427.520000pt;}
.y3e_c01295{bottom:428.160000pt;}
.y3f_c01295{bottom:428.800000pt;}
.y3c_c01295{bottom:430.720000pt;}
.y37_c01295{bottom:465.280000pt;}
.y39_c01295{bottom:465.920000pt;}
.y3b_c01295{bottom:467.200000pt;}
.y38_c01295{bottom:467.840000pt;}
.y36_c01295{bottom:468.480000pt;}
.y3a_c01295{bottom:469.120000pt;}
.y33_c01295{bottom:504.320000pt;}
.y34_c01295{bottom:506.240000pt;}
.y35_c01295{bottom:506.880000pt;}
.y2f_c01295{bottom:541.440000pt;}
.y30_c01295{bottom:542.080000pt;}
.y31_c01295{bottom:542.720000pt;}
.y2e_c01295{bottom:544.640000pt;}
.y32_c01295{bottom:545.280000pt;}
.y2d_c01295{bottom:580.480000pt;}
.y2b_c01295{bottom:582.400000pt;}
.y2c_c01295{bottom:583.040000pt;}
.y27_c01295{bottom:618.880000pt;}
.y2a_c01295{bottom:620.800000pt;}
.y29_c01295{bottom:621.440000pt;}
.y28_c01295{bottom:622.080000pt;}
.y25_c01295{bottom:656.640000pt;}
.y26_c01295{bottom:658.560000pt;}
.y23_c01295{bottom:659.200000pt;}
.y24_c01295{bottom:659.840000pt;}
.y1f_c01295{bottom:695.040000pt;}
.y22_c01295{bottom:695.680000pt;}
.y1e_c01295{bottom:696.960000pt;}
.y21_c01295{bottom:697.600000pt;}
.y20_c01295{bottom:698.240000pt;}
.y1d_c01295{bottom:734.080000pt;}
.y1c_c01295{bottom:736.000000pt;}
.y1b_c01295{bottom:736.640000pt;}
.y18_c01295{bottom:780.800000pt;}
.y1a_c01295{bottom:782.720000pt;}
.y19_c01295{bottom:783.360000pt;}
.y16_c01295{bottom:818.560000pt;}
.y12_c01295{bottom:819.200000pt;}
.y15_c01295{bottom:819.840000pt;}
.y17_c01295{bottom:821.120000pt;}
.y13_c01295{bottom:821.760000pt;}
.y14_c01295{bottom:822.400000pt;}
.yc_c01295{bottom:856.320000pt;}
.yf_c01295{bottom:856.960000pt;}
.ye_c01295{bottom:857.600000pt;}
.y11_c01295{bottom:858.880000pt;}
.y10_c01295{bottom:859.520000pt;}
.yd_c01295{bottom:860.160000pt;}
.yb_c01295{bottom:894.080000pt;}
.y8_c01295{bottom:894.720000pt;}
.y6_c01295{bottom:895.360000pt;}
.ya_c01295{bottom:896.640000pt;}
.y5_c01295{bottom:897.280000pt;}
.y7_c01295{bottom:897.920000pt;}
.y9_c01295{bottom:898.560000pt;}
.y2_c01295{bottom:933.120000pt;}
.y3_c01295{bottom:935.680000pt;}
.y4_c01295{bottom:936.320000pt;}
.y1_c01295{bottom:968.320000pt;}
.hd_c01295{height:16.126250pt;}
.h7_c01295{height:27.645000pt;}
.h10_c01295{height:29.948750pt;}
.h11_c01295{height:32.252500pt;}
.h8_c01295{height:34.556250pt;}
.h6_c01295{height:36.860000pt;}
.h5_c01295{height:39.163750pt;}
.h4_c01295{height:41.467500pt;}
.h9_c01295{height:43.771250pt;}
.ha_c01295{height:46.075000pt;}
.h3_c01295{height:48.378750pt;}
.hb_c01295{height:50.682500pt;}
.he_c01295{height:52.986250pt;}
.hc_c01295{height:55.290000pt;}
.hf_c01295{height:57.593750pt;}
.h2_c01295{height:59.897500pt;}
.h1_c01295{height:1021.333333pt;}
.h0_c01295{height:1021.440000pt;}
.w0_c01295{width:659.840000pt;}
.w1_c01295{width:660.000000pt;}
.x0_c01295{left:0.000000pt;}
.x2_c01295{left:31.360000pt;}
.x14_c01295{left:32.640000pt;}
.x22_c01295{left:34.560000pt;}
.x4a_c01295{left:35.840000pt;}
.x51_c01295{left:37.760000pt;}
.x23_c01295{left:49.920000pt;}
.xd_c01295{left:60.160000pt;}
.x3a_c01295{left:61.440000pt;}
.x15_c01295{left:69.760000pt;}
.x29_c01295{left:71.040000pt;}
.x1b_c01295{left:78.720000pt;}
.x24_c01295{left:81.280000pt;}
.x2e_c01295{left:88.960000pt;}
.x4b_c01295{left:90.240000pt;}
.x3_c01295{left:99.200000pt;}
.x3b_c01295{left:108.160000pt;}
.x2a_c01295{left:118.400000pt;}
.x25_c01295{left:126.720000pt;}
.x3c_c01295{left:128.000000pt;}
.x16_c01295{left:137.600000pt;}
.x32_c01295{left:147.200000pt;}
.x3d_c01295{left:149.760000pt;}
.x2b_c01295{left:156.160000pt;}
.x4f_c01295{left:157.440000pt;}
.x52_c01295{left:158.720000pt;}
.x1c_c01295{left:167.040000pt;}
.x36_c01295{left:168.960000pt;}
.x4_c01295{left:176.640000pt;}
.x46_c01295{left:178.560000pt;}
.x33_c01295{left:186.240000pt;}
.x2c_c01295{left:195.840000pt;}
.x4c_c01295{left:205.440000pt;}
.x54_c01295{left:206.720000pt;}
.xe_c01295{left:215.040000pt;}
.x26_c01295{left:224.640000pt;}
.x17_c01295{left:234.240000pt;}
.x2f_c01295{left:243.840000pt;}
.x5_c01295{left:253.440000pt;}
.x55_c01295{left:255.360000pt;}
.x49_c01295{left:261.760000pt;}
.x1d_c01295{left:263.040000pt;}
.x37_c01295{left:273.920000pt;}
.x6_c01295{left:281.600000pt;}
.x47_c01295{left:283.520000pt;}
.x1e_c01295{left:291.840000pt;}
.x3e_c01295{left:301.440000pt;}
.x7_c01295{left:310.400000pt;}
.x18_c01295{left:320.640000pt;}
.x30_c01295{left:330.240000pt;}
.xf_c01295{left:338.560000pt;}
.x42_c01295{left:339.840000pt;}
.x38_c01295{left:342.400000pt;}
.x1f_c01295{left:349.440000pt;}
.x8_c01295{left:359.040000pt;}
.x50_c01295{left:368.000000pt;}
.x48_c01295{left:370.560000pt;}
.x20_c01295{left:377.600000pt;}
.x44_c01295{left:380.160000pt;}
.x3f_c01295{left:386.560000pt;}
.x9_c01295{left:387.840000pt;}
.x27_c01295{left:396.800000pt;}
.x10_c01295{left:405.120000pt;}
.x53_c01295{left:406.400000pt;}
.xa_c01295{left:416.640000pt;}
.x57_c01295{left:435.840000pt;}
.x21_c01295{left:443.520000pt;}
.x19_c01295{left:445.440000pt;}
.x11_c01295{left:453.760000pt;}
.x56_c01295{left:464.640000pt;}
.x58_c01295{left:472.960000pt;}
.xb_c01295{left:474.240000pt;}
.x31_c01295{left:482.560000pt;}
.x39_c01295{left:492.160000pt;}
.x12_c01295{left:493.440000pt;}
.x34_c01295{left:510.720000pt;}
.xc_c01295{left:512.640000pt;}
.x40_c01295{left:520.960000pt;}
.x13_c01295{left:522.240000pt;}
.x43_c01295{left:529.920000pt;}
.x35_c01295{left:531.200000pt;}
.x1a_c01295{left:540.800000pt;}
.x4d_c01295{left:549.120000pt;}
.x2d_c01295{left:551.680000pt;}
.x4e_c01295{left:558.720000pt;}
.x45_c01295{left:561.920000pt;}
.x1_c01295{left:566.400000pt;}
.x41_c01295{left:568.960000pt;}
.x28_c01295{left:579.840000pt;}
}





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

.ir_c01296:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01296{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01296;src:url('chunks/assets/font_e27aa3115eb735425acfc7de.woff2')format("woff");}.ff1_c01296{font-family:ff1_c01296;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m45_c01296{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m59_c01296{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);}
.m3f_c01296{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);}
.m4d_c01296{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);}
.m4f_c01296{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);}
.m57_c01296{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);}
.m58_c01296{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);}
.m50_c01296{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m40_c01296{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01296{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m5d_c01296{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01296{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01296{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01296{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m26_c01296{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01296{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);}
.m2d_c01296{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m3_c01296{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);}
.m5a_c01296{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01296{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);}
.m34_c01296{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.me_c01296{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);}
.m2b_c01296{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m16_c01296{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.mc_c01296{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m20_c01296{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);}
.m2c_c01296{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m28_c01296{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m0_c01296{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);}
.mb_c01296{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.mf_c01296{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m2_c01296{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);}
.m48_c01296{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m54_c01296{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);}
.m5_c01296{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m25_c01296{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);}
.m49_c01296{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);}
.m2e_c01296{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01296{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m27_c01296{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m1_c01296{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);}
.m36_c01296{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.ma_c01296{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);}
.m21_c01296{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);}
.m22_c01296{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m30_c01296{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01296{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m17_c01296{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);}
.m5b_c01296{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m41_c01296{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m13_c01296{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);}
.m4e_c01296{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);}
.m32_c01296{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m55_c01296{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m33_c01296{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m29_c01296{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m6_c01296{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);}
.m3b_c01296{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01296{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m38_c01296{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);}
.m24_c01296{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m46_c01296{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m18_c01296{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m56_c01296{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m52_c01296{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);}
.m8_c01296{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);}
.m3d_c01296{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m15_c01296{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m43_c01296{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);}
.m44_c01296{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m35_c01296{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01296{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);}
.m39_c01296{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m14_c01296{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01296{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m19_c01296{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01296{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m47_c01296{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);}
.m3e_c01296{transform:matrix(0.525000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525000,0.000000,0.000000,0.250000,0,0);}
.m10_c01296{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m11_c01296{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01296{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m7_c01296{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01296{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m23_c01296{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);}
.m4_c01296{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);}
.m1c_c01296{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);}
.m53_c01296{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m5c_c01296{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m51_c01296{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m12_c01296{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m37_c01296{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.md_c01296{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m42_c01296{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.v0_c01296{vertical-align:0.000000px;}
.ls0_c01296{letter-spacing:0.000000px;}
.sc__c01296{text-shadow:none;}
.sc0_c01296{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01296{-webkit-text-stroke:0px transparent;}
.sc0_c01296{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01296{word-spacing:-6.001932px;}
.ws1_c01296{word-spacing:0.000000px;}
.fc0_c01296{color:transparent;}
.fs4_c01296{font-size:34.560000px;}
.fs8_c01296{font-size:37.440000px;}
.fsd_c01296{font-size:40.320000px;}
.fsa_c01296{font-size:43.200000px;}
.fs3_c01296{font-size:46.080000px;}
.fs1_c01296{font-size:48.960000px;}
.fs2_c01296{font-size:51.840000px;}
.fs9_c01296{font-size:54.720000px;}
.fsb_c01296{font-size:57.600000px;}
.fs5_c01296{font-size:60.480000px;}
.fs6_c01296{font-size:63.360000px;}
.fsc_c01296{font-size:66.240000px;}
.fs7_c01296{font-size:69.120000px;}
.fs0_c01296{font-size:74.880000px;}
.y0_c01296{bottom:0.000000px;}
.y6d_c01296{bottom:48.960000px;}
.y6e_c01296{bottom:50.400000px;}
.y6c_c01296{bottom:51.840000px;}
.y6b_c01296{bottom:52.560000px;}
.y6f_c01296{bottom:53.280000px;}
.y6a_c01296{bottom:54.000000px;}
.y67_c01296{bottom:94.320000px;}
.y66_c01296{bottom:95.040000px;}
.y68_c01296{bottom:95.760000px;}
.y69_c01296{bottom:97.200000px;}
.y65_c01296{bottom:98.640000px;}
.y63_c01296{bottom:137.520000px;}
.y62_c01296{bottom:138.240000px;}
.y61_c01296{bottom:138.960000px;}
.y64_c01296{bottom:139.680000px;}
.y5c_c01296{bottom:178.560000px;}
.y5d_c01296{bottom:180.000000px;}
.y5b_c01296{bottom:180.720000px;}
.y5a_c01296{bottom:181.440000px;}
.y5e_c01296{bottom:182.160000px;}
.y5f_c01296{bottom:182.880000px;}
.y60_c01296{bottom:183.600000px;}
.y59_c01296{bottom:235.440000px;}
.y55_c01296{bottom:275.040000px;}
.y56_c01296{bottom:275.760000px;}
.y58_c01296{bottom:277.200000px;}
.y54_c01296{bottom:277.920000px;}
.y57_c01296{bottom:278.640000px;}
.y53_c01296{bottom:279.360000px;}
.y4f_c01296{bottom:318.960000px;}
.y51_c01296{bottom:320.400000px;}
.y4e_c01296{bottom:321.120000px;}
.y50_c01296{bottom:321.840000px;}
.y52_c01296{bottom:322.560000px;}
.y4c_c01296{bottom:372.960000px;}
.y4d_c01296{bottom:375.120000px;}
.y4b_c01296{bottom:375.840000px;}
.y48_c01296{bottom:415.440000px;}
.y4a_c01296{bottom:416.160000px;}
.y49_c01296{bottom:418.320000px;}
.y47_c01296{bottom:419.040000px;}
.y46_c01296{bottom:419.760000px;}
.y43_c01296{bottom:458.640000px;}
.y45_c01296{bottom:460.080000px;}
.y44_c01296{bottom:461.520000px;}
.y42_c01296{bottom:462.240000px;}
.y40_c01296{bottom:511.920000px;}
.y41_c01296{bottom:512.640000px;}
.y3e_c01296{bottom:513.360000px;}
.y3f_c01296{bottom:515.520000px;}
.y3d_c01296{bottom:516.240000px;}
.y3a_c01296{bottom:555.120000px;}
.y3b_c01296{bottom:555.840000px;}
.y38_c01296{bottom:556.560000px;}
.y37_c01296{bottom:558.000000px;}
.y3c_c01296{bottom:558.720000px;}
.y39_c01296{bottom:559.440000px;}
.y32_c01296{bottom:598.320000px;}
.y35_c01296{bottom:599.040000px;}
.y36_c01296{bottom:599.760000px;}
.y33_c01296{bottom:601.200000px;}
.y34_c01296{bottom:601.920000px;}
.y31_c01296{bottom:602.640000px;}
.y2f_c01296{bottom:642.240000px;}
.y2d_c01296{bottom:643.680000px;}
.y2e_c01296{bottom:644.400000px;}
.y30_c01296{bottom:645.120000px;}
.y29_c01296{bottom:684.000000px;}
.y2b_c01296{bottom:684.720000px;}
.y2a_c01296{bottom:686.880000px;}
.y2c_c01296{bottom:687.600000px;}
.y28_c01296{bottom:729.360000px;}
.y27_c01296{bottom:730.080000px;}
.y26_c01296{bottom:730.800000px;}
.y23_c01296{bottom:781.920000px;}
.y25_c01296{bottom:782.640000px;}
.y22_c01296{bottom:783.360000px;}
.y24_c01296{bottom:784.080000px;}
.y20_c01296{bottom:823.680000px;}
.y21_c01296{bottom:825.840000px;}
.y1e_c01296{bottom:826.560000px;}
.y1f_c01296{bottom:827.280000px;}
.y1d_c01296{bottom:866.160000px;}
.y1c_c01296{bottom:866.880000px;}
.y1a_c01296{bottom:867.600000px;}
.y17_c01296{bottom:868.320000px;}
.y1b_c01296{bottom:869.040000px;}
.y18_c01296{bottom:869.760000px;}
.y19_c01296{bottom:870.480000px;}
.y15_c01296{bottom:908.640000px;}
.y12_c01296{bottom:910.800000px;}
.y16_c01296{bottom:911.520000px;}
.y14_c01296{bottom:912.240000px;}
.y11_c01296{bottom:912.960000px;}
.y13_c01296{bottom:913.680000px;}
.yf_c01296{bottom:952.560000px;}
.ye_c01296{bottom:953.280000px;}
.yd_c01296{bottom:954.000000px;}
.yb_c01296{bottom:954.720000px;}
.y10_c01296{bottom:955.440000px;}
.yc_c01296{bottom:956.160000px;}
.y8_c01296{bottom:995.760000px;}
.y7_c01296{bottom:997.920000px;}
.ya_c01296{bottom:998.640000px;}
.y9_c01296{bottom:1000.080000px;}
.y4_c01296{bottom:1040.400000px;}
.y6_c01296{bottom:1041.120000px;}
.y2_c01296{bottom:1041.840000px;}
.y5_c01296{bottom:1042.560000px;}
.y3_c01296{bottom:1043.280000px;}
.y1_c01296{bottom:1078.560000px;}
.h6_c01296{height:31.100625px;}
.ha_c01296{height:33.692344px;}
.hf_c01296{height:36.284062px;}
.hc_c01296{height:38.875781px;}
.h5_c01296{height:41.467500px;}
.h3_c01296{height:44.059219px;}
.h4_c01296{height:46.650937px;}
.hb_c01296{height:49.242656px;}
.hd_c01296{height:51.834375px;}
.h7_c01296{height:54.426094px;}
.h8_c01296{height:57.017812px;}
.he_c01296{height:59.609531px;}
.h9_c01296{height:62.201250px;}
.h2_c01296{height:67.384687px;}
.h1_c01296{height:1149.000000px;}
.h0_c01296{height:1149.120000px;}
.w0_c01296{width:743.040000px;}
.w1_c01296{width:743.250000px;}
.x0_c01296{left:0.000000px;}
.x2_c01296{left:37.440000px;}
.x13_c01296{left:38.880000px;}
.x45_c01296{left:41.040000px;}
.x4b_c01296{left:42.480000px;}
.x1e_c01296{left:67.680000px;}
.x14_c01296{left:69.120000px;}
.x28_c01296{left:70.560000px;}
.x38_c01296{left:90.720000px;}
.x3f_c01296{left:92.160000px;}
.x3_c01296{left:102.240000px;}
.x1f_c01296{left:112.320000px;}
.x48_c01296{left:113.760000px;}
.x39_c01296{left:123.120000px;}
.x2d_c01296{left:124.560000px;}
.x15_c01296{left:144.720000px;}
.x51_c01296{left:156.240000px;}
.x40_c01296{left:165.600000px;}
.x49_c01296{left:167.760000px;}
.x2f_c01296{left:177.120000px;}
.x4_c01296{left:188.640000px;}
.x46_c01296{left:198.720000px;}
.x34_c01296{left:200.160000px;}
.x29_c01296{left:210.240000px;}
.xc_c01296{left:220.320000px;}
.x35_c01296{left:231.840000px;}
.x41_c01296{left:233.280000px;}
.x5_c01296{left:242.640000px;}
.x24_c01296{left:244.080000px;}
.x16_c01296{left:252.720000px;}
.x4a_c01296{left:254.160000px;}
.x2e_c01296{left:264.240000px;}
.x47_c01296{left:265.680000px;}
.x6_c01296{left:275.040000px;}
.x3a_c01296{left:285.120000px;}
.x20_c01296{left:286.560000px;}
.x30_c01296{left:295.920000px;}
.x17_c01296{left:308.160000px;}
.x36_c01296{left:317.520000px;}
.x54_c01296{left:328.320000px;}
.x42_c01296{left:330.480000px;}
.xd_c01296{left:339.840000px;}
.x21_c01296{left:349.920000px;}
.x4f_c01296{left:351.360000px;}
.x7_c01296{left:360.720000px;}
.x31_c01296{left:362.160000px;}
.xe_c01296{left:372.240000px;}
.x18_c01296{left:383.040000px;}
.x4c_c01296{left:384.480000px;}
.x22_c01296{left:393.120000px;}
.x55_c01296{left:394.560000px;}
.xf_c01296{left:403.920000px;}
.x19_c01296{left:415.440000px;}
.x4d_c01296{left:416.880000px;}
.x3b_c01296{left:426.960000px;}
.x32_c01296{left:436.320000px;}
.x2a_c01296{left:437.760000px;}
.x1a_c01296{left:447.840000px;}
.x8_c01296{left:458.640000px;}
.x10_c01296{left:469.440000px;}
.x52_c01296{left:479.520000px;}
.x9_c01296{left:491.040000px;}
.x11_c01296{left:501.120000px;}
.x23_c01296{left:502.560000px;}
.x50_c01296{left:511.200000px;}
.x1b_c01296{left:512.640000px;}
.x43_c01296{left:522.720000px;}
.x25_c01296{left:533.520000px;}
.xa_c01296{left:535.680000px;}
.x44_c01296{left:543.600000px;}
.x12_c01296{left:555.840000px;}
.x26_c01296{left:565.920000px;}
.x33_c01296{left:576.720000px;}
.x56_c01296{left:586.080000px;}
.x1c_c01296{left:587.520000px;}
.x37_c01296{left:596.880000px;}
.xb_c01296{left:598.320000px;}
.x2b_c01296{left:609.120000px;}
.x3e_c01296{left:611.280000px;}
.x53_c01296{left:618.480000px;}
.x3c_c01296{left:619.920000px;}
.x1d_c01296{left:621.360000px;}
.x27_c01296{left:630.720000px;}
.x1_c01296{left:635.040000px;}
.x4e_c01296{left:650.880000px;}
.x3d_c01296{left:652.320000px;}
.x2c_c01296{left:653.760000px;}
@media print{
.v0_c01296{vertical-align:0.000000pt;}
.ls0_c01296{letter-spacing:0.000000pt;}
.ws0_c01296{word-spacing:-5.335050pt;}
.ws1_c01296{word-spacing:0.000000pt;}
.fs4_c01296{font-size:30.720000pt;}
.fs8_c01296{font-size:33.280000pt;}
.fsd_c01296{font-size:35.840000pt;}
.fsa_c01296{font-size:38.400000pt;}
.fs3_c01296{font-size:40.960000pt;}
.fs1_c01296{font-size:43.520000pt;}
.fs2_c01296{font-size:46.080000pt;}
.fs9_c01296{font-size:48.640000pt;}
.fsb_c01296{font-size:51.200000pt;}
.fs5_c01296{font-size:53.760000pt;}
.fs6_c01296{font-size:56.320000pt;}
.fsc_c01296{font-size:58.880000pt;}
.fs7_c01296{font-size:61.440000pt;}
.fs0_c01296{font-size:66.560000pt;}
.y0_c01296{bottom:0.000000pt;}
.y6d_c01296{bottom:43.520000pt;}
.y6e_c01296{bottom:44.800000pt;}
.y6c_c01296{bottom:46.080000pt;}
.y6b_c01296{bottom:46.720000pt;}
.y6f_c01296{bottom:47.360000pt;}
.y6a_c01296{bottom:48.000000pt;}
.y67_c01296{bottom:83.840000pt;}
.y66_c01296{bottom:84.480000pt;}
.y68_c01296{bottom:85.120000pt;}
.y69_c01296{bottom:86.400000pt;}
.y65_c01296{bottom:87.680000pt;}
.y63_c01296{bottom:122.240000pt;}
.y62_c01296{bottom:122.880000pt;}
.y61_c01296{bottom:123.520000pt;}
.y64_c01296{bottom:124.160000pt;}
.y5c_c01296{bottom:158.720000pt;}
.y5d_c01296{bottom:160.000000pt;}
.y5b_c01296{bottom:160.640000pt;}
.y5a_c01296{bottom:161.280000pt;}
.y5e_c01296{bottom:161.920000pt;}
.y5f_c01296{bottom:162.560000pt;}
.y60_c01296{bottom:163.200000pt;}
.y59_c01296{bottom:209.280000pt;}
.y55_c01296{bottom:244.480000pt;}
.y56_c01296{bottom:245.120000pt;}
.y58_c01296{bottom:246.400000pt;}
.y54_c01296{bottom:247.040000pt;}
.y57_c01296{bottom:247.680000pt;}
.y53_c01296{bottom:248.320000pt;}
.y4f_c01296{bottom:283.520000pt;}
.y51_c01296{bottom:284.800000pt;}
.y4e_c01296{bottom:285.440000pt;}
.y50_c01296{bottom:286.080000pt;}
.y52_c01296{bottom:286.720000pt;}
.y4c_c01296{bottom:331.520000pt;}
.y4d_c01296{bottom:333.440000pt;}
.y4b_c01296{bottom:334.080000pt;}
.y48_c01296{bottom:369.280000pt;}
.y4a_c01296{bottom:369.920000pt;}
.y49_c01296{bottom:371.840000pt;}
.y47_c01296{bottom:372.480000pt;}
.y46_c01296{bottom:373.120000pt;}
.y43_c01296{bottom:407.680000pt;}
.y45_c01296{bottom:408.960000pt;}
.y44_c01296{bottom:410.240000pt;}
.y42_c01296{bottom:410.880000pt;}
.y40_c01296{bottom:455.040000pt;}
.y41_c01296{bottom:455.680000pt;}
.y3e_c01296{bottom:456.320000pt;}
.y3f_c01296{bottom:458.240000pt;}
.y3d_c01296{bottom:458.880000pt;}
.y3a_c01296{bottom:493.440000pt;}
.y3b_c01296{bottom:494.080000pt;}
.y38_c01296{bottom:494.720000pt;}
.y37_c01296{bottom:496.000000pt;}
.y3c_c01296{bottom:496.640000pt;}
.y39_c01296{bottom:497.280000pt;}
.y32_c01296{bottom:531.840000pt;}
.y35_c01296{bottom:532.480000pt;}
.y36_c01296{bottom:533.120000pt;}
.y33_c01296{bottom:534.400000pt;}
.y34_c01296{bottom:535.040000pt;}
.y31_c01296{bottom:535.680000pt;}
.y2f_c01296{bottom:570.880000pt;}
.y2d_c01296{bottom:572.160000pt;}
.y2e_c01296{bottom:572.800000pt;}
.y30_c01296{bottom:573.440000pt;}
.y29_c01296{bottom:608.000000pt;}
.y2b_c01296{bottom:608.640000pt;}
.y2a_c01296{bottom:610.560000pt;}
.y2c_c01296{bottom:611.200000pt;}
.y28_c01296{bottom:648.320000pt;}
.y27_c01296{bottom:648.960000pt;}
.y26_c01296{bottom:649.600000pt;}
.y23_c01296{bottom:695.040000pt;}
.y25_c01296{bottom:695.680000pt;}
.y22_c01296{bottom:696.320000pt;}
.y24_c01296{bottom:696.960000pt;}
.y20_c01296{bottom:732.160000pt;}
.y21_c01296{bottom:734.080000pt;}
.y1e_c01296{bottom:734.720000pt;}
.y1f_c01296{bottom:735.360000pt;}
.y1d_c01296{bottom:769.920000pt;}
.y1c_c01296{bottom:770.560000pt;}
.y1a_c01296{bottom:771.200000pt;}
.y17_c01296{bottom:771.840000pt;}
.y1b_c01296{bottom:772.480000pt;}
.y18_c01296{bottom:773.120000pt;}
.y19_c01296{bottom:773.760000pt;}
.y15_c01296{bottom:807.680000pt;}
.y12_c01296{bottom:809.600000pt;}
.y16_c01296{bottom:810.240000pt;}
.y14_c01296{bottom:810.880000pt;}
.y11_c01296{bottom:811.520000pt;}
.y13_c01296{bottom:812.160000pt;}
.yf_c01296{bottom:846.720000pt;}
.ye_c01296{bottom:847.360000pt;}
.yd_c01296{bottom:848.000000pt;}
.yb_c01296{bottom:848.640000pt;}
.y10_c01296{bottom:849.280000pt;}
.yc_c01296{bottom:849.920000pt;}
.y8_c01296{bottom:885.120000pt;}
.y7_c01296{bottom:887.040000pt;}
.ya_c01296{bottom:887.680000pt;}
.y9_c01296{bottom:888.960000pt;}
.y4_c01296{bottom:924.800000pt;}
.y6_c01296{bottom:925.440000pt;}
.y2_c01296{bottom:926.080000pt;}
.y5_c01296{bottom:926.720000pt;}
.y3_c01296{bottom:927.360000pt;}
.y1_c01296{bottom:958.720000pt;}
.h6_c01296{height:27.645000pt;}
.ha_c01296{height:29.948750pt;}
.hf_c01296{height:32.252500pt;}
.hc_c01296{height:34.556250pt;}
.h5_c01296{height:36.860000pt;}
.h3_c01296{height:39.163750pt;}
.h4_c01296{height:41.467500pt;}
.hb_c01296{height:43.771250pt;}
.hd_c01296{height:46.075000pt;}
.h7_c01296{height:48.378750pt;}
.h8_c01296{height:50.682500pt;}
.he_c01296{height:52.986250pt;}
.h9_c01296{height:55.290000pt;}
.h2_c01296{height:59.897500pt;}
.h1_c01296{height:1021.333333pt;}
.h0_c01296{height:1021.440000pt;}
.w0_c01296{width:660.480000pt;}
.w1_c01296{width:660.666667pt;}
.x0_c01296{left:0.000000pt;}
.x2_c01296{left:33.280000pt;}
.x13_c01296{left:34.560000pt;}
.x45_c01296{left:36.480000pt;}
.x4b_c01296{left:37.760000pt;}
.x1e_c01296{left:60.160000pt;}
.x14_c01296{left:61.440000pt;}
.x28_c01296{left:62.720000pt;}
.x38_c01296{left:80.640000pt;}
.x3f_c01296{left:81.920000pt;}
.x3_c01296{left:90.880000pt;}
.x1f_c01296{left:99.840000pt;}
.x48_c01296{left:101.120000pt;}
.x39_c01296{left:109.440000pt;}
.x2d_c01296{left:110.720000pt;}
.x15_c01296{left:128.640000pt;}
.x51_c01296{left:138.880000pt;}
.x40_c01296{left:147.200000pt;}
.x49_c01296{left:149.120000pt;}
.x2f_c01296{left:157.440000pt;}
.x4_c01296{left:167.680000pt;}
.x46_c01296{left:176.640000pt;}
.x34_c01296{left:177.920000pt;}
.x29_c01296{left:186.880000pt;}
.xc_c01296{left:195.840000pt;}
.x35_c01296{left:206.080000pt;}
.x41_c01296{left:207.360000pt;}
.x5_c01296{left:215.680000pt;}
.x24_c01296{left:216.960000pt;}
.x16_c01296{left:224.640000pt;}
.x4a_c01296{left:225.920000pt;}
.x2e_c01296{left:234.880000pt;}
.x47_c01296{left:236.160000pt;}
.x6_c01296{left:244.480000pt;}
.x3a_c01296{left:253.440000pt;}
.x20_c01296{left:254.720000pt;}
.x30_c01296{left:263.040000pt;}
.x17_c01296{left:273.920000pt;}
.x36_c01296{left:282.240000pt;}
.x54_c01296{left:291.840000pt;}
.x42_c01296{left:293.760000pt;}
.xd_c01296{left:302.080000pt;}
.x21_c01296{left:311.040000pt;}
.x4f_c01296{left:312.320000pt;}
.x7_c01296{left:320.640000pt;}
.x31_c01296{left:321.920000pt;}
.xe_c01296{left:330.880000pt;}
.x18_c01296{left:340.480000pt;}
.x4c_c01296{left:341.760000pt;}
.x22_c01296{left:349.440000pt;}
.x55_c01296{left:350.720000pt;}
.xf_c01296{left:359.040000pt;}
.x19_c01296{left:369.280000pt;}
.x4d_c01296{left:370.560000pt;}
.x3b_c01296{left:379.520000pt;}
.x32_c01296{left:387.840000pt;}
.x2a_c01296{left:389.120000pt;}
.x1a_c01296{left:398.080000pt;}
.x8_c01296{left:407.680000pt;}
.x10_c01296{left:417.280000pt;}
.x52_c01296{left:426.240000pt;}
.x9_c01296{left:436.480000pt;}
.x11_c01296{left:445.440000pt;}
.x23_c01296{left:446.720000pt;}
.x50_c01296{left:454.400000pt;}
.x1b_c01296{left:455.680000pt;}
.x43_c01296{left:464.640000pt;}
.x25_c01296{left:474.240000pt;}
.xa_c01296{left:476.160000pt;}
.x44_c01296{left:483.200000pt;}
.x12_c01296{left:494.080000pt;}
.x26_c01296{left:503.040000pt;}
.x33_c01296{left:512.640000pt;}
.x56_c01296{left:520.960000pt;}
.x1c_c01296{left:522.240000pt;}
.x37_c01296{left:530.560000pt;}
.xb_c01296{left:531.840000pt;}
.x2b_c01296{left:541.440000pt;}
.x3e_c01296{left:543.360000pt;}
.x53_c01296{left:549.760000pt;}
.x3c_c01296{left:551.040000pt;}
.x1d_c01296{left:552.320000pt;}
.x27_c01296{left:560.640000pt;}
.x1_c01296{left:564.480000pt;}
.x4e_c01296{left:578.560000pt;}
.x3d_c01296{left:579.840000pt;}
.x2c_c01296{left:581.120000pt;}
}





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

.ir_c01297:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01297{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01297;src:url('chunks/assets/font_927b736b85510a485d50407e.woff2')format("woff");}.ff1_c01297{font-family:ff1_c01297;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3b_c01297{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);}
.m52_c01297{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m32_c01297{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m55_c01297{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.me_c01297{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m3_c01297{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01297{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m20_c01297{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m31_c01297{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m51_c01297{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01297{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m59_c01297{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);}
.m47_c01297{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m50_c01297{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m22_c01297{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);}
.m46_c01297{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);}
.m4c_c01297{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);}
.m37_c01297{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);}
.m4b_c01297{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.mb_c01297{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m38_c01297{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m0_c01297{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m14_c01297{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m11_c01297{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m7_c01297{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);}
.m30_c01297{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);}
.m2e_c01297{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);}
.m2b_c01297{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m29_c01297{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);}
.m2c_c01297{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01297{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);}
.m3c_c01297{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);}
.m39_c01297{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01297{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m56_c01297{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.md_c01297{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);}
.m15_c01297{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m21_c01297{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);}
.m28_c01297{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m27_c01297{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);}
.m1f_c01297{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);}
.m1d_c01297{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m17_c01297{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m49_c01297{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01297{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m10_c01297{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);}
.ma_c01297{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m18_c01297{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m25_c01297{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);}
.m4d_c01297{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);}
.m4a_c01297{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m58_c01297{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.mf_c01297{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m43_c01297{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);}
.m40_c01297{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m13_c01297{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m33_c01297{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);}
.m6_c01297{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m5_c01297{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01297{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m35_c01297{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m1_c01297{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);}
.m41_c01297{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m4_c01297{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m5b_c01297{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01297{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);}
.m54_c01297{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m26_c01297{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01297{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);}
.m4e_c01297{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m12_c01297{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01297{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m57_c01297{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);}
.m24_c01297{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);}
.m2a_c01297{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01297{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m23_c01297{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m45_c01297{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m53_c01297{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m42_c01297{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01297{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m9_c01297{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);}
.m8_c01297{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m16_c01297{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m19_c01297{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m48_c01297{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.m5a_c01297{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m34_c01297{transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);}
.m2_c01297{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01297{transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);}
.m44_c01297{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m36_c01297{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.v0_c01297{vertical-align:0.000000px;}
.v1_c01297{vertical-align:2.880000px;}
.ls0_c01297{letter-spacing:0.000000px;}
.sc__c01297{text-shadow:none;}
.sc0_c01297{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01297{-webkit-text-stroke:0px transparent;}
.sc0_c01297{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01297{word-spacing:0.000000px;}
.ws0_c01297{word-spacing:0.291600px;}
.fc0_c01297{color:transparent;}
.fs8_c01297{font-size:31.680000px;}
.fs2_c01297{font-size:34.560000px;}
.fsa_c01297{font-size:37.440000px;}
.fse_c01297{font-size:40.320000px;}
.fs9_c01297{font-size:43.200000px;}
.fs1_c01297{font-size:46.080000px;}
.fs5_c01297{font-size:48.960000px;}
.fs4_c01297{font-size:51.840000px;}
.fsc_c01297{font-size:54.720000px;}
.fsb_c01297{font-size:57.600000px;}
.fs6_c01297{font-size:60.480000px;}
.fsd_c01297{font-size:63.360000px;}
.fs3_c01297{font-size:66.240000px;}
.fs7_c01297{font-size:69.120000px;}
.fsf_c01297{font-size:72.000000px;}
.fs0_c01297{font-size:74.880000px;}
.y0_c01297{bottom:0.000000px;}
.y6e_c01297{bottom:76.320000px;}
.y69_c01297{bottom:117.360000px;}
.y6d_c01297{bottom:119.520000px;}
.y6b_c01297{bottom:120.240000px;}
.y6a_c01297{bottom:120.960000px;}
.y68_c01297{bottom:121.680000px;}
.y6c_c01297{bottom:122.400000px;}
.y65_c01297{bottom:163.440000px;}
.y64_c01297{bottom:164.160000px;}
.y66_c01297{bottom:164.880000px;}
.y67_c01297{bottom:165.600000px;}
.y63_c01297{bottom:166.320000px;}
.y61_c01297{bottom:204.480000px;}
.y62_c01297{bottom:205.200000px;}
.y60_c01297{bottom:206.640000px;}
.y5f_c01297{bottom:207.360000px;}
.y5e_c01297{bottom:208.080000px;}
.y57_c01297{bottom:246.960000px;}
.y59_c01297{bottom:247.680000px;}
.y5c_c01297{bottom:249.120000px;}
.y5a_c01297{bottom:249.840000px;}
.y58_c01297{bottom:250.560000px;}
.y5b_c01297{bottom:251.280000px;}
.y5d_c01297{bottom:252.000000px;}
.y54_c01297{bottom:290.880000px;}
.y53_c01297{bottom:293.040000px;}
.y52_c01297{bottom:293.760000px;}
.y55_c01297{bottom:294.480000px;}
.y56_c01297{bottom:295.200000px;}
.y4d_c01297{bottom:333.360000px;}
.y4f_c01297{bottom:336.240000px;}
.y4e_c01297{bottom:336.960000px;}
.y50_c01297{bottom:337.680000px;}
.y51_c01297{bottom:338.400000px;}
.y4a_c01297{bottom:376.560000px;}
.y48_c01297{bottom:378.000000px;}
.y4b_c01297{bottom:378.720000px;}
.y4c_c01297{bottom:379.440000px;}
.y49_c01297{bottom:380.160000px;}
.y45_c01297{bottom:419.040000px;}
.y46_c01297{bottom:419.760000px;}
.y47_c01297{bottom:420.480000px;}
.y44_c01297{bottom:421.920000px;}
.y43_c01297{bottom:422.640000px;}
.y42_c01297{bottom:423.360000px;}
.y3e_c01297{bottom:462.240000px;}
.y3f_c01297{bottom:462.960000px;}
.y41_c01297{bottom:464.400000px;}
.y40_c01297{bottom:465.120000px;}
.y3b_c01297{bottom:505.440000px;}
.y3a_c01297{bottom:506.160000px;}
.y3c_c01297{bottom:507.600000px;}
.y3d_c01297{bottom:508.320000px;}
.y39_c01297{bottom:509.040000px;}
.y38_c01297{bottom:550.800000px;}
.y37_c01297{bottom:551.520000px;}
.y34_c01297{bottom:591.840000px;}
.y36_c01297{bottom:594.000000px;}
.y35_c01297{bottom:594.720000px;}
.y33_c01297{bottom:658.800000px;}
.y31_c01297{bottom:659.520000px;}
.y32_c01297{bottom:660.240000px;}
.y2f_c01297{bottom:698.400000px;}
.y2d_c01297{bottom:699.840000px;}
.y30_c01297{bottom:701.280000px;}
.y2c_c01297{bottom:702.000000px;}
.y2e_c01297{bottom:702.720000px;}
.y2b_c01297{bottom:740.880000px;}
.y27_c01297{bottom:742.320000px;}
.y29_c01297{bottom:743.040000px;}
.y26_c01297{bottom:744.480000px;}
.y2a_c01297{bottom:745.200000px;}
.y28_c01297{bottom:745.920000px;}
.y25_c01297{bottom:784.080000px;}
.y24_c01297{bottom:785.520000px;}
.y22_c01297{bottom:786.240000px;}
.y21_c01297{bottom:786.960000px;}
.y20_c01297{bottom:787.680000px;}
.y23_c01297{bottom:788.400000px;}
.y1f_c01297{bottom:828.000000px;}
.y1b_c01297{bottom:828.720000px;}
.y1c_c01297{bottom:829.440000px;}
.y1e_c01297{bottom:830.160000px;}
.y1a_c01297{bottom:830.880000px;}
.y1d_c01297{bottom:831.600000px;}
.y18_c01297{bottom:871.200000px;}
.y16_c01297{bottom:871.920000px;}
.y19_c01297{bottom:873.360000px;}
.y15_c01297{bottom:874.080000px;}
.y17_c01297{bottom:874.800000px;}
.y14_c01297{bottom:913.680000px;}
.y12_c01297{bottom:914.400000px;}
.y13_c01297{bottom:915.840000px;}
.y10_c01297{bottom:916.560000px;}
.y11_c01297{bottom:917.280000px;}
.yb_c01297{bottom:956.160000px;}
.yc_c01297{bottom:956.880000px;}
.yf_c01297{bottom:959.040000px;}
.yd_c01297{bottom:959.760000px;}
.ye_c01297{bottom:960.480000px;}
.y9_c01297{bottom:997.920000px;}
.y7_c01297{bottom:999.360000px;}
.y6_c01297{bottom:1000.080000px;}
.ya_c01297{bottom:1001.520000px;}
.y8_c01297{bottom:1002.240000px;}
.y2_c01297{bottom:1042.560000px;}
.y4_c01297{bottom:1043.280000px;}
.y5_c01297{bottom:1044.720000px;}
.y3_c01297{bottom:1045.440000px;}
.y1_c01297{bottom:1079.280000px;}
.ha_c01297{height:28.508906px;}
.h4_c01297{height:31.100625px;}
.hc_c01297{height:33.692344px;}
.h10_c01297{height:36.284062px;}
.hb_c01297{height:38.875781px;}
.h3_c01297{height:41.467500px;}
.h7_c01297{height:44.059219px;}
.h6_c01297{height:46.650937px;}
.h12_c01297{height:46.939219px;}
.he_c01297{height:49.242656px;}
.hd_c01297{height:51.834375px;}
.h8_c01297{height:54.426094px;}
.hf_c01297{height:57.017812px;}
.h5_c01297{height:59.609531px;}
.h9_c01297{height:62.201250px;}
.h11_c01297{height:64.792969px;}
.h2_c01297{height:67.384687px;}
.h0_c01297{height:1153.440000px;}
.h1_c01297{height:1153.500000px;}
.w1_c01297{width:748.500000px;}
.w0_c01297{width:748.800000px;}
.x0_c01297{left:0.000000px;}
.x2_c01297{left:36.000000px;}
.x29_c01297{left:37.440000px;}
.x43_c01297{left:38.880000px;}
.x47_c01297{left:40.320000px;}
.x14_c01297{left:66.960000px;}
.x2a_c01297{left:68.400000px;}
.x1e_c01297{left:77.760000px;}
.x3_c01297{left:88.560000px;}
.x2b_c01297{left:99.360000px;}
.x4_c01297{left:110.160000px;}
.x24_c01297{left:120.960000px;}
.x31_c01297{left:122.400000px;}
.x4b_c01297{left:131.760000px;}
.x15_c01297{left:142.560000px;}
.x3d_c01297{left:144.000000px;}
.x25_c01297{left:153.360000px;}
.x32_c01297{left:154.800000px;}
.x2c_c01297{left:164.880000px;}
.xd_c01297{left:175.680000px;}
.x48_c01297{left:185.760000px;}
.x49_c01297{left:196.560000px;}
.x33_c01297{left:198.000000px;}
.x1f_c01297{left:207.360000px;}
.x5_c01297{left:218.880000px;}
.x16_c01297{left:228.960000px;}
.x34_c01297{left:239.760000px;}
.x50_c01297{left:241.920000px;}
.x6_c01297{left:251.280000px;}
.x20_c01297{left:252.720000px;}
.x53_c01297{left:261.360000px;}
.x2d_c01297{left:262.800000px;}
.x3e_c01297{left:272.880000px;}
.x37_c01297{left:283.680000px;}
.x2e_c01297{left:294.480000px;}
.x21_c01297{left:304.560000px;}
.x3f_c01297{left:316.800000px;}
.x17_c01297{left:326.880000px;}
.x7_c01297{left:337.680000px;}
.xe_c01297{left:349.200000px;}
.x18_c01297{left:358.560000px;}
.x38_c01297{left:360.000000px;}
.x44_c01297{left:370.080000px;}
.x8_c01297{left:380.160000px;}
.xf_c01297{left:390.960000px;}
.x41_c01297{left:392.400000px;}
.x3c_c01297{left:402.480000px;}
.x26_c01297{left:413.280000px;}
.x10_c01297{left:424.080000px;}
.x19_c01297{left:434.160000px;}
.x2f_c01297{left:445.680000px;}
.x1a_c01297{left:457.200000px;}
.x22_c01297{left:466.560000px;}
.x35_c01297{left:477.360000px;}
.x1b_c01297{left:488.160000px;}
.x45_c01297{left:490.320000px;}
.x9_c01297{left:498.960000px;}
.x27_c01297{left:509.760000px;}
.x30_c01297{left:520.560000px;}
.x11_c01297{left:522.000000px;}
.x39_c01297{left:532.080000px;}
.x4e_c01297{left:540.720000px;}
.xa_c01297{left:542.160000px;}
.x23_c01297{left:553.680000px;}
.x40_c01297{left:562.320000px;}
.x4c_c01297{left:563.760000px;}
.x51_c01297{left:573.120000px;}
.xb_c01297{left:575.280000px;}
.x4a_c01297{left:583.200000px;}
.x3a_c01297{left:585.360000px;}
.x36_c01297{left:595.440000px;}
.x42_c01297{left:596.880000px;}
.x12_c01297{left:598.320000px;}
.x1c_c01297{left:607.680000px;}
.x3b_c01297{left:617.760000px;}
.x4f_c01297{left:627.840000px;}
.x13_c01297{left:629.280000px;}
.x1_c01297{left:632.880000px;}
.x46_c01297{left:638.640000px;}
.x28_c01297{left:640.080000px;}
.x52_c01297{left:649.440000px;}
.x1d_c01297{left:650.880000px;}
.xc_c01297{left:652.320000px;}
.x4d_c01297{left:660.240000px;}
@media print{
.v0_c01297{vertical-align:0.000000pt;}
.v1_c01297{vertical-align:2.560000pt;}
.ls0_c01297{letter-spacing:0.000000pt;}
.ws1_c01297{word-spacing:0.000000pt;}
.ws0_c01297{word-spacing:0.259200pt;}
.fs8_c01297{font-size:28.160000pt;}
.fs2_c01297{font-size:30.720000pt;}
.fsa_c01297{font-size:33.280000pt;}
.fse_c01297{font-size:35.840000pt;}
.fs9_c01297{font-size:38.400000pt;}
.fs1_c01297{font-size:40.960000pt;}
.fs5_c01297{font-size:43.520000pt;}
.fs4_c01297{font-size:46.080000pt;}
.fsc_c01297{font-size:48.640000pt;}
.fsb_c01297{font-size:51.200000pt;}
.fs6_c01297{font-size:53.760000pt;}
.fsd_c01297{font-size:56.320000pt;}
.fs3_c01297{font-size:58.880000pt;}
.fs7_c01297{font-size:61.440000pt;}
.fsf_c01297{font-size:64.000000pt;}
.fs0_c01297{font-size:66.560000pt;}
.y0_c01297{bottom:0.000000pt;}
.y6e_c01297{bottom:67.840000pt;}
.y69_c01297{bottom:104.320000pt;}
.y6d_c01297{bottom:106.240000pt;}
.y6b_c01297{bottom:106.880000pt;}
.y6a_c01297{bottom:107.520000pt;}
.y68_c01297{bottom:108.160000pt;}
.y6c_c01297{bottom:108.800000pt;}
.y65_c01297{bottom:145.280000pt;}
.y64_c01297{bottom:145.920000pt;}
.y66_c01297{bottom:146.560000pt;}
.y67_c01297{bottom:147.200000pt;}
.y63_c01297{bottom:147.840000pt;}
.y61_c01297{bottom:181.760000pt;}
.y62_c01297{bottom:182.400000pt;}
.y60_c01297{bottom:183.680000pt;}
.y5f_c01297{bottom:184.320000pt;}
.y5e_c01297{bottom:184.960000pt;}
.y57_c01297{bottom:219.520000pt;}
.y59_c01297{bottom:220.160000pt;}
.y5c_c01297{bottom:221.440000pt;}
.y5a_c01297{bottom:222.080000pt;}
.y58_c01297{bottom:222.720000pt;}
.y5b_c01297{bottom:223.360000pt;}
.y5d_c01297{bottom:224.000000pt;}
.y54_c01297{bottom:258.560000pt;}
.y53_c01297{bottom:260.480000pt;}
.y52_c01297{bottom:261.120000pt;}
.y55_c01297{bottom:261.760000pt;}
.y56_c01297{bottom:262.400000pt;}
.y4d_c01297{bottom:296.320000pt;}
.y4f_c01297{bottom:298.880000pt;}
.y4e_c01297{bottom:299.520000pt;}
.y50_c01297{bottom:300.160000pt;}
.y51_c01297{bottom:300.800000pt;}
.y4a_c01297{bottom:334.720000pt;}
.y48_c01297{bottom:336.000000pt;}
.y4b_c01297{bottom:336.640000pt;}
.y4c_c01297{bottom:337.280000pt;}
.y49_c01297{bottom:337.920000pt;}
.y45_c01297{bottom:372.480000pt;}
.y46_c01297{bottom:373.120000pt;}
.y47_c01297{bottom:373.760000pt;}
.y44_c01297{bottom:375.040000pt;}
.y43_c01297{bottom:375.680000pt;}
.y42_c01297{bottom:376.320000pt;}
.y3e_c01297{bottom:410.880000pt;}
.y3f_c01297{bottom:411.520000pt;}
.y41_c01297{bottom:412.800000pt;}
.y40_c01297{bottom:413.440000pt;}
.y3b_c01297{bottom:449.280000pt;}
.y3a_c01297{bottom:449.920000pt;}
.y3c_c01297{bottom:451.200000pt;}
.y3d_c01297{bottom:451.840000pt;}
.y39_c01297{bottom:452.480000pt;}
.y38_c01297{bottom:489.600000pt;}
.y37_c01297{bottom:490.240000pt;}
.y34_c01297{bottom:526.080000pt;}
.y36_c01297{bottom:528.000000pt;}
.y35_c01297{bottom:528.640000pt;}
.y33_c01297{bottom:585.600000pt;}
.y31_c01297{bottom:586.240000pt;}
.y32_c01297{bottom:586.880000pt;}
.y2f_c01297{bottom:620.800000pt;}
.y2d_c01297{bottom:622.080000pt;}
.y30_c01297{bottom:623.360000pt;}
.y2c_c01297{bottom:624.000000pt;}
.y2e_c01297{bottom:624.640000pt;}
.y2b_c01297{bottom:658.560000pt;}
.y27_c01297{bottom:659.840000pt;}
.y29_c01297{bottom:660.480000pt;}
.y26_c01297{bottom:661.760000pt;}
.y2a_c01297{bottom:662.400000pt;}
.y28_c01297{bottom:663.040000pt;}
.y25_c01297{bottom:696.960000pt;}
.y24_c01297{bottom:698.240000pt;}
.y22_c01297{bottom:698.880000pt;}
.y21_c01297{bottom:699.520000pt;}
.y20_c01297{bottom:700.160000pt;}
.y23_c01297{bottom:700.800000pt;}
.y1f_c01297{bottom:736.000000pt;}
.y1b_c01297{bottom:736.640000pt;}
.y1c_c01297{bottom:737.280000pt;}
.y1e_c01297{bottom:737.920000pt;}
.y1a_c01297{bottom:738.560000pt;}
.y1d_c01297{bottom:739.200000pt;}
.y18_c01297{bottom:774.400000pt;}
.y16_c01297{bottom:775.040000pt;}
.y19_c01297{bottom:776.320000pt;}
.y15_c01297{bottom:776.960000pt;}
.y17_c01297{bottom:777.600000pt;}
.y14_c01297{bottom:812.160000pt;}
.y12_c01297{bottom:812.800000pt;}
.y13_c01297{bottom:814.080000pt;}
.y10_c01297{bottom:814.720000pt;}
.y11_c01297{bottom:815.360000pt;}
.yb_c01297{bottom:849.920000pt;}
.yc_c01297{bottom:850.560000pt;}
.yf_c01297{bottom:852.480000pt;}
.yd_c01297{bottom:853.120000pt;}
.ye_c01297{bottom:853.760000pt;}
.y9_c01297{bottom:887.040000pt;}
.y7_c01297{bottom:888.320000pt;}
.y6_c01297{bottom:888.960000pt;}
.ya_c01297{bottom:890.240000pt;}
.y8_c01297{bottom:890.880000pt;}
.y2_c01297{bottom:926.720000pt;}
.y4_c01297{bottom:927.360000pt;}
.y5_c01297{bottom:928.640000pt;}
.y3_c01297{bottom:929.280000pt;}
.y1_c01297{bottom:959.360000pt;}
.ha_c01297{height:25.341250pt;}
.h4_c01297{height:27.645000pt;}
.hc_c01297{height:29.948750pt;}
.h10_c01297{height:32.252500pt;}
.hb_c01297{height:34.556250pt;}
.h3_c01297{height:36.860000pt;}
.h7_c01297{height:39.163750pt;}
.h6_c01297{height:41.467500pt;}
.h12_c01297{height:41.723750pt;}
.he_c01297{height:43.771250pt;}
.hd_c01297{height:46.075000pt;}
.h8_c01297{height:48.378750pt;}
.hf_c01297{height:50.682500pt;}
.h5_c01297{height:52.986250pt;}
.h9_c01297{height:55.290000pt;}
.h11_c01297{height:57.593750pt;}
.h2_c01297{height:59.897500pt;}
.h0_c01297{height:1025.280000pt;}
.h1_c01297{height:1025.333333pt;}
.w1_c01297{width:665.333333pt;}
.w0_c01297{width:665.600000pt;}
.x0_c01297{left:0.000000pt;}
.x2_c01297{left:32.000000pt;}
.x29_c01297{left:33.280000pt;}
.x43_c01297{left:34.560000pt;}
.x47_c01297{left:35.840000pt;}
.x14_c01297{left:59.520000pt;}
.x2a_c01297{left:60.800000pt;}
.x1e_c01297{left:69.120000pt;}
.x3_c01297{left:78.720000pt;}
.x2b_c01297{left:88.320000pt;}
.x4_c01297{left:97.920000pt;}
.x24_c01297{left:107.520000pt;}
.x31_c01297{left:108.800000pt;}
.x4b_c01297{left:117.120000pt;}
.x15_c01297{left:126.720000pt;}
.x3d_c01297{left:128.000000pt;}
.x25_c01297{left:136.320000pt;}
.x32_c01297{left:137.600000pt;}
.x2c_c01297{left:146.560000pt;}
.xd_c01297{left:156.160000pt;}
.x48_c01297{left:165.120000pt;}
.x49_c01297{left:174.720000pt;}
.x33_c01297{left:176.000000pt;}
.x1f_c01297{left:184.320000pt;}
.x5_c01297{left:194.560000pt;}
.x16_c01297{left:203.520000pt;}
.x34_c01297{left:213.120000pt;}
.x50_c01297{left:215.040000pt;}
.x6_c01297{left:223.360000pt;}
.x20_c01297{left:224.640000pt;}
.x53_c01297{left:232.320000pt;}
.x2d_c01297{left:233.600000pt;}
.x3e_c01297{left:242.560000pt;}
.x37_c01297{left:252.160000pt;}
.x2e_c01297{left:261.760000pt;}
.x21_c01297{left:270.720000pt;}
.x3f_c01297{left:281.600000pt;}
.x17_c01297{left:290.560000pt;}
.x7_c01297{left:300.160000pt;}
.xe_c01297{left:310.400000pt;}
.x18_c01297{left:318.720000pt;}
.x38_c01297{left:320.000000pt;}
.x44_c01297{left:328.960000pt;}
.x8_c01297{left:337.920000pt;}
.xf_c01297{left:347.520000pt;}
.x41_c01297{left:348.800000pt;}
.x3c_c01297{left:357.760000pt;}
.x26_c01297{left:367.360000pt;}
.x10_c01297{left:376.960000pt;}
.x19_c01297{left:385.920000pt;}
.x2f_c01297{left:396.160000pt;}
.x1a_c01297{left:406.400000pt;}
.x22_c01297{left:414.720000pt;}
.x35_c01297{left:424.320000pt;}
.x1b_c01297{left:433.920000pt;}
.x45_c01297{left:435.840000pt;}
.x9_c01297{left:443.520000pt;}
.x27_c01297{left:453.120000pt;}
.x30_c01297{left:462.720000pt;}
.x11_c01297{left:464.000000pt;}
.x39_c01297{left:472.960000pt;}
.x4e_c01297{left:480.640000pt;}
.xa_c01297{left:481.920000pt;}
.x23_c01297{left:492.160000pt;}
.x40_c01297{left:499.840000pt;}
.x4c_c01297{left:501.120000pt;}
.x51_c01297{left:509.440000pt;}
.xb_c01297{left:511.360000pt;}
.x4a_c01297{left:518.400000pt;}
.x3a_c01297{left:520.320000pt;}
.x36_c01297{left:529.280000pt;}
.x42_c01297{left:530.560000pt;}
.x12_c01297{left:531.840000pt;}
.x1c_c01297{left:540.160000pt;}
.x3b_c01297{left:549.120000pt;}
.x4f_c01297{left:558.080000pt;}
.x13_c01297{left:559.360000pt;}
.x1_c01297{left:562.560000pt;}
.x46_c01297{left:567.680000pt;}
.x28_c01297{left:568.960000pt;}
.x52_c01297{left:577.280000pt;}
.x1d_c01297{left:578.560000pt;}
.xc_c01297{left:579.840000pt;}
.x4d_c01297{left:586.880000pt;}
}





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

.ir_c01298:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01298{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01298;src:url('chunks/assets/font_39211cd347a4c4b5f27a5876.woff2')format("woff");}.ff1_c01298{font-family:ff1_c01298;line-height:1.109863;font-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_c01298{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);}
.m50_c01298{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);}
.m5a_c01298{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.me_c01298{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);}
.m54_c01298{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01298{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m28_c01298{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m37_c01298{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m40_c01298{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m5d_c01298{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01298{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m5f_c01298{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m39_c01298{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01298{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m27_c01298{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m52_c01298{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_c01298{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01298{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01298{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);}
.m2c_c01298{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m34_c01298{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m11_c01298{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01298{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);}
.m56_c01298{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m7_c01298{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m0_c01298{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);}
.m2f_c01298{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m2_c01298{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01298{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.md_c01298{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m18_c01298{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m1_c01298{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);}
.m32_c01298{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m6_c01298{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.ma_c01298{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m51_c01298{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01298{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);}
.m23_c01298{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m42_c01298{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);}
.m4e_c01298{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m41_c01298{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);}
.m43_c01298{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);}
.m2b_c01298{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m57_c01298{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m13_c01298{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m45_c01298{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);}
.m19_c01298{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m24_c01298{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m14_c01298{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);}
.m47_c01298{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m15_c01298{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);}
.m2a_c01298{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m29_c01298{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m35_c01298{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m4d_c01298{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.mb_c01298{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);}
.m59_c01298{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01298{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);}
.m3b_c01298{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m46_c01298{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01298{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m49_c01298{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m33_c01298{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m17_c01298{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);}
.m22_c01298{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m9_c01298{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m10_c01298{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);}
.m53_c01298{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01298{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01298{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m31_c01298{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m16_c01298{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_c01298{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01298{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m38_c01298{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m21_c01298{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m5b_c01298{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);}
.m5_c01298{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01298{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);}
.m3_c01298{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01298{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m36_c01298{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01298{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m26_c01298{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m58_c01298{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);}
.m44_c01298{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);}
.m4_c01298{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m55_c01298{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m5e_c01298{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);}
.m20_c01298{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m5c_c01298{transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);}
.mc_c01298{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01298{transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);}
.m25_c01298{transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);}
.m30_c01298{transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);}
.m48_c01298{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.v1_c01298{vertical-align:-2.880000px;}
.v0_c01298{vertical-align:0.000000px;}
.ls0_c01298{letter-spacing:0.000000px;}
.sc__c01298{text-shadow:none;}
.sc0_c01298{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01298{-webkit-text-stroke:0px transparent;}
.sc0_c01298{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01298{word-spacing:0.000000px;}
.ws0_c01298{word-spacing:6.791280px;}
.fc0_c01298{color:transparent;}
.fsb_c01298{font-size:5.760000px;}
.fsf_c01298{font-size:31.680000px;}
.fs4_c01298{font-size:34.560000px;}
.fs8_c01298{font-size:37.440000px;}
.fsd_c01298{font-size:40.320000px;}
.fsa_c01298{font-size:43.200000px;}
.fs1_c01298{font-size:46.080000px;}
.fs5_c01298{font-size:48.960000px;}
.fs3_c01298{font-size:51.840000px;}
.fs9_c01298{font-size:54.720000px;}
.fs6_c01298{font-size:57.600000px;}
.fs2_c01298{font-size:60.480000px;}
.fs7_c01298{font-size:63.360000px;}
.fse_c01298{font-size:66.240000px;}
.fsc_c01298{font-size:69.120000px;}
.fs0_c01298{font-size:72.000000px;}
.fs10_c01298{font-size:77.760000px;}
.y0_c01298{bottom:0.000000px;}
.y68_c01298{bottom:71.280000px;}
.y69_c01298{bottom:72.000000px;}
.y6b_c01298{bottom:72.720000px;}
.y6c_c01298{bottom:73.440000px;}
.y6a_c01298{bottom:74.880000px;}
.y6d_c01298{bottom:77.040000px;}
.y65_c01298{bottom:117.360000px;}
.y66_c01298{bottom:118.080000px;}
.y64_c01298{bottom:118.800000px;}
.y67_c01298{bottom:120.240000px;}
.y60_c01298{bottom:157.680000px;}
.y5f_c01298{bottom:158.400000px;}
.y62_c01298{bottom:159.840000px;}
.y5e_c01298{bottom:161.280000px;}
.y61_c01298{bottom:162.000000px;}
.y5d_c01298{bottom:162.720000px;}
.y63_c01298{bottom:163.440000px;}
.y5c_c01298{bottom:164.160000px;}
.y59_c01298{bottom:200.880000px;}
.y5a_c01298{bottom:201.600000px;}
.y58_c01298{bottom:203.760000px;}
.y57_c01298{bottom:204.480000px;}
.y5b_c01298{bottom:205.200000px;}
.y56_c01298{bottom:206.640000px;}
.y54_c01298{bottom:244.080000px;}
.y53_c01298{bottom:244.800000px;}
.y55_c01298{bottom:246.960000px;}
.y51_c01298{bottom:247.680000px;}
.y52_c01298{bottom:248.400000px;}
.y4f_c01298{bottom:288.000000px;}
.y4d_c01298{bottom:290.160000px;}
.y4e_c01298{bottom:290.880000px;}
.y50_c01298{bottom:291.600000px;}
.y48_c01298{bottom:330.480000px;}
.y47_c01298{bottom:331.200000px;}
.y4b_c01298{bottom:332.640000px;}
.y4a_c01298{bottom:333.360000px;}
.y46_c01298{bottom:334.080000px;}
.y49_c01298{bottom:334.800000px;}
.y4c_c01298{bottom:335.520000px;}
.y45_c01298{bottom:386.640000px;}
.y42_c01298{bottom:427.680000px;}
.y41_c01298{bottom:428.400000px;}
.y44_c01298{bottom:429.120000px;}
.y40_c01298{bottom:430.560000px;}
.y43_c01298{bottom:431.280000px;}
.y3f_c01298{bottom:432.000000px;}
.y3c_c01298{bottom:470.880000px;}
.y3d_c01298{bottom:473.760000px;}
.y3b_c01298{bottom:474.480000px;}
.y3e_c01298{bottom:475.200000px;}
.y3a_c01298{bottom:513.360000px;}
.y39_c01298{bottom:514.080000px;}
.y35_c01298{bottom:514.800000px;}
.y38_c01298{bottom:516.240000px;}
.y37_c01298{bottom:516.960000px;}
.y36_c01298{bottom:517.680000px;}
.y34_c01298{bottom:557.280000px;}
.y33_c01298{bottom:558.000000px;}
.y32_c01298{bottom:560.160000px;}
.y31_c01298{bottom:560.880000px;}
.y30_c01298{bottom:599.760000px;}
.y2d_c01298{bottom:600.480000px;}
.y2e_c01298{bottom:602.640000px;}
.y2f_c01298{bottom:603.360000px;}
.y2c_c01298{bottom:642.240000px;}
.y29_c01298{bottom:642.960000px;}
.y2a_c01298{bottom:645.840000px;}
.y2b_c01298{bottom:646.560000px;}
.y28_c01298{bottom:685.440000px;}
.y27_c01298{bottom:686.160000px;}
.y25_c01298{bottom:688.320000px;}
.y26_c01298{bottom:689.040000px;}
.y24_c01298{bottom:741.600000px;}
.y23_c01298{bottom:742.320000px;}
.y22_c01298{bottom:781.920000px;}
.y21_c01298{bottom:782.640000px;}
.y1f_c01298{bottom:784.800000px;}
.y20_c01298{bottom:785.520000px;}
.y1e_c01298{bottom:825.120000px;}
.y1d_c01298{bottom:825.840000px;}
.y1a_c01298{bottom:827.280000px;}
.y1b_c01298{bottom:828.000000px;}
.y1c_c01298{bottom:828.720000px;}
.y19_c01298{bottom:867.600000px;}
.y16_c01298{bottom:870.480000px;}
.y17_c01298{bottom:871.200000px;}
.y18_c01298{bottom:871.920000px;}
.y15_c01298{bottom:910.800000px;}
.y12_c01298{bottom:911.520000px;}
.y14_c01298{bottom:912.240000px;}
.y11_c01298{bottom:913.680000px;}
.y13_c01298{bottom:914.400000px;}
.y10_c01298{bottom:954.720000px;}
.yd_c01298{bottom:956.160000px;}
.yf_c01298{bottom:956.880000px;}
.ye_c01298{bottom:957.600000px;}
.yc_c01298{bottom:996.480000px;}
.y8_c01298{bottom:997.200000px;}
.ya_c01298{bottom:997.920000px;}
.y7_c01298{bottom:999.360000px;}
.yb_c01298{bottom:1000.080000px;}
.y9_c01298{bottom:1000.800000px;}
.y5_c01298{bottom:1039.680000px;}
.y6_c01298{bottom:1040.400000px;}
.y3_c01298{bottom:1041.120000px;}
.y4_c01298{bottom:1043.280000px;}
.y2_c01298{bottom:1044.720000px;}
.y1_c01298{bottom:1092.240000px;}
.hd_c01298{height:5.183438px;}
.h11_c01298{height:28.508906px;}
.h6_c01298{height:31.100625px;}
.ha_c01298{height:33.692344px;}
.hf_c01298{height:36.284062px;}
.hc_c01298{height:38.875781px;}
.h3_c01298{height:41.467500px;}
.h7_c01298{height:44.059219px;}
.h5_c01298{height:46.650937px;}
.hb_c01298{height:49.242656px;}
.h8_c01298{height:51.834375px;}
.h4_c01298{height:54.426094px;}
.h9_c01298{height:57.017812px;}
.h10_c01298{height:59.609531px;}
.he_c01298{height:62.201250px;}
.h2_c01298{height:64.792969px;}
.h12_c01298{height:69.976406px;}
.h0_c01298{height:1153.440000px;}
.h1_c01298{height:1153.500000px;}
.w1_c01298{width:749.250000px;}
.w0_c01298{width:749.520000px;}
.x0_c01298{left:0.000000px;}
.x16_c01298{left:36.720000px;}
.xa_c01298{left:38.160000px;}
.x2d_c01298{left:39.600000px;}
.x43_c01298{left:41.040000px;}
.x51_c01298{left:43.200000px;}
.xb_c01298{left:69.120000px;}
.x3e_c01298{left:70.560000px;}
.x52_c01298{left:72.000000px;}
.x17_c01298{left:79.920000px;}
.x4e_c01298{left:81.360000px;}
.x3f_c01298{left:90.720000px;}
.x40_c01298{left:92.160000px;}
.x53_c01298{left:101.520000px;}
.x1c_c01298{left:112.320000px;}
.x22_c01298{left:123.840000px;}
.x39_c01298{left:134.640000px;}
.x2_c01298{left:144.720000px;}
.x4d_c01298{left:146.160000px;}
.x2a_c01298{left:155.520000px;}
.x44_c01298{left:156.960000px;}
.x3a_c01298{left:166.320000px;}
.x31_c01298{left:167.760000px;}
.x35_c01298{left:177.840000px;}
.x3_c01298{left:187.920000px;}
.x1d_c01298{left:190.080000px;}
.x2e_c01298{left:198.720000px;}
.xc_c01298{left:200.160000px;}
.x23_c01298{left:210.960000px;}
.xd_c01298{left:218.880000px;}
.x56_c01298{left:220.320000px;}
.x54_c01298{left:222.480000px;}
.x2b_c01298{left:232.560000px;}
.x4f_c01298{left:243.360000px;}
.x41_c01298{left:244.800000px;}
.x1e_c01298{left:252.720000px;}
.x45_c01298{left:254.160000px;}
.x32_c01298{left:264.960000px;}
.x4_c01298{left:275.040000px;}
.xe_c01298{left:285.840000px;}
.x49_c01298{left:288.000000px;}
.x18_c01298{left:297.360000px;}
.x24_c01298{left:307.440000px;}
.xf_c01298{left:318.960000px;}
.x36_c01298{left:329.760000px;}
.x4a_c01298{left:331.920000px;}
.x55_c01298{left:340.560000px;}
.x10_c01298{left:349.920000px;}
.x42_c01298{left:352.080000px;}
.x3b_c01298{left:361.440000px;}
.x50_c01298{left:362.880000px;}
.x46_c01298{left:372.240000px;}
.x1f_c01298{left:383.760000px;}
.x5_c01298{left:393.120000px;}
.x33_c01298{left:394.560000px;}
.x11_c01298{left:403.920000px;}
.x25_c01298{left:406.080000px;}
.x2f_c01298{left:416.160000px;}
.x12_c01298{left:426.960000px;}
.x6_c01298{left:437.040000px;}
.x26_c01298{left:446.400000px;}
.x47_c01298{left:448.560000px;}
.x27_c01298{left:458.640000px;}
.x57_c01298{left:460.080000px;}
.x7_c01298{left:469.440000px;}
.x2c_c01298{left:470.880000px;}
.x13_c01298{left:479.520000px;}
.x3c_c01298{left:491.040000px;}
.x4b_c01298{left:501.120000px;}
.x8_c01298{left:511.920000px;}
.x20_c01298{left:523.440000px;}
.x14_c01298{left:533.520000px;}
.x19_c01298{left:545.760000px;}
.x21_c01298{left:555.840000px;}
.x28_c01298{left:565.920000px;}
.x15_c01298{left:577.440000px;}
.x48_c01298{left:578.880000px;}
.x3d_c01298{left:587.520000px;}
.x37_c01298{left:598.320000px;}
.x34_c01298{left:599.760000px;}
.x30_c01298{left:609.120000px;}
.x1a_c01298{left:610.560000px;}
.x9_c01298{left:622.080000px;}
.x38_c01298{left:630.720000px;}
.x29_c01298{left:641.520000px;}
.x1b_c01298{left:642.960000px;}
.x4c_c01298{left:652.320000px;}
.x1_c01298{left:666.720000px;}
@media print{
.v1_c01298{vertical-align:-2.560000pt;}
.v0_c01298{vertical-align:0.000000pt;}
.ls0_c01298{letter-spacing:0.000000pt;}
.ws1_c01298{word-spacing:0.000000pt;}
.ws0_c01298{word-spacing:6.036693pt;}
.fsb_c01298{font-size:5.120000pt;}
.fsf_c01298{font-size:28.160000pt;}
.fs4_c01298{font-size:30.720000pt;}
.fs8_c01298{font-size:33.280000pt;}
.fsd_c01298{font-size:35.840000pt;}
.fsa_c01298{font-size:38.400000pt;}
.fs1_c01298{font-size:40.960000pt;}
.fs5_c01298{font-size:43.520000pt;}
.fs3_c01298{font-size:46.080000pt;}
.fs9_c01298{font-size:48.640000pt;}
.fs6_c01298{font-size:51.200000pt;}
.fs2_c01298{font-size:53.760000pt;}
.fs7_c01298{font-size:56.320000pt;}
.fse_c01298{font-size:58.880000pt;}
.fsc_c01298{font-size:61.440000pt;}
.fs0_c01298{font-size:64.000000pt;}
.fs10_c01298{font-size:69.120000pt;}
.y0_c01298{bottom:0.000000pt;}
.y68_c01298{bottom:63.360000pt;}
.y69_c01298{bottom:64.000000pt;}
.y6b_c01298{bottom:64.640000pt;}
.y6c_c01298{bottom:65.280000pt;}
.y6a_c01298{bottom:66.560000pt;}
.y6d_c01298{bottom:68.480000pt;}
.y65_c01298{bottom:104.320000pt;}
.y66_c01298{bottom:104.960000pt;}
.y64_c01298{bottom:105.600000pt;}
.y67_c01298{bottom:106.880000pt;}
.y60_c01298{bottom:140.160000pt;}
.y5f_c01298{bottom:140.800000pt;}
.y62_c01298{bottom:142.080000pt;}
.y5e_c01298{bottom:143.360000pt;}
.y61_c01298{bottom:144.000000pt;}
.y5d_c01298{bottom:144.640000pt;}
.y63_c01298{bottom:145.280000pt;}
.y5c_c01298{bottom:145.920000pt;}
.y59_c01298{bottom:178.560000pt;}
.y5a_c01298{bottom:179.200000pt;}
.y58_c01298{bottom:181.120000pt;}
.y57_c01298{bottom:181.760000pt;}
.y5b_c01298{bottom:182.400000pt;}
.y56_c01298{bottom:183.680000pt;}
.y54_c01298{bottom:216.960000pt;}
.y53_c01298{bottom:217.600000pt;}
.y55_c01298{bottom:219.520000pt;}
.y51_c01298{bottom:220.160000pt;}
.y52_c01298{bottom:220.800000pt;}
.y4f_c01298{bottom:256.000000pt;}
.y4d_c01298{bottom:257.920000pt;}
.y4e_c01298{bottom:258.560000pt;}
.y50_c01298{bottom:259.200000pt;}
.y48_c01298{bottom:293.760000pt;}
.y47_c01298{bottom:294.400000pt;}
.y4b_c01298{bottom:295.680000pt;}
.y4a_c01298{bottom:296.320000pt;}
.y46_c01298{bottom:296.960000pt;}
.y49_c01298{bottom:297.600000pt;}
.y4c_c01298{bottom:298.240000pt;}
.y45_c01298{bottom:343.680000pt;}
.y42_c01298{bottom:380.160000pt;}
.y41_c01298{bottom:380.800000pt;}
.y44_c01298{bottom:381.440000pt;}
.y40_c01298{bottom:382.720000pt;}
.y43_c01298{bottom:383.360000pt;}
.y3f_c01298{bottom:384.000000pt;}
.y3c_c01298{bottom:418.560000pt;}
.y3d_c01298{bottom:421.120000pt;}
.y3b_c01298{bottom:421.760000pt;}
.y3e_c01298{bottom:422.400000pt;}
.y3a_c01298{bottom:456.320000pt;}
.y39_c01298{bottom:456.960000pt;}
.y35_c01298{bottom:457.600000pt;}
.y38_c01298{bottom:458.880000pt;}
.y37_c01298{bottom:459.520000pt;}
.y36_c01298{bottom:460.160000pt;}
.y34_c01298{bottom:495.360000pt;}
.y33_c01298{bottom:496.000000pt;}
.y32_c01298{bottom:497.920000pt;}
.y31_c01298{bottom:498.560000pt;}
.y30_c01298{bottom:533.120000pt;}
.y2d_c01298{bottom:533.760000pt;}
.y2e_c01298{bottom:535.680000pt;}
.y2f_c01298{bottom:536.320000pt;}
.y2c_c01298{bottom:570.880000pt;}
.y29_c01298{bottom:571.520000pt;}
.y2a_c01298{bottom:574.080000pt;}
.y2b_c01298{bottom:574.720000pt;}
.y28_c01298{bottom:609.280000pt;}
.y27_c01298{bottom:609.920000pt;}
.y25_c01298{bottom:611.840000pt;}
.y26_c01298{bottom:612.480000pt;}
.y24_c01298{bottom:659.200000pt;}
.y23_c01298{bottom:659.840000pt;}
.y22_c01298{bottom:695.040000pt;}
.y21_c01298{bottom:695.680000pt;}
.y1f_c01298{bottom:697.600000pt;}
.y20_c01298{bottom:698.240000pt;}
.y1e_c01298{bottom:733.440000pt;}
.y1d_c01298{bottom:734.080000pt;}
.y1a_c01298{bottom:735.360000pt;}
.y1b_c01298{bottom:736.000000pt;}
.y1c_c01298{bottom:736.640000pt;}
.y19_c01298{bottom:771.200000pt;}
.y16_c01298{bottom:773.760000pt;}
.y17_c01298{bottom:774.400000pt;}
.y18_c01298{bottom:775.040000pt;}
.y15_c01298{bottom:809.600000pt;}
.y12_c01298{bottom:810.240000pt;}
.y14_c01298{bottom:810.880000pt;}
.y11_c01298{bottom:812.160000pt;}
.y13_c01298{bottom:812.800000pt;}
.y10_c01298{bottom:848.640000pt;}
.yd_c01298{bottom:849.920000pt;}
.yf_c01298{bottom:850.560000pt;}
.ye_c01298{bottom:851.200000pt;}
.yc_c01298{bottom:885.760000pt;}
.y8_c01298{bottom:886.400000pt;}
.ya_c01298{bottom:887.040000pt;}
.y7_c01298{bottom:888.320000pt;}
.yb_c01298{bottom:888.960000pt;}
.y9_c01298{bottom:889.600000pt;}
.y5_c01298{bottom:924.160000pt;}
.y6_c01298{bottom:924.800000pt;}
.y3_c01298{bottom:925.440000pt;}
.y4_c01298{bottom:927.360000pt;}
.y2_c01298{bottom:928.640000pt;}
.y1_c01298{bottom:970.880000pt;}
.hd_c01298{height:4.607500pt;}
.h11_c01298{height:25.341250pt;}
.h6_c01298{height:27.645000pt;}
.ha_c01298{height:29.948750pt;}
.hf_c01298{height:32.252500pt;}
.hc_c01298{height:34.556250pt;}
.h3_c01298{height:36.860000pt;}
.h7_c01298{height:39.163750pt;}
.h5_c01298{height:41.467500pt;}
.hb_c01298{height:43.771250pt;}
.h8_c01298{height:46.075000pt;}
.h4_c01298{height:48.378750pt;}
.h9_c01298{height:50.682500pt;}
.h10_c01298{height:52.986250pt;}
.he_c01298{height:55.290000pt;}
.h2_c01298{height:57.593750pt;}
.h12_c01298{height:62.201250pt;}
.h0_c01298{height:1025.280000pt;}
.h1_c01298{height:1025.333333pt;}
.w1_c01298{width:666.000000pt;}
.w0_c01298{width:666.240000pt;}
.x0_c01298{left:0.000000pt;}
.x16_c01298{left:32.640000pt;}
.xa_c01298{left:33.920000pt;}
.x2d_c01298{left:35.200000pt;}
.x43_c01298{left:36.480000pt;}
.x51_c01298{left:38.400000pt;}
.xb_c01298{left:61.440000pt;}
.x3e_c01298{left:62.720000pt;}
.x52_c01298{left:64.000000pt;}
.x17_c01298{left:71.040000pt;}
.x4e_c01298{left:72.320000pt;}
.x3f_c01298{left:80.640000pt;}
.x40_c01298{left:81.920000pt;}
.x53_c01298{left:90.240000pt;}
.x1c_c01298{left:99.840000pt;}
.x22_c01298{left:110.080000pt;}
.x39_c01298{left:119.680000pt;}
.x2_c01298{left:128.640000pt;}
.x4d_c01298{left:129.920000pt;}
.x2a_c01298{left:138.240000pt;}
.x44_c01298{left:139.520000pt;}
.x3a_c01298{left:147.840000pt;}
.x31_c01298{left:149.120000pt;}
.x35_c01298{left:158.080000pt;}
.x3_c01298{left:167.040000pt;}
.x1d_c01298{left:168.960000pt;}
.x2e_c01298{left:176.640000pt;}
.xc_c01298{left:177.920000pt;}
.x23_c01298{left:187.520000pt;}
.xd_c01298{left:194.560000pt;}
.x56_c01298{left:195.840000pt;}
.x54_c01298{left:197.760000pt;}
.x2b_c01298{left:206.720000pt;}
.x4f_c01298{left:216.320000pt;}
.x41_c01298{left:217.600000pt;}
.x1e_c01298{left:224.640000pt;}
.x45_c01298{left:225.920000pt;}
.x32_c01298{left:235.520000pt;}
.x4_c01298{left:244.480000pt;}
.xe_c01298{left:254.080000pt;}
.x49_c01298{left:256.000000pt;}
.x18_c01298{left:264.320000pt;}
.x24_c01298{left:273.280000pt;}
.xf_c01298{left:283.520000pt;}
.x36_c01298{left:293.120000pt;}
.x4a_c01298{left:295.040000pt;}
.x55_c01298{left:302.720000pt;}
.x10_c01298{left:311.040000pt;}
.x42_c01298{left:312.960000pt;}
.x3b_c01298{left:321.280000pt;}
.x50_c01298{left:322.560000pt;}
.x46_c01298{left:330.880000pt;}
.x1f_c01298{left:341.120000pt;}
.x5_c01298{left:349.440000pt;}
.x33_c01298{left:350.720000pt;}
.x11_c01298{left:359.040000pt;}
.x25_c01298{left:360.960000pt;}
.x2f_c01298{left:369.920000pt;}
.x12_c01298{left:379.520000pt;}
.x6_c01298{left:388.480000pt;}
.x26_c01298{left:396.800000pt;}
.x47_c01298{left:398.720000pt;}
.x27_c01298{left:407.680000pt;}
.x57_c01298{left:408.960000pt;}
.x7_c01298{left:417.280000pt;}
.x2c_c01298{left:418.560000pt;}
.x13_c01298{left:426.240000pt;}
.x3c_c01298{left:436.480000pt;}
.x4b_c01298{left:445.440000pt;}
.x8_c01298{left:455.040000pt;}
.x20_c01298{left:465.280000pt;}
.x14_c01298{left:474.240000pt;}
.x19_c01298{left:485.120000pt;}
.x21_c01298{left:494.080000pt;}
.x28_c01298{left:503.040000pt;}
.x15_c01298{left:513.280000pt;}
.x48_c01298{left:514.560000pt;}
.x3d_c01298{left:522.240000pt;}
.x37_c01298{left:531.840000pt;}
.x34_c01298{left:533.120000pt;}
.x30_c01298{left:541.440000pt;}
.x1a_c01298{left:542.720000pt;}
.x9_c01298{left:552.960000pt;}
.x38_c01298{left:560.640000pt;}
.x29_c01298{left:570.240000pt;}
.x1b_c01298{left:571.520000pt;}
.x4c_c01298{left:579.840000pt;}
.x1_c01298{left:592.640000pt;}
}





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

.ir_c01299:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01299{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01299;src:url('chunks/assets/font_5eebe79f524dd4a5a951a579.woff2')format("woff");}.ff1_c01299{font-family:ff1_c01299;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4e_c01299{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);}
.m58_c01299{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m18_c01299{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);}
.m5d_c01299{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m4_c01299{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);}
.m4a_c01299{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m24_c01299{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01299{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m52_c01299{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m20_c01299{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m6_c01299{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.ma_c01299{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m51_c01299{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m25_c01299{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m5a_c01299{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m28_c01299{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01299{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m30_c01299{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01299{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);}
.m54_c01299{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01299{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m7_c01299{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m1_c01299{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m5_c01299{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);}
.m31_c01299{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m0_c01299{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);}
.m29_c01299{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01299{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m27_c01299{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);}
.m3e_c01299{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m34_c01299{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_c01299{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m15_c01299{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);}
.m38_c01299{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m26_c01299{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);}
.m44_c01299{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);}
.m3c_c01299{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m9_c01299{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m21_c01299{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);}
.m40_c01299{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.me_c01299{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01299{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);}
.m2b_c01299{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);}
.m59_c01299{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01299{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);}
.m46_c01299{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m48_c01299{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m2_c01299{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_c01299{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);}
.m8_c01299{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m33_c01299{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01299{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);}
.m22_c01299{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m35_c01299{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m19_c01299{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01299{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m13_c01299{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m50_c01299{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);}
.m14_c01299{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);}
.mc_c01299{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m4d_c01299{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m17_c01299{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);}
.m16_c01299{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m5c_c01299{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m37_c01299{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);}
.m32_c01299{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m12_c01299{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m36_c01299{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m3_c01299{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);}
.m3f_c01299{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01299{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);}
.m11_c01299{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01299{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);}
.m49_c01299{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01299{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01299{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m42_c01299{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01299{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01299{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);}
.m39_c01299{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);}
.m55_c01299{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m53_c01299{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);}
.m47_c01299{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m23_c01299{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01299{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);}
.m45_c01299{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01299{transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);}
.m5b_c01299{transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);}
.m41_c01299{transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);}
.m43_c01299{transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);}
.m56_c01299{transform:matrix(0.685000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685000,0.000000,0.000000,0.250000,0,0);}
.m57_c01299{transform:matrix(0.700000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.700000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.700000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01299{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.md_c01299{transform:matrix(1.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c01299{vertical-align:-8.640000px;}
.v1_c01299{vertical-align:-2.880000px;}
.v0_c01299{vertical-align:0.000000px;}
.v3_c01299{vertical-align:2.880000px;}
.ls0_c01299{letter-spacing:0.000000px;}
.sc__c01299{text-shadow:none;}
.sc0_c01299{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01299{-webkit-text-stroke:0px transparent;}
.sc0_c01299{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01299{word-spacing:0.000000px;}
.ws2_c01299{word-spacing:1.144800px;}
.ws1_c01299{word-spacing:4.582800px;}
.ws0_c01299{word-spacing:5.626800px;}
.fc0_c01299{color:transparent;}
.fs8_c01299{font-size:17.280000px;}
.fsd_c01299{font-size:31.680000px;}
.fsa_c01299{font-size:34.560000px;}
.fs9_c01299{font-size:37.440000px;}
.fsc_c01299{font-size:40.320000px;}
.fs3_c01299{font-size:43.200000px;}
.fs1_c01299{font-size:46.080000px;}
.fs6_c01299{font-size:48.960000px;}
.fs5_c01299{font-size:51.840000px;}
.fsb_c01299{font-size:54.720000px;}
.fs2_c01299{font-size:57.600000px;}
.fs4_c01299{font-size:60.480000px;}
.fse_c01299{font-size:63.360000px;}
.fsf_c01299{font-size:66.240000px;}
.fs7_c01299{font-size:69.120000px;}
.fs10_c01299{font-size:72.000000px;}
.fs0_c01299{font-size:74.880000px;}
.y0_c01299{bottom:0.000000px;}
.y78_c01299{bottom:59.040000px;}
.y77_c01299{bottom:61.200000px;}
.y76_c01299{bottom:61.920000px;}
.y79_c01299{bottom:62.640000px;}
.y75_c01299{bottom:64.080000px;}
.y7a_c01299{bottom:64.800000px;}
.y70_c01299{bottom:103.680000px;}
.y74_c01299{bottom:104.400000px;}
.y71_c01299{bottom:105.840000px;}
.y72_c01299{bottom:106.560000px;}
.y73_c01299{bottom:107.280000px;}
.y6f_c01299{bottom:108.000000px;}
.y6c_c01299{bottom:146.160000px;}
.y69_c01299{bottom:146.880000px;}
.y6d_c01299{bottom:147.600000px;}
.y6a_c01299{bottom:148.320000px;}
.y6b_c01299{bottom:149.040000px;}
.y6e_c01299{bottom:150.480000px;}
.y68_c01299{bottom:152.640000px;}
.y64_c01299{bottom:190.080000px;}
.y65_c01299{bottom:190.800000px;}
.y63_c01299{bottom:191.520000px;}
.y61_c01299{bottom:192.240000px;}
.y62_c01299{bottom:192.960000px;}
.y66_c01299{bottom:193.680000px;}
.y60_c01299{bottom:194.400000px;}
.y67_c01299{bottom:195.120000px;}
.y5f_c01299{bottom:234.000000px;}
.y5e_c01299{bottom:235.440000px;}
.y5c_c01299{bottom:236.160000px;}
.y5d_c01299{bottom:236.880000px;}
.y56_c01299{bottom:275.760000px;}
.y57_c01299{bottom:276.480000px;}
.y5a_c01299{bottom:277.200000px;}
.y58_c01299{bottom:277.920000px;}
.y59_c01299{bottom:278.640000px;}
.y5b_c01299{bottom:279.360000px;}
.y55_c01299{bottom:280.080000px;}
.y52_c01299{bottom:318.960000px;}
.y51_c01299{bottom:321.120000px;}
.y53_c01299{bottom:321.840000px;}
.y54_c01299{bottom:322.560000px;}
.y4f_c01299{bottom:361.440000px;}
.y4e_c01299{bottom:362.160000px;}
.y50_c01299{bottom:364.320000px;}
.y4d_c01299{bottom:365.040000px;}
.y4c_c01299{bottom:406.800000px;}
.y4b_c01299{bottom:407.520000px;}
.y4a_c01299{bottom:408.240000px;}
.y48_c01299{bottom:458.640000px;}
.y47_c01299{bottom:459.360000px;}
.y49_c01299{bottom:460.080000px;}
.y46_c01299{bottom:461.520000px;}
.y45_c01299{bottom:462.240000px;}
.y43_c01299{bottom:501.840000px;}
.y41_c01299{bottom:502.560000px;}
.y40_c01299{bottom:503.280000px;}
.y44_c01299{bottom:504.000000px;}
.y42_c01299{bottom:504.720000px;}
.y3e_c01299{bottom:545.040000px;}
.y3d_c01299{bottom:545.760000px;}
.y3f_c01299{bottom:547.200000px;}
.y3c_c01299{bottom:547.920000px;}
.y3b_c01299{bottom:587.520000px;}
.y38_c01299{bottom:588.240000px;}
.y39_c01299{bottom:590.400000px;}
.y3a_c01299{bottom:591.120000px;}
.y37_c01299{bottom:591.840000px;}
.y36_c01299{bottom:630.720000px;}
.y33_c01299{bottom:631.440000px;}
.y35_c01299{bottom:633.600000px;}
.y34_c01299{bottom:634.320000px;}
.y32_c01299{bottom:635.040000px;}
.y2f_c01299{bottom:685.440000px;}
.y31_c01299{bottom:686.880000px;}
.y30_c01299{bottom:688.320000px;}
.y2e_c01299{bottom:727.200000px;}
.y2b_c01299{bottom:727.920000px;}
.y2a_c01299{bottom:728.640000px;}
.y2d_c01299{bottom:730.080000px;}
.y2c_c01299{bottom:730.800000px;}
.y29_c01299{bottom:731.520000px;}
.y25_c01299{bottom:771.120000px;}
.y28_c01299{bottom:773.280000px;}
.y26_c01299{bottom:774.000000px;}
.y27_c01299{bottom:774.720000px;}
.y23_c01299{bottom:813.600000px;}
.y1f_c01299{bottom:814.320000px;}
.y20_c01299{bottom:815.040000px;}
.y24_c01299{bottom:815.760000px;}
.y22_c01299{bottom:816.480000px;}
.y1e_c01299{bottom:817.200000px;}
.y21_c01299{bottom:817.920000px;}
.y1d_c01299{bottom:856.080000px;}
.y17_c01299{bottom:856.800000px;}
.y19_c01299{bottom:857.520000px;}
.y1c_c01299{bottom:858.960000px;}
.y1b_c01299{bottom:859.680000px;}
.y1a_c01299{bottom:860.400000px;}
.y18_c01299{bottom:861.120000px;}
.y16_c01299{bottom:898.560000px;}
.y14_c01299{bottom:899.280000px;}
.y15_c01299{bottom:900.000000px;}
.y11_c01299{bottom:900.720000px;}
.y10_c01299{bottom:901.440000px;}
.yf_c01299{bottom:902.160000px;}
.y13_c01299{bottom:902.880000px;}
.y12_c01299{bottom:903.600000px;}
.yc_c01299{bottom:943.200000px;}
.ye_c01299{bottom:943.920000px;}
.yd_c01299{bottom:945.360000px;}
.yb_c01299{bottom:946.800000px;}
.y8_c01299{bottom:996.480000px;}
.ya_c01299{bottom:998.640000px;}
.y9_c01299{bottom:999.360000px;}
.y7_c01299{bottom:1038.240000px;}
.y5_c01299{bottom:1039.680000px;}
.y4_c01299{bottom:1040.400000px;}
.y6_c01299{bottom:1041.120000px;}
.y2_c01299{bottom:1041.840000px;}
.y3_c01299{bottom:1042.560000px;}
.y1_c01299{bottom:1094.400000px;}
.ha_c01299{height:15.550313px;}
.hf_c01299{height:28.508906px;}
.hc_c01299{height:31.100625px;}
.hb_c01299{height:33.692344px;}
.he_c01299{height:36.284062px;}
.h5_c01299{height:38.875781px;}
.h3_c01299{height:41.467500px;}
.h8_c01299{height:44.059219px;}
.h15_c01299{height:44.347500px;}
.h13_c01299{height:45.786094px;}
.h7_c01299{height:46.650937px;}
.hd_c01299{height:49.242656px;}
.h11_c01299{height:51.546094px;}
.h4_c01299{height:51.834375px;}
.h6_c01299{height:54.426094px;}
.h10_c01299{height:57.017812px;}
.h12_c01299{height:59.609531px;}
.h9_c01299{height:62.201250px;}
.h14_c01299{height:64.792969px;}
.h2_c01299{height:67.384687px;}
.h1_c01299{height:1148.250000px;}
.h0_c01299{height:1148.400000px;}
.w0_c01299{width:740.880000px;}
.w1_c01299{width:741.000000px;}
.x0_c01299{left:0.000000px;}
.x2_c01299{left:35.280000px;}
.x2a_c01299{left:36.720000px;}
.x5d_c01299{left:38.160000px;}
.x3_c01299{left:66.240000px;}
.x39_c01299{left:76.320000px;}
.xc_c01299{left:86.400000px;}
.x33_c01299{left:87.840000px;}
.x16_c01299{left:97.920000px;}
.x3a_c01299{left:108.720000px;}
.x24_c01299{left:110.160000px;}
.x41_c01299{left:118.800000px;}
.x17_c01299{left:120.240000px;}
.x45_c01299{left:129.600000px;}
.x10_c01299{left:141.120000px;}
.x3b_c01299{left:142.560000px;}
.x59_c01299{left:151.200000px;}
.x4_c01299{left:152.640000px;}
.x48_c01299{left:162.000000px;}
.x18_c01299{left:164.160000px;}
.x3c_c01299{left:173.520000px;}
.x5_c01299{left:174.960000px;}
.x51_c01299{left:183.600000px;}
.xd_c01299{left:185.040000px;}
.x19_c01299{left:195.840000px;}
.x52_c01299{left:205.200000px;}
.x2b_c01299{left:207.360000px;}
.x42_c01299{left:216.720000px;}
.x25_c01299{left:219.600000px;}
.x49_c01299{left:227.520000px;}
.x2c_c01299{left:229.680000px;}
.x6_c01299{left:239.040000px;}
.x2d_c01299{left:249.120000px;}
.x1a_c01299{left:250.560000px;}
.x46_c01299{left:259.920000px;}
.x54_c01299{left:270.720000px;}
.x11_c01299{left:272.160000px;}
.x1b_c01299{left:282.960000px;}
.xe_c01299{left:293.760000px;}
.x3d_c01299{left:303.840000px;}
.x34_c01299{left:305.280000px;}
.x7_c01299{left:314.640000px;}
.x1c_c01299{left:316.080000px;}
.x2e_c01299{left:326.160000px;}
.xf_c01299{left:328.320000px;}
.x35_c01299{left:336.240000px;}
.x1d_c01299{left:348.480000px;}
.x32_c01299{left:357.840000px;}
.x4d_c01299{left:368.640000px;}
.x1e_c01299{left:379.440000px;}
.x4e_c01299{left:390.240000px;}
.x8_c01299{left:401.040000px;}
.x5e_c01299{left:410.400000px;}
.x26_c01299{left:422.640000px;}
.x5a_c01299{left:432.720000px;}
.x1f_c01299{left:434.880000px;}
.x55_c01299{left:442.800000px;}
.x36_c01299{left:444.960000px;}
.x4f_c01299{left:453.600000px;}
.x20_c01299{left:455.040000px;}
.x43_c01299{left:465.120000px;}
.x2f_c01299{left:466.560000px;}
.x4a_c01299{left:475.920000px;}
.x12_c01299{left:477.360000px;}
.x5f_c01299{left:486.720000px;}
.x9_c01299{left:488.160000px;}
.x5b_c01299{left:496.800000px;}
.x27_c01299{left:499.680000px;}
.x4b_c01299{left:507.600000px;}
.x3e_c01299{left:509.040000px;}
.x56_c01299{left:518.400000px;}
.xa_c01299{left:520.560000px;}
.x37_c01299{left:529.920000px;}
.x57_c01299{left:538.560000px;}
.x28_c01299{left:540.720000px;}
.x13_c01299{left:542.160000px;}
.x5c_c01299{left:550.080000px;}
.x3f_c01299{left:561.600000px;}
.x30_c01299{left:563.760000px;}
.x4c_c01299{left:572.400000px;}
.x21_c01299{left:573.840000px;}
.xb_c01299{left:576.000000px;}
.x47_c01299{left:583.200000px;}
.x29_c01299{left:585.360000px;}
.x14_c01299{left:586.800000px;}
.x31_c01299{left:596.160000px;}
.x44_c01299{left:604.800000px;}
.x53_c01299{left:615.600000px;}
.x15_c01299{left:617.760000px;}
.x38_c01299{left:627.120000px;}
.x22_c01299{left:628.560000px;}
.x50_c01299{left:637.200000px;}
.x40_c01299{left:638.640000px;}
.x1_c01299{left:645.120000px;}
.x58_c01299{left:647.280000px;}
.x23_c01299{left:650.160000px;}
@media print{
.v2_c01299{vertical-align:-7.680000pt;}
.v1_c01299{vertical-align:-2.560000pt;}
.v0_c01299{vertical-align:0.000000pt;}
.v3_c01299{vertical-align:2.560000pt;}
.ls0_c01299{letter-spacing:0.000000pt;}
.ws3_c01299{word-spacing:0.000000pt;}
.ws2_c01299{word-spacing:1.017600pt;}
.ws1_c01299{word-spacing:4.073600pt;}
.ws0_c01299{word-spacing:5.001600pt;}
.fs8_c01299{font-size:15.360000pt;}
.fsd_c01299{font-size:28.160000pt;}
.fsa_c01299{font-size:30.720000pt;}
.fs9_c01299{font-size:33.280000pt;}
.fsc_c01299{font-size:35.840000pt;}
.fs3_c01299{font-size:38.400000pt;}
.fs1_c01299{font-size:40.960000pt;}
.fs6_c01299{font-size:43.520000pt;}
.fs5_c01299{font-size:46.080000pt;}
.fsb_c01299{font-size:48.640000pt;}
.fs2_c01299{font-size:51.200000pt;}
.fs4_c01299{font-size:53.760000pt;}
.fse_c01299{font-size:56.320000pt;}
.fsf_c01299{font-size:58.880000pt;}
.fs7_c01299{font-size:61.440000pt;}
.fs10_c01299{font-size:64.000000pt;}
.fs0_c01299{font-size:66.560000pt;}
.y0_c01299{bottom:0.000000pt;}
.y78_c01299{bottom:52.480000pt;}
.y77_c01299{bottom:54.400000pt;}
.y76_c01299{bottom:55.040000pt;}
.y79_c01299{bottom:55.680000pt;}
.y75_c01299{bottom:56.960000pt;}
.y7a_c01299{bottom:57.600000pt;}
.y70_c01299{bottom:92.160000pt;}
.y74_c01299{bottom:92.800000pt;}
.y71_c01299{bottom:94.080000pt;}
.y72_c01299{bottom:94.720000pt;}
.y73_c01299{bottom:95.360000pt;}
.y6f_c01299{bottom:96.000000pt;}
.y6c_c01299{bottom:129.920000pt;}
.y69_c01299{bottom:130.560000pt;}
.y6d_c01299{bottom:131.200000pt;}
.y6a_c01299{bottom:131.840000pt;}
.y6b_c01299{bottom:132.480000pt;}
.y6e_c01299{bottom:133.760000pt;}
.y68_c01299{bottom:135.680000pt;}
.y64_c01299{bottom:168.960000pt;}
.y65_c01299{bottom:169.600000pt;}
.y63_c01299{bottom:170.240000pt;}
.y61_c01299{bottom:170.880000pt;}
.y62_c01299{bottom:171.520000pt;}
.y66_c01299{bottom:172.160000pt;}
.y60_c01299{bottom:172.800000pt;}
.y67_c01299{bottom:173.440000pt;}
.y5f_c01299{bottom:208.000000pt;}
.y5e_c01299{bottom:209.280000pt;}
.y5c_c01299{bottom:209.920000pt;}
.y5d_c01299{bottom:210.560000pt;}
.y56_c01299{bottom:245.120000pt;}
.y57_c01299{bottom:245.760000pt;}
.y5a_c01299{bottom:246.400000pt;}
.y58_c01299{bottom:247.040000pt;}
.y59_c01299{bottom:247.680000pt;}
.y5b_c01299{bottom:248.320000pt;}
.y55_c01299{bottom:248.960000pt;}
.y52_c01299{bottom:283.520000pt;}
.y51_c01299{bottom:285.440000pt;}
.y53_c01299{bottom:286.080000pt;}
.y54_c01299{bottom:286.720000pt;}
.y4f_c01299{bottom:321.280000pt;}
.y4e_c01299{bottom:321.920000pt;}
.y50_c01299{bottom:323.840000pt;}
.y4d_c01299{bottom:324.480000pt;}
.y4c_c01299{bottom:361.600000pt;}
.y4b_c01299{bottom:362.240000pt;}
.y4a_c01299{bottom:362.880000pt;}
.y48_c01299{bottom:407.680000pt;}
.y47_c01299{bottom:408.320000pt;}
.y49_c01299{bottom:408.960000pt;}
.y46_c01299{bottom:410.240000pt;}
.y45_c01299{bottom:410.880000pt;}
.y43_c01299{bottom:446.080000pt;}
.y41_c01299{bottom:446.720000pt;}
.y40_c01299{bottom:447.360000pt;}
.y44_c01299{bottom:448.000000pt;}
.y42_c01299{bottom:448.640000pt;}
.y3e_c01299{bottom:484.480000pt;}
.y3d_c01299{bottom:485.120000pt;}
.y3f_c01299{bottom:486.400000pt;}
.y3c_c01299{bottom:487.040000pt;}
.y3b_c01299{bottom:522.240000pt;}
.y38_c01299{bottom:522.880000pt;}
.y39_c01299{bottom:524.800000pt;}
.y3a_c01299{bottom:525.440000pt;}
.y37_c01299{bottom:526.080000pt;}
.y36_c01299{bottom:560.640000pt;}
.y33_c01299{bottom:561.280000pt;}
.y35_c01299{bottom:563.200000pt;}
.y34_c01299{bottom:563.840000pt;}
.y32_c01299{bottom:564.480000pt;}
.y2f_c01299{bottom:609.280000pt;}
.y31_c01299{bottom:610.560000pt;}
.y30_c01299{bottom:611.840000pt;}
.y2e_c01299{bottom:646.400000pt;}
.y2b_c01299{bottom:647.040000pt;}
.y2a_c01299{bottom:647.680000pt;}
.y2d_c01299{bottom:648.960000pt;}
.y2c_c01299{bottom:649.600000pt;}
.y29_c01299{bottom:650.240000pt;}
.y25_c01299{bottom:685.440000pt;}
.y28_c01299{bottom:687.360000pt;}
.y26_c01299{bottom:688.000000pt;}
.y27_c01299{bottom:688.640000pt;}
.y23_c01299{bottom:723.200000pt;}
.y1f_c01299{bottom:723.840000pt;}
.y20_c01299{bottom:724.480000pt;}
.y24_c01299{bottom:725.120000pt;}
.y22_c01299{bottom:725.760000pt;}
.y1e_c01299{bottom:726.400000pt;}
.y21_c01299{bottom:727.040000pt;}
.y1d_c01299{bottom:760.960000pt;}
.y17_c01299{bottom:761.600000pt;}
.y19_c01299{bottom:762.240000pt;}
.y1c_c01299{bottom:763.520000pt;}
.y1b_c01299{bottom:764.160000pt;}
.y1a_c01299{bottom:764.800000pt;}
.y18_c01299{bottom:765.440000pt;}
.y16_c01299{bottom:798.720000pt;}
.y14_c01299{bottom:799.360000pt;}
.y15_c01299{bottom:800.000000pt;}
.y11_c01299{bottom:800.640000pt;}
.y10_c01299{bottom:801.280000pt;}
.yf_c01299{bottom:801.920000pt;}
.y13_c01299{bottom:802.560000pt;}
.y12_c01299{bottom:803.200000pt;}
.yc_c01299{bottom:838.400000pt;}
.ye_c01299{bottom:839.040000pt;}
.yd_c01299{bottom:840.320000pt;}
.yb_c01299{bottom:841.600000pt;}
.y8_c01299{bottom:885.760000pt;}
.ya_c01299{bottom:887.680000pt;}
.y9_c01299{bottom:888.320000pt;}
.y7_c01299{bottom:922.880000pt;}
.y5_c01299{bottom:924.160000pt;}
.y4_c01299{bottom:924.800000pt;}
.y6_c01299{bottom:925.440000pt;}
.y2_c01299{bottom:926.080000pt;}
.y3_c01299{bottom:926.720000pt;}
.y1_c01299{bottom:972.800000pt;}
.ha_c01299{height:13.822500pt;}
.hf_c01299{height:25.341250pt;}
.hc_c01299{height:27.645000pt;}
.hb_c01299{height:29.948750pt;}
.he_c01299{height:32.252500pt;}
.h5_c01299{height:34.556250pt;}
.h3_c01299{height:36.860000pt;}
.h8_c01299{height:39.163750pt;}
.h15_c01299{height:39.420000pt;}
.h13_c01299{height:40.698750pt;}
.h7_c01299{height:41.467500pt;}
.hd_c01299{height:43.771250pt;}
.h11_c01299{height:45.818750pt;}
.h4_c01299{height:46.075000pt;}
.h6_c01299{height:48.378750pt;}
.h10_c01299{height:50.682500pt;}
.h12_c01299{height:52.986250pt;}
.h9_c01299{height:55.290000pt;}
.h14_c01299{height:57.593750pt;}
.h2_c01299{height:59.897500pt;}
.h1_c01299{height:1020.666667pt;}
.h0_c01299{height:1020.800000pt;}
.w0_c01299{width:658.560000pt;}
.w1_c01299{width:658.666667pt;}
.x0_c01299{left:0.000000pt;}
.x2_c01299{left:31.360000pt;}
.x2a_c01299{left:32.640000pt;}
.x5d_c01299{left:33.920000pt;}
.x3_c01299{left:58.880000pt;}
.x39_c01299{left:67.840000pt;}
.xc_c01299{left:76.800000pt;}
.x33_c01299{left:78.080000pt;}
.x16_c01299{left:87.040000pt;}
.x3a_c01299{left:96.640000pt;}
.x24_c01299{left:97.920000pt;}
.x41_c01299{left:105.600000pt;}
.x17_c01299{left:106.880000pt;}
.x45_c01299{left:115.200000pt;}
.x10_c01299{left:125.440000pt;}
.x3b_c01299{left:126.720000pt;}
.x59_c01299{left:134.400000pt;}
.x4_c01299{left:135.680000pt;}
.x48_c01299{left:144.000000pt;}
.x18_c01299{left:145.920000pt;}
.x3c_c01299{left:154.240000pt;}
.x5_c01299{left:155.520000pt;}
.x51_c01299{left:163.200000pt;}
.xd_c01299{left:164.480000pt;}
.x19_c01299{left:174.080000pt;}
.x52_c01299{left:182.400000pt;}
.x2b_c01299{left:184.320000pt;}
.x42_c01299{left:192.640000pt;}
.x25_c01299{left:195.200000pt;}
.x49_c01299{left:202.240000pt;}
.x2c_c01299{left:204.160000pt;}
.x6_c01299{left:212.480000pt;}
.x2d_c01299{left:221.440000pt;}
.x1a_c01299{left:222.720000pt;}
.x46_c01299{left:231.040000pt;}
.x54_c01299{left:240.640000pt;}
.x11_c01299{left:241.920000pt;}
.x1b_c01299{left:251.520000pt;}
.xe_c01299{left:261.120000pt;}
.x3d_c01299{left:270.080000pt;}
.x34_c01299{left:271.360000pt;}
.x7_c01299{left:279.680000pt;}
.x1c_c01299{left:280.960000pt;}
.x2e_c01299{left:289.920000pt;}
.xf_c01299{left:291.840000pt;}
.x35_c01299{left:298.880000pt;}
.x1d_c01299{left:309.760000pt;}
.x32_c01299{left:318.080000pt;}
.x4d_c01299{left:327.680000pt;}
.x1e_c01299{left:337.280000pt;}
.x4e_c01299{left:346.880000pt;}
.x8_c01299{left:356.480000pt;}
.x5e_c01299{left:364.800000pt;}
.x26_c01299{left:375.680000pt;}
.x5a_c01299{left:384.640000pt;}
.x1f_c01299{left:386.560000pt;}
.x55_c01299{left:393.600000pt;}
.x36_c01299{left:395.520000pt;}
.x4f_c01299{left:403.200000pt;}
.x20_c01299{left:404.480000pt;}
.x43_c01299{left:413.440000pt;}
.x2f_c01299{left:414.720000pt;}
.x4a_c01299{left:423.040000pt;}
.x12_c01299{left:424.320000pt;}
.x5f_c01299{left:432.640000pt;}
.x9_c01299{left:433.920000pt;}
.x5b_c01299{left:441.600000pt;}
.x27_c01299{left:444.160000pt;}
.x4b_c01299{left:451.200000pt;}
.x3e_c01299{left:452.480000pt;}
.x56_c01299{left:460.800000pt;}
.xa_c01299{left:462.720000pt;}
.x37_c01299{left:471.040000pt;}
.x57_c01299{left:478.720000pt;}
.x28_c01299{left:480.640000pt;}
.x13_c01299{left:481.920000pt;}
.x5c_c01299{left:488.960000pt;}
.x3f_c01299{left:499.200000pt;}
.x30_c01299{left:501.120000pt;}
.x4c_c01299{left:508.800000pt;}
.x21_c01299{left:510.080000pt;}
.xb_c01299{left:512.000000pt;}
.x47_c01299{left:518.400000pt;}
.x29_c01299{left:520.320000pt;}
.x14_c01299{left:521.600000pt;}
.x31_c01299{left:529.920000pt;}
.x44_c01299{left:537.600000pt;}
.x53_c01299{left:547.200000pt;}
.x15_c01299{left:549.120000pt;}
.x38_c01299{left:557.440000pt;}
.x22_c01299{left:558.720000pt;}
.x50_c01299{left:566.400000pt;}
.x40_c01299{left:567.680000pt;}
.x1_c01299{left:573.440000pt;}
.x58_c01299{left:575.360000pt;}
.x23_c01299{left:577.920000pt;}
}





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

.ir_c01300:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01300{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01300;src:url('chunks/assets/font_b6ba65d99892e77e4b0e3498.woff2')format("woff");}.ff1_c01300{font-family:ff1_c01300;line-height:1.109863;font-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_c01300{transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);}
.m58_c01300{transform:matrix(0.248325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248325,0.000000,0.000000,0.250000,0,0);}
.m16_c01300{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m9_c01300{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);}
.m2f_c01300{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m50_c01300{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m59_c01300{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m22_c01300{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01300{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01300{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m29_c01300{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m17_c01300{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m55_c01300{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m1_c01300{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);}
.m42_c01300{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m7_c01300{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m18_c01300{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);}
.m4b_c01300{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);}
.m3b_c01300{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01300{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_c01300{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01300{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_c01300{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.md_c01300{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m0_c01300{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);}
.m27_c01300{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01300{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.me_c01300{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);}
.m45_c01300{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);}
.m54_c01300{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);}
.m48_c01300{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m39_c01300{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);}
.mf_c01300{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m43_c01300{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);}
.m56_c01300{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);}
.m33_c01300{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01300{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m38_c01300{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m28_c01300{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01300{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);}
.m52_c01300{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m23_c01300{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);}
.m2e_c01300{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m14_c01300{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);}
.m3f_c01300{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01300{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m6_c01300{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m32_c01300{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m5_c01300{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);}
.m46_c01300{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01300{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m31_c01300{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m8_c01300{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m2_c01300{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);}
.m19_c01300{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01300{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m13_c01300{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01300{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);}
.m49_c01300{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m57_c01300{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m15_c01300{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m10_c01300{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m35_c01300{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m21_c01300{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);}
.m24_c01300{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);}
.m30_c01300{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m47_c01300{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m11_c01300{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);}
.m1c_c01300{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m3_c01300{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.ma_c01300{transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);}
.m4_c01300{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m36_c01300{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m20_c01300{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01300{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);}
.m51_c01300{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);}
.m1f_c01300{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);}
.m53_c01300{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m4d_c01300{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m40_c01300{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01300{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01300{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m41_c01300{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);}
.m44_c01300{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.mc_c01300{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);}
.m37_c01300{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m5a_c01300{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01300{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m34_c01300{transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01300{transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);}
.m26_c01300{transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);}
.v0_c01300{vertical-align:0.000000px;}
.ls0_c01300{letter-spacing:0.000000px;}
.sc__c01300{text-shadow:none;}
.sc0_c01300{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01300{-webkit-text-stroke:0px transparent;}
.sc0_c01300{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01300{word-spacing:0.000000px;}
.fc0_c01300{color:transparent;}
.fsd_c01300{font-size:20.160000px;}
.fs2_c01300{font-size:34.560000px;}
.fsc_c01300{font-size:37.440000px;}
.fsb_c01300{font-size:40.320000px;}
.fs8_c01300{font-size:43.200000px;}
.fs4_c01300{font-size:46.080000px;}
.fs3_c01300{font-size:48.960000px;}
.fs5_c01300{font-size:51.840000px;}
.fse_c01300{font-size:54.720000px;}
.fs9_c01300{font-size:57.600000px;}
.fs1_c01300{font-size:60.480000px;}
.fsa_c01300{font-size:63.360000px;}
.fs6_c01300{font-size:66.240000px;}
.fs7_c01300{font-size:69.120000px;}
.fs0_c01300{font-size:74.880000px;}
.y0_c01300{bottom:0.000000px;}
.y73_c01300{bottom:76.320000px;}
.y72_c01300{bottom:77.040000px;}
.y71_c01300{bottom:77.760000px;}
.y6e_c01300{bottom:115.920000px;}
.y70_c01300{bottom:118.080000px;}
.y6f_c01300{bottom:118.800000px;}
.y6d_c01300{bottom:119.520000px;}
.y6c_c01300{bottom:120.240000px;}
.y68_c01300{bottom:161.280000px;}
.y6a_c01300{bottom:162.000000px;}
.y69_c01300{bottom:162.720000px;}
.y67_c01300{bottom:163.440000px;}
.y6b_c01300{bottom:164.160000px;}
.y61_c01300{bottom:202.320000px;}
.y62_c01300{bottom:203.040000px;}
.y64_c01300{bottom:203.760000px;}
.y65_c01300{bottom:204.480000px;}
.y63_c01300{bottom:205.200000px;}
.y60_c01300{bottom:205.920000px;}
.y66_c01300{bottom:207.360000px;}
.y5c_c01300{bottom:246.240000px;}
.y5e_c01300{bottom:246.960000px;}
.y5b_c01300{bottom:247.680000px;}
.y5d_c01300{bottom:248.400000px;}
.y5a_c01300{bottom:249.840000px;}
.y59_c01300{bottom:250.560000px;}
.y5f_c01300{bottom:251.280000px;}
.y56_c01300{bottom:288.000000px;}
.y57_c01300{bottom:289.440000px;}
.y55_c01300{bottom:292.320000px;}
.y58_c01300{bottom:293.040000px;}
.y54_c01300{bottom:293.760000px;}
.y4e_c01300{bottom:332.640000px;}
.y51_c01300{bottom:333.360000px;}
.y4d_c01300{bottom:334.080000px;}
.y50_c01300{bottom:334.800000px;}
.y4f_c01300{bottom:335.520000px;}
.y52_c01300{bottom:336.240000px;}
.y53_c01300{bottom:337.680000px;}
.y47_c01300{bottom:375.120000px;}
.y48_c01300{bottom:375.840000px;}
.y49_c01300{bottom:376.560000px;}
.y4b_c01300{bottom:377.280000px;}
.y4a_c01300{bottom:378.720000px;}
.y46_c01300{bottom:379.440000px;}
.y4c_c01300{bottom:380.160000px;}
.y41_c01300{bottom:418.320000px;}
.y43_c01300{bottom:419.040000px;}
.y45_c01300{bottom:419.760000px;}
.y42_c01300{bottom:420.480000px;}
.y40_c01300{bottom:421.200000px;}
.y44_c01300{bottom:422.640000px;}
.y3c_c01300{bottom:462.240000px;}
.y3f_c01300{bottom:462.960000px;}
.y3b_c01300{bottom:464.400000px;}
.y3e_c01300{bottom:465.120000px;}
.y3d_c01300{bottom:465.840000px;}
.y39_c01300{bottom:505.440000px;}
.y37_c01300{bottom:506.880000px;}
.y36_c01300{bottom:507.600000px;}
.y38_c01300{bottom:508.320000px;}
.y3a_c01300{bottom:509.040000px;}
.y35_c01300{bottom:549.360000px;}
.y34_c01300{bottom:550.800000px;}
.y33_c01300{bottom:551.520000px;}
.y31_c01300{bottom:601.200000px;}
.y32_c01300{bottom:601.920000px;}
.y30_c01300{bottom:604.800000px;}
.y2f_c01300{bottom:644.400000px;}
.y2d_c01300{bottom:647.280000px;}
.y2e_c01300{bottom:648.000000px;}
.y2c_c01300{bottom:686.880000px;}
.y2b_c01300{bottom:687.600000px;}
.y29_c01300{bottom:689.760000px;}
.y2a_c01300{bottom:690.480000px;}
.y28_c01300{bottom:729.360000px;}
.y26_c01300{bottom:730.800000px;}
.y25_c01300{bottom:731.520000px;}
.y24_c01300{bottom:732.960000px;}
.y27_c01300{bottom:733.680000px;}
.y23_c01300{bottom:784.080000px;}
.y20_c01300{bottom:786.240000px;}
.y21_c01300{bottom:786.960000px;}
.y22_c01300{bottom:787.680000px;}
.y1f_c01300{bottom:826.560000px;}
.y1d_c01300{bottom:827.280000px;}
.y1b_c01300{bottom:828.720000px;}
.y1c_c01300{bottom:829.440000px;}
.y1e_c01300{bottom:830.160000px;}
.y1a_c01300{bottom:869.040000px;}
.y16_c01300{bottom:869.760000px;}
.y19_c01300{bottom:871.920000px;}
.y17_c01300{bottom:872.640000px;}
.y18_c01300{bottom:873.360000px;}
.y12_c01300{bottom:912.240000px;}
.y13_c01300{bottom:913.680000px;}
.y15_c01300{bottom:915.120000px;}
.y14_c01300{bottom:915.840000px;}
.y11_c01300{bottom:916.560000px;}
.yf_c01300{bottom:966.960000px;}
.y10_c01300{bottom:967.680000px;}
.yd_c01300{bottom:969.120000px;}
.ye_c01300{bottom:969.840000px;}
.yc_c01300{bottom:1009.440000px;}
.y9_c01300{bottom:1010.160000px;}
.yb_c01300{bottom:1010.880000px;}
.y8_c01300{bottom:1011.600000px;}
.ya_c01300{bottom:1013.040000px;}
.y7_c01300{bottom:1052.640000px;}
.y3_c01300{bottom:1053.360000px;}
.y2_c01300{bottom:1055.520000px;}
.y6_c01300{bottom:1056.240000px;}
.y5_c01300{bottom:1056.960000px;}
.y4_c01300{bottom:1057.680000px;}
.y1_c01300{bottom:1105.200000px;}
.hf_c01300{height:18.142031px;}
.h4_c01300{height:31.100625px;}
.he_c01300{height:33.692344px;}
.hd_c01300{height:36.284062px;}
.ha_c01300{height:38.875781px;}
.h6_c01300{height:41.467500px;}
.h5_c01300{height:44.059219px;}
.h7_c01300{height:46.650937px;}
.h10_c01300{height:49.242656px;}
.hb_c01300{height:51.834375px;}
.h3_c01300{height:54.426094px;}
.hc_c01300{height:57.017812px;}
.h8_c01300{height:59.609531px;}
.h9_c01300{height:62.201250px;}
.h2_c01300{height:67.384687px;}
.h0_c01300{height:1152.720000px;}
.h1_c01300{height:1152.750000px;}
.w1_c01300{width:748.500000px;}
.w0_c01300{width:748.800000px;}
.x0_c01300{left:0.000000px;}
.x2_c01300{left:45.360000px;}
.x3b_c01300{left:47.520000px;}
.x51_c01300{left:49.680000px;}
.x12_c01300{left:64.800000px;}
.xb_c01300{left:75.600000px;}
.x3e_c01300{left:77.040000px;}
.x1f_c01300{left:86.400000px;}
.x2e_c01300{left:96.480000px;}
.x13_c01300{left:108.720000px;}
.x3_c01300{left:118.800000px;}
.x5b_c01300{left:120.240000px;}
.x4d_c01300{left:128.880000px;}
.x26_c01300{left:131.040000px;}
.x48_c01300{left:140.400000px;}
.x19_c01300{left:151.200000px;}
.xc_c01300{left:162.720000px;}
.x43_c01300{left:172.800000px;}
.x27_c01300{left:182.880000px;}
.x3f_c01300{left:184.320000px;}
.x58_c01300{left:190.080000px;}
.x54_c01300{left:195.120000px;}
.x49_c01300{left:196.560000px;}
.x1a_c01300{left:205.200000px;}
.x4_c01300{left:216.720000px;}
.x44_c01300{left:218.160000px;}
.x14_c01300{left:226.080000px;}
.x20_c01300{left:227.520000px;}
.x5_c01300{left:238.320000px;}
.xd_c01300{left:248.400000px;}
.x52_c01300{left:252.720000px;}
.x55_c01300{left:260.640000px;}
.xe_c01300{left:270.720000px;}
.x46_c01300{left:272.160000px;}
.x6_c01300{left:281.520000px;}
.x4a_c01300{left:282.960000px;}
.x21_c01300{left:291.600000px;}
.x4e_c01300{left:293.040000px;}
.xf_c01300{left:302.400000px;}
.x59_c01300{left:303.840000px;}
.x4b_c01300{left:314.640000px;}
.x33_c01300{left:325.440000px;}
.x10_c01300{left:334.080000px;}
.x28_c01300{left:335.520000px;}
.x1b_c01300{left:345.600000px;}
.x4f_c01300{left:347.760000px;}
.x7_c01300{left:357.120000px;}
.x15_c01300{left:367.200000px;}
.x29_c01300{left:368.640000px;}
.x56_c01300{left:378.000000px;}
.x2f_c01300{left:379.440000px;}
.x22_c01300{left:390.240000px;}
.x8_c01300{left:401.040000px;}
.x16_c01300{left:410.400000px;}
.x30_c01300{left:412.560000px;}
.x1c_c01300{left:421.920000px;}
.x57_c01300{left:423.360000px;}
.x40_c01300{left:433.440000px;}
.x3c_c01300{left:442.800000px;}
.x31_c01300{left:444.240000px;}
.x2a_c01300{left:453.600000px;}
.x1d_c01300{left:455.760000px;}
.x23_c01300{left:464.400000px;}
.x2b_c01300{left:476.640000px;}
.x9_c01300{left:486.720000px;}
.x34_c01300{left:497.520000px;}
.x38_c01300{left:507.600000px;}
.x5a_c01300{left:509.040000px;}
.x47_c01300{left:517.680000px;}
.x35_c01300{left:529.200000px;}
.x11_c01300{left:540.720000px;}
.x17_c01300{left:544.320000px;}
.x24_c01300{left:551.520000px;}
.x2c_c01300{left:562.320000px;}
.xa_c01300{left:563.760000px;}
.x41_c01300{left:572.400000px;}
.x36_c01300{left:583.200000px;}
.x1e_c01300{left:584.640000px;}
.x45_c01300{left:592.560000px;}
.x32_c01300{left:594.000000px;}
.x2d_c01300{left:596.160000px;}
.x50_c01300{left:603.360000px;}
.x3d_c01300{left:604.800000px;}
.x4c_c01300{left:615.600000px;}
.x18_c01300{left:617.760000px;}
.x42_c01300{left:625.680000px;}
.x1_c01300{left:632.880000px;}
.x39_c01300{left:637.200000px;}
.x53_c01300{left:646.560000px;}
.x37_c01300{left:648.720000px;}
.x3a_c01300{left:658.800000px;}
.x25_c01300{left:660.960000px;}
@media print{
.v0_c01300{vertical-align:0.000000pt;}
.ls0_c01300{letter-spacing:0.000000pt;}
.ws0_c01300{word-spacing:0.000000pt;}
.fsd_c01300{font-size:17.920000pt;}
.fs2_c01300{font-size:30.720000pt;}
.fsc_c01300{font-size:33.280000pt;}
.fsb_c01300{font-size:35.840000pt;}
.fs8_c01300{font-size:38.400000pt;}
.fs4_c01300{font-size:40.960000pt;}
.fs3_c01300{font-size:43.520000pt;}
.fs5_c01300{font-size:46.080000pt;}
.fse_c01300{font-size:48.640000pt;}
.fs9_c01300{font-size:51.200000pt;}
.fs1_c01300{font-size:53.760000pt;}
.fsa_c01300{font-size:56.320000pt;}
.fs6_c01300{font-size:58.880000pt;}
.fs7_c01300{font-size:61.440000pt;}
.fs0_c01300{font-size:66.560000pt;}
.y0_c01300{bottom:0.000000pt;}
.y73_c01300{bottom:67.840000pt;}
.y72_c01300{bottom:68.480000pt;}
.y71_c01300{bottom:69.120000pt;}
.y6e_c01300{bottom:103.040000pt;}
.y70_c01300{bottom:104.960000pt;}
.y6f_c01300{bottom:105.600000pt;}
.y6d_c01300{bottom:106.240000pt;}
.y6c_c01300{bottom:106.880000pt;}
.y68_c01300{bottom:143.360000pt;}
.y6a_c01300{bottom:144.000000pt;}
.y69_c01300{bottom:144.640000pt;}
.y67_c01300{bottom:145.280000pt;}
.y6b_c01300{bottom:145.920000pt;}
.y61_c01300{bottom:179.840000pt;}
.y62_c01300{bottom:180.480000pt;}
.y64_c01300{bottom:181.120000pt;}
.y65_c01300{bottom:181.760000pt;}
.y63_c01300{bottom:182.400000pt;}
.y60_c01300{bottom:183.040000pt;}
.y66_c01300{bottom:184.320000pt;}
.y5c_c01300{bottom:218.880000pt;}
.y5e_c01300{bottom:219.520000pt;}
.y5b_c01300{bottom:220.160000pt;}
.y5d_c01300{bottom:220.800000pt;}
.y5a_c01300{bottom:222.080000pt;}
.y59_c01300{bottom:222.720000pt;}
.y5f_c01300{bottom:223.360000pt;}
.y56_c01300{bottom:256.000000pt;}
.y57_c01300{bottom:257.280000pt;}
.y55_c01300{bottom:259.840000pt;}
.y58_c01300{bottom:260.480000pt;}
.y54_c01300{bottom:261.120000pt;}
.y4e_c01300{bottom:295.680000pt;}
.y51_c01300{bottom:296.320000pt;}
.y4d_c01300{bottom:296.960000pt;}
.y50_c01300{bottom:297.600000pt;}
.y4f_c01300{bottom:298.240000pt;}
.y52_c01300{bottom:298.880000pt;}
.y53_c01300{bottom:300.160000pt;}
.y47_c01300{bottom:333.440000pt;}
.y48_c01300{bottom:334.080000pt;}
.y49_c01300{bottom:334.720000pt;}
.y4b_c01300{bottom:335.360000pt;}
.y4a_c01300{bottom:336.640000pt;}
.y46_c01300{bottom:337.280000pt;}
.y4c_c01300{bottom:337.920000pt;}
.y41_c01300{bottom:371.840000pt;}
.y43_c01300{bottom:372.480000pt;}
.y45_c01300{bottom:373.120000pt;}
.y42_c01300{bottom:373.760000pt;}
.y40_c01300{bottom:374.400000pt;}
.y44_c01300{bottom:375.680000pt;}
.y3c_c01300{bottom:410.880000pt;}
.y3f_c01300{bottom:411.520000pt;}
.y3b_c01300{bottom:412.800000pt;}
.y3e_c01300{bottom:413.440000pt;}
.y3d_c01300{bottom:414.080000pt;}
.y39_c01300{bottom:449.280000pt;}
.y37_c01300{bottom:450.560000pt;}
.y36_c01300{bottom:451.200000pt;}
.y38_c01300{bottom:451.840000pt;}
.y3a_c01300{bottom:452.480000pt;}
.y35_c01300{bottom:488.320000pt;}
.y34_c01300{bottom:489.600000pt;}
.y33_c01300{bottom:490.240000pt;}
.y31_c01300{bottom:534.400000pt;}
.y32_c01300{bottom:535.040000pt;}
.y30_c01300{bottom:537.600000pt;}
.y2f_c01300{bottom:572.800000pt;}
.y2d_c01300{bottom:575.360000pt;}
.y2e_c01300{bottom:576.000000pt;}
.y2c_c01300{bottom:610.560000pt;}
.y2b_c01300{bottom:611.200000pt;}
.y29_c01300{bottom:613.120000pt;}
.y2a_c01300{bottom:613.760000pt;}
.y28_c01300{bottom:648.320000pt;}
.y26_c01300{bottom:649.600000pt;}
.y25_c01300{bottom:650.240000pt;}
.y24_c01300{bottom:651.520000pt;}
.y27_c01300{bottom:652.160000pt;}
.y23_c01300{bottom:696.960000pt;}
.y20_c01300{bottom:698.880000pt;}
.y21_c01300{bottom:699.520000pt;}
.y22_c01300{bottom:700.160000pt;}
.y1f_c01300{bottom:734.720000pt;}
.y1d_c01300{bottom:735.360000pt;}
.y1b_c01300{bottom:736.640000pt;}
.y1c_c01300{bottom:737.280000pt;}
.y1e_c01300{bottom:737.920000pt;}
.y1a_c01300{bottom:772.480000pt;}
.y16_c01300{bottom:773.120000pt;}
.y19_c01300{bottom:775.040000pt;}
.y17_c01300{bottom:775.680000pt;}
.y18_c01300{bottom:776.320000pt;}
.y12_c01300{bottom:810.880000pt;}
.y13_c01300{bottom:812.160000pt;}
.y15_c01300{bottom:813.440000pt;}
.y14_c01300{bottom:814.080000pt;}
.y11_c01300{bottom:814.720000pt;}
.yf_c01300{bottom:859.520000pt;}
.y10_c01300{bottom:860.160000pt;}
.yd_c01300{bottom:861.440000pt;}
.ye_c01300{bottom:862.080000pt;}
.yc_c01300{bottom:897.280000pt;}
.y9_c01300{bottom:897.920000pt;}
.yb_c01300{bottom:898.560000pt;}
.y8_c01300{bottom:899.200000pt;}
.ya_c01300{bottom:900.480000pt;}
.y7_c01300{bottom:935.680000pt;}
.y3_c01300{bottom:936.320000pt;}
.y2_c01300{bottom:938.240000pt;}
.y6_c01300{bottom:938.880000pt;}
.y5_c01300{bottom:939.520000pt;}
.y4_c01300{bottom:940.160000pt;}
.y1_c01300{bottom:982.400000pt;}
.hf_c01300{height:16.126250pt;}
.h4_c01300{height:27.645000pt;}
.he_c01300{height:29.948750pt;}
.hd_c01300{height:32.252500pt;}
.ha_c01300{height:34.556250pt;}
.h6_c01300{height:36.860000pt;}
.h5_c01300{height:39.163750pt;}
.h7_c01300{height:41.467500pt;}
.h10_c01300{height:43.771250pt;}
.hb_c01300{height:46.075000pt;}
.h3_c01300{height:48.378750pt;}
.hc_c01300{height:50.682500pt;}
.h8_c01300{height:52.986250pt;}
.h9_c01300{height:55.290000pt;}
.h2_c01300{height:59.897500pt;}
.h0_c01300{height:1024.640000pt;}
.h1_c01300{height:1024.666667pt;}
.w1_c01300{width:665.333333pt;}
.w0_c01300{width:665.600000pt;}
.x0_c01300{left:0.000000pt;}
.x2_c01300{left:40.320000pt;}
.x3b_c01300{left:42.240000pt;}
.x51_c01300{left:44.160000pt;}
.x12_c01300{left:57.600000pt;}
.xb_c01300{left:67.200000pt;}
.x3e_c01300{left:68.480000pt;}
.x1f_c01300{left:76.800000pt;}
.x2e_c01300{left:85.760000pt;}
.x13_c01300{left:96.640000pt;}
.x3_c01300{left:105.600000pt;}
.x5b_c01300{left:106.880000pt;}
.x4d_c01300{left:114.560000pt;}
.x26_c01300{left:116.480000pt;}
.x48_c01300{left:124.800000pt;}
.x19_c01300{left:134.400000pt;}
.xc_c01300{left:144.640000pt;}
.x43_c01300{left:153.600000pt;}
.x27_c01300{left:162.560000pt;}
.x3f_c01300{left:163.840000pt;}
.x58_c01300{left:168.960000pt;}
.x54_c01300{left:173.440000pt;}
.x49_c01300{left:174.720000pt;}
.x1a_c01300{left:182.400000pt;}
.x4_c01300{left:192.640000pt;}
.x44_c01300{left:193.920000pt;}
.x14_c01300{left:200.960000pt;}
.x20_c01300{left:202.240000pt;}
.x5_c01300{left:211.840000pt;}
.xd_c01300{left:220.800000pt;}
.x52_c01300{left:224.640000pt;}
.x55_c01300{left:231.680000pt;}
.xe_c01300{left:240.640000pt;}
.x46_c01300{left:241.920000pt;}
.x6_c01300{left:250.240000pt;}
.x4a_c01300{left:251.520000pt;}
.x21_c01300{left:259.200000pt;}
.x4e_c01300{left:260.480000pt;}
.xf_c01300{left:268.800000pt;}
.x59_c01300{left:270.080000pt;}
.x4b_c01300{left:279.680000pt;}
.x33_c01300{left:289.280000pt;}
.x10_c01300{left:296.960000pt;}
.x28_c01300{left:298.240000pt;}
.x1b_c01300{left:307.200000pt;}
.x4f_c01300{left:309.120000pt;}
.x7_c01300{left:317.440000pt;}
.x15_c01300{left:326.400000pt;}
.x29_c01300{left:327.680000pt;}
.x56_c01300{left:336.000000pt;}
.x2f_c01300{left:337.280000pt;}
.x22_c01300{left:346.880000pt;}
.x8_c01300{left:356.480000pt;}
.x16_c01300{left:364.800000pt;}
.x30_c01300{left:366.720000pt;}
.x1c_c01300{left:375.040000pt;}
.x57_c01300{left:376.320000pt;}
.x40_c01300{left:385.280000pt;}
.x3c_c01300{left:393.600000pt;}
.x31_c01300{left:394.880000pt;}
.x2a_c01300{left:403.200000pt;}
.x1d_c01300{left:405.120000pt;}
.x23_c01300{left:412.800000pt;}
.x2b_c01300{left:423.680000pt;}
.x9_c01300{left:432.640000pt;}
.x34_c01300{left:442.240000pt;}
.x38_c01300{left:451.200000pt;}
.x5a_c01300{left:452.480000pt;}
.x47_c01300{left:460.160000pt;}
.x35_c01300{left:470.400000pt;}
.x11_c01300{left:480.640000pt;}
.x17_c01300{left:483.840000pt;}
.x24_c01300{left:490.240000pt;}
.x2c_c01300{left:499.840000pt;}
.xa_c01300{left:501.120000pt;}
.x41_c01300{left:508.800000pt;}
.x36_c01300{left:518.400000pt;}
.x1e_c01300{left:519.680000pt;}
.x45_c01300{left:526.720000pt;}
.x32_c01300{left:528.000000pt;}
.x2d_c01300{left:529.920000pt;}
.x50_c01300{left:536.320000pt;}
.x3d_c01300{left:537.600000pt;}
.x4c_c01300{left:547.200000pt;}
.x18_c01300{left:549.120000pt;}
.x42_c01300{left:556.160000pt;}
.x1_c01300{left:562.560000pt;}
.x39_c01300{left:566.400000pt;}
.x53_c01300{left:574.720000pt;}
.x37_c01300{left:576.640000pt;}
.x3a_c01300{left:585.600000pt;}
.x25_c01300{left:587.520000pt;}
}





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

.ir_c01301:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01301{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01301;src:url('chunks/assets/font_4e6a87767fc1168b8031d11c.woff2')format("woff");}.ff1_c01301{font-family:ff1_c01301;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m59_c01301{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01301{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m0_c01301{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);}
.m39_c01301{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01301{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01301{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m30_c01301{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m51_c01301{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m7_c01301{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m33_c01301{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m36_c01301{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m12_c01301{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m37_c01301{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01301{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01301{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m29_c01301{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m14_c01301{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m40_c01301{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);}
.m24_c01301{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);}
.m53_c01301{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01301{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m5_c01301{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m1_c01301{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m54_c01301{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_c01301{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m15_c01301{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);}
.m58_c01301{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m5c_c01301{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m35_c01301{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);}
.m2e_c01301{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.mf_c01301{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);}
.m3e_c01301{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01301{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);}
.m45_c01301{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01301{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);}
.m8_c01301{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);}
.m52_c01301{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);}
.m25_c01301{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m4_c01301{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m27_c01301{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_c01301{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m20_c01301{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);}
.m32_c01301{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01301{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);}
.m4e_c01301{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m9_c01301{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01301{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01301{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);}
.mc_c01301{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m49_c01301{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.md_c01301{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);}
.m4a_c01301{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m21_c01301{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);}
.m2f_c01301{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m10_c01301{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.ma_c01301{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);}
.m19_c01301{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m28_c01301{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m3_c01301{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);}
.m2a_c01301{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01301{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01301{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01301{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);}
.m26_c01301{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);}
.m2_c01301{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m50_c01301{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m13_c01301{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);}
.m4b_c01301{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m5a_c01301{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.me_c01301{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m17_c01301{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);}
.m44_c01301{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m18_c01301{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01301{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);}
.m22_c01301{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m31_c01301{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m23_c01301{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);}
.m38_c01301{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m16_c01301{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m57_c01301{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m41_c01301{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m43_c01301{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m46_c01301{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);}
.m56_c01301{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);}
.m48_c01301{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m4f_c01301{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);}
.m6_c01301{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m11_c01301{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m55_c01301{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m47_c01301{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.m5b_c01301{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m42_c01301{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m34_c01301{transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);}
.v0_c01301{vertical-align:0.000000px;}
.v1_c01301{vertical-align:2.880000px;}
.ls0_c01301{letter-spacing:0.000000px;}
.sc__c01301{text-shadow:none;}
.sc0_c01301{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01301{-webkit-text-stroke:0px transparent;}
.sc0_c01301{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01301{word-spacing:-3.039360px;}
.ws2_c01301{word-spacing:0.000000px;}
.ws0_c01301{word-spacing:16.822560px;}
.fc0_c01301{color:transparent;}
.fse_c01301{font-size:11.520000px;}
.fsd_c01301{font-size:17.280000px;}
.fsb_c01301{font-size:20.160000px;}
.fs10_c01301{font-size:25.920000px;}
.fs7_c01301{font-size:34.560000px;}
.fsa_c01301{font-size:37.440000px;}
.fsf_c01301{font-size:40.320000px;}
.fs5_c01301{font-size:43.200000px;}
.fs6_c01301{font-size:46.080000px;}
.fs3_c01301{font-size:48.960000px;}
.fs2_c01301{font-size:51.840000px;}
.fsc_c01301{font-size:54.720000px;}
.fs9_c01301{font-size:57.600000px;}
.fs1_c01301{font-size:60.480000px;}
.fs8_c01301{font-size:63.360000px;}
.fs4_c01301{font-size:69.120000px;}
.fs0_c01301{font-size:77.760000px;}
.y0_c01301{bottom:0.000000px;}
.y73_c01301{bottom:53.280000px;}
.y71_c01301{bottom:54.000000px;}
.y72_c01301{bottom:54.720000px;}
.y6f_c01301{bottom:55.440000px;}
.y6e_c01301{bottom:56.160000px;}
.y70_c01301{bottom:56.880000px;}
.y74_c01301{bottom:57.600000px;}
.y69_c01301{bottom:96.480000px;}
.y6b_c01301{bottom:97.920000px;}
.y6c_c01301{bottom:98.640000px;}
.y68_c01301{bottom:99.360000px;}
.y6a_c01301{bottom:100.080000px;}
.y67_c01301{bottom:100.800000px;}
.y6d_c01301{bottom:102.240000px;}
.y65_c01301{bottom:141.840000px;}
.y64_c01301{bottom:143.280000px;}
.y63_c01301{bottom:144.000000px;}
.y66_c01301{bottom:144.720000px;}
.y5e_c01301{bottom:183.600000px;}
.y5d_c01301{bottom:185.040000px;}
.y5f_c01301{bottom:185.760000px;}
.y60_c01301{bottom:186.480000px;}
.y61_c01301{bottom:187.920000px;}
.y62_c01301{bottom:188.640000px;}
.y5b_c01301{bottom:227.520000px;}
.y5c_c01301{bottom:228.240000px;}
.y5a_c01301{bottom:228.960000px;}
.y59_c01301{bottom:229.680000px;}
.y58_c01301{bottom:270.720000px;}
.y57_c01301{bottom:271.440000px;}
.y55_c01301{bottom:272.160000px;}
.y56_c01301{bottom:272.880000px;}
.y52_c01301{bottom:312.480000px;}
.y51_c01301{bottom:314.640000px;}
.y50_c01301{bottom:315.360000px;}
.y53_c01301{bottom:316.080000px;}
.y54_c01301{bottom:316.800000px;}
.y4f_c01301{bottom:365.760000px;}
.y4c_c01301{bottom:366.480000px;}
.y4d_c01301{bottom:368.640000px;}
.y4e_c01301{bottom:369.360000px;}
.y4a_c01301{bottom:409.680000px;}
.y4b_c01301{bottom:410.400000px;}
.y47_c01301{bottom:411.120000px;}
.y48_c01301{bottom:411.840000px;}
.y49_c01301{bottom:412.560000px;}
.y43_c01301{bottom:452.160000px;}
.y45_c01301{bottom:452.880000px;}
.y44_c01301{bottom:455.040000px;}
.y46_c01301{bottom:455.760000px;}
.y42_c01301{bottom:495.360000px;}
.y41_c01301{bottom:498.240000px;}
.y40_c01301{bottom:498.960000px;}
.y3e_c01301{bottom:549.360000px;}
.y3f_c01301{bottom:550.080000px;}
.y3d_c01301{bottom:551.520000px;}
.y3c_c01301{bottom:552.240000px;}
.y3b_c01301{bottom:552.960000px;}
.y36_c01301{bottom:592.560000px;}
.y38_c01301{bottom:593.280000px;}
.y39_c01301{bottom:594.720000px;}
.y37_c01301{bottom:595.440000px;}
.y3a_c01301{bottom:596.160000px;}
.y35_c01301{bottom:635.040000px;}
.y34_c01301{bottom:635.760000px;}
.y32_c01301{bottom:636.480000px;}
.y31_c01301{bottom:638.640000px;}
.y33_c01301{bottom:639.360000px;}
.y2f_c01301{bottom:678.960000px;}
.y2c_c01301{bottom:679.680000px;}
.y30_c01301{bottom:680.400000px;}
.y2d_c01301{bottom:681.120000px;}
.y2e_c01301{bottom:681.840000px;}
.y2b_c01301{bottom:682.560000px;}
.y26_c01301{bottom:732.240000px;}
.y27_c01301{bottom:732.960000px;}
.y28_c01301{bottom:733.680000px;}
.y2a_c01301{bottom:735.120000px;}
.y29_c01301{bottom:735.840000px;}
.y22_c01301{bottom:775.440000px;}
.y25_c01301{bottom:777.600000px;}
.y23_c01301{bottom:778.320000px;}
.y24_c01301{bottom:779.040000px;}
.y20_c01301{bottom:817.200000px;}
.y21_c01301{bottom:817.920000px;}
.y1c_c01301{bottom:818.640000px;}
.y1f_c01301{bottom:819.360000px;}
.y1d_c01301{bottom:821.520000px;}
.y1e_c01301{bottom:822.240000px;}
.y17_c01301{bottom:860.400000px;}
.y1b_c01301{bottom:861.120000px;}
.y19_c01301{bottom:861.840000px;}
.y1a_c01301{bottom:863.280000px;}
.y18_c01301{bottom:864.000000px;}
.y15_c01301{bottom:902.880000px;}
.y14_c01301{bottom:903.600000px;}
.y12_c01301{bottom:904.320000px;}
.y13_c01301{bottom:905.040000px;}
.y16_c01301{bottom:905.760000px;}
.y10_c01301{bottom:906.480000px;}
.y11_c01301{bottom:907.200000px;}
.yb_c01301{bottom:946.080000px;}
.yd_c01301{bottom:947.520000px;}
.yf_c01301{bottom:948.960000px;}
.ye_c01301{bottom:949.680000px;}
.yc_c01301{bottom:951.120000px;}
.ya_c01301{bottom:989.280000px;}
.y9_c01301{bottom:990.000000px;}
.y7_c01301{bottom:991.440000px;}
.y8_c01301{bottom:992.880000px;}
.y6_c01301{bottom:1031.760000px;}
.y2_c01301{bottom:1033.920000px;}
.y4_c01301{bottom:1034.640000px;}
.y5_c01301{bottom:1035.360000px;}
.y3_c01301{bottom:1036.080000px;}
.y1_c01301{bottom:1078.560000px;}
.h10_c01301{height:10.366875px;}
.hf_c01301{height:15.550313px;}
.hd_c01301{height:18.142031px;}
.h12_c01301{height:23.325469px;}
.h9_c01301{height:31.100625px;}
.hc_c01301{height:33.692344px;}
.h11_c01301{height:36.284062px;}
.h7_c01301{height:38.875781px;}
.h8_c01301{height:41.467500px;}
.h5_c01301{height:44.059219px;}
.h4_c01301{height:46.650937px;}
.he_c01301{height:49.242656px;}
.hb_c01301{height:51.834375px;}
.h3_c01301{height:54.426094px;}
.ha_c01301{height:57.017812px;}
.h6_c01301{height:62.201250px;}
.h2_c01301{height:69.976406px;}
.h1_c01301{height:1146.000000px;}
.h0_c01301{height:1146.240000px;}
.w0_c01301{width:738.000000px;}
.x0_c01301{left:0.000000px;}
.x9_c01301{left:32.400000px;}
.x52_c01301{left:34.560000px;}
.x35_c01301{left:62.640000px;}
.x1e_c01301{left:73.440000px;}
.x24_c01301{left:84.240000px;}
.x56_c01301{left:93.600000px;}
.x2e_c01301{left:95.040000px;}
.x3d_c01301{left:96.480000px;}
.x29_c01301{left:104.400000px;}
.x57_c01301{left:114.480000px;}
.x1f_c01301{left:116.640000px;}
.x4a_c01301{left:126.000000px;}
.x17_c01301{left:127.440000px;}
.x2f_c01301{left:137.520000px;}
.x2_c01301{left:138.960000px;}
.x3e_c01301{left:149.040000px;}
.x50_c01301{left:158.400000px;}
.xa_c01301{left:159.840000px;}
.x4b_c01301{left:169.200000px;}
.x18_c01301{left:170.640000px;}
.x3f_c01301{left:180.720000px;}
.x25_c01301{left:182.160000px;}
.x20_c01301{left:191.520000px;}
.x12_c01301{left:192.960000px;}
.x3a_c01301{left:202.320000px;}
.x45_c01301{left:203.760000px;}
.x36_c01301{left:213.120000px;}
.x2a_c01301{left:214.560000px;}
.xb_c01301{left:224.640000px;}
.x40_c01301{left:234.720000px;}
.x3b_c01301{left:237.600000px;}
.x4c_c01301{left:245.520000px;}
.x3_c01301{left:246.960000px;}
.x58_c01301{left:257.040000px;}
.x53_c01301{left:267.120000px;}
.xc_c01301{left:268.560000px;}
.x13_c01301{left:278.640000px;}
.x4_c01301{left:280.080000px;}
.x4e_c01301{left:289.440000px;}
.xd_c01301{left:300.240000px;}
.x14_c01301{left:301.680000px;}
.x2b_c01301{left:311.040000px;}
.x19_c01301{left:322.560000px;}
.x26_c01301{left:332.640000px;}
.xe_c01301{left:343.440000px;}
.x1a_c01301{left:354.240000px;}
.x15_c01301{left:355.680000px;}
.x5_c01301{left:365.760000px;}
.x46_c01301{left:375.120000px;}
.x2c_c01301{left:376.560000px;}
.xf_c01301{left:386.640000px;}
.x41_c01301{left:388.800000px;}
.x30_c01301{left:396.000000px;}
.x37_c01301{left:397.440000px;}
.x27_c01301{left:408.240000px;}
.x55_c01301{left:419.040000px;}
.x3c_c01301{left:429.120000px;}
.x38_c01301{left:430.560000px;}
.x1b_c01301{left:440.640000px;}
.x10_c01301{left:450.720000px;}
.x31_c01301{left:462.240000px;}
.x48_c01301{left:472.320000px;}
.x2d_c01301{left:473.760000px;}
.x1c_c01301{left:483.840000px;}
.x42_c01301{left:493.920000px;}
.x6_c01301{left:495.360000px;}
.x47_c01301{left:503.280000px;}
.x28_c01301{left:504.720000px;}
.x21_c01301{left:516.240000px;}
.x43_c01301{left:524.880000px;}
.x7_c01301{left:527.760000px;}
.x49_c01301{left:535.680000px;}
.x32_c01301{left:558.000000px;}
.x39_c01301{left:559.440000px;}
.x8_c01301{left:560.880000px;}
.x4f_c01301{left:578.880000px;}
.x22_c01301{left:581.040000px;}
.x54_c01301{left:588.240000px;}
.x1d_c01301{left:591.120000px;}
.x51_c01301{left:600.480000px;}
.x33_c01301{left:612.000000px;}
.x23_c01301{left:613.440000px;}
.x4d_c01301{left:622.080000px;}
.x11_c01301{left:624.960000px;}
.x44_c01301{left:633.600000px;}
.x16_c01301{left:636.480000px;}
.x34_c01301{left:647.280000px;}
.x1_c01301{left:658.800000px;}
@media print{
.v0_c01301{vertical-align:0.000000pt;}
.v1_c01301{vertical-align:2.560000pt;}
.ls0_c01301{letter-spacing:0.000000pt;}
.ws1_c01301{word-spacing:-2.701653pt;}
.ws2_c01301{word-spacing:0.000000pt;}
.ws0_c01301{word-spacing:14.953387pt;}
.fse_c01301{font-size:10.240000pt;}
.fsd_c01301{font-size:15.360000pt;}
.fsb_c01301{font-size:17.920000pt;}
.fs10_c01301{font-size:23.040000pt;}
.fs7_c01301{font-size:30.720000pt;}
.fsa_c01301{font-size:33.280000pt;}
.fsf_c01301{font-size:35.840000pt;}
.fs5_c01301{font-size:38.400000pt;}
.fs6_c01301{font-size:40.960000pt;}
.fs3_c01301{font-size:43.520000pt;}
.fs2_c01301{font-size:46.080000pt;}
.fsc_c01301{font-size:48.640000pt;}
.fs9_c01301{font-size:51.200000pt;}
.fs1_c01301{font-size:53.760000pt;}
.fs8_c01301{font-size:56.320000pt;}
.fs4_c01301{font-size:61.440000pt;}
.fs0_c01301{font-size:69.120000pt;}
.y0_c01301{bottom:0.000000pt;}
.y73_c01301{bottom:47.360000pt;}
.y71_c01301{bottom:48.000000pt;}
.y72_c01301{bottom:48.640000pt;}
.y6f_c01301{bottom:49.280000pt;}
.y6e_c01301{bottom:49.920000pt;}
.y70_c01301{bottom:50.560000pt;}
.y74_c01301{bottom:51.200000pt;}
.y69_c01301{bottom:85.760000pt;}
.y6b_c01301{bottom:87.040000pt;}
.y6c_c01301{bottom:87.680000pt;}
.y68_c01301{bottom:88.320000pt;}
.y6a_c01301{bottom:88.960000pt;}
.y67_c01301{bottom:89.600000pt;}
.y6d_c01301{bottom:90.880000pt;}
.y65_c01301{bottom:126.080000pt;}
.y64_c01301{bottom:127.360000pt;}
.y63_c01301{bottom:128.000000pt;}
.y66_c01301{bottom:128.640000pt;}
.y5e_c01301{bottom:163.200000pt;}
.y5d_c01301{bottom:164.480000pt;}
.y5f_c01301{bottom:165.120000pt;}
.y60_c01301{bottom:165.760000pt;}
.y61_c01301{bottom:167.040000pt;}
.y62_c01301{bottom:167.680000pt;}
.y5b_c01301{bottom:202.240000pt;}
.y5c_c01301{bottom:202.880000pt;}
.y5a_c01301{bottom:203.520000pt;}
.y59_c01301{bottom:204.160000pt;}
.y58_c01301{bottom:240.640000pt;}
.y57_c01301{bottom:241.280000pt;}
.y55_c01301{bottom:241.920000pt;}
.y56_c01301{bottom:242.560000pt;}
.y52_c01301{bottom:277.760000pt;}
.y51_c01301{bottom:279.680000pt;}
.y50_c01301{bottom:280.320000pt;}
.y53_c01301{bottom:280.960000pt;}
.y54_c01301{bottom:281.600000pt;}
.y4f_c01301{bottom:325.120000pt;}
.y4c_c01301{bottom:325.760000pt;}
.y4d_c01301{bottom:327.680000pt;}
.y4e_c01301{bottom:328.320000pt;}
.y4a_c01301{bottom:364.160000pt;}
.y4b_c01301{bottom:364.800000pt;}
.y47_c01301{bottom:365.440000pt;}
.y48_c01301{bottom:366.080000pt;}
.y49_c01301{bottom:366.720000pt;}
.y43_c01301{bottom:401.920000pt;}
.y45_c01301{bottom:402.560000pt;}
.y44_c01301{bottom:404.480000pt;}
.y46_c01301{bottom:405.120000pt;}
.y42_c01301{bottom:440.320000pt;}
.y41_c01301{bottom:442.880000pt;}
.y40_c01301{bottom:443.520000pt;}
.y3e_c01301{bottom:488.320000pt;}
.y3f_c01301{bottom:488.960000pt;}
.y3d_c01301{bottom:490.240000pt;}
.y3c_c01301{bottom:490.880000pt;}
.y3b_c01301{bottom:491.520000pt;}
.y36_c01301{bottom:526.720000pt;}
.y38_c01301{bottom:527.360000pt;}
.y39_c01301{bottom:528.640000pt;}
.y37_c01301{bottom:529.280000pt;}
.y3a_c01301{bottom:529.920000pt;}
.y35_c01301{bottom:564.480000pt;}
.y34_c01301{bottom:565.120000pt;}
.y32_c01301{bottom:565.760000pt;}
.y31_c01301{bottom:567.680000pt;}
.y33_c01301{bottom:568.320000pt;}
.y2f_c01301{bottom:603.520000pt;}
.y2c_c01301{bottom:604.160000pt;}
.y30_c01301{bottom:604.800000pt;}
.y2d_c01301{bottom:605.440000pt;}
.y2e_c01301{bottom:606.080000pt;}
.y2b_c01301{bottom:606.720000pt;}
.y26_c01301{bottom:650.880000pt;}
.y27_c01301{bottom:651.520000pt;}
.y28_c01301{bottom:652.160000pt;}
.y2a_c01301{bottom:653.440000pt;}
.y29_c01301{bottom:654.080000pt;}
.y22_c01301{bottom:689.280000pt;}
.y25_c01301{bottom:691.200000pt;}
.y23_c01301{bottom:691.840000pt;}
.y24_c01301{bottom:692.480000pt;}
.y20_c01301{bottom:726.400000pt;}
.y21_c01301{bottom:727.040000pt;}
.y1c_c01301{bottom:727.680000pt;}
.y1f_c01301{bottom:728.320000pt;}
.y1d_c01301{bottom:730.240000pt;}
.y1e_c01301{bottom:730.880000pt;}
.y17_c01301{bottom:764.800000pt;}
.y1b_c01301{bottom:765.440000pt;}
.y19_c01301{bottom:766.080000pt;}
.y1a_c01301{bottom:767.360000pt;}
.y18_c01301{bottom:768.000000pt;}
.y15_c01301{bottom:802.560000pt;}
.y14_c01301{bottom:803.200000pt;}
.y12_c01301{bottom:803.840000pt;}
.y13_c01301{bottom:804.480000pt;}
.y16_c01301{bottom:805.120000pt;}
.y10_c01301{bottom:805.760000pt;}
.y11_c01301{bottom:806.400000pt;}
.yb_c01301{bottom:840.960000pt;}
.yd_c01301{bottom:842.240000pt;}
.yf_c01301{bottom:843.520000pt;}
.ye_c01301{bottom:844.160000pt;}
.yc_c01301{bottom:845.440000pt;}
.ya_c01301{bottom:879.360000pt;}
.y9_c01301{bottom:880.000000pt;}
.y7_c01301{bottom:881.280000pt;}
.y8_c01301{bottom:882.560000pt;}
.y6_c01301{bottom:917.120000pt;}
.y2_c01301{bottom:919.040000pt;}
.y4_c01301{bottom:919.680000pt;}
.y5_c01301{bottom:920.320000pt;}
.y3_c01301{bottom:920.960000pt;}
.y1_c01301{bottom:958.720000pt;}
.h10_c01301{height:9.215000pt;}
.hf_c01301{height:13.822500pt;}
.hd_c01301{height:16.126250pt;}
.h12_c01301{height:20.733750pt;}
.h9_c01301{height:27.645000pt;}
.hc_c01301{height:29.948750pt;}
.h11_c01301{height:32.252500pt;}
.h7_c01301{height:34.556250pt;}
.h8_c01301{height:36.860000pt;}
.h5_c01301{height:39.163750pt;}
.h4_c01301{height:41.467500pt;}
.he_c01301{height:43.771250pt;}
.hb_c01301{height:46.075000pt;}
.h3_c01301{height:48.378750pt;}
.ha_c01301{height:50.682500pt;}
.h6_c01301{height:55.290000pt;}
.h2_c01301{height:62.201250pt;}
.h1_c01301{height:1018.666667pt;}
.h0_c01301{height:1018.880000pt;}
.w0_c01301{width:656.000000pt;}
.x0_c01301{left:0.000000pt;}
.x9_c01301{left:28.800000pt;}
.x52_c01301{left:30.720000pt;}
.x35_c01301{left:55.680000pt;}
.x1e_c01301{left:65.280000pt;}
.x24_c01301{left:74.880000pt;}
.x56_c01301{left:83.200000pt;}
.x2e_c01301{left:84.480000pt;}
.x3d_c01301{left:85.760000pt;}
.x29_c01301{left:92.800000pt;}
.x57_c01301{left:101.760000pt;}
.x1f_c01301{left:103.680000pt;}
.x4a_c01301{left:112.000000pt;}
.x17_c01301{left:113.280000pt;}
.x2f_c01301{left:122.240000pt;}
.x2_c01301{left:123.520000pt;}
.x3e_c01301{left:132.480000pt;}
.x50_c01301{left:140.800000pt;}
.xa_c01301{left:142.080000pt;}
.x4b_c01301{left:150.400000pt;}
.x18_c01301{left:151.680000pt;}
.x3f_c01301{left:160.640000pt;}
.x25_c01301{left:161.920000pt;}
.x20_c01301{left:170.240000pt;}
.x12_c01301{left:171.520000pt;}
.x3a_c01301{left:179.840000pt;}
.x45_c01301{left:181.120000pt;}
.x36_c01301{left:189.440000pt;}
.x2a_c01301{left:190.720000pt;}
.xb_c01301{left:199.680000pt;}
.x40_c01301{left:208.640000pt;}
.x3b_c01301{left:211.200000pt;}
.x4c_c01301{left:218.240000pt;}
.x3_c01301{left:219.520000pt;}
.x58_c01301{left:228.480000pt;}
.x53_c01301{left:237.440000pt;}
.xc_c01301{left:238.720000pt;}
.x13_c01301{left:247.680000pt;}
.x4_c01301{left:248.960000pt;}
.x4e_c01301{left:257.280000pt;}
.xd_c01301{left:266.880000pt;}
.x14_c01301{left:268.160000pt;}
.x2b_c01301{left:276.480000pt;}
.x19_c01301{left:286.720000pt;}
.x26_c01301{left:295.680000pt;}
.xe_c01301{left:305.280000pt;}
.x1a_c01301{left:314.880000pt;}
.x15_c01301{left:316.160000pt;}
.x5_c01301{left:325.120000pt;}
.x46_c01301{left:333.440000pt;}
.x2c_c01301{left:334.720000pt;}
.xf_c01301{left:343.680000pt;}
.x41_c01301{left:345.600000pt;}
.x30_c01301{left:352.000000pt;}
.x37_c01301{left:353.280000pt;}
.x27_c01301{left:362.880000pt;}
.x55_c01301{left:372.480000pt;}
.x3c_c01301{left:381.440000pt;}
.x38_c01301{left:382.720000pt;}
.x1b_c01301{left:391.680000pt;}
.x10_c01301{left:400.640000pt;}
.x31_c01301{left:410.880000pt;}
.x48_c01301{left:419.840000pt;}
.x2d_c01301{left:421.120000pt;}
.x1c_c01301{left:430.080000pt;}
.x42_c01301{left:439.040000pt;}
.x6_c01301{left:440.320000pt;}
.x47_c01301{left:447.360000pt;}
.x28_c01301{left:448.640000pt;}
.x21_c01301{left:458.880000pt;}
.x43_c01301{left:466.560000pt;}
.x7_c01301{left:469.120000pt;}
.x49_c01301{left:476.160000pt;}
.x32_c01301{left:496.000000pt;}
.x39_c01301{left:497.280000pt;}
.x8_c01301{left:498.560000pt;}
.x4f_c01301{left:514.560000pt;}
.x22_c01301{left:516.480000pt;}
.x54_c01301{left:522.880000pt;}
.x1d_c01301{left:525.440000pt;}
.x51_c01301{left:533.760000pt;}
.x33_c01301{left:544.000000pt;}
.x23_c01301{left:545.280000pt;}
.x4d_c01301{left:552.960000pt;}
.x11_c01301{left:555.520000pt;}
.x44_c01301{left:563.200000pt;}
.x16_c01301{left:565.760000pt;}
.x34_c01301{left:575.360000pt;}
.x1_c01301{left:585.600000pt;}
}





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

.ir_c01302:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01302{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01302;src:url('chunks/assets/font_1b37fbcd4bec3996698da65b.woff2')format("woff");}.ff1_c01302{font-family:ff1_c01302;line-height:1.109863;font-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_c01302{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);}
.m1e_c01302{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);}
.m44_c01302{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);}
.m53_c01302{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);}
.m2e_c01302{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01302{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01302{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m42_c01302{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m26_c01302{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m47_c01302{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01302{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m51_c01302{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m57_c01302{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m31_c01302{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);}
.m2a_c01302{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m35_c01302{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m22_c01302{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);}
.m4a_c01302{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_c01302{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m56_c01302{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);}
.m2_c01302{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m24_c01302{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m13_c01302{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01302{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m0_c01302{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);}
.m4d_c01302{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m8_c01302{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m49_c01302{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);}
.m3a_c01302{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);}
.m1f_c01302{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_c01302{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m34_c01302{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);}
.m3f_c01302{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);}
.m27_c01302{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);}
.m54_c01302{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);}
.m28_c01302{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m3_c01302{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m15_c01302{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);}
.me_c01302{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m1_c01302{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);}
.m45_c01302{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);}
.m38_c01302{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);}
.m3d_c01302{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m37_c01302{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m14_c01302{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m20_c01302{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m32_c01302{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);}
.m4_c01302{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.ma_c01302{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m4f_c01302{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);}
.m21_c01302{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m29_c01302{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);}
.m46_c01302{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01302{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m9_c01302{transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01302{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m33_c01302{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01302{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m6_c01302{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);}
.m4c_c01302{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01302{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.mc_c01302{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m41_c01302{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m40_c01302{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);}
.m7_c01302{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);}
.m5_c01302{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m43_c01302{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);}
.m3e_c01302{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m12_c01302{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m4e_c01302{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01302{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);}
.m52_c01302{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m36_c01302{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m30_c01302{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m39_c01302{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m17_c01302{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m16_c01302{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);}
.m10_c01302{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);}
.m11_c01302{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.mb_c01302{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01302{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);}
.m25_c01302{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);}
.m23_c01302{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m19_c01302{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);}
.m55_c01302{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.mf_c01302{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01302{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m50_c01302{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.v0_c01302{vertical-align:0.000000px;}
.ls0_c01302{letter-spacing:0.000000px;}
.sc__c01302{text-shadow:none;}
.sc0_c01302{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01302{-webkit-text-stroke:0px transparent;}
.sc0_c01302{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01302{word-spacing:0.000000px;}
.fc0_c01302{color:transparent;}
.fs5_c01302{font-size:34.560000px;}
.fs8_c01302{font-size:37.440000px;}
.fs6_c01302{font-size:43.200000px;}
.fs1_c01302{font-size:46.080000px;}
.fs3_c01302{font-size:48.960000px;}
.fs4_c01302{font-size:51.840000px;}
.fsb_c01302{font-size:54.720000px;}
.fs9_c01302{font-size:57.600000px;}
.fs2_c01302{font-size:60.480000px;}
.fsc_c01302{font-size:63.360000px;}
.fs7_c01302{font-size:66.240000px;}
.fsa_c01302{font-size:69.120000px;}
.fs0_c01302{font-size:74.880000px;}
.y0_c01302{bottom:0.000000px;}
.y67_c01302{bottom:52.560000px;}
.y68_c01302{bottom:54.000000px;}
.y66_c01302{bottom:54.720000px;}
.y65_c01302{bottom:55.440000px;}
.y69_c01302{bottom:56.160000px;}
.y6a_c01302{bottom:57.600000px;}
.y6b_c01302{bottom:58.320000px;}
.y64_c01302{bottom:59.040000px;}
.y61_c01302{bottom:95.760000px;}
.y5f_c01302{bottom:98.640000px;}
.y60_c01302{bottom:99.360000px;}
.y62_c01302{bottom:100.080000px;}
.y63_c01302{bottom:100.800000px;}
.y5c_c01302{bottom:138.960000px;}
.y5d_c01302{bottom:139.680000px;}
.y5e_c01302{bottom:141.120000px;}
.y5b_c01302{bottom:141.840000px;}
.y5a_c01302{bottom:143.280000px;}
.y55_c01302{bottom:182.160000px;}
.y58_c01302{bottom:183.600000px;}
.y56_c01302{bottom:185.040000px;}
.y57_c01302{bottom:185.760000px;}
.y59_c01302{bottom:187.200000px;}
.y52_c01302{bottom:225.360000px;}
.y53_c01302{bottom:226.800000px;}
.y50_c01302{bottom:228.240000px;}
.y51_c01302{bottom:228.960000px;}
.y54_c01302{bottom:230.400000px;}
.y4e_c01302{bottom:268.560000px;}
.y4d_c01302{bottom:271.440000px;}
.y4f_c01302{bottom:272.160000px;}
.y4b_c01302{bottom:312.480000px;}
.y4a_c01302{bottom:314.640000px;}
.y49_c01302{bottom:315.360000px;}
.y4c_c01302{bottom:316.800000px;}
.y47_c01302{bottom:365.760000px;}
.y48_c01302{bottom:366.480000px;}
.y45_c01302{bottom:408.960000px;}
.y43_c01302{bottom:409.680000px;}
.y44_c01302{bottom:411.840000px;}
.y46_c01302{bottom:412.560000px;}
.y42_c01302{bottom:413.280000px;}
.y40_c01302{bottom:452.880000px;}
.y3d_c01302{bottom:454.320000px;}
.y3f_c01302{bottom:455.040000px;}
.y3e_c01302{bottom:455.760000px;}
.y41_c01302{bottom:456.480000px;}
.y3a_c01302{bottom:495.360000px;}
.y3c_c01302{bottom:496.080000px;}
.y39_c01302{bottom:498.240000px;}
.y3b_c01302{bottom:498.960000px;}
.y36_c01302{bottom:538.560000px;}
.y38_c01302{bottom:539.280000px;}
.y35_c01302{bottom:541.440000px;}
.y37_c01302{bottom:542.160000px;}
.y32_c01302{bottom:581.760000px;}
.y34_c01302{bottom:583.920000px;}
.y33_c01302{bottom:584.640000px;}
.y31_c01302{bottom:585.360000px;}
.y2f_c01302{bottom:635.760000px;}
.y30_c01302{bottom:637.200000px;}
.y2e_c01302{bottom:637.920000px;}
.y2d_c01302{bottom:678.240000px;}
.y2b_c01302{bottom:680.400000px;}
.y2c_c01302{bottom:681.120000px;}
.y28_c01302{bottom:720.720000px;}
.y29_c01302{bottom:721.440000px;}
.y2a_c01302{bottom:722.880000px;}
.y27_c01302{bottom:723.600000px;}
.y26_c01302{bottom:724.320000px;}
.y25_c01302{bottom:763.200000px;}
.y24_c01302{bottom:763.920000px;}
.y22_c01302{bottom:764.640000px;}
.y21_c01302{bottom:766.080000px;}
.y23_c01302{bottom:767.520000px;}
.y1f_c01302{bottom:805.680000px;}
.y1d_c01302{bottom:807.120000px;}
.y20_c01302{bottom:808.560000px;}
.y1e_c01302{bottom:809.280000px;}
.y1c_c01302{bottom:810.000000px;}
.y16_c01302{bottom:859.680000px;}
.y1a_c01302{bottom:860.400000px;}
.y19_c01302{bottom:861.120000px;}
.y1b_c01302{bottom:862.560000px;}
.y18_c01302{bottom:864.000000px;}
.y17_c01302{bottom:864.720000px;}
.y14_c01302{bottom:903.600000px;}
.y11_c01302{bottom:904.320000px;}
.y13_c01302{bottom:905.040000px;}
.y15_c01302{bottom:905.760000px;}
.y10_c01302{bottom:906.480000px;}
.y12_c01302{bottom:907.200000px;}
.ye_c01302{bottom:946.800000px;}
.yc_c01302{bottom:948.960000px;}
.yf_c01302{bottom:949.680000px;}
.yd_c01302{bottom:950.400000px;}
.y8_c01302{bottom:989.280000px;}
.y9_c01302{bottom:990.000000px;}
.y7_c01302{bottom:990.720000px;}
.yb_c01302{bottom:991.440000px;}
.ya_c01302{bottom:992.160000px;}
.y6_c01302{bottom:992.880000px;}
.y2_c01302{bottom:1032.480000px;}
.y5_c01302{bottom:1033.200000px;}
.y4_c01302{bottom:1033.920000px;}
.y3_c01302{bottom:1036.080000px;}
.y1_c01302{bottom:1083.600000px;}
.h7_c01302{height:31.100625px;}
.ha_c01302{height:33.692344px;}
.h8_c01302{height:38.875781px;}
.h3_c01302{height:41.467500px;}
.h5_c01302{height:44.059219px;}
.h6_c01302{height:46.650937px;}
.hd_c01302{height:49.242656px;}
.hb_c01302{height:51.834375px;}
.h4_c01302{height:54.426094px;}
.he_c01302{height:57.017812px;}
.h9_c01302{height:59.609531px;}
.hc_c01302{height:62.201250px;}
.h2_c01302{height:67.384687px;}
.h1_c01302{height:1146.000000px;}
.h0_c01302{height:1146.240000px;}
.w0_c01302{width:738.000000px;}
.x0_c01302{left:0.000000px;}
.x2_c01302{left:33.840000px;}
.x38_c01302{left:35.280000px;}
.x43_c01302{left:36.720000px;}
.x3_c01302{left:54.000000px;}
.x15_c01302{left:64.800000px;}
.x2a_c01302{left:76.320000px;}
.x1c_c01302{left:84.960000px;}
.xa_c01302{left:97.200000px;}
.x3d_c01302{left:108.000000px;}
.x1d_c01302{left:118.080000px;}
.x53_c01302{left:119.520000px;}
.x44_c01302{left:138.960000px;}
.xb_c01302{left:141.120000px;}
.x4_c01302{left:151.200000px;}
.x3e_c01302{left:160.560000px;}
.x23_c01302{left:162.000000px;}
.x41_c01302{left:171.360000px;}
.xc_c01302{left:172.800000px;}
.x1e_c01302{left:184.320000px;}
.x39_c01302{left:194.400000px;}
.x31_c01302{left:205.200000px;}
.x4e_c01302{left:216.000000px;}
.x24_c01302{left:217.440000px;}
.x16_c01302{left:226.800000px;}
.x1f_c01302{left:236.880000px;}
.x5_c01302{left:239.040000px;}
.x25_c01302{left:249.120000px;}
.x34_c01302{left:259.920000px;}
.x4f_c01302{left:270.000000px;}
.x2e_c01302{left:271.440000px;}
.xd_c01302{left:280.800000px;}
.x48_c01302{left:282.240000px;}
.x35_c01302{left:291.600000px;}
.x4c_c01302{left:301.680000px;}
.xe_c01302{left:303.120000px;}
.x30_c01302{left:313.920000px;}
.x3f_c01302{left:324.000000px;}
.x32_c01302{left:335.520000px;}
.x6_c01302{left:345.600000px;}
.xf_c01302{left:356.400000px;}
.x17_c01302{left:357.840000px;}
.x33_c01302{left:367.920000px;}
.x20_c01302{left:378.720000px;}
.x2b_c01302{left:380.160000px;}
.x18_c01302{left:388.800000px;}
.x10_c01302{left:400.320000px;}
.x21_c01302{left:411.120000px;}
.x7_c01302{left:421.200000px;}
.x2f_c01302{left:422.640000px;}
.x50_c01302{left:430.560000px;}
.x26_c01302{left:432.720000px;}
.x11_c01302{left:443.520000px;}
.x2c_c01302{left:454.320000px;}
.x4d_c01302{left:473.040000px;}
.x45_c01302{left:474.480000px;}
.x12_c01302{left:475.920000px;}
.x19_c01302{left:486.000000px;}
.x40_c01302{left:495.360000px;}
.x8_c01302{left:497.520000px;}
.x54_c01302{left:506.160000px;}
.x13_c01302{left:507.600000px;}
.x27_c01302{left:509.040000px;}
.x49_c01302{left:517.680000px;}
.x1a_c01302{left:519.120000px;}
.x3a_c01302{left:529.200000px;}
.x46_c01302{left:538.560000px;}
.x9_c01302{left:540.720000px;}
.x4a_c01302{left:549.360000px;}
.x51_c01302{left:559.440000px;}
.x2d_c01302{left:561.600000px;}
.x42_c01302{left:563.760000px;}
.x28_c01302{left:572.400000px;}
.x14_c01302{left:573.840000px;}
.x36_c01302{left:581.760000px;}
.x55_c01302{left:591.840000px;}
.x4b_c01302{left:593.280000px;}
.x52_c01302{left:602.640000px;}
.x22_c01302{left:605.520000px;}
.x3b_c01302{left:614.160000px;}
.x56_c01302{left:624.240000px;}
.x37_c01302{left:625.680000px;}
.x1_c01302{left:631.440000px;}
.x47_c01302{left:635.040000px;}
.x1b_c01302{left:637.920000px;}
.x29_c01302{left:648.000000px;}
.x3c_c01302{left:656.640000px;}
@media print{
.v0_c01302{vertical-align:0.000000pt;}
.ls0_c01302{letter-spacing:0.000000pt;}
.ws0_c01302{word-spacing:0.000000pt;}
.fs5_c01302{font-size:30.720000pt;}
.fs8_c01302{font-size:33.280000pt;}
.fs6_c01302{font-size:38.400000pt;}
.fs1_c01302{font-size:40.960000pt;}
.fs3_c01302{font-size:43.520000pt;}
.fs4_c01302{font-size:46.080000pt;}
.fsb_c01302{font-size:48.640000pt;}
.fs9_c01302{font-size:51.200000pt;}
.fs2_c01302{font-size:53.760000pt;}
.fsc_c01302{font-size:56.320000pt;}
.fs7_c01302{font-size:58.880000pt;}
.fsa_c01302{font-size:61.440000pt;}
.fs0_c01302{font-size:66.560000pt;}
.y0_c01302{bottom:0.000000pt;}
.y67_c01302{bottom:46.720000pt;}
.y68_c01302{bottom:48.000000pt;}
.y66_c01302{bottom:48.640000pt;}
.y65_c01302{bottom:49.280000pt;}
.y69_c01302{bottom:49.920000pt;}
.y6a_c01302{bottom:51.200000pt;}
.y6b_c01302{bottom:51.840000pt;}
.y64_c01302{bottom:52.480000pt;}
.y61_c01302{bottom:85.120000pt;}
.y5f_c01302{bottom:87.680000pt;}
.y60_c01302{bottom:88.320000pt;}
.y62_c01302{bottom:88.960000pt;}
.y63_c01302{bottom:89.600000pt;}
.y5c_c01302{bottom:123.520000pt;}
.y5d_c01302{bottom:124.160000pt;}
.y5e_c01302{bottom:125.440000pt;}
.y5b_c01302{bottom:126.080000pt;}
.y5a_c01302{bottom:127.360000pt;}
.y55_c01302{bottom:161.920000pt;}
.y58_c01302{bottom:163.200000pt;}
.y56_c01302{bottom:164.480000pt;}
.y57_c01302{bottom:165.120000pt;}
.y59_c01302{bottom:166.400000pt;}
.y52_c01302{bottom:200.320000pt;}
.y53_c01302{bottom:201.600000pt;}
.y50_c01302{bottom:202.880000pt;}
.y51_c01302{bottom:203.520000pt;}
.y54_c01302{bottom:204.800000pt;}
.y4e_c01302{bottom:238.720000pt;}
.y4d_c01302{bottom:241.280000pt;}
.y4f_c01302{bottom:241.920000pt;}
.y4b_c01302{bottom:277.760000pt;}
.y4a_c01302{bottom:279.680000pt;}
.y49_c01302{bottom:280.320000pt;}
.y4c_c01302{bottom:281.600000pt;}
.y47_c01302{bottom:325.120000pt;}
.y48_c01302{bottom:325.760000pt;}
.y45_c01302{bottom:363.520000pt;}
.y43_c01302{bottom:364.160000pt;}
.y44_c01302{bottom:366.080000pt;}
.y46_c01302{bottom:366.720000pt;}
.y42_c01302{bottom:367.360000pt;}
.y40_c01302{bottom:402.560000pt;}
.y3d_c01302{bottom:403.840000pt;}
.y3f_c01302{bottom:404.480000pt;}
.y3e_c01302{bottom:405.120000pt;}
.y41_c01302{bottom:405.760000pt;}
.y3a_c01302{bottom:440.320000pt;}
.y3c_c01302{bottom:440.960000pt;}
.y39_c01302{bottom:442.880000pt;}
.y3b_c01302{bottom:443.520000pt;}
.y36_c01302{bottom:478.720000pt;}
.y38_c01302{bottom:479.360000pt;}
.y35_c01302{bottom:481.280000pt;}
.y37_c01302{bottom:481.920000pt;}
.y32_c01302{bottom:517.120000pt;}
.y34_c01302{bottom:519.040000pt;}
.y33_c01302{bottom:519.680000pt;}
.y31_c01302{bottom:520.320000pt;}
.y2f_c01302{bottom:565.120000pt;}
.y30_c01302{bottom:566.400000pt;}
.y2e_c01302{bottom:567.040000pt;}
.y2d_c01302{bottom:602.880000pt;}
.y2b_c01302{bottom:604.800000pt;}
.y2c_c01302{bottom:605.440000pt;}
.y28_c01302{bottom:640.640000pt;}
.y29_c01302{bottom:641.280000pt;}
.y2a_c01302{bottom:642.560000pt;}
.y27_c01302{bottom:643.200000pt;}
.y26_c01302{bottom:643.840000pt;}
.y25_c01302{bottom:678.400000pt;}
.y24_c01302{bottom:679.040000pt;}
.y22_c01302{bottom:679.680000pt;}
.y21_c01302{bottom:680.960000pt;}
.y23_c01302{bottom:682.240000pt;}
.y1f_c01302{bottom:716.160000pt;}
.y1d_c01302{bottom:717.440000pt;}
.y20_c01302{bottom:718.720000pt;}
.y1e_c01302{bottom:719.360000pt;}
.y1c_c01302{bottom:720.000000pt;}
.y16_c01302{bottom:764.160000pt;}
.y1a_c01302{bottom:764.800000pt;}
.y19_c01302{bottom:765.440000pt;}
.y1b_c01302{bottom:766.720000pt;}
.y18_c01302{bottom:768.000000pt;}
.y17_c01302{bottom:768.640000pt;}
.y14_c01302{bottom:803.200000pt;}
.y11_c01302{bottom:803.840000pt;}
.y13_c01302{bottom:804.480000pt;}
.y15_c01302{bottom:805.120000pt;}
.y10_c01302{bottom:805.760000pt;}
.y12_c01302{bottom:806.400000pt;}
.ye_c01302{bottom:841.600000pt;}
.yc_c01302{bottom:843.520000pt;}
.yf_c01302{bottom:844.160000pt;}
.yd_c01302{bottom:844.800000pt;}
.y8_c01302{bottom:879.360000pt;}
.y9_c01302{bottom:880.000000pt;}
.y7_c01302{bottom:880.640000pt;}
.yb_c01302{bottom:881.280000pt;}
.ya_c01302{bottom:881.920000pt;}
.y6_c01302{bottom:882.560000pt;}
.y2_c01302{bottom:917.760000pt;}
.y5_c01302{bottom:918.400000pt;}
.y4_c01302{bottom:919.040000pt;}
.y3_c01302{bottom:920.960000pt;}
.y1_c01302{bottom:963.200000pt;}
.h7_c01302{height:27.645000pt;}
.ha_c01302{height:29.948750pt;}
.h8_c01302{height:34.556250pt;}
.h3_c01302{height:36.860000pt;}
.h5_c01302{height:39.163750pt;}
.h6_c01302{height:41.467500pt;}
.hd_c01302{height:43.771250pt;}
.hb_c01302{height:46.075000pt;}
.h4_c01302{height:48.378750pt;}
.he_c01302{height:50.682500pt;}
.h9_c01302{height:52.986250pt;}
.hc_c01302{height:55.290000pt;}
.h2_c01302{height:59.897500pt;}
.h1_c01302{height:1018.666667pt;}
.h0_c01302{height:1018.880000pt;}
.w0_c01302{width:656.000000pt;}
.x0_c01302{left:0.000000pt;}
.x2_c01302{left:30.080000pt;}
.x38_c01302{left:31.360000pt;}
.x43_c01302{left:32.640000pt;}
.x3_c01302{left:48.000000pt;}
.x15_c01302{left:57.600000pt;}
.x2a_c01302{left:67.840000pt;}
.x1c_c01302{left:75.520000pt;}
.xa_c01302{left:86.400000pt;}
.x3d_c01302{left:96.000000pt;}
.x1d_c01302{left:104.960000pt;}
.x53_c01302{left:106.240000pt;}
.x44_c01302{left:123.520000pt;}
.xb_c01302{left:125.440000pt;}
.x4_c01302{left:134.400000pt;}
.x3e_c01302{left:142.720000pt;}
.x23_c01302{left:144.000000pt;}
.x41_c01302{left:152.320000pt;}
.xc_c01302{left:153.600000pt;}
.x1e_c01302{left:163.840000pt;}
.x39_c01302{left:172.800000pt;}
.x31_c01302{left:182.400000pt;}
.x4e_c01302{left:192.000000pt;}
.x24_c01302{left:193.280000pt;}
.x16_c01302{left:201.600000pt;}
.x1f_c01302{left:210.560000pt;}
.x5_c01302{left:212.480000pt;}
.x25_c01302{left:221.440000pt;}
.x34_c01302{left:231.040000pt;}
.x4f_c01302{left:240.000000pt;}
.x2e_c01302{left:241.280000pt;}
.xd_c01302{left:249.600000pt;}
.x48_c01302{left:250.880000pt;}
.x35_c01302{left:259.200000pt;}
.x4c_c01302{left:268.160000pt;}
.xe_c01302{left:269.440000pt;}
.x30_c01302{left:279.040000pt;}
.x3f_c01302{left:288.000000pt;}
.x32_c01302{left:298.240000pt;}
.x6_c01302{left:307.200000pt;}
.xf_c01302{left:316.800000pt;}
.x17_c01302{left:318.080000pt;}
.x33_c01302{left:327.040000pt;}
.x20_c01302{left:336.640000pt;}
.x2b_c01302{left:337.920000pt;}
.x18_c01302{left:345.600000pt;}
.x10_c01302{left:355.840000pt;}
.x21_c01302{left:365.440000pt;}
.x7_c01302{left:374.400000pt;}
.x2f_c01302{left:375.680000pt;}
.x50_c01302{left:382.720000pt;}
.x26_c01302{left:384.640000pt;}
.x11_c01302{left:394.240000pt;}
.x2c_c01302{left:403.840000pt;}
.x4d_c01302{left:420.480000pt;}
.x45_c01302{left:421.760000pt;}
.x12_c01302{left:423.040000pt;}
.x19_c01302{left:432.000000pt;}
.x40_c01302{left:440.320000pt;}
.x8_c01302{left:442.240000pt;}
.x54_c01302{left:449.920000pt;}
.x13_c01302{left:451.200000pt;}
.x27_c01302{left:452.480000pt;}
.x49_c01302{left:460.160000pt;}
.x1a_c01302{left:461.440000pt;}
.x3a_c01302{left:470.400000pt;}
.x46_c01302{left:478.720000pt;}
.x9_c01302{left:480.640000pt;}
.x4a_c01302{left:488.320000pt;}
.x51_c01302{left:497.280000pt;}
.x2d_c01302{left:499.200000pt;}
.x42_c01302{left:501.120000pt;}
.x28_c01302{left:508.800000pt;}
.x14_c01302{left:510.080000pt;}
.x36_c01302{left:517.120000pt;}
.x55_c01302{left:526.080000pt;}
.x4b_c01302{left:527.360000pt;}
.x52_c01302{left:535.680000pt;}
.x22_c01302{left:538.240000pt;}
.x3b_c01302{left:545.920000pt;}
.x56_c01302{left:554.880000pt;}
.x37_c01302{left:556.160000pt;}
.x1_c01302{left:561.280000pt;}
.x47_c01302{left:564.480000pt;}
.x1b_c01302{left:567.040000pt;}
.x29_c01302{left:576.000000pt;}
.x3c_c01302{left:583.680000pt;}
}





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

.ir_c01303:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01303{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01303;src:url('chunks/assets/font_f414f314a848bf89aeb08d8d.woff2')format("woff");}.ff1_c01303{font-family:ff1_c01303;line-height:1.109863;font-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_c01303{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_c01303{transform:matrix(0.242600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242600,0.000000,0.000000,0.250000,0,0);}
.m35_c01303{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);}
.m4a_c01303{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);}
.m5a_c01303{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);}
.m3f_c01303{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.mf_c01303{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);}
.m40_c01303{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);}
.m25_c01303{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m34_c01303{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m16_c01303{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m0_c01303{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m22_c01303{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m36_c01303{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m38_c01303{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m59_c01303{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m27_c01303{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m58_c01303{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m50_c01303{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);}
.m49_c01303{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);}
.m44_c01303{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m52_c01303{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m5_c01303{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);}
.m3d_c01303{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m9_c01303{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m3_c01303{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01303{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m17_c01303{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m37_c01303{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);}
.m39_c01303{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.mb_c01303{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);}
.m4c_c01303{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m30_c01303{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);}
.m1d_c01303{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m18_c01303{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);}
.m1c_c01303{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);}
.ma_c01303{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m23_c01303{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m4d_c01303{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.md_c01303{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m53_c01303{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);}
.m43_c01303{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01303{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);}
.m57_c01303{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_c01303{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m6_c01303{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m28_c01303{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m29_c01303{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01303{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);}
.m4b_c01303{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m14_c01303{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m15_c01303{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m1_c01303{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m4f_c01303{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);}
.m55_c01303{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m12_c01303{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m19_c01303{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);}
.m3b_c01303{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m56_c01303{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m26_c01303{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m4_c01303{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);}
.m2f_c01303{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m7_c01303{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m41_c01303{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m33_c01303{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);}
.m46_c01303{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m24_c01303{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01303{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m32_c01303{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m11_c01303{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01303{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m51_c01303{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01303{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m20_c01303{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01303{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m54_c01303{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);}
.m1e_c01303{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.me_c01303{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);}
.m21_c01303{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01303{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m45_c01303{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m8_c01303{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01303{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01303{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);}
.m13_c01303{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);}
.m4e_c01303{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m31_c01303{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);}
.m2_c01303{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m47_c01303{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m48_c01303{transform:matrix(0.697500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697500,0.000000,0.000000,0.250000,0,0);}
.m42_c01303{transform:matrix(1.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01303{vertical-align:0.000000px;}
.ls0_c01303{letter-spacing:0.000000px;}
.sc__c01303{text-shadow:none;}
.sc0_c01303{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01303{-webkit-text-stroke:0px transparent;}
.sc0_c01303{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01303{word-spacing:-4.457514px;}
.ws1_c01303{word-spacing:0.000000px;}
._0_c01303{width:26.818802px;}
.fc0_c01303{color:transparent;}
.fsd_c01303{font-size:17.280000px;}
.fsc_c01303{font-size:31.680000px;}
.fs1_c01303{font-size:34.560000px;}
.fse_c01303{font-size:37.440000px;}
.fs9_c01303{font-size:43.200000px;}
.fs5_c01303{font-size:46.080000px;}
.fs2_c01303{font-size:48.960000px;}
.fs6_c01303{font-size:51.840000px;}
.fsa_c01303{font-size:54.720000px;}
.fs3_c01303{font-size:57.600000px;}
.fs7_c01303{font-size:60.480000px;}
.fsb_c01303{font-size:63.360000px;}
.fs4_c01303{font-size:66.240000px;}
.fs8_c01303{font-size:69.120000px;}
.fs0_c01303{font-size:74.880000px;}
.y0_c01303{bottom:0.000000px;}
.y75_c01303{bottom:33.120000px;}
.y76_c01303{bottom:33.840000px;}
.y77_c01303{bottom:35.280000px;}
.y78_c01303{bottom:36.000000px;}
.y79_c01303{bottom:36.720000px;}
.y74_c01303{bottom:39.600000px;}
.y70_c01303{bottom:75.600000px;}
.y6e_c01303{bottom:77.040000px;}
.y72_c01303{bottom:77.760000px;}
.y6d_c01303{bottom:78.480000px;}
.y6f_c01303{bottom:79.200000px;}
.y71_c01303{bottom:79.920000px;}
.y73_c01303{bottom:81.360000px;}
.y6c_c01303{bottom:83.520000px;}
.y68_c01303{bottom:119.520000px;}
.y69_c01303{bottom:120.240000px;}
.y6a_c01303{bottom:120.960000px;}
.y67_c01303{bottom:122.400000px;}
.y6b_c01303{bottom:124.560000px;}
.y66_c01303{bottom:175.680000px;}
.y65_c01303{bottom:179.280000px;}
.y60_c01303{bottom:217.440000px;}
.y63_c01303{bottom:218.160000px;}
.y61_c01303{bottom:218.880000px;}
.y62_c01303{bottom:219.600000px;}
.y5f_c01303{bottom:220.320000px;}
.y64_c01303{bottom:221.760000px;}
.y5e_c01303{bottom:222.480000px;}
.y5a_c01303{bottom:259.920000px;}
.y5b_c01303{bottom:260.640000px;}
.y5d_c01303{bottom:261.360000px;}
.y59_c01303{bottom:262.800000px;}
.y5c_c01303{bottom:263.520000px;}
.y56_c01303{bottom:316.080000px;}
.y57_c01303{bottom:316.800000px;}
.y58_c01303{bottom:317.520000px;}
.y54_c01303{bottom:356.400000px;}
.y55_c01303{bottom:357.120000px;}
.y53_c01303{bottom:359.280000px;}
.y52_c01303{bottom:360.000000px;}
.y51_c01303{bottom:361.440000px;}
.y50_c01303{bottom:399.600000px;}
.y4e_c01303{bottom:400.320000px;}
.y4b_c01303{bottom:401.040000px;}
.y4f_c01303{bottom:401.760000px;}
.y4d_c01303{bottom:402.480000px;}
.y4c_c01303{bottom:403.200000px;}
.y49_c01303{bottom:442.800000px;}
.y4a_c01303{bottom:445.680000px;}
.y48_c01303{bottom:446.400000px;}
.y47_c01303{bottom:447.120000px;}
.y45_c01303{bottom:485.280000px;}
.y44_c01303{bottom:486.000000px;}
.y43_c01303{bottom:486.720000px;}
.y42_c01303{bottom:487.440000px;}
.y46_c01303{bottom:488.160000px;}
.y41_c01303{bottom:527.760000px;}
.y40_c01303{bottom:528.480000px;}
.y3e_c01303{bottom:529.200000px;}
.y3f_c01303{bottom:531.360000px;}
.y3d_c01303{bottom:532.080000px;}
.y3c_c01303{bottom:532.800000px;}
.y39_c01303{bottom:582.480000px;}
.y3a_c01303{bottom:583.920000px;}
.y3b_c01303{bottom:585.360000px;}
.y38_c01303{bottom:586.080000px;}
.y34_c01303{bottom:624.960000px;}
.y36_c01303{bottom:625.680000px;}
.y32_c01303{bottom:626.400000px;}
.y35_c01303{bottom:627.120000px;}
.y37_c01303{bottom:627.840000px;}
.y33_c01303{bottom:628.560000px;}
.y30_c01303{bottom:629.280000px;}
.y31_c01303{bottom:630.000000px;}
.y2f_c01303{bottom:668.160000px;}
.y2a_c01303{bottom:668.880000px;}
.y2b_c01303{bottom:669.600000px;}
.y2e_c01303{bottom:671.040000px;}
.y29_c01303{bottom:671.760000px;}
.y2d_c01303{bottom:672.480000px;}
.y2c_c01303{bottom:673.200000px;}
.y26_c01303{bottom:712.800000px;}
.y28_c01303{bottom:714.240000px;}
.y27_c01303{bottom:714.960000px;}
.y25_c01303{bottom:715.680000px;}
.y21_c01303{bottom:766.080000px;}
.y24_c01303{bottom:768.240000px;}
.y22_c01303{bottom:768.960000px;}
.y23_c01303{bottom:769.680000px;}
.y1f_c01303{bottom:807.840000px;}
.y1e_c01303{bottom:809.280000px;}
.y1c_c01303{bottom:810.000000px;}
.y20_c01303{bottom:810.720000px;}
.y1d_c01303{bottom:811.440000px;}
.y1b_c01303{bottom:812.160000px;}
.y19_c01303{bottom:851.040000px;}
.y1a_c01303{bottom:853.920000px;}
.y17_c01303{bottom:854.640000px;}
.y18_c01303{bottom:855.360000px;}
.y16_c01303{bottom:856.080000px;}
.y15_c01303{bottom:905.040000px;}
.y12_c01303{bottom:907.920000px;}
.y14_c01303{bottom:908.640000px;}
.y13_c01303{bottom:909.360000px;}
.y11_c01303{bottom:946.800000px;}
.y10_c01303{bottom:947.520000px;}
.yf_c01303{bottom:948.960000px;}
.yd_c01303{bottom:950.400000px;}
.ye_c01303{bottom:951.120000px;}
.y7_c01303{bottom:990.000000px;}
.ya_c01303{bottom:990.720000px;}
.y9_c01303{bottom:991.440000px;}
.yc_c01303{bottom:992.160000px;}
.yb_c01303{bottom:992.880000px;}
.y8_c01303{bottom:993.600000px;}
.y4_c01303{bottom:1033.200000px;}
.y6_c01303{bottom:1035.360000px;}
.y5_c01303{bottom:1036.080000px;}
.y2_c01303{bottom:1036.800000px;}
.y3_c01303{bottom:1037.520000px;}
.y1_c01303{bottom:1082.880000px;}
.hf_c01303{height:15.550313px;}
.he_c01303{height:28.508906px;}
.h3_c01303{height:31.100625px;}
.h10_c01303{height:33.692344px;}
.hb_c01303{height:38.875781px;}
.h7_c01303{height:41.467500px;}
.h4_c01303{height:44.059219px;}
.h8_c01303{height:46.650937px;}
.hc_c01303{height:49.242656px;}
.h5_c01303{height:51.834375px;}
.h9_c01303{height:54.426094px;}
.hd_c01303{height:57.017812px;}
.h6_c01303{height:59.609531px;}
.ha_c01303{height:62.201250px;}
.h2_c01303{height:67.384687px;}
.h1_c01303{height:1144.500000px;}
.h0_c01303{height:1144.800000px;}
.w1_c01303{width:735.750000px;}
.w0_c01303{width:735.840000px;}
.x0_c01303{left:0.000000px;}
.x2_c01303{left:30.960000px;}
.xc_c01303{left:32.400000px;}
.x49_c01303{left:33.840000px;}
.x4a_c01303{left:52.560000px;}
.x3_c01303{left:62.640000px;}
.x33_c01303{left:64.080000px;}
.x26_c01303{left:73.440000px;}
.x15_c01303{left:74.880000px;}
.x40_c01303{left:84.240000px;}
.xd_c01303{left:95.040000px;}
.x2b_c01303{left:105.840000px;}
.x41_c01303{left:116.640000px;}
.x1a_c01303{left:118.080000px;}
.x4_c01303{left:128.160000px;}
.x2c_c01303{left:137.520000px;}
.x1f_c01303{left:139.680000px;}
.x59_c01303{left:148.320000px;}
.x42_c01303{left:149.760000px;}
.x5_c01303{left:159.840000px;}
.x34_c01303{left:162.000000px;}
.x20_c01303{left:170.640000px;}
.x43_c01303{left:181.440000px;}
.x35_c01303{left:192.240000px;}
.x53_c01303{left:201.600000px;}
.x4b_c01303{left:203.040000px;}
.x2d_c01303{left:204.480000px;}
.x1b_c01303{left:214.560000px;}
.xe_c01303{left:216.000000px;}
.x39_c01303{left:224.640000px;}
.x27_c01303{left:236.160000px;}
.x6_c01303{left:237.600000px;}
.x21_c01303{left:246.240000px;}
.x1c_c01303{left:247.680000px;}
.x5d_c01303{left:257.040000px;}
.x2e_c01303{left:268.560000px;}
.x1d_c01303{left:278.640000px;}
.xf_c01303{left:280.080000px;}
.x5a_c01303{left:288.720000px;}
.x4c_c01303{left:290.160000px;}
.x54_c01303{left:300.960000px;}
.x16_c01303{left:302.400000px;}
.x22_c01303{left:311.760000px;}
.x10_c01303{left:322.560000px;}
.x44_c01303{left:333.360000px;}
.x3a_c01303{left:334.800000px;}
.x23_c01303{left:344.160000px;}
.x55_c01303{left:354.240000px;}
.x11_c01303{left:355.680000px;}
.x1e_c01303{left:365.760000px;}
.x7_c01303{left:376.560000px;}
.x36_c01303{left:378.000000px;}
.x4e_c01303{left:386.640000px;}
.x45_c01303{left:397.440000px;}
.x12_c01303{left:408.960000px;}
.x37_c01303{left:419.040000px;}
.x4d_c01303{left:429.120000px;}
.x28_c01303{left:431.280000px;}
.x2f_c01303{left:439.920000px;}
.x5e_c01303{left:450.000000px;}
.x8_c01303{left:452.160000px;}
.x56_c01303{left:461.520000px;}
.x17_c01303{left:462.960000px;}
.x46_c01303{left:471.600000px;}
.x9_c01303{left:473.760000px;}
.x51_c01303{left:481.680000px;}
.x4f_c01303{left:483.120000px;}
.x3b_c01303{left:484.560000px;}
.x5b_c01303{left:492.480000px;}
.x60_c01303{left:493.920000px;}
.xa_c01303{left:505.440000px;}
.x3c_c01303{left:515.520000px;}
.x29_c01303{left:517.680000px;}
.x52_c01303{left:525.600000px;}
.x13_c01303{left:538.560000px;}
.x38_c01303{left:548.640000px;}
.x50_c01303{left:558.000000px;}
.x24_c01303{left:560.160000px;}
.x5f_c01303{left:568.080000px;}
.x30_c01303{left:570.240000px;}
.xb_c01303{left:571.680000px;}
.x57_c01303{left:578.880000px;}
.x3d_c01303{left:580.320000px;}
.x18_c01303{left:581.760000px;}
.x25_c01303{left:592.560000px;}
.x14_c01303{left:594.720000px;}
.x47_c01303{left:601.200000px;}
.x3e_c01303{left:602.640000px;}
.x5c_c01303{left:612.720000px;}
.x31_c01303{left:614.160000px;}
.x58_c01303{left:622.800000px;}
.x19_c01303{left:624.960000px;}
.x3f_c01303{left:633.600000px;}
.x32_c01303{left:645.840000px;}
.x48_c01303{left:655.200000px;}
.x1_c01303{left:656.640000px;}
.x2a_c01303{left:689.760000px;}
@media print{
.v0_c01303{vertical-align:0.000000pt;}
.ls0_c01303{letter-spacing:0.000000pt;}
.ws0_c01303{word-spacing:-3.962235pt;}
.ws1_c01303{word-spacing:0.000000pt;}
._0_c01303{width:23.838935pt;}
.fsd_c01303{font-size:15.360000pt;}
.fsc_c01303{font-size:28.160000pt;}
.fs1_c01303{font-size:30.720000pt;}
.fse_c01303{font-size:33.280000pt;}
.fs9_c01303{font-size:38.400000pt;}
.fs5_c01303{font-size:40.960000pt;}
.fs2_c01303{font-size:43.520000pt;}
.fs6_c01303{font-size:46.080000pt;}
.fsa_c01303{font-size:48.640000pt;}
.fs3_c01303{font-size:51.200000pt;}
.fs7_c01303{font-size:53.760000pt;}
.fsb_c01303{font-size:56.320000pt;}
.fs4_c01303{font-size:58.880000pt;}
.fs8_c01303{font-size:61.440000pt;}
.fs0_c01303{font-size:66.560000pt;}
.y0_c01303{bottom:0.000000pt;}
.y75_c01303{bottom:29.440000pt;}
.y76_c01303{bottom:30.080000pt;}
.y77_c01303{bottom:31.360000pt;}
.y78_c01303{bottom:32.000000pt;}
.y79_c01303{bottom:32.640000pt;}
.y74_c01303{bottom:35.200000pt;}
.y70_c01303{bottom:67.200000pt;}
.y6e_c01303{bottom:68.480000pt;}
.y72_c01303{bottom:69.120000pt;}
.y6d_c01303{bottom:69.760000pt;}
.y6f_c01303{bottom:70.400000pt;}
.y71_c01303{bottom:71.040000pt;}
.y73_c01303{bottom:72.320000pt;}
.y6c_c01303{bottom:74.240000pt;}
.y68_c01303{bottom:106.240000pt;}
.y69_c01303{bottom:106.880000pt;}
.y6a_c01303{bottom:107.520000pt;}
.y67_c01303{bottom:108.800000pt;}
.y6b_c01303{bottom:110.720000pt;}
.y66_c01303{bottom:156.160000pt;}
.y65_c01303{bottom:159.360000pt;}
.y60_c01303{bottom:193.280000pt;}
.y63_c01303{bottom:193.920000pt;}
.y61_c01303{bottom:194.560000pt;}
.y62_c01303{bottom:195.200000pt;}
.y5f_c01303{bottom:195.840000pt;}
.y64_c01303{bottom:197.120000pt;}
.y5e_c01303{bottom:197.760000pt;}
.y5a_c01303{bottom:231.040000pt;}
.y5b_c01303{bottom:231.680000pt;}
.y5d_c01303{bottom:232.320000pt;}
.y59_c01303{bottom:233.600000pt;}
.y5c_c01303{bottom:234.240000pt;}
.y56_c01303{bottom:280.960000pt;}
.y57_c01303{bottom:281.600000pt;}
.y58_c01303{bottom:282.240000pt;}
.y54_c01303{bottom:316.800000pt;}
.y55_c01303{bottom:317.440000pt;}
.y53_c01303{bottom:319.360000pt;}
.y52_c01303{bottom:320.000000pt;}
.y51_c01303{bottom:321.280000pt;}
.y50_c01303{bottom:355.200000pt;}
.y4e_c01303{bottom:355.840000pt;}
.y4b_c01303{bottom:356.480000pt;}
.y4f_c01303{bottom:357.120000pt;}
.y4d_c01303{bottom:357.760000pt;}
.y4c_c01303{bottom:358.400000pt;}
.y49_c01303{bottom:393.600000pt;}
.y4a_c01303{bottom:396.160000pt;}
.y48_c01303{bottom:396.800000pt;}
.y47_c01303{bottom:397.440000pt;}
.y45_c01303{bottom:431.360000pt;}
.y44_c01303{bottom:432.000000pt;}
.y43_c01303{bottom:432.640000pt;}
.y42_c01303{bottom:433.280000pt;}
.y46_c01303{bottom:433.920000pt;}
.y41_c01303{bottom:469.120000pt;}
.y40_c01303{bottom:469.760000pt;}
.y3e_c01303{bottom:470.400000pt;}
.y3f_c01303{bottom:472.320000pt;}
.y3d_c01303{bottom:472.960000pt;}
.y3c_c01303{bottom:473.600000pt;}
.y39_c01303{bottom:517.760000pt;}
.y3a_c01303{bottom:519.040000pt;}
.y3b_c01303{bottom:520.320000pt;}
.y38_c01303{bottom:520.960000pt;}
.y34_c01303{bottom:555.520000pt;}
.y36_c01303{bottom:556.160000pt;}
.y32_c01303{bottom:556.800000pt;}
.y35_c01303{bottom:557.440000pt;}
.y37_c01303{bottom:558.080000pt;}
.y33_c01303{bottom:558.720000pt;}
.y30_c01303{bottom:559.360000pt;}
.y31_c01303{bottom:560.000000pt;}
.y2f_c01303{bottom:593.920000pt;}
.y2a_c01303{bottom:594.560000pt;}
.y2b_c01303{bottom:595.200000pt;}
.y2e_c01303{bottom:596.480000pt;}
.y29_c01303{bottom:597.120000pt;}
.y2d_c01303{bottom:597.760000pt;}
.y2c_c01303{bottom:598.400000pt;}
.y26_c01303{bottom:633.600000pt;}
.y28_c01303{bottom:634.880000pt;}
.y27_c01303{bottom:635.520000pt;}
.y25_c01303{bottom:636.160000pt;}
.y21_c01303{bottom:680.960000pt;}
.y24_c01303{bottom:682.880000pt;}
.y22_c01303{bottom:683.520000pt;}
.y23_c01303{bottom:684.160000pt;}
.y1f_c01303{bottom:718.080000pt;}
.y1e_c01303{bottom:719.360000pt;}
.y1c_c01303{bottom:720.000000pt;}
.y20_c01303{bottom:720.640000pt;}
.y1d_c01303{bottom:721.280000pt;}
.y1b_c01303{bottom:721.920000pt;}
.y19_c01303{bottom:756.480000pt;}
.y1a_c01303{bottom:759.040000pt;}
.y17_c01303{bottom:759.680000pt;}
.y18_c01303{bottom:760.320000pt;}
.y16_c01303{bottom:760.960000pt;}
.y15_c01303{bottom:804.480000pt;}
.y12_c01303{bottom:807.040000pt;}
.y14_c01303{bottom:807.680000pt;}
.y13_c01303{bottom:808.320000pt;}
.y11_c01303{bottom:841.600000pt;}
.y10_c01303{bottom:842.240000pt;}
.yf_c01303{bottom:843.520000pt;}
.yd_c01303{bottom:844.800000pt;}
.ye_c01303{bottom:845.440000pt;}
.y7_c01303{bottom:880.000000pt;}
.ya_c01303{bottom:880.640000pt;}
.y9_c01303{bottom:881.280000pt;}
.yc_c01303{bottom:881.920000pt;}
.yb_c01303{bottom:882.560000pt;}
.y8_c01303{bottom:883.200000pt;}
.y4_c01303{bottom:918.400000pt;}
.y6_c01303{bottom:920.320000pt;}
.y5_c01303{bottom:920.960000pt;}
.y2_c01303{bottom:921.600000pt;}
.y3_c01303{bottom:922.240000pt;}
.y1_c01303{bottom:962.560000pt;}
.hf_c01303{height:13.822500pt;}
.he_c01303{height:25.341250pt;}
.h3_c01303{height:27.645000pt;}
.h10_c01303{height:29.948750pt;}
.hb_c01303{height:34.556250pt;}
.h7_c01303{height:36.860000pt;}
.h4_c01303{height:39.163750pt;}
.h8_c01303{height:41.467500pt;}
.hc_c01303{height:43.771250pt;}
.h5_c01303{height:46.075000pt;}
.h9_c01303{height:48.378750pt;}
.hd_c01303{height:50.682500pt;}
.h6_c01303{height:52.986250pt;}
.ha_c01303{height:55.290000pt;}
.h2_c01303{height:59.897500pt;}
.h1_c01303{height:1017.333333pt;}
.h0_c01303{height:1017.600000pt;}
.w1_c01303{width:654.000000pt;}
.w0_c01303{width:654.080000pt;}
.x0_c01303{left:0.000000pt;}
.x2_c01303{left:27.520000pt;}
.xc_c01303{left:28.800000pt;}
.x49_c01303{left:30.080000pt;}
.x4a_c01303{left:46.720000pt;}
.x3_c01303{left:55.680000pt;}
.x33_c01303{left:56.960000pt;}
.x26_c01303{left:65.280000pt;}
.x15_c01303{left:66.560000pt;}
.x40_c01303{left:74.880000pt;}
.xd_c01303{left:84.480000pt;}
.x2b_c01303{left:94.080000pt;}
.x41_c01303{left:103.680000pt;}
.x1a_c01303{left:104.960000pt;}
.x4_c01303{left:113.920000pt;}
.x2c_c01303{left:122.240000pt;}
.x1f_c01303{left:124.160000pt;}
.x59_c01303{left:131.840000pt;}
.x42_c01303{left:133.120000pt;}
.x5_c01303{left:142.080000pt;}
.x34_c01303{left:144.000000pt;}
.x20_c01303{left:151.680000pt;}
.x43_c01303{left:161.280000pt;}
.x35_c01303{left:170.880000pt;}
.x53_c01303{left:179.200000pt;}
.x4b_c01303{left:180.480000pt;}
.x2d_c01303{left:181.760000pt;}
.x1b_c01303{left:190.720000pt;}
.xe_c01303{left:192.000000pt;}
.x39_c01303{left:199.680000pt;}
.x27_c01303{left:209.920000pt;}
.x6_c01303{left:211.200000pt;}
.x21_c01303{left:218.880000pt;}
.x1c_c01303{left:220.160000pt;}
.x5d_c01303{left:228.480000pt;}
.x2e_c01303{left:238.720000pt;}
.x1d_c01303{left:247.680000pt;}
.xf_c01303{left:248.960000pt;}
.x5a_c01303{left:256.640000pt;}
.x4c_c01303{left:257.920000pt;}
.x54_c01303{left:267.520000pt;}
.x16_c01303{left:268.800000pt;}
.x22_c01303{left:277.120000pt;}
.x10_c01303{left:286.720000pt;}
.x44_c01303{left:296.320000pt;}
.x3a_c01303{left:297.600000pt;}
.x23_c01303{left:305.920000pt;}
.x55_c01303{left:314.880000pt;}
.x11_c01303{left:316.160000pt;}
.x1e_c01303{left:325.120000pt;}
.x7_c01303{left:334.720000pt;}
.x36_c01303{left:336.000000pt;}
.x4e_c01303{left:343.680000pt;}
.x45_c01303{left:353.280000pt;}
.x12_c01303{left:363.520000pt;}
.x37_c01303{left:372.480000pt;}
.x4d_c01303{left:381.440000pt;}
.x28_c01303{left:383.360000pt;}
.x2f_c01303{left:391.040000pt;}
.x5e_c01303{left:400.000000pt;}
.x8_c01303{left:401.920000pt;}
.x56_c01303{left:410.240000pt;}
.x17_c01303{left:411.520000pt;}
.x46_c01303{left:419.200000pt;}
.x9_c01303{left:421.120000pt;}
.x51_c01303{left:428.160000pt;}
.x4f_c01303{left:429.440000pt;}
.x3b_c01303{left:430.720000pt;}
.x5b_c01303{left:437.760000pt;}
.x60_c01303{left:439.040000pt;}
.xa_c01303{left:449.280000pt;}
.x3c_c01303{left:458.240000pt;}
.x29_c01303{left:460.160000pt;}
.x52_c01303{left:467.200000pt;}
.x13_c01303{left:478.720000pt;}
.x38_c01303{left:487.680000pt;}
.x50_c01303{left:496.000000pt;}
.x24_c01303{left:497.920000pt;}
.x5f_c01303{left:504.960000pt;}
.x30_c01303{left:506.880000pt;}
.xb_c01303{left:508.160000pt;}
.x57_c01303{left:514.560000pt;}
.x3d_c01303{left:515.840000pt;}
.x18_c01303{left:517.120000pt;}
.x25_c01303{left:526.720000pt;}
.x14_c01303{left:528.640000pt;}
.x47_c01303{left:534.400000pt;}
.x3e_c01303{left:535.680000pt;}
.x5c_c01303{left:544.640000pt;}
.x31_c01303{left:545.920000pt;}
.x58_c01303{left:553.600000pt;}
.x19_c01303{left:555.520000pt;}
.x3f_c01303{left:563.200000pt;}
.x32_c01303{left:574.080000pt;}
.x48_c01303{left:582.400000pt;}
.x1_c01303{left:583.680000pt;}
.x2a_c01303{left:613.120000pt;}
}





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

.ir_c01304:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01304{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01304;src:url('chunks/assets/font_536e24a0fb01b2d4d3c47472.woff2')format("woff");}.ff1_c01304{font-family:ff1_c01304;line-height:1.109863;font-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_c01304{transform:matrix(0.208950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208950,0.000000,0.000000,0.250000,0,0);}
.m69_c01304{transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);}
.m67_c01304{transform:matrix(0.242050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242050,0.000000,0.000000,0.250000,0,0);}
.m3c_c01304{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);}
.m65_c01304{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);}
.m66_c01304{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);}
.m5c_c01304{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01304{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);}
.m5a_c01304{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01304{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m32_c01304{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m11_c01304{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m6a_c01304{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01304{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m23_c01304{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m14_c01304{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m5e_c01304{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m42_c01304{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m46_c01304{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m59_c01304{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mc_c01304{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m51_c01304{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m64_c01304{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01304{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);}
.m4b_c01304{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m47_c01304{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m60_c01304{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_c01304{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);}
.me_c01304{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m52_c01304{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m22_c01304{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);}
.m0_c01304{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01304{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m41_c01304{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.md_c01304{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m1_c01304{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);}
.m68_c01304{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.mb_c01304{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);}
.m4d_c01304{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m31_c01304{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);}
.m50_c01304{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m17_c01304{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);}
.m3d_c01304{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m40_c01304{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m2_c01304{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01304{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_c01304{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01304{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);}
.m34_c01304{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);}
.m7_c01304{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);}
.m53_c01304{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m48_c01304{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01304{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m5f_c01304{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m29_c01304{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);}
.m10_c01304{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01304{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m19_c01304{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);}
.m62_c01304{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m49_c01304{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);}
.m2a_c01304{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01304{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m55_c01304{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01304{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m58_c01304{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);}
.m24_c01304{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m9_c01304{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m15_c01304{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m5b_c01304{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);}
.m36_c01304{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m39_c01304{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m13_c01304{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m27_c01304{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m56_c01304{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);}
.m18_c01304{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m38_c01304{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m54_c01304{transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);}
.m5_c01304{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m35_c01304{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.mf_c01304{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m45_c01304{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);}
.m2f_c01304{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m3_c01304{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m30_c01304{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m21_c01304{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m4a_c01304{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);}
.m43_c01304{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01304{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);}
.m2d_c01304{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m8_c01304{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);}
.m25_c01304{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01304{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01304{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m6_c01304{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m63_c01304{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m4_c01304{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m57_c01304{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);}
.m61_c01304{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);}
.m20_c01304{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m12_c01304{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m16_c01304{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);}
.m37_c01304{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01304{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m44_c01304{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m28_c01304{transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);}
.m33_c01304{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);}
.m4e_c01304{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.v0_c01304{vertical-align:0.000000px;}
.v1_c01304{vertical-align:2.880000px;}
.v2_c01304{vertical-align:8.640000px;}
.ls0_c01304{letter-spacing:0.000000px;}
.sc__c01304{text-shadow:none;}
.sc0_c01304{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01304{-webkit-text-stroke:0px transparent;}
.sc0_c01304{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01304{word-spacing:0.000000px;}
.ws1_c01304{word-spacing:1.118400px;}
.ws0_c01304{word-spacing:1.363680px;}
.fc0_c01304{color:transparent;}
.fse_c01304{font-size:8.640000px;}
.fsc_c01304{font-size:31.680000px;}
.fs3_c01304{font-size:34.560000px;}
.fs9_c01304{font-size:37.440000px;}
.fsf_c01304{font-size:40.320000px;}
.fs1_c01304{font-size:43.200000px;}
.fs6_c01304{font-size:46.080000px;}
.fs2_c01304{font-size:48.960000px;}
.fs4_c01304{font-size:51.840000px;}
.fsb_c01304{font-size:54.720000px;}
.fs5_c01304{font-size:57.600000px;}
.fs7_c01304{font-size:60.480000px;}
.fs8_c01304{font-size:63.360000px;}
.fsd_c01304{font-size:66.240000px;}
.fsa_c01304{font-size:69.120000px;}
.fs0_c01304{font-size:72.000000px;}
.y0_c01304{bottom:0.000000px;}
.y80_c01304{bottom:23.040000px;}
.y7d_c01304{bottom:23.760000px;}
.y7e_c01304{bottom:24.480000px;}
.y7f_c01304{bottom:25.200000px;}
.y81_c01304{bottom:27.360000px;}
.y82_c01304{bottom:28.080000px;}
.y7c_c01304{bottom:28.800000px;}
.y78_c01304{bottom:63.360000px;}
.y7a_c01304{bottom:64.080000px;}
.y77_c01304{bottom:64.800000px;}
.y76_c01304{bottom:65.520000px;}
.y79_c01304{bottom:66.960000px;}
.y7b_c01304{bottom:68.400000px;}
.y75_c01304{bottom:69.840000px;}
.y73_c01304{bottom:108.000000px;}
.y72_c01304{bottom:108.720000px;}
.y6f_c01304{bottom:109.440000px;}
.y70_c01304{bottom:110.160000px;}
.y71_c01304{bottom:110.880000px;}
.y6e_c01304{bottom:112.320000px;}
.y74_c01304{bottom:113.040000px;}
.y6d_c01304{bottom:113.760000px;}
.y6b_c01304{bottom:151.200000px;}
.y69_c01304{bottom:153.360000px;}
.y6a_c01304{bottom:154.080000px;}
.y68_c01304{bottom:154.800000px;}
.y67_c01304{bottom:155.520000px;}
.y66_c01304{bottom:156.240000px;}
.y6c_c01304{bottom:156.960000px;}
.y5f_c01304{bottom:194.400000px;}
.y62_c01304{bottom:195.120000px;}
.y65_c01304{bottom:195.840000px;}
.y61_c01304{bottom:196.560000px;}
.y60_c01304{bottom:197.280000px;}
.y5e_c01304{bottom:198.000000px;}
.y63_c01304{bottom:198.720000px;}
.y64_c01304{bottom:200.160000px;}
.y5a_c01304{bottom:248.400000px;}
.y5b_c01304{bottom:250.560000px;}
.y5c_c01304{bottom:251.280000px;}
.y5d_c01304{bottom:252.000000px;}
.y59_c01304{bottom:253.440000px;}
.y55_c01304{bottom:292.320000px;}
.y56_c01304{bottom:293.040000px;}
.y54_c01304{bottom:293.760000px;}
.y53_c01304{bottom:294.480000px;}
.y52_c01304{bottom:295.200000px;}
.y57_c01304{bottom:295.920000px;}
.y58_c01304{bottom:297.360000px;}
.y51_c01304{bottom:334.800000px;}
.y50_c01304{bottom:337.680000px;}
.y4f_c01304{bottom:338.400000px;}
.y4e_c01304{bottom:339.120000px;}
.y4a_c01304{bottom:378.720000px;}
.y4c_c01304{bottom:379.440000px;}
.y49_c01304{bottom:380.160000px;}
.y48_c01304{bottom:380.880000px;}
.y4b_c01304{bottom:381.600000px;}
.y4d_c01304{bottom:382.320000px;}
.y46_c01304{bottom:431.280000px;}
.y47_c01304{bottom:432.000000px;}
.y45_c01304{bottom:434.160000px;}
.y44_c01304{bottom:436.320000px;}
.y42_c01304{bottom:474.480000px;}
.y43_c01304{bottom:475.200000px;}
.y3f_c01304{bottom:476.640000px;}
.y41_c01304{bottom:477.360000px;}
.y40_c01304{bottom:478.080000px;}
.y3a_c01304{bottom:516.960000px;}
.y3d_c01304{bottom:517.680000px;}
.y3b_c01304{bottom:519.840000px;}
.y3c_c01304{bottom:520.560000px;}
.y3e_c01304{bottom:524.160000px;}
.y37_c01304{bottom:560.160000px;}
.y36_c01304{bottom:560.880000px;}
.y38_c01304{bottom:561.600000px;}
.y34_c01304{bottom:562.320000px;}
.y35_c01304{bottom:563.040000px;}
.y39_c01304{bottom:563.760000px;}
.y33_c01304{bottom:602.640000px;}
.y32_c01304{bottom:603.360000px;}
.y30_c01304{bottom:605.520000px;}
.y31_c01304{bottom:606.240000px;}
.y2f_c01304{bottom:646.560000px;}
.y2e_c01304{bottom:647.280000px;}
.y2d_c01304{bottom:648.720000px;}
.y2c_c01304{bottom:649.440000px;}
.y27_c01304{bottom:699.840000px;}
.y26_c01304{bottom:700.560000px;}
.y29_c01304{bottom:701.280000px;}
.y2b_c01304{bottom:702.000000px;}
.y28_c01304{bottom:702.720000px;}
.y2a_c01304{bottom:703.440000px;}
.y25_c01304{bottom:742.320000px;}
.y24_c01304{bottom:743.040000px;}
.y22_c01304{bottom:745.200000px;}
.y23_c01304{bottom:745.920000px;}
.y21_c01304{bottom:786.240000px;}
.y1f_c01304{bottom:788.400000px;}
.y20_c01304{bottom:789.120000px;}
.y1e_c01304{bottom:829.440000px;}
.y1a_c01304{bottom:830.880000px;}
.y1b_c01304{bottom:831.600000px;}
.y1c_c01304{bottom:832.320000px;}
.y1d_c01304{bottom:833.040000px;}
.y16_c01304{bottom:871.200000px;}
.y19_c01304{bottom:871.920000px;}
.y15_c01304{bottom:874.080000px;}
.y17_c01304{bottom:874.800000px;}
.y18_c01304{bottom:875.520000px;}
.y14_c01304{bottom:914.400000px;}
.y12_c01304{bottom:915.120000px;}
.y10_c01304{bottom:917.280000px;}
.y13_c01304{bottom:918.000000px;}
.y11_c01304{bottom:918.720000px;}
.ya_c01304{bottom:956.880000px;}
.yf_c01304{bottom:957.600000px;}
.yd_c01304{bottom:958.320000px;}
.ye_c01304{bottom:959.760000px;}
.yb_c01304{bottom:960.480000px;}
.yc_c01304{bottom:961.200000px;}
.y5_c01304{bottom:1000.080000px;}
.y7_c01304{bottom:1001.520000px;}
.y9_c01304{bottom:1002.240000px;}
.y8_c01304{bottom:1002.960000px;}
.y6_c01304{bottom:1003.680000px;}
.y4_c01304{bottom:1045.440000px;}
.y3_c01304{bottom:1046.160000px;}
.y2_c01304{bottom:1046.880000px;}
.y1_c01304{bottom:1087.200000px;}
.h12_c01304{height:7.775156px;}
.hf_c01304{height:28.508906px;}
.h5_c01304{height:31.100625px;}
.hb_c01304{height:33.692344px;}
.h13_c01304{height:36.284062px;}
.h3_c01304{height:38.875781px;}
.h8_c01304{height:41.467500px;}
.h4_c01304{height:44.059219px;}
.h6_c01304{height:46.650937px;}
.he_c01304{height:46.939219px;}
.hd_c01304{height:49.242656px;}
.h7_c01304{height:51.834375px;}
.h11_c01304{height:52.699219px;}
.h9_c01304{height:54.426094px;}
.ha_c01304{height:57.017812px;}
.h10_c01304{height:59.609531px;}
.hc_c01304{height:62.201250px;}
.h2_c01304{height:64.792969px;}
.h1_c01304{height:1151.250000px;}
.h0_c01304{height:1151.280000px;}
.w0_c01304{width:746.640000px;}
.w1_c01304{width:747.000000px;}
.x0_c01304{left:0.000000px;}
.xb_c01304{left:37.440000px;}
.x27_c01304{left:38.880000px;}
.x35_c01304{left:41.040000px;}
.x57_c01304{left:43.200000px;}
.x67_c01304{left:45.360000px;}
.x68_c01304{left:61.920000px;}
.x1c_c01304{left:69.120000px;}
.x63_c01304{left:72.720000px;}
.x53_c01304{left:82.080000px;}
.x30_c01304{left:90.000000px;}
.x42_c01304{left:91.440000px;}
.x14_c01304{left:101.520000px;}
.x58_c01304{left:103.680000px;}
.xc_c01304{left:112.320000px;}
.x69_c01304{left:114.480000px;}
.x22_c01304{left:123.120000px;}
.x1d_c01304{left:133.200000px;}
.x4c_c01304{left:135.360000px;}
.xd_c01304{left:144.000000px;}
.x2_c01304{left:145.440000px;}
.x23_c01304{left:155.520000px;}
.x31_c01304{left:166.320000px;}
.x5b_c01304{left:167.760000px;}
.x3_c01304{left:177.120000px;}
.x64_c01304{left:179.280000px;}
.x37_c01304{left:187.920000px;}
.x6a_c01304{left:190.080000px;}
.xe_c01304{left:198.720000px;}
.x5c_c01304{left:200.880000px;}
.x15_c01304{left:209.520000px;}
.x4d_c01304{left:211.680000px;}
.x5d_c01304{left:222.480000px;}
.x2c_c01304{left:230.400000px;}
.x3f_c01304{left:231.840000px;}
.x65_c01304{left:233.280000px;}
.x36_c01304{left:243.360000px;}
.x4_c01304{left:252.720000px;}
.x4e_c01304{left:254.880000px;}
.x16_c01304{left:263.520000px;}
.x46_c01304{left:265.680000px;}
.x24_c01304{left:274.320000px;}
.x4f_c01304{left:276.480000px;}
.x5_c01304{left:285.120000px;}
.x3d_c01304{left:287.280000px;}
.x17_c01304{left:295.920000px;}
.x28_c01304{left:306.720000px;}
.x47_c01304{left:308.880000px;}
.x50_c01304{left:311.040000px;}
.x6_c01304{left:317.520000px;}
.x5e_c01304{left:318.960000px;}
.x1e_c01304{left:328.320000px;}
.x45_c01304{left:329.760000px;}
.x2d_c01304{left:339.120000px;}
.x4a_c01304{left:341.280000px;}
.x32_c01304{left:351.360000px;}
.xf_c01304{left:360.720000px;}
.x25_c01304{left:362.160000px;}
.x3a_c01304{left:371.520000px;}
.x5f_c01304{left:373.680000px;}
.x18_c01304{left:393.840000px;}
.x1f_c01304{left:403.920000px;}
.x51_c01304{left:406.800000px;}
.x2e_c01304{left:414.000000px;}
.x40_c01304{left:415.440000px;}
.x48_c01304{left:416.880000px;}
.x7_c01304{left:425.520000px;}
.x43_c01304{left:426.960000px;}
.x59_c01304{left:428.400000px;}
.x10_c01304{left:436.320000px;}
.x60_c01304{left:437.760000px;}
.x54_c01304{left:449.280000px;}
.x44_c01304{left:457.920000px;}
.x5a_c01304{left:459.360000px;}
.x19_c01304{left:468.720000px;}
.x55_c01304{left:470.160000px;}
.x11_c01304{left:479.520000px;}
.x38_c01304{left:480.960000px;}
.x1a_c01304{left:490.320000px;}
.x52_c01304{left:492.480000px;}
.x4b_c01304{left:500.400000px;}
.x8_c01304{left:501.840000px;}
.x29_c01304{left:511.920000px;}
.x66_c01304{left:514.080000px;}
.x3b_c01304{left:522.720000px;}
.x12_c01304{left:533.520000px;}
.x49_c01304{left:534.960000px;}
.x26_c01304{left:543.600000px;}
.x6b_c01304{left:545.040000px;}
.x3c_c01304{left:554.400000px;}
.x2a_c01304{left:565.200000px;}
.x20_c01304{left:576.720000px;}
.x3e_c01304{left:587.520000px;}
.x1b_c01304{left:598.320000px;}
.x33_c01304{left:600.480000px;}
.x21_c01304{left:609.120000px;}
.x61_c01304{left:610.560000px;}
.x39_c01304{left:619.200000px;}
.x13_c01304{left:620.640000px;}
.x2b_c01304{left:630.720000px;}
.x9_c01304{left:632.160000px;}
.x62_c01304{left:641.520000px;}
.x1_c01304{left:651.600000px;}
.x2f_c01304{left:653.040000px;}
.x56_c01304{left:661.680000px;}
.x34_c01304{left:663.120000px;}
.xa_c01304{left:664.560000px;}
.x41_c01304{left:673.200000px;}
@media print{
.v0_c01304{vertical-align:0.000000pt;}
.v1_c01304{vertical-align:2.560000pt;}
.v2_c01304{vertical-align:7.680000pt;}
.ls0_c01304{letter-spacing:0.000000pt;}
.ws2_c01304{word-spacing:0.000000pt;}
.ws1_c01304{word-spacing:0.994133pt;}
.ws0_c01304{word-spacing:1.212160pt;}
.fse_c01304{font-size:7.680000pt;}
.fsc_c01304{font-size:28.160000pt;}
.fs3_c01304{font-size:30.720000pt;}
.fs9_c01304{font-size:33.280000pt;}
.fsf_c01304{font-size:35.840000pt;}
.fs1_c01304{font-size:38.400000pt;}
.fs6_c01304{font-size:40.960000pt;}
.fs2_c01304{font-size:43.520000pt;}
.fs4_c01304{font-size:46.080000pt;}
.fsb_c01304{font-size:48.640000pt;}
.fs5_c01304{font-size:51.200000pt;}
.fs7_c01304{font-size:53.760000pt;}
.fs8_c01304{font-size:56.320000pt;}
.fsd_c01304{font-size:58.880000pt;}
.fsa_c01304{font-size:61.440000pt;}
.fs0_c01304{font-size:64.000000pt;}
.y0_c01304{bottom:0.000000pt;}
.y80_c01304{bottom:20.480000pt;}
.y7d_c01304{bottom:21.120000pt;}
.y7e_c01304{bottom:21.760000pt;}
.y7f_c01304{bottom:22.400000pt;}
.y81_c01304{bottom:24.320000pt;}
.y82_c01304{bottom:24.960000pt;}
.y7c_c01304{bottom:25.600000pt;}
.y78_c01304{bottom:56.320000pt;}
.y7a_c01304{bottom:56.960000pt;}
.y77_c01304{bottom:57.600000pt;}
.y76_c01304{bottom:58.240000pt;}
.y79_c01304{bottom:59.520000pt;}
.y7b_c01304{bottom:60.800000pt;}
.y75_c01304{bottom:62.080000pt;}
.y73_c01304{bottom:96.000000pt;}
.y72_c01304{bottom:96.640000pt;}
.y6f_c01304{bottom:97.280000pt;}
.y70_c01304{bottom:97.920000pt;}
.y71_c01304{bottom:98.560000pt;}
.y6e_c01304{bottom:99.840000pt;}
.y74_c01304{bottom:100.480000pt;}
.y6d_c01304{bottom:101.120000pt;}
.y6b_c01304{bottom:134.400000pt;}
.y69_c01304{bottom:136.320000pt;}
.y6a_c01304{bottom:136.960000pt;}
.y68_c01304{bottom:137.600000pt;}
.y67_c01304{bottom:138.240000pt;}
.y66_c01304{bottom:138.880000pt;}
.y6c_c01304{bottom:139.520000pt;}
.y5f_c01304{bottom:172.800000pt;}
.y62_c01304{bottom:173.440000pt;}
.y65_c01304{bottom:174.080000pt;}
.y61_c01304{bottom:174.720000pt;}
.y60_c01304{bottom:175.360000pt;}
.y5e_c01304{bottom:176.000000pt;}
.y63_c01304{bottom:176.640000pt;}
.y64_c01304{bottom:177.920000pt;}
.y5a_c01304{bottom:220.800000pt;}
.y5b_c01304{bottom:222.720000pt;}
.y5c_c01304{bottom:223.360000pt;}
.y5d_c01304{bottom:224.000000pt;}
.y59_c01304{bottom:225.280000pt;}
.y55_c01304{bottom:259.840000pt;}
.y56_c01304{bottom:260.480000pt;}
.y54_c01304{bottom:261.120000pt;}
.y53_c01304{bottom:261.760000pt;}
.y52_c01304{bottom:262.400000pt;}
.y57_c01304{bottom:263.040000pt;}
.y58_c01304{bottom:264.320000pt;}
.y51_c01304{bottom:297.600000pt;}
.y50_c01304{bottom:300.160000pt;}
.y4f_c01304{bottom:300.800000pt;}
.y4e_c01304{bottom:301.440000pt;}
.y4a_c01304{bottom:336.640000pt;}
.y4c_c01304{bottom:337.280000pt;}
.y49_c01304{bottom:337.920000pt;}
.y48_c01304{bottom:338.560000pt;}
.y4b_c01304{bottom:339.200000pt;}
.y4d_c01304{bottom:339.840000pt;}
.y46_c01304{bottom:383.360000pt;}
.y47_c01304{bottom:384.000000pt;}
.y45_c01304{bottom:385.920000pt;}
.y44_c01304{bottom:387.840000pt;}
.y42_c01304{bottom:421.760000pt;}
.y43_c01304{bottom:422.400000pt;}
.y3f_c01304{bottom:423.680000pt;}
.y41_c01304{bottom:424.320000pt;}
.y40_c01304{bottom:424.960000pt;}
.y3a_c01304{bottom:459.520000pt;}
.y3d_c01304{bottom:460.160000pt;}
.y3b_c01304{bottom:462.080000pt;}
.y3c_c01304{bottom:462.720000pt;}
.y3e_c01304{bottom:465.920000pt;}
.y37_c01304{bottom:497.920000pt;}
.y36_c01304{bottom:498.560000pt;}
.y38_c01304{bottom:499.200000pt;}
.y34_c01304{bottom:499.840000pt;}
.y35_c01304{bottom:500.480000pt;}
.y39_c01304{bottom:501.120000pt;}
.y33_c01304{bottom:535.680000pt;}
.y32_c01304{bottom:536.320000pt;}
.y30_c01304{bottom:538.240000pt;}
.y31_c01304{bottom:538.880000pt;}
.y2f_c01304{bottom:574.720000pt;}
.y2e_c01304{bottom:575.360000pt;}
.y2d_c01304{bottom:576.640000pt;}
.y2c_c01304{bottom:577.280000pt;}
.y27_c01304{bottom:622.080000pt;}
.y26_c01304{bottom:622.720000pt;}
.y29_c01304{bottom:623.360000pt;}
.y2b_c01304{bottom:624.000000pt;}
.y28_c01304{bottom:624.640000pt;}
.y2a_c01304{bottom:625.280000pt;}
.y25_c01304{bottom:659.840000pt;}
.y24_c01304{bottom:660.480000pt;}
.y22_c01304{bottom:662.400000pt;}
.y23_c01304{bottom:663.040000pt;}
.y21_c01304{bottom:698.880000pt;}
.y1f_c01304{bottom:700.800000pt;}
.y20_c01304{bottom:701.440000pt;}
.y1e_c01304{bottom:737.280000pt;}
.y1a_c01304{bottom:738.560000pt;}
.y1b_c01304{bottom:739.200000pt;}
.y1c_c01304{bottom:739.840000pt;}
.y1d_c01304{bottom:740.480000pt;}
.y16_c01304{bottom:774.400000pt;}
.y19_c01304{bottom:775.040000pt;}
.y15_c01304{bottom:776.960000pt;}
.y17_c01304{bottom:777.600000pt;}
.y18_c01304{bottom:778.240000pt;}
.y14_c01304{bottom:812.800000pt;}
.y12_c01304{bottom:813.440000pt;}
.y10_c01304{bottom:815.360000pt;}
.y13_c01304{bottom:816.000000pt;}
.y11_c01304{bottom:816.640000pt;}
.ya_c01304{bottom:850.560000pt;}
.yf_c01304{bottom:851.200000pt;}
.yd_c01304{bottom:851.840000pt;}
.ye_c01304{bottom:853.120000pt;}
.yb_c01304{bottom:853.760000pt;}
.yc_c01304{bottom:854.400000pt;}
.y5_c01304{bottom:888.960000pt;}
.y7_c01304{bottom:890.240000pt;}
.y9_c01304{bottom:890.880000pt;}
.y8_c01304{bottom:891.520000pt;}
.y6_c01304{bottom:892.160000pt;}
.y4_c01304{bottom:929.280000pt;}
.y3_c01304{bottom:929.920000pt;}
.y2_c01304{bottom:930.560000pt;}
.y1_c01304{bottom:966.400000pt;}
.h12_c01304{height:6.911250pt;}
.hf_c01304{height:25.341250pt;}
.h5_c01304{height:27.645000pt;}
.hb_c01304{height:29.948750pt;}
.h13_c01304{height:32.252500pt;}
.h3_c01304{height:34.556250pt;}
.h8_c01304{height:36.860000pt;}
.h4_c01304{height:39.163750pt;}
.h6_c01304{height:41.467500pt;}
.he_c01304{height:41.723750pt;}
.hd_c01304{height:43.771250pt;}
.h7_c01304{height:46.075000pt;}
.h11_c01304{height:46.843750pt;}
.h9_c01304{height:48.378750pt;}
.ha_c01304{height:50.682500pt;}
.h10_c01304{height:52.986250pt;}
.hc_c01304{height:55.290000pt;}
.h2_c01304{height:57.593750pt;}
.h1_c01304{height:1023.333333pt;}
.h0_c01304{height:1023.360000pt;}
.w0_c01304{width:663.680000pt;}
.w1_c01304{width:664.000000pt;}
.x0_c01304{left:0.000000pt;}
.xb_c01304{left:33.280000pt;}
.x27_c01304{left:34.560000pt;}
.x35_c01304{left:36.480000pt;}
.x57_c01304{left:38.400000pt;}
.x67_c01304{left:40.320000pt;}
.x68_c01304{left:55.040000pt;}
.x1c_c01304{left:61.440000pt;}
.x63_c01304{left:64.640000pt;}
.x53_c01304{left:72.960000pt;}
.x30_c01304{left:80.000000pt;}
.x42_c01304{left:81.280000pt;}
.x14_c01304{left:90.240000pt;}
.x58_c01304{left:92.160000pt;}
.xc_c01304{left:99.840000pt;}
.x69_c01304{left:101.760000pt;}
.x22_c01304{left:109.440000pt;}
.x1d_c01304{left:118.400000pt;}
.x4c_c01304{left:120.320000pt;}
.xd_c01304{left:128.000000pt;}
.x2_c01304{left:129.280000pt;}
.x23_c01304{left:138.240000pt;}
.x31_c01304{left:147.840000pt;}
.x5b_c01304{left:149.120000pt;}
.x3_c01304{left:157.440000pt;}
.x64_c01304{left:159.360000pt;}
.x37_c01304{left:167.040000pt;}
.x6a_c01304{left:168.960000pt;}
.xe_c01304{left:176.640000pt;}
.x5c_c01304{left:178.560000pt;}
.x15_c01304{left:186.240000pt;}
.x4d_c01304{left:188.160000pt;}
.x5d_c01304{left:197.760000pt;}
.x2c_c01304{left:204.800000pt;}
.x3f_c01304{left:206.080000pt;}
.x65_c01304{left:207.360000pt;}
.x36_c01304{left:216.320000pt;}
.x4_c01304{left:224.640000pt;}
.x4e_c01304{left:226.560000pt;}
.x16_c01304{left:234.240000pt;}
.x46_c01304{left:236.160000pt;}
.x24_c01304{left:243.840000pt;}
.x4f_c01304{left:245.760000pt;}
.x5_c01304{left:253.440000pt;}
.x3d_c01304{left:255.360000pt;}
.x17_c01304{left:263.040000pt;}
.x28_c01304{left:272.640000pt;}
.x47_c01304{left:274.560000pt;}
.x50_c01304{left:276.480000pt;}
.x6_c01304{left:282.240000pt;}
.x5e_c01304{left:283.520000pt;}
.x1e_c01304{left:291.840000pt;}
.x45_c01304{left:293.120000pt;}
.x2d_c01304{left:301.440000pt;}
.x4a_c01304{left:303.360000pt;}
.x32_c01304{left:312.320000pt;}
.xf_c01304{left:320.640000pt;}
.x25_c01304{left:321.920000pt;}
.x3a_c01304{left:330.240000pt;}
.x5f_c01304{left:332.160000pt;}
.x18_c01304{left:350.080000pt;}
.x1f_c01304{left:359.040000pt;}
.x51_c01304{left:361.600000pt;}
.x2e_c01304{left:368.000000pt;}
.x40_c01304{left:369.280000pt;}
.x48_c01304{left:370.560000pt;}
.x7_c01304{left:378.240000pt;}
.x43_c01304{left:379.520000pt;}
.x59_c01304{left:380.800000pt;}
.x10_c01304{left:387.840000pt;}
.x60_c01304{left:389.120000pt;}
.x54_c01304{left:399.360000pt;}
.x44_c01304{left:407.040000pt;}
.x5a_c01304{left:408.320000pt;}
.x19_c01304{left:416.640000pt;}
.x55_c01304{left:417.920000pt;}
.x11_c01304{left:426.240000pt;}
.x38_c01304{left:427.520000pt;}
.x1a_c01304{left:435.840000pt;}
.x52_c01304{left:437.760000pt;}
.x4b_c01304{left:444.800000pt;}
.x8_c01304{left:446.080000pt;}
.x29_c01304{left:455.040000pt;}
.x66_c01304{left:456.960000pt;}
.x3b_c01304{left:464.640000pt;}
.x12_c01304{left:474.240000pt;}
.x49_c01304{left:475.520000pt;}
.x26_c01304{left:483.200000pt;}
.x6b_c01304{left:484.480000pt;}
.x3c_c01304{left:492.800000pt;}
.x2a_c01304{left:502.400000pt;}
.x20_c01304{left:512.640000pt;}
.x3e_c01304{left:522.240000pt;}
.x1b_c01304{left:531.840000pt;}
.x33_c01304{left:533.760000pt;}
.x21_c01304{left:541.440000pt;}
.x61_c01304{left:542.720000pt;}
.x39_c01304{left:550.400000pt;}
.x13_c01304{left:551.680000pt;}
.x2b_c01304{left:560.640000pt;}
.x9_c01304{left:561.920000pt;}
.x62_c01304{left:570.240000pt;}
.x1_c01304{left:579.200000pt;}
.x2f_c01304{left:580.480000pt;}
.x56_c01304{left:588.160000pt;}
.x34_c01304{left:589.440000pt;}
.xa_c01304{left:590.720000pt;}
.x41_c01304{left:598.400000pt;}
}





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

.ir_c01305:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01305{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01305;src:url('chunks/assets/font_2d82bfd2461b940dbbe60caf.woff2')format("woff");}.ff1_c01305{font-family:ff1_c01305;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m50_c01305{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m5a_c01305{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);}
.m43_c01305{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m4e_c01305{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m5_c01305{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m45_c01305{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m59_c01305{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m37_c01305{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01305{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01305{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m52_c01305{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01305{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);}
.m5b_c01305{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m14_c01305{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);}
.m54_c01305{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);}
.m40_c01305{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01305{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);}
.m34_c01305{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);}
.m57_c01305{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m0_c01305{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1_c01305{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01305{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);}
.m58_c01305{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m4_c01305{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m15_c01305{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);}
.m42_c01305{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);}
.m10_c01305{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m18_c01305{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01305{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);}
.m2c_c01305{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m44_c01305{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);}
.m3a_c01305{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);}
.m3c_c01305{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);}
.mf_c01305{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m46_c01305{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m16_c01305{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m48_c01305{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.mb_c01305{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01305{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m31_c01305{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m49_c01305{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);}
.me_c01305{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);}
.m29_c01305{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m12_c01305{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m19_c01305{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m24_c01305{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m2_c01305{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);}
.m26_c01305{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m8_c01305{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);}
.m41_c01305{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01305{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m11_c01305{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m27_c01305{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01305{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m17_c01305{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);}
.m3d_c01305{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m28_c01305{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01305{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m25_c01305{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);}
.m1f_c01305{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01305{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01305{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m56_c01305{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m36_c01305{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);}
.m55_c01305{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m20_c01305{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m30_c01305{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);}
.m4d_c01305{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m38_c01305{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m7_c01305{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);}
.ma_c01305{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m35_c01305{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m23_c01305{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m39_c01305{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m47_c01305{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);}
.m21_c01305{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m9_c01305{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);}
.m1c_c01305{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01305{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01305{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m6_c01305{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m13_c01305{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);}
.m22_c01305{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);}
.m51_c01305{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01305{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);}
.m1d_c01305{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_c01305{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m5c_c01305{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m32_c01305{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m53_c01305{transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01305{transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);}
.m33_c01305{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.mc_c01305{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_c01305{vertical-align:0.000000px;}
.ls0_c01305{letter-spacing:0.000000px;}
.sc__c01305{text-shadow:none;}
.sc0_c01305{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01305{-webkit-text-stroke:0px transparent;}
.sc0_c01305{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01305{word-spacing:0.000000px;}
.fc0_c01305{color:transparent;}
.fs9_c01305{font-size:31.680000px;}
.fs5_c01305{font-size:34.560000px;}
.fsb_c01305{font-size:37.440000px;}
.fse_c01305{font-size:40.320000px;}
.fs3_c01305{font-size:43.200000px;}
.fs4_c01305{font-size:46.080000px;}
.fs1_c01305{font-size:48.960000px;}
.fs2_c01305{font-size:51.840000px;}
.fsa_c01305{font-size:54.720000px;}
.fs8_c01305{font-size:57.600000px;}
.fs7_c01305{font-size:60.480000px;}
.fs6_c01305{font-size:63.360000px;}
.fsd_c01305{font-size:66.240000px;}
.fsc_c01305{font-size:69.120000px;}
.fs0_c01305{font-size:72.000000px;}
.y0_c01305{bottom:0.000000px;}
.y6d_c01305{bottom:47.520000px;}
.y6b_c01305{bottom:48.240000px;}
.y6a_c01305{bottom:48.960000px;}
.y69_c01305{bottom:49.680000px;}
.y6c_c01305{bottom:50.400000px;}
.y6e_c01305{bottom:51.120000px;}
.y68_c01305{bottom:52.560000px;}
.y65_c01305{bottom:88.560000px;}
.y66_c01305{bottom:89.280000px;}
.y64_c01305{bottom:90.000000px;}
.y63_c01305{bottom:91.440000px;}
.y67_c01305{bottom:93.600000px;}
.y62_c01305{bottom:95.040000px;}
.y5e_c01305{bottom:132.480000px;}
.y5f_c01305{bottom:133.920000px;}
.y5c_c01305{bottom:135.360000px;}
.y5d_c01305{bottom:136.080000px;}
.y61_c01305{bottom:136.800000px;}
.y60_c01305{bottom:137.520000px;}
.y5b_c01305{bottom:138.240000px;}
.y57_c01305{bottom:174.960000px;}
.y56_c01305{bottom:175.680000px;}
.y59_c01305{bottom:176.400000px;}
.y55_c01305{bottom:178.560000px;}
.y58_c01305{bottom:179.280000px;}
.y5a_c01305{bottom:180.000000px;}
.y54_c01305{bottom:228.960000px;}
.y53_c01305{bottom:232.560000px;}
.y52_c01305{bottom:234.000000px;}
.y51_c01305{bottom:272.160000px;}
.y4f_c01305{bottom:275.040000px;}
.y50_c01305{bottom:275.760000px;}
.y4e_c01305{bottom:276.480000px;}
.y4b_c01305{bottom:313.920000px;}
.y4c_c01305{bottom:315.360000px;}
.y4a_c01305{bottom:318.240000px;}
.y49_c01305{bottom:318.960000px;}
.y4d_c01305{bottom:319.680000px;}
.y46_c01305{bottom:357.840000px;}
.y44_c01305{bottom:358.560000px;}
.y45_c01305{bottom:360.720000px;}
.y47_c01305{bottom:361.440000px;}
.y48_c01305{bottom:362.160000px;}
.y43_c01305{bottom:401.040000px;}
.y41_c01305{bottom:401.760000px;}
.y42_c01305{bottom:403.920000px;}
.y3f_c01305{bottom:444.240000px;}
.y40_c01305{bottom:444.960000px;}
.y3c_c01305{bottom:446.400000px;}
.y3e_c01305{bottom:447.120000px;}
.y3d_c01305{bottom:447.840000px;}
.y3b_c01305{bottom:487.440000px;}
.y38_c01305{bottom:488.160000px;}
.y39_c01305{bottom:490.320000px;}
.y3a_c01305{bottom:491.040000px;}
.y35_c01305{bottom:530.640000px;}
.y36_c01305{bottom:531.360000px;}
.y34_c01305{bottom:532.080000px;}
.y37_c01305{bottom:532.800000px;}
.y33_c01305{bottom:533.520000px;}
.y32_c01305{bottom:534.240000px;}
.y30_c01305{bottom:573.120000px;}
.y2e_c01305{bottom:573.840000px;}
.y31_c01305{bottom:576.000000px;}
.y2d_c01305{bottom:576.720000px;}
.y2f_c01305{bottom:577.440000px;}
.y29_c01305{bottom:617.040000px;}
.y2c_c01305{bottom:618.480000px;}
.y2b_c01305{bottom:619.200000px;}
.y2a_c01305{bottom:619.920000px;}
.y28_c01305{bottom:658.800000px;}
.y27_c01305{bottom:659.520000px;}
.y24_c01305{bottom:660.240000px;}
.y25_c01305{bottom:662.400000px;}
.y26_c01305{bottom:663.120000px;}
.y20_c01305{bottom:702.720000px;}
.y21_c01305{bottom:703.440000px;}
.y23_c01305{bottom:704.880000px;}
.y1f_c01305{bottom:705.600000px;}
.y22_c01305{bottom:706.320000px;}
.y1e_c01305{bottom:757.440000px;}
.y1c_c01305{bottom:758.880000px;}
.y1d_c01305{bottom:759.600000px;}
.y18_c01305{bottom:798.480000px;}
.y1b_c01305{bottom:800.640000px;}
.y1a_c01305{bottom:801.360000px;}
.y19_c01305{bottom:802.080000px;}
.y17_c01305{bottom:841.680000px;}
.y16_c01305{bottom:843.840000px;}
.y15_c01305{bottom:844.560000px;}
.y14_c01305{bottom:845.280000px;}
.y12_c01305{bottom:897.120000px;}
.y13_c01305{bottom:897.840000px;}
.y10_c01305{bottom:936.720000px;}
.yc_c01305{bottom:937.440000px;}
.y11_c01305{bottom:938.160000px;}
.yd_c01305{bottom:938.880000px;}
.yf_c01305{bottom:939.600000px;}
.yb_c01305{bottom:940.320000px;}
.ye_c01305{bottom:941.040000px;}
.ya_c01305{bottom:979.920000px;}
.y8_c01305{bottom:980.640000px;}
.y6_c01305{bottom:981.360000px;}
.y9_c01305{bottom:982.800000px;}
.y7_c01305{bottom:983.520000px;}
.y5_c01305{bottom:984.240000px;}
.y4_c01305{bottom:984.960000px;}
.y2_c01305{bottom:1036.800000px;}
.y3_c01305{bottom:1037.520000px;}
.y1_c01305{bottom:1113.840000px;}
.hb_c01305{height:28.508906px;}
.h7_c01305{height:31.100625px;}
.hd_c01305{height:33.692344px;}
.h10_c01305{height:36.284062px;}
.h5_c01305{height:38.875781px;}
.h6_c01305{height:41.467500px;}
.h3_c01305{height:44.059219px;}
.h4_c01305{height:46.650937px;}
.hc_c01305{height:49.242656px;}
.ha_c01305{height:51.834375px;}
.h9_c01305{height:54.426094px;}
.h8_c01305{height:57.017812px;}
.hf_c01305{height:59.609531px;}
.he_c01305{height:62.201250px;}
.h2_c01305{height:64.792969px;}
.h1_c01305{height:1149.000000px;}
.h0_c01305{height:1149.120000px;}
.w0_c01305{width:742.320000px;}
.w1_c01305{width:742.500000px;}
.x0_c01305{left:0.000000px;}
.x2_c01305{left:38.880000px;}
.x18_c01305{left:40.320000px;}
.x40_c01305{left:42.480000px;}
.x19_c01305{left:61.200000px;}
.x3_c01305{left:71.280000px;}
.x22_c01305{left:82.080000px;}
.x26_c01305{left:91.440000px;}
.x3b_c01305{left:101.520000px;}
.x47_c01305{left:102.960000px;}
.x1a_c01305{left:112.320000px;}
.x4_c01305{left:123.120000px;}
.x30_c01305{left:124.560000px;}
.x41_c01305{left:134.640000px;}
.x48_c01305{left:145.440000px;}
.x5_c01305{left:146.880000px;}
.x31_c01305{left:155.520000px;}
.x4c_c01305{left:167.040000px;}
.x45_c01305{left:177.840000px;}
.x6_c01305{left:179.280000px;}
.x3c_c01305{left:189.360000px;}
.x27_c01305{left:198.720000px;}
.x7_c01305{left:200.160000px;}
.x29_c01305{left:211.680000px;}
.x50_c01305{left:213.120000px;}
.x32_c01305{left:221.760000px;}
.x8_c01305{left:232.560000px;}
.x1b_c01305{left:244.080000px;}
.x52_c01305{left:252.720000px;}
.x46_c01305{left:254.160000px;}
.x33_c01305{left:264.960000px;}
.x23_c01305{left:266.400000px;}
.x1c_c01305{left:276.480000px;}
.x12_c01305{left:287.280000px;}
.x28_c01305{left:298.080000px;}
.x9_c01305{left:308.160000px;}
.x38_c01305{left:309.600000px;}
.x49_c01305{left:319.680000px;}
.x2a_c01305{left:330.480000px;}
.x4f_c01305{left:340.560000px;}
.x2b_c01305{left:351.360000px;}
.xa_c01305{left:362.160000px;}
.x39_c01305{left:372.960000px;}
.x1d_c01305{left:384.480000px;}
.xb_c01305{left:394.560000px;}
.x13_c01305{left:405.360000px;}
.x1e_c01305{left:416.160000px;}
.x24_c01305{left:426.960000px;}
.x34_c01305{left:437.760000px;}
.x4d_c01305{left:449.280000px;}
.xc_c01305{left:459.360000px;}
.x42_c01305{left:469.440000px;}
.x1f_c01305{left:470.880000px;}
.x25_c01305{left:492.480000px;}
.x4a_c01305{left:501.840000px;}
.x14_c01305{left:503.280000px;}
.x35_c01305{left:512.640000px;}
.x3e_c01305{left:514.080000px;}
.x2c_c01305{left:522.720000px;}
.xd_c01305{left:524.880000px;}
.x15_c01305{left:535.680000px;}
.x43_c01305{left:545.040000px;}
.x36_c01305{left:554.400000px;}
.x2d_c01305{left:556.560000px;}
.xe_c01305{left:566.640000px;}
.x4e_c01305{left:577.440000px;}
.x2e_c01305{left:578.880000px;}
.x20_c01305{left:589.680000px;}
.x3f_c01305{left:598.320000px;}
.x3d_c01305{left:599.760000px;}
.x37_c01305{left:609.120000px;}
.xf_c01305{left:611.280000px;}
.x2f_c01305{left:619.920000px;}
.x21_c01305{left:621.360000px;}
.x44_c01305{left:630.720000px;}
.x16_c01305{left:632.880000px;}
.x4b_c01305{left:641.520000px;}
.x53_c01305{left:652.320000px;}
.x10_c01305{left:655.200000px;}
.x3a_c01305{left:663.840000px;}
.x17_c01305{left:666.000000px;}
.x51_c01305{left:673.200000px;}
.x1_c01305{left:677.520000px;}
.x11_c01305{left:687.600000px;}
@media print{
.v0_c01305{vertical-align:0.000000pt;}
.ls0_c01305{letter-spacing:0.000000pt;}
.ws0_c01305{word-spacing:0.000000pt;}
.fs9_c01305{font-size:28.160000pt;}
.fs5_c01305{font-size:30.720000pt;}
.fsb_c01305{font-size:33.280000pt;}
.fse_c01305{font-size:35.840000pt;}
.fs3_c01305{font-size:38.400000pt;}
.fs4_c01305{font-size:40.960000pt;}
.fs1_c01305{font-size:43.520000pt;}
.fs2_c01305{font-size:46.080000pt;}
.fsa_c01305{font-size:48.640000pt;}
.fs8_c01305{font-size:51.200000pt;}
.fs7_c01305{font-size:53.760000pt;}
.fs6_c01305{font-size:56.320000pt;}
.fsd_c01305{font-size:58.880000pt;}
.fsc_c01305{font-size:61.440000pt;}
.fs0_c01305{font-size:64.000000pt;}
.y0_c01305{bottom:0.000000pt;}
.y6d_c01305{bottom:42.240000pt;}
.y6b_c01305{bottom:42.880000pt;}
.y6a_c01305{bottom:43.520000pt;}
.y69_c01305{bottom:44.160000pt;}
.y6c_c01305{bottom:44.800000pt;}
.y6e_c01305{bottom:45.440000pt;}
.y68_c01305{bottom:46.720000pt;}
.y65_c01305{bottom:78.720000pt;}
.y66_c01305{bottom:79.360000pt;}
.y64_c01305{bottom:80.000000pt;}
.y63_c01305{bottom:81.280000pt;}
.y67_c01305{bottom:83.200000pt;}
.y62_c01305{bottom:84.480000pt;}
.y5e_c01305{bottom:117.760000pt;}
.y5f_c01305{bottom:119.040000pt;}
.y5c_c01305{bottom:120.320000pt;}
.y5d_c01305{bottom:120.960000pt;}
.y61_c01305{bottom:121.600000pt;}
.y60_c01305{bottom:122.240000pt;}
.y5b_c01305{bottom:122.880000pt;}
.y57_c01305{bottom:155.520000pt;}
.y56_c01305{bottom:156.160000pt;}
.y59_c01305{bottom:156.800000pt;}
.y55_c01305{bottom:158.720000pt;}
.y58_c01305{bottom:159.360000pt;}
.y5a_c01305{bottom:160.000000pt;}
.y54_c01305{bottom:203.520000pt;}
.y53_c01305{bottom:206.720000pt;}
.y52_c01305{bottom:208.000000pt;}
.y51_c01305{bottom:241.920000pt;}
.y4f_c01305{bottom:244.480000pt;}
.y50_c01305{bottom:245.120000pt;}
.y4e_c01305{bottom:245.760000pt;}
.y4b_c01305{bottom:279.040000pt;}
.y4c_c01305{bottom:280.320000pt;}
.y4a_c01305{bottom:282.880000pt;}
.y49_c01305{bottom:283.520000pt;}
.y4d_c01305{bottom:284.160000pt;}
.y46_c01305{bottom:318.080000pt;}
.y44_c01305{bottom:318.720000pt;}
.y45_c01305{bottom:320.640000pt;}
.y47_c01305{bottom:321.280000pt;}
.y48_c01305{bottom:321.920000pt;}
.y43_c01305{bottom:356.480000pt;}
.y41_c01305{bottom:357.120000pt;}
.y42_c01305{bottom:359.040000pt;}
.y3f_c01305{bottom:394.880000pt;}
.y40_c01305{bottom:395.520000pt;}
.y3c_c01305{bottom:396.800000pt;}
.y3e_c01305{bottom:397.440000pt;}
.y3d_c01305{bottom:398.080000pt;}
.y3b_c01305{bottom:433.280000pt;}
.y38_c01305{bottom:433.920000pt;}
.y39_c01305{bottom:435.840000pt;}
.y3a_c01305{bottom:436.480000pt;}
.y35_c01305{bottom:471.680000pt;}
.y36_c01305{bottom:472.320000pt;}
.y34_c01305{bottom:472.960000pt;}
.y37_c01305{bottom:473.600000pt;}
.y33_c01305{bottom:474.240000pt;}
.y32_c01305{bottom:474.880000pt;}
.y30_c01305{bottom:509.440000pt;}
.y2e_c01305{bottom:510.080000pt;}
.y31_c01305{bottom:512.000000pt;}
.y2d_c01305{bottom:512.640000pt;}
.y2f_c01305{bottom:513.280000pt;}
.y29_c01305{bottom:548.480000pt;}
.y2c_c01305{bottom:549.760000pt;}
.y2b_c01305{bottom:550.400000pt;}
.y2a_c01305{bottom:551.040000pt;}
.y28_c01305{bottom:585.600000pt;}
.y27_c01305{bottom:586.240000pt;}
.y24_c01305{bottom:586.880000pt;}
.y25_c01305{bottom:588.800000pt;}
.y26_c01305{bottom:589.440000pt;}
.y20_c01305{bottom:624.640000pt;}
.y21_c01305{bottom:625.280000pt;}
.y23_c01305{bottom:626.560000pt;}
.y1f_c01305{bottom:627.200000pt;}
.y22_c01305{bottom:627.840000pt;}
.y1e_c01305{bottom:673.280000pt;}
.y1c_c01305{bottom:674.560000pt;}
.y1d_c01305{bottom:675.200000pt;}
.y18_c01305{bottom:709.760000pt;}
.y1b_c01305{bottom:711.680000pt;}
.y1a_c01305{bottom:712.320000pt;}
.y19_c01305{bottom:712.960000pt;}
.y17_c01305{bottom:748.160000pt;}
.y16_c01305{bottom:750.080000pt;}
.y15_c01305{bottom:750.720000pt;}
.y14_c01305{bottom:751.360000pt;}
.y12_c01305{bottom:797.440000pt;}
.y13_c01305{bottom:798.080000pt;}
.y10_c01305{bottom:832.640000pt;}
.yc_c01305{bottom:833.280000pt;}
.y11_c01305{bottom:833.920000pt;}
.yd_c01305{bottom:834.560000pt;}
.yf_c01305{bottom:835.200000pt;}
.yb_c01305{bottom:835.840000pt;}
.ye_c01305{bottom:836.480000pt;}
.ya_c01305{bottom:871.040000pt;}
.y8_c01305{bottom:871.680000pt;}
.y6_c01305{bottom:872.320000pt;}
.y9_c01305{bottom:873.600000pt;}
.y7_c01305{bottom:874.240000pt;}
.y5_c01305{bottom:874.880000pt;}
.y4_c01305{bottom:875.520000pt;}
.y2_c01305{bottom:921.600000pt;}
.y3_c01305{bottom:922.240000pt;}
.y1_c01305{bottom:990.080000pt;}
.hb_c01305{height:25.341250pt;}
.h7_c01305{height:27.645000pt;}
.hd_c01305{height:29.948750pt;}
.h10_c01305{height:32.252500pt;}
.h5_c01305{height:34.556250pt;}
.h6_c01305{height:36.860000pt;}
.h3_c01305{height:39.163750pt;}
.h4_c01305{height:41.467500pt;}
.hc_c01305{height:43.771250pt;}
.ha_c01305{height:46.075000pt;}
.h9_c01305{height:48.378750pt;}
.h8_c01305{height:50.682500pt;}
.hf_c01305{height:52.986250pt;}
.he_c01305{height:55.290000pt;}
.h2_c01305{height:57.593750pt;}
.h1_c01305{height:1021.333333pt;}
.h0_c01305{height:1021.440000pt;}
.w0_c01305{width:659.840000pt;}
.w1_c01305{width:660.000000pt;}
.x0_c01305{left:0.000000pt;}
.x2_c01305{left:34.560000pt;}
.x18_c01305{left:35.840000pt;}
.x40_c01305{left:37.760000pt;}
.x19_c01305{left:54.400000pt;}
.x3_c01305{left:63.360000pt;}
.x22_c01305{left:72.960000pt;}
.x26_c01305{left:81.280000pt;}
.x3b_c01305{left:90.240000pt;}
.x47_c01305{left:91.520000pt;}
.x1a_c01305{left:99.840000pt;}
.x4_c01305{left:109.440000pt;}
.x30_c01305{left:110.720000pt;}
.x41_c01305{left:119.680000pt;}
.x48_c01305{left:129.280000pt;}
.x5_c01305{left:130.560000pt;}
.x31_c01305{left:138.240000pt;}
.x4c_c01305{left:148.480000pt;}
.x45_c01305{left:158.080000pt;}
.x6_c01305{left:159.360000pt;}
.x3c_c01305{left:168.320000pt;}
.x27_c01305{left:176.640000pt;}
.x7_c01305{left:177.920000pt;}
.x29_c01305{left:188.160000pt;}
.x50_c01305{left:189.440000pt;}
.x32_c01305{left:197.120000pt;}
.x8_c01305{left:206.720000pt;}
.x1b_c01305{left:216.960000pt;}
.x52_c01305{left:224.640000pt;}
.x46_c01305{left:225.920000pt;}
.x33_c01305{left:235.520000pt;}
.x23_c01305{left:236.800000pt;}
.x1c_c01305{left:245.760000pt;}
.x12_c01305{left:255.360000pt;}
.x28_c01305{left:264.960000pt;}
.x9_c01305{left:273.920000pt;}
.x38_c01305{left:275.200000pt;}
.x49_c01305{left:284.160000pt;}
.x2a_c01305{left:293.760000pt;}
.x4f_c01305{left:302.720000pt;}
.x2b_c01305{left:312.320000pt;}
.xa_c01305{left:321.920000pt;}
.x39_c01305{left:331.520000pt;}
.x1d_c01305{left:341.760000pt;}
.xb_c01305{left:350.720000pt;}
.x13_c01305{left:360.320000pt;}
.x1e_c01305{left:369.920000pt;}
.x24_c01305{left:379.520000pt;}
.x34_c01305{left:389.120000pt;}
.x4d_c01305{left:399.360000pt;}
.xc_c01305{left:408.320000pt;}
.x42_c01305{left:417.280000pt;}
.x1f_c01305{left:418.560000pt;}
.x25_c01305{left:437.760000pt;}
.x4a_c01305{left:446.080000pt;}
.x14_c01305{left:447.360000pt;}
.x35_c01305{left:455.680000pt;}
.x3e_c01305{left:456.960000pt;}
.x2c_c01305{left:464.640000pt;}
.xd_c01305{left:466.560000pt;}
.x15_c01305{left:476.160000pt;}
.x43_c01305{left:484.480000pt;}
.x36_c01305{left:492.800000pt;}
.x2d_c01305{left:494.720000pt;}
.xe_c01305{left:503.680000pt;}
.x4e_c01305{left:513.280000pt;}
.x2e_c01305{left:514.560000pt;}
.x20_c01305{left:524.160000pt;}
.x3f_c01305{left:531.840000pt;}
.x3d_c01305{left:533.120000pt;}
.x37_c01305{left:541.440000pt;}
.xf_c01305{left:543.360000pt;}
.x2f_c01305{left:551.040000pt;}
.x21_c01305{left:552.320000pt;}
.x44_c01305{left:560.640000pt;}
.x16_c01305{left:562.560000pt;}
.x4b_c01305{left:570.240000pt;}
.x53_c01305{left:579.840000pt;}
.x10_c01305{left:582.400000pt;}
.x3a_c01305{left:590.080000pt;}
.x17_c01305{left:592.000000pt;}
.x51_c01305{left:598.400000pt;}
.x1_c01305{left:602.240000pt;}
.x11_c01305{left:611.200000pt;}
}





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

.ir_c01306:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01306{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01306;src:url('chunks/assets/font_2d60804e897623c768d54fa4.woff2')format("woff");}.ff1_c01306{font-family:ff1_c01306;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m58_c01306{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01306{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);}
.m4e_c01306{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_c01306{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);}
.m55_c01306{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m18_c01306{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m40_c01306{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);}
.m3f_c01306{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);}
.m2b_c01306{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);}
.m3c_c01306{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m52_c01306{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m12_c01306{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m5d_c01306{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m60_c01306{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m47_c01306{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m5_c01306{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01306{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m4_c01306{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m17_c01306{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m2_c01306{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m59_c01306{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mb_c01306{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);}
.m57_c01306{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m29_c01306{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m44_c01306{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);}
.m5a_c01306{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01306{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.md_c01306{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m35_c01306{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m0_c01306{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);}
.m4c_c01306{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m53_c01306{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01306{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_c01306{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m15_c01306{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.ma_c01306{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);}
.m20_c01306{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m28_c01306{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);}
.m1c_c01306{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);}
.m32_c01306{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m16_c01306{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m23_c01306{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m3_c01306{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);}
.me_c01306{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01306{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_c01306{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);}
.m50_c01306{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m4d_c01306{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m33_c01306{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.mf_c01306{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);}
.m37_c01306{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m6_c01306{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01306{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);}
.m48_c01306{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m26_c01306{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);}
.mc_c01306{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m63_c01306{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m39_c01306{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m11_c01306{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);}
.m46_c01306{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m34_c01306{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m5e_c01306{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m61_c01306{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);}
.m5f_c01306{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m62_c01306{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01306{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01306{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m1_c01306{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m13_c01306{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);}
.m43_c01306{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);}
.m51_c01306{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m21_c01306{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);}
.m41_c01306{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m24_c01306{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01306{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m31_c01306{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);}
.m3d_c01306{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m8_c01306{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m38_c01306{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m9_c01306{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m49_c01306{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);}
.m30_c01306{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01306{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);}
.m22_c01306{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01306{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m36_c01306{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m5b_c01306{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01306{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);}
.m45_c01306{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);}
.m14_c01306{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);}
.m2c_c01306{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01306{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01306{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m7_c01306{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);}
.m5c_c01306{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m25_c01306{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m56_c01306{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m54_c01306{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);}
.m42_c01306{transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);}
.m27_c01306{transform:matrix(1.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c01306{vertical-align:-5.760000px;}
.v2_c01306{vertical-align:-2.880000px;}
.v0_c01306{vertical-align:0.000000px;}
.ls0_c01306{letter-spacing:0.000000px;}
.sc__c01306{text-shadow:none;}
.sc0_c01306{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01306{-webkit-text-stroke:0px transparent;}
.sc0_c01306{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01306{word-spacing:-2.709360px;}
.ws3_c01306{word-spacing:0.000000px;}
.ws2_c01306{word-spacing:1.485120px;}
.ws0_c01306{word-spacing:6.054000px;}
.fc0_c01306{color:transparent;}
.fse_c01306{font-size:8.640000px;}
.fsc_c01306{font-size:17.280000px;}
.fsd_c01306{font-size:31.680000px;}
.fs1_c01306{font-size:34.560000px;}
.fsb_c01306{font-size:37.440000px;}
.fs4_c01306{font-size:43.200000px;}
.fs7_c01306{font-size:46.080000px;}
.fs6_c01306{font-size:48.960000px;}
.fsa_c01306{font-size:51.840000px;}
.fs3_c01306{font-size:54.720000px;}
.fs5_c01306{font-size:57.600000px;}
.fs2_c01306{font-size:60.480000px;}
.fs9_c01306{font-size:63.360000px;}
.fs8_c01306{font-size:66.240000px;}
.fsf_c01306{font-size:69.120000px;}
.fs0_c01306{font-size:74.880000px;}
.y0_c01306{bottom:0.000000px;}
.y75_c01306{bottom:45.360000px;}
.y74_c01306{bottom:46.080000px;}
.y73_c01306{bottom:46.800000px;}
.y77_c01306{bottom:47.520000px;}
.y76_c01306{bottom:48.240000px;}
.y72_c01306{bottom:48.960000px;}
.y71_c01306{bottom:50.400000px;}
.y6d_c01306{bottom:89.280000px;}
.y6e_c01306{bottom:90.000000px;}
.y70_c01306{bottom:90.720000px;}
.y6f_c01306{bottom:91.440000px;}
.y6c_c01306{bottom:140.400000px;}
.y6b_c01306{bottom:142.560000px;}
.y6a_c01306{bottom:143.280000px;}
.y69_c01306{bottom:144.720000px;}
.y68_c01306{bottom:146.880000px;}
.y64_c01306{bottom:183.600000px;}
.y66_c01306{bottom:184.320000px;}
.y62_c01306{bottom:185.760000px;}
.y63_c01306{bottom:186.480000px;}
.y65_c01306{bottom:187.920000px;}
.y67_c01306{bottom:188.640000px;}
.y5f_c01306{bottom:227.520000px;}
.y5d_c01306{bottom:228.240000px;}
.y5c_c01306{bottom:228.960000px;}
.y5e_c01306{bottom:229.680000px;}
.y60_c01306{bottom:230.400000px;}
.y61_c01306{bottom:231.120000px;}
.y59_c01306{bottom:270.000000px;}
.y5a_c01306{bottom:271.440000px;}
.y57_c01306{bottom:272.160000px;}
.y58_c01306{bottom:273.600000px;}
.y5b_c01306{bottom:274.320000px;}
.y56_c01306{bottom:275.040000px;}
.y55_c01306{bottom:313.920000px;}
.y54_c01306{bottom:315.360000px;}
.y53_c01306{bottom:316.080000px;}
.y52_c01306{bottom:316.800000px;}
.y51_c01306{bottom:317.520000px;}
.y4d_c01306{bottom:356.400000px;}
.y4b_c01306{bottom:357.120000px;}
.y50_c01306{bottom:357.840000px;}
.y4f_c01306{bottom:358.560000px;}
.y4c_c01306{bottom:359.280000px;}
.y4e_c01306{bottom:360.000000px;}
.y4a_c01306{bottom:399.600000px;}
.y49_c01306{bottom:401.760000px;}
.y48_c01306{bottom:402.480000px;}
.y47_c01306{bottom:452.880000px;}
.y45_c01306{bottom:453.600000px;}
.y46_c01306{bottom:455.760000px;}
.y44_c01306{bottom:456.480000px;}
.y42_c01306{bottom:496.800000px;}
.y43_c01306{bottom:498.960000px;}
.y41_c01306{bottom:499.680000px;}
.y40_c01306{bottom:500.400000px;}
.y3d_c01306{bottom:539.280000px;}
.y3b_c01306{bottom:540.000000px;}
.y3f_c01306{bottom:541.440000px;}
.y3c_c01306{bottom:542.160000px;}
.y3e_c01306{bottom:542.880000px;}
.y3a_c01306{bottom:581.040000px;}
.y38_c01306{bottom:581.760000px;}
.y39_c01306{bottom:584.640000px;}
.y37_c01306{bottom:585.360000px;}
.y36_c01306{bottom:624.240000px;}
.y34_c01306{bottom:624.960000px;}
.y35_c01306{bottom:625.680000px;}
.y32_c01306{bottom:627.840000px;}
.y33_c01306{bottom:628.560000px;}
.y31_c01306{bottom:666.720000px;}
.y2f_c01306{bottom:667.440000px;}
.y2d_c01306{bottom:668.160000px;}
.y2e_c01306{bottom:670.320000px;}
.y30_c01306{bottom:671.040000px;}
.y2b_c01306{bottom:709.200000px;}
.y2c_c01306{bottom:709.920000px;}
.y2a_c01306{bottom:711.360000px;}
.y29_c01306{bottom:713.520000px;}
.y28_c01306{bottom:714.240000px;}
.y27_c01306{bottom:714.960000px;}
.y25_c01306{bottom:765.360000px;}
.y26_c01306{bottom:766.800000px;}
.y24_c01306{bottom:767.520000px;}
.y1e_c01306{bottom:807.120000px;}
.y20_c01306{bottom:807.840000px;}
.y23_c01306{bottom:808.560000px;}
.y22_c01306{bottom:809.280000px;}
.y21_c01306{bottom:810.000000px;}
.y1f_c01306{bottom:810.720000px;}
.y1b_c01306{bottom:851.040000px;}
.y1d_c01306{bottom:852.480000px;}
.y1a_c01306{bottom:853.200000px;}
.y1c_c01306{bottom:853.920000px;}
.y19_c01306{bottom:892.800000px;}
.y15_c01306{bottom:893.520000px;}
.y14_c01306{bottom:894.960000px;}
.y13_c01306{bottom:895.680000px;}
.y18_c01306{bottom:896.400000px;}
.y16_c01306{bottom:897.120000px;}
.y17_c01306{bottom:897.840000px;}
.y11_c01306{bottom:936.000000px;}
.yf_c01306{bottom:936.720000px;}
.ye_c01306{bottom:937.440000px;}
.y12_c01306{bottom:938.880000px;}
.y10_c01306{bottom:939.600000px;}
.yd_c01306{bottom:941.040000px;}
.yb_c01306{bottom:990.000000px;}
.ya_c01306{bottom:991.440000px;}
.yc_c01306{bottom:992.160000px;}
.y8_c01306{bottom:992.880000px;}
.y9_c01306{bottom:994.320000px;}
.y6_c01306{bottom:1032.480000px;}
.y3_c01306{bottom:1033.920000px;}
.y7_c01306{bottom:1035.360000px;}
.y2_c01306{bottom:1036.080000px;}
.y4_c01306{bottom:1036.800000px;}
.y5_c01306{bottom:1037.520000px;}
.y1_c01306{bottom:1085.760000px;}
.h10_c01306{height:7.775156px;}
.he_c01306{height:15.550313px;}
.hf_c01306{height:28.508906px;}
.h3_c01306{height:31.100625px;}
.hd_c01306{height:33.692344px;}
.h6_c01306{height:38.875781px;}
.h9_c01306{height:41.467500px;}
.h8_c01306{height:44.059219px;}
.hc_c01306{height:46.650937px;}
.h5_c01306{height:49.242656px;}
.h7_c01306{height:51.834375px;}
.h4_c01306{height:54.426094px;}
.hb_c01306{height:57.017812px;}
.ha_c01306{height:59.609531px;}
.h11_c01306{height:62.201250px;}
.h2_c01306{height:67.384687px;}
.h0_c01306{height:1140.480000px;}
.h1_c01306{height:1140.750000px;}
.w1_c01306{width:729.000000px;}
.w0_c01306{width:729.360000px;}
.x0_c01306{left:0.000000px;}
.xa_c01306{left:30.960000px;}
.x2_c01306{left:32.400000px;}
.x2f_c01306{left:53.280000px;}
.x3_c01306{left:62.640000px;}
.x52_c01306{left:66.960000px;}
.x4f_c01306{left:73.440000px;}
.x3e_c01306{left:82.800000px;}
.x59_c01306{left:92.880000px;}
.x13_c01306{left:94.320000px;}
.x30_c01306{left:104.400000px;}
.x47_c01306{left:105.840000px;}
.x36_c01306{left:114.480000px;}
.x3f_c01306{left:115.920000px;}
.x4a_c01306{left:125.280000px;}
.x1c_c01306{left:127.440000px;}
.xe_c01306{left:137.520000px;}
.x31_c01306{left:138.960000px;}
.x53_c01306{left:158.400000px;}
.x14_c01306{left:159.840000px;}
.x5d_c01306{left:168.480000px;}
.xb_c01306{left:169.920000px;}
.x48_c01306{left:179.280000px;}
.x42_c01306{left:180.720000px;}
.x4_c01306{left:182.160000px;}
.x26_c01306{left:191.520000px;}
.x15_c01306{left:193.680000px;}
.x5a_c01306{left:201.600000px;}
.x1d_c01306{left:203.040000px;}
.x16_c01306{left:213.120000px;}
.x5_c01306{left:224.640000px;}
.x27_c01306{left:235.440000px;}
.x1e_c01306{left:246.960000px;}
.x54_c01306{left:255.600000px;}
.x6_c01306{left:257.040000px;}
.x5b_c01306{left:267.120000px;}
.x1f_c01306{left:278.640000px;}
.x17_c01306{left:280.800000px;}
.x37_c01306{left:289.440000px;}
.x5e_c01306{left:298.800000px;}
.xc_c01306{left:300.240000px;}
.x5c_c01306{left:309.600000px;}
.xf_c01306{left:311.040000px;}
.x43_c01306{left:321.840000px;}
.x28_c01306{left:330.480000px;}
.x18_c01306{left:331.920000px;}
.x10_c01306{left:333.360000px;}
.x32_c01306{left:343.440000px;}
.xd_c01306{left:344.880000px;}
.x38_c01306{left:354.960000px;}
.x29_c01306{left:365.040000px;}
.x20_c01306{left:376.560000px;}
.x11_c01306{left:386.640000px;}
.x50_c01306{left:396.000000px;}
.x19_c01306{left:397.440000px;}
.x39_c01306{left:406.800000px;}
.x2a_c01306{left:408.960000px;}
.x21_c01306{left:410.400000px;}
.x5f_c01306{left:416.880000px;}
.x3b_c01306{left:419.040000px;}
.x7_c01306{left:429.840000px;}
.x44_c01306{left:439.200000px;}
.x2b_c01306{left:440.640000px;}
.x40_c01306{left:450.000000px;}
.x12_c01306{left:451.440000px;}
.x55_c01306{left:461.520000px;}
.x4c_c01306{left:471.600000px;}
.x51_c01306{left:482.400000px;}
.x45_c01306{left:483.840000px;}
.x22_c01306{left:485.280000px;}
.x57_c01306{left:493.200000px;}
.x8_c01306{left:494.640000px;}
.x33_c01306{left:504.720000px;}
.x49_c01306{left:524.160000px;}
.x2c_c01306{left:526.320000px;}
.x3c_c01306{left:534.960000px;}
.x23_c01306{left:536.400000px;}
.x1a_c01306{left:537.840000px;}
.x3a_c01306{left:558.000000px;}
.x34_c01306{left:568.800000px;}
.x24_c01306{left:572.400000px;}
.x58_c01306{left:578.880000px;}
.x2d_c01306{left:581.040000px;}
.x4d_c01306{left:589.680000px;}
.x9_c01306{left:593.280000px;}
.x3d_c01306{left:601.200000px;}
.x1b_c01306{left:602.640000px;}
.x56_c01306{left:611.280000px;}
.x2e_c01306{left:614.160000px;}
.x4b_c01306{left:622.080000px;}
.x4e_c01306{left:632.160000px;}
.x41_c01306{left:633.600000px;}
.x25_c01306{left:635.040000px;}
.x35_c01306{left:655.200000px;}
.x1_c01306{left:662.400000px;}
.x46_c01306{left:665.280000px;}
@media print{
.v1_c01306{vertical-align:-5.120000pt;}
.v2_c01306{vertical-align:-2.560000pt;}
.v0_c01306{vertical-align:0.000000pt;}
.ls0_c01306{letter-spacing:0.000000pt;}
.ws1_c01306{word-spacing:-2.408320pt;}
.ws3_c01306{word-spacing:0.000000pt;}
.ws2_c01306{word-spacing:1.320107pt;}
.ws0_c01306{word-spacing:5.381333pt;}
.fse_c01306{font-size:7.680000pt;}
.fsc_c01306{font-size:15.360000pt;}
.fsd_c01306{font-size:28.160000pt;}
.fs1_c01306{font-size:30.720000pt;}
.fsb_c01306{font-size:33.280000pt;}
.fs4_c01306{font-size:38.400000pt;}
.fs7_c01306{font-size:40.960000pt;}
.fs6_c01306{font-size:43.520000pt;}
.fsa_c01306{font-size:46.080000pt;}
.fs3_c01306{font-size:48.640000pt;}
.fs5_c01306{font-size:51.200000pt;}
.fs2_c01306{font-size:53.760000pt;}
.fs9_c01306{font-size:56.320000pt;}
.fs8_c01306{font-size:58.880000pt;}
.fsf_c01306{font-size:61.440000pt;}
.fs0_c01306{font-size:66.560000pt;}
.y0_c01306{bottom:0.000000pt;}
.y75_c01306{bottom:40.320000pt;}
.y74_c01306{bottom:40.960000pt;}
.y73_c01306{bottom:41.600000pt;}
.y77_c01306{bottom:42.240000pt;}
.y76_c01306{bottom:42.880000pt;}
.y72_c01306{bottom:43.520000pt;}
.y71_c01306{bottom:44.800000pt;}
.y6d_c01306{bottom:79.360000pt;}
.y6e_c01306{bottom:80.000000pt;}
.y70_c01306{bottom:80.640000pt;}
.y6f_c01306{bottom:81.280000pt;}
.y6c_c01306{bottom:124.800000pt;}
.y6b_c01306{bottom:126.720000pt;}
.y6a_c01306{bottom:127.360000pt;}
.y69_c01306{bottom:128.640000pt;}
.y68_c01306{bottom:130.560000pt;}
.y64_c01306{bottom:163.200000pt;}
.y66_c01306{bottom:163.840000pt;}
.y62_c01306{bottom:165.120000pt;}
.y63_c01306{bottom:165.760000pt;}
.y65_c01306{bottom:167.040000pt;}
.y67_c01306{bottom:167.680000pt;}
.y5f_c01306{bottom:202.240000pt;}
.y5d_c01306{bottom:202.880000pt;}
.y5c_c01306{bottom:203.520000pt;}
.y5e_c01306{bottom:204.160000pt;}
.y60_c01306{bottom:204.800000pt;}
.y61_c01306{bottom:205.440000pt;}
.y59_c01306{bottom:240.000000pt;}
.y5a_c01306{bottom:241.280000pt;}
.y57_c01306{bottom:241.920000pt;}
.y58_c01306{bottom:243.200000pt;}
.y5b_c01306{bottom:243.840000pt;}
.y56_c01306{bottom:244.480000pt;}
.y55_c01306{bottom:279.040000pt;}
.y54_c01306{bottom:280.320000pt;}
.y53_c01306{bottom:280.960000pt;}
.y52_c01306{bottom:281.600000pt;}
.y51_c01306{bottom:282.240000pt;}
.y4d_c01306{bottom:316.800000pt;}
.y4b_c01306{bottom:317.440000pt;}
.y50_c01306{bottom:318.080000pt;}
.y4f_c01306{bottom:318.720000pt;}
.y4c_c01306{bottom:319.360000pt;}
.y4e_c01306{bottom:320.000000pt;}
.y4a_c01306{bottom:355.200000pt;}
.y49_c01306{bottom:357.120000pt;}
.y48_c01306{bottom:357.760000pt;}
.y47_c01306{bottom:402.560000pt;}
.y45_c01306{bottom:403.200000pt;}
.y46_c01306{bottom:405.120000pt;}
.y44_c01306{bottom:405.760000pt;}
.y42_c01306{bottom:441.600000pt;}
.y43_c01306{bottom:443.520000pt;}
.y41_c01306{bottom:444.160000pt;}
.y40_c01306{bottom:444.800000pt;}
.y3d_c01306{bottom:479.360000pt;}
.y3b_c01306{bottom:480.000000pt;}
.y3f_c01306{bottom:481.280000pt;}
.y3c_c01306{bottom:481.920000pt;}
.y3e_c01306{bottom:482.560000pt;}
.y3a_c01306{bottom:516.480000pt;}
.y38_c01306{bottom:517.120000pt;}
.y39_c01306{bottom:519.680000pt;}
.y37_c01306{bottom:520.320000pt;}
.y36_c01306{bottom:554.880000pt;}
.y34_c01306{bottom:555.520000pt;}
.y35_c01306{bottom:556.160000pt;}
.y32_c01306{bottom:558.080000pt;}
.y33_c01306{bottom:558.720000pt;}
.y31_c01306{bottom:592.640000pt;}
.y2f_c01306{bottom:593.280000pt;}
.y2d_c01306{bottom:593.920000pt;}
.y2e_c01306{bottom:595.840000pt;}
.y30_c01306{bottom:596.480000pt;}
.y2b_c01306{bottom:630.400000pt;}
.y2c_c01306{bottom:631.040000pt;}
.y2a_c01306{bottom:632.320000pt;}
.y29_c01306{bottom:634.240000pt;}
.y28_c01306{bottom:634.880000pt;}
.y27_c01306{bottom:635.520000pt;}
.y25_c01306{bottom:680.320000pt;}
.y26_c01306{bottom:681.600000pt;}
.y24_c01306{bottom:682.240000pt;}
.y1e_c01306{bottom:717.440000pt;}
.y20_c01306{bottom:718.080000pt;}
.y23_c01306{bottom:718.720000pt;}
.y22_c01306{bottom:719.360000pt;}
.y21_c01306{bottom:720.000000pt;}
.y1f_c01306{bottom:720.640000pt;}
.y1b_c01306{bottom:756.480000pt;}
.y1d_c01306{bottom:757.760000pt;}
.y1a_c01306{bottom:758.400000pt;}
.y1c_c01306{bottom:759.040000pt;}
.y19_c01306{bottom:793.600000pt;}
.y15_c01306{bottom:794.240000pt;}
.y14_c01306{bottom:795.520000pt;}
.y13_c01306{bottom:796.160000pt;}
.y18_c01306{bottom:796.800000pt;}
.y16_c01306{bottom:797.440000pt;}
.y17_c01306{bottom:798.080000pt;}
.y11_c01306{bottom:832.000000pt;}
.yf_c01306{bottom:832.640000pt;}
.ye_c01306{bottom:833.280000pt;}
.y12_c01306{bottom:834.560000pt;}
.y10_c01306{bottom:835.200000pt;}
.yd_c01306{bottom:836.480000pt;}
.yb_c01306{bottom:880.000000pt;}
.ya_c01306{bottom:881.280000pt;}
.yc_c01306{bottom:881.920000pt;}
.y8_c01306{bottom:882.560000pt;}
.y9_c01306{bottom:883.840000pt;}
.y6_c01306{bottom:917.760000pt;}
.y3_c01306{bottom:919.040000pt;}
.y7_c01306{bottom:920.320000pt;}
.y2_c01306{bottom:920.960000pt;}
.y4_c01306{bottom:921.600000pt;}
.y5_c01306{bottom:922.240000pt;}
.y1_c01306{bottom:965.120000pt;}
.h10_c01306{height:6.911250pt;}
.he_c01306{height:13.822500pt;}
.hf_c01306{height:25.341250pt;}
.h3_c01306{height:27.645000pt;}
.hd_c01306{height:29.948750pt;}
.h6_c01306{height:34.556250pt;}
.h9_c01306{height:36.860000pt;}
.h8_c01306{height:39.163750pt;}
.hc_c01306{height:41.467500pt;}
.h5_c01306{height:43.771250pt;}
.h7_c01306{height:46.075000pt;}
.h4_c01306{height:48.378750pt;}
.hb_c01306{height:50.682500pt;}
.ha_c01306{height:52.986250pt;}
.h11_c01306{height:55.290000pt;}
.h2_c01306{height:59.897500pt;}
.h0_c01306{height:1013.760000pt;}
.h1_c01306{height:1014.000000pt;}
.w1_c01306{width:648.000000pt;}
.w0_c01306{width:648.320000pt;}
.x0_c01306{left:0.000000pt;}
.xa_c01306{left:27.520000pt;}
.x2_c01306{left:28.800000pt;}
.x2f_c01306{left:47.360000pt;}
.x3_c01306{left:55.680000pt;}
.x52_c01306{left:59.520000pt;}
.x4f_c01306{left:65.280000pt;}
.x3e_c01306{left:73.600000pt;}
.x59_c01306{left:82.560000pt;}
.x13_c01306{left:83.840000pt;}
.x30_c01306{left:92.800000pt;}
.x47_c01306{left:94.080000pt;}
.x36_c01306{left:101.760000pt;}
.x3f_c01306{left:103.040000pt;}
.x4a_c01306{left:111.360000pt;}
.x1c_c01306{left:113.280000pt;}
.xe_c01306{left:122.240000pt;}
.x31_c01306{left:123.520000pt;}
.x53_c01306{left:140.800000pt;}
.x14_c01306{left:142.080000pt;}
.x5d_c01306{left:149.760000pt;}
.xb_c01306{left:151.040000pt;}
.x48_c01306{left:159.360000pt;}
.x42_c01306{left:160.640000pt;}
.x4_c01306{left:161.920000pt;}
.x26_c01306{left:170.240000pt;}
.x15_c01306{left:172.160000pt;}
.x5a_c01306{left:179.200000pt;}
.x1d_c01306{left:180.480000pt;}
.x16_c01306{left:189.440000pt;}
.x5_c01306{left:199.680000pt;}
.x27_c01306{left:209.280000pt;}
.x1e_c01306{left:219.520000pt;}
.x54_c01306{left:227.200000pt;}
.x6_c01306{left:228.480000pt;}
.x5b_c01306{left:237.440000pt;}
.x1f_c01306{left:247.680000pt;}
.x17_c01306{left:249.600000pt;}
.x37_c01306{left:257.280000pt;}
.x5e_c01306{left:265.600000pt;}
.xc_c01306{left:266.880000pt;}
.x5c_c01306{left:275.200000pt;}
.xf_c01306{left:276.480000pt;}
.x43_c01306{left:286.080000pt;}
.x28_c01306{left:293.760000pt;}
.x18_c01306{left:295.040000pt;}
.x10_c01306{left:296.320000pt;}
.x32_c01306{left:305.280000pt;}
.xd_c01306{left:306.560000pt;}
.x38_c01306{left:315.520000pt;}
.x29_c01306{left:324.480000pt;}
.x20_c01306{left:334.720000pt;}
.x11_c01306{left:343.680000pt;}
.x50_c01306{left:352.000000pt;}
.x19_c01306{left:353.280000pt;}
.x39_c01306{left:361.600000pt;}
.x2a_c01306{left:363.520000pt;}
.x21_c01306{left:364.800000pt;}
.x5f_c01306{left:370.560000pt;}
.x3b_c01306{left:372.480000pt;}
.x7_c01306{left:382.080000pt;}
.x44_c01306{left:390.400000pt;}
.x2b_c01306{left:391.680000pt;}
.x40_c01306{left:400.000000pt;}
.x12_c01306{left:401.280000pt;}
.x55_c01306{left:410.240000pt;}
.x4c_c01306{left:419.200000pt;}
.x51_c01306{left:428.800000pt;}
.x45_c01306{left:430.080000pt;}
.x22_c01306{left:431.360000pt;}
.x57_c01306{left:438.400000pt;}
.x8_c01306{left:439.680000pt;}
.x33_c01306{left:448.640000pt;}
.x49_c01306{left:465.920000pt;}
.x2c_c01306{left:467.840000pt;}
.x3c_c01306{left:475.520000pt;}
.x23_c01306{left:476.800000pt;}
.x1a_c01306{left:478.080000pt;}
.x3a_c01306{left:496.000000pt;}
.x34_c01306{left:505.600000pt;}
.x24_c01306{left:508.800000pt;}
.x58_c01306{left:514.560000pt;}
.x2d_c01306{left:516.480000pt;}
.x4d_c01306{left:524.160000pt;}
.x9_c01306{left:527.360000pt;}
.x3d_c01306{left:534.400000pt;}
.x1b_c01306{left:535.680000pt;}
.x56_c01306{left:543.360000pt;}
.x2e_c01306{left:545.920000pt;}
.x4b_c01306{left:552.960000pt;}
.x4e_c01306{left:561.920000pt;}
.x41_c01306{left:563.200000pt;}
.x25_c01306{left:564.480000pt;}
.x35_c01306{left:582.400000pt;}
.x1_c01306{left:588.800000pt;}
.x46_c01306{left:591.360000pt;}
}





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

.ir_c01307:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01307{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01307;src:url('chunks/assets/font_c385c1e5545de6471695e3df.woff2')format("woff");}.ff1_c01307{font-family:ff1_c01307;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m47_c01307{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m27_c01307{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);}
.m34_c01307{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1_c01307{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);}
.m37_c01307{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);}
.m43_c01307{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m5a_c01307{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01307{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m45_c01307{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01307{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m53_c01307{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m4_c01307{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m51_c01307{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m18_c01307{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.me_c01307{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01307{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);}
.m3e_c01307{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_c01307{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);}
.m40_c01307{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m22_c01307{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m19_c01307{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);}
.m39_c01307{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01307{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m49_c01307{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m0_c01307{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_c01307{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01307{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.mf_c01307{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);}
.m20_c01307{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01307{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_c01307{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);}
.m10_c01307{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m5c_c01307{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);}
.m1b_c01307{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);}
.m54_c01307{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);}
.m4e_c01307{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01307{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m26_c01307{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);}
.m3f_c01307{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m46_c01307{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m5_c01307{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m31_c01307{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);}
.ma_c01307{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m50_c01307{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m41_c01307{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m7_c01307{transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);}
.m11_c01307{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m3_c01307{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01307{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);}
.m21_c01307{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01307{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);}
.m4a_c01307{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m30_c01307{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m5d_c01307{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m9_c01307{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);}
.m36_c01307{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m5b_c01307{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01307{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m8_c01307{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01307{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m56_c01307{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m44_c01307{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m13_c01307{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01307{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);}
.m6_c01307{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);}
.m2c_c01307{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m55_c01307{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m52_c01307{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m59_c01307{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m28_c01307{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.mc_c01307{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);}
.m2d_c01307{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m38_c01307{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m58_c01307{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);}
.m14_c01307{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m57_c01307{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);}
.m12_c01307{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);}
.m35_c01307{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m32_c01307{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01307{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m17_c01307{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01307{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.md_c01307{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m23_c01307{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);}
.m2a_c01307{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m15_c01307{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);}
.mb_c01307{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m2_c01307{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m48_c01307{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);}
.m25_c01307{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m42_c01307{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01307{transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);}
.m29_c01307{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);}
.m24_c01307{transform:matrix(1.122500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.122500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.122500,0.000000,0.000000,0.250000,0,0);}
.v1_c01307{vertical-align:-11.520000px;}
.v0_c01307{vertical-align:0.000000px;}
.v2_c01307{vertical-align:2.880000px;}
.ls0_c01307{letter-spacing:0.000000px;}
.sc__c01307{text-shadow:none;}
.sc0_c01307{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01307{-webkit-text-stroke:0px transparent;}
.sc0_c01307{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01307{word-spacing:-6.346800px;}
.ws0_c01307{word-spacing:-4.948560px;}
.ws4_c01307{word-spacing:0.000000px;}
.ws2_c01307{word-spacing:0.127440px;}
.ws1_c01307{word-spacing:0.340560px;}
.fc0_c01307{color:transparent;}
.fsb_c01307{font-size:20.160000px;}
.fs2_c01307{font-size:34.560000px;}
.fsd_c01307{font-size:37.440000px;}
.fs9_c01307{font-size:40.320000px;}
.fsa_c01307{font-size:43.200000px;}
.fs6_c01307{font-size:46.080000px;}
.fs7_c01307{font-size:48.960000px;}
.fs1_c01307{font-size:51.840000px;}
.fsc_c01307{font-size:54.720000px;}
.fs4_c01307{font-size:57.600000px;}
.fs3_c01307{font-size:60.480000px;}
.fse_c01307{font-size:63.360000px;}
.fs8_c01307{font-size:66.240000px;}
.fs5_c01307{font-size:69.120000px;}
.fsf_c01307{font-size:72.000000px;}
.fs0_c01307{font-size:74.880000px;}
.y0_c01307{bottom:0.000000px;}
.y78_c01307{bottom:18.720000px;}
.y72_c01307{bottom:56.880000px;}
.y74_c01307{bottom:57.600000px;}
.y76_c01307{bottom:59.040000px;}
.y73_c01307{bottom:59.760000px;}
.y71_c01307{bottom:60.480000px;}
.y75_c01307{bottom:61.200000px;}
.y77_c01307{bottom:62.640000px;}
.y70_c01307{bottom:64.080000px;}
.y6b_c01307{bottom:100.800000px;}
.y6c_c01307{bottom:101.520000px;}
.y6e_c01307{bottom:102.240000px;}
.y6a_c01307{bottom:102.960000px;}
.y69_c01307{bottom:103.680000px;}
.y6d_c01307{bottom:104.400000px;}
.y68_c01307{bottom:105.120000px;}
.y6f_c01307{bottom:105.840000px;}
.y67_c01307{bottom:106.560000px;}
.y64_c01307{bottom:144.720000px;}
.y63_c01307{bottom:146.160000px;}
.y65_c01307{bottom:146.880000px;}
.y66_c01307{bottom:147.600000px;}
.y62_c01307{bottom:148.320000px;}
.y61_c01307{bottom:149.760000px;}
.y5d_c01307{bottom:187.920000px;}
.y60_c01307{bottom:188.640000px;}
.y5c_c01307{bottom:190.080000px;}
.y5b_c01307{bottom:190.800000px;}
.y5e_c01307{bottom:191.520000px;}
.y5f_c01307{bottom:192.240000px;}
.y5a_c01307{bottom:243.360000px;}
.y59_c01307{bottom:244.080000px;}
.y58_c01307{bottom:244.800000px;}
.y57_c01307{bottom:245.520000px;}
.y55_c01307{bottom:283.680000px;}
.y52_c01307{bottom:284.400000px;}
.y51_c01307{bottom:285.120000px;}
.y54_c01307{bottom:286.560000px;}
.y53_c01307{bottom:287.280000px;}
.y56_c01307{bottom:288.000000px;}
.y4e_c01307{bottom:326.880000px;}
.y4d_c01307{bottom:327.600000px;}
.y50_c01307{bottom:329.040000px;}
.y4f_c01307{bottom:329.760000px;}
.y4b_c01307{bottom:330.480000px;}
.y4c_c01307{bottom:331.200000px;}
.y4a_c01307{bottom:369.360000px;}
.y49_c01307{bottom:370.080000px;}
.y48_c01307{bottom:372.240000px;}
.y47_c01307{bottom:372.960000px;}
.y44_c01307{bottom:411.840000px;}
.y45_c01307{bottom:413.280000px;}
.y43_c01307{bottom:415.440000px;}
.y42_c01307{bottom:416.160000px;}
.y46_c01307{bottom:416.880000px;}
.y40_c01307{bottom:455.760000px;}
.y41_c01307{bottom:456.480000px;}
.y3f_c01307{bottom:459.360000px;}
.y3e_c01307{bottom:460.080000px;}
.y3a_c01307{bottom:498.960000px;}
.y3d_c01307{bottom:499.680000px;}
.y3c_c01307{bottom:501.840000px;}
.y3b_c01307{bottom:502.560000px;}
.y36_c01307{bottom:542.160000px;}
.y38_c01307{bottom:542.880000px;}
.y39_c01307{bottom:545.040000px;}
.y37_c01307{bottom:545.760000px;}
.y35_c01307{bottom:586.080000px;}
.y34_c01307{bottom:587.520000px;}
.y33_c01307{bottom:588.240000px;}
.y32_c01307{bottom:628.560000px;}
.y31_c01307{bottom:630.720000px;}
.y2f_c01307{bottom:631.440000px;}
.y30_c01307{bottom:632.160000px;}
.y2d_c01307{bottom:671.040000px;}
.y2c_c01307{bottom:671.760000px;}
.y2e_c01307{bottom:673.920000px;}
.y2a_c01307{bottom:674.640000px;}
.y2b_c01307{bottom:675.360000px;}
.y27_c01307{bottom:714.240000px;}
.y25_c01307{bottom:714.960000px;}
.y29_c01307{bottom:716.400000px;}
.y28_c01307{bottom:717.120000px;}
.y26_c01307{bottom:717.840000px;}
.y22_c01307{bottom:757.440000px;}
.y24_c01307{bottom:759.600000px;}
.y20_c01307{bottom:760.320000px;}
.y23_c01307{bottom:761.040000px;}
.y21_c01307{bottom:761.760000px;}
.y1e_c01307{bottom:800.640000px;}
.y1d_c01307{bottom:801.360000px;}
.y1f_c01307{bottom:802.800000px;}
.y1c_c01307{bottom:803.520000px;}
.y1b_c01307{bottom:804.240000px;}
.y19_c01307{bottom:854.640000px;}
.y17_c01307{bottom:856.080000px;}
.y18_c01307{bottom:856.800000px;}
.y1a_c01307{bottom:857.520000px;}
.y16_c01307{bottom:896.400000px;}
.y13_c01307{bottom:897.120000px;}
.y11_c01307{bottom:898.560000px;}
.y15_c01307{bottom:899.280000px;}
.y14_c01307{bottom:900.000000px;}
.y12_c01307{bottom:900.720000px;}
.y10_c01307{bottom:938.160000px;}
.yb_c01307{bottom:938.880000px;}
.yf_c01307{bottom:939.600000px;}
.yd_c01307{bottom:941.040000px;}
.ye_c01307{bottom:941.760000px;}
.yc_c01307{bottom:942.480000px;}
.y8_c01307{bottom:983.520000px;}
.ya_c01307{bottom:984.240000px;}
.y9_c01307{bottom:984.960000px;}
.y7_c01307{bottom:985.680000px;}
.y6_c01307{bottom:986.400000px;}
.y5_c01307{bottom:1036.080000px;}
.y4_c01307{bottom:1036.800000px;}
.y2_c01307{bottom:1038.240000px;}
.y3_c01307{bottom:1039.680000px;}
.y1_c01307{bottom:1098.720000px;}
.hd_c01307{height:18.142031px;}
.h4_c01307{height:31.100625px;}
.hf_c01307{height:33.692344px;}
.hb_c01307{height:36.284062px;}
.hc_c01307{height:38.875781px;}
.h8_c01307{height:41.467500px;}
.h9_c01307{height:44.059219px;}
.h3_c01307{height:46.650937px;}
.he_c01307{height:49.242656px;}
.h6_c01307{height:51.834375px;}
.h5_c01307{height:54.426094px;}
.h10_c01307{height:57.017812px;}
.ha_c01307{height:59.609531px;}
.h7_c01307{height:62.201250px;}
.h11_c01307{height:64.792969px;}
.h2_c01307{height:67.384687px;}
.h1_c01307{height:1143.750000px;}
.h0_c01307{height:1144.080000px;}
.w1_c01307{width:734.250000px;}
.w0_c01307{width:734.400000px;}
.x0_c01307{left:0.000000px;}
.x2_c01307{left:30.960000px;}
.x2b_c01307{left:32.400000px;}
.x47_c01307{left:33.840000px;}
.x31_c01307{left:61.920000px;}
.x3_c01307{left:72.000000px;}
.x4e_c01307{left:73.440000px;}
.x23_c01307{left:82.800000px;}
.x19_c01307{left:93.600000px;}
.x40_c01307{left:95.040000px;}
.x4_c01307{left:104.400000px;}
.x49_c01307{left:105.840000px;}
.x24_c01307{left:115.920000px;}
.x1a_c01307{left:126.000000px;}
.x7_c01307{left:136.800000px;}
.x4a_c01307{left:138.240000px;}
.x4f_c01307{left:147.600000px;}
.x25_c01307{left:149.040000px;}
.x10_c01307{left:159.120000px;}
.x27_c01307{left:169.200000px;}
.x8_c01307{left:170.640000px;}
.x32_c01307{left:180.720000px;}
.x11_c01307{left:192.240000px;}
.x26_c01307{left:200.880000px;}
.x41_c01307{left:203.040000px;}
.x33_c01307{left:213.840000px;}
.x1b_c01307{left:224.640000px;}
.x9_c01307{left:235.440000px;}
.x12_c01307{left:244.800000px;}
.x28_c01307{left:246.240000px;}
.x5_c01307{left:254.880000px;}
.x1c_c01307{left:257.040000px;}
.x3e_c01307{left:267.840000px;}
.x39_c01307{left:277.920000px;}
.xa_c01307{left:289.440000px;}
.x13_c01307{left:300.240000px;}
.x1d_c01307{left:311.040000px;}
.x3c_c01307{left:321.840000px;}
.x14_c01307{left:331.200000px;}
.x6_c01307{left:332.640000px;}
.x1e_c01307{left:344.160000px;}
.x34_c01307{left:354.240000px;}
.x4c_c01307{left:355.680000px;}
.x43_c01307{left:365.040000px;}
.x1f_c01307{left:375.120000px;}
.x4d_c01307{left:376.560000px;}
.x35_c01307{left:387.360000px;}
.x15_c01307{left:397.440000px;}
.x2e_c01307{left:407.520000px;}
.xb_c01307{left:419.040000px;}
.x20_c01307{left:429.120000px;}
.x16_c01307{left:440.640000px;}
.x21_c01307{left:451.440000px;}
.x36_c01307{left:462.240000px;}
.x44_c01307{left:471.600000px;}
.xc_c01307{left:483.120000px;}
.x37_c01307{left:492.480000px;}
.x42_c01307{left:493.920000px;}
.x48_c01307{left:504.000000px;}
.x17_c01307{left:505.440000px;}
.x3a_c01307{left:525.600000px;}
.xd_c01307{left:527.040000px;}
.x2f_c01307{left:535.680000px;}
.x3d_c01307{left:546.480000px;}
.x2c_c01307{left:547.920000px;}
.x38_c01307{left:558.000000px;}
.x29_c01307{left:559.440000px;}
.x4b_c01307{left:569.520000px;}
.x45_c01307{left:578.880000px;}
.x2d_c01307{left:580.320000px;}
.x3f_c01307{left:589.680000px;}
.xe_c01307{left:591.840000px;}
.x30_c01307{left:611.280000px;}
.x22_c01307{left:613.440000px;}
.x2a_c01307{left:623.520000px;}
.x18_c01307{left:624.960000px;}
.x1_c01307{left:628.560000px;}
.x3b_c01307{left:643.680000px;}
.x46_c01307{left:654.480000px;}
.xf_c01307{left:657.360000px;}
@media print{
.v1_c01307{vertical-align:-10.240000pt;}
.v0_c01307{vertical-align:0.000000pt;}
.v2_c01307{vertical-align:2.560000pt;}
.ls0_c01307{letter-spacing:0.000000pt;}
.ws3_c01307{word-spacing:-5.641600pt;}
.ws0_c01307{word-spacing:-4.398720pt;}
.ws4_c01307{word-spacing:0.000000pt;}
.ws2_c01307{word-spacing:0.113280pt;}
.ws1_c01307{word-spacing:0.302720pt;}
.fsb_c01307{font-size:17.920000pt;}
.fs2_c01307{font-size:30.720000pt;}
.fsd_c01307{font-size:33.280000pt;}
.fs9_c01307{font-size:35.840000pt;}
.fsa_c01307{font-size:38.400000pt;}
.fs6_c01307{font-size:40.960000pt;}
.fs7_c01307{font-size:43.520000pt;}
.fs1_c01307{font-size:46.080000pt;}
.fsc_c01307{font-size:48.640000pt;}
.fs4_c01307{font-size:51.200000pt;}
.fs3_c01307{font-size:53.760000pt;}
.fse_c01307{font-size:56.320000pt;}
.fs8_c01307{font-size:58.880000pt;}
.fs5_c01307{font-size:61.440000pt;}
.fsf_c01307{font-size:64.000000pt;}
.fs0_c01307{font-size:66.560000pt;}
.y0_c01307{bottom:0.000000pt;}
.y78_c01307{bottom:16.640000pt;}
.y72_c01307{bottom:50.560000pt;}
.y74_c01307{bottom:51.200000pt;}
.y76_c01307{bottom:52.480000pt;}
.y73_c01307{bottom:53.120000pt;}
.y71_c01307{bottom:53.760000pt;}
.y75_c01307{bottom:54.400000pt;}
.y77_c01307{bottom:55.680000pt;}
.y70_c01307{bottom:56.960000pt;}
.y6b_c01307{bottom:89.600000pt;}
.y6c_c01307{bottom:90.240000pt;}
.y6e_c01307{bottom:90.880000pt;}
.y6a_c01307{bottom:91.520000pt;}
.y69_c01307{bottom:92.160000pt;}
.y6d_c01307{bottom:92.800000pt;}
.y68_c01307{bottom:93.440000pt;}
.y6f_c01307{bottom:94.080000pt;}
.y67_c01307{bottom:94.720000pt;}
.y64_c01307{bottom:128.640000pt;}
.y63_c01307{bottom:129.920000pt;}
.y65_c01307{bottom:130.560000pt;}
.y66_c01307{bottom:131.200000pt;}
.y62_c01307{bottom:131.840000pt;}
.y61_c01307{bottom:133.120000pt;}
.y5d_c01307{bottom:167.040000pt;}
.y60_c01307{bottom:167.680000pt;}
.y5c_c01307{bottom:168.960000pt;}
.y5b_c01307{bottom:169.600000pt;}
.y5e_c01307{bottom:170.240000pt;}
.y5f_c01307{bottom:170.880000pt;}
.y5a_c01307{bottom:216.320000pt;}
.y59_c01307{bottom:216.960000pt;}
.y58_c01307{bottom:217.600000pt;}
.y57_c01307{bottom:218.240000pt;}
.y55_c01307{bottom:252.160000pt;}
.y52_c01307{bottom:252.800000pt;}
.y51_c01307{bottom:253.440000pt;}
.y54_c01307{bottom:254.720000pt;}
.y53_c01307{bottom:255.360000pt;}
.y56_c01307{bottom:256.000000pt;}
.y4e_c01307{bottom:290.560000pt;}
.y4d_c01307{bottom:291.200000pt;}
.y50_c01307{bottom:292.480000pt;}
.y4f_c01307{bottom:293.120000pt;}
.y4b_c01307{bottom:293.760000pt;}
.y4c_c01307{bottom:294.400000pt;}
.y4a_c01307{bottom:328.320000pt;}
.y49_c01307{bottom:328.960000pt;}
.y48_c01307{bottom:330.880000pt;}
.y47_c01307{bottom:331.520000pt;}
.y44_c01307{bottom:366.080000pt;}
.y45_c01307{bottom:367.360000pt;}
.y43_c01307{bottom:369.280000pt;}
.y42_c01307{bottom:369.920000pt;}
.y46_c01307{bottom:370.560000pt;}
.y40_c01307{bottom:405.120000pt;}
.y41_c01307{bottom:405.760000pt;}
.y3f_c01307{bottom:408.320000pt;}
.y3e_c01307{bottom:408.960000pt;}
.y3a_c01307{bottom:443.520000pt;}
.y3d_c01307{bottom:444.160000pt;}
.y3c_c01307{bottom:446.080000pt;}
.y3b_c01307{bottom:446.720000pt;}
.y36_c01307{bottom:481.920000pt;}
.y38_c01307{bottom:482.560000pt;}
.y39_c01307{bottom:484.480000pt;}
.y37_c01307{bottom:485.120000pt;}
.y35_c01307{bottom:520.960000pt;}
.y34_c01307{bottom:522.240000pt;}
.y33_c01307{bottom:522.880000pt;}
.y32_c01307{bottom:558.720000pt;}
.y31_c01307{bottom:560.640000pt;}
.y2f_c01307{bottom:561.280000pt;}
.y30_c01307{bottom:561.920000pt;}
.y2d_c01307{bottom:596.480000pt;}
.y2c_c01307{bottom:597.120000pt;}
.y2e_c01307{bottom:599.040000pt;}
.y2a_c01307{bottom:599.680000pt;}
.y2b_c01307{bottom:600.320000pt;}
.y27_c01307{bottom:634.880000pt;}
.y25_c01307{bottom:635.520000pt;}
.y29_c01307{bottom:636.800000pt;}
.y28_c01307{bottom:637.440000pt;}
.y26_c01307{bottom:638.080000pt;}
.y22_c01307{bottom:673.280000pt;}
.y24_c01307{bottom:675.200000pt;}
.y20_c01307{bottom:675.840000pt;}
.y23_c01307{bottom:676.480000pt;}
.y21_c01307{bottom:677.120000pt;}
.y1e_c01307{bottom:711.680000pt;}
.y1d_c01307{bottom:712.320000pt;}
.y1f_c01307{bottom:713.600000pt;}
.y1c_c01307{bottom:714.240000pt;}
.y1b_c01307{bottom:714.880000pt;}
.y19_c01307{bottom:759.680000pt;}
.y17_c01307{bottom:760.960000pt;}
.y18_c01307{bottom:761.600000pt;}
.y1a_c01307{bottom:762.240000pt;}
.y16_c01307{bottom:796.800000pt;}
.y13_c01307{bottom:797.440000pt;}
.y11_c01307{bottom:798.720000pt;}
.y15_c01307{bottom:799.360000pt;}
.y14_c01307{bottom:800.000000pt;}
.y12_c01307{bottom:800.640000pt;}
.y10_c01307{bottom:833.920000pt;}
.yb_c01307{bottom:834.560000pt;}
.yf_c01307{bottom:835.200000pt;}
.yd_c01307{bottom:836.480000pt;}
.ye_c01307{bottom:837.120000pt;}
.yc_c01307{bottom:837.760000pt;}
.y8_c01307{bottom:874.240000pt;}
.ya_c01307{bottom:874.880000pt;}
.y9_c01307{bottom:875.520000pt;}
.y7_c01307{bottom:876.160000pt;}
.y6_c01307{bottom:876.800000pt;}
.y5_c01307{bottom:920.960000pt;}
.y4_c01307{bottom:921.600000pt;}
.y2_c01307{bottom:922.880000pt;}
.y3_c01307{bottom:924.160000pt;}
.y1_c01307{bottom:976.640000pt;}
.hd_c01307{height:16.126250pt;}
.h4_c01307{height:27.645000pt;}
.hf_c01307{height:29.948750pt;}
.hb_c01307{height:32.252500pt;}
.hc_c01307{height:34.556250pt;}
.h8_c01307{height:36.860000pt;}
.h9_c01307{height:39.163750pt;}
.h3_c01307{height:41.467500pt;}
.he_c01307{height:43.771250pt;}
.h6_c01307{height:46.075000pt;}
.h5_c01307{height:48.378750pt;}
.h10_c01307{height:50.682500pt;}
.ha_c01307{height:52.986250pt;}
.h7_c01307{height:55.290000pt;}
.h11_c01307{height:57.593750pt;}
.h2_c01307{height:59.897500pt;}
.h1_c01307{height:1016.666667pt;}
.h0_c01307{height:1016.960000pt;}
.w1_c01307{width:652.666667pt;}
.w0_c01307{width:652.800000pt;}
.x0_c01307{left:0.000000pt;}
.x2_c01307{left:27.520000pt;}
.x2b_c01307{left:28.800000pt;}
.x47_c01307{left:30.080000pt;}
.x31_c01307{left:55.040000pt;}
.x3_c01307{left:64.000000pt;}
.x4e_c01307{left:65.280000pt;}
.x23_c01307{left:73.600000pt;}
.x19_c01307{left:83.200000pt;}
.x40_c01307{left:84.480000pt;}
.x4_c01307{left:92.800000pt;}
.x49_c01307{left:94.080000pt;}
.x24_c01307{left:103.040000pt;}
.x1a_c01307{left:112.000000pt;}
.x7_c01307{left:121.600000pt;}
.x4a_c01307{left:122.880000pt;}
.x4f_c01307{left:131.200000pt;}
.x25_c01307{left:132.480000pt;}
.x10_c01307{left:141.440000pt;}
.x27_c01307{left:150.400000pt;}
.x8_c01307{left:151.680000pt;}
.x32_c01307{left:160.640000pt;}
.x11_c01307{left:170.880000pt;}
.x26_c01307{left:178.560000pt;}
.x41_c01307{left:180.480000pt;}
.x33_c01307{left:190.080000pt;}
.x1b_c01307{left:199.680000pt;}
.x9_c01307{left:209.280000pt;}
.x12_c01307{left:217.600000pt;}
.x28_c01307{left:218.880000pt;}
.x5_c01307{left:226.560000pt;}
.x1c_c01307{left:228.480000pt;}
.x3e_c01307{left:238.080000pt;}
.x39_c01307{left:247.040000pt;}
.xa_c01307{left:257.280000pt;}
.x13_c01307{left:266.880000pt;}
.x1d_c01307{left:276.480000pt;}
.x3c_c01307{left:286.080000pt;}
.x14_c01307{left:294.400000pt;}
.x6_c01307{left:295.680000pt;}
.x1e_c01307{left:305.920000pt;}
.x34_c01307{left:314.880000pt;}
.x4c_c01307{left:316.160000pt;}
.x43_c01307{left:324.480000pt;}
.x1f_c01307{left:333.440000pt;}
.x4d_c01307{left:334.720000pt;}
.x35_c01307{left:344.320000pt;}
.x15_c01307{left:353.280000pt;}
.x2e_c01307{left:362.240000pt;}
.xb_c01307{left:372.480000pt;}
.x20_c01307{left:381.440000pt;}
.x16_c01307{left:391.680000pt;}
.x21_c01307{left:401.280000pt;}
.x36_c01307{left:410.880000pt;}
.x44_c01307{left:419.200000pt;}
.xc_c01307{left:429.440000pt;}
.x37_c01307{left:437.760000pt;}
.x42_c01307{left:439.040000pt;}
.x48_c01307{left:448.000000pt;}
.x17_c01307{left:449.280000pt;}
.x3a_c01307{left:467.200000pt;}
.xd_c01307{left:468.480000pt;}
.x2f_c01307{left:476.160000pt;}
.x3d_c01307{left:485.760000pt;}
.x2c_c01307{left:487.040000pt;}
.x38_c01307{left:496.000000pt;}
.x29_c01307{left:497.280000pt;}
.x4b_c01307{left:506.240000pt;}
.x45_c01307{left:514.560000pt;}
.x2d_c01307{left:515.840000pt;}
.x3f_c01307{left:524.160000pt;}
.xe_c01307{left:526.080000pt;}
.x30_c01307{left:543.360000pt;}
.x22_c01307{left:545.280000pt;}
.x2a_c01307{left:554.240000pt;}
.x18_c01307{left:555.520000pt;}
.x1_c01307{left:558.720000pt;}
.x3b_c01307{left:572.160000pt;}
.x46_c01307{left:581.760000pt;}
.xf_c01307{left:584.320000pt;}
}





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

.ir_c01308:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01308{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01308;src:url('chunks/assets/font_809c9cabab038cd4f8b017eb.woff2')format("woff");}.ff1_c01308{font-family:ff1_c01308;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m37_c01308{transform:matrix(0.223375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223375,0.000000,0.000000,0.250000,0,0);}
.m17_c01308{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);}
.m5e_c01308{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m16_c01308{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m60_c01308{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);}
.m61_c01308{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);}
.m52_c01308{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m18_c01308{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01308{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01308{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01308{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m0_c01308{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m42_c01308{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);}
.m24_c01308{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m57_c01308{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);}
.m28_c01308{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01308{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);}
.m36_c01308{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m5b_c01308{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);}
.m41_c01308{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01308{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_c01308{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m33_c01308{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m32_c01308{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);}
.m4a_c01308{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m4_c01308{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);}
.ma_c01308{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);}
.m10_c01308{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);}
.m46_c01308{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01308{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);}
.m5_c01308{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01308{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);}
.m59_c01308{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);}
.m14_c01308{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m25_c01308{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01308{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m48_c01308{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);}
.m3e_c01308{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m9_c01308{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);}
.m30_c01308{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);}
.m51_c01308{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m43_c01308{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01308{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m50_c01308{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);}
.m5d_c01308{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m1_c01308{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m11_c01308{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);}
.m35_c01308{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m4d_c01308{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);}
.m29_c01308{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m38_c01308{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m8_c01308{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m19_c01308{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);}
.m3_c01308{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m13_c01308{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m54_c01308{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m22_c01308{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);}
.m12_c01308{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m44_c01308{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.md_c01308{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01308{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m40_c01308{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m27_c01308{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);}
.m15_c01308{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);}
.m5c_c01308{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m4e_c01308{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m31_c01308{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m45_c01308{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_c01308{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01308{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01308{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01308{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m20_c01308{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);}
.m63_c01308{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m39_c01308{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m7_c01308{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.mf_c01308{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.me_c01308{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);}
.mc_c01308{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m21_c01308{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);}
.m6_c01308{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);}
.m5a_c01308{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01308{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01308{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m34_c01308{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01308{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m55_c01308{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);}
.m2_c01308{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);}
.m4b_c01308{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);}
.m23_c01308{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m53_c01308{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01308{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m56_c01308{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m58_c01308{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);}
.m49_c01308{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m5f_c01308{transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01308{transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01308{transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);}
.m62_c01308{transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);}
.m47_c01308{transform:matrix(1.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.190000,0.000000,0.000000,0.250000,0,0);}
.v0_c01308{vertical-align:0.000000px;}
.ls0_c01308{letter-spacing:0.000000px;}
.sc__c01308{text-shadow:none;}
.sc0_c01308{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01308{-webkit-text-stroke:0px transparent;}
.sc0_c01308{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01308{word-spacing:0.000000px;}
.fc0_c01308{color:transparent;}
.fsc_c01308{font-size:17.280000px;}
.fs10_c01308{font-size:20.160000px;}
.fsb_c01308{font-size:31.680000px;}
.fs2_c01308{font-size:34.560000px;}
.fs9_c01308{font-size:37.440000px;}
.fse_c01308{font-size:40.320000px;}
.fs7_c01308{font-size:43.200000px;}
.fs6_c01308{font-size:46.080000px;}
.fs4_c01308{font-size:48.960000px;}
.fs1_c01308{font-size:51.840000px;}
.fs3_c01308{font-size:54.720000px;}
.fs8_c01308{font-size:57.600000px;}
.fs5_c01308{font-size:60.480000px;}
.fsd_c01308{font-size:63.360000px;}
.fsa_c01308{font-size:66.240000px;}
.fsf_c01308{font-size:69.120000px;}
.fs0_c01308{font-size:77.760000px;}
.y0_c01308{bottom:0.000000px;}
.y63_c01308{bottom:33.840000px;}
.y62_c01308{bottom:36.000000px;}
.y61_c01308{bottom:36.720000px;}
.y64_c01308{bottom:37.440000px;}
.y65_c01308{bottom:38.160000px;}
.y66_c01308{bottom:38.880000px;}
.y67_c01308{bottom:39.600000px;}
.y5e_c01308{bottom:89.280000px;}
.y60_c01308{bottom:90.000000px;}
.y5f_c01308{bottom:90.720000px;}
.y5c_c01308{bottom:131.040000px;}
.y5b_c01308{bottom:133.200000px;}
.y5d_c01308{bottom:133.920000px;}
.y5a_c01308{bottom:134.640000px;}
.y59_c01308{bottom:135.360000px;}
.y58_c01308{bottom:136.080000px;}
.y56_c01308{bottom:175.680000px;}
.y55_c01308{bottom:177.840000px;}
.y57_c01308{bottom:178.560000px;}
.y53_c01308{bottom:216.720000px;}
.y52_c01308{bottom:219.600000px;}
.y54_c01308{bottom:220.320000px;}
.y51_c01308{bottom:221.040000px;}
.y50_c01308{bottom:222.480000px;}
.y4e_c01308{bottom:262.080000px;}
.y4c_c01308{bottom:262.800000px;}
.y4b_c01308{bottom:263.520000px;}
.y4d_c01308{bottom:264.240000px;}
.y4f_c01308{bottom:266.400000px;}
.y48_c01308{bottom:315.360000px;}
.y4a_c01308{bottom:316.800000px;}
.y49_c01308{bottom:317.520000px;}
.y47_c01308{bottom:318.240000px;}
.y46_c01308{bottom:320.400000px;}
.y41_c01308{bottom:357.840000px;}
.y43_c01308{bottom:358.560000px;}
.y45_c01308{bottom:359.280000px;}
.y40_c01308{bottom:360.000000px;}
.y42_c01308{bottom:360.720000px;}
.y44_c01308{bottom:361.440000px;}
.y3f_c01308{bottom:362.160000px;}
.y3d_c01308{bottom:401.040000px;}
.y3e_c01308{bottom:403.200000px;}
.y3c_c01308{bottom:403.920000px;}
.y3b_c01308{bottom:404.640000px;}
.y3a_c01308{bottom:443.520000px;}
.y38_c01308{bottom:446.400000px;}
.y39_c01308{bottom:447.120000px;}
.y37_c01308{bottom:447.840000px;}
.y32_c01308{bottom:486.720000px;}
.y34_c01308{bottom:487.440000px;}
.y36_c01308{bottom:488.160000px;}
.y33_c01308{bottom:488.880000px;}
.y31_c01308{bottom:489.600000px;}
.y35_c01308{bottom:490.320000px;}
.y30_c01308{bottom:541.440000px;}
.y2f_c01308{bottom:542.880000px;}
.y2e_c01308{bottom:543.600000px;}
.y2b_c01308{bottom:582.480000px;}
.y28_c01308{bottom:583.200000px;}
.y2d_c01308{bottom:583.920000px;}
.y2c_c01308{bottom:585.360000px;}
.y27_c01308{bottom:586.080000px;}
.y29_c01308{bottom:586.800000px;}
.y2a_c01308{bottom:587.520000px;}
.y26_c01308{bottom:626.400000px;}
.y24_c01308{bottom:628.560000px;}
.y25_c01308{bottom:629.280000px;}
.y23_c01308{bottom:668.880000px;}
.y1f_c01308{bottom:669.600000px;}
.y22_c01308{bottom:670.320000px;}
.y20_c01308{bottom:671.760000px;}
.y21_c01308{bottom:672.480000px;}
.y1d_c01308{bottom:712.080000px;}
.y1e_c01308{bottom:712.800000px;}
.y1a_c01308{bottom:713.520000px;}
.y1b_c01308{bottom:714.240000px;}
.y19_c01308{bottom:714.960000px;}
.y1c_c01308{bottom:715.680000px;}
.y18_c01308{bottom:757.440000px;}
.y16_c01308{bottom:758.160000px;}
.y17_c01308{bottom:758.880000px;}
.y15_c01308{bottom:811.440000px;}
.y14_c01308{bottom:851.760000px;}
.y13_c01308{bottom:852.480000px;}
.y11_c01308{bottom:854.640000px;}
.y12_c01308{bottom:855.360000px;}
.y10_c01308{bottom:894.240000px;}
.ye_c01308{bottom:894.960000px;}
.yd_c01308{bottom:896.400000px;}
.yf_c01308{bottom:897.840000px;}
.yb_c01308{bottom:938.160000px;}
.yc_c01308{bottom:940.320000px;}
.ya_c01308{bottom:941.040000px;}
.y7_c01308{bottom:991.440000px;}
.y6_c01308{bottom:992.880000px;}
.y8_c01308{bottom:993.600000px;}
.y9_c01308{bottom:994.320000px;}
.y5_c01308{bottom:1033.920000px;}
.y4_c01308{bottom:1036.080000px;}
.y2_c01308{bottom:1036.800000px;}
.y3_c01308{bottom:1037.520000px;}
.y1_c01308{bottom:1108.800000px;}
.he_c01308{height:15.550313px;}
.h12_c01308{height:18.142031px;}
.hd_c01308{height:28.508906px;}
.h4_c01308{height:31.100625px;}
.hb_c01308{height:33.692344px;}
.h10_c01308{height:36.284062px;}
.h9_c01308{height:38.875781px;}
.h8_c01308{height:41.467500px;}
.h6_c01308{height:44.059219px;}
.h3_c01308{height:46.650937px;}
.h5_c01308{height:49.242656px;}
.ha_c01308{height:51.834375px;}
.h7_c01308{height:54.426094px;}
.hf_c01308{height:57.017812px;}
.hc_c01308{height:59.609531px;}
.h11_c01308{height:62.201250px;}
.h2_c01308{height:69.976406px;}
.h0_c01308{height:1152.720000px;}
.h1_c01308{height:1152.750000px;}
.w1_c01308{width:747.000000px;}
.w0_c01308{width:747.360000px;}
.x0_c01308{left:0.000000px;}
.xa_c01308{left:36.720000px;}
.x17_c01308{left:38.880000px;}
.x38_c01308{left:40.320000px;}
.x51_c01308{left:41.760000px;}
.x53_c01308{left:43.200000px;}
.x39_c01308{left:64.080000px;}
.x20_c01308{left:69.120000px;}
.x3a_c01308{left:79.200000px;}
.x54_c01308{left:92.160000px;}
.xb_c01308{left:99.360000px;}
.x18_c01308{left:101.520000px;}
.x47_c01308{left:111.600000px;}
.x4d_c01308{left:113.040000px;}
.x30_c01308{left:122.400000px;}
.x21_c01308{left:133.200000px;}
.x2_c01308{left:144.000000px;}
.x31_c01308{left:155.520000px;}
.x4e_c01308{left:164.880000px;}
.x42_c01308{left:166.320000px;}
.x50_c01308{left:176.400000px;}
.x2b_c01308{left:177.840000px;}
.x29_c01308{left:187.200000px;}
.x3b_c01308{left:188.640000px;}
.x10_c01308{left:198.720000px;}
.x4f_c01308{left:200.880000px;}
.x32_c01308{left:210.240000px;}
.x22_c01308{left:220.320000px;}
.x2c_c01308{left:229.680000px;}
.x19_c01308{left:231.120000px;}
.x3c_c01308{left:240.480000px;}
.x11_c01308{left:250.560000px;}
.x23_c01308{left:252.000000px;}
.x55_c01308{left:264.240000px;}
.x1a_c01308{left:273.600000px;}
.x3d_c01308{left:277.200000px;}
.xc_c01308{left:284.400000px;}
.x43_c01308{left:285.840000px;}
.x3_c01308{left:295.920000px;}
.x56_c01308{left:298.080000px;}
.x35_c01308{left:306.720000px;}
.x3e_c01308{left:308.160000px;}
.xd_c01308{left:317.520000px;}
.x4a_c01308{left:318.960000px;}
.x4_c01308{left:326.160000px;}
.x1b_c01308{left:328.320000px;}
.x59_c01308{left:331.920000px;}
.x12_c01308{left:339.120000px;}
.x57_c01308{left:340.560000px;}
.x24_c01308{left:349.920000px;}
.x2d_c01308{left:351.360000px;}
.xe_c01308{left:360.720000px;}
.x44_c01308{left:372.240000px;}
.x36_c01308{left:383.040000px;}
.x4b_c01308{left:394.560000px;}
.x5_c01308{left:403.200000px;}
.x3f_c01308{left:405.360000px;}
.x25_c01308{left:414.720000px;}
.x13_c01308{left:425.520000px;}
.x6_c01308{left:434.880000px;}
.x45_c01308{left:436.320000px;}
.x33_c01308{left:445.680000px;}
.x48_c01308{left:448.560000px;}
.xf_c01308{left:457.920000px;}
.x26_c01308{left:479.520000px;}
.x2a_c01308{left:489.600000px;}
.x14_c01308{left:500.400000px;}
.x1c_c01308{left:511.920000px;}
.x27_c01308{left:522.000000px;}
.x40_c01308{left:532.800000px;}
.x52_c01308{left:542.880000px;}
.x58_c01308{left:553.680000px;}
.x7_c01308{left:555.120000px;}
.x46_c01308{left:564.480000px;}
.x15_c01308{left:565.920000px;}
.x1d_c01308{left:576.720000px;}
.x8_c01308{left:587.520000px;}
.x34_c01308{left:597.600000px;}
.x4c_c01308{left:606.240000px;}
.x2e_c01308{left:608.400000px;}
.x16_c01308{left:609.840000px;}
.x1e_c01308{left:619.920000px;}
.x41_c01308{left:628.560000px;}
.x37_c01308{left:630.000000px;}
.x9_c01308{left:632.880000px;}
.x1f_c01308{left:640.800000px;}
.x2f_c01308{left:650.880000px;}
.x49_c01308{left:661.680000px;}
.x28_c01308{left:663.120000px;}
.x1_c01308{left:667.440000px;}
@media print{
.v0_c01308{vertical-align:0.000000pt;}
.ls0_c01308{letter-spacing:0.000000pt;}
.ws0_c01308{word-spacing:0.000000pt;}
.fsc_c01308{font-size:15.360000pt;}
.fs10_c01308{font-size:17.920000pt;}
.fsb_c01308{font-size:28.160000pt;}
.fs2_c01308{font-size:30.720000pt;}
.fs9_c01308{font-size:33.280000pt;}
.fse_c01308{font-size:35.840000pt;}
.fs7_c01308{font-size:38.400000pt;}
.fs6_c01308{font-size:40.960000pt;}
.fs4_c01308{font-size:43.520000pt;}
.fs1_c01308{font-size:46.080000pt;}
.fs3_c01308{font-size:48.640000pt;}
.fs8_c01308{font-size:51.200000pt;}
.fs5_c01308{font-size:53.760000pt;}
.fsd_c01308{font-size:56.320000pt;}
.fsa_c01308{font-size:58.880000pt;}
.fsf_c01308{font-size:61.440000pt;}
.fs0_c01308{font-size:69.120000pt;}
.y0_c01308{bottom:0.000000pt;}
.y63_c01308{bottom:30.080000pt;}
.y62_c01308{bottom:32.000000pt;}
.y61_c01308{bottom:32.640000pt;}
.y64_c01308{bottom:33.280000pt;}
.y65_c01308{bottom:33.920000pt;}
.y66_c01308{bottom:34.560000pt;}
.y67_c01308{bottom:35.200000pt;}
.y5e_c01308{bottom:79.360000pt;}
.y60_c01308{bottom:80.000000pt;}
.y5f_c01308{bottom:80.640000pt;}
.y5c_c01308{bottom:116.480000pt;}
.y5b_c01308{bottom:118.400000pt;}
.y5d_c01308{bottom:119.040000pt;}
.y5a_c01308{bottom:119.680000pt;}
.y59_c01308{bottom:120.320000pt;}
.y58_c01308{bottom:120.960000pt;}
.y56_c01308{bottom:156.160000pt;}
.y55_c01308{bottom:158.080000pt;}
.y57_c01308{bottom:158.720000pt;}
.y53_c01308{bottom:192.640000pt;}
.y52_c01308{bottom:195.200000pt;}
.y54_c01308{bottom:195.840000pt;}
.y51_c01308{bottom:196.480000pt;}
.y50_c01308{bottom:197.760000pt;}
.y4e_c01308{bottom:232.960000pt;}
.y4c_c01308{bottom:233.600000pt;}
.y4b_c01308{bottom:234.240000pt;}
.y4d_c01308{bottom:234.880000pt;}
.y4f_c01308{bottom:236.800000pt;}
.y48_c01308{bottom:280.320000pt;}
.y4a_c01308{bottom:281.600000pt;}
.y49_c01308{bottom:282.240000pt;}
.y47_c01308{bottom:282.880000pt;}
.y46_c01308{bottom:284.800000pt;}
.y41_c01308{bottom:318.080000pt;}
.y43_c01308{bottom:318.720000pt;}
.y45_c01308{bottom:319.360000pt;}
.y40_c01308{bottom:320.000000pt;}
.y42_c01308{bottom:320.640000pt;}
.y44_c01308{bottom:321.280000pt;}
.y3f_c01308{bottom:321.920000pt;}
.y3d_c01308{bottom:356.480000pt;}
.y3e_c01308{bottom:358.400000pt;}
.y3c_c01308{bottom:359.040000pt;}
.y3b_c01308{bottom:359.680000pt;}
.y3a_c01308{bottom:394.240000pt;}
.y38_c01308{bottom:396.800000pt;}
.y39_c01308{bottom:397.440000pt;}
.y37_c01308{bottom:398.080000pt;}
.y32_c01308{bottom:432.640000pt;}
.y34_c01308{bottom:433.280000pt;}
.y36_c01308{bottom:433.920000pt;}
.y33_c01308{bottom:434.560000pt;}
.y31_c01308{bottom:435.200000pt;}
.y35_c01308{bottom:435.840000pt;}
.y30_c01308{bottom:481.280000pt;}
.y2f_c01308{bottom:482.560000pt;}
.y2e_c01308{bottom:483.200000pt;}
.y2b_c01308{bottom:517.760000pt;}
.y28_c01308{bottom:518.400000pt;}
.y2d_c01308{bottom:519.040000pt;}
.y2c_c01308{bottom:520.320000pt;}
.y27_c01308{bottom:520.960000pt;}
.y29_c01308{bottom:521.600000pt;}
.y2a_c01308{bottom:522.240000pt;}
.y26_c01308{bottom:556.800000pt;}
.y24_c01308{bottom:558.720000pt;}
.y25_c01308{bottom:559.360000pt;}
.y23_c01308{bottom:594.560000pt;}
.y1f_c01308{bottom:595.200000pt;}
.y22_c01308{bottom:595.840000pt;}
.y20_c01308{bottom:597.120000pt;}
.y21_c01308{bottom:597.760000pt;}
.y1d_c01308{bottom:632.960000pt;}
.y1e_c01308{bottom:633.600000pt;}
.y1a_c01308{bottom:634.240000pt;}
.y1b_c01308{bottom:634.880000pt;}
.y19_c01308{bottom:635.520000pt;}
.y1c_c01308{bottom:636.160000pt;}
.y18_c01308{bottom:673.280000pt;}
.y16_c01308{bottom:673.920000pt;}
.y17_c01308{bottom:674.560000pt;}
.y15_c01308{bottom:721.280000pt;}
.y14_c01308{bottom:757.120000pt;}
.y13_c01308{bottom:757.760000pt;}
.y11_c01308{bottom:759.680000pt;}
.y12_c01308{bottom:760.320000pt;}
.y10_c01308{bottom:794.880000pt;}
.ye_c01308{bottom:795.520000pt;}
.yd_c01308{bottom:796.800000pt;}
.yf_c01308{bottom:798.080000pt;}
.yb_c01308{bottom:833.920000pt;}
.yc_c01308{bottom:835.840000pt;}
.ya_c01308{bottom:836.480000pt;}
.y7_c01308{bottom:881.280000pt;}
.y6_c01308{bottom:882.560000pt;}
.y8_c01308{bottom:883.200000pt;}
.y9_c01308{bottom:883.840000pt;}
.y5_c01308{bottom:919.040000pt;}
.y4_c01308{bottom:920.960000pt;}
.y2_c01308{bottom:921.600000pt;}
.y3_c01308{bottom:922.240000pt;}
.y1_c01308{bottom:985.600000pt;}
.he_c01308{height:13.822500pt;}
.h12_c01308{height:16.126250pt;}
.hd_c01308{height:25.341250pt;}
.h4_c01308{height:27.645000pt;}
.hb_c01308{height:29.948750pt;}
.h10_c01308{height:32.252500pt;}
.h9_c01308{height:34.556250pt;}
.h8_c01308{height:36.860000pt;}
.h6_c01308{height:39.163750pt;}
.h3_c01308{height:41.467500pt;}
.h5_c01308{height:43.771250pt;}
.ha_c01308{height:46.075000pt;}
.h7_c01308{height:48.378750pt;}
.hf_c01308{height:50.682500pt;}
.hc_c01308{height:52.986250pt;}
.h11_c01308{height:55.290000pt;}
.h2_c01308{height:62.201250pt;}
.h0_c01308{height:1024.640000pt;}
.h1_c01308{height:1024.666667pt;}
.w1_c01308{width:664.000000pt;}
.w0_c01308{width:664.320000pt;}
.x0_c01308{left:0.000000pt;}
.xa_c01308{left:32.640000pt;}
.x17_c01308{left:34.560000pt;}
.x38_c01308{left:35.840000pt;}
.x51_c01308{left:37.120000pt;}
.x53_c01308{left:38.400000pt;}
.x39_c01308{left:56.960000pt;}
.x20_c01308{left:61.440000pt;}
.x3a_c01308{left:70.400000pt;}
.x54_c01308{left:81.920000pt;}
.xb_c01308{left:88.320000pt;}
.x18_c01308{left:90.240000pt;}
.x47_c01308{left:99.200000pt;}
.x4d_c01308{left:100.480000pt;}
.x30_c01308{left:108.800000pt;}
.x21_c01308{left:118.400000pt;}
.x2_c01308{left:128.000000pt;}
.x31_c01308{left:138.240000pt;}
.x4e_c01308{left:146.560000pt;}
.x42_c01308{left:147.840000pt;}
.x50_c01308{left:156.800000pt;}
.x2b_c01308{left:158.080000pt;}
.x29_c01308{left:166.400000pt;}
.x3b_c01308{left:167.680000pt;}
.x10_c01308{left:176.640000pt;}
.x4f_c01308{left:178.560000pt;}
.x32_c01308{left:186.880000pt;}
.x22_c01308{left:195.840000pt;}
.x2c_c01308{left:204.160000pt;}
.x19_c01308{left:205.440000pt;}
.x3c_c01308{left:213.760000pt;}
.x11_c01308{left:222.720000pt;}
.x23_c01308{left:224.000000pt;}
.x55_c01308{left:234.880000pt;}
.x1a_c01308{left:243.200000pt;}
.x3d_c01308{left:246.400000pt;}
.xc_c01308{left:252.800000pt;}
.x43_c01308{left:254.080000pt;}
.x3_c01308{left:263.040000pt;}
.x56_c01308{left:264.960000pt;}
.x35_c01308{left:272.640000pt;}
.x3e_c01308{left:273.920000pt;}
.xd_c01308{left:282.240000pt;}
.x4a_c01308{left:283.520000pt;}
.x4_c01308{left:289.920000pt;}
.x1b_c01308{left:291.840000pt;}
.x59_c01308{left:295.040000pt;}
.x12_c01308{left:301.440000pt;}
.x57_c01308{left:302.720000pt;}
.x24_c01308{left:311.040000pt;}
.x2d_c01308{left:312.320000pt;}
.xe_c01308{left:320.640000pt;}
.x44_c01308{left:330.880000pt;}
.x36_c01308{left:340.480000pt;}
.x4b_c01308{left:350.720000pt;}
.x5_c01308{left:358.400000pt;}
.x3f_c01308{left:360.320000pt;}
.x25_c01308{left:368.640000pt;}
.x13_c01308{left:378.240000pt;}
.x6_c01308{left:386.560000pt;}
.x45_c01308{left:387.840000pt;}
.x33_c01308{left:396.160000pt;}
.x48_c01308{left:398.720000pt;}
.xf_c01308{left:407.040000pt;}
.x26_c01308{left:426.240000pt;}
.x2a_c01308{left:435.200000pt;}
.x14_c01308{left:444.800000pt;}
.x1c_c01308{left:455.040000pt;}
.x27_c01308{left:464.000000pt;}
.x40_c01308{left:473.600000pt;}
.x52_c01308{left:482.560000pt;}
.x58_c01308{left:492.160000pt;}
.x7_c01308{left:493.440000pt;}
.x46_c01308{left:501.760000pt;}
.x15_c01308{left:503.040000pt;}
.x1d_c01308{left:512.640000pt;}
.x8_c01308{left:522.240000pt;}
.x34_c01308{left:531.200000pt;}
.x4c_c01308{left:538.880000pt;}
.x2e_c01308{left:540.800000pt;}
.x16_c01308{left:542.080000pt;}
.x1e_c01308{left:551.040000pt;}
.x41_c01308{left:558.720000pt;}
.x37_c01308{left:560.000000pt;}
.x9_c01308{left:562.560000pt;}
.x1f_c01308{left:569.600000pt;}
.x2f_c01308{left:578.560000pt;}
.x49_c01308{left:588.160000pt;}
.x28_c01308{left:589.440000pt;}
.x1_c01308{left:593.280000pt;}
}





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

.ir_c01309:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01309{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01309;src:url('chunks/assets/font_d4f5fb9762e543e166db9de6.woff2')format("woff");}.ff1_c01309{font-family:ff1_c01309;line-height:1.109863;font-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_c01309{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m7_c01309{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);}
.m5f_c01309{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m15_c01309{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m5d_c01309{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m42_c01309{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m11_c01309{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m43_c01309{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m5a_c01309{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01309{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01309{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m31_c01309{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);}
.m47_c01309{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01309{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m0_c01309{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);}
.m35_c01309{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m25_c01309{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);}
.m53_c01309{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m45_c01309{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);}
.mc_c01309{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01309{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);}
.m24_c01309{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m17_c01309{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m21_c01309{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);}
.m4a_c01309{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m20_c01309{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m29_c01309{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);}
.m44_c01309{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m33_c01309{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);}
.m1c_c01309{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);}
.m1e_c01309{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01309{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m12_c01309{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);}
.m2a_c01309{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m48_c01309{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);}
.m34_c01309{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m59_c01309{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);}
.m26_c01309{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);}
.m3b_c01309{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m5_c01309{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01309{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.ma_c01309{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m54_c01309{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_c01309{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m18_c01309{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01309{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);}
.m13_c01309{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m27_c01309{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);}
.m1a_c01309{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01309{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m58_c01309{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m37_c01309{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m39_c01309{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);}
.m50_c01309{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m46_c01309{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m6_c01309{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m10_c01309{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);}
.m5e_c01309{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01309{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m4e_c01309{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01309{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m8_c01309{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);}
.m23_c01309{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);}
.m56_c01309{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01309{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m49_c01309{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);}
.m5c_c01309{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m41_c01309{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m30_c01309{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.mb_c01309{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);}
.m57_c01309{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m2_c01309{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01309{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m5b_c01309{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m4_c01309{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m16_c01309{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);}
.md_c01309{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m36_c01309{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_c01309{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01309{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m9_c01309{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m38_c01309{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m40_c01309{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m3_c01309{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01309{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);}
.m32_c01309{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m28_c01309{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01309{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);}
.m19_c01309{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m1_c01309{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01309{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m55_c01309{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m14_c01309{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01309{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);}
.m60_c01309{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.m52_c01309{transform:matrix(0.707500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.707500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.707500,0.000000,0.000000,0.250000,0,0);}
.m51_c01309{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);}
.v1_c01309{vertical-align:-2.880000px;}
.v0_c01309{vertical-align:0.000000px;}
.ls1_c01309{letter-spacing:0.000000px;}
.ls0_c01309{letter-spacing:28.784640px;}
.sc__c01309{text-shadow:none;}
.sc0_c01309{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01309{-webkit-text-stroke:0px transparent;}
.sc0_c01309{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01309{word-spacing:-3.830160px;}
.ws1_c01309{word-spacing:0.000000px;}
.fc0_c01309{color:transparent;}
.fs1_c01309{font-size:34.560000px;}
.fsc_c01309{font-size:37.440000px;}
.fsb_c01309{font-size:40.320000px;}
.fs9_c01309{font-size:43.200000px;}
.fs5_c01309{font-size:46.080000px;}
.fs2_c01309{font-size:48.960000px;}
.fs4_c01309{font-size:51.840000px;}
.fs7_c01309{font-size:54.720000px;}
.fs3_c01309{font-size:57.600000px;}
.fs8_c01309{font-size:60.480000px;}
.fsd_c01309{font-size:63.360000px;}
.fsa_c01309{font-size:66.240000px;}
.fs6_c01309{font-size:69.120000px;}
.fs0_c01309{font-size:77.760000px;}
.y0_c01309{bottom:0.000000px;}
.y68_c01309{bottom:45.360000px;}
.y69_c01309{bottom:46.800000px;}
.y6a_c01309{bottom:47.520000px;}
.y67_c01309{bottom:48.240000px;}
.y6b_c01309{bottom:48.960000px;}
.y6c_c01309{bottom:49.680000px;}
.y6d_c01309{bottom:50.400000px;}
.y66_c01309{bottom:51.120000px;}
.y63_c01309{bottom:88.560000px;}
.y60_c01309{bottom:90.000000px;}
.y62_c01309{bottom:90.720000px;}
.y61_c01309{bottom:91.440000px;}
.y64_c01309{bottom:92.160000px;}
.y65_c01309{bottom:92.880000px;}
.y5c_c01309{bottom:131.760000px;}
.y5e_c01309{bottom:132.480000px;}
.y5a_c01309{bottom:133.200000px;}
.y5b_c01309{bottom:133.920000px;}
.y5d_c01309{bottom:134.640000px;}
.y5f_c01309{bottom:136.800000px;}
.y58_c01309{bottom:185.760000px;}
.y59_c01309{bottom:187.200000px;}
.y57_c01309{bottom:187.920000px;}
.y56_c01309{bottom:190.080000px;}
.y54_c01309{bottom:228.960000px;}
.y55_c01309{bottom:229.680000px;}
.y53_c01309{bottom:230.400000px;}
.y52_c01309{bottom:231.120000px;}
.y51_c01309{bottom:231.840000px;}
.y50_c01309{bottom:232.560000px;}
.y4e_c01309{bottom:270.720000px;}
.y4c_c01309{bottom:271.440000px;}
.y4f_c01309{bottom:272.160000px;}
.y4d_c01309{bottom:273.600000px;}
.y4b_c01309{bottom:275.040000px;}
.y48_c01309{bottom:313.920000px;}
.y49_c01309{bottom:314.640000px;}
.y47_c01309{bottom:316.800000px;}
.y46_c01309{bottom:317.520000px;}
.y4a_c01309{bottom:318.240000px;}
.y44_c01309{bottom:357.120000px;}
.y40_c01309{bottom:357.840000px;}
.y45_c01309{bottom:358.560000px;}
.y43_c01309{bottom:359.280000px;}
.y42_c01309{bottom:360.000000px;}
.y41_c01309{bottom:360.720000px;}
.y3d_c01309{bottom:401.040000px;}
.y3f_c01309{bottom:402.480000px;}
.y3e_c01309{bottom:403.200000px;}
.y3c_c01309{bottom:403.920000px;}
.y3b_c01309{bottom:443.520000px;}
.y3a_c01309{bottom:444.240000px;}
.y39_c01309{bottom:446.400000px;}
.y38_c01309{bottom:447.120000px;}
.y36_c01309{bottom:486.720000px;}
.y34_c01309{bottom:487.440000px;}
.y35_c01309{bottom:489.600000px;}
.y33_c01309{bottom:490.320000px;}
.y37_c01309{bottom:491.040000px;}
.y30_c01309{bottom:529.920000px;}
.y31_c01309{bottom:530.640000px;}
.y32_c01309{bottom:532.080000px;}
.y2e_c01309{bottom:532.800000px;}
.y2f_c01309{bottom:533.520000px;}
.y2d_c01309{bottom:573.840000px;}
.y2c_c01309{bottom:576.000000px;}
.y2b_c01309{bottom:627.120000px;}
.y29_c01309{bottom:629.280000px;}
.y2a_c01309{bottom:630.000000px;}
.y26_c01309{bottom:670.320000px;}
.y28_c01309{bottom:671.040000px;}
.y25_c01309{bottom:672.480000px;}
.y27_c01309{bottom:673.200000px;}
.y24_c01309{bottom:713.520000px;}
.y23_c01309{bottom:714.960000px;}
.y22_c01309{bottom:715.680000px;}
.y21_c01309{bottom:716.400000px;}
.y1d_c01309{bottom:765.360000px;}
.y1f_c01309{bottom:766.080000px;}
.y20_c01309{bottom:767.520000px;}
.y1c_c01309{bottom:768.960000px;}
.y1e_c01309{bottom:769.680000px;}
.y19_c01309{bottom:808.560000px;}
.y1b_c01309{bottom:809.280000px;}
.y18_c01309{bottom:810.000000px;}
.y17_c01309{bottom:811.440000px;}
.y1a_c01309{bottom:812.160000px;}
.y15_c01309{bottom:851.760000px;}
.y16_c01309{bottom:853.920000px;}
.y13_c01309{bottom:854.640000px;}
.y14_c01309{bottom:855.360000px;}
.yf_c01309{bottom:905.040000px;}
.y12_c01309{bottom:905.760000px;}
.y10_c01309{bottom:907.920000px;}
.y11_c01309{bottom:908.640000px;}
.yd_c01309{bottom:948.240000px;}
.ye_c01309{bottom:949.680000px;}
.yb_c01309{bottom:950.400000px;}
.yc_c01309{bottom:951.120000px;}
.y6_c01309{bottom:991.440000px;}
.y7_c01309{bottom:992.160000px;}
.ya_c01309{bottom:992.880000px;}
.y9_c01309{bottom:993.600000px;}
.y8_c01309{bottom:994.320000px;}
.y5_c01309{bottom:1034.640000px;}
.y2_c01309{bottom:1036.800000px;}
.y3_c01309{bottom:1037.520000px;}
.y4_c01309{bottom:1038.240000px;}
.y1_c01309{bottom:1090.080000px;}
.h3_c01309{height:31.100625px;}
.he_c01309{height:33.692344px;}
.hd_c01309{height:36.284062px;}
.hb_c01309{height:38.875781px;}
.h7_c01309{height:41.467500px;}
.h4_c01309{height:44.059219px;}
.h6_c01309{height:46.650937px;}
.h9_c01309{height:49.242656px;}
.h5_c01309{height:51.834375px;}
.ha_c01309{height:54.426094px;}
.hf_c01309{height:57.017812px;}
.hc_c01309{height:59.609531px;}
.h8_c01309{height:62.201250px;}
.h2_c01309{height:69.976406px;}
.h1_c01309{height:1143.750000px;}
.h0_c01309{height:1144.080000px;}
.w1_c01309{width:734.250000px;}
.w0_c01309{width:734.400000px;}
.x0_c01309{left:0.000000px;}
.x2_c01309{left:25.920000px;}
.xd_c01309{left:28.080000px;}
.x38_c01309{left:29.520000px;}
.x40_c01309{left:30.960000px;}
.x3_c01309{left:59.040000px;}
.x16_c01309{left:69.840000px;}
.x32_c01309{left:79.920000px;}
.x47_c01309{left:81.360000px;}
.x4_c01309{left:91.440000px;}
.x17_c01309{left:101.520000px;}
.x1f_c01309{left:113.040000px;}
.x4b_c01309{left:123.120000px;}
.x5_c01309{left:124.560000px;}
.x18_c01309{left:133.920000px;}
.x24_c01309{left:135.360000px;}
.x45_c01309{left:144.000000px;}
.x20_c01309{left:145.440000px;}
.x39_c01309{left:156.960000px;}
.x2f_c01309{left:167.760000px;}
.x4c_c01309{left:176.400000px;}
.x3c_c01309{left:177.840000px;}
.xe_c01309{left:187.920000px;}
.x55_c01309{left:189.360000px;}
.x33_c01309{left:198.000000px;}
.x57_c01309{left:199.440000px;}
.x19_c01309{left:209.520000px;}
.xf_c01309{left:210.960000px;}
.x21_c01309{left:221.040000px;}
.x6_c01309{left:231.840000px;}
.x2e_c01309{left:233.280000px;}
.x10_c01309{left:243.360000px;}
.x1a_c01309{left:254.160000px;}
.x56_c01309{left:263.520000px;}
.x4f_c01309{left:264.960000px;}
.x4d_c01309{left:275.040000px;}
.x41_c01309{left:276.480000px;}
.x22_c01309{left:286.560000px;}
.x50_c01309{left:297.360000px;}
.x7_c01309{left:308.160000px;}
.x23_c01309{left:318.960000px;}
.x3b_c01309{left:328.320000px;}
.x25_c01309{left:329.760000px;}
.x3d_c01309{left:339.840000px;}
.x11_c01309{left:351.360000px;}
.x26_c01309{left:362.160000px;}
.x51_c01309{left:363.600000px;}
.x2b_c01309{left:372.960000px;}
.x1b_c01309{left:383.760000px;}
.x12_c01309{left:404.640000px;}
.x27_c01309{left:406.080000px;}
.x30_c01309{left:416.160000px;}
.x3a_c01309{left:426.240000px;}
.x8_c01309{left:437.040000px;}
.x1c_c01309{left:447.840000px;}
.x52_c01309{left:457.920000px;}
.x3e_c01309{left:460.080000px;}
.x4e_c01309{left:468.720000px;}
.x31_c01309{left:479.520000px;}
.x9_c01309{left:481.680000px;}
.x34_c01309{left:491.040000px;}
.x13_c01309{left:493.200000px;}
.x28_c01309{left:501.840000px;}
.x42_c01309{left:512.640000px;}
.x35_c01309{left:523.440000px;}
.x29_c01309{left:534.240000px;}
.xa_c01309{left:536.400000px;}
.x2c_c01309{left:544.320000px;}
.x14_c01309{left:545.760000px;}
.x3f_c01309{left:555.840000px;}
.x54_c01309{left:565.200000px;}
.x48_c01309{left:567.360000px;}
.x2a_c01309{left:576.720000px;}
.x36_c01309{left:587.520000px;}
.xb_c01309{left:590.400000px;}
.x2d_c01309{left:598.320000px;}
.x15_c01309{left:599.760000px;}
.x43_c01309{left:609.120000px;}
.x1d_c01309{left:610.560000px;}
.x46_c01309{left:619.920000px;}
.x37_c01309{left:630.720000px;}
.x1e_c01309{left:632.880000px;}
.x44_c01309{left:641.520000px;}
.x49_c01309{left:642.960000px;}
.x53_c01309{left:652.320000px;}
.x1_c01309{left:653.760000px;}
.xc_c01309{left:655.920000px;}
.x4a_c01309{left:663.840000px;}
@media print{
.v1_c01309{vertical-align:-2.560000pt;}
.v0_c01309{vertical-align:0.000000pt;}
.ls1_c01309{letter-spacing:0.000000pt;}
.ls0_c01309{letter-spacing:25.586347pt;}
.ws0_c01309{word-spacing:-3.404587pt;}
.ws1_c01309{word-spacing:0.000000pt;}
.fs1_c01309{font-size:30.720000pt;}
.fsc_c01309{font-size:33.280000pt;}
.fsb_c01309{font-size:35.840000pt;}
.fs9_c01309{font-size:38.400000pt;}
.fs5_c01309{font-size:40.960000pt;}
.fs2_c01309{font-size:43.520000pt;}
.fs4_c01309{font-size:46.080000pt;}
.fs7_c01309{font-size:48.640000pt;}
.fs3_c01309{font-size:51.200000pt;}
.fs8_c01309{font-size:53.760000pt;}
.fsd_c01309{font-size:56.320000pt;}
.fsa_c01309{font-size:58.880000pt;}
.fs6_c01309{font-size:61.440000pt;}
.fs0_c01309{font-size:69.120000pt;}
.y0_c01309{bottom:0.000000pt;}
.y68_c01309{bottom:40.320000pt;}
.y69_c01309{bottom:41.600000pt;}
.y6a_c01309{bottom:42.240000pt;}
.y67_c01309{bottom:42.880000pt;}
.y6b_c01309{bottom:43.520000pt;}
.y6c_c01309{bottom:44.160000pt;}
.y6d_c01309{bottom:44.800000pt;}
.y66_c01309{bottom:45.440000pt;}
.y63_c01309{bottom:78.720000pt;}
.y60_c01309{bottom:80.000000pt;}
.y62_c01309{bottom:80.640000pt;}
.y61_c01309{bottom:81.280000pt;}
.y64_c01309{bottom:81.920000pt;}
.y65_c01309{bottom:82.560000pt;}
.y5c_c01309{bottom:117.120000pt;}
.y5e_c01309{bottom:117.760000pt;}
.y5a_c01309{bottom:118.400000pt;}
.y5b_c01309{bottom:119.040000pt;}
.y5d_c01309{bottom:119.680000pt;}
.y5f_c01309{bottom:121.600000pt;}
.y58_c01309{bottom:165.120000pt;}
.y59_c01309{bottom:166.400000pt;}
.y57_c01309{bottom:167.040000pt;}
.y56_c01309{bottom:168.960000pt;}
.y54_c01309{bottom:203.520000pt;}
.y55_c01309{bottom:204.160000pt;}
.y53_c01309{bottom:204.800000pt;}
.y52_c01309{bottom:205.440000pt;}
.y51_c01309{bottom:206.080000pt;}
.y50_c01309{bottom:206.720000pt;}
.y4e_c01309{bottom:240.640000pt;}
.y4c_c01309{bottom:241.280000pt;}
.y4f_c01309{bottom:241.920000pt;}
.y4d_c01309{bottom:243.200000pt;}
.y4b_c01309{bottom:244.480000pt;}
.y48_c01309{bottom:279.040000pt;}
.y49_c01309{bottom:279.680000pt;}
.y47_c01309{bottom:281.600000pt;}
.y46_c01309{bottom:282.240000pt;}
.y4a_c01309{bottom:282.880000pt;}
.y44_c01309{bottom:317.440000pt;}
.y40_c01309{bottom:318.080000pt;}
.y45_c01309{bottom:318.720000pt;}
.y43_c01309{bottom:319.360000pt;}
.y42_c01309{bottom:320.000000pt;}
.y41_c01309{bottom:320.640000pt;}
.y3d_c01309{bottom:356.480000pt;}
.y3f_c01309{bottom:357.760000pt;}
.y3e_c01309{bottom:358.400000pt;}
.y3c_c01309{bottom:359.040000pt;}
.y3b_c01309{bottom:394.240000pt;}
.y3a_c01309{bottom:394.880000pt;}
.y39_c01309{bottom:396.800000pt;}
.y38_c01309{bottom:397.440000pt;}
.y36_c01309{bottom:432.640000pt;}
.y34_c01309{bottom:433.280000pt;}
.y35_c01309{bottom:435.200000pt;}
.y33_c01309{bottom:435.840000pt;}
.y37_c01309{bottom:436.480000pt;}
.y30_c01309{bottom:471.040000pt;}
.y31_c01309{bottom:471.680000pt;}
.y32_c01309{bottom:472.960000pt;}
.y2e_c01309{bottom:473.600000pt;}
.y2f_c01309{bottom:474.240000pt;}
.y2d_c01309{bottom:510.080000pt;}
.y2c_c01309{bottom:512.000000pt;}
.y2b_c01309{bottom:557.440000pt;}
.y29_c01309{bottom:559.360000pt;}
.y2a_c01309{bottom:560.000000pt;}
.y26_c01309{bottom:595.840000pt;}
.y28_c01309{bottom:596.480000pt;}
.y25_c01309{bottom:597.760000pt;}
.y27_c01309{bottom:598.400000pt;}
.y24_c01309{bottom:634.240000pt;}
.y23_c01309{bottom:635.520000pt;}
.y22_c01309{bottom:636.160000pt;}
.y21_c01309{bottom:636.800000pt;}
.y1d_c01309{bottom:680.320000pt;}
.y1f_c01309{bottom:680.960000pt;}
.y20_c01309{bottom:682.240000pt;}
.y1c_c01309{bottom:683.520000pt;}
.y1e_c01309{bottom:684.160000pt;}
.y19_c01309{bottom:718.720000pt;}
.y1b_c01309{bottom:719.360000pt;}
.y18_c01309{bottom:720.000000pt;}
.y17_c01309{bottom:721.280000pt;}
.y1a_c01309{bottom:721.920000pt;}
.y15_c01309{bottom:757.120000pt;}
.y16_c01309{bottom:759.040000pt;}
.y13_c01309{bottom:759.680000pt;}
.y14_c01309{bottom:760.320000pt;}
.yf_c01309{bottom:804.480000pt;}
.y12_c01309{bottom:805.120000pt;}
.y10_c01309{bottom:807.040000pt;}
.y11_c01309{bottom:807.680000pt;}
.yd_c01309{bottom:842.880000pt;}
.ye_c01309{bottom:844.160000pt;}
.yb_c01309{bottom:844.800000pt;}
.yc_c01309{bottom:845.440000pt;}
.y6_c01309{bottom:881.280000pt;}
.y7_c01309{bottom:881.920000pt;}
.ya_c01309{bottom:882.560000pt;}
.y9_c01309{bottom:883.200000pt;}
.y8_c01309{bottom:883.840000pt;}
.y5_c01309{bottom:919.680000pt;}
.y2_c01309{bottom:921.600000pt;}
.y3_c01309{bottom:922.240000pt;}
.y4_c01309{bottom:922.880000pt;}
.y1_c01309{bottom:968.960000pt;}
.h3_c01309{height:27.645000pt;}
.he_c01309{height:29.948750pt;}
.hd_c01309{height:32.252500pt;}
.hb_c01309{height:34.556250pt;}
.h7_c01309{height:36.860000pt;}
.h4_c01309{height:39.163750pt;}
.h6_c01309{height:41.467500pt;}
.h9_c01309{height:43.771250pt;}
.h5_c01309{height:46.075000pt;}
.ha_c01309{height:48.378750pt;}
.hf_c01309{height:50.682500pt;}
.hc_c01309{height:52.986250pt;}
.h8_c01309{height:55.290000pt;}
.h2_c01309{height:62.201250pt;}
.h1_c01309{height:1016.666667pt;}
.h0_c01309{height:1016.960000pt;}
.w1_c01309{width:652.666667pt;}
.w0_c01309{width:652.800000pt;}
.x0_c01309{left:0.000000pt;}
.x2_c01309{left:23.040000pt;}
.xd_c01309{left:24.960000pt;}
.x38_c01309{left:26.240000pt;}
.x40_c01309{left:27.520000pt;}
.x3_c01309{left:52.480000pt;}
.x16_c01309{left:62.080000pt;}
.x32_c01309{left:71.040000pt;}
.x47_c01309{left:72.320000pt;}
.x4_c01309{left:81.280000pt;}
.x17_c01309{left:90.240000pt;}
.x1f_c01309{left:100.480000pt;}
.x4b_c01309{left:109.440000pt;}
.x5_c01309{left:110.720000pt;}
.x18_c01309{left:119.040000pt;}
.x24_c01309{left:120.320000pt;}
.x45_c01309{left:128.000000pt;}
.x20_c01309{left:129.280000pt;}
.x39_c01309{left:139.520000pt;}
.x2f_c01309{left:149.120000pt;}
.x4c_c01309{left:156.800000pt;}
.x3c_c01309{left:158.080000pt;}
.xe_c01309{left:167.040000pt;}
.x55_c01309{left:168.320000pt;}
.x33_c01309{left:176.000000pt;}
.x57_c01309{left:177.280000pt;}
.x19_c01309{left:186.240000pt;}
.xf_c01309{left:187.520000pt;}
.x21_c01309{left:196.480000pt;}
.x6_c01309{left:206.080000pt;}
.x2e_c01309{left:207.360000pt;}
.x10_c01309{left:216.320000pt;}
.x1a_c01309{left:225.920000pt;}
.x56_c01309{left:234.240000pt;}
.x4f_c01309{left:235.520000pt;}
.x4d_c01309{left:244.480000pt;}
.x41_c01309{left:245.760000pt;}
.x22_c01309{left:254.720000pt;}
.x50_c01309{left:264.320000pt;}
.x7_c01309{left:273.920000pt;}
.x23_c01309{left:283.520000pt;}
.x3b_c01309{left:291.840000pt;}
.x25_c01309{left:293.120000pt;}
.x3d_c01309{left:302.080000pt;}
.x11_c01309{left:312.320000pt;}
.x26_c01309{left:321.920000pt;}
.x51_c01309{left:323.200000pt;}
.x2b_c01309{left:331.520000pt;}
.x1b_c01309{left:341.120000pt;}
.x12_c01309{left:359.680000pt;}
.x27_c01309{left:360.960000pt;}
.x30_c01309{left:369.920000pt;}
.x3a_c01309{left:378.880000pt;}
.x8_c01309{left:388.480000pt;}
.x1c_c01309{left:398.080000pt;}
.x52_c01309{left:407.040000pt;}
.x3e_c01309{left:408.960000pt;}
.x4e_c01309{left:416.640000pt;}
.x31_c01309{left:426.240000pt;}
.x9_c01309{left:428.160000pt;}
.x34_c01309{left:436.480000pt;}
.x13_c01309{left:438.400000pt;}
.x28_c01309{left:446.080000pt;}
.x42_c01309{left:455.680000pt;}
.x35_c01309{left:465.280000pt;}
.x29_c01309{left:474.880000pt;}
.xa_c01309{left:476.800000pt;}
.x2c_c01309{left:483.840000pt;}
.x14_c01309{left:485.120000pt;}
.x3f_c01309{left:494.080000pt;}
.x54_c01309{left:502.400000pt;}
.x48_c01309{left:504.320000pt;}
.x2a_c01309{left:512.640000pt;}
.x36_c01309{left:522.240000pt;}
.xb_c01309{left:524.800000pt;}
.x2d_c01309{left:531.840000pt;}
.x15_c01309{left:533.120000pt;}
.x43_c01309{left:541.440000pt;}
.x1d_c01309{left:542.720000pt;}
.x46_c01309{left:551.040000pt;}
.x37_c01309{left:560.640000pt;}
.x1e_c01309{left:562.560000pt;}
.x44_c01309{left:570.240000pt;}
.x49_c01309{left:571.520000pt;}
.x53_c01309{left:579.840000pt;}
.x1_c01309{left:581.120000pt;}
.xc_c01309{left:583.040000pt;}
.x4a_c01309{left:590.080000pt;}
}





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

.ir_c01310:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01310{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01310;src:url('chunks/assets/font_bf1d9c6060f38a30fc936cbf.woff2')format("woff");}.ff1_c01310{font-family:ff1_c01310;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3a_c01310{transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);}
.m3b_c01310{transform:matrix(0.174850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174850,0.000000,0.000000,0.250000,0,0);}
.m8_c01310{transform:matrix(0.182875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182875,0.000000,0.000000,0.250000,0,0);}
.m4_c01310{transform:matrix(0.187350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187350,0.000000,0.000000,0.250000,0,0);}
.ma_c01310{transform:matrix(0.189325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189325,0.000000,0.000000,0.250000,0,0);}
.m2a_c01310{transform:matrix(0.200550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200550,0.000000,0.000000,0.250000,0,0);}
.m5_c01310{transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);}
.m13_c01310{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m24_c01310{transform:matrix(0.224225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224225,0.000000,0.000000,0.250000,0,0);}
.m3_c01310{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m9_c01310{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m6_c01310{transform:matrix(0.237300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237300,0.000000,0.000000,0.250000,0,0);}
.m1c_c01310{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.md_c01310{transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);}
.m7_c01310{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m18_c01310{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);}
.m31_c01310{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m19_c01310{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m16_c01310{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m17_c01310{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_c01310{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m11_c01310{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m39_c01310{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);}
.m33_c01310{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mf_c01310{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01310{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m0_c01310{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01310{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01310{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.mb_c01310{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1_c01310{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.me_c01310{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m22_c01310{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m15_c01310{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01310{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01310{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);}
.m38_c01310{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m2_c01310{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m14_c01310{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01310{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);}
.m44_c01310{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m36_c01310{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);}
.m28_c01310{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01310{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);}
.m42_c01310{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01310{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01310{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m23_c01310{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);}
.m30_c01310{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m25_c01310{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m12_c01310{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);}
.m20_c01310{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_c01310{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);}
.m35_c01310{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m37_c01310{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);}
.m32_c01310{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m40_c01310{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);}
.m45_c01310{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01310{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01310{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m21_c01310{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.mc_c01310{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);}
.m43_c01310{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m29_c01310{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m26_c01310{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);}
.m2b_c01310{transform:matrix(0.695000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.695000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.695000,0.000000,0.000000,0.250000,0,0);}
.m46_c01310{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m27_c01310{transform:matrix(2.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.400000,0.000000,0.000000,0.250000,0,0);}
.m41_c01310{transform:matrix(2.760000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.760000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.760000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01310{transform:matrix(3.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.000000,0.000000,0.000000,0.250000,0,0);}
.m34_c01310{transform:matrix(3.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.720000,0.000000,0.000000,0.250000,0,0);}
.v1_c01310{vertical-align:-17.280000px;}
.v0_c01310{vertical-align:0.000000px;}
.ls0_c01310{letter-spacing:0.000000px;}
.sc__c01310{text-shadow:none;}
.sc0_c01310{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01310{-webkit-text-stroke:0px transparent;}
.sc0_c01310{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01310{word-spacing:0.000000px;}
.ws2_c01310{word-spacing:17.710800px;}
.ws1_c01310{word-spacing:32.544478px;}
.ws0_c01310{word-spacing:58.531092px;}
.fc0_c01310{color:transparent;}
.fs10_c01310{font-size:5.760000px;}
.fs12_c01310{font-size:8.640000px;}
.fs14_c01310{font-size:14.400000px;}
.fs15_c01310{font-size:17.280000px;}
.fs8_c01310{font-size:37.440000px;}
.fs1_c01310{font-size:40.320000px;}
.fs11_c01310{font-size:43.200000px;}
.fsc_c01310{font-size:48.960000px;}
.fs2_c01310{font-size:51.840000px;}
.fs3_c01310{font-size:54.720000px;}
.fs13_c01310{font-size:57.600000px;}
.fs6_c01310{font-size:60.480000px;}
.fs5_c01310{font-size:63.360000px;}
.fs4_c01310{font-size:66.240000px;}
.fsf_c01310{font-size:69.120000px;}
.fs9_c01310{font-size:72.000000px;}
.fsd_c01310{font-size:77.760000px;}
.fse_c01310{font-size:80.640000px;}
.fsb_c01310{font-size:86.400000px;}
.fsa_c01310{font-size:95.040000px;}
.fs0_c01310{font-size:100.800000px;}
.fs7_c01310{font-size:244.800000px;}
.y0_c01310{bottom:0.000000px;}
.y4b_c01310{bottom:46.080000px;}
.y47_c01310{bottom:48.960000px;}
.y49_c01310{bottom:49.680000px;}
.y48_c01310{bottom:50.400000px;}
.y46_c01310{bottom:52.560000px;}
.y4a_c01310{bottom:53.280000px;}
.y44_c01310{bottom:54.000000px;}
.y45_c01310{bottom:56.880000px;}
.y42_c01310{bottom:95.040000px;}
.y40_c01310{bottom:96.480000px;}
.y41_c01310{bottom:97.200000px;}
.y3e_c01310{bottom:97.920000px;}
.y43_c01310{bottom:98.640000px;}
.y3f_c01310{bottom:103.680000px;}
.y3b_c01310{bottom:135.360000px;}
.y3d_c01310{bottom:136.080000px;}
.y3c_c01310{bottom:138.960000px;}
.y38_c01310{bottom:178.560000px;}
.y37_c01310{bottom:181.440000px;}
.y3a_c01310{bottom:182.160000px;}
.y39_c01310{bottom:182.880000px;}
.y35_c01310{bottom:183.600000px;}
.y36_c01310{bottom:189.360000px;}
.y30_c01310{bottom:222.480000px;}
.y32_c01310{bottom:224.640000px;}
.y31_c01310{bottom:226.080000px;}
.y2f_c01310{bottom:226.800000px;}
.y2e_c01310{bottom:227.520000px;}
.y33_c01310{bottom:228.960000px;}
.y34_c01310{bottom:229.680000px;}
.y2c_c01310{bottom:265.680000px;}
.y2d_c01310{bottom:268.560000px;}
.y2b_c01310{bottom:269.280000px;}
.y29_c01310{bottom:270.000000px;}
.y2a_c01310{bottom:273.600000px;}
.y25_c01310{bottom:328.320000px;}
.y24_c01310{bottom:329.760000px;}
.y26_c01310{bottom:330.480000px;}
.y27_c01310{bottom:331.200000px;}
.y28_c01310{bottom:331.920000px;}
.y20_c01310{bottom:370.080000px;}
.y22_c01310{bottom:374.400000px;}
.y21_c01310{bottom:375.120000px;}
.y23_c01310{bottom:375.840000px;}
.y1f_c01310{bottom:472.320000px;}
.y1b_c01310{bottom:474.480000px;}
.y1d_c01310{bottom:475.200000px;}
.y1c_c01310{bottom:475.920000px;}
.y1e_c01310{bottom:476.640000px;}
.y19_c01310{bottom:533.520000px;}
.y1a_c01310{bottom:534.240000px;}
.y18_c01310{bottom:535.680000px;}
.y17_c01310{bottom:537.120000px;}
.ye_c01310{bottom:638.640000px;}
.yd_c01310{bottom:681.120000px;}
.y16_c01310{bottom:709.920000px;}
.yc_c01310{bottom:724.320000px;}
.yb_c01310{bottom:766.080000px;}
.y15_c01310{bottom:778.320000px;}
.ya_c01310{bottom:809.280000px;}
.y9_c01310{bottom:850.320000px;}
.y8_c01310{bottom:897.120000px;}
.y7_c01310{bottom:937.440000px;}
.y14_c01310{bottom:944.640000px;}
.y6_c01310{bottom:980.640000px;}
.y12_c01310{bottom:1011.600000px;}
.y13_c01310{bottom:1013.040000px;}
.yf_c01310{bottom:1022.400000px;}
.y5_c01310{bottom:1024.560000px;}
.y11_c01310{bottom:1051.200000px;}
.y10_c01310{bottom:1052.640000px;}
.y4_c01310{bottom:1065.600000px;}
.y3_c01310{bottom:1093.680000px;}
.y2_c01310{bottom:1128.960000px;}
.y1_c01310{bottom:1129.680000px;}
.h12_c01310{height:5.183438px;}
.h14_c01310{height:7.775156px;}
.h16_c01310{height:12.958594px;}
.h17_c01310{height:15.550313px;}
.ha_c01310{height:33.692344px;}
.h3_c01310{height:36.284062px;}
.h13_c01310{height:38.875781px;}
.he_c01310{height:44.059219px;}
.h4_c01310{height:46.650937px;}
.h5_c01310{height:49.242656px;}
.h15_c01310{height:51.834375px;}
.h8_c01310{height:54.426094px;}
.h7_c01310{height:57.017812px;}
.h6_c01310{height:59.609531px;}
.h11_c01310{height:62.201250px;}
.hb_c01310{height:64.792969px;}
.hf_c01310{height:69.976406px;}
.h10_c01310{height:72.568125px;}
.hd_c01310{height:77.751563px;}
.hc_c01310{height:85.526719px;}
.h2_c01310{height:90.710156px;}
.h9_c01310{height:220.296094px;}
.h0_c01310{height:1190.880000px;}
.h1_c01310{height:1191.000000px;}
.w1_c01310{width:783.750000px;}
.w0_c01310{width:784.080000px;}
.x0_c01310{left:0.000000px;}
.x3_c01310{left:25.200000px;}
.x5_c01310{left:27.360000px;}
.x4_c01310{left:28.800000px;}
.xe_c01310{left:40.320000px;}
.x1d_c01310{left:51.840000px;}
.xf_c01310{left:86.400000px;}
.xd_c01310{left:109.440000px;}
.x33_c01310{left:116.640000px;}
.x2f_c01310{left:118.080000px;}
.x10_c01310{left:125.280000px;}
.x34_c01310{left:129.600000px;}
.x1e_c01310{left:131.040000px;}
.x3e_c01310{left:136.080000px;}
.x49_c01310{left:141.840000px;}
.x52_c01310{left:143.280000px;}
.x30_c01310{left:145.440000px;}
.x24_c01310{left:165.600000px;}
.x11_c01310{left:167.760000px;}
.x4a_c01310{left:172.080000px;}
.x1f_c01310{left:173.520000px;}
.xc_c01310{left:203.760000px;}
.x7_c01310{left:208.080000px;}
.xb_c01310{left:209.520000px;}
.x20_c01310{left:212.400000px;}
.x9_c01310{left:213.840000px;}
.x35_c01310{left:222.480000px;}
.x3f_c01310{left:225.360000px;}
.xa_c01310{left:226.800000px;}
.x2a_c01310{left:230.400000px;}
.x31_c01310{left:236.160000px;}
.x47_c01310{left:241.920000px;}
.x12_c01310{left:251.280000px;}
.x48_c01310{left:257.040000px;}
.x4b_c01310{left:279.360000px;}
.x25_c01310{left:280.800000px;}
.x40_c01310{left:284.400000px;}
.x2b_c01310{left:287.280000px;}
.x21_c01310{left:296.640000px;}
.x13_c01310{left:298.080000px;}
.x53_c01310{left:299.520000px;}
.x54_c01310{left:312.480000px;}
.x26_c01310{left:320.400000px;}
.x6_c01310{left:321.840000px;}
.x8_c01310{left:324.000000px;}
.x36_c01310{left:328.320000px;}
.x41_c01310{left:332.640000px;}
.x14_c01310{left:339.120000px;}
.x4c_c01310{left:346.320000px;}
.x32_c01310{left:360.720000px;}
.x2c_c01310{left:364.320000px;}
.x27_c01310{left:365.760000px;}
.x55_c01310{left:378.000000px;}
.x15_c01310{left:382.320000px;}
.x4d_c01310{left:393.120000px;}
.x56_c01310{left:395.280000px;}
.x2d_c01310{left:410.400000px;}
.x37_c01310{left:417.600000px;}
.x16_c01310{left:422.640000px;}
.x42_c01310{left:424.800000px;}
.x57_c01310{left:440.640000px;}
.x4e_c01310{left:443.520000px;}
.x17_c01310{left:465.120000px;}
.x38_c01310{left:467.280000px;}
.x28_c01310{left:470.880000px;}
.x4f_c01310{left:496.080000px;}
.x18_c01310{left:506.880000px;}
.x29_c01310{left:513.360000px;}
.x1_c01310{left:517.680000px;}
.x58_c01310{left:529.920000px;}
.x39_c01310{left:534.960000px;}
.x43_c01310{left:542.160000px;}
.x19_c01310{left:548.640000px;}
.x3a_c01310{left:557.280000px;}
.x44_c01310{left:588.240000px;}
.x1a_c01310{left:593.280000px;}
.x50_c01310{left:596.160000px;}
.x22_c01310{left:604.800000px;}
.x2e_c01310{left:606.960000px;}
.x3b_c01310{left:611.280000px;}
.x51_c01310{left:617.760000px;}
.x45_c01310{left:622.080000px;}
.x1b_c01310{left:635.040000px;}
.x23_c01310{left:639.360000px;}
.x3c_c01310{left:650.160000px;}
.x46_c01310{left:658.800000px;}
.x3d_c01310{left:666.000000px;}
.x2_c01310{left:670.320000px;}
.x1c_c01310{left:678.240000px;}
@media print{
.v1_c01310{vertical-align:-15.360000pt;}
.v0_c01310{vertical-align:0.000000pt;}
.ls0_c01310{letter-spacing:0.000000pt;}
.ws3_c01310{word-spacing:0.000000pt;}
.ws2_c01310{word-spacing:15.742933pt;}
.ws1_c01310{word-spacing:28.928425pt;}
.ws0_c01310{word-spacing:52.027638pt;}
.fs10_c01310{font-size:5.120000pt;}
.fs12_c01310{font-size:7.680000pt;}
.fs14_c01310{font-size:12.800000pt;}
.fs15_c01310{font-size:15.360000pt;}
.fs8_c01310{font-size:33.280000pt;}
.fs1_c01310{font-size:35.840000pt;}
.fs11_c01310{font-size:38.400000pt;}
.fsc_c01310{font-size:43.520000pt;}
.fs2_c01310{font-size:46.080000pt;}
.fs3_c01310{font-size:48.640000pt;}
.fs13_c01310{font-size:51.200000pt;}
.fs6_c01310{font-size:53.760000pt;}
.fs5_c01310{font-size:56.320000pt;}
.fs4_c01310{font-size:58.880000pt;}
.fsf_c01310{font-size:61.440000pt;}
.fs9_c01310{font-size:64.000000pt;}
.fsd_c01310{font-size:69.120000pt;}
.fse_c01310{font-size:71.680000pt;}
.fsb_c01310{font-size:76.800000pt;}
.fsa_c01310{font-size:84.480000pt;}
.fs0_c01310{font-size:89.600000pt;}
.fs7_c01310{font-size:217.600000pt;}
.y0_c01310{bottom:0.000000pt;}
.y4b_c01310{bottom:40.960000pt;}
.y47_c01310{bottom:43.520000pt;}
.y49_c01310{bottom:44.160000pt;}
.y48_c01310{bottom:44.800000pt;}
.y46_c01310{bottom:46.720000pt;}
.y4a_c01310{bottom:47.360000pt;}
.y44_c01310{bottom:48.000000pt;}
.y45_c01310{bottom:50.560000pt;}
.y42_c01310{bottom:84.480000pt;}
.y40_c01310{bottom:85.760000pt;}
.y41_c01310{bottom:86.400000pt;}
.y3e_c01310{bottom:87.040000pt;}
.y43_c01310{bottom:87.680000pt;}
.y3f_c01310{bottom:92.160000pt;}
.y3b_c01310{bottom:120.320000pt;}
.y3d_c01310{bottom:120.960000pt;}
.y3c_c01310{bottom:123.520000pt;}
.y38_c01310{bottom:158.720000pt;}
.y37_c01310{bottom:161.280000pt;}
.y3a_c01310{bottom:161.920000pt;}
.y39_c01310{bottom:162.560000pt;}
.y35_c01310{bottom:163.200000pt;}
.y36_c01310{bottom:168.320000pt;}
.y30_c01310{bottom:197.760000pt;}
.y32_c01310{bottom:199.680000pt;}
.y31_c01310{bottom:200.960000pt;}
.y2f_c01310{bottom:201.600000pt;}
.y2e_c01310{bottom:202.240000pt;}
.y33_c01310{bottom:203.520000pt;}
.y34_c01310{bottom:204.160000pt;}
.y2c_c01310{bottom:236.160000pt;}
.y2d_c01310{bottom:238.720000pt;}
.y2b_c01310{bottom:239.360000pt;}
.y29_c01310{bottom:240.000000pt;}
.y2a_c01310{bottom:243.200000pt;}
.y25_c01310{bottom:291.840000pt;}
.y24_c01310{bottom:293.120000pt;}
.y26_c01310{bottom:293.760000pt;}
.y27_c01310{bottom:294.400000pt;}
.y28_c01310{bottom:295.040000pt;}
.y20_c01310{bottom:328.960000pt;}
.y22_c01310{bottom:332.800000pt;}
.y21_c01310{bottom:333.440000pt;}
.y23_c01310{bottom:334.080000pt;}
.y1f_c01310{bottom:419.840000pt;}
.y1b_c01310{bottom:421.760000pt;}
.y1d_c01310{bottom:422.400000pt;}
.y1c_c01310{bottom:423.040000pt;}
.y1e_c01310{bottom:423.680000pt;}
.y19_c01310{bottom:474.240000pt;}
.y1a_c01310{bottom:474.880000pt;}
.y18_c01310{bottom:476.160000pt;}
.y17_c01310{bottom:477.440000pt;}
.ye_c01310{bottom:567.680000pt;}
.yd_c01310{bottom:605.440000pt;}
.y16_c01310{bottom:631.040000pt;}
.yc_c01310{bottom:643.840000pt;}
.yb_c01310{bottom:680.960000pt;}
.y15_c01310{bottom:691.840000pt;}
.ya_c01310{bottom:719.360000pt;}
.y9_c01310{bottom:755.840000pt;}
.y8_c01310{bottom:797.440000pt;}
.y7_c01310{bottom:833.280000pt;}
.y14_c01310{bottom:839.680000pt;}
.y6_c01310{bottom:871.680000pt;}
.y12_c01310{bottom:899.200000pt;}
.y13_c01310{bottom:900.480000pt;}
.yf_c01310{bottom:908.800000pt;}
.y5_c01310{bottom:910.720000pt;}
.y11_c01310{bottom:934.400000pt;}
.y10_c01310{bottom:935.680000pt;}
.y4_c01310{bottom:947.200000pt;}
.y3_c01310{bottom:972.160000pt;}
.y2_c01310{bottom:1003.520000pt;}
.y1_c01310{bottom:1004.160000pt;}
.h12_c01310{height:4.607500pt;}
.h14_c01310{height:6.911250pt;}
.h16_c01310{height:11.518750pt;}
.h17_c01310{height:13.822500pt;}
.ha_c01310{height:29.948750pt;}
.h3_c01310{height:32.252500pt;}
.h13_c01310{height:34.556250pt;}
.he_c01310{height:39.163750pt;}
.h4_c01310{height:41.467500pt;}
.h5_c01310{height:43.771250pt;}
.h15_c01310{height:46.075000pt;}
.h8_c01310{height:48.378750pt;}
.h7_c01310{height:50.682500pt;}
.h6_c01310{height:52.986250pt;}
.h11_c01310{height:55.290000pt;}
.hb_c01310{height:57.593750pt;}
.hf_c01310{height:62.201250pt;}
.h10_c01310{height:64.505000pt;}
.hd_c01310{height:69.112500pt;}
.hc_c01310{height:76.023750pt;}
.h2_c01310{height:80.631250pt;}
.h9_c01310{height:195.818750pt;}
.h0_c01310{height:1058.560000pt;}
.h1_c01310{height:1058.666667pt;}
.w1_c01310{width:696.666667pt;}
.w0_c01310{width:696.960000pt;}
.x0_c01310{left:0.000000pt;}
.x3_c01310{left:22.400000pt;}
.x5_c01310{left:24.320000pt;}
.x4_c01310{left:25.600000pt;}
.xe_c01310{left:35.840000pt;}
.x1d_c01310{left:46.080000pt;}
.xf_c01310{left:76.800000pt;}
.xd_c01310{left:97.280000pt;}
.x33_c01310{left:103.680000pt;}
.x2f_c01310{left:104.960000pt;}
.x10_c01310{left:111.360000pt;}
.x34_c01310{left:115.200000pt;}
.x1e_c01310{left:116.480000pt;}
.x3e_c01310{left:120.960000pt;}
.x49_c01310{left:126.080000pt;}
.x52_c01310{left:127.360000pt;}
.x30_c01310{left:129.280000pt;}
.x24_c01310{left:147.200000pt;}
.x11_c01310{left:149.120000pt;}
.x4a_c01310{left:152.960000pt;}
.x1f_c01310{left:154.240000pt;}
.xc_c01310{left:181.120000pt;}
.x7_c01310{left:184.960000pt;}
.xb_c01310{left:186.240000pt;}
.x20_c01310{left:188.800000pt;}
.x9_c01310{left:190.080000pt;}
.x35_c01310{left:197.760000pt;}
.x3f_c01310{left:200.320000pt;}
.xa_c01310{left:201.600000pt;}
.x2a_c01310{left:204.800000pt;}
.x31_c01310{left:209.920000pt;}
.x47_c01310{left:215.040000pt;}
.x12_c01310{left:223.360000pt;}
.x48_c01310{left:228.480000pt;}
.x4b_c01310{left:248.320000pt;}
.x25_c01310{left:249.600000pt;}
.x40_c01310{left:252.800000pt;}
.x2b_c01310{left:255.360000pt;}
.x21_c01310{left:263.680000pt;}
.x13_c01310{left:264.960000pt;}
.x53_c01310{left:266.240000pt;}
.x54_c01310{left:277.760000pt;}
.x26_c01310{left:284.800000pt;}
.x6_c01310{left:286.080000pt;}
.x8_c01310{left:288.000000pt;}
.x36_c01310{left:291.840000pt;}
.x41_c01310{left:295.680000pt;}
.x14_c01310{left:301.440000pt;}
.x4c_c01310{left:307.840000pt;}
.x32_c01310{left:320.640000pt;}
.x2c_c01310{left:323.840000pt;}
.x27_c01310{left:325.120000pt;}
.x55_c01310{left:336.000000pt;}
.x15_c01310{left:339.840000pt;}
.x4d_c01310{left:349.440000pt;}
.x56_c01310{left:351.360000pt;}
.x2d_c01310{left:364.800000pt;}
.x37_c01310{left:371.200000pt;}
.x16_c01310{left:375.680000pt;}
.x42_c01310{left:377.600000pt;}
.x57_c01310{left:391.680000pt;}
.x4e_c01310{left:394.240000pt;}
.x17_c01310{left:413.440000pt;}
.x38_c01310{left:415.360000pt;}
.x28_c01310{left:418.560000pt;}
.x4f_c01310{left:440.960000pt;}
.x18_c01310{left:450.560000pt;}
.x29_c01310{left:456.320000pt;}
.x1_c01310{left:460.160000pt;}
.x58_c01310{left:471.040000pt;}
.x39_c01310{left:475.520000pt;}
.x43_c01310{left:481.920000pt;}
.x19_c01310{left:487.680000pt;}
.x3a_c01310{left:495.360000pt;}
.x44_c01310{left:522.880000pt;}
.x1a_c01310{left:527.360000pt;}
.x50_c01310{left:529.920000pt;}
.x22_c01310{left:537.600000pt;}
.x2e_c01310{left:539.520000pt;}
.x3b_c01310{left:543.360000pt;}
.x51_c01310{left:549.120000pt;}
.x45_c01310{left:552.960000pt;}
.x1b_c01310{left:564.480000pt;}
.x23_c01310{left:568.320000pt;}
.x3c_c01310{left:577.920000pt;}
.x46_c01310{left:585.600000pt;}
.x3d_c01310{left:592.000000pt;}
.x2_c01310{left:595.840000pt;}
.x1c_c01310{left:602.880000pt;}
}





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

.ir_c01311:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01311{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01311;src:url('chunks/assets/font_506040c659dedcefa9649c14.woff2')format("woff");}.ff1_c01311{font-family:ff1_c01311;line-height:1.109863;font-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_c01311{transform:matrix(0.189925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189925,0.000000,0.000000,0.250000,0,0);}
.m48_c01311{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_c01311{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m36_c01311{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);}
.m5e_c01311{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);}
.m63_c01311{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m22_c01311{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m5c_c01311{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m44_c01311{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m59_c01311{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01311{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m34_c01311{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m52_c01311{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m62_c01311{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);}
.m25_c01311{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);}
.m3c_c01311{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m19_c01311{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);}
.m5d_c01311{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m13_c01311{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_c01311{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.mb_c01311{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m33_c01311{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m0_c01311{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m10_c01311{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m8_c01311{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);}
.m6_c01311{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m1_c01311{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);}
.m2_c01311{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m30_c01311{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m16_c01311{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m53_c01311{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);}
.m18_c01311{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);}
.m60_c01311{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);}
.m57_c01311{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m31_c01311{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m11_c01311{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);}
.m24_c01311{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m12_c01311{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);}
.m2e_c01311{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01311{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);}
.m38_c01311{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);}
.m51_c01311{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m21_c01311{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01311{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m54_c01311{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m15_c01311{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);}
.m56_c01311{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m23_c01311{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);}
.m46_c01311{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01311{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);}
.m1b_c01311{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01311{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m58_c01311{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m5_c01311{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01311{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);}
.m26_c01311{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01311{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.me_c01311{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01311{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);}
.m29_c01311{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m17_c01311{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01311{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m35_c01311{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01311{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);}
.m64_c01311{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m3_c01311{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01311{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);}
.m47_c01311{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m4_c01311{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m50_c01311{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m27_c01311{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);}
.m4e_c01311{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m32_c01311{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.ma_c01311{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m7_c01311{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.md_c01311{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01311{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);}
.m2b_c01311{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m37_c01311{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01311{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m41_c01311{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m20_c01311{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m5b_c01311{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m39_c01311{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m45_c01311{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);}
.m66_c01311{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);}
.m9_c01311{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01311{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);}
.m4d_c01311{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m42_c01311{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m55_c01311{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m28_c01311{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.mc_c01311{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m43_c01311{transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01311{transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01311{transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);}
.m49_c01311{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);}
.m4a_c01311{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m40_c01311{transform:matrix(0.707500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.707500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.707500,0.000000,0.000000,0.250000,0,0);}
.m5f_c01311{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01311{transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);}
.m5a_c01311{transform:matrix(1.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.190000,0.000000,0.000000,0.250000,0,0);}
.m61_c01311{transform:matrix(1.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c01311{vertical-align:-8.640000px;}
.v0_c01311{vertical-align:0.000000px;}
.v4_c01311{vertical-align:2.880000px;}
.v1_c01311{vertical-align:8.640000px;}
.v3_c01311{vertical-align:11.520000px;}
.ls0_c01311{letter-spacing:0.000000px;}
.sc__c01311{text-shadow:none;}
.sc0_c01311{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01311{-webkit-text-stroke:0px transparent;}
.sc0_c01311{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01311{word-spacing:-5.790240px;}
.ws2_c01311{word-spacing:-3.720960px;}
.ws0_c01311{word-spacing:-0.554400px;}
.ws4_c01311{word-spacing:0.000000px;}
.ws3_c01311{word-spacing:3.699600px;}
.fc0_c01311{color:transparent;}
.fsd_c01311{font-size:17.280000px;}
.fsc_c01311{font-size:31.680000px;}
.fs7_c01311{font-size:34.560000px;}
.fsb_c01311{font-size:37.440000px;}
.fs3_c01311{font-size:43.200000px;}
.fs6_c01311{font-size:46.080000px;}
.fs4_c01311{font-size:48.960000px;}
.fs5_c01311{font-size:51.840000px;}
.fs8_c01311{font-size:54.720000px;}
.fs1_c01311{font-size:57.600000px;}
.fs2_c01311{font-size:60.480000px;}
.fsa_c01311{font-size:63.360000px;}
.fs9_c01311{font-size:66.240000px;}
.fs0_c01311{font-size:74.880000px;}
.y0_c01311{bottom:0.000000px;}
.y71_c01311{bottom:41.760000px;}
.y73_c01311{bottom:43.200000px;}
.y70_c01311{bottom:44.640000px;}
.y6f_c01311{bottom:45.360000px;}
.y72_c01311{bottom:46.080000px;}
.y6e_c01311{bottom:46.800000px;}
.y74_c01311{bottom:47.520000px;}
.y6a_c01311{bottom:84.240000px;}
.y6b_c01311{bottom:85.680000px;}
.y69_c01311{bottom:86.400000px;}
.y6d_c01311{bottom:87.840000px;}
.y68_c01311{bottom:88.560000px;}
.y6c_c01311{bottom:89.280000px;}
.y67_c01311{bottom:90.000000px;}
.y61_c01311{bottom:131.040000px;}
.y62_c01311{bottom:131.760000px;}
.y63_c01311{bottom:132.480000px;}
.y64_c01311{bottom:133.200000px;}
.y65_c01311{bottom:133.920000px;}
.y66_c01311{bottom:134.640000px;}
.y5d_c01311{bottom:182.880000px;}
.y5f_c01311{bottom:184.320000px;}
.y60_c01311{bottom:185.040000px;}
.y5e_c01311{bottom:185.760000px;}
.y5c_c01311{bottom:186.480000px;}
.y59_c01311{bottom:227.520000px;}
.y58_c01311{bottom:228.240000px;}
.y57_c01311{bottom:228.960000px;}
.y5a_c01311{bottom:230.400000px;}
.y5b_c01311{bottom:231.120000px;}
.y51_c01311{bottom:280.080000px;}
.y56_c01311{bottom:281.520000px;}
.y52_c01311{bottom:282.240000px;}
.y53_c01311{bottom:282.960000px;}
.y54_c01311{bottom:283.680000px;}
.y50_c01311{bottom:284.400000px;}
.y55_c01311{bottom:285.120000px;}
.y4b_c01311{bottom:323.280000px;}
.y4c_c01311{bottom:324.000000px;}
.y4d_c01311{bottom:324.720000px;}
.y4f_c01311{bottom:326.880000px;}
.y4e_c01311{bottom:327.600000px;}
.y47_c01311{bottom:365.040000px;}
.y49_c01311{bottom:365.760000px;}
.y45_c01311{bottom:367.920000px;}
.y46_c01311{bottom:368.640000px;}
.y48_c01311{bottom:369.360000px;}
.y4a_c01311{bottom:370.080000px;}
.y44_c01311{bottom:370.800000px;}
.y42_c01311{bottom:409.680000px;}
.y43_c01311{bottom:411.840000px;}
.y41_c01311{bottom:412.560000px;}
.y40_c01311{bottom:452.880000px;}
.y3f_c01311{bottom:454.320000px;}
.y3e_c01311{bottom:455.040000px;}
.y3d_c01311{bottom:455.760000px;}
.y3b_c01311{bottom:506.160000px;}
.y3c_c01311{bottom:508.320000px;}
.y39_c01311{bottom:509.040000px;}
.y3a_c01311{bottom:509.760000px;}
.y36_c01311{bottom:547.920000px;}
.y38_c01311{bottom:549.360000px;}
.y37_c01311{bottom:550.800000px;}
.y34_c01311{bottom:551.520000px;}
.y35_c01311{bottom:552.240000px;}
.y32_c01311{bottom:591.840000px;}
.y33_c01311{bottom:594.000000px;}
.y31_c01311{bottom:594.720000px;}
.y2f_c01311{bottom:634.320000px;}
.y30_c01311{bottom:635.040000px;}
.y2c_c01311{bottom:636.480000px;}
.y2d_c01311{bottom:637.200000px;}
.y2e_c01311{bottom:637.920000px;}
.y2b_c01311{bottom:677.520000px;}
.y29_c01311{bottom:678.240000px;}
.y2a_c01311{bottom:679.680000px;}
.y28_c01311{bottom:680.400000px;}
.y27_c01311{bottom:681.120000px;}
.y25_c01311{bottom:720.720000px;}
.y26_c01311{bottom:722.880000px;}
.y24_c01311{bottom:723.600000px;}
.y21_c01311{bottom:763.920000px;}
.y20_c01311{bottom:766.080000px;}
.y23_c01311{bottom:766.800000px;}
.y22_c01311{bottom:767.520000px;}
.y1f_c01311{bottom:806.400000px;}
.y1e_c01311{bottom:807.120000px;}
.y1b_c01311{bottom:809.280000px;}
.y1c_c01311{bottom:810.000000px;}
.y1d_c01311{bottom:810.720000px;}
.y15_c01311{bottom:848.880000px;}
.y1a_c01311{bottom:849.600000px;}
.y17_c01311{bottom:851.040000px;}
.y19_c01311{bottom:851.760000px;}
.y16_c01311{bottom:852.480000px;}
.y18_c01311{bottom:853.200000px;}
.y10_c01311{bottom:892.800000px;}
.y11_c01311{bottom:893.520000px;}
.y14_c01311{bottom:894.960000px;}
.y13_c01311{bottom:895.680000px;}
.y12_c01311{bottom:896.400000px;}
.yd_c01311{bottom:934.560000px;}
.yc_c01311{bottom:936.000000px;}
.ye_c01311{bottom:937.440000px;}
.yf_c01311{bottom:938.160000px;}
.yb_c01311{bottom:938.880000px;}
.ya_c01311{bottom:989.280000px;}
.y7_c01311{bottom:991.440000px;}
.y9_c01311{bottom:992.160000px;}
.y8_c01311{bottom:992.880000px;}
.y3_c01311{bottom:1032.480000px;}
.y4_c01311{bottom:1033.200000px;}
.y6_c01311{bottom:1033.920000px;}
.y2_c01311{bottom:1034.640000px;}
.y5_c01311{bottom:1035.360000px;}
.y1_c01311{bottom:1080.720000px;}
.h11_c01311{height:15.550313px;}
.h10_c01311{height:28.508906px;}
.ha_c01311{height:31.100625px;}
.hf_c01311{height:33.692344px;}
.h5_c01311{height:38.875781px;}
.h9_c01311{height:41.467500px;}
.h6_c01311{height:44.059219px;}
.h7_c01311{height:46.650937px;}
.hb_c01311{height:49.242656px;}
.h3_c01311{height:51.834375px;}
.h8_c01311{height:52.699219px;}
.h4_c01311{height:54.426094px;}
.he_c01311{height:57.017812px;}
.hc_c01311{height:59.609531px;}
.hd_c01311{height:62.489531px;}
.h2_c01311{height:67.384687px;}
.h1_c01311{height:1150.500000px;}
.h0_c01311{height:1150.560000px;}
.w0_c01311{width:740.880000px;}
.w1_c01311{width:741.000000px;}
.x0_c01311{left:0.000000px;}
.x2_c01311{left:26.640000px;}
.x19_c01311{left:28.080000px;}
.x2f_c01311{left:30.240000px;}
.x4e_c01311{left:32.400000px;}
.x30_c01311{left:48.960000px;}
.xb_c01311{left:59.040000px;}
.x3a_c01311{left:69.840000px;}
.x43_c01311{left:71.280000px;}
.x21_c01311{left:80.640000px;}
.xc_c01311{left:90.720000px;}
.x58_c01311{left:92.160000px;}
.x2a_c01311{left:102.240000px;}
.x1a_c01311{left:112.320000px;}
.x22_c01311{left:114.480000px;}
.x3_c01311{left:124.560000px;}
.xf_c01311{left:134.640000px;}
.x46_c01311{left:136.080000px;}
.x23_c01311{left:144.720000px;}
.x27_c01311{left:146.160000px;}
.x4a_c01311{left:155.520000px;}
.x35_c01311{left:156.960000px;}
.x3b_c01311{left:158.400000px;}
.x4f_c01311{left:166.320000px;}
.x44_c01311{left:167.760000px;}
.x10_c01311{left:177.120000px;}
.x31_c01311{left:188.640000px;}
.x3f_c01311{left:190.080000px;}
.x4b_c01311{left:199.440000px;}
.x55_c01311{left:200.880000px;}
.x28_c01311{left:210.240000px;}
.x24_c01311{left:211.680000px;}
.x4_c01311{left:221.040000px;}
.x50_c01311{left:223.200000px;}
.xd_c01311{left:232.560000px;}
.x2c_c01311{left:243.360000px;}
.x1b_c01311{left:254.160000px;}
.x47_c01311{left:255.600000px;}
.x25_c01311{left:263.520000px;}
.x36_c01311{left:265.680000px;}
.x5_c01311{left:275.760000px;}
.x51_c01311{left:277.200000px;}
.x2d_c01311{left:286.560000px;}
.x11_c01311{left:297.360000px;}
.xe_c01311{left:307.440000px;}
.x40_c01311{left:308.880000px;}
.x6_c01311{left:318.960000px;}
.x56_c01311{left:320.400000px;}
.x12_c01311{left:328.320000px;}
.x4c_c01311{left:330.480000px;}
.x2b_c01311{left:341.280000px;}
.x45_c01311{left:352.080000px;}
.x2e_c01311{left:362.160000px;}
.x57_c01311{left:364.320000px;}
.x1c_c01311{left:373.680000px;}
.x3c_c01311{left:383.760000px;}
.x54_c01311{left:385.200000px;}
.x37_c01311{left:394.560000px;}
.x1d_c01311{left:406.080000px;}
.x41_c01311{left:416.880000px;}
.x29_c01311{left:426.960000px;}
.x7_c01311{left:437.760000px;}
.x13_c01311{left:448.560000px;}
.x3d_c01311{left:457.920000px;}
.x38_c01311{left:460.080000px;}
.x32_c01311{left:469.440000px;}
.x1e_c01311{left:480.960000px;}
.x48_c01311{left:491.760000px;}
.x8_c01311{left:503.280000px;}
.x26_c01311{left:513.360000px;}
.x14_c01311{left:524.160000px;}
.x39_c01311{left:533.520000px;}
.x9_c01311{left:534.960000px;}
.x33_c01311{left:545.760000px;}
.x15_c01311{left:558.000000px;}
.x1f_c01311{left:566.640000px;}
.x16_c01311{left:577.440000px;}
.x3e_c01311{left:588.960000px;}
.x20_c01311{left:599.040000px;}
.x52_c01311{left:600.480000px;}
.x34_c01311{left:609.840000px;}
.x49_c01311{left:611.280000px;}
.x17_c01311{left:622.080000px;}
.xa_c01311{left:632.160000px;}
.x53_c01311{left:633.600000px;}
.x4d_c01311{left:642.240000px;}
.x42_c01311{left:643.680000px;}
.x1_c01311{left:653.040000px;}
.x18_c01311{left:654.480000px;}
@media print{
.v2_c01311{vertical-align:-7.680000pt;}
.v0_c01311{vertical-align:0.000000pt;}
.v4_c01311{vertical-align:2.560000pt;}
.v1_c01311{vertical-align:7.680000pt;}
.v3_c01311{vertical-align:10.240000pt;}
.ls0_c01311{letter-spacing:0.000000pt;}
.ws1_c01311{word-spacing:-5.146880pt;}
.ws2_c01311{word-spacing:-3.307520pt;}
.ws0_c01311{word-spacing:-0.492800pt;}
.ws4_c01311{word-spacing:0.000000pt;}
.ws3_c01311{word-spacing:3.288533pt;}
.fsd_c01311{font-size:15.360000pt;}
.fsc_c01311{font-size:28.160000pt;}
.fs7_c01311{font-size:30.720000pt;}
.fsb_c01311{font-size:33.280000pt;}
.fs3_c01311{font-size:38.400000pt;}
.fs6_c01311{font-size:40.960000pt;}
.fs4_c01311{font-size:43.520000pt;}
.fs5_c01311{font-size:46.080000pt;}
.fs8_c01311{font-size:48.640000pt;}
.fs1_c01311{font-size:51.200000pt;}
.fs2_c01311{font-size:53.760000pt;}
.fsa_c01311{font-size:56.320000pt;}
.fs9_c01311{font-size:58.880000pt;}
.fs0_c01311{font-size:66.560000pt;}
.y0_c01311{bottom:0.000000pt;}
.y71_c01311{bottom:37.120000pt;}
.y73_c01311{bottom:38.400000pt;}
.y70_c01311{bottom:39.680000pt;}
.y6f_c01311{bottom:40.320000pt;}
.y72_c01311{bottom:40.960000pt;}
.y6e_c01311{bottom:41.600000pt;}
.y74_c01311{bottom:42.240000pt;}
.y6a_c01311{bottom:74.880000pt;}
.y6b_c01311{bottom:76.160000pt;}
.y69_c01311{bottom:76.800000pt;}
.y6d_c01311{bottom:78.080000pt;}
.y68_c01311{bottom:78.720000pt;}
.y6c_c01311{bottom:79.360000pt;}
.y67_c01311{bottom:80.000000pt;}
.y61_c01311{bottom:116.480000pt;}
.y62_c01311{bottom:117.120000pt;}
.y63_c01311{bottom:117.760000pt;}
.y64_c01311{bottom:118.400000pt;}
.y65_c01311{bottom:119.040000pt;}
.y66_c01311{bottom:119.680000pt;}
.y5d_c01311{bottom:162.560000pt;}
.y5f_c01311{bottom:163.840000pt;}
.y60_c01311{bottom:164.480000pt;}
.y5e_c01311{bottom:165.120000pt;}
.y5c_c01311{bottom:165.760000pt;}
.y59_c01311{bottom:202.240000pt;}
.y58_c01311{bottom:202.880000pt;}
.y57_c01311{bottom:203.520000pt;}
.y5a_c01311{bottom:204.800000pt;}
.y5b_c01311{bottom:205.440000pt;}
.y51_c01311{bottom:248.960000pt;}
.y56_c01311{bottom:250.240000pt;}
.y52_c01311{bottom:250.880000pt;}
.y53_c01311{bottom:251.520000pt;}
.y54_c01311{bottom:252.160000pt;}
.y50_c01311{bottom:252.800000pt;}
.y55_c01311{bottom:253.440000pt;}
.y4b_c01311{bottom:287.360000pt;}
.y4c_c01311{bottom:288.000000pt;}
.y4d_c01311{bottom:288.640000pt;}
.y4f_c01311{bottom:290.560000pt;}
.y4e_c01311{bottom:291.200000pt;}
.y47_c01311{bottom:324.480000pt;}
.y49_c01311{bottom:325.120000pt;}
.y45_c01311{bottom:327.040000pt;}
.y46_c01311{bottom:327.680000pt;}
.y48_c01311{bottom:328.320000pt;}
.y4a_c01311{bottom:328.960000pt;}
.y44_c01311{bottom:329.600000pt;}
.y42_c01311{bottom:364.160000pt;}
.y43_c01311{bottom:366.080000pt;}
.y41_c01311{bottom:366.720000pt;}
.y40_c01311{bottom:402.560000pt;}
.y3f_c01311{bottom:403.840000pt;}
.y3e_c01311{bottom:404.480000pt;}
.y3d_c01311{bottom:405.120000pt;}
.y3b_c01311{bottom:449.920000pt;}
.y3c_c01311{bottom:451.840000pt;}
.y39_c01311{bottom:452.480000pt;}
.y3a_c01311{bottom:453.120000pt;}
.y36_c01311{bottom:487.040000pt;}
.y38_c01311{bottom:488.320000pt;}
.y37_c01311{bottom:489.600000pt;}
.y34_c01311{bottom:490.240000pt;}
.y35_c01311{bottom:490.880000pt;}
.y32_c01311{bottom:526.080000pt;}
.y33_c01311{bottom:528.000000pt;}
.y31_c01311{bottom:528.640000pt;}
.y2f_c01311{bottom:563.840000pt;}
.y30_c01311{bottom:564.480000pt;}
.y2c_c01311{bottom:565.760000pt;}
.y2d_c01311{bottom:566.400000pt;}
.y2e_c01311{bottom:567.040000pt;}
.y2b_c01311{bottom:602.240000pt;}
.y29_c01311{bottom:602.880000pt;}
.y2a_c01311{bottom:604.160000pt;}
.y28_c01311{bottom:604.800000pt;}
.y27_c01311{bottom:605.440000pt;}
.y25_c01311{bottom:640.640000pt;}
.y26_c01311{bottom:642.560000pt;}
.y24_c01311{bottom:643.200000pt;}
.y21_c01311{bottom:679.040000pt;}
.y20_c01311{bottom:680.960000pt;}
.y23_c01311{bottom:681.600000pt;}
.y22_c01311{bottom:682.240000pt;}
.y1f_c01311{bottom:716.800000pt;}
.y1e_c01311{bottom:717.440000pt;}
.y1b_c01311{bottom:719.360000pt;}
.y1c_c01311{bottom:720.000000pt;}
.y1d_c01311{bottom:720.640000pt;}
.y15_c01311{bottom:754.560000pt;}
.y1a_c01311{bottom:755.200000pt;}
.y17_c01311{bottom:756.480000pt;}
.y19_c01311{bottom:757.120000pt;}
.y16_c01311{bottom:757.760000pt;}
.y18_c01311{bottom:758.400000pt;}
.y10_c01311{bottom:793.600000pt;}
.y11_c01311{bottom:794.240000pt;}
.y14_c01311{bottom:795.520000pt;}
.y13_c01311{bottom:796.160000pt;}
.y12_c01311{bottom:796.800000pt;}
.yd_c01311{bottom:830.720000pt;}
.yc_c01311{bottom:832.000000pt;}
.ye_c01311{bottom:833.280000pt;}
.yf_c01311{bottom:833.920000pt;}
.yb_c01311{bottom:834.560000pt;}
.ya_c01311{bottom:879.360000pt;}
.y7_c01311{bottom:881.280000pt;}
.y9_c01311{bottom:881.920000pt;}
.y8_c01311{bottom:882.560000pt;}
.y3_c01311{bottom:917.760000pt;}
.y4_c01311{bottom:918.400000pt;}
.y6_c01311{bottom:919.040000pt;}
.y2_c01311{bottom:919.680000pt;}
.y5_c01311{bottom:920.320000pt;}
.y1_c01311{bottom:960.640000pt;}
.h11_c01311{height:13.822500pt;}
.h10_c01311{height:25.341250pt;}
.ha_c01311{height:27.645000pt;}
.hf_c01311{height:29.948750pt;}
.h5_c01311{height:34.556250pt;}
.h9_c01311{height:36.860000pt;}
.h6_c01311{height:39.163750pt;}
.h7_c01311{height:41.467500pt;}
.hb_c01311{height:43.771250pt;}
.h3_c01311{height:46.075000pt;}
.h8_c01311{height:46.843750pt;}
.h4_c01311{height:48.378750pt;}
.he_c01311{height:50.682500pt;}
.hc_c01311{height:52.986250pt;}
.hd_c01311{height:55.546250pt;}
.h2_c01311{height:59.897500pt;}
.h1_c01311{height:1022.666667pt;}
.h0_c01311{height:1022.720000pt;}
.w0_c01311{width:658.560000pt;}
.w1_c01311{width:658.666667pt;}
.x0_c01311{left:0.000000pt;}
.x2_c01311{left:23.680000pt;}
.x19_c01311{left:24.960000pt;}
.x2f_c01311{left:26.880000pt;}
.x4e_c01311{left:28.800000pt;}
.x30_c01311{left:43.520000pt;}
.xb_c01311{left:52.480000pt;}
.x3a_c01311{left:62.080000pt;}
.x43_c01311{left:63.360000pt;}
.x21_c01311{left:71.680000pt;}
.xc_c01311{left:80.640000pt;}
.x58_c01311{left:81.920000pt;}
.x2a_c01311{left:90.880000pt;}
.x1a_c01311{left:99.840000pt;}
.x22_c01311{left:101.760000pt;}
.x3_c01311{left:110.720000pt;}
.xf_c01311{left:119.680000pt;}
.x46_c01311{left:120.960000pt;}
.x23_c01311{left:128.640000pt;}
.x27_c01311{left:129.920000pt;}
.x4a_c01311{left:138.240000pt;}
.x35_c01311{left:139.520000pt;}
.x3b_c01311{left:140.800000pt;}
.x4f_c01311{left:147.840000pt;}
.x44_c01311{left:149.120000pt;}
.x10_c01311{left:157.440000pt;}
.x31_c01311{left:167.680000pt;}
.x3f_c01311{left:168.960000pt;}
.x4b_c01311{left:177.280000pt;}
.x55_c01311{left:178.560000pt;}
.x28_c01311{left:186.880000pt;}
.x24_c01311{left:188.160000pt;}
.x4_c01311{left:196.480000pt;}
.x50_c01311{left:198.400000pt;}
.xd_c01311{left:206.720000pt;}
.x2c_c01311{left:216.320000pt;}
.x1b_c01311{left:225.920000pt;}
.x47_c01311{left:227.200000pt;}
.x25_c01311{left:234.240000pt;}
.x36_c01311{left:236.160000pt;}
.x5_c01311{left:245.120000pt;}
.x51_c01311{left:246.400000pt;}
.x2d_c01311{left:254.720000pt;}
.x11_c01311{left:264.320000pt;}
.xe_c01311{left:273.280000pt;}
.x40_c01311{left:274.560000pt;}
.x6_c01311{left:283.520000pt;}
.x56_c01311{left:284.800000pt;}
.x12_c01311{left:291.840000pt;}
.x4c_c01311{left:293.760000pt;}
.x2b_c01311{left:303.360000pt;}
.x45_c01311{left:312.960000pt;}
.x2e_c01311{left:321.920000pt;}
.x57_c01311{left:323.840000pt;}
.x1c_c01311{left:332.160000pt;}
.x3c_c01311{left:341.120000pt;}
.x54_c01311{left:342.400000pt;}
.x37_c01311{left:350.720000pt;}
.x1d_c01311{left:360.960000pt;}
.x41_c01311{left:370.560000pt;}
.x29_c01311{left:379.520000pt;}
.x7_c01311{left:389.120000pt;}
.x13_c01311{left:398.720000pt;}
.x3d_c01311{left:407.040000pt;}
.x38_c01311{left:408.960000pt;}
.x32_c01311{left:417.280000pt;}
.x1e_c01311{left:427.520000pt;}
.x48_c01311{left:437.120000pt;}
.x8_c01311{left:447.360000pt;}
.x26_c01311{left:456.320000pt;}
.x14_c01311{left:465.920000pt;}
.x39_c01311{left:474.240000pt;}
.x9_c01311{left:475.520000pt;}
.x33_c01311{left:485.120000pt;}
.x15_c01311{left:496.000000pt;}
.x1f_c01311{left:503.680000pt;}
.x16_c01311{left:513.280000pt;}
.x3e_c01311{left:523.520000pt;}
.x20_c01311{left:532.480000pt;}
.x52_c01311{left:533.760000pt;}
.x34_c01311{left:542.080000pt;}
.x49_c01311{left:543.360000pt;}
.x17_c01311{left:552.960000pt;}
.xa_c01311{left:561.920000pt;}
.x53_c01311{left:563.200000pt;}
.x4d_c01311{left:570.880000pt;}
.x42_c01311{left:572.160000pt;}
.x1_c01311{left:580.480000pt;}
.x18_c01311{left:581.760000pt;}
}





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

.ir_c01312:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01312{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01312;src:url('chunks/assets/font_9a852f833906f7d96c84b802.woff2')format("woff");}.ff1_c01312{font-family:ff1_c01312;line-height:1.109863;font-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_c01312{transform:matrix(0.089750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089750,0.000000,0.000000,0.250000,0,0);}
.m6_c01312{transform:matrix(0.123800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123800,0.000000,0.000000,0.250000,0,0);}
.m19_c01312{transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);}
.mb_c01312{transform:matrix(0.187350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187350,0.000000,0.000000,0.250000,0,0);}
.m1d_c01312{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mc_c01312{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.md_c01312{transform:matrix(0.244550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244550,0.000000,0.000000,0.250000,0,0);}
.m13_c01312{transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);}
.mf_c01312{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m18_c01312{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m4_c01312{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01312{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m3_c01312{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.me_c01312{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m0_c01312{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m8_c01312{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1_c01312{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.ma_c01312{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m5_c01312{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m11_c01312{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m12_c01312{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2_c01312{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m14_c01312{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m10_c01312{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01312{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m9_c01312{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m16_c01312{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m7_c01312{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m17_c01312{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m15_c01312{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.v0_c01312{vertical-align:0.000000px;}
.ls0_c01312{letter-spacing:0.000000px;}
.sc__c01312{text-shadow:none;}
.sc0_c01312{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01312{-webkit-text-stroke:0px transparent;}
.sc0_c01312{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01312{word-spacing:0.000000px;}
.fc0_c01312{color:transparent;}
.fs2_c01312{font-size:51.840000px;}
.fs8_c01312{font-size:54.720000px;}
.fs3_c01312{font-size:57.600000px;}
.fs9_c01312{font-size:63.360000px;}
.fs6_c01312{font-size:66.240000px;}
.fs5_c01312{font-size:69.120000px;}
.fs7_c01312{font-size:83.520000px;}
.fsa_c01312{font-size:86.400000px;}
.fs1_c01312{font-size:97.920000px;}
.fs0_c01312{font-size:103.680000px;}
.fsb_c01312{font-size:112.320000px;}
.fs4_c01312{font-size:230.400000px;}
.y0_c01312{bottom:0.000000px;}
.y18_c01312{bottom:40.320000px;}
.y16_c01312{bottom:44.640000px;}
.y17_c01312{bottom:45.360000px;}
.y13_c01312{bottom:102.960000px;}
.y14_c01312{bottom:103.680000px;}
.y15_c01312{bottom:104.400000px;}
.yd_c01312{bottom:145.440000px;}
.y9_c01312{bottom:146.880000px;}
.ya_c01312{bottom:148.320000px;}
.yb_c01312{bottom:149.040000px;}
.yc_c01312{bottom:149.760000px;}
.y10_c01312{bottom:306.000000px;}
.yf_c01312{bottom:306.720000px;}
.y11_c01312{bottom:307.440000px;}
.ye_c01312{bottom:308.160000px;}
.y12_c01312{bottom:308.880000px;}
.y25_c01312{bottom:319.680000px;}
.y24_c01312{bottom:374.400000px;}
.y23_c01312{bottom:419.040000px;}
.y22_c01312{bottom:459.360000px;}
.y21_c01312{bottom:502.560000px;}
.y20_c01312{bottom:546.480000px;}
.y19_c01312{bottom:558.000000px;}
.y1f_c01312{bottom:586.800000px;}
.y1e_c01312{bottom:630.000000px;}
.y1d_c01312{bottom:671.040000px;}
.y7_c01312{bottom:700.560000px;}
.y8_c01312{bottom:717.120000px;}
.y6_c01312{bottom:760.320000px;}
.y5_c01312{bottom:781.920000px;}
.y4_c01312{bottom:801.360000px;}
.y1c_c01312{bottom:844.560000px;}
.y1b_c01312{bottom:930.240000px;}
.y1_c01312{bottom:1122.480000px;}
.y3_c01312{bottom:1123.200000px;}
.y2_c01312{bottom:1123.920000px;}
.y1a_c01312{bottom:1158.480000px;}
.h4_c01312{height:46.650937px;}
.ha_c01312{height:49.242656px;}
.h5_c01312{height:51.834375px;}
.hb_c01312{height:57.017812px;}
.h8_c01312{height:59.609531px;}
.h7_c01312{height:62.201250px;}
.h9_c01312{height:75.159844px;}
.hc_c01312{height:77.751563px;}
.h3_c01312{height:88.118437px;}
.h2_c01312{height:93.301875px;}
.hd_c01312{height:101.077031px;}
.h6_c01312{height:207.337500px;}
.h0_c01312{height:1192.320000px;}
.h1_c01312{height:1192.500000px;}
.w1_c01312{width:789.750000px;}
.w0_c01312{width:789.840000px;}
.x0_c01312{left:0.000000px;}
.x1_c01312{left:30.240000px;}
.xd_c01312{left:38.880000px;}
.xe_c01312{left:73.440000px;}
.xf_c01312{left:113.760000px;}
.x10_c01312{left:157.680000px;}
.x2_c01312{left:186.480000px;}
.x11_c01312{left:198.000000px;}
.x3_c01312{left:222.480000px;}
.x12_c01312{left:241.200000px;}
.x13_c01312{left:285.840000px;}
.x14_c01312{left:328.320000px;}
.x8_c01312{left:357.840000px;}
.x15_c01312{left:372.960000px;}
.x16_c01312{left:413.280000px;}
.x1c_c01312{left:421.200000px;}
.x17_c01312{left:457.920000px;}
.x9_c01312{left:462.240000px;}
.x1d_c01312{left:480.960000px;}
.x18_c01312{left:498.240000px;}
.x20_c01312{left:519.120000px;}
.x1e_c01312{left:527.760000px;}
.x21_c01312{left:534.960000px;}
.x19_c01312{left:539.280000px;}
.xa_c01312{left:565.920000px;}
.x1a_c01312{left:583.200000px;}
.x5_c01312{left:608.400000px;}
.x7_c01312{left:619.920000px;}
.x1f_c01312{left:622.800000px;}
.xb_c01312{left:626.400000px;}
.x1b_c01312{left:627.840000px;}
.x22_c01312{left:636.480000px;}
.x25_c01312{left:684.720000px;}
.x6_c01312{left:689.760000px;}
.x4_c01312{left:691.200000px;}
.x24_c01312{left:693.360000px;}
.xc_c01312{left:696.240000px;}
.x23_c01312{left:784.080000px;}
@media print{
.v0_c01312{vertical-align:0.000000pt;}
.ls0_c01312{letter-spacing:0.000000pt;}
.ws0_c01312{word-spacing:0.000000pt;}
.fs2_c01312{font-size:46.080000pt;}
.fs8_c01312{font-size:48.640000pt;}
.fs3_c01312{font-size:51.200000pt;}
.fs9_c01312{font-size:56.320000pt;}
.fs6_c01312{font-size:58.880000pt;}
.fs5_c01312{font-size:61.440000pt;}
.fs7_c01312{font-size:74.240000pt;}
.fsa_c01312{font-size:76.800000pt;}
.fs1_c01312{font-size:87.040000pt;}
.fs0_c01312{font-size:92.160000pt;}
.fsb_c01312{font-size:99.840000pt;}
.fs4_c01312{font-size:204.800000pt;}
.y0_c01312{bottom:0.000000pt;}
.y18_c01312{bottom:35.840000pt;}
.y16_c01312{bottom:39.680000pt;}
.y17_c01312{bottom:40.320000pt;}
.y13_c01312{bottom:91.520000pt;}
.y14_c01312{bottom:92.160000pt;}
.y15_c01312{bottom:92.800000pt;}
.yd_c01312{bottom:129.280000pt;}
.y9_c01312{bottom:130.560000pt;}
.ya_c01312{bottom:131.840000pt;}
.yb_c01312{bottom:132.480000pt;}
.yc_c01312{bottom:133.120000pt;}
.y10_c01312{bottom:272.000000pt;}
.yf_c01312{bottom:272.640000pt;}
.y11_c01312{bottom:273.280000pt;}
.ye_c01312{bottom:273.920000pt;}
.y12_c01312{bottom:274.560000pt;}
.y25_c01312{bottom:284.160000pt;}
.y24_c01312{bottom:332.800000pt;}
.y23_c01312{bottom:372.480000pt;}
.y22_c01312{bottom:408.320000pt;}
.y21_c01312{bottom:446.720000pt;}
.y20_c01312{bottom:485.760000pt;}
.y19_c01312{bottom:496.000000pt;}
.y1f_c01312{bottom:521.600000pt;}
.y1e_c01312{bottom:560.000000pt;}
.y1d_c01312{bottom:596.480000pt;}
.y7_c01312{bottom:622.720000pt;}
.y8_c01312{bottom:637.440000pt;}
.y6_c01312{bottom:675.840000pt;}
.y5_c01312{bottom:695.040000pt;}
.y4_c01312{bottom:712.320000pt;}
.y1c_c01312{bottom:750.720000pt;}
.y1b_c01312{bottom:826.880000pt;}
.y1_c01312{bottom:997.760000pt;}
.y3_c01312{bottom:998.400000pt;}
.y2_c01312{bottom:999.040000pt;}
.y1a_c01312{bottom:1029.760000pt;}
.h4_c01312{height:41.467500pt;}
.ha_c01312{height:43.771250pt;}
.h5_c01312{height:46.075000pt;}
.hb_c01312{height:50.682500pt;}
.h8_c01312{height:52.986250pt;}
.h7_c01312{height:55.290000pt;}
.h9_c01312{height:66.808750pt;}
.hc_c01312{height:69.112500pt;}
.h3_c01312{height:78.327500pt;}
.h2_c01312{height:82.935000pt;}
.hd_c01312{height:89.846250pt;}
.h6_c01312{height:184.300000pt;}
.h0_c01312{height:1059.840000pt;}
.h1_c01312{height:1060.000000pt;}
.w1_c01312{width:702.000000pt;}
.w0_c01312{width:702.080000pt;}
.x0_c01312{left:0.000000pt;}
.x1_c01312{left:26.880000pt;}
.xd_c01312{left:34.560000pt;}
.xe_c01312{left:65.280000pt;}
.xf_c01312{left:101.120000pt;}
.x10_c01312{left:140.160000pt;}
.x2_c01312{left:165.760000pt;}
.x11_c01312{left:176.000000pt;}
.x3_c01312{left:197.760000pt;}
.x12_c01312{left:214.400000pt;}
.x13_c01312{left:254.080000pt;}
.x14_c01312{left:291.840000pt;}
.x8_c01312{left:318.080000pt;}
.x15_c01312{left:331.520000pt;}
.x16_c01312{left:367.360000pt;}
.x1c_c01312{left:374.400000pt;}
.x17_c01312{left:407.040000pt;}
.x9_c01312{left:410.880000pt;}
.x1d_c01312{left:427.520000pt;}
.x18_c01312{left:442.880000pt;}
.x20_c01312{left:461.440000pt;}
.x1e_c01312{left:469.120000pt;}
.x21_c01312{left:475.520000pt;}
.x19_c01312{left:479.360000pt;}
.xa_c01312{left:503.040000pt;}
.x1a_c01312{left:518.400000pt;}
.x5_c01312{left:540.800000pt;}
.x7_c01312{left:551.040000pt;}
.x1f_c01312{left:553.600000pt;}
.xb_c01312{left:556.800000pt;}
.x1b_c01312{left:558.080000pt;}
.x22_c01312{left:565.760000pt;}
.x25_c01312{left:608.640000pt;}
.x6_c01312{left:613.120000pt;}
.x4_c01312{left:614.400000pt;}
.x24_c01312{left:616.320000pt;}
.xc_c01312{left:618.880000pt;}
.x23_c01312{left:696.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_c01313 {
    display:none;
  }
  .loading-indicator_c01313.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01313 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01313 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01313" -> "#page-container .classname_c01313")
 */
.pf_c01313 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01313 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01313.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01313 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01313 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01313 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01313 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01313 {overflow:visible;}
  }
}
.c_c01313 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01313 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01313:after { /* webkit #35443 */
  content: '';
}
.t_c01313:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01313 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01313 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01313 { /* info for Javascript */
  display:none;
}
.l_c01313 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01313 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01313 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01313:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01313{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01313;src:url('chunks/assets/font_b6855d5fb10e8f3df37b5aae.woff2')format("woff");}.ff1_c01313{font-family:ff1_c01313;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5c_c01313{transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);}
.m48_c01313{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);}
.m26_c01313{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);}
.m4e_c01313{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m0_c01313{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);}
.m27_c01313{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);}
.m5e_c01313{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);}
.m2f_c01313{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);}
.m47_c01313{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m13_c01313{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01313{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m44_c01313{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m30_c01313{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m51_c01313{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m5f_c01313{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m64_c01313{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2_c01313{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01313{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01313{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m53_c01313{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);}
.m28_c01313{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);}
.m38_c01313{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);}
.m41_c01313{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m56_c01313{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);}
.m36_c01313{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01313{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);}
.m3b_c01313{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m34_c01313{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m17_c01313{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m59_c01313{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);}
.m7_c01313{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.mf_c01313{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.me_c01313{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);}
.m43_c01313{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m1_c01313{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);}
.m5b_c01313{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01313{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.mc_c01313{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m12_c01313{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);}
.m4a_c01313{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);}
.m3a_c01313{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.md_c01313{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m61_c01313{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01313{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);}
.m40_c01313{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m22_c01313{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m31_c01313{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m54_c01313{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);}
.m3_c01313{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);}
.m1d_c01313{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01313{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m25_c01313{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m15_c01313{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);}
.m3c_c01313{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m19_c01313{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.ma_c01313{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);}
.m20_c01313{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01313{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m5_c01313{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m8_c01313{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);}
.m52_c01313{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m29_c01313{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m10_c01313{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.mb_c01313{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);}
.m35_c01313{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01313{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01313{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m5a_c01313{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m5d_c01313{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01313{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);}
.m16_c01313{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m57_c01313{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m62_c01313{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m46_c01313{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);}
.m2e_c01313{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m45_c01313{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m39_c01313{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01313{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);}
.m42_c01313{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m6_c01313{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m24_c01313{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m9_c01313{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01313{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);}
.m2b_c01313{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m23_c01313{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);}
.m14_c01313{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m21_c01313{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m18_c01313{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m58_c01313{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m11_c01313{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01313{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);}
.m4_c01313{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m63_c01313{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m37_c01313{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m32_c01313{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m33_c01313{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m49_c01313{transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01313{transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);}
.m50_c01313{transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);}
.m60_c01313{transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);}
.m55_c01313{transform:matrix(1.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01313{vertical-align:0.000000px;}
.v1_c01313{vertical-align:8.640000px;}
.ls0_c01313{letter-spacing:0.000000px;}
.sc__c01313{text-shadow:none;}
.sc0_c01313{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01313{-webkit-text-stroke:0px transparent;}
.sc0_c01313{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01313{word-spacing:0.000000px;}
.ws0_c01313{word-spacing:0.895200px;}
.fc0_c01313{color:transparent;}
.fsf_c01313{font-size:17.280000px;}
.fs10_c01313{font-size:20.160000px;}
.fsc_c01313{font-size:31.680000px;}
.fs3_c01313{font-size:34.560000px;}
.fs5_c01313{font-size:37.440000px;}
.fs7_c01313{font-size:40.320000px;}
.fs6_c01313{font-size:43.200000px;}
.fs2_c01313{font-size:46.080000px;}
.fs8_c01313{font-size:48.960000px;}
.fs4_c01313{font-size:51.840000px;}
.fsa_c01313{font-size:54.720000px;}
.fs9_c01313{font-size:57.600000px;}
.fs1_c01313{font-size:60.480000px;}
.fsd_c01313{font-size:63.360000px;}
.fse_c01313{font-size:66.240000px;}
.fsb_c01313{font-size:69.120000px;}
.fs0_c01313{font-size:77.760000px;}
.y0_c01313{bottom:0.000000px;}
.y6b_c01313{bottom:48.960000px;}
.y6a_c01313{bottom:49.680000px;}
.y6c_c01313{bottom:50.400000px;}
.y69_c01313{bottom:51.840000px;}
.y6d_c01313{bottom:53.280000px;}
.y6e_c01313{bottom:54.000000px;}
.y6f_c01313{bottom:54.720000px;}
.y68_c01313{bottom:56.160000px;}
.y64_c01313{bottom:92.880000px;}
.y63_c01313{bottom:95.040000px;}
.y65_c01313{bottom:95.760000px;}
.y66_c01313{bottom:96.480000px;}
.y67_c01313{bottom:97.920000px;}
.y62_c01313{bottom:98.640000px;}
.y5f_c01313{bottom:136.080000px;}
.y61_c01313{bottom:137.520000px;}
.y5e_c01313{bottom:138.240000px;}
.y5d_c01313{bottom:138.960000px;}
.y60_c01313{bottom:140.400000px;}
.y5c_c01313{bottom:192.240000px;}
.y5a_c01313{bottom:193.680000px;}
.y5b_c01313{bottom:195.120000px;}
.y57_c01313{bottom:232.560000px;}
.y58_c01313{bottom:233.280000px;}
.y59_c01313{bottom:234.720000px;}
.y56_c01313{bottom:235.440000px;}
.y55_c01313{bottom:236.160000px;}
.y54_c01313{bottom:238.320000px;}
.y50_c01313{bottom:275.040000px;}
.y51_c01313{bottom:275.760000px;}
.y4e_c01313{bottom:276.480000px;}
.y53_c01313{bottom:277.200000px;}
.y4f_c01313{bottom:277.920000px;}
.y4d_c01313{bottom:278.640000px;}
.y52_c01313{bottom:279.360000px;}
.y4c_c01313{bottom:280.080000px;}
.y4a_c01313{bottom:318.240000px;}
.y48_c01313{bottom:318.960000px;}
.y4b_c01313{bottom:319.680000px;}
.y49_c01313{bottom:320.400000px;}
.y47_c01313{bottom:321.120000px;}
.y46_c01313{bottom:321.840000px;}
.y45_c01313{bottom:322.560000px;}
.y43_c01313{bottom:361.440000px;}
.y44_c01313{bottom:362.160000px;}
.y42_c01313{bottom:363.600000px;}
.y41_c01313{bottom:364.320000px;}
.y40_c01313{bottom:365.760000px;}
.y3d_c01313{bottom:404.640000px;}
.y3e_c01313{bottom:405.360000px;}
.y3f_c01313{bottom:407.520000px;}
.y3b_c01313{bottom:447.120000px;}
.y3a_c01313{bottom:447.840000px;}
.y37_c01313{bottom:448.560000px;}
.y39_c01313{bottom:449.280000px;}
.y38_c01313{bottom:450.000000px;}
.y3c_c01313{bottom:450.720000px;}
.y36_c01313{bottom:452.160000px;}
.y34_c01313{bottom:490.320000px;}
.y35_c01313{bottom:491.040000px;}
.y32_c01313{bottom:491.760000px;}
.y33_c01313{bottom:493.200000px;}
.y2f_c01313{bottom:533.520000px;}
.y2e_c01313{bottom:534.960000px;}
.y31_c01313{bottom:535.680000px;}
.y30_c01313{bottom:536.400000px;}
.y2d_c01313{bottom:578.160000px;}
.y2c_c01313{bottom:578.880000px;}
.y2a_c01313{bottom:579.600000px;}
.y2b_c01313{bottom:580.320000px;}
.y29_c01313{bottom:619.920000px;}
.y28_c01313{bottom:622.080000px;}
.y27_c01313{bottom:622.800000px;}
.y26_c01313{bottom:676.080000px;}
.y20_c01313{bottom:715.680000px;}
.y25_c01313{bottom:716.400000px;}
.y23_c01313{bottom:717.120000px;}
.y24_c01313{bottom:718.560000px;}
.y21_c01313{bottom:719.280000px;}
.y22_c01313{bottom:720.000000px;}
.y1f_c01313{bottom:758.880000px;}
.y1d_c01313{bottom:759.600000px;}
.y1b_c01313{bottom:761.040000px;}
.y1e_c01313{bottom:761.760000px;}
.y1c_c01313{bottom:762.480000px;}
.y1a_c01313{bottom:801.360000px;}
.y19_c01313{bottom:804.240000px;}
.y18_c01313{bottom:804.960000px;}
.y17_c01313{bottom:805.680000px;}
.y15_c01313{bottom:855.360000px;}
.y13_c01313{bottom:856.800000px;}
.y16_c01313{bottom:857.520000px;}
.y14_c01313{bottom:858.240000px;}
.y12_c01313{bottom:898.560000px;}
.y11_c01313{bottom:900.720000px;}
.y10_c01313{bottom:901.440000px;}
.ye_c01313{bottom:951.840000px;}
.yc_c01313{bottom:953.280000px;}
.yd_c01313{bottom:954.000000px;}
.yf_c01313{bottom:954.720000px;}
.y6_c01313{bottom:992.880000px;}
.y8_c01313{bottom:995.040000px;}
.y7_c01313{bottom:995.760000px;}
.ya_c01313{bottom:996.480000px;}
.y9_c01313{bottom:997.200000px;}
.yb_c01313{bottom:997.920000px;}
.y3_c01313{bottom:1037.520000px;}
.y2_c01313{bottom:1038.240000px;}
.y5_c01313{bottom:1040.400000px;}
.y4_c01313{bottom:1041.120000px;}
.y1_c01313{bottom:1082.880000px;}
.h11_c01313{height:15.550313px;}
.h12_c01313{height:18.142031px;}
.he_c01313{height:28.508906px;}
.h5_c01313{height:31.100625px;}
.h7_c01313{height:33.692344px;}
.h9_c01313{height:36.284062px;}
.h8_c01313{height:38.875781px;}
.h4_c01313{height:41.467500px;}
.ha_c01313{height:44.059219px;}
.h6_c01313{height:46.650937px;}
.hc_c01313{height:49.242656px;}
.hb_c01313{height:51.834375px;}
.h3_c01313{height:54.426094px;}
.hf_c01313{height:57.017812px;}
.h10_c01313{height:59.609531px;}
.hd_c01313{height:62.201250px;}
.h2_c01313{height:69.976406px;}
.h1_c01313{height:1146.750000px;}
.h0_c01313{height:1146.960000px;}
.w0_c01313{width:760.320000px;}
.w1_c01313{width:760.500000px;}
.x0_c01313{left:0.000000px;}
.x2_c01313{left:46.080000px;}
.x37_c01313{left:47.520000px;}
.x51_c01313{left:48.960000px;}
.xc_c01313{left:66.240000px;}
.x52_c01313{left:69.120000px;}
.x3e_c01313{left:77.040000px;}
.x42_c01313{left:87.120000px;}
.x4f_c01313{left:88.560000px;}
.x17_c01313{left:98.640000px;}
.xd_c01313{left:109.440000px;}
.x3_c01313{left:119.520000px;}
.x18_c01313{left:130.320000px;}
.x43_c01313{left:131.760000px;}
.x3f_c01313{left:141.840000px;}
.x38_c01313{left:151.200000px;}
.x1c_c01313{left:153.360000px;}
.x23_c01313{left:163.440000px;}
.x29_c01313{left:173.520000px;}
.x19_c01313{left:184.320000px;}
.xe_c01313{left:194.400000px;}
.x48_c01313{left:195.840000px;}
.x40_c01313{left:207.360000px;}
.x4_c01313{left:216.720000px;}
.x24_c01313{left:227.520000px;}
.x39_c01313{left:228.960000px;}
.x2a_c01313{left:239.760000px;}
.x1d_c01313{left:250.560000px;}
.x5_c01313{left:260.640000px;}
.xf_c01313{left:271.440000px;}
.x45_c01313{left:272.880000px;}
.x41_c01313{left:280.800000px;}
.x1e_c01313{left:282.960000px;}
.x44_c01313{left:293.040000px;}
.x10_c01313{left:303.120000px;}
.x6_c01313{left:304.560000px;}
.x4a_c01313{left:306.000000px;}
.x33_c01313{left:315.360000px;}
.x1a_c01313{left:326.160000px;}
.x53_c01313{left:335.520000px;}
.x25_c01313{left:336.960000px;}
.x30_c01313{left:347.040000px;}
.x1b_c01313{left:357.840000px;}
.x3a_c01313{left:369.360000px;}
.x1f_c01313{left:380.160000px;}
.x7_c01313{left:390.240000px;}
.x4b_c01313{left:401.040000px;}
.x2b_c01313{left:412.560000px;}
.x50_c01313{left:421.200000px;}
.x11_c01313{left:423.360000px;}
.x8_c01313{left:433.440000px;}
.x34_c01313{left:444.240000px;}
.x12_c01313{left:455.760000px;}
.x4d_c01313{left:465.120000px;}
.x26_c01313{left:466.560000px;}
.x31_c01313{left:476.640000px;}
.x20_c01313{left:487.440000px;}
.x46_c01313{left:498.240000px;}
.x2c_c01313{left:501.120000px;}
.x21_c01313{left:509.040000px;}
.x4c_c01313{left:518.400000px;}
.x13_c01313{left:519.840000px;}
.x49_c01313{left:529.920000px;}
.x35_c01313{left:531.360000px;}
.x2d_c01313{left:540.720000px;}
.x3b_c01313{left:542.160000px;}
.x4e_c01313{left:550.800000px;}
.x14_c01313{left:552.240000px;}
.x9_c01313{left:553.680000px;}
.xa_c01313{left:574.560000px;}
.x27_c01313{left:585.360000px;}
.x32_c01313{left:594.720000px;}
.x3c_c01313{left:605.520000px;}
.x15_c01313{left:606.960000px;}
.xb_c01313{left:608.400000px;}
.x54_c01313{left:615.600000px;}
.x22_c01313{left:617.040000px;}
.x28_c01313{left:627.120000px;}
.x47_c01313{left:637.200000px;}
.x2e_c01313{left:638.640000px;}
.x3d_c01313{left:648.720000px;}
.x16_c01313{left:660.960000px;}
.x1_c01313{left:667.440000px;}
.x36_c01313{left:670.320000px;}
.x2f_c01313{left:671.760000px;}
@media print{
.v0_c01313{vertical-align:0.000000pt;}
.v1_c01313{vertical-align:7.680000pt;}
.ls0_c01313{letter-spacing:0.000000pt;}
.ws1_c01313{word-spacing:0.000000pt;}
.ws0_c01313{word-spacing:0.795733pt;}
.fsf_c01313{font-size:15.360000pt;}
.fs10_c01313{font-size:17.920000pt;}
.fsc_c01313{font-size:28.160000pt;}
.fs3_c01313{font-size:30.720000pt;}
.fs5_c01313{font-size:33.280000pt;}
.fs7_c01313{font-size:35.840000pt;}
.fs6_c01313{font-size:38.400000pt;}
.fs2_c01313{font-size:40.960000pt;}
.fs8_c01313{font-size:43.520000pt;}
.fs4_c01313{font-size:46.080000pt;}
.fsa_c01313{font-size:48.640000pt;}
.fs9_c01313{font-size:51.200000pt;}
.fs1_c01313{font-size:53.760000pt;}
.fsd_c01313{font-size:56.320000pt;}
.fse_c01313{font-size:58.880000pt;}
.fsb_c01313{font-size:61.440000pt;}
.fs0_c01313{font-size:69.120000pt;}
.y0_c01313{bottom:0.000000pt;}
.y6b_c01313{bottom:43.520000pt;}
.y6a_c01313{bottom:44.160000pt;}
.y6c_c01313{bottom:44.800000pt;}
.y69_c01313{bottom:46.080000pt;}
.y6d_c01313{bottom:47.360000pt;}
.y6e_c01313{bottom:48.000000pt;}
.y6f_c01313{bottom:48.640000pt;}
.y68_c01313{bottom:49.920000pt;}
.y64_c01313{bottom:82.560000pt;}
.y63_c01313{bottom:84.480000pt;}
.y65_c01313{bottom:85.120000pt;}
.y66_c01313{bottom:85.760000pt;}
.y67_c01313{bottom:87.040000pt;}
.y62_c01313{bottom:87.680000pt;}
.y5f_c01313{bottom:120.960000pt;}
.y61_c01313{bottom:122.240000pt;}
.y5e_c01313{bottom:122.880000pt;}
.y5d_c01313{bottom:123.520000pt;}
.y60_c01313{bottom:124.800000pt;}
.y5c_c01313{bottom:170.880000pt;}
.y5a_c01313{bottom:172.160000pt;}
.y5b_c01313{bottom:173.440000pt;}
.y57_c01313{bottom:206.720000pt;}
.y58_c01313{bottom:207.360000pt;}
.y59_c01313{bottom:208.640000pt;}
.y56_c01313{bottom:209.280000pt;}
.y55_c01313{bottom:209.920000pt;}
.y54_c01313{bottom:211.840000pt;}
.y50_c01313{bottom:244.480000pt;}
.y51_c01313{bottom:245.120000pt;}
.y4e_c01313{bottom:245.760000pt;}
.y53_c01313{bottom:246.400000pt;}
.y4f_c01313{bottom:247.040000pt;}
.y4d_c01313{bottom:247.680000pt;}
.y52_c01313{bottom:248.320000pt;}
.y4c_c01313{bottom:248.960000pt;}
.y4a_c01313{bottom:282.880000pt;}
.y48_c01313{bottom:283.520000pt;}
.y4b_c01313{bottom:284.160000pt;}
.y49_c01313{bottom:284.800000pt;}
.y47_c01313{bottom:285.440000pt;}
.y46_c01313{bottom:286.080000pt;}
.y45_c01313{bottom:286.720000pt;}
.y43_c01313{bottom:321.280000pt;}
.y44_c01313{bottom:321.920000pt;}
.y42_c01313{bottom:323.200000pt;}
.y41_c01313{bottom:323.840000pt;}
.y40_c01313{bottom:325.120000pt;}
.y3d_c01313{bottom:359.680000pt;}
.y3e_c01313{bottom:360.320000pt;}
.y3f_c01313{bottom:362.240000pt;}
.y3b_c01313{bottom:397.440000pt;}
.y3a_c01313{bottom:398.080000pt;}
.y37_c01313{bottom:398.720000pt;}
.y39_c01313{bottom:399.360000pt;}
.y38_c01313{bottom:400.000000pt;}
.y3c_c01313{bottom:400.640000pt;}
.y36_c01313{bottom:401.920000pt;}
.y34_c01313{bottom:435.840000pt;}
.y35_c01313{bottom:436.480000pt;}
.y32_c01313{bottom:437.120000pt;}
.y33_c01313{bottom:438.400000pt;}
.y2f_c01313{bottom:474.240000pt;}
.y2e_c01313{bottom:475.520000pt;}
.y31_c01313{bottom:476.160000pt;}
.y30_c01313{bottom:476.800000pt;}
.y2d_c01313{bottom:513.920000pt;}
.y2c_c01313{bottom:514.560000pt;}
.y2a_c01313{bottom:515.200000pt;}
.y2b_c01313{bottom:515.840000pt;}
.y29_c01313{bottom:551.040000pt;}
.y28_c01313{bottom:552.960000pt;}
.y27_c01313{bottom:553.600000pt;}
.y26_c01313{bottom:600.960000pt;}
.y20_c01313{bottom:636.160000pt;}
.y25_c01313{bottom:636.800000pt;}
.y23_c01313{bottom:637.440000pt;}
.y24_c01313{bottom:638.720000pt;}
.y21_c01313{bottom:639.360000pt;}
.y22_c01313{bottom:640.000000pt;}
.y1f_c01313{bottom:674.560000pt;}
.y1d_c01313{bottom:675.200000pt;}
.y1b_c01313{bottom:676.480000pt;}
.y1e_c01313{bottom:677.120000pt;}
.y1c_c01313{bottom:677.760000pt;}
.y1a_c01313{bottom:712.320000pt;}
.y19_c01313{bottom:714.880000pt;}
.y18_c01313{bottom:715.520000pt;}
.y17_c01313{bottom:716.160000pt;}
.y15_c01313{bottom:760.320000pt;}
.y13_c01313{bottom:761.600000pt;}
.y16_c01313{bottom:762.240000pt;}
.y14_c01313{bottom:762.880000pt;}
.y12_c01313{bottom:798.720000pt;}
.y11_c01313{bottom:800.640000pt;}
.y10_c01313{bottom:801.280000pt;}
.ye_c01313{bottom:846.080000pt;}
.yc_c01313{bottom:847.360000pt;}
.yd_c01313{bottom:848.000000pt;}
.yf_c01313{bottom:848.640000pt;}
.y6_c01313{bottom:882.560000pt;}
.y8_c01313{bottom:884.480000pt;}
.y7_c01313{bottom:885.120000pt;}
.ya_c01313{bottom:885.760000pt;}
.y9_c01313{bottom:886.400000pt;}
.yb_c01313{bottom:887.040000pt;}
.y3_c01313{bottom:922.240000pt;}
.y2_c01313{bottom:922.880000pt;}
.y5_c01313{bottom:924.800000pt;}
.y4_c01313{bottom:925.440000pt;}
.y1_c01313{bottom:962.560000pt;}
.h11_c01313{height:13.822500pt;}
.h12_c01313{height:16.126250pt;}
.he_c01313{height:25.341250pt;}
.h5_c01313{height:27.645000pt;}
.h7_c01313{height:29.948750pt;}
.h9_c01313{height:32.252500pt;}
.h8_c01313{height:34.556250pt;}
.h4_c01313{height:36.860000pt;}
.ha_c01313{height:39.163750pt;}
.h6_c01313{height:41.467500pt;}
.hc_c01313{height:43.771250pt;}
.hb_c01313{height:46.075000pt;}
.h3_c01313{height:48.378750pt;}
.hf_c01313{height:50.682500pt;}
.h10_c01313{height:52.986250pt;}
.hd_c01313{height:55.290000pt;}
.h2_c01313{height:62.201250pt;}
.h1_c01313{height:1019.333333pt;}
.h0_c01313{height:1019.520000pt;}
.w0_c01313{width:675.840000pt;}
.w1_c01313{width:676.000000pt;}
.x0_c01313{left:0.000000pt;}
.x2_c01313{left:40.960000pt;}
.x37_c01313{left:42.240000pt;}
.x51_c01313{left:43.520000pt;}
.xc_c01313{left:58.880000pt;}
.x52_c01313{left:61.440000pt;}
.x3e_c01313{left:68.480000pt;}
.x42_c01313{left:77.440000pt;}
.x4f_c01313{left:78.720000pt;}
.x17_c01313{left:87.680000pt;}
.xd_c01313{left:97.280000pt;}
.x3_c01313{left:106.240000pt;}
.x18_c01313{left:115.840000pt;}
.x43_c01313{left:117.120000pt;}
.x3f_c01313{left:126.080000pt;}
.x38_c01313{left:134.400000pt;}
.x1c_c01313{left:136.320000pt;}
.x23_c01313{left:145.280000pt;}
.x29_c01313{left:154.240000pt;}
.x19_c01313{left:163.840000pt;}
.xe_c01313{left:172.800000pt;}
.x48_c01313{left:174.080000pt;}
.x40_c01313{left:184.320000pt;}
.x4_c01313{left:192.640000pt;}
.x24_c01313{left:202.240000pt;}
.x39_c01313{left:203.520000pt;}
.x2a_c01313{left:213.120000pt;}
.x1d_c01313{left:222.720000pt;}
.x5_c01313{left:231.680000pt;}
.xf_c01313{left:241.280000pt;}
.x45_c01313{left:242.560000pt;}
.x41_c01313{left:249.600000pt;}
.x1e_c01313{left:251.520000pt;}
.x44_c01313{left:260.480000pt;}
.x10_c01313{left:269.440000pt;}
.x6_c01313{left:270.720000pt;}
.x4a_c01313{left:272.000000pt;}
.x33_c01313{left:280.320000pt;}
.x1a_c01313{left:289.920000pt;}
.x53_c01313{left:298.240000pt;}
.x25_c01313{left:299.520000pt;}
.x30_c01313{left:308.480000pt;}
.x1b_c01313{left:318.080000pt;}
.x3a_c01313{left:328.320000pt;}
.x1f_c01313{left:337.920000pt;}
.x7_c01313{left:346.880000pt;}
.x4b_c01313{left:356.480000pt;}
.x2b_c01313{left:366.720000pt;}
.x50_c01313{left:374.400000pt;}
.x11_c01313{left:376.320000pt;}
.x8_c01313{left:385.280000pt;}
.x34_c01313{left:394.880000pt;}
.x12_c01313{left:405.120000pt;}
.x4d_c01313{left:413.440000pt;}
.x26_c01313{left:414.720000pt;}
.x31_c01313{left:423.680000pt;}
.x20_c01313{left:433.280000pt;}
.x46_c01313{left:442.880000pt;}
.x2c_c01313{left:445.440000pt;}
.x21_c01313{left:452.480000pt;}
.x4c_c01313{left:460.800000pt;}
.x13_c01313{left:462.080000pt;}
.x49_c01313{left:471.040000pt;}
.x35_c01313{left:472.320000pt;}
.x2d_c01313{left:480.640000pt;}
.x3b_c01313{left:481.920000pt;}
.x4e_c01313{left:489.600000pt;}
.x14_c01313{left:490.880000pt;}
.x9_c01313{left:492.160000pt;}
.xa_c01313{left:510.720000pt;}
.x27_c01313{left:520.320000pt;}
.x32_c01313{left:528.640000pt;}
.x3c_c01313{left:538.240000pt;}
.x15_c01313{left:539.520000pt;}
.xb_c01313{left:540.800000pt;}
.x54_c01313{left:547.200000pt;}
.x22_c01313{left:548.480000pt;}
.x28_c01313{left:557.440000pt;}
.x47_c01313{left:566.400000pt;}
.x2e_c01313{left:567.680000pt;}
.x3d_c01313{left:576.640000pt;}
.x16_c01313{left:587.520000pt;}
.x1_c01313{left:593.280000pt;}
.x36_c01313{left:595.840000pt;}
.x2f_c01313{left:597.120000pt;}
}





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

.ir_c01314:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01314{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01314;src:url('chunks/assets/font_524f8c0643a0a40c7e5e1af0.woff2')format("woff");}.ff1_c01314{font-family:ff1_c01314;line-height:1.109863;font-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_c01314{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01314{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m23_c01314{transform:matrix(0.135550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135550,0.000000,0.000000,0.250000,0,0);}
.m1f_c01314{transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);}
.md_c01314{transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);}
.m2e_c01314{transform:matrix(0.196625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196625,0.000000,0.000000,0.250000,0,0);}
.m21_c01314{transform:matrix(0.200800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200800,0.000000,0.000000,0.250000,0,0);}
.m9_c01314{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_c01314{transform:matrix(0.222125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222125,0.000000,0.000000,0.250000,0,0);}
.m25_c01314{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m19_c01314{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m26_c01314{transform:matrix(0.244550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244550,0.000000,0.000000,0.250000,0,0);}
.m8_c01314{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m4_c01314{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m27_c01314{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_c01314{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m15_c01314{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m6_c01314{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m0_c01314{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m5_c01314{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01314{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mf_c01314{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);}
.m2a_c01314{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m2_c01314{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m7_c01314{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mb_c01314{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01314{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m28_c01314{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3_c01314{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m29_c01314{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01314{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01314{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01314{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);}
.m20_c01314{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.mc_c01314{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m13_c01314{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);}
.m1d_c01314{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);}
.m12_c01314{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m24_c01314{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_c01314{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m11_c01314{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01314{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m14_c01314{transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);}
.m22_c01314{transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);}
.m16_c01314{transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);}
.m10_c01314{transform:matrix(0.822500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.822500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.822500,0.000000,0.000000,0.250000,0,0);}
.me_c01314{transform:matrix(1.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.240000,0.000000,0.000000,0.250000,0,0);}
.v1_c01314{vertical-align:-11.520000px;}
.v0_c01314{vertical-align:0.000000px;}
.ls0_c01314{letter-spacing:0.000000px;}
.sc__c01314{text-shadow:none;}
.sc0_c01314{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01314{-webkit-text-stroke:0px transparent;}
.sc0_c01314{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01314{word-spacing:-12.441360px;}
.ws1_c01314{word-spacing:0.000000px;}
.fc0_c01314{color:transparent;}
.fs18_c01314{font-size:2.880000px;}
.fs14_c01314{font-size:5.760000px;}
.fs13_c01314{font-size:8.640000px;}
.fs19_c01314{font-size:25.920000px;}
.fs1d_c01314{font-size:28.800000px;}
.fsb_c01314{font-size:31.680000px;}
.fs11_c01314{font-size:34.560000px;}
.fs1b_c01314{font-size:37.440000px;}
.fs12_c01314{font-size:46.080000px;}
.fs8_c01314{font-size:51.840000px;}
.fsd_c01314{font-size:54.720000px;}
.fs16_c01314{font-size:60.480000px;}
.fs3_c01314{font-size:63.360000px;}
.fs2_c01314{font-size:66.240000px;}
.fs1_c01314{font-size:69.120000px;}
.fs0_c01314{font-size:72.000000px;}
.fs17_c01314{font-size:77.760000px;}
.fs4_c01314{font-size:80.640000px;}
.fs1c_c01314{font-size:86.400000px;}
.fse_c01314{font-size:95.040000px;}
.fs6_c01314{font-size:97.920000px;}
.fs7_c01314{font-size:100.800000px;}
.fs5_c01314{font-size:112.320000px;}
.fs10_c01314{font-size:135.360000px;}
.fsc_c01314{font-size:146.880000px;}
.fs15_c01314{font-size:181.440000px;}
.fs9_c01314{font-size:276.480000px;}
.fs1a_c01314{font-size:285.120000px;}
.fsf_c01314{font-size:293.760000px;}
.fsa_c01314{font-size:360.000000px;}
.y0_c01314{bottom:0.000000px;}
.y3e_c01314{bottom:40.320000px;}
.y3d_c01314{bottom:43.200000px;}
.y3a_c01314{bottom:99.360000px;}
.y3b_c01314{bottom:100.800000px;}
.y3c_c01314{bottom:101.520000px;}
.y1_c01314{bottom:141.120000px;}
.y2_c01314{bottom:142.560000px;}
.y3_c01314{bottom:143.280000px;}
.y4_c01314{bottom:144.000000px;}
.y38_c01314{bottom:303.840000px;}
.y37_c01314{bottom:304.560000px;}
.y39_c01314{bottom:305.280000px;}
.y36_c01314{bottom:306.000000px;}
.y35_c01314{bottom:306.720000px;}
.y3f_c01314{bottom:315.360000px;}
.y34_c01314{bottom:364.320000px;}
.y1a_c01314{bottom:366.480000px;}
.y2f_c01314{bottom:367.200000px;}
.y1b_c01314{bottom:371.520000px;}
.y31_c01314{bottom:380.160000px;}
.y32_c01314{bottom:382.320000px;}
.y18_c01314{bottom:397.440000px;}
.y33_c01314{bottom:400.320000px;}
.y30_c01314{bottom:410.400000px;}
.y19_c01314{bottom:414.720000px;}
.y26_c01314{bottom:425.520000px;}
.y2e_c01314{bottom:438.480000px;}
.y2d_c01314{bottom:440.640000px;}
.y28_c01314{bottom:443.520000px;}
.y29_c01314{bottom:445.680000px;}
.y14_c01314{bottom:451.440000px;}
.y2c_c01314{bottom:453.600000px;}
.y27_c01314{bottom:455.760000px;}
.y17_c01314{bottom:456.480000px;}
.y2b_c01314{bottom:457.200000px;}
.y2a_c01314{bottom:463.680000px;}
.y25_c01314{bottom:473.760000px;}
.y24_c01314{bottom:474.480000px;}
.y23_c01314{bottom:475.200000px;}
.y21_c01314{bottom:480.960000px;}
.y22_c01314{bottom:483.120000px;}
.y1f_c01314{bottom:497.520000px;}
.y16_c01314{bottom:498.960000px;}
.y1e_c01314{bottom:504.000000px;}
.y1d_c01314{bottom:511.920000px;}
.y20_c01314{bottom:512.640000px;}
.y15_c01314{bottom:533.520000px;}
.y13_c01314{bottom:542.880000px;}
.y12_c01314{bottom:583.200000px;}
.y1c_c01314{bottom:596.880000px;}
.y11_c01314{bottom:625.680000px;}
.y10_c01314{bottom:667.440000px;}
.yf_c01314{bottom:712.800000px;}
.yd_c01314{bottom:722.880000px;}
.ye_c01314{bottom:756.000000px;}
.yc_c01314{bottom:797.040000px;}
.yb_c01314{bottom:840.960000px;}
.ya_c01314{bottom:882.000000px;}
.y9_c01314{bottom:925.200000px;}
.y8_c01314{bottom:965.520000px;}
.y5_c01314{bottom:1108.080000px;}
.y7_c01314{bottom:1110.960000px;}
.y6_c01314{bottom:1111.680000px;}
.h1a_c01314{height:2.591719px;}
.h16_c01314{height:5.183438px;}
.h15_c01314{height:7.775156px;}
.h1b_c01314{height:23.325469px;}
.h1f_c01314{height:25.917187px;}
.hc_c01314{height:28.508906px;}
.h13_c01314{height:31.100625px;}
.h1d_c01314{height:33.692344px;}
.h14_c01314{height:41.467500px;}
.h9_c01314{height:46.650937px;}
.he_c01314{height:49.242656px;}
.h18_c01314{height:54.426094px;}
.h20_c01314{height:57.017812px;}
.h4_c01314{height:59.609531px;}
.h5_c01314{height:61.048125px;}
.h3_c01314{height:62.201250px;}
.h2_c01314{height:64.792969px;}
.h19_c01314{height:69.976406px;}
.h12_c01314{height:72.568125px;}
.h1e_c01314{height:77.751563px;}
.hf_c01314{height:85.526719px;}
.h7_c01314{height:88.118437px;}
.h8_c01314{height:90.710156px;}
.h6_c01314{height:101.077031px;}
.h11_c01314{height:121.810781px;}
.hd_c01314{height:132.177656px;}
.h17_c01314{height:163.278281px;}
.ha_c01314{height:248.805000px;}
.h1c_c01314{height:256.580156px;}
.h10_c01314{height:264.355312px;}
.hb_c01314{height:323.964844px;}
.h1_c01314{height:1185.750000px;}
.h0_c01314{height:1185.840000px;}
.w0_c01314{width:797.040000px;}
.w1_c01314{width:797.250000px;}
.x0_c01314{left:0.000000px;}
.x5_c01314{left:46.800000px;}
.x24_c01314{left:48.960000px;}
.x18_c01314{left:57.600000px;}
.x20_c01314{left:60.480000px;}
.x11_c01314{left:67.680000px;}
.x10_c01314{left:70.560000px;}
.x1f_c01314{left:75.600000px;}
.x25_c01314{left:84.240000px;}
.x14_c01314{left:90.720000px;}
.x19_c01314{left:113.040000px;}
.x21_c01314{left:125.280000px;}
.x1a_c01314{left:138.240000px;}
.x12_c01314{left:151.920000px;}
.x22_c01314{left:154.080000px;}
.x15_c01314{left:162.000000px;}
.x26_c01314{left:168.480000px;}
.x1b_c01314{left:170.640000px;}
.x6_c01314{left:200.160000px;}
.x1c_c01314{left:207.360000px;}
.x27_c01314{left:208.800000px;}
.x16_c01314{left:215.280000px;}
.x1d_c01314{left:220.320000px;}
.x1e_c01314{left:221.760000px;}
.x13_c01314{left:232.560000px;}
.x7_c01314{left:236.880000px;}
.x17_c01314{left:242.640000px;}
.x23_c01314{left:248.400000px;}
.x28_c01314{left:252.000000px;}
.x29_c01314{left:295.920000px;}
.x2a_c01314{left:339.840000px;}
.x1_c01314{left:355.680000px;}
.x2b_c01314{left:384.480000px;}
.x2c_c01314{left:424.800000px;}
.x32_c01314{left:432.720000px;}
.x2_c01314{left:451.440000px;}
.x2d_c01314{left:468.720000px;}
.x33_c01314{left:491.760000px;}
.x9_c01314{left:497.520000px;}
.x2e_c01314{left:510.480000px;}
.x36_c01314{left:516.960000px;}
.x34_c01314{left:538.560000px;}
.x3_c01314{left:550.080000px;}
.x2f_c01314{left:551.520000px;}
.xf_c01314{left:566.640000px;}
.xb_c01314{left:591.840000px;}
.x30_c01314{left:594.720000px;}
.x4_c01314{left:606.240000px;}
.xe_c01314{left:614.160000px;}
.x35_c01314{left:634.320000px;}
.x31_c01314{left:640.080000px;}
.xc_c01314{left:689.760000px;}
.x37_c01314{left:695.520000px;}
.x8_c01314{left:701.280000px;}
.xa_c01314{left:702.720000px;}
.xd_c01314{left:704.880000px;}
@media print{
.v1_c01314{vertical-align:-10.240000pt;}
.v0_c01314{vertical-align:0.000000pt;}
.ls0_c01314{letter-spacing:0.000000pt;}
.ws0_c01314{word-spacing:-11.058987pt;}
.ws1_c01314{word-spacing:0.000000pt;}
.fs18_c01314{font-size:2.560000pt;}
.fs14_c01314{font-size:5.120000pt;}
.fs13_c01314{font-size:7.680000pt;}
.fs19_c01314{font-size:23.040000pt;}
.fs1d_c01314{font-size:25.600000pt;}
.fsb_c01314{font-size:28.160000pt;}
.fs11_c01314{font-size:30.720000pt;}
.fs1b_c01314{font-size:33.280000pt;}
.fs12_c01314{font-size:40.960000pt;}
.fs8_c01314{font-size:46.080000pt;}
.fsd_c01314{font-size:48.640000pt;}
.fs16_c01314{font-size:53.760000pt;}
.fs3_c01314{font-size:56.320000pt;}
.fs2_c01314{font-size:58.880000pt;}
.fs1_c01314{font-size:61.440000pt;}
.fs0_c01314{font-size:64.000000pt;}
.fs17_c01314{font-size:69.120000pt;}
.fs4_c01314{font-size:71.680000pt;}
.fs1c_c01314{font-size:76.800000pt;}
.fse_c01314{font-size:84.480000pt;}
.fs6_c01314{font-size:87.040000pt;}
.fs7_c01314{font-size:89.600000pt;}
.fs5_c01314{font-size:99.840000pt;}
.fs10_c01314{font-size:120.320000pt;}
.fsc_c01314{font-size:130.560000pt;}
.fs15_c01314{font-size:161.280000pt;}
.fs9_c01314{font-size:245.760000pt;}
.fs1a_c01314{font-size:253.440000pt;}
.fsf_c01314{font-size:261.120000pt;}
.fsa_c01314{font-size:320.000000pt;}
.y0_c01314{bottom:0.000000pt;}
.y3e_c01314{bottom:35.840000pt;}
.y3d_c01314{bottom:38.400000pt;}
.y3a_c01314{bottom:88.320000pt;}
.y3b_c01314{bottom:89.600000pt;}
.y3c_c01314{bottom:90.240000pt;}
.y1_c01314{bottom:125.440000pt;}
.y2_c01314{bottom:126.720000pt;}
.y3_c01314{bottom:127.360000pt;}
.y4_c01314{bottom:128.000000pt;}
.y38_c01314{bottom:270.080000pt;}
.y37_c01314{bottom:270.720000pt;}
.y39_c01314{bottom:271.360000pt;}
.y36_c01314{bottom:272.000000pt;}
.y35_c01314{bottom:272.640000pt;}
.y3f_c01314{bottom:280.320000pt;}
.y34_c01314{bottom:323.840000pt;}
.y1a_c01314{bottom:325.760000pt;}
.y2f_c01314{bottom:326.400000pt;}
.y1b_c01314{bottom:330.240000pt;}
.y31_c01314{bottom:337.920000pt;}
.y32_c01314{bottom:339.840000pt;}
.y18_c01314{bottom:353.280000pt;}
.y33_c01314{bottom:355.840000pt;}
.y30_c01314{bottom:364.800000pt;}
.y19_c01314{bottom:368.640000pt;}
.y26_c01314{bottom:378.240000pt;}
.y2e_c01314{bottom:389.760000pt;}
.y2d_c01314{bottom:391.680000pt;}
.y28_c01314{bottom:394.240000pt;}
.y29_c01314{bottom:396.160000pt;}
.y14_c01314{bottom:401.280000pt;}
.y2c_c01314{bottom:403.200000pt;}
.y27_c01314{bottom:405.120000pt;}
.y17_c01314{bottom:405.760000pt;}
.y2b_c01314{bottom:406.400000pt;}
.y2a_c01314{bottom:412.160000pt;}
.y25_c01314{bottom:421.120000pt;}
.y24_c01314{bottom:421.760000pt;}
.y23_c01314{bottom:422.400000pt;}
.y21_c01314{bottom:427.520000pt;}
.y22_c01314{bottom:429.440000pt;}
.y1f_c01314{bottom:442.240000pt;}
.y16_c01314{bottom:443.520000pt;}
.y1e_c01314{bottom:448.000000pt;}
.y1d_c01314{bottom:455.040000pt;}
.y20_c01314{bottom:455.680000pt;}
.y15_c01314{bottom:474.240000pt;}
.y13_c01314{bottom:482.560000pt;}
.y12_c01314{bottom:518.400000pt;}
.y1c_c01314{bottom:530.560000pt;}
.y11_c01314{bottom:556.160000pt;}
.y10_c01314{bottom:593.280000pt;}
.yf_c01314{bottom:633.600000pt;}
.yd_c01314{bottom:642.560000pt;}
.ye_c01314{bottom:672.000000pt;}
.yc_c01314{bottom:708.480000pt;}
.yb_c01314{bottom:747.520000pt;}
.ya_c01314{bottom:784.000000pt;}
.y9_c01314{bottom:822.400000pt;}
.y8_c01314{bottom:858.240000pt;}
.y5_c01314{bottom:984.960000pt;}
.y7_c01314{bottom:987.520000pt;}
.y6_c01314{bottom:988.160000pt;}
.h1a_c01314{height:2.303750pt;}
.h16_c01314{height:4.607500pt;}
.h15_c01314{height:6.911250pt;}
.h1b_c01314{height:20.733750pt;}
.h1f_c01314{height:23.037500pt;}
.hc_c01314{height:25.341250pt;}
.h13_c01314{height:27.645000pt;}
.h1d_c01314{height:29.948750pt;}
.h14_c01314{height:36.860000pt;}
.h9_c01314{height:41.467500pt;}
.he_c01314{height:43.771250pt;}
.h18_c01314{height:48.378750pt;}
.h20_c01314{height:50.682500pt;}
.h4_c01314{height:52.986250pt;}
.h5_c01314{height:54.265000pt;}
.h3_c01314{height:55.290000pt;}
.h2_c01314{height:57.593750pt;}
.h19_c01314{height:62.201250pt;}
.h12_c01314{height:64.505000pt;}
.h1e_c01314{height:69.112500pt;}
.hf_c01314{height:76.023750pt;}
.h7_c01314{height:78.327500pt;}
.h8_c01314{height:80.631250pt;}
.h6_c01314{height:89.846250pt;}
.h11_c01314{height:108.276250pt;}
.hd_c01314{height:117.491250pt;}
.h17_c01314{height:145.136250pt;}
.ha_c01314{height:221.160000pt;}
.h1c_c01314{height:228.071250pt;}
.h10_c01314{height:234.982500pt;}
.hb_c01314{height:287.968750pt;}
.h1_c01314{height:1054.000000pt;}
.h0_c01314{height:1054.080000pt;}
.w0_c01314{width:708.480000pt;}
.w1_c01314{width:708.666667pt;}
.x0_c01314{left:0.000000pt;}
.x5_c01314{left:41.600000pt;}
.x24_c01314{left:43.520000pt;}
.x18_c01314{left:51.200000pt;}
.x20_c01314{left:53.760000pt;}
.x11_c01314{left:60.160000pt;}
.x10_c01314{left:62.720000pt;}
.x1f_c01314{left:67.200000pt;}
.x25_c01314{left:74.880000pt;}
.x14_c01314{left:80.640000pt;}
.x19_c01314{left:100.480000pt;}
.x21_c01314{left:111.360000pt;}
.x1a_c01314{left:122.880000pt;}
.x12_c01314{left:135.040000pt;}
.x22_c01314{left:136.960000pt;}
.x15_c01314{left:144.000000pt;}
.x26_c01314{left:149.760000pt;}
.x1b_c01314{left:151.680000pt;}
.x6_c01314{left:177.920000pt;}
.x1c_c01314{left:184.320000pt;}
.x27_c01314{left:185.600000pt;}
.x16_c01314{left:191.360000pt;}
.x1d_c01314{left:195.840000pt;}
.x1e_c01314{left:197.120000pt;}
.x13_c01314{left:206.720000pt;}
.x7_c01314{left:210.560000pt;}
.x17_c01314{left:215.680000pt;}
.x23_c01314{left:220.800000pt;}
.x28_c01314{left:224.000000pt;}
.x29_c01314{left:263.040000pt;}
.x2a_c01314{left:302.080000pt;}
.x1_c01314{left:316.160000pt;}
.x2b_c01314{left:341.760000pt;}
.x2c_c01314{left:377.600000pt;}
.x32_c01314{left:384.640000pt;}
.x2_c01314{left:401.280000pt;}
.x2d_c01314{left:416.640000pt;}
.x33_c01314{left:437.120000pt;}
.x9_c01314{left:442.240000pt;}
.x2e_c01314{left:453.760000pt;}
.x36_c01314{left:459.520000pt;}
.x34_c01314{left:478.720000pt;}
.x3_c01314{left:488.960000pt;}
.x2f_c01314{left:490.240000pt;}
.xf_c01314{left:503.680000pt;}
.xb_c01314{left:526.080000pt;}
.x30_c01314{left:528.640000pt;}
.x4_c01314{left:538.880000pt;}
.xe_c01314{left:545.920000pt;}
.x35_c01314{left:563.840000pt;}
.x31_c01314{left:568.960000pt;}
.xc_c01314{left:613.120000pt;}
.x37_c01314{left:618.240000pt;}
.x8_c01314{left:623.360000pt;}
.xa_c01314{left:624.640000pt;}
.xd_c01314{left:626.560000pt;}
}





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

.ir_c01315:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01315{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01315;src:url('chunks/assets/font_be2274c30ec22bc876596d1f.woff2')format("woff");}.ff1_c01315{font-family:ff1_c01315;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m52_c01315{transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);}
.m1_c01315{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m0_c01315{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m11_c01315{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);}
.m46_c01315{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);}
.m3c_c01315{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m12_c01315{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01315{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01315{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m39_c01315{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01315{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m32_c01315{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m44_c01315{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m50_c01315{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);}
.m4b_c01315{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);}
.m2c_c01315{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m23_c01315{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);}
.m2d_c01315{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);}
.m2a_c01315{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.md_c01315{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m42_c01315{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);}
.m3e_c01315{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m4_c01315{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01315{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);}
.m19_c01315{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);}
.m38_c01315{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_c01315{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m16_c01315{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m3_c01315{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01315{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);}
.m4c_c01315{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);}
.m5_c01315{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m56_c01315{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m27_c01315{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m57_c01315{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);}
.m24_c01315{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01315{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);}
.m36_c01315{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m5f_c01315{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);}
.m8_c01315{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);}
.m25_c01315{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01315{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m58_c01315{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m47_c01315{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m40_c01315{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m9_c01315{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m10_c01315{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);}
.m51_c01315{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.ma_c01315{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);}
.m5a_c01315{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m29_c01315{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m37_c01315{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m26_c01315{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);}
.m2f_c01315{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m53_c01315{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m15_c01315{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m21_c01315{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);}
.m30_c01315{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m2_c01315{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m6_c01315{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m43_c01315{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01315{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);}
.mf_c01315{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01315{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m41_c01315{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m35_c01315{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);}
.m14_c01315{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01315{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m33_c01315{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m34_c01315{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);}
.m45_c01315{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m54_c01315{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m22_c01315{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01315{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m28_c01315{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);}
.m5d_c01315{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m4d_c01315{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.mc_c01315{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01315{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);}
.m20_c01315{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01315{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m18_c01315{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.me_c01315{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m7_c01315{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);}
.m3b_c01315{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);}
.m17_c01315{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m5e_c01315{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m49_c01315{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m4f_c01315{transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);}
.m5c_c01315{transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);}
.m59_c01315{transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01315{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01315{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m5b_c01315{transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);}
.m55_c01315{transform:matrix(0.842500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.842500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.842500,0.000000,0.000000,0.250000,0,0);}
.m48_c01315{transform:matrix(1.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c01315{vertical-align:-11.520000px;}
.v0_c01315{vertical-align:0.000000px;}
.ls0_c01315{letter-spacing:0.000000px;}
.sc__c01315{text-shadow:none;}
.sc0_c01315{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01315{-webkit-text-stroke:0px transparent;}
.sc0_c01315{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01315{word-spacing:-0.658320px;}
.ws1_c01315{word-spacing:0.000000px;}
.fc0_c01315{color:transparent;}
.fse_c01315{font-size:17.280000px;}
.fsf_c01315{font-size:31.680000px;}
.fs7_c01315{font-size:34.560000px;}
.fs2_c01315{font-size:37.440000px;}
.fsa_c01315{font-size:40.320000px;}
.fs6_c01315{font-size:43.200000px;}
.fs5_c01315{font-size:46.080000px;}
.fs3_c01315{font-size:48.960000px;}
.fs9_c01315{font-size:51.840000px;}
.fsb_c01315{font-size:54.720000px;}
.fs8_c01315{font-size:57.600000px;}
.fs4_c01315{font-size:60.480000px;}
.fsd_c01315{font-size:63.360000px;}
.fsc_c01315{font-size:66.240000px;}
.fs1_c01315{font-size:69.120000px;}
.fs0_c01315{font-size:77.760000px;}
.y0_c01315{bottom:0.000000px;}
.y7a_c01315{bottom:34.560000px;}
.y79_c01315{bottom:37.440000px;}
.y78_c01315{bottom:41.040000px;}
.y76_c01315{bottom:77.760000px;}
.y75_c01315{bottom:78.480000px;}
.y74_c01315{bottom:80.640000px;}
.y73_c01315{bottom:81.360000px;}
.y77_c01315{bottom:82.080000px;}
.y72_c01315{bottom:83.520000px;}
.y71_c01315{bottom:84.960000px;}
.y6c_c01315{bottom:121.680000px;}
.y70_c01315{bottom:122.400000px;}
.y6e_c01315{bottom:123.120000px;}
.y6f_c01315{bottom:123.840000px;}
.y6d_c01315{bottom:124.560000px;}
.y6a_c01315{bottom:125.280000px;}
.y6b_c01315{bottom:126.000000px;}
.y69_c01315{bottom:128.880000px;}
.y66_c01315{bottom:165.600000px;}
.y64_c01315{bottom:166.320000px;}
.y65_c01315{bottom:167.040000px;}
.y67_c01315{bottom:167.760000px;}
.y68_c01315{bottom:168.480000px;}
.y62_c01315{bottom:207.360000px;}
.y63_c01315{bottom:208.800000px;}
.y61_c01315{bottom:210.240000px;}
.y60_c01315{bottom:210.960000px;}
.y5e_c01315{bottom:211.680000px;}
.y5f_c01315{bottom:213.120000px;}
.y59_c01315{bottom:250.560000px;}
.y5d_c01315{bottom:251.280000px;}
.y58_c01315{bottom:252.000000px;}
.y5a_c01315{bottom:252.720000px;}
.y5b_c01315{bottom:253.440000px;}
.y5c_c01315{bottom:254.160000px;}
.y57_c01315{bottom:254.880000px;}
.y55_c01315{bottom:293.760000px;}
.y56_c01315{bottom:294.480000px;}
.y53_c01315{bottom:296.640000px;}
.y54_c01315{bottom:297.360000px;}
.y52_c01315{bottom:298.080000px;}
.y4f_c01315{bottom:336.960000px;}
.y50_c01315{bottom:339.840000px;}
.y51_c01315{bottom:340.560000px;}
.y4c_c01315{bottom:390.240000px;}
.y4e_c01315{bottom:390.960000px;}
.y4d_c01315{bottom:391.680000px;}
.y4b_c01315{bottom:393.840000px;}
.y4a_c01315{bottom:395.280000px;}
.y46_c01315{bottom:433.440000px;}
.y48_c01315{bottom:434.160000px;}
.y43_c01315{bottom:434.880000px;}
.y49_c01315{bottom:435.600000px;}
.y47_c01315{bottom:436.320000px;}
.y45_c01315{bottom:437.040000px;}
.y44_c01315{bottom:437.760000px;}
.y42_c01315{bottom:439.200000px;}
.y3f_c01315{bottom:476.640000px;}
.y3e_c01315{bottom:477.360000px;}
.y41_c01315{bottom:478.080000px;}
.y40_c01315{bottom:479.520000px;}
.y3d_c01315{bottom:480.240000px;}
.y3a_c01315{bottom:519.840000px;}
.y3c_c01315{bottom:522.000000px;}
.y39_c01315{bottom:522.720000px;}
.y3b_c01315{bottom:523.440000px;}
.y38_c01315{bottom:562.320000px;}
.y37_c01315{bottom:563.040000px;}
.y35_c01315{bottom:565.200000px;}
.y36_c01315{bottom:565.920000px;}
.y34_c01315{bottom:566.640000px;}
.y33_c01315{bottom:618.480000px;}
.y31_c01315{bottom:619.200000px;}
.y32_c01315{bottom:619.920000px;}
.y2c_c01315{bottom:658.800000px;}
.y2e_c01315{bottom:659.520000px;}
.y30_c01315{bottom:660.240000px;}
.y2f_c01315{bottom:661.680000px;}
.y2d_c01315{bottom:662.400000px;}
.y2b_c01315{bottom:700.560000px;}
.y25_c01315{bottom:701.280000px;}
.y26_c01315{bottom:702.000000px;}
.y29_c01315{bottom:703.440000px;}
.y2a_c01315{bottom:704.160000px;}
.y27_c01315{bottom:704.880000px;}
.y28_c01315{bottom:705.600000px;}
.y24_c01315{bottom:746.640000px;}
.y23_c01315{bottom:747.360000px;}
.y22_c01315{bottom:748.080000px;}
.y21_c01315{bottom:798.480000px;}
.y1f_c01315{bottom:800.640000px;}
.y20_c01315{bottom:801.360000px;}
.y19_c01315{bottom:840.240000px;}
.y1e_c01315{bottom:840.960000px;}
.y1c_c01315{bottom:841.680000px;}
.y1d_c01315{bottom:842.400000px;}
.y1a_c01315{bottom:843.840000px;}
.y1b_c01315{bottom:844.560000px;}
.y13_c01315{bottom:883.440000px;}
.y16_c01315{bottom:884.160000px;}
.y15_c01315{bottom:884.880000px;}
.y17_c01315{bottom:886.320000px;}
.y18_c01315{bottom:887.040000px;}
.y14_c01315{bottom:887.760000px;}
.y12_c01315{bottom:927.360000px;}
.yd_c01315{bottom:928.080000px;}
.y11_c01315{bottom:928.800000px;}
.ye_c01315{bottom:929.520000px;}
.y10_c01315{bottom:930.240000px;}
.yf_c01315{bottom:930.960000px;}
.yc_c01315{bottom:969.840000px;}
.yb_c01315{bottom:970.560000px;}
.ya_c01315{bottom:972.720000px;}
.y9_c01315{bottom:973.440000px;}
.y8_c01315{bottom:974.160000px;}
.y7_c01315{bottom:974.880000px;}
.y2_c01315{bottom:1024.560000px;}
.y6_c01315{bottom:1025.280000px;}
.y3_c01315{bottom:1026.000000px;}
.y5_c01315{bottom:1026.720000px;}
.y4_c01315{bottom:1027.440000px;}
.y1_c01315{bottom:1069.920000px;}
.h10_c01315{height:15.550313px;}
.h11_c01315{height:28.508906px;}
.h8_c01315{height:31.100625px;}
.h4_c01315{height:33.692344px;}
.hb_c01315{height:36.284062px;}
.he_c01315{height:38.875781px;}
.h7_c01315{height:41.467500px;}
.h5_c01315{height:44.059219px;}
.ha_c01315{height:46.650937px;}
.hc_c01315{height:49.242656px;}
.h9_c01315{height:51.834375px;}
.h6_c01315{height:54.426094px;}
.hf_c01315{height:57.017812px;}
.hd_c01315{height:59.609531px;}
.h3_c01315{height:62.201250px;}
.h2_c01315{height:69.976406px;}
.h0_c01315{height:1139.760000px;}
.h1_c01315{height:1140.000000px;}
.w0_c01315{width:759.600000px;}
.w1_c01315{width:759.750000px;}
.x0_c01315{left:0.000000px;}
.x3_c01315{left:43.200000px;}
.x2d_c01315{left:44.640000px;}
.x51_c01315{left:46.080000px;}
.x17_c01315{left:72.000000px;}
.x2e_c01315{left:73.440000px;}
.x53_c01315{left:74.880000px;}
.x4_c01315{left:84.240000px;}
.x56_c01315{left:95.040000px;}
.x21_c01315{left:104.400000px;}
.x25_c01315{left:115.200000px;}
.x5_c01315{left:125.280000px;}
.x2f_c01315{left:136.080000px;}
.x44_c01315{left:146.880000px;}
.xd_c01315{left:148.320000px;}
.x18_c01315{left:157.680000px;}
.xe_c01315{left:168.480000px;}
.x26_c01315{left:169.920000px;}
.x30_c01315{left:179.280000px;}
.x22_c01315{left:190.080000px;}
.x6_c01315{left:201.600000px;}
.x3c_c01315{left:212.400000px;}
.x19_c01315{left:222.480000px;}
.x58_c01315{left:224.640000px;}
.x7_c01315{left:234.000000px;}
.x4f_c01315{left:235.440000px;}
.x48_c01315{left:244.080000px;}
.x4e_c01315{left:245.520000px;}
.x1a_c01315{left:255.600000px;}
.x41_c01315{left:257.040000px;}
.xf_c01315{left:266.400000px;}
.x42_c01315{left:276.480000px;}
.x27_c01315{left:277.920000px;}
.x54_c01315{left:287.280000px;}
.x10_c01315{left:298.800000px;}
.x43_c01315{left:300.960000px;}
.x28_c01315{left:309.600000px;}
.x1b_c01315{left:321.120000px;}
.x4c_c01315{left:331.200000px;}
.x31_c01315{left:342.720000px;}
.x11_c01315{left:353.520000px;}
.x52_c01315{left:362.880000px;}
.x8_c01315{left:374.400000px;}
.x37_c01315{left:375.840000px;}
.x50_c01315{left:384.480000px;}
.x12_c01315{left:385.920000px;}
.x45_c01315{left:396.000000px;}
.x29_c01315{left:406.080000px;}
.x38_c01315{left:407.520000px;}
.x4d_c01315{left:416.880000px;}
.x9_c01315{left:418.320000px;}
.x3d_c01315{left:427.680000px;}
.x23_c01315{left:429.120000px;}
.x39_c01315{left:438.480000px;}
.x13_c01315{left:439.920000px;}
.x55_c01315{left:449.280000px;}
.x32_c01315{left:460.800000px;}
.x24_c01315{left:471.600000px;}
.x1c_c01315{left:473.040000px;}
.x3a_c01315{left:481.680000px;}
.x46_c01315{left:492.480000px;}
.xa_c01315{left:493.920000px;}
.x2a_c01315{left:514.800000px;}
.x3e_c01315{left:524.880000px;}
.xb_c01315{left:526.320000px;}
.x47_c01315{left:535.680000px;}
.x2b_c01315{left:547.200000px;}
.x3f_c01315{left:557.280000px;}
.x14_c01315{left:559.440000px;}
.x4a_c01315{left:568.080000px;}
.x1d_c01315{left:569.520000px;}
.x33_c01315{left:579.600000px;}
.x40_c01315{left:589.680000px;}
.xc_c01315{left:591.120000px;}
.x15_c01315{left:594.000000px;}
.x1e_c01315{left:601.920000px;}
.x3b_c01315{left:612.720000px;}
.x4b_c01315{left:621.360000px;}
.x34_c01315{left:622.800000px;}
.x49_c01315{left:632.880000px;}
.x16_c01315{left:634.320000px;}
.x57_c01315{left:652.320000px;}
.x35_c01315{left:654.480000px;}
.x1f_c01315{left:656.640000px;}
.x59_c01315{left:664.560000px;}
.x2c_c01315{left:666.720000px;}
.x1_c01315{left:669.600000px;}
.x36_c01315{left:677.520000px;}
.x20_c01315{left:689.040000px;}
.x2_c01315{left:705.600000px;}
@media print{
.v1_c01315{vertical-align:-10.240000pt;}
.v0_c01315{vertical-align:0.000000pt;}
.ls0_c01315{letter-spacing:0.000000pt;}
.ws0_c01315{word-spacing:-0.585173pt;}
.ws1_c01315{word-spacing:0.000000pt;}
.fse_c01315{font-size:15.360000pt;}
.fsf_c01315{font-size:28.160000pt;}
.fs7_c01315{font-size:30.720000pt;}
.fs2_c01315{font-size:33.280000pt;}
.fsa_c01315{font-size:35.840000pt;}
.fs6_c01315{font-size:38.400000pt;}
.fs5_c01315{font-size:40.960000pt;}
.fs3_c01315{font-size:43.520000pt;}
.fs9_c01315{font-size:46.080000pt;}
.fsb_c01315{font-size:48.640000pt;}
.fs8_c01315{font-size:51.200000pt;}
.fs4_c01315{font-size:53.760000pt;}
.fsd_c01315{font-size:56.320000pt;}
.fsc_c01315{font-size:58.880000pt;}
.fs1_c01315{font-size:61.440000pt;}
.fs0_c01315{font-size:69.120000pt;}
.y0_c01315{bottom:0.000000pt;}
.y7a_c01315{bottom:30.720000pt;}
.y79_c01315{bottom:33.280000pt;}
.y78_c01315{bottom:36.480000pt;}
.y76_c01315{bottom:69.120000pt;}
.y75_c01315{bottom:69.760000pt;}
.y74_c01315{bottom:71.680000pt;}
.y73_c01315{bottom:72.320000pt;}
.y77_c01315{bottom:72.960000pt;}
.y72_c01315{bottom:74.240000pt;}
.y71_c01315{bottom:75.520000pt;}
.y6c_c01315{bottom:108.160000pt;}
.y70_c01315{bottom:108.800000pt;}
.y6e_c01315{bottom:109.440000pt;}
.y6f_c01315{bottom:110.080000pt;}
.y6d_c01315{bottom:110.720000pt;}
.y6a_c01315{bottom:111.360000pt;}
.y6b_c01315{bottom:112.000000pt;}
.y69_c01315{bottom:114.560000pt;}
.y66_c01315{bottom:147.200000pt;}
.y64_c01315{bottom:147.840000pt;}
.y65_c01315{bottom:148.480000pt;}
.y67_c01315{bottom:149.120000pt;}
.y68_c01315{bottom:149.760000pt;}
.y62_c01315{bottom:184.320000pt;}
.y63_c01315{bottom:185.600000pt;}
.y61_c01315{bottom:186.880000pt;}
.y60_c01315{bottom:187.520000pt;}
.y5e_c01315{bottom:188.160000pt;}
.y5f_c01315{bottom:189.440000pt;}
.y59_c01315{bottom:222.720000pt;}
.y5d_c01315{bottom:223.360000pt;}
.y58_c01315{bottom:224.000000pt;}
.y5a_c01315{bottom:224.640000pt;}
.y5b_c01315{bottom:225.280000pt;}
.y5c_c01315{bottom:225.920000pt;}
.y57_c01315{bottom:226.560000pt;}
.y55_c01315{bottom:261.120000pt;}
.y56_c01315{bottom:261.760000pt;}
.y53_c01315{bottom:263.680000pt;}
.y54_c01315{bottom:264.320000pt;}
.y52_c01315{bottom:264.960000pt;}
.y4f_c01315{bottom:299.520000pt;}
.y50_c01315{bottom:302.080000pt;}
.y51_c01315{bottom:302.720000pt;}
.y4c_c01315{bottom:346.880000pt;}
.y4e_c01315{bottom:347.520000pt;}
.y4d_c01315{bottom:348.160000pt;}
.y4b_c01315{bottom:350.080000pt;}
.y4a_c01315{bottom:351.360000pt;}
.y46_c01315{bottom:385.280000pt;}
.y48_c01315{bottom:385.920000pt;}
.y43_c01315{bottom:386.560000pt;}
.y49_c01315{bottom:387.200000pt;}
.y47_c01315{bottom:387.840000pt;}
.y45_c01315{bottom:388.480000pt;}
.y44_c01315{bottom:389.120000pt;}
.y42_c01315{bottom:390.400000pt;}
.y3f_c01315{bottom:423.680000pt;}
.y3e_c01315{bottom:424.320000pt;}
.y41_c01315{bottom:424.960000pt;}
.y40_c01315{bottom:426.240000pt;}
.y3d_c01315{bottom:426.880000pt;}
.y3a_c01315{bottom:462.080000pt;}
.y3c_c01315{bottom:464.000000pt;}
.y39_c01315{bottom:464.640000pt;}
.y3b_c01315{bottom:465.280000pt;}
.y38_c01315{bottom:499.840000pt;}
.y37_c01315{bottom:500.480000pt;}
.y35_c01315{bottom:502.400000pt;}
.y36_c01315{bottom:503.040000pt;}
.y34_c01315{bottom:503.680000pt;}
.y33_c01315{bottom:549.760000pt;}
.y31_c01315{bottom:550.400000pt;}
.y32_c01315{bottom:551.040000pt;}
.y2c_c01315{bottom:585.600000pt;}
.y2e_c01315{bottom:586.240000pt;}
.y30_c01315{bottom:586.880000pt;}
.y2f_c01315{bottom:588.160000pt;}
.y2d_c01315{bottom:588.800000pt;}
.y2b_c01315{bottom:622.720000pt;}
.y25_c01315{bottom:623.360000pt;}
.y26_c01315{bottom:624.000000pt;}
.y29_c01315{bottom:625.280000pt;}
.y2a_c01315{bottom:625.920000pt;}
.y27_c01315{bottom:626.560000pt;}
.y28_c01315{bottom:627.200000pt;}
.y24_c01315{bottom:663.680000pt;}
.y23_c01315{bottom:664.320000pt;}
.y22_c01315{bottom:664.960000pt;}
.y21_c01315{bottom:709.760000pt;}
.y1f_c01315{bottom:711.680000pt;}
.y20_c01315{bottom:712.320000pt;}
.y19_c01315{bottom:746.880000pt;}
.y1e_c01315{bottom:747.520000pt;}
.y1c_c01315{bottom:748.160000pt;}
.y1d_c01315{bottom:748.800000pt;}
.y1a_c01315{bottom:750.080000pt;}
.y1b_c01315{bottom:750.720000pt;}
.y13_c01315{bottom:785.280000pt;}
.y16_c01315{bottom:785.920000pt;}
.y15_c01315{bottom:786.560000pt;}
.y17_c01315{bottom:787.840000pt;}
.y18_c01315{bottom:788.480000pt;}
.y14_c01315{bottom:789.120000pt;}
.y12_c01315{bottom:824.320000pt;}
.yd_c01315{bottom:824.960000pt;}
.y11_c01315{bottom:825.600000pt;}
.ye_c01315{bottom:826.240000pt;}
.y10_c01315{bottom:826.880000pt;}
.yf_c01315{bottom:827.520000pt;}
.yc_c01315{bottom:862.080000pt;}
.yb_c01315{bottom:862.720000pt;}
.ya_c01315{bottom:864.640000pt;}
.y9_c01315{bottom:865.280000pt;}
.y8_c01315{bottom:865.920000pt;}
.y7_c01315{bottom:866.560000pt;}
.y2_c01315{bottom:910.720000pt;}
.y6_c01315{bottom:911.360000pt;}
.y3_c01315{bottom:912.000000pt;}
.y5_c01315{bottom:912.640000pt;}
.y4_c01315{bottom:913.280000pt;}
.y1_c01315{bottom:951.040000pt;}
.h10_c01315{height:13.822500pt;}
.h11_c01315{height:25.341250pt;}
.h8_c01315{height:27.645000pt;}
.h4_c01315{height:29.948750pt;}
.hb_c01315{height:32.252500pt;}
.he_c01315{height:34.556250pt;}
.h7_c01315{height:36.860000pt;}
.h5_c01315{height:39.163750pt;}
.ha_c01315{height:41.467500pt;}
.hc_c01315{height:43.771250pt;}
.h9_c01315{height:46.075000pt;}
.h6_c01315{height:48.378750pt;}
.hf_c01315{height:50.682500pt;}
.hd_c01315{height:52.986250pt;}
.h3_c01315{height:55.290000pt;}
.h2_c01315{height:62.201250pt;}
.h0_c01315{height:1013.120000pt;}
.h1_c01315{height:1013.333333pt;}
.w0_c01315{width:675.200000pt;}
.w1_c01315{width:675.333333pt;}
.x0_c01315{left:0.000000pt;}
.x3_c01315{left:38.400000pt;}
.x2d_c01315{left:39.680000pt;}
.x51_c01315{left:40.960000pt;}
.x17_c01315{left:64.000000pt;}
.x2e_c01315{left:65.280000pt;}
.x53_c01315{left:66.560000pt;}
.x4_c01315{left:74.880000pt;}
.x56_c01315{left:84.480000pt;}
.x21_c01315{left:92.800000pt;}
.x25_c01315{left:102.400000pt;}
.x5_c01315{left:111.360000pt;}
.x2f_c01315{left:120.960000pt;}
.x44_c01315{left:130.560000pt;}
.xd_c01315{left:131.840000pt;}
.x18_c01315{left:140.160000pt;}
.xe_c01315{left:149.760000pt;}
.x26_c01315{left:151.040000pt;}
.x30_c01315{left:159.360000pt;}
.x22_c01315{left:168.960000pt;}
.x6_c01315{left:179.200000pt;}
.x3c_c01315{left:188.800000pt;}
.x19_c01315{left:197.760000pt;}
.x58_c01315{left:199.680000pt;}
.x7_c01315{left:208.000000pt;}
.x4f_c01315{left:209.280000pt;}
.x48_c01315{left:216.960000pt;}
.x4e_c01315{left:218.240000pt;}
.x1a_c01315{left:227.200000pt;}
.x41_c01315{left:228.480000pt;}
.xf_c01315{left:236.800000pt;}
.x42_c01315{left:245.760000pt;}
.x27_c01315{left:247.040000pt;}
.x54_c01315{left:255.360000pt;}
.x10_c01315{left:265.600000pt;}
.x43_c01315{left:267.520000pt;}
.x28_c01315{left:275.200000pt;}
.x1b_c01315{left:285.440000pt;}
.x4c_c01315{left:294.400000pt;}
.x31_c01315{left:304.640000pt;}
.x11_c01315{left:314.240000pt;}
.x52_c01315{left:322.560000pt;}
.x8_c01315{left:332.800000pt;}
.x37_c01315{left:334.080000pt;}
.x50_c01315{left:341.760000pt;}
.x12_c01315{left:343.040000pt;}
.x45_c01315{left:352.000000pt;}
.x29_c01315{left:360.960000pt;}
.x38_c01315{left:362.240000pt;}
.x4d_c01315{left:370.560000pt;}
.x9_c01315{left:371.840000pt;}
.x3d_c01315{left:380.160000pt;}
.x23_c01315{left:381.440000pt;}
.x39_c01315{left:389.760000pt;}
.x13_c01315{left:391.040000pt;}
.x55_c01315{left:399.360000pt;}
.x32_c01315{left:409.600000pt;}
.x24_c01315{left:419.200000pt;}
.x1c_c01315{left:420.480000pt;}
.x3a_c01315{left:428.160000pt;}
.x46_c01315{left:437.760000pt;}
.xa_c01315{left:439.040000pt;}
.x2a_c01315{left:457.600000pt;}
.x3e_c01315{left:466.560000pt;}
.xb_c01315{left:467.840000pt;}
.x47_c01315{left:476.160000pt;}
.x2b_c01315{left:486.400000pt;}
.x3f_c01315{left:495.360000pt;}
.x14_c01315{left:497.280000pt;}
.x4a_c01315{left:504.960000pt;}
.x1d_c01315{left:506.240000pt;}
.x33_c01315{left:515.200000pt;}
.x40_c01315{left:524.160000pt;}
.xc_c01315{left:525.440000pt;}
.x15_c01315{left:528.000000pt;}
.x1e_c01315{left:535.040000pt;}
.x3b_c01315{left:544.640000pt;}
.x4b_c01315{left:552.320000pt;}
.x34_c01315{left:553.600000pt;}
.x49_c01315{left:562.560000pt;}
.x16_c01315{left:563.840000pt;}
.x57_c01315{left:579.840000pt;}
.x35_c01315{left:581.760000pt;}
.x1f_c01315{left:583.680000pt;}
.x59_c01315{left:590.720000pt;}
.x2c_c01315{left:592.640000pt;}
.x1_c01315{left:595.200000pt;}
.x36_c01315{left:602.240000pt;}
.x20_c01315{left:612.480000pt;}
.x2_c01315{left:627.200000pt;}
}





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

.ir_c01316:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01316{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01316;src:url('chunks/assets/font_d75b5b2e3a9f7e87030e5f5c.woff2')format("woff");}.ff1_c01316{font-family:ff1_c01316;line-height:1.109863;font-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_c01316{transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);}
.me_c01316{transform:matrix(0.114400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114400,0.000000,0.000000,0.250000,0,0);}
.m3f_c01316{transform:matrix(0.117300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117300,0.000000,0.000000,0.250000,0,0);}
.m1c_c01316{transform:matrix(0.131625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131625,0.000000,0.000000,0.250000,0,0);}
.m15_c01316{transform:matrix(0.134125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134125,0.000000,0.000000,0.250000,0,0);}
.m30_c01316{transform:matrix(0.135400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135400,0.000000,0.000000,0.250000,0,0);}
.m5_c01316{transform:matrix(0.162925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162925,0.000000,0.000000,0.250000,0,0);}
.m44_c01316{transform:matrix(0.173050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173050,0.000000,0.000000,0.250000,0,0);}
.m10_c01316{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m23_c01316{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m28_c01316{transform:matrix(0.228775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228775,0.000000,0.000000,0.250000,0,0);}
.m42_c01316{transform:matrix(0.229025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229025,0.000000,0.000000,0.250000,0,0);}
.m24_c01316{transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);}
.m22_c01316{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m21_c01316{transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);}
.m2_c01316{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m1_c01316{transform:matrix(0.240025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240025,0.000000,0.000000,0.250000,0,0);}
.m33_c01316{transform:matrix(0.244275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244275,0.000000,0.000000,0.250000,0,0);}
.m43_c01316{transform:matrix(0.248200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248200,0.000000,0.000000,0.250000,0,0);}
.m8_c01316{transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);}
.m49_c01316{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01316{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);}
.m29_c01316{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_c01316{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);}
.m32_c01316{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m16_c01316{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_c01316{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);}
.m2e_c01316{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m13_c01316{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m26_c01316{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mb_c01316{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m7_c01316{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);}
.m2b_c01316{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mc_c01316{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01316{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m27_c01316{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m20_c01316{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m35_c01316{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.ma_c01316{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m14_c01316{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01316{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m41_c01316{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.md_c01316{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01316{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01316{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01316{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);}
.m25_c01316{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m45_c01316{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);}
.m2d_c01316{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01316{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);}
.m39_c01316{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m38_c01316{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);}
.m4d_c01316{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01316{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m37_c01316{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);}
.m46_c01316{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m48_c01316{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);}
.m40_c01316{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);}
.m31_c01316{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);}
.m3c_c01316{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m6_c01316{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01316{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m47_c01316{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);}
.m3e_c01316{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);}
.m12_c01316{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m36_c01316{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m0_c01316{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);}
.m1d_c01316{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01316{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);}
.m4_c01316{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m11_c01316{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m9_c01316{transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);}
.mf_c01316{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01316{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m3_c01316{transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);}
.m17_c01316{transform:matrix(1.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.080000,0.000000,0.000000,0.250000,0,0);}
.m34_c01316{transform:matrix(2.880000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.880000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.880000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01316{transform:matrix(4.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.110000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01316{transform:matrix(4.832500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.832500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.832500,0.000000,0.000000,0.250000,0,0);}
.v1_c01316{vertical-align:-5.760000px;}
.v0_c01316{vertical-align:0.000000px;}
.v2_c01316{vertical-align:5.760000px;}
.ls2_c01316{letter-spacing:0.000000px;}
.ls0_c01316{letter-spacing:17.011200px;}
.ls1_c01316{letter-spacing:19.905600px;}
.sc__c01316{text-shadow:none;}
.sc0_c01316{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01316{-webkit-text-stroke:0px transparent;}
.sc0_c01316{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01316{word-spacing:0.000000px;}
.ws1_c01316{word-spacing:13.495200px;}
.ws0_c01316{word-spacing:195.249989px;}
.fc0_c01316{color:transparent;}
.fs14_c01316{font-size:2.880000px;}
.fs1_c01316{font-size:5.760000px;}
.fs12_c01316{font-size:8.640000px;}
.fs15_c01316{font-size:11.520000px;}
.fs2_c01316{font-size:14.400000px;}
.fs3_c01316{font-size:17.280000px;}
.fs0_c01316{font-size:20.160000px;}
.fs11_c01316{font-size:31.680000px;}
.fsa_c01316{font-size:34.560000px;}
.fs5_c01316{font-size:37.440000px;}
.fs13_c01316{font-size:40.320000px;}
.fs4_c01316{font-size:43.200000px;}
.fsc_c01316{font-size:46.080000px;}
.fs22_c01316{font-size:48.960000px;}
.fs10_c01316{font-size:51.840000px;}
.fs6_c01316{font-size:54.720000px;}
.fs16_c01316{font-size:57.600000px;}
.fs19_c01316{font-size:60.480000px;}
.fs18_c01316{font-size:63.360000px;}
.fs1a_c01316{font-size:66.240000px;}
.fs17_c01316{font-size:69.120000px;}
.fs1c_c01316{font-size:72.000000px;}
.fsb_c01316{font-size:74.880000px;}
.fs1b_c01316{font-size:77.760000px;}
.fs1f_c01316{font-size:80.640000px;}
.fs1e_c01316{font-size:83.520000px;}
.fs1d_c01316{font-size:89.280000px;}
.fs25_c01316{font-size:92.160000px;}
.fs24_c01316{font-size:97.920000px;}
.fs23_c01316{font-size:100.800000px;}
.fs7_c01316{font-size:103.680000px;}
.fs21_c01316{font-size:109.440000px;}
.fs20_c01316{font-size:112.320000px;}
.fse_c01316{font-size:120.960000px;}
.fs8_c01316{font-size:123.840000px;}
.fs9_c01316{font-size:146.880000px;}
.fsd_c01316{font-size:204.480000px;}
.fsf_c01316{font-size:247.680000px;}
.y0_c01316{bottom:0.000000px;}
.y5f_c01316{bottom:158.400000px;}
.y5e_c01316{bottom:161.280000px;}
.y49_c01316{bottom:165.600000px;}
.y4a_c01316{bottom:170.640000px;}
.y4b_c01316{bottom:171.360000px;}
.y59_c01316{bottom:173.520000px;}
.y58_c01316{bottom:175.680000px;}
.y5a_c01316{bottom:178.560000px;}
.y57_c01316{bottom:180.720000px;}
.y5b_c01316{bottom:182.160000px;}
.y5c_c01316{bottom:182.880000px;}
.y5d_c01316{bottom:185.040000px;}
.y47_c01316{bottom:209.520000px;}
.y48_c01316{bottom:213.120000px;}
.y54_c01316{bottom:216.720000px;}
.y55_c01316{bottom:217.440000px;}
.y56_c01316{bottom:218.160000px;}
.y52_c01316{bottom:241.920000px;}
.y51_c01316{bottom:244.800000px;}
.y53_c01316{bottom:248.400000px;}
.y45_c01316{bottom:254.160000px;}
.y46_c01316{bottom:259.200000px;}
.y4f_c01316{bottom:286.560000px;}
.y50_c01316{bottom:287.280000px;}
.y43_c01316{bottom:297.360000px;}
.y4e_c01316{bottom:302.400000px;}
.y44_c01316{bottom:303.120000px;}
.y4c_c01316{bottom:303.840000px;}
.y4d_c01316{bottom:304.560000px;}
.y1_c01316{bottom:346.320000px;}
.y42_c01316{bottom:367.200000px;}
.y3d_c01316{bottom:367.920000px;}
.y3e_c01316{bottom:368.640000px;}
.y3f_c01316{bottom:369.360000px;}
.y40_c01316{bottom:370.080000px;}
.y41_c01316{bottom:370.800000px;}
.y3c_c01316{bottom:374.400000px;}
.y33_c01316{bottom:393.840000px;}
.y3b_c01316{bottom:417.600000px;}
.y37_c01316{bottom:419.760000px;}
.y38_c01316{bottom:420.480000px;}
.y39_c01316{bottom:421.200000px;}
.y3a_c01316{bottom:421.920000px;}
.y34_c01316{bottom:467.280000px;}
.y35_c01316{bottom:468.720000px;}
.y36_c01316{bottom:470.880000px;}
.y2b_c01316{bottom:552.960000px;}
.y2c_c01316{bottom:553.680000px;}
.y2a_c01316{bottom:554.400000px;}
.y2d_c01316{bottom:555.120000px;}
.y2e_c01316{bottom:555.840000px;}
.y2f_c01316{bottom:556.560000px;}
.y30_c01316{bottom:557.280000px;}
.y31_c01316{bottom:558.000000px;}
.y32_c01316{bottom:558.720000px;}
.y29_c01316{bottom:581.040000px;}
.y28_c01316{bottom:669.600000px;}
.y27_c01316{bottom:758.880000px;}
.y26_c01316{bottom:851.760000px;}
.y25_c01316{bottom:935.280000px;}
.y24_c01316{bottom:1023.840000px;}
.y21_c01316{bottom:1069.200000px;}
.y22_c01316{bottom:1069.920000px;}
.y20_c01316{bottom:1072.080000px;}
.y1f_c01316{bottom:1072.800000px;}
.y1e_c01316{bottom:1075.680000px;}
.y19_c01316{bottom:1076.400000px;}
.y1a_c01316{bottom:1077.120000px;}
.y1b_c01316{bottom:1078.560000px;}
.y1c_c01316{bottom:1079.280000px;}
.y18_c01316{bottom:1084.320000px;}
.y1d_c01316{bottom:1085.760000px;}
.y17_c01316{bottom:1087.200000px;}
.y12_c01316{bottom:1089.360000px;}
.y14_c01316{bottom:1092.240000px;}
.y13_c01316{bottom:1097.280000px;}
.y23_c01316{bottom:1108.800000px;}
.y15_c01316{bottom:1112.400000px;}
.y16_c01316{bottom:1117.440000px;}
.y11_c01316{bottom:1205.280000px;}
.y10_c01316{bottom:1290.240000px;}
.yf_c01316{bottom:1376.640000px;}
.ye_c01316{bottom:1468.080000px;}
.yc_c01316{bottom:1555.920000px;}
.yd_c01316{bottom:1599.840000px;}
.yb_c01316{bottom:1661.760000px;}
.ya_c01316{bottom:1732.320000px;}
.y9_c01316{bottom:1818.720000px;}
.y8_c01316{bottom:2026.800000px;}
.y7_c01316{bottom:2027.520000px;}
.y6_c01316{bottom:2042.640000px;}
.y5_c01316{bottom:2044.080000px;}
.y4_c01316{bottom:2047.680000px;}
.y3_c01316{bottom:2057.040000px;}
.y2_c01316{bottom:2057.760000px;}
.h3_c01316{height:5.183438px;}
.h14_c01316{height:7.775156px;}
.h16_c01316{height:10.366875px;}
.h4_c01316{height:12.958594px;}
.h5_c01316{height:15.550313px;}
.h2_c01316{height:18.142031px;}
.h13_c01316{height:28.508906px;}
.hc_c01316{height:31.100625px;}
.h7_c01316{height:33.692344px;}
.h15_c01316{height:36.284062px;}
.h6_c01316{height:38.875781px;}
.he_c01316{height:41.467500px;}
.h24_c01316{height:44.059219px;}
.h12_c01316{height:46.650937px;}
.h8_c01316{height:49.242656px;}
.h17_c01316{height:51.834375px;}
.h1a_c01316{height:54.426094px;}
.h1b_c01316{height:57.017812px;}
.h1c_c01316{height:59.609531px;}
.h18_c01316{height:62.201250px;}
.h19_c01316{height:62.777812px;}
.h1e_c01316{height:64.792969px;}
.hd_c01316{height:67.384687px;}
.h1d_c01316{height:69.976406px;}
.h21_c01316{height:72.568125px;}
.h20_c01316{height:75.159844px;}
.h1f_c01316{height:80.343281px;}
.h27_c01316{height:82.935000px;}
.h26_c01316{height:88.118437px;}
.h25_c01316{height:90.710156px;}
.h9_c01316{height:93.301875px;}
.h23_c01316{height:98.485312px;}
.h22_c01316{height:101.077031px;}
.h10_c01316{height:108.852188px;}
.ha_c01316{height:111.443906px;}
.hb_c01316{height:132.177656px;}
.hf_c01316{height:184.012031px;}
.h11_c01316{height:222.887812px;}
.h0_c01316{height:2419.200000px;}
.h1_c01316{height:2419.500000px;}
.w1_c01316{width:3951.000000px;}
.w0_c01316{width:3951.360000px;}
.x0_c01316{left:0.000000px;}
.x27_c01316{left:205.200000px;}
.x26_c01316{left:206.640000px;}
.x25_c01316{left:211.679280px;}
.x10_c01316{left:213.120000px;}
.xf_c01316{left:216.000000px;}
.xe_c01316{left:217.440000px;}
.xc_c01316{left:219.600000px;}
.xa_c01316{left:221.760000px;}
.x9_c01316{left:230.400000px;}
.x28_c01316{left:320.400000px;}
.x29_c01316{left:407.520000px;}
.x2a_c01316{left:494.640000px;}
.x11_c01316{left:583.920000px;}
.x18_c01316{left:599.040000px;}
.x19_c01316{left:605.520000px;}
.x23_c01316{left:606.960000px;}
.x1a_c01316{left:624.960000px;}
.x24_c01316{left:632.160000px;}
.x1b_c01316{left:637.200000px;}
.x1c_c01316{left:646.560000px;}
.x12_c01316{left:654.480000px;}
.x2b_c01316{left:671.760000px;}
.x13_c01316{left:685.440000px;}
.x1d_c01316{left:727.200000px;}
.x14_c01316{left:731.520000px;}
.x1e_c01316{left:740.160000px;}
.x1f_c01316{left:745.920000px;}
.x20_c01316{left:754.560000px;}
.x2c_c01316{left:761.040000px;}
.x15_c01316{left:769.680000px;}
.x21_c01316{left:775.440000px;}
.x22_c01316{left:786.960000px;}
.x16_c01316{left:838.080000px;}
.x2d_c01316{left:846.000000px;}
.x69_c01316{left:848.160000px;}
.x68_c01316{left:849.600000px;}
.x66_c01316{left:851.040000px;}
.x6a_c01316{left:891.360000px;}
.x67_c01316{left:893.520000px;}
.x17_c01316{left:894.960000px;}
.x2e_c01316{left:935.280000px;}
.x50_c01316{left:977.760000px;}
.x6b_c01316{left:982.080000px;}
.x6c_c01316{left:1009.440000px;}
.x2f_c01316{left:1020.960000px;}
.x30_c01316{left:1108.800000px;}
.x6d_c01316{left:1178.640000px;}
.x31_c01316{left:1192.320000px;}
.x6e_c01316{left:1238.400000px;}
.x79_c01316{left:1272.240000px;}
.x32_c01316{left:1280.160000px;}
.x7a_c01316{left:1329.840000px;}
.x6f_c01316{left:1331.280000px;}
.x33_c01316{left:1365.840000px;}
.x80_c01316{left:1422.000000px;}
.x34_c01316{left:1452.960000px;}
.x81_c01316{left:1487.520000px;}
.x7b_c01316{left:1519.200000px;}
.x35_c01316{left:1537.200000px;}
.x70_c01316{left:1578.960000px;}
.x71_c01316{left:1609.920000px;}
.x36_c01316{left:1620.000000px;}
.x82_c01316{left:1648.080000px;}
.x37_c01316{left:1702.800000px;}
.x83_c01316{left:1767.600000px;}
.x38_c01316{left:1786.320000px;}
.x84_c01316{left:1828.800000px;}
.x39_c01316{left:1869.840000px;}
.x85_c01316{left:1903.680000px;}
.x3a_c01316{left:1956.240000px;}
.x3b_c01316{left:2037.600000px;}
.x2_c01316{left:2090.880000px;}
.x5_c01316{left:2093.040000px;}
.x7_c01316{left:2094.480000px;}
.x4_c01316{left:2099.520000px;}
.x3_c01316{left:2102.400000px;}
.x8_c01316{left:2105.280000px;}
.x6_c01316{left:2108.160000px;}
.x3c_c01316{left:2124.000000px;}
.x3d_c01316{left:2208.240000px;}
.x3e_c01316{left:2290.320000px;}
.x3f_c01316{left:2379.600000px;}
.x40_c01316{left:2462.400000px;}
.x41_c01316{left:2545.200000px;}
.x42_c01316{left:2630.880000px;}
.x43_c01316{left:2715.840000px;}
.x44_c01316{left:2800.800000px;}
.x45_c01316{left:2883.600000px;}
.x46_c01316{left:2969.280000px;}
.x47_c01316{left:3049.920000px;}
.x48_c01316{left:3136.320000px;}
.x51_c01316{left:3214.080000px;}
.x49_c01316{left:3217.680000px;}
.x55_c01316{left:3222.000000px;}
.xd_c01316{left:3234.240000px;}
.x5d_c01316{left:3245.760000px;}
.x4a_c01316{left:3302.640000px;}
.x52_c01316{left:3304.080000px;}
.x5e_c01316{left:3324.960000px;}
.x56_c01316{left:3333.600000px;}
.x7c_c01316{left:3340.800000px;}
.xb_c01316{left:3353.760000px;}
.x72_c01316{left:3376.800000px;}
.x4b_c01316{left:3383.280000px;}
.x7d_c01316{left:3406.320000px;}
.x73_c01316{left:3425.760000px;}
.x5f_c01316{left:3436.560000px;}
.x74_c01316{left:3443.760000px;}
.x57_c01316{left:3457.440000px;}
.x7e_c01316{left:3460.320000px;}
.x75_c01316{left:3467.520000px;}
.x4c_c01316{left:3472.560000px;}
.x86_c01316{left:3479.760000px;}
.x76_c01316{left:3489.840000px;}
.x60_c01316{left:3508.560000px;}
.x77_c01316{left:3533.040000px;}
.x53_c01316{left:3547.440000px;}
.x61_c01316{left:3551.760000px;}
.x4d_c01316{left:3554.640000px;}
.x58_c01316{left:3562.560000px;}
.x7f_c01316{left:3569.040000px;}
.x78_c01316{left:3576.960000px;}
.x59_c01316{left:3583.440000px;}
.x54_c01316{left:3586.320000px;}
.x1_c01316{left:3592.080000px;}
.x62_c01316{left:3594.240000px;}
.x5a_c01316{left:3615.840000px;}
.x4e_c01316{left:3638.160000px;}
.x5b_c01316{left:3654.720000px;}
.x63_c01316{left:3664.800000px;}
.x5c_c01316{left:3684.960000px;}
.x4f_c01316{left:3722.400000px;}
.x64_c01316{left:3728.160000px;}
.x65_c01316{left:3760.560000px;}
@media print{
.v1_c01316{vertical-align:-5.120000pt;}
.v0_c01316{vertical-align:0.000000pt;}
.v2_c01316{vertical-align:5.120000pt;}
.ls2_c01316{letter-spacing:0.000000pt;}
.ls0_c01316{letter-spacing:15.121067pt;}
.ls1_c01316{letter-spacing:17.693867pt;}
.ws2_c01316{word-spacing:0.000000pt;}
.ws1_c01316{word-spacing:11.995733pt;}
.ws0_c01316{word-spacing:173.555546pt;}
.fs14_c01316{font-size:2.560000pt;}
.fs1_c01316{font-size:5.120000pt;}
.fs12_c01316{font-size:7.680000pt;}
.fs15_c01316{font-size:10.240000pt;}
.fs2_c01316{font-size:12.800000pt;}
.fs3_c01316{font-size:15.360000pt;}
.fs0_c01316{font-size:17.920000pt;}
.fs11_c01316{font-size:28.160000pt;}
.fsa_c01316{font-size:30.720000pt;}
.fs5_c01316{font-size:33.280000pt;}
.fs13_c01316{font-size:35.840000pt;}
.fs4_c01316{font-size:38.400000pt;}
.fsc_c01316{font-size:40.960000pt;}
.fs22_c01316{font-size:43.520000pt;}
.fs10_c01316{font-size:46.080000pt;}
.fs6_c01316{font-size:48.640000pt;}
.fs16_c01316{font-size:51.200000pt;}
.fs19_c01316{font-size:53.760000pt;}
.fs18_c01316{font-size:56.320000pt;}
.fs1a_c01316{font-size:58.880000pt;}
.fs17_c01316{font-size:61.440000pt;}
.fs1c_c01316{font-size:64.000000pt;}
.fsb_c01316{font-size:66.560000pt;}
.fs1b_c01316{font-size:69.120000pt;}
.fs1f_c01316{font-size:71.680000pt;}
.fs1e_c01316{font-size:74.240000pt;}
.fs1d_c01316{font-size:79.360000pt;}
.fs25_c01316{font-size:81.920000pt;}
.fs24_c01316{font-size:87.040000pt;}
.fs23_c01316{font-size:89.600000pt;}
.fs7_c01316{font-size:92.160000pt;}
.fs21_c01316{font-size:97.280000pt;}
.fs20_c01316{font-size:99.840000pt;}
.fse_c01316{font-size:107.520000pt;}
.fs8_c01316{font-size:110.080000pt;}
.fs9_c01316{font-size:130.560000pt;}
.fsd_c01316{font-size:181.760000pt;}
.fsf_c01316{font-size:220.160000pt;}
.y0_c01316{bottom:0.000000pt;}
.y5f_c01316{bottom:140.800000pt;}
.y5e_c01316{bottom:143.360000pt;}
.y49_c01316{bottom:147.200000pt;}
.y4a_c01316{bottom:151.680000pt;}
.y4b_c01316{bottom:152.320000pt;}
.y59_c01316{bottom:154.240000pt;}
.y58_c01316{bottom:156.160000pt;}
.y5a_c01316{bottom:158.720000pt;}
.y57_c01316{bottom:160.640000pt;}
.y5b_c01316{bottom:161.920000pt;}
.y5c_c01316{bottom:162.560000pt;}
.y5d_c01316{bottom:164.480000pt;}
.y47_c01316{bottom:186.240000pt;}
.y48_c01316{bottom:189.440000pt;}
.y54_c01316{bottom:192.640000pt;}
.y55_c01316{bottom:193.280000pt;}
.y56_c01316{bottom:193.920000pt;}
.y52_c01316{bottom:215.040000pt;}
.y51_c01316{bottom:217.600000pt;}
.y53_c01316{bottom:220.800000pt;}
.y45_c01316{bottom:225.920000pt;}
.y46_c01316{bottom:230.400000pt;}
.y4f_c01316{bottom:254.720000pt;}
.y50_c01316{bottom:255.360000pt;}
.y43_c01316{bottom:264.320000pt;}
.y4e_c01316{bottom:268.800000pt;}
.y44_c01316{bottom:269.440000pt;}
.y4c_c01316{bottom:270.080000pt;}
.y4d_c01316{bottom:270.720000pt;}
.y1_c01316{bottom:307.840000pt;}
.y42_c01316{bottom:326.400000pt;}
.y3d_c01316{bottom:327.040000pt;}
.y3e_c01316{bottom:327.680000pt;}
.y3f_c01316{bottom:328.320000pt;}
.y40_c01316{bottom:328.960000pt;}
.y41_c01316{bottom:329.600000pt;}
.y3c_c01316{bottom:332.800000pt;}
.y33_c01316{bottom:350.080000pt;}
.y3b_c01316{bottom:371.200000pt;}
.y37_c01316{bottom:373.120000pt;}
.y38_c01316{bottom:373.760000pt;}
.y39_c01316{bottom:374.400000pt;}
.y3a_c01316{bottom:375.040000pt;}
.y34_c01316{bottom:415.360000pt;}
.y35_c01316{bottom:416.640000pt;}
.y36_c01316{bottom:418.560000pt;}
.y2b_c01316{bottom:491.520000pt;}
.y2c_c01316{bottom:492.160000pt;}
.y2a_c01316{bottom:492.800000pt;}
.y2d_c01316{bottom:493.440000pt;}
.y2e_c01316{bottom:494.080000pt;}
.y2f_c01316{bottom:494.720000pt;}
.y30_c01316{bottom:495.360000pt;}
.y31_c01316{bottom:496.000000pt;}
.y32_c01316{bottom:496.640000pt;}
.y29_c01316{bottom:516.480000pt;}
.y28_c01316{bottom:595.200000pt;}
.y27_c01316{bottom:674.560000pt;}
.y26_c01316{bottom:757.120000pt;}
.y25_c01316{bottom:831.360000pt;}
.y24_c01316{bottom:910.080000pt;}
.y21_c01316{bottom:950.400000pt;}
.y22_c01316{bottom:951.040000pt;}
.y20_c01316{bottom:952.960000pt;}
.y1f_c01316{bottom:953.600000pt;}
.y1e_c01316{bottom:956.160000pt;}
.y19_c01316{bottom:956.800000pt;}
.y1a_c01316{bottom:957.440000pt;}
.y1b_c01316{bottom:958.720000pt;}
.y1c_c01316{bottom:959.360000pt;}
.y18_c01316{bottom:963.840000pt;}
.y1d_c01316{bottom:965.120000pt;}
.y17_c01316{bottom:966.400000pt;}
.y12_c01316{bottom:968.320000pt;}
.y14_c01316{bottom:970.880000pt;}
.y13_c01316{bottom:975.360000pt;}
.y23_c01316{bottom:985.600000pt;}
.y15_c01316{bottom:988.800000pt;}
.y16_c01316{bottom:993.280000pt;}
.y11_c01316{bottom:1071.360000pt;}
.y10_c01316{bottom:1146.880000pt;}
.yf_c01316{bottom:1223.680000pt;}
.ye_c01316{bottom:1304.960000pt;}
.yc_c01316{bottom:1383.040000pt;}
.yd_c01316{bottom:1422.080000pt;}
.yb_c01316{bottom:1477.120000pt;}
.ya_c01316{bottom:1539.840000pt;}
.y9_c01316{bottom:1616.640000pt;}
.y8_c01316{bottom:1801.600000pt;}
.y7_c01316{bottom:1802.240000pt;}
.y6_c01316{bottom:1815.680000pt;}
.y5_c01316{bottom:1816.960000pt;}
.y4_c01316{bottom:1820.160000pt;}
.y3_c01316{bottom:1828.480000pt;}
.y2_c01316{bottom:1829.120000pt;}
.h3_c01316{height:4.607500pt;}
.h14_c01316{height:6.911250pt;}
.h16_c01316{height:9.215000pt;}
.h4_c01316{height:11.518750pt;}
.h5_c01316{height:13.822500pt;}
.h2_c01316{height:16.126250pt;}
.h13_c01316{height:25.341250pt;}
.hc_c01316{height:27.645000pt;}
.h7_c01316{height:29.948750pt;}
.h15_c01316{height:32.252500pt;}
.h6_c01316{height:34.556250pt;}
.he_c01316{height:36.860000pt;}
.h24_c01316{height:39.163750pt;}
.h12_c01316{height:41.467500pt;}
.h8_c01316{height:43.771250pt;}
.h17_c01316{height:46.075000pt;}
.h1a_c01316{height:48.378750pt;}
.h1b_c01316{height:50.682500pt;}
.h1c_c01316{height:52.986250pt;}
.h18_c01316{height:55.290000pt;}
.h19_c01316{height:55.802500pt;}
.h1e_c01316{height:57.593750pt;}
.hd_c01316{height:59.897500pt;}
.h1d_c01316{height:62.201250pt;}
.h21_c01316{height:64.505000pt;}
.h20_c01316{height:66.808750pt;}
.h1f_c01316{height:71.416250pt;}
.h27_c01316{height:73.720000pt;}
.h26_c01316{height:78.327500pt;}
.h25_c01316{height:80.631250pt;}
.h9_c01316{height:82.935000pt;}
.h23_c01316{height:87.542500pt;}
.h22_c01316{height:89.846250pt;}
.h10_c01316{height:96.757500pt;}
.ha_c01316{height:99.061250pt;}
.hb_c01316{height:117.491250pt;}
.hf_c01316{height:163.566250pt;}
.h11_c01316{height:198.122500pt;}
.h0_c01316{height:2150.400000pt;}
.h1_c01316{height:2150.666667pt;}
.w1_c01316{width:3512.000000pt;}
.w0_c01316{width:3512.320000pt;}
.x0_c01316{left:0.000000pt;}
.x27_c01316{left:182.400000pt;}
.x26_c01316{left:183.680000pt;}
.x25_c01316{left:188.159360pt;}
.x10_c01316{left:189.440000pt;}
.xf_c01316{left:192.000000pt;}
.xe_c01316{left:193.280000pt;}
.xc_c01316{left:195.200000pt;}
.xa_c01316{left:197.120000pt;}
.x9_c01316{left:204.800000pt;}
.x28_c01316{left:284.800000pt;}
.x29_c01316{left:362.240000pt;}
.x2a_c01316{left:439.680000pt;}
.x11_c01316{left:519.040000pt;}
.x18_c01316{left:532.480000pt;}
.x19_c01316{left:538.240000pt;}
.x23_c01316{left:539.520000pt;}
.x1a_c01316{left:555.520000pt;}
.x24_c01316{left:561.920000pt;}
.x1b_c01316{left:566.400000pt;}
.x1c_c01316{left:574.720000pt;}
.x12_c01316{left:581.760000pt;}
.x2b_c01316{left:597.120000pt;}
.x13_c01316{left:609.280000pt;}
.x1d_c01316{left:646.400000pt;}
.x14_c01316{left:650.240000pt;}
.x1e_c01316{left:657.920000pt;}
.x1f_c01316{left:663.040000pt;}
.x20_c01316{left:670.720000pt;}
.x2c_c01316{left:676.480000pt;}
.x15_c01316{left:684.160000pt;}
.x21_c01316{left:689.280000pt;}
.x22_c01316{left:699.520000pt;}
.x16_c01316{left:744.960000pt;}
.x2d_c01316{left:752.000000pt;}
.x69_c01316{left:753.920000pt;}
.x68_c01316{left:755.200000pt;}
.x66_c01316{left:756.480000pt;}
.x6a_c01316{left:792.320000pt;}
.x67_c01316{left:794.240000pt;}
.x17_c01316{left:795.520000pt;}
.x2e_c01316{left:831.360000pt;}
.x50_c01316{left:869.120000pt;}
.x6b_c01316{left:872.960000pt;}
.x6c_c01316{left:897.280000pt;}
.x2f_c01316{left:907.520000pt;}
.x30_c01316{left:985.600000pt;}
.x6d_c01316{left:1047.680000pt;}
.x31_c01316{left:1059.840000pt;}
.x6e_c01316{left:1100.800000pt;}
.x79_c01316{left:1130.880000pt;}
.x32_c01316{left:1137.920000pt;}
.x7a_c01316{left:1182.080000pt;}
.x6f_c01316{left:1183.360000pt;}
.x33_c01316{left:1214.080000pt;}
.x80_c01316{left:1264.000000pt;}
.x34_c01316{left:1291.520000pt;}
.x81_c01316{left:1322.240000pt;}
.x7b_c01316{left:1350.400000pt;}
.x35_c01316{left:1366.400000pt;}
.x70_c01316{left:1403.520000pt;}
.x71_c01316{left:1431.040000pt;}
.x36_c01316{left:1440.000000pt;}
.x82_c01316{left:1464.960000pt;}
.x37_c01316{left:1513.600000pt;}
.x83_c01316{left:1571.200000pt;}
.x38_c01316{left:1587.840000pt;}
.x84_c01316{left:1625.600000pt;}
.x39_c01316{left:1662.080000pt;}
.x85_c01316{left:1692.160000pt;}
.x3a_c01316{left:1738.880000pt;}
.x3b_c01316{left:1811.200000pt;}
.x2_c01316{left:1858.560000pt;}
.x5_c01316{left:1860.480000pt;}
.x7_c01316{left:1861.760000pt;}
.x4_c01316{left:1866.240000pt;}
.x3_c01316{left:1868.800000pt;}
.x8_c01316{left:1871.360000pt;}
.x6_c01316{left:1873.920000pt;}
.x3c_c01316{left:1888.000000pt;}
.x3d_c01316{left:1962.880000pt;}
.x3e_c01316{left:2035.840000pt;}
.x3f_c01316{left:2115.200000pt;}
.x40_c01316{left:2188.800000pt;}
.x41_c01316{left:2262.400000pt;}
.x42_c01316{left:2338.560000pt;}
.x43_c01316{left:2414.080000pt;}
.x44_c01316{left:2489.600000pt;}
.x45_c01316{left:2563.200000pt;}
.x46_c01316{left:2639.360000pt;}
.x47_c01316{left:2711.040000pt;}
.x48_c01316{left:2787.840000pt;}
.x51_c01316{left:2856.960000pt;}
.x49_c01316{left:2860.160000pt;}
.x55_c01316{left:2864.000000pt;}
.xd_c01316{left:2874.880000pt;}
.x5d_c01316{left:2885.120000pt;}
.x4a_c01316{left:2935.680000pt;}
.x52_c01316{left:2936.960000pt;}
.x5e_c01316{left:2955.520000pt;}
.x56_c01316{left:2963.200000pt;}
.x7c_c01316{left:2969.600000pt;}
.xb_c01316{left:2981.120000pt;}
.x72_c01316{left:3001.600000pt;}
.x4b_c01316{left:3007.360000pt;}
.x7d_c01316{left:3027.840000pt;}
.x73_c01316{left:3045.120000pt;}
.x5f_c01316{left:3054.720000pt;}
.x74_c01316{left:3061.120000pt;}
.x57_c01316{left:3073.280000pt;}
.x7e_c01316{left:3075.840000pt;}
.x75_c01316{left:3082.240000pt;}
.x4c_c01316{left:3086.720000pt;}
.x86_c01316{left:3093.120000pt;}
.x76_c01316{left:3102.080000pt;}
.x60_c01316{left:3118.720000pt;}
.x77_c01316{left:3140.480000pt;}
.x53_c01316{left:3153.280000pt;}
.x61_c01316{left:3157.120000pt;}
.x4d_c01316{left:3159.680000pt;}
.x58_c01316{left:3166.720000pt;}
.x7f_c01316{left:3172.480000pt;}
.x78_c01316{left:3179.520000pt;}
.x59_c01316{left:3185.280000pt;}
.x54_c01316{left:3187.840000pt;}
.x1_c01316{left:3192.960000pt;}
.x62_c01316{left:3194.880000pt;}
.x5a_c01316{left:3214.080000pt;}
.x4e_c01316{left:3233.920000pt;}
.x5b_c01316{left:3248.640000pt;}
.x63_c01316{left:3257.600000pt;}
.x5c_c01316{left:3275.520000pt;}
.x4f_c01316{left:3308.800000pt;}
.x64_c01316{left:3313.920000pt;}
.x65_c01316{left:3342.720000pt;}
}





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

.ir_c01317:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01317{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01317;src:url('chunks/assets/font_4b1b72954e10ca6ac747521a.woff2')format("woff");}.ff1_c01317{font-family:ff1_c01317;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01317{transform:matrix(0.112475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112475,0.000000,0.000000,0.250000,0,0);}
.m2_c01317{transform:matrix(0.234200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234200,0.000000,0.000000,0.250000,0,0);}
.m34_c01317{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01317{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);}
.m32_c01317{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);}
.m5c_c01317{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);}
.m45_c01317{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m1_c01317{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);}
.m31_c01317{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m6_c01317{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);}
.m2b_c01317{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);}
.m28_c01317{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);}
.m2c_c01317{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m63_c01317{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m4_c01317{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m25_c01317{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m29_c01317{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m5e_c01317{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01317{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01317{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mb_c01317{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m10_c01317{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);}
.m1f_c01317{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m36_c01317{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m15_c01317{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01317{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);}
.m2d_c01317{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m58_c01317{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);}
.m60_c01317{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01317{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m14_c01317{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01317{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);}
.m42_c01317{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m3_c01317{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);}
.m4b_c01317{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_c01317{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.md_c01317{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);}
.m55_c01317{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m47_c01317{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);}
.m48_c01317{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);}
.m59_c01317{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);}
.m5d_c01317{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m23_c01317{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.mc_c01317{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_c01317{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m46_c01317{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);}
.m3d_c01317{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m24_c01317{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);}
.m1d_c01317{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);}
.m21_c01317{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m13_c01317{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m5f_c01317{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01317{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m50_c01317{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);}
.me_c01317{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m18_c01317{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);}
.m39_c01317{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m44_c01317{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);}
.m17_c01317{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01317{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m40_c01317{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m53_c01317{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01317{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);}
.m57_c01317{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m33_c01317{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m52_c01317{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);}
.m30_c01317{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m56_c01317{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m54_c01317{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);}
.m62_c01317{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);}
.m49_c01317{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m64_c01317{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01317{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);}
.m7_c01317{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m38_c01317{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m5a_c01317{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_c01317{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m37_c01317{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m61_c01317{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);}
.m35_c01317{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);}
.m5_c01317{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_c01317{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01317{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m9_c01317{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01317{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m43_c01317{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m12_c01317{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);}
.m22_c01317{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);}
.m11_c01317{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m51_c01317{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m19_c01317{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);}
.m3f_c01317{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m16_c01317{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01317{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m26_c01317{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m41_c01317{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);}
.m4a_c01317{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.ma_c01317{transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);}
.m5b_c01317{transform:matrix(0.747500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.747500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.747500,0.000000,0.000000,0.250000,0,0);}
.m8_c01317{transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01317{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.v0_c01317{vertical-align:0.000000px;}
.ls0_c01317{letter-spacing:0.000000px;}
.sc__c01317{text-shadow:none;}
.sc0_c01317{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01317{-webkit-text-stroke:0px transparent;}
.sc0_c01317{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01317{word-spacing:0.000000px;}
.fc0_c01317{color:transparent;}
.fse_c01317{font-size:31.680000px;}
.fs6_c01317{font-size:34.560000px;}
.fsc_c01317{font-size:37.440000px;}
.fs8_c01317{font-size:43.200000px;}
.fs9_c01317{font-size:46.080000px;}
.fs3_c01317{font-size:48.960000px;}
.fs5_c01317{font-size:51.840000px;}
.fsb_c01317{font-size:54.720000px;}
.fs4_c01317{font-size:57.600000px;}
.fs2_c01317{font-size:60.480000px;}
.fsa_c01317{font-size:63.360000px;}
.fs7_c01317{font-size:66.240000px;}
.fsd_c01317{font-size:69.120000px;}
.fs1_c01317{font-size:72.000000px;}
.fs0_c01317{font-size:86.400000px;}
.y0_c01317{bottom:0.000000px;}
.y79_c01317{bottom:30.960000px;}
.y7a_c01317{bottom:31.680000px;}
.y78_c01317{bottom:32.400000px;}
.y77_c01317{bottom:33.120000px;}
.y76_c01317{bottom:33.840000px;}
.y7c_c01317{bottom:34.560000px;}
.y75_c01317{bottom:35.280000px;}
.y7b_c01317{bottom:36.000000px;}
.y71_c01317{bottom:73.440000px;}
.y70_c01317{bottom:76.320000px;}
.y6f_c01317{bottom:77.040000px;}
.y72_c01317{bottom:77.760000px;}
.y73_c01317{bottom:78.480000px;}
.y74_c01317{bottom:79.920000px;}
.y6a_c01317{bottom:116.640000px;}
.y69_c01317{bottom:118.080000px;}
.y68_c01317{bottom:118.800000px;}
.y6b_c01317{bottom:120.240000px;}
.y6c_c01317{bottom:120.960000px;}
.y6d_c01317{bottom:121.680000px;}
.y6e_c01317{bottom:122.400000px;}
.y65_c01317{bottom:162.000000px;}
.y66_c01317{bottom:162.720000px;}
.y67_c01317{bottom:164.160000px;}
.y60_c01317{bottom:224.640000px;}
.y62_c01317{bottom:225.360000px;}
.y63_c01317{bottom:226.080000px;}
.y61_c01317{bottom:226.800000px;}
.y64_c01317{bottom:227.520000px;}
.y5f_c01317{bottom:228.960000px;}
.y59_c01317{bottom:266.400000px;}
.y58_c01317{bottom:267.120000px;}
.y5a_c01317{bottom:267.840000px;}
.y5e_c01317{bottom:268.560000px;}
.y5c_c01317{bottom:269.280000px;}
.y57_c01317{bottom:270.000000px;}
.y5b_c01317{bottom:270.720000px;}
.y5d_c01317{bottom:271.440000px;}
.y56_c01317{bottom:272.160000px;}
.y50_c01317{bottom:309.600000px;}
.y52_c01317{bottom:310.320000px;}
.y55_c01317{bottom:311.040000px;}
.y4f_c01317{bottom:312.480000px;}
.y51_c01317{bottom:313.200000px;}
.y54_c01317{bottom:313.920000px;}
.y53_c01317{bottom:314.640000px;}
.y4d_c01317{bottom:364.320000px;}
.y4e_c01317{bottom:366.480000px;}
.y4c_c01317{bottom:367.920000px;}
.y47_c01317{bottom:408.960000px;}
.y49_c01317{bottom:409.680000px;}
.y48_c01317{bottom:410.400000px;}
.y4a_c01317{bottom:411.120000px;}
.y4b_c01317{bottom:411.840000px;}
.y44_c01317{bottom:450.720000px;}
.y45_c01317{bottom:451.440000px;}
.y43_c01317{bottom:452.880000px;}
.y42_c01317{bottom:453.600000px;}
.y46_c01317{bottom:454.320000px;}
.y3f_c01317{bottom:493.920000px;}
.y41_c01317{bottom:494.640000px;}
.y40_c01317{bottom:496.080000px;}
.y3e_c01317{bottom:496.800000px;}
.y3d_c01317{bottom:537.120000px;}
.y3b_c01317{bottom:539.280000px;}
.y3c_c01317{bottom:540.000000px;}
.y39_c01317{bottom:578.880000px;}
.y37_c01317{bottom:581.760000px;}
.y38_c01317{bottom:582.480000px;}
.y3a_c01317{bottom:583.200000px;}
.y35_c01317{bottom:622.800000px;}
.y34_c01317{bottom:624.960000px;}
.y36_c01317{bottom:625.680000px;}
.y30_c01317{bottom:675.360000px;}
.y31_c01317{bottom:676.080000px;}
.y33_c01317{bottom:678.240000px;}
.y32_c01317{bottom:678.960000px;}
.y2d_c01317{bottom:719.280000px;}
.y2b_c01317{bottom:720.000000px;}
.y2f_c01317{bottom:720.720000px;}
.y2e_c01317{bottom:721.440000px;}
.y2c_c01317{bottom:722.160000px;}
.y27_c01317{bottom:761.040000px;}
.y29_c01317{bottom:761.760000px;}
.y28_c01317{bottom:762.480000px;}
.y2a_c01317{bottom:763.920000px;}
.y26_c01317{bottom:764.640000px;}
.y25_c01317{bottom:765.360000px;}
.y1f_c01317{bottom:814.320000px;}
.y22_c01317{bottom:815.040000px;}
.y23_c01317{bottom:815.760000px;}
.y24_c01317{bottom:816.480000px;}
.y20_c01317{bottom:817.920000px;}
.y21_c01317{bottom:818.640000px;}
.y1c_c01317{bottom:856.800000px;}
.y1d_c01317{bottom:857.520000px;}
.y19_c01317{bottom:859.680000px;}
.y1e_c01317{bottom:860.400000px;}
.y1a_c01317{bottom:861.120000px;}
.y1b_c01317{bottom:861.840000px;}
.y18_c01317{bottom:900.000000px;}
.y12_c01317{bottom:900.720000px;}
.y15_c01317{bottom:901.440000px;}
.y13_c01317{bottom:902.160000px;}
.y17_c01317{bottom:902.880000px;}
.y16_c01317{bottom:903.600000px;}
.y14_c01317{bottom:905.040000px;}
.yc_c01317{bottom:943.200000px;}
.yd_c01317{bottom:943.920000px;}
.yf_c01317{bottom:944.640000px;}
.y10_c01317{bottom:946.080000px;}
.y11_c01317{bottom:946.800000px;}
.ye_c01317{bottom:947.520000px;}
.yb_c01317{bottom:984.960000px;}
.y6_c01317{bottom:985.680000px;}
.y8_c01317{bottom:987.840000px;}
.ya_c01317{bottom:988.560000px;}
.y9_c01317{bottom:989.280000px;}
.y7_c01317{bottom:990.000000px;}
.y4_c01317{bottom:1032.480000px;}
.y5_c01317{bottom:1033.200000px;}
.y3_c01317{bottom:1033.920000px;}
.y1_c01317{bottom:1070.640000px;}
.y2_c01317{bottom:1072.800000px;}
.h10_c01317{height:28.508906px;}
.h8_c01317{height:31.100625px;}
.he_c01317{height:33.692344px;}
.ha_c01317{height:38.875781px;}
.hb_c01317{height:41.467500px;}
.h5_c01317{height:44.059219px;}
.h7_c01317{height:46.650937px;}
.hd_c01317{height:49.242656px;}
.h6_c01317{height:51.834375px;}
.h4_c01317{height:54.426094px;}
.hc_c01317{height:57.017812px;}
.h9_c01317{height:59.609531px;}
.hf_c01317{height:62.201250px;}
.h3_c01317{height:64.792969px;}
.h2_c01317{height:77.751563px;}
.h0_c01317{height:1140.480000px;}
.h1_c01317{height:1140.750000px;}
.w0_c01317{width:738.000000px;}
.x0_c01317{left:0.000000px;}
.xd_c01317{left:28.080000px;}
.x3d_c01317{left:29.520000px;}
.x4e_c01317{left:30.960000px;}
.x58_c01317{left:32.400000px;}
.x3f_c01317{left:59.040000px;}
.x46_c01317{left:69.120000px;}
.x26_c01317{left:78.480000px;}
.x5a_c01317{left:79.920000px;}
.x15_c01317{left:88.560000px;}
.x4f_c01317{left:90.720000px;}
.xe_c01317{left:100.080000px;}
.x1e_c01317{left:110.880000px;}
.x2c_c01317{left:121.680000px;}
.x48_c01317{left:123.120000px;}
.x4_c01317{left:131.760000px;}
.x30_c01317{left:133.200000px;}
.x1f_c01317{left:142.560000px;}
.x47_c01317{left:144.720000px;}
.x27_c01317{left:153.360000px;}
.x42_c01317{left:154.800000px;}
.x5_c01317{left:164.160000px;}
.x40_c01317{left:165.600000px;}
.x54_c01317{left:167.040000px;}
.x43_c01317{left:176.400000px;}
.xf_c01317{left:187.200000px;}
.x53_c01317{left:189.360000px;}
.x16_c01317{left:197.280000px;}
.x28_c01317{left:198.720000px;}
.x6_c01317{left:208.800000px;}
.x20_c01317{left:218.880000px;}
.x31_c01317{left:220.320000px;}
.x5b_c01317{left:231.120000px;}
.x17_c01317{left:240.480000px;}
.x59_c01317{left:241.920000px;}
.x32_c01317{left:251.280000px;}
.x49_c01317{left:252.720000px;}
.x21_c01317{left:262.080000px;}
.x50_c01317{left:275.040000px;}
.x10_c01317{left:283.680000px;}
.x33_c01317{left:285.840000px;}
.x18_c01317{left:295.200000px;}
.x38_c01317{left:306.000000px;}
.x55_c01317{left:315.360000px;}
.x22_c01317{left:316.800000px;}
.x7_c01317{left:326.880000px;}
.x2d_c01317{left:336.960000px;}
.x3e_c01317{left:349.200000px;}
.x11_c01317{left:357.840000px;}
.x2e_c01317{left:359.280000px;}
.x8_c01317{left:370.080000px;}
.x5c_c01317{left:371.520000px;}
.x23_c01317{left:380.880000px;}
.x56_c01317{left:382.320000px;}
.x19_c01317{left:391.680000px;}
.x3b_c01317{left:401.760000px;}
.x24_c01317{left:413.280000px;}
.x1a_c01317{left:423.360000px;}
.x2f_c01317{left:433.440000px;}
.x39_c01317{left:444.960000px;}
.x44_c01317{left:454.320000px;}
.x12_c01317{left:455.760000px;}
.x9_c01317{left:457.200000px;}
.x51_c01317{left:464.400000px;}
.x1b_c01317{left:466.560000px;}
.x29_c01317{left:468.000000px;}
.x34_c01317{left:477.360000px;}
.x3a_c01317{left:486.720000px;}
.xa_c01317{left:498.960000px;}
.x2a_c01317{left:508.320000px;}
.x35_c01317{left:509.760000px;}
.x4c_c01317{left:518.400000px;}
.x25_c01317{left:520.560000px;}
.x52_c01317{left:529.920000px;}
.x13_c01317{left:531.360000px;}
.x5d_c01317{left:540.000000px;}
.x3c_c01317{left:541.440000px;}
.x1c_c01317{left:553.680000px;}
.x4a_c01317{left:562.320000px;}
.x36_c01317{left:563.760000px;}
.x41_c01317{left:573.840000px;}
.x4d_c01317{left:583.920000px;}
.x1d_c01317{left:585.360000px;}
.x57_c01317{left:594.720000px;}
.xb_c01317{left:596.160000px;}
.x14_c01317{left:606.960000px;}
.x2b_c01317{left:618.480000px;}
.x45_c01317{left:628.560000px;}
.xc_c01317{left:639.360000px;}
.x1_c01317{left:641.520000px;}
.x4b_c01317{left:648.720000px;}
.x37_c01317{left:651.600000px;}
.x2_c01317{left:663.840000px;}
.x3_c01317{left:682.560000px;}
@media print{
.v0_c01317{vertical-align:0.000000pt;}
.ls0_c01317{letter-spacing:0.000000pt;}
.ws0_c01317{word-spacing:0.000000pt;}
.fse_c01317{font-size:28.160000pt;}
.fs6_c01317{font-size:30.720000pt;}
.fsc_c01317{font-size:33.280000pt;}
.fs8_c01317{font-size:38.400000pt;}
.fs9_c01317{font-size:40.960000pt;}
.fs3_c01317{font-size:43.520000pt;}
.fs5_c01317{font-size:46.080000pt;}
.fsb_c01317{font-size:48.640000pt;}
.fs4_c01317{font-size:51.200000pt;}
.fs2_c01317{font-size:53.760000pt;}
.fsa_c01317{font-size:56.320000pt;}
.fs7_c01317{font-size:58.880000pt;}
.fsd_c01317{font-size:61.440000pt;}
.fs1_c01317{font-size:64.000000pt;}
.fs0_c01317{font-size:76.800000pt;}
.y0_c01317{bottom:0.000000pt;}
.y79_c01317{bottom:27.520000pt;}
.y7a_c01317{bottom:28.160000pt;}
.y78_c01317{bottom:28.800000pt;}
.y77_c01317{bottom:29.440000pt;}
.y76_c01317{bottom:30.080000pt;}
.y7c_c01317{bottom:30.720000pt;}
.y75_c01317{bottom:31.360000pt;}
.y7b_c01317{bottom:32.000000pt;}
.y71_c01317{bottom:65.280000pt;}
.y70_c01317{bottom:67.840000pt;}
.y6f_c01317{bottom:68.480000pt;}
.y72_c01317{bottom:69.120000pt;}
.y73_c01317{bottom:69.760000pt;}
.y74_c01317{bottom:71.040000pt;}
.y6a_c01317{bottom:103.680000pt;}
.y69_c01317{bottom:104.960000pt;}
.y68_c01317{bottom:105.600000pt;}
.y6b_c01317{bottom:106.880000pt;}
.y6c_c01317{bottom:107.520000pt;}
.y6d_c01317{bottom:108.160000pt;}
.y6e_c01317{bottom:108.800000pt;}
.y65_c01317{bottom:144.000000pt;}
.y66_c01317{bottom:144.640000pt;}
.y67_c01317{bottom:145.920000pt;}
.y60_c01317{bottom:199.680000pt;}
.y62_c01317{bottom:200.320000pt;}
.y63_c01317{bottom:200.960000pt;}
.y61_c01317{bottom:201.600000pt;}
.y64_c01317{bottom:202.240000pt;}
.y5f_c01317{bottom:203.520000pt;}
.y59_c01317{bottom:236.800000pt;}
.y58_c01317{bottom:237.440000pt;}
.y5a_c01317{bottom:238.080000pt;}
.y5e_c01317{bottom:238.720000pt;}
.y5c_c01317{bottom:239.360000pt;}
.y57_c01317{bottom:240.000000pt;}
.y5b_c01317{bottom:240.640000pt;}
.y5d_c01317{bottom:241.280000pt;}
.y56_c01317{bottom:241.920000pt;}
.y50_c01317{bottom:275.200000pt;}
.y52_c01317{bottom:275.840000pt;}
.y55_c01317{bottom:276.480000pt;}
.y4f_c01317{bottom:277.760000pt;}
.y51_c01317{bottom:278.400000pt;}
.y54_c01317{bottom:279.040000pt;}
.y53_c01317{bottom:279.680000pt;}
.y4d_c01317{bottom:323.840000pt;}
.y4e_c01317{bottom:325.760000pt;}
.y4c_c01317{bottom:327.040000pt;}
.y47_c01317{bottom:363.520000pt;}
.y49_c01317{bottom:364.160000pt;}
.y48_c01317{bottom:364.800000pt;}
.y4a_c01317{bottom:365.440000pt;}
.y4b_c01317{bottom:366.080000pt;}
.y44_c01317{bottom:400.640000pt;}
.y45_c01317{bottom:401.280000pt;}
.y43_c01317{bottom:402.560000pt;}
.y42_c01317{bottom:403.200000pt;}
.y46_c01317{bottom:403.840000pt;}
.y3f_c01317{bottom:439.040000pt;}
.y41_c01317{bottom:439.680000pt;}
.y40_c01317{bottom:440.960000pt;}
.y3e_c01317{bottom:441.600000pt;}
.y3d_c01317{bottom:477.440000pt;}
.y3b_c01317{bottom:479.360000pt;}
.y3c_c01317{bottom:480.000000pt;}
.y39_c01317{bottom:514.560000pt;}
.y37_c01317{bottom:517.120000pt;}
.y38_c01317{bottom:517.760000pt;}
.y3a_c01317{bottom:518.400000pt;}
.y35_c01317{bottom:553.600000pt;}
.y34_c01317{bottom:555.520000pt;}
.y36_c01317{bottom:556.160000pt;}
.y30_c01317{bottom:600.320000pt;}
.y31_c01317{bottom:600.960000pt;}
.y33_c01317{bottom:602.880000pt;}
.y32_c01317{bottom:603.520000pt;}
.y2d_c01317{bottom:639.360000pt;}
.y2b_c01317{bottom:640.000000pt;}
.y2f_c01317{bottom:640.640000pt;}
.y2e_c01317{bottom:641.280000pt;}
.y2c_c01317{bottom:641.920000pt;}
.y27_c01317{bottom:676.480000pt;}
.y29_c01317{bottom:677.120000pt;}
.y28_c01317{bottom:677.760000pt;}
.y2a_c01317{bottom:679.040000pt;}
.y26_c01317{bottom:679.680000pt;}
.y25_c01317{bottom:680.320000pt;}
.y1f_c01317{bottom:723.840000pt;}
.y22_c01317{bottom:724.480000pt;}
.y23_c01317{bottom:725.120000pt;}
.y24_c01317{bottom:725.760000pt;}
.y20_c01317{bottom:727.040000pt;}
.y21_c01317{bottom:727.680000pt;}
.y1c_c01317{bottom:761.600000pt;}
.y1d_c01317{bottom:762.240000pt;}
.y19_c01317{bottom:764.160000pt;}
.y1e_c01317{bottom:764.800000pt;}
.y1a_c01317{bottom:765.440000pt;}
.y1b_c01317{bottom:766.080000pt;}
.y18_c01317{bottom:800.000000pt;}
.y12_c01317{bottom:800.640000pt;}
.y15_c01317{bottom:801.280000pt;}
.y13_c01317{bottom:801.920000pt;}
.y17_c01317{bottom:802.560000pt;}
.y16_c01317{bottom:803.200000pt;}
.y14_c01317{bottom:804.480000pt;}
.yc_c01317{bottom:838.400000pt;}
.yd_c01317{bottom:839.040000pt;}
.yf_c01317{bottom:839.680000pt;}
.y10_c01317{bottom:840.960000pt;}
.y11_c01317{bottom:841.600000pt;}
.ye_c01317{bottom:842.240000pt;}
.yb_c01317{bottom:875.520000pt;}
.y6_c01317{bottom:876.160000pt;}
.y8_c01317{bottom:878.080000pt;}
.ya_c01317{bottom:878.720000pt;}
.y9_c01317{bottom:879.360000pt;}
.y7_c01317{bottom:880.000000pt;}
.y4_c01317{bottom:917.760000pt;}
.y5_c01317{bottom:918.400000pt;}
.y3_c01317{bottom:919.040000pt;}
.y1_c01317{bottom:951.680000pt;}
.y2_c01317{bottom:953.600000pt;}
.h10_c01317{height:25.341250pt;}
.h8_c01317{height:27.645000pt;}
.he_c01317{height:29.948750pt;}
.ha_c01317{height:34.556250pt;}
.hb_c01317{height:36.860000pt;}
.h5_c01317{height:39.163750pt;}
.h7_c01317{height:41.467500pt;}
.hd_c01317{height:43.771250pt;}
.h6_c01317{height:46.075000pt;}
.h4_c01317{height:48.378750pt;}
.hc_c01317{height:50.682500pt;}
.h9_c01317{height:52.986250pt;}
.hf_c01317{height:55.290000pt;}
.h3_c01317{height:57.593750pt;}
.h2_c01317{height:69.112500pt;}
.h0_c01317{height:1013.760000pt;}
.h1_c01317{height:1014.000000pt;}
.w0_c01317{width:656.000000pt;}
.x0_c01317{left:0.000000pt;}
.xd_c01317{left:24.960000pt;}
.x3d_c01317{left:26.240000pt;}
.x4e_c01317{left:27.520000pt;}
.x58_c01317{left:28.800000pt;}
.x3f_c01317{left:52.480000pt;}
.x46_c01317{left:61.440000pt;}
.x26_c01317{left:69.760000pt;}
.x5a_c01317{left:71.040000pt;}
.x15_c01317{left:78.720000pt;}
.x4f_c01317{left:80.640000pt;}
.xe_c01317{left:88.960000pt;}
.x1e_c01317{left:98.560000pt;}
.x2c_c01317{left:108.160000pt;}
.x48_c01317{left:109.440000pt;}
.x4_c01317{left:117.120000pt;}
.x30_c01317{left:118.400000pt;}
.x1f_c01317{left:126.720000pt;}
.x47_c01317{left:128.640000pt;}
.x27_c01317{left:136.320000pt;}
.x42_c01317{left:137.600000pt;}
.x5_c01317{left:145.920000pt;}
.x40_c01317{left:147.200000pt;}
.x54_c01317{left:148.480000pt;}
.x43_c01317{left:156.800000pt;}
.xf_c01317{left:166.400000pt;}
.x53_c01317{left:168.320000pt;}
.x16_c01317{left:175.360000pt;}
.x28_c01317{left:176.640000pt;}
.x6_c01317{left:185.600000pt;}
.x20_c01317{left:194.560000pt;}
.x31_c01317{left:195.840000pt;}
.x5b_c01317{left:205.440000pt;}
.x17_c01317{left:213.760000pt;}
.x59_c01317{left:215.040000pt;}
.x32_c01317{left:223.360000pt;}
.x49_c01317{left:224.640000pt;}
.x21_c01317{left:232.960000pt;}
.x50_c01317{left:244.480000pt;}
.x10_c01317{left:252.160000pt;}
.x33_c01317{left:254.080000pt;}
.x18_c01317{left:262.400000pt;}
.x38_c01317{left:272.000000pt;}
.x55_c01317{left:280.320000pt;}
.x22_c01317{left:281.600000pt;}
.x7_c01317{left:290.560000pt;}
.x2d_c01317{left:299.520000pt;}
.x3e_c01317{left:310.400000pt;}
.x11_c01317{left:318.080000pt;}
.x2e_c01317{left:319.360000pt;}
.x8_c01317{left:328.960000pt;}
.x5c_c01317{left:330.240000pt;}
.x23_c01317{left:338.560000pt;}
.x56_c01317{left:339.840000pt;}
.x19_c01317{left:348.160000pt;}
.x3b_c01317{left:357.120000pt;}
.x24_c01317{left:367.360000pt;}
.x1a_c01317{left:376.320000pt;}
.x2f_c01317{left:385.280000pt;}
.x39_c01317{left:395.520000pt;}
.x44_c01317{left:403.840000pt;}
.x12_c01317{left:405.120000pt;}
.x9_c01317{left:406.400000pt;}
.x51_c01317{left:412.800000pt;}
.x1b_c01317{left:414.720000pt;}
.x29_c01317{left:416.000000pt;}
.x34_c01317{left:424.320000pt;}
.x3a_c01317{left:432.640000pt;}
.xa_c01317{left:443.520000pt;}
.x2a_c01317{left:451.840000pt;}
.x35_c01317{left:453.120000pt;}
.x4c_c01317{left:460.800000pt;}
.x25_c01317{left:462.720000pt;}
.x52_c01317{left:471.040000pt;}
.x13_c01317{left:472.320000pt;}
.x5d_c01317{left:480.000000pt;}
.x3c_c01317{left:481.280000pt;}
.x1c_c01317{left:492.160000pt;}
.x4a_c01317{left:499.840000pt;}
.x36_c01317{left:501.120000pt;}
.x41_c01317{left:510.080000pt;}
.x4d_c01317{left:519.040000pt;}
.x1d_c01317{left:520.320000pt;}
.x57_c01317{left:528.640000pt;}
.xb_c01317{left:529.920000pt;}
.x14_c01317{left:539.520000pt;}
.x2b_c01317{left:549.760000pt;}
.x45_c01317{left:558.720000pt;}
.xc_c01317{left:568.320000pt;}
.x1_c01317{left:570.240000pt;}
.x4b_c01317{left:576.640000pt;}
.x37_c01317{left:579.200000pt;}
.x2_c01317{left:590.080000pt;}
.x3_c01317{left:606.720000pt;}
}





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

.ir_c01318:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01318{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01318;src:url('chunks/assets/font_08df5d835e05cc141ef77c6b.woff2')format("woff");}.ff1_c01318{font-family:ff1_c01318;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m30_c01318{transform:matrix(0.184600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184600,0.000000,0.000000,0.250000,0,0);}
.m13_c01318{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);}
.m34_c01318{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.me_c01318{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);}
.m4c_c01318{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01318{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_c01318{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m36_c01318{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m10_c01318{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1_c01318{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m52_c01318{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m58_c01318{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01318{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m48_c01318{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01318{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01318{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);}
.m45_c01318{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m28_c01318{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m18_c01318{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m21_c01318{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);}
.m3b_c01318{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m51_c01318{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01318{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m20_c01318{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);}
.m37_c01318{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m31_c01318{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m6_c01318{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m29_c01318{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01318{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m0_c01318{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);}
.m4e_c01318{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);}
.m50_c01318{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m46_c01318{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_c01318{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m19_c01318{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);}
.m8_c01318{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);}
.m26_c01318{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01318{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m2_c01318{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m47_c01318{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m5_c01318{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);}
.m4f_c01318{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01318{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m57_c01318{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m4d_c01318{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m14_c01318{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);}
.m53_c01318{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01318{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.ma_c01318{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);}
.m3_c01318{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01318{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);}
.m2e_c01318{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01318{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01318{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.mc_c01318{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);}
.m2c_c01318{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m39_c01318{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m22_c01318{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.mf_c01318{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m38_c01318{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m43_c01318{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m41_c01318{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);}
.m9_c01318{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);}
.m3e_c01318{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m44_c01318{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);}
.m55_c01318{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m23_c01318{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m35_c01318{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m32_c01318{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);}
.m42_c01318{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m56_c01318{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m25_c01318{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);}
.m54_c01318{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m49_c01318{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m11_c01318{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);}
.m33_c01318{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m7_c01318{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01318{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.mb_c01318{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m17_c01318{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m12_c01318{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m27_c01318{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01318{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);}
.m4_c01318{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);}
.m16_c01318{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m40_c01318{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01318{transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);}
.m24_c01318{transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01318{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.m59_c01318{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_c01318{vertical-align:0.000000px;}
.v1_c01318{vertical-align:11.520000px;}
.ls0_c01318{letter-spacing:0.000000px;}
.sc__c01318{text-shadow:none;}
.sc0_c01318{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01318{-webkit-text-stroke:0px transparent;}
.sc0_c01318{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01318{word-spacing:-4.857120px;}
.ws1_c01318{word-spacing:0.000000px;}
.fc0_c01318{color:transparent;}
.fs5_c01318{font-size:34.560000px;}
.fs9_c01318{font-size:37.440000px;}
.fs7_c01318{font-size:43.200000px;}
.fs2_c01318{font-size:46.080000px;}
.fs3_c01318{font-size:48.960000px;}
.fs4_c01318{font-size:51.840000px;}
.fs1_c01318{font-size:54.720000px;}
.fsc_c01318{font-size:57.600000px;}
.fs6_c01318{font-size:60.480000px;}
.fsa_c01318{font-size:63.360000px;}
.fsb_c01318{font-size:69.120000px;}
.fs0_c01318{font-size:72.000000px;}
.fs8_c01318{font-size:77.760000px;}
.fsd_c01318{font-size:97.920000px;}
.y0_c01318{bottom:0.000000px;}
.y77_c01318{bottom:22.320000px;}
.y76_c01318{bottom:23.040000px;}
.y7a_c01318{bottom:25.200000px;}
.y78_c01318{bottom:25.920000px;}
.y79_c01318{bottom:27.360000px;}
.y70_c01318{bottom:66.240000px;}
.y6f_c01318{bottom:66.960000px;}
.y73_c01318{bottom:67.680000px;}
.y71_c01318{bottom:68.400000px;}
.y72_c01318{bottom:69.120000px;}
.y75_c01318{bottom:69.840000px;}
.y74_c01318{bottom:70.560000px;}
.y6d_c01318{bottom:110.880000px;}
.y6c_c01318{bottom:111.600000px;}
.y6b_c01318{bottom:112.320000px;}
.y6a_c01318{bottom:113.040000px;}
.y6e_c01318{bottom:113.760000px;}
.y69_c01318{bottom:114.480000px;}
.y68_c01318{bottom:115.920000px;}
.y64_c01318{bottom:152.640000px;}
.y66_c01318{bottom:154.080000px;}
.y63_c01318{bottom:155.520000px;}
.y65_c01318{bottom:156.240000px;}
.y67_c01318{bottom:157.680000px;}
.y62_c01318{bottom:209.520000px;}
.y60_c01318{bottom:251.280000px;}
.y5f_c01318{bottom:252.720000px;}
.y5e_c01318{bottom:253.440000px;}
.y61_c01318{bottom:254.160000px;}
.y5d_c01318{bottom:254.880000px;}
.y5a_c01318{bottom:293.040000px;}
.y5b_c01318{bottom:295.920000px;}
.y59_c01318{bottom:296.640000px;}
.y5c_c01318{bottom:297.360000px;}
.y57_c01318{bottom:336.240000px;}
.y58_c01318{bottom:336.960000px;}
.y55_c01318{bottom:337.680000px;}
.y56_c01318{bottom:339.120000px;}
.y54_c01318{bottom:380.160000px;}
.y50_c01318{bottom:380.880000px;}
.y53_c01318{bottom:381.600000px;}
.y52_c01318{bottom:382.320000px;}
.y51_c01318{bottom:383.040000px;}
.y4d_c01318{bottom:421.200000px;}
.y4f_c01318{bottom:421.920000px;}
.y4a_c01318{bottom:422.640000px;}
.y4b_c01318{bottom:423.360000px;}
.y4e_c01318{bottom:424.800000px;}
.y4c_c01318{bottom:425.520000px;}
.y49_c01318{bottom:465.840000px;}
.y48_c01318{bottom:467.280000px;}
.y47_c01318{bottom:468.000000px;}
.y46_c01318{bottom:468.720000px;}
.y45_c01318{bottom:507.600000px;}
.y43_c01318{bottom:508.320000px;}
.y42_c01318{bottom:510.480000px;}
.y44_c01318{bottom:511.200000px;}
.y41_c01318{bottom:511.920000px;}
.y3f_c01318{bottom:550.800000px;}
.y3e_c01318{bottom:551.520000px;}
.y40_c01318{bottom:552.960000px;}
.y3d_c01318{bottom:553.680000px;}
.y3c_c01318{bottom:554.400000px;}
.y3b_c01318{bottom:594.720000px;}
.y3a_c01318{bottom:596.880000px;}
.y39_c01318{bottom:597.600000px;}
.y35_c01318{bottom:648.000000px;}
.y38_c01318{bottom:650.160000px;}
.y37_c01318{bottom:650.880000px;}
.y36_c01318{bottom:651.600000px;}
.y34_c01318{bottom:690.480000px;}
.y33_c01318{bottom:691.200000px;}
.y31_c01318{bottom:693.360000px;}
.y32_c01318{bottom:694.080000px;}
.y2f_c01318{bottom:733.680000px;}
.y2d_c01318{bottom:734.400000px;}
.y30_c01318{bottom:735.840000px;}
.y2c_c01318{bottom:736.560000px;}
.y2e_c01318{bottom:737.280000px;}
.y29_c01318{bottom:767.520000px;}
.y2a_c01318{bottom:776.880000px;}
.y28_c01318{bottom:777.600000px;}
.y2b_c01318{bottom:779.040000px;}
.y26_c01318{bottom:779.760000px;}
.y27_c01318{bottom:780.480000px;}
.y25_c01318{bottom:791.280000px;}
.y22_c01318{bottom:819.360000px;}
.y21_c01318{bottom:820.800000px;}
.y24_c01318{bottom:821.520000px;}
.y23_c01318{bottom:822.240000px;}
.y1f_c01318{bottom:822.960000px;}
.y20_c01318{bottom:823.680000px;}
.y1c_c01318{bottom:864.000000px;}
.y1e_c01318{bottom:865.440000px;}
.y1d_c01318{bottom:866.160000px;}
.y1b_c01318{bottom:866.880000px;}
.y1a_c01318{bottom:919.440000px;}
.y13_c01318{bottom:958.320000px;}
.y17_c01318{bottom:959.040000px;}
.y18_c01318{bottom:959.760000px;}
.y15_c01318{bottom:960.480000px;}
.y19_c01318{bottom:961.200000px;}
.y14_c01318{bottom:962.640000px;}
.y16_c01318{bottom:963.360000px;}
.y10_c01318{bottom:997.920000px;}
.ya_c01318{bottom:1000.800000px;}
.y11_c01318{bottom:1001.520000px;}
.yb_c01318{bottom:1002.240000px;}
.yd_c01318{bottom:1002.960000px;}
.y12_c01318{bottom:1003.680000px;}
.ye_c01318{bottom:1004.400000px;}
.yf_c01318{bottom:1005.120000px;}
.yc_c01318{bottom:1006.560000px;}
.y7_c01318{bottom:1043.280000px;}
.y2_c01318{bottom:1044.720000px;}
.y3_c01318{bottom:1045.440000px;}
.y9_c01318{bottom:1046.160000px;}
.y8_c01318{bottom:1046.880000px;}
.y6_c01318{bottom:1047.600000px;}
.y4_c01318{bottom:1048.320000px;}
.y5_c01318{bottom:1049.040000px;}
.y1_c01318{bottom:1097.280000px;}
.h7_c01318{height:31.100625px;}
.hb_c01318{height:33.692344px;}
.h9_c01318{height:38.875781px;}
.h4_c01318{height:41.467500px;}
.h5_c01318{height:44.059219px;}
.h6_c01318{height:46.650937px;}
.h3_c01318{height:49.242656px;}
.he_c01318{height:51.834375px;}
.h8_c01318{height:54.426094px;}
.hc_c01318{height:57.017812px;}
.hd_c01318{height:62.201250px;}
.h2_c01318{height:64.792969px;}
.ha_c01318{height:69.976406px;}
.hf_c01318{height:88.118437px;}
.h1_c01318{height:1151.250000px;}
.h0_c01318{height:1151.280000px;}
.w0_c01318{width:745.200000px;}
.w1_c01318{width:745.500000px;}
.x0_c01318{left:0.000000px;}
.x2_c01318{left:34.560000px;}
.x48_c01318{left:36.720000px;}
.x44_c01318{left:54.720000px;}
.x24_c01318{left:64.800000px;}
.x57_c01318{left:66.240000px;}
.x3_c01318{left:75.600000px;}
.xe_c01318{left:87.120000px;}
.x25_c01318{left:97.200000px;}
.x2b_c01318{left:107.280000px;}
.x37_c01318{left:117.360000px;}
.x4_c01318{left:118.800000px;}
.x4b_c01318{left:128.160000px;}
.x26_c01318{left:129.600000px;}
.xf_c01318{left:141.120000px;}
.x4c_c01318{left:149.760000px;}
.x49_c01318{left:151.200000px;}
.x10_c01318{left:162.000000px;}
.x21_c01318{left:172.800000px;}
.x5_c01318{left:183.600000px;}
.x11_c01318{left:185.040000px;}
.x4d_c01318{left:192.960000px;}
.x32_c01318{left:194.400000px;}
.x3c_c01318{left:204.480000px;}
.x12_c01318{left:205.920000px;}
.x1b_c01318{left:216.000000px;}
.x6_c01318{left:217.440000px;}
.x5e_c01318{left:224.640000px;}
.x2c_c01318{left:226.800000px;}
.x13_c01318{left:237.600000px;}
.x4a_c01318{left:246.960000px;}
.x3f_c01318{left:248.400000px;}
.x3d_c01318{left:259.200000px;}
.x14_c01318{left:270.000000px;}
.x4e_c01318{left:280.080000px;}
.x40_c01318{left:291.600000px;}
.x27_c01318{left:302.400000px;}
.x7_c01318{left:314.640000px;}
.x5a_c01318{left:323.280000px;}
.x28_c01318{left:324.720000px;}
.x15_c01318{left:334.800000px;}
.x8_c01318{left:345.600000px;}
.x5b_c01318{left:355.680000px;}
.x1c_c01318{left:367.200000px;}
.x58_c01318{left:375.840000px;}
.x41_c01318{left:377.280000px;}
.x22_c01318{left:378.720000px;}
.x4f_c01318{left:388.800000px;}
.x9_c01318{left:390.240000px;}
.x5c_c01318{left:398.160000px;}
.x16_c01318{left:400.320000px;}
.x33_c01318{left:408.960000px;}
.x1d_c01318{left:410.400000px;}
.x54_c01318{left:419.760000px;}
.x2d_c01318{left:421.200000px;}
.xa_c01318{left:422.640000px;}
.x38_c01318{left:431.280000px;}
.x5f_c01318{left:441.360000px;}
.x56_c01318{left:442.800000px;}
.x3e_c01318{left:452.160000px;}
.x17_c01318{left:453.600000px;}
.x2e_c01318{left:464.400000px;}
.x5d_c01318{left:473.760000px;}
.x29_c01318{left:475.200000px;}
.x18_c01318{left:486.720000px;}
.x42_c01318{left:495.360000px;}
.x1e_c01318{left:496.800000px;}
.x55_c01318{left:505.440000px;}
.xb_c01318{left:507.600000px;}
.x50_c01318{left:516.240000px;}
.x23_c01318{left:518.400000px;}
.x43_c01318{left:527.040000px;}
.x45_c01318{left:538.560000px;}
.x2f_c01318{left:540.000000px;}
.x51_c01318{left:548.640000px;}
.xc_c01318{left:551.520000px;}
.x34_c01318{left:560.880000px;}
.x46_c01318{left:570.240000px;}
.x30_c01318{left:572.400000px;}
.x19_c01318{left:573.840000px;}
.x39_c01318{left:582.480000px;}
.x35_c01318{left:592.560000px;}
.x2a_c01318{left:594.000000px;}
.x52_c01318{left:603.360000px;}
.x1a_c01318{left:604.800000px;}
.x47_c01318{left:613.440000px;}
.x3a_c01318{left:614.880000px;}
.xd_c01318{left:616.320000px;}
.x59_c01318{left:624.240000px;}
.x53_c01318{left:635.040000px;}
.x1f_c01318{left:637.200000px;}
.x3b_c01318{left:648.000000px;}
.x1_c01318{left:651.600000px;}
.x36_c01318{left:658.080000px;}
.x20_c01318{left:660.240000px;}
.x31_c01318{left:669.600000px;}
@media print{
.v0_c01318{vertical-align:0.000000pt;}
.v1_c01318{vertical-align:10.240000pt;}
.ls0_c01318{letter-spacing:0.000000pt;}
.ws0_c01318{word-spacing:-4.317440pt;}
.ws1_c01318{word-spacing:0.000000pt;}
.fs5_c01318{font-size:30.720000pt;}
.fs9_c01318{font-size:33.280000pt;}
.fs7_c01318{font-size:38.400000pt;}
.fs2_c01318{font-size:40.960000pt;}
.fs3_c01318{font-size:43.520000pt;}
.fs4_c01318{font-size:46.080000pt;}
.fs1_c01318{font-size:48.640000pt;}
.fsc_c01318{font-size:51.200000pt;}
.fs6_c01318{font-size:53.760000pt;}
.fsa_c01318{font-size:56.320000pt;}
.fsb_c01318{font-size:61.440000pt;}
.fs0_c01318{font-size:64.000000pt;}
.fs8_c01318{font-size:69.120000pt;}
.fsd_c01318{font-size:87.040000pt;}
.y0_c01318{bottom:0.000000pt;}
.y77_c01318{bottom:19.840000pt;}
.y76_c01318{bottom:20.480000pt;}
.y7a_c01318{bottom:22.400000pt;}
.y78_c01318{bottom:23.040000pt;}
.y79_c01318{bottom:24.320000pt;}
.y70_c01318{bottom:58.880000pt;}
.y6f_c01318{bottom:59.520000pt;}
.y73_c01318{bottom:60.160000pt;}
.y71_c01318{bottom:60.800000pt;}
.y72_c01318{bottom:61.440000pt;}
.y75_c01318{bottom:62.080000pt;}
.y74_c01318{bottom:62.720000pt;}
.y6d_c01318{bottom:98.560000pt;}
.y6c_c01318{bottom:99.200000pt;}
.y6b_c01318{bottom:99.840000pt;}
.y6a_c01318{bottom:100.480000pt;}
.y6e_c01318{bottom:101.120000pt;}
.y69_c01318{bottom:101.760000pt;}
.y68_c01318{bottom:103.040000pt;}
.y64_c01318{bottom:135.680000pt;}
.y66_c01318{bottom:136.960000pt;}
.y63_c01318{bottom:138.240000pt;}
.y65_c01318{bottom:138.880000pt;}
.y67_c01318{bottom:140.160000pt;}
.y62_c01318{bottom:186.240000pt;}
.y60_c01318{bottom:223.360000pt;}
.y5f_c01318{bottom:224.640000pt;}
.y5e_c01318{bottom:225.280000pt;}
.y61_c01318{bottom:225.920000pt;}
.y5d_c01318{bottom:226.560000pt;}
.y5a_c01318{bottom:260.480000pt;}
.y5b_c01318{bottom:263.040000pt;}
.y59_c01318{bottom:263.680000pt;}
.y5c_c01318{bottom:264.320000pt;}
.y57_c01318{bottom:298.880000pt;}
.y58_c01318{bottom:299.520000pt;}
.y55_c01318{bottom:300.160000pt;}
.y56_c01318{bottom:301.440000pt;}
.y54_c01318{bottom:337.920000pt;}
.y50_c01318{bottom:338.560000pt;}
.y53_c01318{bottom:339.200000pt;}
.y52_c01318{bottom:339.840000pt;}
.y51_c01318{bottom:340.480000pt;}
.y4d_c01318{bottom:374.400000pt;}
.y4f_c01318{bottom:375.040000pt;}
.y4a_c01318{bottom:375.680000pt;}
.y4b_c01318{bottom:376.320000pt;}
.y4e_c01318{bottom:377.600000pt;}
.y4c_c01318{bottom:378.240000pt;}
.y49_c01318{bottom:414.080000pt;}
.y48_c01318{bottom:415.360000pt;}
.y47_c01318{bottom:416.000000pt;}
.y46_c01318{bottom:416.640000pt;}
.y45_c01318{bottom:451.200000pt;}
.y43_c01318{bottom:451.840000pt;}
.y42_c01318{bottom:453.760000pt;}
.y44_c01318{bottom:454.400000pt;}
.y41_c01318{bottom:455.040000pt;}
.y3f_c01318{bottom:489.600000pt;}
.y3e_c01318{bottom:490.240000pt;}
.y40_c01318{bottom:491.520000pt;}
.y3d_c01318{bottom:492.160000pt;}
.y3c_c01318{bottom:492.800000pt;}
.y3b_c01318{bottom:528.640000pt;}
.y3a_c01318{bottom:530.560000pt;}
.y39_c01318{bottom:531.200000pt;}
.y35_c01318{bottom:576.000000pt;}
.y38_c01318{bottom:577.920000pt;}
.y37_c01318{bottom:578.560000pt;}
.y36_c01318{bottom:579.200000pt;}
.y34_c01318{bottom:613.760000pt;}
.y33_c01318{bottom:614.400000pt;}
.y31_c01318{bottom:616.320000pt;}
.y32_c01318{bottom:616.960000pt;}
.y2f_c01318{bottom:652.160000pt;}
.y2d_c01318{bottom:652.800000pt;}
.y30_c01318{bottom:654.080000pt;}
.y2c_c01318{bottom:654.720000pt;}
.y2e_c01318{bottom:655.360000pt;}
.y29_c01318{bottom:682.240000pt;}
.y2a_c01318{bottom:690.560000pt;}
.y28_c01318{bottom:691.200000pt;}
.y2b_c01318{bottom:692.480000pt;}
.y26_c01318{bottom:693.120000pt;}
.y27_c01318{bottom:693.760000pt;}
.y25_c01318{bottom:703.360000pt;}
.y22_c01318{bottom:728.320000pt;}
.y21_c01318{bottom:729.600000pt;}
.y24_c01318{bottom:730.240000pt;}
.y23_c01318{bottom:730.880000pt;}
.y1f_c01318{bottom:731.520000pt;}
.y20_c01318{bottom:732.160000pt;}
.y1c_c01318{bottom:768.000000pt;}
.y1e_c01318{bottom:769.280000pt;}
.y1d_c01318{bottom:769.920000pt;}
.y1b_c01318{bottom:770.560000pt;}
.y1a_c01318{bottom:817.280000pt;}
.y13_c01318{bottom:851.840000pt;}
.y17_c01318{bottom:852.480000pt;}
.y18_c01318{bottom:853.120000pt;}
.y15_c01318{bottom:853.760000pt;}
.y19_c01318{bottom:854.400000pt;}
.y14_c01318{bottom:855.680000pt;}
.y16_c01318{bottom:856.320000pt;}
.y10_c01318{bottom:887.040000pt;}
.ya_c01318{bottom:889.600000pt;}
.y11_c01318{bottom:890.240000pt;}
.yb_c01318{bottom:890.880000pt;}
.yd_c01318{bottom:891.520000pt;}
.y12_c01318{bottom:892.160000pt;}
.ye_c01318{bottom:892.800000pt;}
.yf_c01318{bottom:893.440000pt;}
.yc_c01318{bottom:894.720000pt;}
.y7_c01318{bottom:927.360000pt;}
.y2_c01318{bottom:928.640000pt;}
.y3_c01318{bottom:929.280000pt;}
.y9_c01318{bottom:929.920000pt;}
.y8_c01318{bottom:930.560000pt;}
.y6_c01318{bottom:931.200000pt;}
.y4_c01318{bottom:931.840000pt;}
.y5_c01318{bottom:932.480000pt;}
.y1_c01318{bottom:975.360000pt;}
.h7_c01318{height:27.645000pt;}
.hb_c01318{height:29.948750pt;}
.h9_c01318{height:34.556250pt;}
.h4_c01318{height:36.860000pt;}
.h5_c01318{height:39.163750pt;}
.h6_c01318{height:41.467500pt;}
.h3_c01318{height:43.771250pt;}
.he_c01318{height:46.075000pt;}
.h8_c01318{height:48.378750pt;}
.hc_c01318{height:50.682500pt;}
.hd_c01318{height:55.290000pt;}
.h2_c01318{height:57.593750pt;}
.ha_c01318{height:62.201250pt;}
.hf_c01318{height:78.327500pt;}
.h1_c01318{height:1023.333333pt;}
.h0_c01318{height:1023.360000pt;}
.w0_c01318{width:662.400000pt;}
.w1_c01318{width:662.666667pt;}
.x0_c01318{left:0.000000pt;}
.x2_c01318{left:30.720000pt;}
.x48_c01318{left:32.640000pt;}
.x44_c01318{left:48.640000pt;}
.x24_c01318{left:57.600000pt;}
.x57_c01318{left:58.880000pt;}
.x3_c01318{left:67.200000pt;}
.xe_c01318{left:77.440000pt;}
.x25_c01318{left:86.400000pt;}
.x2b_c01318{left:95.360000pt;}
.x37_c01318{left:104.320000pt;}
.x4_c01318{left:105.600000pt;}
.x4b_c01318{left:113.920000pt;}
.x26_c01318{left:115.200000pt;}
.xf_c01318{left:125.440000pt;}
.x4c_c01318{left:133.120000pt;}
.x49_c01318{left:134.400000pt;}
.x10_c01318{left:144.000000pt;}
.x21_c01318{left:153.600000pt;}
.x5_c01318{left:163.200000pt;}
.x11_c01318{left:164.480000pt;}
.x4d_c01318{left:171.520000pt;}
.x32_c01318{left:172.800000pt;}
.x3c_c01318{left:181.760000pt;}
.x12_c01318{left:183.040000pt;}
.x1b_c01318{left:192.000000pt;}
.x6_c01318{left:193.280000pt;}
.x5e_c01318{left:199.680000pt;}
.x2c_c01318{left:201.600000pt;}
.x13_c01318{left:211.200000pt;}
.x4a_c01318{left:219.520000pt;}
.x3f_c01318{left:220.800000pt;}
.x3d_c01318{left:230.400000pt;}
.x14_c01318{left:240.000000pt;}
.x4e_c01318{left:248.960000pt;}
.x40_c01318{left:259.200000pt;}
.x27_c01318{left:268.800000pt;}
.x7_c01318{left:279.680000pt;}
.x5a_c01318{left:287.360000pt;}
.x28_c01318{left:288.640000pt;}
.x15_c01318{left:297.600000pt;}
.x8_c01318{left:307.200000pt;}
.x5b_c01318{left:316.160000pt;}
.x1c_c01318{left:326.400000pt;}
.x58_c01318{left:334.080000pt;}
.x41_c01318{left:335.360000pt;}
.x22_c01318{left:336.640000pt;}
.x4f_c01318{left:345.600000pt;}
.x9_c01318{left:346.880000pt;}
.x5c_c01318{left:353.920000pt;}
.x16_c01318{left:355.840000pt;}
.x33_c01318{left:363.520000pt;}
.x1d_c01318{left:364.800000pt;}
.x54_c01318{left:373.120000pt;}
.x2d_c01318{left:374.400000pt;}
.xa_c01318{left:375.680000pt;}
.x38_c01318{left:383.360000pt;}
.x5f_c01318{left:392.320000pt;}
.x56_c01318{left:393.600000pt;}
.x3e_c01318{left:401.920000pt;}
.x17_c01318{left:403.200000pt;}
.x2e_c01318{left:412.800000pt;}
.x5d_c01318{left:421.120000pt;}
.x29_c01318{left:422.400000pt;}
.x18_c01318{left:432.640000pt;}
.x42_c01318{left:440.320000pt;}
.x1e_c01318{left:441.600000pt;}
.x55_c01318{left:449.280000pt;}
.xb_c01318{left:451.200000pt;}
.x50_c01318{left:458.880000pt;}
.x23_c01318{left:460.800000pt;}
.x43_c01318{left:468.480000pt;}
.x45_c01318{left:478.720000pt;}
.x2f_c01318{left:480.000000pt;}
.x51_c01318{left:487.680000pt;}
.xc_c01318{left:490.240000pt;}
.x34_c01318{left:498.560000pt;}
.x46_c01318{left:506.880000pt;}
.x30_c01318{left:508.800000pt;}
.x19_c01318{left:510.080000pt;}
.x39_c01318{left:517.760000pt;}
.x35_c01318{left:526.720000pt;}
.x2a_c01318{left:528.000000pt;}
.x52_c01318{left:536.320000pt;}
.x1a_c01318{left:537.600000pt;}
.x47_c01318{left:545.280000pt;}
.x3a_c01318{left:546.560000pt;}
.xd_c01318{left:547.840000pt;}
.x59_c01318{left:554.880000pt;}
.x53_c01318{left:564.480000pt;}
.x1f_c01318{left:566.400000pt;}
.x3b_c01318{left:576.000000pt;}
.x1_c01318{left:579.200000pt;}
.x36_c01318{left:584.960000pt;}
.x20_c01318{left:586.880000pt;}
.x31_c01318{left:595.200000pt;}
}





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

.ir_c01319:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01319{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01319;src:url('chunks/assets/font_d78d7f628870530e9caf4fc5.woff2')format("woff");}.ff1_c01319{font-family:ff1_c01319;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m61_c01319{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m69_c01319{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m6b_c01319{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m42_c01319{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m4d_c01319{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);}
.m3d_c01319{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);}
.m6c_c01319{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);}
.m3f_c01319{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);}
.m52_c01319{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);}
.m66_c01319{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);}
.m49_c01319{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);}
.m27_c01319{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m4_c01319{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);}
.m47_c01319{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);}
.m68_c01319{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);}
.m51_c01319{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);}
.m4f_c01319{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m50_c01319{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m38_c01319{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01319{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01319{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01319{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m30_c01319{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m33_c01319{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m5e_c01319{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01319{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01319{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01319{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m63_c01319{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.ma_c01319{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);}
.m65_c01319{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m54_c01319{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m6_c01319{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);}
.m2_c01319{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);}
.m2b_c01319{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.me_c01319{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m64_c01319{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);}
.m5b_c01319{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01319{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01319{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m0_c01319{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m23_c01319{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01319{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m11_c01319{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);}
.m3c_c01319{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);}
.m29_c01319{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_c01319{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);}
.m17_c01319{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01319{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);}
.m35_c01319{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);}
.m15_c01319{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m5_c01319{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m45_c01319{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m1_c01319{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);}
.m56_c01319{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01319{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);}
.m5a_c01319{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m36_c01319{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);}
.mb_c01319{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);}
.m6a_c01319{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m44_c01319{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01319{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m24_c01319{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m39_c01319{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);}
.m25_c01319{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m16_c01319{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);}
.m13_c01319{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m34_c01319{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m18_c01319{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);}
.m26_c01319{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m46_c01319{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m57_c01319{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m43_c01319{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m41_c01319{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01319{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m9_c01319{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);}
.m55_c01319{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);}
.m2e_c01319{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m28_c01319{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m58_c01319{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m5f_c01319{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);}
.m31_c01319{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m5c_c01319{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.md_c01319{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m20_c01319{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_c01319{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01319{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m22_c01319{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);}
.m21_c01319{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);}
.m48_c01319{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m12_c01319{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m3_c01319{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01319{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);}
.m32_c01319{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m14_c01319{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);}
.m10_c01319{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m40_c01319{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01319{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);}
.m7_c01319{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01319{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m37_c01319{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.m59_c01319{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m5d_c01319{transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);}
.m60_c01319{transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);}
.m67_c01319{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.m62_c01319{transform:matrix(0.912500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.912500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.912500,0.000000,0.000000,0.250000,0,0);}
.m53_c01319{transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01319{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01319{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.m6d_c01319{transform:matrix(4.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.480000,0.000000,0.000000,0.250000,0,0);}
.v1_c01319{vertical-align:-2.880000px;}
.v0_c01319{vertical-align:0.000000px;}
.v2_c01319{vertical-align:5.760000px;}
.ls0_c01319{letter-spacing:0.000000px;}
.sc__c01319{text-shadow:none;}
.sc0_c01319{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01319{-webkit-text-stroke:0px transparent;}
.sc0_c01319{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01319{word-spacing:-1.493040px;}
.ws3_c01319{word-spacing:0.000000px;}
.ws1_c01319{word-spacing:76.388400px;}
.ws2_c01319{word-spacing:1781.018880px;}
.fc0_c01319{color:transparent;}
.fs10_c01319{font-size:8.640000px;}
.fse_c01319{font-size:11.520000px;}
.fsf_c01319{font-size:14.400000px;}
.fs11_c01319{font-size:17.280000px;}
.fs12_c01319{font-size:25.920000px;}
.fs4_c01319{font-size:34.560000px;}
.fsd_c01319{font-size:37.440000px;}
.fs5_c01319{font-size:40.320000px;}
.fsa_c01319{font-size:43.200000px;}
.fs8_c01319{font-size:46.080000px;}
.fs1_c01319{font-size:48.960000px;}
.fs0_c01319{font-size:51.840000px;}
.fsb_c01319{font-size:54.720000px;}
.fs3_c01319{font-size:57.600000px;}
.fs7_c01319{font-size:60.480000px;}
.fs6_c01319{font-size:63.360000px;}
.fs2_c01319{font-size:66.240000px;}
.fsc_c01319{font-size:69.120000px;}
.fs9_c01319{font-size:72.000000px;}
.fs13_c01319{font-size:74.880000px;}
.fs14_c01319{font-size:77.760000px;}
.y0_c01319{bottom:0.000000px;}
.y82_c01319{bottom:10.800000px;}
.y83_c01319{bottom:12.960000px;}
.y85_c01319{bottom:13.680000px;}
.y87_c01319{bottom:15.120000px;}
.y84_c01319{bottom:15.840000px;}
.y86_c01319{bottom:17.280000px;}
.y81_c01319{bottom:18.720000px;}
.y7e_c01319{bottom:52.560000px;}
.y7f_c01319{bottom:56.880000px;}
.y80_c01319{bottom:57.600000px;}
.y7d_c01319{bottom:59.760000px;}
.y7a_c01319{bottom:95.040000px;}
.y7c_c01319{bottom:99.360000px;}
.y7b_c01319{bottom:100.080000px;}
.y79_c01319{bottom:102.240000px;}
.y76_c01319{bottom:138.240000px;}
.y77_c01319{bottom:142.560000px;}
.y78_c01319{bottom:145.440000px;}
.y75_c01319{bottom:146.160000px;}
.y73_c01319{bottom:182.160000px;}
.y72_c01319{bottom:183.600000px;}
.y71_c01319{bottom:185.040000px;}
.y74_c01319{bottom:186.480000px;}
.y70_c01319{bottom:188.640000px;}
.y6f_c01319{bottom:190.080000px;}
.y6b_c01319{bottom:230.400000px;}
.y6e_c01319{bottom:231.120000px;}
.y6c_c01319{bottom:231.840000px;}
.y6d_c01319{bottom:232.560000px;}
.y67_c01319{bottom:270.720000px;}
.y68_c01319{bottom:272.160000px;}
.y69_c01319{bottom:272.880000px;}
.y6a_c01319{bottom:273.600000px;}
.y66_c01319{bottom:275.040000px;}
.y60_c01319{bottom:313.200000px;}
.y63_c01319{bottom:313.920000px;}
.y62_c01319{bottom:316.080000px;}
.y61_c01319{bottom:316.800000px;}
.y64_c01319{bottom:317.520000px;}
.y65_c01319{bottom:318.240000px;}
.y5f_c01319{bottom:318.960000px;}
.y5c_c01319{bottom:360.720000px;}
.y5b_c01319{bottom:362.880000px;}
.y5d_c01319{bottom:363.600000px;}
.y5e_c01319{bottom:364.320000px;}
.y5a_c01319{bottom:416.880000px;}
.y58_c01319{bottom:417.600000px;}
.y59_c01319{bottom:421.920000px;}
.y57_c01319{bottom:439.920000px;}
.y53_c01319{bottom:447.120000px;}
.y52_c01319{bottom:447.840000px;}
.y54_c01319{bottom:448.560000px;}
.y50_c01319{bottom:450.000000px;}
.y56_c01319{bottom:450.720000px;}
.y4e_c01319{bottom:451.440000px;}
.y51_c01319{bottom:452.160000px;}
.y55_c01319{bottom:452.880000px;}
.y4f_c01319{bottom:453.600000px;}
.y4d_c01319{bottom:472.320000px;}
.y46_c01319{bottom:479.520000px;}
.y49_c01319{bottom:480.240000px;}
.y47_c01319{bottom:482.400000px;}
.y4a_c01319{bottom:483.120000px;}
.y45_c01319{bottom:483.840000px;}
.y4b_c01319{bottom:484.560000px;}
.y48_c01319{bottom:485.280000px;}
.y4c_c01319{bottom:486.000000px;}
.y42_c01319{bottom:532.800000px;}
.y43_c01319{bottom:533.520000px;}
.y44_c01319{bottom:535.680000px;}
.y41_c01319{bottom:536.400000px;}
.y3d_c01319{bottom:576.720000px;}
.y40_c01319{bottom:577.440000px;}
.y3f_c01319{bottom:578.880000px;}
.y3e_c01319{bottom:579.600000px;}
.y3b_c01319{bottom:617.760000px;}
.y3a_c01319{bottom:618.480000px;}
.y3c_c01319{bottom:619.200000px;}
.y39_c01319{bottom:619.920000px;}
.y38_c01319{bottom:622.080000px;}
.y37_c01319{bottom:662.400000px;}
.y36_c01319{bottom:664.560000px;}
.y35_c01319{bottom:665.280000px;}
.y31_c01319{bottom:715.680000px;}
.y32_c01319{bottom:716.400000px;}
.y33_c01319{bottom:717.120000px;}
.y34_c01319{bottom:717.840000px;}
.y2f_c01319{bottom:758.160000px;}
.y2b_c01319{bottom:758.880000px;}
.y2c_c01319{bottom:759.600000px;}
.y30_c01319{bottom:760.320000px;}
.y2d_c01319{bottom:761.040000px;}
.y2e_c01319{bottom:761.760000px;}
.y29_c01319{bottom:801.360000px;}
.y27_c01319{bottom:803.520000px;}
.y28_c01319{bottom:804.240000px;}
.y2a_c01319{bottom:804.960000px;}
.y25_c01319{bottom:844.560000px;}
.y26_c01319{bottom:846.000000px;}
.y22_c01319{bottom:846.720000px;}
.y24_c01319{bottom:847.440000px;}
.y23_c01319{bottom:848.160000px;}
.y20_c01319{bottom:885.600000px;}
.y1c_c01319{bottom:887.040000px;}
.y1d_c01319{bottom:887.760000px;}
.y21_c01319{bottom:889.200000px;}
.y1e_c01319{bottom:889.920000px;}
.y1f_c01319{bottom:890.640000px;}
.y19_c01319{bottom:928.800000px;}
.y16_c01319{bottom:929.520000px;}
.y17_c01319{bottom:930.240000px;}
.y1b_c01319{bottom:931.680000px;}
.y1a_c01319{bottom:932.400000px;}
.y18_c01319{bottom:933.120000px;}
.y13_c01319{bottom:972.720000px;}
.y11_c01319{bottom:973.440000px;}
.y15_c01319{bottom:974.160000px;}
.y14_c01319{bottom:974.880000px;}
.y12_c01319{bottom:975.600000px;}
.y10_c01319{bottom:976.320000px;}
.yf_c01319{bottom:1013.760000px;}
.ya_c01319{bottom:1015.200000px;}
.yc_c01319{bottom:1015.920000px;}
.yb_c01319{bottom:1016.640000px;}
.y9_c01319{bottom:1018.080000px;}
.ye_c01319{bottom:1018.800000px;}
.yd_c01319{bottom:1019.520000px;}
.y6_c01319{bottom:1057.680000px;}
.y3_c01319{bottom:1059.120000px;}
.y2_c01319{bottom:1059.840000px;}
.y7_c01319{bottom:1060.560000px;}
.y8_c01319{bottom:1061.280000px;}
.y5_c01319{bottom:1062.000000px;}
.y1_c01319{bottom:1062.720000px;}
.y4_c01319{bottom:1063.440000px;}
.h14_c01319{height:7.775156px;}
.h11_c01319{height:10.366875px;}
.h12_c01319{height:12.958594px;}
.h15_c01319{height:15.550313px;}
.h16_c01319{height:23.325469px;}
.h6_c01319{height:31.100625px;}
.h10_c01319{height:33.692344px;}
.h7_c01319{height:36.284062px;}
.hc_c01319{height:38.875781px;}
.ha_c01319{height:41.467500px;}
.h3_c01319{height:44.059219px;}
.h2_c01319{height:46.650937px;}
.hd_c01319{height:49.242656px;}
.h5_c01319{height:51.834375px;}
.h13_c01319{height:52.410937px;}
.h9_c01319{height:54.426094px;}
.h8_c01319{height:57.017812px;}
.h4_c01319{height:59.609531px;}
.he_c01319{height:61.912969px;}
.hf_c01319{height:62.201250px;}
.hb_c01319{height:64.792969px;}
.h17_c01319{height:67.384687px;}
.h18_c01319{height:69.976406px;}
.h1_c01319{height:1164.000000px;}
.h0_c01319{height:1164.240000px;}
.w0_c01319{width:740.880000px;}
.w1_c01319{width:741.000000px;}
.x0_c01319{left:0.000000px;}
.xb_c01319{left:30.960000px;}
.x40_c01319{left:32.400000px;}
.x5e_c01319{left:34.560000px;}
.x64_c01319{left:36.000000px;}
.x5f_c01319{left:43.920000px;}
.x48_c01319{left:51.840000px;}
.xc_c01319{left:61.920000px;}
.x60_c01319{left:71.280000px;}
.x13_c01319{left:72.720000px;}
.x28_c01319{left:83.520000px;}
.x36_c01319{left:92.880000px;}
.x29_c01319{left:104.400000px;}
.x23_c01319{left:115.200000px;}
.x2e_c01319{left:116.640000px;}
.x1e_c01319{left:126.000000px;}
.x1_c01319{left:136.800000px;}
.x4e_c01319{left:138.240000px;}
.x14_c01319{left:147.600000px;}
.x3a_c01319{left:149.040000px;}
.xd_c01319{left:158.400000px;}
.x2_c01319{left:169.200000px;}
.x61_c01319{left:172.080000px;}
.x56_c01319{left:179.280000px;}
.x15_c01319{left:180.720000px;}
.x37_c01319{left:190.080000px;}
.x3b_c01319{left:192.240000px;}
.x44_c01319{left:202.320000px;}
.x32_c01319{left:212.400000px;}
.x38_c01319{left:213.840000px;}
.x3_c01319{left:223.200000px;}
.xe_c01319{left:233.280000px;}
.x62_c01319{left:235.440000px;}
.x2f_c01319{left:244.800000px;}
.x68_c01319{left:247.680000px;}
.x24_c01319{left:257.040000px;}
.x1f_c01319{left:267.840000px;}
.x45_c01319{left:277.200000px;}
.x16_c01319{left:278.640000px;}
.x39_c01319{left:288.720000px;}
.x4f_c01319{left:298.080000px;}
.xf_c01319{left:299.520000px;}
.x17_c01319{left:308.880000px;}
.x41_c01319{left:311.040000px;}
.x57_c01319{left:319.680000px;}
.x4_c01319{left:321.120000px;}
.x66_c01319{left:330.480000px;}
.x3c_c01319{left:332.640000px;}
.x2a_c01319{left:343.440000px;}
.x5_c01319{left:352.080000px;}
.x58_c01319{left:362.880000px;}
.x33_c01319{left:364.320000px;}
.x20_c01319{left:375.120000px;}
.x50_c01319{left:384.480000px;}
.x18_c01319{left:385.920000px;}
.x34_c01319{left:395.280000px;}
.x6_c01319{left:397.440000px;}
.x4b_c01319{left:406.800000px;}
.x19_c01319{left:408.240000px;}
.x10_c01319{left:416.880000px;}
.x25_c01319{left:419.040000px;}
.x51_c01319{left:427.680000px;}
.x49_c01319{left:429.120000px;}
.x3d_c01319{left:438.480000px;}
.x52_c01319{left:460.800000px;}
.x1a_c01319{left:462.240000px;}
.x2b_c01319{left:470.880000px;}
.x3e_c01319{left:473.040000px;}
.x35_c01319{left:481.680000px;}
.x11_c01319{left:483.120000px;}
.x53_c01319{left:491.760000px;}
.x42_c01319{left:493.200000px;}
.x46_c01319{left:513.360000px;}
.x21_c01319{left:514.800000px;}
.x59_c01319{left:523.440000px;}
.x43_c01319{left:524.880000px;}
.x12_c01319{left:527.040000px;}
.x54_c01319{left:535.680000px;}
.x7_c01319{left:537.840000px;}
.x30_c01319{left:546.480000px;}
.x1b_c01319{left:548.640000px;}
.x63_c01319{left:557.280000px;}
.x26_c01319{left:558.720000px;}
.x5a_c01319{left:567.360000px;}
.x8_c01319{left:568.800000px;}
.x31_c01319{left:578.880000px;}
.x1c_c01319{left:581.040000px;}
.x3f_c01319{left:589.680000px;}
.x27_c01319{left:591.120000px;}
.x5b_c01319{left:598.320000px;}
.x4c_c01319{left:599.760000px;}
.x2c_c01319{left:601.920000px;}
.x47_c01319{left:621.360000px;}
.x22_c01319{left:623.520000px;}
.x9_c01319{left:624.960000px;}
.x5c_c01319{left:631.440000px;}
.x2d_c01319{left:633.600000px;}
.x4d_c01319{left:643.680000px;}
.x1d_c01319{left:645.120000px;}
.xa_c01319{left:655.920000px;}
.x4a_c01319{left:665.280000px;}
.x55_c01319{left:675.360000px;}
.x67_c01319{left:677.520000px;}
.x65_c01319{left:696.240000px;}
.x5d_c01319{left:707.040000px;}
@media print{
.v1_c01319{vertical-align:-2.560000pt;}
.v0_c01319{vertical-align:0.000000pt;}
.v2_c01319{vertical-align:5.120000pt;}
.ls0_c01319{letter-spacing:0.000000pt;}
.ws0_c01319{word-spacing:-1.327147pt;}
.ws3_c01319{word-spacing:0.000000pt;}
.ws1_c01319{word-spacing:67.900800pt;}
.ws2_c01319{word-spacing:1583.127893pt;}
.fs10_c01319{font-size:7.680000pt;}
.fse_c01319{font-size:10.240000pt;}
.fsf_c01319{font-size:12.800000pt;}
.fs11_c01319{font-size:15.360000pt;}
.fs12_c01319{font-size:23.040000pt;}
.fs4_c01319{font-size:30.720000pt;}
.fsd_c01319{font-size:33.280000pt;}
.fs5_c01319{font-size:35.840000pt;}
.fsa_c01319{font-size:38.400000pt;}
.fs8_c01319{font-size:40.960000pt;}
.fs1_c01319{font-size:43.520000pt;}
.fs0_c01319{font-size:46.080000pt;}
.fsb_c01319{font-size:48.640000pt;}
.fs3_c01319{font-size:51.200000pt;}
.fs7_c01319{font-size:53.760000pt;}
.fs6_c01319{font-size:56.320000pt;}
.fs2_c01319{font-size:58.880000pt;}
.fsc_c01319{font-size:61.440000pt;}
.fs9_c01319{font-size:64.000000pt;}
.fs13_c01319{font-size:66.560000pt;}
.fs14_c01319{font-size:69.120000pt;}
.y0_c01319{bottom:0.000000pt;}
.y82_c01319{bottom:9.600000pt;}
.y83_c01319{bottom:11.520000pt;}
.y85_c01319{bottom:12.160000pt;}
.y87_c01319{bottom:13.440000pt;}
.y84_c01319{bottom:14.080000pt;}
.y86_c01319{bottom:15.360000pt;}
.y81_c01319{bottom:16.640000pt;}
.y7e_c01319{bottom:46.720000pt;}
.y7f_c01319{bottom:50.560000pt;}
.y80_c01319{bottom:51.200000pt;}
.y7d_c01319{bottom:53.120000pt;}
.y7a_c01319{bottom:84.480000pt;}
.y7c_c01319{bottom:88.320000pt;}
.y7b_c01319{bottom:88.960000pt;}
.y79_c01319{bottom:90.880000pt;}
.y76_c01319{bottom:122.880000pt;}
.y77_c01319{bottom:126.720000pt;}
.y78_c01319{bottom:129.280000pt;}
.y75_c01319{bottom:129.920000pt;}
.y73_c01319{bottom:161.920000pt;}
.y72_c01319{bottom:163.200000pt;}
.y71_c01319{bottom:164.480000pt;}
.y74_c01319{bottom:165.760000pt;}
.y70_c01319{bottom:167.680000pt;}
.y6f_c01319{bottom:168.960000pt;}
.y6b_c01319{bottom:204.800000pt;}
.y6e_c01319{bottom:205.440000pt;}
.y6c_c01319{bottom:206.080000pt;}
.y6d_c01319{bottom:206.720000pt;}
.y67_c01319{bottom:240.640000pt;}
.y68_c01319{bottom:241.920000pt;}
.y69_c01319{bottom:242.560000pt;}
.y6a_c01319{bottom:243.200000pt;}
.y66_c01319{bottom:244.480000pt;}
.y60_c01319{bottom:278.400000pt;}
.y63_c01319{bottom:279.040000pt;}
.y62_c01319{bottom:280.960000pt;}
.y61_c01319{bottom:281.600000pt;}
.y64_c01319{bottom:282.240000pt;}
.y65_c01319{bottom:282.880000pt;}
.y5f_c01319{bottom:283.520000pt;}
.y5c_c01319{bottom:320.640000pt;}
.y5b_c01319{bottom:322.560000pt;}
.y5d_c01319{bottom:323.200000pt;}
.y5e_c01319{bottom:323.840000pt;}
.y5a_c01319{bottom:370.560000pt;}
.y58_c01319{bottom:371.200000pt;}
.y59_c01319{bottom:375.040000pt;}
.y57_c01319{bottom:391.040000pt;}
.y53_c01319{bottom:397.440000pt;}
.y52_c01319{bottom:398.080000pt;}
.y54_c01319{bottom:398.720000pt;}
.y50_c01319{bottom:400.000000pt;}
.y56_c01319{bottom:400.640000pt;}
.y4e_c01319{bottom:401.280000pt;}
.y51_c01319{bottom:401.920000pt;}
.y55_c01319{bottom:402.560000pt;}
.y4f_c01319{bottom:403.200000pt;}
.y4d_c01319{bottom:419.840000pt;}
.y46_c01319{bottom:426.240000pt;}
.y49_c01319{bottom:426.880000pt;}
.y47_c01319{bottom:428.800000pt;}
.y4a_c01319{bottom:429.440000pt;}
.y45_c01319{bottom:430.080000pt;}
.y4b_c01319{bottom:430.720000pt;}
.y48_c01319{bottom:431.360000pt;}
.y4c_c01319{bottom:432.000000pt;}
.y42_c01319{bottom:473.600000pt;}
.y43_c01319{bottom:474.240000pt;}
.y44_c01319{bottom:476.160000pt;}
.y41_c01319{bottom:476.800000pt;}
.y3d_c01319{bottom:512.640000pt;}
.y40_c01319{bottom:513.280000pt;}
.y3f_c01319{bottom:514.560000pt;}
.y3e_c01319{bottom:515.200000pt;}
.y3b_c01319{bottom:549.120000pt;}
.y3a_c01319{bottom:549.760000pt;}
.y3c_c01319{bottom:550.400000pt;}
.y39_c01319{bottom:551.040000pt;}
.y38_c01319{bottom:552.960000pt;}
.y37_c01319{bottom:588.800000pt;}
.y36_c01319{bottom:590.720000pt;}
.y35_c01319{bottom:591.360000pt;}
.y31_c01319{bottom:636.160000pt;}
.y32_c01319{bottom:636.800000pt;}
.y33_c01319{bottom:637.440000pt;}
.y34_c01319{bottom:638.080000pt;}
.y2f_c01319{bottom:673.920000pt;}
.y2b_c01319{bottom:674.560000pt;}
.y2c_c01319{bottom:675.200000pt;}
.y30_c01319{bottom:675.840000pt;}
.y2d_c01319{bottom:676.480000pt;}
.y2e_c01319{bottom:677.120000pt;}
.y29_c01319{bottom:712.320000pt;}
.y27_c01319{bottom:714.240000pt;}
.y28_c01319{bottom:714.880000pt;}
.y2a_c01319{bottom:715.520000pt;}
.y25_c01319{bottom:750.720000pt;}
.y26_c01319{bottom:752.000000pt;}
.y22_c01319{bottom:752.640000pt;}
.y24_c01319{bottom:753.280000pt;}
.y23_c01319{bottom:753.920000pt;}
.y20_c01319{bottom:787.200000pt;}
.y1c_c01319{bottom:788.480000pt;}
.y1d_c01319{bottom:789.120000pt;}
.y21_c01319{bottom:790.400000pt;}
.y1e_c01319{bottom:791.040000pt;}
.y1f_c01319{bottom:791.680000pt;}
.y19_c01319{bottom:825.600000pt;}
.y16_c01319{bottom:826.240000pt;}
.y17_c01319{bottom:826.880000pt;}
.y1b_c01319{bottom:828.160000pt;}
.y1a_c01319{bottom:828.800000pt;}
.y18_c01319{bottom:829.440000pt;}
.y13_c01319{bottom:864.640000pt;}
.y11_c01319{bottom:865.280000pt;}
.y15_c01319{bottom:865.920000pt;}
.y14_c01319{bottom:866.560000pt;}
.y12_c01319{bottom:867.200000pt;}
.y10_c01319{bottom:867.840000pt;}
.yf_c01319{bottom:901.120000pt;}
.ya_c01319{bottom:902.400000pt;}
.yc_c01319{bottom:903.040000pt;}
.yb_c01319{bottom:903.680000pt;}
.y9_c01319{bottom:904.960000pt;}
.ye_c01319{bottom:905.600000pt;}
.yd_c01319{bottom:906.240000pt;}
.y6_c01319{bottom:940.160000pt;}
.y3_c01319{bottom:941.440000pt;}
.y2_c01319{bottom:942.080000pt;}
.y7_c01319{bottom:942.720000pt;}
.y8_c01319{bottom:943.360000pt;}
.y5_c01319{bottom:944.000000pt;}
.y1_c01319{bottom:944.640000pt;}
.y4_c01319{bottom:945.280000pt;}
.h14_c01319{height:6.911250pt;}
.h11_c01319{height:9.215000pt;}
.h12_c01319{height:11.518750pt;}
.h15_c01319{height:13.822500pt;}
.h16_c01319{height:20.733750pt;}
.h6_c01319{height:27.645000pt;}
.h10_c01319{height:29.948750pt;}
.h7_c01319{height:32.252500pt;}
.hc_c01319{height:34.556250pt;}
.ha_c01319{height:36.860000pt;}
.h3_c01319{height:39.163750pt;}
.h2_c01319{height:41.467500pt;}
.hd_c01319{height:43.771250pt;}
.h5_c01319{height:46.075000pt;}
.h13_c01319{height:46.587500pt;}
.h9_c01319{height:48.378750pt;}
.h8_c01319{height:50.682500pt;}
.h4_c01319{height:52.986250pt;}
.he_c01319{height:55.033750pt;}
.hf_c01319{height:55.290000pt;}
.hb_c01319{height:57.593750pt;}
.h17_c01319{height:59.897500pt;}
.h18_c01319{height:62.201250pt;}
.h1_c01319{height:1034.666667pt;}
.h0_c01319{height:1034.880000pt;}
.w0_c01319{width:658.560000pt;}
.w1_c01319{width:658.666667pt;}
.x0_c01319{left:0.000000pt;}
.xb_c01319{left:27.520000pt;}
.x40_c01319{left:28.800000pt;}
.x5e_c01319{left:30.720000pt;}
.x64_c01319{left:32.000000pt;}
.x5f_c01319{left:39.040000pt;}
.x48_c01319{left:46.080000pt;}
.xc_c01319{left:55.040000pt;}
.x60_c01319{left:63.360000pt;}
.x13_c01319{left:64.640000pt;}
.x28_c01319{left:74.240000pt;}
.x36_c01319{left:82.560000pt;}
.x29_c01319{left:92.800000pt;}
.x23_c01319{left:102.400000pt;}
.x2e_c01319{left:103.680000pt;}
.x1e_c01319{left:112.000000pt;}
.x1_c01319{left:121.600000pt;}
.x4e_c01319{left:122.880000pt;}
.x14_c01319{left:131.200000pt;}
.x3a_c01319{left:132.480000pt;}
.xd_c01319{left:140.800000pt;}
.x2_c01319{left:150.400000pt;}
.x61_c01319{left:152.960000pt;}
.x56_c01319{left:159.360000pt;}
.x15_c01319{left:160.640000pt;}
.x37_c01319{left:168.960000pt;}
.x3b_c01319{left:170.880000pt;}
.x44_c01319{left:179.840000pt;}
.x32_c01319{left:188.800000pt;}
.x38_c01319{left:190.080000pt;}
.x3_c01319{left:198.400000pt;}
.xe_c01319{left:207.360000pt;}
.x62_c01319{left:209.280000pt;}
.x2f_c01319{left:217.600000pt;}
.x68_c01319{left:220.160000pt;}
.x24_c01319{left:228.480000pt;}
.x1f_c01319{left:238.080000pt;}
.x45_c01319{left:246.400000pt;}
.x16_c01319{left:247.680000pt;}
.x39_c01319{left:256.640000pt;}
.x4f_c01319{left:264.960000pt;}
.xf_c01319{left:266.240000pt;}
.x17_c01319{left:274.560000pt;}
.x41_c01319{left:276.480000pt;}
.x57_c01319{left:284.160000pt;}
.x4_c01319{left:285.440000pt;}
.x66_c01319{left:293.760000pt;}
.x3c_c01319{left:295.680000pt;}
.x2a_c01319{left:305.280000pt;}
.x5_c01319{left:312.960000pt;}
.x58_c01319{left:322.560000pt;}
.x33_c01319{left:323.840000pt;}
.x20_c01319{left:333.440000pt;}
.x50_c01319{left:341.760000pt;}
.x18_c01319{left:343.040000pt;}
.x34_c01319{left:351.360000pt;}
.x6_c01319{left:353.280000pt;}
.x4b_c01319{left:361.600000pt;}
.x19_c01319{left:362.880000pt;}
.x10_c01319{left:370.560000pt;}
.x25_c01319{left:372.480000pt;}
.x51_c01319{left:380.160000pt;}
.x49_c01319{left:381.440000pt;}
.x3d_c01319{left:389.760000pt;}
.x52_c01319{left:409.600000pt;}
.x1a_c01319{left:410.880000pt;}
.x2b_c01319{left:418.560000pt;}
.x3e_c01319{left:420.480000pt;}
.x35_c01319{left:428.160000pt;}
.x11_c01319{left:429.440000pt;}
.x53_c01319{left:437.120000pt;}
.x42_c01319{left:438.400000pt;}
.x46_c01319{left:456.320000pt;}
.x21_c01319{left:457.600000pt;}
.x59_c01319{left:465.280000pt;}
.x43_c01319{left:466.560000pt;}
.x12_c01319{left:468.480000pt;}
.x54_c01319{left:476.160000pt;}
.x7_c01319{left:478.080000pt;}
.x30_c01319{left:485.760000pt;}
.x1b_c01319{left:487.680000pt;}
.x63_c01319{left:495.360000pt;}
.x26_c01319{left:496.640000pt;}
.x5a_c01319{left:504.320000pt;}
.x8_c01319{left:505.600000pt;}
.x31_c01319{left:514.560000pt;}
.x1c_c01319{left:516.480000pt;}
.x3f_c01319{left:524.160000pt;}
.x27_c01319{left:525.440000pt;}
.x5b_c01319{left:531.840000pt;}
.x4c_c01319{left:533.120000pt;}
.x2c_c01319{left:535.040000pt;}
.x47_c01319{left:552.320000pt;}
.x22_c01319{left:554.240000pt;}
.x9_c01319{left:555.520000pt;}
.x5c_c01319{left:561.280000pt;}
.x2d_c01319{left:563.200000pt;}
.x4d_c01319{left:572.160000pt;}
.x1d_c01319{left:573.440000pt;}
.xa_c01319{left:583.040000pt;}
.x4a_c01319{left:591.360000pt;}
.x55_c01319{left:600.320000pt;}
.x67_c01319{left:602.240000pt;}
.x65_c01319{left:618.880000pt;}
.x5d_c01319{left:628.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_c01320 {
    display:none;
  }
  .loading-indicator_c01320.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01320 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01320 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01320" -> "#page-container .classname_c01320")
 */
.pf_c01320 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01320 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01320.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01320 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01320 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01320 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01320 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01320 {overflow:visible;}
  }
}
.c_c01320 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01320 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01320:after { /* webkit #35443 */
  content: '';
}
.t_c01320:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01320 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01320 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01320 { /* info for Javascript */
  display:none;
}
.l_c01320 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01320 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01320 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01320:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01320{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01320;src:url('chunks/assets/font_dae3b2ee05b896569c146ae3.woff2')format("woff");}.ff1_c01320{font-family:ff1_c01320;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4e_c01320{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m4d_c01320{transform:matrix(0.077675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077675,0.000000,0.000000,0.250000,0,0);}
.m4b_c01320{transform:matrix(0.089375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089375,0.000000,0.000000,0.250000,0,0);}
.m58_c01320{transform:matrix(0.101850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101850,0.000000,0.000000,0.250000,0,0);}
.m53_c01320{transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);}
.m52_c01320{transform:matrix(0.117700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117700,0.000000,0.000000,0.250000,0,0);}
.m4f_c01320{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01320{transform:matrix(0.229950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229950,0.000000,0.000000,0.250000,0,0);}
.m23_c01320{transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);}
.m55_c01320{transform:matrix(0.236425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236425,0.000000,0.000000,0.250000,0,0);}
.m2c_c01320{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m25_c01320{transform:matrix(0.248425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248425,0.000000,0.000000,0.250000,0,0);}
.m45_c01320{transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);}
.m50_c01320{transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);}
.m48_c01320{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01320{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);}
.m2d_c01320{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01320{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_c01320{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mb_c01320{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m22_c01320{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);}
.m36_c01320{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);}
.m47_c01320{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01320{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01320{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m2_c01320{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_c01320{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m11_c01320{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m43_c01320{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.md_c01320{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.ma_c01320{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m14_c01320{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.me_c01320{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01320{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m34_c01320{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m44_c01320{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m5_c01320{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m10_c01320{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01320{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01320{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01320{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m42_c01320{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m13_c01320{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01320{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);}
.m28_c01320{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);}
.m37_c01320{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m3_c01320{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);}
.m26_c01320{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01320{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m16_c01320{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01320{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);}
.m9_c01320{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m24_c01320{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m8_c01320{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);}
.m51_c01320{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);}
.m0_c01320{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m39_c01320{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);}
.m33_c01320{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);}
.m38_c01320{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);}
.m2a_c01320{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m12_c01320{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.mc_c01320{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_c01320{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);}
.m6_c01320{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m19_c01320{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01320{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m1_c01320{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m40_c01320{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m20_c01320{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);}
.m4c_c01320{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m32_c01320{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);}
.m30_c01320{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m7_c01320{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01320{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);}
.m3e_c01320{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m27_c01320{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);}
.m49_c01320{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m56_c01320{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);}
.m41_c01320{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m46_c01320{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01320{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m35_c01320{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m54_c01320{transform:matrix(0.647500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.647500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.647500,0.000000,0.000000,0.250000,0,0);}
.m18_c01320{transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01320{transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);}
.m57_c01320{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01320{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);}
.m29_c01320{transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01320{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.v2_c01320{vertical-align:-2.880000px;}
.v0_c01320{vertical-align:0.000000px;}
.v1_c01320{vertical-align:14.400000px;}
.ls1_c01320{letter-spacing:0.000000px;}
.ls0_c01320{letter-spacing:87.974400px;}
.sc__c01320{text-shadow:none;}
.sc0_c01320{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01320{-webkit-text-stroke:0px transparent;}
.sc0_c01320{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01320{word-spacing:-18.935280px;}
.ws1_c01320{word-spacing:0.000000px;}
.fc0_c01320{color:transparent;}
.fsd_c01320{font-size:8.640000px;}
.fs11_c01320{font-size:17.280000px;}
.fsf_c01320{font-size:20.160000px;}
.fsb_c01320{font-size:37.440000px;}
.fsc_c01320{font-size:40.320000px;}
.fs5_c01320{font-size:48.960000px;}
.fs6_c01320{font-size:51.840000px;}
.fs8_c01320{font-size:54.720000px;}
.fs1_c01320{font-size:57.600000px;}
.fs4_c01320{font-size:60.480000px;}
.fs7_c01320{font-size:63.360000px;}
.fs9_c01320{font-size:66.240000px;}
.fs3_c01320{font-size:69.120000px;}
.fs0_c01320{font-size:72.000000px;}
.fs2_c01320{font-size:74.880000px;}
.fsa_c01320{font-size:77.760000px;}
.fs10_c01320{font-size:83.520000px;}
.fs12_c01320{font-size:97.920000px;}
.fse_c01320{font-size:120.960000px;}
.y0_c01320{bottom:0.000000px;}
.y87_c01320{bottom:1.440000px;}
.y80_c01320{bottom:4.320000px;}
.y82_c01320{bottom:10.080000px;}
.y83_c01320{bottom:10.800000px;}
.y84_c01320{bottom:14.400000px;}
.y85_c01320{bottom:15.120000px;}
.y81_c01320{bottom:15.840000px;}
.y86_c01320{bottom:17.280000px;}
.y7c_c01320{bottom:52.560000px;}
.y7b_c01320{bottom:58.320000px;}
.y7d_c01320{bottom:59.040000px;}
.y7e_c01320{bottom:60.480000px;}
.y7f_c01320{bottom:72.000000px;}
.y7a_c01320{bottom:84.240000px;}
.y79_c01320{bottom:89.280000px;}
.y78_c01320{bottom:90.720000px;}
.y77_c01320{bottom:94.320000px;}
.y72_c01320{bottom:96.480000px;}
.y75_c01320{bottom:97.200000px;}
.y74_c01320{bottom:97.920000px;}
.y73_c01320{bottom:99.360000px;}
.y71_c01320{bottom:101.520000px;}
.y76_c01320{bottom:102.240000px;}
.y70_c01320{bottom:123.840000px;}
.y6f_c01320{bottom:129.600000px;}
.y6b_c01320{bottom:138.960000px;}
.y6a_c01320{bottom:139.680000px;}
.y6d_c01320{bottom:143.280000px;}
.y69_c01320{bottom:144.000000px;}
.y6c_c01320{bottom:146.880000px;}
.y6e_c01320{bottom:148.320000px;}
.y62_c01320{bottom:183.600000px;}
.y65_c01320{bottom:184.320000px;}
.y63_c01320{bottom:185.040000px;}
.y66_c01320{bottom:186.480000px;}
.y61_c01320{bottom:187.200000px;}
.y64_c01320{bottom:187.920000px;}
.y68_c01320{bottom:189.360000px;}
.y67_c01320{bottom:190.080000px;}
.y5b_c01320{bottom:226.080000px;}
.y5d_c01320{bottom:226.800000px;}
.y5e_c01320{bottom:228.960000px;}
.y5c_c01320{bottom:230.400000px;}
.y5a_c01320{bottom:231.120000px;}
.y5f_c01320{bottom:231.840000px;}
.y60_c01320{bottom:232.560000px;}
.y58_c01320{bottom:268.560000px;}
.y59_c01320{bottom:272.160000px;}
.y57_c01320{bottom:272.880000px;}
.y55_c01320{bottom:312.480000px;}
.y56_c01320{bottom:315.360000px;}
.y53_c01320{bottom:316.800000px;}
.y54_c01320{bottom:317.520000px;}
.y4e_c01320{bottom:355.680000px;}
.y51_c01320{bottom:356.400000px;}
.y52_c01320{bottom:358.560000px;}
.y4f_c01320{bottom:359.280000px;}
.y4d_c01320{bottom:360.000000px;}
.y50_c01320{bottom:360.720000px;}
.y49_c01320{bottom:399.600000px;}
.y4a_c01320{bottom:401.760000px;}
.y4b_c01320{bottom:402.480000px;}
.y4c_c01320{bottom:403.200000px;}
.y48_c01320{bottom:403.920000px;}
.y45_c01320{bottom:442.080000px;}
.y46_c01320{bottom:444.960000px;}
.y44_c01320{bottom:445.680000px;}
.y47_c01320{bottom:446.400000px;}
.y43_c01320{bottom:491.040000px;}
.y3f_c01320{bottom:540.720000px;}
.y41_c01320{bottom:541.440000px;}
.y42_c01320{bottom:542.160000px;}
.y3e_c01320{bottom:543.600000px;}
.y40_c01320{bottom:544.320000px;}
.y3b_c01320{bottom:583.200000px;}
.y3d_c01320{bottom:584.640000px;}
.y39_c01320{bottom:586.080000px;}
.y3c_c01320{bottom:586.800000px;}
.y3a_c01320{bottom:587.520000px;}
.y34_c01320{bottom:626.400000px;}
.y36_c01320{bottom:627.120000px;}
.y38_c01320{bottom:627.840000px;}
.y37_c01320{bottom:628.560000px;}
.y35_c01320{bottom:630.000000px;}
.y33_c01320{bottom:630.720000px;}
.y31_c01320{bottom:670.320000px;}
.y30_c01320{bottom:671.040000px;}
.y2f_c01320{bottom:671.760000px;}
.y32_c01320{bottom:673.200000px;}
.y2e_c01320{bottom:713.520000px;}
.y2d_c01320{bottom:714.240000px;}
.y2c_c01320{bottom:715.680000px;}
.y29_c01320{bottom:756.720000px;}
.y27_c01320{bottom:757.440000px;}
.y26_c01320{bottom:758.160000px;}
.y28_c01320{bottom:758.880000px;}
.y2b_c01320{bottom:759.600000px;}
.y2a_c01320{bottom:760.320000px;}
.y25_c01320{bottom:799.200000px;}
.y22_c01320{bottom:800.640000px;}
.y23_c01320{bottom:801.360000px;}
.y21_c01320{bottom:802.800000px;}
.y24_c01320{bottom:803.520000px;}
.y1f_c01320{bottom:842.400000px;}
.y20_c01320{bottom:843.120000px;}
.y1c_c01320{bottom:843.840000px;}
.y1d_c01320{bottom:844.560000px;}
.y1b_c01320{bottom:846.000000px;}
.y1e_c01320{bottom:846.720000px;}
.y17_c01320{bottom:885.600000px;}
.y19_c01320{bottom:886.320000px;}
.y18_c01320{bottom:887.040000px;}
.y1a_c01320{bottom:887.760000px;}
.y15_c01320{bottom:888.480000px;}
.y14_c01320{bottom:889.200000px;}
.y16_c01320{bottom:889.920000px;}
.y12_c01320{bottom:928.800000px;}
.y11_c01320{bottom:930.240000px;}
.yf_c01320{bottom:930.960000px;}
.y13_c01320{bottom:931.680000px;}
.y10_c01320{bottom:932.400000px;}
.yd_c01320{bottom:972.000000px;}
.ye_c01320{bottom:972.720000px;}
.yc_c01320{bottom:974.160000px;}
.yb_c01320{bottom:974.880000px;}
.ya_c01320{bottom:975.600000px;}
.y9_c01320{bottom:1015.920000px;}
.y6_c01320{bottom:1016.640000px;}
.y8_c01320{bottom:1017.360000px;}
.y7_c01320{bottom:1020.240000px;}
.y4_c01320{bottom:1058.400000px;}
.y3_c01320{bottom:1059.840000px;}
.y5_c01320{bottom:1061.280000px;}
.y2_c01320{bottom:1062.000000px;}
.y1_c01320{bottom:1141.200000px;}
.hf_c01320{height:7.775156px;}
.h13_c01320{height:15.550313px;}
.h11_c01320{height:18.142031px;}
.hd_c01320{height:33.692344px;}
.he_c01320{height:36.284062px;}
.h7_c01320{height:44.059219px;}
.h8_c01320{height:46.650937px;}
.ha_c01320{height:49.242656px;}
.h3_c01320{height:51.834375px;}
.h6_c01320{height:54.426094px;}
.h9_c01320{height:57.017812px;}
.hb_c01320{height:59.609531px;}
.h5_c01320{height:62.201250px;}
.h2_c01320{height:64.792969px;}
.h4_c01320{height:67.384687px;}
.hc_c01320{height:69.976406px;}
.h12_c01320{height:75.159844px;}
.h14_c01320{height:88.118437px;}
.h10_c01320{height:108.852188px;}
.h0_c01320{height:1175.040000px;}
.h1_c01320{height:1175.250000px;}
.w1_c01320{width:766.500000px;}
.w0_c01320{width:766.800000px;}
.x0_c01320{left:0.000000px;}
.x2_c01320{left:38.160000px;}
.x37_c01320{left:39.600000px;}
.x3_c01320{left:79.200000px;}
.x18_c01320{left:87.120000px;}
.xa_c01320{left:88.560000px;}
.x29_c01320{left:142.560000px;}
.x22_c01320{left:152.640000px;}
.x30_c01320{left:162.720000px;}
.x7_c01320{left:164.160000px;}
.xb_c01320{left:174.960000px;}
.x33_c01320{left:184.320000px;}
.x15_c01320{left:185.760000px;}
.x23_c01320{left:207.360000px;}
.x12_c01320{left:218.160000px;}
.xc_c01320{left:228.960000px;}
.x16_c01320{left:238.320000px;}
.x19_c01320{left:239.760000px;}
.x24_c01320{left:249.120000px;}
.x1d_c01320{left:250.560000px;}
.xd_c01320{left:261.360000px;}
.x13_c01320{left:271.440000px;}
.x17_c01320{left:283.680000px;}
.xe_c01320{left:293.040000px;}
.x2c_c01320{left:314.640000px;}
.x14_c01320{left:316.800000px;}
.x21_c01320{left:324.720000px;}
.x26_c01320{left:346.320000px;}
.xf_c01320{left:347.760000px;}
.x36_c01320{left:367.920000px;}
.x27_c01320{left:390.240000px;}
.x2d_c01320{left:400.320000px;}
.x3a_c01320{left:410.400000px;}
.x1a_c01320{left:412.560000px;}
.x28_c01320{left:443.520000px;}
.x2e_c01320{left:452.160000px;}
.x2f_c01320{left:496.080000px;}
.x3d_c01320{left:559.440000px;}
.x34_c01320{left:560.880000px;}
.x3b_c01320{left:581.040000px;}
.x2a_c01320{left:583.200000px;}
.x1e_c01320{left:584.640000px;}
.x4_c01320{left:598.320000px;}
.x3e_c01320{left:614.160000px;}
.x35_c01320{left:615.600000px;}
.x10_c01320{left:617.760000px;}
.x8_c01320{left:619.200000px;}
.x31_c01320{left:648.000000px;}
.x1b_c01320{left:650.160000px;}
.x1_c01320{left:651.600000px;}
.x1f_c01320{left:659.520000px;}
.x5_c01320{left:662.400000px;}
.x9_c01320{left:684.720000px;}
.x32_c01320{left:689.760000px;}
.x25_c01320{left:691.200000px;}
.x1c_c01320{left:692.640000px;}
.x6_c01320{left:694.080000px;}
.x2b_c01320{left:711.360000px;}
.x20_c01320{left:712.800000px;}
.x11_c01320{left:714.240000px;}
.x38_c01320{left:756.000000px;}
.x3c_c01320{left:757.440000px;}
.x40_c01320{left:758.880000px;}
.x3f_c01320{left:761.040000px;}
.x39_c01320{left:763.200000px;}
@media print{
.v2_c01320{vertical-align:-2.560000pt;}
.v0_c01320{vertical-align:0.000000pt;}
.v1_c01320{vertical-align:12.800000pt;}
.ls1_c01320{letter-spacing:0.000000pt;}
.ls0_c01320{letter-spacing:78.199467pt;}
.ws0_c01320{word-spacing:-16.831360pt;}
.ws1_c01320{word-spacing:0.000000pt;}
.fsd_c01320{font-size:7.680000pt;}
.fs11_c01320{font-size:15.360000pt;}
.fsf_c01320{font-size:17.920000pt;}
.fsb_c01320{font-size:33.280000pt;}
.fsc_c01320{font-size:35.840000pt;}
.fs5_c01320{font-size:43.520000pt;}
.fs6_c01320{font-size:46.080000pt;}
.fs8_c01320{font-size:48.640000pt;}
.fs1_c01320{font-size:51.200000pt;}
.fs4_c01320{font-size:53.760000pt;}
.fs7_c01320{font-size:56.320000pt;}
.fs9_c01320{font-size:58.880000pt;}
.fs3_c01320{font-size:61.440000pt;}
.fs0_c01320{font-size:64.000000pt;}
.fs2_c01320{font-size:66.560000pt;}
.fsa_c01320{font-size:69.120000pt;}
.fs10_c01320{font-size:74.240000pt;}
.fs12_c01320{font-size:87.040000pt;}
.fse_c01320{font-size:107.520000pt;}
.y0_c01320{bottom:0.000000pt;}
.y87_c01320{bottom:1.280000pt;}
.y80_c01320{bottom:3.840000pt;}
.y82_c01320{bottom:8.960000pt;}
.y83_c01320{bottom:9.600000pt;}
.y84_c01320{bottom:12.800000pt;}
.y85_c01320{bottom:13.440000pt;}
.y81_c01320{bottom:14.080000pt;}
.y86_c01320{bottom:15.360000pt;}
.y7c_c01320{bottom:46.720000pt;}
.y7b_c01320{bottom:51.840000pt;}
.y7d_c01320{bottom:52.480000pt;}
.y7e_c01320{bottom:53.760000pt;}
.y7f_c01320{bottom:64.000000pt;}
.y7a_c01320{bottom:74.880000pt;}
.y79_c01320{bottom:79.360000pt;}
.y78_c01320{bottom:80.640000pt;}
.y77_c01320{bottom:83.840000pt;}
.y72_c01320{bottom:85.760000pt;}
.y75_c01320{bottom:86.400000pt;}
.y74_c01320{bottom:87.040000pt;}
.y73_c01320{bottom:88.320000pt;}
.y71_c01320{bottom:90.240000pt;}
.y76_c01320{bottom:90.880000pt;}
.y70_c01320{bottom:110.080000pt;}
.y6f_c01320{bottom:115.200000pt;}
.y6b_c01320{bottom:123.520000pt;}
.y6a_c01320{bottom:124.160000pt;}
.y6d_c01320{bottom:127.360000pt;}
.y69_c01320{bottom:128.000000pt;}
.y6c_c01320{bottom:130.560000pt;}
.y6e_c01320{bottom:131.840000pt;}
.y62_c01320{bottom:163.200000pt;}
.y65_c01320{bottom:163.840000pt;}
.y63_c01320{bottom:164.480000pt;}
.y66_c01320{bottom:165.760000pt;}
.y61_c01320{bottom:166.400000pt;}
.y64_c01320{bottom:167.040000pt;}
.y68_c01320{bottom:168.320000pt;}
.y67_c01320{bottom:168.960000pt;}
.y5b_c01320{bottom:200.960000pt;}
.y5d_c01320{bottom:201.600000pt;}
.y5e_c01320{bottom:203.520000pt;}
.y5c_c01320{bottom:204.800000pt;}
.y5a_c01320{bottom:205.440000pt;}
.y5f_c01320{bottom:206.080000pt;}
.y60_c01320{bottom:206.720000pt;}
.y58_c01320{bottom:238.720000pt;}
.y59_c01320{bottom:241.920000pt;}
.y57_c01320{bottom:242.560000pt;}
.y55_c01320{bottom:277.760000pt;}
.y56_c01320{bottom:280.320000pt;}
.y53_c01320{bottom:281.600000pt;}
.y54_c01320{bottom:282.240000pt;}
.y4e_c01320{bottom:316.160000pt;}
.y51_c01320{bottom:316.800000pt;}
.y52_c01320{bottom:318.720000pt;}
.y4f_c01320{bottom:319.360000pt;}
.y4d_c01320{bottom:320.000000pt;}
.y50_c01320{bottom:320.640000pt;}
.y49_c01320{bottom:355.200000pt;}
.y4a_c01320{bottom:357.120000pt;}
.y4b_c01320{bottom:357.760000pt;}
.y4c_c01320{bottom:358.400000pt;}
.y48_c01320{bottom:359.040000pt;}
.y45_c01320{bottom:392.960000pt;}
.y46_c01320{bottom:395.520000pt;}
.y44_c01320{bottom:396.160000pt;}
.y47_c01320{bottom:396.800000pt;}
.y43_c01320{bottom:436.480000pt;}
.y3f_c01320{bottom:480.640000pt;}
.y41_c01320{bottom:481.280000pt;}
.y42_c01320{bottom:481.920000pt;}
.y3e_c01320{bottom:483.200000pt;}
.y40_c01320{bottom:483.840000pt;}
.y3b_c01320{bottom:518.400000pt;}
.y3d_c01320{bottom:519.680000pt;}
.y39_c01320{bottom:520.960000pt;}
.y3c_c01320{bottom:521.600000pt;}
.y3a_c01320{bottom:522.240000pt;}
.y34_c01320{bottom:556.800000pt;}
.y36_c01320{bottom:557.440000pt;}
.y38_c01320{bottom:558.080000pt;}
.y37_c01320{bottom:558.720000pt;}
.y35_c01320{bottom:560.000000pt;}
.y33_c01320{bottom:560.640000pt;}
.y31_c01320{bottom:595.840000pt;}
.y30_c01320{bottom:596.480000pt;}
.y2f_c01320{bottom:597.120000pt;}
.y32_c01320{bottom:598.400000pt;}
.y2e_c01320{bottom:634.240000pt;}
.y2d_c01320{bottom:634.880000pt;}
.y2c_c01320{bottom:636.160000pt;}
.y29_c01320{bottom:672.640000pt;}
.y27_c01320{bottom:673.280000pt;}
.y26_c01320{bottom:673.920000pt;}
.y28_c01320{bottom:674.560000pt;}
.y2b_c01320{bottom:675.200000pt;}
.y2a_c01320{bottom:675.840000pt;}
.y25_c01320{bottom:710.400000pt;}
.y22_c01320{bottom:711.680000pt;}
.y23_c01320{bottom:712.320000pt;}
.y21_c01320{bottom:713.600000pt;}
.y24_c01320{bottom:714.240000pt;}
.y1f_c01320{bottom:748.800000pt;}
.y20_c01320{bottom:749.440000pt;}
.y1c_c01320{bottom:750.080000pt;}
.y1d_c01320{bottom:750.720000pt;}
.y1b_c01320{bottom:752.000000pt;}
.y1e_c01320{bottom:752.640000pt;}
.y17_c01320{bottom:787.200000pt;}
.y19_c01320{bottom:787.840000pt;}
.y18_c01320{bottom:788.480000pt;}
.y1a_c01320{bottom:789.120000pt;}
.y15_c01320{bottom:789.760000pt;}
.y14_c01320{bottom:790.400000pt;}
.y16_c01320{bottom:791.040000pt;}
.y12_c01320{bottom:825.600000pt;}
.y11_c01320{bottom:826.880000pt;}
.yf_c01320{bottom:827.520000pt;}
.y13_c01320{bottom:828.160000pt;}
.y10_c01320{bottom:828.800000pt;}
.yd_c01320{bottom:864.000000pt;}
.ye_c01320{bottom:864.640000pt;}
.yc_c01320{bottom:865.920000pt;}
.yb_c01320{bottom:866.560000pt;}
.ya_c01320{bottom:867.200000pt;}
.y9_c01320{bottom:903.040000pt;}
.y6_c01320{bottom:903.680000pt;}
.y8_c01320{bottom:904.320000pt;}
.y7_c01320{bottom:906.880000pt;}
.y4_c01320{bottom:940.800000pt;}
.y3_c01320{bottom:942.080000pt;}
.y5_c01320{bottom:943.360000pt;}
.y2_c01320{bottom:944.000000pt;}
.y1_c01320{bottom:1014.400000pt;}
.hf_c01320{height:6.911250pt;}
.h13_c01320{height:13.822500pt;}
.h11_c01320{height:16.126250pt;}
.hd_c01320{height:29.948750pt;}
.he_c01320{height:32.252500pt;}
.h7_c01320{height:39.163750pt;}
.h8_c01320{height:41.467500pt;}
.ha_c01320{height:43.771250pt;}
.h3_c01320{height:46.075000pt;}
.h6_c01320{height:48.378750pt;}
.h9_c01320{height:50.682500pt;}
.hb_c01320{height:52.986250pt;}
.h5_c01320{height:55.290000pt;}
.h2_c01320{height:57.593750pt;}
.h4_c01320{height:59.897500pt;}
.hc_c01320{height:62.201250pt;}
.h12_c01320{height:66.808750pt;}
.h14_c01320{height:78.327500pt;}
.h10_c01320{height:96.757500pt;}
.h0_c01320{height:1044.480000pt;}
.h1_c01320{height:1044.666667pt;}
.w1_c01320{width:681.333333pt;}
.w0_c01320{width:681.600000pt;}
.x0_c01320{left:0.000000pt;}
.x2_c01320{left:33.920000pt;}
.x37_c01320{left:35.200000pt;}
.x3_c01320{left:70.400000pt;}
.x18_c01320{left:77.440000pt;}
.xa_c01320{left:78.720000pt;}
.x29_c01320{left:126.720000pt;}
.x22_c01320{left:135.680000pt;}
.x30_c01320{left:144.640000pt;}
.x7_c01320{left:145.920000pt;}
.xb_c01320{left:155.520000pt;}
.x33_c01320{left:163.840000pt;}
.x15_c01320{left:165.120000pt;}
.x23_c01320{left:184.320000pt;}
.x12_c01320{left:193.920000pt;}
.xc_c01320{left:203.520000pt;}
.x16_c01320{left:211.840000pt;}
.x19_c01320{left:213.120000pt;}
.x24_c01320{left:221.440000pt;}
.x1d_c01320{left:222.720000pt;}
.xd_c01320{left:232.320000pt;}
.x13_c01320{left:241.280000pt;}
.x17_c01320{left:252.160000pt;}
.xe_c01320{left:260.480000pt;}
.x2c_c01320{left:279.680000pt;}
.x14_c01320{left:281.600000pt;}
.x21_c01320{left:288.640000pt;}
.x26_c01320{left:307.840000pt;}
.xf_c01320{left:309.120000pt;}
.x36_c01320{left:327.040000pt;}
.x27_c01320{left:346.880000pt;}
.x2d_c01320{left:355.840000pt;}
.x3a_c01320{left:364.800000pt;}
.x1a_c01320{left:366.720000pt;}
.x28_c01320{left:394.240000pt;}
.x2e_c01320{left:401.920000pt;}
.x2f_c01320{left:440.960000pt;}
.x3d_c01320{left:497.280000pt;}
.x34_c01320{left:498.560000pt;}
.x3b_c01320{left:516.480000pt;}
.x2a_c01320{left:518.400000pt;}
.x1e_c01320{left:519.680000pt;}
.x4_c01320{left:531.840000pt;}
.x3e_c01320{left:545.920000pt;}
.x35_c01320{left:547.200000pt;}
.x10_c01320{left:549.120000pt;}
.x8_c01320{left:550.400000pt;}
.x31_c01320{left:576.000000pt;}
.x1b_c01320{left:577.920000pt;}
.x1_c01320{left:579.200000pt;}
.x1f_c01320{left:586.240000pt;}
.x5_c01320{left:588.800000pt;}
.x9_c01320{left:608.640000pt;}
.x32_c01320{left:613.120000pt;}
.x25_c01320{left:614.400000pt;}
.x1c_c01320{left:615.680000pt;}
.x6_c01320{left:616.960000pt;}
.x2b_c01320{left:632.320000pt;}
.x20_c01320{left:633.600000pt;}
.x11_c01320{left:634.880000pt;}
.x38_c01320{left:672.000000pt;}
.x3c_c01320{left:673.280000pt;}
.x40_c01320{left:674.560000pt;}
.x3f_c01320{left:676.480000pt;}
.x39_c01320{left:678.400000pt;}
}





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

.ir_c01321:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01321{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01321;src:url('chunks/assets/font_0b0187d32e18bc49b25ccefd.woff2')format("woff");}.ff1_c01321{font-family:ff1_c01321;line-height:1.109863;font-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_c01321{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01321{transform:matrix(0.019750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019750,0.000000,0.000000,0.250000,0,0);}
.m47_c01321{transform:matrix(0.020175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020175,0.000000,0.000000,0.250000,0,0);}
.m4a_c01321{transform:matrix(0.029425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.029425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.029425,0.000000,0.000000,0.250000,0,0);}
.m3e_c01321{transform:matrix(0.033175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.033175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.033175,0.000000,0.000000,0.250000,0,0);}
.m42_c01321{transform:matrix(0.047500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01321{transform:matrix(0.058225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058225,0.000000,0.000000,0.250000,0,0);}
.m4f_c01321{transform:matrix(0.066375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066375,0.000000,0.000000,0.250000,0,0);}
.m50_c01321{transform:matrix(0.085800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085800,0.000000,0.000000,0.250000,0,0);}
.m4e_c01321{transform:matrix(0.086475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086475,0.000000,0.000000,0.250000,0,0);}
.m4d_c01321{transform:matrix(0.087025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087025,0.000000,0.000000,0.250000,0,0);}
.m41_c01321{transform:matrix(0.107200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107200,0.000000,0.000000,0.250000,0,0);}
.m43_c01321{transform:matrix(0.117725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117725,0.000000,0.000000,0.250000,0,0);}
.m46_c01321{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m27_c01321{transform:matrix(0.187550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187550,0.000000,0.000000,0.250000,0,0);}
.m44_c01321{transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);}
.mb_c01321{transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);}
.m45_c01321{transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);}
.m36_c01321{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01321{transform:matrix(0.219850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219850,0.000000,0.000000,0.250000,0,0);}
.m9_c01321{transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);}
.m1e_c01321{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);}
.m3a_c01321{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m5_c01321{transform:matrix(0.244650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244650,0.000000,0.000000,0.250000,0,0);}
.m33_c01321{transform:matrix(0.244975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244975,0.000000,0.000000,0.250000,0,0);}
.m3d_c01321{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.mf_c01321{transform:matrix(0.247275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247275,0.000000,0.000000,0.250000,0,0);}
.m31_c01321{transform:matrix(0.249600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249600,0.000000,0.000000,0.250000,0,0);}
.m13_c01321{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);}
.m29_c01321{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m7_c01321{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_c01321{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_c01321{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mc_c01321{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m23_c01321{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_c01321{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m17_c01321{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);}
.m34_c01321{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01321{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m22_c01321{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01321{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_c01321{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m28_c01321{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.ma_c01321{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1_c01321{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.me_c01321{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m35_c01321{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m51_c01321{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m16_c01321{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01321{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01321{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01321{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01321{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m10_c01321{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m39_c01321{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);}
.m3c_c01321{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);}
.m24_c01321{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);}
.m30_c01321{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m4_c01321{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m32_c01321{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);}
.m2f_c01321{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);}
.m1d_c01321{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m2_c01321{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);}
.m48_c01321{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);}
.m0_c01321{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);}
.m18_c01321{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01321{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);}
.m8_c01321{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);}
.m20_c01321{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);}
.m49_c01321{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01321{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01321{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m26_c01321{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);}
.m6_c01321{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.md_c01321{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01321{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m38_c01321{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m25_c01321{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m14_c01321{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01321{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m40_c01321{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m37_c01321{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.v0_c01321{vertical-align:0.000000px;}
.ls0_c01321{letter-spacing:0.000000px;}
.sc__c01321{text-shadow:none;}
.sc0_c01321{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01321{-webkit-text-stroke:0px transparent;}
.sc0_c01321{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01321{word-spacing:0.000000px;}
.ws0_c01321{word-spacing:123.931699px;}
.fc0_c01321{color:transparent;}
.fs18_c01321{font-size:5.760000px;}
.fs15_c01321{font-size:17.280000px;}
.fs11_c01321{font-size:23.040000px;}
.fsd_c01321{font-size:25.920000px;}
.fs7_c01321{font-size:34.560000px;}
.fs13_c01321{font-size:37.440000px;}
.fsc_c01321{font-size:40.320000px;}
.fs14_c01321{font-size:46.080000px;}
.fs5_c01321{font-size:48.960000px;}
.fs9_c01321{font-size:51.840000px;}
.fs3_c01321{font-size:54.720000px;}
.fsa_c01321{font-size:57.600000px;}
.fs0_c01321{font-size:60.480000px;}
.fs2_c01321{font-size:63.360000px;}
.fs4_c01321{font-size:66.240000px;}
.fs8_c01321{font-size:69.120000px;}
.fse_c01321{font-size:72.000000px;}
.fs1_c01321{font-size:74.880000px;}
.fs6_c01321{font-size:77.760000px;}
.fs10_c01321{font-size:89.280000px;}
.fs17_c01321{font-size:97.920000px;}
.fsb_c01321{font-size:115.200000px;}
.fs12_c01321{font-size:164.160000px;}
.fsf_c01321{font-size:175.680000px;}
.fs19_c01321{font-size:218.880000px;}
.fs16_c01321{font-size:221.760000px;}
.y0_c01321{bottom:0.000000px;}
.y78_c01321{bottom:28.800000px;}
.y77_c01321{bottom:44.640000px;}
.y76_c01321{bottom:59.760000px;}
.y75_c01321{bottom:92.880000px;}
.y74_c01321{bottom:112.320000px;}
.y41_c01321{bottom:134.640000px;}
.y73_c01321{bottom:135.360000px;}
.y42_c01321{bottom:136.080000px;}
.y40_c01321{bottom:139.680000px;}
.y7a_c01321{bottom:141.120000px;}
.y7b_c01321{bottom:143.280000px;}
.y7c_c01321{bottom:144.720000px;}
.y72_c01321{bottom:169.920000px;}
.y3f_c01321{bottom:179.280000px;}
.y3e_c01321{bottom:182.160000px;}
.y70_c01321{bottom:185.040000px;}
.y6f_c01321{bottom:185.760000px;}
.y6e_c01321{bottom:187.200000px;}
.y71_c01321{bottom:191.520000px;}
.y6d_c01321{bottom:192.960000px;}
.y3d_c01321{bottom:221.760000px;}
.y3b_c01321{bottom:225.360000px;}
.y3c_c01321{bottom:226.080000px;}
.y6a_c01321{bottom:226.800000px;}
.y6b_c01321{bottom:227.520000px;}
.y6c_c01321{bottom:228.960000px;}
.y69_c01321{bottom:249.840000px;}
.y68_c01321{bottom:256.320000px;}
.y67_c01321{bottom:262.800000px;}
.y37_c01321{bottom:264.960000px;}
.y36_c01321{bottom:268.560000px;}
.y39_c01321{bottom:269.280000px;}
.y38_c01321{bottom:270.000000px;}
.y3a_c01321{bottom:270.720000px;}
.y79_c01321{bottom:272.880000px;}
.y66_c01321{bottom:275.760000px;}
.y65_c01321{bottom:276.480000px;}
.y64_c01321{bottom:287.280000px;}
.y63_c01321{bottom:299.520000px;}
.y35_c01321{bottom:308.880000px;}
.y34_c01321{bottom:311.760000px;}
.y61_c01321{bottom:313.200000px;}
.y62_c01321{bottom:313.920000px;}
.y33_c01321{bottom:352.080000px;}
.y32_c01321{bottom:355.680000px;}
.y5f_c01321{bottom:357.120000px;}
.y60_c01321{bottom:359.280000px;}
.y31_c01321{bottom:396.000000px;}
.y30_c01321{bottom:398.160000px;}
.y2e_c01321{bottom:439.200000px;}
.y2d_c01321{bottom:441.360000px;}
.y5e_c01321{bottom:443.520000px;}
.y2f_c01321{bottom:444.240000px;}
.y2c_c01321{bottom:473.040000px;}
.y28_c01321{bottom:484.560000px;}
.y29_c01321{bottom:485.280000px;}
.y2a_c01321{bottom:486.720000px;}
.y2b_c01321{bottom:487.440000px;}
.y5d_c01321{bottom:488.880000px;}
.y26_c01321{bottom:526.320000px;}
.y25_c01321{bottom:528.480000px;}
.y27_c01321{bottom:529.200000px;}
.y5b_c01321{bottom:530.640000px;}
.y5c_c01321{bottom:532.080000px;}
.y23_c01321{bottom:569.520000px;}
.y22_c01321{bottom:570.960000px;}
.y21_c01321{bottom:571.680000px;}
.y5a_c01321{bottom:572.400000px;}
.y24_c01321{bottom:574.560000px;}
.y1d_c01321{bottom:612.720000px;}
.y1c_c01321{bottom:613.440000px;}
.y1b_c01321{bottom:614.160000px;}
.y59_c01321{bottom:614.880000px;}
.y20_c01321{bottom:615.600000px;}
.y1e_c01321{bottom:616.320000px;}
.y1f_c01321{bottom:617.040000px;}
.y58_c01321{bottom:633.600000px;}
.y57_c01321{bottom:651.600000px;}
.y1a_c01321{bottom:655.920000px;}
.y19_c01321{bottom:657.360000px;}
.y56_c01321{bottom:658.080000px;}
.y16_c01321{bottom:699.120000px;}
.y15_c01321{bottom:699.840000px;}
.y53_c01321{bottom:700.560000px;}
.y18_c01321{bottom:701.280000px;}
.y55_c01321{bottom:702.000000px;}
.y17_c01321{bottom:702.720000px;}
.y54_c01321{bottom:703.440000px;}
.y13_c01321{bottom:742.320000px;}
.y12_c01321{bottom:743.040000px;}
.y52_c01321{bottom:743.760000px;}
.y51_c01321{bottom:744.480000px;}
.y14_c01321{bottom:746.640000px;}
.y11_c01321{bottom:785.520000px;}
.y10_c01321{bottom:786.240000px;}
.y4e_c01321{bottom:787.680000px;}
.y4f_c01321{bottom:788.400000px;}
.y50_c01321{bottom:789.840000px;}
.yf_c01321{bottom:828.720000px;}
.ye_c01321{bottom:829.440000px;}
.y4c_c01321{bottom:830.880000px;}
.y4d_c01321{bottom:832.320000px;}
.y4b_c01321{bottom:833.040000px;}
.yd_c01321{bottom:871.920000px;}
.yb_c01321{bottom:872.640000px;}
.y49_c01321{bottom:873.360000px;}
.yc_c01321{bottom:874.080000px;}
.y4a_c01321{bottom:876.240000px;}
.y9_c01321{bottom:915.120000px;}
.y8_c01321{bottom:915.840000px;}
.ya_c01321{bottom:917.280000px;}
.y48_c01321{bottom:918.720000px;}
.y4_c01321{bottom:958.320000px;}
.y5_c01321{bottom:959.040000px;}
.y7_c01321{bottom:959.760000px;}
.y47_c01321{bottom:960.480000px;}
.y6_c01321{bottom:962.640000px;}
.y3_c01321{bottom:1002.240000px;}
.y46_c01321{bottom:1002.960000px;}
.y1_c01321{bottom:1045.440000px;}
.y2_c01321{bottom:1046.160000px;}
.y44_c01321{bottom:1046.880000px;}
.y45_c01321{bottom:1047.600000px;}
.y43_c01321{bottom:1098.000000px;}
.h1a_c01321{height:5.183438px;}
.h17_c01321{height:15.550313px;}
.h13_c01321{height:20.733750px;}
.hf_c01321{height:23.325469px;}
.h9_c01321{height:31.100625px;}
.h15_c01321{height:33.692344px;}
.he_c01321{height:36.284062px;}
.h16_c01321{height:41.467500px;}
.h7_c01321{height:44.059219px;}
.hb_c01321{height:46.650937px;}
.h5_c01321{height:49.242656px;}
.hc_c01321{height:51.834375px;}
.h2_c01321{height:54.426094px;}
.h4_c01321{height:57.017812px;}
.h6_c01321{height:59.609531px;}
.ha_c01321{height:62.201250px;}
.h10_c01321{height:64.792969px;}
.h3_c01321{height:67.384687px;}
.h8_c01321{height:69.976406px;}
.h12_c01321{height:80.343281px;}
.h19_c01321{height:88.118437px;}
.hd_c01321{height:103.668750px;}
.h14_c01321{height:147.727969px;}
.h11_c01321{height:158.094844px;}
.h1b_c01321{height:196.970625px;}
.h18_c01321{height:199.562344px;}
.h1_c01321{height:1149.000000px;}
.h0_c01321{height:1149.120000px;}
.w1_c01321{width:771.000000px;}
.w0_c01321{width:771.120000px;}
.x0_c01321{left:0.000000px;}
.x1_c01321{left:45.360000px;}
.x17_c01321{left:47.520000px;}
.x8_c01321{left:65.520000px;}
.x2_c01321{left:95.760000px;}
.x13_c01321{left:97.200000px;}
.xe_c01321{left:172.080000px;}
.x3_c01321{left:182.880000px;}
.x9_c01321{left:195.120000px;}
.xa_c01321{left:226.800000px;}
.x4_c01321{left:237.600000px;}
.xc_c01321{left:246.240000px;}
.xf_c01321{left:257.760000px;}
.xb_c01321{left:280.800000px;}
.xd_c01321{left:290.880000px;}
.x7_c01321{left:311.760000px;}
.x18_c01321{left:315.360000px;}
.x19_c01321{left:324.720000px;}
.x5_c01321{left:366.480000px;}
.x14_c01321{left:378.000000px;}
.x6_c01321{left:409.680000px;}
.x15_c01321{left:431.280000px;}
.x10_c01321{left:451.440000px;}
.x11_c01321{left:493.920000px;}
.x16_c01321{left:561.600000px;}
.x12_c01321{left:571.680000px;}
.x23_c01321{left:591.840000px;}
.x1e_c01321{left:593.280000px;}
.x22_c01321{left:624.960000px;}
.x1b_c01321{left:627.120000px;}
.x27_c01321{left:657.360000px;}
.x1f_c01321{left:658.800000px;}
.x1a_c01321{left:663.120000px;}
.x2b_c01321{left:668.160000px;}
.x1c_c01321{left:669.600000px;}
.x26_c01321{left:690.480000px;}
.x21_c01321{left:691.920000px;}
.x24_c01321{left:700.560000px;}
.x1d_c01321{left:702.000000px;}
.x20_c01321{left:722.160000px;}
.x2c_c01321{left:758.880000px;}
.x28_c01321{left:760.320000px;}
.x2d_c01321{left:762.480000px;}
.x25_c01321{left:764.640000px;}
.x2a_c01321{left:766.080000px;}
.x29_c01321{left:768.240000px;}
@media print{
.v0_c01321{vertical-align:0.000000pt;}
.ls0_c01321{letter-spacing:0.000000pt;}
.ws1_c01321{word-spacing:0.000000pt;}
.ws0_c01321{word-spacing:110.161510pt;}
.fs18_c01321{font-size:5.120000pt;}
.fs15_c01321{font-size:15.360000pt;}
.fs11_c01321{font-size:20.480000pt;}
.fsd_c01321{font-size:23.040000pt;}
.fs7_c01321{font-size:30.720000pt;}
.fs13_c01321{font-size:33.280000pt;}
.fsc_c01321{font-size:35.840000pt;}
.fs14_c01321{font-size:40.960000pt;}
.fs5_c01321{font-size:43.520000pt;}
.fs9_c01321{font-size:46.080000pt;}
.fs3_c01321{font-size:48.640000pt;}
.fsa_c01321{font-size:51.200000pt;}
.fs0_c01321{font-size:53.760000pt;}
.fs2_c01321{font-size:56.320000pt;}
.fs4_c01321{font-size:58.880000pt;}
.fs8_c01321{font-size:61.440000pt;}
.fse_c01321{font-size:64.000000pt;}
.fs1_c01321{font-size:66.560000pt;}
.fs6_c01321{font-size:69.120000pt;}
.fs10_c01321{font-size:79.360000pt;}
.fs17_c01321{font-size:87.040000pt;}
.fsb_c01321{font-size:102.400000pt;}
.fs12_c01321{font-size:145.920000pt;}
.fsf_c01321{font-size:156.160000pt;}
.fs19_c01321{font-size:194.560000pt;}
.fs16_c01321{font-size:197.120000pt;}
.y0_c01321{bottom:0.000000pt;}
.y78_c01321{bottom:25.600000pt;}
.y77_c01321{bottom:39.680000pt;}
.y76_c01321{bottom:53.120000pt;}
.y75_c01321{bottom:82.560000pt;}
.y74_c01321{bottom:99.840000pt;}
.y41_c01321{bottom:119.680000pt;}
.y73_c01321{bottom:120.320000pt;}
.y42_c01321{bottom:120.960000pt;}
.y40_c01321{bottom:124.160000pt;}
.y7a_c01321{bottom:125.440000pt;}
.y7b_c01321{bottom:127.360000pt;}
.y7c_c01321{bottom:128.640000pt;}
.y72_c01321{bottom:151.040000pt;}
.y3f_c01321{bottom:159.360000pt;}
.y3e_c01321{bottom:161.920000pt;}
.y70_c01321{bottom:164.480000pt;}
.y6f_c01321{bottom:165.120000pt;}
.y6e_c01321{bottom:166.400000pt;}
.y71_c01321{bottom:170.240000pt;}
.y6d_c01321{bottom:171.520000pt;}
.y3d_c01321{bottom:197.120000pt;}
.y3b_c01321{bottom:200.320000pt;}
.y3c_c01321{bottom:200.960000pt;}
.y6a_c01321{bottom:201.600000pt;}
.y6b_c01321{bottom:202.240000pt;}
.y6c_c01321{bottom:203.520000pt;}
.y69_c01321{bottom:222.080000pt;}
.y68_c01321{bottom:227.840000pt;}
.y67_c01321{bottom:233.600000pt;}
.y37_c01321{bottom:235.520000pt;}
.y36_c01321{bottom:238.720000pt;}
.y39_c01321{bottom:239.360000pt;}
.y38_c01321{bottom:240.000000pt;}
.y3a_c01321{bottom:240.640000pt;}
.y79_c01321{bottom:242.560000pt;}
.y66_c01321{bottom:245.120000pt;}
.y65_c01321{bottom:245.760000pt;}
.y64_c01321{bottom:255.360000pt;}
.y63_c01321{bottom:266.240000pt;}
.y35_c01321{bottom:274.560000pt;}
.y34_c01321{bottom:277.120000pt;}
.y61_c01321{bottom:278.400000pt;}
.y62_c01321{bottom:279.040000pt;}
.y33_c01321{bottom:312.960000pt;}
.y32_c01321{bottom:316.160000pt;}
.y5f_c01321{bottom:317.440000pt;}
.y60_c01321{bottom:319.360000pt;}
.y31_c01321{bottom:352.000000pt;}
.y30_c01321{bottom:353.920000pt;}
.y2e_c01321{bottom:390.400000pt;}
.y2d_c01321{bottom:392.320000pt;}
.y5e_c01321{bottom:394.240000pt;}
.y2f_c01321{bottom:394.880000pt;}
.y2c_c01321{bottom:420.480000pt;}
.y28_c01321{bottom:430.720000pt;}
.y29_c01321{bottom:431.360000pt;}
.y2a_c01321{bottom:432.640000pt;}
.y2b_c01321{bottom:433.280000pt;}
.y5d_c01321{bottom:434.560000pt;}
.y26_c01321{bottom:467.840000pt;}
.y25_c01321{bottom:469.760000pt;}
.y27_c01321{bottom:470.400000pt;}
.y5b_c01321{bottom:471.680000pt;}
.y5c_c01321{bottom:472.960000pt;}
.y23_c01321{bottom:506.240000pt;}
.y22_c01321{bottom:507.520000pt;}
.y21_c01321{bottom:508.160000pt;}
.y5a_c01321{bottom:508.800000pt;}
.y24_c01321{bottom:510.720000pt;}
.y1d_c01321{bottom:544.640000pt;}
.y1c_c01321{bottom:545.280000pt;}
.y1b_c01321{bottom:545.920000pt;}
.y59_c01321{bottom:546.560000pt;}
.y20_c01321{bottom:547.200000pt;}
.y1e_c01321{bottom:547.840000pt;}
.y1f_c01321{bottom:548.480000pt;}
.y58_c01321{bottom:563.200000pt;}
.y57_c01321{bottom:579.200000pt;}
.y1a_c01321{bottom:583.040000pt;}
.y19_c01321{bottom:584.320000pt;}
.y56_c01321{bottom:584.960000pt;}
.y16_c01321{bottom:621.440000pt;}
.y15_c01321{bottom:622.080000pt;}
.y53_c01321{bottom:622.720000pt;}
.y18_c01321{bottom:623.360000pt;}
.y55_c01321{bottom:624.000000pt;}
.y17_c01321{bottom:624.640000pt;}
.y54_c01321{bottom:625.280000pt;}
.y13_c01321{bottom:659.840000pt;}
.y12_c01321{bottom:660.480000pt;}
.y52_c01321{bottom:661.120000pt;}
.y51_c01321{bottom:661.760000pt;}
.y14_c01321{bottom:663.680000pt;}
.y11_c01321{bottom:698.240000pt;}
.y10_c01321{bottom:698.880000pt;}
.y4e_c01321{bottom:700.160000pt;}
.y4f_c01321{bottom:700.800000pt;}
.y50_c01321{bottom:702.080000pt;}
.yf_c01321{bottom:736.640000pt;}
.ye_c01321{bottom:737.280000pt;}
.y4c_c01321{bottom:738.560000pt;}
.y4d_c01321{bottom:739.840000pt;}
.y4b_c01321{bottom:740.480000pt;}
.yd_c01321{bottom:775.040000pt;}
.yb_c01321{bottom:775.680000pt;}
.y49_c01321{bottom:776.320000pt;}
.yc_c01321{bottom:776.960000pt;}
.y4a_c01321{bottom:778.880000pt;}
.y9_c01321{bottom:813.440000pt;}
.y8_c01321{bottom:814.080000pt;}
.ya_c01321{bottom:815.360000pt;}
.y48_c01321{bottom:816.640000pt;}
.y4_c01321{bottom:851.840000pt;}
.y5_c01321{bottom:852.480000pt;}
.y7_c01321{bottom:853.120000pt;}
.y47_c01321{bottom:853.760000pt;}
.y6_c01321{bottom:855.680000pt;}
.y3_c01321{bottom:890.880000pt;}
.y46_c01321{bottom:891.520000pt;}
.y1_c01321{bottom:929.280000pt;}
.y2_c01321{bottom:929.920000pt;}
.y44_c01321{bottom:930.560000pt;}
.y45_c01321{bottom:931.200000pt;}
.y43_c01321{bottom:976.000000pt;}
.h1a_c01321{height:4.607500pt;}
.h17_c01321{height:13.822500pt;}
.h13_c01321{height:18.430000pt;}
.hf_c01321{height:20.733750pt;}
.h9_c01321{height:27.645000pt;}
.h15_c01321{height:29.948750pt;}
.he_c01321{height:32.252500pt;}
.h16_c01321{height:36.860000pt;}
.h7_c01321{height:39.163750pt;}
.hb_c01321{height:41.467500pt;}
.h5_c01321{height:43.771250pt;}
.hc_c01321{height:46.075000pt;}
.h2_c01321{height:48.378750pt;}
.h4_c01321{height:50.682500pt;}
.h6_c01321{height:52.986250pt;}
.ha_c01321{height:55.290000pt;}
.h10_c01321{height:57.593750pt;}
.h3_c01321{height:59.897500pt;}
.h8_c01321{height:62.201250pt;}
.h12_c01321{height:71.416250pt;}
.h19_c01321{height:78.327500pt;}
.hd_c01321{height:92.150000pt;}
.h14_c01321{height:131.313750pt;}
.h11_c01321{height:140.528750pt;}
.h1b_c01321{height:175.085000pt;}
.h18_c01321{height:177.388750pt;}
.h1_c01321{height:1021.333333pt;}
.h0_c01321{height:1021.440000pt;}
.w1_c01321{width:685.333333pt;}
.w0_c01321{width:685.440000pt;}
.x0_c01321{left:0.000000pt;}
.x1_c01321{left:40.320000pt;}
.x17_c01321{left:42.240000pt;}
.x8_c01321{left:58.240000pt;}
.x2_c01321{left:85.120000pt;}
.x13_c01321{left:86.400000pt;}
.xe_c01321{left:152.960000pt;}
.x3_c01321{left:162.560000pt;}
.x9_c01321{left:173.440000pt;}
.xa_c01321{left:201.600000pt;}
.x4_c01321{left:211.200000pt;}
.xc_c01321{left:218.880000pt;}
.xf_c01321{left:229.120000pt;}
.xb_c01321{left:249.600000pt;}
.xd_c01321{left:258.560000pt;}
.x7_c01321{left:277.120000pt;}
.x18_c01321{left:280.320000pt;}
.x19_c01321{left:288.640000pt;}
.x5_c01321{left:325.760000pt;}
.x14_c01321{left:336.000000pt;}
.x6_c01321{left:364.160000pt;}
.x15_c01321{left:383.360000pt;}
.x10_c01321{left:401.280000pt;}
.x11_c01321{left:439.040000pt;}
.x16_c01321{left:499.200000pt;}
.x12_c01321{left:508.160000pt;}
.x23_c01321{left:526.080000pt;}
.x1e_c01321{left:527.360000pt;}
.x22_c01321{left:555.520000pt;}
.x1b_c01321{left:557.440000pt;}
.x27_c01321{left:584.320000pt;}
.x1f_c01321{left:585.600000pt;}
.x1a_c01321{left:589.440000pt;}
.x2b_c01321{left:593.920000pt;}
.x1c_c01321{left:595.200000pt;}
.x26_c01321{left:613.760000pt;}
.x21_c01321{left:615.040000pt;}
.x24_c01321{left:622.720000pt;}
.x1d_c01321{left:624.000000pt;}
.x20_c01321{left:641.920000pt;}
.x2c_c01321{left:674.560000pt;}
.x28_c01321{left:675.840000pt;}
.x2d_c01321{left:677.760000pt;}
.x25_c01321{left:679.680000pt;}
.x2a_c01321{left:680.960000pt;}
.x29_c01321{left:682.880000pt;}
}





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

.ir_c01322:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01322{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01322;src:url('chunks/assets/font_7684ab5499ff4b7e04ea3869.woff2')format("woff");}.ff1_c01322{font-family:ff1_c01322;line-height:1.109863;font-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_c01322{transform:matrix(0.018750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018750,0.000000,0.000000,0.250000,0,0);}
.m29_c01322{transform:matrix(0.031675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031675,0.000000,0.000000,0.250000,0,0);}
.m25_c01322{transform:matrix(0.036100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036100,0.000000,0.000000,0.250000,0,0);}
.m30_c01322{transform:matrix(0.042625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042625,0.000000,0.000000,0.250000,0,0);}
.m2a_c01322{transform:matrix(0.046675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046675,0.000000,0.000000,0.250000,0,0);}
.m16_c01322{transform:matrix(0.078300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078300,0.000000,0.000000,0.250000,0,0);}
.m23_c01322{transform:matrix(0.078850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078850,0.000000,0.000000,0.250000,0,0);}
.m34_c01322{transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);}
.m35_c01322{transform:matrix(0.108600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108600,0.000000,0.000000,0.250000,0,0);}
.m28_c01322{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01322{transform:matrix(0.120325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120325,0.000000,0.000000,0.250000,0,0);}
.m31_c01322{transform:matrix(0.123075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123075,0.000000,0.000000,0.250000,0,0);}
.m2d_c01322{transform:matrix(0.128625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128625,0.000000,0.000000,0.250000,0,0);}
.m24_c01322{transform:matrix(0.128900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128900,0.000000,0.000000,0.250000,0,0);}
.m2c_c01322{transform:matrix(0.138850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138850,0.000000,0.000000,0.250000,0,0);}
.m33_c01322{transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);}
.m1a_c01322{transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);}
.m1d_c01322{transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);}
.m45_c01322{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m50_c01322{transform:matrix(0.228275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228275,0.000000,0.000000,0.250000,0,0);}
.m47_c01322{transform:matrix(0.232350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232350,0.000000,0.000000,0.250000,0,0);}
.m54_c01322{transform:matrix(0.233675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233675,0.000000,0.000000,0.250000,0,0);}
.m48_c01322{transform:matrix(0.235125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235125,0.000000,0.000000,0.250000,0,0);}
.m4d_c01322{transform:matrix(0.239400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239400,0.000000,0.000000,0.250000,0,0);}
.m19_c01322{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);}
.m53_c01322{transform:matrix(0.241125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241125,0.000000,0.000000,0.250000,0,0);}
.m2e_c01322{transform:matrix(0.242725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242725,0.000000,0.000000,0.250000,0,0);}
.m37_c01322{transform:matrix(0.242875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242875,0.000000,0.000000,0.250000,0,0);}
.m2f_c01322{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m4c_c01322{transform:matrix(0.243575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243575,0.000000,0.000000,0.250000,0,0);}
.mc_c01322{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m9_c01322{transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);}
.m46_c01322{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01322{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);}
.m41_c01322{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mf_c01322{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);}
.m3e_c01322{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01322{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mb_c01322{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.me_c01322{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.ma_c01322{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m4_c01322{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);}
.m27_c01322{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m43_c01322{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);}
.m4f_c01322{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m15_c01322{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m8_c01322{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m11_c01322{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m12_c01322{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m13_c01322{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m10_c01322{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01322{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m14_c01322{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1_c01322{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01322{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m5_c01322{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m17_c01322{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m36_c01322{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m2_c01322{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01322{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m22_c01322{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01322{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01322{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);}
.m4b_c01322{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);}
.m1b_c01322{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);}
.m40_c01322{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m18_c01322{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);}
.m3d_c01322{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m0_c01322{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m3_c01322{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);}
.m38_c01322{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m42_c01322{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);}
.m39_c01322{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);}
.m44_c01322{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);}
.m49_c01322{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);}
.m21_c01322{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);}
.m3b_c01322{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);}
.m55_c01322{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m4e_c01322{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m20_c01322{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);}
.m51_c01322{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);}
.md_c01322{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m57_c01322{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);}
.m6_c01322{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m52_c01322{transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);}
.m26_c01322{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m7_c01322{transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);}
.m56_c01322{transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);}
.v0_c01322{vertical-align:0.000000px;}
.ls0_c01322{letter-spacing:0.000000px;}
.sc__c01322{text-shadow:none;}
.sc0_c01322{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01322{-webkit-text-stroke:0px transparent;}
.sc0_c01322{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01322{word-spacing:0.000000px;}
.fc0_c01322{color:transparent;}
.fs12_c01322{font-size:8.640000px;}
.fsc_c01322{font-size:14.400000px;}
.fs11_c01322{font-size:17.280000px;}
.fsd_c01322{font-size:25.920000px;}
.fs17_c01322{font-size:31.680000px;}
.fs14_c01322{font-size:34.560000px;}
.fs5_c01322{font-size:37.440000px;}
.fs13_c01322{font-size:40.320000px;}
.fsb_c01322{font-size:43.200000px;}
.fse_c01322{font-size:48.960000px;}
.fs1_c01322{font-size:51.840000px;}
.fs4_c01322{font-size:54.720000px;}
.fs8_c01322{font-size:57.600000px;}
.fs7_c01322{font-size:60.480000px;}
.fs2_c01322{font-size:63.360000px;}
.fs9_c01322{font-size:66.240000px;}
.fsa_c01322{font-size:69.120000px;}
.fs0_c01322{font-size:72.000000px;}
.fs6_c01322{font-size:74.880000px;}
.fs3_c01322{font-size:77.760000px;}
.fs1b_c01322{font-size:80.640000px;}
.fs1a_c01322{font-size:83.520000px;}
.fs18_c01322{font-size:126.720000px;}
.fsf_c01322{font-size:164.160000px;}
.fs10_c01322{font-size:167.040000px;}
.fs19_c01322{font-size:172.800000px;}
.fs15_c01322{font-size:198.720000px;}
.fs16_c01322{font-size:230.400000px;}
.y0_c01322{bottom:0.000000px;}
.y4e_c01322{bottom:50.400000px;}
.y4d_c01322{bottom:60.480000px;}
.y4c_c01322{bottom:104.400000px;}
.y4b_c01322{bottom:123.840000px;}
.y78_c01322{bottom:134.640000px;}
.y48_c01322{bottom:135.360000px;}
.y79_c01322{bottom:136.080000px;}
.y7a_c01322{bottom:138.240000px;}
.y76_c01322{bottom:138.960000px;}
.y77_c01322{bottom:139.680000px;}
.y49_c01322{bottom:140.400000px;}
.y4a_c01322{bottom:143.280000px;}
.y47_c01322{bottom:154.800000px;}
.y8_c01322{bottom:177.840000px;}
.y7_c01322{bottom:182.160000px;}
.y46_c01322{bottom:183.600000px;}
.y45_c01322{bottom:192.960000px;}
.y74_c01322{bottom:219.600000px;}
.y75_c01322{bottom:222.480000px;}
.y73_c01322{bottom:224.640000px;}
.y42_c01322{bottom:225.360000px;}
.y44_c01322{bottom:226.080000px;}
.y43_c01322{bottom:243.360000px;}
.y41_c01322{bottom:249.840000px;}
.y40_c01322{bottom:263.520000px;}
.y71_c01322{bottom:264.240000px;}
.y72_c01322{bottom:265.680000px;}
.y3a_c01322{bottom:267.840000px;}
.y70_c01322{bottom:268.560000px;}
.y3b_c01322{bottom:269.280000px;}
.y3e_c01322{bottom:274.320000px;}
.y3f_c01322{bottom:275.040000px;}
.y3d_c01322{bottom:278.640000px;}
.y3c_c01322{bottom:279.360000px;}
.y39_c01322{bottom:289.440000px;}
.y38_c01322{bottom:291.600000px;}
.y6e_c01322{bottom:307.440000px;}
.y6f_c01322{bottom:308.160000px;}
.y6d_c01322{bottom:311.040000px;}
.y37_c01322{bottom:312.480000px;}
.y36_c01322{bottom:336.960000px;}
.y6c_c01322{bottom:350.640000px;}
.y35_c01322{bottom:354.240000px;}
.y33_c01322{bottom:355.680000px;}
.y34_c01322{bottom:356.400000px;}
.y32_c01322{bottom:357.120000px;}
.y6a_c01322{bottom:396.000000px;}
.y2f_c01322{bottom:397.440000px;}
.y6b_c01322{bottom:398.160000px;}
.y31_c01322{bottom:398.880000px;}
.y30_c01322{bottom:399.600000px;}
.y69_c01322{bottom:437.760000px;}
.y68_c01322{bottom:439.920000px;}
.y2c_c01322{bottom:440.640000px;}
.y2d_c01322{bottom:441.360000px;}
.y2e_c01322{bottom:442.800000px;}
.y2b_c01322{bottom:463.680000px;}
.y67_c01322{bottom:480.960000px;}
.y66_c01322{bottom:483.840000px;}
.y27_c01322{bottom:484.560000px;}
.y2a_c01322{bottom:485.280000px;}
.y29_c01322{bottom:486.720000px;}
.y28_c01322{bottom:499.680000px;}
.y65_c01322{bottom:524.880000px;}
.y64_c01322{bottom:525.600000px;}
.y24_c01322{bottom:527.760000px;}
.y25_c01322{bottom:528.480000px;}
.y26_c01322{bottom:529.200000px;}
.y63_c01322{bottom:568.080000px;}
.y23_c01322{bottom:570.240000px;}
.y62_c01322{bottom:571.680000px;}
.y21_c01322{bottom:572.400000px;}
.y22_c01322{bottom:573.120000px;}
.y61_c01322{bottom:612.000000px;}
.y1f_c01322{bottom:614.160000px;}
.y1e_c01322{bottom:614.880000px;}
.y20_c01322{bottom:615.600000px;}
.y60_c01322{bottom:655.200000px;}
.y1d_c01322{bottom:656.640000px;}
.y5f_c01322{bottom:658.080000px;}
.y5d_c01322{bottom:698.400000px;}
.y5c_c01322{bottom:699.120000px;}
.y1b_c01322{bottom:699.840000px;}
.y1c_c01322{bottom:700.560000px;}
.y5e_c01322{bottom:702.000000px;}
.y5b_c01322{bottom:741.600000px;}
.y17_c01322{bottom:743.040000px;}
.y59_c01322{bottom:743.760000px;}
.y18_c01322{bottom:745.200000px;}
.y5a_c01322{bottom:745.920000px;}
.y1a_c01322{bottom:754.560000px;}
.y19_c01322{bottom:757.440000px;}
.y16_c01322{bottom:778.320000px;}
.y57_c01322{bottom:784.800000px;}
.y14_c01322{bottom:786.240000px;}
.y15_c01322{bottom:786.960000px;}
.y58_c01322{bottom:788.400000px;}
.y56_c01322{bottom:789.120000px;}
.y55_c01322{bottom:828.000000px;}
.y12_c01322{bottom:828.720000px;}
.y13_c01322{bottom:829.440000px;}
.y54_c01322{bottom:831.600000px;}
.yf_c01322{bottom:871.200000px;}
.y11_c01322{bottom:871.920000px;}
.y10_c01322{bottom:873.360000px;}
.y52_c01322{bottom:913.680000px;}
.ye_c01322{bottom:914.400000px;}
.y51_c01322{bottom:915.120000px;}
.yc_c01322{bottom:915.840000px;}
.yd_c01322{bottom:917.280000px;}
.y53_c01322{bottom:918.000000px;}
.y4f_c01322{bottom:956.160000px;}
.ya_c01322{bottom:957.600000px;}
.yb_c01322{bottom:959.760000px;}
.y50_c01322{bottom:960.480000px;}
.y6_c01322{bottom:1000.080000px;}
.y4_c01322{bottom:1000.800000px;}
.y3_c01322{bottom:1001.520000px;}
.y9_c01322{bottom:1003.680000px;}
.y5_c01322{bottom:1004.400000px;}
.y2_c01322{bottom:1048.320000px;}
.y1_c01322{bottom:1099.440000px;}
.h13_c01322{height:7.775156px;}
.hd_c01322{height:12.958594px;}
.h12_c01322{height:15.550313px;}
.he_c01322{height:23.325469px;}
.h18_c01322{height:28.508906px;}
.h15_c01322{height:31.100625px;}
.h6_c01322{height:33.692344px;}
.h14_c01322{height:36.284062px;}
.hc_c01322{height:38.875781px;}
.hf_c01322{height:44.059219px;}
.h2_c01322{height:46.650937px;}
.h5_c01322{height:49.242656px;}
.h9_c01322{height:51.834375px;}
.h8_c01322{height:54.426094px;}
.h3_c01322{height:57.017812px;}
.ha_c01322{height:59.609531px;}
.hb_c01322{height:62.201250px;}
.h1_c01322{height:64.792969px;}
.h7_c01322{height:67.384687px;}
.h4_c01322{height:69.976406px;}
.h1c_c01322{height:72.568125px;}
.h1b_c01322{height:75.159844px;}
.h19_c01322{height:114.035625px;}
.h10_c01322{height:147.727969px;}
.h11_c01322{height:150.319687px;}
.h1a_c01322{height:155.503125px;}
.h16_c01322{height:178.828594px;}
.h17_c01322{height:207.337500px;}
.h0_c01322{height:1152.000000px;}
.w0_c01322{width:776.880000px;}
.w1_c01322{width:777.000000px;}
.x0_c01322{left:0.000000px;}
.x25_c01322{left:46.080000px;}
.x4_c01322{left:49.680000px;}
.x9_c01322{left:51.840000px;}
.x36_c01322{left:71.280000px;}
.x26_c01322{left:99.360000px;}
.x2_c01322{left:100.800000px;}
.x3_c01322{left:155.520000px;}
.x2a_c01322{left:176.400000px;}
.x5_c01322{left:185.760000px;}
.x2d_c01322{left:187.200000px;}
.x30_c01322{left:196.560000px;}
.xa_c01322{left:198.720000px;}
.x2f_c01322{left:209.520000px;}
.x27_c01322{left:218.880000px;}
.x6_c01322{left:231.120000px;}
.x2e_c01322{left:241.200000px;}
.x34_c01322{left:250.560000px;}
.x2c_c01322{left:252.000000px;}
.x28_c01322{left:273.600000px;}
.x31_c01322{left:275.760000px;}
.x7_c01322{left:285.120000px;}
.x35_c01322{left:295.920000px;}
.x32_c01322{left:326.160000px;}
.x8_c01322{left:327.600000px;}
.x33_c01322{left:370.800000px;}
.x2b_c01322{left:381.600000px;}
.x29_c01322{left:424.800000px;}
.x1a_c01322{left:574.560000px;}
.x17_c01322{left:576.000000px;}
.x21_c01322{left:595.440000px;}
.x12_c01322{left:596.880000px;}
.x1f_c01322{left:606.960000px;}
.x10_c01322{left:608.400000px;}
.x1e_c01322{left:628.560000px;}
.x14_c01322{left:630.000000px;}
.xb_c01322{left:631.440000px;}
.x1_c01322{left:660.960000px;}
.x1b_c01322{left:662.400000px;}
.xf_c01322{left:663.840000px;}
.x18_c01322{left:672.480000px;}
.xc_c01322{left:673.920000px;}
.x1d_c01322{left:694.080000px;}
.x11_c01322{left:695.520000px;}
.x19_c01322{left:704.160000px;}
.xd_c01322{left:706.320000px;}
.x1c_c01322{left:725.760000px;}
.xe_c01322{left:727.200000px;}
.x24_c01322{left:762.480000px;}
.x20_c01322{left:763.920000px;}
.x15_c01322{left:766.080000px;}
.x23_c01322{left:768.960000px;}
.x22_c01322{left:771.120000px;}
.x13_c01322{left:772.560000px;}
.x16_c01322{left:775.440000px;}
@media print{
.v0_c01322{vertical-align:0.000000pt;}
.ls0_c01322{letter-spacing:0.000000pt;}
.ws0_c01322{word-spacing:0.000000pt;}
.fs12_c01322{font-size:7.680000pt;}
.fsc_c01322{font-size:12.800000pt;}
.fs11_c01322{font-size:15.360000pt;}
.fsd_c01322{font-size:23.040000pt;}
.fs17_c01322{font-size:28.160000pt;}
.fs14_c01322{font-size:30.720000pt;}
.fs5_c01322{font-size:33.280000pt;}
.fs13_c01322{font-size:35.840000pt;}
.fsb_c01322{font-size:38.400000pt;}
.fse_c01322{font-size:43.520000pt;}
.fs1_c01322{font-size:46.080000pt;}
.fs4_c01322{font-size:48.640000pt;}
.fs8_c01322{font-size:51.200000pt;}
.fs7_c01322{font-size:53.760000pt;}
.fs2_c01322{font-size:56.320000pt;}
.fs9_c01322{font-size:58.880000pt;}
.fsa_c01322{font-size:61.440000pt;}
.fs0_c01322{font-size:64.000000pt;}
.fs6_c01322{font-size:66.560000pt;}
.fs3_c01322{font-size:69.120000pt;}
.fs1b_c01322{font-size:71.680000pt;}
.fs1a_c01322{font-size:74.240000pt;}
.fs18_c01322{font-size:112.640000pt;}
.fsf_c01322{font-size:145.920000pt;}
.fs10_c01322{font-size:148.480000pt;}
.fs19_c01322{font-size:153.600000pt;}
.fs15_c01322{font-size:176.640000pt;}
.fs16_c01322{font-size:204.800000pt;}
.y0_c01322{bottom:0.000000pt;}
.y4e_c01322{bottom:44.800000pt;}
.y4d_c01322{bottom:53.760000pt;}
.y4c_c01322{bottom:92.800000pt;}
.y4b_c01322{bottom:110.080000pt;}
.y78_c01322{bottom:119.680000pt;}
.y48_c01322{bottom:120.320000pt;}
.y79_c01322{bottom:120.960000pt;}
.y7a_c01322{bottom:122.880000pt;}
.y76_c01322{bottom:123.520000pt;}
.y77_c01322{bottom:124.160000pt;}
.y49_c01322{bottom:124.800000pt;}
.y4a_c01322{bottom:127.360000pt;}
.y47_c01322{bottom:137.600000pt;}
.y8_c01322{bottom:158.080000pt;}
.y7_c01322{bottom:161.920000pt;}
.y46_c01322{bottom:163.200000pt;}
.y45_c01322{bottom:171.520000pt;}
.y74_c01322{bottom:195.200000pt;}
.y75_c01322{bottom:197.760000pt;}
.y73_c01322{bottom:199.680000pt;}
.y42_c01322{bottom:200.320000pt;}
.y44_c01322{bottom:200.960000pt;}
.y43_c01322{bottom:216.320000pt;}
.y41_c01322{bottom:222.080000pt;}
.y40_c01322{bottom:234.240000pt;}
.y71_c01322{bottom:234.880000pt;}
.y72_c01322{bottom:236.160000pt;}
.y3a_c01322{bottom:238.080000pt;}
.y70_c01322{bottom:238.720000pt;}
.y3b_c01322{bottom:239.360000pt;}
.y3e_c01322{bottom:243.840000pt;}
.y3f_c01322{bottom:244.480000pt;}
.y3d_c01322{bottom:247.680000pt;}
.y3c_c01322{bottom:248.320000pt;}
.y39_c01322{bottom:257.280000pt;}
.y38_c01322{bottom:259.200000pt;}
.y6e_c01322{bottom:273.280000pt;}
.y6f_c01322{bottom:273.920000pt;}
.y6d_c01322{bottom:276.480000pt;}
.y37_c01322{bottom:277.760000pt;}
.y36_c01322{bottom:299.520000pt;}
.y6c_c01322{bottom:311.680000pt;}
.y35_c01322{bottom:314.880000pt;}
.y33_c01322{bottom:316.160000pt;}
.y34_c01322{bottom:316.800000pt;}
.y32_c01322{bottom:317.440000pt;}
.y6a_c01322{bottom:352.000000pt;}
.y2f_c01322{bottom:353.280000pt;}
.y6b_c01322{bottom:353.920000pt;}
.y31_c01322{bottom:354.560000pt;}
.y30_c01322{bottom:355.200000pt;}
.y69_c01322{bottom:389.120000pt;}
.y68_c01322{bottom:391.040000pt;}
.y2c_c01322{bottom:391.680000pt;}
.y2d_c01322{bottom:392.320000pt;}
.y2e_c01322{bottom:393.600000pt;}
.y2b_c01322{bottom:412.160000pt;}
.y67_c01322{bottom:427.520000pt;}
.y66_c01322{bottom:430.080000pt;}
.y27_c01322{bottom:430.720000pt;}
.y2a_c01322{bottom:431.360000pt;}
.y29_c01322{bottom:432.640000pt;}
.y28_c01322{bottom:444.160000pt;}
.y65_c01322{bottom:466.560000pt;}
.y64_c01322{bottom:467.200000pt;}
.y24_c01322{bottom:469.120000pt;}
.y25_c01322{bottom:469.760000pt;}
.y26_c01322{bottom:470.400000pt;}
.y63_c01322{bottom:504.960000pt;}
.y23_c01322{bottom:506.880000pt;}
.y62_c01322{bottom:508.160000pt;}
.y21_c01322{bottom:508.800000pt;}
.y22_c01322{bottom:509.440000pt;}
.y61_c01322{bottom:544.000000pt;}
.y1f_c01322{bottom:545.920000pt;}
.y1e_c01322{bottom:546.560000pt;}
.y20_c01322{bottom:547.200000pt;}
.y60_c01322{bottom:582.400000pt;}
.y1d_c01322{bottom:583.680000pt;}
.y5f_c01322{bottom:584.960000pt;}
.y5d_c01322{bottom:620.800000pt;}
.y5c_c01322{bottom:621.440000pt;}
.y1b_c01322{bottom:622.080000pt;}
.y1c_c01322{bottom:622.720000pt;}
.y5e_c01322{bottom:624.000000pt;}
.y5b_c01322{bottom:659.200000pt;}
.y17_c01322{bottom:660.480000pt;}
.y59_c01322{bottom:661.120000pt;}
.y18_c01322{bottom:662.400000pt;}
.y5a_c01322{bottom:663.040000pt;}
.y1a_c01322{bottom:670.720000pt;}
.y19_c01322{bottom:673.280000pt;}
.y16_c01322{bottom:691.840000pt;}
.y57_c01322{bottom:697.600000pt;}
.y14_c01322{bottom:698.880000pt;}
.y15_c01322{bottom:699.520000pt;}
.y58_c01322{bottom:700.800000pt;}
.y56_c01322{bottom:701.440000pt;}
.y55_c01322{bottom:736.000000pt;}
.y12_c01322{bottom:736.640000pt;}
.y13_c01322{bottom:737.280000pt;}
.y54_c01322{bottom:739.200000pt;}
.yf_c01322{bottom:774.400000pt;}
.y11_c01322{bottom:775.040000pt;}
.y10_c01322{bottom:776.320000pt;}
.y52_c01322{bottom:812.160000pt;}
.ye_c01322{bottom:812.800000pt;}
.y51_c01322{bottom:813.440000pt;}
.yc_c01322{bottom:814.080000pt;}
.yd_c01322{bottom:815.360000pt;}
.y53_c01322{bottom:816.000000pt;}
.y4f_c01322{bottom:849.920000pt;}
.ya_c01322{bottom:851.200000pt;}
.yb_c01322{bottom:853.120000pt;}
.y50_c01322{bottom:853.760000pt;}
.y6_c01322{bottom:888.960000pt;}
.y4_c01322{bottom:889.600000pt;}
.y3_c01322{bottom:890.240000pt;}
.y9_c01322{bottom:892.160000pt;}
.y5_c01322{bottom:892.800000pt;}
.y2_c01322{bottom:931.840000pt;}
.y1_c01322{bottom:977.280000pt;}
.h13_c01322{height:6.911250pt;}
.hd_c01322{height:11.518750pt;}
.h12_c01322{height:13.822500pt;}
.he_c01322{height:20.733750pt;}
.h18_c01322{height:25.341250pt;}
.h15_c01322{height:27.645000pt;}
.h6_c01322{height:29.948750pt;}
.h14_c01322{height:32.252500pt;}
.hc_c01322{height:34.556250pt;}
.hf_c01322{height:39.163750pt;}
.h2_c01322{height:41.467500pt;}
.h5_c01322{height:43.771250pt;}
.h9_c01322{height:46.075000pt;}
.h8_c01322{height:48.378750pt;}
.h3_c01322{height:50.682500pt;}
.ha_c01322{height:52.986250pt;}
.hb_c01322{height:55.290000pt;}
.h1_c01322{height:57.593750pt;}
.h7_c01322{height:59.897500pt;}
.h4_c01322{height:62.201250pt;}
.h1c_c01322{height:64.505000pt;}
.h1b_c01322{height:66.808750pt;}
.h19_c01322{height:101.365000pt;}
.h10_c01322{height:131.313750pt;}
.h11_c01322{height:133.617500pt;}
.h1a_c01322{height:138.225000pt;}
.h16_c01322{height:158.958750pt;}
.h17_c01322{height:184.300000pt;}
.h0_c01322{height:1024.000000pt;}
.w0_c01322{width:690.560000pt;}
.w1_c01322{width:690.666667pt;}
.x0_c01322{left:0.000000pt;}
.x25_c01322{left:40.960000pt;}
.x4_c01322{left:44.160000pt;}
.x9_c01322{left:46.080000pt;}
.x36_c01322{left:63.360000pt;}
.x26_c01322{left:88.320000pt;}
.x2_c01322{left:89.600000pt;}
.x3_c01322{left:138.240000pt;}
.x2a_c01322{left:156.800000pt;}
.x5_c01322{left:165.120000pt;}
.x2d_c01322{left:166.400000pt;}
.x30_c01322{left:174.720000pt;}
.xa_c01322{left:176.640000pt;}
.x2f_c01322{left:186.240000pt;}
.x27_c01322{left:194.560000pt;}
.x6_c01322{left:205.440000pt;}
.x2e_c01322{left:214.400000pt;}
.x34_c01322{left:222.720000pt;}
.x2c_c01322{left:224.000000pt;}
.x28_c01322{left:243.200000pt;}
.x31_c01322{left:245.120000pt;}
.x7_c01322{left:253.440000pt;}
.x35_c01322{left:263.040000pt;}
.x32_c01322{left:289.920000pt;}
.x8_c01322{left:291.200000pt;}
.x33_c01322{left:329.600000pt;}
.x2b_c01322{left:339.200000pt;}
.x29_c01322{left:377.600000pt;}
.x1a_c01322{left:510.720000pt;}
.x17_c01322{left:512.000000pt;}
.x21_c01322{left:529.280000pt;}
.x12_c01322{left:530.560000pt;}
.x1f_c01322{left:539.520000pt;}
.x10_c01322{left:540.800000pt;}
.x1e_c01322{left:558.720000pt;}
.x14_c01322{left:560.000000pt;}
.xb_c01322{left:561.280000pt;}
.x1_c01322{left:587.520000pt;}
.x1b_c01322{left:588.800000pt;}
.xf_c01322{left:590.080000pt;}
.x18_c01322{left:597.760000pt;}
.xc_c01322{left:599.040000pt;}
.x1d_c01322{left:616.960000pt;}
.x11_c01322{left:618.240000pt;}
.x19_c01322{left:625.920000pt;}
.xd_c01322{left:627.840000pt;}
.x1c_c01322{left:645.120000pt;}
.xe_c01322{left:646.400000pt;}
.x24_c01322{left:677.760000pt;}
.x20_c01322{left:679.040000pt;}
.x15_c01322{left:680.960000pt;}
.x23_c01322{left:683.520000pt;}
.x22_c01322{left:685.440000pt;}
.x13_c01322{left:686.720000pt;}
.x16_c01322{left:689.280000pt;}
}





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

.ir_c01323:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01323{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01323;src:url('chunks/assets/font_1fafb84a9dbaa454bad2376a.woff2')format("woff");}.ff1_c01323{font-family:ff1_c01323;line-height:1.109863;font-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_c01323{transform:matrix(0.183950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183950,0.000000,0.000000,0.250000,0,0);}
.m33_c01323{transform:matrix(0.208300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208300,0.000000,0.000000,0.250000,0,0);}
.m11_c01323{transform:matrix(0.220850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220850,0.000000,0.000000,0.250000,0,0);}
.m10_c01323{transform:matrix(0.222025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222025,0.000000,0.000000,0.250000,0,0);}
.m21_c01323{transform:matrix(0.229450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229450,0.000000,0.000000,0.250000,0,0);}
.m1c_c01323{transform:matrix(0.234200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234200,0.000000,0.000000,0.250000,0,0);}
.m34_c01323{transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);}
.m22_c01323{transform:matrix(0.235950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235950,0.000000,0.000000,0.250000,0,0);}
.m12_c01323{transform:matrix(0.236450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236450,0.000000,0.000000,0.250000,0,0);}
.m25_c01323{transform:matrix(0.239100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239100,0.000000,0.000000,0.250000,0,0);}
.m2f_c01323{transform:matrix(0.240975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240975,0.000000,0.000000,0.250000,0,0);}
.md_c01323{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01323{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);}
.m2b_c01323{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m6_c01323{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m3_c01323{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);}
.m3a_c01323{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m16_c01323{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.ma_c01323{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_c01323{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);}
.m2d_c01323{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m24_c01323{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);}
.m27_c01323{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m9_c01323{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m7_c01323{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m8_c01323{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m20_c01323{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01323{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m26_c01323{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m14_c01323{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01323{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m30_c01323{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m29_c01323{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m35_c01323{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m15_c01323{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m5_c01323{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1_c01323{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m18_c01323{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_c01323{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.mf_c01323{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);}
.m39_c01323{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);}
.m38_c01323{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m0_c01323{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);}
.m4_c01323{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);}
.m2a_c01323{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);}
.m28_c01323{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01323{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);}
.m17_c01323{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);}
.m19_c01323{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);}
.m36_c01323{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);}
.m23_c01323{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m31_c01323{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.mb_c01323{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);}
.m32_c01323{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);}
.m1d_c01323{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01323{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m37_c01323{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01323{transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);}
.me_c01323{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.v1_c01323{vertical-align:-2.880000px;}
.v0_c01323{vertical-align:0.000000px;}
.v2_c01323{vertical-align:5.760000px;}
.ls1_c01323{letter-spacing:0.000000px;}
.ls0_c01323{letter-spacing:71.973120px;}
.sc__c01323{text-shadow:none;}
.sc0_c01323{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01323{-webkit-text-stroke:0px transparent;}
.sc0_c01323{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01323{word-spacing:-13.783440px;}
.ws1_c01323{word-spacing:0.000000px;}
.fc0_c01323{color:transparent;}
.fsb_c01323{font-size:31.680000px;}
.fs11_c01323{font-size:34.560000px;}
.fsf_c01323{font-size:40.320000px;}
.fsc_c01323{font-size:43.200000px;}
.fs1_c01323{font-size:51.840000px;}
.fs7_c01323{font-size:54.720000px;}
.fs5_c01323{font-size:57.600000px;}
.fs3_c01323{font-size:60.480000px;}
.fs8_c01323{font-size:63.360000px;}
.fse_c01323{font-size:66.240000px;}
.fs9_c01323{font-size:69.120000px;}
.fs0_c01323{font-size:72.000000px;}
.fsa_c01323{font-size:74.880000px;}
.fs6_c01323{font-size:77.760000px;}
.fsd_c01323{font-size:80.640000px;}
.fs4_c01323{font-size:83.520000px;}
.fs2_c01323{font-size:95.040000px;}
.fs10_c01323{font-size:109.440000px;}
.y0_c01323{bottom:0.000000px;}
.y48_c01323{bottom:65.520000px;}
.y47_c01323{bottom:66.240000px;}
.y46_c01323{bottom:69.840000px;}
.y49_c01323{bottom:72.720000px;}
.y43_c01323{bottom:103.680000px;}
.y3d_c01323{bottom:108.720000px;}
.y3e_c01323{bottom:110.160000px;}
.y40_c01323{bottom:110.880000px;}
.y3f_c01323{bottom:112.320000px;}
.y3c_c01323{bottom:113.040000px;}
.y41_c01323{bottom:113.760000px;}
.y42_c01323{bottom:114.480000px;}
.y44_c01323{bottom:115.200000px;}
.y45_c01323{bottom:116.640000px;}
.y39_c01323{bottom:151.920000px;}
.y3a_c01323{bottom:153.360000px;}
.y3b_c01323{bottom:154.800000px;}
.y38_c01323{bottom:155.520000px;}
.y37_c01323{bottom:195.840000px;}
.y36_c01323{bottom:196.560000px;}
.y35_c01323{bottom:200.160000px;}
.y34_c01323{bottom:239.760000px;}
.y32_c01323{bottom:242.640000px;}
.y33_c01323{bottom:244.080000px;}
.y31_c01323{bottom:283.680000px;}
.y30_c01323{bottom:287.280000px;}
.y2f_c01323{bottom:326.880000px;}
.y2e_c01323{bottom:329.760000px;}
.y2d_c01323{bottom:370.080000px;}
.y2c_c01323{bottom:372.960000px;}
.y2a_c01323{bottom:412.560000px;}
.y2b_c01323{bottom:414.000000px;}
.y29_c01323{bottom:415.440000px;}
.y27_c01323{bottom:456.480000px;}
.y28_c01323{bottom:457.200000px;}
.y26_c01323{bottom:459.360000px;}
.y25_c01323{bottom:499.680000px;}
.y24_c01323{bottom:502.560000px;}
.y22_c01323{bottom:542.880000px;}
.y23_c01323{bottom:545.760000px;}
.y21_c01323{bottom:546.480000px;}
.y20_c01323{bottom:547.200000px;}
.y1f_c01323{bottom:586.080000px;}
.y1e_c01323{bottom:589.680000px;}
.y1d_c01323{bottom:629.280000px;}
.y1c_c01323{bottom:632.160000px;}
.y1a_c01323{bottom:632.880000px;}
.y1b_c01323{bottom:633.600000px;}
.y18_c01323{bottom:673.200000px;}
.y17_c01323{bottom:673.920000px;}
.y19_c01323{bottom:676.800000px;}
.y16_c01323{bottom:715.680000px;}
.y15_c01323{bottom:717.120000px;}
.y14_c01323{bottom:759.600000px;}
.y13_c01323{bottom:760.320000px;}
.y12_c01323{bottom:802.800000px;}
.y11_c01323{bottom:804.240000px;}
.yf_c01323{bottom:850.320000px;}
.y10_c01323{bottom:851.040000px;}
.yd_c01323{bottom:900.000000px;}
.ye_c01323{bottom:900.720000px;}
.y8_c01323{bottom:943.920000px;}
.y6_c01323{bottom:944.640000px;}
.yc_c01323{bottom:946.080000px;}
.y7_c01323{bottom:947.520000px;}
.y5_c01323{bottom:986.400000px;}
.y9_c01323{bottom:987.120000px;}
.y4_c01323{bottom:987.840000px;}
.ya_c01323{bottom:988.560000px;}
.yb_c01323{bottom:989.280000px;}
.y3_c01323{bottom:1023.120000px;}
.y2_c01323{bottom:1034.640000px;}
.y1_c01323{bottom:1100.160000px;}
.hd_c01323{height:28.508906px;}
.h13_c01323{height:31.100625px;}
.h11_c01323{height:36.284062px;}
.he_c01323{height:38.875781px;}
.h3_c01323{height:46.650937px;}
.h9_c01323{height:49.242656px;}
.h7_c01323{height:51.834375px;}
.h5_c01323{height:54.426094px;}
.ha_c01323{height:57.017812px;}
.h10_c01323{height:59.609531px;}
.hb_c01323{height:62.201250px;}
.h2_c01323{height:64.792969px;}
.hc_c01323{height:67.384687px;}
.h8_c01323{height:69.976406px;}
.hf_c01323{height:72.568125px;}
.h6_c01323{height:75.159844px;}
.h4_c01323{height:85.526719px;}
.h12_c01323{height:98.485312px;}
.h1_c01323{height:1149.750000px;}
.h0_c01323{height:1149.840000px;}
.w1_c01323{width:773.250000px;}
.w0_c01323{width:773.280000px;}
.x0_c01323{left:0.000000px;}
.x15_c01323{left:45.360000px;}
.x4_c01323{left:46.800000px;}
.x25_c01323{left:48.240000px;}
.x12_c01323{left:66.960000px;}
.x16_c01323{left:95.760000px;}
.x2_c01323{left:97.200000px;}
.x3_c01323{left:151.920000px;}
.x1b_c01323{left:162.000000px;}
.x5_c01323{left:173.520000px;}
.x10_c01323{left:183.600000px;}
.x19_c01323{left:194.400000px;}
.xd_c01323{left:216.000000px;}
.x13_c01323{left:226.800000px;}
.x1a_c01323{left:236.880000px;}
.x11_c01323{left:238.320000px;}
.x17_c01323{left:248.400000px;}
.xe_c01323{left:270.000000px;}
.x1d_c01323{left:292.320000px;}
.x18_c01323{left:302.400000px;}
.xf_c01323{left:312.480000px;}
.x1c_c01323{left:334.800000px;}
.x1e_c01323{left:378.000000px;}
.x14_c01323{left:388.800000px;}
.x1f_c01323{left:431.280000px;}
.x20_c01323{left:473.040000px;}
.x6_c01323{left:573.120000px;}
.xb_c01323{left:594.000000px;}
.x21_c01323{left:624.960000px;}
.x7_c01323{left:628.560000px;}
.x26_c01323{left:657.360000px;}
.x8_c01323{left:660.240000px;}
.x1_c01323{left:663.120000px;}
.x22_c01323{left:668.160000px;}
.xc_c01323{left:670.320000px;}
.x23_c01323{left:699.840000px;}
.x9_c01323{left:703.440000px;}
.x24_c01323{left:720.000000px;}
.xa_c01323{left:723.600000px;}
@media print{
.v1_c01323{vertical-align:-2.560000pt;}
.v0_c01323{vertical-align:0.000000pt;}
.v2_c01323{vertical-align:5.120000pt;}
.ls1_c01323{letter-spacing:0.000000pt;}
.ls0_c01323{letter-spacing:63.976107pt;}
.ws0_c01323{word-spacing:-12.251947pt;}
.ws1_c01323{word-spacing:0.000000pt;}
.fsb_c01323{font-size:28.160000pt;}
.fs11_c01323{font-size:30.720000pt;}
.fsf_c01323{font-size:35.840000pt;}
.fsc_c01323{font-size:38.400000pt;}
.fs1_c01323{font-size:46.080000pt;}
.fs7_c01323{font-size:48.640000pt;}
.fs5_c01323{font-size:51.200000pt;}
.fs3_c01323{font-size:53.760000pt;}
.fs8_c01323{font-size:56.320000pt;}
.fse_c01323{font-size:58.880000pt;}
.fs9_c01323{font-size:61.440000pt;}
.fs0_c01323{font-size:64.000000pt;}
.fsa_c01323{font-size:66.560000pt;}
.fs6_c01323{font-size:69.120000pt;}
.fsd_c01323{font-size:71.680000pt;}
.fs4_c01323{font-size:74.240000pt;}
.fs2_c01323{font-size:84.480000pt;}
.fs10_c01323{font-size:97.280000pt;}
.y0_c01323{bottom:0.000000pt;}
.y48_c01323{bottom:58.240000pt;}
.y47_c01323{bottom:58.880000pt;}
.y46_c01323{bottom:62.080000pt;}
.y49_c01323{bottom:64.640000pt;}
.y43_c01323{bottom:92.160000pt;}
.y3d_c01323{bottom:96.640000pt;}
.y3e_c01323{bottom:97.920000pt;}
.y40_c01323{bottom:98.560000pt;}
.y3f_c01323{bottom:99.840000pt;}
.y3c_c01323{bottom:100.480000pt;}
.y41_c01323{bottom:101.120000pt;}
.y42_c01323{bottom:101.760000pt;}
.y44_c01323{bottom:102.400000pt;}
.y45_c01323{bottom:103.680000pt;}
.y39_c01323{bottom:135.040000pt;}
.y3a_c01323{bottom:136.320000pt;}
.y3b_c01323{bottom:137.600000pt;}
.y38_c01323{bottom:138.240000pt;}
.y37_c01323{bottom:174.080000pt;}
.y36_c01323{bottom:174.720000pt;}
.y35_c01323{bottom:177.920000pt;}
.y34_c01323{bottom:213.120000pt;}
.y32_c01323{bottom:215.680000pt;}
.y33_c01323{bottom:216.960000pt;}
.y31_c01323{bottom:252.160000pt;}
.y30_c01323{bottom:255.360000pt;}
.y2f_c01323{bottom:290.560000pt;}
.y2e_c01323{bottom:293.120000pt;}
.y2d_c01323{bottom:328.960000pt;}
.y2c_c01323{bottom:331.520000pt;}
.y2a_c01323{bottom:366.720000pt;}
.y2b_c01323{bottom:368.000000pt;}
.y29_c01323{bottom:369.280000pt;}
.y27_c01323{bottom:405.760000pt;}
.y28_c01323{bottom:406.400000pt;}
.y26_c01323{bottom:408.320000pt;}
.y25_c01323{bottom:444.160000pt;}
.y24_c01323{bottom:446.720000pt;}
.y22_c01323{bottom:482.560000pt;}
.y23_c01323{bottom:485.120000pt;}
.y21_c01323{bottom:485.760000pt;}
.y20_c01323{bottom:486.400000pt;}
.y1f_c01323{bottom:520.960000pt;}
.y1e_c01323{bottom:524.160000pt;}
.y1d_c01323{bottom:559.360000pt;}
.y1c_c01323{bottom:561.920000pt;}
.y1a_c01323{bottom:562.560000pt;}
.y1b_c01323{bottom:563.200000pt;}
.y18_c01323{bottom:598.400000pt;}
.y17_c01323{bottom:599.040000pt;}
.y19_c01323{bottom:601.600000pt;}
.y16_c01323{bottom:636.160000pt;}
.y15_c01323{bottom:637.440000pt;}
.y14_c01323{bottom:675.200000pt;}
.y13_c01323{bottom:675.840000pt;}
.y12_c01323{bottom:713.600000pt;}
.y11_c01323{bottom:714.880000pt;}
.yf_c01323{bottom:755.840000pt;}
.y10_c01323{bottom:756.480000pt;}
.yd_c01323{bottom:800.000000pt;}
.ye_c01323{bottom:800.640000pt;}
.y8_c01323{bottom:839.040000pt;}
.y6_c01323{bottom:839.680000pt;}
.yc_c01323{bottom:840.960000pt;}
.y7_c01323{bottom:842.240000pt;}
.y5_c01323{bottom:876.800000pt;}
.y9_c01323{bottom:877.440000pt;}
.y4_c01323{bottom:878.080000pt;}
.ya_c01323{bottom:878.720000pt;}
.yb_c01323{bottom:879.360000pt;}
.y3_c01323{bottom:909.440000pt;}
.y2_c01323{bottom:919.680000pt;}
.y1_c01323{bottom:977.920000pt;}
.hd_c01323{height:25.341250pt;}
.h13_c01323{height:27.645000pt;}
.h11_c01323{height:32.252500pt;}
.he_c01323{height:34.556250pt;}
.h3_c01323{height:41.467500pt;}
.h9_c01323{height:43.771250pt;}
.h7_c01323{height:46.075000pt;}
.h5_c01323{height:48.378750pt;}
.ha_c01323{height:50.682500pt;}
.h10_c01323{height:52.986250pt;}
.hb_c01323{height:55.290000pt;}
.h2_c01323{height:57.593750pt;}
.hc_c01323{height:59.897500pt;}
.h8_c01323{height:62.201250pt;}
.hf_c01323{height:64.505000pt;}
.h6_c01323{height:66.808750pt;}
.h4_c01323{height:76.023750pt;}
.h12_c01323{height:87.542500pt;}
.h1_c01323{height:1022.000000pt;}
.h0_c01323{height:1022.080000pt;}
.w1_c01323{width:687.333333pt;}
.w0_c01323{width:687.360000pt;}
.x0_c01323{left:0.000000pt;}
.x15_c01323{left:40.320000pt;}
.x4_c01323{left:41.600000pt;}
.x25_c01323{left:42.880000pt;}
.x12_c01323{left:59.520000pt;}
.x16_c01323{left:85.120000pt;}
.x2_c01323{left:86.400000pt;}
.x3_c01323{left:135.040000pt;}
.x1b_c01323{left:144.000000pt;}
.x5_c01323{left:154.240000pt;}
.x10_c01323{left:163.200000pt;}
.x19_c01323{left:172.800000pt;}
.xd_c01323{left:192.000000pt;}
.x13_c01323{left:201.600000pt;}
.x1a_c01323{left:210.560000pt;}
.x11_c01323{left:211.840000pt;}
.x17_c01323{left:220.800000pt;}
.xe_c01323{left:240.000000pt;}
.x1d_c01323{left:259.840000pt;}
.x18_c01323{left:268.800000pt;}
.xf_c01323{left:277.760000pt;}
.x1c_c01323{left:297.600000pt;}
.x1e_c01323{left:336.000000pt;}
.x14_c01323{left:345.600000pt;}
.x1f_c01323{left:383.360000pt;}
.x20_c01323{left:420.480000pt;}
.x6_c01323{left:509.440000pt;}
.xb_c01323{left:528.000000pt;}
.x21_c01323{left:555.520000pt;}
.x7_c01323{left:558.720000pt;}
.x26_c01323{left:584.320000pt;}
.x8_c01323{left:586.880000pt;}
.x1_c01323{left:589.440000pt;}
.x22_c01323{left:593.920000pt;}
.xc_c01323{left:595.840000pt;}
.x23_c01323{left:622.080000pt;}
.x9_c01323{left:625.280000pt;}
.x24_c01323{left:640.000000pt;}
.xa_c01323{left:643.200000pt;}
}





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

.ir_c01324:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01324{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01324;src:url('chunks/assets/font_f41039f985b1bd2937878b3b.woff2')format("woff");}.ff1_c01324{font-family:ff1_c01324;line-height:1.109863;font-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_c01324{transform:matrix(0.017050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017050,0.000000,0.000000,0.250000,0,0);}
.m45_c01324{transform:matrix(0.069425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069425,0.000000,0.000000,0.250000,0,0);}
.m13_c01324{transform:matrix(0.075075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075075,0.000000,0.000000,0.250000,0,0);}
.m12_c01324{transform:matrix(0.124900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124900,0.000000,0.000000,0.250000,0,0);}
.m26_c01324{transform:matrix(0.223475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223475,0.000000,0.000000,0.250000,0,0);}
.m47_c01324{transform:matrix(0.237725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237725,0.000000,0.000000,0.250000,0,0);}
.m3c_c01324{transform:matrix(0.238675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238675,0.000000,0.000000,0.250000,0,0);}
.m46_c01324{transform:matrix(0.242775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242775,0.000000,0.000000,0.250000,0,0);}
.m49_c01324{transform:matrix(0.247275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247275,0.000000,0.000000,0.250000,0,0);}
.m4_c01324{transform:matrix(0.247875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247875,0.000000,0.000000,0.250000,0,0);}
.m2f_c01324{transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);}
.m23_c01324{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01324{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m28_c01324{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);}
.m2c_c01324{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);}
.m32_c01324{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01324{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m6_c01324{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);}
.m35_c01324{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m20_c01324{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_c01324{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m19_c01324{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.md_c01324{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01324{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01324{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.ma_c01324{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_c01324{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m7_c01324{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m15_c01324{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m4a_c01324{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01324{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m37_c01324{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m39_c01324{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m22_c01324{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01324{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01324{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m29_c01324{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01324{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mb_c01324{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m36_c01324{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01324{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);}
.m42_c01324{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01324{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m5_c01324{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m14_c01324{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m10_c01324{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m30_c01324{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m0_c01324{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_c01324{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01324{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1_c01324{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m41_c01324{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m9_c01324{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);}
.m18_c01324{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);}
.m27_c01324{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m40_c01324{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);}
.m1d_c01324{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);}
.m3_c01324{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m24_c01324{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01324{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m2_c01324{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m25_c01324{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m38_c01324{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m48_c01324{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m17_c01324{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01324{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);}
.m11_c01324{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m34_c01324{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.me_c01324{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01324{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);}
.m33_c01324{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m21_c01324{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);}
.m43_c01324{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m31_c01324{transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);}
.m8_c01324{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);}
.v2_c01324{vertical-align:-5.760000px;}
.v1_c01324{vertical-align:-2.880000px;}
.v0_c01324{vertical-align:0.000000px;}
.ls0_c01324{letter-spacing:0.000000px;}
.sc__c01324{text-shadow:none;}
.sc0_c01324{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01324{-webkit-text-stroke:0px transparent;}
.sc0_c01324{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01324{word-spacing:-6.725280px;}
.ws4_c01324{word-spacing:0.000000px;}
.ws1_c01324{word-spacing:3.373680px;}
.ws0_c01324{word-spacing:9.212400px;}
.ws3_c01324{word-spacing:11.690400px;}
.fc0_c01324{color:transparent;}
.fsf_c01324{font-size:17.280000px;}
.fs8_c01324{font-size:25.920000px;}
.fs12_c01324{font-size:34.560000px;}
.fsc_c01324{font-size:43.200000px;}
.fs1_c01324{font-size:51.840000px;}
.fs7_c01324{font-size:54.720000px;}
.fs2_c01324{font-size:57.600000px;}
.fs4_c01324{font-size:60.480000px;}
.fs3_c01324{font-size:63.360000px;}
.fsb_c01324{font-size:66.240000px;}
.fs5_c01324{font-size:69.120000px;}
.fsa_c01324{font-size:72.000000px;}
.fs6_c01324{font-size:74.880000px;}
.fs0_c01324{font-size:77.760000px;}
.fse_c01324{font-size:80.640000px;}
.fsd_c01324{font-size:83.520000px;}
.fs13_c01324{font-size:86.400000px;}
.fs9_c01324{font-size:172.800000px;}
.fs11_c01324{font-size:224.640000px;}
.fs10_c01324{font-size:253.440000px;}
.y0_c01324{bottom:0.000000px;}
.y61_c01324{bottom:44.640000px;}
.yf_c01324{bottom:45.360000px;}
.y5f_c01324{bottom:49.680000px;}
.y60_c01324{bottom:50.400000px;}
.y66_c01324{bottom:51.120000px;}
.y65_c01324{bottom:51.840000px;}
.y67_c01324{bottom:52.560000px;}
.ye_c01324{bottom:64.800000px;}
.y5e_c01324{bottom:88.560000px;}
.y5d_c01324{bottom:92.880000px;}
.y63_c01324{bottom:93.600000px;}
.y64_c01324{bottom:94.320000px;}
.y62_c01324{bottom:95.040000px;}
.yd_c01324{bottom:109.440000px;}
.yc_c01324{bottom:123.840000px;}
.y5c_c01324{bottom:131.760000px;}
.y56_c01324{bottom:133.200000px;}
.y58_c01324{bottom:133.920000px;}
.y57_c01324{bottom:135.360000px;}
.y59_c01324{bottom:136.800000px;}
.y52_c01324{bottom:164.880000px;}
.y53_c01324{bottom:166.320000px;}
.y51_c01324{bottom:168.480000px;}
.y55_c01324{bottom:169.200000px;}
.y54_c01324{bottom:169.920000px;}
.y5b_c01324{bottom:188.640000px;}
.y39_c01324{bottom:208.080000px;}
.y38_c01324{bottom:212.400000px;}
.y5a_c01324{bottom:214.560000px;}
.y37_c01324{bottom:251.280000px;}
.y35_c01324{bottom:253.440000px;}
.y36_c01324{bottom:254.160000px;}
.y34_c01324{bottom:255.600000px;}
.ya_c01324{bottom:256.320000px;}
.yb_c01324{bottom:257.040000px;}
.y33_c01324{bottom:294.480000px;}
.y32_c01324{bottom:297.360000px;}
.y31_c01324{bottom:298.080000px;}
.y30_c01324{bottom:337.680000px;}
.y2e_c01324{bottom:340.560000px;}
.y2f_c01324{bottom:341.280000px;}
.y2d_c01324{bottom:383.040000px;}
.y50_c01324{bottom:383.760000px;}
.y4f_c01324{bottom:384.480000px;}
.y2c_c01324{bottom:385.200000px;}
.y2b_c01324{bottom:424.800000px;}
.y29_c01324{bottom:427.680000px;}
.y2a_c01324{bottom:428.400000px;}
.y4e_c01324{bottom:468.720000px;}
.y47_c01324{bottom:469.440000px;}
.y46_c01324{bottom:470.160000px;}
.y4d_c01324{bottom:472.320000px;}
.y4c_c01324{bottom:511.920000px;}
.y44_c01324{bottom:513.360000px;}
.y45_c01324{bottom:514.080000px;}
.y4b_c01324{bottom:555.120000px;}
.y43_c01324{bottom:556.560000px;}
.y42_c01324{bottom:557.280000px;}
.y4a_c01324{bottom:558.000000px;}
.y49_c01324{bottom:599.040000px;}
.y40_c01324{bottom:599.760000px;}
.y48_c01324{bottom:601.200000px;}
.y41_c01324{bottom:602.640000px;}
.y28_c01324{bottom:641.520000px;}
.y3e_c01324{bottom:642.960000px;}
.y3f_c01324{bottom:643.680000px;}
.y27_c01324{bottom:645.120000px;}
.y3c_c01324{bottom:685.440000px;}
.y26_c01324{bottom:686.160000px;}
.y3d_c01324{bottom:688.320000px;}
.y25_c01324{bottom:689.040000px;}
.y24_c01324{bottom:727.920000px;}
.y3b_c01324{bottom:728.640000px;}
.y23_c01324{bottom:732.240000px;}
.y22_c01324{bottom:771.120000px;}
.y3a_c01324{bottom:772.560000px;}
.y20_c01324{bottom:773.280000px;}
.y21_c01324{bottom:774.000000px;}
.y1d_c01324{bottom:814.320000px;}
.y1e_c01324{bottom:815.040000px;}
.y1f_c01324{bottom:816.480000px;}
.y1b_c01324{bottom:817.200000px;}
.y1c_c01324{bottom:817.920000px;}
.y19_c01324{bottom:857.520000px;}
.y1a_c01324{bottom:858.960000px;}
.y17_c01324{bottom:859.680000px;}
.y18_c01324{bottom:861.840000px;}
.y16_c01324{bottom:899.280000px;}
.y15_c01324{bottom:900.720000px;}
.y11_c01324{bottom:901.440000px;}
.y12_c01324{bottom:902.160000px;}
.y10_c01324{bottom:902.880000px;}
.y14_c01324{bottom:903.600000px;}
.y13_c01324{bottom:904.320000px;}
.y9_c01324{bottom:942.480000px;}
.y8_c01324{bottom:943.920000px;}
.y7_c01324{bottom:944.640000px;}
.y6_c01324{bottom:946.080000px;}
.y4_c01324{bottom:987.840000px;}
.y5_c01324{bottom:989.280000px;}
.y3_c01324{bottom:990.000000px;}
.y2_c01324{bottom:1035.360000px;}
.y1_c01324{bottom:1103.760000px;}
.h12_c01324{height:15.550313px;}
.ha_c01324{height:23.325469px;}
.h15_c01324{height:31.100625px;}
.he_c01324{height:38.875781px;}
.h3_c01324{height:46.650937px;}
.h9_c01324{height:49.242656px;}
.h4_c01324{height:51.834375px;}
.h6_c01324{height:54.426094px;}
.h5_c01324{height:57.017812px;}
.hd_c01324{height:59.609531px;}
.h7_c01324{height:62.201250px;}
.h10_c01324{height:64.216406px;}
.hc_c01324{height:64.792969px;}
.h8_c01324{height:67.384687px;}
.h2_c01324{height:69.976406px;}
.h11_c01324{height:72.568125px;}
.hf_c01324{height:75.159844px;}
.h16_c01324{height:77.751563px;}
.hb_c01324{height:155.503125px;}
.h14_c01324{height:202.154062px;}
.h13_c01324{height:228.071250px;}
.h1_c01324{height:1149.000000px;}
.h0_c01324{height:1149.120000px;}
.w1_c01324{width:771.000000px;}
.w0_c01324{width:771.120000px;}
.x0_c01324{left:0.000000px;}
.x1a_c01324{left:43.920000px;}
.x4_c01324{left:45.360000px;}
.x36_c01324{left:75.600000px;}
.x16_c01324{left:94.320000px;}
.x2_c01324{left:95.760000px;}
.x35_c01324{left:103.680000px;}
.x1c_c01324{left:105.120000px;}
.x3_c01324{left:149.760000px;}
.x30_c01324{left:159.840000px;}
.x17_c01324{left:170.640000px;}
.x1b_c01324{left:181.440000px;}
.x1d_c01324{left:192.240000px;}
.x31_c01324{left:203.040000px;}
.x20_c01324{left:212.400000px;}
.x2c_c01324{left:235.440000px;}
.xf_c01324{left:268.560000px;}
.x2d_c01324{left:278.640000px;}
.x32_c01324{left:289.440000px;}
.x10_c01324{left:321.840000px;}
.x33_c01324{left:332.640000px;}
.x1f_c01324{left:353.520000px;}
.x11_c01324{left:367.200000px;}
.x1e_c01324{left:386.640000px;}
.x2e_c01324{left:407.520000px;}
.x12_c01324{left:410.400000px;}
.x2f_c01324{left:450.000000px;}
.x13_c01324{left:496.080000px;}
.x14_c01324{left:550.080000px;}
.x37_c01324{left:558.720000px;}
.x38_c01324{left:568.800000px;}
.x25_c01324{left:590.400000px;}
.x18_c01324{left:592.560000px;}
.x9_c01324{left:594.000000px;}
.x29_c01324{left:601.200000px;}
.x27_c01324{left:602.640000px;}
.xa_c01324{left:622.800000px;}
.x22_c01324{left:624.240000px;}
.x5_c01324{left:625.680000px;}
.xb_c01324{left:655.200000px;}
.x23_c01324{left:656.640000px;}
.x19_c01324{left:658.080000px;}
.x6_c01324{left:659.520000px;}
.x1_c01324{left:663.120000px;}
.x26_c01324{left:667.440000px;}
.xc_c01324{left:688.320000px;}
.x21_c01324{left:691.200000px;}
.x2a_c01324{left:697.680000px;}
.x28_c01324{left:699.120000px;}
.x15_c01324{left:700.560000px;}
.x7_c01324{left:702.000000px;}
.x2b_c01324{left:719.280000px;}
.x24_c01324{left:720.720000px;}
.x8_c01324{left:722.160000px;}
.xe_c01324{left:761.760000px;}
.xd_c01324{left:763.920000px;}
.x34_c01324{left:766.800000px;}
@media print{
.v2_c01324{vertical-align:-5.120000pt;}
.v1_c01324{vertical-align:-2.560000pt;}
.v0_c01324{vertical-align:0.000000pt;}
.ls0_c01324{letter-spacing:0.000000pt;}
.ws2_c01324{word-spacing:-5.978027pt;}
.ws4_c01324{word-spacing:0.000000pt;}
.ws1_c01324{word-spacing:2.998827pt;}
.ws0_c01324{word-spacing:8.188800pt;}
.ws3_c01324{word-spacing:10.391467pt;}
.fsf_c01324{font-size:15.360000pt;}
.fs8_c01324{font-size:23.040000pt;}
.fs12_c01324{font-size:30.720000pt;}
.fsc_c01324{font-size:38.400000pt;}
.fs1_c01324{font-size:46.080000pt;}
.fs7_c01324{font-size:48.640000pt;}
.fs2_c01324{font-size:51.200000pt;}
.fs4_c01324{font-size:53.760000pt;}
.fs3_c01324{font-size:56.320000pt;}
.fsb_c01324{font-size:58.880000pt;}
.fs5_c01324{font-size:61.440000pt;}
.fsa_c01324{font-size:64.000000pt;}
.fs6_c01324{font-size:66.560000pt;}
.fs0_c01324{font-size:69.120000pt;}
.fse_c01324{font-size:71.680000pt;}
.fsd_c01324{font-size:74.240000pt;}
.fs13_c01324{font-size:76.800000pt;}
.fs9_c01324{font-size:153.600000pt;}
.fs11_c01324{font-size:199.680000pt;}
.fs10_c01324{font-size:225.280000pt;}
.y0_c01324{bottom:0.000000pt;}
.y61_c01324{bottom:39.680000pt;}
.yf_c01324{bottom:40.320000pt;}
.y5f_c01324{bottom:44.160000pt;}
.y60_c01324{bottom:44.800000pt;}
.y66_c01324{bottom:45.440000pt;}
.y65_c01324{bottom:46.080000pt;}
.y67_c01324{bottom:46.720000pt;}
.ye_c01324{bottom:57.600000pt;}
.y5e_c01324{bottom:78.720000pt;}
.y5d_c01324{bottom:82.560000pt;}
.y63_c01324{bottom:83.200000pt;}
.y64_c01324{bottom:83.840000pt;}
.y62_c01324{bottom:84.480000pt;}
.yd_c01324{bottom:97.280000pt;}
.yc_c01324{bottom:110.080000pt;}
.y5c_c01324{bottom:117.120000pt;}
.y56_c01324{bottom:118.400000pt;}
.y58_c01324{bottom:119.040000pt;}
.y57_c01324{bottom:120.320000pt;}
.y59_c01324{bottom:121.600000pt;}
.y52_c01324{bottom:146.560000pt;}
.y53_c01324{bottom:147.840000pt;}
.y51_c01324{bottom:149.760000pt;}
.y55_c01324{bottom:150.400000pt;}
.y54_c01324{bottom:151.040000pt;}
.y5b_c01324{bottom:167.680000pt;}
.y39_c01324{bottom:184.960000pt;}
.y38_c01324{bottom:188.800000pt;}
.y5a_c01324{bottom:190.720000pt;}
.y37_c01324{bottom:223.360000pt;}
.y35_c01324{bottom:225.280000pt;}
.y36_c01324{bottom:225.920000pt;}
.y34_c01324{bottom:227.200000pt;}
.ya_c01324{bottom:227.840000pt;}
.yb_c01324{bottom:228.480000pt;}
.y33_c01324{bottom:261.760000pt;}
.y32_c01324{bottom:264.320000pt;}
.y31_c01324{bottom:264.960000pt;}
.y30_c01324{bottom:300.160000pt;}
.y2e_c01324{bottom:302.720000pt;}
.y2f_c01324{bottom:303.360000pt;}
.y2d_c01324{bottom:340.480000pt;}
.y50_c01324{bottom:341.120000pt;}
.y4f_c01324{bottom:341.760000pt;}
.y2c_c01324{bottom:342.400000pt;}
.y2b_c01324{bottom:377.600000pt;}
.y29_c01324{bottom:380.160000pt;}
.y2a_c01324{bottom:380.800000pt;}
.y4e_c01324{bottom:416.640000pt;}
.y47_c01324{bottom:417.280000pt;}
.y46_c01324{bottom:417.920000pt;}
.y4d_c01324{bottom:419.840000pt;}
.y4c_c01324{bottom:455.040000pt;}
.y44_c01324{bottom:456.320000pt;}
.y45_c01324{bottom:456.960000pt;}
.y4b_c01324{bottom:493.440000pt;}
.y43_c01324{bottom:494.720000pt;}
.y42_c01324{bottom:495.360000pt;}
.y4a_c01324{bottom:496.000000pt;}
.y49_c01324{bottom:532.480000pt;}
.y40_c01324{bottom:533.120000pt;}
.y48_c01324{bottom:534.400000pt;}
.y41_c01324{bottom:535.680000pt;}
.y28_c01324{bottom:570.240000pt;}
.y3e_c01324{bottom:571.520000pt;}
.y3f_c01324{bottom:572.160000pt;}
.y27_c01324{bottom:573.440000pt;}
.y3c_c01324{bottom:609.280000pt;}
.y26_c01324{bottom:609.920000pt;}
.y3d_c01324{bottom:611.840000pt;}
.y25_c01324{bottom:612.480000pt;}
.y24_c01324{bottom:647.040000pt;}
.y3b_c01324{bottom:647.680000pt;}
.y23_c01324{bottom:650.880000pt;}
.y22_c01324{bottom:685.440000pt;}
.y3a_c01324{bottom:686.720000pt;}
.y20_c01324{bottom:687.360000pt;}
.y21_c01324{bottom:688.000000pt;}
.y1d_c01324{bottom:723.840000pt;}
.y1e_c01324{bottom:724.480000pt;}
.y1f_c01324{bottom:725.760000pt;}
.y1b_c01324{bottom:726.400000pt;}
.y1c_c01324{bottom:727.040000pt;}
.y19_c01324{bottom:762.240000pt;}
.y1a_c01324{bottom:763.520000pt;}
.y17_c01324{bottom:764.160000pt;}
.y18_c01324{bottom:766.080000pt;}
.y16_c01324{bottom:799.360000pt;}
.y15_c01324{bottom:800.640000pt;}
.y11_c01324{bottom:801.280000pt;}
.y12_c01324{bottom:801.920000pt;}
.y10_c01324{bottom:802.560000pt;}
.y14_c01324{bottom:803.200000pt;}
.y13_c01324{bottom:803.840000pt;}
.y9_c01324{bottom:837.760000pt;}
.y8_c01324{bottom:839.040000pt;}
.y7_c01324{bottom:839.680000pt;}
.y6_c01324{bottom:840.960000pt;}
.y4_c01324{bottom:878.080000pt;}
.y5_c01324{bottom:879.360000pt;}
.y3_c01324{bottom:880.000000pt;}
.y2_c01324{bottom:920.320000pt;}
.y1_c01324{bottom:981.120000pt;}
.h12_c01324{height:13.822500pt;}
.ha_c01324{height:20.733750pt;}
.h15_c01324{height:27.645000pt;}
.he_c01324{height:34.556250pt;}
.h3_c01324{height:41.467500pt;}
.h9_c01324{height:43.771250pt;}
.h4_c01324{height:46.075000pt;}
.h6_c01324{height:48.378750pt;}
.h5_c01324{height:50.682500pt;}
.hd_c01324{height:52.986250pt;}
.h7_c01324{height:55.290000pt;}
.h10_c01324{height:57.081250pt;}
.hc_c01324{height:57.593750pt;}
.h8_c01324{height:59.897500pt;}
.h2_c01324{height:62.201250pt;}
.h11_c01324{height:64.505000pt;}
.hf_c01324{height:66.808750pt;}
.h16_c01324{height:69.112500pt;}
.hb_c01324{height:138.225000pt;}
.h14_c01324{height:179.692500pt;}
.h13_c01324{height:202.730000pt;}
.h1_c01324{height:1021.333333pt;}
.h0_c01324{height:1021.440000pt;}
.w1_c01324{width:685.333333pt;}
.w0_c01324{width:685.440000pt;}
.x0_c01324{left:0.000000pt;}
.x1a_c01324{left:39.040000pt;}
.x4_c01324{left:40.320000pt;}
.x36_c01324{left:67.200000pt;}
.x16_c01324{left:83.840000pt;}
.x2_c01324{left:85.120000pt;}
.x35_c01324{left:92.160000pt;}
.x1c_c01324{left:93.440000pt;}
.x3_c01324{left:133.120000pt;}
.x30_c01324{left:142.080000pt;}
.x17_c01324{left:151.680000pt;}
.x1b_c01324{left:161.280000pt;}
.x1d_c01324{left:170.880000pt;}
.x31_c01324{left:180.480000pt;}
.x20_c01324{left:188.800000pt;}
.x2c_c01324{left:209.280000pt;}
.xf_c01324{left:238.720000pt;}
.x2d_c01324{left:247.680000pt;}
.x32_c01324{left:257.280000pt;}
.x10_c01324{left:286.080000pt;}
.x33_c01324{left:295.680000pt;}
.x1f_c01324{left:314.240000pt;}
.x11_c01324{left:326.400000pt;}
.x1e_c01324{left:343.680000pt;}
.x2e_c01324{left:362.240000pt;}
.x12_c01324{left:364.800000pt;}
.x2f_c01324{left:400.000000pt;}
.x13_c01324{left:440.960000pt;}
.x14_c01324{left:488.960000pt;}
.x37_c01324{left:496.640000pt;}
.x38_c01324{left:505.600000pt;}
.x25_c01324{left:524.800000pt;}
.x18_c01324{left:526.720000pt;}
.x9_c01324{left:528.000000pt;}
.x29_c01324{left:534.400000pt;}
.x27_c01324{left:535.680000pt;}
.xa_c01324{left:553.600000pt;}
.x22_c01324{left:554.880000pt;}
.x5_c01324{left:556.160000pt;}
.xb_c01324{left:582.400000pt;}
.x23_c01324{left:583.680000pt;}
.x19_c01324{left:584.960000pt;}
.x6_c01324{left:586.240000pt;}
.x1_c01324{left:589.440000pt;}
.x26_c01324{left:593.280000pt;}
.xc_c01324{left:611.840000pt;}
.x21_c01324{left:614.400000pt;}
.x2a_c01324{left:620.160000pt;}
.x28_c01324{left:621.440000pt;}
.x15_c01324{left:622.720000pt;}
.x7_c01324{left:624.000000pt;}
.x2b_c01324{left:639.360000pt;}
.x24_c01324{left:640.640000pt;}
.x8_c01324{left:641.920000pt;}
.xe_c01324{left:677.120000pt;}
.xd_c01324{left:679.040000pt;}
.x34_c01324{left:681.600000pt;}
}





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

.ir_c01325:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01325{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01325;src:url('chunks/assets/font_42dfc83f9954cf9201e7fae5.woff2')format("woff");}.ff1_c01325{font-family:ff1_c01325;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5e_c01325{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m5f_c01325{transform:matrix(0.025000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025000,0.000000,0.000000,0.250000,0,0);}
.m5a_c01325{transform:matrix(0.032900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032900,0.000000,0.000000,0.250000,0,0);}
.m5d_c01325{transform:matrix(0.068175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068175,0.000000,0.000000,0.250000,0,0);}
.m60_c01325{transform:matrix(0.069425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069425,0.000000,0.000000,0.250000,0,0);}
.m5b_c01325{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m5c_c01325{transform:matrix(0.165600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165600,0.000000,0.000000,0.250000,0,0);}
.m58_c01325{transform:matrix(0.198725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198725,0.000000,0.000000,0.250000,0,0);}
.m44_c01325{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m31_c01325{transform:matrix(0.223375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223375,0.000000,0.000000,0.250000,0,0);}
.m42_c01325{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m4a_c01325{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_c01325{transform:matrix(0.226175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226175,0.000000,0.000000,0.250000,0,0);}
.m9_c01325{transform:matrix(0.234825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234825,0.000000,0.000000,0.250000,0,0);}
.m52_c01325{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m37_c01325{transform:matrix(0.237375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237375,0.000000,0.000000,0.250000,0,0);}
.mb_c01325{transform:matrix(0.238850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238850,0.000000,0.000000,0.250000,0,0);}
.m3a_c01325{transform:matrix(0.238900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238900,0.000000,0.000000,0.250000,0,0);}
.m10_c01325{transform:matrix(0.239100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239100,0.000000,0.000000,0.250000,0,0);}
.m35_c01325{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);}
.m38_c01325{transform:matrix(0.242875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242875,0.000000,0.000000,0.250000,0,0);}
.m53_c01325{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m7_c01325{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01325{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_c01325{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);}
.m4b_c01325{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);}
.m28_c01325{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01325{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m1_c01325{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);}
.m1f_c01325{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m26_c01325{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.me_c01325{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);}
.m36_c01325{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);}
.m2b_c01325{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);}
.m4d_c01325{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01325{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01325{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);}
.m55_c01325{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_c01325{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);}
.m41_c01325{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m11_c01325{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m14_c01325{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m22_c01325{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m18_c01325{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01325{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01325{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m40_c01325{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m25_c01325{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m47_c01325{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01325{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01325{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m13_c01325{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);}
.m34_c01325{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.ma_c01325{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01325{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);}
.m29_c01325{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m19_c01325{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m8_c01325{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m17_c01325{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);}
.m2e_c01325{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01325{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m0_c01325{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);}
.m56_c01325{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m4_c01325{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m12_c01325{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01325{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.mf_c01325{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01325{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);}
.m3_c01325{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m16_c01325{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);}
.m50_c01325{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m2_c01325{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01325{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m4e_c01325{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);}
.m6_c01325{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01325{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m15_c01325{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);}
.m30_c01325{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);}
.mc_c01325{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m45_c01325{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m46_c01325{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01325{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_c01325{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m33_c01325{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m51_c01325{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);}
.m23_c01325{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01325{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m49_c01325{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m48_c01325{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m32_c01325{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m59_c01325{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m54_c01325{transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01325{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m27_c01325{transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);}
.m57_c01325{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m43_c01325{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m39_c01325{transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);}
.v0_c01325{vertical-align:0.000000px;}
.v2_c01325{vertical-align:2.880000px;}
.v1_c01325{vertical-align:5.760000px;}
.ls0_c01325{letter-spacing:0.000000px;}
.sc__c01325{text-shadow:none;}
.sc0_c01325{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01325{-webkit-text-stroke:0px transparent;}
.sc0_c01325{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c01325{word-spacing:0.000000px;}
.ws1_c01325{word-spacing:9.210378px;}
.ws3_c01325{word-spacing:17.584800px;}
.ws0_c01325{word-spacing:45.815520px;}
.ws2_c01325{word-spacing:50.570400px;}
.fc0_c01325{color:transparent;}
.fs14_c01325{font-size:17.280000px;}
.fs10_c01325{font-size:20.160000px;}
.fs15_c01325{font-size:23.040000px;}
.fs12_c01325{font-size:25.920000px;}
.fsd_c01325{font-size:28.800000px;}
.fsa_c01325{font-size:31.680000px;}
.fs16_c01325{font-size:37.440000px;}
.fsc_c01325{font-size:40.320000px;}
.fs9_c01325{font-size:43.200000px;}
.fsf_c01325{font-size:48.960000px;}
.fs2_c01325{font-size:51.840000px;}
.fs7_c01325{font-size:54.720000px;}
.fs4_c01325{font-size:57.600000px;}
.fs0_c01325{font-size:60.480000px;}
.fs8_c01325{font-size:63.360000px;}
.fs6_c01325{font-size:66.240000px;}
.fsb_c01325{font-size:69.120000px;}
.fse_c01325{font-size:72.000000px;}
.fs5_c01325{font-size:74.880000px;}
.fs3_c01325{font-size:77.760000px;}
.fs1_c01325{font-size:80.640000px;}
.fs11_c01325{font-size:97.920000px;}
.fs13_c01325{font-size:109.440000px;}
.y0_c01325{bottom:0.000000px;}
.y89_c01325{bottom:29.520000px;}
.y88_c01325{bottom:31.680000px;}
.y87_c01325{bottom:40.320000px;}
.y86_c01325{bottom:41.040000px;}
.y57_c01325{bottom:46.080000px;}
.y56_c01325{bottom:48.240000px;}
.y55_c01325{bottom:49.680000px;}
.y83_c01325{bottom:51.120000px;}
.y84_c01325{bottom:52.560000px;}
.y85_c01325{bottom:61.920000px;}
.y82_c01325{bottom:66.960000px;}
.y54_c01325{bottom:88.560000px;}
.y53_c01325{bottom:92.880000px;}
.y7e_c01325{bottom:93.600000px;}
.y7f_c01325{bottom:95.040000px;}
.y81_c01325{bottom:95.760000px;}
.y80_c01325{bottom:101.520000px;}
.y7d_c01325{bottom:127.440000px;}
.y52_c01325{bottom:131.760000px;}
.y51_c01325{bottom:136.080000px;}
.y7c_c01325{bottom:136.800000px;}
.y7b_c01325{bottom:138.960000px;}
.y4e_c01325{bottom:174.960000px;}
.y50_c01325{bottom:176.400000px;}
.y4f_c01325{bottom:178.560000px;}
.y4d_c01325{bottom:179.280000px;}
.y7a_c01325{bottom:180.000000px;}
.y79_c01325{bottom:180.720000px;}
.y78_c01325{bottom:181.440000px;}
.y4b_c01325{bottom:218.160000px;}
.y4c_c01325{bottom:219.600000px;}
.y49_c01325{bottom:222.480000px;}
.y77_c01325{bottom:223.200000px;}
.y4a_c01325{bottom:223.920000px;}
.y47_c01325{bottom:262.080000px;}
.y48_c01325{bottom:262.800000px;}
.y46_c01325{bottom:264.240000px;}
.y75_c01325{bottom:266.400000px;}
.y76_c01325{bottom:268.560000px;}
.y41_c01325{bottom:305.280000px;}
.y45_c01325{bottom:307.440000px;}
.y42_c01325{bottom:308.160000px;}
.y40_c01325{bottom:308.880000px;}
.y44_c01325{bottom:309.600000px;}
.y43_c01325{bottom:310.320000px;}
.y74_c01325{bottom:311.040000px;}
.y73_c01325{bottom:311.760000px;}
.y3d_c01325{bottom:349.920000px;}
.y3c_c01325{bottom:352.080000px;}
.y72_c01325{bottom:352.800000px;}
.y3f_c01325{bottom:353.520000px;}
.y3e_c01325{bottom:354.240000px;}
.y37_c01325{bottom:393.120000px;}
.y38_c01325{bottom:393.840000px;}
.y71_c01325{bottom:394.560000px;}
.y36_c01325{bottom:395.280000px;}
.y3a_c01325{bottom:396.000000px;}
.y39_c01325{bottom:396.720000px;}
.y3b_c01325{bottom:397.440000px;}
.y35_c01325{bottom:436.320000px;}
.y6f_c01325{bottom:438.480000px;}
.y34_c01325{bottom:439.200000px;}
.y70_c01325{bottom:440.640000px;}
.y32_c01325{bottom:480.240000px;}
.y6e_c01325{bottom:481.680000px;}
.y33_c01325{bottom:482.400000px;}
.y31_c01325{bottom:483.120000px;}
.y6d_c01325{bottom:483.840000px;}
.y2f_c01325{bottom:522.720000px;}
.y30_c01325{bottom:523.440000px;}
.y6c_c01325{bottom:524.160000px;}
.y2e_c01325{bottom:526.320000px;}
.y6b_c01325{bottom:527.040000px;}
.y2b_c01325{bottom:565.920000px;}
.y6a_c01325{bottom:566.640000px;}
.y2a_c01325{bottom:568.800000px;}
.y2c_c01325{bottom:569.520000px;}
.y2d_c01325{bottom:570.240000px;}
.y29_c01325{bottom:609.840000px;}
.y69_c01325{bottom:610.560000px;}
.y28_c01325{bottom:612.720000px;}
.y27_c01325{bottom:652.320000px;}
.y25_c01325{bottom:653.040000px;}
.y68_c01325{bottom:653.760000px;}
.y24_c01325{bottom:655.200000px;}
.y26_c01325{bottom:656.640000px;}
.y23_c01325{bottom:695.520000px;}
.y67_c01325{bottom:696.240000px;}
.y22_c01325{bottom:696.960000px;}
.y66_c01325{bottom:697.680000px;}
.y21_c01325{bottom:698.400000px;}
.y20_c01325{bottom:738.720000px;}
.y1e_c01325{bottom:739.440000px;}
.y65_c01325{bottom:740.160000px;}
.y1d_c01325{bottom:740.880000px;}
.y64_c01325{bottom:741.600000px;}
.y1f_c01325{bottom:743.040000px;}
.y1c_c01325{bottom:781.200000px;}
.y19_c01325{bottom:781.920000px;}
.y63_c01325{bottom:782.640000px;}
.y62_c01325{bottom:784.080000px;}
.y18_c01325{bottom:784.800000px;}
.y1a_c01325{bottom:785.520000px;}
.y1b_c01325{bottom:786.240000px;}
.y17_c01325{bottom:825.120000px;}
.y60_c01325{bottom:825.840000px;}
.y61_c01325{bottom:826.560000px;}
.y16_c01325{bottom:828.000000px;}
.y15_c01325{bottom:868.320000px;}
.y13_c01325{bottom:869.040000px;}
.y5e_c01325{bottom:869.760000px;}
.y14_c01325{bottom:870.480000px;}
.y5f_c01325{bottom:871.200000px;}
.y12_c01325{bottom:871.920000px;}
.y11_c01325{bottom:911.520000px;}
.ye_c01325{bottom:912.240000px;}
.y5d_c01325{bottom:912.960000px;}
.y10_c01325{bottom:913.680000px;}
.yd_c01325{bottom:914.400000px;}
.yf_c01325{bottom:916.560000px;}
.y5b_c01325{bottom:954.720000px;}
.ya_c01325{bottom:955.440000px;}
.yc_c01325{bottom:956.160000px;}
.y5c_c01325{bottom:957.600000px;}
.y9_c01325{bottom:958.320000px;}
.yb_c01325{bottom:959.760000px;}
.y8_c01325{bottom:998.640000px;}
.y6_c01325{bottom:999.360000px;}
.y5_c01325{bottom:1000.800000px;}
.y5a_c01325{bottom:1001.520000px;}
.y7_c01325{bottom:1002.240000px;}
.y2_c01325{bottom:1042.560000px;}
.y3_c01325{bottom:1044.000000px;}
.y59_c01325{bottom:1044.720000px;}
.y1_c01325{bottom:1045.440000px;}
.y4_c01325{bottom:1046.160000px;}
.y58_c01325{bottom:1098.000000px;}
.h18_c01325{height:15.550313px;}
.h13_c01325{height:18.142031px;}
.h19_c01325{height:20.733750px;}
.h15_c01325{height:23.325469px;}
.he_c01325{height:25.917187px;}
.hb_c01325{height:28.508906px;}
.h1a_c01325{height:33.692344px;}
.hd_c01325{height:36.284062px;}
.ha_c01325{height:38.875781px;}
.h11_c01325{height:44.059219px;}
.h3_c01325{height:46.650937px;}
.h8_c01325{height:49.242656px;}
.h5_c01325{height:51.834375px;}
.h1_c01325{height:54.426094px;}
.h9_c01325{height:57.017812px;}
.h12_c01325{height:57.306094px;}
.h7_c01325{height:59.609531px;}
.h17_c01325{height:59.897812px;}
.h10_c01325{height:60.186094px;}
.hc_c01325{height:62.201250px;}
.hf_c01325{height:64.792969px;}
.h6_c01325{height:67.384687px;}
.h4_c01325{height:69.976406px;}
.h2_c01325{height:72.568125px;}
.h14_c01325{height:88.118437px;}
.h16_c01325{height:98.485312px;}
.h0_c01325{height:1152.000000px;}
.w0_c01325{width:776.880000px;}
.w1_c01325{width:777.000000px;}
.x0_c01325{left:0.000000px;}
.x1_c01325{left:48.240000px;}
.x15_c01325{left:49.680000px;}
.x20_c01325{left:51.120000px;}
.x16_c01325{left:78.480000px;}
.xe_c01325{left:108.720000px;}
.x2_c01325{left:110.160000px;}
.x7_c01325{left:111.600000px;}
.x12_c01325{left:185.760000px;}
.x13_c01325{left:195.120000px;}
.x9_c01325{left:196.560000px;}
.xc_c01325{left:208.080000px;}
.x1f_c01325{left:228.960000px;}
.x14_c01325{left:239.040000px;}
.x5_c01325{left:240.480000px;}
.xa_c01325{left:251.280000px;}
.x1e_c01325{left:261.360000px;}
.x3_c01325{left:272.160000px;}
.x8_c01325{left:283.680000px;}
.x17_c01325{left:293.040000px;}
.x6_c01325{left:294.480000px;}
.xf_c01325{left:324.000000px;}
.x4_c01325{left:326.880000px;}
.xd_c01325{left:336.960000px;}
.x1b_c01325{left:357.840000px;}
.x10_c01325{left:369.360000px;}
.x18_c01325{left:378.000000px;}
.xb_c01325{left:380.160000px;}
.x1c_c01325{left:410.400000px;}
.x11_c01325{left:412.560000px;}
.x19_c01325{left:423.360000px;}
.x1d_c01325{left:455.760000px;}
.x1a_c01325{left:465.120000px;}
.x36_c01325{left:562.320000px;}
.x26_c01325{left:565.200000px;}
.x32_c01325{left:571.680000px;}
.x2c_c01325{left:573.120000px;}
.x22_c01325{left:575.280000px;}
.x37_c01325{left:593.280000px;}
.x2f_c01325{left:594.720000px;}
.x27_c01325{left:596.880000px;}
.x30_c01325{left:605.520000px;}
.x33_c01325{left:627.120000px;}
.x2b_c01325{left:628.560000px;}
.x23_c01325{left:630.000000px;}
.x34_c01325{left:659.520000px;}
.x2d_c01325{left:660.960000px;}
.x24_c01325{left:662.400000px;}
.x21_c01325{left:666.000000px;}
.x38_c01325{left:691.920000px;}
.x25_c01325{left:695.520000px;}
.x31_c01325{left:702.720000px;}
.x2a_c01325{left:704.160000px;}
.x28_c01325{left:705.600000px;}
.x35_c01325{left:722.160000px;}
.x2e_c01325{left:723.600000px;}
.x29_c01325{left:725.760000px;}
.x3a_c01325{left:764.640000px;}
.x39_c01325{left:766.800000px;}
.x3b_c01325{left:768.240000px;}
.x3c_c01325{left:771.120000px;}
@media print{
.v0_c01325{vertical-align:0.000000pt;}
.v2_c01325{vertical-align:2.560000pt;}
.v1_c01325{vertical-align:5.120000pt;}
.ls0_c01325{letter-spacing:0.000000pt;}
.ws4_c01325{word-spacing:0.000000pt;}
.ws1_c01325{word-spacing:8.187003pt;}
.ws3_c01325{word-spacing:15.630933pt;}
.ws0_c01325{word-spacing:40.724907pt;}
.ws2_c01325{word-spacing:44.951467pt;}
.fs14_c01325{font-size:15.360000pt;}
.fs10_c01325{font-size:17.920000pt;}
.fs15_c01325{font-size:20.480000pt;}
.fs12_c01325{font-size:23.040000pt;}
.fsd_c01325{font-size:25.600000pt;}
.fsa_c01325{font-size:28.160000pt;}
.fs16_c01325{font-size:33.280000pt;}
.fsc_c01325{font-size:35.840000pt;}
.fs9_c01325{font-size:38.400000pt;}
.fsf_c01325{font-size:43.520000pt;}
.fs2_c01325{font-size:46.080000pt;}
.fs7_c01325{font-size:48.640000pt;}
.fs4_c01325{font-size:51.200000pt;}
.fs0_c01325{font-size:53.760000pt;}
.fs8_c01325{font-size:56.320000pt;}
.fs6_c01325{font-size:58.880000pt;}
.fsb_c01325{font-size:61.440000pt;}
.fse_c01325{font-size:64.000000pt;}
.fs5_c01325{font-size:66.560000pt;}
.fs3_c01325{font-size:69.120000pt;}
.fs1_c01325{font-size:71.680000pt;}
.fs11_c01325{font-size:87.040000pt;}
.fs13_c01325{font-size:97.280000pt;}
.y0_c01325{bottom:0.000000pt;}
.y89_c01325{bottom:26.240000pt;}
.y88_c01325{bottom:28.160000pt;}
.y87_c01325{bottom:35.840000pt;}
.y86_c01325{bottom:36.480000pt;}
.y57_c01325{bottom:40.960000pt;}
.y56_c01325{bottom:42.880000pt;}
.y55_c01325{bottom:44.160000pt;}
.y83_c01325{bottom:45.440000pt;}
.y84_c01325{bottom:46.720000pt;}
.y85_c01325{bottom:55.040000pt;}
.y82_c01325{bottom:59.520000pt;}
.y54_c01325{bottom:78.720000pt;}
.y53_c01325{bottom:82.560000pt;}
.y7e_c01325{bottom:83.200000pt;}
.y7f_c01325{bottom:84.480000pt;}
.y81_c01325{bottom:85.120000pt;}
.y80_c01325{bottom:90.240000pt;}
.y7d_c01325{bottom:113.280000pt;}
.y52_c01325{bottom:117.120000pt;}
.y51_c01325{bottom:120.960000pt;}
.y7c_c01325{bottom:121.600000pt;}
.y7b_c01325{bottom:123.520000pt;}
.y4e_c01325{bottom:155.520000pt;}
.y50_c01325{bottom:156.800000pt;}
.y4f_c01325{bottom:158.720000pt;}
.y4d_c01325{bottom:159.360000pt;}
.y7a_c01325{bottom:160.000000pt;}
.y79_c01325{bottom:160.640000pt;}
.y78_c01325{bottom:161.280000pt;}
.y4b_c01325{bottom:193.920000pt;}
.y4c_c01325{bottom:195.200000pt;}
.y49_c01325{bottom:197.760000pt;}
.y77_c01325{bottom:198.400000pt;}
.y4a_c01325{bottom:199.040000pt;}
.y47_c01325{bottom:232.960000pt;}
.y48_c01325{bottom:233.600000pt;}
.y46_c01325{bottom:234.880000pt;}
.y75_c01325{bottom:236.800000pt;}
.y76_c01325{bottom:238.720000pt;}
.y41_c01325{bottom:271.360000pt;}
.y45_c01325{bottom:273.280000pt;}
.y42_c01325{bottom:273.920000pt;}
.y40_c01325{bottom:274.560000pt;}
.y44_c01325{bottom:275.200000pt;}
.y43_c01325{bottom:275.840000pt;}
.y74_c01325{bottom:276.480000pt;}
.y73_c01325{bottom:277.120000pt;}
.y3d_c01325{bottom:311.040000pt;}
.y3c_c01325{bottom:312.960000pt;}
.y72_c01325{bottom:313.600000pt;}
.y3f_c01325{bottom:314.240000pt;}
.y3e_c01325{bottom:314.880000pt;}
.y37_c01325{bottom:349.440000pt;}
.y38_c01325{bottom:350.080000pt;}
.y71_c01325{bottom:350.720000pt;}
.y36_c01325{bottom:351.360000pt;}
.y3a_c01325{bottom:352.000000pt;}
.y39_c01325{bottom:352.640000pt;}
.y3b_c01325{bottom:353.280000pt;}
.y35_c01325{bottom:387.840000pt;}
.y6f_c01325{bottom:389.760000pt;}
.y34_c01325{bottom:390.400000pt;}
.y70_c01325{bottom:391.680000pt;}
.y32_c01325{bottom:426.880000pt;}
.y6e_c01325{bottom:428.160000pt;}
.y33_c01325{bottom:428.800000pt;}
.y31_c01325{bottom:429.440000pt;}
.y6d_c01325{bottom:430.080000pt;}
.y2f_c01325{bottom:464.640000pt;}
.y30_c01325{bottom:465.280000pt;}
.y6c_c01325{bottom:465.920000pt;}
.y2e_c01325{bottom:467.840000pt;}
.y6b_c01325{bottom:468.480000pt;}
.y2b_c01325{bottom:503.040000pt;}
.y6a_c01325{bottom:503.680000pt;}
.y2a_c01325{bottom:505.600000pt;}
.y2c_c01325{bottom:506.240000pt;}
.y2d_c01325{bottom:506.880000pt;}
.y29_c01325{bottom:542.080000pt;}
.y69_c01325{bottom:542.720000pt;}
.y28_c01325{bottom:544.640000pt;}
.y27_c01325{bottom:579.840000pt;}
.y25_c01325{bottom:580.480000pt;}
.y68_c01325{bottom:581.120000pt;}
.y24_c01325{bottom:582.400000pt;}
.y26_c01325{bottom:583.680000pt;}
.y23_c01325{bottom:618.240000pt;}
.y67_c01325{bottom:618.880000pt;}
.y22_c01325{bottom:619.520000pt;}
.y66_c01325{bottom:620.160000pt;}
.y21_c01325{bottom:620.800000pt;}
.y20_c01325{bottom:656.640000pt;}
.y1e_c01325{bottom:657.280000pt;}
.y65_c01325{bottom:657.920000pt;}
.y1d_c01325{bottom:658.560000pt;}
.y64_c01325{bottom:659.200000pt;}
.y1f_c01325{bottom:660.480000pt;}
.y1c_c01325{bottom:694.400000pt;}
.y19_c01325{bottom:695.040000pt;}
.y63_c01325{bottom:695.680000pt;}
.y62_c01325{bottom:696.960000pt;}
.y18_c01325{bottom:697.600000pt;}
.y1a_c01325{bottom:698.240000pt;}
.y1b_c01325{bottom:698.880000pt;}
.y17_c01325{bottom:733.440000pt;}
.y60_c01325{bottom:734.080000pt;}
.y61_c01325{bottom:734.720000pt;}
.y16_c01325{bottom:736.000000pt;}
.y15_c01325{bottom:771.840000pt;}
.y13_c01325{bottom:772.480000pt;}
.y5e_c01325{bottom:773.120000pt;}
.y14_c01325{bottom:773.760000pt;}
.y5f_c01325{bottom:774.400000pt;}
.y12_c01325{bottom:775.040000pt;}
.y11_c01325{bottom:810.240000pt;}
.ye_c01325{bottom:810.880000pt;}
.y5d_c01325{bottom:811.520000pt;}
.y10_c01325{bottom:812.160000pt;}
.yd_c01325{bottom:812.800000pt;}
.yf_c01325{bottom:814.720000pt;}
.y5b_c01325{bottom:848.640000pt;}
.ya_c01325{bottom:849.280000pt;}
.yc_c01325{bottom:849.920000pt;}
.y5c_c01325{bottom:851.200000pt;}
.y9_c01325{bottom:851.840000pt;}
.yb_c01325{bottom:853.120000pt;}
.y8_c01325{bottom:887.680000pt;}
.y6_c01325{bottom:888.320000pt;}
.y5_c01325{bottom:889.600000pt;}
.y5a_c01325{bottom:890.240000pt;}
.y7_c01325{bottom:890.880000pt;}
.y2_c01325{bottom:926.720000pt;}
.y3_c01325{bottom:928.000000pt;}
.y59_c01325{bottom:928.640000pt;}
.y1_c01325{bottom:929.280000pt;}
.y4_c01325{bottom:929.920000pt;}
.y58_c01325{bottom:976.000000pt;}
.h18_c01325{height:13.822500pt;}
.h13_c01325{height:16.126250pt;}
.h19_c01325{height:18.430000pt;}
.h15_c01325{height:20.733750pt;}
.he_c01325{height:23.037500pt;}
.hb_c01325{height:25.341250pt;}
.h1a_c01325{height:29.948750pt;}
.hd_c01325{height:32.252500pt;}
.ha_c01325{height:34.556250pt;}
.h11_c01325{height:39.163750pt;}
.h3_c01325{height:41.467500pt;}
.h8_c01325{height:43.771250pt;}
.h5_c01325{height:46.075000pt;}
.h1_c01325{height:48.378750pt;}
.h9_c01325{height:50.682500pt;}
.h12_c01325{height:50.938750pt;}
.h7_c01325{height:52.986250pt;}
.h17_c01325{height:53.242500pt;}
.h10_c01325{height:53.498750pt;}
.hc_c01325{height:55.290000pt;}
.hf_c01325{height:57.593750pt;}
.h6_c01325{height:59.897500pt;}
.h4_c01325{height:62.201250pt;}
.h2_c01325{height:64.505000pt;}
.h14_c01325{height:78.327500pt;}
.h16_c01325{height:87.542500pt;}
.h0_c01325{height:1024.000000pt;}
.w0_c01325{width:690.560000pt;}
.w1_c01325{width:690.666667pt;}
.x0_c01325{left:0.000000pt;}
.x1_c01325{left:42.880000pt;}
.x15_c01325{left:44.160000pt;}
.x20_c01325{left:45.440000pt;}
.x16_c01325{left:69.760000pt;}
.xe_c01325{left:96.640000pt;}
.x2_c01325{left:97.920000pt;}
.x7_c01325{left:99.200000pt;}
.x12_c01325{left:165.120000pt;}
.x13_c01325{left:173.440000pt;}
.x9_c01325{left:174.720000pt;}
.xc_c01325{left:184.960000pt;}
.x1f_c01325{left:203.520000pt;}
.x14_c01325{left:212.480000pt;}
.x5_c01325{left:213.760000pt;}
.xa_c01325{left:223.360000pt;}
.x1e_c01325{left:232.320000pt;}
.x3_c01325{left:241.920000pt;}
.x8_c01325{left:252.160000pt;}
.x17_c01325{left:260.480000pt;}
.x6_c01325{left:261.760000pt;}
.xf_c01325{left:288.000000pt;}
.x4_c01325{left:290.560000pt;}
.xd_c01325{left:299.520000pt;}
.x1b_c01325{left:318.080000pt;}
.x10_c01325{left:328.320000pt;}
.x18_c01325{left:336.000000pt;}
.xb_c01325{left:337.920000pt;}
.x1c_c01325{left:364.800000pt;}
.x11_c01325{left:366.720000pt;}
.x19_c01325{left:376.320000pt;}
.x1d_c01325{left:405.120000pt;}
.x1a_c01325{left:413.440000pt;}
.x36_c01325{left:499.840000pt;}
.x26_c01325{left:502.400000pt;}
.x32_c01325{left:508.160000pt;}
.x2c_c01325{left:509.440000pt;}
.x22_c01325{left:511.360000pt;}
.x37_c01325{left:527.360000pt;}
.x2f_c01325{left:528.640000pt;}
.x27_c01325{left:530.560000pt;}
.x30_c01325{left:538.240000pt;}
.x33_c01325{left:557.440000pt;}
.x2b_c01325{left:558.720000pt;}
.x23_c01325{left:560.000000pt;}
.x34_c01325{left:586.240000pt;}
.x2d_c01325{left:587.520000pt;}
.x24_c01325{left:588.800000pt;}
.x21_c01325{left:592.000000pt;}
.x38_c01325{left:615.040000pt;}
.x25_c01325{left:618.240000pt;}
.x31_c01325{left:624.640000pt;}
.x2a_c01325{left:625.920000pt;}
.x28_c01325{left:627.200000pt;}
.x35_c01325{left:641.920000pt;}
.x2e_c01325{left:643.200000pt;}
.x29_c01325{left:645.120000pt;}
.x3a_c01325{left:679.680000pt;}
.x39_c01325{left:681.600000pt;}
.x3b_c01325{left:682.880000pt;}
.x3c_c01325{left:685.440000pt;}
}





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

.ir_c01326:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01326{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01326;src:url('chunks/assets/font_53f82b61e8832099b60b1919.woff2')format("woff");}.ff1_c01326{font-family:ff1_c01326;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5e_c01326{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m52_c01326{transform:matrix(0.016875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016875,0.000000,0.000000,0.250000,0,0);}
.m5a_c01326{transform:matrix(0.022725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022725,0.000000,0.000000,0.250000,0,0);}
.m5d_c01326{transform:matrix(0.025000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025000,0.000000,0.000000,0.250000,0,0);}
.m54_c01326{transform:matrix(0.034875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.034875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.034875,0.000000,0.000000,0.250000,0,0);}
.me_c01326{transform:matrix(0.056925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056925,0.000000,0.000000,0.250000,0,0);}
.m51_c01326{transform:matrix(0.058225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058225,0.000000,0.000000,0.250000,0,0);}
.m5b_c01326{transform:matrix(0.075200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075200,0.000000,0.000000,0.250000,0,0);}
.m57_c01326{transform:matrix(0.090600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090600,0.000000,0.000000,0.250000,0,0);}
.m58_c01326{transform:matrix(0.115300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115300,0.000000,0.000000,0.250000,0,0);}
.m5c_c01326{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m55_c01326{transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);}
.m53_c01326{transform:matrix(0.152325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152325,0.000000,0.000000,0.250000,0,0);}
.m24_c01326{transform:matrix(0.153400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153400,0.000000,0.000000,0.250000,0,0);}
.m59_c01326{transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);}
.m4e_c01326{transform:matrix(0.169225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169225,0.000000,0.000000,0.250000,0,0);}
.m28_c01326{transform:matrix(0.175850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175850,0.000000,0.000000,0.250000,0,0);}
.mc_c01326{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m50_c01326{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.m60_c01326{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m38_c01326{transform:matrix(0.206150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206150,0.000000,0.000000,0.250000,0,0);}
.m43_c01326{transform:matrix(0.212725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212725,0.000000,0.000000,0.250000,0,0);}
.m45_c01326{transform:matrix(0.213850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213850,0.000000,0.000000,0.250000,0,0);}
.m2d_c01326{transform:matrix(0.217050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217050,0.000000,0.000000,0.250000,0,0);}
.m6_c01326{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);}
.m37_c01326{transform:matrix(0.227425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227425,0.000000,0.000000,0.250000,0,0);}
.m40_c01326{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);}
.m3b_c01326{transform:matrix(0.228475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228475,0.000000,0.000000,0.250000,0,0);}
.m14_c01326{transform:matrix(0.234475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234475,0.000000,0.000000,0.250000,0,0);}
.m1a_c01326{transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);}
.m33_c01326{transform:matrix(0.236525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236525,0.000000,0.000000,0.250000,0,0);}
.m4a_c01326{transform:matrix(0.239225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239225,0.000000,0.000000,0.250000,0,0);}
.m4d_c01326{transform:matrix(0.241200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241200,0.000000,0.000000,0.250000,0,0);}
.m20_c01326{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m49_c01326{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01326{transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);}
.m48_c01326{transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);}
.m1b_c01326{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);}
.m3e_c01326{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);}
.m34_c01326{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);}
.m2a_c01326{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m17_c01326{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);}
.m26_c01326{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mb_c01326{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m19_c01326{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m7_c01326{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m9_c01326{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_c01326{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m42_c01326{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m23_c01326{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m8_c01326{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m4_c01326{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2_c01326{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01326{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m16_c01326{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m29_c01326{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01326{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01326{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01326{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01326{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m39_c01326{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m36_c01326{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m25_c01326{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m3_c01326{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m5_c01326{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.ma_c01326{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);}
.m3f_c01326{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);}
.m3c_c01326{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_c01326{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01326{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);}
.m41_c01326{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01326{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m13_c01326{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m0_c01326{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);}
.m47_c01326{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m1_c01326{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);}
.m12_c01326{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);}
.m31_c01326{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01326{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m32_c01326{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);}
.m21_c01326{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);}
.m44_c01326{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);}
.m46_c01326{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01326{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m35_c01326{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m30_c01326{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);}
.m1e_c01326{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01326{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m15_c01326{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01326{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);}
.m10_c01326{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);}
.m4f_c01326{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m27_c01326{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m18_c01326{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m56_c01326{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m5f_c01326{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m22_c01326{transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);}
.v0_c01326{vertical-align:0.000000px;}
.ls0_c01326{letter-spacing:0.000000px;}
.sc__c01326{text-shadow:none;}
.sc0_c01326{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01326{-webkit-text-stroke:0px transparent;}
.sc0_c01326{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01326{word-spacing:0.000000px;}
.fc0_c01326{color:transparent;}
.fs1a_c01326{font-size:2.880000px;}
.fs1c_c01326{font-size:5.760000px;}
.fs1b_c01326{font-size:8.640000px;}
.fse_c01326{font-size:17.280000px;}
.fs17_c01326{font-size:20.160000px;}
.fsd_c01326{font-size:28.800000px;}
.fs19_c01326{font-size:31.680000px;}
.fsb_c01326{font-size:34.560000px;}
.fs18_c01326{font-size:40.320000px;}
.fsa_c01326{font-size:43.200000px;}
.fs11_c01326{font-size:46.080000px;}
.fsc_c01326{font-size:48.960000px;}
.fs6_c01326{font-size:51.840000px;}
.fsf_c01326{font-size:54.720000px;}
.fs1_c01326{font-size:57.600000px;}
.fs5_c01326{font-size:60.480000px;}
.fs4_c01326{font-size:63.360000px;}
.fs9_c01326{font-size:66.240000px;}
.fs3_c01326{font-size:69.120000px;}
.fs7_c01326{font-size:72.000000px;}
.fs0_c01326{font-size:74.880000px;}
.fs2_c01326{font-size:77.760000px;}
.fs10_c01326{font-size:80.640000px;}
.fs12_c01326{font-size:83.520000px;}
.fs16_c01326{font-size:120.960000px;}
.fs15_c01326{font-size:123.840000px;}
.fs14_c01326{font-size:184.320000px;}
.fs13_c01326{font-size:267.840000px;}
.fs8_c01326{font-size:319.680000px;}
.y0_c01326{bottom:0.000000px;}
.y78_c01326{bottom:29.520000px;}
.y79_c01326{bottom:31.680000px;}
.y77_c01326{bottom:38.160000px;}
.y76_c01326{bottom:41.760000px;}
.y5d_c01326{bottom:45.360000px;}
.y5e_c01326{bottom:46.080000px;}
.y75_c01326{bottom:48.240000px;}
.y5c_c01326{bottom:48.960000px;}
.y74_c01326{bottom:51.120000px;}
.y73_c01326{bottom:64.800000px;}
.y72_c01326{bottom:84.960000px;}
.y5b_c01326{bottom:88.560000px;}
.y5a_c01326{bottom:92.880000px;}
.y7b_c01326{bottom:94.320000px;}
.y7a_c01326{bottom:95.040000px;}
.y71_c01326{bottom:96.480000px;}
.y70_c01326{bottom:102.960000px;}
.y6f_c01326{bottom:128.880000px;}
.y58_c01326{bottom:131.760000px;}
.y59_c01326{bottom:132.480000px;}
.y6d_c01326{bottom:136.800000px;}
.y57_c01326{bottom:137.520000px;}
.y6e_c01326{bottom:140.400000px;}
.y6c_c01326{bottom:145.440000px;}
.y54_c01326{bottom:174.960000px;}
.y56_c01326{bottom:176.400000px;}
.y55_c01326{bottom:178.560000px;}
.y53_c01326{bottom:180.000000px;}
.y69_c01326{bottom:180.720000px;}
.y6a_c01326{bottom:181.440000px;}
.y6b_c01326{bottom:182.880000px;}
.y68_c01326{bottom:192.240000px;}
.y51_c01326{bottom:218.160000px;}
.y52_c01326{bottom:218.880000px;}
.y50_c01326{bottom:222.480000px;}
.y65_c01326{bottom:223.200000px;}
.y66_c01326{bottom:224.640000px;}
.y67_c01326{bottom:226.080000px;}
.y4e_c01326{bottom:261.360000px;}
.y4f_c01326{bottom:262.800000px;}
.y64_c01326{bottom:263.520000px;}
.y17_c01326{bottom:265.680000px;}
.y16_c01326{bottom:266.400000px;}
.y18_c01326{bottom:269.280000px;}
.y4c_c01326{bottom:305.280000px;}
.y4d_c01326{bottom:306.000000px;}
.y4b_c01326{bottom:308.160000px;}
.y62_c01326{bottom:309.600000px;}
.y63_c01326{bottom:312.480000px;}
.y49_c01326{bottom:348.480000px;}
.y4a_c01326{bottom:349.920000px;}
.y48_c01326{bottom:352.080000px;}
.y5f_c01326{bottom:352.800000px;}
.y60_c01326{bottom:354.240000px;}
.y61_c01326{bottom:355.680000px;}
.y45_c01326{bottom:391.680000px;}
.y46_c01326{bottom:392.400000px;}
.y47_c01326{bottom:394.560000px;}
.y44_c01326{bottom:395.280000px;}
.y40_c01326{bottom:434.880000px;}
.y41_c01326{bottom:436.320000px;}
.y42_c01326{bottom:437.760000px;}
.y3f_c01326{bottom:438.480000px;}
.y43_c01326{bottom:441.360000px;}
.y3c_c01326{bottom:478.800000px;}
.y3d_c01326{bottom:479.520000px;}
.y3b_c01326{bottom:481.680000px;}
.y3e_c01326{bottom:482.400000px;}
.y37_c01326{bottom:522.000000px;}
.y39_c01326{bottom:523.440000px;}
.y36_c01326{bottom:524.160000px;}
.y3a_c01326{bottom:524.880000px;}
.y38_c01326{bottom:526.320000px;}
.y34_c01326{bottom:565.920000px;}
.y33_c01326{bottom:568.080000px;}
.y35_c01326{bottom:570.240000px;}
.y2e_c01326{bottom:609.120000px;}
.y2d_c01326{bottom:610.560000px;}
.y2f_c01326{bottom:612.000000px;}
.y31_c01326{bottom:612.720000px;}
.y30_c01326{bottom:613.440000px;}
.y32_c01326{bottom:619.200000px;}
.y2b_c01326{bottom:653.040000px;}
.y2a_c01326{bottom:653.760000px;}
.y2c_c01326{bottom:654.480000px;}
.y28_c01326{bottom:696.240000px;}
.y29_c01326{bottom:697.680000px;}
.y26_c01326{bottom:698.400000px;}
.y27_c01326{bottom:699.120000px;}
.y24_c01326{bottom:739.440000px;}
.y23_c01326{bottom:740.880000px;}
.y25_c01326{bottom:743.040000px;}
.y22_c01326{bottom:781.920000px;}
.y21_c01326{bottom:782.640000px;}
.y1e_c01326{bottom:784.080000px;}
.y1f_c01326{bottom:784.800000px;}
.y20_c01326{bottom:789.840000px;}
.y1a_c01326{bottom:825.120000px;}
.y1d_c01326{bottom:826.560000px;}
.y19_c01326{bottom:827.280000px;}
.y1b_c01326{bottom:828.720000px;}
.y1c_c01326{bottom:829.440000px;}
.y14_c01326{bottom:869.040000px;}
.ya_c01326{bottom:869.760000px;}
.y15_c01326{bottom:871.200000px;}
.y9_c01326{bottom:872.640000px;}
.yb_c01326{bottom:884.160000px;}
.y8_c01326{bottom:910.800000px;}
.y13_c01326{bottom:911.520000px;}
.y11_c01326{bottom:912.240000px;}
.y7_c01326{bottom:912.960000px;}
.y10_c01326{bottom:913.680000px;}
.y12_c01326{bottom:915.120000px;}
.yd_c01326{bottom:954.720000px;}
.y6_c01326{bottom:955.440000px;}
.yc_c01326{bottom:956.160000px;}
.ye_c01326{bottom:958.320000px;}
.yf_c01326{bottom:959.040000px;}
.y3_c01326{bottom:997.920000px;}
.y5_c01326{bottom:998.640000px;}
.y2_c01326{bottom:1000.080000px;}
.y4_c01326{bottom:1042.560000px;}
.y1_c01326{bottom:1109.520000px;}
.h1c_c01326{height:2.591719px;}
.h1e_c01326{height:5.183438px;}
.h1d_c01326{height:7.775156px;}
.h10_c01326{height:15.550313px;}
.h19_c01326{height:18.142031px;}
.hf_c01326{height:25.917187px;}
.h1b_c01326{height:28.508906px;}
.hd_c01326{height:31.100625px;}
.h1a_c01326{height:36.284062px;}
.hc_c01326{height:38.875781px;}
.h13_c01326{height:41.467500px;}
.he_c01326{height:44.059219px;}
.h8_c01326{height:46.650937px;}
.h11_c01326{height:49.242656px;}
.h3_c01326{height:51.834375px;}
.h7_c01326{height:54.426094px;}
.h6_c01326{height:57.017812px;}
.hb_c01326{height:59.609531px;}
.h5_c01326{height:62.201250px;}
.h9_c01326{height:64.792969px;}
.h2_c01326{height:67.384687px;}
.h4_c01326{height:69.976406px;}
.h12_c01326{height:72.568125px;}
.h14_c01326{height:75.159844px;}
.h18_c01326{height:108.852188px;}
.h17_c01326{height:111.443906px;}
.h16_c01326{height:165.870000px;}
.h15_c01326{height:241.029844px;}
.ha_c01326{height:287.680781px;}
.h1_c01326{height:1151.250000px;}
.h0_c01326{height:1151.280000px;}
.w0_c01326{width:774.720000px;}
.w1_c01326{width:774.750000px;}
.x0_c01326{left:0.000000px;}
.x2_c01326{left:46.800000px;}
.x2f_c01326{left:48.960000px;}
.x32_c01326{left:50.400000px;}
.x12_c01326{left:77.760000px;}
.x1b_c01326{left:86.400000px;}
.x1c_c01326{left:107.280000px;}
.x3_c01326{left:108.720000px;}
.x33_c01326{left:118.800000px;}
.x10_c01326{left:183.600000px;}
.xc_c01326{left:194.400000px;}
.x1e_c01326{left:205.200000px;}
.x2c_c01326{left:206.640000px;}
.x21_c01326{left:217.440000px;}
.x11_c01326{left:227.520000px;}
.x1d_c01326{left:238.320000px;}
.x15_c01326{left:248.400000px;}
.xd_c01326{left:249.840000px;}
.x2b_c01326{left:260.640000px;}
.x31_c01326{left:270.720000px;}
.x16_c01326{left:292.320000px;}
.x24_c01326{left:302.400000px;}
.x30_c01326{left:304.560000px;}
.x2d_c01326{left:314.640000px;}
.x17_c01326{left:334.800000px;}
.xe_c01326{left:346.320000px;}
.x25_c01326{left:357.120000px;}
.xf_c01326{left:389.520000px;}
.x18_c01326{left:432.720000px;}
.x26_c01326{left:454.320000px;}
.x19_c01326{left:486.720000px;}
.x1a_c01326{left:529.920000px;}
.xa_c01326{left:573.120000px;}
.x22_c01326{left:593.280000px;}
.x6_c01326{left:594.720000px;}
.x4_c01326{left:596.160000px;}
.x2a_c01326{left:604.800000px;}
.x2e_c01326{left:617.040000px;}
.x1f_c01326{left:618.480000px;}
.x13_c01326{left:626.400000px;}
.x8_c01326{left:628.560000px;}
.x23_c01326{left:650.160000px;}
.x1_c01326{left:660.240000px;}
.x14_c01326{left:669.600000px;}
.x5_c01326{left:693.360000px;}
.x27_c01326{left:701.280000px;}
.x9_c01326{left:702.720000px;}
.x7_c01326{left:704.160000px;}
.x28_c01326{left:722.160000px;}
.x20_c01326{left:723.600000px;}
.x34_c01326{left:763.920000px;}
.x36_c01326{left:765.360000px;}
.x29_c01326{left:766.800000px;}
.xb_c01326{left:768.960000px;}
.x35_c01326{left:770.400000px;}
@media print{
.v0_c01326{vertical-align:0.000000pt;}
.ls0_c01326{letter-spacing:0.000000pt;}
.ws0_c01326{word-spacing:0.000000pt;}
.fs1a_c01326{font-size:2.560000pt;}
.fs1c_c01326{font-size:5.120000pt;}
.fs1b_c01326{font-size:7.680000pt;}
.fse_c01326{font-size:15.360000pt;}
.fs17_c01326{font-size:17.920000pt;}
.fsd_c01326{font-size:25.600000pt;}
.fs19_c01326{font-size:28.160000pt;}
.fsb_c01326{font-size:30.720000pt;}
.fs18_c01326{font-size:35.840000pt;}
.fsa_c01326{font-size:38.400000pt;}
.fs11_c01326{font-size:40.960000pt;}
.fsc_c01326{font-size:43.520000pt;}
.fs6_c01326{font-size:46.080000pt;}
.fsf_c01326{font-size:48.640000pt;}
.fs1_c01326{font-size:51.200000pt;}
.fs5_c01326{font-size:53.760000pt;}
.fs4_c01326{font-size:56.320000pt;}
.fs9_c01326{font-size:58.880000pt;}
.fs3_c01326{font-size:61.440000pt;}
.fs7_c01326{font-size:64.000000pt;}
.fs0_c01326{font-size:66.560000pt;}
.fs2_c01326{font-size:69.120000pt;}
.fs10_c01326{font-size:71.680000pt;}
.fs12_c01326{font-size:74.240000pt;}
.fs16_c01326{font-size:107.520000pt;}
.fs15_c01326{font-size:110.080000pt;}
.fs14_c01326{font-size:163.840000pt;}
.fs13_c01326{font-size:238.080000pt;}
.fs8_c01326{font-size:284.160000pt;}
.y0_c01326{bottom:0.000000pt;}
.y78_c01326{bottom:26.240000pt;}
.y79_c01326{bottom:28.160000pt;}
.y77_c01326{bottom:33.920000pt;}
.y76_c01326{bottom:37.120000pt;}
.y5d_c01326{bottom:40.320000pt;}
.y5e_c01326{bottom:40.960000pt;}
.y75_c01326{bottom:42.880000pt;}
.y5c_c01326{bottom:43.520000pt;}
.y74_c01326{bottom:45.440000pt;}
.y73_c01326{bottom:57.600000pt;}
.y72_c01326{bottom:75.520000pt;}
.y5b_c01326{bottom:78.720000pt;}
.y5a_c01326{bottom:82.560000pt;}
.y7b_c01326{bottom:83.840000pt;}
.y7a_c01326{bottom:84.480000pt;}
.y71_c01326{bottom:85.760000pt;}
.y70_c01326{bottom:91.520000pt;}
.y6f_c01326{bottom:114.560000pt;}
.y58_c01326{bottom:117.120000pt;}
.y59_c01326{bottom:117.760000pt;}
.y6d_c01326{bottom:121.600000pt;}
.y57_c01326{bottom:122.240000pt;}
.y6e_c01326{bottom:124.800000pt;}
.y6c_c01326{bottom:129.280000pt;}
.y54_c01326{bottom:155.520000pt;}
.y56_c01326{bottom:156.800000pt;}
.y55_c01326{bottom:158.720000pt;}
.y53_c01326{bottom:160.000000pt;}
.y69_c01326{bottom:160.640000pt;}
.y6a_c01326{bottom:161.280000pt;}
.y6b_c01326{bottom:162.560000pt;}
.y68_c01326{bottom:170.880000pt;}
.y51_c01326{bottom:193.920000pt;}
.y52_c01326{bottom:194.560000pt;}
.y50_c01326{bottom:197.760000pt;}
.y65_c01326{bottom:198.400000pt;}
.y66_c01326{bottom:199.680000pt;}
.y67_c01326{bottom:200.960000pt;}
.y4e_c01326{bottom:232.320000pt;}
.y4f_c01326{bottom:233.600000pt;}
.y64_c01326{bottom:234.240000pt;}
.y17_c01326{bottom:236.160000pt;}
.y16_c01326{bottom:236.800000pt;}
.y18_c01326{bottom:239.360000pt;}
.y4c_c01326{bottom:271.360000pt;}
.y4d_c01326{bottom:272.000000pt;}
.y4b_c01326{bottom:273.920000pt;}
.y62_c01326{bottom:275.200000pt;}
.y63_c01326{bottom:277.760000pt;}
.y49_c01326{bottom:309.760000pt;}
.y4a_c01326{bottom:311.040000pt;}
.y48_c01326{bottom:312.960000pt;}
.y5f_c01326{bottom:313.600000pt;}
.y60_c01326{bottom:314.880000pt;}
.y61_c01326{bottom:316.160000pt;}
.y45_c01326{bottom:348.160000pt;}
.y46_c01326{bottom:348.800000pt;}
.y47_c01326{bottom:350.720000pt;}
.y44_c01326{bottom:351.360000pt;}
.y40_c01326{bottom:386.560000pt;}
.y41_c01326{bottom:387.840000pt;}
.y42_c01326{bottom:389.120000pt;}
.y3f_c01326{bottom:389.760000pt;}
.y43_c01326{bottom:392.320000pt;}
.y3c_c01326{bottom:425.600000pt;}
.y3d_c01326{bottom:426.240000pt;}
.y3b_c01326{bottom:428.160000pt;}
.y3e_c01326{bottom:428.800000pt;}
.y37_c01326{bottom:464.000000pt;}
.y39_c01326{bottom:465.280000pt;}
.y36_c01326{bottom:465.920000pt;}
.y3a_c01326{bottom:466.560000pt;}
.y38_c01326{bottom:467.840000pt;}
.y34_c01326{bottom:503.040000pt;}
.y33_c01326{bottom:504.960000pt;}
.y35_c01326{bottom:506.880000pt;}
.y2e_c01326{bottom:541.440000pt;}
.y2d_c01326{bottom:542.720000pt;}
.y2f_c01326{bottom:544.000000pt;}
.y31_c01326{bottom:544.640000pt;}
.y30_c01326{bottom:545.280000pt;}
.y32_c01326{bottom:550.400000pt;}
.y2b_c01326{bottom:580.480000pt;}
.y2a_c01326{bottom:581.120000pt;}
.y2c_c01326{bottom:581.760000pt;}
.y28_c01326{bottom:618.880000pt;}
.y29_c01326{bottom:620.160000pt;}
.y26_c01326{bottom:620.800000pt;}
.y27_c01326{bottom:621.440000pt;}
.y24_c01326{bottom:657.280000pt;}
.y23_c01326{bottom:658.560000pt;}
.y25_c01326{bottom:660.480000pt;}
.y22_c01326{bottom:695.040000pt;}
.y21_c01326{bottom:695.680000pt;}
.y1e_c01326{bottom:696.960000pt;}
.y1f_c01326{bottom:697.600000pt;}
.y20_c01326{bottom:702.080000pt;}
.y1a_c01326{bottom:733.440000pt;}
.y1d_c01326{bottom:734.720000pt;}
.y19_c01326{bottom:735.360000pt;}
.y1b_c01326{bottom:736.640000pt;}
.y1c_c01326{bottom:737.280000pt;}
.y14_c01326{bottom:772.480000pt;}
.ya_c01326{bottom:773.120000pt;}
.y15_c01326{bottom:774.400000pt;}
.y9_c01326{bottom:775.680000pt;}
.yb_c01326{bottom:785.920000pt;}
.y8_c01326{bottom:809.600000pt;}
.y13_c01326{bottom:810.240000pt;}
.y11_c01326{bottom:810.880000pt;}
.y7_c01326{bottom:811.520000pt;}
.y10_c01326{bottom:812.160000pt;}
.y12_c01326{bottom:813.440000pt;}
.yd_c01326{bottom:848.640000pt;}
.y6_c01326{bottom:849.280000pt;}
.yc_c01326{bottom:849.920000pt;}
.ye_c01326{bottom:851.840000pt;}
.yf_c01326{bottom:852.480000pt;}
.y3_c01326{bottom:887.040000pt;}
.y5_c01326{bottom:887.680000pt;}
.y2_c01326{bottom:888.960000pt;}
.y4_c01326{bottom:926.720000pt;}
.y1_c01326{bottom:986.240000pt;}
.h1c_c01326{height:2.303750pt;}
.h1e_c01326{height:4.607500pt;}
.h1d_c01326{height:6.911250pt;}
.h10_c01326{height:13.822500pt;}
.h19_c01326{height:16.126250pt;}
.hf_c01326{height:23.037500pt;}
.h1b_c01326{height:25.341250pt;}
.hd_c01326{height:27.645000pt;}
.h1a_c01326{height:32.252500pt;}
.hc_c01326{height:34.556250pt;}
.h13_c01326{height:36.860000pt;}
.he_c01326{height:39.163750pt;}
.h8_c01326{height:41.467500pt;}
.h11_c01326{height:43.771250pt;}
.h3_c01326{height:46.075000pt;}
.h7_c01326{height:48.378750pt;}
.h6_c01326{height:50.682500pt;}
.hb_c01326{height:52.986250pt;}
.h5_c01326{height:55.290000pt;}
.h9_c01326{height:57.593750pt;}
.h2_c01326{height:59.897500pt;}
.h4_c01326{height:62.201250pt;}
.h12_c01326{height:64.505000pt;}
.h14_c01326{height:66.808750pt;}
.h18_c01326{height:96.757500pt;}
.h17_c01326{height:99.061250pt;}
.h16_c01326{height:147.440000pt;}
.h15_c01326{height:214.248750pt;}
.ha_c01326{height:255.716250pt;}
.h1_c01326{height:1023.333333pt;}
.h0_c01326{height:1023.360000pt;}
.w0_c01326{width:688.640000pt;}
.w1_c01326{width:688.666667pt;}
.x0_c01326{left:0.000000pt;}
.x2_c01326{left:41.600000pt;}
.x2f_c01326{left:43.520000pt;}
.x32_c01326{left:44.800000pt;}
.x12_c01326{left:69.120000pt;}
.x1b_c01326{left:76.800000pt;}
.x1c_c01326{left:95.360000pt;}
.x3_c01326{left:96.640000pt;}
.x33_c01326{left:105.600000pt;}
.x10_c01326{left:163.200000pt;}
.xc_c01326{left:172.800000pt;}
.x1e_c01326{left:182.400000pt;}
.x2c_c01326{left:183.680000pt;}
.x21_c01326{left:193.280000pt;}
.x11_c01326{left:202.240000pt;}
.x1d_c01326{left:211.840000pt;}
.x15_c01326{left:220.800000pt;}
.xd_c01326{left:222.080000pt;}
.x2b_c01326{left:231.680000pt;}
.x31_c01326{left:240.640000pt;}
.x16_c01326{left:259.840000pt;}
.x24_c01326{left:268.800000pt;}
.x30_c01326{left:270.720000pt;}
.x2d_c01326{left:279.680000pt;}
.x17_c01326{left:297.600000pt;}
.xe_c01326{left:307.840000pt;}
.x25_c01326{left:317.440000pt;}
.xf_c01326{left:346.240000pt;}
.x18_c01326{left:384.640000pt;}
.x26_c01326{left:403.840000pt;}
.x19_c01326{left:432.640000pt;}
.x1a_c01326{left:471.040000pt;}
.xa_c01326{left:509.440000pt;}
.x22_c01326{left:527.360000pt;}
.x6_c01326{left:528.640000pt;}
.x4_c01326{left:529.920000pt;}
.x2a_c01326{left:537.600000pt;}
.x2e_c01326{left:548.480000pt;}
.x1f_c01326{left:549.760000pt;}
.x13_c01326{left:556.800000pt;}
.x8_c01326{left:558.720000pt;}
.x23_c01326{left:577.920000pt;}
.x1_c01326{left:586.880000pt;}
.x14_c01326{left:595.200000pt;}
.x5_c01326{left:616.320000pt;}
.x27_c01326{left:623.360000pt;}
.x9_c01326{left:624.640000pt;}
.x7_c01326{left:625.920000pt;}
.x28_c01326{left:641.920000pt;}
.x20_c01326{left:643.200000pt;}
.x34_c01326{left:679.040000pt;}
.x36_c01326{left:680.320000pt;}
.x29_c01326{left:681.600000pt;}
.xb_c01326{left:683.520000pt;}
.x35_c01326{left:684.800000pt;}
}





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

.ir_c01327:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01327{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01327;src:url('chunks/assets/font_0817bda52c312f0002aec0e6.woff2')format("woff");}.ff1_c01327{font-family:ff1_c01327;line-height:1.109863;font-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_c01327{transform:matrix(0.194350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194350,0.000000,0.000000,0.250000,0,0);}
.mc_c01327{transform:matrix(0.210350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210350,0.000000,0.000000,0.250000,0,0);}
.m1f_c01327{transform:matrix(0.227400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227400,0.000000,0.000000,0.250000,0,0);}
.m1b_c01327{transform:matrix(0.231850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231850,0.000000,0.000000,0.250000,0,0);}
.m20_c01327{transform:matrix(0.233675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233675,0.000000,0.000000,0.250000,0,0);}
.m2f_c01327{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m22_c01327{transform:matrix(0.236225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236225,0.000000,0.000000,0.250000,0,0);}
.m8_c01327{transform:matrix(0.239225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239225,0.000000,0.000000,0.250000,0,0);}
.m1d_c01327{transform:matrix(0.240975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240975,0.000000,0.000000,0.250000,0,0);}
.m12_c01327{transform:matrix(0.241125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241125,0.000000,0.000000,0.250000,0,0);}
.m17_c01327{transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);}
.m10_c01327{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);}
.m25_c01327{transform:matrix(0.247075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247075,0.000000,0.000000,0.250000,0,0);}
.m37_c01327{transform:matrix(0.247200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247200,0.000000,0.000000,0.250000,0,0);}
.m3d_c01327{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.md_c01327{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m2_c01327{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);}
.m27_c01327{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);}
.m3b_c01327{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);}
.m24_c01327{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);}
.m38_c01327{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_c01327{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_c01327{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);}
.m23_c01327{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.ma_c01327{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m30_c01327{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);}
.m2b_c01327{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);}
.m3a_c01327{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m5_c01327{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01327{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m3_c01327{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m28_c01327{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m32_c01327{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m14_c01327{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m9_c01327{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mb_c01327{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m0_c01327{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01327{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m34_c01327{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m29_c01327{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m1_c01327{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);}
.m39_c01327{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01327{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);}
.m40_c01327{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m21_c01327{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_c01327{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_c01327{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m4_c01327{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);}
.mf_c01327{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01327{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01327{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.me_c01327{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);}
.m35_c01327{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m31_c01327{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);}
.m2d_c01327{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m11_c01327{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m26_c01327{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m19_c01327{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m7_c01327{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m18_c01327{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01327{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01327{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m36_c01327{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01327{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);}
.m33_c01327{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.v1_c01327{vertical-align:-11.520000px;}
.v2_c01327{vertical-align:-2.880000px;}
.v0_c01327{vertical-align:0.000000px;}
.ls0_c01327{letter-spacing:0.000000px;}
.sc__c01327{text-shadow:none;}
.sc0_c01327{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01327{-webkit-text-stroke:0px transparent;}
.sc0_c01327{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01327{word-spacing:0.000000px;}
.ws1_c01327{word-spacing:2.120400px;}
.ws2_c01327{word-spacing:11.690400px;}
.ws0_c01327{word-spacing:59.734524px;}
.fc0_c01327{color:transparent;}
.fs6_c01327{font-size:37.440000px;}
.fs10_c01327{font-size:40.320000px;}
.fsd_c01327{font-size:43.200000px;}
.fsf_c01327{font-size:48.960000px;}
.fs9_c01327{font-size:51.840000px;}
.fsa_c01327{font-size:54.720000px;}
.fsc_c01327{font-size:57.600000px;}
.fs3_c01327{font-size:60.480000px;}
.fs5_c01327{font-size:63.360000px;}
.fs1_c01327{font-size:66.240000px;}
.fs7_c01327{font-size:69.120000px;}
.fs2_c01327{font-size:72.000000px;}
.fs4_c01327{font-size:74.880000px;}
.fs0_c01327{font-size:77.760000px;}
.fsb_c01327{font-size:80.640000px;}
.fs8_c01327{font-size:83.520000px;}
.fse_c01327{font-size:86.400000px;}
.y0_c01327{bottom:0.000000px;}
.y62_c01327{bottom:27.360000px;}
.y61_c01327{bottom:30.240000px;}
.y6e_c01327{bottom:33.120000px;}
.y70_c01327{bottom:34.560000px;}
.y6f_c01327{bottom:35.280000px;}
.y60_c01327{bottom:69.840000px;}
.y5f_c01327{bottom:73.440000px;}
.y6a_c01327{bottom:74.160000px;}
.y6b_c01327{bottom:74.880000px;}
.y6c_c01327{bottom:75.600000px;}
.y6d_c01327{bottom:76.320000px;}
.y5e_c01327{bottom:113.040000px;}
.y5d_c01327{bottom:116.640000px;}
.y68_c01327{bottom:117.360000px;}
.y5c_c01327{bottom:118.080000px;}
.y69_c01327{bottom:118.800000px;}
.y5b_c01327{bottom:156.960000px;}
.y59_c01327{bottom:158.400000px;}
.y5a_c01327{bottom:159.120000px;}
.y58_c01327{bottom:159.840000px;}
.y57_c01327{bottom:160.560000px;}
.y67_c01327{bottom:162.000000px;}
.y56_c01327{bottom:203.760000px;}
.y55_c01327{bottom:205.200000px;}
.y66_c01327{bottom:207.360000px;}
.y54_c01327{bottom:244.080000px;}
.y53_c01327{bottom:246.960000px;}
.y52_c01327{bottom:248.400000px;}
.y65_c01327{bottom:249.840000px;}
.y51_c01327{bottom:286.560000px;}
.y50_c01327{bottom:290.880000px;}
.y4f_c01327{bottom:291.600000px;}
.y64_c01327{bottom:292.320000px;}
.y4e_c01327{bottom:330.480000px;}
.y4d_c01327{bottom:333.360000px;}
.y4c_c01327{bottom:334.080000px;}
.y63_c01327{bottom:334.800000px;}
.y4a_c01327{bottom:378.000000px;}
.y4b_c01327{bottom:378.720000px;}
.y2f_c01327{bottom:428.400000px;}
.y31_c01327{bottom:429.120000px;}
.y30_c01327{bottom:430.560000px;}
.y49_c01327{bottom:431.280000px;}
.y2e_c01327{bottom:432.000000px;}
.y2b_c01327{bottom:472.320000px;}
.y2d_c01327{bottom:473.040000px;}
.y2a_c01327{bottom:475.200000px;}
.y48_c01327{bottom:475.920000px;}
.y2c_c01327{bottom:476.640000px;}
.y47_c01327{bottom:477.360000px;}
.y27_c01327{bottom:515.520000px;}
.y28_c01327{bottom:516.240000px;}
.y29_c01327{bottom:516.960000px;}
.y26_c01327{bottom:518.400000px;}
.y45_c01327{bottom:519.120000px;}
.y46_c01327{bottom:519.840000px;}
.y25_c01327{bottom:558.720000px;}
.y44_c01327{bottom:559.440000px;}
.y43_c01327{bottom:560.160000px;}
.y24_c01327{bottom:560.880000px;}
.y42_c01327{bottom:563.040000px;}
.y23_c01327{bottom:601.920000px;}
.y40_c01327{bottom:603.360000px;}
.y22_c01327{bottom:604.080000px;}
.y41_c01327{bottom:604.800000px;}
.y3f_c01327{bottom:605.520000px;}
.y20_c01327{bottom:643.680000px;}
.y21_c01327{bottom:645.120000px;}
.y3d_c01327{bottom:645.840000px;}
.y3c_c01327{bottom:646.560000px;}
.y1f_c01327{bottom:647.280000px;}
.y3e_c01327{bottom:648.720000px;}
.y1c_c01327{bottom:688.320000px;}
.y3b_c01327{bottom:689.760000px;}
.y1b_c01327{bottom:690.480000px;}
.y1e_c01327{bottom:691.200000px;}
.y1d_c01327{bottom:691.920000px;}
.y1a_c01327{bottom:730.800000px;}
.y18_c01327{bottom:732.240000px;}
.y19_c01327{bottom:732.960000px;}
.y17_c01327{bottom:733.680000px;}
.y3a_c01327{bottom:735.120000px;}
.y15_c01327{bottom:774.720000px;}
.y39_c01327{bottom:775.440000px;}
.y16_c01327{bottom:776.160000px;}
.y14_c01327{bottom:776.880000px;}
.y12_c01327{bottom:818.640000px;}
.y37_c01327{bottom:820.800000px;}
.y38_c01327{bottom:821.520000px;}
.y13_c01327{bottom:822.240000px;}
.yf_c01327{bottom:860.400000px;}
.y10_c01327{bottom:861.840000px;}
.y36_c01327{bottom:862.560000px;}
.ye_c01327{bottom:864.000000px;}
.y11_c01327{bottom:865.440000px;}
.yd_c01327{bottom:905.040000px;}
.y35_c01327{bottom:906.480000px;}
.yb_c01327{bottom:907.200000px;}
.yc_c01327{bottom:907.920000px;}
.y9_c01327{bottom:948.240000px;}
.ya_c01327{bottom:948.960000px;}
.y34_c01327{bottom:949.680000px;}
.y8_c01327{bottom:951.120000px;}
.y6_c01327{bottom:991.440000px;}
.y7_c01327{bottom:992.160000px;}
.y33_c01327{bottom:992.880000px;}
.y5_c01327{bottom:994.320000px;}
.y32_c01327{bottom:1034.640000px;}
.y3_c01327{bottom:1035.360000px;}
.y4_c01327{bottom:1036.080000px;}
.y2_c01327{bottom:1036.800000px;}
.y1_c01327{bottom:1108.080000px;}
.h8_c01327{height:33.692344px;}
.h12_c01327{height:36.284062px;}
.hf_c01327{height:38.875781px;}
.h11_c01327{height:44.059219px;}
.hb_c01327{height:46.650937px;}
.hc_c01327{height:49.242656px;}
.he_c01327{height:51.834375px;}
.h5_c01327{height:54.426094px;}
.h7_c01327{height:57.017812px;}
.h13_c01327{height:58.456406px;}
.h3_c01327{height:59.609531px;}
.h9_c01327{height:62.201250px;}
.h4_c01327{height:64.792969px;}
.h6_c01327{height:67.384687px;}
.h2_c01327{height:69.976406px;}
.hd_c01327{height:72.568125px;}
.ha_c01327{height:75.159844px;}
.h10_c01327{height:77.751563px;}
.h1_c01327{height:1149.000000px;}
.h0_c01327{height:1149.120000px;}
.w1_c01327{width:771.000000px;}
.w0_c01327{width:771.120000px;}
.x0_c01327{left:0.000000px;}
.x2_c01327{left:43.200000px;}
.xf_c01327{left:44.640000px;}
.x26_c01327{left:46.080000px;}
.x27_c01327{left:47.520000px;}
.x5_c01327{left:74.880000px;}
.x22_c01327{left:94.320000px;}
.xa_c01327{left:103.680000px;}
.x3_c01327{left:105.120000px;}
.x23_c01327{left:148.320000px;}
.x24_c01327{left:180.720000px;}
.x25_c01327{left:190.800000px;}
.x4_c01327{left:203.040000px;}
.x11_c01327{left:234.720000px;}
.xd_c01327{left:257.760000px;}
.xb_c01327{left:267.840000px;}
.x12_c01327{left:277.920000px;}
.x6_c01327{left:289.440000px;}
.xe_c01327{left:299.520000px;}
.x8_c01327{left:311.040000px;}
.x7_c01327{left:321.840000px;}
.x9_c01327{left:343.440000px;}
.xc_c01327{left:354.240000px;}
.x10_c01327{left:364.320000px;}
.x28_c01327{left:588.960000px;}
.x1a_c01327{left:590.400000px;}
.x17_c01327{left:591.840000px;}
.x29_c01327{left:600.480000px;}
.x1d_c01327{left:622.800000px;}
.x19_c01327{left:624.240000px;}
.x13_c01327{left:626.400000px;}
.x20_c01327{left:655.200000px;}
.x1_c01327{left:658.800000px;}
.x1e_c01327{left:665.280000px;}
.x1b_c01327{left:666.720000px;}
.x14_c01327{left:668.160000px;}
.x2a_c01327{left:688.320000px;}
.x1f_c01327{left:697.680000px;}
.x15_c01327{left:699.840000px;}
.x18_c01327{left:701.280000px;}
.x21_c01327{left:717.840000px;}
.x1c_c01327{left:719.280000px;}
.x16_c01327{left:721.440000px;}
@media print{
.v1_c01327{vertical-align:-10.240000pt;}
.v2_c01327{vertical-align:-2.560000pt;}
.v0_c01327{vertical-align:0.000000pt;}
.ls0_c01327{letter-spacing:0.000000pt;}
.ws3_c01327{word-spacing:0.000000pt;}
.ws1_c01327{word-spacing:1.884800pt;}
.ws2_c01327{word-spacing:10.391467pt;}
.ws0_c01327{word-spacing:53.097354pt;}
.fs6_c01327{font-size:33.280000pt;}
.fs10_c01327{font-size:35.840000pt;}
.fsd_c01327{font-size:38.400000pt;}
.fsf_c01327{font-size:43.520000pt;}
.fs9_c01327{font-size:46.080000pt;}
.fsa_c01327{font-size:48.640000pt;}
.fsc_c01327{font-size:51.200000pt;}
.fs3_c01327{font-size:53.760000pt;}
.fs5_c01327{font-size:56.320000pt;}
.fs1_c01327{font-size:58.880000pt;}
.fs7_c01327{font-size:61.440000pt;}
.fs2_c01327{font-size:64.000000pt;}
.fs4_c01327{font-size:66.560000pt;}
.fs0_c01327{font-size:69.120000pt;}
.fsb_c01327{font-size:71.680000pt;}
.fs8_c01327{font-size:74.240000pt;}
.fse_c01327{font-size:76.800000pt;}
.y0_c01327{bottom:0.000000pt;}
.y62_c01327{bottom:24.320000pt;}
.y61_c01327{bottom:26.880000pt;}
.y6e_c01327{bottom:29.440000pt;}
.y70_c01327{bottom:30.720000pt;}
.y6f_c01327{bottom:31.360000pt;}
.y60_c01327{bottom:62.080000pt;}
.y5f_c01327{bottom:65.280000pt;}
.y6a_c01327{bottom:65.920000pt;}
.y6b_c01327{bottom:66.560000pt;}
.y6c_c01327{bottom:67.200000pt;}
.y6d_c01327{bottom:67.840000pt;}
.y5e_c01327{bottom:100.480000pt;}
.y5d_c01327{bottom:103.680000pt;}
.y68_c01327{bottom:104.320000pt;}
.y5c_c01327{bottom:104.960000pt;}
.y69_c01327{bottom:105.600000pt;}
.y5b_c01327{bottom:139.520000pt;}
.y59_c01327{bottom:140.800000pt;}
.y5a_c01327{bottom:141.440000pt;}
.y58_c01327{bottom:142.080000pt;}
.y57_c01327{bottom:142.720000pt;}
.y67_c01327{bottom:144.000000pt;}
.y56_c01327{bottom:181.120000pt;}
.y55_c01327{bottom:182.400000pt;}
.y66_c01327{bottom:184.320000pt;}
.y54_c01327{bottom:216.960000pt;}
.y53_c01327{bottom:219.520000pt;}
.y52_c01327{bottom:220.800000pt;}
.y65_c01327{bottom:222.080000pt;}
.y51_c01327{bottom:254.720000pt;}
.y50_c01327{bottom:258.560000pt;}
.y4f_c01327{bottom:259.200000pt;}
.y64_c01327{bottom:259.840000pt;}
.y4e_c01327{bottom:293.760000pt;}
.y4d_c01327{bottom:296.320000pt;}
.y4c_c01327{bottom:296.960000pt;}
.y63_c01327{bottom:297.600000pt;}
.y4a_c01327{bottom:336.000000pt;}
.y4b_c01327{bottom:336.640000pt;}
.y2f_c01327{bottom:380.800000pt;}
.y31_c01327{bottom:381.440000pt;}
.y30_c01327{bottom:382.720000pt;}
.y49_c01327{bottom:383.360000pt;}
.y2e_c01327{bottom:384.000000pt;}
.y2b_c01327{bottom:419.840000pt;}
.y2d_c01327{bottom:420.480000pt;}
.y2a_c01327{bottom:422.400000pt;}
.y48_c01327{bottom:423.040000pt;}
.y2c_c01327{bottom:423.680000pt;}
.y47_c01327{bottom:424.320000pt;}
.y27_c01327{bottom:458.240000pt;}
.y28_c01327{bottom:458.880000pt;}
.y29_c01327{bottom:459.520000pt;}
.y26_c01327{bottom:460.800000pt;}
.y45_c01327{bottom:461.440000pt;}
.y46_c01327{bottom:462.080000pt;}
.y25_c01327{bottom:496.640000pt;}
.y44_c01327{bottom:497.280000pt;}
.y43_c01327{bottom:497.920000pt;}
.y24_c01327{bottom:498.560000pt;}
.y42_c01327{bottom:500.480000pt;}
.y23_c01327{bottom:535.040000pt;}
.y40_c01327{bottom:536.320000pt;}
.y22_c01327{bottom:536.960000pt;}
.y41_c01327{bottom:537.600000pt;}
.y3f_c01327{bottom:538.240000pt;}
.y20_c01327{bottom:572.160000pt;}
.y21_c01327{bottom:573.440000pt;}
.y3d_c01327{bottom:574.080000pt;}
.y3c_c01327{bottom:574.720000pt;}
.y1f_c01327{bottom:575.360000pt;}
.y3e_c01327{bottom:576.640000pt;}
.y1c_c01327{bottom:611.840000pt;}
.y3b_c01327{bottom:613.120000pt;}
.y1b_c01327{bottom:613.760000pt;}
.y1e_c01327{bottom:614.400000pt;}
.y1d_c01327{bottom:615.040000pt;}
.y1a_c01327{bottom:649.600000pt;}
.y18_c01327{bottom:650.880000pt;}
.y19_c01327{bottom:651.520000pt;}
.y17_c01327{bottom:652.160000pt;}
.y3a_c01327{bottom:653.440000pt;}
.y15_c01327{bottom:688.640000pt;}
.y39_c01327{bottom:689.280000pt;}
.y16_c01327{bottom:689.920000pt;}
.y14_c01327{bottom:690.560000pt;}
.y12_c01327{bottom:727.680000pt;}
.y37_c01327{bottom:729.600000pt;}
.y38_c01327{bottom:730.240000pt;}
.y13_c01327{bottom:730.880000pt;}
.yf_c01327{bottom:764.800000pt;}
.y10_c01327{bottom:766.080000pt;}
.y36_c01327{bottom:766.720000pt;}
.ye_c01327{bottom:768.000000pt;}
.y11_c01327{bottom:769.280000pt;}
.yd_c01327{bottom:804.480000pt;}
.y35_c01327{bottom:805.760000pt;}
.yb_c01327{bottom:806.400000pt;}
.yc_c01327{bottom:807.040000pt;}
.y9_c01327{bottom:842.880000pt;}
.ya_c01327{bottom:843.520000pt;}
.y34_c01327{bottom:844.160000pt;}
.y8_c01327{bottom:845.440000pt;}
.y6_c01327{bottom:881.280000pt;}
.y7_c01327{bottom:881.920000pt;}
.y33_c01327{bottom:882.560000pt;}
.y5_c01327{bottom:883.840000pt;}
.y32_c01327{bottom:919.680000pt;}
.y3_c01327{bottom:920.320000pt;}
.y4_c01327{bottom:920.960000pt;}
.y2_c01327{bottom:921.600000pt;}
.y1_c01327{bottom:984.960000pt;}
.h8_c01327{height:29.948750pt;}
.h12_c01327{height:32.252500pt;}
.hf_c01327{height:34.556250pt;}
.h11_c01327{height:39.163750pt;}
.hb_c01327{height:41.467500pt;}
.hc_c01327{height:43.771250pt;}
.he_c01327{height:46.075000pt;}
.h5_c01327{height:48.378750pt;}
.h7_c01327{height:50.682500pt;}
.h13_c01327{height:51.961250pt;}
.h3_c01327{height:52.986250pt;}
.h9_c01327{height:55.290000pt;}
.h4_c01327{height:57.593750pt;}
.h6_c01327{height:59.897500pt;}
.h2_c01327{height:62.201250pt;}
.hd_c01327{height:64.505000pt;}
.ha_c01327{height:66.808750pt;}
.h10_c01327{height:69.112500pt;}
.h1_c01327{height:1021.333333pt;}
.h0_c01327{height:1021.440000pt;}
.w1_c01327{width:685.333333pt;}
.w0_c01327{width:685.440000pt;}
.x0_c01327{left:0.000000pt;}
.x2_c01327{left:38.400000pt;}
.xf_c01327{left:39.680000pt;}
.x26_c01327{left:40.960000pt;}
.x27_c01327{left:42.240000pt;}
.x5_c01327{left:66.560000pt;}
.x22_c01327{left:83.840000pt;}
.xa_c01327{left:92.160000pt;}
.x3_c01327{left:93.440000pt;}
.x23_c01327{left:131.840000pt;}
.x24_c01327{left:160.640000pt;}
.x25_c01327{left:169.600000pt;}
.x4_c01327{left:180.480000pt;}
.x11_c01327{left:208.640000pt;}
.xd_c01327{left:229.120000pt;}
.xb_c01327{left:238.080000pt;}
.x12_c01327{left:247.040000pt;}
.x6_c01327{left:257.280000pt;}
.xe_c01327{left:266.240000pt;}
.x8_c01327{left:276.480000pt;}
.x7_c01327{left:286.080000pt;}
.x9_c01327{left:305.280000pt;}
.xc_c01327{left:314.880000pt;}
.x10_c01327{left:323.840000pt;}
.x28_c01327{left:523.520000pt;}
.x1a_c01327{left:524.800000pt;}
.x17_c01327{left:526.080000pt;}
.x29_c01327{left:533.760000pt;}
.x1d_c01327{left:553.600000pt;}
.x19_c01327{left:554.880000pt;}
.x13_c01327{left:556.800000pt;}
.x20_c01327{left:582.400000pt;}
.x1_c01327{left:585.600000pt;}
.x1e_c01327{left:591.360000pt;}
.x1b_c01327{left:592.640000pt;}
.x14_c01327{left:593.920000pt;}
.x2a_c01327{left:611.840000pt;}
.x1f_c01327{left:620.160000pt;}
.x15_c01327{left:622.080000pt;}
.x18_c01327{left:623.360000pt;}
.x21_c01327{left:638.080000pt;}
.x1c_c01327{left:639.360000pt;}
.x16_c01327{left:641.280000pt;}
}





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

.ir_c01328:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01328{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01328;src:url('chunks/assets/font_0c08ef609b56a546594d8981.woff2')format("woff");}.ff1_c01328{font-family:ff1_c01328;line-height:1.109863;font-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_c01328{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m26_c01328{transform:matrix(0.220050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220050,0.000000,0.000000,0.250000,0,0);}
.m1d_c01328{transform:matrix(0.223825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223825,0.000000,0.000000,0.250000,0,0);}
.ma_c01328{transform:matrix(0.226625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226625,0.000000,0.000000,0.250000,0,0);}
.m2e_c01328{transform:matrix(0.227225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227225,0.000000,0.000000,0.250000,0,0);}
.m14_c01328{transform:matrix(0.228100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228100,0.000000,0.000000,0.250000,0,0);}
.m3a_c01328{transform:matrix(0.229600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229600,0.000000,0.000000,0.250000,0,0);}
.m32_c01328{transform:matrix(0.231075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231075,0.000000,0.000000,0.250000,0,0);}
.m2c_c01328{transform:matrix(0.233675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233675,0.000000,0.000000,0.250000,0,0);}
.m2d_c01328{transform:matrix(0.239400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239400,0.000000,0.000000,0.250000,0,0);}
.m28_c01328{transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);}
.m35_c01328{transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);}
.m2b_c01328{transform:matrix(0.241125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241125,0.000000,0.000000,0.250000,0,0);}
.m18_c01328{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m4_c01328{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m3b_c01328{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m20_c01328{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);}
.m1e_c01328{transform:matrix(0.247625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247625,0.000000,0.000000,0.250000,0,0);}
.m11_c01328{transform:matrix(0.248800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248800,0.000000,0.000000,0.250000,0,0);}
.m8_c01328{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m33_c01328{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01328{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m13_c01328{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);}
.m31_c01328{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m7_c01328{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_c01328{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m2_c01328{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01328{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_c01328{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01328{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m6_c01328{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);}
.m21_c01328{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.me_c01328{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m3_c01328{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);}
.m2f_c01328{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);}
.m39_c01328{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mf_c01328{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01328{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1_c01328{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m29_c01328{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01328{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m16_c01328{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);}
.m22_c01328{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m0_c01328{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m10_c01328{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01328{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.md_c01328{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);}
.mc_c01328{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m38_c01328{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);}
.m37_c01328{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m12_c01328{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m25_c01328{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.mb_c01328{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m34_c01328{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m27_c01328{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m24_c01328{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);}
.m3c_c01328{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m5_c01328{transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);}
.m36_c01328{transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);}
.m9_c01328{transform:matrix(0.745000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.745000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.745000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01328{transform:matrix(0.775000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.775000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.775000,0.000000,0.000000,0.250000,0,0);}
.v1_c01328{vertical-align:-11.520000px;}
.v2_c01328{vertical-align:-8.640000px;}
.v0_c01328{vertical-align:0.000000px;}
.ls0_c01328{letter-spacing:0.000000px;}
.sc__c01328{text-shadow:none;}
.sc0_c01328{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01328{-webkit-text-stroke:0px transparent;}
.sc0_c01328{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01328{word-spacing:-4.924080px;}
.ws1_c01328{word-spacing:-2.578320px;}
.ws2_c01328{word-spacing:0.000000px;}
.fc0_c01328{color:transparent;}
.fs2_c01328{font-size:31.680000px;}
.fs4_c01328{font-size:34.560000px;}
.fsf_c01328{font-size:37.440000px;}
.fs8_c01328{font-size:40.320000px;}
.fs11_c01328{font-size:43.200000px;}
.fs9_c01328{font-size:46.080000px;}
.fs5_c01328{font-size:51.840000px;}
.fs6_c01328{font-size:54.720000px;}
.fs7_c01328{font-size:57.600000px;}
.fs3_c01328{font-size:60.480000px;}
.fsd_c01328{font-size:63.360000px;}
.fsc_c01328{font-size:66.240000px;}
.fs1_c01328{font-size:69.120000px;}
.fs10_c01328{font-size:72.000000px;}
.fsa_c01328{font-size:74.880000px;}
.fs0_c01328{font-size:77.760000px;}
.fse_c01328{font-size:80.640000px;}
.fsb_c01328{font-size:83.520000px;}
.y0_c01328{bottom:0.000000px;}
.y48_c01328{bottom:17.280000px;}
.y47_c01328{bottom:22.320000px;}
.y46_c01328{bottom:24.480000px;}
.y45_c01328{bottom:59.760000px;}
.y44_c01328{bottom:64.800000px;}
.y43_c01328{bottom:106.560000px;}
.y42_c01328{bottom:108.000000px;}
.y41_c01328{bottom:108.720000px;}
.y3f_c01328{bottom:147.600000px;}
.y40_c01328{bottom:148.320000px;}
.y3e_c01328{bottom:151.200000px;}
.y3d_c01328{bottom:190.800000px;}
.y3c_c01328{bottom:194.400000px;}
.y3b_c01328{bottom:233.280000px;}
.y3a_c01328{bottom:240.480000px;}
.y38_c01328{bottom:277.200000px;}
.y39_c01328{bottom:277.920000px;}
.y37_c01328{bottom:280.800000px;}
.y36_c01328{bottom:322.560000px;}
.y35_c01328{bottom:323.280000px;}
.y34_c01328{bottom:365.040000px;}
.y33_c01328{bottom:365.760000px;}
.y32_c01328{bottom:407.520000px;}
.y31_c01328{bottom:412.560000px;}
.y30_c01328{bottom:451.440000px;}
.y2f_c01328{bottom:454.320000px;}
.y2c_c01328{bottom:494.640000px;}
.y2e_c01328{bottom:496.080000px;}
.y2b_c01328{bottom:496.800000px;}
.y2a_c01328{bottom:497.520000px;}
.y2d_c01328{bottom:498.240000px;}
.y28_c01328{bottom:537.840000px;}
.y27_c01328{bottom:540.720000px;}
.y29_c01328{bottom:541.440000px;}
.y26_c01328{bottom:583.920000px;}
.y25_c01328{bottom:624.960000px;}
.y23_c01328{bottom:626.400000px;}
.y24_c01328{bottom:629.280000px;}
.y21_c01328{bottom:668.160000px;}
.y22_c01328{bottom:668.880000px;}
.y20_c01328{bottom:670.320000px;}
.y1f_c01328{bottom:712.080000px;}
.y1e_c01328{bottom:713.520000px;}
.y1d_c01328{bottom:755.280000px;}
.y1c_c01328{bottom:756.720000px;}
.y1b_c01328{bottom:797.760000px;}
.y1a_c01328{bottom:798.480000px;}
.y18_c01328{bottom:799.200000px;}
.y19_c01328{bottom:799.920000px;}
.y16_c01328{bottom:840.240000px;}
.y17_c01328{bottom:840.960000px;}
.y15_c01328{bottom:843.840000px;}
.y13_c01328{bottom:884.880000px;}
.y11_c01328{bottom:886.320000px;}
.y12_c01328{bottom:887.040000px;}
.y14_c01328{bottom:887.760000px;}
.y10_c01328{bottom:927.360000px;}
.ye_c01328{bottom:929.520000px;}
.yf_c01328{bottom:930.960000px;}
.yb_c01328{bottom:970.560000px;}
.yc_c01328{bottom:972.000000px;}
.y9_c01328{bottom:972.720000px;}
.ya_c01328{bottom:973.440000px;}
.yd_c01328{bottom:974.160000px;}
.y8_c01328{bottom:1013.760000px;}
.y5_c01328{bottom:1015.920000px;}
.y7_c01328{bottom:1016.640000px;}
.y6_c01328{bottom:1017.360000px;}
.y4_c01328{bottom:1056.240000px;}
.y3_c01328{bottom:1056.960000px;}
.y2_c01328{bottom:1059.120000px;}
.y1_c01328{bottom:1128.240000px;}
.h4_c01328{height:28.508906px;}
.h6_c01328{height:31.100625px;}
.h10_c01328{height:33.692344px;}
.ha_c01328{height:36.284062px;}
.h13_c01328{height:38.875781px;}
.hb_c01328{height:41.467500px;}
.h7_c01328{height:46.650937px;}
.h8_c01328{height:49.242656px;}
.h9_c01328{height:51.834375px;}
.h5_c01328{height:54.426094px;}
.hf_c01328{height:57.017812px;}
.he_c01328{height:59.609531px;}
.h3_c01328{height:62.201250px;}
.h11_c01328{height:64.792969px;}
.hc_c01328{height:67.384687px;}
.h2_c01328{height:69.976406px;}
.h12_c01328{height:72.568125px;}
.hd_c01328{height:75.159844px;}
.h1_c01328{height:1164.750000px;}
.h0_c01328{height:1164.960000px;}
.w1_c01328{width:771.000000px;}
.w0_c01328{width:771.120000px;}
.x0_c01328{left:0.000000px;}
.x2_c01328{left:45.360000px;}
.x17_c01328{left:46.800000px;}
.x8_c01328{left:74.880000px;}
.x5_c01328{left:76.320000px;}
.xf_c01328{left:105.120000px;}
.x3_c01328{left:106.560000px;}
.xc_c01328{left:182.160000px;}
.x6_c01328{left:183.600000px;}
.x13_c01328{left:190.800000px;}
.x10_c01328{left:192.240000px;}
.x9_c01328{left:194.400000px;}
.x16_c01328{left:203.040000px;}
.xb_c01328{left:204.480000px;}
.x15_c01328{left:225.360000px;}
.xa_c01328{left:236.160000px;}
.xd_c01328{left:270.000000px;}
.x7_c01328{left:291.600000px;}
.x11_c01328{left:300.240000px;}
.x18_c01328{left:322.560000px;}
.x4_c01328{left:345.600000px;}
.xe_c01328{left:354.240000px;}
.x12_c01328{left:397.440000px;}
.x14_c01328{left:451.440000px;}
.x1_c01328{left:645.840000px;}
@media print{
.v1_c01328{vertical-align:-10.240000pt;}
.v2_c01328{vertical-align:-7.680000pt;}
.v0_c01328{vertical-align:0.000000pt;}
.ls0_c01328{letter-spacing:0.000000pt;}
.ws0_c01328{word-spacing:-4.376960pt;}
.ws1_c01328{word-spacing:-2.291840pt;}
.ws2_c01328{word-spacing:0.000000pt;}
.fs2_c01328{font-size:28.160000pt;}
.fs4_c01328{font-size:30.720000pt;}
.fsf_c01328{font-size:33.280000pt;}
.fs8_c01328{font-size:35.840000pt;}
.fs11_c01328{font-size:38.400000pt;}
.fs9_c01328{font-size:40.960000pt;}
.fs5_c01328{font-size:46.080000pt;}
.fs6_c01328{font-size:48.640000pt;}
.fs7_c01328{font-size:51.200000pt;}
.fs3_c01328{font-size:53.760000pt;}
.fsd_c01328{font-size:56.320000pt;}
.fsc_c01328{font-size:58.880000pt;}
.fs1_c01328{font-size:61.440000pt;}
.fs10_c01328{font-size:64.000000pt;}
.fsa_c01328{font-size:66.560000pt;}
.fs0_c01328{font-size:69.120000pt;}
.fse_c01328{font-size:71.680000pt;}
.fsb_c01328{font-size:74.240000pt;}
.y0_c01328{bottom:0.000000pt;}
.y48_c01328{bottom:15.360000pt;}
.y47_c01328{bottom:19.840000pt;}
.y46_c01328{bottom:21.760000pt;}
.y45_c01328{bottom:53.120000pt;}
.y44_c01328{bottom:57.600000pt;}
.y43_c01328{bottom:94.720000pt;}
.y42_c01328{bottom:96.000000pt;}
.y41_c01328{bottom:96.640000pt;}
.y3f_c01328{bottom:131.200000pt;}
.y40_c01328{bottom:131.840000pt;}
.y3e_c01328{bottom:134.400000pt;}
.y3d_c01328{bottom:169.600000pt;}
.y3c_c01328{bottom:172.800000pt;}
.y3b_c01328{bottom:207.360000pt;}
.y3a_c01328{bottom:213.760000pt;}
.y38_c01328{bottom:246.400000pt;}
.y39_c01328{bottom:247.040000pt;}
.y37_c01328{bottom:249.600000pt;}
.y36_c01328{bottom:286.720000pt;}
.y35_c01328{bottom:287.360000pt;}
.y34_c01328{bottom:324.480000pt;}
.y33_c01328{bottom:325.120000pt;}
.y32_c01328{bottom:362.240000pt;}
.y31_c01328{bottom:366.720000pt;}
.y30_c01328{bottom:401.280000pt;}
.y2f_c01328{bottom:403.840000pt;}
.y2c_c01328{bottom:439.680000pt;}
.y2e_c01328{bottom:440.960000pt;}
.y2b_c01328{bottom:441.600000pt;}
.y2a_c01328{bottom:442.240000pt;}
.y2d_c01328{bottom:442.880000pt;}
.y28_c01328{bottom:478.080000pt;}
.y27_c01328{bottom:480.640000pt;}
.y29_c01328{bottom:481.280000pt;}
.y26_c01328{bottom:519.040000pt;}
.y25_c01328{bottom:555.520000pt;}
.y23_c01328{bottom:556.800000pt;}
.y24_c01328{bottom:559.360000pt;}
.y21_c01328{bottom:593.920000pt;}
.y22_c01328{bottom:594.560000pt;}
.y20_c01328{bottom:595.840000pt;}
.y1f_c01328{bottom:632.960000pt;}
.y1e_c01328{bottom:634.240000pt;}
.y1d_c01328{bottom:671.360000pt;}
.y1c_c01328{bottom:672.640000pt;}
.y1b_c01328{bottom:709.120000pt;}
.y1a_c01328{bottom:709.760000pt;}
.y18_c01328{bottom:710.400000pt;}
.y19_c01328{bottom:711.040000pt;}
.y16_c01328{bottom:746.880000pt;}
.y17_c01328{bottom:747.520000pt;}
.y15_c01328{bottom:750.080000pt;}
.y13_c01328{bottom:786.560000pt;}
.y11_c01328{bottom:787.840000pt;}
.y12_c01328{bottom:788.480000pt;}
.y14_c01328{bottom:789.120000pt;}
.y10_c01328{bottom:824.320000pt;}
.ye_c01328{bottom:826.240000pt;}
.yf_c01328{bottom:827.520000pt;}
.yb_c01328{bottom:862.720000pt;}
.yc_c01328{bottom:864.000000pt;}
.y9_c01328{bottom:864.640000pt;}
.ya_c01328{bottom:865.280000pt;}
.yd_c01328{bottom:865.920000pt;}
.y8_c01328{bottom:901.120000pt;}
.y5_c01328{bottom:903.040000pt;}
.y7_c01328{bottom:903.680000pt;}
.y6_c01328{bottom:904.320000pt;}
.y4_c01328{bottom:938.880000pt;}
.y3_c01328{bottom:939.520000pt;}
.y2_c01328{bottom:941.440000pt;}
.y1_c01328{bottom:1002.880000pt;}
.h4_c01328{height:25.341250pt;}
.h6_c01328{height:27.645000pt;}
.h10_c01328{height:29.948750pt;}
.ha_c01328{height:32.252500pt;}
.h13_c01328{height:34.556250pt;}
.hb_c01328{height:36.860000pt;}
.h7_c01328{height:41.467500pt;}
.h8_c01328{height:43.771250pt;}
.h9_c01328{height:46.075000pt;}
.h5_c01328{height:48.378750pt;}
.hf_c01328{height:50.682500pt;}
.he_c01328{height:52.986250pt;}
.h3_c01328{height:55.290000pt;}
.h11_c01328{height:57.593750pt;}
.hc_c01328{height:59.897500pt;}
.h2_c01328{height:62.201250pt;}
.h12_c01328{height:64.505000pt;}
.hd_c01328{height:66.808750pt;}
.h1_c01328{height:1035.333333pt;}
.h0_c01328{height:1035.520000pt;}
.w1_c01328{width:685.333333pt;}
.w0_c01328{width:685.440000pt;}
.x0_c01328{left:0.000000pt;}
.x2_c01328{left:40.320000pt;}
.x17_c01328{left:41.600000pt;}
.x8_c01328{left:66.560000pt;}
.x5_c01328{left:67.840000pt;}
.xf_c01328{left:93.440000pt;}
.x3_c01328{left:94.720000pt;}
.xc_c01328{left:161.920000pt;}
.x6_c01328{left:163.200000pt;}
.x13_c01328{left:169.600000pt;}
.x10_c01328{left:170.880000pt;}
.x9_c01328{left:172.800000pt;}
.x16_c01328{left:180.480000pt;}
.xb_c01328{left:181.760000pt;}
.x15_c01328{left:200.320000pt;}
.xa_c01328{left:209.920000pt;}
.xd_c01328{left:240.000000pt;}
.x7_c01328{left:259.200000pt;}
.x11_c01328{left:266.880000pt;}
.x18_c01328{left:286.720000pt;}
.x4_c01328{left:307.200000pt;}
.xe_c01328{left:314.880000pt;}
.x12_c01328{left:353.280000pt;}
.x14_c01328{left:401.280000pt;}
.x1_c01328{left:574.080000pt;}
}





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

.ir_c01329:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01329{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01329;src:url('chunks/assets/font_8206194b473dac581cb17fe5.woff2')format("woff");}.ff1_c01329{font-family:ff1_c01329;line-height:1.109863;font-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_c01329{transform:matrix(0.045900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045900,0.000000,0.000000,0.250000,0,0);}
.m51_c01329{transform:matrix(0.066025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066025,0.000000,0.000000,0.250000,0,0);}
.m1_c01329{transform:matrix(0.067450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067450,0.000000,0.000000,0.250000,0,0);}
.m4f_c01329{transform:matrix(0.071575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071575,0.000000,0.000000,0.250000,0,0);}
.m3_c01329{transform:matrix(0.073450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073450,0.000000,0.000000,0.250000,0,0);}
.m50_c01329{transform:matrix(0.096700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096700,0.000000,0.000000,0.250000,0,0);}
.m53_c01329{transform:matrix(0.117700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117700,0.000000,0.000000,0.250000,0,0);}
.m52_c01329{transform:matrix(0.136600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136600,0.000000,0.000000,0.250000,0,0);}
.m3b_c01329{transform:matrix(0.156975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156975,0.000000,0.000000,0.250000,0,0);}
.m44_c01329{transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);}
.m47_c01329{transform:matrix(0.170075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170075,0.000000,0.000000,0.250000,0,0);}
.m4a_c01329{transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);}
.m5_c01329{transform:matrix(0.198725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198725,0.000000,0.000000,0.250000,0,0);}
.m2d_c01329{transform:matrix(0.202225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202225,0.000000,0.000000,0.250000,0,0);}
.m35_c01329{transform:matrix(0.213700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213700,0.000000,0.000000,0.250000,0,0);}
.m30_c01329{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m36_c01329{transform:matrix(0.219300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219300,0.000000,0.000000,0.250000,0,0);}
.m28_c01329{transform:matrix(0.225425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225425,0.000000,0.000000,0.250000,0,0);}
.m37_c01329{transform:matrix(0.231075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231075,0.000000,0.000000,0.250000,0,0);}
.m34_c01329{transform:matrix(0.232625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232625,0.000000,0.000000,0.250000,0,0);}
.m42_c01329{transform:matrix(0.233425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233425,0.000000,0.000000,0.250000,0,0);}
.m27_c01329{transform:matrix(0.235575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235575,0.000000,0.000000,0.250000,0,0);}
.m1e_c01329{transform:matrix(0.235700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235700,0.000000,0.000000,0.250000,0,0);}
.m4e_c01329{transform:matrix(0.237375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237375,0.000000,0.000000,0.250000,0,0);}
.m4_c01329{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);}
.m2e_c01329{transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);}
.m24_c01329{transform:matrix(0.242150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242150,0.000000,0.000000,0.250000,0,0);}
.m4c_c01329{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.mc_c01329{transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);}
.m10_c01329{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m1b_c01329{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);}
.m23_c01329{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m16_c01329{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m8_c01329{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01329{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m26_c01329{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);}
.m25_c01329{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);}
.m22_c01329{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.me_c01329{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m21_c01329{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m12_c01329{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);}
.m2c_c01329{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m19_c01329{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);}
.m2f_c01329{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m31_c01329{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m15_c01329{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01329{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.ma_c01329{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01329{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mb_c01329{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m11_c01329{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01329{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01329{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m4d_c01329{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m33_c01329{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m41_c01329{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01329{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01329{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m6_c01329{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m29_c01329{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);}
.m45_c01329{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m9_c01329{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m13_c01329{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.md_c01329{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m14_c01329{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01329{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);}
.m3d_c01329{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);}
.m17_c01329{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m0_c01329{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m7_c01329{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);}
.m32_c01329{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);}
.m18_c01329{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);}
.m3e_c01329{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m20_c01329{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m49_c01329{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);}
.mf_c01329{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m43_c01329{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m40_c01329{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m48_c01329{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m38_c01329{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m46_c01329{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01329{transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);}
.m39_c01329{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01329{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.v1_c01329{vertical-align:-2.880000px;}
.v0_c01329{vertical-align:0.000000px;}
.ls0_c01329{letter-spacing:0.000000px;}
.sc__c01329{text-shadow:none;}
.sc0_c01329{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01329{-webkit-text-stroke:0px transparent;}
.sc0_c01329{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01329{word-spacing:-8.035440px;}
.ws2_c01329{word-spacing:0.000000px;}
.ws1_c01329{word-spacing:34.938000px;}
.fc0_c01329{color:transparent;}
.fs4_c01329{font-size:17.280000px;}
.fsf_c01329{font-size:23.040000px;}
.fs7_c01329{font-size:34.560000px;}
.fs12_c01329{font-size:40.320000px;}
.fsd_c01329{font-size:43.200000px;}
.fs5_c01329{font-size:48.960000px;}
.fsc_c01329{font-size:51.840000px;}
.fs6_c01329{font-size:54.720000px;}
.fs1_c01329{font-size:57.600000px;}
.fsb_c01329{font-size:60.480000px;}
.fs8_c01329{font-size:63.360000px;}
.fs10_c01329{font-size:66.240000px;}
.fs9_c01329{font-size:69.120000px;}
.fs13_c01329{font-size:72.000000px;}
.fs11_c01329{font-size:74.880000px;}
.fs0_c01329{font-size:77.760000px;}
.fse_c01329{font-size:80.640000px;}
.fsa_c01329{font-size:83.520000px;}
.fs3_c01329{font-size:95.040000px;}
.fs14_c01329{font-size:120.960000px;}
.fs15_c01329{font-size:161.280000px;}
.fs2_c01329{font-size:169.920000px;}
.y0_c01329{bottom:0.000000px;}
.y74_c01329{bottom:31.680000px;}
.y73_c01329{bottom:36.720000px;}
.y72_c01329{bottom:48.960000px;}
.y71_c01329{bottom:62.640000px;}
.y70_c01329{bottom:103.680000px;}
.y6e_c01329{bottom:127.440000px;}
.y6f_c01329{bottom:128.160000px;}
.y45_c01329{bottom:218.880000px;}
.y43_c01329{bottom:221.760000px;}
.y44_c01329{bottom:222.480000px;}
.y6_c01329{bottom:244.080000px;}
.y5_c01329{bottom:258.480000px;}
.y41_c01329{bottom:262.800000px;}
.y42_c01329{bottom:263.520000px;}
.y4_c01329{bottom:264.960000px;}
.y6b_c01329{bottom:267.120000px;}
.y6c_c01329{bottom:267.840000px;}
.y6d_c01329{bottom:268.560000px;}
.y3_c01329{bottom:289.440000px;}
.y3e_c01329{bottom:305.280000px;}
.y40_c01329{bottom:306.000000px;}
.y3d_c01329{bottom:308.880000px;}
.y3f_c01329{bottom:309.600000px;}
.y69_c01329{bottom:311.040000px;}
.y6a_c01329{bottom:314.640000px;}
.y2_c01329{bottom:332.640000px;}
.y3a_c01329{bottom:349.200000px;}
.y3c_c01329{bottom:350.640000px;}
.y3b_c01329{bottom:351.360000px;}
.y39_c01329{bottom:353.520000px;}
.y68_c01329{bottom:354.240000px;}
.y36_c01329{bottom:393.120000px;}
.y38_c01329{bottom:393.840000px;}
.y37_c01329{bottom:394.560000px;}
.y35_c01329{bottom:395.280000px;}
.y65_c01329{bottom:396.720000px;}
.y66_c01329{bottom:398.160000px;}
.y67_c01329{bottom:399.600000px;}
.y34_c01329{bottom:437.040000px;}
.y33_c01329{bottom:440.640000px;}
.y64_c01329{bottom:442.800000px;}
.y63_c01329{bottom:443.520000px;}
.y31_c01329{bottom:480.240000px;}
.y30_c01329{bottom:482.400000px;}
.y32_c01329{bottom:483.840000px;}
.y61_c01329{bottom:484.560000px;}
.y60_c01329{bottom:485.280000px;}
.y62_c01329{bottom:486.720000px;}
.y2e_c01329{bottom:522.720000px;}
.y2f_c01329{bottom:523.440000px;}
.y2d_c01329{bottom:526.320000px;}
.y5f_c01329{bottom:528.480000px;}
.y2b_c01329{bottom:566.640000px;}
.y5e_c01329{bottom:567.360000px;}
.y2a_c01329{bottom:568.800000px;}
.y2c_c01329{bottom:570.960000px;}
.y29_c01329{bottom:609.840000px;}
.y5c_c01329{bottom:612.000000px;}
.y5b_c01329{bottom:612.720000px;}
.y28_c01329{bottom:613.440000px;}
.y5d_c01329{bottom:614.880000px;}
.y26_c01329{bottom:653.040000px;}
.y5a_c01329{bottom:654.480000px;}
.y58_c01329{bottom:655.200000px;}
.y25_c01329{bottom:655.920000px;}
.y27_c01329{bottom:656.640000px;}
.y59_c01329{bottom:657.360000px;}
.y24_c01329{bottom:696.240000px;}
.y22_c01329{bottom:696.960000px;}
.y57_c01329{bottom:697.680000px;}
.y56_c01329{bottom:698.400000px;}
.y21_c01329{bottom:699.120000px;}
.y23_c01329{bottom:699.840000px;}
.y55_c01329{bottom:700.560000px;}
.y20_c01329{bottom:739.440000px;}
.y1f_c01329{bottom:740.160000px;}
.y1d_c01329{bottom:741.600000px;}
.y53_c01329{bottom:743.040000px;}
.y54_c01329{bottom:743.760000px;}
.y1e_c01329{bottom:745.200000px;}
.y1b_c01329{bottom:783.360000px;}
.y1a_c01329{bottom:784.800000px;}
.y1c_c01329{bottom:785.520000px;}
.y51_c01329{bottom:786.960000px;}
.y52_c01329{bottom:787.680000px;}
.y19_c01329{bottom:826.560000px;}
.y4f_c01329{bottom:827.280000px;}
.y18_c01329{bottom:828.000000px;}
.y50_c01329{bottom:829.440000px;}
.y17_c01329{bottom:869.040000px;}
.y4e_c01329{bottom:870.480000px;}
.y16_c01329{bottom:871.200000px;}
.y4d_c01329{bottom:872.640000px;}
.y4c_c01329{bottom:873.360000px;}
.y15_c01329{bottom:912.960000px;}
.y13_c01329{bottom:913.680000px;}
.y4a_c01329{bottom:914.400000px;}
.y49_c01329{bottom:915.120000px;}
.y14_c01329{bottom:915.840000px;}
.y4b_c01329{bottom:916.560000px;}
.yf_c01329{bottom:956.160000px;}
.y12_c01329{bottom:956.880000px;}
.y10_c01329{bottom:957.600000px;}
.ye_c01329{bottom:958.320000px;}
.y11_c01329{bottom:959.760000px;}
.yd_c01329{bottom:997.920000px;}
.ya_c01329{bottom:1000.080000px;}
.yb_c01329{bottom:1000.800000px;}
.y47_c01329{bottom:1001.520000px;}
.y48_c01329{bottom:1002.960000px;}
.yc_c01329{bottom:1003.680000px;}
.y9_c01329{bottom:1042.560000px;}
.y46_c01329{bottom:1044.720000px;}
.y8_c01329{bottom:1045.440000px;}
.y7_c01329{bottom:1046.160000px;}
.y1_c01329{bottom:1105.200000px;}
.h6_c01329{height:15.550313px;}
.h11_c01329{height:20.733750px;}
.h9_c01329{height:31.100625px;}
.h14_c01329{height:36.284062px;}
.hf_c01329{height:38.875781px;}
.h7_c01329{height:44.059219px;}
.he_c01329{height:46.650937px;}
.h8_c01329{height:49.242656px;}
.h3_c01329{height:51.834375px;}
.hd_c01329{height:54.426094px;}
.ha_c01329{height:57.017812px;}
.h12_c01329{height:59.609531px;}
.hb_c01329{height:62.201250px;}
.h15_c01329{height:64.792969px;}
.h13_c01329{height:67.384687px;}
.h2_c01329{height:69.976406px;}
.h10_c01329{height:72.568125px;}
.hc_c01329{height:75.159844px;}
.h5_c01329{height:85.526719px;}
.h16_c01329{height:108.852188px;}
.h17_c01329{height:145.136250px;}
.h4_c01329{height:152.911406px;}
.h0_c01329{height:1152.720000px;}
.h1_c01329{height:1152.750000px;}
.w0_c01329{width:774.720000px;}
.w1_c01329{width:774.750000px;}
.x0_c01329{left:0.000000px;}
.x4_c01329{left:45.360000px;}
.x7_c01329{left:46.800000px;}
.x18_c01329{left:48.240000px;}
.x5_c01329{left:77.760000px;}
.x1b_c01329{left:79.200000px;}
.x11_c01329{left:86.400000px;}
.xe_c01329{left:108.000000px;}
.x6_c01329{left:109.440000px;}
.x17_c01329{left:163.440000px;}
.xd_c01329{left:172.800000px;}
.x8_c01329{left:183.600000px;}
.xf_c01329{left:205.920000px;}
.x15_c01329{left:207.360000px;}
.x9_c01329{left:228.240000px;}
.xa_c01329{left:238.320000px;}
.x1a_c01329{left:249.120000px;}
.x19_c01329{left:260.640000px;}
.xb_c01329{left:282.240000px;}
.x12_c01329{left:292.320000px;}
.x10_c01329{left:324.000000px;}
.x13_c01329{left:346.320000px;}
.x14_c01329{left:357.120000px;}
.xc_c01329{left:367.920000px;}
.x16_c01329{left:378.720000px;}
.x25_c01329{left:573.120000px;}
.x20_c01329{left:594.000000px;}
.x21_c01329{left:604.800000px;}
.x22_c01329{left:617.760000px;}
.x26_c01329{left:619.200000px;}
.x23_c01329{left:627.120000px;}
.x1c_c01329{left:628.560000px;}
.x1_c01329{left:660.960000px;}
.x27_c01329{left:669.600000px;}
.x24_c01329{left:671.040000px;}
.x1f_c01329{left:702.720000px;}
.x1d_c01329{left:704.160000px;}
.x28_c01329{left:722.160000px;}
.x1e_c01329{left:724.320000px;}
.x2_c01329{left:762.480000px;}
.x29_c01329{left:764.640000px;}
.x3_c01329{left:766.800000px;}
@media print{
.v1_c01329{vertical-align:-2.560000pt;}
.v0_c01329{vertical-align:0.000000pt;}
.ls0_c01329{letter-spacing:0.000000pt;}
.ws0_c01329{word-spacing:-7.142613pt;}
.ws2_c01329{word-spacing:0.000000pt;}
.ws1_c01329{word-spacing:31.056000pt;}
.fs4_c01329{font-size:15.360000pt;}
.fsf_c01329{font-size:20.480000pt;}
.fs7_c01329{font-size:30.720000pt;}
.fs12_c01329{font-size:35.840000pt;}
.fsd_c01329{font-size:38.400000pt;}
.fs5_c01329{font-size:43.520000pt;}
.fsc_c01329{font-size:46.080000pt;}
.fs6_c01329{font-size:48.640000pt;}
.fs1_c01329{font-size:51.200000pt;}
.fsb_c01329{font-size:53.760000pt;}
.fs8_c01329{font-size:56.320000pt;}
.fs10_c01329{font-size:58.880000pt;}
.fs9_c01329{font-size:61.440000pt;}
.fs13_c01329{font-size:64.000000pt;}
.fs11_c01329{font-size:66.560000pt;}
.fs0_c01329{font-size:69.120000pt;}
.fse_c01329{font-size:71.680000pt;}
.fsa_c01329{font-size:74.240000pt;}
.fs3_c01329{font-size:84.480000pt;}
.fs14_c01329{font-size:107.520000pt;}
.fs15_c01329{font-size:143.360000pt;}
.fs2_c01329{font-size:151.040000pt;}
.y0_c01329{bottom:0.000000pt;}
.y74_c01329{bottom:28.160000pt;}
.y73_c01329{bottom:32.640000pt;}
.y72_c01329{bottom:43.520000pt;}
.y71_c01329{bottom:55.680000pt;}
.y70_c01329{bottom:92.160000pt;}
.y6e_c01329{bottom:113.280000pt;}
.y6f_c01329{bottom:113.920000pt;}
.y45_c01329{bottom:194.560000pt;}
.y43_c01329{bottom:197.120000pt;}
.y44_c01329{bottom:197.760000pt;}
.y6_c01329{bottom:216.960000pt;}
.y5_c01329{bottom:229.760000pt;}
.y41_c01329{bottom:233.600000pt;}
.y42_c01329{bottom:234.240000pt;}
.y4_c01329{bottom:235.520000pt;}
.y6b_c01329{bottom:237.440000pt;}
.y6c_c01329{bottom:238.080000pt;}
.y6d_c01329{bottom:238.720000pt;}
.y3_c01329{bottom:257.280000pt;}
.y3e_c01329{bottom:271.360000pt;}
.y40_c01329{bottom:272.000000pt;}
.y3d_c01329{bottom:274.560000pt;}
.y3f_c01329{bottom:275.200000pt;}
.y69_c01329{bottom:276.480000pt;}
.y6a_c01329{bottom:279.680000pt;}
.y2_c01329{bottom:295.680000pt;}
.y3a_c01329{bottom:310.400000pt;}
.y3c_c01329{bottom:311.680000pt;}
.y3b_c01329{bottom:312.320000pt;}
.y39_c01329{bottom:314.240000pt;}
.y68_c01329{bottom:314.880000pt;}
.y36_c01329{bottom:349.440000pt;}
.y38_c01329{bottom:350.080000pt;}
.y37_c01329{bottom:350.720000pt;}
.y35_c01329{bottom:351.360000pt;}
.y65_c01329{bottom:352.640000pt;}
.y66_c01329{bottom:353.920000pt;}
.y67_c01329{bottom:355.200000pt;}
.y34_c01329{bottom:388.480000pt;}
.y33_c01329{bottom:391.680000pt;}
.y64_c01329{bottom:393.600000pt;}
.y63_c01329{bottom:394.240000pt;}
.y31_c01329{bottom:426.880000pt;}
.y30_c01329{bottom:428.800000pt;}
.y32_c01329{bottom:430.080000pt;}
.y61_c01329{bottom:430.720000pt;}
.y60_c01329{bottom:431.360000pt;}
.y62_c01329{bottom:432.640000pt;}
.y2e_c01329{bottom:464.640000pt;}
.y2f_c01329{bottom:465.280000pt;}
.y2d_c01329{bottom:467.840000pt;}
.y5f_c01329{bottom:469.760000pt;}
.y2b_c01329{bottom:503.680000pt;}
.y5e_c01329{bottom:504.320000pt;}
.y2a_c01329{bottom:505.600000pt;}
.y2c_c01329{bottom:507.520000pt;}
.y29_c01329{bottom:542.080000pt;}
.y5c_c01329{bottom:544.000000pt;}
.y5b_c01329{bottom:544.640000pt;}
.y28_c01329{bottom:545.280000pt;}
.y5d_c01329{bottom:546.560000pt;}
.y26_c01329{bottom:580.480000pt;}
.y5a_c01329{bottom:581.760000pt;}
.y58_c01329{bottom:582.400000pt;}
.y25_c01329{bottom:583.040000pt;}
.y27_c01329{bottom:583.680000pt;}
.y59_c01329{bottom:584.320000pt;}
.y24_c01329{bottom:618.880000pt;}
.y22_c01329{bottom:619.520000pt;}
.y57_c01329{bottom:620.160000pt;}
.y56_c01329{bottom:620.800000pt;}
.y21_c01329{bottom:621.440000pt;}
.y23_c01329{bottom:622.080000pt;}
.y55_c01329{bottom:622.720000pt;}
.y20_c01329{bottom:657.280000pt;}
.y1f_c01329{bottom:657.920000pt;}
.y1d_c01329{bottom:659.200000pt;}
.y53_c01329{bottom:660.480000pt;}
.y54_c01329{bottom:661.120000pt;}
.y1e_c01329{bottom:662.400000pt;}
.y1b_c01329{bottom:696.320000pt;}
.y1a_c01329{bottom:697.600000pt;}
.y1c_c01329{bottom:698.240000pt;}
.y51_c01329{bottom:699.520000pt;}
.y52_c01329{bottom:700.160000pt;}
.y19_c01329{bottom:734.720000pt;}
.y4f_c01329{bottom:735.360000pt;}
.y18_c01329{bottom:736.000000pt;}
.y50_c01329{bottom:737.280000pt;}
.y17_c01329{bottom:772.480000pt;}
.y4e_c01329{bottom:773.760000pt;}
.y16_c01329{bottom:774.400000pt;}
.y4d_c01329{bottom:775.680000pt;}
.y4c_c01329{bottom:776.320000pt;}
.y15_c01329{bottom:811.520000pt;}
.y13_c01329{bottom:812.160000pt;}
.y4a_c01329{bottom:812.800000pt;}
.y49_c01329{bottom:813.440000pt;}
.y14_c01329{bottom:814.080000pt;}
.y4b_c01329{bottom:814.720000pt;}
.yf_c01329{bottom:849.920000pt;}
.y12_c01329{bottom:850.560000pt;}
.y10_c01329{bottom:851.200000pt;}
.ye_c01329{bottom:851.840000pt;}
.y11_c01329{bottom:853.120000pt;}
.yd_c01329{bottom:887.040000pt;}
.ya_c01329{bottom:888.960000pt;}
.yb_c01329{bottom:889.600000pt;}
.y47_c01329{bottom:890.240000pt;}
.y48_c01329{bottom:891.520000pt;}
.yc_c01329{bottom:892.160000pt;}
.y9_c01329{bottom:926.720000pt;}
.y46_c01329{bottom:928.640000pt;}
.y8_c01329{bottom:929.280000pt;}
.y7_c01329{bottom:929.920000pt;}
.y1_c01329{bottom:982.400000pt;}
.h6_c01329{height:13.822500pt;}
.h11_c01329{height:18.430000pt;}
.h9_c01329{height:27.645000pt;}
.h14_c01329{height:32.252500pt;}
.hf_c01329{height:34.556250pt;}
.h7_c01329{height:39.163750pt;}
.he_c01329{height:41.467500pt;}
.h8_c01329{height:43.771250pt;}
.h3_c01329{height:46.075000pt;}
.hd_c01329{height:48.378750pt;}
.ha_c01329{height:50.682500pt;}
.h12_c01329{height:52.986250pt;}
.hb_c01329{height:55.290000pt;}
.h15_c01329{height:57.593750pt;}
.h13_c01329{height:59.897500pt;}
.h2_c01329{height:62.201250pt;}
.h10_c01329{height:64.505000pt;}
.hc_c01329{height:66.808750pt;}
.h5_c01329{height:76.023750pt;}
.h16_c01329{height:96.757500pt;}
.h17_c01329{height:129.010000pt;}
.h4_c01329{height:135.921250pt;}
.h0_c01329{height:1024.640000pt;}
.h1_c01329{height:1024.666667pt;}
.w0_c01329{width:688.640000pt;}
.w1_c01329{width:688.666667pt;}
.x0_c01329{left:0.000000pt;}
.x4_c01329{left:40.320000pt;}
.x7_c01329{left:41.600000pt;}
.x18_c01329{left:42.880000pt;}
.x5_c01329{left:69.120000pt;}
.x1b_c01329{left:70.400000pt;}
.x11_c01329{left:76.800000pt;}
.xe_c01329{left:96.000000pt;}
.x6_c01329{left:97.280000pt;}
.x17_c01329{left:145.280000pt;}
.xd_c01329{left:153.600000pt;}
.x8_c01329{left:163.200000pt;}
.xf_c01329{left:183.040000pt;}
.x15_c01329{left:184.320000pt;}
.x9_c01329{left:202.880000pt;}
.xa_c01329{left:211.840000pt;}
.x1a_c01329{left:221.440000pt;}
.x19_c01329{left:231.680000pt;}
.xb_c01329{left:250.880000pt;}
.x12_c01329{left:259.840000pt;}
.x10_c01329{left:288.000000pt;}
.x13_c01329{left:307.840000pt;}
.x14_c01329{left:317.440000pt;}
.xc_c01329{left:327.040000pt;}
.x16_c01329{left:336.640000pt;}
.x25_c01329{left:509.440000pt;}
.x20_c01329{left:528.000000pt;}
.x21_c01329{left:537.600000pt;}
.x22_c01329{left:549.120000pt;}
.x26_c01329{left:550.400000pt;}
.x23_c01329{left:557.440000pt;}
.x1c_c01329{left:558.720000pt;}
.x1_c01329{left:587.520000pt;}
.x27_c01329{left:595.200000pt;}
.x24_c01329{left:596.480000pt;}
.x1f_c01329{left:624.640000pt;}
.x1d_c01329{left:625.920000pt;}
.x28_c01329{left:641.920000pt;}
.x1e_c01329{left:643.840000pt;}
.x2_c01329{left:677.760000pt;}
.x29_c01329{left:679.680000pt;}
.x3_c01329{left:681.600000pt;}
}





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

.ir_c01330:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01330{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01330;src:url('chunks/assets/font_8773352146b2cde1aeefc311.woff2')format("woff");}.ff1_c01330{font-family:ff1_c01330;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m51_c01330{transform:matrix(0.020600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020600,0.000000,0.000000,0.250000,0,0);}
.m54_c01330{transform:matrix(0.031675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031675,0.000000,0.000000,0.250000,0,0);}
.m5c_c01330{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.m55_c01330{transform:matrix(0.038400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.038400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.038400,0.000000,0.000000,0.250000,0,0);}
.m53_c01330{transform:matrix(0.042875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042875,0.000000,0.000000,0.250000,0,0);}
.m5f_c01330{transform:matrix(0.077000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077000,0.000000,0.000000,0.250000,0,0);}
.m61_c01330{transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);}
.m56_c01330{transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);}
.m5b_c01330{transform:matrix(0.102550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102550,0.000000,0.000000,0.250000,0,0);}
.m52_c01330{transform:matrix(0.108300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108300,0.000000,0.000000,0.250000,0,0);}
.m50_c01330{transform:matrix(0.110325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110325,0.000000,0.000000,0.250000,0,0);}
.m5e_c01330{transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);}
.m5a_c01330{transform:matrix(0.152325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152325,0.000000,0.000000,0.250000,0,0);}
.m64_c01330{transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);}
.m4c_c01330{transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);}
.m38_c01330{transform:matrix(0.191675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191675,0.000000,0.000000,0.250000,0,0);}
.m14_c01330{transform:matrix(0.193900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193900,0.000000,0.000000,0.250000,0,0);}
.m63_c01330{transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);}
.m45_c01330{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01330{transform:matrix(0.215675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215675,0.000000,0.000000,0.250000,0,0);}
.m36_c01330{transform:matrix(0.220450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220450,0.000000,0.000000,0.250000,0,0);}
.m1_c01330{transform:matrix(0.222050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222050,0.000000,0.000000,0.250000,0,0);}
.m57_c01330{transform:matrix(0.223425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223425,0.000000,0.000000,0.250000,0,0);}
.m2a_c01330{transform:matrix(0.223450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223450,0.000000,0.000000,0.250000,0,0);}
.m2e_c01330{transform:matrix(0.230575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230575,0.000000,0.000000,0.250000,0,0);}
.m60_c01330{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m31_c01330{transform:matrix(0.237025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237025,0.000000,0.000000,0.250000,0,0);}
.m2b_c01330{transform:matrix(0.237300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237300,0.000000,0.000000,0.250000,0,0);}
.m5_c01330{transform:matrix(0.237875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237875,0.000000,0.000000,0.250000,0,0);}
.m1c_c01330{transform:matrix(0.238725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238725,0.000000,0.000000,0.250000,0,0);}
.m23_c01330{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m32_c01330{transform:matrix(0.247625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247625,0.000000,0.000000,0.250000,0,0);}
.m1d_c01330{transform:matrix(0.248700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248700,0.000000,0.000000,0.250000,0,0);}
.m44_c01330{transform:matrix(0.249050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249050,0.000000,0.000000,0.250000,0,0);}
.m30_c01330{transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);}
.m3_c01330{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01330{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);}
.m3a_c01330{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m22_c01330{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);}
.m41_c01330{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m26_c01330{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.ma_c01330{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_c01330{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m16_c01330{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);}
.m3f_c01330{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m6_c01330{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);}
.m43_c01330{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01330{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);}
.m25_c01330{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);}
.m35_c01330{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.md_c01330{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mb_c01330{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m29_c01330{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m19_c01330{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m12_c01330{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m28_c01330{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m18_c01330{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01330{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mf_c01330{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m15_c01330{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01330{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m48_c01330{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01330{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01330{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m0_c01330{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m2_c01330{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.mc_c01330{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_c01330{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m27_c01330{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m4_c01330{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m5d_c01330{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m9_c01330{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m42_c01330{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01330{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);}
.m47_c01330{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_c01330{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);}
.m3c_c01330{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);}
.m3d_c01330{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);}
.m49_c01330{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m8_c01330{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);}
.m1a_c01330{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01330{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);}
.m2c_c01330{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m10_c01330{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m24_c01330{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m39_c01330{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m37_c01330{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);}
.m11_c01330{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);}
.me_c01330{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m7_c01330{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m40_c01330{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m33_c01330{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m58_c01330{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m62_c01330{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01330{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m21_c01330{transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);}
.m34_c01330{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);}
.m4e_c01330{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m46_c01330{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);}
.m4f_c01330{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m59_c01330{transform:matrix(0.842500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.842500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.842500,0.000000,0.000000,0.250000,0,0);}
.v2_c01330{vertical-align:-8.640000px;}
.v0_c01330{vertical-align:0.000000px;}
.v1_c01330{vertical-align:2.880000px;}
.ls0_c01330{letter-spacing:0.000000px;}
.sc__c01330{text-shadow:none;}
.sc0_c01330{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01330{-webkit-text-stroke:0px transparent;}
.sc0_c01330{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01330{word-spacing:-5.033280px;}
.ws2_c01330{word-spacing:0.000000px;}
.ws1_c01330{word-spacing:9.212400px;}
.fc0_c01330{color:transparent;}
.fs1a_c01330{font-size:14.400000px;}
.fs17_c01330{font-size:23.040000px;}
.fs15_c01330{font-size:25.920000px;}
.fs19_c01330{font-size:28.800000px;}
.fs1b_c01330{font-size:31.680000px;}
.fsc_c01330{font-size:37.440000px;}
.fsd_c01330{font-size:40.320000px;}
.fs6_c01330{font-size:43.200000px;}
.fs11_c01330{font-size:48.960000px;}
.fs8_c01330{font-size:51.840000px;}
.fs0_c01330{font-size:54.720000px;}
.fs9_c01330{font-size:57.600000px;}
.fs4_c01330{font-size:60.480000px;}
.fs2_c01330{font-size:63.360000px;}
.fs5_c01330{font-size:66.240000px;}
.fsb_c01330{font-size:69.120000px;}
.fsa_c01330{font-size:72.000000px;}
.fs7_c01330{font-size:74.880000px;}
.fs3_c01330{font-size:77.760000px;}
.fsf_c01330{font-size:80.640000px;}
.fse_c01330{font-size:83.520000px;}
.fs10_c01330{font-size:86.400000px;}
.fs1_c01330{font-size:95.040000px;}
.fs18_c01330{font-size:112.320000px;}
.fs13_c01330{font-size:120.960000px;}
.fs14_c01330{font-size:135.360000px;}
.fs12_c01330{font-size:164.160000px;}
.fs16_c01330{font-size:210.240000px;}
.y0_c01330{bottom:0.000000px;}
.y7e_c01330{bottom:31.680000px;}
.y7d_c01330{bottom:41.040000px;}
.y41_c01330{bottom:46.080000px;}
.y43_c01330{bottom:46.800000px;}
.y42_c01330{bottom:48.240000px;}
.y45_c01330{bottom:48.960000px;}
.y40_c01330{bottom:50.400000px;}
.y44_c01330{bottom:51.840000px;}
.y46_c01330{bottom:54.000000px;}
.y7c_c01330{bottom:55.440000px;}
.y7b_c01330{bottom:59.760000px;}
.y7a_c01330{bottom:67.680000px;}
.y3d_c01330{bottom:89.280000px;}
.y3e_c01330{bottom:90.000000px;}
.y3c_c01330{bottom:92.160000px;}
.y3f_c01330{bottom:94.320000px;}
.y79_c01330{bottom:96.480000px;}
.y77_c01330{bottom:97.200000px;}
.y78_c01330{bottom:102.960000px;}
.y39_c01330{bottom:133.200000px;}
.y3a_c01330{bottom:135.360000px;}
.y38_c01330{bottom:136.080000px;}
.y37_c01330{bottom:136.800000px;}
.y3b_c01330{bottom:137.520000px;}
.y75_c01330{bottom:139.680000px;}
.y76_c01330{bottom:140.400000px;}
.y36_c01330{bottom:176.400000px;}
.y35_c01330{bottom:179.280000px;}
.y71_c01330{bottom:180.000000px;}
.y70_c01330{bottom:181.440000px;}
.y72_c01330{bottom:182.880000px;}
.y34_c01330{bottom:218.880000px;}
.y74_c01330{bottom:219.600000px;}
.y33_c01330{bottom:221.760000px;}
.y6f_c01330{bottom:223.920000px;}
.y6e_c01330{bottom:225.360000px;}
.y6d_c01330{bottom:226.080000px;}
.y32_c01330{bottom:262.080000px;}
.y31_c01330{bottom:264.960000px;}
.y6a_c01330{bottom:266.400000px;}
.y6c_c01330{bottom:267.120000px;}
.y6b_c01330{bottom:267.840000px;}
.y69_c01330{bottom:268.560000px;}
.y73_c01330{bottom:272.160000px;}
.y63_c01330{bottom:289.440000px;}
.y62_c01330{bottom:296.640000px;}
.y30_c01330{bottom:306.000000px;}
.y2f_c01330{bottom:308.880000px;}
.y68_c01330{bottom:310.320000px;}
.y61_c01330{bottom:332.640000px;}
.y2d_c01330{bottom:347.760000px;}
.y2c_c01330{bottom:350.640000px;}
.y2b_c01330{bottom:352.080000px;}
.y2e_c01330{bottom:352.800000px;}
.y60_c01330{bottom:375.120000px;}
.y2a_c01330{bottom:393.120000px;}
.y66_c01330{bottom:395.280000px;}
.y29_c01330{bottom:396.000000px;}
.y67_c01330{bottom:396.720000px;}
.y5f_c01330{bottom:406.800000px;}
.y5e_c01330{bottom:425.520000px;}
.y28_c01330{bottom:436.320000px;}
.y64_c01330{bottom:437.760000px;}
.y27_c01330{bottom:438.480000px;}
.y26_c01330{bottom:439.200000px;}
.y65_c01330{bottom:440.640000px;}
.y5d_c01330{bottom:465.840000px;}
.y25_c01330{bottom:478.800000px;}
.y23_c01330{bottom:481.680000px;}
.y24_c01330{bottom:482.400000px;}
.y5b_c01330{bottom:483.120000px;}
.y5a_c01330{bottom:484.560000px;}
.y5c_c01330{bottom:485.280000px;}
.y22_c01330{bottom:522.000000px;}
.y57_c01330{bottom:524.160000px;}
.y58_c01330{bottom:524.880000px;}
.y20_c01330{bottom:525.600000px;}
.y59_c01330{bottom:526.320000px;}
.y21_c01330{bottom:527.040000px;}
.y1e_c01330{bottom:567.360000px;}
.y1b_c01330{bottom:568.800000px;}
.y1c_c01330{bottom:569.520000px;}
.y1d_c01330{bottom:570.240000px;}
.y1f_c01330{bottom:570.960000px;}
.y1a_c01330{bottom:610.560000px;}
.y19_c01330{bottom:612.720000px;}
.y56_c01330{bottom:613.440000px;}
.y18_c01330{bottom:653.760000px;}
.y17_c01330{bottom:655.920000px;}
.y16_c01330{bottom:656.640000px;}
.y55_c01330{bottom:657.360000px;}
.y54_c01330{bottom:658.080000px;}
.y15_c01330{bottom:696.240000px;}
.y12_c01330{bottom:696.960000px;}
.y11_c01330{bottom:697.680000px;}
.y13_c01330{bottom:698.400000px;}
.y52_c01330{bottom:699.120000px;}
.y53_c01330{bottom:699.840000px;}
.y14_c01330{bottom:700.560000px;}
.y10_c01330{bottom:740.160000px;}
.ye_c01330{bottom:740.880000px;}
.yf_c01330{bottom:743.760000px;}
.yb_c01330{bottom:772.560000px;}
.yd_c01330{bottom:773.280000px;}
.ya_c01330{bottom:774.000000px;}
.y51_c01330{bottom:774.720000px;}
.yc_c01330{bottom:775.440000px;}
.y4f_c01330{bottom:816.480000px;}
.y50_c01330{bottom:818.640000px;}
.y4c_c01330{bottom:858.960000px;}
.y4e_c01330{bottom:859.680000px;}
.y4d_c01330{bottom:861.840000px;}
.y4b_c01330{bottom:901.440000px;}
.y9_c01330{bottom:902.160000px;}
.y8_c01330{bottom:903.600000px;}
.y4a_c01330{bottom:944.640000px;}
.y6_c01330{bottom:945.360000px;}
.y49_c01330{bottom:946.080000px;}
.y5_c01330{bottom:946.800000px;}
.y7_c01330{bottom:947.520000px;}
.y48_c01330{bottom:988.560000px;}
.y4_c01330{bottom:989.280000px;}
.y3_c01330{bottom:990.000000px;}
.y2_c01330{bottom:1026.000000px;}
.y1_c01330{bottom:1036.080000px;}
.y47_c01330{bottom:1123.200000px;}
.h1d_c01330{height:12.958594px;}
.h1a_c01330{height:20.733750px;}
.h18_c01330{height:23.325469px;}
.h1c_c01330{height:25.917187px;}
.h1e_c01330{height:28.508906px;}
.he_c01330{height:33.692344px;}
.h10_c01330{height:36.284062px;}
.h8_c01330{height:38.875781px;}
.h14_c01330{height:44.059219px;}
.ha_c01330{height:46.650937px;}
.h2_c01330{height:49.242656px;}
.hb_c01330{height:51.834375px;}
.h6_c01330{height:54.426094px;}
.hf_c01330{height:54.714375px;}
.h4_c01330{height:57.017812px;}
.h7_c01330{height:59.609531px;}
.hd_c01330{height:62.201250px;}
.hc_c01330{height:64.792969px;}
.h9_c01330{height:67.384687px;}
.h5_c01330{height:69.976406px;}
.h12_c01330{height:72.568125px;}
.h11_c01330{height:75.159844px;}
.h13_c01330{height:77.751563px;}
.h3_c01330{height:85.526719px;}
.h1b_c01330{height:101.077031px;}
.h16_c01330{height:108.852188px;}
.h17_c01330{height:121.810781px;}
.h15_c01330{height:147.727969px;}
.h19_c01330{height:189.195469px;}
.h0_c01330{height:1153.440000px;}
.h1_c01330{height:1153.500000px;}
.w0_c01330{width:776.880000px;}
.w1_c01330{width:777.000000px;}
.x0_c01330{left:0.000000px;}
.x8_c01330{left:48.240000px;}
.x3_c01330{left:49.680000px;}
.x1e_c01330{left:51.120000px;}
.x16_c01330{left:77.760000px;}
.x15_c01330{left:79.920000px;}
.x1_c01330{left:100.800000px;}
.x9_c01330{left:110.160000px;}
.x4_c01330{left:111.600000px;}
.x1a_c01330{left:142.560000px;}
.x19_c01330{left:153.360000px;}
.x2_c01330{left:155.520000px;}
.xf_c01330{left:185.760000px;}
.x5_c01330{left:197.280000px;}
.x1b_c01330{left:208.080000px;}
.x10_c01330{left:229.680000px;}
.x1f_c01330{left:239.760000px;}
.x17_c01330{left:241.200000px;}
.xa_c01330{left:251.280000px;}
.x11_c01330{left:283.680000px;}
.xb_c01330{left:303.840000px;}
.x12_c01330{left:336.960000px;}
.xc_c01330{left:349.200000px;}
.x1c_c01330{left:369.360000px;}
.x20_c01330{left:370.800000px;}
.x6_c01330{left:380.160000px;}
.x13_c01330{left:381.600000px;}
.x24_c01330{left:403.200000px;}
.x21_c01330{left:412.560000px;}
.x1d_c01330{left:423.360000px;}
.x7_c01330{left:424.800000px;}
.x22_c01330{left:455.760000px;}
.xd_c01330{left:467.280000px;}
.x18_c01330{left:477.360000px;}
.x14_c01330{left:498.960000px;}
.xe_c01330{left:522.000000px;}
.x23_c01330{left:573.840000px;}
.x3c_c01330{left:594.000000px;}
.x32_c01330{left:596.160000px;}
.x38_c01330{left:606.240000px;}
.x2c_c01330{left:607.680000px;}
.x26_c01330{left:609.120000px;}
.x3b_c01330{left:619.200000px;}
.x30_c01330{left:627.840000px;}
.x2b_c01330{left:629.280000px;}
.x28_c01330{left:630.720000px;}
.x33_c01330{left:651.600000px;}
.x35_c01330{left:658.800000px;}
.x31_c01330{left:660.240000px;}
.x2d_c01330{left:661.680000px;}
.x25_c01330{left:663.840000px;}
.x39_c01330{left:671.040000px;}
.x34_c01330{left:693.360000px;}
.x3a_c01330{left:702.000000px;}
.x2f_c01330{left:703.440000px;}
.x2a_c01330{left:704.880000px;}
.x27_c01330{left:706.320000px;}
.x36_c01330{left:723.600000px;}
.x2e_c01330{left:725.040000px;}
.x29_c01330{left:726.480000px;}
.x3d_c01330{left:763.920000px;}
.x37_c01330{left:765.360000px;}
@media print{
.v2_c01330{vertical-align:-7.680000pt;}
.v0_c01330{vertical-align:0.000000pt;}
.v1_c01330{vertical-align:2.560000pt;}
.ls0_c01330{letter-spacing:0.000000pt;}
.ws0_c01330{word-spacing:-4.474027pt;}
.ws2_c01330{word-spacing:0.000000pt;}
.ws1_c01330{word-spacing:8.188800pt;}
.fs1a_c01330{font-size:12.800000pt;}
.fs17_c01330{font-size:20.480000pt;}
.fs15_c01330{font-size:23.040000pt;}
.fs19_c01330{font-size:25.600000pt;}
.fs1b_c01330{font-size:28.160000pt;}
.fsc_c01330{font-size:33.280000pt;}
.fsd_c01330{font-size:35.840000pt;}
.fs6_c01330{font-size:38.400000pt;}
.fs11_c01330{font-size:43.520000pt;}
.fs8_c01330{font-size:46.080000pt;}
.fs0_c01330{font-size:48.640000pt;}
.fs9_c01330{font-size:51.200000pt;}
.fs4_c01330{font-size:53.760000pt;}
.fs2_c01330{font-size:56.320000pt;}
.fs5_c01330{font-size:58.880000pt;}
.fsb_c01330{font-size:61.440000pt;}
.fsa_c01330{font-size:64.000000pt;}
.fs7_c01330{font-size:66.560000pt;}
.fs3_c01330{font-size:69.120000pt;}
.fsf_c01330{font-size:71.680000pt;}
.fse_c01330{font-size:74.240000pt;}
.fs10_c01330{font-size:76.800000pt;}
.fs1_c01330{font-size:84.480000pt;}
.fs18_c01330{font-size:99.840000pt;}
.fs13_c01330{font-size:107.520000pt;}
.fs14_c01330{font-size:120.320000pt;}
.fs12_c01330{font-size:145.920000pt;}
.fs16_c01330{font-size:186.880000pt;}
.y0_c01330{bottom:0.000000pt;}
.y7e_c01330{bottom:28.160000pt;}
.y7d_c01330{bottom:36.480000pt;}
.y41_c01330{bottom:40.960000pt;}
.y43_c01330{bottom:41.600000pt;}
.y42_c01330{bottom:42.880000pt;}
.y45_c01330{bottom:43.520000pt;}
.y40_c01330{bottom:44.800000pt;}
.y44_c01330{bottom:46.080000pt;}
.y46_c01330{bottom:48.000000pt;}
.y7c_c01330{bottom:49.280000pt;}
.y7b_c01330{bottom:53.120000pt;}
.y7a_c01330{bottom:60.160000pt;}
.y3d_c01330{bottom:79.360000pt;}
.y3e_c01330{bottom:80.000000pt;}
.y3c_c01330{bottom:81.920000pt;}
.y3f_c01330{bottom:83.840000pt;}
.y79_c01330{bottom:85.760000pt;}
.y77_c01330{bottom:86.400000pt;}
.y78_c01330{bottom:91.520000pt;}
.y39_c01330{bottom:118.400000pt;}
.y3a_c01330{bottom:120.320000pt;}
.y38_c01330{bottom:120.960000pt;}
.y37_c01330{bottom:121.600000pt;}
.y3b_c01330{bottom:122.240000pt;}
.y75_c01330{bottom:124.160000pt;}
.y76_c01330{bottom:124.800000pt;}
.y36_c01330{bottom:156.800000pt;}
.y35_c01330{bottom:159.360000pt;}
.y71_c01330{bottom:160.000000pt;}
.y70_c01330{bottom:161.280000pt;}
.y72_c01330{bottom:162.560000pt;}
.y34_c01330{bottom:194.560000pt;}
.y74_c01330{bottom:195.200000pt;}
.y33_c01330{bottom:197.120000pt;}
.y6f_c01330{bottom:199.040000pt;}
.y6e_c01330{bottom:200.320000pt;}
.y6d_c01330{bottom:200.960000pt;}
.y32_c01330{bottom:232.960000pt;}
.y31_c01330{bottom:235.520000pt;}
.y6a_c01330{bottom:236.800000pt;}
.y6c_c01330{bottom:237.440000pt;}
.y6b_c01330{bottom:238.080000pt;}
.y69_c01330{bottom:238.720000pt;}
.y73_c01330{bottom:241.920000pt;}
.y63_c01330{bottom:257.280000pt;}
.y62_c01330{bottom:263.680000pt;}
.y30_c01330{bottom:272.000000pt;}
.y2f_c01330{bottom:274.560000pt;}
.y68_c01330{bottom:275.840000pt;}
.y61_c01330{bottom:295.680000pt;}
.y2d_c01330{bottom:309.120000pt;}
.y2c_c01330{bottom:311.680000pt;}
.y2b_c01330{bottom:312.960000pt;}
.y2e_c01330{bottom:313.600000pt;}
.y60_c01330{bottom:333.440000pt;}
.y2a_c01330{bottom:349.440000pt;}
.y66_c01330{bottom:351.360000pt;}
.y29_c01330{bottom:352.000000pt;}
.y67_c01330{bottom:352.640000pt;}
.y5f_c01330{bottom:361.600000pt;}
.y5e_c01330{bottom:378.240000pt;}
.y28_c01330{bottom:387.840000pt;}
.y64_c01330{bottom:389.120000pt;}
.y27_c01330{bottom:389.760000pt;}
.y26_c01330{bottom:390.400000pt;}
.y65_c01330{bottom:391.680000pt;}
.y5d_c01330{bottom:414.080000pt;}
.y25_c01330{bottom:425.600000pt;}
.y23_c01330{bottom:428.160000pt;}
.y24_c01330{bottom:428.800000pt;}
.y5b_c01330{bottom:429.440000pt;}
.y5a_c01330{bottom:430.720000pt;}
.y5c_c01330{bottom:431.360000pt;}
.y22_c01330{bottom:464.000000pt;}
.y57_c01330{bottom:465.920000pt;}
.y58_c01330{bottom:466.560000pt;}
.y20_c01330{bottom:467.200000pt;}
.y59_c01330{bottom:467.840000pt;}
.y21_c01330{bottom:468.480000pt;}
.y1e_c01330{bottom:504.320000pt;}
.y1b_c01330{bottom:505.600000pt;}
.y1c_c01330{bottom:506.240000pt;}
.y1d_c01330{bottom:506.880000pt;}
.y1f_c01330{bottom:507.520000pt;}
.y1a_c01330{bottom:542.720000pt;}
.y19_c01330{bottom:544.640000pt;}
.y56_c01330{bottom:545.280000pt;}
.y18_c01330{bottom:581.120000pt;}
.y17_c01330{bottom:583.040000pt;}
.y16_c01330{bottom:583.680000pt;}
.y55_c01330{bottom:584.320000pt;}
.y54_c01330{bottom:584.960000pt;}
.y15_c01330{bottom:618.880000pt;}
.y12_c01330{bottom:619.520000pt;}
.y11_c01330{bottom:620.160000pt;}
.y13_c01330{bottom:620.800000pt;}
.y52_c01330{bottom:621.440000pt;}
.y53_c01330{bottom:622.080000pt;}
.y14_c01330{bottom:622.720000pt;}
.y10_c01330{bottom:657.920000pt;}
.ye_c01330{bottom:658.560000pt;}
.yf_c01330{bottom:661.120000pt;}
.yb_c01330{bottom:686.720000pt;}
.yd_c01330{bottom:687.360000pt;}
.ya_c01330{bottom:688.000000pt;}
.y51_c01330{bottom:688.640000pt;}
.yc_c01330{bottom:689.280000pt;}
.y4f_c01330{bottom:725.760000pt;}
.y50_c01330{bottom:727.680000pt;}
.y4c_c01330{bottom:763.520000pt;}
.y4e_c01330{bottom:764.160000pt;}
.y4d_c01330{bottom:766.080000pt;}
.y4b_c01330{bottom:801.280000pt;}
.y9_c01330{bottom:801.920000pt;}
.y8_c01330{bottom:803.200000pt;}
.y4a_c01330{bottom:839.680000pt;}
.y6_c01330{bottom:840.320000pt;}
.y49_c01330{bottom:840.960000pt;}
.y5_c01330{bottom:841.600000pt;}
.y7_c01330{bottom:842.240000pt;}
.y48_c01330{bottom:878.720000pt;}
.y4_c01330{bottom:879.360000pt;}
.y3_c01330{bottom:880.000000pt;}
.y2_c01330{bottom:912.000000pt;}
.y1_c01330{bottom:920.960000pt;}
.y47_c01330{bottom:998.400000pt;}
.h1d_c01330{height:11.518750pt;}
.h1a_c01330{height:18.430000pt;}
.h18_c01330{height:20.733750pt;}
.h1c_c01330{height:23.037500pt;}
.h1e_c01330{height:25.341250pt;}
.he_c01330{height:29.948750pt;}
.h10_c01330{height:32.252500pt;}
.h8_c01330{height:34.556250pt;}
.h14_c01330{height:39.163750pt;}
.ha_c01330{height:41.467500pt;}
.h2_c01330{height:43.771250pt;}
.hb_c01330{height:46.075000pt;}
.h6_c01330{height:48.378750pt;}
.hf_c01330{height:48.635000pt;}
.h4_c01330{height:50.682500pt;}
.h7_c01330{height:52.986250pt;}
.hd_c01330{height:55.290000pt;}
.hc_c01330{height:57.593750pt;}
.h9_c01330{height:59.897500pt;}
.h5_c01330{height:62.201250pt;}
.h12_c01330{height:64.505000pt;}
.h11_c01330{height:66.808750pt;}
.h13_c01330{height:69.112500pt;}
.h3_c01330{height:76.023750pt;}
.h1b_c01330{height:89.846250pt;}
.h16_c01330{height:96.757500pt;}
.h17_c01330{height:108.276250pt;}
.h15_c01330{height:131.313750pt;}
.h19_c01330{height:168.173750pt;}
.h0_c01330{height:1025.280000pt;}
.h1_c01330{height:1025.333333pt;}
.w0_c01330{width:690.560000pt;}
.w1_c01330{width:690.666667pt;}
.x0_c01330{left:0.000000pt;}
.x8_c01330{left:42.880000pt;}
.x3_c01330{left:44.160000pt;}
.x1e_c01330{left:45.440000pt;}
.x16_c01330{left:69.120000pt;}
.x15_c01330{left:71.040000pt;}
.x1_c01330{left:89.600000pt;}
.x9_c01330{left:97.920000pt;}
.x4_c01330{left:99.200000pt;}
.x1a_c01330{left:126.720000pt;}
.x19_c01330{left:136.320000pt;}
.x2_c01330{left:138.240000pt;}
.xf_c01330{left:165.120000pt;}
.x5_c01330{left:175.360000pt;}
.x1b_c01330{left:184.960000pt;}
.x10_c01330{left:204.160000pt;}
.x1f_c01330{left:213.120000pt;}
.x17_c01330{left:214.400000pt;}
.xa_c01330{left:223.360000pt;}
.x11_c01330{left:252.160000pt;}
.xb_c01330{left:270.080000pt;}
.x12_c01330{left:299.520000pt;}
.xc_c01330{left:310.400000pt;}
.x1c_c01330{left:328.320000pt;}
.x20_c01330{left:329.600000pt;}
.x6_c01330{left:337.920000pt;}
.x13_c01330{left:339.200000pt;}
.x24_c01330{left:358.400000pt;}
.x21_c01330{left:366.720000pt;}
.x1d_c01330{left:376.320000pt;}
.x7_c01330{left:377.600000pt;}
.x22_c01330{left:405.120000pt;}
.xd_c01330{left:415.360000pt;}
.x18_c01330{left:424.320000pt;}
.x14_c01330{left:443.520000pt;}
.xe_c01330{left:464.000000pt;}
.x23_c01330{left:510.080000pt;}
.x3c_c01330{left:528.000000pt;}
.x32_c01330{left:529.920000pt;}
.x38_c01330{left:538.880000pt;}
.x2c_c01330{left:540.160000pt;}
.x26_c01330{left:541.440000pt;}
.x3b_c01330{left:550.400000pt;}
.x30_c01330{left:558.080000pt;}
.x2b_c01330{left:559.360000pt;}
.x28_c01330{left:560.640000pt;}
.x33_c01330{left:579.200000pt;}
.x35_c01330{left:585.600000pt;}
.x31_c01330{left:586.880000pt;}
.x2d_c01330{left:588.160000pt;}
.x25_c01330{left:590.080000pt;}
.x39_c01330{left:596.480000pt;}
.x34_c01330{left:616.320000pt;}
.x3a_c01330{left:624.000000pt;}
.x2f_c01330{left:625.280000pt;}
.x2a_c01330{left:626.560000pt;}
.x27_c01330{left:627.840000pt;}
.x36_c01330{left:643.200000pt;}
.x2e_c01330{left:644.480000pt;}
.x29_c01330{left:645.760000pt;}
.x3d_c01330{left:679.040000pt;}
.x37_c01330{left:680.320000pt;}
}





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

.ir_c01331:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01331{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01331;src:url('chunks/assets/font_3fe25a1309cc0f8ccfb29cfc.woff2')format("woff");}.ff1_c01331{font-family:ff1_c01331;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m49_c01331{transform:matrix(0.053450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053450,0.000000,0.000000,0.250000,0,0);}
.m4a_c01331{transform:matrix(0.100850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100850,0.000000,0.000000,0.250000,0,0);}
.m46_c01331{transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);}
.m45_c01331{transform:matrix(0.119050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119050,0.000000,0.000000,0.250000,0,0);}
.m47_c01331{transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);}
.m34_c01331{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m31_c01331{transform:matrix(0.210600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210600,0.000000,0.000000,0.250000,0,0);}
.m2b_c01331{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m42_c01331{transform:matrix(0.218800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218800,0.000000,0.000000,0.250000,0,0);}
.mc_c01331{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m12_c01331{transform:matrix(0.228450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228450,0.000000,0.000000,0.250000,0,0);}
.m3b_c01331{transform:matrix(0.229450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229450,0.000000,0.000000,0.250000,0,0);}
.m50_c01331{transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);}
.m35_c01331{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m29_c01331{transform:matrix(0.233875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233875,0.000000,0.000000,0.250000,0,0);}
.m3c_c01331{transform:matrix(0.236225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236225,0.000000,0.000000,0.250000,0,0);}
.m57_c01331{transform:matrix(0.237775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237775,0.000000,0.000000,0.250000,0,0);}
.m2e_c01331{transform:matrix(0.239625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239625,0.000000,0.000000,0.250000,0,0);}
.m56_c01331{transform:matrix(0.243525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243525,0.000000,0.000000,0.250000,0,0);}
.m2a_c01331{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m32_c01331{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.me_c01331{transform:matrix(0.245375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245375,0.000000,0.000000,0.250000,0,0);}
.m1a_c01331{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m1_c01331{transform:matrix(0.247450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247450,0.000000,0.000000,0.250000,0,0);}
.m17_c01331{transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);}
.m24_c01331{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01331{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_c01331{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m21_c01331{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m4_c01331{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m13_c01331{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_c01331{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_c01331{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_c01331{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);}
.m3f_c01331{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.mb_c01331{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01331{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m8_c01331{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.ma_c01331{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m3_c01331{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m26_c01331{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m6_c01331{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.md_c01331{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m36_c01331{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m28_c01331{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m22_c01331{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m41_c01331{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01331{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m25_c01331{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m23_c01331{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01331{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m16_c01331{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m19_c01331{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01331{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m48_c01331{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01331{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m38_c01331{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);}
.m1f_c01331{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01331{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_c01331{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);}
.m3e_c01331{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01331{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m0_c01331{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);}
.m40_c01331{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01331{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);}
.m1d_c01331{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);}
.m5_c01331{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);}
.m18_c01331{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);}
.m15_c01331{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m2_c01331{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);}
.m52_c01331{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);}
.m14_c01331{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m54_c01331{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);}
.m55_c01331{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m44_c01331{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m27_c01331{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);}
.m4d_c01331{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);}
.m53_c01331{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01331{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m58_c01331{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);}
.m43_c01331{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m37_c01331{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m39_c01331{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01331{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);}
.m20_c01331{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01331{transform:matrix(0.712500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.712500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.712500,0.000000,0.000000,0.250000,0,0);}
.m30_c01331{transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);}
.m51_c01331{transform:matrix(0.842500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.842500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.842500,0.000000,0.000000,0.250000,0,0);}
.m11_c01331{transform:matrix(1.607500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.607500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.607500,0.000000,0.000000,0.250000,0,0);}
.v0_c01331{vertical-align:0.000000px;}
.ls0_c01331{letter-spacing:0.000000px;}
.sc__c01331{text-shadow:none;}
.sc0_c01331{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01331{-webkit-text-stroke:0px transparent;}
.sc0_c01331{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01331{word-spacing:0.000000px;}
.fc0_c01331{color:transparent;}
.fs11_c01331{font-size:17.280000px;}
.fs9_c01331{font-size:20.160000px;}
.fs12_c01331{font-size:23.040000px;}
.fs8_c01331{font-size:28.800000px;}
.fs10_c01331{font-size:37.440000px;}
.fse_c01331{font-size:40.320000px;}
.fs4_c01331{font-size:43.200000px;}
.fs15_c01331{font-size:48.960000px;}
.fsa_c01331{font-size:51.840000px;}
.fsb_c01331{font-size:54.720000px;}
.fsc_c01331{font-size:57.600000px;}
.fs6_c01331{font-size:60.480000px;}
.fs0_c01331{font-size:63.360000px;}
.fs5_c01331{font-size:66.240000px;}
.fs2_c01331{font-size:69.120000px;}
.fsd_c01331{font-size:72.000000px;}
.fs7_c01331{font-size:74.880000px;}
.fs1_c01331{font-size:77.760000px;}
.fs3_c01331{font-size:80.640000px;}
.fsf_c01331{font-size:83.520000px;}
.fs13_c01331{font-size:132.480000px;}
.fs14_c01331{font-size:192.960000px;}
.y0_c01331{bottom:0.000000px;}
.y73_c01331{bottom:46.800000px;}
.y72_c01331{bottom:48.960000px;}
.y71_c01331{bottom:50.400000px;}
.y7a_c01331{bottom:51.840000px;}
.y70_c01331{bottom:89.280000px;}
.y6f_c01331{bottom:92.880000px;}
.y79_c01331{bottom:94.320000px;}
.y78_c01331{bottom:95.040000px;}
.y6d_c01331{bottom:133.200000px;}
.y6e_c01331{bottom:135.360000px;}
.y6c_c01331{bottom:136.800000px;}
.y75_c01331{bottom:137.520000px;}
.y74_c01331{bottom:138.240000px;}
.y77_c01331{bottom:139.680000px;}
.y76_c01331{bottom:140.400000px;}
.y4f_c01331{bottom:176.400000px;}
.y50_c01331{bottom:177.840000px;}
.y51_c01331{bottom:178.560000px;}
.y53_c01331{bottom:179.280000px;}
.y4e_c01331{bottom:180.720000px;}
.y54_c01331{bottom:181.440000px;}
.y52_c01331{bottom:182.160000px;}
.y59_c01331{bottom:190.800000px;}
.y49_c01331{bottom:219.600000px;}
.y4a_c01331{bottom:221.040000px;}
.y48_c01331{bottom:222.480000px;}
.y4b_c01331{bottom:223.920000px;}
.y4c_c01331{bottom:224.640000px;}
.y4d_c01331{bottom:225.360000px;}
.y58_c01331{bottom:254.880000px;}
.y57_c01331{bottom:259.920000px;}
.y44_c01331{bottom:264.240000px;}
.y45_c01331{bottom:264.960000px;}
.y47_c01331{bottom:267.120000px;}
.y43_c01331{bottom:267.840000px;}
.y46_c01331{bottom:270.000000px;}
.y56_c01331{bottom:274.320000px;}
.y55_c01331{bottom:281.520000px;}
.y6a_c01331{bottom:311.040000px;}
.y6b_c01331{bottom:313.200000px;}
.y66_c01331{bottom:349.920000px;}
.y68_c01331{bottom:353.520000px;}
.y67_c01331{bottom:354.960000px;}
.y69_c01331{bottom:355.680000px;}
.y64_c01331{bottom:383.760000px;}
.y62_c01331{bottom:384.480000px;}
.y61_c01331{bottom:385.200000px;}
.y63_c01331{bottom:385.920000px;}
.y5f_c01331{bottom:386.640000px;}
.y65_c01331{bottom:388.080000px;}
.y60_c01331{bottom:388.800000px;}
.y5b_c01331{bottom:427.680000px;}
.y5c_c01331{bottom:429.120000px;}
.y5a_c01331{bottom:430.560000px;}
.y5d_c01331{bottom:431.280000px;}
.y5e_c01331{bottom:432.720000px;}
.y36_c01331{bottom:470.880000px;}
.y42_c01331{bottom:471.600000px;}
.y41_c01331{bottom:473.040000px;}
.y37_c01331{bottom:473.760000px;}
.y3f_c01331{bottom:512.640000px;}
.y40_c01331{bottom:513.360000px;}
.y34_c01331{bottom:514.800000px;}
.y35_c01331{bottom:515.520000px;}
.y3e_c01331{bottom:555.120000px;}
.y33_c01331{bottom:557.280000px;}
.y31_c01331{bottom:558.000000px;}
.y30_c01331{bottom:558.720000px;}
.y32_c01331{bottom:559.440000px;}
.y3d_c01331{bottom:560.160000px;}
.y2f_c01331{bottom:587.520000px;}
.y3c_c01331{bottom:599.040000px;}
.y2d_c01331{bottom:600.480000px;}
.y3b_c01331{bottom:601.200000px;}
.y2e_c01331{bottom:602.640000px;}
.y2c_c01331{bottom:603.360000px;}
.y3a_c01331{bottom:642.240000px;}
.y29_c01331{bottom:643.680000px;}
.y28_c01331{bottom:644.400000px;}
.y2b_c01331{bottom:645.120000px;}
.y2a_c01331{bottom:645.840000px;}
.y27_c01331{bottom:685.440000px;}
.y26_c01331{bottom:686.160000px;}
.y38_c01331{bottom:688.320000px;}
.y39_c01331{bottom:689.760000px;}
.y1a_c01331{bottom:729.360000px;}
.y25_c01331{bottom:730.080000px;}
.y19_c01331{bottom:731.520000px;}
.y24_c01331{bottom:771.120000px;}
.y18_c01331{bottom:771.840000px;}
.y16_c01331{bottom:772.560000px;}
.y23_c01331{bottom:773.280000px;}
.y15_c01331{bottom:774.720000px;}
.y17_c01331{bottom:775.440000px;}
.y12_c01331{bottom:815.760000px;}
.y13_c01331{bottom:816.480000px;}
.y14_c01331{bottom:817.920000px;}
.y10_c01331{bottom:818.640000px;}
.yf_c01331{bottom:819.360000px;}
.y11_c01331{bottom:822.240000px;}
.y22_c01331{bottom:858.240000px;}
.yd_c01331{bottom:858.960000px;}
.ye_c01331{bottom:859.680000px;}
.yc_c01331{bottom:860.400000px;}
.y21_c01331{bottom:901.440000px;}
.yb_c01331{bottom:902.160000px;}
.ya_c01331{bottom:902.880000px;}
.y20_c01331{bottom:903.600000px;}
.y9_c01331{bottom:944.640000px;}
.y7_c01331{bottom:945.360000px;}
.y8_c01331{bottom:946.800000px;}
.y6_c01331{bottom:947.520000px;}
.y4_c01331{bottom:987.840000px;}
.y1e_c01331{bottom:988.560000px;}
.y1f_c01331{bottom:989.280000px;}
.y3_c01331{bottom:990.000000px;}
.y5_c01331{bottom:992.160000px;}
.y2_c01331{bottom:1031.760000px;}
.y1c_c01331{bottom:1032.480000px;}
.y1_c01331{bottom:1033.200000px;}
.y1d_c01331{bottom:1033.920000px;}
.y1b_c01331{bottom:1080.720000px;}
.h13_c01331{height:15.550313px;}
.hb_c01331{height:18.142031px;}
.h14_c01331{height:20.733750px;}
.ha_c01331{height:25.917187px;}
.h12_c01331{height:33.692344px;}
.h10_c01331{height:36.284062px;}
.h6_c01331{height:38.875781px;}
.h17_c01331{height:44.059219px;}
.hc_c01331{height:46.650937px;}
.hd_c01331{height:49.242656px;}
.he_c01331{height:51.834375px;}
.h8_c01331{height:54.426094px;}
.h2_c01331{height:57.017812px;}
.h7_c01331{height:59.609531px;}
.h4_c01331{height:62.201250px;}
.hf_c01331{height:64.792969px;}
.h9_c01331{height:67.384687px;}
.h3_c01331{height:69.976406px;}
.h5_c01331{height:72.568125px;}
.h11_c01331{height:75.159844px;}
.h15_c01331{height:119.219062px;}
.h16_c01331{height:173.645156px;}
.h1_c01331{height:1150.500000px;}
.h0_c01331{height:1150.560000px;}
.w1_c01331{width:771.000000px;}
.w0_c01331{width:771.120000px;}
.x0_c01331{left:0.000000px;}
.x1_c01331{left:47.520000px;}
.x41_c01331{left:48.960000px;}
.xb_c01331{left:77.760000px;}
.xc_c01331{left:86.400000px;}
.x2a_c01331{left:107.280000px;}
.x9_c01331{left:108.720000px;}
.x2_c01331{left:110.160000px;}
.x40_c01331{left:172.800000px;}
.x42_c01331{left:174.240000px;}
.x27_c01331{left:194.400000px;}
.x4_c01331{left:197.280000px;}
.x2b_c01331{left:205.200000px;}
.x3f_c01331{left:218.880000px;}
.x7_c01331{left:229.680000px;}
.x10_c01331{left:238.320000px;}
.x5_c01331{left:239.760000px;}
.x37_c01331{left:248.400000px;}
.x2c_c01331{left:259.920000px;}
.x3_c01331{left:272.160000px;}
.x29_c01331{left:281.520000px;}
.x11_c01331{left:291.600000px;}
.x28_c01331{left:293.760000px;}
.x39_c01331{left:303.840000px;}
.x3a_c01331{left:324.720000px;}
.xa_c01331{left:326.160000px;}
.x12_c01331{left:336.960000px;}
.xd_c01331{left:347.040000px;}
.x2f_c01331{left:357.120000px;}
.x8_c01331{left:358.560000px;}
.x3d_c01331{left:367.920000px;}
.x6_c01331{left:370.080000px;}
.x32_c01331{left:378.000000px;}
.x30_c01331{left:399.600000px;}
.xe_c01331{left:401.760000px;}
.x3e_c01331{left:421.920000px;}
.x33_c01331{left:432.000000px;}
.xf_c01331{left:444.240000px;}
.x34_c01331{left:475.200000px;}
.x3b_c01331{left:486.000000px;}
.x35_c01331{left:517.680000px;}
.x3c_c01331{left:539.280000px;}
.x20_c01331{left:573.120000px;}
.x14_c01331{left:574.560000px;}
.x19_c01331{left:576.000000px;}
.x25_c01331{left:593.280000px;}
.x1e_c01331{left:594.720000px;}
.x1c_c01331{left:596.160000px;}
.x43_c01331{left:604.800000px;}
.x2d_c01331{left:624.960000px;}
.x21_c01331{left:627.120000px;}
.x1a_c01331{left:629.280000px;}
.x15_c01331{left:630.720000px;}
.x1d_c01331{left:652.320000px;}
.x2e_c01331{left:657.360000px;}
.x22_c01331{left:659.520000px;}
.x1b_c01331{left:661.680000px;}
.x16_c01331{left:663.120000px;}
.x13_c01331{left:686.880000px;}
.x23_c01331{left:691.920000px;}
.x31_c01331{left:699.840000px;}
.x1f_c01331{left:702.000000px;}
.x17_c01331{left:704.160000px;}
.x24_c01331{left:722.160000px;}
.x18_c01331{left:725.760000px;}
.x36_c01331{left:761.040000px;}
.x38_c01331{left:763.200000px;}
.x26_c01331{left:766.080000px;}
@media print{
.v0_c01331{vertical-align:0.000000pt;}
.ls0_c01331{letter-spacing:0.000000pt;}
.ws0_c01331{word-spacing:0.000000pt;}
.fs11_c01331{font-size:15.360000pt;}
.fs9_c01331{font-size:17.920000pt;}
.fs12_c01331{font-size:20.480000pt;}
.fs8_c01331{font-size:25.600000pt;}
.fs10_c01331{font-size:33.280000pt;}
.fse_c01331{font-size:35.840000pt;}
.fs4_c01331{font-size:38.400000pt;}
.fs15_c01331{font-size:43.520000pt;}
.fsa_c01331{font-size:46.080000pt;}
.fsb_c01331{font-size:48.640000pt;}
.fsc_c01331{font-size:51.200000pt;}
.fs6_c01331{font-size:53.760000pt;}
.fs0_c01331{font-size:56.320000pt;}
.fs5_c01331{font-size:58.880000pt;}
.fs2_c01331{font-size:61.440000pt;}
.fsd_c01331{font-size:64.000000pt;}
.fs7_c01331{font-size:66.560000pt;}
.fs1_c01331{font-size:69.120000pt;}
.fs3_c01331{font-size:71.680000pt;}
.fsf_c01331{font-size:74.240000pt;}
.fs13_c01331{font-size:117.760000pt;}
.fs14_c01331{font-size:171.520000pt;}
.y0_c01331{bottom:0.000000pt;}
.y73_c01331{bottom:41.600000pt;}
.y72_c01331{bottom:43.520000pt;}
.y71_c01331{bottom:44.800000pt;}
.y7a_c01331{bottom:46.080000pt;}
.y70_c01331{bottom:79.360000pt;}
.y6f_c01331{bottom:82.560000pt;}
.y79_c01331{bottom:83.840000pt;}
.y78_c01331{bottom:84.480000pt;}
.y6d_c01331{bottom:118.400000pt;}
.y6e_c01331{bottom:120.320000pt;}
.y6c_c01331{bottom:121.600000pt;}
.y75_c01331{bottom:122.240000pt;}
.y74_c01331{bottom:122.880000pt;}
.y77_c01331{bottom:124.160000pt;}
.y76_c01331{bottom:124.800000pt;}
.y4f_c01331{bottom:156.800000pt;}
.y50_c01331{bottom:158.080000pt;}
.y51_c01331{bottom:158.720000pt;}
.y53_c01331{bottom:159.360000pt;}
.y4e_c01331{bottom:160.640000pt;}
.y54_c01331{bottom:161.280000pt;}
.y52_c01331{bottom:161.920000pt;}
.y59_c01331{bottom:169.600000pt;}
.y49_c01331{bottom:195.200000pt;}
.y4a_c01331{bottom:196.480000pt;}
.y48_c01331{bottom:197.760000pt;}
.y4b_c01331{bottom:199.040000pt;}
.y4c_c01331{bottom:199.680000pt;}
.y4d_c01331{bottom:200.320000pt;}
.y58_c01331{bottom:226.560000pt;}
.y57_c01331{bottom:231.040000pt;}
.y44_c01331{bottom:234.880000pt;}
.y45_c01331{bottom:235.520000pt;}
.y47_c01331{bottom:237.440000pt;}
.y43_c01331{bottom:238.080000pt;}
.y46_c01331{bottom:240.000000pt;}
.y56_c01331{bottom:243.840000pt;}
.y55_c01331{bottom:250.240000pt;}
.y6a_c01331{bottom:276.480000pt;}
.y6b_c01331{bottom:278.400000pt;}
.y66_c01331{bottom:311.040000pt;}
.y68_c01331{bottom:314.240000pt;}
.y67_c01331{bottom:315.520000pt;}
.y69_c01331{bottom:316.160000pt;}
.y64_c01331{bottom:341.120000pt;}
.y62_c01331{bottom:341.760000pt;}
.y61_c01331{bottom:342.400000pt;}
.y63_c01331{bottom:343.040000pt;}
.y5f_c01331{bottom:343.680000pt;}
.y65_c01331{bottom:344.960000pt;}
.y60_c01331{bottom:345.600000pt;}
.y5b_c01331{bottom:380.160000pt;}
.y5c_c01331{bottom:381.440000pt;}
.y5a_c01331{bottom:382.720000pt;}
.y5d_c01331{bottom:383.360000pt;}
.y5e_c01331{bottom:384.640000pt;}
.y36_c01331{bottom:418.560000pt;}
.y42_c01331{bottom:419.200000pt;}
.y41_c01331{bottom:420.480000pt;}
.y37_c01331{bottom:421.120000pt;}
.y3f_c01331{bottom:455.680000pt;}
.y40_c01331{bottom:456.320000pt;}
.y34_c01331{bottom:457.600000pt;}
.y35_c01331{bottom:458.240000pt;}
.y3e_c01331{bottom:493.440000pt;}
.y33_c01331{bottom:495.360000pt;}
.y31_c01331{bottom:496.000000pt;}
.y30_c01331{bottom:496.640000pt;}
.y32_c01331{bottom:497.280000pt;}
.y3d_c01331{bottom:497.920000pt;}
.y2f_c01331{bottom:522.240000pt;}
.y3c_c01331{bottom:532.480000pt;}
.y2d_c01331{bottom:533.760000pt;}
.y3b_c01331{bottom:534.400000pt;}
.y2e_c01331{bottom:535.680000pt;}
.y2c_c01331{bottom:536.320000pt;}
.y3a_c01331{bottom:570.880000pt;}
.y29_c01331{bottom:572.160000pt;}
.y28_c01331{bottom:572.800000pt;}
.y2b_c01331{bottom:573.440000pt;}
.y2a_c01331{bottom:574.080000pt;}
.y27_c01331{bottom:609.280000pt;}
.y26_c01331{bottom:609.920000pt;}
.y38_c01331{bottom:611.840000pt;}
.y39_c01331{bottom:613.120000pt;}
.y1a_c01331{bottom:648.320000pt;}
.y25_c01331{bottom:648.960000pt;}
.y19_c01331{bottom:650.240000pt;}
.y24_c01331{bottom:685.440000pt;}
.y18_c01331{bottom:686.080000pt;}
.y16_c01331{bottom:686.720000pt;}
.y23_c01331{bottom:687.360000pt;}
.y15_c01331{bottom:688.640000pt;}
.y17_c01331{bottom:689.280000pt;}
.y12_c01331{bottom:725.120000pt;}
.y13_c01331{bottom:725.760000pt;}
.y14_c01331{bottom:727.040000pt;}
.y10_c01331{bottom:727.680000pt;}
.yf_c01331{bottom:728.320000pt;}
.y11_c01331{bottom:730.880000pt;}
.y22_c01331{bottom:762.880000pt;}
.yd_c01331{bottom:763.520000pt;}
.ye_c01331{bottom:764.160000pt;}
.yc_c01331{bottom:764.800000pt;}
.y21_c01331{bottom:801.280000pt;}
.yb_c01331{bottom:801.920000pt;}
.ya_c01331{bottom:802.560000pt;}
.y20_c01331{bottom:803.200000pt;}
.y9_c01331{bottom:839.680000pt;}
.y7_c01331{bottom:840.320000pt;}
.y8_c01331{bottom:841.600000pt;}
.y6_c01331{bottom:842.240000pt;}
.y4_c01331{bottom:878.080000pt;}
.y1e_c01331{bottom:878.720000pt;}
.y1f_c01331{bottom:879.360000pt;}
.y3_c01331{bottom:880.000000pt;}
.y5_c01331{bottom:881.920000pt;}
.y2_c01331{bottom:917.120000pt;}
.y1c_c01331{bottom:917.760000pt;}
.y1_c01331{bottom:918.400000pt;}
.y1d_c01331{bottom:919.040000pt;}
.y1b_c01331{bottom:960.640000pt;}
.h13_c01331{height:13.822500pt;}
.hb_c01331{height:16.126250pt;}
.h14_c01331{height:18.430000pt;}
.ha_c01331{height:23.037500pt;}
.h12_c01331{height:29.948750pt;}
.h10_c01331{height:32.252500pt;}
.h6_c01331{height:34.556250pt;}
.h17_c01331{height:39.163750pt;}
.hc_c01331{height:41.467500pt;}
.hd_c01331{height:43.771250pt;}
.he_c01331{height:46.075000pt;}
.h8_c01331{height:48.378750pt;}
.h2_c01331{height:50.682500pt;}
.h7_c01331{height:52.986250pt;}
.h4_c01331{height:55.290000pt;}
.hf_c01331{height:57.593750pt;}
.h9_c01331{height:59.897500pt;}
.h3_c01331{height:62.201250pt;}
.h5_c01331{height:64.505000pt;}
.h11_c01331{height:66.808750pt;}
.h15_c01331{height:105.972500pt;}
.h16_c01331{height:154.351250pt;}
.h1_c01331{height:1022.666667pt;}
.h0_c01331{height:1022.720000pt;}
.w1_c01331{width:685.333333pt;}
.w0_c01331{width:685.440000pt;}
.x0_c01331{left:0.000000pt;}
.x1_c01331{left:42.240000pt;}
.x41_c01331{left:43.520000pt;}
.xb_c01331{left:69.120000pt;}
.xc_c01331{left:76.800000pt;}
.x2a_c01331{left:95.360000pt;}
.x9_c01331{left:96.640000pt;}
.x2_c01331{left:97.920000pt;}
.x40_c01331{left:153.600000pt;}
.x42_c01331{left:154.880000pt;}
.x27_c01331{left:172.800000pt;}
.x4_c01331{left:175.360000pt;}
.x2b_c01331{left:182.400000pt;}
.x3f_c01331{left:194.560000pt;}
.x7_c01331{left:204.160000pt;}
.x10_c01331{left:211.840000pt;}
.x5_c01331{left:213.120000pt;}
.x37_c01331{left:220.800000pt;}
.x2c_c01331{left:231.040000pt;}
.x3_c01331{left:241.920000pt;}
.x29_c01331{left:250.240000pt;}
.x11_c01331{left:259.200000pt;}
.x28_c01331{left:261.120000pt;}
.x39_c01331{left:270.080000pt;}
.x3a_c01331{left:288.640000pt;}
.xa_c01331{left:289.920000pt;}
.x12_c01331{left:299.520000pt;}
.xd_c01331{left:308.480000pt;}
.x2f_c01331{left:317.440000pt;}
.x8_c01331{left:318.720000pt;}
.x3d_c01331{left:327.040000pt;}
.x6_c01331{left:328.960000pt;}
.x32_c01331{left:336.000000pt;}
.x30_c01331{left:355.200000pt;}
.xe_c01331{left:357.120000pt;}
.x3e_c01331{left:375.040000pt;}
.x33_c01331{left:384.000000pt;}
.xf_c01331{left:394.880000pt;}
.x34_c01331{left:422.400000pt;}
.x3b_c01331{left:432.000000pt;}
.x35_c01331{left:460.160000pt;}
.x3c_c01331{left:479.360000pt;}
.x20_c01331{left:509.440000pt;}
.x14_c01331{left:510.720000pt;}
.x19_c01331{left:512.000000pt;}
.x25_c01331{left:527.360000pt;}
.x1e_c01331{left:528.640000pt;}
.x1c_c01331{left:529.920000pt;}
.x43_c01331{left:537.600000pt;}
.x2d_c01331{left:555.520000pt;}
.x21_c01331{left:557.440000pt;}
.x1a_c01331{left:559.360000pt;}
.x15_c01331{left:560.640000pt;}
.x1d_c01331{left:579.840000pt;}
.x2e_c01331{left:584.320000pt;}
.x22_c01331{left:586.240000pt;}
.x1b_c01331{left:588.160000pt;}
.x16_c01331{left:589.440000pt;}
.x13_c01331{left:610.560000pt;}
.x23_c01331{left:615.040000pt;}
.x31_c01331{left:622.080000pt;}
.x1f_c01331{left:624.000000pt;}
.x17_c01331{left:625.920000pt;}
.x24_c01331{left:641.920000pt;}
.x18_c01331{left:645.120000pt;}
.x36_c01331{left:676.480000pt;}
.x38_c01331{left:678.400000pt;}
.x26_c01331{left:680.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_c01332 {
    display:none;
  }
  .loading-indicator_c01332.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01332 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01332 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01332" -> "#page-container .classname_c01332")
 */
.pf_c01332 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01332 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01332.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01332 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01332 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01332 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01332 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01332 {overflow:visible;}
  }
}
.c_c01332 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01332 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01332:after { /* webkit #35443 */
  content: '';
}
.t_c01332:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01332 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01332 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01332 { /* info for Javascript */
  display:none;
}
.l_c01332 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01332 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01332 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01332:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01332{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01332;src:url('chunks/assets/font_4fb9240348df8bdacaef35d8.woff2')format("woff");}.ff1_c01332{font-family:ff1_c01332;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4c_c01332{transform:matrix(0.196850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196850,0.000000,0.000000,0.250000,0,0);}
.m44_c01332{transform:matrix(0.200550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200550,0.000000,0.000000,0.250000,0,0);}
.m49_c01332{transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);}
.m3f_c01332{transform:matrix(0.223200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223200,0.000000,0.000000,0.250000,0,0);}
.m2a_c01332{transform:matrix(0.227325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227325,0.000000,0.000000,0.250000,0,0);}
.m26_c01332{transform:matrix(0.229950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229950,0.000000,0.000000,0.250000,0,0);}
.m4a_c01332{transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);}
.me_c01332{transform:matrix(0.236425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236425,0.000000,0.000000,0.250000,0,0);}
.m3b_c01332{transform:matrix(0.237300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237300,0.000000,0.000000,0.250000,0,0);}
.m10_c01332{transform:matrix(0.238375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238375,0.000000,0.000000,0.250000,0,0);}
.m6_c01332{transform:matrix(0.239225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239225,0.000000,0.000000,0.250000,0,0);}
.m34_c01332{transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);}
.m38_c01332{transform:matrix(0.242775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242775,0.000000,0.000000,0.250000,0,0);}
.m24_c01332{transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);}
.m21_c01332{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m11_c01332{transform:matrix(0.244525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244525,0.000000,0.000000,0.250000,0,0);}
.m22_c01332{transform:matrix(0.245325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245325,0.000000,0.000000,0.250000,0,0);}
.m3a_c01332{transform:matrix(0.246475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246475,0.000000,0.000000,0.250000,0,0);}
.m18_c01332{transform:matrix(0.247075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247075,0.000000,0.000000,0.250000,0,0);}
.m2c_c01332{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01332{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);}
.m47_c01332{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m16_c01332{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_c01332{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m32_c01332{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);}
.m33_c01332{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m4_c01332{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_c01332{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m13_c01332{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m15_c01332{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01332{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m2_c01332{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mf_c01332{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);}
.m40_c01332{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01332{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m23_c01332{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m4d_c01332{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m42_c01332{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m39_c01332{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01332{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01332{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m17_c01332{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m28_c01332{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.md_c01332{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m5_c01332{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m0_c01332{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m9_c01332{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);}
.m2e_c01332{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_c01332{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);}
.m2b_c01332{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);}
.m46_c01332{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m29_c01332{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m14_c01332{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_c01332{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m25_c01332{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);}
.m3d_c01332{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m3_c01332{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m20_c01332{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01332{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m1_c01332{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);}
.m30_c01332{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01332{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);}
.m37_c01332{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);}
.m27_c01332{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m36_c01332{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m31_c01332{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m45_c01332{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01332{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);}
.m1a_c01332{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m19_c01332{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01332{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);}
.m41_c01332{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);}
.m48_c01332{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01332{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m12_c01332{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m35_c01332{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01332{transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);}
.m43_c01332{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01332{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01332{transform:matrix(0.815000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.815000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.815000,0.000000,0.000000,0.250000,0,0);}
.v0_c01332{vertical-align:0.000000px;}
.ls0_c01332{letter-spacing:0.000000px;}
.sc__c01332{text-shadow:none;}
.sc0_c01332{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01332{-webkit-text-stroke:0px transparent;}
.sc0_c01332{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01332{word-spacing:0.000000px;}
.fc0_c01332{color:transparent;}
.fs10_c01332{font-size:25.920000px;}
.fsf_c01332{font-size:31.680000px;}
.fs6_c01332{font-size:34.560000px;}
.fsa_c01332{font-size:43.200000px;}
.fsd_c01332{font-size:46.080000px;}
.fs7_c01332{font-size:48.960000px;}
.fs1_c01332{font-size:51.840000px;}
.fs9_c01332{font-size:54.720000px;}
.fsb_c01332{font-size:57.600000px;}
.fs3_c01332{font-size:60.480000px;}
.fsc_c01332{font-size:63.360000px;}
.fs4_c01332{font-size:66.240000px;}
.fs0_c01332{font-size:69.120000px;}
.fs11_c01332{font-size:72.000000px;}
.fs5_c01332{font-size:74.880000px;}
.fs2_c01332{font-size:77.760000px;}
.fs8_c01332{font-size:80.640000px;}
.fse_c01332{font-size:83.520000px;}
.y0_c01332{bottom:0.000000px;}
.y4c_c01332{bottom:68.400000px;}
.y4a_c01332{bottom:70.560000px;}
.y4b_c01332{bottom:71.280000px;}
.y48_c01332{bottom:72.720000px;}
.y49_c01332{bottom:73.440000px;}
.y6d_c01332{bottom:74.160000px;}
.y6e_c01332{bottom:76.320000px;}
.y47_c01332{bottom:113.040000px;}
.y45_c01332{bottom:115.920000px;}
.y46_c01332{bottom:116.640000px;}
.y6b_c01332{bottom:118.800000px;}
.y6c_c01332{bottom:119.520000px;}
.y44_c01332{bottom:156.960000px;}
.y43_c01332{bottom:159.120000px;}
.y42_c01332{bottom:159.840000px;}
.y69_c01332{bottom:161.280000px;}
.y6a_c01332{bottom:163.440000px;}
.y41_c01332{bottom:198.720000px;}
.y40_c01332{bottom:203.760000px;}
.y68_c01332{bottom:204.480000px;}
.y3f_c01332{bottom:243.360000px;}
.y3e_c01332{bottom:244.800000px;}
.y3c_c01332{bottom:245.520000px;}
.y3d_c01332{bottom:246.240000px;}
.y65_c01332{bottom:246.960000px;}
.y66_c01332{bottom:247.680000px;}
.y67_c01332{bottom:250.560000px;}
.y3a_c01332{bottom:288.720000px;}
.y3b_c01332{bottom:289.440000px;}
.y39_c01332{bottom:339.840000px;}
.y38_c01332{bottom:342.000000px;}
.y63_c01332{bottom:342.720000px;}
.y64_c01332{bottom:343.440000px;}
.y34_c01332{bottom:383.040000px;}
.y37_c01332{bottom:383.760000px;}
.y35_c01332{bottom:384.480000px;}
.y36_c01332{bottom:385.200000px;}
.y33_c01332{bottom:385.920000px;}
.y61_c01332{bottom:386.640000px;}
.y62_c01332{bottom:388.080000px;}
.y60_c01332{bottom:389.520000px;}
.y31_c01332{bottom:426.240000px;}
.y32_c01332{bottom:426.960000px;}
.y5f_c01332{bottom:428.400000px;}
.y30_c01332{bottom:429.120000px;}
.y5e_c01332{bottom:429.840000px;}
.y2d_c01332{bottom:470.160000px;}
.y2e_c01332{bottom:470.880000px;}
.y2f_c01332{bottom:471.600000px;}
.y5c_c01332{bottom:472.320000px;}
.y2c_c01332{bottom:473.040000px;}
.y5b_c01332{bottom:475.200000px;}
.y5d_c01332{bottom:475.920000px;}
.y2a_c01332{bottom:513.360000px;}
.y2b_c01332{bottom:514.080000px;}
.y29_c01332{bottom:516.240000px;}
.y25_c01332{bottom:556.560000px;}
.y28_c01332{bottom:557.280000px;}
.y27_c01332{bottom:558.720000px;}
.y24_c01332{bottom:559.440000px;}
.y26_c01332{bottom:560.160000px;}
.y22_c01332{bottom:600.480000px;}
.y5a_c01332{bottom:601.920000px;}
.y59_c01332{bottom:602.640000px;}
.y23_c01332{bottom:603.360000px;}
.y21_c01332{bottom:604.080000px;}
.y1b_c01332{bottom:642.960000px;}
.y20_c01332{bottom:643.680000px;}
.y1f_c01332{bottom:644.400000px;}
.y1c_c01332{bottom:645.120000px;}
.y1a_c01332{bottom:645.840000px;}
.y1e_c01332{bottom:646.560000px;}
.y1d_c01332{bottom:647.280000px;}
.y58_c01332{bottom:648.000000px;}
.y19_c01332{bottom:686.880000px;}
.y56_c01332{bottom:688.320000px;}
.y18_c01332{bottom:690.480000px;}
.y57_c01332{bottom:691.200000px;}
.y16_c01332{bottom:730.800000px;}
.y55_c01332{bottom:731.520000px;}
.y17_c01332{bottom:732.240000px;}
.y14_c01332{bottom:732.960000px;}
.y15_c01332{bottom:733.680000px;}
.y13_c01332{bottom:773.280000px;}
.y54_c01332{bottom:774.720000px;}
.y12_c01332{bottom:776.160000px;}
.y11_c01332{bottom:817.200000px;}
.y10_c01332{bottom:818.640000px;}
.y53_c01332{bottom:859.680000px;}
.yf_c01332{bottom:860.400000px;}
.ye_c01332{bottom:863.280000px;}
.yd_c01332{bottom:902.880000px;}
.yc_c01332{bottom:903.600000px;}
.yb_c01332{bottom:905.040000px;}
.ya_c01332{bottom:946.080000px;}
.y8_c01332{bottom:946.800000px;}
.y52_c01332{bottom:947.520000px;}
.y51_c01332{bottom:948.960000px;}
.y7_c01332{bottom:949.680000px;}
.y9_c01332{bottom:950.400000px;}
.y6_c01332{bottom:989.280000px;}
.y50_c01332{bottom:990.720000px;}
.y4_c01332{bottom:991.440000px;}
.y5_c01332{bottom:993.600000px;}
.y3_c01332{bottom:1032.480000px;}
.y4e_c01332{bottom:1033.920000px;}
.y1_c01332{bottom:1034.640000px;}
.y4f_c01332{bottom:1035.360000px;}
.y2_c01332{bottom:1037.520000px;}
.y4d_c01332{bottom:1116.720000px;}
.h12_c01332{height:23.325469px;}
.h11_c01332{height:28.508906px;}
.h8_c01332{height:31.100625px;}
.hc_c01332{height:38.875781px;}
.hf_c01332{height:41.467500px;}
.h9_c01332{height:44.059219px;}
.h3_c01332{height:46.650937px;}
.hb_c01332{height:49.242656px;}
.hd_c01332{height:51.834375px;}
.h5_c01332{height:54.426094px;}
.he_c01332{height:57.017812px;}
.h6_c01332{height:59.609531px;}
.h2_c01332{height:62.201250px;}
.h13_c01332{height:64.792969px;}
.h7_c01332{height:67.384687px;}
.h4_c01332{height:69.976406px;}
.ha_c01332{height:72.568125px;}
.h10_c01332{height:75.159844px;}
.h0_c01332{height:1152.720000px;}
.h1_c01332{height:1152.750000px;}
.w0_c01332{width:774.720000px;}
.w1_c01332{width:774.750000px;}
.x0_c01332{left:0.000000px;}
.x1_c01332{left:49.680000px;}
.x15_c01332{left:51.120000px;}
.x1b_c01332{left:52.560000px;}
.x8_c01332{left:81.360000px;}
.x17_c01332{left:100.800000px;}
.x7_c01332{left:110.880000px;}
.x4_c01332{left:112.320000px;}
.x2_c01332{left:113.760000px;}
.x18_c01332{left:156.240000px;}
.x3_c01332{left:177.120000px;}
.x1d_c01332{left:187.920000px;}
.x19_c01332{left:198.720000px;}
.x1a_c01332{left:200.160000px;}
.x5_c01332{left:209.520000px;}
.xf_c01332{left:231.120000px;}
.x9_c01332{left:241.920000px;}
.x1c_c01332{left:243.360000px;}
.x6_c01332{left:253.440000px;}
.xb_c01332{left:264.240000px;}
.x1e_c01332{left:276.480000px;}
.x14_c01332{left:284.400000px;}
.xa_c01332{left:296.640000px;}
.xc_c01332{left:307.440000px;}
.x10_c01332{left:317.520000px;}
.x16_c01332{left:349.920000px;}
.x11_c01332{left:371.520000px;}
.xd_c01332{left:393.120000px;}
.xe_c01332{left:447.120000px;}
.x12_c01332{left:467.280000px;}
.x13_c01332{left:511.200000px;}
.x2f_c01332{left:596.160000px;}
.x27_c01332{left:598.320000px;}
.x23_c01332{left:599.760000px;}
.x31_c01332{left:608.400000px;}
.x2e_c01332{left:629.280000px;}
.x2b_c01332{left:630.720000px;}
.x20_c01332{left:632.160000px;}
.x30_c01332{left:661.680000px;}
.x28_c01332{left:663.840000px;}
.x21_c01332{left:665.280000px;}
.x2d_c01332{left:671.760000px;}
.x29_c01332{left:673.920000px;}
.x1f_c01332{left:682.560000px;}
.x2a_c01332{left:704.880000px;}
.x22_c01332{left:707.040000px;}
.x24_c01332{left:708.480000px;}
.x2c_c01332{left:726.480000px;}
.x25_c01332{left:727.920000px;}
.x26_c01332{left:771.840000px;}
@media print{
.v0_c01332{vertical-align:0.000000pt;}
.ls0_c01332{letter-spacing:0.000000pt;}
.ws0_c01332{word-spacing:0.000000pt;}
.fs10_c01332{font-size:23.040000pt;}
.fsf_c01332{font-size:28.160000pt;}
.fs6_c01332{font-size:30.720000pt;}
.fsa_c01332{font-size:38.400000pt;}
.fsd_c01332{font-size:40.960000pt;}
.fs7_c01332{font-size:43.520000pt;}
.fs1_c01332{font-size:46.080000pt;}
.fs9_c01332{font-size:48.640000pt;}
.fsb_c01332{font-size:51.200000pt;}
.fs3_c01332{font-size:53.760000pt;}
.fsc_c01332{font-size:56.320000pt;}
.fs4_c01332{font-size:58.880000pt;}
.fs0_c01332{font-size:61.440000pt;}
.fs11_c01332{font-size:64.000000pt;}
.fs5_c01332{font-size:66.560000pt;}
.fs2_c01332{font-size:69.120000pt;}
.fs8_c01332{font-size:71.680000pt;}
.fse_c01332{font-size:74.240000pt;}
.y0_c01332{bottom:0.000000pt;}
.y4c_c01332{bottom:60.800000pt;}
.y4a_c01332{bottom:62.720000pt;}
.y4b_c01332{bottom:63.360000pt;}
.y48_c01332{bottom:64.640000pt;}
.y49_c01332{bottom:65.280000pt;}
.y6d_c01332{bottom:65.920000pt;}
.y6e_c01332{bottom:67.840000pt;}
.y47_c01332{bottom:100.480000pt;}
.y45_c01332{bottom:103.040000pt;}
.y46_c01332{bottom:103.680000pt;}
.y6b_c01332{bottom:105.600000pt;}
.y6c_c01332{bottom:106.240000pt;}
.y44_c01332{bottom:139.520000pt;}
.y43_c01332{bottom:141.440000pt;}
.y42_c01332{bottom:142.080000pt;}
.y69_c01332{bottom:143.360000pt;}
.y6a_c01332{bottom:145.280000pt;}
.y41_c01332{bottom:176.640000pt;}
.y40_c01332{bottom:181.120000pt;}
.y68_c01332{bottom:181.760000pt;}
.y3f_c01332{bottom:216.320000pt;}
.y3e_c01332{bottom:217.600000pt;}
.y3c_c01332{bottom:218.240000pt;}
.y3d_c01332{bottom:218.880000pt;}
.y65_c01332{bottom:219.520000pt;}
.y66_c01332{bottom:220.160000pt;}
.y67_c01332{bottom:222.720000pt;}
.y3a_c01332{bottom:256.640000pt;}
.y3b_c01332{bottom:257.280000pt;}
.y39_c01332{bottom:302.080000pt;}
.y38_c01332{bottom:304.000000pt;}
.y63_c01332{bottom:304.640000pt;}
.y64_c01332{bottom:305.280000pt;}
.y34_c01332{bottom:340.480000pt;}
.y37_c01332{bottom:341.120000pt;}
.y35_c01332{bottom:341.760000pt;}
.y36_c01332{bottom:342.400000pt;}
.y33_c01332{bottom:343.040000pt;}
.y61_c01332{bottom:343.680000pt;}
.y62_c01332{bottom:344.960000pt;}
.y60_c01332{bottom:346.240000pt;}
.y31_c01332{bottom:378.880000pt;}
.y32_c01332{bottom:379.520000pt;}
.y5f_c01332{bottom:380.800000pt;}
.y30_c01332{bottom:381.440000pt;}
.y5e_c01332{bottom:382.080000pt;}
.y2d_c01332{bottom:417.920000pt;}
.y2e_c01332{bottom:418.560000pt;}
.y2f_c01332{bottom:419.200000pt;}
.y5c_c01332{bottom:419.840000pt;}
.y2c_c01332{bottom:420.480000pt;}
.y5b_c01332{bottom:422.400000pt;}
.y5d_c01332{bottom:423.040000pt;}
.y2a_c01332{bottom:456.320000pt;}
.y2b_c01332{bottom:456.960000pt;}
.y29_c01332{bottom:458.880000pt;}
.y25_c01332{bottom:494.720000pt;}
.y28_c01332{bottom:495.360000pt;}
.y27_c01332{bottom:496.640000pt;}
.y24_c01332{bottom:497.280000pt;}
.y26_c01332{bottom:497.920000pt;}
.y22_c01332{bottom:533.760000pt;}
.y5a_c01332{bottom:535.040000pt;}
.y59_c01332{bottom:535.680000pt;}
.y23_c01332{bottom:536.320000pt;}
.y21_c01332{bottom:536.960000pt;}
.y1b_c01332{bottom:571.520000pt;}
.y20_c01332{bottom:572.160000pt;}
.y1f_c01332{bottom:572.800000pt;}
.y1c_c01332{bottom:573.440000pt;}
.y1a_c01332{bottom:574.080000pt;}
.y1e_c01332{bottom:574.720000pt;}
.y1d_c01332{bottom:575.360000pt;}
.y58_c01332{bottom:576.000000pt;}
.y19_c01332{bottom:610.560000pt;}
.y56_c01332{bottom:611.840000pt;}
.y18_c01332{bottom:613.760000pt;}
.y57_c01332{bottom:614.400000pt;}
.y16_c01332{bottom:649.600000pt;}
.y55_c01332{bottom:650.240000pt;}
.y17_c01332{bottom:650.880000pt;}
.y14_c01332{bottom:651.520000pt;}
.y15_c01332{bottom:652.160000pt;}
.y13_c01332{bottom:687.360000pt;}
.y54_c01332{bottom:688.640000pt;}
.y12_c01332{bottom:689.920000pt;}
.y11_c01332{bottom:726.400000pt;}
.y10_c01332{bottom:727.680000pt;}
.y53_c01332{bottom:764.160000pt;}
.yf_c01332{bottom:764.800000pt;}
.ye_c01332{bottom:767.360000pt;}
.yd_c01332{bottom:802.560000pt;}
.yc_c01332{bottom:803.200000pt;}
.yb_c01332{bottom:804.480000pt;}
.ya_c01332{bottom:840.960000pt;}
.y8_c01332{bottom:841.600000pt;}
.y52_c01332{bottom:842.240000pt;}
.y51_c01332{bottom:843.520000pt;}
.y7_c01332{bottom:844.160000pt;}
.y9_c01332{bottom:844.800000pt;}
.y6_c01332{bottom:879.360000pt;}
.y50_c01332{bottom:880.640000pt;}
.y4_c01332{bottom:881.280000pt;}
.y5_c01332{bottom:883.200000pt;}
.y3_c01332{bottom:917.760000pt;}
.y4e_c01332{bottom:919.040000pt;}
.y1_c01332{bottom:919.680000pt;}
.y4f_c01332{bottom:920.320000pt;}
.y2_c01332{bottom:922.240000pt;}
.y4d_c01332{bottom:992.640000pt;}
.h12_c01332{height:20.733750pt;}
.h11_c01332{height:25.341250pt;}
.h8_c01332{height:27.645000pt;}
.hc_c01332{height:34.556250pt;}
.hf_c01332{height:36.860000pt;}
.h9_c01332{height:39.163750pt;}
.h3_c01332{height:41.467500pt;}
.hb_c01332{height:43.771250pt;}
.hd_c01332{height:46.075000pt;}
.h5_c01332{height:48.378750pt;}
.he_c01332{height:50.682500pt;}
.h6_c01332{height:52.986250pt;}
.h2_c01332{height:55.290000pt;}
.h13_c01332{height:57.593750pt;}
.h7_c01332{height:59.897500pt;}
.h4_c01332{height:62.201250pt;}
.ha_c01332{height:64.505000pt;}
.h10_c01332{height:66.808750pt;}
.h0_c01332{height:1024.640000pt;}
.h1_c01332{height:1024.666667pt;}
.w0_c01332{width:688.640000pt;}
.w1_c01332{width:688.666667pt;}
.x0_c01332{left:0.000000pt;}
.x1_c01332{left:44.160000pt;}
.x15_c01332{left:45.440000pt;}
.x1b_c01332{left:46.720000pt;}
.x8_c01332{left:72.320000pt;}
.x17_c01332{left:89.600000pt;}
.x7_c01332{left:98.560000pt;}
.x4_c01332{left:99.840000pt;}
.x2_c01332{left:101.120000pt;}
.x18_c01332{left:138.880000pt;}
.x3_c01332{left:157.440000pt;}
.x1d_c01332{left:167.040000pt;}
.x19_c01332{left:176.640000pt;}
.x1a_c01332{left:177.920000pt;}
.x5_c01332{left:186.240000pt;}
.xf_c01332{left:205.440000pt;}
.x9_c01332{left:215.040000pt;}
.x1c_c01332{left:216.320000pt;}
.x6_c01332{left:225.280000pt;}
.xb_c01332{left:234.880000pt;}
.x1e_c01332{left:245.760000pt;}
.x14_c01332{left:252.800000pt;}
.xa_c01332{left:263.680000pt;}
.xc_c01332{left:273.280000pt;}
.x10_c01332{left:282.240000pt;}
.x16_c01332{left:311.040000pt;}
.x11_c01332{left:330.240000pt;}
.xd_c01332{left:349.440000pt;}
.xe_c01332{left:397.440000pt;}
.x12_c01332{left:415.360000pt;}
.x13_c01332{left:454.400000pt;}
.x2f_c01332{left:529.920000pt;}
.x27_c01332{left:531.840000pt;}
.x23_c01332{left:533.120000pt;}
.x31_c01332{left:540.800000pt;}
.x2e_c01332{left:559.360000pt;}
.x2b_c01332{left:560.640000pt;}
.x20_c01332{left:561.920000pt;}
.x30_c01332{left:588.160000pt;}
.x28_c01332{left:590.080000pt;}
.x21_c01332{left:591.360000pt;}
.x2d_c01332{left:597.120000pt;}
.x29_c01332{left:599.040000pt;}
.x1f_c01332{left:606.720000pt;}
.x2a_c01332{left:626.560000pt;}
.x22_c01332{left:628.480000pt;}
.x24_c01332{left:629.760000pt;}
.x2c_c01332{left:645.760000pt;}
.x25_c01332{left:647.040000pt;}
.x26_c01332{left:686.080000pt;}
}





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

.ir_c01333:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01333{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01333;src:url('chunks/assets/font_77fcc56b45cb80d323bab6ec.woff2')format("woff");}.ff1_c01333{font-family:ff1_c01333;line-height:1.109863;font-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_c01333{transform:matrix(0.114200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114200,0.000000,0.000000,0.250000,0,0);}
.m3a_c01333{transform:matrix(0.153400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153400,0.000000,0.000000,0.250000,0,0);}
.m34_c01333{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m40_c01333{transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);}
.m4a_c01333{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01333{transform:matrix(0.195600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195600,0.000000,0.000000,0.250000,0,0);}
.m38_c01333{transform:matrix(0.195850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195850,0.000000,0.000000,0.250000,0,0);}
.m4b_c01333{transform:matrix(0.198150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198150,0.000000,0.000000,0.250000,0,0);}
.m3d_c01333{transform:matrix(0.217475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217475,0.000000,0.000000,0.250000,0,0);}
.m21_c01333{transform:matrix(0.223175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223175,0.000000,0.000000,0.250000,0,0);}
.m2c_c01333{transform:matrix(0.223425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223425,0.000000,0.000000,0.250000,0,0);}
.m27_c01333{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_c01333{transform:matrix(0.226900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226900,0.000000,0.000000,0.250000,0,0);}
.m46_c01333{transform:matrix(0.229075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229075,0.000000,0.000000,0.250000,0,0);}
.mc_c01333{transform:matrix(0.229725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229725,0.000000,0.000000,0.250000,0,0);}
.m7_c01333{transform:matrix(0.233650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233650,0.000000,0.000000,0.250000,0,0);}
.mf_c01333{transform:matrix(0.233800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233800,0.000000,0.000000,0.250000,0,0);}
.m10_c01333{transform:matrix(0.237150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237150,0.000000,0.000000,0.250000,0,0);}
.m3_c01333{transform:matrix(0.237300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237300,0.000000,0.000000,0.250000,0,0);}
.m1d_c01333{transform:matrix(0.237375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237375,0.000000,0.000000,0.250000,0,0);}
.m9_c01333{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01333{transform:matrix(0.238400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238400,0.000000,0.000000,0.250000,0,0);}
.m15_c01333{transform:matrix(0.241650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241650,0.000000,0.000000,0.250000,0,0);}
.mb_c01333{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m56_c01333{transform:matrix(0.244350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244350,0.000000,0.000000,0.250000,0,0);}
.m2_c01333{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);}
.m25_c01333{transform:matrix(0.247625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247625,0.000000,0.000000,0.250000,0,0);}
.m28_c01333{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.me_c01333{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m0_c01333{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m19_c01333{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.ma_c01333{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);}
.m31_c01333{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_c01333{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_c01333{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_c01333{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m16_c01333{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m30_c01333{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);}
.m2a_c01333{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m4_c01333{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01333{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m32_c01333{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m5_c01333{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);}
.m41_c01333{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m18_c01333{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m8_c01333{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01333{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m37_c01333{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01333{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m43_c01333{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m24_c01333{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m13_c01333{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01333{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01333{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01333{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m51_c01333{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01333{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01333{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);}
.m53_c01333{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);}
.m4e_c01333{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);}
.m2b_c01333{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m59_c01333{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m12_c01333{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);}
.m39_c01333{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m42_c01333{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);}
.m29_c01333{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m52_c01333{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);}
.m3b_c01333{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);}
.m57_c01333{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);}
.m36_c01333{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);}
.m45_c01333{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);}
.m35_c01333{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m20_c01333{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m54_c01333{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01333{transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);}
.m1_c01333{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m44_c01333{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);}
.m5a_c01333{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m58_c01333{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m48_c01333{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m47_c01333{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01333{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m33_c01333{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);}
.m26_c01333{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m55_c01333{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m11_c01333{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m50_c01333{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);}
.m49_c01333{transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);}
.m23_c01333{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m17_c01333{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);}
.m6_c01333{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.v1_c01333{vertical-align:-14.400000px;}
.v3_c01333{vertical-align:-2.880000px;}
.v0_c01333{vertical-align:0.000000px;}
.v2_c01333{vertical-align:2.880000px;}
.ls1_c01333{letter-spacing:0.000000px;}
.ls0_c01333{letter-spacing:44.211120px;}
.sc__c01333{text-shadow:none;}
.sc0_c01333{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01333{-webkit-text-stroke:0px transparent;}
.sc0_c01333{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01333{word-spacing:-0.633120px;}
.ws2_c01333{word-spacing:0.000000px;}
.ws0_c01333{word-spacing:4.224240px;}
.fc0_c01333{color:transparent;}
.fs6_c01333{font-size:25.920000px;}
.fsf_c01333{font-size:34.560000px;}
.fsc_c01333{font-size:37.440000px;}
.fse_c01333{font-size:43.200000px;}
.fs11_c01333{font-size:46.080000px;}
.fs13_c01333{font-size:48.960000px;}
.fsd_c01333{font-size:51.840000px;}
.fs1_c01333{font-size:54.720000px;}
.fsb_c01333{font-size:57.600000px;}
.fs3_c01333{font-size:60.480000px;}
.fs9_c01333{font-size:63.360000px;}
.fs8_c01333{font-size:66.240000px;}
.fs0_c01333{font-size:69.120000px;}
.fs5_c01333{font-size:72.000000px;}
.fs7_c01333{font-size:74.880000px;}
.fs4_c01333{font-size:77.760000px;}
.fs2_c01333{font-size:80.640000px;}
.fsa_c01333{font-size:83.520000px;}
.fs10_c01333{font-size:86.400000px;}
.fs12_c01333{font-size:109.440000px;}
.y0_c01333{bottom:0.000000px;}
.y74_c01333{bottom:81.360000px;}
.y64_c01333{bottom:82.800000px;}
.y62_c01333{bottom:83.520000px;}
.y75_c01333{bottom:84.240000px;}
.y63_c01333{bottom:85.680000px;}
.y71_c01333{bottom:124.560000px;}
.y72_c01333{bottom:125.280000px;}
.y5f_c01333{bottom:126.720000px;}
.y61_c01333{bottom:127.440000px;}
.y60_c01333{bottom:128.160000px;}
.y73_c01333{bottom:128.880000px;}
.y70_c01333{bottom:167.760000px;}
.y6f_c01333{bottom:168.480000px;}
.y5c_c01333{bottom:169.200000px;}
.y6e_c01333{bottom:170.640000px;}
.y5d_c01333{bottom:172.080000px;}
.y5e_c01333{bottom:172.800000px;}
.y6d_c01333{bottom:210.960000px;}
.y6c_c01333{bottom:211.680000px;}
.y6b_c01333{bottom:212.400000px;}
.y59_c01333{bottom:213.120000px;}
.y5b_c01333{bottom:214.560000px;}
.y5a_c01333{bottom:215.280000px;}
.y6a_c01333{bottom:254.160000px;}
.y56_c01333{bottom:254.880000px;}
.y69_c01333{bottom:255.600000px;}
.y57_c01333{bottom:257.040000px;}
.y68_c01333{bottom:257.760000px;}
.y58_c01333{bottom:259.200000px;}
.y67_c01333{bottom:290.160000px;}
.y65_c01333{bottom:297.360000px;}
.y66_c01333{bottom:298.800000px;}
.y53_c01333{bottom:300.240000px;}
.y54_c01333{bottom:300.960000px;}
.y55_c01333{bottom:301.680000px;}
.y2d_c01333{bottom:339.840000px;}
.y2f_c01333{bottom:340.560000px;}
.y2e_c01333{bottom:341.280000px;}
.y51_c01333{bottom:342.720000px;}
.y2b_c01333{bottom:344.160000px;}
.y2c_c01333{bottom:344.880000px;}
.y52_c01333{bottom:345.600000px;}
.y2a_c01333{bottom:383.040000px;}
.y29_c01333{bottom:386.640000px;}
.y50_c01333{bottom:388.800000px;}
.y28_c01333{bottom:427.680000px;}
.y4f_c01333{bottom:428.400000px;}
.y4e_c01333{bottom:429.120000px;}
.y27_c01333{bottom:431.280000px;}
.y25_c01333{bottom:470.880000px;}
.y4d_c01333{bottom:472.320000px;}
.y4c_c01333{bottom:473.040000px;}
.y24_c01333{bottom:473.760000px;}
.y26_c01333{bottom:474.480000px;}
.y4a_c01333{bottom:514.080000px;}
.y23_c01333{bottom:514.800000px;}
.y4b_c01333{bottom:515.520000px;}
.y21_c01333{bottom:516.960000px;}
.y22_c01333{bottom:517.680000px;}
.y49_c01333{bottom:518.400000px;}
.y20_c01333{bottom:557.280000px;}
.y1e_c01333{bottom:558.000000px;}
.y1d_c01333{bottom:559.440000px;}
.y48_c01333{bottom:560.160000px;}
.y1f_c01333{bottom:560.880000px;}
.y1c_c01333{bottom:599.760000px;}
.y46_c01333{bottom:600.480000px;}
.y45_c01333{bottom:601.200000px;}
.y1b_c01333{bottom:602.640000px;}
.y47_c01333{bottom:603.360000px;}
.y19_c01333{bottom:643.680000px;}
.y1a_c01333{bottom:644.400000px;}
.y43_c01333{bottom:645.120000px;}
.y44_c01333{bottom:645.840000px;}
.y18_c01333{bottom:646.560000px;}
.y17_c01333{bottom:686.880000px;}
.y16_c01333{bottom:687.600000px;}
.y15_c01333{bottom:689.040000px;}
.y42_c01333{bottom:729.360000px;}
.y41_c01333{bottom:730.080000px;}
.y14_c01333{bottom:730.800000px;}
.y13_c01333{bottom:732.960000px;}
.y40_c01333{bottom:771.840000px;}
.y3f_c01333{bottom:773.280000px;}
.y11_c01333{bottom:774.000000px;}
.y10_c01333{bottom:775.440000px;}
.y12_c01333{bottom:776.160000px;}
.y3d_c01333{bottom:815.760000px;}
.y3c_c01333{bottom:816.480000px;}
.yf_c01333{bottom:817.920000px;}
.ye_c01333{bottom:818.640000px;}
.y3e_c01333{bottom:822.240000px;}
.y3b_c01333{bottom:859.680000px;}
.yd_c01333{bottom:860.400000px;}
.y38_c01333{bottom:861.120000px;}
.y3a_c01333{bottom:902.160000px;}
.y39_c01333{bottom:903.600000px;}
.yc_c01333{bottom:904.320000px;}
.y9_c01333{bottom:905.040000px;}
.ya_c01333{bottom:906.480000px;}
.yb_c01333{bottom:907.200000px;}
.y37_c01333{bottom:945.360000px;}
.y36_c01333{bottom:946.080000px;}
.y8_c01333{bottom:946.800000px;}
.y6_c01333{bottom:947.520000px;}
.y7_c01333{bottom:954.000000px;}
.y34_c01333{bottom:988.560000px;}
.y35_c01333{bottom:989.280000px;}
.y4_c01333{bottom:990.720000px;}
.y5_c01333{bottom:994.320000px;}
.y32_c01333{bottom:1031.760000px;}
.y31_c01333{bottom:1032.480000px;}
.y33_c01333{bottom:1033.200000px;}
.y3_c01333{bottom:1033.920000px;}
.y1_c01333{bottom:1034.640000px;}
.y2_c01333{bottom:1038.240000px;}
.y30_c01333{bottom:1116.720000px;}
.h7_c01333{height:23.325469px;}
.h12_c01333{height:31.100625px;}
.hf_c01333{height:33.692344px;}
.h11_c01333{height:38.875781px;}
.h15_c01333{height:41.467500px;}
.h17_c01333{height:44.059219px;}
.h10_c01333{height:46.650937px;}
.h3_c01333{height:49.242656px;}
.he_c01333{height:51.834375px;}
.hd_c01333{height:54.426094px;}
.h5_c01333{height:55.576406px;}
.ha_c01333{height:57.017812px;}
.h9_c01333{height:59.609531px;}
.h2_c01333{height:62.201250px;}
.h14_c01333{height:64.504687px;}
.h6_c01333{height:64.792969px;}
.h8_c01333{height:67.384687px;}
.hb_c01333{height:69.976406px;}
.h4_c01333{height:72.568125px;}
.hc_c01333{height:75.159844px;}
.h13_c01333{height:77.751563px;}
.h16_c01333{height:98.485312px;}
.h0_c01333{height:1153.440000px;}
.h1_c01333{height:1153.500000px;}
.w0_c01333{width:776.880000px;}
.w1_c01333{width:777.000000px;}
.x0_c01333{left:0.000000px;}
.x4_c01333{left:49.680000px;}
.x1_c01333{left:51.840000px;}
.xd_c01333{left:79.920000px;}
.x5_c01333{left:91.440000px;}
.x10_c01333{left:109.440000px;}
.x9_c01333{left:111.600000px;}
.x2_c01333{left:113.040000px;}
.x7_c01333{left:136.080000px;}
.x8_c01333{left:146.160000px;}
.x3_c01333{left:190.080000px;}
.x37_c01333{left:195.840000px;}
.x15_c01333{left:197.280000px;}
.xe_c01333{left:198.720000px;}
.x14_c01333{left:207.360000px;}
.xc_c01333{left:231.120000px;}
.x3b_c01333{left:235.440000px;}
.x3c_c01333{left:250.560000px;}
.x38_c01333{left:252.000000px;}
.xa_c01333{left:262.800000px;}
.x13_c01333{left:274.320000px;}
.x34_c01333{left:304.560000px;}
.x3d_c01333{left:306.000000px;}
.xb_c01333{left:307.440000px;}
.x6_c01333{left:339.840000px;}
.x3e_c01333{left:349.200000px;}
.x39_c01333{left:358.560000px;}
.x16_c01333{left:369.360000px;}
.x11_c01333{left:382.320000px;}
.xf_c01333{left:393.120000px;}
.x3a_c01333{left:413.280000px;}
.x3f_c01333{left:433.440000px;}
.x12_c01333{left:434.880000px;}
.x35_c01333{left:477.360000px;}
.x40_c01333{left:498.240000px;}
.x36_c01333{left:529.200000px;}
.x41_c01333{left:551.520000px;}
.x2a_c01333{left:563.760000px;}
.x1f_c01333{left:568.080000px;}
.x2e_c01333{left:573.120000px;}
.x2b_c01333{left:575.280000px;}
.x20_c01333{left:576.720000px;}
.x1d_c01333{left:578.880000px;}
.x2f_c01333{left:596.160000px;}
.x1e_c01333{left:599.040000px;}
.x30_c01333{left:627.120000px;}
.x28_c01333{left:629.280000px;}
.x21_c01333{left:630.720000px;}
.x1c_c01333{left:632.880000px;}
.x18_c01333{left:634.320000px;}
.x2c_c01333{left:660.960000px;}
.x29_c01333{left:662.400000px;}
.x23_c01333{left:663.840000px;}
.x19_c01333{left:665.280000px;}
.x17_c01333{left:683.280000px;}
.x33_c01333{left:691.920000px;}
.x31_c01333{left:693.360000px;}
.x22_c01333{left:697.680000px;}
.x2d_c01333{left:703.440000px;}
.x27_c01333{left:704.880000px;}
.x24_c01333{left:707.040000px;}
.x1a_c01333{left:708.480000px;}
.x32_c01333{left:722.160000px;}
.x25_c01333{left:727.200000px;}
.x1b_c01333{left:729.360000px;}
.x26_c01333{left:771.120000px;}
@media print{
.v1_c01333{vertical-align:-12.800000pt;}
.v3_c01333{vertical-align:-2.560000pt;}
.v0_c01333{vertical-align:0.000000pt;}
.v2_c01333{vertical-align:2.560000pt;}
.ls1_c01333{letter-spacing:0.000000pt;}
.ls0_c01333{letter-spacing:39.298773pt;}
.ws1_c01333{word-spacing:-0.562773pt;}
.ws2_c01333{word-spacing:0.000000pt;}
.ws0_c01333{word-spacing:3.754880pt;}
.fs6_c01333{font-size:23.040000pt;}
.fsf_c01333{font-size:30.720000pt;}
.fsc_c01333{font-size:33.280000pt;}
.fse_c01333{font-size:38.400000pt;}
.fs11_c01333{font-size:40.960000pt;}
.fs13_c01333{font-size:43.520000pt;}
.fsd_c01333{font-size:46.080000pt;}
.fs1_c01333{font-size:48.640000pt;}
.fsb_c01333{font-size:51.200000pt;}
.fs3_c01333{font-size:53.760000pt;}
.fs9_c01333{font-size:56.320000pt;}
.fs8_c01333{font-size:58.880000pt;}
.fs0_c01333{font-size:61.440000pt;}
.fs5_c01333{font-size:64.000000pt;}
.fs7_c01333{font-size:66.560000pt;}
.fs4_c01333{font-size:69.120000pt;}
.fs2_c01333{font-size:71.680000pt;}
.fsa_c01333{font-size:74.240000pt;}
.fs10_c01333{font-size:76.800000pt;}
.fs12_c01333{font-size:97.280000pt;}
.y0_c01333{bottom:0.000000pt;}
.y74_c01333{bottom:72.320000pt;}
.y64_c01333{bottom:73.600000pt;}
.y62_c01333{bottom:74.240000pt;}
.y75_c01333{bottom:74.880000pt;}
.y63_c01333{bottom:76.160000pt;}
.y71_c01333{bottom:110.720000pt;}
.y72_c01333{bottom:111.360000pt;}
.y5f_c01333{bottom:112.640000pt;}
.y61_c01333{bottom:113.280000pt;}
.y60_c01333{bottom:113.920000pt;}
.y73_c01333{bottom:114.560000pt;}
.y70_c01333{bottom:149.120000pt;}
.y6f_c01333{bottom:149.760000pt;}
.y5c_c01333{bottom:150.400000pt;}
.y6e_c01333{bottom:151.680000pt;}
.y5d_c01333{bottom:152.960000pt;}
.y5e_c01333{bottom:153.600000pt;}
.y6d_c01333{bottom:187.520000pt;}
.y6c_c01333{bottom:188.160000pt;}
.y6b_c01333{bottom:188.800000pt;}
.y59_c01333{bottom:189.440000pt;}
.y5b_c01333{bottom:190.720000pt;}
.y5a_c01333{bottom:191.360000pt;}
.y6a_c01333{bottom:225.920000pt;}
.y56_c01333{bottom:226.560000pt;}
.y69_c01333{bottom:227.200000pt;}
.y57_c01333{bottom:228.480000pt;}
.y68_c01333{bottom:229.120000pt;}
.y58_c01333{bottom:230.400000pt;}
.y67_c01333{bottom:257.920000pt;}
.y65_c01333{bottom:264.320000pt;}
.y66_c01333{bottom:265.600000pt;}
.y53_c01333{bottom:266.880000pt;}
.y54_c01333{bottom:267.520000pt;}
.y55_c01333{bottom:268.160000pt;}
.y2d_c01333{bottom:302.080000pt;}
.y2f_c01333{bottom:302.720000pt;}
.y2e_c01333{bottom:303.360000pt;}
.y51_c01333{bottom:304.640000pt;}
.y2b_c01333{bottom:305.920000pt;}
.y2c_c01333{bottom:306.560000pt;}
.y52_c01333{bottom:307.200000pt;}
.y2a_c01333{bottom:340.480000pt;}
.y29_c01333{bottom:343.680000pt;}
.y50_c01333{bottom:345.600000pt;}
.y28_c01333{bottom:380.160000pt;}
.y4f_c01333{bottom:380.800000pt;}
.y4e_c01333{bottom:381.440000pt;}
.y27_c01333{bottom:383.360000pt;}
.y25_c01333{bottom:418.560000pt;}
.y4d_c01333{bottom:419.840000pt;}
.y4c_c01333{bottom:420.480000pt;}
.y24_c01333{bottom:421.120000pt;}
.y26_c01333{bottom:421.760000pt;}
.y4a_c01333{bottom:456.960000pt;}
.y23_c01333{bottom:457.600000pt;}
.y4b_c01333{bottom:458.240000pt;}
.y21_c01333{bottom:459.520000pt;}
.y22_c01333{bottom:460.160000pt;}
.y49_c01333{bottom:460.800000pt;}
.y20_c01333{bottom:495.360000pt;}
.y1e_c01333{bottom:496.000000pt;}
.y1d_c01333{bottom:497.280000pt;}
.y48_c01333{bottom:497.920000pt;}
.y1f_c01333{bottom:498.560000pt;}
.y1c_c01333{bottom:533.120000pt;}
.y46_c01333{bottom:533.760000pt;}
.y45_c01333{bottom:534.400000pt;}
.y1b_c01333{bottom:535.680000pt;}
.y47_c01333{bottom:536.320000pt;}
.y19_c01333{bottom:572.160000pt;}
.y1a_c01333{bottom:572.800000pt;}
.y43_c01333{bottom:573.440000pt;}
.y44_c01333{bottom:574.080000pt;}
.y18_c01333{bottom:574.720000pt;}
.y17_c01333{bottom:610.560000pt;}
.y16_c01333{bottom:611.200000pt;}
.y15_c01333{bottom:612.480000pt;}
.y42_c01333{bottom:648.320000pt;}
.y41_c01333{bottom:648.960000pt;}
.y14_c01333{bottom:649.600000pt;}
.y13_c01333{bottom:651.520000pt;}
.y40_c01333{bottom:686.080000pt;}
.y3f_c01333{bottom:687.360000pt;}
.y11_c01333{bottom:688.000000pt;}
.y10_c01333{bottom:689.280000pt;}
.y12_c01333{bottom:689.920000pt;}
.y3d_c01333{bottom:725.120000pt;}
.y3c_c01333{bottom:725.760000pt;}
.yf_c01333{bottom:727.040000pt;}
.ye_c01333{bottom:727.680000pt;}
.y3e_c01333{bottom:730.880000pt;}
.y3b_c01333{bottom:764.160000pt;}
.yd_c01333{bottom:764.800000pt;}
.y38_c01333{bottom:765.440000pt;}
.y3a_c01333{bottom:801.920000pt;}
.y39_c01333{bottom:803.200000pt;}
.yc_c01333{bottom:803.840000pt;}
.y9_c01333{bottom:804.480000pt;}
.ya_c01333{bottom:805.760000pt;}
.yb_c01333{bottom:806.400000pt;}
.y37_c01333{bottom:840.320000pt;}
.y36_c01333{bottom:840.960000pt;}
.y8_c01333{bottom:841.600000pt;}
.y6_c01333{bottom:842.240000pt;}
.y7_c01333{bottom:848.000000pt;}
.y34_c01333{bottom:878.720000pt;}
.y35_c01333{bottom:879.360000pt;}
.y4_c01333{bottom:880.640000pt;}
.y5_c01333{bottom:883.840000pt;}
.y32_c01333{bottom:917.120000pt;}
.y31_c01333{bottom:917.760000pt;}
.y33_c01333{bottom:918.400000pt;}
.y3_c01333{bottom:919.040000pt;}
.y1_c01333{bottom:919.680000pt;}
.y2_c01333{bottom:922.880000pt;}
.y30_c01333{bottom:992.640000pt;}
.h7_c01333{height:20.733750pt;}
.h12_c01333{height:27.645000pt;}
.hf_c01333{height:29.948750pt;}
.h11_c01333{height:34.556250pt;}
.h15_c01333{height:36.860000pt;}
.h17_c01333{height:39.163750pt;}
.h10_c01333{height:41.467500pt;}
.h3_c01333{height:43.771250pt;}
.he_c01333{height:46.075000pt;}
.hd_c01333{height:48.378750pt;}
.h5_c01333{height:49.401250pt;}
.ha_c01333{height:50.682500pt;}
.h9_c01333{height:52.986250pt;}
.h2_c01333{height:55.290000pt;}
.h14_c01333{height:57.337500pt;}
.h6_c01333{height:57.593750pt;}
.h8_c01333{height:59.897500pt;}
.hb_c01333{height:62.201250pt;}
.h4_c01333{height:64.505000pt;}
.hc_c01333{height:66.808750pt;}
.h13_c01333{height:69.112500pt;}
.h16_c01333{height:87.542500pt;}
.h0_c01333{height:1025.280000pt;}
.h1_c01333{height:1025.333333pt;}
.w0_c01333{width:690.560000pt;}
.w1_c01333{width:690.666667pt;}
.x0_c01333{left:0.000000pt;}
.x4_c01333{left:44.160000pt;}
.x1_c01333{left:46.080000pt;}
.xd_c01333{left:71.040000pt;}
.x5_c01333{left:81.280000pt;}
.x10_c01333{left:97.280000pt;}
.x9_c01333{left:99.200000pt;}
.x2_c01333{left:100.480000pt;}
.x7_c01333{left:120.960000pt;}
.x8_c01333{left:129.920000pt;}
.x3_c01333{left:168.960000pt;}
.x37_c01333{left:174.080000pt;}
.x15_c01333{left:175.360000pt;}
.xe_c01333{left:176.640000pt;}
.x14_c01333{left:184.320000pt;}
.xc_c01333{left:205.440000pt;}
.x3b_c01333{left:209.280000pt;}
.x3c_c01333{left:222.720000pt;}
.x38_c01333{left:224.000000pt;}
.xa_c01333{left:233.600000pt;}
.x13_c01333{left:243.840000pt;}
.x34_c01333{left:270.720000pt;}
.x3d_c01333{left:272.000000pt;}
.xb_c01333{left:273.280000pt;}
.x6_c01333{left:302.080000pt;}
.x3e_c01333{left:310.400000pt;}
.x39_c01333{left:318.720000pt;}
.x16_c01333{left:328.320000pt;}
.x11_c01333{left:339.840000pt;}
.xf_c01333{left:349.440000pt;}
.x3a_c01333{left:367.360000pt;}
.x3f_c01333{left:385.280000pt;}
.x12_c01333{left:386.560000pt;}
.x35_c01333{left:424.320000pt;}
.x40_c01333{left:442.880000pt;}
.x36_c01333{left:470.400000pt;}
.x41_c01333{left:490.240000pt;}
.x2a_c01333{left:501.120000pt;}
.x1f_c01333{left:504.960000pt;}
.x2e_c01333{left:509.440000pt;}
.x2b_c01333{left:511.360000pt;}
.x20_c01333{left:512.640000pt;}
.x1d_c01333{left:514.560000pt;}
.x2f_c01333{left:529.920000pt;}
.x1e_c01333{left:532.480000pt;}
.x30_c01333{left:557.440000pt;}
.x28_c01333{left:559.360000pt;}
.x21_c01333{left:560.640000pt;}
.x1c_c01333{left:562.560000pt;}
.x18_c01333{left:563.840000pt;}
.x2c_c01333{left:587.520000pt;}
.x29_c01333{left:588.800000pt;}
.x23_c01333{left:590.080000pt;}
.x19_c01333{left:591.360000pt;}
.x17_c01333{left:607.360000pt;}
.x33_c01333{left:615.040000pt;}
.x31_c01333{left:616.320000pt;}
.x22_c01333{left:620.160000pt;}
.x2d_c01333{left:625.280000pt;}
.x27_c01333{left:626.560000pt;}
.x24_c01333{left:628.480000pt;}
.x1a_c01333{left:629.760000pt;}
.x32_c01333{left:641.920000pt;}
.x25_c01333{left:646.400000pt;}
.x1b_c01333{left:648.320000pt;}
.x26_c01333{left:685.440000pt;}
}





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

.ir_c01334:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01334{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01334;src:url('chunks/assets/font_3b8ee4dec44c1fae1b71aa2d.woff2')format("woff");}.ff1_c01334{font-family:ff1_c01334;line-height:1.109863;font-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_c01334{transform:matrix(0.163775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163775,0.000000,0.000000,0.250000,0,0);}
.m3b_c01334{transform:matrix(0.185800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185800,0.000000,0.000000,0.250000,0,0);}
.m11_c01334{transform:matrix(0.207325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207325,0.000000,0.000000,0.250000,0,0);}
.m4a_c01334{transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);}
.m56_c01334{transform:matrix(0.211650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211650,0.000000,0.000000,0.250000,0,0);}
.m4d_c01334{transform:matrix(0.213300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213300,0.000000,0.000000,0.250000,0,0);}
.m1d_c01334{transform:matrix(0.215850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215850,0.000000,0.000000,0.250000,0,0);}
.m57_c01334{transform:matrix(0.220625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220625,0.000000,0.000000,0.250000,0,0);}
.m54_c01334{transform:matrix(0.221325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221325,0.000000,0.000000,0.250000,0,0);}
.m3d_c01334{transform:matrix(0.221800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221800,0.000000,0.000000,0.250000,0,0);}
.m2e_c01334{transform:matrix(0.222800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222800,0.000000,0.000000,0.250000,0,0);}
.m21_c01334{transform:matrix(0.225325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225325,0.000000,0.000000,0.250000,0,0);}
.m50_c01334{transform:matrix(0.229550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229550,0.000000,0.000000,0.250000,0,0);}
.m1a_c01334{transform:matrix(0.230350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230350,0.000000,0.000000,0.250000,0,0);}
.mc_c01334{transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);}
.m1f_c01334{transform:matrix(0.232650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232650,0.000000,0.000000,0.250000,0,0);}
.m43_c01334{transform:matrix(0.233800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233800,0.000000,0.000000,0.250000,0,0);}
.m3_c01334{transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);}
.m45_c01334{transform:matrix(0.235575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235575,0.000000,0.000000,0.250000,0,0);}
.m5a_c01334{transform:matrix(0.236200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236200,0.000000,0.000000,0.250000,0,0);}
.m2d_c01334{transform:matrix(0.237300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237300,0.000000,0.000000,0.250000,0,0);}
.m14_c01334{transform:matrix(0.242725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242725,0.000000,0.000000,0.250000,0,0);}
.m5c_c01334{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01334{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m27_c01334{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m18_c01334{transform:matrix(0.249575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249575,0.000000,0.000000,0.250000,0,0);}
.m16_c01334{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01334{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);}
.m33_c01334{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_c01334{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);}
.m31_c01334{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m9_c01334{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m7_c01334{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);}
.m28_c01334{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);}
.m30_c01334{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m6_c01334{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m5_c01334{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01334{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m32_c01334{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);}
.m41_c01334{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);}
.m38_c01334{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1_c01334{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.md_c01334{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m36_c01334{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m39_c01334{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01334{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mf_c01334{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m37_c01334{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m29_c01334{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01334{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m17_c01334{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m19_c01334{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m25_c01334{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m48_c01334{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m20_c01334{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mb_c01334{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m52_c01334{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m10_c01334{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01334{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);}
.m35_c01334{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m13_c01334{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);}
.m42_c01334{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m0_c01334{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);}
.m4b_c01334{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m5b_c01334{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m15_c01334{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);}
.m51_c01334{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);}
.m2a_c01334{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01334{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01334{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m49_c01334{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01334{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m24_c01334{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);}
.m3a_c01334{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m26_c01334{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01334{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m47_c01334{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01334{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01334{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m58_c01334{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m22_c01334{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m40_c01334{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m34_c01334{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01334{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m55_c01334{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m23_c01334{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m46_c01334{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m12_c01334{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);}
.m44_c01334{transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);}
.m4_c01334{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.m8_c01334{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m59_c01334{transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);}
.m53_c01334{transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);}
.m4f_c01334{transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);}
.v0_c01334{vertical-align:0.000000px;}
.ls0_c01334{letter-spacing:0.000000px;}
.sc__c01334{text-shadow:none;}
.sc0_c01334{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01334{-webkit-text-stroke:0px transparent;}
.sc0_c01334{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01334{word-spacing:0.000000px;}
.ws0_c01334{word-spacing:5.216400px;}
.fc0_c01334{color:transparent;}
.fs12_c01334{font-size:17.280000px;}
.fs13_c01334{font-size:23.040000px;}
.fs11_c01334{font-size:28.800000px;}
.fse_c01334{font-size:34.560000px;}
.fsa_c01334{font-size:37.440000px;}
.fsf_c01334{font-size:43.200000px;}
.fs10_c01334{font-size:46.080000px;}
.fs6_c01334{font-size:51.840000px;}
.fs5_c01334{font-size:54.720000px;}
.fs8_c01334{font-size:57.600000px;}
.fs1_c01334{font-size:60.480000px;}
.fs4_c01334{font-size:63.360000px;}
.fs3_c01334{font-size:66.240000px;}
.fs2_c01334{font-size:69.120000px;}
.fs7_c01334{font-size:72.000000px;}
.fs0_c01334{font-size:74.880000px;}
.fsc_c01334{font-size:77.760000px;}
.fsd_c01334{font-size:80.640000px;}
.fsb_c01334{font-size:83.520000px;}
.fs9_c01334{font-size:89.280000px;}
.y0_c01334{bottom:0.000000px;}
.y65_c01334{bottom:37.440000px;}
.y66_c01334{bottom:38.160000px;}
.y64_c01334{bottom:41.040000px;}
.y6a_c01334{bottom:44.640000px;}
.y6b_c01334{bottom:45.360000px;}
.y60_c01334{bottom:79.920000px;}
.y63_c01334{bottom:82.800000px;}
.y61_c01334{bottom:83.520000px;}
.y62_c01334{bottom:84.240000px;}
.y5f_c01334{bottom:84.960000px;}
.y69_c01334{bottom:85.680000px;}
.y5c_c01334{bottom:123.120000px;}
.y5e_c01334{bottom:125.280000px;}
.y5a_c01334{bottom:126.720000px;}
.y5d_c01334{bottom:127.440000px;}
.y5b_c01334{bottom:130.320000px;}
.y68_c01334{bottom:131.040000px;}
.y67_c01334{bottom:131.760000px;}
.y58_c01334{bottom:167.040000px;}
.y59_c01334{bottom:167.760000px;}
.y55_c01334{bottom:169.200000px;}
.y56_c01334{bottom:171.360000px;}
.y57_c01334{bottom:174.960000px;}
.y54_c01334{bottom:215.280000px;}
.y4e_c01334{bottom:307.440000px;}
.y51_c01334{bottom:308.880000px;}
.y4d_c01334{bottom:309.600000px;}
.y4f_c01334{bottom:310.320000px;}
.y50_c01334{bottom:311.760000px;}
.y53_c01334{bottom:313.920000px;}
.y52_c01334{bottom:315.360000px;}
.y4a_c01334{bottom:350.640000px;}
.y4b_c01334{bottom:351.360000px;}
.y49_c01334{bottom:353.520000px;}
.y4c_c01334{bottom:355.680000px;}
.y47_c01334{bottom:356.400000px;}
.y48_c01334{bottom:359.280000px;}
.y41_c01334{bottom:396.000000px;}
.y44_c01334{bottom:396.720000px;}
.y42_c01334{bottom:397.440000px;}
.y43_c01334{bottom:398.880000px;}
.y45_c01334{bottom:399.600000px;}
.y46_c01334{bottom:401.760000px;}
.y34_c01334{bottom:438.480000px;}
.y32_c01334{bottom:470.880000px;}
.y30_c01334{bottom:471.600000px;}
.y31_c01334{bottom:473.760000px;}
.y33_c01334{bottom:474.480000px;}
.y3e_c01334{bottom:475.200000px;}
.y40_c01334{bottom:475.920000px;}
.y3f_c01334{bottom:476.640000px;}
.y2f_c01334{bottom:514.080000px;}
.y2e_c01334{bottom:515.520000px;}
.y3c_c01334{bottom:517.680000px;}
.y3b_c01334{bottom:519.120000px;}
.y3d_c01334{bottom:520.560000px;}
.y2d_c01334{bottom:557.280000px;}
.y2c_c01334{bottom:558.720000px;}
.y39_c01334{bottom:560.160000px;}
.y38_c01334{bottom:560.880000px;}
.y3a_c01334{bottom:561.600000px;}
.y2a_c01334{bottom:601.200000px;}
.y29_c01334{bottom:601.920000px;}
.y37_c01334{bottom:603.360000px;}
.y35_c01334{bottom:604.080000px;}
.y2b_c01334{bottom:604.800000px;}
.y36_c01334{bottom:605.520000px;}
.y26_c01334{bottom:645.840000px;}
.y27_c01334{bottom:646.560000px;}
.y28_c01334{bottom:648.720000px;}
.y23_c01334{bottom:701.280000px;}
.y24_c01334{bottom:702.000000px;}
.y25_c01334{bottom:702.720000px;}
.y22_c01334{bottom:742.320000px;}
.y21_c01334{bottom:745.920000px;}
.y1c_c01334{bottom:774.720000px;}
.y20_c01334{bottom:775.440000px;}
.y1f_c01334{bottom:776.160000px;}
.y1e_c01334{bottom:776.880000px;}
.y1d_c01334{bottom:778.320000px;}
.y1a_c01334{bottom:817.200000px;}
.y1b_c01334{bottom:817.920000px;}
.y19_c01334{bottom:818.640000px;}
.yf_c01334{bottom:819.360000px;}
.y10_c01334{bottom:820.800000px;}
.y18_c01334{bottom:860.400000px;}
.y17_c01334{bottom:861.120000px;}
.yd_c01334{bottom:861.840000px;}
.ye_c01334{bottom:862.560000px;}
.y16_c01334{bottom:903.600000px;}
.yb_c01334{bottom:904.320000px;}
.yc_c01334{bottom:905.040000px;}
.y14_c01334{bottom:946.080000px;}
.y15_c01334{bottom:946.800000px;}
.y9_c01334{bottom:948.240000px;}
.ya_c01334{bottom:950.400000px;}
.y13_c01334{bottom:989.280000px;}
.y7_c01334{bottom:990.720000px;}
.y6_c01334{bottom:991.440000px;}
.y11_c01334{bottom:992.160000px;}
.y8_c01334{bottom:992.880000px;}
.y12_c01334{bottom:993.600000px;}
.y3_c01334{bottom:1032.480000px;}
.y4_c01334{bottom:1033.920000px;}
.y2_c01334{bottom:1034.640000px;}
.y5_c01334{bottom:1036.800000px;}
.y1_c01334{bottom:1108.080000px;}
.h14_c01334{height:15.550313px;}
.h15_c01334{height:20.733750px;}
.h13_c01334{height:25.917187px;}
.h10_c01334{height:31.100625px;}
.hc_c01334{height:33.692344px;}
.h11_c01334{height:38.875781px;}
.h12_c01334{height:41.467500px;}
.h8_c01334{height:46.650937px;}
.h7_c01334{height:49.242656px;}
.ha_c01334{height:51.834375px;}
.h3_c01334{height:54.426094px;}
.h6_c01334{height:57.017812px;}
.h5_c01334{height:59.609531px;}
.h4_c01334{height:62.201250px;}
.h9_c01334{height:64.792969px;}
.h2_c01334{height:67.384687px;}
.he_c01334{height:69.976406px;}
.hf_c01334{height:72.568125px;}
.hd_c01334{height:75.159844px;}
.hb_c01334{height:80.343281px;}
.h0_c01334{height:1153.440000px;}
.h1_c01334{height:1153.500000px;}
.w0_c01334{width:776.880000px;}
.w1_c01334{width:777.000000px;}
.x0_c01334{left:0.000000px;}
.xb_c01334{left:43.920000px;}
.x11_c01334{left:50.400000px;}
.x24_c01334{left:51.840000px;}
.x34_c01334{left:53.280000px;}
.xc_c01334{left:81.360000px;}
.x35_c01334{left:90.720000px;}
.x1d_c01334{left:101.520000px;}
.x12_c01334{left:110.880000px;}
.xd_c01334{left:113.040000px;}
.x1e_c01334{left:135.360000px;}
.x14_c01334{left:156.240000px;}
.x1f_c01334{left:176.400000px;}
.xe_c01334{left:177.840000px;}
.x20_c01334{left:187.920000px;}
.x2e_c01334{left:198.720000px;}
.x13_c01334{left:209.520000px;}
.x3a_c01334{left:211.680000px;}
.x21_c01334{left:231.840000px;}
.x22_c01334{left:241.920000px;}
.x37_c01334{left:243.360000px;}
.x27_c01334{left:252.720000px;}
.x36_c01334{left:254.880000px;}
.x15_c01334{left:275.760000px;}
.x23_c01334{left:295.920000px;}
.xf_c01334{left:298.080000px;}
.x2f_c01334{left:306.720000px;}
.x16_c01334{left:317.520000px;}
.x38_c01334{left:318.960000px;}
.x25_c01334{left:339.120000px;}
.x18_c01334{left:349.920000px;}
.x33_c01334{left:360.720000px;}
.x17_c01334{left:372.240000px;}
.x10_c01334{left:393.840000px;}
.x19_c01334{left:402.480000px;}
.x26_c01334{left:435.600000px;}
.x1a_c01334{left:447.120000px;}
.x39_c01334{left:459.360000px;}
.x1b_c01334{left:533.520000px;}
.x2c_c01334{left:555.120000px;}
.x28_c01334{left:575.280000px;}
.x9_c01334{left:576.720000px;}
.x2b_c01334{left:597.600000px;}
.x8_c01334{left:599.040000px;}
.x30_c01334{left:629.280000px;}
.x2_c01334{left:631.440000px;}
.x6_c01334{left:632.880000px;}
.x31_c01334{left:662.400000px;}
.x7_c01334{left:663.840000px;}
.x3_c01334{left:665.280000px;}
.x32_c01334{left:671.760000px;}
.xa_c01334{left:674.640000px;}
.x1_c01334{left:681.120000px;}
.x2d_c01334{left:695.520000px;}
.x29_c01334{left:704.880000px;}
.x1c_c01334{left:706.320000px;}
.x4_c01334{left:707.760000px;}
.x2a_c01334{left:725.760000px;}
.x5_c01334{left:727.920000px;}
@media print{
.v0_c01334{vertical-align:0.000000pt;}
.ls0_c01334{letter-spacing:0.000000pt;}
.ws1_c01334{word-spacing:0.000000pt;}
.ws0_c01334{word-spacing:4.636800pt;}
.fs12_c01334{font-size:15.360000pt;}
.fs13_c01334{font-size:20.480000pt;}
.fs11_c01334{font-size:25.600000pt;}
.fse_c01334{font-size:30.720000pt;}
.fsa_c01334{font-size:33.280000pt;}
.fsf_c01334{font-size:38.400000pt;}
.fs10_c01334{font-size:40.960000pt;}
.fs6_c01334{font-size:46.080000pt;}
.fs5_c01334{font-size:48.640000pt;}
.fs8_c01334{font-size:51.200000pt;}
.fs1_c01334{font-size:53.760000pt;}
.fs4_c01334{font-size:56.320000pt;}
.fs3_c01334{font-size:58.880000pt;}
.fs2_c01334{font-size:61.440000pt;}
.fs7_c01334{font-size:64.000000pt;}
.fs0_c01334{font-size:66.560000pt;}
.fsc_c01334{font-size:69.120000pt;}
.fsd_c01334{font-size:71.680000pt;}
.fsb_c01334{font-size:74.240000pt;}
.fs9_c01334{font-size:79.360000pt;}
.y0_c01334{bottom:0.000000pt;}
.y65_c01334{bottom:33.280000pt;}
.y66_c01334{bottom:33.920000pt;}
.y64_c01334{bottom:36.480000pt;}
.y6a_c01334{bottom:39.680000pt;}
.y6b_c01334{bottom:40.320000pt;}
.y60_c01334{bottom:71.040000pt;}
.y63_c01334{bottom:73.600000pt;}
.y61_c01334{bottom:74.240000pt;}
.y62_c01334{bottom:74.880000pt;}
.y5f_c01334{bottom:75.520000pt;}
.y69_c01334{bottom:76.160000pt;}
.y5c_c01334{bottom:109.440000pt;}
.y5e_c01334{bottom:111.360000pt;}
.y5a_c01334{bottom:112.640000pt;}
.y5d_c01334{bottom:113.280000pt;}
.y5b_c01334{bottom:115.840000pt;}
.y68_c01334{bottom:116.480000pt;}
.y67_c01334{bottom:117.120000pt;}
.y58_c01334{bottom:148.480000pt;}
.y59_c01334{bottom:149.120000pt;}
.y55_c01334{bottom:150.400000pt;}
.y56_c01334{bottom:152.320000pt;}
.y57_c01334{bottom:155.520000pt;}
.y54_c01334{bottom:191.360000pt;}
.y4e_c01334{bottom:273.280000pt;}
.y51_c01334{bottom:274.560000pt;}
.y4d_c01334{bottom:275.200000pt;}
.y4f_c01334{bottom:275.840000pt;}
.y50_c01334{bottom:277.120000pt;}
.y53_c01334{bottom:279.040000pt;}
.y52_c01334{bottom:280.320000pt;}
.y4a_c01334{bottom:311.680000pt;}
.y4b_c01334{bottom:312.320000pt;}
.y49_c01334{bottom:314.240000pt;}
.y4c_c01334{bottom:316.160000pt;}
.y47_c01334{bottom:316.800000pt;}
.y48_c01334{bottom:319.360000pt;}
.y41_c01334{bottom:352.000000pt;}
.y44_c01334{bottom:352.640000pt;}
.y42_c01334{bottom:353.280000pt;}
.y43_c01334{bottom:354.560000pt;}
.y45_c01334{bottom:355.200000pt;}
.y46_c01334{bottom:357.120000pt;}
.y34_c01334{bottom:389.760000pt;}
.y32_c01334{bottom:418.560000pt;}
.y30_c01334{bottom:419.200000pt;}
.y31_c01334{bottom:421.120000pt;}
.y33_c01334{bottom:421.760000pt;}
.y3e_c01334{bottom:422.400000pt;}
.y40_c01334{bottom:423.040000pt;}
.y3f_c01334{bottom:423.680000pt;}
.y2f_c01334{bottom:456.960000pt;}
.y2e_c01334{bottom:458.240000pt;}
.y3c_c01334{bottom:460.160000pt;}
.y3b_c01334{bottom:461.440000pt;}
.y3d_c01334{bottom:462.720000pt;}
.y2d_c01334{bottom:495.360000pt;}
.y2c_c01334{bottom:496.640000pt;}
.y39_c01334{bottom:497.920000pt;}
.y38_c01334{bottom:498.560000pt;}
.y3a_c01334{bottom:499.200000pt;}
.y2a_c01334{bottom:534.400000pt;}
.y29_c01334{bottom:535.040000pt;}
.y37_c01334{bottom:536.320000pt;}
.y35_c01334{bottom:536.960000pt;}
.y2b_c01334{bottom:537.600000pt;}
.y36_c01334{bottom:538.240000pt;}
.y26_c01334{bottom:574.080000pt;}
.y27_c01334{bottom:574.720000pt;}
.y28_c01334{bottom:576.640000pt;}
.y23_c01334{bottom:623.360000pt;}
.y24_c01334{bottom:624.000000pt;}
.y25_c01334{bottom:624.640000pt;}
.y22_c01334{bottom:659.840000pt;}
.y21_c01334{bottom:663.040000pt;}
.y1c_c01334{bottom:688.640000pt;}
.y20_c01334{bottom:689.280000pt;}
.y1f_c01334{bottom:689.920000pt;}
.y1e_c01334{bottom:690.560000pt;}
.y1d_c01334{bottom:691.840000pt;}
.y1a_c01334{bottom:726.400000pt;}
.y1b_c01334{bottom:727.040000pt;}
.y19_c01334{bottom:727.680000pt;}
.yf_c01334{bottom:728.320000pt;}
.y10_c01334{bottom:729.600000pt;}
.y18_c01334{bottom:764.800000pt;}
.y17_c01334{bottom:765.440000pt;}
.yd_c01334{bottom:766.080000pt;}
.ye_c01334{bottom:766.720000pt;}
.y16_c01334{bottom:803.200000pt;}
.yb_c01334{bottom:803.840000pt;}
.yc_c01334{bottom:804.480000pt;}
.y14_c01334{bottom:840.960000pt;}
.y15_c01334{bottom:841.600000pt;}
.y9_c01334{bottom:842.880000pt;}
.ya_c01334{bottom:844.800000pt;}
.y13_c01334{bottom:879.360000pt;}
.y7_c01334{bottom:880.640000pt;}
.y6_c01334{bottom:881.280000pt;}
.y11_c01334{bottom:881.920000pt;}
.y8_c01334{bottom:882.560000pt;}
.y12_c01334{bottom:883.200000pt;}
.y3_c01334{bottom:917.760000pt;}
.y4_c01334{bottom:919.040000pt;}
.y2_c01334{bottom:919.680000pt;}
.y5_c01334{bottom:921.600000pt;}
.y1_c01334{bottom:984.960000pt;}
.h14_c01334{height:13.822500pt;}
.h15_c01334{height:18.430000pt;}
.h13_c01334{height:23.037500pt;}
.h10_c01334{height:27.645000pt;}
.hc_c01334{height:29.948750pt;}
.h11_c01334{height:34.556250pt;}
.h12_c01334{height:36.860000pt;}
.h8_c01334{height:41.467500pt;}
.h7_c01334{height:43.771250pt;}
.ha_c01334{height:46.075000pt;}
.h3_c01334{height:48.378750pt;}
.h6_c01334{height:50.682500pt;}
.h5_c01334{height:52.986250pt;}
.h4_c01334{height:55.290000pt;}
.h9_c01334{height:57.593750pt;}
.h2_c01334{height:59.897500pt;}
.he_c01334{height:62.201250pt;}
.hf_c01334{height:64.505000pt;}
.hd_c01334{height:66.808750pt;}
.hb_c01334{height:71.416250pt;}
.h0_c01334{height:1025.280000pt;}
.h1_c01334{height:1025.333333pt;}
.w0_c01334{width:690.560000pt;}
.w1_c01334{width:690.666667pt;}
.x0_c01334{left:0.000000pt;}
.xb_c01334{left:39.040000pt;}
.x11_c01334{left:44.800000pt;}
.x24_c01334{left:46.080000pt;}
.x34_c01334{left:47.360000pt;}
.xc_c01334{left:72.320000pt;}
.x35_c01334{left:80.640000pt;}
.x1d_c01334{left:90.240000pt;}
.x12_c01334{left:98.560000pt;}
.xd_c01334{left:100.480000pt;}
.x1e_c01334{left:120.320000pt;}
.x14_c01334{left:138.880000pt;}
.x1f_c01334{left:156.800000pt;}
.xe_c01334{left:158.080000pt;}
.x20_c01334{left:167.040000pt;}
.x2e_c01334{left:176.640000pt;}
.x13_c01334{left:186.240000pt;}
.x3a_c01334{left:188.160000pt;}
.x21_c01334{left:206.080000pt;}
.x22_c01334{left:215.040000pt;}
.x37_c01334{left:216.320000pt;}
.x27_c01334{left:224.640000pt;}
.x36_c01334{left:226.560000pt;}
.x15_c01334{left:245.120000pt;}
.x23_c01334{left:263.040000pt;}
.xf_c01334{left:264.960000pt;}
.x2f_c01334{left:272.640000pt;}
.x16_c01334{left:282.240000pt;}
.x38_c01334{left:283.520000pt;}
.x25_c01334{left:301.440000pt;}
.x18_c01334{left:311.040000pt;}
.x33_c01334{left:320.640000pt;}
.x17_c01334{left:330.880000pt;}
.x10_c01334{left:350.080000pt;}
.x19_c01334{left:357.760000pt;}
.x26_c01334{left:387.200000pt;}
.x1a_c01334{left:397.440000pt;}
.x39_c01334{left:408.320000pt;}
.x1b_c01334{left:474.240000pt;}
.x2c_c01334{left:493.440000pt;}
.x28_c01334{left:511.360000pt;}
.x9_c01334{left:512.640000pt;}
.x2b_c01334{left:531.200000pt;}
.x8_c01334{left:532.480000pt;}
.x30_c01334{left:559.360000pt;}
.x2_c01334{left:561.280000pt;}
.x6_c01334{left:562.560000pt;}
.x31_c01334{left:588.800000pt;}
.x7_c01334{left:590.080000pt;}
.x3_c01334{left:591.360000pt;}
.x32_c01334{left:597.120000pt;}
.xa_c01334{left:599.680000pt;}
.x1_c01334{left:605.440000pt;}
.x2d_c01334{left:618.240000pt;}
.x29_c01334{left:626.560000pt;}
.x1c_c01334{left:627.840000pt;}
.x4_c01334{left:629.120000pt;}
.x2a_c01334{left:645.120000pt;}
.x5_c01334{left:647.040000pt;}
}





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

.ir_c01335:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01335{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01335;src:url('chunks/assets/font_3b0aa5e50f755b6aecaa1fcb.woff2')format("woff");}.ff1_c01335{font-family:ff1_c01335;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m47_c01335{transform:matrix(0.169625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169625,0.000000,0.000000,0.250000,0,0);}
.m3b_c01335{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m20_c01335{transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);}
.m16_c01335{transform:matrix(0.206575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206575,0.000000,0.000000,0.250000,0,0);}
.m3a_c01335{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m10_c01335{transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);}
.m34_c01335{transform:matrix(0.214225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214225,0.000000,0.000000,0.250000,0,0);}
.m31_c01335{transform:matrix(0.218525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218525,0.000000,0.000000,0.250000,0,0);}
.m27_c01335{transform:matrix(0.219575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219575,0.000000,0.000000,0.250000,0,0);}
.m8_c01335{transform:matrix(0.223375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223375,0.000000,0.000000,0.250000,0,0);}
.m43_c01335{transform:matrix(0.224725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224725,0.000000,0.000000,0.250000,0,0);}
.m3e_c01335{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m2a_c01335{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01335{transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);}
.m3c_c01335{transform:matrix(0.233475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233475,0.000000,0.000000,0.250000,0,0);}
.m45_c01335{transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);}
.m33_c01335{transform:matrix(0.234850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234850,0.000000,0.000000,0.250000,0,0);}
.m36_c01335{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m37_c01335{transform:matrix(0.244600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244600,0.000000,0.000000,0.250000,0,0);}
.m2e_c01335{transform:matrix(0.244975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244975,0.000000,0.000000,0.250000,0,0);}
.m24_c01335{transform:matrix(0.246025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246025,0.000000,0.000000,0.250000,0,0);}
.m42_c01335{transform:matrix(0.247575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247575,0.000000,0.000000,0.250000,0,0);}
.m22_c01335{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m40_c01335{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1_c01335{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01335{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_c01335{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.md_c01335{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_c01335{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);}
.m2c_c01335{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m11_c01335{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m13_c01335{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m17_c01335{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m19_c01335{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01335{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);}
.m46_c01335{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m2_c01335{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m0_c01335{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m4_c01335{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m14_c01335{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01335{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m44_c01335{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01335{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m15_c01335{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mf_c01335{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m18_c01335{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m6_c01335{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.me_c01335{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3_c01335{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m29_c01335{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);}
.m23_c01335{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_c01335{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m21_c01335{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);}
.m3d_c01335{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m12_c01335{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.mc_c01335{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m7_c01335{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);}
.m30_c01335{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);}
.m2b_c01335{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);}
.m32_c01335{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);}
.ma_c01335{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);}
.m39_c01335{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m26_c01335{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);}
.m3f_c01335{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);}
.m1d_c01335{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m35_c01335{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m25_c01335{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m5_c01335{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);}
.m2d_c01335{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m28_c01335{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m38_c01335{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);}
.m41_c01335{transform:matrix(0.945000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.945000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.945000,0.000000,0.000000,0.250000,0,0);}
.v0_c01335{vertical-align:0.000000px;}
.v1_c01335{vertical-align:5.760000px;}
.ls0_c01335{letter-spacing:0.000000px;}
.sc__c01335{text-shadow:none;}
.sc0_c01335{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01335{-webkit-text-stroke:0px transparent;}
.sc0_c01335{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01335{word-spacing:0.000000px;}
.ws0_c01335{word-spacing:47.470800px;}
.fc0_c01335{color:transparent;}
.fsb_c01335{font-size:28.800000px;}
.fsc_c01335{font-size:34.560000px;}
.fsa_c01335{font-size:43.200000px;}
.fse_c01335{font-size:48.960000px;}
.fs4_c01335{font-size:51.840000px;}
.fs3_c01335{font-size:54.720000px;}
.fs9_c01335{font-size:57.600000px;}
.fs5_c01335{font-size:60.480000px;}
.fs6_c01335{font-size:63.360000px;}
.fs1_c01335{font-size:66.240000px;}
.fs7_c01335{font-size:69.120000px;}
.fs0_c01335{font-size:72.000000px;}
.fsf_c01335{font-size:74.880000px;}
.fs8_c01335{font-size:77.760000px;}
.fs2_c01335{font-size:80.640000px;}
.fsd_c01335{font-size:83.520000px;}
.y0_c01335{bottom:0.000000px;}
.y51_c01335{bottom:69.120000px;}
.y54_c01335{bottom:69.840000px;}
.y53_c01335{bottom:71.280000px;}
.y52_c01335{bottom:72.720000px;}
.y50_c01335{bottom:73.440000px;}
.y4f_c01335{bottom:111.600000px;}
.y4e_c01335{bottom:115.920000px;}
.y4d_c01335{bottom:116.640000px;}
.y4c_c01335{bottom:156.240000px;}
.y4b_c01335{bottom:158.400000px;}
.y4a_c01335{bottom:159.120000px;}
.y59_c01335{bottom:159.840000px;}
.y58_c01335{bottom:160.560000px;}
.y49_c01335{bottom:198.720000px;}
.y48_c01335{bottom:202.320000px;}
.y55_c01335{bottom:203.040000px;}
.y56_c01335{bottom:203.760000px;}
.y57_c01335{bottom:204.480000px;}
.y47_c01335{bottom:246.960000px;}
.y3e_c01335{bottom:297.360000px;}
.y3d_c01335{bottom:299.520000px;}
.y46_c01335{bottom:300.240000px;}
.y45_c01335{bottom:302.400000px;}
.y3c_c01335{bottom:340.560000px;}
.y3b_c01335{bottom:342.720000px;}
.y44_c01335{bottom:343.440000px;}
.y43_c01335{bottom:344.880000px;}
.y39_c01335{bottom:383.760000px;}
.y3a_c01335{bottom:385.200000px;}
.y42_c01335{bottom:385.920000px;}
.y41_c01335{bottom:386.640000px;}
.y38_c01335{bottom:387.360000px;}
.y40_c01335{bottom:388.080000px;}
.y3f_c01335{bottom:388.800000px;}
.y28_c01335{bottom:427.680000px;}
.y27_c01335{bottom:429.120000px;}
.y25_c01335{bottom:460.080000px;}
.y26_c01335{bottom:460.800000px;}
.y24_c01335{bottom:462.960000px;}
.y29_c01335{bottom:463.680000px;}
.y37_c01335{bottom:508.320000px;}
.y36_c01335{bottom:557.280000px;}
.y35_c01335{bottom:558.000000px;}
.y21_c01335{bottom:558.720000px;}
.y23_c01335{bottom:559.440000px;}
.y22_c01335{bottom:560.880000px;}
.y33_c01335{bottom:599.760000px;}
.y34_c01335{bottom:601.200000px;}
.y20_c01335{bottom:601.920000px;}
.y32_c01335{bottom:602.640000px;}
.y31_c01335{bottom:643.680000px;}
.y1f_c01335{bottom:644.400000px;}
.y1e_c01335{bottom:645.120000px;}
.y30_c01335{bottom:647.280000px;}
.y2f_c01335{bottom:686.880000px;}
.y1d_c01335{bottom:687.600000px;}
.y2e_c01335{bottom:688.320000px;}
.y2c_c01335{bottom:689.760000px;}
.y2d_c01335{bottom:690.480000px;}
.y1c_c01335{bottom:730.080000px;}
.y2b_c01335{bottom:730.800000px;}
.y1a_c01335{bottom:731.520000px;}
.y1b_c01335{bottom:732.240000px;}
.y2a_c01335{bottom:732.960000px;}
.y19_c01335{bottom:774.000000px;}
.yf_c01335{bottom:817.200000px;}
.yd_c01335{bottom:817.920000px;}
.y18_c01335{bottom:818.640000px;}
.y17_c01335{bottom:819.360000px;}
.ye_c01335{bottom:820.080000px;}
.yc_c01335{bottom:860.400000px;}
.yb_c01335{bottom:862.560000px;}
.ya_c01335{bottom:902.880000px;}
.y8_c01335{bottom:903.600000px;}
.y15_c01335{bottom:904.320000px;}
.y16_c01335{bottom:905.040000px;}
.y7_c01335{bottom:905.760000px;}
.y9_c01335{bottom:908.640000px;}
.y14_c01335{bottom:946.080000px;}
.y5_c01335{bottom:946.800000px;}
.y13_c01335{bottom:947.520000px;}
.y4_c01335{bottom:948.240000px;}
.y6_c01335{bottom:950.400000px;}
.y12_c01335{bottom:989.280000px;}
.y3_c01335{bottom:990.000000px;}
.y10_c01335{bottom:990.720000px;}
.y2_c01335{bottom:991.440000px;}
.y11_c01335{bottom:992.160000px;}
.y1_c01335{bottom:1108.080000px;}
.he_c01335{height:25.917187px;}
.hf_c01335{height:31.100625px;}
.hd_c01335{height:38.875781px;}
.h11_c01335{height:44.059219px;}
.h6_c01335{height:46.650937px;}
.h5_c01335{height:49.242656px;}
.hb_c01335{height:51.834375px;}
.h7_c01335{height:54.426094px;}
.h8_c01335{height:57.017812px;}
.h3_c01335{height:59.609531px;}
.h9_c01335{height:62.201250px;}
.hc_c01335{height:62.777813px;}
.h2_c01335{height:64.792969px;}
.h12_c01335{height:67.384687px;}
.ha_c01335{height:69.976406px;}
.h4_c01335{height:72.568125px;}
.h10_c01335{height:75.159844px;}
.h0_c01335{height:1152.720000px;}
.h1_c01335{height:1152.750000px;}
.w0_c01335{width:774.720000px;}
.w1_c01335{width:774.750000px;}
.x0_c01335{left:0.000000px;}
.x9_c01335{left:49.680000px;}
.x2_c01335{left:51.120000px;}
.x2f_c01335{left:52.560000px;}
.x1e_c01335{left:81.360000px;}
.x22_c01335{left:100.800000px;}
.x17_c01335{left:110.880000px;}
.x3_c01335{left:113.040000px;}
.x23_c01335{left:154.800000px;}
.x2d_c01335{left:186.480000px;}
.x6_c01335{left:198.720000px;}
.x20_c01335{left:209.520000px;}
.x1f_c01335{left:220.320000px;}
.x24_c01335{left:241.920000px;}
.x7_c01335{left:243.360000px;}
.x1b_c01335{left:253.440000px;}
.x4_c01335{left:263.520000px;}
.x2e_c01335{left:275.760000px;}
.x26_c01335{left:285.120000px;}
.x1c_c01335{left:286.560000px;}
.x30_c01335{left:294.480000px;}
.x21_c01335{left:295.920000px;}
.x8_c01335{left:297.360000px;}
.x5_c01335{left:318.240000px;}
.x18_c01335{left:328.320000px;}
.x1d_c01335{left:339.120000px;}
.x25_c01335{left:370.800000px;}
.x27_c01335{left:574.560000px;}
.x10_c01335{left:576.720000px;}
.xa_c01335{left:578.160000px;}
.x28_c01335{left:595.440000px;}
.x16_c01335{left:596.880000px;}
.x15_c01335{left:598.320000px;}
.x29_c01335{left:606.960000px;}
.x2a_c01335{left:619.920000px;}
.x31_c01335{left:627.840000px;}
.x2c_c01335{left:629.280000px;}
.x12_c01335{left:630.720000px;}
.x11_c01335{left:632.160000px;}
.xb_c01335{left:633.600000px;}
.x19_c01335{left:661.680000px;}
.x13_c01335{left:663.120000px;}
.xc_c01335{left:665.280000px;}
.x1_c01335{left:672.480000px;}
.x1a_c01335{left:694.800000px;}
.x14_c01335{left:696.960000px;}
.x2b_c01335{left:704.160000px;}
.x32_c01335{left:705.600000px;}
.xe_c01335{left:707.040000px;}
.xd_c01335{left:708.480000px;}
.xf_c01335{left:727.200000px;}
@media print{
.v0_c01335{vertical-align:0.000000pt;}
.v1_c01335{vertical-align:5.120000pt;}
.ls0_c01335{letter-spacing:0.000000pt;}
.ws1_c01335{word-spacing:0.000000pt;}
.ws0_c01335{word-spacing:42.196267pt;}
.fsb_c01335{font-size:25.600000pt;}
.fsc_c01335{font-size:30.720000pt;}
.fsa_c01335{font-size:38.400000pt;}
.fse_c01335{font-size:43.520000pt;}
.fs4_c01335{font-size:46.080000pt;}
.fs3_c01335{font-size:48.640000pt;}
.fs9_c01335{font-size:51.200000pt;}
.fs5_c01335{font-size:53.760000pt;}
.fs6_c01335{font-size:56.320000pt;}
.fs1_c01335{font-size:58.880000pt;}
.fs7_c01335{font-size:61.440000pt;}
.fs0_c01335{font-size:64.000000pt;}
.fsf_c01335{font-size:66.560000pt;}
.fs8_c01335{font-size:69.120000pt;}
.fs2_c01335{font-size:71.680000pt;}
.fsd_c01335{font-size:74.240000pt;}
.y0_c01335{bottom:0.000000pt;}
.y51_c01335{bottom:61.440000pt;}
.y54_c01335{bottom:62.080000pt;}
.y53_c01335{bottom:63.360000pt;}
.y52_c01335{bottom:64.640000pt;}
.y50_c01335{bottom:65.280000pt;}
.y4f_c01335{bottom:99.200000pt;}
.y4e_c01335{bottom:103.040000pt;}
.y4d_c01335{bottom:103.680000pt;}
.y4c_c01335{bottom:138.880000pt;}
.y4b_c01335{bottom:140.800000pt;}
.y4a_c01335{bottom:141.440000pt;}
.y59_c01335{bottom:142.080000pt;}
.y58_c01335{bottom:142.720000pt;}
.y49_c01335{bottom:176.640000pt;}
.y48_c01335{bottom:179.840000pt;}
.y55_c01335{bottom:180.480000pt;}
.y56_c01335{bottom:181.120000pt;}
.y57_c01335{bottom:181.760000pt;}
.y47_c01335{bottom:219.520000pt;}
.y3e_c01335{bottom:264.320000pt;}
.y3d_c01335{bottom:266.240000pt;}
.y46_c01335{bottom:266.880000pt;}
.y45_c01335{bottom:268.800000pt;}
.y3c_c01335{bottom:302.720000pt;}
.y3b_c01335{bottom:304.640000pt;}
.y44_c01335{bottom:305.280000pt;}
.y43_c01335{bottom:306.560000pt;}
.y39_c01335{bottom:341.120000pt;}
.y3a_c01335{bottom:342.400000pt;}
.y42_c01335{bottom:343.040000pt;}
.y41_c01335{bottom:343.680000pt;}
.y38_c01335{bottom:344.320000pt;}
.y40_c01335{bottom:344.960000pt;}
.y3f_c01335{bottom:345.600000pt;}
.y28_c01335{bottom:380.160000pt;}
.y27_c01335{bottom:381.440000pt;}
.y25_c01335{bottom:408.960000pt;}
.y26_c01335{bottom:409.600000pt;}
.y24_c01335{bottom:411.520000pt;}
.y29_c01335{bottom:412.160000pt;}
.y37_c01335{bottom:451.840000pt;}
.y36_c01335{bottom:495.360000pt;}
.y35_c01335{bottom:496.000000pt;}
.y21_c01335{bottom:496.640000pt;}
.y23_c01335{bottom:497.280000pt;}
.y22_c01335{bottom:498.560000pt;}
.y33_c01335{bottom:533.120000pt;}
.y34_c01335{bottom:534.400000pt;}
.y20_c01335{bottom:535.040000pt;}
.y32_c01335{bottom:535.680000pt;}
.y31_c01335{bottom:572.160000pt;}
.y1f_c01335{bottom:572.800000pt;}
.y1e_c01335{bottom:573.440000pt;}
.y30_c01335{bottom:575.360000pt;}
.y2f_c01335{bottom:610.560000pt;}
.y1d_c01335{bottom:611.200000pt;}
.y2e_c01335{bottom:611.840000pt;}
.y2c_c01335{bottom:613.120000pt;}
.y2d_c01335{bottom:613.760000pt;}
.y1c_c01335{bottom:648.960000pt;}
.y2b_c01335{bottom:649.600000pt;}
.y1a_c01335{bottom:650.240000pt;}
.y1b_c01335{bottom:650.880000pt;}
.y2a_c01335{bottom:651.520000pt;}
.y19_c01335{bottom:688.000000pt;}
.yf_c01335{bottom:726.400000pt;}
.yd_c01335{bottom:727.040000pt;}
.y18_c01335{bottom:727.680000pt;}
.y17_c01335{bottom:728.320000pt;}
.ye_c01335{bottom:728.960000pt;}
.yc_c01335{bottom:764.800000pt;}
.yb_c01335{bottom:766.720000pt;}
.ya_c01335{bottom:802.560000pt;}
.y8_c01335{bottom:803.200000pt;}
.y15_c01335{bottom:803.840000pt;}
.y16_c01335{bottom:804.480000pt;}
.y7_c01335{bottom:805.120000pt;}
.y9_c01335{bottom:807.680000pt;}
.y14_c01335{bottom:840.960000pt;}
.y5_c01335{bottom:841.600000pt;}
.y13_c01335{bottom:842.240000pt;}
.y4_c01335{bottom:842.880000pt;}
.y6_c01335{bottom:844.800000pt;}
.y12_c01335{bottom:879.360000pt;}
.y3_c01335{bottom:880.000000pt;}
.y10_c01335{bottom:880.640000pt;}
.y2_c01335{bottom:881.280000pt;}
.y11_c01335{bottom:881.920000pt;}
.y1_c01335{bottom:984.960000pt;}
.he_c01335{height:23.037500pt;}
.hf_c01335{height:27.645000pt;}
.hd_c01335{height:34.556250pt;}
.h11_c01335{height:39.163750pt;}
.h6_c01335{height:41.467500pt;}
.h5_c01335{height:43.771250pt;}
.hb_c01335{height:46.075000pt;}
.h7_c01335{height:48.378750pt;}
.h8_c01335{height:50.682500pt;}
.h3_c01335{height:52.986250pt;}
.h9_c01335{height:55.290000pt;}
.hc_c01335{height:55.802500pt;}
.h2_c01335{height:57.593750pt;}
.h12_c01335{height:59.897500pt;}
.ha_c01335{height:62.201250pt;}
.h4_c01335{height:64.505000pt;}
.h10_c01335{height:66.808750pt;}
.h0_c01335{height:1024.640000pt;}
.h1_c01335{height:1024.666667pt;}
.w0_c01335{width:688.640000pt;}
.w1_c01335{width:688.666667pt;}
.x0_c01335{left:0.000000pt;}
.x9_c01335{left:44.160000pt;}
.x2_c01335{left:45.440000pt;}
.x2f_c01335{left:46.720000pt;}
.x1e_c01335{left:72.320000pt;}
.x22_c01335{left:89.600000pt;}
.x17_c01335{left:98.560000pt;}
.x3_c01335{left:100.480000pt;}
.x23_c01335{left:137.600000pt;}
.x2d_c01335{left:165.760000pt;}
.x6_c01335{left:176.640000pt;}
.x20_c01335{left:186.240000pt;}
.x1f_c01335{left:195.840000pt;}
.x24_c01335{left:215.040000pt;}
.x7_c01335{left:216.320000pt;}
.x1b_c01335{left:225.280000pt;}
.x4_c01335{left:234.240000pt;}
.x2e_c01335{left:245.120000pt;}
.x26_c01335{left:253.440000pt;}
.x1c_c01335{left:254.720000pt;}
.x30_c01335{left:261.760000pt;}
.x21_c01335{left:263.040000pt;}
.x8_c01335{left:264.320000pt;}
.x5_c01335{left:282.880000pt;}
.x18_c01335{left:291.840000pt;}
.x1d_c01335{left:301.440000pt;}
.x25_c01335{left:329.600000pt;}
.x27_c01335{left:510.720000pt;}
.x10_c01335{left:512.640000pt;}
.xa_c01335{left:513.920000pt;}
.x28_c01335{left:529.280000pt;}
.x16_c01335{left:530.560000pt;}
.x15_c01335{left:531.840000pt;}
.x29_c01335{left:539.520000pt;}
.x2a_c01335{left:551.040000pt;}
.x31_c01335{left:558.080000pt;}
.x2c_c01335{left:559.360000pt;}
.x12_c01335{left:560.640000pt;}
.x11_c01335{left:561.920000pt;}
.xb_c01335{left:563.200000pt;}
.x19_c01335{left:588.160000pt;}
.x13_c01335{left:589.440000pt;}
.xc_c01335{left:591.360000pt;}
.x1_c01335{left:597.760000pt;}
.x1a_c01335{left:617.600000pt;}
.x14_c01335{left:619.520000pt;}
.x2b_c01335{left:625.920000pt;}
.x32_c01335{left:627.200000pt;}
.xe_c01335{left:628.480000pt;}
.xd_c01335{left:629.760000pt;}
.xf_c01335{left:646.400000pt;}
}





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

.ir_c01336:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01336{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01336;src:url('chunks/assets/font_bd7c3f454a85788933d16913.woff2')format("woff");}.ff1_c01336{font-family:ff1_c01336;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m64_c01336{transform:matrix(0.223850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223850,0.000000,0.000000,0.250000,0,0);}
.m47_c01336{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m7_c01336{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m11_c01336{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_c01336{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);}
.m2b_c01336{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);}
.m3b_c01336{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mb_c01336{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m2_c01336{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m4_c01336{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m3_c01336{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m5_c01336{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);}
.m4e_c01336{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);}
.m2c_c01336{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m8_c01336{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m29_c01336{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m30_c01336{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m31_c01336{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m41_c01336{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01336{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01336{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m45_c01336{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.ma_c01336{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m37_c01336{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01336{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01336{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m46_c01336{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01336{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1_c01336{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);}
.m62_c01336{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m17_c01336{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_c01336{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m6_c01336{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m5c_c01336{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);}
.m4d_c01336{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01336{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);}
.m5f_c01336{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m63_c01336{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m27_c01336{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m0_c01336{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);}
.m33_c01336{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01336{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m50_c01336{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m13_c01336{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m14_c01336{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);}
.m61_c01336{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m52_c01336{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);}
.m56_c01336{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);}
.m1e_c01336{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);}
.m4f_c01336{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m15_c01336{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m12_c01336{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.mc_c01336{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);}
.m5d_c01336{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m53_c01336{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m22_c01336{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m59_c01336{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m40_c01336{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m5e_c01336{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);}
.me_c01336{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);}
.m3f_c01336{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m19_c01336{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);}
.m1a_c01336{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m48_c01336{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m51_c01336{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_c01336{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m16_c01336{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);}
.m57_c01336{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m20_c01336{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m49_c01336{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m21_c01336{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m44_c01336{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.md_c01336{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);}
.m60_c01336{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m58_c01336{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);}
.m5b_c01336{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01336{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_c01336{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01336{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m5a_c01336{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m35_c01336{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m23_c01336{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m42_c01336{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m24_c01336{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m10_c01336{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m55_c01336{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m65_c01336{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);}
.m18_c01336{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);}
.m54_c01336{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01336{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01336{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01336{transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);}
.m43_c01336{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01336{transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);}
.m38_c01336{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);}
.m28_c01336{transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);}
.m32_c01336{transform:matrix(0.695000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.695000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.695000,0.000000,0.000000,0.250000,0,0);}
.m39_c01336{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m36_c01336{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);}
.m34_c01336{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.m26_c01336{transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01336{transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);}
.v1_c01336{vertical-align:-8.640000px;}
.v2_c01336{vertical-align:-2.880000px;}
.v0_c01336{vertical-align:0.000000px;}
.ls1_c01336{letter-spacing:0.000000px;}
.ls0_c01336{letter-spacing:247.976400px;}
.sc__c01336{text-shadow:none;}
.sc0_c01336{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01336{-webkit-text-stroke:0px transparent;}
.sc0_c01336{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01336{word-spacing:0.000000px;}
.ws0_c01336{word-spacing:157.044000px;}
.fc0_c01336{color:transparent;}
.fsd_c01336{font-size:14.400000px;}
.fse_c01336{font-size:17.280000px;}
.fs10_c01336{font-size:20.160000px;}
.fs12_c01336{font-size:25.920000px;}
.fsa_c01336{font-size:34.560000px;}
.fs8_c01336{font-size:37.440000px;}
.fs11_c01336{font-size:40.320000px;}
.fsf_c01336{font-size:43.200000px;}
.fsb_c01336{font-size:46.080000px;}
.fs9_c01336{font-size:48.960000px;}
.fs5_c01336{font-size:51.840000px;}
.fsc_c01336{font-size:54.720000px;}
.fs4_c01336{font-size:57.600000px;}
.fs7_c01336{font-size:60.480000px;}
.fs6_c01336{font-size:63.360000px;}
.fs1_c01336{font-size:66.240000px;}
.fs3_c01336{font-size:69.120000px;}
.fs2_c01336{font-size:72.000000px;}
.fs0_c01336{font-size:74.880000px;}
.y0_c01336{bottom:0.000000px;}
.y84_c01336{bottom:18.720000px;}
.y85_c01336{bottom:19.440000px;}
.y86_c01336{bottom:20.160000px;}
.y88_c01336{bottom:22.320000px;}
.y83_c01336{bottom:23.040000px;}
.y87_c01336{bottom:23.760000px;}
.y82_c01336{bottom:24.480000px;}
.y89_c01336{bottom:25.200000px;}
.y7f_c01336{bottom:61.920000px;}
.y7d_c01336{bottom:62.640000px;}
.y7e_c01336{bottom:64.080000px;}
.y80_c01336{bottom:65.520000px;}
.y7c_c01336{bottom:66.240000px;}
.y81_c01336{bottom:66.960000px;}
.y7b_c01336{bottom:67.680000px;}
.y76_c01336{bottom:103.680000px;}
.y78_c01336{bottom:104.400000px;}
.y7a_c01336{bottom:105.120000px;}
.y77_c01336{bottom:107.280000px;}
.y75_c01336{bottom:108.000000px;}
.y79_c01336{bottom:108.720000px;}
.y74_c01336{bottom:109.440000px;}
.y71_c01336{bottom:149.040000px;}
.y72_c01336{bottom:149.760000px;}
.y70_c01336{bottom:150.480000px;}
.y6f_c01336{bottom:151.200000px;}
.y6e_c01336{bottom:151.920000px;}
.y73_c01336{bottom:152.640000px;}
.y6d_c01336{bottom:205.920000px;}
.y6a_c01336{bottom:245.520000px;}
.y6b_c01336{bottom:246.960000px;}
.y6c_c01336{bottom:248.400000px;}
.y67_c01336{bottom:287.280000px;}
.y68_c01336{bottom:288.000000px;}
.y69_c01336{bottom:291.600000px;}
.y66_c01336{bottom:292.320000px;}
.y65_c01336{bottom:293.760000px;}
.y63_c01336{bottom:330.480000px;}
.y64_c01336{bottom:331.920000px;}
.y62_c01336{bottom:334.080000px;}
.y61_c01336{bottom:385.920000px;}
.y60_c01336{bottom:386.640000px;}
.y5f_c01336{bottom:408.240000px;}
.y5e_c01336{bottom:409.680000px;}
.y5d_c01336{bottom:410.400000px;}
.y5b_c01336{bottom:431.280000px;}
.y5c_c01336{bottom:432.000000px;}
.y5a_c01336{bottom:432.720000px;}
.y58_c01336{bottom:470.880000px;}
.y59_c01336{bottom:473.760000px;}
.y57_c01336{bottom:474.480000px;}
.y56_c01336{bottom:475.200000px;}
.y55_c01336{bottom:514.080000px;}
.y52_c01336{bottom:514.800000px;}
.y53_c01336{bottom:515.520000px;}
.y51_c01336{bottom:517.680000px;}
.y50_c01336{bottom:518.400000px;}
.y54_c01336{bottom:519.840000px;}
.y4f_c01336{bottom:538.560000px;}
.y4d_c01336{bottom:539.280000px;}
.y4e_c01336{bottom:540.000000px;}
.y4c_c01336{bottom:540.720000px;}
.y4b_c01336{bottom:581.760000px;}
.y4a_c01336{bottom:583.200000px;}
.y48_c01336{bottom:622.800000px;}
.y49_c01336{bottom:624.240000px;}
.y47_c01336{bottom:624.960000px;}
.y46_c01336{bottom:625.680000px;}
.y45_c01336{bottom:626.400000px;}
.y42_c01336{bottom:676.800000px;}
.y44_c01336{bottom:677.520000px;}
.y41_c01336{bottom:678.240000px;}
.y40_c01336{bottom:680.400000px;}
.y43_c01336{bottom:681.840000px;}
.y3a_c01336{bottom:702.000000px;}
.y3c_c01336{bottom:702.720000px;}
.y3b_c01336{bottom:704.160000px;}
.y3f_c01336{bottom:708.480000px;}
.y39_c01336{bottom:710.640000px;}
.y3d_c01336{bottom:712.080000px;}
.y37_c01336{bottom:712.800000px;}
.y3e_c01336{bottom:714.240000px;}
.y38_c01336{bottom:715.680000px;}
.y31_c01336{bottom:734.400000px;}
.y30_c01336{bottom:735.120000px;}
.y32_c01336{bottom:737.280000px;}
.y35_c01336{bottom:740.880000px;}
.y36_c01336{bottom:741.600000px;}
.y34_c01336{bottom:742.320000px;}
.y2f_c01336{bottom:744.480000px;}
.y33_c01336{bottom:745.200000px;}
.y2d_c01336{bottom:745.920000px;}
.y2e_c01336{bottom:748.080000px;}
.y2c_c01336{bottom:773.280000px;}
.y28_c01336{bottom:774.720000px;}
.y27_c01336{bottom:775.440000px;}
.y2a_c01336{bottom:776.160000px;}
.y26_c01336{bottom:777.600000px;}
.y2b_c01336{bottom:779.040000px;}
.y29_c01336{bottom:779.760000px;}
.y25_c01336{bottom:805.680000px;}
.y23_c01336{bottom:806.400000px;}
.y21_c01336{bottom:807.840000px;}
.y24_c01336{bottom:808.560000px;}
.y1e_c01336{bottom:809.280000px;}
.y20_c01336{bottom:810.000000px;}
.y22_c01336{bottom:811.440000px;}
.y1f_c01336{bottom:812.160000px;}
.y1d_c01336{bottom:858.960000px;}
.y1a_c01336{bottom:859.680000px;}
.y17_c01336{bottom:860.400000px;}
.y1c_c01336{bottom:861.120000px;}
.y1b_c01336{bottom:861.840000px;}
.y19_c01336{bottom:863.280000px;}
.y18_c01336{bottom:864.000000px;}
.y15_c01336{bottom:900.720000px;}
.y14_c01336{bottom:901.440000px;}
.y10_c01336{bottom:902.160000px;}
.y11_c01336{bottom:903.600000px;}
.y16_c01336{bottom:904.320000px;}
.y13_c01336{bottom:905.040000px;}
.y12_c01336{bottom:905.760000px;}
.yf_c01336{bottom:943.920000px;}
.ye_c01336{bottom:944.640000px;}
.yb_c01336{bottom:946.800000px;}
.yd_c01336{bottom:947.520000px;}
.yc_c01336{bottom:948.240000px;}
.ya_c01336{bottom:948.960000px;}
.y8_c01336{bottom:1008.000000px;}
.y9_c01336{bottom:1008.720000px;}
.y5_c01336{bottom:1009.440000px;}
.y4_c01336{bottom:1010.160000px;}
.y6_c01336{bottom:1051.200000px;}
.y7_c01336{bottom:1051.920000px;}
.y3_c01336{bottom:1052.640000px;}
.y2_c01336{bottom:1053.360000px;}
.y1_c01336{bottom:1134.000000px;}
.hf_c01336{height:12.958594px;}
.h10_c01336{height:15.550313px;}
.h12_c01336{height:18.142031px;}
.h14_c01336{height:23.325469px;}
.hc_c01336{height:31.100625px;}
.ha_c01336{height:33.692344px;}
.h13_c01336{height:36.284062px;}
.h11_c01336{height:38.875781px;}
.hd_c01336{height:41.467500px;}
.hb_c01336{height:44.059219px;}
.h7_c01336{height:46.650937px;}
.he_c01336{height:49.242656px;}
.h6_c01336{height:51.834375px;}
.h9_c01336{height:54.426094px;}
.h8_c01336{height:57.017812px;}
.h3_c01336{height:59.609531px;}
.h5_c01336{height:62.201250px;}
.h4_c01336{height:64.792969px;}
.h2_c01336{height:67.384687px;}
.h0_c01336{height:1172.160000px;}
.h1_c01336{height:1172.250000px;}
.w1_c01336{width:773.250000px;}
.w0_c01336{width:773.280000px;}
.x0_c01336{left:0.000000px;}
.x12_c01336{left:41.040000px;}
.x2_c01336{left:42.480000px;}
.x23_c01336{left:61.200000px;}
.x2e_c01336{left:70.560000px;}
.x3e_c01336{left:79.920000px;}
.x4e_c01336{left:81.360000px;}
.x24_c01336{left:91.440000px;}
.x3_c01336{left:103.680000px;}
.x52_c01336{left:111.600000px;}
.x25_c01336{left:114.480000px;}
.x60_c01336{left:121.680000px;}
.x1d_c01336{left:125.280000px;}
.x13_c01336{left:134.640000px;}
.x48_c01336{left:142.560000px;}
.x64_c01336{left:144.000000px;}
.x39_c01336{left:145.440000px;}
.x9_c01336{left:146.880000px;}
.x53_c01336{left:155.520000px;}
.x1e_c01336{left:157.680000px;}
.x32_c01336{left:167.760000px;}
.x14_c01336{left:177.840000px;}
.x26_c01336{left:179.280000px;}
.x33_c01336{left:187.920000px;}
.x41_c01336{left:200.160000px;}
.x4_c01336{left:201.600000px;}
.xa_c01336{left:212.400000px;}
.x54_c01336{left:221.040000px;}
.x27_c01336{left:232.560000px;}
.x49_c01336{left:241.920000px;}
.xb_c01336{left:254.160000px;}
.x2f_c01336{left:255.600000px;}
.x42_c01336{left:263.520000px;}
.x34_c01336{left:265.680000px;}
.x15_c01336{left:267.120000px;}
.x4a_c01336{left:274.320000px;}
.x61_c01336{left:285.120000px;}
.x56_c01336{left:295.920000px;}
.x16_c01336{left:297.360000px;}
.x5a_c01336{left:317.520000px;}
.x46_c01336{left:319.680000px;}
.x28_c01336{left:321.120000px;}
.x44_c01336{left:329.040000px;}
.xc_c01336{left:330.480000px;}
.x57_c01336{left:339.120000px;}
.x1f_c01336{left:340.560000px;}
.x29_c01336{left:352.080000px;}
.x43_c01336{left:360.720000px;}
.x30_c01336{left:362.880000px;}
.x3a_c01336{left:372.240000px;}
.x17_c01336{left:373.680000px;}
.x5b_c01336{left:382.320000px;}
.x37_c01336{left:383.760000px;}
.x47_c01336{left:395.280000px;}
.x2a_c01336{left:407.520000px;}
.x45_c01336{left:414.720000px;}
.x20_c01336{left:416.880000px;}
.x4b_c01336{left:425.520000px;}
.xd_c01336{left:439.200000px;}
.x55_c01336{left:447.120000px;}
.x5c_c01336{left:455.760000px;}
.x4c_c01336{left:457.920000px;}
.x18_c01336{left:459.360000px;}
.x2b_c01336{left:461.520000px;}
.x62_c01336{left:468.720000px;}
.xe_c01336{left:470.880000px;}
.x65_c01336{left:489.600000px;}
.x35_c01336{left:491.760000px;}
.x4f_c01336{left:501.120000px;}
.x19_c01336{left:503.280000px;}
.x38_c01336{left:512.640000px;}
.x21_c01336{left:514.080000px;}
.x3b_c01336{left:523.440000px;}
.x5d_c01336{left:533.520000px;}
.x36_c01336{left:535.680000px;}
.xf_c01336{left:537.120000px;}
.x58_c01336{left:542.880000px;}
.x22_c01336{left:545.760000px;}
.x31_c01336{left:547.200000px;}
.x5e_c01336{left:553.680000px;}
.x3f_c01336{left:556.560000px;}
.x66_c01336{left:564.480000px;}
.x4d_c01336{left:565.920000px;}
.x5_c01336{left:569.520000px;}
.x10_c01336{left:578.160000px;}
.x59_c01336{left:586.080000px;}
.x1a_c01336{left:588.960000px;}
.x63_c01336{left:596.160000px;}
.x40_c01336{left:597.600000px;}
.x2c_c01336{left:600.480000px;}
.x67_c01336{left:607.680000px;}
.x1b_c01336{left:610.560000px;}
.x2d_c01336{left:620.640000px;}
.x50_c01336{left:630.720000px;}
.x3c_c01336{left:641.520000px;}
.x11_c01336{left:643.680000px;}
.x1_c01336{left:650.160000px;}
.x5f_c01336{left:651.600000px;}
.x1c_c01336{left:654.480000px;}
.x8_c01336{left:665.280000px;}
.x6_c01336{left:667.440000px;}
.x51_c01336{left:673.200000px;}
.x3d_c01336{left:674.640000px;}
.x7_c01336{left:699.120000px;}
@media print{
.v1_c01336{vertical-align:-7.680000pt;}
.v2_c01336{vertical-align:-2.560000pt;}
.v0_c01336{vertical-align:0.000000pt;}
.ls1_c01336{letter-spacing:0.000000pt;}
.ls0_c01336{letter-spacing:220.423467pt;}
.ws1_c01336{word-spacing:0.000000pt;}
.ws0_c01336{word-spacing:139.594667pt;}
.fsd_c01336{font-size:12.800000pt;}
.fse_c01336{font-size:15.360000pt;}
.fs10_c01336{font-size:17.920000pt;}
.fs12_c01336{font-size:23.040000pt;}
.fsa_c01336{font-size:30.720000pt;}
.fs8_c01336{font-size:33.280000pt;}
.fs11_c01336{font-size:35.840000pt;}
.fsf_c01336{font-size:38.400000pt;}
.fsb_c01336{font-size:40.960000pt;}
.fs9_c01336{font-size:43.520000pt;}
.fs5_c01336{font-size:46.080000pt;}
.fsc_c01336{font-size:48.640000pt;}
.fs4_c01336{font-size:51.200000pt;}
.fs7_c01336{font-size:53.760000pt;}
.fs6_c01336{font-size:56.320000pt;}
.fs1_c01336{font-size:58.880000pt;}
.fs3_c01336{font-size:61.440000pt;}
.fs2_c01336{font-size:64.000000pt;}
.fs0_c01336{font-size:66.560000pt;}
.y0_c01336{bottom:0.000000pt;}
.y84_c01336{bottom:16.640000pt;}
.y85_c01336{bottom:17.280000pt;}
.y86_c01336{bottom:17.920000pt;}
.y88_c01336{bottom:19.840000pt;}
.y83_c01336{bottom:20.480000pt;}
.y87_c01336{bottom:21.120000pt;}
.y82_c01336{bottom:21.760000pt;}
.y89_c01336{bottom:22.400000pt;}
.y7f_c01336{bottom:55.040000pt;}
.y7d_c01336{bottom:55.680000pt;}
.y7e_c01336{bottom:56.960000pt;}
.y80_c01336{bottom:58.240000pt;}
.y7c_c01336{bottom:58.880000pt;}
.y81_c01336{bottom:59.520000pt;}
.y7b_c01336{bottom:60.160000pt;}
.y76_c01336{bottom:92.160000pt;}
.y78_c01336{bottom:92.800000pt;}
.y7a_c01336{bottom:93.440000pt;}
.y77_c01336{bottom:95.360000pt;}
.y75_c01336{bottom:96.000000pt;}
.y79_c01336{bottom:96.640000pt;}
.y74_c01336{bottom:97.280000pt;}
.y71_c01336{bottom:132.480000pt;}
.y72_c01336{bottom:133.120000pt;}
.y70_c01336{bottom:133.760000pt;}
.y6f_c01336{bottom:134.400000pt;}
.y6e_c01336{bottom:135.040000pt;}
.y73_c01336{bottom:135.680000pt;}
.y6d_c01336{bottom:183.040000pt;}
.y6a_c01336{bottom:218.240000pt;}
.y6b_c01336{bottom:219.520000pt;}
.y6c_c01336{bottom:220.800000pt;}
.y67_c01336{bottom:255.360000pt;}
.y68_c01336{bottom:256.000000pt;}
.y69_c01336{bottom:259.200000pt;}
.y66_c01336{bottom:259.840000pt;}
.y65_c01336{bottom:261.120000pt;}
.y63_c01336{bottom:293.760000pt;}
.y64_c01336{bottom:295.040000pt;}
.y62_c01336{bottom:296.960000pt;}
.y61_c01336{bottom:343.040000pt;}
.y60_c01336{bottom:343.680000pt;}
.y5f_c01336{bottom:362.880000pt;}
.y5e_c01336{bottom:364.160000pt;}
.y5d_c01336{bottom:364.800000pt;}
.y5b_c01336{bottom:383.360000pt;}
.y5c_c01336{bottom:384.000000pt;}
.y5a_c01336{bottom:384.640000pt;}
.y58_c01336{bottom:418.560000pt;}
.y59_c01336{bottom:421.120000pt;}
.y57_c01336{bottom:421.760000pt;}
.y56_c01336{bottom:422.400000pt;}
.y55_c01336{bottom:456.960000pt;}
.y52_c01336{bottom:457.600000pt;}
.y53_c01336{bottom:458.240000pt;}
.y51_c01336{bottom:460.160000pt;}
.y50_c01336{bottom:460.800000pt;}
.y54_c01336{bottom:462.080000pt;}
.y4f_c01336{bottom:478.720000pt;}
.y4d_c01336{bottom:479.360000pt;}
.y4e_c01336{bottom:480.000000pt;}
.y4c_c01336{bottom:480.640000pt;}
.y4b_c01336{bottom:517.120000pt;}
.y4a_c01336{bottom:518.400000pt;}
.y48_c01336{bottom:553.600000pt;}
.y49_c01336{bottom:554.880000pt;}
.y47_c01336{bottom:555.520000pt;}
.y46_c01336{bottom:556.160000pt;}
.y45_c01336{bottom:556.800000pt;}
.y42_c01336{bottom:601.600000pt;}
.y44_c01336{bottom:602.240000pt;}
.y41_c01336{bottom:602.880000pt;}
.y40_c01336{bottom:604.800000pt;}
.y43_c01336{bottom:606.080000pt;}
.y3a_c01336{bottom:624.000000pt;}
.y3c_c01336{bottom:624.640000pt;}
.y3b_c01336{bottom:625.920000pt;}
.y3f_c01336{bottom:629.760000pt;}
.y39_c01336{bottom:631.680000pt;}
.y3d_c01336{bottom:632.960000pt;}
.y37_c01336{bottom:633.600000pt;}
.y3e_c01336{bottom:634.880000pt;}
.y38_c01336{bottom:636.160000pt;}
.y31_c01336{bottom:652.800000pt;}
.y30_c01336{bottom:653.440000pt;}
.y32_c01336{bottom:655.360000pt;}
.y35_c01336{bottom:658.560000pt;}
.y36_c01336{bottom:659.200000pt;}
.y34_c01336{bottom:659.840000pt;}
.y2f_c01336{bottom:661.760000pt;}
.y33_c01336{bottom:662.400000pt;}
.y2d_c01336{bottom:663.040000pt;}
.y2e_c01336{bottom:664.960000pt;}
.y2c_c01336{bottom:687.360000pt;}
.y28_c01336{bottom:688.640000pt;}
.y27_c01336{bottom:689.280000pt;}
.y2a_c01336{bottom:689.920000pt;}
.y26_c01336{bottom:691.200000pt;}
.y2b_c01336{bottom:692.480000pt;}
.y29_c01336{bottom:693.120000pt;}
.y25_c01336{bottom:716.160000pt;}
.y23_c01336{bottom:716.800000pt;}
.y21_c01336{bottom:718.080000pt;}
.y24_c01336{bottom:718.720000pt;}
.y1e_c01336{bottom:719.360000pt;}
.y20_c01336{bottom:720.000000pt;}
.y22_c01336{bottom:721.280000pt;}
.y1f_c01336{bottom:721.920000pt;}
.y1d_c01336{bottom:763.520000pt;}
.y1a_c01336{bottom:764.160000pt;}
.y17_c01336{bottom:764.800000pt;}
.y1c_c01336{bottom:765.440000pt;}
.y1b_c01336{bottom:766.080000pt;}
.y19_c01336{bottom:767.360000pt;}
.y18_c01336{bottom:768.000000pt;}
.y15_c01336{bottom:800.640000pt;}
.y14_c01336{bottom:801.280000pt;}
.y10_c01336{bottom:801.920000pt;}
.y11_c01336{bottom:803.200000pt;}
.y16_c01336{bottom:803.840000pt;}
.y13_c01336{bottom:804.480000pt;}
.y12_c01336{bottom:805.120000pt;}
.yf_c01336{bottom:839.040000pt;}
.ye_c01336{bottom:839.680000pt;}
.yb_c01336{bottom:841.600000pt;}
.yd_c01336{bottom:842.240000pt;}
.yc_c01336{bottom:842.880000pt;}
.ya_c01336{bottom:843.520000pt;}
.y8_c01336{bottom:896.000000pt;}
.y9_c01336{bottom:896.640000pt;}
.y5_c01336{bottom:897.280000pt;}
.y4_c01336{bottom:897.920000pt;}
.y6_c01336{bottom:934.400000pt;}
.y7_c01336{bottom:935.040000pt;}
.y3_c01336{bottom:935.680000pt;}
.y2_c01336{bottom:936.320000pt;}
.y1_c01336{bottom:1008.000000pt;}
.hf_c01336{height:11.518750pt;}
.h10_c01336{height:13.822500pt;}
.h12_c01336{height:16.126250pt;}
.h14_c01336{height:20.733750pt;}
.hc_c01336{height:27.645000pt;}
.ha_c01336{height:29.948750pt;}
.h13_c01336{height:32.252500pt;}
.h11_c01336{height:34.556250pt;}
.hd_c01336{height:36.860000pt;}
.hb_c01336{height:39.163750pt;}
.h7_c01336{height:41.467500pt;}
.he_c01336{height:43.771250pt;}
.h6_c01336{height:46.075000pt;}
.h9_c01336{height:48.378750pt;}
.h8_c01336{height:50.682500pt;}
.h3_c01336{height:52.986250pt;}
.h5_c01336{height:55.290000pt;}
.h4_c01336{height:57.593750pt;}
.h2_c01336{height:59.897500pt;}
.h0_c01336{height:1041.920000pt;}
.h1_c01336{height:1042.000000pt;}
.w1_c01336{width:687.333333pt;}
.w0_c01336{width:687.360000pt;}
.x0_c01336{left:0.000000pt;}
.x12_c01336{left:36.480000pt;}
.x2_c01336{left:37.760000pt;}
.x23_c01336{left:54.400000pt;}
.x2e_c01336{left:62.720000pt;}
.x3e_c01336{left:71.040000pt;}
.x4e_c01336{left:72.320000pt;}
.x24_c01336{left:81.280000pt;}
.x3_c01336{left:92.160000pt;}
.x52_c01336{left:99.200000pt;}
.x25_c01336{left:101.760000pt;}
.x60_c01336{left:108.160000pt;}
.x1d_c01336{left:111.360000pt;}
.x13_c01336{left:119.680000pt;}
.x48_c01336{left:126.720000pt;}
.x64_c01336{left:128.000000pt;}
.x39_c01336{left:129.280000pt;}
.x9_c01336{left:130.560000pt;}
.x53_c01336{left:138.240000pt;}
.x1e_c01336{left:140.160000pt;}
.x32_c01336{left:149.120000pt;}
.x14_c01336{left:158.080000pt;}
.x26_c01336{left:159.360000pt;}
.x33_c01336{left:167.040000pt;}
.x41_c01336{left:177.920000pt;}
.x4_c01336{left:179.200000pt;}
.xa_c01336{left:188.800000pt;}
.x54_c01336{left:196.480000pt;}
.x27_c01336{left:206.720000pt;}
.x49_c01336{left:215.040000pt;}
.xb_c01336{left:225.920000pt;}
.x2f_c01336{left:227.200000pt;}
.x42_c01336{left:234.240000pt;}
.x34_c01336{left:236.160000pt;}
.x15_c01336{left:237.440000pt;}
.x4a_c01336{left:243.840000pt;}
.x61_c01336{left:253.440000pt;}
.x56_c01336{left:263.040000pt;}
.x16_c01336{left:264.320000pt;}
.x5a_c01336{left:282.240000pt;}
.x46_c01336{left:284.160000pt;}
.x28_c01336{left:285.440000pt;}
.x44_c01336{left:292.480000pt;}
.xc_c01336{left:293.760000pt;}
.x57_c01336{left:301.440000pt;}
.x1f_c01336{left:302.720000pt;}
.x29_c01336{left:312.960000pt;}
.x43_c01336{left:320.640000pt;}
.x30_c01336{left:322.560000pt;}
.x3a_c01336{left:330.880000pt;}
.x17_c01336{left:332.160000pt;}
.x5b_c01336{left:339.840000pt;}
.x37_c01336{left:341.120000pt;}
.x47_c01336{left:351.360000pt;}
.x2a_c01336{left:362.240000pt;}
.x45_c01336{left:368.640000pt;}
.x20_c01336{left:370.560000pt;}
.x4b_c01336{left:378.240000pt;}
.xd_c01336{left:390.400000pt;}
.x55_c01336{left:397.440000pt;}
.x5c_c01336{left:405.120000pt;}
.x4c_c01336{left:407.040000pt;}
.x18_c01336{left:408.320000pt;}
.x2b_c01336{left:410.240000pt;}
.x62_c01336{left:416.640000pt;}
.xe_c01336{left:418.560000pt;}
.x65_c01336{left:435.200000pt;}
.x35_c01336{left:437.120000pt;}
.x4f_c01336{left:445.440000pt;}
.x19_c01336{left:447.360000pt;}
.x38_c01336{left:455.680000pt;}
.x21_c01336{left:456.960000pt;}
.x3b_c01336{left:465.280000pt;}
.x5d_c01336{left:474.240000pt;}
.x36_c01336{left:476.160000pt;}
.xf_c01336{left:477.440000pt;}
.x58_c01336{left:482.560000pt;}
.x22_c01336{left:485.120000pt;}
.x31_c01336{left:486.400000pt;}
.x5e_c01336{left:492.160000pt;}
.x3f_c01336{left:494.720000pt;}
.x66_c01336{left:501.760000pt;}
.x4d_c01336{left:503.040000pt;}
.x5_c01336{left:506.240000pt;}
.x10_c01336{left:513.920000pt;}
.x59_c01336{left:520.960000pt;}
.x1a_c01336{left:523.520000pt;}
.x63_c01336{left:529.920000pt;}
.x40_c01336{left:531.200000pt;}
.x2c_c01336{left:533.760000pt;}
.x67_c01336{left:540.160000pt;}
.x1b_c01336{left:542.720000pt;}
.x2d_c01336{left:551.680000pt;}
.x50_c01336{left:560.640000pt;}
.x3c_c01336{left:570.240000pt;}
.x11_c01336{left:572.160000pt;}
.x1_c01336{left:577.920000pt;}
.x5f_c01336{left:579.200000pt;}
.x1c_c01336{left:581.760000pt;}
.x8_c01336{left:591.360000pt;}
.x6_c01336{left:593.280000pt;}
.x51_c01336{left:598.400000pt;}
.x3d_c01336{left:599.680000pt;}
.x7_c01336{left:621.440000pt;}
}





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

.ir_c01337:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01337{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01337;src:url('chunks/assets/font_13789d54817b84b5f1001af9.woff2')format("woff");}.ff1_c01337{font-family:ff1_c01337;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m54_c01337{transform:matrix(0.244200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244200,0.000000,0.000000,0.250000,0,0);}
.m16_c01337{transform:matrix(0.245700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245700,0.000000,0.000000,0.250000,0,0);}
.m33_c01337{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m51_c01337{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);}
.m50_c01337{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);}
.m55_c01337{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);}
.m56_c01337{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);}
.m4f_c01337{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m47_c01337{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m4_c01337{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);}
.m2b_c01337{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m22_c01337{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01337{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mc_c01337{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01337{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m17_c01337{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m49_c01337{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.md_c01337{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01337{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m28_c01337{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);}
.m3d_c01337{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);}
.m4d_c01337{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m15_c01337{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01337{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);}
.m2f_c01337{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01337{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m7_c01337{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m39_c01337{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m5_c01337{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);}
.m52_c01337{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m41_c01337{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01337{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01337{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);}
.m0_c01337{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);}
.m40_c01337{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.mf_c01337{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);}
.m19_c01337{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);}
.m4e_c01337{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);}
.m30_c01337{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);}
.m48_c01337{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m43_c01337{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m34_c01337{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m25_c01337{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_c01337{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m36_c01337{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m11_c01337{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01337{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_c01337{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m20_c01337{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m42_c01337{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01337{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m14_c01337{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);}
.ma_c01337{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m13_c01337{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01337{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m2_c01337{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01337{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m31_c01337{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01337{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);}
.m8_c01337{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m46_c01337{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m45_c01337{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);}
.m9_c01337{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01337{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m44_c01337{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m1_c01337{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01337{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);}
.m23_c01337{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);}
.m53_c01337{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m12_c01337{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m21_c01337{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m6_c01337{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m26_c01337{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.me_c01337{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_c01337{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m18_c01337{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m35_c01337{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01337{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);}
.m3_c01337{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);}
.m38_c01337{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);}
.m3e_c01337{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m32_c01337{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m37_c01337{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01337{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);}
.m57_c01337{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);}
.m29_c01337{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);}
.mb_c01337{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01337{transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);}
.v0_c01337{vertical-align:0.000000px;}
.ls0_c01337{letter-spacing:0.000000px;}
.sc__c01337{text-shadow:none;}
.sc0_c01337{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01337{-webkit-text-stroke:0px transparent;}
.sc0_c01337{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01337{word-spacing:0.000000px;}
.fc0_c01337{color:transparent;}
.fsc_c01337{font-size:34.560000px;}
.fs3_c01337{font-size:37.440000px;}
.fs7_c01337{font-size:40.320000px;}
.fsb_c01337{font-size:43.200000px;}
.fsf_c01337{font-size:46.080000px;}
.fs2_c01337{font-size:48.960000px;}
.fs1_c01337{font-size:51.840000px;}
.fs6_c01337{font-size:54.720000px;}
.fs0_c01337{font-size:57.600000px;}
.fs8_c01337{font-size:60.480000px;}
.fs5_c01337{font-size:63.360000px;}
.fs4_c01337{font-size:66.240000px;}
.fse_c01337{font-size:69.120000px;}
.fsa_c01337{font-size:72.000000px;}
.fs9_c01337{font-size:74.880000px;}
.fs10_c01337{font-size:77.760000px;}
.fsd_c01337{font-size:83.520000px;}
.y0_c01337{bottom:0.000000px;}
.y29_c01337{bottom:43.920000px;}
.y2a_c01337{bottom:44.640000px;}
.y2b_c01337{bottom:47.520000px;}
.y2c_c01337{bottom:48.240000px;}
.y2d_c01337{bottom:48.960000px;}
.y2e_c01337{bottom:49.680000px;}
.y2f_c01337{bottom:50.400000px;}
.y25_c01337{bottom:86.400000px;}
.y27_c01337{bottom:89.280000px;}
.y24_c01337{bottom:90.000000px;}
.y23_c01337{bottom:90.720000px;}
.y26_c01337{bottom:91.440000px;}
.y28_c01337{bottom:92.880000px;}
.y22_c01337{bottom:93.600000px;}
.y1e_c01337{bottom:131.040000px;}
.y20_c01337{bottom:131.760000px;}
.y21_c01337{bottom:132.480000px;}
.y1d_c01337{bottom:133.200000px;}
.y1c_c01337{bottom:133.920000px;}
.y1f_c01337{bottom:134.640000px;}
.y1b_c01337{bottom:136.080000px;}
.y17_c01337{bottom:174.240000px;}
.y19_c01337{bottom:174.960000px;}
.y16_c01337{bottom:176.400000px;}
.y18_c01337{bottom:177.840000px;}
.y1a_c01337{bottom:178.560000px;}
.y6d_c01337{bottom:227.520000px;}
.y6f_c01337{bottom:228.240000px;}
.y6e_c01337{bottom:230.400000px;}
.y70_c01337{bottom:231.120000px;}
.y71_c01337{bottom:231.840000px;}
.y68_c01337{bottom:271.440000px;}
.y69_c01337{bottom:272.160000px;}
.y67_c01337{bottom:272.880000px;}
.y66_c01337{bottom:273.600000px;}
.y6a_c01337{bottom:274.320000px;}
.y6b_c01337{bottom:275.040000px;}
.y6c_c01337{bottom:275.760000px;}
.y63_c01337{bottom:314.640000px;}
.y65_c01337{bottom:316.080000px;}
.y62_c01337{bottom:316.800000px;}
.y61_c01337{bottom:317.520000px;}
.y64_c01337{bottom:318.240000px;}
.y5d_c01337{bottom:368.640000px;}
.y60_c01337{bottom:370.800000px;}
.y5f_c01337{bottom:371.520000px;}
.y5e_c01337{bottom:372.240000px;}
.y5a_c01337{bottom:411.120000px;}
.y5b_c01337{bottom:411.840000px;}
.y59_c01337{bottom:414.000000px;}
.y5c_c01337{bottom:414.720000px;}
.y58_c01337{bottom:415.440000px;}
.y55_c01337{bottom:453.600000px;}
.y56_c01337{bottom:455.040000px;}
.y57_c01337{bottom:455.760000px;}
.y53_c01337{bottom:457.200000px;}
.y54_c01337{bottom:457.920000px;}
.y51_c01337{bottom:509.760000px;}
.y52_c01337{bottom:510.480000px;}
.y4f_c01337{bottom:551.520000px;}
.y50_c01337{bottom:554.400000px;}
.y4e_c01337{bottom:555.120000px;}
.y4d_c01337{bottom:555.840000px;}
.y4c_c01337{bottom:594.720000px;}
.y4a_c01337{bottom:597.600000px;}
.y4b_c01337{bottom:598.320000px;}
.y46_c01337{bottom:637.920000px;}
.y49_c01337{bottom:640.080000px;}
.y47_c01337{bottom:640.800000px;}
.y48_c01337{bottom:641.520000px;}
.y44_c01337{bottom:682.560000px;}
.y45_c01337{bottom:683.280000px;}
.y43_c01337{bottom:684.000000px;}
.y42_c01337{bottom:722.160000px;}
.y3c_c01337{bottom:722.880000px;}
.y3d_c01337{bottom:723.600000px;}
.y3e_c01337{bottom:724.320000px;}
.y40_c01337{bottom:725.040000px;}
.y41_c01337{bottom:725.760000px;}
.y3f_c01337{bottom:726.480000px;}
.y3b_c01337{bottom:727.200000px;}
.y36_c01337{bottom:766.080000px;}
.y37_c01337{bottom:766.800000px;}
.y38_c01337{bottom:767.520000px;}
.y35_c01337{bottom:768.960000px;}
.y3a_c01337{bottom:769.680000px;}
.y39_c01337{bottom:770.400000px;}
.y32_c01337{bottom:810.720000px;}
.y34_c01337{bottom:811.440000px;}
.y33_c01337{bottom:812.160000px;}
.y31_c01337{bottom:812.880000px;}
.y30_c01337{bottom:813.600000px;}
.y15_c01337{bottom:865.440000px;}
.y13_c01337{bottom:866.880000px;}
.y14_c01337{bottom:867.600000px;}
.y12_c01337{bottom:907.920000px;}
.y11_c01337{bottom:908.640000px;}
.y10_c01337{bottom:909.360000px;}
.yf_c01337{bottom:910.080000px;}
.yb_c01337{bottom:961.200000px;}
.ye_c01337{bottom:962.640000px;}
.yc_c01337{bottom:964.080000px;}
.yd_c01337{bottom:964.800000px;}
.y9_c01337{bottom:1002.240000px;}
.y6_c01337{bottom:1002.960000px;}
.y7_c01337{bottom:1003.680000px;}
.ya_c01337{bottom:1005.120000px;}
.y8_c01337{bottom:1007.280000px;}
.y3_c01337{bottom:1047.600000px;}
.y4_c01337{bottom:1048.320000px;}
.y1_c01337{bottom:1049.040000px;}
.y5_c01337{bottom:1049.760000px;}
.y2_c01337{bottom:1050.480000px;}
.he_c01337{height:31.100625px;}
.h5_c01337{height:33.692344px;}
.h9_c01337{height:36.284062px;}
.hd_c01337{height:38.875781px;}
.h11_c01337{height:41.467500px;}
.h4_c01337{height:44.059219px;}
.h3_c01337{height:46.650937px;}
.h8_c01337{height:49.242656px;}
.h2_c01337{height:51.834375px;}
.ha_c01337{height:54.426094px;}
.h7_c01337{height:57.017812px;}
.h6_c01337{height:59.609531px;}
.h10_c01337{height:62.201250px;}
.hc_c01337{height:64.792969px;}
.hb_c01337{height:67.384687px;}
.h12_c01337{height:69.976406px;}
.hf_c01337{height:75.159844px;}
.h1_c01337{height:1150.500000px;}
.h0_c01337{height:1150.560000px;}
.w1_c01337{width:768.000000px;}
.w0_c01337{width:768.240000px;}
.x0_c01337{left:0.000000px;}
.x1_c01337{left:38.160000px;}
.x58_c01337{left:39.600000px;}
.x27_c01337{left:41.040000px;}
.x37_c01337{left:43.200000px;}
.x40_c01337{left:66.960000px;}
.x2f_c01337{left:69.120000px;}
.x47_c01337{left:77.760000px;}
.x2_c01337{left:79.200000px;}
.x50_c01337{left:80.640000px;}
.x59_c01337{left:88.560000px;}
.x1c_c01337{left:100.800000px;}
.x13_c01337{left:110.160000px;}
.x30_c01337{left:120.960000px;}
.xe_c01337{left:123.120000px;}
.x28_c01337{left:131.760000px;}
.x1d_c01337{left:133.920000px;}
.x53_c01337{left:142.560000px;}
.x17_c01337{left:144.000000px;}
.x5e_c01337{left:153.360000px;}
.x3_c01337{left:164.880000px;}
.x20_c01337{left:174.960000px;}
.x14_c01337{left:176.400000px;}
.x4_c01337{left:186.480000px;}
.x5f_c01337{left:198.720000px;}
.x48_c01337{left:207.360000px;}
.x15_c01337{left:209.520000px;}
.x18_c01337{left:218.160000px;}
.x5_c01337{left:220.320000px;}
.x5c_c01337{left:228.960000px;}
.x38_c01337{left:239.760000px;}
.x4c_c01337{left:241.200000px;}
.x16_c01337{left:242.640000px;}
.x54_c01337{left:250.560000px;}
.x1e_c01337{left:252.720000px;}
.x5a_c01337{left:261.360000px;}
.x31_c01337{left:262.800000px;}
.x21_c01337{left:272.880000px;}
.x19_c01337{left:274.320000px;}
.x43_c01337{left:283.680000px;}
.x6_c01337{left:285.120000px;}
.x29_c01337{left:293.760000px;}
.x5b_c01337{left:295.920000px;}
.x32_c01337{left:305.280000px;}
.x22_c01337{left:306.720000px;}
.x7_c01337{left:316.800000px;}
.x4d_c01337{left:326.160000px;}
.x1f_c01337{left:328.320000px;}
.x2a_c01337{left:338.400000px;}
.x41_c01337{left:348.480000px;}
.x55_c01337{left:359.280000px;}
.x8_c01337{left:360.720000px;}
.x33_c01337{left:370.800000px;}
.x1a_c01337{left:381.600000px;}
.x4e_c01337{left:391.680000px;}
.x60_c01337{left:393.120000px;}
.x56_c01337{left:402.480000px;}
.x46_c01337{left:413.280000px;}
.x39_c01337{left:414.720000px;}
.x2b_c01337{left:424.080000px;}
.x23_c01337{left:434.880000px;}
.xf_c01337{left:437.040000px;}
.x3a_c01337{left:444.960000px;}
.x49_c01337{left:446.400000px;}
.x4f_c01337{left:456.480000px;}
.x9_c01337{left:457.920000px;}
.x34_c01337{left:466.560000px;}
.x57_c01337{left:477.360000px;}
.x4a_c01337{left:478.800000px;}
.x2c_c01337{left:488.160000px;}
.xa_c01337{left:490.320000px;}
.x44_c01337{left:498.960000px;}
.x61_c01337{left:500.400000px;}
.x2d_c01337{left:509.760000px;}
.x3c_c01337{left:511.200000px;}
.x10_c01337{left:522.720000px;}
.x24_c01337{left:531.360000px;}
.xb_c01337{left:533.520000px;}
.x1b_c01337{left:542.160000px;}
.x3d_c01337{left:553.680000px;}
.x11_c01337{left:555.120000px;}
.x3b_c01337{left:563.760000px;}
.x25_c01337{left:573.840000px;}
.x42_c01337{left:575.280000px;}
.x4b_c01337{left:595.440000px;}
.x45_c01337{left:597.600000px;}
.x35_c01337{left:605.520000px;}
.x51_c01337{left:617.760000px;}
.xc_c01337{left:619.920000px;}
.x36_c01337{left:637.920000px;}
.x2e_c01337{left:639.360000px;}
.x3e_c01337{left:640.800000px;}
.x26_c01337{left:650.160000px;}
.x12_c01337{left:652.320000px;}
.x52_c01337{left:660.960000px;}
.xd_c01337{left:663.120000px;}
.x5d_c01337{left:670.320000px;}
.x3f_c01337{left:673.200000px;}
@media print{
.v0_c01337{vertical-align:0.000000pt;}
.ls0_c01337{letter-spacing:0.000000pt;}
.ws0_c01337{word-spacing:0.000000pt;}
.fsc_c01337{font-size:30.720000pt;}
.fs3_c01337{font-size:33.280000pt;}
.fs7_c01337{font-size:35.840000pt;}
.fsb_c01337{font-size:38.400000pt;}
.fsf_c01337{font-size:40.960000pt;}
.fs2_c01337{font-size:43.520000pt;}
.fs1_c01337{font-size:46.080000pt;}
.fs6_c01337{font-size:48.640000pt;}
.fs0_c01337{font-size:51.200000pt;}
.fs8_c01337{font-size:53.760000pt;}
.fs5_c01337{font-size:56.320000pt;}
.fs4_c01337{font-size:58.880000pt;}
.fse_c01337{font-size:61.440000pt;}
.fsa_c01337{font-size:64.000000pt;}
.fs9_c01337{font-size:66.560000pt;}
.fs10_c01337{font-size:69.120000pt;}
.fsd_c01337{font-size:74.240000pt;}
.y0_c01337{bottom:0.000000pt;}
.y29_c01337{bottom:39.040000pt;}
.y2a_c01337{bottom:39.680000pt;}
.y2b_c01337{bottom:42.240000pt;}
.y2c_c01337{bottom:42.880000pt;}
.y2d_c01337{bottom:43.520000pt;}
.y2e_c01337{bottom:44.160000pt;}
.y2f_c01337{bottom:44.800000pt;}
.y25_c01337{bottom:76.800000pt;}
.y27_c01337{bottom:79.360000pt;}
.y24_c01337{bottom:80.000000pt;}
.y23_c01337{bottom:80.640000pt;}
.y26_c01337{bottom:81.280000pt;}
.y28_c01337{bottom:82.560000pt;}
.y22_c01337{bottom:83.200000pt;}
.y1e_c01337{bottom:116.480000pt;}
.y20_c01337{bottom:117.120000pt;}
.y21_c01337{bottom:117.760000pt;}
.y1d_c01337{bottom:118.400000pt;}
.y1c_c01337{bottom:119.040000pt;}
.y1f_c01337{bottom:119.680000pt;}
.y1b_c01337{bottom:120.960000pt;}
.y17_c01337{bottom:154.880000pt;}
.y19_c01337{bottom:155.520000pt;}
.y16_c01337{bottom:156.800000pt;}
.y18_c01337{bottom:158.080000pt;}
.y1a_c01337{bottom:158.720000pt;}
.y6d_c01337{bottom:202.240000pt;}
.y6f_c01337{bottom:202.880000pt;}
.y6e_c01337{bottom:204.800000pt;}
.y70_c01337{bottom:205.440000pt;}
.y71_c01337{bottom:206.080000pt;}
.y68_c01337{bottom:241.280000pt;}
.y69_c01337{bottom:241.920000pt;}
.y67_c01337{bottom:242.560000pt;}
.y66_c01337{bottom:243.200000pt;}
.y6a_c01337{bottom:243.840000pt;}
.y6b_c01337{bottom:244.480000pt;}
.y6c_c01337{bottom:245.120000pt;}
.y63_c01337{bottom:279.680000pt;}
.y65_c01337{bottom:280.960000pt;}
.y62_c01337{bottom:281.600000pt;}
.y61_c01337{bottom:282.240000pt;}
.y64_c01337{bottom:282.880000pt;}
.y5d_c01337{bottom:327.680000pt;}
.y60_c01337{bottom:329.600000pt;}
.y5f_c01337{bottom:330.240000pt;}
.y5e_c01337{bottom:330.880000pt;}
.y5a_c01337{bottom:365.440000pt;}
.y5b_c01337{bottom:366.080000pt;}
.y59_c01337{bottom:368.000000pt;}
.y5c_c01337{bottom:368.640000pt;}
.y58_c01337{bottom:369.280000pt;}
.y55_c01337{bottom:403.200000pt;}
.y56_c01337{bottom:404.480000pt;}
.y57_c01337{bottom:405.120000pt;}
.y53_c01337{bottom:406.400000pt;}
.y54_c01337{bottom:407.040000pt;}
.y51_c01337{bottom:453.120000pt;}
.y52_c01337{bottom:453.760000pt;}
.y4f_c01337{bottom:490.240000pt;}
.y50_c01337{bottom:492.800000pt;}
.y4e_c01337{bottom:493.440000pt;}
.y4d_c01337{bottom:494.080000pt;}
.y4c_c01337{bottom:528.640000pt;}
.y4a_c01337{bottom:531.200000pt;}
.y4b_c01337{bottom:531.840000pt;}
.y46_c01337{bottom:567.040000pt;}
.y49_c01337{bottom:568.960000pt;}
.y47_c01337{bottom:569.600000pt;}
.y48_c01337{bottom:570.240000pt;}
.y44_c01337{bottom:606.720000pt;}
.y45_c01337{bottom:607.360000pt;}
.y43_c01337{bottom:608.000000pt;}
.y42_c01337{bottom:641.920000pt;}
.y3c_c01337{bottom:642.560000pt;}
.y3d_c01337{bottom:643.200000pt;}
.y3e_c01337{bottom:643.840000pt;}
.y40_c01337{bottom:644.480000pt;}
.y41_c01337{bottom:645.120000pt;}
.y3f_c01337{bottom:645.760000pt;}
.y3b_c01337{bottom:646.400000pt;}
.y36_c01337{bottom:680.960000pt;}
.y37_c01337{bottom:681.600000pt;}
.y38_c01337{bottom:682.240000pt;}
.y35_c01337{bottom:683.520000pt;}
.y3a_c01337{bottom:684.160000pt;}
.y39_c01337{bottom:684.800000pt;}
.y32_c01337{bottom:720.640000pt;}
.y34_c01337{bottom:721.280000pt;}
.y33_c01337{bottom:721.920000pt;}
.y31_c01337{bottom:722.560000pt;}
.y30_c01337{bottom:723.200000pt;}
.y15_c01337{bottom:769.280000pt;}
.y13_c01337{bottom:770.560000pt;}
.y14_c01337{bottom:771.200000pt;}
.y12_c01337{bottom:807.040000pt;}
.y11_c01337{bottom:807.680000pt;}
.y10_c01337{bottom:808.320000pt;}
.yf_c01337{bottom:808.960000pt;}
.yb_c01337{bottom:854.400000pt;}
.ye_c01337{bottom:855.680000pt;}
.yc_c01337{bottom:856.960000pt;}
.yd_c01337{bottom:857.600000pt;}
.y9_c01337{bottom:890.880000pt;}
.y6_c01337{bottom:891.520000pt;}
.y7_c01337{bottom:892.160000pt;}
.ya_c01337{bottom:893.440000pt;}
.y8_c01337{bottom:895.360000pt;}
.y3_c01337{bottom:931.200000pt;}
.y4_c01337{bottom:931.840000pt;}
.y1_c01337{bottom:932.480000pt;}
.y5_c01337{bottom:933.120000pt;}
.y2_c01337{bottom:933.760000pt;}
.he_c01337{height:27.645000pt;}
.h5_c01337{height:29.948750pt;}
.h9_c01337{height:32.252500pt;}
.hd_c01337{height:34.556250pt;}
.h11_c01337{height:36.860000pt;}
.h4_c01337{height:39.163750pt;}
.h3_c01337{height:41.467500pt;}
.h8_c01337{height:43.771250pt;}
.h2_c01337{height:46.075000pt;}
.ha_c01337{height:48.378750pt;}
.h7_c01337{height:50.682500pt;}
.h6_c01337{height:52.986250pt;}
.h10_c01337{height:55.290000pt;}
.hc_c01337{height:57.593750pt;}
.hb_c01337{height:59.897500pt;}
.h12_c01337{height:62.201250pt;}
.hf_c01337{height:66.808750pt;}
.h1_c01337{height:1022.666667pt;}
.h0_c01337{height:1022.720000pt;}
.w1_c01337{width:682.666667pt;}
.w0_c01337{width:682.880000pt;}
.x0_c01337{left:0.000000pt;}
.x1_c01337{left:33.920000pt;}
.x58_c01337{left:35.200000pt;}
.x27_c01337{left:36.480000pt;}
.x37_c01337{left:38.400000pt;}
.x40_c01337{left:59.520000pt;}
.x2f_c01337{left:61.440000pt;}
.x47_c01337{left:69.120000pt;}
.x2_c01337{left:70.400000pt;}
.x50_c01337{left:71.680000pt;}
.x59_c01337{left:78.720000pt;}
.x1c_c01337{left:89.600000pt;}
.x13_c01337{left:97.920000pt;}
.x30_c01337{left:107.520000pt;}
.xe_c01337{left:109.440000pt;}
.x28_c01337{left:117.120000pt;}
.x1d_c01337{left:119.040000pt;}
.x53_c01337{left:126.720000pt;}
.x17_c01337{left:128.000000pt;}
.x5e_c01337{left:136.320000pt;}
.x3_c01337{left:146.560000pt;}
.x20_c01337{left:155.520000pt;}
.x14_c01337{left:156.800000pt;}
.x4_c01337{left:165.760000pt;}
.x5f_c01337{left:176.640000pt;}
.x48_c01337{left:184.320000pt;}
.x15_c01337{left:186.240000pt;}
.x18_c01337{left:193.920000pt;}
.x5_c01337{left:195.840000pt;}
.x5c_c01337{left:203.520000pt;}
.x38_c01337{left:213.120000pt;}
.x4c_c01337{left:214.400000pt;}
.x16_c01337{left:215.680000pt;}
.x54_c01337{left:222.720000pt;}
.x1e_c01337{left:224.640000pt;}
.x5a_c01337{left:232.320000pt;}
.x31_c01337{left:233.600000pt;}
.x21_c01337{left:242.560000pt;}
.x19_c01337{left:243.840000pt;}
.x43_c01337{left:252.160000pt;}
.x6_c01337{left:253.440000pt;}
.x29_c01337{left:261.120000pt;}
.x5b_c01337{left:263.040000pt;}
.x32_c01337{left:271.360000pt;}
.x22_c01337{left:272.640000pt;}
.x7_c01337{left:281.600000pt;}
.x4d_c01337{left:289.920000pt;}
.x1f_c01337{left:291.840000pt;}
.x2a_c01337{left:300.800000pt;}
.x41_c01337{left:309.760000pt;}
.x55_c01337{left:319.360000pt;}
.x8_c01337{left:320.640000pt;}
.x33_c01337{left:329.600000pt;}
.x1a_c01337{left:339.200000pt;}
.x4e_c01337{left:348.160000pt;}
.x60_c01337{left:349.440000pt;}
.x56_c01337{left:357.760000pt;}
.x46_c01337{left:367.360000pt;}
.x39_c01337{left:368.640000pt;}
.x2b_c01337{left:376.960000pt;}
.x23_c01337{left:386.560000pt;}
.xf_c01337{left:388.480000pt;}
.x3a_c01337{left:395.520000pt;}
.x49_c01337{left:396.800000pt;}
.x4f_c01337{left:405.760000pt;}
.x9_c01337{left:407.040000pt;}
.x34_c01337{left:414.720000pt;}
.x57_c01337{left:424.320000pt;}
.x4a_c01337{left:425.600000pt;}
.x2c_c01337{left:433.920000pt;}
.xa_c01337{left:435.840000pt;}
.x44_c01337{left:443.520000pt;}
.x61_c01337{left:444.800000pt;}
.x2d_c01337{left:453.120000pt;}
.x3c_c01337{left:454.400000pt;}
.x10_c01337{left:464.640000pt;}
.x24_c01337{left:472.320000pt;}
.xb_c01337{left:474.240000pt;}
.x1b_c01337{left:481.920000pt;}
.x3d_c01337{left:492.160000pt;}
.x11_c01337{left:493.440000pt;}
.x3b_c01337{left:501.120000pt;}
.x25_c01337{left:510.080000pt;}
.x42_c01337{left:511.360000pt;}
.x4b_c01337{left:529.280000pt;}
.x45_c01337{left:531.200000pt;}
.x35_c01337{left:538.240000pt;}
.x51_c01337{left:549.120000pt;}
.xc_c01337{left:551.040000pt;}
.x36_c01337{left:567.040000pt;}
.x2e_c01337{left:568.320000pt;}
.x3e_c01337{left:569.600000pt;}
.x26_c01337{left:577.920000pt;}
.x12_c01337{left:579.840000pt;}
.x52_c01337{left:587.520000pt;}
.xd_c01337{left:589.440000pt;}
.x5d_c01337{left:595.840000pt;}
.x3f_c01337{left:598.400000pt;}
}





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

.ir_c01338:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01338{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01338;src:url('chunks/assets/font_5af6a59e0ec0a808ea69045e.woff2')format("woff");}.ff1_c01338{font-family:ff1_c01338;line-height:1.109863;font-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_c01338{transform:matrix(0.228150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228150,0.000000,0.000000,0.250000,0,0);}
.m1e_c01338{transform:matrix(0.230675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230675,0.000000,0.000000,0.250000,0,0);}
.m4a_c01338{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);}
.m39_c01338{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01338{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);}
.m52_c01338{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);}
.m4d_c01338{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);}
.m51_c01338{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);}
.m3c_c01338{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_c01338{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);}
.m61_c01338{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);}
.m5b_c01338{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m46_c01338{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.md_c01338{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m5a_c01338{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01338{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01338{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m45_c01338{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m43_c01338{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01338{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.me_c01338{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mc_c01338{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.ma_c01338{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m54_c01338{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m3_c01338{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m20_c01338{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);}
.m4c_c01338{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);}
.m40_c01338{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_c01338{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m5f_c01338{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);}
.m49_c01338{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m12_c01338{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_c01338{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m23_c01338{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m19_c01338{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m48_c01338{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);}
.m6_c01338{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);}
.m0_c01338{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m11_c01338{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m50_c01338{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_c01338{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01338{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);}
.m3b_c01338{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m53_c01338{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m1_c01338{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);}
.m2c_c01338{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);}
.m5d_c01338{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);}
.m59_c01338{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01338{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m8_c01338{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m30_c01338{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);}
.m47_c01338{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m15_c01338{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);}
.m63_c01338{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m29_c01338{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);}
.m31_c01338{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01338{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.mb_c01338{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m24_c01338{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);}
.m2f_c01338{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m55_c01338{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m18_c01338{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);}
.m57_c01338{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m41_c01338{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);}
.m34_c01338{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m62_c01338{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m5e_c01338{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m28_c01338{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m44_c01338{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);}
.m35_c01338{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m56_c01338{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m58_c01338{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m5c_c01338{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);}
.m37_c01338{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m33_c01338{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m14_c01338{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01338{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m42_c01338{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m13_c01338{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);}
.m5_c01338{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01338{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m22_c01338{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);}
.m27_c01338{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m36_c01338{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m25_c01338{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);}
.m2e_c01338{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01338{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m21_c01338{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);}
.m3e_c01338{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.mf_c01338{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);}
.m2_c01338{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m38_c01338{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01338{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m17_c01338{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m16_c01338{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);}
.m60_c01338{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01338{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01338{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m4_c01338{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m9_c01338{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.v1_c01338{vertical-align:-2.880000px;}
.v0_c01338{vertical-align:0.000000px;}
.v2_c01338{vertical-align:2.880000px;}
.ls0_c01338{letter-spacing:0.000000px;}
.sc__c01338{text-shadow:none;}
.sc0_c01338{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01338{-webkit-text-stroke:0px transparent;}
.sc0_c01338{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01338{word-spacing:-7.176960px;}
.ws0_c01338{word-spacing:-5.239920px;}
.ws2_c01338{word-spacing:-1.554240px;}
.ws3_c01338{word-spacing:0.000000px;}
.fc0_c01338{color:transparent;}
.fs4_c01338{font-size:34.560000px;}
.fs7_c01338{font-size:37.440000px;}
.fs9_c01338{font-size:40.320000px;}
.fse_c01338{font-size:43.200000px;}
.fsb_c01338{font-size:46.080000px;}
.fs6_c01338{font-size:48.960000px;}
.fs2_c01338{font-size:51.840000px;}
.fsc_c01338{font-size:54.720000px;}
.fsd_c01338{font-size:57.600000px;}
.fs3_c01338{font-size:60.480000px;}
.fs5_c01338{font-size:63.360000px;}
.fs1_c01338{font-size:66.240000px;}
.fs8_c01338{font-size:69.120000px;}
.fs0_c01338{font-size:72.000000px;}
.fsa_c01338{font-size:74.880000px;}
.y0_c01338{bottom:0.000000px;}
.y86_c01338{bottom:38.160000px;}
.y85_c01338{bottom:39.600000px;}
.y84_c01338{bottom:41.040000px;}
.y88_c01338{bottom:41.760000px;}
.y83_c01338{bottom:42.480000px;}
.y87_c01338{bottom:43.200000px;}
.y82_c01338{bottom:43.920000px;}
.y89_c01338{bottom:44.640000px;}
.y7d_c01338{bottom:81.360000px;}
.y7f_c01338{bottom:82.800000px;}
.y80_c01338{bottom:83.520000px;}
.y7e_c01338{bottom:84.240000px;}
.y7c_c01338{bottom:86.400000px;}
.y81_c01338{bottom:87.840000px;}
.y78_c01338{bottom:124.560000px;}
.y77_c01338{bottom:125.280000px;}
.y7b_c01338{bottom:126.720000px;}
.y79_c01338{bottom:127.440000px;}
.y7a_c01338{bottom:128.160000px;}
.y76_c01338{bottom:131.040000px;}
.y72_c01338{bottom:167.040000px;}
.y75_c01338{bottom:168.480000px;}
.y74_c01338{bottom:170.640000px;}
.y73_c01338{bottom:171.360000px;}
.y71_c01338{bottom:172.080000px;}
.y70_c01338{bottom:172.800000px;}
.y6e_c01338{bottom:212.400000px;}
.y6d_c01338{bottom:213.120000px;}
.y6c_c01338{bottom:213.840000px;}
.y6b_c01338{bottom:214.560000px;}
.y6a_c01338{bottom:216.000000px;}
.y6f_c01338{bottom:216.720000px;}
.y69_c01338{bottom:217.440000px;}
.y67_c01338{bottom:255.600000px;}
.y68_c01338{bottom:256.320000px;}
.y65_c01338{bottom:257.040000px;}
.y64_c01338{bottom:257.760000px;}
.y66_c01338{bottom:258.480000px;}
.y63_c01338{bottom:259.200000px;}
.y62_c01338{bottom:259.920000px;}
.y5e_c01338{bottom:298.800000px;}
.y61_c01338{bottom:300.240000px;}
.y5d_c01338{bottom:300.960000px;}
.y5f_c01338{bottom:301.680000px;}
.y60_c01338{bottom:302.400000px;}
.y5a_c01338{bottom:351.360000px;}
.y5c_c01338{bottom:352.800000px;}
.y59_c01338{bottom:353.520000px;}
.y58_c01338{bottom:354.240000px;}
.y5b_c01338{bottom:354.960000px;}
.y57_c01338{bottom:355.680000px;}
.y51_c01338{bottom:394.560000px;}
.y54_c01338{bottom:395.280000px;}
.y52_c01338{bottom:396.000000px;}
.y55_c01338{bottom:396.720000px;}
.y53_c01338{bottom:398.160000px;}
.y56_c01338{bottom:399.600000px;}
.y4d_c01338{bottom:437.760000px;}
.y4e_c01338{bottom:438.480000px;}
.y50_c01338{bottom:439.200000px;}
.y4c_c01338{bottom:439.920000px;}
.y4f_c01338{bottom:442.080000px;}
.y48_c01338{bottom:480.960000px;}
.y4a_c01338{bottom:481.680000px;}
.y49_c01338{bottom:483.840000px;}
.y47_c01338{bottom:484.560000px;}
.y4b_c01338{bottom:485.280000px;}
.y43_c01338{bottom:523.440000px;}
.y45_c01338{bottom:524.160000px;}
.y41_c01338{bottom:524.880000px;}
.y42_c01338{bottom:526.320000px;}
.y44_c01338{bottom:527.040000px;}
.y46_c01338{bottom:528.480000px;}
.y3e_c01338{bottom:566.640000px;}
.y40_c01338{bottom:567.360000px;}
.y3f_c01338{bottom:569.520000px;}
.y3d_c01338{bottom:570.240000px;}
.y3b_c01338{bottom:609.840000px;}
.y3a_c01338{bottom:610.560000px;}
.y3c_c01338{bottom:612.000000px;}
.y39_c01338{bottom:612.720000px;}
.y38_c01338{bottom:613.440000px;}
.y36_c01338{bottom:653.040000px;}
.y35_c01338{bottom:653.760000px;}
.y37_c01338{bottom:655.920000px;}
.y34_c01338{bottom:656.640000px;}
.y32_c01338{bottom:696.960000px;}
.y31_c01338{bottom:699.120000px;}
.y33_c01338{bottom:699.840000px;}
.y2f_c01338{bottom:739.440000px;}
.y2e_c01338{bottom:740.160000px;}
.y30_c01338{bottom:741.600000px;}
.y2c_c01338{bottom:742.320000px;}
.y2d_c01338{bottom:743.040000px;}
.y2b_c01338{bottom:782.640000px;}
.y29_c01338{bottom:783.360000px;}
.y26_c01338{bottom:784.080000px;}
.y25_c01338{bottom:784.800000px;}
.y27_c01338{bottom:785.520000px;}
.y28_c01338{bottom:786.240000px;}
.y2a_c01338{bottom:786.960000px;}
.y23_c01338{bottom:825.120000px;}
.y22_c01338{bottom:826.560000px;}
.y20_c01338{bottom:828.000000px;}
.y24_c01338{bottom:828.720000px;}
.y21_c01338{bottom:829.440000px;}
.y1b_c01338{bottom:869.040000px;}
.y1e_c01338{bottom:869.760000px;}
.y1f_c01338{bottom:871.200000px;}
.y1c_c01338{bottom:871.920000px;}
.y1d_c01338{bottom:872.640000px;}
.y15_c01338{bottom:911.520000px;}
.y1a_c01338{bottom:912.240000px;}
.y18_c01338{bottom:912.960000px;}
.y19_c01338{bottom:914.400000px;}
.y16_c01338{bottom:915.120000px;}
.y17_c01338{bottom:915.840000px;}
.y14_c01338{bottom:953.280000px;}
.y12_c01338{bottom:954.720000px;}
.y11_c01338{bottom:955.440000px;}
.y13_c01338{bottom:956.160000px;}
.ye_c01338{bottom:956.880000px;}
.y10_c01338{bottom:957.600000px;}
.yf_c01338{bottom:958.320000px;}
.y8_c01338{bottom:996.480000px;}
.yb_c01338{bottom:997.200000px;}
.ya_c01338{bottom:998.640000px;}
.yd_c01338{bottom:999.360000px;}
.yc_c01338{bottom:1000.080000px;}
.y9_c01338{bottom:1000.800000px;}
.y6_c01338{bottom:1039.680000px;}
.y2_c01338{bottom:1040.400000px;}
.y4_c01338{bottom:1041.120000px;}
.y7_c01338{bottom:1043.280000px;}
.y3_c01338{bottom:1044.000000px;}
.y5_c01338{bottom:1044.720000px;}
.y1_c01338{bottom:1106.640000px;}
.h6_c01338{height:31.100625px;}
.h9_c01338{height:33.692344px;}
.hb_c01338{height:36.284062px;}
.h10_c01338{height:38.875781px;}
.hd_c01338{height:41.467500px;}
.h8_c01338{height:44.059219px;}
.h4_c01338{height:46.650937px;}
.he_c01338{height:49.242656px;}
.h11_c01338{height:49.530937px;}
.hf_c01338{height:51.834375px;}
.h5_c01338{height:54.426094px;}
.h7_c01338{height:57.017812px;}
.h3_c01338{height:59.609531px;}
.ha_c01338{height:62.201250px;}
.h2_c01338{height:64.792969px;}
.hc_c01338{height:67.384687px;}
.h1_c01338{height:1148.250000px;}
.h0_c01338{height:1148.400000px;}
.w1_c01338{width:765.750000px;}
.w0_c01338{width:766.080000px;}
.x0_c01338{left:0.000000px;}
.xb_c01338{left:36.720000px;}
.x2_c01338{left:38.880000px;}
.x5c_c01338{left:41.040000px;}
.x38_c01338{left:66.960000px;}
.x31_c01338{left:68.400000px;}
.x56_c01338{left:70.560000px;}
.x2c_c01338{left:77.040000px;}
.x62_c01338{left:78.480000px;}
.x20_c01338{left:87.840000px;}
.x64_c01338{left:90.000000px;}
.x39_c01338{left:98.640000px;}
.xc_c01338{left:100.080000px;}
.x32_c01338{left:110.160000px;}
.x28_c01338{left:120.960000px;}
.x16_c01338{left:131.760000px;}
.x33_c01338{left:141.840000px;}
.x4f_c01338{left:143.280000px;}
.x3f_c01338{left:154.080000px;}
.x52_c01338{left:163.440000px;}
.x3_c01338{left:174.960000px;}
.x34_c01338{left:176.400000px;}
.xd_c01338{left:178.560000px;}
.x49_c01338{left:185.760000px;}
.x17_c01338{left:196.560000px;}
.x4_c01338{left:207.360000px;}
.x43_c01338{left:216.720000px;}
.x3a_c01338{left:218.160000px;}
.x18_c01338{left:228.960000px;}
.x29_c01338{left:239.760000px;}
.x21_c01338{left:241.200000px;}
.x19_c01338{left:250.560000px;}
.x2d_c01338{left:252.000000px;}
.x40_c01338{left:261.360000px;}
.xe_c01338{left:263.520000px;}
.x22_c01338{left:272.880000px;}
.x1a_c01338{left:282.960000px;}
.x4a_c01338{left:293.040000px;}
.x57_c01338{left:294.480000px;}
.x41_c01338{left:295.920000px;}
.x23_c01338{left:305.280000px;}
.x5_c01338{left:315.360000px;}
.xf_c01338{left:326.880000px;}
.x60_c01338{left:336.960000px;}
.x63_c01338{left:347.760000px;}
.x1b_c01338{left:358.560000px;}
.x6_c01338{left:360.000000px;}
.x35_c01338{left:370.080000px;}
.x58_c01338{left:371.520000px;}
.x47_c01338{left:380.160000px;}
.x2e_c01338{left:382.320000px;}
.x5a_c01338{left:390.960000px;}
.x7_c01338{left:393.120000px;}
.x50_c01338{left:401.040000px;}
.x10_c01338{left:402.480000px;}
.x44_c01338{left:412.560000px;}
.x5b_c01338{left:421.920000px;}
.x3b_c01338{left:423.360000px;}
.x24_c01338{left:424.800000px;}
.x53_c01338{left:426.960000px;}
.x59_c01338{left:434.160000px;}
.x11_c01338{left:435.600000px;}
.x4b_c01338{left:444.960000px;}
.x25_c01338{left:455.760000px;}
.x5d_c01338{left:457.200000px;}
.x1c_c01338{left:468.000000px;}
.x4c_c01338{left:477.360000px;}
.x2f_c01338{left:488.880000px;}
.x12_c01338{left:490.320000px;}
.x45_c01338{left:498.960000px;}
.x2a_c01338{left:510.480000px;}
.x3c_c01338{left:520.560000px;}
.x13_c01338{left:522.000000px;}
.x54_c01338{left:529.920000px;}
.x46_c01338{left:532.080000px;}
.x8_c01338{left:533.520000px;}
.x2b_c01338{left:542.880000px;}
.x3d_c01338{left:553.680000px;}
.x1d_c01338{left:563.760000px;}
.x5e_c01338{left:573.120000px;}
.x36_c01338{left:576.000000px;}
.x61_c01338{left:583.920000px;}
.x3e_c01338{left:586.080000px;}
.x51_c01338{left:595.440000px;}
.x48_c01338{left:596.880000px;}
.x37_c01338{left:606.960000px;}
.x14_c01338{left:608.400000px;}
.x55_c01338{left:617.040000px;}
.x26_c01338{left:618.480000px;}
.x4d_c01338{left:627.120000px;}
.x9_c01338{left:629.280000px;}
.x5f_c01338{left:638.640000px;}
.x15_c01338{left:640.080000px;}
.x4e_c01338{left:649.440000px;}
.x1e_c01338{left:650.880000px;}
.x1_c01338{left:654.480000px;}
.x42_c01338{left:658.800000px;}
.x27_c01338{left:660.960000px;}
.x30_c01338{left:671.760000px;}
.xa_c01338{left:673.920000px;}
.x1f_c01338{left:682.560000px;}
.x65_c01338{left:694.080000px;}
@media print{
.v1_c01338{vertical-align:-2.560000pt;}
.v0_c01338{vertical-align:0.000000pt;}
.v2_c01338{vertical-align:2.560000pt;}
.ls0_c01338{letter-spacing:0.000000pt;}
.ws1_c01338{word-spacing:-6.379520pt;}
.ws0_c01338{word-spacing:-4.657707pt;}
.ws2_c01338{word-spacing:-1.381547pt;}
.ws3_c01338{word-spacing:0.000000pt;}
.fs4_c01338{font-size:30.720000pt;}
.fs7_c01338{font-size:33.280000pt;}
.fs9_c01338{font-size:35.840000pt;}
.fse_c01338{font-size:38.400000pt;}
.fsb_c01338{font-size:40.960000pt;}
.fs6_c01338{font-size:43.520000pt;}
.fs2_c01338{font-size:46.080000pt;}
.fsc_c01338{font-size:48.640000pt;}
.fsd_c01338{font-size:51.200000pt;}
.fs3_c01338{font-size:53.760000pt;}
.fs5_c01338{font-size:56.320000pt;}
.fs1_c01338{font-size:58.880000pt;}
.fs8_c01338{font-size:61.440000pt;}
.fs0_c01338{font-size:64.000000pt;}
.fsa_c01338{font-size:66.560000pt;}
.y0_c01338{bottom:0.000000pt;}
.y86_c01338{bottom:33.920000pt;}
.y85_c01338{bottom:35.200000pt;}
.y84_c01338{bottom:36.480000pt;}
.y88_c01338{bottom:37.120000pt;}
.y83_c01338{bottom:37.760000pt;}
.y87_c01338{bottom:38.400000pt;}
.y82_c01338{bottom:39.040000pt;}
.y89_c01338{bottom:39.680000pt;}
.y7d_c01338{bottom:72.320000pt;}
.y7f_c01338{bottom:73.600000pt;}
.y80_c01338{bottom:74.240000pt;}
.y7e_c01338{bottom:74.880000pt;}
.y7c_c01338{bottom:76.800000pt;}
.y81_c01338{bottom:78.080000pt;}
.y78_c01338{bottom:110.720000pt;}
.y77_c01338{bottom:111.360000pt;}
.y7b_c01338{bottom:112.640000pt;}
.y79_c01338{bottom:113.280000pt;}
.y7a_c01338{bottom:113.920000pt;}
.y76_c01338{bottom:116.480000pt;}
.y72_c01338{bottom:148.480000pt;}
.y75_c01338{bottom:149.760000pt;}
.y74_c01338{bottom:151.680000pt;}
.y73_c01338{bottom:152.320000pt;}
.y71_c01338{bottom:152.960000pt;}
.y70_c01338{bottom:153.600000pt;}
.y6e_c01338{bottom:188.800000pt;}
.y6d_c01338{bottom:189.440000pt;}
.y6c_c01338{bottom:190.080000pt;}
.y6b_c01338{bottom:190.720000pt;}
.y6a_c01338{bottom:192.000000pt;}
.y6f_c01338{bottom:192.640000pt;}
.y69_c01338{bottom:193.280000pt;}
.y67_c01338{bottom:227.200000pt;}
.y68_c01338{bottom:227.840000pt;}
.y65_c01338{bottom:228.480000pt;}
.y64_c01338{bottom:229.120000pt;}
.y66_c01338{bottom:229.760000pt;}
.y63_c01338{bottom:230.400000pt;}
.y62_c01338{bottom:231.040000pt;}
.y5e_c01338{bottom:265.600000pt;}
.y61_c01338{bottom:266.880000pt;}
.y5d_c01338{bottom:267.520000pt;}
.y5f_c01338{bottom:268.160000pt;}
.y60_c01338{bottom:268.800000pt;}
.y5a_c01338{bottom:312.320000pt;}
.y5c_c01338{bottom:313.600000pt;}
.y59_c01338{bottom:314.240000pt;}
.y58_c01338{bottom:314.880000pt;}
.y5b_c01338{bottom:315.520000pt;}
.y57_c01338{bottom:316.160000pt;}
.y51_c01338{bottom:350.720000pt;}
.y54_c01338{bottom:351.360000pt;}
.y52_c01338{bottom:352.000000pt;}
.y55_c01338{bottom:352.640000pt;}
.y53_c01338{bottom:353.920000pt;}
.y56_c01338{bottom:355.200000pt;}
.y4d_c01338{bottom:389.120000pt;}
.y4e_c01338{bottom:389.760000pt;}
.y50_c01338{bottom:390.400000pt;}
.y4c_c01338{bottom:391.040000pt;}
.y4f_c01338{bottom:392.960000pt;}
.y48_c01338{bottom:427.520000pt;}
.y4a_c01338{bottom:428.160000pt;}
.y49_c01338{bottom:430.080000pt;}
.y47_c01338{bottom:430.720000pt;}
.y4b_c01338{bottom:431.360000pt;}
.y43_c01338{bottom:465.280000pt;}
.y45_c01338{bottom:465.920000pt;}
.y41_c01338{bottom:466.560000pt;}
.y42_c01338{bottom:467.840000pt;}
.y44_c01338{bottom:468.480000pt;}
.y46_c01338{bottom:469.760000pt;}
.y3e_c01338{bottom:503.680000pt;}
.y40_c01338{bottom:504.320000pt;}
.y3f_c01338{bottom:506.240000pt;}
.y3d_c01338{bottom:506.880000pt;}
.y3b_c01338{bottom:542.080000pt;}
.y3a_c01338{bottom:542.720000pt;}
.y3c_c01338{bottom:544.000000pt;}
.y39_c01338{bottom:544.640000pt;}
.y38_c01338{bottom:545.280000pt;}
.y36_c01338{bottom:580.480000pt;}
.y35_c01338{bottom:581.120000pt;}
.y37_c01338{bottom:583.040000pt;}
.y34_c01338{bottom:583.680000pt;}
.y32_c01338{bottom:619.520000pt;}
.y31_c01338{bottom:621.440000pt;}
.y33_c01338{bottom:622.080000pt;}
.y2f_c01338{bottom:657.280000pt;}
.y2e_c01338{bottom:657.920000pt;}
.y30_c01338{bottom:659.200000pt;}
.y2c_c01338{bottom:659.840000pt;}
.y2d_c01338{bottom:660.480000pt;}
.y2b_c01338{bottom:695.680000pt;}
.y29_c01338{bottom:696.320000pt;}
.y26_c01338{bottom:696.960000pt;}
.y25_c01338{bottom:697.600000pt;}
.y27_c01338{bottom:698.240000pt;}
.y28_c01338{bottom:698.880000pt;}
.y2a_c01338{bottom:699.520000pt;}
.y23_c01338{bottom:733.440000pt;}
.y22_c01338{bottom:734.720000pt;}
.y20_c01338{bottom:736.000000pt;}
.y24_c01338{bottom:736.640000pt;}
.y21_c01338{bottom:737.280000pt;}
.y1b_c01338{bottom:772.480000pt;}
.y1e_c01338{bottom:773.120000pt;}
.y1f_c01338{bottom:774.400000pt;}
.y1c_c01338{bottom:775.040000pt;}
.y1d_c01338{bottom:775.680000pt;}
.y15_c01338{bottom:810.240000pt;}
.y1a_c01338{bottom:810.880000pt;}
.y18_c01338{bottom:811.520000pt;}
.y19_c01338{bottom:812.800000pt;}
.y16_c01338{bottom:813.440000pt;}
.y17_c01338{bottom:814.080000pt;}
.y14_c01338{bottom:847.360000pt;}
.y12_c01338{bottom:848.640000pt;}
.y11_c01338{bottom:849.280000pt;}
.y13_c01338{bottom:849.920000pt;}
.ye_c01338{bottom:850.560000pt;}
.y10_c01338{bottom:851.200000pt;}
.yf_c01338{bottom:851.840000pt;}
.y8_c01338{bottom:885.760000pt;}
.yb_c01338{bottom:886.400000pt;}
.ya_c01338{bottom:887.680000pt;}
.yd_c01338{bottom:888.320000pt;}
.yc_c01338{bottom:888.960000pt;}
.y9_c01338{bottom:889.600000pt;}
.y6_c01338{bottom:924.160000pt;}
.y2_c01338{bottom:924.800000pt;}
.y4_c01338{bottom:925.440000pt;}
.y7_c01338{bottom:927.360000pt;}
.y3_c01338{bottom:928.000000pt;}
.y5_c01338{bottom:928.640000pt;}
.y1_c01338{bottom:983.680000pt;}
.h6_c01338{height:27.645000pt;}
.h9_c01338{height:29.948750pt;}
.hb_c01338{height:32.252500pt;}
.h10_c01338{height:34.556250pt;}
.hd_c01338{height:36.860000pt;}
.h8_c01338{height:39.163750pt;}
.h4_c01338{height:41.467500pt;}
.he_c01338{height:43.771250pt;}
.h11_c01338{height:44.027500pt;}
.hf_c01338{height:46.075000pt;}
.h5_c01338{height:48.378750pt;}
.h7_c01338{height:50.682500pt;}
.h3_c01338{height:52.986250pt;}
.ha_c01338{height:55.290000pt;}
.h2_c01338{height:57.593750pt;}
.hc_c01338{height:59.897500pt;}
.h1_c01338{height:1020.666667pt;}
.h0_c01338{height:1020.800000pt;}
.w1_c01338{width:680.666667pt;}
.w0_c01338{width:680.960000pt;}
.x0_c01338{left:0.000000pt;}
.xb_c01338{left:32.640000pt;}
.x2_c01338{left:34.560000pt;}
.x5c_c01338{left:36.480000pt;}
.x38_c01338{left:59.520000pt;}
.x31_c01338{left:60.800000pt;}
.x56_c01338{left:62.720000pt;}
.x2c_c01338{left:68.480000pt;}
.x62_c01338{left:69.760000pt;}
.x20_c01338{left:78.080000pt;}
.x64_c01338{left:80.000000pt;}
.x39_c01338{left:87.680000pt;}
.xc_c01338{left:88.960000pt;}
.x32_c01338{left:97.920000pt;}
.x28_c01338{left:107.520000pt;}
.x16_c01338{left:117.120000pt;}
.x33_c01338{left:126.080000pt;}
.x4f_c01338{left:127.360000pt;}
.x3f_c01338{left:136.960000pt;}
.x52_c01338{left:145.280000pt;}
.x3_c01338{left:155.520000pt;}
.x34_c01338{left:156.800000pt;}
.xd_c01338{left:158.720000pt;}
.x49_c01338{left:165.120000pt;}
.x17_c01338{left:174.720000pt;}
.x4_c01338{left:184.320000pt;}
.x43_c01338{left:192.640000pt;}
.x3a_c01338{left:193.920000pt;}
.x18_c01338{left:203.520000pt;}
.x29_c01338{left:213.120000pt;}
.x21_c01338{left:214.400000pt;}
.x19_c01338{left:222.720000pt;}
.x2d_c01338{left:224.000000pt;}
.x40_c01338{left:232.320000pt;}
.xe_c01338{left:234.240000pt;}
.x22_c01338{left:242.560000pt;}
.x1a_c01338{left:251.520000pt;}
.x4a_c01338{left:260.480000pt;}
.x57_c01338{left:261.760000pt;}
.x41_c01338{left:263.040000pt;}
.x23_c01338{left:271.360000pt;}
.x5_c01338{left:280.320000pt;}
.xf_c01338{left:290.560000pt;}
.x60_c01338{left:299.520000pt;}
.x63_c01338{left:309.120000pt;}
.x1b_c01338{left:318.720000pt;}
.x6_c01338{left:320.000000pt;}
.x35_c01338{left:328.960000pt;}
.x58_c01338{left:330.240000pt;}
.x47_c01338{left:337.920000pt;}
.x2e_c01338{left:339.840000pt;}
.x5a_c01338{left:347.520000pt;}
.x7_c01338{left:349.440000pt;}
.x50_c01338{left:356.480000pt;}
.x10_c01338{left:357.760000pt;}
.x44_c01338{left:366.720000pt;}
.x5b_c01338{left:375.040000pt;}
.x3b_c01338{left:376.320000pt;}
.x24_c01338{left:377.600000pt;}
.x53_c01338{left:379.520000pt;}
.x59_c01338{left:385.920000pt;}
.x11_c01338{left:387.200000pt;}
.x4b_c01338{left:395.520000pt;}
.x25_c01338{left:405.120000pt;}
.x5d_c01338{left:406.400000pt;}
.x1c_c01338{left:416.000000pt;}
.x4c_c01338{left:424.320000pt;}
.x2f_c01338{left:434.560000pt;}
.x12_c01338{left:435.840000pt;}
.x45_c01338{left:443.520000pt;}
.x2a_c01338{left:453.760000pt;}
.x3c_c01338{left:462.720000pt;}
.x13_c01338{left:464.000000pt;}
.x54_c01338{left:471.040000pt;}
.x46_c01338{left:472.960000pt;}
.x8_c01338{left:474.240000pt;}
.x2b_c01338{left:482.560000pt;}
.x3d_c01338{left:492.160000pt;}
.x1d_c01338{left:501.120000pt;}
.x5e_c01338{left:509.440000pt;}
.x36_c01338{left:512.000000pt;}
.x61_c01338{left:519.040000pt;}
.x3e_c01338{left:520.960000pt;}
.x51_c01338{left:529.280000pt;}
.x48_c01338{left:530.560000pt;}
.x37_c01338{left:539.520000pt;}
.x14_c01338{left:540.800000pt;}
.x55_c01338{left:548.480000pt;}
.x26_c01338{left:549.760000pt;}
.x4d_c01338{left:557.440000pt;}
.x9_c01338{left:559.360000pt;}
.x5f_c01338{left:567.680000pt;}
.x15_c01338{left:568.960000pt;}
.x4e_c01338{left:577.280000pt;}
.x1e_c01338{left:578.560000pt;}
.x1_c01338{left:581.760000pt;}
.x42_c01338{left:585.600000pt;}
.x27_c01338{left:587.520000pt;}
.x30_c01338{left:597.120000pt;}
.xa_c01338{left:599.040000pt;}
.x1f_c01338{left:606.720000pt;}
.x65_c01338{left:616.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_c01339 {
    display:none;
  }
  .loading-indicator_c01339.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01339 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01339 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01339" -> "#page-container .classname_c01339")
 */
.pf_c01339 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01339 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01339.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01339 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01339 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01339 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01339 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01339 {overflow:visible;}
  }
}
.c_c01339 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01339 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01339:after { /* webkit #35443 */
  content: '';
}
.t_c01339:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01339 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01339 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01339 { /* info for Javascript */
  display:none;
}
.l_c01339 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01339 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01339 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01339:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01339{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01339;src:url('chunks/assets/font_6495d6b51ff90c4447045c32.woff2')format("woff");}.ff1_c01339{font-family:ff1_c01339;line-height:1.109863;font-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_c01339{transform:matrix(0.229625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229625,0.000000,0.000000,0.250000,0,0);}
.m3d_c01339{transform:matrix(0.242875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242875,0.000000,0.000000,0.250000,0,0);}
.m61_c01339{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m4a_c01339{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);}
.m60_c01339{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);}
.m50_c01339{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);}
.m35_c01339{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);}
.m5c_c01339{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m54_c01339{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);}
.m52_c01339{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);}
.m5b_c01339{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);}
.m62_c01339{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m4f_c01339{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m31_c01339{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);}
.m5a_c01339{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m43_c01339{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m46_c01339{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m63_c01339{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mb_c01339{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m55_c01339{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m37_c01339{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m26_c01339{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01339{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m22_c01339{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m5e_c01339{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01339{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mf_c01339{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m0_c01339{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);}
.m42_c01339{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);}
.m44_c01339{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m15_c01339{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m5f_c01339{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);}
.m24_c01339{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m3_c01339{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);}
.m2_c01339{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.ma_c01339{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);}
.m8_c01339{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);}
.m1a_c01339{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01339{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);}
.m20_c01339{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);}
.m36_c01339{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01339{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);}
.m38_c01339{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01339{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);}
.m48_c01339{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);}
.m40_c01339{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01339{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m1_c01339{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m29_c01339{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m56_c01339{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);}
.m7_c01339{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01339{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);}
.m16_c01339{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);}
.m2d_c01339{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01339{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m13_c01339{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01339{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);}
.m1d_c01339{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m27_c01339{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);}
.m45_c01339{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m4d_c01339{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);}
.m3b_c01339{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m4e_c01339{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m4_c01339{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m39_c01339{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);}
.m6_c01339{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.me_c01339{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01339{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m28_c01339{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);}
.m32_c01339{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m25_c01339{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m49_c01339{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m5_c01339{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m17_c01339{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01339{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m58_c01339{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m21_c01339{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);}
.m12_c01339{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01339{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01339{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m11_c01339{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m34_c01339{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);}
.m41_c01339{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m23_c01339{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);}
.m1f_c01339{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m30_c01339{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m9_c01339{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.mc_c01339{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m33_c01339{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m18_c01339{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m47_c01339{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.md_c01339{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);}
.m3c_c01339{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m10_c01339{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m19_c01339{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m57_c01339{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m5d_c01339{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m59_c01339{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.m64_c01339{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.m51_c01339{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.m53_c01339{transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);}
.v0_c01339{vertical-align:0.000000px;}
.ls0_c01339{letter-spacing:0.000000px;}
.sc__c01339{text-shadow:none;}
.sc0_c01339{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01339{-webkit-text-stroke:0px transparent;}
.sc0_c01339{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01339{word-spacing:0.000000px;}
.ws0_c01339{word-spacing:4.855075px;}
.fc0_c01339{color:transparent;}
.fsf_c01339{font-size:17.280000px;}
.fs7_c01339{font-size:34.560000px;}
.fs6_c01339{font-size:37.440000px;}
.fs8_c01339{font-size:40.320000px;}
.fsd_c01339{font-size:43.200000px;}
.fs4_c01339{font-size:46.080000px;}
.fs1_c01339{font-size:48.960000px;}
.fs3_c01339{font-size:51.840000px;}
.fs5_c01339{font-size:54.720000px;}
.fs10_c01339{font-size:57.600000px;}
.fs9_c01339{font-size:60.480000px;}
.fs2_c01339{font-size:63.360000px;}
.fsb_c01339{font-size:66.240000px;}
.fsc_c01339{font-size:69.120000px;}
.fsa_c01339{font-size:72.000000px;}
.fs0_c01339{font-size:74.880000px;}
.fse_c01339{font-size:77.760000px;}
.fs11_c01339{font-size:80.640000px;}
.y0_c01339{bottom:0.000000px;}
.y75_c01339{bottom:27.360000px;}
.y76_c01339{bottom:33.120000px;}
.y74_c01339{bottom:35.280000px;}
.y77_c01339{bottom:36.000000px;}
.y71_c01339{bottom:70.560000px;}
.y72_c01339{bottom:75.600000px;}
.y73_c01339{bottom:76.320000px;}
.y70_c01339{bottom:77.040000px;}
.y6e_c01339{bottom:113.760000px;}
.y6f_c01339{bottom:118.800000px;}
.y6d_c01339{bottom:119.520000px;}
.y69_c01339{bottom:157.680000px;}
.y6a_c01339{bottom:161.280000px;}
.y6c_c01339{bottom:162.000000px;}
.y68_c01339{bottom:162.720000px;}
.y6b_c01339{bottom:163.440000px;}
.y66_c01339{bottom:200.160000px;}
.y65_c01339{bottom:204.480000px;}
.y64_c01339{bottom:205.200000px;}
.y63_c01339{bottom:206.640000px;}
.y67_c01339{bottom:207.360000px;}
.y5f_c01339{bottom:247.680000px;}
.y60_c01339{bottom:249.120000px;}
.y62_c01339{bottom:249.840000px;}
.y61_c01339{bottom:250.560000px;}
.y5e_c01339{bottom:290.160000px;}
.y5d_c01339{bottom:293.040000px;}
.y5a_c01339{bottom:332.640000px;}
.y58_c01339{bottom:333.360000px;}
.y5b_c01339{bottom:334.080000px;}
.y59_c01339{bottom:334.800000px;}
.y5c_c01339{bottom:335.520000px;}
.y57_c01339{bottom:383.760000px;}
.y4f_c01339{bottom:385.920000px;}
.y51_c01339{bottom:388.080000px;}
.y53_c01339{bottom:388.800000px;}
.y4d_c01339{bottom:389.520000px;}
.y52_c01339{bottom:390.960000px;}
.y4e_c01339{bottom:391.680000px;}
.y4c_c01339{bottom:418.320000px;}
.y50_c01339{bottom:419.040000px;}
.y55_c01339{bottom:419.760000px;}
.y56_c01339{bottom:420.480000px;}
.y54_c01339{bottom:421.200000px;}
.y4b_c01339{bottom:421.920000px;}
.y48_c01339{bottom:461.520000px;}
.y4a_c01339{bottom:462.240000px;}
.y47_c01339{bottom:463.680000px;}
.y49_c01339{bottom:464.400000px;}
.y46_c01339{bottom:515.520000px;}
.y45_c01339{bottom:518.400000px;}
.y41_c01339{bottom:557.280000px;}
.y44_c01339{bottom:558.000000px;}
.y3f_c01339{bottom:558.720000px;}
.y43_c01339{bottom:559.440000px;}
.y40_c01339{bottom:560.160000px;}
.y42_c01339{bottom:560.880000px;}
.y3e_c01339{bottom:561.600000px;}
.y3b_c01339{bottom:600.480000px;}
.y3a_c01339{bottom:601.920000px;}
.y3d_c01339{bottom:603.360000px;}
.y3c_c01339{bottom:604.080000px;}
.y39_c01339{bottom:604.800000px;}
.y37_c01339{bottom:642.960000px;}
.y36_c01339{bottom:643.680000px;}
.y34_c01339{bottom:644.400000px;}
.y33_c01339{bottom:646.560000px;}
.y38_c01339{bottom:647.280000px;}
.y35_c01339{bottom:648.000000px;}
.y26_c01339{bottom:686.160000px;}
.y24_c01339{bottom:686.880000px;}
.y27_c01339{bottom:687.600000px;}
.y28_c01339{bottom:689.040000px;}
.y25_c01339{bottom:689.760000px;}
.y23_c01339{bottom:690.480000px;}
.y2e_c01339{bottom:739.440000px;}
.y2f_c01339{bottom:741.600000px;}
.y32_c01339{bottom:743.040000px;}
.y30_c01339{bottom:743.760000px;}
.y31_c01339{bottom:744.480000px;}
.y2d_c01339{bottom:782.640000px;}
.y2c_c01339{bottom:784.080000px;}
.y29_c01339{bottom:785.520000px;}
.y2a_c01339{bottom:786.240000px;}
.y2b_c01339{bottom:786.960000px;}
.y20_c01339{bottom:825.120000px;}
.y1f_c01339{bottom:825.840000px;}
.y21_c01339{bottom:827.280000px;}
.y22_c01339{bottom:828.720000px;}
.y1e_c01339{bottom:829.440000px;}
.y1d_c01339{bottom:868.320000px;}
.y1b_c01339{bottom:869.040000px;}
.y19_c01339{bottom:871.200000px;}
.y1c_c01339{bottom:871.920000px;}
.y1a_c01339{bottom:872.640000px;}
.y17_c01339{bottom:912.240000px;}
.y14_c01339{bottom:913.680000px;}
.y18_c01339{bottom:914.400000px;}
.y15_c01339{bottom:915.120000px;}
.y16_c01339{bottom:915.840000px;}
.y12_c01339{bottom:955.440000px;}
.y11_c01339{bottom:956.160000px;}
.y13_c01339{bottom:956.880000px;}
.ye_c01339{bottom:957.600000px;}
.y10_c01339{bottom:958.320000px;}
.yf_c01339{bottom:959.040000px;}
.y8_c01339{bottom:997.920000px;}
.y9_c01339{bottom:998.640000px;}
.yb_c01339{bottom:999.360000px;}
.yd_c01339{bottom:1000.800000px;}
.ya_c01339{bottom:1001.520000px;}
.yc_c01339{bottom:1002.240000px;}
.y6_c01339{bottom:1041.120000px;}
.y3_c01339{bottom:1042.560000px;}
.y7_c01339{bottom:1043.280000px;}
.y5_c01339{bottom:1044.720000px;}
.y4_c01339{bottom:1045.440000px;}
.y2_c01339{bottom:1046.160000px;}
.y1_c01339{bottom:1107.360000px;}
.h11_c01339{height:15.550313px;}
.h9_c01339{height:31.100625px;}
.h8_c01339{height:33.692344px;}
.ha_c01339{height:36.284062px;}
.hf_c01339{height:38.875781px;}
.h6_c01339{height:41.467500px;}
.h3_c01339{height:44.059219px;}
.h5_c01339{height:46.650937px;}
.h7_c01339{height:49.242656px;}
.h12_c01339{height:51.834375px;}
.hb_c01339{height:54.426094px;}
.h4_c01339{height:57.017812px;}
.hd_c01339{height:59.609531px;}
.he_c01339{height:62.201250px;}
.hc_c01339{height:64.792969px;}
.h2_c01339{height:67.384687px;}
.h10_c01339{height:69.976406px;}
.h13_c01339{height:72.568125px;}
.h1_c01339{height:1149.000000px;}
.h0_c01339{height:1149.120000px;}
.w1_c01339{width:766.500000px;}
.w0_c01339{width:766.800000px;}
.x0_c01339{left:0.000000px;}
.xc_c01339{left:38.880000px;}
.x40_c01339{left:41.040000px;}
.x49_c01339{left:43.200000px;}
.x50_c01339{left:44.640000px;}
.x41_c01339{left:59.040000px;}
.x25_c01339{left:67.680000px;}
.x22_c01339{left:69.120000px;}
.x2f_c01339{left:78.480000px;}
.x42_c01339{left:80.640000px;}
.x1c_c01339{left:89.280000px;}
.xd_c01339{left:90.720000px;}
.x30_c01339{left:110.160000px;}
.x13_c01339{left:112.320000px;}
.x34_c01339{left:121.680000px;}
.x2b_c01339{left:142.560000px;}
.x2_c01339{left:144.000000px;}
.x14_c01339{left:154.800000px;}
.x4a_c01339{left:164.160000px;}
.x35_c01339{left:166.320000px;}
.x3_c01339{left:176.400000px;}
.x15_c01339{left:187.200000px;}
.x31_c01339{left:197.280000px;}
.x4b_c01339{left:209.520000px;}
.x1d_c01339{left:218.880000px;}
.xe_c01339{left:221.040000px;}
.x2c_c01339{left:231.120000px;}
.x32_c01339{left:241.920000px;}
.x16_c01339{left:252.720000px;}
.x3d_c01339{left:263.520000px;}
.x4_c01339{left:285.120000px;}
.x38_c01339{left:295.920000px;}
.x1e_c01339{left:306.720000px;}
.xf_c01339{left:316.800000px;}
.x5_c01339{left:320.400000px;}
.x36_c01339{left:328.320000px;}
.x17_c01339{left:339.120000px;}
.x10_c01339{left:349.920000px;}
.x26_c01339{left:360.720000px;}
.x3a_c01339{left:371.520000px;}
.x18_c01339{left:382.320000px;}
.x3e_c01339{left:393.120000px;}
.x3b_c01339{left:403.200000px;}
.x19_c01339{left:414.720000px;}
.x1f_c01339{left:416.160000px;}
.x23_c01339{left:425.520000px;}
.x6_c01339{left:447.120000px;}
.x11_c01339{left:457.920000px;}
.x7_c01339{left:469.440000px;}
.x27_c01339{left:479.520000px;}
.x8_c01339{left:501.120000px;}
.x28_c01339{left:511.920000px;}
.x24_c01339{left:522.720000px;}
.x37_c01339{left:532.800000px;}
.x1a_c01339{left:534.240000px;}
.x9_c01339{left:540.000000px;}
.x2d_c01339{left:553.680000px;}
.x29_c01339{left:564.480000px;}
.x20_c01339{left:565.920000px;}
.x43_c01339{left:575.280000px;}
.x39_c01339{left:576.720000px;}
.x4f_c01339{left:585.360000px;}
.x1b_c01339{left:587.520000px;}
.x21_c01339{left:596.880000px;}
.x44_c01339{left:606.960000px;}
.x3f_c01339{left:608.400000px;}
.x12_c01339{left:609.840000px;}
.x3c_c01339{left:617.760000px;}
.x4c_c01339{left:619.200000px;}
.x45_c01339{left:628.560000px;}
.xa_c01339{left:631.440000px;}
.x1_c01339{left:632.880000px;}
.x2e_c01339{left:639.360000px;}
.x2a_c01339{left:640.800000px;}
.x33_c01339{left:652.320000px;}
.x46_c01339{left:660.960000px;}
.xb_c01339{left:663.120000px;}
.x47_c01339{left:693.360000px;}
.x4e_c01339{left:694.800000px;}
.x4d_c01339{left:714.240000px;}
.x48_c01339{left:725.040000px;}
@media print{
.v0_c01339{vertical-align:0.000000pt;}
.ls0_c01339{letter-spacing:0.000000pt;}
.ws1_c01339{word-spacing:0.000000pt;}
.ws0_c01339{word-spacing:4.315622pt;}
.fsf_c01339{font-size:15.360000pt;}
.fs7_c01339{font-size:30.720000pt;}
.fs6_c01339{font-size:33.280000pt;}
.fs8_c01339{font-size:35.840000pt;}
.fsd_c01339{font-size:38.400000pt;}
.fs4_c01339{font-size:40.960000pt;}
.fs1_c01339{font-size:43.520000pt;}
.fs3_c01339{font-size:46.080000pt;}
.fs5_c01339{font-size:48.640000pt;}
.fs10_c01339{font-size:51.200000pt;}
.fs9_c01339{font-size:53.760000pt;}
.fs2_c01339{font-size:56.320000pt;}
.fsb_c01339{font-size:58.880000pt;}
.fsc_c01339{font-size:61.440000pt;}
.fsa_c01339{font-size:64.000000pt;}
.fs0_c01339{font-size:66.560000pt;}
.fse_c01339{font-size:69.120000pt;}
.fs11_c01339{font-size:71.680000pt;}
.y0_c01339{bottom:0.000000pt;}
.y75_c01339{bottom:24.320000pt;}
.y76_c01339{bottom:29.440000pt;}
.y74_c01339{bottom:31.360000pt;}
.y77_c01339{bottom:32.000000pt;}
.y71_c01339{bottom:62.720000pt;}
.y72_c01339{bottom:67.200000pt;}
.y73_c01339{bottom:67.840000pt;}
.y70_c01339{bottom:68.480000pt;}
.y6e_c01339{bottom:101.120000pt;}
.y6f_c01339{bottom:105.600000pt;}
.y6d_c01339{bottom:106.240000pt;}
.y69_c01339{bottom:140.160000pt;}
.y6a_c01339{bottom:143.360000pt;}
.y6c_c01339{bottom:144.000000pt;}
.y68_c01339{bottom:144.640000pt;}
.y6b_c01339{bottom:145.280000pt;}
.y66_c01339{bottom:177.920000pt;}
.y65_c01339{bottom:181.760000pt;}
.y64_c01339{bottom:182.400000pt;}
.y63_c01339{bottom:183.680000pt;}
.y67_c01339{bottom:184.320000pt;}
.y5f_c01339{bottom:220.160000pt;}
.y60_c01339{bottom:221.440000pt;}
.y62_c01339{bottom:222.080000pt;}
.y61_c01339{bottom:222.720000pt;}
.y5e_c01339{bottom:257.920000pt;}
.y5d_c01339{bottom:260.480000pt;}
.y5a_c01339{bottom:295.680000pt;}
.y58_c01339{bottom:296.320000pt;}
.y5b_c01339{bottom:296.960000pt;}
.y59_c01339{bottom:297.600000pt;}
.y5c_c01339{bottom:298.240000pt;}
.y57_c01339{bottom:341.120000pt;}
.y4f_c01339{bottom:343.040000pt;}
.y51_c01339{bottom:344.960000pt;}
.y53_c01339{bottom:345.600000pt;}
.y4d_c01339{bottom:346.240000pt;}
.y52_c01339{bottom:347.520000pt;}
.y4e_c01339{bottom:348.160000pt;}
.y4c_c01339{bottom:371.840000pt;}
.y50_c01339{bottom:372.480000pt;}
.y55_c01339{bottom:373.120000pt;}
.y56_c01339{bottom:373.760000pt;}
.y54_c01339{bottom:374.400000pt;}
.y4b_c01339{bottom:375.040000pt;}
.y48_c01339{bottom:410.240000pt;}
.y4a_c01339{bottom:410.880000pt;}
.y47_c01339{bottom:412.160000pt;}
.y49_c01339{bottom:412.800000pt;}
.y46_c01339{bottom:458.240000pt;}
.y45_c01339{bottom:460.800000pt;}
.y41_c01339{bottom:495.360000pt;}
.y44_c01339{bottom:496.000000pt;}
.y3f_c01339{bottom:496.640000pt;}
.y43_c01339{bottom:497.280000pt;}
.y40_c01339{bottom:497.920000pt;}
.y42_c01339{bottom:498.560000pt;}
.y3e_c01339{bottom:499.200000pt;}
.y3b_c01339{bottom:533.760000pt;}
.y3a_c01339{bottom:535.040000pt;}
.y3d_c01339{bottom:536.320000pt;}
.y3c_c01339{bottom:536.960000pt;}
.y39_c01339{bottom:537.600000pt;}
.y37_c01339{bottom:571.520000pt;}
.y36_c01339{bottom:572.160000pt;}
.y34_c01339{bottom:572.800000pt;}
.y33_c01339{bottom:574.720000pt;}
.y38_c01339{bottom:575.360000pt;}
.y35_c01339{bottom:576.000000pt;}
.y26_c01339{bottom:609.920000pt;}
.y24_c01339{bottom:610.560000pt;}
.y27_c01339{bottom:611.200000pt;}
.y28_c01339{bottom:612.480000pt;}
.y25_c01339{bottom:613.120000pt;}
.y23_c01339{bottom:613.760000pt;}
.y2e_c01339{bottom:657.280000pt;}
.y2f_c01339{bottom:659.200000pt;}
.y32_c01339{bottom:660.480000pt;}
.y30_c01339{bottom:661.120000pt;}
.y31_c01339{bottom:661.760000pt;}
.y2d_c01339{bottom:695.680000pt;}
.y2c_c01339{bottom:696.960000pt;}
.y29_c01339{bottom:698.240000pt;}
.y2a_c01339{bottom:698.880000pt;}
.y2b_c01339{bottom:699.520000pt;}
.y20_c01339{bottom:733.440000pt;}
.y1f_c01339{bottom:734.080000pt;}
.y21_c01339{bottom:735.360000pt;}
.y22_c01339{bottom:736.640000pt;}
.y1e_c01339{bottom:737.280000pt;}
.y1d_c01339{bottom:771.840000pt;}
.y1b_c01339{bottom:772.480000pt;}
.y19_c01339{bottom:774.400000pt;}
.y1c_c01339{bottom:775.040000pt;}
.y1a_c01339{bottom:775.680000pt;}
.y17_c01339{bottom:810.880000pt;}
.y14_c01339{bottom:812.160000pt;}
.y18_c01339{bottom:812.800000pt;}
.y15_c01339{bottom:813.440000pt;}
.y16_c01339{bottom:814.080000pt;}
.y12_c01339{bottom:849.280000pt;}
.y11_c01339{bottom:849.920000pt;}
.y13_c01339{bottom:850.560000pt;}
.ye_c01339{bottom:851.200000pt;}
.y10_c01339{bottom:851.840000pt;}
.yf_c01339{bottom:852.480000pt;}
.y8_c01339{bottom:887.040000pt;}
.y9_c01339{bottom:887.680000pt;}
.yb_c01339{bottom:888.320000pt;}
.yd_c01339{bottom:889.600000pt;}
.ya_c01339{bottom:890.240000pt;}
.yc_c01339{bottom:890.880000pt;}
.y6_c01339{bottom:925.440000pt;}
.y3_c01339{bottom:926.720000pt;}
.y7_c01339{bottom:927.360000pt;}
.y5_c01339{bottom:928.640000pt;}
.y4_c01339{bottom:929.280000pt;}
.y2_c01339{bottom:929.920000pt;}
.y1_c01339{bottom:984.320000pt;}
.h11_c01339{height:13.822500pt;}
.h9_c01339{height:27.645000pt;}
.h8_c01339{height:29.948750pt;}
.ha_c01339{height:32.252500pt;}
.hf_c01339{height:34.556250pt;}
.h6_c01339{height:36.860000pt;}
.h3_c01339{height:39.163750pt;}
.h5_c01339{height:41.467500pt;}
.h7_c01339{height:43.771250pt;}
.h12_c01339{height:46.075000pt;}
.hb_c01339{height:48.378750pt;}
.h4_c01339{height:50.682500pt;}
.hd_c01339{height:52.986250pt;}
.he_c01339{height:55.290000pt;}
.hc_c01339{height:57.593750pt;}
.h2_c01339{height:59.897500pt;}
.h10_c01339{height:62.201250pt;}
.h13_c01339{height:64.505000pt;}
.h1_c01339{height:1021.333333pt;}
.h0_c01339{height:1021.440000pt;}
.w1_c01339{width:681.333333pt;}
.w0_c01339{width:681.600000pt;}
.x0_c01339{left:0.000000pt;}
.xc_c01339{left:34.560000pt;}
.x40_c01339{left:36.480000pt;}
.x49_c01339{left:38.400000pt;}
.x50_c01339{left:39.680000pt;}
.x41_c01339{left:52.480000pt;}
.x25_c01339{left:60.160000pt;}
.x22_c01339{left:61.440000pt;}
.x2f_c01339{left:69.760000pt;}
.x42_c01339{left:71.680000pt;}
.x1c_c01339{left:79.360000pt;}
.xd_c01339{left:80.640000pt;}
.x30_c01339{left:97.920000pt;}
.x13_c01339{left:99.840000pt;}
.x34_c01339{left:108.160000pt;}
.x2b_c01339{left:126.720000pt;}
.x2_c01339{left:128.000000pt;}
.x14_c01339{left:137.600000pt;}
.x4a_c01339{left:145.920000pt;}
.x35_c01339{left:147.840000pt;}
.x3_c01339{left:156.800000pt;}
.x15_c01339{left:166.400000pt;}
.x31_c01339{left:175.360000pt;}
.x4b_c01339{left:186.240000pt;}
.x1d_c01339{left:194.560000pt;}
.xe_c01339{left:196.480000pt;}
.x2c_c01339{left:205.440000pt;}
.x32_c01339{left:215.040000pt;}
.x16_c01339{left:224.640000pt;}
.x3d_c01339{left:234.240000pt;}
.x4_c01339{left:253.440000pt;}
.x38_c01339{left:263.040000pt;}
.x1e_c01339{left:272.640000pt;}
.xf_c01339{left:281.600000pt;}
.x5_c01339{left:284.800000pt;}
.x36_c01339{left:291.840000pt;}
.x17_c01339{left:301.440000pt;}
.x10_c01339{left:311.040000pt;}
.x26_c01339{left:320.640000pt;}
.x3a_c01339{left:330.240000pt;}
.x18_c01339{left:339.840000pt;}
.x3e_c01339{left:349.440000pt;}
.x3b_c01339{left:358.400000pt;}
.x19_c01339{left:368.640000pt;}
.x1f_c01339{left:369.920000pt;}
.x23_c01339{left:378.240000pt;}
.x6_c01339{left:397.440000pt;}
.x11_c01339{left:407.040000pt;}
.x7_c01339{left:417.280000pt;}
.x27_c01339{left:426.240000pt;}
.x8_c01339{left:445.440000pt;}
.x28_c01339{left:455.040000pt;}
.x24_c01339{left:464.640000pt;}
.x37_c01339{left:473.600000pt;}
.x1a_c01339{left:474.880000pt;}
.x9_c01339{left:480.000000pt;}
.x2d_c01339{left:492.160000pt;}
.x29_c01339{left:501.760000pt;}
.x20_c01339{left:503.040000pt;}
.x43_c01339{left:511.360000pt;}
.x39_c01339{left:512.640000pt;}
.x4f_c01339{left:520.320000pt;}
.x1b_c01339{left:522.240000pt;}
.x21_c01339{left:530.560000pt;}
.x44_c01339{left:539.520000pt;}
.x3f_c01339{left:540.800000pt;}
.x12_c01339{left:542.080000pt;}
.x3c_c01339{left:549.120000pt;}
.x4c_c01339{left:550.400000pt;}
.x45_c01339{left:558.720000pt;}
.xa_c01339{left:561.280000pt;}
.x1_c01339{left:562.560000pt;}
.x2e_c01339{left:568.320000pt;}
.x2a_c01339{left:569.600000pt;}
.x33_c01339{left:579.840000pt;}
.x46_c01339{left:587.520000pt;}
.xb_c01339{left:589.440000pt;}
.x47_c01339{left:616.320000pt;}
.x4e_c01339{left:617.600000pt;}
.x4d_c01339{left:634.880000pt;}
.x48_c01339{left:644.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_c01340 {
    display:none;
  }
  .loading-indicator_c01340.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01340 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01340 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01340" -> "#page-container .classname_c01340")
 */
.pf_c01340 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01340 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01340.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01340 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01340 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01340 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01340 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01340 {overflow:visible;}
  }
}
.c_c01340 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01340 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01340:after { /* webkit #35443 */
  content: '';
}
.t_c01340:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01340 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01340 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01340 { /* info for Javascript */
  display:none;
}
.l_c01340 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01340 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01340 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01340:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01340{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01340;src:url('chunks/assets/font_7f1000ee70d3647e446fd8df.woff2')format("woff");}.ff1_c01340{font-family:ff1_c01340;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m52_c01340{transform:matrix(0.154750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154750,0.000000,0.000000,0.250000,0,0);}
.m5_c01340{transform:matrix(0.163025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163025,0.000000,0.000000,0.250000,0,0);}
.m5c_c01340{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01340{transform:matrix(0.192300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192300,0.000000,0.000000,0.250000,0,0);}
.m45_c01340{transform:matrix(0.194975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194975,0.000000,0.000000,0.250000,0,0);}
.m60_c01340{transform:matrix(0.195850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195850,0.000000,0.000000,0.250000,0,0);}
.m5b_c01340{transform:matrix(0.196550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196550,0.000000,0.000000,0.250000,0,0);}
.m4c_c01340{transform:matrix(0.200875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200875,0.000000,0.000000,0.250000,0,0);}
.m2d_c01340{transform:matrix(0.204450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204450,0.000000,0.000000,0.250000,0,0);}
.m38_c01340{transform:matrix(0.207775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207775,0.000000,0.000000,0.250000,0,0);}
.m5f_c01340{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m28_c01340{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m2c_c01340{transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);}
.m40_c01340{transform:matrix(0.231650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231650,0.000000,0.000000,0.250000,0,0);}
.m2b_c01340{transform:matrix(0.232300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232300,0.000000,0.000000,0.250000,0,0);}
.m4f_c01340{transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);}
.m55_c01340{transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);}
.m15_c01340{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m10_c01340{transform:matrix(0.237825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237825,0.000000,0.000000,0.250000,0,0);}
.m58_c01340{transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);}
.mc_c01340{transform:matrix(0.240150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240150,0.000000,0.000000,0.250000,0,0);}
.m16_c01340{transform:matrix(0.240200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240200,0.000000,0.000000,0.250000,0,0);}
.m8_c01340{transform:matrix(0.240825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240825,0.000000,0.000000,0.250000,0,0);}
.m3a_c01340{transform:matrix(0.241075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241075,0.000000,0.000000,0.250000,0,0);}
.m1a_c01340{transform:matrix(0.244425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244425,0.000000,0.000000,0.250000,0,0);}
.m3c_c01340{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m23_c01340{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.ma_c01340{transform:matrix(0.249575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249575,0.000000,0.000000,0.250000,0,0);}
.m3b_c01340{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m3e_c01340{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);}
.m4b_c01340{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m0_c01340{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01340{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m21_c01340{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01340{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);}
.m46_c01340{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01340{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m30_c01340{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m25_c01340{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);}
.m2f_c01340{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m2_c01340{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m34_c01340{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m22_c01340{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m3_c01340{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);}
.m36_c01340{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_c01340{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m26_c01340{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.me_c01340{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m6_c01340{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m49_c01340{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m43_c01340{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m57_c01340{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.mf_c01340{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m59_c01340{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01340{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m39_c01340{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mb_c01340{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m4_c01340{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m44_c01340{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m18_c01340{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m50_c01340{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);}
.m3f_c01340{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);}
.m41_c01340{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m27_c01340{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m13_c01340{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m14_c01340{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);}
.m5d_c01340{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m9_c01340{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m24_c01340{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);}
.m7_c01340{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_c01340{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);}
.m2e_c01340{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);}
.m42_c01340{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m5e_c01340{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m35_c01340{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.md_c01340{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);}
.m56_c01340{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);}
.m32_c01340{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m48_c01340{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m53_c01340{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m1_c01340{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m37_c01340{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);}
.m1d_c01340{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m4a_c01340{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);}
.m29_c01340{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m11_c01340{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m47_c01340{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01340{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);}
.m51_c01340{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m12_c01340{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);}
.m31_c01340{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01340{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m20_c01340{transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);}
.m5a_c01340{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01340{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m33_c01340{transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);}
.m19_c01340{transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);}
.v1_c01340{vertical-align:-5.760000px;}
.v0_c01340{vertical-align:0.000000px;}
.ls0_c01340{letter-spacing:0.000000px;}
.sc__c01340{text-shadow:none;}
.sc0_c01340{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01340{-webkit-text-stroke:0px transparent;}
.sc0_c01340{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01340{word-spacing:0.000000px;}
.ws0_c01340{word-spacing:9.212400px;}
.fc0_c01340{color:transparent;}
.fsf_c01340{font-size:17.280000px;}
.fs10_c01340{font-size:23.040000px;}
.fse_c01340{font-size:34.560000px;}
.fs12_c01340{font-size:37.440000px;}
.fs1_c01340{font-size:40.320000px;}
.fsa_c01340{font-size:43.200000px;}
.fs13_c01340{font-size:46.080000px;}
.fs11_c01340{font-size:48.960000px;}
.fsc_c01340{font-size:51.840000px;}
.fs6_c01340{font-size:54.720000px;}
.fs8_c01340{font-size:57.600000px;}
.fs0_c01340{font-size:60.480000px;}
.fs9_c01340{font-size:63.360000px;}
.fsb_c01340{font-size:66.240000px;}
.fs4_c01340{font-size:69.120000px;}
.fs7_c01340{font-size:72.000000px;}
.fsd_c01340{font-size:74.880000px;}
.fs2_c01340{font-size:77.760000px;}
.fs3_c01340{font-size:80.640000px;}
.fs5_c01340{font-size:83.520000px;}
.y0_c01340{bottom:0.000000px;}
.y53_c01340{bottom:87.840000px;}
.y55_c01340{bottom:90.000000px;}
.y54_c01340{bottom:90.720000px;}
.y52_c01340{bottom:92.160000px;}
.y56_c01340{bottom:92.880000px;}
.y7c_c01340{bottom:94.320000px;}
.y4f_c01340{bottom:131.760000px;}
.y4e_c01340{bottom:133.200000px;}
.y50_c01340{bottom:133.920000px;}
.y4d_c01340{bottom:135.360000px;}
.y7b_c01340{bottom:136.080000px;}
.y51_c01340{bottom:136.800000px;}
.y7a_c01340{bottom:137.520000px;}
.y4a_c01340{bottom:175.680000px;}
.y4c_c01340{bottom:177.120000px;}
.y4b_c01340{bottom:177.840000px;}
.y49_c01340{bottom:178.560000px;}
.y79_c01340{bottom:180.000000px;}
.y48_c01340{bottom:181.440000px;}
.y44_c01340{bottom:218.880000px;}
.y47_c01340{bottom:219.600000px;}
.y46_c01340{bottom:220.320000px;}
.y45_c01340{bottom:221.040000px;}
.y43_c01340{bottom:221.760000px;}
.y78_c01340{bottom:222.480000px;}
.y3e_c01340{bottom:262.800000px;}
.y42_c01340{bottom:263.520000px;}
.y3f_c01340{bottom:264.960000px;}
.y40_c01340{bottom:265.680000px;}
.y3d_c01340{bottom:266.400000px;}
.y41_c01340{bottom:267.120000px;}
.y3c_c01340{bottom:306.000000px;}
.y76_c01340{bottom:308.160000px;}
.y3a_c01340{bottom:308.880000px;}
.y3b_c01340{bottom:309.600000px;}
.y77_c01340{bottom:311.040000px;}
.y39_c01340{bottom:349.200000px;}
.y37_c01340{bottom:352.080000px;}
.y75_c01340{bottom:354.240000px;}
.y38_c01340{bottom:355.680000px;}
.y36_c01340{bottom:392.400000px;}
.y74_c01340{bottom:394.560000px;}
.y33_c01340{bottom:395.280000px;}
.y35_c01340{bottom:396.000000px;}
.y34_c01340{bottom:399.600000px;}
.y32_c01340{bottom:436.320000px;}
.y72_c01340{bottom:437.040000px;}
.y73_c01340{bottom:437.760000px;}
.y31_c01340{bottom:439.920000px;}
.y71_c01340{bottom:440.640000px;}
.y30_c01340{bottom:478.800000px;}
.y70_c01340{bottom:480.240000px;}
.y2f_c01340{bottom:482.400000px;}
.y2e_c01340{bottom:522.720000px;}
.y6e_c01340{bottom:523.440000px;}
.y6f_c01340{bottom:524.160000px;}
.y2d_c01340{bottom:525.600000px;}
.y2c_c01340{bottom:565.200000px;}
.y6c_c01340{bottom:566.640000px;}
.y2a_c01340{bottom:567.360000px;}
.y6d_c01340{bottom:568.080000px;}
.y2b_c01340{bottom:569.520000px;}
.y29_c01340{bottom:608.400000px;}
.y26_c01340{bottom:609.120000px;}
.y28_c01340{bottom:609.840000px;}
.y6b_c01340{bottom:610.560000px;}
.y27_c01340{bottom:611.280000px;}
.y25_c01340{bottom:612.000000px;}
.y24_c01340{bottom:651.600000px;}
.y6a_c01340{bottom:652.320000px;}
.y69_c01340{bottom:653.760000px;}
.y23_c01340{bottom:655.200000px;}
.y67_c01340{bottom:694.080000px;}
.y22_c01340{bottom:695.520000px;}
.y68_c01340{bottom:696.240000px;}
.y21_c01340{bottom:697.680000px;}
.y66_c01340{bottom:738.000000px;}
.y20_c01340{bottom:738.720000px;}
.y64_c01340{bottom:739.440000px;}
.y65_c01340{bottom:740.160000px;}
.y1d_c01340{bottom:740.880000px;}
.y1e_c01340{bottom:741.600000px;}
.y1f_c01340{bottom:742.320000px;}
.y63_c01340{bottom:780.480000px;}
.y1c_c01340{bottom:781.200000px;}
.y62_c01340{bottom:781.920000px;}
.y19_c01340{bottom:782.640000px;}
.y17_c01340{bottom:784.080000px;}
.y1b_c01340{bottom:784.800000px;}
.y1a_c01340{bottom:785.520000px;}
.y16_c01340{bottom:786.240000px;}
.y18_c01340{bottom:789.840000px;}
.y61_c01340{bottom:825.120000px;}
.y15_c01340{bottom:826.560000px;}
.y60_c01340{bottom:827.280000px;}
.y14_c01340{bottom:828.720000px;}
.y13_c01340{bottom:867.600000px;}
.y5f_c01340{bottom:868.320000px;}
.yf_c01340{bottom:869.040000px;}
.y10_c01340{bottom:869.760000px;}
.y12_c01340{bottom:871.200000px;}
.y11_c01340{bottom:871.920000px;}
.ye_c01340{bottom:872.640000px;}
.y5d_c01340{bottom:910.800000px;}
.y5e_c01340{bottom:912.240000px;}
.yd_c01340{bottom:912.960000px;}
.yc_c01340{bottom:913.680000px;}
.yb_c01340{bottom:953.280000px;}
.y5c_c01340{bottom:954.000000px;}
.y5b_c01340{bottom:954.720000px;}
.y8_c01340{bottom:955.440000px;}
.ya_c01340{bottom:956.160000px;}
.y7_c01340{bottom:957.600000px;}
.y9_c01340{bottom:959.760000px;}
.y59_c01340{bottom:995.760000px;}
.y5a_c01340{bottom:996.480000px;}
.y5_c01340{bottom:997.920000px;}
.y6_c01340{bottom:998.640000px;}
.y58_c01340{bottom:1039.680000px;}
.y4_c01340{bottom:1040.400000px;}
.y3_c01340{bottom:1041.840000px;}
.y57_c01340{bottom:1042.560000px;}
.y2_c01340{bottom:1043.280000px;}
.y1_c01340{bottom:1045.440000px;}
.h11_c01340{height:15.550313px;}
.h12_c01340{height:20.733750px;}
.h10_c01340{height:31.100625px;}
.h14_c01340{height:33.692344px;}
.h3_c01340{height:36.284062px;}
.hc_c01340{height:38.875781px;}
.h15_c01340{height:41.467500px;}
.h13_c01340{height:44.059219px;}
.he_c01340{height:46.650937px;}
.h8_c01340{height:49.242656px;}
.ha_c01340{height:51.834375px;}
.h2_c01340{height:54.426094px;}
.hb_c01340{height:57.017812px;}
.hd_c01340{height:59.609531px;}
.h6_c01340{height:62.201250px;}
.h9_c01340{height:64.792969px;}
.hf_c01340{height:67.384687px;}
.h4_c01340{height:69.976406px;}
.h5_c01340{height:72.568125px;}
.h7_c01340{height:75.159844px;}
.h0_c01340{height:1153.440000px;}
.h1_c01340{height:1153.500000px;}
.w1_c01340{width:773.250000px;}
.w0_c01340{width:773.280000px;}
.x0_c01340{left:0.000000px;}
.x1_c01340{left:50.400000px;}
.x26_c01340{left:51.840000px;}
.x2_c01340{left:60.480000px;}
.xe_c01340{left:69.120000px;}
.x11_c01340{left:71.280000px;}
.xf_c01340{left:79.200000px;}
.x3_c01340{left:90.720000px;}
.x13_c01340{left:100.080000px;}
.xa_c01340{left:101.520000px;}
.x4_c01340{left:168.480000px;}
.x24_c01340{left:175.680000px;}
.x12_c01340{left:177.120000px;}
.x19_c01340{left:185.760000px;}
.x18_c01340{left:187.200000px;}
.xb_c01340{left:188.640000px;}
.x6_c01340{left:210.240000px;}
.x1b_c01340{left:218.880000px;}
.x20_c01340{left:229.680000px;}
.xc_c01340{left:231.120000px;}
.x14_c01340{left:239.760000px;}
.x22_c01340{left:262.080000px;}
.x7_c01340{left:265.680000px;}
.x27_c01340{left:272.880000px;}
.x10_c01340{left:274.320000px;}
.x5_c01340{left:276.480000px;}
.x15_c01340{left:285.840000px;}
.x1c_c01340{left:316.080000px;}
.xd_c01340{left:328.320000px;}
.x1a_c01340{left:349.200000px;}
.x16_c01340{left:370.800000px;}
.x8_c01340{left:382.320000px;}
.x21_c01340{left:390.960000px;}
.x1d_c01340{left:412.560000px;}
.x17_c01340{left:414.000000px;}
.x23_c01340{left:434.160000px;}
.x9_c01340{left:437.040000px;}
.x25_c01340{left:465.120000px;}
.x1e_c01340{left:466.560000px;}
.x1f_c01340{left:509.040000px;}
.x3a_c01340{left:594.720000px;}
.x35_c01340{left:596.160000px;}
.x31_c01340{left:597.600000px;}
.x28_c01340{left:599.040000px;}
.x3f_c01340{left:605.520000px;}
.x3b_c01340{left:606.960000px;}
.x29_c01340{left:609.840000px;}
.x40_c01340{left:619.200000px;}
.x32_c01340{left:620.640000px;}
.x2a_c01340{left:623.520000px;}
.x3e_c01340{left:627.840000px;}
.x36_c01340{left:629.280000px;}
.x2e_c01340{left:631.440000px;}
.x3c_c01340{left:652.320000px;}
.x41_c01340{left:660.240000px;}
.x37_c01340{left:661.680000px;}
.x30_c01340{left:663.120000px;}
.x2f_c01340{left:664.560000px;}
.x3d_c01340{left:671.760000px;}
.x38_c01340{left:702.000000px;}
.x33_c01340{left:704.160000px;}
.x2d_c01340{left:706.320000px;}
.x2b_c01340{left:707.760000px;}
.x39_c01340{left:724.320000px;}
.x34_c01340{left:725.760000px;}
.x2c_c01340{left:727.920000px;}
@media print{
.v1_c01340{vertical-align:-5.120000pt;}
.v0_c01340{vertical-align:0.000000pt;}
.ls0_c01340{letter-spacing:0.000000pt;}
.ws1_c01340{word-spacing:0.000000pt;}
.ws0_c01340{word-spacing:8.188800pt;}
.fsf_c01340{font-size:15.360000pt;}
.fs10_c01340{font-size:20.480000pt;}
.fse_c01340{font-size:30.720000pt;}
.fs12_c01340{font-size:33.280000pt;}
.fs1_c01340{font-size:35.840000pt;}
.fsa_c01340{font-size:38.400000pt;}
.fs13_c01340{font-size:40.960000pt;}
.fs11_c01340{font-size:43.520000pt;}
.fsc_c01340{font-size:46.080000pt;}
.fs6_c01340{font-size:48.640000pt;}
.fs8_c01340{font-size:51.200000pt;}
.fs0_c01340{font-size:53.760000pt;}
.fs9_c01340{font-size:56.320000pt;}
.fsb_c01340{font-size:58.880000pt;}
.fs4_c01340{font-size:61.440000pt;}
.fs7_c01340{font-size:64.000000pt;}
.fsd_c01340{font-size:66.560000pt;}
.fs2_c01340{font-size:69.120000pt;}
.fs3_c01340{font-size:71.680000pt;}
.fs5_c01340{font-size:74.240000pt;}
.y0_c01340{bottom:0.000000pt;}
.y53_c01340{bottom:78.080000pt;}
.y55_c01340{bottom:80.000000pt;}
.y54_c01340{bottom:80.640000pt;}
.y52_c01340{bottom:81.920000pt;}
.y56_c01340{bottom:82.560000pt;}
.y7c_c01340{bottom:83.840000pt;}
.y4f_c01340{bottom:117.120000pt;}
.y4e_c01340{bottom:118.400000pt;}
.y50_c01340{bottom:119.040000pt;}
.y4d_c01340{bottom:120.320000pt;}
.y7b_c01340{bottom:120.960000pt;}
.y51_c01340{bottom:121.600000pt;}
.y7a_c01340{bottom:122.240000pt;}
.y4a_c01340{bottom:156.160000pt;}
.y4c_c01340{bottom:157.440000pt;}
.y4b_c01340{bottom:158.080000pt;}
.y49_c01340{bottom:158.720000pt;}
.y79_c01340{bottom:160.000000pt;}
.y48_c01340{bottom:161.280000pt;}
.y44_c01340{bottom:194.560000pt;}
.y47_c01340{bottom:195.200000pt;}
.y46_c01340{bottom:195.840000pt;}
.y45_c01340{bottom:196.480000pt;}
.y43_c01340{bottom:197.120000pt;}
.y78_c01340{bottom:197.760000pt;}
.y3e_c01340{bottom:233.600000pt;}
.y42_c01340{bottom:234.240000pt;}
.y3f_c01340{bottom:235.520000pt;}
.y40_c01340{bottom:236.160000pt;}
.y3d_c01340{bottom:236.800000pt;}
.y41_c01340{bottom:237.440000pt;}
.y3c_c01340{bottom:272.000000pt;}
.y76_c01340{bottom:273.920000pt;}
.y3a_c01340{bottom:274.560000pt;}
.y3b_c01340{bottom:275.200000pt;}
.y77_c01340{bottom:276.480000pt;}
.y39_c01340{bottom:310.400000pt;}
.y37_c01340{bottom:312.960000pt;}
.y75_c01340{bottom:314.880000pt;}
.y38_c01340{bottom:316.160000pt;}
.y36_c01340{bottom:348.800000pt;}
.y74_c01340{bottom:350.720000pt;}
.y33_c01340{bottom:351.360000pt;}
.y35_c01340{bottom:352.000000pt;}
.y34_c01340{bottom:355.200000pt;}
.y32_c01340{bottom:387.840000pt;}
.y72_c01340{bottom:388.480000pt;}
.y73_c01340{bottom:389.120000pt;}
.y31_c01340{bottom:391.040000pt;}
.y71_c01340{bottom:391.680000pt;}
.y30_c01340{bottom:425.600000pt;}
.y70_c01340{bottom:426.880000pt;}
.y2f_c01340{bottom:428.800000pt;}
.y2e_c01340{bottom:464.640000pt;}
.y6e_c01340{bottom:465.280000pt;}
.y6f_c01340{bottom:465.920000pt;}
.y2d_c01340{bottom:467.200000pt;}
.y2c_c01340{bottom:502.400000pt;}
.y6c_c01340{bottom:503.680000pt;}
.y2a_c01340{bottom:504.320000pt;}
.y6d_c01340{bottom:504.960000pt;}
.y2b_c01340{bottom:506.240000pt;}
.y29_c01340{bottom:540.800000pt;}
.y26_c01340{bottom:541.440000pt;}
.y28_c01340{bottom:542.080000pt;}
.y6b_c01340{bottom:542.720000pt;}
.y27_c01340{bottom:543.360000pt;}
.y25_c01340{bottom:544.000000pt;}
.y24_c01340{bottom:579.200000pt;}
.y6a_c01340{bottom:579.840000pt;}
.y69_c01340{bottom:581.120000pt;}
.y23_c01340{bottom:582.400000pt;}
.y67_c01340{bottom:616.960000pt;}
.y22_c01340{bottom:618.240000pt;}
.y68_c01340{bottom:618.880000pt;}
.y21_c01340{bottom:620.160000pt;}
.y66_c01340{bottom:656.000000pt;}
.y20_c01340{bottom:656.640000pt;}
.y64_c01340{bottom:657.280000pt;}
.y65_c01340{bottom:657.920000pt;}
.y1d_c01340{bottom:658.560000pt;}
.y1e_c01340{bottom:659.200000pt;}
.y1f_c01340{bottom:659.840000pt;}
.y63_c01340{bottom:693.760000pt;}
.y1c_c01340{bottom:694.400000pt;}
.y62_c01340{bottom:695.040000pt;}
.y19_c01340{bottom:695.680000pt;}
.y17_c01340{bottom:696.960000pt;}
.y1b_c01340{bottom:697.600000pt;}
.y1a_c01340{bottom:698.240000pt;}
.y16_c01340{bottom:698.880000pt;}
.y18_c01340{bottom:702.080000pt;}
.y61_c01340{bottom:733.440000pt;}
.y15_c01340{bottom:734.720000pt;}
.y60_c01340{bottom:735.360000pt;}
.y14_c01340{bottom:736.640000pt;}
.y13_c01340{bottom:771.200000pt;}
.y5f_c01340{bottom:771.840000pt;}
.yf_c01340{bottom:772.480000pt;}
.y10_c01340{bottom:773.120000pt;}
.y12_c01340{bottom:774.400000pt;}
.y11_c01340{bottom:775.040000pt;}
.ye_c01340{bottom:775.680000pt;}
.y5d_c01340{bottom:809.600000pt;}
.y5e_c01340{bottom:810.880000pt;}
.yd_c01340{bottom:811.520000pt;}
.yc_c01340{bottom:812.160000pt;}
.yb_c01340{bottom:847.360000pt;}
.y5c_c01340{bottom:848.000000pt;}
.y5b_c01340{bottom:848.640000pt;}
.y8_c01340{bottom:849.280000pt;}
.ya_c01340{bottom:849.920000pt;}
.y7_c01340{bottom:851.200000pt;}
.y9_c01340{bottom:853.120000pt;}
.y59_c01340{bottom:885.120000pt;}
.y5a_c01340{bottom:885.760000pt;}
.y5_c01340{bottom:887.040000pt;}
.y6_c01340{bottom:887.680000pt;}
.y58_c01340{bottom:924.160000pt;}
.y4_c01340{bottom:924.800000pt;}
.y3_c01340{bottom:926.080000pt;}
.y57_c01340{bottom:926.720000pt;}
.y2_c01340{bottom:927.360000pt;}
.y1_c01340{bottom:929.280000pt;}
.h11_c01340{height:13.822500pt;}
.h12_c01340{height:18.430000pt;}
.h10_c01340{height:27.645000pt;}
.h14_c01340{height:29.948750pt;}
.h3_c01340{height:32.252500pt;}
.hc_c01340{height:34.556250pt;}
.h15_c01340{height:36.860000pt;}
.h13_c01340{height:39.163750pt;}
.he_c01340{height:41.467500pt;}
.h8_c01340{height:43.771250pt;}
.ha_c01340{height:46.075000pt;}
.h2_c01340{height:48.378750pt;}
.hb_c01340{height:50.682500pt;}
.hd_c01340{height:52.986250pt;}
.h6_c01340{height:55.290000pt;}
.h9_c01340{height:57.593750pt;}
.hf_c01340{height:59.897500pt;}
.h4_c01340{height:62.201250pt;}
.h5_c01340{height:64.505000pt;}
.h7_c01340{height:66.808750pt;}
.h0_c01340{height:1025.280000pt;}
.h1_c01340{height:1025.333333pt;}
.w1_c01340{width:687.333333pt;}
.w0_c01340{width:687.360000pt;}
.x0_c01340{left:0.000000pt;}
.x1_c01340{left:44.800000pt;}
.x26_c01340{left:46.080000pt;}
.x2_c01340{left:53.760000pt;}
.xe_c01340{left:61.440000pt;}
.x11_c01340{left:63.360000pt;}
.xf_c01340{left:70.400000pt;}
.x3_c01340{left:80.640000pt;}
.x13_c01340{left:88.960000pt;}
.xa_c01340{left:90.240000pt;}
.x4_c01340{left:149.760000pt;}
.x24_c01340{left:156.160000pt;}
.x12_c01340{left:157.440000pt;}
.x19_c01340{left:165.120000pt;}
.x18_c01340{left:166.400000pt;}
.xb_c01340{left:167.680000pt;}
.x6_c01340{left:186.880000pt;}
.x1b_c01340{left:194.560000pt;}
.x20_c01340{left:204.160000pt;}
.xc_c01340{left:205.440000pt;}
.x14_c01340{left:213.120000pt;}
.x22_c01340{left:232.960000pt;}
.x7_c01340{left:236.160000pt;}
.x27_c01340{left:242.560000pt;}
.x10_c01340{left:243.840000pt;}
.x5_c01340{left:245.760000pt;}
.x15_c01340{left:254.080000pt;}
.x1c_c01340{left:280.960000pt;}
.xd_c01340{left:291.840000pt;}
.x1a_c01340{left:310.400000pt;}
.x16_c01340{left:329.600000pt;}
.x8_c01340{left:339.840000pt;}
.x21_c01340{left:347.520000pt;}
.x1d_c01340{left:366.720000pt;}
.x17_c01340{left:368.000000pt;}
.x23_c01340{left:385.920000pt;}
.x9_c01340{left:388.480000pt;}
.x25_c01340{left:413.440000pt;}
.x1e_c01340{left:414.720000pt;}
.x1f_c01340{left:452.480000pt;}
.x3a_c01340{left:528.640000pt;}
.x35_c01340{left:529.920000pt;}
.x31_c01340{left:531.200000pt;}
.x28_c01340{left:532.480000pt;}
.x3f_c01340{left:538.240000pt;}
.x3b_c01340{left:539.520000pt;}
.x29_c01340{left:542.080000pt;}
.x40_c01340{left:550.400000pt;}
.x32_c01340{left:551.680000pt;}
.x2a_c01340{left:554.240000pt;}
.x3e_c01340{left:558.080000pt;}
.x36_c01340{left:559.360000pt;}
.x2e_c01340{left:561.280000pt;}
.x3c_c01340{left:579.840000pt;}
.x41_c01340{left:586.880000pt;}
.x37_c01340{left:588.160000pt;}
.x30_c01340{left:589.440000pt;}
.x2f_c01340{left:590.720000pt;}
.x3d_c01340{left:597.120000pt;}
.x38_c01340{left:624.000000pt;}
.x33_c01340{left:625.920000pt;}
.x2d_c01340{left:627.840000pt;}
.x2b_c01340{left:629.120000pt;}
.x39_c01340{left:643.840000pt;}
.x34_c01340{left:645.120000pt;}
.x2c_c01340{left:647.040000pt;}
}





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

.ir_c01341:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01341{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01341;src:url('chunks/assets/font_a19a35a140ca2d0f86fa5fff.woff2')format("woff");}.ff1_c01341{font-family:ff1_c01341;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m37_c01341{transform:matrix(0.151500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151500,0.000000,0.000000,0.250000,0,0);}
.m44_c01341{transform:matrix(0.174850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174850,0.000000,0.000000,0.250000,0,0);}
.m3b_c01341{transform:matrix(0.209975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209975,0.000000,0.000000,0.250000,0,0);}
.m3a_c01341{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m34_c01341{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mb_c01341{transform:matrix(0.228525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228525,0.000000,0.000000,0.250000,0,0);}
.m52_c01341{transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);}
.m4f_c01341{transform:matrix(0.232650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232650,0.000000,0.000000,0.250000,0,0);}
.m4e_c01341{transform:matrix(0.233875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233875,0.000000,0.000000,0.250000,0,0);}
.m2a_c01341{transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);}
.m51_c01341{transform:matrix(0.240725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240725,0.000000,0.000000,0.250000,0,0);}
.m1_c01341{transform:matrix(0.242350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242350,0.000000,0.000000,0.250000,0,0);}
.m42_c01341{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m19_c01341{transform:matrix(0.245850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245850,0.000000,0.000000,0.250000,0,0);}
.m4c_c01341{transform:matrix(0.246075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246075,0.000000,0.000000,0.250000,0,0);}
.m47_c01341{transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);}
.m8_c01341{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_c01341{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);}
.m32_c01341{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m17_c01341{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01341{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m6_c01341{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_c01341{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m25_c01341{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m21_c01341{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);}
.m1e_c01341{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);}
.m35_c01341{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.md_c01341{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m26_c01341{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m4_c01341{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m22_c01341{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m13_c01341{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01341{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mf_c01341{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m9_c01341{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2_c01341{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01341{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01341{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m24_c01341{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m39_c01341{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m33_c01341{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m53_c01341{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m46_c01341{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m11_c01341{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01341{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m7_c01341{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m3_c01341{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);}
.m40_c01341{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);}
.m43_c01341{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);}
.m28_c01341{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);}
.m3c_c01341{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_c01341{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m48_c01341{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);}
.m38_c01341{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m50_c01341{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01341{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);}
.m30_c01341{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01341{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);}
.m15_c01341{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);}
.m31_c01341{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.ma_c01341{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);}
.m2d_c01341{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);}
.m5_c01341{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);}
.m18_c01341{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01341{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m20_c01341{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01341{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);}
.m0_c01341{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m36_c01341{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);}
.m2f_c01341{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01341{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m41_c01341{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01341{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m49_c01341{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m27_c01341{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01341{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m12_c01341{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m29_c01341{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);}
.m45_c01341{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m23_c01341{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01341{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01341{transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);}
.m16_c01341{transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);}
.m14_c01341{transform:matrix(0.832500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832500,0.000000,0.000000,0.250000,0,0);}
.v1_c01341{vertical-align:-11.520000px;}
.v0_c01341{vertical-align:0.000000px;}
.v2_c01341{vertical-align:5.760000px;}
.ls0_c01341{letter-spacing:0.000000px;}
.sc__c01341{text-shadow:none;}
.sc0_c01341{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01341{-webkit-text-stroke:0px transparent;}
.sc0_c01341{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01341{word-spacing:-0.127440px;}
.ws2_c01341{word-spacing:0.000000px;}
.ws1_c01341{word-spacing:9.212400px;}
.fc0_c01341{color:transparent;}
.fsa_c01341{font-size:31.680000px;}
.fs10_c01341{font-size:34.560000px;}
.fsc_c01341{font-size:40.320000px;}
.fse_c01341{font-size:43.200000px;}
.fsf_c01341{font-size:46.080000px;}
.fs9_c01341{font-size:48.960000px;}
.fs8_c01341{font-size:51.840000px;}
.fs7_c01341{font-size:54.720000px;}
.fs0_c01341{font-size:57.600000px;}
.fs3_c01341{font-size:60.480000px;}
.fs2_c01341{font-size:63.360000px;}
.fs6_c01341{font-size:66.240000px;}
.fsb_c01341{font-size:69.120000px;}
.fs4_c01341{font-size:72.000000px;}
.fs1_c01341{font-size:74.880000px;}
.fs5_c01341{font-size:77.760000px;}
.fsd_c01341{font-size:80.640000px;}
.fs11_c01341{font-size:83.520000px;}
.y0_c01341{bottom:0.000000px;}
.y6e_c01341{bottom:69.840000px;}
.y70_c01341{bottom:71.280000px;}
.y6f_c01341{bottom:74.160000px;}
.y6d_c01341{bottom:75.600000px;}
.y76_c01341{bottom:76.320000px;}
.y6c_c01341{bottom:113.040000px;}
.y6b_c01341{bottom:113.760000px;}
.y6a_c01341{bottom:118.800000px;}
.y75_c01341{bottom:120.240000px;}
.y73_c01341{bottom:120.960000px;}
.y74_c01341{bottom:121.680000px;}
.y67_c01341{bottom:157.680000px;}
.y69_c01341{bottom:158.400000px;}
.y68_c01341{bottom:159.120000px;}
.y66_c01341{bottom:161.280000px;}
.y71_c01341{bottom:162.000000px;}
.y72_c01341{bottom:162.720000px;}
.y65_c01341{bottom:200.160000px;}
.y64_c01341{bottom:202.320000px;}
.y63_c01341{bottom:205.200000px;}
.y5e_c01341{bottom:232.560000px;}
.y60_c01341{bottom:234.720000px;}
.y5f_c01341{bottom:236.160000px;}
.y5d_c01341{bottom:236.880000px;}
.y61_c01341{bottom:237.600000px;}
.y62_c01341{bottom:238.320000px;}
.y39_c01341{bottom:276.480000px;}
.y3a_c01341{bottom:277.200000px;}
.y3b_c01341{bottom:279.360000px;}
.y5c_c01341{bottom:280.080000px;}
.y38_c01341{bottom:280.800000px;}
.y34_c01341{bottom:319.680000px;}
.y35_c01341{bottom:321.120000px;}
.y36_c01341{bottom:321.840000px;}
.y33_c01341{bottom:323.280000px;}
.y5b_c01341{bottom:324.000000px;}
.y37_c01341{bottom:324.720000px;}
.y32_c01341{bottom:362.880000px;}
.y31_c01341{bottom:367.200000px;}
.y2e_c01341{bottom:396.720000px;}
.y30_c01341{bottom:397.440000px;}
.y2d_c01341{bottom:398.880000px;}
.y59_c01341{bottom:399.600000px;}
.y2f_c01341{bottom:400.320000px;}
.y5a_c01341{bottom:401.040000px;}
.y2c_c01341{bottom:439.920000px;}
.y2b_c01341{bottom:442.080000px;}
.y58_c01341{bottom:442.800000px;}
.y2a_c01341{bottom:483.120000px;}
.y55_c01341{bottom:483.840000px;}
.y56_c01341{bottom:485.280000px;}
.y29_c01341{bottom:486.000000px;}
.y57_c01341{bottom:486.720000px;}
.y28_c01341{bottom:527.040000px;}
.y54_c01341{bottom:527.760000px;}
.y52_c01341{bottom:528.480000px;}
.y26_c01341{bottom:529.200000px;}
.y27_c01341{bottom:529.920000px;}
.y53_c01341{bottom:530.640000px;}
.y25_c01341{bottom:570.240000px;}
.y50_c01341{bottom:570.960000px;}
.y4f_c01341{bottom:571.680000px;}
.y24_c01341{bottom:572.400000px;}
.y51_c01341{bottom:573.840000px;}
.y22_c01341{bottom:612.000000px;}
.y4b_c01341{bottom:612.720000px;}
.y4e_c01341{bottom:614.160000px;}
.y21_c01341{bottom:614.880000px;}
.y4d_c01341{bottom:615.600000px;}
.y23_c01341{bottom:616.320000px;}
.y4c_c01341{bottom:617.040000px;}
.y20_c01341{bottom:656.640000px;}
.y4a_c01341{bottom:657.360000px;}
.y49_c01341{bottom:658.080000px;}
.y1f_c01341{bottom:658.800000px;}
.y1e_c01341{bottom:699.840000px;}
.y1d_c01341{bottom:700.560000px;}
.y48_c01341{bottom:701.280000px;}
.y1c_c01341{bottom:702.000000px;}
.y1b_c01341{bottom:742.320000px;}
.y46_c01341{bottom:743.040000px;}
.y47_c01341{bottom:743.760000px;}
.y19_c01341{bottom:745.200000px;}
.y1a_c01341{bottom:745.920000px;}
.y16_c01341{bottom:786.240000px;}
.y15_c01341{bottom:786.960000px;}
.y17_c01341{bottom:787.680000px;}
.y18_c01341{bottom:789.840000px;}
.y14_c01341{bottom:828.720000px;}
.y11_c01341{bottom:829.440000px;}
.y12_c01341{bottom:830.160000px;}
.y10_c01341{bottom:830.880000px;}
.y13_c01341{bottom:832.320000px;}
.y45_c01341{bottom:871.200000px;}
.yf_c01341{bottom:871.920000px;}
.y44_c01341{bottom:873.360000px;}
.ye_c01341{bottom:874.080000px;}
.y42_c01341{bottom:914.400000px;}
.y43_c01341{bottom:915.120000px;}
.yd_c01341{bottom:915.840000px;}
.y41_c01341{bottom:918.000000px;}
.yc_c01341{bottom:957.600000px;}
.ya_c01341{bottom:958.320000px;}
.yb_c01341{bottom:959.040000px;}
.y40_c01341{bottom:959.760000px;}
.y9_c01341{bottom:960.480000px;}
.y8_c01341{bottom:1000.080000px;}
.y3f_c01341{bottom:1001.520000px;}
.y6_c01341{bottom:1002.240000px;}
.y5_c01341{bottom:1003.680000px;}
.y7_c01341{bottom:1005.120000px;}
.y3d_c01341{bottom:1045.440000px;}
.y2_c01341{bottom:1046.160000px;}
.y3e_c01341{bottom:1046.880000px;}
.y1_c01341{bottom:1047.600000px;}
.y4_c01341{bottom:1048.320000px;}
.y3_c01341{bottom:1049.040000px;}
.y3c_c01341{bottom:1103.040000px;}
.hb_c01341{height:28.508906px;}
.h13_c01341{height:31.100625px;}
.he_c01341{height:36.284062px;}
.h10_c01341{height:38.875781px;}
.h11_c01341{height:41.467500px;}
.ha_c01341{height:44.059219px;}
.h9_c01341{height:46.650937px;}
.h8_c01341{height:49.242656px;}
.h2_c01341{height:51.834375px;}
.h5_c01341{height:54.426094px;}
.h4_c01341{height:57.017812px;}
.h7_c01341{height:59.609531px;}
.h12_c01341{height:60.186094px;}
.hd_c01341{height:62.201250px;}
.hc_c01341{height:64.792969px;}
.h3_c01341{height:67.384687px;}
.h6_c01341{height:69.976406px;}
.hf_c01341{height:72.568125px;}
.h14_c01341{height:75.159844px;}
.h0_c01341{height:1154.880000px;}
.h1_c01341{height:1155.000000px;}
.w0_c01341{width:774.720000px;}
.w1_c01341{width:774.750000px;}
.x0_c01341{left:0.000000px;}
.x11_c01341{left:49.680000px;}
.x1_c01341{left:51.120000px;}
.xe_c01341{left:71.280000px;}
.x38_c01341{left:90.720000px;}
.x12_c01341{left:100.800000px;}
.x6_c01341{left:102.240000px;}
.x2_c01341{left:103.680000px;}
.x39_c01341{left:144.000000px;}
.x18_c01341{left:177.120000px;}
.x14_c01341{left:188.640000px;}
.x3_c01341{left:190.080000px;}
.x3a_c01341{left:198.720000px;}
.x35_c01341{left:208.800000px;}
.x7_c01341{left:222.480000px;}
.x15_c01341{left:231.840000px;}
.x3c_c01341{left:241.920000px;}
.x9_c01341{left:243.360000px;}
.x10_c01341{left:252.720000px;}
.xd_c01341{left:254.160000px;}
.x13_c01341{left:264.240000px;}
.x4_c01341{left:276.480000px;}
.x19_c01341{left:285.840000px;}
.xb_c01341{left:307.440000px;}
.x3b_c01341{left:318.240000px;}
.x5_c01341{left:329.760000px;}
.x1e_c01341{left:339.120000px;}
.xc_c01341{left:362.160000px;}
.xa_c01341{left:372.960000px;}
.x1f_c01341{left:393.120000px;}
.x16_c01341{left:424.800000px;}
.x1a_c01341{left:434.160000px;}
.x36_c01341{left:436.320000px;}
.xf_c01341{left:457.920000px;}
.x8_c01341{left:470.160000px;}
.x1b_c01341{left:478.080000px;}
.x17_c01341{left:479.520000px;}
.x37_c01341{left:488.160000px;}
.x1c_c01341{left:532.080000px;}
.x2c_c01341{left:565.920000px;}
.x1d_c01341{left:575.280000px;}
.x25_c01341{left:577.439280px;}
.x34_c01341{left:596.160000px;}
.x2b_c01341{left:597.600000px;}
.x24_c01341{left:599.040000px;}
.x31_c01341{left:607.680000px;}
.x32_c01341{left:621.360000px;}
.x2f_c01341{left:630.000000px;}
.x28_c01341{left:631.440000px;}
.x21_c01341{left:632.880000px;}
.x33_c01341{left:661.680000px;}
.x2d_c01341{left:663.120000px;}
.x27_c01341{left:664.560000px;}
.x22_c01341{left:666.000000px;}
.x20_c01341{left:670.320000px;}
.x3d_c01341{left:694.800000px;}
.x2e_c01341{left:704.880000px;}
.x29_c01341{left:706.320000px;}
.x23_c01341{left:708.480000px;}
.x30_c01341{left:725.760000px;}
.x2a_c01341{left:727.200000px;}
.x26_c01341{left:728.640000px;}
@media print{
.v1_c01341{vertical-align:-10.240000pt;}
.v0_c01341{vertical-align:0.000000pt;}
.v2_c01341{vertical-align:5.120000pt;}
.ls0_c01341{letter-spacing:0.000000pt;}
.ws0_c01341{word-spacing:-0.113280pt;}
.ws2_c01341{word-spacing:0.000000pt;}
.ws1_c01341{word-spacing:8.188800pt;}
.fsa_c01341{font-size:28.160000pt;}
.fs10_c01341{font-size:30.720000pt;}
.fsc_c01341{font-size:35.840000pt;}
.fse_c01341{font-size:38.400000pt;}
.fsf_c01341{font-size:40.960000pt;}
.fs9_c01341{font-size:43.520000pt;}
.fs8_c01341{font-size:46.080000pt;}
.fs7_c01341{font-size:48.640000pt;}
.fs0_c01341{font-size:51.200000pt;}
.fs3_c01341{font-size:53.760000pt;}
.fs2_c01341{font-size:56.320000pt;}
.fs6_c01341{font-size:58.880000pt;}
.fsb_c01341{font-size:61.440000pt;}
.fs4_c01341{font-size:64.000000pt;}
.fs1_c01341{font-size:66.560000pt;}
.fs5_c01341{font-size:69.120000pt;}
.fsd_c01341{font-size:71.680000pt;}
.fs11_c01341{font-size:74.240000pt;}
.y0_c01341{bottom:0.000000pt;}
.y6e_c01341{bottom:62.080000pt;}
.y70_c01341{bottom:63.360000pt;}
.y6f_c01341{bottom:65.920000pt;}
.y6d_c01341{bottom:67.200000pt;}
.y76_c01341{bottom:67.840000pt;}
.y6c_c01341{bottom:100.480000pt;}
.y6b_c01341{bottom:101.120000pt;}
.y6a_c01341{bottom:105.600000pt;}
.y75_c01341{bottom:106.880000pt;}
.y73_c01341{bottom:107.520000pt;}
.y74_c01341{bottom:108.160000pt;}
.y67_c01341{bottom:140.160000pt;}
.y69_c01341{bottom:140.800000pt;}
.y68_c01341{bottom:141.440000pt;}
.y66_c01341{bottom:143.360000pt;}
.y71_c01341{bottom:144.000000pt;}
.y72_c01341{bottom:144.640000pt;}
.y65_c01341{bottom:177.920000pt;}
.y64_c01341{bottom:179.840000pt;}
.y63_c01341{bottom:182.400000pt;}
.y5e_c01341{bottom:206.720000pt;}
.y60_c01341{bottom:208.640000pt;}
.y5f_c01341{bottom:209.920000pt;}
.y5d_c01341{bottom:210.560000pt;}
.y61_c01341{bottom:211.200000pt;}
.y62_c01341{bottom:211.840000pt;}
.y39_c01341{bottom:245.760000pt;}
.y3a_c01341{bottom:246.400000pt;}
.y3b_c01341{bottom:248.320000pt;}
.y5c_c01341{bottom:248.960000pt;}
.y38_c01341{bottom:249.600000pt;}
.y34_c01341{bottom:284.160000pt;}
.y35_c01341{bottom:285.440000pt;}
.y36_c01341{bottom:286.080000pt;}
.y33_c01341{bottom:287.360000pt;}
.y5b_c01341{bottom:288.000000pt;}
.y37_c01341{bottom:288.640000pt;}
.y32_c01341{bottom:322.560000pt;}
.y31_c01341{bottom:326.400000pt;}
.y2e_c01341{bottom:352.640000pt;}
.y30_c01341{bottom:353.280000pt;}
.y2d_c01341{bottom:354.560000pt;}
.y59_c01341{bottom:355.200000pt;}
.y2f_c01341{bottom:355.840000pt;}
.y5a_c01341{bottom:356.480000pt;}
.y2c_c01341{bottom:391.040000pt;}
.y2b_c01341{bottom:392.960000pt;}
.y58_c01341{bottom:393.600000pt;}
.y2a_c01341{bottom:429.440000pt;}
.y55_c01341{bottom:430.080000pt;}
.y56_c01341{bottom:431.360000pt;}
.y29_c01341{bottom:432.000000pt;}
.y57_c01341{bottom:432.640000pt;}
.y28_c01341{bottom:468.480000pt;}
.y54_c01341{bottom:469.120000pt;}
.y52_c01341{bottom:469.760000pt;}
.y26_c01341{bottom:470.400000pt;}
.y27_c01341{bottom:471.040000pt;}
.y53_c01341{bottom:471.680000pt;}
.y25_c01341{bottom:506.880000pt;}
.y50_c01341{bottom:507.520000pt;}
.y4f_c01341{bottom:508.160000pt;}
.y24_c01341{bottom:508.800000pt;}
.y51_c01341{bottom:510.080000pt;}
.y22_c01341{bottom:544.000000pt;}
.y4b_c01341{bottom:544.640000pt;}
.y4e_c01341{bottom:545.920000pt;}
.y21_c01341{bottom:546.560000pt;}
.y4d_c01341{bottom:547.200000pt;}
.y23_c01341{bottom:547.840000pt;}
.y4c_c01341{bottom:548.480000pt;}
.y20_c01341{bottom:583.680000pt;}
.y4a_c01341{bottom:584.320000pt;}
.y49_c01341{bottom:584.960000pt;}
.y1f_c01341{bottom:585.600000pt;}
.y1e_c01341{bottom:622.080000pt;}
.y1d_c01341{bottom:622.720000pt;}
.y48_c01341{bottom:623.360000pt;}
.y1c_c01341{bottom:624.000000pt;}
.y1b_c01341{bottom:659.840000pt;}
.y46_c01341{bottom:660.480000pt;}
.y47_c01341{bottom:661.120000pt;}
.y19_c01341{bottom:662.400000pt;}
.y1a_c01341{bottom:663.040000pt;}
.y16_c01341{bottom:698.880000pt;}
.y15_c01341{bottom:699.520000pt;}
.y17_c01341{bottom:700.160000pt;}
.y18_c01341{bottom:702.080000pt;}
.y14_c01341{bottom:736.640000pt;}
.y11_c01341{bottom:737.280000pt;}
.y12_c01341{bottom:737.920000pt;}
.y10_c01341{bottom:738.560000pt;}
.y13_c01341{bottom:739.840000pt;}
.y45_c01341{bottom:774.400000pt;}
.yf_c01341{bottom:775.040000pt;}
.y44_c01341{bottom:776.320000pt;}
.ye_c01341{bottom:776.960000pt;}
.y42_c01341{bottom:812.800000pt;}
.y43_c01341{bottom:813.440000pt;}
.yd_c01341{bottom:814.080000pt;}
.y41_c01341{bottom:816.000000pt;}
.yc_c01341{bottom:851.200000pt;}
.ya_c01341{bottom:851.840000pt;}
.yb_c01341{bottom:852.480000pt;}
.y40_c01341{bottom:853.120000pt;}
.y9_c01341{bottom:853.760000pt;}
.y8_c01341{bottom:888.960000pt;}
.y3f_c01341{bottom:890.240000pt;}
.y6_c01341{bottom:890.880000pt;}
.y5_c01341{bottom:892.160000pt;}
.y7_c01341{bottom:893.440000pt;}
.y3d_c01341{bottom:929.280000pt;}
.y2_c01341{bottom:929.920000pt;}
.y3e_c01341{bottom:930.560000pt;}
.y1_c01341{bottom:931.200000pt;}
.y4_c01341{bottom:931.840000pt;}
.y3_c01341{bottom:932.480000pt;}
.y3c_c01341{bottom:980.480000pt;}
.hb_c01341{height:25.341250pt;}
.h13_c01341{height:27.645000pt;}
.he_c01341{height:32.252500pt;}
.h10_c01341{height:34.556250pt;}
.h11_c01341{height:36.860000pt;}
.ha_c01341{height:39.163750pt;}
.h9_c01341{height:41.467500pt;}
.h8_c01341{height:43.771250pt;}
.h2_c01341{height:46.075000pt;}
.h5_c01341{height:48.378750pt;}
.h4_c01341{height:50.682500pt;}
.h7_c01341{height:52.986250pt;}
.h12_c01341{height:53.498750pt;}
.hd_c01341{height:55.290000pt;}
.hc_c01341{height:57.593750pt;}
.h3_c01341{height:59.897500pt;}
.h6_c01341{height:62.201250pt;}
.hf_c01341{height:64.505000pt;}
.h14_c01341{height:66.808750pt;}
.h0_c01341{height:1026.560000pt;}
.h1_c01341{height:1026.666667pt;}
.w0_c01341{width:688.640000pt;}
.w1_c01341{width:688.666667pt;}
.x0_c01341{left:0.000000pt;}
.x11_c01341{left:44.160000pt;}
.x1_c01341{left:45.440000pt;}
.xe_c01341{left:63.360000pt;}
.x38_c01341{left:80.640000pt;}
.x12_c01341{left:89.600000pt;}
.x6_c01341{left:90.880000pt;}
.x2_c01341{left:92.160000pt;}
.x39_c01341{left:128.000000pt;}
.x18_c01341{left:157.440000pt;}
.x14_c01341{left:167.680000pt;}
.x3_c01341{left:168.960000pt;}
.x3a_c01341{left:176.640000pt;}
.x35_c01341{left:185.600000pt;}
.x7_c01341{left:197.760000pt;}
.x15_c01341{left:206.080000pt;}
.x3c_c01341{left:215.040000pt;}
.x9_c01341{left:216.320000pt;}
.x10_c01341{left:224.640000pt;}
.xd_c01341{left:225.920000pt;}
.x13_c01341{left:234.880000pt;}
.x4_c01341{left:245.760000pt;}
.x19_c01341{left:254.080000pt;}
.xb_c01341{left:273.280000pt;}
.x3b_c01341{left:282.880000pt;}
.x5_c01341{left:293.120000pt;}
.x1e_c01341{left:301.440000pt;}
.xc_c01341{left:321.920000pt;}
.xa_c01341{left:331.520000pt;}
.x1f_c01341{left:349.440000pt;}
.x16_c01341{left:377.600000pt;}
.x1a_c01341{left:385.920000pt;}
.x36_c01341{left:387.840000pt;}
.xf_c01341{left:407.040000pt;}
.x8_c01341{left:417.920000pt;}
.x1b_c01341{left:424.960000pt;}
.x17_c01341{left:426.240000pt;}
.x37_c01341{left:433.920000pt;}
.x1c_c01341{left:472.960000pt;}
.x2c_c01341{left:503.040000pt;}
.x1d_c01341{left:511.360000pt;}
.x25_c01341{left:513.279360pt;}
.x34_c01341{left:529.920000pt;}
.x2b_c01341{left:531.200000pt;}
.x24_c01341{left:532.480000pt;}
.x31_c01341{left:540.160000pt;}
.x32_c01341{left:552.320000pt;}
.x2f_c01341{left:560.000000pt;}
.x28_c01341{left:561.280000pt;}
.x21_c01341{left:562.560000pt;}
.x33_c01341{left:588.160000pt;}
.x2d_c01341{left:589.440000pt;}
.x27_c01341{left:590.720000pt;}
.x22_c01341{left:592.000000pt;}
.x20_c01341{left:595.840000pt;}
.x3d_c01341{left:617.600000pt;}
.x2e_c01341{left:626.560000pt;}
.x29_c01341{left:627.840000pt;}
.x23_c01341{left:629.760000pt;}
.x30_c01341{left:645.120000pt;}
.x2a_c01341{left:646.400000pt;}
.x26_c01341{left:647.680000pt;}
}





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

.ir_c01342:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01342{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01342;src:url('chunks/assets/font_670a7c2927b52325be228f1e.woff2')format("woff");}.ff1_c01342{font-family:ff1_c01342;line-height:1.109863;font-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_c01342{transform:matrix(0.172550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172550,0.000000,0.000000,0.250000,0,0);}
.m17_c01342{transform:matrix(0.187450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187450,0.000000,0.000000,0.250000,0,0);}
.m51_c01342{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01342{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m54_c01342{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);}
.m56_c01342{transform:matrix(0.234200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234200,0.000000,0.000000,0.250000,0,0);}
.m55_c01342{transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);}
.m9_c01342{transform:matrix(0.234725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234725,0.000000,0.000000,0.250000,0,0);}
.m11_c01342{transform:matrix(0.239725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239725,0.000000,0.000000,0.250000,0,0);}
.m1c_c01342{transform:matrix(0.244600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244600,0.000000,0.000000,0.250000,0,0);}
.m4e_c01342{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m5d_c01342{transform:matrix(0.246175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246175,0.000000,0.000000,0.250000,0,0);}
.m16_c01342{transform:matrix(0.247650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247650,0.000000,0.000000,0.250000,0,0);}
.m49_c01342{transform:matrix(0.248825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248825,0.000000,0.000000,0.250000,0,0);}
.m18_c01342{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01342{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);}
.m23_c01342{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mc_c01342{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.mb_c01342{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m2_c01342{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);}
.m41_c01342{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.me_c01342{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01342{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m3_c01342{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m6_c01342{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01342{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m44_c01342{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);}
.m5c_c01342{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m26_c01342{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m14_c01342{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);}
.m4f_c01342{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m10_c01342{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01342{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m52_c01342{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01342{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m8_c01342{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m53_c01342{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01342{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m30_c01342{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m50_c01342{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m22_c01342{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01342{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mf_c01342{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m40_c01342{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m33_c01342{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);}
.m58_c01342{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m36_c01342{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);}
.m3b_c01342{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01342{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);}
.m32_c01342{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m7_c01342{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);}
.m2b_c01342{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01342{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_c01342{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01342{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);}
.m35_c01342{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m5a_c01342{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);}
.m0_c01342{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1_c01342{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);}
.m5_c01342{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);}
.m46_c01342{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01342{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);}
.m48_c01342{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);}
.ma_c01342{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);}
.m43_c01342{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01342{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m19_c01342{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);}
.m24_c01342{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);}
.m21_c01342{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);}
.m37_c01342{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m5b_c01342{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m29_c01342{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m59_c01342{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01342{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);}
.m39_c01342{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m28_c01342{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m12_c01342{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m13_c01342{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m34_c01342{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m31_c01342{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m15_c01342{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);}
.m2f_c01342{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01342{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m47_c01342{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01342{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m38_c01342{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m42_c01342{transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01342{transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);}
.md_c01342{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m45_c01342{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m57_c01342{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m25_c01342{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01342{transform:matrix(1.610000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.610000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.610000,0.000000,0.000000,0.250000,0,0);}
.m4d_c01342{transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);}
.v0_c01342{vertical-align:0.000000px;}
.v1_c01342{vertical-align:8.640000px;}
.ls0_c01342{letter-spacing:0.000000px;}
.sc__c01342{text-shadow:none;}
.sc0_c01342{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01342{-webkit-text-stroke:0px transparent;}
.sc0_c01342{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01342{word-spacing:0.000000px;}
.ws1_c01342{word-spacing:9.474000px;}
.ws0_c01342{word-spacing:17.079600px;}
.fc0_c01342{color:transparent;}
.fs10_c01342{font-size:14.400000px;}
.fs15_c01342{font-size:17.280000px;}
.fs13_c01342{font-size:20.160000px;}
.fs11_c01342{font-size:23.040000px;}
.fs14_c01342{font-size:25.920000px;}
.fsf_c01342{font-size:28.800000px;}
.fs12_c01342{font-size:34.560000px;}
.fsc_c01342{font-size:40.320000px;}
.fs9_c01342{font-size:43.200000px;}
.fs7_c01342{font-size:48.960000px;}
.fsa_c01342{font-size:51.840000px;}
.fs8_c01342{font-size:54.720000px;}
.fs5_c01342{font-size:57.600000px;}
.fs6_c01342{font-size:60.480000px;}
.fs1_c01342{font-size:63.360000px;}
.fsb_c01342{font-size:66.240000px;}
.fs0_c01342{font-size:69.120000px;}
.fse_c01342{font-size:72.000000px;}
.fs3_c01342{font-size:74.880000px;}
.fs2_c01342{font-size:77.760000px;}
.fsd_c01342{font-size:80.640000px;}
.fs4_c01342{font-size:100.800000px;}
.y0_c01342{bottom:0.000000px;}
.y5b_c01342{bottom:98.640000px;}
.y5c_c01342{bottom:99.360000px;}
.y5e_c01342{bottom:100.080000px;}
.y5d_c01342{bottom:102.960000px;}
.y59_c01342{bottom:103.680000px;}
.y77_c01342{bottom:104.400000px;}
.y78_c01342{bottom:106.560000px;}
.y5a_c01342{bottom:107.280000px;}
.y54_c01342{bottom:143.280000px;}
.y56_c01342{bottom:144.000000px;}
.y58_c01342{bottom:144.720000px;}
.y55_c01342{bottom:145.440000px;}
.y57_c01342{bottom:146.160000px;}
.y53_c01342{bottom:146.880000px;}
.y76_c01342{bottom:147.600000px;}
.y75_c01342{bottom:149.040000px;}
.y4f_c01342{bottom:185.760000px;}
.y4e_c01342{bottom:189.360000px;}
.y51_c01342{bottom:190.080000px;}
.y52_c01342{bottom:191.520000px;}
.y50_c01342{bottom:192.240000px;}
.y49_c01342{bottom:218.160000px;}
.y4b_c01342{bottom:218.880000px;}
.y4d_c01342{bottom:219.600000px;}
.y4a_c01342{bottom:221.040000px;}
.y4c_c01342{bottom:221.760000px;}
.y48_c01342{bottom:222.480000px;}
.y47_c01342{bottom:223.200000px;}
.y74_c01342{bottom:225.360000px;}
.y46_c01342{bottom:261.360000px;}
.y45_c01342{bottom:265.680000px;}
.y73_c01342{bottom:266.400000px;}
.y44_c01342{bottom:305.280000px;}
.y43_c01342{bottom:308.880000px;}
.y72_c01342{bottom:309.600000px;}
.y71_c01342{bottom:311.040000px;}
.y40_c01342{bottom:349.200000px;}
.y3f_c01342{bottom:351.360000px;}
.y41_c01342{bottom:352.080000px;}
.y70_c01342{bottom:352.800000px;}
.y42_c01342{bottom:353.520000px;}
.y3e_c01342{bottom:392.400000px;}
.y3c_c01342{bottom:395.280000px;}
.y6e_c01342{bottom:396.000000px;}
.y6f_c01342{bottom:396.720000px;}
.y3d_c01342{bottom:399.600000px;}
.y39_c01342{bottom:437.040000px;}
.y37_c01342{bottom:437.760000px;}
.y36_c01342{bottom:438.480000px;}
.y35_c01342{bottom:439.200000px;}
.y3a_c01342{bottom:439.920000px;}
.y3b_c01342{bottom:440.640000px;}
.y6d_c01342{bottom:441.360000px;}
.y38_c01342{bottom:442.080000px;}
.y33_c01342{bottom:480.240000px;}
.y31_c01342{bottom:480.960000px;}
.y30_c01342{bottom:481.680000px;}
.y34_c01342{bottom:482.400000px;}
.y32_c01342{bottom:483.120000px;}
.y6c_c01342{bottom:484.560000px;}
.y2f_c01342{bottom:523.440000px;}
.y6b_c01342{bottom:524.160000px;}
.y2d_c01342{bottom:525.600000px;}
.y2e_c01342{bottom:526.320000px;}
.y67_c01342{bottom:566.640000px;}
.y69_c01342{bottom:568.080000px;}
.y6a_c01342{bottom:569.520000px;}
.y68_c01342{bottom:570.240000px;}
.y2c_c01342{bottom:609.120000px;}
.y65_c01342{bottom:609.840000px;}
.y2b_c01342{bottom:610.560000px;}
.y2a_c01342{bottom:611.280000px;}
.y66_c01342{bottom:613.440000px;}
.y64_c01342{bottom:652.320000px;}
.y28_c01342{bottom:653.040000px;}
.y26_c01342{bottom:653.760000px;}
.y29_c01342{bottom:655.200000px;}
.y27_c01342{bottom:658.800000px;}
.y25_c01342{bottom:694.800000px;}
.y22_c01342{bottom:696.240000px;}
.y63_c01342{bottom:696.960000px;}
.y24_c01342{bottom:697.680000px;}
.y23_c01342{bottom:699.120000px;}
.y20_c01342{bottom:738.000000px;}
.y21_c01342{bottom:738.720000px;}
.y62_c01342{bottom:739.440000px;}
.y61_c01342{bottom:740.160000px;}
.y1f_c01342{bottom:781.200000px;}
.y1e_c01342{bottom:781.920000px;}
.y1d_c01342{bottom:783.360000px;}
.y60_c01342{bottom:784.080000px;}
.y1a_c01342{bottom:825.120000px;}
.y1b_c01342{bottom:825.840000px;}
.y1c_c01342{bottom:826.560000px;}
.y5f_c01342{bottom:828.000000px;}
.y19_c01342{bottom:867.600000px;}
.y15_c01342{bottom:868.320000px;}
.y18_c01342{bottom:869.760000px;}
.y17_c01342{bottom:870.480000px;}
.y16_c01342{bottom:872.640000px;}
.y14_c01342{bottom:911.520000px;}
.y13_c01342{bottom:915.840000px;}
.y11_c01342{bottom:943.920000px;}
.y10_c01342{bottom:944.640000px;}
.yd_c01342{bottom:945.360000px;}
.y12_c01342{bottom:946.080000px;}
.yf_c01342{bottom:946.800000px;}
.ye_c01342{bottom:947.520000px;}
.y8_c01342{bottom:986.400000px;}
.yb_c01342{bottom:987.120000px;}
.y7_c01342{bottom:988.560000px;}
.yc_c01342{bottom:989.280000px;}
.ya_c01342{bottom:990.000000px;}
.y9_c01342{bottom:990.720000px;}
.y4_c01342{bottom:1017.360000px;}
.y3_c01342{bottom:1029.600000px;}
.y2_c01342{bottom:1030.320000px;}
.y6_c01342{bottom:1031.040000px;}
.y5_c01342{bottom:1032.480000px;}
.y1_c01342{bottom:1098.720000px;}
.h12_c01342{height:12.958594px;}
.h17_c01342{height:15.550313px;}
.h15_c01342{height:18.142031px;}
.h13_c01342{height:20.733750px;}
.h16_c01342{height:23.325469px;}
.h11_c01342{height:25.917187px;}
.h14_c01342{height:31.100625px;}
.he_c01342{height:36.284062px;}
.hb_c01342{height:38.875781px;}
.h9_c01342{height:44.059219px;}
.hc_c01342{height:46.650937px;}
.ha_c01342{height:49.242656px;}
.h7_c01342{height:51.834375px;}
.h8_c01342{height:54.426094px;}
.h3_c01342{height:57.017812px;}
.hd_c01342{height:59.609531px;}
.h18_c01342{height:60.474375px;}
.h2_c01342{height:62.201250px;}
.h10_c01342{height:64.792969px;}
.h5_c01342{height:67.384687px;}
.h4_c01342{height:69.976406px;}
.hf_c01342{height:72.568125px;}
.h6_c01342{height:90.710156px;}
.h1_c01342{height:1150.500000px;}
.h0_c01342{height:1150.560000px;}
.w1_c01342{width:768.750000px;}
.w0_c01342{width:768.960000px;}
.x0_c01342{left:0.000000px;}
.x2_c01342{left:45.360000px;}
.x16_c01342{left:47.520000px;}
.x33_c01342{left:48.960000px;}
.x35_c01342{left:64.080000px;}
.x1a_c01342{left:66.960000px;}
.x2b_c01342{left:68.400000px;}
.x1b_c01342{left:75.600000px;}
.x36_c01342{left:77.040000px;}
.x3_c01342{left:97.200000px;}
.x1e_c01342{left:99.360000px;}
.x12_c01342{left:151.200000px;}
.xd_c01342{left:173.520000px;}
.x31_c01342{left:174.960000px;}
.x13_c01342{left:182.880000px;}
.x9_c01342{left:185.040000px;}
.x17_c01342{left:195.840000px;}
.x37_c01342{left:207.360000px;}
.xa_c01342{left:226.800000px;}
.x2c_c01342{left:228.960000px;}
.x1f_c01342{left:239.760000px;}
.x1c_c01342{left:249.120000px;}
.x26_c01342{left:250.560000px;}
.x14_c01342{left:281.520000px;}
.x2d_c01342{left:282.960000px;}
.xe_c01342{left:291.600000px;}
.x27_c01342{left:303.120000px;}
.x23_c01342{left:304.560000px;}
.x19_c01342{left:313.200000px;}
.x28_c01342{left:315.360000px;}
.x18_c01342{left:325.440000px;}
.x4_c01342{left:335.520000px;}
.x20_c01342{left:347.040000px;}
.x1d_c01342{left:356.400000px;}
.x32_c01342{left:357.840000px;}
.x2e_c01342{left:368.640000px;}
.x34_c01342{left:380.160000px;}
.xf_c01342{left:389.520000px;}
.x24_c01342{left:398.880000px;}
.x21_c01342{left:400.320000px;}
.x15_c01342{left:410.400000px;}
.x2f_c01342{left:422.640000px;}
.x10_c01342{left:432.000000px;}
.x22_c01342{left:442.800000px;}
.x29_c01342{left:453.600000px;}
.x5_c01342{left:465.840000px;}
.x30_c01342{left:475.200000px;}
.x25_c01342{left:485.280000px;}
.x2a_c01342{left:496.080000px;}
.x6_c01342{left:560.880000px;}
.x3b_c01342{left:562.320000px;}
.xb_c01342{left:572.400000px;}
.x38_c01342{left:593.280000px;}
.xc_c01342{left:604.800000px;}
.x11_c01342{left:626.400000px;}
.x7_c01342{left:627.840000px;}
.x3d_c01342{left:649.440000px;}
.x1_c01342{left:658.800000px;}
.x39_c01342{left:668.880000px;}
.x3a_c01342{left:700.560000px;}
.x8_c01342{left:702.000000px;}
.x3c_c01342{left:721.440000px;}
@media print{
.v0_c01342{vertical-align:0.000000pt;}
.v1_c01342{vertical-align:7.680000pt;}
.ls0_c01342{letter-spacing:0.000000pt;}
.ws2_c01342{word-spacing:0.000000pt;}
.ws1_c01342{word-spacing:8.421333pt;}
.ws0_c01342{word-spacing:15.181867pt;}
.fs10_c01342{font-size:12.800000pt;}
.fs15_c01342{font-size:15.360000pt;}
.fs13_c01342{font-size:17.920000pt;}
.fs11_c01342{font-size:20.480000pt;}
.fs14_c01342{font-size:23.040000pt;}
.fsf_c01342{font-size:25.600000pt;}
.fs12_c01342{font-size:30.720000pt;}
.fsc_c01342{font-size:35.840000pt;}
.fs9_c01342{font-size:38.400000pt;}
.fs7_c01342{font-size:43.520000pt;}
.fsa_c01342{font-size:46.080000pt;}
.fs8_c01342{font-size:48.640000pt;}
.fs5_c01342{font-size:51.200000pt;}
.fs6_c01342{font-size:53.760000pt;}
.fs1_c01342{font-size:56.320000pt;}
.fsb_c01342{font-size:58.880000pt;}
.fs0_c01342{font-size:61.440000pt;}
.fse_c01342{font-size:64.000000pt;}
.fs3_c01342{font-size:66.560000pt;}
.fs2_c01342{font-size:69.120000pt;}
.fsd_c01342{font-size:71.680000pt;}
.fs4_c01342{font-size:89.600000pt;}
.y0_c01342{bottom:0.000000pt;}
.y5b_c01342{bottom:87.680000pt;}
.y5c_c01342{bottom:88.320000pt;}
.y5e_c01342{bottom:88.960000pt;}
.y5d_c01342{bottom:91.520000pt;}
.y59_c01342{bottom:92.160000pt;}
.y77_c01342{bottom:92.800000pt;}
.y78_c01342{bottom:94.720000pt;}
.y5a_c01342{bottom:95.360000pt;}
.y54_c01342{bottom:127.360000pt;}
.y56_c01342{bottom:128.000000pt;}
.y58_c01342{bottom:128.640000pt;}
.y55_c01342{bottom:129.280000pt;}
.y57_c01342{bottom:129.920000pt;}
.y53_c01342{bottom:130.560000pt;}
.y76_c01342{bottom:131.200000pt;}
.y75_c01342{bottom:132.480000pt;}
.y4f_c01342{bottom:165.120000pt;}
.y4e_c01342{bottom:168.320000pt;}
.y51_c01342{bottom:168.960000pt;}
.y52_c01342{bottom:170.240000pt;}
.y50_c01342{bottom:170.880000pt;}
.y49_c01342{bottom:193.920000pt;}
.y4b_c01342{bottom:194.560000pt;}
.y4d_c01342{bottom:195.200000pt;}
.y4a_c01342{bottom:196.480000pt;}
.y4c_c01342{bottom:197.120000pt;}
.y48_c01342{bottom:197.760000pt;}
.y47_c01342{bottom:198.400000pt;}
.y74_c01342{bottom:200.320000pt;}
.y46_c01342{bottom:232.320000pt;}
.y45_c01342{bottom:236.160000pt;}
.y73_c01342{bottom:236.800000pt;}
.y44_c01342{bottom:271.360000pt;}
.y43_c01342{bottom:274.560000pt;}
.y72_c01342{bottom:275.200000pt;}
.y71_c01342{bottom:276.480000pt;}
.y40_c01342{bottom:310.400000pt;}
.y3f_c01342{bottom:312.320000pt;}
.y41_c01342{bottom:312.960000pt;}
.y70_c01342{bottom:313.600000pt;}
.y42_c01342{bottom:314.240000pt;}
.y3e_c01342{bottom:348.800000pt;}
.y3c_c01342{bottom:351.360000pt;}
.y6e_c01342{bottom:352.000000pt;}
.y6f_c01342{bottom:352.640000pt;}
.y3d_c01342{bottom:355.200000pt;}
.y39_c01342{bottom:388.480000pt;}
.y37_c01342{bottom:389.120000pt;}
.y36_c01342{bottom:389.760000pt;}
.y35_c01342{bottom:390.400000pt;}
.y3a_c01342{bottom:391.040000pt;}
.y3b_c01342{bottom:391.680000pt;}
.y6d_c01342{bottom:392.320000pt;}
.y38_c01342{bottom:392.960000pt;}
.y33_c01342{bottom:426.880000pt;}
.y31_c01342{bottom:427.520000pt;}
.y30_c01342{bottom:428.160000pt;}
.y34_c01342{bottom:428.800000pt;}
.y32_c01342{bottom:429.440000pt;}
.y6c_c01342{bottom:430.720000pt;}
.y2f_c01342{bottom:465.280000pt;}
.y6b_c01342{bottom:465.920000pt;}
.y2d_c01342{bottom:467.200000pt;}
.y2e_c01342{bottom:467.840000pt;}
.y67_c01342{bottom:503.680000pt;}
.y69_c01342{bottom:504.960000pt;}
.y6a_c01342{bottom:506.240000pt;}
.y68_c01342{bottom:506.880000pt;}
.y2c_c01342{bottom:541.440000pt;}
.y65_c01342{bottom:542.080000pt;}
.y2b_c01342{bottom:542.720000pt;}
.y2a_c01342{bottom:543.360000pt;}
.y66_c01342{bottom:545.280000pt;}
.y64_c01342{bottom:579.840000pt;}
.y28_c01342{bottom:580.480000pt;}
.y26_c01342{bottom:581.120000pt;}
.y29_c01342{bottom:582.400000pt;}
.y27_c01342{bottom:585.600000pt;}
.y25_c01342{bottom:617.600000pt;}
.y22_c01342{bottom:618.880000pt;}
.y63_c01342{bottom:619.520000pt;}
.y24_c01342{bottom:620.160000pt;}
.y23_c01342{bottom:621.440000pt;}
.y20_c01342{bottom:656.000000pt;}
.y21_c01342{bottom:656.640000pt;}
.y62_c01342{bottom:657.280000pt;}
.y61_c01342{bottom:657.920000pt;}
.y1f_c01342{bottom:694.400000pt;}
.y1e_c01342{bottom:695.040000pt;}
.y1d_c01342{bottom:696.320000pt;}
.y60_c01342{bottom:696.960000pt;}
.y1a_c01342{bottom:733.440000pt;}
.y1b_c01342{bottom:734.080000pt;}
.y1c_c01342{bottom:734.720000pt;}
.y5f_c01342{bottom:736.000000pt;}
.y19_c01342{bottom:771.200000pt;}
.y15_c01342{bottom:771.840000pt;}
.y18_c01342{bottom:773.120000pt;}
.y17_c01342{bottom:773.760000pt;}
.y16_c01342{bottom:775.680000pt;}
.y14_c01342{bottom:810.240000pt;}
.y13_c01342{bottom:814.080000pt;}
.y11_c01342{bottom:839.040000pt;}
.y10_c01342{bottom:839.680000pt;}
.yd_c01342{bottom:840.320000pt;}
.y12_c01342{bottom:840.960000pt;}
.yf_c01342{bottom:841.600000pt;}
.ye_c01342{bottom:842.240000pt;}
.y8_c01342{bottom:876.800000pt;}
.yb_c01342{bottom:877.440000pt;}
.y7_c01342{bottom:878.720000pt;}
.yc_c01342{bottom:879.360000pt;}
.ya_c01342{bottom:880.000000pt;}
.y9_c01342{bottom:880.640000pt;}
.y4_c01342{bottom:904.320000pt;}
.y3_c01342{bottom:915.200000pt;}
.y2_c01342{bottom:915.840000pt;}
.y6_c01342{bottom:916.480000pt;}
.y5_c01342{bottom:917.760000pt;}
.y1_c01342{bottom:976.640000pt;}
.h12_c01342{height:11.518750pt;}
.h17_c01342{height:13.822500pt;}
.h15_c01342{height:16.126250pt;}
.h13_c01342{height:18.430000pt;}
.h16_c01342{height:20.733750pt;}
.h11_c01342{height:23.037500pt;}
.h14_c01342{height:27.645000pt;}
.he_c01342{height:32.252500pt;}
.hb_c01342{height:34.556250pt;}
.h9_c01342{height:39.163750pt;}
.hc_c01342{height:41.467500pt;}
.ha_c01342{height:43.771250pt;}
.h7_c01342{height:46.075000pt;}
.h8_c01342{height:48.378750pt;}
.h3_c01342{height:50.682500pt;}
.hd_c01342{height:52.986250pt;}
.h18_c01342{height:53.755000pt;}
.h2_c01342{height:55.290000pt;}
.h10_c01342{height:57.593750pt;}
.h5_c01342{height:59.897500pt;}
.h4_c01342{height:62.201250pt;}
.hf_c01342{height:64.505000pt;}
.h6_c01342{height:80.631250pt;}
.h1_c01342{height:1022.666667pt;}
.h0_c01342{height:1022.720000pt;}
.w1_c01342{width:683.333333pt;}
.w0_c01342{width:683.520000pt;}
.x0_c01342{left:0.000000pt;}
.x2_c01342{left:40.320000pt;}
.x16_c01342{left:42.240000pt;}
.x33_c01342{left:43.520000pt;}
.x35_c01342{left:56.960000pt;}
.x1a_c01342{left:59.520000pt;}
.x2b_c01342{left:60.800000pt;}
.x1b_c01342{left:67.200000pt;}
.x36_c01342{left:68.480000pt;}
.x3_c01342{left:86.400000pt;}
.x1e_c01342{left:88.320000pt;}
.x12_c01342{left:134.400000pt;}
.xd_c01342{left:154.240000pt;}
.x31_c01342{left:155.520000pt;}
.x13_c01342{left:162.560000pt;}
.x9_c01342{left:164.480000pt;}
.x17_c01342{left:174.080000pt;}
.x37_c01342{left:184.320000pt;}
.xa_c01342{left:201.600000pt;}
.x2c_c01342{left:203.520000pt;}
.x1f_c01342{left:213.120000pt;}
.x1c_c01342{left:221.440000pt;}
.x26_c01342{left:222.720000pt;}
.x14_c01342{left:250.240000pt;}
.x2d_c01342{left:251.520000pt;}
.xe_c01342{left:259.200000pt;}
.x27_c01342{left:269.440000pt;}
.x23_c01342{left:270.720000pt;}
.x19_c01342{left:278.400000pt;}
.x28_c01342{left:280.320000pt;}
.x18_c01342{left:289.280000pt;}
.x4_c01342{left:298.240000pt;}
.x20_c01342{left:308.480000pt;}
.x1d_c01342{left:316.800000pt;}
.x32_c01342{left:318.080000pt;}
.x2e_c01342{left:327.680000pt;}
.x34_c01342{left:337.920000pt;}
.xf_c01342{left:346.240000pt;}
.x24_c01342{left:354.560000pt;}
.x21_c01342{left:355.840000pt;}
.x15_c01342{left:364.800000pt;}
.x2f_c01342{left:375.680000pt;}
.x10_c01342{left:384.000000pt;}
.x22_c01342{left:393.600000pt;}
.x29_c01342{left:403.200000pt;}
.x5_c01342{left:414.080000pt;}
.x30_c01342{left:422.400000pt;}
.x25_c01342{left:431.360000pt;}
.x2a_c01342{left:440.960000pt;}
.x6_c01342{left:498.560000pt;}
.x3b_c01342{left:499.840000pt;}
.xb_c01342{left:508.800000pt;}
.x38_c01342{left:527.360000pt;}
.xc_c01342{left:537.600000pt;}
.x11_c01342{left:556.800000pt;}
.x7_c01342{left:558.080000pt;}
.x3d_c01342{left:577.280000pt;}
.x1_c01342{left:585.600000pt;}
.x39_c01342{left:594.560000pt;}
.x3a_c01342{left:622.720000pt;}
.x8_c01342{left:624.000000pt;}
.x3c_c01342{left:641.280000pt;}
}





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

.ir_c01343:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01343{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01343;src:url('chunks/assets/font_47904971bc6b6d6c9d50113b.woff2')format("woff");}.ff1_c01343{font-family:ff1_c01343;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3e_c01343{transform:matrix(0.175550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175550,0.000000,0.000000,0.250000,0,0);}
.m2e_c01343{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m20_c01343{transform:matrix(0.231875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231875,0.000000,0.000000,0.250000,0,0);}
.m24_c01343{transform:matrix(0.232350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232350,0.000000,0.000000,0.250000,0,0);}
.m1_c01343{transform:matrix(0.234475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234475,0.000000,0.000000,0.250000,0,0);}
.m2a_c01343{transform:matrix(0.234575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234575,0.000000,0.000000,0.250000,0,0);}
.mc_c01343{transform:matrix(0.238350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238350,0.000000,0.000000,0.250000,0,0);}
.m14_c01343{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m38_c01343{transform:matrix(0.244725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244725,0.000000,0.000000,0.250000,0,0);}
.m12_c01343{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m6_c01343{transform:matrix(0.247100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247100,0.000000,0.000000,0.250000,0,0);}
.ma_c01343{transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);}
.m37_c01343{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01343{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);}
.m3a_c01343{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m3_c01343{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01343{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);}
.m45_c01343{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);}
.m2b_c01343{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_c01343{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);}
.m44_c01343{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m9_c01343{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_c01343{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m4_c01343{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m43_c01343{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m10_c01343{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m29_c01343{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_c01343{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01343{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m35_c01343{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m42_c01343{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01343{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m48_c01343{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01343{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m15_c01343{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m4a_c01343{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01343{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m33_c01343{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m41_c01343{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01343{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m46_c01343{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);}
.m36_c01343{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m11_c01343{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m16_c01343{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.mb_c01343{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);}
.m28_c01343{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m18_c01343{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m25_c01343{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m32_c01343{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);}
.m1a_c01343{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);}
.m5_c01343{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_c01343{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m13_c01343{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);}
.m0_c01343{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01343{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m2_c01343{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);}
.m27_c01343{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m7_c01343{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m30_c01343{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);}
.m21_c01343{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m40_c01343{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m17_c01343{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m34_c01343{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01343{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m26_c01343{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m23_c01343{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m39_c01343{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m49_c01343{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01343{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);}
.m3c_c01343{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);}
.m1f_c01343{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m47_c01343{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.mf_c01343{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01343{transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01343{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.v0_c01343{vertical-align:0.000000px;}
.v1_c01343{vertical-align:5.760000px;}
.v2_c01343{vertical-align:8.640000px;}
.ls0_c01343{letter-spacing:0.000000px;}
.sc__c01343{text-shadow:none;}
.sc0_c01343{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01343{-webkit-text-stroke:0px transparent;}
.sc0_c01343{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01343{word-spacing:0.000000px;}
.ws1_c01343{word-spacing:9.474000px;}
.ws0_c01343{word-spacing:15.045360px;}
.fc0_c01343{color:transparent;}
.fs11_c01343{font-size:28.800000px;}
.fsd_c01343{font-size:34.560000px;}
.fs8_c01343{font-size:37.440000px;}
.fsa_c01343{font-size:40.320000px;}
.fse_c01343{font-size:43.200000px;}
.fsf_c01343{font-size:48.960000px;}
.fs9_c01343{font-size:51.840000px;}
.fs3_c01343{font-size:54.720000px;}
.fsc_c01343{font-size:57.600000px;}
.fs0_c01343{font-size:60.480000px;}
.fs2_c01343{font-size:63.360000px;}
.fsb_c01343{font-size:66.240000px;}
.fs6_c01343{font-size:69.120000px;}
.fs4_c01343{font-size:72.000000px;}
.fs7_c01343{font-size:74.880000px;}
.fs1_c01343{font-size:77.760000px;}
.fs5_c01343{font-size:80.640000px;}
.fs10_c01343{font-size:83.520000px;}
.y0_c01343{bottom:0.000000px;}
.y46_c01343{bottom:120.960000px;}
.y66_c01343{bottom:126.000000px;}
.y45_c01343{bottom:126.720000px;}
.y67_c01343{bottom:127.440000px;}
.y3f_c01343{bottom:164.160000px;}
.y41_c01343{bottom:166.320000px;}
.y44_c01343{bottom:167.040000px;}
.y40_c01343{bottom:167.760000px;}
.y42_c01343{bottom:168.480000px;}
.y43_c01343{bottom:169.200000px;}
.y3e_c01343{bottom:169.920000px;}
.y65_c01343{bottom:170.640000px;}
.y3c_c01343{bottom:207.360000px;}
.y3d_c01343{bottom:212.400000px;}
.y3b_c01343{bottom:213.120000px;}
.y64_c01343{bottom:214.560000px;}
.y3a_c01343{bottom:251.280000px;}
.y62_c01343{bottom:254.160000px;}
.y39_c01343{bottom:254.880000px;}
.y63_c01343{bottom:255.600000px;}
.y38_c01343{bottom:294.480000px;}
.y61_c01343{bottom:297.360000px;}
.y60_c01343{bottom:298.080000px;}
.y37_c01343{bottom:298.800000px;}
.y36_c01343{bottom:336.960000px;}
.y5e_c01343{bottom:340.560000px;}
.y35_c01343{bottom:341.280000px;}
.y5f_c01343{bottom:342.720000px;}
.y34_c01343{bottom:380.880000px;}
.y5d_c01343{bottom:383.760000px;}
.y5c_c01343{bottom:384.480000px;}
.y33_c01343{bottom:385.920000px;}
.y32_c01343{bottom:386.640000px;}
.y31_c01343{bottom:424.800000px;}
.y5a_c01343{bottom:426.240000px;}
.y59_c01343{bottom:426.960000px;}
.y30_c01343{bottom:428.400000px;}
.y5b_c01343{bottom:429.120000px;}
.y2f_c01343{bottom:467.280000px;}
.y58_c01343{bottom:469.440000px;}
.y2e_c01343{bottom:470.880000px;}
.y2d_c01343{bottom:514.800000px;}
.y2c_c01343{bottom:515.520000px;}
.y27_c01343{bottom:565.200000px;}
.y2b_c01343{bottom:565.920000px;}
.y2a_c01343{bottom:566.640000px;}
.y29_c01343{bottom:567.360000px;}
.y26_c01343{bottom:568.080000px;}
.y28_c01343{bottom:568.800000px;}
.y57_c01343{bottom:570.240000px;}
.y22_c01343{bottom:609.120000px;}
.y25_c01343{bottom:609.840000px;}
.y56_c01343{bottom:610.560000px;}
.y21_c01343{bottom:611.280000px;}
.y23_c01343{bottom:612.000000px;}
.y24_c01343{bottom:613.440000px;}
.y20_c01343{bottom:614.160000px;}
.y1d_c01343{bottom:652.320000px;}
.y1f_c01343{bottom:653.040000px;}
.y55_c01343{bottom:655.200000px;}
.y1c_c01343{bottom:655.920000px;}
.y1e_c01343{bottom:656.640000px;}
.y19_c01343{bottom:695.520000px;}
.y1b_c01343{bottom:696.240000px;}
.y18_c01343{bottom:698.400000px;}
.y1a_c01343{bottom:699.120000px;}
.y14_c01343{bottom:738.720000px;}
.y15_c01343{bottom:739.440000px;}
.y13_c01343{bottom:740.880000px;}
.y54_c01343{bottom:741.600000px;}
.y17_c01343{bottom:742.320000px;}
.y16_c01343{bottom:743.040000px;}
.y12_c01343{bottom:781.920000px;}
.y53_c01343{bottom:782.640000px;}
.y11_c01343{bottom:784.080000px;}
.y52_c01343{bottom:824.400000px;}
.yf_c01343{bottom:825.120000px;}
.y10_c01343{bottom:825.840000px;}
.yd_c01343{bottom:826.560000px;}
.ye_c01343{bottom:828.720000px;}
.y50_c01343{bottom:866.880000px;}
.y51_c01343{bottom:867.600000px;}
.yc_c01343{bottom:868.320000px;}
.yb_c01343{bottom:869.760000px;}
.y4f_c01343{bottom:870.480000px;}
.y4e_c01343{bottom:910.800000px;}
.ya_c01343{bottom:911.520000px;}
.y9_c01343{bottom:912.960000px;}
.y8_c01343{bottom:953.280000px;}
.y4c_c01343{bottom:954.000000px;}
.y6_c01343{bottom:954.720000px;}
.y5_c01343{bottom:955.440000px;}
.y4d_c01343{bottom:956.160000px;}
.y7_c01343{bottom:958.320000px;}
.y4a_c01343{bottom:996.480000px;}
.y4b_c01343{bottom:997.200000px;}
.y4_c01343{bottom:997.920000px;}
.y3_c01343{bottom:999.360000px;}
.y48_c01343{bottom:1039.680000px;}
.y49_c01343{bottom:1040.400000px;}
.y2_c01343{bottom:1041.120000px;}
.y1_c01343{bottom:1043.280000px;}
.y47_c01343{bottom:1103.040000px;}
.h13_c01343{height:25.917187px;}
.hf_c01343{height:31.100625px;}
.ha_c01343{height:33.692344px;}
.hc_c01343{height:36.284062px;}
.h10_c01343{height:38.875781px;}
.h11_c01343{height:44.059219px;}
.hb_c01343{height:46.650937px;}
.h5_c01343{height:49.242656px;}
.he_c01343{height:51.834375px;}
.h2_c01343{height:54.426094px;}
.h4_c01343{height:57.017812px;}
.hd_c01343{height:59.609531px;}
.h14_c01343{height:60.186094px;}
.h15_c01343{height:60.474375px;}
.h8_c01343{height:62.201250px;}
.h6_c01343{height:64.792969px;}
.h9_c01343{height:67.384687px;}
.h3_c01343{height:69.976406px;}
.h7_c01343{height:72.568125px;}
.h12_c01343{height:75.159844px;}
.h0_c01343{height:1153.440000px;}
.h1_c01343{height:1153.500000px;}
.w1_c01343{width:772.500000px;}
.w0_c01343{width:772.560000px;}
.x0_c01343{left:0.000000px;}
.x1_c01343{left:51.840000px;}
.x19_c01343{left:54.000000px;}
.x9_c01343{left:73.440000px;}
.x16_c01343{left:102.240000px;}
.x4_c01343{left:103.680000px;}
.x2_c01343{left:105.840000px;}
.x15_c01343{left:157.680000px;}
.x3_c01343{left:180.720000px;}
.x5_c01343{left:201.600000px;}
.x8_c01343{left:203.040000px;}
.x1a_c01343{left:244.080000px;}
.xd_c01343{left:254.880000px;}
.x6_c01343{left:256.320000px;}
.x1b_c01343{left:288.720000px;}
.xc_c01343{left:298.800000px;}
.xa_c01343{left:308.160000px;}
.x17_c01343{left:319.680000px;}
.xb_c01343{left:353.520000px;}
.x1c_c01343{left:362.880000px;}
.x18_c01343{left:371.520000px;}
.x7_c01343{left:375.120000px;}
.x12_c01343{left:393.840000px;}
.x1d_c01343{left:414.720000px;}
.x10_c01343{left:416.880000px;}
.xe_c01343{left:426.960000px;}
.x13_c01343{left:438.480000px;}
.x1e_c01343{left:458.640000px;}
.x11_c01343{left:470.880000px;}
.xf_c01343{left:480.960000px;}
.x14_c01343{left:491.760000px;}
.x30_c01343{left:597.600000px;}
.x26_c01343{left:599.040000px;}
.x23_c01343{left:600.480000px;}
.x2e_c01343{left:609.840000px;}
.x25_c01343{left:624.240000px;}
.x2b_c01343{left:630.720000px;}
.x27_c01343{left:632.880000px;}
.x20_c01343{left:634.320000px;}
.x2c_c01343{left:663.840000px;}
.x21_c01343{left:666.720000px;}
.x28_c01343{left:675.360000px;}
.x1f_c01343{left:676.800000px;}
.x2d_c01343{left:695.520000px;}
.x2f_c01343{left:706.320000px;}
.x2a_c01343{left:707.760000px;}
.x22_c01343{left:709.200000px;}
.x31_c01343{left:726.480000px;}
.x29_c01343{left:727.920000px;}
.x24_c01343{left:730.080000px;}
@media print{
.v0_c01343{vertical-align:0.000000pt;}
.v1_c01343{vertical-align:5.120000pt;}
.v2_c01343{vertical-align:7.680000pt;}
.ls0_c01343{letter-spacing:0.000000pt;}
.ws2_c01343{word-spacing:0.000000pt;}
.ws1_c01343{word-spacing:8.421333pt;}
.ws0_c01343{word-spacing:13.373653pt;}
.fs11_c01343{font-size:25.600000pt;}
.fsd_c01343{font-size:30.720000pt;}
.fs8_c01343{font-size:33.280000pt;}
.fsa_c01343{font-size:35.840000pt;}
.fse_c01343{font-size:38.400000pt;}
.fsf_c01343{font-size:43.520000pt;}
.fs9_c01343{font-size:46.080000pt;}
.fs3_c01343{font-size:48.640000pt;}
.fsc_c01343{font-size:51.200000pt;}
.fs0_c01343{font-size:53.760000pt;}
.fs2_c01343{font-size:56.320000pt;}
.fsb_c01343{font-size:58.880000pt;}
.fs6_c01343{font-size:61.440000pt;}
.fs4_c01343{font-size:64.000000pt;}
.fs7_c01343{font-size:66.560000pt;}
.fs1_c01343{font-size:69.120000pt;}
.fs5_c01343{font-size:71.680000pt;}
.fs10_c01343{font-size:74.240000pt;}
.y0_c01343{bottom:0.000000pt;}
.y46_c01343{bottom:107.520000pt;}
.y66_c01343{bottom:112.000000pt;}
.y45_c01343{bottom:112.640000pt;}
.y67_c01343{bottom:113.280000pt;}
.y3f_c01343{bottom:145.920000pt;}
.y41_c01343{bottom:147.840000pt;}
.y44_c01343{bottom:148.480000pt;}
.y40_c01343{bottom:149.120000pt;}
.y42_c01343{bottom:149.760000pt;}
.y43_c01343{bottom:150.400000pt;}
.y3e_c01343{bottom:151.040000pt;}
.y65_c01343{bottom:151.680000pt;}
.y3c_c01343{bottom:184.320000pt;}
.y3d_c01343{bottom:188.800000pt;}
.y3b_c01343{bottom:189.440000pt;}
.y64_c01343{bottom:190.720000pt;}
.y3a_c01343{bottom:223.360000pt;}
.y62_c01343{bottom:225.920000pt;}
.y39_c01343{bottom:226.560000pt;}
.y63_c01343{bottom:227.200000pt;}
.y38_c01343{bottom:261.760000pt;}
.y61_c01343{bottom:264.320000pt;}
.y60_c01343{bottom:264.960000pt;}
.y37_c01343{bottom:265.600000pt;}
.y36_c01343{bottom:299.520000pt;}
.y5e_c01343{bottom:302.720000pt;}
.y35_c01343{bottom:303.360000pt;}
.y5f_c01343{bottom:304.640000pt;}
.y34_c01343{bottom:338.560000pt;}
.y5d_c01343{bottom:341.120000pt;}
.y5c_c01343{bottom:341.760000pt;}
.y33_c01343{bottom:343.040000pt;}
.y32_c01343{bottom:343.680000pt;}
.y31_c01343{bottom:377.600000pt;}
.y5a_c01343{bottom:378.880000pt;}
.y59_c01343{bottom:379.520000pt;}
.y30_c01343{bottom:380.800000pt;}
.y5b_c01343{bottom:381.440000pt;}
.y2f_c01343{bottom:415.360000pt;}
.y58_c01343{bottom:417.280000pt;}
.y2e_c01343{bottom:418.560000pt;}
.y2d_c01343{bottom:457.600000pt;}
.y2c_c01343{bottom:458.240000pt;}
.y27_c01343{bottom:502.400000pt;}
.y2b_c01343{bottom:503.040000pt;}
.y2a_c01343{bottom:503.680000pt;}
.y29_c01343{bottom:504.320000pt;}
.y26_c01343{bottom:504.960000pt;}
.y28_c01343{bottom:505.600000pt;}
.y57_c01343{bottom:506.880000pt;}
.y22_c01343{bottom:541.440000pt;}
.y25_c01343{bottom:542.080000pt;}
.y56_c01343{bottom:542.720000pt;}
.y21_c01343{bottom:543.360000pt;}
.y23_c01343{bottom:544.000000pt;}
.y24_c01343{bottom:545.280000pt;}
.y20_c01343{bottom:545.920000pt;}
.y1d_c01343{bottom:579.840000pt;}
.y1f_c01343{bottom:580.480000pt;}
.y55_c01343{bottom:582.400000pt;}
.y1c_c01343{bottom:583.040000pt;}
.y1e_c01343{bottom:583.680000pt;}
.y19_c01343{bottom:618.240000pt;}
.y1b_c01343{bottom:618.880000pt;}
.y18_c01343{bottom:620.800000pt;}
.y1a_c01343{bottom:621.440000pt;}
.y14_c01343{bottom:656.640000pt;}
.y15_c01343{bottom:657.280000pt;}
.y13_c01343{bottom:658.560000pt;}
.y54_c01343{bottom:659.200000pt;}
.y17_c01343{bottom:659.840000pt;}
.y16_c01343{bottom:660.480000pt;}
.y12_c01343{bottom:695.040000pt;}
.y53_c01343{bottom:695.680000pt;}
.y11_c01343{bottom:696.960000pt;}
.y52_c01343{bottom:732.800000pt;}
.yf_c01343{bottom:733.440000pt;}
.y10_c01343{bottom:734.080000pt;}
.yd_c01343{bottom:734.720000pt;}
.ye_c01343{bottom:736.640000pt;}
.y50_c01343{bottom:770.560000pt;}
.y51_c01343{bottom:771.200000pt;}
.yc_c01343{bottom:771.840000pt;}
.yb_c01343{bottom:773.120000pt;}
.y4f_c01343{bottom:773.760000pt;}
.y4e_c01343{bottom:809.600000pt;}
.ya_c01343{bottom:810.240000pt;}
.y9_c01343{bottom:811.520000pt;}
.y8_c01343{bottom:847.360000pt;}
.y4c_c01343{bottom:848.000000pt;}
.y6_c01343{bottom:848.640000pt;}
.y5_c01343{bottom:849.280000pt;}
.y4d_c01343{bottom:849.920000pt;}
.y7_c01343{bottom:851.840000pt;}
.y4a_c01343{bottom:885.760000pt;}
.y4b_c01343{bottom:886.400000pt;}
.y4_c01343{bottom:887.040000pt;}
.y3_c01343{bottom:888.320000pt;}
.y48_c01343{bottom:924.160000pt;}
.y49_c01343{bottom:924.800000pt;}
.y2_c01343{bottom:925.440000pt;}
.y1_c01343{bottom:927.360000pt;}
.y47_c01343{bottom:980.480000pt;}
.h13_c01343{height:23.037500pt;}
.hf_c01343{height:27.645000pt;}
.ha_c01343{height:29.948750pt;}
.hc_c01343{height:32.252500pt;}
.h10_c01343{height:34.556250pt;}
.h11_c01343{height:39.163750pt;}
.hb_c01343{height:41.467500pt;}
.h5_c01343{height:43.771250pt;}
.he_c01343{height:46.075000pt;}
.h2_c01343{height:48.378750pt;}
.h4_c01343{height:50.682500pt;}
.hd_c01343{height:52.986250pt;}
.h14_c01343{height:53.498750pt;}
.h15_c01343{height:53.755000pt;}
.h8_c01343{height:55.290000pt;}
.h6_c01343{height:57.593750pt;}
.h9_c01343{height:59.897500pt;}
.h3_c01343{height:62.201250pt;}
.h7_c01343{height:64.505000pt;}
.h12_c01343{height:66.808750pt;}
.h0_c01343{height:1025.280000pt;}
.h1_c01343{height:1025.333333pt;}
.w1_c01343{width:686.666667pt;}
.w0_c01343{width:686.720000pt;}
.x0_c01343{left:0.000000pt;}
.x1_c01343{left:46.080000pt;}
.x19_c01343{left:48.000000pt;}
.x9_c01343{left:65.280000pt;}
.x16_c01343{left:90.880000pt;}
.x4_c01343{left:92.160000pt;}
.x2_c01343{left:94.080000pt;}
.x15_c01343{left:140.160000pt;}
.x3_c01343{left:160.640000pt;}
.x5_c01343{left:179.200000pt;}
.x8_c01343{left:180.480000pt;}
.x1a_c01343{left:216.960000pt;}
.xd_c01343{left:226.560000pt;}
.x6_c01343{left:227.840000pt;}
.x1b_c01343{left:256.640000pt;}
.xc_c01343{left:265.600000pt;}
.xa_c01343{left:273.920000pt;}
.x17_c01343{left:284.160000pt;}
.xb_c01343{left:314.240000pt;}
.x1c_c01343{left:322.560000pt;}
.x18_c01343{left:330.240000pt;}
.x7_c01343{left:333.440000pt;}
.x12_c01343{left:350.080000pt;}
.x1d_c01343{left:368.640000pt;}
.x10_c01343{left:370.560000pt;}
.xe_c01343{left:379.520000pt;}
.x13_c01343{left:389.760000pt;}
.x1e_c01343{left:407.680000pt;}
.x11_c01343{left:418.560000pt;}
.xf_c01343{left:427.520000pt;}
.x14_c01343{left:437.120000pt;}
.x30_c01343{left:531.200000pt;}
.x26_c01343{left:532.480000pt;}
.x23_c01343{left:533.760000pt;}
.x2e_c01343{left:542.080000pt;}
.x25_c01343{left:554.880000pt;}
.x2b_c01343{left:560.640000pt;}
.x27_c01343{left:562.560000pt;}
.x20_c01343{left:563.840000pt;}
.x2c_c01343{left:590.080000pt;}
.x21_c01343{left:592.640000pt;}
.x28_c01343{left:600.320000pt;}
.x1f_c01343{left:601.600000pt;}
.x2d_c01343{left:618.240000pt;}
.x2f_c01343{left:627.840000pt;}
.x2a_c01343{left:629.120000pt;}
.x22_c01343{left:630.400000pt;}
.x31_c01343{left:645.760000pt;}
.x29_c01343{left:647.040000pt;}
.x24_c01343{left:648.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_c01344 {
    display:none;
  }
  .loading-indicator_c01344.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01344 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01344 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01344" -> "#page-container .classname_c01344")
 */
.pf_c01344 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01344 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01344.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01344 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01344 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01344 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01344 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01344 {overflow:visible;}
  }
}
.c_c01344 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01344 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01344:after { /* webkit #35443 */
  content: '';
}
.t_c01344:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01344 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01344 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01344 { /* info for Javascript */
  display:none;
}
.l_c01344 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01344 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01344 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01344:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01344{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01344;src:url('chunks/assets/font_dbb79100b356e80eb766ed57.woff2')format("woff");}.ff1_c01344{font-family:ff1_c01344;line-height:1.109863;font-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_c01344{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.m50_c01344{transform:matrix(0.201075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201075,0.000000,0.000000,0.250000,0,0);}
.m48_c01344{transform:matrix(0.211650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211650,0.000000,0.000000,0.250000,0,0);}
.m44_c01344{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m54_c01344{transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);}
.m52_c01344{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);}
.m2e_c01344{transform:matrix(0.236900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236900,0.000000,0.000000,0.250000,0,0);}
.m3b_c01344{transform:matrix(0.240300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240300,0.000000,0.000000,0.250000,0,0);}
.m2b_c01344{transform:matrix(0.242025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242025,0.000000,0.000000,0.250000,0,0);}
.m19_c01344{transform:matrix(0.243675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243675,0.000000,0.000000,0.250000,0,0);}
.m43_c01344{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m8_c01344{transform:matrix(0.244650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244650,0.000000,0.000000,0.250000,0,0);}
.m12_c01344{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m4a_c01344{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m39_c01344{transform:matrix(0.247675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247675,0.000000,0.000000,0.250000,0,0);}
.m2c_c01344{transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);}
.m22_c01344{transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);}
.m36_c01344{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01344{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_c01344{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);}
.m4d_c01344{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);}
.m28_c01344{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);}
.m25_c01344{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_c01344{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m15_c01344{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.me_c01344{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01344{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);}
.m35_c01344{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m2_c01344{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m37_c01344{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);}
.m3d_c01344{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);}
.m1e_c01344{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);}
.m42_c01344{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.md_c01344{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01344{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m6_c01344{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01344{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m40_c01344{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m18_c01344{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01344{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m32_c01344{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01344{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m53_c01344{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m38_c01344{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m45_c01344{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01344{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m7_c01344{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);}
.m30_c01344{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m10_c01344{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);}
.m46_c01344{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);}
.m31_c01344{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);}
.m2a_c01344{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);}
.m55_c01344{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m26_c01344{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);}
.m23_c01344{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m20_c01344{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m13_c01344{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);}
.m4e_c01344{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_c01344{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m3_c01344{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_c01344{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01344{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m33_c01344{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.mf_c01344{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m34_c01344{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m11_c01344{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01344{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m9_c01344{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);}
.m47_c01344{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m16_c01344{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.mc_c01344{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m5_c01344{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);}
.m49_c01344{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m4f_c01344{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m51_c01344{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m17_c01344{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m24_c01344{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.mb_c01344{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);}
.m27_c01344{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01344{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);}
.m29_c01344{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01344{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01344{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01344{transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);}
.m1_c01344{transform:matrix(0.775000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.775000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.775000,0.000000,0.000000,0.250000,0,0);}
.m41_c01344{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m56_c01344{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.v0_c01344{vertical-align:0.000000px;}
.ls0_c01344{letter-spacing:0.000000px;}
.sc__c01344{text-shadow:none;}
.sc0_c01344{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01344{-webkit-text-stroke:0px transparent;}
.sc0_c01344{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01344{word-spacing:0.000000px;}
.fc0_c01344{color:transparent;}
.fse_c01344{font-size:31.680000px;}
.fs1_c01344{font-size:34.560000px;}
.fs11_c01344{font-size:37.440000px;}
.fs9_c01344{font-size:40.320000px;}
.fs4_c01344{font-size:43.200000px;}
.fsb_c01344{font-size:48.960000px;}
.fs6_c01344{font-size:51.840000px;}
.fsc_c01344{font-size:54.720000px;}
.fs3_c01344{font-size:57.600000px;}
.fs0_c01344{font-size:60.480000px;}
.fsa_c01344{font-size:63.360000px;}
.fsd_c01344{font-size:66.240000px;}
.fs5_c01344{font-size:69.120000px;}
.fs7_c01344{font-size:72.000000px;}
.fsf_c01344{font-size:74.880000px;}
.fs2_c01344{font-size:77.760000px;}
.fs8_c01344{font-size:80.640000px;}
.fs10_c01344{font-size:83.520000px;}
.y0_c01344{bottom:0.000000px;}
.y52_c01344{bottom:44.640000px;}
.y51_c01344{bottom:45.360000px;}
.y50_c01344{bottom:48.960000px;}
.y53_c01344{bottom:49.680000px;}
.y54_c01344{bottom:51.120000px;}
.y89_c01344{bottom:54.000000px;}
.y4e_c01344{bottom:87.840000px;}
.y4f_c01344{bottom:88.560000px;}
.y4d_c01344{bottom:91.440000px;}
.y86_c01344{bottom:94.320000px;}
.y88_c01344{bottom:95.040000px;}
.y87_c01344{bottom:96.480000px;}
.y4b_c01344{bottom:131.040000px;}
.y4c_c01344{bottom:133.200000px;}
.y4a_c01344{bottom:133.920000px;}
.y82_c01344{bottom:136.800000px;}
.y85_c01344{bottom:137.520000px;}
.y83_c01344{bottom:138.240000px;}
.y84_c01344{bottom:140.400000px;}
.y49_c01344{bottom:174.240000px;}
.y48_c01344{bottom:177.840000px;}
.y7f_c01344{bottom:180.720000px;}
.y81_c01344{bottom:181.440000px;}
.y80_c01344{bottom:182.880000px;}
.y46_c01344{bottom:218.160000px;}
.y47_c01344{bottom:218.880000px;}
.y45_c01344{bottom:221.760000px;}
.y7c_c01344{bottom:223.200000px;}
.y7d_c01344{bottom:223.920000px;}
.y7e_c01344{bottom:225.360000px;}
.y44_c01344{bottom:261.360000px;}
.y43_c01344{bottom:264.960000px;}
.y42_c01344{bottom:265.680000px;}
.y79_c01344{bottom:266.400000px;}
.y7a_c01344{bottom:267.840000px;}
.y7b_c01344{bottom:269.280000px;}
.y41_c01344{bottom:304.560000px;}
.y40_c01344{bottom:308.160000px;}
.y76_c01344{bottom:310.320000px;}
.y77_c01344{bottom:311.040000px;}
.y78_c01344{bottom:311.760000px;}
.y3c_c01344{bottom:348.480000px;}
.y3d_c01344{bottom:349.200000px;}
.y3b_c01344{bottom:351.360000px;}
.y3e_c01344{bottom:352.800000px;}
.y3f_c01344{bottom:353.520000px;}
.y73_c01344{bottom:354.240000px;}
.y74_c01344{bottom:355.680000px;}
.y75_c01344{bottom:356.400000px;}
.y36_c01344{bottom:390.960000px;}
.y3a_c01344{bottom:393.120000px;}
.y38_c01344{bottom:393.840000px;}
.y35_c01344{bottom:394.560000px;}
.y37_c01344{bottom:395.280000px;}
.y39_c01344{bottom:396.000000px;}
.y34_c01344{bottom:396.720000px;}
.y72_c01344{bottom:397.440000px;}
.y70_c01344{bottom:398.160000px;}
.y71_c01344{bottom:398.880000px;}
.y33_c01344{bottom:434.880000px;}
.y32_c01344{bottom:437.760000px;}
.y6e_c01344{bottom:439.920000px;}
.y6f_c01344{bottom:441.360000px;}
.y2f_c01344{bottom:478.080000px;}
.y31_c01344{bottom:479.520000px;}
.y2e_c01344{bottom:480.960000px;}
.y6a_c01344{bottom:481.680000px;}
.y30_c01344{bottom:482.400000px;}
.y6b_c01344{bottom:483.840000px;}
.y6d_c01344{bottom:484.560000px;}
.y6c_c01344{bottom:485.280000px;}
.y2b_c01344{bottom:521.280000px;}
.y2d_c01344{bottom:522.720000px;}
.y2a_c01344{bottom:523.440000px;}
.y69_c01344{bottom:524.160000px;}
.y66_c01344{bottom:524.880000px;}
.y2c_c01344{bottom:525.600000px;}
.y68_c01344{bottom:527.040000px;}
.y67_c01344{bottom:527.760000px;}
.y29_c01344{bottom:564.480000px;}
.y27_c01344{bottom:567.360000px;}
.y28_c01344{bottom:568.080000px;}
.y64_c01344{bottom:568.800000px;}
.y65_c01344{bottom:570.960000px;}
.y25_c01344{bottom:609.840000px;}
.y62_c01344{bottom:611.280000px;}
.y63_c01344{bottom:612.000000px;}
.y26_c01344{bottom:612.720000px;}
.y24_c01344{bottom:651.600000px;}
.y5f_c01344{bottom:653.760000px;}
.y21_c01344{bottom:654.480000px;}
.y22_c01344{bottom:655.200000px;}
.y23_c01344{bottom:655.920000px;}
.y60_c01344{bottom:656.640000px;}
.y61_c01344{bottom:657.360000px;}
.y20_c01344{bottom:694.800000px;}
.y1f_c01344{bottom:697.680000px;}
.y5e_c01344{bottom:699.120000px;}
.y5d_c01344{bottom:699.840000px;}
.y1e_c01344{bottom:738.000000px;}
.y5c_c01344{bottom:740.160000px;}
.y1c_c01344{bottom:740.880000px;}
.y1d_c01344{bottom:742.320000px;}
.y1a_c01344{bottom:781.200000px;}
.y18_c01344{bottom:783.360000px;}
.y19_c01344{bottom:784.080000px;}
.y1b_c01344{bottom:785.520000px;}
.y14_c01344{bottom:824.400000px;}
.y15_c01344{bottom:825.840000px;}
.y17_c01344{bottom:826.560000px;}
.y13_c01344{bottom:827.280000px;}
.y16_c01344{bottom:829.440000px;}
.y12_c01344{bottom:867.600000px;}
.y59_c01344{bottom:869.760000px;}
.y10_c01344{bottom:870.480000px;}
.y5a_c01344{bottom:871.200000px;}
.y5b_c01344{bottom:871.920000px;}
.y11_c01344{bottom:872.640000px;}
.yc_c01344{bottom:910.800000px;}
.yf_c01344{bottom:912.960000px;}
.yb_c01344{bottom:913.680000px;}
.yd_c01344{bottom:915.120000px;}
.ye_c01344{bottom:915.840000px;}
.y7_c01344{bottom:954.720000px;}
.ya_c01344{bottom:955.440000px;}
.y6_c01344{bottom:956.160000px;}
.y58_c01344{bottom:956.880000px;}
.y8_c01344{bottom:957.600000px;}
.y9_c01344{bottom:958.320000px;}
.y5_c01344{bottom:997.920000px;}
.y4_c01344{bottom:999.360000px;}
.y57_c01344{bottom:1000.080000px;}
.y3_c01344{bottom:1040.400000px;}
.y1_c01344{bottom:1041.840000px;}
.y56_c01344{bottom:1042.560000px;}
.y2_c01344{bottom:1043.280000px;}
.y55_c01344{bottom:1110.240000px;}
.h10_c01344{height:28.508906px;}
.h3_c01344{height:31.100625px;}
.h13_c01344{height:33.692344px;}
.hb_c01344{height:36.284062px;}
.h6_c01344{height:38.875781px;}
.hd_c01344{height:44.059219px;}
.h8_c01344{height:46.650937px;}
.he_c01344{height:49.242656px;}
.h5_c01344{height:51.834375px;}
.h2_c01344{height:54.426094px;}
.hc_c01344{height:57.017812px;}
.hf_c01344{height:59.609531px;}
.h7_c01344{height:62.201250px;}
.h9_c01344{height:64.792969px;}
.h11_c01344{height:67.384687px;}
.h4_c01344{height:69.976406px;}
.ha_c01344{height:72.568125px;}
.h12_c01344{height:75.159844px;}
.h0_c01344{height:1152.720000px;}
.h1_c01344{height:1152.750000px;}
.w1_c01344{width:772.500000px;}
.w0_c01344{width:772.560000px;}
.x0_c01344{left:0.000000px;}
.x1_c01344{left:49.680000px;}
.x8_c01344{left:51.120000px;}
.x16_c01344{left:52.560000px;}
.x1b_c01344{left:54.000000px;}
.x21_c01344{left:55.440000px;}
.x26_c01344{left:56.880000px;}
.x2_c01344{left:71.280000px;}
.x1a_c01344{left:83.520000px;}
.x3_c01344{left:101.520000px;}
.x15_c01344{left:113.040000px;}
.x17_c01344{left:114.480000px;}
.x27_c01344{left:115.920000px;}
.xf_c01344{left:187.920000px;}
.x9_c01344{left:190.080000px;}
.x18_c01344{left:200.880000px;}
.x22_c01344{left:202.320000px;}
.x1c_c01344{left:222.480000px;}
.xa_c01344{left:232.560000px;}
.x23_c01344{left:246.240000px;}
.x28_c01344{left:248.400000px;}
.x19_c01344{left:255.600000px;}
.x24_c01344{left:257.760000px;}
.x10_c01344{left:275.760000px;}
.x14_c01344{left:287.280000px;}
.x4_c01344{left:298.080000px;}
.xb_c01344{left:318.240000px;}
.x1f_c01344{left:319.680000px;}
.x11_c01344{left:330.480000px;}
.x1d_c01344{left:331.920000px;}
.x5_c01344{left:341.280000px;}
.x20_c01344{left:363.600000px;}
.x29_c01344{left:365.040000px;}
.xc_c01344{left:372.960000px;}
.x1e_c01344{left:375.120000px;}
.x12_c01344{left:383.760000px;}
.x25_c01344{left:386.640000px;}
.x6_c01344{left:416.160000px;}
.x2a_c01344{left:417.600000px;}
.xd_c01344{left:426.240000px;}
.x7_c01344{left:458.640000px;}
.x2b_c01344{left:461.520000px;}
.x13_c01344{left:480.240000px;}
.x2c_c01344{left:503.280000px;}
.xe_c01344{left:512.640000px;}
.x3d_c01344{left:568.080000px;}
.x3b_c01344{left:577.440000px;}
.x38_c01344{left:578.880000px;}
.x31_c01344{left:598.320000px;}
.x2e_c01344{left:599.760000px;}
.x3a_c01344{left:609.840000px;}
.x32_c01344{left:623.520000px;}
.x39_c01344{left:630.720000px;}
.x34_c01344{left:632.880000px;}
.x3c_c01344{left:634.320000px;}
.x2f_c01344{left:655.920000px;}
.x35_c01344{left:664.560000px;}
.x40_c01344{left:666.000000px;}
.x3f_c01344{left:676.080000px;}
.x36_c01344{left:696.960000px;}
.x2d_c01344{left:698.400000px;}
.x37_c01344{left:706.320000px;}
.x30_c01344{left:707.760000px;}
.x3e_c01344{left:709.200000px;}
.x33_c01344{left:727.920000px;}
.x41_c01344{left:729.360000px;}
@media print{
.v0_c01344{vertical-align:0.000000pt;}
.ls0_c01344{letter-spacing:0.000000pt;}
.ws0_c01344{word-spacing:0.000000pt;}
.fse_c01344{font-size:28.160000pt;}
.fs1_c01344{font-size:30.720000pt;}
.fs11_c01344{font-size:33.280000pt;}
.fs9_c01344{font-size:35.840000pt;}
.fs4_c01344{font-size:38.400000pt;}
.fsb_c01344{font-size:43.520000pt;}
.fs6_c01344{font-size:46.080000pt;}
.fsc_c01344{font-size:48.640000pt;}
.fs3_c01344{font-size:51.200000pt;}
.fs0_c01344{font-size:53.760000pt;}
.fsa_c01344{font-size:56.320000pt;}
.fsd_c01344{font-size:58.880000pt;}
.fs5_c01344{font-size:61.440000pt;}
.fs7_c01344{font-size:64.000000pt;}
.fsf_c01344{font-size:66.560000pt;}
.fs2_c01344{font-size:69.120000pt;}
.fs8_c01344{font-size:71.680000pt;}
.fs10_c01344{font-size:74.240000pt;}
.y0_c01344{bottom:0.000000pt;}
.y52_c01344{bottom:39.680000pt;}
.y51_c01344{bottom:40.320000pt;}
.y50_c01344{bottom:43.520000pt;}
.y53_c01344{bottom:44.160000pt;}
.y54_c01344{bottom:45.440000pt;}
.y89_c01344{bottom:48.000000pt;}
.y4e_c01344{bottom:78.080000pt;}
.y4f_c01344{bottom:78.720000pt;}
.y4d_c01344{bottom:81.280000pt;}
.y86_c01344{bottom:83.840000pt;}
.y88_c01344{bottom:84.480000pt;}
.y87_c01344{bottom:85.760000pt;}
.y4b_c01344{bottom:116.480000pt;}
.y4c_c01344{bottom:118.400000pt;}
.y4a_c01344{bottom:119.040000pt;}
.y82_c01344{bottom:121.600000pt;}
.y85_c01344{bottom:122.240000pt;}
.y83_c01344{bottom:122.880000pt;}
.y84_c01344{bottom:124.800000pt;}
.y49_c01344{bottom:154.880000pt;}
.y48_c01344{bottom:158.080000pt;}
.y7f_c01344{bottom:160.640000pt;}
.y81_c01344{bottom:161.280000pt;}
.y80_c01344{bottom:162.560000pt;}
.y46_c01344{bottom:193.920000pt;}
.y47_c01344{bottom:194.560000pt;}
.y45_c01344{bottom:197.120000pt;}
.y7c_c01344{bottom:198.400000pt;}
.y7d_c01344{bottom:199.040000pt;}
.y7e_c01344{bottom:200.320000pt;}
.y44_c01344{bottom:232.320000pt;}
.y43_c01344{bottom:235.520000pt;}
.y42_c01344{bottom:236.160000pt;}
.y79_c01344{bottom:236.800000pt;}
.y7a_c01344{bottom:238.080000pt;}
.y7b_c01344{bottom:239.360000pt;}
.y41_c01344{bottom:270.720000pt;}
.y40_c01344{bottom:273.920000pt;}
.y76_c01344{bottom:275.840000pt;}
.y77_c01344{bottom:276.480000pt;}
.y78_c01344{bottom:277.120000pt;}
.y3c_c01344{bottom:309.760000pt;}
.y3d_c01344{bottom:310.400000pt;}
.y3b_c01344{bottom:312.320000pt;}
.y3e_c01344{bottom:313.600000pt;}
.y3f_c01344{bottom:314.240000pt;}
.y73_c01344{bottom:314.880000pt;}
.y74_c01344{bottom:316.160000pt;}
.y75_c01344{bottom:316.800000pt;}
.y36_c01344{bottom:347.520000pt;}
.y3a_c01344{bottom:349.440000pt;}
.y38_c01344{bottom:350.080000pt;}
.y35_c01344{bottom:350.720000pt;}
.y37_c01344{bottom:351.360000pt;}
.y39_c01344{bottom:352.000000pt;}
.y34_c01344{bottom:352.640000pt;}
.y72_c01344{bottom:353.280000pt;}
.y70_c01344{bottom:353.920000pt;}
.y71_c01344{bottom:354.560000pt;}
.y33_c01344{bottom:386.560000pt;}
.y32_c01344{bottom:389.120000pt;}
.y6e_c01344{bottom:391.040000pt;}
.y6f_c01344{bottom:392.320000pt;}
.y2f_c01344{bottom:424.960000pt;}
.y31_c01344{bottom:426.240000pt;}
.y2e_c01344{bottom:427.520000pt;}
.y6a_c01344{bottom:428.160000pt;}
.y30_c01344{bottom:428.800000pt;}
.y6b_c01344{bottom:430.080000pt;}
.y6d_c01344{bottom:430.720000pt;}
.y6c_c01344{bottom:431.360000pt;}
.y2b_c01344{bottom:463.360000pt;}
.y2d_c01344{bottom:464.640000pt;}
.y2a_c01344{bottom:465.280000pt;}
.y69_c01344{bottom:465.920000pt;}
.y66_c01344{bottom:466.560000pt;}
.y2c_c01344{bottom:467.200000pt;}
.y68_c01344{bottom:468.480000pt;}
.y67_c01344{bottom:469.120000pt;}
.y29_c01344{bottom:501.760000pt;}
.y27_c01344{bottom:504.320000pt;}
.y28_c01344{bottom:504.960000pt;}
.y64_c01344{bottom:505.600000pt;}
.y65_c01344{bottom:507.520000pt;}
.y25_c01344{bottom:542.080000pt;}
.y62_c01344{bottom:543.360000pt;}
.y63_c01344{bottom:544.000000pt;}
.y26_c01344{bottom:544.640000pt;}
.y24_c01344{bottom:579.200000pt;}
.y5f_c01344{bottom:581.120000pt;}
.y21_c01344{bottom:581.760000pt;}
.y22_c01344{bottom:582.400000pt;}
.y23_c01344{bottom:583.040000pt;}
.y60_c01344{bottom:583.680000pt;}
.y61_c01344{bottom:584.320000pt;}
.y20_c01344{bottom:617.600000pt;}
.y1f_c01344{bottom:620.160000pt;}
.y5e_c01344{bottom:621.440000pt;}
.y5d_c01344{bottom:622.080000pt;}
.y1e_c01344{bottom:656.000000pt;}
.y5c_c01344{bottom:657.920000pt;}
.y1c_c01344{bottom:658.560000pt;}
.y1d_c01344{bottom:659.840000pt;}
.y1a_c01344{bottom:694.400000pt;}
.y18_c01344{bottom:696.320000pt;}
.y19_c01344{bottom:696.960000pt;}
.y1b_c01344{bottom:698.240000pt;}
.y14_c01344{bottom:732.800000pt;}
.y15_c01344{bottom:734.080000pt;}
.y17_c01344{bottom:734.720000pt;}
.y13_c01344{bottom:735.360000pt;}
.y16_c01344{bottom:737.280000pt;}
.y12_c01344{bottom:771.200000pt;}
.y59_c01344{bottom:773.120000pt;}
.y10_c01344{bottom:773.760000pt;}
.y5a_c01344{bottom:774.400000pt;}
.y5b_c01344{bottom:775.040000pt;}
.y11_c01344{bottom:775.680000pt;}
.yc_c01344{bottom:809.600000pt;}
.yf_c01344{bottom:811.520000pt;}
.yb_c01344{bottom:812.160000pt;}
.yd_c01344{bottom:813.440000pt;}
.ye_c01344{bottom:814.080000pt;}
.y7_c01344{bottom:848.640000pt;}
.ya_c01344{bottom:849.280000pt;}
.y6_c01344{bottom:849.920000pt;}
.y58_c01344{bottom:850.560000pt;}
.y8_c01344{bottom:851.200000pt;}
.y9_c01344{bottom:851.840000pt;}
.y5_c01344{bottom:887.040000pt;}
.y4_c01344{bottom:888.320000pt;}
.y57_c01344{bottom:888.960000pt;}
.y3_c01344{bottom:924.800000pt;}
.y1_c01344{bottom:926.080000pt;}
.y56_c01344{bottom:926.720000pt;}
.y2_c01344{bottom:927.360000pt;}
.y55_c01344{bottom:986.880000pt;}
.h10_c01344{height:25.341250pt;}
.h3_c01344{height:27.645000pt;}
.h13_c01344{height:29.948750pt;}
.hb_c01344{height:32.252500pt;}
.h6_c01344{height:34.556250pt;}
.hd_c01344{height:39.163750pt;}
.h8_c01344{height:41.467500pt;}
.he_c01344{height:43.771250pt;}
.h5_c01344{height:46.075000pt;}
.h2_c01344{height:48.378750pt;}
.hc_c01344{height:50.682500pt;}
.hf_c01344{height:52.986250pt;}
.h7_c01344{height:55.290000pt;}
.h9_c01344{height:57.593750pt;}
.h11_c01344{height:59.897500pt;}
.h4_c01344{height:62.201250pt;}
.ha_c01344{height:64.505000pt;}
.h12_c01344{height:66.808750pt;}
.h0_c01344{height:1024.640000pt;}
.h1_c01344{height:1024.666667pt;}
.w1_c01344{width:686.666667pt;}
.w0_c01344{width:686.720000pt;}
.x0_c01344{left:0.000000pt;}
.x1_c01344{left:44.160000pt;}
.x8_c01344{left:45.440000pt;}
.x16_c01344{left:46.720000pt;}
.x1b_c01344{left:48.000000pt;}
.x21_c01344{left:49.280000pt;}
.x26_c01344{left:50.560000pt;}
.x2_c01344{left:63.360000pt;}
.x1a_c01344{left:74.240000pt;}
.x3_c01344{left:90.240000pt;}
.x15_c01344{left:100.480000pt;}
.x17_c01344{left:101.760000pt;}
.x27_c01344{left:103.040000pt;}
.xf_c01344{left:167.040000pt;}
.x9_c01344{left:168.960000pt;}
.x18_c01344{left:178.560000pt;}
.x22_c01344{left:179.840000pt;}
.x1c_c01344{left:197.760000pt;}
.xa_c01344{left:206.720000pt;}
.x23_c01344{left:218.880000pt;}
.x28_c01344{left:220.800000pt;}
.x19_c01344{left:227.200000pt;}
.x24_c01344{left:229.120000pt;}
.x10_c01344{left:245.120000pt;}
.x14_c01344{left:255.360000pt;}
.x4_c01344{left:264.960000pt;}
.xb_c01344{left:282.880000pt;}
.x1f_c01344{left:284.160000pt;}
.x11_c01344{left:293.760000pt;}
.x1d_c01344{left:295.040000pt;}
.x5_c01344{left:303.360000pt;}
.x20_c01344{left:323.200000pt;}
.x29_c01344{left:324.480000pt;}
.xc_c01344{left:331.520000pt;}
.x1e_c01344{left:333.440000pt;}
.x12_c01344{left:341.120000pt;}
.x25_c01344{left:343.680000pt;}
.x6_c01344{left:369.920000pt;}
.x2a_c01344{left:371.200000pt;}
.xd_c01344{left:378.880000pt;}
.x7_c01344{left:407.680000pt;}
.x2b_c01344{left:410.240000pt;}
.x13_c01344{left:426.880000pt;}
.x2c_c01344{left:447.360000pt;}
.xe_c01344{left:455.680000pt;}
.x3d_c01344{left:504.960000pt;}
.x3b_c01344{left:513.280000pt;}
.x38_c01344{left:514.560000pt;}
.x31_c01344{left:531.840000pt;}
.x2e_c01344{left:533.120000pt;}
.x3a_c01344{left:542.080000pt;}
.x32_c01344{left:554.240000pt;}
.x39_c01344{left:560.640000pt;}
.x34_c01344{left:562.560000pt;}
.x3c_c01344{left:563.840000pt;}
.x2f_c01344{left:583.040000pt;}
.x35_c01344{left:590.720000pt;}
.x40_c01344{left:592.000000pt;}
.x3f_c01344{left:600.960000pt;}
.x36_c01344{left:619.520000pt;}
.x2d_c01344{left:620.800000pt;}
.x37_c01344{left:627.840000pt;}
.x30_c01344{left:629.120000pt;}
.x3e_c01344{left:630.400000pt;}
.x33_c01344{left:647.040000pt;}
.x41_c01344{left:648.320000pt;}
}





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

.ir_c01345:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01345{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01345;src:url('chunks/assets/font_4f942dbc334629528c1cbc64.woff2')format("woff");}.ff1_c01345{font-family:ff1_c01345;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m52_c01345{transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);}
.m46_c01345{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m4b_c01345{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);}
.m3f_c01345{transform:matrix(0.236525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236525,0.000000,0.000000,0.250000,0,0);}
.m36_c01345{transform:matrix(0.240800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240800,0.000000,0.000000,0.250000,0,0);}
.m45_c01345{transform:matrix(0.244975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244975,0.000000,0.000000,0.250000,0,0);}
.m2d_c01345{transform:matrix(0.245625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245625,0.000000,0.000000,0.250000,0,0);}
.m47_c01345{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m25_c01345{transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);}
.m42_c01345{transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);}
.m32_c01345{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01345{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);}
.m49_c01345{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);}
.m4f_c01345{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);}
.m3c_c01345{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_c01345{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1_c01345{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);}
.m1c_c01345{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);}
.m4a_c01345{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);}
.m21_c01345{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m5_c01345{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);}
.m2f_c01345{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);}
.m2c_c01345{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);}
.m48_c01345{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m26_c01345{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m8_c01345{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01345{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01345{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m38_c01345{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m55_c01345{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mf_c01345{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01345{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m34_c01345{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m6_c01345{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m29_c01345{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m54_c01345{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m10_c01345{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m12_c01345{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);}
.m4d_c01345{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mc_c01345{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m15_c01345{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.ma_c01345{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);}
.m33_c01345{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);}
.m28_c01345{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m35_c01345{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m3_c01345{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m14_c01345{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);}
.m56_c01345{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m2_c01345{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01345{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);}
.m30_c01345{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m20_c01345{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01345{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);}
.m0_c01345{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);}
.m51_c01345{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);}
.m2a_c01345{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m9_c01345{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m11_c01345{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);}
.m39_c01345{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m23_c01345{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);}
.m31_c01345{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01345{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m13_c01345{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m18_c01345{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01345{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m57_c01345{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m22_c01345{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.md_c01345{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01345{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.mb_c01345{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m24_c01345{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);}
.m4_c01345{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.me_c01345{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);}
.m37_c01345{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m16_c01345{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m40_c01345{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);}
.m27_c01345{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m43_c01345{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01345{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m7_c01345{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m53_c01345{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01345{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m4e_c01345{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.m50_c01345{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m44_c01345{transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);}
.m41_c01345{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01345{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m58_c01345{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.m17_c01345{transform:matrix(1.002500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.002500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.002500,0.000000,0.000000,0.250000,0,0);}
.v0_c01345{vertical-align:0.000000px;}
.v1_c01345{vertical-align:14.400000px;}
.ls0_c01345{letter-spacing:0.000000px;}
.sc__c01345{text-shadow:none;}
.sc0_c01345{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01345{-webkit-text-stroke:0px transparent;}
.sc0_c01345{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01345{word-spacing:0.000000px;}
.ws0_c01345{word-spacing:80.074800px;}
.fc0_c01345{color:transparent;}
.fsf_c01345{font-size:25.920000px;}
.fs10_c01345{font-size:31.680000px;}
.fsd_c01345{font-size:34.560000px;}
.fse_c01345{font-size:37.440000px;}
.fs9_c01345{font-size:40.320000px;}
.fsb_c01345{font-size:46.080000px;}
.fs5_c01345{font-size:48.960000px;}
.fs4_c01345{font-size:51.840000px;}
.fs7_c01345{font-size:54.720000px;}
.fs0_c01345{font-size:57.600000px;}
.fs2_c01345{font-size:60.480000px;}
.fs3_c01345{font-size:63.360000px;}
.fsc_c01345{font-size:66.240000px;}
.fs8_c01345{font-size:69.120000px;}
.fsa_c01345{font-size:72.000000px;}
.fs6_c01345{font-size:74.880000px;}
.fs1_c01345{font-size:77.760000px;}
.y0_c01345{bottom:0.000000px;}
.y57_c01345{bottom:58.320000px;}
.y56_c01345{bottom:61.920000px;}
.y55_c01345{bottom:63.360000px;}
.y7a_c01345{bottom:64.080000px;}
.y7b_c01345{bottom:66.960000px;}
.y4e_c01345{bottom:101.520000px;}
.y4f_c01345{bottom:102.960000px;}
.y54_c01345{bottom:104.400000px;}
.y51_c01345{bottom:105.120000px;}
.y4d_c01345{bottom:105.840000px;}
.y50_c01345{bottom:106.560000px;}
.y52_c01345{bottom:107.280000px;}
.y53_c01345{bottom:108.000000px;}
.y79_c01345{bottom:108.720000px;}
.y4a_c01345{bottom:144.720000px;}
.y4b_c01345{bottom:146.880000px;}
.y49_c01345{bottom:148.320000px;}
.y78_c01345{bottom:149.040000px;}
.y77_c01345{bottom:149.760000px;}
.y4c_c01345{bottom:150.480000px;}
.y48_c01345{bottom:187.920000px;}
.y47_c01345{bottom:192.240000px;}
.y76_c01345{bottom:193.680000px;}
.y46_c01345{bottom:231.120000px;}
.y45_c01345{bottom:235.440000px;}
.y74_c01345{bottom:237.600000px;}
.y75_c01345{bottom:238.320000px;}
.y44_c01345{bottom:275.040000px;}
.y43_c01345{bottom:277.920000px;}
.y42_c01345{bottom:278.640000px;}
.y73_c01345{bottom:279.360000px;}
.y3e_c01345{bottom:318.240000px;}
.y40_c01345{bottom:319.680000px;}
.y3d_c01345{bottom:320.400000px;}
.y3f_c01345{bottom:321.120000px;}
.y41_c01345{bottom:322.560000px;}
.y72_c01345{bottom:324.000000px;}
.y71_c01345{bottom:324.720000px;}
.y3b_c01345{bottom:360.720000px;}
.y3c_c01345{bottom:362.160000px;}
.y3a_c01345{bottom:365.040000px;}
.y70_c01345{bottom:365.760000px;}
.y39_c01345{bottom:403.920000px;}
.y37_c01345{bottom:408.240000px;}
.y38_c01345{bottom:408.960000px;}
.y36_c01345{bottom:448.560000px;}
.y34_c01345{bottom:450.720000px;}
.y6d_c01345{bottom:451.440000px;}
.y35_c01345{bottom:452.160000px;}
.y6f_c01345{bottom:452.880000px;}
.y6e_c01345{bottom:453.600000px;}
.y31_c01345{bottom:491.760000px;}
.y33_c01345{bottom:493.200000px;}
.y32_c01345{bottom:493.920000px;}
.y30_c01345{bottom:494.640000px;}
.y6b_c01345{bottom:495.360000px;}
.y6c_c01345{bottom:496.080000px;}
.y2f_c01345{bottom:535.680000px;}
.y2e_c01345{bottom:536.400000px;}
.y2d_c01345{bottom:540.000000px;}
.y2a_c01345{bottom:568.080000px;}
.y6a_c01345{bottom:568.800000px;}
.y69_c01345{bottom:570.240000px;}
.y29_c01345{bottom:570.960000px;}
.y2b_c01345{bottom:571.680000px;}
.y2c_c01345{bottom:572.400000px;}
.y26_c01345{bottom:611.280000px;}
.y27_c01345{bottom:612.720000px;}
.y25_c01345{bottom:613.440000px;}
.y28_c01345{bottom:615.600000px;}
.y23_c01345{bottom:654.480000px;}
.y68_c01345{bottom:655.920000px;}
.y22_c01345{bottom:658.080000px;}
.y24_c01345{bottom:658.800000px;}
.y20_c01345{bottom:697.680000px;}
.y66_c01345{bottom:699.120000px;}
.y1f_c01345{bottom:699.840000px;}
.y67_c01345{bottom:700.560000px;}
.y21_c01345{bottom:702.000000px;}
.y1c_c01345{bottom:740.880000px;}
.y65_c01345{bottom:741.600000px;}
.y64_c01345{bottom:742.320000px;}
.y1b_c01345{bottom:743.040000px;}
.y1d_c01345{bottom:743.760000px;}
.y1e_c01345{bottom:745.200000px;}
.y1a_c01345{bottom:776.880000px;}
.y19_c01345{bottom:784.800000px;}
.y18_c01345{bottom:785.520000px;}
.y16_c01345{bottom:786.240000px;}
.y17_c01345{bottom:787.680000px;}
.y63_c01345{bottom:788.400000px;}
.y14_c01345{bottom:828.720000px;}
.y61_c01345{bottom:829.440000px;}
.y62_c01345{bottom:830.160000px;}
.y13_c01345{bottom:830.880000px;}
.y15_c01345{bottom:831.600000px;}
.y5f_c01345{bottom:870.480000px;}
.y11_c01345{bottom:871.920000px;}
.y60_c01345{bottom:872.640000px;}
.y10_c01345{bottom:873.360000px;}
.y12_c01345{bottom:874.080000px;}
.yf_c01345{bottom:913.680000px;}
.ye_c01345{bottom:915.120000px;}
.yc_c01345{bottom:916.560000px;}
.yd_c01345{bottom:917.280000px;}
.yb_c01345{bottom:955.440000px;}
.ya_c01345{bottom:956.160000px;}
.y5e_c01345{bottom:956.880000px;}
.y5d_c01345{bottom:957.600000px;}
.y8_c01345{bottom:958.320000px;}
.y7_c01345{bottom:959.040000px;}
.y9_c01345{bottom:960.480000px;}
.y6_c01345{bottom:998.640000px;}
.y5c_c01345{bottom:999.360000px;}
.y5a_c01345{bottom:1000.080000px;}
.y4_c01345{bottom:1001.520000px;}
.y5b_c01345{bottom:1002.240000px;}
.y3_c01345{bottom:1003.680000px;}
.y5_c01345{bottom:1004.400000px;}
.y2_c01345{bottom:1043.280000px;}
.y59_c01345{bottom:1045.440000px;}
.y1_c01345{bottom:1046.160000px;}
.y58_c01345{bottom:1095.120000px;}
.h11_c01345{height:23.325469px;}
.h12_c01345{height:28.508906px;}
.hf_c01345{height:31.100625px;}
.h10_c01345{height:33.692344px;}
.hb_c01345{height:36.284062px;}
.hd_c01345{height:41.467500px;}
.h7_c01345{height:44.059219px;}
.h6_c01345{height:46.650937px;}
.h9_c01345{height:49.242656px;}
.h2_c01345{height:51.834375px;}
.h4_c01345{height:54.426094px;}
.h5_c01345{height:57.017812px;}
.he_c01345{height:59.609531px;}
.ha_c01345{height:62.201250px;}
.hc_c01345{height:64.792969px;}
.h8_c01345{height:67.384687px;}
.h3_c01345{height:69.976406px;}
.h0_c01345{height:1153.440000px;}
.h1_c01345{height:1153.500000px;}
.w1_c01345{width:772.500000px;}
.w0_c01345{width:772.560000px;}
.x0_c01345{left:0.000000px;}
.x1_c01345{left:50.400000px;}
.x7_c01345{left:51.840000px;}
.x1e_c01345{left:53.280000px;}
.x2a_c01345{left:83.520000px;}
.x2_c01345{left:112.320000px;}
.x3_c01345{left:114.480000px;}
.x1d_c01345{left:136.080000px;}
.x1a_c01345{left:155.520000px;}
.x1c_c01345{left:177.840000px;}
.x23_c01345{left:179.280000px;}
.x1f_c01345{left:190.080000px;}
.x4_c01345{left:200.880000px;}
.x15_c01345{left:209.520000px;}
.x1b_c01345{left:210.960000px;}
.x24_c01345{left:221.760000px;}
.xd_c01345{left:243.360000px;}
.x5_c01345{left:254.880000px;}
.x27_c01345{left:263.520000px;}
.x13_c01345{left:264.960000px;}
.x10_c01345{left:275.760000px;}
.xe_c01345{left:297.360000px;}
.x16_c01345{left:308.880000px;}
.x14_c01345{left:318.960000px;}
.x20_c01345{left:321.840000px;}
.x11_c01345{left:330.480000px;}
.xf_c01345{left:339.840000px;}
.x12_c01345{left:341.280000px;}
.x28_c01345{left:342.720000px;}
.x25_c01345{left:352.080000px;}
.x8_c01345{left:362.160000px;}
.x21_c01345{left:382.320000px;}
.x17_c01345{left:394.560000px;}
.x26_c01345{left:405.360000px;}
.x9_c01345{left:416.160000px;}
.x22_c01345{left:426.960000px;}
.x6_c01345{left:437.040000px;}
.x18_c01345{left:447.120000px;}
.xa_c01345{left:458.640000px;}
.xb_c01345{left:490.320000px;}
.x29_c01345{left:501.120000px;}
.x19_c01345{left:533.520000px;}
.xc_c01345{left:555.120000px;}
.x31_c01345{left:576.720000px;}
.x2c_c01345{left:578.880000px;}
.x32_c01345{left:598.320000px;}
.x3b_c01345{left:609.120000px;}
.x34_c01345{left:631.440000px;}
.x2d_c01345{left:632.880000px;}
.x35_c01345{left:663.120000px;}
.x2e_c01345{left:665.280000px;}
.x37_c01345{left:673.920000px;}
.x2b_c01345{left:680.400000px;}
.x36_c01345{left:696.960000px;}
.x39_c01345{left:704.160000px;}
.x38_c01345{left:705.600000px;}
.x33_c01345{left:707.040000px;}
.x2f_c01345{left:708.480000px;}
.x3a_c01345{left:725.760000px;}
.x30_c01345{left:727.920000px;}
@media print{
.v0_c01345{vertical-align:0.000000pt;}
.v1_c01345{vertical-align:12.800000pt;}
.ls0_c01345{letter-spacing:0.000000pt;}
.ws1_c01345{word-spacing:0.000000pt;}
.ws0_c01345{word-spacing:71.177600pt;}
.fsf_c01345{font-size:23.040000pt;}
.fs10_c01345{font-size:28.160000pt;}
.fsd_c01345{font-size:30.720000pt;}
.fse_c01345{font-size:33.280000pt;}
.fs9_c01345{font-size:35.840000pt;}
.fsb_c01345{font-size:40.960000pt;}
.fs5_c01345{font-size:43.520000pt;}
.fs4_c01345{font-size:46.080000pt;}
.fs7_c01345{font-size:48.640000pt;}
.fs0_c01345{font-size:51.200000pt;}
.fs2_c01345{font-size:53.760000pt;}
.fs3_c01345{font-size:56.320000pt;}
.fsc_c01345{font-size:58.880000pt;}
.fs8_c01345{font-size:61.440000pt;}
.fsa_c01345{font-size:64.000000pt;}
.fs6_c01345{font-size:66.560000pt;}
.fs1_c01345{font-size:69.120000pt;}
.y0_c01345{bottom:0.000000pt;}
.y57_c01345{bottom:51.840000pt;}
.y56_c01345{bottom:55.040000pt;}
.y55_c01345{bottom:56.320000pt;}
.y7a_c01345{bottom:56.960000pt;}
.y7b_c01345{bottom:59.520000pt;}
.y4e_c01345{bottom:90.240000pt;}
.y4f_c01345{bottom:91.520000pt;}
.y54_c01345{bottom:92.800000pt;}
.y51_c01345{bottom:93.440000pt;}
.y4d_c01345{bottom:94.080000pt;}
.y50_c01345{bottom:94.720000pt;}
.y52_c01345{bottom:95.360000pt;}
.y53_c01345{bottom:96.000000pt;}
.y79_c01345{bottom:96.640000pt;}
.y4a_c01345{bottom:128.640000pt;}
.y4b_c01345{bottom:130.560000pt;}
.y49_c01345{bottom:131.840000pt;}
.y78_c01345{bottom:132.480000pt;}
.y77_c01345{bottom:133.120000pt;}
.y4c_c01345{bottom:133.760000pt;}
.y48_c01345{bottom:167.040000pt;}
.y47_c01345{bottom:170.880000pt;}
.y76_c01345{bottom:172.160000pt;}
.y46_c01345{bottom:205.440000pt;}
.y45_c01345{bottom:209.280000pt;}
.y74_c01345{bottom:211.200000pt;}
.y75_c01345{bottom:211.840000pt;}
.y44_c01345{bottom:244.480000pt;}
.y43_c01345{bottom:247.040000pt;}
.y42_c01345{bottom:247.680000pt;}
.y73_c01345{bottom:248.320000pt;}
.y3e_c01345{bottom:282.880000pt;}
.y40_c01345{bottom:284.160000pt;}
.y3d_c01345{bottom:284.800000pt;}
.y3f_c01345{bottom:285.440000pt;}
.y41_c01345{bottom:286.720000pt;}
.y72_c01345{bottom:288.000000pt;}
.y71_c01345{bottom:288.640000pt;}
.y3b_c01345{bottom:320.640000pt;}
.y3c_c01345{bottom:321.920000pt;}
.y3a_c01345{bottom:324.480000pt;}
.y70_c01345{bottom:325.120000pt;}
.y39_c01345{bottom:359.040000pt;}
.y37_c01345{bottom:362.880000pt;}
.y38_c01345{bottom:363.520000pt;}
.y36_c01345{bottom:398.720000pt;}
.y34_c01345{bottom:400.640000pt;}
.y6d_c01345{bottom:401.280000pt;}
.y35_c01345{bottom:401.920000pt;}
.y6f_c01345{bottom:402.560000pt;}
.y6e_c01345{bottom:403.200000pt;}
.y31_c01345{bottom:437.120000pt;}
.y33_c01345{bottom:438.400000pt;}
.y32_c01345{bottom:439.040000pt;}
.y30_c01345{bottom:439.680000pt;}
.y6b_c01345{bottom:440.320000pt;}
.y6c_c01345{bottom:440.960000pt;}
.y2f_c01345{bottom:476.160000pt;}
.y2e_c01345{bottom:476.800000pt;}
.y2d_c01345{bottom:480.000000pt;}
.y2a_c01345{bottom:504.960000pt;}
.y6a_c01345{bottom:505.600000pt;}
.y69_c01345{bottom:506.880000pt;}
.y29_c01345{bottom:507.520000pt;}
.y2b_c01345{bottom:508.160000pt;}
.y2c_c01345{bottom:508.800000pt;}
.y26_c01345{bottom:543.360000pt;}
.y27_c01345{bottom:544.640000pt;}
.y25_c01345{bottom:545.280000pt;}
.y28_c01345{bottom:547.200000pt;}
.y23_c01345{bottom:581.760000pt;}
.y68_c01345{bottom:583.040000pt;}
.y22_c01345{bottom:584.960000pt;}
.y24_c01345{bottom:585.600000pt;}
.y20_c01345{bottom:620.160000pt;}
.y66_c01345{bottom:621.440000pt;}
.y1f_c01345{bottom:622.080000pt;}
.y67_c01345{bottom:622.720000pt;}
.y21_c01345{bottom:624.000000pt;}
.y1c_c01345{bottom:658.560000pt;}
.y65_c01345{bottom:659.200000pt;}
.y64_c01345{bottom:659.840000pt;}
.y1b_c01345{bottom:660.480000pt;}
.y1d_c01345{bottom:661.120000pt;}
.y1e_c01345{bottom:662.400000pt;}
.y1a_c01345{bottom:690.560000pt;}
.y19_c01345{bottom:697.600000pt;}
.y18_c01345{bottom:698.240000pt;}
.y16_c01345{bottom:698.880000pt;}
.y17_c01345{bottom:700.160000pt;}
.y63_c01345{bottom:700.800000pt;}
.y14_c01345{bottom:736.640000pt;}
.y61_c01345{bottom:737.280000pt;}
.y62_c01345{bottom:737.920000pt;}
.y13_c01345{bottom:738.560000pt;}
.y15_c01345{bottom:739.200000pt;}
.y5f_c01345{bottom:773.760000pt;}
.y11_c01345{bottom:775.040000pt;}
.y60_c01345{bottom:775.680000pt;}
.y10_c01345{bottom:776.320000pt;}
.y12_c01345{bottom:776.960000pt;}
.yf_c01345{bottom:812.160000pt;}
.ye_c01345{bottom:813.440000pt;}
.yc_c01345{bottom:814.720000pt;}
.yd_c01345{bottom:815.360000pt;}
.yb_c01345{bottom:849.280000pt;}
.ya_c01345{bottom:849.920000pt;}
.y5e_c01345{bottom:850.560000pt;}
.y5d_c01345{bottom:851.200000pt;}
.y8_c01345{bottom:851.840000pt;}
.y7_c01345{bottom:852.480000pt;}
.y9_c01345{bottom:853.760000pt;}
.y6_c01345{bottom:887.680000pt;}
.y5c_c01345{bottom:888.320000pt;}
.y5a_c01345{bottom:888.960000pt;}
.y4_c01345{bottom:890.240000pt;}
.y5b_c01345{bottom:890.880000pt;}
.y3_c01345{bottom:892.160000pt;}
.y5_c01345{bottom:892.800000pt;}
.y2_c01345{bottom:927.360000pt;}
.y59_c01345{bottom:929.280000pt;}
.y1_c01345{bottom:929.920000pt;}
.y58_c01345{bottom:973.440000pt;}
.h11_c01345{height:20.733750pt;}
.h12_c01345{height:25.341250pt;}
.hf_c01345{height:27.645000pt;}
.h10_c01345{height:29.948750pt;}
.hb_c01345{height:32.252500pt;}
.hd_c01345{height:36.860000pt;}
.h7_c01345{height:39.163750pt;}
.h6_c01345{height:41.467500pt;}
.h9_c01345{height:43.771250pt;}
.h2_c01345{height:46.075000pt;}
.h4_c01345{height:48.378750pt;}
.h5_c01345{height:50.682500pt;}
.he_c01345{height:52.986250pt;}
.ha_c01345{height:55.290000pt;}
.hc_c01345{height:57.593750pt;}
.h8_c01345{height:59.897500pt;}
.h3_c01345{height:62.201250pt;}
.h0_c01345{height:1025.280000pt;}
.h1_c01345{height:1025.333333pt;}
.w1_c01345{width:686.666667pt;}
.w0_c01345{width:686.720000pt;}
.x0_c01345{left:0.000000pt;}
.x1_c01345{left:44.800000pt;}
.x7_c01345{left:46.080000pt;}
.x1e_c01345{left:47.360000pt;}
.x2a_c01345{left:74.240000pt;}
.x2_c01345{left:99.840000pt;}
.x3_c01345{left:101.760000pt;}
.x1d_c01345{left:120.960000pt;}
.x1a_c01345{left:138.240000pt;}
.x1c_c01345{left:158.080000pt;}
.x23_c01345{left:159.360000pt;}
.x1f_c01345{left:168.960000pt;}
.x4_c01345{left:178.560000pt;}
.x15_c01345{left:186.240000pt;}
.x1b_c01345{left:187.520000pt;}
.x24_c01345{left:197.120000pt;}
.xd_c01345{left:216.320000pt;}
.x5_c01345{left:226.560000pt;}
.x27_c01345{left:234.240000pt;}
.x13_c01345{left:235.520000pt;}
.x10_c01345{left:245.120000pt;}
.xe_c01345{left:264.320000pt;}
.x16_c01345{left:274.560000pt;}
.x14_c01345{left:283.520000pt;}
.x20_c01345{left:286.080000pt;}
.x11_c01345{left:293.760000pt;}
.xf_c01345{left:302.080000pt;}
.x12_c01345{left:303.360000pt;}
.x28_c01345{left:304.640000pt;}
.x25_c01345{left:312.960000pt;}
.x8_c01345{left:321.920000pt;}
.x21_c01345{left:339.840000pt;}
.x17_c01345{left:350.720000pt;}
.x26_c01345{left:360.320000pt;}
.x9_c01345{left:369.920000pt;}
.x22_c01345{left:379.520000pt;}
.x6_c01345{left:388.480000pt;}
.x18_c01345{left:397.440000pt;}
.xa_c01345{left:407.680000pt;}
.xb_c01345{left:435.840000pt;}
.x29_c01345{left:445.440000pt;}
.x19_c01345{left:474.240000pt;}
.xc_c01345{left:493.440000pt;}
.x31_c01345{left:512.640000pt;}
.x2c_c01345{left:514.560000pt;}
.x32_c01345{left:531.840000pt;}
.x3b_c01345{left:541.440000pt;}
.x34_c01345{left:561.280000pt;}
.x2d_c01345{left:562.560000pt;}
.x35_c01345{left:589.440000pt;}
.x2e_c01345{left:591.360000pt;}
.x37_c01345{left:599.040000pt;}
.x2b_c01345{left:604.800000pt;}
.x36_c01345{left:619.520000pt;}
.x39_c01345{left:625.920000pt;}
.x38_c01345{left:627.200000pt;}
.x33_c01345{left:628.480000pt;}
.x2f_c01345{left:629.760000pt;}
.x3a_c01345{left:645.120000pt;}
.x30_c01345{left:647.040000pt;}
}





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

.ir_c01346:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01346{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01346;src:url('chunks/assets/font_07899f582c59df0785050cb1.woff2')format("woff");}.ff1_c01346{font-family:ff1_c01346;line-height:1.109863;font-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_c01346{transform:matrix(0.183950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183950,0.000000,0.000000,0.250000,0,0);}
.m3f_c01346{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m41_c01346{transform:matrix(0.231950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231950,0.000000,0.000000,0.250000,0,0);}
.m36_c01346{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m3c_c01346{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m30_c01346{transform:matrix(0.247200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247200,0.000000,0.000000,0.250000,0,0);}
.mb_c01346{transform:matrix(0.248425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248425,0.000000,0.000000,0.250000,0,0);}
.m24_c01346{transform:matrix(0.248800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248800,0.000000,0.000000,0.250000,0,0);}
.m38_c01346{transform:matrix(0.249675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249675,0.000000,0.000000,0.250000,0,0);}
.m31_c01346{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01346{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);}
.m2d_c01346{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);}
.m42_c01346{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);}
.m4c_c01346{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.md_c01346{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m22_c01346{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_c01346{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m9_c01346{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m4_c01346{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);}
.m40_c01346{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1_c01346{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01346{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m13_c01346{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01346{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);}
.m39_c01346{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);}
.m49_c01346{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m10_c01346{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01346{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m45_c01346{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m15_c01346{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01346{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m37_c01346{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01346{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01346{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m7_c01346{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m26_c01346{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01346{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m32_c01346{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m43_c01346{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mf_c01346{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);}
.m4a_c01346{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m18_c01346{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);}
.m3b_c01346{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.mc_c01346{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m23_c01346{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_c01346{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);}
.m1c_c01346{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.ma_c01346{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);}
.m48_c01346{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);}
.m5_c01346{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m29_c01346{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m20_c01346{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);}
.m1e_c01346{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m6_c01346{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m12_c01346{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);}
.m0_c01346{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);}
.m3e_c01346{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);}
.m14_c01346{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m2_c01346{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);}
.m33_c01346{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01346{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m46_c01346{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01346{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m11_c01346{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m17_c01346{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m21_c01346{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.me_c01346{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m27_c01346{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m34_c01346{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);}
.m1d_c01346{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01346{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);}
.m25_c01346{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);}
.m1f_c01346{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m16_c01346{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m44_c01346{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m35_c01346{transform:matrix(0.745000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.745000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.745000,0.000000,0.000000,0.250000,0,0);}
.m47_c01346{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.v1_c01346{vertical-align:-5.760000px;}
.v2_c01346{vertical-align:-2.880000px;}
.v0_c01346{vertical-align:0.000000px;}
.ls1_c01346{letter-spacing:0.000000px;}
.ls0_c01346{letter-spacing:90.638400px;}
.sc__c01346{text-shadow:none;}
.sc0_c01346{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01346{-webkit-text-stroke:0px transparent;}
.sc0_c01346{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01346{word-spacing:-4.765920px;}
.ws1_c01346{word-spacing:0.000000px;}
.fc0_c01346{color:transparent;}
.fs8_c01346{font-size:34.560000px;}
.fse_c01346{font-size:37.440000px;}
.fs9_c01346{font-size:40.320000px;}
.fsf_c01346{font-size:43.200000px;}
.fsa_c01346{font-size:46.080000px;}
.fs7_c01346{font-size:48.960000px;}
.fs6_c01346{font-size:51.840000px;}
.fs2_c01346{font-size:54.720000px;}
.fs0_c01346{font-size:57.600000px;}
.fs4_c01346{font-size:60.480000px;}
.fs5_c01346{font-size:63.360000px;}
.fs10_c01346{font-size:66.240000px;}
.fsc_c01346{font-size:69.120000px;}
.fsd_c01346{font-size:72.000000px;}
.fs1_c01346{font-size:74.880000px;}
.fs3_c01346{font-size:77.760000px;}
.fs12_c01346{font-size:80.640000px;}
.fsb_c01346{font-size:95.040000px;}
.fs11_c01346{font-size:103.680000px;}
.y0_c01346{bottom:0.000000px;}
.y51_c01346{bottom:8.640000px;}
.y50_c01346{bottom:46.800000px;}
.y4f_c01346{bottom:49.680000px;}
.y5d_c01346{bottom:53.280000px;}
.y78_c01346{bottom:54.000000px;}
.y4c_c01346{bottom:88.560000px;}
.y4d_c01346{bottom:91.440000px;}
.y4e_c01346{bottom:92.160000px;}
.y4b_c01346{bottom:94.320000px;}
.y4a_c01346{bottom:95.040000px;}
.y76_c01346{bottom:95.760000px;}
.y5c_c01346{bottom:96.480000px;}
.y77_c01346{bottom:97.200000px;}
.y49_c01346{bottom:133.200000px;}
.y48_c01346{bottom:137.520000px;}
.y74_c01346{bottom:138.240000px;}
.y75_c01346{bottom:141.120000px;}
.y47_c01346{bottom:172.800000px;}
.y44_c01346{bottom:176.400000px;}
.y43_c01346{bottom:177.120000px;}
.y45_c01346{bottom:179.280000px;}
.y42_c01346{bottom:180.720000px;}
.y46_c01346{bottom:181.440000px;}
.y72_c01346{bottom:182.160000px;}
.y73_c01346{bottom:182.880000px;}
.y41_c01346{bottom:221.040000px;}
.y3e_c01346{bottom:223.200000px;}
.y40_c01346{bottom:223.920000px;}
.y3f_c01346{bottom:224.640000px;}
.y71_c01346{bottom:227.520000px;}
.y3d_c01346{bottom:264.240000px;}
.y3c_c01346{bottom:267.120000px;}
.y6f_c01346{bottom:267.840000px;}
.y70_c01346{bottom:269.280000px;}
.y39_c01346{bottom:307.440000px;}
.y3b_c01346{bottom:308.160000px;}
.y3a_c01346{bottom:308.880000px;}
.y38_c01346{bottom:311.040000px;}
.y6e_c01346{bottom:313.920000px;}
.y37_c01346{bottom:350.640000px;}
.y36_c01346{bottom:353.520000px;}
.y6d_c01346{bottom:354.960000px;}
.y6c_c01346{bottom:356.400000px;}
.y6b_c01346{bottom:357.120000px;}
.y33_c01346{bottom:393.840000px;}
.y35_c01346{bottom:395.280000px;}
.y32_c01346{bottom:396.720000px;}
.y34_c01346{bottom:397.440000px;}
.y6a_c01346{bottom:400.320000px;}
.y30_c01346{bottom:437.760000px;}
.y31_c01346{bottom:438.480000px;}
.y2e_c01346{bottom:439.920000px;}
.y2f_c01346{bottom:442.080000px;}
.y69_c01346{bottom:443.520000px;}
.y2d_c01346{bottom:480.960000px;}
.y2c_c01346{bottom:483.120000px;}
.y67_c01346{bottom:483.840000px;}
.y68_c01346{bottom:484.560000px;}
.y28_c01346{bottom:523.440000px;}
.y2b_c01346{bottom:524.880000px;}
.y27_c01346{bottom:525.600000px;}
.y2a_c01346{bottom:527.040000px;}
.y65_c01346{bottom:527.760000px;}
.y29_c01346{bottom:528.480000px;}
.y66_c01346{bottom:529.200000px;}
.y26_c01346{bottom:566.640000px;}
.y24_c01346{bottom:568.800000px;}
.y62_c01346{bottom:569.520000px;}
.y64_c01346{bottom:570.240000px;}
.y25_c01346{bottom:571.680000px;}
.y63_c01346{bottom:572.400000px;}
.y23_c01346{bottom:609.840000px;}
.y61_c01346{bottom:611.280000px;}
.y21_c01346{bottom:612.000000px;}
.y60_c01346{bottom:612.720000px;}
.y22_c01346{bottom:614.160000px;}
.y5f_c01346{bottom:614.880000px;}
.y1f_c01346{bottom:653.760000px;}
.y5e_c01346{bottom:654.480000px;}
.y1d_c01346{bottom:655.200000px;}
.y20_c01346{bottom:657.360000px;}
.y1e_c01346{bottom:658.080000px;}
.y1c_c01346{bottom:690.480000px;}
.y1b_c01346{bottom:702.000000px;}
.y18_c01346{bottom:751.680000px;}
.y17_c01346{bottom:753.120000px;}
.y19_c01346{bottom:754.560000px;}
.y1a_c01346{bottom:756.000000px;}
.y16_c01346{bottom:794.160000px;}
.y13_c01346{bottom:794.880000px;}
.y5b_c01346{bottom:795.600000px;}
.y12_c01346{bottom:796.320000px;}
.y15_c01346{bottom:797.760000px;}
.y14_c01346{bottom:798.480000px;}
.y11_c01346{bottom:838.080000px;}
.y10_c01346{bottom:838.800000px;}
.yf_c01346{bottom:839.520000px;}
.y59_c01346{bottom:840.240000px;}
.y5a_c01346{bottom:841.680000px;}
.ye_c01346{bottom:881.280000px;}
.yd_c01346{bottom:882.000000px;}
.yc_c01346{bottom:882.720000px;}
.y57_c01346{bottom:884.160000px;}
.y58_c01346{bottom:884.880000px;}
.yb_c01346{bottom:924.480000px;}
.ya_c01346{bottom:925.200000px;}
.y9_c01346{bottom:926.640000px;}
.y56_c01346{bottom:927.360000px;}
.y7_c01346{bottom:967.680000px;}
.y8_c01346{bottom:968.400000px;}
.y55_c01346{bottom:969.120000px;}
.y6_c01346{bottom:969.840000px;}
.y4_c01346{bottom:1010.880000px;}
.y5_c01346{bottom:1011.600000px;}
.y54_c01346{bottom:1012.320000px;}
.y3_c01346{bottom:1013.040000px;}
.y53_c01346{bottom:1054.080000px;}
.y2_c01346{bottom:1054.800000px;}
.y1_c01346{bottom:1056.240000px;}
.y52_c01346{bottom:1110.240000px;}
.ha_c01346{height:31.100625px;}
.h10_c01346{height:33.692344px;}
.hb_c01346{height:36.284062px;}
.h11_c01346{height:38.875781px;}
.hc_c01346{height:41.467500px;}
.h9_c01346{height:44.059219px;}
.h8_c01346{height:46.650937px;}
.h4_c01346{height:49.242656px;}
.h2_c01346{height:51.834375px;}
.h6_c01346{height:54.426094px;}
.h7_c01346{height:57.017812px;}
.h12_c01346{height:59.609531px;}
.he_c01346{height:62.201250px;}
.hf_c01346{height:64.792969px;}
.h3_c01346{height:67.384687px;}
.h5_c01346{height:69.976406px;}
.h14_c01346{height:72.568125px;}
.hd_c01346{height:85.526719px;}
.h13_c01346{height:93.301875px;}
.h1_c01346{height:1166.250000px;}
.h0_c01346{height:1166.400000px;}
.w1_c01346{width:773.250000px;}
.w0_c01346{width:773.280000px;}
.x0_c01346{left:0.000000px;}
.x1_c01346{left:51.840000px;}
.x15_c01346{left:54.000000px;}
.x20_c01346{left:84.240000px;}
.xe_c01346{left:103.680000px;}
.x2_c01346{left:113.760000px;}
.x1c_c01346{left:115.200000px;}
.xf_c01346{left:157.680000px;}
.x14_c01346{left:190.080000px;}
.x10_c01346{left:200.880000px;}
.xa_c01346{left:211.680000px;}
.x3_c01346{left:213.120000px;}
.x21_c01346{left:223.200000px;}
.x4_c01346{left:244.800000px;}
.x1b_c01346{left:256.320000px;}
.x5_c01346{left:264.960000px;}
.x1d_c01346{left:277.200000px;}
.x11_c01346{left:287.280000px;}
.x19_c01346{left:288.720000px;}
.x6_c01346{left:308.880000px;}
.xb_c01346{left:318.960000px;}
.x22_c01346{left:320.400000px;}
.x16_c01346{left:330.480000px;}
.x12_c01346{left:342.000000px;}
.xc_c01346{left:363.600000px;}
.x1e_c01346{left:374.400000px;}
.x17_c01346{left:384.480000px;}
.x7_c01346{left:395.280000px;}
.xd_c01346{left:406.080000px;}
.x1a_c01346{left:416.880000px;}
.x18_c01346{left:427.680000px;}
.x13_c01346{left:438.480000px;}
.x8_c01346{left:449.280000px;}
.x9_c01346{left:492.480000px;}
.x1f_c01346{left:544.320000px;}
.x2e_c01346{left:568.080000px;}
.x26_c01346{left:578.880000px;}
.x34_c01346{left:598.320000px;}
.x2c_c01346{left:599.760000px;}
.x24_c01346{left:601.200000px;}
.x2f_c01346{left:609.840000px;}
.x32_c01346{left:631.440000px;}
.x2a_c01346{left:632.880000px;}
.x23_c01346{left:653.760000px;}
.x36_c01346{left:655.200000px;}
.x33_c01346{left:663.120000px;}
.x30_c01346{left:665.280000px;}
.x2b_c01346{left:675.360000px;}
.x25_c01346{left:676.800000px;}
.x35_c01346{left:696.960000px;}
.x2d_c01346{left:707.040000px;}
.x28_c01346{left:708.480000px;}
.x27_c01346{left:709.920000px;}
.x31_c01346{left:727.200000px;}
.x29_c01346{left:729.360000px;}
@media print{
.v1_c01346{vertical-align:-5.120000pt;}
.v2_c01346{vertical-align:-2.560000pt;}
.v0_c01346{vertical-align:0.000000pt;}
.ls1_c01346{letter-spacing:0.000000pt;}
.ls0_c01346{letter-spacing:80.567467pt;}
.ws0_c01346{word-spacing:-4.236373pt;}
.ws1_c01346{word-spacing:0.000000pt;}
.fs8_c01346{font-size:30.720000pt;}
.fse_c01346{font-size:33.280000pt;}
.fs9_c01346{font-size:35.840000pt;}
.fsf_c01346{font-size:38.400000pt;}
.fsa_c01346{font-size:40.960000pt;}
.fs7_c01346{font-size:43.520000pt;}
.fs6_c01346{font-size:46.080000pt;}
.fs2_c01346{font-size:48.640000pt;}
.fs0_c01346{font-size:51.200000pt;}
.fs4_c01346{font-size:53.760000pt;}
.fs5_c01346{font-size:56.320000pt;}
.fs10_c01346{font-size:58.880000pt;}
.fsc_c01346{font-size:61.440000pt;}
.fsd_c01346{font-size:64.000000pt;}
.fs1_c01346{font-size:66.560000pt;}
.fs3_c01346{font-size:69.120000pt;}
.fs12_c01346{font-size:71.680000pt;}
.fsb_c01346{font-size:84.480000pt;}
.fs11_c01346{font-size:92.160000pt;}
.y0_c01346{bottom:0.000000pt;}
.y51_c01346{bottom:7.680000pt;}
.y50_c01346{bottom:41.600000pt;}
.y4f_c01346{bottom:44.160000pt;}
.y5d_c01346{bottom:47.360000pt;}
.y78_c01346{bottom:48.000000pt;}
.y4c_c01346{bottom:78.720000pt;}
.y4d_c01346{bottom:81.280000pt;}
.y4e_c01346{bottom:81.920000pt;}
.y4b_c01346{bottom:83.840000pt;}
.y4a_c01346{bottom:84.480000pt;}
.y76_c01346{bottom:85.120000pt;}
.y5c_c01346{bottom:85.760000pt;}
.y77_c01346{bottom:86.400000pt;}
.y49_c01346{bottom:118.400000pt;}
.y48_c01346{bottom:122.240000pt;}
.y74_c01346{bottom:122.880000pt;}
.y75_c01346{bottom:125.440000pt;}
.y47_c01346{bottom:153.600000pt;}
.y44_c01346{bottom:156.800000pt;}
.y43_c01346{bottom:157.440000pt;}
.y45_c01346{bottom:159.360000pt;}
.y42_c01346{bottom:160.640000pt;}
.y46_c01346{bottom:161.280000pt;}
.y72_c01346{bottom:161.920000pt;}
.y73_c01346{bottom:162.560000pt;}
.y41_c01346{bottom:196.480000pt;}
.y3e_c01346{bottom:198.400000pt;}
.y40_c01346{bottom:199.040000pt;}
.y3f_c01346{bottom:199.680000pt;}
.y71_c01346{bottom:202.240000pt;}
.y3d_c01346{bottom:234.880000pt;}
.y3c_c01346{bottom:237.440000pt;}
.y6f_c01346{bottom:238.080000pt;}
.y70_c01346{bottom:239.360000pt;}
.y39_c01346{bottom:273.280000pt;}
.y3b_c01346{bottom:273.920000pt;}
.y3a_c01346{bottom:274.560000pt;}
.y38_c01346{bottom:276.480000pt;}
.y6e_c01346{bottom:279.040000pt;}
.y37_c01346{bottom:311.680000pt;}
.y36_c01346{bottom:314.240000pt;}
.y6d_c01346{bottom:315.520000pt;}
.y6c_c01346{bottom:316.800000pt;}
.y6b_c01346{bottom:317.440000pt;}
.y33_c01346{bottom:350.080000pt;}
.y35_c01346{bottom:351.360000pt;}
.y32_c01346{bottom:352.640000pt;}
.y34_c01346{bottom:353.280000pt;}
.y6a_c01346{bottom:355.840000pt;}
.y30_c01346{bottom:389.120000pt;}
.y31_c01346{bottom:389.760000pt;}
.y2e_c01346{bottom:391.040000pt;}
.y2f_c01346{bottom:392.960000pt;}
.y69_c01346{bottom:394.240000pt;}
.y2d_c01346{bottom:427.520000pt;}
.y2c_c01346{bottom:429.440000pt;}
.y67_c01346{bottom:430.080000pt;}
.y68_c01346{bottom:430.720000pt;}
.y28_c01346{bottom:465.280000pt;}
.y2b_c01346{bottom:466.560000pt;}
.y27_c01346{bottom:467.200000pt;}
.y2a_c01346{bottom:468.480000pt;}
.y65_c01346{bottom:469.120000pt;}
.y29_c01346{bottom:469.760000pt;}
.y66_c01346{bottom:470.400000pt;}
.y26_c01346{bottom:503.680000pt;}
.y24_c01346{bottom:505.600000pt;}
.y62_c01346{bottom:506.240000pt;}
.y64_c01346{bottom:506.880000pt;}
.y25_c01346{bottom:508.160000pt;}
.y63_c01346{bottom:508.800000pt;}
.y23_c01346{bottom:542.080000pt;}
.y61_c01346{bottom:543.360000pt;}
.y21_c01346{bottom:544.000000pt;}
.y60_c01346{bottom:544.640000pt;}
.y22_c01346{bottom:545.920000pt;}
.y5f_c01346{bottom:546.560000pt;}
.y1f_c01346{bottom:581.120000pt;}
.y5e_c01346{bottom:581.760000pt;}
.y1d_c01346{bottom:582.400000pt;}
.y20_c01346{bottom:584.320000pt;}
.y1e_c01346{bottom:584.960000pt;}
.y1c_c01346{bottom:613.760000pt;}
.y1b_c01346{bottom:624.000000pt;}
.y18_c01346{bottom:668.160000pt;}
.y17_c01346{bottom:669.440000pt;}
.y19_c01346{bottom:670.720000pt;}
.y1a_c01346{bottom:672.000000pt;}
.y16_c01346{bottom:705.920000pt;}
.y13_c01346{bottom:706.560000pt;}
.y5b_c01346{bottom:707.200000pt;}
.y12_c01346{bottom:707.840000pt;}
.y15_c01346{bottom:709.120000pt;}
.y14_c01346{bottom:709.760000pt;}
.y11_c01346{bottom:744.960000pt;}
.y10_c01346{bottom:745.600000pt;}
.yf_c01346{bottom:746.240000pt;}
.y59_c01346{bottom:746.880000pt;}
.y5a_c01346{bottom:748.160000pt;}
.ye_c01346{bottom:783.360000pt;}
.yd_c01346{bottom:784.000000pt;}
.yc_c01346{bottom:784.640000pt;}
.y57_c01346{bottom:785.920000pt;}
.y58_c01346{bottom:786.560000pt;}
.yb_c01346{bottom:821.760000pt;}
.ya_c01346{bottom:822.400000pt;}
.y9_c01346{bottom:823.680000pt;}
.y56_c01346{bottom:824.320000pt;}
.y7_c01346{bottom:860.160000pt;}
.y8_c01346{bottom:860.800000pt;}
.y55_c01346{bottom:861.440000pt;}
.y6_c01346{bottom:862.080000pt;}
.y4_c01346{bottom:898.560000pt;}
.y5_c01346{bottom:899.200000pt;}
.y54_c01346{bottom:899.840000pt;}
.y3_c01346{bottom:900.480000pt;}
.y53_c01346{bottom:936.960000pt;}
.y2_c01346{bottom:937.600000pt;}
.y1_c01346{bottom:938.880000pt;}
.y52_c01346{bottom:986.880000pt;}
.ha_c01346{height:27.645000pt;}
.h10_c01346{height:29.948750pt;}
.hb_c01346{height:32.252500pt;}
.h11_c01346{height:34.556250pt;}
.hc_c01346{height:36.860000pt;}
.h9_c01346{height:39.163750pt;}
.h8_c01346{height:41.467500pt;}
.h4_c01346{height:43.771250pt;}
.h2_c01346{height:46.075000pt;}
.h6_c01346{height:48.378750pt;}
.h7_c01346{height:50.682500pt;}
.h12_c01346{height:52.986250pt;}
.he_c01346{height:55.290000pt;}
.hf_c01346{height:57.593750pt;}
.h3_c01346{height:59.897500pt;}
.h5_c01346{height:62.201250pt;}
.h14_c01346{height:64.505000pt;}
.hd_c01346{height:76.023750pt;}
.h13_c01346{height:82.935000pt;}
.h1_c01346{height:1036.666667pt;}
.h0_c01346{height:1036.800000pt;}
.w1_c01346{width:687.333333pt;}
.w0_c01346{width:687.360000pt;}
.x0_c01346{left:0.000000pt;}
.x1_c01346{left:46.080000pt;}
.x15_c01346{left:48.000000pt;}
.x20_c01346{left:74.880000pt;}
.xe_c01346{left:92.160000pt;}
.x2_c01346{left:101.120000pt;}
.x1c_c01346{left:102.400000pt;}
.xf_c01346{left:140.160000pt;}
.x14_c01346{left:168.960000pt;}
.x10_c01346{left:178.560000pt;}
.xa_c01346{left:188.160000pt;}
.x3_c01346{left:189.440000pt;}
.x21_c01346{left:198.400000pt;}
.x4_c01346{left:217.600000pt;}
.x1b_c01346{left:227.840000pt;}
.x5_c01346{left:235.520000pt;}
.x1d_c01346{left:246.400000pt;}
.x11_c01346{left:255.360000pt;}
.x19_c01346{left:256.640000pt;}
.x6_c01346{left:274.560000pt;}
.xb_c01346{left:283.520000pt;}
.x22_c01346{left:284.800000pt;}
.x16_c01346{left:293.760000pt;}
.x12_c01346{left:304.000000pt;}
.xc_c01346{left:323.200000pt;}
.x1e_c01346{left:332.800000pt;}
.x17_c01346{left:341.760000pt;}
.x7_c01346{left:351.360000pt;}
.xd_c01346{left:360.960000pt;}
.x1a_c01346{left:370.560000pt;}
.x18_c01346{left:380.160000pt;}
.x13_c01346{left:389.760000pt;}
.x8_c01346{left:399.360000pt;}
.x9_c01346{left:437.760000pt;}
.x1f_c01346{left:483.840000pt;}
.x2e_c01346{left:504.960000pt;}
.x26_c01346{left:514.560000pt;}
.x34_c01346{left:531.840000pt;}
.x2c_c01346{left:533.120000pt;}
.x24_c01346{left:534.400000pt;}
.x2f_c01346{left:542.080000pt;}
.x32_c01346{left:561.280000pt;}
.x2a_c01346{left:562.560000pt;}
.x23_c01346{left:581.120000pt;}
.x36_c01346{left:582.400000pt;}
.x33_c01346{left:589.440000pt;}
.x30_c01346{left:591.360000pt;}
.x2b_c01346{left:600.320000pt;}
.x25_c01346{left:601.600000pt;}
.x35_c01346{left:619.520000pt;}
.x2d_c01346{left:628.480000pt;}
.x28_c01346{left:629.760000pt;}
.x27_c01346{left:631.040000pt;}
.x31_c01346{left:646.400000pt;}
.x29_c01346{left:648.320000pt;}
}





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

.ir_c01347:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01347{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01347;src:url('chunks/assets/font_70be97efd416eaf5a7ea535a.woff2')format("woff");}.ff1_c01347{font-family:ff1_c01347;line-height:1.109863;font-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_c01347{transform:matrix(0.175975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175975,0.000000,0.000000,0.250000,0,0);}
.m2b_c01347{transform:matrix(0.177600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177600,0.000000,0.000000,0.250000,0,0);}
.m1f_c01347{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m53_c01347{transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);}
.m57_c01347{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m49_c01347{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);}
.m56_c01347{transform:matrix(0.228650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228650,0.000000,0.000000,0.250000,0,0);}
.ma_c01347{transform:matrix(0.229475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229475,0.000000,0.000000,0.250000,0,0);}
.m4b_c01347{transform:matrix(0.231650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231650,0.000000,0.000000,0.250000,0,0);}
.m27_c01347{transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);}
.m22_c01347{transform:matrix(0.232950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232950,0.000000,0.000000,0.250000,0,0);}
.m2_c01347{transform:matrix(0.234925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234925,0.000000,0.000000,0.250000,0,0);}
.m47_c01347{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m16_c01347{transform:matrix(0.238200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238200,0.000000,0.000000,0.250000,0,0);}
.m2d_c01347{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);}
.m3b_c01347{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);}
.m5a_c01347{transform:matrix(0.247125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247125,0.000000,0.000000,0.250000,0,0);}
.m55_c01347{transform:matrix(0.247275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247275,0.000000,0.000000,0.250000,0,0);}
.m38_c01347{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m12_c01347{transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);}
.m17_c01347{transform:matrix(0.249350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249350,0.000000,0.000000,0.250000,0,0);}
.m2e_c01347{transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);}
.m1b_c01347{transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);}
.m33_c01347{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01347{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m19_c01347{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);}
.m3d_c01347{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);}
.m37_c01347{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_c01347{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);}
.m2f_c01347{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m5_c01347{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);}
.m42_c01347{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.mf_c01347{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);}
.m39_c01347{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);}
.m20_c01347{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m45_c01347{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);}
.m31_c01347{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mb_c01347{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m10_c01347{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m51_c01347{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m4_c01347{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m13_c01347{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m18_c01347{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m14_c01347{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m29_c01347{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m25_c01347{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.me_c01347{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m6_c01347{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01347{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m24_c01347{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1_c01347{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);}
.m34_c01347{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m40_c01347{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m7_c01347{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);}
.m44_c01347{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);}
.m4f_c01347{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m11_c01347{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);}
.m21_c01347{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);}
.m54_c01347{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m36_c01347{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m15_c01347{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m0_c01347{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);}
.m4a_c01347{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m9_c01347{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);}
.m4c_c01347{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);}
.m3f_c01347{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);}
.m2c_c01347{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m46_c01347{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);}
.m2a_c01347{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);}
.m3_c01347{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01347{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);}
.m58_c01347{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);}
.m3a_c01347{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m26_c01347{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m35_c01347{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m30_c01347{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m28_c01347{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m4e_c01347{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m23_c01347{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m41_c01347{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01347{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);}
.m1a_c01347{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m50_c01347{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m32_c01347{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);}
.m4d_c01347{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01347{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m48_c01347{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m52_c01347{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m43_c01347{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01347{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.m59_c01347{transform:matrix(1.082500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.082500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.082500,0.000000,0.000000,0.250000,0,0);}
.v1_c01347{vertical-align:-5.760000px;}
.v0_c01347{vertical-align:0.000000px;}
.v2_c01347{vertical-align:5.760000px;}
.ls1_c01347{letter-spacing:0.000000px;}
.ls0_c01347{letter-spacing:147.529680px;}
.sc__c01347{text-shadow:none;}
.sc0_c01347{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01347{-webkit-text-stroke:0px transparent;}
.sc0_c01347{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01347{word-spacing:0.000000px;}
.ws0_c01347{word-spacing:9.474000px;}
.ws1_c01347{word-spacing:29.389200px;}
.fc0_c01347{color:transparent;}
.fsf_c01347{font-size:17.280000px;}
.fse_c01347{font-size:28.800000px;}
.fsa_c01347{font-size:40.320000px;}
.fsb_c01347{font-size:43.200000px;}
.fsc_c01347{font-size:48.960000px;}
.fs6_c01347{font-size:51.840000px;}
.fs3_c01347{font-size:54.720000px;}
.fs5_c01347{font-size:57.600000px;}
.fs7_c01347{font-size:60.480000px;}
.fs9_c01347{font-size:63.360000px;}
.fs1_c01347{font-size:66.240000px;}
.fsd_c01347{font-size:69.120000px;}
.fs4_c01347{font-size:72.000000px;}
.fs0_c01347{font-size:74.880000px;}
.fs2_c01347{font-size:77.760000px;}
.fs8_c01347{font-size:118.080000px;}
.y0_c01347{bottom:0.000000px;}
.y79_c01347{bottom:60.480000px;}
.y7a_c01347{bottom:61.200000px;}
.y77_c01347{bottom:64.080000px;}
.y76_c01347{bottom:64.800000px;}
.y7f_c01347{bottom:65.520000px;}
.y78_c01347{bottom:67.680000px;}
.y75_c01347{bottom:103.680000px;}
.y74_c01347{bottom:107.280000px;}
.y7d_c01347{bottom:108.000000px;}
.y7e_c01347{bottom:110.880000px;}
.y72_c01347{bottom:146.160000px;}
.y73_c01347{bottom:146.880000px;}
.y71_c01347{bottom:150.480000px;}
.y7b_c01347{bottom:151.200000px;}
.y7c_c01347{bottom:151.920000px;}
.y6c_c01347{bottom:189.360000px;}
.y70_c01347{bottom:192.240000px;}
.y6f_c01347{bottom:192.960000px;}
.y6d_c01347{bottom:193.680000px;}
.y6e_c01347{bottom:194.400000px;}
.y66_c01347{bottom:221.760000px;}
.y67_c01347{bottom:223.920000px;}
.y65_c01347{bottom:225.360000px;}
.y6b_c01347{bottom:226.080000px;}
.y68_c01347{bottom:226.800000px;}
.y69_c01347{bottom:227.520000px;}
.y6a_c01347{bottom:228.960000px;}
.y60_c01347{bottom:265.680000px;}
.y62_c01347{bottom:266.400000px;}
.y5f_c01347{bottom:268.560000px;}
.y61_c01347{bottom:269.280000px;}
.y63_c01347{bottom:270.720000px;}
.y64_c01347{bottom:271.440000px;}
.y5e_c01347{bottom:308.160000px;}
.y5d_c01347{bottom:313.200000px;}
.y58_c01347{bottom:340.560000px;}
.y59_c01347{bottom:342.000000px;}
.y57_c01347{bottom:344.160000px;}
.y5b_c01347{bottom:344.880000px;}
.y5a_c01347{bottom:345.600000px;}
.y5c_c01347{bottom:346.320000px;}
.y54_c01347{bottom:384.480000px;}
.y53_c01347{bottom:387.360000px;}
.y55_c01347{bottom:388.080000px;}
.y56_c01347{bottom:390.240000px;}
.y4e_c01347{bottom:429.120000px;}
.y4d_c01347{bottom:430.560000px;}
.y50_c01347{bottom:431.280000px;}
.y4f_c01347{bottom:432.000000px;}
.y51_c01347{bottom:432.720000px;}
.y52_c01347{bottom:434.160000px;}
.y47_c01347{bottom:471.600000px;}
.y48_c01347{bottom:473.040000px;}
.y46_c01347{bottom:474.480000px;}
.y49_c01347{bottom:475.200000px;}
.y4c_c01347{bottom:475.920000px;}
.y4b_c01347{bottom:476.640000px;}
.y4a_c01347{bottom:477.360000px;}
.y41_c01347{bottom:515.520000px;}
.y44_c01347{bottom:516.240000px;}
.y40_c01347{bottom:517.680000px;}
.y45_c01347{bottom:518.400000px;}
.y43_c01347{bottom:519.120000px;}
.y42_c01347{bottom:519.840000px;}
.y3b_c01347{bottom:558.720000px;}
.y3f_c01347{bottom:559.440000px;}
.y3a_c01347{bottom:560.880000px;}
.y3c_c01347{bottom:561.600000px;}
.y3d_c01347{bottom:562.320000px;}
.y3e_c01347{bottom:563.040000px;}
.y36_c01347{bottom:601.920000px;}
.y39_c01347{bottom:603.360000px;}
.y35_c01347{bottom:604.080000px;}
.y38_c01347{bottom:605.520000px;}
.y37_c01347{bottom:606.240000px;}
.y33_c01347{bottom:644.400000px;}
.y31_c01347{bottom:645.120000px;}
.y34_c01347{bottom:645.840000px;}
.y30_c01347{bottom:646.560000px;}
.y32_c01347{bottom:648.720000px;}
.y2b_c01347{bottom:688.320000px;}
.y2e_c01347{bottom:689.040000px;}
.y2d_c01347{bottom:689.760000px;}
.y2a_c01347{bottom:690.480000px;}
.y2c_c01347{bottom:691.200000px;}
.y2f_c01347{bottom:691.920000px;}
.y27_c01347{bottom:731.520000px;}
.y28_c01347{bottom:732.240000px;}
.y26_c01347{bottom:732.960000px;}
.y29_c01347{bottom:733.680000px;}
.y23_c01347{bottom:774.000000px;}
.y22_c01347{bottom:774.720000px;}
.y25_c01347{bottom:776.160000px;}
.y21_c01347{bottom:777.600000px;}
.y24_c01347{bottom:778.320000px;}
.y1f_c01347{bottom:817.200000px;}
.y1c_c01347{bottom:817.920000px;}
.y1e_c01347{bottom:818.640000px;}
.y20_c01347{bottom:820.080000px;}
.y1b_c01347{bottom:820.800000px;}
.y1d_c01347{bottom:821.520000px;}
.y18_c01347{bottom:860.400000px;}
.y19_c01347{bottom:861.120000px;}
.y15_c01347{bottom:861.840000px;}
.y1a_c01347{bottom:863.280000px;}
.y14_c01347{bottom:864.000000px;}
.y17_c01347{bottom:864.720000px;}
.y16_c01347{bottom:865.440000px;}
.y12_c01347{bottom:904.320000px;}
.y11_c01347{bottom:905.040000px;}
.y13_c01347{bottom:906.480000px;}
.y10_c01347{bottom:907.200000px;}
.ye_c01347{bottom:946.800000px;}
.yd_c01347{bottom:947.520000px;}
.yf_c01347{bottom:948.240000px;}
.yc_c01347{bottom:949.680000px;}
.ya_c01347{bottom:979.200000px;}
.y9_c01347{bottom:989.280000px;}
.yb_c01347{bottom:990.720000px;}
.y7_c01347{bottom:991.440000px;}
.y8_c01347{bottom:992.880000px;}
.y6_c01347{bottom:993.600000px;}
.y3_c01347{bottom:1034.640000px;}
.y2_c01347{bottom:1035.360000px;}
.y5_c01347{bottom:1036.800000px;}
.y4_c01347{bottom:1038.240000px;}
.y1_c01347{bottom:1083.600000px;}
.h12_c01347{height:15.550313px;}
.h11_c01347{height:25.917187px;}
.hc_c01347{height:36.284062px;}
.hd_c01347{height:38.875781px;}
.he_c01347{height:44.059219px;}
.h8_c01347{height:46.650937px;}
.h5_c01347{height:49.242656px;}
.h7_c01347{height:51.834375px;}
.h9_c01347{height:54.426094px;}
.h10_c01347{height:55.002656px;}
.hb_c01347{height:57.017812px;}
.h3_c01347{height:59.609531px;}
.hf_c01347{height:62.201250px;}
.h6_c01347{height:64.792969px;}
.h2_c01347{height:67.384687px;}
.h4_c01347{height:69.976406px;}
.ha_c01347{height:106.260469px;}
.h1_c01347{height:1146.750000px;}
.h0_c01347{height:1146.960000px;}
.w1_c01347{width:768.000000px;}
.w0_c01347{width:768.240000px;}
.x0_c01347{left:0.000000px;}
.x2_c01347{left:48.960000px;}
.x31_c01347{left:50.400000px;}
.x39_c01347{left:51.840000px;}
.x3d_c01347{left:79.920000px;}
.x3e_c01347{left:90.000000px;}
.x3b_c01347{left:101.520000px;}
.x3_c01347{left:110.160000px;}
.x36_c01347{left:163.440000px;}
.x2e_c01347{left:196.560000px;}
.xa_c01347{left:198.720000px;}
.x27_c01347{left:209.520000px;}
.x13_c01347{left:220.320000px;}
.x37_c01347{left:228.960000px;}
.x10_c01347{left:231.120000px;}
.x4_c01347{left:241.920000px;}
.x33_c01347{left:250.560000px;}
.x17_c01347{left:252.000000px;}
.x25_c01347{left:261.360000px;}
.x28_c01347{left:263.520000px;}
.x1f_c01347{left:272.160000px;}
.x14_c01347{left:274.320000px;}
.x22_c01347{left:283.680000px;}
.x5_c01347{left:295.200000px;}
.x18_c01347{left:304.560000px;}
.x26_c01347{left:306.720000px;}
.x15_c01347{left:316.080000px;}
.x20_c01347{left:317.520000px;}
.x2f_c01347{left:327.600000px;}
.xb_c01347{left:339.120000px;}
.x19_c01347{left:348.480000px;}
.x32_c01347{left:370.080000px;}
.x30_c01347{left:371.520000px;}
.x34_c01347{left:381.600000px;}
.x23_c01347{left:424.080000px;}
.x1a_c01347{left:434.880000px;}
.x3a_c01347{left:466.560000px;}
.xc_c01347{left:478.080000px;}
.x1b_c01347{left:488.880000px;}
.x1d_c01347{left:520.560000px;}
.x3c_c01347{left:531.360000px;}
.x38_c01347{left:573.120000px;}
.xe_c01347{left:574.560000px;}
.x6_c01347{left:576.000000px;}
.xd_c01347{left:579.600000px;}
.x3f_c01347{left:594.000000px;}
.xf_c01347{left:596.160000px;}
.x24_c01347{left:627.840000px;}
.x11_c01347{left:629.280000px;}
.x7_c01347{left:630.720000px;}
.x29_c01347{left:639.360000px;}
.x40_c01347{left:652.320000px;}
.x1c_c01347{left:660.960000px;}
.x8_c01347{left:663.120000px;}
.x2a_c01347{left:671.760000px;}
.x1_c01347{left:674.640000px;}
.x16_c01347{left:694.800000px;}
.x35_c01347{left:702.000000px;}
.x1e_c01347{left:703.440000px;}
.x9_c01347{left:704.880000px;}
.x2b_c01347{left:714.240000px;}
.x21_c01347{left:724.320000px;}
.x12_c01347{left:725.760000px;}
.x2c_c01347{left:734.400000px;}
.x2d_c01347{left:745.920000px;}
@media print{
.v1_c01347{vertical-align:-5.120000pt;}
.v0_c01347{vertical-align:0.000000pt;}
.v2_c01347{vertical-align:5.120000pt;}
.ls1_c01347{letter-spacing:0.000000pt;}
.ls0_c01347{letter-spacing:131.137493pt;}
.ws2_c01347{word-spacing:0.000000pt;}
.ws0_c01347{word-spacing:8.421333pt;}
.ws1_c01347{word-spacing:26.123733pt;}
.fsf_c01347{font-size:15.360000pt;}
.fse_c01347{font-size:25.600000pt;}
.fsa_c01347{font-size:35.840000pt;}
.fsb_c01347{font-size:38.400000pt;}
.fsc_c01347{font-size:43.520000pt;}
.fs6_c01347{font-size:46.080000pt;}
.fs3_c01347{font-size:48.640000pt;}
.fs5_c01347{font-size:51.200000pt;}
.fs7_c01347{font-size:53.760000pt;}
.fs9_c01347{font-size:56.320000pt;}
.fs1_c01347{font-size:58.880000pt;}
.fsd_c01347{font-size:61.440000pt;}
.fs4_c01347{font-size:64.000000pt;}
.fs0_c01347{font-size:66.560000pt;}
.fs2_c01347{font-size:69.120000pt;}
.fs8_c01347{font-size:104.960000pt;}
.y0_c01347{bottom:0.000000pt;}
.y79_c01347{bottom:53.760000pt;}
.y7a_c01347{bottom:54.400000pt;}
.y77_c01347{bottom:56.960000pt;}
.y76_c01347{bottom:57.600000pt;}
.y7f_c01347{bottom:58.240000pt;}
.y78_c01347{bottom:60.160000pt;}
.y75_c01347{bottom:92.160000pt;}
.y74_c01347{bottom:95.360000pt;}
.y7d_c01347{bottom:96.000000pt;}
.y7e_c01347{bottom:98.560000pt;}
.y72_c01347{bottom:129.920000pt;}
.y73_c01347{bottom:130.560000pt;}
.y71_c01347{bottom:133.760000pt;}
.y7b_c01347{bottom:134.400000pt;}
.y7c_c01347{bottom:135.040000pt;}
.y6c_c01347{bottom:168.320000pt;}
.y70_c01347{bottom:170.880000pt;}
.y6f_c01347{bottom:171.520000pt;}
.y6d_c01347{bottom:172.160000pt;}
.y6e_c01347{bottom:172.800000pt;}
.y66_c01347{bottom:197.120000pt;}
.y67_c01347{bottom:199.040000pt;}
.y65_c01347{bottom:200.320000pt;}
.y6b_c01347{bottom:200.960000pt;}
.y68_c01347{bottom:201.600000pt;}
.y69_c01347{bottom:202.240000pt;}
.y6a_c01347{bottom:203.520000pt;}
.y60_c01347{bottom:236.160000pt;}
.y62_c01347{bottom:236.800000pt;}
.y5f_c01347{bottom:238.720000pt;}
.y61_c01347{bottom:239.360000pt;}
.y63_c01347{bottom:240.640000pt;}
.y64_c01347{bottom:241.280000pt;}
.y5e_c01347{bottom:273.920000pt;}
.y5d_c01347{bottom:278.400000pt;}
.y58_c01347{bottom:302.720000pt;}
.y59_c01347{bottom:304.000000pt;}
.y57_c01347{bottom:305.920000pt;}
.y5b_c01347{bottom:306.560000pt;}
.y5a_c01347{bottom:307.200000pt;}
.y5c_c01347{bottom:307.840000pt;}
.y54_c01347{bottom:341.760000pt;}
.y53_c01347{bottom:344.320000pt;}
.y55_c01347{bottom:344.960000pt;}
.y56_c01347{bottom:346.880000pt;}
.y4e_c01347{bottom:381.440000pt;}
.y4d_c01347{bottom:382.720000pt;}
.y50_c01347{bottom:383.360000pt;}
.y4f_c01347{bottom:384.000000pt;}
.y51_c01347{bottom:384.640000pt;}
.y52_c01347{bottom:385.920000pt;}
.y47_c01347{bottom:419.200000pt;}
.y48_c01347{bottom:420.480000pt;}
.y46_c01347{bottom:421.760000pt;}
.y49_c01347{bottom:422.400000pt;}
.y4c_c01347{bottom:423.040000pt;}
.y4b_c01347{bottom:423.680000pt;}
.y4a_c01347{bottom:424.320000pt;}
.y41_c01347{bottom:458.240000pt;}
.y44_c01347{bottom:458.880000pt;}
.y40_c01347{bottom:460.160000pt;}
.y45_c01347{bottom:460.800000pt;}
.y43_c01347{bottom:461.440000pt;}
.y42_c01347{bottom:462.080000pt;}
.y3b_c01347{bottom:496.640000pt;}
.y3f_c01347{bottom:497.280000pt;}
.y3a_c01347{bottom:498.560000pt;}
.y3c_c01347{bottom:499.200000pt;}
.y3d_c01347{bottom:499.840000pt;}
.y3e_c01347{bottom:500.480000pt;}
.y36_c01347{bottom:535.040000pt;}
.y39_c01347{bottom:536.320000pt;}
.y35_c01347{bottom:536.960000pt;}
.y38_c01347{bottom:538.240000pt;}
.y37_c01347{bottom:538.880000pt;}
.y33_c01347{bottom:572.800000pt;}
.y31_c01347{bottom:573.440000pt;}
.y34_c01347{bottom:574.080000pt;}
.y30_c01347{bottom:574.720000pt;}
.y32_c01347{bottom:576.640000pt;}
.y2b_c01347{bottom:611.840000pt;}
.y2e_c01347{bottom:612.480000pt;}
.y2d_c01347{bottom:613.120000pt;}
.y2a_c01347{bottom:613.760000pt;}
.y2c_c01347{bottom:614.400000pt;}
.y2f_c01347{bottom:615.040000pt;}
.y27_c01347{bottom:650.240000pt;}
.y28_c01347{bottom:650.880000pt;}
.y26_c01347{bottom:651.520000pt;}
.y29_c01347{bottom:652.160000pt;}
.y23_c01347{bottom:688.000000pt;}
.y22_c01347{bottom:688.640000pt;}
.y25_c01347{bottom:689.920000pt;}
.y21_c01347{bottom:691.200000pt;}
.y24_c01347{bottom:691.840000pt;}
.y1f_c01347{bottom:726.400000pt;}
.y1c_c01347{bottom:727.040000pt;}
.y1e_c01347{bottom:727.680000pt;}
.y20_c01347{bottom:728.960000pt;}
.y1b_c01347{bottom:729.600000pt;}
.y1d_c01347{bottom:730.240000pt;}
.y18_c01347{bottom:764.800000pt;}
.y19_c01347{bottom:765.440000pt;}
.y15_c01347{bottom:766.080000pt;}
.y1a_c01347{bottom:767.360000pt;}
.y14_c01347{bottom:768.000000pt;}
.y17_c01347{bottom:768.640000pt;}
.y16_c01347{bottom:769.280000pt;}
.y12_c01347{bottom:803.840000pt;}
.y11_c01347{bottom:804.480000pt;}
.y13_c01347{bottom:805.760000pt;}
.y10_c01347{bottom:806.400000pt;}
.ye_c01347{bottom:841.600000pt;}
.yd_c01347{bottom:842.240000pt;}
.yf_c01347{bottom:842.880000pt;}
.yc_c01347{bottom:844.160000pt;}
.ya_c01347{bottom:870.400000pt;}
.y9_c01347{bottom:879.360000pt;}
.yb_c01347{bottom:880.640000pt;}
.y7_c01347{bottom:881.280000pt;}
.y8_c01347{bottom:882.560000pt;}
.y6_c01347{bottom:883.200000pt;}
.y3_c01347{bottom:919.680000pt;}
.y2_c01347{bottom:920.320000pt;}
.y5_c01347{bottom:921.600000pt;}
.y4_c01347{bottom:922.880000pt;}
.y1_c01347{bottom:963.200000pt;}
.h12_c01347{height:13.822500pt;}
.h11_c01347{height:23.037500pt;}
.hc_c01347{height:32.252500pt;}
.hd_c01347{height:34.556250pt;}
.he_c01347{height:39.163750pt;}
.h8_c01347{height:41.467500pt;}
.h5_c01347{height:43.771250pt;}
.h7_c01347{height:46.075000pt;}
.h9_c01347{height:48.378750pt;}
.h10_c01347{height:48.891250pt;}
.hb_c01347{height:50.682500pt;}
.h3_c01347{height:52.986250pt;}
.hf_c01347{height:55.290000pt;}
.h6_c01347{height:57.593750pt;}
.h2_c01347{height:59.897500pt;}
.h4_c01347{height:62.201250pt;}
.ha_c01347{height:94.453750pt;}
.h1_c01347{height:1019.333333pt;}
.h0_c01347{height:1019.520000pt;}
.w1_c01347{width:682.666667pt;}
.w0_c01347{width:682.880000pt;}
.x0_c01347{left:0.000000pt;}
.x2_c01347{left:43.520000pt;}
.x31_c01347{left:44.800000pt;}
.x39_c01347{left:46.080000pt;}
.x3d_c01347{left:71.040000pt;}
.x3e_c01347{left:80.000000pt;}
.x3b_c01347{left:90.240000pt;}
.x3_c01347{left:97.920000pt;}
.x36_c01347{left:145.280000pt;}
.x2e_c01347{left:174.720000pt;}
.xa_c01347{left:176.640000pt;}
.x27_c01347{left:186.240000pt;}
.x13_c01347{left:195.840000pt;}
.x37_c01347{left:203.520000pt;}
.x10_c01347{left:205.440000pt;}
.x4_c01347{left:215.040000pt;}
.x33_c01347{left:222.720000pt;}
.x17_c01347{left:224.000000pt;}
.x25_c01347{left:232.320000pt;}
.x28_c01347{left:234.240000pt;}
.x1f_c01347{left:241.920000pt;}
.x14_c01347{left:243.840000pt;}
.x22_c01347{left:252.160000pt;}
.x5_c01347{left:262.400000pt;}
.x18_c01347{left:270.720000pt;}
.x26_c01347{left:272.640000pt;}
.x15_c01347{left:280.960000pt;}
.x20_c01347{left:282.240000pt;}
.x2f_c01347{left:291.200000pt;}
.xb_c01347{left:301.440000pt;}
.x19_c01347{left:309.760000pt;}
.x32_c01347{left:328.960000pt;}
.x30_c01347{left:330.240000pt;}
.x34_c01347{left:339.200000pt;}
.x23_c01347{left:376.960000pt;}
.x1a_c01347{left:386.560000pt;}
.x3a_c01347{left:414.720000pt;}
.xc_c01347{left:424.960000pt;}
.x1b_c01347{left:434.560000pt;}
.x1d_c01347{left:462.720000pt;}
.x3c_c01347{left:472.320000pt;}
.x38_c01347{left:509.440000pt;}
.xe_c01347{left:510.720000pt;}
.x6_c01347{left:512.000000pt;}
.xd_c01347{left:515.200000pt;}
.x3f_c01347{left:528.000000pt;}
.xf_c01347{left:529.920000pt;}
.x24_c01347{left:558.080000pt;}
.x11_c01347{left:559.360000pt;}
.x7_c01347{left:560.640000pt;}
.x29_c01347{left:568.320000pt;}
.x40_c01347{left:579.840000pt;}
.x1c_c01347{left:587.520000pt;}
.x8_c01347{left:589.440000pt;}
.x2a_c01347{left:597.120000pt;}
.x1_c01347{left:599.680000pt;}
.x16_c01347{left:617.600000pt;}
.x35_c01347{left:624.000000pt;}
.x1e_c01347{left:625.280000pt;}
.x9_c01347{left:626.560000pt;}
.x2b_c01347{left:634.880000pt;}
.x21_c01347{left:643.840000pt;}
.x12_c01347{left:645.120000pt;}
.x2c_c01347{left:652.800000pt;}
.x2d_c01347{left:663.040000pt;}
}





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

.ir_c01348:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01348{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01348;src:url('chunks/assets/font_cf7262612ac88808772e2948.woff2')format("woff");}.ff1_c01348{font-family:ff1_c01348;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4f_c01348{transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);}
.m4b_c01348{transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);}
.m4e_c01348{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.mb_c01348{transform:matrix(0.216550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216550,0.000000,0.000000,0.250000,0,0);}
.m4d_c01348{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_c01348{transform:matrix(0.226875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226875,0.000000,0.000000,0.250000,0,0);}
.m1d_c01348{transform:matrix(0.235650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235650,0.000000,0.000000,0.250000,0,0);}
.m3_c01348{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m6_c01348{transform:matrix(0.236550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236550,0.000000,0.000000,0.250000,0,0);}
.m37_c01348{transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);}
.m26_c01348{transform:matrix(0.239400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239400,0.000000,0.000000,0.250000,0,0);}
.m33_c01348{transform:matrix(0.240725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240725,0.000000,0.000000,0.250000,0,0);}
.m42_c01348{transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);}
.m46_c01348{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m25_c01348{transform:matrix(0.244050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244050,0.000000,0.000000,0.250000,0,0);}
.m2b_c01348{transform:matrix(0.244925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244925,0.000000,0.000000,0.250000,0,0);}
.m32_c01348{transform:matrix(0.247275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247275,0.000000,0.000000,0.250000,0,0);}
.m45_c01348{transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);}
.m21_c01348{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m31_c01348{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);}
.m38_c01348{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m4_c01348{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);}
.m3d_c01348{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m49_c01348{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.me_c01348{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);}
.m34_c01348{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_c01348{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m14_c01348{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m1_c01348{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);}
.m2f_c01348{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);}
.m3c_c01348{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01348{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);}
.m1e_c01348{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_c01348{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m36_c01348{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01348{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m29_c01348{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m44_c01348{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01348{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01348{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01348{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mc_c01348{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m28_c01348{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m0_c01348{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m40_c01348{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01348{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m5_c01348{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);}
.m47_c01348{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m10_c01348{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);}
.m41_c01348{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);}
.m27_c01348{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);}
.m52_c01348{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);}
.m43_c01348{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);}
.m24_c01348{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);}
.m3e_c01348{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01348{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);}
.m2c_c01348{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m2_c01348{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.md_c01348{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m9_c01348{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m12_c01348{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m15_c01348{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m18_c01348{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);}
.m22_c01348{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);}
.m1c_c01348{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01348{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m50_c01348{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);}
.m39_c01348{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.ma_c01348{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m7_c01348{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m51_c01348{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m30_c01348{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);}
.m17_c01348{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m35_c01348{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.mf_c01348{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m13_c01348{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m16_c01348{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);}
.m2a_c01348{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);}
.m20_c01348{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);}
.m8_c01348{transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);}
.m48_c01348{transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);}
.m4a_c01348{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01348{transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);}
.v2_c01348{vertical-align:-5.760000px;}
.v1_c01348{vertical-align:-2.880000px;}
.v0_c01348{vertical-align:0.000000px;}
.ls2_c01348{letter-spacing:0.000000px;}
.ls1_c01348{letter-spacing:80.731680px;}
.ls0_c01348{letter-spacing:87.974400px;}
.sc__c01348{text-shadow:none;}
.sc0_c01348{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01348{-webkit-text-stroke:0px transparent;}
.sc0_c01348{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01348{word-spacing:0.000000px;}
.fc0_c01348{color:transparent;}
.fsf_c01348{font-size:17.280000px;}
.fse_c01348{font-size:25.920000px;}
.fsd_c01348{font-size:31.680000px;}
.fsb_c01348{font-size:37.440000px;}
.fsc_c01348{font-size:40.320000px;}
.fs11_c01348{font-size:46.080000px;}
.fs4_c01348{font-size:48.960000px;}
.fs5_c01348{font-size:51.840000px;}
.fs6_c01348{font-size:54.720000px;}
.fs7_c01348{font-size:57.600000px;}
.fs2_c01348{font-size:60.480000px;}
.fsa_c01348{font-size:63.360000px;}
.fs0_c01348{font-size:66.240000px;}
.fs9_c01348{font-size:69.120000px;}
.fs10_c01348{font-size:72.000000px;}
.fs3_c01348{font-size:74.880000px;}
.fs1_c01348{font-size:77.760000px;}
.fs8_c01348{font-size:103.680000px;}
.y0_c01348{bottom:0.000000px;}
.y49_c01348{bottom:74.160000px;}
.y48_c01348{bottom:78.480000px;}
.y68_c01348{bottom:79.200000px;}
.y67_c01348{bottom:79.920000px;}
.y47_c01348{bottom:117.360000px;}
.y46_c01348{bottom:121.680000px;}
.y66_c01348{bottom:122.400000px;}
.y64_c01348{bottom:123.120000px;}
.y65_c01348{bottom:125.280000px;}
.y42_c01348{bottom:215.280000px;}
.y43_c01348{bottom:216.000000px;}
.y45_c01348{bottom:216.720000px;}
.y41_c01348{bottom:217.440000px;}
.y44_c01348{bottom:218.880000px;}
.y63_c01348{bottom:219.600000px;}
.y61_c01348{bottom:221.760000px;}
.y62_c01348{bottom:223.200000px;}
.y3d_c01348{bottom:259.200000px;}
.y40_c01348{bottom:260.640000px;}
.y3e_c01348{bottom:261.360000px;}
.y3c_c01348{bottom:262.080000px;}
.y3f_c01348{bottom:263.520000px;}
.y5f_c01348{bottom:264.240000px;}
.y60_c01348{bottom:265.680000px;}
.y3a_c01348{bottom:301.680000px;}
.y3b_c01348{bottom:303.120000px;}
.y39_c01348{bottom:306.000000px;}
.y5c_c01348{bottom:306.720000px;}
.y5e_c01348{bottom:307.440000px;}
.y5d_c01348{bottom:309.600000px;}
.y37_c01348{bottom:345.600000px;}
.y35_c01348{bottom:348.480000px;}
.y34_c01348{bottom:349.200000px;}
.y38_c01348{bottom:349.920000px;}
.y5b_c01348{bottom:351.360000px;}
.y36_c01348{bottom:352.800000px;}
.y32_c01348{bottom:388.800000px;}
.y33_c01348{bottom:389.520000px;}
.y31_c01348{bottom:392.400000px;}
.y30_c01348{bottom:394.560000px;}
.y5a_c01348{bottom:395.280000px;}
.y2f_c01348{bottom:432.000000px;}
.y2e_c01348{bottom:434.160000px;}
.y59_c01348{bottom:435.600000px;}
.y58_c01348{bottom:437.760000px;}
.y2d_c01348{bottom:475.200000px;}
.y2c_c01348{bottom:476.640000px;}
.y2b_c01348{bottom:478.800000px;}
.y57_c01348{bottom:480.240000px;}
.y2a_c01348{bottom:518.400000px;}
.y29_c01348{bottom:520.560000px;}
.y55_c01348{bottom:521.280000px;}
.y56_c01348{bottom:522.000000px;}
.y28_c01348{bottom:561.600000px;}
.y27_c01348{bottom:564.480000px;}
.y54_c01348{bottom:565.920000px;}
.y26_c01348{bottom:605.520000px;}
.y24_c01348{bottom:606.960000px;}
.y25_c01348{bottom:609.120000px;}
.y53_c01348{bottom:609.840000px;}
.y23_c01348{bottom:648.720000px;}
.y20_c01348{bottom:649.440000px;}
.y52_c01348{bottom:650.880000px;}
.y21_c01348{bottom:651.600000px;}
.y22_c01348{bottom:652.320000px;}
.y1f_c01348{bottom:691.200000px;}
.y1e_c01348{bottom:693.360000px;}
.y51_c01348{bottom:694.800000px;}
.y1d_c01348{bottom:735.120000px;}
.y1b_c01348{bottom:736.560000px;}
.y1c_c01348{bottom:737.280000px;}
.y50_c01348{bottom:739.440000px;}
.y19_c01348{bottom:779.040000px;}
.y1a_c01348{bottom:779.760000px;}
.y18_c01348{bottom:780.480000px;}
.y4f_c01348{bottom:781.920000px;}
.y16_c01348{bottom:822.240000px;}
.y4e_c01348{bottom:822.960000px;}
.y14_c01348{bottom:823.680000px;}
.y4d_c01348{bottom:824.400000px;}
.y17_c01348{bottom:825.120000px;}
.y15_c01348{bottom:825.840000px;}
.y13_c01348{bottom:865.440000px;}
.y12_c01348{bottom:866.160000px;}
.y4c_c01348{bottom:866.880000px;}
.ye_c01348{bottom:907.200000px;}
.y10_c01348{bottom:909.360000px;}
.y11_c01348{bottom:910.080000px;}
.yd_c01348{bottom:910.800000px;}
.yf_c01348{bottom:911.520000px;}
.yb_c01348{bottom:943.200000px;}
.y7_c01348{bottom:950.400000px;}
.y6_c01348{bottom:952.560000px;}
.ya_c01348{bottom:953.280000px;}
.y9_c01348{bottom:954.000000px;}
.y8_c01348{bottom:954.720000px;}
.yc_c01348{bottom:955.440000px;}
.y4_c01348{bottom:993.600000px;}
.y5_c01348{bottom:994.320000px;}
.y3_c01348{bottom:996.480000px;}
.y2_c01348{bottom:1036.800000px;}
.y4b_c01348{bottom:1037.520000px;}
.y1_c01348{bottom:1038.240000px;}
.y4a_c01348{bottom:1089.360000px;}
.h11_c01348{height:15.550313px;}
.h10_c01348{height:23.325469px;}
.hf_c01348{height:28.508906px;}
.hd_c01348{height:33.692344px;}
.he_c01348{height:36.284062px;}
.h13_c01348{height:41.467500px;}
.h6_c01348{height:44.059219px;}
.h7_c01348{height:46.650937px;}
.h8_c01348{height:49.242656px;}
.h9_c01348{height:51.834375px;}
.h4_c01348{height:54.426094px;}
.hc_c01348{height:57.017812px;}
.h2_c01348{height:59.609531px;}
.hb_c01348{height:62.201250px;}
.h12_c01348{height:64.792969px;}
.h5_c01348{height:67.384687px;}
.h3_c01348{height:69.976406px;}
.ha_c01348{height:93.301875px;}
.h1_c01348{height:1144.500000px;}
.h0_c01348{height:1144.800000px;}
.w0_c01348{width:763.920000px;}
.w1_c01348{width:764.250000px;}
.x0_c01348{left:0.000000px;}
.x1_c01348{left:44.640000px;}
.xd_c01348{left:46.080000px;}
.x14_c01348{left:47.520000px;}
.x1d_c01348{left:48.960000px;}
.x23_c01348{left:50.400000px;}
.x17_c01348{left:79.200000px;}
.x1a_c01348{left:87.840000px;}
.x2_c01348{left:107.280000px;}
.xc_c01348{left:109.440000px;}
.x24_c01348{left:110.880000px;}
.x11_c01348{left:183.600000px;}
.x15_c01348{left:185.760000px;}
.x4_c01348{left:194.400000px;}
.x3_c01348{left:195.840000px;}
.x16_c01348{left:206.640000px;}
.x1e_c01348{left:208.080000px;}
.x12_c01348{left:228.240000px;}
.x5_c01348{left:247.680000px;}
.xe_c01348{left:249.120000px;}
.x18_c01348{left:259.920000px;}
.x22_c01348{left:261.360000px;}
.x13_c01348{left:271.440000px;}
.x6_c01348{left:292.320000px;}
.xa_c01348{left:302.400000px;}
.x19_c01348{left:304.560000px;}
.x1b_c01348{left:314.640000px;}
.x1f_c01348{left:326.880000px;}
.xb_c01348{left:356.400000px;}
.x1c_c01348{left:358.560000px;}
.x7_c01348{left:378.720000px;}
.xf_c01348{left:412.560000px;}
.x20_c01348{left:423.360000px;}
.x8_c01348{left:432.000000px;}
.x10_c01348{left:453.600000px;}
.x21_c01348{left:465.840000px;}
.x26_c01348{left:571.680000px;}
.x9_c01348{left:573.120000px;}
.x27_c01348{left:593.280000px;}
.x2e_c01348{left:594.720000px;}
.x32_c01348{left:606.960000px;}
.x2a_c01348{left:627.120000px;}
.x30_c01348{left:628.560000px;}
.x2b_c01348{left:659.520000px;}
.x33_c01348{left:660.960000px;}
.x2f_c01348{left:669.600000px;}
.x31_c01348{left:671.040000px;}
.x25_c01348{left:673.920000px;}
.x2d_c01348{left:691.200000px;}
.x28_c01348{left:702.000000px;}
.x29_c01348{left:703.440000px;}
.x34_c01348{left:704.880000px;}
.x2c_c01348{left:722.880000px;}
@media print{
.v2_c01348{vertical-align:-5.120000pt;}
.v1_c01348{vertical-align:-2.560000pt;}
.v0_c01348{vertical-align:0.000000pt;}
.ls2_c01348{letter-spacing:0.000000pt;}
.ls1_c01348{letter-spacing:71.761493pt;}
.ls0_c01348{letter-spacing:78.199467pt;}
.ws0_c01348{word-spacing:0.000000pt;}
.fsf_c01348{font-size:15.360000pt;}
.fse_c01348{font-size:23.040000pt;}
.fsd_c01348{font-size:28.160000pt;}
.fsb_c01348{font-size:33.280000pt;}
.fsc_c01348{font-size:35.840000pt;}
.fs11_c01348{font-size:40.960000pt;}
.fs4_c01348{font-size:43.520000pt;}
.fs5_c01348{font-size:46.080000pt;}
.fs6_c01348{font-size:48.640000pt;}
.fs7_c01348{font-size:51.200000pt;}
.fs2_c01348{font-size:53.760000pt;}
.fsa_c01348{font-size:56.320000pt;}
.fs0_c01348{font-size:58.880000pt;}
.fs9_c01348{font-size:61.440000pt;}
.fs10_c01348{font-size:64.000000pt;}
.fs3_c01348{font-size:66.560000pt;}
.fs1_c01348{font-size:69.120000pt;}
.fs8_c01348{font-size:92.160000pt;}
.y0_c01348{bottom:0.000000pt;}
.y49_c01348{bottom:65.920000pt;}
.y48_c01348{bottom:69.760000pt;}
.y68_c01348{bottom:70.400000pt;}
.y67_c01348{bottom:71.040000pt;}
.y47_c01348{bottom:104.320000pt;}
.y46_c01348{bottom:108.160000pt;}
.y66_c01348{bottom:108.800000pt;}
.y64_c01348{bottom:109.440000pt;}
.y65_c01348{bottom:111.360000pt;}
.y42_c01348{bottom:191.360000pt;}
.y43_c01348{bottom:192.000000pt;}
.y45_c01348{bottom:192.640000pt;}
.y41_c01348{bottom:193.280000pt;}
.y44_c01348{bottom:194.560000pt;}
.y63_c01348{bottom:195.200000pt;}
.y61_c01348{bottom:197.120000pt;}
.y62_c01348{bottom:198.400000pt;}
.y3d_c01348{bottom:230.400000pt;}
.y40_c01348{bottom:231.680000pt;}
.y3e_c01348{bottom:232.320000pt;}
.y3c_c01348{bottom:232.960000pt;}
.y3f_c01348{bottom:234.240000pt;}
.y5f_c01348{bottom:234.880000pt;}
.y60_c01348{bottom:236.160000pt;}
.y3a_c01348{bottom:268.160000pt;}
.y3b_c01348{bottom:269.440000pt;}
.y39_c01348{bottom:272.000000pt;}
.y5c_c01348{bottom:272.640000pt;}
.y5e_c01348{bottom:273.280000pt;}
.y5d_c01348{bottom:275.200000pt;}
.y37_c01348{bottom:307.200000pt;}
.y35_c01348{bottom:309.760000pt;}
.y34_c01348{bottom:310.400000pt;}
.y38_c01348{bottom:311.040000pt;}
.y5b_c01348{bottom:312.320000pt;}
.y36_c01348{bottom:313.600000pt;}
.y32_c01348{bottom:345.600000pt;}
.y33_c01348{bottom:346.240000pt;}
.y31_c01348{bottom:348.800000pt;}
.y30_c01348{bottom:350.720000pt;}
.y5a_c01348{bottom:351.360000pt;}
.y2f_c01348{bottom:384.000000pt;}
.y2e_c01348{bottom:385.920000pt;}
.y59_c01348{bottom:387.200000pt;}
.y58_c01348{bottom:389.120000pt;}
.y2d_c01348{bottom:422.400000pt;}
.y2c_c01348{bottom:423.680000pt;}
.y2b_c01348{bottom:425.600000pt;}
.y57_c01348{bottom:426.880000pt;}
.y2a_c01348{bottom:460.800000pt;}
.y29_c01348{bottom:462.720000pt;}
.y55_c01348{bottom:463.360000pt;}
.y56_c01348{bottom:464.000000pt;}
.y28_c01348{bottom:499.200000pt;}
.y27_c01348{bottom:501.760000pt;}
.y54_c01348{bottom:503.040000pt;}
.y26_c01348{bottom:538.240000pt;}
.y24_c01348{bottom:539.520000pt;}
.y25_c01348{bottom:541.440000pt;}
.y53_c01348{bottom:542.080000pt;}
.y23_c01348{bottom:576.640000pt;}
.y20_c01348{bottom:577.280000pt;}
.y52_c01348{bottom:578.560000pt;}
.y21_c01348{bottom:579.200000pt;}
.y22_c01348{bottom:579.840000pt;}
.y1f_c01348{bottom:614.400000pt;}
.y1e_c01348{bottom:616.320000pt;}
.y51_c01348{bottom:617.600000pt;}
.y1d_c01348{bottom:653.440000pt;}
.y1b_c01348{bottom:654.720000pt;}
.y1c_c01348{bottom:655.360000pt;}
.y50_c01348{bottom:657.280000pt;}
.y19_c01348{bottom:692.480000pt;}
.y1a_c01348{bottom:693.120000pt;}
.y18_c01348{bottom:693.760000pt;}
.y4f_c01348{bottom:695.040000pt;}
.y16_c01348{bottom:730.880000pt;}
.y4e_c01348{bottom:731.520000pt;}
.y14_c01348{bottom:732.160000pt;}
.y4d_c01348{bottom:732.800000pt;}
.y17_c01348{bottom:733.440000pt;}
.y15_c01348{bottom:734.080000pt;}
.y13_c01348{bottom:769.280000pt;}
.y12_c01348{bottom:769.920000pt;}
.y4c_c01348{bottom:770.560000pt;}
.ye_c01348{bottom:806.400000pt;}
.y10_c01348{bottom:808.320000pt;}
.y11_c01348{bottom:808.960000pt;}
.yd_c01348{bottom:809.600000pt;}
.yf_c01348{bottom:810.240000pt;}
.yb_c01348{bottom:838.400000pt;}
.y7_c01348{bottom:844.800000pt;}
.y6_c01348{bottom:846.720000pt;}
.ya_c01348{bottom:847.360000pt;}
.y9_c01348{bottom:848.000000pt;}
.y8_c01348{bottom:848.640000pt;}
.yc_c01348{bottom:849.280000pt;}
.y4_c01348{bottom:883.200000pt;}
.y5_c01348{bottom:883.840000pt;}
.y3_c01348{bottom:885.760000pt;}
.y2_c01348{bottom:921.600000pt;}
.y4b_c01348{bottom:922.240000pt;}
.y1_c01348{bottom:922.880000pt;}
.y4a_c01348{bottom:968.320000pt;}
.h11_c01348{height:13.822500pt;}
.h10_c01348{height:20.733750pt;}
.hf_c01348{height:25.341250pt;}
.hd_c01348{height:29.948750pt;}
.he_c01348{height:32.252500pt;}
.h13_c01348{height:36.860000pt;}
.h6_c01348{height:39.163750pt;}
.h7_c01348{height:41.467500pt;}
.h8_c01348{height:43.771250pt;}
.h9_c01348{height:46.075000pt;}
.h4_c01348{height:48.378750pt;}
.hc_c01348{height:50.682500pt;}
.h2_c01348{height:52.986250pt;}
.hb_c01348{height:55.290000pt;}
.h12_c01348{height:57.593750pt;}
.h5_c01348{height:59.897500pt;}
.h3_c01348{height:62.201250pt;}
.ha_c01348{height:82.935000pt;}
.h1_c01348{height:1017.333333pt;}
.h0_c01348{height:1017.600000pt;}
.w0_c01348{width:679.040000pt;}
.w1_c01348{width:679.333333pt;}
.x0_c01348{left:0.000000pt;}
.x1_c01348{left:39.680000pt;}
.xd_c01348{left:40.960000pt;}
.x14_c01348{left:42.240000pt;}
.x1d_c01348{left:43.520000pt;}
.x23_c01348{left:44.800000pt;}
.x17_c01348{left:70.400000pt;}
.x1a_c01348{left:78.080000pt;}
.x2_c01348{left:95.360000pt;}
.xc_c01348{left:97.280000pt;}
.x24_c01348{left:98.560000pt;}
.x11_c01348{left:163.200000pt;}
.x15_c01348{left:165.120000pt;}
.x4_c01348{left:172.800000pt;}
.x3_c01348{left:174.080000pt;}
.x16_c01348{left:183.680000pt;}
.x1e_c01348{left:184.960000pt;}
.x12_c01348{left:202.880000pt;}
.x5_c01348{left:220.160000pt;}
.xe_c01348{left:221.440000pt;}
.x18_c01348{left:231.040000pt;}
.x22_c01348{left:232.320000pt;}
.x13_c01348{left:241.280000pt;}
.x6_c01348{left:259.840000pt;}
.xa_c01348{left:268.800000pt;}
.x19_c01348{left:270.720000pt;}
.x1b_c01348{left:279.680000pt;}
.x1f_c01348{left:290.560000pt;}
.xb_c01348{left:316.800000pt;}
.x1c_c01348{left:318.720000pt;}
.x7_c01348{left:336.640000pt;}
.xf_c01348{left:366.720000pt;}
.x20_c01348{left:376.320000pt;}
.x8_c01348{left:384.000000pt;}
.x10_c01348{left:403.200000pt;}
.x21_c01348{left:414.080000pt;}
.x26_c01348{left:508.160000pt;}
.x9_c01348{left:509.440000pt;}
.x27_c01348{left:527.360000pt;}
.x2e_c01348{left:528.640000pt;}
.x32_c01348{left:539.520000pt;}
.x2a_c01348{left:557.440000pt;}
.x30_c01348{left:558.720000pt;}
.x2b_c01348{left:586.240000pt;}
.x33_c01348{left:587.520000pt;}
.x2f_c01348{left:595.200000pt;}
.x31_c01348{left:596.480000pt;}
.x25_c01348{left:599.040000pt;}
.x2d_c01348{left:614.400000pt;}
.x28_c01348{left:624.000000pt;}
.x29_c01348{left:625.280000pt;}
.x34_c01348{left:626.560000pt;}
.x2c_c01348{left:642.560000pt;}
}





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

.ir_c01349:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01349{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01349;src:url('chunks/assets/font_31d95f1e124027dc32a41750.woff2')format("woff");}.ff1_c01349{font-family:ff1_c01349;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m45_c01349{transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);}
.m38_c01349{transform:matrix(0.220175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220175,0.000000,0.000000,0.250000,0,0);}
.m1_c01349{transform:matrix(0.221425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221425,0.000000,0.000000,0.250000,0,0);}
.m16_c01349{transform:matrix(0.229475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229475,0.000000,0.000000,0.250000,0,0);}
.m25_c01349{transform:matrix(0.232950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232950,0.000000,0.000000,0.250000,0,0);}
.m36_c01349{transform:matrix(0.233725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233725,0.000000,0.000000,0.250000,0,0);}
.m34_c01349{transform:matrix(0.246300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246300,0.000000,0.000000,0.250000,0,0);}
.m47_c01349{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01349{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);}
.m4f_c01349{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_c01349{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);}
.m21_c01349{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);}
.m4b_c01349{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);}
.m29_c01349{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m12_c01349{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m19_c01349{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m15_c01349{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m4_c01349{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.mc_c01349{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m37_c01349{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m10_c01349{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);}
.m2b_c01349{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m5_c01349{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mb_c01349{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.md_c01349{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m44_c01349{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m23_c01349{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m42_c01349{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m20_c01349{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m11_c01349{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m6_c01349{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01349{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m7_c01349{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01349{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01349{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01349{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01349{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);}
.m41_c01349{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);}
.m3b_c01349{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);}
.m30_c01349{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01349{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.ma_c01349{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m32_c01349{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_c01349{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);}
.m4c_c01349{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.me_c01349{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m18_c01349{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m24_c01349{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);}
.m35_c01349{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);}
.m49_c01349{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);}
.m9_c01349{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m14_c01349{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);}
.m0_c01349{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);}
.m26_c01349{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);}
.m39_c01349{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);}
.m3d_c01349{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01349{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);}
.m1a_c01349{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.mf_c01349{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01349{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m13_c01349{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m3_c01349{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01349{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m31_c01349{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m4d_c01349{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);}
.m2a_c01349{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m2_c01349{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01349{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01349{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m22_c01349{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_c01349{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m46_c01349{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m33_c01349{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);}
.m1b_c01349{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01349{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01349{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m4e_c01349{transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);}
.m40_c01349{transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);}
.m48_c01349{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m43_c01349{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.v2_c01349{vertical-align:-2.880000px;}
.v0_c01349{vertical-align:0.000000px;}
.v1_c01349{vertical-align:14.400000px;}
.ls0_c01349{letter-spacing:0.000000px;}
.sc__c01349{text-shadow:none;}
.sc0_c01349{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01349{-webkit-text-stroke:0px transparent;}
.sc0_c01349{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01349{word-spacing:-3.508800px;}
.ws2_c01349{word-spacing:0.000000px;}
.ws1_c01349{word-spacing:4.705200px;}
.fc0_c01349{color:transparent;}
.fsa_c01349{font-size:34.560000px;}
.fsb_c01349{font-size:37.440000px;}
.fse_c01349{font-size:40.320000px;}
.fs2_c01349{font-size:48.960000px;}
.fs3_c01349{font-size:51.840000px;}
.fs6_c01349{font-size:54.720000px;}
.fs0_c01349{font-size:57.600000px;}
.fs7_c01349{font-size:60.480000px;}
.fsc_c01349{font-size:63.360000px;}
.fsd_c01349{font-size:66.240000px;}
.fs10_c01349{font-size:69.120000px;}
.fs4_c01349{font-size:72.000000px;}
.fs9_c01349{font-size:74.880000px;}
.fs5_c01349{font-size:77.760000px;}
.fs8_c01349{font-size:80.640000px;}
.fs1_c01349{font-size:83.520000px;}
.fsf_c01349{font-size:103.680000px;}
.y0_c01349{bottom:0.000000px;}
.y52_c01349{bottom:33.120000px;}
.y51_c01349{bottom:33.840000px;}
.y50_c01349{bottom:35.280000px;}
.y81_c01349{bottom:36.720000px;}
.y83_c01349{bottom:38.880000px;}
.y82_c01349{bottom:39.600000px;}
.y4e_c01349{bottom:77.760000px;}
.y4f_c01349{bottom:80.640000px;}
.y4d_c01349{bottom:82.080000px;}
.y7f_c01349{bottom:82.800000px;}
.y80_c01349{bottom:84.240000px;}
.y4a_c01349{bottom:121.680000px;}
.y48_c01349{bottom:122.400000px;}
.y49_c01349{bottom:123.840000px;}
.y47_c01349{bottom:125.280000px;}
.y4b_c01349{bottom:126.000000px;}
.y4c_c01349{bottom:126.720000px;}
.y46_c01349{bottom:157.680000px;}
.y44_c01349{bottom:163.440000px;}
.y45_c01349{bottom:164.880000px;}
.y43_c01349{bottom:168.480000px;}
.y7d_c01349{bottom:169.920000px;}
.y7e_c01349{bottom:170.640000px;}
.y3f_c01349{bottom:207.360000px;}
.y41_c01349{bottom:208.080000px;}
.y7b_c01349{bottom:210.240000px;}
.y40_c01349{bottom:210.960000px;}
.y3e_c01349{bottom:211.680000px;}
.y42_c01349{bottom:212.400000px;}
.y7c_c01349{bottom:213.840000px;}
.y3a_c01349{bottom:250.560000px;}
.y3c_c01349{bottom:251.280000px;}
.y39_c01349{bottom:254.160000px;}
.y3b_c01349{bottom:254.880000px;}
.y3d_c01349{bottom:255.600000px;}
.y7a_c01349{bottom:256.320000px;}
.y37_c01349{bottom:293.760000px;}
.y77_c01349{bottom:296.640000px;}
.y36_c01349{bottom:297.360000px;}
.y79_c01349{bottom:298.080000px;}
.y38_c01349{bottom:298.800000px;}
.y78_c01349{bottom:299.520000px;}
.y33_c01349{bottom:337.680000px;}
.y35_c01349{bottom:338.400000px;}
.y75_c01349{bottom:339.120000px;}
.y32_c01349{bottom:339.840000px;}
.y74_c01349{bottom:340.560000px;}
.y34_c01349{bottom:341.280000px;}
.y76_c01349{bottom:342.720000px;}
.y31_c01349{bottom:380.160000px;}
.y72_c01349{bottom:383.040000px;}
.y30_c01349{bottom:384.480000px;}
.y73_c01349{bottom:385.920000px;}
.y2e_c01349{bottom:424.080000px;}
.y70_c01349{bottom:426.960000px;}
.y2d_c01349{bottom:427.680000px;}
.y2f_c01349{bottom:428.400000px;}
.y71_c01349{bottom:429.120000px;}
.y2a_c01349{bottom:468.000000px;}
.y2c_c01349{bottom:469.440000px;}
.y6f_c01349{bottom:470.160000px;}
.y29_c01349{bottom:470.880000px;}
.y2b_c01349{bottom:471.600000px;}
.y26_c01349{bottom:511.200000px;}
.y6d_c01349{bottom:511.920000px;}
.y28_c01349{bottom:512.640000px;}
.y6e_c01349{bottom:513.360000px;}
.y25_c01349{bottom:514.080000px;}
.y27_c01349{bottom:514.800000px;}
.y24_c01349{bottom:554.400000px;}
.y22_c01349{bottom:555.120000px;}
.y6b_c01349{bottom:556.560000px;}
.y6c_c01349{bottom:557.280000px;}
.y23_c01349{bottom:558.000000px;}
.y6a_c01349{bottom:558.720000px;}
.y21_c01349{bottom:559.440000px;}
.y1d_c01349{bottom:598.320000px;}
.y1e_c01349{bottom:599.040000px;}
.y1c_c01349{bottom:599.760000px;}
.y1b_c01349{bottom:600.480000px;}
.y1f_c01349{bottom:601.200000px;}
.y20_c01349{bottom:602.640000px;}
.y18_c01349{bottom:640.800000px;}
.y68_c01349{bottom:642.240000px;}
.y1a_c01349{bottom:642.960000px;}
.y69_c01349{bottom:643.680000px;}
.y17_c01349{bottom:644.400000px;}
.y19_c01349{bottom:645.840000px;}
.y16_c01349{bottom:683.280000px;}
.y15_c01349{bottom:684.720000px;}
.y66_c01349{bottom:685.440000px;}
.y67_c01349{bottom:686.160000px;}
.y14_c01349{bottom:686.880000px;}
.y12_c01349{bottom:726.480000px;}
.y13_c01349{bottom:727.920000px;}
.y64_c01349{bottom:728.640000px;}
.y65_c01349{bottom:729.360000px;}
.y10_c01349{bottom:730.080000px;}
.y11_c01349{bottom:731.520000px;}
.yf_c01349{bottom:769.680000px;}
.y62_c01349{bottom:771.120000px;}
.y63_c01349{bottom:771.840000px;}
.yd_c01349{bottom:772.560000px;}
.ye_c01349{bottom:775.440000px;}
.y61_c01349{bottom:812.880000px;}
.yc_c01349{bottom:813.600000px;}
.y60_c01349{bottom:815.040000px;}
.yb_c01349{bottom:817.200000px;}
.y5f_c01349{bottom:856.080000px;}
.ya_c01349{bottom:856.800000px;}
.y9_c01349{bottom:859.680000px;}
.y5e_c01349{bottom:899.280000px;}
.y8_c01349{bottom:900.000000px;}
.y6_c01349{bottom:902.880000px;}
.y7_c01349{bottom:904.320000px;}
.y5_c01349{bottom:941.760000px;}
.y4_c01349{bottom:943.200000px;}
.y2_c01349{bottom:943.920000px;}
.y1_c01349{bottom:946.080000px;}
.y3_c01349{bottom:947.520000px;}
.y56_c01349{bottom:986.400000px;}
.y5d_c01349{bottom:987.120000px;}
.y5c_c01349{bottom:987.840000px;}
.y5b_c01349{bottom:988.560000px;}
.y55_c01349{bottom:990.000000px;}
.y5a_c01349{bottom:1028.160000px;}
.y58_c01349{bottom:1029.600000px;}
.y54_c01349{bottom:1030.320000px;}
.y59_c01349{bottom:1031.040000px;}
.y53_c01349{bottom:1032.480000px;}
.y57_c01349{bottom:1090.800000px;}
.hc_c01349{height:31.100625px;}
.hd_c01349{height:33.692344px;}
.h10_c01349{height:36.284062px;}
.h4_c01349{height:44.059219px;}
.h5_c01349{height:46.650937px;}
.h8_c01349{height:49.242656px;}
.h2_c01349{height:51.834375px;}
.h9_c01349{height:54.426094px;}
.he_c01349{height:57.017812px;}
.hf_c01349{height:59.609531px;}
.h13_c01349{height:61.050937px;}
.h12_c01349{height:62.201250px;}
.h6_c01349{height:64.792969px;}
.hb_c01349{height:67.384687px;}
.h7_c01349{height:69.976406px;}
.ha_c01349{height:72.568125px;}
.h3_c01349{height:75.159844px;}
.h11_c01349{height:93.301875px;}
.h1_c01349{height:1151.250000px;}
.h0_c01349{height:1151.280000px;}
.w1_c01349{width:773.250000px;}
.w0_c01349{width:773.280000px;}
.x0_c01349{left:0.000000px;}
.x1_c01349{left:54.720000px;}
.x1d_c01349{left:56.160000px;}
.x1f_c01349{left:115.200000px;}
.x2_c01349{left:116.640000px;}
.x10_c01349{left:192.240000px;}
.xa_c01349{left:193.680000px;}
.x3_c01349{left:203.040000px;}
.x28_c01349{left:205.200000px;}
.x24_c01349{left:213.840000px;}
.x1a_c01349{left:246.240000px;}
.x14_c01349{left:257.040000px;}
.x4_c01349{left:259.200000px;}
.xd_c01349{left:269.280000px;}
.x17_c01349{left:277.920000px;}
.x1c_c01349{left:289.440000px;}
.x20_c01349{left:298.800000px;}
.x5_c01349{left:300.960000px;}
.x15_c01349{left:310.320000px;}
.x18_c01349{left:321.840000px;}
.x11_c01349{left:343.440000px;}
.x16_c01349{left:354.240000px;}
.x26_c01349{left:365.040000px;}
.x19_c01349{left:375.840000px;}
.xf_c01349{left:387.360000px;}
.x12_c01349{left:397.440000px;}
.x27_c01349{left:416.880000px;}
.x1b_c01349{left:418.320000px;}
.x6_c01349{left:430.560000px;}
.x13_c01349{left:439.920000px;}
.x21_c01349{left:449.280000px;}
.xb_c01349{left:451.440000px;}
.xe_c01349{left:462.240000px;}
.x22_c01349{left:493.920000px;}
.xc_c01349{left:505.440000px;}
.x23_c01349{left:568.080000px;}
.x1e_c01349{left:579.600000px;}
.x30_c01349{left:581.040000px;}
.x25_c01349{left:589.680000px;}
.x33_c01349{left:600.480000px;}
.x2c_c01349{left:601.920000px;}
.x37_c01349{left:632.160000px;}
.x31_c01349{left:633.600000px;}
.x7_c01349{left:635.760000px;}
.x35_c01349{left:665.280000px;}
.x2d_c01349{left:666.720000px;}
.x2b_c01349{left:668.160000px;}
.x8_c01349{left:669.600000px;}
.x38_c01349{left:698.400000px;}
.x2e_c01349{left:699.840000px;}
.x29_c01349{left:702.000000px;}
.x34_c01349{left:708.480000px;}
.x32_c01349{left:709.920000px;}
.x9_c01349{left:711.360000px;}
.x36_c01349{left:729.360000px;}
.x2f_c01349{left:730.800000px;}
.x2a_c01349{left:732.240000px;}
@media print{
.v2_c01349{vertical-align:-2.560000pt;}
.v0_c01349{vertical-align:0.000000pt;}
.v1_c01349{vertical-align:12.800000pt;}
.ls0_c01349{letter-spacing:0.000000pt;}
.ws0_c01349{word-spacing:-3.118933pt;}
.ws2_c01349{word-spacing:0.000000pt;}
.ws1_c01349{word-spacing:4.182400pt;}
.fsa_c01349{font-size:30.720000pt;}
.fsb_c01349{font-size:33.280000pt;}
.fse_c01349{font-size:35.840000pt;}
.fs2_c01349{font-size:43.520000pt;}
.fs3_c01349{font-size:46.080000pt;}
.fs6_c01349{font-size:48.640000pt;}
.fs0_c01349{font-size:51.200000pt;}
.fs7_c01349{font-size:53.760000pt;}
.fsc_c01349{font-size:56.320000pt;}
.fsd_c01349{font-size:58.880000pt;}
.fs10_c01349{font-size:61.440000pt;}
.fs4_c01349{font-size:64.000000pt;}
.fs9_c01349{font-size:66.560000pt;}
.fs5_c01349{font-size:69.120000pt;}
.fs8_c01349{font-size:71.680000pt;}
.fs1_c01349{font-size:74.240000pt;}
.fsf_c01349{font-size:92.160000pt;}
.y0_c01349{bottom:0.000000pt;}
.y52_c01349{bottom:29.440000pt;}
.y51_c01349{bottom:30.080000pt;}
.y50_c01349{bottom:31.360000pt;}
.y81_c01349{bottom:32.640000pt;}
.y83_c01349{bottom:34.560000pt;}
.y82_c01349{bottom:35.200000pt;}
.y4e_c01349{bottom:69.120000pt;}
.y4f_c01349{bottom:71.680000pt;}
.y4d_c01349{bottom:72.960000pt;}
.y7f_c01349{bottom:73.600000pt;}
.y80_c01349{bottom:74.880000pt;}
.y4a_c01349{bottom:108.160000pt;}
.y48_c01349{bottom:108.800000pt;}
.y49_c01349{bottom:110.080000pt;}
.y47_c01349{bottom:111.360000pt;}
.y4b_c01349{bottom:112.000000pt;}
.y4c_c01349{bottom:112.640000pt;}
.y46_c01349{bottom:140.160000pt;}
.y44_c01349{bottom:145.280000pt;}
.y45_c01349{bottom:146.560000pt;}
.y43_c01349{bottom:149.760000pt;}
.y7d_c01349{bottom:151.040000pt;}
.y7e_c01349{bottom:151.680000pt;}
.y3f_c01349{bottom:184.320000pt;}
.y41_c01349{bottom:184.960000pt;}
.y7b_c01349{bottom:186.880000pt;}
.y40_c01349{bottom:187.520000pt;}
.y3e_c01349{bottom:188.160000pt;}
.y42_c01349{bottom:188.800000pt;}
.y7c_c01349{bottom:190.080000pt;}
.y3a_c01349{bottom:222.720000pt;}
.y3c_c01349{bottom:223.360000pt;}
.y39_c01349{bottom:225.920000pt;}
.y3b_c01349{bottom:226.560000pt;}
.y3d_c01349{bottom:227.200000pt;}
.y7a_c01349{bottom:227.840000pt;}
.y37_c01349{bottom:261.120000pt;}
.y77_c01349{bottom:263.680000pt;}
.y36_c01349{bottom:264.320000pt;}
.y79_c01349{bottom:264.960000pt;}
.y38_c01349{bottom:265.600000pt;}
.y78_c01349{bottom:266.240000pt;}
.y33_c01349{bottom:300.160000pt;}
.y35_c01349{bottom:300.800000pt;}
.y75_c01349{bottom:301.440000pt;}
.y32_c01349{bottom:302.080000pt;}
.y74_c01349{bottom:302.720000pt;}
.y34_c01349{bottom:303.360000pt;}
.y76_c01349{bottom:304.640000pt;}
.y31_c01349{bottom:337.920000pt;}
.y72_c01349{bottom:340.480000pt;}
.y30_c01349{bottom:341.760000pt;}
.y73_c01349{bottom:343.040000pt;}
.y2e_c01349{bottom:376.960000pt;}
.y70_c01349{bottom:379.520000pt;}
.y2d_c01349{bottom:380.160000pt;}
.y2f_c01349{bottom:380.800000pt;}
.y71_c01349{bottom:381.440000pt;}
.y2a_c01349{bottom:416.000000pt;}
.y2c_c01349{bottom:417.280000pt;}
.y6f_c01349{bottom:417.920000pt;}
.y29_c01349{bottom:418.560000pt;}
.y2b_c01349{bottom:419.200000pt;}
.y26_c01349{bottom:454.400000pt;}
.y6d_c01349{bottom:455.040000pt;}
.y28_c01349{bottom:455.680000pt;}
.y6e_c01349{bottom:456.320000pt;}
.y25_c01349{bottom:456.960000pt;}
.y27_c01349{bottom:457.600000pt;}
.y24_c01349{bottom:492.800000pt;}
.y22_c01349{bottom:493.440000pt;}
.y6b_c01349{bottom:494.720000pt;}
.y6c_c01349{bottom:495.360000pt;}
.y23_c01349{bottom:496.000000pt;}
.y6a_c01349{bottom:496.640000pt;}
.y21_c01349{bottom:497.280000pt;}
.y1d_c01349{bottom:531.840000pt;}
.y1e_c01349{bottom:532.480000pt;}
.y1c_c01349{bottom:533.120000pt;}
.y1b_c01349{bottom:533.760000pt;}
.y1f_c01349{bottom:534.400000pt;}
.y20_c01349{bottom:535.680000pt;}
.y18_c01349{bottom:569.600000pt;}
.y68_c01349{bottom:570.880000pt;}
.y1a_c01349{bottom:571.520000pt;}
.y69_c01349{bottom:572.160000pt;}
.y17_c01349{bottom:572.800000pt;}
.y19_c01349{bottom:574.080000pt;}
.y16_c01349{bottom:607.360000pt;}
.y15_c01349{bottom:608.640000pt;}
.y66_c01349{bottom:609.280000pt;}
.y67_c01349{bottom:609.920000pt;}
.y14_c01349{bottom:610.560000pt;}
.y12_c01349{bottom:645.760000pt;}
.y13_c01349{bottom:647.040000pt;}
.y64_c01349{bottom:647.680000pt;}
.y65_c01349{bottom:648.320000pt;}
.y10_c01349{bottom:648.960000pt;}
.y11_c01349{bottom:650.240000pt;}
.yf_c01349{bottom:684.160000pt;}
.y62_c01349{bottom:685.440000pt;}
.y63_c01349{bottom:686.080000pt;}
.yd_c01349{bottom:686.720000pt;}
.ye_c01349{bottom:689.280000pt;}
.y61_c01349{bottom:722.560000pt;}
.yc_c01349{bottom:723.200000pt;}
.y60_c01349{bottom:724.480000pt;}
.yb_c01349{bottom:726.400000pt;}
.y5f_c01349{bottom:760.960000pt;}
.ya_c01349{bottom:761.600000pt;}
.y9_c01349{bottom:764.160000pt;}
.y5e_c01349{bottom:799.360000pt;}
.y8_c01349{bottom:800.000000pt;}
.y6_c01349{bottom:802.560000pt;}
.y7_c01349{bottom:803.840000pt;}
.y5_c01349{bottom:837.120000pt;}
.y4_c01349{bottom:838.400000pt;}
.y2_c01349{bottom:839.040000pt;}
.y1_c01349{bottom:840.960000pt;}
.y3_c01349{bottom:842.240000pt;}
.y56_c01349{bottom:876.800000pt;}
.y5d_c01349{bottom:877.440000pt;}
.y5c_c01349{bottom:878.080000pt;}
.y5b_c01349{bottom:878.720000pt;}
.y55_c01349{bottom:880.000000pt;}
.y5a_c01349{bottom:913.920000pt;}
.y58_c01349{bottom:915.200000pt;}
.y54_c01349{bottom:915.840000pt;}
.y59_c01349{bottom:916.480000pt;}
.y53_c01349{bottom:917.760000pt;}
.y57_c01349{bottom:969.600000pt;}
.hc_c01349{height:27.645000pt;}
.hd_c01349{height:29.948750pt;}
.h10_c01349{height:32.252500pt;}
.h4_c01349{height:39.163750pt;}
.h5_c01349{height:41.467500pt;}
.h8_c01349{height:43.771250pt;}
.h2_c01349{height:46.075000pt;}
.h9_c01349{height:48.378750pt;}
.he_c01349{height:50.682500pt;}
.hf_c01349{height:52.986250pt;}
.h13_c01349{height:54.267500pt;}
.h12_c01349{height:55.290000pt;}
.h6_c01349{height:57.593750pt;}
.hb_c01349{height:59.897500pt;}
.h7_c01349{height:62.201250pt;}
.ha_c01349{height:64.505000pt;}
.h3_c01349{height:66.808750pt;}
.h11_c01349{height:82.935000pt;}
.h1_c01349{height:1023.333333pt;}
.h0_c01349{height:1023.360000pt;}
.w1_c01349{width:687.333333pt;}
.w0_c01349{width:687.360000pt;}
.x0_c01349{left:0.000000pt;}
.x1_c01349{left:48.640000pt;}
.x1d_c01349{left:49.920000pt;}
.x1f_c01349{left:102.400000pt;}
.x2_c01349{left:103.680000pt;}
.x10_c01349{left:170.880000pt;}
.xa_c01349{left:172.160000pt;}
.x3_c01349{left:180.480000pt;}
.x28_c01349{left:182.400000pt;}
.x24_c01349{left:190.080000pt;}
.x1a_c01349{left:218.880000pt;}
.x14_c01349{left:228.480000pt;}
.x4_c01349{left:230.400000pt;}
.xd_c01349{left:239.360000pt;}
.x17_c01349{left:247.040000pt;}
.x1c_c01349{left:257.280000pt;}
.x20_c01349{left:265.600000pt;}
.x5_c01349{left:267.520000pt;}
.x15_c01349{left:275.840000pt;}
.x18_c01349{left:286.080000pt;}
.x11_c01349{left:305.280000pt;}
.x16_c01349{left:314.880000pt;}
.x26_c01349{left:324.480000pt;}
.x19_c01349{left:334.080000pt;}
.xf_c01349{left:344.320000pt;}
.x12_c01349{left:353.280000pt;}
.x27_c01349{left:370.560000pt;}
.x1b_c01349{left:371.840000pt;}
.x6_c01349{left:382.720000pt;}
.x13_c01349{left:391.040000pt;}
.x21_c01349{left:399.360000pt;}
.xb_c01349{left:401.280000pt;}
.xe_c01349{left:410.880000pt;}
.x22_c01349{left:439.040000pt;}
.xc_c01349{left:449.280000pt;}
.x23_c01349{left:504.960000pt;}
.x1e_c01349{left:515.200000pt;}
.x30_c01349{left:516.480000pt;}
.x25_c01349{left:524.160000pt;}
.x33_c01349{left:533.760000pt;}
.x2c_c01349{left:535.040000pt;}
.x37_c01349{left:561.920000pt;}
.x31_c01349{left:563.200000pt;}
.x7_c01349{left:565.120000pt;}
.x35_c01349{left:591.360000pt;}
.x2d_c01349{left:592.640000pt;}
.x2b_c01349{left:593.920000pt;}
.x8_c01349{left:595.200000pt;}
.x38_c01349{left:620.800000pt;}
.x2e_c01349{left:622.080000pt;}
.x29_c01349{left:624.000000pt;}
.x34_c01349{left:629.760000pt;}
.x32_c01349{left:631.040000pt;}
.x9_c01349{left:632.320000pt;}
.x36_c01349{left:648.320000pt;}
.x2f_c01349{left:649.600000pt;}
.x2a_c01349{left:650.880000pt;}
}





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

.ir_c01350:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01350{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01350;src:url('chunks/assets/font_80f562edeb53fba10f399145.woff2')format("woff");}.ff1_c01350{font-family:ff1_c01350;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m39_c01350{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m32_c01350{transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);}
.m37_c01350{transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);}
.m2e_c01350{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.m3a_c01350{transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);}
.m15_c01350{transform:matrix(0.228100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228100,0.000000,0.000000,0.250000,0,0);}
.m3f_c01350{transform:matrix(0.230775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230775,0.000000,0.000000,0.250000,0,0);}
.m3e_c01350{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m29_c01350{transform:matrix(0.239225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239225,0.000000,0.000000,0.250000,0,0);}
.m1e_c01350{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m4_c01350{transform:matrix(0.247025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247025,0.000000,0.000000,0.250000,0,0);}
.m10_c01350{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m2_c01350{transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);}
.m28_c01350{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m7_c01350{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);}
.m35_c01350{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01350{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_c01350{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);}
.m34_c01350{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.me_c01350{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_c01350{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);}
.m20_c01350{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);}
.m21_c01350{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m38_c01350{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01350{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m5_c01350{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);}
.m31_c01350{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m18_c01350{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m25_c01350{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m41_c01350{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m12_c01350{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mb_c01350{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m36_c01350{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01350{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m9_c01350{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m6_c01350{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01350{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mf_c01350{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m43_c01350{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mc_c01350{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m23_c01350{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);}
.m27_c01350{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m3_c01350{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m16_c01350{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01350{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01350{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m1_c01350{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);}
.m2d_c01350{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m13_c01350{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m11_c01350{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m14_c01350{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m33_c01350{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);}
.m44_c01350{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);}
.m0_c01350{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m42_c01350{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m22_c01350{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);}
.m24_c01350{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01350{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);}
.m30_c01350{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01350{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01350{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01350{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m26_c01350{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01350{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);}
.m2c_c01350{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m19_c01350{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);}
.md_c01350{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);}
.ma_c01350{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m40_c01350{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.v1_c01350{vertical-align:-2.880000px;}
.v0_c01350{vertical-align:0.000000px;}
.v2_c01350{vertical-align:2.880000px;}
.ls1_c01350{letter-spacing:0.000000px;}
.ls0_c01350{letter-spacing:87.974400px;}
.sc__c01350{text-shadow:none;}
.sc0_c01350{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01350{-webkit-text-stroke:0px transparent;}
.sc0_c01350{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01350{word-spacing:-7.148160px;}
.ws0_c01350{word-spacing:-6.782880px;}
.ws3_c01350{word-spacing:0.000000px;}
.ws2_c01350{word-spacing:9.210378px;}
.fc0_c01350{color:transparent;}
.fsd_c01350{font-size:34.560000px;}
.fsc_c01350{font-size:40.320000px;}
.fs7_c01350{font-size:43.200000px;}
.fsb_c01350{font-size:48.960000px;}
.fs9_c01350{font-size:51.840000px;}
.fs6_c01350{font-size:54.720000px;}
.fsa_c01350{font-size:57.600000px;}
.fs8_c01350{font-size:60.480000px;}
.fs1_c01350{font-size:63.360000px;}
.fs3_c01350{font-size:66.240000px;}
.fs5_c01350{font-size:69.120000px;}
.fs0_c01350{font-size:72.000000px;}
.fs4_c01350{font-size:74.880000px;}
.fs2_c01350{font-size:77.760000px;}
.y0_c01350{bottom:0.000000px;}
.y5d_c01350{bottom:53.280000px;}
.y5c_c01350{bottom:57.600000px;}
.y63_c01350{bottom:58.320000px;}
.y65_c01350{bottom:59.760000px;}
.y64_c01350{bottom:61.200000px;}
.y5b_c01350{bottom:96.480000px;}
.y5a_c01350{bottom:100.080000px;}
.y59_c01350{bottom:101.520000px;}
.y62_c01350{bottom:102.240000px;}
.y57_c01350{bottom:140.400000px;}
.y56_c01350{bottom:142.560000px;}
.y58_c01350{bottom:144.000000px;}
.y60_c01350{bottom:145.440000px;}
.y61_c01350{bottom:146.880000px;}
.y55_c01350{bottom:182.880000px;}
.y54_c01350{bottom:186.480000px;}
.y5e_c01350{bottom:188.640000px;}
.y5f_c01350{bottom:190.080000px;}
.y52_c01350{bottom:230.400000px;}
.y53_c01350{bottom:231.120000px;}
.y3a_c01350{bottom:281.520000px;}
.y39_c01350{bottom:285.120000px;}
.y51_c01350{bottom:285.840000px;}
.y34_c01350{bottom:324.720000px;}
.y36_c01350{bottom:325.440000px;}
.y35_c01350{bottom:327.600000px;}
.y33_c01350{bottom:328.320000px;}
.y37_c01350{bottom:329.040000px;}
.y38_c01350{bottom:329.760000px;}
.y50_c01350{bottom:332.640000px;}
.y31_c01350{bottom:367.920000px;}
.y32_c01350{bottom:368.640000px;}
.y30_c01350{bottom:371.520000px;}
.y4e_c01350{bottom:372.240000px;}
.y4f_c01350{bottom:373.680000px;}
.y2f_c01350{bottom:411.120000px;}
.y2e_c01350{bottom:414.000000px;}
.y4c_c01350{bottom:414.720000px;}
.y4d_c01350{bottom:416.880000px;}
.y2c_c01350{bottom:456.480000px;}
.y4a_c01350{bottom:457.920000px;}
.y2d_c01350{bottom:458.640000px;}
.y49_c01350{bottom:460.080000px;}
.y4b_c01350{bottom:460.800000px;}
.y2a_c01350{bottom:499.680000px;}
.y29_c01350{bottom:500.400000px;}
.y2b_c01350{bottom:501.840000px;}
.y28_c01350{bottom:541.440000px;}
.y27_c01350{bottom:542.880000px;}
.y47_c01350{bottom:543.600000px;}
.y48_c01350{bottom:545.040000px;}
.y26_c01350{bottom:584.640000px;}
.y25_c01350{bottom:586.800000px;}
.y46_c01350{bottom:588.960000px;}
.y45_c01350{bottom:589.680000px;}
.y21_c01350{bottom:627.840000px;}
.y22_c01350{bottom:629.280000px;}
.y20_c01350{bottom:630.000000px;}
.y44_c01350{bottom:630.720000px;}
.y23_c01350{bottom:632.160000px;}
.y24_c01350{bottom:632.880000px;}
.y1f_c01350{bottom:671.040000px;}
.y1d_c01350{bottom:673.200000px;}
.y1e_c01350{bottom:673.920000px;}
.y43_c01350{bottom:674.640000px;}
.y41_c01350{bottom:675.360000px;}
.y42_c01350{bottom:676.080000px;}
.y1c_c01350{bottom:714.960000px;}
.y40_c01350{bottom:716.400000px;}
.y1b_c01350{bottom:717.120000px;}
.y3f_c01350{bottom:719.280000px;}
.y18_c01350{bottom:758.160000px;}
.y1a_c01350{bottom:758.880000px;}
.y17_c01350{bottom:759.600000px;}
.y19_c01350{bottom:761.760000px;}
.y16_c01350{bottom:802.080000px;}
.y15_c01350{bottom:802.800000px;}
.y3e_c01350{bottom:803.520000px;}
.y14_c01350{bottom:844.560000px;}
.y3d_c01350{bottom:845.280000px;}
.y11_c01350{bottom:846.000000px;}
.y12_c01350{bottom:846.720000px;}
.y3c_c01350{bottom:848.160000px;}
.y3b_c01350{bottom:848.880000px;}
.y13_c01350{bottom:849.600000px;}
.yf_c01350{bottom:892.800000px;}
.y10_c01350{bottom:893.520000px;}
.y6_c01350{bottom:941.760000px;}
.y7_c01350{bottom:942.480000px;}
.ye_c01350{bottom:943.200000px;}
.y9_c01350{bottom:944.640000px;}
.yd_c01350{bottom:945.360000px;}
.y8_c01350{bottom:946.080000px;}
.y5_c01350{bottom:984.960000px;}
.y4_c01350{bottom:985.680000px;}
.yc_c01350{bottom:987.120000px;}
.y3_c01350{bottom:1028.160000px;}
.ya_c01350{bottom:1028.880000px;}
.y2_c01350{bottom:1029.600000px;}
.yb_c01350{bottom:1030.320000px;}
.y1_c01350{bottom:1100.880000px;}
.h10_c01350{height:31.100625px;}
.he_c01350{height:36.284062px;}
.h9_c01350{height:38.875781px;}
.hd_c01350{height:44.059219px;}
.hb_c01350{height:46.650937px;}
.h8_c01350{height:49.242656px;}
.hc_c01350{height:51.834375px;}
.ha_c01350{height:54.426094px;}
.h3_c01350{height:57.017812px;}
.h5_c01350{height:59.609531px;}
.h7_c01350{height:62.201250px;}
.h2_c01350{height:64.792969px;}
.h6_c01350{height:67.384687px;}
.h4_c01350{height:69.976406px;}
.hf_c01350{height:70.264688px;}
.h1_c01350{height:1150.500000px;}
.h0_c01350{height:1150.560000px;}
.w1_c01350{width:771.000000px;}
.w0_c01350{width:771.120000px;}
.x0_c01350{left:0.000000px;}
.x2_c01350{left:48.960000px;}
.xf_c01350{left:50.400000px;}
.x1a_c01350{left:51.840000px;}
.x2a_c01350{left:53.280000px;}
.x16_c01350{left:82.080000px;}
.x2d_c01350{left:83.520000px;}
.xd_c01350{left:101.520000px;}
.x18_c01350{left:110.880000px;}
.x3_c01350{left:112.320000px;}
.x1d_c01350{left:113.760000px;}
.x2b_c01350{left:146.880000px;}
.xe_c01350{left:155.520000px;}
.x2c_c01350{left:177.840000px;}
.x10_c01350{left:197.280000px;}
.x19_c01350{left:198.720000px;}
.x4_c01350{left:209.520000px;}
.x1b_c01350{left:210.960000px;}
.x11_c01350{left:242.640000px;}
.x12_c01350{left:253.440000px;}
.x17_c01350{left:264.240000px;}
.x13_c01350{left:296.640000px;}
.x5_c01350{left:316.800000px;}
.x6_c01350{left:361.440000px;}
.x14_c01350{left:383.040000px;}
.x1c_c01350{left:415.440000px;}
.x15_c01350{left:436.320000px;}
.x24_c01350{left:575.280000px;}
.x21_c01350{left:576.720000px;}
.x1e_c01350{left:596.880000px;}
.x1f_c01350{left:598.320000px;}
.x25_c01350{left:608.400000px;}
.x27_c01350{left:628.560000px;}
.xb_c01350{left:630.720000px;}
.x7_c01350{left:632.160000px;}
.x26_c01350{left:662.400000px;}
.x8_c01350{left:663.840000px;}
.x28_c01350{left:671.760000px;}
.x22_c01350{left:673.200000px;}
.xc_c01350{left:674.640000px;}
.x1_c01350{left:690.480000px;}
.x20_c01350{left:695.520000px;}
.x29_c01350{left:704.160000px;}
.x9_c01350{left:705.600000px;}
.x23_c01350{left:725.760000px;}
.xa_c01350{left:727.200000px;}
@media print{
.v1_c01350{vertical-align:-2.560000pt;}
.v0_c01350{vertical-align:0.000000pt;}
.v2_c01350{vertical-align:2.560000pt;}
.ls1_c01350{letter-spacing:0.000000pt;}
.ls0_c01350{letter-spacing:78.199467pt;}
.ws1_c01350{word-spacing:-6.353920pt;}
.ws0_c01350{word-spacing:-6.029227pt;}
.ws3_c01350{word-spacing:0.000000pt;}
.ws2_c01350{word-spacing:8.187003pt;}
.fsd_c01350{font-size:30.720000pt;}
.fsc_c01350{font-size:35.840000pt;}
.fs7_c01350{font-size:38.400000pt;}
.fsb_c01350{font-size:43.520000pt;}
.fs9_c01350{font-size:46.080000pt;}
.fs6_c01350{font-size:48.640000pt;}
.fsa_c01350{font-size:51.200000pt;}
.fs8_c01350{font-size:53.760000pt;}
.fs1_c01350{font-size:56.320000pt;}
.fs3_c01350{font-size:58.880000pt;}
.fs5_c01350{font-size:61.440000pt;}
.fs0_c01350{font-size:64.000000pt;}
.fs4_c01350{font-size:66.560000pt;}
.fs2_c01350{font-size:69.120000pt;}
.y0_c01350{bottom:0.000000pt;}
.y5d_c01350{bottom:47.360000pt;}
.y5c_c01350{bottom:51.200000pt;}
.y63_c01350{bottom:51.840000pt;}
.y65_c01350{bottom:53.120000pt;}
.y64_c01350{bottom:54.400000pt;}
.y5b_c01350{bottom:85.760000pt;}
.y5a_c01350{bottom:88.960000pt;}
.y59_c01350{bottom:90.240000pt;}
.y62_c01350{bottom:90.880000pt;}
.y57_c01350{bottom:124.800000pt;}
.y56_c01350{bottom:126.720000pt;}
.y58_c01350{bottom:128.000000pt;}
.y60_c01350{bottom:129.280000pt;}
.y61_c01350{bottom:130.560000pt;}
.y55_c01350{bottom:162.560000pt;}
.y54_c01350{bottom:165.760000pt;}
.y5e_c01350{bottom:167.680000pt;}
.y5f_c01350{bottom:168.960000pt;}
.y52_c01350{bottom:204.800000pt;}
.y53_c01350{bottom:205.440000pt;}
.y3a_c01350{bottom:250.240000pt;}
.y39_c01350{bottom:253.440000pt;}
.y51_c01350{bottom:254.080000pt;}
.y34_c01350{bottom:288.640000pt;}
.y36_c01350{bottom:289.280000pt;}
.y35_c01350{bottom:291.200000pt;}
.y33_c01350{bottom:291.840000pt;}
.y37_c01350{bottom:292.480000pt;}
.y38_c01350{bottom:293.120000pt;}
.y50_c01350{bottom:295.680000pt;}
.y31_c01350{bottom:327.040000pt;}
.y32_c01350{bottom:327.680000pt;}
.y30_c01350{bottom:330.240000pt;}
.y4e_c01350{bottom:330.880000pt;}
.y4f_c01350{bottom:332.160000pt;}
.y2f_c01350{bottom:365.440000pt;}
.y2e_c01350{bottom:368.000000pt;}
.y4c_c01350{bottom:368.640000pt;}
.y4d_c01350{bottom:370.560000pt;}
.y2c_c01350{bottom:405.760000pt;}
.y4a_c01350{bottom:407.040000pt;}
.y2d_c01350{bottom:407.680000pt;}
.y49_c01350{bottom:408.960000pt;}
.y4b_c01350{bottom:409.600000pt;}
.y2a_c01350{bottom:444.160000pt;}
.y29_c01350{bottom:444.800000pt;}
.y2b_c01350{bottom:446.080000pt;}
.y28_c01350{bottom:481.280000pt;}
.y27_c01350{bottom:482.560000pt;}
.y47_c01350{bottom:483.200000pt;}
.y48_c01350{bottom:484.480000pt;}
.y26_c01350{bottom:519.680000pt;}
.y25_c01350{bottom:521.600000pt;}
.y46_c01350{bottom:523.520000pt;}
.y45_c01350{bottom:524.160000pt;}
.y21_c01350{bottom:558.080000pt;}
.y22_c01350{bottom:559.360000pt;}
.y20_c01350{bottom:560.000000pt;}
.y44_c01350{bottom:560.640000pt;}
.y23_c01350{bottom:561.920000pt;}
.y24_c01350{bottom:562.560000pt;}
.y1f_c01350{bottom:596.480000pt;}
.y1d_c01350{bottom:598.400000pt;}
.y1e_c01350{bottom:599.040000pt;}
.y43_c01350{bottom:599.680000pt;}
.y41_c01350{bottom:600.320000pt;}
.y42_c01350{bottom:600.960000pt;}
.y1c_c01350{bottom:635.520000pt;}
.y40_c01350{bottom:636.800000pt;}
.y1b_c01350{bottom:637.440000pt;}
.y3f_c01350{bottom:639.360000pt;}
.y18_c01350{bottom:673.920000pt;}
.y1a_c01350{bottom:674.560000pt;}
.y17_c01350{bottom:675.200000pt;}
.y19_c01350{bottom:677.120000pt;}
.y16_c01350{bottom:712.960000pt;}
.y15_c01350{bottom:713.600000pt;}
.y3e_c01350{bottom:714.240000pt;}
.y14_c01350{bottom:750.720000pt;}
.y3d_c01350{bottom:751.360000pt;}
.y11_c01350{bottom:752.000000pt;}
.y12_c01350{bottom:752.640000pt;}
.y3c_c01350{bottom:753.920000pt;}
.y3b_c01350{bottom:754.560000pt;}
.y13_c01350{bottom:755.200000pt;}
.yf_c01350{bottom:793.600000pt;}
.y10_c01350{bottom:794.240000pt;}
.y6_c01350{bottom:837.120000pt;}
.y7_c01350{bottom:837.760000pt;}
.ye_c01350{bottom:838.400000pt;}
.y9_c01350{bottom:839.680000pt;}
.yd_c01350{bottom:840.320000pt;}
.y8_c01350{bottom:840.960000pt;}
.y5_c01350{bottom:875.520000pt;}
.y4_c01350{bottom:876.160000pt;}
.yc_c01350{bottom:877.440000pt;}
.y3_c01350{bottom:913.920000pt;}
.ya_c01350{bottom:914.560000pt;}
.y2_c01350{bottom:915.200000pt;}
.yb_c01350{bottom:915.840000pt;}
.y1_c01350{bottom:978.560000pt;}
.h10_c01350{height:27.645000pt;}
.he_c01350{height:32.252500pt;}
.h9_c01350{height:34.556250pt;}
.hd_c01350{height:39.163750pt;}
.hb_c01350{height:41.467500pt;}
.h8_c01350{height:43.771250pt;}
.hc_c01350{height:46.075000pt;}
.ha_c01350{height:48.378750pt;}
.h3_c01350{height:50.682500pt;}
.h5_c01350{height:52.986250pt;}
.h7_c01350{height:55.290000pt;}
.h2_c01350{height:57.593750pt;}
.h6_c01350{height:59.897500pt;}
.h4_c01350{height:62.201250pt;}
.hf_c01350{height:62.457500pt;}
.h1_c01350{height:1022.666667pt;}
.h0_c01350{height:1022.720000pt;}
.w1_c01350{width:685.333333pt;}
.w0_c01350{width:685.440000pt;}
.x0_c01350{left:0.000000pt;}
.x2_c01350{left:43.520000pt;}
.xf_c01350{left:44.800000pt;}
.x1a_c01350{left:46.080000pt;}
.x2a_c01350{left:47.360000pt;}
.x16_c01350{left:72.960000pt;}
.x2d_c01350{left:74.240000pt;}
.xd_c01350{left:90.240000pt;}
.x18_c01350{left:98.560000pt;}
.x3_c01350{left:99.840000pt;}
.x1d_c01350{left:101.120000pt;}
.x2b_c01350{left:130.560000pt;}
.xe_c01350{left:138.240000pt;}
.x2c_c01350{left:158.080000pt;}
.x10_c01350{left:175.360000pt;}
.x19_c01350{left:176.640000pt;}
.x4_c01350{left:186.240000pt;}
.x1b_c01350{left:187.520000pt;}
.x11_c01350{left:215.680000pt;}
.x12_c01350{left:225.280000pt;}
.x17_c01350{left:234.880000pt;}
.x13_c01350{left:263.680000pt;}
.x5_c01350{left:281.600000pt;}
.x6_c01350{left:321.280000pt;}
.x14_c01350{left:340.480000pt;}
.x1c_c01350{left:369.280000pt;}
.x15_c01350{left:387.840000pt;}
.x24_c01350{left:511.360000pt;}
.x21_c01350{left:512.640000pt;}
.x1e_c01350{left:530.560000pt;}
.x1f_c01350{left:531.840000pt;}
.x25_c01350{left:540.800000pt;}
.x27_c01350{left:558.720000pt;}
.xb_c01350{left:560.640000pt;}
.x7_c01350{left:561.920000pt;}
.x26_c01350{left:588.800000pt;}
.x8_c01350{left:590.080000pt;}
.x28_c01350{left:597.120000pt;}
.x22_c01350{left:598.400000pt;}
.xc_c01350{left:599.680000pt;}
.x1_c01350{left:613.760000pt;}
.x20_c01350{left:618.240000pt;}
.x29_c01350{left:625.920000pt;}
.x9_c01350{left:627.200000pt;}
.x23_c01350{left:645.120000pt;}
.xa_c01350{left:646.400000pt;}
}





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

.ir_c01351:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01351{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01351;src:url('chunks/assets/font_7be5912bf0d6994d29561c43.woff2')format("woff");}.ff1_c01351{font-family:ff1_c01351;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3a_c01351{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_c01351{transform:matrix(0.233975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233975,0.000000,0.000000,0.250000,0,0);}
.m35_c01351{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m28_c01351{transform:matrix(0.244650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244650,0.000000,0.000000,0.250000,0,0);}
.mf_c01351{transform:matrix(0.246475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246475,0.000000,0.000000,0.250000,0,0);}
.m14_c01351{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m25_c01351{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m41_c01351{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m5_c01351{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);}
.m31_c01351{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m16_c01351{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_c01351{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);}
.m3c_c01351{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);}
.m3f_c01351{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m3_c01351{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_c01351{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);}
.m3d_c01351{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);}
.m2d_c01351{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01351{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);}
.m44_c01351{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);}
.m26_c01351{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m8_c01351{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m23_c01351{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m18_c01351{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01351{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m32_c01351{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m10_c01351{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01351{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.mb_c01351{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m12_c01351{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m36_c01351{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m33_c01351{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01351{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m40_c01351{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m30_c01351{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01351{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.me_c01351{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);}
.m38_c01351{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m15_c01351{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);}
.m34_c01351{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01351{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);}
.m21_c01351{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m22_c01351{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m0_c01351{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_c01351{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);}
.m24_c01351{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01351{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.ma_c01351{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m4_c01351{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.mc_c01351{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1_c01351{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);}
.m48_c01351{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);}
.m2c_c01351{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);}
.m17_c01351{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01351{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);}
.m27_c01351{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);}
.m9_c01351{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01351{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);}
.m2f_c01351{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);}
.m46_c01351{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m13_c01351{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m7_c01351{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);}
.m6_c01351{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);}
.m1c_c01351{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m11_c01351{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);}
.m39_c01351{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m29_c01351{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01351{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m47_c01351{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m37_c01351{transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);}
.m43_c01351{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m42_c01351{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m45_c01351{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.m49_c01351{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.v0_c01351{vertical-align:0.000000px;}
.ls0_c01351{letter-spacing:0.000000px;}
.sc__c01351{text-shadow:none;}
.sc0_c01351{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01351{-webkit-text-stroke:0px transparent;}
.sc0_c01351{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01351{word-spacing:0.000000px;}
.ws0_c01351{word-spacing:57.059942px;}
.fc0_c01351{color:transparent;}
.fs7_c01351{font-size:37.440000px;}
.fs2_c01351{font-size:40.320000px;}
.fsc_c01351{font-size:48.960000px;}
.fs3_c01351{font-size:51.840000px;}
.fs8_c01351{font-size:54.720000px;}
.fs9_c01351{font-size:57.600000px;}
.fs1_c01351{font-size:60.480000px;}
.fsa_c01351{font-size:63.360000px;}
.fs4_c01351{font-size:66.240000px;}
.fs6_c01351{font-size:69.120000px;}
.fsb_c01351{font-size:72.000000px;}
.fs5_c01351{font-size:74.880000px;}
.fs0_c01351{font-size:77.760000px;}
.y0_c01351{bottom:0.000000px;}
.y49_c01351{bottom:43.920000px;}
.y48_c01351{bottom:47.520000px;}
.y47_c01351{bottom:48.960000px;}
.y6f_c01351{bottom:49.680000px;}
.y70_c01351{bottom:51.120000px;}
.y46_c01351{bottom:86.400000px;}
.y45_c01351{bottom:90.720000px;}
.y44_c01351{bottom:91.440000px;}
.y6d_c01351{bottom:92.880000px;}
.y6e_c01351{bottom:95.040000px;}
.y42_c01351{bottom:130.320000px;}
.y40_c01351{bottom:133.200000px;}
.y41_c01351{bottom:133.920000px;}
.y43_c01351{bottom:134.640000px;}
.y6c_c01351{bottom:135.360000px;}
.y3f_c01351{bottom:172.800000px;}
.y3e_c01351{bottom:177.120000px;}
.y3d_c01351{bottom:177.840000px;}
.y6b_c01351{bottom:178.560000px;}
.y6a_c01351{bottom:180.720000px;}
.y3b_c01351{bottom:216.000000px;}
.y3c_c01351{bottom:218.160000px;}
.y3a_c01351{bottom:220.320000px;}
.y69_c01351{bottom:221.040000px;}
.y67_c01351{bottom:221.760000px;}
.y68_c01351{bottom:222.480000px;}
.y39_c01351{bottom:260.640000px;}
.y38_c01351{bottom:261.360000px;}
.y37_c01351{bottom:263.520000px;}
.y65_c01351{bottom:264.960000px;}
.y66_c01351{bottom:266.400000px;}
.y36_c01351{bottom:302.400000px;}
.y35_c01351{bottom:306.720000px;}
.y64_c01351{bottom:307.440000px;}
.y63_c01351{bottom:309.600000px;}
.y34_c01351{bottom:346.320000px;}
.y61_c01351{bottom:349.920000px;}
.y33_c01351{bottom:350.640000px;}
.y62_c01351{bottom:352.800000px;}
.y32_c01351{bottom:390.240000px;}
.y30_c01351{bottom:393.120000px;}
.y31_c01351{bottom:393.840000px;}
.y60_c01351{bottom:395.280000px;}
.y2e_c01351{bottom:433.440000px;}
.y2f_c01351{bottom:434.880000px;}
.y5d_c01351{bottom:435.600000px;}
.y2d_c01351{bottom:437.040000px;}
.y5f_c01351{bottom:438.480000px;}
.y5e_c01351{bottom:439.200000px;}
.y2c_c01351{bottom:476.640000px;}
.y2b_c01351{bottom:479.520000px;}
.y5b_c01351{bottom:481.680000px;}
.y5c_c01351{bottom:482.400000px;}
.y2a_c01351{bottom:520.560000px;}
.y5a_c01351{bottom:522.720000px;}
.y28_c01351{bottom:523.440000px;}
.y29_c01351{bottom:524.160000px;}
.y26_c01351{bottom:563.760000px;}
.y27_c01351{bottom:565.200000px;}
.y23_c01351{bottom:565.920000px;}
.y59_c01351{bottom:566.640000px;}
.y25_c01351{bottom:567.360000px;}
.y24_c01351{bottom:568.080000px;}
.y22_c01351{bottom:606.960000px;}
.y21_c01351{bottom:609.120000px;}
.y20_c01351{bottom:610.560000px;}
.y58_c01351{bottom:611.280000px;}
.y1f_c01351{bottom:650.160000px;}
.y57_c01351{bottom:652.320000px;}
.y1e_c01351{bottom:654.480000px;}
.y1d_c01351{bottom:693.360000px;}
.y56_c01351{bottom:696.240000px;}
.y1c_c01351{bottom:696.960000px;}
.y1b_c01351{bottom:737.280000px;}
.y54_c01351{bottom:738.000000px;}
.y1a_c01351{bottom:739.440000px;}
.y55_c01351{bottom:740.160000px;}
.y19_c01351{bottom:779.760000px;}
.y52_c01351{bottom:780.480000px;}
.y18_c01351{bottom:782.640000px;}
.y53_c01351{bottom:783.360000px;}
.y17_c01351{bottom:822.240000px;}
.y13_c01351{bottom:822.960000px;}
.y15_c01351{bottom:823.680000px;}
.y51_c01351{bottom:824.400000px;}
.y12_c01351{bottom:825.120000px;}
.y50_c01351{bottom:825.840000px;}
.y16_c01351{bottom:826.560000px;}
.y14_c01351{bottom:827.280000px;}
.y11_c01351{bottom:866.160000px;}
.y10_c01351{bottom:866.880000px;}
.y4f_c01351{bottom:869.040000px;}
.yf_c01351{bottom:908.640000px;}
.ye_c01351{bottom:909.360000px;}
.y4e_c01351{bottom:910.080000px;}
.yd_c01351{bottom:911.520000px;}
.y4d_c01351{bottom:912.240000px;}
.yc_c01351{bottom:951.840000px;}
.y7_c01351{bottom:952.560000px;}
.ya_c01351{bottom:953.280000px;}
.y6_c01351{bottom:954.720000px;}
.yb_c01351{bottom:955.440000px;}
.y8_c01351{bottom:956.160000px;}
.y9_c01351{bottom:956.880000px;}
.y4c_c01351{bottom:995.040000px;}
.y5_c01351{bottom:995.760000px;}
.y4b_c01351{bottom:996.480000px;}
.y4_c01351{bottom:997.920000px;}
.y3_c01351{bottom:1038.960000px;}
.y4a_c01351{bottom:1039.680000px;}
.y2_c01351{bottom:1041.840000px;}
.y1_c01351{bottom:1091.520000px;}
.h9_c01351{height:33.692344px;}
.h4_c01351{height:36.284062px;}
.he_c01351{height:44.059219px;}
.h5_c01351{height:46.650937px;}
.ha_c01351{height:49.242656px;}
.hb_c01351{height:51.834375px;}
.h3_c01351{height:54.426094px;}
.hc_c01351{height:57.017812px;}
.h6_c01351{height:59.609531px;}
.h8_c01351{height:62.201250px;}
.hd_c01351{height:64.792969px;}
.h7_c01351{height:67.384687px;}
.h2_c01351{height:69.976406px;}
.h1_c01351{height:1149.000000px;}
.h0_c01351{height:1149.120000px;}
.w1_c01351{width:770.250000px;}
.w0_c01351{width:770.400000px;}
.x0_c01351{left:0.000000px;}
.x2_c01351{left:50.400000px;}
.xf_c01351{left:51.840000px;}
.x13_c01351{left:53.280000px;}
.x19_c01351{left:54.720000px;}
.x4_c01351{left:113.040000px;}
.x3_c01351{left:114.480000px;}
.x14_c01351{left:125.280000px;}
.x16_c01351{left:157.680000px;}
.x10_c01351{left:190.080000px;}
.x18_c01351{left:191.520000px;}
.x5_c01351{left:200.880000px;}
.x11_c01351{left:233.280000px;}
.x6_c01351{left:244.080000px;}
.xb_c01351{left:254.880000px;}
.x7_c01351{left:287.280000px;}
.xc_c01351{left:298.080000px;}
.x12_c01351{left:329.040000px;}
.x17_c01351{left:352.080000px;}
.xa_c01351{left:373.680000px;}
.x8_c01351{left:383.760000px;}
.xd_c01351{left:395.280000px;}
.x15_c01351{left:406.080000px;}
.x9_c01351{left:438.480000px;}
.xe_c01351{left:448.560000px;}
.x24_c01351{left:598.320000px;}
.x21_c01351{left:599.760000px;}
.x27_c01351{left:609.840000px;}
.x1a_c01351{left:611.280000px;}
.x1e_c01351{left:631.440000px;}
.x1d_c01351{left:632.880000px;}
.x25_c01351{left:663.840000px;}
.x1b_c01351{left:665.280000px;}
.x1f_c01351{left:666.720000px;}
.x26_c01351{left:674.640000px;}
.x1_c01351{left:676.080000px;}
.x23_c01351{left:696.960000px;}
.x20_c01351{left:707.040000px;}
.x1c_c01351{left:708.480000px;}
.x22_c01351{left:727.920000px;}
@media print{
.v0_c01351{vertical-align:0.000000pt;}
.ls0_c01351{letter-spacing:0.000000pt;}
.ws1_c01351{word-spacing:0.000000pt;}
.ws0_c01351{word-spacing:50.719949pt;}
.fs7_c01351{font-size:33.280000pt;}
.fs2_c01351{font-size:35.840000pt;}
.fsc_c01351{font-size:43.520000pt;}
.fs3_c01351{font-size:46.080000pt;}
.fs8_c01351{font-size:48.640000pt;}
.fs9_c01351{font-size:51.200000pt;}
.fs1_c01351{font-size:53.760000pt;}
.fsa_c01351{font-size:56.320000pt;}
.fs4_c01351{font-size:58.880000pt;}
.fs6_c01351{font-size:61.440000pt;}
.fsb_c01351{font-size:64.000000pt;}
.fs5_c01351{font-size:66.560000pt;}
.fs0_c01351{font-size:69.120000pt;}
.y0_c01351{bottom:0.000000pt;}
.y49_c01351{bottom:39.040000pt;}
.y48_c01351{bottom:42.240000pt;}
.y47_c01351{bottom:43.520000pt;}
.y6f_c01351{bottom:44.160000pt;}
.y70_c01351{bottom:45.440000pt;}
.y46_c01351{bottom:76.800000pt;}
.y45_c01351{bottom:80.640000pt;}
.y44_c01351{bottom:81.280000pt;}
.y6d_c01351{bottom:82.560000pt;}
.y6e_c01351{bottom:84.480000pt;}
.y42_c01351{bottom:115.840000pt;}
.y40_c01351{bottom:118.400000pt;}
.y41_c01351{bottom:119.040000pt;}
.y43_c01351{bottom:119.680000pt;}
.y6c_c01351{bottom:120.320000pt;}
.y3f_c01351{bottom:153.600000pt;}
.y3e_c01351{bottom:157.440000pt;}
.y3d_c01351{bottom:158.080000pt;}
.y6b_c01351{bottom:158.720000pt;}
.y6a_c01351{bottom:160.640000pt;}
.y3b_c01351{bottom:192.000000pt;}
.y3c_c01351{bottom:193.920000pt;}
.y3a_c01351{bottom:195.840000pt;}
.y69_c01351{bottom:196.480000pt;}
.y67_c01351{bottom:197.120000pt;}
.y68_c01351{bottom:197.760000pt;}
.y39_c01351{bottom:231.680000pt;}
.y38_c01351{bottom:232.320000pt;}
.y37_c01351{bottom:234.240000pt;}
.y65_c01351{bottom:235.520000pt;}
.y66_c01351{bottom:236.800000pt;}
.y36_c01351{bottom:268.800000pt;}
.y35_c01351{bottom:272.640000pt;}
.y64_c01351{bottom:273.280000pt;}
.y63_c01351{bottom:275.200000pt;}
.y34_c01351{bottom:307.840000pt;}
.y61_c01351{bottom:311.040000pt;}
.y33_c01351{bottom:311.680000pt;}
.y62_c01351{bottom:313.600000pt;}
.y32_c01351{bottom:346.880000pt;}
.y30_c01351{bottom:349.440000pt;}
.y31_c01351{bottom:350.080000pt;}
.y60_c01351{bottom:351.360000pt;}
.y2e_c01351{bottom:385.280000pt;}
.y2f_c01351{bottom:386.560000pt;}
.y5d_c01351{bottom:387.200000pt;}
.y2d_c01351{bottom:388.480000pt;}
.y5f_c01351{bottom:389.760000pt;}
.y5e_c01351{bottom:390.400000pt;}
.y2c_c01351{bottom:423.680000pt;}
.y2b_c01351{bottom:426.240000pt;}
.y5b_c01351{bottom:428.160000pt;}
.y5c_c01351{bottom:428.800000pt;}
.y2a_c01351{bottom:462.720000pt;}
.y5a_c01351{bottom:464.640000pt;}
.y28_c01351{bottom:465.280000pt;}
.y29_c01351{bottom:465.920000pt;}
.y26_c01351{bottom:501.120000pt;}
.y27_c01351{bottom:502.400000pt;}
.y23_c01351{bottom:503.040000pt;}
.y59_c01351{bottom:503.680000pt;}
.y25_c01351{bottom:504.320000pt;}
.y24_c01351{bottom:504.960000pt;}
.y22_c01351{bottom:539.520000pt;}
.y21_c01351{bottom:541.440000pt;}
.y20_c01351{bottom:542.720000pt;}
.y58_c01351{bottom:543.360000pt;}
.y1f_c01351{bottom:577.920000pt;}
.y57_c01351{bottom:579.840000pt;}
.y1e_c01351{bottom:581.760000pt;}
.y1d_c01351{bottom:616.320000pt;}
.y56_c01351{bottom:618.880000pt;}
.y1c_c01351{bottom:619.520000pt;}
.y1b_c01351{bottom:655.360000pt;}
.y54_c01351{bottom:656.000000pt;}
.y1a_c01351{bottom:657.280000pt;}
.y55_c01351{bottom:657.920000pt;}
.y19_c01351{bottom:693.120000pt;}
.y52_c01351{bottom:693.760000pt;}
.y18_c01351{bottom:695.680000pt;}
.y53_c01351{bottom:696.320000pt;}
.y17_c01351{bottom:730.880000pt;}
.y13_c01351{bottom:731.520000pt;}
.y15_c01351{bottom:732.160000pt;}
.y51_c01351{bottom:732.800000pt;}
.y12_c01351{bottom:733.440000pt;}
.y50_c01351{bottom:734.080000pt;}
.y16_c01351{bottom:734.720000pt;}
.y14_c01351{bottom:735.360000pt;}
.y11_c01351{bottom:769.920000pt;}
.y10_c01351{bottom:770.560000pt;}
.y4f_c01351{bottom:772.480000pt;}
.yf_c01351{bottom:807.680000pt;}
.ye_c01351{bottom:808.320000pt;}
.y4e_c01351{bottom:808.960000pt;}
.yd_c01351{bottom:810.240000pt;}
.y4d_c01351{bottom:810.880000pt;}
.yc_c01351{bottom:846.080000pt;}
.y7_c01351{bottom:846.720000pt;}
.ya_c01351{bottom:847.360000pt;}
.y6_c01351{bottom:848.640000pt;}
.yb_c01351{bottom:849.280000pt;}
.y8_c01351{bottom:849.920000pt;}
.y9_c01351{bottom:850.560000pt;}
.y4c_c01351{bottom:884.480000pt;}
.y5_c01351{bottom:885.120000pt;}
.y4b_c01351{bottom:885.760000pt;}
.y4_c01351{bottom:887.040000pt;}
.y3_c01351{bottom:923.520000pt;}
.y4a_c01351{bottom:924.160000pt;}
.y2_c01351{bottom:926.080000pt;}
.y1_c01351{bottom:970.240000pt;}
.h9_c01351{height:29.948750pt;}
.h4_c01351{height:32.252500pt;}
.he_c01351{height:39.163750pt;}
.h5_c01351{height:41.467500pt;}
.ha_c01351{height:43.771250pt;}
.hb_c01351{height:46.075000pt;}
.h3_c01351{height:48.378750pt;}
.hc_c01351{height:50.682500pt;}
.h6_c01351{height:52.986250pt;}
.h8_c01351{height:55.290000pt;}
.hd_c01351{height:57.593750pt;}
.h7_c01351{height:59.897500pt;}
.h2_c01351{height:62.201250pt;}
.h1_c01351{height:1021.333333pt;}
.h0_c01351{height:1021.440000pt;}
.w1_c01351{width:684.666667pt;}
.w0_c01351{width:684.800000pt;}
.x0_c01351{left:0.000000pt;}
.x2_c01351{left:44.800000pt;}
.xf_c01351{left:46.080000pt;}
.x13_c01351{left:47.360000pt;}
.x19_c01351{left:48.640000pt;}
.x4_c01351{left:100.480000pt;}
.x3_c01351{left:101.760000pt;}
.x14_c01351{left:111.360000pt;}
.x16_c01351{left:140.160000pt;}
.x10_c01351{left:168.960000pt;}
.x18_c01351{left:170.240000pt;}
.x5_c01351{left:178.560000pt;}
.x11_c01351{left:207.360000pt;}
.x6_c01351{left:216.960000pt;}
.xb_c01351{left:226.560000pt;}
.x7_c01351{left:255.360000pt;}
.xc_c01351{left:264.960000pt;}
.x12_c01351{left:292.480000pt;}
.x17_c01351{left:312.960000pt;}
.xa_c01351{left:332.160000pt;}
.x8_c01351{left:341.120000pt;}
.xd_c01351{left:351.360000pt;}
.x15_c01351{left:360.960000pt;}
.x9_c01351{left:389.760000pt;}
.xe_c01351{left:398.720000pt;}
.x24_c01351{left:531.840000pt;}
.x21_c01351{left:533.120000pt;}
.x27_c01351{left:542.080000pt;}
.x1a_c01351{left:543.360000pt;}
.x1e_c01351{left:561.280000pt;}
.x1d_c01351{left:562.560000pt;}
.x25_c01351{left:590.080000pt;}
.x1b_c01351{left:591.360000pt;}
.x1f_c01351{left:592.640000pt;}
.x26_c01351{left:599.680000pt;}
.x1_c01351{left:600.960000pt;}
.x23_c01351{left:619.520000pt;}
.x20_c01351{left:628.480000pt;}
.x1c_c01351{left:629.760000pt;}
.x22_c01351{left:647.040000pt;}
}





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

.ir_c01352:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01352{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01352;src:url('chunks/assets/font_f62cfee93a9be98f1636c819.woff2')format("woff");}.ff1_c01352{font-family:ff1_c01352;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m47_c01352{transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);}
.m3_c01352{transform:matrix(0.224400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224400,0.000000,0.000000,0.250000,0,0);}
.m31_c01352{transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);}
.m44_c01352{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m2c_c01352{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m25_c01352{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);}
.m33_c01352{transform:matrix(0.243075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243075,0.000000,0.000000,0.250000,0,0);}
.m2b_c01352{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);}
.m28_c01352{transform:matrix(0.244450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244450,0.000000,0.000000,0.250000,0,0);}
.m2d_c01352{transform:matrix(0.245425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245425,0.000000,0.000000,0.250000,0,0);}
.m3f_c01352{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m19_c01352{transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);}
.m1e_c01352{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);}
.m30_c01352{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);}
.m23_c01352{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.md_c01352{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_c01352{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);}
.m21_c01352{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m14_c01352{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_c01352{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m5_c01352{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m13_c01352{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);}
.m20_c01352{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m9_c01352{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mc_c01352{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m12_c01352{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01352{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m45_c01352{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01352{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m11_c01352{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m24_c01352{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m36_c01352{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01352{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01352{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01352{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m42_c01352{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m17_c01352{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m35_c01352{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m7_c01352{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mf_c01352{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m22_c01352{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01352{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m18_c01352{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);}
.m2a_c01352{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);}
.m37_c01352{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);}
.m34_c01352{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_c01352{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m15_c01352{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);}
.m29_c01352{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);}
.m0_c01352{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);}
.m4_c01352{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01352{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m43_c01352{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_c01352{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);}
.m3e_c01352{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.mb_c01352{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);}
.m26_c01352{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m16_c01352{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m6_c01352{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);}
.m1d_c01352{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.me_c01352{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);}
.m3b_c01352{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.ma_c01352{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m40_c01352{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m2_c01352{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m27_c01352{transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);}
.m38_c01352{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01352{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);}
.m46_c01352{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.m32_c01352{transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);}
.m41_c01352{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.m39_c01352{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.v1_c01352{vertical-align:-8.640000px;}
.v2_c01352{vertical-align:-5.760000px;}
.v0_c01352{vertical-align:0.000000px;}
.ls0_c01352{letter-spacing:0.000000px;}
.sc__c01352{text-shadow:none;}
.sc0_c01352{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01352{-webkit-text-stroke:0px transparent;}
.sc0_c01352{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01352{word-spacing:0.000000px;}
.ws0_c01352{word-spacing:9.474000px;}
.ws1_c01352{word-spacing:51.358496px;}
.fc0_c01352{color:transparent;}
.fse_c01352{font-size:28.800000px;}
.fsd_c01352{font-size:31.680000px;}
.fs8_c01352{font-size:37.440000px;}
.fs6_c01352{font-size:40.320000px;}
.fsa_c01352{font-size:46.080000px;}
.fsf_c01352{font-size:48.960000px;}
.fs2_c01352{font-size:51.840000px;}
.fsb_c01352{font-size:54.720000px;}
.fsc_c01352{font-size:57.600000px;}
.fs4_c01352{font-size:60.480000px;}
.fs0_c01352{font-size:63.360000px;}
.fs9_c01352{font-size:66.240000px;}
.fs7_c01352{font-size:69.120000px;}
.fs3_c01352{font-size:72.000000px;}
.fs1_c01352{font-size:74.880000px;}
.fs5_c01352{font-size:77.760000px;}
.y0_c01352{bottom:0.000000px;}
.y46_c01352{bottom:42.480000px;}
.y48_c01352{bottom:43.920000px;}
.y47_c01352{bottom:46.080000px;}
.y44_c01352{bottom:47.520000px;}
.y45_c01352{bottom:48.240000px;}
.y7c_c01352{bottom:48.960000px;}
.y7d_c01352{bottom:50.400000px;}
.y42_c01352{bottom:85.680000px;}
.y43_c01352{bottom:86.400000px;}
.y41_c01352{bottom:89.280000px;}
.y7a_c01352{bottom:90.000000px;}
.y7b_c01352{bottom:91.440000px;}
.y79_c01352{bottom:92.160000px;}
.y3e_c01352{bottom:128.880000px;}
.y40_c01352{bottom:130.320000px;}
.y3f_c01352{bottom:131.040000px;}
.y3d_c01352{bottom:133.920000px;}
.y77_c01352{bottom:134.640000px;}
.y76_c01352{bottom:135.360000px;}
.y78_c01352{bottom:136.800000px;}
.y3b_c01352{bottom:172.800000px;}
.y3a_c01352{bottom:177.120000px;}
.y3c_c01352{bottom:177.840000px;}
.y75_c01352{bottom:180.000000px;}
.y39_c01352{bottom:216.000000px;}
.y38_c01352{bottom:220.320000px;}
.y73_c01352{bottom:222.480000px;}
.y74_c01352{bottom:223.200000px;}
.y37_c01352{bottom:259.920000px;}
.y36_c01352{bottom:262.800000px;}
.y72_c01352{bottom:264.960000px;}
.y70_c01352{bottom:265.680000px;}
.y71_c01352{bottom:266.400000px;}
.y35_c01352{bottom:302.400000px;}
.y34_c01352{bottom:306.720000px;}
.y6e_c01352{bottom:307.440000px;}
.y6d_c01352{bottom:308.160000px;}
.y6f_c01352{bottom:309.600000px;}
.y33_c01352{bottom:346.320000px;}
.y6c_c01352{bottom:349.920000px;}
.y32_c01352{bottom:350.640000px;}
.y6a_c01352{bottom:352.800000px;}
.y6b_c01352{bottom:353.520000px;}
.y31_c01352{bottom:390.240000px;}
.y68_c01352{bottom:392.400000px;}
.y69_c01352{bottom:393.840000px;}
.y30_c01352{bottom:394.560000px;}
.y67_c01352{bottom:396.000000px;}
.y2d_c01352{bottom:432.720000px;}
.y2f_c01352{bottom:433.440000px;}
.y2e_c01352{bottom:434.880000px;}
.y2c_c01352{bottom:437.040000px;}
.y66_c01352{bottom:437.760000px;}
.y65_c01352{bottom:438.480000px;}
.y29_c01352{bottom:475.920000px;}
.y2b_c01352{bottom:477.360000px;}
.y2a_c01352{bottom:478.080000px;}
.y60_c01352{bottom:478.800000px;}
.y63_c01352{bottom:479.520000px;}
.y61_c01352{bottom:480.240000px;}
.y28_c01352{bottom:480.960000px;}
.y62_c01352{bottom:481.680000px;}
.y64_c01352{bottom:482.400000px;}
.y27_c01352{bottom:519.120000px;}
.y5d_c01352{bottom:522.000000px;}
.y26_c01352{bottom:522.720000px;}
.y5e_c01352{bottom:523.440000px;}
.y5f_c01352{bottom:524.160000px;}
.y25_c01352{bottom:563.040000px;}
.y5b_c01352{bottom:564.480000px;}
.y5c_c01352{bottom:565.920000px;}
.y24_c01352{bottom:567.360000px;}
.y5a_c01352{bottom:568.080000px;}
.y23_c01352{bottom:606.240000px;}
.y22_c01352{bottom:608.400000px;}
.y59_c01352{bottom:609.120000px;}
.y58_c01352{bottom:610.560000px;}
.y20_c01352{bottom:651.600000px;}
.y21_c01352{bottom:653.760000px;}
.y1d_c01352{bottom:681.840000px;}
.y1e_c01352{bottom:684.000000px;}
.y1c_c01352{bottom:684.720000px;}
.y57_c01352{bottom:685.440000px;}
.y1f_c01352{bottom:686.160000px;}
.y1b_c01352{bottom:725.040000px;}
.y18_c01352{bottom:725.760000px;}
.y56_c01352{bottom:726.480000px;}
.y1a_c01352{bottom:727.200000px;}
.y17_c01352{bottom:727.920000px;}
.y19_c01352{bottom:729.360000px;}
.y16_c01352{bottom:768.960000px;}
.y55_c01352{bottom:769.680000px;}
.y54_c01352{bottom:771.120000px;}
.y15_c01352{bottom:772.560000px;}
.y14_c01352{bottom:812.160000px;}
.y53_c01352{bottom:812.880000px;}
.y52_c01352{bottom:814.320000px;}
.y13_c01352{bottom:815.760000px;}
.y12_c01352{bottom:855.360000px;}
.y4f_c01352{bottom:856.800000px;}
.y50_c01352{bottom:857.520000px;}
.y51_c01352{bottom:858.240000px;}
.y11_c01352{bottom:858.960000px;}
.y10_c01352{bottom:898.560000px;}
.ye_c01352{bottom:899.280000px;}
.yd_c01352{bottom:900.720000px;}
.y4e_c01352{bottom:901.440000px;}
.yf_c01352{bottom:902.160000px;}
.ya_c01352{bottom:941.760000px;}
.yc_c01352{bottom:942.480000px;}
.y9_c01352{bottom:943.920000px;}
.y4d_c01352{bottom:944.640000px;}
.yb_c01352{bottom:946.080000px;}
.y8_c01352{bottom:984.240000px;}
.y5_c01352{bottom:984.960000px;}
.y4c_c01352{bottom:985.680000px;}
.y4_c01352{bottom:987.120000px;}
.y4b_c01352{bottom:987.840000px;}
.y6_c01352{bottom:988.560000px;}
.y7_c01352{bottom:989.280000px;}
.y4a_c01352{bottom:1028.160000px;}
.y2_c01352{bottom:1028.880000px;}
.y1_c01352{bottom:1030.320000px;}
.y3_c01352{bottom:1032.480000px;}
.y49_c01352{bottom:1092.960000px;}
.h10_c01352{height:25.917187px;}
.hf_c01352{height:28.508906px;}
.ha_c01352{height:33.692344px;}
.h8_c01352{height:36.284062px;}
.hc_c01352{height:41.467500px;}
.h11_c01352{height:44.059219px;}
.h4_c01352{height:46.650937px;}
.hd_c01352{height:49.242656px;}
.he_c01352{height:51.834375px;}
.h6_c01352{height:54.426094px;}
.h2_c01352{height:57.017812px;}
.hb_c01352{height:59.609531px;}
.h9_c01352{height:62.201250px;}
.h5_c01352{height:64.792969px;}
.h3_c01352{height:67.384687px;}
.h7_c01352{height:69.976406px;}
.h1_c01352{height:1149.000000px;}
.h0_c01352{height:1149.120000px;}
.w1_c01352{width:770.250000px;}
.w0_c01352{width:770.400000px;}
.x0_c01352{left:0.000000px;}
.x1_c01352{left:49.680000px;}
.x8_c01352{left:51.120000px;}
.x16_c01352{left:52.560360px;}
.x18_c01352{left:54.000000px;}
.x17_c01352{left:82.800000px;}
.x2_c01352{left:113.040000px;}
.x5_c01352{left:114.480000px;}
.x12_c01352{left:156.960000px;}
.x9_c01352{left:200.880000px;}
.x3_c01352{left:210.960000px;}
.x13_c01352{left:222.480000px;}
.x6_c01352{left:233.280000px;}
.xe_c01352{left:243.360000px;}
.xf_c01352{left:253.440000px;}
.xa_c01352{left:254.880000px;}
.x4_c01352{left:275.760000px;}
.x14_c01352{left:287.280000px;}
.xb_c01352{left:297.360000px;}
.x15_c01352{left:329.760000px;}
.x19_c01352{left:350.640000px;}
.x1b_c01352{left:362.880000px;}
.x7_c01352{left:373.680000px;}
.x10_c01352{left:384.480000px;}
.x1a_c01352{left:395.280000px;}
.xc_c01352{left:416.880000px;}
.x11_c01352{left:437.760000px;}
.xd_c01352{left:459.360000px;}
.x29_c01352{left:567.360000px;}
.x26_c01352{left:576.720000px;}
.x25_c01352{left:578.880000px;}
.x2c_c01352{left:597.600000px;}
.x1d_c01352{left:599.040000px;}
.x23_c01352{left:630.720000px;}
.x20_c01352{left:632.160000px;}
.x2d_c01352{left:662.400000px;}
.x27_c01352{left:663.840000px;}
.x1e_c01352{left:665.280000px;}
.x2e_c01352{left:673.920000px;}
.x1c_c01352{left:676.800000px;}
.x2b_c01352{left:695.520000px;}
.x24_c01352{left:696.960000px;}
.x2a_c01352{left:704.880000px;}
.x21_c01352{left:707.040000px;}
.x1f_c01352{left:708.480000px;}
.x28_c01352{left:726.480000px;}
.x22_c01352{left:727.920000px;}
@media print{
.v1_c01352{vertical-align:-7.680000pt;}
.v2_c01352{vertical-align:-5.120000pt;}
.v0_c01352{vertical-align:0.000000pt;}
.ls0_c01352{letter-spacing:0.000000pt;}
.ws2_c01352{word-spacing:0.000000pt;}
.ws0_c01352{word-spacing:8.421333pt;}
.ws1_c01352{word-spacing:45.651996pt;}
.fse_c01352{font-size:25.600000pt;}
.fsd_c01352{font-size:28.160000pt;}
.fs8_c01352{font-size:33.280000pt;}
.fs6_c01352{font-size:35.840000pt;}
.fsa_c01352{font-size:40.960000pt;}
.fsf_c01352{font-size:43.520000pt;}
.fs2_c01352{font-size:46.080000pt;}
.fsb_c01352{font-size:48.640000pt;}
.fsc_c01352{font-size:51.200000pt;}
.fs4_c01352{font-size:53.760000pt;}
.fs0_c01352{font-size:56.320000pt;}
.fs9_c01352{font-size:58.880000pt;}
.fs7_c01352{font-size:61.440000pt;}
.fs3_c01352{font-size:64.000000pt;}
.fs1_c01352{font-size:66.560000pt;}
.fs5_c01352{font-size:69.120000pt;}
.y0_c01352{bottom:0.000000pt;}
.y46_c01352{bottom:37.760000pt;}
.y48_c01352{bottom:39.040000pt;}
.y47_c01352{bottom:40.960000pt;}
.y44_c01352{bottom:42.240000pt;}
.y45_c01352{bottom:42.880000pt;}
.y7c_c01352{bottom:43.520000pt;}
.y7d_c01352{bottom:44.800000pt;}
.y42_c01352{bottom:76.160000pt;}
.y43_c01352{bottom:76.800000pt;}
.y41_c01352{bottom:79.360000pt;}
.y7a_c01352{bottom:80.000000pt;}
.y7b_c01352{bottom:81.280000pt;}
.y79_c01352{bottom:81.920000pt;}
.y3e_c01352{bottom:114.560000pt;}
.y40_c01352{bottom:115.840000pt;}
.y3f_c01352{bottom:116.480000pt;}
.y3d_c01352{bottom:119.040000pt;}
.y77_c01352{bottom:119.680000pt;}
.y76_c01352{bottom:120.320000pt;}
.y78_c01352{bottom:121.600000pt;}
.y3b_c01352{bottom:153.600000pt;}
.y3a_c01352{bottom:157.440000pt;}
.y3c_c01352{bottom:158.080000pt;}
.y75_c01352{bottom:160.000000pt;}
.y39_c01352{bottom:192.000000pt;}
.y38_c01352{bottom:195.840000pt;}
.y73_c01352{bottom:197.760000pt;}
.y74_c01352{bottom:198.400000pt;}
.y37_c01352{bottom:231.040000pt;}
.y36_c01352{bottom:233.600000pt;}
.y72_c01352{bottom:235.520000pt;}
.y70_c01352{bottom:236.160000pt;}
.y71_c01352{bottom:236.800000pt;}
.y35_c01352{bottom:268.800000pt;}
.y34_c01352{bottom:272.640000pt;}
.y6e_c01352{bottom:273.280000pt;}
.y6d_c01352{bottom:273.920000pt;}
.y6f_c01352{bottom:275.200000pt;}
.y33_c01352{bottom:307.840000pt;}
.y6c_c01352{bottom:311.040000pt;}
.y32_c01352{bottom:311.680000pt;}
.y6a_c01352{bottom:313.600000pt;}
.y6b_c01352{bottom:314.240000pt;}
.y31_c01352{bottom:346.880000pt;}
.y68_c01352{bottom:348.800000pt;}
.y69_c01352{bottom:350.080000pt;}
.y30_c01352{bottom:350.720000pt;}
.y67_c01352{bottom:352.000000pt;}
.y2d_c01352{bottom:384.640000pt;}
.y2f_c01352{bottom:385.280000pt;}
.y2e_c01352{bottom:386.560000pt;}
.y2c_c01352{bottom:388.480000pt;}
.y66_c01352{bottom:389.120000pt;}
.y65_c01352{bottom:389.760000pt;}
.y29_c01352{bottom:423.040000pt;}
.y2b_c01352{bottom:424.320000pt;}
.y2a_c01352{bottom:424.960000pt;}
.y60_c01352{bottom:425.600000pt;}
.y63_c01352{bottom:426.240000pt;}
.y61_c01352{bottom:426.880000pt;}
.y28_c01352{bottom:427.520000pt;}
.y62_c01352{bottom:428.160000pt;}
.y64_c01352{bottom:428.800000pt;}
.y27_c01352{bottom:461.440000pt;}
.y5d_c01352{bottom:464.000000pt;}
.y26_c01352{bottom:464.640000pt;}
.y5e_c01352{bottom:465.280000pt;}
.y5f_c01352{bottom:465.920000pt;}
.y25_c01352{bottom:500.480000pt;}
.y5b_c01352{bottom:501.760000pt;}
.y5c_c01352{bottom:503.040000pt;}
.y24_c01352{bottom:504.320000pt;}
.y5a_c01352{bottom:504.960000pt;}
.y23_c01352{bottom:538.880000pt;}
.y22_c01352{bottom:540.800000pt;}
.y59_c01352{bottom:541.440000pt;}
.y58_c01352{bottom:542.720000pt;}
.y20_c01352{bottom:579.200000pt;}
.y21_c01352{bottom:581.120000pt;}
.y1d_c01352{bottom:606.080000pt;}
.y1e_c01352{bottom:608.000000pt;}
.y1c_c01352{bottom:608.640000pt;}
.y57_c01352{bottom:609.280000pt;}
.y1f_c01352{bottom:609.920000pt;}
.y1b_c01352{bottom:644.480000pt;}
.y18_c01352{bottom:645.120000pt;}
.y56_c01352{bottom:645.760000pt;}
.y1a_c01352{bottom:646.400000pt;}
.y17_c01352{bottom:647.040000pt;}
.y19_c01352{bottom:648.320000pt;}
.y16_c01352{bottom:683.520000pt;}
.y55_c01352{bottom:684.160000pt;}
.y54_c01352{bottom:685.440000pt;}
.y15_c01352{bottom:686.720000pt;}
.y14_c01352{bottom:721.920000pt;}
.y53_c01352{bottom:722.560000pt;}
.y52_c01352{bottom:723.840000pt;}
.y13_c01352{bottom:725.120000pt;}
.y12_c01352{bottom:760.320000pt;}
.y4f_c01352{bottom:761.600000pt;}
.y50_c01352{bottom:762.240000pt;}
.y51_c01352{bottom:762.880000pt;}
.y11_c01352{bottom:763.520000pt;}
.y10_c01352{bottom:798.720000pt;}
.ye_c01352{bottom:799.360000pt;}
.yd_c01352{bottom:800.640000pt;}
.y4e_c01352{bottom:801.280000pt;}
.yf_c01352{bottom:801.920000pt;}
.ya_c01352{bottom:837.120000pt;}
.yc_c01352{bottom:837.760000pt;}
.y9_c01352{bottom:839.040000pt;}
.y4d_c01352{bottom:839.680000pt;}
.yb_c01352{bottom:840.960000pt;}
.y8_c01352{bottom:874.880000pt;}
.y5_c01352{bottom:875.520000pt;}
.y4c_c01352{bottom:876.160000pt;}
.y4_c01352{bottom:877.440000pt;}
.y4b_c01352{bottom:878.080000pt;}
.y6_c01352{bottom:878.720000pt;}
.y7_c01352{bottom:879.360000pt;}
.y4a_c01352{bottom:913.920000pt;}
.y2_c01352{bottom:914.560000pt;}
.y1_c01352{bottom:915.840000pt;}
.y3_c01352{bottom:917.760000pt;}
.y49_c01352{bottom:971.520000pt;}
.h10_c01352{height:23.037500pt;}
.hf_c01352{height:25.341250pt;}
.ha_c01352{height:29.948750pt;}
.h8_c01352{height:32.252500pt;}
.hc_c01352{height:36.860000pt;}
.h11_c01352{height:39.163750pt;}
.h4_c01352{height:41.467500pt;}
.hd_c01352{height:43.771250pt;}
.he_c01352{height:46.075000pt;}
.h6_c01352{height:48.378750pt;}
.h2_c01352{height:50.682500pt;}
.hb_c01352{height:52.986250pt;}
.h9_c01352{height:55.290000pt;}
.h5_c01352{height:57.593750pt;}
.h3_c01352{height:59.897500pt;}
.h7_c01352{height:62.201250pt;}
.h1_c01352{height:1021.333333pt;}
.h0_c01352{height:1021.440000pt;}
.w1_c01352{width:684.666667pt;}
.w0_c01352{width:684.800000pt;}
.x0_c01352{left:0.000000pt;}
.x1_c01352{left:44.160000pt;}
.x8_c01352{left:45.440000pt;}
.x16_c01352{left:46.720320pt;}
.x18_c01352{left:48.000000pt;}
.x17_c01352{left:73.600000pt;}
.x2_c01352{left:100.480000pt;}
.x5_c01352{left:101.760000pt;}
.x12_c01352{left:139.520000pt;}
.x9_c01352{left:178.560000pt;}
.x3_c01352{left:187.520000pt;}
.x13_c01352{left:197.760000pt;}
.x6_c01352{left:207.360000pt;}
.xe_c01352{left:216.320000pt;}
.xf_c01352{left:225.280000pt;}
.xa_c01352{left:226.560000pt;}
.x4_c01352{left:245.120000pt;}
.x14_c01352{left:255.360000pt;}
.xb_c01352{left:264.320000pt;}
.x15_c01352{left:293.120000pt;}
.x19_c01352{left:311.680000pt;}
.x1b_c01352{left:322.560000pt;}
.x7_c01352{left:332.160000pt;}
.x10_c01352{left:341.760000pt;}
.x1a_c01352{left:351.360000pt;}
.xc_c01352{left:370.560000pt;}
.x11_c01352{left:389.120000pt;}
.xd_c01352{left:408.320000pt;}
.x29_c01352{left:504.320000pt;}
.x26_c01352{left:512.640000pt;}
.x25_c01352{left:514.560000pt;}
.x2c_c01352{left:531.200000pt;}
.x1d_c01352{left:532.480000pt;}
.x23_c01352{left:560.640000pt;}
.x20_c01352{left:561.920000pt;}
.x2d_c01352{left:588.800000pt;}
.x27_c01352{left:590.080000pt;}
.x1e_c01352{left:591.360000pt;}
.x2e_c01352{left:599.040000pt;}
.x1c_c01352{left:601.600000pt;}
.x2b_c01352{left:618.240000pt;}
.x24_c01352{left:619.520000pt;}
.x2a_c01352{left:626.560000pt;}
.x21_c01352{left:628.480000pt;}
.x1f_c01352{left:629.760000pt;}
.x28_c01352{left:645.760000pt;}
.x22_c01352{left:647.040000pt;}
}





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

.ir_c01353:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01353{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01353;src:url('chunks/assets/font_1c97f7d0c7d073680540cb6c.woff2')format("woff");}.ff1_c01353{font-family:ff1_c01353;line-height:1.109863;font-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_c01353{transform:matrix(0.156125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156125,0.000000,0.000000,0.250000,0,0);}
.m22_c01353{transform:matrix(0.205525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205525,0.000000,0.000000,0.250000,0,0);}
.m48_c01353{transform:matrix(0.212700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212700,0.000000,0.000000,0.250000,0,0);}
.m42_c01353{transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);}
.m3e_c01353{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_c01353{transform:matrix(0.231650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231650,0.000000,0.000000,0.250000,0,0);}
.m16_c01353{transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);}
.m5_c01353{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m1b_c01353{transform:matrix(0.240225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240225,0.000000,0.000000,0.250000,0,0);}
.m20_c01353{transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);}
.m1f_c01353{transform:matrix(0.245400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245400,0.000000,0.000000,0.250000,0,0);}
.m44_c01353{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.mc_c01353{transform:matrix(0.247675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247675,0.000000,0.000000,0.250000,0,0);}
.m27_c01353{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01353{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m6_c01353{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m26_c01353{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mb_c01353{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);}
.m3f_c01353{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_c01353{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);}
.m40_c01353{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m13_c01353{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);}
.m25_c01353{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);}
.m45_c01353{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1_c01353{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m14_c01353{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01353{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m10_c01353{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01353{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m37_c01353{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m12_c01353{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01353{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01353{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m29_c01353{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m4_c01353{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m43_c01353{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m41_c01353{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m7_c01353{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m11_c01353{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m31_c01353{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m9_c01353{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);}
.m30_c01353{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m19_c01353{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);}
.m36_c01353{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_c01353{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m2_c01353{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m18_c01353{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);}
.m49_c01353{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);}
.m15_c01353{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01353{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m0_c01353{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m24_c01353{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);}
.m1e_c01353{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m21_c01353{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);}
.m34_c01353{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.me_c01353{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);}
.ma_c01353{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);}
.m28_c01353{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01353{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01353{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);}
.m2f_c01353{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01353{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m33_c01353{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01353{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.md_c01353{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m38_c01353{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);}
.m3a_c01353{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m35_c01353{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m39_c01353{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m32_c01353{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m46_c01353{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01353{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);}
.m3b_c01353{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m47_c01353{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.m17_c01353{transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);}
.v2_c01353{vertical-align:-8.640000px;}
.v1_c01353{vertical-align:-2.880000px;}
.v0_c01353{vertical-align:0.000000px;}
.ls0_c01353{letter-spacing:0.000000px;}
.sc__c01353{text-shadow:none;}
.sc0_c01353{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01353{-webkit-text-stroke:0px transparent;}
.sc0_c01353{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01353{word-spacing:-8.402279px;}
.ws4_c01353{word-spacing:0.000000px;}
.ws2_c01353{word-spacing:0.536880px;}
.ws1_c01353{word-spacing:6.861600px;}
.ws3_c01353{word-spacing:11.648400px;}
.fc0_c01353{color:transparent;}
.fsb_c01353{font-size:28.800000px;}
.fsd_c01353{font-size:37.440000px;}
.fsf_c01353{font-size:40.320000px;}
.fs7_c01353{font-size:48.960000px;}
.fs5_c01353{font-size:51.840000px;}
.fs8_c01353{font-size:54.720000px;}
.fs6_c01353{font-size:57.600000px;}
.fs0_c01353{font-size:60.480000px;}
.fs4_c01353{font-size:63.360000px;}
.fse_c01353{font-size:66.240000px;}
.fs3_c01353{font-size:69.120000px;}
.fs9_c01353{font-size:72.000000px;}
.fs2_c01353{font-size:74.880000px;}
.fs1_c01353{font-size:77.760000px;}
.fsa_c01353{font-size:80.640000px;}
.fsc_c01353{font-size:115.200000px;}
.y0_c01353{bottom:0.000000px;}
.y49_c01353{bottom:57.600000px;}
.y48_c01353{bottom:59.760000px;}
.y47_c01353{bottom:60.480000px;}
.y4a_c01353{bottom:61.200000px;}
.y4b_c01353{bottom:61.920000px;}
.y4c_c01353{bottom:63.360000px;}
.y79_c01353{bottom:64.800000px;}
.y45_c01353{bottom:101.520000px;}
.y46_c01353{bottom:102.240000px;}
.y44_c01353{bottom:103.680000px;}
.y76_c01353{bottom:105.840000px;}
.y77_c01353{bottom:106.560000px;}
.y78_c01353{bottom:108.000000px;}
.y42_c01353{bottom:143.280000px;}
.y41_c01353{bottom:144.000000px;}
.y40_c01353{bottom:145.440000px;}
.y43_c01353{bottom:146.880000px;}
.y73_c01353{bottom:148.320000px;}
.y74_c01353{bottom:149.760000px;}
.y75_c01353{bottom:151.200000px;}
.y3e_c01353{bottom:187.200000px;}
.y3d_c01353{bottom:187.920000px;}
.y3c_c01353{bottom:189.360000px;}
.y3f_c01353{bottom:191.520000px;}
.y71_c01353{bottom:192.240000px;}
.y70_c01353{bottom:192.960000px;}
.y72_c01353{bottom:193.680000px;}
.y3b_c01353{bottom:230.400000px;}
.y39_c01353{bottom:231.840000px;}
.y3a_c01353{bottom:232.560000px;}
.y6e_c01353{bottom:234.000000px;}
.y6f_c01353{bottom:236.160000px;}
.y38_c01353{bottom:273.600000px;}
.y37_c01353{bottom:275.760000px;}
.y6b_c01353{bottom:276.480000px;}
.y6c_c01353{bottom:278.640000px;}
.y6d_c01353{bottom:279.360000px;}
.y36_c01353{bottom:316.800000px;}
.y35_c01353{bottom:318.240000px;}
.y69_c01353{bottom:320.400000px;}
.y6a_c01353{bottom:321.840000px;}
.y34_c01353{bottom:357.840000px;}
.y33_c01353{bottom:360.720000px;}
.y67_c01353{bottom:362.880000px;}
.y68_c01353{bottom:363.600000px;}
.y31_c01353{bottom:401.760000px;}
.y30_c01353{bottom:403.200000px;}
.y2f_c01353{bottom:403.920000px;}
.y32_c01353{bottom:406.080000px;}
.y65_c01353{bottom:407.520000px;}
.y66_c01353{bottom:408.240000px;}
.y2c_c01353{bottom:444.960000px;}
.y2e_c01353{bottom:445.680000px;}
.y2d_c01353{bottom:448.560000px;}
.y63_c01353{bottom:449.280000px;}
.y62_c01353{bottom:450.720000px;}
.y64_c01353{bottom:452.160000px;}
.y2a_c01353{bottom:488.880000px;}
.y29_c01353{bottom:491.040000px;}
.y2b_c01353{bottom:492.480000px;}
.y28_c01353{bottom:531.360000px;}
.y27_c01353{bottom:533.520000px;}
.y60_c01353{bottom:534.960000px;}
.y61_c01353{bottom:535.680000px;}
.y26_c01353{bottom:575.280000px;}
.y25_c01353{bottom:577.440000px;}
.y5e_c01353{bottom:578.880000px;}
.y5f_c01353{bottom:579.600000px;}
.y5d_c01353{bottom:581.040000px;}
.y23_c01353{bottom:618.480000px;}
.y22_c01353{bottom:619.920000px;}
.y24_c01353{bottom:620.640000px;}
.y5c_c01353{bottom:621.360000px;}
.y5b_c01353{bottom:622.080000px;}
.y21_c01353{bottom:661.680000px;}
.y20_c01353{bottom:663.120000px;}
.y58_c01353{bottom:664.560000px;}
.y5a_c01353{bottom:665.280000px;}
.y59_c01353{bottom:666.720000px;}
.y57_c01353{bottom:667.440000px;}
.y1e_c01353{bottom:704.880000px;}
.y1f_c01353{bottom:706.320000px;}
.y1d_c01353{bottom:707.040000px;}
.y56_c01353{bottom:707.760000px;}
.y1c_c01353{bottom:748.080000px;}
.y1b_c01353{bottom:749.520000px;}
.y55_c01353{bottom:750.240000px;}
.y53_c01353{bottom:750.960000px;}
.y54_c01353{bottom:752.400000px;}
.y1a_c01353{bottom:791.280000px;}
.y18_c01353{bottom:792.720000px;}
.y51_c01353{bottom:793.440000px;}
.y52_c01353{bottom:794.160000px;}
.y19_c01353{bottom:794.880000px;}
.y16_c01353{bottom:834.480000px;}
.y15_c01353{bottom:835.920000px;}
.y17_c01353{bottom:836.640000px;}
.y50_c01353{bottom:838.080000px;}
.y13_c01353{bottom:876.960000px;}
.y14_c01353{bottom:877.680000px;}
.y12_c01353{bottom:878.400000px;}
.y4e_c01353{bottom:879.120000px;}
.y4d_c01353{bottom:879.840000px;}
.y4f_c01353{bottom:880.560000px;}
.y11_c01353{bottom:920.880000px;}
.y10_c01353{bottom:922.320000px;}
.yc_c01353{bottom:952.560000px;}
.yd_c01353{bottom:954.000000px;}
.yb_c01353{bottom:954.720000px;}
.yf_c01353{bottom:955.440000px;}
.ye_c01353{bottom:956.160000px;}
.y7_c01353{bottom:995.760000px;}
.y8_c01353{bottom:997.200000px;}
.y6_c01353{bottom:997.920000px;}
.ya_c01353{bottom:998.640000px;}
.y9_c01353{bottom:1000.080000px;}
.y2_c01353{bottom:1039.680000px;}
.y5_c01353{bottom:1040.400000px;}
.y4_c01353{bottom:1041.120000px;}
.y1_c01353{bottom:1041.840000px;}
.y3_c01353{bottom:1108.080000px;}
.hd_c01353{height:25.917187px;}
.h10_c01353{height:33.692344px;}
.h12_c01353{height:36.284062px;}
.h9_c01353{height:44.059219px;}
.h7_c01353{height:46.650937px;}
.ha_c01353{height:49.242656px;}
.h8_c01353{height:51.834375px;}
.h2_c01353{height:54.426094px;}
.h6_c01353{height:57.017812px;}
.he_c01353{height:59.321250px;}
.h11_c01353{height:59.609531px;}
.h5_c01353{height:62.201250px;}
.hb_c01353{height:64.792969px;}
.h4_c01353{height:67.384687px;}
.h3_c01353{height:69.976406px;}
.hc_c01353{height:72.568125px;}
.hf_c01353{height:103.668750px;}
.h1_c01353{height:1151.250000px;}
.h0_c01353{height:1151.280000px;}
.w1_c01353{width:772.500000px;}
.w0_c01353{width:772.560000px;}
.x0_c01353{left:0.000000px;}
.x1_c01353{left:53.280000px;}
.x12_c01353{left:54.720000px;}
.x17_c01353{left:56.160000px;}
.x20_c01353{left:57.600000px;}
.x11_c01353{left:85.680000px;}
.xd_c01353{left:105.120000px;}
.x2_c01353{left:115.920000px;}
.x1a_c01353{left:118.080000px;}
.x15_c01353{left:182.880000px;}
.xe_c01353{left:203.040000px;}
.x13_c01353{left:204.480000px;}
.x16_c01353{left:225.360000px;}
.xb_c01353{left:246.960000px;}
.x1b_c01353{left:257.760000px;}
.x1c_c01353{left:259.200000px;}
.x1f_c01353{left:269.280000px;}
.x14_c01353{left:290.160000px;}
.x18_c01353{left:291.600000px;}
.x10_c01353{left:332.640000px;}
.x1d_c01353{left:334.080000px;}
.x21_c01353{left:367.200000px;}
.x1e_c01353{left:388.800000px;}
.xf_c01353{left:419.040000px;}
.x22_c01353{left:421.200000px;}
.x19_c01353{left:430.560000px;}
.x23_c01353{left:462.960000px;}
.x7_c01353{left:473.040000px;}
.xc_c01353{left:526.320000px;}
.x8_c01353{left:570.240000px;}
.x2b_c01353{left:580.320000px;}
.x4_c01353{left:581.760000px;}
.x2a_c01353{left:601.200000px;}
.x5_c01353{left:602.640000px;}
.x24_c01353{left:633.600000px;}
.x9_c01353{left:635.760000px;}
.x29_c01353{left:637.200000px;}
.x3_c01353{left:667.440000px;}
.x27_c01353{left:677.520000px;}
.x25_c01353{left:699.840000px;}
.x28_c01353{left:709.200000px;}
.xa_c01353{left:710.640000px;}
.x6_c01353{left:712.080000px;}
.x2c_c01353{left:730.080000px;}
.x26_c01353{left:731.520000px;}
@media print{
.v2_c01353{vertical-align:-7.680000pt;}
.v1_c01353{vertical-align:-2.560000pt;}
.v0_c01353{vertical-align:0.000000pt;}
.ls0_c01353{letter-spacing:0.000000pt;}
.ws0_c01353{word-spacing:-7.468692pt;}
.ws4_c01353{word-spacing:0.000000pt;}
.ws2_c01353{word-spacing:0.477227pt;}
.ws1_c01353{word-spacing:6.099200pt;}
.ws3_c01353{word-spacing:10.354133pt;}
.fsb_c01353{font-size:25.600000pt;}
.fsd_c01353{font-size:33.280000pt;}
.fsf_c01353{font-size:35.840000pt;}
.fs7_c01353{font-size:43.520000pt;}
.fs5_c01353{font-size:46.080000pt;}
.fs8_c01353{font-size:48.640000pt;}
.fs6_c01353{font-size:51.200000pt;}
.fs0_c01353{font-size:53.760000pt;}
.fs4_c01353{font-size:56.320000pt;}
.fse_c01353{font-size:58.880000pt;}
.fs3_c01353{font-size:61.440000pt;}
.fs9_c01353{font-size:64.000000pt;}
.fs2_c01353{font-size:66.560000pt;}
.fs1_c01353{font-size:69.120000pt;}
.fsa_c01353{font-size:71.680000pt;}
.fsc_c01353{font-size:102.400000pt;}
.y0_c01353{bottom:0.000000pt;}
.y49_c01353{bottom:51.200000pt;}
.y48_c01353{bottom:53.120000pt;}
.y47_c01353{bottom:53.760000pt;}
.y4a_c01353{bottom:54.400000pt;}
.y4b_c01353{bottom:55.040000pt;}
.y4c_c01353{bottom:56.320000pt;}
.y79_c01353{bottom:57.600000pt;}
.y45_c01353{bottom:90.240000pt;}
.y46_c01353{bottom:90.880000pt;}
.y44_c01353{bottom:92.160000pt;}
.y76_c01353{bottom:94.080000pt;}
.y77_c01353{bottom:94.720000pt;}
.y78_c01353{bottom:96.000000pt;}
.y42_c01353{bottom:127.360000pt;}
.y41_c01353{bottom:128.000000pt;}
.y40_c01353{bottom:129.280000pt;}
.y43_c01353{bottom:130.560000pt;}
.y73_c01353{bottom:131.840000pt;}
.y74_c01353{bottom:133.120000pt;}
.y75_c01353{bottom:134.400000pt;}
.y3e_c01353{bottom:166.400000pt;}
.y3d_c01353{bottom:167.040000pt;}
.y3c_c01353{bottom:168.320000pt;}
.y3f_c01353{bottom:170.240000pt;}
.y71_c01353{bottom:170.880000pt;}
.y70_c01353{bottom:171.520000pt;}
.y72_c01353{bottom:172.160000pt;}
.y3b_c01353{bottom:204.800000pt;}
.y39_c01353{bottom:206.080000pt;}
.y3a_c01353{bottom:206.720000pt;}
.y6e_c01353{bottom:208.000000pt;}
.y6f_c01353{bottom:209.920000pt;}
.y38_c01353{bottom:243.200000pt;}
.y37_c01353{bottom:245.120000pt;}
.y6b_c01353{bottom:245.760000pt;}
.y6c_c01353{bottom:247.680000pt;}
.y6d_c01353{bottom:248.320000pt;}
.y36_c01353{bottom:281.600000pt;}
.y35_c01353{bottom:282.880000pt;}
.y69_c01353{bottom:284.800000pt;}
.y6a_c01353{bottom:286.080000pt;}
.y34_c01353{bottom:318.080000pt;}
.y33_c01353{bottom:320.640000pt;}
.y67_c01353{bottom:322.560000pt;}
.y68_c01353{bottom:323.200000pt;}
.y31_c01353{bottom:357.120000pt;}
.y30_c01353{bottom:358.400000pt;}
.y2f_c01353{bottom:359.040000pt;}
.y32_c01353{bottom:360.960000pt;}
.y65_c01353{bottom:362.240000pt;}
.y66_c01353{bottom:362.880000pt;}
.y2c_c01353{bottom:395.520000pt;}
.y2e_c01353{bottom:396.160000pt;}
.y2d_c01353{bottom:398.720000pt;}
.y63_c01353{bottom:399.360000pt;}
.y62_c01353{bottom:400.640000pt;}
.y64_c01353{bottom:401.920000pt;}
.y2a_c01353{bottom:434.560000pt;}
.y29_c01353{bottom:436.480000pt;}
.y2b_c01353{bottom:437.760000pt;}
.y28_c01353{bottom:472.320000pt;}
.y27_c01353{bottom:474.240000pt;}
.y60_c01353{bottom:475.520000pt;}
.y61_c01353{bottom:476.160000pt;}
.y26_c01353{bottom:511.360000pt;}
.y25_c01353{bottom:513.280000pt;}
.y5e_c01353{bottom:514.560000pt;}
.y5f_c01353{bottom:515.200000pt;}
.y5d_c01353{bottom:516.480000pt;}
.y23_c01353{bottom:549.760000pt;}
.y22_c01353{bottom:551.040000pt;}
.y24_c01353{bottom:551.680000pt;}
.y5c_c01353{bottom:552.320000pt;}
.y5b_c01353{bottom:552.960000pt;}
.y21_c01353{bottom:588.160000pt;}
.y20_c01353{bottom:589.440000pt;}
.y58_c01353{bottom:590.720000pt;}
.y5a_c01353{bottom:591.360000pt;}
.y59_c01353{bottom:592.640000pt;}
.y57_c01353{bottom:593.280000pt;}
.y1e_c01353{bottom:626.560000pt;}
.y1f_c01353{bottom:627.840000pt;}
.y1d_c01353{bottom:628.480000pt;}
.y56_c01353{bottom:629.120000pt;}
.y1c_c01353{bottom:664.960000pt;}
.y1b_c01353{bottom:666.240000pt;}
.y55_c01353{bottom:666.880000pt;}
.y53_c01353{bottom:667.520000pt;}
.y54_c01353{bottom:668.800000pt;}
.y1a_c01353{bottom:703.360000pt;}
.y18_c01353{bottom:704.640000pt;}
.y51_c01353{bottom:705.280000pt;}
.y52_c01353{bottom:705.920000pt;}
.y19_c01353{bottom:706.560000pt;}
.y16_c01353{bottom:741.760000pt;}
.y15_c01353{bottom:743.040000pt;}
.y17_c01353{bottom:743.680000pt;}
.y50_c01353{bottom:744.960000pt;}
.y13_c01353{bottom:779.520000pt;}
.y14_c01353{bottom:780.160000pt;}
.y12_c01353{bottom:780.800000pt;}
.y4e_c01353{bottom:781.440000pt;}
.y4d_c01353{bottom:782.080000pt;}
.y4f_c01353{bottom:782.720000pt;}
.y11_c01353{bottom:818.560000pt;}
.y10_c01353{bottom:819.840000pt;}
.yc_c01353{bottom:846.720000pt;}
.yd_c01353{bottom:848.000000pt;}
.yb_c01353{bottom:848.640000pt;}
.yf_c01353{bottom:849.280000pt;}
.ye_c01353{bottom:849.920000pt;}
.y7_c01353{bottom:885.120000pt;}
.y8_c01353{bottom:886.400000pt;}
.y6_c01353{bottom:887.040000pt;}
.ya_c01353{bottom:887.680000pt;}
.y9_c01353{bottom:888.960000pt;}
.y2_c01353{bottom:924.160000pt;}
.y5_c01353{bottom:924.800000pt;}
.y4_c01353{bottom:925.440000pt;}
.y1_c01353{bottom:926.080000pt;}
.y3_c01353{bottom:984.960000pt;}
.hd_c01353{height:23.037500pt;}
.h10_c01353{height:29.948750pt;}
.h12_c01353{height:32.252500pt;}
.h9_c01353{height:39.163750pt;}
.h7_c01353{height:41.467500pt;}
.ha_c01353{height:43.771250pt;}
.h8_c01353{height:46.075000pt;}
.h2_c01353{height:48.378750pt;}
.h6_c01353{height:50.682500pt;}
.he_c01353{height:52.730000pt;}
.h11_c01353{height:52.986250pt;}
.h5_c01353{height:55.290000pt;}
.hb_c01353{height:57.593750pt;}
.h4_c01353{height:59.897500pt;}
.h3_c01353{height:62.201250pt;}
.hc_c01353{height:64.505000pt;}
.hf_c01353{height:92.150000pt;}
.h1_c01353{height:1023.333333pt;}
.h0_c01353{height:1023.360000pt;}
.w1_c01353{width:686.666667pt;}
.w0_c01353{width:686.720000pt;}
.x0_c01353{left:0.000000pt;}
.x1_c01353{left:47.360000pt;}
.x12_c01353{left:48.640000pt;}
.x17_c01353{left:49.920000pt;}
.x20_c01353{left:51.200000pt;}
.x11_c01353{left:76.160000pt;}
.xd_c01353{left:93.440000pt;}
.x2_c01353{left:103.040000pt;}
.x1a_c01353{left:104.960000pt;}
.x15_c01353{left:162.560000pt;}
.xe_c01353{left:180.480000pt;}
.x13_c01353{left:181.760000pt;}
.x16_c01353{left:200.320000pt;}
.xb_c01353{left:219.520000pt;}
.x1b_c01353{left:229.120000pt;}
.x1c_c01353{left:230.400000pt;}
.x1f_c01353{left:239.360000pt;}
.x14_c01353{left:257.920000pt;}
.x18_c01353{left:259.200000pt;}
.x10_c01353{left:295.680000pt;}
.x1d_c01353{left:296.960000pt;}
.x21_c01353{left:326.400000pt;}
.x1e_c01353{left:345.600000pt;}
.xf_c01353{left:372.480000pt;}
.x22_c01353{left:374.400000pt;}
.x19_c01353{left:382.720000pt;}
.x23_c01353{left:411.520000pt;}
.x7_c01353{left:420.480000pt;}
.xc_c01353{left:467.840000pt;}
.x8_c01353{left:506.880000pt;}
.x2b_c01353{left:515.840000pt;}
.x4_c01353{left:517.120000pt;}
.x2a_c01353{left:534.400000pt;}
.x5_c01353{left:535.680000pt;}
.x24_c01353{left:563.200000pt;}
.x9_c01353{left:565.120000pt;}
.x29_c01353{left:566.400000pt;}
.x3_c01353{left:593.280000pt;}
.x27_c01353{left:602.240000pt;}
.x25_c01353{left:622.080000pt;}
.x28_c01353{left:630.400000pt;}
.xa_c01353{left:631.680000pt;}
.x6_c01353{left:632.960000pt;}
.x2c_c01353{left:648.960000pt;}
.x26_c01353{left:650.240000pt;}
}





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

.ir_c01354:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01354{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01354;src:url('chunks/assets/font_c47fe6a3b531cca425fda198.woff2')format("woff");}.ff1_c01354{font-family:ff1_c01354;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m45_c01354{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01354{transform:matrix(0.225125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225125,0.000000,0.000000,0.250000,0,0);}
.m3b_c01354{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_c01354{transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);}
.m41_c01354{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m26_c01354{transform:matrix(0.237275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237275,0.000000,0.000000,0.250000,0,0);}
.m29_c01354{transform:matrix(0.241175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241175,0.000000,0.000000,0.250000,0,0);}
.m30_c01354{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m18_c01354{transform:matrix(0.249300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249300,0.000000,0.000000,0.250000,0,0);}
.mf_c01354{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01354{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m11_c01354{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);}
.m34_c01354{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m15_c01354{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.me_c01354{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m24_c01354{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01354{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01354{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_c01354{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m19_c01354{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01354{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01354{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mb_c01354{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m16_c01354{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01354{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01354{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m43_c01354{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01354{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m6_c01354{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m33_c01354{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01354{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m35_c01354{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m10_c01354{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m37_c01354{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1_c01354{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m4_c01354{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01354{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m36_c01354{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);}
.m42_c01354{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m28_c01354{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);}
.m32_c01354{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01354{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);}
.m2d_c01354{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01354{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);}
.m21_c01354{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.mc_c01354{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_c01354{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);}
.m39_c01354{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m14_c01354{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);}
.m12_c01354{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);}
.m3_c01354{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m22_c01354{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01354{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);}
.m0_c01354{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m27_c01354{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);}
.m20_c01354{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);}
.m25_c01354{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m2_c01354{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01354{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01354{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m38_c01354{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);}
.m40_c01354{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01354{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);}
.m7_c01354{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m9_c01354{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m5_c01354{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_c01354{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);}
.md_c01354{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m44_c01354{transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);}
.m31_c01354{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.v3_c01354{vertical-align:-2.880000px;}
.v0_c01354{vertical-align:0.000000px;}
.v2_c01354{vertical-align:2.880000px;}
.v1_c01354{vertical-align:11.520000px;}
.ls0_c01354{letter-spacing:0.000000px;}
.sc__c01354{text-shadow:none;}
.sc0_c01354{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01354{-webkit-text-stroke:0px transparent;}
.sc0_c01354{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01354{word-spacing:-8.289120px;}
.ws0_c01354{word-spacing:-1.415280px;}
.ws3_c01354{word-spacing:0.000000px;}
.ws2_c01354{word-spacing:43.053600px;}
.fc0_c01354{color:transparent;}
.fs5_c01354{font-size:37.440000px;}
.fs6_c01354{font-size:40.320000px;}
.fsc_c01354{font-size:46.080000px;}
.fsd_c01354{font-size:48.960000px;}
.fs3_c01354{font-size:51.840000px;}
.fs4_c01354{font-size:54.720000px;}
.fsa_c01354{font-size:57.600000px;}
.fs1_c01354{font-size:60.480000px;}
.fs2_c01354{font-size:63.360000px;}
.fsb_c01354{font-size:66.240000px;}
.fs9_c01354{font-size:69.120000px;}
.fs0_c01354{font-size:72.000000px;}
.fs8_c01354{font-size:74.880000px;}
.fs7_c01354{font-size:77.760000px;}
.y0_c01354{bottom:0.000000px;}
.y42_c01354{bottom:32.400000px;}
.y41_c01354{bottom:36.720000px;}
.y6b_c01354{bottom:37.440000px;}
.y40_c01354{bottom:76.320000px;}
.y68_c01354{bottom:78.480000px;}
.y3f_c01354{bottom:79.920000px;}
.y69_c01354{bottom:80.640000px;}
.y6a_c01354{bottom:82.800000px;}
.y3d_c01354{bottom:118.800000px;}
.y3e_c01354{bottom:119.520000px;}
.y66_c01354{bottom:123.120000px;}
.y3c_c01354{bottom:123.840000px;}
.y67_c01354{bottom:125.280000px;}
.y38_c01354{bottom:162.720000px;}
.y3b_c01354{bottom:164.160000px;}
.y39_c01354{bottom:166.320000px;}
.y3a_c01354{bottom:167.040000px;}
.y37_c01354{bottom:167.760000px;}
.y65_c01354{bottom:169.200000px;}
.y35_c01354{bottom:205.920000px;}
.y36_c01354{bottom:206.640000px;}
.y64_c01354{bottom:209.520000px;}
.y34_c01354{bottom:210.240000px;}
.y63_c01354{bottom:212.400000px;}
.y32_c01354{bottom:249.840000px;}
.y62_c01354{bottom:252.720000px;}
.y33_c01354{bottom:253.440000px;}
.y31_c01354{bottom:254.160000px;}
.y30_c01354{bottom:293.040000px;}
.y60_c01354{bottom:295.920000px;}
.y61_c01354{bottom:296.640000px;}
.y2f_c01354{bottom:297.360000px;}
.y2d_c01354{bottom:336.960000px;}
.y5f_c01354{bottom:339.840000px;}
.y2c_c01354{bottom:340.560000px;}
.y2e_c01354{bottom:341.280000px;}
.y2b_c01354{bottom:380.160000px;}
.y5d_c01354{bottom:382.320000px;}
.y2a_c01354{bottom:383.760000px;}
.y5e_c01354{bottom:385.200000px;}
.y29_c01354{bottom:424.080000px;}
.y5b_c01354{bottom:425.520000px;}
.y28_c01354{bottom:426.960000px;}
.y5c_c01354{bottom:429.120000px;}
.y26_c01354{bottom:467.280000px;}
.y27_c01354{bottom:468.000000px;}
.y59_c01354{bottom:468.720000px;}
.y25_c01354{bottom:470.160000px;}
.y5a_c01354{bottom:471.600000px;}
.y24_c01354{bottom:509.760000px;}
.y58_c01354{bottom:511.920000px;}
.y23_c01354{bottom:512.640000px;}
.y21_c01354{bottom:552.960000px;}
.y22_c01354{bottom:553.680000px;}
.y57_c01354{bottom:554.400000px;}
.y20_c01354{bottom:555.120000px;}
.y1e_c01354{bottom:596.160000px;}
.y1f_c01354{bottom:596.880000px;}
.y56_c01354{bottom:597.600000px;}
.y1d_c01354{bottom:599.040000px;}
.y1b_c01354{bottom:639.360000px;}
.y55_c01354{bottom:640.080000px;}
.y1c_c01354{bottom:640.800000px;}
.y1a_c01354{bottom:642.240000px;}
.y54_c01354{bottom:642.960000px;}
.y53_c01354{bottom:682.560000px;}
.y18_c01354{bottom:683.280000px;}
.y19_c01354{bottom:684.000000px;}
.y17_c01354{bottom:685.440000px;}
.y16_c01354{bottom:726.480000px;}
.y51_c01354{bottom:727.920000px;}
.y14_c01354{bottom:728.640000px;}
.y52_c01354{bottom:729.360000px;}
.y15_c01354{bottom:730.800000px;}
.y4f_c01354{bottom:769.680000px;}
.y13_c01354{bottom:770.400000px;}
.y12_c01354{bottom:771.840000px;}
.y50_c01354{bottom:773.280000px;}
.y11_c01354{bottom:812.880000px;}
.y10_c01354{bottom:813.600000px;}
.y4e_c01354{bottom:815.040000px;}
.yf_c01354{bottom:815.760000px;}
.y4d_c01354{bottom:856.080000px;}
.yd_c01354{bottom:856.800000px;}
.y4c_c01354{bottom:858.240000px;}
.yc_c01354{bottom:858.960000px;}
.ye_c01354{bottom:861.120000px;}
.y4a_c01354{bottom:898.560000px;}
.yb_c01354{bottom:900.000000px;}
.ya_c01354{bottom:902.160000px;}
.y4b_c01354{bottom:902.880000px;}
.y49_c01354{bottom:941.760000px;}
.y47_c01354{bottom:943.200000px;}
.y8_c01354{bottom:943.920000px;}
.y48_c01354{bottom:944.640000px;}
.y6_c01354{bottom:945.360000px;}
.y9_c01354{bottom:946.080000px;}
.y7_c01354{bottom:946.800000px;}
.y45_c01354{bottom:986.400000px;}
.y46_c01354{bottom:987.120000px;}
.y5_c01354{bottom:987.840000px;}
.y4_c01354{bottom:988.560000px;}
.y44_c01354{bottom:1028.160000px;}
.y43_c01354{bottom:1028.880000px;}
.y3_c01354{bottom:1031.040000px;}
.y2_c01354{bottom:1031.760000px;}
.y1_c01354{bottom:1098.720000px;}
.h8_c01354{height:33.692344px;}
.h9_c01354{height:36.284062px;}
.h10_c01354{height:41.467500px;}
.h11_c01354{height:44.059219px;}
.h6_c01354{height:46.650937px;}
.h7_c01354{height:49.242656px;}
.hd_c01354{height:51.834375px;}
.h3_c01354{height:54.426094px;}
.h4_c01354{height:57.017812px;}
.h5_c01354{height:58.170937px;}
.hf_c01354{height:59.609531px;}
.hc_c01354{height:62.201250px;}
.h2_c01354{height:64.792969px;}
.hb_c01354{height:67.384687px;}
.ha_c01354{height:69.976406px;}
.he_c01354{height:70.264688px;}
.h1_c01354{height:1151.250000px;}
.h0_c01354{height:1151.280000px;}
.w1_c01354{width:773.250000px;}
.w0_c01354{width:773.280000px;}
.x0_c01354{left:0.000000px;}
.x2_c01354{left:52.560720px;}
.x5_c01354{left:54.000000px;}
.x10_c01354{left:113.760000px;}
.xb_c01354{left:115.200000px;}
.x3_c01354{left:117.360000px;}
.xd_c01354{left:180.000000px;}
.x4_c01354{left:203.040000px;}
.xc_c01354{left:213.120000px;}
.x16_c01354{left:224.640000px;}
.xe_c01354{left:245.520000px;}
.x6_c01354{left:257.040000px;}
.x13_c01354{left:276.480000px;}
.xf_c01354{left:288.720000px;}
.x11_c01354{left:298.800000px;}
.xa_c01354{left:300.240000px;}
.x14_c01354{left:320.400000px;}
.x12_c01354{left:342.720000px;}
.x7_c01354{left:365.760000px;}
.x15_c01354{left:375.120000px;}
.x8_c01354{left:419.760000px;}
.x9_c01354{left:462.240000px;}
.x27_c01354{left:578.880000px;}
.x25_c01354{left:599.040000px;}
.x1c_c01354{left:600.480000px;}
.x20_c01354{left:612.000000px;}
.x1b_c01354{left:613.440000px;}
.x22_c01354{left:633.600000px;}
.x1e_c01354{left:635.040000px;}
.x17_c01354{left:636.480000px;}
.x1_c01354{left:666.720000px;}
.x18_c01354{left:668.160000px;}
.x28_c01354{left:674.640000px;}
.x23_c01354{left:676.080000px;}
.x1d_c01354{left:677.520000px;}
.x26_c01354{left:707.760000px;}
.x21_c01354{left:709.200000px;}
.x19_c01354{left:710.640000px;}
.x24_c01354{left:727.920000px;}
.x1f_c01354{left:730.080000px;}
.x1a_c01354{left:732.240000px;}
.x29_c01354{left:773.280000px;}
@media print{
.v3_c01354{vertical-align:-2.560000pt;}
.v0_c01354{vertical-align:0.000000pt;}
.v2_c01354{vertical-align:2.560000pt;}
.v1_c01354{vertical-align:10.240000pt;}
.ls0_c01354{letter-spacing:0.000000pt;}
.ws1_c01354{word-spacing:-7.368107pt;}
.ws0_c01354{word-spacing:-1.258027pt;}
.ws3_c01354{word-spacing:0.000000pt;}
.ws2_c01354{word-spacing:38.269867pt;}
.fs5_c01354{font-size:33.280000pt;}
.fs6_c01354{font-size:35.840000pt;}
.fsc_c01354{font-size:40.960000pt;}
.fsd_c01354{font-size:43.520000pt;}
.fs3_c01354{font-size:46.080000pt;}
.fs4_c01354{font-size:48.640000pt;}
.fsa_c01354{font-size:51.200000pt;}
.fs1_c01354{font-size:53.760000pt;}
.fs2_c01354{font-size:56.320000pt;}
.fsb_c01354{font-size:58.880000pt;}
.fs9_c01354{font-size:61.440000pt;}
.fs0_c01354{font-size:64.000000pt;}
.fs8_c01354{font-size:66.560000pt;}
.fs7_c01354{font-size:69.120000pt;}
.y0_c01354{bottom:0.000000pt;}
.y42_c01354{bottom:28.800000pt;}
.y41_c01354{bottom:32.640000pt;}
.y6b_c01354{bottom:33.280000pt;}
.y40_c01354{bottom:67.840000pt;}
.y68_c01354{bottom:69.760000pt;}
.y3f_c01354{bottom:71.040000pt;}
.y69_c01354{bottom:71.680000pt;}
.y6a_c01354{bottom:73.600000pt;}
.y3d_c01354{bottom:105.600000pt;}
.y3e_c01354{bottom:106.240000pt;}
.y66_c01354{bottom:109.440000pt;}
.y3c_c01354{bottom:110.080000pt;}
.y67_c01354{bottom:111.360000pt;}
.y38_c01354{bottom:144.640000pt;}
.y3b_c01354{bottom:145.920000pt;}
.y39_c01354{bottom:147.840000pt;}
.y3a_c01354{bottom:148.480000pt;}
.y37_c01354{bottom:149.120000pt;}
.y65_c01354{bottom:150.400000pt;}
.y35_c01354{bottom:183.040000pt;}
.y36_c01354{bottom:183.680000pt;}
.y64_c01354{bottom:186.240000pt;}
.y34_c01354{bottom:186.880000pt;}
.y63_c01354{bottom:188.800000pt;}
.y32_c01354{bottom:222.080000pt;}
.y62_c01354{bottom:224.640000pt;}
.y33_c01354{bottom:225.280000pt;}
.y31_c01354{bottom:225.920000pt;}
.y30_c01354{bottom:260.480000pt;}
.y60_c01354{bottom:263.040000pt;}
.y61_c01354{bottom:263.680000pt;}
.y2f_c01354{bottom:264.320000pt;}
.y2d_c01354{bottom:299.520000pt;}
.y5f_c01354{bottom:302.080000pt;}
.y2c_c01354{bottom:302.720000pt;}
.y2e_c01354{bottom:303.360000pt;}
.y2b_c01354{bottom:337.920000pt;}
.y5d_c01354{bottom:339.840000pt;}
.y2a_c01354{bottom:341.120000pt;}
.y5e_c01354{bottom:342.400000pt;}
.y29_c01354{bottom:376.960000pt;}
.y5b_c01354{bottom:378.240000pt;}
.y28_c01354{bottom:379.520000pt;}
.y5c_c01354{bottom:381.440000pt;}
.y26_c01354{bottom:415.360000pt;}
.y27_c01354{bottom:416.000000pt;}
.y59_c01354{bottom:416.640000pt;}
.y25_c01354{bottom:417.920000pt;}
.y5a_c01354{bottom:419.200000pt;}
.y24_c01354{bottom:453.120000pt;}
.y58_c01354{bottom:455.040000pt;}
.y23_c01354{bottom:455.680000pt;}
.y21_c01354{bottom:491.520000pt;}
.y22_c01354{bottom:492.160000pt;}
.y57_c01354{bottom:492.800000pt;}
.y20_c01354{bottom:493.440000pt;}
.y1e_c01354{bottom:529.920000pt;}
.y1f_c01354{bottom:530.560000pt;}
.y56_c01354{bottom:531.200000pt;}
.y1d_c01354{bottom:532.480000pt;}
.y1b_c01354{bottom:568.320000pt;}
.y55_c01354{bottom:568.960000pt;}
.y1c_c01354{bottom:569.600000pt;}
.y1a_c01354{bottom:570.880000pt;}
.y54_c01354{bottom:571.520000pt;}
.y53_c01354{bottom:606.720000pt;}
.y18_c01354{bottom:607.360000pt;}
.y19_c01354{bottom:608.000000pt;}
.y17_c01354{bottom:609.280000pt;}
.y16_c01354{bottom:645.760000pt;}
.y51_c01354{bottom:647.040000pt;}
.y14_c01354{bottom:647.680000pt;}
.y52_c01354{bottom:648.320000pt;}
.y15_c01354{bottom:649.600000pt;}
.y4f_c01354{bottom:684.160000pt;}
.y13_c01354{bottom:684.800000pt;}
.y12_c01354{bottom:686.080000pt;}
.y50_c01354{bottom:687.360000pt;}
.y11_c01354{bottom:722.560000pt;}
.y10_c01354{bottom:723.200000pt;}
.y4e_c01354{bottom:724.480000pt;}
.yf_c01354{bottom:725.120000pt;}
.y4d_c01354{bottom:760.960000pt;}
.yd_c01354{bottom:761.600000pt;}
.y4c_c01354{bottom:762.880000pt;}
.yc_c01354{bottom:763.520000pt;}
.ye_c01354{bottom:765.440000pt;}
.y4a_c01354{bottom:798.720000pt;}
.yb_c01354{bottom:800.000000pt;}
.ya_c01354{bottom:801.920000pt;}
.y4b_c01354{bottom:802.560000pt;}
.y49_c01354{bottom:837.120000pt;}
.y47_c01354{bottom:838.400000pt;}
.y8_c01354{bottom:839.040000pt;}
.y48_c01354{bottom:839.680000pt;}
.y6_c01354{bottom:840.320000pt;}
.y9_c01354{bottom:840.960000pt;}
.y7_c01354{bottom:841.600000pt;}
.y45_c01354{bottom:876.800000pt;}
.y46_c01354{bottom:877.440000pt;}
.y5_c01354{bottom:878.080000pt;}
.y4_c01354{bottom:878.720000pt;}
.y44_c01354{bottom:913.920000pt;}
.y43_c01354{bottom:914.560000pt;}
.y3_c01354{bottom:916.480000pt;}
.y2_c01354{bottom:917.120000pt;}
.y1_c01354{bottom:976.640000pt;}
.h8_c01354{height:29.948750pt;}
.h9_c01354{height:32.252500pt;}
.h10_c01354{height:36.860000pt;}
.h11_c01354{height:39.163750pt;}
.h6_c01354{height:41.467500pt;}
.h7_c01354{height:43.771250pt;}
.hd_c01354{height:46.075000pt;}
.h3_c01354{height:48.378750pt;}
.h4_c01354{height:50.682500pt;}
.h5_c01354{height:51.707500pt;}
.hf_c01354{height:52.986250pt;}
.hc_c01354{height:55.290000pt;}
.h2_c01354{height:57.593750pt;}
.hb_c01354{height:59.897500pt;}
.ha_c01354{height:62.201250pt;}
.he_c01354{height:62.457500pt;}
.h1_c01354{height:1023.333333pt;}
.h0_c01354{height:1023.360000pt;}
.w1_c01354{width:687.333333pt;}
.w0_c01354{width:687.360000pt;}
.x0_c01354{left:0.000000pt;}
.x2_c01354{left:46.720640pt;}
.x5_c01354{left:48.000000pt;}
.x10_c01354{left:101.120000pt;}
.xb_c01354{left:102.400000pt;}
.x3_c01354{left:104.320000pt;}
.xd_c01354{left:160.000000pt;}
.x4_c01354{left:180.480000pt;}
.xc_c01354{left:189.440000pt;}
.x16_c01354{left:199.680000pt;}
.xe_c01354{left:218.240000pt;}
.x6_c01354{left:228.480000pt;}
.x13_c01354{left:245.760000pt;}
.xf_c01354{left:256.640000pt;}
.x11_c01354{left:265.600000pt;}
.xa_c01354{left:266.880000pt;}
.x14_c01354{left:284.800000pt;}
.x12_c01354{left:304.640000pt;}
.x7_c01354{left:325.120000pt;}
.x15_c01354{left:333.440000pt;}
.x8_c01354{left:373.120000pt;}
.x9_c01354{left:410.880000pt;}
.x27_c01354{left:514.560000pt;}
.x25_c01354{left:532.480000pt;}
.x1c_c01354{left:533.760000pt;}
.x20_c01354{left:544.000000pt;}
.x1b_c01354{left:545.280000pt;}
.x22_c01354{left:563.200000pt;}
.x1e_c01354{left:564.480000pt;}
.x17_c01354{left:565.760000pt;}
.x1_c01354{left:592.640000pt;}
.x18_c01354{left:593.920000pt;}
.x28_c01354{left:599.680000pt;}
.x23_c01354{left:600.960000pt;}
.x1d_c01354{left:602.240000pt;}
.x26_c01354{left:629.120000pt;}
.x21_c01354{left:630.400000pt;}
.x19_c01354{left:631.680000pt;}
.x24_c01354{left:647.040000pt;}
.x1f_c01354{left:648.960000pt;}
.x1a_c01354{left:650.880000pt;}
.x29_c01354{left:687.360000pt;}
}





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

.ir_c01355:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01355{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01355;src:url('chunks/assets/font_5b50c5c64b2d5018d861f7df.woff2')format("woff");}.ff1_c01355{font-family:ff1_c01355;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3f_c01355{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.m41_c01355{transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);}
.me_c01355{transform:matrix(0.218025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218025,0.000000,0.000000,0.250000,0,0);}
.m36_c01355{transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);}
.m38_c01355{transform:matrix(0.230325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230325,0.000000,0.000000,0.250000,0,0);}
.m19_c01355{transform:matrix(0.238800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238800,0.000000,0.000000,0.250000,0,0);}
.m39_c01355{transform:matrix(0.239175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239175,0.000000,0.000000,0.250000,0,0);}
.m1_c01355{transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);}
.m35_c01355{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01355{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m25_c01355{transform:matrix(0.247725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247725,0.000000,0.000000,0.250000,0,0);}
.m8_c01355{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);}
.m2a_c01355{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);}
.m3b_c01355{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);}
.m4b_c01355{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);}
.m26_c01355{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_c01355{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m12_c01355{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m4_c01355{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m9_c01355{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);}
.m3c_c01355{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);}
.m45_c01355{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01355{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);}
.m27_c01355{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_c01355{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01355{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01355{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m28_c01355{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01355{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m23_c01355{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m49_c01355{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m44_c01355{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m7_c01355{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m6_c01355{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m30_c01355{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m15_c01355{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01355{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m31_c01355{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m46_c01355{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m42_c01355{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3_c01355{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.ma_c01355{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);}
.m47_c01355{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m16_c01355{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);}
.m3a_c01355{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);}
.m3e_c01355{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);}
.m24_c01355{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01355{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m0_c01355{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.mc_c01355{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01355{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);}
.m43_c01355{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m18_c01355{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.md_c01355{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m5_c01355{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01355{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);}
.m14_c01355{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m11_c01355{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m34_c01355{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);}
.m17_c01355{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);}
.m1d_c01355{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01355{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m33_c01355{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.mb_c01355{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);}
.m13_c01355{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01355{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m29_c01355{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);}
.m37_c01355{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);}
.m2d_c01355{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m22_c01355{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01355{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m2_c01355{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);}
.mf_c01355{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m10_c01355{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);}
.m48_c01355{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m20_c01355{transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);}
.v1_c01355{vertical-align:-8.640000px;}
.v3_c01355{vertical-align:-5.760000px;}
.v2_c01355{vertical-align:-2.880000px;}
.v0_c01355{vertical-align:0.000000px;}
.ls3_c01355{letter-spacing:0.000000px;}
.ls2_c01355{letter-spacing:37.477680px;}
.ls1_c01355{letter-spacing:85.310400px;}
.ls0_c01355{letter-spacing:90.638400px;}
.sc__c01355{text-shadow:none;}
.sc0_c01355{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01355{-webkit-text-stroke:0px transparent;}
.sc0_c01355{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01355{word-spacing:0.000000px;}
.ws0_c01355{word-spacing:2.202480px;}
.ws2_c01355{word-spacing:9.212400px;}
.ws1_c01355{word-spacing:56.938533px;}
._0_c01355{width:94.921183px;}
.fc0_c01355{color:transparent;}
.fsd_c01355{font-size:31.680000px;}
.fs7_c01355{font-size:34.560000px;}
.fs2_c01355{font-size:37.440000px;}
.fsf_c01355{font-size:40.320000px;}
.fsb_c01355{font-size:43.200000px;}
.fsc_c01355{font-size:48.960000px;}
.fs9_c01355{font-size:51.840000px;}
.fs4_c01355{font-size:54.720000px;}
.fsa_c01355{font-size:57.600000px;}
.fs8_c01355{font-size:60.480000px;}
.fs0_c01355{font-size:63.360000px;}
.fs6_c01355{font-size:66.240000px;}
.fse_c01355{font-size:69.120000px;}
.fs5_c01355{font-size:72.000000px;}
.fs3_c01355{font-size:74.880000px;}
.fs1_c01355{font-size:77.760000px;}
.y0_c01355{bottom:0.000000px;}
.y6d_c01355{bottom:37.440000px;}
.y6c_c01355{bottom:38.160000px;}
.y6e_c01355{bottom:40.320000px;}
.y4d_c01355{bottom:80.640000px;}
.y4e_c01355{bottom:82.080000px;}
.y50_c01355{bottom:82.800000px;}
.y4f_c01355{bottom:84.240000px;}
.y4c_c01355{bottom:85.680000px;}
.y49_c01355{bottom:123.120000px;}
.y4b_c01355{bottom:123.840000px;}
.y4a_c01355{bottom:127.440000px;}
.y48_c01355{bottom:128.160000px;}
.y6a_c01355{bottom:128.880000px;}
.y6b_c01355{bottom:129.600000px;}
.y47_c01355{bottom:167.040000px;}
.y46_c01355{bottom:169.200000px;}
.y42_c01355{bottom:199.440000px;}
.y43_c01355{bottom:200.880000px;}
.y44_c01355{bottom:201.600000px;}
.y45_c01355{bottom:202.320000px;}
.y41_c01355{bottom:203.760000px;}
.y69_c01355{bottom:205.200000px;}
.y40_c01355{bottom:242.640000px;}
.y3f_c01355{bottom:246.240000px;}
.y67_c01355{bottom:246.960000px;}
.y68_c01355{bottom:247.680000px;}
.y3e_c01355{bottom:285.840000px;}
.y3d_c01355{bottom:288.000000px;}
.y3c_c01355{bottom:289.440000px;}
.y65_c01355{bottom:290.880000px;}
.y66_c01355{bottom:291.600000px;}
.y3b_c01355{bottom:329.040000px;}
.y63_c01355{bottom:331.920000px;}
.y3a_c01355{bottom:332.640000px;}
.y62_c01355{bottom:333.360000px;}
.y64_c01355{bottom:334.080000px;}
.y36_c01355{bottom:372.240000px;}
.y39_c01355{bottom:373.680000px;}
.y61_c01355{bottom:374.400000px;}
.y38_c01355{bottom:375.120000px;}
.y37_c01355{bottom:375.840000px;}
.y35_c01355{bottom:376.560000px;}
.y34_c01355{bottom:415.440000px;}
.y60_c01355{bottom:418.320000px;}
.y33_c01355{bottom:419.040000px;}
.y31_c01355{bottom:459.360000px;}
.y5f_c01355{bottom:460.800000px;}
.y30_c01355{bottom:462.240000px;}
.y32_c01355{bottom:462.960000px;}
.y2f_c01355{bottom:502.560000px;}
.y5e_c01355{bottom:504.000000px;}
.y2e_c01355{bottom:505.440000px;}
.y2d_c01355{bottom:546.480000px;}
.y5c_c01355{bottom:547.200000px;}
.y2b_c01355{bottom:548.640000px;}
.y5d_c01355{bottom:549.360000px;}
.y2c_c01355{bottom:550.080000px;}
.y2a_c01355{bottom:588.960000px;}
.y27_c01355{bottom:589.680000px;}
.y5b_c01355{bottom:590.400000px;}
.y28_c01355{bottom:591.840000px;}
.y25_c01355{bottom:592.560000px;}
.y26_c01355{bottom:593.280000px;}
.y29_c01355{bottom:594.000000px;}
.y24_c01355{bottom:633.600000px;}
.y5a_c01355{bottom:634.320000px;}
.y22_c01355{bottom:635.040000px;}
.y59_c01355{bottom:636.480000px;}
.y23_c01355{bottom:637.200000px;}
.y20_c01355{bottom:680.400000px;}
.y21_c01355{bottom:681.120000px;}
.y58_c01355{bottom:730.080000px;}
.y1d_c01355{bottom:730.800000px;}
.y1e_c01355{bottom:731.520000px;}
.y1c_c01355{bottom:732.240000px;}
.y1f_c01355{bottom:733.680000px;}
.y1a_c01355{bottom:773.280000px;}
.y19_c01355{bottom:774.000000px;}
.y18_c01355{bottom:776.160000px;}
.y1b_c01355{bottom:776.880000px;}
.y14_c01355{bottom:816.480000px;}
.y15_c01355{bottom:817.920000px;}
.y12_c01355{bottom:818.640000px;}
.y17_c01355{bottom:819.360000px;}
.y13_c01355{bottom:820.080000px;}
.y16_c01355{bottom:820.800000px;}
.y11_c01355{bottom:858.960000px;}
.ye_c01355{bottom:860.400000px;}
.yd_c01355{bottom:861.840000px;}
.y10_c01355{bottom:863.280000px;}
.yf_c01355{bottom:864.000000px;}
.y57_c01355{bottom:901.440000px;}
.y55_c01355{bottom:902.880000px;}
.yb_c01355{bottom:903.600000px;}
.y56_c01355{bottom:904.320000px;}
.yc_c01355{bottom:907.200000px;}
.y54_c01355{bottom:945.360000px;}
.ya_c01355{bottom:946.080000px;}
.y9_c01355{bottom:946.800000px;}
.y8_c01355{bottom:947.520000px;}
.y53_c01355{bottom:948.240000px;}
.y7_c01355{bottom:988.560000px;}
.y52_c01355{bottom:989.280000px;}
.y5_c01355{bottom:990.000000px;}
.y6_c01355{bottom:992.160000px;}
.y4_c01355{bottom:1031.760000px;}
.y51_c01355{bottom:1032.480000px;}
.y2_c01355{bottom:1033.200000px;}
.y1_c01355{bottom:1034.640000px;}
.y3_c01355{bottom:1036.800000px;}
.hf_c01355{height:28.508906px;}
.h9_c01355{height:31.100625px;}
.h4_c01355{height:33.692344px;}
.h11_c01355{height:36.284062px;}
.hd_c01355{height:38.875781px;}
.he_c01355{height:44.059219px;}
.hb_c01355{height:46.650937px;}
.h6_c01355{height:49.242656px;}
.hc_c01355{height:51.834375px;}
.ha_c01355{height:54.426094px;}
.h12_c01355{height:56.441250px;}
.h2_c01355{height:57.017812px;}
.h8_c01355{height:59.609531px;}
.h10_c01355{height:62.201250px;}
.h7_c01355{height:64.792969px;}
.h5_c01355{height:67.384687px;}
.h3_c01355{height:69.976406px;}
.h0_c01355{height:1153.440000px;}
.h1_c01355{height:1153.500000px;}
.w0_c01355{width:776.880000px;}
.w1_c01355{width:777.000000px;}
.x0_c01355{left:0.000000px;}
.x1_c01355{left:54.000000px;}
.x9_c01355{left:84.960000px;}
.x10_c01355{left:103.680000px;}
.x20_c01355{left:113.040000px;}
.x12_c01355{left:114.480000px;}
.x2_c01355{left:116.640000px;}
.x1a_c01355{left:126.720000px;}
.x11_c01355{left:158.400000px;}
.x25_c01355{left:168.480000px;}
.x13_c01355{left:190.800000px;}
.x1f_c01355{left:200.880000px;}
.x15_c01355{left:203.040000px;}
.x21_c01355{left:211.680000px;}
.x3_c01355{left:214.560000px;}
.x7_c01355{left:224.640000px;}
.x1b_c01355{left:233.280000px;}
.x14_c01355{left:245.520000px;}
.x26_c01355{left:254.160000px;}
.x4_c01355{left:257.760000px;}
.x18_c01355{left:267.120000px;}
.x5_c01355{left:278.640000px;}
.x16_c01355{left:288.000000px;}
.xd_c01355{left:320.400000px;}
.x6_c01355{left:321.840000px;}
.x17_c01355{left:342.720000px;}
.x22_c01355{left:351.360000px;}
.x1c_c01355{left:363.600000px;}
.xe_c01355{left:365.040000px;}
.x19_c01355{left:373.680000px;}
.xa_c01355{left:375.840000px;}
.x27_c01355{left:384.480000px;}
.x23_c01355{left:395.280000px;}
.x1d_c01355{left:417.600000px;}
.x8_c01355{left:419.040000px;}
.x28_c01355{left:438.480000px;}
.x24_c01355{left:449.280000px;}
.x1e_c01355{left:459.360000px;}
.xb_c01355{left:460.800000px;}
.xf_c01355{left:483.120000px;}
.xc_c01355{left:504.720000px;}
.x38_c01355{left:568.080000px;}
.x3b_c01355{left:577.440000px;}
.x33_c01355{left:578.880000px;}
.x34_c01355{left:599.760000px;}
.x2e_c01355{left:601.200000px;}
.x31_c01355{left:632.880000px;}
.x29_c01355{left:635.760000px;}
.x39_c01355{left:663.840000px;}
.x2f_c01355{left:666.000000px;}
.x2b_c01355{left:676.800000px;}
.x2a_c01355{left:678.240000px;}
.x37_c01355{left:696.240000px;}
.x3a_c01355{left:697.680000px;}
.x35_c01355{left:706.320000px;}
.x32_c01355{left:707.760000px;}
.x30_c01355{left:709.200000px;}
.x2c_c01355{left:710.640000px;}
.x36_c01355{left:727.920000px;}
.x2d_c01355{left:730.080000px;}
@media print{
.v1_c01355{vertical-align:-7.680000pt;}
.v3_c01355{vertical-align:-5.120000pt;}
.v2_c01355{vertical-align:-2.560000pt;}
.v0_c01355{vertical-align:0.000000pt;}
.ls3_c01355{letter-spacing:0.000000pt;}
.ls2_c01355{letter-spacing:33.313493pt;}
.ls1_c01355{letter-spacing:75.831467pt;}
.ls0_c01355{letter-spacing:80.567467pt;}
.ws3_c01355{word-spacing:0.000000pt;}
.ws0_c01355{word-spacing:1.957760pt;}
.ws2_c01355{word-spacing:8.188800pt;}
.ws1_c01355{word-spacing:50.612029pt;}
._0_c01355{width:84.374385pt;}
.fsd_c01355{font-size:28.160000pt;}
.fs7_c01355{font-size:30.720000pt;}
.fs2_c01355{font-size:33.280000pt;}
.fsf_c01355{font-size:35.840000pt;}
.fsb_c01355{font-size:38.400000pt;}
.fsc_c01355{font-size:43.520000pt;}
.fs9_c01355{font-size:46.080000pt;}
.fs4_c01355{font-size:48.640000pt;}
.fsa_c01355{font-size:51.200000pt;}
.fs8_c01355{font-size:53.760000pt;}
.fs0_c01355{font-size:56.320000pt;}
.fs6_c01355{font-size:58.880000pt;}
.fse_c01355{font-size:61.440000pt;}
.fs5_c01355{font-size:64.000000pt;}
.fs3_c01355{font-size:66.560000pt;}
.fs1_c01355{font-size:69.120000pt;}
.y0_c01355{bottom:0.000000pt;}
.y6d_c01355{bottom:33.280000pt;}
.y6c_c01355{bottom:33.920000pt;}
.y6e_c01355{bottom:35.840000pt;}
.y4d_c01355{bottom:71.680000pt;}
.y4e_c01355{bottom:72.960000pt;}
.y50_c01355{bottom:73.600000pt;}
.y4f_c01355{bottom:74.880000pt;}
.y4c_c01355{bottom:76.160000pt;}
.y49_c01355{bottom:109.440000pt;}
.y4b_c01355{bottom:110.080000pt;}
.y4a_c01355{bottom:113.280000pt;}
.y48_c01355{bottom:113.920000pt;}
.y6a_c01355{bottom:114.560000pt;}
.y6b_c01355{bottom:115.200000pt;}
.y47_c01355{bottom:148.480000pt;}
.y46_c01355{bottom:150.400000pt;}
.y42_c01355{bottom:177.280000pt;}
.y43_c01355{bottom:178.560000pt;}
.y44_c01355{bottom:179.200000pt;}
.y45_c01355{bottom:179.840000pt;}
.y41_c01355{bottom:181.120000pt;}
.y69_c01355{bottom:182.400000pt;}
.y40_c01355{bottom:215.680000pt;}
.y3f_c01355{bottom:218.880000pt;}
.y67_c01355{bottom:219.520000pt;}
.y68_c01355{bottom:220.160000pt;}
.y3e_c01355{bottom:254.080000pt;}
.y3d_c01355{bottom:256.000000pt;}
.y3c_c01355{bottom:257.280000pt;}
.y65_c01355{bottom:258.560000pt;}
.y66_c01355{bottom:259.200000pt;}
.y3b_c01355{bottom:292.480000pt;}
.y63_c01355{bottom:295.040000pt;}
.y3a_c01355{bottom:295.680000pt;}
.y62_c01355{bottom:296.320000pt;}
.y64_c01355{bottom:296.960000pt;}
.y36_c01355{bottom:330.880000pt;}
.y39_c01355{bottom:332.160000pt;}
.y61_c01355{bottom:332.800000pt;}
.y38_c01355{bottom:333.440000pt;}
.y37_c01355{bottom:334.080000pt;}
.y35_c01355{bottom:334.720000pt;}
.y34_c01355{bottom:369.280000pt;}
.y60_c01355{bottom:371.840000pt;}
.y33_c01355{bottom:372.480000pt;}
.y31_c01355{bottom:408.320000pt;}
.y5f_c01355{bottom:409.600000pt;}
.y30_c01355{bottom:410.880000pt;}
.y32_c01355{bottom:411.520000pt;}
.y2f_c01355{bottom:446.720000pt;}
.y5e_c01355{bottom:448.000000pt;}
.y2e_c01355{bottom:449.280000pt;}
.y2d_c01355{bottom:485.760000pt;}
.y5c_c01355{bottom:486.400000pt;}
.y2b_c01355{bottom:487.680000pt;}
.y5d_c01355{bottom:488.320000pt;}
.y2c_c01355{bottom:488.960000pt;}
.y2a_c01355{bottom:523.520000pt;}
.y27_c01355{bottom:524.160000pt;}
.y5b_c01355{bottom:524.800000pt;}
.y28_c01355{bottom:526.080000pt;}
.y25_c01355{bottom:526.720000pt;}
.y26_c01355{bottom:527.360000pt;}
.y29_c01355{bottom:528.000000pt;}
.y24_c01355{bottom:563.200000pt;}
.y5a_c01355{bottom:563.840000pt;}
.y22_c01355{bottom:564.480000pt;}
.y59_c01355{bottom:565.760000pt;}
.y23_c01355{bottom:566.400000pt;}
.y20_c01355{bottom:604.800000pt;}
.y21_c01355{bottom:605.440000pt;}
.y58_c01355{bottom:648.960000pt;}
.y1d_c01355{bottom:649.600000pt;}
.y1e_c01355{bottom:650.240000pt;}
.y1c_c01355{bottom:650.880000pt;}
.y1f_c01355{bottom:652.160000pt;}
.y1a_c01355{bottom:687.360000pt;}
.y19_c01355{bottom:688.000000pt;}
.y18_c01355{bottom:689.920000pt;}
.y1b_c01355{bottom:690.560000pt;}
.y14_c01355{bottom:725.760000pt;}
.y15_c01355{bottom:727.040000pt;}
.y12_c01355{bottom:727.680000pt;}
.y17_c01355{bottom:728.320000pt;}
.y13_c01355{bottom:728.960000pt;}
.y16_c01355{bottom:729.600000pt;}
.y11_c01355{bottom:763.520000pt;}
.ye_c01355{bottom:764.800000pt;}
.yd_c01355{bottom:766.080000pt;}
.y10_c01355{bottom:767.360000pt;}
.yf_c01355{bottom:768.000000pt;}
.y57_c01355{bottom:801.280000pt;}
.y55_c01355{bottom:802.560000pt;}
.yb_c01355{bottom:803.200000pt;}
.y56_c01355{bottom:803.840000pt;}
.yc_c01355{bottom:806.400000pt;}
.y54_c01355{bottom:840.320000pt;}
.ya_c01355{bottom:840.960000pt;}
.y9_c01355{bottom:841.600000pt;}
.y8_c01355{bottom:842.240000pt;}
.y53_c01355{bottom:842.880000pt;}
.y7_c01355{bottom:878.720000pt;}
.y52_c01355{bottom:879.360000pt;}
.y5_c01355{bottom:880.000000pt;}
.y6_c01355{bottom:881.920000pt;}
.y4_c01355{bottom:917.120000pt;}
.y51_c01355{bottom:917.760000pt;}
.y2_c01355{bottom:918.400000pt;}
.y1_c01355{bottom:919.680000pt;}
.y3_c01355{bottom:921.600000pt;}
.hf_c01355{height:25.341250pt;}
.h9_c01355{height:27.645000pt;}
.h4_c01355{height:29.948750pt;}
.h11_c01355{height:32.252500pt;}
.hd_c01355{height:34.556250pt;}
.he_c01355{height:39.163750pt;}
.hb_c01355{height:41.467500pt;}
.h6_c01355{height:43.771250pt;}
.hc_c01355{height:46.075000pt;}
.ha_c01355{height:48.378750pt;}
.h12_c01355{height:50.170000pt;}
.h2_c01355{height:50.682500pt;}
.h8_c01355{height:52.986250pt;}
.h10_c01355{height:55.290000pt;}
.h7_c01355{height:57.593750pt;}
.h5_c01355{height:59.897500pt;}
.h3_c01355{height:62.201250pt;}
.h0_c01355{height:1025.280000pt;}
.h1_c01355{height:1025.333333pt;}
.w0_c01355{width:690.560000pt;}
.w1_c01355{width:690.666667pt;}
.x0_c01355{left:0.000000pt;}
.x1_c01355{left:48.000000pt;}
.x9_c01355{left:75.520000pt;}
.x10_c01355{left:92.160000pt;}
.x20_c01355{left:100.480000pt;}
.x12_c01355{left:101.760000pt;}
.x2_c01355{left:103.680000pt;}
.x1a_c01355{left:112.640000pt;}
.x11_c01355{left:140.800000pt;}
.x25_c01355{left:149.760000pt;}
.x13_c01355{left:169.600000pt;}
.x1f_c01355{left:178.560000pt;}
.x15_c01355{left:180.480000pt;}
.x21_c01355{left:188.160000pt;}
.x3_c01355{left:190.720000pt;}
.x7_c01355{left:199.680000pt;}
.x1b_c01355{left:207.360000pt;}
.x14_c01355{left:218.240000pt;}
.x26_c01355{left:225.920000pt;}
.x4_c01355{left:229.120000pt;}
.x18_c01355{left:237.440000pt;}
.x5_c01355{left:247.680000pt;}
.x16_c01355{left:256.000000pt;}
.xd_c01355{left:284.800000pt;}
.x6_c01355{left:286.080000pt;}
.x17_c01355{left:304.640000pt;}
.x22_c01355{left:312.320000pt;}
.x1c_c01355{left:323.200000pt;}
.xe_c01355{left:324.480000pt;}
.x19_c01355{left:332.160000pt;}
.xa_c01355{left:334.080000pt;}
.x27_c01355{left:341.760000pt;}
.x23_c01355{left:351.360000pt;}
.x1d_c01355{left:371.200000pt;}
.x8_c01355{left:372.480000pt;}
.x28_c01355{left:389.760000pt;}
.x24_c01355{left:399.360000pt;}
.x1e_c01355{left:408.320000pt;}
.xb_c01355{left:409.600000pt;}
.xf_c01355{left:429.440000pt;}
.xc_c01355{left:448.640000pt;}
.x38_c01355{left:504.960000pt;}
.x3b_c01355{left:513.280000pt;}
.x33_c01355{left:514.560000pt;}
.x34_c01355{left:533.120000pt;}
.x2e_c01355{left:534.400000pt;}
.x31_c01355{left:562.560000pt;}
.x29_c01355{left:565.120000pt;}
.x39_c01355{left:590.080000pt;}
.x2f_c01355{left:592.000000pt;}
.x2b_c01355{left:601.600000pt;}
.x2a_c01355{left:602.880000pt;}
.x37_c01355{left:618.880000pt;}
.x3a_c01355{left:620.160000pt;}
.x35_c01355{left:627.840000pt;}
.x32_c01355{left:629.120000pt;}
.x30_c01355{left:630.400000pt;}
.x2c_c01355{left:631.680000pt;}
.x36_c01355{left:647.040000pt;}
.x2d_c01355{left:648.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_c01356 {
    display:none;
  }
  .loading-indicator_c01356.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01356 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01356 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01356" -> "#page-container .classname_c01356")
 */
.pf_c01356 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01356 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01356.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01356 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01356 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01356 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01356 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01356 {overflow:visible;}
  }
}
.c_c01356 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01356 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01356:after { /* webkit #35443 */
  content: '';
}
.t_c01356:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01356 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01356 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01356 { /* info for Javascript */
  display:none;
}
.l_c01356 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01356 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01356 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01356:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01356{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01356;src:url('chunks/assets/font_6de30a71f5d964876a91c40a.woff2')format("woff");}.ff1_c01356{font-family:ff1_c01356;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m47_c01356{transform:matrix(0.175550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175550,0.000000,0.000000,0.250000,0,0);}
.m35_c01356{transform:matrix(0.194025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194025,0.000000,0.000000,0.250000,0,0);}
.m41_c01356{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m26_c01356{transform:matrix(0.223550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223550,0.000000,0.000000,0.250000,0,0);}
.m3b_c01356{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);}
.m2c_c01356{transform:matrix(0.228475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228475,0.000000,0.000000,0.250000,0,0);}
.m44_c01356{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m38_c01356{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m30_c01356{transform:matrix(0.237300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237300,0.000000,0.000000,0.250000,0,0);}
.me_c01356{transform:matrix(0.248425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248425,0.000000,0.000000,0.250000,0,0);}
.m5_c01356{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m32_c01356{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_c01356{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.mf_c01356{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m2_c01356{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);}
.m2e_c01356{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);}
.m3c_c01356{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m11_c01356{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);}
.m37_c01356{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m17_c01356{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_c01356{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m8_c01356{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m19_c01356{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mb_c01356{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);}
.m2b_c01356{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);}
.m2a_c01356{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);}
.m29_c01356{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m6_c01356{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m12_c01356{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m33_c01356{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m42_c01356{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m18_c01356{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m21_c01356{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1_c01356{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01356{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m48_c01356{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m22_c01356{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m16_c01356{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);}
.m39_c01356{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m34_c01356{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m3_c01356{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01356{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);}
.m28_c01356{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m9_c01356{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m4_c01356{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m13_c01356{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m0_c01356{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m10_c01356{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01356{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);}
.m20_c01356{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_c01356{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);}
.m1e_c01356{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m23_c01356{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01356{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m7_c01356{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);}
.m14_c01356{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m15_c01356{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01356{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);}
.m25_c01356{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m45_c01356{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);}
.m1f_c01356{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m43_c01356{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m24_c01356{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);}
.m36_c01356{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01356{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);}
.m3a_c01356{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.md_c01356{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01356{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);}
.m2d_c01356{transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);}
.m27_c01356{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m31_c01356{transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);}
.m46_c01356{transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);}
.m40_c01356{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.v2_c01356{vertical-align:-8.640000px;}
.v1_c01356{vertical-align:-2.880000px;}
.v0_c01356{vertical-align:0.000000px;}
.ls0_c01356{letter-spacing:0.000000px;}
.sc__c01356{text-shadow:none;}
.sc0_c01356{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01356{-webkit-text-stroke:0px transparent;}
.sc0_c01356{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01356{word-spacing:0.000000px;}
.ws0_c01356{word-spacing:8.131200px;}
.ws1_c01356{word-spacing:13.140000px;}
.fc0_c01356{color:transparent;}
.fsf_c01356{font-size:23.040000px;}
.fs8_c01356{font-size:31.680000px;}
.fsd_c01356{font-size:34.560000px;}
.fs9_c01356{font-size:40.320000px;}
.fse_c01356{font-size:46.080000px;}
.fs3_c01356{font-size:48.960000px;}
.fsc_c01356{font-size:51.840000px;}
.fs4_c01356{font-size:54.720000px;}
.fs6_c01356{font-size:57.600000px;}
.fs7_c01356{font-size:60.480000px;}
.fs5_c01356{font-size:63.360000px;}
.fsa_c01356{font-size:66.240000px;}
.fsb_c01356{font-size:69.120000px;}
.fs1_c01356{font-size:72.000000px;}
.fs0_c01356{font-size:74.880000px;}
.fs2_c01356{font-size:77.760000px;}
.y0_c01356{bottom:0.000000px;}
.y3e_c01356{bottom:112.320000px;}
.y3f_c01356{bottom:113.040000px;}
.y3c_c01356{bottom:116.640000px;}
.y3d_c01356{bottom:118.080000px;}
.y6b_c01356{bottom:118.800000px;}
.y6c_c01356{bottom:120.240000px;}
.y39_c01356{bottom:156.240000px;}
.y3b_c01356{bottom:156.960000px;}
.y38_c01356{bottom:160.560000px;}
.y3a_c01356{bottom:161.280000px;}
.y6a_c01356{bottom:162.000000px;}
.y68_c01356{bottom:164.880000px;}
.y69_c01356{bottom:165.600000px;}
.y36_c01356{bottom:200.160000px;}
.y37_c01356{bottom:200.880000px;}
.y35_c01356{bottom:203.040000px;}
.y65_c01356{bottom:204.480000px;}
.y67_c01356{bottom:205.200000px;}
.y66_c01356{bottom:207.360000px;}
.y31_c01356{bottom:243.360000px;}
.y34_c01356{bottom:244.800000px;}
.y30_c01356{bottom:246.240000px;}
.y32_c01356{bottom:246.960000px;}
.y33_c01356{bottom:247.680000px;}
.y64_c01356{bottom:248.400000px;}
.y2f_c01356{bottom:287.280000px;}
.y2e_c01356{bottom:290.160000px;}
.y62_c01356{bottom:291.600000px;}
.y63_c01356{bottom:294.480000px;}
.y2d_c01356{bottom:330.480000px;}
.y2c_c01356{bottom:334.080000px;}
.y60_c01356{bottom:334.800000px;}
.y61_c01356{bottom:336.240000px;}
.y2b_c01356{bottom:373.680000px;}
.y29_c01356{bottom:376.560000px;}
.y5e_c01356{bottom:377.280000px;}
.y2a_c01356{bottom:378.000000px;}
.y5d_c01356{bottom:378.720000px;}
.y5f_c01356{bottom:380.880000px;}
.y28_c01356{bottom:417.600000px;}
.y26_c01356{bottom:420.480000px;}
.y27_c01356{bottom:421.200000px;}
.y5c_c01356{bottom:421.920000px;}
.y24_c01356{bottom:462.240000px;}
.y23_c01356{bottom:463.680000px;}
.y25_c01356{bottom:465.120000px;}
.y5b_c01356{bottom:466.560000px;}
.y21_c01356{bottom:506.160000px;}
.y5a_c01356{bottom:506.880000px;}
.y59_c01356{bottom:508.320000px;}
.y22_c01356{bottom:509.040000px;}
.y1e_c01356{bottom:549.360000px;}
.y1f_c01356{bottom:550.800000px;}
.y20_c01356{bottom:551.520000px;}
.y58_c01356{bottom:553.680000px;}
.y1c_c01356{bottom:592.560000px;}
.y57_c01356{bottom:594.000000px;}
.y1d_c01356{bottom:594.720000px;}
.y56_c01356{bottom:595.440000px;}
.y1b_c01356{bottom:633.600000px;}
.y19_c01356{bottom:635.760000px;}
.y54_c01356{bottom:637.200000px;}
.y1a_c01356{bottom:637.920000px;}
.y53_c01356{bottom:638.640000px;}
.y55_c01356{bottom:639.360000px;}
.y18_c01356{bottom:676.800000px;}
.y17_c01356{bottom:678.960000px;}
.y50_c01356{bottom:679.680000px;}
.y52_c01356{bottom:680.400000px;}
.y51_c01356{bottom:681.120000px;}
.y4f_c01356{bottom:681.840000px;}
.y15_c01356{bottom:720.720000px;}
.y14_c01356{bottom:722.160000px;}
.y4e_c01356{bottom:723.600000px;}
.y16_c01356{bottom:724.320000px;}
.y13_c01356{bottom:764.640000px;}
.y12_c01356{bottom:765.360000px;}
.y4b_c01356{bottom:766.080000px;}
.y4d_c01356{bottom:766.800000px;}
.y4c_c01356{bottom:767.520000px;}
.y11_c01356{bottom:807.120000px;}
.y49_c01356{bottom:808.560000px;}
.y10_c01356{bottom:809.280000px;}
.y4a_c01356{bottom:811.440000px;}
.yf_c01356{bottom:851.040000px;}
.y48_c01356{bottom:851.760000px;}
.ye_c01356{bottom:852.480000px;}
.y47_c01356{bottom:853.920000px;}
.yc_c01356{bottom:894.240000px;}
.ya_c01356{bottom:894.960000px;}
.yd_c01356{bottom:896.400000px;}
.yb_c01356{bottom:897.120000px;}
.y46_c01356{bottom:897.840000px;}
.y9_c01356{bottom:937.440000px;}
.y8_c01356{bottom:938.160000px;}
.y45_c01356{bottom:938.880000px;}
.y44_c01356{bottom:939.600000px;}
.y6_c01356{bottom:980.640000px;}
.y42_c01356{bottom:981.360000px;}
.y5_c01356{bottom:982.080000px;}
.y43_c01356{bottom:982.800000px;}
.y7_c01356{bottom:983.520000px;}
.y3_c01356{bottom:1023.840000px;}
.y40_c01356{bottom:1024.560000px;}
.y2_c01356{bottom:1025.280000px;}
.y41_c01356{bottom:1026.720000px;}
.y4_c01356{bottom:1027.440000px;}
.y1_c01356{bottom:1089.360000px;}
.h11_c01356{height:20.733750px;}
.ha_c01356{height:28.508906px;}
.hf_c01356{height:31.100625px;}
.hb_c01356{height:36.284062px;}
.h10_c01356{height:41.467500px;}
.h5_c01356{height:44.059219px;}
.he_c01356{height:46.650937px;}
.h6_c01356{height:49.242656px;}
.h8_c01356{height:51.834375px;}
.h9_c01356{height:54.426094px;}
.h7_c01356{height:57.017812px;}
.hc_c01356{height:59.609531px;}
.hd_c01356{height:62.201250px;}
.h3_c01356{height:64.792969px;}
.h2_c01356{height:67.384687px;}
.h4_c01356{height:69.976406px;}
.h0_c01356{height:1142.640000px;}
.h1_c01356{height:1143.000000px;}
.w0_c01356{width:777.600000px;}
.w1_c01356{width:777.750000px;}
.x0_c01356{left:0.000000px;}
.x2_c01356{left:51.120000px;}
.xd_c01356{left:52.560000px;}
.x12_c01356{left:54.000000px;}
.xa_c01356{left:82.080000px;}
.xf_c01356{left:84.240000px;}
.x3_c01356{left:113.760000px;}
.x10_c01356{left:115.200000px;}
.x11_c01356{left:179.280000px;}
.xc_c01356{left:190.080000px;}
.x6_c01356{left:200.880000px;}
.xb_c01356{left:212.400000px;}
.x16_c01356{left:213.840000px;}
.x9_c01356{left:254.880000px;}
.x13_c01356{left:256.320000px;}
.xe_c01356{left:265.680000px;}
.x15_c01356{left:267.120000px;}
.x4_c01356{left:298.080000px;}
.x7_c01356{left:330.480000px;}
.x14_c01356{left:342.000000px;}
.x5_c01356{left:352.080000px;}
.x8_c01356{left:384.480000px;}
.x1b_c01356{left:577.440000px;}
.x17_c01356{left:578.880000px;}
.x23_c01356{left:588.960000px;}
.x1c_c01356{left:599.040000px;}
.x25_c01356{left:600.480000px;}
.x1d_c01356{left:631.440000px;}
.x18_c01356{left:633.600000px;}
.x1e_c01356{left:664.560000px;}
.x19_c01356{left:666.000000px;}
.x1_c01356{left:671.760000px;}
.x24_c01356{left:675.360000px;}
.x1f_c01356{left:697.680000px;}
.x21_c01356{left:707.040000px;}
.x1a_c01356{left:708.480000px;}
.x22_c01356{left:727.200000px;}
.x20_c01356{left:728.640000px;}
@media print{
.v2_c01356{vertical-align:-7.680000pt;}
.v1_c01356{vertical-align:-2.560000pt;}
.v0_c01356{vertical-align:0.000000pt;}
.ls0_c01356{letter-spacing:0.000000pt;}
.ws2_c01356{word-spacing:0.000000pt;}
.ws0_c01356{word-spacing:7.227733pt;}
.ws1_c01356{word-spacing:11.680000pt;}
.fsf_c01356{font-size:20.480000pt;}
.fs8_c01356{font-size:28.160000pt;}
.fsd_c01356{font-size:30.720000pt;}
.fs9_c01356{font-size:35.840000pt;}
.fse_c01356{font-size:40.960000pt;}
.fs3_c01356{font-size:43.520000pt;}
.fsc_c01356{font-size:46.080000pt;}
.fs4_c01356{font-size:48.640000pt;}
.fs6_c01356{font-size:51.200000pt;}
.fs7_c01356{font-size:53.760000pt;}
.fs5_c01356{font-size:56.320000pt;}
.fsa_c01356{font-size:58.880000pt;}
.fsb_c01356{font-size:61.440000pt;}
.fs1_c01356{font-size:64.000000pt;}
.fs0_c01356{font-size:66.560000pt;}
.fs2_c01356{font-size:69.120000pt;}
.y0_c01356{bottom:0.000000pt;}
.y3e_c01356{bottom:99.840000pt;}
.y3f_c01356{bottom:100.480000pt;}
.y3c_c01356{bottom:103.680000pt;}
.y3d_c01356{bottom:104.960000pt;}
.y6b_c01356{bottom:105.600000pt;}
.y6c_c01356{bottom:106.880000pt;}
.y39_c01356{bottom:138.880000pt;}
.y3b_c01356{bottom:139.520000pt;}
.y38_c01356{bottom:142.720000pt;}
.y3a_c01356{bottom:143.360000pt;}
.y6a_c01356{bottom:144.000000pt;}
.y68_c01356{bottom:146.560000pt;}
.y69_c01356{bottom:147.200000pt;}
.y36_c01356{bottom:177.920000pt;}
.y37_c01356{bottom:178.560000pt;}
.y35_c01356{bottom:180.480000pt;}
.y65_c01356{bottom:181.760000pt;}
.y67_c01356{bottom:182.400000pt;}
.y66_c01356{bottom:184.320000pt;}
.y31_c01356{bottom:216.320000pt;}
.y34_c01356{bottom:217.600000pt;}
.y30_c01356{bottom:218.880000pt;}
.y32_c01356{bottom:219.520000pt;}
.y33_c01356{bottom:220.160000pt;}
.y64_c01356{bottom:220.800000pt;}
.y2f_c01356{bottom:255.360000pt;}
.y2e_c01356{bottom:257.920000pt;}
.y62_c01356{bottom:259.200000pt;}
.y63_c01356{bottom:261.760000pt;}
.y2d_c01356{bottom:293.760000pt;}
.y2c_c01356{bottom:296.960000pt;}
.y60_c01356{bottom:297.600000pt;}
.y61_c01356{bottom:298.880000pt;}
.y2b_c01356{bottom:332.160000pt;}
.y29_c01356{bottom:334.720000pt;}
.y5e_c01356{bottom:335.360000pt;}
.y2a_c01356{bottom:336.000000pt;}
.y5d_c01356{bottom:336.640000pt;}
.y5f_c01356{bottom:338.560000pt;}
.y28_c01356{bottom:371.200000pt;}
.y26_c01356{bottom:373.760000pt;}
.y27_c01356{bottom:374.400000pt;}
.y5c_c01356{bottom:375.040000pt;}
.y24_c01356{bottom:410.880000pt;}
.y23_c01356{bottom:412.160000pt;}
.y25_c01356{bottom:413.440000pt;}
.y5b_c01356{bottom:414.720000pt;}
.y21_c01356{bottom:449.920000pt;}
.y5a_c01356{bottom:450.560000pt;}
.y59_c01356{bottom:451.840000pt;}
.y22_c01356{bottom:452.480000pt;}
.y1e_c01356{bottom:488.320000pt;}
.y1f_c01356{bottom:489.600000pt;}
.y20_c01356{bottom:490.240000pt;}
.y58_c01356{bottom:492.160000pt;}
.y1c_c01356{bottom:526.720000pt;}
.y57_c01356{bottom:528.000000pt;}
.y1d_c01356{bottom:528.640000pt;}
.y56_c01356{bottom:529.280000pt;}
.y1b_c01356{bottom:563.200000pt;}
.y19_c01356{bottom:565.120000pt;}
.y54_c01356{bottom:566.400000pt;}
.y1a_c01356{bottom:567.040000pt;}
.y53_c01356{bottom:567.680000pt;}
.y55_c01356{bottom:568.320000pt;}
.y18_c01356{bottom:601.600000pt;}
.y17_c01356{bottom:603.520000pt;}
.y50_c01356{bottom:604.160000pt;}
.y52_c01356{bottom:604.800000pt;}
.y51_c01356{bottom:605.440000pt;}
.y4f_c01356{bottom:606.080000pt;}
.y15_c01356{bottom:640.640000pt;}
.y14_c01356{bottom:641.920000pt;}
.y4e_c01356{bottom:643.200000pt;}
.y16_c01356{bottom:643.840000pt;}
.y13_c01356{bottom:679.680000pt;}
.y12_c01356{bottom:680.320000pt;}
.y4b_c01356{bottom:680.960000pt;}
.y4d_c01356{bottom:681.600000pt;}
.y4c_c01356{bottom:682.240000pt;}
.y11_c01356{bottom:717.440000pt;}
.y49_c01356{bottom:718.720000pt;}
.y10_c01356{bottom:719.360000pt;}
.y4a_c01356{bottom:721.280000pt;}
.yf_c01356{bottom:756.480000pt;}
.y48_c01356{bottom:757.120000pt;}
.ye_c01356{bottom:757.760000pt;}
.y47_c01356{bottom:759.040000pt;}
.yc_c01356{bottom:794.880000pt;}
.ya_c01356{bottom:795.520000pt;}
.yd_c01356{bottom:796.800000pt;}
.yb_c01356{bottom:797.440000pt;}
.y46_c01356{bottom:798.080000pt;}
.y9_c01356{bottom:833.280000pt;}
.y8_c01356{bottom:833.920000pt;}
.y45_c01356{bottom:834.560000pt;}
.y44_c01356{bottom:835.200000pt;}
.y6_c01356{bottom:871.680000pt;}
.y42_c01356{bottom:872.320000pt;}
.y5_c01356{bottom:872.960000pt;}
.y43_c01356{bottom:873.600000pt;}
.y7_c01356{bottom:874.240000pt;}
.y3_c01356{bottom:910.080000pt;}
.y40_c01356{bottom:910.720000pt;}
.y2_c01356{bottom:911.360000pt;}
.y41_c01356{bottom:912.640000pt;}
.y4_c01356{bottom:913.280000pt;}
.y1_c01356{bottom:968.320000pt;}
.h11_c01356{height:18.430000pt;}
.ha_c01356{height:25.341250pt;}
.hf_c01356{height:27.645000pt;}
.hb_c01356{height:32.252500pt;}
.h10_c01356{height:36.860000pt;}
.h5_c01356{height:39.163750pt;}
.he_c01356{height:41.467500pt;}
.h6_c01356{height:43.771250pt;}
.h8_c01356{height:46.075000pt;}
.h9_c01356{height:48.378750pt;}
.h7_c01356{height:50.682500pt;}
.hc_c01356{height:52.986250pt;}
.hd_c01356{height:55.290000pt;}
.h3_c01356{height:57.593750pt;}
.h2_c01356{height:59.897500pt;}
.h4_c01356{height:62.201250pt;}
.h0_c01356{height:1015.680000pt;}
.h1_c01356{height:1016.000000pt;}
.w0_c01356{width:691.200000pt;}
.w1_c01356{width:691.333333pt;}
.x0_c01356{left:0.000000pt;}
.x2_c01356{left:45.440000pt;}
.xd_c01356{left:46.720000pt;}
.x12_c01356{left:48.000000pt;}
.xa_c01356{left:72.960000pt;}
.xf_c01356{left:74.880000pt;}
.x3_c01356{left:101.120000pt;}
.x10_c01356{left:102.400000pt;}
.x11_c01356{left:159.360000pt;}
.xc_c01356{left:168.960000pt;}
.x6_c01356{left:178.560000pt;}
.xb_c01356{left:188.800000pt;}
.x16_c01356{left:190.080000pt;}
.x9_c01356{left:226.560000pt;}
.x13_c01356{left:227.840000pt;}
.xe_c01356{left:236.160000pt;}
.x15_c01356{left:237.440000pt;}
.x4_c01356{left:264.960000pt;}
.x7_c01356{left:293.760000pt;}
.x14_c01356{left:304.000000pt;}
.x5_c01356{left:312.960000pt;}
.x8_c01356{left:341.760000pt;}
.x1b_c01356{left:513.280000pt;}
.x17_c01356{left:514.560000pt;}
.x23_c01356{left:523.520000pt;}
.x1c_c01356{left:532.480000pt;}
.x25_c01356{left:533.760000pt;}
.x1d_c01356{left:561.280000pt;}
.x18_c01356{left:563.200000pt;}
.x1e_c01356{left:590.720000pt;}
.x19_c01356{left:592.000000pt;}
.x1_c01356{left:597.120000pt;}
.x24_c01356{left:600.320000pt;}
.x1f_c01356{left:620.160000pt;}
.x21_c01356{left:628.480000pt;}
.x1a_c01356{left:629.760000pt;}
.x22_c01356{left:646.400000pt;}
.x20_c01356{left:647.680000pt;}
}





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

.ir_c01357:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01357{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01357;src:url('chunks/assets/font_c090f4f6f4e4170d5ff0f78a.woff2')format("woff");}.ff1_c01357{font-family:ff1_c01357;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3e_c01357{transform:matrix(0.195075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195075,0.000000,0.000000,0.250000,0,0);}
.m39_c01357{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.m42_c01357{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m38_c01357{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m8_c01357{transform:matrix(0.239225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239225,0.000000,0.000000,0.250000,0,0);}
.m28_c01357{transform:matrix(0.245850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245850,0.000000,0.000000,0.250000,0,0);}
.m32_c01357{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.md_c01357{transform:matrix(0.248350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248350,0.000000,0.000000,0.250000,0,0);}
.m2_c01357{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01357{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);}
.m2f_c01357{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);}
.m24_c01357{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);}
.m41_c01357{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mb_c01357{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m1_c01357{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);}
.m3f_c01357{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m18_c01357{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_c01357{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m21_c01357{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m7_c01357{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m4_c01357{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m23_c01357{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m6_c01357{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m27_c01357{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_c01357{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);}
.m31_c01357{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m26_c01357{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m25_c01357{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m37_c01357{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01357{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01357{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01357{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01357{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m19_c01357{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m33_c01357{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01357{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01357{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m13_c01357{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01357{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);}
.m2d_c01357{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);}
.m36_c01357{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m14_c01357{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01357{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m12_c01357{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m10_c01357{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_c01357{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m5_c01357{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);}
.m3d_c01357{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);}
.m3_c01357{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m29_c01357{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m0_c01357{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_c01357{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);}
.m22_c01357{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m11_c01357{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);}
.m20_c01357{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);}
.m35_c01357{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);}
.m40_c01357{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);}
.m34_c01357{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m16_c01357{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m15_c01357{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01357{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);}
.mf_c01357{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);}
.m1b_c01357{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01357{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);}
.m30_c01357{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01357{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m9_c01357{transform:matrix(1.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.502500,0.000000,0.000000,0.250000,0,0);}
.v0_c01357{vertical-align:0.000000px;}
.v1_c01357{vertical-align:11.520000px;}
.ls0_c01357{letter-spacing:0.000000px;}
.sc__c01357{text-shadow:none;}
.sc0_c01357{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01357{-webkit-text-stroke:0px transparent;}
.sc0_c01357{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01357{word-spacing:-0.657600px;}
.ws2_c01357{word-spacing:0.000000px;}
.ws1_c01357{word-spacing:56.938533px;}
.fc0_c01357{color:transparent;}
.fs3_c01357{font-size:20.160000px;}
.fsc_c01357{font-size:34.560000px;}
.fs8_c01357{font-size:37.440000px;}
.fs2_c01357{font-size:43.200000px;}
.fsd_c01357{font-size:46.080000px;}
.fsa_c01357{font-size:48.960000px;}
.fs7_c01357{font-size:51.840000px;}
.fs10_c01357{font-size:54.720000px;}
.fsb_c01357{font-size:57.600000px;}
.fs0_c01357{font-size:60.480000px;}
.fse_c01357{font-size:63.360000px;}
.fs9_c01357{font-size:66.240000px;}
.fs6_c01357{font-size:69.120000px;}
.fs5_c01357{font-size:72.000000px;}
.fs1_c01357{font-size:74.880000px;}
.fs4_c01357{font-size:77.760000px;}
.fsf_c01357{font-size:80.640000px;}
.y0_c01357{bottom:0.000000px;}
.y41_c01357{bottom:26.640000px;}
.y40_c01357{bottom:30.240000px;}
.y42_c01357{bottom:30.960000px;}
.y3f_c01357{bottom:31.680000px;}
.y6a_c01357{bottom:33.120000px;}
.y6b_c01357{bottom:34.560000px;}
.y3e_c01357{bottom:69.120000px;}
.y3d_c01357{bottom:73.440000px;}
.y68_c01357{bottom:75.600000px;}
.y69_c01357{bottom:77.760000px;}
.y67_c01357{bottom:78.480000px;}
.y3c_c01357{bottom:112.320000px;}
.y3b_c01357{bottom:117.360000px;}
.y64_c01357{bottom:118.080000px;}
.y66_c01357{bottom:119.520000px;}
.y65_c01357{bottom:121.680000px;}
.y3a_c01357{bottom:155.520000px;}
.y39_c01357{bottom:159.840000px;}
.y61_c01357{bottom:161.280000px;}
.y63_c01357{bottom:162.000000px;}
.y62_c01357{bottom:162.720000px;}
.y38_c01357{bottom:199.440000px;}
.y37_c01357{bottom:203.040000px;}
.y5e_c01357{bottom:205.200000px;}
.y5f_c01357{bottom:205.920000px;}
.y60_c01357{bottom:207.360000px;}
.y36_c01357{bottom:243.360000px;}
.y35_c01357{bottom:245.520000px;}
.y5c_c01357{bottom:248.400000px;}
.y5d_c01357{bottom:249.120000px;}
.y32_c01357{bottom:285.840000px;}
.y33_c01357{bottom:288.000000px;}
.y31_c01357{bottom:289.440000px;}
.y34_c01357{bottom:290.880000px;}
.y5b_c01357{bottom:293.040000px;}
.y2d_c01357{bottom:329.760000px;}
.y30_c01357{bottom:331.200000px;}
.y2f_c01357{bottom:331.920000px;}
.y2c_c01357{bottom:332.640000px;}
.y2e_c01357{bottom:333.360000px;}
.y58_c01357{bottom:334.800000px;}
.y5a_c01357{bottom:335.520000px;}
.y59_c01357{bottom:336.240000px;}
.y2b_c01357{bottom:372.960000px;}
.y2a_c01357{bottom:375.840000px;}
.y55_c01357{bottom:377.280000px;}
.y56_c01357{bottom:378.000000px;}
.y57_c01357{bottom:379.440000px;}
.y27_c01357{bottom:416.880000px;}
.y29_c01357{bottom:417.600000px;}
.y28_c01357{bottom:418.320000px;}
.y26_c01357{bottom:419.040000px;}
.y54_c01357{bottom:420.480000px;}
.y53_c01357{bottom:421.200000px;}
.y25_c01357{bottom:460.800000px;}
.y24_c01357{bottom:462.240000px;}
.y52_c01357{bottom:463.680000px;}
.y23_c01357{bottom:504.000000px;}
.y22_c01357{bottom:505.440000px;}
.y50_c01357{bottom:506.880000px;}
.y51_c01357{bottom:507.600000px;}
.y21_c01357{bottom:547.920000px;}
.y20_c01357{bottom:549.360000px;}
.y4e_c01357{bottom:550.080000px;}
.y4f_c01357{bottom:550.800000px;}
.y1f_c01357{bottom:592.560000px;}
.y1e_c01357{bottom:595.440000px;}
.y1c_c01357{bottom:645.120000px;}
.y1b_c01357{bottom:645.840000px;}
.y4d_c01357{bottom:647.280000px;}
.y1d_c01357{bottom:649.440000px;}
.y19_c01357{bottom:687.600000px;}
.y1a_c01357{bottom:688.320000px;}
.y4c_c01357{bottom:689.760000px;}
.y18_c01357{bottom:730.800000px;}
.y16_c01357{bottom:731.520000px;}
.y15_c01357{bottom:732.240000px;}
.y4b_c01357{bottom:734.400000px;}
.y17_c01357{bottom:735.120000px;}
.y11_c01357{bottom:774.720000px;}
.y13_c01357{bottom:775.440000px;}
.y14_c01357{bottom:776.160000px;}
.y12_c01357{bottom:777.600000px;}
.y4a_c01357{bottom:778.320000px;}
.yf_c01357{bottom:817.920000px;}
.y49_c01357{bottom:818.640000px;}
.y48_c01357{bottom:820.080000px;}
.y10_c01357{bottom:820.800000px;}
.ye_c01357{bottom:860.400000px;}
.yc_c01357{bottom:861.120000px;}
.yd_c01357{bottom:861.840000px;}
.y9_c01357{bottom:900.720000px;}
.yb_c01357{bottom:902.880000px;}
.y8_c01357{bottom:904.320000px;}
.y47_c01357{bottom:907.920000px;}
.ya_c01357{bottom:909.360000px;}
.y6_c01357{bottom:946.800000px;}
.y7_c01357{bottom:947.520000px;}
.y5_c01357{bottom:948.240000px;}
.y46_c01357{bottom:950.400000px;}
.y4_c01357{bottom:990.000000px;}
.y3_c01357{bottom:990.720000px;}
.y45_c01357{bottom:992.880000px;}
.y44_c01357{bottom:1033.200000px;}
.y2_c01357{bottom:1033.920000px;}
.y1_c01357{bottom:1034.640000px;}
.y43_c01357{bottom:1036.800000px;}
.h5_c01357{height:18.142031px;}
.he_c01357{height:31.100625px;}
.ha_c01357{height:33.692344px;}
.h4_c01357{height:38.875781px;}
.hf_c01357{height:41.467500px;}
.hc_c01357{height:44.059219px;}
.h9_c01357{height:46.650937px;}
.h12_c01357{height:49.242656px;}
.hd_c01357{height:51.834375px;}
.h2_c01357{height:54.426094px;}
.h10_c01357{height:57.017812px;}
.hb_c01357{height:59.609531px;}
.h8_c01357{height:62.201250px;}
.h7_c01357{height:64.792969px;}
.h3_c01357{height:67.384687px;}
.h6_c01357{height:69.976406px;}
.h11_c01357{height:72.568125px;}
.h1_c01357{height:1144.500000px;}
.h0_c01357{height:1144.800000px;}
.w0_c01357{width:776.160000px;}
.w1_c01357{width:776.250000px;}
.x0_c01357{left:0.000000px;}
.x1_c01357{left:47.520000px;}
.xb_c01357{left:48.960000px;}
.x1c_c01357{left:50.400000px;}
.x1f_c01357{left:51.840000px;}
.x4_c01357{left:79.920000px;}
.x22_c01357{left:82.800000px;}
.x5_c01357{left:88.560000px;}
.x16_c01357{left:100.080000px;}
.x2_c01357{left:110.160000px;}
.x20_c01357{left:111.600000px;}
.x17_c01357{left:154.080000px;}
.x19_c01357{left:197.280000px;}
.x14_c01357{left:198.720000px;}
.x3_c01357{left:208.800000px;}
.x21_c01357{left:210.240000px;}
.xc_c01357{left:218.880000px;}
.x11_c01357{left:220.320000px;}
.x15_c01357{left:240.480000px;}
.x18_c01357{left:242.640000px;}
.x1a_c01357{left:252.720000px;}
.x7_c01357{left:263.520000px;}
.xd_c01357{left:274.320000px;}
.x8_c01357{left:306.000000px;}
.x23_c01357{left:317.520000px;}
.x6_c01357{left:327.600000px;}
.x1d_c01357{left:338.400000px;}
.x1b_c01357{left:349.920000px;}
.x12_c01357{left:360.720000px;}
.x24_c01357{left:362.160000px;}
.xe_c01357{left:370.800000px;}
.x1e_c01357{left:382.320000px;}
.x9_c01357{left:403.200000px;}
.x13_c01357{left:414.000000px;}
.xa_c01357{left:447.120000px;}
.xf_c01357{left:478.800000px;}
.x10_c01357{left:532.800000px;}
.x2c_c01357{left:574.560000px;}
.x2a_c01357{left:595.440000px;}
.x25_c01357{left:596.880000px;}
.x30_c01357{left:607.680000px;}
.x2b_c01357{left:629.280000px;}
.x2e_c01357{left:661.680000px;}
.x26_c01357{left:672.480000px;}
.x2d_c01357{left:702.720000px;}
.x29_c01357{left:704.160000px;}
.x27_c01357{left:705.600000px;}
.x2f_c01357{left:723.600000px;}
.x28_c01357{left:725.760000px;}
@media print{
.v0_c01357{vertical-align:0.000000pt;}
.v1_c01357{vertical-align:10.240000pt;}
.ls0_c01357{letter-spacing:0.000000pt;}
.ws0_c01357{word-spacing:-0.584533pt;}
.ws2_c01357{word-spacing:0.000000pt;}
.ws1_c01357{word-spacing:50.612029pt;}
.fs3_c01357{font-size:17.920000pt;}
.fsc_c01357{font-size:30.720000pt;}
.fs8_c01357{font-size:33.280000pt;}
.fs2_c01357{font-size:38.400000pt;}
.fsd_c01357{font-size:40.960000pt;}
.fsa_c01357{font-size:43.520000pt;}
.fs7_c01357{font-size:46.080000pt;}
.fs10_c01357{font-size:48.640000pt;}
.fsb_c01357{font-size:51.200000pt;}
.fs0_c01357{font-size:53.760000pt;}
.fse_c01357{font-size:56.320000pt;}
.fs9_c01357{font-size:58.880000pt;}
.fs6_c01357{font-size:61.440000pt;}
.fs5_c01357{font-size:64.000000pt;}
.fs1_c01357{font-size:66.560000pt;}
.fs4_c01357{font-size:69.120000pt;}
.fsf_c01357{font-size:71.680000pt;}
.y0_c01357{bottom:0.000000pt;}
.y41_c01357{bottom:23.680000pt;}
.y40_c01357{bottom:26.880000pt;}
.y42_c01357{bottom:27.520000pt;}
.y3f_c01357{bottom:28.160000pt;}
.y6a_c01357{bottom:29.440000pt;}
.y6b_c01357{bottom:30.720000pt;}
.y3e_c01357{bottom:61.440000pt;}
.y3d_c01357{bottom:65.280000pt;}
.y68_c01357{bottom:67.200000pt;}
.y69_c01357{bottom:69.120000pt;}
.y67_c01357{bottom:69.760000pt;}
.y3c_c01357{bottom:99.840000pt;}
.y3b_c01357{bottom:104.320000pt;}
.y64_c01357{bottom:104.960000pt;}
.y66_c01357{bottom:106.240000pt;}
.y65_c01357{bottom:108.160000pt;}
.y3a_c01357{bottom:138.240000pt;}
.y39_c01357{bottom:142.080000pt;}
.y61_c01357{bottom:143.360000pt;}
.y63_c01357{bottom:144.000000pt;}
.y62_c01357{bottom:144.640000pt;}
.y38_c01357{bottom:177.280000pt;}
.y37_c01357{bottom:180.480000pt;}
.y5e_c01357{bottom:182.400000pt;}
.y5f_c01357{bottom:183.040000pt;}
.y60_c01357{bottom:184.320000pt;}
.y36_c01357{bottom:216.320000pt;}
.y35_c01357{bottom:218.240000pt;}
.y5c_c01357{bottom:220.800000pt;}
.y5d_c01357{bottom:221.440000pt;}
.y32_c01357{bottom:254.080000pt;}
.y33_c01357{bottom:256.000000pt;}
.y31_c01357{bottom:257.280000pt;}
.y34_c01357{bottom:258.560000pt;}
.y5b_c01357{bottom:260.480000pt;}
.y2d_c01357{bottom:293.120000pt;}
.y30_c01357{bottom:294.400000pt;}
.y2f_c01357{bottom:295.040000pt;}
.y2c_c01357{bottom:295.680000pt;}
.y2e_c01357{bottom:296.320000pt;}
.y58_c01357{bottom:297.600000pt;}
.y5a_c01357{bottom:298.240000pt;}
.y59_c01357{bottom:298.880000pt;}
.y2b_c01357{bottom:331.520000pt;}
.y2a_c01357{bottom:334.080000pt;}
.y55_c01357{bottom:335.360000pt;}
.y56_c01357{bottom:336.000000pt;}
.y57_c01357{bottom:337.280000pt;}
.y27_c01357{bottom:370.560000pt;}
.y29_c01357{bottom:371.200000pt;}
.y28_c01357{bottom:371.840000pt;}
.y26_c01357{bottom:372.480000pt;}
.y54_c01357{bottom:373.760000pt;}
.y53_c01357{bottom:374.400000pt;}
.y25_c01357{bottom:409.600000pt;}
.y24_c01357{bottom:410.880000pt;}
.y52_c01357{bottom:412.160000pt;}
.y23_c01357{bottom:448.000000pt;}
.y22_c01357{bottom:449.280000pt;}
.y50_c01357{bottom:450.560000pt;}
.y51_c01357{bottom:451.200000pt;}
.y21_c01357{bottom:487.040000pt;}
.y20_c01357{bottom:488.320000pt;}
.y4e_c01357{bottom:488.960000pt;}
.y4f_c01357{bottom:489.600000pt;}
.y1f_c01357{bottom:526.720000pt;}
.y1e_c01357{bottom:529.280000pt;}
.y1c_c01357{bottom:573.440000pt;}
.y1b_c01357{bottom:574.080000pt;}
.y4d_c01357{bottom:575.360000pt;}
.y1d_c01357{bottom:577.280000pt;}
.y19_c01357{bottom:611.200000pt;}
.y1a_c01357{bottom:611.840000pt;}
.y4c_c01357{bottom:613.120000pt;}
.y18_c01357{bottom:649.600000pt;}
.y16_c01357{bottom:650.240000pt;}
.y15_c01357{bottom:650.880000pt;}
.y4b_c01357{bottom:652.800000pt;}
.y17_c01357{bottom:653.440000pt;}
.y11_c01357{bottom:688.640000pt;}
.y13_c01357{bottom:689.280000pt;}
.y14_c01357{bottom:689.920000pt;}
.y12_c01357{bottom:691.200000pt;}
.y4a_c01357{bottom:691.840000pt;}
.yf_c01357{bottom:727.040000pt;}
.y49_c01357{bottom:727.680000pt;}
.y48_c01357{bottom:728.960000pt;}
.y10_c01357{bottom:729.600000pt;}
.ye_c01357{bottom:764.800000pt;}
.yc_c01357{bottom:765.440000pt;}
.yd_c01357{bottom:766.080000pt;}
.y9_c01357{bottom:800.640000pt;}
.yb_c01357{bottom:802.560000pt;}
.y8_c01357{bottom:803.840000pt;}
.y47_c01357{bottom:807.040000pt;}
.ya_c01357{bottom:808.320000pt;}
.y6_c01357{bottom:841.600000pt;}
.y7_c01357{bottom:842.240000pt;}
.y5_c01357{bottom:842.880000pt;}
.y46_c01357{bottom:844.800000pt;}
.y4_c01357{bottom:880.000000pt;}
.y3_c01357{bottom:880.640000pt;}
.y45_c01357{bottom:882.560000pt;}
.y44_c01357{bottom:918.400000pt;}
.y2_c01357{bottom:919.040000pt;}
.y1_c01357{bottom:919.680000pt;}
.y43_c01357{bottom:921.600000pt;}
.h5_c01357{height:16.126250pt;}
.he_c01357{height:27.645000pt;}
.ha_c01357{height:29.948750pt;}
.h4_c01357{height:34.556250pt;}
.hf_c01357{height:36.860000pt;}
.hc_c01357{height:39.163750pt;}
.h9_c01357{height:41.467500pt;}
.h12_c01357{height:43.771250pt;}
.hd_c01357{height:46.075000pt;}
.h2_c01357{height:48.378750pt;}
.h10_c01357{height:50.682500pt;}
.hb_c01357{height:52.986250pt;}
.h8_c01357{height:55.290000pt;}
.h7_c01357{height:57.593750pt;}
.h3_c01357{height:59.897500pt;}
.h6_c01357{height:62.201250pt;}
.h11_c01357{height:64.505000pt;}
.h1_c01357{height:1017.333333pt;}
.h0_c01357{height:1017.600000pt;}
.w0_c01357{width:689.920000pt;}
.w1_c01357{width:690.000000pt;}
.x0_c01357{left:0.000000pt;}
.x1_c01357{left:42.240000pt;}
.xb_c01357{left:43.520000pt;}
.x1c_c01357{left:44.800000pt;}
.x1f_c01357{left:46.080000pt;}
.x4_c01357{left:71.040000pt;}
.x22_c01357{left:73.600000pt;}
.x5_c01357{left:78.720000pt;}
.x16_c01357{left:88.960000pt;}
.x2_c01357{left:97.920000pt;}
.x20_c01357{left:99.200000pt;}
.x17_c01357{left:136.960000pt;}
.x19_c01357{left:175.360000pt;}
.x14_c01357{left:176.640000pt;}
.x3_c01357{left:185.600000pt;}
.x21_c01357{left:186.880000pt;}
.xc_c01357{left:194.560000pt;}
.x11_c01357{left:195.840000pt;}
.x15_c01357{left:213.760000pt;}
.x18_c01357{left:215.680000pt;}
.x1a_c01357{left:224.640000pt;}
.x7_c01357{left:234.240000pt;}
.xd_c01357{left:243.840000pt;}
.x8_c01357{left:272.000000pt;}
.x23_c01357{left:282.240000pt;}
.x6_c01357{left:291.200000pt;}
.x1d_c01357{left:300.800000pt;}
.x1b_c01357{left:311.040000pt;}
.x12_c01357{left:320.640000pt;}
.x24_c01357{left:321.920000pt;}
.xe_c01357{left:329.600000pt;}
.x1e_c01357{left:339.840000pt;}
.x9_c01357{left:358.400000pt;}
.x13_c01357{left:368.000000pt;}
.xa_c01357{left:397.440000pt;}
.xf_c01357{left:425.600000pt;}
.x10_c01357{left:473.600000pt;}
.x2c_c01357{left:510.720000pt;}
.x2a_c01357{left:529.280000pt;}
.x25_c01357{left:530.560000pt;}
.x30_c01357{left:540.160000pt;}
.x2b_c01357{left:559.360000pt;}
.x2e_c01357{left:588.160000pt;}
.x26_c01357{left:597.760000pt;}
.x2d_c01357{left:624.640000pt;}
.x29_c01357{left:625.920000pt;}
.x27_c01357{left:627.200000pt;}
.x2f_c01357{left:643.200000pt;}
.x28_c01357{left:645.120000pt;}
}





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

.ir_c01358:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01358{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01358;src:url('chunks/assets/font_591ff14cb5265a078685448e.woff2')format("woff");}.ff1_c01358{font-family:ff1_c01358;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3b_c01358{transform:matrix(0.199175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199175,0.000000,0.000000,0.250000,0,0);}
.m28_c01358{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m36_c01358{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_c01358{transform:matrix(0.227625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227625,0.000000,0.000000,0.250000,0,0);}
.m39_c01358{transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);}
.m12_c01358{transform:matrix(0.234725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234725,0.000000,0.000000,0.250000,0,0);}
.m45_c01358{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m7_c01358{transform:matrix(0.249275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249275,0.000000,0.000000,0.250000,0,0);}
.m15_c01358{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_c01358{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m17_c01358{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m18_c01358{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);}
.m44_c01358{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);}
.m30_c01358{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m23_c01358{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m21_c01358{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m14_c01358{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);}
.m22_c01358{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);}
.m42_c01358{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.ma_c01358{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1_c01358{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m10_c01358{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m8_c01358{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m3_c01358{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m38_c01358{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m41_c01358{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m24_c01358{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m35_c01358{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m34_c01358{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01358{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01358{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01358{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01358{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m32_c01358{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01358{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m11_c01358{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);}
.m3f_c01358{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m25_c01358{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);}
.m3c_c01358{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);}
.m40_c01358{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m20_c01358{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_c01358{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);}
.m33_c01358{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m9_c01358{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m19_c01358{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m16_c01358{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);}
.m6_c01358{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m27_c01358{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);}
.m0_c01358{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.mf_c01358{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);}
.m2_c01358{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01358{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01358{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);}
.m2b_c01358{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);}
.m4_c01358{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01358{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01358{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);}
.m26_c01358{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m5_c01358{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);}
.md_c01358{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m31_c01358{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);}
.mc_c01358{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01358{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);}
.m2e_c01358{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m13_c01358{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);}
.mb_c01358{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m29_c01358{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m43_c01358{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m37_c01358{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01358{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.v0_c01358{vertical-align:0.000000px;}
.v1_c01358{vertical-align:2.880000px;}
.ls0_c01358{letter-spacing:0.000000px;}
.sc__c01358{text-shadow:none;}
.sc0_c01358{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01358{-webkit-text-stroke:0px transparent;}
.sc0_c01358{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01358{word-spacing:0.000000px;}
.ws0_c01358{word-spacing:11.693143px;}
.ws1_c01358{word-spacing:11.856000px;}
.fc0_c01358{color:transparent;}
.fs12_c01358{font-size:17.280000px;}
.fs11_c01358{font-size:23.040000px;}
.fsb_c01358{font-size:37.440000px;}
.fs4_c01358{font-size:40.320000px;}
.fs9_c01358{font-size:43.200000px;}
.fs8_c01358{font-size:46.080000px;}
.fs6_c01358{font-size:48.960000px;}
.fs3_c01358{font-size:51.840000px;}
.fsf_c01358{font-size:54.720000px;}
.fs2_c01358{font-size:57.600000px;}
.fs0_c01358{font-size:60.480000px;}
.fs5_c01358{font-size:63.360000px;}
.fs13_c01358{font-size:66.240000px;}
.fsa_c01358{font-size:69.120000px;}
.fsd_c01358{font-size:72.000000px;}
.fs7_c01358{font-size:74.880000px;}
.fs1_c01358{font-size:77.760000px;}
.fse_c01358{font-size:80.640000px;}
.fsc_c01358{font-size:95.040000px;}
.fs10_c01358{font-size:103.680000px;}
.y0_c01358{bottom:0.000000px;}
.y43_c01358{bottom:25.920000px;}
.y6a_c01358{bottom:29.520000px;}
.y69_c01358{bottom:30.240000px;}
.y42_c01358{bottom:30.960000px;}
.y68_c01358{bottom:31.680000px;}
.y67_c01358{bottom:32.400000px;}
.y3f_c01358{bottom:72.000000px;}
.y40_c01358{bottom:74.160000px;}
.y41_c01358{bottom:76.320000px;}
.y3e_c01358{bottom:77.040000px;}
.y66_c01358{bottom:77.760000px;}
.y65_c01358{bottom:78.480000px;}
.y3d_c01358{bottom:115.920000px;}
.y3c_c01358{bottom:120.240000px;}
.y64_c01358{bottom:123.120000px;}
.y3b_c01358{bottom:159.840000px;}
.y3a_c01358{bottom:163.440000px;}
.y58_c01358{bottom:164.160000px;}
.y63_c01358{bottom:166.320000px;}
.y36_c01358{bottom:203.040000px;}
.y39_c01358{bottom:204.480000px;}
.y37_c01358{bottom:205.200000px;}
.y35_c01358{bottom:206.640000px;}
.y38_c01358{bottom:207.360000px;}
.y62_c01358{bottom:208.800000px;}
.y34_c01358{bottom:246.240000px;}
.y61_c01358{bottom:249.120000px;}
.y33_c01358{bottom:249.840000px;}
.y30_c01358{bottom:250.560000px;}
.y31_c01358{bottom:251.280000px;}
.y32_c01358{bottom:254.160000px;}
.y2f_c01358{bottom:284.400000px;}
.y2c_c01358{bottom:289.440000px;}
.y2e_c01358{bottom:293.040000px;}
.y2d_c01358{bottom:293.760000px;}
.y2b_c01358{bottom:294.480000px;}
.y2a_c01358{bottom:333.360000px;}
.y29_c01358{bottom:336.960000px;}
.y60_c01358{bottom:337.680000px;}
.y5e_c01358{bottom:338.400000px;}
.y5f_c01358{bottom:339.120000px;}
.y28_c01358{bottom:376.560000px;}
.y5c_c01358{bottom:379.440000px;}
.y27_c01358{bottom:380.160000px;}
.y5d_c01358{bottom:380.880000px;}
.y26_c01358{bottom:419.040000px;}
.y5a_c01358{bottom:421.200000px;}
.y5b_c01358{bottom:421.920000px;}
.y25_c01358{bottom:423.360000px;}
.y24_c01358{bottom:462.960000px;}
.y23_c01358{bottom:465.840000px;}
.y59_c01358{bottom:467.280000px;}
.y20_c01358{bottom:506.160000px;}
.y22_c01358{bottom:506.880000px;}
.y21_c01358{bottom:509.760000px;}
.y1e_c01358{bottom:538.560000px;}
.y1f_c01358{bottom:540.720000px;}
.y1d_c01358{bottom:542.160000px;}
.y1c_c01358{bottom:582.480000px;}
.y56_c01358{bottom:583.200000px;}
.y57_c01358{bottom:583.920000px;}
.y1b_c01358{bottom:585.360000px;}
.y1a_c01358{bottom:618.480000px;}
.y19_c01358{bottom:630.000000px;}
.y18_c01358{bottom:679.680000px;}
.y17_c01358{bottom:680.400000px;}
.y16_c01358{bottom:682.560000px;}
.y55_c01358{bottom:683.280000px;}
.y15_c01358{bottom:723.600000px;}
.y54_c01358{bottom:724.320000px;}
.y52_c01358{bottom:725.040000px;}
.y14_c01358{bottom:725.760000px;}
.y53_c01358{bottom:726.480000px;}
.y50_c01358{bottom:766.800000px;}
.y4f_c01358{bottom:767.520000px;}
.y51_c01358{bottom:768.960000px;}
.y4e_c01358{bottom:809.280000px;}
.y12_c01358{bottom:810.000000px;}
.y4d_c01358{bottom:810.720000px;}
.y11_c01358{bottom:812.160000px;}
.y13_c01358{bottom:813.600000px;}
.y4a_c01358{bottom:852.480000px;}
.y4b_c01358{bottom:853.200000px;}
.y10_c01358{bottom:853.920000px;}
.y4c_c01358{bottom:854.640000px;}
.yf_c01358{bottom:855.360000px;}
.ye_c01358{bottom:888.480000px;}
.y49_c01358{bottom:895.680000px;}
.yb_c01358{bottom:896.400000px;}
.yd_c01358{bottom:897.120000px;}
.ya_c01358{bottom:898.560000px;}
.yc_c01358{bottom:900.720000px;}
.y9_c01358{bottom:938.880000px;}
.y8_c01358{bottom:939.600000px;}
.y48_c01358{bottom:941.040000px;}
.y7_c01358{bottom:941.760000px;}
.y46_c01358{bottom:981.360000px;}
.y47_c01358{bottom:982.080000px;}
.y4_c01358{bottom:982.800000px;}
.y5_c01358{bottom:983.520000px;}
.y3_c01358{bottom:984.240000px;}
.y6_c01358{bottom:985.680000px;}
.y45_c01358{bottom:1024.560000px;}
.y2_c01358{bottom:1026.000000px;}
.y1_c01358{bottom:1027.440000px;}
.y44_c01358{bottom:1082.160000px;}
.h14_c01358{height:15.550313px;}
.h13_c01358{height:20.733750px;}
.hd_c01358{height:33.692344px;}
.h6_c01358{height:36.284062px;}
.hb_c01358{height:38.875781px;}
.ha_c01358{height:41.467500px;}
.h8_c01358{height:44.059219px;}
.h5_c01358{height:46.650937px;}
.h11_c01358{height:49.242656px;}
.h4_c01358{height:51.834375px;}
.h2_c01358{height:54.426094px;}
.h16_c01358{height:54.714375px;}
.h7_c01358{height:57.017812px;}
.h15_c01358{height:59.609531px;}
.hc_c01358{height:62.201250px;}
.hf_c01358{height:64.792969px;}
.h9_c01358{height:67.384687px;}
.h3_c01358{height:69.976406px;}
.h10_c01358{height:72.568125px;}
.he_c01358{height:85.526719px;}
.h12_c01358{height:93.301875px;}
.h1_c01358{height:1146.750000px;}
.h0_c01358{height:1146.960000px;}
.w0_c01358{width:779.760000px;}
.w1_c01358{width:780.000000px;}
.x0_c01358{left:0.000000px;}
.x1_c01358{left:49.680000px;}
.x11_c01358{left:51.120000px;}
.x23_c01358{left:52.560000px;}
.x1b_c01358{left:80.640000px;}
.x1c_c01358{left:90.720000px;}
.xf_c01358{left:102.240000px;}
.xb_c01358{left:113.040000px;}
.x2_c01358{left:114.480000px;}
.x18_c01358{left:124.560000px;}
.x10_c01358{left:157.680000px;}
.x15_c01358{left:166.320000px;}
.x1d_c01358{left:187.920000px;}
.x17_c01358{left:189.360000px;}
.x1e_c01358{left:199.440000px;}
.xc_c01358{left:200.880000px;}
.xe_c01358{left:211.680000px;}
.x16_c01358{left:221.760000px;}
.x5_c01358{left:234.000000px;}
.xd_c01358{left:244.800000px;}
.x19_c01358{left:252.720000px;}
.x12_c01358{left:254.160000px;}
.x22_c01358{left:275.760000px;}
.x1f_c01358{left:296.640000px;}
.x6_c01358{left:298.080000px;}
.x13_c01358{left:308.880000px;}
.x3_c01358{left:330.480000px;}
.x7_c01358{left:352.080000px;}
.x4_c01358{left:385.200000px;}
.x14_c01358{left:394.560000px;}
.x20_c01358{left:447.840000px;}
.x8_c01358{left:460.080000px;}
.x21_c01358{left:489.600000px;}
.xa_c01358{left:503.280000px;}
.x9_c01358{left:514.080000px;}
.x1a_c01358{left:542.880000px;}
.x34_c01358{left:576.000000px;}
.x27_c01358{left:578.880000px;}
.x2d_c01358{left:599.040000px;}
.x25_c01358{left:600.480000px;}
.x30_c01358{left:609.840000px;}
.x32_c01358{left:630.720000px;}
.x2e_c01358{left:632.160000px;}
.x28_c01358{left:633.600000px;}
.x35_c01358{left:653.040000px;}
.x33_c01358{left:663.840000px;}
.x2b_c01358{left:665.280000px;}
.x29_c01358{left:666.720000px;}
.x36_c01358{left:685.440000px;}
.x24_c01358{left:688.320000px;}
.x2f_c01358{left:697.680000px;}
.x31_c01358{left:706.320000px;}
.x2c_c01358{left:707.760000px;}
.x26_c01358{left:709.200000px;}
.x37_c01358{left:725.760000px;}
.x2a_c01358{left:729.360000px;}
@media print{
.v0_c01358{vertical-align:0.000000pt;}
.v1_c01358{vertical-align:2.560000pt;}
.ls0_c01358{letter-spacing:0.000000pt;}
.ws2_c01358{word-spacing:0.000000pt;}
.ws0_c01358{word-spacing:10.393905pt;}
.ws1_c01358{word-spacing:10.538667pt;}
.fs12_c01358{font-size:15.360000pt;}
.fs11_c01358{font-size:20.480000pt;}
.fsb_c01358{font-size:33.280000pt;}
.fs4_c01358{font-size:35.840000pt;}
.fs9_c01358{font-size:38.400000pt;}
.fs8_c01358{font-size:40.960000pt;}
.fs6_c01358{font-size:43.520000pt;}
.fs3_c01358{font-size:46.080000pt;}
.fsf_c01358{font-size:48.640000pt;}
.fs2_c01358{font-size:51.200000pt;}
.fs0_c01358{font-size:53.760000pt;}
.fs5_c01358{font-size:56.320000pt;}
.fs13_c01358{font-size:58.880000pt;}
.fsa_c01358{font-size:61.440000pt;}
.fsd_c01358{font-size:64.000000pt;}
.fs7_c01358{font-size:66.560000pt;}
.fs1_c01358{font-size:69.120000pt;}
.fse_c01358{font-size:71.680000pt;}
.fsc_c01358{font-size:84.480000pt;}
.fs10_c01358{font-size:92.160000pt;}
.y0_c01358{bottom:0.000000pt;}
.y43_c01358{bottom:23.040000pt;}
.y6a_c01358{bottom:26.240000pt;}
.y69_c01358{bottom:26.880000pt;}
.y42_c01358{bottom:27.520000pt;}
.y68_c01358{bottom:28.160000pt;}
.y67_c01358{bottom:28.800000pt;}
.y3f_c01358{bottom:64.000000pt;}
.y40_c01358{bottom:65.920000pt;}
.y41_c01358{bottom:67.840000pt;}
.y3e_c01358{bottom:68.480000pt;}
.y66_c01358{bottom:69.120000pt;}
.y65_c01358{bottom:69.760000pt;}
.y3d_c01358{bottom:103.040000pt;}
.y3c_c01358{bottom:106.880000pt;}
.y64_c01358{bottom:109.440000pt;}
.y3b_c01358{bottom:142.080000pt;}
.y3a_c01358{bottom:145.280000pt;}
.y58_c01358{bottom:145.920000pt;}
.y63_c01358{bottom:147.840000pt;}
.y36_c01358{bottom:180.480000pt;}
.y39_c01358{bottom:181.760000pt;}
.y37_c01358{bottom:182.400000pt;}
.y35_c01358{bottom:183.680000pt;}
.y38_c01358{bottom:184.320000pt;}
.y62_c01358{bottom:185.600000pt;}
.y34_c01358{bottom:218.880000pt;}
.y61_c01358{bottom:221.440000pt;}
.y33_c01358{bottom:222.080000pt;}
.y30_c01358{bottom:222.720000pt;}
.y31_c01358{bottom:223.360000pt;}
.y32_c01358{bottom:225.920000pt;}
.y2f_c01358{bottom:252.800000pt;}
.y2c_c01358{bottom:257.280000pt;}
.y2e_c01358{bottom:260.480000pt;}
.y2d_c01358{bottom:261.120000pt;}
.y2b_c01358{bottom:261.760000pt;}
.y2a_c01358{bottom:296.320000pt;}
.y29_c01358{bottom:299.520000pt;}
.y60_c01358{bottom:300.160000pt;}
.y5e_c01358{bottom:300.800000pt;}
.y5f_c01358{bottom:301.440000pt;}
.y28_c01358{bottom:334.720000pt;}
.y5c_c01358{bottom:337.280000pt;}
.y27_c01358{bottom:337.920000pt;}
.y5d_c01358{bottom:338.560000pt;}
.y26_c01358{bottom:372.480000pt;}
.y5a_c01358{bottom:374.400000pt;}
.y5b_c01358{bottom:375.040000pt;}
.y25_c01358{bottom:376.320000pt;}
.y24_c01358{bottom:411.520000pt;}
.y23_c01358{bottom:414.080000pt;}
.y59_c01358{bottom:415.360000pt;}
.y20_c01358{bottom:449.920000pt;}
.y22_c01358{bottom:450.560000pt;}
.y21_c01358{bottom:453.120000pt;}
.y1e_c01358{bottom:478.720000pt;}
.y1f_c01358{bottom:480.640000pt;}
.y1d_c01358{bottom:481.920000pt;}
.y1c_c01358{bottom:517.760000pt;}
.y56_c01358{bottom:518.400000pt;}
.y57_c01358{bottom:519.040000pt;}
.y1b_c01358{bottom:520.320000pt;}
.y1a_c01358{bottom:549.760000pt;}
.y19_c01358{bottom:560.000000pt;}
.y18_c01358{bottom:604.160000pt;}
.y17_c01358{bottom:604.800000pt;}
.y16_c01358{bottom:606.720000pt;}
.y55_c01358{bottom:607.360000pt;}
.y15_c01358{bottom:643.200000pt;}
.y54_c01358{bottom:643.840000pt;}
.y52_c01358{bottom:644.480000pt;}
.y14_c01358{bottom:645.120000pt;}
.y53_c01358{bottom:645.760000pt;}
.y50_c01358{bottom:681.600000pt;}
.y4f_c01358{bottom:682.240000pt;}
.y51_c01358{bottom:683.520000pt;}
.y4e_c01358{bottom:719.360000pt;}
.y12_c01358{bottom:720.000000pt;}
.y4d_c01358{bottom:720.640000pt;}
.y11_c01358{bottom:721.920000pt;}
.y13_c01358{bottom:723.200000pt;}
.y4a_c01358{bottom:757.760000pt;}
.y4b_c01358{bottom:758.400000pt;}
.y10_c01358{bottom:759.040000pt;}
.y4c_c01358{bottom:759.680000pt;}
.yf_c01358{bottom:760.320000pt;}
.ye_c01358{bottom:789.760000pt;}
.y49_c01358{bottom:796.160000pt;}
.yb_c01358{bottom:796.800000pt;}
.yd_c01358{bottom:797.440000pt;}
.ya_c01358{bottom:798.720000pt;}
.yc_c01358{bottom:800.640000pt;}
.y9_c01358{bottom:834.560000pt;}
.y8_c01358{bottom:835.200000pt;}
.y48_c01358{bottom:836.480000pt;}
.y7_c01358{bottom:837.120000pt;}
.y46_c01358{bottom:872.320000pt;}
.y47_c01358{bottom:872.960000pt;}
.y4_c01358{bottom:873.600000pt;}
.y5_c01358{bottom:874.240000pt;}
.y3_c01358{bottom:874.880000pt;}
.y6_c01358{bottom:876.160000pt;}
.y45_c01358{bottom:910.720000pt;}
.y2_c01358{bottom:912.000000pt;}
.y1_c01358{bottom:913.280000pt;}
.y44_c01358{bottom:961.920000pt;}
.h14_c01358{height:13.822500pt;}
.h13_c01358{height:18.430000pt;}
.hd_c01358{height:29.948750pt;}
.h6_c01358{height:32.252500pt;}
.hb_c01358{height:34.556250pt;}
.ha_c01358{height:36.860000pt;}
.h8_c01358{height:39.163750pt;}
.h5_c01358{height:41.467500pt;}
.h11_c01358{height:43.771250pt;}
.h4_c01358{height:46.075000pt;}
.h2_c01358{height:48.378750pt;}
.h16_c01358{height:48.635000pt;}
.h7_c01358{height:50.682500pt;}
.h15_c01358{height:52.986250pt;}
.hc_c01358{height:55.290000pt;}
.hf_c01358{height:57.593750pt;}
.h9_c01358{height:59.897500pt;}
.h3_c01358{height:62.201250pt;}
.h10_c01358{height:64.505000pt;}
.he_c01358{height:76.023750pt;}
.h12_c01358{height:82.935000pt;}
.h1_c01358{height:1019.333333pt;}
.h0_c01358{height:1019.520000pt;}
.w0_c01358{width:693.120000pt;}
.w1_c01358{width:693.333333pt;}
.x0_c01358{left:0.000000pt;}
.x1_c01358{left:44.160000pt;}
.x11_c01358{left:45.440000pt;}
.x23_c01358{left:46.720000pt;}
.x1b_c01358{left:71.680000pt;}
.x1c_c01358{left:80.640000pt;}
.xf_c01358{left:90.880000pt;}
.xb_c01358{left:100.480000pt;}
.x2_c01358{left:101.760000pt;}
.x18_c01358{left:110.720000pt;}
.x10_c01358{left:140.160000pt;}
.x15_c01358{left:147.840000pt;}
.x1d_c01358{left:167.040000pt;}
.x17_c01358{left:168.320000pt;}
.x1e_c01358{left:177.280000pt;}
.xc_c01358{left:178.560000pt;}
.xe_c01358{left:188.160000pt;}
.x16_c01358{left:197.120000pt;}
.x5_c01358{left:208.000000pt;}
.xd_c01358{left:217.600000pt;}
.x19_c01358{left:224.640000pt;}
.x12_c01358{left:225.920000pt;}
.x22_c01358{left:245.120000pt;}
.x1f_c01358{left:263.680000pt;}
.x6_c01358{left:264.960000pt;}
.x13_c01358{left:274.560000pt;}
.x3_c01358{left:293.760000pt;}
.x7_c01358{left:312.960000pt;}
.x4_c01358{left:342.400000pt;}
.x14_c01358{left:350.720000pt;}
.x20_c01358{left:398.080000pt;}
.x8_c01358{left:408.960000pt;}
.x21_c01358{left:435.200000pt;}
.xa_c01358{left:447.360000pt;}
.x9_c01358{left:456.960000pt;}
.x1a_c01358{left:482.560000pt;}
.x34_c01358{left:512.000000pt;}
.x27_c01358{left:514.560000pt;}
.x2d_c01358{left:532.480000pt;}
.x25_c01358{left:533.760000pt;}
.x30_c01358{left:542.080000pt;}
.x32_c01358{left:560.640000pt;}
.x2e_c01358{left:561.920000pt;}
.x28_c01358{left:563.200000pt;}
.x35_c01358{left:580.480000pt;}
.x33_c01358{left:590.080000pt;}
.x2b_c01358{left:591.360000pt;}
.x29_c01358{left:592.640000pt;}
.x36_c01358{left:609.280000pt;}
.x24_c01358{left:611.840000pt;}
.x2f_c01358{left:620.160000pt;}
.x31_c01358{left:627.840000pt;}
.x2c_c01358{left:629.120000pt;}
.x26_c01358{left:630.400000pt;}
.x37_c01358{left:645.120000pt;}
.x2a_c01358{left:648.320000pt;}
}





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

.ir_c01359:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01359{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01359;src:url('chunks/assets/font_f14090f046bd7489553823cc.woff2')format("woff");}.ff1_c01359{font-family:ff1_c01359;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m49_c01359{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m27_c01359{transform:matrix(0.202375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202375,0.000000,0.000000,0.250000,0,0);}
.m48_c01359{transform:matrix(0.202475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202475,0.000000,0.000000,0.250000,0,0);}
.m4b_c01359{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.m15_c01359{transform:matrix(0.216025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216025,0.000000,0.000000,0.250000,0,0);}
.m14_c01359{transform:matrix(0.245525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245525,0.000000,0.000000,0.250000,0,0);}
.m3f_c01359{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m1d_c01359{transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);}
.m3c_c01359{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01359{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);}
.m37_c01359{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);}
.m3e_c01359{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m4_c01359{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m7_c01359{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m2_c01359{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_c01359{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_c01359{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_c01359{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);}
.m36_c01359{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);}
.m44_c01359{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m10_c01359{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01359{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01359{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m16_c01359{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.me_c01359{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);}
.m40_c01359{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m13_c01359{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01359{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m9_c01359{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01359{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m31_c01359{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m33_c01359{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.md_c01359{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m45_c01359{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01359{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m32_c01359{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m23_c01359{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3_c01359{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);}
.m3d_c01359{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m34_c01359{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01359{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);}
.m29_c01359{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);}
.m39_c01359{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);}
.m3b_c01359{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01359{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m17_c01359{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);}
.m47_c01359{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01359{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m28_c01359{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.mb_c01359{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.mf_c01359{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);}
.m6_c01359{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m12_c01359{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);}
.m20_c01359{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);}
.ma_c01359{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);}
.m2c_c01359{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m5_c01359{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m22_c01359{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_c01359{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01359{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m46_c01359{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m25_c01359{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m19_c01359{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m35_c01359{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01359{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01359{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m1_c01359{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m26_c01359{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m24_c01359{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m42_c01359{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01359{transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);}
.m30_c01359{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01359{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m8_c01359{transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);}
.m41_c01359{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m43_c01359{transform:matrix(0.817500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.817500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.817500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01359{transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);}
.m38_c01359{transform:matrix(1.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.502500,0.000000,0.000000,0.250000,0,0);}
.v1_c01359{vertical-align:-8.640000px;}
.v0_c01359{vertical-align:0.000000px;}
.ls0_c01359{letter-spacing:0.000000px;}
.sc__c01359{text-shadow:none;}
.sc0_c01359{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01359{-webkit-text-stroke:0px transparent;}
.sc0_c01359{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01359{word-spacing:0.000000px;}
.ws1_c01359{word-spacing:9.210378px;}
.ws0_c01359{word-spacing:45.138000px;}
.fc0_c01359{color:transparent;}
.fsd_c01359{font-size:20.160000px;}
.fs12_c01359{font-size:28.800000px;}
.fs10_c01359{font-size:34.560000px;}
.fs1_c01359{font-size:37.440000px;}
.fse_c01359{font-size:43.200000px;}
.fsa_c01359{font-size:46.080000px;}
.fsb_c01359{font-size:48.960000px;}
.fs8_c01359{font-size:51.840000px;}
.fs7_c01359{font-size:54.720000px;}
.fs6_c01359{font-size:57.600000px;}
.fs4_c01359{font-size:60.480000px;}
.fs9_c01359{font-size:63.360000px;}
.fsf_c01359{font-size:66.240000px;}
.fs0_c01359{font-size:69.120000px;}
.fs3_c01359{font-size:72.000000px;}
.fs5_c01359{font-size:74.880000px;}
.fs2_c01359{font-size:77.760000px;}
.fsc_c01359{font-size:83.520000px;}
.fs11_c01359{font-size:95.040000px;}
.y0_c01359{bottom:0.000000px;}
.y48_c01359{bottom:72.000000px;}
.y49_c01359{bottom:72.720000px;}
.y47_c01359{bottom:77.040000px;}
.y4a_c01359{bottom:77.760000px;}
.y71_c01359{bottom:79.200000px;}
.y70_c01359{bottom:80.640000px;}
.y46_c01359{bottom:115.920000px;}
.y45_c01359{bottom:120.960000px;}
.y6f_c01359{bottom:121.680000px;}
.y42_c01359{bottom:159.120000px;}
.y44_c01359{bottom:160.560000px;}
.y43_c01359{bottom:161.280000px;}
.y41_c01359{bottom:162.720000px;}
.y3f_c01359{bottom:202.320000px;}
.y40_c01359{bottom:203.040000px;}
.y3e_c01359{bottom:205.200000px;}
.y6d_c01359{bottom:207.360000px;}
.y6e_c01359{bottom:208.080000px;}
.y3b_c01359{bottom:245.520000px;}
.y3c_c01359{bottom:246.240000px;}
.y38_c01359{bottom:249.120000px;}
.y3d_c01359{bottom:249.840000px;}
.y39_c01359{bottom:250.560000px;}
.y6c_c01359{bottom:251.280000px;}
.y3a_c01359{bottom:252.720000px;}
.y37_c01359{bottom:289.440000px;}
.y36_c01359{bottom:292.320000px;}
.y6b_c01359{bottom:293.040000px;}
.y6a_c01359{bottom:295.200000px;}
.y69_c01359{bottom:295.920000px;}
.y35_c01359{bottom:332.640000px;}
.y67_c01359{bottom:335.520000px;}
.y34_c01359{bottom:336.240000px;}
.y68_c01359{bottom:339.120000px;}
.y33_c01359{bottom:375.840000px;}
.y32_c01359{bottom:378.720000px;}
.y65_c01359{bottom:379.440000px;}
.y64_c01359{bottom:380.160000px;}
.y31_c01359{bottom:414.000000px;}
.y2e_c01359{bottom:420.480000px;}
.y2f_c01359{bottom:421.200000px;}
.y30_c01359{bottom:421.920000px;}
.y2d_c01359{bottom:422.640000px;}
.y62_c01359{bottom:423.360000px;}
.y63_c01359{bottom:424.800000px;}
.y2c_c01359{bottom:462.960000px;}
.y2b_c01359{bottom:465.840000px;}
.y2a_c01359{bottom:506.880000px;}
.y29_c01359{bottom:508.320000px;}
.y61_c01359{bottom:511.200000px;}
.y27_c01359{bottom:550.800000px;}
.y60_c01359{bottom:551.520000px;}
.y25_c01359{bottom:552.240000px;}
.y26_c01359{bottom:553.680000px;}
.y28_c01359{bottom:557.280000px;}
.y23_c01359{bottom:594.720000px;}
.y24_c01359{bottom:595.440000px;}
.y5e_c01359{bottom:596.880000px;}
.y5f_c01359{bottom:597.600000px;}
.y5d_c01359{bottom:598.320000px;}
.y22_c01359{bottom:630.000000px;}
.y20_c01359{bottom:637.920000px;}
.y1e_c01359{bottom:638.640000px;}
.y1d_c01359{bottom:639.360000px;}
.y21_c01359{bottom:640.080000px;}
.y1f_c01359{bottom:640.800000px;}
.y1c_c01359{bottom:679.680000px;}
.y5b_c01359{bottom:681.120000px;}
.y1b_c01359{bottom:681.840000px;}
.y5c_c01359{bottom:683.280000px;}
.y4d_c01359{bottom:684.000000px;}
.y19_c01359{bottom:722.880000px;}
.y18_c01359{bottom:724.320000px;}
.y5a_c01359{bottom:725.040000px;}
.y1a_c01359{bottom:725.760000px;}
.y17_c01359{bottom:758.160000px;}
.y13_c01359{bottom:765.360000px;}
.y12_c01359{bottom:766.080000px;}
.y16_c01359{bottom:766.800000px;}
.y14_c01359{bottom:767.520000px;}
.y11_c01359{bottom:768.240000px;}
.y15_c01359{bottom:769.680000px;}
.yf_c01359{bottom:808.560000px;}
.y10_c01359{bottom:809.280000px;}
.y4c_c01359{bottom:810.000000px;}
.ye_c01359{bottom:810.720000px;}
.y58_c01359{bottom:811.440000px;}
.y59_c01359{bottom:812.160000px;}
.yd_c01359{bottom:851.760000px;}
.y4b_c01359{bottom:852.480000px;}
.y57_c01359{bottom:853.200000px;}
.yc_c01359{bottom:853.920000px;}
.y56_c01359{bottom:854.640000px;}
.y55_c01359{bottom:855.360000px;}
.ya_c01359{bottom:894.960000px;}
.yb_c01359{bottom:895.680000px;}
.y53_c01359{bottom:896.400000px;}
.y9_c01359{bottom:897.120000px;}
.y54_c01359{bottom:897.840000px;}
.y66_c01359{bottom:898.560000px;}
.y7_c01359{bottom:938.880000px;}
.y52_c01359{bottom:939.600000px;}
.y6_c01359{bottom:940.320000px;}
.y8_c01359{bottom:941.760000px;}
.y5_c01359{bottom:981.360000px;}
.y50_c01359{bottom:982.080000px;}
.y4_c01359{bottom:982.800000px;}
.y4f_c01359{bottom:983.520000px;}
.y51_c01359{bottom:984.240000px;}
.y1_c01359{bottom:1025.280000px;}
.y3_c01359{bottom:1026.000000px;}
.y2_c01359{bottom:1028.160000px;}
.y4e_c01359{bottom:1084.320000px;}
.hf_c01359{height:18.142031px;}
.h14_c01359{height:25.917187px;}
.h12_c01359{height:31.100625px;}
.h3_c01359{height:33.692344px;}
.h10_c01359{height:38.875781px;}
.hc_c01359{height:41.467500px;}
.hd_c01359{height:44.059219px;}
.ha_c01359{height:46.650937px;}
.h9_c01359{height:49.242656px;}
.h8_c01359{height:51.834375px;}
.h6_c01359{height:54.426094px;}
.hb_c01359{height:57.017812px;}
.h11_c01359{height:59.609531px;}
.h2_c01359{height:62.201250px;}
.h5_c01359{height:64.792969px;}
.h7_c01359{height:67.384687px;}
.h4_c01359{height:69.976406px;}
.he_c01359{height:75.159844px;}
.h13_c01359{height:85.526719px;}
.h1_c01359{height:1147.500000px;}
.h0_c01359{height:1147.680000px;}
.w0_c01359{width:781.920000px;}
.w1_c01359{width:782.250000px;}
.x0_c01359{left:0.000000px;}
.x1_c01359{left:51.840000px;}
.x1b_c01359{left:53.280000px;}
.x21_c01359{left:54.720000px;}
.x2_c01359{left:84.960000px;}
.x1f_c01359{left:93.600000px;}
.x3_c01359{left:115.200000px;}
.x19_c01359{left:116.640000px;}
.xa_c01359{left:192.240000px;}
.x8_c01359{left:203.040000px;}
.x12_c01359{left:213.840000px;}
.xb_c01359{left:236.160000px;}
.x4_c01359{left:246.240000px;}
.x13_c01359{left:257.040000px;}
.x1a_c01359{left:267.120000px;}
.xc_c01359{left:277.200000px;}
.x5_c01359{left:298.800000px;}
.x18_c01359{left:311.040000px;}
.x22_c01359{left:320.400000px;}
.xd_c01359{left:321.840000px;}
.x9_c01359{left:332.640000px;}
.x6_c01359{left:343.440000px;}
.x20_c01359{left:352.080000px;}
.x15_c01359{left:364.320000px;}
.xe_c01359{left:375.840000px;}
.x7_c01359{left:386.640000px;}
.x1c_c01359{left:396.720000px;}
.xf_c01359{left:418.320000px;}
.x1d_c01359{left:460.800000px;}
.x16_c01359{left:473.040000px;}
.x17_c01359{left:514.080000px;}
.x11_c01359{left:542.160000px;}
.x10_c01359{left:552.960000px;}
.x1e_c01359{left:557.280000px;}
.x14_c01359{left:581.040000px;}
.x31_c01359{left:600.480000px;}
.x2a_c01359{left:633.600000px;}
.x27_c01359{left:635.040000px;}
.x24_c01359{left:636.480000px;}
.x2e_c01359{left:665.280000px;}
.x2b_c01359{left:666.720000px;}
.x25_c01359{left:668.160000px;}
.x32_c01359{left:676.080000px;}
.x23_c01359{left:695.520000px;}
.x2f_c01359{left:696.960000px;}
.x2d_c01359{left:698.400000px;}
.x2c_c01359{left:707.760000px;}
.x29_c01359{left:709.200000px;}
.x26_c01359{left:710.640000px;}
.x30_c01359{left:727.920000px;}
.x28_c01359{left:730.800000px;}
@media print{
.v1_c01359{vertical-align:-7.680000pt;}
.v0_c01359{vertical-align:0.000000pt;}
.ls0_c01359{letter-spacing:0.000000pt;}
.ws2_c01359{word-spacing:0.000000pt;}
.ws1_c01359{word-spacing:8.187003pt;}
.ws0_c01359{word-spacing:40.122667pt;}
.fsd_c01359{font-size:17.920000pt;}
.fs12_c01359{font-size:25.600000pt;}
.fs10_c01359{font-size:30.720000pt;}
.fs1_c01359{font-size:33.280000pt;}
.fse_c01359{font-size:38.400000pt;}
.fsa_c01359{font-size:40.960000pt;}
.fsb_c01359{font-size:43.520000pt;}
.fs8_c01359{font-size:46.080000pt;}
.fs7_c01359{font-size:48.640000pt;}
.fs6_c01359{font-size:51.200000pt;}
.fs4_c01359{font-size:53.760000pt;}
.fs9_c01359{font-size:56.320000pt;}
.fsf_c01359{font-size:58.880000pt;}
.fs0_c01359{font-size:61.440000pt;}
.fs3_c01359{font-size:64.000000pt;}
.fs5_c01359{font-size:66.560000pt;}
.fs2_c01359{font-size:69.120000pt;}
.fsc_c01359{font-size:74.240000pt;}
.fs11_c01359{font-size:84.480000pt;}
.y0_c01359{bottom:0.000000pt;}
.y48_c01359{bottom:64.000000pt;}
.y49_c01359{bottom:64.640000pt;}
.y47_c01359{bottom:68.480000pt;}
.y4a_c01359{bottom:69.120000pt;}
.y71_c01359{bottom:70.400000pt;}
.y70_c01359{bottom:71.680000pt;}
.y46_c01359{bottom:103.040000pt;}
.y45_c01359{bottom:107.520000pt;}
.y6f_c01359{bottom:108.160000pt;}
.y42_c01359{bottom:141.440000pt;}
.y44_c01359{bottom:142.720000pt;}
.y43_c01359{bottom:143.360000pt;}
.y41_c01359{bottom:144.640000pt;}
.y3f_c01359{bottom:179.840000pt;}
.y40_c01359{bottom:180.480000pt;}
.y3e_c01359{bottom:182.400000pt;}
.y6d_c01359{bottom:184.320000pt;}
.y6e_c01359{bottom:184.960000pt;}
.y3b_c01359{bottom:218.240000pt;}
.y3c_c01359{bottom:218.880000pt;}
.y38_c01359{bottom:221.440000pt;}
.y3d_c01359{bottom:222.080000pt;}
.y39_c01359{bottom:222.720000pt;}
.y6c_c01359{bottom:223.360000pt;}
.y3a_c01359{bottom:224.640000pt;}
.y37_c01359{bottom:257.280000pt;}
.y36_c01359{bottom:259.840000pt;}
.y6b_c01359{bottom:260.480000pt;}
.y6a_c01359{bottom:262.400000pt;}
.y69_c01359{bottom:263.040000pt;}
.y35_c01359{bottom:295.680000pt;}
.y67_c01359{bottom:298.240000pt;}
.y34_c01359{bottom:298.880000pt;}
.y68_c01359{bottom:301.440000pt;}
.y33_c01359{bottom:334.080000pt;}
.y32_c01359{bottom:336.640000pt;}
.y65_c01359{bottom:337.280000pt;}
.y64_c01359{bottom:337.920000pt;}
.y31_c01359{bottom:368.000000pt;}
.y2e_c01359{bottom:373.760000pt;}
.y2f_c01359{bottom:374.400000pt;}
.y30_c01359{bottom:375.040000pt;}
.y2d_c01359{bottom:375.680000pt;}
.y62_c01359{bottom:376.320000pt;}
.y63_c01359{bottom:377.600000pt;}
.y2c_c01359{bottom:411.520000pt;}
.y2b_c01359{bottom:414.080000pt;}
.y2a_c01359{bottom:450.560000pt;}
.y29_c01359{bottom:451.840000pt;}
.y61_c01359{bottom:454.400000pt;}
.y27_c01359{bottom:489.600000pt;}
.y60_c01359{bottom:490.240000pt;}
.y25_c01359{bottom:490.880000pt;}
.y26_c01359{bottom:492.160000pt;}
.y28_c01359{bottom:495.360000pt;}
.y23_c01359{bottom:528.640000pt;}
.y24_c01359{bottom:529.280000pt;}
.y5e_c01359{bottom:530.560000pt;}
.y5f_c01359{bottom:531.200000pt;}
.y5d_c01359{bottom:531.840000pt;}
.y22_c01359{bottom:560.000000pt;}
.y20_c01359{bottom:567.040000pt;}
.y1e_c01359{bottom:567.680000pt;}
.y1d_c01359{bottom:568.320000pt;}
.y21_c01359{bottom:568.960000pt;}
.y1f_c01359{bottom:569.600000pt;}
.y1c_c01359{bottom:604.160000pt;}
.y5b_c01359{bottom:605.440000pt;}
.y1b_c01359{bottom:606.080000pt;}
.y5c_c01359{bottom:607.360000pt;}
.y4d_c01359{bottom:608.000000pt;}
.y19_c01359{bottom:642.560000pt;}
.y18_c01359{bottom:643.840000pt;}
.y5a_c01359{bottom:644.480000pt;}
.y1a_c01359{bottom:645.120000pt;}
.y17_c01359{bottom:673.920000pt;}
.y13_c01359{bottom:680.320000pt;}
.y12_c01359{bottom:680.960000pt;}
.y16_c01359{bottom:681.600000pt;}
.y14_c01359{bottom:682.240000pt;}
.y11_c01359{bottom:682.880000pt;}
.y15_c01359{bottom:684.160000pt;}
.yf_c01359{bottom:718.720000pt;}
.y10_c01359{bottom:719.360000pt;}
.y4c_c01359{bottom:720.000000pt;}
.ye_c01359{bottom:720.640000pt;}
.y58_c01359{bottom:721.280000pt;}
.y59_c01359{bottom:721.920000pt;}
.yd_c01359{bottom:757.120000pt;}
.y4b_c01359{bottom:757.760000pt;}
.y57_c01359{bottom:758.400000pt;}
.yc_c01359{bottom:759.040000pt;}
.y56_c01359{bottom:759.680000pt;}
.y55_c01359{bottom:760.320000pt;}
.ya_c01359{bottom:795.520000pt;}
.yb_c01359{bottom:796.160000pt;}
.y53_c01359{bottom:796.800000pt;}
.y9_c01359{bottom:797.440000pt;}
.y54_c01359{bottom:798.080000pt;}
.y66_c01359{bottom:798.720000pt;}
.y7_c01359{bottom:834.560000pt;}
.y52_c01359{bottom:835.200000pt;}
.y6_c01359{bottom:835.840000pt;}
.y8_c01359{bottom:837.120000pt;}
.y5_c01359{bottom:872.320000pt;}
.y50_c01359{bottom:872.960000pt;}
.y4_c01359{bottom:873.600000pt;}
.y4f_c01359{bottom:874.240000pt;}
.y51_c01359{bottom:874.880000pt;}
.y1_c01359{bottom:911.360000pt;}
.y3_c01359{bottom:912.000000pt;}
.y2_c01359{bottom:913.920000pt;}
.y4e_c01359{bottom:963.840000pt;}
.hf_c01359{height:16.126250pt;}
.h14_c01359{height:23.037500pt;}
.h12_c01359{height:27.645000pt;}
.h3_c01359{height:29.948750pt;}
.h10_c01359{height:34.556250pt;}
.hc_c01359{height:36.860000pt;}
.hd_c01359{height:39.163750pt;}
.ha_c01359{height:41.467500pt;}
.h9_c01359{height:43.771250pt;}
.h8_c01359{height:46.075000pt;}
.h6_c01359{height:48.378750pt;}
.hb_c01359{height:50.682500pt;}
.h11_c01359{height:52.986250pt;}
.h2_c01359{height:55.290000pt;}
.h5_c01359{height:57.593750pt;}
.h7_c01359{height:59.897500pt;}
.h4_c01359{height:62.201250pt;}
.he_c01359{height:66.808750pt;}
.h13_c01359{height:76.023750pt;}
.h1_c01359{height:1020.000000pt;}
.h0_c01359{height:1020.160000pt;}
.w0_c01359{width:695.040000pt;}
.w1_c01359{width:695.333333pt;}
.x0_c01359{left:0.000000pt;}
.x1_c01359{left:46.080000pt;}
.x1b_c01359{left:47.360000pt;}
.x21_c01359{left:48.640000pt;}
.x2_c01359{left:75.520000pt;}
.x1f_c01359{left:83.200000pt;}
.x3_c01359{left:102.400000pt;}
.x19_c01359{left:103.680000pt;}
.xa_c01359{left:170.880000pt;}
.x8_c01359{left:180.480000pt;}
.x12_c01359{left:190.080000pt;}
.xb_c01359{left:209.920000pt;}
.x4_c01359{left:218.880000pt;}
.x13_c01359{left:228.480000pt;}
.x1a_c01359{left:237.440000pt;}
.xc_c01359{left:246.400000pt;}
.x5_c01359{left:265.600000pt;}
.x18_c01359{left:276.480000pt;}
.x22_c01359{left:284.800000pt;}
.xd_c01359{left:286.080000pt;}
.x9_c01359{left:295.680000pt;}
.x6_c01359{left:305.280000pt;}
.x20_c01359{left:312.960000pt;}
.x15_c01359{left:323.840000pt;}
.xe_c01359{left:334.080000pt;}
.x7_c01359{left:343.680000pt;}
.x1c_c01359{left:352.640000pt;}
.xf_c01359{left:371.840000pt;}
.x1d_c01359{left:409.600000pt;}
.x16_c01359{left:420.480000pt;}
.x17_c01359{left:456.960000pt;}
.x11_c01359{left:481.920000pt;}
.x10_c01359{left:491.520000pt;}
.x1e_c01359{left:495.360000pt;}
.x14_c01359{left:516.480000pt;}
.x31_c01359{left:533.760000pt;}
.x2a_c01359{left:563.200000pt;}
.x27_c01359{left:564.480000pt;}
.x24_c01359{left:565.760000pt;}
.x2e_c01359{left:591.360000pt;}
.x2b_c01359{left:592.640000pt;}
.x25_c01359{left:593.920000pt;}
.x32_c01359{left:600.960000pt;}
.x23_c01359{left:618.240000pt;}
.x2f_c01359{left:619.520000pt;}
.x2d_c01359{left:620.800000pt;}
.x2c_c01359{left:629.120000pt;}
.x29_c01359{left:630.400000pt;}
.x26_c01359{left:631.680000pt;}
.x30_c01359{left:647.040000pt;}
.x28_c01359{left:649.600000pt;}
}





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

.ir_c01360:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01360{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01360;src:url('chunks/assets/font_b02729e19456ea02de6fcc1a.woff2')format("woff");}.ff1_c01360{font-family:ff1_c01360;line-height:1.109863;font-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_c01360{transform:matrix(0.169850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169850,0.000000,0.000000,0.250000,0,0);}
.m4a_c01360{transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);}
.m3b_c01360{transform:matrix(0.182775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182775,0.000000,0.000000,0.250000,0,0);}
.m49_c01360{transform:matrix(0.192400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192400,0.000000,0.000000,0.250000,0,0);}
.m36_c01360{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m47_c01360{transform:matrix(0.217450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217450,0.000000,0.000000,0.250000,0,0);}
.m2a_c01360{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01360{transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);}
.m3f_c01360{transform:matrix(0.243075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243075,0.000000,0.000000,0.250000,0,0);}
.m43_c01360{transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);}
.m2d_c01360{transform:matrix(0.244525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244525,0.000000,0.000000,0.250000,0,0);}
.m31_c01360{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m32_c01360{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m24_c01360{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01360{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1_c01360{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m8_c01360{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.ma_c01360{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);}
.m38_c01360{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m11_c01360{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_c01360{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m14_c01360{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m15_c01360{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);}
.m27_c01360{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m9_c01360{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_c01360{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);}
.m30_c01360{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m46_c01360{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01360{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m16_c01360{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m5_c01360{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m18_c01360{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m17_c01360{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3_c01360{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01360{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01360{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m34_c01360{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m48_c01360{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01360{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01360{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01360{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m0_c01360{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);}
.m35_c01360{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mb_c01360{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m20_c01360{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_c01360{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m44_c01360{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);}
.m3c_c01360{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.me_c01360{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_c01360{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);}
.m33_c01360{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m12_c01360{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);}
.m2f_c01360{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);}
.m1a_c01360{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m29_c01360{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);}
.m37_c01360{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m7_c01360{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);}
.m45_c01360{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);}
.m2e_c01360{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);}
.m4_c01360{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01360{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m2_c01360{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);}
.m25_c01360{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);}
.md_c01360{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.mc_c01360{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01360{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m39_c01360{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m40_c01360{transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);}
.m28_c01360{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m19_c01360{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m41_c01360{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);}
.m6_c01360{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m26_c01360{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01360{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01360{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m22_c01360{transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);}
.m42_c01360{transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);}
.v0_c01360{vertical-align:0.000000px;}
.ls0_c01360{letter-spacing:0.000000px;}
.sc__c01360{text-shadow:none;}
.sc0_c01360{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01360{-webkit-text-stroke:0px transparent;}
.sc0_c01360{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01360{word-spacing:-5.560566px;}
.ws2_c01360{word-spacing:0.000000px;}
.ws0_c01360{word-spacing:9.475200px;}
.fc0_c01360{color:transparent;}
.fs11_c01360{font-size:31.680000px;}
.fs10_c01360{font-size:37.440000px;}
.fsd_c01360{font-size:40.320000px;}
.fs2_c01360{font-size:43.200000px;}
.fs4_c01360{font-size:46.080000px;}
.fsa_c01360{font-size:48.960000px;}
.fs6_c01360{font-size:51.840000px;}
.fsb_c01360{font-size:54.720000px;}
.fs5_c01360{font-size:57.600000px;}
.fs8_c01360{font-size:60.480000px;}
.fsc_c01360{font-size:63.360000px;}
.fs3_c01360{font-size:66.240000px;}
.fs9_c01360{font-size:69.120000px;}
.fs0_c01360{font-size:72.000000px;}
.fs7_c01360{font-size:74.880000px;}
.fs1_c01360{font-size:77.760000px;}
.fsf_c01360{font-size:83.520000px;}
.fse_c01360{font-size:112.320000px;}
.y0_c01360{bottom:0.000000px;}
.y5a_c01360{bottom:104.400000px;}
.y59_c01360{bottom:108.000000px;}
.y66_c01360{bottom:110.880000px;}
.y65_c01360{bottom:111.600000px;}
.y58_c01360{bottom:149.040000px;}
.y57_c01360{bottom:149.760000px;}
.y56_c01360{bottom:151.920000px;}
.y53_c01360{bottom:201.600000px;}
.y55_c01360{bottom:202.320000px;}
.y54_c01360{bottom:203.760000px;}
.y52_c01360{bottom:204.480000px;}
.y64_c01360{bottom:206.640000px;}
.y63_c01360{bottom:207.360000px;}
.y51_c01360{bottom:244.800000px;}
.y4f_c01360{bottom:248.400000px;}
.y50_c01360{bottom:249.120000px;}
.y61_c01360{bottom:249.840000px;}
.y62_c01360{bottom:252.000000px;}
.y4b_c01360{bottom:287.280000px;}
.y4e_c01360{bottom:290.160000px;}
.y4a_c01360{bottom:291.600000px;}
.y4c_c01360{bottom:292.320000px;}
.y4d_c01360{bottom:293.040000px;}
.y5f_c01360{bottom:293.760000px;}
.y60_c01360{bottom:294.480000px;}
.y49_c01360{bottom:331.920000px;}
.y48_c01360{bottom:334.800000px;}
.y5e_c01360{bottom:336.960000px;}
.y47_c01360{bottom:376.560000px;}
.y46_c01360{bottom:377.280000px;}
.y45_c01360{bottom:378.000000px;}
.y5b_c01360{bottom:379.440000px;}
.y5c_c01360{bottom:380.160000px;}
.y5d_c01360{bottom:381.600000px;}
.y43_c01360{bottom:411.120000px;}
.y3f_c01360{bottom:419.040000px;}
.y40_c01360{bottom:420.480000px;}
.y42_c01360{bottom:421.200000px;}
.y3e_c01360{bottom:421.920000px;}
.y44_c01360{bottom:422.640000px;}
.y41_c01360{bottom:423.360000px;}
.y3d_c01360{bottom:465.120000px;}
.y37_c01360{bottom:467.280000px;}
.y30_c01360{bottom:505.440000px;}
.y3b_c01360{bottom:507.600000px;}
.y2f_c01360{bottom:508.320000px;}
.y32_c01360{bottom:509.040000px;}
.y31_c01360{bottom:509.760000px;}
.y3c_c01360{bottom:510.480000px;}
.y2e_c01360{bottom:548.640000px;}
.y39_c01360{bottom:550.800000px;}
.y2d_c01360{bottom:551.520000px;}
.y36_c01360{bottom:552.240000px;}
.y3a_c01360{bottom:553.680000px;}
.y2c_c01360{bottom:591.840000px;}
.y2b_c01360{bottom:594.000000px;}
.y38_c01360{bottom:594.720000px;}
.y26_c01360{bottom:635.040000px;}
.y2a_c01360{bottom:635.760000px;}
.y28_c01360{bottom:636.480000px;}
.y25_c01360{bottom:637.200000px;}
.y35_c01360{bottom:637.920000px;}
.y29_c01360{bottom:638.640000px;}
.y27_c01360{bottom:639.360000px;}
.y34_c01360{bottom:640.080000px;}
.y21_c01360{bottom:678.240000px;}
.y24_c01360{bottom:680.400000px;}
.y20_c01360{bottom:681.120000px;}
.y22_c01360{bottom:681.840000px;}
.y23_c01360{bottom:682.560000px;}
.y33_c01360{bottom:683.280000px;}
.y1a_c01360{bottom:722.160000px;}
.y1f_c01360{bottom:722.880000px;}
.y1e_c01360{bottom:724.320000px;}
.y1c_c01360{bottom:725.040000px;}
.y1b_c01360{bottom:725.760000px;}
.y1d_c01360{bottom:726.480000px;}
.y15_c01360{bottom:764.640000px;}
.y13_c01360{bottom:766.800000px;}
.y19_c01360{bottom:767.520000px;}
.y14_c01360{bottom:768.240000px;}
.y12_c01360{bottom:808.560000px;}
.y17_c01360{bottom:809.280000px;}
.y11_c01360{bottom:810.000000px;}
.y18_c01360{bottom:812.160000px;}
.y10_c01360{bottom:855.360000px;}
.yf_c01360{bottom:856.080000px;}
.yc_c01360{bottom:905.760000px;}
.yb_c01360{bottom:907.200000px;}
.ye_c01360{bottom:907.920000px;}
.yd_c01360{bottom:909.360000px;}
.ya_c01360{bottom:948.960000px;}
.y16_c01360{bottom:949.680000px;}
.y9_c01360{bottom:950.400000px;}
.y8_c01360{bottom:992.160000px;}
.y7_c01360{bottom:996.480000px;}
.y2_c01360{bottom:1024.560000px;}
.y1_c01360{bottom:1025.280000px;}
.y4_c01360{bottom:1026.000000px;}
.y6_c01360{bottom:1026.720000px;}
.y5_c01360{bottom:1027.440000px;}
.y3_c01360{bottom:1028.160000px;}
.h13_c01360{height:28.508906px;}
.h12_c01360{height:33.692344px;}
.hf_c01360{height:36.284062px;}
.h4_c01360{height:38.875781px;}
.h6_c01360{height:41.467500px;}
.hc_c01360{height:44.059219px;}
.h8_c01360{height:46.650937px;}
.hd_c01360{height:49.242656px;}
.h7_c01360{height:51.834375px;}
.ha_c01360{height:54.426094px;}
.he_c01360{height:57.017812px;}
.h5_c01360{height:59.609531px;}
.hb_c01360{height:62.201250px;}
.h2_c01360{height:64.792969px;}
.h9_c01360{height:67.384687px;}
.h3_c01360{height:69.976406px;}
.h11_c01360{height:75.159844px;}
.h10_c01360{height:101.077031px;}
.h1_c01360{height:1146.750000px;}
.h0_c01360{height:1146.960000px;}
.w0_c01360{width:779.760000px;}
.w1_c01360{width:780.000000px;}
.x0_c01360{left:0.000000px;}
.x1_c01360{left:49.680000px;}
.x9_c01360{left:51.120000px;}
.x2b_c01360{left:52.560000px;}
.x31_c01360{left:54.000000px;}
.x30_c01360{left:84.240000px;}
.xc_c01360{left:103.680000px;}
.xf_c01360{left:113.760000px;}
.x2_c01360{left:115.200000px;}
.xd_c01360{left:157.680000px;}
.x7_c01360{left:169.200000px;}
.x10_c01360{left:190.080000px;}
.x33_c01360{left:194.400000px;}
.x18_c01360{left:200.880000px;}
.x8_c01360{left:211.680000px;}
.x3_c01360{left:234.720000px;}
.xe_c01360{left:245.520000px;}
.x19_c01360{left:255.600000px;}
.x32_c01360{left:257.040000px;}
.x24_c01360{left:265.680000px;}
.x4_c01360{left:276.480000px;}
.x1d_c01360{left:288.000000px;}
.x2e_c01360{left:299.520000px;}
.x20_c01360{left:308.880000px;}
.xa_c01360{left:331.920000px;}
.x2f_c01360{left:342.000000px;}
.x21_c01360{left:353.520000px;}
.x5_c01360{left:374.400000px;}
.xb_c01360{left:385.920000px;}
.x1a_c01360{left:405.360000px;}
.x6_c01360{left:417.600000px;}
.x22_c01360{left:439.200000px;}
.x1b_c01360{left:450.000000px;}
.x2c_c01360{left:460.080000px;}
.x1e_c01360{left:471.600000px;}
.x23_c01360{left:481.680000px;}
.x1c_c01360{left:492.480000px;}
.x1f_c01360{left:514.080000px;}
.x2d_c01360{left:540.000000px;}
.x26_c01360{left:578.880000px;}
.x11_c01360{left:600.480000px;}
.x16_c01360{left:601.920000px;}
.x27_c01360{left:610.560000px;}
.x35_c01360{left:624.240000px;}
.x25_c01360{left:632.880000px;}
.x13_c01360{left:634.320000px;}
.x2a_c01360{left:664.560000px;}
.x14_c01360{left:666.000000px;}
.x28_c01360{left:676.080000px;}
.x34_c01360{left:697.680000px;}
.x29_c01360{left:707.040000px;}
.x15_c01360{left:708.480000px;}
.x12_c01360{left:709.920000px;}
.x17_c01360{left:729.360000px;}
@media print{
.v0_c01360{vertical-align:0.000000pt;}
.ls0_c01360{letter-spacing:0.000000pt;}
.ws1_c01360{word-spacing:-4.942725pt;}
.ws2_c01360{word-spacing:0.000000pt;}
.ws0_c01360{word-spacing:8.422400pt;}
.fs11_c01360{font-size:28.160000pt;}
.fs10_c01360{font-size:33.280000pt;}
.fsd_c01360{font-size:35.840000pt;}
.fs2_c01360{font-size:38.400000pt;}
.fs4_c01360{font-size:40.960000pt;}
.fsa_c01360{font-size:43.520000pt;}
.fs6_c01360{font-size:46.080000pt;}
.fsb_c01360{font-size:48.640000pt;}
.fs5_c01360{font-size:51.200000pt;}
.fs8_c01360{font-size:53.760000pt;}
.fsc_c01360{font-size:56.320000pt;}
.fs3_c01360{font-size:58.880000pt;}
.fs9_c01360{font-size:61.440000pt;}
.fs0_c01360{font-size:64.000000pt;}
.fs7_c01360{font-size:66.560000pt;}
.fs1_c01360{font-size:69.120000pt;}
.fsf_c01360{font-size:74.240000pt;}
.fse_c01360{font-size:99.840000pt;}
.y0_c01360{bottom:0.000000pt;}
.y5a_c01360{bottom:92.800000pt;}
.y59_c01360{bottom:96.000000pt;}
.y66_c01360{bottom:98.560000pt;}
.y65_c01360{bottom:99.200000pt;}
.y58_c01360{bottom:132.480000pt;}
.y57_c01360{bottom:133.120000pt;}
.y56_c01360{bottom:135.040000pt;}
.y53_c01360{bottom:179.200000pt;}
.y55_c01360{bottom:179.840000pt;}
.y54_c01360{bottom:181.120000pt;}
.y52_c01360{bottom:181.760000pt;}
.y64_c01360{bottom:183.680000pt;}
.y63_c01360{bottom:184.320000pt;}
.y51_c01360{bottom:217.600000pt;}
.y4f_c01360{bottom:220.800000pt;}
.y50_c01360{bottom:221.440000pt;}
.y61_c01360{bottom:222.080000pt;}
.y62_c01360{bottom:224.000000pt;}
.y4b_c01360{bottom:255.360000pt;}
.y4e_c01360{bottom:257.920000pt;}
.y4a_c01360{bottom:259.200000pt;}
.y4c_c01360{bottom:259.840000pt;}
.y4d_c01360{bottom:260.480000pt;}
.y5f_c01360{bottom:261.120000pt;}
.y60_c01360{bottom:261.760000pt;}
.y49_c01360{bottom:295.040000pt;}
.y48_c01360{bottom:297.600000pt;}
.y5e_c01360{bottom:299.520000pt;}
.y47_c01360{bottom:334.720000pt;}
.y46_c01360{bottom:335.360000pt;}
.y45_c01360{bottom:336.000000pt;}
.y5b_c01360{bottom:337.280000pt;}
.y5c_c01360{bottom:337.920000pt;}
.y5d_c01360{bottom:339.200000pt;}
.y43_c01360{bottom:365.440000pt;}
.y3f_c01360{bottom:372.480000pt;}
.y40_c01360{bottom:373.760000pt;}
.y42_c01360{bottom:374.400000pt;}
.y3e_c01360{bottom:375.040000pt;}
.y44_c01360{bottom:375.680000pt;}
.y41_c01360{bottom:376.320000pt;}
.y3d_c01360{bottom:413.440000pt;}
.y37_c01360{bottom:415.360000pt;}
.y30_c01360{bottom:449.280000pt;}
.y3b_c01360{bottom:451.200000pt;}
.y2f_c01360{bottom:451.840000pt;}
.y32_c01360{bottom:452.480000pt;}
.y31_c01360{bottom:453.120000pt;}
.y3c_c01360{bottom:453.760000pt;}
.y2e_c01360{bottom:487.680000pt;}
.y39_c01360{bottom:489.600000pt;}
.y2d_c01360{bottom:490.240000pt;}
.y36_c01360{bottom:490.880000pt;}
.y3a_c01360{bottom:492.160000pt;}
.y2c_c01360{bottom:526.080000pt;}
.y2b_c01360{bottom:528.000000pt;}
.y38_c01360{bottom:528.640000pt;}
.y26_c01360{bottom:564.480000pt;}
.y2a_c01360{bottom:565.120000pt;}
.y28_c01360{bottom:565.760000pt;}
.y25_c01360{bottom:566.400000pt;}
.y35_c01360{bottom:567.040000pt;}
.y29_c01360{bottom:567.680000pt;}
.y27_c01360{bottom:568.320000pt;}
.y34_c01360{bottom:568.960000pt;}
.y21_c01360{bottom:602.880000pt;}
.y24_c01360{bottom:604.800000pt;}
.y20_c01360{bottom:605.440000pt;}
.y22_c01360{bottom:606.080000pt;}
.y23_c01360{bottom:606.720000pt;}
.y33_c01360{bottom:607.360000pt;}
.y1a_c01360{bottom:641.920000pt;}
.y1f_c01360{bottom:642.560000pt;}
.y1e_c01360{bottom:643.840000pt;}
.y1c_c01360{bottom:644.480000pt;}
.y1b_c01360{bottom:645.120000pt;}
.y1d_c01360{bottom:645.760000pt;}
.y15_c01360{bottom:679.680000pt;}
.y13_c01360{bottom:681.600000pt;}
.y19_c01360{bottom:682.240000pt;}
.y14_c01360{bottom:682.880000pt;}
.y12_c01360{bottom:718.720000pt;}
.y17_c01360{bottom:719.360000pt;}
.y11_c01360{bottom:720.000000pt;}
.y18_c01360{bottom:721.920000pt;}
.y10_c01360{bottom:760.320000pt;}
.yf_c01360{bottom:760.960000pt;}
.yc_c01360{bottom:805.120000pt;}
.yb_c01360{bottom:806.400000pt;}
.ye_c01360{bottom:807.040000pt;}
.yd_c01360{bottom:808.320000pt;}
.ya_c01360{bottom:843.520000pt;}
.y16_c01360{bottom:844.160000pt;}
.y9_c01360{bottom:844.800000pt;}
.y8_c01360{bottom:881.920000pt;}
.y7_c01360{bottom:885.760000pt;}
.y2_c01360{bottom:910.720000pt;}
.y1_c01360{bottom:911.360000pt;}
.y4_c01360{bottom:912.000000pt;}
.y6_c01360{bottom:912.640000pt;}
.y5_c01360{bottom:913.280000pt;}
.y3_c01360{bottom:913.920000pt;}
.h13_c01360{height:25.341250pt;}
.h12_c01360{height:29.948750pt;}
.hf_c01360{height:32.252500pt;}
.h4_c01360{height:34.556250pt;}
.h6_c01360{height:36.860000pt;}
.hc_c01360{height:39.163750pt;}
.h8_c01360{height:41.467500pt;}
.hd_c01360{height:43.771250pt;}
.h7_c01360{height:46.075000pt;}
.ha_c01360{height:48.378750pt;}
.he_c01360{height:50.682500pt;}
.h5_c01360{height:52.986250pt;}
.hb_c01360{height:55.290000pt;}
.h2_c01360{height:57.593750pt;}
.h9_c01360{height:59.897500pt;}
.h3_c01360{height:62.201250pt;}
.h11_c01360{height:66.808750pt;}
.h10_c01360{height:89.846250pt;}
.h1_c01360{height:1019.333333pt;}
.h0_c01360{height:1019.520000pt;}
.w0_c01360{width:693.120000pt;}
.w1_c01360{width:693.333333pt;}
.x0_c01360{left:0.000000pt;}
.x1_c01360{left:44.160000pt;}
.x9_c01360{left:45.440000pt;}
.x2b_c01360{left:46.720000pt;}
.x31_c01360{left:48.000000pt;}
.x30_c01360{left:74.880000pt;}
.xc_c01360{left:92.160000pt;}
.xf_c01360{left:101.120000pt;}
.x2_c01360{left:102.400000pt;}
.xd_c01360{left:140.160000pt;}
.x7_c01360{left:150.400000pt;}
.x10_c01360{left:168.960000pt;}
.x33_c01360{left:172.800000pt;}
.x18_c01360{left:178.560000pt;}
.x8_c01360{left:188.160000pt;}
.x3_c01360{left:208.640000pt;}
.xe_c01360{left:218.240000pt;}
.x19_c01360{left:227.200000pt;}
.x32_c01360{left:228.480000pt;}
.x24_c01360{left:236.160000pt;}
.x4_c01360{left:245.760000pt;}
.x1d_c01360{left:256.000000pt;}
.x2e_c01360{left:266.240000pt;}
.x20_c01360{left:274.560000pt;}
.xa_c01360{left:295.040000pt;}
.x2f_c01360{left:304.000000pt;}
.x21_c01360{left:314.240000pt;}
.x5_c01360{left:332.800000pt;}
.xb_c01360{left:343.040000pt;}
.x1a_c01360{left:360.320000pt;}
.x6_c01360{left:371.200000pt;}
.x22_c01360{left:390.400000pt;}
.x1b_c01360{left:400.000000pt;}
.x2c_c01360{left:408.960000pt;}
.x1e_c01360{left:419.200000pt;}
.x23_c01360{left:428.160000pt;}
.x1c_c01360{left:437.760000pt;}
.x1f_c01360{left:456.960000pt;}
.x2d_c01360{left:480.000000pt;}
.x26_c01360{left:514.560000pt;}
.x11_c01360{left:533.760000pt;}
.x16_c01360{left:535.040000pt;}
.x27_c01360{left:542.720000pt;}
.x35_c01360{left:554.880000pt;}
.x25_c01360{left:562.560000pt;}
.x13_c01360{left:563.840000pt;}
.x2a_c01360{left:590.720000pt;}
.x14_c01360{left:592.000000pt;}
.x28_c01360{left:600.960000pt;}
.x34_c01360{left:620.160000pt;}
.x29_c01360{left:628.480000pt;}
.x15_c01360{left:629.760000pt;}
.x12_c01360{left:631.040000pt;}
.x17_c01360{left:648.320000pt;}
}





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

.ir_c01361:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01361{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01361;src:url('chunks/assets/font_b8995ebf1783248e21726fc0.woff2')format("woff");}.ff1_c01361{font-family:ff1_c01361;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m47_c01361{transform:matrix(0.154050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154050,0.000000,0.000000,0.250000,0,0);}
.m3c_c01361{transform:matrix(0.194200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194200,0.000000,0.000000,0.250000,0,0);}
.m41_c01361{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01361{transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);}
.m8_c01361{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m44_c01361{transform:matrix(0.234675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234675,0.000000,0.000000,0.250000,0,0);}
.m23_c01361{transform:matrix(0.234725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234725,0.000000,0.000000,0.250000,0,0);}
.m49_c01361{transform:matrix(0.234825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234825,0.000000,0.000000,0.250000,0,0);}
.mc_c01361{transform:matrix(0.234900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234900,0.000000,0.000000,0.250000,0,0);}
.m11_c01361{transform:matrix(0.235125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235125,0.000000,0.000000,0.250000,0,0);}
.m35_c01361{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m1f_c01361{transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);}
.me_c01361{transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);}
.m14_c01361{transform:matrix(0.243975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243975,0.000000,0.000000,0.250000,0,0);}
.m21_c01361{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m25_c01361{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);}
.m32_c01361{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01361{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01361{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);}
.m34_c01361{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);}
.m2e_c01361{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);}
.m31_c01361{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mb_c01361{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m18_c01361{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01361{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_c01361{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m33_c01361{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m10_c01361{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m22_c01361{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);}
.m3a_c01361{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m28_c01361{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m16_c01361{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01361{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m20_c01361{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m39_c01361{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01361{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.ma_c01361{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01361{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m15_c01361{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m29_c01361{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m37_c01361{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m12_c01361{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m6_c01361{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1_c01361{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m19_c01361{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01361{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);}
.m30_c01361{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.md_c01361{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m2_c01361{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m3_c01361{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);}
.m42_c01361{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);}
.m2d_c01361{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);}
.m46_c01361{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m7_c01361{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);}
.m5_c01361{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);}
.m3f_c01361{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m0_c01361{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);}
.m45_c01361{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m40_c01361{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m4_c01361{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);}
.m2b_c01361{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01361{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01361{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01361{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);}
.m26_c01361{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);}
.mf_c01361{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m43_c01361{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m48_c01361{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01361{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);}
.m24_c01361{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m17_c01361{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m13_c01361{transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);}
.m36_c01361{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m38_c01361{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.v2_c01361{vertical-align:-2.880000px;}
.v0_c01361{vertical-align:0.000000px;}
.v1_c01361{vertical-align:2.880000px;}
.ls0_c01361{letter-spacing:0.000000px;}
.sc__c01361{text-shadow:none;}
.sc0_c01361{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01361{-webkit-text-stroke:0px transparent;}
.sc0_c01361{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01361{word-spacing:0.000000px;}
.ws1_c01361{word-spacing:4.705200px;}
.ws0_c01361{word-spacing:7.207440px;}
.fc0_c01361{color:transparent;}
.fsa_c01361{font-size:31.680000px;}
.fs9_c01361{font-size:46.080000px;}
.fs3_c01361{font-size:48.960000px;}
.fs2_c01361{font-size:51.840000px;}
.fs0_c01361{font-size:54.720000px;}
.fs1_c01361{font-size:57.600000px;}
.fs4_c01361{font-size:60.480000px;}
.fsc_c01361{font-size:63.360000px;}
.fs8_c01361{font-size:66.240000px;}
.fsb_c01361{font-size:69.120000px;}
.fs7_c01361{font-size:72.000000px;}
.fs6_c01361{font-size:74.880000px;}
.fs5_c01361{font-size:77.760000px;}
.fsd_c01361{font-size:106.560000px;}
.y0_c01361{bottom:0.000000px;}
.y59_c01361{bottom:63.360000px;}
.y5d_c01361{bottom:65.520000px;}
.y5c_c01361{bottom:66.240000px;}
.y5a_c01361{bottom:66.960000px;}
.y5b_c01361{bottom:67.680000px;}
.y5e_c01361{bottom:68.400000px;}
.y58_c01361{bottom:69.840000px;}
.y6b_c01361{bottom:70.560000px;}
.y57_c01361{bottom:102.240000px;}
.y53_c01361{bottom:107.280000px;}
.y54_c01361{bottom:109.440000px;}
.y56_c01361{bottom:110.880000px;}
.y55_c01361{bottom:111.600000px;}
.y52_c01361{bottom:112.320000px;}
.y6a_c01361{bottom:115.200000px;}
.y51_c01361{bottom:150.480000px;}
.y68_c01361{bottom:154.800000px;}
.y50_c01361{bottom:155.520000px;}
.y69_c01361{bottom:156.960000px;}
.y4f_c01361{bottom:194.400000px;}
.y4e_c01361{bottom:198.000000px;}
.y67_c01361{bottom:198.720000px;}
.y4d_c01361{bottom:237.600000px;}
.y65_c01361{bottom:241.920000px;}
.y4c_c01361{bottom:242.640000px;}
.y66_c01361{bottom:243.360000px;}
.y4b_c01361{bottom:281.520000px;}
.y64_c01361{bottom:284.400000px;}
.y49_c01361{bottom:285.120000px;}
.y4a_c01361{bottom:285.840000px;}
.y48_c01361{bottom:324.000000px;}
.y62_c01361{bottom:327.600000px;}
.y47_c01361{bottom:328.320000px;}
.y63_c01361{bottom:329.760000px;}
.y31_c01361{bottom:369.360000px;}
.y2f_c01361{bottom:370.080000px;}
.y30_c01361{bottom:370.800000px;}
.y2e_c01361{bottom:371.520000px;}
.y61_c01361{bottom:372.240000px;}
.y2d_c01361{bottom:411.120000px;}
.y5f_c01361{bottom:414.000000px;}
.y2c_c01361{bottom:414.720000px;}
.y46_c01361{bottom:415.440000px;}
.y60_c01361{bottom:416.160000px;}
.y2b_c01361{bottom:455.760000px;}
.y44_c01361{bottom:456.480000px;}
.y45_c01361{bottom:457.200000px;}
.y2a_c01361{bottom:457.920000px;}
.y43_c01361{bottom:459.360000px;}
.y26_c01361{bottom:497.520000px;}
.y28_c01361{bottom:498.240000px;}
.y29_c01361{bottom:498.960000px;}
.y42_c01361{bottom:500.400000px;}
.y25_c01361{bottom:501.120000px;}
.y27_c01361{bottom:501.840000px;}
.y23_c01361{bottom:541.440000px;}
.y24_c01361{bottom:542.160000px;}
.y41_c01361{bottom:542.880000px;}
.y22_c01361{bottom:544.320000px;}
.y20_c01361{bottom:585.360000px;}
.y40_c01361{bottom:586.080000px;}
.y21_c01361{bottom:586.800000px;}
.y3e_c01361{bottom:587.520000px;}
.y1f_c01361{bottom:588.240000px;}
.y3f_c01361{bottom:588.960000px;}
.y3d_c01361{bottom:589.680000px;}
.y1e_c01361{bottom:627.120000px;}
.y1c_c01361{bottom:628.560000px;}
.y1d_c01361{bottom:629.280000px;}
.y3c_c01361{bottom:630.000000px;}
.y1b_c01361{bottom:630.720000px;}
.y18_c01361{bottom:671.040000px;}
.y1a_c01361{bottom:671.760000px;}
.y3b_c01361{bottom:672.480000px;}
.y19_c01361{bottom:673.200000px;}
.y17_c01361{bottom:673.920000px;}
.y16_c01361{bottom:713.520000px;}
.y13_c01361{bottom:714.240000px;}
.y39_c01361{bottom:714.960000px;}
.y14_c01361{bottom:715.680000px;}
.y12_c01361{bottom:716.400000px;}
.y3a_c01361{bottom:717.120000px;}
.y15_c01361{bottom:718.560000px;}
.y38_c01361{bottom:756.720000px;}
.y11_c01361{bottom:757.440000px;}
.y37_c01361{bottom:758.160000px;}
.y36_c01361{bottom:758.880000px;}
.yf_c01361{bottom:759.600000px;}
.y10_c01361{bottom:761.040000px;}
.ye_c01361{bottom:804.960000px;}
.yc_c01361{bottom:853.920000px;}
.y35_c01361{bottom:854.640000px;}
.yb_c01361{bottom:855.360000px;}
.yd_c01361{bottom:856.800000px;}
.y9_c01361{bottom:897.120000px;}
.ya_c01361{bottom:897.840000px;}
.y8_c01361{bottom:898.560000px;}
.y33_c01361{bottom:899.280000px;}
.y34_c01361{bottom:900.720000px;}
.y6_c01361{bottom:940.320000px;}
.y7_c01361{bottom:941.040000px;}
.y5_c01361{bottom:942.480000px;}
.y32_c01361{bottom:943.200000px;}
.y4_c01361{bottom:988.560000px;}
.y3_c01361{bottom:1031.040000px;}
.y2_c01361{bottom:1031.760000px;}
.y1_c01361{bottom:1032.480000px;}
.hc_c01361{height:28.508906px;}
.hb_c01361{height:41.467500px;}
.h5_c01361{height:44.059219px;}
.h4_c01361{height:46.650937px;}
.h2_c01361{height:49.242656px;}
.h3_c01361{height:51.834375px;}
.h6_c01361{height:54.426094px;}
.he_c01361{height:57.017812px;}
.ha_c01361{height:59.609531px;}
.hd_c01361{height:62.201250px;}
.h9_c01361{height:64.792969px;}
.h8_c01361{height:67.384687px;}
.h7_c01361{height:69.976406px;}
.hf_c01361{height:95.893594px;}
.h1_c01361{height:1147.500000px;}
.h0_c01361{height:1147.680000px;}
.w0_c01361{width:781.920000px;}
.w1_c01361{width:782.250000px;}
.x0_c01361{left:0.000000px;}
.x7_c01361{left:52.560000px;}
.x13_c01361{left:54.000000px;}
.xd_c01361{left:84.960000px;}
.x1_c01361{left:105.840000px;}
.x14_c01361{left:114.480000px;}
.x8_c01361{left:115.920000px;}
.x6_c01361{left:160.560000px;}
.x2_c01361{left:181.440000px;}
.x2b_c01361{left:192.240000px;}
.xf_c01361{left:203.040000px;}
.x2c_c01361{left:213.120000px;}
.xa_c01361{left:214.560000px;}
.x3_c01361{left:223.920000px;}
.xe_c01361{left:246.240000px;}
.x9_c01361{left:257.040000px;}
.x31_c01361{left:265.680000px;}
.xb_c01361{left:268.560000px;}
.x15_c01361{left:277.920000px;}
.x4_c01361{left:290.160000px;}
.x2d_c01361{left:300.240000px;}
.x19_c01361{left:311.040000px;}
.x5_c01361{left:321.840000px;}
.x10_c01361{left:332.640000px;}
.x2e_c01361{left:353.520000px;}
.xc_c01361{left:354.960000px;}
.x12_c01361{left:365.040000px;}
.x11_c01361{left:386.640000px;}
.x2f_c01361{left:396.720000px;}
.x16_c01361{left:406.800000px;}
.x1a_c01361{left:429.120000px;}
.x32_c01361{left:450.720000px;}
.x17_c01361{left:460.800000px;}
.x1b_c01361{left:482.400000px;}
.x33_c01361{left:492.480000px;}
.x18_c01361{left:503.280000px;}
.x30_c01361{left:556.560000px;}
.x2a_c01361{left:568.800000px;}
.x25_c01361{left:578.880000px;}
.x1c_c01361{left:581.040000px;}
.x27_c01361{left:600.480000px;}
.x20_c01361{left:601.920000px;}
.x35_c01361{left:632.160000px;}
.x26_c01361{left:633.600000px;}
.x1d_c01361{left:635.040000px;}
.x28_c01361{left:666.000000px;}
.x1e_c01361{left:667.440000px;}
.x36_c01361{left:675.360000px;}
.x21_c01361{left:677.520000px;}
.x1f_c01361{left:699.840000px;}
.x29_c01361{left:707.040000px;}
.x23_c01361{left:709.200000px;}
.x22_c01361{left:710.640000px;}
.x34_c01361{left:727.920000px;}
.x24_c01361{left:729.360000px;}
@media print{
.v2_c01361{vertical-align:-2.560000pt;}
.v0_c01361{vertical-align:0.000000pt;}
.v1_c01361{vertical-align:2.560000pt;}
.ls0_c01361{letter-spacing:0.000000pt;}
.ws2_c01361{word-spacing:0.000000pt;}
.ws1_c01361{word-spacing:4.182400pt;}
.ws0_c01361{word-spacing:6.406613pt;}
.fsa_c01361{font-size:28.160000pt;}
.fs9_c01361{font-size:40.960000pt;}
.fs3_c01361{font-size:43.520000pt;}
.fs2_c01361{font-size:46.080000pt;}
.fs0_c01361{font-size:48.640000pt;}
.fs1_c01361{font-size:51.200000pt;}
.fs4_c01361{font-size:53.760000pt;}
.fsc_c01361{font-size:56.320000pt;}
.fs8_c01361{font-size:58.880000pt;}
.fsb_c01361{font-size:61.440000pt;}
.fs7_c01361{font-size:64.000000pt;}
.fs6_c01361{font-size:66.560000pt;}
.fs5_c01361{font-size:69.120000pt;}
.fsd_c01361{font-size:94.720000pt;}
.y0_c01361{bottom:0.000000pt;}
.y59_c01361{bottom:56.320000pt;}
.y5d_c01361{bottom:58.240000pt;}
.y5c_c01361{bottom:58.880000pt;}
.y5a_c01361{bottom:59.520000pt;}
.y5b_c01361{bottom:60.160000pt;}
.y5e_c01361{bottom:60.800000pt;}
.y58_c01361{bottom:62.080000pt;}
.y6b_c01361{bottom:62.720000pt;}
.y57_c01361{bottom:90.880000pt;}
.y53_c01361{bottom:95.360000pt;}
.y54_c01361{bottom:97.280000pt;}
.y56_c01361{bottom:98.560000pt;}
.y55_c01361{bottom:99.200000pt;}
.y52_c01361{bottom:99.840000pt;}
.y6a_c01361{bottom:102.400000pt;}
.y51_c01361{bottom:133.760000pt;}
.y68_c01361{bottom:137.600000pt;}
.y50_c01361{bottom:138.240000pt;}
.y69_c01361{bottom:139.520000pt;}
.y4f_c01361{bottom:172.800000pt;}
.y4e_c01361{bottom:176.000000pt;}
.y67_c01361{bottom:176.640000pt;}
.y4d_c01361{bottom:211.200000pt;}
.y65_c01361{bottom:215.040000pt;}
.y4c_c01361{bottom:215.680000pt;}
.y66_c01361{bottom:216.320000pt;}
.y4b_c01361{bottom:250.240000pt;}
.y64_c01361{bottom:252.800000pt;}
.y49_c01361{bottom:253.440000pt;}
.y4a_c01361{bottom:254.080000pt;}
.y48_c01361{bottom:288.000000pt;}
.y62_c01361{bottom:291.200000pt;}
.y47_c01361{bottom:291.840000pt;}
.y63_c01361{bottom:293.120000pt;}
.y31_c01361{bottom:328.320000pt;}
.y2f_c01361{bottom:328.960000pt;}
.y30_c01361{bottom:329.600000pt;}
.y2e_c01361{bottom:330.240000pt;}
.y61_c01361{bottom:330.880000pt;}
.y2d_c01361{bottom:365.440000pt;}
.y5f_c01361{bottom:368.000000pt;}
.y2c_c01361{bottom:368.640000pt;}
.y46_c01361{bottom:369.280000pt;}
.y60_c01361{bottom:369.920000pt;}
.y2b_c01361{bottom:405.120000pt;}
.y44_c01361{bottom:405.760000pt;}
.y45_c01361{bottom:406.400000pt;}
.y2a_c01361{bottom:407.040000pt;}
.y43_c01361{bottom:408.320000pt;}
.y26_c01361{bottom:442.240000pt;}
.y28_c01361{bottom:442.880000pt;}
.y29_c01361{bottom:443.520000pt;}
.y42_c01361{bottom:444.800000pt;}
.y25_c01361{bottom:445.440000pt;}
.y27_c01361{bottom:446.080000pt;}
.y23_c01361{bottom:481.280000pt;}
.y24_c01361{bottom:481.920000pt;}
.y41_c01361{bottom:482.560000pt;}
.y22_c01361{bottom:483.840000pt;}
.y20_c01361{bottom:520.320000pt;}
.y40_c01361{bottom:520.960000pt;}
.y21_c01361{bottom:521.600000pt;}
.y3e_c01361{bottom:522.240000pt;}
.y1f_c01361{bottom:522.880000pt;}
.y3f_c01361{bottom:523.520000pt;}
.y3d_c01361{bottom:524.160000pt;}
.y1e_c01361{bottom:557.440000pt;}
.y1c_c01361{bottom:558.720000pt;}
.y1d_c01361{bottom:559.360000pt;}
.y3c_c01361{bottom:560.000000pt;}
.y1b_c01361{bottom:560.640000pt;}
.y18_c01361{bottom:596.480000pt;}
.y1a_c01361{bottom:597.120000pt;}
.y3b_c01361{bottom:597.760000pt;}
.y19_c01361{bottom:598.400000pt;}
.y17_c01361{bottom:599.040000pt;}
.y16_c01361{bottom:634.240000pt;}
.y13_c01361{bottom:634.880000pt;}
.y39_c01361{bottom:635.520000pt;}
.y14_c01361{bottom:636.160000pt;}
.y12_c01361{bottom:636.800000pt;}
.y3a_c01361{bottom:637.440000pt;}
.y15_c01361{bottom:638.720000pt;}
.y38_c01361{bottom:672.640000pt;}
.y11_c01361{bottom:673.280000pt;}
.y37_c01361{bottom:673.920000pt;}
.y36_c01361{bottom:674.560000pt;}
.yf_c01361{bottom:675.200000pt;}
.y10_c01361{bottom:676.480000pt;}
.ye_c01361{bottom:715.520000pt;}
.yc_c01361{bottom:759.040000pt;}
.y35_c01361{bottom:759.680000pt;}
.yb_c01361{bottom:760.320000pt;}
.yd_c01361{bottom:761.600000pt;}
.y9_c01361{bottom:797.440000pt;}
.ya_c01361{bottom:798.080000pt;}
.y8_c01361{bottom:798.720000pt;}
.y33_c01361{bottom:799.360000pt;}
.y34_c01361{bottom:800.640000pt;}
.y6_c01361{bottom:835.840000pt;}
.y7_c01361{bottom:836.480000pt;}
.y5_c01361{bottom:837.760000pt;}
.y32_c01361{bottom:838.400000pt;}
.y4_c01361{bottom:878.720000pt;}
.y3_c01361{bottom:916.480000pt;}
.y2_c01361{bottom:917.120000pt;}
.y1_c01361{bottom:917.760000pt;}
.hc_c01361{height:25.341250pt;}
.hb_c01361{height:36.860000pt;}
.h5_c01361{height:39.163750pt;}
.h4_c01361{height:41.467500pt;}
.h2_c01361{height:43.771250pt;}
.h3_c01361{height:46.075000pt;}
.h6_c01361{height:48.378750pt;}
.he_c01361{height:50.682500pt;}
.ha_c01361{height:52.986250pt;}
.hd_c01361{height:55.290000pt;}
.h9_c01361{height:57.593750pt;}
.h8_c01361{height:59.897500pt;}
.h7_c01361{height:62.201250pt;}
.hf_c01361{height:85.238750pt;}
.h1_c01361{height:1020.000000pt;}
.h0_c01361{height:1020.160000pt;}
.w0_c01361{width:695.040000pt;}
.w1_c01361{width:695.333333pt;}
.x0_c01361{left:0.000000pt;}
.x7_c01361{left:46.720000pt;}
.x13_c01361{left:48.000000pt;}
.xd_c01361{left:75.520000pt;}
.x1_c01361{left:94.080000pt;}
.x14_c01361{left:101.760000pt;}
.x8_c01361{left:103.040000pt;}
.x6_c01361{left:142.720000pt;}
.x2_c01361{left:161.280000pt;}
.x2b_c01361{left:170.880000pt;}
.xf_c01361{left:180.480000pt;}
.x2c_c01361{left:189.440000pt;}
.xa_c01361{left:190.720000pt;}
.x3_c01361{left:199.040000pt;}
.xe_c01361{left:218.880000pt;}
.x9_c01361{left:228.480000pt;}
.x31_c01361{left:236.160000pt;}
.xb_c01361{left:238.720000pt;}
.x15_c01361{left:247.040000pt;}
.x4_c01361{left:257.920000pt;}
.x2d_c01361{left:266.880000pt;}
.x19_c01361{left:276.480000pt;}
.x5_c01361{left:286.080000pt;}
.x10_c01361{left:295.680000pt;}
.x2e_c01361{left:314.240000pt;}
.xc_c01361{left:315.520000pt;}
.x12_c01361{left:324.480000pt;}
.x11_c01361{left:343.680000pt;}
.x2f_c01361{left:352.640000pt;}
.x16_c01361{left:361.600000pt;}
.x1a_c01361{left:381.440000pt;}
.x32_c01361{left:400.640000pt;}
.x17_c01361{left:409.600000pt;}
.x1b_c01361{left:428.800000pt;}
.x33_c01361{left:437.760000pt;}
.x18_c01361{left:447.360000pt;}
.x30_c01361{left:494.720000pt;}
.x2a_c01361{left:505.600000pt;}
.x25_c01361{left:514.560000pt;}
.x1c_c01361{left:516.480000pt;}
.x27_c01361{left:533.760000pt;}
.x20_c01361{left:535.040000pt;}
.x35_c01361{left:561.920000pt;}
.x26_c01361{left:563.200000pt;}
.x1d_c01361{left:564.480000pt;}
.x28_c01361{left:592.000000pt;}
.x1e_c01361{left:593.280000pt;}
.x36_c01361{left:600.320000pt;}
.x21_c01361{left:602.240000pt;}
.x1f_c01361{left:622.080000pt;}
.x29_c01361{left:628.480000pt;}
.x23_c01361{left:630.400000pt;}
.x22_c01361{left:631.680000pt;}
.x34_c01361{left:647.040000pt;}
.x24_c01361{left:648.320000pt;}
}





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

.ir_c01362:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01362{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01362;src:url('chunks/assets/font_39437ef87e5406132c295731.woff2')format("woff");}.ff1_c01362{font-family:ff1_c01362;line-height:1.109863;font-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_c01362{transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);}
.m41_c01362{transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);}
.m30_c01362{transform:matrix(0.200950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200950,0.000000,0.000000,0.250000,0,0);}
.m27_c01362{transform:matrix(0.221625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221625,0.000000,0.000000,0.250000,0,0);}
.m40_c01362{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);}
.m10_c01362{transform:matrix(0.231050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231050,0.000000,0.000000,0.250000,0,0);}
.m45_c01362{transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);}
.m34_c01362{transform:matrix(0.234725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234725,0.000000,0.000000,0.250000,0,0);}
.m1e_c01362{transform:matrix(0.236475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236475,0.000000,0.000000,0.250000,0,0);}
.m2_c01362{transform:matrix(0.236700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236700,0.000000,0.000000,0.250000,0,0);}
.m26_c01362{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m3d_c01362{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);}
.m36_c01362{transform:matrix(0.241275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241275,0.000000,0.000000,0.250000,0,0);}
.m19_c01362{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m12_c01362{transform:matrix(0.245850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245850,0.000000,0.000000,0.250000,0,0);}
.m4e_c01362{transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);}
.me_c01362{transform:matrix(0.248425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248425,0.000000,0.000000,0.250000,0,0);}
.m39_c01362{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01362{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);}
.m42_c01362{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m8_c01362{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01362{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m1_c01362{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);}
.m51_c01362{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);}
.m31_c01362{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);}
.m49_c01362{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.mf_c01362{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);}
.m2f_c01362{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m6_c01362{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01362{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);}
.m38_c01362{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);}
.m2a_c01362{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);}
.m47_c01362{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m24_c01362{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01362{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m22_c01362{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m9_c01362{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m23_c01362{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m44_c01362{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m17_c01362{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01362{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01362{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01362{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m20_c01362{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m29_c01362{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3_c01362{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01362{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m21_c01362{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m25_c01362{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);}
.m46_c01362{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m7_c01362{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01362{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);}
.m53_c01362{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01362{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);}
.m52_c01362{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01362{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);}
.m56_c01362{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m18_c01362{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m28_c01362{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);}
.md_c01362{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.mc_c01362{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);}
.m16_c01362{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.mb_c01362{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);}
.m0_c01362{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.ma_c01362{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);}
.m5_c01362{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);}
.m50_c01362{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m32_c01362{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);}
.m48_c01362{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01362{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01362{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);}
.m15_c01362{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01362{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);}
.m54_c01362{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m4a_c01362{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);}
.m4_c01362{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01362{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01362{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m11_c01362{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01362{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);}
.m37_c01362{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01362{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);}
.m55_c01362{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m43_c01362{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);}
.m35_c01362{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m33_c01362{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01362{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.v1_c01362{vertical-align:-2.880000px;}
.v0_c01362{vertical-align:0.000000px;}
.v2_c01362{vertical-align:2.880000px;}
.ls0_c01362{letter-spacing:0.000000px;}
.sc__c01362{text-shadow:none;}
.sc0_c01362{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01362{-webkit-text-stroke:0px transparent;}
.sc0_c01362{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01362{word-spacing:0.000000px;}
.ws1_c01362{word-spacing:9.985200px;}
.ws0_c01362{word-spacing:43.053600px;}
.fc0_c01362{color:transparent;}
.fsb_c01362{font-size:20.160000px;}
.fsc_c01362{font-size:37.440000px;}
.fsd_c01362{font-size:43.200000px;}
.fsa_c01362{font-size:46.080000px;}
.fs4_c01362{font-size:48.960000px;}
.fs3_c01362{font-size:51.840000px;}
.fs8_c01362{font-size:54.720000px;}
.fs7_c01362{font-size:57.600000px;}
.fs0_c01362{font-size:60.480000px;}
.fs2_c01362{font-size:63.360000px;}
.fs5_c01362{font-size:66.240000px;}
.fs9_c01362{font-size:69.120000px;}
.fs1_c01362{font-size:74.880000px;}
.fs6_c01362{font-size:77.760000px;}
.y0_c01362{bottom:0.000000px;}
.y65_c01362{bottom:63.360000px;}
.y64_c01362{bottom:64.800000px;}
.y66_c01362{bottom:66.240000px;}
.y63_c01362{bottom:66.960000px;}
.y5f_c01362{bottom:106.560000px;}
.y61_c01362{bottom:108.000000px;}
.y5e_c01362{bottom:108.720000px;}
.y60_c01362{bottom:109.440000px;}
.y5d_c01362{bottom:110.160000px;}
.y62_c01362{bottom:110.880000px;}
.y58_c01362{bottom:150.480000px;}
.y5a_c01362{bottom:151.920000px;}
.y5b_c01362{bottom:152.640000px;}
.y59_c01362{bottom:153.360000px;}
.y57_c01362{bottom:154.080000px;}
.y5c_c01362{bottom:154.800000px;}
.y44_c01362{bottom:215.280000px;}
.y45_c01362{bottom:216.720000px;}
.y55_c01362{bottom:217.440000px;}
.y43_c01362{bottom:218.160000px;}
.y46_c01362{bottom:218.880000px;}
.y42_c01362{bottom:220.320000px;}
.y56_c01362{bottom:221.040000px;}
.y40_c01362{bottom:258.480000px;}
.y41_c01362{bottom:259.920000px;}
.y53_c01362{bottom:260.640000px;}
.y3f_c01362{bottom:261.360000px;}
.y54_c01362{bottom:262.080000px;}
.y3e_c01362{bottom:301.680000px;}
.y50_c01362{bottom:303.840000px;}
.y51_c01362{bottom:304.560000px;}
.y3d_c01362{bottom:306.000000px;}
.y52_c01362{bottom:307.440000px;}
.y3b_c01362{bottom:347.040000px;}
.y3c_c01362{bottom:347.760000px;}
.y3a_c01362{bottom:348.480000px;}
.y39_c01362{bottom:388.080000px;}
.y37_c01362{bottom:388.800000px;}
.y4e_c01362{bottom:390.240000px;}
.y4f_c01362{bottom:390.960000px;}
.y38_c01362{bottom:391.680000px;}
.y35_c01362{bottom:392.400000px;}
.y4d_c01362{bottom:393.120000px;}
.y36_c01362{bottom:396.000000px;}
.y34_c01362{bottom:436.320000px;}
.y33_c01362{bottom:437.040000px;}
.y23_c01362{bottom:486.000000px;}
.y4b_c01362{bottom:486.720000px;}
.y22_c01362{bottom:488.160000px;}
.y4c_c01362{bottom:488.880000px;}
.y21_c01362{bottom:528.480000px;}
.y1f_c01362{bottom:529.200000px;}
.y49_c01362{bottom:529.920000px;}
.y20_c01362{bottom:530.640000px;}
.y1e_c01362{bottom:531.360000px;}
.y4a_c01362{bottom:532.080000px;}
.y1d_c01362{bottom:571.680000px;}
.y1c_c01362{bottom:573.120000px;}
.y1b_c01362{bottom:574.560000px;}
.y48_c01362{bottom:575.280000px;}
.y1a_c01362{bottom:615.600000px;}
.y19_c01362{bottom:616.320000px;}
.y47_c01362{bottom:617.040000px;}
.y18_c01362{bottom:618.480000px;}
.y17_c01362{bottom:663.840000px;}
.y16_c01362{bottom:664.560000px;}
.y31_c01362{bottom:711.360000px;}
.y2f_c01362{bottom:712.800000px;}
.y30_c01362{bottom:713.520000px;}
.y12_c01362{bottom:714.240000px;}
.y15_c01362{bottom:714.960000px;}
.y11_c01362{bottom:715.680000px;}
.y32_c01362{bottom:716.400000px;}
.y14_c01362{bottom:717.120000px;}
.y13_c01362{bottom:717.840000px;}
.y2e_c01362{bottom:754.560000px;}
.yf_c01362{bottom:756.720000px;}
.ye_c01362{bottom:758.880000px;}
.y10_c01362{bottom:761.040000px;}
.y2c_c01362{bottom:799.920000px;}
.yd_c01362{bottom:800.640000px;}
.y2d_c01362{bottom:801.360000px;}
.yc_c01362{bottom:802.080000px;}
.y2a_c01362{bottom:842.400000px;}
.yb_c01362{bottom:843.120000px;}
.y2b_c01362{bottom:843.840000px;}
.y29_c01362{bottom:844.560000px;}
.ya_c01362{bottom:845.280000px;}
.y9_c01362{bottom:891.360000px;}
.y27_c01362{bottom:938.880000px;}
.y28_c01362{bottom:939.600000px;}
.y8_c01362{bottom:941.040000px;}
.y7_c01362{bottom:942.480000px;}
.y25_c01362{bottom:982.800000px;}
.y6_c01362{bottom:983.520000px;}
.y26_c01362{bottom:984.960000px;}
.y5_c01362{bottom:985.680000px;}
.y4_c01362{bottom:1025.280000px;}
.y2_c01362{bottom:1027.440000px;}
.y1_c01362{bottom:1028.160000px;}
.y3_c01362{bottom:1029.600000px;}
.y24_c01362{bottom:1087.200000px;}
.hd_c01362{height:18.142031px;}
.he_c01362{height:33.692344px;}
.hf_c01362{height:38.875781px;}
.hc_c01362{height:41.467500px;}
.h6_c01362{height:44.059219px;}
.h5_c01362{height:46.650937px;}
.ha_c01362{height:49.242656px;}
.h9_c01362{height:51.834375px;}
.h2_c01362{height:54.426094px;}
.h4_c01362{height:57.017812px;}
.h7_c01362{height:59.609531px;}
.hb_c01362{height:62.201250px;}
.h10_c01362{height:62.489531px;}
.h3_c01362{height:67.384687px;}
.h8_c01362{height:69.976406px;}
.h1_c01362{height:1149.750000px;}
.h0_c01362{height:1149.840000px;}
.w1_c01362{width:784.500000px;}
.w0_c01362{width:784.800000px;}
.x0_c01362{left:0.000000px;}
.x1_c01362{left:56.880000px;}
.xb_c01362{left:58.320000px;}
.x49_c01362{left:66.240000px;}
.x41_c01362{left:85.680000px;}
.x2b_c01362{left:88.560000px;}
.x24_c01362{left:97.200000px;}
.x4a_c01362{left:106.560000px;}
.xf_c01362{left:108.720000px;}
.x8_c01362{left:110.160000px;}
.x25_c01362{left:118.080000px;}
.xa_c01362{left:119.520000px;}
.x2_c01362{left:120.960000px;}
.x42_c01362{left:150.480000px;}
.x23_c01362{left:162.000000px;}
.x9_c01362{left:164.160000px;}
.x4b_c01362{left:182.160000px;}
.x26_c01362{left:204.480000px;}
.x11_c01362{left:206.640000px;}
.x2a_c01362{left:216.000000px;}
.xc_c01362{left:217.440000px;}
.x3_c01362{left:218.880000px;}
.x43_c01362{left:226.080000px;}
.x3c_c01362{left:227.520000px;}
.x44_c01362{left:247.680000px;}
.x27_c01362{left:249.120000px;}
.x10_c01362{left:250.560000px;}
.x29_c01362{left:259.920000px;}
.x3d_c01362{left:269.280000px;}
.xd_c01362{left:272.880000px;}
.x4c_c01362{left:280.800000px;}
.x45_c01362{left:291.600000px;}
.x28_c01362{left:303.120000px;}
.x4_c01362{left:304.560000px;}
.x4d_c01362{left:313.200000px;}
.xe_c01362{left:315.360000px;}
.x12_c01362{left:336.240000px;}
.x3e_c01362{left:345.600000px;}
.x5_c01362{left:348.480000px;}
.x2c_c01362{left:357.840000px;}
.x2d_c01362{left:400.320000px;}
.x6_c01362{left:403.200000px;}
.x4e_c01362{left:410.400000px;}
.x46_c01362{left:440.640000px;}
.x7_c01362{left:445.680000px;}
.x2e_c01362{left:453.600000px;}
.x1d_c01362{left:455.760000px;}
.x2f_c01362{left:496.800000px;}
.x1e_c01362{left:509.040000px;}
.x3f_c01362{left:559.440000px;}
.x47_c01362{left:561.600000px;}
.x1f_c01362{left:563.040000px;}
.x37_c01362{left:583.200000px;}
.x30_c01362{left:584.640000px;}
.x48_c01362{left:592.560000px;}
.x38_c01362{left:602.640000px;}
.x36_c01362{left:604.080000px;}
.x20_c01362{left:605.520000px;}
.x14_c01362{left:608.400000px;}
.x31_c01362{left:615.600000px;}
.x32_c01362{left:628.560000px;}
.x3b_c01362{left:635.040000px;}
.x33_c01362{left:637.200000px;}
.x16_c01362{left:639.360000px;}
.x19_c01362{left:640.800000px;}
.x34_c01362{left:670.320000px;}
.x1a_c01362{left:672.480000px;}
.x17_c01362{left:673.920000px;}
.x40_c01362{left:678.240000px;}
.x39_c01362{left:679.680000px;}
.x21_c01362{left:681.840000px;}
.x13_c01362{left:697.680000px;}
.x1b_c01362{left:704.880000px;}
.x3a_c01362{left:711.360000px;}
.x35_c01362{left:712.800000px;}
.x22_c01362{left:714.240000px;}
.x15_c01362{left:715.680000px;}
.x18_c01362{left:717.120000px;}
.x1c_c01362{left:734.400000px;}
@media print{
.v1_c01362{vertical-align:-2.560000pt;}
.v0_c01362{vertical-align:0.000000pt;}
.v2_c01362{vertical-align:2.560000pt;}
.ls0_c01362{letter-spacing:0.000000pt;}
.ws2_c01362{word-spacing:0.000000pt;}
.ws1_c01362{word-spacing:8.875733pt;}
.ws0_c01362{word-spacing:38.269867pt;}
.fsb_c01362{font-size:17.920000pt;}
.fsc_c01362{font-size:33.280000pt;}
.fsd_c01362{font-size:38.400000pt;}
.fsa_c01362{font-size:40.960000pt;}
.fs4_c01362{font-size:43.520000pt;}
.fs3_c01362{font-size:46.080000pt;}
.fs8_c01362{font-size:48.640000pt;}
.fs7_c01362{font-size:51.200000pt;}
.fs0_c01362{font-size:53.760000pt;}
.fs2_c01362{font-size:56.320000pt;}
.fs5_c01362{font-size:58.880000pt;}
.fs9_c01362{font-size:61.440000pt;}
.fs1_c01362{font-size:66.560000pt;}
.fs6_c01362{font-size:69.120000pt;}
.y0_c01362{bottom:0.000000pt;}
.y65_c01362{bottom:56.320000pt;}
.y64_c01362{bottom:57.600000pt;}
.y66_c01362{bottom:58.880000pt;}
.y63_c01362{bottom:59.520000pt;}
.y5f_c01362{bottom:94.720000pt;}
.y61_c01362{bottom:96.000000pt;}
.y5e_c01362{bottom:96.640000pt;}
.y60_c01362{bottom:97.280000pt;}
.y5d_c01362{bottom:97.920000pt;}
.y62_c01362{bottom:98.560000pt;}
.y58_c01362{bottom:133.760000pt;}
.y5a_c01362{bottom:135.040000pt;}
.y5b_c01362{bottom:135.680000pt;}
.y59_c01362{bottom:136.320000pt;}
.y57_c01362{bottom:136.960000pt;}
.y5c_c01362{bottom:137.600000pt;}
.y44_c01362{bottom:191.360000pt;}
.y45_c01362{bottom:192.640000pt;}
.y55_c01362{bottom:193.280000pt;}
.y43_c01362{bottom:193.920000pt;}
.y46_c01362{bottom:194.560000pt;}
.y42_c01362{bottom:195.840000pt;}
.y56_c01362{bottom:196.480000pt;}
.y40_c01362{bottom:229.760000pt;}
.y41_c01362{bottom:231.040000pt;}
.y53_c01362{bottom:231.680000pt;}
.y3f_c01362{bottom:232.320000pt;}
.y54_c01362{bottom:232.960000pt;}
.y3e_c01362{bottom:268.160000pt;}
.y50_c01362{bottom:270.080000pt;}
.y51_c01362{bottom:270.720000pt;}
.y3d_c01362{bottom:272.000000pt;}
.y52_c01362{bottom:273.280000pt;}
.y3b_c01362{bottom:308.480000pt;}
.y3c_c01362{bottom:309.120000pt;}
.y3a_c01362{bottom:309.760000pt;}
.y39_c01362{bottom:344.960000pt;}
.y37_c01362{bottom:345.600000pt;}
.y4e_c01362{bottom:346.880000pt;}
.y4f_c01362{bottom:347.520000pt;}
.y38_c01362{bottom:348.160000pt;}
.y35_c01362{bottom:348.800000pt;}
.y4d_c01362{bottom:349.440000pt;}
.y36_c01362{bottom:352.000000pt;}
.y34_c01362{bottom:387.840000pt;}
.y33_c01362{bottom:388.480000pt;}
.y23_c01362{bottom:432.000000pt;}
.y4b_c01362{bottom:432.640000pt;}
.y22_c01362{bottom:433.920000pt;}
.y4c_c01362{bottom:434.560000pt;}
.y21_c01362{bottom:469.760000pt;}
.y1f_c01362{bottom:470.400000pt;}
.y49_c01362{bottom:471.040000pt;}
.y20_c01362{bottom:471.680000pt;}
.y1e_c01362{bottom:472.320000pt;}
.y4a_c01362{bottom:472.960000pt;}
.y1d_c01362{bottom:508.160000pt;}
.y1c_c01362{bottom:509.440000pt;}
.y1b_c01362{bottom:510.720000pt;}
.y48_c01362{bottom:511.360000pt;}
.y1a_c01362{bottom:547.200000pt;}
.y19_c01362{bottom:547.840000pt;}
.y47_c01362{bottom:548.480000pt;}
.y18_c01362{bottom:549.760000pt;}
.y17_c01362{bottom:590.080000pt;}
.y16_c01362{bottom:590.720000pt;}
.y31_c01362{bottom:632.320000pt;}
.y2f_c01362{bottom:633.600000pt;}
.y30_c01362{bottom:634.240000pt;}
.y12_c01362{bottom:634.880000pt;}
.y15_c01362{bottom:635.520000pt;}
.y11_c01362{bottom:636.160000pt;}
.y32_c01362{bottom:636.800000pt;}
.y14_c01362{bottom:637.440000pt;}
.y13_c01362{bottom:638.080000pt;}
.y2e_c01362{bottom:670.720000pt;}
.yf_c01362{bottom:672.640000pt;}
.ye_c01362{bottom:674.560000pt;}
.y10_c01362{bottom:676.480000pt;}
.y2c_c01362{bottom:711.040000pt;}
.yd_c01362{bottom:711.680000pt;}
.y2d_c01362{bottom:712.320000pt;}
.yc_c01362{bottom:712.960000pt;}
.y2a_c01362{bottom:748.800000pt;}
.yb_c01362{bottom:749.440000pt;}
.y2b_c01362{bottom:750.080000pt;}
.y29_c01362{bottom:750.720000pt;}
.ya_c01362{bottom:751.360000pt;}
.y9_c01362{bottom:792.320000pt;}
.y27_c01362{bottom:834.560000pt;}
.y28_c01362{bottom:835.200000pt;}
.y8_c01362{bottom:836.480000pt;}
.y7_c01362{bottom:837.760000pt;}
.y25_c01362{bottom:873.600000pt;}
.y6_c01362{bottom:874.240000pt;}
.y26_c01362{bottom:875.520000pt;}
.y5_c01362{bottom:876.160000pt;}
.y4_c01362{bottom:911.360000pt;}
.y2_c01362{bottom:913.280000pt;}
.y1_c01362{bottom:913.920000pt;}
.y3_c01362{bottom:915.200000pt;}
.y24_c01362{bottom:966.400000pt;}
.hd_c01362{height:16.126250pt;}
.he_c01362{height:29.948750pt;}
.hf_c01362{height:34.556250pt;}
.hc_c01362{height:36.860000pt;}
.h6_c01362{height:39.163750pt;}
.h5_c01362{height:41.467500pt;}
.ha_c01362{height:43.771250pt;}
.h9_c01362{height:46.075000pt;}
.h2_c01362{height:48.378750pt;}
.h4_c01362{height:50.682500pt;}
.h7_c01362{height:52.986250pt;}
.hb_c01362{height:55.290000pt;}
.h10_c01362{height:55.546250pt;}
.h3_c01362{height:59.897500pt;}
.h8_c01362{height:62.201250pt;}
.h1_c01362{height:1022.000000pt;}
.h0_c01362{height:1022.080000pt;}
.w1_c01362{width:697.333333pt;}
.w0_c01362{width:697.600000pt;}
.x0_c01362{left:0.000000pt;}
.x1_c01362{left:50.560000pt;}
.xb_c01362{left:51.840000pt;}
.x49_c01362{left:58.880000pt;}
.x41_c01362{left:76.160000pt;}
.x2b_c01362{left:78.720000pt;}
.x24_c01362{left:86.400000pt;}
.x4a_c01362{left:94.720000pt;}
.xf_c01362{left:96.640000pt;}
.x8_c01362{left:97.920000pt;}
.x25_c01362{left:104.960000pt;}
.xa_c01362{left:106.240000pt;}
.x2_c01362{left:107.520000pt;}
.x42_c01362{left:133.760000pt;}
.x23_c01362{left:144.000000pt;}
.x9_c01362{left:145.920000pt;}
.x4b_c01362{left:161.920000pt;}
.x26_c01362{left:181.760000pt;}
.x11_c01362{left:183.680000pt;}
.x2a_c01362{left:192.000000pt;}
.xc_c01362{left:193.280000pt;}
.x3_c01362{left:194.560000pt;}
.x43_c01362{left:200.960000pt;}
.x3c_c01362{left:202.240000pt;}
.x44_c01362{left:220.160000pt;}
.x27_c01362{left:221.440000pt;}
.x10_c01362{left:222.720000pt;}
.x29_c01362{left:231.040000pt;}
.x3d_c01362{left:239.360000pt;}
.xd_c01362{left:242.560000pt;}
.x4c_c01362{left:249.600000pt;}
.x45_c01362{left:259.200000pt;}
.x28_c01362{left:269.440000pt;}
.x4_c01362{left:270.720000pt;}
.x4d_c01362{left:278.400000pt;}
.xe_c01362{left:280.320000pt;}
.x12_c01362{left:298.880000pt;}
.x3e_c01362{left:307.200000pt;}
.x5_c01362{left:309.760000pt;}
.x2c_c01362{left:318.080000pt;}
.x2d_c01362{left:355.840000pt;}
.x6_c01362{left:358.400000pt;}
.x4e_c01362{left:364.800000pt;}
.x46_c01362{left:391.680000pt;}
.x7_c01362{left:396.160000pt;}
.x2e_c01362{left:403.200000pt;}
.x1d_c01362{left:405.120000pt;}
.x2f_c01362{left:441.600000pt;}
.x1e_c01362{left:452.480000pt;}
.x3f_c01362{left:497.280000pt;}
.x47_c01362{left:499.200000pt;}
.x1f_c01362{left:500.480000pt;}
.x37_c01362{left:518.400000pt;}
.x30_c01362{left:519.680000pt;}
.x48_c01362{left:526.720000pt;}
.x38_c01362{left:535.680000pt;}
.x36_c01362{left:536.960000pt;}
.x20_c01362{left:538.240000pt;}
.x14_c01362{left:540.800000pt;}
.x31_c01362{left:547.200000pt;}
.x32_c01362{left:558.720000pt;}
.x3b_c01362{left:564.480000pt;}
.x33_c01362{left:566.400000pt;}
.x16_c01362{left:568.320000pt;}
.x19_c01362{left:569.600000pt;}
.x34_c01362{left:595.840000pt;}
.x1a_c01362{left:597.760000pt;}
.x17_c01362{left:599.040000pt;}
.x40_c01362{left:602.880000pt;}
.x39_c01362{left:604.160000pt;}
.x21_c01362{left:606.080000pt;}
.x13_c01362{left:620.160000pt;}
.x1b_c01362{left:626.560000pt;}
.x3a_c01362{left:632.320000pt;}
.x35_c01362{left:633.600000pt;}
.x22_c01362{left:634.880000pt;}
.x15_c01362{left:636.160000pt;}
.x18_c01362{left:637.440000pt;}
.x1c_c01362{left:652.800000pt;}
}





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

.ir_c01363:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01363{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01363;src:url('chunks/assets/font_bd5a7d3c3919f3f7f57549b9.woff2')format("woff");}.ff1_c01363{font-family:ff1_c01363;line-height:1.109863;font-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_c01363{transform:matrix(0.197475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197475,0.000000,0.000000,0.250000,0,0);}
.m3a_c01363{transform:matrix(0.214275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214275,0.000000,0.000000,0.250000,0,0);}
.m14_c01363{transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);}
.m37_c01363{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01363{transform:matrix(0.220675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220675,0.000000,0.000000,0.250000,0,0);}
.m4_c01363{transform:matrix(0.220800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220800,0.000000,0.000000,0.250000,0,0);}
.m3b_c01363{transform:matrix(0.226525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226525,0.000000,0.000000,0.250000,0,0);}
.m38_c01363{transform:matrix(0.227125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227125,0.000000,0.000000,0.250000,0,0);}
.m2c_c01363{transform:matrix(0.240150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240150,0.000000,0.000000,0.250000,0,0);}
.mf_c01363{transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);}
.m2d_c01363{transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);}
.m42_c01363{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_c01363{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m7_c01363{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);}
.m20_c01363{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m22_c01363{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);}
.m28_c01363{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m12_c01363{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m16_c01363{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01363{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);}
.m39_c01363{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m40_c01363{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m17_c01363{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01363{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01363{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.ma_c01363{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m0_c01363{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m25_c01363{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m36_c01363{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01363{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m29_c01363{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m9_c01363{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);}
.m47_c01363{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01363{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m13_c01363{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m21_c01363{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m19_c01363{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01363{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m18_c01363{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);}
.m2b_c01363{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);}
.m35_c01363{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);}
.m45_c01363{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m34_c01363{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);}
.m31_c01363{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);}
.m32_c01363{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.md_c01363{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01363{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);}
.m30_c01363{transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);}
.m1_c01363{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01363{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m41_c01363{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);}
.m3f_c01363{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m26_c01363{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01363{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01363{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);}
.mc_c01363{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m44_c01363{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m23_c01363{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.me_c01363{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m46_c01363{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m43_c01363{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m33_c01363{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01363{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);}
.m10_c01363{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m15_c01363{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m48_c01363{transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);}
.m11_c01363{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m27_c01363{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.m8_c01363{transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);}
.m24_c01363{transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);}
.m5_c01363{transform:matrix(1.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.502500,0.000000,0.000000,0.250000,0,0);}
.mb_c01363{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.m2_c01363{transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);}
.v0_c01363{vertical-align:0.000000px;}
.ls0_c01363{letter-spacing:0.000000px;}
.sc__c01363{text-shadow:none;}
.sc0_c01363{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01363{-webkit-text-stroke:0px transparent;}
.sc0_c01363{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01363{word-spacing:0.000000px;}
.fc0_c01363{color:transparent;}
.fs2_c01363{font-size:17.280000px;}
.fs4_c01363{font-size:20.160000px;}
.fse_c01363{font-size:23.040000px;}
.fsf_c01363{font-size:28.800000px;}
.fs14_c01363{font-size:34.560000px;}
.fs13_c01363{font-size:37.440000px;}
.fsd_c01363{font-size:40.320000px;}
.fsc_c01363{font-size:43.200000px;}
.fsb_c01363{font-size:46.080000px;}
.fs0_c01363{font-size:48.960000px;}
.fs1_c01363{font-size:51.840000px;}
.fs7_c01363{font-size:54.720000px;}
.fs3_c01363{font-size:57.600000px;}
.fs8_c01363{font-size:60.480000px;}
.fs6_c01363{font-size:63.360000px;}
.fs9_c01363{font-size:66.240000px;}
.fs5_c01363{font-size:69.120000px;}
.fsa_c01363{font-size:74.880000px;}
.fs11_c01363{font-size:100.800000px;}
.fs12_c01363{font-size:103.680000px;}
.fs10_c01363{font-size:106.560000px;}
.y0_c01363{bottom:0.000000px;}
.y46_c01363{bottom:390.240000px;}
.y48_c01363{bottom:392.400000px;}
.y47_c01363{bottom:393.120000px;}
.y44_c01363{bottom:393.840000px;}
.y45_c01363{bottom:395.280000px;}
.y43_c01363{bottom:519.840000px;}
.y41_c01363{bottom:520.560000px;}
.y3e_c01363{bottom:522.000000px;}
.y42_c01363{bottom:523.440000px;}
.y40_c01363{bottom:524.160000px;}
.y3f_c01363{bottom:524.880000px;}
.y3d_c01363{bottom:525.600000px;}
.y3b_c01363{bottom:619.200000px;}
.y38_c01363{bottom:619.920000px;}
.y3a_c01363{bottom:621.360000px;}
.y3c_c01363{bottom:622.080000px;}
.y37_c01363{bottom:622.800000px;}
.y39_c01363{bottom:623.520000px;}
.y36_c01363{bottom:661.680000px;}
.y34_c01363{bottom:662.400000px;}
.y35_c01363{bottom:664.560000px;}
.y33_c01363{bottom:665.280000px;}
.y30_c01363{bottom:704.160000px;}
.y2f_c01363{bottom:704.880000px;}
.y32_c01363{bottom:706.320000px;}
.y31_c01363{bottom:707.040000px;}
.y2e_c01363{bottom:708.480000px;}
.y2d_c01363{bottom:709.200000px;}
.y2c_c01363{bottom:759.600000px;}
.y28_c01363{bottom:761.040000px;}
.y27_c01363{bottom:762.480000px;}
.y26_c01363{bottom:763.200000px;}
.y2b_c01363{bottom:781.200000px;}
.y29_c01363{bottom:781.920000px;}
.y25_c01363{bottom:782.640000px;}
.y2a_c01363{bottom:804.240000px;}
.y24_c01363{bottom:806.400000px;}
.yd_c01363{bottom:901.440000px;}
.y13_c01363{bottom:921.600000px;}
.y11_c01363{bottom:925.200000px;}
.y12_c01363{bottom:926.640000px;}
.y23_c01363{bottom:931.680000px;}
.y21_c01363{bottom:933.120000px;}
.y20_c01363{bottom:933.840000px;}
.yc_c01363{bottom:934.560000px;}
.y22_c01363{bottom:935.280000px;}
.ya_c01363{bottom:936.000000px;}
.yb_c01363{bottom:938.160000px;}
.y10_c01363{bottom:955.440000px;}
.yf_c01363{bottom:956.880000px;}
.ye_c01363{bottom:958.320000px;}
.y1f_c01363{bottom:962.640000px;}
.y1e_c01363{bottom:964.080000px;}
.y1d_c01363{bottom:966.960000px;}
.y9_c01363{bottom:968.400000px;}
.y7_c01363{bottom:969.120000px;}
.y1c_c01363{bottom:969.840000px;}
.y8_c01363{bottom:970.560000px;}
.y1b_c01363{bottom:995.760000px;}
.y1a_c01363{bottom:996.480000px;}
.y6_c01363{bottom:998.640000px;}
.y18_c01363{bottom:999.360000px;}
.y19_c01363{bottom:1000.080000px;}
.y4_c01363{bottom:1001.520000px;}
.y5_c01363{bottom:1003.680000px;}
.y16_c01363{bottom:1028.880000px;}
.y17_c01363{bottom:1029.600000px;}
.y15_c01363{bottom:1031.040000px;}
.y3_c01363{bottom:1031.760000px;}
.y1_c01363{bottom:1033.200000px;}
.y2_c01363{bottom:1036.800000px;}
.y14_c01363{bottom:1093.680000px;}
.h4_c01363{height:15.550313px;}
.h6_c01363{height:18.142031px;}
.h10_c01363{height:20.733750px;}
.h11_c01363{height:25.917187px;}
.h16_c01363{height:31.100625px;}
.h15_c01363{height:33.692344px;}
.hf_c01363{height:36.284062px;}
.he_c01363{height:38.875781px;}
.hd_c01363{height:41.467500px;}
.h2_c01363{height:44.059219px;}
.h3_c01363{height:46.650937px;}
.h9_c01363{height:49.242656px;}
.h5_c01363{height:51.834375px;}
.ha_c01363{height:54.426094px;}
.h8_c01363{height:57.017812px;}
.hb_c01363{height:59.609531px;}
.h7_c01363{height:62.201250px;}
.hc_c01363{height:67.384687px;}
.h13_c01363{height:90.710156px;}
.h14_c01363{height:93.301875px;}
.h12_c01363{height:95.893594px;}
.h1_c01363{height:1149.750000px;}
.h0_c01363{height:1149.840000px;}
.w1_c01363{width:784.500000px;}
.w0_c01363{width:784.800000px;}
.x0_c01363{left:0.000000px;}
.x21_c01363{left:56.880000px;}
.x1_c01363{left:58.320000px;}
.x2_c01363{left:78.480000px;}
.x5_c01363{left:88.560000px;}
.x3_c01363{left:110.160000px;}
.x20_c01363{left:120.960000px;}
.x6_c01363{left:122.400000px;}
.x1f_c01363{left:131.760000px;}
.x4_c01363{left:133.200000px;}
.x36_c01363{left:140.400000px;}
.x3f_c01363{left:141.840000px;}
.x31_c01363{left:162.000000px;}
.x26_c01363{left:163.440000px;}
.x37_c01363{left:172.800000px;}
.x23_c01363{left:176.400000px;}
.x27_c01363{left:184.320000px;}
.x7_c01363{left:185.760000px;}
.x22_c01363{left:196.560000px;}
.x8_c01363{left:206.640000px;}
.x28_c01363{left:218.160000px;}
.x32_c01363{left:228.240000px;}
.x25_c01363{left:239.760000px;}
.x40_c01363{left:249.120000px;}
.xa_c01363{left:250.560000px;}
.x24_c01363{left:261.360000px;}
.x38_c01363{left:270.000000px;}
.x9_c01363{left:272.880000px;}
.x41_c01363{left:280.800000px;}
.x29_c01363{left:282.960000px;}
.x33_c01363{left:293.040000px;}
.x2f_c01363{left:303.840000px;}
.x39_c01363{left:325.440000px;}
.x34_c01363{left:326.880000px;}
.xc_c01363{left:339.120000px;}
.x3a_c01363{left:357.120000px;}
.x30_c01363{left:368.640000px;}
.xd_c01363{left:370.800000px;}
.x1b_c01363{left:380.160000px;}
.x15_c01363{left:381.600000px;}
.x42_c01363{left:399.600000px;}
.x35_c01363{left:401.040000px;}
.x19_c01363{left:402.480000px;}
.x1c_c01363{left:414.720000px;}
.x16_c01363{left:424.080000px;}
.xe_c01363{left:425.520000px;}
.x43_c01363{left:434.160000px;}
.x2a_c01363{left:466.560000px;}
.xf_c01363{left:479.520000px;}
.x3b_c01363{left:486.720000px;}
.x17_c01363{left:488.160000px;}
.x44_c01363{left:496.800000px;}
.x1a_c01363{left:509.760000px;}
.x3c_c01363{left:518.400000px;}
.x10_c01363{left:521.280000px;}
.x45_c01363{left:539.280000px;}
.x1d_c01363{left:542.160000px;}
.x3d_c01363{left:583.200000px;}
.x1e_c01363{left:596.160000px;}
.x11_c01363{left:597.600000px;}
.x46_c01363{left:604.080000px;}
.x2b_c01363{left:606.240000px;}
.x2c_c01363{left:616.320000px;}
.x18_c01363{left:618.480000px;}
.x3e_c01363{left:625.680000px;}
.x2d_c01363{left:637.200000px;}
.x47_c01363{left:646.560000px;}
.x12_c01363{left:651.600000px;}
.x2e_c01363{left:669.600000px;}
.xb_c01363{left:684.000000px;}
.x13_c01363{left:694.080000px;}
.x48_c01363{left:702.000000px;}
.x14_c01363{left:727.200000px;}
@media print{
.v0_c01363{vertical-align:0.000000pt;}
.ls0_c01363{letter-spacing:0.000000pt;}
.ws0_c01363{word-spacing:0.000000pt;}
.fs2_c01363{font-size:15.360000pt;}
.fs4_c01363{font-size:17.920000pt;}
.fse_c01363{font-size:20.480000pt;}
.fsf_c01363{font-size:25.600000pt;}
.fs14_c01363{font-size:30.720000pt;}
.fs13_c01363{font-size:33.280000pt;}
.fsd_c01363{font-size:35.840000pt;}
.fsc_c01363{font-size:38.400000pt;}
.fsb_c01363{font-size:40.960000pt;}
.fs0_c01363{font-size:43.520000pt;}
.fs1_c01363{font-size:46.080000pt;}
.fs7_c01363{font-size:48.640000pt;}
.fs3_c01363{font-size:51.200000pt;}
.fs8_c01363{font-size:53.760000pt;}
.fs6_c01363{font-size:56.320000pt;}
.fs9_c01363{font-size:58.880000pt;}
.fs5_c01363{font-size:61.440000pt;}
.fsa_c01363{font-size:66.560000pt;}
.fs11_c01363{font-size:89.600000pt;}
.fs12_c01363{font-size:92.160000pt;}
.fs10_c01363{font-size:94.720000pt;}
.y0_c01363{bottom:0.000000pt;}
.y46_c01363{bottom:346.880000pt;}
.y48_c01363{bottom:348.800000pt;}
.y47_c01363{bottom:349.440000pt;}
.y44_c01363{bottom:350.080000pt;}
.y45_c01363{bottom:351.360000pt;}
.y43_c01363{bottom:462.080000pt;}
.y41_c01363{bottom:462.720000pt;}
.y3e_c01363{bottom:464.000000pt;}
.y42_c01363{bottom:465.280000pt;}
.y40_c01363{bottom:465.920000pt;}
.y3f_c01363{bottom:466.560000pt;}
.y3d_c01363{bottom:467.200000pt;}
.y3b_c01363{bottom:550.400000pt;}
.y38_c01363{bottom:551.040000pt;}
.y3a_c01363{bottom:552.320000pt;}
.y3c_c01363{bottom:552.960000pt;}
.y37_c01363{bottom:553.600000pt;}
.y39_c01363{bottom:554.240000pt;}
.y36_c01363{bottom:588.160000pt;}
.y34_c01363{bottom:588.800000pt;}
.y35_c01363{bottom:590.720000pt;}
.y33_c01363{bottom:591.360000pt;}
.y30_c01363{bottom:625.920000pt;}
.y2f_c01363{bottom:626.560000pt;}
.y32_c01363{bottom:627.840000pt;}
.y31_c01363{bottom:628.480000pt;}
.y2e_c01363{bottom:629.760000pt;}
.y2d_c01363{bottom:630.400000pt;}
.y2c_c01363{bottom:675.200000pt;}
.y28_c01363{bottom:676.480000pt;}
.y27_c01363{bottom:677.760000pt;}
.y26_c01363{bottom:678.400000pt;}
.y2b_c01363{bottom:694.400000pt;}
.y29_c01363{bottom:695.040000pt;}
.y25_c01363{bottom:695.680000pt;}
.y2a_c01363{bottom:714.880000pt;}
.y24_c01363{bottom:716.800000pt;}
.yd_c01363{bottom:801.280000pt;}
.y13_c01363{bottom:819.200000pt;}
.y11_c01363{bottom:822.400000pt;}
.y12_c01363{bottom:823.680000pt;}
.y23_c01363{bottom:828.160000pt;}
.y21_c01363{bottom:829.440000pt;}
.y20_c01363{bottom:830.080000pt;}
.yc_c01363{bottom:830.720000pt;}
.y22_c01363{bottom:831.360000pt;}
.ya_c01363{bottom:832.000000pt;}
.yb_c01363{bottom:833.920000pt;}
.y10_c01363{bottom:849.280000pt;}
.yf_c01363{bottom:850.560000pt;}
.ye_c01363{bottom:851.840000pt;}
.y1f_c01363{bottom:855.680000pt;}
.y1e_c01363{bottom:856.960000pt;}
.y1d_c01363{bottom:859.520000pt;}
.y9_c01363{bottom:860.800000pt;}
.y7_c01363{bottom:861.440000pt;}
.y1c_c01363{bottom:862.080000pt;}
.y8_c01363{bottom:862.720000pt;}
.y1b_c01363{bottom:885.120000pt;}
.y1a_c01363{bottom:885.760000pt;}
.y6_c01363{bottom:887.680000pt;}
.y18_c01363{bottom:888.320000pt;}
.y19_c01363{bottom:888.960000pt;}
.y4_c01363{bottom:890.240000pt;}
.y5_c01363{bottom:892.160000pt;}
.y16_c01363{bottom:914.560000pt;}
.y17_c01363{bottom:915.200000pt;}
.y15_c01363{bottom:916.480000pt;}
.y3_c01363{bottom:917.120000pt;}
.y1_c01363{bottom:918.400000pt;}
.y2_c01363{bottom:921.600000pt;}
.y14_c01363{bottom:972.160000pt;}
.h4_c01363{height:13.822500pt;}
.h6_c01363{height:16.126250pt;}
.h10_c01363{height:18.430000pt;}
.h11_c01363{height:23.037500pt;}
.h16_c01363{height:27.645000pt;}
.h15_c01363{height:29.948750pt;}
.hf_c01363{height:32.252500pt;}
.he_c01363{height:34.556250pt;}
.hd_c01363{height:36.860000pt;}
.h2_c01363{height:39.163750pt;}
.h3_c01363{height:41.467500pt;}
.h9_c01363{height:43.771250pt;}
.h5_c01363{height:46.075000pt;}
.ha_c01363{height:48.378750pt;}
.h8_c01363{height:50.682500pt;}
.hb_c01363{height:52.986250pt;}
.h7_c01363{height:55.290000pt;}
.hc_c01363{height:59.897500pt;}
.h13_c01363{height:80.631250pt;}
.h14_c01363{height:82.935000pt;}
.h12_c01363{height:85.238750pt;}
.h1_c01363{height:1022.000000pt;}
.h0_c01363{height:1022.080000pt;}
.w1_c01363{width:697.333333pt;}
.w0_c01363{width:697.600000pt;}
.x0_c01363{left:0.000000pt;}
.x21_c01363{left:50.560000pt;}
.x1_c01363{left:51.840000pt;}
.x2_c01363{left:69.760000pt;}
.x5_c01363{left:78.720000pt;}
.x3_c01363{left:97.920000pt;}
.x20_c01363{left:107.520000pt;}
.x6_c01363{left:108.800000pt;}
.x1f_c01363{left:117.120000pt;}
.x4_c01363{left:118.400000pt;}
.x36_c01363{left:124.800000pt;}
.x3f_c01363{left:126.080000pt;}
.x31_c01363{left:144.000000pt;}
.x26_c01363{left:145.280000pt;}
.x37_c01363{left:153.600000pt;}
.x23_c01363{left:156.800000pt;}
.x27_c01363{left:163.840000pt;}
.x7_c01363{left:165.120000pt;}
.x22_c01363{left:174.720000pt;}
.x8_c01363{left:183.680000pt;}
.x28_c01363{left:193.920000pt;}
.x32_c01363{left:202.880000pt;}
.x25_c01363{left:213.120000pt;}
.x40_c01363{left:221.440000pt;}
.xa_c01363{left:222.720000pt;}
.x24_c01363{left:232.320000pt;}
.x38_c01363{left:240.000000pt;}
.x9_c01363{left:242.560000pt;}
.x41_c01363{left:249.600000pt;}
.x29_c01363{left:251.520000pt;}
.x33_c01363{left:260.480000pt;}
.x2f_c01363{left:270.080000pt;}
.x39_c01363{left:289.280000pt;}
.x34_c01363{left:290.560000pt;}
.xc_c01363{left:301.440000pt;}
.x3a_c01363{left:317.440000pt;}
.x30_c01363{left:327.680000pt;}
.xd_c01363{left:329.600000pt;}
.x1b_c01363{left:337.920000pt;}
.x15_c01363{left:339.200000pt;}
.x42_c01363{left:355.200000pt;}
.x35_c01363{left:356.480000pt;}
.x19_c01363{left:357.760000pt;}
.x1c_c01363{left:368.640000pt;}
.x16_c01363{left:376.960000pt;}
.xe_c01363{left:378.240000pt;}
.x43_c01363{left:385.920000pt;}
.x2a_c01363{left:414.720000pt;}
.xf_c01363{left:426.240000pt;}
.x3b_c01363{left:432.640000pt;}
.x17_c01363{left:433.920000pt;}
.x44_c01363{left:441.600000pt;}
.x1a_c01363{left:453.120000pt;}
.x3c_c01363{left:460.800000pt;}
.x10_c01363{left:463.360000pt;}
.x45_c01363{left:479.360000pt;}
.x1d_c01363{left:481.920000pt;}
.x3d_c01363{left:518.400000pt;}
.x1e_c01363{left:529.920000pt;}
.x11_c01363{left:531.200000pt;}
.x46_c01363{left:536.960000pt;}
.x2b_c01363{left:538.880000pt;}
.x2c_c01363{left:547.840000pt;}
.x18_c01363{left:549.760000pt;}
.x3e_c01363{left:556.160000pt;}
.x2d_c01363{left:566.400000pt;}
.x47_c01363{left:574.720000pt;}
.x12_c01363{left:579.200000pt;}
.x2e_c01363{left:595.200000pt;}
.xb_c01363{left:608.000000pt;}
.x13_c01363{left:616.960000pt;}
.x48_c01363{left:624.000000pt;}
.x14_c01363{left:646.400000pt;}
}





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

.ir_c01364:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01364{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01364;src:url('chunks/assets/font_dd84ceb8e4ed73a9d30e868d.woff2')format("woff");}.ff1_c01364{font-family:ff1_c01364;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m42_c01364{transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);}
.m4d_c01364{transform:matrix(0.216100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216100,0.000000,0.000000,0.250000,0,0);}
.m30_c01364{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);}
.m2b_c01364{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);}
.m54_c01364{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m43_c01364{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m10_c01364{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01364{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mb_c01364{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3_c01364{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.md_c01364{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m21_c01364{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m31_c01364{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);}
.m2d_c01364{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);}
.m4b_c01364{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m27_c01364{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m29_c01364{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m7_c01364{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m0_c01364{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);}
.m41_c01364{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m24_c01364{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01364{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);}
.m8_c01364{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);}
.m2e_c01364{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m4a_c01364{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m50_c01364{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);}
.m4f_c01364{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);}
.m26_c01364{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m33_c01364{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);}
.m23_c01364{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m13_c01364{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.me_c01364{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);}
.m34_c01364{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);}
.m35_c01364{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m9_c01364{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01364{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);}
.m18_c01364{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m40_c01364{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);}
.m22_c01364{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m15_c01364{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);}
.m28_c01364{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01364{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m52_c01364{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.mf_c01364{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01364{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);}
.m51_c01364{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m36_c01364{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m20_c01364{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);}
.m4_c01364{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m2_c01364{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01364{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m49_c01364{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);}
.m37_c01364{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01364{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m39_c01364{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m1_c01364{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);}
.m1b_c01364{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m14_c01364{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m32_c01364{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m44_c01364{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01364{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);}
.m55_c01364{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m25_c01364{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m19_c01364{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m11_c01364{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);}
.m12_c01364{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01364{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.mc_c01364{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_c01364{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01364{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m48_c01364{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);}
.m2a_c01364{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m6_c01364{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);}
.m1f_c01364{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m53_c01364{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);}
.m3a_c01364{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01364{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m45_c01364{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m46_c01364{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m17_c01364{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);}
.m38_c01364{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);}
.m2c_c01364{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m5_c01364{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.ma_c01364{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m47_c01364{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01364{transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);}
.v1_c01364{vertical-align:-11.520000px;}
.v0_c01364{vertical-align:0.000000px;}
.v2_c01364{vertical-align:2.880000px;}
.ls0_c01364{letter-spacing:0.000000px;}
.sc__c01364{text-shadow:none;}
.sc0_c01364{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01364{-webkit-text-stroke:0px transparent;}
.sc0_c01364{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01364{word-spacing:0.000000px;}
.ws1_c01364{word-spacing:1.673280px;}
.ws0_c01364{word-spacing:2.647200px;}
.fc0_c01364{color:transparent;}
.fs5_c01364{font-size:34.560000px;}
.fs6_c01364{font-size:37.440000px;}
.fs1_c01364{font-size:40.320000px;}
.fsa_c01364{font-size:46.080000px;}
.fs4_c01364{font-size:48.960000px;}
.fs2_c01364{font-size:51.840000px;}
.fs8_c01364{font-size:54.720000px;}
.fsc_c01364{font-size:57.600000px;}
.fs7_c01364{font-size:60.480000px;}
.fs9_c01364{font-size:63.360000px;}
.fse_c01364{font-size:66.240000px;}
.fs3_c01364{font-size:69.120000px;}
.fsd_c01364{font-size:72.000000px;}
.fsb_c01364{font-size:74.880000px;}
.fs0_c01364{font-size:77.760000px;}
.y0_c01364{bottom:0.000000px;}
.y66_c01364{bottom:87.840000px;}
.y68_c01364{bottom:89.280000px;}
.y65_c01364{bottom:90.000000px;}
.y64_c01364{bottom:91.440000px;}
.y63_c01364{bottom:92.160000px;}
.y67_c01364{bottom:92.880000px;}
.y5e_c01364{bottom:131.760000px;}
.y60_c01364{bottom:132.480000px;}
.y61_c01364{bottom:133.200000px;}
.y5d_c01364{bottom:133.920000px;}
.y5f_c01364{bottom:134.640000px;}
.y62_c01364{bottom:136.080000px;}
.y5c_c01364{bottom:187.200000px;}
.y5b_c01364{bottom:187.920000px;}
.y5a_c01364{bottom:188.640000px;}
.y57_c01364{bottom:228.960000px;}
.y54_c01364{bottom:230.400000px;}
.y55_c01364{bottom:231.120000px;}
.y56_c01364{bottom:231.840000px;}
.y58_c01364{bottom:232.560000px;}
.y59_c01364{bottom:233.280000px;}
.y53_c01364{bottom:234.000000px;}
.y50_c01364{bottom:272.160000px;}
.y52_c01364{bottom:272.880000px;}
.y4f_c01364{bottom:274.320000px;}
.y51_c01364{bottom:275.040000px;}
.y4e_c01364{bottom:323.280000px;}
.y4d_c01364{bottom:328.320000px;}
.y4c_c01364{bottom:329.040000px;}
.y48_c01364{bottom:368.640000px;}
.y4a_c01364{bottom:369.360000px;}
.y47_c01364{bottom:370.800000px;}
.y49_c01364{bottom:371.520000px;}
.y4b_c01364{bottom:372.240000px;}
.y46_c01364{bottom:411.120000px;}
.y45_c01364{bottom:414.000000px;}
.y44_c01364{bottom:414.720000px;}
.y43_c01364{bottom:455.040000px;}
.y42_c01364{bottom:457.200000px;}
.y41_c01364{bottom:457.920000px;}
.y40_c01364{bottom:497.520000px;}
.y3d_c01364{bottom:498.240000px;}
.y3c_c01364{bottom:499.680000px;}
.y3e_c01364{bottom:500.400000px;}
.y3f_c01364{bottom:501.120000px;}
.y3a_c01364{bottom:540.000000px;}
.y36_c01364{bottom:540.720000px;}
.y3b_c01364{bottom:541.440000px;}
.y37_c01364{bottom:542.160000px;}
.y38_c01364{bottom:542.880000px;}
.y39_c01364{bottom:543.600000px;}
.y35_c01364{bottom:544.320000px;}
.y33_c01364{bottom:583.200000px;}
.y34_c01364{bottom:586.080000px;}
.y32_c01364{bottom:586.800000px;}
.y2f_c01364{bottom:626.400000px;}
.y31_c01364{bottom:628.560000px;}
.y30_c01364{bottom:629.280000px;}
.y2e_c01364{bottom:630.000000px;}
.y2b_c01364{bottom:669.600000px;}
.y2d_c01364{bottom:671.760000px;}
.y2c_c01364{bottom:672.480000px;}
.y2a_c01364{bottom:712.080000px;}
.y28_c01364{bottom:712.800000px;}
.y29_c01364{bottom:714.960000px;}
.y27_c01364{bottom:715.680000px;}
.y25_c01364{bottom:756.000000px;}
.y22_c01364{bottom:756.720000px;}
.y26_c01364{bottom:758.160000px;}
.y21_c01364{bottom:758.880000px;}
.y23_c01364{bottom:759.600000px;}
.y24_c01364{bottom:760.320000px;}
.y1f_c01364{bottom:797.760000px;}
.y1e_c01364{bottom:798.480000px;}
.y1b_c01364{bottom:799.200000px;}
.y1d_c01364{bottom:799.920000px;}
.y20_c01364{bottom:800.640000px;}
.y1a_c01364{bottom:801.360000px;}
.y1c_c01364{bottom:802.080000px;}
.y13_c01364{bottom:840.960000px;}
.y14_c01364{bottom:841.680000px;}
.y17_c01364{bottom:842.400000px;}
.y16_c01364{bottom:843.120000px;}
.y19_c01364{bottom:843.840000px;}
.y18_c01364{bottom:844.560000px;}
.y15_c01364{bottom:845.280000px;}
.yf_c01364{bottom:884.880000px;}
.y11_c01364{bottom:885.600000px;}
.y12_c01364{bottom:887.040000px;}
.y10_c01364{bottom:887.760000px;}
.yd_c01364{bottom:927.360000px;}
.ye_c01364{bottom:929.520000px;}
.yc_c01364{bottom:930.240000px;}
.yb_c01364{bottom:930.960000px;}
.y7_c01364{bottom:980.640000px;}
.y9_c01364{bottom:982.080000px;}
.ya_c01364{bottom:983.520000px;}
.y8_c01364{bottom:984.960000px;}
.y6_c01364{bottom:1022.400000px;}
.y4_c01364{bottom:1024.560000px;}
.y2_c01364{bottom:1026.000000px;}
.y3_c01364{bottom:1026.720000px;}
.y5_c01364{bottom:1027.440000px;}
.y1_c01364{bottom:1077.120000px;}
.h7_c01364{height:31.100625px;}
.h8_c01364{height:33.692344px;}
.h3_c01364{height:36.284062px;}
.hc_c01364{height:41.467500px;}
.h6_c01364{height:44.059219px;}
.h4_c01364{height:46.650937px;}
.ha_c01364{height:49.242656px;}
.h11_c01364{height:49.530937px;}
.he_c01364{height:51.834375px;}
.h9_c01364{height:54.426094px;}
.hb_c01364{height:57.017812px;}
.h10_c01364{height:59.609531px;}
.h5_c01364{height:62.201250px;}
.hf_c01364{height:64.792969px;}
.hd_c01364{height:67.384687px;}
.h2_c01364{height:69.976406px;}
.h1_c01364{height:1146.750000px;}
.h0_c01364{height:1146.960000px;}
.w0_c01364{width:764.640000px;}
.w1_c01364{width:765.000000px;}
.x0_c01364{left:0.000000px;}
.x2_c01364{left:41.040000px;}
.x25_c01364{left:42.480000px;}
.x58_c01364{left:43.920000px;}
.x1d_c01364{left:61.200000px;}
.x49_c01364{left:62.640000px;}
.x2c_c01364{left:72.000000px;}
.x42_c01364{left:73.440000px;}
.x26_c01364{left:82.080000px;}
.x3_c01364{left:83.520000px;}
.x1e_c01364{left:103.680000px;}
.x38_c01364{left:115.200000px;}
.x17_c01364{left:125.280000px;}
.x27_c01364{left:126.720000px;}
.x4a_c01364{left:136.080000px;}
.x10_c01364{left:146.880000px;}
.x3d_c01364{left:157.680000px;}
.x4_c01364{left:159.120000px;}
.x28_c01364{left:168.480000px;}
.xd_c01364{left:169.920000px;}
.x31_c01364{left:172.800000px;}
.x43_c01364{left:179.280000px;}
.x2d_c01364{left:180.720000px;}
.x11_c01364{left:192.240000px;}
.x5a_c01364{left:200.880000px;}
.xe_c01364{left:202.320000px;}
.x55_c01364{left:211.680000px;}
.x1f_c01364{left:223.200000px;}
.x44_c01364{left:224.640000px;}
.x2e_c01364{left:235.440000px;}
.x45_c01364{left:245.520000px;}
.x56_c01364{left:254.880000px;}
.x29_c01364{left:256.320000px;}
.x20_c01364{left:267.120000px;}
.x32_c01364{left:268.560000px;}
.x5_c01364{left:277.920000px;}
.x5b_c01364{left:288.000000px;}
.xf_c01364{left:289.440000px;}
.x12_c01364{left:298.800000px;}
.x6_c01364{left:300.240000px;}
.x2f_c01364{left:301.680000px;}
.x2a_c01364{left:311.040000px;}
.x18_c01364{left:321.120000px;}
.x7_c01364{left:331.200000px;}
.x33_c01364{left:332.640000px;}
.x3f_c01364{left:341.280000px;}
.x2b_c01364{left:342.720000px;}
.x46_c01364{left:352.800000px;}
.x19_c01364{left:354.240000px;}
.x59_c01364{left:362.880000px;}
.x8_c01364{left:374.400000px;}
.x57_c01364{left:385.200000px;}
.x1a_c01364{left:386.640000px;}
.x21_c01364{left:397.440000px;}
.x4b_c01364{left:406.080000px;}
.x5c_c01364{left:417.600000px;}
.x13_c01364{left:419.040000px;}
.x47_c01364{left:428.400000px;}
.x39_c01364{left:439.200000px;}
.x9_c01364{left:440.640000px;}
.x4c_c01364{left:449.280000px;}
.x52_c01364{left:460.800000px;}
.x34_c01364{left:470.880000px;}
.x3a_c01364{left:472.320000px;}
.x4f_c01364{left:482.400000px;}
.x1b_c01364{left:483.840000px;}
.x4d_c01364{left:492.480000px;}
.x30_c01364{left:494.640000px;}
.x5d_c01364{left:503.280000px;}
.x14_c01364{left:505.440000px;}
.x1c_c01364{left:514.800000px;}
.x3e_c01364{left:525.600000px;}
.x22_c01364{left:527.040000px;}
.x40_c01364{left:535.680000px;}
.x35_c01364{left:537.120000px;}
.x3b_c01364{left:557.280000px;}
.x15_c01364{left:559.440000px;}
.x36_c01364{left:568.080000px;}
.xa_c01364{left:580.320000px;}
.x50_c01364{left:588.960000px;}
.x48_c01364{left:591.120000px;}
.x23_c01364{left:601.920000px;}
.x53_c01364{left:609.840000px;}
.xb_c01364{left:612.720000px;}
.x16_c01364{left:622.080000px;}
.x51_c01364{left:632.160000px;}
.x41_c01364{left:633.600000px;}
.x24_c01364{left:643.680000px;}
.x4e_c01364{left:653.760000px;}
.xc_c01364{left:655.200000px;}
.x54_c01364{left:664.560000px;}
.x37_c01364{left:666.000000px;}
.x1_c01364{left:669.600000px;}
.x3c_c01364{left:675.360000px;}
@media print{
.v1_c01364{vertical-align:-10.240000pt;}
.v0_c01364{vertical-align:0.000000pt;}
.v2_c01364{vertical-align:2.560000pt;}
.ls0_c01364{letter-spacing:0.000000pt;}
.ws2_c01364{word-spacing:0.000000pt;}
.ws1_c01364{word-spacing:1.487360pt;}
.ws0_c01364{word-spacing:2.353067pt;}
.fs5_c01364{font-size:30.720000pt;}
.fs6_c01364{font-size:33.280000pt;}
.fs1_c01364{font-size:35.840000pt;}
.fsa_c01364{font-size:40.960000pt;}
.fs4_c01364{font-size:43.520000pt;}
.fs2_c01364{font-size:46.080000pt;}
.fs8_c01364{font-size:48.640000pt;}
.fsc_c01364{font-size:51.200000pt;}
.fs7_c01364{font-size:53.760000pt;}
.fs9_c01364{font-size:56.320000pt;}
.fse_c01364{font-size:58.880000pt;}
.fs3_c01364{font-size:61.440000pt;}
.fsd_c01364{font-size:64.000000pt;}
.fsb_c01364{font-size:66.560000pt;}
.fs0_c01364{font-size:69.120000pt;}
.y0_c01364{bottom:0.000000pt;}
.y66_c01364{bottom:78.080000pt;}
.y68_c01364{bottom:79.360000pt;}
.y65_c01364{bottom:80.000000pt;}
.y64_c01364{bottom:81.280000pt;}
.y63_c01364{bottom:81.920000pt;}
.y67_c01364{bottom:82.560000pt;}
.y5e_c01364{bottom:117.120000pt;}
.y60_c01364{bottom:117.760000pt;}
.y61_c01364{bottom:118.400000pt;}
.y5d_c01364{bottom:119.040000pt;}
.y5f_c01364{bottom:119.680000pt;}
.y62_c01364{bottom:120.960000pt;}
.y5c_c01364{bottom:166.400000pt;}
.y5b_c01364{bottom:167.040000pt;}
.y5a_c01364{bottom:167.680000pt;}
.y57_c01364{bottom:203.520000pt;}
.y54_c01364{bottom:204.800000pt;}
.y55_c01364{bottom:205.440000pt;}
.y56_c01364{bottom:206.080000pt;}
.y58_c01364{bottom:206.720000pt;}
.y59_c01364{bottom:207.360000pt;}
.y53_c01364{bottom:208.000000pt;}
.y50_c01364{bottom:241.920000pt;}
.y52_c01364{bottom:242.560000pt;}
.y4f_c01364{bottom:243.840000pt;}
.y51_c01364{bottom:244.480000pt;}
.y4e_c01364{bottom:287.360000pt;}
.y4d_c01364{bottom:291.840000pt;}
.y4c_c01364{bottom:292.480000pt;}
.y48_c01364{bottom:327.680000pt;}
.y4a_c01364{bottom:328.320000pt;}
.y47_c01364{bottom:329.600000pt;}
.y49_c01364{bottom:330.240000pt;}
.y4b_c01364{bottom:330.880000pt;}
.y46_c01364{bottom:365.440000pt;}
.y45_c01364{bottom:368.000000pt;}
.y44_c01364{bottom:368.640000pt;}
.y43_c01364{bottom:404.480000pt;}
.y42_c01364{bottom:406.400000pt;}
.y41_c01364{bottom:407.040000pt;}
.y40_c01364{bottom:442.240000pt;}
.y3d_c01364{bottom:442.880000pt;}
.y3c_c01364{bottom:444.160000pt;}
.y3e_c01364{bottom:444.800000pt;}
.y3f_c01364{bottom:445.440000pt;}
.y3a_c01364{bottom:480.000000pt;}
.y36_c01364{bottom:480.640000pt;}
.y3b_c01364{bottom:481.280000pt;}
.y37_c01364{bottom:481.920000pt;}
.y38_c01364{bottom:482.560000pt;}
.y39_c01364{bottom:483.200000pt;}
.y35_c01364{bottom:483.840000pt;}
.y33_c01364{bottom:518.400000pt;}
.y34_c01364{bottom:520.960000pt;}
.y32_c01364{bottom:521.600000pt;}
.y2f_c01364{bottom:556.800000pt;}
.y31_c01364{bottom:558.720000pt;}
.y30_c01364{bottom:559.360000pt;}
.y2e_c01364{bottom:560.000000pt;}
.y2b_c01364{bottom:595.200000pt;}
.y2d_c01364{bottom:597.120000pt;}
.y2c_c01364{bottom:597.760000pt;}
.y2a_c01364{bottom:632.960000pt;}
.y28_c01364{bottom:633.600000pt;}
.y29_c01364{bottom:635.520000pt;}
.y27_c01364{bottom:636.160000pt;}
.y25_c01364{bottom:672.000000pt;}
.y22_c01364{bottom:672.640000pt;}
.y26_c01364{bottom:673.920000pt;}
.y21_c01364{bottom:674.560000pt;}
.y23_c01364{bottom:675.200000pt;}
.y24_c01364{bottom:675.840000pt;}
.y1f_c01364{bottom:709.120000pt;}
.y1e_c01364{bottom:709.760000pt;}
.y1b_c01364{bottom:710.400000pt;}
.y1d_c01364{bottom:711.040000pt;}
.y20_c01364{bottom:711.680000pt;}
.y1a_c01364{bottom:712.320000pt;}
.y1c_c01364{bottom:712.960000pt;}
.y13_c01364{bottom:747.520000pt;}
.y14_c01364{bottom:748.160000pt;}
.y17_c01364{bottom:748.800000pt;}
.y16_c01364{bottom:749.440000pt;}
.y19_c01364{bottom:750.080000pt;}
.y18_c01364{bottom:750.720000pt;}
.y15_c01364{bottom:751.360000pt;}
.yf_c01364{bottom:786.560000pt;}
.y11_c01364{bottom:787.200000pt;}
.y12_c01364{bottom:788.480000pt;}
.y10_c01364{bottom:789.120000pt;}
.yd_c01364{bottom:824.320000pt;}
.ye_c01364{bottom:826.240000pt;}
.yc_c01364{bottom:826.880000pt;}
.yb_c01364{bottom:827.520000pt;}
.y7_c01364{bottom:871.680000pt;}
.y9_c01364{bottom:872.960000pt;}
.ya_c01364{bottom:874.240000pt;}
.y8_c01364{bottom:875.520000pt;}
.y6_c01364{bottom:908.800000pt;}
.y4_c01364{bottom:910.720000pt;}
.y2_c01364{bottom:912.000000pt;}
.y3_c01364{bottom:912.640000pt;}
.y5_c01364{bottom:913.280000pt;}
.y1_c01364{bottom:957.440000pt;}
.h7_c01364{height:27.645000pt;}
.h8_c01364{height:29.948750pt;}
.h3_c01364{height:32.252500pt;}
.hc_c01364{height:36.860000pt;}
.h6_c01364{height:39.163750pt;}
.h4_c01364{height:41.467500pt;}
.ha_c01364{height:43.771250pt;}
.h11_c01364{height:44.027500pt;}
.he_c01364{height:46.075000pt;}
.h9_c01364{height:48.378750pt;}
.hb_c01364{height:50.682500pt;}
.h10_c01364{height:52.986250pt;}
.h5_c01364{height:55.290000pt;}
.hf_c01364{height:57.593750pt;}
.hd_c01364{height:59.897500pt;}
.h2_c01364{height:62.201250pt;}
.h1_c01364{height:1019.333333pt;}
.h0_c01364{height:1019.520000pt;}
.w0_c01364{width:679.680000pt;}
.w1_c01364{width:680.000000pt;}
.x0_c01364{left:0.000000pt;}
.x2_c01364{left:36.480000pt;}
.x25_c01364{left:37.760000pt;}
.x58_c01364{left:39.040000pt;}
.x1d_c01364{left:54.400000pt;}
.x49_c01364{left:55.680000pt;}
.x2c_c01364{left:64.000000pt;}
.x42_c01364{left:65.280000pt;}
.x26_c01364{left:72.960000pt;}
.x3_c01364{left:74.240000pt;}
.x1e_c01364{left:92.160000pt;}
.x38_c01364{left:102.400000pt;}
.x17_c01364{left:111.360000pt;}
.x27_c01364{left:112.640000pt;}
.x4a_c01364{left:120.960000pt;}
.x10_c01364{left:130.560000pt;}
.x3d_c01364{left:140.160000pt;}
.x4_c01364{left:141.440000pt;}
.x28_c01364{left:149.760000pt;}
.xd_c01364{left:151.040000pt;}
.x31_c01364{left:153.600000pt;}
.x43_c01364{left:159.360000pt;}
.x2d_c01364{left:160.640000pt;}
.x11_c01364{left:170.880000pt;}
.x5a_c01364{left:178.560000pt;}
.xe_c01364{left:179.840000pt;}
.x55_c01364{left:188.160000pt;}
.x1f_c01364{left:198.400000pt;}
.x44_c01364{left:199.680000pt;}
.x2e_c01364{left:209.280000pt;}
.x45_c01364{left:218.240000pt;}
.x56_c01364{left:226.560000pt;}
.x29_c01364{left:227.840000pt;}
.x20_c01364{left:237.440000pt;}
.x32_c01364{left:238.720000pt;}
.x5_c01364{left:247.040000pt;}
.x5b_c01364{left:256.000000pt;}
.xf_c01364{left:257.280000pt;}
.x12_c01364{left:265.600000pt;}
.x6_c01364{left:266.880000pt;}
.x2f_c01364{left:268.160000pt;}
.x2a_c01364{left:276.480000pt;}
.x18_c01364{left:285.440000pt;}
.x7_c01364{left:294.400000pt;}
.x33_c01364{left:295.680000pt;}
.x3f_c01364{left:303.360000pt;}
.x2b_c01364{left:304.640000pt;}
.x46_c01364{left:313.600000pt;}
.x19_c01364{left:314.880000pt;}
.x59_c01364{left:322.560000pt;}
.x8_c01364{left:332.800000pt;}
.x57_c01364{left:342.400000pt;}
.x1a_c01364{left:343.680000pt;}
.x21_c01364{left:353.280000pt;}
.x4b_c01364{left:360.960000pt;}
.x5c_c01364{left:371.200000pt;}
.x13_c01364{left:372.480000pt;}
.x47_c01364{left:380.800000pt;}
.x39_c01364{left:390.400000pt;}
.x9_c01364{left:391.680000pt;}
.x4c_c01364{left:399.360000pt;}
.x52_c01364{left:409.600000pt;}
.x34_c01364{left:418.560000pt;}
.x3a_c01364{left:419.840000pt;}
.x4f_c01364{left:428.800000pt;}
.x1b_c01364{left:430.080000pt;}
.x4d_c01364{left:437.760000pt;}
.x30_c01364{left:439.680000pt;}
.x5d_c01364{left:447.360000pt;}
.x14_c01364{left:449.280000pt;}
.x1c_c01364{left:457.600000pt;}
.x3e_c01364{left:467.200000pt;}
.x22_c01364{left:468.480000pt;}
.x40_c01364{left:476.160000pt;}
.x35_c01364{left:477.440000pt;}
.x3b_c01364{left:495.360000pt;}
.x15_c01364{left:497.280000pt;}
.x36_c01364{left:504.960000pt;}
.xa_c01364{left:515.840000pt;}
.x50_c01364{left:523.520000pt;}
.x48_c01364{left:525.440000pt;}
.x23_c01364{left:535.040000pt;}
.x53_c01364{left:542.080000pt;}
.xb_c01364{left:544.640000pt;}
.x16_c01364{left:552.960000pt;}
.x51_c01364{left:561.920000pt;}
.x41_c01364{left:563.200000pt;}
.x24_c01364{left:572.160000pt;}
.x4e_c01364{left:581.120000pt;}
.xc_c01364{left:582.400000pt;}
.x54_c01364{left:590.720000pt;}
.x37_c01364{left:592.000000pt;}
.x1_c01364{left:595.200000pt;}
.x3c_c01364{left:600.320000pt;}
}





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

.ir_c01365:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01365{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01365;src:url('chunks/assets/font_bd1a306880e03b8b9e7a05f4.woff2')format("woff");}.ff1_c01365{font-family:ff1_c01365;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m60_c01365{transform:matrix(0.222975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222975,0.000000,0.000000,0.250000,0,0);}
.m0_c01365{transform:matrix(0.240700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240700,0.000000,0.000000,0.250000,0,0);}
.m5f_c01365{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m51_c01365{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);}
.m5c_c01365{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);}
.m4a_c01365{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);}
.m49_c01365{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);}
.m5a_c01365{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.me_c01365{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m46_c01365{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m5b_c01365{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m61_c01365{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m47_c01365{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m13_c01365{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m58_c01365{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m17_c01365{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m15_c01365{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m7_c01365{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m33_c01365{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01365{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m36_c01365{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);}
.m5d_c01365{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m26_c01365{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);}
.m3f_c01365{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01365{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);}
.m3e_c01365{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m2_c01365{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_c01365{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.mb_c01365{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m9_c01365{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01365{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);}
.m31_c01365{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);}
.m37_c01365{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m52_c01365{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1_c01365{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);}
.m4b_c01365{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);}
.m22_c01365{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m54_c01365{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m4_c01365{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m48_c01365{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);}
.m41_c01365{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);}
.m53_c01365{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.mc_c01365{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01365{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01365{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m27_c01365{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);}
.m4d_c01365{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01365{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);}
.m56_c01365{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01365{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);}
.m34_c01365{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);}
.m32_c01365{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m40_c01365{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m25_c01365{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m14_c01365{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m24_c01365{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);}
.m29_c01365{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m3_c01365{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m10_c01365{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);}
.m4c_c01365{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m6_c01365{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);}
.m19_c01365{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m44_c01365{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m39_c01365{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m43_c01365{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01365{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.ma_c01365{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);}
.m18_c01365{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m11_c01365{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m38_c01365{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01365{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);}
.m23_c01365{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);}
.m12_c01365{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01365{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01365{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);}
.m59_c01365{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01365{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m57_c01365{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.mf_c01365{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);}
.md_c01365{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m28_c01365{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m8_c01365{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);}
.m3a_c01365{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m45_c01365{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);}
.m35_c01365{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);}
.m2e_c01365{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m20_c01365{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m5_c01365{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m21_c01365{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m42_c01365{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);}
.m4e_c01365{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01365{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);}
.m55_c01365{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01365{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m30_c01365{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m50_c01365{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01365{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m5e_c01365{transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);}
.v0_c01365{vertical-align:0.000000px;}
.v1_c01365{vertical-align:11.520000px;}
.ls0_c01365{letter-spacing:0.000000px;}
.sc__c01365{text-shadow:none;}
.sc0_c01365{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01365{-webkit-text-stroke:0px transparent;}
.sc0_c01365{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01365{word-spacing:0.000000px;}
.ws0_c01365{word-spacing:2.743920px;}
.fc0_c01365{color:transparent;}
.fs10_c01365{font-size:14.400000px;}
.fs5_c01365{font-size:34.560000px;}
.fs9_c01365{font-size:37.440000px;}
.fsc_c01365{font-size:40.320000px;}
.fs7_c01365{font-size:46.080000px;}
.fs6_c01365{font-size:48.960000px;}
.fs2_c01365{font-size:51.840000px;}
.fsd_c01365{font-size:54.720000px;}
.fsb_c01365{font-size:57.600000px;}
.fs1_c01365{font-size:60.480000px;}
.fsa_c01365{font-size:63.360000px;}
.fs8_c01365{font-size:66.240000px;}
.fs3_c01365{font-size:69.120000px;}
.fs4_c01365{font-size:72.000000px;}
.fsf_c01365{font-size:74.880000px;}
.fse_c01365{font-size:77.760000px;}
.fs0_c01365{font-size:86.400000px;}
.fs11_c01365{font-size:95.040000px;}
.y0_c01365{bottom:0.000000px;}
.y81_c01365{bottom:60.480000px;}
.y7d_c01365{bottom:68.400000px;}
.y7a_c01365{bottom:69.840000px;}
.y83_c01365{bottom:71.280000px;}
.y82_c01365{bottom:72.000000px;}
.y79_c01365{bottom:74.880000px;}
.y85_c01365{bottom:92.880000px;}
.y84_c01365{bottom:94.320000px;}
.y7c_c01365{bottom:100.800000px;}
.y7e_c01365{bottom:101.520000px;}
.y7b_c01365{bottom:102.240000px;}
.y78_c01365{bottom:103.680000px;}
.y7f_c01365{bottom:105.120000px;}
.y80_c01365{bottom:107.280000px;}
.y74_c01365{bottom:143.280000px;}
.y76_c01365{bottom:144.000000px;}
.y73_c01365{bottom:145.440000px;}
.y75_c01365{bottom:146.160000px;}
.y77_c01365{bottom:147.600000px;}
.y72_c01365{bottom:194.400000px;}
.y70_c01365{bottom:197.280000px;}
.y71_c01365{bottom:198.720000px;}
.y6e_c01365{bottom:199.440000px;}
.y6f_c01365{bottom:200.160000px;}
.y69_c01365{bottom:239.760000px;}
.y6c_c01365{bottom:240.480000px;}
.y68_c01365{bottom:241.920000px;}
.y67_c01365{bottom:242.640000px;}
.y6a_c01365{bottom:243.360000px;}
.y6b_c01365{bottom:244.080000px;}
.y6d_c01365{bottom:244.800000px;}
.y62_c01365{bottom:282.240000px;}
.y60_c01365{bottom:282.960000px;}
.y64_c01365{bottom:283.680000px;}
.y66_c01365{bottom:284.400000px;}
.y5f_c01365{bottom:285.120000px;}
.y61_c01365{bottom:285.840000px;}
.y63_c01365{bottom:286.560000px;}
.y65_c01365{bottom:287.280000px;}
.y5e_c01365{bottom:336.240000px;}
.y5c_c01365{bottom:336.960000px;}
.y5d_c01365{bottom:339.840000px;}
.y5b_c01365{bottom:340.560000px;}
.y55_c01365{bottom:380.160000px;}
.y59_c01365{bottom:380.880000px;}
.y54_c01365{bottom:381.600000px;}
.y56_c01365{bottom:382.320000px;}
.y57_c01365{bottom:383.040000px;}
.y58_c01365{bottom:383.760000px;}
.y5a_c01365{bottom:384.480000px;}
.y51_c01365{bottom:423.360000px;}
.y50_c01365{bottom:426.240000px;}
.y53_c01365{bottom:426.960000px;}
.y52_c01365{bottom:427.680000px;}
.y4c_c01365{bottom:466.560000px;}
.y4e_c01365{bottom:467.280000px;}
.y4b_c01365{bottom:469.440000px;}
.y4d_c01365{bottom:470.160000px;}
.y4f_c01365{bottom:470.880000px;}
.y48_c01365{bottom:509.040000px;}
.y49_c01365{bottom:509.760000px;}
.y46_c01365{bottom:510.480000px;}
.y47_c01365{bottom:511.920000px;}
.y4a_c01365{bottom:512.640000px;}
.y45_c01365{bottom:514.080000px;}
.y42_c01365{bottom:552.240000px;}
.y43_c01365{bottom:553.680000px;}
.y41_c01365{bottom:555.120000px;}
.y40_c01365{bottom:555.840000px;}
.y44_c01365{bottom:556.560000px;}
.y3c_c01365{bottom:595.440000px;}
.y3d_c01365{bottom:596.160000px;}
.y3e_c01365{bottom:598.320000px;}
.y3f_c01365{bottom:599.040000px;}
.y3b_c01365{bottom:637.920000px;}
.y37_c01365{bottom:638.640000px;}
.y39_c01365{bottom:639.360000px;}
.y3a_c01365{bottom:640.080000px;}
.y38_c01365{bottom:640.800000px;}
.y36_c01365{bottom:641.520000px;}
.y34_c01365{bottom:681.840000px;}
.y31_c01365{bottom:682.560000px;}
.y33_c01365{bottom:683.280000px;}
.y32_c01365{bottom:684.000000px;}
.y35_c01365{bottom:684.720000px;}
.y2e_c01365{bottom:723.600000px;}
.y2c_c01365{bottom:724.320000px;}
.y30_c01365{bottom:725.760000px;}
.y2d_c01365{bottom:726.480000px;}
.y2b_c01365{bottom:727.200000px;}
.y2f_c01365{bottom:727.920000px;}
.y26_c01365{bottom:766.800000px;}
.y29_c01365{bottom:767.520000px;}
.y2a_c01365{bottom:768.960000px;}
.y27_c01365{bottom:769.680000px;}
.y28_c01365{bottom:770.400000px;}
.y25_c01365{bottom:809.280000px;}
.y21_c01365{bottom:810.000000px;}
.y24_c01365{bottom:812.160000px;}
.y22_c01365{bottom:812.880000px;}
.y23_c01365{bottom:813.600000px;}
.y20_c01365{bottom:851.040000px;}
.y1e_c01365{bottom:852.480000px;}
.y1f_c01365{bottom:854.640000px;}
.y1c_c01365{bottom:855.360000px;}
.y1d_c01365{bottom:856.080000px;}
.y1b_c01365{bottom:894.240000px;}
.y17_c01365{bottom:894.960000px;}
.y16_c01365{bottom:895.680000px;}
.y13_c01365{bottom:896.400000px;}
.y1a_c01365{bottom:897.120000px;}
.y19_c01365{bottom:897.840000px;}
.y18_c01365{bottom:898.560000px;}
.y15_c01365{bottom:899.280000px;}
.y14_c01365{bottom:900.000000px;}
.y12_c01365{bottom:937.440000px;}
.y10_c01365{bottom:938.160000px;}
.yd_c01365{bottom:938.880000px;}
.ye_c01365{bottom:939.600000px;}
.y11_c01365{bottom:940.320000px;}
.yc_c01365{bottom:941.040000px;}
.yf_c01365{bottom:941.760000px;}
.yb_c01365{bottom:980.640000px;}
.y9_c01365{bottom:981.360000px;}
.y8_c01365{bottom:982.800000px;}
.ya_c01365{bottom:983.520000px;}
.y6_c01365{bottom:984.240000px;}
.y7_c01365{bottom:984.960000px;}
.y4_c01365{bottom:1023.840000px;}
.y2_c01365{bottom:1026.720000px;}
.y5_c01365{bottom:1027.440000px;}
.y3_c01365{bottom:1028.160000px;}
.y1_c01365{bottom:1066.320000px;}
.h13_c01365{height:12.958594px;}
.h7_c01365{height:31.100625px;}
.hb_c01365{height:33.692344px;}
.he_c01365{height:36.284062px;}
.h9_c01365{height:41.467500px;}
.h8_c01365{height:44.059219px;}
.h4_c01365{height:46.650937px;}
.h10_c01365{height:49.242656px;}
.hd_c01365{height:51.834375px;}
.h3_c01365{height:54.426094px;}
.hf_c01365{height:55.579219px;}
.hc_c01365{height:57.017812px;}
.ha_c01365{height:59.609531px;}
.h5_c01365{height:62.201250px;}
.h6_c01365{height:64.792969px;}
.h12_c01365{height:67.384687px;}
.h11_c01365{height:69.976406px;}
.h2_c01365{height:77.751563px;}
.h14_c01365{height:85.526719px;}
.h1_c01365{height:1146.750000px;}
.h0_c01365{height:1146.960000px;}
.w0_c01365{width:763.200000px;}
.w1_c01365{width:763.500000px;}
.x0_c01365{left:0.000000px;}
.x2_c01365{left:43.920000px;}
.x9_c01365{left:45.360000px;}
.x56_c01365{left:48.240000px;}
.x13_c01365{left:73.440000px;}
.xa_c01365{left:75.600000px;}
.x57_c01365{left:77.040000px;}
.x53_c01365{left:84.240000px;}
.x3c_c01365{left:85.680000px;}
.xb_c01365{left:107.280000px;}
.x1c_c01365{left:118.800000px;}
.x4c_c01365{left:128.160000px;}
.x1d_c01365{left:138.240000px;}
.x23_c01365{left:139.680000px;}
.x4e_c01365{left:149.040000px;}
.x2d_c01365{left:151.200000px;}
.x46_c01365{left:160.560000px;}
.xc_c01365{left:162.000000px;}
.x1e_c01365{left:170.640000px;}
.x3_c01365{left:172.800000px;}
.x4f_c01365{left:182.160000px;}
.x39_c01365{left:183.600000px;}
.x49_c01365{left:192.960000px;}
.x4_c01365{left:204.480000px;}
.x2e_c01365{left:214.560000px;}
.x3a_c01365{left:216.000000px;}
.x14_c01365{left:226.080000px;}
.x54_c01365{left:235.440000px;}
.x32_c01365{left:236.880000px;}
.x3f_c01365{left:246.960000px;}
.xd_c01365{left:248.400000px;}
.x1f_c01365{left:259.200000px;}
.x4a_c01365{left:268.560000px;}
.x15_c01365{left:270.000000px;}
.x2f_c01365{left:280.800000px;}
.x24_c01365{left:291.600000px;}
.x16_c01365{left:303.120000px;}
.x40_c01365{left:313.200000px;}
.x55_c01365{left:322.560000px;}
.x5_c01365{left:324.000000px;}
.x4b_c01365{left:332.640000px;}
.x33_c01365{left:334.800000px;}
.x3d_c01365{left:344.160000px;}
.x4d_c01365{left:345.600000px;}
.x42_c01365{left:354.960000px;}
.x28_c01365{left:356.400000px;}
.x50_c01365{left:365.040000px;}
.x17_c01365{left:367.200000px;}
.xe_c01365{left:378.000000px;}
.x29_c01365{left:388.800000px;}
.x30_c01365{left:398.160000px;}
.x34_c01365{left:408.960000px;}
.x25_c01365{left:410.400000px;}
.x52_c01365{left:419.040000px;}
.x20_c01365{left:420.480000px;}
.x43_c01365{left:430.560000px;}
.x6_c01365{left:442.080000px;}
.x37_c01365{left:451.440000px;}
.x47_c01365{left:452.880000px;}
.x58_c01365{left:462.240000px;}
.xf_c01365{left:463.680000px;}
.x44_c01365{left:473.760000px;}
.x7_c01365{left:475.200000px;}
.x18_c01365{left:485.280000px;}
.x10_c01365{left:494.640000px;}
.x3e_c01365{left:496.080000px;}
.x2a_c01365{left:506.160000px;}
.x41_c01365{left:516.240000px;}
.x8_c01365{left:519.120000px;}
.x45_c01365{left:527.760000px;}
.x35_c01365{left:539.280000px;}
.x21_c01365{left:548.640000px;}
.x31_c01365{left:550.080000px;}
.x26_c01365{left:559.440000px;}
.x19_c01365{left:570.960000px;}
.x11_c01365{left:572.400000px;}
.x38_c01365{left:581.760000px;}
.x22_c01365{left:591.840000px;}
.x2b_c01365{left:603.360000px;}
.x27_c01365{left:613.440000px;}
.x36_c01365{left:624.240000px;}
.x51_c01365{left:632.880000px;}
.x2c_c01365{left:635.040000px;}
.x1a_c01365{left:645.840000px;}
.x48_c01365{left:655.920000px;}
.x1_c01365{left:662.400000px;}
.x3b_c01365{left:666.720000px;}
.x1b_c01365{left:668.880000px;}
.x12_c01365{left:678.960000px;}
.x59_c01365{left:689.040000px;}
@media print{
.v0_c01365{vertical-align:0.000000pt;}
.v1_c01365{vertical-align:10.240000pt;}
.ls0_c01365{letter-spacing:0.000000pt;}
.ws1_c01365{word-spacing:0.000000pt;}
.ws0_c01365{word-spacing:2.439040pt;}
.fs10_c01365{font-size:12.800000pt;}
.fs5_c01365{font-size:30.720000pt;}
.fs9_c01365{font-size:33.280000pt;}
.fsc_c01365{font-size:35.840000pt;}
.fs7_c01365{font-size:40.960000pt;}
.fs6_c01365{font-size:43.520000pt;}
.fs2_c01365{font-size:46.080000pt;}
.fsd_c01365{font-size:48.640000pt;}
.fsb_c01365{font-size:51.200000pt;}
.fs1_c01365{font-size:53.760000pt;}
.fsa_c01365{font-size:56.320000pt;}
.fs8_c01365{font-size:58.880000pt;}
.fs3_c01365{font-size:61.440000pt;}
.fs4_c01365{font-size:64.000000pt;}
.fsf_c01365{font-size:66.560000pt;}
.fse_c01365{font-size:69.120000pt;}
.fs0_c01365{font-size:76.800000pt;}
.fs11_c01365{font-size:84.480000pt;}
.y0_c01365{bottom:0.000000pt;}
.y81_c01365{bottom:53.760000pt;}
.y7d_c01365{bottom:60.800000pt;}
.y7a_c01365{bottom:62.080000pt;}
.y83_c01365{bottom:63.360000pt;}
.y82_c01365{bottom:64.000000pt;}
.y79_c01365{bottom:66.560000pt;}
.y85_c01365{bottom:82.560000pt;}
.y84_c01365{bottom:83.840000pt;}
.y7c_c01365{bottom:89.600000pt;}
.y7e_c01365{bottom:90.240000pt;}
.y7b_c01365{bottom:90.880000pt;}
.y78_c01365{bottom:92.160000pt;}
.y7f_c01365{bottom:93.440000pt;}
.y80_c01365{bottom:95.360000pt;}
.y74_c01365{bottom:127.360000pt;}
.y76_c01365{bottom:128.000000pt;}
.y73_c01365{bottom:129.280000pt;}
.y75_c01365{bottom:129.920000pt;}
.y77_c01365{bottom:131.200000pt;}
.y72_c01365{bottom:172.800000pt;}
.y70_c01365{bottom:175.360000pt;}
.y71_c01365{bottom:176.640000pt;}
.y6e_c01365{bottom:177.280000pt;}
.y6f_c01365{bottom:177.920000pt;}
.y69_c01365{bottom:213.120000pt;}
.y6c_c01365{bottom:213.760000pt;}
.y68_c01365{bottom:215.040000pt;}
.y67_c01365{bottom:215.680000pt;}
.y6a_c01365{bottom:216.320000pt;}
.y6b_c01365{bottom:216.960000pt;}
.y6d_c01365{bottom:217.600000pt;}
.y62_c01365{bottom:250.880000pt;}
.y60_c01365{bottom:251.520000pt;}
.y64_c01365{bottom:252.160000pt;}
.y66_c01365{bottom:252.800000pt;}
.y5f_c01365{bottom:253.440000pt;}
.y61_c01365{bottom:254.080000pt;}
.y63_c01365{bottom:254.720000pt;}
.y65_c01365{bottom:255.360000pt;}
.y5e_c01365{bottom:298.880000pt;}
.y5c_c01365{bottom:299.520000pt;}
.y5d_c01365{bottom:302.080000pt;}
.y5b_c01365{bottom:302.720000pt;}
.y55_c01365{bottom:337.920000pt;}
.y59_c01365{bottom:338.560000pt;}
.y54_c01365{bottom:339.200000pt;}
.y56_c01365{bottom:339.840000pt;}
.y57_c01365{bottom:340.480000pt;}
.y58_c01365{bottom:341.120000pt;}
.y5a_c01365{bottom:341.760000pt;}
.y51_c01365{bottom:376.320000pt;}
.y50_c01365{bottom:378.880000pt;}
.y53_c01365{bottom:379.520000pt;}
.y52_c01365{bottom:380.160000pt;}
.y4c_c01365{bottom:414.720000pt;}
.y4e_c01365{bottom:415.360000pt;}
.y4b_c01365{bottom:417.280000pt;}
.y4d_c01365{bottom:417.920000pt;}
.y4f_c01365{bottom:418.560000pt;}
.y48_c01365{bottom:452.480000pt;}
.y49_c01365{bottom:453.120000pt;}
.y46_c01365{bottom:453.760000pt;}
.y47_c01365{bottom:455.040000pt;}
.y4a_c01365{bottom:455.680000pt;}
.y45_c01365{bottom:456.960000pt;}
.y42_c01365{bottom:490.880000pt;}
.y43_c01365{bottom:492.160000pt;}
.y41_c01365{bottom:493.440000pt;}
.y40_c01365{bottom:494.080000pt;}
.y44_c01365{bottom:494.720000pt;}
.y3c_c01365{bottom:529.280000pt;}
.y3d_c01365{bottom:529.920000pt;}
.y3e_c01365{bottom:531.840000pt;}
.y3f_c01365{bottom:532.480000pt;}
.y3b_c01365{bottom:567.040000pt;}
.y37_c01365{bottom:567.680000pt;}
.y39_c01365{bottom:568.320000pt;}
.y3a_c01365{bottom:568.960000pt;}
.y38_c01365{bottom:569.600000pt;}
.y36_c01365{bottom:570.240000pt;}
.y34_c01365{bottom:606.080000pt;}
.y31_c01365{bottom:606.720000pt;}
.y33_c01365{bottom:607.360000pt;}
.y32_c01365{bottom:608.000000pt;}
.y35_c01365{bottom:608.640000pt;}
.y2e_c01365{bottom:643.200000pt;}
.y2c_c01365{bottom:643.840000pt;}
.y30_c01365{bottom:645.120000pt;}
.y2d_c01365{bottom:645.760000pt;}
.y2b_c01365{bottom:646.400000pt;}
.y2f_c01365{bottom:647.040000pt;}
.y26_c01365{bottom:681.600000pt;}
.y29_c01365{bottom:682.240000pt;}
.y2a_c01365{bottom:683.520000pt;}
.y27_c01365{bottom:684.160000pt;}
.y28_c01365{bottom:684.800000pt;}
.y25_c01365{bottom:719.360000pt;}
.y21_c01365{bottom:720.000000pt;}
.y24_c01365{bottom:721.920000pt;}
.y22_c01365{bottom:722.560000pt;}
.y23_c01365{bottom:723.200000pt;}
.y20_c01365{bottom:756.480000pt;}
.y1e_c01365{bottom:757.760000pt;}
.y1f_c01365{bottom:759.680000pt;}
.y1c_c01365{bottom:760.320000pt;}
.y1d_c01365{bottom:760.960000pt;}
.y1b_c01365{bottom:794.880000pt;}
.y17_c01365{bottom:795.520000pt;}
.y16_c01365{bottom:796.160000pt;}
.y13_c01365{bottom:796.800000pt;}
.y1a_c01365{bottom:797.440000pt;}
.y19_c01365{bottom:798.080000pt;}
.y18_c01365{bottom:798.720000pt;}
.y15_c01365{bottom:799.360000pt;}
.y14_c01365{bottom:800.000000pt;}
.y12_c01365{bottom:833.280000pt;}
.y10_c01365{bottom:833.920000pt;}
.yd_c01365{bottom:834.560000pt;}
.ye_c01365{bottom:835.200000pt;}
.y11_c01365{bottom:835.840000pt;}
.yc_c01365{bottom:836.480000pt;}
.yf_c01365{bottom:837.120000pt;}
.yb_c01365{bottom:871.680000pt;}
.y9_c01365{bottom:872.320000pt;}
.y8_c01365{bottom:873.600000pt;}
.ya_c01365{bottom:874.240000pt;}
.y6_c01365{bottom:874.880000pt;}
.y7_c01365{bottom:875.520000pt;}
.y4_c01365{bottom:910.080000pt;}
.y2_c01365{bottom:912.640000pt;}
.y5_c01365{bottom:913.280000pt;}
.y3_c01365{bottom:913.920000pt;}
.y1_c01365{bottom:947.840000pt;}
.h13_c01365{height:11.518750pt;}
.h7_c01365{height:27.645000pt;}
.hb_c01365{height:29.948750pt;}
.he_c01365{height:32.252500pt;}
.h9_c01365{height:36.860000pt;}
.h8_c01365{height:39.163750pt;}
.h4_c01365{height:41.467500pt;}
.h10_c01365{height:43.771250pt;}
.hd_c01365{height:46.075000pt;}
.h3_c01365{height:48.378750pt;}
.hf_c01365{height:49.403750pt;}
.hc_c01365{height:50.682500pt;}
.ha_c01365{height:52.986250pt;}
.h5_c01365{height:55.290000pt;}
.h6_c01365{height:57.593750pt;}
.h12_c01365{height:59.897500pt;}
.h11_c01365{height:62.201250pt;}
.h2_c01365{height:69.112500pt;}
.h14_c01365{height:76.023750pt;}
.h1_c01365{height:1019.333333pt;}
.h0_c01365{height:1019.520000pt;}
.w0_c01365{width:678.400000pt;}
.w1_c01365{width:678.666667pt;}
.x0_c01365{left:0.000000pt;}
.x2_c01365{left:39.040000pt;}
.x9_c01365{left:40.320000pt;}
.x56_c01365{left:42.880000pt;}
.x13_c01365{left:65.280000pt;}
.xa_c01365{left:67.200000pt;}
.x57_c01365{left:68.480000pt;}
.x53_c01365{left:74.880000pt;}
.x3c_c01365{left:76.160000pt;}
.xb_c01365{left:95.360000pt;}
.x1c_c01365{left:105.600000pt;}
.x4c_c01365{left:113.920000pt;}
.x1d_c01365{left:122.880000pt;}
.x23_c01365{left:124.160000pt;}
.x4e_c01365{left:132.480000pt;}
.x2d_c01365{left:134.400000pt;}
.x46_c01365{left:142.720000pt;}
.xc_c01365{left:144.000000pt;}
.x1e_c01365{left:151.680000pt;}
.x3_c01365{left:153.600000pt;}
.x4f_c01365{left:161.920000pt;}
.x39_c01365{left:163.200000pt;}
.x49_c01365{left:171.520000pt;}
.x4_c01365{left:181.760000pt;}
.x2e_c01365{left:190.720000pt;}
.x3a_c01365{left:192.000000pt;}
.x14_c01365{left:200.960000pt;}
.x54_c01365{left:209.280000pt;}
.x32_c01365{left:210.560000pt;}
.x3f_c01365{left:219.520000pt;}
.xd_c01365{left:220.800000pt;}
.x1f_c01365{left:230.400000pt;}
.x4a_c01365{left:238.720000pt;}
.x15_c01365{left:240.000000pt;}
.x2f_c01365{left:249.600000pt;}
.x24_c01365{left:259.200000pt;}
.x16_c01365{left:269.440000pt;}
.x40_c01365{left:278.400000pt;}
.x55_c01365{left:286.720000pt;}
.x5_c01365{left:288.000000pt;}
.x4b_c01365{left:295.680000pt;}
.x33_c01365{left:297.600000pt;}
.x3d_c01365{left:305.920000pt;}
.x4d_c01365{left:307.200000pt;}
.x42_c01365{left:315.520000pt;}
.x28_c01365{left:316.800000pt;}
.x50_c01365{left:324.480000pt;}
.x17_c01365{left:326.400000pt;}
.xe_c01365{left:336.000000pt;}
.x29_c01365{left:345.600000pt;}
.x30_c01365{left:353.920000pt;}
.x34_c01365{left:363.520000pt;}
.x25_c01365{left:364.800000pt;}
.x52_c01365{left:372.480000pt;}
.x20_c01365{left:373.760000pt;}
.x43_c01365{left:382.720000pt;}
.x6_c01365{left:392.960000pt;}
.x37_c01365{left:401.280000pt;}
.x47_c01365{left:402.560000pt;}
.x58_c01365{left:410.880000pt;}
.xf_c01365{left:412.160000pt;}
.x44_c01365{left:421.120000pt;}
.x7_c01365{left:422.400000pt;}
.x18_c01365{left:431.360000pt;}
.x10_c01365{left:439.680000pt;}
.x3e_c01365{left:440.960000pt;}
.x2a_c01365{left:449.920000pt;}
.x41_c01365{left:458.880000pt;}
.x8_c01365{left:461.440000pt;}
.x45_c01365{left:469.120000pt;}
.x35_c01365{left:479.360000pt;}
.x21_c01365{left:487.680000pt;}
.x31_c01365{left:488.960000pt;}
.x26_c01365{left:497.280000pt;}
.x19_c01365{left:507.520000pt;}
.x11_c01365{left:508.800000pt;}
.x38_c01365{left:517.120000pt;}
.x22_c01365{left:526.080000pt;}
.x2b_c01365{left:536.320000pt;}
.x27_c01365{left:545.280000pt;}
.x36_c01365{left:554.880000pt;}
.x51_c01365{left:562.560000pt;}
.x2c_c01365{left:564.480000pt;}
.x1a_c01365{left:574.080000pt;}
.x48_c01365{left:583.040000pt;}
.x1_c01365{left:588.800000pt;}
.x3b_c01365{left:592.640000pt;}
.x1b_c01365{left:594.560000pt;}
.x12_c01365{left:603.520000pt;}
.x59_c01365{left:612.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_c01366 {
    display:none;
  }
  .loading-indicator_c01366.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01366 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01366 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01366" -> "#page-container .classname_c01366")
 */
.pf_c01366 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01366 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01366.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01366 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01366 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01366 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01366 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01366 {overflow:visible;}
  }
}
.c_c01366 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01366 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01366:after { /* webkit #35443 */
  content: '';
}
.t_c01366:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01366 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01366 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01366 { /* info for Javascript */
  display:none;
}
.l_c01366 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01366 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01366 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01366:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01366{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01366;src:url('chunks/assets/font_d8fda2d8431d0ac1b00f5ad3.woff2')format("woff");}.ff1_c01366{font-family:ff1_c01366;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m30_c01366{transform:matrix(0.205350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205350,0.000000,0.000000,0.250000,0,0);}
.m38_c01366{transform:matrix(0.231650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231650,0.000000,0.000000,0.250000,0,0);}
.m36_c01366{transform:matrix(0.234475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234475,0.000000,0.000000,0.250000,0,0);}
.m43_c01366{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m2c_c01366{transform:matrix(0.237575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237575,0.000000,0.000000,0.250000,0,0);}
.m27_c01366{transform:matrix(0.241125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241125,0.000000,0.000000,0.250000,0,0);}
.m47_c01366{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m41_c01366{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m20_c01366{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01366{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_c01366{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);}
.m49_c01366{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);}
.m4e_c01366{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);}
.m34_c01366{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);}
.m3c_c01366{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);}
.m1e_c01366{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);}
.m32_c01366{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);}
.m22_c01366{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m15_c01366{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m18_c01366{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);}
.m3e_c01366{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01366{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);}
.m2f_c01366{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);}
.m3f_c01366{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m19_c01366{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mf_c01366{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01366{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01366{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m25_c01366{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01366{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m16_c01366{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m13_c01366{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m14_c01366{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01366{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m12_c01366{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);}
.m4d_c01366{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m39_c01366{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.md_c01366{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);}
.m24_c01366{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m9_c01366{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01366{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m0_c01366{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.mc_c01366{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m8_c01366{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);}
.m4c_c01366{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m44_c01366{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.mb_c01366{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m45_c01366{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m5_c01366{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);}
.m3b_c01366{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);}
.m3d_c01366{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);}
.m3a_c01366{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);}
.m3_c01366{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01366{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m1_c01366{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01366{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);}
.m1f_c01366{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);}
.m35_c01366{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);}
.m6_c01366{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m4_c01366{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m23_c01366{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m26_c01366{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m7_c01366{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m21_c01366{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);}
.m42_c01366{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.ma_c01366{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m28_c01366{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);}
.m37_c01366{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);}
.m31_c01366{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01366{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m29_c01366{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);}
.m1d_c01366{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m48_c01366{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m10_c01366{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);}
.m40_c01366{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m2_c01366{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.me_c01366{transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);}
.m46_c01366{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m11_c01366{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.v3_c01366{vertical-align:-2.880000px;}
.v0_c01366{vertical-align:0.000000px;}
.v2_c01366{vertical-align:2.880000px;}
.v1_c01366{vertical-align:5.760000px;}
.ls0_c01366{letter-spacing:0.000000px;}
.sc__c01366{text-shadow:none;}
.sc0_c01366{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01366{-webkit-text-stroke:0px transparent;}
.sc0_c01366{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01366{word-spacing:0.000000px;}
.ws2_c01366{word-spacing:4.705200px;}
.ws1_c01366{word-spacing:43.320000px;}
.ws0_c01366{word-spacing:85.188000px;}
.fc0_c01366{color:transparent;}
.fs2_c01366{font-size:34.560000px;}
.fsf_c01366{font-size:37.440000px;}
.fsc_c01366{font-size:40.320000px;}
.fs11_c01366{font-size:43.200000px;}
.fs1_c01366{font-size:48.960000px;}
.fs4_c01366{font-size:51.840000px;}
.fs6_c01366{font-size:54.720000px;}
.fs8_c01366{font-size:57.600000px;}
.fs5_c01366{font-size:60.480000px;}
.fs3_c01366{font-size:63.360000px;}
.fs9_c01366{font-size:66.240000px;}
.fs7_c01366{font-size:69.120000px;}
.fsa_c01366{font-size:72.000000px;}
.fse_c01366{font-size:74.880000px;}
.fs0_c01366{font-size:77.760000px;}
.fsb_c01366{font-size:80.640000px;}
.fs10_c01366{font-size:83.520000px;}
.fsd_c01366{font-size:89.280000px;}
.y0_c01366{bottom:0.000000px;}
.y6e_c01366{bottom:78.480000px;}
.y6f_c01366{bottom:80.640000px;}
.y6d_c01366{bottom:84.240000px;}
.y70_c01366{bottom:84.960000px;}
.y71_c01366{bottom:85.680000px;}
.y69_c01366{bottom:123.120000px;}
.y67_c01366{bottom:124.560000px;}
.y68_c01366{bottom:125.280000px;}
.y64_c01366{bottom:154.080000px;}
.y65_c01366{bottom:156.240000px;}
.y66_c01366{bottom:157.680000px;}
.y63_c01366{bottom:159.840000px;}
.y6a_c01366{bottom:160.560000px;}
.y6c_c01366{bottom:161.280000px;}
.y6b_c01366{bottom:162.720000px;}
.y5d_c01366{bottom:198.000000px;}
.y5c_c01366{bottom:200.160000px;}
.y5b_c01366{bottom:202.320000px;}
.y61_c01366{bottom:203.040000px;}
.y60_c01366{bottom:203.760000px;}
.y62_c01366{bottom:205.200000px;}
.y5a_c01366{bottom:241.920000px;}
.y5e_c01366{bottom:246.240000px;}
.y59_c01366{bottom:246.960000px;}
.y5f_c01366{bottom:249.120000px;}
.y53_c01366{bottom:285.120000px;}
.y56_c01366{bottom:285.840000px;}
.y54_c01366{bottom:288.000000px;}
.y52_c01366{bottom:288.720000px;}
.y55_c01366{bottom:289.440000px;}
.y58_c01366{bottom:291.600000px;}
.y57_c01366{bottom:292.320000px;}
.y45_c01366{bottom:328.320000px;}
.y44_c01366{bottom:331.920000px;}
.y51_c01366{bottom:332.640000px;}
.y4f_c01366{bottom:333.360000px;}
.y50_c01366{bottom:335.520000px;}
.y41_c01366{bottom:371.520000px;}
.y43_c01366{bottom:372.240000px;}
.y42_c01366{bottom:374.400000px;}
.y40_c01366{bottom:375.120000px;}
.y4e_c01366{bottom:378.000000px;}
.y3d_c01366{bottom:415.440000px;}
.y3e_c01366{bottom:416.880000px;}
.y4d_c01366{bottom:417.600000px;}
.y3c_c01366{bottom:418.320000px;}
.y3f_c01366{bottom:419.040000px;}
.y39_c01366{bottom:458.640000px;}
.y3b_c01366{bottom:459.360000px;}
.y3a_c01366{bottom:460.080000px;}
.y4a_c01366{bottom:460.800000px;}
.y4c_c01366{bottom:461.520000px;}
.y38_c01366{bottom:462.240000px;}
.y4b_c01366{bottom:463.680000px;}
.y37_c01366{bottom:501.120000px;}
.y35_c01366{bottom:501.840000px;}
.y36_c01366{bottom:503.280000px;}
.y48_c01366{bottom:504.720000px;}
.y34_c01366{bottom:505.440000px;}
.y49_c01366{bottom:506.880000px;}
.y33_c01366{bottom:545.040000px;}
.y32_c01366{bottom:546.480000px;}
.y46_c01366{bottom:547.200000px;}
.y30_c01366{bottom:548.640000px;}
.y47_c01366{bottom:549.360000px;}
.y31_c01366{bottom:550.080000px;}
.y2b_c01366{bottom:586.800000px;}
.y2e_c01366{bottom:588.960000px;}
.y2c_c01366{bottom:590.400000px;}
.y2f_c01366{bottom:591.120000px;}
.y2a_c01366{bottom:591.840000px;}
.y2d_c01366{bottom:592.560000px;}
.y29_c01366{bottom:632.160000px;}
.y1d_c01366{bottom:632.880000px;}
.y1c_c01366{bottom:633.600000px;}
.y28_c01366{bottom:634.320000px;}
.y1b_c01366{bottom:636.480000px;}
.y27_c01366{bottom:675.360000px;}
.y19_c01366{bottom:676.080000px;}
.y1a_c01366{bottom:676.800000px;}
.y25_c01366{bottom:678.960000px;}
.y26_c01366{bottom:680.400000px;}
.y18_c01366{bottom:719.280000px;}
.y16_c01366{bottom:720.000000px;}
.y23_c01366{bottom:721.440000px;}
.y17_c01366{bottom:722.160000px;}
.y24_c01366{bottom:722.880000px;}
.y15_c01366{bottom:762.480000px;}
.y14_c01366{bottom:763.200000px;}
.y22_c01366{bottom:764.640000px;}
.y21_c01366{bottom:805.680000px;}
.y13_c01366{bottom:806.400000px;}
.y20_c01366{bottom:807.120000px;}
.y11_c01366{bottom:848.880000px;}
.y12_c01366{bottom:849.600000px;}
.y1f_c01366{bottom:850.320000px;}
.yf_c01366{bottom:892.080000px;}
.y10_c01366{bottom:894.240000px;}
.y1e_c01366{bottom:895.680000px;}
.yb_c01366{bottom:936.000000px;}
.ye_c01366{bottom:936.720000px;}
.yd_c01366{bottom:937.440000px;}
.yc_c01366{bottom:938.160000px;}
.y9_c01366{bottom:938.880000px;}
.ya_c01366{bottom:939.600000px;}
.y8_c01366{bottom:981.360000px;}
.y7_c01366{bottom:1019.520000px;}
.y5_c01366{bottom:1020.240000px;}
.y4_c01366{bottom:1023.120000px;}
.y6_c01366{bottom:1023.840000px;}
.y3_c01366{bottom:1025.280000px;}
.y2_c01366{bottom:1026.000000px;}
.y1_c01366{bottom:1083.600000px;}
.h4_c01366{height:31.100625px;}
.h11_c01366{height:33.692344px;}
.he_c01366{height:36.284062px;}
.h13_c01366{height:38.875781px;}
.h3_c01366{height:44.059219px;}
.h6_c01366{height:46.650937px;}
.h8_c01366{height:49.242656px;}
.ha_c01366{height:51.834375px;}
.h7_c01366{height:54.426094px;}
.h5_c01366{height:57.017812px;}
.hb_c01366{height:59.609531px;}
.h9_c01366{height:62.201250px;}
.hc_c01366{height:64.792969px;}
.h10_c01366{height:67.384687px;}
.h2_c01366{height:69.976406px;}
.hd_c01366{height:72.568125px;}
.h12_c01366{height:75.159844px;}
.hf_c01366{height:80.343281px;}
.h1_c01366{height:1144.500000px;}
.h0_c01366{height:1144.800000px;}
.w0_c01366{width:775.440000px;}
.w1_c01366{width:775.500000px;}
.x0_c01366{left:0.000000px;}
.xb_c01366{left:52.560000px;}
.x1c_c01366{left:54.000000px;}
.x1b_c01366{left:55.440000px;}
.x36_c01366{left:56.880000px;}
.x1d_c01366{left:95.760000px;}
.xc_c01366{left:97.200000px;}
.x29_c01366{left:105.840000px;}
.xd_c01366{left:107.280000px;}
.x26_c01366{left:130.320000px;}
.x2_c01366{left:160.560000px;}
.xe_c01366{left:162.000000px;}
.x1e_c01366{left:172.800000px;}
.x27_c01366{left:174.240000px;}
.x1f_c01366{left:183.600000px;}
.x3_c01366{left:194.400000px;}
.x2a_c01366{left:204.480000px;}
.x4_c01366{left:215.280000px;}
.x20_c01366{left:227.520000px;}
.x28_c01366{left:237.600000px;}
.x39_c01366{left:239.040000px;}
.x2d_c01366{left:246.240000px;}
.x22_c01366{left:248.400000px;}
.x37_c01366{left:290.160000px;}
.x5_c01366{left:291.600000px;}
.x3d_c01366{left:302.400000px;}
.x21_c01366{left:311.760000px;}
.x31_c01366{left:334.080000px;}
.x2b_c01366{left:344.160000px;}
.x30_c01366{left:354.960000px;}
.x6_c01366{left:367.200000px;}
.x3a_c01366{left:377.280000px;}
.x2c_c01366{left:398.160000px;}
.x2e_c01366{left:408.960000px;}
.x23_c01366{left:421.200000px;}
.x3b_c01366{left:432.000000px;}
.x2f_c01366{left:452.880000px;}
.x24_c01366{left:473.760000px;}
.x7_c01366{left:484.560000px;}
.x8_c01366{left:506.880000px;}
.x25_c01366{left:559.440000px;}
.xf_c01366{left:570.240000px;}
.x35_c01366{left:581.040000px;}
.x9_c01366{left:582.480000px;}
.x19_c01366{left:602.640000px;}
.x10_c01366{left:606.240000px;}
.x15_c01366{left:614.160000px;}
.xa_c01366{left:626.400000px;}
.x38_c01366{left:633.600000px;}
.x32_c01366{left:635.040000px;}
.x1a_c01366{left:636.480000px;}
.x11_c01366{left:645.840000px;}
.x1_c01366{left:658.080000px;}
.x18_c01366{left:668.160000px;}
.x16_c01366{left:669.600000px;}
.x12_c01366{left:678.960000px;}
.x3c_c01366{left:708.480000px;}
.x33_c01366{left:709.920000px;}
.x13_c01366{left:711.360000px;}
.x17_c01366{left:712.800000px;}
.x34_c01366{left:730.080000px;}
.x14_c01366{left:732.240000px;}
@media print{
.v3_c01366{vertical-align:-2.560000pt;}
.v0_c01366{vertical-align:0.000000pt;}
.v2_c01366{vertical-align:2.560000pt;}
.v1_c01366{vertical-align:5.120000pt;}
.ls0_c01366{letter-spacing:0.000000pt;}
.ws3_c01366{word-spacing:0.000000pt;}
.ws2_c01366{word-spacing:4.182400pt;}
.ws1_c01366{word-spacing:38.506667pt;}
.ws0_c01366{word-spacing:75.722667pt;}
.fs2_c01366{font-size:30.720000pt;}
.fsf_c01366{font-size:33.280000pt;}
.fsc_c01366{font-size:35.840000pt;}
.fs11_c01366{font-size:38.400000pt;}
.fs1_c01366{font-size:43.520000pt;}
.fs4_c01366{font-size:46.080000pt;}
.fs6_c01366{font-size:48.640000pt;}
.fs8_c01366{font-size:51.200000pt;}
.fs5_c01366{font-size:53.760000pt;}
.fs3_c01366{font-size:56.320000pt;}
.fs9_c01366{font-size:58.880000pt;}
.fs7_c01366{font-size:61.440000pt;}
.fsa_c01366{font-size:64.000000pt;}
.fse_c01366{font-size:66.560000pt;}
.fs0_c01366{font-size:69.120000pt;}
.fsb_c01366{font-size:71.680000pt;}
.fs10_c01366{font-size:74.240000pt;}
.fsd_c01366{font-size:79.360000pt;}
.y0_c01366{bottom:0.000000pt;}
.y6e_c01366{bottom:69.760000pt;}
.y6f_c01366{bottom:71.680000pt;}
.y6d_c01366{bottom:74.880000pt;}
.y70_c01366{bottom:75.520000pt;}
.y71_c01366{bottom:76.160000pt;}
.y69_c01366{bottom:109.440000pt;}
.y67_c01366{bottom:110.720000pt;}
.y68_c01366{bottom:111.360000pt;}
.y64_c01366{bottom:136.960000pt;}
.y65_c01366{bottom:138.880000pt;}
.y66_c01366{bottom:140.160000pt;}
.y63_c01366{bottom:142.080000pt;}
.y6a_c01366{bottom:142.720000pt;}
.y6c_c01366{bottom:143.360000pt;}
.y6b_c01366{bottom:144.640000pt;}
.y5d_c01366{bottom:176.000000pt;}
.y5c_c01366{bottom:177.920000pt;}
.y5b_c01366{bottom:179.840000pt;}
.y61_c01366{bottom:180.480000pt;}
.y60_c01366{bottom:181.120000pt;}
.y62_c01366{bottom:182.400000pt;}
.y5a_c01366{bottom:215.040000pt;}
.y5e_c01366{bottom:218.880000pt;}
.y59_c01366{bottom:219.520000pt;}
.y5f_c01366{bottom:221.440000pt;}
.y53_c01366{bottom:253.440000pt;}
.y56_c01366{bottom:254.080000pt;}
.y54_c01366{bottom:256.000000pt;}
.y52_c01366{bottom:256.640000pt;}
.y55_c01366{bottom:257.280000pt;}
.y58_c01366{bottom:259.200000pt;}
.y57_c01366{bottom:259.840000pt;}
.y45_c01366{bottom:291.840000pt;}
.y44_c01366{bottom:295.040000pt;}
.y51_c01366{bottom:295.680000pt;}
.y4f_c01366{bottom:296.320000pt;}
.y50_c01366{bottom:298.240000pt;}
.y41_c01366{bottom:330.240000pt;}
.y43_c01366{bottom:330.880000pt;}
.y42_c01366{bottom:332.800000pt;}
.y40_c01366{bottom:333.440000pt;}
.y4e_c01366{bottom:336.000000pt;}
.y3d_c01366{bottom:369.280000pt;}
.y3e_c01366{bottom:370.560000pt;}
.y4d_c01366{bottom:371.200000pt;}
.y3c_c01366{bottom:371.840000pt;}
.y3f_c01366{bottom:372.480000pt;}
.y39_c01366{bottom:407.680000pt;}
.y3b_c01366{bottom:408.320000pt;}
.y3a_c01366{bottom:408.960000pt;}
.y4a_c01366{bottom:409.600000pt;}
.y4c_c01366{bottom:410.240000pt;}
.y38_c01366{bottom:410.880000pt;}
.y4b_c01366{bottom:412.160000pt;}
.y37_c01366{bottom:445.440000pt;}
.y35_c01366{bottom:446.080000pt;}
.y36_c01366{bottom:447.360000pt;}
.y48_c01366{bottom:448.640000pt;}
.y34_c01366{bottom:449.280000pt;}
.y49_c01366{bottom:450.560000pt;}
.y33_c01366{bottom:484.480000pt;}
.y32_c01366{bottom:485.760000pt;}
.y46_c01366{bottom:486.400000pt;}
.y30_c01366{bottom:487.680000pt;}
.y47_c01366{bottom:488.320000pt;}
.y31_c01366{bottom:488.960000pt;}
.y2b_c01366{bottom:521.600000pt;}
.y2e_c01366{bottom:523.520000pt;}
.y2c_c01366{bottom:524.800000pt;}
.y2f_c01366{bottom:525.440000pt;}
.y2a_c01366{bottom:526.080000pt;}
.y2d_c01366{bottom:526.720000pt;}
.y29_c01366{bottom:561.920000pt;}
.y1d_c01366{bottom:562.560000pt;}
.y1c_c01366{bottom:563.200000pt;}
.y28_c01366{bottom:563.840000pt;}
.y1b_c01366{bottom:565.760000pt;}
.y27_c01366{bottom:600.320000pt;}
.y19_c01366{bottom:600.960000pt;}
.y1a_c01366{bottom:601.600000pt;}
.y25_c01366{bottom:603.520000pt;}
.y26_c01366{bottom:604.800000pt;}
.y18_c01366{bottom:639.360000pt;}
.y16_c01366{bottom:640.000000pt;}
.y23_c01366{bottom:641.280000pt;}
.y17_c01366{bottom:641.920000pt;}
.y24_c01366{bottom:642.560000pt;}
.y15_c01366{bottom:677.760000pt;}
.y14_c01366{bottom:678.400000pt;}
.y22_c01366{bottom:679.680000pt;}
.y21_c01366{bottom:716.160000pt;}
.y13_c01366{bottom:716.800000pt;}
.y20_c01366{bottom:717.440000pt;}
.y11_c01366{bottom:754.560000pt;}
.y12_c01366{bottom:755.200000pt;}
.y1f_c01366{bottom:755.840000pt;}
.yf_c01366{bottom:792.960000pt;}
.y10_c01366{bottom:794.880000pt;}
.y1e_c01366{bottom:796.160000pt;}
.yb_c01366{bottom:832.000000pt;}
.ye_c01366{bottom:832.640000pt;}
.yd_c01366{bottom:833.280000pt;}
.yc_c01366{bottom:833.920000pt;}
.y9_c01366{bottom:834.560000pt;}
.ya_c01366{bottom:835.200000pt;}
.y8_c01366{bottom:872.320000pt;}
.y7_c01366{bottom:906.240000pt;}
.y5_c01366{bottom:906.880000pt;}
.y4_c01366{bottom:909.440000pt;}
.y6_c01366{bottom:910.080000pt;}
.y3_c01366{bottom:911.360000pt;}
.y2_c01366{bottom:912.000000pt;}
.y1_c01366{bottom:963.200000pt;}
.h4_c01366{height:27.645000pt;}
.h11_c01366{height:29.948750pt;}
.he_c01366{height:32.252500pt;}
.h13_c01366{height:34.556250pt;}
.h3_c01366{height:39.163750pt;}
.h6_c01366{height:41.467500pt;}
.h8_c01366{height:43.771250pt;}
.ha_c01366{height:46.075000pt;}
.h7_c01366{height:48.378750pt;}
.h5_c01366{height:50.682500pt;}
.hb_c01366{height:52.986250pt;}
.h9_c01366{height:55.290000pt;}
.hc_c01366{height:57.593750pt;}
.h10_c01366{height:59.897500pt;}
.h2_c01366{height:62.201250pt;}
.hd_c01366{height:64.505000pt;}
.h12_c01366{height:66.808750pt;}
.hf_c01366{height:71.416250pt;}
.h1_c01366{height:1017.333333pt;}
.h0_c01366{height:1017.600000pt;}
.w0_c01366{width:689.280000pt;}
.w1_c01366{width:689.333333pt;}
.x0_c01366{left:0.000000pt;}
.xb_c01366{left:46.720000pt;}
.x1c_c01366{left:48.000000pt;}
.x1b_c01366{left:49.280000pt;}
.x36_c01366{left:50.560000pt;}
.x1d_c01366{left:85.120000pt;}
.xc_c01366{left:86.400000pt;}
.x29_c01366{left:94.080000pt;}
.xd_c01366{left:95.360000pt;}
.x26_c01366{left:115.840000pt;}
.x2_c01366{left:142.720000pt;}
.xe_c01366{left:144.000000pt;}
.x1e_c01366{left:153.600000pt;}
.x27_c01366{left:154.880000pt;}
.x1f_c01366{left:163.200000pt;}
.x3_c01366{left:172.800000pt;}
.x2a_c01366{left:181.760000pt;}
.x4_c01366{left:191.360000pt;}
.x20_c01366{left:202.240000pt;}
.x28_c01366{left:211.200000pt;}
.x39_c01366{left:212.480000pt;}
.x2d_c01366{left:218.880000pt;}
.x22_c01366{left:220.800000pt;}
.x37_c01366{left:257.920000pt;}
.x5_c01366{left:259.200000pt;}
.x3d_c01366{left:268.800000pt;}
.x21_c01366{left:277.120000pt;}
.x31_c01366{left:296.960000pt;}
.x2b_c01366{left:305.920000pt;}
.x30_c01366{left:315.520000pt;}
.x6_c01366{left:326.400000pt;}
.x3a_c01366{left:335.360000pt;}
.x2c_c01366{left:353.920000pt;}
.x2e_c01366{left:363.520000pt;}
.x23_c01366{left:374.400000pt;}
.x3b_c01366{left:384.000000pt;}
.x2f_c01366{left:402.560000pt;}
.x24_c01366{left:421.120000pt;}
.x7_c01366{left:430.720000pt;}
.x8_c01366{left:450.560000pt;}
.x25_c01366{left:497.280000pt;}
.xf_c01366{left:506.880000pt;}
.x35_c01366{left:516.480000pt;}
.x9_c01366{left:517.760000pt;}
.x19_c01366{left:535.680000pt;}
.x10_c01366{left:538.880000pt;}
.x15_c01366{left:545.920000pt;}
.xa_c01366{left:556.800000pt;}
.x38_c01366{left:563.200000pt;}
.x32_c01366{left:564.480000pt;}
.x1a_c01366{left:565.760000pt;}
.x11_c01366{left:574.080000pt;}
.x1_c01366{left:584.960000pt;}
.x18_c01366{left:593.920000pt;}
.x16_c01366{left:595.200000pt;}
.x12_c01366{left:603.520000pt;}
.x3c_c01366{left:629.760000pt;}
.x33_c01366{left:631.040000pt;}
.x13_c01366{left:632.320000pt;}
.x17_c01366{left:633.600000pt;}
.x34_c01366{left:648.960000pt;}
.x14_c01366{left:650.880000pt;}
}





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

.ir_c01367:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01367{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01367;src:url('chunks/assets/font_7a782ec4fee4573d3785fc54.woff2')format("woff");}.ff1_c01367{font-family:ff1_c01367;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3e_c01367{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01367{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m40_c01367{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);}
.m43_c01367{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.mb_c01367{transform:matrix(0.239400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239400,0.000000,0.000000,0.250000,0,0);}
.m8_c01367{transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);}
.m2c_c01367{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m36_c01367{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.mf_c01367{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1_c01367{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);}
.m2a_c01367{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01367{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m3_c01367{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);}
.m39_c01367{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);}
.m29_c01367{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_c01367{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m26_c01367{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_c01367{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m5_c01367{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m38_c01367{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m10_c01367{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01367{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m12_c01367{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m16_c01367{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m33_c01367{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.md_c01367{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.me_c01367{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m23_c01367{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01367{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m6_c01367{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m41_c01367{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m31_c01367{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m17_c01367{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m20_c01367{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m19_c01367{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m14_c01367{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);}
.m3d_c01367{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);}
.m37_c01367{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);}
.m42_c01367{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m34_c01367{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);}
.m28_c01367{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m18_c01367{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m27_c01367{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01367{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);}
.m2b_c01367{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m24_c01367{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);}
.m1e_c01367{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);}
.m45_c01367{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.mc_c01367{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m11_c01367{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);}
.m22_c01367{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01367{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01367{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m2_c01367{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);}
.m25_c01367{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);}
.m0_c01367{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m4_c01367{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01367{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01367{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01367{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);}
.m30_c01367{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m7_c01367{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);}
.m1b_c01367{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);}
.m3a_c01367{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);}
.m35_c01367{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m15_c01367{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m9_c01367{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m21_c01367{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m32_c01367{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m44_c01367{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m47_c01367{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);}
.m46_c01367{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.v0_c01367{vertical-align:0.000000px;}
.ls0_c01367{letter-spacing:0.000000px;}
.sc__c01367{text-shadow:none;}
.sc0_c01367{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01367{-webkit-text-stroke:0px transparent;}
.sc0_c01367{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01367{word-spacing:0.000000px;}
.fc0_c01367{color:transparent;}
.fsd_c01367{font-size:28.800000px;}
.fsa_c01367{font-size:34.560000px;}
.fs4_c01367{font-size:40.320000px;}
.fsc_c01367{font-size:43.200000px;}
.fs3_c01367{font-size:51.840000px;}
.fs2_c01367{font-size:54.720000px;}
.fs0_c01367{font-size:57.600000px;}
.fs7_c01367{font-size:60.480000px;}
.fsb_c01367{font-size:63.360000px;}
.fs9_c01367{font-size:66.240000px;}
.fs5_c01367{font-size:69.120000px;}
.fs8_c01367{font-size:72.000000px;}
.fs1_c01367{font-size:74.880000px;}
.fs6_c01367{font-size:77.760000px;}
.y0_c01367{bottom:0.000000px;}
.y4e_c01367{bottom:93.600000px;}
.y4d_c01367{bottom:95.040000px;}
.y49_c01367{bottom:126.000000px;}
.y4c_c01367{bottom:128.160000px;}
.y4a_c01367{bottom:128.880000px;}
.y48_c01367{bottom:129.600000px;}
.y6f_c01367{bottom:130.320000px;}
.y4b_c01367{bottom:131.040000px;}
.y70_c01367{bottom:131.760000px;}
.y46_c01367{bottom:169.200000px;}
.y47_c01367{bottom:169.920000px;}
.y44_c01367{bottom:172.080000px;}
.y6c_c01367{bottom:172.800000px;}
.y45_c01367{bottom:173.520000px;}
.y6e_c01367{bottom:174.960000px;}
.y6d_c01367{bottom:175.680000px;}
.y3f_c01367{bottom:211.680000px;}
.y42_c01367{bottom:213.120000px;}
.y40_c01367{bottom:213.840000px;}
.y41_c01367{bottom:214.560000px;}
.y3e_c01367{bottom:215.280000px;}
.y43_c01367{bottom:216.000000px;}
.y6a_c01367{bottom:216.720000px;}
.y6b_c01367{bottom:218.160000px;}
.y3b_c01367{bottom:255.600000px;}
.y3c_c01367{bottom:257.760000px;}
.y3a_c01367{bottom:258.480000px;}
.y3d_c01367{bottom:259.200000px;}
.y69_c01367{bottom:259.920000px;}
.y68_c01367{bottom:260.640000px;}
.y67_c01367{bottom:261.360000px;}
.y38_c01367{bottom:300.240000px;}
.y39_c01367{bottom:302.400000px;}
.y37_c01367{bottom:303.120000px;}
.y33_c01367{bottom:331.200000px;}
.y34_c01367{bottom:332.640000px;}
.y35_c01367{bottom:333.360000px;}
.y64_c01367{bottom:334.080000px;}
.y32_c01367{bottom:334.800000px;}
.y36_c01367{bottom:336.240000px;}
.y65_c01367{bottom:336.960000px;}
.y66_c01367{bottom:338.400000px;}
.y31_c01367{bottom:375.840000px;}
.y30_c01367{bottom:378.000000px;}
.y63_c01367{bottom:378.720000px;}
.y62_c01367{bottom:380.160000px;}
.y2f_c01367{bottom:418.320000px;}
.y2e_c01367{bottom:421.920000px;}
.y61_c01367{bottom:422.640000px;}
.y2c_c01367{bottom:462.240000px;}
.y2b_c01367{bottom:464.400000px;}
.y60_c01367{bottom:465.840000px;}
.y2d_c01367{bottom:466.560000px;}
.y2a_c01367{bottom:506.160000px;}
.y29_c01367{bottom:508.320000px;}
.y5d_c01367{bottom:509.040000px;}
.y5e_c01367{bottom:509.760000px;}
.y5f_c01367{bottom:510.480000px;}
.y28_c01367{bottom:550.080000px;}
.y5c_c01367{bottom:550.800000px;}
.y27_c01367{bottom:551.520000px;}
.y24_c01367{bottom:592.560000px;}
.y23_c01367{bottom:593.280000px;}
.y5b_c01367{bottom:594.000000px;}
.y22_c01367{bottom:594.720000px;}
.y25_c01367{bottom:595.440000px;}
.y26_c01367{bottom:596.160000px;}
.y1f_c01367{bottom:635.760000px;}
.y21_c01367{bottom:636.480000px;}
.y1e_c01367{bottom:637.920000px;}
.y20_c01367{bottom:638.640000px;}
.y5a_c01367{bottom:678.240000px;}
.y1d_c01367{bottom:678.960000px;}
.y1c_c01367{bottom:681.120000px;}
.y1b_c01367{bottom:720.000000px;}
.y58_c01367{bottom:720.720000px;}
.y59_c01367{bottom:721.440000px;}
.y17_c01367{bottom:722.160000px;}
.y19_c01367{bottom:722.880000px;}
.y16_c01367{bottom:723.600000px;}
.y1a_c01367{bottom:724.320000px;}
.y18_c01367{bottom:725.760000px;}
.y57_c01367{bottom:764.640000px;}
.y15_c01367{bottom:765.360000px;}
.y14_c01367{bottom:767.520000px;}
.y56_c01367{bottom:807.840000px;}
.y13_c01367{bottom:808.560000px;}
.y12_c01367{bottom:809.280000px;}
.y11_c01367{bottom:810.000000px;}
.y55_c01367{bottom:851.040000px;}
.y10_c01367{bottom:852.480000px;}
.yf_c01367{bottom:853.200000px;}
.ye_c01367{bottom:894.960000px;}
.yd_c01367{bottom:896.400000px;}
.yc_c01367{bottom:936.720000px;}
.y54_c01367{bottom:937.440000px;}
.y9_c01367{bottom:938.160000px;}
.yb_c01367{bottom:938.880000px;}
.y8_c01367{bottom:941.040000px;}
.ya_c01367{bottom:942.480000px;}
.y51_c01367{bottom:979.200000px;}
.y52_c01367{bottom:979.920000px;}
.y6_c01367{bottom:981.360000px;}
.y53_c01367{bottom:982.080000px;}
.y5_c01367{bottom:984.240000px;}
.y7_c01367{bottom:984.960000px;}
.y50_c01367{bottom:1023.840000px;}
.y4_c01367{bottom:1024.560000px;}
.y2_c01367{bottom:1025.280000px;}
.y1_c01367{bottom:1028.160000px;}
.y3_c01367{bottom:1028.880000px;}
.y4f_c01367{bottom:1092.960000px;}
.hf_c01367{height:25.917187px;}
.hc_c01367{height:31.100625px;}
.h6_c01367{height:36.284062px;}
.he_c01367{height:38.875781px;}
.h5_c01367{height:46.650937px;}
.h4_c01367{height:49.242656px;}
.h2_c01367{height:51.834375px;}
.h9_c01367{height:54.426094px;}
.hd_c01367{height:57.017812px;}
.hb_c01367{height:59.609531px;}
.h7_c01367{height:62.201250px;}
.ha_c01367{height:64.792969px;}
.h3_c01367{height:67.384687px;}
.h8_c01367{height:69.976406px;}
.h1_c01367{height:1149.000000px;}
.h0_c01367{height:1149.120000px;}
.w0_c01367{width:781.920000px;}
.w1_c01367{width:782.250000px;}
.x0_c01367{left:0.000000px;}
.x1_c01367{left:58.320000px;}
.x5_c01367{left:60.480000px;}
.x1f_c01367{left:79.920000px;}
.x19_c01367{left:108.000000px;}
.x14_c01367{left:109.440000px;}
.x9_c01367{left:110.880000px;}
.x2_c01367{left:112.320000px;}
.x1a_c01367{left:153.360000px;}
.x1c_c01367{left:174.960000px;}
.xb_c01367{left:196.560000px;}
.x3_c01367{left:198.720000px;}
.x1b_c01367{left:208.080000px;}
.xa_c01367{left:241.920000px;}
.x15_c01367{left:249.840000px;}
.x1d_c01367{left:251.280000px;}
.x4_c01367{left:253.440000px;}
.x6_c01367{left:262.800000px;}
.x10_c01367{left:272.160000px;}
.x21_c01367{left:281.520000px;}
.x13_c01367{left:295.200000px;}
.xc_c01367{left:296.640000px;}
.x7_c01367{left:307.440000px;}
.x11_c01367{left:326.160000px;}
.x20_c01367{left:337.680000px;}
.x12_c01367{left:370.800000px;}
.x16_c01367{left:380.880000px;}
.xf_c01367{left:413.280000px;}
.x8_c01367{left:414.720000px;}
.x1e_c01367{left:423.360000px;}
.x17_c01367{left:434.880000px;}
.xd_c01367{left:457.200000px;}
.x22_c01367{left:466.560000px;}
.xe_c01367{left:499.680000px;}
.x18_c01367{left:584.640000px;}
.x2a_c01367{left:586.080000px;}
.x24_c01367{left:588.240000px;}
.x31_c01367{left:605.520000px;}
.x2d_c01367{left:606.960000px;}
.x25_c01367{left:609.120000px;}
.x32_c01367{left:638.640000px;}
.x2e_c01367{left:640.080000px;}
.x27_c01367{left:641.520000px;}
.x35_c01367{left:670.320000px;}
.x23_c01367{left:671.760000px;}
.x2b_c01367{left:673.200000px;}
.x28_c01367{left:674.640000px;}
.x36_c01367{left:703.440000px;}
.x34_c01367{left:713.520000px;}
.x30_c01367{left:714.960000px;}
.x2c_c01367{left:716.400000px;}
.x26_c01367{left:717.840000px;}
.x33_c01367{left:734.400000px;}
.x2f_c01367{left:736.560000px;}
.x29_c01367{left:738.000000px;}
@media print{
.v0_c01367{vertical-align:0.000000pt;}
.ls0_c01367{letter-spacing:0.000000pt;}
.ws0_c01367{word-spacing:0.000000pt;}
.fsd_c01367{font-size:25.600000pt;}
.fsa_c01367{font-size:30.720000pt;}
.fs4_c01367{font-size:35.840000pt;}
.fsc_c01367{font-size:38.400000pt;}
.fs3_c01367{font-size:46.080000pt;}
.fs2_c01367{font-size:48.640000pt;}
.fs0_c01367{font-size:51.200000pt;}
.fs7_c01367{font-size:53.760000pt;}
.fsb_c01367{font-size:56.320000pt;}
.fs9_c01367{font-size:58.880000pt;}
.fs5_c01367{font-size:61.440000pt;}
.fs8_c01367{font-size:64.000000pt;}
.fs1_c01367{font-size:66.560000pt;}
.fs6_c01367{font-size:69.120000pt;}
.y0_c01367{bottom:0.000000pt;}
.y4e_c01367{bottom:83.200000pt;}
.y4d_c01367{bottom:84.480000pt;}
.y49_c01367{bottom:112.000000pt;}
.y4c_c01367{bottom:113.920000pt;}
.y4a_c01367{bottom:114.560000pt;}
.y48_c01367{bottom:115.200000pt;}
.y6f_c01367{bottom:115.840000pt;}
.y4b_c01367{bottom:116.480000pt;}
.y70_c01367{bottom:117.120000pt;}
.y46_c01367{bottom:150.400000pt;}
.y47_c01367{bottom:151.040000pt;}
.y44_c01367{bottom:152.960000pt;}
.y6c_c01367{bottom:153.600000pt;}
.y45_c01367{bottom:154.240000pt;}
.y6e_c01367{bottom:155.520000pt;}
.y6d_c01367{bottom:156.160000pt;}
.y3f_c01367{bottom:188.160000pt;}
.y42_c01367{bottom:189.440000pt;}
.y40_c01367{bottom:190.080000pt;}
.y41_c01367{bottom:190.720000pt;}
.y3e_c01367{bottom:191.360000pt;}
.y43_c01367{bottom:192.000000pt;}
.y6a_c01367{bottom:192.640000pt;}
.y6b_c01367{bottom:193.920000pt;}
.y3b_c01367{bottom:227.200000pt;}
.y3c_c01367{bottom:229.120000pt;}
.y3a_c01367{bottom:229.760000pt;}
.y3d_c01367{bottom:230.400000pt;}
.y69_c01367{bottom:231.040000pt;}
.y68_c01367{bottom:231.680000pt;}
.y67_c01367{bottom:232.320000pt;}
.y38_c01367{bottom:266.880000pt;}
.y39_c01367{bottom:268.800000pt;}
.y37_c01367{bottom:269.440000pt;}
.y33_c01367{bottom:294.400000pt;}
.y34_c01367{bottom:295.680000pt;}
.y35_c01367{bottom:296.320000pt;}
.y64_c01367{bottom:296.960000pt;}
.y32_c01367{bottom:297.600000pt;}
.y36_c01367{bottom:298.880000pt;}
.y65_c01367{bottom:299.520000pt;}
.y66_c01367{bottom:300.800000pt;}
.y31_c01367{bottom:334.080000pt;}
.y30_c01367{bottom:336.000000pt;}
.y63_c01367{bottom:336.640000pt;}
.y62_c01367{bottom:337.920000pt;}
.y2f_c01367{bottom:371.840000pt;}
.y2e_c01367{bottom:375.040000pt;}
.y61_c01367{bottom:375.680000pt;}
.y2c_c01367{bottom:410.880000pt;}
.y2b_c01367{bottom:412.800000pt;}
.y60_c01367{bottom:414.080000pt;}
.y2d_c01367{bottom:414.720000pt;}
.y2a_c01367{bottom:449.920000pt;}
.y29_c01367{bottom:451.840000pt;}
.y5d_c01367{bottom:452.480000pt;}
.y5e_c01367{bottom:453.120000pt;}
.y5f_c01367{bottom:453.760000pt;}
.y28_c01367{bottom:488.960000pt;}
.y5c_c01367{bottom:489.600000pt;}
.y27_c01367{bottom:490.240000pt;}
.y24_c01367{bottom:526.720000pt;}
.y23_c01367{bottom:527.360000pt;}
.y5b_c01367{bottom:528.000000pt;}
.y22_c01367{bottom:528.640000pt;}
.y25_c01367{bottom:529.280000pt;}
.y26_c01367{bottom:529.920000pt;}
.y1f_c01367{bottom:565.120000pt;}
.y21_c01367{bottom:565.760000pt;}
.y1e_c01367{bottom:567.040000pt;}
.y20_c01367{bottom:567.680000pt;}
.y5a_c01367{bottom:602.880000pt;}
.y1d_c01367{bottom:603.520000pt;}
.y1c_c01367{bottom:605.440000pt;}
.y1b_c01367{bottom:640.000000pt;}
.y58_c01367{bottom:640.640000pt;}
.y59_c01367{bottom:641.280000pt;}
.y17_c01367{bottom:641.920000pt;}
.y19_c01367{bottom:642.560000pt;}
.y16_c01367{bottom:643.200000pt;}
.y1a_c01367{bottom:643.840000pt;}
.y18_c01367{bottom:645.120000pt;}
.y57_c01367{bottom:679.680000pt;}
.y15_c01367{bottom:680.320000pt;}
.y14_c01367{bottom:682.240000pt;}
.y56_c01367{bottom:718.080000pt;}
.y13_c01367{bottom:718.720000pt;}
.y12_c01367{bottom:719.360000pt;}
.y11_c01367{bottom:720.000000pt;}
.y55_c01367{bottom:756.480000pt;}
.y10_c01367{bottom:757.760000pt;}
.yf_c01367{bottom:758.400000pt;}
.ye_c01367{bottom:795.520000pt;}
.yd_c01367{bottom:796.800000pt;}
.yc_c01367{bottom:832.640000pt;}
.y54_c01367{bottom:833.280000pt;}
.y9_c01367{bottom:833.920000pt;}
.yb_c01367{bottom:834.560000pt;}
.y8_c01367{bottom:836.480000pt;}
.ya_c01367{bottom:837.760000pt;}
.y51_c01367{bottom:870.400000pt;}
.y52_c01367{bottom:871.040000pt;}
.y6_c01367{bottom:872.320000pt;}
.y53_c01367{bottom:872.960000pt;}
.y5_c01367{bottom:874.880000pt;}
.y7_c01367{bottom:875.520000pt;}
.y50_c01367{bottom:910.080000pt;}
.y4_c01367{bottom:910.720000pt;}
.y2_c01367{bottom:911.360000pt;}
.y1_c01367{bottom:913.920000pt;}
.y3_c01367{bottom:914.560000pt;}
.y4f_c01367{bottom:971.520000pt;}
.hf_c01367{height:23.037500pt;}
.hc_c01367{height:27.645000pt;}
.h6_c01367{height:32.252500pt;}
.he_c01367{height:34.556250pt;}
.h5_c01367{height:41.467500pt;}
.h4_c01367{height:43.771250pt;}
.h2_c01367{height:46.075000pt;}
.h9_c01367{height:48.378750pt;}
.hd_c01367{height:50.682500pt;}
.hb_c01367{height:52.986250pt;}
.h7_c01367{height:55.290000pt;}
.ha_c01367{height:57.593750pt;}
.h3_c01367{height:59.897500pt;}
.h8_c01367{height:62.201250pt;}
.h1_c01367{height:1021.333333pt;}
.h0_c01367{height:1021.440000pt;}
.w0_c01367{width:695.040000pt;}
.w1_c01367{width:695.333333pt;}
.x0_c01367{left:0.000000pt;}
.x1_c01367{left:51.840000pt;}
.x5_c01367{left:53.760000pt;}
.x1f_c01367{left:71.040000pt;}
.x19_c01367{left:96.000000pt;}
.x14_c01367{left:97.280000pt;}
.x9_c01367{left:98.560000pt;}
.x2_c01367{left:99.840000pt;}
.x1a_c01367{left:136.320000pt;}
.x1c_c01367{left:155.520000pt;}
.xb_c01367{left:174.720000pt;}
.x3_c01367{left:176.640000pt;}
.x1b_c01367{left:184.960000pt;}
.xa_c01367{left:215.040000pt;}
.x15_c01367{left:222.080000pt;}
.x1d_c01367{left:223.360000pt;}
.x4_c01367{left:225.280000pt;}
.x6_c01367{left:233.600000pt;}
.x10_c01367{left:241.920000pt;}
.x21_c01367{left:250.240000pt;}
.x13_c01367{left:262.400000pt;}
.xc_c01367{left:263.680000pt;}
.x7_c01367{left:273.280000pt;}
.x11_c01367{left:289.920000pt;}
.x20_c01367{left:300.160000pt;}
.x12_c01367{left:329.600000pt;}
.x16_c01367{left:338.560000pt;}
.xf_c01367{left:367.360000pt;}
.x8_c01367{left:368.640000pt;}
.x1e_c01367{left:376.320000pt;}
.x17_c01367{left:386.560000pt;}
.xd_c01367{left:406.400000pt;}
.x22_c01367{left:414.720000pt;}
.xe_c01367{left:444.160000pt;}
.x18_c01367{left:519.680000pt;}
.x2a_c01367{left:520.960000pt;}
.x24_c01367{left:522.880000pt;}
.x31_c01367{left:538.240000pt;}
.x2d_c01367{left:539.520000pt;}
.x25_c01367{left:541.440000pt;}
.x32_c01367{left:567.680000pt;}
.x2e_c01367{left:568.960000pt;}
.x27_c01367{left:570.240000pt;}
.x35_c01367{left:595.840000pt;}
.x23_c01367{left:597.120000pt;}
.x2b_c01367{left:598.400000pt;}
.x28_c01367{left:599.680000pt;}
.x36_c01367{left:625.280000pt;}
.x34_c01367{left:634.240000pt;}
.x30_c01367{left:635.520000pt;}
.x2c_c01367{left:636.800000pt;}
.x26_c01367{left:638.080000pt;}
.x33_c01367{left:652.800000pt;}
.x2f_c01367{left:654.720000pt;}
.x29_c01367{left:656.000000pt;}
}





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

.ir_c01368:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01368{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01368;src:url('chunks/assets/font_e555ae314c8061b0ec0ccd21.woff2')format("woff");}.ff1_c01368{font-family:ff1_c01368;line-height:1.109863;font-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_c01368{transform:matrix(0.169625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169625,0.000000,0.000000,0.250000,0,0);}
.m14_c01368{transform:matrix(0.182925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182925,0.000000,0.000000,0.250000,0,0);}
.m1b_c01368{transform:matrix(0.196475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196475,0.000000,0.000000,0.250000,0,0);}
.m4c_c01368{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01368{transform:matrix(0.217425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217425,0.000000,0.000000,0.250000,0,0);}
.m50_c01368{transform:matrix(0.227550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227550,0.000000,0.000000,0.250000,0,0);}
.m49_c01368{transform:matrix(0.231150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231150,0.000000,0.000000,0.250000,0,0);}
.m12_c01368{transform:matrix(0.231725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231725,0.000000,0.000000,0.250000,0,0);}
.m51_c01368{transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);}
.m4f_c01368{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m1e_c01368{transform:matrix(0.243775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243775,0.000000,0.000000,0.250000,0,0);}
.m27_c01368{transform:matrix(0.247825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247825,0.000000,0.000000,0.250000,0,0);}
.m1_c01368{transform:matrix(0.247950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247950,0.000000,0.000000,0.250000,0,0);}
.m20_c01368{transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);}
.m13_c01368{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01368{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);}
.m2a_c01368{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);}
.m46_c01368{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m2_c01368{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_c01368{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);}
.m39_c01368{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);}
.m4b_c01368{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m4_c01368{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_c01368{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_c01368{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.md_c01368{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m15_c01368{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);}
.m2c_c01368{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m10_c01368{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mc_c01368{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m9_c01368{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01368{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m8_c01368{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01368{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m47_c01368{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m17_c01368{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01368{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m30_c01368{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m25_c01368{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m4a_c01368{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m11_c01368{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m29_c01368{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m44_c01368{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m32_c01368{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);}
.m3a_c01368{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m37_c01368{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m19_c01368{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);}
.m45_c01368{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01368{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);}
.m18_c01368{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m6_c01368{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01368{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);}
.m1a_c01368{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01368{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m41_c01368{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m31_c01368{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m3_c01368{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);}
.m2b_c01368{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);}
.m4e_c01368{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);}
.m0_c01368{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m28_c01368{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);}
.m16_c01368{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m5_c01368{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m36_c01368{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01368{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);}
.m43_c01368{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01368{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01368{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m21_c01368{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m35_c01368{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01368{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m42_c01368{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);}
.m40_c01368{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);}
.mb_c01368{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m38_c01368{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m33_c01368{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01368{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);}
.m34_c01368{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m48_c01368{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m22_c01368{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01368{transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);}
.m24_c01368{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.v1_c01368{vertical-align:-5.760000px;}
.v2_c01368{vertical-align:-2.880000px;}
.v0_c01368{vertical-align:0.000000px;}
.ls0_c01368{letter-spacing:0.000000px;}
.sc__c01368{text-shadow:none;}
.sc0_c01368{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01368{-webkit-text-stroke:0px transparent;}
.sc0_c01368{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01368{word-spacing:0.000000px;}
.ws2_c01368{word-spacing:6.757200px;}
.ws0_c01368{word-spacing:9.212400px;}
.ws1_c01368{word-spacing:11.690400px;}
.fc0_c01368{color:transparent;}
.fs10_c01368{font-size:17.280000px;}
.fsf_c01368{font-size:34.560000px;}
.fs12_c01368{font-size:37.440000px;}
.fs11_c01368{font-size:40.320000px;}
.fse_c01368{font-size:43.200000px;}
.fsa_c01368{font-size:48.960000px;}
.fsb_c01368{font-size:51.840000px;}
.fs9_c01368{font-size:54.720000px;}
.fs4_c01368{font-size:57.600000px;}
.fs0_c01368{font-size:60.480000px;}
.fs3_c01368{font-size:63.360000px;}
.fs6_c01368{font-size:66.240000px;}
.fs5_c01368{font-size:69.120000px;}
.fsd_c01368{font-size:72.000000px;}
.fs2_c01368{font-size:74.880000px;}
.fs1_c01368{font-size:77.760000px;}
.fs7_c01368{font-size:80.640000px;}
.fsc_c01368{font-size:83.520000px;}
.fs8_c01368{font-size:103.680000px;}
.y0_c01368{bottom:0.000000px;}
.y58_c01368{bottom:67.680000px;}
.y5a_c01368{bottom:68.400000px;}
.y59_c01368{bottom:69.120000px;}
.y57_c01368{bottom:71.280000px;}
.y7c_c01368{bottom:72.720000px;}
.y7b_c01368{bottom:73.440000px;}
.y54_c01368{bottom:110.880000px;}
.y56_c01368{bottom:112.320000px;}
.y55_c01368{bottom:113.760000px;}
.y53_c01368{bottom:115.920000px;}
.y52_c01368{bottom:117.360000px;}
.y7a_c01368{bottom:118.800000px;}
.y4f_c01368{bottom:155.520000px;}
.y51_c01368{bottom:156.240000px;}
.y4e_c01368{bottom:157.680000px;}
.y50_c01368{bottom:158.400000px;}
.y78_c01368{bottom:159.120000px;}
.y79_c01368{bottom:160.560000px;}
.y4d_c01368{bottom:198.720000px;}
.y4c_c01368{bottom:202.320000px;}
.y77_c01368{bottom:203.760000px;}
.y49_c01368{bottom:243.360000px;}
.y4b_c01368{bottom:244.080000px;}
.y48_c01368{bottom:244.800000px;}
.y4a_c01368{bottom:245.520000px;}
.y74_c01368{bottom:247.680000px;}
.y75_c01368{bottom:248.400000px;}
.y76_c01368{bottom:249.840000px;}
.y45_c01368{bottom:286.560000px;}
.y47_c01368{bottom:288.720000px;}
.y46_c01368{bottom:289.440000px;}
.y41_c01368{bottom:318.240000px;}
.y40_c01368{bottom:319.680000px;}
.y43_c01368{bottom:320.400000px;}
.y3f_c01368{bottom:321.120000px;}
.y72_c01368{bottom:321.840000px;}
.y42_c01368{bottom:322.560000px;}
.y44_c01368{bottom:324.000000px;}
.y73_c01368{bottom:324.720000px;}
.y3d_c01368{bottom:362.880000px;}
.y3b_c01368{bottom:363.600000px;}
.y3c_c01368{bottom:364.320000px;}
.y3e_c01368{bottom:365.040000px;}
.y71_c01368{bottom:365.760000px;}
.y70_c01368{bottom:366.480000px;}
.y3a_c01368{bottom:404.640000px;}
.y39_c01368{bottom:406.800000px;}
.y38_c01368{bottom:408.240000px;}
.y36_c01368{bottom:437.760000px;}
.y34_c01368{bottom:438.480000px;}
.y32_c01368{bottom:439.200000px;}
.y33_c01368{bottom:439.920000px;}
.y35_c01368{bottom:440.640000px;}
.y37_c01368{bottom:441.360000px;}
.y6e_c01368{bottom:442.080000px;}
.y6f_c01368{bottom:442.800000px;}
.y31_c01368{bottom:480.960000px;}
.y2f_c01368{bottom:482.400000px;}
.y6c_c01368{bottom:483.120000px;}
.y30_c01368{bottom:483.840000px;}
.y6b_c01368{bottom:485.280000px;}
.y6d_c01368{bottom:486.000000px;}
.y2d_c01368{bottom:525.600000px;}
.y2e_c01368{bottom:527.040000px;}
.y2c_c01368{bottom:556.560000px;}
.y2b_c01368{bottom:557.280000px;}
.y29_c01368{bottom:558.000000px;}
.y6a_c01368{bottom:559.440000px;}
.y2a_c01368{bottom:560.160000px;}
.y69_c01368{bottom:561.600000px;}
.y28_c01368{bottom:599.760000px;}
.y27_c01368{bottom:601.920000px;}
.y68_c01368{bottom:602.640000px;}
.y67_c01368{bottom:603.360000px;}
.y66_c01368{bottom:604.800000px;}
.y26_c01368{bottom:642.960000px;}
.y23_c01368{bottom:644.400000px;}
.y25_c01368{bottom:645.120000px;}
.y65_c01368{bottom:645.840000px;}
.y64_c01368{bottom:647.280000px;}
.y24_c01368{bottom:650.160000px;}
.y63_c01368{bottom:686.160000px;}
.y22_c01368{bottom:686.880000px;}
.y20_c01368{bottom:688.320000px;}
.y62_c01368{bottom:689.040000px;}
.y21_c01368{bottom:689.760000px;}
.y1e_c01368{bottom:730.080000px;}
.y60_c01368{bottom:730.800000px;}
.y1d_c01368{bottom:731.520000px;}
.y61_c01368{bottom:732.240000px;}
.y1f_c01368{bottom:732.960000px;}
.y5f_c01368{bottom:734.400000px;}
.y1c_c01368{bottom:773.280000px;}
.y5e_c01368{bottom:774.000000px;}
.y1b_c01368{bottom:774.720000px;}
.y5d_c01368{bottom:775.440000px;}
.y19_c01368{bottom:815.760000px;}
.y1a_c01368{bottom:817.200000px;}
.y5c_c01368{bottom:817.920000px;}
.y18_c01368{bottom:819.360000px;}
.y5b_c01368{bottom:820.080000px;}
.y16_c01368{bottom:858.960000px;}
.y14_c01368{bottom:860.400000px;}
.y17_c01368{bottom:861.120000px;}
.y15_c01368{bottom:861.840000px;}
.y11_c01368{bottom:894.960000px;}
.y10_c01368{bottom:901.440000px;}
.yf_c01368{bottom:902.880000px;}
.ye_c01368{bottom:904.320000px;}
.y12_c01368{bottom:905.040000px;}
.y13_c01368{bottom:906.480000px;}
.y7_c01368{bottom:945.360000px;}
.yc_c01368{bottom:946.080000px;}
.y6_c01368{bottom:946.800000px;}
.yd_c01368{bottom:947.520000px;}
.y5_c01368{bottom:988.560000px;}
.yb_c01368{bottom:989.280000px;}
.y4_c01368{bottom:990.000000px;}
.ya_c01368{bottom:990.720000px;}
.y2_c01368{bottom:1031.760000px;}
.y3_c01368{bottom:1032.480000px;}
.y1_c01368{bottom:1033.200000px;}
.y9_c01368{bottom:1034.640000px;}
.y8_c01368{bottom:1088.640000px;}
.h12_c01368{height:15.550313px;}
.h11_c01368{height:31.100625px;}
.h14_c01368{height:33.692344px;}
.h13_c01368{height:36.284062px;}
.h10_c01368{height:38.875781px;}
.hc_c01368{height:44.059219px;}
.hd_c01368{height:46.650937px;}
.hb_c01368{height:49.242656px;}
.h6_c01368{height:51.834375px;}
.h2_c01368{height:54.426094px;}
.h5_c01368{height:57.017812px;}
.h8_c01368{height:59.609531px;}
.h7_c01368{height:62.201250px;}
.hf_c01368{height:64.792969px;}
.h4_c01368{height:67.384687px;}
.h3_c01368{height:69.976406px;}
.h9_c01368{height:72.568125px;}
.he_c01368{height:75.159844px;}
.ha_c01368{height:93.301875px;}
.h1_c01368{height:1145.250000px;}
.h0_c01368{height:1145.520000px;}
.w0_c01368{width:776.880000px;}
.w1_c01368{width:777.000000px;}
.x0_c01368{left:0.000000px;}
.x1_c01368{left:56.160000px;}
.x1a_c01368{left:58.320000px;}
.x2b_c01368{left:59.760000px;}
.x19_c01368{left:79.200000px;}
.x1b_c01368{left:88.560000px;}
.x22_c01368{left:99.360000px;}
.x2_c01368{left:109.440000px;}
.x23_c01368{left:154.080000px;}
.x28_c01368{left:164.880000px;}
.x10_c01368{left:185.760000px;}
.x17_c01368{left:197.280000px;}
.x3_c01368{left:207.360000px;}
.x20_c01368{left:218.160000px;}
.x1c_c01368{left:229.680000px;}
.x16_c01368{left:239.760000px;}
.xd_c01368{left:250.560000px;}
.x29_c01368{left:260.640000px;}
.x24_c01368{left:272.880000px;}
.x2a_c01368{left:305.280000px;}
.x2c_c01368{left:326.880000px;}
.x11_c01368{left:336.960000px;}
.xe_c01368{left:339.120000px;}
.x1d_c01368{left:358.560000px;}
.x25_c01368{left:390.960000px;}
.x12_c01368{left:392.400000px;}
.x18_c01368{left:401.760000px;}
.x1e_c01368{left:412.560000px;}
.x26_c01368{left:444.960000px;}
.x13_c01368{left:509.760000px;}
.x21_c01368{left:529.200000px;}
.xf_c01368{left:530.640000px;}
.x27_c01368{left:550.800000px;}
.x1f_c01368{left:552.240000px;}
.x14_c01368{left:562.320000px;}
.x2f_c01368{left:583.920000px;}
.x5_c01368{left:585.360000px;}
.x2e_c01368{left:605.520000px;}
.x6_c01368{left:606.960000px;}
.x15_c01368{left:611.280000px;}
.x2d_c01368{left:617.760000px;}
.x33_c01368{left:637.200000px;}
.x30_c01368{left:638.640000px;}
.xb_c01368{left:640.080000px;}
.x9_c01368{left:642.240000px;}
.x4_c01368{left:671.040000px;}
.x7_c01368{left:673.200000px;}
.x34_c01368{left:681.840000px;}
.x8_c01368{left:705.600000px;}
.x31_c01368{left:712.800000px;}
.xc_c01368{left:714.240000px;}
.xa_c01368{left:715.680000px;}
.x32_c01368{left:733.680000px;}
@media print{
.v1_c01368{vertical-align:-5.120000pt;}
.v2_c01368{vertical-align:-2.560000pt;}
.v0_c01368{vertical-align:0.000000pt;}
.ls0_c01368{letter-spacing:0.000000pt;}
.ws3_c01368{word-spacing:0.000000pt;}
.ws2_c01368{word-spacing:6.006400pt;}
.ws0_c01368{word-spacing:8.188800pt;}
.ws1_c01368{word-spacing:10.391467pt;}
.fs10_c01368{font-size:15.360000pt;}
.fsf_c01368{font-size:30.720000pt;}
.fs12_c01368{font-size:33.280000pt;}
.fs11_c01368{font-size:35.840000pt;}
.fse_c01368{font-size:38.400000pt;}
.fsa_c01368{font-size:43.520000pt;}
.fsb_c01368{font-size:46.080000pt;}
.fs9_c01368{font-size:48.640000pt;}
.fs4_c01368{font-size:51.200000pt;}
.fs0_c01368{font-size:53.760000pt;}
.fs3_c01368{font-size:56.320000pt;}
.fs6_c01368{font-size:58.880000pt;}
.fs5_c01368{font-size:61.440000pt;}
.fsd_c01368{font-size:64.000000pt;}
.fs2_c01368{font-size:66.560000pt;}
.fs1_c01368{font-size:69.120000pt;}
.fs7_c01368{font-size:71.680000pt;}
.fsc_c01368{font-size:74.240000pt;}
.fs8_c01368{font-size:92.160000pt;}
.y0_c01368{bottom:0.000000pt;}
.y58_c01368{bottom:60.160000pt;}
.y5a_c01368{bottom:60.800000pt;}
.y59_c01368{bottom:61.440000pt;}
.y57_c01368{bottom:63.360000pt;}
.y7c_c01368{bottom:64.640000pt;}
.y7b_c01368{bottom:65.280000pt;}
.y54_c01368{bottom:98.560000pt;}
.y56_c01368{bottom:99.840000pt;}
.y55_c01368{bottom:101.120000pt;}
.y53_c01368{bottom:103.040000pt;}
.y52_c01368{bottom:104.320000pt;}
.y7a_c01368{bottom:105.600000pt;}
.y4f_c01368{bottom:138.240000pt;}
.y51_c01368{bottom:138.880000pt;}
.y4e_c01368{bottom:140.160000pt;}
.y50_c01368{bottom:140.800000pt;}
.y78_c01368{bottom:141.440000pt;}
.y79_c01368{bottom:142.720000pt;}
.y4d_c01368{bottom:176.640000pt;}
.y4c_c01368{bottom:179.840000pt;}
.y77_c01368{bottom:181.120000pt;}
.y49_c01368{bottom:216.320000pt;}
.y4b_c01368{bottom:216.960000pt;}
.y48_c01368{bottom:217.600000pt;}
.y4a_c01368{bottom:218.240000pt;}
.y74_c01368{bottom:220.160000pt;}
.y75_c01368{bottom:220.800000pt;}
.y76_c01368{bottom:222.080000pt;}
.y45_c01368{bottom:254.720000pt;}
.y47_c01368{bottom:256.640000pt;}
.y46_c01368{bottom:257.280000pt;}
.y41_c01368{bottom:282.880000pt;}
.y40_c01368{bottom:284.160000pt;}
.y43_c01368{bottom:284.800000pt;}
.y3f_c01368{bottom:285.440000pt;}
.y72_c01368{bottom:286.080000pt;}
.y42_c01368{bottom:286.720000pt;}
.y44_c01368{bottom:288.000000pt;}
.y73_c01368{bottom:288.640000pt;}
.y3d_c01368{bottom:322.560000pt;}
.y3b_c01368{bottom:323.200000pt;}
.y3c_c01368{bottom:323.840000pt;}
.y3e_c01368{bottom:324.480000pt;}
.y71_c01368{bottom:325.120000pt;}
.y70_c01368{bottom:325.760000pt;}
.y3a_c01368{bottom:359.680000pt;}
.y39_c01368{bottom:361.600000pt;}
.y38_c01368{bottom:362.880000pt;}
.y36_c01368{bottom:389.120000pt;}
.y34_c01368{bottom:389.760000pt;}
.y32_c01368{bottom:390.400000pt;}
.y33_c01368{bottom:391.040000pt;}
.y35_c01368{bottom:391.680000pt;}
.y37_c01368{bottom:392.320000pt;}
.y6e_c01368{bottom:392.960000pt;}
.y6f_c01368{bottom:393.600000pt;}
.y31_c01368{bottom:427.520000pt;}
.y2f_c01368{bottom:428.800000pt;}
.y6c_c01368{bottom:429.440000pt;}
.y30_c01368{bottom:430.080000pt;}
.y6b_c01368{bottom:431.360000pt;}
.y6d_c01368{bottom:432.000000pt;}
.y2d_c01368{bottom:467.200000pt;}
.y2e_c01368{bottom:468.480000pt;}
.y2c_c01368{bottom:494.720000pt;}
.y2b_c01368{bottom:495.360000pt;}
.y29_c01368{bottom:496.000000pt;}
.y6a_c01368{bottom:497.280000pt;}
.y2a_c01368{bottom:497.920000pt;}
.y69_c01368{bottom:499.200000pt;}
.y28_c01368{bottom:533.120000pt;}
.y27_c01368{bottom:535.040000pt;}
.y68_c01368{bottom:535.680000pt;}
.y67_c01368{bottom:536.320000pt;}
.y66_c01368{bottom:537.600000pt;}
.y26_c01368{bottom:571.520000pt;}
.y23_c01368{bottom:572.800000pt;}
.y25_c01368{bottom:573.440000pt;}
.y65_c01368{bottom:574.080000pt;}
.y64_c01368{bottom:575.360000pt;}
.y24_c01368{bottom:577.920000pt;}
.y63_c01368{bottom:609.920000pt;}
.y22_c01368{bottom:610.560000pt;}
.y20_c01368{bottom:611.840000pt;}
.y62_c01368{bottom:612.480000pt;}
.y21_c01368{bottom:613.120000pt;}
.y1e_c01368{bottom:648.960000pt;}
.y60_c01368{bottom:649.600000pt;}
.y1d_c01368{bottom:650.240000pt;}
.y61_c01368{bottom:650.880000pt;}
.y1f_c01368{bottom:651.520000pt;}
.y5f_c01368{bottom:652.800000pt;}
.y1c_c01368{bottom:687.360000pt;}
.y5e_c01368{bottom:688.000000pt;}
.y1b_c01368{bottom:688.640000pt;}
.y5d_c01368{bottom:689.280000pt;}
.y19_c01368{bottom:725.120000pt;}
.y1a_c01368{bottom:726.400000pt;}
.y5c_c01368{bottom:727.040000pt;}
.y18_c01368{bottom:728.320000pt;}
.y5b_c01368{bottom:728.960000pt;}
.y16_c01368{bottom:763.520000pt;}
.y14_c01368{bottom:764.800000pt;}
.y17_c01368{bottom:765.440000pt;}
.y15_c01368{bottom:766.080000pt;}
.y11_c01368{bottom:795.520000pt;}
.y10_c01368{bottom:801.280000pt;}
.yf_c01368{bottom:802.560000pt;}
.ye_c01368{bottom:803.840000pt;}
.y12_c01368{bottom:804.480000pt;}
.y13_c01368{bottom:805.760000pt;}
.y7_c01368{bottom:840.320000pt;}
.yc_c01368{bottom:840.960000pt;}
.y6_c01368{bottom:841.600000pt;}
.yd_c01368{bottom:842.240000pt;}
.y5_c01368{bottom:878.720000pt;}
.yb_c01368{bottom:879.360000pt;}
.y4_c01368{bottom:880.000000pt;}
.ya_c01368{bottom:880.640000pt;}
.y2_c01368{bottom:917.120000pt;}
.y3_c01368{bottom:917.760000pt;}
.y1_c01368{bottom:918.400000pt;}
.y9_c01368{bottom:919.680000pt;}
.y8_c01368{bottom:967.680000pt;}
.h12_c01368{height:13.822500pt;}
.h11_c01368{height:27.645000pt;}
.h14_c01368{height:29.948750pt;}
.h13_c01368{height:32.252500pt;}
.h10_c01368{height:34.556250pt;}
.hc_c01368{height:39.163750pt;}
.hd_c01368{height:41.467500pt;}
.hb_c01368{height:43.771250pt;}
.h6_c01368{height:46.075000pt;}
.h2_c01368{height:48.378750pt;}
.h5_c01368{height:50.682500pt;}
.h8_c01368{height:52.986250pt;}
.h7_c01368{height:55.290000pt;}
.hf_c01368{height:57.593750pt;}
.h4_c01368{height:59.897500pt;}
.h3_c01368{height:62.201250pt;}
.h9_c01368{height:64.505000pt;}
.he_c01368{height:66.808750pt;}
.ha_c01368{height:82.935000pt;}
.h1_c01368{height:1018.000000pt;}
.h0_c01368{height:1018.240000pt;}
.w0_c01368{width:690.560000pt;}
.w1_c01368{width:690.666667pt;}
.x0_c01368{left:0.000000pt;}
.x1_c01368{left:49.920000pt;}
.x1a_c01368{left:51.840000pt;}
.x2b_c01368{left:53.120000pt;}
.x19_c01368{left:70.400000pt;}
.x1b_c01368{left:78.720000pt;}
.x22_c01368{left:88.320000pt;}
.x2_c01368{left:97.280000pt;}
.x23_c01368{left:136.960000pt;}
.x28_c01368{left:146.560000pt;}
.x10_c01368{left:165.120000pt;}
.x17_c01368{left:175.360000pt;}
.x3_c01368{left:184.320000pt;}
.x20_c01368{left:193.920000pt;}
.x1c_c01368{left:204.160000pt;}
.x16_c01368{left:213.120000pt;}
.xd_c01368{left:222.720000pt;}
.x29_c01368{left:231.680000pt;}
.x24_c01368{left:242.560000pt;}
.x2a_c01368{left:271.360000pt;}
.x2c_c01368{left:290.560000pt;}
.x11_c01368{left:299.520000pt;}
.xe_c01368{left:301.440000pt;}
.x1d_c01368{left:318.720000pt;}
.x25_c01368{left:347.520000pt;}
.x12_c01368{left:348.800000pt;}
.x18_c01368{left:357.120000pt;}
.x1e_c01368{left:366.720000pt;}
.x26_c01368{left:395.520000pt;}
.x13_c01368{left:453.120000pt;}
.x21_c01368{left:470.400000pt;}
.xf_c01368{left:471.680000pt;}
.x27_c01368{left:489.600000pt;}
.x1f_c01368{left:490.880000pt;}
.x14_c01368{left:499.840000pt;}
.x2f_c01368{left:519.040000pt;}
.x5_c01368{left:520.320000pt;}
.x2e_c01368{left:538.240000pt;}
.x6_c01368{left:539.520000pt;}
.x15_c01368{left:543.360000pt;}
.x2d_c01368{left:549.120000pt;}
.x33_c01368{left:566.400000pt;}
.x30_c01368{left:567.680000pt;}
.xb_c01368{left:568.960000pt;}
.x9_c01368{left:570.880000pt;}
.x4_c01368{left:596.480000pt;}
.x7_c01368{left:598.400000pt;}
.x34_c01368{left:606.080000pt;}
.x8_c01368{left:627.200000pt;}
.x31_c01368{left:633.600000pt;}
.xc_c01368{left:634.880000pt;}
.xa_c01368{left:636.160000pt;}
.x32_c01368{left:652.160000pt;}
}





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

.ir_c01369:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01369{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01369;src:url('chunks/assets/font_0a0f7467ca5d2747ff9d71a8.woff2')format("woff");}.ff1_c01369{font-family:ff1_c01369;line-height:1.109863;font-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_c01369{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m4a_c01369{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);}
.m49_c01369{transform:matrix(0.230550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230550,0.000000,0.000000,0.250000,0,0);}
.m1d_c01369{transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);}
.m2b_c01369{transform:matrix(0.246800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246800,0.000000,0.000000,0.250000,0,0);}
.m14_c01369{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1_c01369{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_c01369{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m17_c01369{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_c01369{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);}
.m42_c01369{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_c01369{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);}
.m22_c01369{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m11_c01369{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m6_c01369{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m2_c01369{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m8_c01369{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m43_c01369{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m7_c01369{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m12_c01369{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m5_c01369{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01369{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m46_c01369{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m33_c01369{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m9_c01369{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m41_c01369{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m24_c01369{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01369{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m47_c01369{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mb_c01369{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m20_c01369{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m28_c01369{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01369{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01369{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m32_c01369{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01369{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m21_c01369{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01369{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);}
.m2a_c01369{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m27_c01369{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m23_c01369{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01369{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.md_c01369{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);}
.m26_c01369{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01369{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);}
.m38_c01369{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01369{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);}
.m36_c01369{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);}
.m37_c01369{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_c01369{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_c01369{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);}
.m2d_c01369{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m3_c01369{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.mc_c01369{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m10_c01369{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m0_c01369{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m16_c01369{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01369{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);}
.m34_c01369{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.me_c01369{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01369{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m39_c01369{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m29_c01369{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);}
.m31_c01369{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01369{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m44_c01369{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m35_c01369{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01369{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);}
.m30_c01369{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m18_c01369{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01369{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);}
.m13_c01369{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);}
.m45_c01369{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01369{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m19_c01369{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.ma_c01369{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01369{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01369{transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01369{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.v0_c01369{vertical-align:0.000000px;}
.ls0_c01369{letter-spacing:0.000000px;}
.sc__c01369{text-shadow:none;}
.sc0_c01369{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01369{-webkit-text-stroke:0px transparent;}
.sc0_c01369{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01369{word-spacing:0.000000px;}
.fc0_c01369{color:transparent;}
.fs7_c01369{font-size:25.920000px;}
.fs6_c01369{font-size:28.800000px;}
.fsa_c01369{font-size:37.440000px;}
.fsc_c01369{font-size:43.200000px;}
.fs9_c01369{font-size:48.960000px;}
.fs8_c01369{font-size:51.840000px;}
.fsb_c01369{font-size:54.720000px;}
.fs0_c01369{font-size:57.600000px;}
.fs3_c01369{font-size:60.480000px;}
.fse_c01369{font-size:63.360000px;}
.fsd_c01369{font-size:66.240000px;}
.fs5_c01369{font-size:69.120000px;}
.fs4_c01369{font-size:72.000000px;}
.fs2_c01369{font-size:74.880000px;}
.fs1_c01369{font-size:77.760000px;}
.fs11_c01369{font-size:83.520000px;}
.fs10_c01369{font-size:95.040000px;}
.fsf_c01369{font-size:100.800000px;}
.y0_c01369{bottom:0.000000px;}
.y61_c01369{bottom:58.320000px;}
.y63_c01369{bottom:60.480000px;}
.y62_c01369{bottom:61.200000px;}
.y60_c01369{bottom:61.920000px;}
.y5f_c01369{bottom:63.360000px;}
.y71_c01369{bottom:64.080000px;}
.y70_c01369{bottom:64.800000px;}
.y5e_c01369{bottom:102.240000px;}
.y5d_c01369{bottom:107.280000px;}
.y5c_c01369{bottom:145.440000px;}
.y5b_c01369{bottom:149.760000px;}
.y6c_c01369{bottom:150.480000px;}
.y6d_c01369{bottom:151.200000px;}
.y6e_c01369{bottom:152.640000px;}
.y6f_c01369{bottom:153.360000px;}
.y57_c01369{bottom:189.360000px;}
.y58_c01369{bottom:190.800000px;}
.y5a_c01369{bottom:191.520000px;}
.y59_c01369{bottom:192.960000px;}
.y56_c01369{bottom:193.680000px;}
.y6a_c01369{bottom:194.400000px;}
.y6b_c01369{bottom:195.840000px;}
.y69_c01369{bottom:196.560000px;}
.y53_c01369{bottom:232.560000px;}
.y55_c01369{bottom:234.000000px;}
.y54_c01369{bottom:236.160000px;}
.y52_c01369{bottom:236.880000px;}
.y68_c01369{bottom:238.320000px;}
.y51_c01369{bottom:276.480000px;}
.y65_c01369{bottom:279.360000px;}
.y50_c01369{bottom:280.080000px;}
.y66_c01369{bottom:280.800000px;}
.y67_c01369{bottom:282.960000px;}
.y4f_c01369{bottom:313.920000px;}
.y4c_c01369{bottom:320.400000px;}
.y4e_c01369{bottom:321.120000px;}
.y4b_c01369{bottom:322.560000px;}
.y4d_c01369{bottom:323.280000px;}
.y64_c01369{bottom:324.000000px;}
.y48_c01369{bottom:362.880000px;}
.y47_c01369{bottom:365.040000px;}
.y46_c01369{bottom:365.760000px;}
.y49_c01369{bottom:366.480000px;}
.y4a_c01369{bottom:369.360000px;}
.y45_c01369{bottom:401.040000px;}
.y41_c01369{bottom:406.800000px;}
.y43_c01369{bottom:408.240000px;}
.y40_c01369{bottom:409.680000px;}
.y42_c01369{bottom:410.400000px;}
.y44_c01369{bottom:411.120000px;}
.y3f_c01369{bottom:443.520000px;}
.y3b_c01369{bottom:450.000000px;}
.y3e_c01369{bottom:452.160000px;}
.y3d_c01369{bottom:452.880000px;}
.y3a_c01369{bottom:453.600000px;}
.y3c_c01369{bottom:454.320000px;}
.y37_c01369{bottom:493.200000px;}
.y38_c01369{bottom:495.360000px;}
.y35_c01369{bottom:496.080000px;}
.y36_c01369{bottom:497.520000px;}
.y39_c01369{bottom:498.240000px;}
.y24_c01369{bottom:541.440000px;}
.y23_c01369{bottom:590.400000px;}
.y20_c01369{bottom:591.120000px;}
.y34_c01369{bottom:591.840000px;}
.y21_c01369{bottom:592.560000px;}
.y1f_c01369{bottom:593.280000px;}
.y22_c01369{bottom:594.720000px;}
.y1b_c01369{bottom:634.320000px;}
.y1e_c01369{bottom:635.040000px;}
.y33_c01369{bottom:635.760000px;}
.y1a_c01369{bottom:637.200000px;}
.y1d_c01369{bottom:637.920000px;}
.y1c_c01369{bottom:638.640000px;}
.y19_c01369{bottom:678.240000px;}
.y32_c01369{bottom:678.960000px;}
.y18_c01369{bottom:679.680000px;}
.y17_c01369{bottom:720.720000px;}
.y16_c01369{bottom:721.440000px;}
.y31_c01369{bottom:722.880000px;}
.y15_c01369{bottom:723.600000px;}
.y30_c01369{bottom:763.920000px;}
.y14_c01369{bottom:764.640000px;}
.y13_c01369{bottom:767.520000px;}
.y2e_c01369{bottom:807.840000px;}
.y11_c01369{bottom:808.560000px;}
.y2f_c01369{bottom:809.280000px;}
.y10_c01369{bottom:810.720000px;}
.y12_c01369{bottom:811.440000px;}
.y2c_c01369{bottom:851.040000px;}
.yf_c01369{bottom:851.760000px;}
.y2d_c01369{bottom:853.200000px;}
.yd_c01369{bottom:853.920000px;}
.ye_c01369{bottom:854.640000px;}
.y2b_c01369{bottom:893.520000px;}
.y2a_c01369{bottom:894.240000px;}
.yc_c01369{bottom:894.960000px;}
.yb_c01369{bottom:896.400000px;}
.ya_c01369{bottom:936.720000px;}
.y29_c01369{bottom:937.440000px;}
.y8_c01369{bottom:938.160000px;}
.y9_c01369{bottom:938.880000px;}
.y7_c01369{bottom:939.600000px;}
.y28_c01369{bottom:979.920000px;}
.y5_c01369{bottom:981.360000px;}
.y6_c01369{bottom:982.080000px;}
.y4_c01369{bottom:982.800000px;}
.y27_c01369{bottom:1023.120000px;}
.y2_c01369{bottom:1023.840000px;}
.y3_c01369{bottom:1024.560000px;}
.y26_c01369{bottom:1026.000000px;}
.y1_c01369{bottom:1027.440000px;}
.y25_c01369{bottom:1101.600000px;}
.h9_c01369{height:23.325469px;}
.h8_c01369{height:25.917187px;}
.hc_c01369{height:33.692344px;}
.he_c01369{height:38.875781px;}
.hb_c01369{height:44.059219px;}
.ha_c01369{height:46.650937px;}
.hd_c01369{height:49.242656px;}
.h2_c01369{height:51.834375px;}
.h5_c01369{height:54.426094px;}
.h10_c01369{height:57.017812px;}
.hf_c01369{height:59.609531px;}
.h7_c01369{height:62.201250px;}
.h6_c01369{height:64.792969px;}
.h4_c01369{height:67.384687px;}
.h3_c01369{height:69.976406px;}
.h13_c01369{height:75.159844px;}
.h12_c01369{height:85.526719px;}
.h11_c01369{height:90.710156px;}
.h1_c01369{height:1146.750000px;}
.h0_c01369{height:1146.960000px;}
.w0_c01369{width:777.600000px;}
.w1_c01369{width:777.750000px;}
.x0_c01369{left:0.000000px;}
.x1_c01369{left:56.160000px;}
.x36_c01369{left:57.600000px;}
.x6_c01369{left:79.200000px;}
.x33_c01369{left:106.560000px;}
.x5_c01369{left:108.000000px;}
.x2_c01369{left:109.440000px;}
.x2d_c01369{left:120.240000px;}
.x3a_c01369{left:162.000000px;}
.x13_c01369{left:164.160000px;}
.x23_c01369{left:193.680000px;}
.x32_c01369{left:195.120000px;}
.x3_c01369{left:207.360000px;}
.x2e_c01369{left:223.200000px;}
.xb_c01369{left:239.760000px;}
.x24_c01369{left:248.400000px;}
.x2f_c01369{left:249.840000px;}
.xc_c01369{left:259.920000px;}
.x7_c01369{left:262.800000px;}
.x3b_c01369{left:269.280000px;}
.x8_c01369{left:272.880000px;}
.x38_c01369{left:280.800000px;}
.x11_c01369{left:291.600000px;}
.x25_c01369{left:293.760000px;}
.xd_c01369{left:303.120000px;}
.x9_c01369{left:314.640000px;}
.x4_c01369{left:326.160000px;}
.x12_c01369{left:336.240000px;}
.x26_c01369{left:347.760000px;}
.x37_c01369{left:357.840000px;}
.xa_c01369{left:369.360000px;}
.x34_c01369{left:378.720000px;}
.xe_c01369{left:381.600000px;}
.x39_c01369{left:388.800000px;}
.x30_c01369{left:432.000000px;}
.xf_c01369{left:433.440000px;}
.x27_c01369{left:443.520000px;}
.x10_c01369{left:475.200000px;}
.x31_c01369{left:486.720000px;}
.x28_c01369{left:495.360000px;}
.x2c_c01369{left:528.480000px;}
.x35_c01369{left:537.840000px;}
.x29_c01369{left:540.000000px;}
.x18_c01369{left:585.360000px;}
.x3c_c01369{left:602.640000px;}
.x20_c01369{left:604.080000px;}
.x1b_c01369{left:605.520000px;}
.x19_c01369{left:617.760000px;}
.x1a_c01369{left:630.720000px;}
.x21_c01369{left:635.760000px;}
.x1f_c01369{left:637.920000px;}
.x15_c01369{left:640.080000px;}
.x14_c01369{left:667.440000px;}
.x22_c01369{left:669.600000px;}
.x1c_c01369{left:681.120000px;}
.x16_c01369{left:682.560000px;}
.x2a_c01369{left:711.360000px;}
.x1e_c01369{left:712.800000px;}
.x1d_c01369{left:714.240000px;}
.x17_c01369{left:715.680000px;}
.x2b_c01369{left:732.240000px;}
@media print{
.v0_c01369{vertical-align:0.000000pt;}
.ls0_c01369{letter-spacing:0.000000pt;}
.ws0_c01369{word-spacing:0.000000pt;}
.fs7_c01369{font-size:23.040000pt;}
.fs6_c01369{font-size:25.600000pt;}
.fsa_c01369{font-size:33.280000pt;}
.fsc_c01369{font-size:38.400000pt;}
.fs9_c01369{font-size:43.520000pt;}
.fs8_c01369{font-size:46.080000pt;}
.fsb_c01369{font-size:48.640000pt;}
.fs0_c01369{font-size:51.200000pt;}
.fs3_c01369{font-size:53.760000pt;}
.fse_c01369{font-size:56.320000pt;}
.fsd_c01369{font-size:58.880000pt;}
.fs5_c01369{font-size:61.440000pt;}
.fs4_c01369{font-size:64.000000pt;}
.fs2_c01369{font-size:66.560000pt;}
.fs1_c01369{font-size:69.120000pt;}
.fs11_c01369{font-size:74.240000pt;}
.fs10_c01369{font-size:84.480000pt;}
.fsf_c01369{font-size:89.600000pt;}
.y0_c01369{bottom:0.000000pt;}
.y61_c01369{bottom:51.840000pt;}
.y63_c01369{bottom:53.760000pt;}
.y62_c01369{bottom:54.400000pt;}
.y60_c01369{bottom:55.040000pt;}
.y5f_c01369{bottom:56.320000pt;}
.y71_c01369{bottom:56.960000pt;}
.y70_c01369{bottom:57.600000pt;}
.y5e_c01369{bottom:90.880000pt;}
.y5d_c01369{bottom:95.360000pt;}
.y5c_c01369{bottom:129.280000pt;}
.y5b_c01369{bottom:133.120000pt;}
.y6c_c01369{bottom:133.760000pt;}
.y6d_c01369{bottom:134.400000pt;}
.y6e_c01369{bottom:135.680000pt;}
.y6f_c01369{bottom:136.320000pt;}
.y57_c01369{bottom:168.320000pt;}
.y58_c01369{bottom:169.600000pt;}
.y5a_c01369{bottom:170.240000pt;}
.y59_c01369{bottom:171.520000pt;}
.y56_c01369{bottom:172.160000pt;}
.y6a_c01369{bottom:172.800000pt;}
.y6b_c01369{bottom:174.080000pt;}
.y69_c01369{bottom:174.720000pt;}
.y53_c01369{bottom:206.720000pt;}
.y55_c01369{bottom:208.000000pt;}
.y54_c01369{bottom:209.920000pt;}
.y52_c01369{bottom:210.560000pt;}
.y68_c01369{bottom:211.840000pt;}
.y51_c01369{bottom:245.760000pt;}
.y65_c01369{bottom:248.320000pt;}
.y50_c01369{bottom:248.960000pt;}
.y66_c01369{bottom:249.600000pt;}
.y67_c01369{bottom:251.520000pt;}
.y4f_c01369{bottom:279.040000pt;}
.y4c_c01369{bottom:284.800000pt;}
.y4e_c01369{bottom:285.440000pt;}
.y4b_c01369{bottom:286.720000pt;}
.y4d_c01369{bottom:287.360000pt;}
.y64_c01369{bottom:288.000000pt;}
.y48_c01369{bottom:322.560000pt;}
.y47_c01369{bottom:324.480000pt;}
.y46_c01369{bottom:325.120000pt;}
.y49_c01369{bottom:325.760000pt;}
.y4a_c01369{bottom:328.320000pt;}
.y45_c01369{bottom:356.480000pt;}
.y41_c01369{bottom:361.600000pt;}
.y43_c01369{bottom:362.880000pt;}
.y40_c01369{bottom:364.160000pt;}
.y42_c01369{bottom:364.800000pt;}
.y44_c01369{bottom:365.440000pt;}
.y3f_c01369{bottom:394.240000pt;}
.y3b_c01369{bottom:400.000000pt;}
.y3e_c01369{bottom:401.920000pt;}
.y3d_c01369{bottom:402.560000pt;}
.y3a_c01369{bottom:403.200000pt;}
.y3c_c01369{bottom:403.840000pt;}
.y37_c01369{bottom:438.400000pt;}
.y38_c01369{bottom:440.320000pt;}
.y35_c01369{bottom:440.960000pt;}
.y36_c01369{bottom:442.240000pt;}
.y39_c01369{bottom:442.880000pt;}
.y24_c01369{bottom:481.280000pt;}
.y23_c01369{bottom:524.800000pt;}
.y20_c01369{bottom:525.440000pt;}
.y34_c01369{bottom:526.080000pt;}
.y21_c01369{bottom:526.720000pt;}
.y1f_c01369{bottom:527.360000pt;}
.y22_c01369{bottom:528.640000pt;}
.y1b_c01369{bottom:563.840000pt;}
.y1e_c01369{bottom:564.480000pt;}
.y33_c01369{bottom:565.120000pt;}
.y1a_c01369{bottom:566.400000pt;}
.y1d_c01369{bottom:567.040000pt;}
.y1c_c01369{bottom:567.680000pt;}
.y19_c01369{bottom:602.880000pt;}
.y32_c01369{bottom:603.520000pt;}
.y18_c01369{bottom:604.160000pt;}
.y17_c01369{bottom:640.640000pt;}
.y16_c01369{bottom:641.280000pt;}
.y31_c01369{bottom:642.560000pt;}
.y15_c01369{bottom:643.200000pt;}
.y30_c01369{bottom:679.040000pt;}
.y14_c01369{bottom:679.680000pt;}
.y13_c01369{bottom:682.240000pt;}
.y2e_c01369{bottom:718.080000pt;}
.y11_c01369{bottom:718.720000pt;}
.y2f_c01369{bottom:719.360000pt;}
.y10_c01369{bottom:720.640000pt;}
.y12_c01369{bottom:721.280000pt;}
.y2c_c01369{bottom:756.480000pt;}
.yf_c01369{bottom:757.120000pt;}
.y2d_c01369{bottom:758.400000pt;}
.yd_c01369{bottom:759.040000pt;}
.ye_c01369{bottom:759.680000pt;}
.y2b_c01369{bottom:794.240000pt;}
.y2a_c01369{bottom:794.880000pt;}
.yc_c01369{bottom:795.520000pt;}
.yb_c01369{bottom:796.800000pt;}
.ya_c01369{bottom:832.640000pt;}
.y29_c01369{bottom:833.280000pt;}
.y8_c01369{bottom:833.920000pt;}
.y9_c01369{bottom:834.560000pt;}
.y7_c01369{bottom:835.200000pt;}
.y28_c01369{bottom:871.040000pt;}
.y5_c01369{bottom:872.320000pt;}
.y6_c01369{bottom:872.960000pt;}
.y4_c01369{bottom:873.600000pt;}
.y27_c01369{bottom:909.440000pt;}
.y2_c01369{bottom:910.080000pt;}
.y3_c01369{bottom:910.720000pt;}
.y26_c01369{bottom:912.000000pt;}
.y1_c01369{bottom:913.280000pt;}
.y25_c01369{bottom:979.200000pt;}
.h9_c01369{height:20.733750pt;}
.h8_c01369{height:23.037500pt;}
.hc_c01369{height:29.948750pt;}
.he_c01369{height:34.556250pt;}
.hb_c01369{height:39.163750pt;}
.ha_c01369{height:41.467500pt;}
.hd_c01369{height:43.771250pt;}
.h2_c01369{height:46.075000pt;}
.h5_c01369{height:48.378750pt;}
.h10_c01369{height:50.682500pt;}
.hf_c01369{height:52.986250pt;}
.h7_c01369{height:55.290000pt;}
.h6_c01369{height:57.593750pt;}
.h4_c01369{height:59.897500pt;}
.h3_c01369{height:62.201250pt;}
.h13_c01369{height:66.808750pt;}
.h12_c01369{height:76.023750pt;}
.h11_c01369{height:80.631250pt;}
.h1_c01369{height:1019.333333pt;}
.h0_c01369{height:1019.520000pt;}
.w0_c01369{width:691.200000pt;}
.w1_c01369{width:691.333333pt;}
.x0_c01369{left:0.000000pt;}
.x1_c01369{left:49.920000pt;}
.x36_c01369{left:51.200000pt;}
.x6_c01369{left:70.400000pt;}
.x33_c01369{left:94.720000pt;}
.x5_c01369{left:96.000000pt;}
.x2_c01369{left:97.280000pt;}
.x2d_c01369{left:106.880000pt;}
.x3a_c01369{left:144.000000pt;}
.x13_c01369{left:145.920000pt;}
.x23_c01369{left:172.160000pt;}
.x32_c01369{left:173.440000pt;}
.x3_c01369{left:184.320000pt;}
.x2e_c01369{left:198.400000pt;}
.xb_c01369{left:213.120000pt;}
.x24_c01369{left:220.800000pt;}
.x2f_c01369{left:222.080000pt;}
.xc_c01369{left:231.040000pt;}
.x7_c01369{left:233.600000pt;}
.x3b_c01369{left:239.360000pt;}
.x8_c01369{left:242.560000pt;}
.x38_c01369{left:249.600000pt;}
.x11_c01369{left:259.200000pt;}
.x25_c01369{left:261.120000pt;}
.xd_c01369{left:269.440000pt;}
.x9_c01369{left:279.680000pt;}
.x4_c01369{left:289.920000pt;}
.x12_c01369{left:298.880000pt;}
.x26_c01369{left:309.120000pt;}
.x37_c01369{left:318.080000pt;}
.xa_c01369{left:328.320000pt;}
.x34_c01369{left:336.640000pt;}
.xe_c01369{left:339.200000pt;}
.x39_c01369{left:345.600000pt;}
.x30_c01369{left:384.000000pt;}
.xf_c01369{left:385.280000pt;}
.x27_c01369{left:394.240000pt;}
.x10_c01369{left:422.400000pt;}
.x31_c01369{left:432.640000pt;}
.x28_c01369{left:440.320000pt;}
.x2c_c01369{left:469.760000pt;}
.x35_c01369{left:478.080000pt;}
.x29_c01369{left:480.000000pt;}
.x18_c01369{left:520.320000pt;}
.x3c_c01369{left:535.680000pt;}
.x20_c01369{left:536.960000pt;}
.x1b_c01369{left:538.240000pt;}
.x19_c01369{left:549.120000pt;}
.x1a_c01369{left:560.640000pt;}
.x21_c01369{left:565.120000pt;}
.x1f_c01369{left:567.040000pt;}
.x15_c01369{left:568.960000pt;}
.x14_c01369{left:593.280000pt;}
.x22_c01369{left:595.200000pt;}
.x1c_c01369{left:605.440000pt;}
.x16_c01369{left:606.720000pt;}
.x2a_c01369{left:632.320000pt;}
.x1e_c01369{left:633.600000pt;}
.x1d_c01369{left:634.880000pt;}
.x17_c01369{left:636.160000pt;}
.x2b_c01369{left:650.880000pt;}
}





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

.ir_c01370:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01370{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01370;src:url('chunks/assets/font_6c192f33e9f6dc573c080213.woff2')format("woff");}.ff1_c01370{font-family:ff1_c01370;line-height:1.109863;font-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_c01370{transform:matrix(0.175550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175550,0.000000,0.000000,0.250000,0,0);}
.m42_c01370{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01370{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);}
.m13_c01370{transform:matrix(0.227375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227375,0.000000,0.000000,0.250000,0,0);}
.m39_c01370{transform:matrix(0.238450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238450,0.000000,0.000000,0.250000,0,0);}
.m36_c01370{transform:matrix(0.242050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242050,0.000000,0.000000,0.250000,0,0);}
.m28_c01370{transform:matrix(0.246925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246925,0.000000,0.000000,0.250000,0,0);}
.m23_c01370{transform:matrix(0.246975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246975,0.000000,0.000000,0.250000,0,0);}
.m40_c01370{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m2d_c01370{transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);}
.m38_c01370{transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);}
.m1f_c01370{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);}
.m2a_c01370{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.me_c01370{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);}
.m3b_c01370{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);}
.m29_c01370{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.ma_c01370{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);}
.m34_c01370{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mc_c01370{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1_c01370{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m7_c01370{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m6_c01370{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01370{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m26_c01370{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m15_c01370{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);}
.m2e_c01370{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);}
.m3a_c01370{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);}
.m3c_c01370{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m4_c01370{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m11_c01370{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m3_c01370{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01370{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.md_c01370{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01370{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m20_c01370{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01370{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01370{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m18_c01370{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m17_c01370{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m35_c01370{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);}
.m45_c01370{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m32_c01370{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_c01370{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m12_c01370{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m43_c01370{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);}
.m27_c01370{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m0_c01370{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m41_c01370{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.mf_c01370{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);}
.m2b_c01370{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);}
.m2_c01370{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01370{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);}
.m19_c01370{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);}
.m22_c01370{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m30_c01370{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01370{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);}
.m1a_c01370{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m25_c01370{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m16_c01370{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m46_c01370{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m24_c01370{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m5_c01370{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m10_c01370{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m37_c01370{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);}
.m2f_c01370{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);}
.m14_c01370{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m21_c01370{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);}
.m31_c01370{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01370{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m8_c01370{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m9_c01370{transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);}
.v1_c01370{vertical-align:-11.520000px;}
.v0_c01370{vertical-align:0.000000px;}
.ls0_c01370{letter-spacing:0.000000px;}
.sc__c01370{text-shadow:none;}
.sc0_c01370{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01370{-webkit-text-stroke:0px transparent;}
.sc0_c01370{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01370{word-spacing:0.000000px;}
.ws0_c01370{word-spacing:13.136947px;}
.ws1_c01370{word-spacing:14.240400px;}
.fc0_c01370{color:transparent;}
.fs7_c01370{font-size:14.400000px;}
.fs6_c01370{font-size:23.040000px;}
.fsf_c01370{font-size:40.320000px;}
.fs4_c01370{font-size:43.200000px;}
.fsc_c01370{font-size:46.080000px;}
.fs10_c01370{font-size:48.960000px;}
.fs3_c01370{font-size:51.840000px;}
.fsb_c01370{font-size:54.720000px;}
.fse_c01370{font-size:57.600000px;}
.fs9_c01370{font-size:60.480000px;}
.fs2_c01370{font-size:63.360000px;}
.fs0_c01370{font-size:66.240000px;}
.fsa_c01370{font-size:69.120000px;}
.fs11_c01370{font-size:72.000000px;}
.fsd_c01370{font-size:74.880000px;}
.fs1_c01370{font-size:77.760000px;}
.fs5_c01370{font-size:80.640000px;}
.fs8_c01370{font-size:83.520000px;}
.y0_c01370{bottom:0.000000px;}
.y47_c01370{bottom:66.960000px;}
.y49_c01370{bottom:68.400000px;}
.y46_c01370{bottom:70.560000px;}
.y48_c01370{bottom:71.280000px;}
.y75_c01370{bottom:72.000000px;}
.y74_c01370{bottom:72.720000px;}
.y77_c01370{bottom:73.440000px;}
.y76_c01370{bottom:74.160000px;}
.y44_c01370{bottom:110.880000px;}
.y45_c01370{bottom:111.600000px;}
.y43_c01370{bottom:115.200000px;}
.y72_c01370{bottom:115.920000px;}
.y73_c01370{bottom:116.640000px;}
.y41_c01370{bottom:154.800000px;}
.y42_c01370{bottom:155.520000px;}
.y40_c01370{bottom:157.680000px;}
.y70_c01370{bottom:159.120000px;}
.y71_c01370{bottom:159.840000px;}
.y3f_c01370{bottom:198.720000px;}
.y3e_c01370{bottom:201.600000px;}
.y6e_c01370{bottom:202.320000px;}
.y6f_c01370{bottom:204.480000px;}
.y3b_c01370{bottom:241.200000px;}
.y3d_c01370{bottom:243.360000px;}
.y6d_c01370{bottom:244.800000px;}
.y3c_c01370{bottom:245.520000px;}
.y3a_c01370{bottom:246.240000px;}
.y6c_c01370{bottom:246.960000px;}
.y39_c01370{bottom:284.400000px;}
.y6b_c01370{bottom:287.280000px;}
.y6a_c01370{bottom:288.000000px;}
.y38_c01370{bottom:289.440000px;}
.y69_c01370{bottom:290.160000px;}
.y34_c01370{bottom:327.600000px;}
.y35_c01370{bottom:328.320000px;}
.y36_c01370{bottom:329.760000px;}
.y68_c01370{bottom:331.200000px;}
.y37_c01370{bottom:331.920000px;}
.y33_c01370{bottom:332.640000px;}
.y32_c01370{bottom:371.520000px;}
.y67_c01370{bottom:373.680000px;}
.y31_c01370{bottom:374.400000px;}
.y66_c01370{bottom:377.280000px;}
.y30_c01370{bottom:414.720000px;}
.y64_c01370{bottom:417.600000px;}
.y2f_c01370{bottom:418.320000px;}
.y62_c01370{bottom:419.040000px;}
.y63_c01370{bottom:419.760000px;}
.y65_c01370{bottom:420.480000px;}
.y2e_c01370{bottom:457.920000px;}
.y60_c01370{bottom:458.640000px;}
.y61_c01370{bottom:459.360000px;}
.y5f_c01370{bottom:460.800000px;}
.y2d_c01370{bottom:461.520000px;}
.y2c_c01370{bottom:501.840000px;}
.y5e_c01370{bottom:502.560000px;}
.y5d_c01370{bottom:503.280000px;}
.y4b_c01370{bottom:504.720000px;}
.y2b_c01370{bottom:505.440000px;}
.y28_c01370{bottom:545.040000px;}
.y2a_c01370{bottom:545.760000px;}
.y29_c01370{bottom:546.480000px;}
.y4a_c01370{bottom:547.200000px;}
.y27_c01370{bottom:547.920000px;}
.y5c_c01370{bottom:548.640000px;}
.y24_c01370{bottom:588.240000px;}
.y26_c01370{bottom:588.960000px;}
.y5a_c01370{bottom:590.400000px;}
.y23_c01370{bottom:591.120000px;}
.y25_c01370{bottom:591.840000px;}
.y5b_c01370{bottom:592.560000px;}
.y20_c01370{bottom:631.440000px;}
.y22_c01370{bottom:632.160000px;}
.y59_c01370{bottom:632.880000px;}
.y1f_c01370{bottom:633.600000px;}
.y21_c01370{bottom:635.760000px;}
.y1e_c01370{bottom:674.640000px;}
.y58_c01370{bottom:676.080000px;}
.y57_c01370{bottom:676.800000px;}
.y1c_c01370{bottom:677.520000px;}
.y1d_c01370{bottom:679.680000px;}
.y1b_c01370{bottom:717.840000px;}
.y56_c01370{bottom:719.280000px;}
.y19_c01370{bottom:721.440000px;}
.y55_c01370{bottom:722.160000px;}
.y1a_c01370{bottom:722.880000px;}
.y18_c01370{bottom:761.040000px;}
.y17_c01370{bottom:761.760000px;}
.y54_c01370{bottom:762.480000px;}
.y15_c01370{bottom:764.640000px;}
.y16_c01370{bottom:765.360000px;}
.y13_c01370{bottom:804.960000px;}
.y12_c01370{bottom:807.840000px;}
.y14_c01370{bottom:809.280000px;}
.y53_c01370{bottom:847.440000px;}
.y10_c01370{bottom:848.880000px;}
.y11_c01370{bottom:849.600000px;}
.yf_c01370{bottom:851.760000px;}
.y52_c01370{bottom:890.640000px;}
.ye_c01370{bottom:891.360000px;}
.yd_c01370{bottom:893.520000px;}
.yb_c01370{bottom:933.840000px;}
.y51_c01370{bottom:934.560000px;}
.yc_c01370{bottom:936.000000px;}
.y8_c01370{bottom:937.440000px;}
.y9_c01370{bottom:938.160000px;}
.ya_c01370{bottom:941.760000px;}
.y7_c01370{bottom:976.320000px;}
.y50_c01370{bottom:977.040000px;}
.y4f_c01370{bottom:978.480000px;}
.y4_c01370{bottom:979.200000px;}
.y6_c01370{bottom:979.920000px;}
.y3_c01370{bottom:980.640000px;}
.y5_c01370{bottom:981.360000px;}
.y4d_c01370{bottom:1018.080000px;}
.y4e_c01370{bottom:1020.240000px;}
.y2_c01370{bottom:1020.960000px;}
.y1_c01370{bottom:1023.120000px;}
.y4c_c01370{bottom:1076.400000px;}
.h9_c01370{height:12.958594px;}
.h8_c01370{height:20.733750px;}
.h11_c01370{height:36.284062px;}
.h6_c01370{height:38.875781px;}
.he_c01370{height:41.467500px;}
.h12_c01370{height:44.059219px;}
.h5_c01370{height:46.650937px;}
.hd_c01370{height:49.242656px;}
.h10_c01370{height:51.834375px;}
.hb_c01370{height:54.426094px;}
.h4_c01370{height:57.017812px;}
.h2_c01370{height:59.609531px;}
.hc_c01370{height:62.201250px;}
.h13_c01370{height:64.792969px;}
.hf_c01370{height:67.384687px;}
.h3_c01370{height:69.976406px;}
.h7_c01370{height:72.568125px;}
.ha_c01370{height:75.159844px;}
.h1_c01370{height:1143.000000px;}
.h0_c01370{height:1143.360000px;}
.w0_c01370{width:774.720000px;}
.w1_c01370{width:774.750000px;}
.x0_c01370{left:0.000000px;}
.x1_c01370{left:54.000000px;}
.x13_c01370{left:55.440000px;}
.x1a_c01370{left:56.880000px;}
.x6_c01370{left:74.880000px;}
.x7_c01370{left:84.960000px;}
.x2_c01370{left:106.560000px;}
.x18_c01370{left:116.640000px;}
.x11_c01370{left:183.600000px;}
.x3_c01370{left:192.240000px;}
.xc_c01370{left:193.680000px;}
.x16_c01370{left:203.760000px;}
.x12_c01370{left:205.200000px;}
.x4_c01370{left:237.600000px;}
.x1b_c01370{left:246.960000px;}
.xd_c01370{left:248.400000px;}
.x8_c01370{left:259.200000px;}
.xa_c01370{left:272.880000px;}
.x19_c01370{left:278.640000px;}
.x5_c01370{left:280.080000px;}
.xe_c01370{left:290.880000px;}
.x1c_c01370{left:301.680000px;}
.xb_c01370{left:311.760000px;}
.x17_c01370{left:333.360000px;}
.x9_c01370{left:345.600000px;}
.x14_c01370{left:355.680000px;}
.xf_c01370{left:388.080000px;}
.x15_c01370{left:409.680000px;}
.x1d_c01370{left:494.640000px;}
.x10_c01370{left:549.360000px;}
.x1e_c01370{left:572.400000px;}
.x2c_c01370{left:580.320000px;}
.x1f_c01370{left:581.760000px;}
.x2b_c01370{left:601.920000px;}
.x21_c01370{left:604.800000px;}
.x27_c01370{left:614.160000px;}
.x25_c01370{left:635.040000px;}
.x23_c01370{left:637.200000px;}
.x2e_c01370{left:666.720000px;}
.x26_c01370{left:668.160000px;}
.x20_c01370{left:669.600000px;}
.x29_c01370{left:700.560000px;}
.x24_c01370{left:702.000000px;}
.x2d_c01370{left:709.200000px;}
.x28_c01370{left:710.640000px;}
.x22_c01370{left:712.080000px;}
.x2a_c01370{left:730.800000px;}
@media print{
.v1_c01370{vertical-align:-10.240000pt;}
.v0_c01370{vertical-align:0.000000pt;}
.ls0_c01370{letter-spacing:0.000000pt;}
.ws2_c01370{word-spacing:0.000000pt;}
.ws0_c01370{word-spacing:11.677286pt;}
.ws1_c01370{word-spacing:12.658133pt;}
.fs7_c01370{font-size:12.800000pt;}
.fs6_c01370{font-size:20.480000pt;}
.fsf_c01370{font-size:35.840000pt;}
.fs4_c01370{font-size:38.400000pt;}
.fsc_c01370{font-size:40.960000pt;}
.fs10_c01370{font-size:43.520000pt;}
.fs3_c01370{font-size:46.080000pt;}
.fsb_c01370{font-size:48.640000pt;}
.fse_c01370{font-size:51.200000pt;}
.fs9_c01370{font-size:53.760000pt;}
.fs2_c01370{font-size:56.320000pt;}
.fs0_c01370{font-size:58.880000pt;}
.fsa_c01370{font-size:61.440000pt;}
.fs11_c01370{font-size:64.000000pt;}
.fsd_c01370{font-size:66.560000pt;}
.fs1_c01370{font-size:69.120000pt;}
.fs5_c01370{font-size:71.680000pt;}
.fs8_c01370{font-size:74.240000pt;}
.y0_c01370{bottom:0.000000pt;}
.y47_c01370{bottom:59.520000pt;}
.y49_c01370{bottom:60.800000pt;}
.y46_c01370{bottom:62.720000pt;}
.y48_c01370{bottom:63.360000pt;}
.y75_c01370{bottom:64.000000pt;}
.y74_c01370{bottom:64.640000pt;}
.y77_c01370{bottom:65.280000pt;}
.y76_c01370{bottom:65.920000pt;}
.y44_c01370{bottom:98.560000pt;}
.y45_c01370{bottom:99.200000pt;}
.y43_c01370{bottom:102.400000pt;}
.y72_c01370{bottom:103.040000pt;}
.y73_c01370{bottom:103.680000pt;}
.y41_c01370{bottom:137.600000pt;}
.y42_c01370{bottom:138.240000pt;}
.y40_c01370{bottom:140.160000pt;}
.y70_c01370{bottom:141.440000pt;}
.y71_c01370{bottom:142.080000pt;}
.y3f_c01370{bottom:176.640000pt;}
.y3e_c01370{bottom:179.200000pt;}
.y6e_c01370{bottom:179.840000pt;}
.y6f_c01370{bottom:181.760000pt;}
.y3b_c01370{bottom:214.400000pt;}
.y3d_c01370{bottom:216.320000pt;}
.y6d_c01370{bottom:217.600000pt;}
.y3c_c01370{bottom:218.240000pt;}
.y3a_c01370{bottom:218.880000pt;}
.y6c_c01370{bottom:219.520000pt;}
.y39_c01370{bottom:252.800000pt;}
.y6b_c01370{bottom:255.360000pt;}
.y6a_c01370{bottom:256.000000pt;}
.y38_c01370{bottom:257.280000pt;}
.y69_c01370{bottom:257.920000pt;}
.y34_c01370{bottom:291.200000pt;}
.y35_c01370{bottom:291.840000pt;}
.y36_c01370{bottom:293.120000pt;}
.y68_c01370{bottom:294.400000pt;}
.y37_c01370{bottom:295.040000pt;}
.y33_c01370{bottom:295.680000pt;}
.y32_c01370{bottom:330.240000pt;}
.y67_c01370{bottom:332.160000pt;}
.y31_c01370{bottom:332.800000pt;}
.y66_c01370{bottom:335.360000pt;}
.y30_c01370{bottom:368.640000pt;}
.y64_c01370{bottom:371.200000pt;}
.y2f_c01370{bottom:371.840000pt;}
.y62_c01370{bottom:372.480000pt;}
.y63_c01370{bottom:373.120000pt;}
.y65_c01370{bottom:373.760000pt;}
.y2e_c01370{bottom:407.040000pt;}
.y60_c01370{bottom:407.680000pt;}
.y61_c01370{bottom:408.320000pt;}
.y5f_c01370{bottom:409.600000pt;}
.y2d_c01370{bottom:410.240000pt;}
.y2c_c01370{bottom:446.080000pt;}
.y5e_c01370{bottom:446.720000pt;}
.y5d_c01370{bottom:447.360000pt;}
.y4b_c01370{bottom:448.640000pt;}
.y2b_c01370{bottom:449.280000pt;}
.y28_c01370{bottom:484.480000pt;}
.y2a_c01370{bottom:485.120000pt;}
.y29_c01370{bottom:485.760000pt;}
.y4a_c01370{bottom:486.400000pt;}
.y27_c01370{bottom:487.040000pt;}
.y5c_c01370{bottom:487.680000pt;}
.y24_c01370{bottom:522.880000pt;}
.y26_c01370{bottom:523.520000pt;}
.y5a_c01370{bottom:524.800000pt;}
.y23_c01370{bottom:525.440000pt;}
.y25_c01370{bottom:526.080000pt;}
.y5b_c01370{bottom:526.720000pt;}
.y20_c01370{bottom:561.280000pt;}
.y22_c01370{bottom:561.920000pt;}
.y59_c01370{bottom:562.560000pt;}
.y1f_c01370{bottom:563.200000pt;}
.y21_c01370{bottom:565.120000pt;}
.y1e_c01370{bottom:599.680000pt;}
.y58_c01370{bottom:600.960000pt;}
.y57_c01370{bottom:601.600000pt;}
.y1c_c01370{bottom:602.240000pt;}
.y1d_c01370{bottom:604.160000pt;}
.y1b_c01370{bottom:638.080000pt;}
.y56_c01370{bottom:639.360000pt;}
.y19_c01370{bottom:641.280000pt;}
.y55_c01370{bottom:641.920000pt;}
.y1a_c01370{bottom:642.560000pt;}
.y18_c01370{bottom:676.480000pt;}
.y17_c01370{bottom:677.120000pt;}
.y54_c01370{bottom:677.760000pt;}
.y15_c01370{bottom:679.680000pt;}
.y16_c01370{bottom:680.320000pt;}
.y13_c01370{bottom:715.520000pt;}
.y12_c01370{bottom:718.080000pt;}
.y14_c01370{bottom:719.360000pt;}
.y53_c01370{bottom:753.280000pt;}
.y10_c01370{bottom:754.560000pt;}
.y11_c01370{bottom:755.200000pt;}
.yf_c01370{bottom:757.120000pt;}
.y52_c01370{bottom:791.680000pt;}
.ye_c01370{bottom:792.320000pt;}
.yd_c01370{bottom:794.240000pt;}
.yb_c01370{bottom:830.080000pt;}
.y51_c01370{bottom:830.720000pt;}
.yc_c01370{bottom:832.000000pt;}
.y8_c01370{bottom:833.280000pt;}
.y9_c01370{bottom:833.920000pt;}
.ya_c01370{bottom:837.120000pt;}
.y7_c01370{bottom:867.840000pt;}
.y50_c01370{bottom:868.480000pt;}
.y4f_c01370{bottom:869.760000pt;}
.y4_c01370{bottom:870.400000pt;}
.y6_c01370{bottom:871.040000pt;}
.y3_c01370{bottom:871.680000pt;}
.y5_c01370{bottom:872.320000pt;}
.y4d_c01370{bottom:904.960000pt;}
.y4e_c01370{bottom:906.880000pt;}
.y2_c01370{bottom:907.520000pt;}
.y1_c01370{bottom:909.440000pt;}
.y4c_c01370{bottom:956.800000pt;}
.h9_c01370{height:11.518750pt;}
.h8_c01370{height:18.430000pt;}
.h11_c01370{height:32.252500pt;}
.h6_c01370{height:34.556250pt;}
.he_c01370{height:36.860000pt;}
.h12_c01370{height:39.163750pt;}
.h5_c01370{height:41.467500pt;}
.hd_c01370{height:43.771250pt;}
.h10_c01370{height:46.075000pt;}
.hb_c01370{height:48.378750pt;}
.h4_c01370{height:50.682500pt;}
.h2_c01370{height:52.986250pt;}
.hc_c01370{height:55.290000pt;}
.h13_c01370{height:57.593750pt;}
.hf_c01370{height:59.897500pt;}
.h3_c01370{height:62.201250pt;}
.h7_c01370{height:64.505000pt;}
.ha_c01370{height:66.808750pt;}
.h1_c01370{height:1016.000000pt;}
.h0_c01370{height:1016.320000pt;}
.w0_c01370{width:688.640000pt;}
.w1_c01370{width:688.666667pt;}
.x0_c01370{left:0.000000pt;}
.x1_c01370{left:48.000000pt;}
.x13_c01370{left:49.280000pt;}
.x1a_c01370{left:50.560000pt;}
.x6_c01370{left:66.560000pt;}
.x7_c01370{left:75.520000pt;}
.x2_c01370{left:94.720000pt;}
.x18_c01370{left:103.680000pt;}
.x11_c01370{left:163.200000pt;}
.x3_c01370{left:170.880000pt;}
.xc_c01370{left:172.160000pt;}
.x16_c01370{left:181.120000pt;}
.x12_c01370{left:182.400000pt;}
.x4_c01370{left:211.200000pt;}
.x1b_c01370{left:219.520000pt;}
.xd_c01370{left:220.800000pt;}
.x8_c01370{left:230.400000pt;}
.xa_c01370{left:242.560000pt;}
.x19_c01370{left:247.680000pt;}
.x5_c01370{left:248.960000pt;}
.xe_c01370{left:258.560000pt;}
.x1c_c01370{left:268.160000pt;}
.xb_c01370{left:277.120000pt;}
.x17_c01370{left:296.320000pt;}
.x9_c01370{left:307.200000pt;}
.x14_c01370{left:316.160000pt;}
.xf_c01370{left:344.960000pt;}
.x15_c01370{left:364.160000pt;}
.x1d_c01370{left:439.680000pt;}
.x10_c01370{left:488.320000pt;}
.x1e_c01370{left:508.800000pt;}
.x2c_c01370{left:515.840000pt;}
.x1f_c01370{left:517.120000pt;}
.x2b_c01370{left:535.040000pt;}
.x21_c01370{left:537.600000pt;}
.x27_c01370{left:545.920000pt;}
.x25_c01370{left:564.480000pt;}
.x23_c01370{left:566.400000pt;}
.x2e_c01370{left:592.640000pt;}
.x26_c01370{left:593.920000pt;}
.x20_c01370{left:595.200000pt;}
.x29_c01370{left:622.720000pt;}
.x24_c01370{left:624.000000pt;}
.x2d_c01370{left:630.400000pt;}
.x28_c01370{left:631.680000pt;}
.x22_c01370{left:632.960000pt;}
.x2a_c01370{left:649.600000pt;}
}





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

.ir_c01371:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01371{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01371;src:url('chunks/assets/font_094dcc66ae08e6f3c98802c8.woff2')format("woff");}.ff1_c01371{font-family:ff1_c01371;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m34_c01371{transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);}
.m53_c01371{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m55_c01371{transform:matrix(0.222025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222025,0.000000,0.000000,0.250000,0,0);}
.m1c_c01371{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);}
.m3f_c01371{transform:matrix(0.233425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233425,0.000000,0.000000,0.250000,0,0);}
.m50_c01371{transform:matrix(0.236075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236075,0.000000,0.000000,0.250000,0,0);}
.m3b_c01371{transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);}
.m8_c01371{transform:matrix(0.241975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241975,0.000000,0.000000,0.250000,0,0);}
.m27_c01371{transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);}
.m4b_c01371{transform:matrix(0.243975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243975,0.000000,0.000000,0.250000,0,0);}
.m1d_c01371{transform:matrix(0.244825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244825,0.000000,0.000000,0.250000,0,0);}
.m45_c01371{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m47_c01371{transform:matrix(0.247375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247375,0.000000,0.000000,0.250000,0,0);}
.m46_c01371{transform:matrix(0.248400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248400,0.000000,0.000000,0.250000,0,0);}
.m40_c01371{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01371{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);}
.m51_c01371{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.ma_c01371{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);}
.m54_c01371{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mc_c01371{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);}
.m43_c01371{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);}
.m49_c01371{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m15_c01371{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m3_c01371{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01371{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m42_c01371{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);}
.m52_c01371{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m10_c01371{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m2_c01371{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m12_c01371{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01371{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m24_c01371{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m16_c01371{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1_c01371{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m38_c01371{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m28_c01371{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m22_c01371{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01371{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m31_c01371{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.md_c01371{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m18_c01371{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01371{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01371{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.me_c01371{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m14_c01371{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m39_c01371{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mb_c01371{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);}
.m32_c01371{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);}
.m3d_c01371{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01371{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m13_c01371{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m5_c01371{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);}
.m2a_c01371{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01371{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m0_c01371{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);}
.m2b_c01371{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);}
.m11_c01371{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);}
.m3a_c01371{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m23_c01371{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);}
.m36_c01371{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);}
.m29_c01371{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m30_c01371{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m20_c01371{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m44_c01371{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);}
.m21_c01371{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);}
.m25_c01371{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m41_c01371{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m19_c01371{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01371{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01371{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01371{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m33_c01371{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);}
.m37_c01371{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m7_c01371{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);}
.m2e_c01371{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_c01371{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.mf_c01371{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m26_c01371{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);}
.m48_c01371{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01371{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m35_c01371{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m9_c01371{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01371{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01371{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m4_c01371{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.m4a_c01371{transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);}
.v1_c01371{vertical-align:-2.880000px;}
.v0_c01371{vertical-align:0.000000px;}
.ls0_c01371{letter-spacing:0.000000px;}
.sc__c01371{text-shadow:none;}
.sc0_c01371{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01371{-webkit-text-stroke:0px transparent;}
.sc0_c01371{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01371{word-spacing:0.000000px;}
.ws0_c01371{word-spacing:11.856000px;}
.fc0_c01371{color:transparent;}
.fs11_c01371{font-size:17.280000px;}
.fs10_c01371{font-size:28.800000px;}
.fs9_c01371{font-size:34.560000px;}
.fsd_c01371{font-size:37.440000px;}
.fs5_c01371{font-size:40.320000px;}
.fsc_c01371{font-size:43.200000px;}
.fsb_c01371{font-size:48.960000px;}
.fs7_c01371{font-size:51.840000px;}
.fs8_c01371{font-size:54.720000px;}
.fs1_c01371{font-size:57.600000px;}
.fs2_c01371{font-size:60.480000px;}
.fs3_c01371{font-size:63.360000px;}
.fsa_c01371{font-size:66.240000px;}
.fs6_c01371{font-size:69.120000px;}
.fsf_c01371{font-size:72.000000px;}
.fs0_c01371{font-size:74.880000px;}
.fs4_c01371{font-size:77.760000px;}
.fse_c01371{font-size:80.640000px;}
.y0_c01371{bottom:0.000000px;}
.y62_c01371{bottom:68.400000px;}
.y61_c01371{bottom:72.720000px;}
.y75_c01371{bottom:75.600000px;}
.y60_c01371{bottom:111.600000px;}
.y5e_c01371{bottom:115.200000px;}
.y5f_c01371{bottom:116.640000px;}
.y72_c01371{bottom:118.080000px;}
.y73_c01371{bottom:120.240000px;}
.y74_c01371{bottom:120.960000px;}
.y5d_c01371{bottom:154.800000px;}
.y5c_c01371{bottom:159.120000px;}
.y6e_c01371{bottom:160.560000px;}
.y71_c01371{bottom:161.280000px;}
.y6f_c01371{bottom:162.720000px;}
.y70_c01371{bottom:163.440000px;}
.y5b_c01371{bottom:198.720000px;}
.y5a_c01371{bottom:202.320000px;}
.y6b_c01371{bottom:205.200000px;}
.y6c_c01371{bottom:205.920000px;}
.y6d_c01371{bottom:208.080000px;}
.y59_c01371{bottom:242.640000px;}
.y58_c01371{bottom:246.240000px;}
.y68_c01371{bottom:246.960000px;}
.y6a_c01371{bottom:249.120000px;}
.y69_c01371{bottom:250.560000px;}
.y55_c01371{bottom:285.120000px;}
.y57_c01371{bottom:287.280000px;}
.y56_c01371{bottom:288.720000px;}
.y52_c01371{bottom:289.440000px;}
.y53_c01371{bottom:290.160000px;}
.y67_c01371{bottom:290.880000px;}
.y66_c01371{bottom:292.320000px;}
.y54_c01371{bottom:293.040000px;}
.y65_c01371{bottom:293.760000px;}
.y50_c01371{bottom:329.040000px;}
.y51_c01371{bottom:330.480000px;}
.y4f_c01371{bottom:332.640000px;}
.y63_c01371{bottom:334.080000px;}
.y64_c01371{bottom:335.520000px;}
.y4b_c01371{bottom:372.960000px;}
.y4e_c01371{bottom:375.120000px;}
.y4a_c01371{bottom:375.840000px;}
.y4c_c01371{bottom:377.280000px;}
.y4d_c01371{bottom:378.000000px;}
.y46_c01371{bottom:416.880000px;}
.y44_c01371{bottom:419.760000px;}
.y45_c01371{bottom:420.480000px;}
.y47_c01371{bottom:421.200000px;}
.y49_c01371{bottom:421.920000px;}
.y48_c01371{bottom:422.640000px;}
.y42_c01371{bottom:460.080000px;}
.y41_c01371{bottom:462.960000px;}
.y43_c01371{bottom:463.680000px;}
.y3f_c01371{bottom:503.280000px;}
.y40_c01371{bottom:506.160000px;}
.y3e_c01371{bottom:506.880000px;}
.y3d_c01371{bottom:507.600000px;}
.y3b_c01371{bottom:545.760000px;}
.y3a_c01371{bottom:549.360000px;}
.y3c_c01371{bottom:550.800000px;}
.y39_c01371{bottom:581.760000px;}
.y34_c01371{bottom:590.400000px;}
.y36_c01371{bottom:591.840000px;}
.y33_c01371{bottom:593.280000px;}
.y35_c01371{bottom:594.000000px;}
.y38_c01371{bottom:594.720000px;}
.y37_c01371{bottom:595.440000px;}
.y30_c01371{bottom:633.600000px;}
.y2f_c01371{bottom:635.040000px;}
.y2e_c01371{bottom:635.760000px;}
.y31_c01371{bottom:637.200000px;}
.y32_c01371{bottom:637.920000px;}
.y2a_c01371{bottom:677.520000px;}
.y2c_c01371{bottom:678.240000px;}
.y29_c01371{bottom:678.960000px;}
.y2d_c01371{bottom:679.680000px;}
.y2b_c01371{bottom:680.400000px;}
.y26_c01371{bottom:720.720000px;}
.y27_c01371{bottom:721.440000px;}
.y28_c01371{bottom:722.160000px;}
.y23_c01371{bottom:764.640000px;}
.y24_c01371{bottom:765.360000px;}
.y25_c01371{bottom:766.800000px;}
.y22_c01371{bottom:806.400000px;}
.y1e_c01371{bottom:807.840000px;}
.y1f_c01371{bottom:809.280000px;}
.y21_c01371{bottom:810.000000px;}
.y20_c01371{bottom:810.720000px;}
.y1b_c01371{bottom:851.040000px;}
.y1c_c01371{bottom:851.760000px;}
.y1a_c01371{bottom:852.480000px;}
.y1d_c01371{bottom:853.200000px;}
.y16_c01371{bottom:894.240000px;}
.y18_c01371{bottom:894.960000px;}
.y17_c01371{bottom:895.680000px;}
.y19_c01371{bottom:896.400000px;}
.y14_c01371{bottom:936.720000px;}
.y12_c01371{bottom:937.440000px;}
.y11_c01371{bottom:938.880000px;}
.y15_c01371{bottom:939.600000px;}
.y13_c01371{bottom:940.320000px;}
.yf_c01371{bottom:979.920000px;}
.ye_c01371{bottom:980.640000px;}
.yd_c01371{bottom:981.360000px;}
.y10_c01371{bottom:982.080000px;}
.ya_c01371{bottom:1021.680000px;}
.y6_c01371{bottom:1022.400000px;}
.y8_c01371{bottom:1023.120000px;}
.yc_c01371{bottom:1023.840000px;}
.y9_c01371{bottom:1024.560000px;}
.y5_c01371{bottom:1025.280000px;}
.yb_c01371{bottom:1026.000000px;}
.y7_c01371{bottom:1026.720000px;}
.y3_c01371{bottom:1066.320000px;}
.y2_c01371{bottom:1067.040000px;}
.y4_c01371{bottom:1068.480000px;}
.y1_c01371{bottom:1109.520000px;}
.h13_c01371{height:15.550313px;}
.h12_c01371{height:25.917187px;}
.hb_c01371{height:31.100625px;}
.hf_c01371{height:33.692344px;}
.h7_c01371{height:36.284062px;}
.he_c01371{height:38.875781px;}
.hd_c01371{height:44.059219px;}
.h9_c01371{height:46.650937px;}
.ha_c01371{height:49.242656px;}
.h3_c01371{height:51.834375px;}
.h4_c01371{height:54.426094px;}
.h5_c01371{height:57.017812px;}
.hc_c01371{height:59.609531px;}
.h8_c01371{height:62.201250px;}
.h11_c01371{height:64.792969px;}
.h2_c01371{height:67.384687px;}
.h6_c01371{height:69.976406px;}
.h10_c01371{height:72.568125px;}
.h1_c01371{height:1144.500000px;}
.h0_c01371{height:1144.800000px;}
.w0_c01371{width:775.440000px;}
.w1_c01371{width:775.500000px;}
.x0_c01371{left:0.000000px;}
.x6_c01371{left:56.880000px;}
.x19_c01371{left:58.320000px;}
.x2c_c01371{left:59.760000px;}
.x33_c01371{left:61.200000px;}
.xe_c01371{left:89.280000px;}
.x32_c01371{left:90.720000px;}
.x2e_c01371{left:99.360000px;}
.x7_c01371{left:119.520000px;}
.xf_c01371{left:120.960000px;}
.x28_c01371{left:185.760000px;}
.x10_c01371{left:206.640000px;}
.x2d_c01371{left:218.880000px;}
.x8_c01371{left:240.480000px;}
.x1b_c01371{left:261.360000px;}
.x16_c01371{left:272.160000px;}
.x2f_c01371{left:273.600000px;}
.x9_c01371{left:282.240000px;}
.x2a_c01371{left:285.120000px;}
.x20_c01371{left:294.480000px;}
.x11_c01371{left:314.640000px;}
.x1c_c01371{left:316.080000px;}
.x17_c01371{left:326.880000px;}
.x21_c01371{left:336.960000px;}
.x30_c01371{left:358.560000px;}
.x12_c01371{left:369.360000px;}
.x2b_c01371{left:380.160000px;}
.x31_c01371{left:402.480000px;}
.xa_c01371{left:412.560000px;}
.x1d_c01371{left:423.360000px;}
.x22_c01371{left:433.440000px;}
.xb_c01371{left:455.760000px;}
.x13_c01371{left:466.560000px;}
.x1e_c01371{left:477.360000px;}
.x23_c01371{left:488.160000px;}
.x14_c01371{left:520.560000px;}
.x26_c01371{left:522.000000px;}
.x24_c01371{left:542.160000px;}
.x15_c01371{left:562.320000px;}
.xc_c01371{left:575.280000px;}
.x36_c01371{left:585.360000px;}
.x34_c01371{left:606.960000px;}
.x27_c01371{left:616.320000px;}
.x1f_c01371{left:637.920000px;}
.x2_c01371{left:639.360000px;}
.x18_c01371{left:671.040000px;}
.x3_c01371{left:672.480000px;}
.x1_c01371{left:681.120000px;}
.x35_c01371{left:682.560000px;}
.x1a_c01371{left:703.440000px;}
.xd_c01371{left:704.880000px;}
.x25_c01371{left:712.800000px;}
.x4_c01371{left:714.240000px;}
.x29_c01371{left:732.960000px;}
.x5_c01371{left:735.120000px;}
@media print{
.v1_c01371{vertical-align:-2.560000pt;}
.v0_c01371{vertical-align:0.000000pt;}
.ls0_c01371{letter-spacing:0.000000pt;}
.ws1_c01371{word-spacing:0.000000pt;}
.ws0_c01371{word-spacing:10.538667pt;}
.fs11_c01371{font-size:15.360000pt;}
.fs10_c01371{font-size:25.600000pt;}
.fs9_c01371{font-size:30.720000pt;}
.fsd_c01371{font-size:33.280000pt;}
.fs5_c01371{font-size:35.840000pt;}
.fsc_c01371{font-size:38.400000pt;}
.fsb_c01371{font-size:43.520000pt;}
.fs7_c01371{font-size:46.080000pt;}
.fs8_c01371{font-size:48.640000pt;}
.fs1_c01371{font-size:51.200000pt;}
.fs2_c01371{font-size:53.760000pt;}
.fs3_c01371{font-size:56.320000pt;}
.fsa_c01371{font-size:58.880000pt;}
.fs6_c01371{font-size:61.440000pt;}
.fsf_c01371{font-size:64.000000pt;}
.fs0_c01371{font-size:66.560000pt;}
.fs4_c01371{font-size:69.120000pt;}
.fse_c01371{font-size:71.680000pt;}
.y0_c01371{bottom:0.000000pt;}
.y62_c01371{bottom:60.800000pt;}
.y61_c01371{bottom:64.640000pt;}
.y75_c01371{bottom:67.200000pt;}
.y60_c01371{bottom:99.200000pt;}
.y5e_c01371{bottom:102.400000pt;}
.y5f_c01371{bottom:103.680000pt;}
.y72_c01371{bottom:104.960000pt;}
.y73_c01371{bottom:106.880000pt;}
.y74_c01371{bottom:107.520000pt;}
.y5d_c01371{bottom:137.600000pt;}
.y5c_c01371{bottom:141.440000pt;}
.y6e_c01371{bottom:142.720000pt;}
.y71_c01371{bottom:143.360000pt;}
.y6f_c01371{bottom:144.640000pt;}
.y70_c01371{bottom:145.280000pt;}
.y5b_c01371{bottom:176.640000pt;}
.y5a_c01371{bottom:179.840000pt;}
.y6b_c01371{bottom:182.400000pt;}
.y6c_c01371{bottom:183.040000pt;}
.y6d_c01371{bottom:184.960000pt;}
.y59_c01371{bottom:215.680000pt;}
.y58_c01371{bottom:218.880000pt;}
.y68_c01371{bottom:219.520000pt;}
.y6a_c01371{bottom:221.440000pt;}
.y69_c01371{bottom:222.720000pt;}
.y55_c01371{bottom:253.440000pt;}
.y57_c01371{bottom:255.360000pt;}
.y56_c01371{bottom:256.640000pt;}
.y52_c01371{bottom:257.280000pt;}
.y53_c01371{bottom:257.920000pt;}
.y67_c01371{bottom:258.560000pt;}
.y66_c01371{bottom:259.840000pt;}
.y54_c01371{bottom:260.480000pt;}
.y65_c01371{bottom:261.120000pt;}
.y50_c01371{bottom:292.480000pt;}
.y51_c01371{bottom:293.760000pt;}
.y4f_c01371{bottom:295.680000pt;}
.y63_c01371{bottom:296.960000pt;}
.y64_c01371{bottom:298.240000pt;}
.y4b_c01371{bottom:331.520000pt;}
.y4e_c01371{bottom:333.440000pt;}
.y4a_c01371{bottom:334.080000pt;}
.y4c_c01371{bottom:335.360000pt;}
.y4d_c01371{bottom:336.000000pt;}
.y46_c01371{bottom:370.560000pt;}
.y44_c01371{bottom:373.120000pt;}
.y45_c01371{bottom:373.760000pt;}
.y47_c01371{bottom:374.400000pt;}
.y49_c01371{bottom:375.040000pt;}
.y48_c01371{bottom:375.680000pt;}
.y42_c01371{bottom:408.960000pt;}
.y41_c01371{bottom:411.520000pt;}
.y43_c01371{bottom:412.160000pt;}
.y3f_c01371{bottom:447.360000pt;}
.y40_c01371{bottom:449.920000pt;}
.y3e_c01371{bottom:450.560000pt;}
.y3d_c01371{bottom:451.200000pt;}
.y3b_c01371{bottom:485.120000pt;}
.y3a_c01371{bottom:488.320000pt;}
.y3c_c01371{bottom:489.600000pt;}
.y39_c01371{bottom:517.120000pt;}
.y34_c01371{bottom:524.800000pt;}
.y36_c01371{bottom:526.080000pt;}
.y33_c01371{bottom:527.360000pt;}
.y35_c01371{bottom:528.000000pt;}
.y38_c01371{bottom:528.640000pt;}
.y37_c01371{bottom:529.280000pt;}
.y30_c01371{bottom:563.200000pt;}
.y2f_c01371{bottom:564.480000pt;}
.y2e_c01371{bottom:565.120000pt;}
.y31_c01371{bottom:566.400000pt;}
.y32_c01371{bottom:567.040000pt;}
.y2a_c01371{bottom:602.240000pt;}
.y2c_c01371{bottom:602.880000pt;}
.y29_c01371{bottom:603.520000pt;}
.y2d_c01371{bottom:604.160000pt;}
.y2b_c01371{bottom:604.800000pt;}
.y26_c01371{bottom:640.640000pt;}
.y27_c01371{bottom:641.280000pt;}
.y28_c01371{bottom:641.920000pt;}
.y23_c01371{bottom:679.680000pt;}
.y24_c01371{bottom:680.320000pt;}
.y25_c01371{bottom:681.600000pt;}
.y22_c01371{bottom:716.800000pt;}
.y1e_c01371{bottom:718.080000pt;}
.y1f_c01371{bottom:719.360000pt;}
.y21_c01371{bottom:720.000000pt;}
.y20_c01371{bottom:720.640000pt;}
.y1b_c01371{bottom:756.480000pt;}
.y1c_c01371{bottom:757.120000pt;}
.y1a_c01371{bottom:757.760000pt;}
.y1d_c01371{bottom:758.400000pt;}
.y16_c01371{bottom:794.880000pt;}
.y18_c01371{bottom:795.520000pt;}
.y17_c01371{bottom:796.160000pt;}
.y19_c01371{bottom:796.800000pt;}
.y14_c01371{bottom:832.640000pt;}
.y12_c01371{bottom:833.280000pt;}
.y11_c01371{bottom:834.560000pt;}
.y15_c01371{bottom:835.200000pt;}
.y13_c01371{bottom:835.840000pt;}
.yf_c01371{bottom:871.040000pt;}
.ye_c01371{bottom:871.680000pt;}
.yd_c01371{bottom:872.320000pt;}
.y10_c01371{bottom:872.960000pt;}
.ya_c01371{bottom:908.160000pt;}
.y6_c01371{bottom:908.800000pt;}
.y8_c01371{bottom:909.440000pt;}
.yc_c01371{bottom:910.080000pt;}
.y9_c01371{bottom:910.720000pt;}
.y5_c01371{bottom:911.360000pt;}
.yb_c01371{bottom:912.000000pt;}
.y7_c01371{bottom:912.640000pt;}
.y3_c01371{bottom:947.840000pt;}
.y2_c01371{bottom:948.480000pt;}
.y4_c01371{bottom:949.760000pt;}
.y1_c01371{bottom:986.240000pt;}
.h13_c01371{height:13.822500pt;}
.h12_c01371{height:23.037500pt;}
.hb_c01371{height:27.645000pt;}
.hf_c01371{height:29.948750pt;}
.h7_c01371{height:32.252500pt;}
.he_c01371{height:34.556250pt;}
.hd_c01371{height:39.163750pt;}
.h9_c01371{height:41.467500pt;}
.ha_c01371{height:43.771250pt;}
.h3_c01371{height:46.075000pt;}
.h4_c01371{height:48.378750pt;}
.h5_c01371{height:50.682500pt;}
.hc_c01371{height:52.986250pt;}
.h8_c01371{height:55.290000pt;}
.h11_c01371{height:57.593750pt;}
.h2_c01371{height:59.897500pt;}
.h6_c01371{height:62.201250pt;}
.h10_c01371{height:64.505000pt;}
.h1_c01371{height:1017.333333pt;}
.h0_c01371{height:1017.600000pt;}
.w0_c01371{width:689.280000pt;}
.w1_c01371{width:689.333333pt;}
.x0_c01371{left:0.000000pt;}
.x6_c01371{left:50.560000pt;}
.x19_c01371{left:51.840000pt;}
.x2c_c01371{left:53.120000pt;}
.x33_c01371{left:54.400000pt;}
.xe_c01371{left:79.360000pt;}
.x32_c01371{left:80.640000pt;}
.x2e_c01371{left:88.320000pt;}
.x7_c01371{left:106.240000pt;}
.xf_c01371{left:107.520000pt;}
.x28_c01371{left:165.120000pt;}
.x10_c01371{left:183.680000pt;}
.x2d_c01371{left:194.560000pt;}
.x8_c01371{left:213.760000pt;}
.x1b_c01371{left:232.320000pt;}
.x16_c01371{left:241.920000pt;}
.x2f_c01371{left:243.200000pt;}
.x9_c01371{left:250.880000pt;}
.x2a_c01371{left:253.440000pt;}
.x20_c01371{left:261.760000pt;}
.x11_c01371{left:279.680000pt;}
.x1c_c01371{left:280.960000pt;}
.x17_c01371{left:290.560000pt;}
.x21_c01371{left:299.520000pt;}
.x30_c01371{left:318.720000pt;}
.x12_c01371{left:328.320000pt;}
.x2b_c01371{left:337.920000pt;}
.x31_c01371{left:357.760000pt;}
.xa_c01371{left:366.720000pt;}
.x1d_c01371{left:376.320000pt;}
.x22_c01371{left:385.280000pt;}
.xb_c01371{left:405.120000pt;}
.x13_c01371{left:414.720000pt;}
.x1e_c01371{left:424.320000pt;}
.x23_c01371{left:433.920000pt;}
.x14_c01371{left:462.720000pt;}
.x26_c01371{left:464.000000pt;}
.x24_c01371{left:481.920000pt;}
.x15_c01371{left:499.840000pt;}
.xc_c01371{left:511.360000pt;}
.x36_c01371{left:520.320000pt;}
.x34_c01371{left:539.520000pt;}
.x27_c01371{left:547.840000pt;}
.x1f_c01371{left:567.040000pt;}
.x2_c01371{left:568.320000pt;}
.x18_c01371{left:596.480000pt;}
.x3_c01371{left:597.760000pt;}
.x1_c01371{left:605.440000pt;}
.x35_c01371{left:606.720000pt;}
.x1a_c01371{left:625.280000pt;}
.xd_c01371{left:626.560000pt;}
.x25_c01371{left:633.600000pt;}
.x4_c01371{left:634.880000pt;}
.x29_c01371{left:651.520000pt;}
.x5_c01371{left:653.440000pt;}
}





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

.ir_c01372:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01372{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01372;src:url('chunks/assets/font_fc008e9f6fd75954ce7c53fb.woff2')format("woff");}.ff1_c01372{font-family:ff1_c01372;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m39_c01372{transform:matrix(0.182675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182675,0.000000,0.000000,0.250000,0,0);}
.m3d_c01372{transform:matrix(0.192400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192400,0.000000,0.000000,0.250000,0,0);}
.m41_c01372{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m44_c01372{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m2e_c01372{transform:matrix(0.235600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235600,0.000000,0.000000,0.250000,0,0);}
.m1b_c01372{transform:matrix(0.239500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239500,0.000000,0.000000,0.250000,0,0);}
.m5_c01372{transform:matrix(0.241125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241125,0.000000,0.000000,0.250000,0,0);}
.ma_c01372{transform:matrix(0.245975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245975,0.000000,0.000000,0.250000,0,0);}
.m22_c01372{transform:matrix(0.246450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246450,0.000000,0.000000,0.250000,0,0);}
.m7_c01372{transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);}
.m3f_c01372{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01372{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);}
.m2b_c01372{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m14_c01372{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);}
.m2a_c01372{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01372{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_c01372{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m1_c01372{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_c01372{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mf_c01372{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m13_c01372{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_c01372{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m11_c01372{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mb_c01372{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);}
.m33_c01372{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);}
.m30_c01372{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m18_c01372{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);}
.m3a_c01372{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m38_c01372{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01372{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m16_c01372{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m37_c01372{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m26_c01372{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m10_c01372{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m31_c01372{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m34_c01372{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m3_c01372{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m28_c01372{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m2_c01372{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);}
.m24_c01372{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m17_c01372{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);}
.m3e_c01372{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);}
.m27_c01372{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);}
.m29_c01372{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m19_c01372{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m12_c01372{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_c01372{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);}
.m3c_c01372{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m21_c01372{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);}
.m36_c01372{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);}
.m0_c01372{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m6_c01372{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);}
.m3b_c01372{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m15_c01372{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m9_c01372{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);}
.md_c01372{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.me_c01372{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);}
.m43_c01372{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01372{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);}
.m4_c01372{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m32_c01372{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m42_c01372{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);}
.m2f_c01372{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01372{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m25_c01372{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m40_c01372{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);}
.mc_c01372{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01372{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m35_c01372{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);}
.v0_c01372{vertical-align:0.000000px;}
.v2_c01372{vertical-align:5.760000px;}
.v1_c01372{vertical-align:11.520000px;}
.ls0_c01372{letter-spacing:0.000000px;}
.sc__c01372{text-shadow:none;}
.sc0_c01372{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01372{-webkit-text-stroke:0px transparent;}
.sc0_c01372{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01372{word-spacing:-7.866000px;}
.ws2_c01372{word-spacing:0.000000px;}
.ws1_c01372{word-spacing:6.728400px;}
.fc0_c01372{color:transparent;}
.fsb_c01372{font-size:28.800000px;}
.fs8_c01372{font-size:48.960000px;}
.fs5_c01372{font-size:51.840000px;}
.fs4_c01372{font-size:54.720000px;}
.fs2_c01372{font-size:57.600000px;}
.fs0_c01372{font-size:60.480000px;}
.fs3_c01372{font-size:63.360000px;}
.fs9_c01372{font-size:66.240000px;}
.fs6_c01372{font-size:69.120000px;}
.fsc_c01372{font-size:72.000000px;}
.fs7_c01372{font-size:74.880000px;}
.fs1_c01372{font-size:77.760000px;}
.fsa_c01372{font-size:80.640000px;}
.y0_c01372{bottom:0.000000px;}
.y3d_c01372{bottom:59.040000px;}
.y3b_c01372{bottom:62.640000px;}
.y3c_c01372{bottom:63.360000px;}
.y6c_c01372{bottom:65.520000px;}
.y6e_c01372{bottom:66.240000px;}
.y6d_c01372{bottom:66.960000px;}
.y3a_c01372{bottom:102.960000px;}
.y39_c01372{bottom:106.560000px;}
.y69_c01372{bottom:108.000000px;}
.y6a_c01372{bottom:109.440000px;}
.y6b_c01372{bottom:110.880000px;}
.y38_c01372{bottom:146.880000px;}
.y37_c01372{bottom:149.760000px;}
.y66_c01372{bottom:151.920000px;}
.y68_c01372{bottom:154.080000px;}
.y67_c01372{bottom:154.800000px;}
.y36_c01372{bottom:190.080000px;}
.y34_c01372{bottom:191.520000px;}
.y33_c01372{bottom:192.960000px;}
.y35_c01372{bottom:193.680000px;}
.y63_c01372{bottom:195.120000px;}
.y65_c01372{bottom:197.280000px;}
.y64_c01372{bottom:198.000000px;}
.y2f_c01372{bottom:232.560000px;}
.y32_c01372{bottom:234.000000px;}
.y30_c01372{bottom:235.440000px;}
.y2e_c01372{bottom:236.880000px;}
.y31_c01372{bottom:237.600000px;}
.y60_c01372{bottom:238.320000px;}
.y61_c01372{bottom:239.040000px;}
.y62_c01372{bottom:241.200000px;}
.y2d_c01372{bottom:275.760000px;}
.y2c_c01372{bottom:280.080000px;}
.y5d_c01372{bottom:281.520000px;}
.y5e_c01372{bottom:282.960000px;}
.y5f_c01372{bottom:283.680000px;}
.y2b_c01372{bottom:319.680000px;}
.y2a_c01372{bottom:323.280000px;}
.y5b_c01372{bottom:324.000000px;}
.y5c_c01372{bottom:324.720000px;}
.y29_c01372{bottom:362.160000px;}
.y28_c01372{bottom:365.760000px;}
.y59_c01372{bottom:366.480000px;}
.y5a_c01372{bottom:368.640000px;}
.y27_c01372{bottom:406.080000px;}
.y26_c01372{bottom:408.960000px;}
.y55_c01372{bottom:409.680000px;}
.y57_c01372{bottom:410.400000px;}
.y56_c01372{bottom:411.120000px;}
.y58_c01372{bottom:411.840000px;}
.y22_c01372{bottom:450.000000px;}
.y25_c01372{bottom:450.720000px;}
.y23_c01372{bottom:451.440000px;}
.y21_c01372{bottom:452.160000px;}
.y53_c01372{bottom:452.880000px;}
.y24_c01372{bottom:453.600000px;}
.y54_c01372{bottom:454.320000px;}
.y20_c01372{bottom:493.200000px;}
.y51_c01372{bottom:495.360000px;}
.y1f_c01372{bottom:496.800000px;}
.y52_c01372{bottom:499.680000px;}
.y1e_c01372{bottom:537.120000px;}
.y1d_c01372{bottom:539.280000px;}
.y50_c01372{bottom:540.000000px;}
.y4f_c01372{bottom:540.720000px;}
.y1c_c01372{bottom:580.320000px;}
.y1b_c01372{bottom:581.760000px;}
.y4c_c01372{bottom:582.480000px;}
.y4e_c01372{bottom:583.200000px;}
.y4d_c01372{bottom:585.360000px;}
.y1a_c01372{bottom:623.520000px;}
.y19_c01372{bottom:624.960000px;}
.y4a_c01372{bottom:625.680000px;}
.y4b_c01372{bottom:626.400000px;}
.y18_c01372{bottom:667.440000px;}
.y48_c01372{bottom:668.160000px;}
.y17_c01372{bottom:668.880000px;}
.y49_c01372{bottom:671.040000px;}
.y16_c01372{bottom:714.960000px;}
.y15_c01372{bottom:764.640000px;}
.y14_c01372{bottom:766.080000px;}
.y47_c01372{bottom:768.240000px;}
.y13_c01372{bottom:807.840000px;}
.y46_c01372{bottom:808.560000px;}
.y12_c01372{bottom:810.000000px;}
.y10_c01372{bottom:850.320000px;}
.y11_c01372{bottom:851.760000px;}
.yf_c01372{bottom:852.480000px;}
.y45_c01372{bottom:853.200000px;}
.y44_c01372{bottom:853.920000px;}
.ye_c01372{bottom:893.520000px;}
.yc_c01372{bottom:894.240000px;}
.yb_c01372{bottom:895.680000px;}
.y43_c01372{bottom:896.400000px;}
.yd_c01372{bottom:897.840000px;}
.ya_c01372{bottom:936.000000px;}
.y8_c01372{bottom:937.440000px;}
.y7_c01372{bottom:938.880000px;}
.y42_c01372{bottom:939.600000px;}
.y9_c01372{bottom:941.040000px;}
.y6_c01372{bottom:979.920000px;}
.y40_c01372{bottom:980.640000px;}
.y5_c01372{bottom:982.080000px;}
.y41_c01372{bottom:984.240000px;}
.y4_c01372{bottom:1022.400000px;}
.y2_c01372{bottom:1023.840000px;}
.y1_c01372{bottom:1024.560000px;}
.y3_c01372{bottom:1025.280000px;}
.y3f_c01372{bottom:1026.000000px;}
.y3e_c01372{bottom:1086.480000px;}
.he_c01372{height:25.917187px;}
.hb_c01372{height:44.059219px;}
.h6_c01372{height:46.650937px;}
.h9_c01372{height:49.242656px;}
.h4_c01372{height:51.834375px;}
.h2_c01372{height:54.426094px;}
.ha_c01372{height:57.017812px;}
.hc_c01372{height:59.609531px;}
.h10_c01372{height:60.186094px;}
.h5_c01372{height:60.762656px;}
.h7_c01372{height:62.201250px;}
.hf_c01372{height:64.792969px;}
.h8_c01372{height:67.384687px;}
.h3_c01372{height:69.976406px;}
.hd_c01372{height:72.568125px;}
.h1_c01372{height:1147.500000px;}
.h0_c01372{height:1147.680000px;}
.w0_c01372{width:779.760000px;}
.w1_c01372{width:780.000000px;}
.x0_c01372{left:0.000000px;}
.x1_c01372{left:60.480000px;}
.x16_c01372{left:61.920000px;}
.x1b_c01372{left:63.360000px;}
.x1c_c01372{left:93.600000px;}
.x10_c01372{left:112.320000px;}
.x2_c01372{left:122.400000px;}
.xe_c01372{left:123.840000px;}
.x11_c01372{left:166.320000px;}
.x17_c01372{left:198.720000px;}
.x19_c01372{left:208.800000px;}
.x12_c01372{left:210.240000px;}
.x7_c01372{left:221.040000px;}
.xc_c01372{left:242.640000px;}
.xf_c01372{left:244.080000px;}
.x3_c01372{left:252.720000px;}
.x1a_c01372{left:254.160000px;}
.xa_c01372{left:275.040000px;}
.x13_c01372{left:295.920000px;}
.x4_c01372{left:307.440000px;}
.xb_c01372{left:318.240000px;}
.x8_c01372{left:339.120000px;}
.x14_c01372{left:350.640000px;}
.x18_c01372{left:362.160000px;}
.xd_c01372{left:371.520000px;}
.x9_c01372{left:393.120000px;}
.x15_c01372{left:403.920000px;}
.x5_c01372{left:437.040000px;}
.x6_c01372{left:491.040000px;}
.x2d_c01372{left:587.520000px;}
.x2b_c01372{left:607.680000px;}
.x22_c01372{left:609.840000px;}
.x28_c01372{left:617.760000px;}
.x27_c01372{left:619.200000px;}
.x29_c01372{left:640.080000px;}
.x24_c01372{left:641.520000px;}
.x1e_c01372{left:642.960000px;}
.x25_c01372{left:673.920000px;}
.x1f_c01372{left:675.360000px;}
.x1d_c01372{left:681.840000px;}
.x23_c01372{left:684.720000px;}
.x2c_c01372{left:705.600000px;}
.x26_c01372{left:715.680000px;}
.x20_c01372{left:717.120000px;}
.x2a_c01372{left:735.840000px;}
.x21_c01372{left:737.280000px;}
@media print{
.v0_c01372{vertical-align:0.000000pt;}
.v2_c01372{vertical-align:5.120000pt;}
.v1_c01372{vertical-align:10.240000pt;}
.ls0_c01372{letter-spacing:0.000000pt;}
.ws0_c01372{word-spacing:-6.992000pt;}
.ws2_c01372{word-spacing:0.000000pt;}
.ws1_c01372{word-spacing:5.980800pt;}
.fsb_c01372{font-size:25.600000pt;}
.fs8_c01372{font-size:43.520000pt;}
.fs5_c01372{font-size:46.080000pt;}
.fs4_c01372{font-size:48.640000pt;}
.fs2_c01372{font-size:51.200000pt;}
.fs0_c01372{font-size:53.760000pt;}
.fs3_c01372{font-size:56.320000pt;}
.fs9_c01372{font-size:58.880000pt;}
.fs6_c01372{font-size:61.440000pt;}
.fsc_c01372{font-size:64.000000pt;}
.fs7_c01372{font-size:66.560000pt;}
.fs1_c01372{font-size:69.120000pt;}
.fsa_c01372{font-size:71.680000pt;}
.y0_c01372{bottom:0.000000pt;}
.y3d_c01372{bottom:52.480000pt;}
.y3b_c01372{bottom:55.680000pt;}
.y3c_c01372{bottom:56.320000pt;}
.y6c_c01372{bottom:58.240000pt;}
.y6e_c01372{bottom:58.880000pt;}
.y6d_c01372{bottom:59.520000pt;}
.y3a_c01372{bottom:91.520000pt;}
.y39_c01372{bottom:94.720000pt;}
.y69_c01372{bottom:96.000000pt;}
.y6a_c01372{bottom:97.280000pt;}
.y6b_c01372{bottom:98.560000pt;}
.y38_c01372{bottom:130.560000pt;}
.y37_c01372{bottom:133.120000pt;}
.y66_c01372{bottom:135.040000pt;}
.y68_c01372{bottom:136.960000pt;}
.y67_c01372{bottom:137.600000pt;}
.y36_c01372{bottom:168.960000pt;}
.y34_c01372{bottom:170.240000pt;}
.y33_c01372{bottom:171.520000pt;}
.y35_c01372{bottom:172.160000pt;}
.y63_c01372{bottom:173.440000pt;}
.y65_c01372{bottom:175.360000pt;}
.y64_c01372{bottom:176.000000pt;}
.y2f_c01372{bottom:206.720000pt;}
.y32_c01372{bottom:208.000000pt;}
.y30_c01372{bottom:209.280000pt;}
.y2e_c01372{bottom:210.560000pt;}
.y31_c01372{bottom:211.200000pt;}
.y60_c01372{bottom:211.840000pt;}
.y61_c01372{bottom:212.480000pt;}
.y62_c01372{bottom:214.400000pt;}
.y2d_c01372{bottom:245.120000pt;}
.y2c_c01372{bottom:248.960000pt;}
.y5d_c01372{bottom:250.240000pt;}
.y5e_c01372{bottom:251.520000pt;}
.y5f_c01372{bottom:252.160000pt;}
.y2b_c01372{bottom:284.160000pt;}
.y2a_c01372{bottom:287.360000pt;}
.y5b_c01372{bottom:288.000000pt;}
.y5c_c01372{bottom:288.640000pt;}
.y29_c01372{bottom:321.920000pt;}
.y28_c01372{bottom:325.120000pt;}
.y59_c01372{bottom:325.760000pt;}
.y5a_c01372{bottom:327.680000pt;}
.y27_c01372{bottom:360.960000pt;}
.y26_c01372{bottom:363.520000pt;}
.y55_c01372{bottom:364.160000pt;}
.y57_c01372{bottom:364.800000pt;}
.y56_c01372{bottom:365.440000pt;}
.y58_c01372{bottom:366.080000pt;}
.y22_c01372{bottom:400.000000pt;}
.y25_c01372{bottom:400.640000pt;}
.y23_c01372{bottom:401.280000pt;}
.y21_c01372{bottom:401.920000pt;}
.y53_c01372{bottom:402.560000pt;}
.y24_c01372{bottom:403.200000pt;}
.y54_c01372{bottom:403.840000pt;}
.y20_c01372{bottom:438.400000pt;}
.y51_c01372{bottom:440.320000pt;}
.y1f_c01372{bottom:441.600000pt;}
.y52_c01372{bottom:444.160000pt;}
.y1e_c01372{bottom:477.440000pt;}
.y1d_c01372{bottom:479.360000pt;}
.y50_c01372{bottom:480.000000pt;}
.y4f_c01372{bottom:480.640000pt;}
.y1c_c01372{bottom:515.840000pt;}
.y1b_c01372{bottom:517.120000pt;}
.y4c_c01372{bottom:517.760000pt;}
.y4e_c01372{bottom:518.400000pt;}
.y4d_c01372{bottom:520.320000pt;}
.y1a_c01372{bottom:554.240000pt;}
.y19_c01372{bottom:555.520000pt;}
.y4a_c01372{bottom:556.160000pt;}
.y4b_c01372{bottom:556.800000pt;}
.y18_c01372{bottom:593.280000pt;}
.y48_c01372{bottom:593.920000pt;}
.y17_c01372{bottom:594.560000pt;}
.y49_c01372{bottom:596.480000pt;}
.y16_c01372{bottom:635.520000pt;}
.y15_c01372{bottom:679.680000pt;}
.y14_c01372{bottom:680.960000pt;}
.y47_c01372{bottom:682.880000pt;}
.y13_c01372{bottom:718.080000pt;}
.y46_c01372{bottom:718.720000pt;}
.y12_c01372{bottom:720.000000pt;}
.y10_c01372{bottom:755.840000pt;}
.y11_c01372{bottom:757.120000pt;}
.yf_c01372{bottom:757.760000pt;}
.y45_c01372{bottom:758.400000pt;}
.y44_c01372{bottom:759.040000pt;}
.ye_c01372{bottom:794.240000pt;}
.yc_c01372{bottom:794.880000pt;}
.yb_c01372{bottom:796.160000pt;}
.y43_c01372{bottom:796.800000pt;}
.yd_c01372{bottom:798.080000pt;}
.ya_c01372{bottom:832.000000pt;}
.y8_c01372{bottom:833.280000pt;}
.y7_c01372{bottom:834.560000pt;}
.y42_c01372{bottom:835.200000pt;}
.y9_c01372{bottom:836.480000pt;}
.y6_c01372{bottom:871.040000pt;}
.y40_c01372{bottom:871.680000pt;}
.y5_c01372{bottom:872.960000pt;}
.y41_c01372{bottom:874.880000pt;}
.y4_c01372{bottom:908.800000pt;}
.y2_c01372{bottom:910.080000pt;}
.y1_c01372{bottom:910.720000pt;}
.y3_c01372{bottom:911.360000pt;}
.y3f_c01372{bottom:912.000000pt;}
.y3e_c01372{bottom:965.760000pt;}
.he_c01372{height:23.037500pt;}
.hb_c01372{height:39.163750pt;}
.h6_c01372{height:41.467500pt;}
.h9_c01372{height:43.771250pt;}
.h4_c01372{height:46.075000pt;}
.h2_c01372{height:48.378750pt;}
.ha_c01372{height:50.682500pt;}
.hc_c01372{height:52.986250pt;}
.h10_c01372{height:53.498750pt;}
.h5_c01372{height:54.011250pt;}
.h7_c01372{height:55.290000pt;}
.hf_c01372{height:57.593750pt;}
.h8_c01372{height:59.897500pt;}
.h3_c01372{height:62.201250pt;}
.hd_c01372{height:64.505000pt;}
.h1_c01372{height:1020.000000pt;}
.h0_c01372{height:1020.160000pt;}
.w0_c01372{width:693.120000pt;}
.w1_c01372{width:693.333333pt;}
.x0_c01372{left:0.000000pt;}
.x1_c01372{left:53.760000pt;}
.x16_c01372{left:55.040000pt;}
.x1b_c01372{left:56.320000pt;}
.x1c_c01372{left:83.200000pt;}
.x10_c01372{left:99.840000pt;}
.x2_c01372{left:108.800000pt;}
.xe_c01372{left:110.080000pt;}
.x11_c01372{left:147.840000pt;}
.x17_c01372{left:176.640000pt;}
.x19_c01372{left:185.600000pt;}
.x12_c01372{left:186.880000pt;}
.x7_c01372{left:196.480000pt;}
.xc_c01372{left:215.680000pt;}
.xf_c01372{left:216.960000pt;}
.x3_c01372{left:224.640000pt;}
.x1a_c01372{left:225.920000pt;}
.xa_c01372{left:244.480000pt;}
.x13_c01372{left:263.040000pt;}
.x4_c01372{left:273.280000pt;}
.xb_c01372{left:282.880000pt;}
.x8_c01372{left:301.440000pt;}
.x14_c01372{left:311.680000pt;}
.x18_c01372{left:321.920000pt;}
.xd_c01372{left:330.240000pt;}
.x9_c01372{left:349.440000pt;}
.x15_c01372{left:359.040000pt;}
.x5_c01372{left:388.480000pt;}
.x6_c01372{left:436.480000pt;}
.x2d_c01372{left:522.240000pt;}
.x2b_c01372{left:540.160000pt;}
.x22_c01372{left:542.080000pt;}
.x28_c01372{left:549.120000pt;}
.x27_c01372{left:550.400000pt;}
.x29_c01372{left:568.960000pt;}
.x24_c01372{left:570.240000pt;}
.x1e_c01372{left:571.520000pt;}
.x25_c01372{left:599.040000pt;}
.x1f_c01372{left:600.320000pt;}
.x1d_c01372{left:606.080000pt;}
.x23_c01372{left:608.640000pt;}
.x2c_c01372{left:627.200000pt;}
.x26_c01372{left:636.160000pt;}
.x20_c01372{left:637.440000pt;}
.x2a_c01372{left:654.080000pt;}
.x21_c01372{left:655.360000pt;}
}





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

.ir_c01373:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01373{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01373;src:url('chunks/assets/font_6360574cd80dcb23b7b0debf.woff2')format("woff");}.ff1_c01373{font-family:ff1_c01373;line-height:1.109863;font-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_c01373{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01373{transform:matrix(0.211200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211200,0.000000,0.000000,0.250000,0,0);}
.m39_c01373{transform:matrix(0.221725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221725,0.000000,0.000000,0.250000,0,0);}
.m19_c01373{transform:matrix(0.229475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229475,0.000000,0.000000,0.250000,0,0);}
.m1f_c01373{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m3c_c01373{transform:matrix(0.237525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237525,0.000000,0.000000,0.250000,0,0);}
.m14_c01373{transform:matrix(0.241125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241125,0.000000,0.000000,0.250000,0,0);}
.m3e_c01373{transform:matrix(0.245825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245825,0.000000,0.000000,0.250000,0,0);}
.m3b_c01373{transform:matrix(0.247175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247175,0.000000,0.000000,0.250000,0,0);}
.m44_c01373{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m29_c01373{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mb_c01373{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m7_c01373{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m1_c01373{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);}
.m35_c01373{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);}
.m21_c01373{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);}
.m20_c01373{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_c01373{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01373{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m5_c01373{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);}
.m34_c01373{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.me_c01373{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);}
.m27_c01373{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);}
.m40_c01373{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m25_c01373{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);}
.m41_c01373{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m9_c01373{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mf_c01373{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m3_c01373{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01373{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m22_c01373{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m12_c01373{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01373{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m16_c01373{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01373{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.md_c01373{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01373{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01373{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m18_c01373{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m23_c01373{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m28_c01373{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m15_c01373{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m4_c01373{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01373{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.mc_c01373{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_c01373{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m0_c01373{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);}
.m2c_c01373{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m30_c01373{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);}
.m43_c01373{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);}
.m11_c01373{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01373{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m32_c01373{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);}
.m1e_c01373{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.ma_c01373{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m36_c01373{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);}
.m45_c01373{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);}
.m37_c01373{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m31_c01373{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m26_c01373{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01373{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m6_c01373{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m2_c01373{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m38_c01373{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);}
.m33_c01373{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01373{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m8_c01373{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01373{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m13_c01373{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m42_c01373{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.v1_c01373{vertical-align:-11.520000px;}
.v2_c01373{vertical-align:-2.880000px;}
.v0_c01373{vertical-align:0.000000px;}
.ls1_c01373{letter-spacing:0.000000px;}
.ls0_c01373{letter-spacing:87.974400px;}
.sc__c01373{text-shadow:none;}
.sc0_c01373{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01373{-webkit-text-stroke:0px transparent;}
.sc0_c01373{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01373{word-spacing:0.000000px;}
.ws0_c01373{word-spacing:10.267200px;}
.fc0_c01373{color:transparent;}
.fsb_c01373{font-size:25.920000px;}
.fs10_c01373{font-size:34.560000px;}
.fs5_c01373{font-size:37.440000px;}
.fs6_c01373{font-size:40.320000px;}
.fs7_c01373{font-size:43.200000px;}
.fsd_c01373{font-size:48.960000px;}
.fsc_c01373{font-size:51.840000px;}
.fsf_c01373{font-size:54.720000px;}
.fs2_c01373{font-size:57.600000px;}
.fs4_c01373{font-size:60.480000px;}
.fs0_c01373{font-size:63.360000px;}
.fs9_c01373{font-size:66.240000px;}
.fsa_c01373{font-size:69.120000px;}
.fs8_c01373{font-size:72.000000px;}
.fs1_c01373{font-size:74.880000px;}
.fs3_c01373{font-size:77.760000px;}
.fse_c01373{font-size:80.640000px;}
.fs11_c01373{font-size:83.520000px;}
.y0_c01373{bottom:0.000000px;}
.y52_c01373{bottom:69.840000px;}
.y55_c01373{bottom:71.280000px;}
.y54_c01373{bottom:72.720000px;}
.y53_c01373{bottom:73.440000px;}
.y70_c01373{bottom:74.160000px;}
.y6f_c01373{bottom:74.880000px;}
.y6e_c01373{bottom:77.760000px;}
.y50_c01373{bottom:113.040000px;}
.y51_c01373{bottom:113.760000px;}
.y4f_c01373{bottom:115.920000px;}
.y6c_c01373{bottom:118.080000px;}
.y6d_c01373{bottom:118.800000px;}
.y4d_c01373{bottom:155.520000px;}
.y4e_c01373{bottom:156.240000px;}
.y4c_c01373{bottom:159.840000px;}
.y68_c01373{bottom:160.560000px;}
.y6a_c01373{bottom:161.280000px;}
.y69_c01373{bottom:162.000000px;}
.y6b_c01373{bottom:162.720000px;}
.y49_c01373{bottom:198.720000px;}
.y4b_c01373{bottom:200.880000px;}
.y4a_c01373{bottom:203.040000px;}
.y48_c01373{bottom:203.760000px;}
.y66_c01373{bottom:205.200000px;}
.y65_c01373{bottom:205.920000px;}
.y67_c01373{bottom:207.360000px;}
.y47_c01373{bottom:244.080000px;}
.y45_c01373{bottom:246.240000px;}
.y46_c01373{bottom:246.960000px;}
.y64_c01373{bottom:248.400000px;}
.y44_c01373{bottom:287.280000px;}
.y43_c01373{bottom:288.000000px;}
.y42_c01373{bottom:290.160000px;}
.y62_c01373{bottom:291.600000px;}
.y63_c01373{bottom:293.760000px;}
.y41_c01373{bottom:330.480000px;}
.y40_c01373{bottom:333.360000px;}
.y61_c01373{bottom:334.080000px;}
.y60_c01373{bottom:336.240000px;}
.y5f_c01373{bottom:336.960000px;}
.y3f_c01373{bottom:374.400000px;}
.y5e_c01373{bottom:376.560000px;}
.y3e_c01373{bottom:377.280000px;}
.y3d_c01373{bottom:378.720000px;}
.y3c_c01373{bottom:417.600000px;}
.y3b_c01373{bottom:419.760000px;}
.y5c_c01373{bottom:420.480000px;}
.y5d_c01373{bottom:421.200000px;}
.y3a_c01373{bottom:460.800000px;}
.y5b_c01373{bottom:463.680000px;}
.y39_c01373{bottom:464.400000px;}
.y5a_c01373{bottom:465.840000px;}
.y59_c01373{bottom:466.560000px;}
.y38_c01373{bottom:504.720000px;}
.y57_c01373{bottom:506.160000px;}
.y36_c01373{bottom:506.880000px;}
.y37_c01373{bottom:507.600000px;}
.y58_c01373{bottom:509.040000px;}
.y32_c01373{bottom:549.360000px;}
.y34_c01373{bottom:550.080000px;}
.y35_c01373{bottom:550.800000px;}
.y33_c01373{bottom:551.520000px;}
.y56_c01373{bottom:552.240000px;}
.y1b_c01373{bottom:590.400000px;}
.y1a_c01373{bottom:591.840000px;}
.y31_c01373{bottom:592.560000px;}
.y30_c01373{bottom:593.280000px;}
.y19_c01373{bottom:632.880000px;}
.y2f_c01373{bottom:635.760000px;}
.y18_c01373{bottom:636.480000px;}
.y2d_c01373{bottom:637.200000px;}
.y2e_c01373{bottom:638.640000px;}
.y17_c01373{bottom:677.520000px;}
.y2c_c01373{bottom:678.960000px;}
.y16_c01373{bottom:679.680000px;}
.y2b_c01373{bottom:721.440000px;}
.y2a_c01373{bottom:722.160000px;}
.y29_c01373{bottom:722.880000px;}
.y15_c01373{bottom:763.200000px;}
.y13_c01373{bottom:763.920000px;}
.y12_c01373{bottom:764.640000px;}
.y27_c01373{bottom:765.360000px;}
.y14_c01373{bottom:767.520000px;}
.yf_c01373{bottom:806.400000px;}
.y26_c01373{bottom:807.840000px;}
.ye_c01373{bottom:808.560000px;}
.y10_c01373{bottom:809.280000px;}
.y11_c01373{bottom:810.720000px;}
.yd_c01373{bottom:850.320000px;}
.yc_c01373{bottom:851.040000px;}
.y25_c01373{bottom:851.760000px;}
.y28_c01373{bottom:853.200000px;}
.yb_c01373{bottom:893.520000px;}
.y24_c01373{bottom:894.960000px;}
.ya_c01373{bottom:895.680000px;}
.y23_c01373{bottom:897.120000px;}
.y9_c01373{bottom:936.720000px;}
.y22_c01373{bottom:938.160000px;}
.y8_c01373{bottom:938.880000px;}
.y21_c01373{bottom:939.600000px;}
.y20_c01373{bottom:940.320000px;}
.y7_c01373{bottom:980.640000px;}
.y5_c01373{bottom:981.360000px;}
.y1f_c01373{bottom:982.080000px;}
.y6_c01373{bottom:983.520000px;}
.y4_c01373{bottom:1023.120000px;}
.y2_c01373{bottom:1023.840000px;}
.y1d_c01373{bottom:1024.560000px;}
.y1_c01373{bottom:1025.280000px;}
.y1e_c01373{bottom:1026.720000px;}
.y3_c01373{bottom:1027.440000px;}
.y1c_c01373{bottom:1082.880000px;}
.hd_c01373{height:23.325469px;}
.h12_c01373{height:31.100625px;}
.h7_c01373{height:33.692344px;}
.h8_c01373{height:36.284062px;}
.h9_c01373{height:38.875781px;}
.hf_c01373{height:44.059219px;}
.he_c01373{height:46.650937px;}
.h11_c01373{height:49.242656px;}
.h4_c01373{height:51.834375px;}
.h6_c01373{height:54.426094px;}
.h2_c01373{height:57.017812px;}
.hb_c01373{height:59.609531px;}
.hc_c01373{height:62.201250px;}
.ha_c01373{height:64.792969px;}
.h3_c01373{height:67.384687px;}
.h5_c01373{height:69.976406px;}
.h10_c01373{height:72.568125px;}
.h13_c01373{height:75.159844px;}
.h1_c01373{height:1147.500000px;}
.h0_c01373{height:1147.680000px;}
.w0_c01373{width:779.760000px;}
.w1_c01373{width:780.000000px;}
.x0_c01373{left:0.000000px;}
.x1_c01373{left:60.480000px;}
.x22_c01373{left:61.920000px;}
.x6_c01373{left:92.880000px;}
.x2_c01373{left:123.120000px;}
.x1c_c01373{left:124.560000px;}
.xb_c01373{left:199.440000px;}
.x1d_c01373{left:209.520000px;}
.x3_c01373{left:210.960000px;}
.x24_c01373{left:221.760000px;}
.x7_c01373{left:254.160000px;}
.x9_c01373{left:255.600000px;}
.x4_c01373{left:264.960000px;}
.x23_c01373{left:275.760000px;}
.x8_c01373{left:308.160000px;}
.x1e_c01373{left:319.680000px;}
.xc_c01373{left:330.480000px;}
.xe_c01373{left:340.560000px;}
.x5_c01373{left:351.360000px;}
.xa_c01373{left:362.880000px;}
.xd_c01373{left:384.480000px;}
.x1f_c01373{left:447.840000px;}
.x20_c01373{left:501.840000px;}
.x21_c01373{left:555.120000px;}
.x1b_c01373{left:578.160000px;}
.x16_c01373{left:588.240000px;}
.x10_c01373{left:589.680000px;}
.x14_c01373{left:609.120000px;}
.x13_c01373{left:610.560000px;}
.x18_c01373{left:642.240000px;}
.x11_c01373{left:643.680000px;}
.x19_c01373{left:673.920000px;}
.xf_c01373{left:676.080000px;}
.x1a_c01373{left:684.720000px;}
.x26_c01373{left:715.680000px;}
.x15_c01373{left:717.840000px;}
.x12_c01373{left:719.280000px;}
.x25_c01373{left:737.280000px;}
.x17_c01373{left:738.720000px;}
@media print{
.v1_c01373{vertical-align:-10.240000pt;}
.v2_c01373{vertical-align:-2.560000pt;}
.v0_c01373{vertical-align:0.000000pt;}
.ls1_c01373{letter-spacing:0.000000pt;}
.ls0_c01373{letter-spacing:78.199467pt;}
.ws1_c01373{word-spacing:0.000000pt;}
.ws0_c01373{word-spacing:9.126400pt;}
.fsb_c01373{font-size:23.040000pt;}
.fs10_c01373{font-size:30.720000pt;}
.fs5_c01373{font-size:33.280000pt;}
.fs6_c01373{font-size:35.840000pt;}
.fs7_c01373{font-size:38.400000pt;}
.fsd_c01373{font-size:43.520000pt;}
.fsc_c01373{font-size:46.080000pt;}
.fsf_c01373{font-size:48.640000pt;}
.fs2_c01373{font-size:51.200000pt;}
.fs4_c01373{font-size:53.760000pt;}
.fs0_c01373{font-size:56.320000pt;}
.fs9_c01373{font-size:58.880000pt;}
.fsa_c01373{font-size:61.440000pt;}
.fs8_c01373{font-size:64.000000pt;}
.fs1_c01373{font-size:66.560000pt;}
.fs3_c01373{font-size:69.120000pt;}
.fse_c01373{font-size:71.680000pt;}
.fs11_c01373{font-size:74.240000pt;}
.y0_c01373{bottom:0.000000pt;}
.y52_c01373{bottom:62.080000pt;}
.y55_c01373{bottom:63.360000pt;}
.y54_c01373{bottom:64.640000pt;}
.y53_c01373{bottom:65.280000pt;}
.y70_c01373{bottom:65.920000pt;}
.y6f_c01373{bottom:66.560000pt;}
.y6e_c01373{bottom:69.120000pt;}
.y50_c01373{bottom:100.480000pt;}
.y51_c01373{bottom:101.120000pt;}
.y4f_c01373{bottom:103.040000pt;}
.y6c_c01373{bottom:104.960000pt;}
.y6d_c01373{bottom:105.600000pt;}
.y4d_c01373{bottom:138.240000pt;}
.y4e_c01373{bottom:138.880000pt;}
.y4c_c01373{bottom:142.080000pt;}
.y68_c01373{bottom:142.720000pt;}
.y6a_c01373{bottom:143.360000pt;}
.y69_c01373{bottom:144.000000pt;}
.y6b_c01373{bottom:144.640000pt;}
.y49_c01373{bottom:176.640000pt;}
.y4b_c01373{bottom:178.560000pt;}
.y4a_c01373{bottom:180.480000pt;}
.y48_c01373{bottom:181.120000pt;}
.y66_c01373{bottom:182.400000pt;}
.y65_c01373{bottom:183.040000pt;}
.y67_c01373{bottom:184.320000pt;}
.y47_c01373{bottom:216.960000pt;}
.y45_c01373{bottom:218.880000pt;}
.y46_c01373{bottom:219.520000pt;}
.y64_c01373{bottom:220.800000pt;}
.y44_c01373{bottom:255.360000pt;}
.y43_c01373{bottom:256.000000pt;}
.y42_c01373{bottom:257.920000pt;}
.y62_c01373{bottom:259.200000pt;}
.y63_c01373{bottom:261.120000pt;}
.y41_c01373{bottom:293.760000pt;}
.y40_c01373{bottom:296.320000pt;}
.y61_c01373{bottom:296.960000pt;}
.y60_c01373{bottom:298.880000pt;}
.y5f_c01373{bottom:299.520000pt;}
.y3f_c01373{bottom:332.800000pt;}
.y5e_c01373{bottom:334.720000pt;}
.y3e_c01373{bottom:335.360000pt;}
.y3d_c01373{bottom:336.640000pt;}
.y3c_c01373{bottom:371.200000pt;}
.y3b_c01373{bottom:373.120000pt;}
.y5c_c01373{bottom:373.760000pt;}
.y5d_c01373{bottom:374.400000pt;}
.y3a_c01373{bottom:409.600000pt;}
.y5b_c01373{bottom:412.160000pt;}
.y39_c01373{bottom:412.800000pt;}
.y5a_c01373{bottom:414.080000pt;}
.y59_c01373{bottom:414.720000pt;}
.y38_c01373{bottom:448.640000pt;}
.y57_c01373{bottom:449.920000pt;}
.y36_c01373{bottom:450.560000pt;}
.y37_c01373{bottom:451.200000pt;}
.y58_c01373{bottom:452.480000pt;}
.y32_c01373{bottom:488.320000pt;}
.y34_c01373{bottom:488.960000pt;}
.y35_c01373{bottom:489.600000pt;}
.y33_c01373{bottom:490.240000pt;}
.y56_c01373{bottom:490.880000pt;}
.y1b_c01373{bottom:524.800000pt;}
.y1a_c01373{bottom:526.080000pt;}
.y31_c01373{bottom:526.720000pt;}
.y30_c01373{bottom:527.360000pt;}
.y19_c01373{bottom:562.560000pt;}
.y2f_c01373{bottom:565.120000pt;}
.y18_c01373{bottom:565.760000pt;}
.y2d_c01373{bottom:566.400000pt;}
.y2e_c01373{bottom:567.680000pt;}
.y17_c01373{bottom:602.240000pt;}
.y2c_c01373{bottom:603.520000pt;}
.y16_c01373{bottom:604.160000pt;}
.y2b_c01373{bottom:641.280000pt;}
.y2a_c01373{bottom:641.920000pt;}
.y29_c01373{bottom:642.560000pt;}
.y15_c01373{bottom:678.400000pt;}
.y13_c01373{bottom:679.040000pt;}
.y12_c01373{bottom:679.680000pt;}
.y27_c01373{bottom:680.320000pt;}
.y14_c01373{bottom:682.240000pt;}
.yf_c01373{bottom:716.800000pt;}
.y26_c01373{bottom:718.080000pt;}
.ye_c01373{bottom:718.720000pt;}
.y10_c01373{bottom:719.360000pt;}
.y11_c01373{bottom:720.640000pt;}
.yd_c01373{bottom:755.840000pt;}
.yc_c01373{bottom:756.480000pt;}
.y25_c01373{bottom:757.120000pt;}
.y28_c01373{bottom:758.400000pt;}
.yb_c01373{bottom:794.240000pt;}
.y24_c01373{bottom:795.520000pt;}
.ya_c01373{bottom:796.160000pt;}
.y23_c01373{bottom:797.440000pt;}
.y9_c01373{bottom:832.640000pt;}
.y22_c01373{bottom:833.920000pt;}
.y8_c01373{bottom:834.560000pt;}
.y21_c01373{bottom:835.200000pt;}
.y20_c01373{bottom:835.840000pt;}
.y7_c01373{bottom:871.680000pt;}
.y5_c01373{bottom:872.320000pt;}
.y1f_c01373{bottom:872.960000pt;}
.y6_c01373{bottom:874.240000pt;}
.y4_c01373{bottom:909.440000pt;}
.y2_c01373{bottom:910.080000pt;}
.y1d_c01373{bottom:910.720000pt;}
.y1_c01373{bottom:911.360000pt;}
.y1e_c01373{bottom:912.640000pt;}
.y3_c01373{bottom:913.280000pt;}
.y1c_c01373{bottom:962.560000pt;}
.hd_c01373{height:20.733750pt;}
.h12_c01373{height:27.645000pt;}
.h7_c01373{height:29.948750pt;}
.h8_c01373{height:32.252500pt;}
.h9_c01373{height:34.556250pt;}
.hf_c01373{height:39.163750pt;}
.he_c01373{height:41.467500pt;}
.h11_c01373{height:43.771250pt;}
.h4_c01373{height:46.075000pt;}
.h6_c01373{height:48.378750pt;}
.h2_c01373{height:50.682500pt;}
.hb_c01373{height:52.986250pt;}
.hc_c01373{height:55.290000pt;}
.ha_c01373{height:57.593750pt;}
.h3_c01373{height:59.897500pt;}
.h5_c01373{height:62.201250pt;}
.h10_c01373{height:64.505000pt;}
.h13_c01373{height:66.808750pt;}
.h1_c01373{height:1020.000000pt;}
.h0_c01373{height:1020.160000pt;}
.w0_c01373{width:693.120000pt;}
.w1_c01373{width:693.333333pt;}
.x0_c01373{left:0.000000pt;}
.x1_c01373{left:53.760000pt;}
.x22_c01373{left:55.040000pt;}
.x6_c01373{left:82.560000pt;}
.x2_c01373{left:109.440000pt;}
.x1c_c01373{left:110.720000pt;}
.xb_c01373{left:177.280000pt;}
.x1d_c01373{left:186.240000pt;}
.x3_c01373{left:187.520000pt;}
.x24_c01373{left:197.120000pt;}
.x7_c01373{left:225.920000pt;}
.x9_c01373{left:227.200000pt;}
.x4_c01373{left:235.520000pt;}
.x23_c01373{left:245.120000pt;}
.x8_c01373{left:273.920000pt;}
.x1e_c01373{left:284.160000pt;}
.xc_c01373{left:293.760000pt;}
.xe_c01373{left:302.720000pt;}
.x5_c01373{left:312.320000pt;}
.xa_c01373{left:322.560000pt;}
.xd_c01373{left:341.760000pt;}
.x1f_c01373{left:398.080000pt;}
.x20_c01373{left:446.080000pt;}
.x21_c01373{left:493.440000pt;}
.x1b_c01373{left:513.920000pt;}
.x16_c01373{left:522.880000pt;}
.x10_c01373{left:524.160000pt;}
.x14_c01373{left:541.440000pt;}
.x13_c01373{left:542.720000pt;}
.x18_c01373{left:570.880000pt;}
.x11_c01373{left:572.160000pt;}
.x19_c01373{left:599.040000pt;}
.xf_c01373{left:600.960000pt;}
.x1a_c01373{left:608.640000pt;}
.x26_c01373{left:636.160000pt;}
.x15_c01373{left:638.080000pt;}
.x12_c01373{left:639.360000pt;}
.x25_c01373{left:655.360000pt;}
.x17_c01373{left:656.640000pt;}
}





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

.ir_c01374:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01374{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01374;src:url('chunks/assets/font_41ee0fab6c33dc4efa79872b.woff2')format("woff");}.ff1_c01374{font-family:ff1_c01374;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m43_c01374{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.md_c01374{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m44_c01374{transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);}
.m5_c01374{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m28_c01374{transform:matrix(0.219200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219200,0.000000,0.000000,0.250000,0,0);}
.m40_c01374{transform:matrix(0.219850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219850,0.000000,0.000000,0.250000,0,0);}
.m45_c01374{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);}
.m19_c01374{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m6_c01374{transform:matrix(0.231875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231875,0.000000,0.000000,0.250000,0,0);}
.m33_c01374{transform:matrix(0.233575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233575,0.000000,0.000000,0.250000,0,0);}
.m1c_c01374{transform:matrix(0.243025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243025,0.000000,0.000000,0.250000,0,0);}
.m2d_c01374{transform:matrix(0.243575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243575,0.000000,0.000000,0.250000,0,0);}
.m23_c01374{transform:matrix(0.244225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244225,0.000000,0.000000,0.250000,0,0);}
.m2e_c01374{transform:matrix(0.244675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244675,0.000000,0.000000,0.250000,0,0);}
.m42_c01374{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m32_c01374{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);}
.m3e_c01374{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01374{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mf_c01374{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m10_c01374{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m15_c01374{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01374{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.me_c01374{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m1_c01374{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m9_c01374{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m12_c01374{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);}
.m2b_c01374{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m7_c01374{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01374{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_c01374{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);}
.m3f_c01374{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mc_c01374{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);}
.m31_c01374{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m17_c01374{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m38_c01374{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mb_c01374{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m20_c01374{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m22_c01374{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m37_c01374{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01374{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m21_c01374{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01374{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3_c01374{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m4_c01374{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01374{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m18_c01374{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m29_c01374{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m8_c01374{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);}
.m24_c01374{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01374{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m0_c01374{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);}
.m3d_c01374{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m14_c01374{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01374{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01374{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);}
.m16_c01374{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m27_c01374{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);}
.m2c_c01374{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01374{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m46_c01374{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01374{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01374{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);}
.ma_c01374{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);}
.m25_c01374{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m41_c01374{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);}
.m34_c01374{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m26_c01374{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m39_c01374{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m2_c01374{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m30_c01374{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m35_c01374{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.v2_c01374{vertical-align:-8.640000px;}
.v1_c01374{vertical-align:-2.880000px;}
.v0_c01374{vertical-align:0.000000px;}
.ls0_c01374{letter-spacing:0.000000px;}
.sc__c01374{text-shadow:none;}
.sc0_c01374{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01374{-webkit-text-stroke:0px transparent;}
.sc0_c01374{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01374{word-spacing:0.000000px;}
.ws0_c01374{word-spacing:9.212400px;}
.ws1_c01374{word-spacing:9.474000px;}
.fc0_c01374{color:transparent;}
.fsd_c01374{font-size:14.400000px;}
.fsc_c01374{font-size:23.040000px;}
.fs2_c01374{font-size:31.680000px;}
.fs9_c01374{font-size:48.960000px;}
.fs5_c01374{font-size:51.840000px;}
.fs3_c01374{font-size:54.720000px;}
.fs7_c01374{font-size:57.600000px;}
.fs6_c01374{font-size:60.480000px;}
.fs4_c01374{font-size:63.360000px;}
.fs1_c01374{font-size:66.240000px;}
.fsb_c01374{font-size:69.120000px;}
.fsa_c01374{font-size:72.000000px;}
.fs8_c01374{font-size:74.880000px;}
.fs0_c01374{font-size:77.760000px;}
.fsf_c01374{font-size:80.640000px;}
.fse_c01374{font-size:112.320000px;}
.y0_c01374{bottom:0.000000px;}
.y60_c01374{bottom:57.600000px;}
.y61_c01374{bottom:58.320000px;}
.y69_c01374{bottom:60.480000px;}
.y6a_c01374{bottom:61.920000px;}
.y5f_c01374{bottom:62.640000px;}
.y5d_c01374{bottom:101.520000px;}
.y5e_c01374{bottom:104.400000px;}
.y67_c01374{bottom:105.120000px;}
.y68_c01374{bottom:105.840000px;}
.y5c_c01374{bottom:106.560000px;}
.y59_c01374{bottom:144.720000px;}
.y5b_c01374{bottom:145.440000px;}
.y66_c01374{bottom:146.880000px;}
.y65_c01374{bottom:148.320000px;}
.y5a_c01374{bottom:149.040000px;}
.y58_c01374{bottom:149.760000px;}
.y57_c01374{bottom:187.920000px;}
.y63_c01374{bottom:191.520000px;}
.y56_c01374{bottom:192.240000px;}
.y62_c01374{bottom:192.960000px;}
.y64_c01374{bottom:193.680000px;}
.y54_c01374{bottom:231.840000px;}
.y55_c01374{bottom:234.000000px;}
.y53_c01374{bottom:235.440000px;}
.y51_c01374{bottom:275.040000px;}
.y52_c01374{bottom:277.200000px;}
.y50_c01374{bottom:278.640000px;}
.y4f_c01374{bottom:309.600000px;}
.y4d_c01374{bottom:318.240000px;}
.y4e_c01374{bottom:318.960000px;}
.y4a_c01374{bottom:321.840000px;}
.y4b_c01374{bottom:322.560000px;}
.y4c_c01374{bottom:325.440000px;}
.y47_c01374{bottom:361.440000px;}
.y48_c01374{bottom:364.320000px;}
.y46_c01374{bottom:365.040000px;}
.y49_c01374{bottom:365.760000px;}
.y3f_c01374{bottom:405.360000px;}
.y44_c01374{bottom:406.800000px;}
.y45_c01374{bottom:407.520000px;}
.y3e_c01374{bottom:408.240000px;}
.y3c_c01374{bottom:447.840000px;}
.y3d_c01374{bottom:448.560000px;}
.y41_c01374{bottom:450.000000px;}
.y40_c01374{bottom:450.720000px;}
.y43_c01374{bottom:451.440000px;}
.y3b_c01374{bottom:452.160000px;}
.y42_c01374{bottom:452.880000px;}
.y38_c01374{bottom:491.760000px;}
.y39_c01374{bottom:493.200000px;}
.y36_c01374{bottom:493.920000px;}
.y3a_c01374{bottom:494.640000px;}
.y37_c01374{bottom:496.080000px;}
.y33_c01374{bottom:534.960000px;}
.y31_c01374{bottom:535.680000px;}
.y34_c01374{bottom:536.400000px;}
.y35_c01374{bottom:537.120000px;}
.y30_c01374{bottom:538.560000px;}
.y32_c01374{bottom:539.280000px;}
.y2f_c01374{bottom:577.440000px;}
.y2b_c01374{bottom:578.160000px;}
.y2a_c01374{bottom:578.880000px;}
.y2d_c01374{bottom:579.600000px;}
.y29_c01374{bottom:581.040000px;}
.y2e_c01374{bottom:581.760000px;}
.y2c_c01374{bottom:582.480000px;}
.y25_c01374{bottom:621.360000px;}
.y26_c01374{bottom:622.080000px;}
.y27_c01374{bottom:622.800000px;}
.y24_c01374{bottom:624.960000px;}
.y28_c01374{bottom:625.680000px;}
.y1f_c01374{bottom:666.000000px;}
.y20_c01374{bottom:666.720000px;}
.y23_c01374{bottom:667.440000px;}
.y1e_c01374{bottom:707.760000px;}
.y22_c01374{bottom:709.200000px;}
.y21_c01374{bottom:712.800000px;}
.y1d_c01374{bottom:751.680000px;}
.y18_c01374{bottom:752.400000px;}
.y17_c01374{bottom:756.000000px;}
.y16_c01374{bottom:794.880000px;}
.y1c_c01374{bottom:795.600000px;}
.y1b_c01374{bottom:796.320000px;}
.y14_c01374{bottom:799.200000px;}
.y15_c01374{bottom:799.920000px;}
.y19_c01374{bottom:837.360000px;}
.y13_c01374{bottom:838.080000px;}
.y11_c01374{bottom:838.800000px;}
.y1a_c01374{bottom:839.520000px;}
.y10_c01374{bottom:840.240000px;}
.y12_c01374{bottom:842.400000px;}
.yf_c01374{bottom:885.600000px;}
.ye_c01374{bottom:933.840000px;}
.yb_c01374{bottom:934.560000px;}
.y9_c01374{bottom:935.280000px;}
.y8_c01374{bottom:937.440000px;}
.ya_c01374{bottom:938.160000px;}
.yd_c01374{bottom:977.040000px;}
.y7_c01374{bottom:977.760000px;}
.y5_c01374{bottom:979.920000px;}
.y6_c01374{bottom:982.080000px;}
.yc_c01374{bottom:1020.960000px;}
.y4_c01374{bottom:1022.400000px;}
.y2_c01374{bottom:1023.840000px;}
.y3_c01374{bottom:1025.280000px;}
.y1_c01374{bottom:1080.000000px;}
.hf_c01374{height:12.958594px;}
.he_c01374{height:20.733750px;}
.h4_c01374{height:28.508906px;}
.hb_c01374{height:44.059219px;}
.h7_c01374{height:46.650937px;}
.h5_c01374{height:49.242656px;}
.h9_c01374{height:51.834375px;}
.h8_c01374{height:54.426094px;}
.h6_c01374{height:57.017812px;}
.h3_c01374{height:59.609531px;}
.hd_c01374{height:62.201250px;}
.hc_c01374{height:64.792969px;}
.ha_c01374{height:67.384687px;}
.h2_c01374{height:69.976406px;}
.h11_c01374{height:72.568125px;}
.h10_c01374{height:101.077031px;}
.h1_c01374{height:1145.250000px;}
.h0_c01374{height:1145.520000px;}
.w0_c01374{width:775.440000px;}
.w1_c01374{width:775.500000px;}
.x0_c01374{left:0.000000px;}
.x2_c01374{left:58.320000px;}
.x2d_c01374{left:88.560000px;}
.x3_c01374{left:90.720000px;}
.x2e_c01374{left:97.200000px;}
.xe_c01374{left:110.880000px;}
.x38_c01374{left:117.360000px;}
.x2a_c01374{left:118.800000px;}
.x12_c01374{left:120.240000px;}
.x4_c01374{left:121.680000px;}
.x6_c01374{left:144.720000px;}
.xf_c01374{left:164.880000px;}
.x8_c01374{left:196.560000px;}
.x10_c01374{left:198.720000px;}
.x35_c01374{left:205.920000px;}
.x28_c01374{left:207.360000px;}
.x11_c01374{left:211.680000px;}
.x23_c01374{left:218.160000px;}
.x7_c01374{left:219.600000px;}
.x39_c01374{left:249.120000px;}
.x9_c01374{left:252.000000px;}
.x36_c01374{left:260.640000px;}
.x1b_c01374{left:263.520000px;}
.x24_c01374{left:272.160000px;}
.x1e_c01374{left:274.320000px;}
.x5_c01374{left:283.680000px;}
.x3a_c01374{left:293.040000px;}
.x25_c01374{left:314.640000px;}
.x2f_c01374{left:346.320000px;}
.x1f_c01374{left:358.560000px;}
.x37_c01374{left:390.240000px;}
.x20_c01374{left:412.560000px;}
.x21_c01374{left:508.320000px;}
.x30_c01374{left:533.520000px;}
.x22_c01374{left:557.280000px;}
.x2b_c01374{left:573.840000px;}
.x3b_c01374{left:581.040000px;}
.x32_c01374{left:582.480000px;}
.x33_c01374{left:604.080000px;}
.x13_c01374{left:607.680000px;}
.x18_c01374{left:617.040000px;}
.x1c_c01374{left:637.200000px;}
.x17_c01374{left:638.640000px;}
.x16_c01374{left:640.080000px;}
.xa_c01374{left:642.240000px;}
.x1_c01374{left:666.720000px;}
.x29_c01374{left:670.320000px;}
.x19_c01374{left:671.760000px;}
.xd_c01374{left:673.200000px;}
.xc_c01374{left:674.640000px;}
.x26_c01374{left:681.120000px;}
.x2c_c01374{left:702.720000px;}
.x1d_c01374{left:704.160000px;}
.x34_c01374{left:710.640000px;}
.x1a_c01374{left:713.520000px;}
.x14_c01374{left:715.680000px;}
.xb_c01374{left:717.120000px;}
.x31_c01374{left:732.240000px;}
.x27_c01374{left:733.680000px;}
.x15_c01374{left:735.120000px;}
@media print{
.v2_c01374{vertical-align:-7.680000pt;}
.v1_c01374{vertical-align:-2.560000pt;}
.v0_c01374{vertical-align:0.000000pt;}
.ls0_c01374{letter-spacing:0.000000pt;}
.ws2_c01374{word-spacing:0.000000pt;}
.ws0_c01374{word-spacing:8.188800pt;}
.ws1_c01374{word-spacing:8.421333pt;}
.fsd_c01374{font-size:12.800000pt;}
.fsc_c01374{font-size:20.480000pt;}
.fs2_c01374{font-size:28.160000pt;}
.fs9_c01374{font-size:43.520000pt;}
.fs5_c01374{font-size:46.080000pt;}
.fs3_c01374{font-size:48.640000pt;}
.fs7_c01374{font-size:51.200000pt;}
.fs6_c01374{font-size:53.760000pt;}
.fs4_c01374{font-size:56.320000pt;}
.fs1_c01374{font-size:58.880000pt;}
.fsb_c01374{font-size:61.440000pt;}
.fsa_c01374{font-size:64.000000pt;}
.fs8_c01374{font-size:66.560000pt;}
.fs0_c01374{font-size:69.120000pt;}
.fsf_c01374{font-size:71.680000pt;}
.fse_c01374{font-size:99.840000pt;}
.y0_c01374{bottom:0.000000pt;}
.y60_c01374{bottom:51.200000pt;}
.y61_c01374{bottom:51.840000pt;}
.y69_c01374{bottom:53.760000pt;}
.y6a_c01374{bottom:55.040000pt;}
.y5f_c01374{bottom:55.680000pt;}
.y5d_c01374{bottom:90.240000pt;}
.y5e_c01374{bottom:92.800000pt;}
.y67_c01374{bottom:93.440000pt;}
.y68_c01374{bottom:94.080000pt;}
.y5c_c01374{bottom:94.720000pt;}
.y59_c01374{bottom:128.640000pt;}
.y5b_c01374{bottom:129.280000pt;}
.y66_c01374{bottom:130.560000pt;}
.y65_c01374{bottom:131.840000pt;}
.y5a_c01374{bottom:132.480000pt;}
.y58_c01374{bottom:133.120000pt;}
.y57_c01374{bottom:167.040000pt;}
.y63_c01374{bottom:170.240000pt;}
.y56_c01374{bottom:170.880000pt;}
.y62_c01374{bottom:171.520000pt;}
.y64_c01374{bottom:172.160000pt;}
.y54_c01374{bottom:206.080000pt;}
.y55_c01374{bottom:208.000000pt;}
.y53_c01374{bottom:209.280000pt;}
.y51_c01374{bottom:244.480000pt;}
.y52_c01374{bottom:246.400000pt;}
.y50_c01374{bottom:247.680000pt;}
.y4f_c01374{bottom:275.200000pt;}
.y4d_c01374{bottom:282.880000pt;}
.y4e_c01374{bottom:283.520000pt;}
.y4a_c01374{bottom:286.080000pt;}
.y4b_c01374{bottom:286.720000pt;}
.y4c_c01374{bottom:289.280000pt;}
.y47_c01374{bottom:321.280000pt;}
.y48_c01374{bottom:323.840000pt;}
.y46_c01374{bottom:324.480000pt;}
.y49_c01374{bottom:325.120000pt;}
.y3f_c01374{bottom:360.320000pt;}
.y44_c01374{bottom:361.600000pt;}
.y45_c01374{bottom:362.240000pt;}
.y3e_c01374{bottom:362.880000pt;}
.y3c_c01374{bottom:398.080000pt;}
.y3d_c01374{bottom:398.720000pt;}
.y41_c01374{bottom:400.000000pt;}
.y40_c01374{bottom:400.640000pt;}
.y43_c01374{bottom:401.280000pt;}
.y3b_c01374{bottom:401.920000pt;}
.y42_c01374{bottom:402.560000pt;}
.y38_c01374{bottom:437.120000pt;}
.y39_c01374{bottom:438.400000pt;}
.y36_c01374{bottom:439.040000pt;}
.y3a_c01374{bottom:439.680000pt;}
.y37_c01374{bottom:440.960000pt;}
.y33_c01374{bottom:475.520000pt;}
.y31_c01374{bottom:476.160000pt;}
.y34_c01374{bottom:476.800000pt;}
.y35_c01374{bottom:477.440000pt;}
.y30_c01374{bottom:478.720000pt;}
.y32_c01374{bottom:479.360000pt;}
.y2f_c01374{bottom:513.280000pt;}
.y2b_c01374{bottom:513.920000pt;}
.y2a_c01374{bottom:514.560000pt;}
.y2d_c01374{bottom:515.200000pt;}
.y29_c01374{bottom:516.480000pt;}
.y2e_c01374{bottom:517.120000pt;}
.y2c_c01374{bottom:517.760000pt;}
.y25_c01374{bottom:552.320000pt;}
.y26_c01374{bottom:552.960000pt;}
.y27_c01374{bottom:553.600000pt;}
.y24_c01374{bottom:555.520000pt;}
.y28_c01374{bottom:556.160000pt;}
.y1f_c01374{bottom:592.000000pt;}
.y20_c01374{bottom:592.640000pt;}
.y23_c01374{bottom:593.280000pt;}
.y1e_c01374{bottom:629.120000pt;}
.y22_c01374{bottom:630.400000pt;}
.y21_c01374{bottom:633.600000pt;}
.y1d_c01374{bottom:668.160000pt;}
.y18_c01374{bottom:668.800000pt;}
.y17_c01374{bottom:672.000000pt;}
.y16_c01374{bottom:706.560000pt;}
.y1c_c01374{bottom:707.200000pt;}
.y1b_c01374{bottom:707.840000pt;}
.y14_c01374{bottom:710.400000pt;}
.y15_c01374{bottom:711.040000pt;}
.y19_c01374{bottom:744.320000pt;}
.y13_c01374{bottom:744.960000pt;}
.y11_c01374{bottom:745.600000pt;}
.y1a_c01374{bottom:746.240000pt;}
.y10_c01374{bottom:746.880000pt;}
.y12_c01374{bottom:748.800000pt;}
.yf_c01374{bottom:787.200000pt;}
.ye_c01374{bottom:830.080000pt;}
.yb_c01374{bottom:830.720000pt;}
.y9_c01374{bottom:831.360000pt;}
.y8_c01374{bottom:833.280000pt;}
.ya_c01374{bottom:833.920000pt;}
.yd_c01374{bottom:868.480000pt;}
.y7_c01374{bottom:869.120000pt;}
.y5_c01374{bottom:871.040000pt;}
.y6_c01374{bottom:872.960000pt;}
.yc_c01374{bottom:907.520000pt;}
.y4_c01374{bottom:908.800000pt;}
.y2_c01374{bottom:910.080000pt;}
.y3_c01374{bottom:911.360000pt;}
.y1_c01374{bottom:960.000000pt;}
.hf_c01374{height:11.518750pt;}
.he_c01374{height:18.430000pt;}
.h4_c01374{height:25.341250pt;}
.hb_c01374{height:39.163750pt;}
.h7_c01374{height:41.467500pt;}
.h5_c01374{height:43.771250pt;}
.h9_c01374{height:46.075000pt;}
.h8_c01374{height:48.378750pt;}
.h6_c01374{height:50.682500pt;}
.h3_c01374{height:52.986250pt;}
.hd_c01374{height:55.290000pt;}
.hc_c01374{height:57.593750pt;}
.ha_c01374{height:59.897500pt;}
.h2_c01374{height:62.201250pt;}
.h11_c01374{height:64.505000pt;}
.h10_c01374{height:89.846250pt;}
.h1_c01374{height:1018.000000pt;}
.h0_c01374{height:1018.240000pt;}
.w0_c01374{width:689.280000pt;}
.w1_c01374{width:689.333333pt;}
.x0_c01374{left:0.000000pt;}
.x2_c01374{left:51.840000pt;}
.x2d_c01374{left:78.720000pt;}
.x3_c01374{left:80.640000pt;}
.x2e_c01374{left:86.400000pt;}
.xe_c01374{left:98.560000pt;}
.x38_c01374{left:104.320000pt;}
.x2a_c01374{left:105.600000pt;}
.x12_c01374{left:106.880000pt;}
.x4_c01374{left:108.160000pt;}
.x6_c01374{left:128.640000pt;}
.xf_c01374{left:146.560000pt;}
.x8_c01374{left:174.720000pt;}
.x10_c01374{left:176.640000pt;}
.x35_c01374{left:183.040000pt;}
.x28_c01374{left:184.320000pt;}
.x11_c01374{left:188.160000pt;}
.x23_c01374{left:193.920000pt;}
.x7_c01374{left:195.200000pt;}
.x39_c01374{left:221.440000pt;}
.x9_c01374{left:224.000000pt;}
.x36_c01374{left:231.680000pt;}
.x1b_c01374{left:234.240000pt;}
.x24_c01374{left:241.920000pt;}
.x1e_c01374{left:243.840000pt;}
.x5_c01374{left:252.160000pt;}
.x3a_c01374{left:260.480000pt;}
.x25_c01374{left:279.680000pt;}
.x2f_c01374{left:307.840000pt;}
.x1f_c01374{left:318.720000pt;}
.x37_c01374{left:346.880000pt;}
.x20_c01374{left:366.720000pt;}
.x21_c01374{left:451.840000pt;}
.x30_c01374{left:474.240000pt;}
.x22_c01374{left:495.360000pt;}
.x2b_c01374{left:510.080000pt;}
.x3b_c01374{left:516.480000pt;}
.x32_c01374{left:517.760000pt;}
.x33_c01374{left:536.960000pt;}
.x13_c01374{left:540.160000pt;}
.x18_c01374{left:548.480000pt;}
.x1c_c01374{left:566.400000pt;}
.x17_c01374{left:567.680000pt;}
.x16_c01374{left:568.960000pt;}
.xa_c01374{left:570.880000pt;}
.x1_c01374{left:592.640000pt;}
.x29_c01374{left:595.840000pt;}
.x19_c01374{left:597.120000pt;}
.xd_c01374{left:598.400000pt;}
.xc_c01374{left:599.680000pt;}
.x26_c01374{left:605.440000pt;}
.x2c_c01374{left:624.640000pt;}
.x1d_c01374{left:625.920000pt;}
.x34_c01374{left:631.680000pt;}
.x1a_c01374{left:634.240000pt;}
.x14_c01374{left:636.160000pt;}
.xb_c01374{left:637.440000pt;}
.x31_c01374{left:650.880000pt;}
.x27_c01374{left:652.160000pt;}
.x15_c01374{left:653.440000pt;}
}





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

.ir_c01375:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01375{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01375;src:url('chunks/assets/font_357e2040ec7be39a77135e45.woff2')format("woff");}.ff1_c01375{font-family:ff1_c01375;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m42_c01375{transform:matrix(0.238325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238325,0.000000,0.000000,0.250000,0,0);}
.m47_c01375{transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);}
.m18_c01375{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m2_c01375{transform:matrix(0.244050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244050,0.000000,0.000000,0.250000,0,0);}
.m0_c01375{transform:matrix(0.246075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246075,0.000000,0.000000,0.250000,0,0);}
.m17_c01375{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01375{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m16_c01375{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_c01375{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m19_c01375{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_c01375{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m5_c01375{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m7_c01375{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);}
.m31_c01375{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);}
.m40_c01375{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m25_c01375{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01375{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);}
.m3c_c01375{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_c01375{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.me_c01375{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m8_c01375{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m36_c01375{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m28_c01375{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01375{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m9_c01375{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01375{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m30_c01375{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m49_c01375{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01375{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01375{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01375{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m33_c01375{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m11_c01375{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m10_c01375{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m44_c01375{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m34_c01375{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);}
.m2d_c01375{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m4_c01375{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m1_c01375{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m41_c01375{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);}
.m29_c01375{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);}
.m27_c01375{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01375{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01375{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);}
.m12_c01375{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);}
.m2a_c01375{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m22_c01375{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);}
.m32_c01375{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m6_c01375{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m38_c01375{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);}
.m2b_c01375{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m14_c01375{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);}
.m3a_c01375{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01375{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01375{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m26_c01375{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01375{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);}
.m15_c01375{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m48_c01375{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m39_c01375{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.mf_c01375{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);}
.m13_c01375{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m35_c01375{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m23_c01375{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m3_c01375{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);}
.m3d_c01375{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m43_c01375{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);}
.m2c_c01375{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);}
.m20_c01375{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m45_c01375{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01375{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);}
.m24_c01375{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m37_c01375{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m46_c01375{transform:matrix(0.775000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.775000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.775000,0.000000,0.000000,0.250000,0,0);}
.m4a_c01375{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01375{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.v0_c01375{vertical-align:0.000000px;}
.v1_c01375{vertical-align:5.760000px;}
.ls0_c01375{letter-spacing:0.000000px;}
.sc__c01375{text-shadow:none;}
.sc0_c01375{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01375{-webkit-text-stroke:0px transparent;}
.sc0_c01375{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01375{word-spacing:0.000000px;}
.ws0_c01375{word-spacing:2.650800px;}
.fc0_c01375{color:transparent;}
.fsc_c01375{font-size:25.920000px;}
.fse_c01375{font-size:34.560000px;}
.fs10_c01375{font-size:37.440000px;}
.fsb_c01375{font-size:40.320000px;}
.fs5_c01375{font-size:48.960000px;}
.fs3_c01375{font-size:51.840000px;}
.fs9_c01375{font-size:54.720000px;}
.fs8_c01375{font-size:57.600000px;}
.fs2_c01375{font-size:60.480000px;}
.fsa_c01375{font-size:63.360000px;}
.fs1_c01375{font-size:66.240000px;}
.fs6_c01375{font-size:69.120000px;}
.fs7_c01375{font-size:72.000000px;}
.fs4_c01375{font-size:74.880000px;}
.fs0_c01375{font-size:77.760000px;}
.fsf_c01375{font-size:80.640000px;}
.fsd_c01375{font-size:83.520000px;}
.y0_c01375{bottom:0.000000px;}
.y63_c01375{bottom:37.440000px;}
.y64_c01375{bottom:39.600000px;}
.y62_c01375{bottom:41.040000px;}
.y65_c01375{bottom:41.760000px;}
.y6c_c01375{bottom:43.200000px;}
.y6d_c01375{bottom:46.080000px;}
.y61_c01375{bottom:80.640000px;}
.y60_c01375{bottom:84.960000px;}
.y68_c01375{bottom:86.400000px;}
.y69_c01375{bottom:87.120000px;}
.y6a_c01375{bottom:88.560000px;}
.y6b_c01375{bottom:89.280000px;}
.y5d_c01375{bottom:123.120000px;}
.y5f_c01375{bottom:125.280000px;}
.y5c_c01375{bottom:127.440000px;}
.y5e_c01375{bottom:128.880000px;}
.y5b_c01375{bottom:129.600000px;}
.y66_c01375{bottom:131.040000px;}
.y67_c01375{bottom:131.760000px;}
.y5a_c01375{bottom:168.480000px;}
.y59_c01375{bottom:172.800000px;}
.y57_c01375{bottom:222.480000px;}
.y55_c01375{bottom:225.360000px;}
.y56_c01375{bottom:226.800000px;}
.y58_c01375{bottom:229.680000px;}
.y52_c01375{bottom:260.640000px;}
.y4e_c01375{bottom:265.680000px;}
.y4f_c01375{bottom:267.120000px;}
.y4d_c01375{bottom:269.280000px;}
.y50_c01375{bottom:270.000000px;}
.y51_c01375{bottom:270.720000px;}
.y53_c01375{bottom:271.440000px;}
.y54_c01375{bottom:272.880000px;}
.y46_c01375{bottom:309.600000px;}
.y47_c01375{bottom:311.040000px;}
.y45_c01375{bottom:312.480000px;}
.y48_c01375{bottom:313.200000px;}
.y4c_c01375{bottom:313.920000px;}
.y4b_c01375{bottom:315.360000px;}
.y43_c01375{bottom:352.080000px;}
.y44_c01375{bottom:353.520000px;}
.y42_c01375{bottom:357.120000px;}
.y4a_c01375{bottom:358.560000px;}
.y49_c01375{bottom:359.280000px;}
.y39_c01375{bottom:397.440000px;}
.y38_c01375{bottom:398.160000px;}
.y3a_c01375{bottom:400.320000px;}
.y35_c01375{bottom:429.840000px;}
.y36_c01375{bottom:430.560000px;}
.y34_c01375{bottom:431.280000px;}
.y33_c01375{bottom:432.720000px;}
.y3d_c01375{bottom:433.440000px;}
.y37_c01375{bottom:434.160000px;}
.y41_c01375{bottom:473.040000px;}
.y3f_c01375{bottom:473.760000px;}
.y3c_c01375{bottom:474.480000px;}
.y3e_c01375{bottom:475.200000px;}
.y40_c01375{bottom:475.920000px;}
.y3b_c01375{bottom:476.640000px;}
.y31_c01375{bottom:516.960000px;}
.y30_c01375{bottom:517.680000px;}
.y2f_c01375{bottom:518.400000px;}
.y2a_c01375{bottom:519.120000px;}
.y32_c01375{bottom:519.840000px;}
.y2e_c01375{bottom:560.160000px;}
.y28_c01375{bottom:560.880000px;}
.y29_c01375{bottom:563.040000px;}
.y27_c01375{bottom:563.760000px;}
.y23_c01375{bottom:603.360000px;}
.y22_c01375{bottom:604.080000px;}
.y24_c01375{bottom:606.240000px;}
.y2c_c01375{bottom:645.840000px;}
.y25_c01375{bottom:646.560000px;}
.y26_c01375{bottom:648.000000px;}
.y2b_c01375{bottom:648.720000px;}
.y2d_c01375{bottom:649.440000px;}
.y20_c01375{bottom:689.040000px;}
.y1f_c01375{bottom:690.480000px;}
.y21_c01375{bottom:692.640000px;}
.y1d_c01375{bottom:733.680000px;}
.y1e_c01375{bottom:735.840000px;}
.y1a_c01375{bottom:764.640000px;}
.y1c_c01375{bottom:765.360000px;}
.y18_c01375{bottom:766.080000px;}
.y1b_c01375{bottom:766.800000px;}
.y17_c01375{bottom:767.520000px;}
.y19_c01375{bottom:768.240000px;}
.y14_c01375{bottom:807.840000px;}
.y13_c01375{bottom:808.560000px;}
.y16_c01375{bottom:809.280000px;}
.y15_c01375{bottom:810.720000px;}
.ye_c01375{bottom:894.240000px;}
.y11_c01375{bottom:894.960000px;}
.y12_c01375{bottom:896.400000px;}
.yd_c01375{bottom:897.120000px;}
.yf_c01375{bottom:937.440000px;}
.yb_c01375{bottom:938.160000px;}
.y10_c01375{bottom:939.600000px;}
.yc_c01375{bottom:940.320000px;}
.ya_c01375{bottom:941.040000px;}
.y6_c01375{bottom:980.640000px;}
.y9_c01375{bottom:981.360000px;}
.y5_c01375{bottom:982.080000px;}
.y8_c01375{bottom:984.240000px;}
.y4_c01375{bottom:1023.120000px;}
.y3_c01375{bottom:1023.840000px;}
.y2_c01375{bottom:1026.000000px;}
.y7_c01375{bottom:1026.720000px;}
.y1_c01375{bottom:1082.880000px;}
.he_c01375{height:23.325469px;}
.h10_c01375{height:31.100625px;}
.h12_c01375{height:33.692344px;}
.hd_c01375{height:36.284062px;}
.h7_c01375{height:44.059219px;}
.h5_c01375{height:46.650937px;}
.hb_c01375{height:49.242656px;}
.ha_c01375{height:51.834375px;}
.h4_c01375{height:54.426094px;}
.hc_c01375{height:57.017812px;}
.h3_c01375{height:59.609531px;}
.h8_c01375{height:62.201250px;}
.h9_c01375{height:64.792969px;}
.h6_c01375{height:67.384687px;}
.h2_c01375{height:69.976406px;}
.h11_c01375{height:72.568125px;}
.hf_c01375{height:75.159844px;}
.h1_c01375{height:1146.750000px;}
.h0_c01375{height:1146.960000px;}
.w0_c01375{width:777.600000px;}
.w1_c01375{width:777.750000px;}
.x0_c01375{left:0.000000px;}
.x2_c01375{left:58.320000px;}
.x1e_c01375{left:59.760000px;}
.x35_c01375{left:61.200000px;}
.x31_c01375{left:90.720000px;}
.x32_c01375{left:110.880000px;}
.x3_c01375{left:120.960000px;}
.x17_c01375{left:122.400000px;}
.x33_c01375{left:164.160000px;}
.x1d_c01375{left:187.920000px;}
.x29_c01375{left:197.280000px;}
.xf_c01375{left:208.080000px;}
.x25_c01375{left:209.520000px;}
.x18_c01375{left:220.320000px;}
.x2a_c01375{left:251.280000px;}
.x27_c01375{left:252.720000px;}
.x26_c01375{left:262.080000px;}
.x19_c01375{left:263.520000px;}
.xb_c01375{left:272.160000px;}
.x1f_c01375{left:273.600000px;}
.x4_c01375{left:284.400000px;}
.x2d_c01375{left:304.560000px;}
.x15_c01375{left:306.720000px;}
.xc_c01375{left:317.520000px;}
.x24_c01375{left:327.600000px;}
.x5_c01375{left:338.400000px;}
.x28_c01375{left:349.200000px;}
.x16_c01375{left:360.000000px;}
.x6_c01375{left:381.600000px;}
.x2b_c01375{left:390.960000px;}
.xd_c01375{left:403.200000px;}
.x34_c01375{left:414.000000px;}
.x2c_c01375{left:435.600000px;}
.x1a_c01375{left:447.120000px;}
.xe_c01375{left:457.920000px;}
.x2e_c01375{left:488.880000px;}
.x1b_c01375{left:500.400000px;}
.x2f_c01375{left:542.160000px;}
.x1c_c01375{left:554.400000px;}
.x12_c01375{left:586.080000px;}
.x7_c01375{left:587.520000px;}
.x8_c01375{left:607.680000px;}
.x13_c01375{left:609.120000px;}
.x20_c01375{left:639.360000px;}
.x10_c01375{left:641.520000px;}
.x1_c01375{left:666.720000px;}
.x22_c01375{left:672.480000px;}
.xa_c01375{left:673.920000px;}
.x21_c01375{left:704.160000px;}
.x23_c01375{left:714.240000px;}
.x14_c01375{left:715.680000px;}
.x9_c01375{left:717.120000px;}
.x30_c01375{left:734.400000px;}
.x11_c01375{left:736.560000px;}
@media print{
.v0_c01375{vertical-align:0.000000pt;}
.v1_c01375{vertical-align:5.120000pt;}
.ls0_c01375{letter-spacing:0.000000pt;}
.ws1_c01375{word-spacing:0.000000pt;}
.ws0_c01375{word-spacing:2.356267pt;}
.fsc_c01375{font-size:23.040000pt;}
.fse_c01375{font-size:30.720000pt;}
.fs10_c01375{font-size:33.280000pt;}
.fsb_c01375{font-size:35.840000pt;}
.fs5_c01375{font-size:43.520000pt;}
.fs3_c01375{font-size:46.080000pt;}
.fs9_c01375{font-size:48.640000pt;}
.fs8_c01375{font-size:51.200000pt;}
.fs2_c01375{font-size:53.760000pt;}
.fsa_c01375{font-size:56.320000pt;}
.fs1_c01375{font-size:58.880000pt;}
.fs6_c01375{font-size:61.440000pt;}
.fs7_c01375{font-size:64.000000pt;}
.fs4_c01375{font-size:66.560000pt;}
.fs0_c01375{font-size:69.120000pt;}
.fsf_c01375{font-size:71.680000pt;}
.fsd_c01375{font-size:74.240000pt;}
.y0_c01375{bottom:0.000000pt;}
.y63_c01375{bottom:33.280000pt;}
.y64_c01375{bottom:35.200000pt;}
.y62_c01375{bottom:36.480000pt;}
.y65_c01375{bottom:37.120000pt;}
.y6c_c01375{bottom:38.400000pt;}
.y6d_c01375{bottom:40.960000pt;}
.y61_c01375{bottom:71.680000pt;}
.y60_c01375{bottom:75.520000pt;}
.y68_c01375{bottom:76.800000pt;}
.y69_c01375{bottom:77.440000pt;}
.y6a_c01375{bottom:78.720000pt;}
.y6b_c01375{bottom:79.360000pt;}
.y5d_c01375{bottom:109.440000pt;}
.y5f_c01375{bottom:111.360000pt;}
.y5c_c01375{bottom:113.280000pt;}
.y5e_c01375{bottom:114.560000pt;}
.y5b_c01375{bottom:115.200000pt;}
.y66_c01375{bottom:116.480000pt;}
.y67_c01375{bottom:117.120000pt;}
.y5a_c01375{bottom:149.760000pt;}
.y59_c01375{bottom:153.600000pt;}
.y57_c01375{bottom:197.760000pt;}
.y55_c01375{bottom:200.320000pt;}
.y56_c01375{bottom:201.600000pt;}
.y58_c01375{bottom:204.160000pt;}
.y52_c01375{bottom:231.680000pt;}
.y4e_c01375{bottom:236.160000pt;}
.y4f_c01375{bottom:237.440000pt;}
.y4d_c01375{bottom:239.360000pt;}
.y50_c01375{bottom:240.000000pt;}
.y51_c01375{bottom:240.640000pt;}
.y53_c01375{bottom:241.280000pt;}
.y54_c01375{bottom:242.560000pt;}
.y46_c01375{bottom:275.200000pt;}
.y47_c01375{bottom:276.480000pt;}
.y45_c01375{bottom:277.760000pt;}
.y48_c01375{bottom:278.400000pt;}
.y4c_c01375{bottom:279.040000pt;}
.y4b_c01375{bottom:280.320000pt;}
.y43_c01375{bottom:312.960000pt;}
.y44_c01375{bottom:314.240000pt;}
.y42_c01375{bottom:317.440000pt;}
.y4a_c01375{bottom:318.720000pt;}
.y49_c01375{bottom:319.360000pt;}
.y39_c01375{bottom:353.280000pt;}
.y38_c01375{bottom:353.920000pt;}
.y3a_c01375{bottom:355.840000pt;}
.y35_c01375{bottom:382.080000pt;}
.y36_c01375{bottom:382.720000pt;}
.y34_c01375{bottom:383.360000pt;}
.y33_c01375{bottom:384.640000pt;}
.y3d_c01375{bottom:385.280000pt;}
.y37_c01375{bottom:385.920000pt;}
.y41_c01375{bottom:420.480000pt;}
.y3f_c01375{bottom:421.120000pt;}
.y3c_c01375{bottom:421.760000pt;}
.y3e_c01375{bottom:422.400000pt;}
.y40_c01375{bottom:423.040000pt;}
.y3b_c01375{bottom:423.680000pt;}
.y31_c01375{bottom:459.520000pt;}
.y30_c01375{bottom:460.160000pt;}
.y2f_c01375{bottom:460.800000pt;}
.y2a_c01375{bottom:461.440000pt;}
.y32_c01375{bottom:462.080000pt;}
.y2e_c01375{bottom:497.920000pt;}
.y28_c01375{bottom:498.560000pt;}
.y29_c01375{bottom:500.480000pt;}
.y27_c01375{bottom:501.120000pt;}
.y23_c01375{bottom:536.320000pt;}
.y22_c01375{bottom:536.960000pt;}
.y24_c01375{bottom:538.880000pt;}
.y2c_c01375{bottom:574.080000pt;}
.y25_c01375{bottom:574.720000pt;}
.y26_c01375{bottom:576.000000pt;}
.y2b_c01375{bottom:576.640000pt;}
.y2d_c01375{bottom:577.280000pt;}
.y20_c01375{bottom:612.480000pt;}
.y1f_c01375{bottom:613.760000pt;}
.y21_c01375{bottom:615.680000pt;}
.y1d_c01375{bottom:652.160000pt;}
.y1e_c01375{bottom:654.080000pt;}
.y1a_c01375{bottom:679.680000pt;}
.y1c_c01375{bottom:680.320000pt;}
.y18_c01375{bottom:680.960000pt;}
.y1b_c01375{bottom:681.600000pt;}
.y17_c01375{bottom:682.240000pt;}
.y19_c01375{bottom:682.880000pt;}
.y14_c01375{bottom:718.080000pt;}
.y13_c01375{bottom:718.720000pt;}
.y16_c01375{bottom:719.360000pt;}
.y15_c01375{bottom:720.640000pt;}
.ye_c01375{bottom:794.880000pt;}
.y11_c01375{bottom:795.520000pt;}
.y12_c01375{bottom:796.800000pt;}
.yd_c01375{bottom:797.440000pt;}
.yf_c01375{bottom:833.280000pt;}
.yb_c01375{bottom:833.920000pt;}
.y10_c01375{bottom:835.200000pt;}
.yc_c01375{bottom:835.840000pt;}
.ya_c01375{bottom:836.480000pt;}
.y6_c01375{bottom:871.680000pt;}
.y9_c01375{bottom:872.320000pt;}
.y5_c01375{bottom:872.960000pt;}
.y8_c01375{bottom:874.880000pt;}
.y4_c01375{bottom:909.440000pt;}
.y3_c01375{bottom:910.080000pt;}
.y2_c01375{bottom:912.000000pt;}
.y7_c01375{bottom:912.640000pt;}
.y1_c01375{bottom:962.560000pt;}
.he_c01375{height:20.733750pt;}
.h10_c01375{height:27.645000pt;}
.h12_c01375{height:29.948750pt;}
.hd_c01375{height:32.252500pt;}
.h7_c01375{height:39.163750pt;}
.h5_c01375{height:41.467500pt;}
.hb_c01375{height:43.771250pt;}
.ha_c01375{height:46.075000pt;}
.h4_c01375{height:48.378750pt;}
.hc_c01375{height:50.682500pt;}
.h3_c01375{height:52.986250pt;}
.h8_c01375{height:55.290000pt;}
.h9_c01375{height:57.593750pt;}
.h6_c01375{height:59.897500pt;}
.h2_c01375{height:62.201250pt;}
.h11_c01375{height:64.505000pt;}
.hf_c01375{height:66.808750pt;}
.h1_c01375{height:1019.333333pt;}
.h0_c01375{height:1019.520000pt;}
.w0_c01375{width:691.200000pt;}
.w1_c01375{width:691.333333pt;}
.x0_c01375{left:0.000000pt;}
.x2_c01375{left:51.840000pt;}
.x1e_c01375{left:53.120000pt;}
.x35_c01375{left:54.400000pt;}
.x31_c01375{left:80.640000pt;}
.x32_c01375{left:98.560000pt;}
.x3_c01375{left:107.520000pt;}
.x17_c01375{left:108.800000pt;}
.x33_c01375{left:145.920000pt;}
.x1d_c01375{left:167.040000pt;}
.x29_c01375{left:175.360000pt;}
.xf_c01375{left:184.960000pt;}
.x25_c01375{left:186.240000pt;}
.x18_c01375{left:195.840000pt;}
.x2a_c01375{left:223.360000pt;}
.x27_c01375{left:224.640000pt;}
.x26_c01375{left:232.960000pt;}
.x19_c01375{left:234.240000pt;}
.xb_c01375{left:241.920000pt;}
.x1f_c01375{left:243.200000pt;}
.x4_c01375{left:252.800000pt;}
.x2d_c01375{left:270.720000pt;}
.x15_c01375{left:272.640000pt;}
.xc_c01375{left:282.240000pt;}
.x24_c01375{left:291.200000pt;}
.x5_c01375{left:300.800000pt;}
.x28_c01375{left:310.400000pt;}
.x16_c01375{left:320.000000pt;}
.x6_c01375{left:339.200000pt;}
.x2b_c01375{left:347.520000pt;}
.xd_c01375{left:358.400000pt;}
.x34_c01375{left:368.000000pt;}
.x2c_c01375{left:387.200000pt;}
.x1a_c01375{left:397.440000pt;}
.xe_c01375{left:407.040000pt;}
.x2e_c01375{left:434.560000pt;}
.x1b_c01375{left:444.800000pt;}
.x2f_c01375{left:481.920000pt;}
.x1c_c01375{left:492.800000pt;}
.x12_c01375{left:520.960000pt;}
.x7_c01375{left:522.240000pt;}
.x8_c01375{left:540.160000pt;}
.x13_c01375{left:541.440000pt;}
.x20_c01375{left:568.320000pt;}
.x10_c01375{left:570.240000pt;}
.x1_c01375{left:592.640000pt;}
.x22_c01375{left:597.760000pt;}
.xa_c01375{left:599.040000pt;}
.x21_c01375{left:625.920000pt;}
.x23_c01375{left:634.880000pt;}
.x14_c01375{left:636.160000pt;}
.x9_c01375{left:637.440000pt;}
.x30_c01375{left:652.800000pt;}
.x11_c01375{left:654.720000pt;}
}





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

.ir_c01376:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01376{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01376;src:url('chunks/assets/font_484cb33079f3e4bbb774837d.woff2')format("woff");}.ff1_c01376{font-family:ff1_c01376;line-height:1.109863;font-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_c01376{transform:matrix(0.193350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193350,0.000000,0.000000,0.250000,0,0);}
.me_c01376{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);}
.m2a_c01376{transform:matrix(0.230475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230475,0.000000,0.000000,0.250000,0,0);}
.m49_c01376{transform:matrix(0.232275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232275,0.000000,0.000000,0.250000,0,0);}
.m48_c01376{transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);}
.m42_c01376{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);}
.m39_c01376{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m3_c01376{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_c01376{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m5_c01376{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_c01376{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m22_c01376{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m8_c01376{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01376{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mc_c01376{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m20_c01376{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01376{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1_c01376{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m41_c01376{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m2_c01376{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m12_c01376{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m28_c01376{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01376{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m23_c01376{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.md_c01376{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m7_c01376{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m14_c01376{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m35_c01376{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01376{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m4_c01376{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);}
.m29_c01376{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);}
.m21_c01376{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);}
.m3a_c01376{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m40_c01376{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);}
.m30_c01376{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m32_c01376{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);}
.m1f_c01376{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);}
.m2c_c01376{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m19_c01376{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);}
.m2b_c01376{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);}
.m0_c01376{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m45_c01376{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m16_c01376{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01376{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);}
.mb_c01376{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01376{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m33_c01376{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m11_c01376{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);}
.m25_c01376{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);}
.m37_c01376{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);}
.mf_c01376{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m24_c01376{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);}
.ma_c01376{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m46_c01376{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);}
.m3e_c01376{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m31_c01376{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m47_c01376{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);}
.m15_c01376{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01376{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);}
.m34_c01376{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m27_c01376{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);}
.m44_c01376{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01376{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m18_c01376{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);}
.m26_c01376{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m9_c01376{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);}
.m3f_c01376{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01376{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m36_c01376{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m43_c01376{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01376{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m6_c01376{transform:matrix(0.712500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.712500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.712500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01376{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01376{transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);}
.v1_c01376{vertical-align:-5.760000px;}
.v0_c01376{vertical-align:0.000000px;}
.ls0_c01376{letter-spacing:0.000000px;}
.sc__c01376{text-shadow:none;}
.sc0_c01376{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01376{-webkit-text-stroke:0px transparent;}
.sc0_c01376{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01376{word-spacing:0.000000px;}
.ws0_c01376{word-spacing:1.011360px;}
.fc0_c01376{color:transparent;}
.fs9_c01376{font-size:31.680000px;}
.fs10_c01376{font-size:34.560000px;}
.fsb_c01376{font-size:37.440000px;}
.fsf_c01376{font-size:40.320000px;}
.fsd_c01376{font-size:46.080000px;}
.fs6_c01376{font-size:48.960000px;}
.fs4_c01376{font-size:51.840000px;}
.fs5_c01376{font-size:54.720000px;}
.fs1_c01376{font-size:57.600000px;}
.fs7_c01376{font-size:60.480000px;}
.fs3_c01376{font-size:63.360000px;}
.fs11_c01376{font-size:66.240000px;}
.fsa_c01376{font-size:69.120000px;}
.fs0_c01376{font-size:72.000000px;}
.fs2_c01376{font-size:74.880000px;}
.fs8_c01376{font-size:77.760000px;}
.fsc_c01376{font-size:92.160000px;}
.fse_c01376{font-size:97.920000px;}
.y0_c01376{bottom:0.000000px;}
.y71_c01376{bottom:50.400000px;}
.y74_c01376{bottom:52.560000px;}
.y73_c01376{bottom:54.000000px;}
.y72_c01376{bottom:54.720000px;}
.y70_c01376{bottom:56.160000px;}
.y79_c01376{bottom:56.880000px;}
.y7a_c01376{bottom:57.600000px;}
.y6f_c01376{bottom:94.320000px;}
.y6e_c01376{bottom:98.640000px;}
.y77_c01376{bottom:100.080000px;}
.y78_c01376{bottom:101.520000px;}
.y6d_c01376{bottom:136.800000px;}
.y6c_c01376{bottom:141.120000px;}
.y75_c01376{bottom:142.560000px;}
.y76_c01376{bottom:144.720000px;}
.y68_c01376{bottom:180.720000px;}
.y67_c01376{bottom:185.040000px;}
.y69_c01376{bottom:185.760000px;}
.y6b_c01376{bottom:186.480000px;}
.y6a_c01376{bottom:187.200000px;}
.y66_c01376{bottom:226.080000px;}
.y65_c01376{bottom:228.240000px;}
.y60_c01376{bottom:257.760000px;}
.y62_c01376{bottom:259.200000px;}
.y64_c01376{bottom:259.920000px;}
.y61_c01376{bottom:260.640000px;}
.y63_c01376{bottom:261.360000px;}
.y5c_c01376{bottom:290.880000px;}
.y59_c01376{bottom:291.600000px;}
.y5b_c01376{bottom:292.320000px;}
.y5a_c01376{bottom:293.040000px;}
.y5f_c01376{bottom:293.760000px;}
.y5d_c01376{bottom:294.480000px;}
.y5e_c01376{bottom:295.200000px;}
.y55_c01376{bottom:332.640000px;}
.y54_c01376{bottom:334.080000px;}
.y53_c01376{bottom:335.520000px;}
.y56_c01376{bottom:336.240000px;}
.y57_c01376{bottom:337.680000px;}
.y58_c01376{bottom:338.400000px;}
.y50_c01376{bottom:376.560000px;}
.y4f_c01376{bottom:377.280000px;}
.y4e_c01376{bottom:378.720000px;}
.y51_c01376{bottom:379.440000px;}
.y52_c01376{bottom:381.600000px;}
.y4b_c01376{bottom:419.760000px;}
.y49_c01376{bottom:421.200000px;}
.y4a_c01376{bottom:422.640000px;}
.y4c_c01376{bottom:423.360000px;}
.y4d_c01376{bottom:424.080000px;}
.y48_c01376{bottom:455.760000px;}
.y44_c01376{bottom:462.960000px;}
.y45_c01376{bottom:463.680000px;}
.y43_c01376{bottom:464.400000px;}
.y42_c01376{bottom:465.120000px;}
.y47_c01376{bottom:465.840000px;}
.y46_c01376{bottom:466.560000px;}
.y3f_c01376{bottom:507.600000px;}
.y3e_c01376{bottom:508.320000px;}
.y40_c01376{bottom:509.040000px;}
.y41_c01376{bottom:511.200000px;}
.y3b_c01376{bottom:550.800000px;}
.y3a_c01376{bottom:551.520000px;}
.y3c_c01376{bottom:553.680000px;}
.y3d_c01376{bottom:554.400000px;}
.y37_c01376{bottom:594.720000px;}
.y36_c01376{bottom:595.440000px;}
.y38_c01376{bottom:596.880000px;}
.y39_c01376{bottom:597.600000px;}
.y34_c01376{bottom:635.760000px;}
.y35_c01376{bottom:637.200000px;}
.y32_c01376{bottom:637.920000px;}
.y31_c01376{bottom:639.360000px;}
.y33_c01376{bottom:640.080000px;}
.y30_c01376{bottom:671.760000px;}
.y2e_c01376{bottom:679.680000px;}
.y2f_c01376{bottom:681.120000px;}
.y2d_c01376{bottom:681.840000px;}
.y2a_c01376{bottom:722.160000px;}
.y2b_c01376{bottom:722.880000px;}
.y2c_c01376{bottom:724.320000px;}
.y28_c01376{bottom:725.040000px;}
.y27_c01376{bottom:725.760000px;}
.y29_c01376{bottom:726.480000px;}
.y26_c01376{bottom:765.360000px;}
.y24_c01376{bottom:766.080000px;}
.y25_c01376{bottom:766.800000px;}
.y23_c01376{bottom:767.520000px;}
.y20_c01376{bottom:808.560000px;}
.y21_c01376{bottom:810.000000px;}
.y22_c01376{bottom:810.720000px;}
.y1d_c01376{bottom:811.440000px;}
.y1e_c01376{bottom:812.160000px;}
.y1f_c01376{bottom:812.880000px;}
.y1a_c01376{bottom:851.760000px;}
.y1b_c01376{bottom:852.480000px;}
.y18_c01376{bottom:853.920000px;}
.y1c_c01376{bottom:854.640000px;}
.y19_c01376{bottom:856.080000px;}
.y15_c01376{bottom:893.520000px;}
.y13_c01376{bottom:894.960000px;}
.y14_c01376{bottom:895.680000px;}
.y17_c01376{bottom:896.400000px;}
.y16_c01376{bottom:897.120000px;}
.y12_c01376{bottom:898.560000px;}
.yf_c01376{bottom:938.160000px;}
.y10_c01376{bottom:938.880000px;}
.y11_c01376{bottom:939.600000px;}
.ye_c01376{bottom:941.760000px;}
.yd_c01376{bottom:979.920000px;}
.yb_c01376{bottom:980.640000px;}
.y9_c01376{bottom:981.360000px;}
.yc_c01376{bottom:983.520000px;}
.y8_c01376{bottom:984.240000px;}
.ya_c01376{bottom:984.960000px;}
.y4_c01376{bottom:1023.120000px;}
.y6_c01376{bottom:1023.840000px;}
.y3_c01376{bottom:1024.560000px;}
.y7_c01376{bottom:1025.280000px;}
.y5_c01376{bottom:1026.000000px;}
.y2_c01376{bottom:1026.720000px;}
.y1_c01376{bottom:1072.800000px;}
.hb_c01376{height:28.508906px;}
.h12_c01376{height:31.100625px;}
.hd_c01376{height:33.692344px;}
.h11_c01376{height:36.284062px;}
.hf_c01376{height:41.467500px;}
.h8_c01376{height:44.059219px;}
.h6_c01376{height:46.650937px;}
.h7_c01376{height:49.242656px;}
.h3_c01376{height:51.834375px;}
.h9_c01376{height:54.426094px;}
.h5_c01376{height:57.017812px;}
.h13_c01376{height:59.609531px;}
.hc_c01376{height:62.201250px;}
.h2_c01376{height:64.792969px;}
.h4_c01376{height:67.384687px;}
.ha_c01376{height:69.976406px;}
.he_c01376{height:82.935000px;}
.h10_c01376{height:88.118437px;}
.h1_c01376{height:1149.750000px;}
.h0_c01376{height:1149.840000px;}
.w1_c01376{width:783.000000px;}
.w0_c01376{width:783.360000px;}
.x0_c01376{left:0.000000px;}
.x11_c01376{left:48.240000px;}
.x2_c01376{left:54.720000px;}
.x1a_c01376{left:56.160000px;}
.x2c_c01376{left:57.600000px;}
.x14_c01376{left:87.120000px;}
.x3_c01376{left:118.080000px;}
.x2b_c01376{left:172.800000px;}
.x15_c01376{left:194.400000px;}
.x8_c01376{left:205.200000px;}
.x2a_c01376{left:215.280000px;}
.x12_c01376{left:248.400000px;}
.x9_c01376{left:259.920000px;}
.x20_c01376{left:270.000000px;}
.xc_c01376{left:280.800000px;}
.x1c_c01376{left:291.600000px;}
.xa_c01376{left:313.200000px;}
.x21_c01376{left:324.000000px;}
.x2d_c01376{left:334.800000px;}
.x1b_c01376{left:356.400000px;}
.xd_c01376{left:367.200000px;}
.x2e_c01376{left:388.800000px;}
.x1d_c01376{left:409.680000px;}
.xb_c01376{left:421.200000px;}
.x16_c01376{left:431.280000px;}
.x29_c01376{left:441.360000px;}
.x27_c01376{left:451.440000px;}
.x25_c01376{left:462.240000px;}
.x23_c01376{left:474.480000px;}
.xe_c01376{left:494.640000px;}
.x28_c01376{left:505.440000px;}
.x1e_c01376{left:516.240000px;}
.xf_c01376{left:548.640000px;}
.x24_c01376{left:559.440000px;}
.x17_c01376{left:602.640000px;}
.x2f_c01376{left:612.720000px;}
.x22_c01376{left:634.320000px;}
.x10_c01376{left:635.760000px;}
.x4_c01376{left:637.200000px;}
.x13_c01376{left:668.160000px;}
.x5_c01376{left:669.600000px;}
.x1_c01376{left:671.040000px;}
.x30_c01376{left:699.840000px;}
.x1f_c01376{left:709.200000px;}
.x18_c01376{left:710.640000px;}
.x6_c01376{left:712.080000px;}
.x26_c01376{left:729.360000px;}
.x19_c01376{left:730.800000px;}
.x7_c01376{left:732.240000px;}
@media print{
.v1_c01376{vertical-align:-5.120000pt;}
.v0_c01376{vertical-align:0.000000pt;}
.ls0_c01376{letter-spacing:0.000000pt;}
.ws1_c01376{word-spacing:0.000000pt;}
.ws0_c01376{word-spacing:0.898987pt;}
.fs9_c01376{font-size:28.160000pt;}
.fs10_c01376{font-size:30.720000pt;}
.fsb_c01376{font-size:33.280000pt;}
.fsf_c01376{font-size:35.840000pt;}
.fsd_c01376{font-size:40.960000pt;}
.fs6_c01376{font-size:43.520000pt;}
.fs4_c01376{font-size:46.080000pt;}
.fs5_c01376{font-size:48.640000pt;}
.fs1_c01376{font-size:51.200000pt;}
.fs7_c01376{font-size:53.760000pt;}
.fs3_c01376{font-size:56.320000pt;}
.fs11_c01376{font-size:58.880000pt;}
.fsa_c01376{font-size:61.440000pt;}
.fs0_c01376{font-size:64.000000pt;}
.fs2_c01376{font-size:66.560000pt;}
.fs8_c01376{font-size:69.120000pt;}
.fsc_c01376{font-size:81.920000pt;}
.fse_c01376{font-size:87.040000pt;}
.y0_c01376{bottom:0.000000pt;}
.y71_c01376{bottom:44.800000pt;}
.y74_c01376{bottom:46.720000pt;}
.y73_c01376{bottom:48.000000pt;}
.y72_c01376{bottom:48.640000pt;}
.y70_c01376{bottom:49.920000pt;}
.y79_c01376{bottom:50.560000pt;}
.y7a_c01376{bottom:51.200000pt;}
.y6f_c01376{bottom:83.840000pt;}
.y6e_c01376{bottom:87.680000pt;}
.y77_c01376{bottom:88.960000pt;}
.y78_c01376{bottom:90.240000pt;}
.y6d_c01376{bottom:121.600000pt;}
.y6c_c01376{bottom:125.440000pt;}
.y75_c01376{bottom:126.720000pt;}
.y76_c01376{bottom:128.640000pt;}
.y68_c01376{bottom:160.640000pt;}
.y67_c01376{bottom:164.480000pt;}
.y69_c01376{bottom:165.120000pt;}
.y6b_c01376{bottom:165.760000pt;}
.y6a_c01376{bottom:166.400000pt;}
.y66_c01376{bottom:200.960000pt;}
.y65_c01376{bottom:202.880000pt;}
.y60_c01376{bottom:229.120000pt;}
.y62_c01376{bottom:230.400000pt;}
.y64_c01376{bottom:231.040000pt;}
.y61_c01376{bottom:231.680000pt;}
.y63_c01376{bottom:232.320000pt;}
.y5c_c01376{bottom:258.560000pt;}
.y59_c01376{bottom:259.200000pt;}
.y5b_c01376{bottom:259.840000pt;}
.y5a_c01376{bottom:260.480000pt;}
.y5f_c01376{bottom:261.120000pt;}
.y5d_c01376{bottom:261.760000pt;}
.y5e_c01376{bottom:262.400000pt;}
.y55_c01376{bottom:295.680000pt;}
.y54_c01376{bottom:296.960000pt;}
.y53_c01376{bottom:298.240000pt;}
.y56_c01376{bottom:298.880000pt;}
.y57_c01376{bottom:300.160000pt;}
.y58_c01376{bottom:300.800000pt;}
.y50_c01376{bottom:334.720000pt;}
.y4f_c01376{bottom:335.360000pt;}
.y4e_c01376{bottom:336.640000pt;}
.y51_c01376{bottom:337.280000pt;}
.y52_c01376{bottom:339.200000pt;}
.y4b_c01376{bottom:373.120000pt;}
.y49_c01376{bottom:374.400000pt;}
.y4a_c01376{bottom:375.680000pt;}
.y4c_c01376{bottom:376.320000pt;}
.y4d_c01376{bottom:376.960000pt;}
.y48_c01376{bottom:405.120000pt;}
.y44_c01376{bottom:411.520000pt;}
.y45_c01376{bottom:412.160000pt;}
.y43_c01376{bottom:412.800000pt;}
.y42_c01376{bottom:413.440000pt;}
.y47_c01376{bottom:414.080000pt;}
.y46_c01376{bottom:414.720000pt;}
.y3f_c01376{bottom:451.200000pt;}
.y3e_c01376{bottom:451.840000pt;}
.y40_c01376{bottom:452.480000pt;}
.y41_c01376{bottom:454.400000pt;}
.y3b_c01376{bottom:489.600000pt;}
.y3a_c01376{bottom:490.240000pt;}
.y3c_c01376{bottom:492.160000pt;}
.y3d_c01376{bottom:492.800000pt;}
.y37_c01376{bottom:528.640000pt;}
.y36_c01376{bottom:529.280000pt;}
.y38_c01376{bottom:530.560000pt;}
.y39_c01376{bottom:531.200000pt;}
.y34_c01376{bottom:565.120000pt;}
.y35_c01376{bottom:566.400000pt;}
.y32_c01376{bottom:567.040000pt;}
.y31_c01376{bottom:568.320000pt;}
.y33_c01376{bottom:568.960000pt;}
.y30_c01376{bottom:597.120000pt;}
.y2e_c01376{bottom:604.160000pt;}
.y2f_c01376{bottom:605.440000pt;}
.y2d_c01376{bottom:606.080000pt;}
.y2a_c01376{bottom:641.920000pt;}
.y2b_c01376{bottom:642.560000pt;}
.y2c_c01376{bottom:643.840000pt;}
.y28_c01376{bottom:644.480000pt;}
.y27_c01376{bottom:645.120000pt;}
.y29_c01376{bottom:645.760000pt;}
.y26_c01376{bottom:680.320000pt;}
.y24_c01376{bottom:680.960000pt;}
.y25_c01376{bottom:681.600000pt;}
.y23_c01376{bottom:682.240000pt;}
.y20_c01376{bottom:718.720000pt;}
.y21_c01376{bottom:720.000000pt;}
.y22_c01376{bottom:720.640000pt;}
.y1d_c01376{bottom:721.280000pt;}
.y1e_c01376{bottom:721.920000pt;}
.y1f_c01376{bottom:722.560000pt;}
.y1a_c01376{bottom:757.120000pt;}
.y1b_c01376{bottom:757.760000pt;}
.y18_c01376{bottom:759.040000pt;}
.y1c_c01376{bottom:759.680000pt;}
.y19_c01376{bottom:760.960000pt;}
.y15_c01376{bottom:794.240000pt;}
.y13_c01376{bottom:795.520000pt;}
.y14_c01376{bottom:796.160000pt;}
.y17_c01376{bottom:796.800000pt;}
.y16_c01376{bottom:797.440000pt;}
.y12_c01376{bottom:798.720000pt;}
.yf_c01376{bottom:833.920000pt;}
.y10_c01376{bottom:834.560000pt;}
.y11_c01376{bottom:835.200000pt;}
.ye_c01376{bottom:837.120000pt;}
.yd_c01376{bottom:871.040000pt;}
.yb_c01376{bottom:871.680000pt;}
.y9_c01376{bottom:872.320000pt;}
.yc_c01376{bottom:874.240000pt;}
.y8_c01376{bottom:874.880000pt;}
.ya_c01376{bottom:875.520000pt;}
.y4_c01376{bottom:909.440000pt;}
.y6_c01376{bottom:910.080000pt;}
.y3_c01376{bottom:910.720000pt;}
.y7_c01376{bottom:911.360000pt;}
.y5_c01376{bottom:912.000000pt;}
.y2_c01376{bottom:912.640000pt;}
.y1_c01376{bottom:953.600000pt;}
.hb_c01376{height:25.341250pt;}
.h12_c01376{height:27.645000pt;}
.hd_c01376{height:29.948750pt;}
.h11_c01376{height:32.252500pt;}
.hf_c01376{height:36.860000pt;}
.h8_c01376{height:39.163750pt;}
.h6_c01376{height:41.467500pt;}
.h7_c01376{height:43.771250pt;}
.h3_c01376{height:46.075000pt;}
.h9_c01376{height:48.378750pt;}
.h5_c01376{height:50.682500pt;}
.h13_c01376{height:52.986250pt;}
.hc_c01376{height:55.290000pt;}
.h2_c01376{height:57.593750pt;}
.h4_c01376{height:59.897500pt;}
.ha_c01376{height:62.201250pt;}
.he_c01376{height:73.720000pt;}
.h10_c01376{height:78.327500pt;}
.h1_c01376{height:1022.000000pt;}
.h0_c01376{height:1022.080000pt;}
.w1_c01376{width:696.000000pt;}
.w0_c01376{width:696.320000pt;}
.x0_c01376{left:0.000000pt;}
.x11_c01376{left:42.880000pt;}
.x2_c01376{left:48.640000pt;}
.x1a_c01376{left:49.920000pt;}
.x2c_c01376{left:51.200000pt;}
.x14_c01376{left:77.440000pt;}
.x3_c01376{left:104.960000pt;}
.x2b_c01376{left:153.600000pt;}
.x15_c01376{left:172.800000pt;}
.x8_c01376{left:182.400000pt;}
.x2a_c01376{left:191.360000pt;}
.x12_c01376{left:220.800000pt;}
.x9_c01376{left:231.040000pt;}
.x20_c01376{left:240.000000pt;}
.xc_c01376{left:249.600000pt;}
.x1c_c01376{left:259.200000pt;}
.xa_c01376{left:278.400000pt;}
.x21_c01376{left:288.000000pt;}
.x2d_c01376{left:297.600000pt;}
.x1b_c01376{left:316.800000pt;}
.xd_c01376{left:326.400000pt;}
.x2e_c01376{left:345.600000pt;}
.x1d_c01376{left:364.160000pt;}
.xb_c01376{left:374.400000pt;}
.x16_c01376{left:383.360000pt;}
.x29_c01376{left:392.320000pt;}
.x27_c01376{left:401.280000pt;}
.x25_c01376{left:410.880000pt;}
.x23_c01376{left:421.760000pt;}
.xe_c01376{left:439.680000pt;}
.x28_c01376{left:449.280000pt;}
.x1e_c01376{left:458.880000pt;}
.xf_c01376{left:487.680000pt;}
.x24_c01376{left:497.280000pt;}
.x17_c01376{left:535.680000pt;}
.x2f_c01376{left:544.640000pt;}
.x22_c01376{left:563.840000pt;}
.x10_c01376{left:565.120000pt;}
.x4_c01376{left:566.400000pt;}
.x13_c01376{left:593.920000pt;}
.x5_c01376{left:595.200000pt;}
.x1_c01376{left:596.480000pt;}
.x30_c01376{left:622.080000pt;}
.x1f_c01376{left:630.400000pt;}
.x18_c01376{left:631.680000pt;}
.x6_c01376{left:632.960000pt;}
.x26_c01376{left:648.320000pt;}
.x19_c01376{left:649.600000pt;}
.x7_c01376{left:650.880000pt;}
}





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

.ir_c01377:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01377{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01377;src:url('chunks/assets/font_765ecf071635c8a668949979.woff2')format("woff");}.ff1_c01377{font-family:ff1_c01377;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m37_c01377{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);}
.m2b_c01377{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m3f_c01377{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01377{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1_c01377{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);}
.m27_c01377{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_c01377{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);}
.m36_c01377{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);}
.m31_c01377{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01377{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);}
.m33_c01377{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_c01377{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m19_c01377{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m14_c01377{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mb_c01377{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01377{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m11_c01377{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01377{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m10_c01377{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m29_c01377{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m28_c01377{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01377{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m13_c01377{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m18_c01377{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m17_c01377{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m20_c01377{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m26_c01377{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01377{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m0_c01377{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m30_c01377{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01377{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m8_c01377{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m22_c01377{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_c01377{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01377{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m25_c01377{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m3_c01377{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.md_c01377{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01377{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);}
.m35_c01377{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);}
.mf_c01377{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.me_c01377{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);}
.m3a_c01377{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);}
.m2_c01377{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m23_c01377{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m16_c01377{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);}
.m32_c01377{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01377{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01377{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m9_c01377{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);}
.ma_c01377{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m39_c01377{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m7_c01377{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m5_c01377{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m34_c01377{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);}
.m3d_c01377{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m4_c01377{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m24_c01377{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);}
.m3c_c01377{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m40_c01377{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);}
.m3e_c01377{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);}
.m2e_c01377{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m12_c01377{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m38_c01377{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m15_c01377{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.v1_c01377{vertical-align:-5.760000px;}
.v2_c01377{vertical-align:-2.880000px;}
.v0_c01377{vertical-align:0.000000px;}
.ls2_c01377{letter-spacing:0.000000px;}
.ls1_c01377{letter-spacing:83.257680px;}
.ls0_c01377{letter-spacing:85.783680px;}
.sc__c01377{text-shadow:none;}
.sc0_c01377{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01377{-webkit-text-stroke:0px transparent;}
.sc0_c01377{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01377{word-spacing:0.000000px;}
.ws0_c01377{word-spacing:57.059942px;}
.fc0_c01377{color:transparent;}
.fsc_c01377{font-size:5.760000px;}
.fse_c01377{font-size:37.440000px;}
.fsd_c01377{font-size:40.320000px;}
.fsb_c01377{font-size:46.080000px;}
.fs5_c01377{font-size:48.960000px;}
.fs4_c01377{font-size:51.840000px;}
.fsa_c01377{font-size:54.720000px;}
.fs8_c01377{font-size:57.600000px;}
.fs2_c01377{font-size:60.480000px;}
.fs3_c01377{font-size:63.360000px;}
.fs1_c01377{font-size:66.240000px;}
.fs9_c01377{font-size:69.120000px;}
.fs7_c01377{font-size:72.000000px;}
.fs0_c01377{font-size:74.880000px;}
.fs6_c01377{font-size:77.760000px;}
.y0_c01377{bottom:0.000000px;}
.y65_c01377{bottom:83.520000px;}
.y67_c01377{bottom:84.960000px;}
.y66_c01377{bottom:87.120000px;}
.y64_c01377{bottom:88.560000px;}
.y68_c01377{bottom:90.000000px;}
.y69_c01377{bottom:90.720000px;}
.y5f_c01377{bottom:126.720000px;}
.y60_c01377{bottom:127.440000px;}
.y5e_c01377{bottom:131.760000px;}
.y61_c01377{bottom:132.480000px;}
.y62_c01377{bottom:133.200000px;}
.y63_c01377{bottom:133.920000px;}
.y59_c01377{bottom:169.920000px;}
.y5a_c01377{bottom:171.360000px;}
.y58_c01377{bottom:174.960000px;}
.y5b_c01377{bottom:175.680000px;}
.y5c_c01377{bottom:177.120000px;}
.y5d_c01377{bottom:179.280000px;}
.y55_c01377{bottom:213.120000px;}
.y54_c01377{bottom:217.440000px;}
.y56_c01377{bottom:218.880000px;}
.y57_c01377{bottom:220.320000px;}
.y50_c01377{bottom:257.760000px;}
.y4f_c01377{bottom:260.640000px;}
.y51_c01377{bottom:262.080000px;}
.y53_c01377{bottom:262.800000px;}
.y52_c01377{bottom:265.680000px;}
.y4c_c01377{bottom:301.680000px;}
.y49_c01377{bottom:303.840000px;}
.y4b_c01377{bottom:304.560000px;}
.y4a_c01377{bottom:305.280000px;}
.y4d_c01377{bottom:306.000000px;}
.y4e_c01377{bottom:306.720000px;}
.y45_c01377{bottom:344.880000px;}
.y43_c01377{bottom:347.760000px;}
.y44_c01377{bottom:348.480000px;}
.y48_c01377{bottom:350.640000px;}
.y47_c01377{bottom:352.080000px;}
.y46_c01377{bottom:358.560000px;}
.y40_c01377{bottom:388.080000px;}
.y3f_c01377{bottom:390.960000px;}
.y41_c01377{bottom:391.680000px;}
.y42_c01377{bottom:392.400000px;}
.y3c_c01377{bottom:431.280000px;}
.y3a_c01377{bottom:434.160000px;}
.y3e_c01377{bottom:434.880000px;}
.y3b_c01377{bottom:435.600000px;}
.y3d_c01377{bottom:437.760000px;}
.y37_c01377{bottom:474.480000px;}
.y36_c01377{bottom:476.640000px;}
.y38_c01377{bottom:478.800000px;}
.y39_c01377{bottom:480.960000px;}
.y34_c01377{bottom:517.680000px;}
.y33_c01377{bottom:520.560000px;}
.y35_c01377{bottom:522.720000px;}
.y30_c01377{bottom:561.600000px;}
.y31_c01377{bottom:563.040000px;}
.y2e_c01377{bottom:563.760000px;}
.y2f_c01377{bottom:564.480000px;}
.y32_c01377{bottom:565.920000px;}
.y2b_c01377{bottom:603.360000px;}
.y2d_c01377{bottom:605.520000px;}
.y2a_c01377{bottom:606.240000px;}
.y2c_c01377{bottom:608.400000px;}
.y26_c01377{bottom:646.560000px;}
.y25_c01377{bottom:649.440000px;}
.y28_c01377{bottom:650.160000px;}
.y29_c01377{bottom:650.880000px;}
.y27_c01377{bottom:652.320000px;}
.y22_c01377{bottom:691.200000px;}
.y24_c01377{bottom:691.920000px;}
.y23_c01377{bottom:692.640000px;}
.y21_c01377{bottom:693.360000px;}
.y1e_c01377{bottom:734.400000px;}
.y1f_c01377{bottom:735.120000px;}
.y1d_c01377{bottom:735.840000px;}
.y20_c01377{bottom:737.280000px;}
.y1b_c01377{bottom:777.600000px;}
.y1c_c01377{bottom:778.320000px;}
.y1a_c01377{bottom:779.040000px;}
.y17_c01377{bottom:820.080000px;}
.y19_c01377{bottom:820.800000px;}
.y16_c01377{bottom:821.520000px;}
.y18_c01377{bottom:823.680000px;}
.y13_c01377{bottom:863.280000px;}
.y15_c01377{bottom:864.000000px;}
.y12_c01377{bottom:864.720000px;}
.y14_c01377{bottom:867.600000px;}
.y10_c01377{bottom:906.480000px;}
.yf_c01377{bottom:908.640000px;}
.y11_c01377{bottom:909.360000px;}
.yb_c01377{bottom:949.680000px;}
.yd_c01377{bottom:950.400000px;}
.ye_c01377{bottom:951.120000px;}
.ya_c01377{bottom:951.840000px;}
.yc_c01377{bottom:952.560000px;}
.y8_c01377{bottom:994.320000px;}
.y7_c01377{bottom:997.200000px;}
.y5_c01377{bottom:1024.560000px;}
.y9_c01377{bottom:1026.720000px;}
.y3_c01377{bottom:1027.440000px;}
.y6_c01377{bottom:1028.160000px;}
.y4_c01377{bottom:1029.600000px;}
.y1_c01377{bottom:1092.960000px;}
.y2_c01377{bottom:1094.400000px;}
.he_c01377{height:5.183438px;}
.h10_c01377{height:33.692344px;}
.hf_c01377{height:36.284062px;}
.hd_c01377{height:41.467500px;}
.h7_c01377{height:44.059219px;}
.h6_c01377{height:46.650937px;}
.hc_c01377{height:49.242656px;}
.ha_c01377{height:51.834375px;}
.h4_c01377{height:54.426094px;}
.h5_c01377{height:57.017812px;}
.h3_c01377{height:59.609531px;}
.hb_c01377{height:62.201250px;}
.h9_c01377{height:64.792969px;}
.h2_c01377{height:67.384687px;}
.h8_c01377{height:69.976406px;}
.h1_c01377{height:1149.750000px;}
.h0_c01377{height:1149.840000px;}
.w0_c01377{width:781.920000px;}
.w1_c01377{width:782.250000px;}
.x0_c01377{left:0.000000px;}
.x3_c01377{left:54.000000px;}
.x1c_c01377{left:55.440000px;}
.x26_c01377{left:56.880000px;}
.xf_c01377{left:116.640000px;}
.x4_c01377{left:118.080000px;}
.x1d_c01377{left:140.400000px;}
.x23_c01377{left:150.480000px;}
.xa_c01377{left:160.560000px;}
.x21_c01377{left:183.600000px;}
.x1f_c01377{left:194.400000px;}
.x5_c01377{left:203.760000px;}
.xb_c01377{left:215.280000px;}
.x27_c01377{left:216.720000px;}
.x24_c01377{left:237.600000px;}
.x10_c01377{left:248.400000px;}
.x6_c01377{left:258.480000px;}
.x2e_c01377{left:270.720000px;}
.x22_c01377{left:278.640000px;}
.x7_c01377{left:312.480000px;}
.x28_c01377{left:322.560000px;}
.x2a_c01377{left:324.000000px;}
.x29_c01377{left:367.200000px;}
.x2b_c01377{left:378.000000px;}
.x2c_c01377{left:420.480000px;}
.x8_c01377{left:505.440000px;}
.x9_c01377{left:571.680000px;}
.x11_c01377{left:581.040000px;}
.x18_c01377{left:601.920000px;}
.x15_c01377{left:603.360000px;}
.x12_c01377{left:613.440000px;}
.x1b_c01377{left:634.320000px;}
.xc_c01377{left:635.760000px;}
.x17_c01377{left:637.200000px;}
.x2d_c01377{left:658.800000px;}
.x1_c01377{left:663.840000px;}
.x16_c01377{left:667.440000px;}
.xd_c01377{left:668.880000px;}
.x25_c01377{left:676.800000px;}
.x19_c01377{left:678.240000px;}
.x2_c01377{left:699.840000px;}
.xe_c01377{left:701.280000px;}
.x1e_c01377{left:708.480000px;}
.x1a_c01377{left:709.920000px;}
.x13_c01377{left:711.360000px;}
.x20_c01377{left:730.080000px;}
.x14_c01377{left:732.240000px;}
@media print{
.v1_c01377{vertical-align:-5.120000pt;}
.v2_c01377{vertical-align:-2.560000pt;}
.v0_c01377{vertical-align:0.000000pt;}
.ls2_c01377{letter-spacing:0.000000pt;}
.ls1_c01377{letter-spacing:74.006827pt;}
.ls0_c01377{letter-spacing:76.252160pt;}
.ws1_c01377{word-spacing:0.000000pt;}
.ws0_c01377{word-spacing:50.719949pt;}
.fsc_c01377{font-size:5.120000pt;}
.fse_c01377{font-size:33.280000pt;}
.fsd_c01377{font-size:35.840000pt;}
.fsb_c01377{font-size:40.960000pt;}
.fs5_c01377{font-size:43.520000pt;}
.fs4_c01377{font-size:46.080000pt;}
.fsa_c01377{font-size:48.640000pt;}
.fs8_c01377{font-size:51.200000pt;}
.fs2_c01377{font-size:53.760000pt;}
.fs3_c01377{font-size:56.320000pt;}
.fs1_c01377{font-size:58.880000pt;}
.fs9_c01377{font-size:61.440000pt;}
.fs7_c01377{font-size:64.000000pt;}
.fs0_c01377{font-size:66.560000pt;}
.fs6_c01377{font-size:69.120000pt;}
.y0_c01377{bottom:0.000000pt;}
.y65_c01377{bottom:74.240000pt;}
.y67_c01377{bottom:75.520000pt;}
.y66_c01377{bottom:77.440000pt;}
.y64_c01377{bottom:78.720000pt;}
.y68_c01377{bottom:80.000000pt;}
.y69_c01377{bottom:80.640000pt;}
.y5f_c01377{bottom:112.640000pt;}
.y60_c01377{bottom:113.280000pt;}
.y5e_c01377{bottom:117.120000pt;}
.y61_c01377{bottom:117.760000pt;}
.y62_c01377{bottom:118.400000pt;}
.y63_c01377{bottom:119.040000pt;}
.y59_c01377{bottom:151.040000pt;}
.y5a_c01377{bottom:152.320000pt;}
.y58_c01377{bottom:155.520000pt;}
.y5b_c01377{bottom:156.160000pt;}
.y5c_c01377{bottom:157.440000pt;}
.y5d_c01377{bottom:159.360000pt;}
.y55_c01377{bottom:189.440000pt;}
.y54_c01377{bottom:193.280000pt;}
.y56_c01377{bottom:194.560000pt;}
.y57_c01377{bottom:195.840000pt;}
.y50_c01377{bottom:229.120000pt;}
.y4f_c01377{bottom:231.680000pt;}
.y51_c01377{bottom:232.960000pt;}
.y53_c01377{bottom:233.600000pt;}
.y52_c01377{bottom:236.160000pt;}
.y4c_c01377{bottom:268.160000pt;}
.y49_c01377{bottom:270.080000pt;}
.y4b_c01377{bottom:270.720000pt;}
.y4a_c01377{bottom:271.360000pt;}
.y4d_c01377{bottom:272.000000pt;}
.y4e_c01377{bottom:272.640000pt;}
.y45_c01377{bottom:306.560000pt;}
.y43_c01377{bottom:309.120000pt;}
.y44_c01377{bottom:309.760000pt;}
.y48_c01377{bottom:311.680000pt;}
.y47_c01377{bottom:312.960000pt;}
.y46_c01377{bottom:318.720000pt;}
.y40_c01377{bottom:344.960000pt;}
.y3f_c01377{bottom:347.520000pt;}
.y41_c01377{bottom:348.160000pt;}
.y42_c01377{bottom:348.800000pt;}
.y3c_c01377{bottom:383.360000pt;}
.y3a_c01377{bottom:385.920000pt;}
.y3e_c01377{bottom:386.560000pt;}
.y3b_c01377{bottom:387.200000pt;}
.y3d_c01377{bottom:389.120000pt;}
.y37_c01377{bottom:421.760000pt;}
.y36_c01377{bottom:423.680000pt;}
.y38_c01377{bottom:425.600000pt;}
.y39_c01377{bottom:427.520000pt;}
.y34_c01377{bottom:460.160000pt;}
.y33_c01377{bottom:462.720000pt;}
.y35_c01377{bottom:464.640000pt;}
.y30_c01377{bottom:499.200000pt;}
.y31_c01377{bottom:500.480000pt;}
.y2e_c01377{bottom:501.120000pt;}
.y2f_c01377{bottom:501.760000pt;}
.y32_c01377{bottom:503.040000pt;}
.y2b_c01377{bottom:536.320000pt;}
.y2d_c01377{bottom:538.240000pt;}
.y2a_c01377{bottom:538.880000pt;}
.y2c_c01377{bottom:540.800000pt;}
.y26_c01377{bottom:574.720000pt;}
.y25_c01377{bottom:577.280000pt;}
.y28_c01377{bottom:577.920000pt;}
.y29_c01377{bottom:578.560000pt;}
.y27_c01377{bottom:579.840000pt;}
.y22_c01377{bottom:614.400000pt;}
.y24_c01377{bottom:615.040000pt;}
.y23_c01377{bottom:615.680000pt;}
.y21_c01377{bottom:616.320000pt;}
.y1e_c01377{bottom:652.800000pt;}
.y1f_c01377{bottom:653.440000pt;}
.y1d_c01377{bottom:654.080000pt;}
.y20_c01377{bottom:655.360000pt;}
.y1b_c01377{bottom:691.200000pt;}
.y1c_c01377{bottom:691.840000pt;}
.y1a_c01377{bottom:692.480000pt;}
.y17_c01377{bottom:728.960000pt;}
.y19_c01377{bottom:729.600000pt;}
.y16_c01377{bottom:730.240000pt;}
.y18_c01377{bottom:732.160000pt;}
.y13_c01377{bottom:767.360000pt;}
.y15_c01377{bottom:768.000000pt;}
.y12_c01377{bottom:768.640000pt;}
.y14_c01377{bottom:771.200000pt;}
.y10_c01377{bottom:805.760000pt;}
.yf_c01377{bottom:807.680000pt;}
.y11_c01377{bottom:808.320000pt;}
.yb_c01377{bottom:844.160000pt;}
.yd_c01377{bottom:844.800000pt;}
.ye_c01377{bottom:845.440000pt;}
.ya_c01377{bottom:846.080000pt;}
.yc_c01377{bottom:846.720000pt;}
.y8_c01377{bottom:883.840000pt;}
.y7_c01377{bottom:886.400000pt;}
.y5_c01377{bottom:910.720000pt;}
.y9_c01377{bottom:912.640000pt;}
.y3_c01377{bottom:913.280000pt;}
.y6_c01377{bottom:913.920000pt;}
.y4_c01377{bottom:915.200000pt;}
.y1_c01377{bottom:971.520000pt;}
.y2_c01377{bottom:972.800000pt;}
.he_c01377{height:4.607500pt;}
.h10_c01377{height:29.948750pt;}
.hf_c01377{height:32.252500pt;}
.hd_c01377{height:36.860000pt;}
.h7_c01377{height:39.163750pt;}
.h6_c01377{height:41.467500pt;}
.hc_c01377{height:43.771250pt;}
.ha_c01377{height:46.075000pt;}
.h4_c01377{height:48.378750pt;}
.h5_c01377{height:50.682500pt;}
.h3_c01377{height:52.986250pt;}
.hb_c01377{height:55.290000pt;}
.h9_c01377{height:57.593750pt;}
.h2_c01377{height:59.897500pt;}
.h8_c01377{height:62.201250pt;}
.h1_c01377{height:1022.000000pt;}
.h0_c01377{height:1022.080000pt;}
.w0_c01377{width:695.040000pt;}
.w1_c01377{width:695.333333pt;}
.x0_c01377{left:0.000000pt;}
.x3_c01377{left:48.000000pt;}
.x1c_c01377{left:49.280000pt;}
.x26_c01377{left:50.560000pt;}
.xf_c01377{left:103.680000pt;}
.x4_c01377{left:104.960000pt;}
.x1d_c01377{left:124.800000pt;}
.x23_c01377{left:133.760000pt;}
.xa_c01377{left:142.720000pt;}
.x21_c01377{left:163.200000pt;}
.x1f_c01377{left:172.800000pt;}
.x5_c01377{left:181.120000pt;}
.xb_c01377{left:191.360000pt;}
.x27_c01377{left:192.640000pt;}
.x24_c01377{left:211.200000pt;}
.x10_c01377{left:220.800000pt;}
.x6_c01377{left:229.760000pt;}
.x2e_c01377{left:240.640000pt;}
.x22_c01377{left:247.680000pt;}
.x7_c01377{left:277.760000pt;}
.x28_c01377{left:286.720000pt;}
.x2a_c01377{left:288.000000pt;}
.x29_c01377{left:326.400000pt;}
.x2b_c01377{left:336.000000pt;}
.x2c_c01377{left:373.760000pt;}
.x8_c01377{left:449.280000pt;}
.x9_c01377{left:508.160000pt;}
.x11_c01377{left:516.480000pt;}
.x18_c01377{left:535.040000pt;}
.x15_c01377{left:536.320000pt;}
.x12_c01377{left:545.280000pt;}
.x1b_c01377{left:563.840000pt;}
.xc_c01377{left:565.120000pt;}
.x17_c01377{left:566.400000pt;}
.x2d_c01377{left:585.600000pt;}
.x1_c01377{left:590.080000pt;}
.x16_c01377{left:593.280000pt;}
.xd_c01377{left:594.560000pt;}
.x25_c01377{left:601.600000pt;}
.x19_c01377{left:602.880000pt;}
.x2_c01377{left:622.080000pt;}
.xe_c01377{left:623.360000pt;}
.x1e_c01377{left:629.760000pt;}
.x1a_c01377{left:631.040000pt;}
.x13_c01377{left:632.320000pt;}
.x20_c01377{left:648.960000pt;}
.x14_c01377{left:650.880000pt;}
}





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

.ir_c01378:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01378{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01378;src:url('chunks/assets/font_a1225a9dfca63afe97eff98b.woff2')format("woff");}.ff1_c01378{font-family:ff1_c01378;line-height:1.109863;font-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_c01378{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01378{transform:matrix(0.159575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159575,0.000000,0.000000,0.250000,0,0);}
.m4d_c01378{transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);}
.m3e_c01378{transform:matrix(0.202600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202600,0.000000,0.000000,0.250000,0,0);}
.m27_c01378{transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);}
.m33_c01378{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_c01378{transform:matrix(0.236025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236025,0.000000,0.000000,0.250000,0,0);}
.m2b_c01378{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m42_c01378{transform:matrix(0.241975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241975,0.000000,0.000000,0.250000,0,0);}
.m1_c01378{transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);}
.m15_c01378{transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);}
.m1b_c01378{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mc_c01378{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m26_c01378{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);}
.m4a_c01378{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);}
.m50_c01378{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m28_c01378{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m21_c01378{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);}
.m47_c01378{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);}
.m3c_c01378{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m4_c01378{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m14_c01378{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m17_c01378{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01378{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);}
.m43_c01378{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m9_c01378{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m22_c01378{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01378{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m32_c01378{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m19_c01378{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m37_c01378{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01378{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m25_c01378{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m29_c01378{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m30_c01378{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01378{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m24_c01378{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01378{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m31_c01378{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01378{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m7_c01378{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_c01378{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m23_c01378{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.mb_c01378{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01378{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);}
.m48_c01378{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m0_c01378{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);}
.m46_c01378{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);}
.m1a_c01378{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m6_c01378{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);}
.m35_c01378{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);}
.m10_c01378{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);}
.m2_c01378{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m13_c01378{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m40_c01378{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);}
.m39_c01378{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m18_c01378{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);}
.m45_c01378{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01378{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01378{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.ma_c01378{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m38_c01378{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01378{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.me_c01378{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m20_c01378{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m8_c01378{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.md_c01378{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01378{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m3_c01378{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);}
.m3d_c01378{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m36_c01378{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m12_c01378{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m16_c01378{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);}
.m11_c01378{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01378{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);}
.m41_c01378{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01378{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01378{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m49_c01378{transform:matrix(0.650000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.650000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.650000,0.000000,0.000000,0.250000,0,0);}
.m34_c01378{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m44_c01378{transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);}
.v0_c01378{vertical-align:0.000000px;}
.v1_c01378{vertical-align:14.400000px;}
.ls0_c01378{letter-spacing:0.000000px;}
.sc__c01378{text-shadow:none;}
.sc0_c01378{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01378{-webkit-text-stroke:0px transparent;}
.sc0_c01378{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01378{word-spacing:0.000000px;}
.ws0_c01378{word-spacing:9.475200px;}
.ws2_c01378{word-spacing:10.264683px;}
.ws1_c01378{word-spacing:30.808560px;}
.fc0_c01378{color:transparent;}
.fsb_c01378{font-size:2.880000px;}
.fsf_c01378{font-size:34.560000px;}
.fsd_c01378{font-size:37.440000px;}
.fs7_c01378{font-size:40.320000px;}
.fsa_c01378{font-size:43.200000px;}
.fs9_c01378{font-size:46.080000px;}
.fs10_c01378{font-size:48.960000px;}
.fs6_c01378{font-size:51.840000px;}
.fs3_c01378{font-size:54.720000px;}
.fs8_c01378{font-size:57.600000px;}
.fs5_c01378{font-size:60.480000px;}
.fs0_c01378{font-size:63.360000px;}
.fse_c01378{font-size:66.240000px;}
.fs2_c01378{font-size:69.120000px;}
.fs12_c01378{font-size:72.000000px;}
.fs4_c01378{font-size:74.880000px;}
.fs1_c01378{font-size:77.760000px;}
.fs11_c01378{font-size:80.640000px;}
.fsc_c01378{font-size:103.680000px;}
.y0_c01378{bottom:0.000000px;}
.y5f_c01378{bottom:73.440000px;}
.y60_c01378{bottom:74.880000px;}
.y61_c01378{bottom:75.600000px;}
.y62_c01378{bottom:77.040000px;}
.y63_c01378{bottom:78.480000px;}
.y5a_c01378{bottom:104.400000px;}
.y5b_c01378{bottom:105.120000px;}
.y59_c01378{bottom:105.840000px;}
.y58_c01378{bottom:106.560000px;}
.y5c_c01378{bottom:108.720000px;}
.y5e_c01378{bottom:109.440000px;}
.y70_c01378{bottom:110.160000px;}
.y5d_c01378{bottom:110.880000px;}
.y57_c01378{bottom:146.880000px;}
.y56_c01378{bottom:151.200000px;}
.y64_c01378{bottom:152.640000px;}
.y6f_c01378{bottom:154.080000px;}
.y53_c01378{bottom:190.800000px;}
.y54_c01378{bottom:193.680000px;}
.y51_c01378{bottom:194.400000px;}
.y52_c01378{bottom:195.120000px;}
.y6e_c01378{bottom:195.840000px;}
.y55_c01378{bottom:197.280000px;}
.y50_c01378{bottom:234.000000px;}
.y4f_c01378{bottom:237.600000px;}
.y4e_c01378{bottom:238.320000px;}
.y6c_c01378{bottom:239.040000px;}
.y6d_c01378{bottom:240.480000px;}
.y4d_c01378{bottom:277.200000px;}
.y6a_c01378{bottom:280.080000px;}
.y4b_c01378{bottom:280.800000px;}
.y4c_c01378{bottom:281.520000px;}
.y6b_c01378{bottom:282.960000px;}
.y4a_c01378{bottom:319.680000px;}
.y48_c01378{bottom:323.280000px;}
.y49_c01378{bottom:324.720000px;}
.y69_c01378{bottom:326.160000px;}
.y47_c01378{bottom:363.600000px;}
.y46_c01378{bottom:366.480000px;}
.y67_c01378{bottom:367.920000px;}
.y68_c01378{bottom:368.640000px;}
.y45_c01378{bottom:406.800000px;}
.y44_c01378{bottom:407.520000px;}
.y42_c01378{bottom:408.960000px;}
.y43_c01378{bottom:410.400000px;}
.y66_c01378{bottom:411.120000px;}
.y65_c01378{bottom:411.840000px;}
.y40_c01378{bottom:504.720000px;}
.y3e_c01378{bottom:506.880000px;}
.y3f_c01378{bottom:508.320000px;}
.y41_c01378{bottom:509.040000px;}
.y3d_c01378{bottom:541.440000px;}
.y39_c01378{bottom:547.200000px;}
.y3c_c01378{bottom:549.360000px;}
.y38_c01378{bottom:550.080000px;}
.y3b_c01378{bottom:551.520000px;}
.y3a_c01378{bottom:552.240000px;}
.y37_c01378{bottom:581.760000px;}
.y35_c01378{bottom:592.560000px;}
.y33_c01378{bottom:593.280000px;}
.y32_c01378{bottom:594.000000px;}
.y36_c01378{bottom:594.720000px;}
.y34_c01378{bottom:595.440000px;}
.y23_c01378{bottom:634.320000px;}
.y30_c01378{bottom:635.760000px;}
.y22_c01378{bottom:637.200000px;}
.y31_c01378{bottom:637.920000px;}
.y1f_c01378{bottom:679.680000px;}
.y20_c01378{bottom:682.560000px;}
.y21_c01378{bottom:683.280000px;}
.y1c_c01378{bottom:709.920000px;}
.y2f_c01378{bottom:711.360000px;}
.y2e_c01378{bottom:712.080000px;}
.y2d_c01378{bottom:712.800000px;}
.y1b_c01378{bottom:713.520000px;}
.y1d_c01378{bottom:714.240000px;}
.y1e_c01378{bottom:714.960000px;}
.y1a_c01378{bottom:758.160000px;}
.y18_c01378{bottom:807.120000px;}
.y19_c01378{bottom:807.840000px;}
.y2a_c01378{bottom:808.560000px;}
.y2b_c01378{bottom:809.280000px;}
.y17_c01378{bottom:810.000000px;}
.y2c_c01378{bottom:811.440000px;}
.y29_c01378{bottom:849.600000px;}
.y14_c01378{bottom:850.320000px;}
.y28_c01378{bottom:852.480000px;}
.y13_c01378{bottom:853.200000px;}
.y16_c01378{bottom:853.920000px;}
.y15_c01378{bottom:854.640000px;}
.y12_c01378{bottom:884.880000px;}
.y27_c01378{bottom:892.800000px;}
.yf_c01378{bottom:893.520000px;}
.y26_c01378{bottom:894.240000px;}
.y11_c01378{bottom:894.960000px;}
.y10_c01378{bottom:895.680000px;}
.ye_c01378{bottom:896.400000px;}
.yd_c01378{bottom:935.280000px;}
.y9_c01378{bottom:936.720000px;}
.yc_c01378{bottom:937.440000px;}
.ya_c01378{bottom:938.160000px;}
.y8_c01378{bottom:938.880000px;}
.yb_c01378{bottom:940.320000px;}
.y7_c01378{bottom:979.200000px;}
.y25_c01378{bottom:979.920000px;}
.y6_c01378{bottom:982.080000px;}
.y5_c01378{bottom:1022.400000px;}
.y2_c01378{bottom:1023.120000px;}
.y3_c01378{bottom:1024.560000px;}
.y1_c01378{bottom:1025.280000px;}
.y4_c01378{bottom:1026.000000px;}
.y24_c01378{bottom:1079.280000px;}
.hd_c01378{height:2.591719px;}
.h11_c01378{height:31.100625px;}
.hf_c01378{height:33.692344px;}
.h9_c01378{height:36.284062px;}
.hc_c01378{height:38.875781px;}
.hb_c01378{height:41.467500px;}
.h12_c01378{height:44.059219px;}
.h8_c01378{height:46.650937px;}
.h5_c01378{height:49.242656px;}
.ha_c01378{height:51.834375px;}
.h7_c01378{height:54.426094px;}
.h2_c01378{height:57.017812px;}
.h10_c01378{height:59.609531px;}
.h4_c01378{height:62.201250px;}
.h14_c01378{height:64.792969px;}
.h6_c01378{height:67.384687px;}
.h3_c01378{height:69.976406px;}
.h13_c01378{height:72.568125px;}
.he_c01378{height:93.301875px;}
.h1_c01378{height:1147.500000px;}
.h0_c01378{height:1147.680000px;}
.w0_c01378{width:779.760000px;}
.w1_c01378{width:780.000000px;}
.x0_c01378{left:0.000000px;}
.x1_c01378{left:55.440000px;}
.x30_c01378{left:56.880000px;}
.x33_c01378{left:58.320000px;}
.x15_c01378{left:108.000000px;}
.x6_c01378{left:118.800000px;}
.x2_c01378{left:120.240000px;}
.x16_c01378{left:162.720000px;}
.x2e_c01378{left:183.600000px;}
.x14_c01378{left:195.120000px;}
.x17_c01378{left:204.480000px;}
.x28_c01378{left:205.920000px;}
.x1b_c01378{left:215.280000px;}
.x7_c01378{left:216.720000px;}
.x3_c01378{left:218.160000px;}
.x11_c01378{left:228.240000px;}
.x2f_c01378{left:238.320000px;}
.x18_c01378{left:249.120000px;}
.x1c_c01378{left:259.920000px;}
.x8_c01378{left:271.440000px;}
.x12_c01378{left:282.240000px;}
.x19_c01378{left:303.840000px;}
.x9_c01378{left:313.920000px;}
.x13_c01378{left:324.000000px;}
.x34_c01378{left:325.440000px;}
.x4_c01378{left:334.800000px;}
.x1a_c01378{left:345.600000px;}
.x29_c01378{left:378.000000px;}
.x5_c01378{left:389.520000px;}
.xc_c01378{left:401.040000px;}
.xd_c01378{left:410.400000px;}
.x31_c01378{left:421.200000px;}
.xa_c01378{left:431.280000px;}
.x38_c01378{left:441.360000px;}
.xe_c01378{left:442.800000px;}
.x35_c01378{left:453.600000px;}
.x32_c01378{left:474.480000px;}
.xb_c01378{left:486.000000px;}
.x39_c01378{left:495.360000px;}
.xf_c01378{left:496.800000px;}
.x36_c01378{left:506.160000px;}
.x2c_c01378{left:538.560000px;}
.x10_c01378{left:540.000000px;}
.x3a_c01378{left:548.640000px;}
.x2a_c01378{left:550.080000px;}
.x37_c01378{left:560.880000px;}
.x25_c01378{left:581.040000px;}
.x2d_c01378{left:602.640000px;}
.x1e_c01378{left:604.800000px;}
.x3b_c01378{left:635.040000px;}
.x23_c01378{left:636.480000px;}
.x21_c01378{left:637.920000px;}
.x3c_c01378{left:647.280000px;}
.x24_c01378{left:668.160000px;}
.x1d_c01378{left:669.600000px;}
.x3d_c01378{left:678.960000px;}
.x1f_c01378{left:680.400000px;}
.x2b_c01378{left:700.560000px;}
.x26_c01378{left:710.640000px;}
.x20_c01378{left:712.800000px;}
.x3e_c01378{left:720.720000px;}
.x27_c01378{left:731.520000px;}
.x22_c01378{left:732.960000px;}
@media print{
.v0_c01378{vertical-align:0.000000pt;}
.v1_c01378{vertical-align:12.800000pt;}
.ls0_c01378{letter-spacing:0.000000pt;}
.ws3_c01378{word-spacing:0.000000pt;}
.ws0_c01378{word-spacing:8.422400pt;}
.ws2_c01378{word-spacing:9.124163pt;}
.ws1_c01378{word-spacing:27.385387pt;}
.fsb_c01378{font-size:2.560000pt;}
.fsf_c01378{font-size:30.720000pt;}
.fsd_c01378{font-size:33.280000pt;}
.fs7_c01378{font-size:35.840000pt;}
.fsa_c01378{font-size:38.400000pt;}
.fs9_c01378{font-size:40.960000pt;}
.fs10_c01378{font-size:43.520000pt;}
.fs6_c01378{font-size:46.080000pt;}
.fs3_c01378{font-size:48.640000pt;}
.fs8_c01378{font-size:51.200000pt;}
.fs5_c01378{font-size:53.760000pt;}
.fs0_c01378{font-size:56.320000pt;}
.fse_c01378{font-size:58.880000pt;}
.fs2_c01378{font-size:61.440000pt;}
.fs12_c01378{font-size:64.000000pt;}
.fs4_c01378{font-size:66.560000pt;}
.fs1_c01378{font-size:69.120000pt;}
.fs11_c01378{font-size:71.680000pt;}
.fsc_c01378{font-size:92.160000pt;}
.y0_c01378{bottom:0.000000pt;}
.y5f_c01378{bottom:65.280000pt;}
.y60_c01378{bottom:66.560000pt;}
.y61_c01378{bottom:67.200000pt;}
.y62_c01378{bottom:68.480000pt;}
.y63_c01378{bottom:69.760000pt;}
.y5a_c01378{bottom:92.800000pt;}
.y5b_c01378{bottom:93.440000pt;}
.y59_c01378{bottom:94.080000pt;}
.y58_c01378{bottom:94.720000pt;}
.y5c_c01378{bottom:96.640000pt;}
.y5e_c01378{bottom:97.280000pt;}
.y70_c01378{bottom:97.920000pt;}
.y5d_c01378{bottom:98.560000pt;}
.y57_c01378{bottom:130.560000pt;}
.y56_c01378{bottom:134.400000pt;}
.y64_c01378{bottom:135.680000pt;}
.y6f_c01378{bottom:136.960000pt;}
.y53_c01378{bottom:169.600000pt;}
.y54_c01378{bottom:172.160000pt;}
.y51_c01378{bottom:172.800000pt;}
.y52_c01378{bottom:173.440000pt;}
.y6e_c01378{bottom:174.080000pt;}
.y55_c01378{bottom:175.360000pt;}
.y50_c01378{bottom:208.000000pt;}
.y4f_c01378{bottom:211.200000pt;}
.y4e_c01378{bottom:211.840000pt;}
.y6c_c01378{bottom:212.480000pt;}
.y6d_c01378{bottom:213.760000pt;}
.y4d_c01378{bottom:246.400000pt;}
.y6a_c01378{bottom:248.960000pt;}
.y4b_c01378{bottom:249.600000pt;}
.y4c_c01378{bottom:250.240000pt;}
.y6b_c01378{bottom:251.520000pt;}
.y4a_c01378{bottom:284.160000pt;}
.y48_c01378{bottom:287.360000pt;}
.y49_c01378{bottom:288.640000pt;}
.y69_c01378{bottom:289.920000pt;}
.y47_c01378{bottom:323.200000pt;}
.y46_c01378{bottom:325.760000pt;}
.y67_c01378{bottom:327.040000pt;}
.y68_c01378{bottom:327.680000pt;}
.y45_c01378{bottom:361.600000pt;}
.y44_c01378{bottom:362.240000pt;}
.y42_c01378{bottom:363.520000pt;}
.y43_c01378{bottom:364.800000pt;}
.y66_c01378{bottom:365.440000pt;}
.y65_c01378{bottom:366.080000pt;}
.y40_c01378{bottom:448.640000pt;}
.y3e_c01378{bottom:450.560000pt;}
.y3f_c01378{bottom:451.840000pt;}
.y41_c01378{bottom:452.480000pt;}
.y3d_c01378{bottom:481.280000pt;}
.y39_c01378{bottom:486.400000pt;}
.y3c_c01378{bottom:488.320000pt;}
.y38_c01378{bottom:488.960000pt;}
.y3b_c01378{bottom:490.240000pt;}
.y3a_c01378{bottom:490.880000pt;}
.y37_c01378{bottom:517.120000pt;}
.y35_c01378{bottom:526.720000pt;}
.y33_c01378{bottom:527.360000pt;}
.y32_c01378{bottom:528.000000pt;}
.y36_c01378{bottom:528.640000pt;}
.y34_c01378{bottom:529.280000pt;}
.y23_c01378{bottom:563.840000pt;}
.y30_c01378{bottom:565.120000pt;}
.y22_c01378{bottom:566.400000pt;}
.y31_c01378{bottom:567.040000pt;}
.y1f_c01378{bottom:604.160000pt;}
.y20_c01378{bottom:606.720000pt;}
.y21_c01378{bottom:607.360000pt;}
.y1c_c01378{bottom:631.040000pt;}
.y2f_c01378{bottom:632.320000pt;}
.y2e_c01378{bottom:632.960000pt;}
.y2d_c01378{bottom:633.600000pt;}
.y1b_c01378{bottom:634.240000pt;}
.y1d_c01378{bottom:634.880000pt;}
.y1e_c01378{bottom:635.520000pt;}
.y1a_c01378{bottom:673.920000pt;}
.y18_c01378{bottom:717.440000pt;}
.y19_c01378{bottom:718.080000pt;}
.y2a_c01378{bottom:718.720000pt;}
.y2b_c01378{bottom:719.360000pt;}
.y17_c01378{bottom:720.000000pt;}
.y2c_c01378{bottom:721.280000pt;}
.y29_c01378{bottom:755.200000pt;}
.y14_c01378{bottom:755.840000pt;}
.y28_c01378{bottom:757.760000pt;}
.y13_c01378{bottom:758.400000pt;}
.y16_c01378{bottom:759.040000pt;}
.y15_c01378{bottom:759.680000pt;}
.y12_c01378{bottom:786.560000pt;}
.y27_c01378{bottom:793.600000pt;}
.yf_c01378{bottom:794.240000pt;}
.y26_c01378{bottom:794.880000pt;}
.y11_c01378{bottom:795.520000pt;}
.y10_c01378{bottom:796.160000pt;}
.ye_c01378{bottom:796.800000pt;}
.yd_c01378{bottom:831.360000pt;}
.y9_c01378{bottom:832.640000pt;}
.yc_c01378{bottom:833.280000pt;}
.ya_c01378{bottom:833.920000pt;}
.y8_c01378{bottom:834.560000pt;}
.yb_c01378{bottom:835.840000pt;}
.y7_c01378{bottom:870.400000pt;}
.y25_c01378{bottom:871.040000pt;}
.y6_c01378{bottom:872.960000pt;}
.y5_c01378{bottom:908.800000pt;}
.y2_c01378{bottom:909.440000pt;}
.y3_c01378{bottom:910.720000pt;}
.y1_c01378{bottom:911.360000pt;}
.y4_c01378{bottom:912.000000pt;}
.y24_c01378{bottom:959.360000pt;}
.hd_c01378{height:2.303750pt;}
.h11_c01378{height:27.645000pt;}
.hf_c01378{height:29.948750pt;}
.h9_c01378{height:32.252500pt;}
.hc_c01378{height:34.556250pt;}
.hb_c01378{height:36.860000pt;}
.h12_c01378{height:39.163750pt;}
.h8_c01378{height:41.467500pt;}
.h5_c01378{height:43.771250pt;}
.ha_c01378{height:46.075000pt;}
.h7_c01378{height:48.378750pt;}
.h2_c01378{height:50.682500pt;}
.h10_c01378{height:52.986250pt;}
.h4_c01378{height:55.290000pt;}
.h14_c01378{height:57.593750pt;}
.h6_c01378{height:59.897500pt;}
.h3_c01378{height:62.201250pt;}
.h13_c01378{height:64.505000pt;}
.he_c01378{height:82.935000pt;}
.h1_c01378{height:1020.000000pt;}
.h0_c01378{height:1020.160000pt;}
.w0_c01378{width:693.120000pt;}
.w1_c01378{width:693.333333pt;}
.x0_c01378{left:0.000000pt;}
.x1_c01378{left:49.280000pt;}
.x30_c01378{left:50.560000pt;}
.x33_c01378{left:51.840000pt;}
.x15_c01378{left:96.000000pt;}
.x6_c01378{left:105.600000pt;}
.x2_c01378{left:106.880000pt;}
.x16_c01378{left:144.640000pt;}
.x2e_c01378{left:163.200000pt;}
.x14_c01378{left:173.440000pt;}
.x17_c01378{left:181.760000pt;}
.x28_c01378{left:183.040000pt;}
.x1b_c01378{left:191.360000pt;}
.x7_c01378{left:192.640000pt;}
.x3_c01378{left:193.920000pt;}
.x11_c01378{left:202.880000pt;}
.x2f_c01378{left:211.840000pt;}
.x18_c01378{left:221.440000pt;}
.x1c_c01378{left:231.040000pt;}
.x8_c01378{left:241.280000pt;}
.x12_c01378{left:250.880000pt;}
.x19_c01378{left:270.080000pt;}
.x9_c01378{left:279.040000pt;}
.x13_c01378{left:288.000000pt;}
.x34_c01378{left:289.280000pt;}
.x4_c01378{left:297.600000pt;}
.x1a_c01378{left:307.200000pt;}
.x29_c01378{left:336.000000pt;}
.x5_c01378{left:346.240000pt;}
.xc_c01378{left:356.480000pt;}
.xd_c01378{left:364.800000pt;}
.x31_c01378{left:374.400000pt;}
.xa_c01378{left:383.360000pt;}
.x38_c01378{left:392.320000pt;}
.xe_c01378{left:393.600000pt;}
.x35_c01378{left:403.200000pt;}
.x32_c01378{left:421.760000pt;}
.xb_c01378{left:432.000000pt;}
.x39_c01378{left:440.320000pt;}
.xf_c01378{left:441.600000pt;}
.x36_c01378{left:449.920000pt;}
.x2c_c01378{left:478.720000pt;}
.x10_c01378{left:480.000000pt;}
.x3a_c01378{left:487.680000pt;}
.x2a_c01378{left:488.960000pt;}
.x37_c01378{left:498.560000pt;}
.x25_c01378{left:516.480000pt;}
.x2d_c01378{left:535.680000pt;}
.x1e_c01378{left:537.600000pt;}
.x3b_c01378{left:564.480000pt;}
.x23_c01378{left:565.760000pt;}
.x21_c01378{left:567.040000pt;}
.x3c_c01378{left:575.360000pt;}
.x24_c01378{left:593.920000pt;}
.x1d_c01378{left:595.200000pt;}
.x3d_c01378{left:603.520000pt;}
.x1f_c01378{left:604.800000pt;}
.x2b_c01378{left:622.720000pt;}
.x26_c01378{left:631.680000pt;}
.x20_c01378{left:633.600000pt;}
.x3e_c01378{left:640.640000pt;}
.x27_c01378{left:650.240000pt;}
.x22_c01378{left:651.520000pt;}
}





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

.ir_c01379:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01379{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01379;src:url('chunks/assets/font_e9cddd1c1e2fd47115dfb3ee.woff2')format("woff");}.ff1_c01379{font-family:ff1_c01379;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m45_c01379{transform:matrix(0.137525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137525,0.000000,0.000000,0.250000,0,0);}
.m9_c01379{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.me_c01379{transform:matrix(0.228925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228925,0.000000,0.000000,0.250000,0,0);}
.m47_c01379{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m4a_c01379{transform:matrix(0.237525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237525,0.000000,0.000000,0.250000,0,0);}
.mf_c01379{transform:matrix(0.239925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239925,0.000000,0.000000,0.250000,0,0);}
.m4_c01379{transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);}
.m2d_c01379{transform:matrix(0.245150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245150,0.000000,0.000000,0.250000,0,0);}
.m44_c01379{transform:matrix(0.247075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247075,0.000000,0.000000,0.250000,0,0);}
.m3a_c01379{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m24_c01379{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);}
.m38_c01379{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01379{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);}
.m25_c01379{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);}
.m2b_c01379{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.ma_c01379{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m2_c01379{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);}
.m27_c01379{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m19_c01379{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m22_c01379{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m16_c01379{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m7_c01379{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);}
.m35_c01379{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m36_c01379{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01379{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mb_c01379{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01379{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01379{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m39_c01379{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01379{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m6_c01379{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01379{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m18_c01379{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m12_c01379{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01379{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m0_c01379{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m11_c01379{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m23_c01379{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);}
.m32_c01379{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);}
.m37_c01379{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);}
.m49_c01379{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01379{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m14_c01379{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m3_c01379{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);}
.m3d_c01379{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_c01379{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m10_c01379{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);}
.m48_c01379{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);}
.m43_c01379{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m31_c01379{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.md_c01379{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);}
.m40_c01379{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m1_c01379{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);}
.m15_c01379{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01379{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m20_c01379{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);}
.m34_c01379{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m26_c01379{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01379{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.mc_c01379{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);}
.m42_c01379{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01379{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01379{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m5_c01379{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);}
.m41_c01379{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);}
.m17_c01379{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m33_c01379{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);}
.m29_c01379{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m30_c01379{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01379{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m28_c01379{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m21_c01379{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m46_c01379{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01379{transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);}
.m13_c01379{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01379{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.v1_c01379{vertical-align:-2.880000px;}
.v0_c01379{vertical-align:0.000000px;}
.ls0_c01379{letter-spacing:0.000000px;}
.sc__c01379{text-shadow:none;}
.sc0_c01379{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01379{-webkit-text-stroke:0px transparent;}
.sc0_c01379{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01379{word-spacing:0.000000px;}
.ws1_c01379{word-spacing:8.499876px;}
.ws0_c01379{word-spacing:36.725040px;}
.fc0_c01379{color:transparent;}
.fsc_c01379{font-size:34.560000px;}
.fsb_c01379{font-size:37.440000px;}
.fsa_c01379{font-size:40.320000px;}
.fsd_c01379{font-size:46.080000px;}
.fs8_c01379{font-size:48.960000px;}
.fs4_c01379{font-size:51.840000px;}
.fs9_c01379{font-size:54.720000px;}
.fs1_c01379{font-size:57.600000px;}
.fs5_c01379{font-size:60.480000px;}
.fs3_c01379{font-size:63.360000px;}
.fsf_c01379{font-size:66.240000px;}
.fs7_c01379{font-size:69.120000px;}
.fs6_c01379{font-size:72.000000px;}
.fs2_c01379{font-size:74.880000px;}
.fs0_c01379{font-size:77.760000px;}
.fse_c01379{font-size:89.280000px;}
.y0_c01379{bottom:0.000000px;}
.y66_c01379{bottom:60.480000px;}
.y65_c01379{bottom:61.200000px;}
.y64_c01379{bottom:63.360000px;}
.y6a_c01379{bottom:66.240000px;}
.y6b_c01379{bottom:66.960000px;}
.y6c_c01379{bottom:69.120000px;}
.y63_c01379{bottom:102.960000px;}
.y62_c01379{bottom:107.280000px;}
.y67_c01379{bottom:109.440000px;}
.y69_c01379{bottom:110.880000px;}
.y68_c01379{bottom:112.320000px;}
.y5c_c01379{bottom:146.880000px;}
.y5b_c01379{bottom:150.480000px;}
.y60_c01379{bottom:152.640000px;}
.y61_c01379{bottom:153.360000px;}
.y5f_c01379{bottom:156.240000px;}
.y5a_c01379{bottom:190.080000px;}
.y58_c01379{bottom:194.400000px;}
.y59_c01379{bottom:195.120000px;}
.y5d_c01379{bottom:195.840000px;}
.y5e_c01379{bottom:196.560000px;}
.y57_c01379{bottom:228.240000px;}
.y56_c01379{bottom:238.320000px;}
.y2b_c01379{bottom:288.720000px;}
.y2c_c01379{bottom:289.440000px;}
.y29_c01379{bottom:291.600000px;}
.y2a_c01379{bottom:293.040000px;}
.y42_c01379{bottom:294.480000px;}
.y43_c01379{bottom:296.640000px;}
.y26_c01379{bottom:331.200000px;}
.y25_c01379{bottom:334.800000px;}
.y27_c01379{bottom:336.240000px;}
.y40_c01379{bottom:336.960000px;}
.y28_c01379{bottom:337.680000px;}
.y3f_c01379{bottom:338.400000px;}
.y41_c01379{bottom:339.840000px;}
.y24_c01379{bottom:375.120000px;}
.y23_c01379{bottom:378.000000px;}
.y3d_c01379{bottom:379.440000px;}
.y3e_c01379{bottom:383.040000px;}
.y55_c01379{bottom:419.040000px;}
.y54_c01379{bottom:421.920000px;}
.y3b_c01379{bottom:422.640000px;}
.y3c_c01379{bottom:425.520000px;}
.y53_c01379{bottom:462.240000px;}
.y52_c01379{bottom:463.680000px;}
.y38_c01379{bottom:465.120000px;}
.y39_c01379{bottom:465.840000px;}
.y3a_c01379{bottom:468.720000px;}
.y51_c01379{bottom:506.160000px;}
.y50_c01379{bottom:506.880000px;}
.y4e_c01379{bottom:507.600000px;}
.y37_c01379{bottom:508.320000px;}
.y4f_c01379{bottom:509.040000px;}
.y4c_c01379{bottom:550.080000px;}
.y4b_c01379{bottom:550.800000px;}
.y4a_c01379{bottom:551.520000px;}
.y36_c01379{bottom:552.240000px;}
.y4d_c01379{bottom:552.960000px;}
.y35_c01379{bottom:553.680000px;}
.y47_c01379{bottom:591.840000px;}
.y49_c01379{bottom:592.560000px;}
.y32_c01379{bottom:594.720000px;}
.y48_c01379{bottom:595.440000px;}
.y34_c01379{bottom:596.160000px;}
.y33_c01379{bottom:597.600000px;}
.y46_c01379{bottom:635.040000px;}
.y31_c01379{bottom:637.920000px;}
.y30_c01379{bottom:638.640000px;}
.y45_c01379{bottom:678.240000px;}
.y2f_c01379{bottom:678.960000px;}
.y2d_c01379{bottom:679.680000px;}
.y2e_c01379{bottom:680.400000px;}
.y44_c01379{bottom:681.840000px;}
.y1f_c01379{bottom:721.440000px;}
.y21_c01379{bottom:722.880000px;}
.y1e_c01379{bottom:723.600000px;}
.y22_c01379{bottom:725.040000px;}
.y20_c01379{bottom:725.760000px;}
.y1c_c01379{bottom:766.080000px;}
.y1d_c01379{bottom:768.960000px;}
.y18_c01379{bottom:797.040000px;}
.y1b_c01379{bottom:798.480000px;}
.y17_c01379{bottom:799.920000px;}
.y19_c01379{bottom:800.640000px;}
.y1a_c01379{bottom:801.360000px;}
.y15_c01379{bottom:840.240000px;}
.y13_c01379{bottom:840.960000px;}
.y16_c01379{bottom:841.680000px;}
.y11_c01379{bottom:842.400000px;}
.y14_c01379{bottom:843.840000px;}
.y12_c01379{bottom:844.560000px;}
.ye_c01379{bottom:884.160000px;}
.yf_c01379{bottom:884.880000px;}
.yc_c01379{bottom:885.600000px;}
.y10_c01379{bottom:886.320000px;}
.yd_c01379{bottom:887.760000px;}
.yb_c01379{bottom:930.960000px;}
.ya_c01379{bottom:931.680000px;}
.y5_c01379{bottom:980.640000px;}
.y8_c01379{bottom:981.360000px;}
.y4_c01379{bottom:982.800000px;}
.y9_c01379{bottom:984.240000px;}
.y6_c01379{bottom:985.680000px;}
.y3_c01379{bottom:1024.560000px;}
.y7_c01379{bottom:1026.720000px;}
.y2_c01379{bottom:1027.440000px;}
.y1_c01379{bottom:1075.680000px;}
.he_c01379{height:31.100625px;}
.hd_c01379{height:33.692344px;}
.hc_c01379{height:36.284062px;}
.hf_c01379{height:41.467500px;}
.ha_c01379{height:44.059219px;}
.h6_c01379{height:46.650937px;}
.hb_c01379{height:49.242656px;}
.h3_c01379{height:51.834375px;}
.h7_c01379{height:54.426094px;}
.h5_c01379{height:57.017812px;}
.h11_c01379{height:59.609531px;}
.h9_c01379{height:62.201250px;}
.h8_c01379{height:64.792969px;}
.h4_c01379{height:67.384687px;}
.h2_c01379{height:69.976406px;}
.h10_c01379{height:80.343281px;}
.h1_c01379{height:1149.750000px;}
.h0_c01379{height:1149.840000px;}
.w1_c01379{width:783.000000px;}
.w0_c01379{width:783.360000px;}
.x0_c01379{left:0.000000px;}
.x2_c01379{left:55.440000px;}
.x10_c01379{left:56.880000px;}
.x1e_c01379{left:58.320000px;}
.x21_c01379{left:59.760000px;}
.x1d_c01379{left:89.280000px;}
.xe_c01379{left:109.440000px;}
.x3_c01379{left:119.520000px;}
.x4_c01379{left:120.960000px;}
.x22_c01379{left:144.720000px;}
.x1c_c01379{left:162.000000px;}
.xf_c01379{left:164.160000px;}
.x2c_c01379{left:165.600000px;}
.x2b_c01379{left:185.760000px;}
.x11_c01379{left:196.560000px;}
.x17_c01379{left:208.080000px;}
.x5_c01379{left:218.160000px;}
.x18_c01379{left:250.560000px;}
.x2d_c01379{left:252.720000px;}
.x29_c01379{left:262.080000px;}
.x6_c01379{left:272.160000px;}
.x13_c01379{left:282.960000px;}
.x19_c01379{left:293.760000px;}
.x1f_c01379{left:314.640000px;}
.x14_c01379{left:334.800000px;}
.x7_c01379{left:357.840000px;}
.x20_c01379{left:359.280000px;}
.x2a_c01379{left:401.040000px;}
.x15_c01379{left:422.640000px;}
.x1a_c01379{left:475.920000px;}
.x1b_c01379{left:518.400000px;}
.x24_c01379{left:583.200000px;}
.x8_c01379{left:584.640000px;}
.x12_c01379{left:604.800000px;}
.x27_c01379{left:615.600000px;}
.x25_c01379{left:637.200000px;}
.xa_c01379{left:638.640000px;}
.x1_c01379{left:659.520000px;}
.x26_c01379{left:669.600000px;}
.x16_c01379{left:671.040000px;}
.x28_c01379{left:679.680000px;}
.xb_c01379{left:681.120000px;}
.x23_c01379{left:703.440000px;}
.xc_c01379{left:713.520000px;}
.x9_c01379{left:714.960000px;}
.xd_c01379{left:733.680000px;}
@media print{
.v1_c01379{vertical-align:-2.560000pt;}
.v0_c01379{vertical-align:0.000000pt;}
.ls0_c01379{letter-spacing:0.000000pt;}
.ws2_c01379{word-spacing:0.000000pt;}
.ws1_c01379{word-spacing:7.555446pt;}
.ws0_c01379{word-spacing:32.644480pt;}
.fsc_c01379{font-size:30.720000pt;}
.fsb_c01379{font-size:33.280000pt;}
.fsa_c01379{font-size:35.840000pt;}
.fsd_c01379{font-size:40.960000pt;}
.fs8_c01379{font-size:43.520000pt;}
.fs4_c01379{font-size:46.080000pt;}
.fs9_c01379{font-size:48.640000pt;}
.fs1_c01379{font-size:51.200000pt;}
.fs5_c01379{font-size:53.760000pt;}
.fs3_c01379{font-size:56.320000pt;}
.fsf_c01379{font-size:58.880000pt;}
.fs7_c01379{font-size:61.440000pt;}
.fs6_c01379{font-size:64.000000pt;}
.fs2_c01379{font-size:66.560000pt;}
.fs0_c01379{font-size:69.120000pt;}
.fse_c01379{font-size:79.360000pt;}
.y0_c01379{bottom:0.000000pt;}
.y66_c01379{bottom:53.760000pt;}
.y65_c01379{bottom:54.400000pt;}
.y64_c01379{bottom:56.320000pt;}
.y6a_c01379{bottom:58.880000pt;}
.y6b_c01379{bottom:59.520000pt;}
.y6c_c01379{bottom:61.440000pt;}
.y63_c01379{bottom:91.520000pt;}
.y62_c01379{bottom:95.360000pt;}
.y67_c01379{bottom:97.280000pt;}
.y69_c01379{bottom:98.560000pt;}
.y68_c01379{bottom:99.840000pt;}
.y5c_c01379{bottom:130.560000pt;}
.y5b_c01379{bottom:133.760000pt;}
.y60_c01379{bottom:135.680000pt;}
.y61_c01379{bottom:136.320000pt;}
.y5f_c01379{bottom:138.880000pt;}
.y5a_c01379{bottom:168.960000pt;}
.y58_c01379{bottom:172.800000pt;}
.y59_c01379{bottom:173.440000pt;}
.y5d_c01379{bottom:174.080000pt;}
.y5e_c01379{bottom:174.720000pt;}
.y57_c01379{bottom:202.880000pt;}
.y56_c01379{bottom:211.840000pt;}
.y2b_c01379{bottom:256.640000pt;}
.y2c_c01379{bottom:257.280000pt;}
.y29_c01379{bottom:259.200000pt;}
.y2a_c01379{bottom:260.480000pt;}
.y42_c01379{bottom:261.760000pt;}
.y43_c01379{bottom:263.680000pt;}
.y26_c01379{bottom:294.400000pt;}
.y25_c01379{bottom:297.600000pt;}
.y27_c01379{bottom:298.880000pt;}
.y40_c01379{bottom:299.520000pt;}
.y28_c01379{bottom:300.160000pt;}
.y3f_c01379{bottom:300.800000pt;}
.y41_c01379{bottom:302.080000pt;}
.y24_c01379{bottom:333.440000pt;}
.y23_c01379{bottom:336.000000pt;}
.y3d_c01379{bottom:337.280000pt;}
.y3e_c01379{bottom:340.480000pt;}
.y55_c01379{bottom:372.480000pt;}
.y54_c01379{bottom:375.040000pt;}
.y3b_c01379{bottom:375.680000pt;}
.y3c_c01379{bottom:378.240000pt;}
.y53_c01379{bottom:410.880000pt;}
.y52_c01379{bottom:412.160000pt;}
.y38_c01379{bottom:413.440000pt;}
.y39_c01379{bottom:414.080000pt;}
.y3a_c01379{bottom:416.640000pt;}
.y51_c01379{bottom:449.920000pt;}
.y50_c01379{bottom:450.560000pt;}
.y4e_c01379{bottom:451.200000pt;}
.y37_c01379{bottom:451.840000pt;}
.y4f_c01379{bottom:452.480000pt;}
.y4c_c01379{bottom:488.960000pt;}
.y4b_c01379{bottom:489.600000pt;}
.y4a_c01379{bottom:490.240000pt;}
.y36_c01379{bottom:490.880000pt;}
.y4d_c01379{bottom:491.520000pt;}
.y35_c01379{bottom:492.160000pt;}
.y47_c01379{bottom:526.080000pt;}
.y49_c01379{bottom:526.720000pt;}
.y32_c01379{bottom:528.640000pt;}
.y48_c01379{bottom:529.280000pt;}
.y34_c01379{bottom:529.920000pt;}
.y33_c01379{bottom:531.200000pt;}
.y46_c01379{bottom:564.480000pt;}
.y31_c01379{bottom:567.040000pt;}
.y30_c01379{bottom:567.680000pt;}
.y45_c01379{bottom:602.880000pt;}
.y2f_c01379{bottom:603.520000pt;}
.y2d_c01379{bottom:604.160000pt;}
.y2e_c01379{bottom:604.800000pt;}
.y44_c01379{bottom:606.080000pt;}
.y1f_c01379{bottom:641.280000pt;}
.y21_c01379{bottom:642.560000pt;}
.y1e_c01379{bottom:643.200000pt;}
.y22_c01379{bottom:644.480000pt;}
.y20_c01379{bottom:645.120000pt;}
.y1c_c01379{bottom:680.960000pt;}
.y1d_c01379{bottom:683.520000pt;}
.y18_c01379{bottom:708.480000pt;}
.y1b_c01379{bottom:709.760000pt;}
.y17_c01379{bottom:711.040000pt;}
.y19_c01379{bottom:711.680000pt;}
.y1a_c01379{bottom:712.320000pt;}
.y15_c01379{bottom:746.880000pt;}
.y13_c01379{bottom:747.520000pt;}
.y16_c01379{bottom:748.160000pt;}
.y11_c01379{bottom:748.800000pt;}
.y14_c01379{bottom:750.080000pt;}
.y12_c01379{bottom:750.720000pt;}
.ye_c01379{bottom:785.920000pt;}
.yf_c01379{bottom:786.560000pt;}
.yc_c01379{bottom:787.200000pt;}
.y10_c01379{bottom:787.840000pt;}
.yd_c01379{bottom:789.120000pt;}
.yb_c01379{bottom:827.520000pt;}
.ya_c01379{bottom:828.160000pt;}
.y5_c01379{bottom:871.680000pt;}
.y8_c01379{bottom:872.320000pt;}
.y4_c01379{bottom:873.600000pt;}
.y9_c01379{bottom:874.880000pt;}
.y6_c01379{bottom:876.160000pt;}
.y3_c01379{bottom:910.720000pt;}
.y7_c01379{bottom:912.640000pt;}
.y2_c01379{bottom:913.280000pt;}
.y1_c01379{bottom:956.160000pt;}
.he_c01379{height:27.645000pt;}
.hd_c01379{height:29.948750pt;}
.hc_c01379{height:32.252500pt;}
.hf_c01379{height:36.860000pt;}
.ha_c01379{height:39.163750pt;}
.h6_c01379{height:41.467500pt;}
.hb_c01379{height:43.771250pt;}
.h3_c01379{height:46.075000pt;}
.h7_c01379{height:48.378750pt;}
.h5_c01379{height:50.682500pt;}
.h11_c01379{height:52.986250pt;}
.h9_c01379{height:55.290000pt;}
.h8_c01379{height:57.593750pt;}
.h4_c01379{height:59.897500pt;}
.h2_c01379{height:62.201250pt;}
.h10_c01379{height:71.416250pt;}
.h1_c01379{height:1022.000000pt;}
.h0_c01379{height:1022.080000pt;}
.w1_c01379{width:696.000000pt;}
.w0_c01379{width:696.320000pt;}
.x0_c01379{left:0.000000pt;}
.x2_c01379{left:49.280000pt;}
.x10_c01379{left:50.560000pt;}
.x1e_c01379{left:51.840000pt;}
.x21_c01379{left:53.120000pt;}
.x1d_c01379{left:79.360000pt;}
.xe_c01379{left:97.280000pt;}
.x3_c01379{left:106.240000pt;}
.x4_c01379{left:107.520000pt;}
.x22_c01379{left:128.640000pt;}
.x1c_c01379{left:144.000000pt;}
.xf_c01379{left:145.920000pt;}
.x2c_c01379{left:147.200000pt;}
.x2b_c01379{left:165.120000pt;}
.x11_c01379{left:174.720000pt;}
.x17_c01379{left:184.960000pt;}
.x5_c01379{left:193.920000pt;}
.x18_c01379{left:222.720000pt;}
.x2d_c01379{left:224.640000pt;}
.x29_c01379{left:232.960000pt;}
.x6_c01379{left:241.920000pt;}
.x13_c01379{left:251.520000pt;}
.x19_c01379{left:261.120000pt;}
.x1f_c01379{left:279.680000pt;}
.x14_c01379{left:297.600000pt;}
.x7_c01379{left:318.080000pt;}
.x20_c01379{left:319.360000pt;}
.x2a_c01379{left:356.480000pt;}
.x15_c01379{left:375.680000pt;}
.x1a_c01379{left:423.040000pt;}
.x1b_c01379{left:460.800000pt;}
.x24_c01379{left:518.400000pt;}
.x8_c01379{left:519.680000pt;}
.x12_c01379{left:537.600000pt;}
.x27_c01379{left:547.200000pt;}
.x25_c01379{left:566.400000pt;}
.xa_c01379{left:567.680000pt;}
.x1_c01379{left:586.240000pt;}
.x26_c01379{left:595.200000pt;}
.x16_c01379{left:596.480000pt;}
.x28_c01379{left:604.160000pt;}
.xb_c01379{left:605.440000pt;}
.x23_c01379{left:625.280000pt;}
.xc_c01379{left:634.240000pt;}
.x9_c01379{left:635.520000pt;}
.xd_c01379{left:652.160000pt;}
}





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

.ir_c01380:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01380{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01380;src:url('chunks/assets/font_7a306f89773e47d8060d5f18.woff2')format("woff");}.ff1_c01380{font-family:ff1_c01380;line-height:1.109863;font-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_c01380{transform:matrix(0.194025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194025,0.000000,0.000000,0.250000,0,0);}
.m42_c01380{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);}
.m3f_c01380{transform:matrix(0.241450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241450,0.000000,0.000000,0.250000,0,0);}
.m3e_c01380{transform:matrix(0.248200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248200,0.000000,0.000000,0.250000,0,0);}
.m19_c01380{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01380{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);}
.m43_c01380{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m44_c01380{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);}
.m24_c01380{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01380{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);}
.m34_c01380{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);}
.m32_c01380{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m14_c01380{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m12_c01380{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);}
.m46_c01380{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);}
.m35_c01380{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01380{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m7_c01380{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mb_c01380{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);}
.m33_c01380{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m20_c01380{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01380{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01380{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1_c01380{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m26_c01380{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m9_c01380{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m29_c01380{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m6_c01380{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m41_c01380{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.ma_c01380{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m13_c01380{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m45_c01380{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m36_c01380{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m39_c01380{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01380{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m25_c01380{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);}
.m2e_c01380{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_c01380{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m3_c01380{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01380{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);}
.m27_c01380{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01380{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);}
.m1e_c01380{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m5_c01380{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);}
.m30_c01380{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m37_c01380{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);}
.m1c_c01380{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m2_c01380{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m0_c01380{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);}
.m3d_c01380{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m23_c01380{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m48_c01380{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);}
.m31_c01380{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m10_c01380{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);}
.m8_c01380{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);}
.m1d_c01380{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m21_c01380{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);}
.m11_c01380{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01380{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);}
.m4d_c01380{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);}
.m4_c01380{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.mf_c01380{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);}
.m2b_c01380{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.md_c01380{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m18_c01380{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m49_c01380{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01380{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);}
.m16_c01380{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m40_c01380{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m22_c01380{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);}
.m1a_c01380{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.mc_c01380{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m17_c01380{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);}
.m28_c01380{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01380{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m38_c01380{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m15_c01380{transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);}
.m47_c01380{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.v0_c01380{vertical-align:0.000000px;}
.v1_c01380{vertical-align:11.520000px;}
.ls0_c01380{letter-spacing:0.000000px;}
.sc__c01380{text-shadow:none;}
.sc0_c01380{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01380{-webkit-text-stroke:0px transparent;}
.sc0_c01380{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01380{word-spacing:0.000000px;}
.ws0_c01380{word-spacing:13.140000px;}
.fc0_c01380{color:transparent;}
.fsd_c01380{font-size:34.560000px;}
.fsc_c01380{font-size:37.440000px;}
.fse_c01380{font-size:40.320000px;}
.fs7_c01380{font-size:43.200000px;}
.fsf_c01380{font-size:46.080000px;}
.fsb_c01380{font-size:48.960000px;}
.fs2_c01380{font-size:51.840000px;}
.fs3_c01380{font-size:54.720000px;}
.fs5_c01380{font-size:57.600000px;}
.fs0_c01380{font-size:60.480000px;}
.fs6_c01380{font-size:63.360000px;}
.fs8_c01380{font-size:66.240000px;}
.fs9_c01380{font-size:69.120000px;}
.fsa_c01380{font-size:72.000000px;}
.fs4_c01380{font-size:74.880000px;}
.fs1_c01380{font-size:77.760000px;}
.y0_c01380{bottom:0.000000px;}
.y85_c01380{bottom:12.960000px;}
.y86_c01380{bottom:17.280000px;}
.y84_c01380{bottom:18.000000px;}
.y89_c01380{bottom:19.440000px;}
.y87_c01380{bottom:20.880000px;}
.y88_c01380{bottom:21.600000px;}
.y8b_c01380{bottom:22.320000px;}
.y8a_c01380{bottom:23.040000px;}
.y7d_c01380{bottom:54.000000px;}
.y7e_c01380{bottom:56.160000px;}
.y7c_c01380{bottom:57.600000px;}
.y7f_c01380{bottom:59.040000px;}
.y80_c01380{bottom:60.480000px;}
.y81_c01380{bottom:63.360000px;}
.y83_c01380{bottom:64.080000px;}
.y82_c01380{bottom:64.800000px;}
.y75_c01380{bottom:97.920000px;}
.y76_c01380{bottom:100.800000px;}
.y74_c01380{bottom:101.520000px;}
.y77_c01380{bottom:102.240000px;}
.y79_c01380{bottom:102.960000px;}
.y78_c01380{bottom:104.400000px;}
.y7b_c01380{bottom:105.120000px;}
.y7a_c01380{bottom:105.840000px;}
.y62_c01380{bottom:141.120000px;}
.y61_c01380{bottom:144.000000px;}
.y6f_c01380{bottom:146.160000px;}
.y72_c01380{bottom:146.880000px;}
.y73_c01380{bottom:149.760000px;}
.y5d_c01380{bottom:185.040000px;}
.y5e_c01380{bottom:187.200000px;}
.y5c_c01380{bottom:187.920000px;}
.y5f_c01380{bottom:190.080000px;}
.y60_c01380{bottom:190.800000px;}
.y71_c01380{bottom:192.240000px;}
.y70_c01380{bottom:192.960000px;}
.y5b_c01380{bottom:227.520000px;}
.y5a_c01380{bottom:230.400000px;}
.y6d_c01380{bottom:233.280000px;}
.y6e_c01380{bottom:234.000000px;}
.y6c_c01380{bottom:234.720000px;}
.y59_c01380{bottom:271.440000px;}
.y58_c01380{bottom:274.320000px;}
.y6a_c01380{bottom:275.040000px;}
.y69_c01380{bottom:275.760000px;}
.y6b_c01380{bottom:276.480000px;}
.y57_c01380{bottom:313.920000px;}
.y56_c01380{bottom:316.800000px;}
.y67_c01380{bottom:318.960000px;}
.y66_c01380{bottom:319.680000px;}
.y68_c01380{bottom:321.840000px;}
.y54_c01380{bottom:357.840000px;}
.y55_c01380{bottom:358.560000px;}
.y53_c01380{bottom:360.720000px;}
.y64_c01380{bottom:361.440000px;}
.y65_c01380{bottom:362.880000px;}
.y52_c01380{bottom:400.320000px;}
.y50_c01380{bottom:403.200000px;}
.y63_c01380{bottom:404.640000px;}
.y51_c01380{bottom:405.360000px;}
.y4b_c01380{bottom:443.520000px;}
.y4a_c01380{bottom:445.680000px;}
.y4e_c01380{bottom:446.400000px;}
.y49_c01380{bottom:447.120000px;}
.y4c_c01380{bottom:448.560000px;}
.y4d_c01380{bottom:449.280000px;}
.y4f_c01380{bottom:451.440000px;}
.y34_c01380{bottom:487.440000px;}
.y36_c01380{bottom:488.880000px;}
.y32_c01380{bottom:489.600000px;}
.y33_c01380{bottom:491.040000px;}
.y35_c01380{bottom:491.760000px;}
.y47_c01380{bottom:493.200000px;}
.y48_c01380{bottom:493.920000px;}
.y2f_c01380{bottom:530.640000px;}
.y30_c01380{bottom:531.360000px;}
.y31_c01380{bottom:532.080000px;}
.y2d_c01380{bottom:532.800000px;}
.y45_c01380{bottom:533.520000px;}
.y44_c01380{bottom:534.240000px;}
.y46_c01380{bottom:534.960000px;}
.y2e_c01380{bottom:535.680000px;}
.y29_c01380{bottom:574.560000px;}
.y2c_c01380{bottom:575.280000px;}
.y28_c01380{bottom:576.000000px;}
.y2b_c01380{bottom:576.720000px;}
.y43_c01380{bottom:577.440000px;}
.y2a_c01380{bottom:578.160000px;}
.y27_c01380{bottom:617.760000px;}
.y25_c01380{bottom:619.920000px;}
.y42_c01380{bottom:620.640000px;}
.y26_c01380{bottom:622.080000px;}
.y21_c01380{bottom:661.680000px;}
.y41_c01380{bottom:662.400000px;}
.y22_c01380{bottom:663.120000px;}
.y20_c01380{bottom:663.840000px;}
.y23_c01380{bottom:664.560000px;}
.y24_c01380{bottom:665.280000px;}
.y1e_c01380{bottom:704.880000px;}
.y1d_c01380{bottom:706.320000px;}
.y40_c01380{bottom:707.040000px;}
.y1f_c01380{bottom:708.480000px;}
.y1c_c01380{bottom:740.160000px;}
.y19_c01380{bottom:748.800000px;}
.y18_c01380{bottom:749.520000px;}
.y1b_c01380{bottom:751.680000px;}
.y1a_c01380{bottom:752.400000px;}
.y17_c01380{bottom:790.560000px;}
.y3e_c01380{bottom:792.000000px;}
.y15_c01380{bottom:792.720000px;}
.y16_c01380{bottom:793.440000px;}
.y3f_c01380{bottom:794.160000px;}
.y14_c01380{bottom:834.480000px;}
.y12_c01380{bottom:835.200000px;}
.y13_c01380{bottom:838.080000px;}
.y11_c01380{bottom:876.960000px;}
.ye_c01380{bottom:877.680000px;}
.y3d_c01380{bottom:879.120000px;}
.y3c_c01380{bottom:879.840000px;}
.y10_c01380{bottom:881.280000px;}
.yf_c01380{bottom:882.000000px;}
.yb_c01380{bottom:920.160000px;}
.y3b_c01380{bottom:920.880000px;}
.ya_c01380{bottom:921.600000px;}
.yd_c01380{bottom:922.320000px;}
.yc_c01380{bottom:923.760000px;}
.y3a_c01380{bottom:963.360000px;}
.y9_c01380{bottom:964.080000px;}
.y8_c01380{bottom:964.800000px;}
.y7_c01380{bottom:1007.280000px;}
.y6_c01380{bottom:1008.000000px;}
.y39_c01380{bottom:1008.720000px;}
.y5_c01380{bottom:1048.320000px;}
.y38_c01380{bottom:1049.040000px;}
.y2_c01380{bottom:1049.760000px;}
.y4_c01380{bottom:1050.480000px;}
.y1_c01380{bottom:1051.920000px;}
.y3_c01380{bottom:1052.640000px;}
.y37_c01380{bottom:1095.120000px;}
.hf_c01380{height:31.100625px;}
.he_c01380{height:33.692344px;}
.h10_c01380{height:36.284062px;}
.h9_c01380{height:38.875781px;}
.h12_c01380{height:41.467500px;}
.hd_c01380{height:44.059219px;}
.h4_c01380{height:46.650937px;}
.h5_c01380{height:49.242656px;}
.h7_c01380{height:51.834375px;}
.h2_c01380{height:54.426094px;}
.h8_c01380{height:57.017812px;}
.ha_c01380{height:59.609531px;}
.hb_c01380{height:62.201250px;}
.h11_c01380{height:63.354375px;}
.hc_c01380{height:64.792969px;}
.h6_c01380{height:67.384687px;}
.h3_c01380{height:69.976406px;}
.h0_c01380{height:1175.040000px;}
.h1_c01380{height:1175.250000px;}
.w0_c01380{width:781.920000px;}
.w1_c01380{width:782.250000px;}
.x0_c01380{left:0.000000px;}
.x1_c01380{left:57.600000px;}
.x2f_c01380{left:59.040000px;}
.x8_c01380{left:119.520000px;}
.x2_c01380{left:120.960000px;}
.xe_c01380{left:196.560000px;}
.xc_c01380{left:205.920000px;}
.x9_c01380{left:207.360000px;}
.x34_c01380{left:217.440000px;}
.x19_c01380{left:239.040000px;}
.xd_c01380{left:250.560000px;}
.xf_c01380{left:259.920000px;}
.x14_c01380{left:261.360000px;}
.x16_c01380{left:272.160000px;}
.x1d_c01380{left:282.960000px;}
.x3_c01380{left:293.760000px;}
.x36_c01380{left:295.200000px;}
.x10_c01380{left:304.560000px;}
.x2a_c01380{left:315.360000px;}
.x17_c01380{left:326.160000px;}
.x1e_c01380{left:335.520000px;}
.x37_c01380{left:337.680000px;}
.x15_c01380{left:347.040000px;}
.xa_c01380{left:358.560000px;}
.x2b_c01380{left:369.360000px;}
.x4_c01380{left:378.720000px;}
.x1b_c01380{left:389.520000px;}
.x1a_c01380{left:390.960000px;}
.x11_c01380{left:401.760000px;}
.xb_c01380{left:412.560000px;}
.x5_c01380{left:423.360000px;}
.x1f_c01380{left:455.040000px;}
.x30_c01380{left:463.680000px;}
.x18_c01380{left:465.840000px;}
.x6_c01380{left:477.360000px;}
.x7_c01380{left:498.240000px;}
.x2c_c01380{left:507.600000px;}
.x1c_c01380{left:509.040000px;}
.x13_c01380{left:540.000000px;}
.x12_c01380{left:551.520000px;}
.x2d_c01380{left:560.160000px;}
.x38_c01380{left:573.840000px;}
.x33_c01380{left:583.920000px;}
.x2e_c01380{left:604.080000px;}
.x24_c01380{left:605.520000px;}
.x31_c01380{left:614.880000px;}
.x35_c01380{left:635.760000px;}
.x28_c01380{left:637.200000px;}
.x21_c01380{left:638.640000px;}
.x27_c01380{left:670.320000px;}
.x20_c01380{left:671.760000px;}
.x26_c01380{left:703.440000px;}
.x32_c01380{left:711.360000px;}
.x25_c01380{left:713.520000px;}
.x22_c01380{left:714.960000px;}
.x29_c01380{left:732.240000px;}
.x23_c01380{left:735.120000px;}
@media print{
.v0_c01380{vertical-align:0.000000pt;}
.v1_c01380{vertical-align:10.240000pt;}
.ls0_c01380{letter-spacing:0.000000pt;}
.ws1_c01380{word-spacing:0.000000pt;}
.ws0_c01380{word-spacing:11.680000pt;}
.fsd_c01380{font-size:30.720000pt;}
.fsc_c01380{font-size:33.280000pt;}
.fse_c01380{font-size:35.840000pt;}
.fs7_c01380{font-size:38.400000pt;}
.fsf_c01380{font-size:40.960000pt;}
.fsb_c01380{font-size:43.520000pt;}
.fs2_c01380{font-size:46.080000pt;}
.fs3_c01380{font-size:48.640000pt;}
.fs5_c01380{font-size:51.200000pt;}
.fs0_c01380{font-size:53.760000pt;}
.fs6_c01380{font-size:56.320000pt;}
.fs8_c01380{font-size:58.880000pt;}
.fs9_c01380{font-size:61.440000pt;}
.fsa_c01380{font-size:64.000000pt;}
.fs4_c01380{font-size:66.560000pt;}
.fs1_c01380{font-size:69.120000pt;}
.y0_c01380{bottom:0.000000pt;}
.y85_c01380{bottom:11.520000pt;}
.y86_c01380{bottom:15.360000pt;}
.y84_c01380{bottom:16.000000pt;}
.y89_c01380{bottom:17.280000pt;}
.y87_c01380{bottom:18.560000pt;}
.y88_c01380{bottom:19.200000pt;}
.y8b_c01380{bottom:19.840000pt;}
.y8a_c01380{bottom:20.480000pt;}
.y7d_c01380{bottom:48.000000pt;}
.y7e_c01380{bottom:49.920000pt;}
.y7c_c01380{bottom:51.200000pt;}
.y7f_c01380{bottom:52.480000pt;}
.y80_c01380{bottom:53.760000pt;}
.y81_c01380{bottom:56.320000pt;}
.y83_c01380{bottom:56.960000pt;}
.y82_c01380{bottom:57.600000pt;}
.y75_c01380{bottom:87.040000pt;}
.y76_c01380{bottom:89.600000pt;}
.y74_c01380{bottom:90.240000pt;}
.y77_c01380{bottom:90.880000pt;}
.y79_c01380{bottom:91.520000pt;}
.y78_c01380{bottom:92.800000pt;}
.y7b_c01380{bottom:93.440000pt;}
.y7a_c01380{bottom:94.080000pt;}
.y62_c01380{bottom:125.440000pt;}
.y61_c01380{bottom:128.000000pt;}
.y6f_c01380{bottom:129.920000pt;}
.y72_c01380{bottom:130.560000pt;}
.y73_c01380{bottom:133.120000pt;}
.y5d_c01380{bottom:164.480000pt;}
.y5e_c01380{bottom:166.400000pt;}
.y5c_c01380{bottom:167.040000pt;}
.y5f_c01380{bottom:168.960000pt;}
.y60_c01380{bottom:169.600000pt;}
.y71_c01380{bottom:170.880000pt;}
.y70_c01380{bottom:171.520000pt;}
.y5b_c01380{bottom:202.240000pt;}
.y5a_c01380{bottom:204.800000pt;}
.y6d_c01380{bottom:207.360000pt;}
.y6e_c01380{bottom:208.000000pt;}
.y6c_c01380{bottom:208.640000pt;}
.y59_c01380{bottom:241.280000pt;}
.y58_c01380{bottom:243.840000pt;}
.y6a_c01380{bottom:244.480000pt;}
.y69_c01380{bottom:245.120000pt;}
.y6b_c01380{bottom:245.760000pt;}
.y57_c01380{bottom:279.040000pt;}
.y56_c01380{bottom:281.600000pt;}
.y67_c01380{bottom:283.520000pt;}
.y66_c01380{bottom:284.160000pt;}
.y68_c01380{bottom:286.080000pt;}
.y54_c01380{bottom:318.080000pt;}
.y55_c01380{bottom:318.720000pt;}
.y53_c01380{bottom:320.640000pt;}
.y64_c01380{bottom:321.280000pt;}
.y65_c01380{bottom:322.560000pt;}
.y52_c01380{bottom:355.840000pt;}
.y50_c01380{bottom:358.400000pt;}
.y63_c01380{bottom:359.680000pt;}
.y51_c01380{bottom:360.320000pt;}
.y4b_c01380{bottom:394.240000pt;}
.y4a_c01380{bottom:396.160000pt;}
.y4e_c01380{bottom:396.800000pt;}
.y49_c01380{bottom:397.440000pt;}
.y4c_c01380{bottom:398.720000pt;}
.y4d_c01380{bottom:399.360000pt;}
.y4f_c01380{bottom:401.280000pt;}
.y34_c01380{bottom:433.280000pt;}
.y36_c01380{bottom:434.560000pt;}
.y32_c01380{bottom:435.200000pt;}
.y33_c01380{bottom:436.480000pt;}
.y35_c01380{bottom:437.120000pt;}
.y47_c01380{bottom:438.400000pt;}
.y48_c01380{bottom:439.040000pt;}
.y2f_c01380{bottom:471.680000pt;}
.y30_c01380{bottom:472.320000pt;}
.y31_c01380{bottom:472.960000pt;}
.y2d_c01380{bottom:473.600000pt;}
.y45_c01380{bottom:474.240000pt;}
.y44_c01380{bottom:474.880000pt;}
.y46_c01380{bottom:475.520000pt;}
.y2e_c01380{bottom:476.160000pt;}
.y29_c01380{bottom:510.720000pt;}
.y2c_c01380{bottom:511.360000pt;}
.y28_c01380{bottom:512.000000pt;}
.y2b_c01380{bottom:512.640000pt;}
.y43_c01380{bottom:513.280000pt;}
.y2a_c01380{bottom:513.920000pt;}
.y27_c01380{bottom:549.120000pt;}
.y25_c01380{bottom:551.040000pt;}
.y42_c01380{bottom:551.680000pt;}
.y26_c01380{bottom:552.960000pt;}
.y21_c01380{bottom:588.160000pt;}
.y41_c01380{bottom:588.800000pt;}
.y22_c01380{bottom:589.440000pt;}
.y20_c01380{bottom:590.080000pt;}
.y23_c01380{bottom:590.720000pt;}
.y24_c01380{bottom:591.360000pt;}
.y1e_c01380{bottom:626.560000pt;}
.y1d_c01380{bottom:627.840000pt;}
.y40_c01380{bottom:628.480000pt;}
.y1f_c01380{bottom:629.760000pt;}
.y1c_c01380{bottom:657.920000pt;}
.y19_c01380{bottom:665.600000pt;}
.y18_c01380{bottom:666.240000pt;}
.y1b_c01380{bottom:668.160000pt;}
.y1a_c01380{bottom:668.800000pt;}
.y17_c01380{bottom:702.720000pt;}
.y3e_c01380{bottom:704.000000pt;}
.y15_c01380{bottom:704.640000pt;}
.y16_c01380{bottom:705.280000pt;}
.y3f_c01380{bottom:705.920000pt;}
.y14_c01380{bottom:741.760000pt;}
.y12_c01380{bottom:742.400000pt;}
.y13_c01380{bottom:744.960000pt;}
.y11_c01380{bottom:779.520000pt;}
.ye_c01380{bottom:780.160000pt;}
.y3d_c01380{bottom:781.440000pt;}
.y3c_c01380{bottom:782.080000pt;}
.y10_c01380{bottom:783.360000pt;}
.yf_c01380{bottom:784.000000pt;}
.yb_c01380{bottom:817.920000pt;}
.y3b_c01380{bottom:818.560000pt;}
.ya_c01380{bottom:819.200000pt;}
.yd_c01380{bottom:819.840000pt;}
.yc_c01380{bottom:821.120000pt;}
.y3a_c01380{bottom:856.320000pt;}
.y9_c01380{bottom:856.960000pt;}
.y8_c01380{bottom:857.600000pt;}
.y7_c01380{bottom:895.360000pt;}
.y6_c01380{bottom:896.000000pt;}
.y39_c01380{bottom:896.640000pt;}
.y5_c01380{bottom:931.840000pt;}
.y38_c01380{bottom:932.480000pt;}
.y2_c01380{bottom:933.120000pt;}
.y4_c01380{bottom:933.760000pt;}
.y1_c01380{bottom:935.040000pt;}
.y3_c01380{bottom:935.680000pt;}
.y37_c01380{bottom:973.440000pt;}
.hf_c01380{height:27.645000pt;}
.he_c01380{height:29.948750pt;}
.h10_c01380{height:32.252500pt;}
.h9_c01380{height:34.556250pt;}
.h12_c01380{height:36.860000pt;}
.hd_c01380{height:39.163750pt;}
.h4_c01380{height:41.467500pt;}
.h5_c01380{height:43.771250pt;}
.h7_c01380{height:46.075000pt;}
.h2_c01380{height:48.378750pt;}
.h8_c01380{height:50.682500pt;}
.ha_c01380{height:52.986250pt;}
.hb_c01380{height:55.290000pt;}
.h11_c01380{height:56.315000pt;}
.hc_c01380{height:57.593750pt;}
.h6_c01380{height:59.897500pt;}
.h3_c01380{height:62.201250pt;}
.h0_c01380{height:1044.480000pt;}
.h1_c01380{height:1044.666667pt;}
.w0_c01380{width:695.040000pt;}
.w1_c01380{width:695.333333pt;}
.x0_c01380{left:0.000000pt;}
.x1_c01380{left:51.200000pt;}
.x2f_c01380{left:52.480000pt;}
.x8_c01380{left:106.240000pt;}
.x2_c01380{left:107.520000pt;}
.xe_c01380{left:174.720000pt;}
.xc_c01380{left:183.040000pt;}
.x9_c01380{left:184.320000pt;}
.x34_c01380{left:193.280000pt;}
.x19_c01380{left:212.480000pt;}
.xd_c01380{left:222.720000pt;}
.xf_c01380{left:231.040000pt;}
.x14_c01380{left:232.320000pt;}
.x16_c01380{left:241.920000pt;}
.x1d_c01380{left:251.520000pt;}
.x3_c01380{left:261.120000pt;}
.x36_c01380{left:262.400000pt;}
.x10_c01380{left:270.720000pt;}
.x2a_c01380{left:280.320000pt;}
.x17_c01380{left:289.920000pt;}
.x1e_c01380{left:298.240000pt;}
.x37_c01380{left:300.160000pt;}
.x15_c01380{left:308.480000pt;}
.xa_c01380{left:318.720000pt;}
.x2b_c01380{left:328.320000pt;}
.x4_c01380{left:336.640000pt;}
.x1b_c01380{left:346.240000pt;}
.x1a_c01380{left:347.520000pt;}
.x11_c01380{left:357.120000pt;}
.xb_c01380{left:366.720000pt;}
.x5_c01380{left:376.320000pt;}
.x1f_c01380{left:404.480000pt;}
.x30_c01380{left:412.160000pt;}
.x18_c01380{left:414.080000pt;}
.x6_c01380{left:424.320000pt;}
.x7_c01380{left:442.880000pt;}
.x2c_c01380{left:451.200000pt;}
.x1c_c01380{left:452.480000pt;}
.x13_c01380{left:480.000000pt;}
.x12_c01380{left:490.240000pt;}
.x2d_c01380{left:497.920000pt;}
.x38_c01380{left:510.080000pt;}
.x33_c01380{left:519.040000pt;}
.x2e_c01380{left:536.960000pt;}
.x24_c01380{left:538.240000pt;}
.x31_c01380{left:546.560000pt;}
.x35_c01380{left:565.120000pt;}
.x28_c01380{left:566.400000pt;}
.x21_c01380{left:567.680000pt;}
.x27_c01380{left:595.840000pt;}
.x20_c01380{left:597.120000pt;}
.x26_c01380{left:625.280000pt;}
.x32_c01380{left:632.320000pt;}
.x25_c01380{left:634.240000pt;}
.x22_c01380{left:635.520000pt;}
.x29_c01380{left:650.880000pt;}
.x23_c01380{left:653.440000pt;}
}





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

.ir_c01381:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01381{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01381;src:url('chunks/assets/font_c8a456f12df8d6cc8f952ac8.woff2')format("woff");}.ff1_c01381{font-family:ff1_c01381;line-height:1.109863;font-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_c01381{transform:matrix(0.194375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194375,0.000000,0.000000,0.250000,0,0);}
.m51_c01381{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);}
.m12_c01381{transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);}
.m50_c01381{transform:matrix(0.234225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234225,0.000000,0.000000,0.250000,0,0);}
.m21_c01381{transform:matrix(0.234725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234725,0.000000,0.000000,0.250000,0,0);}
.m3c_c01381{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m19_c01381{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_c01381{transform:matrix(0.242725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242725,0.000000,0.000000,0.250000,0,0);}
.m9_c01381{transform:matrix(0.243975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243975,0.000000,0.000000,0.250000,0,0);}
.m38_c01381{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m0_c01381{transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);}
.m6_c01381{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01381{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);}
.m23_c01381{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.me_c01381{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);}
.m3a_c01381{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);}
.m40_c01381{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);}
.m35_c01381{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_c01381{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m7_c01381{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m17_c01381{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);}
.m41_c01381{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.mb_c01381{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01381{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m26_c01381{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m22_c01381{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m33_c01381{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m13_c01381{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m14_c01381{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01381{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m24_c01381{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m42_c01381{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m2_c01381{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01381{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01381{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m31_c01381{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01381{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m8_c01381{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01381{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m43_c01381{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_c01381{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);}
.m36_c01381{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);}
.m47_c01381{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m4_c01381{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m25_c01381{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);}
.m48_c01381{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);}
.m37_c01381{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m20_c01381{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m11_c01381{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m15_c01381{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m29_c01381{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);}
.m39_c01381{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);}
.m5_c01381{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m46_c01381{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);}
.m18_c01381{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);}
.m27_c01381{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);}
.m30_c01381{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01381{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);}
.m2f_c01381{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01381{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m3_c01381{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01381{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m1_c01381{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m28_c01381{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01381{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01381{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01381{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m45_c01381{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);}
.ma_c01381{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01381{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01381{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01381{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01381{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);}
.m10_c01381{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m44_c01381{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);}
.m1e_c01381{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m32_c01381{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m49_c01381{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);}
.m3f_c01381{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m34_c01381{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01381{transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);}
.m4d_c01381{transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);}
.v3_c01381{vertical-align:-5.760000px;}
.v4_c01381{vertical-align:-2.880000px;}
.v0_c01381{vertical-align:0.000000px;}
.v2_c01381{vertical-align:2.880000px;}
.v1_c01381{vertical-align:5.760000px;}
.ls0_c01381{letter-spacing:0.000000px;}
.sc__c01381{text-shadow:none;}
.sc0_c01381{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01381{-webkit-text-stroke:0px transparent;}
.sc0_c01381{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c01381{word-spacing:0.000000px;}
.ws3_c01381{word-spacing:2.931600px;}
.ws2_c01381{word-spacing:9.474000px;}
.ws4_c01381{word-spacing:9.475200px;}
.ws1_c01381{word-spacing:13.140000px;}
.ws0_c01381{word-spacing:15.598771px;}
.ws5_c01381{word-spacing:15.600000px;}
.fc0_c01381{color:transparent;}
.fsf_c01381{font-size:17.280000px;}
.fs3_c01381{font-size:40.320000px;}
.fse_c01381{font-size:43.200000px;}
.fsd_c01381{font-size:46.080000px;}
.fsb_c01381{font-size:48.960000px;}
.fs1_c01381{font-size:51.840000px;}
.fs7_c01381{font-size:54.720000px;}
.fsa_c01381{font-size:57.600000px;}
.fs4_c01381{font-size:60.480000px;}
.fs2_c01381{font-size:63.360000px;}
.fsc_c01381{font-size:66.240000px;}
.fs6_c01381{font-size:69.120000px;}
.fs5_c01381{font-size:72.000000px;}
.fs0_c01381{font-size:74.880000px;}
.fs9_c01381{font-size:77.760000px;}
.fs8_c01381{font-size:86.400000px;}
.y0_c01381{bottom:0.000000px;}
.y71_c01381{bottom:34.560000px;}
.y6f_c01381{bottom:36.000000px;}
.y73_c01381{bottom:36.720000px;}
.y70_c01381{bottom:37.440000px;}
.y6d_c01381{bottom:38.160000px;}
.y72_c01381{bottom:38.880000px;}
.y79_c01381{bottom:39.600000px;}
.y74_c01381{bottom:40.320000px;}
.y75_c01381{bottom:41.040000px;}
.y6e_c01381{bottom:41.760000px;}
.y6c_c01381{bottom:76.320000px;}
.y6b_c01381{bottom:79.920000px;}
.y78_c01381{bottom:81.360000px;}
.y77_c01381{bottom:82.080000px;}
.y6a_c01381{bottom:122.400000px;}
.y69_c01381{bottom:123.120000px;}
.y68_c01381{bottom:123.840000px;}
.y64_c01381{bottom:153.360000px;}
.y66_c01381{bottom:154.080000px;}
.y63_c01381{bottom:155.520000px;}
.y65_c01381{bottom:156.240000px;}
.y67_c01381{bottom:157.680000px;}
.y76_c01381{bottom:158.400000px;}
.y5e_c01381{bottom:196.560000px;}
.y5c_c01381{bottom:198.720000px;}
.y5d_c01381{bottom:199.440000px;}
.y62_c01381{bottom:201.600000px;}
.y5b_c01381{bottom:240.480000px;}
.y5a_c01381{bottom:241.200000px;}
.y60_c01381{bottom:242.640000px;}
.y61_c01381{bottom:243.360000px;}
.y58_c01381{bottom:284.400000px;}
.y59_c01381{bottom:285.840000px;}
.y57_c01381{bottom:286.560000px;}
.y54_c01381{bottom:316.080000px;}
.y53_c01381{bottom:317.520000px;}
.y55_c01381{bottom:318.240000px;}
.y56_c01381{bottom:318.960000px;}
.y5f_c01381{bottom:321.120000px;}
.y3c_c01381{bottom:359.280000px;}
.y3b_c01381{bottom:360.000000px;}
.y3a_c01381{bottom:360.720000px;}
.y52_c01381{bottom:363.600000px;}
.y38_c01381{bottom:403.920000px;}
.y37_c01381{bottom:404.640000px;}
.y39_c01381{bottom:406.080000px;}
.y51_c01381{bottom:406.800000px;}
.y35_c01381{bottom:446.400000px;}
.y34_c01381{bottom:447.120000px;}
.y33_c01381{bottom:447.840000px;}
.y36_c01381{bottom:449.280000px;}
.y31_c01381{bottom:490.320000px;}
.y30_c01381{bottom:491.040000px;}
.y32_c01381{bottom:492.480000px;}
.y50_c01381{bottom:493.200000px;}
.y2f_c01381{bottom:532.080000px;}
.y2e_c01381{bottom:532.800000px;}
.y4d_c01381{bottom:533.520000px;}
.y2c_c01381{bottom:534.240000px;}
.y4f_c01381{bottom:534.960000px;}
.y2d_c01381{bottom:535.680000px;}
.y4e_c01381{bottom:536.400000px;}
.y2b_c01381{bottom:565.920000px;}
.y28_c01381{bottom:575.280000px;}
.y27_c01381{bottom:576.720000px;}
.y2a_c01381{bottom:577.440000px;}
.y29_c01381{bottom:578.880000px;}
.y4c_c01381{bottom:579.600000px;}
.y25_c01381{bottom:618.480000px;}
.y26_c01381{bottom:619.200000px;}
.y24_c01381{bottom:620.640000px;}
.y4b_c01381{bottom:621.360000px;}
.y22_c01381{bottom:660.960000px;}
.y23_c01381{bottom:661.680000px;}
.y48_c01381{bottom:662.400000px;}
.y21_c01381{bottom:663.120000px;}
.y49_c01381{bottom:664.560000px;}
.y4a_c01381{bottom:665.280000px;}
.y47_c01381{bottom:704.160000px;}
.y1e_c01381{bottom:704.880000px;}
.y20_c01381{bottom:705.600000px;}
.y1d_c01381{bottom:706.320000px;}
.y1f_c01381{bottom:708.480000px;}
.y1c_c01381{bottom:747.360000px;}
.y1a_c01381{bottom:748.080000px;}
.y45_c01381{bottom:748.800000px;}
.y19_c01381{bottom:749.520000px;}
.y46_c01381{bottom:750.240000px;}
.y44_c01381{bottom:750.960000px;}
.y1b_c01381{bottom:751.680000px;}
.y18_c01381{bottom:790.560000px;}
.y43_c01381{bottom:791.280000px;}
.y17_c01381{bottom:792.000000px;}
.y16_c01381{bottom:792.720000px;}
.y15_c01381{bottom:833.040000px;}
.y14_c01381{bottom:833.760000px;}
.y42_c01381{bottom:834.480000px;}
.y13_c01381{bottom:835.200000px;}
.y12_c01381{bottom:876.240000px;}
.y41_c01381{bottom:876.960000px;}
.y10_c01381{bottom:877.680000px;}
.yf_c01381{bottom:879.120000px;}
.y11_c01381{bottom:881.280000px;}
.yc_c01381{bottom:916.560000px;}
.ye_c01381{bottom:920.160000px;}
.yd_c01381{bottom:920.880000px;}
.y40_c01381{bottom:922.320000px;}
.y3f_c01381{bottom:962.640000px;}
.yb_c01381{bottom:963.360000px;}
.y9_c01381{bottom:964.080000px;}
.y8_c01381{bottom:965.520000px;}
.ya_c01381{bottom:966.960000px;}
.y3e_c01381{bottom:1006.560000px;}
.y7_c01381{bottom:1007.280000px;}
.y6_c01381{bottom:1008.000000px;}
.y5_c01381{bottom:1008.720000px;}
.y4_c01381{bottom:1049.040000px;}
.y1_c01381{bottom:1051.200000px;}
.y3_c01381{bottom:1052.640000px;}
.y2_c01381{bottom:1054.080000px;}
.y3d_c01381{bottom:1121.040000px;}
.h13_c01381{height:15.550313px;}
.h5_c01381{height:36.284062px;}
.h12_c01381{height:38.875781px;}
.h11_c01381{height:41.467500px;}
.hd_c01381{height:44.059219px;}
.h3_c01381{height:46.650937px;}
.h9_c01381{height:49.242656px;}
.hc_c01381{height:51.834375px;}
.h6_c01381{height:54.426094px;}
.h10_c01381{height:54.714375px;}
.h4_c01381{height:57.017812px;}
.hf_c01381{height:57.594375px;}
.he_c01381{height:59.609531px;}
.h8_c01381{height:62.201250px;}
.h7_c01381{height:64.792969px;}
.h2_c01381{height:67.384687px;}
.hb_c01381{height:69.976406px;}
.ha_c01381{height:77.751563px;}
.h0_c01381{height:1175.040000px;}
.h1_c01381{height:1175.250000px;}
.w0_c01381{width:781.200000px;}
.w1_c01381{width:781.500000px;}
.x0_c01381{left:0.000000px;}
.x10_c01381{left:55.440000px;}
.x6_c01381{left:56.880000px;}
.xf_c01381{left:66.960000px;}
.x38_c01381{left:96.480000px;}
.x9_c01381{left:119.520000px;}
.x1_c01381{left:120.960000px;}
.x36_c01381{left:162.000000px;}
.x2f_c01381{left:173.520000px;}
.x18_c01381{left:205.920000px;}
.x7_c01381{left:207.360000px;}
.x32_c01381{left:216.000000px;}
.x30_c01381{left:228.240000px;}
.x12_c01381{left:236.880000px;}
.x11_c01381{left:249.120000px;}
.x2_c01381{left:251.280000px;}
.x37_c01381{left:259.200000px;}
.x16_c01381{left:260.640000px;}
.x19_c01381{left:270.720000px;}
.xa_c01381{left:272.160000px;}
.x13_c01381{left:281.520000px;}
.x3_c01381{left:294.480000px;}
.xd_c01381{left:303.120000px;}
.x8_c01381{left:304.560000px;}
.x17_c01381{left:315.360000px;}
.x33_c01381{left:324.720000px;}
.xb_c01381{left:326.160000px;}
.xc_c01381{left:336.960000px;}
.xe_c01381{left:347.760000px;}
.x2d_c01381{left:367.200000px;}
.x39_c01381{left:379.440000px;}
.x2e_c01381{left:421.920000px;}
.x4_c01381{left:434.880000px;}
.x34_c01381{left:441.360000px;}
.x27_c01381{left:455.040000px;}
.x5_c01381{left:477.360000px;}
.x35_c01381{left:496.080000px;}
.x14_c01381{left:518.400000px;}
.x15_c01381{left:572.400000px;}
.x21_c01381{left:574.560000px;}
.x24_c01381{left:583.200000px;}
.x1b_c01381{left:585.360000px;}
.x28_c01381{left:603.360000px;}
.x22_c01381{left:604.800000px;}
.x2a_c01381{left:636.480000px;}
.x25_c01381{left:637.920000px;}
.x1c_c01381{left:639.360000px;}
.x1a_c01381{left:666.000000px;}
.x31_c01381{left:668.160000px;}
.x26_c01381{left:669.600000px;}
.x1f_c01381{left:671.760000px;}
.x2c_c01381{left:701.280000px;}
.x23_c01381{left:704.160000px;}
.x29_c01381{left:712.080000px;}
.x20_c01381{left:713.520000px;}
.x1d_c01381{left:714.960000px;}
.x2b_c01381{left:732.960000px;}
.x1e_c01381{left:734.400000px;}
@media print{
.v3_c01381{vertical-align:-5.120000pt;}
.v4_c01381{vertical-align:-2.560000pt;}
.v0_c01381{vertical-align:0.000000pt;}
.v2_c01381{vertical-align:2.560000pt;}
.v1_c01381{vertical-align:5.120000pt;}
.ls0_c01381{letter-spacing:0.000000pt;}
.ws6_c01381{word-spacing:0.000000pt;}
.ws3_c01381{word-spacing:2.605867pt;}
.ws2_c01381{word-spacing:8.421333pt;}
.ws4_c01381{word-spacing:8.422400pt;}
.ws1_c01381{word-spacing:11.680000pt;}
.ws0_c01381{word-spacing:13.865574pt;}
.ws5_c01381{word-spacing:13.866667pt;}
.fsf_c01381{font-size:15.360000pt;}
.fs3_c01381{font-size:35.840000pt;}
.fse_c01381{font-size:38.400000pt;}
.fsd_c01381{font-size:40.960000pt;}
.fsb_c01381{font-size:43.520000pt;}
.fs1_c01381{font-size:46.080000pt;}
.fs7_c01381{font-size:48.640000pt;}
.fsa_c01381{font-size:51.200000pt;}
.fs4_c01381{font-size:53.760000pt;}
.fs2_c01381{font-size:56.320000pt;}
.fsc_c01381{font-size:58.880000pt;}
.fs6_c01381{font-size:61.440000pt;}
.fs5_c01381{font-size:64.000000pt;}
.fs0_c01381{font-size:66.560000pt;}
.fs9_c01381{font-size:69.120000pt;}
.fs8_c01381{font-size:76.800000pt;}
.y0_c01381{bottom:0.000000pt;}
.y71_c01381{bottom:30.720000pt;}
.y6f_c01381{bottom:32.000000pt;}
.y73_c01381{bottom:32.640000pt;}
.y70_c01381{bottom:33.280000pt;}
.y6d_c01381{bottom:33.920000pt;}
.y72_c01381{bottom:34.560000pt;}
.y79_c01381{bottom:35.200000pt;}
.y74_c01381{bottom:35.840000pt;}
.y75_c01381{bottom:36.480000pt;}
.y6e_c01381{bottom:37.120000pt;}
.y6c_c01381{bottom:67.840000pt;}
.y6b_c01381{bottom:71.040000pt;}
.y78_c01381{bottom:72.320000pt;}
.y77_c01381{bottom:72.960000pt;}
.y6a_c01381{bottom:108.800000pt;}
.y69_c01381{bottom:109.440000pt;}
.y68_c01381{bottom:110.080000pt;}
.y64_c01381{bottom:136.320000pt;}
.y66_c01381{bottom:136.960000pt;}
.y63_c01381{bottom:138.240000pt;}
.y65_c01381{bottom:138.880000pt;}
.y67_c01381{bottom:140.160000pt;}
.y76_c01381{bottom:140.800000pt;}
.y5e_c01381{bottom:174.720000pt;}
.y5c_c01381{bottom:176.640000pt;}
.y5d_c01381{bottom:177.280000pt;}
.y62_c01381{bottom:179.200000pt;}
.y5b_c01381{bottom:213.760000pt;}
.y5a_c01381{bottom:214.400000pt;}
.y60_c01381{bottom:215.680000pt;}
.y61_c01381{bottom:216.320000pt;}
.y58_c01381{bottom:252.800000pt;}
.y59_c01381{bottom:254.080000pt;}
.y57_c01381{bottom:254.720000pt;}
.y54_c01381{bottom:280.960000pt;}
.y53_c01381{bottom:282.240000pt;}
.y55_c01381{bottom:282.880000pt;}
.y56_c01381{bottom:283.520000pt;}
.y5f_c01381{bottom:285.440000pt;}
.y3c_c01381{bottom:319.360000pt;}
.y3b_c01381{bottom:320.000000pt;}
.y3a_c01381{bottom:320.640000pt;}
.y52_c01381{bottom:323.200000pt;}
.y38_c01381{bottom:359.040000pt;}
.y37_c01381{bottom:359.680000pt;}
.y39_c01381{bottom:360.960000pt;}
.y51_c01381{bottom:361.600000pt;}
.y35_c01381{bottom:396.800000pt;}
.y34_c01381{bottom:397.440000pt;}
.y33_c01381{bottom:398.080000pt;}
.y36_c01381{bottom:399.360000pt;}
.y31_c01381{bottom:435.840000pt;}
.y30_c01381{bottom:436.480000pt;}
.y32_c01381{bottom:437.760000pt;}
.y50_c01381{bottom:438.400000pt;}
.y2f_c01381{bottom:472.960000pt;}
.y2e_c01381{bottom:473.600000pt;}
.y4d_c01381{bottom:474.240000pt;}
.y2c_c01381{bottom:474.880000pt;}
.y4f_c01381{bottom:475.520000pt;}
.y2d_c01381{bottom:476.160000pt;}
.y4e_c01381{bottom:476.800000pt;}
.y2b_c01381{bottom:503.040000pt;}
.y28_c01381{bottom:511.360000pt;}
.y27_c01381{bottom:512.640000pt;}
.y2a_c01381{bottom:513.280000pt;}
.y29_c01381{bottom:514.560000pt;}
.y4c_c01381{bottom:515.200000pt;}
.y25_c01381{bottom:549.760000pt;}
.y26_c01381{bottom:550.400000pt;}
.y24_c01381{bottom:551.680000pt;}
.y4b_c01381{bottom:552.320000pt;}
.y22_c01381{bottom:587.520000pt;}
.y23_c01381{bottom:588.160000pt;}
.y48_c01381{bottom:588.800000pt;}
.y21_c01381{bottom:589.440000pt;}
.y49_c01381{bottom:590.720000pt;}
.y4a_c01381{bottom:591.360000pt;}
.y47_c01381{bottom:625.920000pt;}
.y1e_c01381{bottom:626.560000pt;}
.y20_c01381{bottom:627.200000pt;}
.y1d_c01381{bottom:627.840000pt;}
.y1f_c01381{bottom:629.760000pt;}
.y1c_c01381{bottom:664.320000pt;}
.y1a_c01381{bottom:664.960000pt;}
.y45_c01381{bottom:665.600000pt;}
.y19_c01381{bottom:666.240000pt;}
.y46_c01381{bottom:666.880000pt;}
.y44_c01381{bottom:667.520000pt;}
.y1b_c01381{bottom:668.160000pt;}
.y18_c01381{bottom:702.720000pt;}
.y43_c01381{bottom:703.360000pt;}
.y17_c01381{bottom:704.000000pt;}
.y16_c01381{bottom:704.640000pt;}
.y15_c01381{bottom:740.480000pt;}
.y14_c01381{bottom:741.120000pt;}
.y42_c01381{bottom:741.760000pt;}
.y13_c01381{bottom:742.400000pt;}
.y12_c01381{bottom:778.880000pt;}
.y41_c01381{bottom:779.520000pt;}
.y10_c01381{bottom:780.160000pt;}
.yf_c01381{bottom:781.440000pt;}
.y11_c01381{bottom:783.360000pt;}
.yc_c01381{bottom:814.720000pt;}
.ye_c01381{bottom:817.920000pt;}
.yd_c01381{bottom:818.560000pt;}
.y40_c01381{bottom:819.840000pt;}
.y3f_c01381{bottom:855.680000pt;}
.yb_c01381{bottom:856.320000pt;}
.y9_c01381{bottom:856.960000pt;}
.y8_c01381{bottom:858.240000pt;}
.ya_c01381{bottom:859.520000pt;}
.y3e_c01381{bottom:894.720000pt;}
.y7_c01381{bottom:895.360000pt;}
.y6_c01381{bottom:896.000000pt;}
.y5_c01381{bottom:896.640000pt;}
.y4_c01381{bottom:932.480000pt;}
.y1_c01381{bottom:934.400000pt;}
.y3_c01381{bottom:935.680000pt;}
.y2_c01381{bottom:936.960000pt;}
.y3d_c01381{bottom:996.480000pt;}
.h13_c01381{height:13.822500pt;}
.h5_c01381{height:32.252500pt;}
.h12_c01381{height:34.556250pt;}
.h11_c01381{height:36.860000pt;}
.hd_c01381{height:39.163750pt;}
.h3_c01381{height:41.467500pt;}
.h9_c01381{height:43.771250pt;}
.hc_c01381{height:46.075000pt;}
.h6_c01381{height:48.378750pt;}
.h10_c01381{height:48.635000pt;}
.h4_c01381{height:50.682500pt;}
.hf_c01381{height:51.195000pt;}
.he_c01381{height:52.986250pt;}
.h8_c01381{height:55.290000pt;}
.h7_c01381{height:57.593750pt;}
.h2_c01381{height:59.897500pt;}
.hb_c01381{height:62.201250pt;}
.ha_c01381{height:69.112500pt;}
.h0_c01381{height:1044.480000pt;}
.h1_c01381{height:1044.666667pt;}
.w0_c01381{width:694.400000pt;}
.w1_c01381{width:694.666667pt;}
.x0_c01381{left:0.000000pt;}
.x10_c01381{left:49.280000pt;}
.x6_c01381{left:50.560000pt;}
.xf_c01381{left:59.520000pt;}
.x38_c01381{left:85.760000pt;}
.x9_c01381{left:106.240000pt;}
.x1_c01381{left:107.520000pt;}
.x36_c01381{left:144.000000pt;}
.x2f_c01381{left:154.240000pt;}
.x18_c01381{left:183.040000pt;}
.x7_c01381{left:184.320000pt;}
.x32_c01381{left:192.000000pt;}
.x30_c01381{left:202.880000pt;}
.x12_c01381{left:210.560000pt;}
.x11_c01381{left:221.440000pt;}
.x2_c01381{left:223.360000pt;}
.x37_c01381{left:230.400000pt;}
.x16_c01381{left:231.680000pt;}
.x19_c01381{left:240.640000pt;}
.xa_c01381{left:241.920000pt;}
.x13_c01381{left:250.240000pt;}
.x3_c01381{left:261.760000pt;}
.xd_c01381{left:269.440000pt;}
.x8_c01381{left:270.720000pt;}
.x17_c01381{left:280.320000pt;}
.x33_c01381{left:288.640000pt;}
.xb_c01381{left:289.920000pt;}
.xc_c01381{left:299.520000pt;}
.xe_c01381{left:309.120000pt;}
.x2d_c01381{left:326.400000pt;}
.x39_c01381{left:337.280000pt;}
.x2e_c01381{left:375.040000pt;}
.x4_c01381{left:386.560000pt;}
.x34_c01381{left:392.320000pt;}
.x27_c01381{left:404.480000pt;}
.x5_c01381{left:424.320000pt;}
.x35_c01381{left:440.960000pt;}
.x14_c01381{left:460.800000pt;}
.x15_c01381{left:508.800000pt;}
.x21_c01381{left:510.720000pt;}
.x24_c01381{left:518.400000pt;}
.x1b_c01381{left:520.320000pt;}
.x28_c01381{left:536.320000pt;}
.x22_c01381{left:537.600000pt;}
.x2a_c01381{left:565.760000pt;}
.x25_c01381{left:567.040000pt;}
.x1c_c01381{left:568.320000pt;}
.x1a_c01381{left:592.000000pt;}
.x31_c01381{left:593.920000pt;}
.x26_c01381{left:595.200000pt;}
.x1f_c01381{left:597.120000pt;}
.x2c_c01381{left:623.360000pt;}
.x23_c01381{left:625.920000pt;}
.x29_c01381{left:632.960000pt;}
.x20_c01381{left:634.240000pt;}
.x1d_c01381{left:635.520000pt;}
.x2b_c01381{left:651.520000pt;}
.x1e_c01381{left:652.800000pt;}
}





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

.ir_c01382:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01382{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01382;src:url('chunks/assets/font_7dee2a3aec1b21714a342085.woff2')format("woff");}.ff1_c01382{font-family:ff1_c01382;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m49_c01382{transform:matrix(0.217275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217275,0.000000,0.000000,0.250000,0,0);}
.m2f_c01382{transform:matrix(0.229950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229950,0.000000,0.000000,0.250000,0,0);}
.m5_c01382{transform:matrix(0.247125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247125,0.000000,0.000000,0.250000,0,0);}
.m29_c01382{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m47_c01382{transform:matrix(0.247575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247575,0.000000,0.000000,0.250000,0,0);}
.m23_c01382{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);}
.m38_c01382{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);}
.m40_c01382{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);}
.m44_c01382{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m18_c01382{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m9_c01382{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);}
.m4d_c01382{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);}
.m28_c01382{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);}
.m32_c01382{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);}
.m31_c01382{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m21_c01382{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_c01382{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);}
.m1e_c01382{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_c01382{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);}
.m3a_c01382{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m24_c01382{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.ma_c01382{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.md_c01382{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01382{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m48_c01382{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01382{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01382{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01382{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m25_c01382{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m13_c01382{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m16_c01382{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m17_c01382{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01382{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m7_c01382{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m19_c01382{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m0_c01382{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m2_c01382{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m8_c01382{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);}
.m36_c01382{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);}
.m41_c01382{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m35_c01382{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);}
.m2d_c01382{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01382{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m10_c01382{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01382{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);}
.m27_c01382{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1_c01382{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);}
.m3e_c01382{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m20_c01382{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);}
.m42_c01382{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01382{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);}
.mc_c01382{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);}
.m4_c01382{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01382{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);}
.m45_c01382{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m43_c01382{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01382{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m46_c01382{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);}
.m33_c01382{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.mf_c01382{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01382{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);}
.m39_c01382{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m34_c01382{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01382{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m15_c01382{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m14_c01382{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);}
.mb_c01382{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m6_c01382{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);}
.m30_c01382{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m3_c01382{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);}
.m1a_c01382{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01382{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01382{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);}
.m37_c01382{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m26_c01382{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.me_c01382{transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);}
.m12_c01382{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m22_c01382{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.v1_c01382{vertical-align:-2.880000px;}
.v0_c01382{vertical-align:0.000000px;}
.v2_c01382{vertical-align:5.760000px;}
.ls0_c01382{letter-spacing:0.000000px;}
.sc__c01382{text-shadow:none;}
.sc0_c01382{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01382{-webkit-text-stroke:0px transparent;}
.sc0_c01382{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01382{word-spacing:0.000000px;}
.ws0_c01382{word-spacing:8.131200px;}
.ws1_c01382{word-spacing:43.053600px;}
.ws2_c01382{word-spacing:53.884480px;}
.fc0_c01382{color:transparent;}
.fs7_c01382{font-size:34.560000px;}
.fse_c01382{font-size:37.440000px;}
.fsa_c01382{font-size:40.320000px;}
.fsf_c01382{font-size:43.200000px;}
.fs6_c01382{font-size:46.080000px;}
.fs2_c01382{font-size:48.960000px;}
.fs3_c01382{font-size:51.840000px;}
.fs8_c01382{font-size:54.720000px;}
.fs5_c01382{font-size:57.600000px;}
.fs1_c01382{font-size:60.480000px;}
.fsb_c01382{font-size:63.360000px;}
.fsd_c01382{font-size:66.240000px;}
.fs4_c01382{font-size:69.120000px;}
.fs9_c01382{font-size:72.000000px;}
.fsc_c01382{font-size:74.880000px;}
.fs0_c01382{font-size:77.760000px;}
.fs10_c01382{font-size:97.920000px;}
.y0_c01382{bottom:0.000000px;}
.y72_c01382{bottom:72.720000px;}
.y75_c01382{bottom:74.160000px;}
.y73_c01382{bottom:76.320000px;}
.y71_c01382{bottom:77.760000px;}
.y74_c01382{bottom:78.480000px;}
.y76_c01382{bottom:79.920000px;}
.y77_c01382{bottom:82.080000px;}
.y6a_c01382{bottom:118.080000px;}
.y6b_c01382{bottom:118.800000px;}
.y6d_c01382{bottom:119.520000px;}
.y6c_c01382{bottom:122.400000px;}
.y6e_c01382{bottom:123.120000px;}
.y69_c01382{bottom:144.720000px;}
.y67_c01382{bottom:149.760000px;}
.y68_c01382{bottom:151.920000px;}
.y66_c01382{bottom:154.080000px;}
.y70_c01382{bottom:155.520000px;}
.y6f_c01382{bottom:157.680000px;}
.y62_c01382{bottom:192.960000px;}
.y63_c01382{bottom:193.680000px;}
.y61_c01382{bottom:196.560000px;}
.y65_c01382{bottom:197.280000px;}
.y64_c01382{bottom:198.720000px;}
.y5f_c01382{bottom:238.320000px;}
.y5d_c01382{bottom:240.480000px;}
.y60_c01382{bottom:241.200000px;}
.y5e_c01382{bottom:241.920000px;}
.y47_c01382{bottom:290.880000px;}
.y48_c01382{bottom:292.320000px;}
.y4a_c01382{bottom:293.040000px;}
.y46_c01382{bottom:293.760000px;}
.y49_c01382{bottom:295.200000px;}
.y4b_c01382{bottom:295.920000px;}
.y4d_c01382{bottom:296.640000px;}
.y4c_c01382{bottom:297.360000px;}
.y41_c01382{bottom:334.080000px;}
.y42_c01382{bottom:336.240000px;}
.y40_c01382{bottom:336.960000px;}
.y44_c01382{bottom:337.680000px;}
.y45_c01382{bottom:338.400000px;}
.y43_c01382{bottom:339.120000px;}
.y3d_c01382{bottom:377.280000px;}
.y3f_c01382{bottom:378.720000px;}
.y3e_c01382{bottom:379.440000px;}
.y3c_c01382{bottom:380.880000px;}
.y55_c01382{bottom:381.600000px;}
.y56_c01382{bottom:383.040000px;}
.y3b_c01382{bottom:420.480000px;}
.y39_c01382{bottom:423.360000px;}
.y53_c01382{bottom:424.080000px;}
.y3a_c01382{bottom:424.800000px;}
.y54_c01382{bottom:426.240000px;}
.y36_c01382{bottom:463.680000px;}
.y37_c01382{bottom:465.120000px;}
.y52_c01382{bottom:466.560000px;}
.y35_c01382{bottom:467.280000px;}
.y38_c01382{bottom:468.000000px;}
.y5b_c01382{bottom:506.880000px;}
.y5c_c01382{bottom:507.600000px;}
.y50_c01382{bottom:509.760000px;}
.y51_c01382{bottom:511.920000px;}
.y58_c01382{bottom:550.080000px;}
.y5a_c01382{bottom:550.800000px;}
.y57_c01382{bottom:552.240000px;}
.y4f_c01382{bottom:552.960000px;}
.y59_c01382{bottom:554.400000px;}
.y4e_c01382{bottom:555.120000px;}
.y30_c01382{bottom:593.280000px;}
.y34_c01382{bottom:594.000000px;}
.y32_c01382{bottom:595.440000px;}
.y2f_c01382{bottom:596.160000px;}
.y33_c01382{bottom:597.600000px;}
.y31_c01382{bottom:598.320000px;}
.y2d_c01382{bottom:639.360000px;}
.y2e_c01382{bottom:640.800000px;}
.y2a_c01382{bottom:669.600000px;}
.y28_c01382{bottom:670.320000px;}
.y29_c01382{bottom:671.040000px;}
.y26_c01382{bottom:671.760000px;}
.y2b_c01382{bottom:672.480000px;}
.y2c_c01382{bottom:673.200000px;}
.y27_c01382{bottom:673.920000px;}
.y24_c01382{bottom:713.520000px;}
.y25_c01382{bottom:714.240000px;}
.y23_c01382{bottom:714.960000px;}
.y20_c01382{bottom:756.720000px;}
.y21_c01382{bottom:757.440000px;}
.y1f_c01382{bottom:758.160000px;}
.y22_c01382{bottom:759.600000px;}
.y1d_c01382{bottom:800.640000px;}
.y1e_c01382{bottom:801.360000px;}
.y1b_c01382{bottom:802.080000px;}
.y1c_c01382{bottom:803.520000px;}
.y1a_c01382{bottom:843.840000px;}
.y19_c01382{bottom:845.280000px;}
.y16_c01382{bottom:874.800000px;}
.y17_c01382{bottom:875.520000px;}
.y14_c01382{bottom:876.960000px;}
.y18_c01382{bottom:877.680000px;}
.y15_c01382{bottom:879.840000px;}
.y13_c01382{bottom:919.440000px;}
.yf_c01382{bottom:920.160000px;}
.y10_c01382{bottom:920.880000px;}
.y11_c01382{bottom:921.600000px;}
.y12_c01382{bottom:922.320000px;}
.yd_c01382{bottom:961.920000px;}
.ye_c01382{bottom:962.640000px;}
.ya_c01382{bottom:963.360000px;}
.yc_c01382{bottom:964.080000px;}
.yb_c01382{bottom:964.800000px;}
.y9_c01382{bottom:1006.560000px;}
.y8_c01382{bottom:1008.720000px;}
.y6_c01382{bottom:1036.800000px;}
.y7_c01382{bottom:1037.520000px;}
.y2_c01382{bottom:1038.960000px;}
.y3_c01382{bottom:1039.680000px;}
.y4_c01382{bottom:1040.400000px;}
.y5_c01382{bottom:1041.120000px;}
.y1_c01382{bottom:1093.680000px;}
.h8_c01382{height:31.100625px;}
.hf_c01382{height:33.692344px;}
.hb_c01382{height:36.284062px;}
.h11_c01382{height:38.875781px;}
.h7_c01382{height:41.467500px;}
.h3_c01382{height:44.059219px;}
.h4_c01382{height:46.650937px;}
.h9_c01382{height:49.242656px;}
.h6_c01382{height:51.834375px;}
.h2_c01382{height:54.426094px;}
.h10_c01382{height:55.002656px;}
.hc_c01382{height:57.017812px;}
.he_c01382{height:59.609531px;}
.h5_c01382{height:62.201250px;}
.ha_c01382{height:64.792969px;}
.hd_c01382{height:67.384687px;}
.h1_c01382{height:69.976406px;}
.h12_c01382{height:88.118437px;}
.h0_c01382{height:1152.000000px;}
.w1_c01382{width:783.000000px;}
.w0_c01382{width:783.360000px;}
.x0_c01382{left:0.000000px;}
.x2_c01382{left:58.320000px;}
.x25_c01382{left:59.760000px;}
.x41_c01382{left:61.200000px;}
.xc_c01382{left:91.440000px;}
.x35_c01382{left:110.160000px;}
.x13_c01382{left:120.960000px;}
.x3_c01382{left:122.400000px;}
.xb_c01382{left:164.880000px;}
.x3e_c01382{left:187.200000px;}
.x36_c01382{left:188.640000px;}
.x14_c01382{left:198.000000px;}
.xd_c01382{left:208.080000px;}
.x33_c01382{left:217.440000px;}
.x4_c01382{left:218.880000px;}
.x1e_c01382{left:220.320000px;}
.x3f_c01382{left:241.200000px;}
.x2c_c01382{left:250.560000px;}
.x15_c01382{left:252.720000px;}
.x34_c01382{left:262.080000px;}
.x24_c01382{left:263.520000px;}
.x5_c01382{left:272.880000px;}
.x26_c01382{left:284.400000px;}
.x2d_c01382{left:295.920000px;}
.x3b_c01382{left:306.000000px;}
.x23_c01382{left:315.360000px;}
.x1f_c01382{left:316.800000px;}
.x6_c01382{left:326.880000px;}
.x37_c01382{left:328.320000px;}
.x27_c01382{left:336.960000px;}
.x10_c01382{left:338.400000px;}
.x38_c01382{left:358.560000px;}
.x3c_c01382{left:360.000000px;}
.x1d_c01382{left:370.080000px;}
.x28_c01382{left:382.320000px;}
.x40_c01382{left:390.960000px;}
.x11_c01382{left:392.400000px;}
.x39_c01382{left:412.560000px;}
.x3d_c01382{left:414.000000px;}
.x7_c01382{left:423.360000px;}
.x2e_c01382{left:434.880000px;}
.x20_c01382{left:444.240000px;}
.x29_c01382{left:464.400000px;}
.x8_c01382{left:477.360000px;}
.x21_c01382{left:488.160000px;}
.x16_c01382{left:509.760000px;}
.x22_c01382{left:542.160000px;}
.x2a_c01382{left:562.320000px;}
.x17_c01382{left:563.760000px;}
.x3a_c01382{left:583.200000px;}
.x31_c01382{left:584.640000px;}
.x2f_c01382{left:604.800000px;}
.x19_c01382{left:606.960000px;}
.x18_c01382{left:637.920000px;}
.x9_c01382{left:640.080000px;}
.x1a_c01382{left:662.400000px;}
.x2b_c01382{left:671.040000px;}
.xe_c01382{left:672.480000px;}
.x30_c01382{left:680.400000px;}
.x12_c01382{left:682.560000px;}
.x1_c01382{left:694.080000px;}
.x1b_c01382{left:713.520000px;}
.xa_c01382{left:714.960000px;}
.x32_c01382{left:732.960000px;}
.x1c_c01382{left:734.400000px;}
.xf_c01382{left:735.840000px;}
@media print{
.v1_c01382{vertical-align:-2.560000pt;}
.v0_c01382{vertical-align:0.000000pt;}
.v2_c01382{vertical-align:5.120000pt;}
.ls0_c01382{letter-spacing:0.000000pt;}
.ws3_c01382{word-spacing:0.000000pt;}
.ws0_c01382{word-spacing:7.227733pt;}
.ws1_c01382{word-spacing:38.269867pt;}
.ws2_c01382{word-spacing:47.897316pt;}
.fs7_c01382{font-size:30.720000pt;}
.fse_c01382{font-size:33.280000pt;}
.fsa_c01382{font-size:35.840000pt;}
.fsf_c01382{font-size:38.400000pt;}
.fs6_c01382{font-size:40.960000pt;}
.fs2_c01382{font-size:43.520000pt;}
.fs3_c01382{font-size:46.080000pt;}
.fs8_c01382{font-size:48.640000pt;}
.fs5_c01382{font-size:51.200000pt;}
.fs1_c01382{font-size:53.760000pt;}
.fsb_c01382{font-size:56.320000pt;}
.fsd_c01382{font-size:58.880000pt;}
.fs4_c01382{font-size:61.440000pt;}
.fs9_c01382{font-size:64.000000pt;}
.fsc_c01382{font-size:66.560000pt;}
.fs0_c01382{font-size:69.120000pt;}
.fs10_c01382{font-size:87.040000pt;}
.y0_c01382{bottom:0.000000pt;}
.y72_c01382{bottom:64.640000pt;}
.y75_c01382{bottom:65.920000pt;}
.y73_c01382{bottom:67.840000pt;}
.y71_c01382{bottom:69.120000pt;}
.y74_c01382{bottom:69.760000pt;}
.y76_c01382{bottom:71.040000pt;}
.y77_c01382{bottom:72.960000pt;}
.y6a_c01382{bottom:104.960000pt;}
.y6b_c01382{bottom:105.600000pt;}
.y6d_c01382{bottom:106.240000pt;}
.y6c_c01382{bottom:108.800000pt;}
.y6e_c01382{bottom:109.440000pt;}
.y69_c01382{bottom:128.640000pt;}
.y67_c01382{bottom:133.120000pt;}
.y68_c01382{bottom:135.040000pt;}
.y66_c01382{bottom:136.960000pt;}
.y70_c01382{bottom:138.240000pt;}
.y6f_c01382{bottom:140.160000pt;}
.y62_c01382{bottom:171.520000pt;}
.y63_c01382{bottom:172.160000pt;}
.y61_c01382{bottom:174.720000pt;}
.y65_c01382{bottom:175.360000pt;}
.y64_c01382{bottom:176.640000pt;}
.y5f_c01382{bottom:211.840000pt;}
.y5d_c01382{bottom:213.760000pt;}
.y60_c01382{bottom:214.400000pt;}
.y5e_c01382{bottom:215.040000pt;}
.y47_c01382{bottom:258.560000pt;}
.y48_c01382{bottom:259.840000pt;}
.y4a_c01382{bottom:260.480000pt;}
.y46_c01382{bottom:261.120000pt;}
.y49_c01382{bottom:262.400000pt;}
.y4b_c01382{bottom:263.040000pt;}
.y4d_c01382{bottom:263.680000pt;}
.y4c_c01382{bottom:264.320000pt;}
.y41_c01382{bottom:296.960000pt;}
.y42_c01382{bottom:298.880000pt;}
.y40_c01382{bottom:299.520000pt;}
.y44_c01382{bottom:300.160000pt;}
.y45_c01382{bottom:300.800000pt;}
.y43_c01382{bottom:301.440000pt;}
.y3d_c01382{bottom:335.360000pt;}
.y3f_c01382{bottom:336.640000pt;}
.y3e_c01382{bottom:337.280000pt;}
.y3c_c01382{bottom:338.560000pt;}
.y55_c01382{bottom:339.200000pt;}
.y56_c01382{bottom:340.480000pt;}
.y3b_c01382{bottom:373.760000pt;}
.y39_c01382{bottom:376.320000pt;}
.y53_c01382{bottom:376.960000pt;}
.y3a_c01382{bottom:377.600000pt;}
.y54_c01382{bottom:378.880000pt;}
.y36_c01382{bottom:412.160000pt;}
.y37_c01382{bottom:413.440000pt;}
.y52_c01382{bottom:414.720000pt;}
.y35_c01382{bottom:415.360000pt;}
.y38_c01382{bottom:416.000000pt;}
.y5b_c01382{bottom:450.560000pt;}
.y5c_c01382{bottom:451.200000pt;}
.y50_c01382{bottom:453.120000pt;}
.y51_c01382{bottom:455.040000pt;}
.y58_c01382{bottom:488.960000pt;}
.y5a_c01382{bottom:489.600000pt;}
.y57_c01382{bottom:490.880000pt;}
.y4f_c01382{bottom:491.520000pt;}
.y59_c01382{bottom:492.800000pt;}
.y4e_c01382{bottom:493.440000pt;}
.y30_c01382{bottom:527.360000pt;}
.y34_c01382{bottom:528.000000pt;}
.y32_c01382{bottom:529.280000pt;}
.y2f_c01382{bottom:529.920000pt;}
.y33_c01382{bottom:531.200000pt;}
.y31_c01382{bottom:531.840000pt;}
.y2d_c01382{bottom:568.320000pt;}
.y2e_c01382{bottom:569.600000pt;}
.y2a_c01382{bottom:595.200000pt;}
.y28_c01382{bottom:595.840000pt;}
.y29_c01382{bottom:596.480000pt;}
.y26_c01382{bottom:597.120000pt;}
.y2b_c01382{bottom:597.760000pt;}
.y2c_c01382{bottom:598.400000pt;}
.y27_c01382{bottom:599.040000pt;}
.y24_c01382{bottom:634.240000pt;}
.y25_c01382{bottom:634.880000pt;}
.y23_c01382{bottom:635.520000pt;}
.y20_c01382{bottom:672.640000pt;}
.y21_c01382{bottom:673.280000pt;}
.y1f_c01382{bottom:673.920000pt;}
.y22_c01382{bottom:675.200000pt;}
.y1d_c01382{bottom:711.680000pt;}
.y1e_c01382{bottom:712.320000pt;}
.y1b_c01382{bottom:712.960000pt;}
.y1c_c01382{bottom:714.240000pt;}
.y1a_c01382{bottom:750.080000pt;}
.y19_c01382{bottom:751.360000pt;}
.y16_c01382{bottom:777.600000pt;}
.y17_c01382{bottom:778.240000pt;}
.y14_c01382{bottom:779.520000pt;}
.y18_c01382{bottom:780.160000pt;}
.y15_c01382{bottom:782.080000pt;}
.y13_c01382{bottom:817.280000pt;}
.yf_c01382{bottom:817.920000pt;}
.y10_c01382{bottom:818.560000pt;}
.y11_c01382{bottom:819.200000pt;}
.y12_c01382{bottom:819.840000pt;}
.yd_c01382{bottom:855.040000pt;}
.ye_c01382{bottom:855.680000pt;}
.ya_c01382{bottom:856.320000pt;}
.yc_c01382{bottom:856.960000pt;}
.yb_c01382{bottom:857.600000pt;}
.y9_c01382{bottom:894.720000pt;}
.y8_c01382{bottom:896.640000pt;}
.y6_c01382{bottom:921.600000pt;}
.y7_c01382{bottom:922.240000pt;}
.y2_c01382{bottom:923.520000pt;}
.y3_c01382{bottom:924.160000pt;}
.y4_c01382{bottom:924.800000pt;}
.y5_c01382{bottom:925.440000pt;}
.y1_c01382{bottom:972.160000pt;}
.h8_c01382{height:27.645000pt;}
.hf_c01382{height:29.948750pt;}
.hb_c01382{height:32.252500pt;}
.h11_c01382{height:34.556250pt;}
.h7_c01382{height:36.860000pt;}
.h3_c01382{height:39.163750pt;}
.h4_c01382{height:41.467500pt;}
.h9_c01382{height:43.771250pt;}
.h6_c01382{height:46.075000pt;}
.h2_c01382{height:48.378750pt;}
.h10_c01382{height:48.891250pt;}
.hc_c01382{height:50.682500pt;}
.he_c01382{height:52.986250pt;}
.h5_c01382{height:55.290000pt;}
.ha_c01382{height:57.593750pt;}
.hd_c01382{height:59.897500pt;}
.h1_c01382{height:62.201250pt;}
.h12_c01382{height:78.327500pt;}
.h0_c01382{height:1024.000000pt;}
.w1_c01382{width:696.000000pt;}
.w0_c01382{width:696.320000pt;}
.x0_c01382{left:0.000000pt;}
.x2_c01382{left:51.840000pt;}
.x25_c01382{left:53.120000pt;}
.x41_c01382{left:54.400000pt;}
.xc_c01382{left:81.280000pt;}
.x35_c01382{left:97.920000pt;}
.x13_c01382{left:107.520000pt;}
.x3_c01382{left:108.800000pt;}
.xb_c01382{left:146.560000pt;}
.x3e_c01382{left:166.400000pt;}
.x36_c01382{left:167.680000pt;}
.x14_c01382{left:176.000000pt;}
.xd_c01382{left:184.960000pt;}
.x33_c01382{left:193.280000pt;}
.x4_c01382{left:194.560000pt;}
.x1e_c01382{left:195.840000pt;}
.x3f_c01382{left:214.400000pt;}
.x2c_c01382{left:222.720000pt;}
.x15_c01382{left:224.640000pt;}
.x34_c01382{left:232.960000pt;}
.x24_c01382{left:234.240000pt;}
.x5_c01382{left:242.560000pt;}
.x26_c01382{left:252.800000pt;}
.x2d_c01382{left:263.040000pt;}
.x3b_c01382{left:272.000000pt;}
.x23_c01382{left:280.320000pt;}
.x1f_c01382{left:281.600000pt;}
.x6_c01382{left:290.560000pt;}
.x37_c01382{left:291.840000pt;}
.x27_c01382{left:299.520000pt;}
.x10_c01382{left:300.800000pt;}
.x38_c01382{left:318.720000pt;}
.x3c_c01382{left:320.000000pt;}
.x1d_c01382{left:328.960000pt;}
.x28_c01382{left:339.840000pt;}
.x40_c01382{left:347.520000pt;}
.x11_c01382{left:348.800000pt;}
.x39_c01382{left:366.720000pt;}
.x3d_c01382{left:368.000000pt;}
.x7_c01382{left:376.320000pt;}
.x2e_c01382{left:386.560000pt;}
.x20_c01382{left:394.880000pt;}
.x29_c01382{left:412.800000pt;}
.x8_c01382{left:424.320000pt;}
.x21_c01382{left:433.920000pt;}
.x16_c01382{left:453.120000pt;}
.x22_c01382{left:481.920000pt;}
.x2a_c01382{left:499.840000pt;}
.x17_c01382{left:501.120000pt;}
.x3a_c01382{left:518.400000pt;}
.x31_c01382{left:519.680000pt;}
.x2f_c01382{left:537.600000pt;}
.x19_c01382{left:539.520000pt;}
.x18_c01382{left:567.040000pt;}
.x9_c01382{left:568.960000pt;}
.x1a_c01382{left:588.800000pt;}
.x2b_c01382{left:596.480000pt;}
.xe_c01382{left:597.760000pt;}
.x30_c01382{left:604.800000pt;}
.x12_c01382{left:606.720000pt;}
.x1_c01382{left:616.960000pt;}
.x1b_c01382{left:634.240000pt;}
.xa_c01382{left:635.520000pt;}
.x32_c01382{left:651.520000pt;}
.x1c_c01382{left:652.800000pt;}
.xf_c01382{left:654.080000pt;}
}





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

.ir_c01383:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01383{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01383;src:url('chunks/assets/font_b89d8127576dc1e590f9b418.woff2')format("woff");}.ff1_c01383{font-family:ff1_c01383;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m55_c01383{transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);}
.m49_c01383{transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);}
.m44_c01383{transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);}
.m37_c01383{transform:matrix(0.190975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190975,0.000000,0.000000,0.250000,0,0);}
.m41_c01383{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);}
.m4e_c01383{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m3e_c01383{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m45_c01383{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m50_c01383{transform:matrix(0.237300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237300,0.000000,0.000000,0.250000,0,0);}
.mc_c01383{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m4d_c01383{transform:matrix(0.249025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249025,0.000000,0.000000,0.250000,0,0);}
.m33_c01383{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m2_c01383{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);}
.m4c_c01383{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);}
.m3c_c01383{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);}
.m38_c01383{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);}
.m35_c01383{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);}
.m3d_c01383{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);}
.m27_c01383{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);}
.m4f_c01383{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_c01383{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);}
.m20_c01383{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_c01383{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01383{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_c01383{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);}
.m40_c01383{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);}
.m46_c01383{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);}
.m29_c01383{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m17_c01383{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01383{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01383{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m48_c01383{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01383{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.md_c01383{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3_c01383{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m36_c01383{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01383{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01383{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01383{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m43_c01383{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m13_c01383{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m34_c01383{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m4_c01383{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m28_c01383{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m25_c01383{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1_c01383{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);}
.m3f_c01383{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m0_c01383{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_c01383{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m21_c01383{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);}
.m2f_c01383{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);}
.m12_c01383{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m22_c01383{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m5_c01383{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);}
.m15_c01383{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_c01383{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m52_c01383{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);}
.m24_c01383{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.ma_c01383{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m7_c01383{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01383{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);}
.m8_c01383{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01383{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m9_c01383{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);}
.m2c_c01383{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01383{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m19_c01383{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);}
.m3a_c01383{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01383{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m53_c01383{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m26_c01383{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);}
.m1a_c01383{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);}
.m10_c01383{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m23_c01383{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m18_c01383{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);}
.m31_c01383{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m14_c01383{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m39_c01383{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m16_c01383{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m42_c01383{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m30_c01383{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m6_c01383{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01383{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.m51_c01383{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.m47_c01383{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m32_c01383{transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);}
.v0_c01383{vertical-align:0.000000px;}
.ls0_c01383{letter-spacing:0.000000px;}
.sc__c01383{text-shadow:none;}
.sc0_c01383{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01383{-webkit-text-stroke:0px transparent;}
.sc0_c01383{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01383{word-spacing:0.000000px;}
.fc0_c01383{color:transparent;}
.fs11_c01383{font-size:17.280000px;}
.fs10_c01383{font-size:23.040000px;}
.fsd_c01383{font-size:28.800000px;}
.fs14_c01383{font-size:31.680000px;}
.fsf_c01383{font-size:34.560000px;}
.fs7_c01383{font-size:40.320000px;}
.fs6_c01383{font-size:43.200000px;}
.fs8_c01383{font-size:46.080000px;}
.fsc_c01383{font-size:48.960000px;}
.fs3_c01383{font-size:51.840000px;}
.fs4_c01383{font-size:54.720000px;}
.fsa_c01383{font-size:57.600000px;}
.fs5_c01383{font-size:60.480000px;}
.fsb_c01383{font-size:63.360000px;}
.fs1_c01383{font-size:66.240000px;}
.fs9_c01383{font-size:69.120000px;}
.fse_c01383{font-size:72.000000px;}
.fs2_c01383{font-size:74.880000px;}
.fs0_c01383{font-size:77.760000px;}
.fs12_c01383{font-size:80.640000px;}
.fs13_c01383{font-size:100.800000px;}
.y0_c01383{bottom:0.000000px;}
.y75_c01383{bottom:45.360000px;}
.y74_c01383{bottom:46.080000px;}
.y73_c01383{bottom:48.960000px;}
.y76_c01383{bottom:49.680000px;}
.y7a_c01383{bottom:52.560000px;}
.y7b_c01383{bottom:53.280000px;}
.y79_c01383{bottom:54.000000px;}
.y70_c01383{bottom:88.560000px;}
.y71_c01383{bottom:89.280000px;}
.y6e_c01383{bottom:90.720000px;}
.y6f_c01383{bottom:91.440000px;}
.y72_c01383{bottom:92.160000px;}
.y77_c01383{bottom:94.320000px;}
.y78_c01383{bottom:95.040000px;}
.y6a_c01383{bottom:131.040000px;}
.y6b_c01383{bottom:131.760000px;}
.y69_c01383{bottom:133.920000px;}
.y6c_c01383{bottom:137.520000px;}
.y6d_c01383{bottom:140.400000px;}
.y68_c01383{bottom:174.960000px;}
.y64_c01383{bottom:206.640000px;}
.y66_c01383{bottom:208.080000px;}
.y63_c01383{bottom:209.520000px;}
.y65_c01383{bottom:210.960000px;}
.y67_c01383{bottom:213.120000px;}
.y41_c01383{bottom:249.840000px;}
.y44_c01383{bottom:252.000000px;}
.y40_c01383{bottom:253.440000px;}
.y43_c01383{bottom:254.160000px;}
.y42_c01383{bottom:254.880000px;}
.y5f_c01383{bottom:255.600000px;}
.y62_c01383{bottom:257.040000px;}
.y61_c01383{bottom:257.760000px;}
.y60_c01383{bottom:258.480000px;}
.y3e_c01383{bottom:290.160000px;}
.y3b_c01383{bottom:293.760000px;}
.y3c_c01383{bottom:295.920000px;}
.y3a_c01383{bottom:296.640000px;}
.y3d_c01383{bottom:298.080000px;}
.y3f_c01383{bottom:298.800000px;}
.y5e_c01383{bottom:300.240000px;}
.y39_c01383{bottom:336.960000px;}
.y38_c01383{bottom:339.840000px;}
.y5d_c01383{bottom:341.280000px;}
.y5c_c01383{bottom:342.000000px;}
.y37_c01383{bottom:380.160000px;}
.y36_c01383{bottom:383.040000px;}
.y5b_c01383{bottom:385.200000px;}
.y35_c01383{bottom:423.360000px;}
.y34_c01383{bottom:426.240000px;}
.y58_c01383{bottom:427.680000px;}
.y59_c01383{bottom:428.400000px;}
.y5a_c01383{bottom:430.560000px;}
.y33_c01383{bottom:466.560000px;}
.y30_c01383{bottom:468.720000px;}
.y31_c01383{bottom:470.160000px;}
.y56_c01383{bottom:470.880000px;}
.y57_c01383{bottom:473.040000px;}
.y32_c01383{bottom:473.760000px;}
.y2f_c01383{bottom:505.440000px;}
.y2b_c01383{bottom:511.200000px;}
.y2a_c01383{bottom:511.920000px;}
.y2d_c01383{bottom:512.640000px;}
.y53_c01383{bottom:513.360000px;}
.y2c_c01383{bottom:514.080000px;}
.y52_c01383{bottom:514.800000px;}
.y54_c01383{bottom:515.520000px;}
.y2e_c01383{bottom:516.240000px;}
.y55_c01383{bottom:516.960000px;}
.y29_c01383{bottom:553.680000px;}
.y28_c01383{bottom:555.120000px;}
.y50_c01383{bottom:557.280000px;}
.y51_c01383{bottom:558.720000px;}
.y25_c01383{bottom:598.320000px;}
.y27_c01383{bottom:599.040000px;}
.y26_c01383{bottom:601.200000px;}
.y22_c01383{bottom:629.280000px;}
.y21_c01383{bottom:630.720000px;}
.y24_c01383{bottom:631.440000px;}
.y4e_c01383{bottom:632.160000px;}
.y4f_c01383{bottom:632.880000px;}
.y23_c01383{bottom:633.600000px;}
.y20_c01383{bottom:672.480000px;}
.y1f_c01383{bottom:673.920000px;}
.y4c_c01383{bottom:674.640000px;}
.y4d_c01383{bottom:677.520000px;}
.y1d_c01383{bottom:716.400000px;}
.y4a_c01383{bottom:717.120000px;}
.y1e_c01383{bottom:717.840000px;}
.y4b_c01383{bottom:718.560000px;}
.y1b_c01383{bottom:758.160000px;}
.y19_c01383{bottom:759.600000px;}
.y48_c01383{bottom:760.320000px;}
.y49_c01383{bottom:761.760000px;}
.y1a_c01383{bottom:762.480000px;}
.y1c_c01383{bottom:763.200000px;}
.y18_c01383{bottom:801.360000px;}
.y17_c01383{bottom:803.520000px;}
.y47_c01383{bottom:804.240000px;}
.y16_c01383{bottom:848.160000px;}
.y15_c01383{bottom:848.880000px;}
.y14_c01383{bottom:849.600000px;}
.y46_c01383{bottom:895.680000px;}
.yf_c01383{bottom:899.280000px;}
.y11_c01383{bottom:900.720000px;}
.y12_c01383{bottom:901.440000px;}
.y13_c01383{bottom:902.160000px;}
.y10_c01383{bottom:902.880000px;}
.ye_c01383{bottom:941.760000px;}
.yb_c01383{bottom:942.480000px;}
.yd_c01383{bottom:943.200000px;}
.y45_c01383{bottom:943.920000px;}
.yc_c01383{bottom:946.080000px;}
.y8_c01383{bottom:985.680000px;}
.y7_c01383{bottom:986.400000px;}
.ya_c01383{bottom:987.120000px;}
.y9_c01383{bottom:988.560000px;}
.y3_c01383{bottom:1028.880000px;}
.y6_c01383{bottom:1029.600000px;}
.y2_c01383{bottom:1030.320000px;}
.y5_c01383{bottom:1031.040000px;}
.y4_c01383{bottom:1031.760000px;}
.y1_c01383{bottom:1077.840000px;}
.h13_c01383{height:15.550313px;}
.h12_c01383{height:20.733750px;}
.hf_c01383{height:25.917187px;}
.h16_c01383{height:28.508906px;}
.h11_c01383{height:31.100625px;}
.h9_c01383{height:36.284062px;}
.h8_c01383{height:38.875781px;}
.ha_c01383{height:41.467500px;}
.he_c01383{height:44.059219px;}
.h5_c01383{height:46.650937px;}
.h6_c01383{height:49.242656px;}
.hc_c01383{height:51.834375px;}
.h7_c01383{height:54.426094px;}
.hd_c01383{height:57.017812px;}
.h3_c01383{height:59.609531px;}
.hb_c01383{height:62.201250px;}
.h10_c01383{height:64.792969px;}
.h4_c01383{height:67.384687px;}
.h2_c01383{height:69.976406px;}
.h14_c01383{height:72.568125px;}
.h15_c01383{height:90.710156px;}
.h1_c01383{height:1149.000000px;}
.h0_c01383{height:1149.120000px;}
.w0_c01383{width:777.600000px;}
.w1_c01383{width:777.750000px;}
.x0_c01383{left:0.000000px;}
.x2_c01383{left:53.280000px;}
.x19_c01383{left:54.720000px;}
.x25_c01383{left:56.160000px;}
.x2f_c01383{left:57.600000px;}
.x3f_c01383{left:59.040000px;}
.x29_c01383{left:87.120000px;}
.x3d_c01383{left:89.280000px;}
.x2a_c01383{left:96.480000px;}
.x16_c01383{left:106.560000px;}
.x3_c01383{left:116.640000px;}
.x18_c01383{left:118.080000px;}
.x39_c01383{left:119.520000px;}
.x40_c01383{left:120.960000px;}
.x17_c01383{left:160.560000px;}
.x12_c01383{left:192.240000px;}
.x1a_c01383{left:194.400000px;}
.x26_c01383{left:205.200000px;}
.x3e_c01383{left:206.640000px;}
.x4_c01383{left:213.840000px;}
.x24_c01383{left:237.600000px;}
.xf_c01383{left:246.960000px;}
.x1b_c01383{left:248.400000px;}
.x37_c01383{left:250.560000px;}
.x1e_c01383{left:259.200000px;}
.x3a_c01383{left:260.640000px;}
.x2b_c01383{left:271.440000px;}
.x21_c01383{left:290.160000px;}
.x15_c01383{left:291.600000px;}
.x10_c01383{left:300.960000px;}
.x30_c01383{left:304.560000px;}
.x1f_c01383{left:313.200000px;}
.x5_c01383{left:321.840000px;}
.x22_c01383{left:334.800000px;}
.x13_c01383{left:342.720000px;}
.x31_c01383{left:347.760000px;}
.x2c_c01383{left:357.120000px;}
.x6_c01383{left:375.840000px;}
.x11_c01383{left:386.640000px;}
.x14_c01383{left:397.440000px;}
.x20_c01383{left:398.880000px;}
.x2d_c01383{left:410.400000px;}
.x1c_c01383{left:431.280000px;}
.x23_c01383{left:452.160000px;}
.x7_c01383{left:460.080000px;}
.x1d_c01383{left:484.560000px;}
.x8_c01383{left:504.720000px;}
.x38_c01383{left:527.760000px;}
.x9_c01383{left:553.680000px;}
.x27_c01383{left:558.000000px;}
.x28_c01383{left:560.160000px;}
.x32_c01383{left:580.320000px;}
.x2e_c01383{left:582.480000px;}
.xa_c01383{left:602.640000px;}
.xb_c01383{left:612.720000px;}
.xc_c01383{left:625.680000px;}
.x33_c01383{left:635.040000px;}
.x3b_c01383{left:637.200000px;}
.x34_c01383{left:667.440000px;}
.x1_c01383{left:669.600000px;}
.xd_c01383{left:678.240000px;}
.x41_c01383{left:679.680000px;}
.x36_c01383{left:700.560000px;}
.xe_c01383{left:709.920000px;}
.x3c_c01383{left:711.360000px;}
.x35_c01383{left:730.080000px;}
@media print{
.v0_c01383{vertical-align:0.000000pt;}
.ls0_c01383{letter-spacing:0.000000pt;}
.ws0_c01383{word-spacing:0.000000pt;}
.fs11_c01383{font-size:15.360000pt;}
.fs10_c01383{font-size:20.480000pt;}
.fsd_c01383{font-size:25.600000pt;}
.fs14_c01383{font-size:28.160000pt;}
.fsf_c01383{font-size:30.720000pt;}
.fs7_c01383{font-size:35.840000pt;}
.fs6_c01383{font-size:38.400000pt;}
.fs8_c01383{font-size:40.960000pt;}
.fsc_c01383{font-size:43.520000pt;}
.fs3_c01383{font-size:46.080000pt;}
.fs4_c01383{font-size:48.640000pt;}
.fsa_c01383{font-size:51.200000pt;}
.fs5_c01383{font-size:53.760000pt;}
.fsb_c01383{font-size:56.320000pt;}
.fs1_c01383{font-size:58.880000pt;}
.fs9_c01383{font-size:61.440000pt;}
.fse_c01383{font-size:64.000000pt;}
.fs2_c01383{font-size:66.560000pt;}
.fs0_c01383{font-size:69.120000pt;}
.fs12_c01383{font-size:71.680000pt;}
.fs13_c01383{font-size:89.600000pt;}
.y0_c01383{bottom:0.000000pt;}
.y75_c01383{bottom:40.320000pt;}
.y74_c01383{bottom:40.960000pt;}
.y73_c01383{bottom:43.520000pt;}
.y76_c01383{bottom:44.160000pt;}
.y7a_c01383{bottom:46.720000pt;}
.y7b_c01383{bottom:47.360000pt;}
.y79_c01383{bottom:48.000000pt;}
.y70_c01383{bottom:78.720000pt;}
.y71_c01383{bottom:79.360000pt;}
.y6e_c01383{bottom:80.640000pt;}
.y6f_c01383{bottom:81.280000pt;}
.y72_c01383{bottom:81.920000pt;}
.y77_c01383{bottom:83.840000pt;}
.y78_c01383{bottom:84.480000pt;}
.y6a_c01383{bottom:116.480000pt;}
.y6b_c01383{bottom:117.120000pt;}
.y69_c01383{bottom:119.040000pt;}
.y6c_c01383{bottom:122.240000pt;}
.y6d_c01383{bottom:124.800000pt;}
.y68_c01383{bottom:155.520000pt;}
.y64_c01383{bottom:183.680000pt;}
.y66_c01383{bottom:184.960000pt;}
.y63_c01383{bottom:186.240000pt;}
.y65_c01383{bottom:187.520000pt;}
.y67_c01383{bottom:189.440000pt;}
.y41_c01383{bottom:222.080000pt;}
.y44_c01383{bottom:224.000000pt;}
.y40_c01383{bottom:225.280000pt;}
.y43_c01383{bottom:225.920000pt;}
.y42_c01383{bottom:226.560000pt;}
.y5f_c01383{bottom:227.200000pt;}
.y62_c01383{bottom:228.480000pt;}
.y61_c01383{bottom:229.120000pt;}
.y60_c01383{bottom:229.760000pt;}
.y3e_c01383{bottom:257.920000pt;}
.y3b_c01383{bottom:261.120000pt;}
.y3c_c01383{bottom:263.040000pt;}
.y3a_c01383{bottom:263.680000pt;}
.y3d_c01383{bottom:264.960000pt;}
.y3f_c01383{bottom:265.600000pt;}
.y5e_c01383{bottom:266.880000pt;}
.y39_c01383{bottom:299.520000pt;}
.y38_c01383{bottom:302.080000pt;}
.y5d_c01383{bottom:303.360000pt;}
.y5c_c01383{bottom:304.000000pt;}
.y37_c01383{bottom:337.920000pt;}
.y36_c01383{bottom:340.480000pt;}
.y5b_c01383{bottom:342.400000pt;}
.y35_c01383{bottom:376.320000pt;}
.y34_c01383{bottom:378.880000pt;}
.y58_c01383{bottom:380.160000pt;}
.y59_c01383{bottom:380.800000pt;}
.y5a_c01383{bottom:382.720000pt;}
.y33_c01383{bottom:414.720000pt;}
.y30_c01383{bottom:416.640000pt;}
.y31_c01383{bottom:417.920000pt;}
.y56_c01383{bottom:418.560000pt;}
.y57_c01383{bottom:420.480000pt;}
.y32_c01383{bottom:421.120000pt;}
.y2f_c01383{bottom:449.280000pt;}
.y2b_c01383{bottom:454.400000pt;}
.y2a_c01383{bottom:455.040000pt;}
.y2d_c01383{bottom:455.680000pt;}
.y53_c01383{bottom:456.320000pt;}
.y2c_c01383{bottom:456.960000pt;}
.y52_c01383{bottom:457.600000pt;}
.y54_c01383{bottom:458.240000pt;}
.y2e_c01383{bottom:458.880000pt;}
.y55_c01383{bottom:459.520000pt;}
.y29_c01383{bottom:492.160000pt;}
.y28_c01383{bottom:493.440000pt;}
.y50_c01383{bottom:495.360000pt;}
.y51_c01383{bottom:496.640000pt;}
.y25_c01383{bottom:531.840000pt;}
.y27_c01383{bottom:532.480000pt;}
.y26_c01383{bottom:534.400000pt;}
.y22_c01383{bottom:559.360000pt;}
.y21_c01383{bottom:560.640000pt;}
.y24_c01383{bottom:561.280000pt;}
.y4e_c01383{bottom:561.920000pt;}
.y4f_c01383{bottom:562.560000pt;}
.y23_c01383{bottom:563.200000pt;}
.y20_c01383{bottom:597.760000pt;}
.y1f_c01383{bottom:599.040000pt;}
.y4c_c01383{bottom:599.680000pt;}
.y4d_c01383{bottom:602.240000pt;}
.y1d_c01383{bottom:636.800000pt;}
.y4a_c01383{bottom:637.440000pt;}
.y1e_c01383{bottom:638.080000pt;}
.y4b_c01383{bottom:638.720000pt;}
.y1b_c01383{bottom:673.920000pt;}
.y19_c01383{bottom:675.200000pt;}
.y48_c01383{bottom:675.840000pt;}
.y49_c01383{bottom:677.120000pt;}
.y1a_c01383{bottom:677.760000pt;}
.y1c_c01383{bottom:678.400000pt;}
.y18_c01383{bottom:712.320000pt;}
.y17_c01383{bottom:714.240000pt;}
.y47_c01383{bottom:714.880000pt;}
.y16_c01383{bottom:753.920000pt;}
.y15_c01383{bottom:754.560000pt;}
.y14_c01383{bottom:755.200000pt;}
.y46_c01383{bottom:796.160000pt;}
.yf_c01383{bottom:799.360000pt;}
.y11_c01383{bottom:800.640000pt;}
.y12_c01383{bottom:801.280000pt;}
.y13_c01383{bottom:801.920000pt;}
.y10_c01383{bottom:802.560000pt;}
.ye_c01383{bottom:837.120000pt;}
.yb_c01383{bottom:837.760000pt;}
.yd_c01383{bottom:838.400000pt;}
.y45_c01383{bottom:839.040000pt;}
.yc_c01383{bottom:840.960000pt;}
.y8_c01383{bottom:876.160000pt;}
.y7_c01383{bottom:876.800000pt;}
.ya_c01383{bottom:877.440000pt;}
.y9_c01383{bottom:878.720000pt;}
.y3_c01383{bottom:914.560000pt;}
.y6_c01383{bottom:915.200000pt;}
.y2_c01383{bottom:915.840000pt;}
.y5_c01383{bottom:916.480000pt;}
.y4_c01383{bottom:917.120000pt;}
.y1_c01383{bottom:958.080000pt;}
.h13_c01383{height:13.822500pt;}
.h12_c01383{height:18.430000pt;}
.hf_c01383{height:23.037500pt;}
.h16_c01383{height:25.341250pt;}
.h11_c01383{height:27.645000pt;}
.h9_c01383{height:32.252500pt;}
.h8_c01383{height:34.556250pt;}
.ha_c01383{height:36.860000pt;}
.he_c01383{height:39.163750pt;}
.h5_c01383{height:41.467500pt;}
.h6_c01383{height:43.771250pt;}
.hc_c01383{height:46.075000pt;}
.h7_c01383{height:48.378750pt;}
.hd_c01383{height:50.682500pt;}
.h3_c01383{height:52.986250pt;}
.hb_c01383{height:55.290000pt;}
.h10_c01383{height:57.593750pt;}
.h4_c01383{height:59.897500pt;}
.h2_c01383{height:62.201250pt;}
.h14_c01383{height:64.505000pt;}
.h15_c01383{height:80.631250pt;}
.h1_c01383{height:1021.333333pt;}
.h0_c01383{height:1021.440000pt;}
.w0_c01383{width:691.200000pt;}
.w1_c01383{width:691.333333pt;}
.x0_c01383{left:0.000000pt;}
.x2_c01383{left:47.360000pt;}
.x19_c01383{left:48.640000pt;}
.x25_c01383{left:49.920000pt;}
.x2f_c01383{left:51.200000pt;}
.x3f_c01383{left:52.480000pt;}
.x29_c01383{left:77.440000pt;}
.x3d_c01383{left:79.360000pt;}
.x2a_c01383{left:85.760000pt;}
.x16_c01383{left:94.720000pt;}
.x3_c01383{left:103.680000pt;}
.x18_c01383{left:104.960000pt;}
.x39_c01383{left:106.240000pt;}
.x40_c01383{left:107.520000pt;}
.x17_c01383{left:142.720000pt;}
.x12_c01383{left:170.880000pt;}
.x1a_c01383{left:172.800000pt;}
.x26_c01383{left:182.400000pt;}
.x3e_c01383{left:183.680000pt;}
.x4_c01383{left:190.080000pt;}
.x24_c01383{left:211.200000pt;}
.xf_c01383{left:219.520000pt;}
.x1b_c01383{left:220.800000pt;}
.x37_c01383{left:222.720000pt;}
.x1e_c01383{left:230.400000pt;}
.x3a_c01383{left:231.680000pt;}
.x2b_c01383{left:241.280000pt;}
.x21_c01383{left:257.920000pt;}
.x15_c01383{left:259.200000pt;}
.x10_c01383{left:267.520000pt;}
.x30_c01383{left:270.720000pt;}
.x1f_c01383{left:278.400000pt;}
.x5_c01383{left:286.080000pt;}
.x22_c01383{left:297.600000pt;}
.x13_c01383{left:304.640000pt;}
.x31_c01383{left:309.120000pt;}
.x2c_c01383{left:317.440000pt;}
.x6_c01383{left:334.080000pt;}
.x11_c01383{left:343.680000pt;}
.x14_c01383{left:353.280000pt;}
.x20_c01383{left:354.560000pt;}
.x2d_c01383{left:364.800000pt;}
.x1c_c01383{left:383.360000pt;}
.x23_c01383{left:401.920000pt;}
.x7_c01383{left:408.960000pt;}
.x1d_c01383{left:430.720000pt;}
.x8_c01383{left:448.640000pt;}
.x38_c01383{left:469.120000pt;}
.x9_c01383{left:492.160000pt;}
.x27_c01383{left:496.000000pt;}
.x28_c01383{left:497.920000pt;}
.x32_c01383{left:515.840000pt;}
.x2e_c01383{left:517.760000pt;}
.xa_c01383{left:535.680000pt;}
.xb_c01383{left:544.640000pt;}
.xc_c01383{left:556.160000pt;}
.x33_c01383{left:564.480000pt;}
.x3b_c01383{left:566.400000pt;}
.x34_c01383{left:593.280000pt;}
.x1_c01383{left:595.200000pt;}
.xd_c01383{left:602.880000pt;}
.x41_c01383{left:604.160000pt;}
.x36_c01383{left:622.720000pt;}
.xe_c01383{left:631.040000pt;}
.x3c_c01383{left:632.320000pt;}
.x35_c01383{left:648.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_c01384 {
    display:none;
  }
  .loading-indicator_c01384.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01384 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01384 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01384" -> "#page-container .classname_c01384")
 */
.pf_c01384 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01384 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01384.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01384 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01384 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01384 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01384 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01384 {overflow:visible;}
  }
}
.c_c01384 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01384 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01384:after { /* webkit #35443 */
  content: '';
}
.t_c01384:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01384 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01384 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01384 { /* info for Javascript */
  display:none;
}
.l_c01384 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01384 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01384 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01384:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01384{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01384;src:url('chunks/assets/font_2d40d54c7f14ffb2bb91a76b.woff2')format("woff");}.ff1_c01384{font-family:ff1_c01384;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m37_c01384{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);}
.m25_c01384{transform:matrix(0.233525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233525,0.000000,0.000000,0.250000,0,0);}
.m34_c01384{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m35_c01384{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m20_c01384{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);}
.m31_c01384{transform:matrix(0.245025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245025,0.000000,0.000000,0.250000,0,0);}
.m42_c01384{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m44_c01384{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m17_c01384{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01384{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m19_c01384{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);}
.m2c_c01384{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);}
.m2a_c01384{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);}
.m4e_c01384{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);}
.m21_c01384{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m41_c01384{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m10_c01384{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m16_c01384{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m12_c01384{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_c01384{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01384{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m36_c01384{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m30_c01384{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01384{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m9_c01384{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.mc_c01384{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m6_c01384{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m23_c01384{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2_c01384{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01384{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m29_c01384{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01384{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1_c01384{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);}
.m3c_c01384{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);}
.m32_c01384{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01384{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m48_c01384{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01384{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);}
.m28_c01384{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);}
.m4b_c01384{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01384{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);}
.m24_c01384{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m0_c01384{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01384{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m11_c01384{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);}
.m4c_c01384{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m18_c01384{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01384{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);}
.m39_c01384{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);}
.m22_c01384{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);}
.m13_c01384{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01384{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);}
.m43_c01384{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);}
.md_c01384{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01384{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m8_c01384{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);}
.m4f_c01384{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m4_c01384{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01384{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01384{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m45_c01384{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);}
.m5_c01384{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);}
.m3_c01384{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.me_c01384{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);}
.m7_c01384{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.mb_c01384{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);}
.m46_c01384{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01384{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);}
.m47_c01384{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m40_c01384{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.ma_c01384{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);}
.m14_c01384{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m15_c01384{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m4a_c01384{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01384{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01384{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m38_c01384{transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);}
.m49_c01384{transform:matrix(0.697500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697500,0.000000,0.000000,0.250000,0,0);}
.m33_c01384{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01384{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.v0_c01384{vertical-align:0.000000px;}
.v1_c01384{vertical-align:14.400000px;}
.ls0_c01384{letter-spacing:0.000000px;}
.sc__c01384{text-shadow:none;}
.sc0_c01384{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01384{-webkit-text-stroke:0px transparent;}
.sc0_c01384{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01384{word-spacing:-7.551360px;}
.ws3_c01384{word-spacing:0.000000px;}
.ws2_c01384{word-spacing:2.571360px;}
.ws1_c01384{word-spacing:9.475200px;}
.fc0_c01384{color:transparent;}
.fsd_c01384{font-size:34.560000px;}
.fs9_c01384{font-size:37.440000px;}
.fs5_c01384{font-size:40.320000px;}
.fse_c01384{font-size:46.080000px;}
.fs4_c01384{font-size:48.960000px;}
.fs3_c01384{font-size:51.840000px;}
.fs8_c01384{font-size:54.720000px;}
.fsa_c01384{font-size:57.600000px;}
.fsb_c01384{font-size:60.480000px;}
.fs2_c01384{font-size:63.360000px;}
.fs7_c01384{font-size:66.240000px;}
.fs1_c01384{font-size:69.120000px;}
.fs6_c01384{font-size:72.000000px;}
.fs0_c01384{font-size:74.880000px;}
.fsc_c01384{font-size:77.760000px;}
.y0_c01384{bottom:0.000000px;}
.y74_c01384{bottom:41.040000px;}
.y75_c01384{bottom:41.760000px;}
.y73_c01384{bottom:45.360000px;}
.y79_c01384{bottom:47.520000px;}
.y76_c01384{bottom:48.240000px;}
.y77_c01384{bottom:49.680000px;}
.y78_c01384{bottom:50.400000px;}
.y6d_c01384{bottom:83.520000px;}
.y6e_c01384{bottom:84.240000px;}
.y6c_c01384{bottom:88.560000px;}
.y6f_c01384{bottom:89.280000px;}
.y70_c01384{bottom:90.000000px;}
.y72_c01384{bottom:90.720000px;}
.y71_c01384{bottom:93.600000px;}
.y67_c01384{bottom:127.440000px;}
.y66_c01384{bottom:131.760000px;}
.y68_c01384{bottom:132.480000px;}
.y6b_c01384{bottom:133.200000px;}
.y6a_c01384{bottom:134.640000px;}
.y69_c01384{bottom:136.080000px;}
.y62_c01384{bottom:172.800000px;}
.y64_c01384{bottom:173.520000px;}
.y63_c01384{bottom:174.960000px;}
.y65_c01384{bottom:176.400000px;}
.y5b_c01384{bottom:203.760000px;}
.y5d_c01384{bottom:205.200000px;}
.y5c_c01384{bottom:205.920000px;}
.y5a_c01384{bottom:207.360000px;}
.y5e_c01384{bottom:209.520000px;}
.y5f_c01384{bottom:210.240000px;}
.y60_c01384{bottom:210.960000px;}
.y61_c01384{bottom:211.680000px;}
.y57_c01384{bottom:248.400000px;}
.y56_c01384{bottom:250.560000px;}
.y58_c01384{bottom:252.720000px;}
.y59_c01384{bottom:254.880000px;}
.y55_c01384{bottom:292.320000px;}
.y54_c01384{bottom:294.480000px;}
.y40_c01384{bottom:295.200000px;}
.y41_c01384{bottom:295.920000px;}
.y42_c01384{bottom:297.360000px;}
.y20_c01384{bottom:333.360000px;}
.y21_c01384{bottom:334.800000px;}
.y1f_c01384{bottom:336.960000px;}
.y3f_c01384{bottom:337.680000px;}
.y3e_c01384{bottom:339.120000px;}
.y1e_c01384{bottom:377.280000px;}
.y3c_c01384{bottom:380.160000px;}
.y1d_c01384{bottom:380.880000px;}
.y3d_c01384{bottom:382.320000px;}
.y1b_c01384{bottom:420.480000px;}
.y1c_c01384{bottom:421.200000px;}
.y1a_c01384{bottom:424.080000px;}
.y3a_c01384{bottom:425.520000px;}
.y3b_c01384{bottom:426.240000px;}
.y39_c01384{bottom:426.960000px;}
.y50_c01384{bottom:463.680000px;}
.y51_c01384{bottom:464.400000px;}
.y53_c01384{bottom:465.840000px;}
.y37_c01384{bottom:467.280000px;}
.y52_c01384{bottom:468.000000px;}
.y38_c01384{bottom:468.720000px;}
.y36_c01384{bottom:469.440000px;}
.y4e_c01384{bottom:506.880000px;}
.y4f_c01384{bottom:508.320000px;}
.y34_c01384{bottom:509.040000px;}
.y4d_c01384{bottom:509.760000px;}
.y33_c01384{bottom:511.200000px;}
.y35_c01384{bottom:512.640000px;}
.y4c_c01384{bottom:550.800000px;}
.y4b_c01384{bottom:552.240000px;}
.y32_c01384{bottom:553.680000px;}
.y31_c01384{bottom:554.400000px;}
.y4a_c01384{bottom:594.000000px;}
.y2f_c01384{bottom:596.160000px;}
.y2e_c01384{bottom:596.880000px;}
.y49_c01384{bottom:597.600000px;}
.y30_c01384{bottom:598.320000px;}
.y48_c01384{bottom:637.920000px;}
.y2b_c01384{bottom:639.360000px;}
.y2c_c01384{bottom:640.080000px;}
.y2d_c01384{bottom:640.800000px;}
.y47_c01384{bottom:641.520000px;}
.y45_c01384{bottom:681.120000px;}
.y27_c01384{bottom:681.840000px;}
.y28_c01384{bottom:682.560000px;}
.y29_c01384{bottom:683.280000px;}
.y2a_c01384{bottom:684.000000px;}
.y46_c01384{bottom:684.720000px;}
.y44_c01384{bottom:724.320000px;}
.y25_c01384{bottom:725.040000px;}
.y43_c01384{bottom:725.760000px;}
.y26_c01384{bottom:726.480000px;}
.y19_c01384{bottom:767.520000px;}
.y23_c01384{bottom:768.240000px;}
.y17_c01384{bottom:768.960000px;}
.y24_c01384{bottom:769.680000px;}
.y18_c01384{bottom:771.120000px;}
.y14_c01384{bottom:810.000000px;}
.y16_c01384{bottom:810.720000px;}
.y22_c01384{bottom:811.440000px;}
.y13_c01384{bottom:812.160000px;}
.y15_c01384{bottom:814.320000px;}
.y10_c01384{bottom:907.920000px;}
.y11_c01384{bottom:908.640000px;}
.y12_c01384{bottom:909.360000px;}
.ye_c01384{bottom:951.120000px;}
.yb_c01384{bottom:951.840000px;}
.yc_c01384{bottom:952.560000px;}
.yf_c01384{bottom:953.280000px;}
.yd_c01384{bottom:954.720000px;}
.y7_c01384{bottom:994.320000px;}
.ya_c01384{bottom:996.480000px;}
.y9_c01384{bottom:997.200000px;}
.y8_c01384{bottom:997.920000px;}
.y6_c01384{bottom:1026.000000px;}
.y5_c01384{bottom:1026.720000px;}
.y2_c01384{bottom:1027.440000px;}
.y4_c01384{bottom:1028.160000px;}
.y3_c01384{bottom:1029.600000px;}
.y1_c01384{bottom:1072.080000px;}
.he_c01384{height:31.100625px;}
.hf_c01384{height:33.692344px;}
.h7_c01384{height:36.284062px;}
.h10_c01384{height:41.467500px;}
.h6_c01384{height:44.059219px;}
.h5_c01384{height:46.650937px;}
.ha_c01384{height:49.242656px;}
.hb_c01384{height:51.834375px;}
.hc_c01384{height:54.426094px;}
.h4_c01384{height:57.017812px;}
.h9_c01384{height:59.609531px;}
.h3_c01384{height:62.201250px;}
.h8_c01384{height:64.792969px;}
.h2_c01384{height:67.384687px;}
.hd_c01384{height:69.976406px;}
.h1_c01384{height:1151.250000px;}
.h0_c01384{height:1151.280000px;}
.w0_c01384{width:781.920000px;}
.w1_c01384{width:782.250000px;}
.x0_c01384{left:0.000000px;}
.x2_c01384{left:56.160000px;}
.x14_c01384{left:57.600000px;}
.x2a_c01384{left:59.040000px;}
.x22_c01384{left:118.800000px;}
.x3_c01384{left:120.960000px;}
.x11_c01384{left:132.480000px;}
.x15_c01384{left:196.560000px;}
.x4_c01384{left:207.360000px;}
.x27_c01384{left:218.160000px;}
.x23_c01384{left:228.960000px;}
.x16_c01384{left:250.560000px;}
.x5_c01384{left:261.360000px;}
.xd_c01384{left:272.160000px;}
.x12_c01384{left:293.760000px;}
.x1f_c01384{left:304.560000px;}
.x6_c01384{left:315.360000px;}
.x28_c01384{left:327.600000px;}
.x7_c01384{left:358.560000px;}
.x13_c01384{left:379.440000px;}
.x2b_c01384{left:412.560000px;}
.x20_c01384{left:423.360000px;}
.x8_c01384{left:432.720000px;}
.x24_c01384{left:444.240000px;}
.x21_c01384{left:465.840000px;}
.x9_c01384{left:487.440000px;}
.x25_c01384{left:498.240000px;}
.xa_c01384{left:541.440000px;}
.x26_c01384{left:552.240000px;}
.x1b_c01384{left:583.200000px;}
.x1d_c01384{left:584.640000px;}
.x10_c01384{left:604.800000px;}
.x19_c01384{left:615.600000px;}
.xe_c01384{left:637.200000px;}
.xb_c01384{left:639.360000px;}
.x1a_c01384{left:669.600000px;}
.x1_c01384{left:671.040000px;}
.x29_c01384{left:680.400000px;}
.x1c_c01384{left:702.000000px;}
.x1e_c01384{left:711.360000px;}
.x17_c01384{left:712.800000px;}
.xc_c01384{left:714.240000px;}
.x18_c01384{left:732.960000px;}
.xf_c01384{left:734.400000px;}
@media print{
.v0_c01384{vertical-align:0.000000pt;}
.v1_c01384{vertical-align:12.800000pt;}
.ls0_c01384{letter-spacing:0.000000pt;}
.ws0_c01384{word-spacing:-6.712320pt;}
.ws3_c01384{word-spacing:0.000000pt;}
.ws2_c01384{word-spacing:2.285653pt;}
.ws1_c01384{word-spacing:8.422400pt;}
.fsd_c01384{font-size:30.720000pt;}
.fs9_c01384{font-size:33.280000pt;}
.fs5_c01384{font-size:35.840000pt;}
.fse_c01384{font-size:40.960000pt;}
.fs4_c01384{font-size:43.520000pt;}
.fs3_c01384{font-size:46.080000pt;}
.fs8_c01384{font-size:48.640000pt;}
.fsa_c01384{font-size:51.200000pt;}
.fsb_c01384{font-size:53.760000pt;}
.fs2_c01384{font-size:56.320000pt;}
.fs7_c01384{font-size:58.880000pt;}
.fs1_c01384{font-size:61.440000pt;}
.fs6_c01384{font-size:64.000000pt;}
.fs0_c01384{font-size:66.560000pt;}
.fsc_c01384{font-size:69.120000pt;}
.y0_c01384{bottom:0.000000pt;}
.y74_c01384{bottom:36.480000pt;}
.y75_c01384{bottom:37.120000pt;}
.y73_c01384{bottom:40.320000pt;}
.y79_c01384{bottom:42.240000pt;}
.y76_c01384{bottom:42.880000pt;}
.y77_c01384{bottom:44.160000pt;}
.y78_c01384{bottom:44.800000pt;}
.y6d_c01384{bottom:74.240000pt;}
.y6e_c01384{bottom:74.880000pt;}
.y6c_c01384{bottom:78.720000pt;}
.y6f_c01384{bottom:79.360000pt;}
.y70_c01384{bottom:80.000000pt;}
.y72_c01384{bottom:80.640000pt;}
.y71_c01384{bottom:83.200000pt;}
.y67_c01384{bottom:113.280000pt;}
.y66_c01384{bottom:117.120000pt;}
.y68_c01384{bottom:117.760000pt;}
.y6b_c01384{bottom:118.400000pt;}
.y6a_c01384{bottom:119.680000pt;}
.y69_c01384{bottom:120.960000pt;}
.y62_c01384{bottom:153.600000pt;}
.y64_c01384{bottom:154.240000pt;}
.y63_c01384{bottom:155.520000pt;}
.y65_c01384{bottom:156.800000pt;}
.y5b_c01384{bottom:181.120000pt;}
.y5d_c01384{bottom:182.400000pt;}
.y5c_c01384{bottom:183.040000pt;}
.y5a_c01384{bottom:184.320000pt;}
.y5e_c01384{bottom:186.240000pt;}
.y5f_c01384{bottom:186.880000pt;}
.y60_c01384{bottom:187.520000pt;}
.y61_c01384{bottom:188.160000pt;}
.y57_c01384{bottom:220.800000pt;}
.y56_c01384{bottom:222.720000pt;}
.y58_c01384{bottom:224.640000pt;}
.y59_c01384{bottom:226.560000pt;}
.y55_c01384{bottom:259.840000pt;}
.y54_c01384{bottom:261.760000pt;}
.y40_c01384{bottom:262.400000pt;}
.y41_c01384{bottom:263.040000pt;}
.y42_c01384{bottom:264.320000pt;}
.y20_c01384{bottom:296.320000pt;}
.y21_c01384{bottom:297.600000pt;}
.y1f_c01384{bottom:299.520000pt;}
.y3f_c01384{bottom:300.160000pt;}
.y3e_c01384{bottom:301.440000pt;}
.y1e_c01384{bottom:335.360000pt;}
.y3c_c01384{bottom:337.920000pt;}
.y1d_c01384{bottom:338.560000pt;}
.y3d_c01384{bottom:339.840000pt;}
.y1b_c01384{bottom:373.760000pt;}
.y1c_c01384{bottom:374.400000pt;}
.y1a_c01384{bottom:376.960000pt;}
.y3a_c01384{bottom:378.240000pt;}
.y3b_c01384{bottom:378.880000pt;}
.y39_c01384{bottom:379.520000pt;}
.y50_c01384{bottom:412.160000pt;}
.y51_c01384{bottom:412.800000pt;}
.y53_c01384{bottom:414.080000pt;}
.y37_c01384{bottom:415.360000pt;}
.y52_c01384{bottom:416.000000pt;}
.y38_c01384{bottom:416.640000pt;}
.y36_c01384{bottom:417.280000pt;}
.y4e_c01384{bottom:450.560000pt;}
.y4f_c01384{bottom:451.840000pt;}
.y34_c01384{bottom:452.480000pt;}
.y4d_c01384{bottom:453.120000pt;}
.y33_c01384{bottom:454.400000pt;}
.y35_c01384{bottom:455.680000pt;}
.y4c_c01384{bottom:489.600000pt;}
.y4b_c01384{bottom:490.880000pt;}
.y32_c01384{bottom:492.160000pt;}
.y31_c01384{bottom:492.800000pt;}
.y4a_c01384{bottom:528.000000pt;}
.y2f_c01384{bottom:529.920000pt;}
.y2e_c01384{bottom:530.560000pt;}
.y49_c01384{bottom:531.200000pt;}
.y30_c01384{bottom:531.840000pt;}
.y48_c01384{bottom:567.040000pt;}
.y2b_c01384{bottom:568.320000pt;}
.y2c_c01384{bottom:568.960000pt;}
.y2d_c01384{bottom:569.600000pt;}
.y47_c01384{bottom:570.240000pt;}
.y45_c01384{bottom:605.440000pt;}
.y27_c01384{bottom:606.080000pt;}
.y28_c01384{bottom:606.720000pt;}
.y29_c01384{bottom:607.360000pt;}
.y2a_c01384{bottom:608.000000pt;}
.y46_c01384{bottom:608.640000pt;}
.y44_c01384{bottom:643.840000pt;}
.y25_c01384{bottom:644.480000pt;}
.y43_c01384{bottom:645.120000pt;}
.y26_c01384{bottom:645.760000pt;}
.y19_c01384{bottom:682.240000pt;}
.y23_c01384{bottom:682.880000pt;}
.y17_c01384{bottom:683.520000pt;}
.y24_c01384{bottom:684.160000pt;}
.y18_c01384{bottom:685.440000pt;}
.y14_c01384{bottom:720.000000pt;}
.y16_c01384{bottom:720.640000pt;}
.y22_c01384{bottom:721.280000pt;}
.y13_c01384{bottom:721.920000pt;}
.y15_c01384{bottom:723.840000pt;}
.y10_c01384{bottom:807.040000pt;}
.y11_c01384{bottom:807.680000pt;}
.y12_c01384{bottom:808.320000pt;}
.ye_c01384{bottom:845.440000pt;}
.yb_c01384{bottom:846.080000pt;}
.yc_c01384{bottom:846.720000pt;}
.yf_c01384{bottom:847.360000pt;}
.yd_c01384{bottom:848.640000pt;}
.y7_c01384{bottom:883.840000pt;}
.ya_c01384{bottom:885.760000pt;}
.y9_c01384{bottom:886.400000pt;}
.y8_c01384{bottom:887.040000pt;}
.y6_c01384{bottom:912.000000pt;}
.y5_c01384{bottom:912.640000pt;}
.y2_c01384{bottom:913.280000pt;}
.y4_c01384{bottom:913.920000pt;}
.y3_c01384{bottom:915.200000pt;}
.y1_c01384{bottom:952.960000pt;}
.he_c01384{height:27.645000pt;}
.hf_c01384{height:29.948750pt;}
.h7_c01384{height:32.252500pt;}
.h10_c01384{height:36.860000pt;}
.h6_c01384{height:39.163750pt;}
.h5_c01384{height:41.467500pt;}
.ha_c01384{height:43.771250pt;}
.hb_c01384{height:46.075000pt;}
.hc_c01384{height:48.378750pt;}
.h4_c01384{height:50.682500pt;}
.h9_c01384{height:52.986250pt;}
.h3_c01384{height:55.290000pt;}
.h8_c01384{height:57.593750pt;}
.h2_c01384{height:59.897500pt;}
.hd_c01384{height:62.201250pt;}
.h1_c01384{height:1023.333333pt;}
.h0_c01384{height:1023.360000pt;}
.w0_c01384{width:695.040000pt;}
.w1_c01384{width:695.333333pt;}
.x0_c01384{left:0.000000pt;}
.x2_c01384{left:49.920000pt;}
.x14_c01384{left:51.200000pt;}
.x2a_c01384{left:52.480000pt;}
.x22_c01384{left:105.600000pt;}
.x3_c01384{left:107.520000pt;}
.x11_c01384{left:117.760000pt;}
.x15_c01384{left:174.720000pt;}
.x4_c01384{left:184.320000pt;}
.x27_c01384{left:193.920000pt;}
.x23_c01384{left:203.520000pt;}
.x16_c01384{left:222.720000pt;}
.x5_c01384{left:232.320000pt;}
.xd_c01384{left:241.920000pt;}
.x12_c01384{left:261.120000pt;}
.x1f_c01384{left:270.720000pt;}
.x6_c01384{left:280.320000pt;}
.x28_c01384{left:291.200000pt;}
.x7_c01384{left:318.720000pt;}
.x13_c01384{left:337.280000pt;}
.x2b_c01384{left:366.720000pt;}
.x20_c01384{left:376.320000pt;}
.x8_c01384{left:384.640000pt;}
.x24_c01384{left:394.880000pt;}
.x21_c01384{left:414.080000pt;}
.x9_c01384{left:433.280000pt;}
.x25_c01384{left:442.880000pt;}
.xa_c01384{left:481.280000pt;}
.x26_c01384{left:490.880000pt;}
.x1b_c01384{left:518.400000pt;}
.x1d_c01384{left:519.680000pt;}
.x10_c01384{left:537.600000pt;}
.x19_c01384{left:547.200000pt;}
.xe_c01384{left:566.400000pt;}
.xb_c01384{left:568.320000pt;}
.x1a_c01384{left:595.200000pt;}
.x1_c01384{left:596.480000pt;}
.x29_c01384{left:604.800000pt;}
.x1c_c01384{left:624.000000pt;}
.x1e_c01384{left:632.320000pt;}
.x17_c01384{left:633.600000pt;}
.xc_c01384{left:634.880000pt;}
.x18_c01384{left:651.520000pt;}
.xf_c01384{left:652.800000pt;}
}





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

.ir_c01385:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01385{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01385;src:url('chunks/assets/font_ab4a25014eb2631081d3c9d5.woff2')format("woff");}.ff1_c01385{font-family:ff1_c01385;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m35_c01385{transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);}
.m3_c01385{transform:matrix(0.212075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212075,0.000000,0.000000,0.250000,0,0);}
.m1e_c01385{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);}
.m3f_c01385{transform:matrix(0.233875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233875,0.000000,0.000000,0.250000,0,0);}
.m19_c01385{transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);}
.m15_c01385{transform:matrix(0.236625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236625,0.000000,0.000000,0.250000,0,0);}
.m1_c01385{transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);}
.m14_c01385{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m4c_c01385{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m43_c01385{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);}
.m41_c01385{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m5_c01385{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m49_c01385{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_c01385{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);}
.m2b_c01385{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01385{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);}
.m45_c01385{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);}
.m2f_c01385{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.md_c01385{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);}
.m4b_c01385{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m42_c01385{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m21_c01385{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m6_c01385{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m12_c01385{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.ma_c01385{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01385{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mb_c01385{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mc_c01385{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m17_c01385{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m22_c01385{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m10_c01385{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m34_c01385{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m2_c01385{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m31_c01385{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m44_c01385{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m20_c01385{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01385{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);}
.m46_c01385{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01385{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);}
.m23_c01385{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_c01385{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01385{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.mf_c01385{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m8_c01385{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);}
.m47_c01385{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01385{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);}
.me_c01385{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01385{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);}
.m36_c01385{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m30_c01385{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);}
.m27_c01385{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);}
.m4_c01385{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m7_c01385{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);}
.m0_c01385{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m32_c01385{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);}
.m29_c01385{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);}
.m18_c01385{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);}
.m16_c01385{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m13_c01385{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);}
.m24_c01385{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);}
.m28_c01385{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m25_c01385{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);}
.m2e_c01385{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01385{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01385{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01385{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);}
.m39_c01385{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01385{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m33_c01385{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m40_c01385{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);}
.m37_c01385{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m38_c01385{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m11_c01385{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);}
.m48_c01385{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m26_c01385{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01385{transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01385{transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);}
.v0_c01385{vertical-align:0.000000px;}
.ls0_c01385{letter-spacing:0.000000px;}
.sc__c01385{text-shadow:none;}
.sc0_c01385{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01385{-webkit-text-stroke:0px transparent;}
.sc0_c01385{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01385{word-spacing:0.000000px;}
.ws0_c01385{word-spacing:14.235552px;}
.fc0_c01385{color:transparent;}
.fsc_c01385{font-size:31.680000px;}
.fs9_c01385{font-size:37.440000px;}
.fse_c01385{font-size:43.200000px;}
.fsf_c01385{font-size:46.080000px;}
.fs7_c01385{font-size:48.960000px;}
.fs3_c01385{font-size:51.840000px;}
.fs4_c01385{font-size:54.720000px;}
.fs5_c01385{font-size:57.600000px;}
.fs0_c01385{font-size:60.480000px;}
.fsa_c01385{font-size:63.360000px;}
.fs8_c01385{font-size:66.240000px;}
.fs6_c01385{font-size:69.120000px;}
.fsb_c01385{font-size:72.000000px;}
.fs1_c01385{font-size:74.880000px;}
.fs2_c01385{font-size:77.760000px;}
.fsd_c01385{font-size:103.680000px;}
.y0_c01385{bottom:0.000000px;}
.y56_c01385{bottom:67.680000px;}
.y58_c01385{bottom:68.400000px;}
.y57_c01385{bottom:69.840000px;}
.y55_c01385{bottom:71.280000px;}
.y6d_c01385{bottom:72.000000px;}
.y6e_c01385{bottom:74.160000px;}
.y52_c01385{bottom:110.880000px;}
.y54_c01385{bottom:112.320000px;}
.y53_c01385{bottom:113.040000px;}
.y6b_c01385{bottom:115.200000px;}
.y51_c01385{bottom:115.920000px;}
.y6c_c01385{bottom:116.640000px;}
.y4f_c01385{bottom:156.240000px;}
.y50_c01385{bottom:158.400000px;}
.y4e_c01385{bottom:159.120000px;}
.y4d_c01385{bottom:197.280000px;}
.y4c_c01385{bottom:198.000000px;}
.y4a_c01385{bottom:231.840000px;}
.y49_c01385{bottom:232.560000px;}
.y48_c01385{bottom:234.000000px;}
.y4b_c01385{bottom:234.720000px;}
.y6a_c01385{bottom:235.440000px;}
.y46_c01385{bottom:275.040000px;}
.y44_c01385{bottom:275.760000px;}
.y47_c01385{bottom:276.480000px;}
.y43_c01385{bottom:277.200000px;}
.y45_c01385{bottom:277.920000px;}
.y69_c01385{bottom:279.360000px;}
.y42_c01385{bottom:308.880000px;}
.y3f_c01385{bottom:317.520000px;}
.y40_c01385{bottom:318.240000px;}
.y3e_c01385{bottom:318.960000px;}
.y67_c01385{bottom:319.680000px;}
.y3d_c01385{bottom:320.400000px;}
.y41_c01385{bottom:321.120000px;}
.y68_c01385{bottom:321.840000px;}
.y3c_c01385{bottom:360.000000px;}
.y3b_c01385{bottom:362.160000px;}
.y66_c01385{bottom:362.880000px;}
.y65_c01385{bottom:363.600000px;}
.y39_c01385{bottom:364.320000px;}
.y3a_c01385{bottom:365.040000px;}
.y33_c01385{bottom:403.920000px;}
.y38_c01385{bottom:405.360000px;}
.y63_c01385{bottom:406.080000px;}
.y32_c01385{bottom:407.520000px;}
.y64_c01385{bottom:408.240000px;}
.y62_c01385{bottom:408.960000px;}
.y31_c01385{bottom:447.840000px;}
.y5f_c01385{bottom:448.560000px;}
.y60_c01385{bottom:449.280000px;}
.y30_c01385{bottom:450.720000px;}
.y61_c01385{bottom:451.440000px;}
.y37_c01385{bottom:452.160000px;}
.y2f_c01385{bottom:491.760000px;}
.y36_c01385{bottom:492.480000px;}
.y5e_c01385{bottom:493.200000px;}
.y2d_c01385{bottom:493.920000px;}
.y2e_c01385{bottom:494.640000px;}
.y2c_c01385{bottom:534.240000px;}
.y2a_c01385{bottom:534.960000px;}
.y35_c01385{bottom:535.680000px;}
.y29_c01385{bottom:537.120000px;}
.y5d_c01385{bottom:537.840000px;}
.y2b_c01385{bottom:538.560000px;}
.y28_c01385{bottom:577.440000px;}
.y5c_c01385{bottom:578.160000px;}
.y34_c01385{bottom:578.880000px;}
.y5b_c01385{bottom:579.600000px;}
.y27_c01385{bottom:580.320000px;}
.y26_c01385{bottom:625.680000px;}
.y25_c01385{bottom:668.160000px;}
.y24_c01385{bottom:668.880000px;}
.y1c_c01385{bottom:717.840000px;}
.y1b_c01385{bottom:718.560000px;}
.y1a_c01385{bottom:720.000000px;}
.y59_c01385{bottom:761.040000px;}
.y19_c01385{bottom:761.760000px;}
.y5a_c01385{bottom:762.480000px;}
.y18_c01385{bottom:763.920000px;}
.y23_c01385{bottom:803.520000px;}
.y22_c01385{bottom:804.240000px;}
.y17_c01385{bottom:805.680000px;}
.y16_c01385{bottom:806.400000px;}
.y20_c01385{bottom:846.000000px;}
.y15_c01385{bottom:846.720000px;}
.y21_c01385{bottom:848.880000px;}
.y14_c01385{bottom:849.600000px;}
.y1e_c01385{bottom:888.480000px;}
.y1d_c01385{bottom:889.200000px;}
.y13_c01385{bottom:889.920000px;}
.y1f_c01385{bottom:891.360000px;}
.y11_c01385{bottom:892.080000px;}
.y10_c01385{bottom:892.800000px;}
.y12_c01385{bottom:894.240000px;}
.yf_c01385{bottom:934.560000px;}
.ye_c01385{bottom:936.000000px;}
.yd_c01385{bottom:936.720000px;}
.yc_c01385{bottom:938.880000px;}
.yb_c01385{bottom:986.400000px;}
.y7_c01385{bottom:987.840000px;}
.y6_c01385{bottom:988.560000px;}
.y5_c01385{bottom:990.000000px;}
.y8_c01385{bottom:991.440000px;}
.ya_c01385{bottom:1029.600000px;}
.y4_c01385{bottom:1030.320000px;}
.y2_c01385{bottom:1031.760000px;}
.y3_c01385{bottom:1032.480000px;}
.y1_c01385{bottom:1033.200000px;}
.y9_c01385{bottom:1080.720000px;}
.hd_c01385{height:28.508906px;}
.ha_c01385{height:33.692344px;}
.hf_c01385{height:38.875781px;}
.h10_c01385{height:41.467500px;}
.h8_c01385{height:44.059219px;}
.h4_c01385{height:46.650937px;}
.h5_c01385{height:49.242656px;}
.h6_c01385{height:51.834375px;}
.h1_c01385{height:54.426094px;}
.hb_c01385{height:57.017812px;}
.h9_c01385{height:59.609531px;}
.h7_c01385{height:62.201250px;}
.hc_c01385{height:64.792969px;}
.h2_c01385{height:67.384687px;}
.h3_c01385{height:69.976406px;}
.he_c01385{height:93.301875px;}
.h0_c01385{height:1152.000000px;}
.w0_c01385{width:781.920000px;}
.w1_c01385{width:782.250000px;}
.x0_c01385{left:0.000000px;}
.x1_c01385{left:56.160000px;}
.x22_c01385{left:88.560000px;}
.x1f_c01385{left:108.720000px;}
.xc_c01385{left:110.160000px;}
.x14_c01385{left:118.800000px;}
.x10_c01385{left:120.240000px;}
.x2_c01385{left:121.680000px;}
.xd_c01385{left:164.160000px;}
.x1b_c01385{left:185.760000px;}
.x25_c01385{left:194.400000px;}
.xe_c01385{left:200.160000px;}
.x27_c01385{left:205.200000px;}
.x11_c01385{left:207.360000px;}
.x5_c01385{left:218.880000px;}
.x1c_c01385{left:227.520000px;}
.x13_c01385{left:228.960000px;}
.x26_c01385{left:247.680000px;}
.x20_c01385{left:249.120000px;}
.x12_c01385{left:250.560000px;}
.x3_c01385{left:252.720000px;}
.x2d_c01385{left:259.920000px;}
.x28_c01385{left:270.000000px;}
.xf_c01385{left:272.160000px;}
.x21_c01385{left:292.320000px;}
.x1d_c01385{left:293.760000px;}
.x2e_c01385{left:313.200000px;}
.x1e_c01385{left:325.440000px;}
.x6_c01385{left:326.880000px;}
.x4_c01385{left:337.680000px;}
.x33_c01385{left:345.600000px;}
.x29_c01385{left:377.280000px;}
.x34_c01385{left:387.360000px;}
.x31_c01385{left:409.680000px;}
.x2a_c01385{left:431.280000px;}
.x2f_c01385{left:441.360000px;}
.x32_c01385{left:463.680000px;}
.x2b_c01385{left:486.000000px;}
.x30_c01385{left:496.080000px;}
.x2c_c01385{left:570.240000px;}
.x23_c01385{left:572.400000px;}
.x24_c01385{left:582.480090px;}
.xb_c01385{left:583.920000px;}
.x15_c01385{left:606.240000px;}
.x3b_c01385{left:634.320000px;}
.x38_c01385{left:635.760000px;}
.x35_c01385{left:637.200000px;}
.x8_c01385{left:639.360000px;}
.x3c_c01385{left:667.440000px;}
.x36_c01385{left:668.880000px;}
.x16_c01385{left:671.040000px;}
.x7_c01385{left:673.920000px;}
.x1a_c01385{left:680.400000px;}
.x9_c01385{left:682.560000px;}
.x3a_c01385{left:700.560000px;}
.x19_c01385{left:703.440000px;}
.x37_c01385{left:711.360000px;}
.x18_c01385{left:712.800000px;}
.xa_c01385{left:714.960000px;}
.x39_c01385{left:731.520000px;}
.x17_c01385{left:734.400000px;}
@media print{
.v0_c01385{vertical-align:0.000000pt;}
.ls0_c01385{letter-spacing:0.000000pt;}
.ws1_c01385{word-spacing:0.000000pt;}
.ws0_c01385{word-spacing:12.653824pt;}
.fsc_c01385{font-size:28.160000pt;}
.fs9_c01385{font-size:33.280000pt;}
.fse_c01385{font-size:38.400000pt;}
.fsf_c01385{font-size:40.960000pt;}
.fs7_c01385{font-size:43.520000pt;}
.fs3_c01385{font-size:46.080000pt;}
.fs4_c01385{font-size:48.640000pt;}
.fs5_c01385{font-size:51.200000pt;}
.fs0_c01385{font-size:53.760000pt;}
.fsa_c01385{font-size:56.320000pt;}
.fs8_c01385{font-size:58.880000pt;}
.fs6_c01385{font-size:61.440000pt;}
.fsb_c01385{font-size:64.000000pt;}
.fs1_c01385{font-size:66.560000pt;}
.fs2_c01385{font-size:69.120000pt;}
.fsd_c01385{font-size:92.160000pt;}
.y0_c01385{bottom:0.000000pt;}
.y56_c01385{bottom:60.160000pt;}
.y58_c01385{bottom:60.800000pt;}
.y57_c01385{bottom:62.080000pt;}
.y55_c01385{bottom:63.360000pt;}
.y6d_c01385{bottom:64.000000pt;}
.y6e_c01385{bottom:65.920000pt;}
.y52_c01385{bottom:98.560000pt;}
.y54_c01385{bottom:99.840000pt;}
.y53_c01385{bottom:100.480000pt;}
.y6b_c01385{bottom:102.400000pt;}
.y51_c01385{bottom:103.040000pt;}
.y6c_c01385{bottom:103.680000pt;}
.y4f_c01385{bottom:138.880000pt;}
.y50_c01385{bottom:140.800000pt;}
.y4e_c01385{bottom:141.440000pt;}
.y4d_c01385{bottom:175.360000pt;}
.y4c_c01385{bottom:176.000000pt;}
.y4a_c01385{bottom:206.080000pt;}
.y49_c01385{bottom:206.720000pt;}
.y48_c01385{bottom:208.000000pt;}
.y4b_c01385{bottom:208.640000pt;}
.y6a_c01385{bottom:209.280000pt;}
.y46_c01385{bottom:244.480000pt;}
.y44_c01385{bottom:245.120000pt;}
.y47_c01385{bottom:245.760000pt;}
.y43_c01385{bottom:246.400000pt;}
.y45_c01385{bottom:247.040000pt;}
.y69_c01385{bottom:248.320000pt;}
.y42_c01385{bottom:274.560000pt;}
.y3f_c01385{bottom:282.240000pt;}
.y40_c01385{bottom:282.880000pt;}
.y3e_c01385{bottom:283.520000pt;}
.y67_c01385{bottom:284.160000pt;}
.y3d_c01385{bottom:284.800000pt;}
.y41_c01385{bottom:285.440000pt;}
.y68_c01385{bottom:286.080000pt;}
.y3c_c01385{bottom:320.000000pt;}
.y3b_c01385{bottom:321.920000pt;}
.y66_c01385{bottom:322.560000pt;}
.y65_c01385{bottom:323.200000pt;}
.y39_c01385{bottom:323.840000pt;}
.y3a_c01385{bottom:324.480000pt;}
.y33_c01385{bottom:359.040000pt;}
.y38_c01385{bottom:360.320000pt;}
.y63_c01385{bottom:360.960000pt;}
.y32_c01385{bottom:362.240000pt;}
.y64_c01385{bottom:362.880000pt;}
.y62_c01385{bottom:363.520000pt;}
.y31_c01385{bottom:398.080000pt;}
.y5f_c01385{bottom:398.720000pt;}
.y60_c01385{bottom:399.360000pt;}
.y30_c01385{bottom:400.640000pt;}
.y61_c01385{bottom:401.280000pt;}
.y37_c01385{bottom:401.920000pt;}
.y2f_c01385{bottom:437.120000pt;}
.y36_c01385{bottom:437.760000pt;}
.y5e_c01385{bottom:438.400000pt;}
.y2d_c01385{bottom:439.040000pt;}
.y2e_c01385{bottom:439.680000pt;}
.y2c_c01385{bottom:474.880000pt;}
.y2a_c01385{bottom:475.520000pt;}
.y35_c01385{bottom:476.160000pt;}
.y29_c01385{bottom:477.440000pt;}
.y5d_c01385{bottom:478.080000pt;}
.y2b_c01385{bottom:478.720000pt;}
.y28_c01385{bottom:513.280000pt;}
.y5c_c01385{bottom:513.920000pt;}
.y34_c01385{bottom:514.560000pt;}
.y5b_c01385{bottom:515.200000pt;}
.y27_c01385{bottom:515.840000pt;}
.y26_c01385{bottom:556.160000pt;}
.y25_c01385{bottom:593.920000pt;}
.y24_c01385{bottom:594.560000pt;}
.y1c_c01385{bottom:638.080000pt;}
.y1b_c01385{bottom:638.720000pt;}
.y1a_c01385{bottom:640.000000pt;}
.y59_c01385{bottom:676.480000pt;}
.y19_c01385{bottom:677.120000pt;}
.y5a_c01385{bottom:677.760000pt;}
.y18_c01385{bottom:679.040000pt;}
.y23_c01385{bottom:714.240000pt;}
.y22_c01385{bottom:714.880000pt;}
.y17_c01385{bottom:716.160000pt;}
.y16_c01385{bottom:716.800000pt;}
.y20_c01385{bottom:752.000000pt;}
.y15_c01385{bottom:752.640000pt;}
.y21_c01385{bottom:754.560000pt;}
.y14_c01385{bottom:755.200000pt;}
.y1e_c01385{bottom:789.760000pt;}
.y1d_c01385{bottom:790.400000pt;}
.y13_c01385{bottom:791.040000pt;}
.y1f_c01385{bottom:792.320000pt;}
.y11_c01385{bottom:792.960000pt;}
.y10_c01385{bottom:793.600000pt;}
.y12_c01385{bottom:794.880000pt;}
.yf_c01385{bottom:830.720000pt;}
.ye_c01385{bottom:832.000000pt;}
.yd_c01385{bottom:832.640000pt;}
.yc_c01385{bottom:834.560000pt;}
.yb_c01385{bottom:876.800000pt;}
.y7_c01385{bottom:878.080000pt;}
.y6_c01385{bottom:878.720000pt;}
.y5_c01385{bottom:880.000000pt;}
.y8_c01385{bottom:881.280000pt;}
.ya_c01385{bottom:915.200000pt;}
.y4_c01385{bottom:915.840000pt;}
.y2_c01385{bottom:917.120000pt;}
.y3_c01385{bottom:917.760000pt;}
.y1_c01385{bottom:918.400000pt;}
.y9_c01385{bottom:960.640000pt;}
.hd_c01385{height:25.341250pt;}
.ha_c01385{height:29.948750pt;}
.hf_c01385{height:34.556250pt;}
.h10_c01385{height:36.860000pt;}
.h8_c01385{height:39.163750pt;}
.h4_c01385{height:41.467500pt;}
.h5_c01385{height:43.771250pt;}
.h6_c01385{height:46.075000pt;}
.h1_c01385{height:48.378750pt;}
.hb_c01385{height:50.682500pt;}
.h9_c01385{height:52.986250pt;}
.h7_c01385{height:55.290000pt;}
.hc_c01385{height:57.593750pt;}
.h2_c01385{height:59.897500pt;}
.h3_c01385{height:62.201250pt;}
.he_c01385{height:82.935000pt;}
.h0_c01385{height:1024.000000pt;}
.w0_c01385{width:695.040000pt;}
.w1_c01385{width:695.333333pt;}
.x0_c01385{left:0.000000pt;}
.x1_c01385{left:49.920000pt;}
.x22_c01385{left:78.720000pt;}
.x1f_c01385{left:96.640000pt;}
.xc_c01385{left:97.920000pt;}
.x14_c01385{left:105.600000pt;}
.x10_c01385{left:106.880000pt;}
.x2_c01385{left:108.160000pt;}
.xd_c01385{left:145.920000pt;}
.x1b_c01385{left:165.120000pt;}
.x25_c01385{left:172.800000pt;}
.xe_c01385{left:177.920000pt;}
.x27_c01385{left:182.400000pt;}
.x11_c01385{left:184.320000pt;}
.x5_c01385{left:194.560000pt;}
.x1c_c01385{left:202.240000pt;}
.x13_c01385{left:203.520000pt;}
.x26_c01385{left:220.160000pt;}
.x20_c01385{left:221.440000pt;}
.x12_c01385{left:222.720000pt;}
.x3_c01385{left:224.640000pt;}
.x2d_c01385{left:231.040000pt;}
.x28_c01385{left:240.000000pt;}
.xf_c01385{left:241.920000pt;}
.x21_c01385{left:259.840000pt;}
.x1d_c01385{left:261.120000pt;}
.x2e_c01385{left:278.400000pt;}
.x1e_c01385{left:289.280000pt;}
.x6_c01385{left:290.560000pt;}
.x4_c01385{left:300.160000pt;}
.x33_c01385{left:307.200000pt;}
.x29_c01385{left:335.360000pt;}
.x34_c01385{left:344.320000pt;}
.x31_c01385{left:364.160000pt;}
.x2a_c01385{left:383.360000pt;}
.x2f_c01385{left:392.320000pt;}
.x32_c01385{left:412.160000pt;}
.x2b_c01385{left:432.000000pt;}
.x30_c01385{left:440.960000pt;}
.x2c_c01385{left:506.880000pt;}
.x23_c01385{left:508.800000pt;}
.x24_c01385{left:517.760080pt;}
.xb_c01385{left:519.040000pt;}
.x15_c01385{left:538.880000pt;}
.x3b_c01385{left:563.840000pt;}
.x38_c01385{left:565.120000pt;}
.x35_c01385{left:566.400000pt;}
.x8_c01385{left:568.320000pt;}
.x3c_c01385{left:593.280000pt;}
.x36_c01385{left:594.560000pt;}
.x16_c01385{left:596.480000pt;}
.x7_c01385{left:599.040000pt;}
.x1a_c01385{left:604.800000pt;}
.x9_c01385{left:606.720000pt;}
.x3a_c01385{left:622.720000pt;}
.x19_c01385{left:625.280000pt;}
.x37_c01385{left:632.320000pt;}
.x18_c01385{left:633.600000pt;}
.xa_c01385{left:635.520000pt;}
.x39_c01385{left:650.240000pt;}
.x17_c01385{left:652.800000pt;}
}





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

.ir_c01386:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01386{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01386;src:url('chunks/assets/font_267dcfa7fa9c9dd25a2dbee3.woff2')format("woff");}.ff1_c01386{font-family:ff1_c01386;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m47_c01386{transform:matrix(0.170450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170450,0.000000,0.000000,0.250000,0,0);}
.mb_c01386{transform:matrix(0.213375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213375,0.000000,0.000000,0.250000,0,0);}
.m48_c01386{transform:matrix(0.219800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219800,0.000000,0.000000,0.250000,0,0);}
.m39_c01386{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);}
.m43_c01386{transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);}
.m42_c01386{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m9_c01386{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_c01386{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);}
.m28_c01386{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_c01386{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);}
.m21_c01386{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);}
.m2a_c01386{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);}
.m2f_c01386{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.ma_c01386{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m6_c01386{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);}
.m3c_c01386{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m3_c01386{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m15_c01386{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m7_c01386{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);}
.m1e_c01386{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01386{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m32_c01386{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m29_c01386{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01386{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m35_c01386{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01386{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01386{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m18_c01386{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m10_c01386{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m2_c01386{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m17_c01386{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01386{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01386{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m38_c01386{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m13_c01386{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m25_c01386{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);}
.m45_c01386{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01386{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01386{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);}
.m2d_c01386{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m33_c01386{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);}
.m31_c01386{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m41_c01386{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.md_c01386{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m24_c01386{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);}
.m40_c01386{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m27_c01386{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m37_c01386{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_c01386{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.me_c01386{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);}
.mc_c01386{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01386{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);}
.m0_c01386{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m20_c01386{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m14_c01386{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);}
.m8_c01386{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01386{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01386{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);}
.mf_c01386{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);}
.m2c_c01386{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m22_c01386{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m30_c01386{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m19_c01386{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);}
.m26_c01386{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);}
.m23_c01386{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m46_c01386{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m12_c01386{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m44_c01386{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m5_c01386{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);}
.m11_c01386{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);}
.m34_c01386{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m36_c01386{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01386{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.v4_c01386{vertical-align:-8.640000px;}
.v2_c01386{vertical-align:-5.760000px;}
.v0_c01386{vertical-align:0.000000px;}
.v3_c01386{vertical-align:2.880000px;}
.v1_c01386{vertical-align:8.640000px;}
.ls1_c01386{letter-spacing:0.000000px;}
.ls0_c01386{letter-spacing:85.783680px;}
.sc__c01386{text-shadow:none;}
.sc0_c01386{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01386{-webkit-text-stroke:0px transparent;}
.sc0_c01386{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01386{word-spacing:-2.331600px;}
.ws0_c01386{word-spacing:-0.722640px;}
.ws5_c01386{word-spacing:0.000000px;}
.ws2_c01386{word-spacing:10.267200px;}
.ws4_c01386{word-spacing:10.749853px;}
.ws3_c01386{word-spacing:53.731200px;}
.fc0_c01386{color:transparent;}
.fse_c01386{font-size:31.680000px;}
.fsd_c01386{font-size:34.560000px;}
.fsb_c01386{font-size:40.320000px;}
.fs9_c01386{font-size:46.080000px;}
.fs7_c01386{font-size:48.960000px;}
.fs2_c01386{font-size:51.840000px;}
.fs8_c01386{font-size:54.720000px;}
.fs4_c01386{font-size:57.600000px;}
.fs0_c01386{font-size:60.480000px;}
.fsc_c01386{font-size:63.360000px;}
.fs6_c01386{font-size:66.240000px;}
.fsa_c01386{font-size:69.120000px;}
.fs3_c01386{font-size:72.000000px;}
.fs1_c01386{font-size:74.880000px;}
.fs5_c01386{font-size:77.760000px;}
.fsf_c01386{font-size:95.040000px;}
.y0_c01386{bottom:0.000000px;}
.y70_c01386{bottom:41.760000px;}
.y6d_c01386{bottom:45.360000px;}
.y6e_c01386{bottom:47.520000px;}
.y6c_c01386{bottom:49.680000px;}
.y6f_c01386{bottom:50.400000px;}
.y72_c01386{bottom:53.280000px;}
.y71_c01386{bottom:54.000000px;}
.y47_c01386{bottom:89.280000px;}
.y46_c01386{bottom:93.600000px;}
.y6b_c01386{bottom:94.320000px;}
.y6a_c01386{bottom:95.760000px;}
.y44_c01386{bottom:133.200000px;}
.y45_c01386{bottom:133.920000px;}
.y43_c01386{bottom:136.800000px;}
.y69_c01386{bottom:137.520000px;}
.y42_c01386{bottom:176.400000px;}
.y41_c01386{bottom:180.000000px;}
.y66_c01386{bottom:180.720000px;}
.y68_c01386{bottom:181.440000px;}
.y67_c01386{bottom:183.600000px;}
.y3c_c01386{bottom:219.600000px;}
.y3d_c01386{bottom:221.040000px;}
.y3e_c01386{bottom:221.760000px;}
.y40_c01386{bottom:222.480000px;}
.y3b_c01386{bottom:223.200000px;}
.y64_c01386{bottom:223.920000px;}
.y3f_c01386{bottom:224.640000px;}
.y65_c01386{bottom:225.360000px;}
.y38_c01386{bottom:262.800000px;}
.y37_c01386{bottom:266.400000px;}
.y39_c01386{bottom:267.120000px;}
.y3a_c01386{bottom:267.840000px;}
.y63_c01386{bottom:270.000000px;}
.y36_c01386{bottom:308.160000px;}
.y34_c01386{bottom:309.600000px;}
.y35_c01386{bottom:310.320000px;}
.y62_c01386{bottom:313.200000px;}
.y32_c01386{bottom:349.920000px;}
.y33_c01386{bottom:350.640000px;}
.y31_c01386{bottom:351.360000px;}
.y2d_c01386{bottom:383.040000px;}
.y2e_c01386{bottom:383.760000px;}
.y30_c01386{bottom:384.480000px;}
.y2c_c01386{bottom:385.920000px;}
.y2f_c01386{bottom:386.640000px;}
.y61_c01386{bottom:387.360000px;}
.y60_c01386{bottom:388.080000px;}
.y2a_c01386{bottom:425.520000px;}
.y2b_c01386{bottom:426.240000px;}
.y29_c01386{bottom:428.400000px;}
.y5e_c01386{bottom:429.120000px;}
.y5f_c01386{bottom:430.560000px;}
.y27_c01386{bottom:468.720000px;}
.y28_c01386{bottom:469.440000px;}
.y5d_c01386{bottom:471.600000px;}
.y26_c01386{bottom:472.320000px;}
.y25_c01386{bottom:512.640000px;}
.y5b_c01386{bottom:514.800000px;}
.y24_c01386{bottom:515.520000px;}
.y5c_c01386{bottom:516.960000px;}
.y22_c01386{bottom:555.840000px;}
.y23_c01386{bottom:556.560000px;}
.y59_c01386{bottom:557.280000px;}
.y21_c01386{bottom:558.000000px;}
.y5a_c01386{bottom:559.440000px;}
.y20_c01386{bottom:599.040000px;}
.y1f_c01386{bottom:601.200000px;}
.y58_c01386{bottom:602.640000px;}
.y1d_c01386{bottom:642.240000px;}
.y1e_c01386{bottom:642.960000px;}
.y1c_c01386{bottom:643.680000px;}
.y56_c01386{bottom:644.400000px;}
.y53_c01386{bottom:645.120000px;}
.y57_c01386{bottom:646.560000px;}
.y18_c01386{bottom:685.440000px;}
.y1b_c01386{bottom:686.160000px;}
.y19_c01386{bottom:686.880000px;}
.y17_c01386{bottom:687.600000px;}
.y55_c01386{bottom:688.320000px;}
.y1a_c01386{bottom:689.040000px;}
.y16_c01386{bottom:728.640000px;}
.y15_c01386{bottom:730.800000px;}
.y54_c01386{bottom:732.960000px;}
.y10_c01386{bottom:771.840000px;}
.y14_c01386{bottom:772.560000px;}
.y11_c01386{bottom:773.280000px;}
.yf_c01386{bottom:774.720000px;}
.y13_c01386{bottom:775.440000px;}
.y12_c01386{bottom:776.880000px;}
.ye_c01386{bottom:819.360000px;}
.yd_c01386{bottom:869.040000px;}
.yc_c01386{bottom:870.480000px;}
.y52_c01386{bottom:872.640000px;}
.yb_c01386{bottom:912.240000px;}
.ya_c01386{bottom:912.960000px;}
.y9_c01386{bottom:913.680000px;}
.y50_c01386{bottom:915.120000px;}
.y51_c01386{bottom:915.840000px;}
.y7_c01386{bottom:954.720000px;}
.y8_c01386{bottom:955.440000px;}
.y4f_c01386{bottom:956.160000px;}
.y6_c01386{bottom:957.600000px;}
.y4e_c01386{bottom:958.320000px;}
.y4c_c01386{bottom:997.920000px;}
.y5_c01386{bottom:998.640000px;}
.y3_c01386{bottom:999.360000px;}
.y4d_c01386{bottom:1001.520000px;}
.y4_c01386{bottom:1002.240000px;}
.y49_c01386{bottom:1041.120000px;}
.y2_c01386{bottom:1041.840000px;}
.y4b_c01386{bottom:1042.560000px;}
.y1_c01386{bottom:1043.280000px;}
.y4a_c01386{bottom:1044.000000px;}
.y48_c01386{bottom:1090.800000px;}
.h11_c01386{height:28.508906px;}
.h10_c01386{height:31.100625px;}
.he_c01386{height:36.284062px;}
.hb_c01386{height:41.467500px;}
.h9_c01386{height:44.059219px;}
.h4_c01386{height:46.650937px;}
.ha_c01386{height:49.242656px;}
.h12_c01386{height:49.530938px;}
.h6_c01386{height:51.834375px;}
.hd_c01386{height:52.699219px;}
.h2_c01386{height:54.426094px;}
.hf_c01386{height:57.017812px;}
.h8_c01386{height:59.609531px;}
.hc_c01386{height:62.201250px;}
.h5_c01386{height:64.792969px;}
.h3_c01386{height:67.384687px;}
.h7_c01386{height:69.976406px;}
.h13_c01386{height:85.526719px;}
.h1_c01386{height:1151.250000px;}
.h0_c01386{height:1151.280000px;}
.w0_c01386{width:781.920000px;}
.w1_c01386{width:782.250000px;}
.x0_c01386{left:0.000000px;}
.x1_c01386{left:56.160000px;}
.x7_c01386{left:57.600000px;}
.x22_c01386{left:59.040000px;}
.x16_c01386{left:68.400000px;}
.x5_c01386{left:77.760000px;}
.x24_c01386{left:91.440000px;}
.x8_c01386{left:110.880000px;}
.x2_c01386{left:120.960000px;}
.x1d_c01386{left:122.400000px;}
.x9_c01386{left:164.880000px;}
.xe_c01386{left:197.280000px;}
.x14_c01386{left:208.080000px;}
.xa_c01386{left:209.520000px;}
.x6_c01386{left:219.600000px;}
.x3_c01386{left:252.000000px;}
.x23_c01386{left:262.080000px;}
.xf_c01386{left:263.520000px;}
.x17_c01386{left:272.160000px;}
.x1f_c01386{left:273.600000px;}
.x15_c01386{left:283.680000px;}
.xb_c01386{left:293.760000px;}
.x1e_c01386{left:305.280000px;}
.x18_c01386{left:317.520000px;}
.x4_c01386{left:337.680000px;}
.x13_c01386{left:339.120000px;}
.xc_c01386{left:349.200000px;}
.x35_c01386{left:358.560000px;}
.x20_c01386{left:369.360000px;}
.x10_c01386{left:380.160000px;}
.xd_c01386{left:401.760000px;}
.x19_c01386{left:403.200000px;}
.x11_c01386{left:424.080000px;}
.x1a_c01386{left:456.480000px;}
.x12_c01386{left:477.360000px;}
.x36_c01386{left:488.160000px;}
.x1b_c01386{left:498.240000px;}
.x21_c01386{left:509.040000px;}
.x37_c01386{left:540.720000px;}
.x32_c01386{left:583.200000px;}
.x1c_c01386{left:585.360000px;}
.x33_c01386{left:604.800000px;}
.x26_c01386{left:606.960000px;}
.x2e_c01386{left:637.200000px;}
.x2a_c01386{left:639.360000px;}
.x29_c01386{left:640.800000px;}
.x31_c01386{left:670.320000px;}
.x2c_c01386{left:671.760000px;}
.x34_c01386{left:680.400000px;}
.x27_c01386{left:682.560000px;}
.x25_c01386{left:691.920000px;}
.x2d_c01386{left:704.160000px;}
.x30_c01386{left:712.800000px;}
.x28_c01386{left:714.960000px;}
.x2f_c01386{left:734.400000px;}
.x2b_c01386{left:735.840000px;}
@media print{
.v4_c01386{vertical-align:-7.680000pt;}
.v2_c01386{vertical-align:-5.120000pt;}
.v0_c01386{vertical-align:0.000000pt;}
.v3_c01386{vertical-align:2.560000pt;}
.v1_c01386{vertical-align:7.680000pt;}
.ls1_c01386{letter-spacing:0.000000pt;}
.ls0_c01386{letter-spacing:76.252160pt;}
.ws1_c01386{word-spacing:-2.072533pt;}
.ws0_c01386{word-spacing:-0.642347pt;}
.ws5_c01386{word-spacing:0.000000pt;}
.ws2_c01386{word-spacing:9.126400pt;}
.ws4_c01386{word-spacing:9.555425pt;}
.ws3_c01386{word-spacing:47.761067pt;}
.fse_c01386{font-size:28.160000pt;}
.fsd_c01386{font-size:30.720000pt;}
.fsb_c01386{font-size:35.840000pt;}
.fs9_c01386{font-size:40.960000pt;}
.fs7_c01386{font-size:43.520000pt;}
.fs2_c01386{font-size:46.080000pt;}
.fs8_c01386{font-size:48.640000pt;}
.fs4_c01386{font-size:51.200000pt;}
.fs0_c01386{font-size:53.760000pt;}
.fsc_c01386{font-size:56.320000pt;}
.fs6_c01386{font-size:58.880000pt;}
.fsa_c01386{font-size:61.440000pt;}
.fs3_c01386{font-size:64.000000pt;}
.fs1_c01386{font-size:66.560000pt;}
.fs5_c01386{font-size:69.120000pt;}
.fsf_c01386{font-size:84.480000pt;}
.y0_c01386{bottom:0.000000pt;}
.y70_c01386{bottom:37.120000pt;}
.y6d_c01386{bottom:40.320000pt;}
.y6e_c01386{bottom:42.240000pt;}
.y6c_c01386{bottom:44.160000pt;}
.y6f_c01386{bottom:44.800000pt;}
.y72_c01386{bottom:47.360000pt;}
.y71_c01386{bottom:48.000000pt;}
.y47_c01386{bottom:79.360000pt;}
.y46_c01386{bottom:83.200000pt;}
.y6b_c01386{bottom:83.840000pt;}
.y6a_c01386{bottom:85.120000pt;}
.y44_c01386{bottom:118.400000pt;}
.y45_c01386{bottom:119.040000pt;}
.y43_c01386{bottom:121.600000pt;}
.y69_c01386{bottom:122.240000pt;}
.y42_c01386{bottom:156.800000pt;}
.y41_c01386{bottom:160.000000pt;}
.y66_c01386{bottom:160.640000pt;}
.y68_c01386{bottom:161.280000pt;}
.y67_c01386{bottom:163.200000pt;}
.y3c_c01386{bottom:195.200000pt;}
.y3d_c01386{bottom:196.480000pt;}
.y3e_c01386{bottom:197.120000pt;}
.y40_c01386{bottom:197.760000pt;}
.y3b_c01386{bottom:198.400000pt;}
.y64_c01386{bottom:199.040000pt;}
.y3f_c01386{bottom:199.680000pt;}
.y65_c01386{bottom:200.320000pt;}
.y38_c01386{bottom:233.600000pt;}
.y37_c01386{bottom:236.800000pt;}
.y39_c01386{bottom:237.440000pt;}
.y3a_c01386{bottom:238.080000pt;}
.y63_c01386{bottom:240.000000pt;}
.y36_c01386{bottom:273.920000pt;}
.y34_c01386{bottom:275.200000pt;}
.y35_c01386{bottom:275.840000pt;}
.y62_c01386{bottom:278.400000pt;}
.y32_c01386{bottom:311.040000pt;}
.y33_c01386{bottom:311.680000pt;}
.y31_c01386{bottom:312.320000pt;}
.y2d_c01386{bottom:340.480000pt;}
.y2e_c01386{bottom:341.120000pt;}
.y30_c01386{bottom:341.760000pt;}
.y2c_c01386{bottom:343.040000pt;}
.y2f_c01386{bottom:343.680000pt;}
.y61_c01386{bottom:344.320000pt;}
.y60_c01386{bottom:344.960000pt;}
.y2a_c01386{bottom:378.240000pt;}
.y2b_c01386{bottom:378.880000pt;}
.y29_c01386{bottom:380.800000pt;}
.y5e_c01386{bottom:381.440000pt;}
.y5f_c01386{bottom:382.720000pt;}
.y27_c01386{bottom:416.640000pt;}
.y28_c01386{bottom:417.280000pt;}
.y5d_c01386{bottom:419.200000pt;}
.y26_c01386{bottom:419.840000pt;}
.y25_c01386{bottom:455.680000pt;}
.y5b_c01386{bottom:457.600000pt;}
.y24_c01386{bottom:458.240000pt;}
.y5c_c01386{bottom:459.520000pt;}
.y22_c01386{bottom:494.080000pt;}
.y23_c01386{bottom:494.720000pt;}
.y59_c01386{bottom:495.360000pt;}
.y21_c01386{bottom:496.000000pt;}
.y5a_c01386{bottom:497.280000pt;}
.y20_c01386{bottom:532.480000pt;}
.y1f_c01386{bottom:534.400000pt;}
.y58_c01386{bottom:535.680000pt;}
.y1d_c01386{bottom:570.880000pt;}
.y1e_c01386{bottom:571.520000pt;}
.y1c_c01386{bottom:572.160000pt;}
.y56_c01386{bottom:572.800000pt;}
.y53_c01386{bottom:573.440000pt;}
.y57_c01386{bottom:574.720000pt;}
.y18_c01386{bottom:609.280000pt;}
.y1b_c01386{bottom:609.920000pt;}
.y19_c01386{bottom:610.560000pt;}
.y17_c01386{bottom:611.200000pt;}
.y55_c01386{bottom:611.840000pt;}
.y1a_c01386{bottom:612.480000pt;}
.y16_c01386{bottom:647.680000pt;}
.y15_c01386{bottom:649.600000pt;}
.y54_c01386{bottom:651.520000pt;}
.y10_c01386{bottom:686.080000pt;}
.y14_c01386{bottom:686.720000pt;}
.y11_c01386{bottom:687.360000pt;}
.yf_c01386{bottom:688.640000pt;}
.y13_c01386{bottom:689.280000pt;}
.y12_c01386{bottom:690.560000pt;}
.ye_c01386{bottom:728.320000pt;}
.yd_c01386{bottom:772.480000pt;}
.yc_c01386{bottom:773.760000pt;}
.y52_c01386{bottom:775.680000pt;}
.yb_c01386{bottom:810.880000pt;}
.ya_c01386{bottom:811.520000pt;}
.y9_c01386{bottom:812.160000pt;}
.y50_c01386{bottom:813.440000pt;}
.y51_c01386{bottom:814.080000pt;}
.y7_c01386{bottom:848.640000pt;}
.y8_c01386{bottom:849.280000pt;}
.y4f_c01386{bottom:849.920000pt;}
.y6_c01386{bottom:851.200000pt;}
.y4e_c01386{bottom:851.840000pt;}
.y4c_c01386{bottom:887.040000pt;}
.y5_c01386{bottom:887.680000pt;}
.y3_c01386{bottom:888.320000pt;}
.y4d_c01386{bottom:890.240000pt;}
.y4_c01386{bottom:890.880000pt;}
.y49_c01386{bottom:925.440000pt;}
.y2_c01386{bottom:926.080000pt;}
.y4b_c01386{bottom:926.720000pt;}
.y1_c01386{bottom:927.360000pt;}
.y4a_c01386{bottom:928.000000pt;}
.y48_c01386{bottom:969.600000pt;}
.h11_c01386{height:25.341250pt;}
.h10_c01386{height:27.645000pt;}
.he_c01386{height:32.252500pt;}
.hb_c01386{height:36.860000pt;}
.h9_c01386{height:39.163750pt;}
.h4_c01386{height:41.467500pt;}
.ha_c01386{height:43.771250pt;}
.h12_c01386{height:44.027500pt;}
.h6_c01386{height:46.075000pt;}
.hd_c01386{height:46.843750pt;}
.h2_c01386{height:48.378750pt;}
.hf_c01386{height:50.682500pt;}
.h8_c01386{height:52.986250pt;}
.hc_c01386{height:55.290000pt;}
.h5_c01386{height:57.593750pt;}
.h3_c01386{height:59.897500pt;}
.h7_c01386{height:62.201250pt;}
.h13_c01386{height:76.023750pt;}
.h1_c01386{height:1023.333333pt;}
.h0_c01386{height:1023.360000pt;}
.w0_c01386{width:695.040000pt;}
.w1_c01386{width:695.333333pt;}
.x0_c01386{left:0.000000pt;}
.x1_c01386{left:49.920000pt;}
.x7_c01386{left:51.200000pt;}
.x22_c01386{left:52.480000pt;}
.x16_c01386{left:60.800000pt;}
.x5_c01386{left:69.120000pt;}
.x24_c01386{left:81.280000pt;}
.x8_c01386{left:98.560000pt;}
.x2_c01386{left:107.520000pt;}
.x1d_c01386{left:108.800000pt;}
.x9_c01386{left:146.560000pt;}
.xe_c01386{left:175.360000pt;}
.x14_c01386{left:184.960000pt;}
.xa_c01386{left:186.240000pt;}
.x6_c01386{left:195.200000pt;}
.x3_c01386{left:224.000000pt;}
.x23_c01386{left:232.960000pt;}
.xf_c01386{left:234.240000pt;}
.x17_c01386{left:241.920000pt;}
.x1f_c01386{left:243.200000pt;}
.x15_c01386{left:252.160000pt;}
.xb_c01386{left:261.120000pt;}
.x1e_c01386{left:271.360000pt;}
.x18_c01386{left:282.240000pt;}
.x4_c01386{left:300.160000pt;}
.x13_c01386{left:301.440000pt;}
.xc_c01386{left:310.400000pt;}
.x35_c01386{left:318.720000pt;}
.x20_c01386{left:328.320000pt;}
.x10_c01386{left:337.920000pt;}
.xd_c01386{left:357.120000pt;}
.x19_c01386{left:358.400000pt;}
.x11_c01386{left:376.960000pt;}
.x1a_c01386{left:405.760000pt;}
.x12_c01386{left:424.320000pt;}
.x36_c01386{left:433.920000pt;}
.x1b_c01386{left:442.880000pt;}
.x21_c01386{left:452.480000pt;}
.x37_c01386{left:480.640000pt;}
.x32_c01386{left:518.400000pt;}
.x1c_c01386{left:520.320000pt;}
.x33_c01386{left:537.600000pt;}
.x26_c01386{left:539.520000pt;}
.x2e_c01386{left:566.400000pt;}
.x2a_c01386{left:568.320000pt;}
.x29_c01386{left:569.600000pt;}
.x31_c01386{left:595.840000pt;}
.x2c_c01386{left:597.120000pt;}
.x34_c01386{left:604.800000pt;}
.x27_c01386{left:606.720000pt;}
.x25_c01386{left:615.040000pt;}
.x2d_c01386{left:625.920000pt;}
.x30_c01386{left:633.600000pt;}
.x28_c01386{left:635.520000pt;}
.x2f_c01386{left:652.800000pt;}
.x2b_c01386{left:654.080000pt;}
}





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

.ir_c01387:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01387{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01387;src:url('chunks/assets/font_ec3f5d6331c97133757f0921.woff2')format("woff");}.ff1_c01387{font-family:ff1_c01387;line-height:1.109863;font-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_c01387{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01387{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01387{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);}
.m34_c01387{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m6_c01387{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);}
.m38_c01387{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m13_c01387{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01387{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);}
.m3a_c01387{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_c01387{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mf_c01387{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m17_c01387{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01387{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_c01387{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mb_c01387{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m8_c01387{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);}
.m25_c01387{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m10_c01387{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);}
.m2c_c01387{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m26_c01387{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m39_c01387{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01387{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01387{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01387{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m4_c01387{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m9_c01387{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01387{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m35_c01387{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m36_c01387{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m18_c01387{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01387{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m31_c01387{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m22_c01387{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m20_c01387{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_c01387{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);}
.m21_c01387{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01387{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m15_c01387{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m29_c01387{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);}
.m32_c01387{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m0_c01387{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m3_c01387{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);}
.m1d_c01387{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m2_c01387{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01387{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);}
.m3b_c01387{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01387{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);}
.mc_c01387{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m1_c01387{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m5_c01387{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m19_c01387{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.ma_c01387{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m37_c01387{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01387{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m33_c01387{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);}
.m24_c01387{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m28_c01387{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m14_c01387{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m16_c01387{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m27_c01387{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);}
.m23_c01387{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01387{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01387{transform:matrix(0.932500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.932500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.932500,0.000000,0.000000,0.250000,0,0);}
.v0_c01387{vertical-align:0.000000px;}
.ls0_c01387{letter-spacing:0.000000px;}
.sc__c01387{text-shadow:none;}
.sc0_c01387{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01387{-webkit-text-stroke:0px transparent;}
.sc0_c01387{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01387{word-spacing:0.000000px;}
.fc0_c01387{color:transparent;}
.fsa_c01387{font-size:31.680000px;}
.fsd_c01387{font-size:34.560000px;}
.fs1_c01387{font-size:46.080000px;}
.fs9_c01387{font-size:48.960000px;}
.fs0_c01387{font-size:51.840000px;}
.fs6_c01387{font-size:54.720000px;}
.fs4_c01387{font-size:57.600000px;}
.fs2_c01387{font-size:60.480000px;}
.fsc_c01387{font-size:63.360000px;}
.fs8_c01387{font-size:66.240000px;}
.fs7_c01387{font-size:69.120000px;}
.fs5_c01387{font-size:72.000000px;}
.fs3_c01387{font-size:74.880000px;}
.fsb_c01387{font-size:77.760000px;}
.y0_c01387{bottom:0.000000px;}
.y49_c01387{bottom:61.920000px;}
.y4a_c01387{bottom:63.360000px;}
.y48_c01387{bottom:65.520000px;}
.y66_c01387{bottom:66.240000px;}
.y65_c01387{bottom:69.120000px;}
.y67_c01387{bottom:70.560000px;}
.y45_c01387{bottom:105.840000px;}
.y47_c01387{bottom:107.280000px;}
.y46_c01387{bottom:109.440000px;}
.y44_c01387{bottom:110.160000px;}
.y64_c01387{bottom:110.880000px;}
.y63_c01387{bottom:113.040000px;}
.y42_c01387{bottom:149.040000px;}
.y43_c01387{bottom:150.480000px;}
.y41_c01387{bottom:153.360000px;}
.y61_c01387{bottom:156.240000px;}
.y62_c01387{bottom:156.960000px;}
.y40_c01387{bottom:191.520000px;}
.y3f_c01387{bottom:195.120000px;}
.y3e_c01387{bottom:195.840000px;}
.y60_c01387{bottom:196.560000px;}
.y3c_c01387{bottom:239.040000px;}
.y3d_c01387{bottom:239.760000px;}
.y3a_c01387{bottom:289.440000px;}
.y39_c01387{bottom:292.320000px;}
.y3b_c01387{bottom:293.040000px;}
.y5f_c01387{bottom:295.200000px;}
.y38_c01387{bottom:331.920000px;}
.y37_c01387{bottom:335.520000px;}
.y5e_c01387{bottom:336.240000px;}
.y33_c01387{bottom:375.120000px;}
.y36_c01387{bottom:375.840000px;}
.y34_c01387{bottom:377.280000px;}
.y32_c01387{bottom:378.720000px;}
.y35_c01387{bottom:379.440000px;}
.y5d_c01387{bottom:380.880000px;}
.y2d_c01387{bottom:418.320000px;}
.y31_c01387{bottom:419.040000px;}
.y30_c01387{bottom:420.480000px;}
.y2c_c01387{bottom:421.200000px;}
.y2e_c01387{bottom:421.920000px;}
.y2f_c01387{bottom:422.640000px;}
.y5c_c01387{bottom:424.800000px;}
.y29_c01387{bottom:462.240000px;}
.y2b_c01387{bottom:463.680000px;}
.y2a_c01387{bottom:464.400000px;}
.y5b_c01387{bottom:465.120000px;}
.y28_c01387{bottom:465.840000px;}
.y26_c01387{bottom:506.160000px;}
.y27_c01387{bottom:506.880000px;}
.y25_c01387{bottom:508.320000px;}
.y5a_c01387{bottom:509.760000px;}
.y23_c01387{bottom:549.360000px;}
.y24_c01387{bottom:550.080000px;}
.y59_c01387{bottom:550.800000px;}
.y57_c01387{bottom:551.520000px;}
.y22_c01387{bottom:552.240000px;}
.y58_c01387{bottom:553.680000px;}
.y1f_c01387{bottom:592.560000px;}
.y20_c01387{bottom:593.280000px;}
.y56_c01387{bottom:594.720000px;}
.y1e_c01387{bottom:595.440000px;}
.y21_c01387{bottom:596.160000px;}
.y1c_c01387{bottom:640.080000px;}
.y1d_c01387{bottom:640.800000px;}
.y1b_c01387{bottom:688.320000px;}
.y17_c01387{bottom:689.760000px;}
.y19_c01387{bottom:690.480000px;}
.y18_c01387{bottom:691.200000px;}
.y16_c01387{bottom:691.920000px;}
.y1a_c01387{bottom:693.360000px;}
.y14_c01387{bottom:732.240000px;}
.y15_c01387{bottom:732.960000px;}
.y55_c01387{bottom:733.680000px;}
.y13_c01387{bottom:734.400000px;}
.y54_c01387{bottom:735.120000px;}
.y53_c01387{bottom:774.720000px;}
.y11_c01387{bottom:775.440000px;}
.y12_c01387{bottom:776.160000px;}
.y10_c01387{bottom:778.320000px;}
.y52_c01387{bottom:779.040000px;}
.y51_c01387{bottom:817.200000px;}
.yf_c01387{bottom:818.640000px;}
.y50_c01387{bottom:819.360000px;}
.ye_c01387{bottom:820.080000px;}
.y4f_c01387{bottom:861.120000px;}
.yc_c01387{bottom:861.840000px;}
.yd_c01387{bottom:862.560000px;}
.yb_c01387{bottom:864.000000px;}
.y4e_c01387{bottom:903.600000px;}
.ya_c01387{bottom:904.320000px;}
.y4c_c01387{bottom:905.040000px;}
.y9_c01387{bottom:905.760000px;}
.y4d_c01387{bottom:907.200000px;}
.y7_c01387{bottom:947.520000px;}
.y8_c01387{bottom:948.240000px;}
.y6_c01387{bottom:949.680000px;}
.y5_c01387{bottom:990.720000px;}
.y3_c01387{bottom:992.160000px;}
.y4_c01387{bottom:995.040000px;}
.y1_c01387{bottom:1038.960000px;}
.y2_c01387{bottom:1039.680000px;}
.y4b_c01387{bottom:1098.000000px;}
.hb_c01387{height:28.508906px;}
.he_c01387{height:31.100625px;}
.h2_c01387{height:41.467500px;}
.ha_c01387{height:44.059219px;}
.h1_c01387{height:46.650937px;}
.h7_c01387{height:49.242656px;}
.h5_c01387{height:51.834375px;}
.h3_c01387{height:54.426094px;}
.hd_c01387{height:57.017812px;}
.h9_c01387{height:59.609531px;}
.h8_c01387{height:62.201250px;}
.h6_c01387{height:64.792969px;}
.h4_c01387{height:67.384687px;}
.hc_c01387{height:69.976406px;}
.h0_c01387{height:1152.000000px;}
.w1_c01387{width:783.000000px;}
.w0_c01387{width:783.360000px;}
.x0_c01387{left:0.000000px;}
.x3_c01387{left:54.000000px;}
.x1d_c01387{left:55.440000px;}
.x13_c01387{left:64.800000px;}
.x12_c01387{left:86.400000px;}
.xe_c01387{left:106.560000px;}
.x1_c01387{left:108.000000px;}
.x7_c01387{left:116.640000px;}
.x4_c01387{left:118.080000px;}
.x19_c01387{left:128.160000px;}
.x1c_c01387{left:159.840000px;}
.x2_c01387{left:162.000000px;}
.x1b_c01387{left:192.240000px;}
.x5_c01387{left:195.120000px;}
.x20_c01387{left:203.760000px;}
.x6_c01387{left:205.200000px;}
.x14_c01387{left:214.560000px;}
.x9_c01387{left:216.000000px;}
.xf_c01387{left:237.600000px;}
.x8_c01387{left:248.400000px;}
.x16_c01387{left:258.480000px;}
.x1a_c01387{left:267.840000px;}
.xb_c01387{left:270.000000px;}
.x17_c01387{left:312.480000px;}
.x1e_c01387{left:334.080000px;}
.x15_c01387{left:355.680000px;}
.xa_c01387{left:367.200000px;}
.x1f_c01387{left:377.280000px;}
.x18_c01387{left:398.880000px;}
.x10_c01387{left:409.680000px;}
.xc_c01387{left:420.480000px;}
.x11_c01387{left:452.880000px;}
.xd_c01387{left:506.160000px;}
.x31_c01387{left:580.320000px;}
.x28_c01387{left:581.760000px;}
.x24_c01387{left:583.200000px;}
.x34_c01387{left:600.480000px;}
.x2e_c01387{left:601.920000px;}
.x2b_c01387{left:603.360000px;}
.x2f_c01387{left:634.320000px;}
.x22_c01387{left:635.760000px;}
.x25_c01387{left:637.200000px;}
.x21_c01387{left:667.440000px;}
.x26_c01387{left:668.880000px;}
.x32_c01387{left:676.800000px;}
.x2c_c01387{left:678.240000px;}
.x33_c01387{left:699.120000px;}
.x23_c01387{left:702.000000px;}
.x30_c01387{left:709.200000px;}
.x29_c01387{left:710.640000px;}
.x27_c01387{left:712.800000px;}
.x2d_c01387{left:730.800000px;}
.x2a_c01387{left:732.240000px;}
@media print{
.v0_c01387{vertical-align:0.000000pt;}
.ls0_c01387{letter-spacing:0.000000pt;}
.ws0_c01387{word-spacing:0.000000pt;}
.fsa_c01387{font-size:28.160000pt;}
.fsd_c01387{font-size:30.720000pt;}
.fs1_c01387{font-size:40.960000pt;}
.fs9_c01387{font-size:43.520000pt;}
.fs0_c01387{font-size:46.080000pt;}
.fs6_c01387{font-size:48.640000pt;}
.fs4_c01387{font-size:51.200000pt;}
.fs2_c01387{font-size:53.760000pt;}
.fsc_c01387{font-size:56.320000pt;}
.fs8_c01387{font-size:58.880000pt;}
.fs7_c01387{font-size:61.440000pt;}
.fs5_c01387{font-size:64.000000pt;}
.fs3_c01387{font-size:66.560000pt;}
.fsb_c01387{font-size:69.120000pt;}
.y0_c01387{bottom:0.000000pt;}
.y49_c01387{bottom:55.040000pt;}
.y4a_c01387{bottom:56.320000pt;}
.y48_c01387{bottom:58.240000pt;}
.y66_c01387{bottom:58.880000pt;}
.y65_c01387{bottom:61.440000pt;}
.y67_c01387{bottom:62.720000pt;}
.y45_c01387{bottom:94.080000pt;}
.y47_c01387{bottom:95.360000pt;}
.y46_c01387{bottom:97.280000pt;}
.y44_c01387{bottom:97.920000pt;}
.y64_c01387{bottom:98.560000pt;}
.y63_c01387{bottom:100.480000pt;}
.y42_c01387{bottom:132.480000pt;}
.y43_c01387{bottom:133.760000pt;}
.y41_c01387{bottom:136.320000pt;}
.y61_c01387{bottom:138.880000pt;}
.y62_c01387{bottom:139.520000pt;}
.y40_c01387{bottom:170.240000pt;}
.y3f_c01387{bottom:173.440000pt;}
.y3e_c01387{bottom:174.080000pt;}
.y60_c01387{bottom:174.720000pt;}
.y3c_c01387{bottom:212.480000pt;}
.y3d_c01387{bottom:213.120000pt;}
.y3a_c01387{bottom:257.280000pt;}
.y39_c01387{bottom:259.840000pt;}
.y3b_c01387{bottom:260.480000pt;}
.y5f_c01387{bottom:262.400000pt;}
.y38_c01387{bottom:295.040000pt;}
.y37_c01387{bottom:298.240000pt;}
.y5e_c01387{bottom:298.880000pt;}
.y33_c01387{bottom:333.440000pt;}
.y36_c01387{bottom:334.080000pt;}
.y34_c01387{bottom:335.360000pt;}
.y32_c01387{bottom:336.640000pt;}
.y35_c01387{bottom:337.280000pt;}
.y5d_c01387{bottom:338.560000pt;}
.y2d_c01387{bottom:371.840000pt;}
.y31_c01387{bottom:372.480000pt;}
.y30_c01387{bottom:373.760000pt;}
.y2c_c01387{bottom:374.400000pt;}
.y2e_c01387{bottom:375.040000pt;}
.y2f_c01387{bottom:375.680000pt;}
.y5c_c01387{bottom:377.600000pt;}
.y29_c01387{bottom:410.880000pt;}
.y2b_c01387{bottom:412.160000pt;}
.y2a_c01387{bottom:412.800000pt;}
.y5b_c01387{bottom:413.440000pt;}
.y28_c01387{bottom:414.080000pt;}
.y26_c01387{bottom:449.920000pt;}
.y27_c01387{bottom:450.560000pt;}
.y25_c01387{bottom:451.840000pt;}
.y5a_c01387{bottom:453.120000pt;}
.y23_c01387{bottom:488.320000pt;}
.y24_c01387{bottom:488.960000pt;}
.y59_c01387{bottom:489.600000pt;}
.y57_c01387{bottom:490.240000pt;}
.y22_c01387{bottom:490.880000pt;}
.y58_c01387{bottom:492.160000pt;}
.y1f_c01387{bottom:526.720000pt;}
.y20_c01387{bottom:527.360000pt;}
.y56_c01387{bottom:528.640000pt;}
.y1e_c01387{bottom:529.280000pt;}
.y21_c01387{bottom:529.920000pt;}
.y1c_c01387{bottom:568.960000pt;}
.y1d_c01387{bottom:569.600000pt;}
.y1b_c01387{bottom:611.840000pt;}
.y17_c01387{bottom:613.120000pt;}
.y19_c01387{bottom:613.760000pt;}
.y18_c01387{bottom:614.400000pt;}
.y16_c01387{bottom:615.040000pt;}
.y1a_c01387{bottom:616.320000pt;}
.y14_c01387{bottom:650.880000pt;}
.y15_c01387{bottom:651.520000pt;}
.y55_c01387{bottom:652.160000pt;}
.y13_c01387{bottom:652.800000pt;}
.y54_c01387{bottom:653.440000pt;}
.y53_c01387{bottom:688.640000pt;}
.y11_c01387{bottom:689.280000pt;}
.y12_c01387{bottom:689.920000pt;}
.y10_c01387{bottom:691.840000pt;}
.y52_c01387{bottom:692.480000pt;}
.y51_c01387{bottom:726.400000pt;}
.yf_c01387{bottom:727.680000pt;}
.y50_c01387{bottom:728.320000pt;}
.ye_c01387{bottom:728.960000pt;}
.y4f_c01387{bottom:765.440000pt;}
.yc_c01387{bottom:766.080000pt;}
.yd_c01387{bottom:766.720000pt;}
.yb_c01387{bottom:768.000000pt;}
.y4e_c01387{bottom:803.200000pt;}
.ya_c01387{bottom:803.840000pt;}
.y4c_c01387{bottom:804.480000pt;}
.y9_c01387{bottom:805.120000pt;}
.y4d_c01387{bottom:806.400000pt;}
.y7_c01387{bottom:842.240000pt;}
.y8_c01387{bottom:842.880000pt;}
.y6_c01387{bottom:844.160000pt;}
.y5_c01387{bottom:880.640000pt;}
.y3_c01387{bottom:881.920000pt;}
.y4_c01387{bottom:884.480000pt;}
.y1_c01387{bottom:923.520000pt;}
.y2_c01387{bottom:924.160000pt;}
.y4b_c01387{bottom:976.000000pt;}
.hb_c01387{height:25.341250pt;}
.he_c01387{height:27.645000pt;}
.h2_c01387{height:36.860000pt;}
.ha_c01387{height:39.163750pt;}
.h1_c01387{height:41.467500pt;}
.h7_c01387{height:43.771250pt;}
.h5_c01387{height:46.075000pt;}
.h3_c01387{height:48.378750pt;}
.hd_c01387{height:50.682500pt;}
.h9_c01387{height:52.986250pt;}
.h8_c01387{height:55.290000pt;}
.h6_c01387{height:57.593750pt;}
.h4_c01387{height:59.897500pt;}
.hc_c01387{height:62.201250pt;}
.h0_c01387{height:1024.000000pt;}
.w1_c01387{width:696.000000pt;}
.w0_c01387{width:696.320000pt;}
.x0_c01387{left:0.000000pt;}
.x3_c01387{left:48.000000pt;}
.x1d_c01387{left:49.280000pt;}
.x13_c01387{left:57.600000pt;}
.x12_c01387{left:76.800000pt;}
.xe_c01387{left:94.720000pt;}
.x1_c01387{left:96.000000pt;}
.x7_c01387{left:103.680000pt;}
.x4_c01387{left:104.960000pt;}
.x19_c01387{left:113.920000pt;}
.x1c_c01387{left:142.080000pt;}
.x2_c01387{left:144.000000pt;}
.x1b_c01387{left:170.880000pt;}
.x5_c01387{left:173.440000pt;}
.x20_c01387{left:181.120000pt;}
.x6_c01387{left:182.400000pt;}
.x14_c01387{left:190.720000pt;}
.x9_c01387{left:192.000000pt;}
.xf_c01387{left:211.200000pt;}
.x8_c01387{left:220.800000pt;}
.x16_c01387{left:229.760000pt;}
.x1a_c01387{left:238.080000pt;}
.xb_c01387{left:240.000000pt;}
.x17_c01387{left:277.760000pt;}
.x1e_c01387{left:296.960000pt;}
.x15_c01387{left:316.160000pt;}
.xa_c01387{left:326.400000pt;}
.x1f_c01387{left:335.360000pt;}
.x18_c01387{left:354.560000pt;}
.x10_c01387{left:364.160000pt;}
.xc_c01387{left:373.760000pt;}
.x11_c01387{left:402.560000pt;}
.xd_c01387{left:449.920000pt;}
.x31_c01387{left:515.840000pt;}
.x28_c01387{left:517.120000pt;}
.x24_c01387{left:518.400000pt;}
.x34_c01387{left:533.760000pt;}
.x2e_c01387{left:535.040000pt;}
.x2b_c01387{left:536.320000pt;}
.x2f_c01387{left:563.840000pt;}
.x22_c01387{left:565.120000pt;}
.x25_c01387{left:566.400000pt;}
.x21_c01387{left:593.280000pt;}
.x26_c01387{left:594.560000pt;}
.x32_c01387{left:601.600000pt;}
.x2c_c01387{left:602.880000pt;}
.x33_c01387{left:621.440000pt;}
.x23_c01387{left:624.000000pt;}
.x30_c01387{left:630.400000pt;}
.x29_c01387{left:631.680000pt;}
.x27_c01387{left:633.600000pt;}
.x2d_c01387{left:649.600000pt;}
.x2a_c01387{left:650.880000pt;}
}





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

.ir_c01388:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01388{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01388;src:url('chunks/assets/font_6fee1e0a244d1c9d94cd3d6e.woff2')format("woff");}.ff1_c01388{font-family:ff1_c01388;line-height:1.109863;font-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_c01388{transform:matrix(0.182575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182575,0.000000,0.000000,0.250000,0,0);}
.m27_c01388{transform:matrix(0.199700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199700,0.000000,0.000000,0.250000,0,0);}
.m12_c01388{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m2_c01388{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m17_c01388{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_c01388{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01388{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);}
.m2c_c01388{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m29_c01388{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m7_c01388{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m6_c01388{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mb_c01388{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_c01388{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m10_c01388{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01388{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mc_c01388{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m26_c01388{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.ma_c01388{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m8_c01388{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m45_c01388{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m19_c01388{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01388{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01388{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m16_c01388{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01388{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m9_c01388{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01388{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01388{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m21_c01388{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m13_c01388{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);}
.m24_c01388{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m0_c01388{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m3_c01388{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01388{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);}
.m31_c01388{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01388{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m11_c01388{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.md_c01388{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m28_c01388{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1_c01388{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);}
.m15_c01388{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);}
.m3b_c01388{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m18_c01388{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.me_c01388{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);}
.m36_c01388{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m42_c01388{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m20_c01388{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01388{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);}
.m1a_c01388{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01388{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);}
.m51_c01388{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m32_c01388{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);}
.m47_c01388{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01388{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01388{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01388{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01388{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);}
.m59_c01388{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);}
.m53_c01388{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m44_c01388{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m34_c01388{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m48_c01388{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);}
.m30_c01388{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);}
.m52_c01388{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01388{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m33_c01388{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m58_c01388{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m49_c01388{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);}
.m5b_c01388{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);}
.m38_c01388{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m56_c01388{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);}
.m2f_c01388{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m54_c01388{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m5a_c01388{transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);}
.m4_c01388{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m57_c01388{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m39_c01388{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m5_c01388{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m41_c01388{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m23_c01388{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);}
.m40_c01388{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);}
.m35_c01388{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m4d_c01388{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);}
.m4c_c01388{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m55_c01388{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m37_c01388{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m4e_c01388{transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);}
.m50_c01388{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);}
.m43_c01388{transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01388{transform:matrix(0.700000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.700000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.700000,0.000000,0.000000,0.250000,0,0);}
.m4f_c01388{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m46_c01388{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.v0_c01388{vertical-align:0.000000px;}
.ls0_c01388{letter-spacing:0.000000px;}
.sc__c01388{text-shadow:none;}
.sc0_c01388{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01388{-webkit-text-stroke:0px transparent;}
.sc0_c01388{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01388{word-spacing:0.000000px;}
.ws0_c01388{word-spacing:8.131104px;}
.fc0_c01388{color:transparent;}
.fs11_c01388{font-size:11.520000px;}
.fs10_c01388{font-size:14.400000px;}
.fs13_c01388{font-size:23.040000px;}
.fs5_c01388{font-size:34.560000px;}
.fse_c01388{font-size:37.440000px;}
.fs9_c01388{font-size:43.200000px;}
.fsb_c01388{font-size:46.080000px;}
.fs3_c01388{font-size:48.960000px;}
.fs4_c01388{font-size:51.840000px;}
.fs6_c01388{font-size:54.720000px;}
.fsa_c01388{font-size:57.600000px;}
.fs1_c01388{font-size:60.480000px;}
.fsc_c01388{font-size:63.360000px;}
.fsd_c01388{font-size:66.240000px;}
.fs7_c01388{font-size:69.120000px;}
.fs8_c01388{font-size:72.000000px;}
.fs2_c01388{font-size:74.880000px;}
.fs0_c01388{font-size:77.760000px;}
.fs12_c01388{font-size:103.680000px;}
.fsf_c01388{font-size:106.560000px;}
.y0_c01388{bottom:0.000000px;}
.y73_c01388{bottom:38.160000px;}
.y76_c01388{bottom:40.320000px;}
.y72_c01388{bottom:41.040000px;}
.y71_c01388{bottom:41.760000px;}
.y74_c01388{bottom:42.480000px;}
.y75_c01388{bottom:43.200000px;}
.y77_c01388{bottom:43.920000px;}
.y70_c01388{bottom:92.880000px;}
.y69_c01388{bottom:93.600000px;}
.y6c_c01388{bottom:94.320000px;}
.y68_c01388{bottom:114.480000px;}
.y6b_c01388{bottom:115.200000px;}
.y6f_c01388{bottom:115.920000px;}
.y6a_c01388{bottom:116.640000px;}
.y6d_c01388{bottom:138.240000px;}
.y67_c01388{bottom:138.960000px;}
.y6e_c01388{bottom:139.680000px;}
.y64_c01388{bottom:179.280000px;}
.y63_c01388{bottom:181.440000px;}
.y65_c01388{bottom:182.160000px;}
.y62_c01388{bottom:182.880000px;}
.y66_c01388{bottom:183.600000px;}
.y60_c01388{bottom:233.280000px;}
.y5d_c01388{bottom:234.000000px;}
.y61_c01388{bottom:234.720000px;}
.y5e_c01388{bottom:235.440000px;}
.y5f_c01388{bottom:239.040000px;}
.y5c_c01388{bottom:265.680000px;}
.y5b_c01388{bottom:268.560000px;}
.y59_c01388{bottom:277.920000px;}
.y58_c01388{bottom:279.360000px;}
.y57_c01388{bottom:280.080000px;}
.y5a_c01388{bottom:281.520000px;}
.y51_c01388{bottom:300.240000px;}
.y56_c01388{bottom:300.960000px;}
.y55_c01388{bottom:301.680000px;}
.y52_c01388{bottom:309.600000px;}
.y53_c01388{bottom:310.320000px;}
.y50_c01388{bottom:311.760000px;}
.y54_c01388{bottom:312.480000px;}
.y4f_c01388{bottom:313.200000px;}
.y4b_c01388{bottom:341.280000px;}
.y4e_c01388{bottom:342.000000px;}
.y4a_c01388{bottom:342.720000px;}
.y4c_c01388{bottom:343.440000px;}
.y4d_c01388{bottom:344.160000px;}
.y49_c01388{bottom:344.880000px;}
.y45_c01388{bottom:374.400000px;}
.y47_c01388{bottom:375.120000px;}
.y44_c01388{bottom:375.840000px;}
.y42_c01388{bottom:376.560000px;}
.y43_c01388{bottom:377.280000px;}
.y41_c01388{bottom:378.000000px;}
.y46_c01388{bottom:378.720000px;}
.y48_c01388{bottom:379.440000px;}
.y3f_c01388{bottom:415.440000px;}
.y3e_c01388{bottom:416.160000px;}
.y3b_c01388{bottom:416.880000px;}
.y3d_c01388{bottom:418.320000px;}
.y3c_c01388{bottom:419.040000px;}
.y40_c01388{bottom:419.760000px;}
.y37_c01388{bottom:457.920000px;}
.y3a_c01388{bottom:458.640000px;}
.y35_c01388{bottom:459.360000px;}
.y38_c01388{bottom:460.800000px;}
.y39_c01388{bottom:461.520000px;}
.y36_c01388{bottom:462.240000px;}
.y34_c01388{bottom:462.960000px;}
.y33_c01388{bottom:501.120000px;}
.y32_c01388{bottom:501.840000px;}
.y30_c01388{bottom:502.560000px;}
.y31_c01388{bottom:504.000000px;}
.y2f_c01388{bottom:504.720000px;}
.y2c_c01388{bottom:563.760000px;}
.y2e_c01388{bottom:566.640000px;}
.y2d_c01388{bottom:567.360000px;}
.y2b_c01388{bottom:568.080000px;}
.y29_c01388{bottom:608.400000px;}
.y2a_c01388{bottom:609.840000px;}
.y28_c01388{bottom:610.560000px;}
.y27_c01388{bottom:650.880000px;}
.y26_c01388{bottom:653.040000px;}
.y23_c01388{bottom:682.560000px;}
.y21_c01388{bottom:684.000000px;}
.y22_c01388{bottom:684.720000px;}
.y25_c01388{bottom:685.440000px;}
.y20_c01388{bottom:686.160000px;}
.y24_c01388{bottom:686.880000px;}
.y1f_c01388{bottom:726.480000px;}
.y1c_c01388{bottom:727.200000px;}
.y1e_c01388{bottom:727.920000px;}
.y1b_c01388{bottom:728.640000px;}
.y1d_c01388{bottom:729.360000px;}
.y1a_c01388{bottom:774.000000px;}
.y19_c01388{bottom:823.680000px;}
.y17_c01388{bottom:825.120000px;}
.y18_c01388{bottom:825.840000px;}
.y14_c01388{bottom:866.880000px;}
.y16_c01388{bottom:867.600000px;}
.y13_c01388{bottom:868.320000px;}
.y15_c01388{bottom:870.480000px;}
.y11_c01388{bottom:909.360000px;}
.y10_c01388{bottom:910.080000px;}
.y12_c01388{bottom:912.960000px;}
.yf_c01388{bottom:951.120000px;}
.yd_c01388{bottom:951.840000px;}
.yc_c01388{bottom:952.560000px;}
.yb_c01388{bottom:953.280000px;}
.ye_c01388{bottom:954.720000px;}
.y8_c01388{bottom:995.040000px;}
.y7_c01388{bottom:995.760000px;}
.ya_c01388{bottom:997.200000px;}
.y9_c01388{bottom:997.920000px;}
.y3_c01388{bottom:1037.520000px;}
.y6_c01388{bottom:1038.240000px;}
.y2_c01388{bottom:1038.960000px;}
.y5_c01388{bottom:1041.120000px;}
.y4_c01388{bottom:1041.840000px;}
.y1_c01388{bottom:1100.880000px;}
.h13_c01388{height:10.366875px;}
.h12_c01388{height:12.958594px;}
.h15_c01388{height:20.733750px;}
.h7_c01388{height:31.100625px;}
.h10_c01388{height:33.692344px;}
.hb_c01388{height:38.875781px;}
.hd_c01388{height:41.467500px;}
.h5_c01388{height:44.059219px;}
.h6_c01388{height:46.650937px;}
.h8_c01388{height:49.242656px;}
.hc_c01388{height:51.834375px;}
.h3_c01388{height:54.426094px;}
.he_c01388{height:57.017812px;}
.hf_c01388{height:59.609531px;}
.h9_c01388{height:62.201250px;}
.ha_c01388{height:64.792969px;}
.h4_c01388{height:67.384687px;}
.h2_c01388{height:69.976406px;}
.h14_c01388{height:93.301875px;}
.h11_c01388{height:95.893594px;}
.h1_c01388{height:1151.250000px;}
.h0_c01388{height:1151.280000px;}
.w0_c01388{width:781.920000px;}
.w1_c01388{width:782.250000px;}
.x0_c01388{left:0.000000px;}
.x2_c01388{left:45.360000px;}
.x39_c01388{left:47.520000px;}
.x3a_c01388{left:66.240000px;}
.x2b_c01388{left:75.600000px;}
.x18_c01388{left:97.920000px;}
.x19_c01388{left:108.000000px;}
.x3_c01388{left:109.440000px;}
.x2c_c01388{left:118.800000px;}
.x48_c01388{left:139.680000px;}
.x20_c01388{left:151.920000px;}
.x16_c01388{left:154.080000px;}
.x2d_c01388{left:161.280000px;}
.x1f_c01388{left:163.440000px;}
.x45_c01388{left:172.080000px;}
.x3b_c01388{left:173.520000px;}
.x21_c01388{left:183.600000px;}
.x32_c01388{left:195.120000px;}
.x4_c01388{left:205.200000px;}
.xb_c01388{left:207.360000px;}
.x22_c01388{left:227.520000px;}
.x11_c01388{left:228.960000px;}
.x49_c01388{left:237.600000px;}
.x3c_c01388{left:239.040000px;}
.x44_c01388{left:249.120000px;}
.x5_c01388{left:250.560000px;}
.x23_c01388{left:270.000000px;}
.x12_c01388{left:272.160000px;}
.x47_c01388{left:280.800000px;}
.x1a_c01388{left:294.480000px;}
.x53_c01388{left:302.400000px;}
.x6_c01388{left:304.560000px;}
.x4e_c01388{left:313.920000px;}
.x4f_c01388{left:315.360000px;}
.x2e_c01388{left:324.720000px;}
.xc_c01388{left:326.160000px;}
.x33_c01388{left:335.520000px;}
.x1b_c01388{left:336.960000px;}
.x24_c01388{left:345.600000px;}
.x7_c01388{left:347.040000px;}
.x10_c01388{left:358.560000px;}
.x4a_c01388{left:367.200000px;}
.x41_c01388{left:369.360000px;}
.x34_c01388{left:378.000000px;}
.xd_c01388{left:380.160000px;}
.x50_c01388{left:389.520000px;}
.x54_c01388{left:399.600000px;}
.x25_c01388{left:411.120000px;}
.x3d_c01388{left:422.640000px;}
.x42_c01388{left:432.000000px;}
.x52_c01388{left:433.440000px;}
.x26_c01388{left:443.520000px;}
.x35_c01388{left:453.600000px;}
.x51_c01388{left:455.040000px;}
.x3e_c01388{left:464.400000px;}
.x36_c01388{left:475.200000px;}
.x2f_c01388{left:486.000000px;}
.x1e_c01388{left:497.520000px;}
.x55_c01388{left:506.160000px;}
.x27_c01388{left:517.680000px;}
.x56_c01388{left:537.840000px;}
.x4b_c01388{left:539.280000px;}
.x28_c01388{left:540.720000px;}
.x37_c01388{left:550.080000px;}
.x29_c01388{left:560.160000px;}
.x43_c01388{left:570.960000px;}
.x1c_c01388{left:573.120000px;}
.x38_c01388{left:581.760000px;}
.x30_c01388{left:583.200000px;}
.x17_c01388{left:594.000000px;}
.x13_c01388{left:595.440000px;}
.x3f_c01388{left:604.080000px;}
.x4c_c01388{left:614.160000px;}
.x31_c01388{left:615.600000px;}
.x57_c01388{left:624.240000px;}
.x14_c01388{left:626.400000px;}
.x8_c01388{left:628.560000px;}
.x46_c01388{left:636.480000px;}
.x2a_c01388{left:657.360000px;}
.x15_c01388{left:659.520000px;}
.x9_c01388{left:660.960000px;}
.xe_c01388{left:671.040000px;}
.x40_c01388{left:678.240000px;}
.x1_c01388{left:689.040000px;}
.x1d_c01388{left:691.920000px;}
.xa_c01388{left:702.720000px;}
.xf_c01388{left:704.160000px;}
.x4d_c01388{left:710.640000px;}
@media print{
.v0_c01388{vertical-align:0.000000pt;}
.ls0_c01388{letter-spacing:0.000000pt;}
.ws1_c01388{word-spacing:0.000000pt;}
.ws0_c01388{word-spacing:7.227648pt;}
.fs11_c01388{font-size:10.240000pt;}
.fs10_c01388{font-size:12.800000pt;}
.fs13_c01388{font-size:20.480000pt;}
.fs5_c01388{font-size:30.720000pt;}
.fse_c01388{font-size:33.280000pt;}
.fs9_c01388{font-size:38.400000pt;}
.fsb_c01388{font-size:40.960000pt;}
.fs3_c01388{font-size:43.520000pt;}
.fs4_c01388{font-size:46.080000pt;}
.fs6_c01388{font-size:48.640000pt;}
.fsa_c01388{font-size:51.200000pt;}
.fs1_c01388{font-size:53.760000pt;}
.fsc_c01388{font-size:56.320000pt;}
.fsd_c01388{font-size:58.880000pt;}
.fs7_c01388{font-size:61.440000pt;}
.fs8_c01388{font-size:64.000000pt;}
.fs2_c01388{font-size:66.560000pt;}
.fs0_c01388{font-size:69.120000pt;}
.fs12_c01388{font-size:92.160000pt;}
.fsf_c01388{font-size:94.720000pt;}
.y0_c01388{bottom:0.000000pt;}
.y73_c01388{bottom:33.920000pt;}
.y76_c01388{bottom:35.840000pt;}
.y72_c01388{bottom:36.480000pt;}
.y71_c01388{bottom:37.120000pt;}
.y74_c01388{bottom:37.760000pt;}
.y75_c01388{bottom:38.400000pt;}
.y77_c01388{bottom:39.040000pt;}
.y70_c01388{bottom:82.560000pt;}
.y69_c01388{bottom:83.200000pt;}
.y6c_c01388{bottom:83.840000pt;}
.y68_c01388{bottom:101.760000pt;}
.y6b_c01388{bottom:102.400000pt;}
.y6f_c01388{bottom:103.040000pt;}
.y6a_c01388{bottom:103.680000pt;}
.y6d_c01388{bottom:122.880000pt;}
.y67_c01388{bottom:123.520000pt;}
.y6e_c01388{bottom:124.160000pt;}
.y64_c01388{bottom:159.360000pt;}
.y63_c01388{bottom:161.280000pt;}
.y65_c01388{bottom:161.920000pt;}
.y62_c01388{bottom:162.560000pt;}
.y66_c01388{bottom:163.200000pt;}
.y60_c01388{bottom:207.360000pt;}
.y5d_c01388{bottom:208.000000pt;}
.y61_c01388{bottom:208.640000pt;}
.y5e_c01388{bottom:209.280000pt;}
.y5f_c01388{bottom:212.480000pt;}
.y5c_c01388{bottom:236.160000pt;}
.y5b_c01388{bottom:238.720000pt;}
.y59_c01388{bottom:247.040000pt;}
.y58_c01388{bottom:248.320000pt;}
.y57_c01388{bottom:248.960000pt;}
.y5a_c01388{bottom:250.240000pt;}
.y51_c01388{bottom:266.880000pt;}
.y56_c01388{bottom:267.520000pt;}
.y55_c01388{bottom:268.160000pt;}
.y52_c01388{bottom:275.200000pt;}
.y53_c01388{bottom:275.840000pt;}
.y50_c01388{bottom:277.120000pt;}
.y54_c01388{bottom:277.760000pt;}
.y4f_c01388{bottom:278.400000pt;}
.y4b_c01388{bottom:303.360000pt;}
.y4e_c01388{bottom:304.000000pt;}
.y4a_c01388{bottom:304.640000pt;}
.y4c_c01388{bottom:305.280000pt;}
.y4d_c01388{bottom:305.920000pt;}
.y49_c01388{bottom:306.560000pt;}
.y45_c01388{bottom:332.800000pt;}
.y47_c01388{bottom:333.440000pt;}
.y44_c01388{bottom:334.080000pt;}
.y42_c01388{bottom:334.720000pt;}
.y43_c01388{bottom:335.360000pt;}
.y41_c01388{bottom:336.000000pt;}
.y46_c01388{bottom:336.640000pt;}
.y48_c01388{bottom:337.280000pt;}
.y3f_c01388{bottom:369.280000pt;}
.y3e_c01388{bottom:369.920000pt;}
.y3b_c01388{bottom:370.560000pt;}
.y3d_c01388{bottom:371.840000pt;}
.y3c_c01388{bottom:372.480000pt;}
.y40_c01388{bottom:373.120000pt;}
.y37_c01388{bottom:407.040000pt;}
.y3a_c01388{bottom:407.680000pt;}
.y35_c01388{bottom:408.320000pt;}
.y38_c01388{bottom:409.600000pt;}
.y39_c01388{bottom:410.240000pt;}
.y36_c01388{bottom:410.880000pt;}
.y34_c01388{bottom:411.520000pt;}
.y33_c01388{bottom:445.440000pt;}
.y32_c01388{bottom:446.080000pt;}
.y30_c01388{bottom:446.720000pt;}
.y31_c01388{bottom:448.000000pt;}
.y2f_c01388{bottom:448.640000pt;}
.y2c_c01388{bottom:501.120000pt;}
.y2e_c01388{bottom:503.680000pt;}
.y2d_c01388{bottom:504.320000pt;}
.y2b_c01388{bottom:504.960000pt;}
.y29_c01388{bottom:540.800000pt;}
.y2a_c01388{bottom:542.080000pt;}
.y28_c01388{bottom:542.720000pt;}
.y27_c01388{bottom:578.560000pt;}
.y26_c01388{bottom:580.480000pt;}
.y23_c01388{bottom:606.720000pt;}
.y21_c01388{bottom:608.000000pt;}
.y22_c01388{bottom:608.640000pt;}
.y25_c01388{bottom:609.280000pt;}
.y20_c01388{bottom:609.920000pt;}
.y24_c01388{bottom:610.560000pt;}
.y1f_c01388{bottom:645.760000pt;}
.y1c_c01388{bottom:646.400000pt;}
.y1e_c01388{bottom:647.040000pt;}
.y1b_c01388{bottom:647.680000pt;}
.y1d_c01388{bottom:648.320000pt;}
.y1a_c01388{bottom:688.000000pt;}
.y19_c01388{bottom:732.160000pt;}
.y17_c01388{bottom:733.440000pt;}
.y18_c01388{bottom:734.080000pt;}
.y14_c01388{bottom:770.560000pt;}
.y16_c01388{bottom:771.200000pt;}
.y13_c01388{bottom:771.840000pt;}
.y15_c01388{bottom:773.760000pt;}
.y11_c01388{bottom:808.320000pt;}
.y10_c01388{bottom:808.960000pt;}
.y12_c01388{bottom:811.520000pt;}
.yf_c01388{bottom:845.440000pt;}
.yd_c01388{bottom:846.080000pt;}
.yc_c01388{bottom:846.720000pt;}
.yb_c01388{bottom:847.360000pt;}
.ye_c01388{bottom:848.640000pt;}
.y8_c01388{bottom:884.480000pt;}
.y7_c01388{bottom:885.120000pt;}
.ya_c01388{bottom:886.400000pt;}
.y9_c01388{bottom:887.040000pt;}
.y3_c01388{bottom:922.240000pt;}
.y6_c01388{bottom:922.880000pt;}
.y2_c01388{bottom:923.520000pt;}
.y5_c01388{bottom:925.440000pt;}
.y4_c01388{bottom:926.080000pt;}
.y1_c01388{bottom:978.560000pt;}
.h13_c01388{height:9.215000pt;}
.h12_c01388{height:11.518750pt;}
.h15_c01388{height:18.430000pt;}
.h7_c01388{height:27.645000pt;}
.h10_c01388{height:29.948750pt;}
.hb_c01388{height:34.556250pt;}
.hd_c01388{height:36.860000pt;}
.h5_c01388{height:39.163750pt;}
.h6_c01388{height:41.467500pt;}
.h8_c01388{height:43.771250pt;}
.hc_c01388{height:46.075000pt;}
.h3_c01388{height:48.378750pt;}
.he_c01388{height:50.682500pt;}
.hf_c01388{height:52.986250pt;}
.h9_c01388{height:55.290000pt;}
.ha_c01388{height:57.593750pt;}
.h4_c01388{height:59.897500pt;}
.h2_c01388{height:62.201250pt;}
.h14_c01388{height:82.935000pt;}
.h11_c01388{height:85.238750pt;}
.h1_c01388{height:1023.333333pt;}
.h0_c01388{height:1023.360000pt;}
.w0_c01388{width:695.040000pt;}
.w1_c01388{width:695.333333pt;}
.x0_c01388{left:0.000000pt;}
.x2_c01388{left:40.320000pt;}
.x39_c01388{left:42.240000pt;}
.x3a_c01388{left:58.880000pt;}
.x2b_c01388{left:67.200000pt;}
.x18_c01388{left:87.040000pt;}
.x19_c01388{left:96.000000pt;}
.x3_c01388{left:97.280000pt;}
.x2c_c01388{left:105.600000pt;}
.x48_c01388{left:124.160000pt;}
.x20_c01388{left:135.040000pt;}
.x16_c01388{left:136.960000pt;}
.x2d_c01388{left:143.360000pt;}
.x1f_c01388{left:145.280000pt;}
.x45_c01388{left:152.960000pt;}
.x3b_c01388{left:154.240000pt;}
.x21_c01388{left:163.200000pt;}
.x32_c01388{left:173.440000pt;}
.x4_c01388{left:182.400000pt;}
.xb_c01388{left:184.320000pt;}
.x22_c01388{left:202.240000pt;}
.x11_c01388{left:203.520000pt;}
.x49_c01388{left:211.200000pt;}
.x3c_c01388{left:212.480000pt;}
.x44_c01388{left:221.440000pt;}
.x5_c01388{left:222.720000pt;}
.x23_c01388{left:240.000000pt;}
.x12_c01388{left:241.920000pt;}
.x47_c01388{left:249.600000pt;}
.x1a_c01388{left:261.760000pt;}
.x53_c01388{left:268.800000pt;}
.x6_c01388{left:270.720000pt;}
.x4e_c01388{left:279.040000pt;}
.x4f_c01388{left:280.320000pt;}
.x2e_c01388{left:288.640000pt;}
.xc_c01388{left:289.920000pt;}
.x33_c01388{left:298.240000pt;}
.x1b_c01388{left:299.520000pt;}
.x24_c01388{left:307.200000pt;}
.x7_c01388{left:308.480000pt;}
.x10_c01388{left:318.720000pt;}
.x4a_c01388{left:326.400000pt;}
.x41_c01388{left:328.320000pt;}
.x34_c01388{left:336.000000pt;}
.xd_c01388{left:337.920000pt;}
.x50_c01388{left:346.240000pt;}
.x54_c01388{left:355.200000pt;}
.x25_c01388{left:365.440000pt;}
.x3d_c01388{left:375.680000pt;}
.x42_c01388{left:384.000000pt;}
.x52_c01388{left:385.280000pt;}
.x26_c01388{left:394.240000pt;}
.x35_c01388{left:403.200000pt;}
.x51_c01388{left:404.480000pt;}
.x3e_c01388{left:412.800000pt;}
.x36_c01388{left:422.400000pt;}
.x2f_c01388{left:432.000000pt;}
.x1e_c01388{left:442.240000pt;}
.x55_c01388{left:449.920000pt;}
.x27_c01388{left:460.160000pt;}
.x56_c01388{left:478.080000pt;}
.x4b_c01388{left:479.360000pt;}
.x28_c01388{left:480.640000pt;}
.x37_c01388{left:488.960000pt;}
.x29_c01388{left:497.920000pt;}
.x43_c01388{left:507.520000pt;}
.x1c_c01388{left:509.440000pt;}
.x38_c01388{left:517.120000pt;}
.x30_c01388{left:518.400000pt;}
.x17_c01388{left:528.000000pt;}
.x13_c01388{left:529.280000pt;}
.x3f_c01388{left:536.960000pt;}
.x4c_c01388{left:545.920000pt;}
.x31_c01388{left:547.200000pt;}
.x57_c01388{left:554.880000pt;}
.x14_c01388{left:556.800000pt;}
.x8_c01388{left:558.720000pt;}
.x46_c01388{left:565.760000pt;}
.x2a_c01388{left:584.320000pt;}
.x15_c01388{left:586.240000pt;}
.x9_c01388{left:587.520000pt;}
.xe_c01388{left:596.480000pt;}
.x40_c01388{left:602.880000pt;}
.x1_c01388{left:612.480000pt;}
.x1d_c01388{left:615.040000pt;}
.xa_c01388{left:624.640000pt;}
.xf_c01388{left:625.920000pt;}
.x4d_c01388{left:631.680000pt;}
}





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

.ir_c01389:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01389{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01389;src:url('chunks/assets/font_e07eef3f61dbcaa4657abc18.woff2')format("woff");}.ff1_c01389{font-family:ff1_c01389;line-height:1.109863;font-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_c01389{transform:matrix(0.221950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221950,0.000000,0.000000,0.250000,0,0);}
.m7_c01389{transform:matrix(0.225100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225100,0.000000,0.000000,0.250000,0,0);}
.m43_c01389{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);}
.m35_c01389{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);}
.m4a_c01389{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01389{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);}
.m47_c01389{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);}
.m41_c01389{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m46_c01389{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m58_c01389{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m6_c01389{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m8_c01389{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m23_c01389{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01389{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m0_c01389{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mb_c01389{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01389{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01389{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);}
.m4e_c01389{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m21_c01389{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);}
.m29_c01389{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);}
.m2c_c01389{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);}
.m33_c01389{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);}
.m19_c01389{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m24_c01389{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);}
.m3a_c01389{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m53_c01389{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);}
.m1d_c01389{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);}
.m48_c01389{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.mf_c01389{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01389{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);}
.m30_c01389{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);}
.m3b_c01389{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_c01389{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1_c01389{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m4_c01389{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01389{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);}
.m3e_c01389{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);}
.ma_c01389{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);}
.m20_c01389{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m17_c01389{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.mc_c01389{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m56_c01389{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);}
.m50_c01389{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m5a_c01389{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);}
.m1a_c01389{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);}
.m13_c01389{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);}
.m22_c01389{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01389{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m9_c01389{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m18_c01389{transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);}
.m14_c01389{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01389{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.md_c01389{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);}
.m40_c01389{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01389{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);}
.m39_c01389{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m10_c01389{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01389{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m25_c01389{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m34_c01389{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);}
.m55_c01389{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m45_c01389{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m51_c01389{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);}
.m5_c01389{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m2_c01389{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m38_c01389{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m59_c01389{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m27_c01389{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m28_c01389{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);}
.me_c01389{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);}
.m2a_c01389{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m37_c01389{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m49_c01389{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);}
.m15_c01389{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m11_c01389{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m57_c01389{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m16_c01389{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);}
.m54_c01389{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m12_c01389{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);}
.m44_c01389{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m52_c01389{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);}
.m32_c01389{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);}
.m1f_c01389{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m26_c01389{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m5b_c01389{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m42_c01389{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01389{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m36_c01389{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01389{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);}
.m3_c01389{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01389{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.v0_c01389{vertical-align:0.000000px;}
.ls0_c01389{letter-spacing:0.000000px;}
.sc__c01389{text-shadow:none;}
.sc0_c01389{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01389{-webkit-text-stroke:0px transparent;}
.sc0_c01389{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01389{word-spacing:0.000000px;}
.ws0_c01389{word-spacing:1.144351px;}
.fc0_c01389{color:transparent;}
.fs7_c01389{font-size:34.560000px;}
.fsd_c01389{font-size:37.440000px;}
.fse_c01389{font-size:40.320000px;}
.fsc_c01389{font-size:43.200000px;}
.fs5_c01389{font-size:46.080000px;}
.fs3_c01389{font-size:48.960000px;}
.fs2_c01389{font-size:51.840000px;}
.fs4_c01389{font-size:54.720000px;}
.fs9_c01389{font-size:57.600000px;}
.fs1_c01389{font-size:60.480000px;}
.fs8_c01389{font-size:63.360000px;}
.fsa_c01389{font-size:66.240000px;}
.fsb_c01389{font-size:69.120000px;}
.fs0_c01389{font-size:77.760000px;}
.fs6_c01389{font-size:103.680000px;}
.y0_c01389{bottom:0.000000px;}
.y73_c01389{bottom:70.560000px;}
.y74_c01389{bottom:71.280000px;}
.y75_c01389{bottom:72.720000px;}
.y76_c01389{bottom:73.440000px;}
.y72_c01389{bottom:74.160000px;}
.y71_c01389{bottom:75.600000px;}
.y77_c01389{bottom:76.320000px;}
.y78_c01389{bottom:77.040000px;}
.y6a_c01389{bottom:114.480000px;}
.y6e_c01389{bottom:115.920000px;}
.y6c_c01389{bottom:116.640000px;}
.y6b_c01389{bottom:117.360000px;}
.y6d_c01389{bottom:118.080000px;}
.y69_c01389{bottom:118.800000px;}
.y6f_c01389{bottom:119.520000px;}
.y70_c01389{bottom:120.240000px;}
.y67_c01389{bottom:159.120000px;}
.y65_c01389{bottom:159.840000px;}
.y64_c01389{bottom:160.560000px;}
.y66_c01389{bottom:162.000000px;}
.y68_c01389{bottom:162.720000px;}
.y63_c01389{bottom:163.440000px;}
.y5d_c01389{bottom:200.160000px;}
.y5e_c01389{bottom:200.880000px;}
.y5f_c01389{bottom:201.600000px;}
.y61_c01389{bottom:202.320000px;}
.y5b_c01389{bottom:203.040000px;}
.y5c_c01389{bottom:203.760000px;}
.y60_c01389{bottom:204.480000px;}
.y62_c01389{bottom:205.200000px;}
.y5a_c01389{bottom:245.520000px;}
.y57_c01389{bottom:246.240000px;}
.y58_c01389{bottom:246.960000px;}
.y59_c01389{bottom:247.680000px;}
.y55_c01389{bottom:287.280000px;}
.y56_c01389{bottom:288.000000px;}
.y54_c01389{bottom:288.720000px;}
.y53_c01389{bottom:289.440000px;}
.y52_c01389{bottom:342.000000px;}
.y51_c01389{bottom:344.160000px;}
.y4d_c01389{bottom:383.760000px;}
.y50_c01389{bottom:384.480000px;}
.y4f_c01389{bottom:385.200000px;}
.y4e_c01389{bottom:385.920000px;}
.y4c_c01389{bottom:387.360000px;}
.y49_c01389{bottom:426.240000px;}
.y4a_c01389{bottom:426.960000px;}
.y4b_c01389{bottom:427.680000px;}
.y48_c01389{bottom:429.120000px;}
.y47_c01389{bottom:429.840000px;}
.y43_c01389{bottom:469.440000px;}
.y41_c01389{bottom:470.160000px;}
.y42_c01389{bottom:470.880000px;}
.y46_c01389{bottom:471.600000px;}
.y44_c01389{bottom:472.320000px;}
.y45_c01389{bottom:473.040000px;}
.y40_c01389{bottom:473.760000px;}
.y3c_c01389{bottom:512.640000px;}
.y3d_c01389{bottom:513.360000px;}
.y3f_c01389{bottom:514.080000px;}
.y3b_c01389{bottom:515.520000px;}
.y3e_c01389{bottom:516.240000px;}
.y3a_c01389{bottom:555.840000px;}
.y37_c01389{bottom:556.560000px;}
.y39_c01389{bottom:558.000000px;}
.y38_c01389{bottom:558.720000px;}
.y36_c01389{bottom:559.440000px;}
.y32_c01389{bottom:599.040000px;}
.y33_c01389{bottom:599.760000px;}
.y35_c01389{bottom:601.200000px;}
.y34_c01389{bottom:601.920000px;}
.y30_c01389{bottom:640.800000px;}
.y2f_c01389{bottom:642.240000px;}
.y2e_c01389{bottom:642.960000px;}
.y31_c01389{bottom:644.400000px;}
.y2d_c01389{bottom:645.120000px;}
.y2c_c01389{bottom:684.720000px;}
.y2b_c01389{bottom:685.440000px;}
.y29_c01389{bottom:687.600000px;}
.y2a_c01389{bottom:688.320000px;}
.y27_c01389{bottom:738.000000px;}
.y28_c01389{bottom:739.440000px;}
.y26_c01389{bottom:741.600000px;}
.y25_c01389{bottom:780.480000px;}
.y23_c01389{bottom:781.200000px;}
.y22_c01389{bottom:781.920000px;}
.y24_c01389{bottom:783.360000px;}
.y20_c01389{bottom:784.080000px;}
.y21_c01389{bottom:784.800000px;}
.y1f_c01389{bottom:822.240000px;}
.y1c_c01389{bottom:823.680000px;}
.y1e_c01389{bottom:824.400000px;}
.y1d_c01389{bottom:825.840000px;}
.y1b_c01389{bottom:826.560000px;}
.y19_c01389{bottom:866.160000px;}
.y17_c01389{bottom:867.600000px;}
.y1a_c01389{bottom:868.320000px;}
.y16_c01389{bottom:869.040000px;}
.y18_c01389{bottom:869.760000px;}
.y14_c01389{bottom:909.360000px;}
.y11_c01389{bottom:910.080000px;}
.y15_c01389{bottom:910.800000px;}
.y13_c01389{bottom:911.520000px;}
.y10_c01389{bottom:912.240000px;}
.y12_c01389{bottom:912.960000px;}
.yf_c01389{bottom:953.280000px;}
.ye_c01389{bottom:954.000000px;}
.yd_c01389{bottom:954.720000px;}
.yb_c01389{bottom:955.440000px;}
.yc_c01389{bottom:956.160000px;}
.y8_c01389{bottom:995.760000px;}
.y9_c01389{bottom:997.920000px;}
.ya_c01389{bottom:998.640000px;}
.y7_c01389{bottom:999.360000px;}
.y2_c01389{bottom:1038.960000px;}
.y6_c01389{bottom:1039.680000px;}
.y5_c01389{bottom:1041.120000px;}
.y3_c01389{bottom:1041.840000px;}
.y4_c01389{bottom:1042.560000px;}
.y1_c01389{bottom:1098.000000px;}
.h9_c01389{height:31.100625px;}
.hf_c01389{height:33.692344px;}
.h10_c01389{height:36.284062px;}
.he_c01389{height:38.875781px;}
.h7_c01389{height:41.467500px;}
.h5_c01389{height:44.059219px;}
.h4_c01389{height:46.650937px;}
.h6_c01389{height:49.242656px;}
.hb_c01389{height:51.834375px;}
.h3_c01389{height:54.426094px;}
.ha_c01389{height:57.017812px;}
.hc_c01389{height:59.609531px;}
.hd_c01389{height:62.201250px;}
.h2_c01389{height:69.976406px;}
.h8_c01389{height:93.301875px;}
.h1_c01389{height:1149.750000px;}
.h0_c01389{height:1149.840000px;}
.w1_c01389{width:767.250000px;}
.w0_c01389{width:767.520000px;}
.x0_c01389{left:0.000000px;}
.x2_c01389{left:42.480000px;}
.x4a_c01389{left:43.920000px;}
.x45_c01389{left:45.360000px;}
.x54_c01389{left:62.640000px;}
.x3a_c01389{left:73.440000px;}
.x41_c01389{left:83.520000px;}
.x2e_c01389{left:86.400000px;}
.x55_c01389{left:95.760000px;}
.x35_c01389{left:105.840000px;}
.x46_c01389{left:116.640000px;}
.x8_c01389{left:118.800000px;}
.x16_c01389{left:127.440000px;}
.x3_c01389{left:138.960000px;}
.x9_c01389{left:149.040000px;}
.xd_c01389{left:150.480000px;}
.x2a_c01389{left:160.560000px;}
.x17_c01389{left:170.640000px;}
.xe_c01389{left:182.160000px;}
.xa_c01389{left:183.600000px;}
.x36_c01389{left:192.240000px;}
.x2f_c01389{left:203.760000px;}
.x42_c01389{left:213.840000px;}
.x18_c01389{left:216.000000px;}
.x1f_c01389{left:224.640000px;}
.x4_c01389{left:236.160000px;}
.x43_c01389{left:246.240000px;}
.xf_c01389{left:257.040000px;}
.x24_c01389{left:259.200000px;}
.x2b_c01389{left:268.560000px;}
.x4b_c01389{left:278.640000px;}
.x38_c01389{left:280.080000px;}
.x30_c01389{left:290.160000px;}
.x3b_c01389{left:300.240000px;}
.x10_c01389{left:302.400000px;}
.x2c_c01389{left:311.040000px;}
.x20_c01389{left:312.480000px;}
.x19_c01389{left:322.560000px;}
.x25_c01389{left:334.800000px;}
.x5_c01389{left:344.160000px;}
.x11_c01389{left:354.960000px;}
.x56_c01389{left:356.400000px;}
.x3c_c01389{left:365.040000px;}
.x1a_c01389{left:366.480000px;}
.x51_c01389{left:375.840000px;}
.x6_c01389{left:378.000000px;}
.x47_c01389{left:386.640000px;}
.xb_c01389{left:388.800000px;}
.x3d_c01389{left:397.440000px;}
.x12_c01389{left:398.880000px;}
.x4e_c01389{left:411.120000px;}
.x31_c01389{left:419.040000px;}
.x26_c01389{left:420.480000px;}
.x52_c01389{left:429.840000px;}
.x3e_c01389{left:440.640000px;}
.x57_c01389{left:451.440000px;}
.xc_c01389{left:452.880000px;}
.x27_c01389{left:462.240000px;}
.x3f_c01389{left:471.600000px;}
.x4c_c01389{left:483.120000px;}
.x7_c01389{left:484.560000px;}
.x1b_c01389{left:494.640000px;}
.x28_c01389{left:496.800000px;}
.x44_c01389{left:505.440000px;}
.x32_c01389{left:516.240000px;}
.x53_c01389{left:525.600000px;}
.x13_c01389{left:527.760000px;}
.x1c_c01389{left:537.120000px;}
.x48_c01389{left:547.200000px;}
.x40_c01389{left:548.640000px;}
.x4f_c01389{left:558.000000px;}
.x21_c01389{left:559.440000px;}
.x33_c01389{left:569.520000px;}
.x39_c01389{left:579.600000px;}
.x14_c01389{left:591.840000px;}
.x49_c01389{left:601.200000px;}
.x22_c01389{left:602.640000px;}
.x50_c01389{left:612.000000px;}
.x29_c01389{left:613.440000px;}
.x34_c01389{left:622.800000px;}
.x1d_c01389{left:624.240000px;}
.x2d_c01389{left:626.400000px;}
.x4d_c01389{left:632.880000px;}
.x37_c01389{left:643.680000px;}
.x15_c01389{left:645.120000px;}
.x1e_c01389{left:655.920000px;}
.x1_c01389{left:676.800000px;}
.x23_c01389{left:678.240000px;}
@media print{
.v0_c01389{vertical-align:0.000000pt;}
.ls0_c01389{letter-spacing:0.000000pt;}
.ws1_c01389{word-spacing:0.000000pt;}
.ws0_c01389{word-spacing:1.017201pt;}
.fs7_c01389{font-size:30.720000pt;}
.fsd_c01389{font-size:33.280000pt;}
.fse_c01389{font-size:35.840000pt;}
.fsc_c01389{font-size:38.400000pt;}
.fs5_c01389{font-size:40.960000pt;}
.fs3_c01389{font-size:43.520000pt;}
.fs2_c01389{font-size:46.080000pt;}
.fs4_c01389{font-size:48.640000pt;}
.fs9_c01389{font-size:51.200000pt;}
.fs1_c01389{font-size:53.760000pt;}
.fs8_c01389{font-size:56.320000pt;}
.fsa_c01389{font-size:58.880000pt;}
.fsb_c01389{font-size:61.440000pt;}
.fs0_c01389{font-size:69.120000pt;}
.fs6_c01389{font-size:92.160000pt;}
.y0_c01389{bottom:0.000000pt;}
.y73_c01389{bottom:62.720000pt;}
.y74_c01389{bottom:63.360000pt;}
.y75_c01389{bottom:64.640000pt;}
.y76_c01389{bottom:65.280000pt;}
.y72_c01389{bottom:65.920000pt;}
.y71_c01389{bottom:67.200000pt;}
.y77_c01389{bottom:67.840000pt;}
.y78_c01389{bottom:68.480000pt;}
.y6a_c01389{bottom:101.760000pt;}
.y6e_c01389{bottom:103.040000pt;}
.y6c_c01389{bottom:103.680000pt;}
.y6b_c01389{bottom:104.320000pt;}
.y6d_c01389{bottom:104.960000pt;}
.y69_c01389{bottom:105.600000pt;}
.y6f_c01389{bottom:106.240000pt;}
.y70_c01389{bottom:106.880000pt;}
.y67_c01389{bottom:141.440000pt;}
.y65_c01389{bottom:142.080000pt;}
.y64_c01389{bottom:142.720000pt;}
.y66_c01389{bottom:144.000000pt;}
.y68_c01389{bottom:144.640000pt;}
.y63_c01389{bottom:145.280000pt;}
.y5d_c01389{bottom:177.920000pt;}
.y5e_c01389{bottom:178.560000pt;}
.y5f_c01389{bottom:179.200000pt;}
.y61_c01389{bottom:179.840000pt;}
.y5b_c01389{bottom:180.480000pt;}
.y5c_c01389{bottom:181.120000pt;}
.y60_c01389{bottom:181.760000pt;}
.y62_c01389{bottom:182.400000pt;}
.y5a_c01389{bottom:218.240000pt;}
.y57_c01389{bottom:218.880000pt;}
.y58_c01389{bottom:219.520000pt;}
.y59_c01389{bottom:220.160000pt;}
.y55_c01389{bottom:255.360000pt;}
.y56_c01389{bottom:256.000000pt;}
.y54_c01389{bottom:256.640000pt;}
.y53_c01389{bottom:257.280000pt;}
.y52_c01389{bottom:304.000000pt;}
.y51_c01389{bottom:305.920000pt;}
.y4d_c01389{bottom:341.120000pt;}
.y50_c01389{bottom:341.760000pt;}
.y4f_c01389{bottom:342.400000pt;}
.y4e_c01389{bottom:343.040000pt;}
.y4c_c01389{bottom:344.320000pt;}
.y49_c01389{bottom:378.880000pt;}
.y4a_c01389{bottom:379.520000pt;}
.y4b_c01389{bottom:380.160000pt;}
.y48_c01389{bottom:381.440000pt;}
.y47_c01389{bottom:382.080000pt;}
.y43_c01389{bottom:417.280000pt;}
.y41_c01389{bottom:417.920000pt;}
.y42_c01389{bottom:418.560000pt;}
.y46_c01389{bottom:419.200000pt;}
.y44_c01389{bottom:419.840000pt;}
.y45_c01389{bottom:420.480000pt;}
.y40_c01389{bottom:421.120000pt;}
.y3c_c01389{bottom:455.680000pt;}
.y3d_c01389{bottom:456.320000pt;}
.y3f_c01389{bottom:456.960000pt;}
.y3b_c01389{bottom:458.240000pt;}
.y3e_c01389{bottom:458.880000pt;}
.y3a_c01389{bottom:494.080000pt;}
.y37_c01389{bottom:494.720000pt;}
.y39_c01389{bottom:496.000000pt;}
.y38_c01389{bottom:496.640000pt;}
.y36_c01389{bottom:497.280000pt;}
.y32_c01389{bottom:532.480000pt;}
.y33_c01389{bottom:533.120000pt;}
.y35_c01389{bottom:534.400000pt;}
.y34_c01389{bottom:535.040000pt;}
.y30_c01389{bottom:569.600000pt;}
.y2f_c01389{bottom:570.880000pt;}
.y2e_c01389{bottom:571.520000pt;}
.y31_c01389{bottom:572.800000pt;}
.y2d_c01389{bottom:573.440000pt;}
.y2c_c01389{bottom:608.640000pt;}
.y2b_c01389{bottom:609.280000pt;}
.y29_c01389{bottom:611.200000pt;}
.y2a_c01389{bottom:611.840000pt;}
.y27_c01389{bottom:656.000000pt;}
.y28_c01389{bottom:657.280000pt;}
.y26_c01389{bottom:659.200000pt;}
.y25_c01389{bottom:693.760000pt;}
.y23_c01389{bottom:694.400000pt;}
.y22_c01389{bottom:695.040000pt;}
.y24_c01389{bottom:696.320000pt;}
.y20_c01389{bottom:696.960000pt;}
.y21_c01389{bottom:697.600000pt;}
.y1f_c01389{bottom:730.880000pt;}
.y1c_c01389{bottom:732.160000pt;}
.y1e_c01389{bottom:732.800000pt;}
.y1d_c01389{bottom:734.080000pt;}
.y1b_c01389{bottom:734.720000pt;}
.y19_c01389{bottom:769.920000pt;}
.y17_c01389{bottom:771.200000pt;}
.y1a_c01389{bottom:771.840000pt;}
.y16_c01389{bottom:772.480000pt;}
.y18_c01389{bottom:773.120000pt;}
.y14_c01389{bottom:808.320000pt;}
.y11_c01389{bottom:808.960000pt;}
.y15_c01389{bottom:809.600000pt;}
.y13_c01389{bottom:810.240000pt;}
.y10_c01389{bottom:810.880000pt;}
.y12_c01389{bottom:811.520000pt;}
.yf_c01389{bottom:847.360000pt;}
.ye_c01389{bottom:848.000000pt;}
.yd_c01389{bottom:848.640000pt;}
.yb_c01389{bottom:849.280000pt;}
.yc_c01389{bottom:849.920000pt;}
.y8_c01389{bottom:885.120000pt;}
.y9_c01389{bottom:887.040000pt;}
.ya_c01389{bottom:887.680000pt;}
.y7_c01389{bottom:888.320000pt;}
.y2_c01389{bottom:923.520000pt;}
.y6_c01389{bottom:924.160000pt;}
.y5_c01389{bottom:925.440000pt;}
.y3_c01389{bottom:926.080000pt;}
.y4_c01389{bottom:926.720000pt;}
.y1_c01389{bottom:976.000000pt;}
.h9_c01389{height:27.645000pt;}
.hf_c01389{height:29.948750pt;}
.h10_c01389{height:32.252500pt;}
.he_c01389{height:34.556250pt;}
.h7_c01389{height:36.860000pt;}
.h5_c01389{height:39.163750pt;}
.h4_c01389{height:41.467500pt;}
.h6_c01389{height:43.771250pt;}
.hb_c01389{height:46.075000pt;}
.h3_c01389{height:48.378750pt;}
.ha_c01389{height:50.682500pt;}
.hc_c01389{height:52.986250pt;}
.hd_c01389{height:55.290000pt;}
.h2_c01389{height:62.201250pt;}
.h8_c01389{height:82.935000pt;}
.h1_c01389{height:1022.000000pt;}
.h0_c01389{height:1022.080000pt;}
.w1_c01389{width:682.000000pt;}
.w0_c01389{width:682.240000pt;}
.x0_c01389{left:0.000000pt;}
.x2_c01389{left:37.760000pt;}
.x4a_c01389{left:39.040000pt;}
.x45_c01389{left:40.320000pt;}
.x54_c01389{left:55.680000pt;}
.x3a_c01389{left:65.280000pt;}
.x41_c01389{left:74.240000pt;}
.x2e_c01389{left:76.800000pt;}
.x55_c01389{left:85.120000pt;}
.x35_c01389{left:94.080000pt;}
.x46_c01389{left:103.680000pt;}
.x8_c01389{left:105.600000pt;}
.x16_c01389{left:113.280000pt;}
.x3_c01389{left:123.520000pt;}
.x9_c01389{left:132.480000pt;}
.xd_c01389{left:133.760000pt;}
.x2a_c01389{left:142.720000pt;}
.x17_c01389{left:151.680000pt;}
.xe_c01389{left:161.920000pt;}
.xa_c01389{left:163.200000pt;}
.x36_c01389{left:170.880000pt;}
.x2f_c01389{left:181.120000pt;}
.x42_c01389{left:190.080000pt;}
.x18_c01389{left:192.000000pt;}
.x1f_c01389{left:199.680000pt;}
.x4_c01389{left:209.920000pt;}
.x43_c01389{left:218.880000pt;}
.xf_c01389{left:228.480000pt;}
.x24_c01389{left:230.400000pt;}
.x2b_c01389{left:238.720000pt;}
.x4b_c01389{left:247.680000pt;}
.x38_c01389{left:248.960000pt;}
.x30_c01389{left:257.920000pt;}
.x3b_c01389{left:266.880000pt;}
.x10_c01389{left:268.800000pt;}
.x2c_c01389{left:276.480000pt;}
.x20_c01389{left:277.760000pt;}
.x19_c01389{left:286.720000pt;}
.x25_c01389{left:297.600000pt;}
.x5_c01389{left:305.920000pt;}
.x11_c01389{left:315.520000pt;}
.x56_c01389{left:316.800000pt;}
.x3c_c01389{left:324.480000pt;}
.x1a_c01389{left:325.760000pt;}
.x51_c01389{left:334.080000pt;}
.x6_c01389{left:336.000000pt;}
.x47_c01389{left:343.680000pt;}
.xb_c01389{left:345.600000pt;}
.x3d_c01389{left:353.280000pt;}
.x12_c01389{left:354.560000pt;}
.x4e_c01389{left:365.440000pt;}
.x31_c01389{left:372.480000pt;}
.x26_c01389{left:373.760000pt;}
.x52_c01389{left:382.080000pt;}
.x3e_c01389{left:391.680000pt;}
.x57_c01389{left:401.280000pt;}
.xc_c01389{left:402.560000pt;}
.x27_c01389{left:410.880000pt;}
.x3f_c01389{left:419.200000pt;}
.x4c_c01389{left:429.440000pt;}
.x7_c01389{left:430.720000pt;}
.x1b_c01389{left:439.680000pt;}
.x28_c01389{left:441.600000pt;}
.x44_c01389{left:449.280000pt;}
.x32_c01389{left:458.880000pt;}
.x53_c01389{left:467.200000pt;}
.x13_c01389{left:469.120000pt;}
.x1c_c01389{left:477.440000pt;}
.x48_c01389{left:486.400000pt;}
.x40_c01389{left:487.680000pt;}
.x4f_c01389{left:496.000000pt;}
.x21_c01389{left:497.280000pt;}
.x33_c01389{left:506.240000pt;}
.x39_c01389{left:515.200000pt;}
.x14_c01389{left:526.080000pt;}
.x49_c01389{left:534.400000pt;}
.x22_c01389{left:535.680000pt;}
.x50_c01389{left:544.000000pt;}
.x29_c01389{left:545.280000pt;}
.x34_c01389{left:553.600000pt;}
.x1d_c01389{left:554.880000pt;}
.x2d_c01389{left:556.800000pt;}
.x4d_c01389{left:562.560000pt;}
.x37_c01389{left:572.160000pt;}
.x15_c01389{left:573.440000pt;}
.x1e_c01389{left:583.040000pt;}
.x1_c01389{left:601.600000pt;}
.x23_c01389{left:602.880000pt;}
}





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

.ir_c01390:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01390{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01390;src:url('chunks/assets/font_989b6f153d8862ef8531c79f.woff2')format("woff");}.ff1_c01390{font-family:ff1_c01390;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m59_c01390{transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);}
.m61_c01390{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1_c01390{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01390{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);}
.m62_c01390{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m20_c01390{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);}
.m4e_c01390{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m6_c01390{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01390{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m37_c01390{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m48_c01390{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01390{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m27_c01390{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);}
.m60_c01390{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m16_c01390{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);}
.m2c_c01390{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);}
.m50_c01390{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m0_c01390{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);}
.m49_c01390{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m26_c01390{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);}
.m35_c01390{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m39_c01390{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);}
.m3b_c01390{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01390{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);}
.m38_c01390{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);}
.md_c01390{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m9_c01390{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m18_c01390{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.mf_c01390{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_c01390{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01390{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);}
.m4c_c01390{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m5c_c01390{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);}
.m2b_c01390{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);}
.m32_c01390{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);}
.m45_c01390{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.me_c01390{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);}
.m3c_c01390{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m8_c01390{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);}
.m57_c01390{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01390{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);}
.m15_c01390{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);}
.ma_c01390{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m42_c01390{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m51_c01390{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);}
.m23_c01390{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m14_c01390{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01390{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);}
.m52_c01390{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m7_c01390{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);}
.m1d_c01390{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m54_c01390{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m30_c01390{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m34_c01390{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);}
.m2_c01390{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m46_c01390{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01390{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m53_c01390{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);}
.m2d_c01390{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m17_c01390{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m28_c01390{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m10_c01390{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);}
.m12_c01390{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);}
.m56_c01390{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m43_c01390{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01390{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m41_c01390{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);}
.m5d_c01390{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m31_c01390{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m25_c01390{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);}
.m29_c01390{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01390{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.mb_c01390{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m5b_c01390{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);}
.m4d_c01390{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m4f_c01390{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01390{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);}
.m5a_c01390{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m36_c01390{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);}
.m11_c01390{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01390{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m21_c01390{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m4_c01390{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m5e_c01390{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m3_c01390{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m5_c01390{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m22_c01390{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);}
.m55_c01390{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);}
.m47_c01390{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m24_c01390{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_c01390{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01390{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m33_c01390{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);}
.mc_c01390{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m40_c01390{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m58_c01390{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m13_c01390{transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01390{transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);}
.m63_c01390{transform:matrix(1.082500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.082500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.082500,0.000000,0.000000,0.250000,0,0);}
.m5f_c01390{transform:matrix(1.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.200000,0.000000,0.000000,0.250000,0,0);}
.v0_c01390{vertical-align:0.000000px;}
.ls0_c01390{letter-spacing:0.000000px;}
.sc__c01390{text-shadow:none;}
.sc0_c01390{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01390{-webkit-text-stroke:0px transparent;}
.sc0_c01390{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01390{word-spacing:0.000000px;}
.fc0_c01390{color:transparent;}
.fsf_c01390{font-size:14.400000px;}
.fs10_c01390{font-size:17.280000px;}
.fs3_c01390{font-size:34.560000px;}
.fsb_c01390{font-size:37.440000px;}
.fse_c01390{font-size:40.320000px;}
.fsd_c01390{font-size:43.200000px;}
.fs7_c01390{font-size:46.080000px;}
.fs5_c01390{font-size:48.960000px;}
.fs2_c01390{font-size:51.840000px;}
.fs9_c01390{font-size:54.720000px;}
.fs6_c01390{font-size:57.600000px;}
.fs4_c01390{font-size:60.480000px;}
.fsc_c01390{font-size:63.360000px;}
.fsa_c01390{font-size:66.240000px;}
.fs8_c01390{font-size:69.120000px;}
.fs1_c01390{font-size:72.000000px;}
.fs0_c01390{font-size:77.760000px;}
.y0_c01390{bottom:0.000000px;}
.y82_c01390{bottom:48.240000px;}
.y83_c01390{bottom:49.680000px;}
.y85_c01390{bottom:50.400000px;}
.y86_c01390{bottom:51.840000px;}
.y84_c01390{bottom:52.560000px;}
.y81_c01390{bottom:53.280000px;}
.y7e_c01390{bottom:90.000000px;}
.y7f_c01390{bottom:90.720000px;}
.y7d_c01390{bottom:92.160000px;}
.y80_c01390{bottom:92.880000px;}
.y7c_c01390{bottom:95.760000px;}
.y79_c01390{bottom:133.920000px;}
.y7a_c01390{bottom:135.360000px;}
.y78_c01390{bottom:136.080000px;}
.y77_c01390{bottom:136.800000px;}
.y7b_c01390{bottom:138.240000px;}
.y73_c01390{bottom:177.120000px;}
.y6f_c01390{bottom:177.840000px;}
.y70_c01390{bottom:178.560000px;}
.y71_c01390{bottom:179.280000px;}
.y72_c01390{bottom:180.000000px;}
.y74_c01390{bottom:180.720000px;}
.y76_c01390{bottom:181.440000px;}
.y75_c01390{bottom:182.160000px;}
.y69_c01390{bottom:219.600000px;}
.y6b_c01390{bottom:220.320000px;}
.y6a_c01390{bottom:221.040000px;}
.y67_c01390{bottom:221.760000px;}
.y68_c01390{bottom:222.480000px;}
.y6c_c01390{bottom:223.200000px;}
.y6d_c01390{bottom:223.920000px;}
.y6e_c01390{bottom:224.640000px;}
.y63_c01390{bottom:263.520000px;}
.y65_c01390{bottom:264.960000px;}
.y62_c01390{bottom:265.680000px;}
.y61_c01390{bottom:266.400000px;}
.y64_c01390{bottom:267.120000px;}
.y60_c01390{bottom:267.840000px;}
.y66_c01390{bottom:268.560000px;}
.y5b_c01390{bottom:306.720000px;}
.y5c_c01390{bottom:308.880000px;}
.y5d_c01390{bottom:309.600000px;}
.y5e_c01390{bottom:310.320000px;}
.y5f_c01390{bottom:311.040000px;}
.y57_c01390{bottom:349.200000px;}
.y59_c01390{bottom:350.640000px;}
.y5a_c01390{bottom:351.360000px;}
.y56_c01390{bottom:352.080000px;}
.y58_c01390{bottom:352.800000px;}
.y55_c01390{bottom:353.520000px;}
.y51_c01390{bottom:392.400000px;}
.y52_c01390{bottom:393.120000px;}
.y53_c01390{bottom:393.840000px;}
.y50_c01390{bottom:395.280000px;}
.y4f_c01390{bottom:396.000000px;}
.y54_c01390{bottom:396.720000px;}
.y4a_c01390{bottom:435.600000px;}
.y4b_c01390{bottom:436.320000px;}
.y4c_c01390{bottom:437.760000px;}
.y4e_c01390{bottom:438.480000px;}
.y4d_c01390{bottom:439.200000px;}
.y45_c01390{bottom:477.360000px;}
.y48_c01390{bottom:478.800000px;}
.y46_c01390{bottom:479.520000px;}
.y44_c01390{bottom:480.960000px;}
.y47_c01390{bottom:481.680000px;}
.y49_c01390{bottom:482.400000px;}
.y41_c01390{bottom:520.560000px;}
.y3e_c01390{bottom:521.280000px;}
.y42_c01390{bottom:522.000000px;}
.y43_c01390{bottom:523.440000px;}
.y3f_c01390{bottom:524.160000px;}
.y40_c01390{bottom:524.880000px;}
.y3d_c01390{bottom:564.480000px;}
.y3c_c01390{bottom:566.640000px;}
.y3b_c01390{bottom:567.360000px;}
.y3a_c01390{bottom:606.960000px;}
.y38_c01390{bottom:607.680000px;}
.y37_c01390{bottom:609.840000px;}
.y39_c01390{bottom:610.560000px;}
.y33_c01390{bottom:650.160000px;}
.y35_c01390{bottom:650.880000px;}
.y36_c01390{bottom:652.320000px;}
.y34_c01390{bottom:653.040000px;}
.y32_c01390{bottom:691.920000px;}
.y2e_c01390{bottom:693.360000px;}
.y30_c01390{bottom:694.080000px;}
.y31_c01390{bottom:695.520000px;}
.y2f_c01390{bottom:696.240000px;}
.y2d_c01390{bottom:735.120000px;}
.y2a_c01390{bottom:736.560000px;}
.y2c_c01390{bottom:737.280000px;}
.y29_c01390{bottom:738.720000px;}
.y2b_c01390{bottom:739.440000px;}
.y27_c01390{bottom:777.600000px;}
.y25_c01390{bottom:779.760000px;}
.y26_c01390{bottom:780.480000px;}
.y23_c01390{bottom:781.200000px;}
.y28_c01390{bottom:781.920000px;}
.y24_c01390{bottom:783.360000px;}
.y21_c01390{bottom:821.520000px;}
.y20_c01390{bottom:822.240000px;}
.y22_c01390{bottom:824.400000px;}
.y1e_c01390{bottom:825.120000px;}
.y1f_c01390{bottom:825.840000px;}
.y1c_c01390{bottom:864.000000px;}
.y1d_c01390{bottom:864.720000px;}
.y1b_c01390{bottom:866.880000px;}
.y18_c01390{bottom:867.600000px;}
.y19_c01390{bottom:868.320000px;}
.y1a_c01390{bottom:869.040000px;}
.y14_c01390{bottom:907.920000px;}
.y13_c01390{bottom:908.640000px;}
.y17_c01390{bottom:910.080000px;}
.y16_c01390{bottom:910.800000px;}
.y15_c01390{bottom:911.520000px;}
.y12_c01390{bottom:950.400000px;}
.y11_c01390{bottom:951.120000px;}
.yf_c01390{bottom:953.280000px;}
.y10_c01390{bottom:954.720000px;}
.y9_c01390{bottom:992.880000px;}
.yd_c01390{bottom:994.320000px;}
.yb_c01390{bottom:995.040000px;}
.ye_c01390{bottom:995.760000px;}
.yc_c01390{bottom:996.480000px;}
.ya_c01390{bottom:997.200000px;}
.y8_c01390{bottom:1035.360000px;}
.y5_c01390{bottom:1036.080000px;}
.y2_c01390{bottom:1036.800000px;}
.y7_c01390{bottom:1038.240000px;}
.y6_c01390{bottom:1038.960000px;}
.y3_c01390{bottom:1039.680000px;}
.y4_c01390{bottom:1040.400000px;}
.y1_c01390{bottom:1098.000000px;}
.h11_c01390{height:12.958594px;}
.h12_c01390{height:15.550313px;}
.h5_c01390{height:31.100625px;}
.hd_c01390{height:33.692344px;}
.h10_c01390{height:36.284062px;}
.hf_c01390{height:38.875781px;}
.h9_c01390{height:41.467500px;}
.h7_c01390{height:44.059219px;}
.h4_c01390{height:46.650937px;}
.hb_c01390{height:49.242656px;}
.h8_c01390{height:51.834375px;}
.h6_c01390{height:54.426094px;}
.he_c01390{height:57.017812px;}
.hc_c01390{height:59.609531px;}
.ha_c01390{height:62.201250px;}
.h3_c01390{height:64.792969px;}
.h2_c01390{height:69.976406px;}
.h1_c01390{height:1149.750000px;}
.h0_c01390{height:1149.840000px;}
.w0_c01390{width:757.440000px;}
.w1_c01390{width:757.500000px;}
.x0_c01390{left:0.000000px;}
.x2_c01390{left:41.040000px;}
.x2f_c01390{left:42.480000px;}
.x4d_c01390{left:44.640000px;}
.x1d_c01390{left:61.920000px;}
.x4e_c01390{left:72.000000px;}
.x23_c01390{left:73.440000px;}
.x59_c01390{left:74.880000px;}
.xe_c01390{left:83.520000px;}
.x49_c01390{left:95.040000px;}
.x3_c01390{left:104.400000px;}
.x2a_c01390{left:105.840000px;}
.x38_c01390{left:115.200000px;}
.xf_c01390{left:116.640000px;}
.x18_c01390{left:126.720000px;}
.x3c_c01390{left:136.800000px;}
.x30_c01390{left:138.240000px;}
.x39_c01390{left:146.880000px;}
.x44_c01390{left:149.040000px;}
.x4a_c01390{left:159.840000px;}
.x19_c01390{left:169.920000px;}
.x10_c01390{left:181.440000px;}
.x4_c01390{left:191.520000px;}
.x5a_c01390{left:192.960000px;}
.x1a_c01390{left:202.320000px;}
.x3f_c01390{left:203.760000px;}
.x11_c01390{left:213.120000px;}
.x5_c01390{left:223.920000px;}
.x1e_c01390{left:235.440000px;}
.x12_c01390{left:246.240000px;}
.x6_c01390{left:257.040000px;}
.x4f_c01390{left:267.840000px;}
.x45_c01390{left:269.280000px;}
.x24_c01390{left:289.440000px;}
.x1f_c01390{left:299.520000px;}
.x40_c01390{left:300.960000px;}
.x34_c01390{left:308.880000px;}
.x7_c01390{left:311.760000px;}
.x20_c01390{left:321.120000px;}
.x25_c01390{left:333.360000px;}
.x8_c01390{left:342.720000px;}
.x3d_c01390{left:344.160000px;}
.x31_c01390{left:354.240000px;}
.x3a_c01390{left:365.040000px;}
.x9_c01390{left:375.840000px;}
.x55_c01390{left:385.200000px;}
.x13_c01390{left:386.640000px;}
.x41_c01390{left:396.720000px;}
.x35_c01390{left:398.160000px;}
.x50_c01390{left:407.520000px;}
.x4b_c01390{left:416.880000px;}
.x2b_c01390{left:419.040000px;}
.x26_c01390{left:420.480000px;}
.x52_c01390{left:429.840000px;}
.x56_c01390{left:439.200000px;}
.x14_c01390{left:440.640000px;}
.x53_c01390{left:450.000000px;}
.xa_c01390{left:451.440000px;}
.x2c_c01390{left:460.080000px;}
.x36_c01390{left:462.240000px;}
.x1b_c01390{left:472.320000px;}
.x58_c01390{left:482.400000px;}
.x15_c01390{left:483.840000px;}
.x47_c01390{left:493.200000px;}
.xb_c01390{left:494.640000px;}
.x54_c01390{left:503.280000px;}
.x21_c01390{left:505.440000px;}
.x51_c01390{left:514.080000px;}
.x27_c01390{left:516.240000px;}
.x46_c01390{left:524.880000px;}
.x3b_c01390{left:526.320000px;}
.x16_c01390{left:536.400000px;}
.x42_c01390{left:546.480000px;}
.x2d_c01390{left:547.920000px;}
.x5b_c01390{left:557.280000px;}
.xc_c01390{left:558.720000px;}
.x37_c01390{left:568.080000px;}
.x2e_c01390{left:578.880000px;}
.x32_c01390{left:590.400000px;}
.x57_c01390{left:599.760000px;}
.xd_c01390{left:601.200000px;}
.x22_c01390{left:611.280000px;}
.x3e_c01390{left:622.080000px;}
.x28_c01390{left:632.880000px;}
.x33_c01390{left:635.040000px;}
.x4c_c01390{left:643.680000px;}
.x17_c01390{left:645.120000px;}
.x1_c01390{left:649.440000px;}
.x29_c01390{left:654.480000px;}
.x1c_c01390{left:665.280000px;}
.x48_c01390{left:673.920000px;}
.x43_c01390{left:697.680000px;}
@media print{
.v0_c01390{vertical-align:0.000000pt;}
.ls0_c01390{letter-spacing:0.000000pt;}
.ws0_c01390{word-spacing:0.000000pt;}
.fsf_c01390{font-size:12.800000pt;}
.fs10_c01390{font-size:15.360000pt;}
.fs3_c01390{font-size:30.720000pt;}
.fsb_c01390{font-size:33.280000pt;}
.fse_c01390{font-size:35.840000pt;}
.fsd_c01390{font-size:38.400000pt;}
.fs7_c01390{font-size:40.960000pt;}
.fs5_c01390{font-size:43.520000pt;}
.fs2_c01390{font-size:46.080000pt;}
.fs9_c01390{font-size:48.640000pt;}
.fs6_c01390{font-size:51.200000pt;}
.fs4_c01390{font-size:53.760000pt;}
.fsc_c01390{font-size:56.320000pt;}
.fsa_c01390{font-size:58.880000pt;}
.fs8_c01390{font-size:61.440000pt;}
.fs1_c01390{font-size:64.000000pt;}
.fs0_c01390{font-size:69.120000pt;}
.y0_c01390{bottom:0.000000pt;}
.y82_c01390{bottom:42.880000pt;}
.y83_c01390{bottom:44.160000pt;}
.y85_c01390{bottom:44.800000pt;}
.y86_c01390{bottom:46.080000pt;}
.y84_c01390{bottom:46.720000pt;}
.y81_c01390{bottom:47.360000pt;}
.y7e_c01390{bottom:80.000000pt;}
.y7f_c01390{bottom:80.640000pt;}
.y7d_c01390{bottom:81.920000pt;}
.y80_c01390{bottom:82.560000pt;}
.y7c_c01390{bottom:85.120000pt;}
.y79_c01390{bottom:119.040000pt;}
.y7a_c01390{bottom:120.320000pt;}
.y78_c01390{bottom:120.960000pt;}
.y77_c01390{bottom:121.600000pt;}
.y7b_c01390{bottom:122.880000pt;}
.y73_c01390{bottom:157.440000pt;}
.y6f_c01390{bottom:158.080000pt;}
.y70_c01390{bottom:158.720000pt;}
.y71_c01390{bottom:159.360000pt;}
.y72_c01390{bottom:160.000000pt;}
.y74_c01390{bottom:160.640000pt;}
.y76_c01390{bottom:161.280000pt;}
.y75_c01390{bottom:161.920000pt;}
.y69_c01390{bottom:195.200000pt;}
.y6b_c01390{bottom:195.840000pt;}
.y6a_c01390{bottom:196.480000pt;}
.y67_c01390{bottom:197.120000pt;}
.y68_c01390{bottom:197.760000pt;}
.y6c_c01390{bottom:198.400000pt;}
.y6d_c01390{bottom:199.040000pt;}
.y6e_c01390{bottom:199.680000pt;}
.y63_c01390{bottom:234.240000pt;}
.y65_c01390{bottom:235.520000pt;}
.y62_c01390{bottom:236.160000pt;}
.y61_c01390{bottom:236.800000pt;}
.y64_c01390{bottom:237.440000pt;}
.y60_c01390{bottom:238.080000pt;}
.y66_c01390{bottom:238.720000pt;}
.y5b_c01390{bottom:272.640000pt;}
.y5c_c01390{bottom:274.560000pt;}
.y5d_c01390{bottom:275.200000pt;}
.y5e_c01390{bottom:275.840000pt;}
.y5f_c01390{bottom:276.480000pt;}
.y57_c01390{bottom:310.400000pt;}
.y59_c01390{bottom:311.680000pt;}
.y5a_c01390{bottom:312.320000pt;}
.y56_c01390{bottom:312.960000pt;}
.y58_c01390{bottom:313.600000pt;}
.y55_c01390{bottom:314.240000pt;}
.y51_c01390{bottom:348.800000pt;}
.y52_c01390{bottom:349.440000pt;}
.y53_c01390{bottom:350.080000pt;}
.y50_c01390{bottom:351.360000pt;}
.y4f_c01390{bottom:352.000000pt;}
.y54_c01390{bottom:352.640000pt;}
.y4a_c01390{bottom:387.200000pt;}
.y4b_c01390{bottom:387.840000pt;}
.y4c_c01390{bottom:389.120000pt;}
.y4e_c01390{bottom:389.760000pt;}
.y4d_c01390{bottom:390.400000pt;}
.y45_c01390{bottom:424.320000pt;}
.y48_c01390{bottom:425.600000pt;}
.y46_c01390{bottom:426.240000pt;}
.y44_c01390{bottom:427.520000pt;}
.y47_c01390{bottom:428.160000pt;}
.y49_c01390{bottom:428.800000pt;}
.y41_c01390{bottom:462.720000pt;}
.y3e_c01390{bottom:463.360000pt;}
.y42_c01390{bottom:464.000000pt;}
.y43_c01390{bottom:465.280000pt;}
.y3f_c01390{bottom:465.920000pt;}
.y40_c01390{bottom:466.560000pt;}
.y3d_c01390{bottom:501.760000pt;}
.y3c_c01390{bottom:503.680000pt;}
.y3b_c01390{bottom:504.320000pt;}
.y3a_c01390{bottom:539.520000pt;}
.y38_c01390{bottom:540.160000pt;}
.y37_c01390{bottom:542.080000pt;}
.y39_c01390{bottom:542.720000pt;}
.y33_c01390{bottom:577.920000pt;}
.y35_c01390{bottom:578.560000pt;}
.y36_c01390{bottom:579.840000pt;}
.y34_c01390{bottom:580.480000pt;}
.y32_c01390{bottom:615.040000pt;}
.y2e_c01390{bottom:616.320000pt;}
.y30_c01390{bottom:616.960000pt;}
.y31_c01390{bottom:618.240000pt;}
.y2f_c01390{bottom:618.880000pt;}
.y2d_c01390{bottom:653.440000pt;}
.y2a_c01390{bottom:654.720000pt;}
.y2c_c01390{bottom:655.360000pt;}
.y29_c01390{bottom:656.640000pt;}
.y2b_c01390{bottom:657.280000pt;}
.y27_c01390{bottom:691.200000pt;}
.y25_c01390{bottom:693.120000pt;}
.y26_c01390{bottom:693.760000pt;}
.y23_c01390{bottom:694.400000pt;}
.y28_c01390{bottom:695.040000pt;}
.y24_c01390{bottom:696.320000pt;}
.y21_c01390{bottom:730.240000pt;}
.y20_c01390{bottom:730.880000pt;}
.y22_c01390{bottom:732.800000pt;}
.y1e_c01390{bottom:733.440000pt;}
.y1f_c01390{bottom:734.080000pt;}
.y1c_c01390{bottom:768.000000pt;}
.y1d_c01390{bottom:768.640000pt;}
.y1b_c01390{bottom:770.560000pt;}
.y18_c01390{bottom:771.200000pt;}
.y19_c01390{bottom:771.840000pt;}
.y1a_c01390{bottom:772.480000pt;}
.y14_c01390{bottom:807.040000pt;}
.y13_c01390{bottom:807.680000pt;}
.y17_c01390{bottom:808.960000pt;}
.y16_c01390{bottom:809.600000pt;}
.y15_c01390{bottom:810.240000pt;}
.y12_c01390{bottom:844.800000pt;}
.y11_c01390{bottom:845.440000pt;}
.yf_c01390{bottom:847.360000pt;}
.y10_c01390{bottom:848.640000pt;}
.y9_c01390{bottom:882.560000pt;}
.yd_c01390{bottom:883.840000pt;}
.yb_c01390{bottom:884.480000pt;}
.ye_c01390{bottom:885.120000pt;}
.yc_c01390{bottom:885.760000pt;}
.ya_c01390{bottom:886.400000pt;}
.y8_c01390{bottom:920.320000pt;}
.y5_c01390{bottom:920.960000pt;}
.y2_c01390{bottom:921.600000pt;}
.y7_c01390{bottom:922.880000pt;}
.y6_c01390{bottom:923.520000pt;}
.y3_c01390{bottom:924.160000pt;}
.y4_c01390{bottom:924.800000pt;}
.y1_c01390{bottom:976.000000pt;}
.h11_c01390{height:11.518750pt;}
.h12_c01390{height:13.822500pt;}
.h5_c01390{height:27.645000pt;}
.hd_c01390{height:29.948750pt;}
.h10_c01390{height:32.252500pt;}
.hf_c01390{height:34.556250pt;}
.h9_c01390{height:36.860000pt;}
.h7_c01390{height:39.163750pt;}
.h4_c01390{height:41.467500pt;}
.hb_c01390{height:43.771250pt;}
.h8_c01390{height:46.075000pt;}
.h6_c01390{height:48.378750pt;}
.he_c01390{height:50.682500pt;}
.hc_c01390{height:52.986250pt;}
.ha_c01390{height:55.290000pt;}
.h3_c01390{height:57.593750pt;}
.h2_c01390{height:62.201250pt;}
.h1_c01390{height:1022.000000pt;}
.h0_c01390{height:1022.080000pt;}
.w0_c01390{width:673.280000pt;}
.w1_c01390{width:673.333333pt;}
.x0_c01390{left:0.000000pt;}
.x2_c01390{left:36.480000pt;}
.x2f_c01390{left:37.760000pt;}
.x4d_c01390{left:39.680000pt;}
.x1d_c01390{left:55.040000pt;}
.x4e_c01390{left:64.000000pt;}
.x23_c01390{left:65.280000pt;}
.x59_c01390{left:66.560000pt;}
.xe_c01390{left:74.240000pt;}
.x49_c01390{left:84.480000pt;}
.x3_c01390{left:92.800000pt;}
.x2a_c01390{left:94.080000pt;}
.x38_c01390{left:102.400000pt;}
.xf_c01390{left:103.680000pt;}
.x18_c01390{left:112.640000pt;}
.x3c_c01390{left:121.600000pt;}
.x30_c01390{left:122.880000pt;}
.x39_c01390{left:130.560000pt;}
.x44_c01390{left:132.480000pt;}
.x4a_c01390{left:142.080000pt;}
.x19_c01390{left:151.040000pt;}
.x10_c01390{left:161.280000pt;}
.x4_c01390{left:170.240000pt;}
.x5a_c01390{left:171.520000pt;}
.x1a_c01390{left:179.840000pt;}
.x3f_c01390{left:181.120000pt;}
.x11_c01390{left:189.440000pt;}
.x5_c01390{left:199.040000pt;}
.x1e_c01390{left:209.280000pt;}
.x12_c01390{left:218.880000pt;}
.x6_c01390{left:228.480000pt;}
.x4f_c01390{left:238.080000pt;}
.x45_c01390{left:239.360000pt;}
.x24_c01390{left:257.280000pt;}
.x1f_c01390{left:266.240000pt;}
.x40_c01390{left:267.520000pt;}
.x34_c01390{left:274.560000pt;}
.x7_c01390{left:277.120000pt;}
.x20_c01390{left:285.440000pt;}
.x25_c01390{left:296.320000pt;}
.x8_c01390{left:304.640000pt;}
.x3d_c01390{left:305.920000pt;}
.x31_c01390{left:314.880000pt;}
.x3a_c01390{left:324.480000pt;}
.x9_c01390{left:334.080000pt;}
.x55_c01390{left:342.400000pt;}
.x13_c01390{left:343.680000pt;}
.x41_c01390{left:352.640000pt;}
.x35_c01390{left:353.920000pt;}
.x50_c01390{left:362.240000pt;}
.x4b_c01390{left:370.560000pt;}
.x2b_c01390{left:372.480000pt;}
.x26_c01390{left:373.760000pt;}
.x52_c01390{left:382.080000pt;}
.x56_c01390{left:390.400000pt;}
.x14_c01390{left:391.680000pt;}
.x53_c01390{left:400.000000pt;}
.xa_c01390{left:401.280000pt;}
.x2c_c01390{left:408.960000pt;}
.x36_c01390{left:410.880000pt;}
.x1b_c01390{left:419.840000pt;}
.x58_c01390{left:428.800000pt;}
.x15_c01390{left:430.080000pt;}
.x47_c01390{left:438.400000pt;}
.xb_c01390{left:439.680000pt;}
.x54_c01390{left:447.360000pt;}
.x21_c01390{left:449.280000pt;}
.x51_c01390{left:456.960000pt;}
.x27_c01390{left:458.880000pt;}
.x46_c01390{left:466.560000pt;}
.x3b_c01390{left:467.840000pt;}
.x16_c01390{left:476.800000pt;}
.x42_c01390{left:485.760000pt;}
.x2d_c01390{left:487.040000pt;}
.x5b_c01390{left:495.360000pt;}
.xc_c01390{left:496.640000pt;}
.x37_c01390{left:504.960000pt;}
.x2e_c01390{left:514.560000pt;}
.x32_c01390{left:524.800000pt;}
.x57_c01390{left:533.120000pt;}
.xd_c01390{left:534.400000pt;}
.x22_c01390{left:543.360000pt;}
.x3e_c01390{left:552.960000pt;}
.x28_c01390{left:562.560000pt;}
.x33_c01390{left:564.480000pt;}
.x4c_c01390{left:572.160000pt;}
.x17_c01390{left:573.440000pt;}
.x1_c01390{left:577.280000pt;}
.x29_c01390{left:581.760000pt;}
.x1c_c01390{left:591.360000pt;}
.x48_c01390{left:599.040000pt;}
.x43_c01390{left:620.160000pt;}
}





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

.ir_c01391:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01391{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01391;src:url('chunks/assets/font_cf17eedaa43612f5180b4785.woff2')format("woff");}.ff1_c01391{font-family:ff1_c01391;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m62_c01391{transform:matrix(0.163025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163025,0.000000,0.000000,0.250000,0,0);}
.m3e_c01391{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m64_c01391{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m55_c01391{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);}
.m53_c01391{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);}
.m43_c01391{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);}
.m67_c01391{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m17_c01391{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);}
.m46_c01391{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);}
.m2e_c01391{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01391{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);}
.m2b_c01391{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.me_c01391{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m4e_c01391{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m32_c01391{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m51_c01391{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m41_c01391{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m61_c01391{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01391{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m63_c01391{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m6c_c01391{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m6a_c01391{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01391{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m5b_c01391{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m6b_c01391{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);}
.m68_c01391{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m5e_c01391{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m16_c01391{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m1_c01391{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m48_c01391{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);}
.m66_c01391{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01391{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m13_c01391{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m7_c01391{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m42_c01391{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m0_c01391{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);}
.m20_c01391{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01391{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m9_c01391{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);}
.m35_c01391{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m8_c01391{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);}
.m25_c01391{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m45_c01391{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);}
.m3f_c01391{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);}
.m27_c01391{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);}
.m1c_c01391{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);}
.m5d_c01391{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01391{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m52_c01391{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01391{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);}
.m31_c01391{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m5a_c01391{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);}
.m15_c01391{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01391{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);}
.m28_c01391{transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);}
.m19_c01391{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m2_c01391{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m38_c01391{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m39_c01391{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);}
.m49_c01391{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m60_c01391{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m5_c01391{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);}
.m3_c01391{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);}
.m1f_c01391{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m33_c01391{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m59_c01391{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01391{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);}
.m57_c01391{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m4_c01391{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);}
.m11_c01391{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m36_c01391{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m23_c01391{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m29_c01391{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);}
.m10_c01391{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);}
.ma_c01391{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m47_c01391{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);}
.m4a_c01391{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m5c_c01391{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m30_c01391{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.mb_c01391{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m34_c01391{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);}
.m21_c01391{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m56_c01391{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01391{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.md_c01391{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.mf_c01391{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);}
.m26_c01391{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);}
.m37_c01391{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m14_c01391{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m6_c01391{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m18_c01391{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01391{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m22_c01391{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);}
.mc_c01391{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);}
.m2f_c01391{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m65_c01391{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m12_c01391{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);}
.m4b_c01391{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01391{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m58_c01391{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m54_c01391{transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01391{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m44_c01391{transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01391{transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);}
.m5f_c01391{transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);}
.m69_c01391{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.m40_c01391{transform:matrix(0.872500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.872500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.872500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01391{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.m50_c01391{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.v1_c01391{vertical-align:-14.400000px;}
.v0_c01391{vertical-align:0.000000px;}
.v2_c01391{vertical-align:8.640000px;}
.ls0_c01391{letter-spacing:0.000000px;}
.sc__c01391{text-shadow:none;}
.sc0_c01391{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01391{-webkit-text-stroke:0px transparent;}
.sc0_c01391{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01391{word-spacing:-1.502640px;}
.ws2_c01391{word-spacing:0.000000px;}
.ws0_c01391{word-spacing:7.591920px;}
.fc0_c01391{color:transparent;}
.fs11_c01391{font-size:11.520000px;}
.fs10_c01391{font-size:14.400000px;}
.fs12_c01391{font-size:17.280000px;}
.fse_c01391{font-size:25.920000px;}
.fs7_c01391{font-size:34.560000px;}
.fs9_c01391{font-size:37.440000px;}
.fs14_c01391{font-size:40.320000px;}
.fsb_c01391{font-size:43.200000px;}
.fs1_c01391{font-size:46.080000px;}
.fs3_c01391{font-size:48.960000px;}
.fs4_c01391{font-size:51.840000px;}
.fsc_c01391{font-size:54.720000px;}
.fs2_c01391{font-size:57.600000px;}
.fs5_c01391{font-size:60.480000px;}
.fs6_c01391{font-size:63.360000px;}
.fsa_c01391{font-size:66.240000px;}
.fs8_c01391{font-size:69.120000px;}
.fsf_c01391{font-size:72.000000px;}
.fs0_c01391{font-size:74.880000px;}
.fsd_c01391{font-size:89.280000px;}
.fs13_c01391{font-size:103.680000px;}
.y0_c01391{bottom:0.000000px;}
.y74_c01391{bottom:61.200000px;}
.y73_c01391{bottom:66.240000px;}
.y75_c01391{bottom:66.960000px;}
.y72_c01391{bottom:67.680000px;}
.y6d_c01391{bottom:105.120000px;}
.y70_c01391{bottom:107.280000px;}
.y6e_c01391{bottom:108.720000px;}
.y6f_c01391{bottom:110.160000px;}
.y6c_c01391{bottom:110.880000px;}
.y71_c01391{bottom:112.320000px;}
.y69_c01391{bottom:148.320000px;}
.y68_c01391{bottom:153.360000px;}
.y6a_c01391{bottom:154.080000px;}
.y6b_c01391{bottom:155.520000px;}
.y65_c01391{bottom:190.800000px;}
.y64_c01391{bottom:195.120000px;}
.y63_c01391{bottom:195.840000px;}
.y66_c01391{bottom:196.560000px;}
.y62_c01391{bottom:197.280000px;}
.y67_c01391{bottom:198.720000px;}
.y60_c01391{bottom:228.960000px;}
.y5d_c01391{bottom:234.000000px;}
.y61_c01391{bottom:237.600000px;}
.y5e_c01391{bottom:238.320000px;}
.y5f_c01391{bottom:239.040000px;}
.y5c_c01391{bottom:239.760000px;}
.y58_c01391{bottom:282.240000px;}
.y5a_c01391{bottom:282.960000px;}
.y59_c01391{bottom:283.680000px;}
.y5b_c01391{bottom:284.400000px;}
.y56_c01391{bottom:322.560000px;}
.y54_c01391{bottom:324.000000px;}
.y55_c01391{bottom:324.720000px;}
.y57_c01391{bottom:325.440000px;}
.y4e_c01391{bottom:375.840000px;}
.y51_c01391{bottom:376.560000px;}
.y4f_c01391{bottom:378.000000px;}
.y52_c01391{bottom:378.720000px;}
.y4d_c01391{bottom:379.440000px;}
.y50_c01391{bottom:380.880000px;}
.y53_c01391{bottom:382.320000px;}
.y4c_c01391{bottom:385.200000px;}
.y4a_c01391{bottom:387.360000px;}
.y4b_c01391{bottom:393.120000px;}
.y49_c01391{bottom:399.600000px;}
.y44_c01391{bottom:408.240000px;}
.y47_c01391{bottom:408.960000px;}
.y48_c01391{bottom:409.680000px;}
.y45_c01391{bottom:411.120000px;}
.y42_c01391{bottom:411.840000px;}
.y43_c01391{bottom:413.280000px;}
.y46_c01391{bottom:414.000000px;}
.y41_c01391{bottom:453.600000px;}
.y40_c01391{bottom:454.320000px;}
.y3f_c01391{bottom:493.920000px;}
.y3d_c01391{bottom:494.640000px;}
.y3c_c01391{bottom:496.800000px;}
.y3e_c01391{bottom:497.520000px;}
.y3b_c01391{bottom:549.360000px;}
.y3a_c01391{bottom:550.800000px;}
.y36_c01391{bottom:590.400000px;}
.y33_c01391{bottom:591.120000px;}
.y34_c01391{bottom:591.840000px;}
.y38_c01391{bottom:592.560000px;}
.y37_c01391{bottom:593.280000px;}
.y35_c01391{bottom:594.000000px;}
.y39_c01391{bottom:594.720000px;}
.y32_c01391{bottom:635.040000px;}
.y31_c01391{bottom:637.200000px;}
.y2d_c01391{bottom:677.520000px;}
.y30_c01391{bottom:678.240000px;}
.y2f_c01391{bottom:679.680000px;}
.y2e_c01391{bottom:680.400000px;}
.y2c_c01391{bottom:681.120000px;}
.y2b_c01391{bottom:722.880000px;}
.y29_c01391{bottom:731.520000px;}
.y27_c01391{bottom:732.960000px;}
.y2a_c01391{bottom:733.680000px;}
.y28_c01391{bottom:734.400000px;}
.y22_c01391{bottom:773.280000px;}
.y24_c01391{bottom:774.000000px;}
.y26_c01391{bottom:775.440000px;}
.y25_c01391{bottom:776.160000px;}
.y23_c01391{bottom:776.880000px;}
.y20_c01391{bottom:816.480000px;}
.y21_c01391{bottom:817.200000px;}
.y1e_c01391{bottom:818.640000px;}
.y1f_c01391{bottom:819.360000px;}
.y1b_c01391{bottom:858.240000px;}
.y18_c01391{bottom:858.960000px;}
.y19_c01391{bottom:859.680000px;}
.y1d_c01391{bottom:861.120000px;}
.y1c_c01391{bottom:861.840000px;}
.y1a_c01391{bottom:862.560000px;}
.y17_c01391{bottom:901.440000px;}
.y14_c01391{bottom:902.160000px;}
.y16_c01391{bottom:904.320000px;}
.y15_c01391{bottom:905.040000px;}
.y13_c01391{bottom:944.640000px;}
.y11_c01391{bottom:945.360000px;}
.yf_c01391{bottom:946.800000px;}
.y12_c01391{bottom:947.520000px;}
.y10_c01391{bottom:948.240000px;}
.ye_c01391{bottom:987.120000px;}
.yc_c01391{bottom:987.840000px;}
.y9_c01391{bottom:988.560000px;}
.y8_c01391{bottom:989.280000px;}
.yd_c01391{bottom:990.000000px;}
.ya_c01391{bottom:990.720000px;}
.yb_c01391{bottom:991.440000px;}
.y7_c01391{bottom:1029.600000px;}
.y4_c01391{bottom:1031.040000px;}
.y6_c01391{bottom:1032.480000px;}
.y5_c01391{bottom:1033.200000px;}
.y3_c01391{bottom:1033.920000px;}
.y2_c01391{bottom:1034.640000px;}
.y1_c01391{bottom:1087.200000px;}
.h14_c01391{height:10.366875px;}
.h13_c01391{height:12.958594px;}
.h15_c01391{height:15.550313px;}
.h11_c01391{height:23.325469px;}
.h9_c01391{height:31.100625px;}
.hb_c01391{height:33.692344px;}
.h17_c01391{height:36.284062px;}
.he_c01391{height:38.875781px;}
.h3_c01391{height:41.467500px;}
.h5_c01391{height:44.059219px;}
.hc_c01391{height:45.209531px;}
.h6_c01391{height:46.650937px;}
.hf_c01391{height:49.242656px;}
.h4_c01391{height:51.834375px;}
.h7_c01391{height:54.426094px;}
.h8_c01391{height:57.017812px;}
.hd_c01391{height:59.609531px;}
.ha_c01391{height:62.201250px;}
.h12_c01391{height:64.792969px;}
.h2_c01391{height:67.384687px;}
.h10_c01391{height:80.343281px;}
.h16_c01391{height:93.301875px;}
.h1_c01391{height:1151.250000px;}
.h0_c01391{height:1151.280000px;}
.w1_c01391{width:766.500000px;}
.w0_c01391{width:766.800000px;}
.x0_c01391{left:0.000000px;}
.xb_c01391{left:39.600000px;}
.x2a_c01391{left:41.040000px;}
.x4a_c01391{left:43.920000px;}
.x58_c01391{left:45.360000px;}
.x4b_c01391{left:62.640000px;}
.xc_c01391{left:71.280000px;}
.x3e_c01391{left:73.440000px;}
.x59_c01391{left:82.800000px;}
.x4c_c01391{left:84.240000px;}
.x3f_c01391{left:93.600000px;}
.x50_c01391{left:95.040000px;}
.x25_c01391{left:103.680000px;}
.x30_c01391{left:114.480000px;}
.xd_c01391{left:125.280000px;}
.x2b_c01391{left:136.800000px;}
.x2_c01391{left:147.600000px;}
.x54_c01391{left:149.040000px;}
.x26_c01391{left:159.120000px;}
.x5c_c01391{left:168.480000px;}
.x44_c01391{left:169.920000px;}
.x3_c01391{left:179.280000px;}
.x31_c01391{left:190.080000px;}
.x18_c01391{left:191.520000px;}
.x5a_c01391{left:201.600000px;}
.x45_c01391{left:203.040000px;}
.x1e_c01391{left:211.680000px;}
.xe_c01391{left:213.120000px;}
.x4d_c01391{left:214.560000px;}
.x35_c01391{left:234.000000px;}
.x49_c01391{left:235.440000px;}
.xf_c01391{left:244.800000px;}
.x2c_c01391{left:246.240000px;}
.x4_c01391{left:255.600000px;}
.x36_c01391{left:257.040000px;}
.x48_c01391{left:267.840000px;}
.x1f_c01391{left:277.200000px;}
.x10_c01391{left:278.640000px;}
.x27_c01391{left:288.720000px;}
.x5_c01391{left:309.600000px;}
.x37_c01391{left:311.040000px;}
.x19_c01391{left:319.680000px;}
.x32_c01391{left:321.840000px;}
.x5e_c01391{left:334.080000px;}
.x20_c01391{left:343.440000px;}
.x1a_c01391{left:354.240000px;}
.x52_c01391{left:365.760000px;}
.x51_c01391{left:375.120000px;}
.x40_c01391{left:376.560000px;}
.x11_c01391{left:385.920000px;}
.x41_c01391{left:395.280000px;}
.x1b_c01391{left:396.720000px;}
.x53_c01391{left:406.800000px;}
.x5b_c01391{left:408.240000px;}
.x12_c01391{left:416.880000px;}
.x2d_c01391{left:418.320000px;}
.x42_c01391{left:419.760000px;}
.x46_c01391{left:427.680000px;}
.x1c_c01391{left:429.120000px;}
.x6_c01391{left:439.200000px;}
.x3a_c01391{left:440.640000px;}
.x13_c01391{left:449.280000px;}
.x21_c01391{left:450.720000px;}
.x28_c01391{left:460.800000px;}
.x1d_c01391{left:473.040000px;}
.x33_c01391{left:481.680000px;}
.x22_c01391{left:483.120000px;}
.x7_c01391{left:492.480000px;}
.x38_c01391{left:494.640000px;}
.x3b_c01391{left:504.000000px;}
.x2e_c01391{left:516.240000px;}
.x8_c01391{left:524.160000px;}
.x29_c01391{left:525.600000px;}
.x43_c01391{left:536.400000px;}
.x3c_c01391{left:546.480000px;}
.x39_c01391{left:547.920000px;}
.x2f_c01391{left:557.280000px;}
.x14_c01391{left:568.080000px;}
.x3d_c01391{left:578.160000px;}
.x23_c01391{left:579.600000px;}
.x15_c01391{left:589.680000px;}
.x9_c01391{left:600.480000px;}
.x24_c01391{left:611.280000px;}
.x16_c01391{left:621.360000px;}
.x55_c01391{left:631.440000px;}
.x4e_c01391{left:642.240000px;}
.x34_c01391{left:643.680000px;}
.x17_c01391{left:655.200000px;}
.x1_c01391{left:657.360000px;}
.x4f_c01391{left:662.400000px;}
.x47_c01391{left:665.280000px;}
.xa_c01391{left:676.080000px;}
.x56_c01391{left:696.960000px;}
.x5d_c01391{left:718.560000px;}
.x57_c01391{left:728.640000px;}
@media print{
.v1_c01391{vertical-align:-12.800000pt;}
.v0_c01391{vertical-align:0.000000pt;}
.v2_c01391{vertical-align:7.680000pt;}
.ls0_c01391{letter-spacing:0.000000pt;}
.ws1_c01391{word-spacing:-1.335680pt;}
.ws2_c01391{word-spacing:0.000000pt;}
.ws0_c01391{word-spacing:6.748373pt;}
.fs11_c01391{font-size:10.240000pt;}
.fs10_c01391{font-size:12.800000pt;}
.fs12_c01391{font-size:15.360000pt;}
.fse_c01391{font-size:23.040000pt;}
.fs7_c01391{font-size:30.720000pt;}
.fs9_c01391{font-size:33.280000pt;}
.fs14_c01391{font-size:35.840000pt;}
.fsb_c01391{font-size:38.400000pt;}
.fs1_c01391{font-size:40.960000pt;}
.fs3_c01391{font-size:43.520000pt;}
.fs4_c01391{font-size:46.080000pt;}
.fsc_c01391{font-size:48.640000pt;}
.fs2_c01391{font-size:51.200000pt;}
.fs5_c01391{font-size:53.760000pt;}
.fs6_c01391{font-size:56.320000pt;}
.fsa_c01391{font-size:58.880000pt;}
.fs8_c01391{font-size:61.440000pt;}
.fsf_c01391{font-size:64.000000pt;}
.fs0_c01391{font-size:66.560000pt;}
.fsd_c01391{font-size:79.360000pt;}
.fs13_c01391{font-size:92.160000pt;}
.y0_c01391{bottom:0.000000pt;}
.y74_c01391{bottom:54.400000pt;}
.y73_c01391{bottom:58.880000pt;}
.y75_c01391{bottom:59.520000pt;}
.y72_c01391{bottom:60.160000pt;}
.y6d_c01391{bottom:93.440000pt;}
.y70_c01391{bottom:95.360000pt;}
.y6e_c01391{bottom:96.640000pt;}
.y6f_c01391{bottom:97.920000pt;}
.y6c_c01391{bottom:98.560000pt;}
.y71_c01391{bottom:99.840000pt;}
.y69_c01391{bottom:131.840000pt;}
.y68_c01391{bottom:136.320000pt;}
.y6a_c01391{bottom:136.960000pt;}
.y6b_c01391{bottom:138.240000pt;}
.y65_c01391{bottom:169.600000pt;}
.y64_c01391{bottom:173.440000pt;}
.y63_c01391{bottom:174.080000pt;}
.y66_c01391{bottom:174.720000pt;}
.y62_c01391{bottom:175.360000pt;}
.y67_c01391{bottom:176.640000pt;}
.y60_c01391{bottom:203.520000pt;}
.y5d_c01391{bottom:208.000000pt;}
.y61_c01391{bottom:211.200000pt;}
.y5e_c01391{bottom:211.840000pt;}
.y5f_c01391{bottom:212.480000pt;}
.y5c_c01391{bottom:213.120000pt;}
.y58_c01391{bottom:250.880000pt;}
.y5a_c01391{bottom:251.520000pt;}
.y59_c01391{bottom:252.160000pt;}
.y5b_c01391{bottom:252.800000pt;}
.y56_c01391{bottom:286.720000pt;}
.y54_c01391{bottom:288.000000pt;}
.y55_c01391{bottom:288.640000pt;}
.y57_c01391{bottom:289.280000pt;}
.y4e_c01391{bottom:334.080000pt;}
.y51_c01391{bottom:334.720000pt;}
.y4f_c01391{bottom:336.000000pt;}
.y52_c01391{bottom:336.640000pt;}
.y4d_c01391{bottom:337.280000pt;}
.y50_c01391{bottom:338.560000pt;}
.y53_c01391{bottom:339.840000pt;}
.y4c_c01391{bottom:342.400000pt;}
.y4a_c01391{bottom:344.320000pt;}
.y4b_c01391{bottom:349.440000pt;}
.y49_c01391{bottom:355.200000pt;}
.y44_c01391{bottom:362.880000pt;}
.y47_c01391{bottom:363.520000pt;}
.y48_c01391{bottom:364.160000pt;}
.y45_c01391{bottom:365.440000pt;}
.y42_c01391{bottom:366.080000pt;}
.y43_c01391{bottom:367.360000pt;}
.y46_c01391{bottom:368.000000pt;}
.y41_c01391{bottom:403.200000pt;}
.y40_c01391{bottom:403.840000pt;}
.y3f_c01391{bottom:439.040000pt;}
.y3d_c01391{bottom:439.680000pt;}
.y3c_c01391{bottom:441.600000pt;}
.y3e_c01391{bottom:442.240000pt;}
.y3b_c01391{bottom:488.320000pt;}
.y3a_c01391{bottom:489.600000pt;}
.y36_c01391{bottom:524.800000pt;}
.y33_c01391{bottom:525.440000pt;}
.y34_c01391{bottom:526.080000pt;}
.y38_c01391{bottom:526.720000pt;}
.y37_c01391{bottom:527.360000pt;}
.y35_c01391{bottom:528.000000pt;}
.y39_c01391{bottom:528.640000pt;}
.y32_c01391{bottom:564.480000pt;}
.y31_c01391{bottom:566.400000pt;}
.y2d_c01391{bottom:602.240000pt;}
.y30_c01391{bottom:602.880000pt;}
.y2f_c01391{bottom:604.160000pt;}
.y2e_c01391{bottom:604.800000pt;}
.y2c_c01391{bottom:605.440000pt;}
.y2b_c01391{bottom:642.560000pt;}
.y29_c01391{bottom:650.240000pt;}
.y27_c01391{bottom:651.520000pt;}
.y2a_c01391{bottom:652.160000pt;}
.y28_c01391{bottom:652.800000pt;}
.y22_c01391{bottom:687.360000pt;}
.y24_c01391{bottom:688.000000pt;}
.y26_c01391{bottom:689.280000pt;}
.y25_c01391{bottom:689.920000pt;}
.y23_c01391{bottom:690.560000pt;}
.y20_c01391{bottom:725.760000pt;}
.y21_c01391{bottom:726.400000pt;}
.y1e_c01391{bottom:727.680000pt;}
.y1f_c01391{bottom:728.320000pt;}
.y1b_c01391{bottom:762.880000pt;}
.y18_c01391{bottom:763.520000pt;}
.y19_c01391{bottom:764.160000pt;}
.y1d_c01391{bottom:765.440000pt;}
.y1c_c01391{bottom:766.080000pt;}
.y1a_c01391{bottom:766.720000pt;}
.y17_c01391{bottom:801.280000pt;}
.y14_c01391{bottom:801.920000pt;}
.y16_c01391{bottom:803.840000pt;}
.y15_c01391{bottom:804.480000pt;}
.y13_c01391{bottom:839.680000pt;}
.y11_c01391{bottom:840.320000pt;}
.yf_c01391{bottom:841.600000pt;}
.y12_c01391{bottom:842.240000pt;}
.y10_c01391{bottom:842.880000pt;}
.ye_c01391{bottom:877.440000pt;}
.yc_c01391{bottom:878.080000pt;}
.y9_c01391{bottom:878.720000pt;}
.y8_c01391{bottom:879.360000pt;}
.yd_c01391{bottom:880.000000pt;}
.ya_c01391{bottom:880.640000pt;}
.yb_c01391{bottom:881.280000pt;}
.y7_c01391{bottom:915.200000pt;}
.y4_c01391{bottom:916.480000pt;}
.y6_c01391{bottom:917.760000pt;}
.y5_c01391{bottom:918.400000pt;}
.y3_c01391{bottom:919.040000pt;}
.y2_c01391{bottom:919.680000pt;}
.y1_c01391{bottom:966.400000pt;}
.h14_c01391{height:9.215000pt;}
.h13_c01391{height:11.518750pt;}
.h15_c01391{height:13.822500pt;}
.h11_c01391{height:20.733750pt;}
.h9_c01391{height:27.645000pt;}
.hb_c01391{height:29.948750pt;}
.h17_c01391{height:32.252500pt;}
.he_c01391{height:34.556250pt;}
.h3_c01391{height:36.860000pt;}
.h5_c01391{height:39.163750pt;}
.hc_c01391{height:40.186250pt;}
.h6_c01391{height:41.467500pt;}
.hf_c01391{height:43.771250pt;}
.h4_c01391{height:46.075000pt;}
.h7_c01391{height:48.378750pt;}
.h8_c01391{height:50.682500pt;}
.hd_c01391{height:52.986250pt;}
.ha_c01391{height:55.290000pt;}
.h12_c01391{height:57.593750pt;}
.h2_c01391{height:59.897500pt;}
.h10_c01391{height:71.416250pt;}
.h16_c01391{height:82.935000pt;}
.h1_c01391{height:1023.333333pt;}
.h0_c01391{height:1023.360000pt;}
.w1_c01391{width:681.333333pt;}
.w0_c01391{width:681.600000pt;}
.x0_c01391{left:0.000000pt;}
.xb_c01391{left:35.200000pt;}
.x2a_c01391{left:36.480000pt;}
.x4a_c01391{left:39.040000pt;}
.x58_c01391{left:40.320000pt;}
.x4b_c01391{left:55.680000pt;}
.xc_c01391{left:63.360000pt;}
.x3e_c01391{left:65.280000pt;}
.x59_c01391{left:73.600000pt;}
.x4c_c01391{left:74.880000pt;}
.x3f_c01391{left:83.200000pt;}
.x50_c01391{left:84.480000pt;}
.x25_c01391{left:92.160000pt;}
.x30_c01391{left:101.760000pt;}
.xd_c01391{left:111.360000pt;}
.x2b_c01391{left:121.600000pt;}
.x2_c01391{left:131.200000pt;}
.x54_c01391{left:132.480000pt;}
.x26_c01391{left:141.440000pt;}
.x5c_c01391{left:149.760000pt;}
.x44_c01391{left:151.040000pt;}
.x3_c01391{left:159.360000pt;}
.x31_c01391{left:168.960000pt;}
.x18_c01391{left:170.240000pt;}
.x5a_c01391{left:179.200000pt;}
.x45_c01391{left:180.480000pt;}
.x1e_c01391{left:188.160000pt;}
.xe_c01391{left:189.440000pt;}
.x4d_c01391{left:190.720000pt;}
.x35_c01391{left:208.000000pt;}
.x49_c01391{left:209.280000pt;}
.xf_c01391{left:217.600000pt;}
.x2c_c01391{left:218.880000pt;}
.x4_c01391{left:227.200000pt;}
.x36_c01391{left:228.480000pt;}
.x48_c01391{left:238.080000pt;}
.x1f_c01391{left:246.400000pt;}
.x10_c01391{left:247.680000pt;}
.x27_c01391{left:256.640000pt;}
.x5_c01391{left:275.200000pt;}
.x37_c01391{left:276.480000pt;}
.x19_c01391{left:284.160000pt;}
.x32_c01391{left:286.080000pt;}
.x5e_c01391{left:296.960000pt;}
.x20_c01391{left:305.280000pt;}
.x1a_c01391{left:314.880000pt;}
.x52_c01391{left:325.120000pt;}
.x51_c01391{left:333.440000pt;}
.x40_c01391{left:334.720000pt;}
.x11_c01391{left:343.040000pt;}
.x41_c01391{left:351.360000pt;}
.x1b_c01391{left:352.640000pt;}
.x53_c01391{left:361.600000pt;}
.x5b_c01391{left:362.880000pt;}
.x12_c01391{left:370.560000pt;}
.x2d_c01391{left:371.840000pt;}
.x42_c01391{left:373.120000pt;}
.x46_c01391{left:380.160000pt;}
.x1c_c01391{left:381.440000pt;}
.x6_c01391{left:390.400000pt;}
.x3a_c01391{left:391.680000pt;}
.x13_c01391{left:399.360000pt;}
.x21_c01391{left:400.640000pt;}
.x28_c01391{left:409.600000pt;}
.x1d_c01391{left:420.480000pt;}
.x33_c01391{left:428.160000pt;}
.x22_c01391{left:429.440000pt;}
.x7_c01391{left:437.760000pt;}
.x38_c01391{left:439.680000pt;}
.x3b_c01391{left:448.000000pt;}
.x2e_c01391{left:458.880000pt;}
.x8_c01391{left:465.920000pt;}
.x29_c01391{left:467.200000pt;}
.x43_c01391{left:476.800000pt;}
.x3c_c01391{left:485.760000pt;}
.x39_c01391{left:487.040000pt;}
.x2f_c01391{left:495.360000pt;}
.x14_c01391{left:504.960000pt;}
.x3d_c01391{left:513.920000pt;}
.x23_c01391{left:515.200000pt;}
.x15_c01391{left:524.160000pt;}
.x9_c01391{left:533.760000pt;}
.x24_c01391{left:543.360000pt;}
.x16_c01391{left:552.320000pt;}
.x55_c01391{left:561.280000pt;}
.x4e_c01391{left:570.880000pt;}
.x34_c01391{left:572.160000pt;}
.x17_c01391{left:582.400000pt;}
.x1_c01391{left:584.320000pt;}
.x4f_c01391{left:588.800000pt;}
.x47_c01391{left:591.360000pt;}
.xa_c01391{left:600.960000pt;}
.x56_c01391{left:619.520000pt;}
.x5d_c01391{left:638.720000pt;}
.x57_c01391{left:647.680000pt;}
}





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

.ir_c01392:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01392{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01392;src:url('chunks/assets/font_ea57e97cebb10688b65e8d6f.woff2')format("woff");}.ff1_c01392{font-family:ff1_c01392;line-height:1.109863;font-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_c01392{transform:matrix(0.206875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206875,0.000000,0.000000,0.250000,0,0);}
.m27_c01392{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m3e_c01392{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m32_c01392{transform:matrix(0.244400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244400,0.000000,0.000000,0.250000,0,0);}
.m48_c01392{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m47_c01392{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);}
.m46_c01392{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m11_c01392{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);}
.m41_c01392{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_c01392{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);}
.m43_c01392{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_c01392{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_c01392{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);}
.m36_c01392{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m9_c01392{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);}
.m2e_c01392{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m39_c01392{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);}
.m29_c01392{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m16_c01392{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m2_c01392{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);}
.m2c_c01392{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m5_c01392{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m25_c01392{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m30_c01392{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m12_c01392{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m45_c01392{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m20_c01392{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01392{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01392{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m6_c01392{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m37_c01392{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m34_c01392{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m23_c01392{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m14_c01392{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01392{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);}
.m3c_c01392{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.me_c01392{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m26_c01392{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);}
.m40_c01392{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m21_c01392{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.mb_c01392{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.mc_c01392{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);}
.m2a_c01392{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01392{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);}
.m31_c01392{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m8_c01392{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01392{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);}
.m3f_c01392{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m4_c01392{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01392{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);}
.m42_c01392{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m33_c01392{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01392{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);}
.m3a_c01392{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m22_c01392{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);}
.m38_c01392{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m17_c01392{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.ma_c01392{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m0_c01392{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m15_c01392{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m1_c01392{transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);}
.m10_c01392{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);}
.m7_c01392{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);}
.m44_c01392{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m35_c01392{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m28_c01392{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_c01392{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01392{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m24_c01392{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);}
.m3_c01392{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01392{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);}
.m19_c01392{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);}
.m2f_c01392{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.v1_c01392{vertical-align:-11.520000px;}
.v0_c01392{vertical-align:0.000000px;}
.ls0_c01392{letter-spacing:0.000000px;}
.sc__c01392{text-shadow:none;}
.sc0_c01392{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01392{-webkit-text-stroke:0px transparent;}
.sc0_c01392{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01392{word-spacing:0.000000px;}
.ws0_c01392{word-spacing:8.499600px;}
.fc0_c01392{color:transparent;}
.fsd_c01392{font-size:37.440000px;}
.fsa_c01392{font-size:46.080000px;}
.fs3_c01392{font-size:48.960000px;}
.fs1_c01392{font-size:51.840000px;}
.fs5_c01392{font-size:54.720000px;}
.fs7_c01392{font-size:57.600000px;}
.fs0_c01392{font-size:60.480000px;}
.fs4_c01392{font-size:63.360000px;}
.fsb_c01392{font-size:66.240000px;}
.fse_c01392{font-size:69.120000px;}
.fs9_c01392{font-size:72.000000px;}
.fs6_c01392{font-size:74.880000px;}
.fs2_c01392{font-size:77.760000px;}
.fs8_c01392{font-size:83.520000px;}
.fsc_c01392{font-size:112.320000px;}
.y0_c01392{bottom:0.000000px;}
.y7e_c01392{bottom:48.960000px;}
.y80_c01392{bottom:50.400000px;}
.y7f_c01392{bottom:51.840000px;}
.y61_c01392{bottom:84.960000px;}
.y62_c01392{bottom:86.400000px;}
.y60_c01392{bottom:89.280000px;}
.y81_c01392{bottom:91.440000px;}
.y7d_c01392{bottom:92.880000px;}
.y5f_c01392{bottom:128.160000px;}
.y5e_c01392{bottom:132.480000px;}
.y7a_c01392{bottom:134.640000px;}
.y7b_c01392{bottom:136.800000px;}
.y7c_c01392{bottom:137.520000px;}
.y5c_c01392{bottom:170.640000px;}
.y5d_c01392{bottom:173.520000px;}
.y5b_c01392{bottom:175.680000px;}
.y78_c01392{bottom:177.120000px;}
.y77_c01392{bottom:177.840000px;}
.y79_c01392{bottom:178.560000px;}
.y59_c01392{bottom:215.280000px;}
.y5a_c01392{bottom:216.000000px;}
.y58_c01392{bottom:218.160000px;}
.y75_c01392{bottom:220.320000px;}
.y74_c01392{bottom:221.040000px;}
.y76_c01392{bottom:223.920000px;}
.y56_c01392{bottom:258.480000px;}
.y57_c01392{bottom:259.200000px;}
.y55_c01392{bottom:261.360000px;}
.y70_c01392{bottom:264.240000px;}
.y71_c01392{bottom:264.960000px;}
.y73_c01392{bottom:265.680000px;}
.y72_c01392{bottom:266.400000px;}
.y52_c01392{bottom:301.680000px;}
.y54_c01392{bottom:303.840000px;}
.y51_c01392{bottom:304.560000px;}
.y53_c01392{bottom:306.000000px;}
.y6d_c01392{bottom:306.720000px;}
.y6f_c01392{bottom:308.160000px;}
.y6e_c01392{bottom:309.600000px;}
.y50_c01392{bottom:344.880000px;}
.y4f_c01392{bottom:348.480000px;}
.y6a_c01392{bottom:349.200000px;}
.y6b_c01392{bottom:349.920000px;}
.y6c_c01392{bottom:351.360000px;}
.y4e_c01392{bottom:388.800000px;}
.y4d_c01392{bottom:391.680000px;}
.y68_c01392{bottom:393.120000px;}
.y69_c01392{bottom:394.560000px;}
.y4c_c01392{bottom:432.720000px;}
.y4b_c01392{bottom:435.600000px;}
.y65_c01392{bottom:436.320000px;}
.y67_c01392{bottom:437.040000px;}
.y66_c01392{bottom:437.760000px;}
.y48_c01392{bottom:475.200000px;}
.y4a_c01392{bottom:477.360000px;}
.y49_c01392{bottom:478.080000px;}
.y47_c01392{bottom:478.800000px;}
.y63_c01392{bottom:480.240000px;}
.y64_c01392{bottom:480.960000px;}
.y41_c01392{bottom:519.120000px;}
.y43_c01392{bottom:520.560000px;}
.y40_c01392{bottom:522.000000px;}
.y42_c01392{bottom:522.720000px;}
.y44_c01392{bottom:523.440000px;}
.y45_c01392{bottom:524.160000px;}
.y46_c01392{bottom:525.600000px;}
.y3c_c01392{bottom:562.320000px;}
.y3b_c01392{bottom:564.480000px;}
.y3d_c01392{bottom:565.200000px;}
.y3f_c01392{bottom:565.920000px;}
.y3e_c01392{bottom:568.080000px;}
.y27_c01392{bottom:606.240000px;}
.y25_c01392{bottom:608.400000px;}
.y26_c01392{bottom:609.120000px;}
.y39_c01392{bottom:610.560000px;}
.y3a_c01392{bottom:611.280000px;}
.y24_c01392{bottom:648.720000px;}
.y22_c01392{bottom:650.160000px;}
.y21_c01392{bottom:650.880000px;}
.y37_c01392{bottom:651.600000px;}
.y23_c01392{bottom:652.320000px;}
.y38_c01392{bottom:653.760000px;}
.y1e_c01392{bottom:692.640000px;}
.y20_c01392{bottom:693.360000px;}
.y1d_c01392{bottom:694.080000px;}
.y36_c01392{bottom:694.800000px;}
.y1f_c01392{bottom:696.240000px;}
.y1c_c01392{bottom:725.760000px;}
.y19_c01392{bottom:735.120000px;}
.y18_c01392{bottom:736.560000px;}
.y1b_c01392{bottom:737.280000px;}
.y35_c01392{bottom:738.000000px;}
.y1a_c01392{bottom:739.440000px;}
.y34_c01392{bottom:740.160000px;}
.y16_c01392{bottom:779.040000px;}
.y32_c01392{bottom:780.480000px;}
.y33_c01392{bottom:781.200000px;}
.y15_c01392{bottom:781.920000px;}
.y17_c01392{bottom:782.640000px;}
.y13_c01392{bottom:821.520000px;}
.y14_c01392{bottom:822.960000px;}
.y30_c01392{bottom:823.680000px;}
.y12_c01392{bottom:825.120000px;}
.y31_c01392{bottom:825.840000px;}
.y11_c01392{bottom:863.280000px;}
.y2e_c01392{bottom:866.880000px;}
.y10_c01392{bottom:868.320000px;}
.y2f_c01392{bottom:869.040000px;}
.yf_c01392{bottom:907.920000px;}
.y2d_c01392{bottom:909.360000px;}
.yd_c01392{bottom:910.080000px;}
.ye_c01392{bottom:911.520000px;}
.yb_c01392{bottom:951.120000px;}
.y2c_c01392{bottom:953.280000px;}
.ya_c01392{bottom:954.720000px;}
.yc_c01392{bottom:955.440000px;}
.y9_c01392{bottom:995.040000px;}
.y2a_c01392{bottom:995.760000px;}
.y2b_c01392{bottom:996.480000px;}
.y7_c01392{bottom:997.200000px;}
.y8_c01392{bottom:998.640000px;}
.y6_c01392{bottom:1028.160000px;}
.y3_c01392{bottom:1037.520000px;}
.y29_c01392{bottom:1038.960000px;}
.y5_c01392{bottom:1039.680000px;}
.y1_c01392{bottom:1040.400000px;}
.y2_c01392{bottom:1041.120000px;}
.y4_c01392{bottom:1041.840000px;}
.y28_c01392{bottom:1093.680000px;}
.hf_c01392{height:33.692344px;}
.hc_c01392{height:41.467500px;}
.h5_c01392{height:44.059219px;}
.h3_c01392{height:46.650937px;}
.h7_c01392{height:49.242656px;}
.h9_c01392{height:51.834375px;}
.h2_c01392{height:54.426094px;}
.h6_c01392{height:57.017812px;}
.hd_c01392{height:59.609531px;}
.h10_c01392{height:62.201250px;}
.hb_c01392{height:64.792969px;}
.h8_c01392{height:67.384687px;}
.h4_c01392{height:69.976406px;}
.ha_c01392{height:75.159844px;}
.he_c01392{height:101.077031px;}
.h1_c01392{height:1149.000000px;}
.h0_c01392{height:1149.120000px;}
.w0_c01392{width:764.640000px;}
.w1_c01392{width:765.000000px;}
.x0_c01392{left:0.000000px;}
.x1_c01392{left:46.080000px;}
.x7_c01392{left:47.520000px;}
.xf_c01392{left:48.960000px;}
.x2a_c01392{left:50.400000px;}
.x2e_c01392{left:51.840000px;}
.x2_c01392{left:88.560000px;}
.xb_c01392{left:100.800000px;}
.x27_c01392{left:102.240000px;}
.x3_c01392{left:165.600000px;}
.x17_c01392{left:177.840000px;}
.x13_c01392{left:187.920000px;}
.x28_c01392{left:200.160000px;}
.x2b_c01392{left:210.240000px;}
.xc_c01392{left:220.320000px;}
.x16_c01392{left:231.840000px;}
.x2c_c01392{left:233.280000px;}
.x8_c01392{left:241.920000px;}
.x31_c01392{left:244.080000px;}
.x29_c01392{left:254.160000px;}
.x2f_c01392{left:265.680000px;}
.x10_c01392{left:275.040000px;}
.x25_c01392{left:285.840000px;}
.x2d_c01392{left:287.280000px;}
.x14_c01392{left:295.920000px;}
.xd_c01392{left:317.520000px;}
.x30_c01392{left:319.680000px;}
.x21_c01392{left:329.760000px;}
.x9_c01392{left:337.680000px;}
.xe_c01392{left:361.440000px;}
.x4_c01392{left:370.080000px;}
.xa_c01392{left:383.040000px;}
.x11_c01392{left:404.640000px;}
.x15_c01392{left:414.720000px;}
.x5_c01392{left:425.520000px;}
.x22_c01392{left:457.920000px;}
.x26_c01392{left:468.720000px;}
.x12_c01392{left:490.320000px;}
.x23_c01392{left:511.920000px;}
.x6_c01392{left:542.880000px;}
.x24_c01392{left:559.440000px;}
.x34_c01392{left:576.000000px;}
.x32_c01392{left:577.440000px;}
.x1d_c01392{left:596.880000px;}
.x1f_c01392{left:608.400000px;}
.x20_c01392{left:628.560000px;}
.x19_c01392{left:630.000000px;}
.x36_c01392{left:631.440000px;}
.x18_c01392{left:656.640000px;}
.x1a_c01392{left:662.400000px;}
.x35_c01392{left:663.840000px;}
.x33_c01392{left:695.520000px;}
.x1e_c01392{left:704.880000px;}
.x1b_c01392{left:706.320000px;}
.x1c_c01392{left:725.760000px;}
@media print{
.v1_c01392{vertical-align:-10.240000pt;}
.v0_c01392{vertical-align:0.000000pt;}
.ls0_c01392{letter-spacing:0.000000pt;}
.ws1_c01392{word-spacing:0.000000pt;}
.ws0_c01392{word-spacing:7.555200pt;}
.fsd_c01392{font-size:33.280000pt;}
.fsa_c01392{font-size:40.960000pt;}
.fs3_c01392{font-size:43.520000pt;}
.fs1_c01392{font-size:46.080000pt;}
.fs5_c01392{font-size:48.640000pt;}
.fs7_c01392{font-size:51.200000pt;}
.fs0_c01392{font-size:53.760000pt;}
.fs4_c01392{font-size:56.320000pt;}
.fsb_c01392{font-size:58.880000pt;}
.fse_c01392{font-size:61.440000pt;}
.fs9_c01392{font-size:64.000000pt;}
.fs6_c01392{font-size:66.560000pt;}
.fs2_c01392{font-size:69.120000pt;}
.fs8_c01392{font-size:74.240000pt;}
.fsc_c01392{font-size:99.840000pt;}
.y0_c01392{bottom:0.000000pt;}
.y7e_c01392{bottom:43.520000pt;}
.y80_c01392{bottom:44.800000pt;}
.y7f_c01392{bottom:46.080000pt;}
.y61_c01392{bottom:75.520000pt;}
.y62_c01392{bottom:76.800000pt;}
.y60_c01392{bottom:79.360000pt;}
.y81_c01392{bottom:81.280000pt;}
.y7d_c01392{bottom:82.560000pt;}
.y5f_c01392{bottom:113.920000pt;}
.y5e_c01392{bottom:117.760000pt;}
.y7a_c01392{bottom:119.680000pt;}
.y7b_c01392{bottom:121.600000pt;}
.y7c_c01392{bottom:122.240000pt;}
.y5c_c01392{bottom:151.680000pt;}
.y5d_c01392{bottom:154.240000pt;}
.y5b_c01392{bottom:156.160000pt;}
.y78_c01392{bottom:157.440000pt;}
.y77_c01392{bottom:158.080000pt;}
.y79_c01392{bottom:158.720000pt;}
.y59_c01392{bottom:191.360000pt;}
.y5a_c01392{bottom:192.000000pt;}
.y58_c01392{bottom:193.920000pt;}
.y75_c01392{bottom:195.840000pt;}
.y74_c01392{bottom:196.480000pt;}
.y76_c01392{bottom:199.040000pt;}
.y56_c01392{bottom:229.760000pt;}
.y57_c01392{bottom:230.400000pt;}
.y55_c01392{bottom:232.320000pt;}
.y70_c01392{bottom:234.880000pt;}
.y71_c01392{bottom:235.520000pt;}
.y73_c01392{bottom:236.160000pt;}
.y72_c01392{bottom:236.800000pt;}
.y52_c01392{bottom:268.160000pt;}
.y54_c01392{bottom:270.080000pt;}
.y51_c01392{bottom:270.720000pt;}
.y53_c01392{bottom:272.000000pt;}
.y6d_c01392{bottom:272.640000pt;}
.y6f_c01392{bottom:273.920000pt;}
.y6e_c01392{bottom:275.200000pt;}
.y50_c01392{bottom:306.560000pt;}
.y4f_c01392{bottom:309.760000pt;}
.y6a_c01392{bottom:310.400000pt;}
.y6b_c01392{bottom:311.040000pt;}
.y6c_c01392{bottom:312.320000pt;}
.y4e_c01392{bottom:345.600000pt;}
.y4d_c01392{bottom:348.160000pt;}
.y68_c01392{bottom:349.440000pt;}
.y69_c01392{bottom:350.720000pt;}
.y4c_c01392{bottom:384.640000pt;}
.y4b_c01392{bottom:387.200000pt;}
.y65_c01392{bottom:387.840000pt;}
.y67_c01392{bottom:388.480000pt;}
.y66_c01392{bottom:389.120000pt;}
.y48_c01392{bottom:422.400000pt;}
.y4a_c01392{bottom:424.320000pt;}
.y49_c01392{bottom:424.960000pt;}
.y47_c01392{bottom:425.600000pt;}
.y63_c01392{bottom:426.880000pt;}
.y64_c01392{bottom:427.520000pt;}
.y41_c01392{bottom:461.440000pt;}
.y43_c01392{bottom:462.720000pt;}
.y40_c01392{bottom:464.000000pt;}
.y42_c01392{bottom:464.640000pt;}
.y44_c01392{bottom:465.280000pt;}
.y45_c01392{bottom:465.920000pt;}
.y46_c01392{bottom:467.200000pt;}
.y3c_c01392{bottom:499.840000pt;}
.y3b_c01392{bottom:501.760000pt;}
.y3d_c01392{bottom:502.400000pt;}
.y3f_c01392{bottom:503.040000pt;}
.y3e_c01392{bottom:504.960000pt;}
.y27_c01392{bottom:538.880000pt;}
.y25_c01392{bottom:540.800000pt;}
.y26_c01392{bottom:541.440000pt;}
.y39_c01392{bottom:542.720000pt;}
.y3a_c01392{bottom:543.360000pt;}
.y24_c01392{bottom:576.640000pt;}
.y22_c01392{bottom:577.920000pt;}
.y21_c01392{bottom:578.560000pt;}
.y37_c01392{bottom:579.200000pt;}
.y23_c01392{bottom:579.840000pt;}
.y38_c01392{bottom:581.120000pt;}
.y1e_c01392{bottom:615.680000pt;}
.y20_c01392{bottom:616.320000pt;}
.y1d_c01392{bottom:616.960000pt;}
.y36_c01392{bottom:617.600000pt;}
.y1f_c01392{bottom:618.880000pt;}
.y1c_c01392{bottom:645.120000pt;}
.y19_c01392{bottom:653.440000pt;}
.y18_c01392{bottom:654.720000pt;}
.y1b_c01392{bottom:655.360000pt;}
.y35_c01392{bottom:656.000000pt;}
.y1a_c01392{bottom:657.280000pt;}
.y34_c01392{bottom:657.920000pt;}
.y16_c01392{bottom:692.480000pt;}
.y32_c01392{bottom:693.760000pt;}
.y33_c01392{bottom:694.400000pt;}
.y15_c01392{bottom:695.040000pt;}
.y17_c01392{bottom:695.680000pt;}
.y13_c01392{bottom:730.240000pt;}
.y14_c01392{bottom:731.520000pt;}
.y30_c01392{bottom:732.160000pt;}
.y12_c01392{bottom:733.440000pt;}
.y31_c01392{bottom:734.080000pt;}
.y11_c01392{bottom:767.360000pt;}
.y2e_c01392{bottom:770.560000pt;}
.y10_c01392{bottom:771.840000pt;}
.y2f_c01392{bottom:772.480000pt;}
.yf_c01392{bottom:807.040000pt;}
.y2d_c01392{bottom:808.320000pt;}
.yd_c01392{bottom:808.960000pt;}
.ye_c01392{bottom:810.240000pt;}
.yb_c01392{bottom:845.440000pt;}
.y2c_c01392{bottom:847.360000pt;}
.ya_c01392{bottom:848.640000pt;}
.yc_c01392{bottom:849.280000pt;}
.y9_c01392{bottom:884.480000pt;}
.y2a_c01392{bottom:885.120000pt;}
.y2b_c01392{bottom:885.760000pt;}
.y7_c01392{bottom:886.400000pt;}
.y8_c01392{bottom:887.680000pt;}
.y6_c01392{bottom:913.920000pt;}
.y3_c01392{bottom:922.240000pt;}
.y29_c01392{bottom:923.520000pt;}
.y5_c01392{bottom:924.160000pt;}
.y1_c01392{bottom:924.800000pt;}
.y2_c01392{bottom:925.440000pt;}
.y4_c01392{bottom:926.080000pt;}
.y28_c01392{bottom:972.160000pt;}
.hf_c01392{height:29.948750pt;}
.hc_c01392{height:36.860000pt;}
.h5_c01392{height:39.163750pt;}
.h3_c01392{height:41.467500pt;}
.h7_c01392{height:43.771250pt;}
.h9_c01392{height:46.075000pt;}
.h2_c01392{height:48.378750pt;}
.h6_c01392{height:50.682500pt;}
.hd_c01392{height:52.986250pt;}
.h10_c01392{height:55.290000pt;}
.hb_c01392{height:57.593750pt;}
.h8_c01392{height:59.897500pt;}
.h4_c01392{height:62.201250pt;}
.ha_c01392{height:66.808750pt;}
.he_c01392{height:89.846250pt;}
.h1_c01392{height:1021.333333pt;}
.h0_c01392{height:1021.440000pt;}
.w0_c01392{width:679.680000pt;}
.w1_c01392{width:680.000000pt;}
.x0_c01392{left:0.000000pt;}
.x1_c01392{left:40.960000pt;}
.x7_c01392{left:42.240000pt;}
.xf_c01392{left:43.520000pt;}
.x2a_c01392{left:44.800000pt;}
.x2e_c01392{left:46.080000pt;}
.x2_c01392{left:78.720000pt;}
.xb_c01392{left:89.600000pt;}
.x27_c01392{left:90.880000pt;}
.x3_c01392{left:147.200000pt;}
.x17_c01392{left:158.080000pt;}
.x13_c01392{left:167.040000pt;}
.x28_c01392{left:177.920000pt;}
.x2b_c01392{left:186.880000pt;}
.xc_c01392{left:195.840000pt;}
.x16_c01392{left:206.080000pt;}
.x2c_c01392{left:207.360000pt;}
.x8_c01392{left:215.040000pt;}
.x31_c01392{left:216.960000pt;}
.x29_c01392{left:225.920000pt;}
.x2f_c01392{left:236.160000pt;}
.x10_c01392{left:244.480000pt;}
.x25_c01392{left:254.080000pt;}
.x2d_c01392{left:255.360000pt;}
.x14_c01392{left:263.040000pt;}
.xd_c01392{left:282.240000pt;}
.x30_c01392{left:284.160000pt;}
.x21_c01392{left:293.120000pt;}
.x9_c01392{left:300.160000pt;}
.xe_c01392{left:321.280000pt;}
.x4_c01392{left:328.960000pt;}
.xa_c01392{left:340.480000pt;}
.x11_c01392{left:359.680000pt;}
.x15_c01392{left:368.640000pt;}
.x5_c01392{left:378.240000pt;}
.x22_c01392{left:407.040000pt;}
.x26_c01392{left:416.640000pt;}
.x12_c01392{left:435.840000pt;}
.x23_c01392{left:455.040000pt;}
.x6_c01392{left:482.560000pt;}
.x24_c01392{left:497.280000pt;}
.x34_c01392{left:512.000000pt;}
.x32_c01392{left:513.280000pt;}
.x1d_c01392{left:530.560000pt;}
.x1f_c01392{left:540.800000pt;}
.x20_c01392{left:558.720000pt;}
.x19_c01392{left:560.000000pt;}
.x36_c01392{left:561.280000pt;}
.x18_c01392{left:583.680000pt;}
.x1a_c01392{left:588.800000pt;}
.x35_c01392{left:590.080000pt;}
.x33_c01392{left:618.240000pt;}
.x1e_c01392{left:626.560000pt;}
.x1b_c01392{left:627.840000pt;}
.x1c_c01392{left:645.120000pt;}
}





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

.ir_c01393:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01393{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01393;src:url('chunks/assets/font_4a271247455bdbfd9ef01498.woff2')format("woff");}.ff1_c01393{font-family:ff1_c01393;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m39_c01393{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);}
.m44_c01393{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m3b_c01393{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m1_c01393{transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);}
.m3f_c01393{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m32_c01393{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);}
.m33_c01393{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);}
.m3e_c01393{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m7_c01393{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);}
.m2e_c01393{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);}
.m3d_c01393{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m3_c01393{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);}
.m3a_c01393{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m4_c01393{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01393{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m21_c01393{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);}
.m37_c01393{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);}
.m2b_c01393{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m35_c01393{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.ma_c01393{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01393{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m12_c01393{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m26_c01393{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m13_c01393{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m6_c01393{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m40_c01393{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01393{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01393{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m41_c01393{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m24_c01393{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01393{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m20_c01393{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m10_c01393{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);}
.m34_c01393{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m15_c01393{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01393{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);}
.m43_c01393{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.me_c01393{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);}
.m28_c01393{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);}
.m31_c01393{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m14_c01393{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);}
.m18_c01393{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);}
.m5_c01393{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);}
.mf_c01393{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.mc_c01393{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);}
.md_c01393{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);}
.mb_c01393{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m30_c01393{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);}
.m0_c01393{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m9_c01393{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m46_c01393{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m17_c01393{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01393{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01393{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01393{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01393{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m22_c01393{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m29_c01393{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);}
.m1b_c01393{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m2_c01393{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);}
.m2a_c01393{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m27_c01393{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);}
.m19_c01393{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m25_c01393{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);}
.m8_c01393{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m23_c01393{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m38_c01393{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m16_c01393{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m45_c01393{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m42_c01393{transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);}
.m36_c01393{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.v2_c01393{vertical-align:-8.640000px;}
.v1_c01393{vertical-align:-2.880000px;}
.v0_c01393{vertical-align:0.000000px;}
.ls1_c01393{letter-spacing:0.000000px;}
.ls0_c01393{letter-spacing:78.205680px;}
.sc__c01393{text-shadow:none;}
.sc0_c01393{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01393{-webkit-text-stroke:0px transparent;}
.sc0_c01393{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01393{word-spacing:0.000000px;}
.ws0_c01393{word-spacing:9.475200px;}
.ws1_c01393{word-spacing:12.615600px;}
.fc0_c01393{color:transparent;}
.fs2_c01393{font-size:40.320000px;}
.fs9_c01393{font-size:48.960000px;}
.fs6_c01393{font-size:51.840000px;}
.fs7_c01393{font-size:54.720000px;}
.fs0_c01393{font-size:57.600000px;}
.fs4_c01393{font-size:60.480000px;}
.fs5_c01393{font-size:63.360000px;}
.fsa_c01393{font-size:66.240000px;}
.fs8_c01393{font-size:69.120000px;}
.fsb_c01393{font-size:72.000000px;}
.fs1_c01393{font-size:74.880000px;}
.fs3_c01393{font-size:77.760000px;}
.y0_c01393{bottom:0.000000px;}
.y44_c01393{bottom:94.320000px;}
.y45_c01393{bottom:95.760000px;}
.y46_c01393{bottom:96.480000px;}
.y43_c01393{bottom:99.360000px;}
.y6a_c01393{bottom:100.080000px;}
.y6b_c01393{bottom:101.520000px;}
.y42_c01393{bottom:138.240000px;}
.y41_c01393{bottom:143.280000px;}
.y3e_c01393{bottom:182.160000px;}
.y3f_c01393{bottom:183.600000px;}
.y3d_c01393{bottom:185.760000px;}
.y40_c01393{bottom:186.480000px;}
.y67_c01393{bottom:187.200000px;}
.y68_c01393{bottom:187.920000px;}
.y69_c01393{bottom:190.080000px;}
.y3b_c01393{bottom:226.080000px;}
.y39_c01393{bottom:226.800000px;}
.y3a_c01393{bottom:228.240000px;}
.y3c_c01393{bottom:228.960000px;}
.y35_c01393{bottom:258.480000px;}
.y34_c01393{bottom:259.920000px;}
.y36_c01393{bottom:260.640000px;}
.y37_c01393{bottom:261.360000px;}
.y38_c01393{bottom:262.080000px;}
.y66_c01393{bottom:264.960000px;}
.y65_c01393{bottom:265.680000px;}
.y32_c01393{bottom:302.400000px;}
.y33_c01393{bottom:303.840000px;}
.y31_c01393{bottom:304.560000px;}
.y64_c01393{bottom:306.720000px;}
.y63_c01393{bottom:307.440000px;}
.y30_c01393{bottom:344.880000px;}
.y2f_c01393{bottom:345.600000px;}
.y2e_c01393{bottom:347.760000px;}
.y60_c01393{bottom:348.480000px;}
.y5f_c01393{bottom:349.200000px;}
.y61_c01393{bottom:349.920000px;}
.y62_c01393{bottom:350.640000px;}
.y2d_c01393{bottom:388.800000px;}
.y2c_c01393{bottom:390.960000px;}
.y5e_c01393{bottom:392.400000px;}
.y29_c01393{bottom:432.000000px;}
.y2a_c01393{bottom:432.720000px;}
.y28_c01393{bottom:434.160000px;}
.y2b_c01393{bottom:434.880000px;}
.y5d_c01393{bottom:476.640000px;}
.y5c_c01393{bottom:477.360000px;}
.y5b_c01393{bottom:478.080000px;}
.y27_c01393{bottom:518.400000px;}
.y25_c01393{bottom:519.120000px;}
.y59_c01393{bottom:520.560000px;}
.y24_c01393{bottom:521.280000px;}
.y26_c01393{bottom:522.000000px;}
.y5a_c01393{bottom:523.440000px;}
.y58_c01393{bottom:524.160000px;}
.y23_c01393{bottom:562.320000px;}
.y1f_c01393{bottom:594.720000px;}
.y1e_c01393{bottom:595.440000px;}
.y1d_c01393{bottom:596.160000px;}
.y21_c01393{bottom:596.880000px;}
.y22_c01393{bottom:597.600000px;}
.y20_c01393{bottom:598.320000px;}
.y57_c01393{bottom:599.760000px;}
.y1c_c01393{bottom:637.200000px;}
.y19_c01393{bottom:639.360000px;}
.y1a_c01393{bottom:641.520000px;}
.y1b_c01393{bottom:642.240000px;}
.y18_c01393{bottom:681.120000px;}
.y55_c01393{bottom:681.840000px;}
.y17_c01393{bottom:682.560000px;}
.y54_c01393{bottom:683.280000px;}
.y56_c01393{bottom:684.000000px;}
.y16_c01393{bottom:725.040000px;}
.y15_c01393{bottom:725.760000px;}
.y14_c01393{bottom:767.520000px;}
.y53_c01393{bottom:768.240000px;}
.y12_c01393{bottom:768.960000px;}
.y52_c01393{bottom:769.680000px;}
.y51_c01393{bottom:770.400000px;}
.y13_c01393{bottom:771.120000px;}
.y11_c01393{bottom:810.720000px;}
.yf_c01393{bottom:812.880000px;}
.y10_c01393{bottom:814.320000px;}
.y50_c01393{bottom:853.200000px;}
.ye_c01393{bottom:853.920000px;}
.y4f_c01393{bottom:854.640000px;}
.yd_c01393{bottom:855.360000px;}
.y4e_c01393{bottom:896.400000px;}
.yc_c01393{bottom:897.120000px;}
.y4d_c01393{bottom:897.840000px;}
.yb_c01393{bottom:898.560000px;}
.ya_c01393{bottom:939.600000px;}
.y8_c01393{bottom:940.320000px;}
.y4c_c01393{bottom:941.040000px;}
.y7_c01393{bottom:941.760000px;}
.y9_c01393{bottom:943.920000px;}
.y4a_c01393{bottom:982.800000px;}
.y6_c01393{bottom:983.520000px;}
.y4b_c01393{bottom:984.240000px;}
.y5_c01393{bottom:984.960000px;}
.y49_c01393{bottom:1025.280000px;}
.y4_c01393{bottom:1026.720000px;}
.y2_c01393{bottom:1027.440000px;}
.y48_c01393{bottom:1028.160000px;}
.y1_c01393{bottom:1028.880000px;}
.y3_c01393{bottom:1030.320000px;}
.y47_c01393{bottom:1082.160000px;}
.h4_c01393{height:36.284062px;}
.hb_c01393{height:44.059219px;}
.h8_c01393{height:46.650937px;}
.h9_c01393{height:49.242656px;}
.h2_c01393{height:51.834375px;}
.h6_c01393{height:54.426094px;}
.h7_c01393{height:57.017812px;}
.hc_c01393{height:59.609531px;}
.ha_c01393{height:62.201250px;}
.hd_c01393{height:64.792969px;}
.h3_c01393{height:67.384687px;}
.h5_c01393{height:69.976406px;}
.h1_c01393{height:1145.250000px;}
.h0_c01393{height:1145.520000px;}
.w0_c01393{width:758.880000px;}
.w1_c01393{width:759.000000px;}
.x0_c01393{left:0.000000px;}
.x1_c01393{left:41.040000px;}
.x8_c01393{left:42.480000px;}
.x18_c01393{left:43.920000px;}
.x1a_c01393{left:45.360000px;}
.x12_c01393{left:52.560000px;}
.x2_c01393{left:92.880000px;}
.x9_c01393{left:94.320000px;}
.x19_c01393{left:95.760000px;}
.x5_c01393{left:170.640000px;}
.x3_c01393{left:181.440000px;}
.x1b_c01393{left:183.600000px;}
.x4_c01393{left:223.920000px;}
.xb_c01393{left:235.440000px;}
.xd_c01393{left:246.960000px;}
.x16_c01393{left:268.560000px;}
.xa_c01393{left:284.400000px;}
.x11_c01393{left:289.440000px;}
.xc_c01393{left:290.880000px;}
.x6_c01393{left:300.240000px;}
.xe_c01393{left:301.680000px;}
.x17_c01393{left:322.560000px;}
.x13_c01393{left:344.160000px;}
.x7_c01393{left:354.240000px;}
.x14_c01393{left:386.640000px;}
.xf_c01393{left:397.440000px;}
.x15_c01393{left:440.640000px;}
.x10_c01393{left:451.440000px;}
.x1d_c01393{left:568.080000px;}
.x22_c01393{left:570.240000px;}
.x24_c01393{left:589.680000px;}
.x2c_c01393{left:591.120000px;}
.x2b_c01393{left:600.480000px;}
.x26_c01393{left:622.080000px;}
.x1e_c01393{left:623.520000px;}
.x2a_c01393{left:632.878920px;}
.x1c_c01393{left:642.240000px;}
.x23_c01393{left:654.480000px;}
.x1f_c01393{left:655.920000px;}
.x29_c01393{left:665.280000px;}
.x28_c01393{left:686.880000px;}
.x25_c01393{left:696.960000px;}
.x20_c01393{left:698.400000px;}
.x27_c01393{left:717.120000px;}
.x21_c01393{left:718.560000px;}
@media print{
.v2_c01393{vertical-align:-7.680000pt;}
.v1_c01393{vertical-align:-2.560000pt;}
.v0_c01393{vertical-align:0.000000pt;}
.ls1_c01393{letter-spacing:0.000000pt;}
.ls0_c01393{letter-spacing:69.516160pt;}
.ws2_c01393{word-spacing:0.000000pt;}
.ws0_c01393{word-spacing:8.422400pt;}
.ws1_c01393{word-spacing:11.213867pt;}
.fs2_c01393{font-size:35.840000pt;}
.fs9_c01393{font-size:43.520000pt;}
.fs6_c01393{font-size:46.080000pt;}
.fs7_c01393{font-size:48.640000pt;}
.fs0_c01393{font-size:51.200000pt;}
.fs4_c01393{font-size:53.760000pt;}
.fs5_c01393{font-size:56.320000pt;}
.fsa_c01393{font-size:58.880000pt;}
.fs8_c01393{font-size:61.440000pt;}
.fsb_c01393{font-size:64.000000pt;}
.fs1_c01393{font-size:66.560000pt;}
.fs3_c01393{font-size:69.120000pt;}
.y0_c01393{bottom:0.000000pt;}
.y44_c01393{bottom:83.840000pt;}
.y45_c01393{bottom:85.120000pt;}
.y46_c01393{bottom:85.760000pt;}
.y43_c01393{bottom:88.320000pt;}
.y6a_c01393{bottom:88.960000pt;}
.y6b_c01393{bottom:90.240000pt;}
.y42_c01393{bottom:122.880000pt;}
.y41_c01393{bottom:127.360000pt;}
.y3e_c01393{bottom:161.920000pt;}
.y3f_c01393{bottom:163.200000pt;}
.y3d_c01393{bottom:165.120000pt;}
.y40_c01393{bottom:165.760000pt;}
.y67_c01393{bottom:166.400000pt;}
.y68_c01393{bottom:167.040000pt;}
.y69_c01393{bottom:168.960000pt;}
.y3b_c01393{bottom:200.960000pt;}
.y39_c01393{bottom:201.600000pt;}
.y3a_c01393{bottom:202.880000pt;}
.y3c_c01393{bottom:203.520000pt;}
.y35_c01393{bottom:229.760000pt;}
.y34_c01393{bottom:231.040000pt;}
.y36_c01393{bottom:231.680000pt;}
.y37_c01393{bottom:232.320000pt;}
.y38_c01393{bottom:232.960000pt;}
.y66_c01393{bottom:235.520000pt;}
.y65_c01393{bottom:236.160000pt;}
.y32_c01393{bottom:268.800000pt;}
.y33_c01393{bottom:270.080000pt;}
.y31_c01393{bottom:270.720000pt;}
.y64_c01393{bottom:272.640000pt;}
.y63_c01393{bottom:273.280000pt;}
.y30_c01393{bottom:306.560000pt;}
.y2f_c01393{bottom:307.200000pt;}
.y2e_c01393{bottom:309.120000pt;}
.y60_c01393{bottom:309.760000pt;}
.y5f_c01393{bottom:310.400000pt;}
.y61_c01393{bottom:311.040000pt;}
.y62_c01393{bottom:311.680000pt;}
.y2d_c01393{bottom:345.600000pt;}
.y2c_c01393{bottom:347.520000pt;}
.y5e_c01393{bottom:348.800000pt;}
.y29_c01393{bottom:384.000000pt;}
.y2a_c01393{bottom:384.640000pt;}
.y28_c01393{bottom:385.920000pt;}
.y2b_c01393{bottom:386.560000pt;}
.y5d_c01393{bottom:423.680000pt;}
.y5c_c01393{bottom:424.320000pt;}
.y5b_c01393{bottom:424.960000pt;}
.y27_c01393{bottom:460.800000pt;}
.y25_c01393{bottom:461.440000pt;}
.y59_c01393{bottom:462.720000pt;}
.y24_c01393{bottom:463.360000pt;}
.y26_c01393{bottom:464.000000pt;}
.y5a_c01393{bottom:465.280000pt;}
.y58_c01393{bottom:465.920000pt;}
.y23_c01393{bottom:499.840000pt;}
.y1f_c01393{bottom:528.640000pt;}
.y1e_c01393{bottom:529.280000pt;}
.y1d_c01393{bottom:529.920000pt;}
.y21_c01393{bottom:530.560000pt;}
.y22_c01393{bottom:531.200000pt;}
.y20_c01393{bottom:531.840000pt;}
.y57_c01393{bottom:533.120000pt;}
.y1c_c01393{bottom:566.400000pt;}
.y19_c01393{bottom:568.320000pt;}
.y1a_c01393{bottom:570.240000pt;}
.y1b_c01393{bottom:570.880000pt;}
.y18_c01393{bottom:605.440000pt;}
.y55_c01393{bottom:606.080000pt;}
.y17_c01393{bottom:606.720000pt;}
.y54_c01393{bottom:607.360000pt;}
.y56_c01393{bottom:608.000000pt;}
.y16_c01393{bottom:644.480000pt;}
.y15_c01393{bottom:645.120000pt;}
.y14_c01393{bottom:682.240000pt;}
.y53_c01393{bottom:682.880000pt;}
.y12_c01393{bottom:683.520000pt;}
.y52_c01393{bottom:684.160000pt;}
.y51_c01393{bottom:684.800000pt;}
.y13_c01393{bottom:685.440000pt;}
.y11_c01393{bottom:720.640000pt;}
.yf_c01393{bottom:722.560000pt;}
.y10_c01393{bottom:723.840000pt;}
.y50_c01393{bottom:758.400000pt;}
.ye_c01393{bottom:759.040000pt;}
.y4f_c01393{bottom:759.680000pt;}
.yd_c01393{bottom:760.320000pt;}
.y4e_c01393{bottom:796.800000pt;}
.yc_c01393{bottom:797.440000pt;}
.y4d_c01393{bottom:798.080000pt;}
.yb_c01393{bottom:798.720000pt;}
.ya_c01393{bottom:835.200000pt;}
.y8_c01393{bottom:835.840000pt;}
.y4c_c01393{bottom:836.480000pt;}
.y7_c01393{bottom:837.120000pt;}
.y9_c01393{bottom:839.040000pt;}
.y4a_c01393{bottom:873.600000pt;}
.y6_c01393{bottom:874.240000pt;}
.y4b_c01393{bottom:874.880000pt;}
.y5_c01393{bottom:875.520000pt;}
.y49_c01393{bottom:911.360000pt;}
.y4_c01393{bottom:912.640000pt;}
.y2_c01393{bottom:913.280000pt;}
.y48_c01393{bottom:913.920000pt;}
.y1_c01393{bottom:914.560000pt;}
.y3_c01393{bottom:915.840000pt;}
.y47_c01393{bottom:961.920000pt;}
.h4_c01393{height:32.252500pt;}
.hb_c01393{height:39.163750pt;}
.h8_c01393{height:41.467500pt;}
.h9_c01393{height:43.771250pt;}
.h2_c01393{height:46.075000pt;}
.h6_c01393{height:48.378750pt;}
.h7_c01393{height:50.682500pt;}
.hc_c01393{height:52.986250pt;}
.ha_c01393{height:55.290000pt;}
.hd_c01393{height:57.593750pt;}
.h3_c01393{height:59.897500pt;}
.h5_c01393{height:62.201250pt;}
.h1_c01393{height:1018.000000pt;}
.h0_c01393{height:1018.240000pt;}
.w0_c01393{width:674.560000pt;}
.w1_c01393{width:674.666667pt;}
.x0_c01393{left:0.000000pt;}
.x1_c01393{left:36.480000pt;}
.x8_c01393{left:37.760000pt;}
.x18_c01393{left:39.040000pt;}
.x1a_c01393{left:40.320000pt;}
.x12_c01393{left:46.720000pt;}
.x2_c01393{left:82.560000pt;}
.x9_c01393{left:83.840000pt;}
.x19_c01393{left:85.120000pt;}
.x5_c01393{left:151.680000pt;}
.x3_c01393{left:161.280000pt;}
.x1b_c01393{left:163.200000pt;}
.x4_c01393{left:199.040000pt;}
.xb_c01393{left:209.280000pt;}
.xd_c01393{left:219.520000pt;}
.x16_c01393{left:238.720000pt;}
.xa_c01393{left:252.800000pt;}
.x11_c01393{left:257.280000pt;}
.xc_c01393{left:258.560000pt;}
.x6_c01393{left:266.880000pt;}
.xe_c01393{left:268.160000pt;}
.x17_c01393{left:286.720000pt;}
.x13_c01393{left:305.920000pt;}
.x7_c01393{left:314.880000pt;}
.x14_c01393{left:343.680000pt;}
.xf_c01393{left:353.280000pt;}
.x15_c01393{left:391.680000pt;}
.x10_c01393{left:401.280000pt;}
.x1d_c01393{left:504.960000pt;}
.x22_c01393{left:506.880000pt;}
.x24_c01393{left:524.160000pt;}
.x2c_c01393{left:525.440000pt;}
.x2b_c01393{left:533.760000pt;}
.x26_c01393{left:552.960000pt;}
.x1e_c01393{left:554.240000pt;}
.x2a_c01393{left:562.559040pt;}
.x1c_c01393{left:570.880000pt;}
.x23_c01393{left:581.760000pt;}
.x1f_c01393{left:583.040000pt;}
.x29_c01393{left:591.360000pt;}
.x28_c01393{left:610.560000pt;}
.x25_c01393{left:619.520000pt;}
.x20_c01393{left:620.800000pt;}
.x27_c01393{left:637.440000pt;}
.x21_c01393{left:638.720000pt;}
}





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

.ir_c01394:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01394{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01394;src:url('chunks/assets/font_f33beaa3c0a78fde1c0ff578.woff2')format("woff");}.ff1_c01394{font-family:ff1_c01394;line-height:1.109863;font-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_c01394{transform:matrix(0.191425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191425,0.000000,0.000000,0.250000,0,0);}
.m36_c01394{transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);}
.m33_c01394{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m11_c01394{transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);}
.mb_c01394{transform:matrix(0.244350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244350,0.000000,0.000000,0.250000,0,0);}
.m3a_c01394{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m2d_c01394{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01394{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01394{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);}
.m28_c01394{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_c01394{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01394{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);}
.m43_c01394{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_c01394{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1_c01394{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m20_c01394{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);}
.m3c_c01394{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01394{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.ma_c01394{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m5_c01394{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);}
.m30_c01394{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mf_c01394{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);}
.m40_c01394{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01394{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m9_c01394{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m4_c01394{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01394{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01394{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m15_c01394{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m31_c01394{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m8_c01394{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m12_c01394{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m35_c01394{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m25_c01394{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m38_c01394{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01394{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m37_c01394{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);}
.m3b_c01394{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m34_c01394{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.md_c01394{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);}
.m32_c01394{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);}
.m41_c01394{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);}
.m44_c01394{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m2_c01394{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);}
.m3e_c01394{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m26_c01394{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m19_c01394{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);}
.m2b_c01394{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m10_c01394{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m39_c01394{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m24_c01394{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m6_c01394{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);}
.m21_c01394{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);}
.m18_c01394{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m27_c01394{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m13_c01394{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_c01394{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m0_c01394{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m29_c01394{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);}
.m1f_c01394{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m42_c01394{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);}
.me_c01394{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.mc_c01394{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01394{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01394{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);}
.m2c_c01394{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m3_c01394{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m22_c01394{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m23_c01394{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.v0_c01394{vertical-align:0.000000px;}
.ls0_c01394{letter-spacing:0.000000px;}
.sc__c01394{text-shadow:none;}
.sc0_c01394{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01394{-webkit-text-stroke:0px transparent;}
.sc0_c01394{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01394{word-spacing:0.000000px;}
.ws0_c01394{word-spacing:48.831909px;}
.fc0_c01394{color:transparent;}
.fsc_c01394{font-size:34.560000px;}
.fsb_c01394{font-size:37.440000px;}
.fsa_c01394{font-size:46.080000px;}
.fs2_c01394{font-size:48.960000px;}
.fs3_c01394{font-size:51.840000px;}
.fs0_c01394{font-size:54.720000px;}
.fs9_c01394{font-size:57.600000px;}
.fs6_c01394{font-size:60.480000px;}
.fs4_c01394{font-size:63.360000px;}
.fs7_c01394{font-size:69.120000px;}
.fs8_c01394{font-size:72.000000px;}
.fs5_c01394{font-size:74.880000px;}
.fs1_c01394{font-size:77.760000px;}
.y0_c01394{bottom:0.000000px;}
.y51_c01394{bottom:61.200000px;}
.y52_c01394{bottom:65.520000px;}
.y50_c01394{bottom:66.240000px;}
.y4c_c01394{bottom:105.120000px;}
.y4f_c01394{bottom:107.280000px;}
.y4d_c01394{bottom:108.000000px;}
.y4e_c01394{bottom:108.720000px;}
.y4b_c01394{bottom:109.440000px;}
.y72_c01394{bottom:110.160000px;}
.y70_c01394{bottom:111.600000px;}
.y71_c01394{bottom:112.320000px;}
.y46_c01394{bottom:147.600000px;}
.y4a_c01394{bottom:150.480000px;}
.y47_c01394{bottom:151.920000px;}
.y45_c01394{bottom:152.640000px;}
.y48_c01394{bottom:153.360000px;}
.y49_c01394{bottom:154.080000px;}
.y6f_c01394{bottom:155.520000px;}
.y44_c01394{bottom:191.520000px;}
.y43_c01394{bottom:195.120000px;}
.y42_c01394{bottom:195.840000px;}
.y41_c01394{bottom:196.560000px;}
.y6e_c01394{bottom:198.720000px;}
.y40_c01394{bottom:235.440000px;}
.y3f_c01394{bottom:237.600000px;}
.y6b_c01394{bottom:239.760000px;}
.y3e_c01394{bottom:240.480000px;}
.y6a_c01394{bottom:241.200000px;}
.y6d_c01394{bottom:241.920000px;}
.y6c_c01394{bottom:242.640000px;}
.y3d_c01394{bottom:279.360000px;}
.y3c_c01394{bottom:280.080000px;}
.y69_c01394{bottom:282.240000px;}
.y3b_c01394{bottom:282.960000px;}
.y3a_c01394{bottom:283.680000px;}
.y39_c01394{bottom:326.160000px;}
.y38_c01394{bottom:326.880000px;}
.y37_c01394{bottom:376.560000px;}
.y67_c01394{bottom:380.160000px;}
.y36_c01394{bottom:380.880000px;}
.y68_c01394{bottom:381.600000px;}
.y66_c01394{bottom:383.040000px;}
.y35_c01394{bottom:419.760000px;}
.y65_c01394{bottom:422.640000px;}
.y64_c01394{bottom:423.360000px;}
.y34_c01394{bottom:424.080000px;}
.y2f_c01394{bottom:462.960000px;}
.y33_c01394{bottom:464.400000px;}
.y31_c01394{bottom:465.120000px;}
.y62_c01394{bottom:465.840000px;}
.y2e_c01394{bottom:466.560000px;}
.y30_c01394{bottom:467.280000px;}
.y32_c01394{bottom:468.000000px;}
.y63_c01394{bottom:468.720000px;}
.y2c_c01394{bottom:507.600000px;}
.y2d_c01394{bottom:508.320000px;}
.y2b_c01394{bottom:509.760000px;}
.y29_c01394{bottom:549.360000px;}
.y2a_c01394{bottom:550.080000px;}
.y60_c01394{bottom:551.520000px;}
.y28_c01394{bottom:554.400000px;}
.y61_c01394{bottom:555.120000px;}
.y26_c01394{bottom:592.560000px;}
.y27_c01394{bottom:593.280000px;}
.y5f_c01394{bottom:594.720000px;}
.y25_c01394{bottom:596.160000px;}
.y23_c01394{bottom:635.760000px;}
.y5d_c01394{bottom:636.480000px;}
.y24_c01394{bottom:637.200000px;}
.y22_c01394{bottom:639.360000px;}
.y5e_c01394{bottom:640.080000px;}
.y20_c01394{bottom:679.680000px;}
.y21_c01394{bottom:680.400000px;}
.y1f_c01394{bottom:681.840000px;}
.y1b_c01394{bottom:722.160000px;}
.y1c_c01394{bottom:722.880000px;}
.y5b_c01394{bottom:723.600000px;}
.y1d_c01394{bottom:724.320000px;}
.y1a_c01394{bottom:725.040000px;}
.y1e_c01394{bottom:725.760000px;}
.y5c_c01394{bottom:726.480000px;}
.y18_c01394{bottom:766.080000px;}
.y19_c01394{bottom:766.800000px;}
.y17_c01394{bottom:768.240000px;}
.y5a_c01394{bottom:770.400000px;}
.y15_c01394{bottom:810.000000px;}
.y16_c01394{bottom:810.720000px;}
.y14_c01394{bottom:811.440000px;}
.y13_c01394{bottom:851.760000px;}
.y11_c01394{bottom:853.200000px;}
.y12_c01394{bottom:853.920000px;}
.y10_c01394{bottom:854.640000px;}
.y59_c01394{bottom:855.360000px;}
.yd_c01394{bottom:895.680000px;}
.y58_c01394{bottom:896.400000px;}
.yf_c01394{bottom:897.120000px;}
.yc_c01394{bottom:898.560000px;}
.ye_c01394{bottom:900.000000px;}
.y57_c01394{bottom:938.880000px;}
.y9_c01394{bottom:939.600000px;}
.y8_c01394{bottom:940.320000px;}
.ya_c01394{bottom:941.040000px;}
.yb_c01394{bottom:942.480000px;}
.y7_c01394{bottom:982.800000px;}
.y56_c01394{bottom:983.520000px;}
.y6_c01394{bottom:984.240000px;}
.y54_c01394{bottom:1024.560000px;}
.y5_c01394{bottom:1025.280000px;}
.y2_c01394{bottom:1026.000000px;}
.y4_c01394{bottom:1026.720000px;}
.y55_c01394{bottom:1027.440000px;}
.y1_c01394{bottom:1028.160000px;}
.y3_c01394{bottom:1029.600000px;}
.y53_c01394{bottom:1094.400000px;}
.he_c01394{height:31.100625px;}
.hd_c01394{height:33.692344px;}
.hc_c01394{height:41.467500px;}
.h4_c01394{height:44.059219px;}
.h5_c01394{height:46.650937px;}
.h2_c01394{height:49.242656px;}
.hb_c01394{height:51.834375px;}
.h8_c01394{height:54.426094px;}
.h6_c01394{height:57.017812px;}
.h9_c01394{height:62.201250px;}
.ha_c01394{height:64.792969px;}
.h7_c01394{height:67.384687px;}
.h3_c01394{height:69.976406px;}
.h0_c01394{height:1141.200000px;}
.h1_c01394{height:1141.500000px;}
.w1_c01394{width:766.500000px;}
.w0_c01394{width:766.800000px;}
.x0_c01394{left:0.000000px;}
.x1_c01394{left:45.360000px;}
.x13_c01394{left:46.800000px;}
.x2_c01394{left:97.200000px;}
.xd_c01394{left:98.640000px;}
.x12_c01394{left:152.640000px;}
.xf_c01394{left:172.800000px;}
.x14_c01394{left:184.320000px;}
.x7_c01394{left:196.560000px;}
.x3_c01394{left:226.800000px;}
.x10_c01394{left:228.960000px;}
.x15_c01394{left:238.320000px;}
.x1a_c01394{left:239.760000px;}
.x9_c01394{left:250.560000px;}
.x4_c01394{left:271.440000px;}
.x16_c01394{left:282.960000px;}
.x1b_c01394{left:293.040000px;}
.x8_c01394{left:315.360000px;}
.x5_c01394{left:326.160000px;}
.xa_c01394{left:336.960000px;}
.x1c_c01394{left:346.320000px;}
.xe_c01394{left:359.280000px;}
.x17_c01394{left:369.360000px;}
.x11_c01394{left:379.440000px;}
.xb_c01394{left:390.960000px;}
.x6_c01394{left:412.560000px;}
.x18_c01394{left:421.200000px;}
.xc_c01394{left:434.160000px;}
.x19_c01394{left:465.120000px;}
.x1e_c01394{left:573.840000px;}
.x26_c01394{left:593.280000px;}
.x21_c01394{left:594.720000px;}
.x29_c01394{left:604.800000px;}
.x24_c01394{left:626.400000px;}
.x27_c01394{left:658.800000px;}
.x1d_c01394{left:667.440000px;}
.x23_c01394{left:669.600000px;}
.x1f_c01394{left:671.040000px;}
.x28_c01394{left:691.200000px;}
.x2a_c01394{left:700.560000px;}
.x20_c01394{left:702.000000px;}
.x22_c01394{left:704.160000px;}
.x25_c01394{left:722.160000px;}
@media print{
.v0_c01394{vertical-align:0.000000pt;}
.ls0_c01394{letter-spacing:0.000000pt;}
.ws1_c01394{word-spacing:0.000000pt;}
.ws0_c01394{word-spacing:43.406141pt;}
.fsc_c01394{font-size:30.720000pt;}
.fsb_c01394{font-size:33.280000pt;}
.fsa_c01394{font-size:40.960000pt;}
.fs2_c01394{font-size:43.520000pt;}
.fs3_c01394{font-size:46.080000pt;}
.fs0_c01394{font-size:48.640000pt;}
.fs9_c01394{font-size:51.200000pt;}
.fs6_c01394{font-size:53.760000pt;}
.fs4_c01394{font-size:56.320000pt;}
.fs7_c01394{font-size:61.440000pt;}
.fs8_c01394{font-size:64.000000pt;}
.fs5_c01394{font-size:66.560000pt;}
.fs1_c01394{font-size:69.120000pt;}
.y0_c01394{bottom:0.000000pt;}
.y51_c01394{bottom:54.400000pt;}
.y52_c01394{bottom:58.240000pt;}
.y50_c01394{bottom:58.880000pt;}
.y4c_c01394{bottom:93.440000pt;}
.y4f_c01394{bottom:95.360000pt;}
.y4d_c01394{bottom:96.000000pt;}
.y4e_c01394{bottom:96.640000pt;}
.y4b_c01394{bottom:97.280000pt;}
.y72_c01394{bottom:97.920000pt;}
.y70_c01394{bottom:99.200000pt;}
.y71_c01394{bottom:99.840000pt;}
.y46_c01394{bottom:131.200000pt;}
.y4a_c01394{bottom:133.760000pt;}
.y47_c01394{bottom:135.040000pt;}
.y45_c01394{bottom:135.680000pt;}
.y48_c01394{bottom:136.320000pt;}
.y49_c01394{bottom:136.960000pt;}
.y6f_c01394{bottom:138.240000pt;}
.y44_c01394{bottom:170.240000pt;}
.y43_c01394{bottom:173.440000pt;}
.y42_c01394{bottom:174.080000pt;}
.y41_c01394{bottom:174.720000pt;}
.y6e_c01394{bottom:176.640000pt;}
.y40_c01394{bottom:209.280000pt;}
.y3f_c01394{bottom:211.200000pt;}
.y6b_c01394{bottom:213.120000pt;}
.y3e_c01394{bottom:213.760000pt;}
.y6a_c01394{bottom:214.400000pt;}
.y6d_c01394{bottom:215.040000pt;}
.y6c_c01394{bottom:215.680000pt;}
.y3d_c01394{bottom:248.320000pt;}
.y3c_c01394{bottom:248.960000pt;}
.y69_c01394{bottom:250.880000pt;}
.y3b_c01394{bottom:251.520000pt;}
.y3a_c01394{bottom:252.160000pt;}
.y39_c01394{bottom:289.920000pt;}
.y38_c01394{bottom:290.560000pt;}
.y37_c01394{bottom:334.720000pt;}
.y67_c01394{bottom:337.920000pt;}
.y36_c01394{bottom:338.560000pt;}
.y68_c01394{bottom:339.200000pt;}
.y66_c01394{bottom:340.480000pt;}
.y35_c01394{bottom:373.120000pt;}
.y65_c01394{bottom:375.680000pt;}
.y64_c01394{bottom:376.320000pt;}
.y34_c01394{bottom:376.960000pt;}
.y2f_c01394{bottom:411.520000pt;}
.y33_c01394{bottom:412.800000pt;}
.y31_c01394{bottom:413.440000pt;}
.y62_c01394{bottom:414.080000pt;}
.y2e_c01394{bottom:414.720000pt;}
.y30_c01394{bottom:415.360000pt;}
.y32_c01394{bottom:416.000000pt;}
.y63_c01394{bottom:416.640000pt;}
.y2c_c01394{bottom:451.200000pt;}
.y2d_c01394{bottom:451.840000pt;}
.y2b_c01394{bottom:453.120000pt;}
.y29_c01394{bottom:488.320000pt;}
.y2a_c01394{bottom:488.960000pt;}
.y60_c01394{bottom:490.240000pt;}
.y28_c01394{bottom:492.800000pt;}
.y61_c01394{bottom:493.440000pt;}
.y26_c01394{bottom:526.720000pt;}
.y27_c01394{bottom:527.360000pt;}
.y5f_c01394{bottom:528.640000pt;}
.y25_c01394{bottom:529.920000pt;}
.y23_c01394{bottom:565.120000pt;}
.y5d_c01394{bottom:565.760000pt;}
.y24_c01394{bottom:566.400000pt;}
.y22_c01394{bottom:568.320000pt;}
.y5e_c01394{bottom:568.960000pt;}
.y20_c01394{bottom:604.160000pt;}
.y21_c01394{bottom:604.800000pt;}
.y1f_c01394{bottom:606.080000pt;}
.y1b_c01394{bottom:641.920000pt;}
.y1c_c01394{bottom:642.560000pt;}
.y5b_c01394{bottom:643.200000pt;}
.y1d_c01394{bottom:643.840000pt;}
.y1a_c01394{bottom:644.480000pt;}
.y1e_c01394{bottom:645.120000pt;}
.y5c_c01394{bottom:645.760000pt;}
.y18_c01394{bottom:680.960000pt;}
.y19_c01394{bottom:681.600000pt;}
.y17_c01394{bottom:682.880000pt;}
.y5a_c01394{bottom:684.800000pt;}
.y15_c01394{bottom:720.000000pt;}
.y16_c01394{bottom:720.640000pt;}
.y14_c01394{bottom:721.280000pt;}
.y13_c01394{bottom:757.120000pt;}
.y11_c01394{bottom:758.400000pt;}
.y12_c01394{bottom:759.040000pt;}
.y10_c01394{bottom:759.680000pt;}
.y59_c01394{bottom:760.320000pt;}
.yd_c01394{bottom:796.160000pt;}
.y58_c01394{bottom:796.800000pt;}
.yf_c01394{bottom:797.440000pt;}
.yc_c01394{bottom:798.720000pt;}
.ye_c01394{bottom:800.000000pt;}
.y57_c01394{bottom:834.560000pt;}
.y9_c01394{bottom:835.200000pt;}
.y8_c01394{bottom:835.840000pt;}
.ya_c01394{bottom:836.480000pt;}
.yb_c01394{bottom:837.760000pt;}
.y7_c01394{bottom:873.600000pt;}
.y56_c01394{bottom:874.240000pt;}
.y6_c01394{bottom:874.880000pt;}
.y54_c01394{bottom:910.720000pt;}
.y5_c01394{bottom:911.360000pt;}
.y2_c01394{bottom:912.000000pt;}
.y4_c01394{bottom:912.640000pt;}
.y55_c01394{bottom:913.280000pt;}
.y1_c01394{bottom:913.920000pt;}
.y3_c01394{bottom:915.200000pt;}
.y53_c01394{bottom:972.800000pt;}
.he_c01394{height:27.645000pt;}
.hd_c01394{height:29.948750pt;}
.hc_c01394{height:36.860000pt;}
.h4_c01394{height:39.163750pt;}
.h5_c01394{height:41.467500pt;}
.h2_c01394{height:43.771250pt;}
.hb_c01394{height:46.075000pt;}
.h8_c01394{height:48.378750pt;}
.h6_c01394{height:50.682500pt;}
.h9_c01394{height:55.290000pt;}
.ha_c01394{height:57.593750pt;}
.h7_c01394{height:59.897500pt;}
.h3_c01394{height:62.201250pt;}
.h0_c01394{height:1014.400000pt;}
.h1_c01394{height:1014.666667pt;}
.w1_c01394{width:681.333333pt;}
.w0_c01394{width:681.600000pt;}
.x0_c01394{left:0.000000pt;}
.x1_c01394{left:40.320000pt;}
.x13_c01394{left:41.600000pt;}
.x2_c01394{left:86.400000pt;}
.xd_c01394{left:87.680000pt;}
.x12_c01394{left:135.680000pt;}
.xf_c01394{left:153.600000pt;}
.x14_c01394{left:163.840000pt;}
.x7_c01394{left:174.720000pt;}
.x3_c01394{left:201.600000pt;}
.x10_c01394{left:203.520000pt;}
.x15_c01394{left:211.840000pt;}
.x1a_c01394{left:213.120000pt;}
.x9_c01394{left:222.720000pt;}
.x4_c01394{left:241.280000pt;}
.x16_c01394{left:251.520000pt;}
.x1b_c01394{left:260.480000pt;}
.x8_c01394{left:280.320000pt;}
.x5_c01394{left:289.920000pt;}
.xa_c01394{left:299.520000pt;}
.x1c_c01394{left:307.840000pt;}
.xe_c01394{left:319.360000pt;}
.x17_c01394{left:328.320000pt;}
.x11_c01394{left:337.280000pt;}
.xb_c01394{left:347.520000pt;}
.x6_c01394{left:366.720000pt;}
.x18_c01394{left:374.400000pt;}
.xc_c01394{left:385.920000pt;}
.x19_c01394{left:413.440000pt;}
.x1e_c01394{left:510.080000pt;}
.x26_c01394{left:527.360000pt;}
.x21_c01394{left:528.640000pt;}
.x29_c01394{left:537.600000pt;}
.x24_c01394{left:556.800000pt;}
.x27_c01394{left:585.600000pt;}
.x1d_c01394{left:593.280000pt;}
.x23_c01394{left:595.200000pt;}
.x1f_c01394{left:596.480000pt;}
.x28_c01394{left:614.400000pt;}
.x2a_c01394{left:622.720000pt;}
.x20_c01394{left:624.000000pt;}
.x22_c01394{left:625.920000pt;}
.x25_c01394{left:641.920000pt;}
}





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

.ir_c01395:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01395{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01395;src:url('chunks/assets/font_f36516e7ddea1305f37ae56a.woff2')format("woff");}.ff1_c01395{font-family:ff1_c01395;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m41_c01395{transform:matrix(0.181300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181300,0.000000,0.000000,0.250000,0,0);}
.m46_c01395{transform:matrix(0.246800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246800,0.000000,0.000000,0.250000,0,0);}
.m4d_c01395{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m1d_c01395{transform:matrix(0.249050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249050,0.000000,0.000000,0.250000,0,0);}
.m4b_c01395{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m1b_c01395{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.me_c01395{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);}
.m40_c01395{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m15_c01395{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m24_c01395{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);}
.m39_c01395{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);}
.m47_c01395{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m13_c01395{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mb_c01395{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m4_c01395{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m21_c01395{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m7_c01395{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m22_c01395{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01395{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m5_c01395{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01395{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.ma_c01395{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m2_c01395{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m34_c01395{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m6_c01395{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m0_c01395{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m26_c01395{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m48_c01395{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mf_c01395{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.md_c01395{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01395{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m11_c01395{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1_c01395{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m17_c01395{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);}
.m2e_c01395{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m20_c01395{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);}
.m42_c01395{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m3_c01395{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);}
.m32_c01395{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m9_c01395{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);}
.m2a_c01395{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m18_c01395{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);}
.m44_c01395{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m37_c01395{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);}
.m3d_c01395{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m19_c01395{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01395{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_c01395{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);}
.m1e_c01395{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);}
.m1c_c01395{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);}
.m3c_c01395{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m10_c01395{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m27_c01395{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m25_c01395{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);}
.m2f_c01395{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m23_c01395{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m14_c01395{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m28_c01395{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m16_c01395{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01395{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m8_c01395{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);}
.m3f_c01395{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m30_c01395{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m4e_c01395{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01395{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m38_c01395{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m29_c01395{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);}
.m43_c01395{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);}
.m33_c01395{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01395{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01395{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m45_c01395{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01395{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.mc_c01395{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m36_c01395{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m12_c01395{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m31_c01395{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m49_c01395{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m35_c01395{transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);}
.v1_c01395{vertical-align:-2.880000px;}
.v0_c01395{vertical-align:0.000000px;}
.v2_c01395{vertical-align:8.640000px;}
.ls0_c01395{letter-spacing:0.000000px;}
.sc__c01395{text-shadow:none;}
.sc0_c01395{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01395{-webkit-text-stroke:0px transparent;}
.sc0_c01395{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01395{word-spacing:0.000000px;}
.ws1_c01395{word-spacing:53.731200px;}
.ws0_c01395{word-spacing:56.131200px;}
.fc0_c01395{color:transparent;}
.fse_c01395{font-size:31.680000px;}
.fsd_c01395{font-size:34.560000px;}
.fsf_c01395{font-size:37.440000px;}
.fs8_c01395{font-size:43.200000px;}
.fsc_c01395{font-size:46.080000px;}
.fs5_c01395{font-size:48.960000px;}
.fs3_c01395{font-size:51.840000px;}
.fs1_c01395{font-size:54.720000px;}
.fs0_c01395{font-size:57.600000px;}
.fs7_c01395{font-size:60.480000px;}
.fsa_c01395{font-size:63.360000px;}
.fs6_c01395{font-size:66.240000px;}
.fs2_c01395{font-size:69.120000px;}
.fs4_c01395{font-size:72.000000px;}
.fs9_c01395{font-size:74.880000px;}
.fsb_c01395{font-size:77.760000px;}
.fs10_c01395{font-size:89.280000px;}
.y0_c01395{bottom:0.000000px;}
.y5f_c01395{bottom:20.160000px;}
.y60_c01395{bottom:23.040000px;}
.y5e_c01395{bottom:23.760000px;}
.y7a_c01395{bottom:25.200000px;}
.y79_c01395{bottom:25.920000px;}
.y5c_c01395{bottom:63.360000px;}
.y5b_c01395{bottom:66.240000px;}
.y5d_c01395{bottom:66.960000px;}
.y77_c01395{bottom:67.680000px;}
.y76_c01395{bottom:69.120000px;}
.y78_c01395{bottom:71.280000px;}
.y56_c01395{bottom:106.560000px;}
.y57_c01395{bottom:108.000000px;}
.y59_c01395{bottom:108.720000px;}
.y5a_c01395{bottom:109.440000px;}
.y58_c01395{bottom:110.160000px;}
.y55_c01395{bottom:110.880000px;}
.y72_c01395{bottom:112.320000px;}
.y75_c01395{bottom:113.760000px;}
.y73_c01395{bottom:114.480000px;}
.y74_c01395{bottom:115.200000px;}
.y54_c01395{bottom:144.000000px;}
.y53_c01395{bottom:154.080000px;}
.y51_c01395{bottom:203.760000px;}
.y52_c01395{bottom:204.480000px;}
.y50_c01395{bottom:208.080000px;}
.y71_c01395{bottom:209.520000px;}
.y4b_c01395{bottom:246.240000px;}
.y4c_c01395{bottom:248.400000px;}
.y4e_c01395{bottom:249.120000px;}
.y4f_c01395{bottom:249.840000px;}
.y4a_c01395{bottom:250.560000px;}
.y4d_c01395{bottom:251.280000px;}
.y70_c01395{bottom:252.000000px;}
.y6f_c01395{bottom:252.720000px;}
.y49_c01395{bottom:290.160000px;}
.y48_c01395{bottom:291.600000px;}
.y47_c01395{bottom:293.760000px;}
.y6d_c01395{bottom:295.200000px;}
.y6e_c01395{bottom:295.920000px;}
.y45_c01395{bottom:332.640000px;}
.y46_c01395{bottom:334.800000px;}
.y6b_c01395{bottom:336.240000px;}
.y44_c01395{bottom:336.960000px;}
.y6c_c01395{bottom:337.680000px;}
.y43_c01395{bottom:376.560000px;}
.y69_c01395{bottom:380.160000px;}
.y42_c01395{bottom:380.880000px;}
.y6a_c01395{bottom:382.320000px;}
.y40_c01395{bottom:421.200000px;}
.y3f_c01395{bottom:421.920000px;}
.y3e_c01395{bottom:423.360000px;}
.y41_c01395{bottom:424.080000px;}
.y68_c01395{bottom:425.520000px;}
.y3d_c01395{bottom:457.920000px;}
.y3a_c01395{bottom:464.400000px;}
.y38_c01395{bottom:465.120000px;}
.y39_c01395{bottom:466.560000px;}
.y37_c01395{bottom:467.280000px;}
.y3b_c01395{bottom:468.000000px;}
.y67_c01395{bottom:468.720000px;}
.y3c_c01395{bottom:469.440000px;}
.y36_c01395{bottom:507.600000px;}
.y35_c01395{bottom:508.320000px;}
.y34_c01395{bottom:509.760000px;}
.y32_c01395{bottom:551.520000px;}
.y31_c01395{bottom:552.240000px;}
.y30_c01395{bottom:552.960000px;}
.y66_c01395{bottom:553.680000px;}
.y33_c01395{bottom:555.120000px;}
.y2d_c01395{bottom:595.440000px;}
.y2c_c01395{bottom:596.160000px;}
.y2e_c01395{bottom:596.880000px;}
.y2f_c01395{bottom:597.600000px;}
.y65_c01395{bottom:598.320000px;}
.y2b_c01395{bottom:637.200000px;}
.y29_c01395{bottom:638.640000px;}
.y64_c01395{bottom:639.360000px;}
.y2a_c01395{bottom:640.080000px;}
.y28_c01395{bottom:641.520000px;}
.y26_c01395{bottom:680.400000px;}
.y27_c01395{bottom:682.560000px;}
.y63_c01395{bottom:684.000000px;}
.y25_c01395{bottom:684.720000px;}
.y23_c01395{bottom:724.320000px;}
.y24_c01395{bottom:725.040000px;}
.y62_c01395{bottom:725.760000px;}
.y22_c01395{bottom:727.920000px;}
.y10_c01395{bottom:766.800000px;}
.y21_c01395{bottom:767.520000px;}
.yf_c01395{bottom:768.240000px;}
.y11_c01395{bottom:768.960000px;}
.yd_c01395{bottom:810.000000px;}
.ye_c01395{bottom:811.440000px;}
.yc_c01395{bottom:812.160000px;}
.yb_c01395{bottom:852.480000px;}
.y9_c01395{bottom:853.200000px;}
.ya_c01395{bottom:853.920000px;}
.y1e_c01395{bottom:854.640000px;}
.y20_c01395{bottom:856.080000px;}
.y1f_c01395{bottom:856.800000px;}
.y8_c01395{bottom:894.240000px;}
.y7_c01395{bottom:894.960000px;}
.y1d_c01395{bottom:895.680000px;}
.y1c_c01395{bottom:897.840000px;}
.y5_c01395{bottom:937.440000px;}
.y6_c01395{bottom:938.160000px;}
.y1a_c01395{bottom:938.880000px;}
.y1b_c01395{bottom:939.600000px;}
.y19_c01395{bottom:941.040000px;}
.y3_c01395{bottom:980.640000px;}
.y2_c01395{bottom:981.360000px;}
.y16_c01395{bottom:982.080000px;}
.y18_c01395{bottom:982.800000px;}
.y4_c01395{bottom:983.520000px;}
.y15_c01395{bottom:984.240000px;}
.y17_c01395{bottom:984.960000px;}
.y1_c01395{bottom:1025.280000px;}
.y12_c01395{bottom:1027.440000px;}
.y14_c01395{bottom:1028.160000px;}
.y13_c01395{bottom:1030.320000px;}
.y61_c01395{bottom:1093.680000px;}
.h10_c01395{height:28.508906px;}
.hf_c01395{height:31.100625px;}
.h11_c01395{height:33.692344px;}
.ha_c01395{height:38.875781px;}
.he_c01395{height:41.467500px;}
.h7_c01395{height:44.059219px;}
.h5_c01395{height:46.650937px;}
.h3_c01395{height:49.242656px;}
.h2_c01395{height:51.834375px;}
.h9_c01395{height:54.426094px;}
.h13_c01395{height:55.290937px;}
.hc_c01395{height:57.017812px;}
.h8_c01395{height:59.609531px;}
.h4_c01395{height:62.201250px;}
.h6_c01395{height:64.792969px;}
.hb_c01395{height:67.384687px;}
.hd_c01395{height:69.976406px;}
.h12_c01395{height:80.343281px;}
.h1_c01395{height:1151.250000px;}
.h0_c01395{height:1151.280000px;}
.w0_c01395{width:781.200000px;}
.w1_c01395{width:781.500000px;}
.x0_c01395{left:0.000000px;}
.xc_c01395{left:61.920000px;}
.x2d_c01395{left:63.360000px;}
.xd_c01395{left:114.480000px;}
.x30_c01395{left:115.920000px;}
.x2c_c01395{left:169.200000px;}
.x31_c01395{left:189.360000px;}
.xe_c01395{left:190.800000px;}
.x1f_c01395{left:200.880000px;}
.x17_c01395{left:202.320000px;}
.x26_c01395{left:211.680000px;}
.x19_c01395{left:213.120000px;}
.x11_c01395{left:234.720000px;}
.xf_c01395{left:246.240000px;}
.x22_c01395{left:254.880000px;}
.x15_c01395{left:257.040000px;}
.x27_c01395{left:264.240000px;}
.x1b_c01395{left:266.400000px;}
.x12_c01395{left:287.280000px;}
.x10_c01395{left:288.720000px;}
.x18_c01395{left:298.800000px;}
.x2e_c01395{left:307.440000px;}
.x28_c01395{left:308.880000px;}
.x13_c01395{left:330.480000px;}
.x16_c01395{left:342.000000px;}
.x2f_c01395{left:352.800000px;}
.x1e_c01395{left:362.160000px;}
.x29_c01395{left:393.120000px;}
.x23_c01395{left:394.560000px;}
.x1c_c01395{left:406.080000px;}
.x14_c01395{left:416.880000px;}
.x2a_c01395{left:437.040000px;}
.x24_c01395{left:448.560000px;}
.x1d_c01395{left:459.360000px;}
.x20_c01395{left:470.160000px;}
.x2b_c01395{left:491.040000px;}
.x21_c01395{left:501.840000px;}
.x25_c01395{left:554.400000px;}
.x1a_c01395{left:577.440000px;}
.x9_c01395{left:588.960000px;}
.x3a_c01395{left:607.680000px;}
.xb_c01395{left:609.120000px;}
.x7_c01395{left:611.280000px;}
.x4_c01395{left:622.080000px;}
.x36_c01395{left:640.080000px;}
.x33_c01395{left:641.520000px;}
.x1_c01395{left:642.960000px;}
.x34_c01395{left:673.920000px;}
.x2_c01395{left:675.360000px;}
.x5_c01395{left:676.800000px;}
.x39_c01395{left:684.000000px;}
.x32_c01395{left:689.040000px;}
.x35_c01395{left:706.320000px;}
.x3_c01395{left:709.200000px;}
.x37_c01395{left:716.400000px;}
.xa_c01395{left:717.840000px;}
.x6_c01395{left:719.280000px;}
.x38_c01395{left:736.560000px;}
.x8_c01395{left:739.440000px;}
@media print{
.v1_c01395{vertical-align:-2.560000pt;}
.v0_c01395{vertical-align:0.000000pt;}
.v2_c01395{vertical-align:7.680000pt;}
.ls0_c01395{letter-spacing:0.000000pt;}
.ws2_c01395{word-spacing:0.000000pt;}
.ws1_c01395{word-spacing:47.761067pt;}
.ws0_c01395{word-spacing:49.894400pt;}
.fse_c01395{font-size:28.160000pt;}
.fsd_c01395{font-size:30.720000pt;}
.fsf_c01395{font-size:33.280000pt;}
.fs8_c01395{font-size:38.400000pt;}
.fsc_c01395{font-size:40.960000pt;}
.fs5_c01395{font-size:43.520000pt;}
.fs3_c01395{font-size:46.080000pt;}
.fs1_c01395{font-size:48.640000pt;}
.fs0_c01395{font-size:51.200000pt;}
.fs7_c01395{font-size:53.760000pt;}
.fsa_c01395{font-size:56.320000pt;}
.fs6_c01395{font-size:58.880000pt;}
.fs2_c01395{font-size:61.440000pt;}
.fs4_c01395{font-size:64.000000pt;}
.fs9_c01395{font-size:66.560000pt;}
.fsb_c01395{font-size:69.120000pt;}
.fs10_c01395{font-size:79.360000pt;}
.y0_c01395{bottom:0.000000pt;}
.y5f_c01395{bottom:17.920000pt;}
.y60_c01395{bottom:20.480000pt;}
.y5e_c01395{bottom:21.120000pt;}
.y7a_c01395{bottom:22.400000pt;}
.y79_c01395{bottom:23.040000pt;}
.y5c_c01395{bottom:56.320000pt;}
.y5b_c01395{bottom:58.880000pt;}
.y5d_c01395{bottom:59.520000pt;}
.y77_c01395{bottom:60.160000pt;}
.y76_c01395{bottom:61.440000pt;}
.y78_c01395{bottom:63.360000pt;}
.y56_c01395{bottom:94.720000pt;}
.y57_c01395{bottom:96.000000pt;}
.y59_c01395{bottom:96.640000pt;}
.y5a_c01395{bottom:97.280000pt;}
.y58_c01395{bottom:97.920000pt;}
.y55_c01395{bottom:98.560000pt;}
.y72_c01395{bottom:99.840000pt;}
.y75_c01395{bottom:101.120000pt;}
.y73_c01395{bottom:101.760000pt;}
.y74_c01395{bottom:102.400000pt;}
.y54_c01395{bottom:128.000000pt;}
.y53_c01395{bottom:136.960000pt;}
.y51_c01395{bottom:181.120000pt;}
.y52_c01395{bottom:181.760000pt;}
.y50_c01395{bottom:184.960000pt;}
.y71_c01395{bottom:186.240000pt;}
.y4b_c01395{bottom:218.880000pt;}
.y4c_c01395{bottom:220.800000pt;}
.y4e_c01395{bottom:221.440000pt;}
.y4f_c01395{bottom:222.080000pt;}
.y4a_c01395{bottom:222.720000pt;}
.y4d_c01395{bottom:223.360000pt;}
.y70_c01395{bottom:224.000000pt;}
.y6f_c01395{bottom:224.640000pt;}
.y49_c01395{bottom:257.920000pt;}
.y48_c01395{bottom:259.200000pt;}
.y47_c01395{bottom:261.120000pt;}
.y6d_c01395{bottom:262.400000pt;}
.y6e_c01395{bottom:263.040000pt;}
.y45_c01395{bottom:295.680000pt;}
.y46_c01395{bottom:297.600000pt;}
.y6b_c01395{bottom:298.880000pt;}
.y44_c01395{bottom:299.520000pt;}
.y6c_c01395{bottom:300.160000pt;}
.y43_c01395{bottom:334.720000pt;}
.y69_c01395{bottom:337.920000pt;}
.y42_c01395{bottom:338.560000pt;}
.y6a_c01395{bottom:339.840000pt;}
.y40_c01395{bottom:374.400000pt;}
.y3f_c01395{bottom:375.040000pt;}
.y3e_c01395{bottom:376.320000pt;}
.y41_c01395{bottom:376.960000pt;}
.y68_c01395{bottom:378.240000pt;}
.y3d_c01395{bottom:407.040000pt;}
.y3a_c01395{bottom:412.800000pt;}
.y38_c01395{bottom:413.440000pt;}
.y39_c01395{bottom:414.720000pt;}
.y37_c01395{bottom:415.360000pt;}
.y3b_c01395{bottom:416.000000pt;}
.y67_c01395{bottom:416.640000pt;}
.y3c_c01395{bottom:417.280000pt;}
.y36_c01395{bottom:451.200000pt;}
.y35_c01395{bottom:451.840000pt;}
.y34_c01395{bottom:453.120000pt;}
.y32_c01395{bottom:490.240000pt;}
.y31_c01395{bottom:490.880000pt;}
.y30_c01395{bottom:491.520000pt;}
.y66_c01395{bottom:492.160000pt;}
.y33_c01395{bottom:493.440000pt;}
.y2d_c01395{bottom:529.280000pt;}
.y2c_c01395{bottom:529.920000pt;}
.y2e_c01395{bottom:530.560000pt;}
.y2f_c01395{bottom:531.200000pt;}
.y65_c01395{bottom:531.840000pt;}
.y2b_c01395{bottom:566.400000pt;}
.y29_c01395{bottom:567.680000pt;}
.y64_c01395{bottom:568.320000pt;}
.y2a_c01395{bottom:568.960000pt;}
.y28_c01395{bottom:570.240000pt;}
.y26_c01395{bottom:604.800000pt;}
.y27_c01395{bottom:606.720000pt;}
.y63_c01395{bottom:608.000000pt;}
.y25_c01395{bottom:608.640000pt;}
.y23_c01395{bottom:643.840000pt;}
.y24_c01395{bottom:644.480000pt;}
.y62_c01395{bottom:645.120000pt;}
.y22_c01395{bottom:647.040000pt;}
.y10_c01395{bottom:681.600000pt;}
.y21_c01395{bottom:682.240000pt;}
.yf_c01395{bottom:682.880000pt;}
.y11_c01395{bottom:683.520000pt;}
.yd_c01395{bottom:720.000000pt;}
.ye_c01395{bottom:721.280000pt;}
.yc_c01395{bottom:721.920000pt;}
.yb_c01395{bottom:757.760000pt;}
.y9_c01395{bottom:758.400000pt;}
.ya_c01395{bottom:759.040000pt;}
.y1e_c01395{bottom:759.680000pt;}
.y20_c01395{bottom:760.960000pt;}
.y1f_c01395{bottom:761.600000pt;}
.y8_c01395{bottom:794.880000pt;}
.y7_c01395{bottom:795.520000pt;}
.y1d_c01395{bottom:796.160000pt;}
.y1c_c01395{bottom:798.080000pt;}
.y5_c01395{bottom:833.280000pt;}
.y6_c01395{bottom:833.920000pt;}
.y1a_c01395{bottom:834.560000pt;}
.y1b_c01395{bottom:835.200000pt;}
.y19_c01395{bottom:836.480000pt;}
.y3_c01395{bottom:871.680000pt;}
.y2_c01395{bottom:872.320000pt;}
.y16_c01395{bottom:872.960000pt;}
.y18_c01395{bottom:873.600000pt;}
.y4_c01395{bottom:874.240000pt;}
.y15_c01395{bottom:874.880000pt;}
.y17_c01395{bottom:875.520000pt;}
.y1_c01395{bottom:911.360000pt;}
.y12_c01395{bottom:913.280000pt;}
.y14_c01395{bottom:913.920000pt;}
.y13_c01395{bottom:915.840000pt;}
.y61_c01395{bottom:972.160000pt;}
.h10_c01395{height:25.341250pt;}
.hf_c01395{height:27.645000pt;}
.h11_c01395{height:29.948750pt;}
.ha_c01395{height:34.556250pt;}
.he_c01395{height:36.860000pt;}
.h7_c01395{height:39.163750pt;}
.h5_c01395{height:41.467500pt;}
.h3_c01395{height:43.771250pt;}
.h2_c01395{height:46.075000pt;}
.h9_c01395{height:48.378750pt;}
.h13_c01395{height:49.147500pt;}
.hc_c01395{height:50.682500pt;}
.h8_c01395{height:52.986250pt;}
.h4_c01395{height:55.290000pt;}
.h6_c01395{height:57.593750pt;}
.hb_c01395{height:59.897500pt;}
.hd_c01395{height:62.201250pt;}
.h12_c01395{height:71.416250pt;}
.h1_c01395{height:1023.333333pt;}
.h0_c01395{height:1023.360000pt;}
.w0_c01395{width:694.400000pt;}
.w1_c01395{width:694.666667pt;}
.x0_c01395{left:0.000000pt;}
.xc_c01395{left:55.040000pt;}
.x2d_c01395{left:56.320000pt;}
.xd_c01395{left:101.760000pt;}
.x30_c01395{left:103.040000pt;}
.x2c_c01395{left:150.400000pt;}
.x31_c01395{left:168.320000pt;}
.xe_c01395{left:169.600000pt;}
.x1f_c01395{left:178.560000pt;}
.x17_c01395{left:179.840000pt;}
.x26_c01395{left:188.160000pt;}
.x19_c01395{left:189.440000pt;}
.x11_c01395{left:208.640000pt;}
.xf_c01395{left:218.880000pt;}
.x22_c01395{left:226.560000pt;}
.x15_c01395{left:228.480000pt;}
.x27_c01395{left:234.880000pt;}
.x1b_c01395{left:236.800000pt;}
.x12_c01395{left:255.360000pt;}
.x10_c01395{left:256.640000pt;}
.x18_c01395{left:265.600000pt;}
.x2e_c01395{left:273.280000pt;}
.x28_c01395{left:274.560000pt;}
.x13_c01395{left:293.760000pt;}
.x16_c01395{left:304.000000pt;}
.x2f_c01395{left:313.600000pt;}
.x1e_c01395{left:321.920000pt;}
.x29_c01395{left:349.440000pt;}
.x23_c01395{left:350.720000pt;}
.x1c_c01395{left:360.960000pt;}
.x14_c01395{left:370.560000pt;}
.x2a_c01395{left:388.480000pt;}
.x24_c01395{left:398.720000pt;}
.x1d_c01395{left:408.320000pt;}
.x20_c01395{left:417.920000pt;}
.x2b_c01395{left:436.480000pt;}
.x21_c01395{left:446.080000pt;}
.x25_c01395{left:492.800000pt;}
.x1a_c01395{left:513.280000pt;}
.x9_c01395{left:523.520000pt;}
.x3a_c01395{left:540.160000pt;}
.xb_c01395{left:541.440000pt;}
.x7_c01395{left:543.360000pt;}
.x4_c01395{left:552.960000pt;}
.x36_c01395{left:568.960000pt;}
.x33_c01395{left:570.240000pt;}
.x1_c01395{left:571.520000pt;}
.x34_c01395{left:599.040000pt;}
.x2_c01395{left:600.320000pt;}
.x5_c01395{left:601.600000pt;}
.x39_c01395{left:608.000000pt;}
.x32_c01395{left:612.480000pt;}
.x35_c01395{left:627.840000pt;}
.x3_c01395{left:630.400000pt;}
.x37_c01395{left:636.800000pt;}
.xa_c01395{left:638.080000pt;}
.x6_c01395{left:639.360000pt;}
.x38_c01395{left:654.720000pt;}
.x8_c01395{left:657.280000pt;}
}





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

.ir_c01396:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01396{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01396;src:url('chunks/assets/font_1ec061861fa147782226660a.woff2')format("woff");}.ff1_c01396{font-family:ff1_c01396;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m42_c01396{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m46_c01396{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m45_c01396{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);}
.m3a_c01396{transform:matrix(0.233425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233425,0.000000,0.000000,0.250000,0,0);}
.m48_c01396{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m43_c01396{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m31_c01396{transform:matrix(0.239600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239600,0.000000,0.000000,0.250000,0,0);}
.me_c01396{transform:matrix(0.244150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244150,0.000000,0.000000,0.250000,0,0);}
.m1f_c01396{transform:matrix(0.244650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244650,0.000000,0.000000,0.250000,0,0);}
.m2b_c01396{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01396{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);}
.m32_c01396{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);}
.m2e_c01396{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);}
.m3d_c01396{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m7_c01396{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m15_c01396{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);}
.m47_c01396{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);}
.m2d_c01396{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01396{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m17_c01396{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m22_c01396{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_c01396{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m39_c01396{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m9_c01396{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m44_c01396{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m12_c01396{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01396{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01396{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m28_c01396{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m49_c01396{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01396{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mc_c01396{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m37_c01396{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m24_c01396{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m41_c01396{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m35_c01396{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m18_c01396{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mb_c01396{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m6_c01396{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m40_c01396{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);}
.m4a_c01396{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);}
.m3f_c01396{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m13_c01396{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);}
.m36_c01396{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01396{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m11_c01396{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m25_c01396{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);}
.m33_c01396{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m8_c01396{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_c01396{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m29_c01396{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m16_c01396{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);}
.m2_c01396{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);}
.m1c_c01396{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m1_c01396{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m27_c01396{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m0_c01396{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);}
.m4_c01396{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.mf_c01396{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);}
.m10_c01396{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.ma_c01396{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.md_c01396{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);}
.m1a_c01396{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m34_c01396{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);}
.m30_c01396{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m5_c01396{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m19_c01396{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m21_c01396{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m26_c01396{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01396{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01396{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);}
.m38_c01396{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01396{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m20_c01396{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01396{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.v0_c01396{vertical-align:0.000000px;}
.ls0_c01396{letter-spacing:0.000000px;}
.sc__c01396{text-shadow:none;}
.sc0_c01396{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01396{-webkit-text-stroke:0px transparent;}
.sc0_c01396{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01396{word-spacing:0.000000px;}
.ws0_c01396{word-spacing:6.727553px;}
.fc0_c01396{color:transparent;}
.fsb_c01396{font-size:23.040000px;}
.fsc_c01396{font-size:34.560000px;}
.fsa_c01396{font-size:37.440000px;}
.fs0_c01396{font-size:46.080000px;}
.fs9_c01396{font-size:48.960000px;}
.fs4_c01396{font-size:51.840000px;}
.fs8_c01396{font-size:54.720000px;}
.fs3_c01396{font-size:57.600000px;}
.fs1_c01396{font-size:60.480000px;}
.fs6_c01396{font-size:63.360000px;}
.fse_c01396{font-size:66.240000px;}
.fsd_c01396{font-size:69.120000px;}
.fs7_c01396{font-size:72.000000px;}
.fs5_c01396{font-size:74.880000px;}
.fs2_c01396{font-size:77.760000px;}
.y0_c01396{bottom:0.000000px;}
.y51_c01396{bottom:7.200000px;}
.y50_c01396{bottom:10.800000px;}
.y80_c01396{bottom:13.680000px;}
.y7f_c01396{bottom:14.400000px;}
.y81_c01396{bottom:15.120000px;}
.y4f_c01396{bottom:48.960000px;}
.y4e_c01396{bottom:52.560000px;}
.y7c_c01396{bottom:56.160000px;}
.y7b_c01396{bottom:57.600000px;}
.y7e_c01396{bottom:58.320000px;}
.y7d_c01396{bottom:59.040000px;}
.y4c_c01396{bottom:92.160000px;}
.y4d_c01396{bottom:93.600000px;}
.y4b_c01396{bottom:95.760000px;}
.y7a_c01396{bottom:97.200000px;}
.y79_c01396{bottom:97.920000px;}
.y4a_c01396{bottom:136.080000px;}
.y49_c01396{bottom:139.680000px;}
.y77_c01396{bottom:140.400000px;}
.y76_c01396{bottom:141.120000px;}
.y78_c01396{bottom:141.840000px;}
.y45_c01396{bottom:180.000000px;}
.y48_c01396{bottom:181.440000px;}
.y44_c01396{bottom:182.160000px;}
.y46_c01396{bottom:182.880000px;}
.y47_c01396{bottom:183.600000px;}
.y75_c01396{bottom:184.320000px;}
.y73_c01396{bottom:185.040000px;}
.y74_c01396{bottom:186.480000px;}
.y41_c01396{bottom:223.200000px;}
.y43_c01396{bottom:223.920000px;}
.y40_c01396{bottom:225.360000px;}
.y42_c01396{bottom:226.800000px;}
.y70_c01396{bottom:227.520000px;}
.y6f_c01396{bottom:228.240000px;}
.y72_c01396{bottom:228.960000px;}
.y71_c01396{bottom:229.680000px;}
.y3d_c01396{bottom:265.680000px;}
.y3f_c01396{bottom:267.840000px;}
.y3c_c01396{bottom:269.280000px;}
.y3e_c01396{bottom:270.000000px;}
.y6c_c01396{bottom:270.720000px;}
.y6e_c01396{bottom:271.440000px;}
.y6d_c01396{bottom:273.600000px;}
.y37_c01396{bottom:309.600000px;}
.y38_c01396{bottom:311.760000px;}
.y3b_c01396{bottom:312.480000px;}
.y36_c01396{bottom:313.920000px;}
.y39_c01396{bottom:314.640000px;}
.y3a_c01396{bottom:315.360000px;}
.y6b_c01396{bottom:316.800000px;}
.y35_c01396{bottom:353.520000px;}
.y34_c01396{bottom:357.120000px;}
.y6a_c01396{bottom:357.840000px;}
.y31_c01396{bottom:396.720000px;}
.y33_c01396{bottom:398.160000px;}
.y32_c01396{bottom:398.880000px;}
.y69_c01396{bottom:399.600000px;}
.y30_c01396{bottom:401.040000px;}
.y2b_c01396{bottom:440.640000px;}
.y2f_c01396{bottom:441.360000px;}
.y2c_c01396{bottom:442.800000px;}
.y2a_c01396{bottom:443.520000px;}
.y2d_c01396{bottom:444.960000px;}
.y2e_c01396{bottom:445.680000px;}
.y29_c01396{bottom:478.080000px;}
.y26_c01396{bottom:484.560000px;}
.y28_c01396{bottom:485.280000px;}
.y68_c01396{bottom:486.720000px;}
.y27_c01396{bottom:487.440000px;}
.y25_c01396{bottom:488.160000px;}
.y67_c01396{bottom:488.880000px;}
.y24_c01396{bottom:527.760000px;}
.y66_c01396{bottom:529.200000px;}
.y23_c01396{bottom:529.920000px;}
.y22_c01396{bottom:571.680000px;}
.y64_c01396{bottom:572.400000px;}
.y65_c01396{bottom:573.120000px;}
.y21_c01396{bottom:573.840000px;}
.y1d_c01396{bottom:614.160000px;}
.y63_c01396{bottom:614.880000px;}
.y20_c01396{bottom:615.600000px;}
.y1c_c01396{bottom:616.320000px;}
.y1e_c01396{bottom:617.040000px;}
.y1f_c01396{bottom:617.760000px;}
.y1b_c01396{bottom:656.640000px;}
.y62_c01396{bottom:657.360000px;}
.y61_c01396{bottom:658.800000px;}
.y1a_c01396{bottom:659.520000px;}
.y19_c01396{bottom:700.560000px;}
.y60_c01396{bottom:701.280000px;}
.y18_c01396{bottom:702.720000px;}
.y17_c01396{bottom:743.760000px;}
.y5f_c01396{bottom:745.920000px;}
.y16_c01396{bottom:746.640000px;}
.y15_c01396{bottom:786.240000px;}
.y5d_c01396{bottom:786.960000px;}
.y5e_c01396{bottom:787.680000px;}
.y14_c01396{bottom:789.120000px;}
.y12_c01396{bottom:790.560000px;}
.y13_c01396{bottom:791.280000px;}
.y11_c01396{bottom:830.160000px;}
.y5c_c01396{bottom:830.880000px;}
.yf_c01396{bottom:832.320000px;}
.ye_c01396{bottom:833.040000px;}
.y10_c01396{bottom:834.480000px;}
.yd_c01396{bottom:873.360000px;}
.ya_c01396{bottom:874.080000px;}
.y5b_c01396{bottom:875.520000px;}
.y9_c01396{bottom:876.240000px;}
.yc_c01396{bottom:876.960000px;}
.yb_c01396{bottom:877.680000px;}
.y58_c01396{bottom:916.560000px;}
.y8_c01396{bottom:917.280000px;}
.y59_c01396{bottom:918.000000px;}
.y5a_c01396{bottom:918.720000px;}
.y7_c01396{bottom:919.440000px;}
.y6_c01396{bottom:959.760000px;}
.y55_c01396{bottom:960.480000px;}
.y57_c01396{bottom:961.920000px;}
.y4_c01396{bottom:962.640000px;}
.y56_c01396{bottom:963.360000px;}
.y5_c01396{bottom:964.800000px;}
.y53_c01396{bottom:1002.240000px;}
.y3_c01396{bottom:1002.960000px;}
.y54_c01396{bottom:1005.840000px;}
.y2_c01396{bottom:1006.560000px;}
.y1_c01396{bottom:1052.640000px;}
.y52_c01396{bottom:1103.760000px;}
.hd_c01396{height:20.733750px;}
.he_c01396{height:31.100625px;}
.hc_c01396{height:33.692344px;}
.h2_c01396{height:41.467500px;}
.hb_c01396{height:44.059219px;}
.h6_c01396{height:46.650937px;}
.ha_c01396{height:49.242656px;}
.h5_c01396{height:51.834375px;}
.h3_c01396{height:54.426094px;}
.h8_c01396{height:57.017812px;}
.h10_c01396{height:59.609531px;}
.hf_c01396{height:62.201250px;}
.h9_c01396{height:64.792969px;}
.h7_c01396{height:67.384687px;}
.h4_c01396{height:69.976406px;}
.h0_c01396{height:1172.880000px;}
.h1_c01396{height:1173.000000px;}
.w0_c01396{width:781.920000px;}
.w1_c01396{width:782.250000px;}
.x0_c01396{left:0.000000px;}
.x3_c01396{left:59.760000px;}
.x1c_c01396{left:61.920000px;}
.x1_c01396{left:112.320000px;}
.xe_c01396{left:121.680000px;}
.xa_c01396{left:123.120000px;}
.x2_c01396{left:167.040000px;}
.x4_c01396{left:197.280000px;}
.xc_c01396{left:198.720000px;}
.xb_c01396{left:208.800000px;}
.x6_c01396{left:231.120000px;}
.x5_c01396{left:241.920000px;}
.x7_c01396{left:253.440000px;}
.xf_c01396{left:263.520000px;}
.xd_c01396{left:295.920000px;}
.x10_c01396{left:307.440000px;}
.x8_c01396{left:339.120000px;}
.x1a_c01396{left:347.760000px;}
.x11_c01396{left:349.200000px;}
.x16_c01396{left:381.600000px;}
.x13_c01396{left:391.680000px;}
.x9_c01396{left:393.120000px;}
.x12_c01396{left:403.200000px;}
.x1b_c01396{left:424.080000px;}
.x17_c01396{left:434.160000px;}
.x14_c01396{left:444.240000px;}
.x18_c01396{left:477.360000px;}
.x19_c01396{left:519.840000px;}
.x15_c01396{left:531.360000px;}
.x2c_c01396{left:583.920000px;}
.x2a_c01396{left:585.360000px;}
.x2d_c01396{left:604.800000px;}
.x1e_c01396{left:606.960000px;}
.x26_c01396{left:617.760000px;}
.x28_c01396{left:637.920000px;}
.x20_c01396{left:639.360000px;}
.x23_c01396{left:641.520000px;}
.x29_c01396{left:649.440000px;}
.x1d_c01396{left:654.480000px;}
.x2b_c01396{left:671.040000px;}
.x24_c01396{left:672.480000px;}
.x21_c01396{left:673.920000px;}
.x2e_c01396{left:704.160000px;}
.x27_c01396{left:713.520000px;}
.x25_c01396{left:714.960000px;}
.x1f_c01396{left:717.120000px;}
.x22_c01396{left:736.560000px;}
@media print{
.v0_c01396{vertical-align:0.000000pt;}
.ls0_c01396{letter-spacing:0.000000pt;}
.ws1_c01396{word-spacing:0.000000pt;}
.ws0_c01396{word-spacing:5.980047pt;}
.fsb_c01396{font-size:20.480000pt;}
.fsc_c01396{font-size:30.720000pt;}
.fsa_c01396{font-size:33.280000pt;}
.fs0_c01396{font-size:40.960000pt;}
.fs9_c01396{font-size:43.520000pt;}
.fs4_c01396{font-size:46.080000pt;}
.fs8_c01396{font-size:48.640000pt;}
.fs3_c01396{font-size:51.200000pt;}
.fs1_c01396{font-size:53.760000pt;}
.fs6_c01396{font-size:56.320000pt;}
.fse_c01396{font-size:58.880000pt;}
.fsd_c01396{font-size:61.440000pt;}
.fs7_c01396{font-size:64.000000pt;}
.fs5_c01396{font-size:66.560000pt;}
.fs2_c01396{font-size:69.120000pt;}
.y0_c01396{bottom:0.000000pt;}
.y51_c01396{bottom:6.400000pt;}
.y50_c01396{bottom:9.600000pt;}
.y80_c01396{bottom:12.160000pt;}
.y7f_c01396{bottom:12.800000pt;}
.y81_c01396{bottom:13.440000pt;}
.y4f_c01396{bottom:43.520000pt;}
.y4e_c01396{bottom:46.720000pt;}
.y7c_c01396{bottom:49.920000pt;}
.y7b_c01396{bottom:51.200000pt;}
.y7e_c01396{bottom:51.840000pt;}
.y7d_c01396{bottom:52.480000pt;}
.y4c_c01396{bottom:81.920000pt;}
.y4d_c01396{bottom:83.200000pt;}
.y4b_c01396{bottom:85.120000pt;}
.y7a_c01396{bottom:86.400000pt;}
.y79_c01396{bottom:87.040000pt;}
.y4a_c01396{bottom:120.960000pt;}
.y49_c01396{bottom:124.160000pt;}
.y77_c01396{bottom:124.800000pt;}
.y76_c01396{bottom:125.440000pt;}
.y78_c01396{bottom:126.080000pt;}
.y45_c01396{bottom:160.000000pt;}
.y48_c01396{bottom:161.280000pt;}
.y44_c01396{bottom:161.920000pt;}
.y46_c01396{bottom:162.560000pt;}
.y47_c01396{bottom:163.200000pt;}
.y75_c01396{bottom:163.840000pt;}
.y73_c01396{bottom:164.480000pt;}
.y74_c01396{bottom:165.760000pt;}
.y41_c01396{bottom:198.400000pt;}
.y43_c01396{bottom:199.040000pt;}
.y40_c01396{bottom:200.320000pt;}
.y42_c01396{bottom:201.600000pt;}
.y70_c01396{bottom:202.240000pt;}
.y6f_c01396{bottom:202.880000pt;}
.y72_c01396{bottom:203.520000pt;}
.y71_c01396{bottom:204.160000pt;}
.y3d_c01396{bottom:236.160000pt;}
.y3f_c01396{bottom:238.080000pt;}
.y3c_c01396{bottom:239.360000pt;}
.y3e_c01396{bottom:240.000000pt;}
.y6c_c01396{bottom:240.640000pt;}
.y6e_c01396{bottom:241.280000pt;}
.y6d_c01396{bottom:243.200000pt;}
.y37_c01396{bottom:275.200000pt;}
.y38_c01396{bottom:277.120000pt;}
.y3b_c01396{bottom:277.760000pt;}
.y36_c01396{bottom:279.040000pt;}
.y39_c01396{bottom:279.680000pt;}
.y3a_c01396{bottom:280.320000pt;}
.y6b_c01396{bottom:281.600000pt;}
.y35_c01396{bottom:314.240000pt;}
.y34_c01396{bottom:317.440000pt;}
.y6a_c01396{bottom:318.080000pt;}
.y31_c01396{bottom:352.640000pt;}
.y33_c01396{bottom:353.920000pt;}
.y32_c01396{bottom:354.560000pt;}
.y69_c01396{bottom:355.200000pt;}
.y30_c01396{bottom:356.480000pt;}
.y2b_c01396{bottom:391.680000pt;}
.y2f_c01396{bottom:392.320000pt;}
.y2c_c01396{bottom:393.600000pt;}
.y2a_c01396{bottom:394.240000pt;}
.y2d_c01396{bottom:395.520000pt;}
.y2e_c01396{bottom:396.160000pt;}
.y29_c01396{bottom:424.960000pt;}
.y26_c01396{bottom:430.720000pt;}
.y28_c01396{bottom:431.360000pt;}
.y68_c01396{bottom:432.640000pt;}
.y27_c01396{bottom:433.280000pt;}
.y25_c01396{bottom:433.920000pt;}
.y67_c01396{bottom:434.560000pt;}
.y24_c01396{bottom:469.120000pt;}
.y66_c01396{bottom:470.400000pt;}
.y23_c01396{bottom:471.040000pt;}
.y22_c01396{bottom:508.160000pt;}
.y64_c01396{bottom:508.800000pt;}
.y65_c01396{bottom:509.440000pt;}
.y21_c01396{bottom:510.080000pt;}
.y1d_c01396{bottom:545.920000pt;}
.y63_c01396{bottom:546.560000pt;}
.y20_c01396{bottom:547.200000pt;}
.y1c_c01396{bottom:547.840000pt;}
.y1e_c01396{bottom:548.480000pt;}
.y1f_c01396{bottom:549.120000pt;}
.y1b_c01396{bottom:583.680000pt;}
.y62_c01396{bottom:584.320000pt;}
.y61_c01396{bottom:585.600000pt;}
.y1a_c01396{bottom:586.240000pt;}
.y19_c01396{bottom:622.720000pt;}
.y60_c01396{bottom:623.360000pt;}
.y18_c01396{bottom:624.640000pt;}
.y17_c01396{bottom:661.120000pt;}
.y5f_c01396{bottom:663.040000pt;}
.y16_c01396{bottom:663.680000pt;}
.y15_c01396{bottom:698.880000pt;}
.y5d_c01396{bottom:699.520000pt;}
.y5e_c01396{bottom:700.160000pt;}
.y14_c01396{bottom:701.440000pt;}
.y12_c01396{bottom:702.720000pt;}
.y13_c01396{bottom:703.360000pt;}
.y11_c01396{bottom:737.920000pt;}
.y5c_c01396{bottom:738.560000pt;}
.yf_c01396{bottom:739.840000pt;}
.ye_c01396{bottom:740.480000pt;}
.y10_c01396{bottom:741.760000pt;}
.yd_c01396{bottom:776.320000pt;}
.ya_c01396{bottom:776.960000pt;}
.y5b_c01396{bottom:778.240000pt;}
.y9_c01396{bottom:778.880000pt;}
.yc_c01396{bottom:779.520000pt;}
.yb_c01396{bottom:780.160000pt;}
.y58_c01396{bottom:814.720000pt;}
.y8_c01396{bottom:815.360000pt;}
.y59_c01396{bottom:816.000000pt;}
.y5a_c01396{bottom:816.640000pt;}
.y7_c01396{bottom:817.280000pt;}
.y6_c01396{bottom:853.120000pt;}
.y55_c01396{bottom:853.760000pt;}
.y57_c01396{bottom:855.040000pt;}
.y4_c01396{bottom:855.680000pt;}
.y56_c01396{bottom:856.320000pt;}
.y5_c01396{bottom:857.600000pt;}
.y53_c01396{bottom:890.880000pt;}
.y3_c01396{bottom:891.520000pt;}
.y54_c01396{bottom:894.080000pt;}
.y2_c01396{bottom:894.720000pt;}
.y1_c01396{bottom:935.680000pt;}
.y52_c01396{bottom:981.120000pt;}
.hd_c01396{height:18.430000pt;}
.he_c01396{height:27.645000pt;}
.hc_c01396{height:29.948750pt;}
.h2_c01396{height:36.860000pt;}
.hb_c01396{height:39.163750pt;}
.h6_c01396{height:41.467500pt;}
.ha_c01396{height:43.771250pt;}
.h5_c01396{height:46.075000pt;}
.h3_c01396{height:48.378750pt;}
.h8_c01396{height:50.682500pt;}
.h10_c01396{height:52.986250pt;}
.hf_c01396{height:55.290000pt;}
.h9_c01396{height:57.593750pt;}
.h7_c01396{height:59.897500pt;}
.h4_c01396{height:62.201250pt;}
.h0_c01396{height:1042.560000pt;}
.h1_c01396{height:1042.666667pt;}
.w0_c01396{width:695.040000pt;}
.w1_c01396{width:695.333333pt;}
.x0_c01396{left:0.000000pt;}
.x3_c01396{left:53.120000pt;}
.x1c_c01396{left:55.040000pt;}
.x1_c01396{left:99.840000pt;}
.xe_c01396{left:108.160000pt;}
.xa_c01396{left:109.440000pt;}
.x2_c01396{left:148.480000pt;}
.x4_c01396{left:175.360000pt;}
.xc_c01396{left:176.640000pt;}
.xb_c01396{left:185.600000pt;}
.x6_c01396{left:205.440000pt;}
.x5_c01396{left:215.040000pt;}
.x7_c01396{left:225.280000pt;}
.xf_c01396{left:234.240000pt;}
.xd_c01396{left:263.040000pt;}
.x10_c01396{left:273.280000pt;}
.x8_c01396{left:301.440000pt;}
.x1a_c01396{left:309.120000pt;}
.x11_c01396{left:310.400000pt;}
.x16_c01396{left:339.200000pt;}
.x13_c01396{left:348.160000pt;}
.x9_c01396{left:349.440000pt;}
.x12_c01396{left:358.400000pt;}
.x1b_c01396{left:376.960000pt;}
.x17_c01396{left:385.920000pt;}
.x14_c01396{left:394.880000pt;}
.x18_c01396{left:424.320000pt;}
.x19_c01396{left:462.080000pt;}
.x15_c01396{left:472.320000pt;}
.x2c_c01396{left:519.040000pt;}
.x2a_c01396{left:520.320000pt;}
.x2d_c01396{left:537.600000pt;}
.x1e_c01396{left:539.520000pt;}
.x26_c01396{left:549.120000pt;}
.x28_c01396{left:567.040000pt;}
.x20_c01396{left:568.320000pt;}
.x23_c01396{left:570.240000pt;}
.x29_c01396{left:577.280000pt;}
.x1d_c01396{left:581.760000pt;}
.x2b_c01396{left:596.480000pt;}
.x24_c01396{left:597.760000pt;}
.x21_c01396{left:599.040000pt;}
.x2e_c01396{left:625.920000pt;}
.x27_c01396{left:634.240000pt;}
.x25_c01396{left:635.520000pt;}
.x1f_c01396{left:637.440000pt;}
.x22_c01396{left:654.720000pt;}
}





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

.ir_c01397:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01397{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01397;src:url('chunks/assets/font_8be37ae0ec6138da9e0f202c.woff2')format("woff");}.ff1_c01397{font-family:ff1_c01397;line-height:1.109863;font-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_c01397{transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);}
.ma_c01397{transform:matrix(0.237650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237650,0.000000,0.000000,0.250000,0,0);}
.me_c01397{transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);}
.m9_c01397{transform:matrix(0.246300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246300,0.000000,0.000000,0.250000,0,0);}
.m25_c01397{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m20_c01397{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m14_c01397{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m8_c01397{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m10_c01397{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m2_c01397{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);}
.m31_c01397{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m6_c01397{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m15_c01397{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01397{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m12_c01397{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m19_c01397{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m24_c01397{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01397{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mc_c01397{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m28_c01397{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01397{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01397{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m0_c01397{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m18_c01397{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1_c01397{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m21_c01397{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m39_c01397{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m30_c01397{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m46_c01397{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m33_c01397{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m3_c01397{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01397{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);}
.m27_c01397{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);}
.m38_c01397{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m36_c01397{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);}
.m3d_c01397{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01397{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);}
.m42_c01397{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m37_c01397{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);}
.m32_c01397{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);}
.m44_c01397{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);}
.m13_c01397{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.md_c01397{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);}
.m3f_c01397{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m5_c01397{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_c01397{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m11_c01397{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);}
.m47_c01397{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m16_c01397{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);}
.m2d_c01397{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);}
.m1c_c01397{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);}
.m43_c01397{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);}
.m2b_c01397{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m4_c01397{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);}
.m40_c01397{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m7_c01397{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);}
.m49_c01397{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m29_c01397{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01397{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01397{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);}
.m3b_c01397{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01397{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m23_c01397{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);}
.m41_c01397{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);}
.m1e_c01397{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m26_c01397{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01397{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m22_c01397{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);}
.mf_c01397{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.mb_c01397{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);}
.m1a_c01397{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m35_c01397{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01397{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m34_c01397{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m45_c01397{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.v0_c01397{vertical-align:0.000000px;}
.v2_c01397{vertical-align:5.760000px;}
.v1_c01397{vertical-align:14.400000px;}
.ls0_c01397{letter-spacing:0.000000px;}
.sc__c01397{text-shadow:none;}
.sc0_c01397{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01397{-webkit-text-stroke:0px transparent;}
.sc0_c01397{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01397{word-spacing:0.000000px;}
.ws1_c01397{word-spacing:3.048000px;}
.ws0_c01397{word-spacing:19.854720px;}
.fc0_c01397{color:transparent;}
.fs10_c01397{font-size:34.560000px;}
.fs6_c01397{font-size:37.440000px;}
.fsf_c01397{font-size:40.320000px;}
.fsa_c01397{font-size:46.080000px;}
.fsd_c01397{font-size:48.960000px;}
.fs3_c01397{font-size:51.840000px;}
.fs0_c01397{font-size:54.720000px;}
.fs2_c01397{font-size:57.600000px;}
.fs7_c01397{font-size:60.480000px;}
.fsc_c01397{font-size:63.360000px;}
.fs9_c01397{font-size:66.240000px;}
.fs8_c01397{font-size:69.120000px;}
.fs1_c01397{font-size:72.000000px;}
.fs4_c01397{font-size:74.880000px;}
.fse_c01397{font-size:77.760000px;}
.fs5_c01397{font-size:83.520000px;}
.fsb_c01397{font-size:95.040000px;}
.y0_c01397{bottom:0.000000px;}
.y50_c01397{bottom:87.120000px;}
.y51_c01397{bottom:89.280000px;}
.y53_c01397{bottom:90.720000px;}
.y4e_c01397{bottom:91.440000px;}
.y4f_c01397{bottom:92.160000px;}
.y52_c01397{bottom:92.880000px;}
.y78_c01397{bottom:93.600000px;}
.y75_c01397{bottom:94.320000px;}
.y76_c01397{bottom:96.480000px;}
.y77_c01397{bottom:97.920000px;}
.y49_c01397{bottom:131.760000px;}
.y4a_c01397{bottom:133.200000px;}
.y48_c01397{bottom:134.640000px;}
.y4b_c01397{bottom:136.800000px;}
.y73_c01397{bottom:137.520000px;}
.y4c_c01397{bottom:138.240000px;}
.y4d_c01397{bottom:138.960000px;}
.y74_c01397{bottom:140.400000px;}
.y46_c01397{bottom:174.960000px;}
.y47_c01397{bottom:177.840000px;}
.y45_c01397{bottom:178.560000px;}
.y71_c01397{bottom:180.000000px;}
.y72_c01397{bottom:180.720000px;}
.y44_c01397{bottom:218.160000px;}
.y43_c01397{bottom:221.040000px;}
.y6f_c01397{bottom:223.200000px;}
.y70_c01397{bottom:224.640000px;}
.y3f_c01397{bottom:262.080000px;}
.y3e_c01397{bottom:264.960000px;}
.y40_c01397{bottom:265.680000px;}
.y41_c01397{bottom:266.400000px;}
.y6e_c01397{bottom:267.120000px;}
.y42_c01397{bottom:267.840000px;}
.y3d_c01397{bottom:304.560000px;}
.y3c_c01397{bottom:308.160000px;}
.y6b_c01397{bottom:309.600000px;}
.y6c_c01397{bottom:310.320000px;}
.y6d_c01397{bottom:312.480000px;}
.y38_c01397{bottom:348.480000px;}
.y3b_c01397{bottom:349.200000px;}
.y37_c01397{bottom:350.640000px;}
.y39_c01397{bottom:352.080000px;}
.y3a_c01397{bottom:352.800000px;}
.y36_c01397{bottom:391.680000px;}
.y33_c01397{bottom:393.840000px;}
.y69_c01397{bottom:394.560000px;}
.y34_c01397{bottom:395.280000px;}
.y35_c01397{bottom:396.000000px;}
.y6a_c01397{bottom:397.440000px;}
.y32_c01397{bottom:434.880000px;}
.y31_c01397{bottom:437.040000px;}
.y68_c01397{bottom:437.760000px;}
.y30_c01397{bottom:478.800000px;}
.y2f_c01397{bottom:479.520000px;}
.y2e_c01397{bottom:480.240000px;}
.y66_c01397{bottom:480.960000px;}
.y67_c01397{bottom:483.120000px;}
.y2c_c01397{bottom:522.720000px;}
.y64_c01397{bottom:524.880000px;}
.y2d_c01397{bottom:525.600000px;}
.y65_c01397{bottom:526.320000px;}
.y2b_c01397{bottom:565.920000px;}
.y2a_c01397{bottom:566.640000px;}
.y29_c01397{bottom:567.360000px;}
.y63_c01397{bottom:568.800000px;}
.y62_c01397{bottom:569.520000px;}
.y27_c01397{bottom:609.840000px;}
.y26_c01397{bottom:611.280000px;}
.y28_c01397{bottom:612.000000px;}
.y25_c01397{bottom:653.040000px;}
.y24_c01397{bottom:653.760000px;}
.y23_c01397{bottom:655.200000px;}
.y21_c01397{bottom:696.960000px;}
.y22_c01397{bottom:699.120000px;}
.y1e_c01397{bottom:727.920000px;}
.y1f_c01397{bottom:728.640000px;}
.y20_c01397{bottom:729.360000px;}
.y1d_c01397{bottom:730.800000px;}
.y61_c01397{bottom:771.120000px;}
.y1c_c01397{bottom:772.560000px;}
.y60_c01397{bottom:773.280000px;}
.y1b_c01397{bottom:774.000000px;}
.y1a_c01397{bottom:805.680000px;}
.y18_c01397{bottom:813.600000px;}
.y16_c01397{bottom:814.320000px;}
.y5f_c01397{bottom:815.040000px;}
.y17_c01397{bottom:815.760000px;}
.y5e_c01397{bottom:816.480000px;}
.y15_c01397{bottom:817.200000px;}
.y19_c01397{bottom:817.920000px;}
.y14_c01397{bottom:856.800000px;}
.y12_c01397{bottom:857.520000px;}
.y13_c01397{bottom:858.240000px;}
.y5d_c01397{bottom:858.960000px;}
.y11_c01397{bottom:859.680000px;}
.y56_c01397{bottom:860.400000px;}
.y10_c01397{bottom:899.280000px;}
.y5c_c01397{bottom:900.000000px;}
.yd_c01397{bottom:900.720000px;}
.yf_c01397{bottom:901.440000px;}
.y5b_c01397{bottom:902.160000px;}
.yc_c01397{bottom:902.880000px;}
.y55_c01397{bottom:903.600000px;}
.ye_c01397{bottom:905.040000px;}
.y5a_c01397{bottom:943.200000px;}
.y4_c01397{bottom:943.920000px;}
.y59_c01397{bottom:945.360000px;}
.yb_c01397{bottom:947.520000px;}
.y8_c01397{bottom:984.240000px;}
.y2_c01397{bottom:984.960000px;}
.y3_c01397{bottom:985.680000px;}
.y1_c01397{bottom:986.400000px;}
.y9_c01397{bottom:987.840000px;}
.ya_c01397{bottom:988.560000px;}
.y7_c01397{bottom:990.000000px;}
.y54_c01397{bottom:1028.880000px;}
.y6_c01397{bottom:1029.600000px;}
.y58_c01397{bottom:1030.320000px;}
.y5_c01397{bottom:1033.200000px;}
.y57_c01397{bottom:1102.320000px;}
.h12_c01397{height:31.100625px;}
.h8_c01397{height:33.692344px;}
.h11_c01397{height:36.284062px;}
.hc_c01397{height:41.467500px;}
.hf_c01397{height:44.059219px;}
.h5_c01397{height:46.650937px;}
.h2_c01397{height:49.242656px;}
.h4_c01397{height:51.834375px;}
.h9_c01397{height:54.426094px;}
.he_c01397{height:57.017812px;}
.hb_c01397{height:59.609531px;}
.ha_c01397{height:62.201250px;}
.h3_c01397{height:64.792969px;}
.h6_c01397{height:67.384687px;}
.h10_c01397{height:69.976406px;}
.h7_c01397{height:75.159844px;}
.hd_c01397{height:85.526719px;}
.h0_c01397{height:1155.600000px;}
.h1_c01397{height:1155.750000px;}
.w1_c01397{width:783.000000px;}
.w0_c01397{width:783.360000px;}
.x0_c01397{left:0.000000px;}
.x5_c01397{left:59.040000px;}
.x19_c01397{left:60.480000px;}
.x26_c01397{left:61.920000px;}
.x6_c01397{left:122.400000px;}
.x15_c01397{left:123.840000px;}
.x7_c01397{left:156.960000px;}
.x27_c01397{left:167.760000px;}
.x1a_c01397{left:187.920000px;}
.x16_c01397{left:198.000000px;}
.xb_c01397{left:209.520000px;}
.x1d_c01397{left:231.120000px;}
.x1b_c01397{left:241.200000px;}
.x1f_c01397{left:250.560000px;}
.x8_c01397{left:252.720000px;}
.xc_c01397{left:264.240000px;}
.x17_c01397{left:274.320000px;}
.x1e_c01397{left:283.680000px;}
.x1c_c01397{left:285.120000px;}
.x20_c01397{left:295.920000px;}
.x23_c01397{left:305.280000px;}
.x21_c01397{left:349.200000px;}
.xe_c01397{left:371.520000px;}
.x9_c01397{left:380.880000px;}
.xf_c01397{left:382.320000px;}
.x12_c01397{left:392.400000px;}
.xa_c01397{left:425.520000px;}
.x18_c01397{left:434.880000px;}
.x13_c01397{left:445.680000px;}
.x24_c01397{left:457.200000px;}
.xd_c01397{left:468.000000px;}
.x22_c01397{left:488.160000px;}
.x14_c01397{left:500.400000px;}
.x25_c01397{left:510.480000px;}
.x10_c01397{left:521.280000px;}
.x11_c01397{left:574.560000px;}
.x4_c01397{left:585.360000px;}
.x1_c01397{left:586.800000px;}
.x35_c01397{left:604.800000px;}
.x2_c01397{left:606.960000px;}
.x2f_c01397{left:617.760000px;}
.x2c_c01397{left:639.360000px;}
.x29_c01397{left:640.800000px;}
.x31_c01397{left:671.040000px;}
.x2d_c01397{left:672.480000px;}
.x2a_c01397{left:673.920000px;}
.x33_c01397{left:682.560000px;}
.x28_c01397{left:697.680000px;}
.x30_c01397{left:704.160000px;}
.x32_c01397{left:713.520000px;}
.x2e_c01397{left:715.680000px;}
.x3_c01397{left:717.120000px;}
.x34_c01397{left:734.400000px;}
.x2b_c01397{left:736.560000px;}
@media print{
.v0_c01397{vertical-align:0.000000pt;}
.v2_c01397{vertical-align:5.120000pt;}
.v1_c01397{vertical-align:12.800000pt;}
.ls0_c01397{letter-spacing:0.000000pt;}
.ws2_c01397{word-spacing:0.000000pt;}
.ws1_c01397{word-spacing:2.709333pt;}
.ws0_c01397{word-spacing:17.648640pt;}
.fs10_c01397{font-size:30.720000pt;}
.fs6_c01397{font-size:33.280000pt;}
.fsf_c01397{font-size:35.840000pt;}
.fsa_c01397{font-size:40.960000pt;}
.fsd_c01397{font-size:43.520000pt;}
.fs3_c01397{font-size:46.080000pt;}
.fs0_c01397{font-size:48.640000pt;}
.fs2_c01397{font-size:51.200000pt;}
.fs7_c01397{font-size:53.760000pt;}
.fsc_c01397{font-size:56.320000pt;}
.fs9_c01397{font-size:58.880000pt;}
.fs8_c01397{font-size:61.440000pt;}
.fs1_c01397{font-size:64.000000pt;}
.fs4_c01397{font-size:66.560000pt;}
.fse_c01397{font-size:69.120000pt;}
.fs5_c01397{font-size:74.240000pt;}
.fsb_c01397{font-size:84.480000pt;}
.y0_c01397{bottom:0.000000pt;}
.y50_c01397{bottom:77.440000pt;}
.y51_c01397{bottom:79.360000pt;}
.y53_c01397{bottom:80.640000pt;}
.y4e_c01397{bottom:81.280000pt;}
.y4f_c01397{bottom:81.920000pt;}
.y52_c01397{bottom:82.560000pt;}
.y78_c01397{bottom:83.200000pt;}
.y75_c01397{bottom:83.840000pt;}
.y76_c01397{bottom:85.760000pt;}
.y77_c01397{bottom:87.040000pt;}
.y49_c01397{bottom:117.120000pt;}
.y4a_c01397{bottom:118.400000pt;}
.y48_c01397{bottom:119.680000pt;}
.y4b_c01397{bottom:121.600000pt;}
.y73_c01397{bottom:122.240000pt;}
.y4c_c01397{bottom:122.880000pt;}
.y4d_c01397{bottom:123.520000pt;}
.y74_c01397{bottom:124.800000pt;}
.y46_c01397{bottom:155.520000pt;}
.y47_c01397{bottom:158.080000pt;}
.y45_c01397{bottom:158.720000pt;}
.y71_c01397{bottom:160.000000pt;}
.y72_c01397{bottom:160.640000pt;}
.y44_c01397{bottom:193.920000pt;}
.y43_c01397{bottom:196.480000pt;}
.y6f_c01397{bottom:198.400000pt;}
.y70_c01397{bottom:199.680000pt;}
.y3f_c01397{bottom:232.960000pt;}
.y3e_c01397{bottom:235.520000pt;}
.y40_c01397{bottom:236.160000pt;}
.y41_c01397{bottom:236.800000pt;}
.y6e_c01397{bottom:237.440000pt;}
.y42_c01397{bottom:238.080000pt;}
.y3d_c01397{bottom:270.720000pt;}
.y3c_c01397{bottom:273.920000pt;}
.y6b_c01397{bottom:275.200000pt;}
.y6c_c01397{bottom:275.840000pt;}
.y6d_c01397{bottom:277.760000pt;}
.y38_c01397{bottom:309.760000pt;}
.y3b_c01397{bottom:310.400000pt;}
.y37_c01397{bottom:311.680000pt;}
.y39_c01397{bottom:312.960000pt;}
.y3a_c01397{bottom:313.600000pt;}
.y36_c01397{bottom:348.160000pt;}
.y33_c01397{bottom:350.080000pt;}
.y69_c01397{bottom:350.720000pt;}
.y34_c01397{bottom:351.360000pt;}
.y35_c01397{bottom:352.000000pt;}
.y6a_c01397{bottom:353.280000pt;}
.y32_c01397{bottom:386.560000pt;}
.y31_c01397{bottom:388.480000pt;}
.y68_c01397{bottom:389.120000pt;}
.y30_c01397{bottom:425.600000pt;}
.y2f_c01397{bottom:426.240000pt;}
.y2e_c01397{bottom:426.880000pt;}
.y66_c01397{bottom:427.520000pt;}
.y67_c01397{bottom:429.440000pt;}
.y2c_c01397{bottom:464.640000pt;}
.y64_c01397{bottom:466.560000pt;}
.y2d_c01397{bottom:467.200000pt;}
.y65_c01397{bottom:467.840000pt;}
.y2b_c01397{bottom:503.040000pt;}
.y2a_c01397{bottom:503.680000pt;}
.y29_c01397{bottom:504.320000pt;}
.y63_c01397{bottom:505.600000pt;}
.y62_c01397{bottom:506.240000pt;}
.y27_c01397{bottom:542.080000pt;}
.y26_c01397{bottom:543.360000pt;}
.y28_c01397{bottom:544.000000pt;}
.y25_c01397{bottom:580.480000pt;}
.y24_c01397{bottom:581.120000pt;}
.y23_c01397{bottom:582.400000pt;}
.y21_c01397{bottom:619.520000pt;}
.y22_c01397{bottom:621.440000pt;}
.y1e_c01397{bottom:647.040000pt;}
.y1f_c01397{bottom:647.680000pt;}
.y20_c01397{bottom:648.320000pt;}
.y1d_c01397{bottom:649.600000pt;}
.y61_c01397{bottom:685.440000pt;}
.y1c_c01397{bottom:686.720000pt;}
.y60_c01397{bottom:687.360000pt;}
.y1b_c01397{bottom:688.000000pt;}
.y1a_c01397{bottom:716.160000pt;}
.y18_c01397{bottom:723.200000pt;}
.y16_c01397{bottom:723.840000pt;}
.y5f_c01397{bottom:724.480000pt;}
.y17_c01397{bottom:725.120000pt;}
.y5e_c01397{bottom:725.760000pt;}
.y15_c01397{bottom:726.400000pt;}
.y19_c01397{bottom:727.040000pt;}
.y14_c01397{bottom:761.600000pt;}
.y12_c01397{bottom:762.240000pt;}
.y13_c01397{bottom:762.880000pt;}
.y5d_c01397{bottom:763.520000pt;}
.y11_c01397{bottom:764.160000pt;}
.y56_c01397{bottom:764.800000pt;}
.y10_c01397{bottom:799.360000pt;}
.y5c_c01397{bottom:800.000000pt;}
.yd_c01397{bottom:800.640000pt;}
.yf_c01397{bottom:801.280000pt;}
.y5b_c01397{bottom:801.920000pt;}
.yc_c01397{bottom:802.560000pt;}
.y55_c01397{bottom:803.200000pt;}
.ye_c01397{bottom:804.480000pt;}
.y5a_c01397{bottom:838.400000pt;}
.y4_c01397{bottom:839.040000pt;}
.y59_c01397{bottom:840.320000pt;}
.yb_c01397{bottom:842.240000pt;}
.y8_c01397{bottom:874.880000pt;}
.y2_c01397{bottom:875.520000pt;}
.y3_c01397{bottom:876.160000pt;}
.y1_c01397{bottom:876.800000pt;}
.y9_c01397{bottom:878.080000pt;}
.ya_c01397{bottom:878.720000pt;}
.y7_c01397{bottom:880.000000pt;}
.y54_c01397{bottom:914.560000pt;}
.y6_c01397{bottom:915.200000pt;}
.y58_c01397{bottom:915.840000pt;}
.y5_c01397{bottom:918.400000pt;}
.y57_c01397{bottom:979.840000pt;}
.h12_c01397{height:27.645000pt;}
.h8_c01397{height:29.948750pt;}
.h11_c01397{height:32.252500pt;}
.hc_c01397{height:36.860000pt;}
.hf_c01397{height:39.163750pt;}
.h5_c01397{height:41.467500pt;}
.h2_c01397{height:43.771250pt;}
.h4_c01397{height:46.075000pt;}
.h9_c01397{height:48.378750pt;}
.he_c01397{height:50.682500pt;}
.hb_c01397{height:52.986250pt;}
.ha_c01397{height:55.290000pt;}
.h3_c01397{height:57.593750pt;}
.h6_c01397{height:59.897500pt;}
.h10_c01397{height:62.201250pt;}
.h7_c01397{height:66.808750pt;}
.hd_c01397{height:76.023750pt;}
.h0_c01397{height:1027.200000pt;}
.h1_c01397{height:1027.333333pt;}
.w1_c01397{width:696.000000pt;}
.w0_c01397{width:696.320000pt;}
.x0_c01397{left:0.000000pt;}
.x5_c01397{left:52.480000pt;}
.x19_c01397{left:53.760000pt;}
.x26_c01397{left:55.040000pt;}
.x6_c01397{left:108.800000pt;}
.x15_c01397{left:110.080000pt;}
.x7_c01397{left:139.520000pt;}
.x27_c01397{left:149.120000pt;}
.x1a_c01397{left:167.040000pt;}
.x16_c01397{left:176.000000pt;}
.xb_c01397{left:186.240000pt;}
.x1d_c01397{left:205.440000pt;}
.x1b_c01397{left:214.400000pt;}
.x1f_c01397{left:222.720000pt;}
.x8_c01397{left:224.640000pt;}
.xc_c01397{left:234.880000pt;}
.x17_c01397{left:243.840000pt;}
.x1e_c01397{left:252.160000pt;}
.x1c_c01397{left:253.440000pt;}
.x20_c01397{left:263.040000pt;}
.x23_c01397{left:271.360000pt;}
.x21_c01397{left:310.400000pt;}
.xe_c01397{left:330.240000pt;}
.x9_c01397{left:338.560000pt;}
.xf_c01397{left:339.840000pt;}
.x12_c01397{left:348.800000pt;}
.xa_c01397{left:378.240000pt;}
.x18_c01397{left:386.560000pt;}
.x13_c01397{left:396.160000pt;}
.x24_c01397{left:406.400000pt;}
.xd_c01397{left:416.000000pt;}
.x22_c01397{left:433.920000pt;}
.x14_c01397{left:444.800000pt;}
.x25_c01397{left:453.760000pt;}
.x10_c01397{left:463.360000pt;}
.x11_c01397{left:510.720000pt;}
.x4_c01397{left:520.320000pt;}
.x1_c01397{left:521.600000pt;}
.x35_c01397{left:537.600000pt;}
.x2_c01397{left:539.520000pt;}
.x2f_c01397{left:549.120000pt;}
.x2c_c01397{left:568.320000pt;}
.x29_c01397{left:569.600000pt;}
.x31_c01397{left:596.480000pt;}
.x2d_c01397{left:597.760000pt;}
.x2a_c01397{left:599.040000pt;}
.x33_c01397{left:606.720000pt;}
.x28_c01397{left:620.160000pt;}
.x30_c01397{left:625.920000pt;}
.x32_c01397{left:634.240000pt;}
.x2e_c01397{left:636.160000pt;}
.x3_c01397{left:637.440000pt;}
.x34_c01397{left:652.800000pt;}
.x2b_c01397{left:654.720000pt;}
}





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

.ir_c01398:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01398{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01398;src:url('chunks/assets/font_29db4cf7cd1ba52a94b2ce78.woff2')format("woff");}.ff1_c01398{font-family:ff1_c01398;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m39_c01398{transform:matrix(0.183400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183400,0.000000,0.000000,0.250000,0,0);}
.m4d_c01398{transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);}
.m1f_c01398{transform:matrix(0.237900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237900,0.000000,0.000000,0.250000,0,0);}
.m2_c01398{transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);}
.m4e_c01398{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01398{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m19_c01398{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01398{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);}
.m47_c01398{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);}
.m36_c01398{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);}
.m37_c01398{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m12_c01398{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);}
.m33_c01398{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m5_c01398{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m4_c01398{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);}
.m2d_c01398{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m44_c01398{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_c01398{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m27_c01398{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);}
.m29_c01398{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m20_c01398{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m34_c01398{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.ma_c01398{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m28_c01398{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m10_c01398{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m25_c01398{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m26_c01398{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01398{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m30_c01398{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01398{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m32_c01398{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m13_c01398{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01398{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m35_c01398{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);}
.m38_c01398{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01398{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m16_c01398{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01398{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);}
.m3e_c01398{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);}
.m3a_c01398{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_c01398{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m0_c01398{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01398{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);}
.m46_c01398{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.mb_c01398{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m45_c01398{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m1_c01398{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m41_c01398{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);}
.mc_c01398{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m8_c01398{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m40_c01398{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01398{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);}
.m3c_c01398{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m15_c01398{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);}
.m17_c01398{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m3_c01398{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m42_c01398{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m43_c01398{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m9_c01398{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01398{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01398{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m4a_c01398{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m6_c01398{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);}
.m14_c01398{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.me_c01398{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.mf_c01398{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m23_c01398{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01398{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01398{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);}
.m48_c01398{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m18_c01398{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m31_c01398{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m21_c01398{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m49_c01398{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01398{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01398{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01398{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.md_c01398{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01398{transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);}
.v0_c01398{vertical-align:0.000000px;}
.ls0_c01398{letter-spacing:0.000000px;}
.sc__c01398{text-shadow:none;}
.sc0_c01398{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01398{-webkit-text-stroke:0px transparent;}
.sc0_c01398{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01398{word-spacing:0.000000px;}
.ws0_c01398{word-spacing:23.226000px;}
.fc0_c01398{color:transparent;}
.fsf_c01398{font-size:14.400000px;}
.fs11_c01398{font-size:34.560000px;}
.fs9_c01398{font-size:37.440000px;}
.fsa_c01398{font-size:40.320000px;}
.fs10_c01398{font-size:43.200000px;}
.fsc_c01398{font-size:46.080000px;}
.fs4_c01398{font-size:48.960000px;}
.fs3_c01398{font-size:51.840000px;}
.fsb_c01398{font-size:54.720000px;}
.fs6_c01398{font-size:57.600000px;}
.fs1_c01398{font-size:60.480000px;}
.fsd_c01398{font-size:63.360000px;}
.fs8_c01398{font-size:66.240000px;}
.fs5_c01398{font-size:69.120000px;}
.fse_c01398{font-size:72.000000px;}
.fs0_c01398{font-size:74.880000px;}
.fs2_c01398{font-size:77.760000px;}
.fs7_c01398{font-size:112.320000px;}
.y0_c01398{bottom:0.000000px;}
.y7e_c01398{bottom:63.360000px;}
.y7d_c01398{bottom:66.960000px;}
.y50_c01398{bottom:69.120000px;}
.y52_c01398{bottom:72.000000px;}
.y51_c01398{bottom:72.720000px;}
.y7c_c01398{bottom:107.280000px;}
.y7b_c01398{bottom:111.600000px;}
.y4d_c01398{bottom:113.040000px;}
.y4c_c01398{bottom:115.200000px;}
.y4e_c01398{bottom:116.640000px;}
.y4f_c01398{bottom:117.360000px;}
.y18_c01398{bottom:151.200000px;}
.y19_c01398{bottom:151.920000px;}
.y17_c01398{bottom:154.080000px;}
.y1a_c01398{bottom:154.800000px;}
.y1b_c01398{bottom:155.520000px;}
.y49_c01398{bottom:156.240000px;}
.y1c_c01398{bottom:156.960000px;}
.y4a_c01398{bottom:158.400000px;}
.y4b_c01398{bottom:159.120000px;}
.y78_c01398{bottom:193.680000px;}
.y79_c01398{bottom:195.840000px;}
.y7a_c01398{bottom:196.560000px;}
.y77_c01398{bottom:198.000000px;}
.y47_c01398{bottom:199.440000px;}
.y46_c01398{bottom:200.160000px;}
.y48_c01398{bottom:200.880000px;}
.y74_c01398{bottom:237.600000px;}
.y76_c01398{bottom:239.760000px;}
.y73_c01398{bottom:241.200000px;}
.y75_c01398{bottom:241.920000px;}
.y43_c01398{bottom:242.640000px;}
.y44_c01398{bottom:243.360000px;}
.y45_c01398{bottom:245.520000px;}
.y6f_c01398{bottom:281.520000px;}
.y72_c01398{bottom:282.960000px;}
.y71_c01398{bottom:284.400000px;}
.y6e_c01398{bottom:285.120000px;}
.y41_c01398{bottom:285.840000px;}
.y70_c01398{bottom:286.560000px;}
.y42_c01398{bottom:288.720000px;}
.y6d_c01398{bottom:325.440000px;}
.y6c_c01398{bottom:326.160000px;}
.y6b_c01398{bottom:328.320000px;}
.y3f_c01398{bottom:331.200000px;}
.y40_c01398{bottom:332.640000px;}
.y6a_c01398{bottom:368.640000px;}
.y69_c01398{bottom:371.520000px;}
.y3c_c01398{bottom:372.240000px;}
.y3e_c01398{bottom:372.960000px;}
.y3d_c01398{bottom:373.680000px;}
.y67_c01398{bottom:411.840000px;}
.y68_c01398{bottom:413.280000px;}
.y66_c01398{bottom:414.720000px;}
.y3a_c01398{bottom:416.160000px;}
.y3b_c01398{bottom:416.880000px;}
.y65_c01398{bottom:455.760000px;}
.y63_c01398{bottom:457.920000px;}
.y37_c01398{bottom:459.360000px;}
.y64_c01398{bottom:460.080000px;}
.y38_c01398{bottom:460.800000px;}
.y39_c01398{bottom:461.520000px;}
.y61_c01398{bottom:499.680000px;}
.y62_c01398{bottom:500.400000px;}
.y60_c01398{bottom:501.120000px;}
.y36_c01398{bottom:502.560000px;}
.y5f_c01398{bottom:542.880000px;}
.y35_c01398{bottom:545.040000px;}
.y34_c01398{bottom:547.200000px;}
.y5e_c01398{bottom:547.920000px;}
.y5d_c01398{bottom:586.080000px;}
.y30_c01398{bottom:587.520000px;}
.y5c_c01398{bottom:588.240000px;}
.y32_c01398{bottom:588.960000px;}
.y31_c01398{bottom:589.680000px;}
.y33_c01398{bottom:590.400000px;}
.y5a_c01398{bottom:630.000000px;}
.y2d_c01398{bottom:630.720000px;}
.y2e_c01398{bottom:631.440000px;}
.y2f_c01398{bottom:632.880000px;}
.y5b_c01398{bottom:633.600000px;}
.y59_c01398{bottom:672.480000px;}
.y2b_c01398{bottom:674.640000px;}
.y2c_c01398{bottom:675.360000px;}
.y2a_c01398{bottom:676.080000px;}
.y27_c01398{bottom:716.400000px;}
.y28_c01398{bottom:717.840000px;}
.y29_c01398{bottom:719.280000px;}
.y58_c01398{bottom:720.000000px;}
.y24_c01398{bottom:759.600000px;}
.y25_c01398{bottom:760.320000px;}
.y56_c01398{bottom:761.040000px;}
.y26_c01398{bottom:761.760000px;}
.y57_c01398{bottom:766.080000px;}
.y22_c01398{bottom:802.080000px;}
.y55_c01398{bottom:802.800000px;}
.y23_c01398{bottom:803.520000px;}
.y53_c01398{bottom:804.960000px;}
.y54_c01398{bottom:806.400000px;}
.y1f_c01398{bottom:846.000000px;}
.y16_c01398{bottom:846.720000px;}
.y21_c01398{bottom:847.440000px;}
.y15_c01398{bottom:848.160000px;}
.y20_c01398{bottom:848.880000px;}
.y14_c01398{bottom:889.200000px;}
.y1e_c01398{bottom:889.920000px;}
.y1d_c01398{bottom:890.640000px;}
.y12_c01398{bottom:891.360000px;}
.y13_c01398{bottom:893.520000px;}
.y11_c01398{bottom:938.160000px;}
.yb_c01398{bottom:985.680000px;}
.yf_c01398{bottom:986.400000px;}
.y9_c01398{bottom:987.120000px;}
.y10_c01398{bottom:987.840000px;}
.y6_c01398{bottom:988.560000px;}
.y8_c01398{bottom:989.280000px;}
.ya_c01398{bottom:990.000000px;}
.y7_c01398{bottom:991.440000px;}
.y5_c01398{bottom:1018.800000px;}
.ye_c01398{bottom:1029.600000px;}
.y3_c01398{bottom:1031.040000px;}
.yc_c01398{bottom:1031.760000px;}
.y2_c01398{bottom:1032.480000px;}
.yd_c01398{bottom:1033.200000px;}
.y4_c01398{bottom:1034.640000px;}
.y1_c01398{bottom:1092.240000px;}
.h11_c01398{height:12.958594px;}
.h13_c01398{height:31.100625px;}
.hb_c01398{height:33.692344px;}
.hc_c01398{height:36.284062px;}
.h12_c01398{height:38.875781px;}
.he_c01398{height:41.467500px;}
.h6_c01398{height:44.059219px;}
.h5_c01398{height:46.650937px;}
.hd_c01398{height:49.242656px;}
.h8_c01398{height:51.834375px;}
.h3_c01398{height:54.426094px;}
.hf_c01398{height:57.017812px;}
.ha_c01398{height:59.609531px;}
.h7_c01398{height:62.201250px;}
.h10_c01398{height:64.792969px;}
.h2_c01398{height:67.384687px;}
.h4_c01398{height:69.976406px;}
.h9_c01398{height:101.077031px;}
.h0_c01398{height:1154.880000px;}
.h1_c01398{height:1155.000000px;}
.w0_c01398{width:781.200000px;}
.w1_c01398{width:781.500000px;}
.x0_c01398{left:0.000000px;}
.x2_c01398{left:56.160000px;}
.x1a_c01398{left:58.320000px;}
.x2d_c01398{left:97.200000px;}
.x16_c01398{left:108.720000px;}
.x9_c01398{left:119.520000px;}
.x3_c01398{left:120.960000px;}
.x2e_c01398{left:130.320000px;}
.x32_c01398{left:131.760000px;}
.xa_c01398{left:144.000000px;}
.x17_c01398{left:162.720000px;}
.x18_c01398{left:195.840000px;}
.x36_c01398{left:205.200000px;}
.x1b_c01398{left:206.640000px;}
.x4_c01398{left:216.720000px;}
.x2f_c01398{left:237.600000px;}
.x37_c01398{left:239.760000px;}
.x19_c01398{left:249.840000px;}
.x1c_c01398{left:262.080000px;}
.x5_c01398{left:270.000000px;}
.xb_c01398{left:271.440000px;}
.x30_c01398{left:293.040000px;}
.x33_c01398{left:304.560000px;}
.x6_c01398{left:314.640000px;}
.x1d_c01398{left:346.320000px;}
.x34_c01398{left:357.840000px;}
.xc_c01398{left:367.200000px;}
.x38_c01398{left:369.360000px;}
.xd_c01398{left:379.440000px;}
.xe_c01398{left:389.520000px;}
.x1e_c01398{left:390.960000px;}
.xf_c01398{left:421.200000px;}
.x7_c01398{left:432.000000px;}
.x1f_c01398{left:444.240000px;}
.x35_c01398{left:453.600000px;}
.x31_c01398{left:464.400000px;}
.x8_c01398{left:486.720000px;}
.x2c_c01398{left:581.040000px;}
.x2b_c01398{left:582.480000px;}
.x24_c01398{left:602.640000px;}
.x22_c01398{left:604.800000px;}
.x29_c01398{left:614.160000px;}
.x25_c01398{left:635.040000px;}
.x13_c01398{left:636.480000px;}
.x10_c01398{left:637.920000px;}
.x1_c01398{left:665.280000px;}
.x26_c01398{left:668.160000px;}
.x14_c01398{left:669.600000px;}
.x2a_c01398{left:678.240000px;}
.x11_c01398{left:680.400000px;}
.x27_c01398{left:700.560000px;}
.x23_c01398{left:710.640000px;}
.x20_c01398{left:712.080000px;}
.x12_c01398{left:713.520000px;}
.x28_c01398{left:730.800000px;}
.x21_c01398{left:732.240000px;}
.x15_c01398{left:733.680000px;}
@media print{
.v0_c01398{vertical-align:0.000000pt;}
.ls0_c01398{letter-spacing:0.000000pt;}
.ws1_c01398{word-spacing:0.000000pt;}
.ws0_c01398{word-spacing:20.645333pt;}
.fsf_c01398{font-size:12.800000pt;}
.fs11_c01398{font-size:30.720000pt;}
.fs9_c01398{font-size:33.280000pt;}
.fsa_c01398{font-size:35.840000pt;}
.fs10_c01398{font-size:38.400000pt;}
.fsc_c01398{font-size:40.960000pt;}
.fs4_c01398{font-size:43.520000pt;}
.fs3_c01398{font-size:46.080000pt;}
.fsb_c01398{font-size:48.640000pt;}
.fs6_c01398{font-size:51.200000pt;}
.fs1_c01398{font-size:53.760000pt;}
.fsd_c01398{font-size:56.320000pt;}
.fs8_c01398{font-size:58.880000pt;}
.fs5_c01398{font-size:61.440000pt;}
.fse_c01398{font-size:64.000000pt;}
.fs0_c01398{font-size:66.560000pt;}
.fs2_c01398{font-size:69.120000pt;}
.fs7_c01398{font-size:99.840000pt;}
.y0_c01398{bottom:0.000000pt;}
.y7e_c01398{bottom:56.320000pt;}
.y7d_c01398{bottom:59.520000pt;}
.y50_c01398{bottom:61.440000pt;}
.y52_c01398{bottom:64.000000pt;}
.y51_c01398{bottom:64.640000pt;}
.y7c_c01398{bottom:95.360000pt;}
.y7b_c01398{bottom:99.200000pt;}
.y4d_c01398{bottom:100.480000pt;}
.y4c_c01398{bottom:102.400000pt;}
.y4e_c01398{bottom:103.680000pt;}
.y4f_c01398{bottom:104.320000pt;}
.y18_c01398{bottom:134.400000pt;}
.y19_c01398{bottom:135.040000pt;}
.y17_c01398{bottom:136.960000pt;}
.y1a_c01398{bottom:137.600000pt;}
.y1b_c01398{bottom:138.240000pt;}
.y49_c01398{bottom:138.880000pt;}
.y1c_c01398{bottom:139.520000pt;}
.y4a_c01398{bottom:140.800000pt;}
.y4b_c01398{bottom:141.440000pt;}
.y78_c01398{bottom:172.160000pt;}
.y79_c01398{bottom:174.080000pt;}
.y7a_c01398{bottom:174.720000pt;}
.y77_c01398{bottom:176.000000pt;}
.y47_c01398{bottom:177.280000pt;}
.y46_c01398{bottom:177.920000pt;}
.y48_c01398{bottom:178.560000pt;}
.y74_c01398{bottom:211.200000pt;}
.y76_c01398{bottom:213.120000pt;}
.y73_c01398{bottom:214.400000pt;}
.y75_c01398{bottom:215.040000pt;}
.y43_c01398{bottom:215.680000pt;}
.y44_c01398{bottom:216.320000pt;}
.y45_c01398{bottom:218.240000pt;}
.y6f_c01398{bottom:250.240000pt;}
.y72_c01398{bottom:251.520000pt;}
.y71_c01398{bottom:252.800000pt;}
.y6e_c01398{bottom:253.440000pt;}
.y41_c01398{bottom:254.080000pt;}
.y70_c01398{bottom:254.720000pt;}
.y42_c01398{bottom:256.640000pt;}
.y6d_c01398{bottom:289.280000pt;}
.y6c_c01398{bottom:289.920000pt;}
.y6b_c01398{bottom:291.840000pt;}
.y3f_c01398{bottom:294.400000pt;}
.y40_c01398{bottom:295.680000pt;}
.y6a_c01398{bottom:327.680000pt;}
.y69_c01398{bottom:330.240000pt;}
.y3c_c01398{bottom:330.880000pt;}
.y3e_c01398{bottom:331.520000pt;}
.y3d_c01398{bottom:332.160000pt;}
.y67_c01398{bottom:366.080000pt;}
.y68_c01398{bottom:367.360000pt;}
.y66_c01398{bottom:368.640000pt;}
.y3a_c01398{bottom:369.920000pt;}
.y3b_c01398{bottom:370.560000pt;}
.y65_c01398{bottom:405.120000pt;}
.y63_c01398{bottom:407.040000pt;}
.y37_c01398{bottom:408.320000pt;}
.y64_c01398{bottom:408.960000pt;}
.y38_c01398{bottom:409.600000pt;}
.y39_c01398{bottom:410.240000pt;}
.y61_c01398{bottom:444.160000pt;}
.y62_c01398{bottom:444.800000pt;}
.y60_c01398{bottom:445.440000pt;}
.y36_c01398{bottom:446.720000pt;}
.y5f_c01398{bottom:482.560000pt;}
.y35_c01398{bottom:484.480000pt;}
.y34_c01398{bottom:486.400000pt;}
.y5e_c01398{bottom:487.040000pt;}
.y5d_c01398{bottom:520.960000pt;}
.y30_c01398{bottom:522.240000pt;}
.y5c_c01398{bottom:522.880000pt;}
.y32_c01398{bottom:523.520000pt;}
.y31_c01398{bottom:524.160000pt;}
.y33_c01398{bottom:524.800000pt;}
.y5a_c01398{bottom:560.000000pt;}
.y2d_c01398{bottom:560.640000pt;}
.y2e_c01398{bottom:561.280000pt;}
.y2f_c01398{bottom:562.560000pt;}
.y5b_c01398{bottom:563.200000pt;}
.y59_c01398{bottom:597.760000pt;}
.y2b_c01398{bottom:599.680000pt;}
.y2c_c01398{bottom:600.320000pt;}
.y2a_c01398{bottom:600.960000pt;}
.y27_c01398{bottom:636.800000pt;}
.y28_c01398{bottom:638.080000pt;}
.y29_c01398{bottom:639.360000pt;}
.y58_c01398{bottom:640.000000pt;}
.y24_c01398{bottom:675.200000pt;}
.y25_c01398{bottom:675.840000pt;}
.y56_c01398{bottom:676.480000pt;}
.y26_c01398{bottom:677.120000pt;}
.y57_c01398{bottom:680.960000pt;}
.y22_c01398{bottom:712.960000pt;}
.y55_c01398{bottom:713.600000pt;}
.y23_c01398{bottom:714.240000pt;}
.y53_c01398{bottom:715.520000pt;}
.y54_c01398{bottom:716.800000pt;}
.y1f_c01398{bottom:752.000000pt;}
.y16_c01398{bottom:752.640000pt;}
.y21_c01398{bottom:753.280000pt;}
.y15_c01398{bottom:753.920000pt;}
.y20_c01398{bottom:754.560000pt;}
.y14_c01398{bottom:790.400000pt;}
.y1e_c01398{bottom:791.040000pt;}
.y1d_c01398{bottom:791.680000pt;}
.y12_c01398{bottom:792.320000pt;}
.y13_c01398{bottom:794.240000pt;}
.y11_c01398{bottom:833.920000pt;}
.yb_c01398{bottom:876.160000pt;}
.yf_c01398{bottom:876.800000pt;}
.y9_c01398{bottom:877.440000pt;}
.y10_c01398{bottom:878.080000pt;}
.y6_c01398{bottom:878.720000pt;}
.y8_c01398{bottom:879.360000pt;}
.ya_c01398{bottom:880.000000pt;}
.y7_c01398{bottom:881.280000pt;}
.y5_c01398{bottom:905.600000pt;}
.ye_c01398{bottom:915.200000pt;}
.y3_c01398{bottom:916.480000pt;}
.yc_c01398{bottom:917.120000pt;}
.y2_c01398{bottom:917.760000pt;}
.yd_c01398{bottom:918.400000pt;}
.y4_c01398{bottom:919.680000pt;}
.y1_c01398{bottom:970.880000pt;}
.h11_c01398{height:11.518750pt;}
.h13_c01398{height:27.645000pt;}
.hb_c01398{height:29.948750pt;}
.hc_c01398{height:32.252500pt;}
.h12_c01398{height:34.556250pt;}
.he_c01398{height:36.860000pt;}
.h6_c01398{height:39.163750pt;}
.h5_c01398{height:41.467500pt;}
.hd_c01398{height:43.771250pt;}
.h8_c01398{height:46.075000pt;}
.h3_c01398{height:48.378750pt;}
.hf_c01398{height:50.682500pt;}
.ha_c01398{height:52.986250pt;}
.h7_c01398{height:55.290000pt;}
.h10_c01398{height:57.593750pt;}
.h2_c01398{height:59.897500pt;}
.h4_c01398{height:62.201250pt;}
.h9_c01398{height:89.846250pt;}
.h0_c01398{height:1026.560000pt;}
.h1_c01398{height:1026.666667pt;}
.w0_c01398{width:694.400000pt;}
.w1_c01398{width:694.666667pt;}
.x0_c01398{left:0.000000pt;}
.x2_c01398{left:49.920000pt;}
.x1a_c01398{left:51.840000pt;}
.x2d_c01398{left:86.400000pt;}
.x16_c01398{left:96.640000pt;}
.x9_c01398{left:106.240000pt;}
.x3_c01398{left:107.520000pt;}
.x2e_c01398{left:115.840000pt;}
.x32_c01398{left:117.120000pt;}
.xa_c01398{left:128.000000pt;}
.x17_c01398{left:144.640000pt;}
.x18_c01398{left:174.080000pt;}
.x36_c01398{left:182.400000pt;}
.x1b_c01398{left:183.680000pt;}
.x4_c01398{left:192.640000pt;}
.x2f_c01398{left:211.200000pt;}
.x37_c01398{left:213.120000pt;}
.x19_c01398{left:222.080000pt;}
.x1c_c01398{left:232.960000pt;}
.x5_c01398{left:240.000000pt;}
.xb_c01398{left:241.280000pt;}
.x30_c01398{left:260.480000pt;}
.x33_c01398{left:270.720000pt;}
.x6_c01398{left:279.680000pt;}
.x1d_c01398{left:307.840000pt;}
.x34_c01398{left:318.080000pt;}
.xc_c01398{left:326.400000pt;}
.x38_c01398{left:328.320000pt;}
.xd_c01398{left:337.280000pt;}
.xe_c01398{left:346.240000pt;}
.x1e_c01398{left:347.520000pt;}
.xf_c01398{left:374.400000pt;}
.x7_c01398{left:384.000000pt;}
.x1f_c01398{left:394.880000pt;}
.x35_c01398{left:403.200000pt;}
.x31_c01398{left:412.800000pt;}
.x8_c01398{left:432.640000pt;}
.x2c_c01398{left:516.480000pt;}
.x2b_c01398{left:517.760000pt;}
.x24_c01398{left:535.680000pt;}
.x22_c01398{left:537.600000pt;}
.x29_c01398{left:545.920000pt;}
.x25_c01398{left:564.480000pt;}
.x13_c01398{left:565.760000pt;}
.x10_c01398{left:567.040000pt;}
.x1_c01398{left:591.360000pt;}
.x26_c01398{left:593.920000pt;}
.x14_c01398{left:595.200000pt;}
.x2a_c01398{left:602.880000pt;}
.x11_c01398{left:604.800000pt;}
.x27_c01398{left:622.720000pt;}
.x23_c01398{left:631.680000pt;}
.x20_c01398{left:632.960000pt;}
.x12_c01398{left:634.240000pt;}
.x28_c01398{left:649.600000pt;}
.x21_c01398{left:650.880000pt;}
.x15_c01398{left:652.160000pt;}
}





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

.ir_c01399:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01399{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01399;src:url('chunks/assets/font_7c8e151b18e58def13c87b86.woff2')format("woff");}.ff1_c01399{font-family:ff1_c01399;line-height:1.109863;font-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_c01399{transform:matrix(0.224775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224775,0.000000,0.000000,0.250000,0,0);}
.m46_c01399{transform:matrix(0.233675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233675,0.000000,0.000000,0.250000,0,0);}
.m44_c01399{transform:matrix(0.245175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245175,0.000000,0.000000,0.250000,0,0);}
.m3_c01399{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_c01399{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);}
.m48_c01399{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m10_c01399{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);}
.m3c_c01399{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m1_c01399{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_c01399{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01399{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mb_c01399{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m4_c01399{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.md_c01399{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m16_c01399{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m47_c01399{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m15_c01399{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m9_c01399{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m23_c01399{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mf_c01399{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01399{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m8_c01399{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.me_c01399{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m11_c01399{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01399{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.ma_c01399{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m7_c01399{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);}
.m4f_c01399{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01399{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);}
.m33_c01399{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);}
.m45_c01399{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);}
.m31_c01399{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);}
.m38_c01399{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m17_c01399{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);}
.m4a_c01399{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m49_c01399{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);}
.m1a_c01399{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m0_c01399{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m18_c01399{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m14_c01399{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m2_c01399{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);}
.m26_c01399{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m24_c01399{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);}
.m3a_c01399{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m32_c01399{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);}
.m5_c01399{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);}
.m1f_c01399{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m43_c01399{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01399{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m29_c01399{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m28_c01399{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);}
.m4d_c01399{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m41_c01399{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m30_c01399{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);}
.m1c_c01399{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01399{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m42_c01399{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01399{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01399{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);}
.m36_c01399{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m35_c01399{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01399{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01399{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01399{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);}
.m22_c01399{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01399{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01399{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);}
.m20_c01399{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m19_c01399{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);}
.m27_c01399{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m40_c01399{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m21_c01399{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m34_c01399{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m25_c01399{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);}
.m1e_c01399{transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);}
.m37_c01399{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.mc_c01399{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m13_c01399{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m39_c01399{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.m4e_c01399{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);}
.v0_c01399{vertical-align:0.000000px;}
.v1_c01399{vertical-align:2.880000px;}
.v2_c01399{vertical-align:8.640000px;}
.ls0_c01399{letter-spacing:0.000000px;}
.sc__c01399{text-shadow:none;}
.sc0_c01399{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01399{-webkit-text-stroke:0px transparent;}
.sc0_c01399{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01399{word-spacing:-2.833920px;}
.ws3_c01399{word-spacing:0.000000px;}
.ws2_c01399{word-spacing:0.986400px;}
.ws0_c01399{word-spacing:9.212400px;}
.fc0_c01399{color:transparent;}
.fs10_c01399{font-size:20.160000px;}
.fsb_c01399{font-size:34.560000px;}
.fse_c01399{font-size:37.440000px;}
.fsd_c01399{font-size:43.200000px;}
.fsa_c01399{font-size:46.080000px;}
.fs9_c01399{font-size:48.960000px;}
.fs7_c01399{font-size:51.840000px;}
.fs6_c01399{font-size:54.720000px;}
.fs4_c01399{font-size:57.600000px;}
.fs2_c01399{font-size:60.480000px;}
.fs0_c01399{font-size:63.360000px;}
.fsc_c01399{font-size:66.240000px;}
.fs8_c01399{font-size:69.120000px;}
.fs1_c01399{font-size:72.000000px;}
.fs5_c01399{font-size:74.880000px;}
.fs3_c01399{font-size:77.760000px;}
.fsf_c01399{font-size:109.440000px;}
.y0_c01399{bottom:0.000000px;}
.y71_c01399{bottom:72.720000px;}
.y6d_c01399{bottom:77.760000px;}
.y6f_c01399{bottom:79.200000px;}
.y6e_c01399{bottom:79.920000px;}
.y6c_c01399{bottom:80.640000px;}
.y70_c01399{bottom:81.360000px;}
.y7e_c01399{bottom:82.800000px;}
.y7f_c01399{bottom:84.240000px;}
.y66_c01399{bottom:121.680000px;}
.y67_c01399{bottom:122.400000px;}
.y6b_c01399{bottom:123.120000px;}
.y69_c01399{bottom:123.840000px;}
.y65_c01399{bottom:124.560000px;}
.y68_c01399{bottom:125.280000px;}
.y6a_c01399{bottom:126.720000px;}
.y7c_c01399{bottom:128.160000px;}
.y7d_c01399{bottom:128.880000px;}
.y63_c01399{bottom:164.160000px;}
.y64_c01399{bottom:166.320000px;}
.y62_c01399{bottom:167.760000px;}
.y79_c01399{bottom:169.200000px;}
.y7a_c01399{bottom:169.920000px;}
.y7b_c01399{bottom:170.640000px;}
.y5e_c01399{bottom:208.080000px;}
.y5f_c01399{bottom:209.520000px;}
.y61_c01399{bottom:210.240000px;}
.y5d_c01399{bottom:210.960000px;}
.y60_c01399{bottom:212.400000px;}
.y78_c01399{bottom:213.840000px;}
.y76_c01399{bottom:214.560000px;}
.y77_c01399{bottom:216.000000px;}
.y5b_c01399{bottom:251.280000px;}
.y5c_c01399{bottom:252.000000px;}
.y5a_c01399{bottom:254.880000px;}
.y73_c01399{bottom:255.600000px;}
.y75_c01399{bottom:256.320000px;}
.y74_c01399{bottom:257.760000px;}
.y58_c01399{bottom:295.920000px;}
.y57_c01399{bottom:297.360000px;}
.y59_c01399{bottom:298.080000px;}
.y72_c01399{bottom:299.520000px;}
.y55_c01399{bottom:339.120000px;}
.y54_c01399{bottom:341.280000px;}
.y56_c01399{bottom:342.000000px;}
.y51_c01399{bottom:372.240000px;}
.y52_c01399{bottom:373.680000px;}
.y53_c01399{bottom:375.120000px;}
.y4f_c01399{bottom:403.920000px;}
.y4d_c01399{bottom:404.640000px;}
.y4e_c01399{bottom:406.080000px;}
.y50_c01399{bottom:406.800000px;}
.y3c_c01399{bottom:447.120000px;}
.y3b_c01399{bottom:447.840000px;}
.y3e_c01399{bottom:449.280000px;}
.y3f_c01399{bottom:450.000000px;}
.y3d_c01399{bottom:450.720000px;}
.y3a_c01399{bottom:479.520000px;}
.y39_c01399{bottom:480.240000px;}
.y37_c01399{bottom:480.960000px;}
.y38_c01399{bottom:482.400000px;}
.y35_c01399{bottom:522.720000px;}
.y34_c01399{bottom:523.440000px;}
.y4b_c01399{bottom:524.160000px;}
.y36_c01399{bottom:525.600000px;}
.y4c_c01399{bottom:526.320000px;}
.y49_c01399{bottom:565.920000px;}
.y32_c01399{bottom:566.640000px;}
.y31_c01399{bottom:567.360000px;}
.y30_c01399{bottom:568.080000px;}
.y4a_c01399{bottom:568.800000px;}
.y33_c01399{bottom:569.520000px;}
.y47_c01399{bottom:609.120000px;}
.y2d_c01399{bottom:610.560000px;}
.y2e_c01399{bottom:611.280000px;}
.y48_c01399{bottom:612.000000px;}
.y2f_c01399{bottom:612.720000px;}
.y45_c01399{bottom:652.320000px;}
.y2b_c01399{bottom:653.040000px;}
.y2a_c01399{bottom:653.760000px;}
.y29_c01399{bottom:654.480000px;}
.y46_c01399{bottom:655.200000px;}
.y2c_c01399{bottom:655.920000px;}
.y44_c01399{bottom:695.520000px;}
.y27_c01399{bottom:696.240000px;}
.y26_c01399{bottom:696.960000px;}
.y25_c01399{bottom:697.680000px;}
.y28_c01399{bottom:699.120000px;}
.y41_c01399{bottom:738.720000px;}
.y43_c01399{bottom:740.160000px;}
.y23_c01399{bottom:740.880000px;}
.y42_c01399{bottom:741.600000px;}
.y24_c01399{bottom:743.040000px;}
.y40_c01399{bottom:781.920000px;}
.y20_c01399{bottom:783.360000px;}
.y1e_c01399{bottom:784.080000px;}
.y22_c01399{bottom:784.800000px;}
.y21_c01399{bottom:785.520000px;}
.y1f_c01399{bottom:786.240000px;}
.y1d_c01399{bottom:826.560000px;}
.y1c_c01399{bottom:828.720000px;}
.y1b_c01399{bottom:830.160000px;}
.y19_c01399{bottom:856.080000px;}
.y1a_c01399{bottom:857.520000px;}
.y18_c01399{bottom:858.960000px;}
.y16_c01399{bottom:859.680000px;}
.y15_c01399{bottom:860.400000px;}
.y17_c01399{bottom:861.120000px;}
.y13_c01399{bottom:898.560000px;}
.y14_c01399{bottom:899.280000px;}
.y12_c01399{bottom:901.440000px;}
.y11_c01399{bottom:902.160000px;}
.yf_c01399{bottom:941.040000px;}
.ye_c01399{bottom:942.480000px;}
.y7_c01399{bottom:943.200000px;}
.y10_c01399{bottom:943.920000px;}
.y6_c01399{bottom:946.800000px;}
.yd_c01399{bottom:984.240000px;}
.yc_c01399{bottom:984.960000px;}
.y5_c01399{bottom:985.680000px;}
.y4_c01399{bottom:986.400000px;}
.y3_c01399{bottom:988.560000px;}
.y9_c01399{bottom:1028.160000px;}
.ya_c01399{bottom:1028.880000px;}
.yb_c01399{bottom:1029.600000px;}
.y2_c01399{bottom:1030.320000px;}
.y1_c01399{bottom:1031.040000px;}
.y8_c01399{bottom:1090.800000px;}
.h14_c01399{height:18.142031px;}
.hd_c01399{height:31.100625px;}
.h13_c01399{height:33.692344px;}
.h10_c01399{height:38.875781px;}
.hc_c01399{height:41.467500px;}
.hb_c01399{height:44.059219px;}
.h9_c01399{height:46.650937px;}
.h8_c01399{height:49.242656px;}
.h6_c01399{height:51.834375px;}
.h4_c01399{height:54.426094px;}
.h2_c01399{height:57.017812px;}
.hf_c01399{height:57.306094px;}
.h12_c01399{height:57.882656px;}
.he_c01399{height:59.609531px;}
.ha_c01399{height:62.201250px;}
.h3_c01399{height:64.792969px;}
.h7_c01399{height:67.384687px;}
.h5_c01399{height:69.976406px;}
.h11_c01399{height:98.485312px;}
.h0_c01399{height:1154.880000px;}
.h1_c01399{height:1155.000000px;}
.w0_c01399{width:781.200000px;}
.w1_c01399{width:781.500000px;}
.x0_c01399{left:0.000000px;}
.x1_c01399{left:58.320000px;}
.x21_c01399{left:120.960000px;}
.x2_c01399{left:122.400000px;}
.x12_c01399{left:123.840000px;}
.x3b_c01399{left:132.480000px;}
.x13_c01399{left:165.600000px;}
.x32_c01399{left:174.960000px;}
.x2e_c01399{left:184.320000px;}
.xd_c01399{left:208.080000px;}
.x17_c01399{left:209.520000px;}
.x37_c01399{left:218.160000px;}
.x14_c01399{left:220.320000px;}
.x33_c01399{left:228.960000px;}
.x2f_c01399{left:239.760000px;}
.x35_c01399{left:250.560000px;}
.x1d_c01399{left:262.080000px;}
.x4_c01399{left:263.520000px;}
.x38_c01399{left:271.440000px;}
.x1b_c01399{left:272.880000px;}
.x1a_c01399{left:274.320000px;}
.x3_c01399{left:285.120000px;}
.x15_c01399{left:305.280000px;}
.x1c_c01399{left:315.360000px;}
.x1e_c01399{left:316.800000px;}
.x22_c01399{left:326.880000px;}
.x16_c01399{left:360.720000px;}
.x18_c01399{left:369.360000px;}
.x30_c01399{left:380.160000px;}
.x36_c01399{left:390.960000px;}
.x39_c01399{left:401.760000px;}
.xe_c01399{left:403.200000px;}
.x1f_c01399{left:411.840000px;}
.x19_c01399{left:413.280000px;}
.x23_c01399{left:423.360000px;}
.x34_c01399{left:434.160000px;}
.x2b_c01399{left:444.240000px;}
.xf_c01399{left:455.760000px;}
.x20_c01399{left:466.560000px;}
.x24_c01399{left:476.640000px;}
.x3a_c01399{left:496.800000px;}
.x31_c01399{left:498.240000px;}
.x2c_c01399{left:507.600000px;}
.x10_c01399{left:510.480000px;}
.x3c_c01399{left:529.200000px;}
.x2d_c01399{left:561.600000px;}
.x6_c01399{left:585.360000px;}
.x40_c01399{left:594.000000px;}
.x27_c01399{left:604.800000px;}
.xa_c01399{left:606.960000px;}
.x11_c01399{left:617.760000px;}
.x3d_c01399{left:636.480000px;}
.x26_c01399{left:637.920000px;}
.xc_c01399{left:639.360000px;}
.x7_c01399{left:640.800000px;}
.x28_c01399{left:670.320000px;}
.x5_c01399{left:671.760000px;}
.x3f_c01399{left:680.400000px;}
.x29_c01399{left:702.720000px;}
.x3e_c01399{left:712.080000px;}
.x25_c01399{left:713.520000px;}
.xb_c01399{left:714.960000px;}
.x8_c01399{left:717.120000px;}
.x2a_c01399{left:732.960000px;}
.x9_c01399{left:736.560000px;}
@media print{
.v0_c01399{vertical-align:0.000000pt;}
.v1_c01399{vertical-align:2.560000pt;}
.v2_c01399{vertical-align:7.680000pt;}
.ls0_c01399{letter-spacing:0.000000pt;}
.ws1_c01399{word-spacing:-2.519040pt;}
.ws3_c01399{word-spacing:0.000000pt;}
.ws2_c01399{word-spacing:0.876800pt;}
.ws0_c01399{word-spacing:8.188800pt;}
.fs10_c01399{font-size:17.920000pt;}
.fsb_c01399{font-size:30.720000pt;}
.fse_c01399{font-size:33.280000pt;}
.fsd_c01399{font-size:38.400000pt;}
.fsa_c01399{font-size:40.960000pt;}
.fs9_c01399{font-size:43.520000pt;}
.fs7_c01399{font-size:46.080000pt;}
.fs6_c01399{font-size:48.640000pt;}
.fs4_c01399{font-size:51.200000pt;}
.fs2_c01399{font-size:53.760000pt;}
.fs0_c01399{font-size:56.320000pt;}
.fsc_c01399{font-size:58.880000pt;}
.fs8_c01399{font-size:61.440000pt;}
.fs1_c01399{font-size:64.000000pt;}
.fs5_c01399{font-size:66.560000pt;}
.fs3_c01399{font-size:69.120000pt;}
.fsf_c01399{font-size:97.280000pt;}
.y0_c01399{bottom:0.000000pt;}
.y71_c01399{bottom:64.640000pt;}
.y6d_c01399{bottom:69.120000pt;}
.y6f_c01399{bottom:70.400000pt;}
.y6e_c01399{bottom:71.040000pt;}
.y6c_c01399{bottom:71.680000pt;}
.y70_c01399{bottom:72.320000pt;}
.y7e_c01399{bottom:73.600000pt;}
.y7f_c01399{bottom:74.880000pt;}
.y66_c01399{bottom:108.160000pt;}
.y67_c01399{bottom:108.800000pt;}
.y6b_c01399{bottom:109.440000pt;}
.y69_c01399{bottom:110.080000pt;}
.y65_c01399{bottom:110.720000pt;}
.y68_c01399{bottom:111.360000pt;}
.y6a_c01399{bottom:112.640000pt;}
.y7c_c01399{bottom:113.920000pt;}
.y7d_c01399{bottom:114.560000pt;}
.y63_c01399{bottom:145.920000pt;}
.y64_c01399{bottom:147.840000pt;}
.y62_c01399{bottom:149.120000pt;}
.y79_c01399{bottom:150.400000pt;}
.y7a_c01399{bottom:151.040000pt;}
.y7b_c01399{bottom:151.680000pt;}
.y5e_c01399{bottom:184.960000pt;}
.y5f_c01399{bottom:186.240000pt;}
.y61_c01399{bottom:186.880000pt;}
.y5d_c01399{bottom:187.520000pt;}
.y60_c01399{bottom:188.800000pt;}
.y78_c01399{bottom:190.080000pt;}
.y76_c01399{bottom:190.720000pt;}
.y77_c01399{bottom:192.000000pt;}
.y5b_c01399{bottom:223.360000pt;}
.y5c_c01399{bottom:224.000000pt;}
.y5a_c01399{bottom:226.560000pt;}
.y73_c01399{bottom:227.200000pt;}
.y75_c01399{bottom:227.840000pt;}
.y74_c01399{bottom:229.120000pt;}
.y58_c01399{bottom:263.040000pt;}
.y57_c01399{bottom:264.320000pt;}
.y59_c01399{bottom:264.960000pt;}
.y72_c01399{bottom:266.240000pt;}
.y55_c01399{bottom:301.440000pt;}
.y54_c01399{bottom:303.360000pt;}
.y56_c01399{bottom:304.000000pt;}
.y51_c01399{bottom:330.880000pt;}
.y52_c01399{bottom:332.160000pt;}
.y53_c01399{bottom:333.440000pt;}
.y4f_c01399{bottom:359.040000pt;}
.y4d_c01399{bottom:359.680000pt;}
.y4e_c01399{bottom:360.960000pt;}
.y50_c01399{bottom:361.600000pt;}
.y3c_c01399{bottom:397.440000pt;}
.y3b_c01399{bottom:398.080000pt;}
.y3e_c01399{bottom:399.360000pt;}
.y3f_c01399{bottom:400.000000pt;}
.y3d_c01399{bottom:400.640000pt;}
.y3a_c01399{bottom:426.240000pt;}
.y39_c01399{bottom:426.880000pt;}
.y37_c01399{bottom:427.520000pt;}
.y38_c01399{bottom:428.800000pt;}
.y35_c01399{bottom:464.640000pt;}
.y34_c01399{bottom:465.280000pt;}
.y4b_c01399{bottom:465.920000pt;}
.y36_c01399{bottom:467.200000pt;}
.y4c_c01399{bottom:467.840000pt;}
.y49_c01399{bottom:503.040000pt;}
.y32_c01399{bottom:503.680000pt;}
.y31_c01399{bottom:504.320000pt;}
.y30_c01399{bottom:504.960000pt;}
.y4a_c01399{bottom:505.600000pt;}
.y33_c01399{bottom:506.240000pt;}
.y47_c01399{bottom:541.440000pt;}
.y2d_c01399{bottom:542.720000pt;}
.y2e_c01399{bottom:543.360000pt;}
.y48_c01399{bottom:544.000000pt;}
.y2f_c01399{bottom:544.640000pt;}
.y45_c01399{bottom:579.840000pt;}
.y2b_c01399{bottom:580.480000pt;}
.y2a_c01399{bottom:581.120000pt;}
.y29_c01399{bottom:581.760000pt;}
.y46_c01399{bottom:582.400000pt;}
.y2c_c01399{bottom:583.040000pt;}
.y44_c01399{bottom:618.240000pt;}
.y27_c01399{bottom:618.880000pt;}
.y26_c01399{bottom:619.520000pt;}
.y25_c01399{bottom:620.160000pt;}
.y28_c01399{bottom:621.440000pt;}
.y41_c01399{bottom:656.640000pt;}
.y43_c01399{bottom:657.920000pt;}
.y23_c01399{bottom:658.560000pt;}
.y42_c01399{bottom:659.200000pt;}
.y24_c01399{bottom:660.480000pt;}
.y40_c01399{bottom:695.040000pt;}
.y20_c01399{bottom:696.320000pt;}
.y1e_c01399{bottom:696.960000pt;}
.y22_c01399{bottom:697.600000pt;}
.y21_c01399{bottom:698.240000pt;}
.y1f_c01399{bottom:698.880000pt;}
.y1d_c01399{bottom:734.720000pt;}
.y1c_c01399{bottom:736.640000pt;}
.y1b_c01399{bottom:737.920000pt;}
.y19_c01399{bottom:760.960000pt;}
.y1a_c01399{bottom:762.240000pt;}
.y18_c01399{bottom:763.520000pt;}
.y16_c01399{bottom:764.160000pt;}
.y15_c01399{bottom:764.800000pt;}
.y17_c01399{bottom:765.440000pt;}
.y13_c01399{bottom:798.720000pt;}
.y14_c01399{bottom:799.360000pt;}
.y12_c01399{bottom:801.280000pt;}
.y11_c01399{bottom:801.920000pt;}
.yf_c01399{bottom:836.480000pt;}
.ye_c01399{bottom:837.760000pt;}
.y7_c01399{bottom:838.400000pt;}
.y10_c01399{bottom:839.040000pt;}
.y6_c01399{bottom:841.600000pt;}
.yd_c01399{bottom:874.880000pt;}
.yc_c01399{bottom:875.520000pt;}
.y5_c01399{bottom:876.160000pt;}
.y4_c01399{bottom:876.800000pt;}
.y3_c01399{bottom:878.720000pt;}
.y9_c01399{bottom:913.920000pt;}
.ya_c01399{bottom:914.560000pt;}
.yb_c01399{bottom:915.200000pt;}
.y2_c01399{bottom:915.840000pt;}
.y1_c01399{bottom:916.480000pt;}
.y8_c01399{bottom:969.600000pt;}
.h14_c01399{height:16.126250pt;}
.hd_c01399{height:27.645000pt;}
.h13_c01399{height:29.948750pt;}
.h10_c01399{height:34.556250pt;}
.hc_c01399{height:36.860000pt;}
.hb_c01399{height:39.163750pt;}
.h9_c01399{height:41.467500pt;}
.h8_c01399{height:43.771250pt;}
.h6_c01399{height:46.075000pt;}
.h4_c01399{height:48.378750pt;}
.h2_c01399{height:50.682500pt;}
.hf_c01399{height:50.938750pt;}
.h12_c01399{height:51.451250pt;}
.he_c01399{height:52.986250pt;}
.ha_c01399{height:55.290000pt;}
.h3_c01399{height:57.593750pt;}
.h7_c01399{height:59.897500pt;}
.h5_c01399{height:62.201250pt;}
.h11_c01399{height:87.542500pt;}
.h0_c01399{height:1026.560000pt;}
.h1_c01399{height:1026.666667pt;}
.w0_c01399{width:694.400000pt;}
.w1_c01399{width:694.666667pt;}
.x0_c01399{left:0.000000pt;}
.x1_c01399{left:51.840000pt;}
.x21_c01399{left:107.520000pt;}
.x2_c01399{left:108.800000pt;}
.x12_c01399{left:110.080000pt;}
.x3b_c01399{left:117.760000pt;}
.x13_c01399{left:147.200000pt;}
.x32_c01399{left:155.520000pt;}
.x2e_c01399{left:163.840000pt;}
.xd_c01399{left:184.960000pt;}
.x17_c01399{left:186.240000pt;}
.x37_c01399{left:193.920000pt;}
.x14_c01399{left:195.840000pt;}
.x33_c01399{left:203.520000pt;}
.x2f_c01399{left:213.120000pt;}
.x35_c01399{left:222.720000pt;}
.x1d_c01399{left:232.960000pt;}
.x4_c01399{left:234.240000pt;}
.x38_c01399{left:241.280000pt;}
.x1b_c01399{left:242.560000pt;}
.x1a_c01399{left:243.840000pt;}
.x3_c01399{left:253.440000pt;}
.x15_c01399{left:271.360000pt;}
.x1c_c01399{left:280.320000pt;}
.x1e_c01399{left:281.600000pt;}
.x22_c01399{left:290.560000pt;}
.x16_c01399{left:320.640000pt;}
.x18_c01399{left:328.320000pt;}
.x30_c01399{left:337.920000pt;}
.x36_c01399{left:347.520000pt;}
.x39_c01399{left:357.120000pt;}
.xe_c01399{left:358.400000pt;}
.x1f_c01399{left:366.080000pt;}
.x19_c01399{left:367.360000pt;}
.x23_c01399{left:376.320000pt;}
.x34_c01399{left:385.920000pt;}
.x2b_c01399{left:394.880000pt;}
.xf_c01399{left:405.120000pt;}
.x20_c01399{left:414.720000pt;}
.x24_c01399{left:423.680000pt;}
.x3a_c01399{left:441.600000pt;}
.x31_c01399{left:442.880000pt;}
.x2c_c01399{left:451.200000pt;}
.x10_c01399{left:453.760000pt;}
.x3c_c01399{left:470.400000pt;}
.x2d_c01399{left:499.200000pt;}
.x6_c01399{left:520.320000pt;}
.x40_c01399{left:528.000000pt;}
.x27_c01399{left:537.600000pt;}
.xa_c01399{left:539.520000pt;}
.x11_c01399{left:549.120000pt;}
.x3d_c01399{left:565.760000pt;}
.x26_c01399{left:567.040000pt;}
.xc_c01399{left:568.320000pt;}
.x7_c01399{left:569.600000pt;}
.x28_c01399{left:595.840000pt;}
.x5_c01399{left:597.120000pt;}
.x3f_c01399{left:604.800000pt;}
.x29_c01399{left:624.640000pt;}
.x3e_c01399{left:632.960000pt;}
.x25_c01399{left:634.240000pt;}
.xb_c01399{left:635.520000pt;}
.x8_c01399{left:637.440000pt;}
.x2a_c01399{left:651.520000pt;}
.x9_c01399{left:654.720000pt;}
}





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

.ir_c01400:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01400{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01400;src:url('chunks/assets/font_9fb0706b38f24f46e50e7eaf.woff2')format("woff");}.ff1_c01400{font-family:ff1_c01400;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4d_c01400{transform:matrix(0.128475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128475,0.000000,0.000000,0.250000,0,0);}
.m29_c01400{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m44_c01400{transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);}
.m4b_c01400{transform:matrix(0.222700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222700,0.000000,0.000000,0.250000,0,0);}
.m50_c01400{transform:matrix(0.225100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225100,0.000000,0.000000,0.250000,0,0);}
.m4_c01400{transform:matrix(0.232175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232175,0.000000,0.000000,0.250000,0,0);}
.m1d_c01400{transform:matrix(0.236800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236800,0.000000,0.000000,0.250000,0,0);}
.m43_c01400{transform:matrix(0.240700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240700,0.000000,0.000000,0.250000,0,0);}
.m36_c01400{transform:matrix(0.242350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242350,0.000000,0.000000,0.250000,0,0);}
.m47_c01400{transform:matrix(0.244725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244725,0.000000,0.000000,0.250000,0,0);}
.m9_c01400{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m3b_c01400{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m1a_c01400{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);}
.m27_c01400{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m8_c01400{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_c01400{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);}
.m28_c01400{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_c01400{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_c01400{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);}
.m45_c01400{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.mb_c01400{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_c01400{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m11_c01400{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m15_c01400{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);}
.m30_c01400{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m18_c01400{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.md_c01400{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m42_c01400{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01400{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m3_c01400{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01400{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01400{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m7_c01400{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m20_c01400{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m38_c01400{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m10_c01400{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m19_c01400{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m14_c01400{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m33_c01400{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mc_c01400{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m6_c01400{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01400{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m22_c01400{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);}
.m2d_c01400{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01400{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m12_c01400{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m0_c01400{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);}
.m4c_c01400{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01400{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);}
.m39_c01400{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m25_c01400{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.ma_c01400{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);}
.me_c01400{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m23_c01400{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m5_c01400{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01400{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);}
.m26_c01400{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01400{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);}
.m49_c01400{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);}
.m3e_c01400{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);}
.m3a_c01400{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);}
.m35_c01400{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01400{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);}
.m4e_c01400{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);}
.m40_c01400{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.mf_c01400{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m17_c01400{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01400{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01400{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m24_c01400{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m32_c01400{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);}
.m46_c01400{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m41_c01400{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01400{transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01400{transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);}
.m48_c01400{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m2_c01400{transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01400{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m31_c01400{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m34_c01400{transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);}
.m37_c01400{transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);}
.v1_c01400{vertical-align:-5.760000px;}
.v0_c01400{vertical-align:0.000000px;}
.ls0_c01400{letter-spacing:0.000000px;}
.sc__c01400{text-shadow:none;}
.sc0_c01400{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01400{-webkit-text-stroke:0px transparent;}
.sc0_c01400{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01400{word-spacing:-2.002320px;}
.ws1_c01400{word-spacing:0.000000px;}
.fc0_c01400{color:transparent;}
.fs11_c01400{font-size:17.280000px;}
.fsf_c01400{font-size:23.040000px;}
.fs13_c01400{font-size:28.800000px;}
.fs2_c01400{font-size:31.680000px;}
.fs10_c01400{font-size:34.560000px;}
.fs14_c01400{font-size:40.320000px;}
.fs12_c01400{font-size:43.200000px;}
.fsd_c01400{font-size:48.960000px;}
.fs7_c01400{font-size:51.840000px;}
.fs5_c01400{font-size:54.720000px;}
.fs3_c01400{font-size:57.600000px;}
.fs4_c01400{font-size:60.480000px;}
.fs6_c01400{font-size:63.360000px;}
.fs9_c01400{font-size:66.240000px;}
.fs1_c01400{font-size:69.120000px;}
.fs8_c01400{font-size:72.000000px;}
.fse_c01400{font-size:74.880000px;}
.fs0_c01400{font-size:77.760000px;}
.fsb_c01400{font-size:80.640000px;}
.fsc_c01400{font-size:83.520000px;}
.fsa_c01400{font-size:86.400000px;}
.y0_c01400{bottom:0.000000px;}
.y6d_c01400{bottom:59.040000px;}
.y6f_c01400{bottom:59.760000px;}
.y6e_c01400{bottom:60.480000px;}
.y67_c01400{bottom:95.760000px;}
.y65_c01400{bottom:96.480000px;}
.y66_c01400{bottom:99.360000px;}
.y5e_c01400{bottom:127.440000px;}
.y5f_c01400{bottom:128.880000px;}
.y62_c01400{bottom:129.600000px;}
.y63_c01400{bottom:130.320000px;}
.y5d_c01400{bottom:131.040000px;}
.y60_c01400{bottom:131.760000px;}
.y5c_c01400{bottom:132.480000px;}
.y61_c01400{bottom:133.920000px;}
.y64_c01400{bottom:135.360000px;}
.y59_c01400{bottom:171.360000px;}
.y58_c01400{bottom:174.240000px;}
.y5b_c01400{bottom:174.960000px;}
.y5a_c01400{bottom:175.680000px;}
.y52_c01400{bottom:214.560000px;}
.y53_c01400{bottom:215.280000px;}
.y54_c01400{bottom:216.000000px;}
.y57_c01400{bottom:217.440000px;}
.y51_c01400{bottom:218.160000px;}
.y56_c01400{bottom:218.880000px;}
.y55_c01400{bottom:220.320000px;}
.y4d_c01400{bottom:259.920000px;}
.y4f_c01400{bottom:260.640000px;}
.y4e_c01400{bottom:262.080000px;}
.y50_c01400{bottom:262.800000px;}
.y48_c01400{bottom:293.040000px;}
.y4a_c01400{bottom:293.760000px;}
.y49_c01400{bottom:294.480000px;}
.y4b_c01400{bottom:295.200000px;}
.y4c_c01400{bottom:296.640000px;}
.y46_c01400{bottom:325.440000px;}
.y43_c01400{bottom:326.160000px;}
.y44_c01400{bottom:326.880000px;}
.y47_c01400{bottom:327.600000px;}
.y6c_c01400{bottom:329.040000px;}
.y45_c01400{bottom:331.200000px;}
.y42_c01400{bottom:366.480000px;}
.y3f_c01400{bottom:368.640000px;}
.y3e_c01400{bottom:369.360000px;}
.y3c_c01400{bottom:370.080000px;}
.y41_c01400{bottom:370.800000px;}
.y3d_c01400{bottom:371.520000px;}
.y40_c01400{bottom:374.400000px;}
.y2e_c01400{bottom:410.400000px;}
.y2d_c01400{bottom:411.840000px;}
.y69_c01400{bottom:412.560000px;}
.y6b_c01400{bottom:413.280000px;}
.y2c_c01400{bottom:414.000000px;}
.y6a_c01400{bottom:414.720000px;}
.y29_c01400{bottom:454.320000px;}
.y68_c01400{bottom:455.760000px;}
.y28_c01400{bottom:456.480000px;}
.y2a_c01400{bottom:457.200000px;}
.y2b_c01400{bottom:457.920000px;}
.y27_c01400{bottom:498.240000px;}
.y26_c01400{bottom:498.960000px;}
.y39_c01400{bottom:499.680000px;}
.y3a_c01400{bottom:500.400000px;}
.y3b_c01400{bottom:501.840000px;}
.y25_c01400{bottom:540.720000px;}
.y38_c01400{bottom:541.440000px;}
.y37_c01400{bottom:542.880000px;}
.y24_c01400{bottom:543.600000px;}
.y23_c01400{bottom:583.920000px;}
.y21_c01400{bottom:586.080000px;}
.y22_c01400{bottom:588.240000px;}
.y20_c01400{bottom:626.400000px;}
.y1e_c01400{bottom:630.000000px;}
.y1f_c01400{bottom:630.720000px;}
.y36_c01400{bottom:631.440000px;}
.y1d_c01400{bottom:669.600000px;}
.y35_c01400{bottom:671.040000px;}
.y1c_c01400{bottom:672.480000px;}
.y1a_c01400{bottom:673.920000px;}
.y1b_c01400{bottom:674.640000px;}
.y34_c01400{bottom:712.800000px;}
.y19_c01400{bottom:713.520000px;}
.y17_c01400{bottom:714.240000px;}
.y18_c01400{bottom:715.680000px;}
.y16_c01400{bottom:717.120000px;}
.y15_c01400{bottom:756.720000px;}
.y33_c01400{bottom:757.440000px;}
.y14_c01400{bottom:760.320000px;}
.y32_c01400{bottom:799.920000px;}
.y13_c01400{bottom:800.640000px;}
.y12_c01400{bottom:804.240000px;}
.y30_c01400{bottom:843.120000px;}
.y2f_c01400{bottom:843.840000px;}
.y11_c01400{bottom:844.560000px;}
.y31_c01400{bottom:845.280000px;}
.y10_c01400{bottom:846.000000px;}
.yf_c01400{bottom:892.080000px;}
.ye_c01400{bottom:940.320000px;}
.y6_c01400{bottom:941.760000px;}
.yd_c01400{bottom:943.200000px;}
.y5_c01400{bottom:946.080000px;}
.yc_c01400{bottom:982.800000px;}
.yb_c01400{bottom:985.680000px;}
.ya_c01400{bottom:987.120000px;}
.y9_c01400{bottom:1026.720000px;}
.y8_c01400{bottom:1028.160000px;}
.y4_c01400{bottom:1028.880000px;}
.y7_c01400{bottom:1029.600000px;}
.y2_c01400{bottom:1031.040000px;}
.y3_c01400{bottom:1032.480000px;}
.y1_c01400{bottom:1090.080000px;}
.h13_c01400{height:15.550313px;}
.h11_c01400{height:20.733750px;}
.h15_c01400{height:25.917187px;}
.h4_c01400{height:28.508906px;}
.h12_c01400{height:31.100625px;}
.h16_c01400{height:36.284062px;}
.h14_c01400{height:38.875781px;}
.hf_c01400{height:44.059219px;}
.h9_c01400{height:46.650937px;}
.h7_c01400{height:49.242656px;}
.h5_c01400{height:51.834375px;}
.h6_c01400{height:54.426094px;}
.h8_c01400{height:57.017812px;}
.hb_c01400{height:59.609531px;}
.h3_c01400{height:62.201250px;}
.ha_c01400{height:64.792969px;}
.h10_c01400{height:67.384687px;}
.h2_c01400{height:69.976406px;}
.hd_c01400{height:72.568125px;}
.he_c01400{height:75.159844px;}
.hc_c01400{height:77.751563px;}
.h0_c01400{height:1153.440000px;}
.h1_c01400{height:1153.500000px;}
.w0_c01400{width:779.760000px;}
.w1_c01400{width:780.000000px;}
.x0_c01400{left:0.000000px;}
.x12_c01400{left:59.040000px;}
.x2_c01400{left:60.480000px;}
.x27_c01400{left:90.720000px;}
.x3_c01400{left:92.880000px;}
.x28_c01400{left:99.360000px;}
.x9_c01400{left:112.320000px;}
.xd_c01400{left:121.680000px;}
.x4_c01400{left:123.120000px;}
.xa_c01400{left:166.320000px;}
.x38_c01400{left:175.680000px;}
.x2d_c01400{left:185.760000px;}
.x10_c01400{left:198.000000px;}
.x5_c01400{left:200.160000px;}
.x11_c01400{left:209.520000px;}
.xe_c01400{left:219.600000px;}
.x2e_c01400{left:241.200000px;}
.xf_c01400{left:264.240000px;}
.x13_c01400{left:274.320000px;}
.x30_c01400{left:285.120000px;}
.xb_c01400{left:296.640000px;}
.x33_c01400{left:316.080000px;}
.x22_c01400{left:317.520000px;}
.x14_c01400{left:328.320000px;}
.x23_c01400{left:360.000000px;}
.x15_c01400{left:370.080000px;}
.x24_c01400{left:371.520000px;}
.xc_c01400{left:382.320000px;}
.x2f_c01400{left:401.760000px;}
.x31_c01400{left:403.920000px;}
.x25_c01400{left:414.720000px;}
.x29_c01400{left:423.360000px;}
.x2b_c01400{left:445.680000px;}
.x34_c01400{left:466.560000px;}
.x2a_c01400{left:477.360000px;}
.x26_c01400{left:498.960000px;}
.x35_c01400{left:509.760000px;}
.x36_c01400{left:520.560000px;}
.x2c_c01400{left:552.240000px;}
.x20_c01400{left:586.080000px;}
.x32_c01400{left:605.520000px;}
.x39_c01400{left:606.960000px;}
.x18_c01400{left:608.400000px;}
.x16_c01400{left:619.200000px;}
.x1c_c01400{left:639.360000px;}
.x6_c01400{left:642.240000px;}
.x1f_c01400{left:671.040000px;}
.x1d_c01400{left:672.480000px;}
.x7_c01400{left:673.920000px;}
.x37_c01400{left:680.400000px;}
.x1a_c01400{left:682.560000px;}
.x19_c01400{left:684.000000px;}
.x1_c01400{left:689.760000px;}
.x3a_c01400{left:704.160000px;}
.x1e_c01400{left:713.520000px;}
.x17_c01400{left:715.680000px;}
.x8_c01400{left:717.120000px;}
.x21_c01400{left:734.400000px;}
.x1b_c01400{left:735.840000px;}
@media print{
.v1_c01400{vertical-align:-5.120000pt;}
.v0_c01400{vertical-align:0.000000pt;}
.ls0_c01400{letter-spacing:0.000000pt;}
.ws0_c01400{word-spacing:-1.779840pt;}
.ws1_c01400{word-spacing:0.000000pt;}
.fs11_c01400{font-size:15.360000pt;}
.fsf_c01400{font-size:20.480000pt;}
.fs13_c01400{font-size:25.600000pt;}
.fs2_c01400{font-size:28.160000pt;}
.fs10_c01400{font-size:30.720000pt;}
.fs14_c01400{font-size:35.840000pt;}
.fs12_c01400{font-size:38.400000pt;}
.fsd_c01400{font-size:43.520000pt;}
.fs7_c01400{font-size:46.080000pt;}
.fs5_c01400{font-size:48.640000pt;}
.fs3_c01400{font-size:51.200000pt;}
.fs4_c01400{font-size:53.760000pt;}
.fs6_c01400{font-size:56.320000pt;}
.fs9_c01400{font-size:58.880000pt;}
.fs1_c01400{font-size:61.440000pt;}
.fs8_c01400{font-size:64.000000pt;}
.fse_c01400{font-size:66.560000pt;}
.fs0_c01400{font-size:69.120000pt;}
.fsb_c01400{font-size:71.680000pt;}
.fsc_c01400{font-size:74.240000pt;}
.fsa_c01400{font-size:76.800000pt;}
.y0_c01400{bottom:0.000000pt;}
.y6d_c01400{bottom:52.480000pt;}
.y6f_c01400{bottom:53.120000pt;}
.y6e_c01400{bottom:53.760000pt;}
.y67_c01400{bottom:85.120000pt;}
.y65_c01400{bottom:85.760000pt;}
.y66_c01400{bottom:88.320000pt;}
.y5e_c01400{bottom:113.280000pt;}
.y5f_c01400{bottom:114.560000pt;}
.y62_c01400{bottom:115.200000pt;}
.y63_c01400{bottom:115.840000pt;}
.y5d_c01400{bottom:116.480000pt;}
.y60_c01400{bottom:117.120000pt;}
.y5c_c01400{bottom:117.760000pt;}
.y61_c01400{bottom:119.040000pt;}
.y64_c01400{bottom:120.320000pt;}
.y59_c01400{bottom:152.320000pt;}
.y58_c01400{bottom:154.880000pt;}
.y5b_c01400{bottom:155.520000pt;}
.y5a_c01400{bottom:156.160000pt;}
.y52_c01400{bottom:190.720000pt;}
.y53_c01400{bottom:191.360000pt;}
.y54_c01400{bottom:192.000000pt;}
.y57_c01400{bottom:193.280000pt;}
.y51_c01400{bottom:193.920000pt;}
.y56_c01400{bottom:194.560000pt;}
.y55_c01400{bottom:195.840000pt;}
.y4d_c01400{bottom:231.040000pt;}
.y4f_c01400{bottom:231.680000pt;}
.y4e_c01400{bottom:232.960000pt;}
.y50_c01400{bottom:233.600000pt;}
.y48_c01400{bottom:260.480000pt;}
.y4a_c01400{bottom:261.120000pt;}
.y49_c01400{bottom:261.760000pt;}
.y4b_c01400{bottom:262.400000pt;}
.y4c_c01400{bottom:263.680000pt;}
.y46_c01400{bottom:289.280000pt;}
.y43_c01400{bottom:289.920000pt;}
.y44_c01400{bottom:290.560000pt;}
.y47_c01400{bottom:291.200000pt;}
.y6c_c01400{bottom:292.480000pt;}
.y45_c01400{bottom:294.400000pt;}
.y42_c01400{bottom:325.760000pt;}
.y3f_c01400{bottom:327.680000pt;}
.y3e_c01400{bottom:328.320000pt;}
.y3c_c01400{bottom:328.960000pt;}
.y41_c01400{bottom:329.600000pt;}
.y3d_c01400{bottom:330.240000pt;}
.y40_c01400{bottom:332.800000pt;}
.y2e_c01400{bottom:364.800000pt;}
.y2d_c01400{bottom:366.080000pt;}
.y69_c01400{bottom:366.720000pt;}
.y6b_c01400{bottom:367.360000pt;}
.y2c_c01400{bottom:368.000000pt;}
.y6a_c01400{bottom:368.640000pt;}
.y29_c01400{bottom:403.840000pt;}
.y68_c01400{bottom:405.120000pt;}
.y28_c01400{bottom:405.760000pt;}
.y2a_c01400{bottom:406.400000pt;}
.y2b_c01400{bottom:407.040000pt;}
.y27_c01400{bottom:442.880000pt;}
.y26_c01400{bottom:443.520000pt;}
.y39_c01400{bottom:444.160000pt;}
.y3a_c01400{bottom:444.800000pt;}
.y3b_c01400{bottom:446.080000pt;}
.y25_c01400{bottom:480.640000pt;}
.y38_c01400{bottom:481.280000pt;}
.y37_c01400{bottom:482.560000pt;}
.y24_c01400{bottom:483.200000pt;}
.y23_c01400{bottom:519.040000pt;}
.y21_c01400{bottom:520.960000pt;}
.y22_c01400{bottom:522.880000pt;}
.y20_c01400{bottom:556.800000pt;}
.y1e_c01400{bottom:560.000000pt;}
.y1f_c01400{bottom:560.640000pt;}
.y36_c01400{bottom:561.280000pt;}
.y1d_c01400{bottom:595.200000pt;}
.y35_c01400{bottom:596.480000pt;}
.y1c_c01400{bottom:597.760000pt;}
.y1a_c01400{bottom:599.040000pt;}
.y1b_c01400{bottom:599.680000pt;}
.y34_c01400{bottom:633.600000pt;}
.y19_c01400{bottom:634.240000pt;}
.y17_c01400{bottom:634.880000pt;}
.y18_c01400{bottom:636.160000pt;}
.y16_c01400{bottom:637.440000pt;}
.y15_c01400{bottom:672.640000pt;}
.y33_c01400{bottom:673.280000pt;}
.y14_c01400{bottom:675.840000pt;}
.y32_c01400{bottom:711.040000pt;}
.y13_c01400{bottom:711.680000pt;}
.y12_c01400{bottom:714.880000pt;}
.y30_c01400{bottom:749.440000pt;}
.y2f_c01400{bottom:750.080000pt;}
.y11_c01400{bottom:750.720000pt;}
.y31_c01400{bottom:751.360000pt;}
.y10_c01400{bottom:752.000000pt;}
.yf_c01400{bottom:792.960000pt;}
.ye_c01400{bottom:835.840000pt;}
.y6_c01400{bottom:837.120000pt;}
.yd_c01400{bottom:838.400000pt;}
.y5_c01400{bottom:840.960000pt;}
.yc_c01400{bottom:873.600000pt;}
.yb_c01400{bottom:876.160000pt;}
.ya_c01400{bottom:877.440000pt;}
.y9_c01400{bottom:912.640000pt;}
.y8_c01400{bottom:913.920000pt;}
.y4_c01400{bottom:914.560000pt;}
.y7_c01400{bottom:915.200000pt;}
.y2_c01400{bottom:916.480000pt;}
.y3_c01400{bottom:917.760000pt;}
.y1_c01400{bottom:968.960000pt;}
.h13_c01400{height:13.822500pt;}
.h11_c01400{height:18.430000pt;}
.h15_c01400{height:23.037500pt;}
.h4_c01400{height:25.341250pt;}
.h12_c01400{height:27.645000pt;}
.h16_c01400{height:32.252500pt;}
.h14_c01400{height:34.556250pt;}
.hf_c01400{height:39.163750pt;}
.h9_c01400{height:41.467500pt;}
.h7_c01400{height:43.771250pt;}
.h5_c01400{height:46.075000pt;}
.h6_c01400{height:48.378750pt;}
.h8_c01400{height:50.682500pt;}
.hb_c01400{height:52.986250pt;}
.h3_c01400{height:55.290000pt;}
.ha_c01400{height:57.593750pt;}
.h10_c01400{height:59.897500pt;}
.h2_c01400{height:62.201250pt;}
.hd_c01400{height:64.505000pt;}
.he_c01400{height:66.808750pt;}
.hc_c01400{height:69.112500pt;}
.h0_c01400{height:1025.280000pt;}
.h1_c01400{height:1025.333333pt;}
.w0_c01400{width:693.120000pt;}
.w1_c01400{width:693.333333pt;}
.x0_c01400{left:0.000000pt;}
.x12_c01400{left:52.480000pt;}
.x2_c01400{left:53.760000pt;}
.x27_c01400{left:80.640000pt;}
.x3_c01400{left:82.560000pt;}
.x28_c01400{left:88.320000pt;}
.x9_c01400{left:99.840000pt;}
.xd_c01400{left:108.160000pt;}
.x4_c01400{left:109.440000pt;}
.xa_c01400{left:147.840000pt;}
.x38_c01400{left:156.160000pt;}
.x2d_c01400{left:165.120000pt;}
.x10_c01400{left:176.000000pt;}
.x5_c01400{left:177.920000pt;}
.x11_c01400{left:186.240000pt;}
.xe_c01400{left:195.200000pt;}
.x2e_c01400{left:214.400000pt;}
.xf_c01400{left:234.880000pt;}
.x13_c01400{left:243.840000pt;}
.x30_c01400{left:253.440000pt;}
.xb_c01400{left:263.680000pt;}
.x33_c01400{left:280.960000pt;}
.x22_c01400{left:282.240000pt;}
.x14_c01400{left:291.840000pt;}
.x23_c01400{left:320.000000pt;}
.x15_c01400{left:328.960000pt;}
.x24_c01400{left:330.240000pt;}
.xc_c01400{left:339.840000pt;}
.x2f_c01400{left:357.120000pt;}
.x31_c01400{left:359.040000pt;}
.x25_c01400{left:368.640000pt;}
.x29_c01400{left:376.320000pt;}
.x2b_c01400{left:396.160000pt;}
.x34_c01400{left:414.720000pt;}
.x2a_c01400{left:424.320000pt;}
.x26_c01400{left:443.520000pt;}
.x35_c01400{left:453.120000pt;}
.x36_c01400{left:462.720000pt;}
.x2c_c01400{left:490.880000pt;}
.x20_c01400{left:520.960000pt;}
.x32_c01400{left:538.240000pt;}
.x39_c01400{left:539.520000pt;}
.x18_c01400{left:540.800000pt;}
.x16_c01400{left:550.400000pt;}
.x1c_c01400{left:568.320000pt;}
.x6_c01400{left:570.880000pt;}
.x1f_c01400{left:596.480000pt;}
.x1d_c01400{left:597.760000pt;}
.x7_c01400{left:599.040000pt;}
.x37_c01400{left:604.800000pt;}
.x1a_c01400{left:606.720000pt;}
.x19_c01400{left:608.000000pt;}
.x1_c01400{left:613.120000pt;}
.x3a_c01400{left:625.920000pt;}
.x1e_c01400{left:634.240000pt;}
.x17_c01400{left:636.160000pt;}
.x8_c01400{left:637.440000pt;}
.x21_c01400{left:652.800000pt;}
.x1b_c01400{left:654.080000pt;}
}





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

.ir_c01401:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01401{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01401;src:url('chunks/assets/font_c85ff78a51b4808861d2dbc3.woff2')format("woff");}.ff1_c01401{font-family:ff1_c01401;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m53_c01401{transform:matrix(0.033425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.033425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.033425,0.000000,0.000000,0.250000,0,0);}
.m3b_c01401{transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);}
.m4f_c01401{transform:matrix(0.195850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195850,0.000000,0.000000,0.250000,0,0);}
.m42_c01401{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m50_c01401{transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);}
.m4b_c01401{transform:matrix(0.225325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225325,0.000000,0.000000,0.250000,0,0);}
.m17_c01401{transform:matrix(0.233450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233450,0.000000,0.000000,0.250000,0,0);}
.m48_c01401{transform:matrix(0.235700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235700,0.000000,0.000000,0.250000,0,0);}
.m29_c01401{transform:matrix(0.237525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237525,0.000000,0.000000,0.250000,0,0);}
.m44_c01401{transform:matrix(0.238900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238900,0.000000,0.000000,0.250000,0,0);}
.m2a_c01401{transform:matrix(0.240075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240075,0.000000,0.000000,0.250000,0,0);}
.m3_c01401{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m37_c01401{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m45_c01401{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01401{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m1b_c01401{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m20_c01401{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m16_c01401{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m22_c01401{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_c01401{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_c01401{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);}
.m33_c01401{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m19_c01401{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);}
.m1e_c01401{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);}
.m3d_c01401{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m15_c01401{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m46_c01401{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mc_c01401{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);}
.m4e_c01401{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);}
.m39_c01401{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m5_c01401{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m24_c01401{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m40_c01401{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1_c01401{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01401{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m35_c01401{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m32_c01401{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m31_c01401{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m23_c01401{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m9_c01401{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m51_c01401{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m27_c01401{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m38_c01401{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m43_c01401{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mf_c01401{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m7_c01401{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.ma_c01401{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);}
.m36_c01401{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01401{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01401{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_c01401{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m4_c01401{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m0_c01401{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);}
.me_c01401{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m25_c01401{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01401{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);}
.m11_c01401{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m18_c01401{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m14_c01401{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);}
.m52_c01401{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);}
.m2c_c01401{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01401{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);}
.m4d_c01401{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);}
.m4a_c01401{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01401{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01401{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01401{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m47_c01401{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m49_c01401{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m6_c01401{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01401{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m12_c01401{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);}
.md_c01401{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m21_c01401{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m28_c01401{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m41_c01401{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m2_c01401{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m13_c01401{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01401{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m34_c01401{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m10_c01401{transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01401{transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01401{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);}
.m3e_c01401{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.v1_c01401{vertical-align:-5.760000px;}
.v0_c01401{vertical-align:0.000000px;}
.ls0_c01401{letter-spacing:0.000000px;}
.sc__c01401{text-shadow:none;}
.sc0_c01401{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01401{-webkit-text-stroke:0px transparent;}
.sc0_c01401{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01401{word-spacing:0.000000px;}
.ws0_c01401{word-spacing:5.486141px;}
.ws1_c01401{word-spacing:6.728400px;}
.fc0_c01401{color:transparent;}
.fs12_c01401{font-size:31.680000px;}
.fs2_c01401{font-size:34.560000px;}
.fsc_c01401{font-size:37.440000px;}
.fsf_c01401{font-size:40.320000px;}
.fsa_c01401{font-size:43.200000px;}
.fs11_c01401{font-size:46.080000px;}
.fsd_c01401{font-size:48.960000px;}
.fs8_c01401{font-size:51.840000px;}
.fs7_c01401{font-size:54.720000px;}
.fs9_c01401{font-size:57.600000px;}
.fs1_c01401{font-size:60.480000px;}
.fs4_c01401{font-size:63.360000px;}
.fse_c01401{font-size:66.240000px;}
.fsb_c01401{font-size:69.120000px;}
.fs10_c01401{font-size:72.000000px;}
.fs0_c01401{font-size:74.880000px;}
.fs6_c01401{font-size:77.760000px;}
.fs5_c01401{font-size:80.640000px;}
.fs3_c01401{font-size:83.520000px;}
.fs13_c01401{font-size:86.400000px;}
.y0_c01401{bottom:0.000000px;}
.y5c_c01401{bottom:128.880000px;}
.y5e_c01401{bottom:129.600000px;}
.y5b_c01401{bottom:131.040000px;}
.y5d_c01401{bottom:131.760000px;}
.y6c_c01401{bottom:134.640000px;}
.y6a_c01401{bottom:135.360000px;}
.y6b_c01401{bottom:136.800000px;}
.y59_c01401{bottom:172.800000px;}
.y58_c01401{bottom:176.400000px;}
.y5a_c01401{bottom:177.120000px;}
.y67_c01401{bottom:178.560000px;}
.y68_c01401{bottom:180.000000px;}
.y69_c01401{bottom:181.440000px;}
.y55_c01401{bottom:216.000000px;}
.y56_c01401{bottom:217.440000px;}
.y54_c01401{bottom:219.600000px;}
.y57_c01401{bottom:220.320000px;}
.y65_c01401{bottom:221.040000px;}
.y66_c01401{bottom:221.760000px;}
.y52_c01401{bottom:259.200000px;}
.y51_c01401{bottom:262.080000px;}
.y64_c01401{bottom:262.800000px;}
.y53_c01401{bottom:263.520000px;}
.y63_c01401{bottom:264.240000px;}
.y4f_c01401{bottom:303.120000px;}
.y50_c01401{bottom:304.560000px;}
.y4e_c01401{bottom:305.280000px;}
.y4d_c01401{bottom:306.000000px;}
.y60_c01401{bottom:306.720000px;}
.y61_c01401{bottom:308.880000px;}
.y62_c01401{bottom:309.600000px;}
.y33_c01401{bottom:347.040000px;}
.y32_c01401{bottom:348.480000px;}
.y34_c01401{bottom:349.200000px;}
.y5f_c01401{bottom:349.920000px;}
.y30_c01401{bottom:389.520000px;}
.y2f_c01401{bottom:391.680000px;}
.y31_c01401{bottom:393.120000px;}
.y4b_c01401{bottom:394.560000px;}
.y4c_c01401{bottom:395.280000px;}
.y2e_c01401{bottom:431.280000px;}
.y4a_c01401{bottom:435.600000px;}
.y2d_c01401{bottom:436.320000px;}
.y49_c01401{bottom:438.480000px;}
.y2c_c01401{bottom:475.920000px;}
.y2a_c01401{bottom:478.080000px;}
.y2b_c01401{bottom:478.800000px;}
.y47_c01401{bottom:480.240000px;}
.y48_c01401{bottom:480.960000px;}
.y29_c01401{bottom:519.120000px;}
.y28_c01401{bottom:520.560000px;}
.y45_c01401{bottom:521.280000px;}
.y41_c01401{bottom:522.000000px;}
.y46_c01401{bottom:522.720000px;}
.y27_c01401{bottom:562.320000px;}
.y40_c01401{bottom:563.760000px;}
.y26_c01401{bottom:565.200000px;}
.y43_c01401{bottom:565.920000px;}
.y44_c01401{bottom:566.640000px;}
.y24_c01401{bottom:606.240000px;}
.y25_c01401{bottom:608.400000px;}
.y23_c01401{bottom:609.120000px;}
.y42_c01401{bottom:610.560000px;}
.y22_c01401{bottom:650.160000px;}
.y20_c01401{bottom:650.880000px;}
.y1f_c01401{bottom:651.600000px;}
.y3f_c01401{bottom:653.040000px;}
.y3e_c01401{bottom:653.760000px;}
.y21_c01401{bottom:654.480000px;}
.y1e_c01401{bottom:693.360000px;}
.y3d_c01401{bottom:694.080000px;}
.y1d_c01401{bottom:695.520000px;}
.y3b_c01401{bottom:696.960000px;}
.y3c_c01401{bottom:697.680000px;}
.y1b_c01401{bottom:736.560000px;}
.y1c_c01401{bottom:737.280000px;}
.y3a_c01401{bottom:738.000000px;}
.y1a_c01401{bottom:738.720000px;}
.y19_c01401{bottom:779.760000px;}
.y38_c01401{bottom:780.480000px;}
.y39_c01401{bottom:781.200000px;}
.y18_c01401{bottom:783.360000px;}
.y17_c01401{bottom:822.960000px;}
.y35_c01401{bottom:823.680000px;}
.y36_c01401{bottom:824.400000px;}
.y16_c01401{bottom:825.120000px;}
.y37_c01401{bottom:825.840000px;}
.y15_c01401{bottom:865.440000px;}
.y14_c01401{bottom:868.320000px;}
.y11_c01401{bottom:897.840000px;}
.yd_c01401{bottom:898.560000px;}
.y12_c01401{bottom:899.280000px;}
.y13_c01401{bottom:900.000000px;}
.yf_c01401{bottom:900.720000px;}
.y10_c01401{bottom:901.440000px;}
.yc_c01401{bottom:902.160000px;}
.ye_c01401{bottom:902.880000px;}
.y8_c01401{bottom:941.040000px;}
.y6_c01401{bottom:941.760000px;}
.ya_c01401{bottom:942.480000px;}
.y5_c01401{bottom:943.920000px;}
.yb_c01401{bottom:944.640000px;}
.y7_c01401{bottom:945.360000px;}
.y9_c01401{bottom:984.240000px;}
.y4_c01401{bottom:984.960000px;}
.y2_c01401{bottom:987.120000px;}
.y3_c01401{bottom:988.560000px;}
.y1_c01401{bottom:1105.920000px;}
.h14_c01401{height:28.508906px;}
.h4_c01401{height:31.100625px;}
.he_c01401{height:33.692344px;}
.h11_c01401{height:36.284062px;}
.hc_c01401{height:38.875781px;}
.h13_c01401{height:41.467500px;}
.hf_c01401{height:44.059219px;}
.ha_c01401{height:46.650937px;}
.h9_c01401{height:49.242656px;}
.hb_c01401{height:51.834375px;}
.h3_c01401{height:54.426094px;}
.h6_c01401{height:57.017812px;}
.h10_c01401{height:59.609531px;}
.hd_c01401{height:62.201250px;}
.h12_c01401{height:64.792969px;}
.h2_c01401{height:67.384687px;}
.h8_c01401{height:69.976406px;}
.h7_c01401{height:72.568125px;}
.h5_c01401{height:75.159844px;}
.h15_c01401{height:77.751563px;}
.h0_c01401{height:1155.600000px;}
.h1_c01401{height:1155.750000px;}
.w1_c01401{width:788.250000px;}
.w0_c01401{width:788.400000px;}
.x0_c01401{left:0.000000px;}
.x2_c01401{left:59.760000px;}
.x1a_c01401{left:61.200000px;}
.x3_c01401{left:92.880000px;}
.x4_c01401{left:123.120000px;}
.x13_c01401{left:124.560000px;}
.x12_c01401{left:178.560000px;}
.x16_c01401{left:209.520000px;}
.x1b_c01401{left:210.960000px;}
.x18_c01401{left:221.760000px;}
.x17_c01401{left:253.440000px;}
.x5_c01401{left:264.960000px;}
.x25_c01401{left:276.480000px;}
.x26_c01401{left:297.360000px;}
.xd_c01401{left:306.720000px;}
.x14_c01401{left:308.880000px;}
.x6_c01401{left:318.960000px;}
.x27_c01401{left:329.040000px;}
.x15_c01401{left:349.920000px;}
.x19_c01401{left:351.360000px;}
.x2a_c01401{left:373.680000px;}
.x29_c01401{left:384.480000px;}
.xe_c01401{left:393.840000px;}
.x7_c01401{left:404.640000px;}
.x28_c01401{left:415.440000px;}
.xf_c01401{left:447.120000px;}
.x10_c01401{left:491.040000px;}
.x22_c01401{left:586.080000px;}
.x21_c01401{left:587.520000px;}
.x11_c01401{left:608.400000px;}
.x1c_c01401{left:619.920000px;}
.x23_c01401{left:640.080000px;}
.xb_c01401{left:641.520000px;}
.x8_c01401{left:642.960000px;}
.x1e_c01401{left:673.200000px;}
.x9_c01401{left:674.640000px;}
.x20_c01401{left:676.080000px;}
.x1_c01401{left:682.560000px;}
.x2c_c01401{left:684.000000px;}
.x2b_c01401{left:714.960000px;}
.x1d_c01401{left:716.400000px;}
.xa_c01401{left:718.560000px;}
.x1f_c01401{left:736.560000px;}
.xc_c01401{left:738.000000px;}
.x24_c01401{left:772.560000px;}
@media print{
.v1_c01401{vertical-align:-5.120000pt;}
.v0_c01401{vertical-align:0.000000pt;}
.ls0_c01401{letter-spacing:0.000000pt;}
.ws2_c01401{word-spacing:0.000000pt;}
.ws0_c01401{word-spacing:4.876570pt;}
.ws1_c01401{word-spacing:5.980800pt;}
.fs12_c01401{font-size:28.160000pt;}
.fs2_c01401{font-size:30.720000pt;}
.fsc_c01401{font-size:33.280000pt;}
.fsf_c01401{font-size:35.840000pt;}
.fsa_c01401{font-size:38.400000pt;}
.fs11_c01401{font-size:40.960000pt;}
.fsd_c01401{font-size:43.520000pt;}
.fs8_c01401{font-size:46.080000pt;}
.fs7_c01401{font-size:48.640000pt;}
.fs9_c01401{font-size:51.200000pt;}
.fs1_c01401{font-size:53.760000pt;}
.fs4_c01401{font-size:56.320000pt;}
.fse_c01401{font-size:58.880000pt;}
.fsb_c01401{font-size:61.440000pt;}
.fs10_c01401{font-size:64.000000pt;}
.fs0_c01401{font-size:66.560000pt;}
.fs6_c01401{font-size:69.120000pt;}
.fs5_c01401{font-size:71.680000pt;}
.fs3_c01401{font-size:74.240000pt;}
.fs13_c01401{font-size:76.800000pt;}
.y0_c01401{bottom:0.000000pt;}
.y5c_c01401{bottom:114.560000pt;}
.y5e_c01401{bottom:115.200000pt;}
.y5b_c01401{bottom:116.480000pt;}
.y5d_c01401{bottom:117.120000pt;}
.y6c_c01401{bottom:119.680000pt;}
.y6a_c01401{bottom:120.320000pt;}
.y6b_c01401{bottom:121.600000pt;}
.y59_c01401{bottom:153.600000pt;}
.y58_c01401{bottom:156.800000pt;}
.y5a_c01401{bottom:157.440000pt;}
.y67_c01401{bottom:158.720000pt;}
.y68_c01401{bottom:160.000000pt;}
.y69_c01401{bottom:161.280000pt;}
.y55_c01401{bottom:192.000000pt;}
.y56_c01401{bottom:193.280000pt;}
.y54_c01401{bottom:195.200000pt;}
.y57_c01401{bottom:195.840000pt;}
.y65_c01401{bottom:196.480000pt;}
.y66_c01401{bottom:197.120000pt;}
.y52_c01401{bottom:230.400000pt;}
.y51_c01401{bottom:232.960000pt;}
.y64_c01401{bottom:233.600000pt;}
.y53_c01401{bottom:234.240000pt;}
.y63_c01401{bottom:234.880000pt;}
.y4f_c01401{bottom:269.440000pt;}
.y50_c01401{bottom:270.720000pt;}
.y4e_c01401{bottom:271.360000pt;}
.y4d_c01401{bottom:272.000000pt;}
.y60_c01401{bottom:272.640000pt;}
.y61_c01401{bottom:274.560000pt;}
.y62_c01401{bottom:275.200000pt;}
.y33_c01401{bottom:308.480000pt;}
.y32_c01401{bottom:309.760000pt;}
.y34_c01401{bottom:310.400000pt;}
.y5f_c01401{bottom:311.040000pt;}
.y30_c01401{bottom:346.240000pt;}
.y2f_c01401{bottom:348.160000pt;}
.y31_c01401{bottom:349.440000pt;}
.y4b_c01401{bottom:350.720000pt;}
.y4c_c01401{bottom:351.360000pt;}
.y2e_c01401{bottom:383.360000pt;}
.y4a_c01401{bottom:387.200000pt;}
.y2d_c01401{bottom:387.840000pt;}
.y49_c01401{bottom:389.760000pt;}
.y2c_c01401{bottom:423.040000pt;}
.y2a_c01401{bottom:424.960000pt;}
.y2b_c01401{bottom:425.600000pt;}
.y47_c01401{bottom:426.880000pt;}
.y48_c01401{bottom:427.520000pt;}
.y29_c01401{bottom:461.440000pt;}
.y28_c01401{bottom:462.720000pt;}
.y45_c01401{bottom:463.360000pt;}
.y41_c01401{bottom:464.000000pt;}
.y46_c01401{bottom:464.640000pt;}
.y27_c01401{bottom:499.840000pt;}
.y40_c01401{bottom:501.120000pt;}
.y26_c01401{bottom:502.400000pt;}
.y43_c01401{bottom:503.040000pt;}
.y44_c01401{bottom:503.680000pt;}
.y24_c01401{bottom:538.880000pt;}
.y25_c01401{bottom:540.800000pt;}
.y23_c01401{bottom:541.440000pt;}
.y42_c01401{bottom:542.720000pt;}
.y22_c01401{bottom:577.920000pt;}
.y20_c01401{bottom:578.560000pt;}
.y1f_c01401{bottom:579.200000pt;}
.y3f_c01401{bottom:580.480000pt;}
.y3e_c01401{bottom:581.120000pt;}
.y21_c01401{bottom:581.760000pt;}
.y1e_c01401{bottom:616.320000pt;}
.y3d_c01401{bottom:616.960000pt;}
.y1d_c01401{bottom:618.240000pt;}
.y3b_c01401{bottom:619.520000pt;}
.y3c_c01401{bottom:620.160000pt;}
.y1b_c01401{bottom:654.720000pt;}
.y1c_c01401{bottom:655.360000pt;}
.y3a_c01401{bottom:656.000000pt;}
.y1a_c01401{bottom:656.640000pt;}
.y19_c01401{bottom:693.120000pt;}
.y38_c01401{bottom:693.760000pt;}
.y39_c01401{bottom:694.400000pt;}
.y18_c01401{bottom:696.320000pt;}
.y17_c01401{bottom:731.520000pt;}
.y35_c01401{bottom:732.160000pt;}
.y36_c01401{bottom:732.800000pt;}
.y16_c01401{bottom:733.440000pt;}
.y37_c01401{bottom:734.080000pt;}
.y15_c01401{bottom:769.280000pt;}
.y14_c01401{bottom:771.840000pt;}
.y11_c01401{bottom:798.080000pt;}
.yd_c01401{bottom:798.720000pt;}
.y12_c01401{bottom:799.360000pt;}
.y13_c01401{bottom:800.000000pt;}
.yf_c01401{bottom:800.640000pt;}
.y10_c01401{bottom:801.280000pt;}
.yc_c01401{bottom:801.920000pt;}
.ye_c01401{bottom:802.560000pt;}
.y8_c01401{bottom:836.480000pt;}
.y6_c01401{bottom:837.120000pt;}
.ya_c01401{bottom:837.760000pt;}
.y5_c01401{bottom:839.040000pt;}
.yb_c01401{bottom:839.680000pt;}
.y7_c01401{bottom:840.320000pt;}
.y9_c01401{bottom:874.880000pt;}
.y4_c01401{bottom:875.520000pt;}
.y2_c01401{bottom:877.440000pt;}
.y3_c01401{bottom:878.720000pt;}
.y1_c01401{bottom:983.040000pt;}
.h14_c01401{height:25.341250pt;}
.h4_c01401{height:27.645000pt;}
.he_c01401{height:29.948750pt;}
.h11_c01401{height:32.252500pt;}
.hc_c01401{height:34.556250pt;}
.h13_c01401{height:36.860000pt;}
.hf_c01401{height:39.163750pt;}
.ha_c01401{height:41.467500pt;}
.h9_c01401{height:43.771250pt;}
.hb_c01401{height:46.075000pt;}
.h3_c01401{height:48.378750pt;}
.h6_c01401{height:50.682500pt;}
.h10_c01401{height:52.986250pt;}
.hd_c01401{height:55.290000pt;}
.h12_c01401{height:57.593750pt;}
.h2_c01401{height:59.897500pt;}
.h8_c01401{height:62.201250pt;}
.h7_c01401{height:64.505000pt;}
.h5_c01401{height:66.808750pt;}
.h15_c01401{height:69.112500pt;}
.h0_c01401{height:1027.200000pt;}
.h1_c01401{height:1027.333333pt;}
.w1_c01401{width:700.666667pt;}
.w0_c01401{width:700.800000pt;}
.x0_c01401{left:0.000000pt;}
.x2_c01401{left:53.120000pt;}
.x1a_c01401{left:54.400000pt;}
.x3_c01401{left:82.560000pt;}
.x4_c01401{left:109.440000pt;}
.x13_c01401{left:110.720000pt;}
.x12_c01401{left:158.720000pt;}
.x16_c01401{left:186.240000pt;}
.x1b_c01401{left:187.520000pt;}
.x18_c01401{left:197.120000pt;}
.x17_c01401{left:225.280000pt;}
.x5_c01401{left:235.520000pt;}
.x25_c01401{left:245.760000pt;}
.x26_c01401{left:264.320000pt;}
.xd_c01401{left:272.640000pt;}
.x14_c01401{left:274.560000pt;}
.x6_c01401{left:283.520000pt;}
.x27_c01401{left:292.480000pt;}
.x15_c01401{left:311.040000pt;}
.x19_c01401{left:312.320000pt;}
.x2a_c01401{left:332.160000pt;}
.x29_c01401{left:341.760000pt;}
.xe_c01401{left:350.080000pt;}
.x7_c01401{left:359.680000pt;}
.x28_c01401{left:369.280000pt;}
.xf_c01401{left:397.440000pt;}
.x10_c01401{left:436.480000pt;}
.x22_c01401{left:520.960000pt;}
.x21_c01401{left:522.240000pt;}
.x11_c01401{left:540.800000pt;}
.x1c_c01401{left:551.040000pt;}
.x23_c01401{left:568.960000pt;}
.xb_c01401{left:570.240000pt;}
.x8_c01401{left:571.520000pt;}
.x1e_c01401{left:598.400000pt;}
.x9_c01401{left:599.680000pt;}
.x20_c01401{left:600.960000pt;}
.x1_c01401{left:606.720000pt;}
.x2c_c01401{left:608.000000pt;}
.x2b_c01401{left:635.520000pt;}
.x1d_c01401{left:636.800000pt;}
.xa_c01401{left:638.720000pt;}
.x1f_c01401{left:654.720000pt;}
.xc_c01401{left:656.000000pt;}
.x24_c01401{left:686.720000pt;}
}





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

.ir_c01402:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01402{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01402;src:url('chunks/assets/font_7f1455ecc54bc96f380663c3.woff2')format("woff");}.ff1_c01402{font-family:ff1_c01402;line-height:1.109863;font-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_c01402{transform:matrix(0.206075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206075,0.000000,0.000000,0.250000,0,0);}
.m42_c01402{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m18_c01402{transform:matrix(0.220450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220450,0.000000,0.000000,0.250000,0,0);}
.m39_c01402{transform:matrix(0.220900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220900,0.000000,0.000000,0.250000,0,0);}
.m2f_c01402{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);}
.m16_c01402{transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);}
.m36_c01402{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m28_c01402{transform:matrix(0.227825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227825,0.000000,0.000000,0.250000,0,0);}
.m2c_c01402{transform:matrix(0.227850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227850,0.000000,0.000000,0.250000,0,0);}
.m4a_c01402{transform:matrix(0.229475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229475,0.000000,0.000000,0.250000,0,0);}
.m47_c01402{transform:matrix(0.233525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233525,0.000000,0.000000,0.250000,0,0);}
.mb_c01402{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m3f_c01402{transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);}
.m13_c01402{transform:matrix(0.235850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235850,0.000000,0.000000,0.250000,0,0);}
.m1b_c01402{transform:matrix(0.241075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241075,0.000000,0.000000,0.250000,0,0);}
.m41_c01402{transform:matrix(0.241200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241200,0.000000,0.000000,0.250000,0,0);}
.m3d_c01402{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m24_c01402{transform:matrix(0.245700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245700,0.000000,0.000000,0.250000,0,0);}
.m2b_c01402{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m33_c01402{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);}
.m2d_c01402{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);}
.m35_c01402{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);}
.m1e_c01402{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m9_c01402{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);}
.m32_c01402{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_c01402{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);}
.m3c_c01402{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m3_c01402{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m19_c01402{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m0_c01402{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.mc_c01402{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01402{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.md_c01402{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1_c01402{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m2_c01402{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_c01402{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m37_c01402{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m6_c01402{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01402{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m5_c01402{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01402{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m7_c01402{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m27_c01402{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m15_c01402{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m44_c01402{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);}
.m46_c01402{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01402{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m4_c01402{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m34_c01402{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.mf_c01402{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m30_c01402{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m8_c01402{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);}
.m26_c01402{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m10_c01402{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);}
.m25_c01402{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);}
.m3e_c01402{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m38_c01402{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);}
.m31_c01402{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m43_c01402{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m12_c01402{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_c01402{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m17_c01402{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.me_c01402{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m40_c01402{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m29_c01402{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);}
.m22_c01402{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.ma_c01402{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m49_c01402{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m11_c01402{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);}
.m2a_c01402{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01402{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);}
.m2e_c01402{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m20_c01402{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m45_c01402{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m21_c01402{transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);}
.v0_c01402{vertical-align:0.000000px;}
.v1_c01402{vertical-align:5.760000px;}
.ls0_c01402{letter-spacing:0.000000px;}
.sc__c01402{text-shadow:none;}
.sc0_c01402{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01402{-webkit-text-stroke:0px transparent;}
.sc0_c01402{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01402{word-spacing:0.000000px;}
.ws0_c01402{word-spacing:11.690400px;}
.fc0_c01402{color:transparent;}
.fsa_c01402{font-size:28.800000px;}
.fs11_c01402{font-size:31.680000px;}
.fs8_c01402{font-size:37.440000px;}
.fsb_c01402{font-size:43.200000px;}
.fsc_c01402{font-size:46.080000px;}
.fs0_c01402{font-size:51.840000px;}
.fs7_c01402{font-size:54.720000px;}
.fs1_c01402{font-size:57.600000px;}
.fs2_c01402{font-size:60.480000px;}
.fs6_c01402{font-size:63.360000px;}
.fs4_c01402{font-size:66.240000px;}
.fsf_c01402{font-size:69.120000px;}
.fsd_c01402{font-size:72.000000px;}
.fse_c01402{font-size:74.880000px;}
.fs5_c01402{font-size:77.760000px;}
.fs9_c01402{font-size:80.640000px;}
.fs3_c01402{font-size:83.520000px;}
.fs10_c01402{font-size:86.400000px;}
.fs12_c01402{font-size:112.320000px;}
.y0_c01402{bottom:0.000000px;}
.y67_c01402{bottom:74.160000px;}
.y66_c01402{bottom:77.040000px;}
.y68_c01402{bottom:79.920000px;}
.y69_c01402{bottom:80.640000px;}
.y6a_c01402{bottom:81.360000px;}
.y63_c01402{bottom:113.760000px;}
.y60_c01402{bottom:118.080000px;}
.y61_c01402{bottom:120.240000px;}
.y62_c01402{bottom:120.960000px;}
.y5f_c01402{bottom:121.680000px;}
.y64_c01402{bottom:122.400000px;}
.y65_c01402{bottom:124.560000px;}
.y5b_c01402{bottom:161.280000px;}
.y5c_c01402{bottom:162.720000px;}
.y5a_c01402{bottom:164.160000px;}
.y5d_c01402{bottom:166.320000px;}
.y5e_c01402{bottom:167.760000px;}
.y40_c01402{bottom:204.480000px;}
.y3e_c01402{bottom:208.080000px;}
.y3f_c01402{bottom:209.520000px;}
.y59_c01402{bottom:210.240000px;}
.y58_c01402{bottom:210.960000px;}
.y3d_c01402{bottom:247.680000px;}
.y3b_c01402{bottom:252.000000px;}
.y3c_c01402{bottom:252.720000px;}
.y56_c01402{bottom:253.440000px;}
.y57_c01402{bottom:254.880000px;}
.y3a_c01402{bottom:292.320000px;}
.y39_c01402{bottom:293.760000px;}
.y54_c01402{bottom:295.920000px;}
.y55_c01402{bottom:296.640000px;}
.y38_c01402{bottom:334.080000px;}
.y36_c01402{bottom:336.960000px;}
.y37_c01402{bottom:337.680000px;}
.y53_c01402{bottom:339.840000px;}
.y35_c01402{bottom:379.440000px;}
.y34_c01402{bottom:381.600000px;}
.y52_c01402{bottom:383.040000px;}
.y33_c01402{bottom:422.640000px;}
.y32_c01402{bottom:424.080000px;}
.y51_c01402{bottom:424.800000px;}
.y31_c01402{bottom:466.560000px;}
.y2f_c01402{bottom:468.000000px;}
.y50_c01402{bottom:468.720000px;}
.y30_c01402{bottom:469.440000px;}
.y4f_c01402{bottom:470.160000px;}
.y2d_c01402{bottom:512.640000px;}
.y2e_c01402{bottom:513.360000px;}
.y2a_c01402{bottom:563.040000px;}
.y2c_c01402{bottom:563.760000px;}
.y4e_c01402{bottom:565.200000px;}
.y29_c01402{bottom:565.920000px;}
.y2b_c01402{bottom:566.640000px;}
.y27_c01402{bottom:606.960000px;}
.y26_c01402{bottom:608.400000px;}
.y4d_c01402{bottom:609.120000px;}
.y4c_c01402{bottom:609.840000px;}
.y28_c01402{bottom:610.560000px;}
.y23_c01402{bottom:650.160000px;}
.y24_c01402{bottom:650.880000px;}
.y22_c01402{bottom:651.600000px;}
.y4b_c01402{bottom:652.320000px;}
.y25_c01402{bottom:653.760000px;}
.y21_c01402{bottom:693.360000px;}
.y1f_c01402{bottom:694.080000px;}
.y20_c01402{bottom:696.960000px;}
.y1b_c01402{bottom:725.760000px;}
.y1e_c01402{bottom:726.480000px;}
.y1a_c01402{bottom:727.200000px;}
.y4a_c01402{bottom:727.920000px;}
.y1d_c01402{bottom:728.640000px;}
.y1c_c01402{bottom:729.360000px;}
.y49_c01402{bottom:730.080000px;}
.y19_c01402{bottom:768.960000px;}
.y17_c01402{bottom:769.680000px;}
.y47_c01402{bottom:770.400000px;}
.y48_c01402{bottom:771.120000px;}
.y16_c01402{bottom:771.840000px;}
.y18_c01402{bottom:772.560000px;}
.y12_c01402{bottom:812.880000px;}
.y46_c01402{bottom:813.600000px;}
.y15_c01402{bottom:814.320000px;}
.y11_c01402{bottom:815.040000px;}
.y13_c01402{bottom:815.760000px;}
.y10_c01402{bottom:816.480000px;}
.y14_c01402{bottom:817.200000px;}
.yf_c01402{bottom:854.640000px;}
.y45_c01402{bottom:855.360000px;}
.ye_c01402{bottom:856.800000px;}
.yc_c01402{bottom:857.520000px;}
.yb_c01402{bottom:858.240000px;}
.yd_c01402{bottom:860.400000px;}
.ya_c01402{bottom:900.000000px;}
.y8_c01402{bottom:901.440000px;}
.y9_c01402{bottom:902.160000px;}
.y43_c01402{bottom:941.760000px;}
.y7_c01402{bottom:943.200000px;}
.y5_c01402{bottom:943.920000px;}
.y44_c01402{bottom:945.360000px;}
.y6_c01402{bottom:946.080000px;}
.y4_c01402{bottom:986.400000px;}
.y42_c01402{bottom:987.840000px;}
.y3_c01402{bottom:988.560000px;}
.y2_c01402{bottom:1032.480000px;}
.y1_c01402{bottom:1033.920000px;}
.y41_c01402{bottom:1098.720000px;}
.hc_c01402{height:25.917187px;}
.h13_c01402{height:28.508906px;}
.ha_c01402{height:33.692344px;}
.hd_c01402{height:38.875781px;}
.he_c01402{height:41.467500px;}
.h2_c01402{height:46.650937px;}
.h9_c01402{height:49.242656px;}
.h3_c01402{height:51.834375px;}
.h4_c01402{height:54.426094px;}
.h8_c01402{height:57.017812px;}
.h6_c01402{height:59.609531px;}
.h14_c01402{height:60.186094px;}
.h11_c01402{height:62.201250px;}
.hf_c01402{height:64.792969px;}
.h10_c01402{height:67.384687px;}
.h7_c01402{height:69.976406px;}
.hb_c01402{height:72.568125px;}
.h5_c01402{height:75.159844px;}
.h12_c01402{height:77.751563px;}
.h15_c01402{height:101.077031px;}
.h0_c01402{height:1152.720000px;}
.h1_c01402{height:1152.750000px;}
.w1_c01402{width:783.000000px;}
.w0_c01402{width:783.360000px;}
.x0_c01402{left:0.000000px;}
.x3_c01402{left:56.880000px;}
.x1b_c01402{left:58.320000px;}
.x9_c01402{left:88.560000px;}
.x1_c01402{left:109.440000px;}
.x14_c01402{left:118.800000px;}
.x4_c01402{left:120.240000px;}
.x1a_c01402{left:153.360000px;}
.x2_c01402{left:164.160000px;}
.x1c_c01402{left:175.680000px;}
.x15_c01402{left:185.760000px;}
.x5_c01402{left:195.840000px;}
.x6_c01402{left:207.360000px;}
.x19_c01402{left:228.960000px;}
.x16_c01402{left:237.600000px;}
.x10_c01402{left:249.840000px;}
.x7_c01402{left:251.280000px;}
.xa_c01402{left:261.360000px;}
.x11_c01402{left:282.960000px;}
.xb_c01402{left:315.360000px;}
.x12_c01402{left:336.240000px;}
.x2d_c01402{left:347.040000px;}
.x17_c01402{left:356.400000px;}
.xc_c01402{left:358.560000px;}
.xd_c01402{left:370.080000px;}
.x13_c01402{left:378.720000px;}
.x18_c01402{left:401.760000px;}
.xe_c01402{left:410.400000px;}
.x8_c01402{left:444.960000px;}
.xf_c01402{left:455.760000px;}
.x24_c01402{left:583.200000px;}
.x27_c01402{left:584.640000px;}
.x22_c01402{left:605.520000px;}
.x1e_c01402{left:606.960000px;}
.x29_c01402{left:615.600000px;}
.x26_c01402{left:637.200000px;}
.x23_c01402{left:638.640000px;}
.x28_c01402{left:669.600000px;}
.x20_c01402{left:671.040000px;}
.x2c_c01402{left:679.680000px;}
.x1d_c01402{left:688.320000px;}
.x2a_c01402{left:702.000000px;}
.x25_c01402{left:712.080000px;}
.x1f_c01402{left:714.240000px;}
.x2b_c01402{left:732.240000px;}
.x21_c01402{left:734.400000px;}
@media print{
.v0_c01402{vertical-align:0.000000pt;}
.v1_c01402{vertical-align:5.120000pt;}
.ls0_c01402{letter-spacing:0.000000pt;}
.ws1_c01402{word-spacing:0.000000pt;}
.ws0_c01402{word-spacing:10.391467pt;}
.fsa_c01402{font-size:25.600000pt;}
.fs11_c01402{font-size:28.160000pt;}
.fs8_c01402{font-size:33.280000pt;}
.fsb_c01402{font-size:38.400000pt;}
.fsc_c01402{font-size:40.960000pt;}
.fs0_c01402{font-size:46.080000pt;}
.fs7_c01402{font-size:48.640000pt;}
.fs1_c01402{font-size:51.200000pt;}
.fs2_c01402{font-size:53.760000pt;}
.fs6_c01402{font-size:56.320000pt;}
.fs4_c01402{font-size:58.880000pt;}
.fsf_c01402{font-size:61.440000pt;}
.fsd_c01402{font-size:64.000000pt;}
.fse_c01402{font-size:66.560000pt;}
.fs5_c01402{font-size:69.120000pt;}
.fs9_c01402{font-size:71.680000pt;}
.fs3_c01402{font-size:74.240000pt;}
.fs10_c01402{font-size:76.800000pt;}
.fs12_c01402{font-size:99.840000pt;}
.y0_c01402{bottom:0.000000pt;}
.y67_c01402{bottom:65.920000pt;}
.y66_c01402{bottom:68.480000pt;}
.y68_c01402{bottom:71.040000pt;}
.y69_c01402{bottom:71.680000pt;}
.y6a_c01402{bottom:72.320000pt;}
.y63_c01402{bottom:101.120000pt;}
.y60_c01402{bottom:104.960000pt;}
.y61_c01402{bottom:106.880000pt;}
.y62_c01402{bottom:107.520000pt;}
.y5f_c01402{bottom:108.160000pt;}
.y64_c01402{bottom:108.800000pt;}
.y65_c01402{bottom:110.720000pt;}
.y5b_c01402{bottom:143.360000pt;}
.y5c_c01402{bottom:144.640000pt;}
.y5a_c01402{bottom:145.920000pt;}
.y5d_c01402{bottom:147.840000pt;}
.y5e_c01402{bottom:149.120000pt;}
.y40_c01402{bottom:181.760000pt;}
.y3e_c01402{bottom:184.960000pt;}
.y3f_c01402{bottom:186.240000pt;}
.y59_c01402{bottom:186.880000pt;}
.y58_c01402{bottom:187.520000pt;}
.y3d_c01402{bottom:220.160000pt;}
.y3b_c01402{bottom:224.000000pt;}
.y3c_c01402{bottom:224.640000pt;}
.y56_c01402{bottom:225.280000pt;}
.y57_c01402{bottom:226.560000pt;}
.y3a_c01402{bottom:259.840000pt;}
.y39_c01402{bottom:261.120000pt;}
.y54_c01402{bottom:263.040000pt;}
.y55_c01402{bottom:263.680000pt;}
.y38_c01402{bottom:296.960000pt;}
.y36_c01402{bottom:299.520000pt;}
.y37_c01402{bottom:300.160000pt;}
.y53_c01402{bottom:302.080000pt;}
.y35_c01402{bottom:337.280000pt;}
.y34_c01402{bottom:339.200000pt;}
.y52_c01402{bottom:340.480000pt;}
.y33_c01402{bottom:375.680000pt;}
.y32_c01402{bottom:376.960000pt;}
.y51_c01402{bottom:377.600000pt;}
.y31_c01402{bottom:414.720000pt;}
.y2f_c01402{bottom:416.000000pt;}
.y50_c01402{bottom:416.640000pt;}
.y30_c01402{bottom:417.280000pt;}
.y4f_c01402{bottom:417.920000pt;}
.y2d_c01402{bottom:455.680000pt;}
.y2e_c01402{bottom:456.320000pt;}
.y2a_c01402{bottom:500.480000pt;}
.y2c_c01402{bottom:501.120000pt;}
.y4e_c01402{bottom:502.400000pt;}
.y29_c01402{bottom:503.040000pt;}
.y2b_c01402{bottom:503.680000pt;}
.y27_c01402{bottom:539.520000pt;}
.y26_c01402{bottom:540.800000pt;}
.y4d_c01402{bottom:541.440000pt;}
.y4c_c01402{bottom:542.080000pt;}
.y28_c01402{bottom:542.720000pt;}
.y23_c01402{bottom:577.920000pt;}
.y24_c01402{bottom:578.560000pt;}
.y22_c01402{bottom:579.200000pt;}
.y4b_c01402{bottom:579.840000pt;}
.y25_c01402{bottom:581.120000pt;}
.y21_c01402{bottom:616.320000pt;}
.y1f_c01402{bottom:616.960000pt;}
.y20_c01402{bottom:619.520000pt;}
.y1b_c01402{bottom:645.120000pt;}
.y1e_c01402{bottom:645.760000pt;}
.y1a_c01402{bottom:646.400000pt;}
.y4a_c01402{bottom:647.040000pt;}
.y1d_c01402{bottom:647.680000pt;}
.y1c_c01402{bottom:648.320000pt;}
.y49_c01402{bottom:648.960000pt;}
.y19_c01402{bottom:683.520000pt;}
.y17_c01402{bottom:684.160000pt;}
.y47_c01402{bottom:684.800000pt;}
.y48_c01402{bottom:685.440000pt;}
.y16_c01402{bottom:686.080000pt;}
.y18_c01402{bottom:686.720000pt;}
.y12_c01402{bottom:722.560000pt;}
.y46_c01402{bottom:723.200000pt;}
.y15_c01402{bottom:723.840000pt;}
.y11_c01402{bottom:724.480000pt;}
.y13_c01402{bottom:725.120000pt;}
.y10_c01402{bottom:725.760000pt;}
.y14_c01402{bottom:726.400000pt;}
.yf_c01402{bottom:759.680000pt;}
.y45_c01402{bottom:760.320000pt;}
.ye_c01402{bottom:761.600000pt;}
.yc_c01402{bottom:762.240000pt;}
.yb_c01402{bottom:762.880000pt;}
.yd_c01402{bottom:764.800000pt;}
.ya_c01402{bottom:800.000000pt;}
.y8_c01402{bottom:801.280000pt;}
.y9_c01402{bottom:801.920000pt;}
.y43_c01402{bottom:837.120000pt;}
.y7_c01402{bottom:838.400000pt;}
.y5_c01402{bottom:839.040000pt;}
.y44_c01402{bottom:840.320000pt;}
.y6_c01402{bottom:840.960000pt;}
.y4_c01402{bottom:876.800000pt;}
.y42_c01402{bottom:878.080000pt;}
.y3_c01402{bottom:878.720000pt;}
.y2_c01402{bottom:917.760000pt;}
.y1_c01402{bottom:919.040000pt;}
.y41_c01402{bottom:976.640000pt;}
.hc_c01402{height:23.037500pt;}
.h13_c01402{height:25.341250pt;}
.ha_c01402{height:29.948750pt;}
.hd_c01402{height:34.556250pt;}
.he_c01402{height:36.860000pt;}
.h2_c01402{height:41.467500pt;}
.h9_c01402{height:43.771250pt;}
.h3_c01402{height:46.075000pt;}
.h4_c01402{height:48.378750pt;}
.h8_c01402{height:50.682500pt;}
.h6_c01402{height:52.986250pt;}
.h14_c01402{height:53.498750pt;}
.h11_c01402{height:55.290000pt;}
.hf_c01402{height:57.593750pt;}
.h10_c01402{height:59.897500pt;}
.h7_c01402{height:62.201250pt;}
.hb_c01402{height:64.505000pt;}
.h5_c01402{height:66.808750pt;}
.h12_c01402{height:69.112500pt;}
.h15_c01402{height:89.846250pt;}
.h0_c01402{height:1024.640000pt;}
.h1_c01402{height:1024.666667pt;}
.w1_c01402{width:696.000000pt;}
.w0_c01402{width:696.320000pt;}
.x0_c01402{left:0.000000pt;}
.x3_c01402{left:50.560000pt;}
.x1b_c01402{left:51.840000pt;}
.x9_c01402{left:78.720000pt;}
.x1_c01402{left:97.280000pt;}
.x14_c01402{left:105.600000pt;}
.x4_c01402{left:106.880000pt;}
.x1a_c01402{left:136.320000pt;}
.x2_c01402{left:145.920000pt;}
.x1c_c01402{left:156.160000pt;}
.x15_c01402{left:165.120000pt;}
.x5_c01402{left:174.080000pt;}
.x6_c01402{left:184.320000pt;}
.x19_c01402{left:203.520000pt;}
.x16_c01402{left:211.200000pt;}
.x10_c01402{left:222.080000pt;}
.x7_c01402{left:223.360000pt;}
.xa_c01402{left:232.320000pt;}
.x11_c01402{left:251.520000pt;}
.xb_c01402{left:280.320000pt;}
.x12_c01402{left:298.880000pt;}
.x2d_c01402{left:308.480000pt;}
.x17_c01402{left:316.800000pt;}
.xc_c01402{left:318.720000pt;}
.xd_c01402{left:328.960000pt;}
.x13_c01402{left:336.640000pt;}
.x18_c01402{left:357.120000pt;}
.xe_c01402{left:364.800000pt;}
.x8_c01402{left:395.520000pt;}
.xf_c01402{left:405.120000pt;}
.x24_c01402{left:518.400000pt;}
.x27_c01402{left:519.680000pt;}
.x22_c01402{left:538.240000pt;}
.x1e_c01402{left:539.520000pt;}
.x29_c01402{left:547.200000pt;}
.x26_c01402{left:566.400000pt;}
.x23_c01402{left:567.680000pt;}
.x28_c01402{left:595.200000pt;}
.x20_c01402{left:596.480000pt;}
.x2c_c01402{left:604.160000pt;}
.x1d_c01402{left:611.840000pt;}
.x2a_c01402{left:624.000000pt;}
.x25_c01402{left:632.960000pt;}
.x1f_c01402{left:634.880000pt;}
.x2b_c01402{left:650.880000pt;}
.x21_c01402{left:652.800000pt;}
}





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

.ir_c01403:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01403{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01403;src:url('chunks/assets/font_da7c8e312ed47be8a7e4958a.woff2')format("woff");}.ff1_c01403{font-family:ff1_c01403;line-height:1.109863;font-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_c01403{transform:matrix(0.174875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174875,0.000000,0.000000,0.250000,0,0);}
.m37_c01403{transform:matrix(0.195850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195850,0.000000,0.000000,0.250000,0,0);}
.m45_c01403{transform:matrix(0.212175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212175,0.000000,0.000000,0.250000,0,0);}
.m3c_c01403{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01403{transform:matrix(0.221800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221800,0.000000,0.000000,0.250000,0,0);}
.m19_c01403{transform:matrix(0.226775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226775,0.000000,0.000000,0.250000,0,0);}
.m2e_c01403{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m42_c01403{transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);}
.m3e_c01403{transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);}
.m2d_c01403{transform:matrix(0.234825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234825,0.000000,0.000000,0.250000,0,0);}
.m26_c01403{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m31_c01403{transform:matrix(0.243275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243275,0.000000,0.000000,0.250000,0,0);}
.m1b_c01403{transform:matrix(0.247725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247725,0.000000,0.000000,0.250000,0,0);}
.m21_c01403{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);}
.m27_c01403{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mf_c01403{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m13_c01403{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);}
.m35_c01403{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.me_c01403{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m24_c01403{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m2_c01403{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.ma_c01403{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m1_c01403{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m3_c01403{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m15_c01403{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m29_c01403{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);}
.m30_c01403{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m8_c01403{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m4_c01403{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m9_c01403{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01403{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01403{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01403{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m7_c01403{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01403{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01403{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01403{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m41_c01403{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m14_c01403{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m10_c01403{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);}
.m33_c01403{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);}
.m43_c01403{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);}
.m2a_c01403{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);}
.m38_c01403{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m25_c01403{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_c01403{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01403{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);}
.m5_c01403{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m32_c01403{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01403{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01403{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);}
.m6_c01403{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);}
.m0_c01403{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m23_c01403{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);}
.m36_c01403{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);}
.m1c_c01403{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);}
.m34_c01403{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m39_c01403{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m12_c01403{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01403{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m16_c01403{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m40_c01403{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m46_c01403{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m22_c01403{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.mb_c01403{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);}
.m11_c01403{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m28_c01403{transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01403{transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);}
.m17_c01403{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m44_c01403{transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01403{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.v2_c01403{vertical-align:-8.640000px;}
.v1_c01403{vertical-align:-5.760000px;}
.v0_c01403{vertical-align:0.000000px;}
.v3_c01403{vertical-align:2.880000px;}
.ls0_c01403{letter-spacing:0.000000px;}
.sc__c01403{text-shadow:none;}
.sc0_c01403{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01403{-webkit-text-stroke:0px transparent;}
.sc0_c01403{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01403{word-spacing:0.000000px;}
.ws2_c01403{word-spacing:9.212400px;}
.ws0_c01403{word-spacing:11.690400px;}
.ws1_c01403{word-spacing:50.570400px;}
.fc0_c01403{color:transparent;}
.fsc_c01403{font-size:25.920000px;}
.fs10_c01403{font-size:31.680000px;}
.fsf_c01403{font-size:40.320000px;}
.fsb_c01403{font-size:43.200000px;}
.fs7_c01403{font-size:51.840000px;}
.fs6_c01403{font-size:54.720000px;}
.fsa_c01403{font-size:57.600000px;}
.fs1_c01403{font-size:60.480000px;}
.fs5_c01403{font-size:63.360000px;}
.fs8_c01403{font-size:66.240000px;}
.fs3_c01403{font-size:69.120000px;}
.fs0_c01403{font-size:72.000000px;}
.fs4_c01403{font-size:74.880000px;}
.fs2_c01403{font-size:77.760000px;}
.fs9_c01403{font-size:80.640000px;}
.fsd_c01403{font-size:89.280000px;}
.fse_c01403{font-size:106.560000px;}
.y0_c01403{bottom:0.000000px;}
.y6e_c01403{bottom:97.920000px;}
.y70_c01403{bottom:98.640000px;}
.y6f_c01403{bottom:99.360000px;}
.y69_c01403{bottom:139.680000px;}
.y6b_c01403{bottom:140.400000px;}
.y6a_c01403{bottom:141.120000px;}
.y6c_c01403{bottom:142.560000px;}
.y6d_c01403{bottom:144.720000px;}
.y66_c01403{bottom:180.720000px;}
.y65_c01403{bottom:181.440000px;}
.y64_c01403{bottom:182.160000px;}
.y68_c01403{bottom:185.760000px;}
.y67_c01403{bottom:188.640000px;}
.y50_c01403{bottom:224.640000px;}
.y4f_c01403{bottom:226.800000px;}
.y4e_c01403{bottom:227.520000px;}
.y4a_c01403{bottom:257.040000px;}
.y49_c01403{bottom:257.760000px;}
.y48_c01403{bottom:259.920000px;}
.y4c_c01403{bottom:260.640000px;}
.y4b_c01403{bottom:261.360000px;}
.y4d_c01403{bottom:263.520000px;}
.y45_c01403{bottom:299.520000px;}
.y47_c01403{bottom:300.960000px;}
.y46_c01403{bottom:301.680000px;}
.y41_c01403{bottom:331.920000px;}
.y44_c01403{bottom:332.640000px;}
.y42_c01403{bottom:333.360000px;}
.y43_c01403{bottom:334.080000px;}
.y40_c01403{bottom:335.520000px;}
.y61_c01403{bottom:336.240000px;}
.y63_c01403{bottom:336.960000px;}
.y62_c01403{bottom:338.400000px;}
.y3f_c01403{bottom:375.120000px;}
.y3e_c01403{bottom:377.280000px;}
.y5f_c01403{bottom:378.720000px;}
.y60_c01403{bottom:380.160000px;}
.y3b_c01403{bottom:418.320000px;}
.y3d_c01403{bottom:419.040000px;}
.y3c_c01403{bottom:419.760000px;}
.y3a_c01403{bottom:421.200000px;}
.y39_c01403{bottom:462.240000px;}
.y38_c01403{bottom:464.400000px;}
.y5e_c01403{bottom:465.120000px;}
.y5d_c01403{bottom:468.000000px;}
.y37_c01403{bottom:504.720000px;}
.y36_c01403{bottom:507.600000px;}
.y5c_c01403{bottom:508.320000px;}
.y5b_c01403{bottom:509.760000px;}
.y34_c01403{bottom:548.640000px;}
.y35_c01403{bottom:549.360000px;}
.y59_c01403{bottom:550.800000px;}
.y33_c01403{bottom:551.520000px;}
.y58_c01403{bottom:552.240000px;}
.y5a_c01403{bottom:552.960000px;}
.y32_c01403{bottom:592.560000px;}
.y56_c01403{bottom:594.720000px;}
.y31_c01403{bottom:595.440000px;}
.y57_c01403{bottom:597.600000px;}
.y30_c01403{bottom:635.760000px;}
.y2d_c01403{bottom:636.480000px;}
.y2e_c01403{bottom:637.200000px;}
.y2c_c01403{bottom:637.920000px;}
.y2f_c01403{bottom:639.360000px;}
.y2b_c01403{bottom:679.680000px;}
.y55_c01403{bottom:680.400000px;}
.y54_c01403{bottom:681.120000px;}
.y2a_c01403{bottom:681.840000px;}
.y28_c01403{bottom:722.880000px;}
.y53_c01403{bottom:723.600000px;}
.y27_c01403{bottom:725.040000px;}
.y29_c01403{bottom:726.480000px;}
.y26_c01403{bottom:766.080000px;}
.y52_c01403{bottom:766.800000px;}
.y51_c01403{bottom:767.520000px;}
.y24_c01403{bottom:768.240000px;}
.y23_c01403{bottom:768.960000px;}
.y25_c01403{bottom:770.400000px;}
.y21_c01403{bottom:809.280000px;}
.y20_c01403{bottom:810.000000px;}
.y22_c01403{bottom:810.720000px;}
.y1f_c01403{bottom:811.440000px;}
.y1c_c01403{bottom:844.560000px;}
.y1b_c01403{bottom:847.440000px;}
.y1d_c01403{bottom:852.480000px;}
.y17_c01403{bottom:853.200000px;}
.y1a_c01403{bottom:853.920000px;}
.y1e_c01403{bottom:854.640000px;}
.y16_c01403{bottom:855.360000px;}
.y18_c01403{bottom:856.080000px;}
.y19_c01403{bottom:858.960000px;}
.y15_c01403{bottom:894.240000px;}
.y12_c01403{bottom:895.680000px;}
.y14_c01403{bottom:896.400000px;}
.y11_c01403{bottom:897.840000px;}
.y13_c01403{bottom:899.280000px;}
.yf_c01403{bottom:937.440000px;}
.yd_c01403{bottom:938.880000px;}
.y10_c01403{bottom:939.600000px;}
.yb_c01403{bottom:941.760000px;}
.ye_c01403{bottom:942.480000px;}
.yc_c01403{bottom:943.200000px;}
.ya_c01403{bottom:981.360000px;}
.y8_c01403{bottom:982.080000px;}
.y9_c01403{bottom:982.800000px;}
.y6_c01403{bottom:984.960000px;}
.y7_c01403{bottom:986.400000px;}
.y5_c01403{bottom:1023.840000px;}
.y3_c01403{bottom:1025.280000px;}
.y4_c01403{bottom:1026.720000px;}
.y2_c01403{bottom:1028.160000px;}
.y1_c01403{bottom:1108.080000px;}
.he_c01403{height:23.325469px;}
.h12_c01403{height:28.508906px;}
.h11_c01403{height:36.284062px;}
.hd_c01403{height:38.875781px;}
.h9_c01403{height:46.650937px;}
.h8_c01403{height:49.242656px;}
.hc_c01403{height:51.834375px;}
.h3_c01403{height:54.426094px;}
.h7_c01403{height:57.017812px;}
.h13_c01403{height:57.306094px;}
.ha_c01403{height:59.609531px;}
.h5_c01403{height:62.201250px;}
.h2_c01403{height:64.792969px;}
.h6_c01403{height:67.384687px;}
.h4_c01403{height:69.976406px;}
.hb_c01403{height:72.568125px;}
.hf_c01403{height:80.343281px;}
.h10_c01403{height:95.893594px;}
.h0_c01403{height:1153.440000px;}
.h1_c01403{height:1153.500000px;}
.w1_c01403{width:786.000000px;}
.w0_c01403{width:786.240000px;}
.x0_c01403{left:0.000000px;}
.x2_c01403{left:60.480015px;}
.x39_c01403{left:61.920000px;}
.x3a_c01403{left:93.600000px;}
.xa_c01403{left:123.120000px;}
.x3_c01403{left:124.560000px;}
.x2f_c01403{left:167.040000px;}
.x7_c01403{left:200.880000px;}
.x28_c01403{left:210.240000px;}
.x1e_c01403{left:211.680000px;}
.x1c_c01403{left:221.760000px;}
.x22_c01403{left:244.080000px;}
.x1f_c01403{left:253.440000px;}
.x14_c01403{left:254.880000px;}
.x24_c01403{left:265.680000px;}
.x1d_c01403{left:274.320000px;}
.x23_c01403{left:286.560000px;}
.x15_c01403{left:298.080000px;}
.x29_c01403{left:318.960000px;}
.xf_c01403{left:328.320000px;}
.x16_c01403{left:329.760000px;}
.x17_c01403{left:341.280000px;}
.x25_c01403{left:350.640000px;}
.x20_c01403{left:352.080000px;}
.x2a_c01403{left:362.160000px;}
.xb_c01403{left:372.240000px;}
.x18_c01403{left:382.320000px;}
.x10_c01403{left:384.480000px;}
.x21_c01403{left:393.840000px;}
.x26_c01403{left:395.280000px;}
.xc_c01403{left:426.960000px;}
.x27_c01403{left:437.760000px;}
.x2b_c01403{left:468.720000px;}
.x11_c01403{left:479.520000px;}
.xd_c01403{left:511.920000px;}
.x12_c01403{left:533.520000px;}
.x37_c01403{left:567.360000px;}
.x3b_c01403{left:576.720000px;}
.x35_c01403{left:586.080000px;}
.x2c_c01403{left:587.520000px;}
.x31_c01403{left:598.320000px;}
.x2d_c01403{left:607.680000px;}
.x1a_c01403{left:609.120000px;}
.x32_c01403{left:619.920000px;}
.x4_c01403{left:621.360000px;}
.x38_c01403{left:640.080000px;}
.x8_c01403{left:641.520000px;}
.xe_c01403{left:642.960000px;}
.x36_c01403{left:673.200000px;}
.x13_c01403{left:674.640000px;}
.x5_c01403{left:676.080000px;}
.x1_c01403{left:682.560000px;}
.x33_c01403{left:684.720000px;}
.x30_c01403{left:706.320000px;}
.x9_c01403{left:708.480000px;}
.x2e_c01403{left:715.680000px;}
.x6_c01403{left:717.840000px;}
.x34_c01403{left:727.920000px;}
.x1b_c01403{left:736.560000px;}
.x19_c01403{left:738.720000px;}
@media print{
.v2_c01403{vertical-align:-7.680000pt;}
.v1_c01403{vertical-align:-5.120000pt;}
.v0_c01403{vertical-align:0.000000pt;}
.v3_c01403{vertical-align:2.560000pt;}
.ls0_c01403{letter-spacing:0.000000pt;}
.ws3_c01403{word-spacing:0.000000pt;}
.ws2_c01403{word-spacing:8.188800pt;}
.ws0_c01403{word-spacing:10.391467pt;}
.ws1_c01403{word-spacing:44.951467pt;}
.fsc_c01403{font-size:23.040000pt;}
.fs10_c01403{font-size:28.160000pt;}
.fsf_c01403{font-size:35.840000pt;}
.fsb_c01403{font-size:38.400000pt;}
.fs7_c01403{font-size:46.080000pt;}
.fs6_c01403{font-size:48.640000pt;}
.fsa_c01403{font-size:51.200000pt;}
.fs1_c01403{font-size:53.760000pt;}
.fs5_c01403{font-size:56.320000pt;}
.fs8_c01403{font-size:58.880000pt;}
.fs3_c01403{font-size:61.440000pt;}
.fs0_c01403{font-size:64.000000pt;}
.fs4_c01403{font-size:66.560000pt;}
.fs2_c01403{font-size:69.120000pt;}
.fs9_c01403{font-size:71.680000pt;}
.fsd_c01403{font-size:79.360000pt;}
.fse_c01403{font-size:94.720000pt;}
.y0_c01403{bottom:0.000000pt;}
.y6e_c01403{bottom:87.040000pt;}
.y70_c01403{bottom:87.680000pt;}
.y6f_c01403{bottom:88.320000pt;}
.y69_c01403{bottom:124.160000pt;}
.y6b_c01403{bottom:124.800000pt;}
.y6a_c01403{bottom:125.440000pt;}
.y6c_c01403{bottom:126.720000pt;}
.y6d_c01403{bottom:128.640000pt;}
.y66_c01403{bottom:160.640000pt;}
.y65_c01403{bottom:161.280000pt;}
.y64_c01403{bottom:161.920000pt;}
.y68_c01403{bottom:165.120000pt;}
.y67_c01403{bottom:167.680000pt;}
.y50_c01403{bottom:199.680000pt;}
.y4f_c01403{bottom:201.600000pt;}
.y4e_c01403{bottom:202.240000pt;}
.y4a_c01403{bottom:228.480000pt;}
.y49_c01403{bottom:229.120000pt;}
.y48_c01403{bottom:231.040000pt;}
.y4c_c01403{bottom:231.680000pt;}
.y4b_c01403{bottom:232.320000pt;}
.y4d_c01403{bottom:234.240000pt;}
.y45_c01403{bottom:266.240000pt;}
.y47_c01403{bottom:267.520000pt;}
.y46_c01403{bottom:268.160000pt;}
.y41_c01403{bottom:295.040000pt;}
.y44_c01403{bottom:295.680000pt;}
.y42_c01403{bottom:296.320000pt;}
.y43_c01403{bottom:296.960000pt;}
.y40_c01403{bottom:298.240000pt;}
.y61_c01403{bottom:298.880000pt;}
.y63_c01403{bottom:299.520000pt;}
.y62_c01403{bottom:300.800000pt;}
.y3f_c01403{bottom:333.440000pt;}
.y3e_c01403{bottom:335.360000pt;}
.y5f_c01403{bottom:336.640000pt;}
.y60_c01403{bottom:337.920000pt;}
.y3b_c01403{bottom:371.840000pt;}
.y3d_c01403{bottom:372.480000pt;}
.y3c_c01403{bottom:373.120000pt;}
.y3a_c01403{bottom:374.400000pt;}
.y39_c01403{bottom:410.880000pt;}
.y38_c01403{bottom:412.800000pt;}
.y5e_c01403{bottom:413.440000pt;}
.y5d_c01403{bottom:416.000000pt;}
.y37_c01403{bottom:448.640000pt;}
.y36_c01403{bottom:451.200000pt;}
.y5c_c01403{bottom:451.840000pt;}
.y5b_c01403{bottom:453.120000pt;}
.y34_c01403{bottom:487.680000pt;}
.y35_c01403{bottom:488.320000pt;}
.y59_c01403{bottom:489.600000pt;}
.y33_c01403{bottom:490.240000pt;}
.y58_c01403{bottom:490.880000pt;}
.y5a_c01403{bottom:491.520000pt;}
.y32_c01403{bottom:526.720000pt;}
.y56_c01403{bottom:528.640000pt;}
.y31_c01403{bottom:529.280000pt;}
.y57_c01403{bottom:531.200000pt;}
.y30_c01403{bottom:565.120000pt;}
.y2d_c01403{bottom:565.760000pt;}
.y2e_c01403{bottom:566.400000pt;}
.y2c_c01403{bottom:567.040000pt;}
.y2f_c01403{bottom:568.320000pt;}
.y2b_c01403{bottom:604.160000pt;}
.y55_c01403{bottom:604.800000pt;}
.y54_c01403{bottom:605.440000pt;}
.y2a_c01403{bottom:606.080000pt;}
.y28_c01403{bottom:642.560000pt;}
.y53_c01403{bottom:643.200000pt;}
.y27_c01403{bottom:644.480000pt;}
.y29_c01403{bottom:645.760000pt;}
.y26_c01403{bottom:680.960000pt;}
.y52_c01403{bottom:681.600000pt;}
.y51_c01403{bottom:682.240000pt;}
.y24_c01403{bottom:682.880000pt;}
.y23_c01403{bottom:683.520000pt;}
.y25_c01403{bottom:684.800000pt;}
.y21_c01403{bottom:719.360000pt;}
.y20_c01403{bottom:720.000000pt;}
.y22_c01403{bottom:720.640000pt;}
.y1f_c01403{bottom:721.280000pt;}
.y1c_c01403{bottom:750.720000pt;}
.y1b_c01403{bottom:753.280000pt;}
.y1d_c01403{bottom:757.760000pt;}
.y17_c01403{bottom:758.400000pt;}
.y1a_c01403{bottom:759.040000pt;}
.y1e_c01403{bottom:759.680000pt;}
.y16_c01403{bottom:760.320000pt;}
.y18_c01403{bottom:760.960000pt;}
.y19_c01403{bottom:763.520000pt;}
.y15_c01403{bottom:794.880000pt;}
.y12_c01403{bottom:796.160000pt;}
.y14_c01403{bottom:796.800000pt;}
.y11_c01403{bottom:798.080000pt;}
.y13_c01403{bottom:799.360000pt;}
.yf_c01403{bottom:833.280000pt;}
.yd_c01403{bottom:834.560000pt;}
.y10_c01403{bottom:835.200000pt;}
.yb_c01403{bottom:837.120000pt;}
.ye_c01403{bottom:837.760000pt;}
.yc_c01403{bottom:838.400000pt;}
.ya_c01403{bottom:872.320000pt;}
.y8_c01403{bottom:872.960000pt;}
.y9_c01403{bottom:873.600000pt;}
.y6_c01403{bottom:875.520000pt;}
.y7_c01403{bottom:876.800000pt;}
.y5_c01403{bottom:910.080000pt;}
.y3_c01403{bottom:911.360000pt;}
.y4_c01403{bottom:912.640000pt;}
.y2_c01403{bottom:913.920000pt;}
.y1_c01403{bottom:984.960000pt;}
.he_c01403{height:20.733750pt;}
.h12_c01403{height:25.341250pt;}
.h11_c01403{height:32.252500pt;}
.hd_c01403{height:34.556250pt;}
.h9_c01403{height:41.467500pt;}
.h8_c01403{height:43.771250pt;}
.hc_c01403{height:46.075000pt;}
.h3_c01403{height:48.378750pt;}
.h7_c01403{height:50.682500pt;}
.h13_c01403{height:50.938750pt;}
.ha_c01403{height:52.986250pt;}
.h5_c01403{height:55.290000pt;}
.h2_c01403{height:57.593750pt;}
.h6_c01403{height:59.897500pt;}
.h4_c01403{height:62.201250pt;}
.hb_c01403{height:64.505000pt;}
.hf_c01403{height:71.416250pt;}
.h10_c01403{height:85.238750pt;}
.h0_c01403{height:1025.280000pt;}
.h1_c01403{height:1025.333333pt;}
.w1_c01403{width:698.666667pt;}
.w0_c01403{width:698.880000pt;}
.x0_c01403{left:0.000000pt;}
.x2_c01403{left:53.760013pt;}
.x39_c01403{left:55.040000pt;}
.x3a_c01403{left:83.200000pt;}
.xa_c01403{left:109.440000pt;}
.x3_c01403{left:110.720000pt;}
.x2f_c01403{left:148.480000pt;}
.x7_c01403{left:178.560000pt;}
.x28_c01403{left:186.880000pt;}
.x1e_c01403{left:188.160000pt;}
.x1c_c01403{left:197.120000pt;}
.x22_c01403{left:216.960000pt;}
.x1f_c01403{left:225.280000pt;}
.x14_c01403{left:226.560000pt;}
.x24_c01403{left:236.160000pt;}
.x1d_c01403{left:243.840000pt;}
.x23_c01403{left:254.720000pt;}
.x15_c01403{left:264.960000pt;}
.x29_c01403{left:283.520000pt;}
.xf_c01403{left:291.840000pt;}
.x16_c01403{left:293.120000pt;}
.x17_c01403{left:303.360000pt;}
.x25_c01403{left:311.680000pt;}
.x20_c01403{left:312.960000pt;}
.x2a_c01403{left:321.920000pt;}
.xb_c01403{left:330.880000pt;}
.x18_c01403{left:339.840000pt;}
.x10_c01403{left:341.760000pt;}
.x21_c01403{left:350.080000pt;}
.x26_c01403{left:351.360000pt;}
.xc_c01403{left:379.520000pt;}
.x27_c01403{left:389.120000pt;}
.x2b_c01403{left:416.640000pt;}
.x11_c01403{left:426.240000pt;}
.xd_c01403{left:455.040000pt;}
.x12_c01403{left:474.240000pt;}
.x37_c01403{left:504.320000pt;}
.x3b_c01403{left:512.640000pt;}
.x35_c01403{left:520.960000pt;}
.x2c_c01403{left:522.240000pt;}
.x31_c01403{left:531.840000pt;}
.x2d_c01403{left:540.160000pt;}
.x1a_c01403{left:541.440000pt;}
.x32_c01403{left:551.040000pt;}
.x4_c01403{left:552.320000pt;}
.x38_c01403{left:568.960000pt;}
.x8_c01403{left:570.240000pt;}
.xe_c01403{left:571.520000pt;}
.x36_c01403{left:598.400000pt;}
.x13_c01403{left:599.680000pt;}
.x5_c01403{left:600.960000pt;}
.x1_c01403{left:606.720000pt;}
.x33_c01403{left:608.640000pt;}
.x30_c01403{left:627.840000pt;}
.x9_c01403{left:629.760000pt;}
.x2e_c01403{left:636.160000pt;}
.x6_c01403{left:638.080000pt;}
.x34_c01403{left:647.040000pt;}
.x1b_c01403{left:654.720000pt;}
.x19_c01403{left:656.640000pt;}
}





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

.ir_c01404:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01404{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01404;src:url('chunks/assets/font_37884d638cff47e50f41d8cc.woff2')format("woff");}.ff1_c01404{font-family:ff1_c01404;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m59_c01404{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m53_c01404{transform:matrix(0.185775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185775,0.000000,0.000000,0.250000,0,0);}
.m26_c01404{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);}
.m51_c01404{transform:matrix(0.203325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203325,0.000000,0.000000,0.250000,0,0);}
.m34_c01404{transform:matrix(0.205375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205375,0.000000,0.000000,0.250000,0,0);}
.m24_c01404{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01404{transform:matrix(0.221075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221075,0.000000,0.000000,0.250000,0,0);}
.m58_c01404{transform:matrix(0.221800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221800,0.000000,0.000000,0.250000,0,0);}
.m3b_c01404{transform:matrix(0.228150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228150,0.000000,0.000000,0.250000,0,0);}
.m36_c01404{transform:matrix(0.228200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228200,0.000000,0.000000,0.250000,0,0);}
.m3e_c01404{transform:matrix(0.229200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229200,0.000000,0.000000,0.250000,0,0);}
.m4d_c01404{transform:matrix(0.229350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229350,0.000000,0.000000,0.250000,0,0);}
.m5a_c01404{transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);}
.m56_c01404{transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);}
.m46_c01404{transform:matrix(0.234725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234725,0.000000,0.000000,0.250000,0,0);}
.m39_c01404{transform:matrix(0.236350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236350,0.000000,0.000000,0.250000,0,0);}
.m48_c01404{transform:matrix(0.240200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240200,0.000000,0.000000,0.250000,0,0);}
.m4b_c01404{transform:matrix(0.240475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240475,0.000000,0.000000,0.250000,0,0);}
.m33_c01404{transform:matrix(0.241125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241125,0.000000,0.000000,0.250000,0,0);}
.m30_c01404{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m22_c01404{transform:matrix(0.242800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242800,0.000000,0.000000,0.250000,0,0);}
.m42_c01404{transform:matrix(0.243450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243450,0.000000,0.000000,0.250000,0,0);}
.m2e_c01404{transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);}
.m44_c01404{transform:matrix(0.246975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246975,0.000000,0.000000,0.250000,0,0);}
.m38_c01404{transform:matrix(0.248025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248025,0.000000,0.000000,0.250000,0,0);}
.m31_c01404{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);}
.m54_c01404{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);}
.m2c_c01404{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);}
.m23_c01404{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m18_c01404{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);}
.m29_c01404{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_c01404{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);}
.m50_c01404{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);}
.m57_c01404{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m2_c01404{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m4f_c01404{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mb_c01404{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);}
.m45_c01404{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.ma_c01404{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01404{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01404{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m10_c01404{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m21_c01404{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m9_c01404{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m40_c01404{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01404{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m14_c01404{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01404{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01404{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m49_c01404{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mc_c01404{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01404{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m4_c01404{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m11_c01404{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m19_c01404{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);}
.m1e_c01404{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01404{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);}
.m43_c01404{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m15_c01404{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m5c_c01404{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_c01404{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m0_c01404{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1_c01404{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m25_c01404{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01404{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);}
.m2f_c01404{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);}
.m5_c01404{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m12_c01404{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m17_c01404{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);}
.m37_c01404{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);}
.m6_c01404{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);}
.m1a_c01404{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m27_c01404{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);}
.m16_c01404{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m28_c01404{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01404{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.me_c01404{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m5e_c01404{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m3_c01404{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m41_c01404{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);}
.m7_c01404{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m55_c01404{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);}
.m3a_c01404{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m20_c01404{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m47_c01404{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m35_c01404{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.md_c01404{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01404{transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01404{transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);}
.m52_c01404{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.m32_c01404{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.m5d_c01404{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);}
.m5b_c01404{transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);}
.m8_c01404{transform:matrix(0.830000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.830000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.830000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01404{transform:matrix(1.607500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.607500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.607500,0.000000,0.000000,0.250000,0,0);}
.v0_c01404{vertical-align:0.000000px;}
.ls0_c01404{letter-spacing:0.000000px;}
.sc__c01404{text-shadow:none;}
.sc0_c01404{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01404{-webkit-text-stroke:0px transparent;}
.sc0_c01404{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01404{word-spacing:0.000000px;}
.fc0_c01404{color:transparent;}
.fs13_c01404{font-size:20.160000px;}
.fs14_c01404{font-size:23.040000px;}
.fs12_c01404{font-size:25.920000px;}
.fsb_c01404{font-size:31.680000px;}
.fs10_c01404{font-size:34.560000px;}
.fse_c01404{font-size:37.440000px;}
.fs7_c01404{font-size:43.200000px;}
.fsd_c01404{font-size:46.080000px;}
.fs3_c01404{font-size:51.840000px;}
.fs5_c01404{font-size:54.720000px;}
.fs6_c01404{font-size:57.600000px;}
.fs4_c01404{font-size:60.480000px;}
.fs1_c01404{font-size:63.360000px;}
.fs2_c01404{font-size:66.240000px;}
.fs8_c01404{font-size:69.120000px;}
.fs9_c01404{font-size:72.000000px;}
.fs0_c01404{font-size:74.880000px;}
.fsa_c01404{font-size:77.760000px;}
.fsc_c01404{font-size:80.640000px;}
.fsf_c01404{font-size:83.520000px;}
.fs11_c01404{font-size:86.400000px;}
.y0_c01404{bottom:0.000000px;}
.y5f_c01404{bottom:42.480000px;}
.y5e_c01404{bottom:45.360000px;}
.y7b_c01404{bottom:48.960000px;}
.y7c_c01404{bottom:49.680000px;}
.y5d_c01404{bottom:84.960000px;}
.y5a_c01404{bottom:87.120000px;}
.y5c_c01404{bottom:87.840000px;}
.y5b_c01404{bottom:91.440000px;}
.y7a_c01404{bottom:92.160000px;}
.y79_c01404{bottom:93.600000px;}
.y59_c01404{bottom:128.880000px;}
.y58_c01404{bottom:132.480000px;}
.y78_c01404{bottom:136.080000px;}
.y57_c01404{bottom:172.800000px;}
.y56_c01404{bottom:173.520000px;}
.y75_c01404{bottom:177.120000px;}
.y76_c01404{bottom:177.840000px;}
.y77_c01404{bottom:180.720000px;}
.y55_c01404{bottom:216.000000px;}
.y53_c01404{bottom:217.440000px;}
.y54_c01404{bottom:218.160000px;}
.y72_c01404{bottom:221.040000px;}
.y73_c01404{bottom:221.760000px;}
.y74_c01404{bottom:222.480000px;}
.y52_c01404{bottom:258.480000px;}
.y51_c01404{bottom:262.080000px;}
.y6f_c01404{bottom:264.240000px;}
.y70_c01404{bottom:264.960000px;}
.y71_c01404{bottom:266.400000px;}
.y4e_c01404{bottom:302.400000px;}
.y50_c01404{bottom:303.120000px;}
.y4f_c01404{bottom:306.000000px;}
.y4d_c01404{bottom:308.160000px;}
.y6e_c01404{bottom:308.880000px;}
.y4a_c01404{bottom:346.320000px;}
.y4c_c01404{bottom:347.040000px;}
.y4b_c01404{bottom:348.480000px;}
.y49_c01404{bottom:349.200000px;}
.y6c_c01404{bottom:351.360000px;}
.y6d_c01404{bottom:352.080000px;}
.y46_c01404{bottom:389.520000px;}
.y47_c01404{bottom:390.960000px;}
.y44_c01404{bottom:393.120000px;}
.y48_c01404{bottom:393.840000px;}
.y6a_c01404{bottom:394.560000px;}
.y45_c01404{bottom:396.000000px;}
.y6b_c01404{bottom:396.720000px;}
.y40_c01404{bottom:433.440000px;}
.y41_c01404{bottom:434.160000px;}
.y3f_c01404{bottom:436.320000px;}
.y42_c01404{bottom:437.040000px;}
.y43_c01404{bottom:437.760000px;}
.y68_c01404{bottom:439.200000px;}
.y69_c01404{bottom:439.920000px;}
.y3c_c01404{bottom:475.920000px;}
.y3e_c01404{bottom:477.360000px;}
.y3a_c01404{bottom:478.080000px;}
.y3b_c01404{bottom:479.520000px;}
.y67_c01404{bottom:480.240000px;}
.y3d_c01404{bottom:480.960000px;}
.y35_c01404{bottom:519.120000px;}
.y39_c01404{bottom:521.280000px;}
.y34_c01404{bottom:522.000000px;}
.y37_c01404{bottom:522.720000px;}
.y38_c01404{bottom:523.440000px;}
.y36_c01404{bottom:524.160000px;}
.y66_c01404{bottom:525.600000px;}
.y65_c01404{bottom:526.320000px;}
.y32_c01404{bottom:563.040000px;}
.y33_c01404{bottom:563.760000px;}
.y30_c01404{bottom:565.200000px;}
.y31_c01404{bottom:565.920000px;}
.y63_c01404{bottom:566.640000px;}
.y64_c01404{bottom:568.800000px;}
.y2e_c01404{bottom:606.240000px;}
.y2d_c01404{bottom:606.960000px;}
.y60_c01404{bottom:608.400000px;}
.y2f_c01404{bottom:609.120000px;}
.y62_c01404{bottom:610.560000px;}
.y61_c01404{bottom:611.280000px;}
.y28_c01404{bottom:649.440000px;}
.y2a_c01404{bottom:650.880000px;}
.y27_c01404{bottom:651.600000px;}
.y29_c01404{bottom:653.040000px;}
.y2c_c01404{bottom:653.760000px;}
.y2b_c01404{bottom:654.480000px;}
.y21_c01404{bottom:692.640000px;}
.y22_c01404{bottom:693.360000px;}
.y20_c01404{bottom:694.080000px;}
.y24_c01404{bottom:694.800000px;}
.y25_c01404{bottom:695.520000px;}
.y26_c01404{bottom:696.240000px;}
.y23_c01404{bottom:696.960000px;}
.y1e_c01404{bottom:736.560000px;}
.y1d_c01404{bottom:737.280000px;}
.y1f_c01404{bottom:738.720000px;}
.y1b_c01404{bottom:822.960000px;}
.y1a_c01404{bottom:823.680000px;}
.y1c_c01404{bottom:824.400000px;}
.y18_c01404{bottom:825.120000px;}
.y19_c01404{bottom:825.840000px;}
.y16_c01404{bottom:866.160000px;}
.y15_c01404{bottom:866.880000px;}
.y13_c01404{bottom:867.600000px;}
.y14_c01404{bottom:868.320000px;}
.y17_c01404{bottom:869.040000px;}
.y10_c01404{bottom:910.080000px;}
.y11_c01404{bottom:910.800000px;}
.y12_c01404{bottom:911.520000px;}
.yf_c01404{bottom:912.240000px;}
.yd_c01404{bottom:954.000000px;}
.yb_c01404{bottom:954.720000px;}
.yc_c01404{bottom:956.160000px;}
.ye_c01404{bottom:956.880000px;}
.y8_c01404{bottom:997.200000px;}
.ya_c01404{bottom:1000.080000px;}
.y9_c01404{bottom:1000.800000px;}
.y7_c01404{bottom:1029.600000px;}
.y3_c01404{bottom:1030.320000px;}
.y5_c01404{bottom:1031.040000px;}
.y2_c01404{bottom:1031.760000px;}
.y6_c01404{bottom:1032.480000px;}
.y4_c01404{bottom:1033.200000px;}
.y1_c01404{bottom:1102.320000px;}
.h15_c01404{height:18.142031px;}
.h16_c01404{height:20.733750px;}
.h14_c01404{height:23.325469px;}
.hd_c01404{height:28.508906px;}
.h12_c01404{height:31.100625px;}
.h10_c01404{height:33.692344px;}
.h9_c01404{height:38.875781px;}
.hf_c01404{height:41.467500px;}
.h5_c01404{height:46.650937px;}
.h7_c01404{height:49.242656px;}
.h8_c01404{height:51.834375px;}
.h6_c01404{height:54.426094px;}
.h3_c01404{height:57.017812px;}
.h4_c01404{height:59.609531px;}
.ha_c01404{height:62.201250px;}
.hb_c01404{height:64.792969px;}
.h2_c01404{height:67.384687px;}
.hc_c01404{height:69.976406px;}
.he_c01404{height:72.568125px;}
.h11_c01404{height:75.159844px;}
.h13_c01404{height:77.751563px;}
.h0_c01404{height:1155.600000px;}
.h1_c01404{height:1155.750000px;}
.w1_c01404{width:788.250000px;}
.w0_c01404{width:788.400000px;}
.x0_c01404{left:0.000000px;}
.x2_c01404{left:59.040000px;}
.x11_c01404{left:60.480000px;}
.x30_c01404{left:61.920000px;}
.x38_c01404{left:63.360000px;}
.x25_c01404{left:82.080000px;}
.x18_c01404{left:92.880000px;}
.x31_c01404{left:94.320000px;}
.x32_c01404{left:102.240000px;}
.xd_c01404{left:123.120000px;}
.x3_c01404{left:124.560000px;}
.xe_c01404{left:189.360000px;}
.x37_c01404{left:200.880000px;}
.x4_c01404{left:210.240000px;}
.x14_c01404{left:211.680000px;}
.x2a_c01404{left:220.320000px;}
.x26_c01404{left:222.480000px;}
.x35_c01404{left:233.280000px;}
.xf_c01404{left:242.640000px;}
.x28_c01404{left:254.880000px;}
.x5_c01404{left:264.240000px;}
.x21_c01404{left:265.680000px;}
.x12_c01404{left:275.040000px;}
.x10_c01404{left:285.840000px;}
.x2c_c01404{left:287.280000px;}
.x27_c01404{left:307.440000px;}
.x36_c01404{left:308.880000px;}
.x6_c01404{left:318.960000px;}
.x2e_c01404{left:329.040000px;}
.x2d_c01404{left:330.480000px;}
.x1b_c01404{left:339.120000px;}
.x29_c01404{left:340.560000px;}
.x2b_c01404{left:361.440000px;}
.x33_c01404{left:362.880000px;}
.x2f_c01404{left:373.680000px;}
.x1c_c01404{left:384.480000px;}
.x22_c01404{left:394.560000px;}
.x15_c01404{left:404.640000px;}
.x34_c01404{left:416.880000px;}
.x7_c01404{left:447.840000px;}
.x1d_c01404{left:467.280000px;}
.x16_c01404{left:469.440000px;}
.x23_c01404{left:490.320000px;}
.x8_c01404{left:501.840000px;}
.x1e_c01404{left:511.920000px;}
.x17_c01404{left:522.720000px;}
.x24_c01404{left:533.520000px;}
.x1f_c01404{left:543.600000px;}
.x9_c01404{left:555.120000px;}
.x20_c01404{left:560.160000px;}
.x1a_c01404{left:609.120000px;}
.x40_c01404{left:610.560000px;}
.x3e_c01404{left:632.880000px;}
.x3a_c01404{left:641.520000px;}
.xa_c01404{left:642.960000px;}
.x19_c01404{left:673.200000px;}
.xb_c01404{left:674.640000px;}
.x42_c01404{left:676.080000px;}
.x3d_c01404{left:682.560000px;}
.x3c_c01404{left:684.000000px;}
.x1_c01404{left:697.680000px;}
.x13_c01404{left:707.040000px;}
.x39_c01404{left:716.400000px;}
.xc_c01404{left:717.840000px;}
.x41_c01404{left:719.280000px;}
.x3b_c01404{left:737.280000px;}
.x3f_c01404{left:738.720000px;}
@media print{
.v0_c01404{vertical-align:0.000000pt;}
.ls0_c01404{letter-spacing:0.000000pt;}
.ws0_c01404{word-spacing:0.000000pt;}
.fs13_c01404{font-size:17.920000pt;}
.fs14_c01404{font-size:20.480000pt;}
.fs12_c01404{font-size:23.040000pt;}
.fsb_c01404{font-size:28.160000pt;}
.fs10_c01404{font-size:30.720000pt;}
.fse_c01404{font-size:33.280000pt;}
.fs7_c01404{font-size:38.400000pt;}
.fsd_c01404{font-size:40.960000pt;}
.fs3_c01404{font-size:46.080000pt;}
.fs5_c01404{font-size:48.640000pt;}
.fs6_c01404{font-size:51.200000pt;}
.fs4_c01404{font-size:53.760000pt;}
.fs1_c01404{font-size:56.320000pt;}
.fs2_c01404{font-size:58.880000pt;}
.fs8_c01404{font-size:61.440000pt;}
.fs9_c01404{font-size:64.000000pt;}
.fs0_c01404{font-size:66.560000pt;}
.fsa_c01404{font-size:69.120000pt;}
.fsc_c01404{font-size:71.680000pt;}
.fsf_c01404{font-size:74.240000pt;}
.fs11_c01404{font-size:76.800000pt;}
.y0_c01404{bottom:0.000000pt;}
.y5f_c01404{bottom:37.760000pt;}
.y5e_c01404{bottom:40.320000pt;}
.y7b_c01404{bottom:43.520000pt;}
.y7c_c01404{bottom:44.160000pt;}
.y5d_c01404{bottom:75.520000pt;}
.y5a_c01404{bottom:77.440000pt;}
.y5c_c01404{bottom:78.080000pt;}
.y5b_c01404{bottom:81.280000pt;}
.y7a_c01404{bottom:81.920000pt;}
.y79_c01404{bottom:83.200000pt;}
.y59_c01404{bottom:114.560000pt;}
.y58_c01404{bottom:117.760000pt;}
.y78_c01404{bottom:120.960000pt;}
.y57_c01404{bottom:153.600000pt;}
.y56_c01404{bottom:154.240000pt;}
.y75_c01404{bottom:157.440000pt;}
.y76_c01404{bottom:158.080000pt;}
.y77_c01404{bottom:160.640000pt;}
.y55_c01404{bottom:192.000000pt;}
.y53_c01404{bottom:193.280000pt;}
.y54_c01404{bottom:193.920000pt;}
.y72_c01404{bottom:196.480000pt;}
.y73_c01404{bottom:197.120000pt;}
.y74_c01404{bottom:197.760000pt;}
.y52_c01404{bottom:229.760000pt;}
.y51_c01404{bottom:232.960000pt;}
.y6f_c01404{bottom:234.880000pt;}
.y70_c01404{bottom:235.520000pt;}
.y71_c01404{bottom:236.800000pt;}
.y4e_c01404{bottom:268.800000pt;}
.y50_c01404{bottom:269.440000pt;}
.y4f_c01404{bottom:272.000000pt;}
.y4d_c01404{bottom:273.920000pt;}
.y6e_c01404{bottom:274.560000pt;}
.y4a_c01404{bottom:307.840000pt;}
.y4c_c01404{bottom:308.480000pt;}
.y4b_c01404{bottom:309.760000pt;}
.y49_c01404{bottom:310.400000pt;}
.y6c_c01404{bottom:312.320000pt;}
.y6d_c01404{bottom:312.960000pt;}
.y46_c01404{bottom:346.240000pt;}
.y47_c01404{bottom:347.520000pt;}
.y44_c01404{bottom:349.440000pt;}
.y48_c01404{bottom:350.080000pt;}
.y6a_c01404{bottom:350.720000pt;}
.y45_c01404{bottom:352.000000pt;}
.y6b_c01404{bottom:352.640000pt;}
.y40_c01404{bottom:385.280000pt;}
.y41_c01404{bottom:385.920000pt;}
.y3f_c01404{bottom:387.840000pt;}
.y42_c01404{bottom:388.480000pt;}
.y43_c01404{bottom:389.120000pt;}
.y68_c01404{bottom:390.400000pt;}
.y69_c01404{bottom:391.040000pt;}
.y3c_c01404{bottom:423.040000pt;}
.y3e_c01404{bottom:424.320000pt;}
.y3a_c01404{bottom:424.960000pt;}
.y3b_c01404{bottom:426.240000pt;}
.y67_c01404{bottom:426.880000pt;}
.y3d_c01404{bottom:427.520000pt;}
.y35_c01404{bottom:461.440000pt;}
.y39_c01404{bottom:463.360000pt;}
.y34_c01404{bottom:464.000000pt;}
.y37_c01404{bottom:464.640000pt;}
.y38_c01404{bottom:465.280000pt;}
.y36_c01404{bottom:465.920000pt;}
.y66_c01404{bottom:467.200000pt;}
.y65_c01404{bottom:467.840000pt;}
.y32_c01404{bottom:500.480000pt;}
.y33_c01404{bottom:501.120000pt;}
.y30_c01404{bottom:502.400000pt;}
.y31_c01404{bottom:503.040000pt;}
.y63_c01404{bottom:503.680000pt;}
.y64_c01404{bottom:505.600000pt;}
.y2e_c01404{bottom:538.880000pt;}
.y2d_c01404{bottom:539.520000pt;}
.y60_c01404{bottom:540.800000pt;}
.y2f_c01404{bottom:541.440000pt;}
.y62_c01404{bottom:542.720000pt;}
.y61_c01404{bottom:543.360000pt;}
.y28_c01404{bottom:577.280000pt;}
.y2a_c01404{bottom:578.560000pt;}
.y27_c01404{bottom:579.200000pt;}
.y29_c01404{bottom:580.480000pt;}
.y2c_c01404{bottom:581.120000pt;}
.y2b_c01404{bottom:581.760000pt;}
.y21_c01404{bottom:615.680000pt;}
.y22_c01404{bottom:616.320000pt;}
.y20_c01404{bottom:616.960000pt;}
.y24_c01404{bottom:617.600000pt;}
.y25_c01404{bottom:618.240000pt;}
.y26_c01404{bottom:618.880000pt;}
.y23_c01404{bottom:619.520000pt;}
.y1e_c01404{bottom:654.720000pt;}
.y1d_c01404{bottom:655.360000pt;}
.y1f_c01404{bottom:656.640000pt;}
.y1b_c01404{bottom:731.520000pt;}
.y1a_c01404{bottom:732.160000pt;}
.y1c_c01404{bottom:732.800000pt;}
.y18_c01404{bottom:733.440000pt;}
.y19_c01404{bottom:734.080000pt;}
.y16_c01404{bottom:769.920000pt;}
.y15_c01404{bottom:770.560000pt;}
.y13_c01404{bottom:771.200000pt;}
.y14_c01404{bottom:771.840000pt;}
.y17_c01404{bottom:772.480000pt;}
.y10_c01404{bottom:808.960000pt;}
.y11_c01404{bottom:809.600000pt;}
.y12_c01404{bottom:810.240000pt;}
.yf_c01404{bottom:810.880000pt;}
.yd_c01404{bottom:848.000000pt;}
.yb_c01404{bottom:848.640000pt;}
.yc_c01404{bottom:849.920000pt;}
.ye_c01404{bottom:850.560000pt;}
.y8_c01404{bottom:886.400000pt;}
.ya_c01404{bottom:888.960000pt;}
.y9_c01404{bottom:889.600000pt;}
.y7_c01404{bottom:915.200000pt;}
.y3_c01404{bottom:915.840000pt;}
.y5_c01404{bottom:916.480000pt;}
.y2_c01404{bottom:917.120000pt;}
.y6_c01404{bottom:917.760000pt;}
.y4_c01404{bottom:918.400000pt;}
.y1_c01404{bottom:979.840000pt;}
.h15_c01404{height:16.126250pt;}
.h16_c01404{height:18.430000pt;}
.h14_c01404{height:20.733750pt;}
.hd_c01404{height:25.341250pt;}
.h12_c01404{height:27.645000pt;}
.h10_c01404{height:29.948750pt;}
.h9_c01404{height:34.556250pt;}
.hf_c01404{height:36.860000pt;}
.h5_c01404{height:41.467500pt;}
.h7_c01404{height:43.771250pt;}
.h8_c01404{height:46.075000pt;}
.h6_c01404{height:48.378750pt;}
.h3_c01404{height:50.682500pt;}
.h4_c01404{height:52.986250pt;}
.ha_c01404{height:55.290000pt;}
.hb_c01404{height:57.593750pt;}
.h2_c01404{height:59.897500pt;}
.hc_c01404{height:62.201250pt;}
.he_c01404{height:64.505000pt;}
.h11_c01404{height:66.808750pt;}
.h13_c01404{height:69.112500pt;}
.h0_c01404{height:1027.200000pt;}
.h1_c01404{height:1027.333333pt;}
.w1_c01404{width:700.666667pt;}
.w0_c01404{width:700.800000pt;}
.x0_c01404{left:0.000000pt;}
.x2_c01404{left:52.480000pt;}
.x11_c01404{left:53.760000pt;}
.x30_c01404{left:55.040000pt;}
.x38_c01404{left:56.320000pt;}
.x25_c01404{left:72.960000pt;}
.x18_c01404{left:82.560000pt;}
.x31_c01404{left:83.840000pt;}
.x32_c01404{left:90.880000pt;}
.xd_c01404{left:109.440000pt;}
.x3_c01404{left:110.720000pt;}
.xe_c01404{left:168.320000pt;}
.x37_c01404{left:178.560000pt;}
.x4_c01404{left:186.880000pt;}
.x14_c01404{left:188.160000pt;}
.x2a_c01404{left:195.840000pt;}
.x26_c01404{left:197.760000pt;}
.x35_c01404{left:207.360000pt;}
.xf_c01404{left:215.680000pt;}
.x28_c01404{left:226.560000pt;}
.x5_c01404{left:234.880000pt;}
.x21_c01404{left:236.160000pt;}
.x12_c01404{left:244.480000pt;}
.x10_c01404{left:254.080000pt;}
.x2c_c01404{left:255.360000pt;}
.x27_c01404{left:273.280000pt;}
.x36_c01404{left:274.560000pt;}
.x6_c01404{left:283.520000pt;}
.x2e_c01404{left:292.480000pt;}
.x2d_c01404{left:293.760000pt;}
.x1b_c01404{left:301.440000pt;}
.x29_c01404{left:302.720000pt;}
.x2b_c01404{left:321.280000pt;}
.x33_c01404{left:322.560000pt;}
.x2f_c01404{left:332.160000pt;}
.x1c_c01404{left:341.760000pt;}
.x22_c01404{left:350.720000pt;}
.x15_c01404{left:359.680000pt;}
.x34_c01404{left:370.560000pt;}
.x7_c01404{left:398.080000pt;}
.x1d_c01404{left:415.360000pt;}
.x16_c01404{left:417.280000pt;}
.x23_c01404{left:435.840000pt;}
.x8_c01404{left:446.080000pt;}
.x1e_c01404{left:455.040000pt;}
.x17_c01404{left:464.640000pt;}
.x24_c01404{left:474.240000pt;}
.x1f_c01404{left:483.200000pt;}
.x9_c01404{left:493.440000pt;}
.x20_c01404{left:497.920000pt;}
.x1a_c01404{left:541.440000pt;}
.x40_c01404{left:542.720000pt;}
.x3e_c01404{left:562.560000pt;}
.x3a_c01404{left:570.240000pt;}
.xa_c01404{left:571.520000pt;}
.x19_c01404{left:598.400000pt;}
.xb_c01404{left:599.680000pt;}
.x42_c01404{left:600.960000pt;}
.x3d_c01404{left:606.720000pt;}
.x3c_c01404{left:608.000000pt;}
.x1_c01404{left:620.160000pt;}
.x13_c01404{left:628.480000pt;}
.x39_c01404{left:636.800000pt;}
.xc_c01404{left:638.080000pt;}
.x41_c01404{left:639.360000pt;}
.x3b_c01404{left:655.360000pt;}
.x3f_c01404{left:656.640000pt;}
}





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

.ir_c01405:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01405{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01405;src:url('chunks/assets/font_37c79fdc8e753d4904582270.woff2')format("woff");}.ff1_c01405{font-family:ff1_c01405;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4e_c01405{transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);}
.m39_c01405{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m20_c01405{transform:matrix(0.169625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169625,0.000000,0.000000,0.250000,0,0);}
.m3f_c01405{transform:matrix(0.179450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179450,0.000000,0.000000,0.250000,0,0);}
.m26_c01405{transform:matrix(0.194150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194150,0.000000,0.000000,0.250000,0,0);}
.m4d_c01405{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.m45_c01405{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01405{transform:matrix(0.218875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218875,0.000000,0.000000,0.250000,0,0);}
.m53_c01405{transform:matrix(0.221800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221800,0.000000,0.000000,0.250000,0,0);}
.m28_c01405{transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);}
.m7_c01405{transform:matrix(0.225900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225900,0.000000,0.000000,0.250000,0,0);}
.m3d_c01405{transform:matrix(0.228100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228100,0.000000,0.000000,0.250000,0,0);}
.m5_c01405{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_c01405{transform:matrix(0.231575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231575,0.000000,0.000000,0.250000,0,0);}
.mc_c01405{transform:matrix(0.231950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231950,0.000000,0.000000,0.250000,0,0);}
.m16_c01405{transform:matrix(0.233925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233925,0.000000,0.000000,0.250000,0,0);}
.m52_c01405{transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);}
.m48_c01405{transform:matrix(0.236900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236900,0.000000,0.000000,0.250000,0,0);}
.ma_c01405{transform:matrix(0.237825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237825,0.000000,0.000000,0.250000,0,0);}
.m14_c01405{transform:matrix(0.242025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242025,0.000000,0.000000,0.250000,0,0);}
.m2d_c01405{transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);}
.m2f_c01405{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.me_c01405{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m4_c01405{transform:matrix(0.247175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247175,0.000000,0.000000,0.250000,0,0);}
.m1b_c01405{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m31_c01405{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);}
.m4f_c01405{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m1_c01405{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_c01405{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m9_c01405{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_c01405{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_c01405{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01405{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);}
.m23_c01405{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);}
.m22_c01405{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);}
.m2c_c01405{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01405{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mb_c01405{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);}
.m42_c01405{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m25_c01405{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m24_c01405{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m10_c01405{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m12_c01405{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01405{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m51_c01405{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m2_c01405{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.mf_c01405{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m11_c01405{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01405{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m27_c01405{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m37_c01405{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m0_c01405{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);}
.m30_c01405{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m44_c01405{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);}
.m2b_c01405{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);}
.m2a_c01405{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m15_c01405{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m29_c01405{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);}
.m40_c01405{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);}
.m47_c01405{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m41_c01405{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01405{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);}
.m35_c01405{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m8_c01405{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.md_c01405{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);}
.m3b_c01405{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_c01405{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);}
.m46_c01405{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01405{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m43_c01405{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);}
.m3a_c01405{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m34_c01405{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);}
.m32_c01405{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01405{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);}
.m49_c01405{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m36_c01405{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m38_c01405{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m50_c01405{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01405{transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);}
.m3_c01405{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);}
.m19_c01405{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m13_c01405{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m6_c01405{transform:matrix(0.967500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.967500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.967500,0.000000,0.000000,0.250000,0,0);}
.m33_c01405{transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);}
.v1_c01405{vertical-align:-2.880000px;}
.v0_c01405{vertical-align:0.000000px;}
.ls1_c01405{letter-spacing:0.000000px;}
.ls0_c01405{letter-spacing:165.825840px;}
.sc__c01405{text-shadow:none;}
.sc0_c01405{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01405{-webkit-text-stroke:0px transparent;}
.sc0_c01405{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01405{word-spacing:0.000000px;}
.ws0_c01405{word-spacing:2.413719px;}
.fc0_c01405{color:transparent;}
.fsf_c01405{font-size:17.280000px;}
.fs5_c01405{font-size:20.160000px;}
.fse_c01405{font-size:31.680000px;}
.fsb_c01405{font-size:34.560000px;}
.fs3_c01405{font-size:37.440000px;}
.fs14_c01405{font-size:43.200000px;}
.fs13_c01405{font-size:46.080000px;}
.fs11_c01405{font-size:48.960000px;}
.fsc_c01405{font-size:51.840000px;}
.fsa_c01405{font-size:54.720000px;}
.fs7_c01405{font-size:57.600000px;}
.fs2_c01405{font-size:60.480000px;}
.fs4_c01405{font-size:63.360000px;}
.fs8_c01405{font-size:66.240000px;}
.fs0_c01405{font-size:69.120000px;}
.fsd_c01405{font-size:72.000000px;}
.fs9_c01405{font-size:74.880000px;}
.fs1_c01405{font-size:77.760000px;}
.fs6_c01405{font-size:80.640000px;}
.fs12_c01405{font-size:83.520000px;}
.fs10_c01405{font-size:118.080000px;}
.y0_c01405{bottom:0.000000px;}
.y55_c01405{bottom:87.120000px;}
.y57_c01405{bottom:88.560000px;}
.y54_c01405{bottom:90.720000px;}
.y56_c01405{bottom:91.440000px;}
.y67_c01405{bottom:92.880000px;}
.y68_c01405{bottom:93.600000px;}
.y69_c01405{bottom:95.760000px;}
.y50_c01405{bottom:131.040000px;}
.y53_c01405{bottom:132.480000px;}
.y52_c01405{bottom:133.200000px;}
.y51_c01405{bottom:133.920000px;}
.y4f_c01405{bottom:134.640000px;}
.y64_c01405{bottom:136.800000px;}
.y66_c01405{bottom:138.240000px;}
.y65_c01405{bottom:139.680000px;}
.y4e_c01405{bottom:173.520000px;}
.y4c_c01405{bottom:176.400000px;}
.y4d_c01405{bottom:177.120000px;}
.y63_c01405{bottom:180.000000px;}
.y62_c01405{bottom:180.720000px;}
.y4a_c01405{bottom:221.760000px;}
.y4b_c01405{bottom:222.480000px;}
.y49_c01405{bottom:315.360000px;}
.y48_c01405{bottom:318.240000px;}
.y61_c01405{bottom:318.960000px;}
.y60_c01405{bottom:319.680000px;}
.y5f_c01405{bottom:321.840000px;}
.y47_c01405{bottom:358.560000px;}
.y46_c01405{bottom:359.280000px;}
.y5e_c01405{bottom:361.440000px;}
.y5d_c01405{bottom:362.160000px;}
.y5c_c01405{bottom:365.040000px;}
.y45_c01405{bottom:401.760000px;}
.y44_c01405{bottom:403.920000px;}
.y42_c01405{bottom:404.640000px;}
.y43_c01405{bottom:405.360000px;}
.y59_c01405{bottom:406.080000px;}
.y5a_c01405{bottom:406.800000px;}
.y5b_c01405{bottom:408.240000px;}
.y41_c01405{bottom:444.240000px;}
.y40_c01405{bottom:446.400000px;}
.y58_c01405{bottom:447.840000px;}
.y3f_c01405{bottom:488.880000px;}
.y3d_c01405{bottom:490.320000px;}
.y3c_c01405{bottom:491.040000px;}
.y3e_c01405{bottom:491.760000px;}
.y3b_c01405{bottom:521.280000px;}
.y39_c01405{bottom:522.000000px;}
.y3a_c01405{bottom:523.440000px;}
.y31_c01405{bottom:524.160000px;}
.y2f_c01405{bottom:524.880000px;}
.y30_c01405{bottom:526.320000px;}
.y38_c01405{bottom:555.840000px;}
.y36_c01405{bottom:565.920000px;}
.y2d_c01405{bottom:566.640000px;}
.y35_c01405{bottom:567.360000px;}
.y37_c01405{bottom:568.080000px;}
.y2e_c01405{bottom:569.520000px;}
.y34_c01405{bottom:609.120000px;}
.y2b_c01405{bottom:609.840000px;}
.y2c_c01405{bottom:610.560000px;}
.y32_c01405{bottom:611.280000px;}
.y33_c01405{bottom:615.600000px;}
.y29_c01405{bottom:651.600000px;}
.y28_c01405{bottom:652.320000px;}
.y2a_c01405{bottom:655.200000px;}
.y1c_c01405{bottom:694.800000px;}
.y1a_c01405{bottom:695.520000px;}
.y1b_c01405{bottom:696.240000px;}
.y19_c01405{bottom:727.200000px;}
.y17_c01405{bottom:727.920000px;}
.y15_c01405{bottom:728.640000px;}
.y18_c01405{bottom:729.360000px;}
.y16_c01405{bottom:730.080000px;}
.y26_c01405{bottom:730.800000px;}
.y27_c01405{bottom:731.520000px;}
.y14_c01405{bottom:771.120000px;}
.y13_c01405{bottom:771.840000px;}
.y25_c01405{bottom:774.000000px;}
.y12_c01405{bottom:813.600000px;}
.y10_c01405{bottom:814.320000px;}
.yf_c01405{bottom:815.040000px;}
.y24_c01405{bottom:815.760000px;}
.y11_c01405{bottom:817.200000px;}
.ye_c01405{bottom:856.800000px;}
.yc_c01405{bottom:857.520000px;}
.yb_c01405{bottom:858.960000px;}
.yd_c01405{bottom:861.120000px;}
.y22_c01405{bottom:899.280000px;}
.y23_c01405{bottom:900.000000px;}
.ya_c01405{bottom:900.720000px;}
.y9_c01405{bottom:902.880000px;}
.y21_c01405{bottom:942.480000px;}
.y8_c01405{bottom:943.200000px;}
.y6_c01405{bottom:945.360000px;}
.y7_c01405{bottom:949.680000px;}
.y20_c01405{bottom:985.680000px;}
.y5_c01405{bottom:987.120000px;}
.y4_c01405{bottom:988.560000px;}
.y3_c01405{bottom:989.280000px;}
.y1f_c01405{bottom:1028.880000px;}
.y1e_c01405{bottom:1029.600000px;}
.y2_c01405{bottom:1030.320000px;}
.y1_c01405{bottom:1031.760000px;}
.y1d_c01405{bottom:1095.120000px;}
.h11_c01405{height:15.550313px;}
.h7_c01405{height:18.142031px;}
.h10_c01405{height:28.508906px;}
.hd_c01405{height:31.100625px;}
.h5_c01405{height:33.692344px;}
.h16_c01405{height:38.875781px;}
.h15_c01405{height:41.467500px;}
.h13_c01405{height:44.059219px;}
.he_c01405{height:46.650937px;}
.hc_c01405{height:49.242656px;}
.h9_c01405{height:51.834375px;}
.h4_c01405{height:54.426094px;}
.h6_c01405{height:57.017812px;}
.ha_c01405{height:59.609531px;}
.h2_c01405{height:62.201250px;}
.hf_c01405{height:64.792969px;}
.hb_c01405{height:67.384687px;}
.h3_c01405{height:69.976406px;}
.h8_c01405{height:72.568125px;}
.h14_c01405{height:75.159844px;}
.h12_c01405{height:106.260469px;}
.h0_c01405{height:1155.600000px;}
.h1_c01405{height:1155.750000px;}
.w1_c01405{width:787.500000px;}
.w0_c01405{width:787.680000px;}
.x0_c01405{left:0.000000px;}
.x1_c01405{left:60.480000px;}
.x29_c01405{left:61.920000px;}
.x21_c01405{left:92.160000px;}
.x3_c01405{left:93.600000px;}
.x5_c01405{left:102.240000px;}
.x2c_c01405{left:113.760000px;}
.x4_c01405{left:123.840000px;}
.x2_c01405{left:125.280000px;}
.x28_c01405{left:169.200000px;}
.x10_c01405{left:179.280000px;}
.x2a_c01405{left:189.360000px;}
.x9_c01405{left:200.880000px;}
.x6_c01405{left:211.680000px;}
.xd_c01405{left:222.480000px;}
.x2b_c01405{left:243.360000px;}
.xe_c01405{left:254.880000px;}
.x7_c01405{left:265.680000px;}
.xa_c01405{left:285.840000px;}
.x11_c01405{left:308.880000px;}
.x2d_c01405{left:310.320000px;}
.x8_c01405{left:319.680000px;}
.xb_c01405{left:330.480000px;}
.x2e_c01405{left:351.360000px;}
.x22_c01405{left:371.520000px;}
.xc_c01405{left:384.480000px;}
.x24_c01405{left:405.360000px;}
.x23_c01405{left:426.240000px;}
.xf_c01405{left:428.400000px;}
.x25_c01405{left:458.640000px;}
.x26_c01405{left:501.120000px;}
.x27_c01405{left:554.400000px;}
.x1e_c01405{left:577.440000px;}
.x1d_c01405{left:578.880000px;}
.x1a_c01405{left:587.520000px;}
.x19_c01405{left:589.680000px;}
.x20_c01405{left:608.400000px;}
.x13_c01405{left:622.080000px;}
.x1f_c01405{left:640.800000px;}
.x16_c01405{left:642.240000px;}
.x1c_c01405{left:673.920000px;}
.x14_c01405{left:676.080000px;}
.x30_c01405{left:684.000000px;}
.x12_c01405{left:689.040000px;}
.x17_c01405{left:707.760000px;}
.x2f_c01405{left:714.960000px;}
.x1b_c01405{left:717.120000px;}
.x15_c01405{left:718.560000px;}
.x18_c01405{left:738.720000px;}
@media print{
.v1_c01405{vertical-align:-2.560000pt;}
.v0_c01405{vertical-align:0.000000pt;}
.ls1_c01405{letter-spacing:0.000000pt;}
.ls0_c01405{letter-spacing:147.400747pt;}
.ws1_c01405{word-spacing:0.000000pt;}
.ws0_c01405{word-spacing:2.145528pt;}
.fsf_c01405{font-size:15.360000pt;}
.fs5_c01405{font-size:17.920000pt;}
.fse_c01405{font-size:28.160000pt;}
.fsb_c01405{font-size:30.720000pt;}
.fs3_c01405{font-size:33.280000pt;}
.fs14_c01405{font-size:38.400000pt;}
.fs13_c01405{font-size:40.960000pt;}
.fs11_c01405{font-size:43.520000pt;}
.fsc_c01405{font-size:46.080000pt;}
.fsa_c01405{font-size:48.640000pt;}
.fs7_c01405{font-size:51.200000pt;}
.fs2_c01405{font-size:53.760000pt;}
.fs4_c01405{font-size:56.320000pt;}
.fs8_c01405{font-size:58.880000pt;}
.fs0_c01405{font-size:61.440000pt;}
.fsd_c01405{font-size:64.000000pt;}
.fs9_c01405{font-size:66.560000pt;}
.fs1_c01405{font-size:69.120000pt;}
.fs6_c01405{font-size:71.680000pt;}
.fs12_c01405{font-size:74.240000pt;}
.fs10_c01405{font-size:104.960000pt;}
.y0_c01405{bottom:0.000000pt;}
.y55_c01405{bottom:77.440000pt;}
.y57_c01405{bottom:78.720000pt;}
.y54_c01405{bottom:80.640000pt;}
.y56_c01405{bottom:81.280000pt;}
.y67_c01405{bottom:82.560000pt;}
.y68_c01405{bottom:83.200000pt;}
.y69_c01405{bottom:85.120000pt;}
.y50_c01405{bottom:116.480000pt;}
.y53_c01405{bottom:117.760000pt;}
.y52_c01405{bottom:118.400000pt;}
.y51_c01405{bottom:119.040000pt;}
.y4f_c01405{bottom:119.680000pt;}
.y64_c01405{bottom:121.600000pt;}
.y66_c01405{bottom:122.880000pt;}
.y65_c01405{bottom:124.160000pt;}
.y4e_c01405{bottom:154.240000pt;}
.y4c_c01405{bottom:156.800000pt;}
.y4d_c01405{bottom:157.440000pt;}
.y63_c01405{bottom:160.000000pt;}
.y62_c01405{bottom:160.640000pt;}
.y4a_c01405{bottom:197.120000pt;}
.y4b_c01405{bottom:197.760000pt;}
.y49_c01405{bottom:280.320000pt;}
.y48_c01405{bottom:282.880000pt;}
.y61_c01405{bottom:283.520000pt;}
.y60_c01405{bottom:284.160000pt;}
.y5f_c01405{bottom:286.080000pt;}
.y47_c01405{bottom:318.720000pt;}
.y46_c01405{bottom:319.360000pt;}
.y5e_c01405{bottom:321.280000pt;}
.y5d_c01405{bottom:321.920000pt;}
.y5c_c01405{bottom:324.480000pt;}
.y45_c01405{bottom:357.120000pt;}
.y44_c01405{bottom:359.040000pt;}
.y42_c01405{bottom:359.680000pt;}
.y43_c01405{bottom:360.320000pt;}
.y59_c01405{bottom:360.960000pt;}
.y5a_c01405{bottom:361.600000pt;}
.y5b_c01405{bottom:362.880000pt;}
.y41_c01405{bottom:394.880000pt;}
.y40_c01405{bottom:396.800000pt;}
.y58_c01405{bottom:398.080000pt;}
.y3f_c01405{bottom:434.560000pt;}
.y3d_c01405{bottom:435.840000pt;}
.y3c_c01405{bottom:436.480000pt;}
.y3e_c01405{bottom:437.120000pt;}
.y3b_c01405{bottom:463.360000pt;}
.y39_c01405{bottom:464.000000pt;}
.y3a_c01405{bottom:465.280000pt;}
.y31_c01405{bottom:465.920000pt;}
.y2f_c01405{bottom:466.560000pt;}
.y30_c01405{bottom:467.840000pt;}
.y38_c01405{bottom:494.080000pt;}
.y36_c01405{bottom:503.040000pt;}
.y2d_c01405{bottom:503.680000pt;}
.y35_c01405{bottom:504.320000pt;}
.y37_c01405{bottom:504.960000pt;}
.y2e_c01405{bottom:506.240000pt;}
.y34_c01405{bottom:541.440000pt;}
.y2b_c01405{bottom:542.080000pt;}
.y2c_c01405{bottom:542.720000pt;}
.y32_c01405{bottom:543.360000pt;}
.y33_c01405{bottom:547.200000pt;}
.y29_c01405{bottom:579.200000pt;}
.y28_c01405{bottom:579.840000pt;}
.y2a_c01405{bottom:582.400000pt;}
.y1c_c01405{bottom:617.600000pt;}
.y1a_c01405{bottom:618.240000pt;}
.y1b_c01405{bottom:618.880000pt;}
.y19_c01405{bottom:646.400000pt;}
.y17_c01405{bottom:647.040000pt;}
.y15_c01405{bottom:647.680000pt;}
.y18_c01405{bottom:648.320000pt;}
.y16_c01405{bottom:648.960000pt;}
.y26_c01405{bottom:649.600000pt;}
.y27_c01405{bottom:650.240000pt;}
.y14_c01405{bottom:685.440000pt;}
.y13_c01405{bottom:686.080000pt;}
.y25_c01405{bottom:688.000000pt;}
.y12_c01405{bottom:723.200000pt;}
.y10_c01405{bottom:723.840000pt;}
.yf_c01405{bottom:724.480000pt;}
.y24_c01405{bottom:725.120000pt;}
.y11_c01405{bottom:726.400000pt;}
.ye_c01405{bottom:761.600000pt;}
.yc_c01405{bottom:762.240000pt;}
.yb_c01405{bottom:763.520000pt;}
.yd_c01405{bottom:765.440000pt;}
.y22_c01405{bottom:799.360000pt;}
.y23_c01405{bottom:800.000000pt;}
.ya_c01405{bottom:800.640000pt;}
.y9_c01405{bottom:802.560000pt;}
.y21_c01405{bottom:837.760000pt;}
.y8_c01405{bottom:838.400000pt;}
.y6_c01405{bottom:840.320000pt;}
.y7_c01405{bottom:844.160000pt;}
.y20_c01405{bottom:876.160000pt;}
.y5_c01405{bottom:877.440000pt;}
.y4_c01405{bottom:878.720000pt;}
.y3_c01405{bottom:879.360000pt;}
.y1f_c01405{bottom:914.560000pt;}
.y1e_c01405{bottom:915.200000pt;}
.y2_c01405{bottom:915.840000pt;}
.y1_c01405{bottom:917.120000pt;}
.y1d_c01405{bottom:973.440000pt;}
.h11_c01405{height:13.822500pt;}
.h7_c01405{height:16.126250pt;}
.h10_c01405{height:25.341250pt;}
.hd_c01405{height:27.645000pt;}
.h5_c01405{height:29.948750pt;}
.h16_c01405{height:34.556250pt;}
.h15_c01405{height:36.860000pt;}
.h13_c01405{height:39.163750pt;}
.he_c01405{height:41.467500pt;}
.hc_c01405{height:43.771250pt;}
.h9_c01405{height:46.075000pt;}
.h4_c01405{height:48.378750pt;}
.h6_c01405{height:50.682500pt;}
.ha_c01405{height:52.986250pt;}
.h2_c01405{height:55.290000pt;}
.hf_c01405{height:57.593750pt;}
.hb_c01405{height:59.897500pt;}
.h3_c01405{height:62.201250pt;}
.h8_c01405{height:64.505000pt;}
.h14_c01405{height:66.808750pt;}
.h12_c01405{height:94.453750pt;}
.h0_c01405{height:1027.200000pt;}
.h1_c01405{height:1027.333333pt;}
.w1_c01405{width:700.000000pt;}
.w0_c01405{width:700.160000pt;}
.x0_c01405{left:0.000000pt;}
.x1_c01405{left:53.760000pt;}
.x29_c01405{left:55.040000pt;}
.x21_c01405{left:81.920000pt;}
.x3_c01405{left:83.200000pt;}
.x5_c01405{left:90.880000pt;}
.x2c_c01405{left:101.120000pt;}
.x4_c01405{left:110.080000pt;}
.x2_c01405{left:111.360000pt;}
.x28_c01405{left:150.400000pt;}
.x10_c01405{left:159.360000pt;}
.x2a_c01405{left:168.320000pt;}
.x9_c01405{left:178.560000pt;}
.x6_c01405{left:188.160000pt;}
.xd_c01405{left:197.760000pt;}
.x2b_c01405{left:216.320000pt;}
.xe_c01405{left:226.560000pt;}
.x7_c01405{left:236.160000pt;}
.xa_c01405{left:254.080000pt;}
.x11_c01405{left:274.560000pt;}
.x2d_c01405{left:275.840000pt;}
.x8_c01405{left:284.160000pt;}
.xb_c01405{left:293.760000pt;}
.x2e_c01405{left:312.320000pt;}
.x22_c01405{left:330.240000pt;}
.xc_c01405{left:341.760000pt;}
.x24_c01405{left:360.320000pt;}
.x23_c01405{left:378.880000pt;}
.xf_c01405{left:380.800000pt;}
.x25_c01405{left:407.680000pt;}
.x26_c01405{left:445.440000pt;}
.x27_c01405{left:492.800000pt;}
.x1e_c01405{left:513.280000pt;}
.x1d_c01405{left:514.560000pt;}
.x1a_c01405{left:522.240000pt;}
.x19_c01405{left:524.160000pt;}
.x20_c01405{left:540.800000pt;}
.x13_c01405{left:552.960000pt;}
.x1f_c01405{left:569.600000pt;}
.x16_c01405{left:570.880000pt;}
.x1c_c01405{left:599.040000pt;}
.x14_c01405{left:600.960000pt;}
.x30_c01405{left:608.000000pt;}
.x12_c01405{left:612.480000pt;}
.x17_c01405{left:629.120000pt;}
.x2f_c01405{left:635.520000pt;}
.x1b_c01405{left:637.440000pt;}
.x15_c01405{left:638.720000pt;}
.x18_c01405{left:656.640000pt;}
}





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

.ir_c01406:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01406{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01406;src:url('chunks/assets/font_2af73280aabbce0b72cfec2f.woff2')format("woff");}.ff1_c01406{font-family:ff1_c01406;line-height:1.109863;font-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_c01406{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m39_c01406{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m37_c01406{transform:matrix(0.227575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227575,0.000000,0.000000,0.250000,0,0);}
.m0_c01406{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m34_c01406{transform:matrix(0.237825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237825,0.000000,0.000000,0.250000,0,0);}
.m2b_c01406{transform:matrix(0.239400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239400,0.000000,0.000000,0.250000,0,0);}
.m16_c01406{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m10_c01406{transform:matrix(0.242475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242475,0.000000,0.000000,0.250000,0,0);}
.m25_c01406{transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);}
.m41_c01406{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m13_c01406{transform:matrix(0.245625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245625,0.000000,0.000000,0.250000,0,0);}
.m23_c01406{transform:matrix(0.245975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245975,0.000000,0.000000,0.250000,0,0);}
.m1b_c01406{transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);}
.m2a_c01406{transform:matrix(0.248450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248450,0.000000,0.000000,0.250000,0,0);}
.m2c_c01406{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01406{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_c01406{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m2_c01406{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m27_c01406{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m7_c01406{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_c01406{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);}
.m2f_c01406{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m4_c01406{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m26_c01406{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m11_c01406{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m8_c01406{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m22_c01406{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m35_c01406{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1_c01406{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m6_c01406{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mc_c01406{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m19_c01406{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m9_c01406{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01406{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.me_c01406{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m30_c01406{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m40_c01406{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m21_c01406{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m36_c01406{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m33_c01406{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01406{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mb_c01406{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);}
.m45_c01406{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01406{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m17_c01406{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);}
.m44_c01406{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m12_c01406{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01406{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);}
.m24_c01406{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);}
.m3b_c01406{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);}
.m38_c01406{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01406{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);}
.m1d_c01406{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);}
.m1e_c01406{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m15_c01406{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01406{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m14_c01406{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);}
.m20_c01406{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);}
.m42_c01406{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);}
.m2d_c01406{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m29_c01406{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_c01406{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m28_c01406{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);}
.m32_c01406{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m43_c01406{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m18_c01406{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m46_c01406{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m31_c01406{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01406{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m3_c01406{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01406{transform:matrix(0.832500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832500,0.000000,0.000000,0.250000,0,0);}
.v1_c01406{vertical-align:-5.760000px;}
.v0_c01406{vertical-align:0.000000px;}
.ls0_c01406{letter-spacing:0.000000px;}
.sc__c01406{text-shadow:none;}
.sc0_c01406{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01406{-webkit-text-stroke:0px transparent;}
.sc0_c01406{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01406{word-spacing:0.000000px;}
.ws0_c01406{word-spacing:11.690400px;}
.ws1_c01406{word-spacing:11.693143px;}
.fc0_c01406{color:transparent;}
.fse_c01406{font-size:17.280000px;}
.fs10_c01406{font-size:31.680000px;}
.fsf_c01406{font-size:40.320000px;}
.fs8_c01406{font-size:43.200000px;}
.fsc_c01406{font-size:48.960000px;}
.fsa_c01406{font-size:51.840000px;}
.fs3_c01406{font-size:54.720000px;}
.fs1_c01406{font-size:57.600000px;}
.fs0_c01406{font-size:60.480000px;}
.fs7_c01406{font-size:63.360000px;}
.fs4_c01406{font-size:66.240000px;}
.fs2_c01406{font-size:69.120000px;}
.fs9_c01406{font-size:72.000000px;}
.fs6_c01406{font-size:74.880000px;}
.fs5_c01406{font-size:77.760000px;}
.fsb_c01406{font-size:80.640000px;}
.fsd_c01406{font-size:83.520000px;}
.y0_c01406{bottom:0.000000px;}
.y54_c01406{bottom:107.280000px;}
.y53_c01406{bottom:108.000000px;}
.y52_c01406{bottom:109.440000px;}
.y13_c01406{bottom:110.880000px;}
.y55_c01406{bottom:111.600000px;}
.y14_c01406{bottom:112.320000px;}
.y51_c01406{bottom:150.480000px;}
.y50_c01406{bottom:151.200000px;}
.y10_c01406{bottom:153.360000px;}
.y12_c01406{bottom:154.080000px;}
.y11_c01406{bottom:154.800000px;}
.y4f_c01406{bottom:192.240000px;}
.y4e_c01406{bottom:195.840000px;}
.yd_c01406{bottom:197.280000px;}
.ye_c01406{bottom:198.000000px;}
.yf_c01406{bottom:198.720000px;}
.y4d_c01406{bottom:236.880000px;}
.y4c_c01406{bottom:239.760000px;}
.yb_c01406{bottom:241.200000px;}
.yc_c01406{bottom:242.640000px;}
.y4b_c01406{bottom:279.360000px;}
.y4a_c01406{bottom:282.240000px;}
.y8_c01406{bottom:284.400000px;}
.y9_c01406{bottom:285.120000px;}
.ya_c01406{bottom:287.280000px;}
.y47_c01406{bottom:324.000000px;}
.y49_c01406{bottom:324.720000px;}
.y46_c01406{bottom:326.160000px;}
.y48_c01406{bottom:326.880000px;}
.y5_c01406{bottom:328.320000px;}
.y4_c01406{bottom:329.040000px;}
.y7_c01406{bottom:329.760000px;}
.y6_c01406{bottom:331.200000px;}
.y43_c01406{bottom:367.200000px;}
.y45_c01406{bottom:367.920000px;}
.y44_c01406{bottom:369.360000px;}
.y42_c01406{bottom:370.080000px;}
.y1_c01406{bottom:370.800000px;}
.y2_c01406{bottom:371.520000px;}
.y3_c01406{bottom:372.960000px;}
.y41_c01406{bottom:415.440000px;}
.y40_c01406{bottom:465.120000px;}
.y67_c01406{bottom:467.280000px;}
.y3f_c01406{bottom:468.000000px;}
.y68_c01406{bottom:468.720000px;}
.y3b_c01406{bottom:508.320000px;}
.y3c_c01406{bottom:509.040000px;}
.y3d_c01406{bottom:509.760000px;}
.y3a_c01406{bottom:510.480000px;}
.y65_c01406{bottom:511.920000px;}
.y66_c01406{bottom:512.640000px;}
.y3e_c01406{bottom:513.360000px;}
.y39_c01406{bottom:551.520000px;}
.y38_c01406{bottom:553.680000px;}
.y63_c01406{bottom:554.400000px;}
.y64_c01406{bottom:557.280000px;}
.y37_c01406{bottom:594.720000px;}
.y33_c01406{bottom:595.440000px;}
.y36_c01406{bottom:596.160000px;}
.y32_c01406{bottom:596.880000px;}
.y34_c01406{bottom:597.600000px;}
.y35_c01406{bottom:598.320000px;}
.y62_c01406{bottom:599.040000px;}
.y30_c01406{bottom:637.920000px;}
.y31_c01406{bottom:638.640000px;}
.y2f_c01406{bottom:639.360000px;}
.y60_c01406{bottom:640.080000px;}
.y61_c01406{bottom:642.240000px;}
.y2e_c01406{bottom:681.120000px;}
.y2d_c01406{bottom:681.840000px;}
.y5f_c01406{bottom:682.560000px;}
.y2c_c01406{bottom:683.280000px;}
.y5e_c01406{bottom:684.000000px;}
.y2b_c01406{bottom:725.040000px;}
.y5d_c01406{bottom:725.760000px;}
.y2a_c01406{bottom:726.480000px;}
.y5b_c01406{bottom:727.920000px;}
.y5c_c01406{bottom:728.640000px;}
.y29_c01406{bottom:768.240000px;}
.y28_c01406{bottom:768.960000px;}
.y27_c01406{bottom:769.680000px;}
.y25_c01406{bottom:812.160000px;}
.y24_c01406{bottom:812.880000px;}
.y26_c01406{bottom:815.040000px;}
.y23_c01406{bottom:855.360000px;}
.y22_c01406{bottom:856.080000px;}
.y5a_c01406{bottom:897.840000px;}
.y21_c01406{bottom:898.560000px;}
.y20_c01406{bottom:899.280000px;}
.y1f_c01406{bottom:941.040000px;}
.y1c_c01406{bottom:941.760000px;}
.y1e_c01406{bottom:942.480000px;}
.y1b_c01406{bottom:943.920000px;}
.y1d_c01406{bottom:945.360000px;}
.y19_c01406{bottom:984.960000px;}
.y57_c01406{bottom:985.680000px;}
.y18_c01406{bottom:986.400000px;}
.y1a_c01406{bottom:987.840000px;}
.y17_c01406{bottom:1028.160000px;}
.y16_c01406{bottom:1028.880000px;}
.y59_c01406{bottom:1029.600000px;}
.y15_c01406{bottom:1030.320000px;}
.y58_c01406{bottom:1031.760000px;}
.y56_c01406{bottom:1105.920000px;}
.h10_c01406{height:15.550313px;}
.h12_c01406{height:28.508906px;}
.h11_c01406{height:36.284062px;}
.ha_c01406{height:38.875781px;}
.he_c01406{height:44.059219px;}
.hc_c01406{height:46.650937px;}
.h5_c01406{height:49.242656px;}
.h3_c01406{height:51.834375px;}
.h2_c01406{height:54.426094px;}
.h9_c01406{height:57.017812px;}
.h6_c01406{height:59.609531px;}
.h4_c01406{height:62.201250px;}
.hb_c01406{height:64.792969px;}
.h8_c01406{height:67.384687px;}
.h7_c01406{height:69.976406px;}
.hd_c01406{height:72.568125px;}
.hf_c01406{height:75.159844px;}
.h0_c01406{height:1153.440000px;}
.h1_c01406{height:1153.500000px;}
.w1_c01406{width:785.250000px;}
.w0_c01406{width:785.520000px;}
.x0_c01406{left:0.000000px;}
.xa_c01406{left:60.480000px;}
.x22_c01406{left:92.160000px;}
.x1a_c01406{left:112.320000px;}
.x1c_c01406{left:122.400000px;}
.xb_c01406{left:123.840000px;}
.x19_c01406{left:156.960000px;}
.x1b_c01406{left:167.040000px;}
.xf_c01406{left:209.520000px;}
.x20_c01406{left:210.960000px;}
.x15_c01406{left:220.320000px;}
.x13_c01406{left:222.480000px;}
.x1d_c01406{left:232.560000px;}
.xc_c01406{left:254.880000px;}
.x1e_c01406{left:264.240000px;}
.xd_c01406{left:265.680000px;}
.x12_c01406{left:275.760000px;}
.x14_c01406{left:307.440000px;}
.x10_c01406{left:308.880000px;}
.xe_c01406{left:318.960000px;}
.x1f_c01406{left:350.640000px;}
.x17_c01406{left:362.160000px;}
.x21_c01406{left:393.840000px;}
.x18_c01406{left:404.640000px;}
.x16_c01406{left:415.440000px;}
.x23_c01406{left:425.520000px;}
.x11_c01406{left:470.160000px;}
.x7_c01406{left:586.080000px;}
.x5_c01406{left:587.520000px;}
.x25_c01406{left:588.960000px;}
.x2a_c01406{left:598.320000px;}
.x8_c01406{left:608.400000px;}
.x6_c01406{left:640.080000px;}
.x1_c01406{left:641.520000px;}
.x26_c01406{left:643.680000px;}
.x2_c01406{left:673.920000px;}
.x27_c01406{left:676.080000px;}
.x2b_c01406{left:682.560000px;}
.x24_c01406{left:684.000000px;}
.x29_c01406{left:685.440000px;}
.x9_c01406{left:706.320000px;}
.x2c_c01406{left:714.960000px;}
.x3_c01406{left:716.400000px;}
.x28_c01406{left:717.840000px;}
.x4_c01406{left:736.560000px;}
@media print{
.v1_c01406{vertical-align:-5.120000pt;}
.v0_c01406{vertical-align:0.000000pt;}
.ls0_c01406{letter-spacing:0.000000pt;}
.ws2_c01406{word-spacing:0.000000pt;}
.ws0_c01406{word-spacing:10.391467pt;}
.ws1_c01406{word-spacing:10.393905pt;}
.fse_c01406{font-size:15.360000pt;}
.fs10_c01406{font-size:28.160000pt;}
.fsf_c01406{font-size:35.840000pt;}
.fs8_c01406{font-size:38.400000pt;}
.fsc_c01406{font-size:43.520000pt;}
.fsa_c01406{font-size:46.080000pt;}
.fs3_c01406{font-size:48.640000pt;}
.fs1_c01406{font-size:51.200000pt;}
.fs0_c01406{font-size:53.760000pt;}
.fs7_c01406{font-size:56.320000pt;}
.fs4_c01406{font-size:58.880000pt;}
.fs2_c01406{font-size:61.440000pt;}
.fs9_c01406{font-size:64.000000pt;}
.fs6_c01406{font-size:66.560000pt;}
.fs5_c01406{font-size:69.120000pt;}
.fsb_c01406{font-size:71.680000pt;}
.fsd_c01406{font-size:74.240000pt;}
.y0_c01406{bottom:0.000000pt;}
.y54_c01406{bottom:95.360000pt;}
.y53_c01406{bottom:96.000000pt;}
.y52_c01406{bottom:97.280000pt;}
.y13_c01406{bottom:98.560000pt;}
.y55_c01406{bottom:99.200000pt;}
.y14_c01406{bottom:99.840000pt;}
.y51_c01406{bottom:133.760000pt;}
.y50_c01406{bottom:134.400000pt;}
.y10_c01406{bottom:136.320000pt;}
.y12_c01406{bottom:136.960000pt;}
.y11_c01406{bottom:137.600000pt;}
.y4f_c01406{bottom:170.880000pt;}
.y4e_c01406{bottom:174.080000pt;}
.yd_c01406{bottom:175.360000pt;}
.ye_c01406{bottom:176.000000pt;}
.yf_c01406{bottom:176.640000pt;}
.y4d_c01406{bottom:210.560000pt;}
.y4c_c01406{bottom:213.120000pt;}
.yb_c01406{bottom:214.400000pt;}
.yc_c01406{bottom:215.680000pt;}
.y4b_c01406{bottom:248.320000pt;}
.y4a_c01406{bottom:250.880000pt;}
.y8_c01406{bottom:252.800000pt;}
.y9_c01406{bottom:253.440000pt;}
.ya_c01406{bottom:255.360000pt;}
.y47_c01406{bottom:288.000000pt;}
.y49_c01406{bottom:288.640000pt;}
.y46_c01406{bottom:289.920000pt;}
.y48_c01406{bottom:290.560000pt;}
.y5_c01406{bottom:291.840000pt;}
.y4_c01406{bottom:292.480000pt;}
.y7_c01406{bottom:293.120000pt;}
.y6_c01406{bottom:294.400000pt;}
.y43_c01406{bottom:326.400000pt;}
.y45_c01406{bottom:327.040000pt;}
.y44_c01406{bottom:328.320000pt;}
.y42_c01406{bottom:328.960000pt;}
.y1_c01406{bottom:329.600000pt;}
.y2_c01406{bottom:330.240000pt;}
.y3_c01406{bottom:331.520000pt;}
.y41_c01406{bottom:369.280000pt;}
.y40_c01406{bottom:413.440000pt;}
.y67_c01406{bottom:415.360000pt;}
.y3f_c01406{bottom:416.000000pt;}
.y68_c01406{bottom:416.640000pt;}
.y3b_c01406{bottom:451.840000pt;}
.y3c_c01406{bottom:452.480000pt;}
.y3d_c01406{bottom:453.120000pt;}
.y3a_c01406{bottom:453.760000pt;}
.y65_c01406{bottom:455.040000pt;}
.y66_c01406{bottom:455.680000pt;}
.y3e_c01406{bottom:456.320000pt;}
.y39_c01406{bottom:490.240000pt;}
.y38_c01406{bottom:492.160000pt;}
.y63_c01406{bottom:492.800000pt;}
.y64_c01406{bottom:495.360000pt;}
.y37_c01406{bottom:528.640000pt;}
.y33_c01406{bottom:529.280000pt;}
.y36_c01406{bottom:529.920000pt;}
.y32_c01406{bottom:530.560000pt;}
.y34_c01406{bottom:531.200000pt;}
.y35_c01406{bottom:531.840000pt;}
.y62_c01406{bottom:532.480000pt;}
.y30_c01406{bottom:567.040000pt;}
.y31_c01406{bottom:567.680000pt;}
.y2f_c01406{bottom:568.320000pt;}
.y60_c01406{bottom:568.960000pt;}
.y61_c01406{bottom:570.880000pt;}
.y2e_c01406{bottom:605.440000pt;}
.y2d_c01406{bottom:606.080000pt;}
.y5f_c01406{bottom:606.720000pt;}
.y2c_c01406{bottom:607.360000pt;}
.y5e_c01406{bottom:608.000000pt;}
.y2b_c01406{bottom:644.480000pt;}
.y5d_c01406{bottom:645.120000pt;}
.y2a_c01406{bottom:645.760000pt;}
.y5b_c01406{bottom:647.040000pt;}
.y5c_c01406{bottom:647.680000pt;}
.y29_c01406{bottom:682.880000pt;}
.y28_c01406{bottom:683.520000pt;}
.y27_c01406{bottom:684.160000pt;}
.y25_c01406{bottom:721.920000pt;}
.y24_c01406{bottom:722.560000pt;}
.y26_c01406{bottom:724.480000pt;}
.y23_c01406{bottom:760.320000pt;}
.y22_c01406{bottom:760.960000pt;}
.y5a_c01406{bottom:798.080000pt;}
.y21_c01406{bottom:798.720000pt;}
.y20_c01406{bottom:799.360000pt;}
.y1f_c01406{bottom:836.480000pt;}
.y1c_c01406{bottom:837.120000pt;}
.y1e_c01406{bottom:837.760000pt;}
.y1b_c01406{bottom:839.040000pt;}
.y1d_c01406{bottom:840.320000pt;}
.y19_c01406{bottom:875.520000pt;}
.y57_c01406{bottom:876.160000pt;}
.y18_c01406{bottom:876.800000pt;}
.y1a_c01406{bottom:878.080000pt;}
.y17_c01406{bottom:913.920000pt;}
.y16_c01406{bottom:914.560000pt;}
.y59_c01406{bottom:915.200000pt;}
.y15_c01406{bottom:915.840000pt;}
.y58_c01406{bottom:917.120000pt;}
.y56_c01406{bottom:983.040000pt;}
.h10_c01406{height:13.822500pt;}
.h12_c01406{height:25.341250pt;}
.h11_c01406{height:32.252500pt;}
.ha_c01406{height:34.556250pt;}
.he_c01406{height:39.163750pt;}
.hc_c01406{height:41.467500pt;}
.h5_c01406{height:43.771250pt;}
.h3_c01406{height:46.075000pt;}
.h2_c01406{height:48.378750pt;}
.h9_c01406{height:50.682500pt;}
.h6_c01406{height:52.986250pt;}
.h4_c01406{height:55.290000pt;}
.hb_c01406{height:57.593750pt;}
.h8_c01406{height:59.897500pt;}
.h7_c01406{height:62.201250pt;}
.hd_c01406{height:64.505000pt;}
.hf_c01406{height:66.808750pt;}
.h0_c01406{height:1025.280000pt;}
.h1_c01406{height:1025.333333pt;}
.w1_c01406{width:698.000000pt;}
.w0_c01406{width:698.240000pt;}
.x0_c01406{left:0.000000pt;}
.xa_c01406{left:53.760000pt;}
.x22_c01406{left:81.920000pt;}
.x1a_c01406{left:99.840000pt;}
.x1c_c01406{left:108.800000pt;}
.xb_c01406{left:110.080000pt;}
.x19_c01406{left:139.520000pt;}
.x1b_c01406{left:148.480000pt;}
.xf_c01406{left:186.240000pt;}
.x20_c01406{left:187.520000pt;}
.x15_c01406{left:195.840000pt;}
.x13_c01406{left:197.760000pt;}
.x1d_c01406{left:206.720000pt;}
.xc_c01406{left:226.560000pt;}
.x1e_c01406{left:234.880000pt;}
.xd_c01406{left:236.160000pt;}
.x12_c01406{left:245.120000pt;}
.x14_c01406{left:273.280000pt;}
.x10_c01406{left:274.560000pt;}
.xe_c01406{left:283.520000pt;}
.x1f_c01406{left:311.680000pt;}
.x17_c01406{left:321.920000pt;}
.x21_c01406{left:350.080000pt;}
.x18_c01406{left:359.680000pt;}
.x16_c01406{left:369.280000pt;}
.x23_c01406{left:378.240000pt;}
.x11_c01406{left:417.920000pt;}
.x7_c01406{left:520.960000pt;}
.x5_c01406{left:522.240000pt;}
.x25_c01406{left:523.520000pt;}
.x2a_c01406{left:531.840000pt;}
.x8_c01406{left:540.800000pt;}
.x6_c01406{left:568.960000pt;}
.x1_c01406{left:570.240000pt;}
.x26_c01406{left:572.160000pt;}
.x2_c01406{left:599.040000pt;}
.x27_c01406{left:600.960000pt;}
.x2b_c01406{left:606.720000pt;}
.x24_c01406{left:608.000000pt;}
.x29_c01406{left:609.280000pt;}
.x9_c01406{left:627.840000pt;}
.x2c_c01406{left:635.520000pt;}
.x3_c01406{left:636.800000pt;}
.x28_c01406{left:638.080000pt;}
.x4_c01406{left:654.720000pt;}
}





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

.ir_c01407:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01407{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01407;src:url('chunks/assets/font_6ed1dde09407f9995f856458.woff2')format("woff");}.ff1_c01407{font-family:ff1_c01407;line-height:1.109863;font-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_c01407{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m46_c01407{transform:matrix(0.205350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205350,0.000000,0.000000,0.250000,0,0);}
.m36_c01407{transform:matrix(0.217050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217050,0.000000,0.000000,0.250000,0,0);}
.m35_c01407{transform:matrix(0.218600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218600,0.000000,0.000000,0.250000,0,0);}
.m39_c01407{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m42_c01407{transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);}
.m26_c01407{transform:matrix(0.235650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235650,0.000000,0.000000,0.250000,0,0);}
.m23_c01407{transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);}
.m2b_c01407{transform:matrix(0.240150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240150,0.000000,0.000000,0.250000,0,0);}
.m37_c01407{transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);}
.m14_c01407{transform:matrix(0.243675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243675,0.000000,0.000000,0.250000,0,0);}
.m34_c01407{transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);}
.m45_c01407{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.me_c01407{transform:matrix(0.245975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245975,0.000000,0.000000,0.250000,0,0);}
.m30_c01407{transform:matrix(0.246725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246725,0.000000,0.000000,0.250000,0,0);}
.m13_c01407{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m28_c01407{transform:matrix(0.248775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248775,0.000000,0.000000,0.250000,0,0);}
.m2a_c01407{transform:matrix(0.249075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249075,0.000000,0.000000,0.250000,0,0);}
.m3d_c01407{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_c01407{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m17_c01407{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01407{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m11_c01407{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01407{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);}
.m3f_c01407{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);}
.m32_c01407{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_c01407{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01407{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_c01407{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);}
.m3a_c01407{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m47_c01407{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);}
.m2e_c01407{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m10_c01407{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m21_c01407{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m41_c01407{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01407{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m15_c01407{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m18_c01407{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m31_c01407{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1_c01407{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01407{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m16_c01407{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2_c01407{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3_c01407{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);}
.m22_c01407{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m20_c01407{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01407{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);}
.m29_c01407{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m7_c01407{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m44_c01407{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m6_c01407{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m0_c01407{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m4_c01407{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.mb_c01407{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);}
.m2c_c01407{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.ma_c01407{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m33_c01407{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);}
.mf_c01407{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01407{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m38_c01407{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m5_c01407{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m27_c01407{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01407{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m43_c01407{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m8_c01407{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.mc_c01407{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);}
.m12_c01407{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m25_c01407{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m9_c01407{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m48_c01407{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.md_c01407{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.m40_c01407{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01407{transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);}
.v1_c01407{vertical-align:-5.760000px;}
.v0_c01407{vertical-align:0.000000px;}
.ls1_c01407{letter-spacing:0.000000px;}
.ls0_c01407{letter-spacing:85.310400px;}
.sc__c01407{text-shadow:none;}
.sc0_c01407{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01407{-webkit-text-stroke:0px transparent;}
.sc0_c01407{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01407{word-spacing:0.000000px;}
.fc0_c01407{color:transparent;}
.fsd_c01407{font-size:31.680000px;}
.fsa_c01407{font-size:34.560000px;}
.fs5_c01407{font-size:43.200000px;}
.fs9_c01407{font-size:48.960000px;}
.fs7_c01407{font-size:51.840000px;}
.fsc_c01407{font-size:54.720000px;}
.fs6_c01407{font-size:57.600000px;}
.fs4_c01407{font-size:60.480000px;}
.fs2_c01407{font-size:63.360000px;}
.fsb_c01407{font-size:66.240000px;}
.fs3_c01407{font-size:69.120000px;}
.fs1_c01407{font-size:72.000000px;}
.fs0_c01407{font-size:74.880000px;}
.fs8_c01407{font-size:77.760000px;}
.fse_c01407{font-size:80.640000px;}
.y0_c01407{bottom:0.000000px;}
.y27_c01407{bottom:97.920000px;}
.y26_c01407{bottom:102.240000px;}
.y2b_c01407{bottom:103.680000px;}
.y29_c01407{bottom:105.120000px;}
.y23_c01407{bottom:141.840000px;}
.y25_c01407{bottom:142.560000px;}
.y24_c01407{bottom:144.720000px;}
.y21_c01407{bottom:145.440000px;}
.y22_c01407{bottom:146.160000px;}
.y2a_c01407{bottom:147.600000px;}
.y28_c01407{bottom:148.320000px;}
.y1f_c01407{bottom:187.920000px;}
.y20_c01407{bottom:188.640000px;}
.y4b_c01407{bottom:239.040000px;}
.y4c_c01407{bottom:239.760000px;}
.y4a_c01407{bottom:240.480000px;}
.y4d_c01407{bottom:241.920000px;}
.y5e_c01407{bottom:242.640000px;}
.y4e_c01407{bottom:243.360000px;}
.y5f_c01407{bottom:246.240000px;}
.y49_c01407{bottom:282.240000px;}
.y47_c01407{bottom:284.400000px;}
.y48_c01407{bottom:285.840000px;}
.y5d_c01407{bottom:288.000000px;}
.y44_c01407{bottom:325.440000px;}
.y46_c01407{bottom:326.160000px;}
.y45_c01407{bottom:326.880000px;}
.y43_c01407{bottom:328.320000px;}
.y5c_c01407{bottom:329.040000px;}
.y41_c01407{bottom:368.640000px;}
.y42_c01407{bottom:369.360000px;}
.y40_c01407{bottom:372.240000px;}
.y5b_c01407{bottom:373.680000px;}
.y3e_c01407{bottom:411.120000px;}
.y3f_c01407{bottom:412.560000px;}
.y5a_c01407{bottom:414.720000px;}
.y3d_c01407{bottom:415.440000px;}
.y59_c01407{bottom:418.320000px;}
.y3c_c01407{bottom:455.760000px;}
.y57_c01407{bottom:457.920000px;}
.y3b_c01407{bottom:459.360000px;}
.y58_c01407{bottom:460.800000px;}
.y56_c01407{bottom:461.520000px;}
.y3a_c01407{bottom:499.680000px;}
.y55_c01407{bottom:501.840000px;}
.y39_c01407{bottom:502.560000px;}
.y38_c01407{bottom:543.600000px;}
.y54_c01407{bottom:544.320000px;}
.y37_c01407{bottom:545.040000px;}
.y36_c01407{bottom:586.800000px;}
.y35_c01407{bottom:588.240000px;}
.y52_c01407{bottom:588.960000px;}
.y53_c01407{bottom:589.680000px;}
.y34_c01407{bottom:630.720000px;}
.y32_c01407{bottom:632.160000px;}
.y33_c01407{bottom:632.880000px;}
.y31_c01407{bottom:673.200000px;}
.y50_c01407{bottom:673.920000px;}
.y51_c01407{bottom:674.640000px;}
.y2f_c01407{bottom:676.080000px;}
.y30_c01407{bottom:677.520000px;}
.y2e_c01407{bottom:716.400000px;}
.y4f_c01407{bottom:717.120000px;}
.y2d_c01407{bottom:718.560000px;}
.y2c_c01407{bottom:763.920000px;}
.y1d_c01407{bottom:813.600000px;}
.y14_c01407{bottom:814.320000px;}
.y13_c01407{bottom:815.040000px;}
.y1e_c01407{bottom:816.480000px;}
.y12_c01407{bottom:856.800000px;}
.y10_c01407{bottom:857.520000px;}
.y1c_c01407{bottom:858.960000px;}
.y11_c01407{bottom:860.400000px;}
.y1b_c01407{bottom:899.280000px;}
.yd_c01407{bottom:900.000000px;}
.yf_c01407{bottom:900.720000px;}
.yc_c01407{bottom:902.160000px;}
.ye_c01407{bottom:903.600000px;}
.y1a_c01407{bottom:941.760000px;}
.y19_c01407{bottom:943.200000px;}
.ya_c01407{bottom:945.360000px;}
.yb_c01407{bottom:947.520000px;}
.y18_c01407{bottom:984.960000px;}
.y17_c01407{bottom:985.680000px;}
.y9_c01407{bottom:988.560000px;}
.y6_c01407{bottom:989.280000px;}
.y7_c01407{bottom:990.000000px;}
.y8_c01407{bottom:990.720000px;}
.y16_c01407{bottom:1028.880000px;}
.y15_c01407{bottom:1029.600000px;}
.y4_c01407{bottom:1031.040000px;}
.y2_c01407{bottom:1031.760000px;}
.y3_c01407{bottom:1032.480000px;}
.y5_c01407{bottom:1033.200000px;}
.y1_c01407{bottom:1103.760000px;}
.hf_c01407{height:28.508906px;}
.hc_c01407{height:31.100625px;}
.h7_c01407{height:38.875781px;}
.hb_c01407{height:44.059219px;}
.h9_c01407{height:46.650937px;}
.he_c01407{height:49.242656px;}
.h8_c01407{height:51.834375px;}
.h6_c01407{height:54.426094px;}
.h4_c01407{height:57.017812px;}
.hd_c01407{height:59.609531px;}
.h5_c01407{height:62.201250px;}
.h3_c01407{height:64.792969px;}
.h2_c01407{height:67.384687px;}
.ha_c01407{height:69.976406px;}
.h10_c01407{height:72.568125px;}
.h0_c01407{height:1154.880000px;}
.h1_c01407{height:1155.000000px;}
.w1_c01407{width:787.500000px;}
.w0_c01407{width:787.680000px;}
.x0_c01407{left:0.000000px;}
.x2_c01407{left:59.760000px;}
.x13_c01407{left:90.720000px;}
.x9_c01407{left:92.160000px;}
.x11_c01407{left:110.160000px;}
.x1b_c01407{left:111.600000px;}
.x14_c01407{left:120.960000px;}
.x1d_c01407{left:122.400000px;}
.x3_c01407{left:123.840000px;}
.x12_c01407{left:164.880000px;}
.x1c_c01407{left:166.320000px;}
.x1e_c01407{left:198.720000px;}
.x4_c01407{left:209.520000px;}
.x20_c01407{left:219.600000px;}
.xa_c01407{left:221.040000px;}
.x8_c01407{left:222.480000px;}
.x1f_c01407{left:252.720000px;}
.x7_c01407{left:263.520000px;}
.x22_c01407{left:272.160000px;}
.x15_c01407{left:274.320000px;}
.x5_c01407{left:275.760000px;}
.x21_c01407{left:306.720000px;}
.x23_c01407{left:316.080000px;}
.x6_c01407{left:330.480000px;}
.x24_c01407{left:359.280000px;}
.x16_c01407{left:574.560000px;}
.x17_c01407{left:584.639910px;}
.x2b_c01407{left:604.800000px;}
.x25_c01407{left:606.960000px;}
.xe_c01407{left:609.120000px;}
.x18_c01407{left:639.360000px;}
.xb_c01407{left:641.520000px;}
.x1_c01407{left:668.160000px;}
.x19_c01407{left:671.040000px;}
.x26_c01407{left:672.480000px;}
.xc_c01407{left:674.640000px;}
.x2a_c01407{left:680.400000px;}
.x29_c01407{left:682.560000px;}
.x1a_c01407{left:703.440000px;}
.x28_c01407{left:713.520000px;}
.x10_c01407{left:715.680000px;}
.xd_c01407{left:717.120000px;}
.x27_c01407{left:735.120000px;}
.xf_c01407{left:737.280000px;}
@media print{
.v1_c01407{vertical-align:-5.120000pt;}
.v0_c01407{vertical-align:0.000000pt;}
.ls1_c01407{letter-spacing:0.000000pt;}
.ls0_c01407{letter-spacing:75.831467pt;}
.ws0_c01407{word-spacing:0.000000pt;}
.fsd_c01407{font-size:28.160000pt;}
.fsa_c01407{font-size:30.720000pt;}
.fs5_c01407{font-size:38.400000pt;}
.fs9_c01407{font-size:43.520000pt;}
.fs7_c01407{font-size:46.080000pt;}
.fsc_c01407{font-size:48.640000pt;}
.fs6_c01407{font-size:51.200000pt;}
.fs4_c01407{font-size:53.760000pt;}
.fs2_c01407{font-size:56.320000pt;}
.fsb_c01407{font-size:58.880000pt;}
.fs3_c01407{font-size:61.440000pt;}
.fs1_c01407{font-size:64.000000pt;}
.fs0_c01407{font-size:66.560000pt;}
.fs8_c01407{font-size:69.120000pt;}
.fse_c01407{font-size:71.680000pt;}
.y0_c01407{bottom:0.000000pt;}
.y27_c01407{bottom:87.040000pt;}
.y26_c01407{bottom:90.880000pt;}
.y2b_c01407{bottom:92.160000pt;}
.y29_c01407{bottom:93.440000pt;}
.y23_c01407{bottom:126.080000pt;}
.y25_c01407{bottom:126.720000pt;}
.y24_c01407{bottom:128.640000pt;}
.y21_c01407{bottom:129.280000pt;}
.y22_c01407{bottom:129.920000pt;}
.y2a_c01407{bottom:131.200000pt;}
.y28_c01407{bottom:131.840000pt;}
.y1f_c01407{bottom:167.040000pt;}
.y20_c01407{bottom:167.680000pt;}
.y4b_c01407{bottom:212.480000pt;}
.y4c_c01407{bottom:213.120000pt;}
.y4a_c01407{bottom:213.760000pt;}
.y4d_c01407{bottom:215.040000pt;}
.y5e_c01407{bottom:215.680000pt;}
.y4e_c01407{bottom:216.320000pt;}
.y5f_c01407{bottom:218.880000pt;}
.y49_c01407{bottom:250.880000pt;}
.y47_c01407{bottom:252.800000pt;}
.y48_c01407{bottom:254.080000pt;}
.y5d_c01407{bottom:256.000000pt;}
.y44_c01407{bottom:289.280000pt;}
.y46_c01407{bottom:289.920000pt;}
.y45_c01407{bottom:290.560000pt;}
.y43_c01407{bottom:291.840000pt;}
.y5c_c01407{bottom:292.480000pt;}
.y41_c01407{bottom:327.680000pt;}
.y42_c01407{bottom:328.320000pt;}
.y40_c01407{bottom:330.880000pt;}
.y5b_c01407{bottom:332.160000pt;}
.y3e_c01407{bottom:365.440000pt;}
.y3f_c01407{bottom:366.720000pt;}
.y5a_c01407{bottom:368.640000pt;}
.y3d_c01407{bottom:369.280000pt;}
.y59_c01407{bottom:371.840000pt;}
.y3c_c01407{bottom:405.120000pt;}
.y57_c01407{bottom:407.040000pt;}
.y3b_c01407{bottom:408.320000pt;}
.y58_c01407{bottom:409.600000pt;}
.y56_c01407{bottom:410.240000pt;}
.y3a_c01407{bottom:444.160000pt;}
.y55_c01407{bottom:446.080000pt;}
.y39_c01407{bottom:446.720000pt;}
.y38_c01407{bottom:483.200000pt;}
.y54_c01407{bottom:483.840000pt;}
.y37_c01407{bottom:484.480000pt;}
.y36_c01407{bottom:521.600000pt;}
.y35_c01407{bottom:522.880000pt;}
.y52_c01407{bottom:523.520000pt;}
.y53_c01407{bottom:524.160000pt;}
.y34_c01407{bottom:560.640000pt;}
.y32_c01407{bottom:561.920000pt;}
.y33_c01407{bottom:562.560000pt;}
.y31_c01407{bottom:598.400000pt;}
.y50_c01407{bottom:599.040000pt;}
.y51_c01407{bottom:599.680000pt;}
.y2f_c01407{bottom:600.960000pt;}
.y30_c01407{bottom:602.240000pt;}
.y2e_c01407{bottom:636.800000pt;}
.y4f_c01407{bottom:637.440000pt;}
.y2d_c01407{bottom:638.720000pt;}
.y2c_c01407{bottom:679.040000pt;}
.y1d_c01407{bottom:723.200000pt;}
.y14_c01407{bottom:723.840000pt;}
.y13_c01407{bottom:724.480000pt;}
.y1e_c01407{bottom:725.760000pt;}
.y12_c01407{bottom:761.600000pt;}
.y10_c01407{bottom:762.240000pt;}
.y1c_c01407{bottom:763.520000pt;}
.y11_c01407{bottom:764.800000pt;}
.y1b_c01407{bottom:799.360000pt;}
.yd_c01407{bottom:800.000000pt;}
.yf_c01407{bottom:800.640000pt;}
.yc_c01407{bottom:801.920000pt;}
.ye_c01407{bottom:803.200000pt;}
.y1a_c01407{bottom:837.120000pt;}
.y19_c01407{bottom:838.400000pt;}
.ya_c01407{bottom:840.320000pt;}
.yb_c01407{bottom:842.240000pt;}
.y18_c01407{bottom:875.520000pt;}
.y17_c01407{bottom:876.160000pt;}
.y9_c01407{bottom:878.720000pt;}
.y6_c01407{bottom:879.360000pt;}
.y7_c01407{bottom:880.000000pt;}
.y8_c01407{bottom:880.640000pt;}
.y16_c01407{bottom:914.560000pt;}
.y15_c01407{bottom:915.200000pt;}
.y4_c01407{bottom:916.480000pt;}
.y2_c01407{bottom:917.120000pt;}
.y3_c01407{bottom:917.760000pt;}
.y5_c01407{bottom:918.400000pt;}
.y1_c01407{bottom:981.120000pt;}
.hf_c01407{height:25.341250pt;}
.hc_c01407{height:27.645000pt;}
.h7_c01407{height:34.556250pt;}
.hb_c01407{height:39.163750pt;}
.h9_c01407{height:41.467500pt;}
.he_c01407{height:43.771250pt;}
.h8_c01407{height:46.075000pt;}
.h6_c01407{height:48.378750pt;}
.h4_c01407{height:50.682500pt;}
.hd_c01407{height:52.986250pt;}
.h5_c01407{height:55.290000pt;}
.h3_c01407{height:57.593750pt;}
.h2_c01407{height:59.897500pt;}
.ha_c01407{height:62.201250pt;}
.h10_c01407{height:64.505000pt;}
.h0_c01407{height:1026.560000pt;}
.h1_c01407{height:1026.666667pt;}
.w1_c01407{width:700.000000pt;}
.w0_c01407{width:700.160000pt;}
.x0_c01407{left:0.000000pt;}
.x2_c01407{left:53.120000pt;}
.x13_c01407{left:80.640000pt;}
.x9_c01407{left:81.920000pt;}
.x11_c01407{left:97.920000pt;}
.x1b_c01407{left:99.200000pt;}
.x14_c01407{left:107.520000pt;}
.x1d_c01407{left:108.800000pt;}
.x3_c01407{left:110.080000pt;}
.x12_c01407{left:146.560000pt;}
.x1c_c01407{left:147.840000pt;}
.x1e_c01407{left:176.640000pt;}
.x4_c01407{left:186.240000pt;}
.x20_c01407{left:195.200000pt;}
.xa_c01407{left:196.480000pt;}
.x8_c01407{left:197.760000pt;}
.x1f_c01407{left:224.640000pt;}
.x7_c01407{left:234.240000pt;}
.x22_c01407{left:241.920000pt;}
.x15_c01407{left:243.840000pt;}
.x5_c01407{left:245.120000pt;}
.x21_c01407{left:272.640000pt;}
.x23_c01407{left:280.960000pt;}
.x6_c01407{left:293.760000pt;}
.x24_c01407{left:319.360000pt;}
.x16_c01407{left:510.720000pt;}
.x17_c01407{left:519.679920pt;}
.x2b_c01407{left:537.600000pt;}
.x25_c01407{left:539.520000pt;}
.xe_c01407{left:541.440000pt;}
.x18_c01407{left:568.320000pt;}
.xb_c01407{left:570.240000pt;}
.x1_c01407{left:593.920000pt;}
.x19_c01407{left:596.480000pt;}
.x26_c01407{left:597.760000pt;}
.xc_c01407{left:599.680000pt;}
.x2a_c01407{left:604.800000pt;}
.x29_c01407{left:606.720000pt;}
.x1a_c01407{left:625.280000pt;}
.x28_c01407{left:634.240000pt;}
.x10_c01407{left:636.160000pt;}
.xd_c01407{left:637.440000pt;}
.x27_c01407{left:653.440000pt;}
.xf_c01407{left:655.360000pt;}
}





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

.ir_c01408:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01408{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01408;src:url('chunks/assets/font_804bd4360bfa9a3e4c77e8fb.woff2')format("woff");}.ff1_c01408{font-family:ff1_c01408;line-height:1.109863;font-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_c01408{transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);}
.m2c_c01408{transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);}
.m15_c01408{transform:matrix(0.224150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224150,0.000000,0.000000,0.250000,0,0);}
.m36_c01408{transform:matrix(0.227075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227075,0.000000,0.000000,0.250000,0,0);}
.mf_c01408{transform:matrix(0.229200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229200,0.000000,0.000000,0.250000,0,0);}
.m4b_c01408{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m43_c01408{transform:matrix(0.230475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230475,0.000000,0.000000,0.250000,0,0);}
.m1d_c01408{transform:matrix(0.230675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230675,0.000000,0.000000,0.250000,0,0);}
.m41_c01408{transform:matrix(0.231725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231725,0.000000,0.000000,0.250000,0,0);}
.m28_c01408{transform:matrix(0.232550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232550,0.000000,0.000000,0.250000,0,0);}
.ma_c01408{transform:matrix(0.235650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235650,0.000000,0.000000,0.250000,0,0);}
.m38_c01408{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m45_c01408{transform:matrix(0.243650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243650,0.000000,0.000000,0.250000,0,0);}
.m26_c01408{transform:matrix(0.243775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243775,0.000000,0.000000,0.250000,0,0);}
.m25_c01408{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m10_c01408{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m32_c01408{transform:matrix(0.245550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245550,0.000000,0.000000,0.250000,0,0);}
.m4a_c01408{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);}
.m30_c01408{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01408{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);}
.m2d_c01408{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_c01408{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m12_c01408{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m3_c01408{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m24_c01408{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);}
.m31_c01408{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mb_c01408{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m21_c01408{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01408{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m19_c01408{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m18_c01408{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m4_c01408{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);}
.m44_c01408{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mc_c01408{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m16_c01408{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m39_c01408{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m9_c01408{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01408{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m47_c01408{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m48_c01408{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m17_c01408{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01408{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m37_c01408{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01408{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01408{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01408{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m7_c01408{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m14_c01408{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01408{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);}
.m27_c01408{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);}
.m20_c01408{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m49_c01408{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);}
.m0_c01408{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01408{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.me_c01408{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);}
.m42_c01408{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m22_c01408{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);}
.m40_c01408{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_c01408{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01408{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);}
.m3d_c01408{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);}
.m3f_c01408{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);}
.m1b_c01408{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01408{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m33_c01408{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);}
.m35_c01408{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m34_c01408{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);}
.m2_c01408{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01408{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m13_c01408{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01408{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m29_c01408{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m23_c01408{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m5_c01408{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m6_c01408{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m46_c01408{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01408{transform:matrix(0.687500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01408{transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);}
.v0_c01408{vertical-align:0.000000px;}
.ls0_c01408{letter-spacing:0.000000px;}
.sc__c01408{text-shadow:none;}
.sc0_c01408{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01408{-webkit-text-stroke:0px transparent;}
.sc0_c01408{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01408{word-spacing:0.000000px;}
.ws0_c01408{word-spacing:6.288733px;}
.fc0_c01408{color:transparent;}
.fsf_c01408{font-size:17.280000px;}
.fse_c01408{font-size:25.920000px;}
.fs2_c01408{font-size:40.320000px;}
.fs10_c01408{font-size:43.200000px;}
.fs4_c01408{font-size:46.080000px;}
.fsb_c01408{font-size:48.960000px;}
.fsc_c01408{font-size:51.840000px;}
.fs3_c01408{font-size:54.720000px;}
.fs7_c01408{font-size:57.600000px;}
.fs6_c01408{font-size:60.480000px;}
.fs5_c01408{font-size:63.360000px;}
.fsa_c01408{font-size:66.240000px;}
.fs9_c01408{font-size:69.120000px;}
.fs1_c01408{font-size:72.000000px;}
.fs0_c01408{font-size:74.880000px;}
.fs8_c01408{font-size:77.760000px;}
.fsd_c01408{font-size:80.640000px;}
.y0_c01408{bottom:0.000000px;}
.y55_c01408{bottom:77.040000px;}
.y4c_c01408{bottom:78.480000px;}
.y54_c01408{bottom:79.200000px;}
.y4b_c01408{bottom:80.640000px;}
.y53_c01408{bottom:108.720000px;}
.y4a_c01408{bottom:111.600000px;}
.y52_c01408{bottom:113.040000px;}
.y51_c01408{bottom:113.760000px;}
.y56_c01408{bottom:117.360000px;}
.y49_c01408{bottom:144.000000px;}
.y50_c01408{bottom:144.720000px;}
.y48_c01408{bottom:145.440000px;}
.y4e_c01408{bottom:176.400000px;}
.y4f_c01408{bottom:177.840000px;}
.y4d_c01408{bottom:178.560000px;}
.y45_c01408{bottom:444.240000px;}
.y46_c01408{bottom:444.960000px;}
.y43_c01408{bottom:445.680000px;}
.y42_c01408{bottom:446.400000px;}
.y44_c01408{bottom:447.120000px;}
.y47_c01408{bottom:447.840000px;}
.y41_c01408{bottom:448.560000px;}
.y40_c01408{bottom:487.440000px;}
.y3e_c01408{bottom:488.880000px;}
.y3c_c01408{bottom:489.600000px;}
.y3d_c01408{bottom:490.320000px;}
.y3b_c01408{bottom:491.040000px;}
.y3f_c01408{bottom:491.760000px;}
.y30_c01408{bottom:552.960000px;}
.y2f_c01408{bottom:554.400000px;}
.y33_c01408{bottom:555.120000px;}
.y31_c01408{bottom:555.840000px;}
.y32_c01408{bottom:556.560000px;}
.y2e_c01408{bottom:595.440000px;}
.y2d_c01408{bottom:596.160000px;}
.y2a_c01408{bottom:597.600000px;}
.y2b_c01408{bottom:599.760000px;}
.y2c_c01408{bottom:604.080000px;}
.y29_c01408{bottom:638.640000px;}
.y26_c01408{bottom:639.360000px;}
.y3a_c01408{bottom:640.080000px;}
.y39_c01408{bottom:640.800000px;}
.y25_c01408{bottom:641.520000px;}
.y28_c01408{bottom:642.240000px;}
.y27_c01408{bottom:642.960000px;}
.y24_c01408{bottom:682.560000px;}
.y23_c01408{bottom:683.280000px;}
.y37_c01408{bottom:684.000000px;}
.y22_c01408{bottom:684.720000px;}
.y38_c01408{bottom:686.160000px;}
.y21_c01408{bottom:724.320000px;}
.y35_c01408{bottom:725.760000px;}
.y1e_c01408{bottom:726.480000px;}
.y20_c01408{bottom:727.200000px;}
.y36_c01408{bottom:727.920000px;}
.y1d_c01408{bottom:728.640000px;}
.y1f_c01408{bottom:730.080000px;}
.y34_c01408{bottom:768.960000px;}
.y1c_c01408{bottom:769.680000px;}
.y1b_c01408{bottom:770.400000px;}
.y1a_c01408{bottom:771.120000px;}
.y14_c01408{bottom:866.160000px;}
.y13_c01408{bottom:866.880000px;}
.y10_c01408{bottom:867.600000px;}
.y11_c01408{bottom:868.320000px;}
.y12_c01408{bottom:869.040000px;}
.y18_c01408{bottom:910.080000px;}
.yf_c01408{bottom:910.800000px;}
.y19_c01408{bottom:911.520000px;}
.ye_c01408{bottom:912.960000px;}
.y15_c01408{bottom:953.280000px;}
.yd_c01408{bottom:954.000000px;}
.y16_c01408{bottom:954.720000px;}
.yc_c01408{bottom:955.440000px;}
.y17_c01408{bottom:956.160000px;}
.ya_c01408{bottom:997.200000px;}
.y9_c01408{bottom:1000.080000px;}
.yb_c01408{bottom:1028.160000px;}
.y8_c01408{bottom:1028.880000px;}
.y7_c01408{bottom:1029.600000px;}
.y4_c01408{bottom:1030.320000px;}
.y2_c01408{bottom:1031.040000px;}
.y6_c01408{bottom:1031.760000px;}
.y3_c01408{bottom:1032.480000px;}
.y5_c01408{bottom:1033.200000px;}
.y1_c01408{bottom:1095.840000px;}
.h11_c01408{height:15.550313px;}
.h10_c01408{height:23.325469px;}
.h4_c01408{height:36.284062px;}
.h12_c01408{height:38.875781px;}
.h6_c01408{height:41.467500px;}
.hd_c01408{height:44.059219px;}
.he_c01408{height:46.650937px;}
.h5_c01408{height:49.242656px;}
.h9_c01408{height:51.834375px;}
.h8_c01408{height:54.426094px;}
.h7_c01408{height:57.017812px;}
.hc_c01408{height:59.609531px;}
.hb_c01408{height:62.201250px;}
.h3_c01408{height:64.792969px;}
.h2_c01408{height:67.384687px;}
.ha_c01408{height:69.976406px;}
.hf_c01408{height:72.568125px;}
.h0_c01408{height:1152.720000px;}
.h1_c01408{height:1152.750000px;}
.w1_c01408{width:769.500000px;}
.w0_c01408{width:769.680000px;}
.x0_c01408{left:0.000000px;}
.x22_c01408{left:58.320000px;}
.x2_c01408{left:59.760000px;}
.x39_c01408{left:79.200000px;}
.x3a_c01408{left:88.560000px;}
.x20_c01408{left:90.720000px;}
.x3_c01408{left:92.160000px;}
.x21_c01408{left:99.360000px;}
.x19_c01408{left:121.680000px;}
.x4_c01408{left:123.120000px;}
.x11_c01408{left:124.560000px;}
.x3c_c01408{left:154.080000px;}
.x2a_c01408{left:164.160000px;}
.xc_c01408{left:166.320000px;}
.x31_c01408{left:175.680000px;}
.x3b_c01408{left:187.920000px;}
.x32_c01408{left:196.560000px;}
.x5_c01408{left:209.520000px;}
.x1d_c01408{left:218.880000px;}
.x12_c01408{left:220.320000px;}
.x10_c01408{left:221.760000px;}
.x33_c01408{left:241.200000px;}
.x23_c01408{left:252.000000px;}
.x6_c01408{left:253.440000px;}
.x1e_c01408{left:263.520000px;}
.x1a_c01408{left:275.040000px;}
.x1f_c01408{left:285.840000px;}
.x38_c01408{left:304.560000px;}
.x7_c01408{left:306.720000px;}
.x1b_c01408{left:317.520000px;}
.x2b_c01408{left:326.880000px;}
.x24_c01408{left:337.680000px;}
.x37_c01408{left:339.120000px;}
.x8_c01408{left:349.920000px;}
.x13_c01408{left:360.720000px;}
.x25_c01408{left:380.160000px;}
.x3d_c01408{left:411.840000px;}
.x1c_c01408{left:414.720000px;}
.x2c_c01408{left:435.600000px;}
.x14_c01408{left:458.640000px;}
.x2d_c01408{left:467.280000px;}
.x34_c01408{left:477.360000px;}
.x3e_c01408{left:488.160000px;}
.x9_c01408{left:491.760000px;}
.x15_c01408{left:512.640000px;}
.x3f_c01408{left:519.840000px;}
.x2e_c01408{left:540.720000px;}
.x35_c01408{left:542.160000px;}
.xa_c01408{left:543.600000px;}
.x36_c01408{left:583.920000px;}
.x2f_c01408{left:585.360000px;}
.xb_c01408{left:587.520000px;}
.x17_c01408{left:608.400000px;}
.x30_c01408{left:627.120000px;}
.x28_c01408{left:638.640000px;}
.x26_c01408{left:640.800000px;}
.xd_c01408{left:642.240000px;}
.x1_c01408{left:673.200000px;}
.xe_c01408{left:675.360000px;}
.x16_c01408{left:683.280000px;}
.x27_c01408{left:705.600000px;}
.x29_c01408{left:714.960000px;}
.x18_c01408{left:716.400000px;}
.xf_c01408{left:718.560000px;}
@media print{
.v0_c01408{vertical-align:0.000000pt;}
.ls0_c01408{letter-spacing:0.000000pt;}
.ws1_c01408{word-spacing:0.000000pt;}
.ws0_c01408{word-spacing:5.589985pt;}
.fsf_c01408{font-size:15.360000pt;}
.fse_c01408{font-size:23.040000pt;}
.fs2_c01408{font-size:35.840000pt;}
.fs10_c01408{font-size:38.400000pt;}
.fs4_c01408{font-size:40.960000pt;}
.fsb_c01408{font-size:43.520000pt;}
.fsc_c01408{font-size:46.080000pt;}
.fs3_c01408{font-size:48.640000pt;}
.fs7_c01408{font-size:51.200000pt;}
.fs6_c01408{font-size:53.760000pt;}
.fs5_c01408{font-size:56.320000pt;}
.fsa_c01408{font-size:58.880000pt;}
.fs9_c01408{font-size:61.440000pt;}
.fs1_c01408{font-size:64.000000pt;}
.fs0_c01408{font-size:66.560000pt;}
.fs8_c01408{font-size:69.120000pt;}
.fsd_c01408{font-size:71.680000pt;}
.y0_c01408{bottom:0.000000pt;}
.y55_c01408{bottom:68.480000pt;}
.y4c_c01408{bottom:69.760000pt;}
.y54_c01408{bottom:70.400000pt;}
.y4b_c01408{bottom:71.680000pt;}
.y53_c01408{bottom:96.640000pt;}
.y4a_c01408{bottom:99.200000pt;}
.y52_c01408{bottom:100.480000pt;}
.y51_c01408{bottom:101.120000pt;}
.y56_c01408{bottom:104.320000pt;}
.y49_c01408{bottom:128.000000pt;}
.y50_c01408{bottom:128.640000pt;}
.y48_c01408{bottom:129.280000pt;}
.y4e_c01408{bottom:156.800000pt;}
.y4f_c01408{bottom:158.080000pt;}
.y4d_c01408{bottom:158.720000pt;}
.y45_c01408{bottom:394.880000pt;}
.y46_c01408{bottom:395.520000pt;}
.y43_c01408{bottom:396.160000pt;}
.y42_c01408{bottom:396.800000pt;}
.y44_c01408{bottom:397.440000pt;}
.y47_c01408{bottom:398.080000pt;}
.y41_c01408{bottom:398.720000pt;}
.y40_c01408{bottom:433.280000pt;}
.y3e_c01408{bottom:434.560000pt;}
.y3c_c01408{bottom:435.200000pt;}
.y3d_c01408{bottom:435.840000pt;}
.y3b_c01408{bottom:436.480000pt;}
.y3f_c01408{bottom:437.120000pt;}
.y30_c01408{bottom:491.520000pt;}
.y2f_c01408{bottom:492.800000pt;}
.y33_c01408{bottom:493.440000pt;}
.y31_c01408{bottom:494.080000pt;}
.y32_c01408{bottom:494.720000pt;}
.y2e_c01408{bottom:529.280000pt;}
.y2d_c01408{bottom:529.920000pt;}
.y2a_c01408{bottom:531.200000pt;}
.y2b_c01408{bottom:533.120000pt;}
.y2c_c01408{bottom:536.960000pt;}
.y29_c01408{bottom:567.680000pt;}
.y26_c01408{bottom:568.320000pt;}
.y3a_c01408{bottom:568.960000pt;}
.y39_c01408{bottom:569.600000pt;}
.y25_c01408{bottom:570.240000pt;}
.y28_c01408{bottom:570.880000pt;}
.y27_c01408{bottom:571.520000pt;}
.y24_c01408{bottom:606.720000pt;}
.y23_c01408{bottom:607.360000pt;}
.y37_c01408{bottom:608.000000pt;}
.y22_c01408{bottom:608.640000pt;}
.y38_c01408{bottom:609.920000pt;}
.y21_c01408{bottom:643.840000pt;}
.y35_c01408{bottom:645.120000pt;}
.y1e_c01408{bottom:645.760000pt;}
.y20_c01408{bottom:646.400000pt;}
.y36_c01408{bottom:647.040000pt;}
.y1d_c01408{bottom:647.680000pt;}
.y1f_c01408{bottom:648.960000pt;}
.y34_c01408{bottom:683.520000pt;}
.y1c_c01408{bottom:684.160000pt;}
.y1b_c01408{bottom:684.800000pt;}
.y1a_c01408{bottom:685.440000pt;}
.y14_c01408{bottom:769.920000pt;}
.y13_c01408{bottom:770.560000pt;}
.y10_c01408{bottom:771.200000pt;}
.y11_c01408{bottom:771.840000pt;}
.y12_c01408{bottom:772.480000pt;}
.y18_c01408{bottom:808.960000pt;}
.yf_c01408{bottom:809.600000pt;}
.y19_c01408{bottom:810.240000pt;}
.ye_c01408{bottom:811.520000pt;}
.y15_c01408{bottom:847.360000pt;}
.yd_c01408{bottom:848.000000pt;}
.y16_c01408{bottom:848.640000pt;}
.yc_c01408{bottom:849.280000pt;}
.y17_c01408{bottom:849.920000pt;}
.ya_c01408{bottom:886.400000pt;}
.y9_c01408{bottom:888.960000pt;}
.yb_c01408{bottom:913.920000pt;}
.y8_c01408{bottom:914.560000pt;}
.y7_c01408{bottom:915.200000pt;}
.y4_c01408{bottom:915.840000pt;}
.y2_c01408{bottom:916.480000pt;}
.y6_c01408{bottom:917.120000pt;}
.y3_c01408{bottom:917.760000pt;}
.y5_c01408{bottom:918.400000pt;}
.y1_c01408{bottom:974.080000pt;}
.h11_c01408{height:13.822500pt;}
.h10_c01408{height:20.733750pt;}
.h4_c01408{height:32.252500pt;}
.h12_c01408{height:34.556250pt;}
.h6_c01408{height:36.860000pt;}
.hd_c01408{height:39.163750pt;}
.he_c01408{height:41.467500pt;}
.h5_c01408{height:43.771250pt;}
.h9_c01408{height:46.075000pt;}
.h8_c01408{height:48.378750pt;}
.h7_c01408{height:50.682500pt;}
.hc_c01408{height:52.986250pt;}
.hb_c01408{height:55.290000pt;}
.h3_c01408{height:57.593750pt;}
.h2_c01408{height:59.897500pt;}
.ha_c01408{height:62.201250pt;}
.hf_c01408{height:64.505000pt;}
.h0_c01408{height:1024.640000pt;}
.h1_c01408{height:1024.666667pt;}
.w1_c01408{width:684.000000pt;}
.w0_c01408{width:684.160000pt;}
.x0_c01408{left:0.000000pt;}
.x22_c01408{left:51.840000pt;}
.x2_c01408{left:53.120000pt;}
.x39_c01408{left:70.400000pt;}
.x3a_c01408{left:78.720000pt;}
.x20_c01408{left:80.640000pt;}
.x3_c01408{left:81.920000pt;}
.x21_c01408{left:88.320000pt;}
.x19_c01408{left:108.160000pt;}
.x4_c01408{left:109.440000pt;}
.x11_c01408{left:110.720000pt;}
.x3c_c01408{left:136.960000pt;}
.x2a_c01408{left:145.920000pt;}
.xc_c01408{left:147.840000pt;}
.x31_c01408{left:156.160000pt;}
.x3b_c01408{left:167.040000pt;}
.x32_c01408{left:174.720000pt;}
.x5_c01408{left:186.240000pt;}
.x1d_c01408{left:194.560000pt;}
.x12_c01408{left:195.840000pt;}
.x10_c01408{left:197.120000pt;}
.x33_c01408{left:214.400000pt;}
.x23_c01408{left:224.000000pt;}
.x6_c01408{left:225.280000pt;}
.x1e_c01408{left:234.240000pt;}
.x1a_c01408{left:244.480000pt;}
.x1f_c01408{left:254.080000pt;}
.x38_c01408{left:270.720000pt;}
.x7_c01408{left:272.640000pt;}
.x1b_c01408{left:282.240000pt;}
.x2b_c01408{left:290.560000pt;}
.x24_c01408{left:300.160000pt;}
.x37_c01408{left:301.440000pt;}
.x8_c01408{left:311.040000pt;}
.x13_c01408{left:320.640000pt;}
.x25_c01408{left:337.920000pt;}
.x3d_c01408{left:366.080000pt;}
.x1c_c01408{left:368.640000pt;}
.x2c_c01408{left:387.200000pt;}
.x14_c01408{left:407.680000pt;}
.x2d_c01408{left:415.360000pt;}
.x34_c01408{left:424.320000pt;}
.x3e_c01408{left:433.920000pt;}
.x9_c01408{left:437.120000pt;}
.x15_c01408{left:455.680000pt;}
.x3f_c01408{left:462.080000pt;}
.x2e_c01408{left:480.640000pt;}
.x35_c01408{left:481.920000pt;}
.xa_c01408{left:483.200000pt;}
.x36_c01408{left:519.040000pt;}
.x2f_c01408{left:520.320000pt;}
.xb_c01408{left:522.240000pt;}
.x17_c01408{left:540.800000pt;}
.x30_c01408{left:557.440000pt;}
.x28_c01408{left:567.680000pt;}
.x26_c01408{left:569.600000pt;}
.xd_c01408{left:570.880000pt;}
.x1_c01408{left:598.400000pt;}
.xe_c01408{left:600.320000pt;}
.x16_c01408{left:607.360000pt;}
.x27_c01408{left:627.200000pt;}
.x29_c01408{left:635.520000pt;}
.x18_c01408{left:636.800000pt;}
.xf_c01408{left:638.720000pt;}
}





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

.ir_c01409:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01409{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01409;src:url('chunks/assets/font_8dda5697e3252baf323285f8.woff2')format("woff");}.ff1_c01409{font-family:ff1_c01409;line-height:1.109863;font-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_c01409{transform:matrix(0.218725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218725,0.000000,0.000000,0.250000,0,0);}
.m29_c01409{transform:matrix(0.233425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233425,0.000000,0.000000,0.250000,0,0);}
.m2b_c01409{transform:matrix(0.248675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248675,0.000000,0.000000,0.250000,0,0);}
.m14_c01409{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mc_c01409{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);}
.m48_c01409{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m9_c01409{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);}
.m51_c01409{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);}
.m55_c01409{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m4d_c01409{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mf_c01409{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01409{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m7_c01409{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.me_c01409{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m0_c01409{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01409{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01409{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m42_c01409{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.ma_c01409{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m10_c01409{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01409{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);}
.m45_c01409{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);}
.m38_c01409{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);}
.m25_c01409{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.mb_c01409{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01409{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);}
.m27_c01409{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m31_c01409{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);}
.m54_c01409{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01409{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m12_c01409{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01409{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);}
.m49_c01409{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m44_c01409{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m50_c01409{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);}
.m26_c01409{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);}
.m4c_c01409{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m4_c01409{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);}
.m6_c01409{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.md_c01409{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);}
.m40_c01409{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);}
.m36_c01409{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m3_c01409{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m8_c01409{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);}
.m52_c01409{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01409{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);}
.m16_c01409{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m1_c01409{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);}
.m3e_c01409{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_c01409{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m2_c01409{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01409{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01409{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01409{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);}
.m34_c01409{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);}
.m59_c01409{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);}
.m21_c01409{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m15_c01409{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m56_c01409{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m33_c01409{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);}
.m1c_c01409{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m4f_c01409{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01409{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);}
.m18_c01409{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m46_c01409{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m41_c01409{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m58_c01409{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m19_c01409{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m47_c01409{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);}
.m30_c01409{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01409{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m37_c01409{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);}
.m32_c01409{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01409{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m43_c01409{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m23_c01409{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_c01409{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m5_c01409{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m20_c01409{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01409{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);}
.m35_c01409{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);}
.m28_c01409{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m22_c01409{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m57_c01409{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01409{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m39_c01409{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);}
.m1a_c01409{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);}
.m53_c01409{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m13_c01409{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01409{transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);}
.v1_c01409{vertical-align:-2.880000px;}
.v0_c01409{vertical-align:0.000000px;}
.v2_c01409{vertical-align:2.880000px;}
.ls0_c01409{letter-spacing:0.000000px;}
.sc__c01409{text-shadow:none;}
.sc0_c01409{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01409{-webkit-text-stroke:0px transparent;}
.sc0_c01409{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01409{word-spacing:0.000000px;}
.ws1_c01409{word-spacing:0.103200px;}
.ws0_c01409{word-spacing:1.306800px;}
.fc0_c01409{color:transparent;}
.fsa_c01409{font-size:23.040000px;}
.fsd_c01409{font-size:34.560000px;}
.fsc_c01409{font-size:37.440000px;}
.fs3_c01409{font-size:40.320000px;}
.fs9_c01409{font-size:46.080000px;}
.fs1_c01409{font-size:48.960000px;}
.fs2_c01409{font-size:51.840000px;}
.fs7_c01409{font-size:54.720000px;}
.fs6_c01409{font-size:57.600000px;}
.fs4_c01409{font-size:60.480000px;}
.fs8_c01409{font-size:63.360000px;}
.fs5_c01409{font-size:66.240000px;}
.fsb_c01409{font-size:69.120000px;}
.fs11_c01409{font-size:72.000000px;}
.fs10_c01409{font-size:74.880000px;}
.fs0_c01409{font-size:77.760000px;}
.fsf_c01409{font-size:100.800000px;}
.fse_c01409{font-size:103.680000px;}
.y0_c01409{bottom:0.000000px;}
.y73_c01409{bottom:81.360000px;}
.y75_c01409{bottom:82.800000px;}
.y74_c01409{bottom:84.240000px;}
.y72_c01409{bottom:84.960000px;}
.y76_c01409{bottom:85.680000px;}
.y77_c01409{bottom:86.400000px;}
.y78_c01409{bottom:87.120000px;}
.y6c_c01409{bottom:123.840000px;}
.y6d_c01409{bottom:125.280000px;}
.y6f_c01409{bottom:126.000000px;}
.y71_c01409{bottom:127.440000px;}
.y6b_c01409{bottom:128.160000px;}
.y6e_c01409{bottom:128.880000px;}
.y70_c01409{bottom:129.600000px;}
.y66_c01409{bottom:167.760000px;}
.y67_c01409{bottom:168.480000px;}
.y68_c01409{bottom:169.200000px;}
.y65_c01409{bottom:170.640000px;}
.y69_c01409{bottom:172.080000px;}
.y6a_c01409{bottom:172.800000px;}
.y60_c01409{bottom:210.960000px;}
.y5e_c01409{bottom:212.400000px;}
.y61_c01409{bottom:213.120000px;}
.y5f_c01409{bottom:213.840000px;}
.y63_c01409{bottom:214.560000px;}
.y62_c01409{bottom:215.280000px;}
.y64_c01409{bottom:216.000000px;}
.y5a_c01409{bottom:253.440000px;}
.y59_c01409{bottom:254.160000px;}
.y5b_c01409{bottom:254.880000px;}
.y5d_c01409{bottom:255.600000px;}
.y58_c01409{bottom:256.320000px;}
.y57_c01409{bottom:257.040000px;}
.y5c_c01409{bottom:257.760000px;}
.y51_c01409{bottom:295.920000px;}
.y52_c01409{bottom:296.640000px;}
.y50_c01409{bottom:297.360000px;}
.y55_c01409{bottom:298.080000px;}
.y53_c01409{bottom:299.520000px;}
.y54_c01409{bottom:300.240000px;}
.y56_c01409{bottom:301.680000px;}
.y4f_c01409{bottom:302.400000px;}
.y4c_c01409{bottom:339.840000px;}
.y4e_c01409{bottom:340.560000px;}
.y4b_c01409{bottom:342.720000px;}
.y4d_c01409{bottom:343.440000px;}
.y4a_c01409{bottom:393.840000px;}
.y48_c01409{bottom:394.560000px;}
.y49_c01409{bottom:396.720000px;}
.y44_c01409{bottom:437.760000px;}
.y47_c01409{bottom:438.480000px;}
.y46_c01409{bottom:439.920000px;}
.y45_c01409{bottom:440.640000px;}
.y43_c01409{bottom:441.360000px;}
.y41_c01409{bottom:480.240000px;}
.y42_c01409{bottom:481.680000px;}
.y40_c01409{bottom:483.120000px;}
.y3f_c01409{bottom:483.840000px;}
.y3c_c01409{bottom:522.720000px;}
.y3d_c01409{bottom:523.440000px;}
.y3e_c01409{bottom:526.320000px;}
.y3b_c01409{bottom:527.040000px;}
.y3a_c01409{bottom:566.640000px;}
.y39_c01409{bottom:569.520000px;}
.y38_c01409{bottom:570.240000px;}
.y35_c01409{bottom:609.120000px;}
.y36_c01409{bottom:609.840000px;}
.y37_c01409{bottom:610.560000px;}
.y34_c01409{bottom:612.720000px;}
.y33_c01409{bottom:613.440000px;}
.y32_c01409{bottom:653.040000px;}
.y30_c01409{bottom:653.760000px;}
.y31_c01409{bottom:655.200000px;}
.y2e_c01409{bottom:655.920000px;}
.y2f_c01409{bottom:656.640000px;}
.y2a_c01409{bottom:696.240000px;}
.y2d_c01409{bottom:697.680000px;}
.y2c_c01409{bottom:698.400000px;}
.y2b_c01409{bottom:699.120000px;}
.y29_c01409{bottom:699.840000px;}
.y28_c01409{bottom:749.520000px;}
.y26_c01409{bottom:750.240000px;}
.y27_c01409{bottom:752.400000px;}
.y25_c01409{bottom:753.120000px;}
.y24_c01409{bottom:802.800000px;}
.y21_c01409{bottom:803.520000px;}
.y20_c01409{bottom:805.680000px;}
.y23_c01409{bottom:806.400000px;}
.y22_c01409{bottom:807.120000px;}
.y1e_c01409{bottom:846.000000px;}
.y1c_c01409{bottom:847.440000px;}
.y1f_c01409{bottom:848.160000px;}
.y1a_c01409{bottom:848.880000px;}
.y1b_c01409{bottom:849.600000px;}
.y1d_c01409{bottom:850.320000px;}
.y19_c01409{bottom:890.640000px;}
.y18_c01409{bottom:891.360000px;}
.y17_c01409{bottom:892.080000px;}
.y16_c01409{bottom:892.800000px;}
.y15_c01409{bottom:943.200000px;}
.yf_c01409{bottom:943.920000px;}
.ya_c01409{bottom:944.640000px;}
.ye_c01409{bottom:945.360000px;}
.y9_c01409{bottom:946.080000px;}
.y14_c01409{bottom:963.360000px;}
.y11_c01409{bottom:964.800000px;}
.yd_c01409{bottom:965.520000px;}
.y8_c01409{bottom:966.240000px;}
.yc_c01409{bottom:968.400000px;}
.y13_c01409{bottom:969.120000px;}
.y10_c01409{bottom:987.840000px;}
.y12_c01409{bottom:988.560000px;}
.yb_c01409{bottom:989.280000px;}
.y7_c01409{bottom:990.000000px;}
.y4_c01409{bottom:1028.880000px;}
.y6_c01409{bottom:1031.040000px;}
.y5_c01409{bottom:1031.760000px;}
.y3_c01409{bottom:1032.480000px;}
.y2_c01409{bottom:1033.200000px;}
.y1_c01409{bottom:1085.040000px;}
.hc_c01409{height:20.733750px;}
.hf_c01409{height:31.100625px;}
.he_c01409{height:33.692344px;}
.h5_c01409{height:36.284062px;}
.hb_c01409{height:41.467500px;}
.h3_c01409{height:44.059219px;}
.h4_c01409{height:46.650937px;}
.h9_c01409{height:49.242656px;}
.h13_c01409{height:49.530938px;}
.h8_c01409{height:51.834375px;}
.h6_c01409{height:54.426094px;}
.ha_c01409{height:57.017812px;}
.h7_c01409{height:59.609531px;}
.hd_c01409{height:62.201250px;}
.h14_c01409{height:64.792969px;}
.h12_c01409{height:67.384687px;}
.h2_c01409{height:69.976406px;}
.h11_c01409{height:90.710156px;}
.h10_c01409{height:93.301875px;}
.h0_c01409{height:1155.600000px;}
.h1_c01409{height:1155.750000px;}
.w0_c01409{width:764.640000px;}
.w1_c01409{width:765.000000px;}
.x0_c01409{left:0.000000px;}
.x9_c01409{left:43.200000px;}
.x1e_c01409{left:46.080000px;}
.x4e_c01409{left:47.520000px;}
.x59_c01409{left:66.960000px;}
.x42_c01409{left:76.320000px;}
.x4f_c01409{left:77.760000px;}
.x3b_c01409{left:85.680000px;}
.x28_c01409{left:87.840000px;}
.x4a_c01409{left:97.920000px;}
.x8_c01409{left:99.360000px;}
.x54_c01409{left:108.720000px;}
.x2e_c01409{left:110.160000px;}
.x7_c01409{left:111.600000px;}
.x64_c01409{left:118.800000px;}
.x3c_c01409{left:120.240000px;}
.x4b_c01409{left:129.600000px;}
.x5e_c01409{left:138.960000px;}
.x2f_c01409{left:141.120000px;}
.x1f_c01409{left:142.560000px;}
.x34_c01409{left:151.199550px;}
.x2_c01409{left:152.640000px;}
.x50_c01409{left:162.000000px;}
.xb_c01409{left:165.600000px;}
.x20_c01409{left:173.520000px;}
.x30_c01409{left:174.960000px;}
.x35_c01409{left:183.600000px;}
.x17_c01409{left:185.040000px;}
.xa_c01409{left:186.480000px;}
.x29_c01409{left:195.840000px;}
.x43_c01409{left:205.200000px;}
.x55_c01409{left:217.440000px;}
.x21_c01409{left:239.760000px;}
.xd_c01409{left:241.200000px;}
.x4c_c01409{left:249.840000px;}
.x22_c01409{left:259.920000px;}
.xc_c01409{left:262.080000px;}
.x2a_c01409{left:271.440000px;}
.x68_c01409{left:280.800000px;}
.x36_c01409{left:282.960000px;}
.x51_c01409{left:291.600000px;}
.x3_c01409{left:293.760000px;}
.x31_c01409{left:305.280000px;}
.x2b_c01409{left:314.640000px;}
.xf_c01409{left:316.800000px;}
.x23_c01409{left:326.160000px;}
.x18_c01409{left:336.960000px;}
.xe_c01409{left:338.400000px;}
.x62_c01409{left:345.600000px;}
.x24_c01409{left:347.760000px;}
.x5f_c01409{left:357.120000px;}
.x3d_c01409{left:358.560000px;}
.x56_c01409{left:367.920000px;}
.x19_c01409{left:370.800000px;}
.x5a_c01409{left:378.720000px;}
.x4_c01409{left:380.160000px;}
.x48_c01409{left:389.520000px;}
.x25_c01409{left:391.680000px;}
.x10_c01409{left:403.920000px;}
.x60_c01409{left:411.120000px;}
.x32_c01409{left:412.560000px;}
.x69_c01409{left:421.200000px;}
.x5b_c01409{left:422.640000px;}
.x5_c01409{left:424.080000px;}
.x46_c01409{left:432.720000px;}
.x1a_c01409{left:434.160000px;}
.x3e_c01409{left:442.800000px;}
.x33_c01409{left:444.960000px;}
.x44_c01409{left:454.320000px;}
.x37_c01409{left:465.120000px;}
.x2c_c01409{left:466.560000px;}
.x65_c01409{left:475.200000px;}
.x16_c01409{left:479.520000px;}
.x26_c01409{left:488.160000px;}
.x57_c01409{left:496.800000px;}
.x11_c01409{left:499.680000px;}
.x12_c01409{left:501.120000px;}
.x52_c01409{left:507.600000px;}
.x61_c01409{left:517.680000px;}
.x1b_c01409{left:519.840000px;}
.x3f_c01409{left:529.200000px;}
.x6_c01409{left:531.360000px;}
.x66_c01409{left:540.000000px;}
.x13_c01409{left:542.160000px;}
.x5c_c01409{left:550.080000px;}
.x38_c01409{left:562.320000px;}
.x53_c01409{left:571.680000px;}
.x27_c01409{left:573.120000px;}
.x14_c01409{left:575.280000px;}
.x47_c01409{left:583.200000px;}
.x39_c01409{left:594.000000px;}
.x2d_c01409{left:605.520000px;}
.x58_c01409{left:614.880000px;}
.x15_c01409{left:616.320000px;}
.x45_c01409{left:624.960000px;}
.x40_c01409{left:626.400000px;}
.x1c_c01409{left:627.840000px;}
.x49_c01409{left:635.760000px;}
.x3a_c01409{left:637.200000px;}
.x4d_c01409{left:647.280000px;}
.x67_c01409{left:656.640000px;}
.x41_c01409{left:658.800000px;}
.x1_c01409{left:663.120000px;}
.x5d_c01409{left:667.440000px;}
.x63_c01409{left:668.880000px;}
.x1d_c01409{left:671.040000px;}
@media print{
.v1_c01409{vertical-align:-2.560000pt;}
.v0_c01409{vertical-align:0.000000pt;}
.v2_c01409{vertical-align:2.560000pt;}
.ls0_c01409{letter-spacing:0.000000pt;}
.ws2_c01409{word-spacing:0.000000pt;}
.ws1_c01409{word-spacing:0.091733pt;}
.ws0_c01409{word-spacing:1.161600pt;}
.fsa_c01409{font-size:20.480000pt;}
.fsd_c01409{font-size:30.720000pt;}
.fsc_c01409{font-size:33.280000pt;}
.fs3_c01409{font-size:35.840000pt;}
.fs9_c01409{font-size:40.960000pt;}
.fs1_c01409{font-size:43.520000pt;}
.fs2_c01409{font-size:46.080000pt;}
.fs7_c01409{font-size:48.640000pt;}
.fs6_c01409{font-size:51.200000pt;}
.fs4_c01409{font-size:53.760000pt;}
.fs8_c01409{font-size:56.320000pt;}
.fs5_c01409{font-size:58.880000pt;}
.fsb_c01409{font-size:61.440000pt;}
.fs11_c01409{font-size:64.000000pt;}
.fs10_c01409{font-size:66.560000pt;}
.fs0_c01409{font-size:69.120000pt;}
.fsf_c01409{font-size:89.600000pt;}
.fse_c01409{font-size:92.160000pt;}
.y0_c01409{bottom:0.000000pt;}
.y73_c01409{bottom:72.320000pt;}
.y75_c01409{bottom:73.600000pt;}
.y74_c01409{bottom:74.880000pt;}
.y72_c01409{bottom:75.520000pt;}
.y76_c01409{bottom:76.160000pt;}
.y77_c01409{bottom:76.800000pt;}
.y78_c01409{bottom:77.440000pt;}
.y6c_c01409{bottom:110.080000pt;}
.y6d_c01409{bottom:111.360000pt;}
.y6f_c01409{bottom:112.000000pt;}
.y71_c01409{bottom:113.280000pt;}
.y6b_c01409{bottom:113.920000pt;}
.y6e_c01409{bottom:114.560000pt;}
.y70_c01409{bottom:115.200000pt;}
.y66_c01409{bottom:149.120000pt;}
.y67_c01409{bottom:149.760000pt;}
.y68_c01409{bottom:150.400000pt;}
.y65_c01409{bottom:151.680000pt;}
.y69_c01409{bottom:152.960000pt;}
.y6a_c01409{bottom:153.600000pt;}
.y60_c01409{bottom:187.520000pt;}
.y5e_c01409{bottom:188.800000pt;}
.y61_c01409{bottom:189.440000pt;}
.y5f_c01409{bottom:190.080000pt;}
.y63_c01409{bottom:190.720000pt;}
.y62_c01409{bottom:191.360000pt;}
.y64_c01409{bottom:192.000000pt;}
.y5a_c01409{bottom:225.280000pt;}
.y59_c01409{bottom:225.920000pt;}
.y5b_c01409{bottom:226.560000pt;}
.y5d_c01409{bottom:227.200000pt;}
.y58_c01409{bottom:227.840000pt;}
.y57_c01409{bottom:228.480000pt;}
.y5c_c01409{bottom:229.120000pt;}
.y51_c01409{bottom:263.040000pt;}
.y52_c01409{bottom:263.680000pt;}
.y50_c01409{bottom:264.320000pt;}
.y55_c01409{bottom:264.960000pt;}
.y53_c01409{bottom:266.240000pt;}
.y54_c01409{bottom:266.880000pt;}
.y56_c01409{bottom:268.160000pt;}
.y4f_c01409{bottom:268.800000pt;}
.y4c_c01409{bottom:302.080000pt;}
.y4e_c01409{bottom:302.720000pt;}
.y4b_c01409{bottom:304.640000pt;}
.y4d_c01409{bottom:305.280000pt;}
.y4a_c01409{bottom:350.080000pt;}
.y48_c01409{bottom:350.720000pt;}
.y49_c01409{bottom:352.640000pt;}
.y44_c01409{bottom:389.120000pt;}
.y47_c01409{bottom:389.760000pt;}
.y46_c01409{bottom:391.040000pt;}
.y45_c01409{bottom:391.680000pt;}
.y43_c01409{bottom:392.320000pt;}
.y41_c01409{bottom:426.880000pt;}
.y42_c01409{bottom:428.160000pt;}
.y40_c01409{bottom:429.440000pt;}
.y3f_c01409{bottom:430.080000pt;}
.y3c_c01409{bottom:464.640000pt;}
.y3d_c01409{bottom:465.280000pt;}
.y3e_c01409{bottom:467.840000pt;}
.y3b_c01409{bottom:468.480000pt;}
.y3a_c01409{bottom:503.680000pt;}
.y39_c01409{bottom:506.240000pt;}
.y38_c01409{bottom:506.880000pt;}
.y35_c01409{bottom:541.440000pt;}
.y36_c01409{bottom:542.080000pt;}
.y37_c01409{bottom:542.720000pt;}
.y34_c01409{bottom:544.640000pt;}
.y33_c01409{bottom:545.280000pt;}
.y32_c01409{bottom:580.480000pt;}
.y30_c01409{bottom:581.120000pt;}
.y31_c01409{bottom:582.400000pt;}
.y2e_c01409{bottom:583.040000pt;}
.y2f_c01409{bottom:583.680000pt;}
.y2a_c01409{bottom:618.880000pt;}
.y2d_c01409{bottom:620.160000pt;}
.y2c_c01409{bottom:620.800000pt;}
.y2b_c01409{bottom:621.440000pt;}
.y29_c01409{bottom:622.080000pt;}
.y28_c01409{bottom:666.240000pt;}
.y26_c01409{bottom:666.880000pt;}
.y27_c01409{bottom:668.800000pt;}
.y25_c01409{bottom:669.440000pt;}
.y24_c01409{bottom:713.600000pt;}
.y21_c01409{bottom:714.240000pt;}
.y20_c01409{bottom:716.160000pt;}
.y23_c01409{bottom:716.800000pt;}
.y22_c01409{bottom:717.440000pt;}
.y1e_c01409{bottom:752.000000pt;}
.y1c_c01409{bottom:753.280000pt;}
.y1f_c01409{bottom:753.920000pt;}
.y1a_c01409{bottom:754.560000pt;}
.y1b_c01409{bottom:755.200000pt;}
.y1d_c01409{bottom:755.840000pt;}
.y19_c01409{bottom:791.680000pt;}
.y18_c01409{bottom:792.320000pt;}
.y17_c01409{bottom:792.960000pt;}
.y16_c01409{bottom:793.600000pt;}
.y15_c01409{bottom:838.400000pt;}
.yf_c01409{bottom:839.040000pt;}
.ya_c01409{bottom:839.680000pt;}
.ye_c01409{bottom:840.320000pt;}
.y9_c01409{bottom:840.960000pt;}
.y14_c01409{bottom:856.320000pt;}
.y11_c01409{bottom:857.600000pt;}
.yd_c01409{bottom:858.240000pt;}
.y8_c01409{bottom:858.880000pt;}
.yc_c01409{bottom:860.800000pt;}
.y13_c01409{bottom:861.440000pt;}
.y10_c01409{bottom:878.080000pt;}
.y12_c01409{bottom:878.720000pt;}
.yb_c01409{bottom:879.360000pt;}
.y7_c01409{bottom:880.000000pt;}
.y4_c01409{bottom:914.560000pt;}
.y6_c01409{bottom:916.480000pt;}
.y5_c01409{bottom:917.120000pt;}
.y3_c01409{bottom:917.760000pt;}
.y2_c01409{bottom:918.400000pt;}
.y1_c01409{bottom:964.480000pt;}
.hc_c01409{height:18.430000pt;}
.hf_c01409{height:27.645000pt;}
.he_c01409{height:29.948750pt;}
.h5_c01409{height:32.252500pt;}
.hb_c01409{height:36.860000pt;}
.h3_c01409{height:39.163750pt;}
.h4_c01409{height:41.467500pt;}
.h9_c01409{height:43.771250pt;}
.h13_c01409{height:44.027500pt;}
.h8_c01409{height:46.075000pt;}
.h6_c01409{height:48.378750pt;}
.ha_c01409{height:50.682500pt;}
.h7_c01409{height:52.986250pt;}
.hd_c01409{height:55.290000pt;}
.h14_c01409{height:57.593750pt;}
.h12_c01409{height:59.897500pt;}
.h2_c01409{height:62.201250pt;}
.h11_c01409{height:80.631250pt;}
.h10_c01409{height:82.935000pt;}
.h0_c01409{height:1027.200000pt;}
.h1_c01409{height:1027.333333pt;}
.w0_c01409{width:679.680000pt;}
.w1_c01409{width:680.000000pt;}
.x0_c01409{left:0.000000pt;}
.x9_c01409{left:38.400000pt;}
.x1e_c01409{left:40.960000pt;}
.x4e_c01409{left:42.240000pt;}
.x59_c01409{left:59.520000pt;}
.x42_c01409{left:67.840000pt;}
.x4f_c01409{left:69.120000pt;}
.x3b_c01409{left:76.160000pt;}
.x28_c01409{left:78.080000pt;}
.x4a_c01409{left:87.040000pt;}
.x8_c01409{left:88.320000pt;}
.x54_c01409{left:96.640000pt;}
.x2e_c01409{left:97.920000pt;}
.x7_c01409{left:99.200000pt;}
.x64_c01409{left:105.600000pt;}
.x3c_c01409{left:106.880000pt;}
.x4b_c01409{left:115.200000pt;}
.x5e_c01409{left:123.520000pt;}
.x2f_c01409{left:125.440000pt;}
.x1f_c01409{left:126.720000pt;}
.x34_c01409{left:134.399600pt;}
.x2_c01409{left:135.680000pt;}
.x50_c01409{left:144.000000pt;}
.xb_c01409{left:147.200000pt;}
.x20_c01409{left:154.240000pt;}
.x30_c01409{left:155.520000pt;}
.x35_c01409{left:163.200000pt;}
.x17_c01409{left:164.480000pt;}
.xa_c01409{left:165.760000pt;}
.x29_c01409{left:174.080000pt;}
.x43_c01409{left:182.400000pt;}
.x55_c01409{left:193.280000pt;}
.x21_c01409{left:213.120000pt;}
.xd_c01409{left:214.400000pt;}
.x4c_c01409{left:222.080000pt;}
.x22_c01409{left:231.040000pt;}
.xc_c01409{left:232.960000pt;}
.x2a_c01409{left:241.280000pt;}
.x68_c01409{left:249.600000pt;}
.x36_c01409{left:251.520000pt;}
.x51_c01409{left:259.200000pt;}
.x3_c01409{left:261.120000pt;}
.x31_c01409{left:271.360000pt;}
.x2b_c01409{left:279.680000pt;}
.xf_c01409{left:281.600000pt;}
.x23_c01409{left:289.920000pt;}
.x18_c01409{left:299.520000pt;}
.xe_c01409{left:300.800000pt;}
.x62_c01409{left:307.200000pt;}
.x24_c01409{left:309.120000pt;}
.x5f_c01409{left:317.440000pt;}
.x3d_c01409{left:318.720000pt;}
.x56_c01409{left:327.040000pt;}
.x19_c01409{left:329.600000pt;}
.x5a_c01409{left:336.640000pt;}
.x4_c01409{left:337.920000pt;}
.x48_c01409{left:346.240000pt;}
.x25_c01409{left:348.160000pt;}
.x10_c01409{left:359.040000pt;}
.x60_c01409{left:365.440000pt;}
.x32_c01409{left:366.720000pt;}
.x69_c01409{left:374.400000pt;}
.x5b_c01409{left:375.680000pt;}
.x5_c01409{left:376.960000pt;}
.x46_c01409{left:384.640000pt;}
.x1a_c01409{left:385.920000pt;}
.x3e_c01409{left:393.600000pt;}
.x33_c01409{left:395.520000pt;}
.x44_c01409{left:403.840000pt;}
.x37_c01409{left:413.440000pt;}
.x2c_c01409{left:414.720000pt;}
.x65_c01409{left:422.400000pt;}
.x16_c01409{left:426.240000pt;}
.x26_c01409{left:433.920000pt;}
.x57_c01409{left:441.600000pt;}
.x11_c01409{left:444.160000pt;}
.x12_c01409{left:445.440000pt;}
.x52_c01409{left:451.200000pt;}
.x61_c01409{left:460.160000pt;}
.x1b_c01409{left:462.080000pt;}
.x3f_c01409{left:470.400000pt;}
.x6_c01409{left:472.320000pt;}
.x66_c01409{left:480.000000pt;}
.x13_c01409{left:481.920000pt;}
.x5c_c01409{left:488.960000pt;}
.x38_c01409{left:499.840000pt;}
.x53_c01409{left:508.160000pt;}
.x27_c01409{left:509.440000pt;}
.x14_c01409{left:511.360000pt;}
.x47_c01409{left:518.400000pt;}
.x39_c01409{left:528.000000pt;}
.x2d_c01409{left:538.240000pt;}
.x58_c01409{left:546.560000pt;}
.x15_c01409{left:547.840000pt;}
.x45_c01409{left:555.520000pt;}
.x40_c01409{left:556.800000pt;}
.x1c_c01409{left:558.080000pt;}
.x49_c01409{left:565.120000pt;}
.x3a_c01409{left:566.400000pt;}
.x4d_c01409{left:575.360000pt;}
.x67_c01409{left:583.680000pt;}
.x41_c01409{left:585.600000pt;}
.x1_c01409{left:589.440000pt;}
.x5d_c01409{left:593.280000pt;}
.x63_c01409{left:594.560000pt;}
.x1d_c01409{left:596.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_c01410 {
    display:none;
  }
  .loading-indicator_c01410.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01410 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01410 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01410" -> "#page-container .classname_c01410")
 */
.pf_c01410 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01410 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01410.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01410 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01410 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01410 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01410 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01410 {overflow:visible;}
  }
}
.c_c01410 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01410 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01410:after { /* webkit #35443 */
  content: '';
}
.t_c01410:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01410 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01410 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01410 { /* info for Javascript */
  display:none;
}
.l_c01410 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01410 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01410 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01410:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01410{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01410;src:url('chunks/assets/font_65fd1ccaab22702592fc04fc.woff2')format("woff");}.ff1_c01410{font-family:ff1_c01410;line-height:1.109863;font-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_c01410{transform:matrix(0.210675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210675,0.000000,0.000000,0.250000,0,0);}
.m2d_c01410{transform:matrix(0.231350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231350,0.000000,0.000000,0.250000,0,0);}
.m63_c01410{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);}
.m5a_c01410{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);}
.m5e_c01410{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);}
.m5c_c01410{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m19_c01410{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01410{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);}
.m35_c01410{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m61_c01410{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m64_c01410{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);}
.m43_c01410{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m60_c01410{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m18_c01410{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m30_c01410{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m53_c01410{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01410{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01410{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mf_c01410{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m4_c01410{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m49_c01410{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m24_c01410{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m10_c01410{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01410{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m7_c01410{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m2_c01410{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);}
.m32_c01410{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);}
.m4d_c01410{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m0_c01410{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m11_c01410{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01410{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);}
.m62_c01410{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m56_c01410{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);}
.m20_c01410{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m31_c01410{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);}
.m6_c01410{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);}
.m3b_c01410{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m22_c01410{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m37_c01410{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);}
.m25_c01410{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.mc_c01410{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);}
.m28_c01410{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);}
.m23_c01410{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m44_c01410{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);}
.m3_c01410{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_c01410{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);}
.m38_c01410{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m48_c01410{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01410{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01410{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);}
.m51_c01410{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m15_c01410{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);}
.m17_c01410{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m46_c01410{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);}
.m36_c01410{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m26_c01410{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m9_c01410{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.me_c01410{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m12_c01410{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);}
.m39_c01410{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m57_c01410{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);}
.m3a_c01410{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m21_c01410{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m34_c01410{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);}
.m4b_c01410{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m55_c01410{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m4a_c01410{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01410{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.mb_c01410{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m42_c01410{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01410{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m14_c01410{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m52_c01410{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);}
.m41_c01410{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);}
.m2a_c01410{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m16_c01410{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m33_c01410{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);}
.m1_c01410{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m58_c01410{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01410{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01410{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);}
.m1c_c01410{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m5_c01410{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.ma_c01410{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m13_c01410{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);}
.m4f_c01410{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01410{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m40_c01410{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m8_c01410{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.md_c01410{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m50_c01410{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);}
.m54_c01410{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01410{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);}
.m29_c01410{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m27_c01410{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m5b_c01410{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m5f_c01410{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.m59_c01410{transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01410{transform:matrix(0.775000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.775000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.775000,0.000000,0.000000,0.250000,0,0);}
.m47_c01410{transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);}
.m45_c01410{transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);}
.v0_c01410{vertical-align:0.000000px;}
.v1_c01410{vertical-align:2.880000px;}
.ls0_c01410{letter-spacing:0.000000px;}
.sc__c01410{text-shadow:none;}
.sc0_c01410{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01410{-webkit-text-stroke:0px transparent;}
.sc0_c01410{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01410{word-spacing:-0.108720px;}
.ws1_c01410{word-spacing:0.000000px;}
.fc0_c01410{color:transparent;}
.fse_c01410{font-size:17.280000px;}
.fsf_c01410{font-size:20.160000px;}
.fsd_c01410{font-size:34.560000px;}
.fs7_c01410{font-size:37.440000px;}
.fs5_c01410{font-size:40.320000px;}
.fs8_c01410{font-size:43.200000px;}
.fs4_c01410{font-size:48.960000px;}
.fs2_c01410{font-size:51.840000px;}
.fsa_c01410{font-size:54.720000px;}
.fsc_c01410{font-size:57.600000px;}
.fs3_c01410{font-size:60.480000px;}
.fs1_c01410{font-size:63.360000px;}
.fsb_c01410{font-size:66.240000px;}
.fs6_c01410{font-size:69.120000px;}
.fs9_c01410{font-size:72.000000px;}
.fs10_c01410{font-size:74.880000px;}
.fs0_c01410{font-size:77.760000px;}
.y0_c01410{bottom:0.000000px;}
.y74_c01410{bottom:81.360000px;}
.y72_c01410{bottom:82.080000px;}
.y75_c01410{bottom:82.800000px;}
.y76_c01410{bottom:83.520000px;}
.y73_c01410{bottom:84.240000px;}
.y71_c01410{bottom:87.120000px;}
.y79_c01410{bottom:96.480000px;}
.y77_c01410{bottom:97.920000px;}
.y78_c01410{bottom:100.800000px;}
.y70_c01410{bottom:113.760000px;}
.y6e_c01410{bottom:115.200000px;}
.y6f_c01410{bottom:115.920000px;}
.y6d_c01410{bottom:119.520000px;}
.y6c_c01410{bottom:148.320000px;}
.y6b_c01410{bottom:149.040000px;}
.y6a_c01410{bottom:149.760000px;}
.y65_c01410{bottom:190.080000px;}
.y66_c01410{bottom:190.800000px;}
.y62_c01410{bottom:191.520000px;}
.y64_c01410{bottom:192.240000px;}
.y63_c01410{bottom:192.960000px;}
.y67_c01410{bottom:194.400000px;}
.y68_c01410{bottom:195.120000px;}
.y69_c01410{bottom:195.840000px;}
.y5e_c01410{bottom:231.840000px;}
.y60_c01410{bottom:232.560000px;}
.y5c_c01410{bottom:233.280000px;}
.y5d_c01410{bottom:235.440000px;}
.y5f_c01410{bottom:236.160000px;}
.y5b_c01410{bottom:236.880000px;}
.y61_c01410{bottom:237.600000px;}
.y55_c01410{bottom:276.480000px;}
.y59_c01410{bottom:277.200000px;}
.y57_c01410{bottom:277.920000px;}
.y54_c01410{bottom:278.640000px;}
.y56_c01410{bottom:279.360000px;}
.y58_c01410{bottom:280.080000px;}
.y5a_c01410{bottom:281.520000px;}
.y51_c01410{bottom:329.760000px;}
.y52_c01410{bottom:330.480000px;}
.y50_c01410{bottom:331.200000px;}
.y53_c01410{bottom:333.360000px;}
.y4d_c01410{bottom:372.960000px;}
.y4f_c01410{bottom:373.680000px;}
.y4c_c01410{bottom:375.120000px;}
.y4b_c01410{bottom:375.840000px;}
.y4a_c01410{bottom:376.560000px;}
.y4e_c01410{bottom:377.280000px;}
.y43_c01410{bottom:415.440000px;}
.y45_c01410{bottom:416.160000px;}
.y44_c01410{bottom:416.880000px;}
.y49_c01410{bottom:417.600000px;}
.y47_c01410{bottom:418.320000px;}
.y46_c01410{bottom:419.760000px;}
.y48_c01410{bottom:420.480000px;}
.y40_c01410{bottom:459.360000px;}
.y3f_c01410{bottom:460.080000px;}
.y3e_c01410{bottom:462.240000px;}
.y41_c01410{bottom:462.960000px;}
.y42_c01410{bottom:463.680000px;}
.y3a_c01410{bottom:512.640000px;}
.y3d_c01410{bottom:513.360000px;}
.y3c_c01410{bottom:515.520000px;}
.y3b_c01410{bottom:516.240000px;}
.y37_c01410{bottom:555.120000px;}
.y38_c01410{bottom:555.840000px;}
.y35_c01410{bottom:556.560000px;}
.y39_c01410{bottom:558.720000px;}
.y36_c01410{bottom:559.440000px;}
.y30_c01410{bottom:598.320000px;}
.y31_c01410{bottom:599.040000px;}
.y33_c01410{bottom:599.760000px;}
.y32_c01410{bottom:601.920000px;}
.y34_c01410{bottom:602.640000px;}
.y2a_c01410{bottom:642.240000px;}
.y2b_c01410{bottom:642.960000px;}
.y2d_c01410{bottom:645.120000px;}
.y2c_c01410{bottom:645.840000px;}
.y2f_c01410{bottom:647.280000px;}
.y2e_c01410{bottom:648.000000px;}
.y29_c01410{bottom:687.600000px;}
.y27_c01410{bottom:688.320000px;}
.y28_c01410{bottom:689.040000px;}
.y23_c01410{bottom:727.920000px;}
.y26_c01410{bottom:728.640000px;}
.y24_c01410{bottom:731.520000px;}
.y25_c01410{bottom:732.240000px;}
.y21_c01410{bottom:771.840000px;}
.y20_c01410{bottom:774.720000px;}
.y22_c01410{bottom:775.440000px;}
.y1f_c01410{bottom:814.320000px;}
.y1a_c01410{bottom:815.040000px;}
.y1c_c01410{bottom:815.760000px;}
.y1d_c01410{bottom:817.200000px;}
.y1e_c01410{bottom:817.920000px;}
.y1b_c01410{bottom:818.640000px;}
.y16_c01410{bottom:857.520000px;}
.y18_c01410{bottom:858.240000px;}
.y19_c01410{bottom:858.960000px;}
.y17_c01410{bottom:861.120000px;}
.y14_c01410{bottom:900.720000px;}
.y13_c01410{bottom:902.160000px;}
.y15_c01410{bottom:902.880000px;}
.y11_c01410{bottom:903.600000px;}
.y12_c01410{bottom:904.320000px;}
.ye_c01410{bottom:943.920000px;}
.yd_c01410{bottom:944.640000px;}
.y10_c01410{bottom:945.360000px;}
.yf_c01410{bottom:946.800000px;}
.yc_c01410{bottom:984.960000px;}
.y9_c01410{bottom:986.400000px;}
.yb_c01410{bottom:988.560000px;}
.y7_c01410{bottom:989.280000px;}
.ya_c01410{bottom:990.000000px;}
.y8_c01410{bottom:990.720000px;}
.y2_c01410{bottom:1029.600000px;}
.y4_c01410{bottom:1030.320000px;}
.y6_c01410{bottom:1031.760000px;}
.y5_c01410{bottom:1032.480000px;}
.y3_c01410{bottom:1033.200000px;}
.y1_c01410{bottom:1086.480000px;}
.h11_c01410{height:15.550313px;}
.h12_c01410{height:18.142031px;}
.h10_c01410{height:31.100625px;}
.h9_c01410{height:33.692344px;}
.h7_c01410{height:36.284062px;}
.ha_c01410{height:38.875781px;}
.h6_c01410{height:44.059219px;}
.h4_c01410{height:46.650937px;}
.hc_c01410{height:49.242656px;}
.hd_c01410{height:49.530938px;}
.hf_c01410{height:51.834375px;}
.h5_c01410{height:54.426094px;}
.h3_c01410{height:57.017812px;}
.he_c01410{height:59.609531px;}
.h8_c01410{height:62.201250px;}
.hb_c01410{height:64.792969px;}
.h13_c01410{height:67.384687px;}
.h2_c01410{height:69.976406px;}
.h0_c01410{height:1154.880000px;}
.h1_c01410{height:1155.000000px;}
.w1_c01410{width:773.250000px;}
.w0_c01410{width:773.280000px;}
.x0_c01410{left:0.000000px;}
.x20_c01410{left:38.160000px;}
.x2_c01410{left:47.519010px;}
.x39_c01410{left:48.960000px;}
.x55_c01410{left:50.400000px;}
.x17_c01410{left:78.480000px;}
.x56_c01410{left:79.920000px;}
.x23_c01410{left:89.280000px;}
.x2b_c01410{left:90.720000px;}
.xc_c01410{left:100.080000px;}
.x18_c01410{left:110.880000px;}
.x4f_c01410{left:121.680000px;}
.x54_c01410{left:123.120000px;}
.x33_c01410{left:133.200000px;}
.x24_c01410{left:144.720000px;}
.x44_c01410{left:154.080000px;}
.x50_c01410{left:155.520000px;}
.x19_c01410{left:166.320000px;}
.x3_c01410{left:176.400000px;}
.x46_c01410{left:185.760000px;}
.x40_c01410{left:187.920000px;}
.xd_c01410{left:198.720000px;}
.x21_c01410{left:208.800000px;}
.x41_c01410{left:210.240000px;}
.x4_c01410{left:218.880000px;}
.xe_c01410{left:230.400000px;}
.x47_c01410{left:231.840000px;}
.x42_c01410{left:239.760000px;}
.x34_c01410{left:241.200000px;}
.x57_c01410{left:242.640000px;}
.x4b_c01410{left:251.280000px;}
.x1a_c01410{left:263.520000px;}
.x51_c01410{left:264.960000px;}
.xf_c01410{left:273.600000px;}
.x4d_c01410{left:275.040000px;}
.x3c_c01410{left:284.400000px;}
.x58_c01410{left:285.840000px;}
.x5_c01410{left:295.920000px;}
.x2c_c01410{left:306.720000px;}
.x10_c01410{left:316.080000px;}
.x35_c01410{left:317.520000px;}
.x25_c01410{left:326.160000px;}
.x29_c01410{left:328.320000px;}
.x6_c01410{left:339.120000px;}
.x2d_c01410{left:349.200000px;}
.x3d_c01410{left:359.280000px;}
.x48_c01410{left:360.720000px;}
.x43_c01410{left:371.520000px;}
.x13_c01410{left:382.320000px;}
.x36_c01410{left:383.760000px;}
.x1b_c01410{left:393.840000px;}
.x2e_c01410{left:403.920000px;}
.x7_c01410{left:414.000000px;}
.x49_c01410{left:424.800000px;}
.x1c_c01410{left:436.320000px;}
.x3a_c01410{left:447.120000px;}
.x45_c01410{left:455.760000px;}
.x11_c01410{left:457.920000px;}
.x1d_c01410{left:468.720000px;}
.x14_c01410{left:479.520000px;}
.x4e_c01410{left:488.880000px;}
.x30_c01410{left:490.320000px;}
.x3e_c01410{left:499.680000px;}
.x2a_c01410{left:501.120000px;}
.x15_c01410{left:511.920000px;}
.x26_c01410{left:521.280000px;}
.x8_c01410{left:522.720000px;}
.x3b_c01410{left:532.800000px;}
.x4a_c01410{left:542.160000px;}
.x16_c01410{left:544.320000px;}
.x52_c01410{left:552.960000px;}
.x9_c01410{left:555.120000px;}
.x31_c01410{left:564.480000px;}
.x22_c01410{left:565.920000px;}
.x27_c01410{left:576.720000px;}
.x2f_c01410{left:586.080000px;}
.x37_c01410{left:596.160000px;}
.x12_c01410{left:598.320000px;}
.x53_c01410{left:606.960000px;}
.x1e_c01410{left:608.400000px;}
.xa_c01410{left:617.760000px;}
.x28_c01410{left:629.280000px;}
.x1f_c01410{left:640.080000px;}
.x32_c01410{left:650.880000px;}
.x1_c01410{left:658.080000px;}
.x4c_c01410{left:660.240000px;}
.xb_c01410{left:673.200000px;}
.x3f_c01410{left:682.560000px;}
.x38_c01410{left:714.960000px;}
@media print{
.v0_c01410{vertical-align:0.000000pt;}
.v1_c01410{vertical-align:2.560000pt;}
.ls0_c01410{letter-spacing:0.000000pt;}
.ws0_c01410{word-spacing:-0.096640pt;}
.ws1_c01410{word-spacing:0.000000pt;}
.fse_c01410{font-size:15.360000pt;}
.fsf_c01410{font-size:17.920000pt;}
.fsd_c01410{font-size:30.720000pt;}
.fs7_c01410{font-size:33.280000pt;}
.fs5_c01410{font-size:35.840000pt;}
.fs8_c01410{font-size:38.400000pt;}
.fs4_c01410{font-size:43.520000pt;}
.fs2_c01410{font-size:46.080000pt;}
.fsa_c01410{font-size:48.640000pt;}
.fsc_c01410{font-size:51.200000pt;}
.fs3_c01410{font-size:53.760000pt;}
.fs1_c01410{font-size:56.320000pt;}
.fsb_c01410{font-size:58.880000pt;}
.fs6_c01410{font-size:61.440000pt;}
.fs9_c01410{font-size:64.000000pt;}
.fs10_c01410{font-size:66.560000pt;}
.fs0_c01410{font-size:69.120000pt;}
.y0_c01410{bottom:0.000000pt;}
.y74_c01410{bottom:72.320000pt;}
.y72_c01410{bottom:72.960000pt;}
.y75_c01410{bottom:73.600000pt;}
.y76_c01410{bottom:74.240000pt;}
.y73_c01410{bottom:74.880000pt;}
.y71_c01410{bottom:77.440000pt;}
.y79_c01410{bottom:85.760000pt;}
.y77_c01410{bottom:87.040000pt;}
.y78_c01410{bottom:89.600000pt;}
.y70_c01410{bottom:101.120000pt;}
.y6e_c01410{bottom:102.400000pt;}
.y6f_c01410{bottom:103.040000pt;}
.y6d_c01410{bottom:106.240000pt;}
.y6c_c01410{bottom:131.840000pt;}
.y6b_c01410{bottom:132.480000pt;}
.y6a_c01410{bottom:133.120000pt;}
.y65_c01410{bottom:168.960000pt;}
.y66_c01410{bottom:169.600000pt;}
.y62_c01410{bottom:170.240000pt;}
.y64_c01410{bottom:170.880000pt;}
.y63_c01410{bottom:171.520000pt;}
.y67_c01410{bottom:172.800000pt;}
.y68_c01410{bottom:173.440000pt;}
.y69_c01410{bottom:174.080000pt;}
.y5e_c01410{bottom:206.080000pt;}
.y60_c01410{bottom:206.720000pt;}
.y5c_c01410{bottom:207.360000pt;}
.y5d_c01410{bottom:209.280000pt;}
.y5f_c01410{bottom:209.920000pt;}
.y5b_c01410{bottom:210.560000pt;}
.y61_c01410{bottom:211.200000pt;}
.y55_c01410{bottom:245.760000pt;}
.y59_c01410{bottom:246.400000pt;}
.y57_c01410{bottom:247.040000pt;}
.y54_c01410{bottom:247.680000pt;}
.y56_c01410{bottom:248.320000pt;}
.y58_c01410{bottom:248.960000pt;}
.y5a_c01410{bottom:250.240000pt;}
.y51_c01410{bottom:293.120000pt;}
.y52_c01410{bottom:293.760000pt;}
.y50_c01410{bottom:294.400000pt;}
.y53_c01410{bottom:296.320000pt;}
.y4d_c01410{bottom:331.520000pt;}
.y4f_c01410{bottom:332.160000pt;}
.y4c_c01410{bottom:333.440000pt;}
.y4b_c01410{bottom:334.080000pt;}
.y4a_c01410{bottom:334.720000pt;}
.y4e_c01410{bottom:335.360000pt;}
.y43_c01410{bottom:369.280000pt;}
.y45_c01410{bottom:369.920000pt;}
.y44_c01410{bottom:370.560000pt;}
.y49_c01410{bottom:371.200000pt;}
.y47_c01410{bottom:371.840000pt;}
.y46_c01410{bottom:373.120000pt;}
.y48_c01410{bottom:373.760000pt;}
.y40_c01410{bottom:408.320000pt;}
.y3f_c01410{bottom:408.960000pt;}
.y3e_c01410{bottom:410.880000pt;}
.y41_c01410{bottom:411.520000pt;}
.y42_c01410{bottom:412.160000pt;}
.y3a_c01410{bottom:455.680000pt;}
.y3d_c01410{bottom:456.320000pt;}
.y3c_c01410{bottom:458.240000pt;}
.y3b_c01410{bottom:458.880000pt;}
.y37_c01410{bottom:493.440000pt;}
.y38_c01410{bottom:494.080000pt;}
.y35_c01410{bottom:494.720000pt;}
.y39_c01410{bottom:496.640000pt;}
.y36_c01410{bottom:497.280000pt;}
.y30_c01410{bottom:531.840000pt;}
.y31_c01410{bottom:532.480000pt;}
.y33_c01410{bottom:533.120000pt;}
.y32_c01410{bottom:535.040000pt;}
.y34_c01410{bottom:535.680000pt;}
.y2a_c01410{bottom:570.880000pt;}
.y2b_c01410{bottom:571.520000pt;}
.y2d_c01410{bottom:573.440000pt;}
.y2c_c01410{bottom:574.080000pt;}
.y2f_c01410{bottom:575.360000pt;}
.y2e_c01410{bottom:576.000000pt;}
.y29_c01410{bottom:611.200000pt;}
.y27_c01410{bottom:611.840000pt;}
.y28_c01410{bottom:612.480000pt;}
.y23_c01410{bottom:647.040000pt;}
.y26_c01410{bottom:647.680000pt;}
.y24_c01410{bottom:650.240000pt;}
.y25_c01410{bottom:650.880000pt;}
.y21_c01410{bottom:686.080000pt;}
.y20_c01410{bottom:688.640000pt;}
.y22_c01410{bottom:689.280000pt;}
.y1f_c01410{bottom:723.840000pt;}
.y1a_c01410{bottom:724.480000pt;}
.y1c_c01410{bottom:725.120000pt;}
.y1d_c01410{bottom:726.400000pt;}
.y1e_c01410{bottom:727.040000pt;}
.y1b_c01410{bottom:727.680000pt;}
.y16_c01410{bottom:762.240000pt;}
.y18_c01410{bottom:762.880000pt;}
.y19_c01410{bottom:763.520000pt;}
.y17_c01410{bottom:765.440000pt;}
.y14_c01410{bottom:800.640000pt;}
.y13_c01410{bottom:801.920000pt;}
.y15_c01410{bottom:802.560000pt;}
.y11_c01410{bottom:803.200000pt;}
.y12_c01410{bottom:803.840000pt;}
.ye_c01410{bottom:839.040000pt;}
.yd_c01410{bottom:839.680000pt;}
.y10_c01410{bottom:840.320000pt;}
.yf_c01410{bottom:841.600000pt;}
.yc_c01410{bottom:875.520000pt;}
.y9_c01410{bottom:876.800000pt;}
.yb_c01410{bottom:878.720000pt;}
.y7_c01410{bottom:879.360000pt;}
.ya_c01410{bottom:880.000000pt;}
.y8_c01410{bottom:880.640000pt;}
.y2_c01410{bottom:915.200000pt;}
.y4_c01410{bottom:915.840000pt;}
.y6_c01410{bottom:917.120000pt;}
.y5_c01410{bottom:917.760000pt;}
.y3_c01410{bottom:918.400000pt;}
.y1_c01410{bottom:965.760000pt;}
.h11_c01410{height:13.822500pt;}
.h12_c01410{height:16.126250pt;}
.h10_c01410{height:27.645000pt;}
.h9_c01410{height:29.948750pt;}
.h7_c01410{height:32.252500pt;}
.ha_c01410{height:34.556250pt;}
.h6_c01410{height:39.163750pt;}
.h4_c01410{height:41.467500pt;}
.hc_c01410{height:43.771250pt;}
.hd_c01410{height:44.027500pt;}
.hf_c01410{height:46.075000pt;}
.h5_c01410{height:48.378750pt;}
.h3_c01410{height:50.682500pt;}
.he_c01410{height:52.986250pt;}
.h8_c01410{height:55.290000pt;}
.hb_c01410{height:57.593750pt;}
.h13_c01410{height:59.897500pt;}
.h2_c01410{height:62.201250pt;}
.h0_c01410{height:1026.560000pt;}
.h1_c01410{height:1026.666667pt;}
.w1_c01410{width:687.333333pt;}
.w0_c01410{width:687.360000pt;}
.x0_c01410{left:0.000000pt;}
.x20_c01410{left:33.920000pt;}
.x2_c01410{left:42.239120pt;}
.x39_c01410{left:43.520000pt;}
.x55_c01410{left:44.800000pt;}
.x17_c01410{left:69.760000pt;}
.x56_c01410{left:71.040000pt;}
.x23_c01410{left:79.360000pt;}
.x2b_c01410{left:80.640000pt;}
.xc_c01410{left:88.960000pt;}
.x18_c01410{left:98.560000pt;}
.x4f_c01410{left:108.160000pt;}
.x54_c01410{left:109.440000pt;}
.x33_c01410{left:118.400000pt;}
.x24_c01410{left:128.640000pt;}
.x44_c01410{left:136.960000pt;}
.x50_c01410{left:138.240000pt;}
.x19_c01410{left:147.840000pt;}
.x3_c01410{left:156.800000pt;}
.x46_c01410{left:165.120000pt;}
.x40_c01410{left:167.040000pt;}
.xd_c01410{left:176.640000pt;}
.x21_c01410{left:185.600000pt;}
.x41_c01410{left:186.880000pt;}
.x4_c01410{left:194.560000pt;}
.xe_c01410{left:204.800000pt;}
.x47_c01410{left:206.080000pt;}
.x42_c01410{left:213.120000pt;}
.x34_c01410{left:214.400000pt;}
.x57_c01410{left:215.680000pt;}
.x4b_c01410{left:223.360000pt;}
.x1a_c01410{left:234.240000pt;}
.x51_c01410{left:235.520000pt;}
.xf_c01410{left:243.200000pt;}
.x4d_c01410{left:244.480000pt;}
.x3c_c01410{left:252.800000pt;}
.x58_c01410{left:254.080000pt;}
.x5_c01410{left:263.040000pt;}
.x2c_c01410{left:272.640000pt;}
.x10_c01410{left:280.960000pt;}
.x35_c01410{left:282.240000pt;}
.x25_c01410{left:289.920000pt;}
.x29_c01410{left:291.840000pt;}
.x6_c01410{left:301.440000pt;}
.x2d_c01410{left:310.400000pt;}
.x3d_c01410{left:319.360000pt;}
.x48_c01410{left:320.640000pt;}
.x43_c01410{left:330.240000pt;}
.x13_c01410{left:339.840000pt;}
.x36_c01410{left:341.120000pt;}
.x1b_c01410{left:350.080000pt;}
.x2e_c01410{left:359.040000pt;}
.x7_c01410{left:368.000000pt;}
.x49_c01410{left:377.600000pt;}
.x1c_c01410{left:387.840000pt;}
.x3a_c01410{left:397.440000pt;}
.x45_c01410{left:405.120000pt;}
.x11_c01410{left:407.040000pt;}
.x1d_c01410{left:416.640000pt;}
.x14_c01410{left:426.240000pt;}
.x4e_c01410{left:434.560000pt;}
.x30_c01410{left:435.840000pt;}
.x3e_c01410{left:444.160000pt;}
.x2a_c01410{left:445.440000pt;}
.x15_c01410{left:455.040000pt;}
.x26_c01410{left:463.360000pt;}
.x8_c01410{left:464.640000pt;}
.x3b_c01410{left:473.600000pt;}
.x4a_c01410{left:481.920000pt;}
.x16_c01410{left:483.840000pt;}
.x52_c01410{left:491.520000pt;}
.x9_c01410{left:493.440000pt;}
.x31_c01410{left:501.760000pt;}
.x22_c01410{left:503.040000pt;}
.x27_c01410{left:512.640000pt;}
.x2f_c01410{left:520.960000pt;}
.x37_c01410{left:529.920000pt;}
.x12_c01410{left:531.840000pt;}
.x53_c01410{left:539.520000pt;}
.x1e_c01410{left:540.800000pt;}
.xa_c01410{left:549.120000pt;}
.x28_c01410{left:559.360000pt;}
.x1f_c01410{left:568.960000pt;}
.x32_c01410{left:578.560000pt;}
.x1_c01410{left:584.960000pt;}
.x4c_c01410{left:586.880000pt;}
.xb_c01410{left:598.400000pt;}
.x3f_c01410{left:606.720000pt;}
.x38_c01410{left:635.520000pt;}
}





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

.ir_c01411:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01411{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01411;src:url('chunks/assets/font_8b016ac4674c7b469af58dfa.woff2')format("woff");}.ff1_c01411{font-family:ff1_c01411;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m47_c01411{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m11_c01411{transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);}
.m33_c01411{transform:matrix(0.241125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241125,0.000000,0.000000,0.250000,0,0);}
.m42_c01411{transform:matrix(0.246900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246900,0.000000,0.000000,0.250000,0,0);}
.m19_c01411{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m2c_c01411{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.me_c01411{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m44_c01411{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);}
.m35_c01411{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m16_c01411{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mf_c01411{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);}
.m32_c01411{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m25_c01411{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01411{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);}
.m37_c01411{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01411{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m23_c01411{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mb_c01411{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m18_c01411{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m21_c01411{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.md_c01411{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m2_c01411{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m41_c01411{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01411{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m48_c01411{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m13_c01411{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m22_c01411{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01411{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.ma_c01411{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m24_c01411{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m6_c01411{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m14_c01411{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);}
.m40_c01411{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01411{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.mc_c01411{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);}
.m3f_c01411{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m5_c01411{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_c01411{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m0_c01411{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m9_c01411{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);}
.m1c_c01411{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m10_c01411{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);}
.m27_c01411{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m1_c01411{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);}
.m26_c01411{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);}
.m38_c01411{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);}
.m29_c01411{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01411{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m43_c01411{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);}
.m30_c01411{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);}
.m46_c01411{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);}
.m1e_c01411{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m3_c01411{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m31_c01411{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01411{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m28_c01411{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);}
.m2a_c01411{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);}
.m34_c01411{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m36_c01411{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);}
.m3c_c01411{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01411{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01411{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01411{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);}
.m15_c01411{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01411{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01411{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);}
.m45_c01411{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);}
.m7_c01411{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m39_c01411{transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);}
.m4_c01411{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m20_c01411{transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);}
.m8_c01411{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01411{transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);}
.v0_c01411{vertical-align:0.000000px;}
.ls0_c01411{letter-spacing:0.000000px;}
.sc__c01411{text-shadow:none;}
.sc0_c01411{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01411{-webkit-text-stroke:0px transparent;}
.sc0_c01411{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01411{word-spacing:0.000000px;}
.fc0_c01411{color:transparent;}
.fsc_c01411{font-size:31.680000px;}
.fs4_c01411{font-size:37.440000px;}
.fs1_c01411{font-size:48.960000px;}
.fs3_c01411{font-size:51.840000px;}
.fs2_c01411{font-size:54.720000px;}
.fs8_c01411{font-size:57.600000px;}
.fs7_c01411{font-size:60.480000px;}
.fsa_c01411{font-size:63.360000px;}
.fs5_c01411{font-size:66.240000px;}
.fs6_c01411{font-size:69.120000px;}
.fs9_c01411{font-size:72.000000px;}
.fs0_c01411{font-size:74.880000px;}
.fsb_c01411{font-size:77.760000px;}
.fsd_c01411{font-size:80.640000px;}
.y0_c01411{bottom:0.000000px;}
.y6c_c01411{bottom:64.800000px;}
.y6b_c01411{bottom:69.120000px;}
.y33_c01411{bottom:71.280000px;}
.y35_c01411{bottom:72.000000px;}
.y34_c01411{bottom:72.720000px;}
.y6a_c01411{bottom:108.000000px;}
.y69_c01411{bottom:111.600000px;}
.y31_c01411{bottom:113.760000px;}
.y32_c01411{bottom:117.360000px;}
.y68_c01411{bottom:151.920000px;}
.y2f_c01411{bottom:156.240000px;}
.y30_c01411{bottom:159.840000px;}
.y66_c01411{bottom:195.120000px;}
.y67_c01411{bottom:196.560000px;}
.y65_c01411{bottom:198.720000px;}
.y2d_c01411{bottom:200.160000px;}
.y2e_c01411{bottom:200.880000px;}
.y2c_c01411{bottom:201.600000px;}
.y64_c01411{bottom:238.320000px;}
.y63_c01411{bottom:241.920000px;}
.y2a_c01411{bottom:243.360000px;}
.y29_c01411{bottom:244.080000px;}
.y2b_c01411{bottom:245.520000px;}
.y62_c01411{bottom:281.520000px;}
.y61_c01411{bottom:285.120000px;}
.y60_c01411{bottom:285.840000px;}
.y27_c01411{bottom:286.560000px;}
.y28_c01411{bottom:289.440000px;}
.y5c_c01411{bottom:325.440000px;}
.y5f_c01411{bottom:326.880000px;}
.y5b_c01411{bottom:327.600000px;}
.y5d_c01411{bottom:328.320000px;}
.y26_c01411{bottom:329.760000px;}
.y5e_c01411{bottom:330.480000px;}
.y5a_c01411{bottom:368.640000px;}
.y59_c01411{bottom:370.800000px;}
.y25_c01411{bottom:372.240000px;}
.y24_c01411{bottom:372.960000px;}
.y58_c01411{bottom:411.840000px;}
.y57_c01411{bottom:414.000000px;}
.y22_c01411{bottom:415.440000px;}
.y21_c01411{bottom:416.160000px;}
.y23_c01411{bottom:417.600000px;}
.y56_c01411{bottom:455.760000px;}
.y54_c01411{bottom:457.200000px;}
.y55_c01411{bottom:457.920000px;}
.y1f_c01411{bottom:459.360000px;}
.y53_c01411{bottom:460.080000px;}
.y20_c01411{bottom:461.520000px;}
.y52_c01411{bottom:498.960000px;}
.y51_c01411{bottom:502.560000px;}
.y1e_c01411{bottom:504.000000px;}
.y1d_c01411{bottom:504.720000px;}
.y4f_c01411{bottom:542.880000px;}
.y50_c01411{bottom:543.600000px;}
.y1c_c01411{bottom:545.040000px;}
.y1a_c01411{bottom:547.200000px;}
.y1b_c01411{bottom:547.920000px;}
.y4e_c01411{bottom:586.080000px;}
.y17_c01411{bottom:588.240000px;}
.y19_c01411{bottom:588.960000px;}
.y18_c01411{bottom:591.120000px;}
.y4b_c01411{bottom:629.280000px;}
.y4d_c01411{bottom:630.000000px;}
.y16_c01411{bottom:630.720000px;}
.y15_c01411{bottom:631.440000px;}
.y4c_c01411{bottom:632.160000px;}
.y4a_c01411{bottom:632.880000px;}
.y49_c01411{bottom:672.480000px;}
.y12_c01411{bottom:673.920000px;}
.y14_c01411{bottom:674.640000px;}
.y13_c01411{bottom:676.800000px;}
.y46_c01411{bottom:714.960000px;}
.y48_c01411{bottom:715.680000px;}
.y10_c01411{bottom:716.400000px;}
.y47_c01411{bottom:717.840000px;}
.y45_c01411{bottom:718.560000px;}
.y11_c01411{bottom:719.280000px;}
.y44_c01411{bottom:758.160000px;}
.ye_c01411{bottom:759.600000px;}
.y42_c01411{bottom:760.320000px;}
.yf_c01411{bottom:761.040000px;}
.y43_c01411{bottom:762.480000px;}
.yd_c01411{bottom:801.360000px;}
.y41_c01411{bottom:802.080000px;}
.yc_c01411{bottom:802.800000px;}
.yb_c01411{bottom:803.520000px;}
.y40_c01411{bottom:804.240000px;}
.y3f_c01411{bottom:845.280000px;}
.ya_c01411{bottom:846.000000px;}
.y3e_c01411{bottom:888.480000px;}
.y8_c01411{bottom:889.200000px;}
.y9_c01411{bottom:890.640000px;}
.y3d_c01411{bottom:892.080000px;}
.y3c_c01411{bottom:931.680000px;}
.y6_c01411{bottom:932.400000px;}
.y7_c01411{bottom:933.840000px;}
.y3b_c01411{bottom:935.280000px;}
.y5_c01411{bottom:977.040000px;}
.y4_c01411{bottom:977.760000px;}
.y3_c01411{bottom:979.200000px;}
.y2_c01411{bottom:979.920000px;}
.y39_c01411{bottom:1030.320000px;}
.y3a_c01411{bottom:1031.040000px;}
.y38_c01411{bottom:1032.480000px;}
.y37_c01411{bottom:1033.200000px;}
.y36_c01411{bottom:1033.920000px;}
.y1_c01411{bottom:1093.680000px;}
.he_c01411{height:28.508906px;}
.h6_c01411{height:33.692344px;}
.h3_c01411{height:44.059219px;}
.h5_c01411{height:46.650937px;}
.h4_c01411{height:49.242656px;}
.ha_c01411{height:51.834375px;}
.h9_c01411{height:54.426094px;}
.hc_c01411{height:57.017812px;}
.h7_c01411{height:59.609531px;}
.h8_c01411{height:62.201250px;}
.hb_c01411{height:64.792969px;}
.h2_c01411{height:67.384687px;}
.hd_c01411{height:69.976406px;}
.hf_c01411{height:72.568125px;}
.h0_c01411{height:1154.880000px;}
.h1_c01411{height:1155.000000px;}
.w0_c01411{width:776.160000px;}
.w1_c01411{width:776.250000px;}
.x0_c01411{left:0.000000px;}
.x1d_c01411{left:52.560000px;}
.x1b_c01411{left:54.000000px;}
.x2f_c01411{left:55.440000px;}
.x27_c01411{left:75.600000px;}
.x1e_c01411{left:95.040000px;}
.x1c_c01411{left:96.480000px;}
.x24_c01411{left:105.840000px;}
.x2_c01411{left:107.280000px;}
.x14_c01411{left:159.840000px;}
.x3_c01411{left:162.000000px;}
.x1f_c01411{left:171.360000px;}
.x2a_c01411{left:182.880000px;}
.x28_c01411{left:193.680000px;}
.x15_c01411{left:203.040000px;}
.x20_c01411{left:226.080000px;}
.x21_c01411{left:237.600000px;}
.x29_c01411{left:247.680000px;}
.x2b_c01411{left:257.760000px;}
.x16_c01411{left:280.800000px;}
.x2c_c01411{left:302.400000px;}
.x25_c01411{left:321.840000px;}
.x23_c01411{left:324.000000px;}
.x22_c01411{left:334.800000px;}
.x17_c01411{left:356.400000px;}
.x26_c01411{left:366.480000px;}
.x2d_c01411{left:440.640000px;}
.x18_c01411{left:475.200000px;}
.x2e_c01411{left:484.560000px;}
.x19_c01411{left:517.680000px;}
.x4_c01411{left:570.240000px;}
.xe_c01411{left:602.640000px;}
.xd_c01411{left:613.440000px;}
.x5_c01411{left:614.880000px;}
.x1a_c01411{left:623.520000px;}
.x13_c01411{left:634.320000px;}
.x10_c01411{left:635.760000px;}
.x6_c01411{left:645.840000px;}
.x1_c01411{left:667.440000px;}
.xa_c01411{left:668.880000px;}
.x7_c01411{left:678.240000px;}
.x12_c01411{left:699.840000px;}
.xb_c01411{left:702.000000px;}
.x8_c01411{left:704.160000px;}
.xc_c01411{left:711.360000px;}
.x11_c01411{left:730.080000px;}
.xf_c01411{left:731.520000px;}
.x9_c01411{left:743.040000px;}
@media print{
.v0_c01411{vertical-align:0.000000pt;}
.ls0_c01411{letter-spacing:0.000000pt;}
.ws0_c01411{word-spacing:0.000000pt;}
.fsc_c01411{font-size:28.160000pt;}
.fs4_c01411{font-size:33.280000pt;}
.fs1_c01411{font-size:43.520000pt;}
.fs3_c01411{font-size:46.080000pt;}
.fs2_c01411{font-size:48.640000pt;}
.fs8_c01411{font-size:51.200000pt;}
.fs7_c01411{font-size:53.760000pt;}
.fsa_c01411{font-size:56.320000pt;}
.fs5_c01411{font-size:58.880000pt;}
.fs6_c01411{font-size:61.440000pt;}
.fs9_c01411{font-size:64.000000pt;}
.fs0_c01411{font-size:66.560000pt;}
.fsb_c01411{font-size:69.120000pt;}
.fsd_c01411{font-size:71.680000pt;}
.y0_c01411{bottom:0.000000pt;}
.y6c_c01411{bottom:57.600000pt;}
.y6b_c01411{bottom:61.440000pt;}
.y33_c01411{bottom:63.360000pt;}
.y35_c01411{bottom:64.000000pt;}
.y34_c01411{bottom:64.640000pt;}
.y6a_c01411{bottom:96.000000pt;}
.y69_c01411{bottom:99.200000pt;}
.y31_c01411{bottom:101.120000pt;}
.y32_c01411{bottom:104.320000pt;}
.y68_c01411{bottom:135.040000pt;}
.y2f_c01411{bottom:138.880000pt;}
.y30_c01411{bottom:142.080000pt;}
.y66_c01411{bottom:173.440000pt;}
.y67_c01411{bottom:174.720000pt;}
.y65_c01411{bottom:176.640000pt;}
.y2d_c01411{bottom:177.920000pt;}
.y2e_c01411{bottom:178.560000pt;}
.y2c_c01411{bottom:179.200000pt;}
.y64_c01411{bottom:211.840000pt;}
.y63_c01411{bottom:215.040000pt;}
.y2a_c01411{bottom:216.320000pt;}
.y29_c01411{bottom:216.960000pt;}
.y2b_c01411{bottom:218.240000pt;}
.y62_c01411{bottom:250.240000pt;}
.y61_c01411{bottom:253.440000pt;}
.y60_c01411{bottom:254.080000pt;}
.y27_c01411{bottom:254.720000pt;}
.y28_c01411{bottom:257.280000pt;}
.y5c_c01411{bottom:289.280000pt;}
.y5f_c01411{bottom:290.560000pt;}
.y5b_c01411{bottom:291.200000pt;}
.y5d_c01411{bottom:291.840000pt;}
.y26_c01411{bottom:293.120000pt;}
.y5e_c01411{bottom:293.760000pt;}
.y5a_c01411{bottom:327.680000pt;}
.y59_c01411{bottom:329.600000pt;}
.y25_c01411{bottom:330.880000pt;}
.y24_c01411{bottom:331.520000pt;}
.y58_c01411{bottom:366.080000pt;}
.y57_c01411{bottom:368.000000pt;}
.y22_c01411{bottom:369.280000pt;}
.y21_c01411{bottom:369.920000pt;}
.y23_c01411{bottom:371.200000pt;}
.y56_c01411{bottom:405.120000pt;}
.y54_c01411{bottom:406.400000pt;}
.y55_c01411{bottom:407.040000pt;}
.y1f_c01411{bottom:408.320000pt;}
.y53_c01411{bottom:408.960000pt;}
.y20_c01411{bottom:410.240000pt;}
.y52_c01411{bottom:443.520000pt;}
.y51_c01411{bottom:446.720000pt;}
.y1e_c01411{bottom:448.000000pt;}
.y1d_c01411{bottom:448.640000pt;}
.y4f_c01411{bottom:482.560000pt;}
.y50_c01411{bottom:483.200000pt;}
.y1c_c01411{bottom:484.480000pt;}
.y1a_c01411{bottom:486.400000pt;}
.y1b_c01411{bottom:487.040000pt;}
.y4e_c01411{bottom:520.960000pt;}
.y17_c01411{bottom:522.880000pt;}
.y19_c01411{bottom:523.520000pt;}
.y18_c01411{bottom:525.440000pt;}
.y4b_c01411{bottom:559.360000pt;}
.y4d_c01411{bottom:560.000000pt;}
.y16_c01411{bottom:560.640000pt;}
.y15_c01411{bottom:561.280000pt;}
.y4c_c01411{bottom:561.920000pt;}
.y4a_c01411{bottom:562.560000pt;}
.y49_c01411{bottom:597.760000pt;}
.y12_c01411{bottom:599.040000pt;}
.y14_c01411{bottom:599.680000pt;}
.y13_c01411{bottom:601.600000pt;}
.y46_c01411{bottom:635.520000pt;}
.y48_c01411{bottom:636.160000pt;}
.y10_c01411{bottom:636.800000pt;}
.y47_c01411{bottom:638.080000pt;}
.y45_c01411{bottom:638.720000pt;}
.y11_c01411{bottom:639.360000pt;}
.y44_c01411{bottom:673.920000pt;}
.ye_c01411{bottom:675.200000pt;}
.y42_c01411{bottom:675.840000pt;}
.yf_c01411{bottom:676.480000pt;}
.y43_c01411{bottom:677.760000pt;}
.yd_c01411{bottom:712.320000pt;}
.y41_c01411{bottom:712.960000pt;}
.yc_c01411{bottom:713.600000pt;}
.yb_c01411{bottom:714.240000pt;}
.y40_c01411{bottom:714.880000pt;}
.y3f_c01411{bottom:751.360000pt;}
.ya_c01411{bottom:752.000000pt;}
.y3e_c01411{bottom:789.760000pt;}
.y8_c01411{bottom:790.400000pt;}
.y9_c01411{bottom:791.680000pt;}
.y3d_c01411{bottom:792.960000pt;}
.y3c_c01411{bottom:828.160000pt;}
.y6_c01411{bottom:828.800000pt;}
.y7_c01411{bottom:830.080000pt;}
.y3b_c01411{bottom:831.360000pt;}
.y5_c01411{bottom:868.480000pt;}
.y4_c01411{bottom:869.120000pt;}
.y3_c01411{bottom:870.400000pt;}
.y2_c01411{bottom:871.040000pt;}
.y39_c01411{bottom:915.840000pt;}
.y3a_c01411{bottom:916.480000pt;}
.y38_c01411{bottom:917.760000pt;}
.y37_c01411{bottom:918.400000pt;}
.y36_c01411{bottom:919.040000pt;}
.y1_c01411{bottom:972.160000pt;}
.he_c01411{height:25.341250pt;}
.h6_c01411{height:29.948750pt;}
.h3_c01411{height:39.163750pt;}
.h5_c01411{height:41.467500pt;}
.h4_c01411{height:43.771250pt;}
.ha_c01411{height:46.075000pt;}
.h9_c01411{height:48.378750pt;}
.hc_c01411{height:50.682500pt;}
.h7_c01411{height:52.986250pt;}
.h8_c01411{height:55.290000pt;}
.hb_c01411{height:57.593750pt;}
.h2_c01411{height:59.897500pt;}
.hd_c01411{height:62.201250pt;}
.hf_c01411{height:64.505000pt;}
.h0_c01411{height:1026.560000pt;}
.h1_c01411{height:1026.666667pt;}
.w0_c01411{width:689.920000pt;}
.w1_c01411{width:690.000000pt;}
.x0_c01411{left:0.000000pt;}
.x1d_c01411{left:46.720000pt;}
.x1b_c01411{left:48.000000pt;}
.x2f_c01411{left:49.280000pt;}
.x27_c01411{left:67.200000pt;}
.x1e_c01411{left:84.480000pt;}
.x1c_c01411{left:85.760000pt;}
.x24_c01411{left:94.080000pt;}
.x2_c01411{left:95.360000pt;}
.x14_c01411{left:142.080000pt;}
.x3_c01411{left:144.000000pt;}
.x1f_c01411{left:152.320000pt;}
.x2a_c01411{left:162.560000pt;}
.x28_c01411{left:172.160000pt;}
.x15_c01411{left:180.480000pt;}
.x20_c01411{left:200.960000pt;}
.x21_c01411{left:211.200000pt;}
.x29_c01411{left:220.160000pt;}
.x2b_c01411{left:229.120000pt;}
.x16_c01411{left:249.600000pt;}
.x2c_c01411{left:268.800000pt;}
.x25_c01411{left:286.080000pt;}
.x23_c01411{left:288.000000pt;}
.x22_c01411{left:297.600000pt;}
.x17_c01411{left:316.800000pt;}
.x26_c01411{left:325.760000pt;}
.x2d_c01411{left:391.680000pt;}
.x18_c01411{left:422.400000pt;}
.x2e_c01411{left:430.720000pt;}
.x19_c01411{left:460.160000pt;}
.x4_c01411{left:506.880000pt;}
.xe_c01411{left:535.680000pt;}
.xd_c01411{left:545.280000pt;}
.x5_c01411{left:546.560000pt;}
.x1a_c01411{left:554.240000pt;}
.x13_c01411{left:563.840000pt;}
.x10_c01411{left:565.120000pt;}
.x6_c01411{left:574.080000pt;}
.x1_c01411{left:593.280000pt;}
.xa_c01411{left:594.560000pt;}
.x7_c01411{left:602.880000pt;}
.x12_c01411{left:622.080000pt;}
.xb_c01411{left:624.000000pt;}
.x8_c01411{left:625.920000pt;}
.xc_c01411{left:632.320000pt;}
.x11_c01411{left:648.960000pt;}
.xf_c01411{left:650.240000pt;}
.x9_c01411{left:660.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_c01412 {
    display:none;
  }
  .loading-indicator_c01412.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01412 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01412 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01412" -> "#page-container .classname_c01412")
 */
.pf_c01412 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01412 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01412.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01412 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01412 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01412 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01412 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01412 {overflow:visible;}
  }
}
.c_c01412 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01412 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01412:after { /* webkit #35443 */
  content: '';
}
.t_c01412:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01412 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01412 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01412 { /* info for Javascript */
  display:none;
}
.l_c01412 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01412 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01412 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01412:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01412{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01412;src:url('chunks/assets/font_0087c475f705ba1887e9dfc4.woff2')format("woff");}.ff1_c01412{font-family:ff1_c01412;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m41_c01412{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m10_c01412{transform:matrix(0.215400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215400,0.000000,0.000000,0.250000,0,0);}
.m3_c01412{transform:matrix(0.226600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226600,0.000000,0.000000,0.250000,0,0);}
.m21_c01412{transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);}
.m2f_c01412{transform:matrix(0.244150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244150,0.000000,0.000000,0.250000,0,0);}
.m2b_c01412{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m44_c01412{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);}
.m31_c01412{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_c01412{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);}
.m2a_c01412{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_c01412{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);}
.m32_c01412{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m1_c01412{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.ma_c01412{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.mf_c01412{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m6_c01412{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m29_c01412{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_c01412{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m20_c01412{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m7_c01412{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_c01412{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m28_c01412{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m14_c01412{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01412{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01412{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m25_c01412{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.mc_c01412{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m27_c01412{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m42_c01412{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m22_c01412{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m37_c01412{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01412{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m16_c01412{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01412{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);}
.m40_c01412{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.md_c01412{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);}
.m23_c01412{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01412{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);}
.m2c_c01412{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m13_c01412{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m43_c01412{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01412{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01412{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m5_c01412{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);}
.m12_c01412{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);}
.m34_c01412{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);}
.m19_c01412{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);}
.m36_c01412{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);}
.mb_c01412{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);}
.m9_c01412{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m2_c01412{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01412{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);}
.m33_c01412{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01412{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m35_c01412{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);}
.m4_c01412{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01412{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m15_c01412{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m0_c01412{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m17_c01412{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01412{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);}
.me_c01412{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m39_c01412{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);}
.m38_c01412{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m30_c01412{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);}
.m3c_c01412{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);}
.m3d_c01412{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m8_c01412{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m11_c01412{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m45_c01412{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.v2_c01412{vertical-align:-2.880000px;}
.v0_c01412{vertical-align:0.000000px;}
.v1_c01412{vertical-align:11.520000px;}
.ls0_c01412{letter-spacing:0.000000px;}
.sc__c01412{text-shadow:none;}
.sc0_c01412{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01412{-webkit-text-stroke:0px transparent;}
.sc0_c01412{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01412{word-spacing:0.000000px;}
.ws0_c01412{word-spacing:11.690400px;}
.fc0_c01412{color:transparent;}
.fsb_c01412{font-size:40.320000px;}
.fs6_c01412{font-size:43.200000px;}
.fsd_c01412{font-size:46.080000px;}
.fs7_c01412{font-size:48.960000px;}
.fs5_c01412{font-size:51.840000px;}
.fs0_c01412{font-size:54.720000px;}
.fs4_c01412{font-size:57.600000px;}
.fs2_c01412{font-size:60.480000px;}
.fsa_c01412{font-size:63.360000px;}
.fsc_c01412{font-size:66.240000px;}
.fse_c01412{font-size:69.120000px;}
.fs8_c01412{font-size:72.000000px;}
.fs3_c01412{font-size:74.880000px;}
.fs1_c01412{font-size:77.760000px;}
.fs9_c01412{font-size:106.560000px;}
.y0_c01412{bottom:0.000000px;}
.y57_c01412{bottom:66.240000px;}
.y58_c01412{bottom:67.680000px;}
.y56_c01412{bottom:68.400000px;}
.y6c_c01412{bottom:69.120000px;}
.y6e_c01412{bottom:70.560000px;}
.y6d_c01412{bottom:71.280000px;}
.y6f_c01412{bottom:72.720000px;}
.y52_c01412{bottom:110.160000px;}
.y53_c01412{bottom:112.320000px;}
.y54_c01412{bottom:113.760000px;}
.y55_c01412{bottom:114.480000px;}
.y4f_c01412{bottom:142.560000px;}
.y4d_c01412{bottom:143.280000px;}
.y4c_c01412{bottom:144.720000px;}
.y4e_c01412{bottom:145.440000px;}
.y51_c01412{bottom:146.880000px;}
.y50_c01412{bottom:147.600000px;}
.y6b_c01412{bottom:148.320000px;}
.y4b_c01412{bottom:186.480000px;}
.y4a_c01412{bottom:188.640000px;}
.y69_c01412{bottom:191.520000px;}
.y6a_c01412{bottom:192.240000px;}
.y49_c01412{bottom:228.960000px;}
.y48_c01412{bottom:230.400000px;}
.y47_c01412{bottom:231.120000px;}
.y67_c01412{bottom:231.840000px;}
.y68_c01412{bottom:234.720000px;}
.y46_c01412{bottom:272.880000px;}
.y64_c01412{bottom:274.320000px;}
.y45_c01412{bottom:275.040000px;}
.y65_c01412{bottom:276.480000px;}
.y66_c01412{bottom:277.920000px;}
.y63_c01412{bottom:319.680000px;}
.y62_c01412{bottom:320.400000px;}
.y44_c01412{bottom:358.560000px;}
.y43_c01412{bottom:360.720000px;}
.y61_c01412{bottom:361.440000px;}
.y3f_c01412{bottom:401.760000px;}
.y41_c01412{bottom:402.480000px;}
.y3e_c01412{bottom:403.200000px;}
.y40_c01412{bottom:404.640000px;}
.y5f_c01412{bottom:405.360000px;}
.y42_c01412{bottom:406.080000px;}
.y60_c01412{bottom:406.800000px;}
.y3c_c01412{bottom:444.240000px;}
.y3d_c01412{bottom:444.960000px;}
.y3b_c01412{bottom:446.400000px;}
.y5c_c01412{bottom:447.120000px;}
.y5e_c01412{bottom:447.840000px;}
.y5d_c01412{bottom:450.000000px;}
.y39_c01412{bottom:488.160000px;}
.y38_c01412{bottom:488.880000px;}
.y5b_c01412{bottom:490.320000px;}
.y3a_c01412{bottom:491.760000px;}
.y37_c01412{bottom:531.360000px;}
.y59_c01412{bottom:532.080000px;}
.y5a_c01412{bottom:532.800000px;}
.y36_c01412{bottom:533.520000px;}
.y35_c01412{bottom:574.560000px;}
.y34_c01412{bottom:576.720000px;}
.y30_c01412{bottom:606.240000px;}
.y2f_c01412{bottom:606.960000px;}
.y32_c01412{bottom:607.680000px;}
.y2e_c01412{bottom:608.400000px;}
.y33_c01412{bottom:609.120000px;}
.y31_c01412{bottom:610.560000px;}
.y1f_c01412{bottom:650.160000px;}
.y1e_c01412{bottom:650.880000px;}
.y1d_c01412{bottom:651.600000px;}
.y2d_c01412{bottom:652.320000px;}
.y2c_c01412{bottom:653.040000px;}
.y1c_c01412{bottom:693.360000px;}
.y2b_c01412{bottom:694.080000px;}
.y29_c01412{bottom:694.800000px;}
.y1b_c01412{bottom:695.520000px;}
.y2a_c01412{bottom:697.680000px;}
.y19_c01412{bottom:738.720000px;}
.y1a_c01412{bottom:740.880000px;}
.y18_c01412{bottom:741.600000px;}
.y17_c01412{bottom:768.240000px;}
.y14_c01412{bottom:769.680000px;}
.y16_c01412{bottom:770.400000px;}
.y28_c01412{bottom:771.120000px;}
.y15_c01412{bottom:772.560000px;}
.y13_c01412{bottom:773.280000px;}
.y12_c01412{bottom:813.600000px;}
.y11_c01412{bottom:814.320000px;}
.y27_c01412{bottom:815.040000px;}
.ye_c01412{bottom:856.080000px;}
.y10_c01412{bottom:856.800000px;}
.yd_c01412{bottom:858.960000px;}
.yf_c01412{bottom:859.680000px;}
.y26_c01412{bottom:898.560000px;}
.yc_c01412{bottom:899.280000px;}
.y8_c01412{bottom:901.440000px;}
.y9_c01412{bottom:902.160000px;}
.yb_c01412{bottom:902.880000px;}
.ya_c01412{bottom:903.600000px;}
.y25_c01412{bottom:931.680000px;}
.y7_c01412{bottom:942.480000px;}
.y5_c01412{bottom:944.640000px;}
.y6_c01412{bottom:946.800000px;}
.y24_c01412{bottom:984.240000px;}
.y23_c01412{bottom:984.960000px;}
.y4_c01412{bottom:985.680000px;}
.y3_c01412{bottom:987.120000px;}
.y21_c01412{bottom:1027.440000px;}
.y2_c01412{bottom:1028.160000px;}
.y22_c01412{bottom:1028.880000px;}
.y1_c01412{bottom:1031.760000px;}
.y20_c01412{bottom:1087.200000px;}
.hd_c01412{height:36.284062px;}
.h8_c01412{height:38.875781px;}
.hf_c01412{height:41.467500px;}
.h9_c01412{height:44.059219px;}
.h7_c01412{height:46.650937px;}
.h2_c01412{height:49.242656px;}
.h6_c01412{height:51.834375px;}
.h4_c01412{height:54.426094px;}
.hc_c01412{height:57.017812px;}
.he_c01412{height:59.609531px;}
.h10_c01412{height:62.201250px;}
.ha_c01412{height:64.792969px;}
.h11_c01412{height:65.946094px;}
.h5_c01412{height:67.384687px;}
.h3_c01412{height:69.976406px;}
.hb_c01412{height:95.893594px;}
.h0_c01412{height:1155.600000px;}
.h1_c01412{height:1155.750000px;}
.w0_c01412{width:778.320000px;}
.w1_c01412{width:778.500000px;}
.x0_c01412{left:0.000000px;}
.x1e_c01412{left:64.800000px;}
.x1_c01412{left:66.240000px;}
.x10_c01412{left:117.360000px;}
.x2_c01412{left:118.800000px;}
.xe_c01412{left:162.000000px;}
.x2d_c01412{left:182.160000px;}
.x3_c01412{left:195.120000px;}
.x4_c01412{left:205.200000px;}
.xf_c01412{left:215.280000px;}
.x11_c01412{left:237.600000px;}
.xa_c01412{left:247.680000px;}
.x26_c01412{left:258.480000px;}
.x5_c01412{left:259.920000px;}
.x23_c01412{left:268.560000px;}
.x29_c01412{left:270.000000px;}
.x22_c01412{left:280.800000px;}
.x2e_c01412{left:292.320000px;}
.x7_c01412{left:300.960000px;}
.x6_c01412{left:302.400000px;}
.x24_c01412{left:313.200000px;}
.x8_c01412{left:344.880000px;}
.x25_c01412{left:367.200000px;}
.x2f_c01412{left:377.280000px;}
.xb_c01412{left:387.360000px;}
.x9_c01412{left:398.880000px;}
.xc_c01412{left:431.280000px;}
.x27_c01412{left:439.920000px;}
.x2a_c01412{left:441.360000px;}
.x1f_c01412{left:473.040000px;}
.xd_c01412{left:484.560000px;}
.x2b_c01412{left:494.640000px;}
.x28_c01412{left:525.600000px;}
.x20_c01412{left:527.040000px;}
.x2c_c01412{left:547.920000px;}
.x21_c01412{left:580.320000px;}
.x1b_c01412{left:591.840000px;}
.x19_c01412{left:593.280000px;}
.x30_c01412{left:612.720000px;}
.x31_c01412{left:644.400000px;}
.x17_c01412{left:646.560000px;}
.x13_c01412{left:648.000000px;}
.x1c_c01412{left:658.080000px;}
.x32_c01412{left:677.520000px;}
.x18_c01412{left:678.960000px;}
.x14_c01412{left:680.400000px;}
.x12_c01412{left:686.880000px;}
.x33_c01412{left:709.920000px;}
.x15_c01412{left:712.800000px;}
.x1d_c01412{left:720.720000px;}
.x1a_c01412{left:722.160000px;}
.x16_c01412{left:723.600000px;}
.x34_c01412{left:740.880000px;}
@media print{
.v2_c01412{vertical-align:-2.560000pt;}
.v0_c01412{vertical-align:0.000000pt;}
.v1_c01412{vertical-align:10.240000pt;}
.ls0_c01412{letter-spacing:0.000000pt;}
.ws1_c01412{word-spacing:0.000000pt;}
.ws0_c01412{word-spacing:10.391467pt;}
.fsb_c01412{font-size:35.840000pt;}
.fs6_c01412{font-size:38.400000pt;}
.fsd_c01412{font-size:40.960000pt;}
.fs7_c01412{font-size:43.520000pt;}
.fs5_c01412{font-size:46.080000pt;}
.fs0_c01412{font-size:48.640000pt;}
.fs4_c01412{font-size:51.200000pt;}
.fs2_c01412{font-size:53.760000pt;}
.fsa_c01412{font-size:56.320000pt;}
.fsc_c01412{font-size:58.880000pt;}
.fse_c01412{font-size:61.440000pt;}
.fs8_c01412{font-size:64.000000pt;}
.fs3_c01412{font-size:66.560000pt;}
.fs1_c01412{font-size:69.120000pt;}
.fs9_c01412{font-size:94.720000pt;}
.y0_c01412{bottom:0.000000pt;}
.y57_c01412{bottom:58.880000pt;}
.y58_c01412{bottom:60.160000pt;}
.y56_c01412{bottom:60.800000pt;}
.y6c_c01412{bottom:61.440000pt;}
.y6e_c01412{bottom:62.720000pt;}
.y6d_c01412{bottom:63.360000pt;}
.y6f_c01412{bottom:64.640000pt;}
.y52_c01412{bottom:97.920000pt;}
.y53_c01412{bottom:99.840000pt;}
.y54_c01412{bottom:101.120000pt;}
.y55_c01412{bottom:101.760000pt;}
.y4f_c01412{bottom:126.720000pt;}
.y4d_c01412{bottom:127.360000pt;}
.y4c_c01412{bottom:128.640000pt;}
.y4e_c01412{bottom:129.280000pt;}
.y51_c01412{bottom:130.560000pt;}
.y50_c01412{bottom:131.200000pt;}
.y6b_c01412{bottom:131.840000pt;}
.y4b_c01412{bottom:165.760000pt;}
.y4a_c01412{bottom:167.680000pt;}
.y69_c01412{bottom:170.240000pt;}
.y6a_c01412{bottom:170.880000pt;}
.y49_c01412{bottom:203.520000pt;}
.y48_c01412{bottom:204.800000pt;}
.y47_c01412{bottom:205.440000pt;}
.y67_c01412{bottom:206.080000pt;}
.y68_c01412{bottom:208.640000pt;}
.y46_c01412{bottom:242.560000pt;}
.y64_c01412{bottom:243.840000pt;}
.y45_c01412{bottom:244.480000pt;}
.y65_c01412{bottom:245.760000pt;}
.y66_c01412{bottom:247.040000pt;}
.y63_c01412{bottom:284.160000pt;}
.y62_c01412{bottom:284.800000pt;}
.y44_c01412{bottom:318.720000pt;}
.y43_c01412{bottom:320.640000pt;}
.y61_c01412{bottom:321.280000pt;}
.y3f_c01412{bottom:357.120000pt;}
.y41_c01412{bottom:357.760000pt;}
.y3e_c01412{bottom:358.400000pt;}
.y40_c01412{bottom:359.680000pt;}
.y5f_c01412{bottom:360.320000pt;}
.y42_c01412{bottom:360.960000pt;}
.y60_c01412{bottom:361.600000pt;}
.y3c_c01412{bottom:394.880000pt;}
.y3d_c01412{bottom:395.520000pt;}
.y3b_c01412{bottom:396.800000pt;}
.y5c_c01412{bottom:397.440000pt;}
.y5e_c01412{bottom:398.080000pt;}
.y5d_c01412{bottom:400.000000pt;}
.y39_c01412{bottom:433.920000pt;}
.y38_c01412{bottom:434.560000pt;}
.y5b_c01412{bottom:435.840000pt;}
.y3a_c01412{bottom:437.120000pt;}
.y37_c01412{bottom:472.320000pt;}
.y59_c01412{bottom:472.960000pt;}
.y5a_c01412{bottom:473.600000pt;}
.y36_c01412{bottom:474.240000pt;}
.y35_c01412{bottom:510.720000pt;}
.y34_c01412{bottom:512.640000pt;}
.y30_c01412{bottom:538.880000pt;}
.y2f_c01412{bottom:539.520000pt;}
.y32_c01412{bottom:540.160000pt;}
.y2e_c01412{bottom:540.800000pt;}
.y33_c01412{bottom:541.440000pt;}
.y31_c01412{bottom:542.720000pt;}
.y1f_c01412{bottom:577.920000pt;}
.y1e_c01412{bottom:578.560000pt;}
.y1d_c01412{bottom:579.200000pt;}
.y2d_c01412{bottom:579.840000pt;}
.y2c_c01412{bottom:580.480000pt;}
.y1c_c01412{bottom:616.320000pt;}
.y2b_c01412{bottom:616.960000pt;}
.y29_c01412{bottom:617.600000pt;}
.y1b_c01412{bottom:618.240000pt;}
.y2a_c01412{bottom:620.160000pt;}
.y19_c01412{bottom:656.640000pt;}
.y1a_c01412{bottom:658.560000pt;}
.y18_c01412{bottom:659.200000pt;}
.y17_c01412{bottom:682.880000pt;}
.y14_c01412{bottom:684.160000pt;}
.y16_c01412{bottom:684.800000pt;}
.y28_c01412{bottom:685.440000pt;}
.y15_c01412{bottom:686.720000pt;}
.y13_c01412{bottom:687.360000pt;}
.y12_c01412{bottom:723.200000pt;}
.y11_c01412{bottom:723.840000pt;}
.y27_c01412{bottom:724.480000pt;}
.ye_c01412{bottom:760.960000pt;}
.y10_c01412{bottom:761.600000pt;}
.yd_c01412{bottom:763.520000pt;}
.yf_c01412{bottom:764.160000pt;}
.y26_c01412{bottom:798.720000pt;}
.yc_c01412{bottom:799.360000pt;}
.y8_c01412{bottom:801.280000pt;}
.y9_c01412{bottom:801.920000pt;}
.yb_c01412{bottom:802.560000pt;}
.ya_c01412{bottom:803.200000pt;}
.y25_c01412{bottom:828.160000pt;}
.y7_c01412{bottom:837.760000pt;}
.y5_c01412{bottom:839.680000pt;}
.y6_c01412{bottom:841.600000pt;}
.y24_c01412{bottom:874.880000pt;}
.y23_c01412{bottom:875.520000pt;}
.y4_c01412{bottom:876.160000pt;}
.y3_c01412{bottom:877.440000pt;}
.y21_c01412{bottom:913.280000pt;}
.y2_c01412{bottom:913.920000pt;}
.y22_c01412{bottom:914.560000pt;}
.y1_c01412{bottom:917.120000pt;}
.y20_c01412{bottom:966.400000pt;}
.hd_c01412{height:32.252500pt;}
.h8_c01412{height:34.556250pt;}
.hf_c01412{height:36.860000pt;}
.h9_c01412{height:39.163750pt;}
.h7_c01412{height:41.467500pt;}
.h2_c01412{height:43.771250pt;}
.h6_c01412{height:46.075000pt;}
.h4_c01412{height:48.378750pt;}
.hc_c01412{height:50.682500pt;}
.he_c01412{height:52.986250pt;}
.h10_c01412{height:55.290000pt;}
.ha_c01412{height:57.593750pt;}
.h11_c01412{height:58.618750pt;}
.h5_c01412{height:59.897500pt;}
.h3_c01412{height:62.201250pt;}
.hb_c01412{height:85.238750pt;}
.h0_c01412{height:1027.200000pt;}
.h1_c01412{height:1027.333333pt;}
.w0_c01412{width:691.840000pt;}
.w1_c01412{width:692.000000pt;}
.x0_c01412{left:0.000000pt;}
.x1e_c01412{left:57.600000pt;}
.x1_c01412{left:58.880000pt;}
.x10_c01412{left:104.320000pt;}
.x2_c01412{left:105.600000pt;}
.xe_c01412{left:144.000000pt;}
.x2d_c01412{left:161.920000pt;}
.x3_c01412{left:173.440000pt;}
.x4_c01412{left:182.400000pt;}
.xf_c01412{left:191.360000pt;}
.x11_c01412{left:211.200000pt;}
.xa_c01412{left:220.160000pt;}
.x26_c01412{left:229.760000pt;}
.x5_c01412{left:231.040000pt;}
.x23_c01412{left:238.720000pt;}
.x29_c01412{left:240.000000pt;}
.x22_c01412{left:249.600000pt;}
.x2e_c01412{left:259.840000pt;}
.x7_c01412{left:267.520000pt;}
.x6_c01412{left:268.800000pt;}
.x24_c01412{left:278.400000pt;}
.x8_c01412{left:306.560000pt;}
.x25_c01412{left:326.400000pt;}
.x2f_c01412{left:335.360000pt;}
.xb_c01412{left:344.320000pt;}
.x9_c01412{left:354.560000pt;}
.xc_c01412{left:383.360000pt;}
.x27_c01412{left:391.040000pt;}
.x2a_c01412{left:392.320000pt;}
.x1f_c01412{left:420.480000pt;}
.xd_c01412{left:430.720000pt;}
.x2b_c01412{left:439.680000pt;}
.x28_c01412{left:467.200000pt;}
.x20_c01412{left:468.480000pt;}
.x2c_c01412{left:487.040000pt;}
.x21_c01412{left:515.840000pt;}
.x1b_c01412{left:526.080000pt;}
.x19_c01412{left:527.360000pt;}
.x30_c01412{left:544.640000pt;}
.x31_c01412{left:572.800000pt;}
.x17_c01412{left:574.720000pt;}
.x13_c01412{left:576.000000pt;}
.x1c_c01412{left:584.960000pt;}
.x32_c01412{left:602.240000pt;}
.x18_c01412{left:603.520000pt;}
.x14_c01412{left:604.800000pt;}
.x12_c01412{left:610.560000pt;}
.x33_c01412{left:631.040000pt;}
.x15_c01412{left:633.600000pt;}
.x1d_c01412{left:640.640000pt;}
.x1a_c01412{left:641.920000pt;}
.x16_c01412{left:643.200000pt;}
.x34_c01412{left:658.560000pt;}
}





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

.ir_c01413:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01413{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01413;src:url('chunks/assets/font_9a5255920df1f5eac84b3028.woff2')format("woff");}.ff1_c01413{font-family:ff1_c01413;line-height:1.109863;font-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_c01413{transform:matrix(0.221150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221150,0.000000,0.000000,0.250000,0,0);}
.m2b_c01413{transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);}
.m42_c01413{transform:matrix(0.233975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233975,0.000000,0.000000,0.250000,0,0);}
.m48_c01413{transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);}
.m47_c01413{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m13_c01413{transform:matrix(0.237275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237275,0.000000,0.000000,0.250000,0,0);}
.m1c_c01413{transform:matrix(0.243300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243300,0.000000,0.000000,0.250000,0,0);}
.m1e_c01413{transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);}
.m34_c01413{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m17_c01413{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01413{transform:matrix(0.245625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245625,0.000000,0.000000,0.250000,0,0);}
.m3b_c01413{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m2c_c01413{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_c01413{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);}
.m31_c01413{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m19_c01413{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);}
.m44_c01413{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);}
.m36_c01413{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m24_c01413{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);}
.m33_c01413{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);}
.m37_c01413{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);}
.m20_c01413{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01413{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01413{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m26_c01413{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);}
.m30_c01413{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m41_c01413{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m35_c01413{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m9_c01413{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m29_c01413{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01413{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m46_c01413{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01413{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01413{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2_c01413{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01413{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01413{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01413{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m23_c01413{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mb_c01413{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m16_c01413{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);}
.m2d_c01413{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m18_c01413{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);}
.m1d_c01413{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.ma_c01413{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_c01413{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m0_c01413{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01413{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.md_c01413{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);}
.m3f_c01413{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_c01413{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);}
.me_c01413{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);}
.m25_c01413{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m10_c01413{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);}
.m21_c01413{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m5_c01413{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m39_c01413{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);}
.mc_c01413{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m8_c01413{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);}
.m4_c01413{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m1_c01413{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m7_c01413{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m6_c01413{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m43_c01413{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m3_c01413{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m38_c01413{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m22_c01413{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m14_c01413{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);}
.m15_c01413{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);}
.m1f_c01413{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.mf_c01413{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);}
.m27_c01413{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);}
.m49_c01413{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m45_c01413{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01413{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01413{transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);}
.m40_c01413{transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);}
.v0_c01413{vertical-align:0.000000px;}
.ls0_c01413{letter-spacing:0.000000px;}
.sc__c01413{text-shadow:none;}
.sc0_c01413{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01413{-webkit-text-stroke:0px transparent;}
.sc0_c01413{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01413{word-spacing:0.000000px;}
.ws1_c01413{word-spacing:9.210378px;}
.ws0_c01413{word-spacing:14.996742px;}
.fc0_c01413{color:transparent;}
.fsf_c01413{font-size:17.280000px;}
.fsa_c01413{font-size:25.920000px;}
.fse_c01413{font-size:34.560000px;}
.fs9_c01413{font-size:40.320000px;}
.fs5_c01413{font-size:43.200000px;}
.fsd_c01413{font-size:48.960000px;}
.fs3_c01413{font-size:51.840000px;}
.fs4_c01413{font-size:54.720000px;}
.fs1_c01413{font-size:57.600000px;}
.fs6_c01413{font-size:60.480000px;}
.fs2_c01413{font-size:63.360000px;}
.fs7_c01413{font-size:66.240000px;}
.fsb_c01413{font-size:69.120000px;}
.fsc_c01413{font-size:72.000000px;}
.fs0_c01413{font-size:74.880000px;}
.fs8_c01413{font-size:77.760000px;}
.fs10_c01413{font-size:80.640000px;}
.y0_c01413{bottom:0.000000px;}
.y5c_c01413{bottom:63.360000px;}
.y5a_c01413{bottom:66.240000px;}
.y5b_c01413{bottom:66.960000px;}
.y6d_c01413{bottom:71.280000px;}
.y6e_c01413{bottom:72.000000px;}
.y6c_c01413{bottom:73.440000px;}
.y59_c01413{bottom:106.560000px;}
.y57_c01413{bottom:109.440000px;}
.y58_c01413{bottom:110.880000px;}
.y6b_c01413{bottom:113.760000px;}
.y56_c01413{bottom:149.760000px;}
.y55_c01413{bottom:151.920000px;}
.y54_c01413{bottom:153.360000px;}
.y53_c01413{bottom:154.800000px;}
.y6a_c01413{bottom:156.240000px;}
.y69_c01413{bottom:157.680000px;}
.y52_c01413{bottom:193.680000px;}
.y50_c01413{bottom:196.560000px;}
.y4f_c01413{bottom:197.280000px;}
.y68_c01413{bottom:200.160000px;}
.y51_c01413{bottom:200.880000px;}
.y4e_c01413{bottom:236.880000px;}
.y4d_c01413{bottom:239.760000px;}
.y66_c01413{bottom:241.920000px;}
.y67_c01413{bottom:244.080000px;}
.y4c_c01413{bottom:280.080000px;}
.y4b_c01413{bottom:282.240000px;}
.y63_c01413{bottom:285.840000px;}
.y65_c01413{bottom:286.560000px;}
.y64_c01413{bottom:288.000000px;}
.y4a_c01413{bottom:324.000000px;}
.y47_c01413{bottom:325.440000px;}
.y49_c01413{bottom:327.600000px;}
.y61_c01413{bottom:328.320000px;}
.y48_c01413{bottom:330.480000px;}
.y62_c01413{bottom:331.200000px;}
.y46_c01413{bottom:367.200000px;}
.y43_c01413{bottom:369.360000px;}
.y44_c01413{bottom:370.080000px;}
.y45_c01413{bottom:370.800000px;}
.y5f_c01413{bottom:371.520000px;}
.y60_c01413{bottom:374.400000px;}
.y42_c01413{bottom:410.400000px;}
.y41_c01413{bottom:412.560000px;}
.y5d_c01413{bottom:414.720000px;}
.y5e_c01413{bottom:415.440000px;}
.y6f_c01413{bottom:457.200000px;}
.y70_c01413{bottom:457.920000px;}
.y2c_c01413{bottom:507.600000px;}
.y2e_c01413{bottom:509.040000px;}
.y2a_c01413{bottom:509.760000px;}
.y2b_c01413{bottom:510.480000px;}
.y40_c01413{bottom:511.920000px;}
.y2d_c01413{bottom:512.640000px;}
.y3f_c01413{bottom:514.080000px;}
.y29_c01413{bottom:551.520000px;}
.y28_c01413{bottom:552.960000px;}
.y3e_c01413{bottom:555.840000px;}
.y3d_c01413{bottom:557.280000px;}
.y3c_c01413{bottom:558.000000px;}
.y27_c01413{bottom:595.440000px;}
.y26_c01413{bottom:596.160000px;}
.y3a_c01413{bottom:600.480000px;}
.y3b_c01413{bottom:601.200000px;}
.y23_c01413{bottom:637.920000px;}
.y25_c01413{bottom:638.640000px;}
.y22_c01413{bottom:640.080000px;}
.y38_c01413{bottom:640.800000px;}
.y37_c01413{bottom:641.520000px;}
.y24_c01413{bottom:642.240000px;}
.y39_c01413{bottom:643.680000px;}
.y1e_c01413{bottom:681.120000px;}
.y21_c01413{bottom:681.840000px;}
.y1d_c01413{bottom:682.560000px;}
.y1f_c01413{bottom:683.280000px;}
.y35_c01413{bottom:684.000000px;}
.y20_c01413{bottom:685.440000px;}
.y36_c01413{bottom:686.880000px;}
.y19_c01413{bottom:724.320000px;}
.y1c_c01413{bottom:725.040000px;}
.y18_c01413{bottom:725.760000px;}
.y1a_c01413{bottom:726.480000px;}
.y1b_c01413{bottom:728.640000px;}
.y17_c01413{bottom:767.520000px;}
.y16_c01413{bottom:768.240000px;}
.y15_c01413{bottom:768.960000px;}
.y33_c01413{bottom:769.680000px;}
.y34_c01413{bottom:770.400000px;}
.y13_c01413{bottom:810.720000px;}
.y14_c01413{bottom:811.440000px;}
.y12_c01413{bottom:812.160000px;}
.y11_c01413{bottom:853.200000px;}
.yd_c01413{bottom:853.920000px;}
.yc_c01413{bottom:855.360000px;}
.yf_c01413{bottom:856.800000px;}
.ye_c01413{bottom:857.520000px;}
.y10_c01413{bottom:858.240000px;}
.yb_c01413{bottom:897.120000px;}
.y31_c01413{bottom:898.560000px;}
.y9_c01413{bottom:899.280000px;}
.y32_c01413{bottom:900.000000px;}
.ya_c01413{bottom:900.720000px;}
.y2f_c01413{bottom:941.040000px;}
.y7_c01413{bottom:941.760000px;}
.y30_c01413{bottom:943.920000px;}
.y8_c01413{bottom:944.640000px;}
.y6_c01413{bottom:1028.160000px;}
.y2_c01413{bottom:1028.880000px;}
.y3_c01413{bottom:1029.600000px;}
.y5_c01413{bottom:1030.320000px;}
.y4_c01413{bottom:1031.040000px;}
.y1_c01413{bottom:1093.680000px;}
.h11_c01413{height:15.550313px;}
.hc_c01413{height:23.325469px;}
.h10_c01413{height:31.100625px;}
.hb_c01413{height:36.284062px;}
.h7_c01413{height:38.875781px;}
.hf_c01413{height:44.059219px;}
.h5_c01413{height:46.650937px;}
.h6_c01413{height:49.242656px;}
.h3_c01413{height:51.834375px;}
.h8_c01413{height:54.426094px;}
.h4_c01413{height:57.017812px;}
.h9_c01413{height:59.609531px;}
.hd_c01413{height:62.201250px;}
.he_c01413{height:64.792969px;}
.h2_c01413{height:67.384687px;}
.ha_c01413{height:69.976406px;}
.h12_c01413{height:72.568125px;}
.h0_c01413{height:1153.440000px;}
.h1_c01413{height:1153.500000px;}
.w0_c01413{width:776.160000px;}
.w1_c01413{width:776.250000px;}
.x0_c01413{left:0.000000px;}
.x2_c01413{left:58.320000px;}
.x12_c01413{left:59.760000px;}
.x15_c01413{left:61.200000px;}
.x22_c01413{left:62.640000px;}
.x1c_c01413{left:83.520000px;}
.x25_c01413{left:92.880000px;}
.x13_c01413{left:112.320000px;}
.x3_c01413{left:113.760000px;}
.x23_c01413{left:115.200000px;}
.x26_c01413{left:147.600000px;}
.x29_c01413{left:149.040000px;}
.x2a_c01413{left:159.120000px;}
.x31_c01413{left:168.480000px;}
.xe_c01413{left:178.560000px;}
.x2b_c01413{left:190.800000px;}
.x27_c01413{left:192.240000px;}
.x4_c01413{left:199.440000px;}
.x28_c01413{left:201.600000px;}
.xf_c01413{left:210.960000px;}
.x1a_c01413{left:222.480000px;}
.x14_c01413{left:244.080000px;}
.x24_c01413{left:245.520000px;}
.x5_c01413{left:254.160000px;}
.xd_c01413{left:264.960000px;}
.x10_c01413{left:298.080000px;}
.x6_c01413{left:308.160000px;}
.x17_c01413{left:330.480000px;}
.x11_c01413{left:351.360000px;}
.x1b_c01413{left:362.880000px;}
.x18_c01413{left:382.320000px;}
.x16_c01413{left:394.560000px;}
.x19_c01413{left:426.960000px;}
.x7_c01413{left:436.320000px;}
.x8_c01413{left:490.320000px;}
.x9_c01413{left:544.320000px;}
.x21_c01413{left:607.680000px;}
.x1d_c01413{left:609.120000px;}
.x2c_c01413{left:619.920000px;}
.x2f_c01413{left:621.360000px;}
.xa_c01413{left:641.520000px;}
.x2e_c01413{left:642.960000px;}
.xb_c01413{left:674.640000px;}
.x1f_c01413{left:683.280000px;}
.x1_c01413{left:684.720000px;}
.xc_c01413{left:707.040000px;}
.x1e_c01413{left:715.680000px;}
.x20_c01413{left:717.840000px;}
.x2d_c01413{left:736.560000px;}
.x30_c01413{left:738.720000px;}
@media print{
.v0_c01413{vertical-align:0.000000pt;}
.ls0_c01413{letter-spacing:0.000000pt;}
.ws2_c01413{word-spacing:0.000000pt;}
.ws1_c01413{word-spacing:8.187003pt;}
.ws0_c01413{word-spacing:13.330437pt;}
.fsf_c01413{font-size:15.360000pt;}
.fsa_c01413{font-size:23.040000pt;}
.fse_c01413{font-size:30.720000pt;}
.fs9_c01413{font-size:35.840000pt;}
.fs5_c01413{font-size:38.400000pt;}
.fsd_c01413{font-size:43.520000pt;}
.fs3_c01413{font-size:46.080000pt;}
.fs4_c01413{font-size:48.640000pt;}
.fs1_c01413{font-size:51.200000pt;}
.fs6_c01413{font-size:53.760000pt;}
.fs2_c01413{font-size:56.320000pt;}
.fs7_c01413{font-size:58.880000pt;}
.fsb_c01413{font-size:61.440000pt;}
.fsc_c01413{font-size:64.000000pt;}
.fs0_c01413{font-size:66.560000pt;}
.fs8_c01413{font-size:69.120000pt;}
.fs10_c01413{font-size:71.680000pt;}
.y0_c01413{bottom:0.000000pt;}
.y5c_c01413{bottom:56.320000pt;}
.y5a_c01413{bottom:58.880000pt;}
.y5b_c01413{bottom:59.520000pt;}
.y6d_c01413{bottom:63.360000pt;}
.y6e_c01413{bottom:64.000000pt;}
.y6c_c01413{bottom:65.280000pt;}
.y59_c01413{bottom:94.720000pt;}
.y57_c01413{bottom:97.280000pt;}
.y58_c01413{bottom:98.560000pt;}
.y6b_c01413{bottom:101.120000pt;}
.y56_c01413{bottom:133.120000pt;}
.y55_c01413{bottom:135.040000pt;}
.y54_c01413{bottom:136.320000pt;}
.y53_c01413{bottom:137.600000pt;}
.y6a_c01413{bottom:138.880000pt;}
.y69_c01413{bottom:140.160000pt;}
.y52_c01413{bottom:172.160000pt;}
.y50_c01413{bottom:174.720000pt;}
.y4f_c01413{bottom:175.360000pt;}
.y68_c01413{bottom:177.920000pt;}
.y51_c01413{bottom:178.560000pt;}
.y4e_c01413{bottom:210.560000pt;}
.y4d_c01413{bottom:213.120000pt;}
.y66_c01413{bottom:215.040000pt;}
.y67_c01413{bottom:216.960000pt;}
.y4c_c01413{bottom:248.960000pt;}
.y4b_c01413{bottom:250.880000pt;}
.y63_c01413{bottom:254.080000pt;}
.y65_c01413{bottom:254.720000pt;}
.y64_c01413{bottom:256.000000pt;}
.y4a_c01413{bottom:288.000000pt;}
.y47_c01413{bottom:289.280000pt;}
.y49_c01413{bottom:291.200000pt;}
.y61_c01413{bottom:291.840000pt;}
.y48_c01413{bottom:293.760000pt;}
.y62_c01413{bottom:294.400000pt;}
.y46_c01413{bottom:326.400000pt;}
.y43_c01413{bottom:328.320000pt;}
.y44_c01413{bottom:328.960000pt;}
.y45_c01413{bottom:329.600000pt;}
.y5f_c01413{bottom:330.240000pt;}
.y60_c01413{bottom:332.800000pt;}
.y42_c01413{bottom:364.800000pt;}
.y41_c01413{bottom:366.720000pt;}
.y5d_c01413{bottom:368.640000pt;}
.y5e_c01413{bottom:369.280000pt;}
.y6f_c01413{bottom:406.400000pt;}
.y70_c01413{bottom:407.040000pt;}
.y2c_c01413{bottom:451.200000pt;}
.y2e_c01413{bottom:452.480000pt;}
.y2a_c01413{bottom:453.120000pt;}
.y2b_c01413{bottom:453.760000pt;}
.y40_c01413{bottom:455.040000pt;}
.y2d_c01413{bottom:455.680000pt;}
.y3f_c01413{bottom:456.960000pt;}
.y29_c01413{bottom:490.240000pt;}
.y28_c01413{bottom:491.520000pt;}
.y3e_c01413{bottom:494.080000pt;}
.y3d_c01413{bottom:495.360000pt;}
.y3c_c01413{bottom:496.000000pt;}
.y27_c01413{bottom:529.280000pt;}
.y26_c01413{bottom:529.920000pt;}
.y3a_c01413{bottom:533.760000pt;}
.y3b_c01413{bottom:534.400000pt;}
.y23_c01413{bottom:567.040000pt;}
.y25_c01413{bottom:567.680000pt;}
.y22_c01413{bottom:568.960000pt;}
.y38_c01413{bottom:569.600000pt;}
.y37_c01413{bottom:570.240000pt;}
.y24_c01413{bottom:570.880000pt;}
.y39_c01413{bottom:572.160000pt;}
.y1e_c01413{bottom:605.440000pt;}
.y21_c01413{bottom:606.080000pt;}
.y1d_c01413{bottom:606.720000pt;}
.y1f_c01413{bottom:607.360000pt;}
.y35_c01413{bottom:608.000000pt;}
.y20_c01413{bottom:609.280000pt;}
.y36_c01413{bottom:610.560000pt;}
.y19_c01413{bottom:643.840000pt;}
.y1c_c01413{bottom:644.480000pt;}
.y18_c01413{bottom:645.120000pt;}
.y1a_c01413{bottom:645.760000pt;}
.y1b_c01413{bottom:647.680000pt;}
.y17_c01413{bottom:682.240000pt;}
.y16_c01413{bottom:682.880000pt;}
.y15_c01413{bottom:683.520000pt;}
.y33_c01413{bottom:684.160000pt;}
.y34_c01413{bottom:684.800000pt;}
.y13_c01413{bottom:720.640000pt;}
.y14_c01413{bottom:721.280000pt;}
.y12_c01413{bottom:721.920000pt;}
.y11_c01413{bottom:758.400000pt;}
.yd_c01413{bottom:759.040000pt;}
.yc_c01413{bottom:760.320000pt;}
.yf_c01413{bottom:761.600000pt;}
.ye_c01413{bottom:762.240000pt;}
.y10_c01413{bottom:762.880000pt;}
.yb_c01413{bottom:797.440000pt;}
.y31_c01413{bottom:798.720000pt;}
.y9_c01413{bottom:799.360000pt;}
.y32_c01413{bottom:800.000000pt;}
.ya_c01413{bottom:800.640000pt;}
.y2f_c01413{bottom:836.480000pt;}
.y7_c01413{bottom:837.120000pt;}
.y30_c01413{bottom:839.040000pt;}
.y8_c01413{bottom:839.680000pt;}
.y6_c01413{bottom:913.920000pt;}
.y2_c01413{bottom:914.560000pt;}
.y3_c01413{bottom:915.200000pt;}
.y5_c01413{bottom:915.840000pt;}
.y4_c01413{bottom:916.480000pt;}
.y1_c01413{bottom:972.160000pt;}
.h11_c01413{height:13.822500pt;}
.hc_c01413{height:20.733750pt;}
.h10_c01413{height:27.645000pt;}
.hb_c01413{height:32.252500pt;}
.h7_c01413{height:34.556250pt;}
.hf_c01413{height:39.163750pt;}
.h5_c01413{height:41.467500pt;}
.h6_c01413{height:43.771250pt;}
.h3_c01413{height:46.075000pt;}
.h8_c01413{height:48.378750pt;}
.h4_c01413{height:50.682500pt;}
.h9_c01413{height:52.986250pt;}
.hd_c01413{height:55.290000pt;}
.he_c01413{height:57.593750pt;}
.h2_c01413{height:59.897500pt;}
.ha_c01413{height:62.201250pt;}
.h12_c01413{height:64.505000pt;}
.h0_c01413{height:1025.280000pt;}
.h1_c01413{height:1025.333333pt;}
.w0_c01413{width:689.920000pt;}
.w1_c01413{width:690.000000pt;}
.x0_c01413{left:0.000000pt;}
.x2_c01413{left:51.840000pt;}
.x12_c01413{left:53.120000pt;}
.x15_c01413{left:54.400000pt;}
.x22_c01413{left:55.680000pt;}
.x1c_c01413{left:74.240000pt;}
.x25_c01413{left:82.560000pt;}
.x13_c01413{left:99.840000pt;}
.x3_c01413{left:101.120000pt;}
.x23_c01413{left:102.400000pt;}
.x26_c01413{left:131.200000pt;}
.x29_c01413{left:132.480000pt;}
.x2a_c01413{left:141.440000pt;}
.x31_c01413{left:149.760000pt;}
.xe_c01413{left:158.720000pt;}
.x2b_c01413{left:169.600000pt;}
.x27_c01413{left:170.880000pt;}
.x4_c01413{left:177.280000pt;}
.x28_c01413{left:179.200000pt;}
.xf_c01413{left:187.520000pt;}
.x1a_c01413{left:197.760000pt;}
.x14_c01413{left:216.960000pt;}
.x24_c01413{left:218.240000pt;}
.x5_c01413{left:225.920000pt;}
.xd_c01413{left:235.520000pt;}
.x10_c01413{left:264.960000pt;}
.x6_c01413{left:273.920000pt;}
.x17_c01413{left:293.760000pt;}
.x11_c01413{left:312.320000pt;}
.x1b_c01413{left:322.560000pt;}
.x18_c01413{left:339.840000pt;}
.x16_c01413{left:350.720000pt;}
.x19_c01413{left:379.520000pt;}
.x7_c01413{left:387.840000pt;}
.x8_c01413{left:435.840000pt;}
.x9_c01413{left:483.840000pt;}
.x21_c01413{left:540.160000pt;}
.x1d_c01413{left:541.440000pt;}
.x2c_c01413{left:551.040000pt;}
.x2f_c01413{left:552.320000pt;}
.xa_c01413{left:570.240000pt;}
.x2e_c01413{left:571.520000pt;}
.xb_c01413{left:599.680000pt;}
.x1f_c01413{left:607.360000pt;}
.x1_c01413{left:608.640000pt;}
.xc_c01413{left:628.480000pt;}
.x1e_c01413{left:636.160000pt;}
.x20_c01413{left:638.080000pt;}
.x2d_c01413{left:654.720000pt;}
.x30_c01413{left:656.640000pt;}
}





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

.ir_c01414:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01414{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01414;src:url('chunks/assets/font_7a9caa5d13a0d7cabe813a11.woff2')format("woff");}.ff1_c01414{font-family:ff1_c01414;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m36_c01414{transform:matrix(0.160275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160275,0.000000,0.000000,0.250000,0,0);}
.m24_c01414{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m44_c01414{transform:matrix(0.214075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214075,0.000000,0.000000,0.250000,0,0);}
.m1d_c01414{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m37_c01414{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m42_c01414{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m18_c01414{transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);}
.m31_c01414{transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);}
.m40_c01414{transform:matrix(0.239725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239725,0.000000,0.000000,0.250000,0,0);}
.m3d_c01414{transform:matrix(0.241125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241125,0.000000,0.000000,0.250000,0,0);}
.m19_c01414{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m23_c01414{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m47_c01414{transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);}
.m25_c01414{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_c01414{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m4_c01414{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);}
.m41_c01414{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m13_c01414{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m17_c01414{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_c01414{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m2_c01414{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_c01414{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);}
.m39_c01414{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m12_c01414{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01414{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);}
.m49_c01414{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_c01414{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m6_c01414{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m16_c01414{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01414{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01414{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m33_c01414{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m7_c01414{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m4a_c01414{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01414{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m34_c01414{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m20_c01414{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m48_c01414{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m14_c01414{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01414{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m15_c01414{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m8_c01414{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);}
.m35_c01414{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m21_c01414{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01414{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m9_c01414{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m30_c01414{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);}
.m2c_c01414{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m22_c01414{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_c01414{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m0_c01414{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1_c01414{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m46_c01414{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01414{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);}
.m38_c01414{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01414{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.me_c01414{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);}
.m5_c01414{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m3_c01414{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);}
.m11_c01414{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.mb_c01414{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m26_c01414{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m32_c01414{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);}
.m2e_c01414{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);}
.m45_c01414{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m28_c01414{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.ma_c01414{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01414{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);}
.m2b_c01414{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01414{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m43_c01414{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);}
.m2a_c01414{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01414{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);}
.m29_c01414{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01414{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01414{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01414{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.v0_c01414{vertical-align:0.000000px;}
.ls0_c01414{letter-spacing:0.000000px;}
.sc__c01414{text-shadow:none;}
.sc0_c01414{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01414{-webkit-text-stroke:0px transparent;}
.sc0_c01414{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01414{word-spacing:0.000000px;}
.fc0_c01414{color:transparent;}
.fse_c01414{font-size:31.680000px;}
.fsc_c01414{font-size:34.560000px;}
.fsd_c01414{font-size:40.320000px;}
.fs5_c01414{font-size:43.200000px;}
.fsb_c01414{font-size:48.960000px;}
.fs4_c01414{font-size:51.840000px;}
.fs8_c01414{font-size:54.720000px;}
.fsa_c01414{font-size:57.600000px;}
.fs6_c01414{font-size:60.480000px;}
.fs1_c01414{font-size:63.360000px;}
.fs3_c01414{font-size:66.240000px;}
.fs9_c01414{font-size:69.120000px;}
.fs7_c01414{font-size:72.000000px;}
.fs0_c01414{font-size:74.880000px;}
.fs2_c01414{font-size:77.760000px;}
.y0_c01414{bottom:0.000000px;}
.y5b_c01414{bottom:65.520000px;}
.y5a_c01414{bottom:68.400000px;}
.y59_c01414{bottom:69.840000px;}
.y68_c01414{bottom:72.720000px;}
.y58_c01414{bottom:109.440000px;}
.y57_c01414{bottom:110.880000px;}
.y56_c01414{bottom:113.040000px;}
.y67_c01414{bottom:113.760000px;}
.y53_c01414{bottom:152.640000px;}
.y55_c01414{bottom:153.360000px;}
.y54_c01414{bottom:154.800000px;}
.y52_c01414{bottom:156.240000px;}
.y65_c01414{bottom:156.960000px;}
.y66_c01414{bottom:159.840000px;}
.y51_c01414{bottom:195.840000px;}
.y4f_c01414{bottom:199.440000px;}
.y50_c01414{bottom:200.160000px;}
.y64_c01414{bottom:200.880000px;}
.y4e_c01414{bottom:239.760000px;}
.y4d_c01414{bottom:242.640000px;}
.y63_c01414{bottom:243.360000px;}
.y4c_c01414{bottom:244.080000px;}
.y49_c01414{bottom:282.960000px;}
.y4b_c01414{bottom:283.680000px;}
.y4a_c01414{bottom:285.840000px;}
.y48_c01414{bottom:286.560000px;}
.y60_c01414{bottom:287.280000px;}
.y61_c01414{bottom:288.720000px;}
.y62_c01414{bottom:289.440000px;}
.y45_c01414{bottom:326.160000px;}
.y47_c01414{bottom:326.880000px;}
.y46_c01414{bottom:328.320000px;}
.y5e_c01414{bottom:329.040000px;}
.y44_c01414{bottom:329.760000px;}
.y5f_c01414{bottom:330.480000px;}
.y43_c01414{bottom:331.200000px;}
.y42_c01414{bottom:369.360000px;}
.y3f_c01414{bottom:370.800000px;}
.y40_c01414{bottom:371.520000px;}
.y5d_c01414{bottom:372.960000px;}
.y41_c01414{bottom:373.680000px;}
.y3d_c01414{bottom:412.560000px;}
.y3e_c01414{bottom:413.280000px;}
.y3b_c01414{bottom:415.440000px;}
.y5c_c01414{bottom:416.160000px;}
.y3c_c01414{bottom:416.880000px;}
.y3a_c01414{bottom:455.760000px;}
.y39_c01414{bottom:457.920000px;}
.y37_c01414{bottom:503.280000px;}
.y38_c01414{bottom:504.000000px;}
.y36_c01414{bottom:552.960000px;}
.y31_c01414{bottom:553.680000px;}
.y30_c01414{bottom:555.120000px;}
.y35_c01414{bottom:557.280000px;}
.y34_c01414{bottom:558.000000px;}
.y33_c01414{bottom:596.880000px;}
.y2f_c01414{bottom:597.600000px;}
.y2e_c01414{bottom:598.320000px;}
.y2c_c01414{bottom:599.040000px;}
.y2d_c01414{bottom:600.480000px;}
.y29_c01414{bottom:641.520000px;}
.y32_c01414{bottom:642.240000px;}
.y28_c01414{bottom:642.960000px;}
.y2b_c01414{bottom:643.680000px;}
.y2a_c01414{bottom:644.400000px;}
.y26_c01414{bottom:682.560000px;}
.y27_c01414{bottom:684.000000px;}
.y24_c01414{bottom:685.440000px;}
.y23_c01414{bottom:686.160000px;}
.y25_c01414{bottom:686.880000px;}
.y21_c01414{bottom:727.200000px;}
.y14_c01414{bottom:727.920000px;}
.y13_c01414{bottom:729.360000px;}
.y22_c01414{bottom:730.080000px;}
.y20_c01414{bottom:730.800000px;}
.y12_c01414{bottom:770.400000px;}
.y1f_c01414{bottom:771.120000px;}
.y1e_c01414{bottom:771.840000px;}
.y11_c01414{bottom:772.560000px;}
.y10_c01414{bottom:813.600000px;}
.y1c_c01414{bottom:814.320000px;}
.yf_c01414{bottom:815.760000px;}
.y1d_c01414{bottom:816.480000px;}
.yd_c01414{bottom:856.800000px;}
.ye_c01414{bottom:858.240000px;}
.y1b_c01414{bottom:858.960000px;}
.yc_c01414{bottom:860.400000px;}
.y1a_c01414{bottom:899.280000px;}
.y9_c01414{bottom:900.720000px;}
.ya_c01414{bottom:901.440000px;}
.y19_c01414{bottom:902.160000px;}
.y8_c01414{bottom:902.880000px;}
.yb_c01414{bottom:903.600000px;}
.y18_c01414{bottom:941.040000px;}
.y7_c01414{bottom:943.200000px;}
.y6_c01414{bottom:946.080000px;}
.y17_c01414{bottom:984.960000px;}
.y5_c01414{bottom:986.400000px;}
.y4_c01414{bottom:990.000000px;}
.y15_c01414{bottom:1027.440000px;}
.y3_c01414{bottom:1028.880000px;}
.y16_c01414{bottom:1030.320000px;}
.y2_c01414{bottom:1031.040000px;}
.y1_c01414{bottom:1103.760000px;}
.h10_c01414{height:28.508906px;}
.he_c01414{height:31.100625px;}
.hf_c01414{height:36.284062px;}
.h7_c01414{height:38.875781px;}
.hd_c01414{height:44.059219px;}
.h6_c01414{height:46.650937px;}
.ha_c01414{height:49.242656px;}
.hc_c01414{height:51.834375px;}
.h8_c01414{height:54.426094px;}
.h3_c01414{height:57.017812px;}
.h5_c01414{height:59.609531px;}
.hb_c01414{height:62.201250px;}
.h9_c01414{height:64.792969px;}
.h2_c01414{height:67.384687px;}
.h4_c01414{height:69.976406px;}
.h0_c01414{height:1154.880000px;}
.h1_c01414{height:1155.000000px;}
.w0_c01414{width:776.160000px;}
.w1_c01414{width:776.250000px;}
.x0_c01414{left:0.000000px;}
.x2_c01414{left:60.480000px;}
.x24_c01414{left:82.080000px;}
.xb_c01414{left:112.320000px;}
.x3_c01414{left:113.760000px;}
.x23_c01414{left:167.040000px;}
.x2d_c01414{left:188.640000px;}
.x28_c01414{left:198.720000px;}
.x7_c01414{left:200.880000px;}
.x2b_c01414{left:231.840000px;}
.x8_c01414{left:244.080000px;}
.x1d_c01414{left:254.160000px;}
.x4_c01414{left:264.960000px;}
.x2c_c01414{left:285.120000px;}
.x25_c01414{left:296.640000px;}
.x29_c01414{left:298.080000px;}
.x1e_c01414{left:308.160000px;}
.x5_c01414{left:317.520000px;}
.x6_c01414{left:362.880000px;}
.x18_c01414{left:372.240000px;}
.x9_c01414{left:373.680000px;}
.x2a_c01414{left:382.320000px;}
.x26_c01414{left:394.560000px;}
.x1f_c01414{left:404.640000px;}
.x2e_c01414{left:414.720000px;}
.xa_c01414{left:416.880000px;}
.x19_c01414{left:426.240000px;}
.x27_c01414{left:436.320000px;}
.x20_c01414{left:458.640000px;}
.x1a_c01414{left:555.120000px;}
.x16_c01414{left:587.520000px;}
.x11_c01414{left:588.960000px;}
.x30_c01414{left:607.680000px;}
.x17_c01414{left:609.120000px;}
.x2f_c01414{left:619.200000px;}
.xf_c01414{left:621.360000px;}
.x32_c01414{left:639.360000px;}
.x12_c01414{left:641.520000px;}
.xc_c01414{left:643.680000px;}
.x1b_c01414{left:672.480000px;}
.x14_c01414{left:673.920000px;}
.xd_c01414{left:675.360000px;}
.x1_c01414{left:680.400000px;}
.x21_c01414{left:683.280000px;}
.x34_c01414{left:705.600000px;}
.xe_c01414{left:708.480000px;}
.x31_c01414{left:714.960000px;}
.x1c_c01414{left:716.400000px;}
.x13_c01414{left:717.840000px;}
.x10_c01414{left:719.280000px;}
.x33_c01414{left:735.120000px;}
.x22_c01414{left:736.560000px;}
.x15_c01414{left:738.000000px;}
@media print{
.v0_c01414{vertical-align:0.000000pt;}
.ls0_c01414{letter-spacing:0.000000pt;}
.ws0_c01414{word-spacing:0.000000pt;}
.fse_c01414{font-size:28.160000pt;}
.fsc_c01414{font-size:30.720000pt;}
.fsd_c01414{font-size:35.840000pt;}
.fs5_c01414{font-size:38.400000pt;}
.fsb_c01414{font-size:43.520000pt;}
.fs4_c01414{font-size:46.080000pt;}
.fs8_c01414{font-size:48.640000pt;}
.fsa_c01414{font-size:51.200000pt;}
.fs6_c01414{font-size:53.760000pt;}
.fs1_c01414{font-size:56.320000pt;}
.fs3_c01414{font-size:58.880000pt;}
.fs9_c01414{font-size:61.440000pt;}
.fs7_c01414{font-size:64.000000pt;}
.fs0_c01414{font-size:66.560000pt;}
.fs2_c01414{font-size:69.120000pt;}
.y0_c01414{bottom:0.000000pt;}
.y5b_c01414{bottom:58.240000pt;}
.y5a_c01414{bottom:60.800000pt;}
.y59_c01414{bottom:62.080000pt;}
.y68_c01414{bottom:64.640000pt;}
.y58_c01414{bottom:97.280000pt;}
.y57_c01414{bottom:98.560000pt;}
.y56_c01414{bottom:100.480000pt;}
.y67_c01414{bottom:101.120000pt;}
.y53_c01414{bottom:135.680000pt;}
.y55_c01414{bottom:136.320000pt;}
.y54_c01414{bottom:137.600000pt;}
.y52_c01414{bottom:138.880000pt;}
.y65_c01414{bottom:139.520000pt;}
.y66_c01414{bottom:142.080000pt;}
.y51_c01414{bottom:174.080000pt;}
.y4f_c01414{bottom:177.280000pt;}
.y50_c01414{bottom:177.920000pt;}
.y64_c01414{bottom:178.560000pt;}
.y4e_c01414{bottom:213.120000pt;}
.y4d_c01414{bottom:215.680000pt;}
.y63_c01414{bottom:216.320000pt;}
.y4c_c01414{bottom:216.960000pt;}
.y49_c01414{bottom:251.520000pt;}
.y4b_c01414{bottom:252.160000pt;}
.y4a_c01414{bottom:254.080000pt;}
.y48_c01414{bottom:254.720000pt;}
.y60_c01414{bottom:255.360000pt;}
.y61_c01414{bottom:256.640000pt;}
.y62_c01414{bottom:257.280000pt;}
.y45_c01414{bottom:289.920000pt;}
.y47_c01414{bottom:290.560000pt;}
.y46_c01414{bottom:291.840000pt;}
.y5e_c01414{bottom:292.480000pt;}
.y44_c01414{bottom:293.120000pt;}
.y5f_c01414{bottom:293.760000pt;}
.y43_c01414{bottom:294.400000pt;}
.y42_c01414{bottom:328.320000pt;}
.y3f_c01414{bottom:329.600000pt;}
.y40_c01414{bottom:330.240000pt;}
.y5d_c01414{bottom:331.520000pt;}
.y41_c01414{bottom:332.160000pt;}
.y3d_c01414{bottom:366.720000pt;}
.y3e_c01414{bottom:367.360000pt;}
.y3b_c01414{bottom:369.280000pt;}
.y5c_c01414{bottom:369.920000pt;}
.y3c_c01414{bottom:370.560000pt;}
.y3a_c01414{bottom:405.120000pt;}
.y39_c01414{bottom:407.040000pt;}
.y37_c01414{bottom:447.360000pt;}
.y38_c01414{bottom:448.000000pt;}
.y36_c01414{bottom:491.520000pt;}
.y31_c01414{bottom:492.160000pt;}
.y30_c01414{bottom:493.440000pt;}
.y35_c01414{bottom:495.360000pt;}
.y34_c01414{bottom:496.000000pt;}
.y33_c01414{bottom:530.560000pt;}
.y2f_c01414{bottom:531.200000pt;}
.y2e_c01414{bottom:531.840000pt;}
.y2c_c01414{bottom:532.480000pt;}
.y2d_c01414{bottom:533.760000pt;}
.y29_c01414{bottom:570.240000pt;}
.y32_c01414{bottom:570.880000pt;}
.y28_c01414{bottom:571.520000pt;}
.y2b_c01414{bottom:572.160000pt;}
.y2a_c01414{bottom:572.800000pt;}
.y26_c01414{bottom:606.720000pt;}
.y27_c01414{bottom:608.000000pt;}
.y24_c01414{bottom:609.280000pt;}
.y23_c01414{bottom:609.920000pt;}
.y25_c01414{bottom:610.560000pt;}
.y21_c01414{bottom:646.400000pt;}
.y14_c01414{bottom:647.040000pt;}
.y13_c01414{bottom:648.320000pt;}
.y22_c01414{bottom:648.960000pt;}
.y20_c01414{bottom:649.600000pt;}
.y12_c01414{bottom:684.800000pt;}
.y1f_c01414{bottom:685.440000pt;}
.y1e_c01414{bottom:686.080000pt;}
.y11_c01414{bottom:686.720000pt;}
.y10_c01414{bottom:723.200000pt;}
.y1c_c01414{bottom:723.840000pt;}
.yf_c01414{bottom:725.120000pt;}
.y1d_c01414{bottom:725.760000pt;}
.yd_c01414{bottom:761.600000pt;}
.ye_c01414{bottom:762.880000pt;}
.y1b_c01414{bottom:763.520000pt;}
.yc_c01414{bottom:764.800000pt;}
.y1a_c01414{bottom:799.360000pt;}
.y9_c01414{bottom:800.640000pt;}
.ya_c01414{bottom:801.280000pt;}
.y19_c01414{bottom:801.920000pt;}
.y8_c01414{bottom:802.560000pt;}
.yb_c01414{bottom:803.200000pt;}
.y18_c01414{bottom:836.480000pt;}
.y7_c01414{bottom:838.400000pt;}
.y6_c01414{bottom:840.960000pt;}
.y17_c01414{bottom:875.520000pt;}
.y5_c01414{bottom:876.800000pt;}
.y4_c01414{bottom:880.000000pt;}
.y15_c01414{bottom:913.280000pt;}
.y3_c01414{bottom:914.560000pt;}
.y16_c01414{bottom:915.840000pt;}
.y2_c01414{bottom:916.480000pt;}
.y1_c01414{bottom:981.120000pt;}
.h10_c01414{height:25.341250pt;}
.he_c01414{height:27.645000pt;}
.hf_c01414{height:32.252500pt;}
.h7_c01414{height:34.556250pt;}
.hd_c01414{height:39.163750pt;}
.h6_c01414{height:41.467500pt;}
.ha_c01414{height:43.771250pt;}
.hc_c01414{height:46.075000pt;}
.h8_c01414{height:48.378750pt;}
.h3_c01414{height:50.682500pt;}
.h5_c01414{height:52.986250pt;}
.hb_c01414{height:55.290000pt;}
.h9_c01414{height:57.593750pt;}
.h2_c01414{height:59.897500pt;}
.h4_c01414{height:62.201250pt;}
.h0_c01414{height:1026.560000pt;}
.h1_c01414{height:1026.666667pt;}
.w0_c01414{width:689.920000pt;}
.w1_c01414{width:690.000000pt;}
.x0_c01414{left:0.000000pt;}
.x2_c01414{left:53.760000pt;}
.x24_c01414{left:72.960000pt;}
.xb_c01414{left:99.840000pt;}
.x3_c01414{left:101.120000pt;}
.x23_c01414{left:148.480000pt;}
.x2d_c01414{left:167.680000pt;}
.x28_c01414{left:176.640000pt;}
.x7_c01414{left:178.560000pt;}
.x2b_c01414{left:206.080000pt;}
.x8_c01414{left:216.960000pt;}
.x1d_c01414{left:225.920000pt;}
.x4_c01414{left:235.520000pt;}
.x2c_c01414{left:253.440000pt;}
.x25_c01414{left:263.680000pt;}
.x29_c01414{left:264.960000pt;}
.x1e_c01414{left:273.920000pt;}
.x5_c01414{left:282.240000pt;}
.x6_c01414{left:322.560000pt;}
.x18_c01414{left:330.880000pt;}
.x9_c01414{left:332.160000pt;}
.x2a_c01414{left:339.840000pt;}
.x26_c01414{left:350.720000pt;}
.x1f_c01414{left:359.680000pt;}
.x2e_c01414{left:368.640000pt;}
.xa_c01414{left:370.560000pt;}
.x19_c01414{left:378.880000pt;}
.x27_c01414{left:387.840000pt;}
.x20_c01414{left:407.680000pt;}
.x1a_c01414{left:493.440000pt;}
.x16_c01414{left:522.240000pt;}
.x11_c01414{left:523.520000pt;}
.x30_c01414{left:540.160000pt;}
.x17_c01414{left:541.440000pt;}
.x2f_c01414{left:550.400000pt;}
.xf_c01414{left:552.320000pt;}
.x32_c01414{left:568.320000pt;}
.x12_c01414{left:570.240000pt;}
.xc_c01414{left:572.160000pt;}
.x1b_c01414{left:597.760000pt;}
.x14_c01414{left:599.040000pt;}
.xd_c01414{left:600.320000pt;}
.x1_c01414{left:604.800000pt;}
.x21_c01414{left:607.360000pt;}
.x34_c01414{left:627.200000pt;}
.xe_c01414{left:629.760000pt;}
.x31_c01414{left:635.520000pt;}
.x1c_c01414{left:636.800000pt;}
.x13_c01414{left:638.080000pt;}
.x10_c01414{left:639.360000pt;}
.x33_c01414{left:653.440000pt;}
.x22_c01414{left:654.720000pt;}
.x15_c01414{left:656.000000pt;}
}





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

.ir_c01415:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01415{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01415;src:url('chunks/assets/font_b6ea34ee1b12475efb6cff14.woff2')format("woff");}.ff1_c01415{font-family:ff1_c01415;line-height:1.109863;font-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_c01415{transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);}
.m2d_c01415{transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);}
.m1e_c01415{transform:matrix(0.243025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243025,0.000000,0.000000,0.250000,0,0);}
.m42_c01415{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m36_c01415{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m19_c01415{transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);}
.m1d_c01415{transform:matrix(0.247450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247450,0.000000,0.000000,0.250000,0,0);}
.m38_c01415{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01415{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);}
.m31_c01415{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m16_c01415{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);}
.m30_c01415{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_c01415{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m2_c01415{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m1_c01415{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m18_c01415{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m0_c01415{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.mc_c01415{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01415{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m6_c01415{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01415{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);}
.m3f_c01415{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);}
.m28_c01415{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);}
.m29_c01415{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m20_c01415{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m22_c01415{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01415{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.md_c01415{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01415{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m23_c01415{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3_c01415{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.me_c01415{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m14_c01415{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m12_c01415{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m49_c01415{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m11_c01415{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m39_c01415{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);}
.m3e_c01415{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m8_c01415{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);}
.m2c_c01415{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01415{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.mb_c01415{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01415{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_c01415{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m5_c01415{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);}
.m3d_c01415{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m33_c01415{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m24_c01415{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m15_c01415{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);}
.m40_c01415{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);}
.m43_c01415{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);}
.m10_c01415{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m48_c01415{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m37_c01415{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01415{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m47_c01415{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);}
.m7_c01415{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m34_c01415{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);}
.m26_c01415{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m44_c01415{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m35_c01415{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01415{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.mf_c01415{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);}
.m9_c01415{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);}
.m13_c01415{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m41_c01415{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);}
.m45_c01415{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01415{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m17_c01415{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);}
.m25_c01415{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01415{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);}
.m1b_c01415{transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);}
.m32_c01415{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m46_c01415{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01415{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.m4a_c01415{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);}
.v0_c01415{vertical-align:0.000000px;}
.v2_c01415{vertical-align:2.880000px;}
.v1_c01415{vertical-align:11.520000px;}
.ls0_c01415{letter-spacing:0.000000px;}
.sc__c01415{text-shadow:none;}
.sc0_c01415{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01415{-webkit-text-stroke:0px transparent;}
.sc0_c01415{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01415{word-spacing:-6.805680px;}
.ws4_c01415{word-spacing:0.000000px;}
.ws1_c01415{word-spacing:5.486141px;}
.ws3_c01415{word-spacing:7.804800px;}
.ws0_c01415{word-spacing:9.210378px;}
.fc0_c01415{color:transparent;}
.fsd_c01415{font-size:34.560000px;}
.fse_c01415{font-size:40.320000px;}
.fs6_c01415{font-size:43.200000px;}
.fsc_c01415{font-size:48.960000px;}
.fs5_c01415{font-size:51.840000px;}
.fs8_c01415{font-size:54.720000px;}
.fs3_c01415{font-size:57.600000px;}
.fs9_c01415{font-size:60.480000px;}
.fs7_c01415{font-size:63.360000px;}
.fs4_c01415{font-size:66.240000px;}
.fs1_c01415{font-size:69.120000px;}
.fs2_c01415{font-size:72.000000px;}
.fsa_c01415{font-size:74.880000px;}
.fs0_c01415{font-size:77.760000px;}
.fsb_c01415{font-size:80.640000px;}
.y0_c01415{bottom:0.000000px;}
.y57_c01415{bottom:85.680000px;}
.y56_c01415{bottom:87.120000px;}
.y60_c01415{bottom:92.160000px;}
.y62_c01415{bottom:93.600000px;}
.y61_c01415{bottom:94.320000px;}
.y55_c01415{bottom:128.880000px;}
.y54_c01415{bottom:131.760000px;}
.y5e_c01415{bottom:134.640000px;}
.y5f_c01415{bottom:135.360000px;}
.y5d_c01415{bottom:136.800000px;}
.y50_c01415{bottom:172.080000px;}
.y4f_c01415{bottom:174.240000px;}
.y53_c01415{bottom:174.960000px;}
.y51_c01415{bottom:176.400000px;}
.y52_c01415{bottom:177.120000px;}
.y5a_c01415{bottom:177.840000px;}
.y5c_c01415{bottom:180.000000px;}
.y5b_c01415{bottom:180.720000px;}
.y64_c01415{bottom:214.560000px;}
.y63_c01415{bottom:217.440000px;}
.y58_c01415{bottom:220.320000px;}
.y59_c01415{bottom:221.040000px;}
.y4e_c01415{bottom:262.080000px;}
.y40_c01415{bottom:312.480000px;}
.y43_c01415{bottom:314.640000px;}
.y3f_c01415{bottom:315.360000px;}
.y41_c01415{bottom:316.800000px;}
.y42_c01415{bottom:317.520000px;}
.y49_c01415{bottom:318.240000px;}
.y4a_c01415{bottom:318.960000px;}
.y4d_c01415{bottom:356.400000px;}
.y4c_c01415{bottom:357.120000px;}
.y4b_c01415{bottom:358.560000px;}
.y47_c01415{bottom:360.000000px;}
.y48_c01415{bottom:361.440000px;}
.y44_c01415{bottom:403.200000px;}
.y46_c01415{bottom:403.920000px;}
.y45_c01415{bottom:404.640000px;}
.y3d_c01415{bottom:444.240000px;}
.y3e_c01415{bottom:446.400000px;}
.y39_c01415{bottom:475.920000px;}
.y38_c01415{bottom:478.080000px;}
.y3a_c01415{bottom:479.520000px;}
.y3c_c01415{bottom:480.960000px;}
.y3b_c01415{bottom:481.680000px;}
.y35_c01415{bottom:520.560000px;}
.y33_c01415{bottom:521.280000px;}
.y34_c01415{bottom:522.000000px;}
.y37_c01415{bottom:522.720000px;}
.y36_c01415{bottom:523.440000px;}
.y32_c01415{bottom:565.920000px;}
.y30_c01415{bottom:567.360000px;}
.y31_c01415{bottom:568.080000px;}
.y25_c01415{bottom:606.960000px;}
.y24_c01415{bottom:607.680000px;}
.y22_c01415{bottom:638.640000px;}
.y2e_c01415{bottom:640.080000px;}
.y21_c01415{bottom:640.800000px;}
.y2f_c01415{bottom:641.520000px;}
.y23_c01415{bottom:642.960000px;}
.y2d_c01415{bottom:683.280000px;}
.y2c_c01415{bottom:686.160000px;}
.y1d_c01415{bottom:724.320000px;}
.y1c_c01415{bottom:725.040000px;}
.y1b_c01415{bottom:725.760000px;}
.y28_c01415{bottom:726.480000px;}
.y2a_c01415{bottom:727.200000px;}
.y2b_c01415{bottom:728.640000px;}
.y29_c01415{bottom:729.360000px;}
.y19_c01415{bottom:768.240000px;}
.y18_c01415{bottom:768.960000px;}
.y26_c01415{bottom:769.680000px;}
.y27_c01415{bottom:770.400000px;}
.y1a_c01415{bottom:771.840000px;}
.y16_c01415{bottom:810.720000px;}
.y17_c01415{bottom:811.440000px;}
.y1f_c01415{bottom:812.880000px;}
.y15_c01415{bottom:813.600000px;}
.y1e_c01415{bottom:814.320000px;}
.y20_c01415{bottom:815.040000px;}
.y12_c01415{bottom:853.920000px;}
.y13_c01415{bottom:854.640000px;}
.y14_c01415{bottom:855.360000px;}
.y10_c01415{bottom:856.080000px;}
.y11_c01415{bottom:857.520000px;}
.ye_c01415{bottom:897.120000px;}
.yc_c01415{bottom:897.840000px;}
.yf_c01415{bottom:898.560000px;}
.yb_c01415{bottom:899.280000px;}
.yd_c01415{bottom:900.720000px;}
.ya_c01415{bottom:939.600000px;}
.y6_c01415{bottom:941.040000px;}
.y9_c01415{bottom:941.760000px;}
.y7_c01415{bottom:942.480000px;}
.y5_c01415{bottom:943.200000px;}
.y8_c01415{bottom:943.920000px;}
.y3_c01415{bottom:984.240000px;}
.y4_c01415{bottom:984.960000px;}
.y2_c01415{bottom:986.400000px;}
.y1_c01415{bottom:1090.800000px;}
.hf_c01415{height:31.100625px;}
.h10_c01415{height:36.284062px;}
.h8_c01415{height:38.875781px;}
.he_c01415{height:44.059219px;}
.h7_c01415{height:46.650937px;}
.ha_c01415{height:49.242656px;}
.h5_c01415{height:51.834375px;}
.hb_c01415{height:54.426094px;}
.h9_c01415{height:57.017812px;}
.h6_c01415{height:59.609531px;}
.h11_c01415{height:59.897812px;}
.h3_c01415{height:62.201250px;}
.h4_c01415{height:64.792969px;}
.hc_c01415{height:67.384687px;}
.h2_c01415{height:69.976406px;}
.hd_c01415{height:72.568125px;}
.h0_c01415{height:1152.720000px;}
.h1_c01415{height:1152.750000px;}
.w1_c01415{width:773.250000px;}
.w0_c01415{width:773.280000px;}
.x0_c01415{left:0.000000px;}
.x2_c01415{left:49.680000px;}
.x27_c01415{left:51.120000px;}
.x29_c01415{left:52.560000px;}
.x34_c01415{left:54.000000px;}
.x25_c01415{left:72.720000px;}
.x2f_c01415{left:84.240000px;}
.x3_c01415{left:102.960000px;}
.x26_c01415{left:104.400000px;}
.x2a_c01415{left:114.480000px;}
.x38_c01415{left:115.920000px;}
.x21_c01415{left:157.680000px;}
.x1b_c01415{left:179.280000px;}
.x16_c01415{left:190.080000px;}
.x2d_c01415{left:201.600000px;}
.x11_c01415{left:222.480000px;}
.x18_c01415{left:233.280000px;}
.x6_c01415{left:244.080000px;}
.x2b_c01415{left:245.520000px;}
.x2e_c01415{left:265.680000px;}
.x12_c01415{left:277.200000px;}
.x19_c01415{left:285.840000px;}
.x30_c01415{left:288.000000px;}
.x7_c01415{left:295.920000px;}
.x31_c01415{left:299.520000px;}
.x1c_c01415{left:308.880000px;}
.x32_c01415{left:311.040000px;}
.x1a_c01415{left:330.480000px;}
.x8_c01415{left:341.280000px;}
.x33_c01415{left:342.720000px;}
.x13_c01415{left:361.440000px;}
.x20_c01415{left:362.880000px;}
.x9_c01415{left:384.480000px;}
.x2c_c01415{left:395.280000px;}
.x14_c01415{left:416.160000px;}
.xa_c01415{left:425.520000px;}
.x28_c01415{left:437.760000px;}
.xb_c01415{left:469.440000px;}
.xc_c01415{left:522.720000px;}
.x24_c01415{left:556.560000px;}
.x23_c01415{left:567.360000px;}
.x1d_c01415{left:577.439625px;}
.x4_c01415{left:598.320000px;}
.x15_c01415{left:609.120000px;}
.x35_c01415{left:622.800000px;}
.xd_c01415{left:631.440000px;}
.x37_c01415{left:632.880000px;}
.x17_c01415{left:654.480000px;}
.x1_c01415{left:656.640000px;}
.x1e_c01415{left:663.120000px;}
.xe_c01415{left:664.560000px;}
.x1f_c01415{left:696.240000px;}
.x36_c01415{left:698.400000px;}
.xf_c01415{left:706.320000px;}
.x5_c01415{left:708.480000px;}
.x22_c01415{left:726.480000px;}
.x10_c01415{left:727.920000px;}
@media print{
.v0_c01415{vertical-align:0.000000pt;}
.v2_c01415{vertical-align:2.560000pt;}
.v1_c01415{vertical-align:10.240000pt;}
.ls0_c01415{letter-spacing:0.000000pt;}
.ws2_c01415{word-spacing:-6.049493pt;}
.ws4_c01415{word-spacing:0.000000pt;}
.ws1_c01415{word-spacing:4.876570pt;}
.ws3_c01415{word-spacing:6.937600pt;}
.ws0_c01415{word-spacing:8.187003pt;}
.fsd_c01415{font-size:30.720000pt;}
.fse_c01415{font-size:35.840000pt;}
.fs6_c01415{font-size:38.400000pt;}
.fsc_c01415{font-size:43.520000pt;}
.fs5_c01415{font-size:46.080000pt;}
.fs8_c01415{font-size:48.640000pt;}
.fs3_c01415{font-size:51.200000pt;}
.fs9_c01415{font-size:53.760000pt;}
.fs7_c01415{font-size:56.320000pt;}
.fs4_c01415{font-size:58.880000pt;}
.fs1_c01415{font-size:61.440000pt;}
.fs2_c01415{font-size:64.000000pt;}
.fsa_c01415{font-size:66.560000pt;}
.fs0_c01415{font-size:69.120000pt;}
.fsb_c01415{font-size:71.680000pt;}
.y0_c01415{bottom:0.000000pt;}
.y57_c01415{bottom:76.160000pt;}
.y56_c01415{bottom:77.440000pt;}
.y60_c01415{bottom:81.920000pt;}
.y62_c01415{bottom:83.200000pt;}
.y61_c01415{bottom:83.840000pt;}
.y55_c01415{bottom:114.560000pt;}
.y54_c01415{bottom:117.120000pt;}
.y5e_c01415{bottom:119.680000pt;}
.y5f_c01415{bottom:120.320000pt;}
.y5d_c01415{bottom:121.600000pt;}
.y50_c01415{bottom:152.960000pt;}
.y4f_c01415{bottom:154.880000pt;}
.y53_c01415{bottom:155.520000pt;}
.y51_c01415{bottom:156.800000pt;}
.y52_c01415{bottom:157.440000pt;}
.y5a_c01415{bottom:158.080000pt;}
.y5c_c01415{bottom:160.000000pt;}
.y5b_c01415{bottom:160.640000pt;}
.y64_c01415{bottom:190.720000pt;}
.y63_c01415{bottom:193.280000pt;}
.y58_c01415{bottom:195.840000pt;}
.y59_c01415{bottom:196.480000pt;}
.y4e_c01415{bottom:232.960000pt;}
.y40_c01415{bottom:277.760000pt;}
.y43_c01415{bottom:279.680000pt;}
.y3f_c01415{bottom:280.320000pt;}
.y41_c01415{bottom:281.600000pt;}
.y42_c01415{bottom:282.240000pt;}
.y49_c01415{bottom:282.880000pt;}
.y4a_c01415{bottom:283.520000pt;}
.y4d_c01415{bottom:316.800000pt;}
.y4c_c01415{bottom:317.440000pt;}
.y4b_c01415{bottom:318.720000pt;}
.y47_c01415{bottom:320.000000pt;}
.y48_c01415{bottom:321.280000pt;}
.y44_c01415{bottom:358.400000pt;}
.y46_c01415{bottom:359.040000pt;}
.y45_c01415{bottom:359.680000pt;}
.y3d_c01415{bottom:394.880000pt;}
.y3e_c01415{bottom:396.800000pt;}
.y39_c01415{bottom:423.040000pt;}
.y38_c01415{bottom:424.960000pt;}
.y3a_c01415{bottom:426.240000pt;}
.y3c_c01415{bottom:427.520000pt;}
.y3b_c01415{bottom:428.160000pt;}
.y35_c01415{bottom:462.720000pt;}
.y33_c01415{bottom:463.360000pt;}
.y34_c01415{bottom:464.000000pt;}
.y37_c01415{bottom:464.640000pt;}
.y36_c01415{bottom:465.280000pt;}
.y32_c01415{bottom:503.040000pt;}
.y30_c01415{bottom:504.320000pt;}
.y31_c01415{bottom:504.960000pt;}
.y25_c01415{bottom:539.520000pt;}
.y24_c01415{bottom:540.160000pt;}
.y22_c01415{bottom:567.680000pt;}
.y2e_c01415{bottom:568.960000pt;}
.y21_c01415{bottom:569.600000pt;}
.y2f_c01415{bottom:570.240000pt;}
.y23_c01415{bottom:571.520000pt;}
.y2d_c01415{bottom:607.360000pt;}
.y2c_c01415{bottom:609.920000pt;}
.y1d_c01415{bottom:643.840000pt;}
.y1c_c01415{bottom:644.480000pt;}
.y1b_c01415{bottom:645.120000pt;}
.y28_c01415{bottom:645.760000pt;}
.y2a_c01415{bottom:646.400000pt;}
.y2b_c01415{bottom:647.680000pt;}
.y29_c01415{bottom:648.320000pt;}
.y19_c01415{bottom:682.880000pt;}
.y18_c01415{bottom:683.520000pt;}
.y26_c01415{bottom:684.160000pt;}
.y27_c01415{bottom:684.800000pt;}
.y1a_c01415{bottom:686.080000pt;}
.y16_c01415{bottom:720.640000pt;}
.y17_c01415{bottom:721.280000pt;}
.y1f_c01415{bottom:722.560000pt;}
.y15_c01415{bottom:723.200000pt;}
.y1e_c01415{bottom:723.840000pt;}
.y20_c01415{bottom:724.480000pt;}
.y12_c01415{bottom:759.040000pt;}
.y13_c01415{bottom:759.680000pt;}
.y14_c01415{bottom:760.320000pt;}
.y10_c01415{bottom:760.960000pt;}
.y11_c01415{bottom:762.240000pt;}
.ye_c01415{bottom:797.440000pt;}
.yc_c01415{bottom:798.080000pt;}
.yf_c01415{bottom:798.720000pt;}
.yb_c01415{bottom:799.360000pt;}
.yd_c01415{bottom:800.640000pt;}
.ya_c01415{bottom:835.200000pt;}
.y6_c01415{bottom:836.480000pt;}
.y9_c01415{bottom:837.120000pt;}
.y7_c01415{bottom:837.760000pt;}
.y5_c01415{bottom:838.400000pt;}
.y8_c01415{bottom:839.040000pt;}
.y3_c01415{bottom:874.880000pt;}
.y4_c01415{bottom:875.520000pt;}
.y2_c01415{bottom:876.800000pt;}
.y1_c01415{bottom:969.600000pt;}
.hf_c01415{height:27.645000pt;}
.h10_c01415{height:32.252500pt;}
.h8_c01415{height:34.556250pt;}
.he_c01415{height:39.163750pt;}
.h7_c01415{height:41.467500pt;}
.ha_c01415{height:43.771250pt;}
.h5_c01415{height:46.075000pt;}
.hb_c01415{height:48.378750pt;}
.h9_c01415{height:50.682500pt;}
.h6_c01415{height:52.986250pt;}
.h11_c01415{height:53.242500pt;}
.h3_c01415{height:55.290000pt;}
.h4_c01415{height:57.593750pt;}
.hc_c01415{height:59.897500pt;}
.h2_c01415{height:62.201250pt;}
.hd_c01415{height:64.505000pt;}
.h0_c01415{height:1024.640000pt;}
.h1_c01415{height:1024.666667pt;}
.w1_c01415{width:687.333333pt;}
.w0_c01415{width:687.360000pt;}
.x0_c01415{left:0.000000pt;}
.x2_c01415{left:44.160000pt;}
.x27_c01415{left:45.440000pt;}
.x29_c01415{left:46.720000pt;}
.x34_c01415{left:48.000000pt;}
.x25_c01415{left:64.640000pt;}
.x2f_c01415{left:74.880000pt;}
.x3_c01415{left:91.520000pt;}
.x26_c01415{left:92.800000pt;}
.x2a_c01415{left:101.760000pt;}
.x38_c01415{left:103.040000pt;}
.x21_c01415{left:140.160000pt;}
.x1b_c01415{left:159.360000pt;}
.x16_c01415{left:168.960000pt;}
.x2d_c01415{left:179.200000pt;}
.x11_c01415{left:197.760000pt;}
.x18_c01415{left:207.360000pt;}
.x6_c01415{left:216.960000pt;}
.x2b_c01415{left:218.240000pt;}
.x2e_c01415{left:236.160000pt;}
.x12_c01415{left:246.400000pt;}
.x19_c01415{left:254.080000pt;}
.x30_c01415{left:256.000000pt;}
.x7_c01415{left:263.040000pt;}
.x31_c01415{left:266.240000pt;}
.x1c_c01415{left:274.560000pt;}
.x32_c01415{left:276.480000pt;}
.x1a_c01415{left:293.760000pt;}
.x8_c01415{left:303.360000pt;}
.x33_c01415{left:304.640000pt;}
.x13_c01415{left:321.280000pt;}
.x20_c01415{left:322.560000pt;}
.x9_c01415{left:341.760000pt;}
.x2c_c01415{left:351.360000pt;}
.x14_c01415{left:369.920000pt;}
.xa_c01415{left:378.240000pt;}
.x28_c01415{left:389.120000pt;}
.xb_c01415{left:417.280000pt;}
.xc_c01415{left:464.640000pt;}
.x24_c01415{left:494.720000pt;}
.x23_c01415{left:504.320000pt;}
.x1d_c01415{left:513.279667pt;}
.x4_c01415{left:531.840000pt;}
.x15_c01415{left:541.440000pt;}
.x35_c01415{left:553.600000pt;}
.xd_c01415{left:561.280000pt;}
.x37_c01415{left:562.560000pt;}
.x17_c01415{left:581.760000pt;}
.x1_c01415{left:583.680000pt;}
.x1e_c01415{left:589.440000pt;}
.xe_c01415{left:590.720000pt;}
.x1f_c01415{left:618.880000pt;}
.x36_c01415{left:620.800000pt;}
.xf_c01415{left:627.840000pt;}
.x5_c01415{left:629.760000pt;}
.x22_c01415{left:645.760000pt;}
.x10_c01415{left:647.040000pt;}
}





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

.ir_c01416:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01416{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01416;src:url('chunks/assets/font_d5e24ac2eda3e5db28cc93bc.woff2')format("woff");}.ff1_c01416{font-family:ff1_c01416;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3d_c01416{transform:matrix(0.207050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207050,0.000000,0.000000,0.250000,0,0);}
.m4f_c01416{transform:matrix(0.208625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208625,0.000000,0.000000,0.250000,0,0);}
.m4a_c01416{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m11_c01416{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m4e_c01416{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);}
.m39_c01416{transform:matrix(0.227925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227925,0.000000,0.000000,0.250000,0,0);}
.m2c_c01416{transform:matrix(0.229900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229900,0.000000,0.000000,0.250000,0,0);}
.m28_c01416{transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);}
.m32_c01416{transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);}
.m21_c01416{transform:matrix(0.236550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236550,0.000000,0.000000,0.250000,0,0);}
.m37_c01416{transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);}
.m50_c01416{transform:matrix(0.240975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240975,0.000000,0.000000,0.250000,0,0);}
.m13_c01416{transform:matrix(0.243900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243900,0.000000,0.000000,0.250000,0,0);}
.m54_c01416{transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);}
.m17_c01416{transform:matrix(0.245850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245850,0.000000,0.000000,0.250000,0,0);}
.m45_c01416{transform:matrix(0.247675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247675,0.000000,0.000000,0.250000,0,0);}
.m30_c01416{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m38_c01416{transform:matrix(0.248800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248800,0.000000,0.000000,0.250000,0,0);}
.m3a_c01416{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);}
.m2a_c01416{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m2_c01416{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);}
.m4b_c01416{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01416{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);}
.m4c_c01416{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);}
.m4d_c01416{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_c01416{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01416{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m5_c01416{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);}
.m2e_c01416{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.me_c01416{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.ma_c01416{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m9_c01416{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m18_c01416{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m12_c01416{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m35_c01416{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m14_c01416{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01416{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01416{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m27_c01416{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m4_c01416{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mc_c01416{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01416{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m53_c01416{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m40_c01416{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mb_c01416{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m6_c01416{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01416{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m46_c01416{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m15_c01416{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);}
.m47_c01416{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m34_c01416{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m0_c01416{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);}
.m33_c01416{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01416{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);}
.m10_c01416{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);}
.m44_c01416{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m22_c01416{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m36_c01416{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m1_c01416{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01416{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m29_c01416{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);}
.m43_c01416{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);}
.m48_c01416{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);}
.m3c_c01416{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);}
.m51_c01416{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.md_c01416{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m52_c01416{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01416{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);}
.m24_c01416{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m20_c01416{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);}
.m2d_c01416{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m26_c01416{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m42_c01416{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m19_c01416{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_c01416{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m16_c01416{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01416{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);}
.m1e_c01416{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m41_c01416{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m23_c01416{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);}
.mf_c01416{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m7_c01416{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m3_c01416{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m49_c01416{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m31_c01416{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);}
.v3_c01416{vertical-align:-11.520000px;}
.v2_c01416{vertical-align:-2.880000px;}
.v0_c01416{vertical-align:0.000000px;}
.v1_c01416{vertical-align:2.880000px;}
.ls0_c01416{letter-spacing:0.000000px;}
.sc__c01416{text-shadow:none;}
.sc0_c01416{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01416{-webkit-text-stroke:0px transparent;}
.sc0_c01416{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01416{word-spacing:-30.222720px;}
.ws0_c01416{word-spacing:-7.258080px;}
.ws3_c01416{word-spacing:-5.122080px;}
.ws2_c01416{word-spacing:-2.059200px;}
.ws4_c01416{word-spacing:0.000000px;}
._0_c01416{width:1.777200px;}
.fc0_c01416{color:transparent;}
.fs10_c01416{font-size:20.160000px;}
.fs12_c01416{font-size:25.920000px;}
.fs9_c01416{font-size:37.440000px;}
.fs4_c01416{font-size:40.320000px;}
.fse_c01416{font-size:43.200000px;}
.fsf_c01416{font-size:46.080000px;}
.fsd_c01416{font-size:48.960000px;}
.fs2_c01416{font-size:51.840000px;}
.fsb_c01416{font-size:54.720000px;}
.fs8_c01416{font-size:57.600000px;}
.fs1_c01416{font-size:60.480000px;}
.fsa_c01416{font-size:63.360000px;}
.fsc_c01416{font-size:66.240000px;}
.fs3_c01416{font-size:69.120000px;}
.fs6_c01416{font-size:72.000000px;}
.fs7_c01416{font-size:74.880000px;}
.fs0_c01416{font-size:77.760000px;}
.fs5_c01416{font-size:80.640000px;}
.fs11_c01416{font-size:83.520000px;}
.y0_c01416{bottom:0.000000px;}
.y77_c01416{bottom:107.280000px;}
.y76_c01416{bottom:110.880000px;}
.y74_c01416{bottom:113.760000px;}
.y75_c01416{bottom:116.640000px;}
.y6f_c01416{bottom:150.480000px;}
.y6d_c01416{bottom:152.640000px;}
.y70_c01416{bottom:154.080000px;}
.y71_c01416{bottom:155.520000px;}
.y6e_c01416{bottom:156.240000px;}
.y72_c01416{bottom:157.680000px;}
.y73_c01416{bottom:161.280000px;}
.y69_c01416{bottom:193.680000px;}
.y68_c01416{bottom:194.400000px;}
.y67_c01416{bottom:196.560000px;}
.y6a_c01416{bottom:199.440000px;}
.y6c_c01416{bottom:200.160000px;}
.y6b_c01416{bottom:200.880000px;}
.y66_c01416{bottom:236.880000px;}
.y65_c01416{bottom:240.480000px;}
.y61_c01416{bottom:242.640000px;}
.y62_c01416{bottom:244.080000px;}
.y60_c01416{bottom:245.520000px;}
.y63_c01416{bottom:246.240000px;}
.y58_c01416{bottom:282.240000px;}
.y57_c01416{bottom:283.680000px;}
.y59_c01416{bottom:284.400000px;}
.y5f_c01416{bottom:286.560000px;}
.y5d_c01416{bottom:288.000000px;}
.y5e_c01416{bottom:288.720000px;}
.y52_c01416{bottom:324.000000px;}
.y54_c01416{bottom:326.160000px;}
.y53_c01416{bottom:326.880000px;}
.y51_c01416{bottom:327.600000px;}
.y64_c01416{bottom:328.320000px;}
.y5b_c01416{bottom:329.040000px;}
.y5c_c01416{bottom:330.480000px;}
.y5a_c01416{bottom:331.920000px;}
.y4f_c01416{bottom:367.920000px;}
.y50_c01416{bottom:372.240000px;}
.y4e_c01416{bottom:401.040000px;}
.y4c_c01416{bottom:401.760000px;}
.y4b_c01416{bottom:403.200000px;}
.y4d_c01416{bottom:403.920000px;}
.y56_c01416{bottom:404.640000px;}
.y55_c01416{bottom:406.080000px;}
.y47_c01416{bottom:442.800000px;}
.y46_c01416{bottom:445.680000px;}
.y4a_c01416{bottom:446.400000px;}
.y49_c01416{bottom:447.120000px;}
.y43_c01416{bottom:486.720000px;}
.y45_c01416{bottom:487.440000px;}
.y42_c01416{bottom:489.600000px;}
.y44_c01416{bottom:490.320000px;}
.y48_c01416{bottom:491.040000px;}
.y2f_c01416{bottom:530.640000px;}
.y2c_c01416{bottom:562.320000px;}
.y2d_c01416{bottom:563.040000px;}
.y2b_c01416{bottom:564.480000px;}
.y38_c01416{bottom:565.200000px;}
.y2e_c01416{bottom:565.920000px;}
.y3a_c01416{bottom:566.640000px;}
.y39_c01416{bottom:569.520000px;}
.y3f_c01416{bottom:605.520000px;}
.y41_c01416{bottom:606.960000px;}
.y40_c01416{bottom:607.680000px;}
.y36_c01416{bottom:608.400000px;}
.y37_c01416{bottom:609.120000px;}
.y3e_c01416{bottom:648.000000px;}
.y3d_c01416{bottom:650.880000px;}
.y33_c01416{bottom:653.040000px;}
.y34_c01416{bottom:653.760000px;}
.y35_c01416{bottom:654.480000px;}
.y3c_c01416{bottom:692.640000px;}
.y31_c01416{bottom:693.360000px;}
.y32_c01416{bottom:694.800000px;}
.y3b_c01416{bottom:696.240000px;}
.y30_c01416{bottom:696.960000px;}
.y2a_c01416{bottom:735.840000px;}
.y27_c01416{bottom:738.000000px;}
.y28_c01416{bottom:739.440000px;}
.y29_c01416{bottom:740.160000px;}
.y23_c01416{bottom:768.240000px;}
.y22_c01416{bottom:770.400000px;}
.y26_c01416{bottom:771.120000px;}
.y25_c01416{bottom:771.840000px;}
.y24_c01416{bottom:772.560000px;}
.y1d_c01416{bottom:811.440000px;}
.y1e_c01416{bottom:812.160000px;}
.y21_c01416{bottom:812.880000px;}
.y1f_c01416{bottom:813.600000px;}
.y1c_c01416{bottom:814.320000px;}
.y20_c01416{bottom:815.760000px;}
.y19_c01416{bottom:854.640000px;}
.y17_c01416{bottom:856.800000px;}
.y1b_c01416{bottom:857.520000px;}
.y1a_c01416{bottom:858.240000px;}
.y18_c01416{bottom:858.960000px;}
.y14_c01416{bottom:897.840000px;}
.y16_c01416{bottom:900.000000px;}
.y13_c01416{bottom:901.440000px;}
.y15_c01416{bottom:902.160000px;}
.y10_c01416{bottom:939.600000px;}
.yd_c01416{bottom:941.040000px;}
.y11_c01416{bottom:941.760000px;}
.yf_c01416{bottom:942.480000px;}
.y12_c01416{bottom:943.200000px;}
.yc_c01416{bottom:943.920000px;}
.ye_c01416{bottom:945.360000px;}
.y9_c01416{bottom:983.520000px;}
.yb_c01416{bottom:984.960000px;}
.ya_c01416{bottom:985.680000px;}
.y8_c01416{bottom:987.120000px;}
.y7_c01416{bottom:987.840000px;}
.y3_c01416{bottom:1027.440000px;}
.y5_c01416{bottom:1028.160000px;}
.y2_c01416{bottom:1028.880000px;}
.y6_c01416{bottom:1029.600000px;}
.y4_c01416{bottom:1031.040000px;}
.y1_c01416{bottom:1104.480000px;}
.h12_c01416{height:18.142031px;}
.h14_c01416{height:23.325469px;}
.hb_c01416{height:33.692344px;}
.h6_c01416{height:36.284062px;}
.h11_c01416{height:38.875781px;}
.h10_c01416{height:44.059219px;}
.h4_c01416{height:46.650937px;}
.hd_c01416{height:49.242656px;}
.ha_c01416{height:51.834375px;}
.h3_c01416{height:54.426094px;}
.hc_c01416{height:57.017812px;}
.he_c01416{height:59.609531px;}
.h5_c01416{height:62.201250px;}
.h8_c01416{height:64.792969px;}
.h9_c01416{height:67.384687px;}
.h2_c01416{height:69.976406px;}
.hf_c01416{height:70.264688px;}
.h7_c01416{height:72.568125px;}
.h15_c01416{height:72.856406px;}
.h13_c01416{height:75.159844px;}
.h0_c01416{height:1154.880000px;}
.h1_c01416{height:1155.000000px;}
.w0_c01416{width:776.160000px;}
.w1_c01416{width:776.250000px;}
.x0_c01416{left:0.000000px;}
.x2_c01416{left:51.840000px;}
.x1d_c01416{left:53.280000px;}
.x2d_c01416{left:54.720000px;}
.x7_c01416{left:84.240000px;}
.x2e_c01416{left:95.040000px;}
.x3_c01416{left:114.480000px;}
.x13_c01416{left:116.640000px;}
.x32_c01416{left:118.080000px;}
.x1f_c01416{left:170.640000px;}
.x11_c01416{left:191.520000px;}
.x14_c01416{left:202.320000px;}
.x28_c01416{left:203.760000px;}
.x2f_c01416{left:213.120000px;}
.x2c_c01416{left:215.280000px;}
.x1c_c01416{left:246.240000px;}
.x15_c01416{left:254.880000px;}
.xb_c01416{left:256.320000px;}
.x30_c01416{left:258.480000px;}
.x2a_c01416{left:267.840000px;}
.x8_c01416{left:288.720000px;}
.xc_c01416{left:298.080000px;}
.x16_c01416{left:300.240000px;}
.x26_c01416{left:311.040000px;}
.x31_c01416{left:312.480000px;}
.x25_c01416{left:332.640000px;}
.x17_c01416{left:342.720000px;}
.x27_c01416{left:354.240000px;}
.x12_c01416{left:374.400000px;}
.xd_c01416{left:385.920000px;}
.x9_c01416{left:407.520000px;}
.x18_c01416{left:438.480000px;}
.x1e_c01416{left:470.160000px;}
.x19_c01416{left:493.200000px;}
.x1a_c01416{left:535.680000px;}
.x23_c01416{left:568.080000px;}
.x20_c01416{left:578.880000px;}
.x24_c01416{left:588.960000px;}
.xa_c01416{left:600.480000px;}
.x4_c01416{left:612.000000px;}
.x21_c01416{left:624.240000px;}
.x1b_c01416{left:632.160000px;}
.x5_c01416{left:633.600000px;}
.x22_c01416{left:656.640000px;}
.xe_c01416{left:665.280000px;}
.x2b_c01416{left:676.080000px;}
.x1_c01416{left:696.240000px;}
.x29_c01416{left:697.680000px;}
.x6_c01416{left:708.480000px;}
.xf_c01416{left:728.640000px;}
.x10_c01416{left:730.080000px;}
@media print{
.v3_c01416{vertical-align:-10.240000pt;}
.v2_c01416{vertical-align:-2.560000pt;}
.v0_c01416{vertical-align:0.000000pt;}
.v1_c01416{vertical-align:2.560000pt;}
.ls0_c01416{letter-spacing:0.000000pt;}
.ws1_c01416{word-spacing:-26.864640pt;}
.ws0_c01416{word-spacing:-6.451627pt;}
.ws3_c01416{word-spacing:-4.552960pt;}
.ws2_c01416{word-spacing:-1.830400pt;}
.ws4_c01416{word-spacing:0.000000pt;}
._0_c01416{width:1.579733pt;}
.fs10_c01416{font-size:17.920000pt;}
.fs12_c01416{font-size:23.040000pt;}
.fs9_c01416{font-size:33.280000pt;}
.fs4_c01416{font-size:35.840000pt;}
.fse_c01416{font-size:38.400000pt;}
.fsf_c01416{font-size:40.960000pt;}
.fsd_c01416{font-size:43.520000pt;}
.fs2_c01416{font-size:46.080000pt;}
.fsb_c01416{font-size:48.640000pt;}
.fs8_c01416{font-size:51.200000pt;}
.fs1_c01416{font-size:53.760000pt;}
.fsa_c01416{font-size:56.320000pt;}
.fsc_c01416{font-size:58.880000pt;}
.fs3_c01416{font-size:61.440000pt;}
.fs6_c01416{font-size:64.000000pt;}
.fs7_c01416{font-size:66.560000pt;}
.fs0_c01416{font-size:69.120000pt;}
.fs5_c01416{font-size:71.680000pt;}
.fs11_c01416{font-size:74.240000pt;}
.y0_c01416{bottom:0.000000pt;}
.y77_c01416{bottom:95.360000pt;}
.y76_c01416{bottom:98.560000pt;}
.y74_c01416{bottom:101.120000pt;}
.y75_c01416{bottom:103.680000pt;}
.y6f_c01416{bottom:133.760000pt;}
.y6d_c01416{bottom:135.680000pt;}
.y70_c01416{bottom:136.960000pt;}
.y71_c01416{bottom:138.240000pt;}
.y6e_c01416{bottom:138.880000pt;}
.y72_c01416{bottom:140.160000pt;}
.y73_c01416{bottom:143.360000pt;}
.y69_c01416{bottom:172.160000pt;}
.y68_c01416{bottom:172.800000pt;}
.y67_c01416{bottom:174.720000pt;}
.y6a_c01416{bottom:177.280000pt;}
.y6c_c01416{bottom:177.920000pt;}
.y6b_c01416{bottom:178.560000pt;}
.y66_c01416{bottom:210.560000pt;}
.y65_c01416{bottom:213.760000pt;}
.y61_c01416{bottom:215.680000pt;}
.y62_c01416{bottom:216.960000pt;}
.y60_c01416{bottom:218.240000pt;}
.y63_c01416{bottom:218.880000pt;}
.y58_c01416{bottom:250.880000pt;}
.y57_c01416{bottom:252.160000pt;}
.y59_c01416{bottom:252.800000pt;}
.y5f_c01416{bottom:254.720000pt;}
.y5d_c01416{bottom:256.000000pt;}
.y5e_c01416{bottom:256.640000pt;}
.y52_c01416{bottom:288.000000pt;}
.y54_c01416{bottom:289.920000pt;}
.y53_c01416{bottom:290.560000pt;}
.y51_c01416{bottom:291.200000pt;}
.y64_c01416{bottom:291.840000pt;}
.y5b_c01416{bottom:292.480000pt;}
.y5c_c01416{bottom:293.760000pt;}
.y5a_c01416{bottom:295.040000pt;}
.y4f_c01416{bottom:327.040000pt;}
.y50_c01416{bottom:330.880000pt;}
.y4e_c01416{bottom:356.480000pt;}
.y4c_c01416{bottom:357.120000pt;}
.y4b_c01416{bottom:358.400000pt;}
.y4d_c01416{bottom:359.040000pt;}
.y56_c01416{bottom:359.680000pt;}
.y55_c01416{bottom:360.960000pt;}
.y47_c01416{bottom:393.600000pt;}
.y46_c01416{bottom:396.160000pt;}
.y4a_c01416{bottom:396.800000pt;}
.y49_c01416{bottom:397.440000pt;}
.y43_c01416{bottom:432.640000pt;}
.y45_c01416{bottom:433.280000pt;}
.y42_c01416{bottom:435.200000pt;}
.y44_c01416{bottom:435.840000pt;}
.y48_c01416{bottom:436.480000pt;}
.y2f_c01416{bottom:471.680000pt;}
.y2c_c01416{bottom:499.840000pt;}
.y2d_c01416{bottom:500.480000pt;}
.y2b_c01416{bottom:501.760000pt;}
.y38_c01416{bottom:502.400000pt;}
.y2e_c01416{bottom:503.040000pt;}
.y3a_c01416{bottom:503.680000pt;}
.y39_c01416{bottom:506.240000pt;}
.y3f_c01416{bottom:538.240000pt;}
.y41_c01416{bottom:539.520000pt;}
.y40_c01416{bottom:540.160000pt;}
.y36_c01416{bottom:540.800000pt;}
.y37_c01416{bottom:541.440000pt;}
.y3e_c01416{bottom:576.000000pt;}
.y3d_c01416{bottom:578.560000pt;}
.y33_c01416{bottom:580.480000pt;}
.y34_c01416{bottom:581.120000pt;}
.y35_c01416{bottom:581.760000pt;}
.y3c_c01416{bottom:615.680000pt;}
.y31_c01416{bottom:616.320000pt;}
.y32_c01416{bottom:617.600000pt;}
.y3b_c01416{bottom:618.880000pt;}
.y30_c01416{bottom:619.520000pt;}
.y2a_c01416{bottom:654.080000pt;}
.y27_c01416{bottom:656.000000pt;}
.y28_c01416{bottom:657.280000pt;}
.y29_c01416{bottom:657.920000pt;}
.y23_c01416{bottom:682.880000pt;}
.y22_c01416{bottom:684.800000pt;}
.y26_c01416{bottom:685.440000pt;}
.y25_c01416{bottom:686.080000pt;}
.y24_c01416{bottom:686.720000pt;}
.y1d_c01416{bottom:721.280000pt;}
.y1e_c01416{bottom:721.920000pt;}
.y21_c01416{bottom:722.560000pt;}
.y1f_c01416{bottom:723.200000pt;}
.y1c_c01416{bottom:723.840000pt;}
.y20_c01416{bottom:725.120000pt;}
.y19_c01416{bottom:759.680000pt;}
.y17_c01416{bottom:761.600000pt;}
.y1b_c01416{bottom:762.240000pt;}
.y1a_c01416{bottom:762.880000pt;}
.y18_c01416{bottom:763.520000pt;}
.y14_c01416{bottom:798.080000pt;}
.y16_c01416{bottom:800.000000pt;}
.y13_c01416{bottom:801.280000pt;}
.y15_c01416{bottom:801.920000pt;}
.y10_c01416{bottom:835.200000pt;}
.yd_c01416{bottom:836.480000pt;}
.y11_c01416{bottom:837.120000pt;}
.yf_c01416{bottom:837.760000pt;}
.y12_c01416{bottom:838.400000pt;}
.yc_c01416{bottom:839.040000pt;}
.ye_c01416{bottom:840.320000pt;}
.y9_c01416{bottom:874.240000pt;}
.yb_c01416{bottom:875.520000pt;}
.ya_c01416{bottom:876.160000pt;}
.y8_c01416{bottom:877.440000pt;}
.y7_c01416{bottom:878.080000pt;}
.y3_c01416{bottom:913.280000pt;}
.y5_c01416{bottom:913.920000pt;}
.y2_c01416{bottom:914.560000pt;}
.y6_c01416{bottom:915.200000pt;}
.y4_c01416{bottom:916.480000pt;}
.y1_c01416{bottom:981.760000pt;}
.h12_c01416{height:16.126250pt;}
.h14_c01416{height:20.733750pt;}
.hb_c01416{height:29.948750pt;}
.h6_c01416{height:32.252500pt;}
.h11_c01416{height:34.556250pt;}
.h10_c01416{height:39.163750pt;}
.h4_c01416{height:41.467500pt;}
.hd_c01416{height:43.771250pt;}
.ha_c01416{height:46.075000pt;}
.h3_c01416{height:48.378750pt;}
.hc_c01416{height:50.682500pt;}
.he_c01416{height:52.986250pt;}
.h5_c01416{height:55.290000pt;}
.h8_c01416{height:57.593750pt;}
.h9_c01416{height:59.897500pt;}
.h2_c01416{height:62.201250pt;}
.hf_c01416{height:62.457500pt;}
.h7_c01416{height:64.505000pt;}
.h15_c01416{height:64.761250pt;}
.h13_c01416{height:66.808750pt;}
.h0_c01416{height:1026.560000pt;}
.h1_c01416{height:1026.666667pt;}
.w0_c01416{width:689.920000pt;}
.w1_c01416{width:690.000000pt;}
.x0_c01416{left:0.000000pt;}
.x2_c01416{left:46.080000pt;}
.x1d_c01416{left:47.360000pt;}
.x2d_c01416{left:48.640000pt;}
.x7_c01416{left:74.880000pt;}
.x2e_c01416{left:84.480000pt;}
.x3_c01416{left:101.760000pt;}
.x13_c01416{left:103.680000pt;}
.x32_c01416{left:104.960000pt;}
.x1f_c01416{left:151.680000pt;}
.x11_c01416{left:170.240000pt;}
.x14_c01416{left:179.840000pt;}
.x28_c01416{left:181.120000pt;}
.x2f_c01416{left:189.440000pt;}
.x2c_c01416{left:191.360000pt;}
.x1c_c01416{left:218.880000pt;}
.x15_c01416{left:226.560000pt;}
.xb_c01416{left:227.840000pt;}
.x30_c01416{left:229.760000pt;}
.x2a_c01416{left:238.080000pt;}
.x8_c01416{left:256.640000pt;}
.xc_c01416{left:264.960000pt;}
.x16_c01416{left:266.880000pt;}
.x26_c01416{left:276.480000pt;}
.x31_c01416{left:277.760000pt;}
.x25_c01416{left:295.680000pt;}
.x17_c01416{left:304.640000pt;}
.x27_c01416{left:314.880000pt;}
.x12_c01416{left:332.800000pt;}
.xd_c01416{left:343.040000pt;}
.x9_c01416{left:362.240000pt;}
.x18_c01416{left:389.760000pt;}
.x1e_c01416{left:417.920000pt;}
.x19_c01416{left:438.400000pt;}
.x1a_c01416{left:476.160000pt;}
.x23_c01416{left:504.960000pt;}
.x20_c01416{left:514.560000pt;}
.x24_c01416{left:523.520000pt;}
.xa_c01416{left:533.760000pt;}
.x4_c01416{left:544.000000pt;}
.x21_c01416{left:554.880000pt;}
.x1b_c01416{left:561.920000pt;}
.x5_c01416{left:563.200000pt;}
.x22_c01416{left:583.680000pt;}
.xe_c01416{left:591.360000pt;}
.x2b_c01416{left:600.960000pt;}
.x1_c01416{left:618.880000pt;}
.x29_c01416{left:620.160000pt;}
.x6_c01416{left:629.760000pt;}
.xf_c01416{left:647.680000pt;}
.x10_c01416{left:648.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_c01417 {
    display:none;
  }
  .loading-indicator_c01417.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01417 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01417 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01417" -> "#page-container .classname_c01417")
 */
.pf_c01417 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01417 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01417.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01417 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01417 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01417 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01417 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01417 {overflow:visible;}
  }
}
.c_c01417 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01417 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01417:after { /* webkit #35443 */
  content: '';
}
.t_c01417:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01417 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01417 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01417 { /* info for Javascript */
  display:none;
}
.l_c01417 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01417 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01417 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01417:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01417{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01417;src:url('chunks/assets/font_ca4649515564b02821103820.woff2')format("woff");}.ff1_c01417{font-family:ff1_c01417;line-height:1.109863;font-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_c01417{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m42_c01417{transform:matrix(0.201075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201075,0.000000,0.000000,0.250000,0,0);}
.m28_c01417{transform:matrix(0.234200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234200,0.000000,0.000000,0.250000,0,0);}
.m7_c01417{transform:matrix(0.235550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235550,0.000000,0.000000,0.250000,0,0);}
.m37_c01417{transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);}
.m23_c01417{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m19_c01417{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m18_c01417{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_c01417{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m5_c01417{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_c01417{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m12_c01417{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mb_c01417{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m24_c01417{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);}
.m31_c01417{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);}
.m41_c01417{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m3_c01417{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01417{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m9_c01417{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);}
.m32_c01417{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01417{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_c01417{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01417{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01417{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.me_c01417{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m20_c01417{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01417{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m25_c01417{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01417{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m16_c01417{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.md_c01417{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m8_c01417{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m39_c01417{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01417{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);}
.m40_c01417{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);}
.m27_c01417{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m17_c01417{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);}
.m3e_c01417{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01417{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);}
.m3f_c01417{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);}
.m3d_c01417{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m4_c01417{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m22_c01417{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m0_c01417{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m13_c01417{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.mf_c01417{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);}
.m2b_c01417{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);}
.m2_c01417{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m14_c01417{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);}
.m3a_c01417{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m21_c01417{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);}
.m2f_c01417{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);}
.m2e_c01417{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);}
.m2c_c01417{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m34_c01417{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m1_c01417{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m45_c01417{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);}
.m3c_c01417{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m36_c01417{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.mc_c01417{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.ma_c01417{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);}
.m30_c01417{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01417{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m15_c01417{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m33_c01417{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m35_c01417{transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);}
.m38_c01417{transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);}
.m43_c01417{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);}
.m29_c01417{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m10_c01417{transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);}
.v0_c01417{vertical-align:0.000000px;}
.v1_c01417{vertical-align:5.760000px;}
.ls0_c01417{letter-spacing:0.000000px;}
.sc__c01417{text-shadow:none;}
.sc0_c01417{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01417{-webkit-text-stroke:0px transparent;}
.sc0_c01417{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01417{word-spacing:0.000000px;}
.ws0_c01417{word-spacing:6.409200px;}
.ws1_c01417{word-spacing:13.041135px;}
.fc0_c01417{color:transparent;}
.fs9_c01417{font-size:17.280000px;}
.fsf_c01417{font-size:28.800000px;}
.fs8_c01417{font-size:31.680000px;}
.fs11_c01417{font-size:37.440000px;}
.fsa_c01417{font-size:40.320000px;}
.fs12_c01417{font-size:43.200000px;}
.fs1_c01417{font-size:48.960000px;}
.fs0_c01417{font-size:51.840000px;}
.fse_c01417{font-size:54.720000px;}
.fsd_c01417{font-size:57.600000px;}
.fs2_c01417{font-size:60.480000px;}
.fs4_c01417{font-size:63.360000px;}
.fsb_c01417{font-size:66.240000px;}
.fs5_c01417{font-size:69.120000px;}
.fsc_c01417{font-size:72.000000px;}
.fs6_c01417{font-size:74.880000px;}
.fs3_c01417{font-size:77.760000px;}
.fs7_c01417{font-size:80.640000px;}
.fs10_c01417{font-size:83.520000px;}
.y0_c01417{bottom:0.000000px;}
.y5d_c01417{bottom:64.800000px;}
.y5c_c01417{bottom:67.680000px;}
.y6a_c01417{bottom:70.560000px;}
.y6b_c01417{bottom:71.280000px;}
.y59_c01417{bottom:108.000000px;}
.y5b_c01417{bottom:109.440000px;}
.y58_c01417{bottom:110.880000px;}
.y5a_c01417{bottom:111.600000px;}
.y68_c01417{bottom:113.760000px;}
.y69_c01417{bottom:114.480000px;}
.y56_c01417{bottom:151.200000px;}
.y55_c01417{bottom:152.640000px;}
.y57_c01417{bottom:155.520000px;}
.y67_c01417{bottom:156.960000px;}
.y66_c01417{bottom:157.680000px;}
.y65_c01417{bottom:159.120000px;}
.y54_c01417{bottom:194.400000px;}
.y53_c01417{bottom:197.280000px;}
.y63_c01417{bottom:199.440000px;}
.y64_c01417{bottom:200.160000px;}
.y51_c01417{bottom:241.920000px;}
.y52_c01417{bottom:242.640000px;}
.y4f_c01417{bottom:292.320000px;}
.y4e_c01417{bottom:295.200000px;}
.y50_c01417{bottom:295.920000px;}
.y61_c01417{bottom:296.640000px;}
.y60_c01417{bottom:298.080000px;}
.y62_c01417{bottom:299.520000px;}
.y4a_c01417{bottom:335.520000px;}
.y4b_c01417{bottom:336.240000px;}
.y48_c01417{bottom:338.400000px;}
.y49_c01417{bottom:339.120000px;}
.y4d_c01417{bottom:339.840000px;}
.y4c_c01417{bottom:340.560000px;}
.y47_c01417{bottom:380.160000px;}
.y46_c01417{bottom:382.320000px;}
.y5e_c01417{bottom:383.040000px;}
.y5f_c01417{bottom:383.760000px;}
.y42_c01417{bottom:422.640000px;}
.y41_c01417{bottom:425.520000px;}
.y44_c01417{bottom:426.240000px;}
.y45_c01417{bottom:428.400000px;}
.y43_c01417{bottom:429.120000px;}
.y3c_c01417{bottom:466.560000px;}
.y3d_c01417{bottom:467.280000px;}
.y3a_c01417{bottom:468.720000px;}
.y40_c01417{bottom:469.440000px;}
.y3b_c01417{bottom:470.160000px;}
.y3e_c01417{bottom:470.880000px;}
.y3f_c01417{bottom:472.320000px;}
.y37_c01417{bottom:510.480000px;}
.y36_c01417{bottom:511.200000px;}
.y35_c01417{bottom:511.920000px;}
.y38_c01417{bottom:513.360000px;}
.y39_c01417{bottom:514.800000px;}
.y33_c01417{bottom:554.400000px;}
.y31_c01417{bottom:555.120000px;}
.y32_c01417{bottom:556.560000px;}
.y34_c01417{bottom:557.280000px;}
.y1d_c01417{bottom:596.160000px;}
.y1c_c01417{bottom:598.320000px;}
.y2f_c01417{bottom:599.040000px;}
.y30_c01417{bottom:600.480000px;}
.y2c_c01417{bottom:601.200000px;}
.y19_c01417{bottom:639.360000px;}
.y1b_c01417{bottom:640.080000px;}
.y18_c01417{bottom:641.520000px;}
.y2d_c01417{bottom:642.240000px;}
.y2e_c01417{bottom:642.960000px;}
.y1a_c01417{bottom:643.680000px;}
.y17_c01417{bottom:683.280000px;}
.y2a_c01417{bottom:684.000000px;}
.y16_c01417{bottom:684.720000px;}
.y2b_c01417{bottom:685.440000px;}
.y15_c01417{bottom:725.760000px;}
.y28_c01417{bottom:726.480000px;}
.y29_c01417{bottom:727.200000px;}
.y12_c01417{bottom:727.920000px;}
.y13_c01417{bottom:728.640000px;}
.y27_c01417{bottom:729.360000px;}
.y14_c01417{bottom:732.960000px;}
.y11_c01417{bottom:769.680000px;}
.yf_c01417{bottom:771.120000px;}
.y10_c01417{bottom:773.280000px;}
.ye_c01417{bottom:811.440000px;}
.yc_c01417{bottom:812.160000px;}
.y26_c01417{bottom:812.880000px;}
.yb_c01417{bottom:814.320000px;}
.yd_c01417{bottom:816.480000px;}
.y25_c01417{bottom:855.360000px;}
.ya_c01417{bottom:856.080000px;}
.y9_c01417{bottom:857.520000px;}
.y24_c01417{bottom:898.560000px;}
.y8_c01417{bottom:899.280000px;}
.y7_c01417{bottom:901.440000px;}
.y22_c01417{bottom:941.760000px;}
.y6_c01417{bottom:942.480000px;}
.y21_c01417{bottom:943.920000px;}
.y23_c01417{bottom:944.640000px;}
.y5_c01417{bottom:946.080000px;}
.y1f_c01417{bottom:984.240000px;}
.y20_c01417{bottom:984.960000px;}
.y4_c01417{bottom:985.680000px;}
.y3_c01417{bottom:987.840000px;}
.y1_c01417{bottom:1032.480000px;}
.y2_c01417{bottom:1033.200000px;}
.y1e_c01417{bottom:1096.560000px;}
.hb_c01417{height:15.550313px;}
.h11_c01417{height:25.917187px;}
.ha_c01417{height:28.508906px;}
.h13_c01417{height:33.692344px;}
.hc_c01417{height:36.284062px;}
.h14_c01417{height:38.875781px;}
.h3_c01417{height:44.059219px;}
.h2_c01417{height:46.650937px;}
.h10_c01417{height:49.242656px;}
.hf_c01417{height:51.834375px;}
.h4_c01417{height:54.426094px;}
.h6_c01417{height:57.017812px;}
.hd_c01417{height:59.609531px;}
.h7_c01417{height:62.201250px;}
.he_c01417{height:64.792969px;}
.h8_c01417{height:67.384687px;}
.h5_c01417{height:69.976406px;}
.h9_c01417{height:72.568125px;}
.h12_c01417{height:75.159844px;}
.h0_c01417{height:1153.440000px;}
.h1_c01417{height:1153.500000px;}
.w0_c01417{width:774.000000px;}
.x0_c01417{left:0.000000px;}
.x3_c01417{left:51.840000px;}
.xc_c01417{left:84.240000px;}
.xd_c01417{left:93.600000px;}
.x1_c01417{left:105.120000px;}
.x5_c01417{left:114.480000px;}
.x4_c01417{left:116.640000px;}
.x2_c01417{left:159.120000px;}
.x2e_c01417{left:190.080000px;}
.xb_c01417{left:191.520000px;}
.x21_c01417{left:202.320000px;}
.x2b_c01417{left:213.840000px;}
.x6_c01417{left:237.600000px;}
.x2f_c01417{left:245.520000px;}
.x22_c01417{left:255.600000px;}
.x7_c01417{left:257.040000px;}
.x26_c01417{left:267.120000px;}
.xe_c01417{left:277.920000px;}
.x11_c01417{left:288.000000px;}
.x23_c01417{left:310.320000px;}
.xf_c01417{left:321.120000px;}
.x30_c01417{left:342.000000px;}
.x10_c01417{left:364.320000px;}
.x8_c01417{left:373.680000px;}
.x2c_c01417{left:375.120000px;}
.x27_c01417{left:406.080000px;}
.x2d_c01417{left:416.880000px;}
.x9_c01417{left:428.400000px;}
.x24_c01417{left:438.480000px;}
.x28_c01417{left:470.880000px;}
.x25_c01417{left:492.480000px;}
.xa_c01417{left:524.880000px;}
.x1e_c01417{left:577.440000px;}
.x1b_c01417{left:578.880000px;}
.x19_c01417{left:600.480000px;}
.x2a_c01417{left:610.560000px;}
.x13_c01417{left:612.720000px;}
.x1d_c01417{left:631.440000px;}
.x16_c01417{left:632.880000px;}
.x29_c01417{left:663.120000px;}
.x1a_c01417{left:665.280000px;}
.x14_c01417{left:666.720000px;}
.x31_c01417{left:674.640000px;}
.x12_c01417{left:678.240000px;}
.x1c_c01417{left:697.680000px;}
.x1f_c01417{left:707.040000px;}
.x18_c01417{left:708.480000px;}
.x15_c01417{left:709.920000px;}
.x20_c01417{left:727.920000px;}
.x17_c01417{left:730.080000px;}
@media print{
.v0_c01417{vertical-align:0.000000pt;}
.v1_c01417{vertical-align:5.120000pt;}
.ls0_c01417{letter-spacing:0.000000pt;}
.ws2_c01417{word-spacing:0.000000pt;}
.ws0_c01417{word-spacing:5.697067pt;}
.ws1_c01417{word-spacing:11.592120pt;}
.fs9_c01417{font-size:15.360000pt;}
.fsf_c01417{font-size:25.600000pt;}
.fs8_c01417{font-size:28.160000pt;}
.fs11_c01417{font-size:33.280000pt;}
.fsa_c01417{font-size:35.840000pt;}
.fs12_c01417{font-size:38.400000pt;}
.fs1_c01417{font-size:43.520000pt;}
.fs0_c01417{font-size:46.080000pt;}
.fse_c01417{font-size:48.640000pt;}
.fsd_c01417{font-size:51.200000pt;}
.fs2_c01417{font-size:53.760000pt;}
.fs4_c01417{font-size:56.320000pt;}
.fsb_c01417{font-size:58.880000pt;}
.fs5_c01417{font-size:61.440000pt;}
.fsc_c01417{font-size:64.000000pt;}
.fs6_c01417{font-size:66.560000pt;}
.fs3_c01417{font-size:69.120000pt;}
.fs7_c01417{font-size:71.680000pt;}
.fs10_c01417{font-size:74.240000pt;}
.y0_c01417{bottom:0.000000pt;}
.y5d_c01417{bottom:57.600000pt;}
.y5c_c01417{bottom:60.160000pt;}
.y6a_c01417{bottom:62.720000pt;}
.y6b_c01417{bottom:63.360000pt;}
.y59_c01417{bottom:96.000000pt;}
.y5b_c01417{bottom:97.280000pt;}
.y58_c01417{bottom:98.560000pt;}
.y5a_c01417{bottom:99.200000pt;}
.y68_c01417{bottom:101.120000pt;}
.y69_c01417{bottom:101.760000pt;}
.y56_c01417{bottom:134.400000pt;}
.y55_c01417{bottom:135.680000pt;}
.y57_c01417{bottom:138.240000pt;}
.y67_c01417{bottom:139.520000pt;}
.y66_c01417{bottom:140.160000pt;}
.y65_c01417{bottom:141.440000pt;}
.y54_c01417{bottom:172.800000pt;}
.y53_c01417{bottom:175.360000pt;}
.y63_c01417{bottom:177.280000pt;}
.y64_c01417{bottom:177.920000pt;}
.y51_c01417{bottom:215.040000pt;}
.y52_c01417{bottom:215.680000pt;}
.y4f_c01417{bottom:259.840000pt;}
.y4e_c01417{bottom:262.400000pt;}
.y50_c01417{bottom:263.040000pt;}
.y61_c01417{bottom:263.680000pt;}
.y60_c01417{bottom:264.960000pt;}
.y62_c01417{bottom:266.240000pt;}
.y4a_c01417{bottom:298.240000pt;}
.y4b_c01417{bottom:298.880000pt;}
.y48_c01417{bottom:300.800000pt;}
.y49_c01417{bottom:301.440000pt;}
.y4d_c01417{bottom:302.080000pt;}
.y4c_c01417{bottom:302.720000pt;}
.y47_c01417{bottom:337.920000pt;}
.y46_c01417{bottom:339.840000pt;}
.y5e_c01417{bottom:340.480000pt;}
.y5f_c01417{bottom:341.120000pt;}
.y42_c01417{bottom:375.680000pt;}
.y41_c01417{bottom:378.240000pt;}
.y44_c01417{bottom:378.880000pt;}
.y45_c01417{bottom:380.800000pt;}
.y43_c01417{bottom:381.440000pt;}
.y3c_c01417{bottom:414.720000pt;}
.y3d_c01417{bottom:415.360000pt;}
.y3a_c01417{bottom:416.640000pt;}
.y40_c01417{bottom:417.280000pt;}
.y3b_c01417{bottom:417.920000pt;}
.y3e_c01417{bottom:418.560000pt;}
.y3f_c01417{bottom:419.840000pt;}
.y37_c01417{bottom:453.760000pt;}
.y36_c01417{bottom:454.400000pt;}
.y35_c01417{bottom:455.040000pt;}
.y38_c01417{bottom:456.320000pt;}
.y39_c01417{bottom:457.600000pt;}
.y33_c01417{bottom:492.800000pt;}
.y31_c01417{bottom:493.440000pt;}
.y32_c01417{bottom:494.720000pt;}
.y34_c01417{bottom:495.360000pt;}
.y1d_c01417{bottom:529.920000pt;}
.y1c_c01417{bottom:531.840000pt;}
.y2f_c01417{bottom:532.480000pt;}
.y30_c01417{bottom:533.760000pt;}
.y2c_c01417{bottom:534.400000pt;}
.y19_c01417{bottom:568.320000pt;}
.y1b_c01417{bottom:568.960000pt;}
.y18_c01417{bottom:570.240000pt;}
.y2d_c01417{bottom:570.880000pt;}
.y2e_c01417{bottom:571.520000pt;}
.y1a_c01417{bottom:572.160000pt;}
.y17_c01417{bottom:607.360000pt;}
.y2a_c01417{bottom:608.000000pt;}
.y16_c01417{bottom:608.640000pt;}
.y2b_c01417{bottom:609.280000pt;}
.y15_c01417{bottom:645.120000pt;}
.y28_c01417{bottom:645.760000pt;}
.y29_c01417{bottom:646.400000pt;}
.y12_c01417{bottom:647.040000pt;}
.y13_c01417{bottom:647.680000pt;}
.y27_c01417{bottom:648.320000pt;}
.y14_c01417{bottom:651.520000pt;}
.y11_c01417{bottom:684.160000pt;}
.yf_c01417{bottom:685.440000pt;}
.y10_c01417{bottom:687.360000pt;}
.ye_c01417{bottom:721.280000pt;}
.yc_c01417{bottom:721.920000pt;}
.y26_c01417{bottom:722.560000pt;}
.yb_c01417{bottom:723.840000pt;}
.yd_c01417{bottom:725.760000pt;}
.y25_c01417{bottom:760.320000pt;}
.ya_c01417{bottom:760.960000pt;}
.y9_c01417{bottom:762.240000pt;}
.y24_c01417{bottom:798.720000pt;}
.y8_c01417{bottom:799.360000pt;}
.y7_c01417{bottom:801.280000pt;}
.y22_c01417{bottom:837.120000pt;}
.y6_c01417{bottom:837.760000pt;}
.y21_c01417{bottom:839.040000pt;}
.y23_c01417{bottom:839.680000pt;}
.y5_c01417{bottom:840.960000pt;}
.y1f_c01417{bottom:874.880000pt;}
.y20_c01417{bottom:875.520000pt;}
.y4_c01417{bottom:876.160000pt;}
.y3_c01417{bottom:878.080000pt;}
.y1_c01417{bottom:917.760000pt;}
.y2_c01417{bottom:918.400000pt;}
.y1e_c01417{bottom:974.720000pt;}
.hb_c01417{height:13.822500pt;}
.h11_c01417{height:23.037500pt;}
.ha_c01417{height:25.341250pt;}
.h13_c01417{height:29.948750pt;}
.hc_c01417{height:32.252500pt;}
.h14_c01417{height:34.556250pt;}
.h3_c01417{height:39.163750pt;}
.h2_c01417{height:41.467500pt;}
.h10_c01417{height:43.771250pt;}
.hf_c01417{height:46.075000pt;}
.h4_c01417{height:48.378750pt;}
.h6_c01417{height:50.682500pt;}
.hd_c01417{height:52.986250pt;}
.h7_c01417{height:55.290000pt;}
.he_c01417{height:57.593750pt;}
.h8_c01417{height:59.897500pt;}
.h5_c01417{height:62.201250pt;}
.h9_c01417{height:64.505000pt;}
.h12_c01417{height:66.808750pt;}
.h0_c01417{height:1025.280000pt;}
.h1_c01417{height:1025.333333pt;}
.w0_c01417{width:688.000000pt;}
.x0_c01417{left:0.000000pt;}
.x3_c01417{left:46.080000pt;}
.xc_c01417{left:74.880000pt;}
.xd_c01417{left:83.200000pt;}
.x1_c01417{left:93.440000pt;}
.x5_c01417{left:101.760000pt;}
.x4_c01417{left:103.680000pt;}
.x2_c01417{left:141.440000pt;}
.x2e_c01417{left:168.960000pt;}
.xb_c01417{left:170.240000pt;}
.x21_c01417{left:179.840000pt;}
.x2b_c01417{left:190.080000pt;}
.x6_c01417{left:211.200000pt;}
.x2f_c01417{left:218.240000pt;}
.x22_c01417{left:227.200000pt;}
.x7_c01417{left:228.480000pt;}
.x26_c01417{left:237.440000pt;}
.xe_c01417{left:247.040000pt;}
.x11_c01417{left:256.000000pt;}
.x23_c01417{left:275.840000pt;}
.xf_c01417{left:285.440000pt;}
.x30_c01417{left:304.000000pt;}
.x10_c01417{left:323.840000pt;}
.x8_c01417{left:332.160000pt;}
.x2c_c01417{left:333.440000pt;}
.x27_c01417{left:360.960000pt;}
.x2d_c01417{left:370.560000pt;}
.x9_c01417{left:380.800000pt;}
.x24_c01417{left:389.760000pt;}
.x28_c01417{left:418.560000pt;}
.x25_c01417{left:437.760000pt;}
.xa_c01417{left:466.560000pt;}
.x1e_c01417{left:513.280000pt;}
.x1b_c01417{left:514.560000pt;}
.x19_c01417{left:533.760000pt;}
.x2a_c01417{left:542.720000pt;}
.x13_c01417{left:544.640000pt;}
.x1d_c01417{left:561.280000pt;}
.x16_c01417{left:562.560000pt;}
.x29_c01417{left:589.440000pt;}
.x1a_c01417{left:591.360000pt;}
.x14_c01417{left:592.640000pt;}
.x31_c01417{left:599.680000pt;}
.x12_c01417{left:602.880000pt;}
.x1c_c01417{left:620.160000pt;}
.x1f_c01417{left:628.480000pt;}
.x18_c01417{left:629.760000pt;}
.x15_c01417{left:631.040000pt;}
.x20_c01417{left:647.040000pt;}
.x17_c01417{left:648.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_c01418 {
    display:none;
  }
  .loading-indicator_c01418.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01418 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01418 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01418" -> "#page-container .classname_c01418")
 */
.pf_c01418 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01418 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01418.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01418 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01418 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01418 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01418 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01418 {overflow:visible;}
  }
}
.c_c01418 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01418 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01418:after { /* webkit #35443 */
  content: '';
}
.t_c01418:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01418 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01418 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01418 { /* info for Javascript */
  display:none;
}
.l_c01418 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01418 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01418 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01418:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01418{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01418;src:url('chunks/assets/font_af50cf052169ea80c918e30e.woff2')format("woff");}.ff1_c01418{font-family:ff1_c01418;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m45_c01418{transform:matrix(0.196625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196625,0.000000,0.000000,0.250000,0,0);}
.m4a_c01418{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mb_c01418{transform:matrix(0.224550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224550,0.000000,0.000000,0.250000,0,0);}
.m41_c01418{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);}
.m31_c01418{transform:matrix(0.234725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234725,0.000000,0.000000,0.250000,0,0);}
.m25_c01418{transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);}
.m4_c01418{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01418{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_c01418{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);}
.m3d_c01418{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.me_c01418{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_c01418{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);}
.m21_c01418{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);}
.m38_c01418{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m9_c01418{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1_c01418{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);}
.m2c_c01418{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);}
.m35_c01418{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m15_c01418{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01418{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m22_c01418{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m11_c01418{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);}
.m3e_c01418{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m3_c01418{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m46_c01418{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m7_c01418{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01418{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m39_c01418{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m40_c01418{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m33_c01418{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m26_c01418{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m47_c01418{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m32_c01418{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m44_c01418{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01418{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m27_c01418{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m34_c01418{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m30_c01418{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);}
.m43_c01418{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m0_c01418{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m14_c01418{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01418{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);}
.m37_c01418{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m16_c01418{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.mf_c01418{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m6_c01418{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);}
.m3a_c01418{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m18_c01418{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.md_c01418{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);}
.ma_c01418{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01418{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);}
.m8_c01418{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01418{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m2_c01418{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m20_c01418{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);}
.m19_c01418{transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);}
.m13_c01418{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m29_c01418{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m23_c01418{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m36_c01418{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01418{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01418{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m24_c01418{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m48_c01418{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01418{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);}
.m2b_c01418{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01418{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m10_c01418{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01418{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);}
.m5_c01418{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m42_c01418{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);}
.m28_c01418{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01418{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m49_c01418{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01418{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.v2_c01418{vertical-align:-2.880000px;}
.v0_c01418{vertical-align:0.000000px;}
.v3_c01418{vertical-align:5.760000px;}
.v1_c01418{vertical-align:8.640000px;}
.ls0_c01418{letter-spacing:0.000000px;}
.sc__c01418{text-shadow:none;}
.sc0_c01418{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01418{-webkit-text-stroke:0px transparent;}
.sc0_c01418{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01418{word-spacing:-6.620640px;}
.ws1_c01418{word-spacing:-2.464800px;}
.ws3_c01418{word-spacing:0.000000px;}
.ws2_c01418{word-spacing:11.856000px;}
.fc0_c01418{color:transparent;}
.fsf_c01418{font-size:25.920000px;}
.fsc_c01418{font-size:34.560000px;}
.fs5_c01418{font-size:37.440000px;}
.fse_c01418{font-size:43.200000px;}
.fsd_c01418{font-size:46.080000px;}
.fs9_c01418{font-size:48.960000px;}
.fs8_c01418{font-size:51.840000px;}
.fs1_c01418{font-size:54.720000px;}
.fs3_c01418{font-size:57.600000px;}
.fs6_c01418{font-size:60.480000px;}
.fsa_c01418{font-size:63.360000px;}
.fs0_c01418{font-size:66.240000px;}
.fsb_c01418{font-size:69.120000px;}
.fs7_c01418{font-size:72.000000px;}
.fs2_c01418{font-size:74.880000px;}
.fs4_c01418{font-size:77.760000px;}
.y0_c01418{bottom:0.000000px;}
.y48_c01418{bottom:77.760000px;}
.y49_c01418{bottom:79.920000px;}
.y47_c01418{bottom:81.360000px;}
.y6d_c01418{bottom:83.520000px;}
.y4a_c01418{bottom:84.240000px;}
.y6c_c01418{bottom:85.680000px;}
.y69_c01418{bottom:126.720000px;}
.y6a_c01418{bottom:127.440000px;}
.y6b_c01418{bottom:128.880000px;}
.y44_c01418{bottom:164.880000px;}
.y46_c01418{bottom:165.600000px;}
.y45_c01418{bottom:167.040000px;}
.y43_c01418{bottom:167.760000px;}
.y66_c01418{bottom:169.200000px;}
.y67_c01418{bottom:169.920000px;}
.y68_c01418{bottom:170.640000px;}
.y65_c01418{bottom:171.360000px;}
.y3e_c01418{bottom:208.080000px;}
.y3f_c01418{bottom:208.800000px;}
.y42_c01418{bottom:210.240000px;}
.y3d_c01418{bottom:210.960000px;}
.y40_c01418{bottom:213.120000px;}
.y41_c01418{bottom:213.840000px;}
.y63_c01418{bottom:214.560000px;}
.y64_c01418{bottom:215.280000px;}
.y3a_c01418{bottom:252.000000px;}
.y3c_c01418{bottom:253.440000px;}
.y3b_c01418{bottom:254.160000px;}
.y39_c01418{bottom:254.880000px;}
.y62_c01418{bottom:255.600000px;}
.y61_c01418{bottom:257.760000px;}
.y33_c01418{bottom:294.480000px;}
.y37_c01418{bottom:296.640000px;}
.y32_c01418{bottom:297.360000px;}
.y35_c01418{bottom:298.080000px;}
.y36_c01418{bottom:298.800000px;}
.y34_c01418{bottom:299.520000px;}
.y38_c01418{bottom:300.240000px;}
.y60_c01418{bottom:341.280000px;}
.y31_c01418{bottom:383.040000px;}
.y30_c01418{bottom:385.920000px;}
.y2f_c01418{bottom:435.600000px;}
.y5e_c01418{bottom:437.760000px;}
.y2e_c01418{bottom:438.480000px;}
.y5f_c01418{bottom:439.920000px;}
.y2c_c01418{bottom:478.800000px;}
.y5d_c01418{bottom:480.960000px;}
.y2b_c01418{bottom:481.680000px;}
.y2d_c01418{bottom:483.120000px;}
.y28_c01418{bottom:522.000000px;}
.y27_c01418{bottom:522.720000px;}
.y26_c01418{bottom:524.160000px;}
.y2a_c01418{bottom:526.320000px;}
.y29_c01418{bottom:527.040000px;}
.y24_c01418{bottom:565.920000px;}
.y22_c01418{bottom:567.360000px;}
.y25_c01418{bottom:568.800000px;}
.y23_c01418{bottom:569.520000px;}
.y5c_c01418{bottom:570.240000px;}
.y20_c01418{bottom:610.560000px;}
.y21_c01418{bottom:613.440000px;}
.y1d_c01418{bottom:641.520000px;}
.y1e_c01418{bottom:642.240000px;}
.y1c_c01418{bottom:642.960000px;}
.y5b_c01418{bottom:643.680000px;}
.y5a_c01418{bottom:644.400000px;}
.y1f_c01418{bottom:645.120000px;}
.y1b_c01418{bottom:685.440000px;}
.y58_c01418{bottom:686.160000px;}
.y1a_c01418{bottom:687.600000px;}
.y59_c01418{bottom:688.320000px;}
.y57_c01418{bottom:689.760000px;}
.y19_c01418{bottom:727.920000px;}
.y17_c01418{bottom:728.640000px;}
.y56_c01418{bottom:729.360000px;}
.y16_c01418{bottom:730.080000px;}
.y18_c01418{bottom:732.240000px;}
.y13_c01418{bottom:771.840000px;}
.y55_c01418{bottom:772.560000px;}
.y12_c01418{bottom:773.280000px;}
.y15_c01418{bottom:774.720000px;}
.y14_c01418{bottom:775.440000px;}
.y11_c01418{bottom:815.040000px;}
.y53_c01418{bottom:815.760000px;}
.y10_c01418{bottom:816.480000px;}
.y52_c01418{bottom:817.200000px;}
.y54_c01418{bottom:817.920000px;}
.yf_c01418{bottom:858.240000px;}
.y51_c01418{bottom:858.960000px;}
.ye_c01418{bottom:859.680000px;}
.yd_c01418{bottom:900.000000px;}
.y50_c01418{bottom:900.720000px;}
.y4f_c01418{bottom:901.440000px;}
.yb_c01418{bottom:902.880000px;}
.yc_c01418{bottom:905.760000px;}
.ya_c01418{bottom:943.920000px;}
.y6_c01418{bottom:944.640000px;}
.y8_c01418{bottom:945.360000px;}
.y5_c01418{bottom:946.080000px;}
.y9_c01418{bottom:946.800000px;}
.y7_c01418{bottom:948.240000px;}
.y4_c01418{bottom:986.400000px;}
.y4e_c01418{bottom:988.560000px;}
.y3_c01418{bottom:989.280000px;}
.y4c_c01418{bottom:1029.600000px;}
.y2_c01418{bottom:1030.320000px;}
.y4d_c01418{bottom:1031.760000px;}
.y1_c01418{bottom:1032.480000px;}
.y4b_c01418{bottom:1096.560000px;}
.h11_c01418{height:23.325469px;}
.he_c01418{height:31.100625px;}
.h6_c01418{height:33.692344px;}
.h10_c01418{height:38.875781px;}
.hf_c01418{height:41.467500px;}
.hb_c01418{height:44.059219px;}
.ha_c01418{height:46.650937px;}
.h8_c01418{height:49.242656px;}
.h4_c01418{height:51.834375px;}
.h7_c01418{height:54.426094px;}
.hc_c01418{height:57.017812px;}
.h12_c01418{height:57.594375px;}
.h2_c01418{height:59.609531px;}
.hd_c01418{height:62.201250px;}
.h9_c01418{height:64.792969px;}
.h3_c01418{height:67.384687px;}
.h5_c01418{height:69.976406px;}
.h0_c01418{height:1154.880000px;}
.h1_c01418{height:1155.000000px;}
.w0_c01418{width:776.160000px;}
.w1_c01418{width:776.250000px;}
.x0_c01418{left:0.000000px;}
.x1_c01418{left:54.000000px;}
.x14_c01418{left:105.840000px;}
.x3_c01418{left:116.640000px;}
.x15_c01418{left:159.840000px;}
.xd_c01418{left:181.440000px;}
.x2_c01418{left:192.960000px;}
.x4_c01418{left:203.760000px;}
.x11_c01418{left:214.560000px;}
.xe_c01418{left:235.440000px;}
.x5_c01418{left:246.240000px;}
.x10_c01418{left:267.840000px;}
.xa_c01418{left:300.240000px;}
.x8_c01418{left:311.760000px;}
.xb_c01418{left:321.840000px;}
.xf_c01418{left:332.640000px;}
.x6_c01418{left:344.160000px;}
.x12_c01418{left:354.240000px;}
.x9_c01418{left:365.040000px;}
.x1b_c01418{left:375.120000px;}
.x7_c01418{left:386.640000px;}
.x13_c01418{left:408.240000px;}
.x16_c01418{left:418.320000px;}
.x19_c01418{left:438.480000px;}
.xc_c01418{left:440.640000px;}
.x17_c01418{left:470.160000px;}
.x1a_c01418{left:483.120000px;}
.x18_c01418{left:514.080000px;}
.x25_c01418{left:579.600000px;}
.x27_c01418{left:581.040000px;}
.x2f_c01418{left:599.040000px;}
.x2a_c01418{left:601.200000px;}
.x20_c01418{left:613.440000px;}
.x2c_c01418{left:632.160000px;}
.x23_c01418{left:633.600000px;}
.x1d_c01418{left:635.760000px;}
.x30_c01418{left:665.280000px;}
.x28_c01418{left:666.720000px;}
.x1e_c01418{left:668.160000px;}
.x1c_c01418{left:671.760000px;}
.x2d_c01418{left:676.080000px;}
.x26_c01418{left:677.520000px;}
.x2b_c01418{left:698.400000px;}
.x1f_c01418{left:700.560000px;}
.x2e_c01418{left:707.760000px;}
.x29_c01418{left:709.200000px;}
.x21_c01418{left:710.640000px;}
.x31_c01418{left:728.640000px;}
.x24_c01418{left:730.080000px;}
.x22_c01418{left:742.320000px;}
@media print{
.v2_c01418{vertical-align:-2.560000pt;}
.v0_c01418{vertical-align:0.000000pt;}
.v3_c01418{vertical-align:5.120000pt;}
.v1_c01418{vertical-align:7.680000pt;}
.ls0_c01418{letter-spacing:0.000000pt;}
.ws0_c01418{word-spacing:-5.885013pt;}
.ws1_c01418{word-spacing:-2.190933pt;}
.ws3_c01418{word-spacing:0.000000pt;}
.ws2_c01418{word-spacing:10.538667pt;}
.fsf_c01418{font-size:23.040000pt;}
.fsc_c01418{font-size:30.720000pt;}
.fs5_c01418{font-size:33.280000pt;}
.fse_c01418{font-size:38.400000pt;}
.fsd_c01418{font-size:40.960000pt;}
.fs9_c01418{font-size:43.520000pt;}
.fs8_c01418{font-size:46.080000pt;}
.fs1_c01418{font-size:48.640000pt;}
.fs3_c01418{font-size:51.200000pt;}
.fs6_c01418{font-size:53.760000pt;}
.fsa_c01418{font-size:56.320000pt;}
.fs0_c01418{font-size:58.880000pt;}
.fsb_c01418{font-size:61.440000pt;}
.fs7_c01418{font-size:64.000000pt;}
.fs2_c01418{font-size:66.560000pt;}
.fs4_c01418{font-size:69.120000pt;}
.y0_c01418{bottom:0.000000pt;}
.y48_c01418{bottom:69.120000pt;}
.y49_c01418{bottom:71.040000pt;}
.y47_c01418{bottom:72.320000pt;}
.y6d_c01418{bottom:74.240000pt;}
.y4a_c01418{bottom:74.880000pt;}
.y6c_c01418{bottom:76.160000pt;}
.y69_c01418{bottom:112.640000pt;}
.y6a_c01418{bottom:113.280000pt;}
.y6b_c01418{bottom:114.560000pt;}
.y44_c01418{bottom:146.560000pt;}
.y46_c01418{bottom:147.200000pt;}
.y45_c01418{bottom:148.480000pt;}
.y43_c01418{bottom:149.120000pt;}
.y66_c01418{bottom:150.400000pt;}
.y67_c01418{bottom:151.040000pt;}
.y68_c01418{bottom:151.680000pt;}
.y65_c01418{bottom:152.320000pt;}
.y3e_c01418{bottom:184.960000pt;}
.y3f_c01418{bottom:185.600000pt;}
.y42_c01418{bottom:186.880000pt;}
.y3d_c01418{bottom:187.520000pt;}
.y40_c01418{bottom:189.440000pt;}
.y41_c01418{bottom:190.080000pt;}
.y63_c01418{bottom:190.720000pt;}
.y64_c01418{bottom:191.360000pt;}
.y3a_c01418{bottom:224.000000pt;}
.y3c_c01418{bottom:225.280000pt;}
.y3b_c01418{bottom:225.920000pt;}
.y39_c01418{bottom:226.560000pt;}
.y62_c01418{bottom:227.200000pt;}
.y61_c01418{bottom:229.120000pt;}
.y33_c01418{bottom:261.760000pt;}
.y37_c01418{bottom:263.680000pt;}
.y32_c01418{bottom:264.320000pt;}
.y35_c01418{bottom:264.960000pt;}
.y36_c01418{bottom:265.600000pt;}
.y34_c01418{bottom:266.240000pt;}
.y38_c01418{bottom:266.880000pt;}
.y60_c01418{bottom:303.360000pt;}
.y31_c01418{bottom:340.480000pt;}
.y30_c01418{bottom:343.040000pt;}
.y2f_c01418{bottom:387.200000pt;}
.y5e_c01418{bottom:389.120000pt;}
.y2e_c01418{bottom:389.760000pt;}
.y5f_c01418{bottom:391.040000pt;}
.y2c_c01418{bottom:425.600000pt;}
.y5d_c01418{bottom:427.520000pt;}
.y2b_c01418{bottom:428.160000pt;}
.y2d_c01418{bottom:429.440000pt;}
.y28_c01418{bottom:464.000000pt;}
.y27_c01418{bottom:464.640000pt;}
.y26_c01418{bottom:465.920000pt;}
.y2a_c01418{bottom:467.840000pt;}
.y29_c01418{bottom:468.480000pt;}
.y24_c01418{bottom:503.040000pt;}
.y22_c01418{bottom:504.320000pt;}
.y25_c01418{bottom:505.600000pt;}
.y23_c01418{bottom:506.240000pt;}
.y5c_c01418{bottom:506.880000pt;}
.y20_c01418{bottom:542.720000pt;}
.y21_c01418{bottom:545.280000pt;}
.y1d_c01418{bottom:570.240000pt;}
.y1e_c01418{bottom:570.880000pt;}
.y1c_c01418{bottom:571.520000pt;}
.y5b_c01418{bottom:572.160000pt;}
.y5a_c01418{bottom:572.800000pt;}
.y1f_c01418{bottom:573.440000pt;}
.y1b_c01418{bottom:609.280000pt;}
.y58_c01418{bottom:609.920000pt;}
.y1a_c01418{bottom:611.200000pt;}
.y59_c01418{bottom:611.840000pt;}
.y57_c01418{bottom:613.120000pt;}
.y19_c01418{bottom:647.040000pt;}
.y17_c01418{bottom:647.680000pt;}
.y56_c01418{bottom:648.320000pt;}
.y16_c01418{bottom:648.960000pt;}
.y18_c01418{bottom:650.880000pt;}
.y13_c01418{bottom:686.080000pt;}
.y55_c01418{bottom:686.720000pt;}
.y12_c01418{bottom:687.360000pt;}
.y15_c01418{bottom:688.640000pt;}
.y14_c01418{bottom:689.280000pt;}
.y11_c01418{bottom:724.480000pt;}
.y53_c01418{bottom:725.120000pt;}
.y10_c01418{bottom:725.760000pt;}
.y52_c01418{bottom:726.400000pt;}
.y54_c01418{bottom:727.040000pt;}
.yf_c01418{bottom:762.880000pt;}
.y51_c01418{bottom:763.520000pt;}
.ye_c01418{bottom:764.160000pt;}
.yd_c01418{bottom:800.000000pt;}
.y50_c01418{bottom:800.640000pt;}
.y4f_c01418{bottom:801.280000pt;}
.yb_c01418{bottom:802.560000pt;}
.yc_c01418{bottom:805.120000pt;}
.ya_c01418{bottom:839.040000pt;}
.y6_c01418{bottom:839.680000pt;}
.y8_c01418{bottom:840.320000pt;}
.y5_c01418{bottom:840.960000pt;}
.y9_c01418{bottom:841.600000pt;}
.y7_c01418{bottom:842.880000pt;}
.y4_c01418{bottom:876.800000pt;}
.y4e_c01418{bottom:878.720000pt;}
.y3_c01418{bottom:879.360000pt;}
.y4c_c01418{bottom:915.200000pt;}
.y2_c01418{bottom:915.840000pt;}
.y4d_c01418{bottom:917.120000pt;}
.y1_c01418{bottom:917.760000pt;}
.y4b_c01418{bottom:974.720000pt;}
.h11_c01418{height:20.733750pt;}
.he_c01418{height:27.645000pt;}
.h6_c01418{height:29.948750pt;}
.h10_c01418{height:34.556250pt;}
.hf_c01418{height:36.860000pt;}
.hb_c01418{height:39.163750pt;}
.ha_c01418{height:41.467500pt;}
.h8_c01418{height:43.771250pt;}
.h4_c01418{height:46.075000pt;}
.h7_c01418{height:48.378750pt;}
.hc_c01418{height:50.682500pt;}
.h12_c01418{height:51.195000pt;}
.h2_c01418{height:52.986250pt;}
.hd_c01418{height:55.290000pt;}
.h9_c01418{height:57.593750pt;}
.h3_c01418{height:59.897500pt;}
.h5_c01418{height:62.201250pt;}
.h0_c01418{height:1026.560000pt;}
.h1_c01418{height:1026.666667pt;}
.w0_c01418{width:689.920000pt;}
.w1_c01418{width:690.000000pt;}
.x0_c01418{left:0.000000pt;}
.x1_c01418{left:48.000000pt;}
.x14_c01418{left:94.080000pt;}
.x3_c01418{left:103.680000pt;}
.x15_c01418{left:142.080000pt;}
.xd_c01418{left:161.280000pt;}
.x2_c01418{left:171.520000pt;}
.x4_c01418{left:181.120000pt;}
.x11_c01418{left:190.720000pt;}
.xe_c01418{left:209.280000pt;}
.x5_c01418{left:218.880000pt;}
.x10_c01418{left:238.080000pt;}
.xa_c01418{left:266.880000pt;}
.x8_c01418{left:277.120000pt;}
.xb_c01418{left:286.080000pt;}
.xf_c01418{left:295.680000pt;}
.x6_c01418{left:305.920000pt;}
.x12_c01418{left:314.880000pt;}
.x9_c01418{left:324.480000pt;}
.x1b_c01418{left:333.440000pt;}
.x7_c01418{left:343.680000pt;}
.x13_c01418{left:362.880000pt;}
.x16_c01418{left:371.840000pt;}
.x19_c01418{left:389.760000pt;}
.xc_c01418{left:391.680000pt;}
.x17_c01418{left:417.920000pt;}
.x1a_c01418{left:429.440000pt;}
.x18_c01418{left:456.960000pt;}
.x25_c01418{left:515.200000pt;}
.x27_c01418{left:516.480000pt;}
.x2f_c01418{left:532.480000pt;}
.x2a_c01418{left:534.400000pt;}
.x20_c01418{left:545.280000pt;}
.x2c_c01418{left:561.920000pt;}
.x23_c01418{left:563.200000pt;}
.x1d_c01418{left:565.120000pt;}
.x30_c01418{left:591.360000pt;}
.x28_c01418{left:592.640000pt;}
.x1e_c01418{left:593.920000pt;}
.x1c_c01418{left:597.120000pt;}
.x2d_c01418{left:600.960000pt;}
.x26_c01418{left:602.240000pt;}
.x2b_c01418{left:620.800000pt;}
.x1f_c01418{left:622.720000pt;}
.x2e_c01418{left:629.120000pt;}
.x29_c01418{left:630.400000pt;}
.x21_c01418{left:631.680000pt;}
.x31_c01418{left:647.680000pt;}
.x24_c01418{left:648.960000pt;}
.x22_c01418{left:659.840000pt;}
}





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

.ir_c01419:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01419{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01419;src:url('chunks/assets/font_0903fd369d4298e5a3b61125.woff2')format("woff");}.ff1_c01419{font-family:ff1_c01419;line-height:1.109863;font-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_c01419{transform:matrix(0.192400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192400,0.000000,0.000000,0.250000,0,0);}
.md_c01419{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m30_c01419{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m25_c01419{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);}
.m22_c01419{transform:matrix(0.239225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239225,0.000000,0.000000,0.250000,0,0);}
.m32_c01419{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m24_c01419{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m15_c01419{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m44_c01419{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);}
.m20_c01419{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mc_c01419{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_c01419{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);}
.m48_c01419{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m29_c01419{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);}
.m3d_c01419{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);}
.m21_c01419{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m49_c01419{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m23_c01419{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m19_c01419{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mb_c01419{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_c01419{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m16_c01419{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01419{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m42_c01419{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m31_c01419{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01419{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01419{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m8_c01419{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m43_c01419{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m35_c01419{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m46_c01419{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m38_c01419{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mf_c01419{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m13_c01419{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01419{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);}
.m2e_c01419{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m5_c01419{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);}
.m34_c01419{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);}
.m2_c01419{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);}
.m3e_c01419{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m47_c01419{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);}
.m3f_c01419{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);}
.m0_c01419{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m27_c01419{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);}
.m39_c01419{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);}
.m3c_c01419{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m45_c01419{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m3_c01419{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01419{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);}
.m1e_c01419{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01419{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m1_c01419{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m12_c01419{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.me_c01419{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m41_c01419{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01419{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);}
.m28_c01419{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);}
.m7_c01419{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01419{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m40_c01419{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01419{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.ma_c01419{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01419{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m9_c01419{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m11_c01419{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m10_c01419{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m37_c01419{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);}
.m6_c01419{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m26_c01419{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);}
.m4_c01419{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01419{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m33_c01419{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m36_c01419{transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);}
.m18_c01419{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.v0_c01419{vertical-align:0.000000px;}
.ls0_c01419{letter-spacing:0.000000px;}
.sc__c01419{text-shadow:none;}
.sc0_c01419{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01419{-webkit-text-stroke:0px transparent;}
.sc0_c01419{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01419{word-spacing:0.000000px;}
.ws0_c01419{word-spacing:45.137376px;}
.fc0_c01419{color:transparent;}
.fse_c01419{font-size:31.680000px;}
.fsb_c01419{font-size:37.440000px;}
.fsd_c01419{font-size:43.200000px;}
.fsc_c01419{font-size:46.080000px;}
.fs5_c01419{font-size:48.960000px;}
.fs6_c01419{font-size:51.840000px;}
.fs7_c01419{font-size:54.720000px;}
.fs3_c01419{font-size:57.600000px;}
.fs1_c01419{font-size:60.480000px;}
.fs4_c01419{font-size:63.360000px;}
.fs8_c01419{font-size:66.240000px;}
.fs2_c01419{font-size:69.120000px;}
.fs0_c01419{font-size:72.000000px;}
.fs9_c01419{font-size:74.880000px;}
.fsa_c01419{font-size:77.760000px;}
.fsf_c01419{font-size:103.680000px;}
.y0_c01419{bottom:0.000000px;}
.y60_c01419{bottom:64.080000px;}
.y5f_c01419{bottom:68.400000px;}
.y61_c01419{bottom:69.120000px;}
.y62_c01419{bottom:69.840000px;}
.y5d_c01419{bottom:107.280000px;}
.y5c_c01419{bottom:110.880000px;}
.y5e_c01419{bottom:113.040000px;}
.y5a_c01419{bottom:151.200000px;}
.y59_c01419{bottom:155.520000px;}
.y5b_c01419{bottom:156.960000px;}
.y56_c01419{bottom:194.400000px;}
.y55_c01419{bottom:197.280000px;}
.y57_c01419{bottom:199.440000px;}
.y58_c01419{bottom:200.880000px;}
.y52_c01419{bottom:238.320000px;}
.y51_c01419{bottom:240.480000px;}
.y53_c01419{bottom:241.200000px;}
.y54_c01419{bottom:242.640000px;}
.y50_c01419{bottom:285.840000px;}
.y4c_c01419{bottom:336.240000px;}
.y4e_c01419{bottom:336.960000px;}
.y4b_c01419{bottom:337.680000px;}
.y4f_c01419{bottom:339.120000px;}
.y4d_c01419{bottom:339.840000px;}
.y49_c01419{bottom:371.520000px;}
.y45_c01419{bottom:380.880000px;}
.y48_c01419{bottom:381.600000px;}
.y46_c01419{bottom:382.320000px;}
.y44_c01419{bottom:383.040000px;}
.y47_c01419{bottom:383.760000px;}
.y4a_c01419{bottom:385.920000px;}
.y43_c01419{bottom:422.640000px;}
.y42_c01419{bottom:423.360000px;}
.y38_c01419{bottom:425.520000px;}
.y36_c01419{bottom:426.240000px;}
.y37_c01419{bottom:428.400000px;}
.y41_c01419{bottom:465.840000px;}
.y33_c01419{bottom:468.000000px;}
.y32_c01419{bottom:468.720000px;}
.y35_c01419{bottom:469.440000px;}
.y40_c01419{bottom:470.160000px;}
.y34_c01419{bottom:470.880000px;}
.y3f_c01419{bottom:509.040000px;}
.y2f_c01419{bottom:511.200000px;}
.y30_c01419{bottom:511.920000px;}
.y3e_c01419{bottom:513.360000px;}
.y31_c01419{bottom:514.080000px;}
.y3d_c01419{bottom:552.240000px;}
.y2c_c01419{bottom:554.400000px;}
.y2e_c01419{bottom:555.120000px;}
.y2d_c01419{bottom:557.280000px;}
.y3c_c01419{bottom:595.440000px;}
.y2a_c01419{bottom:596.160000px;}
.y2b_c01419{bottom:596.880000px;}
.y39_c01419{bottom:598.320000px;}
.y3b_c01419{bottom:599.040000px;}
.y3a_c01419{bottom:599.760000px;}
.y26_c01419{bottom:638.640000px;}
.y28_c01419{bottom:639.360000px;}
.y29_c01419{bottom:640.080000px;}
.y25_c01419{bottom:641.520000px;}
.y27_c01419{bottom:642.240000px;}
.y24_c01419{bottom:684.000000px;}
.y23_c01419{bottom:686.160000px;}
.y1c_c01419{bottom:735.840000px;}
.y1d_c01419{bottom:736.560000px;}
.y21_c01419{bottom:737.280000px;}
.y22_c01419{bottom:739.440000px;}
.y1b_c01419{bottom:778.320000px;}
.y19_c01419{bottom:779.040000px;}
.y20_c01419{bottom:779.760000px;}
.y1a_c01419{bottom:781.920000px;}
.y18_c01419{bottom:821.520000px;}
.y16_c01419{bottom:822.240000px;}
.y17_c01419{bottom:823.680000px;}
.y13_c01419{bottom:865.440000px;}
.y1f_c01419{bottom:866.160000px;}
.y14_c01419{bottom:866.880000px;}
.y15_c01419{bottom:867.600000px;}
.y11_c01419{bottom:909.360000px;}
.y10_c01419{bottom:910.080000px;}
.y12_c01419{bottom:910.800000px;}
.y1e_c01419{bottom:912.960000px;}
.ye_c01419{bottom:951.120000px;}
.yf_c01419{bottom:951.840000px;}
.yc_c01419{bottom:954.000000px;}
.yd_c01419{bottom:955.440000px;}
.y9_c01419{bottom:996.480000px;}
.y7_c01419{bottom:997.200000px;}
.y8_c01419{bottom:999.360000px;}
.ya_c01419{bottom:1026.000000px;}
.yb_c01419{bottom:1026.720000px;}
.y6_c01419{bottom:1027.440000px;}
.y4_c01419{bottom:1028.160000px;}
.y5_c01419{bottom:1028.880000px;}
.y3_c01419{bottom:1030.320000px;}
.y2_c01419{bottom:1031.040000px;}
.y1_c01419{bottom:1085.040000px;}
.h10_c01419{height:28.508906px;}
.hd_c01419{height:33.692344px;}
.hf_c01419{height:38.875781px;}
.he_c01419{height:41.467500px;}
.h7_c01419{height:44.059219px;}
.h8_c01419{height:46.650937px;}
.h9_c01419{height:49.242656px;}
.h5_c01419{height:51.834375px;}
.h3_c01419{height:54.426094px;}
.h6_c01419{height:57.017812px;}
.ha_c01419{height:59.609531px;}
.h4_c01419{height:62.201250px;}
.h2_c01419{height:64.792969px;}
.hb_c01419{height:67.384687px;}
.hc_c01419{height:69.976406px;}
.h11_c01419{height:93.301875px;}
.h1_c01419{height:1150.500000px;}
.h0_c01419{height:1150.560000px;}
.w1_c01419{width:769.500000px;}
.w0_c01419{width:769.680000px;}
.x0_c01419{left:0.000000px;}
.x2_c01419{left:49.680000px;}
.x23_c01419{left:81.360000px;}
.x17_c01419{left:102.240000px;}
.x2e_c01419{left:111.600000px;}
.x16_c01419{left:113.040000px;}
.x3_c01419{left:114.480000px;}
.x18_c01419{left:156.240000px;}
.x24_c01419{left:187.920000px;}
.x26_c01419{left:199.440000px;}
.x4_c01419{left:200.880000px;}
.x9_c01419{left:211.680000px;}
.x25_c01419{left:231.840000px;}
.x19_c01419{left:253.440000px;}
.xd_c01419{left:254.880000px;}
.x5_c01419{left:265.680000px;}
.x1a_c01419{left:295.920000px;}
.xe_c01419{left:308.160000px;}
.x2b_c01419{left:317.520000px;}
.x6_c01419{left:319.680000px;}
.x27_c01419{left:361.440000px;}
.x1b_c01419{left:393.120000px;}
.x28_c01419{left:415.440000px;}
.x7_c01419{left:449.280000px;}
.x8_c01419{left:503.280000px;}
.x29_c01419{left:547.920000px;}
.x21_c01419{left:575.280000px;}
.x30_c01419{left:595.440000px;}
.x1c_c01419{left:596.880000px;}
.x12_c01419{left:598.320000px;}
.x1f_c01419{left:607.680000px;}
.x2c_c01419{left:619.920000px;}
.x2a_c01419{left:628.560000px;}
.x15_c01419{left:630.000000px;}
.x10_c01419{left:631.440000px;}
.xa_c01419{left:632.880000px;}
.x20_c01419{left:653.040000px;}
.x1_c01419{left:660.960000px;}
.x1d_c01419{left:663.120000px;}
.xf_c01419{left:664.560000px;}
.xb_c01419{left:666.000000px;}
.x2d_c01419{left:672.480000px;}
.x14_c01419{left:673.920000px;}
.x1e_c01419{left:704.160000px;}
.x11_c01419{left:706.320000px;}
.xc_c01419{left:708.480000px;}
.x2f_c01419{left:723.600000px;}
.x22_c01419{left:725.040000px;}
.x13_c01419{left:726.480000px;}
@media print{
.v0_c01419{vertical-align:0.000000pt;}
.ls0_c01419{letter-spacing:0.000000pt;}
.ws1_c01419{word-spacing:0.000000pt;}
.ws0_c01419{word-spacing:40.122112pt;}
.fse_c01419{font-size:28.160000pt;}
.fsb_c01419{font-size:33.280000pt;}
.fsd_c01419{font-size:38.400000pt;}
.fsc_c01419{font-size:40.960000pt;}
.fs5_c01419{font-size:43.520000pt;}
.fs6_c01419{font-size:46.080000pt;}
.fs7_c01419{font-size:48.640000pt;}
.fs3_c01419{font-size:51.200000pt;}
.fs1_c01419{font-size:53.760000pt;}
.fs4_c01419{font-size:56.320000pt;}
.fs8_c01419{font-size:58.880000pt;}
.fs2_c01419{font-size:61.440000pt;}
.fs0_c01419{font-size:64.000000pt;}
.fs9_c01419{font-size:66.560000pt;}
.fsa_c01419{font-size:69.120000pt;}
.fsf_c01419{font-size:92.160000pt;}
.y0_c01419{bottom:0.000000pt;}
.y60_c01419{bottom:56.960000pt;}
.y5f_c01419{bottom:60.800000pt;}
.y61_c01419{bottom:61.440000pt;}
.y62_c01419{bottom:62.080000pt;}
.y5d_c01419{bottom:95.360000pt;}
.y5c_c01419{bottom:98.560000pt;}
.y5e_c01419{bottom:100.480000pt;}
.y5a_c01419{bottom:134.400000pt;}
.y59_c01419{bottom:138.240000pt;}
.y5b_c01419{bottom:139.520000pt;}
.y56_c01419{bottom:172.800000pt;}
.y55_c01419{bottom:175.360000pt;}
.y57_c01419{bottom:177.280000pt;}
.y58_c01419{bottom:178.560000pt;}
.y52_c01419{bottom:211.840000pt;}
.y51_c01419{bottom:213.760000pt;}
.y53_c01419{bottom:214.400000pt;}
.y54_c01419{bottom:215.680000pt;}
.y50_c01419{bottom:254.080000pt;}
.y4c_c01419{bottom:298.880000pt;}
.y4e_c01419{bottom:299.520000pt;}
.y4b_c01419{bottom:300.160000pt;}
.y4f_c01419{bottom:301.440000pt;}
.y4d_c01419{bottom:302.080000pt;}
.y49_c01419{bottom:330.240000pt;}
.y45_c01419{bottom:338.560000pt;}
.y48_c01419{bottom:339.200000pt;}
.y46_c01419{bottom:339.840000pt;}
.y44_c01419{bottom:340.480000pt;}
.y47_c01419{bottom:341.120000pt;}
.y4a_c01419{bottom:343.040000pt;}
.y43_c01419{bottom:375.680000pt;}
.y42_c01419{bottom:376.320000pt;}
.y38_c01419{bottom:378.240000pt;}
.y36_c01419{bottom:378.880000pt;}
.y37_c01419{bottom:380.800000pt;}
.y41_c01419{bottom:414.080000pt;}
.y33_c01419{bottom:416.000000pt;}
.y32_c01419{bottom:416.640000pt;}
.y35_c01419{bottom:417.280000pt;}
.y40_c01419{bottom:417.920000pt;}
.y34_c01419{bottom:418.560000pt;}
.y3f_c01419{bottom:452.480000pt;}
.y2f_c01419{bottom:454.400000pt;}
.y30_c01419{bottom:455.040000pt;}
.y3e_c01419{bottom:456.320000pt;}
.y31_c01419{bottom:456.960000pt;}
.y3d_c01419{bottom:490.880000pt;}
.y2c_c01419{bottom:492.800000pt;}
.y2e_c01419{bottom:493.440000pt;}
.y2d_c01419{bottom:495.360000pt;}
.y3c_c01419{bottom:529.280000pt;}
.y2a_c01419{bottom:529.920000pt;}
.y2b_c01419{bottom:530.560000pt;}
.y39_c01419{bottom:531.840000pt;}
.y3b_c01419{bottom:532.480000pt;}
.y3a_c01419{bottom:533.120000pt;}
.y26_c01419{bottom:567.680000pt;}
.y28_c01419{bottom:568.320000pt;}
.y29_c01419{bottom:568.960000pt;}
.y25_c01419{bottom:570.240000pt;}
.y27_c01419{bottom:570.880000pt;}
.y24_c01419{bottom:608.000000pt;}
.y23_c01419{bottom:609.920000pt;}
.y1c_c01419{bottom:654.080000pt;}
.y1d_c01419{bottom:654.720000pt;}
.y21_c01419{bottom:655.360000pt;}
.y22_c01419{bottom:657.280000pt;}
.y1b_c01419{bottom:691.840000pt;}
.y19_c01419{bottom:692.480000pt;}
.y20_c01419{bottom:693.120000pt;}
.y1a_c01419{bottom:695.040000pt;}
.y18_c01419{bottom:730.240000pt;}
.y16_c01419{bottom:730.880000pt;}
.y17_c01419{bottom:732.160000pt;}
.y13_c01419{bottom:769.280000pt;}
.y1f_c01419{bottom:769.920000pt;}
.y14_c01419{bottom:770.560000pt;}
.y15_c01419{bottom:771.200000pt;}
.y11_c01419{bottom:808.320000pt;}
.y10_c01419{bottom:808.960000pt;}
.y12_c01419{bottom:809.600000pt;}
.y1e_c01419{bottom:811.520000pt;}
.ye_c01419{bottom:845.440000pt;}
.yf_c01419{bottom:846.080000pt;}
.yc_c01419{bottom:848.000000pt;}
.yd_c01419{bottom:849.280000pt;}
.y9_c01419{bottom:885.760000pt;}
.y7_c01419{bottom:886.400000pt;}
.y8_c01419{bottom:888.320000pt;}
.ya_c01419{bottom:912.000000pt;}
.yb_c01419{bottom:912.640000pt;}
.y6_c01419{bottom:913.280000pt;}
.y4_c01419{bottom:913.920000pt;}
.y5_c01419{bottom:914.560000pt;}
.y3_c01419{bottom:915.840000pt;}
.y2_c01419{bottom:916.480000pt;}
.y1_c01419{bottom:964.480000pt;}
.h10_c01419{height:25.341250pt;}
.hd_c01419{height:29.948750pt;}
.hf_c01419{height:34.556250pt;}
.he_c01419{height:36.860000pt;}
.h7_c01419{height:39.163750pt;}
.h8_c01419{height:41.467500pt;}
.h9_c01419{height:43.771250pt;}
.h5_c01419{height:46.075000pt;}
.h3_c01419{height:48.378750pt;}
.h6_c01419{height:50.682500pt;}
.ha_c01419{height:52.986250pt;}
.h4_c01419{height:55.290000pt;}
.h2_c01419{height:57.593750pt;}
.hb_c01419{height:59.897500pt;}
.hc_c01419{height:62.201250pt;}
.h11_c01419{height:82.935000pt;}
.h1_c01419{height:1022.666667pt;}
.h0_c01419{height:1022.720000pt;}
.w1_c01419{width:684.000000pt;}
.w0_c01419{width:684.160000pt;}
.x0_c01419{left:0.000000pt;}
.x2_c01419{left:44.160000pt;}
.x23_c01419{left:72.320000pt;}
.x17_c01419{left:90.880000pt;}
.x2e_c01419{left:99.200000pt;}
.x16_c01419{left:100.480000pt;}
.x3_c01419{left:101.760000pt;}
.x18_c01419{left:138.880000pt;}
.x24_c01419{left:167.040000pt;}
.x26_c01419{left:177.280000pt;}
.x4_c01419{left:178.560000pt;}
.x9_c01419{left:188.160000pt;}
.x25_c01419{left:206.080000pt;}
.x19_c01419{left:225.280000pt;}
.xd_c01419{left:226.560000pt;}
.x5_c01419{left:236.160000pt;}
.x1a_c01419{left:263.040000pt;}
.xe_c01419{left:273.920000pt;}
.x2b_c01419{left:282.240000pt;}
.x6_c01419{left:284.160000pt;}
.x27_c01419{left:321.280000pt;}
.x1b_c01419{left:349.440000pt;}
.x28_c01419{left:369.280000pt;}
.x7_c01419{left:399.360000pt;}
.x8_c01419{left:447.360000pt;}
.x29_c01419{left:487.040000pt;}
.x21_c01419{left:511.360000pt;}
.x30_c01419{left:529.280000pt;}
.x1c_c01419{left:530.560000pt;}
.x12_c01419{left:531.840000pt;}
.x1f_c01419{left:540.160000pt;}
.x2c_c01419{left:551.040000pt;}
.x2a_c01419{left:558.720000pt;}
.x15_c01419{left:560.000000pt;}
.x10_c01419{left:561.280000pt;}
.xa_c01419{left:562.560000pt;}
.x20_c01419{left:580.480000pt;}
.x1_c01419{left:587.520000pt;}
.x1d_c01419{left:589.440000pt;}
.xf_c01419{left:590.720000pt;}
.xb_c01419{left:592.000000pt;}
.x2d_c01419{left:597.760000pt;}
.x14_c01419{left:599.040000pt;}
.x1e_c01419{left:625.920000pt;}
.x11_c01419{left:627.840000pt;}
.xc_c01419{left:629.760000pt;}
.x2f_c01419{left:643.200000pt;}
.x22_c01419{left:644.480000pt;}
.x13_c01419{left:645.760000pt;}
}





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

.ir_c01420:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01420{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01420;src:url('chunks/assets/font_8f64165295902bf9fdfbe4d8.woff2')format("woff");}.ff1_c01420{font-family:ff1_c01420;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4d_c01420{transform:matrix(0.185775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185775,0.000000,0.000000,0.250000,0,0);}
.m2f_c01420{transform:matrix(0.212850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212850,0.000000,0.000000,0.250000,0,0);}
.m3c_c01420{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m50_c01420{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);}
.m49_c01420{transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);}
.m2c_c01420{transform:matrix(0.243050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243050,0.000000,0.000000,0.250000,0,0);}
.m44_c01420{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m26_c01420{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m35_c01420{transform:matrix(0.245775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245775,0.000000,0.000000,0.250000,0,0);}
.m2a_c01420{transform:matrix(0.246375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246375,0.000000,0.000000,0.250000,0,0);}
.m3e_c01420{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m1e_c01420{transform:matrix(0.247950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247950,0.000000,0.000000,0.250000,0,0);}
.m23_c01420{transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);}
.m10_c01420{transform:matrix(0.248800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248800,0.000000,0.000000,0.250000,0,0);}
.m3_c01420{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01420{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m5_c01420{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_c01420{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);}
.m3f_c01420{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_c01420{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01420{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);}
.m43_c01420{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);}
.m36_c01420{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);}
.m20_c01420{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m1_c01420{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);}
.m40_c01420{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m14_c01420{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m7_c01420{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mf_c01420{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);}
.m3b_c01420{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m18_c01420{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m31_c01420{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m15_c01420{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01420{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m12_c01420{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m27_c01420{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m46_c01420{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m37_c01420{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01420{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m16_c01420{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01420{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m32_c01420{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m0_c01420{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);}
.m51_c01420{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m9_c01420{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_c01420{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);}
.m52_c01420{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);}
.m24_c01420{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m22_c01420{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);}
.m28_c01420{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.me_c01420{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);}
.m2b_c01420{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m4f_c01420{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m2_c01420{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);}
.m2d_c01420{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);}
.m39_c01420{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);}
.mb_c01420{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m6_c01420{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01420{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);}
.m11_c01420{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);}
.ma_c01420{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);}
.m1f_c01420{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m38_c01420{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m8_c01420{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);}
.m4_c01420{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m45_c01420{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m33_c01420{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01420{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.mc_c01420{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_c01420{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m48_c01420{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m21_c01420{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01420{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m41_c01420{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);}
.m17_c01420{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m13_c01420{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);}
.m34_c01420{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);}
.m4e_c01420{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m30_c01420{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01420{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01420{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m4a_c01420{transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);}
.m47_c01420{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.v0_c01420{vertical-align:0.000000px;}
.ls0_c01420{letter-spacing:0.000000px;}
.sc__c01420{text-shadow:none;}
.sc0_c01420{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01420{-webkit-text-stroke:0px transparent;}
.sc0_c01420{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01420{word-spacing:0.000000px;}
.ws0_c01420{word-spacing:9.210378px;}
.fc0_c01420{color:transparent;}
.fsd_c01420{font-size:37.440000px;}
.fsa_c01420{font-size:43.200000px;}
.fs7_c01420{font-size:48.960000px;}
.fs4_c01420{font-size:51.840000px;}
.fs3_c01420{font-size:54.720000px;}
.fs6_c01420{font-size:57.600000px;}
.fs2_c01420{font-size:60.480000px;}
.fs8_c01420{font-size:63.360000px;}
.fs9_c01420{font-size:66.240000px;}
.fs0_c01420{font-size:69.120000px;}
.fsb_c01420{font-size:72.000000px;}
.fs5_c01420{font-size:74.880000px;}
.fs1_c01420{font-size:77.760000px;}
.fsc_c01420{font-size:83.520000px;}
.y0_c01420{bottom:0.000000px;}
.y50_c01420{bottom:71.280000px;}
.y4f_c01420{bottom:72.000000px;}
.y4e_c01420{bottom:74.160000px;}
.y7c_c01420{bottom:75.600000px;}
.y7d_c01420{bottom:76.320000px;}
.y7e_c01420{bottom:78.480000px;}
.y4b_c01420{bottom:113.760000px;}
.y4d_c01420{bottom:115.200000px;}
.y4c_c01420{bottom:115.920000px;}
.y4a_c01420{bottom:117.360000px;}
.y79_c01420{bottom:118.800000px;}
.y7a_c01420{bottom:120.960000px;}
.y7b_c01420{bottom:121.680000px;}
.y49_c01420{bottom:156.960000px;}
.y48_c01420{bottom:159.840000px;}
.y75_c01420{bottom:162.000000px;}
.y77_c01420{bottom:163.440000px;}
.y78_c01420{bottom:164.880000px;}
.y76_c01420{bottom:165.600000px;}
.y45_c01420{bottom:200.160000px;}
.y47_c01420{bottom:200.880000px;}
.y44_c01420{bottom:204.480000px;}
.y46_c01420{bottom:205.200000px;}
.y73_c01420{bottom:205.920000px;}
.y74_c01420{bottom:207.360000px;}
.y3f_c01420{bottom:244.080000px;}
.y41_c01420{bottom:244.800000px;}
.y3e_c01420{bottom:246.960000px;}
.y71_c01420{bottom:247.680000px;}
.y40_c01420{bottom:248.400000px;}
.y43_c01420{bottom:249.120000px;}
.y42_c01420{bottom:249.840000px;}
.y72_c01420{bottom:250.560000px;}
.y39_c01420{bottom:287.280000px;}
.y3b_c01420{bottom:288.720000px;}
.y3d_c01420{bottom:289.440000px;}
.y38_c01420{bottom:290.880000px;}
.y3a_c01420{bottom:291.600000px;}
.y3c_c01420{bottom:292.320000px;}
.y36_c01420{bottom:329.760000px;}
.y37_c01420{bottom:331.200000px;}
.y35_c01420{bottom:333.360000px;}
.y6f_c01420{bottom:334.080000px;}
.y70_c01420{bottom:334.800000px;}
.y32_c01420{bottom:373.680000px;}
.y34_c01420{bottom:375.120000px;}
.y31_c01420{bottom:376.560000px;}
.y6d_c01420{bottom:377.280000px;}
.y33_c01420{bottom:378.000000px;}
.y6e_c01420{bottom:379.440000px;}
.y2e_c01420{bottom:416.880000px;}
.y30_c01420{bottom:418.320000px;}
.y2d_c01420{bottom:419.760000px;}
.y2f_c01420{bottom:420.480000px;}
.y6a_c01420{bottom:421.200000px;}
.y6c_c01420{bottom:421.920000px;}
.y6b_c01420{bottom:422.640000px;}
.y2b_c01420{bottom:460.800000px;}
.y2c_c01420{bottom:461.520000px;}
.y2a_c01420{bottom:462.960000px;}
.y69_c01420{bottom:463.680000px;}
.y68_c01420{bottom:464.400000px;}
.y26_c01420{bottom:504.000000px;}
.y29_c01420{bottom:504.720000px;}
.y27_c01420{bottom:505.440000px;}
.y66_c01420{bottom:506.160000px;}
.y65_c01420{bottom:506.880000px;}
.y25_c01420{bottom:507.600000px;}
.y28_c01420{bottom:508.320000px;}
.y67_c01420{bottom:509.040000px;}
.y23_c01420{bottom:547.920000px;}
.y24_c01420{bottom:548.640000px;}
.y63_c01420{bottom:550.080000px;}
.y22_c01420{bottom:550.800000px;}
.y64_c01420{bottom:551.520000px;}
.y20_c01420{bottom:591.120000px;}
.y21_c01420{bottom:592.560000px;}
.y1e_c01420{bottom:594.000000px;}
.y1f_c01420{bottom:594.720000px;}
.y62_c01420{bottom:595.440000px;}
.y1c_c01420{bottom:634.320000px;}
.y1d_c01420{bottom:635.760000px;}
.y60_c01420{bottom:636.480000px;}
.y1b_c01420{bottom:637.200000px;}
.y61_c01420{bottom:638.640000px;}
.y18_c01420{bottom:677.520000px;}
.y19_c01420{bottom:678.960000px;}
.y17_c01420{bottom:679.680000px;}
.y1a_c01420{bottom:681.120000px;}
.y13_c01420{bottom:720.720000px;}
.y16_c01420{bottom:721.440000px;}
.y5f_c01420{bottom:722.160000px;}
.y15_c01420{bottom:722.880000px;}
.y12_c01420{bottom:724.320000px;}
.y14_c01420{bottom:725.040000px;}
.y11_c01420{bottom:763.920000px;}
.y5d_c01420{bottom:765.360000px;}
.yf_c01420{bottom:766.080000px;}
.y5e_c01420{bottom:767.520000px;}
.y10_c01420{bottom:768.960000px;}
.ye_c01420{bottom:807.120000px;}
.y5b_c01420{bottom:807.840000px;}
.y5c_c01420{bottom:808.560000px;}
.y5a_c01420{bottom:809.280000px;}
.yc_c01420{bottom:810.720000px;}
.yd_c01420{bottom:811.440000px;}
.yb_c01420{bottom:851.040000px;}
.ya_c01420{bottom:853.200000px;}
.y8_c01420{bottom:893.520000px;}
.y59_c01420{bottom:894.240000px;}
.y58_c01420{bottom:895.680000px;}
.y7_c01420{bottom:896.400000px;}
.y9_c01420{bottom:897.120000px;}
.y6_c01420{bottom:936.720000px;}
.y57_c01420{bottom:937.440000px;}
.y56_c01420{bottom:938.880000px;}
.y5_c01420{bottom:940.320000px;}
.y55_c01420{bottom:979.200000px;}
.y4_c01420{bottom:979.920000px;}
.y54_c01420{bottom:980.640000px;}
.y3_c01420{bottom:982.080000px;}
.y52_c01420{bottom:1023.120000px;}
.y2_c01420{bottom:1023.840000px;}
.y53_c01420{bottom:1024.560000px;}
.y1_c01420{bottom:1025.280000px;}
.y51_c01420{bottom:1088.640000px;}
.hf_c01420{height:33.692344px;}
.hc_c01420{height:38.875781px;}
.h9_c01420{height:44.059219px;}
.h6_c01420{height:46.650937px;}
.h5_c01420{height:49.242656px;}
.h8_c01420{height:51.834375px;}
.h4_c01420{height:54.426094px;}
.ha_c01420{height:57.017812px;}
.hb_c01420{height:59.609531px;}
.h2_c01420{height:62.201250px;}
.hd_c01420{height:64.792969px;}
.h7_c01420{height:67.384687px;}
.h3_c01420{height:69.976406px;}
.he_c01420{height:75.159844px;}
.h1_c01420{height:1148.250000px;}
.h0_c01420{height:1148.400000px;}
.w1_c01420{width:767.250000px;}
.w0_c01420{width:767.520000px;}
.x0_c01420{left:0.000000px;}
.x1_c01420{left:43.200000px;}
.x1c_c01420{left:44.640000px;}
.x14_c01420{left:105.120000px;}
.x2_c01420{left:106.560000px;}
.x3_c01420{left:108.000000px;}
.x7_c01420{left:182.160000px;}
.x6_c01420{left:183.600000px;}
.x8_c01420{left:194.400000px;}
.x11_c01420{left:205.200000px;}
.x16_c01420{left:226.800000px;}
.x9_c01420{left:236.880000px;}
.x1a_c01420{left:249.840000px;}
.x15_c01420{left:279.360000px;}
.xc_c01420{left:280.800000px;}
.x17_c01420{left:291.600000px;}
.x4_c01420{left:311.040000px;}
.x1b_c01420{left:313.200000px;}
.xa_c01420{left:323.280000px;}
.x12_c01420{left:334.800000px;}
.xf_c01420{left:354.960000px;}
.x5_c01420{left:367.200000px;}
.xb_c01420{left:377.280000px;}
.x18_c01420{left:397.440000px;}
.x10_c01420{left:409.680000px;}
.x13_c01420{left:419.040000px;}
.xd_c01420{left:429.840000px;}
.x19_c01420{left:442.800000px;}
.xe_c01420{left:483.840000px;}
.x30_c01420{left:560.160000px;}
.x2b_c01420{left:570.240000px;}
.x2a_c01420{left:591.840000px;}
.x2f_c01420{left:602.640000px;}
.x21_c01420{left:604.080000px;}
.x2e_c01420{left:622.800000px;}
.x27_c01420{left:624.240000px;}
.x23_c01420{left:625.680000px;}
.x1e_c01420{left:637.200000px;}
.x28_c01420{left:657.360000px;}
.x24_c01420{left:658.800000px;}
.x1d_c01420{left:669.600000px;}
.x29_c01420{left:689.760000px;}
.x2c_c01420{left:698.400000px;}
.x25_c01420{left:700.560000px;}
.x22_c01420{left:702.000000px;}
.x1f_c01420{left:712.800000px;}
.x2d_c01420{left:719.280000px;}
.x26_c01420{left:720.720000px;}
.x20_c01420{left:732.240000px;}
@media print{
.v0_c01420{vertical-align:0.000000pt;}
.ls0_c01420{letter-spacing:0.000000pt;}
.ws1_c01420{word-spacing:0.000000pt;}
.ws0_c01420{word-spacing:8.187003pt;}
.fsd_c01420{font-size:33.280000pt;}
.fsa_c01420{font-size:38.400000pt;}
.fs7_c01420{font-size:43.520000pt;}
.fs4_c01420{font-size:46.080000pt;}
.fs3_c01420{font-size:48.640000pt;}
.fs6_c01420{font-size:51.200000pt;}
.fs2_c01420{font-size:53.760000pt;}
.fs8_c01420{font-size:56.320000pt;}
.fs9_c01420{font-size:58.880000pt;}
.fs0_c01420{font-size:61.440000pt;}
.fsb_c01420{font-size:64.000000pt;}
.fs5_c01420{font-size:66.560000pt;}
.fs1_c01420{font-size:69.120000pt;}
.fsc_c01420{font-size:74.240000pt;}
.y0_c01420{bottom:0.000000pt;}
.y50_c01420{bottom:63.360000pt;}
.y4f_c01420{bottom:64.000000pt;}
.y4e_c01420{bottom:65.920000pt;}
.y7c_c01420{bottom:67.200000pt;}
.y7d_c01420{bottom:67.840000pt;}
.y7e_c01420{bottom:69.760000pt;}
.y4b_c01420{bottom:101.120000pt;}
.y4d_c01420{bottom:102.400000pt;}
.y4c_c01420{bottom:103.040000pt;}
.y4a_c01420{bottom:104.320000pt;}
.y79_c01420{bottom:105.600000pt;}
.y7a_c01420{bottom:107.520000pt;}
.y7b_c01420{bottom:108.160000pt;}
.y49_c01420{bottom:139.520000pt;}
.y48_c01420{bottom:142.080000pt;}
.y75_c01420{bottom:144.000000pt;}
.y77_c01420{bottom:145.280000pt;}
.y78_c01420{bottom:146.560000pt;}
.y76_c01420{bottom:147.200000pt;}
.y45_c01420{bottom:177.920000pt;}
.y47_c01420{bottom:178.560000pt;}
.y44_c01420{bottom:181.760000pt;}
.y46_c01420{bottom:182.400000pt;}
.y73_c01420{bottom:183.040000pt;}
.y74_c01420{bottom:184.320000pt;}
.y3f_c01420{bottom:216.960000pt;}
.y41_c01420{bottom:217.600000pt;}
.y3e_c01420{bottom:219.520000pt;}
.y71_c01420{bottom:220.160000pt;}
.y40_c01420{bottom:220.800000pt;}
.y43_c01420{bottom:221.440000pt;}
.y42_c01420{bottom:222.080000pt;}
.y72_c01420{bottom:222.720000pt;}
.y39_c01420{bottom:255.360000pt;}
.y3b_c01420{bottom:256.640000pt;}
.y3d_c01420{bottom:257.280000pt;}
.y38_c01420{bottom:258.560000pt;}
.y3a_c01420{bottom:259.200000pt;}
.y3c_c01420{bottom:259.840000pt;}
.y36_c01420{bottom:293.120000pt;}
.y37_c01420{bottom:294.400000pt;}
.y35_c01420{bottom:296.320000pt;}
.y6f_c01420{bottom:296.960000pt;}
.y70_c01420{bottom:297.600000pt;}
.y32_c01420{bottom:332.160000pt;}
.y34_c01420{bottom:333.440000pt;}
.y31_c01420{bottom:334.720000pt;}
.y6d_c01420{bottom:335.360000pt;}
.y33_c01420{bottom:336.000000pt;}
.y6e_c01420{bottom:337.280000pt;}
.y2e_c01420{bottom:370.560000pt;}
.y30_c01420{bottom:371.840000pt;}
.y2d_c01420{bottom:373.120000pt;}
.y2f_c01420{bottom:373.760000pt;}
.y6a_c01420{bottom:374.400000pt;}
.y6c_c01420{bottom:375.040000pt;}
.y6b_c01420{bottom:375.680000pt;}
.y2b_c01420{bottom:409.600000pt;}
.y2c_c01420{bottom:410.240000pt;}
.y2a_c01420{bottom:411.520000pt;}
.y69_c01420{bottom:412.160000pt;}
.y68_c01420{bottom:412.800000pt;}
.y26_c01420{bottom:448.000000pt;}
.y29_c01420{bottom:448.640000pt;}
.y27_c01420{bottom:449.280000pt;}
.y66_c01420{bottom:449.920000pt;}
.y65_c01420{bottom:450.560000pt;}
.y25_c01420{bottom:451.200000pt;}
.y28_c01420{bottom:451.840000pt;}
.y67_c01420{bottom:452.480000pt;}
.y23_c01420{bottom:487.040000pt;}
.y24_c01420{bottom:487.680000pt;}
.y63_c01420{bottom:488.960000pt;}
.y22_c01420{bottom:489.600000pt;}
.y64_c01420{bottom:490.240000pt;}
.y20_c01420{bottom:525.440000pt;}
.y21_c01420{bottom:526.720000pt;}
.y1e_c01420{bottom:528.000000pt;}
.y1f_c01420{bottom:528.640000pt;}
.y62_c01420{bottom:529.280000pt;}
.y1c_c01420{bottom:563.840000pt;}
.y1d_c01420{bottom:565.120000pt;}
.y60_c01420{bottom:565.760000pt;}
.y1b_c01420{bottom:566.400000pt;}
.y61_c01420{bottom:567.680000pt;}
.y18_c01420{bottom:602.240000pt;}
.y19_c01420{bottom:603.520000pt;}
.y17_c01420{bottom:604.160000pt;}
.y1a_c01420{bottom:605.440000pt;}
.y13_c01420{bottom:640.640000pt;}
.y16_c01420{bottom:641.280000pt;}
.y5f_c01420{bottom:641.920000pt;}
.y15_c01420{bottom:642.560000pt;}
.y12_c01420{bottom:643.840000pt;}
.y14_c01420{bottom:644.480000pt;}
.y11_c01420{bottom:679.040000pt;}
.y5d_c01420{bottom:680.320000pt;}
.yf_c01420{bottom:680.960000pt;}
.y5e_c01420{bottom:682.240000pt;}
.y10_c01420{bottom:683.520000pt;}
.ye_c01420{bottom:717.440000pt;}
.y5b_c01420{bottom:718.080000pt;}
.y5c_c01420{bottom:718.720000pt;}
.y5a_c01420{bottom:719.360000pt;}
.yc_c01420{bottom:720.640000pt;}
.yd_c01420{bottom:721.280000pt;}
.yb_c01420{bottom:756.480000pt;}
.ya_c01420{bottom:758.400000pt;}
.y8_c01420{bottom:794.240000pt;}
.y59_c01420{bottom:794.880000pt;}
.y58_c01420{bottom:796.160000pt;}
.y7_c01420{bottom:796.800000pt;}
.y9_c01420{bottom:797.440000pt;}
.y6_c01420{bottom:832.640000pt;}
.y57_c01420{bottom:833.280000pt;}
.y56_c01420{bottom:834.560000pt;}
.y5_c01420{bottom:835.840000pt;}
.y55_c01420{bottom:870.400000pt;}
.y4_c01420{bottom:871.040000pt;}
.y54_c01420{bottom:871.680000pt;}
.y3_c01420{bottom:872.960000pt;}
.y52_c01420{bottom:909.440000pt;}
.y2_c01420{bottom:910.080000pt;}
.y53_c01420{bottom:910.720000pt;}
.y1_c01420{bottom:911.360000pt;}
.y51_c01420{bottom:967.680000pt;}
.hf_c01420{height:29.948750pt;}
.hc_c01420{height:34.556250pt;}
.h9_c01420{height:39.163750pt;}
.h6_c01420{height:41.467500pt;}
.h5_c01420{height:43.771250pt;}
.h8_c01420{height:46.075000pt;}
.h4_c01420{height:48.378750pt;}
.ha_c01420{height:50.682500pt;}
.hb_c01420{height:52.986250pt;}
.h2_c01420{height:55.290000pt;}
.hd_c01420{height:57.593750pt;}
.h7_c01420{height:59.897500pt;}
.h3_c01420{height:62.201250pt;}
.he_c01420{height:66.808750pt;}
.h1_c01420{height:1020.666667pt;}
.h0_c01420{height:1020.800000pt;}
.w1_c01420{width:682.000000pt;}
.w0_c01420{width:682.240000pt;}
.x0_c01420{left:0.000000pt;}
.x1_c01420{left:38.400000pt;}
.x1c_c01420{left:39.680000pt;}
.x14_c01420{left:93.440000pt;}
.x2_c01420{left:94.720000pt;}
.x3_c01420{left:96.000000pt;}
.x7_c01420{left:161.920000pt;}
.x6_c01420{left:163.200000pt;}
.x8_c01420{left:172.800000pt;}
.x11_c01420{left:182.400000pt;}
.x16_c01420{left:201.600000pt;}
.x9_c01420{left:210.560000pt;}
.x1a_c01420{left:222.080000pt;}
.x15_c01420{left:248.320000pt;}
.xc_c01420{left:249.600000pt;}
.x17_c01420{left:259.200000pt;}
.x4_c01420{left:276.480000pt;}
.x1b_c01420{left:278.400000pt;}
.xa_c01420{left:287.360000pt;}
.x12_c01420{left:297.600000pt;}
.xf_c01420{left:315.520000pt;}
.x5_c01420{left:326.400000pt;}
.xb_c01420{left:335.360000pt;}
.x18_c01420{left:353.280000pt;}
.x10_c01420{left:364.160000pt;}
.x13_c01420{left:372.480000pt;}
.xd_c01420{left:382.080000pt;}
.x19_c01420{left:393.600000pt;}
.xe_c01420{left:430.080000pt;}
.x30_c01420{left:497.920000pt;}
.x2b_c01420{left:506.880000pt;}
.x2a_c01420{left:526.080000pt;}
.x2f_c01420{left:535.680000pt;}
.x21_c01420{left:536.960000pt;}
.x2e_c01420{left:553.600000pt;}
.x27_c01420{left:554.880000pt;}
.x23_c01420{left:556.160000pt;}
.x1e_c01420{left:566.400000pt;}
.x28_c01420{left:584.320000pt;}
.x24_c01420{left:585.600000pt;}
.x1d_c01420{left:595.200000pt;}
.x29_c01420{left:613.120000pt;}
.x2c_c01420{left:620.800000pt;}
.x25_c01420{left:622.720000pt;}
.x22_c01420{left:624.000000pt;}
.x1f_c01420{left:633.600000pt;}
.x2d_c01420{left:639.360000pt;}
.x26_c01420{left:640.640000pt;}
.x20_c01420{left:650.880000pt;}
}





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

.ir_c01421:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01421{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01421;src:url('chunks/assets/font_f56beeafa90b12d1faa49131.woff2')format("woff");}.ff1_c01421{font-family:ff1_c01421;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3e_c01421{transform:matrix(0.204850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204850,0.000000,0.000000,0.250000,0,0);}
.m4f_c01421{transform:matrix(0.205700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205700,0.000000,0.000000,0.250000,0,0);}
.m45_c01421{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);}
.m33_c01421{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);}
.m50_c01421{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m15_c01421{transform:matrix(0.238350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238350,0.000000,0.000000,0.250000,0,0);}
.m43_c01421{transform:matrix(0.240150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240150,0.000000,0.000000,0.250000,0,0);}
.m3a_c01421{transform:matrix(0.242100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242100,0.000000,0.000000,0.250000,0,0);}
.m41_c01421{transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);}
.m2b_c01421{transform:matrix(0.244425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244425,0.000000,0.000000,0.250000,0,0);}
.m4c_c01421{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m1f_c01421{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m17_c01421{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01421{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mb_c01421{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_c01421{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);}
.m46_c01421{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);}
.m38_c01421{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m20_c01421{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);}
.m44_c01421{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m14_c01421{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m24_c01421{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m16_c01421{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);}
.m3b_c01421{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m10_c01421{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1_c01421{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01421{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m36_c01421{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m53_c01421{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m25_c01421{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01421{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m52_c01421{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01421{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01421{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m48_c01421{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m21_c01421{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m49_c01421{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m35_c01421{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m29_c01421{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m2_c01421{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01421{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_c01421{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01421{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01421{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m8_c01421{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m5_c01421{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);}
.m19_c01421{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m32_c01421{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m27_c01421{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01421{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);}
.m42_c01421{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);}
.m2d_c01421{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m37_c01421{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);}
.m31_c01421{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);}
.m4_c01421{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m12_c01421{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m7_c01421{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.mf_c01421{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);}
.m3_c01421{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);}
.m26_c01421{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);}
.m0_c01421{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m22_c01421{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);}
.m34_c01421{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);}
.m23_c01421{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01421{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01421{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);}
.m6_c01421{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m28_c01421{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.ma_c01421{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m18_c01421{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m51_c01421{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);}
.md_c01421{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m39_c01421{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m30_c01421{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01421{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);}
.mc_c01421{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m11_c01421{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m9_c01421{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01421{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_c01421{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m47_c01421{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m13_c01421{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01421{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01421{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.v1_c01421{vertical-align:-2.880000px;}
.v0_c01421{vertical-align:0.000000px;}
.ls1_c01421{letter-spacing:0.000000px;}
.ls0_c01421{letter-spacing:87.974400px;}
.sc__c01421{text-shadow:none;}
.sc0_c01421{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01421{-webkit-text-stroke:0px transparent;}
.sc0_c01421{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01421{word-spacing:0.000000px;}
.fc0_c01421{color:transparent;}
.fs10_c01421{font-size:34.560000px;}
.fs8_c01421{font-size:37.440000px;}
.fse_c01421{font-size:40.320000px;}
.fsb_c01421{font-size:43.200000px;}
.fsc_c01421{font-size:46.080000px;}
.fs5_c01421{font-size:48.960000px;}
.fs2_c01421{font-size:51.840000px;}
.fs7_c01421{font-size:54.720000px;}
.fs0_c01421{font-size:57.600000px;}
.fs3_c01421{font-size:60.480000px;}
.fsd_c01421{font-size:63.360000px;}
.fs4_c01421{font-size:66.240000px;}
.fs1_c01421{font-size:69.120000px;}
.fs6_c01421{font-size:72.000000px;}
.fs9_c01421{font-size:74.880000px;}
.fsa_c01421{font-size:77.760000px;}
.fsf_c01421{font-size:80.640000px;}
.y0_c01421{bottom:0.000000px;}
.y53_c01421{bottom:38.880000px;}
.y52_c01421{bottom:41.760000px;}
.y72_c01421{bottom:45.360000px;}
.y74_c01421{bottom:46.080000px;}
.y73_c01421{bottom:48.240000px;}
.y4f_c01421{bottom:81.360000px;}
.y51_c01421{bottom:82.080000px;}
.y50_c01421{bottom:82.800000px;}
.y4e_c01421{bottom:85.680000px;}
.y70_c01421{bottom:86.400000px;}
.y71_c01421{bottom:87.840000px;}
.y49_c01421{bottom:124.560000px;}
.y4d_c01421{bottom:126.720000px;}
.y4b_c01421{bottom:128.160000px;}
.y4a_c01421{bottom:128.880000px;}
.y48_c01421{bottom:129.600000px;}
.y6f_c01421{bottom:130.320000px;}
.y4c_c01421{bottom:131.040000px;}
.y44_c01421{bottom:169.920000px;}
.y43_c01421{bottom:172.080000px;}
.y45_c01421{bottom:172.800000px;}
.y6d_c01421{bottom:173.520000px;}
.y46_c01421{bottom:174.240000px;}
.y47_c01421{bottom:174.960000px;}
.y6e_c01421{bottom:175.680000px;}
.y42_c01421{bottom:211.680000px;}
.y40_c01421{bottom:215.280000px;}
.y41_c01421{bottom:216.000000px;}
.y6c_c01421{bottom:216.720000px;}
.y6b_c01421{bottom:218.880000px;}
.y3f_c01421{bottom:254.880000px;}
.y3e_c01421{bottom:258.480000px;}
.y69_c01421{bottom:259.200000px;}
.y67_c01421{bottom:259.920000px;}
.y6a_c01421{bottom:260.640000px;}
.y68_c01421{bottom:262.800000px;}
.y3b_c01421{bottom:298.800000px;}
.y3d_c01421{bottom:300.240000px;}
.y39_c01421{bottom:300.960000px;}
.y3a_c01421{bottom:302.400000px;}
.y66_c01421{bottom:303.120000px;}
.y3c_c01421{bottom:303.840000px;}
.y34_c01421{bottom:342.000000px;}
.y38_c01421{bottom:343.440000px;}
.y36_c01421{bottom:344.880000px;}
.y33_c01421{bottom:345.600000px;}
.y35_c01421{bottom:346.320000px;}
.y37_c01421{bottom:347.040000px;}
.y65_c01421{bottom:348.480000px;}
.y32_c01421{bottom:389.520000px;}
.y31_c01421{bottom:390.240000px;}
.y2e_c01421{bottom:432.000000px;}
.y30_c01421{bottom:432.720000px;}
.y2f_c01421{bottom:433.440000px;}
.y2d_c01421{bottom:483.840000px;}
.y2c_c01421{bottom:485.280000px;}
.y64_c01421{bottom:486.720000px;}
.y2a_c01421{bottom:527.040000px;}
.y2b_c01421{bottom:527.760000px;}
.y29_c01421{bottom:530.640000px;}
.y28_c01421{bottom:570.240000px;}
.y63_c01421{bottom:571.680000px;}
.y61_c01421{bottom:572.400000px;}
.y27_c01421{bottom:573.120000px;}
.y62_c01421{bottom:574.560000px;}
.y25_c01421{bottom:613.440000px;}
.y26_c01421{bottom:614.160000px;}
.y5f_c01421{bottom:614.880000px;}
.y60_c01421{bottom:616.320000px;}
.y24_c01421{bottom:617.040000px;}
.y23_c01421{bottom:655.920000px;}
.y20_c01421{bottom:656.640000px;}
.y5e_c01421{bottom:657.360000px;}
.y21_c01421{bottom:658.080000px;}
.y1f_c01421{bottom:658.800000px;}
.y22_c01421{bottom:660.960000px;}
.y1e_c01421{bottom:699.840000px;}
.y5d_c01421{bottom:700.560000px;}
.y1d_c01421{bottom:703.440000px;}
.y1c_c01421{bottom:743.760000px;}
.y1b_c01421{bottom:745.200000px;}
.y17_c01421{bottom:775.440000px;}
.y5c_c01421{bottom:776.160000px;}
.y19_c01421{bottom:776.880000px;}
.y16_c01421{bottom:777.600000px;}
.y1a_c01421{bottom:778.320000px;}
.y18_c01421{bottom:779.040000px;}
.y5b_c01421{bottom:817.920000px;}
.y14_c01421{bottom:818.640000px;}
.y15_c01421{bottom:820.800000px;}
.y13_c01421{bottom:822.240000px;}
.y12_c01421{bottom:861.840000px;}
.y11_c01421{bottom:862.560000px;}
.y10_c01421{bottom:864.000000px;}
.yd_c01421{bottom:906.480000px;}
.ye_c01421{bottom:907.200000px;}
.yf_c01421{bottom:908.640000px;}
.yc_c01421{bottom:909.360000px;}
.y5a_c01421{bottom:937.440000px;}
.yb_c01421{bottom:938.160000px;}
.y8_c01421{bottom:938.880000px;}
.ya_c01421{bottom:939.600000px;}
.y7_c01421{bottom:940.320000px;}
.y9_c01421{bottom:941.760000px;}
.y58_c01421{bottom:980.640000px;}
.y57_c01421{bottom:981.360000px;}
.y5_c01421{bottom:982.080000px;}
.y59_c01421{bottom:982.800000px;}
.y4_c01421{bottom:983.520000px;}
.y6_c01421{bottom:984.240000px;}
.y56_c01421{bottom:1023.840000px;}
.y55_c01421{bottom:1024.560000px;}
.y2_c01421{bottom:1025.280000px;}
.y3_c01421{bottom:1026.000000px;}
.y1_c01421{bottom:1028.160000px;}
.y54_c01421{bottom:1100.880000px;}
.h12_c01421{height:31.100625px;}
.ha_c01421{height:33.692344px;}
.h10_c01421{height:36.284062px;}
.hd_c01421{height:38.875781px;}
.he_c01421{height:41.467500px;}
.h7_c01421{height:44.059219px;}
.h4_c01421{height:46.650937px;}
.h9_c01421{height:49.242656px;}
.h2_c01421{height:51.834375px;}
.h5_c01421{height:54.426094px;}
.hf_c01421{height:57.017812px;}
.h6_c01421{height:59.609531px;}
.h3_c01421{height:62.201250px;}
.h8_c01421{height:64.792969px;}
.hb_c01421{height:67.384687px;}
.hc_c01421{height:69.976406px;}
.h11_c01421{height:72.568125px;}
.h1_c01421{height:1151.250000px;}
.h0_c01421{height:1151.280000px;}
.w1_c01421{width:771.750000px;}
.w0_c01421{width:771.840000px;}
.x0_c01421{left:0.000000px;}
.xf_c01421{left:45.360000px;}
.x1_c01421{left:46.800000px;}
.x21_c01421{left:78.480000px;}
.x1b_c01421{left:98.640000px;}
.x20_c01421{left:108.000000px;}
.xe_c01421{left:110.160000px;}
.x2_c01421{left:111.600000px;}
.x1f_c01421{left:153.360000px;}
.x1c_c01421{left:174.240000px;}
.x28_c01421{left:184.320000px;}
.x6_c01421{left:186.480000px;}
.x3_c01421{left:196.560000px;}
.x10_c01421{left:207.360000px;}
.x1d_c01421{left:216.720000px;}
.x1a_c01421{left:228.960000px;}
.x7_c01421{left:240.480000px;}
.x12_c01421{left:250.560000px;}
.x23_c01421{left:260.640000px;}
.x5_c01421{left:262.080000px;}
.x17_c01421{left:272.160000px;}
.x1e_c01421{left:282.960000px;}
.x18_c01421{left:293.760000px;}
.x8_c01421{left:295.920000px;}
.x13_c01421{left:305.280000px;}
.x24_c01421{left:314.640000px;}
.x4_c01421{left:316.080000px;}
.x11_c01421{left:326.160000px;}
.x19_c01421{left:347.760000px;}
.x29_c01421{left:358.560000px;}
.xb_c01421{left:370.800000px;}
.x22_c01421{left:380.160000px;}
.x14_c01421{left:389.520000px;}
.x9_c01421{left:391.680000px;}
.x25_c01421{left:410.400000px;}
.x2a_c01421{left:411.840000px;}
.xc_c01421{left:424.800000px;}
.x15_c01421{left:434.160000px;}
.xa_c01421{left:445.680000px;}
.x2b_c01421{left:454.320000px;}
.x26_c01421{left:465.120000px;}
.xd_c01421{left:467.280000px;}
.x16_c01421{left:488.160000px;}
.x27_c01421{left:517.680000px;}
.x3e_c01421{left:571.680000px;}
.x3d_c01421{left:573.120000px;}
.x35_c01421{left:594.000000px;}
.x33_c01421{left:596.160000px;}
.x40_c01421{left:625.680000px;}
.x39_c01421{left:627.120000px;}
.x2d_c01421{left:629.280000px;}
.x3b_c01421{left:657.360000px;}
.x2c_c01421{left:658.800000px;}
.x2e_c01421{left:660.960000px;}
.x31_c01421{left:662.400000px;}
.x36_c01421{left:669.600000px;}
.x34_c01421{left:671.760000px;}
.x3c_c01421{left:691.200000px;}
.x2f_c01421{left:694.080000px;}
.x3f_c01421{left:698.400000px;}
.x3a_c01421{left:699.840000px;}
.x37_c01421{left:702.000000px;}
.x32_c01421{left:704.160000px;}
.x38_c01421{left:722.160000px;}
.x30_c01421{left:724.320000px;}
@media print{
.v1_c01421{vertical-align:-2.560000pt;}
.v0_c01421{vertical-align:0.000000pt;}
.ls1_c01421{letter-spacing:0.000000pt;}
.ls0_c01421{letter-spacing:78.199467pt;}
.ws0_c01421{word-spacing:0.000000pt;}
.fs10_c01421{font-size:30.720000pt;}
.fs8_c01421{font-size:33.280000pt;}
.fse_c01421{font-size:35.840000pt;}
.fsb_c01421{font-size:38.400000pt;}
.fsc_c01421{font-size:40.960000pt;}
.fs5_c01421{font-size:43.520000pt;}
.fs2_c01421{font-size:46.080000pt;}
.fs7_c01421{font-size:48.640000pt;}
.fs0_c01421{font-size:51.200000pt;}
.fs3_c01421{font-size:53.760000pt;}
.fsd_c01421{font-size:56.320000pt;}
.fs4_c01421{font-size:58.880000pt;}
.fs1_c01421{font-size:61.440000pt;}
.fs6_c01421{font-size:64.000000pt;}
.fs9_c01421{font-size:66.560000pt;}
.fsa_c01421{font-size:69.120000pt;}
.fsf_c01421{font-size:71.680000pt;}
.y0_c01421{bottom:0.000000pt;}
.y53_c01421{bottom:34.560000pt;}
.y52_c01421{bottom:37.120000pt;}
.y72_c01421{bottom:40.320000pt;}
.y74_c01421{bottom:40.960000pt;}
.y73_c01421{bottom:42.880000pt;}
.y4f_c01421{bottom:72.320000pt;}
.y51_c01421{bottom:72.960000pt;}
.y50_c01421{bottom:73.600000pt;}
.y4e_c01421{bottom:76.160000pt;}
.y70_c01421{bottom:76.800000pt;}
.y71_c01421{bottom:78.080000pt;}
.y49_c01421{bottom:110.720000pt;}
.y4d_c01421{bottom:112.640000pt;}
.y4b_c01421{bottom:113.920000pt;}
.y4a_c01421{bottom:114.560000pt;}
.y48_c01421{bottom:115.200000pt;}
.y6f_c01421{bottom:115.840000pt;}
.y4c_c01421{bottom:116.480000pt;}
.y44_c01421{bottom:151.040000pt;}
.y43_c01421{bottom:152.960000pt;}
.y45_c01421{bottom:153.600000pt;}
.y6d_c01421{bottom:154.240000pt;}
.y46_c01421{bottom:154.880000pt;}
.y47_c01421{bottom:155.520000pt;}
.y6e_c01421{bottom:156.160000pt;}
.y42_c01421{bottom:188.160000pt;}
.y40_c01421{bottom:191.360000pt;}
.y41_c01421{bottom:192.000000pt;}
.y6c_c01421{bottom:192.640000pt;}
.y6b_c01421{bottom:194.560000pt;}
.y3f_c01421{bottom:226.560000pt;}
.y3e_c01421{bottom:229.760000pt;}
.y69_c01421{bottom:230.400000pt;}
.y67_c01421{bottom:231.040000pt;}
.y6a_c01421{bottom:231.680000pt;}
.y68_c01421{bottom:233.600000pt;}
.y3b_c01421{bottom:265.600000pt;}
.y3d_c01421{bottom:266.880000pt;}
.y39_c01421{bottom:267.520000pt;}
.y3a_c01421{bottom:268.800000pt;}
.y66_c01421{bottom:269.440000pt;}
.y3c_c01421{bottom:270.080000pt;}
.y34_c01421{bottom:304.000000pt;}
.y38_c01421{bottom:305.280000pt;}
.y36_c01421{bottom:306.560000pt;}
.y33_c01421{bottom:307.200000pt;}
.y35_c01421{bottom:307.840000pt;}
.y37_c01421{bottom:308.480000pt;}
.y65_c01421{bottom:309.760000pt;}
.y32_c01421{bottom:346.240000pt;}
.y31_c01421{bottom:346.880000pt;}
.y2e_c01421{bottom:384.000000pt;}
.y30_c01421{bottom:384.640000pt;}
.y2f_c01421{bottom:385.280000pt;}
.y2d_c01421{bottom:430.080000pt;}
.y2c_c01421{bottom:431.360000pt;}
.y64_c01421{bottom:432.640000pt;}
.y2a_c01421{bottom:468.480000pt;}
.y2b_c01421{bottom:469.120000pt;}
.y29_c01421{bottom:471.680000pt;}
.y28_c01421{bottom:506.880000pt;}
.y63_c01421{bottom:508.160000pt;}
.y61_c01421{bottom:508.800000pt;}
.y27_c01421{bottom:509.440000pt;}
.y62_c01421{bottom:510.720000pt;}
.y25_c01421{bottom:545.280000pt;}
.y26_c01421{bottom:545.920000pt;}
.y5f_c01421{bottom:546.560000pt;}
.y60_c01421{bottom:547.840000pt;}
.y24_c01421{bottom:548.480000pt;}
.y23_c01421{bottom:583.040000pt;}
.y20_c01421{bottom:583.680000pt;}
.y5e_c01421{bottom:584.320000pt;}
.y21_c01421{bottom:584.960000pt;}
.y1f_c01421{bottom:585.600000pt;}
.y22_c01421{bottom:587.520000pt;}
.y1e_c01421{bottom:622.080000pt;}
.y5d_c01421{bottom:622.720000pt;}
.y1d_c01421{bottom:625.280000pt;}
.y1c_c01421{bottom:661.120000pt;}
.y1b_c01421{bottom:662.400000pt;}
.y17_c01421{bottom:689.280000pt;}
.y5c_c01421{bottom:689.920000pt;}
.y19_c01421{bottom:690.560000pt;}
.y16_c01421{bottom:691.200000pt;}
.y1a_c01421{bottom:691.840000pt;}
.y18_c01421{bottom:692.480000pt;}
.y5b_c01421{bottom:727.040000pt;}
.y14_c01421{bottom:727.680000pt;}
.y15_c01421{bottom:729.600000pt;}
.y13_c01421{bottom:730.880000pt;}
.y12_c01421{bottom:766.080000pt;}
.y11_c01421{bottom:766.720000pt;}
.y10_c01421{bottom:768.000000pt;}
.yd_c01421{bottom:805.760000pt;}
.ye_c01421{bottom:806.400000pt;}
.yf_c01421{bottom:807.680000pt;}
.yc_c01421{bottom:808.320000pt;}
.y5a_c01421{bottom:833.280000pt;}
.yb_c01421{bottom:833.920000pt;}
.y8_c01421{bottom:834.560000pt;}
.ya_c01421{bottom:835.200000pt;}
.y7_c01421{bottom:835.840000pt;}
.y9_c01421{bottom:837.120000pt;}
.y58_c01421{bottom:871.680000pt;}
.y57_c01421{bottom:872.320000pt;}
.y5_c01421{bottom:872.960000pt;}
.y59_c01421{bottom:873.600000pt;}
.y4_c01421{bottom:874.240000pt;}
.y6_c01421{bottom:874.880000pt;}
.y56_c01421{bottom:910.080000pt;}
.y55_c01421{bottom:910.720000pt;}
.y2_c01421{bottom:911.360000pt;}
.y3_c01421{bottom:912.000000pt;}
.y1_c01421{bottom:913.920000pt;}
.y54_c01421{bottom:978.560000pt;}
.h12_c01421{height:27.645000pt;}
.ha_c01421{height:29.948750pt;}
.h10_c01421{height:32.252500pt;}
.hd_c01421{height:34.556250pt;}
.he_c01421{height:36.860000pt;}
.h7_c01421{height:39.163750pt;}
.h4_c01421{height:41.467500pt;}
.h9_c01421{height:43.771250pt;}
.h2_c01421{height:46.075000pt;}
.h5_c01421{height:48.378750pt;}
.hf_c01421{height:50.682500pt;}
.h6_c01421{height:52.986250pt;}
.h3_c01421{height:55.290000pt;}
.h8_c01421{height:57.593750pt;}
.hb_c01421{height:59.897500pt;}
.hc_c01421{height:62.201250pt;}
.h11_c01421{height:64.505000pt;}
.h1_c01421{height:1023.333333pt;}
.h0_c01421{height:1023.360000pt;}
.w1_c01421{width:686.000000pt;}
.w0_c01421{width:686.080000pt;}
.x0_c01421{left:0.000000pt;}
.xf_c01421{left:40.320000pt;}
.x1_c01421{left:41.600000pt;}
.x21_c01421{left:69.760000pt;}
.x1b_c01421{left:87.680000pt;}
.x20_c01421{left:96.000000pt;}
.xe_c01421{left:97.920000pt;}
.x2_c01421{left:99.200000pt;}
.x1f_c01421{left:136.320000pt;}
.x1c_c01421{left:154.880000pt;}
.x28_c01421{left:163.840000pt;}
.x6_c01421{left:165.760000pt;}
.x3_c01421{left:174.720000pt;}
.x10_c01421{left:184.320000pt;}
.x1d_c01421{left:192.640000pt;}
.x1a_c01421{left:203.520000pt;}
.x7_c01421{left:213.760000pt;}
.x12_c01421{left:222.720000pt;}
.x23_c01421{left:231.680000pt;}
.x5_c01421{left:232.960000pt;}
.x17_c01421{left:241.920000pt;}
.x1e_c01421{left:251.520000pt;}
.x18_c01421{left:261.120000pt;}
.x8_c01421{left:263.040000pt;}
.x13_c01421{left:271.360000pt;}
.x24_c01421{left:279.680000pt;}
.x4_c01421{left:280.960000pt;}
.x11_c01421{left:289.920000pt;}
.x19_c01421{left:309.120000pt;}
.x29_c01421{left:318.720000pt;}
.xb_c01421{left:329.600000pt;}
.x22_c01421{left:337.920000pt;}
.x14_c01421{left:346.240000pt;}
.x9_c01421{left:348.160000pt;}
.x25_c01421{left:364.800000pt;}
.x2a_c01421{left:366.080000pt;}
.xc_c01421{left:377.600000pt;}
.x15_c01421{left:385.920000pt;}
.xa_c01421{left:396.160000pt;}
.x2b_c01421{left:403.840000pt;}
.x26_c01421{left:413.440000pt;}
.xd_c01421{left:415.360000pt;}
.x16_c01421{left:433.920000pt;}
.x27_c01421{left:460.160000pt;}
.x3e_c01421{left:508.160000pt;}
.x3d_c01421{left:509.440000pt;}
.x35_c01421{left:528.000000pt;}
.x33_c01421{left:529.920000pt;}
.x40_c01421{left:556.160000pt;}
.x39_c01421{left:557.440000pt;}
.x2d_c01421{left:559.360000pt;}
.x3b_c01421{left:584.320000pt;}
.x2c_c01421{left:585.600000pt;}
.x2e_c01421{left:587.520000pt;}
.x31_c01421{left:588.800000pt;}
.x36_c01421{left:595.200000pt;}
.x34_c01421{left:597.120000pt;}
.x3c_c01421{left:614.400000pt;}
.x2f_c01421{left:616.960000pt;}
.x3f_c01421{left:620.800000pt;}
.x3a_c01421{left:622.080000pt;}
.x37_c01421{left:624.000000pt;}
.x32_c01421{left:625.920000pt;}
.x38_c01421{left:641.920000pt;}
.x30_c01421{left:643.840000pt;}
}





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

.ir_c01422:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01422{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01422;src:url('chunks/assets/font_810ac75a78c92cc4323d7789.woff2')format("woff");}.ff1_c01422{font-family:ff1_c01422;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3d_c01422{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);}
.mb_c01422{transform:matrix(0.229950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229950,0.000000,0.000000,0.250000,0,0);}
.m25_c01422{transform:matrix(0.232475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232475,0.000000,0.000000,0.250000,0,0);}
.m49_c01422{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m14_c01422{transform:matrix(0.235850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235850,0.000000,0.000000,0.250000,0,0);}
.m4b_c01422{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m7_c01422{transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);}
.m33_c01422{transform:matrix(0.242050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242050,0.000000,0.000000,0.250000,0,0);}
.m4_c01422{transform:matrix(0.242775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242775,0.000000,0.000000,0.250000,0,0);}
.m20_c01422{transform:matrix(0.243675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243675,0.000000,0.000000,0.250000,0,0);}
.m22_c01422{transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);}
.m2d_c01422{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m21_c01422{transform:matrix(0.244975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244975,0.000000,0.000000,0.250000,0,0);}
.m16_c01422{transform:matrix(0.245475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245475,0.000000,0.000000,0.250000,0,0);}
.m45_c01422{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m28_c01422{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01422{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1_c01422{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m2_c01422{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);}
.m2b_c01422{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m19_c01422{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_c01422{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);}
.m2f_c01422{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01422{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);}
.m27_c01422{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_c01422{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m46_c01422{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.me_c01422{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);}
.m2a_c01422{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);}
.m40_c01422{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m5_c01422{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mc_c01422{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m36_c01422{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m9_c01422{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01422{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m18_c01422{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01422{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01422{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m48_c01422{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m44_c01422{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01422{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01422{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01422{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01422{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);}
.m43_c01422{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01422{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);}
.m2c_c01422{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m17_c01422{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01422{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);}
.m3a_c01422{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m23_c01422{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_c01422{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m41_c01422{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);}
.m29_c01422{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);}
.mf_c01422{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m24_c01422{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);}
.m34_c01422{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m6_c01422{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01422{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m3_c01422{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m0_c01422{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);}
.m13_c01422{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m30_c01422{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01422{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);}
.m39_c01422{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.md_c01422{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m26_c01422{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);}
.m38_c01422{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);}
.m32_c01422{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m12_c01422{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m37_c01422{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);}
.m35_c01422{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);}
.m1a_c01422{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m10_c01422{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m42_c01422{transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);}
.m47_c01422{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01422{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);}
.m31_c01422{transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);}
.v0_c01422{vertical-align:0.000000px;}
.v1_c01422{vertical-align:14.400000px;}
.ls0_c01422{letter-spacing:0.000000px;}
.sc__c01422{text-shadow:none;}
.sc0_c01422{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01422{-webkit-text-stroke:0px transparent;}
.sc0_c01422{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01422{word-spacing:-10.401840px;}
.ws2_c01422{word-spacing:0.000000px;}
.ws1_c01422{word-spacing:49.073040px;}
.fc0_c01422{color:transparent;}
.fsb_c01422{font-size:17.280000px;}
.fsa_c01422{font-size:25.920000px;}
.fsd_c01422{font-size:37.440000px;}
.fs10_c01422{font-size:40.320000px;}
.fsc_c01422{font-size:43.200000px;}
.fs9_c01422{font-size:48.960000px;}
.fs5_c01422{font-size:51.840000px;}
.fs6_c01422{font-size:54.720000px;}
.fse_c01422{font-size:57.600000px;}
.fs0_c01422{font-size:60.480000px;}
.fs4_c01422{font-size:63.360000px;}
.fs7_c01422{font-size:66.240000px;}
.fsf_c01422{font-size:69.120000px;}
.fs2_c01422{font-size:72.000000px;}
.fs1_c01422{font-size:74.880000px;}
.fs3_c01422{font-size:77.760000px;}
.fs8_c01422{font-size:80.640000px;}
.y0_c01422{bottom:0.000000px;}
.y47_c01422{bottom:65.520000px;}
.y46_c01422{bottom:66.960000px;}
.y41_c01422{bottom:95.760000px;}
.y44_c01422{bottom:96.480000px;}
.y42_c01422{bottom:97.200000px;}
.y40_c01422{bottom:99.360000px;}
.y43_c01422{bottom:100.080000px;}
.y45_c01422{bottom:100.800000px;}
.y3d_c01422{bottom:138.960000px;}
.y3f_c01422{bottom:139.680000px;}
.y3e_c01422{bottom:141.120000px;}
.y3b_c01422{bottom:142.560000px;}
.y68_c01422{bottom:144.000000px;}
.y67_c01422{bottom:146.160000px;}
.y3c_c01422{bottom:146.880000px;}
.y3a_c01422{bottom:182.880000px;}
.y39_c01422{bottom:186.480000px;}
.y66_c01422{bottom:187.200000px;}
.y65_c01422{bottom:187.920000px;}
.y38_c01422{bottom:226.080000px;}
.y37_c01422{bottom:229.680000px;}
.y64_c01422{bottom:231.120000px;}
.y36_c01422{bottom:270.000000px;}
.y35_c01422{bottom:272.160000px;}
.y62_c01422{bottom:272.880000px;}
.y63_c01422{bottom:273.600000px;}
.y33_c01422{bottom:313.200000px;}
.y34_c01422{bottom:313.920000px;}
.y32_c01422{bottom:316.080000px;}
.y60_c01422{bottom:317.520000px;}
.y61_c01422{bottom:318.240000px;}
.y2f_c01422{bottom:356.400000px;}
.y31_c01422{bottom:357.120000px;}
.y30_c01422{bottom:357.840000px;}
.y2e_c01422{bottom:358.560000px;}
.y5d_c01422{bottom:359.280000px;}
.y5e_c01422{bottom:360.000000px;}
.y5f_c01422{bottom:361.440000px;}
.y2b_c01422{bottom:399.600000px;}
.y2a_c01422{bottom:401.760000px;}
.y2c_c01422{bottom:402.480000px;}
.y2d_c01422{bottom:403.200000px;}
.y29_c01422{bottom:446.400000px;}
.y28_c01422{bottom:447.120000px;}
.y27_c01422{bottom:496.800000px;}
.y5c_c01422{bottom:498.960000px;}
.y26_c01422{bottom:499.680000px;}
.y23_c01422{bottom:540.000000px;}
.y25_c01422{bottom:540.720000px;}
.y24_c01422{bottom:541.440000px;}
.y5b_c01422{bottom:542.160000px;}
.y22_c01422{bottom:542.880000px;}
.y5a_c01422{bottom:544.320000px;}
.y21_c01422{bottom:583.200000px;}
.y58_c01422{bottom:585.360000px;}
.y20_c01422{bottom:586.080000px;}
.y59_c01422{bottom:588.240000px;}
.y1f_c01422{bottom:626.400000px;}
.y1d_c01422{bottom:627.120000px;}
.y57_c01422{bottom:627.840000px;}
.y56_c01422{bottom:629.280000px;}
.y1c_c01422{bottom:630.000000px;}
.y1e_c01422{bottom:630.720000px;}
.y1b_c01422{bottom:669.600000px;}
.y19_c01422{bottom:670.320000px;}
.y55_c01422{bottom:671.760000px;}
.y54_c01422{bottom:672.480000px;}
.y18_c01422{bottom:673.200000px;}
.y1a_c01422{bottom:674.640000px;}
.y17_c01422{bottom:714.240000px;}
.y53_c01422{bottom:714.960000px;}
.y16_c01422{bottom:716.400000px;}
.y15_c01422{bottom:757.440000px;}
.y51_c01422{bottom:758.160000px;}
.y52_c01422{bottom:758.880000px;}
.y14_c01422{bottom:760.320000px;}
.y13_c01422{bottom:800.640000px;}
.yf_c01422{bottom:801.360000px;}
.ye_c01422{bottom:802.800000px;}
.y11_c01422{bottom:803.520000px;}
.y12_c01422{bottom:804.240000px;}
.y10_c01422{bottom:805.680000px;}
.yb_c01422{bottom:897.120000px;}
.yd_c01422{bottom:898.560000px;}
.y50_c01422{bottom:899.280000px;}
.ya_c01422{bottom:900.000000px;}
.yc_c01422{bottom:901.440000px;}
.y4e_c01422{bottom:939.600000px;}
.y7_c01422{bottom:940.320000px;}
.y8_c01422{bottom:941.760000px;}
.y4f_c01422{bottom:942.480000px;}
.y6_c01422{bottom:943.200000px;}
.y9_c01422{bottom:943.920000px;}
.y4c_c01422{bottom:982.800000px;}
.y4_c01422{bottom:983.520000px;}
.y5_c01422{bottom:984.240000px;}
.y4d_c01422{bottom:984.960000px;}
.y4b_c01422{bottom:985.680000px;}
.y3_c01422{bottom:986.400000px;}
.y4a_c01422{bottom:1025.280000px;}
.y49_c01422{bottom:1026.000000px;}
.y2_c01422{bottom:1026.720000px;}
.y1_c01422{bottom:1029.600000px;}
.y48_c01422{bottom:1097.280000px;}
.hd_c01422{height:15.550313px;}
.hc_c01422{height:23.325469px;}
.hf_c01422{height:33.692344px;}
.h12_c01422{height:36.284062px;}
.he_c01422{height:38.875781px;}
.hb_c01422{height:44.059219px;}
.h7_c01422{height:46.650937px;}
.h8_c01422{height:49.242656px;}
.h10_c01422{height:51.834375px;}
.h2_c01422{height:54.426094px;}
.h6_c01422{height:57.017812px;}
.h9_c01422{height:59.609531px;}
.h11_c01422{height:62.201250px;}
.h4_c01422{height:64.792969px;}
.h3_c01422{height:67.384687px;}
.h5_c01422{height:69.976406px;}
.ha_c01422{height:72.568125px;}
.h0_c01422{height:1153.440000px;}
.h1_c01422{height:1153.500000px;}
.w0_c01422{width:775.440000px;}
.w1_c01422{width:775.500000px;}
.x0_c01422{left:0.000000px;}
.x1_c01422{left:46.080000px;}
.x4_c01422{left:47.520000px;}
.x1c_c01422{left:77.760000px;}
.x1d_c01422{left:86.400000px;}
.x14_c01422{left:98.640000px;}
.x19_c01422{left:108.720000px;}
.xb_c01422{left:110.160000px;}
.x2_c01422{left:111.600000px;}
.x15_c01422{left:153.360000px;}
.x11_c01422{left:185.040000px;}
.xc_c01422{left:196.560000px;}
.x1b_c01422{left:206.640000px;}
.x7_c01422{left:208.080000px;}
.x3_c01422{left:209.520000px;}
.x10_c01422{left:228.960000px;}
.x1e_c01422{left:239.760000px;}
.xd_c01422{left:251.280000px;}
.x8_c01422{left:252.720000px;}
.x1f_c01422{left:261.360000px;}
.x5_c01422{left:293.760000px;}
.x20_c01422{left:304.560000px;}
.x9_c01422{left:306.720000px;}
.x12_c01422{left:316.800000px;}
.x1a_c01422{left:326.880000px;}
.xe_c01422{left:336.960000px;}
.x6_c01422{left:339.120000px;}
.x16_c01422{left:347.760000px;}
.x13_c01422{left:360.000000px;}
.xa_c01422{left:392.400000px;}
.x17_c01422{left:400.320000px;}
.x18_c01422{left:444.960000px;}
.x21_c01422{left:477.360000px;}
.xf_c01422{left:488.880000px;}
.x34_c01422{left:573.120000px;}
.x2c_c01422{left:574.560000px;}
.x30_c01422{left:594.000000px;}
.x23_c01422{left:596.160000px;}
.x37_c01422{left:617.760000px;}
.x35_c01422{left:624.960000px;}
.x2e_c01422{left:626.400000px;}
.x29_c01422{left:627.840000px;}
.x26_c01422{left:630.000000px;}
.x22_c01422{left:641.520000px;}
.x33_c01422{left:658.080000px;}
.x2a_c01422{left:660.960000px;}
.x27_c01422{left:662.400000px;}
.x38_c01422{left:668.160000px;}
.x31_c01422{left:670.320000px;}
.x24_c01422{left:673.200000px;}
.x36_c01422{left:691.200000px;}
.x2f_c01422{left:692.640000px;}
.x32_c01422{left:700.560000px;}
.x2d_c01422{left:702.720000px;}
.x28_c01422{left:704.160000px;}
.x25_c01422{left:705.600000px;}
.x2b_c01422{left:723.600000px;}
@media print{
.v0_c01422{vertical-align:0.000000pt;}
.v1_c01422{vertical-align:12.800000pt;}
.ls0_c01422{letter-spacing:0.000000pt;}
.ws0_c01422{word-spacing:-9.246080pt;}
.ws2_c01422{word-spacing:0.000000pt;}
.ws1_c01422{word-spacing:43.620480pt;}
.fsb_c01422{font-size:15.360000pt;}
.fsa_c01422{font-size:23.040000pt;}
.fsd_c01422{font-size:33.280000pt;}
.fs10_c01422{font-size:35.840000pt;}
.fsc_c01422{font-size:38.400000pt;}
.fs9_c01422{font-size:43.520000pt;}
.fs5_c01422{font-size:46.080000pt;}
.fs6_c01422{font-size:48.640000pt;}
.fse_c01422{font-size:51.200000pt;}
.fs0_c01422{font-size:53.760000pt;}
.fs4_c01422{font-size:56.320000pt;}
.fs7_c01422{font-size:58.880000pt;}
.fsf_c01422{font-size:61.440000pt;}
.fs2_c01422{font-size:64.000000pt;}
.fs1_c01422{font-size:66.560000pt;}
.fs3_c01422{font-size:69.120000pt;}
.fs8_c01422{font-size:71.680000pt;}
.y0_c01422{bottom:0.000000pt;}
.y47_c01422{bottom:58.240000pt;}
.y46_c01422{bottom:59.520000pt;}
.y41_c01422{bottom:85.120000pt;}
.y44_c01422{bottom:85.760000pt;}
.y42_c01422{bottom:86.400000pt;}
.y40_c01422{bottom:88.320000pt;}
.y43_c01422{bottom:88.960000pt;}
.y45_c01422{bottom:89.600000pt;}
.y3d_c01422{bottom:123.520000pt;}
.y3f_c01422{bottom:124.160000pt;}
.y3e_c01422{bottom:125.440000pt;}
.y3b_c01422{bottom:126.720000pt;}
.y68_c01422{bottom:128.000000pt;}
.y67_c01422{bottom:129.920000pt;}
.y3c_c01422{bottom:130.560000pt;}
.y3a_c01422{bottom:162.560000pt;}
.y39_c01422{bottom:165.760000pt;}
.y66_c01422{bottom:166.400000pt;}
.y65_c01422{bottom:167.040000pt;}
.y38_c01422{bottom:200.960000pt;}
.y37_c01422{bottom:204.160000pt;}
.y64_c01422{bottom:205.440000pt;}
.y36_c01422{bottom:240.000000pt;}
.y35_c01422{bottom:241.920000pt;}
.y62_c01422{bottom:242.560000pt;}
.y63_c01422{bottom:243.200000pt;}
.y33_c01422{bottom:278.400000pt;}
.y34_c01422{bottom:279.040000pt;}
.y32_c01422{bottom:280.960000pt;}
.y60_c01422{bottom:282.240000pt;}
.y61_c01422{bottom:282.880000pt;}
.y2f_c01422{bottom:316.800000pt;}
.y31_c01422{bottom:317.440000pt;}
.y30_c01422{bottom:318.080000pt;}
.y2e_c01422{bottom:318.720000pt;}
.y5d_c01422{bottom:319.360000pt;}
.y5e_c01422{bottom:320.000000pt;}
.y5f_c01422{bottom:321.280000pt;}
.y2b_c01422{bottom:355.200000pt;}
.y2a_c01422{bottom:357.120000pt;}
.y2c_c01422{bottom:357.760000pt;}
.y2d_c01422{bottom:358.400000pt;}
.y29_c01422{bottom:396.800000pt;}
.y28_c01422{bottom:397.440000pt;}
.y27_c01422{bottom:441.600000pt;}
.y5c_c01422{bottom:443.520000pt;}
.y26_c01422{bottom:444.160000pt;}
.y23_c01422{bottom:480.000000pt;}
.y25_c01422{bottom:480.640000pt;}
.y24_c01422{bottom:481.280000pt;}
.y5b_c01422{bottom:481.920000pt;}
.y22_c01422{bottom:482.560000pt;}
.y5a_c01422{bottom:483.840000pt;}
.y21_c01422{bottom:518.400000pt;}
.y58_c01422{bottom:520.320000pt;}
.y20_c01422{bottom:520.960000pt;}
.y59_c01422{bottom:522.880000pt;}
.y1f_c01422{bottom:556.800000pt;}
.y1d_c01422{bottom:557.440000pt;}
.y57_c01422{bottom:558.080000pt;}
.y56_c01422{bottom:559.360000pt;}
.y1c_c01422{bottom:560.000000pt;}
.y1e_c01422{bottom:560.640000pt;}
.y1b_c01422{bottom:595.200000pt;}
.y19_c01422{bottom:595.840000pt;}
.y55_c01422{bottom:597.120000pt;}
.y54_c01422{bottom:597.760000pt;}
.y18_c01422{bottom:598.400000pt;}
.y1a_c01422{bottom:599.680000pt;}
.y17_c01422{bottom:634.880000pt;}
.y53_c01422{bottom:635.520000pt;}
.y16_c01422{bottom:636.800000pt;}
.y15_c01422{bottom:673.280000pt;}
.y51_c01422{bottom:673.920000pt;}
.y52_c01422{bottom:674.560000pt;}
.y14_c01422{bottom:675.840000pt;}
.y13_c01422{bottom:711.680000pt;}
.yf_c01422{bottom:712.320000pt;}
.ye_c01422{bottom:713.600000pt;}
.y11_c01422{bottom:714.240000pt;}
.y12_c01422{bottom:714.880000pt;}
.y10_c01422{bottom:716.160000pt;}
.yb_c01422{bottom:797.440000pt;}
.yd_c01422{bottom:798.720000pt;}
.y50_c01422{bottom:799.360000pt;}
.ya_c01422{bottom:800.000000pt;}
.yc_c01422{bottom:801.280000pt;}
.y4e_c01422{bottom:835.200000pt;}
.y7_c01422{bottom:835.840000pt;}
.y8_c01422{bottom:837.120000pt;}
.y4f_c01422{bottom:837.760000pt;}
.y6_c01422{bottom:838.400000pt;}
.y9_c01422{bottom:839.040000pt;}
.y4c_c01422{bottom:873.600000pt;}
.y4_c01422{bottom:874.240000pt;}
.y5_c01422{bottom:874.880000pt;}
.y4d_c01422{bottom:875.520000pt;}
.y4b_c01422{bottom:876.160000pt;}
.y3_c01422{bottom:876.800000pt;}
.y4a_c01422{bottom:911.360000pt;}
.y49_c01422{bottom:912.000000pt;}
.y2_c01422{bottom:912.640000pt;}
.y1_c01422{bottom:915.200000pt;}
.y48_c01422{bottom:975.360000pt;}
.hd_c01422{height:13.822500pt;}
.hc_c01422{height:20.733750pt;}
.hf_c01422{height:29.948750pt;}
.h12_c01422{height:32.252500pt;}
.he_c01422{height:34.556250pt;}
.hb_c01422{height:39.163750pt;}
.h7_c01422{height:41.467500pt;}
.h8_c01422{height:43.771250pt;}
.h10_c01422{height:46.075000pt;}
.h2_c01422{height:48.378750pt;}
.h6_c01422{height:50.682500pt;}
.h9_c01422{height:52.986250pt;}
.h11_c01422{height:55.290000pt;}
.h4_c01422{height:57.593750pt;}
.h3_c01422{height:59.897500pt;}
.h5_c01422{height:62.201250pt;}
.ha_c01422{height:64.505000pt;}
.h0_c01422{height:1025.280000pt;}
.h1_c01422{height:1025.333333pt;}
.w0_c01422{width:689.280000pt;}
.w1_c01422{width:689.333333pt;}
.x0_c01422{left:0.000000pt;}
.x1_c01422{left:40.960000pt;}
.x4_c01422{left:42.240000pt;}
.x1c_c01422{left:69.120000pt;}
.x1d_c01422{left:76.800000pt;}
.x14_c01422{left:87.680000pt;}
.x19_c01422{left:96.640000pt;}
.xb_c01422{left:97.920000pt;}
.x2_c01422{left:99.200000pt;}
.x15_c01422{left:136.320000pt;}
.x11_c01422{left:164.480000pt;}
.xc_c01422{left:174.720000pt;}
.x1b_c01422{left:183.680000pt;}
.x7_c01422{left:184.960000pt;}
.x3_c01422{left:186.240000pt;}
.x10_c01422{left:203.520000pt;}
.x1e_c01422{left:213.120000pt;}
.xd_c01422{left:223.360000pt;}
.x8_c01422{left:224.640000pt;}
.x1f_c01422{left:232.320000pt;}
.x5_c01422{left:261.120000pt;}
.x20_c01422{left:270.720000pt;}
.x9_c01422{left:272.640000pt;}
.x12_c01422{left:281.600000pt;}
.x1a_c01422{left:290.560000pt;}
.xe_c01422{left:299.520000pt;}
.x6_c01422{left:301.440000pt;}
.x16_c01422{left:309.120000pt;}
.x13_c01422{left:320.000000pt;}
.xa_c01422{left:348.800000pt;}
.x17_c01422{left:355.840000pt;}
.x18_c01422{left:395.520000pt;}
.x21_c01422{left:424.320000pt;}
.xf_c01422{left:434.560000pt;}
.x34_c01422{left:509.440000pt;}
.x2c_c01422{left:510.720000pt;}
.x30_c01422{left:528.000000pt;}
.x23_c01422{left:529.920000pt;}
.x37_c01422{left:549.120000pt;}
.x35_c01422{left:555.520000pt;}
.x2e_c01422{left:556.800000pt;}
.x29_c01422{left:558.080000pt;}
.x26_c01422{left:560.000000pt;}
.x22_c01422{left:570.240000pt;}
.x33_c01422{left:584.960000pt;}
.x2a_c01422{left:587.520000pt;}
.x27_c01422{left:588.800000pt;}
.x38_c01422{left:593.920000pt;}
.x31_c01422{left:595.840000pt;}
.x24_c01422{left:598.400000pt;}
.x36_c01422{left:614.400000pt;}
.x2f_c01422{left:615.680000pt;}
.x32_c01422{left:622.720000pt;}
.x2d_c01422{left:624.640000pt;}
.x28_c01422{left:625.920000pt;}
.x25_c01422{left:627.200000pt;}
.x2b_c01422{left:643.200000pt;}
}





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

.ir_c01423:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01423{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01423;src:url('chunks/assets/font_4ee364edee7f3699f478b88a.woff2')format("woff");}.ff1_c01423{font-family:ff1_c01423;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4e_c01423{transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);}
.m36_c01423{transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);}
.mc_c01423{transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);}
.m55_c01423{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.m1f_c01423{transform:matrix(0.201275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201275,0.000000,0.000000,0.250000,0,0);}
.m57_c01423{transform:matrix(0.214225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214225,0.000000,0.000000,0.250000,0,0);}
.mf_c01423{transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);}
.m26_c01423{transform:matrix(0.227325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227325,0.000000,0.000000,0.250000,0,0);}
.m20_c01423{transform:matrix(0.232650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232650,0.000000,0.000000,0.250000,0,0);}
.m1a_c01423{transform:matrix(0.234725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234725,0.000000,0.000000,0.250000,0,0);}
.m51_c01423{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m2_c01423{transform:matrix(0.240975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240975,0.000000,0.000000,0.250000,0,0);}
.m24_c01423{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m12_c01423{transform:matrix(0.247900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247900,0.000000,0.000000,0.250000,0,0);}
.m15_c01423{transform:matrix(0.247950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247950,0.000000,0.000000,0.250000,0,0);}
.m29_c01423{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m4f_c01423{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m35_c01423{transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);}
.m1b_c01423{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);}
.m31_c01423{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m11_c01423{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);}
.m45_c01423{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);}
.m33_c01423{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m32_c01423{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.me_c01423{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.ma_c01423{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m3_c01423{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);}
.m4a_c01423{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m27_c01423{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);}
.m2f_c01423{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m17_c01423{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m22_c01423{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01423{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mb_c01423{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m5_c01423{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m21_c01423{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01423{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m8_c01423{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.md_c01423{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m23_c01423{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01423{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m9_c01423{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01423{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);}
.m34_c01423{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);}
.m3f_c01423{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_c01423{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m19_c01423{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m37_c01423{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);}
.m30_c01423{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);}
.m38_c01423{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m28_c01423{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);}
.m49_c01423{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m25_c01423{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m0_c01423{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);}
.m3c_c01423{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);}
.m14_c01423{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m56_c01423{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m1_c01423{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m47_c01423{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m6_c01423{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m10_c01423{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);}
.m58_c01423{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m7_c01423{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);}
.m46_c01423{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);}
.m3a_c01423{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m18_c01423{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m44_c01423{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);}
.m2c_c01423{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m48_c01423{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m40_c01423{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01423{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);}
.m42_c01423{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01423{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m39_c01423{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m4_c01423{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m50_c01423{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m43_c01423{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01423{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01423{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m16_c01423{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01423{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m52_c01423{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01423{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m59_c01423{transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);}
.m53_c01423{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01423{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m41_c01423{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01423{transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01423{transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);}
.m54_c01423{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);}
.v3_c01423{vertical-align:-8.640000px;}
.v0_c01423{vertical-align:0.000000px;}
.v1_c01423{vertical-align:5.760000px;}
.v2_c01423{vertical-align:8.640000px;}
.ls2_c01423{letter-spacing:0.000000px;}
.ls1_c01423{letter-spacing:25.818000px;}
.ls0_c01423{letter-spacing:76.773120px;}
.sc__c01423{text-shadow:none;}
.sc0_c01423{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01423{-webkit-text-stroke:0px transparent;}
.sc0_c01423{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01423{word-spacing:0.000000px;}
.ws0_c01423{word-spacing:1.489200px;}
.fc0_c01423{color:transparent;}
.fs10_c01423{font-size:20.160000px;}
.fsd_c01423{font-size:23.040000px;}
.fs11_c01423{font-size:25.920000px;}
.fs12_c01423{font-size:37.440000px;}
.fsa_c01423{font-size:40.320000px;}
.fsc_c01423{font-size:43.200000px;}
.fse_c01423{font-size:46.080000px;}
.fsf_c01423{font-size:48.960000px;}
.fs4_c01423{font-size:51.840000px;}
.fs5_c01423{font-size:54.720000px;}
.fs7_c01423{font-size:57.600000px;}
.fs1_c01423{font-size:60.480000px;}
.fs6_c01423{font-size:63.360000px;}
.fs9_c01423{font-size:66.240000px;}
.fs8_c01423{font-size:69.120000px;}
.fs0_c01423{font-size:72.000000px;}
.fs3_c01423{font-size:74.880000px;}
.fs2_c01423{font-size:77.760000px;}
.fsb_c01423{font-size:86.400000px;}
.y0_c01423{bottom:0.000000px;}
.y63_c01423{bottom:45.360000px;}
.y62_c01423{bottom:74.880000px;}
.y5f_c01423{bottom:75.600000px;}
.y60_c01423{bottom:77.040000px;}
.y6c_c01423{bottom:78.480000px;}
.y61_c01423{bottom:79.200000px;}
.y5e_c01423{bottom:107.280000px;}
.y68_c01423{bottom:108.000000px;}
.y5c_c01423{bottom:108.720000px;}
.y6b_c01423{bottom:109.440000px;}
.y5d_c01423{bottom:110.160000px;}
.y69_c01423{bottom:110.880000px;}
.y5b_c01423{bottom:112.320000px;}
.y6a_c01423{bottom:113.040000px;}
.y58_c01423{bottom:139.680000px;}
.y57_c01423{bottom:140.400000px;}
.y59_c01423{bottom:141.840000px;}
.y5a_c01423{bottom:142.560000px;}
.y66_c01423{bottom:143.280000px;}
.y67_c01423{bottom:145.440000px;}
.y65_c01423{bottom:173.520000px;}
.y56_c01423{bottom:174.240000px;}
.y54_c01423{bottom:174.960000px;}
.y53_c01423{bottom:175.680000px;}
.y52_c01423{bottom:176.400000px;}
.y64_c01423{bottom:177.120000px;}
.y55_c01423{bottom:177.840000px;}
.y50_c01423{bottom:312.480000px;}
.y4f_c01423{bottom:313.920000px;}
.y4d_c01423{bottom:315.360000px;}
.y4e_c01423{bottom:316.080000px;}
.y51_c01423{bottom:316.800000px;}
.y48_c01423{bottom:355.680000px;}
.y45_c01423{bottom:357.120000px;}
.y4a_c01423{bottom:357.840000px;}
.y46_c01423{bottom:358.560000px;}
.y47_c01423{bottom:359.280000px;}
.y49_c01423{bottom:360.000000px;}
.y44_c01423{bottom:361.440000px;}
.y4c_c01423{bottom:362.160000px;}
.y4b_c01423{bottom:362.880000px;}
.y38_c01423{bottom:464.400000px;}
.y42_c01423{bottom:465.840000px;}
.y37_c01423{bottom:467.280000px;}
.y43_c01423{bottom:468.000000px;}
.y35_c01423{bottom:507.600000px;}
.y36_c01423{bottom:508.320000px;}
.y3f_c01423{bottom:509.040000px;}
.y34_c01423{bottom:509.760000px;}
.y41_c01423{bottom:510.480000px;}
.y40_c01423{bottom:511.200000px;}
.y33_c01423{bottom:550.080000px;}
.y32_c01423{bottom:555.120000px;}
.y31_c01423{bottom:583.200000px;}
.y2d_c01423{bottom:583.920000px;}
.y2e_c01423{bottom:584.640000px;}
.y2c_c01423{bottom:586.080000px;}
.y2f_c01423{bottom:586.800000px;}
.y3e_c01423{bottom:587.520000px;}
.y30_c01423{bottom:588.960000px;}
.y2b_c01423{bottom:626.400000px;}
.y29_c01423{bottom:627.120000px;}
.y3d_c01423{bottom:628.560000px;}
.y28_c01423{bottom:630.000000px;}
.y2a_c01423{bottom:630.720000px;}
.y23_c01423{bottom:669.600000px;}
.y3b_c01423{bottom:671.760000px;}
.y3c_c01423{bottom:672.480000px;}
.y22_c01423{bottom:673.200000px;}
.y20_c01423{bottom:710.640000px;}
.y21_c01423{bottom:712.080000px;}
.y3a_c01423{bottom:712.800000px;}
.y1f_c01423{bottom:714.960000px;}
.y1e_c01423{bottom:755.280000px;}
.y1b_c01423{bottom:756.000000px;}
.y1c_c01423{bottom:757.440000px;}
.y39_c01423{bottom:758.160000px;}
.y1a_c01423{bottom:758.880000px;}
.y1d_c01423{bottom:759.600000px;}
.y19_c01423{bottom:798.480000px;}
.y18_c01423{bottom:799.200000px;}
.y27_c01423{bottom:799.920000px;}
.y26_c01423{bottom:800.640000px;}
.y17_c01423{bottom:801.360000px;}
.y16_c01423{bottom:842.400000px;}
.y15_c01423{bottom:843.120000px;}
.y13_c01423{bottom:843.840000px;}
.y24_c01423{bottom:844.560000px;}
.y12_c01423{bottom:845.280000px;}
.y14_c01423{bottom:847.440000px;}
.y11_c01423{bottom:884.880000px;}
.y25_c01423{bottom:885.600000px;}
.yf_c01423{bottom:886.320000px;}
.ye_c01423{bottom:887.760000px;}
.y10_c01423{bottom:889.920000px;}
.yd_c01423{bottom:933.840000px;}
.yb_c01423{bottom:981.360000px;}
.y8_c01423{bottom:982.080000px;}
.y6_c01423{bottom:984.240000px;}
.yc_c01423{bottom:984.960000px;}
.y5_c01423{bottom:986.400000px;}
.y7_c01423{bottom:987.120000px;}
.ya_c01423{bottom:1026.000000px;}
.y4_c01423{bottom:1026.720000px;}
.y3_c01423{bottom:1027.440000px;}
.y9_c01423{bottom:1028.160000px;}
.y2_c01423{bottom:1029.600000px;}
.y1_c01423{bottom:1094.400000px;}
.h13_c01423{height:18.142031px;}
.hf_c01423{height:20.733750px;}
.h14_c01423{height:23.325469px;}
.h15_c01423{height:33.692344px;}
.hc_c01423{height:36.284062px;}
.he_c01423{height:38.875781px;}
.h11_c01423{height:41.467500px;}
.h12_c01423{height:44.059219px;}
.h6_c01423{height:46.650937px;}
.h7_c01423{height:49.242656px;}
.h9_c01423{height:51.834375px;}
.h3_c01423{height:54.426094px;}
.h8_c01423{height:57.017812px;}
.h10_c01423{height:57.882656px;}
.hb_c01423{height:59.609531px;}
.ha_c01423{height:62.201250px;}
.h2_c01423{height:64.792969px;}
.h5_c01423{height:67.384687px;}
.h4_c01423{height:69.976406px;}
.hd_c01423{height:77.751563px;}
.h0_c01423{height:1154.880000px;}
.h1_c01423{height:1155.000000px;}
.w0_c01423{width:776.160000px;}
.w1_c01423{width:776.250000px;}
.x0_c01423{left:0.000000px;}
.x3c_c01423{left:49.680000px;}
.x2_c01423{left:52.560000px;}
.x44_c01423{left:72.000000px;}
.x4c_c01423{left:80.640000px;}
.x2e_c01423{left:82.080000px;}
.xf_c01423{left:105.840000px;}
.x3d_c01423{left:113.040000px;}
.x25_c01423{left:114.480000px;}
.x11_c01423{left:115.920000px;}
.x3_c01423{left:118.080000px;}
.x4d_c01423{left:146.880000px;}
.x3e_c01423{left:157.680000px;}
.x24_c01423{left:159.120000px;}
.x4e_c01423{left:167.040000px;}
.x45_c01423{left:168.480000px;}
.x50_c01423{left:177.840000px;}
.x46_c01423{left:190.080000px;}
.x3f_c01423{left:191.520000px;}
.x2f_c01423{left:201.600000px;}
.x13_c01423{left:203.760000px;}
.x51_c01423{left:210.240000px;}
.x47_c01423{left:211.680000px;}
.x1c_c01423{left:213.120000px;}
.x4_c01423{left:214.560000px;}
.x48_c01423{left:223.200000px;}
.x52_c01423{left:233.280000px;}
.x4f_c01423{left:234.720000px;}
.x30_c01423{left:244.800000px;}
.x16_c01423{left:246.240000px;}
.x10_c01423{left:257.040000px;}
.x1d_c01423{left:265.680000px;}
.x8_c01423{left:267.840000px;}
.x12_c01423{left:269.280000px;}
.x31_c01423{left:287.280000px;}
.x49_c01423{left:288.720000px;}
.x1f_c01423{left:298.800000px;}
.x14_c01423{left:300.240000px;}
.x1e_c01423{left:311.040000px;}
.x9_c01423{left:312.480000px;}
.x4a_c01423{left:319.680000px;}
.x4b_c01423{left:330.480000px;}
.x17_c01423{left:332.640000px;}
.x32_c01423{left:352.800000px;}
.x15_c01423{left:354.240000px;}
.x5_c01423{left:355.680000px;}
.x20_c01423{left:396.720000px;}
.xa_c01423{left:398.880000px;}
.x53_c01423{left:406.800000px;}
.x6_c01423{left:408.960000px;}
.x56_c01423{left:415.440000px;}
.x33_c01423{left:416.880000px;}
.x34_c01423{left:427.680000px;}
.x5b_c01423{left:437.040000px;}
.x21_c01423{left:438.480000px;}
.x40_c01423{left:439.920000px;}
.x54_c01423{left:447.840000px;}
.x22_c01423{left:451.440000px;}
.x55_c01423{left:470.160000px;}
.x41_c01423{left:492.480000px;}
.x5c_c01423{left:511.920000px;}
.x35_c01423{left:513.360000px;}
.x7_c01423{left:516.240000px;}
.x58_c01423{left:522.720000px;}
.x57_c01423{left:524.160000px;}
.x23_c01423{left:535.680000px;}
.x59_c01423{left:555.120000px;}
.x36_c01423{left:556.560000px;}
.x42_c01423{left:568.080000px;}
.x18_c01423{left:570.960000px;}
.x5a_c01423{left:578.160000px;}
.x29_c01423{left:579.600000px;}
.x1b_c01423{left:581.040000px;}
.x37_c01423{left:598.320000px;}
.x2d_c01423{left:600.480000px;}
.x43_c01423{left:619.920000px;}
.x26_c01423{left:632.880000px;}
.xb_c01423{left:635.040000px;}
.x38_c01423{left:641.520000px;}
.x1_c01423{left:661.680000px;}
.x2b_c01423{left:665.280000px;}
.x19_c01423{left:667.440000px;}
.xc_c01423{left:668.880000px;}
.x5d_c01423{left:674.640000px;}
.x27_c01423{left:676.800000px;}
.xe_c01423{left:678.240000px;}
.x39_c01423{left:684.720000px;}
.x3a_c01423{left:695.520000px;}
.x1a_c01423{left:700.560000px;}
.x3b_c01423{left:705.600000px;}
.x2c_c01423{left:707.040000px;}
.x2a_c01423{left:708.480000px;}
.x28_c01423{left:709.920000px;}
.xd_c01423{left:711.360000px;}
.x5e_c01423{left:714.960000px;}
@media print{
.v3_c01423{vertical-align:-7.680000pt;}
.v0_c01423{vertical-align:0.000000pt;}
.v1_c01423{vertical-align:5.120000pt;}
.v2_c01423{vertical-align:7.680000pt;}
.ls2_c01423{letter-spacing:0.000000pt;}
.ls1_c01423{letter-spacing:22.949333pt;}
.ls0_c01423{letter-spacing:68.242773pt;}
.ws1_c01423{word-spacing:0.000000pt;}
.ws0_c01423{word-spacing:1.323733pt;}
.fs10_c01423{font-size:17.920000pt;}
.fsd_c01423{font-size:20.480000pt;}
.fs11_c01423{font-size:23.040000pt;}
.fs12_c01423{font-size:33.280000pt;}
.fsa_c01423{font-size:35.840000pt;}
.fsc_c01423{font-size:38.400000pt;}
.fse_c01423{font-size:40.960000pt;}
.fsf_c01423{font-size:43.520000pt;}
.fs4_c01423{font-size:46.080000pt;}
.fs5_c01423{font-size:48.640000pt;}
.fs7_c01423{font-size:51.200000pt;}
.fs1_c01423{font-size:53.760000pt;}
.fs6_c01423{font-size:56.320000pt;}
.fs9_c01423{font-size:58.880000pt;}
.fs8_c01423{font-size:61.440000pt;}
.fs0_c01423{font-size:64.000000pt;}
.fs3_c01423{font-size:66.560000pt;}
.fs2_c01423{font-size:69.120000pt;}
.fsb_c01423{font-size:76.800000pt;}
.y0_c01423{bottom:0.000000pt;}
.y63_c01423{bottom:40.320000pt;}
.y62_c01423{bottom:66.560000pt;}
.y5f_c01423{bottom:67.200000pt;}
.y60_c01423{bottom:68.480000pt;}
.y6c_c01423{bottom:69.760000pt;}
.y61_c01423{bottom:70.400000pt;}
.y5e_c01423{bottom:95.360000pt;}
.y68_c01423{bottom:96.000000pt;}
.y5c_c01423{bottom:96.640000pt;}
.y6b_c01423{bottom:97.280000pt;}
.y5d_c01423{bottom:97.920000pt;}
.y69_c01423{bottom:98.560000pt;}
.y5b_c01423{bottom:99.840000pt;}
.y6a_c01423{bottom:100.480000pt;}
.y58_c01423{bottom:124.160000pt;}
.y57_c01423{bottom:124.800000pt;}
.y59_c01423{bottom:126.080000pt;}
.y5a_c01423{bottom:126.720000pt;}
.y66_c01423{bottom:127.360000pt;}
.y67_c01423{bottom:129.280000pt;}
.y65_c01423{bottom:154.240000pt;}
.y56_c01423{bottom:154.880000pt;}
.y54_c01423{bottom:155.520000pt;}
.y53_c01423{bottom:156.160000pt;}
.y52_c01423{bottom:156.800000pt;}
.y64_c01423{bottom:157.440000pt;}
.y55_c01423{bottom:158.080000pt;}
.y50_c01423{bottom:277.760000pt;}
.y4f_c01423{bottom:279.040000pt;}
.y4d_c01423{bottom:280.320000pt;}
.y4e_c01423{bottom:280.960000pt;}
.y51_c01423{bottom:281.600000pt;}
.y48_c01423{bottom:316.160000pt;}
.y45_c01423{bottom:317.440000pt;}
.y4a_c01423{bottom:318.080000pt;}
.y46_c01423{bottom:318.720000pt;}
.y47_c01423{bottom:319.360000pt;}
.y49_c01423{bottom:320.000000pt;}
.y44_c01423{bottom:321.280000pt;}
.y4c_c01423{bottom:321.920000pt;}
.y4b_c01423{bottom:322.560000pt;}
.y38_c01423{bottom:412.800000pt;}
.y42_c01423{bottom:414.080000pt;}
.y37_c01423{bottom:415.360000pt;}
.y43_c01423{bottom:416.000000pt;}
.y35_c01423{bottom:451.200000pt;}
.y36_c01423{bottom:451.840000pt;}
.y3f_c01423{bottom:452.480000pt;}
.y34_c01423{bottom:453.120000pt;}
.y41_c01423{bottom:453.760000pt;}
.y40_c01423{bottom:454.400000pt;}
.y33_c01423{bottom:488.960000pt;}
.y32_c01423{bottom:493.440000pt;}
.y31_c01423{bottom:518.400000pt;}
.y2d_c01423{bottom:519.040000pt;}
.y2e_c01423{bottom:519.680000pt;}
.y2c_c01423{bottom:520.960000pt;}
.y2f_c01423{bottom:521.600000pt;}
.y3e_c01423{bottom:522.240000pt;}
.y30_c01423{bottom:523.520000pt;}
.y2b_c01423{bottom:556.800000pt;}
.y29_c01423{bottom:557.440000pt;}
.y3d_c01423{bottom:558.720000pt;}
.y28_c01423{bottom:560.000000pt;}
.y2a_c01423{bottom:560.640000pt;}
.y23_c01423{bottom:595.200000pt;}
.y3b_c01423{bottom:597.120000pt;}
.y3c_c01423{bottom:597.760000pt;}
.y22_c01423{bottom:598.400000pt;}
.y20_c01423{bottom:631.680000pt;}
.y21_c01423{bottom:632.960000pt;}
.y3a_c01423{bottom:633.600000pt;}
.y1f_c01423{bottom:635.520000pt;}
.y1e_c01423{bottom:671.360000pt;}
.y1b_c01423{bottom:672.000000pt;}
.y1c_c01423{bottom:673.280000pt;}
.y39_c01423{bottom:673.920000pt;}
.y1a_c01423{bottom:674.560000pt;}
.y1d_c01423{bottom:675.200000pt;}
.y19_c01423{bottom:709.760000pt;}
.y18_c01423{bottom:710.400000pt;}
.y27_c01423{bottom:711.040000pt;}
.y26_c01423{bottom:711.680000pt;}
.y17_c01423{bottom:712.320000pt;}
.y16_c01423{bottom:748.800000pt;}
.y15_c01423{bottom:749.440000pt;}
.y13_c01423{bottom:750.080000pt;}
.y24_c01423{bottom:750.720000pt;}
.y12_c01423{bottom:751.360000pt;}
.y14_c01423{bottom:753.280000pt;}
.y11_c01423{bottom:786.560000pt;}
.y25_c01423{bottom:787.200000pt;}
.yf_c01423{bottom:787.840000pt;}
.ye_c01423{bottom:789.120000pt;}
.y10_c01423{bottom:791.040000pt;}
.yd_c01423{bottom:830.080000pt;}
.yb_c01423{bottom:872.320000pt;}
.y8_c01423{bottom:872.960000pt;}
.y6_c01423{bottom:874.880000pt;}
.yc_c01423{bottom:875.520000pt;}
.y5_c01423{bottom:876.800000pt;}
.y7_c01423{bottom:877.440000pt;}
.ya_c01423{bottom:912.000000pt;}
.y4_c01423{bottom:912.640000pt;}
.y3_c01423{bottom:913.280000pt;}
.y9_c01423{bottom:913.920000pt;}
.y2_c01423{bottom:915.200000pt;}
.y1_c01423{bottom:972.800000pt;}
.h13_c01423{height:16.126250pt;}
.hf_c01423{height:18.430000pt;}
.h14_c01423{height:20.733750pt;}
.h15_c01423{height:29.948750pt;}
.hc_c01423{height:32.252500pt;}
.he_c01423{height:34.556250pt;}
.h11_c01423{height:36.860000pt;}
.h12_c01423{height:39.163750pt;}
.h6_c01423{height:41.467500pt;}
.h7_c01423{height:43.771250pt;}
.h9_c01423{height:46.075000pt;}
.h3_c01423{height:48.378750pt;}
.h8_c01423{height:50.682500pt;}
.h10_c01423{height:51.451250pt;}
.hb_c01423{height:52.986250pt;}
.ha_c01423{height:55.290000pt;}
.h2_c01423{height:57.593750pt;}
.h5_c01423{height:59.897500pt;}
.h4_c01423{height:62.201250pt;}
.hd_c01423{height:69.112500pt;}
.h0_c01423{height:1026.560000pt;}
.h1_c01423{height:1026.666667pt;}
.w0_c01423{width:689.920000pt;}
.w1_c01423{width:690.000000pt;}
.x0_c01423{left:0.000000pt;}
.x3c_c01423{left:44.160000pt;}
.x2_c01423{left:46.720000pt;}
.x44_c01423{left:64.000000pt;}
.x4c_c01423{left:71.680000pt;}
.x2e_c01423{left:72.960000pt;}
.xf_c01423{left:94.080000pt;}
.x3d_c01423{left:100.480000pt;}
.x25_c01423{left:101.760000pt;}
.x11_c01423{left:103.040000pt;}
.x3_c01423{left:104.960000pt;}
.x4d_c01423{left:130.560000pt;}
.x3e_c01423{left:140.160000pt;}
.x24_c01423{left:141.440000pt;}
.x4e_c01423{left:148.480000pt;}
.x45_c01423{left:149.760000pt;}
.x50_c01423{left:158.080000pt;}
.x46_c01423{left:168.960000pt;}
.x3f_c01423{left:170.240000pt;}
.x2f_c01423{left:179.200000pt;}
.x13_c01423{left:181.120000pt;}
.x51_c01423{left:186.880000pt;}
.x47_c01423{left:188.160000pt;}
.x1c_c01423{left:189.440000pt;}
.x4_c01423{left:190.720000pt;}
.x48_c01423{left:198.400000pt;}
.x52_c01423{left:207.360000pt;}
.x4f_c01423{left:208.640000pt;}
.x30_c01423{left:217.600000pt;}
.x16_c01423{left:218.880000pt;}
.x10_c01423{left:228.480000pt;}
.x1d_c01423{left:236.160000pt;}
.x8_c01423{left:238.080000pt;}
.x12_c01423{left:239.360000pt;}
.x31_c01423{left:255.360000pt;}
.x49_c01423{left:256.640000pt;}
.x1f_c01423{left:265.600000pt;}
.x14_c01423{left:266.880000pt;}
.x1e_c01423{left:276.480000pt;}
.x9_c01423{left:277.760000pt;}
.x4a_c01423{left:284.160000pt;}
.x4b_c01423{left:293.760000pt;}
.x17_c01423{left:295.680000pt;}
.x32_c01423{left:313.600000pt;}
.x15_c01423{left:314.880000pt;}
.x5_c01423{left:316.160000pt;}
.x20_c01423{left:352.640000pt;}
.xa_c01423{left:354.560000pt;}
.x53_c01423{left:361.600000pt;}
.x6_c01423{left:363.520000pt;}
.x56_c01423{left:369.280000pt;}
.x33_c01423{left:370.560000pt;}
.x34_c01423{left:380.160000pt;}
.x5b_c01423{left:388.480000pt;}
.x21_c01423{left:389.760000pt;}
.x40_c01423{left:391.040000pt;}
.x54_c01423{left:398.080000pt;}
.x22_c01423{left:401.280000pt;}
.x55_c01423{left:417.920000pt;}
.x41_c01423{left:437.760000pt;}
.x5c_c01423{left:455.040000pt;}
.x35_c01423{left:456.320000pt;}
.x7_c01423{left:458.880000pt;}
.x58_c01423{left:464.640000pt;}
.x57_c01423{left:465.920000pt;}
.x23_c01423{left:476.160000pt;}
.x59_c01423{left:493.440000pt;}
.x36_c01423{left:494.720000pt;}
.x42_c01423{left:504.960000pt;}
.x18_c01423{left:507.520000pt;}
.x5a_c01423{left:513.920000pt;}
.x29_c01423{left:515.200000pt;}
.x1b_c01423{left:516.480000pt;}
.x37_c01423{left:531.840000pt;}
.x2d_c01423{left:533.760000pt;}
.x43_c01423{left:551.040000pt;}
.x26_c01423{left:562.560000pt;}
.xb_c01423{left:564.480000pt;}
.x38_c01423{left:570.240000pt;}
.x1_c01423{left:588.160000pt;}
.x2b_c01423{left:591.360000pt;}
.x19_c01423{left:593.280000pt;}
.xc_c01423{left:594.560000pt;}
.x5d_c01423{left:599.680000pt;}
.x27_c01423{left:601.600000pt;}
.xe_c01423{left:602.880000pt;}
.x39_c01423{left:608.640000pt;}
.x3a_c01423{left:618.240000pt;}
.x1a_c01423{left:622.720000pt;}
.x3b_c01423{left:627.200000pt;}
.x2c_c01423{left:628.480000pt;}
.x2a_c01423{left:629.760000pt;}
.x28_c01423{left:631.040000pt;}
.xd_c01423{left:632.320000pt;}
.x5e_c01423{left:635.520000pt;}
}





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

.ir_c01424:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01424{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01424;src:url('chunks/assets/font_9e2d51cca6d3375c42593c44.woff2')format("woff");}.ff1_c01424{font-family:ff1_c01424;line-height:1.109863;font-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_c01424{transform:matrix(0.225100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225100,0.000000,0.000000,0.250000,0,0);}
.m1e_c01424{transform:matrix(0.233425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233425,0.000000,0.000000,0.250000,0,0);}
.m55_c01424{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m4b_c01424{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_c01424{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);}
.m52_c01424{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m20_c01424{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);}
.m46_c01424{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m14_c01424{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01424{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.me_c01424{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m12_c01424{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m9_c01424{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mb_c01424{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mf_c01424{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m53_c01424{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.md_c01424{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.ma_c01424{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);}
.m4c_c01424{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m21_c01424{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);}
.m2a_c01424{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m1_c01424{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m42_c01424{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);}
.m2e_c01424{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m24_c01424{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.mc_c01424{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m31_c01424{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);}
.m4d_c01424{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m34_c01424{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);}
.m13_c01424{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01424{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);}
.m3a_c01424{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);}
.m15_c01424{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);}
.m0_c01424{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01424{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m3_c01424{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m4_c01424{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);}
.m22_c01424{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);}
.m1c_c01424{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m48_c01424{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m25_c01424{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m23_c01424{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01424{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);}
.m7_c01424{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m8_c01424{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);}
.m2b_c01424{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);}
.m2c_c01424{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m41_c01424{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m39_c01424{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01424{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);}
.m2_c01424{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01424{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);}
.m19_c01424{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m29_c01424{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);}
.m18_c01424{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m54_c01424{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m28_c01424{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m33_c01424{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m30_c01424{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);}
.m38_c01424{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m40_c01424{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01424{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);}
.m35_c01424{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m16_c01424{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m17_c01424{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);}
.m2f_c01424{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01424{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01424{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m6_c01424{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);}
.m32_c01424{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);}
.m11_c01424{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m27_c01424{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01424{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m43_c01424{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);}
.m26_c01424{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m5_c01424{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m44_c01424{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01424{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m49_c01424{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m36_c01424{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);}
.m2d_c01424{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);}
.m51_c01424{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m45_c01424{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m37_c01424{transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);}
.m50_c01424{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.m47_c01424{transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);}
.v1_c01424{vertical-align:-11.520000px;}
.v0_c01424{vertical-align:0.000000px;}
.v2_c01424{vertical-align:2.880000px;}
.ls0_c01424{letter-spacing:0.000000px;}
.sc__c01424{text-shadow:none;}
.sc0_c01424{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01424{-webkit-text-stroke:0px transparent;}
.sc0_c01424{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01424{word-spacing:0.000000px;}
.ws2_c01424{word-spacing:0.485760px;}
.ws0_c01424{word-spacing:133.030832px;}
.ws1_c01424{word-spacing:156.931200px;}
.fc0_c01424{color:transparent;}
.fse_c01424{font-size:14.400000px;}
.fs8_c01424{font-size:34.560000px;}
.fsc_c01424{font-size:37.440000px;}
.fsb_c01424{font-size:40.320000px;}
.fsf_c01424{font-size:43.200000px;}
.fs1_c01424{font-size:46.080000px;}
.fs4_c01424{font-size:48.960000px;}
.fs2_c01424{font-size:51.840000px;}
.fsa_c01424{font-size:54.720000px;}
.fs5_c01424{font-size:57.600000px;}
.fs3_c01424{font-size:60.480000px;}
.fsd_c01424{font-size:63.360000px;}
.fs6_c01424{font-size:66.240000px;}
.fs7_c01424{font-size:69.120000px;}
.fs0_c01424{font-size:72.000000px;}
.fs9_c01424{font-size:103.680000px;}
.y0_c01424{bottom:0.000000px;}
.y6c_c01424{bottom:90.720000px;}
.y6e_c01424{bottom:91.440000px;}
.y6d_c01424{bottom:93.600000px;}
.y6b_c01424{bottom:94.320000px;}
.y64_c01424{bottom:133.200000px;}
.y65_c01424{bottom:133.920000px;}
.y63_c01424{bottom:135.360000px;}
.y66_c01424{bottom:136.800000px;}
.y67_c01424{bottom:137.520000px;}
.y68_c01424{bottom:138.240000px;}
.y69_c01424{bottom:138.960000px;}
.y6a_c01424{bottom:139.680000px;}
.y5e_c01424{bottom:177.840000px;}
.y60_c01424{bottom:178.560000px;}
.y5f_c01424{bottom:180.000000px;}
.y61_c01424{bottom:180.720000px;}
.y62_c01424{bottom:182.160000px;}
.y59_c01424{bottom:220.320000px;}
.y5a_c01424{bottom:221.040000px;}
.y5c_c01424{bottom:222.480000px;}
.y58_c01424{bottom:223.200000px;}
.y57_c01424{bottom:223.920000px;}
.y5b_c01424{bottom:224.640000px;}
.y5d_c01424{bottom:225.360000px;}
.y50_c01424{bottom:263.520000px;}
.y54_c01424{bottom:264.240000px;}
.y55_c01424{bottom:264.960000px;}
.y53_c01424{bottom:265.680000px;}
.y52_c01424{bottom:266.400000px;}
.y51_c01424{bottom:267.120000px;}
.y56_c01424{bottom:269.280000px;}
.y4d_c01424{bottom:307.440000px;}
.y4a_c01424{bottom:308.160000px;}
.y4b_c01424{bottom:309.600000px;}
.y4c_c01424{bottom:310.320000px;}
.y4e_c01424{bottom:311.040000px;}
.y4f_c01424{bottom:311.760000px;}
.y46_c01424{bottom:352.800000px;}
.y45_c01424{bottom:353.520000px;}
.y48_c01424{bottom:354.240000px;}
.y49_c01424{bottom:354.960000px;}
.y47_c01424{bottom:356.400000px;}
.y41_c01424{bottom:393.120000px;}
.y43_c01424{bottom:393.840000px;}
.y40_c01424{bottom:396.000000px;}
.y42_c01424{bottom:396.720000px;}
.y44_c01424{bottom:397.440000px;}
.y3f_c01424{bottom:398.160000px;}
.y3e_c01424{bottom:436.320000px;}
.y3d_c01424{bottom:438.480000px;}
.y3c_c01424{bottom:439.200000px;}
.y3b_c01424{bottom:439.920000px;}
.y3a_c01424{bottom:479.520000px;}
.y38_c01424{bottom:480.240000px;}
.y39_c01424{bottom:481.680000px;}
.y37_c01424{bottom:483.120000px;}
.y36_c01424{bottom:522.000000px;}
.y35_c01424{bottom:522.720000px;}
.y34_c01424{bottom:525.600000px;}
.y32_c01424{bottom:565.200000px;}
.y33_c01424{bottom:565.920000px;}
.y30_c01424{bottom:568.080000px;}
.y2f_c01424{bottom:568.800000px;}
.y31_c01424{bottom:569.520000px;}
.y2a_c01424{bottom:607.680000px;}
.y2e_c01424{bottom:608.400000px;}
.y2c_c01424{bottom:610.560000px;}
.y2d_c01424{bottom:611.280000px;}
.y2b_c01424{bottom:612.000000px;}
.y28_c01424{bottom:650.880000px;}
.y27_c01424{bottom:651.600000px;}
.y25_c01424{bottom:652.320000px;}
.y29_c01424{bottom:653.760000px;}
.y26_c01424{bottom:654.480000px;}
.y24_c01424{bottom:694.080000px;}
.y22_c01424{bottom:694.800000px;}
.y23_c01424{bottom:696.240000px;}
.y20_c01424{bottom:696.960000px;}
.y21_c01424{bottom:697.680000px;}
.y1e_c01424{bottom:737.280000px;}
.y1d_c01424{bottom:738.000000px;}
.y1f_c01424{bottom:738.720000px;}
.y1c_c01424{bottom:740.160000px;}
.y1b_c01424{bottom:791.280000px;}
.y18_c01424{bottom:792.000000px;}
.y1a_c01424{bottom:794.160000px;}
.y19_c01424{bottom:794.880000px;}
.y17_c01424{bottom:795.600000px;}
.y16_c01424{bottom:846.000000px;}
.y12_c01424{bottom:887.760000px;}
.y15_c01424{bottom:889.200000px;}
.y14_c01424{bottom:889.920000px;}
.y13_c01424{bottom:890.640000px;}
.y11_c01424{bottom:891.360000px;}
.y10_c01424{bottom:941.760000px;}
.yf_c01424{bottom:942.480000px;}
.yd_c01424{bottom:943.920000px;}
.yc_c01424{bottom:944.640000px;}
.ye_c01424{bottom:945.360000px;}
.yb_c01424{bottom:964.080000px;}
.ya_c01424{bottom:965.520000px;}
.y9_c01424{bottom:966.240000px;}
.y8_c01424{bottom:987.840000px;}
.y7_c01424{bottom:989.280000px;}
.y6_c01424{bottom:1026.720000px;}
.y5_c01424{bottom:1029.600000px;}
.y4_c01424{bottom:1030.320000px;}
.y3_c01424{bottom:1031.040000px;}
.y2_c01424{bottom:1031.760000px;}
.y1_c01424{bottom:1101.600000px;}
.h11_c01424{height:12.958594px;}
.ha_c01424{height:31.100625px;}
.he_c01424{height:33.692344px;}
.hd_c01424{height:36.284062px;}
.h12_c01424{height:38.875781px;}
.h3_c01424{height:41.467500px;}
.h6_c01424{height:44.059219px;}
.h4_c01424{height:46.650937px;}
.hc_c01424{height:49.242656px;}
.h7_c01424{height:51.834375px;}
.h5_c01424{height:54.426094px;}
.h10_c01424{height:57.017812px;}
.hf_c01424{height:57.306094px;}
.h8_c01424{height:59.609531px;}
.h9_c01424{height:62.201250px;}
.h2_c01424{height:64.792969px;}
.hb_c01424{height:93.301875px;}
.h0_c01424{height:1152.720000px;}
.h1_c01424{height:1152.750000px;}
.w1_c01424{width:773.250000px;}
.w0_c01424{width:773.280000px;}
.x0_c01424{left:0.000000px;}
.x31_c01424{left:47.520000px;}
.x12_c01424{left:48.960000px;}
.x5b_c01424{left:50.400000px;}
.x4b_c01424{left:69.120000px;}
.x47_c01424{left:79.920000px;}
.x3e_c01424{left:90.720000px;}
.x32_c01424{left:100.080000px;}
.x5a_c01424{left:101.520000px;}
.x50_c01424{left:110.880000px;}
.x3a_c01424{left:122.400000px;}
.x1f_c01424{left:123.840000px;}
.x13_c01424{left:125.280000px;}
.x44_c01424{left:133.200000px;}
.xf_c01424{left:135.360000px;}
.x3f_c01424{left:143.280000px;}
.xa_c01424{left:146.160000px;}
.x2_c01424{left:155.520000px;}
.x51_c01424{left:164.880000px;}
.x4c_c01424{left:166.320000px;}
.x48_c01424{left:177.120000px;}
.x28_c01424{left:186.480000px;}
.x3_c01424{left:187.920000px;}
.x14_c01424{left:190.080000px;}
.x52_c01424{left:200.160000px;}
.x10_c01424{left:209.520000px;}
.xb_c01424{left:210.960000px;}
.x2d_c01424{left:220.320000px;}
.x29_c01424{left:231.120000px;}
.x22_c01424{left:241.920000px;}
.x18_c01424{left:252.720000px;}
.x4_c01424{left:254.160000px;}
.x11_c01424{left:275.040000px;}
.x20_c01424{left:285.120000px;}
.x5c_c01424{left:295.920000px;}
.x33_c01424{left:305.280000px;}
.x2e_c01424{left:306.720000px;}
.x53_c01424{left:316.800000px;}
.x56_c01424{left:318.240000px;}
.x15_c01424{left:319.680000px;}
.x3b_c01424{left:328.320000px;}
.x19_c01424{left:339.120000px;}
.xc_c01424{left:340.560000px;}
.x2f_c01424{left:349.200000px;}
.x5_c01424{left:350.640000px;}
.x1a_c01424{left:360.720000px;}
.x4d_c01424{left:370.800000px;}
.x49_c01424{left:372.240000px;}
.x2a_c01424{left:382.320000px;}
.x34_c01424{left:383.760000px;}
.x1b_c01424{left:393.840000px;}
.x16_c01424{left:395.280000px;}
.x35_c01424{left:399.600000px;}
.x4a_c01424{left:401.760000px;}
.x23_c01424{left:403.920000px;}
.x45_c01424{left:414.720000px;}
.xd_c01424{left:416.160000px;}
.x21_c01424{left:425.520000px;}
.x24_c01424{left:435.600000px;}
.x40_c01424{left:447.120000px;}
.x5d_c01424{left:456.480000px;}
.x6_c01424{left:457.920000px;}
.x17_c01424{left:460.080000px;}
.x36_c01424{left:468.720000px;}
.x3c_c01424{left:478.800000px;}
.xe_c01424{left:480.240000px;}
.x37_c01424{left:489.600000px;}
.x7_c01424{left:491.760000px;}
.x1c_c01424{left:501.120000px;}
.x25_c01424{left:511.200000px;}
.x38_c01424{left:521.280000px;}
.x4e_c01424{left:532.080000px;}
.x30_c01424{left:533.520000px;}
.x2b_c01424{left:542.880000px;}
.x41_c01424{left:552.960000px;}
.x8_c01424{left:555.120000px;}
.x54_c01424{left:563.040000px;}
.x57_c01424{left:586.080000px;}
.x3d_c01424{left:596.160000px;}
.x46_c01424{left:606.240000px;}
.x26_c01424{left:607.680000px;}
.x2c_c01424{left:617.760000px;}
.x42_c01424{left:627.120000px;}
.x58_c01424{left:628.560000px;}
.x1d_c01424{left:630.720000px;}
.x27_c01424{left:639.360000px;}
.x9_c01424{left:641.520000px;}
.x4f_c01424{left:648.000000px;}
.x39_c01424{left:650.160000px;}
.x59_c01424{left:660.960000px;}
.x1_c01424{left:663.120000px;}
.x55_c01424{left:671.040000px;}
.x1e_c01424{left:672.480000px;}
.x43_c01424{left:682.560000px;}
@media print{
.v1_c01424{vertical-align:-10.240000pt;}
.v0_c01424{vertical-align:0.000000pt;}
.v2_c01424{vertical-align:2.560000pt;}
.ls0_c01424{letter-spacing:0.000000pt;}
.ws3_c01424{word-spacing:0.000000pt;}
.ws2_c01424{word-spacing:0.431787pt;}
.ws0_c01424{word-spacing:118.249628pt;}
.ws1_c01424{word-spacing:139.494400pt;}
.fse_c01424{font-size:12.800000pt;}
.fs8_c01424{font-size:30.720000pt;}
.fsc_c01424{font-size:33.280000pt;}
.fsb_c01424{font-size:35.840000pt;}
.fsf_c01424{font-size:38.400000pt;}
.fs1_c01424{font-size:40.960000pt;}
.fs4_c01424{font-size:43.520000pt;}
.fs2_c01424{font-size:46.080000pt;}
.fsa_c01424{font-size:48.640000pt;}
.fs5_c01424{font-size:51.200000pt;}
.fs3_c01424{font-size:53.760000pt;}
.fsd_c01424{font-size:56.320000pt;}
.fs6_c01424{font-size:58.880000pt;}
.fs7_c01424{font-size:61.440000pt;}
.fs0_c01424{font-size:64.000000pt;}
.fs9_c01424{font-size:92.160000pt;}
.y0_c01424{bottom:0.000000pt;}
.y6c_c01424{bottom:80.640000pt;}
.y6e_c01424{bottom:81.280000pt;}
.y6d_c01424{bottom:83.200000pt;}
.y6b_c01424{bottom:83.840000pt;}
.y64_c01424{bottom:118.400000pt;}
.y65_c01424{bottom:119.040000pt;}
.y63_c01424{bottom:120.320000pt;}
.y66_c01424{bottom:121.600000pt;}
.y67_c01424{bottom:122.240000pt;}
.y68_c01424{bottom:122.880000pt;}
.y69_c01424{bottom:123.520000pt;}
.y6a_c01424{bottom:124.160000pt;}
.y5e_c01424{bottom:158.080000pt;}
.y60_c01424{bottom:158.720000pt;}
.y5f_c01424{bottom:160.000000pt;}
.y61_c01424{bottom:160.640000pt;}
.y62_c01424{bottom:161.920000pt;}
.y59_c01424{bottom:195.840000pt;}
.y5a_c01424{bottom:196.480000pt;}
.y5c_c01424{bottom:197.760000pt;}
.y58_c01424{bottom:198.400000pt;}
.y57_c01424{bottom:199.040000pt;}
.y5b_c01424{bottom:199.680000pt;}
.y5d_c01424{bottom:200.320000pt;}
.y50_c01424{bottom:234.240000pt;}
.y54_c01424{bottom:234.880000pt;}
.y55_c01424{bottom:235.520000pt;}
.y53_c01424{bottom:236.160000pt;}
.y52_c01424{bottom:236.800000pt;}
.y51_c01424{bottom:237.440000pt;}
.y56_c01424{bottom:239.360000pt;}
.y4d_c01424{bottom:273.280000pt;}
.y4a_c01424{bottom:273.920000pt;}
.y4b_c01424{bottom:275.200000pt;}
.y4c_c01424{bottom:275.840000pt;}
.y4e_c01424{bottom:276.480000pt;}
.y4f_c01424{bottom:277.120000pt;}
.y46_c01424{bottom:313.600000pt;}
.y45_c01424{bottom:314.240000pt;}
.y48_c01424{bottom:314.880000pt;}
.y49_c01424{bottom:315.520000pt;}
.y47_c01424{bottom:316.800000pt;}
.y41_c01424{bottom:349.440000pt;}
.y43_c01424{bottom:350.080000pt;}
.y40_c01424{bottom:352.000000pt;}
.y42_c01424{bottom:352.640000pt;}
.y44_c01424{bottom:353.280000pt;}
.y3f_c01424{bottom:353.920000pt;}
.y3e_c01424{bottom:387.840000pt;}
.y3d_c01424{bottom:389.760000pt;}
.y3c_c01424{bottom:390.400000pt;}
.y3b_c01424{bottom:391.040000pt;}
.y3a_c01424{bottom:426.240000pt;}
.y38_c01424{bottom:426.880000pt;}
.y39_c01424{bottom:428.160000pt;}
.y37_c01424{bottom:429.440000pt;}
.y36_c01424{bottom:464.000000pt;}
.y35_c01424{bottom:464.640000pt;}
.y34_c01424{bottom:467.200000pt;}
.y32_c01424{bottom:502.400000pt;}
.y33_c01424{bottom:503.040000pt;}
.y30_c01424{bottom:504.960000pt;}
.y2f_c01424{bottom:505.600000pt;}
.y31_c01424{bottom:506.240000pt;}
.y2a_c01424{bottom:540.160000pt;}
.y2e_c01424{bottom:540.800000pt;}
.y2c_c01424{bottom:542.720000pt;}
.y2d_c01424{bottom:543.360000pt;}
.y2b_c01424{bottom:544.000000pt;}
.y28_c01424{bottom:578.560000pt;}
.y27_c01424{bottom:579.200000pt;}
.y25_c01424{bottom:579.840000pt;}
.y29_c01424{bottom:581.120000pt;}
.y26_c01424{bottom:581.760000pt;}
.y24_c01424{bottom:616.960000pt;}
.y22_c01424{bottom:617.600000pt;}
.y23_c01424{bottom:618.880000pt;}
.y20_c01424{bottom:619.520000pt;}
.y21_c01424{bottom:620.160000pt;}
.y1e_c01424{bottom:655.360000pt;}
.y1d_c01424{bottom:656.000000pt;}
.y1f_c01424{bottom:656.640000pt;}
.y1c_c01424{bottom:657.920000pt;}
.y1b_c01424{bottom:703.360000pt;}
.y18_c01424{bottom:704.000000pt;}
.y1a_c01424{bottom:705.920000pt;}
.y19_c01424{bottom:706.560000pt;}
.y17_c01424{bottom:707.200000pt;}
.y16_c01424{bottom:752.000000pt;}
.y12_c01424{bottom:789.120000pt;}
.y15_c01424{bottom:790.400000pt;}
.y14_c01424{bottom:791.040000pt;}
.y13_c01424{bottom:791.680000pt;}
.y11_c01424{bottom:792.320000pt;}
.y10_c01424{bottom:837.120000pt;}
.yf_c01424{bottom:837.760000pt;}
.yd_c01424{bottom:839.040000pt;}
.yc_c01424{bottom:839.680000pt;}
.ye_c01424{bottom:840.320000pt;}
.yb_c01424{bottom:856.960000pt;}
.ya_c01424{bottom:858.240000pt;}
.y9_c01424{bottom:858.880000pt;}
.y8_c01424{bottom:878.080000pt;}
.y7_c01424{bottom:879.360000pt;}
.y6_c01424{bottom:912.640000pt;}
.y5_c01424{bottom:915.200000pt;}
.y4_c01424{bottom:915.840000pt;}
.y3_c01424{bottom:916.480000pt;}
.y2_c01424{bottom:917.120000pt;}
.y1_c01424{bottom:979.200000pt;}
.h11_c01424{height:11.518750pt;}
.ha_c01424{height:27.645000pt;}
.he_c01424{height:29.948750pt;}
.hd_c01424{height:32.252500pt;}
.h12_c01424{height:34.556250pt;}
.h3_c01424{height:36.860000pt;}
.h6_c01424{height:39.163750pt;}
.h4_c01424{height:41.467500pt;}
.hc_c01424{height:43.771250pt;}
.h7_c01424{height:46.075000pt;}
.h5_c01424{height:48.378750pt;}
.h10_c01424{height:50.682500pt;}
.hf_c01424{height:50.938750pt;}
.h8_c01424{height:52.986250pt;}
.h9_c01424{height:55.290000pt;}
.h2_c01424{height:57.593750pt;}
.hb_c01424{height:82.935000pt;}
.h0_c01424{height:1024.640000pt;}
.h1_c01424{height:1024.666667pt;}
.w1_c01424{width:687.333333pt;}
.w0_c01424{width:687.360000pt;}
.x0_c01424{left:0.000000pt;}
.x31_c01424{left:42.240000pt;}
.x12_c01424{left:43.520000pt;}
.x5b_c01424{left:44.800000pt;}
.x4b_c01424{left:61.440000pt;}
.x47_c01424{left:71.040000pt;}
.x3e_c01424{left:80.640000pt;}
.x32_c01424{left:88.960000pt;}
.x5a_c01424{left:90.240000pt;}
.x50_c01424{left:98.560000pt;}
.x3a_c01424{left:108.800000pt;}
.x1f_c01424{left:110.080000pt;}
.x13_c01424{left:111.360000pt;}
.x44_c01424{left:118.400000pt;}
.xf_c01424{left:120.320000pt;}
.x3f_c01424{left:127.360000pt;}
.xa_c01424{left:129.920000pt;}
.x2_c01424{left:138.240000pt;}
.x51_c01424{left:146.560000pt;}
.x4c_c01424{left:147.840000pt;}
.x48_c01424{left:157.440000pt;}
.x28_c01424{left:165.760000pt;}
.x3_c01424{left:167.040000pt;}
.x14_c01424{left:168.960000pt;}
.x52_c01424{left:177.920000pt;}
.x10_c01424{left:186.240000pt;}
.xb_c01424{left:187.520000pt;}
.x2d_c01424{left:195.840000pt;}
.x29_c01424{left:205.440000pt;}
.x22_c01424{left:215.040000pt;}
.x18_c01424{left:224.640000pt;}
.x4_c01424{left:225.920000pt;}
.x11_c01424{left:244.480000pt;}
.x20_c01424{left:253.440000pt;}
.x5c_c01424{left:263.040000pt;}
.x33_c01424{left:271.360000pt;}
.x2e_c01424{left:272.640000pt;}
.x53_c01424{left:281.600000pt;}
.x56_c01424{left:282.880000pt;}
.x15_c01424{left:284.160000pt;}
.x3b_c01424{left:291.840000pt;}
.x19_c01424{left:301.440000pt;}
.xc_c01424{left:302.720000pt;}
.x2f_c01424{left:310.400000pt;}
.x5_c01424{left:311.680000pt;}
.x1a_c01424{left:320.640000pt;}
.x4d_c01424{left:329.600000pt;}
.x49_c01424{left:330.880000pt;}
.x2a_c01424{left:339.840000pt;}
.x34_c01424{left:341.120000pt;}
.x1b_c01424{left:350.080000pt;}
.x16_c01424{left:351.360000pt;}
.x35_c01424{left:355.200000pt;}
.x4a_c01424{left:357.120000pt;}
.x23_c01424{left:359.040000pt;}
.x45_c01424{left:368.640000pt;}
.xd_c01424{left:369.920000pt;}
.x21_c01424{left:378.240000pt;}
.x24_c01424{left:387.200000pt;}
.x40_c01424{left:397.440000pt;}
.x5d_c01424{left:405.760000pt;}
.x6_c01424{left:407.040000pt;}
.x17_c01424{left:408.960000pt;}
.x36_c01424{left:416.640000pt;}
.x3c_c01424{left:425.600000pt;}
.xe_c01424{left:426.880000pt;}
.x37_c01424{left:435.200000pt;}
.x7_c01424{left:437.120000pt;}
.x1c_c01424{left:445.440000pt;}
.x25_c01424{left:454.400000pt;}
.x38_c01424{left:463.360000pt;}
.x4e_c01424{left:472.960000pt;}
.x30_c01424{left:474.240000pt;}
.x2b_c01424{left:482.560000pt;}
.x41_c01424{left:491.520000pt;}
.x8_c01424{left:493.440000pt;}
.x54_c01424{left:500.480000pt;}
.x57_c01424{left:520.960000pt;}
.x3d_c01424{left:529.920000pt;}
.x46_c01424{left:538.880000pt;}
.x26_c01424{left:540.160000pt;}
.x2c_c01424{left:549.120000pt;}
.x42_c01424{left:557.440000pt;}
.x58_c01424{left:558.720000pt;}
.x1d_c01424{left:560.640000pt;}
.x27_c01424{left:568.320000pt;}
.x9_c01424{left:570.240000pt;}
.x4f_c01424{left:576.000000pt;}
.x39_c01424{left:577.920000pt;}
.x59_c01424{left:587.520000pt;}
.x1_c01424{left:589.440000pt;}
.x55_c01424{left:596.480000pt;}
.x1e_c01424{left:597.760000pt;}
.x43_c01424{left:606.720000pt;}
}





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

.ir_c01425:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01425{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01425;src:url('chunks/assets/font_d21bbf0655eb98553ccae9dc.woff2')format("woff");}.ff1_c01425{font-family:ff1_c01425;line-height:1.109863;font-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_c01425{transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);}
.m4b_c01425{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);}
.m5f_c01425{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);}
.m28_c01425{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_c01425{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);}
.m5e_c01425{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);}
.m4f_c01425{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);}
.m36_c01425{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);}
.m5d_c01425{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);}
.m4c_c01425{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);}
.m5b_c01425{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);}
.m50_c01425{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);}
.m4e_c01425{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m61_c01425{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m22_c01425{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m26_c01425{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m38_c01425{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m53_c01425{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m51_c01425{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01425{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m5c_c01425{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.md_c01425{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m57_c01425{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.ma_c01425{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01425{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m7_c01425{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);}
.m4a_c01425{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01425{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m23_c01425{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.me_c01425{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m15_c01425{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01425{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);}
.m40_c01425{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m35_c01425{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.mb_c01425{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m9_c01425{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01425{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m11_c01425{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);}
.m24_c01425{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m27_c01425{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m1_c01425{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01425{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);}
.m2_c01425{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);}
.m54_c01425{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m46_c01425{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m8_c01425{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01425{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_c01425{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.mf_c01425{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);}
.m2b_c01425{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m41_c01425{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);}
.m33_c01425{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);}
.m39_c01425{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m60_c01425{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m31_c01425{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m34_c01425{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);}
.m42_c01425{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m5a_c01425{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m3_c01425{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);}
.m1b_c01425{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);}
.m16_c01425{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m30_c01425{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m25_c01425{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m20_c01425{transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);}
.m10_c01425{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m56_c01425{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01425{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m44_c01425{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);}
.m3a_c01425{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01425{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m6_c01425{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);}
.m48_c01425{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);}
.m2a_c01425{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m32_c01425{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m43_c01425{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);}
.m29_c01425{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m49_c01425{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m37_c01425{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m4_c01425{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01425{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m19_c01425{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m5_c01425{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);}
.m14_c01425{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01425{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.mc_c01425{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);}
.m1a_c01425{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01425{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m13_c01425{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01425{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m45_c01425{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m12_c01425{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);}
.m21_c01425{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m18_c01425{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m47_c01425{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);}
.m58_c01425{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m59_c01425{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m55_c01425{transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);}
.m52_c01425{transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);}
.v0_c01425{vertical-align:0.000000px;}
.ls0_c01425{letter-spacing:0.000000px;}
.sc__c01425{text-shadow:none;}
.sc0_c01425{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01425{-webkit-text-stroke:0px transparent;}
.sc0_c01425{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01425{word-spacing:0.000000px;}
.fc0_c01425{color:transparent;}
.fs10_c01425{font-size:14.400000px;}
.fs11_c01425{font-size:23.040000px;}
.fs7_c01425{font-size:34.560000px;}
.fs3_c01425{font-size:37.440000px;}
.fs4_c01425{font-size:40.320000px;}
.fse_c01425{font-size:43.200000px;}
.fs8_c01425{font-size:46.080000px;}
.fs6_c01425{font-size:48.960000px;}
.fs1_c01425{font-size:51.840000px;}
.fs9_c01425{font-size:54.720000px;}
.fsd_c01425{font-size:57.600000px;}
.fs5_c01425{font-size:60.480000px;}
.fs2_c01425{font-size:63.360000px;}
.fsa_c01425{font-size:66.240000px;}
.fsb_c01425{font-size:69.120000px;}
.fsf_c01425{font-size:72.000000px;}
.fsc_c01425{font-size:74.880000px;}
.fs0_c01425{font-size:77.760000px;}
.y0_c01425{bottom:0.000000px;}
.y65_c01425{bottom:51.840000px;}
.y64_c01425{bottom:56.880000px;}
.y67_c01425{bottom:57.600000px;}
.y66_c01425{bottom:58.320000px;}
.y61_c01425{bottom:95.040000px;}
.y60_c01425{bottom:99.360000px;}
.y62_c01425{bottom:100.800000px;}
.y63_c01425{bottom:101.520000px;}
.y5d_c01425{bottom:138.960000px;}
.y5e_c01425{bottom:143.280000px;}
.y5c_c01425{bottom:144.000000px;}
.y5f_c01425{bottom:144.720000px;}
.y5a_c01425{bottom:182.160000px;}
.y59_c01425{bottom:186.480000px;}
.y5b_c01425{bottom:187.200000px;}
.y54_c01425{bottom:228.960000px;}
.y55_c01425{bottom:229.680000px;}
.y56_c01425{bottom:231.120000px;}
.y58_c01425{bottom:231.840000px;}
.y57_c01425{bottom:232.560000px;}
.y52_c01425{bottom:271.440000px;}
.y50_c01425{bottom:272.160000px;}
.y51_c01425{bottom:272.880000px;}
.y53_c01425{bottom:274.320000px;}
.y47_c01425{bottom:323.280000px;}
.y44_c01425{bottom:324.000000px;}
.y4b_c01425{bottom:325.440000px;}
.y4a_c01425{bottom:326.160000px;}
.y46_c01425{bottom:326.880000px;}
.y43_c01425{bottom:327.600000px;}
.y4c_c01425{bottom:329.760000px;}
.y4f_c01425{bottom:336.240000px;}
.y4d_c01425{bottom:338.400000px;}
.y4e_c01425{bottom:341.280000px;}
.y45_c01425{bottom:355.680000px;}
.y49_c01425{bottom:356.400000px;}
.y48_c01425{bottom:357.840000px;}
.y42_c01425{bottom:358.560000px;}
.y41_c01425{bottom:401.040000px;}
.y40_c01425{bottom:402.480000px;}
.y3a_c01425{bottom:442.080000px;}
.y3d_c01425{bottom:442.800000px;}
.y3c_c01425{bottom:443.520000px;}
.y3b_c01425{bottom:444.240000px;}
.y39_c01425{bottom:444.960000px;}
.y3e_c01425{bottom:445.680000px;}
.y3f_c01425{bottom:446.400000px;}
.y36_c01425{bottom:485.280000px;}
.y38_c01425{bottom:488.160000px;}
.y37_c01425{bottom:488.880000px;}
.y31_c01425{bottom:528.480000px;}
.y35_c01425{bottom:529.200000px;}
.y32_c01425{bottom:530.640000px;}
.y33_c01425{bottom:531.360000px;}
.y30_c01425{bottom:532.080000px;}
.y34_c01425{bottom:532.800000px;}
.y2d_c01425{bottom:570.960000px;}
.y2f_c01425{bottom:571.680000px;}
.y2e_c01425{bottom:572.400000px;}
.y2c_c01425{bottom:573.840000px;}
.y2b_c01425{bottom:574.560000px;}
.y29_c01425{bottom:614.880000px;}
.y26_c01425{bottom:615.600000px;}
.y27_c01425{bottom:616.320000px;}
.y28_c01425{bottom:617.040000px;}
.y2a_c01425{bottom:617.760000px;}
.y25_c01425{bottom:658.080000px;}
.y23_c01425{bottom:660.240000px;}
.y24_c01425{bottom:660.960000px;}
.y20_c01425{bottom:701.280000px;}
.y22_c01425{bottom:702.720000px;}
.y1f_c01425{bottom:703.440000px;}
.y21_c01425{bottom:704.160000px;}
.y1e_c01425{bottom:755.280000px;}
.y1c_c01425{bottom:756.720000px;}
.y1d_c01425{bottom:757.440000px;}
.y1b_c01425{bottom:796.320000px;}
.y18_c01425{bottom:797.040000px;}
.y1a_c01425{bottom:799.200000px;}
.y17_c01425{bottom:799.920000px;}
.y19_c01425{bottom:800.640000px;}
.y14_c01425{bottom:838.800000px;}
.y11_c01425{bottom:840.240000px;}
.y12_c01425{bottom:840.960000px;}
.y16_c01425{bottom:841.680000px;}
.y15_c01425{bottom:842.400000px;}
.y13_c01425{bottom:843.120000px;}
.yf_c01425{bottom:882.720000px;}
.y10_c01425{bottom:884.880000px;}
.ye_c01425{bottom:885.600000px;}
.yd_c01425{bottom:887.040000px;}
.yb_c01425{bottom:936.720000px;}
.yc_c01425{bottom:938.880000px;}
.y9_c01425{bottom:939.600000px;}
.ya_c01425{bottom:940.320000px;}
.y8_c01425{bottom:981.360000px;}
.y6_c01425{bottom:982.080000px;}
.y7_c01425{bottom:982.800000px;}
.y5_c01425{bottom:1021.680000px;}
.y4_c01425{bottom:1024.560000px;}
.y2_c01425{bottom:1025.280000px;}
.y3_c01425{bottom:1026.000000px;}
.y1_c01425{bottom:1085.760000px;}
.h12_c01425{height:12.958594px;}
.h13_c01425{height:20.733750px;}
.h9_c01425{height:31.100625px;}
.h5_c01425{height:33.692344px;}
.h6_c01425{height:36.284062px;}
.h10_c01425{height:38.875781px;}
.ha_c01425{height:41.467500px;}
.h8_c01425{height:44.059219px;}
.h3_c01425{height:46.650937px;}
.hb_c01425{height:49.242656px;}
.hf_c01425{height:51.834375px;}
.h7_c01425{height:54.426094px;}
.h4_c01425{height:57.017812px;}
.hc_c01425{height:59.609531px;}
.hd_c01425{height:62.201250px;}
.h11_c01425{height:64.792969px;}
.he_c01425{height:67.384687px;}
.h2_c01425{height:69.976406px;}
.h0_c01425{height:1152.720000px;}
.h1_c01425{height:1152.750000px;}
.w0_c01425{width:774.000000px;}
.x0_c01425{left:0.000000px;}
.xb_c01425{left:46.080000px;}
.x14_c01425{left:47.520000px;}
.x51_c01425{left:49.680000px;}
.x26_c01425{left:77.760000px;}
.x43_c01425{left:79.200000px;}
.x35_c01425{left:89.280000px;}
.x4c_c01425{left:99.360000px;}
.x15_c01425{left:101.520000px;}
.xc_c01425{left:110.160000px;}
.x16_c01425{left:121.680000px;}
.x20_c01425{left:132.480000px;}
.x27_c01425{left:143.280000px;}
.x17_c01425{left:144.720000px;}
.x2b_c01425{left:153.360000px;}
.x2_c01425{left:155.520000px;}
.x3d_c01425{left:175.680000px;}
.x2a_c01425{left:186.480000px;}
.x1c_c01425{left:187.920000px;}
.x36_c01425{left:196.560000px;}
.xd_c01425{left:198.000000px;}
.x3_c01425{left:218.880000px;}
.xe_c01425{left:229.680000px;}
.x41_c01425{left:240.480000px;}
.x2c_c01425{left:241.920000px;}
.x18_c01425{left:251.280000px;}
.x4_c01425{left:261.360000px;}
.x37_c01425{left:262.800000px;}
.xf_c01425{left:272.880000px;}
.x1d_c01425{left:283.680000px;}
.x44_c01425{left:285.120000px;}
.x19_c01425{left:295.200000px;}
.x2d_c01425{left:305.280000px;}
.x47_c01425{left:306.720000px;}
.x42_c01425{left:316.080000px;}
.x1a_c01425{left:326.880000px;}
.x5_c01425{left:338.400000px;}
.x10_c01425{left:349.200000px;}
.x38_c01425{left:360.000000px;}
.x6_c01425{left:370.080000px;}
.x11_c01425{left:381.600000px;}
.x39_c01425{left:391.680000px;}
.x1b_c01425{left:393.120000px;}
.x28_c01425{left:402.480000px;}
.x1e_c01425{left:413.280000px;}
.x2e_c01425{left:423.360000px;}
.x48_c01425{left:424.800000px;}
.x45_c01425{left:434.880000px;}
.x32_c01425{left:436.320000px;}
.x7_c01425{left:444.960000px;}
.x2f_c01425{left:455.760000px;}
.x29_c01425{left:457.200000px;}
.x33_c01425{left:467.280000px;}
.x21_c01425{left:479.520000px;}
.x31_c01425{left:488.160000px;}
.x3e_c01425{left:498.960000px;}
.x22_c01425{left:509.760000px;}
.x4b_c01425{left:519.840000px;}
.x8_c01425{left:521.280000px;}
.x3a_c01425{left:531.360000px;}
.x12_c01425{left:542.160000px;}
.x49_c01425{left:551.520000px;}
.x1f_c01425{left:552.960000px;}
.x4d_c01425{left:561.600000px;}
.x23_c01425{left:563.760000px;}
.x4a_c01425{left:574.560000px;}
.x30_c01425{left:585.360000px;}
.x3f_c01425{left:595.440000px;}
.x52_c01425{left:605.520000px;}
.x24_c01425{left:606.960000px;}
.x46_c01425{left:615.600000px;}
.x9_c01425{left:617.760000px;}
.x3b_c01425{left:627.120000px;}
.x13_c01425{left:628.560000px;}
.x4e_c01425{left:637.200000px;}
.x25_c01425{left:638.640000px;}
.x3c_c01425{left:648.000000px;}
.x1_c01425{left:650.160000px;}
.x40_c01425{left:658.800000px;}
.xa_c01425{left:660.960000px;}
.x34_c01425{left:670.320000px;}
.x4f_c01425{left:702.000000px;}
.x50_c01425{left:734.400000px;}
@media print{
.v0_c01425{vertical-align:0.000000pt;}
.ls0_c01425{letter-spacing:0.000000pt;}
.ws0_c01425{word-spacing:0.000000pt;}
.fs10_c01425{font-size:12.800000pt;}
.fs11_c01425{font-size:20.480000pt;}
.fs7_c01425{font-size:30.720000pt;}
.fs3_c01425{font-size:33.280000pt;}
.fs4_c01425{font-size:35.840000pt;}
.fse_c01425{font-size:38.400000pt;}
.fs8_c01425{font-size:40.960000pt;}
.fs6_c01425{font-size:43.520000pt;}
.fs1_c01425{font-size:46.080000pt;}
.fs9_c01425{font-size:48.640000pt;}
.fsd_c01425{font-size:51.200000pt;}
.fs5_c01425{font-size:53.760000pt;}
.fs2_c01425{font-size:56.320000pt;}
.fsa_c01425{font-size:58.880000pt;}
.fsb_c01425{font-size:61.440000pt;}
.fsf_c01425{font-size:64.000000pt;}
.fsc_c01425{font-size:66.560000pt;}
.fs0_c01425{font-size:69.120000pt;}
.y0_c01425{bottom:0.000000pt;}
.y65_c01425{bottom:46.080000pt;}
.y64_c01425{bottom:50.560000pt;}
.y67_c01425{bottom:51.200000pt;}
.y66_c01425{bottom:51.840000pt;}
.y61_c01425{bottom:84.480000pt;}
.y60_c01425{bottom:88.320000pt;}
.y62_c01425{bottom:89.600000pt;}
.y63_c01425{bottom:90.240000pt;}
.y5d_c01425{bottom:123.520000pt;}
.y5e_c01425{bottom:127.360000pt;}
.y5c_c01425{bottom:128.000000pt;}
.y5f_c01425{bottom:128.640000pt;}
.y5a_c01425{bottom:161.920000pt;}
.y59_c01425{bottom:165.760000pt;}
.y5b_c01425{bottom:166.400000pt;}
.y54_c01425{bottom:203.520000pt;}
.y55_c01425{bottom:204.160000pt;}
.y56_c01425{bottom:205.440000pt;}
.y58_c01425{bottom:206.080000pt;}
.y57_c01425{bottom:206.720000pt;}
.y52_c01425{bottom:241.280000pt;}
.y50_c01425{bottom:241.920000pt;}
.y51_c01425{bottom:242.560000pt;}
.y53_c01425{bottom:243.840000pt;}
.y47_c01425{bottom:287.360000pt;}
.y44_c01425{bottom:288.000000pt;}
.y4b_c01425{bottom:289.280000pt;}
.y4a_c01425{bottom:289.920000pt;}
.y46_c01425{bottom:290.560000pt;}
.y43_c01425{bottom:291.200000pt;}
.y4c_c01425{bottom:293.120000pt;}
.y4f_c01425{bottom:298.880000pt;}
.y4d_c01425{bottom:300.800000pt;}
.y4e_c01425{bottom:303.360000pt;}
.y45_c01425{bottom:316.160000pt;}
.y49_c01425{bottom:316.800000pt;}
.y48_c01425{bottom:318.080000pt;}
.y42_c01425{bottom:318.720000pt;}
.y41_c01425{bottom:356.480000pt;}
.y40_c01425{bottom:357.760000pt;}
.y3a_c01425{bottom:392.960000pt;}
.y3d_c01425{bottom:393.600000pt;}
.y3c_c01425{bottom:394.240000pt;}
.y3b_c01425{bottom:394.880000pt;}
.y39_c01425{bottom:395.520000pt;}
.y3e_c01425{bottom:396.160000pt;}
.y3f_c01425{bottom:396.800000pt;}
.y36_c01425{bottom:431.360000pt;}
.y38_c01425{bottom:433.920000pt;}
.y37_c01425{bottom:434.560000pt;}
.y31_c01425{bottom:469.760000pt;}
.y35_c01425{bottom:470.400000pt;}
.y32_c01425{bottom:471.680000pt;}
.y33_c01425{bottom:472.320000pt;}
.y30_c01425{bottom:472.960000pt;}
.y34_c01425{bottom:473.600000pt;}
.y2d_c01425{bottom:507.520000pt;}
.y2f_c01425{bottom:508.160000pt;}
.y2e_c01425{bottom:508.800000pt;}
.y2c_c01425{bottom:510.080000pt;}
.y2b_c01425{bottom:510.720000pt;}
.y29_c01425{bottom:546.560000pt;}
.y26_c01425{bottom:547.200000pt;}
.y27_c01425{bottom:547.840000pt;}
.y28_c01425{bottom:548.480000pt;}
.y2a_c01425{bottom:549.120000pt;}
.y25_c01425{bottom:584.960000pt;}
.y23_c01425{bottom:586.880000pt;}
.y24_c01425{bottom:587.520000pt;}
.y20_c01425{bottom:623.360000pt;}
.y22_c01425{bottom:624.640000pt;}
.y1f_c01425{bottom:625.280000pt;}
.y21_c01425{bottom:625.920000pt;}
.y1e_c01425{bottom:671.360000pt;}
.y1c_c01425{bottom:672.640000pt;}
.y1d_c01425{bottom:673.280000pt;}
.y1b_c01425{bottom:707.840000pt;}
.y18_c01425{bottom:708.480000pt;}
.y1a_c01425{bottom:710.400000pt;}
.y17_c01425{bottom:711.040000pt;}
.y19_c01425{bottom:711.680000pt;}
.y14_c01425{bottom:745.600000pt;}
.y11_c01425{bottom:746.880000pt;}
.y12_c01425{bottom:747.520000pt;}
.y16_c01425{bottom:748.160000pt;}
.y15_c01425{bottom:748.800000pt;}
.y13_c01425{bottom:749.440000pt;}
.yf_c01425{bottom:784.640000pt;}
.y10_c01425{bottom:786.560000pt;}
.ye_c01425{bottom:787.200000pt;}
.yd_c01425{bottom:788.480000pt;}
.yb_c01425{bottom:832.640000pt;}
.yc_c01425{bottom:834.560000pt;}
.y9_c01425{bottom:835.200000pt;}
.ya_c01425{bottom:835.840000pt;}
.y8_c01425{bottom:872.320000pt;}
.y6_c01425{bottom:872.960000pt;}
.y7_c01425{bottom:873.600000pt;}
.y5_c01425{bottom:908.160000pt;}
.y4_c01425{bottom:910.720000pt;}
.y2_c01425{bottom:911.360000pt;}
.y3_c01425{bottom:912.000000pt;}
.y1_c01425{bottom:965.120000pt;}
.h12_c01425{height:11.518750pt;}
.h13_c01425{height:18.430000pt;}
.h9_c01425{height:27.645000pt;}
.h5_c01425{height:29.948750pt;}
.h6_c01425{height:32.252500pt;}
.h10_c01425{height:34.556250pt;}
.ha_c01425{height:36.860000pt;}
.h8_c01425{height:39.163750pt;}
.h3_c01425{height:41.467500pt;}
.hb_c01425{height:43.771250pt;}
.hf_c01425{height:46.075000pt;}
.h7_c01425{height:48.378750pt;}
.h4_c01425{height:50.682500pt;}
.hc_c01425{height:52.986250pt;}
.hd_c01425{height:55.290000pt;}
.h11_c01425{height:57.593750pt;}
.he_c01425{height:59.897500pt;}
.h2_c01425{height:62.201250pt;}
.h0_c01425{height:1024.640000pt;}
.h1_c01425{height:1024.666667pt;}
.w0_c01425{width:688.000000pt;}
.x0_c01425{left:0.000000pt;}
.xb_c01425{left:40.960000pt;}
.x14_c01425{left:42.240000pt;}
.x51_c01425{left:44.160000pt;}
.x26_c01425{left:69.120000pt;}
.x43_c01425{left:70.400000pt;}
.x35_c01425{left:79.360000pt;}
.x4c_c01425{left:88.320000pt;}
.x15_c01425{left:90.240000pt;}
.xc_c01425{left:97.920000pt;}
.x16_c01425{left:108.160000pt;}
.x20_c01425{left:117.760000pt;}
.x27_c01425{left:127.360000pt;}
.x17_c01425{left:128.640000pt;}
.x2b_c01425{left:136.320000pt;}
.x2_c01425{left:138.240000pt;}
.x3d_c01425{left:156.160000pt;}
.x2a_c01425{left:165.760000pt;}
.x1c_c01425{left:167.040000pt;}
.x36_c01425{left:174.720000pt;}
.xd_c01425{left:176.000000pt;}
.x3_c01425{left:194.560000pt;}
.xe_c01425{left:204.160000pt;}
.x41_c01425{left:213.760000pt;}
.x2c_c01425{left:215.040000pt;}
.x18_c01425{left:223.360000pt;}
.x4_c01425{left:232.320000pt;}
.x37_c01425{left:233.600000pt;}
.xf_c01425{left:242.560000pt;}
.x1d_c01425{left:252.160000pt;}
.x44_c01425{left:253.440000pt;}
.x19_c01425{left:262.400000pt;}
.x2d_c01425{left:271.360000pt;}
.x47_c01425{left:272.640000pt;}
.x42_c01425{left:280.960000pt;}
.x1a_c01425{left:290.560000pt;}
.x5_c01425{left:300.800000pt;}
.x10_c01425{left:310.400000pt;}
.x38_c01425{left:320.000000pt;}
.x6_c01425{left:328.960000pt;}
.x11_c01425{left:339.200000pt;}
.x39_c01425{left:348.160000pt;}
.x1b_c01425{left:349.440000pt;}
.x28_c01425{left:357.760000pt;}
.x1e_c01425{left:367.360000pt;}
.x2e_c01425{left:376.320000pt;}
.x48_c01425{left:377.600000pt;}
.x45_c01425{left:386.560000pt;}
.x32_c01425{left:387.840000pt;}
.x7_c01425{left:395.520000pt;}
.x2f_c01425{left:405.120000pt;}
.x29_c01425{left:406.400000pt;}
.x33_c01425{left:415.360000pt;}
.x21_c01425{left:426.240000pt;}
.x31_c01425{left:433.920000pt;}
.x3e_c01425{left:443.520000pt;}
.x22_c01425{left:453.120000pt;}
.x4b_c01425{left:462.080000pt;}
.x8_c01425{left:463.360000pt;}
.x3a_c01425{left:472.320000pt;}
.x12_c01425{left:481.920000pt;}
.x49_c01425{left:490.240000pt;}
.x1f_c01425{left:491.520000pt;}
.x4d_c01425{left:499.200000pt;}
.x23_c01425{left:501.120000pt;}
.x4a_c01425{left:510.720000pt;}
.x30_c01425{left:520.320000pt;}
.x3f_c01425{left:529.280000pt;}
.x52_c01425{left:538.240000pt;}
.x24_c01425{left:539.520000pt;}
.x46_c01425{left:547.200000pt;}
.x9_c01425{left:549.120000pt;}
.x3b_c01425{left:557.440000pt;}
.x13_c01425{left:558.720000pt;}
.x4e_c01425{left:566.400000pt;}
.x25_c01425{left:567.680000pt;}
.x3c_c01425{left:576.000000pt;}
.x1_c01425{left:577.920000pt;}
.x40_c01425{left:585.600000pt;}
.xa_c01425{left:587.520000pt;}
.x34_c01425{left:595.840000pt;}
.x4f_c01425{left:624.000000pt;}
.x50_c01425{left:652.800000pt;}
}





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

.ir_c01426:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01426{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01426;src:url('chunks/assets/font_1fa1fc673c7eb30fde9d6694.woff2')format("woff");}.ff1_c01426{font-family:ff1_c01426;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4a_c01426{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m42_c01426{transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);}
.m1b_c01426{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.m2d_c01426{transform:matrix(0.207775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207775,0.000000,0.000000,0.250000,0,0);}
.m4c_c01426{transform:matrix(0.221800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221800,0.000000,0.000000,0.250000,0,0);}
.m27_c01426{transform:matrix(0.225050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225050,0.000000,0.000000,0.250000,0,0);}
.m40_c01426{transform:matrix(0.230700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230700,0.000000,0.000000,0.250000,0,0);}
.m36_c01426{transform:matrix(0.234775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234775,0.000000,0.000000,0.250000,0,0);}
.m30_c01426{transform:matrix(0.238225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238225,0.000000,0.000000,0.250000,0,0);}
.m41_c01426{transform:matrix(0.238575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238575,0.000000,0.000000,0.250000,0,0);}
.m4e_c01426{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m3d_c01426{transform:matrix(0.248525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248525,0.000000,0.000000,0.250000,0,0);}
.m43_c01426{transform:matrix(0.249275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249275,0.000000,0.000000,0.250000,0,0);}
.m39_c01426{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);}
.m38_c01426{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m15_c01426{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m1_c01426{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m18_c01426{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);}
.m50_c01426{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m0_c01426{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_c01426{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);}
.m44_c01426{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_c01426{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);}
.m21_c01426{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01426{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_c01426{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);}
.m3f_c01426{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01426{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_c01426{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m13_c01426{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01426{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m6_c01426{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m4_c01426{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m52_c01426{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m23_c01426{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m51_c01426{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01426{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01426{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01426{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01426{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m28_c01426{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m37_c01426{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);}
.m3c_c01426{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m20_c01426{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);}
.m4b_c01426{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);}
.m45_c01426{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m14_c01426{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);}
.m33_c01426{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m24_c01426{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m22_c01426{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);}
.m12_c01426{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m17_c01426{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m16_c01426{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.mc_c01426{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);}
.m2c_c01426{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);}
.m4f_c01426{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);}
.m26_c01426{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);}
.m29_c01426{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.mf_c01426{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.ma_c01426{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);}
.m25_c01426{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);}
.m31_c01426{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m3_c01426{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m9_c01426{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m19_c01426{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01426{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01426{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m4d_c01426{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m5_c01426{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01426{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);}
.m3a_c01426{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);}
.mb_c01426{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m34_c01426{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m7_c01426{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m54_c01426{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m47_c01426{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);}
.m53_c01426{transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01426{transform:matrix(0.647500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.647500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.647500,0.000000,0.000000,0.250000,0,0);}
.m35_c01426{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m32_c01426{transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);}
.m49_c01426{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m48_c01426{transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);}
.m46_c01426{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);}
.m1c_c01426{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m10_c01426{transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);}
.v0_c01426{vertical-align:0.000000px;}
.ls0_c01426{letter-spacing:0.000000px;}
.sc__c01426{text-shadow:none;}
.sc0_c01426{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01426{-webkit-text-stroke:0px transparent;}
.sc0_c01426{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01426{word-spacing:0.000000px;}
.fc0_c01426{color:transparent;}
.fs8_c01426{font-size:14.400000px;}
.fsd_c01426{font-size:17.280000px;}
.fs7_c01426{font-size:25.920000px;}
.fsc_c01426{font-size:28.800000px;}
.fs12_c01426{font-size:34.560000px;}
.fsf_c01426{font-size:37.440000px;}
.fs10_c01426{font-size:40.320000px;}
.fs3_c01426{font-size:43.200000px;}
.fs11_c01426{font-size:46.080000px;}
.fs9_c01426{font-size:51.840000px;}
.fs6_c01426{font-size:54.720000px;}
.fs0_c01426{font-size:57.600000px;}
.fs5_c01426{font-size:60.480000px;}
.fs2_c01426{font-size:63.360000px;}
.fse_c01426{font-size:66.240000px;}
.fs4_c01426{font-size:69.120000px;}
.fsb_c01426{font-size:72.000000px;}
.fsa_c01426{font-size:74.880000px;}
.fs1_c01426{font-size:77.760000px;}
.fs13_c01426{font-size:112.320000px;}
.y0_c01426{bottom:0.000000px;}
.y51_c01426{bottom:64.800000px;}
.y50_c01426{bottom:69.120000px;}
.y71_c01426{bottom:72.000000px;}
.y78_c01426{bottom:72.720000px;}
.y79_c01426{bottom:73.440000px;}
.y7a_c01426{bottom:74.880000px;}
.y4f_c01426{bottom:108.000000px;}
.y4e_c01426{bottom:112.320000px;}
.y70_c01426{bottom:114.480000px;}
.y75_c01426{bottom:115.200000px;}
.y77_c01426{bottom:116.640000px;}
.y76_c01426{bottom:117.360000px;}
.y4c_c01426{bottom:151.200000px;}
.y4d_c01426{bottom:153.360000px;}
.y4b_c01426{bottom:154.080000px;}
.y72_c01426{bottom:159.120000px;}
.y74_c01426{bottom:160.560000px;}
.y6f_c01426{bottom:161.280000px;}
.y73_c01426{bottom:162.000000px;}
.y49_c01426{bottom:195.840000px;}
.y4a_c01426{bottom:196.560000px;}
.y48_c01426{bottom:198.720000px;}
.y6d_c01426{bottom:200.880000px;}
.y6e_c01426{bottom:201.600000px;}
.y6b_c01426{bottom:202.320000px;}
.y6c_c01426{bottom:203.760000px;}
.y46_c01426{bottom:239.040000px;}
.y47_c01426{bottom:240.480000px;}
.y45_c01426{bottom:241.920000px;}
.y69_c01426{bottom:244.080000px;}
.y6a_c01426{bottom:245.520000px;}
.y42_c01426{bottom:282.960000px;}
.y44_c01426{bottom:284.400000px;}
.y41_c01426{bottom:285.120000px;}
.y43_c01426{bottom:286.560000px;}
.y67_c01426{bottom:288.000000px;}
.y68_c01426{bottom:288.720000px;}
.y65_c01426{bottom:289.440000px;}
.y3f_c01426{bottom:326.160000px;}
.y40_c01426{bottom:328.320000px;}
.y3e_c01426{bottom:329.760000px;}
.y64_c01426{bottom:331.920000px;}
.y66_c01426{bottom:333.360000px;}
.y3d_c01426{bottom:369.360000px;}
.y3c_c01426{bottom:372.240000px;}
.y61_c01426{bottom:374.400000px;}
.y62_c01426{bottom:375.120000px;}
.y63_c01426{bottom:376.560000px;}
.y3b_c01426{bottom:413.280000px;}
.y3a_c01426{bottom:414.720000px;}
.y39_c01426{bottom:415.440000px;}
.y5e_c01426{bottom:417.600000px;}
.y5f_c01426{bottom:418.320000px;}
.y60_c01426{bottom:420.480000px;}
.y38_c01426{bottom:456.480000px;}
.y37_c01426{bottom:460.080000px;}
.y5d_c01426{bottom:460.800000px;}
.y33_c01426{bottom:499.680000px;}
.y36_c01426{bottom:501.120000px;}
.y30_c01426{bottom:501.840000px;}
.y32_c01426{bottom:502.560000px;}
.y35_c01426{bottom:503.280000px;}
.y34_c01426{bottom:504.000000px;}
.y5c_c01426{bottom:505.440000px;}
.y31_c01426{bottom:506.160000px;}
.y2d_c01426{bottom:542.880000px;}
.y2f_c01426{bottom:543.600000px;}
.y2c_c01426{bottom:545.760000px;}
.y5b_c01426{bottom:546.480000px;}
.y2b_c01426{bottom:547.200000px;}
.y2e_c01426{bottom:547.920000px;}
.y27_c01426{bottom:586.080000px;}
.y2a_c01426{bottom:586.800000px;}
.y26_c01426{bottom:587.520000px;}
.y28_c01426{bottom:588.240000px;}
.y5a_c01426{bottom:588.960000px;}
.y29_c01426{bottom:590.400000px;}
.y59_c01426{bottom:591.840000px;}
.y23_c01426{bottom:630.000000px;}
.y25_c01426{bottom:630.720000px;}
.y22_c01426{bottom:632.160000px;}
.y57_c01426{bottom:632.880000px;}
.y24_c01426{bottom:633.600000px;}
.y58_c01426{bottom:634.320000px;}
.y21_c01426{bottom:673.200000px;}
.y56_c01426{bottom:673.920000px;}
.y54_c01426{bottom:674.640000px;}
.y20_c01426{bottom:675.360000px;}
.y55_c01426{bottom:676.080000px;}
.y1f_c01426{bottom:716.400000px;}
.y1e_c01426{bottom:717.840000px;}
.y53_c01426{bottom:720.720000px;}
.y1c_c01426{bottom:759.600000px;}
.y52_c01426{bottom:761.040000px;}
.y1d_c01426{bottom:761.760000px;}
.y1a_c01426{bottom:763.200000px;}
.y1b_c01426{bottom:766.800000px;}
.y13_c01426{bottom:846.000000px;}
.yf_c01426{bottom:846.720000px;}
.y12_c01426{bottom:847.440000px;}
.yc_c01426{bottom:848.160000px;}
.yd_c01426{bottom:848.880000px;}
.y11_c01426{bottom:850.320000px;}
.y10_c01426{bottom:851.040000px;}
.ye_c01426{bottom:853.920000px;}
.y18_c01426{bottom:889.200000px;}
.yb_c01426{bottom:889.920000px;}
.y19_c01426{bottom:892.080000px;}
.ya_c01426{bottom:893.520000px;}
.y9_c01426{bottom:932.400000px;}
.y6_c01426{bottom:933.120000px;}
.y17_c01426{bottom:933.840000px;}
.y5_c01426{bottom:934.560000px;}
.y8_c01426{bottom:935.280000px;}
.y7_c01426{bottom:937.440000px;}
.y4_c01426{bottom:977.040000px;}
.y16_c01426{bottom:977.760000px;}
.y3_c01426{bottom:979.920000px;}
.y15_c01426{bottom:1019.520000px;}
.y2_c01426{bottom:1020.240000px;}
.y1_c01426{bottom:1021.680000px;}
.y14_c01426{bottom:1090.800000px;}
.ha_c01426{height:12.958594px;}
.hf_c01426{height:15.550313px;}
.h9_c01426{height:23.325469px;}
.he_c01426{height:25.917187px;}
.h14_c01426{height:31.100625px;}
.h11_c01426{height:33.692344px;}
.h12_c01426{height:36.284062px;}
.h5_c01426{height:38.875781px;}
.h13_c01426{height:41.467500px;}
.hb_c01426{height:46.650937px;}
.h8_c01426{height:49.242656px;}
.h2_c01426{height:51.834375px;}
.h7_c01426{height:54.426094px;}
.h4_c01426{height:57.017812px;}
.h10_c01426{height:59.609531px;}
.h6_c01426{height:62.201250px;}
.hd_c01426{height:64.792969px;}
.hc_c01426{height:67.384687px;}
.h3_c01426{height:69.976406px;}
.h15_c01426{height:101.077031px;}
.h1_c01426{height:1151.250000px;}
.h0_c01426{height:1151.280000px;}
.w1_c01426{width:771.750000px;}
.w0_c01426{width:771.840000px;}
.x0_c01426{left:0.000000px;}
.x3_c01426{left:50.400000px;}
.x1_c01426{left:51.840000px;}
.x1f_c01426{left:53.280000px;}
.x33_c01426{left:54.720000px;}
.xb_c01426{left:62.640000px;}
.xc_c01426{left:71.280000px;}
.x1a_c01426{left:73.440000px;}
.x2c_c01426{left:74.880000px;}
.x1b_c01426{left:82.080000px;}
.x26_c01426{left:83.520000px;}
.x2_c01426{left:93.600000px;}
.x1c_c01426{left:104.400000px;}
.x22_c01426{left:105.840000px;}
.x27_c01426{left:139.680000px;}
.x8_c01426{left:169.920000px;}
.x28_c01426{left:191.520000px;}
.x23_c01426{left:192.960000px;}
.x2e_c01426{left:203.760000px;}
.xd_c01426{left:213.840000px;}
.x2d_c01426{left:215.280000px;}
.x9_c01426{left:224.640000px;}
.x4_c01426{left:234.720000px;}
.x1d_c01426{left:246.240000px;}
.x31_c01426{left:247.680000px;}
.x2f_c01426{left:258.480000px;}
.xa_c01426{left:267.120000px;}
.x5_c01426{left:277.920000px;}
.x29_c01426{left:289.440000px;}
.x30_c01426{left:300.960000px;}
.x1e_c01426{left:331.920000px;}
.x32_c01426{left:354.960000px;}
.xe_c01426{left:362.880000px;}
.x20_c01426{left:365.040000px;}
.x24_c01426{left:375.120000px;}
.x2a_c01426{left:385.920000px;}
.x6_c01426{left:396.000000px;}
.xf_c01426{left:406.800000px;}
.x21_c01426{left:416.880000px;}
.x25_c01426{left:418.320000px;}
.x2b_c01426{left:429.120000px;}
.x7_c01426{left:439.200000px;}
.x10_c01426{left:460.800000px;}
.x39_c01426{left:568.800000px;}
.x17_c01426{left:579.600000px;}
.x15_c01426{left:600.480000px;}
.x12_c01426{left:612.000000px;}
.x35_c01426{left:624.240000px;}
.x34_c01426{left:632.160000px;}
.x19_c01426{left:633.600000px;}
.x38_c01426{left:664.560000px;}
.x13_c01426{left:666.000000px;}
.x11_c01426{left:671.040000px;}
.x36_c01426{left:698.400000px;}
.x18_c01426{left:708.480000px;}
.x14_c01426{left:709.920000px;}
.x37_c01426{left:728.640000px;}
.x16_c01426{left:730.080000px;}
@media print{
.v0_c01426{vertical-align:0.000000pt;}
.ls0_c01426{letter-spacing:0.000000pt;}
.ws0_c01426{word-spacing:0.000000pt;}
.fs8_c01426{font-size:12.800000pt;}
.fsd_c01426{font-size:15.360000pt;}
.fs7_c01426{font-size:23.040000pt;}
.fsc_c01426{font-size:25.600000pt;}
.fs12_c01426{font-size:30.720000pt;}
.fsf_c01426{font-size:33.280000pt;}
.fs10_c01426{font-size:35.840000pt;}
.fs3_c01426{font-size:38.400000pt;}
.fs11_c01426{font-size:40.960000pt;}
.fs9_c01426{font-size:46.080000pt;}
.fs6_c01426{font-size:48.640000pt;}
.fs0_c01426{font-size:51.200000pt;}
.fs5_c01426{font-size:53.760000pt;}
.fs2_c01426{font-size:56.320000pt;}
.fse_c01426{font-size:58.880000pt;}
.fs4_c01426{font-size:61.440000pt;}
.fsb_c01426{font-size:64.000000pt;}
.fsa_c01426{font-size:66.560000pt;}
.fs1_c01426{font-size:69.120000pt;}
.fs13_c01426{font-size:99.840000pt;}
.y0_c01426{bottom:0.000000pt;}
.y51_c01426{bottom:57.600000pt;}
.y50_c01426{bottom:61.440000pt;}
.y71_c01426{bottom:64.000000pt;}
.y78_c01426{bottom:64.640000pt;}
.y79_c01426{bottom:65.280000pt;}
.y7a_c01426{bottom:66.560000pt;}
.y4f_c01426{bottom:96.000000pt;}
.y4e_c01426{bottom:99.840000pt;}
.y70_c01426{bottom:101.760000pt;}
.y75_c01426{bottom:102.400000pt;}
.y77_c01426{bottom:103.680000pt;}
.y76_c01426{bottom:104.320000pt;}
.y4c_c01426{bottom:134.400000pt;}
.y4d_c01426{bottom:136.320000pt;}
.y4b_c01426{bottom:136.960000pt;}
.y72_c01426{bottom:141.440000pt;}
.y74_c01426{bottom:142.720000pt;}
.y6f_c01426{bottom:143.360000pt;}
.y73_c01426{bottom:144.000000pt;}
.y49_c01426{bottom:174.080000pt;}
.y4a_c01426{bottom:174.720000pt;}
.y48_c01426{bottom:176.640000pt;}
.y6d_c01426{bottom:178.560000pt;}
.y6e_c01426{bottom:179.200000pt;}
.y6b_c01426{bottom:179.840000pt;}
.y6c_c01426{bottom:181.120000pt;}
.y46_c01426{bottom:212.480000pt;}
.y47_c01426{bottom:213.760000pt;}
.y45_c01426{bottom:215.040000pt;}
.y69_c01426{bottom:216.960000pt;}
.y6a_c01426{bottom:218.240000pt;}
.y42_c01426{bottom:251.520000pt;}
.y44_c01426{bottom:252.800000pt;}
.y41_c01426{bottom:253.440000pt;}
.y43_c01426{bottom:254.720000pt;}
.y67_c01426{bottom:256.000000pt;}
.y68_c01426{bottom:256.640000pt;}
.y65_c01426{bottom:257.280000pt;}
.y3f_c01426{bottom:289.920000pt;}
.y40_c01426{bottom:291.840000pt;}
.y3e_c01426{bottom:293.120000pt;}
.y64_c01426{bottom:295.040000pt;}
.y66_c01426{bottom:296.320000pt;}
.y3d_c01426{bottom:328.320000pt;}
.y3c_c01426{bottom:330.880000pt;}
.y61_c01426{bottom:332.800000pt;}
.y62_c01426{bottom:333.440000pt;}
.y63_c01426{bottom:334.720000pt;}
.y3b_c01426{bottom:367.360000pt;}
.y3a_c01426{bottom:368.640000pt;}
.y39_c01426{bottom:369.280000pt;}
.y5e_c01426{bottom:371.200000pt;}
.y5f_c01426{bottom:371.840000pt;}
.y60_c01426{bottom:373.760000pt;}
.y38_c01426{bottom:405.760000pt;}
.y37_c01426{bottom:408.960000pt;}
.y5d_c01426{bottom:409.600000pt;}
.y33_c01426{bottom:444.160000pt;}
.y36_c01426{bottom:445.440000pt;}
.y30_c01426{bottom:446.080000pt;}
.y32_c01426{bottom:446.720000pt;}
.y35_c01426{bottom:447.360000pt;}
.y34_c01426{bottom:448.000000pt;}
.y5c_c01426{bottom:449.280000pt;}
.y31_c01426{bottom:449.920000pt;}
.y2d_c01426{bottom:482.560000pt;}
.y2f_c01426{bottom:483.200000pt;}
.y2c_c01426{bottom:485.120000pt;}
.y5b_c01426{bottom:485.760000pt;}
.y2b_c01426{bottom:486.400000pt;}
.y2e_c01426{bottom:487.040000pt;}
.y27_c01426{bottom:520.960000pt;}
.y2a_c01426{bottom:521.600000pt;}
.y26_c01426{bottom:522.240000pt;}
.y28_c01426{bottom:522.880000pt;}
.y5a_c01426{bottom:523.520000pt;}
.y29_c01426{bottom:524.800000pt;}
.y59_c01426{bottom:526.080000pt;}
.y23_c01426{bottom:560.000000pt;}
.y25_c01426{bottom:560.640000pt;}
.y22_c01426{bottom:561.920000pt;}
.y57_c01426{bottom:562.560000pt;}
.y24_c01426{bottom:563.200000pt;}
.y58_c01426{bottom:563.840000pt;}
.y21_c01426{bottom:598.400000pt;}
.y56_c01426{bottom:599.040000pt;}
.y54_c01426{bottom:599.680000pt;}
.y20_c01426{bottom:600.320000pt;}
.y55_c01426{bottom:600.960000pt;}
.y1f_c01426{bottom:636.800000pt;}
.y1e_c01426{bottom:638.080000pt;}
.y53_c01426{bottom:640.640000pt;}
.y1c_c01426{bottom:675.200000pt;}
.y52_c01426{bottom:676.480000pt;}
.y1d_c01426{bottom:677.120000pt;}
.y1a_c01426{bottom:678.400000pt;}
.y1b_c01426{bottom:681.600000pt;}
.y13_c01426{bottom:752.000000pt;}
.yf_c01426{bottom:752.640000pt;}
.y12_c01426{bottom:753.280000pt;}
.yc_c01426{bottom:753.920000pt;}
.yd_c01426{bottom:754.560000pt;}
.y11_c01426{bottom:755.840000pt;}
.y10_c01426{bottom:756.480000pt;}
.ye_c01426{bottom:759.040000pt;}
.y18_c01426{bottom:790.400000pt;}
.yb_c01426{bottom:791.040000pt;}
.y19_c01426{bottom:792.960000pt;}
.ya_c01426{bottom:794.240000pt;}
.y9_c01426{bottom:828.800000pt;}
.y6_c01426{bottom:829.440000pt;}
.y17_c01426{bottom:830.080000pt;}
.y5_c01426{bottom:830.720000pt;}
.y8_c01426{bottom:831.360000pt;}
.y7_c01426{bottom:833.280000pt;}
.y4_c01426{bottom:868.480000pt;}
.y16_c01426{bottom:869.120000pt;}
.y3_c01426{bottom:871.040000pt;}
.y15_c01426{bottom:906.240000pt;}
.y2_c01426{bottom:906.880000pt;}
.y1_c01426{bottom:908.160000pt;}
.y14_c01426{bottom:969.600000pt;}
.ha_c01426{height:11.518750pt;}
.hf_c01426{height:13.822500pt;}
.h9_c01426{height:20.733750pt;}
.he_c01426{height:23.037500pt;}
.h14_c01426{height:27.645000pt;}
.h11_c01426{height:29.948750pt;}
.h12_c01426{height:32.252500pt;}
.h5_c01426{height:34.556250pt;}
.h13_c01426{height:36.860000pt;}
.hb_c01426{height:41.467500pt;}
.h8_c01426{height:43.771250pt;}
.h2_c01426{height:46.075000pt;}
.h7_c01426{height:48.378750pt;}
.h4_c01426{height:50.682500pt;}
.h10_c01426{height:52.986250pt;}
.h6_c01426{height:55.290000pt;}
.hd_c01426{height:57.593750pt;}
.hc_c01426{height:59.897500pt;}
.h3_c01426{height:62.201250pt;}
.h15_c01426{height:89.846250pt;}
.h1_c01426{height:1023.333333pt;}
.h0_c01426{height:1023.360000pt;}
.w1_c01426{width:686.000000pt;}
.w0_c01426{width:686.080000pt;}
.x0_c01426{left:0.000000pt;}
.x3_c01426{left:44.800000pt;}
.x1_c01426{left:46.080000pt;}
.x1f_c01426{left:47.360000pt;}
.x33_c01426{left:48.640000pt;}
.xb_c01426{left:55.680000pt;}
.xc_c01426{left:63.360000pt;}
.x1a_c01426{left:65.280000pt;}
.x2c_c01426{left:66.560000pt;}
.x1b_c01426{left:72.960000pt;}
.x26_c01426{left:74.240000pt;}
.x2_c01426{left:83.200000pt;}
.x1c_c01426{left:92.800000pt;}
.x22_c01426{left:94.080000pt;}
.x27_c01426{left:124.160000pt;}
.x8_c01426{left:151.040000pt;}
.x28_c01426{left:170.240000pt;}
.x23_c01426{left:171.520000pt;}
.x2e_c01426{left:181.120000pt;}
.xd_c01426{left:190.080000pt;}
.x2d_c01426{left:191.360000pt;}
.x9_c01426{left:199.680000pt;}
.x4_c01426{left:208.640000pt;}
.x1d_c01426{left:218.880000pt;}
.x31_c01426{left:220.160000pt;}
.x2f_c01426{left:229.760000pt;}
.xa_c01426{left:237.440000pt;}
.x5_c01426{left:247.040000pt;}
.x29_c01426{left:257.280000pt;}
.x30_c01426{left:267.520000pt;}
.x1e_c01426{left:295.040000pt;}
.x32_c01426{left:315.520000pt;}
.xe_c01426{left:322.560000pt;}
.x20_c01426{left:324.480000pt;}
.x24_c01426{left:333.440000pt;}
.x2a_c01426{left:343.040000pt;}
.x6_c01426{left:352.000000pt;}
.xf_c01426{left:361.600000pt;}
.x21_c01426{left:370.560000pt;}
.x25_c01426{left:371.840000pt;}
.x2b_c01426{left:381.440000pt;}
.x7_c01426{left:390.400000pt;}
.x10_c01426{left:409.600000pt;}
.x39_c01426{left:505.600000pt;}
.x17_c01426{left:515.200000pt;}
.x15_c01426{left:533.760000pt;}
.x12_c01426{left:544.000000pt;}
.x35_c01426{left:554.880000pt;}
.x34_c01426{left:561.920000pt;}
.x19_c01426{left:563.200000pt;}
.x38_c01426{left:590.720000pt;}
.x13_c01426{left:592.000000pt;}
.x11_c01426{left:596.480000pt;}
.x36_c01426{left:620.800000pt;}
.x18_c01426{left:629.760000pt;}
.x14_c01426{left:631.040000pt;}
.x37_c01426{left:647.680000pt;}
.x16_c01426{left:648.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_c01427 {
    display:none;
  }
  .loading-indicator_c01427.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01427 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01427 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01427" -> "#page-container .classname_c01427")
 */
.pf_c01427 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01427 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01427.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01427 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01427 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01427 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01427 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01427 {overflow:visible;}
  }
}
.c_c01427 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01427 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01427:after { /* webkit #35443 */
  content: '';
}
.t_c01427:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01427 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01427 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01427 { /* info for Javascript */
  display:none;
}
.l_c01427 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01427 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01427 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01427:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01427{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01427;src:url('chunks/assets/font_1d0f922d583b969db35cc724.woff2')format("woff");}.ff1_c01427{font-family:ff1_c01427;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3f_c01427{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.m3a_c01427{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m43_c01427{transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);}
.m45_c01427{transform:matrix(0.225150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225150,0.000000,0.000000,0.250000,0,0);}
.m52_c01427{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);}
.m4f_c01427{transform:matrix(0.229075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229075,0.000000,0.000000,0.250000,0,0);}
.m4d_c01427{transform:matrix(0.234200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234200,0.000000,0.000000,0.250000,0,0);}
.m44_c01427{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m2b_c01427{transform:matrix(0.236075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236075,0.000000,0.000000,0.250000,0,0);}
.m3b_c01427{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m4a_c01427{transform:matrix(0.238925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238925,0.000000,0.000000,0.250000,0,0);}
.m1_c01427{transform:matrix(0.241350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241350,0.000000,0.000000,0.250000,0,0);}
.m22_c01427{transform:matrix(0.243100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243100,0.000000,0.000000,0.250000,0,0);}
.m20_c01427{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m40_c01427{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m32_c01427{transform:matrix(0.247100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247100,0.000000,0.000000,0.250000,0,0);}
.m1c_c01427{transform:matrix(0.247675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247675,0.000000,0.000000,0.250000,0,0);}
.m2f_c01427{transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);}
.m1f_c01427{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01427{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);}
.m42_c01427{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m13_c01427{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m10_c01427{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m17_c01427{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);}
.m2d_c01427{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);}
.m3c_c01427{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);}
.m51_c01427{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01427{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m14_c01427{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01427{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m12_c01427{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m8_c01427{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m24_c01427{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m3_c01427{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m16_c01427{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.md_c01427{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01427{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m26_c01427{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4_c01427{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01427{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m49_c01427{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m39_c01427{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m34_c01427{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m25_c01427{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);}
.m46_c01427{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m27_c01427{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);}
.m4b_c01427{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.ma_c01427{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);}
.m4c_c01427{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01427{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m29_c01427{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m9_c01427{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.mf_c01427{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m0_c01427{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);}
.m48_c01427{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01427{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);}
.m36_c01427{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m23_c01427{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);}
.m1d_c01427{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);}
.m2a_c01427{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m7_c01427{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.mc_c01427{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);}
.m18_c01427{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);}
.m2c_c01427{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m31_c01427{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m11_c01427{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m5_c01427{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m38_c01427{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m15_c01427{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m50_c01427{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01427{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);}
.m33_c01427{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.mb_c01427{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);}
.m35_c01427{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01427{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);}
.m21_c01427{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m53_c01427{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m28_c01427{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m2_c01427{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m41_c01427{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m30_c01427{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m47_c01427{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.m37_c01427{transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);}
.m19_c01427{transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);}
.v0_c01427{vertical-align:0.000000px;}
.ls0_c01427{letter-spacing:0.000000px;}
.sc__c01427{text-shadow:none;}
.sc0_c01427{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01427{-webkit-text-stroke:0px transparent;}
.sc0_c01427{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01427{word-spacing:0.000000px;}
.fc0_c01427{color:transparent;}
.fsb_c01427{font-size:17.280000px;}
.fs13_c01427{font-size:20.160000px;}
.fsa_c01427{font-size:28.800000px;}
.fs12_c01427{font-size:31.680000px;}
.fs9_c01427{font-size:34.560000px;}
.fsf_c01427{font-size:37.440000px;}
.fs7_c01427{font-size:40.320000px;}
.fs11_c01427{font-size:43.200000px;}
.fs4_c01427{font-size:51.840000px;}
.fs2_c01427{font-size:54.720000px;}
.fs3_c01427{font-size:57.600000px;}
.fs6_c01427{font-size:60.480000px;}
.fsd_c01427{font-size:63.360000px;}
.fs0_c01427{font-size:66.240000px;}
.fsc_c01427{font-size:69.120000px;}
.fse_c01427{font-size:72.000000px;}
.fs5_c01427{font-size:74.880000px;}
.fs1_c01427{font-size:77.760000px;}
.fs8_c01427{font-size:80.640000px;}
.fs10_c01427{font-size:100.800000px;}
.y0_c01427{bottom:0.000000px;}
.y4b_c01427{bottom:82.080000px;}
.y4a_c01427{bottom:86.400000px;}
.y4c_c01427{bottom:87.120000px;}
.y4d_c01427{bottom:87.840000px;}
.y75_c01427{bottom:88.560000px;}
.y74_c01427{bottom:90.000000px;}
.y47_c01427{bottom:127.440000px;}
.y46_c01427{bottom:128.160000px;}
.y48_c01427{bottom:128.880000px;}
.y45_c01427{bottom:130.320000px;}
.y49_c01427{bottom:131.760000px;}
.y71_c01427{bottom:132.480000px;}
.y72_c01427{bottom:133.200000px;}
.y73_c01427{bottom:133.920000px;}
.y44_c01427{bottom:170.640000px;}
.y43_c01427{bottom:171.360000px;}
.y41_c01427{bottom:172.800000px;}
.y42_c01427{bottom:173.520000px;}
.y70_c01427{bottom:174.960000px;}
.y6f_c01427{bottom:176.400000px;}
.y6c_c01427{bottom:217.440000px;}
.y6d_c01427{bottom:218.160000px;}
.y6e_c01427{bottom:218.880000px;}
.y40_c01427{bottom:299.520000px;}
.y3f_c01427{bottom:302.400000px;}
.y3e_c01427{bottom:303.120000px;}
.y3b_c01427{bottom:331.200000px;}
.y3c_c01427{bottom:332.640000px;}
.y39_c01427{bottom:334.080000px;}
.y3a_c01427{bottom:334.800000px;}
.y6b_c01427{bottom:335.520000px;}
.y3d_c01427{bottom:336.240000px;}
.y6a_c01427{bottom:336.960000px;}
.y38_c01427{bottom:375.120000px;}
.y37_c01427{bottom:377.280000px;}
.y68_c01427{bottom:378.720000px;}
.y69_c01427{bottom:380.880000px;}
.y36_c01427{bottom:418.320000px;}
.y34_c01427{bottom:421.200000px;}
.y35_c01427{bottom:421.920000px;}
.y67_c01427{bottom:423.360000px;}
.y31_c01427{bottom:461.520000px;}
.y33_c01427{bottom:462.240000px;}
.y66_c01427{bottom:463.680000px;}
.y30_c01427{bottom:464.400000px;}
.y32_c01427{bottom:465.840000px;}
.y2f_c01427{bottom:505.440000px;}
.y2e_c01427{bottom:506.160000px;}
.y2d_c01427{bottom:506.880000px;}
.y64_c01427{bottom:507.600000px;}
.y2b_c01427{bottom:508.320000px;}
.y65_c01427{bottom:509.040000px;}
.y2c_c01427{bottom:509.760000px;}
.y2a_c01427{bottom:548.640000px;}
.y63_c01427{bottom:549.360000px;}
.y62_c01427{bottom:550.080000px;}
.y29_c01427{bottom:550.800000px;}
.y28_c01427{bottom:583.920000px;}
.y27_c01427{bottom:591.840000px;}
.y25_c01427{bottom:592.560000px;}
.y61_c01427{bottom:593.280000px;}
.y60_c01427{bottom:594.000000px;}
.y23_c01427{bottom:594.720000px;}
.y24_c01427{bottom:595.440000px;}
.y26_c01427{bottom:596.160000px;}
.y20_c01427{bottom:635.760000px;}
.y22_c01427{bottom:636.480000px;}
.y1f_c01427{bottom:637.200000px;}
.y5e_c01427{bottom:637.920000px;}
.y5f_c01427{bottom:638.640000px;}
.y21_c01427{bottom:639.360000px;}
.y1e_c01427{bottom:678.960000px;}
.y5c_c01427{bottom:679.680000px;}
.y1d_c01427{bottom:680.400000px;}
.y5b_c01427{bottom:681.120000px;}
.y5d_c01427{bottom:681.840000px;}
.y1c_c01427{bottom:722.880000px;}
.y19_c01427{bottom:723.600000px;}
.y5a_c01427{bottom:725.040000px;}
.y1a_c01427{bottom:726.480000px;}
.y1b_c01427{bottom:730.080000px;}
.y18_c01427{bottom:765.360000px;}
.y15_c01427{bottom:766.080000px;}
.y17_c01427{bottom:766.800000px;}
.y14_c01427{bottom:767.520000px;}
.y59_c01427{bottom:768.240000px;}
.y16_c01427{bottom:768.960000px;}
.y57_c01427{bottom:808.560000px;}
.y13_c01427{bottom:809.280000px;}
.y11_c01427{bottom:810.000000px;}
.y58_c01427{bottom:810.720000px;}
.y12_c01427{bottom:812.160000px;}
.y10_c01427{bottom:851.040000px;}
.y56_c01427{bottom:851.760000px;}
.y55_c01427{bottom:853.200000px;}
.yf_c01427{bottom:853.920000px;}
.y54_c01427{bottom:856.080000px;}
.y53_c01427{bottom:894.240000px;}
.ye_c01427{bottom:894.960000px;}
.yd_c01427{bottom:897.120000px;}
.y52_c01427{bottom:937.440000px;}
.yc_c01427{bottom:938.160000px;}
.yb_c01427{bottom:940.320000px;}
.y51_c01427{bottom:980.640000px;}
.y50_c01427{bottom:981.360000px;}
.y7_c01427{bottom:982.080000px;}
.y8_c01427{bottom:982.800000px;}
.ya_c01427{bottom:983.520000px;}
.y6_c01427{bottom:984.240000px;}
.y9_c01427{bottom:984.960000px;}
.y5_c01427{bottom:1023.120000px;}
.y4f_c01427{bottom:1023.840000px;}
.y4_c01427{bottom:1024.560000px;}
.y2_c01427{bottom:1025.280000px;}
.y3_c01427{bottom:1027.440000px;}
.y1_c01427{bottom:1028.160000px;}
.y4e_c01427{bottom:1087.920000px;}
.hd_c01427{height:15.550313px;}
.h15_c01427{height:18.142031px;}
.hc_c01427{height:25.917187px;}
.h14_c01427{height:28.508906px;}
.hb_c01427{height:31.100625px;}
.h11_c01427{height:33.692344px;}
.h9_c01427{height:36.284062px;}
.h13_c01427{height:38.875781px;}
.h6_c01427{height:46.650937px;}
.h4_c01427{height:49.242656px;}
.h5_c01427{height:51.834375px;}
.h8_c01427{height:54.426094px;}
.hf_c01427{height:57.017812px;}
.h2_c01427{height:59.609531px;}
.he_c01427{height:62.201250px;}
.h10_c01427{height:64.792969px;}
.h7_c01427{height:67.384687px;}
.h3_c01427{height:69.976406px;}
.ha_c01427{height:72.568125px;}
.h12_c01427{height:90.710156px;}
.h0_c01427{height:1153.440000px;}
.h1_c01427{height:1153.500000px;}
.w0_c01427{width:774.000000px;}
.x0_c01427{left:0.000000px;}
.xb_c01427{left:48.240000px;}
.x1_c01427{left:49.680000px;}
.xc_c01427{left:69.840000px;}
.xe_c01427{left:79.920000px;}
.xf_c01427{left:100.080000px;}
.x2_c01427{left:101.520000px;}
.x19_c01427{left:143.280000px;}
.x13_c01427{left:177.120000px;}
.xd_c01427{left:187.920000px;}
.x15_c01427{left:198.720000px;}
.x10_c01427{left:230.400000px;}
.x3_c01427{left:231.840000px;}
.x1a_c01427{left:252.720000px;}
.x8_c01427{left:264.240000px;}
.x4_c01427{left:285.840000px;}
.x9_c01427{left:317.520000px;}
.x11_c01427{left:329.040000px;}
.x1d_c01427{left:339.120000px;}
.x1e_c01427{left:349.920000px;}
.x14_c01427{left:360.000000px;}
.xa_c01427{left:362.160000px;}
.x5_c01427{left:371.520000px;}
.x16_c01427{left:382.320000px;}
.x1b_c01427{left:393.120000px;}
.x6_c01427{left:414.720000px;}
.x17_c01427{left:435.600000px;}
.x1c_c01427{left:444.960000px;}
.x7_c01427{left:469.440000px;}
.x12_c01427{left:478.080000px;}
.x18_c01427{left:488.880000px;}
.x33_c01427{left:563.760000px;}
.x29_c01427{left:565.920000px;}
.x38_c01427{left:573.840000px;}
.x28_c01427{left:575.280000px;}
.x24_c01427{left:576.720000px;}
.x20_c01427{left:578.160000px;}
.x2a_c01427{left:587.520000px;}
.x35_c01427{left:596.160000px;}
.x26_c01427{left:598.320000px;}
.x30_c01427{left:608.400000px;}
.x2e_c01427{left:628.560000px;}
.x2b_c01427{left:630.720000px;}
.x21_c01427{left:632.160000px;}
.x1f_c01427{left:654.480000px;}
.x31_c01427{left:660.960000px;}
.x2f_c01427{left:662.400000px;}
.x25_c01427{left:663.840000px;}
.x22_c01427{left:665.280000px;}
.x34_c01427{left:693.360000px;}
.x32_c01427{left:694.800000px;}
.x39_c01427{left:702.000000px;}
.x36_c01427{left:703.440000px;}
.x2c_c01427{left:704.880000px;}
.x27_c01427{left:706.320000px;}
.x23_c01427{left:707.760000px;}
.x37_c01427{left:724.320000px;}
.x2d_c01427{left:725.760000px;}
@media print{
.v0_c01427{vertical-align:0.000000pt;}
.ls0_c01427{letter-spacing:0.000000pt;}
.ws0_c01427{word-spacing:0.000000pt;}
.fsb_c01427{font-size:15.360000pt;}
.fs13_c01427{font-size:17.920000pt;}
.fsa_c01427{font-size:25.600000pt;}
.fs12_c01427{font-size:28.160000pt;}
.fs9_c01427{font-size:30.720000pt;}
.fsf_c01427{font-size:33.280000pt;}
.fs7_c01427{font-size:35.840000pt;}
.fs11_c01427{font-size:38.400000pt;}
.fs4_c01427{font-size:46.080000pt;}
.fs2_c01427{font-size:48.640000pt;}
.fs3_c01427{font-size:51.200000pt;}
.fs6_c01427{font-size:53.760000pt;}
.fsd_c01427{font-size:56.320000pt;}
.fs0_c01427{font-size:58.880000pt;}
.fsc_c01427{font-size:61.440000pt;}
.fse_c01427{font-size:64.000000pt;}
.fs5_c01427{font-size:66.560000pt;}
.fs1_c01427{font-size:69.120000pt;}
.fs8_c01427{font-size:71.680000pt;}
.fs10_c01427{font-size:89.600000pt;}
.y0_c01427{bottom:0.000000pt;}
.y4b_c01427{bottom:72.960000pt;}
.y4a_c01427{bottom:76.800000pt;}
.y4c_c01427{bottom:77.440000pt;}
.y4d_c01427{bottom:78.080000pt;}
.y75_c01427{bottom:78.720000pt;}
.y74_c01427{bottom:80.000000pt;}
.y47_c01427{bottom:113.280000pt;}
.y46_c01427{bottom:113.920000pt;}
.y48_c01427{bottom:114.560000pt;}
.y45_c01427{bottom:115.840000pt;}
.y49_c01427{bottom:117.120000pt;}
.y71_c01427{bottom:117.760000pt;}
.y72_c01427{bottom:118.400000pt;}
.y73_c01427{bottom:119.040000pt;}
.y44_c01427{bottom:151.680000pt;}
.y43_c01427{bottom:152.320000pt;}
.y41_c01427{bottom:153.600000pt;}
.y42_c01427{bottom:154.240000pt;}
.y70_c01427{bottom:155.520000pt;}
.y6f_c01427{bottom:156.800000pt;}
.y6c_c01427{bottom:193.280000pt;}
.y6d_c01427{bottom:193.920000pt;}
.y6e_c01427{bottom:194.560000pt;}
.y40_c01427{bottom:266.240000pt;}
.y3f_c01427{bottom:268.800000pt;}
.y3e_c01427{bottom:269.440000pt;}
.y3b_c01427{bottom:294.400000pt;}
.y3c_c01427{bottom:295.680000pt;}
.y39_c01427{bottom:296.960000pt;}
.y3a_c01427{bottom:297.600000pt;}
.y6b_c01427{bottom:298.240000pt;}
.y3d_c01427{bottom:298.880000pt;}
.y6a_c01427{bottom:299.520000pt;}
.y38_c01427{bottom:333.440000pt;}
.y37_c01427{bottom:335.360000pt;}
.y68_c01427{bottom:336.640000pt;}
.y69_c01427{bottom:338.560000pt;}
.y36_c01427{bottom:371.840000pt;}
.y34_c01427{bottom:374.400000pt;}
.y35_c01427{bottom:375.040000pt;}
.y67_c01427{bottom:376.320000pt;}
.y31_c01427{bottom:410.240000pt;}
.y33_c01427{bottom:410.880000pt;}
.y66_c01427{bottom:412.160000pt;}
.y30_c01427{bottom:412.800000pt;}
.y32_c01427{bottom:414.080000pt;}
.y2f_c01427{bottom:449.280000pt;}
.y2e_c01427{bottom:449.920000pt;}
.y2d_c01427{bottom:450.560000pt;}
.y64_c01427{bottom:451.200000pt;}
.y2b_c01427{bottom:451.840000pt;}
.y65_c01427{bottom:452.480000pt;}
.y2c_c01427{bottom:453.120000pt;}
.y2a_c01427{bottom:487.680000pt;}
.y63_c01427{bottom:488.320000pt;}
.y62_c01427{bottom:488.960000pt;}
.y29_c01427{bottom:489.600000pt;}
.y28_c01427{bottom:519.040000pt;}
.y27_c01427{bottom:526.080000pt;}
.y25_c01427{bottom:526.720000pt;}
.y61_c01427{bottom:527.360000pt;}
.y60_c01427{bottom:528.000000pt;}
.y23_c01427{bottom:528.640000pt;}
.y24_c01427{bottom:529.280000pt;}
.y26_c01427{bottom:529.920000pt;}
.y20_c01427{bottom:565.120000pt;}
.y22_c01427{bottom:565.760000pt;}
.y1f_c01427{bottom:566.400000pt;}
.y5e_c01427{bottom:567.040000pt;}
.y5f_c01427{bottom:567.680000pt;}
.y21_c01427{bottom:568.320000pt;}
.y1e_c01427{bottom:603.520000pt;}
.y5c_c01427{bottom:604.160000pt;}
.y1d_c01427{bottom:604.800000pt;}
.y5b_c01427{bottom:605.440000pt;}
.y5d_c01427{bottom:606.080000pt;}
.y1c_c01427{bottom:642.560000pt;}
.y19_c01427{bottom:643.200000pt;}
.y5a_c01427{bottom:644.480000pt;}
.y1a_c01427{bottom:645.760000pt;}
.y1b_c01427{bottom:648.960000pt;}
.y18_c01427{bottom:680.320000pt;}
.y15_c01427{bottom:680.960000pt;}
.y17_c01427{bottom:681.600000pt;}
.y14_c01427{bottom:682.240000pt;}
.y59_c01427{bottom:682.880000pt;}
.y16_c01427{bottom:683.520000pt;}
.y57_c01427{bottom:718.720000pt;}
.y13_c01427{bottom:719.360000pt;}
.y11_c01427{bottom:720.000000pt;}
.y58_c01427{bottom:720.640000pt;}
.y12_c01427{bottom:721.920000pt;}
.y10_c01427{bottom:756.480000pt;}
.y56_c01427{bottom:757.120000pt;}
.y55_c01427{bottom:758.400000pt;}
.yf_c01427{bottom:759.040000pt;}
.y54_c01427{bottom:760.960000pt;}
.y53_c01427{bottom:794.880000pt;}
.ye_c01427{bottom:795.520000pt;}
.yd_c01427{bottom:797.440000pt;}
.y52_c01427{bottom:833.280000pt;}
.yc_c01427{bottom:833.920000pt;}
.yb_c01427{bottom:835.840000pt;}
.y51_c01427{bottom:871.680000pt;}
.y50_c01427{bottom:872.320000pt;}
.y7_c01427{bottom:872.960000pt;}
.y8_c01427{bottom:873.600000pt;}
.ya_c01427{bottom:874.240000pt;}
.y6_c01427{bottom:874.880000pt;}
.y9_c01427{bottom:875.520000pt;}
.y5_c01427{bottom:909.440000pt;}
.y4f_c01427{bottom:910.080000pt;}
.y4_c01427{bottom:910.720000pt;}
.y2_c01427{bottom:911.360000pt;}
.y3_c01427{bottom:913.280000pt;}
.y1_c01427{bottom:913.920000pt;}
.y4e_c01427{bottom:967.040000pt;}
.hd_c01427{height:13.822500pt;}
.h15_c01427{height:16.126250pt;}
.hc_c01427{height:23.037500pt;}
.h14_c01427{height:25.341250pt;}
.hb_c01427{height:27.645000pt;}
.h11_c01427{height:29.948750pt;}
.h9_c01427{height:32.252500pt;}
.h13_c01427{height:34.556250pt;}
.h6_c01427{height:41.467500pt;}
.h4_c01427{height:43.771250pt;}
.h5_c01427{height:46.075000pt;}
.h8_c01427{height:48.378750pt;}
.hf_c01427{height:50.682500pt;}
.h2_c01427{height:52.986250pt;}
.he_c01427{height:55.290000pt;}
.h10_c01427{height:57.593750pt;}
.h7_c01427{height:59.897500pt;}
.h3_c01427{height:62.201250pt;}
.ha_c01427{height:64.505000pt;}
.h12_c01427{height:80.631250pt;}
.h0_c01427{height:1025.280000pt;}
.h1_c01427{height:1025.333333pt;}
.w0_c01427{width:688.000000pt;}
.x0_c01427{left:0.000000pt;}
.xb_c01427{left:42.880000pt;}
.x1_c01427{left:44.160000pt;}
.xc_c01427{left:62.080000pt;}
.xe_c01427{left:71.040000pt;}
.xf_c01427{left:88.960000pt;}
.x2_c01427{left:90.240000pt;}
.x19_c01427{left:127.360000pt;}
.x13_c01427{left:157.440000pt;}
.xd_c01427{left:167.040000pt;}
.x15_c01427{left:176.640000pt;}
.x10_c01427{left:204.800000pt;}
.x3_c01427{left:206.080000pt;}
.x1a_c01427{left:224.640000pt;}
.x8_c01427{left:234.880000pt;}
.x4_c01427{left:254.080000pt;}
.x9_c01427{left:282.240000pt;}
.x11_c01427{left:292.480000pt;}
.x1d_c01427{left:301.440000pt;}
.x1e_c01427{left:311.040000pt;}
.x14_c01427{left:320.000000pt;}
.xa_c01427{left:321.920000pt;}
.x5_c01427{left:330.240000pt;}
.x16_c01427{left:339.840000pt;}
.x1b_c01427{left:349.440000pt;}
.x6_c01427{left:368.640000pt;}
.x17_c01427{left:387.200000pt;}
.x1c_c01427{left:395.520000pt;}
.x7_c01427{left:417.280000pt;}
.x12_c01427{left:424.960000pt;}
.x18_c01427{left:434.560000pt;}
.x33_c01427{left:501.120000pt;}
.x29_c01427{left:503.040000pt;}
.x38_c01427{left:510.080000pt;}
.x28_c01427{left:511.360000pt;}
.x24_c01427{left:512.640000pt;}
.x20_c01427{left:513.920000pt;}
.x2a_c01427{left:522.240000pt;}
.x35_c01427{left:529.920000pt;}
.x26_c01427{left:531.840000pt;}
.x30_c01427{left:540.800000pt;}
.x2e_c01427{left:558.720000pt;}
.x2b_c01427{left:560.640000pt;}
.x21_c01427{left:561.920000pt;}
.x1f_c01427{left:581.760000pt;}
.x31_c01427{left:587.520000pt;}
.x2f_c01427{left:588.800000pt;}
.x25_c01427{left:590.080000pt;}
.x22_c01427{left:591.360000pt;}
.x34_c01427{left:616.320000pt;}
.x32_c01427{left:617.600000pt;}
.x39_c01427{left:624.000000pt;}
.x36_c01427{left:625.280000pt;}
.x2c_c01427{left:626.560000pt;}
.x27_c01427{left:627.840000pt;}
.x23_c01427{left:629.120000pt;}
.x37_c01427{left:643.840000pt;}
.x2d_c01427{left:645.120000pt;}
}





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

.ir_c01428:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01428{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01428;src:url('chunks/assets/font_19726b57fed539d568938257.woff2')format("woff");}.ff1_c01428{font-family:ff1_c01428;line-height:1.109863;font-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_c01428{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.m3d_c01428{transform:matrix(0.212325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212325,0.000000,0.000000,0.250000,0,0);}
.m49_c01428{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m44_c01428{transform:matrix(0.227450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227450,0.000000,0.000000,0.250000,0,0);}
.m31_c01428{transform:matrix(0.228800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228800,0.000000,0.000000,0.250000,0,0);}
.m48_c01428{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01428{transform:matrix(0.230400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230400,0.000000,0.000000,0.250000,0,0);}
.m1b_c01428{transform:matrix(0.238325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238325,0.000000,0.000000,0.250000,0,0);}
.m3b_c01428{transform:matrix(0.241175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241175,0.000000,0.000000,0.250000,0,0);}
.m3f_c01428{transform:matrix(0.243675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243675,0.000000,0.000000,0.250000,0,0);}
.m42_c01428{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_c01428{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);}
.m39_c01428{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_c01428{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_c01428{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m16_c01428{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m26_c01428{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);}
.m2e_c01428{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_c01428{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);}
.m20_c01428{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m5_c01428{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);}
.m2c_c01428{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);}
.m40_c01428{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);}
.m27_c01428{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);}
.m28_c01428{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01428{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m22_c01428{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m11_c01428{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01428{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m14_c01428{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1_c01428{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01428{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m46_c01428{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01428{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m35_c01428{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01428{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m10_c01428{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m25_c01428{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01428{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m45_c01428{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m9_c01428{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);}
.m47_c01428{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m0_c01428{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);}
.m3e_c01428{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01428{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01428{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01428{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);}
.m21_c01428{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.mc_c01428{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.ma_c01428{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);}
.m36_c01428{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);}
.m38_c01428{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m29_c01428{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);}
.m19_c01428{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);}
.m15_c01428{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.mb_c01428{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m18_c01428{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m37_c01428{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m33_c01428{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);}
.m13_c01428{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m4_c01428{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);}
.m7_c01428{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m8_c01428{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01428{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01428{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);}
.m6_c01428{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m2_c01428{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m41_c01428{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.md_c01428{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m3_c01428{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m23_c01428{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_c01428{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01428{transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01428{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01428{transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);}
.m43_c01428{transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);}
.m12_c01428{transform:matrix(0.880000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.880000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.880000,0.000000,0.000000,0.250000,0,0);}
.me_c01428{transform:matrix(0.945000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.945000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.945000,0.000000,0.000000,0.250000,0,0);}
.m34_c01428{transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);}
.v0_c01428{vertical-align:0.000000px;}
.ls0_c01428{letter-spacing:0.000000px;}
.sc__c01428{text-shadow:none;}
.sc0_c01428{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01428{-webkit-text-stroke:0px transparent;}
.sc0_c01428{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01428{word-spacing:0.000000px;}
.ws1_c01428{word-spacing:6.727553px;}
.ws0_c01428{word-spacing:56.938533px;}
.fc0_c01428{color:transparent;}
.fse_c01428{font-size:17.280000px;}
.fs11_c01428{font-size:23.040000px;}
.fsd_c01428{font-size:28.800000px;}
.fsf_c01428{font-size:31.680000px;}
.fsa_c01428{font-size:34.560000px;}
.fs4_c01428{font-size:43.200000px;}
.fs9_c01428{font-size:46.080000px;}
.fs12_c01428{font-size:48.960000px;}
.fs2_c01428{font-size:51.840000px;}
.fs3_c01428{font-size:54.720000px;}
.fs6_c01428{font-size:57.600000px;}
.fs0_c01428{font-size:60.480000px;}
.fs7_c01428{font-size:63.360000px;}
.fs8_c01428{font-size:66.240000px;}
.fs1_c01428{font-size:69.120000px;}
.fs5_c01428{font-size:72.000000px;}
.fsc_c01428{font-size:74.880000px;}
.fsb_c01428{font-size:77.760000px;}
.fs10_c01428{font-size:80.640000px;}
.y0_c01428{bottom:0.000000px;}
.y5b_c01428{bottom:100.080000px;}
.y5a_c01428{bottom:100.800000px;}
.y59_c01428{bottom:101.520000px;}
.y5c_c01428{bottom:102.960000px;}
.y6e_c01428{bottom:104.400000px;}
.y6f_c01428{bottom:105.840000px;}
.y58_c01428{bottom:141.120000px;}
.y56_c01428{bottom:144.000000px;}
.y57_c01428{bottom:147.600000px;}
.y6c_c01428{bottom:148.320000px;}
.y6d_c01428{bottom:150.480000px;}
.y55_c01428{bottom:185.040000px;}
.y54_c01428{bottom:190.080000px;}
.y6b_c01428{bottom:191.520000px;}
.y6a_c01428{bottom:192.960000px;}
.y50_c01428{bottom:228.960000px;}
.y53_c01428{bottom:231.120000px;}
.y4f_c01428{bottom:231.840000px;}
.y51_c01428{bottom:233.280000px;}
.y68_c01428{bottom:234.720000px;}
.y52_c01428{bottom:235.440000px;}
.y69_c01428{bottom:236.880000px;}
.y4e_c01428{bottom:272.160000px;}
.y4d_c01428{bottom:276.480000px;}
.y65_c01428{bottom:277.920000px;}
.y67_c01428{bottom:278.640000px;}
.y66_c01428{bottom:279.360000px;}
.y4c_c01428{bottom:316.080000px;}
.y4a_c01428{bottom:318.960000px;}
.y4b_c01428{bottom:319.680000px;}
.y62_c01428{bottom:320.400000px;}
.y63_c01428{bottom:321.120000px;}
.y64_c01428{bottom:324.000000px;}
.y49_c01428{bottom:359.280000px;}
.y48_c01428{bottom:362.160000px;}
.y60_c01428{bottom:362.880000px;}
.y61_c01428{bottom:363.600000px;}
.y47_c01428{bottom:407.520000px;}
.y46_c01428{bottom:457.200000px;}
.y45_c01428{bottom:458.640000px;}
.y44_c01428{bottom:460.080000px;}
.y5f_c01428{bottom:460.800000px;}
.y5e_c01428{bottom:462.960000px;}
.y41_c01428{bottom:500.400000px;}
.y43_c01428{bottom:501.840000px;}
.y42_c01428{bottom:502.560000px;}
.y3f_c01428{bottom:503.280000px;}
.y40_c01428{bottom:504.000000px;}
.y3d_c01428{bottom:543.600000px;}
.y3e_c01428{bottom:544.320000px;}
.y3c_c01428{bottom:546.480000px;}
.y5d_c01428{bottom:549.360000px;}
.y38_c01428{bottom:586.080000px;}
.y39_c01428{bottom:587.520000px;}
.y3a_c01428{bottom:588.960000px;}
.y3b_c01428{bottom:589.680000px;}
.y37_c01428{bottom:590.400000px;}
.y33_c01428{bottom:630.000000px;}
.y34_c01428{bottom:630.720000px;}
.y36_c01428{bottom:631.440000px;}
.y30_c01428{bottom:632.160000px;}
.y31_c01428{bottom:632.880000px;}
.y35_c01428{bottom:633.600000px;}
.y32_c01428{bottom:637.200000px;}
.y25_c01428{bottom:673.200000px;}
.y24_c01428{bottom:673.920000px;}
.y23_c01428{bottom:675.360000px;}
.y20_c01428{bottom:717.120000px;}
.y1f_c01428{bottom:717.840000px;}
.y2f_c01428{bottom:718.560000px;}
.y22_c01428{bottom:719.280000px;}
.y21_c01428{bottom:720.720000px;}
.y1e_c01428{bottom:760.320000px;}
.y2e_c01428{bottom:761.040000px;}
.y1b_c01428{bottom:761.760000px;}
.y1c_c01428{bottom:762.480000px;}
.y1d_c01428{bottom:763.200000px;}
.y19_c01428{bottom:804.240000px;}
.y18_c01428{bottom:804.960000px;}
.y17_c01428{bottom:805.680000px;}
.y1a_c01428{bottom:806.400000px;}
.y2c_c01428{bottom:847.440000px;}
.y15_c01428{bottom:848.160000px;}
.y13_c01428{bottom:848.880000px;}
.y2d_c01428{bottom:849.600000px;}
.y16_c01428{bottom:850.320000px;}
.y14_c01428{bottom:851.040000px;}
.y11_c01428{bottom:889.920000px;}
.y2b_c01428{bottom:890.640000px;}
.yf_c01428{bottom:891.360000px;}
.ye_c01428{bottom:892.080000px;}
.y12_c01428{bottom:893.520000px;}
.y10_c01428{bottom:894.240000px;}
.y29_c01428{bottom:933.120000px;}
.yc_c01428{bottom:934.560000px;}
.y9_c01428{bottom:935.280000px;}
.yd_c01428{bottom:936.000000px;}
.y2a_c01428{bottom:936.720000px;}
.ya_c01428{bottom:937.440000px;}
.yb_c01428{bottom:938.160000px;}
.y28_c01428{bottom:977.040000px;}
.y8_c01428{bottom:977.760000px;}
.y6_c01428{bottom:978.480000px;}
.y7_c01428{bottom:979.200000px;}
.y27_c01428{bottom:1020.240000px;}
.y2_c01428{bottom:1020.960000px;}
.y1_c01428{bottom:1021.680000px;}
.y5_c01428{bottom:1022.400000px;}
.y4_c01428{bottom:1023.120000px;}
.y3_c01428{bottom:1023.840000px;}
.y26_c01428{bottom:1088.640000px;}
.h10_c01428{height:15.550313px;}
.h13_c01428{height:20.733750px;}
.hf_c01428{height:25.917187px;}
.h11_c01428{height:28.508906px;}
.hc_c01428{height:31.100625px;}
.h6_c01428{height:38.875781px;}
.hb_c01428{height:41.467500px;}
.h14_c01428{height:44.059219px;}
.h4_c01428{height:46.650937px;}
.h5_c01428{height:49.242656px;}
.h8_c01428{height:51.834375px;}
.h2_c01428{height:54.426094px;}
.h9_c01428{height:57.017812px;}
.ha_c01428{height:59.609531px;}
.h3_c01428{height:62.201250px;}
.h7_c01428{height:64.792969px;}
.he_c01428{height:67.384687px;}
.hd_c01428{height:69.976406px;}
.h12_c01428{height:72.568125px;}
.h1_c01428{height:1151.250000px;}
.h0_c01428{height:1151.280000px;}
.w1_c01428{width:771.750000px;}
.w0_c01428{width:771.840000px;}
.x0_c01428{left:0.000000px;}
.x1_c01428{left:54.000000px;}
.x2c_c01428{left:55.440000px;}
.xc_c01428{left:75.600000px;}
.x1d_c01428{left:84.240000px;}
.x22_c01428{left:105.840000px;}
.x2_c01428{left:108.000000px;}
.x27_c01428{left:129.600000px;}
.x29_c01428{left:162.000000px;}
.xe_c01428{left:181.440000px;}
.x3_c01428{left:193.680000px;}
.x23_c01428{left:204.480000px;}
.xf_c01428{left:226.800000px;}
.x11_c01428{left:237.600000px;}
.x4_c01428{left:247.680000px;}
.x2d_c01428{left:249.120000px;}
.xd_c01428{left:257.760000px;}
.x28_c01428{left:270.000000px;}
.x2a_c01428{left:280.800000px;}
.x1e_c01428{left:291.600000px;}
.x5_c01428{left:301.680000px;}
.x12_c01428{left:323.280000px;}
.x6_c01428{left:344.880000px;}
.x2e_c01428{left:357.120000px;}
.x10_c01428{left:387.360000px;}
.x9_c01428{left:398.880000px;}
.x7_c01428{left:419.040000px;}
.x1f_c01428{left:431.280000px;}
.xa_c01428{left:450.720000px;}
.x20_c01428{left:462.960000px;}
.x8_c01428{left:473.760000px;}
.xb_c01428{left:495.360000px;}
.x21_c01428{left:514.800000px;}
.x2b_c01428{left:527.040000px;}
.x24_c01428{left:601.200000px;}
.x1b_c01428{left:602.640000px;}
.x2f_c01428{left:612.720000px;}
.x30_c01428{left:622.800000px;}
.x19_c01428{left:635.040000px;}
.x14_c01428{left:636.480000px;}
.x31_c01428{left:657.360000px;}
.x1a_c01428{left:667.440000px;}
.x15_c01428{left:668.880000px;}
.x25_c01428{left:676.800000px;}
.x1c_c01428{left:678.240000px;}
.x13_c01428{left:680.400000px;}
.x32_c01428{left:699.840000px;}
.x18_c01428{left:701.280000px;}
.x26_c01428{left:709.920000px;}
.x16_c01428{left:711.360000px;}
.x17_c01428{left:732.240000px;}
@media print{
.v0_c01428{vertical-align:0.000000pt;}
.ls0_c01428{letter-spacing:0.000000pt;}
.ws2_c01428{word-spacing:0.000000pt;}
.ws1_c01428{word-spacing:5.980047pt;}
.ws0_c01428{word-spacing:50.612029pt;}
.fse_c01428{font-size:15.360000pt;}
.fs11_c01428{font-size:20.480000pt;}
.fsd_c01428{font-size:25.600000pt;}
.fsf_c01428{font-size:28.160000pt;}
.fsa_c01428{font-size:30.720000pt;}
.fs4_c01428{font-size:38.400000pt;}
.fs9_c01428{font-size:40.960000pt;}
.fs12_c01428{font-size:43.520000pt;}
.fs2_c01428{font-size:46.080000pt;}
.fs3_c01428{font-size:48.640000pt;}
.fs6_c01428{font-size:51.200000pt;}
.fs0_c01428{font-size:53.760000pt;}
.fs7_c01428{font-size:56.320000pt;}
.fs8_c01428{font-size:58.880000pt;}
.fs1_c01428{font-size:61.440000pt;}
.fs5_c01428{font-size:64.000000pt;}
.fsc_c01428{font-size:66.560000pt;}
.fsb_c01428{font-size:69.120000pt;}
.fs10_c01428{font-size:71.680000pt;}
.y0_c01428{bottom:0.000000pt;}
.y5b_c01428{bottom:88.960000pt;}
.y5a_c01428{bottom:89.600000pt;}
.y59_c01428{bottom:90.240000pt;}
.y5c_c01428{bottom:91.520000pt;}
.y6e_c01428{bottom:92.800000pt;}
.y6f_c01428{bottom:94.080000pt;}
.y58_c01428{bottom:125.440000pt;}
.y56_c01428{bottom:128.000000pt;}
.y57_c01428{bottom:131.200000pt;}
.y6c_c01428{bottom:131.840000pt;}
.y6d_c01428{bottom:133.760000pt;}
.y55_c01428{bottom:164.480000pt;}
.y54_c01428{bottom:168.960000pt;}
.y6b_c01428{bottom:170.240000pt;}
.y6a_c01428{bottom:171.520000pt;}
.y50_c01428{bottom:203.520000pt;}
.y53_c01428{bottom:205.440000pt;}
.y4f_c01428{bottom:206.080000pt;}
.y51_c01428{bottom:207.360000pt;}
.y68_c01428{bottom:208.640000pt;}
.y52_c01428{bottom:209.280000pt;}
.y69_c01428{bottom:210.560000pt;}
.y4e_c01428{bottom:241.920000pt;}
.y4d_c01428{bottom:245.760000pt;}
.y65_c01428{bottom:247.040000pt;}
.y67_c01428{bottom:247.680000pt;}
.y66_c01428{bottom:248.320000pt;}
.y4c_c01428{bottom:280.960000pt;}
.y4a_c01428{bottom:283.520000pt;}
.y4b_c01428{bottom:284.160000pt;}
.y62_c01428{bottom:284.800000pt;}
.y63_c01428{bottom:285.440000pt;}
.y64_c01428{bottom:288.000000pt;}
.y49_c01428{bottom:319.360000pt;}
.y48_c01428{bottom:321.920000pt;}
.y60_c01428{bottom:322.560000pt;}
.y61_c01428{bottom:323.200000pt;}
.y47_c01428{bottom:362.240000pt;}
.y46_c01428{bottom:406.400000pt;}
.y45_c01428{bottom:407.680000pt;}
.y44_c01428{bottom:408.960000pt;}
.y5f_c01428{bottom:409.600000pt;}
.y5e_c01428{bottom:411.520000pt;}
.y41_c01428{bottom:444.800000pt;}
.y43_c01428{bottom:446.080000pt;}
.y42_c01428{bottom:446.720000pt;}
.y3f_c01428{bottom:447.360000pt;}
.y40_c01428{bottom:448.000000pt;}
.y3d_c01428{bottom:483.200000pt;}
.y3e_c01428{bottom:483.840000pt;}
.y3c_c01428{bottom:485.760000pt;}
.y5d_c01428{bottom:488.320000pt;}
.y38_c01428{bottom:520.960000pt;}
.y39_c01428{bottom:522.240000pt;}
.y3a_c01428{bottom:523.520000pt;}
.y3b_c01428{bottom:524.160000pt;}
.y37_c01428{bottom:524.800000pt;}
.y33_c01428{bottom:560.000000pt;}
.y34_c01428{bottom:560.640000pt;}
.y36_c01428{bottom:561.280000pt;}
.y30_c01428{bottom:561.920000pt;}
.y31_c01428{bottom:562.560000pt;}
.y35_c01428{bottom:563.200000pt;}
.y32_c01428{bottom:566.400000pt;}
.y25_c01428{bottom:598.400000pt;}
.y24_c01428{bottom:599.040000pt;}
.y23_c01428{bottom:600.320000pt;}
.y20_c01428{bottom:637.440000pt;}
.y1f_c01428{bottom:638.080000pt;}
.y2f_c01428{bottom:638.720000pt;}
.y22_c01428{bottom:639.360000pt;}
.y21_c01428{bottom:640.640000pt;}
.y1e_c01428{bottom:675.840000pt;}
.y2e_c01428{bottom:676.480000pt;}
.y1b_c01428{bottom:677.120000pt;}
.y1c_c01428{bottom:677.760000pt;}
.y1d_c01428{bottom:678.400000pt;}
.y19_c01428{bottom:714.880000pt;}
.y18_c01428{bottom:715.520000pt;}
.y17_c01428{bottom:716.160000pt;}
.y1a_c01428{bottom:716.800000pt;}
.y2c_c01428{bottom:753.280000pt;}
.y15_c01428{bottom:753.920000pt;}
.y13_c01428{bottom:754.560000pt;}
.y2d_c01428{bottom:755.200000pt;}
.y16_c01428{bottom:755.840000pt;}
.y14_c01428{bottom:756.480000pt;}
.y11_c01428{bottom:791.040000pt;}
.y2b_c01428{bottom:791.680000pt;}
.yf_c01428{bottom:792.320000pt;}
.ye_c01428{bottom:792.960000pt;}
.y12_c01428{bottom:794.240000pt;}
.y10_c01428{bottom:794.880000pt;}
.y29_c01428{bottom:829.440000pt;}
.yc_c01428{bottom:830.720000pt;}
.y9_c01428{bottom:831.360000pt;}
.yd_c01428{bottom:832.000000pt;}
.y2a_c01428{bottom:832.640000pt;}
.ya_c01428{bottom:833.280000pt;}
.yb_c01428{bottom:833.920000pt;}
.y28_c01428{bottom:868.480000pt;}
.y8_c01428{bottom:869.120000pt;}
.y6_c01428{bottom:869.760000pt;}
.y7_c01428{bottom:870.400000pt;}
.y27_c01428{bottom:906.880000pt;}
.y2_c01428{bottom:907.520000pt;}
.y1_c01428{bottom:908.160000pt;}
.y5_c01428{bottom:908.800000pt;}
.y4_c01428{bottom:909.440000pt;}
.y3_c01428{bottom:910.080000pt;}
.y26_c01428{bottom:967.680000pt;}
.h10_c01428{height:13.822500pt;}
.h13_c01428{height:18.430000pt;}
.hf_c01428{height:23.037500pt;}
.h11_c01428{height:25.341250pt;}
.hc_c01428{height:27.645000pt;}
.h6_c01428{height:34.556250pt;}
.hb_c01428{height:36.860000pt;}
.h14_c01428{height:39.163750pt;}
.h4_c01428{height:41.467500pt;}
.h5_c01428{height:43.771250pt;}
.h8_c01428{height:46.075000pt;}
.h2_c01428{height:48.378750pt;}
.h9_c01428{height:50.682500pt;}
.ha_c01428{height:52.986250pt;}
.h3_c01428{height:55.290000pt;}
.h7_c01428{height:57.593750pt;}
.he_c01428{height:59.897500pt;}
.hd_c01428{height:62.201250pt;}
.h12_c01428{height:64.505000pt;}
.h1_c01428{height:1023.333333pt;}
.h0_c01428{height:1023.360000pt;}
.w1_c01428{width:686.000000pt;}
.w0_c01428{width:686.080000pt;}
.x0_c01428{left:0.000000pt;}
.x1_c01428{left:48.000000pt;}
.x2c_c01428{left:49.280000pt;}
.xc_c01428{left:67.200000pt;}
.x1d_c01428{left:74.880000pt;}
.x22_c01428{left:94.080000pt;}
.x2_c01428{left:96.000000pt;}
.x27_c01428{left:115.200000pt;}
.x29_c01428{left:144.000000pt;}
.xe_c01428{left:161.280000pt;}
.x3_c01428{left:172.160000pt;}
.x23_c01428{left:181.760000pt;}
.xf_c01428{left:201.600000pt;}
.x11_c01428{left:211.200000pt;}
.x4_c01428{left:220.160000pt;}
.x2d_c01428{left:221.440000pt;}
.xd_c01428{left:229.120000pt;}
.x28_c01428{left:240.000000pt;}
.x2a_c01428{left:249.600000pt;}
.x1e_c01428{left:259.200000pt;}
.x5_c01428{left:268.160000pt;}
.x12_c01428{left:287.360000pt;}
.x6_c01428{left:306.560000pt;}
.x2e_c01428{left:317.440000pt;}
.x10_c01428{left:344.320000pt;}
.x9_c01428{left:354.560000pt;}
.x7_c01428{left:372.480000pt;}
.x1f_c01428{left:383.360000pt;}
.xa_c01428{left:400.640000pt;}
.x20_c01428{left:411.520000pt;}
.x8_c01428{left:421.120000pt;}
.xb_c01428{left:440.320000pt;}
.x21_c01428{left:457.600000pt;}
.x2b_c01428{left:468.480000pt;}
.x24_c01428{left:534.400000pt;}
.x1b_c01428{left:535.680000pt;}
.x2f_c01428{left:544.640000pt;}
.x30_c01428{left:553.600000pt;}
.x19_c01428{left:564.480000pt;}
.x14_c01428{left:565.760000pt;}
.x31_c01428{left:584.320000pt;}
.x1a_c01428{left:593.280000pt;}
.x15_c01428{left:594.560000pt;}
.x25_c01428{left:601.600000pt;}
.x1c_c01428{left:602.880000pt;}
.x13_c01428{left:604.800000pt;}
.x32_c01428{left:622.080000pt;}
.x18_c01428{left:623.360000pt;}
.x26_c01428{left:631.040000pt;}
.x16_c01428{left:632.320000pt;}
.x17_c01428{left:650.880000pt;}
}





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

.ir_c01429:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01429{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01429;src:url('chunks/assets/font_0b03bf641619947a92f87ec9.woff2')format("woff");}.ff1_c01429{font-family:ff1_c01429;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m45_c01429{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01429{transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);}
.m3d_c01429{transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);}
.m1a_c01429{transform:matrix(0.201425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201425,0.000000,0.000000,0.250000,0,0);}
.m2c_c01429{transform:matrix(0.205700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205700,0.000000,0.000000,0.250000,0,0);}
.m44_c01429{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m27_c01429{transform:matrix(0.224350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224350,0.000000,0.000000,0.250000,0,0);}
.m19_c01429{transform:matrix(0.230275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230275,0.000000,0.000000,0.250000,0,0);}
.m40_c01429{transform:matrix(0.233875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233875,0.000000,0.000000,0.250000,0,0);}
.m43_c01429{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.mb_c01429{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m10_c01429{transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);}
.m18_c01429{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01429{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m39_c01429{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);}
.m26_c01429{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.me_c01429{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);}
.m35_c01429{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m12_c01429{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m0_c01429{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01429{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);}
.m28_c01429{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m29_c01429{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m17_c01429{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m2_c01429{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);}
.m25_c01429{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01429{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01429{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m3_c01429{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m32_c01429{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m16_c01429{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m42_c01429{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m13_c01429{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01429{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01429{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mc_c01429{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01429{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m24_c01429{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m15_c01429{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m30_c01429{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);}
.m33_c01429{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m5_c01429{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);}
.m22_c01429{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m11_c01429{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m6_c01429{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);}
.m37_c01429{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);}
.m31_c01429{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m34_c01429{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m8_c01429{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m9_c01429{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);}
.m1c_c01429{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m20_c01429{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);}
.m1b_c01429{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.ma_c01429{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m1_c01429{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.mf_c01429{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01429{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.md_c01429{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m4_c01429{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01429{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m7_c01429{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01429{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);}
.m38_c01429{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m23_c01429{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01429{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m14_c01429{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);}
.m41_c01429{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m36_c01429{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01429{transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01429{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.v1_c01429{vertical-align:-8.640000px;}
.v0_c01429{vertical-align:0.000000px;}
.ls0_c01429{letter-spacing:0.000000px;}
.sc__c01429{text-shadow:none;}
.sc0_c01429{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01429{-webkit-text-stroke:0px transparent;}
.sc0_c01429{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01429{word-spacing:0.000000px;}
.ws1_c01429{word-spacing:9.210378px;}
.ws0_c01429{word-spacing:11.690400px;}
.fc0_c01429{color:transparent;}
.fs9_c01429{font-size:40.320000px;}
.fs4_c01429{font-size:43.200000px;}
.fsc_c01429{font-size:48.960000px;}
.fs7_c01429{font-size:51.840000px;}
.fs6_c01429{font-size:54.720000px;}
.fs5_c01429{font-size:57.600000px;}
.fs2_c01429{font-size:60.480000px;}
.fs0_c01429{font-size:63.360000px;}
.fsb_c01429{font-size:66.240000px;}
.fs1_c01429{font-size:69.120000px;}
.fse_c01429{font-size:72.000000px;}
.fsa_c01429{font-size:74.880000px;}
.fs3_c01429{font-size:77.760000px;}
.fs8_c01429{font-size:80.640000px;}
.fsd_c01429{font-size:83.520000px;}
.y0_c01429{bottom:0.000000px;}
.y3f_c01429{bottom:92.160000px;}
.y3e_c01429{bottom:95.040000px;}
.y64_c01429{bottom:98.640000px;}
.y66_c01429{bottom:100.080000px;}
.y65_c01429{bottom:100.800000px;}
.y3d_c01429{bottom:135.360000px;}
.y3b_c01429{bottom:138.240000px;}
.y3c_c01429{bottom:138.960000px;}
.y63_c01429{bottom:141.840000px;}
.y61_c01429{bottom:142.560000px;}
.y62_c01429{bottom:144.000000px;}
.y3a_c01429{bottom:182.880000px;}
.y36_c01429{bottom:232.560000px;}
.y39_c01429{bottom:234.720000px;}
.y38_c01429{bottom:235.440000px;}
.y35_c01429{bottom:236.160000px;}
.y37_c01429{bottom:236.880000px;}
.y60_c01429{bottom:239.040000px;}
.y5f_c01429{bottom:239.760000px;}
.y33_c01429{bottom:275.760000px;}
.y34_c01429{bottom:276.480000px;}
.y32_c01429{bottom:278.640000px;}
.y5c_c01429{bottom:280.080000px;}
.y5d_c01429{bottom:282.240000px;}
.y5e_c01429{bottom:284.400000px;}
.y31_c01429{bottom:318.960000px;}
.y30_c01429{bottom:323.280000px;}
.y5a_c01429{bottom:324.720000px;}
.y5b_c01429{bottom:326.160000px;}
.y2f_c01429{bottom:362.880000px;}
.y2e_c01429{bottom:365.040000px;}
.y58_c01429{bottom:367.920000px;}
.y59_c01429{bottom:368.640000px;}
.y2b_c01429{bottom:408.240000px;}
.y2d_c01429{bottom:409.680000px;}
.y2c_c01429{bottom:410.400000px;}
.y56_c01429{bottom:411.120000px;}
.y55_c01429{bottom:411.840000px;}
.y57_c01429{bottom:413.280000px;}
.y2a_c01429{bottom:450.720000px;}
.y29_c01429{bottom:451.440000px;}
.y28_c01429{bottom:452.160000px;}
.y54_c01429{bottom:455.040000px;}
.y53_c01429{bottom:455.760000px;}
.y24_c01429{bottom:494.640000px;}
.y26_c01429{bottom:495.360000px;}
.y23_c01429{bottom:496.800000px;}
.y25_c01429{bottom:497.520000px;}
.y27_c01429{bottom:498.240000px;}
.y52_c01429{bottom:499.680000px;}
.y20_c01429{bottom:538.560000px;}
.y1f_c01429{bottom:539.280000px;}
.y51_c01429{bottom:540.000000px;}
.y21_c01429{bottom:540.720000px;}
.y22_c01429{bottom:541.440000px;}
.y1d_c01429{bottom:580.320000px;}
.y1e_c01429{bottom:581.040000px;}
.y1c_c01429{bottom:582.480000px;}
.y50_c01429{bottom:583.200000px;}
.y4f_c01429{bottom:586.080000px;}
.y1b_c01429{bottom:623.520000px;}
.y1a_c01429{bottom:625.680000px;}
.y4e_c01429{bottom:626.400000px;}
.y4d_c01429{bottom:627.120000px;}
.y19_c01429{bottom:666.720000px;}
.y18_c01429{bottom:668.880000px;}
.y4c_c01429{bottom:669.600000px;}
.y4b_c01429{bottom:670.320000px;}
.y17_c01429{bottom:710.640000px;}
.y15_c01429{bottom:711.360000px;}
.y4a_c01429{bottom:712.080000px;}
.y16_c01429{bottom:713.520000px;}
.y12_c01429{bottom:753.120000px;}
.y11_c01429{bottom:753.840000px;}
.y13_c01429{bottom:755.280000px;}
.y14_c01429{bottom:757.440000px;}
.y10_c01429{bottom:796.320000px;}
.yf_c01429{bottom:798.480000px;}
.y49_c01429{bottom:800.640000px;}
.ye_c01429{bottom:839.520000px;}
.yc_c01429{bottom:840.960000px;}
.yd_c01429{bottom:841.680000px;}
.y48_c01429{bottom:842.400000px;}
.y47_c01429{bottom:843.120000px;}
.y46_c01429{bottom:843.840000px;}
.yb_c01429{bottom:882.720000px;}
.ya_c01429{bottom:883.440000px;}
.y44_c01429{bottom:884.880000px;}
.y45_c01429{bottom:885.600000px;}
.y43_c01429{bottom:887.040000px;}
.y9_c01429{bottom:930.240000px;}
.y5_c01429{bottom:979.920000px;}
.y42_c01429{bottom:981.360000px;}
.y4_c01429{bottom:982.080000px;}
.y7_c01429{bottom:982.800000px;}
.y8_c01429{bottom:983.520000px;}
.y6_c01429{bottom:984.240000px;}
.y1_c01429{bottom:1024.560000px;}
.y2_c01429{bottom:1025.280000px;}
.y3_c01429{bottom:1026.720000px;}
.y41_c01429{bottom:1027.440000px;}
.y40_c01429{bottom:1083.600000px;}
.hb_c01429{height:36.284062px;}
.h6_c01429{height:38.875781px;}
.he_c01429{height:44.059219px;}
.h9_c01429{height:46.650937px;}
.h8_c01429{height:49.242656px;}
.h7_c01429{height:51.834375px;}
.h4_c01429{height:54.426094px;}
.h2_c01429{height:57.017812px;}
.hd_c01429{height:59.609531px;}
.h3_c01429{height:62.201250px;}
.h10_c01429{height:64.792969px;}
.hc_c01429{height:67.384687px;}
.h5_c01429{height:69.976406px;}
.ha_c01429{height:72.568125px;}
.hf_c01429{height:75.159844px;}
.h0_c01429{height:1152.720000px;}
.h1_c01429{height:1152.750000px;}
.w1_c01429{width:773.250000px;}
.w0_c01429{width:773.280000px;}
.x0_c01429{left:0.000000px;}
.x1_c01429{left:55.440000px;}
.x12_c01429{left:56.880000px;}
.x1a_c01429{left:58.320000px;}
.xc_c01429{left:77.760000px;}
.x18_c01429{left:79.920000px;}
.xa_c01429{left:108.000000px;}
.x2_c01429{left:109.440000px;}
.x9_c01429{left:162.720000px;}
.x17_c01429{left:164.160000px;}
.x14_c01429{left:185.040000px;}
.x19_c01429{left:186.480000px;}
.x3_c01429{left:194.400000px;}
.xd_c01429{left:196.560000px;}
.x13_c01429{left:208.080000px;}
.x15_c01429{left:239.760000px;}
.x10_c01429{left:249.840000px;}
.x4_c01429{left:259.200000px;}
.xb_c01429{left:272.160000px;}
.xe_c01429{left:280.800000px;}
.x11_c01429{left:304.560000px;}
.xf_c01429{left:336.240000px;}
.x5_c01429{left:346.320000px;}
.x16_c01429{left:379.440000px;}
.x6_c01429{left:390.240000px;}
.x7_c01429{left:442.800000px;}
.x8_c01429{left:497.520000px;}
.x27_c01429{left:581.760000px;}
.x26_c01429{left:583.200000px;}
.x28_c01429{left:603.360000px;}
.x1e_c01429{left:604.800000px;}
.x29_c01429{left:614.160000px;}
.x1f_c01429{left:615.600000px;}
.x20_c01429{left:628.560000px;}
.x24_c01429{left:636.480000px;}
.x1c_c01429{left:637.920000px;}
.x22_c01429{left:669.600000px;}
.x2b_c01429{left:671.040000px;}
.x1b_c01429{left:680.400000px;}
.x1d_c01429{left:702.000000px;}
.x25_c01429{left:711.360000px;}
.x21_c01429{left:712.800000px;}
.x2c_c01429{left:714.240000px;}
.x2a_c01429{left:732.240000px;}
.x23_c01429{left:733.680000px;}
@media print{
.v1_c01429{vertical-align:-7.680000pt;}
.v0_c01429{vertical-align:0.000000pt;}
.ls0_c01429{letter-spacing:0.000000pt;}
.ws2_c01429{word-spacing:0.000000pt;}
.ws1_c01429{word-spacing:8.187003pt;}
.ws0_c01429{word-spacing:10.391467pt;}
.fs9_c01429{font-size:35.840000pt;}
.fs4_c01429{font-size:38.400000pt;}
.fsc_c01429{font-size:43.520000pt;}
.fs7_c01429{font-size:46.080000pt;}
.fs6_c01429{font-size:48.640000pt;}
.fs5_c01429{font-size:51.200000pt;}
.fs2_c01429{font-size:53.760000pt;}
.fs0_c01429{font-size:56.320000pt;}
.fsb_c01429{font-size:58.880000pt;}
.fs1_c01429{font-size:61.440000pt;}
.fse_c01429{font-size:64.000000pt;}
.fsa_c01429{font-size:66.560000pt;}
.fs3_c01429{font-size:69.120000pt;}
.fs8_c01429{font-size:71.680000pt;}
.fsd_c01429{font-size:74.240000pt;}
.y0_c01429{bottom:0.000000pt;}
.y3f_c01429{bottom:81.920000pt;}
.y3e_c01429{bottom:84.480000pt;}
.y64_c01429{bottom:87.680000pt;}
.y66_c01429{bottom:88.960000pt;}
.y65_c01429{bottom:89.600000pt;}
.y3d_c01429{bottom:120.320000pt;}
.y3b_c01429{bottom:122.880000pt;}
.y3c_c01429{bottom:123.520000pt;}
.y63_c01429{bottom:126.080000pt;}
.y61_c01429{bottom:126.720000pt;}
.y62_c01429{bottom:128.000000pt;}
.y3a_c01429{bottom:162.560000pt;}
.y36_c01429{bottom:206.720000pt;}
.y39_c01429{bottom:208.640000pt;}
.y38_c01429{bottom:209.280000pt;}
.y35_c01429{bottom:209.920000pt;}
.y37_c01429{bottom:210.560000pt;}
.y60_c01429{bottom:212.480000pt;}
.y5f_c01429{bottom:213.120000pt;}
.y33_c01429{bottom:245.120000pt;}
.y34_c01429{bottom:245.760000pt;}
.y32_c01429{bottom:247.680000pt;}
.y5c_c01429{bottom:248.960000pt;}
.y5d_c01429{bottom:250.880000pt;}
.y5e_c01429{bottom:252.800000pt;}
.y31_c01429{bottom:283.520000pt;}
.y30_c01429{bottom:287.360000pt;}
.y5a_c01429{bottom:288.640000pt;}
.y5b_c01429{bottom:289.920000pt;}
.y2f_c01429{bottom:322.560000pt;}
.y2e_c01429{bottom:324.480000pt;}
.y58_c01429{bottom:327.040000pt;}
.y59_c01429{bottom:327.680000pt;}
.y2b_c01429{bottom:362.880000pt;}
.y2d_c01429{bottom:364.160000pt;}
.y2c_c01429{bottom:364.800000pt;}
.y56_c01429{bottom:365.440000pt;}
.y55_c01429{bottom:366.080000pt;}
.y57_c01429{bottom:367.360000pt;}
.y2a_c01429{bottom:400.640000pt;}
.y29_c01429{bottom:401.280000pt;}
.y28_c01429{bottom:401.920000pt;}
.y54_c01429{bottom:404.480000pt;}
.y53_c01429{bottom:405.120000pt;}
.y24_c01429{bottom:439.680000pt;}
.y26_c01429{bottom:440.320000pt;}
.y23_c01429{bottom:441.600000pt;}
.y25_c01429{bottom:442.240000pt;}
.y27_c01429{bottom:442.880000pt;}
.y52_c01429{bottom:444.160000pt;}
.y20_c01429{bottom:478.720000pt;}
.y1f_c01429{bottom:479.360000pt;}
.y51_c01429{bottom:480.000000pt;}
.y21_c01429{bottom:480.640000pt;}
.y22_c01429{bottom:481.280000pt;}
.y1d_c01429{bottom:515.840000pt;}
.y1e_c01429{bottom:516.480000pt;}
.y1c_c01429{bottom:517.760000pt;}
.y50_c01429{bottom:518.400000pt;}
.y4f_c01429{bottom:520.960000pt;}
.y1b_c01429{bottom:554.240000pt;}
.y1a_c01429{bottom:556.160000pt;}
.y4e_c01429{bottom:556.800000pt;}
.y4d_c01429{bottom:557.440000pt;}
.y19_c01429{bottom:592.640000pt;}
.y18_c01429{bottom:594.560000pt;}
.y4c_c01429{bottom:595.200000pt;}
.y4b_c01429{bottom:595.840000pt;}
.y17_c01429{bottom:631.680000pt;}
.y15_c01429{bottom:632.320000pt;}
.y4a_c01429{bottom:632.960000pt;}
.y16_c01429{bottom:634.240000pt;}
.y12_c01429{bottom:669.440000pt;}
.y11_c01429{bottom:670.080000pt;}
.y13_c01429{bottom:671.360000pt;}
.y14_c01429{bottom:673.280000pt;}
.y10_c01429{bottom:707.840000pt;}
.yf_c01429{bottom:709.760000pt;}
.y49_c01429{bottom:711.680000pt;}
.ye_c01429{bottom:746.240000pt;}
.yc_c01429{bottom:747.520000pt;}
.yd_c01429{bottom:748.160000pt;}
.y48_c01429{bottom:748.800000pt;}
.y47_c01429{bottom:749.440000pt;}
.y46_c01429{bottom:750.080000pt;}
.yb_c01429{bottom:784.640000pt;}
.ya_c01429{bottom:785.280000pt;}
.y44_c01429{bottom:786.560000pt;}
.y45_c01429{bottom:787.200000pt;}
.y43_c01429{bottom:788.480000pt;}
.y9_c01429{bottom:826.880000pt;}
.y5_c01429{bottom:871.040000pt;}
.y42_c01429{bottom:872.320000pt;}
.y4_c01429{bottom:872.960000pt;}
.y7_c01429{bottom:873.600000pt;}
.y8_c01429{bottom:874.240000pt;}
.y6_c01429{bottom:874.880000pt;}
.y1_c01429{bottom:910.720000pt;}
.y2_c01429{bottom:911.360000pt;}
.y3_c01429{bottom:912.640000pt;}
.y41_c01429{bottom:913.280000pt;}
.y40_c01429{bottom:963.200000pt;}
.hb_c01429{height:32.252500pt;}
.h6_c01429{height:34.556250pt;}
.he_c01429{height:39.163750pt;}
.h9_c01429{height:41.467500pt;}
.h8_c01429{height:43.771250pt;}
.h7_c01429{height:46.075000pt;}
.h4_c01429{height:48.378750pt;}
.h2_c01429{height:50.682500pt;}
.hd_c01429{height:52.986250pt;}
.h3_c01429{height:55.290000pt;}
.h10_c01429{height:57.593750pt;}
.hc_c01429{height:59.897500pt;}
.h5_c01429{height:62.201250pt;}
.ha_c01429{height:64.505000pt;}
.hf_c01429{height:66.808750pt;}
.h0_c01429{height:1024.640000pt;}
.h1_c01429{height:1024.666667pt;}
.w1_c01429{width:687.333333pt;}
.w0_c01429{width:687.360000pt;}
.x0_c01429{left:0.000000pt;}
.x1_c01429{left:49.280000pt;}
.x12_c01429{left:50.560000pt;}
.x1a_c01429{left:51.840000pt;}
.xc_c01429{left:69.120000pt;}
.x18_c01429{left:71.040000pt;}
.xa_c01429{left:96.000000pt;}
.x2_c01429{left:97.280000pt;}
.x9_c01429{left:144.640000pt;}
.x17_c01429{left:145.920000pt;}
.x14_c01429{left:164.480000pt;}
.x19_c01429{left:165.760000pt;}
.x3_c01429{left:172.800000pt;}
.xd_c01429{left:174.720000pt;}
.x13_c01429{left:184.960000pt;}
.x15_c01429{left:213.120000pt;}
.x10_c01429{left:222.080000pt;}
.x4_c01429{left:230.400000pt;}
.xb_c01429{left:241.920000pt;}
.xe_c01429{left:249.600000pt;}
.x11_c01429{left:270.720000pt;}
.xf_c01429{left:298.880000pt;}
.x5_c01429{left:307.840000pt;}
.x16_c01429{left:337.280000pt;}
.x6_c01429{left:346.880000pt;}
.x7_c01429{left:393.600000pt;}
.x8_c01429{left:442.240000pt;}
.x27_c01429{left:517.120000pt;}
.x26_c01429{left:518.400000pt;}
.x28_c01429{left:536.320000pt;}
.x1e_c01429{left:537.600000pt;}
.x29_c01429{left:545.920000pt;}
.x1f_c01429{left:547.200000pt;}
.x20_c01429{left:558.720000pt;}
.x24_c01429{left:565.760000pt;}
.x1c_c01429{left:567.040000pt;}
.x22_c01429{left:595.200000pt;}
.x2b_c01429{left:596.480000pt;}
.x1b_c01429{left:604.800000pt;}
.x1d_c01429{left:624.000000pt;}
.x25_c01429{left:632.320000pt;}
.x21_c01429{left:633.600000pt;}
.x2c_c01429{left:634.880000pt;}
.x2a_c01429{left:650.880000pt;}
.x23_c01429{left:652.160000pt;}
}





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

.ir_c01430:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01430{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01430;src:url('chunks/assets/font_83fa40e062afbe7d8948ea1b.woff2')format("woff");}.ff1_c01430{font-family:ff1_c01430;line-height:1.109863;font-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_c01430{transform:matrix(0.185775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185775,0.000000,0.000000,0.250000,0,0);}
.m51_c01430{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m13_c01430{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);}
.m4b_c01430{transform:matrix(0.239600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239600,0.000000,0.000000,0.250000,0,0);}
.m34_c01430{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m47_c01430{transform:matrix(0.245450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245450,0.000000,0.000000,0.250000,0,0);}
.m4d_c01430{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m2c_c01430{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);}
.m3f_c01430{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);}
.m22_c01430{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m4_c01430{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);}
.m35_c01430{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m2_c01430{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m16_c01430{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_c01430{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);}
.m23_c01430{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m24_c01430{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.mc_c01430{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m46_c01430{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m18_c01430{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m5_c01430{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m10_c01430{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mf_c01430{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m9_c01430{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01430{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01430{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m20_c01430{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01430{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01430{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m31_c01430{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01430{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m12_c01430{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01430{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m45_c01430{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m38_c01430{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m30_c01430{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01430{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);}
.m1e_c01430{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m48_c01430{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);}
.m4e_c01430{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_c01430{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);}
.m43_c01430{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m39_c01430{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);}
.m2f_c01430{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);}
.m2d_c01430{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);}
.m3d_c01430{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.md_c01430{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m0_c01430{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);}
.m2b_c01430{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);}
.m42_c01430{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);}
.m32_c01430{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);}
.m3a_c01430{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);}
.m2a_c01430{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m3_c01430{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.mb_c01430{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);}
.m36_c01430{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);}
.m49_c01430{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);}
.m41_c01430{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m1_c01430{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m44_c01430{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m8_c01430{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m29_c01430{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m14_c01430{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m27_c01430{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m21_c01430{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);}
.m40_c01430{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m17_c01430{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);}
.m3c_c01430{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);}
.m4f_c01430{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.ma_c01430{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m11_c01430{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);}
.m3e_c01430{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m7_c01430{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);}
.m50_c01430{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m26_c01430{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m6_c01430{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.me_c01430{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01430{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01430{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m37_c01430{transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01430{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m28_c01430{transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);}
.v2_c01430{vertical-align:-5.760000px;}
.v0_c01430{vertical-align:0.000000px;}
.v1_c01430{vertical-align:8.640000px;}
.ls0_c01430{letter-spacing:0.000000px;}
.sc__c01430{text-shadow:none;}
.sc0_c01430{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01430{-webkit-text-stroke:0px transparent;}
.sc0_c01430{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01430{word-spacing:0.000000px;}
.ws2_c01430{word-spacing:9.474000px;}
.ws1_c01430{word-spacing:14.240400px;}
.ws0_c01430{word-spacing:16.838400px;}
.fc0_c01430{color:transparent;}
.fsc_c01430{font-size:17.280000px;}
.fsb_c01430{font-size:25.920000px;}
.fse_c01430{font-size:31.680000px;}
.fs4_c01430{font-size:34.560000px;}
.fs10_c01430{font-size:40.320000px;}
.fsd_c01430{font-size:43.200000px;}
.fs9_c01430{font-size:48.960000px;}
.fs6_c01430{font-size:51.840000px;}
.fs8_c01430{font-size:54.720000px;}
.fs1_c01430{font-size:57.600000px;}
.fs3_c01430{font-size:60.480000px;}
.fsa_c01430{font-size:63.360000px;}
.fs5_c01430{font-size:66.240000px;}
.fs7_c01430{font-size:69.120000px;}
.fs0_c01430{font-size:72.000000px;}
.fsf_c01430{font-size:74.880000px;}
.fs2_c01430{font-size:77.760000px;}
.fs11_c01430{font-size:83.520000px;}
.y0_c01430{bottom:0.000000px;}
.y59_c01430{bottom:64.800000px;}
.y58_c01430{bottom:68.400000px;}
.y5b_c01430{bottom:69.120000px;}
.y5a_c01430{bottom:69.840000px;}
.y69_c01430{bottom:70.560000px;}
.y6a_c01430{bottom:72.000000px;}
.y57_c01430{bottom:108.720000px;}
.y56_c01430{bottom:111.600000px;}
.y66_c01430{bottom:113.760000px;}
.y67_c01430{bottom:114.480000px;}
.y68_c01430{bottom:115.920000px;}
.y55_c01430{bottom:151.920000px;}
.y54_c01430{bottom:154.800000px;}
.y63_c01430{bottom:156.960000px;}
.y64_c01430{bottom:157.680000px;}
.y65_c01430{bottom:159.120000px;}
.y53_c01430{bottom:195.120000px;}
.y52_c01430{bottom:198.000000px;}
.y60_c01430{bottom:200.160000px;}
.y61_c01430{bottom:200.880000px;}
.y62_c01430{bottom:202.320000px;}
.y51_c01430{bottom:239.040000px;}
.y50_c01430{bottom:241.200000px;}
.y4f_c01430{bottom:242.640000px;}
.y5f_c01430{bottom:244.800000px;}
.y5e_c01430{bottom:246.240000px;}
.y4e_c01430{bottom:282.240000px;}
.y4d_c01430{bottom:284.400000px;}
.y5c_c01430{bottom:286.560000px;}
.y5d_c01430{bottom:287.280000px;}
.y4c_c01430{bottom:329.760000px;}
.y39_c01430{bottom:380.160000px;}
.y37_c01430{bottom:383.040000px;}
.y38_c01430{bottom:383.760000px;}
.y41_c01430{bottom:385.920000px;}
.y49_c01430{bottom:424.800000px;}
.y4b_c01430{bottom:425.520000px;}
.y3f_c01430{bottom:426.240000px;}
.y3e_c01430{bottom:426.960000px;}
.y4a_c01430{bottom:427.680000px;}
.y40_c01430{bottom:429.120000px;}
.y47_c01430{bottom:468.000000px;}
.y46_c01430{bottom:468.720000px;}
.y3d_c01430{bottom:469.440000px;}
.y48_c01430{bottom:470.160000px;}
.y3c_c01430{bottom:470.880000px;}
.y44_c01430{bottom:510.480000px;}
.y43_c01430{bottom:511.920000px;}
.y3b_c01430{bottom:512.640000px;}
.y42_c01430{bottom:513.360000px;}
.y45_c01430{bottom:514.080000px;}
.y3a_c01430{bottom:514.800000px;}
.yc_c01430{bottom:553.680000px;}
.ya_c01430{bottom:554.400000px;}
.yb_c01430{bottom:557.280000px;}
.y9_c01430{bottom:586.080000px;}
.y8_c01430{bottom:586.800000px;}
.y26_c01430{bottom:587.520000px;}
.y6_c01430{bottom:588.240000px;}
.y7_c01430{bottom:588.960000px;}
.y36_c01430{bottom:629.280000px;}
.y24_c01430{bottom:630.720000px;}
.y23_c01430{bottom:631.440000px;}
.y25_c01430{bottom:632.160000px;}
.y35_c01430{bottom:632.880000px;}
.y21_c01430{bottom:673.200000px;}
.y22_c01430{bottom:673.920000px;}
.y20_c01430{bottom:675.360000px;}
.y33_c01430{bottom:716.400000px;}
.y1e_c01430{bottom:717.120000px;}
.y1d_c01430{bottom:717.840000px;}
.y1f_c01430{bottom:718.560000px;}
.y1c_c01430{bottom:719.280000px;}
.y34_c01430{bottom:720.720000px;}
.y1b_c01430{bottom:759.600000px;}
.y19_c01430{bottom:760.320000px;}
.y32_c01430{bottom:761.760000px;}
.y1a_c01430{bottom:762.480000px;}
.y18_c01430{bottom:802.800000px;}
.y2f_c01430{bottom:803.520000px;}
.y30_c01430{bottom:804.960000px;}
.y17_c01430{bottom:805.680000px;}
.y31_c01430{bottom:806.400000px;}
.y16_c01430{bottom:846.000000px;}
.y2e_c01430{bottom:846.720000px;}
.y2d_c01430{bottom:848.160000px;}
.y15_c01430{bottom:849.600000px;}
.y2c_c01430{bottom:889.200000px;}
.y13_c01430{bottom:889.920000px;}
.y2b_c01430{bottom:890.640000px;}
.y14_c01430{bottom:891.360000px;}
.y2a_c01430{bottom:892.800000px;}
.y28_c01430{bottom:893.520000px;}
.y29_c01430{bottom:897.120000px;}
.y10_c01430{bottom:930.960000px;}
.yf_c01430{bottom:932.400000px;}
.y12_c01430{bottom:933.840000px;}
.y27_c01430{bottom:934.560000px;}
.y11_c01430{bottom:935.280000px;}
.ye_c01430{bottom:974.880000px;}
.y5_c01430{bottom:975.600000px;}
.y4_c01430{bottom:977.760000px;}
.yd_c01430{bottom:1017.360000px;}
.y3_c01430{bottom:1018.800000px;}
.y2_c01430{bottom:1021.680000px;}
.y1_c01430{bottom:1088.640000px;}
.hf_c01430{height:15.550313px;}
.he_c01430{height:23.325469px;}
.h11_c01430{height:28.508906px;}
.h6_c01430{height:31.100625px;}
.h13_c01430{height:36.284062px;}
.h10_c01430{height:38.875781px;}
.hb_c01430{height:44.059219px;}
.h8_c01430{height:46.650937px;}
.ha_c01430{height:49.242656px;}
.h3_c01430{height:51.834375px;}
.h5_c01430{height:54.426094px;}
.hc_c01430{height:57.017812px;}
.h7_c01430{height:59.609531px;}
.h9_c01430{height:62.201250px;}
.hd_c01430{height:63.066094px;}
.h2_c01430{height:64.792969px;}
.h12_c01430{height:67.384687px;}
.h4_c01430{height:69.976406px;}
.h14_c01430{height:75.159844px;}
.h1_c01430{height:1150.500000px;}
.h0_c01430{height:1150.560000px;}
.w1_c01430{width:769.500000px;}
.w0_c01430{width:769.680000px;}
.x0_c01430{left:0.000000px;}
.x2_c01430{left:48.240000px;}
.x4_c01430{left:49.680000px;}
.x1d_c01430{left:70.560000px;}
.x1e_c01430{left:79.920000px;}
.x5_c01430{left:81.360000px;}
.x3_c01430{left:101.520000px;}
.xd_c01430{left:111.600000px;}
.x6_c01430{left:113.040000px;}
.x30_c01430{left:156.240000px;}
.xe_c01430{left:177.120000px;}
.x25_c01430{left:188.640000px;}
.x7_c01430{left:198.720000px;}
.x22_c01430{left:220.320000px;}
.xf_c01430{left:231.120000px;}
.x28_c01430{left:243.360000px;}
.x8_c01430{left:253.440000px;}
.x2b_c01430{left:263.520000px;}
.x1f_c01430{left:276.480000px;}
.x10_c01430{left:285.120000px;}
.x31_c01430{left:287.280000px;}
.x9_c01430{left:308.160000px;}
.x23_c01430{left:316.080000px;}
.x20_c01430{left:317.520000px;}
.x32_c01430{left:320.400000px;}
.x33_c01430{left:330.480000px;}
.x26_c01430{left:349.200000px;}
.x24_c01430{left:360.720000px;}
.x34_c01430{left:371.520000px;}
.x27_c01430{left:393.120000px;}
.x2c_c01430{left:403.200000px;}
.x35_c01430{left:414.720000px;}
.x2e_c01430{left:424.800000px;}
.xa_c01430{left:436.320000px;}
.x21_c01430{left:437.760000px;}
.x2d_c01430{left:457.920000px;}
.x36_c01430{left:468.720000px;}
.x2f_c01430{left:478.080000px;}
.xb_c01430{left:489.600000px;}
.xc_c01430{left:542.880000px;}
.x1b_c01430{left:575.280000px;}
.x19_c01430{left:576.720000px;}
.x3b_c01430{left:596.880000px;}
.x37_c01430{left:607.680000px;}
.x16_c01430{left:609.120000px;}
.x2a_c01430{left:628.560000px;}
.x17_c01430{left:630.000000px;}
.x11_c01430{left:631.439415px;}
.x39_c01430{left:660.960000px;}
.x18_c01430{left:662.400000px;}
.x12_c01430{left:663.840000px;}
.x1_c01430{left:666.720000px;}
.x38_c01430{left:671.760000px;}
.x29_c01430{left:693.360000px;}
.x3c_c01430{left:703.440000px;}
.x1a_c01430{left:704.880000px;}
.x15_c01430{left:706.320000px;}
.x13_c01430{left:707.760000px;}
.x3a_c01430{left:724.320000px;}
.x1c_c01430{left:725.760000px;}
.x14_c01430{left:727.200000px;}
@media print{
.v2_c01430{vertical-align:-5.120000pt;}
.v0_c01430{vertical-align:0.000000pt;}
.v1_c01430{vertical-align:7.680000pt;}
.ls0_c01430{letter-spacing:0.000000pt;}
.ws3_c01430{word-spacing:0.000000pt;}
.ws2_c01430{word-spacing:8.421333pt;}
.ws1_c01430{word-spacing:12.658133pt;}
.ws0_c01430{word-spacing:14.967467pt;}
.fsc_c01430{font-size:15.360000pt;}
.fsb_c01430{font-size:23.040000pt;}
.fse_c01430{font-size:28.160000pt;}
.fs4_c01430{font-size:30.720000pt;}
.fs10_c01430{font-size:35.840000pt;}
.fsd_c01430{font-size:38.400000pt;}
.fs9_c01430{font-size:43.520000pt;}
.fs6_c01430{font-size:46.080000pt;}
.fs8_c01430{font-size:48.640000pt;}
.fs1_c01430{font-size:51.200000pt;}
.fs3_c01430{font-size:53.760000pt;}
.fsa_c01430{font-size:56.320000pt;}
.fs5_c01430{font-size:58.880000pt;}
.fs7_c01430{font-size:61.440000pt;}
.fs0_c01430{font-size:64.000000pt;}
.fsf_c01430{font-size:66.560000pt;}
.fs2_c01430{font-size:69.120000pt;}
.fs11_c01430{font-size:74.240000pt;}
.y0_c01430{bottom:0.000000pt;}
.y59_c01430{bottom:57.600000pt;}
.y58_c01430{bottom:60.800000pt;}
.y5b_c01430{bottom:61.440000pt;}
.y5a_c01430{bottom:62.080000pt;}
.y69_c01430{bottom:62.720000pt;}
.y6a_c01430{bottom:64.000000pt;}
.y57_c01430{bottom:96.640000pt;}
.y56_c01430{bottom:99.200000pt;}
.y66_c01430{bottom:101.120000pt;}
.y67_c01430{bottom:101.760000pt;}
.y68_c01430{bottom:103.040000pt;}
.y55_c01430{bottom:135.040000pt;}
.y54_c01430{bottom:137.600000pt;}
.y63_c01430{bottom:139.520000pt;}
.y64_c01430{bottom:140.160000pt;}
.y65_c01430{bottom:141.440000pt;}
.y53_c01430{bottom:173.440000pt;}
.y52_c01430{bottom:176.000000pt;}
.y60_c01430{bottom:177.920000pt;}
.y61_c01430{bottom:178.560000pt;}
.y62_c01430{bottom:179.840000pt;}
.y51_c01430{bottom:212.480000pt;}
.y50_c01430{bottom:214.400000pt;}
.y4f_c01430{bottom:215.680000pt;}
.y5f_c01430{bottom:217.600000pt;}
.y5e_c01430{bottom:218.880000pt;}
.y4e_c01430{bottom:250.880000pt;}
.y4d_c01430{bottom:252.800000pt;}
.y5c_c01430{bottom:254.720000pt;}
.y5d_c01430{bottom:255.360000pt;}
.y4c_c01430{bottom:293.120000pt;}
.y39_c01430{bottom:337.920000pt;}
.y37_c01430{bottom:340.480000pt;}
.y38_c01430{bottom:341.120000pt;}
.y41_c01430{bottom:343.040000pt;}
.y49_c01430{bottom:377.600000pt;}
.y4b_c01430{bottom:378.240000pt;}
.y3f_c01430{bottom:378.880000pt;}
.y3e_c01430{bottom:379.520000pt;}
.y4a_c01430{bottom:380.160000pt;}
.y40_c01430{bottom:381.440000pt;}
.y47_c01430{bottom:416.000000pt;}
.y46_c01430{bottom:416.640000pt;}
.y3d_c01430{bottom:417.280000pt;}
.y48_c01430{bottom:417.920000pt;}
.y3c_c01430{bottom:418.560000pt;}
.y44_c01430{bottom:453.760000pt;}
.y43_c01430{bottom:455.040000pt;}
.y3b_c01430{bottom:455.680000pt;}
.y42_c01430{bottom:456.320000pt;}
.y45_c01430{bottom:456.960000pt;}
.y3a_c01430{bottom:457.600000pt;}
.yc_c01430{bottom:492.160000pt;}
.ya_c01430{bottom:492.800000pt;}
.yb_c01430{bottom:495.360000pt;}
.y9_c01430{bottom:520.960000pt;}
.y8_c01430{bottom:521.600000pt;}
.y26_c01430{bottom:522.240000pt;}
.y6_c01430{bottom:522.880000pt;}
.y7_c01430{bottom:523.520000pt;}
.y36_c01430{bottom:559.360000pt;}
.y24_c01430{bottom:560.640000pt;}
.y23_c01430{bottom:561.280000pt;}
.y25_c01430{bottom:561.920000pt;}
.y35_c01430{bottom:562.560000pt;}
.y21_c01430{bottom:598.400000pt;}
.y22_c01430{bottom:599.040000pt;}
.y20_c01430{bottom:600.320000pt;}
.y33_c01430{bottom:636.800000pt;}
.y1e_c01430{bottom:637.440000pt;}
.y1d_c01430{bottom:638.080000pt;}
.y1f_c01430{bottom:638.720000pt;}
.y1c_c01430{bottom:639.360000pt;}
.y34_c01430{bottom:640.640000pt;}
.y1b_c01430{bottom:675.200000pt;}
.y19_c01430{bottom:675.840000pt;}
.y32_c01430{bottom:677.120000pt;}
.y1a_c01430{bottom:677.760000pt;}
.y18_c01430{bottom:713.600000pt;}
.y2f_c01430{bottom:714.240000pt;}
.y30_c01430{bottom:715.520000pt;}
.y17_c01430{bottom:716.160000pt;}
.y31_c01430{bottom:716.800000pt;}
.y16_c01430{bottom:752.000000pt;}
.y2e_c01430{bottom:752.640000pt;}
.y2d_c01430{bottom:753.920000pt;}
.y15_c01430{bottom:755.200000pt;}
.y2c_c01430{bottom:790.400000pt;}
.y13_c01430{bottom:791.040000pt;}
.y2b_c01430{bottom:791.680000pt;}
.y14_c01430{bottom:792.320000pt;}
.y2a_c01430{bottom:793.600000pt;}
.y28_c01430{bottom:794.240000pt;}
.y29_c01430{bottom:797.440000pt;}
.y10_c01430{bottom:827.520000pt;}
.yf_c01430{bottom:828.800000pt;}
.y12_c01430{bottom:830.080000pt;}
.y27_c01430{bottom:830.720000pt;}
.y11_c01430{bottom:831.360000pt;}
.ye_c01430{bottom:866.560000pt;}
.y5_c01430{bottom:867.200000pt;}
.y4_c01430{bottom:869.120000pt;}
.yd_c01430{bottom:904.320000pt;}
.y3_c01430{bottom:905.600000pt;}
.y2_c01430{bottom:908.160000pt;}
.y1_c01430{bottom:967.680000pt;}
.hf_c01430{height:13.822500pt;}
.he_c01430{height:20.733750pt;}
.h11_c01430{height:25.341250pt;}
.h6_c01430{height:27.645000pt;}
.h13_c01430{height:32.252500pt;}
.h10_c01430{height:34.556250pt;}
.hb_c01430{height:39.163750pt;}
.h8_c01430{height:41.467500pt;}
.ha_c01430{height:43.771250pt;}
.h3_c01430{height:46.075000pt;}
.h5_c01430{height:48.378750pt;}
.hc_c01430{height:50.682500pt;}
.h7_c01430{height:52.986250pt;}
.h9_c01430{height:55.290000pt;}
.hd_c01430{height:56.058750pt;}
.h2_c01430{height:57.593750pt;}
.h12_c01430{height:59.897500pt;}
.h4_c01430{height:62.201250pt;}
.h14_c01430{height:66.808750pt;}
.h1_c01430{height:1022.666667pt;}
.h0_c01430{height:1022.720000pt;}
.w1_c01430{width:684.000000pt;}
.w0_c01430{width:684.160000pt;}
.x0_c01430{left:0.000000pt;}
.x2_c01430{left:42.880000pt;}
.x4_c01430{left:44.160000pt;}
.x1d_c01430{left:62.720000pt;}
.x1e_c01430{left:71.040000pt;}
.x5_c01430{left:72.320000pt;}
.x3_c01430{left:90.240000pt;}
.xd_c01430{left:99.200000pt;}
.x6_c01430{left:100.480000pt;}
.x30_c01430{left:138.880000pt;}
.xe_c01430{left:157.440000pt;}
.x25_c01430{left:167.680000pt;}
.x7_c01430{left:176.640000pt;}
.x22_c01430{left:195.840000pt;}
.xf_c01430{left:205.440000pt;}
.x28_c01430{left:216.320000pt;}
.x8_c01430{left:225.280000pt;}
.x2b_c01430{left:234.240000pt;}
.x1f_c01430{left:245.760000pt;}
.x10_c01430{left:253.440000pt;}
.x31_c01430{left:255.360000pt;}
.x9_c01430{left:273.920000pt;}
.x23_c01430{left:280.960000pt;}
.x20_c01430{left:282.240000pt;}
.x32_c01430{left:284.800000pt;}
.x33_c01430{left:293.760000pt;}
.x26_c01430{left:310.400000pt;}
.x24_c01430{left:320.640000pt;}
.x34_c01430{left:330.240000pt;}
.x27_c01430{left:349.440000pt;}
.x2c_c01430{left:358.400000pt;}
.x35_c01430{left:368.640000pt;}
.x2e_c01430{left:377.600000pt;}
.xa_c01430{left:387.840000pt;}
.x21_c01430{left:389.120000pt;}
.x2d_c01430{left:407.040000pt;}
.x36_c01430{left:416.640000pt;}
.x2f_c01430{left:424.960000pt;}
.xb_c01430{left:435.200000pt;}
.xc_c01430{left:482.560000pt;}
.x1b_c01430{left:511.360000pt;}
.x19_c01430{left:512.640000pt;}
.x3b_c01430{left:530.560000pt;}
.x37_c01430{left:540.160000pt;}
.x16_c01430{left:541.440000pt;}
.x2a_c01430{left:558.720000pt;}
.x17_c01430{left:560.000000pt;}
.x11_c01430{left:561.279480pt;}
.x39_c01430{left:587.520000pt;}
.x18_c01430{left:588.800000pt;}
.x12_c01430{left:590.080000pt;}
.x1_c01430{left:592.640000pt;}
.x38_c01430{left:597.120000pt;}
.x29_c01430{left:616.320000pt;}
.x3c_c01430{left:625.280000pt;}
.x1a_c01430{left:626.560000pt;}
.x15_c01430{left:627.840000pt;}
.x13_c01430{left:629.120000pt;}
.x3a_c01430{left:643.840000pt;}
.x1c_c01430{left:645.120000pt;}
.x14_c01430{left:646.400000pt;}
}





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

.ir_c01431:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01431{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01431;src:url('chunks/assets/font_9cc7ee5ba8ddf9133e0949b2.woff2')format("woff");}.ff1_c01431{font-family:ff1_c01431;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m46_c01431{transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);}
.md_c01431{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01431{transform:matrix(0.185775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185775,0.000000,0.000000,0.250000,0,0);}
.m43_c01431{transform:matrix(0.205350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205350,0.000000,0.000000,0.250000,0,0);}
.m35_c01431{transform:matrix(0.212075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212075,0.000000,0.000000,0.250000,0,0);}
.m1f_c01431{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m39_c01431{transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);}
.m15_c01431{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_c01431{transform:matrix(0.227725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227725,0.000000,0.000000,0.250000,0,0);}
.m4b_c01431{transform:matrix(0.229075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229075,0.000000,0.000000,0.250000,0,0);}
.m3d_c01431{transform:matrix(0.233475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233475,0.000000,0.000000,0.250000,0,0);}
.m4c_c01431{transform:matrix(0.234200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234200,0.000000,0.000000,0.250000,0,0);}
.m5_c01431{transform:matrix(0.236825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236825,0.000000,0.000000,0.250000,0,0);}
.m45_c01431{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m32_c01431{transform:matrix(0.237900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237900,0.000000,0.000000,0.250000,0,0);}
.m34_c01431{transform:matrix(0.245600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245600,0.000000,0.000000,0.250000,0,0);}
.m3a_c01431{transform:matrix(0.248700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248700,0.000000,0.000000,0.250000,0,0);}
.m27_c01431{transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);}
.m2e_c01431{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01431{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m13_c01431{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);}
.m4d_c01431{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_c01431{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m16_c01431{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.ma_c01431{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mf_c01431{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.mb_c01431{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m17_c01431{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01431{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01431{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);}
.m37_c01431{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m7_c01431{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m18_c01431{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2_c01431{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m47_c01431{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m10_c01431{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01431{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m48_c01431{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m11_c01431{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.me_c01431{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01431{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01431{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m4_c01431{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mc_c01431{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01431{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m30_c01431{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01431{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);}
.m41_c01431{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01431{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);}
.m20_c01431{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01431{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);}
.m49_c01431{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);}
.m23_c01431{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m3_c01431{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);}
.m8_c01431{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);}
.m38_c01431{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m25_c01431{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);}
.m36_c01431{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);}
.m26_c01431{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);}
.m0_c01431{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m12_c01431{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);}
.m3f_c01431{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m1_c01431{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m6_c01431{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);}
.m42_c01431{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m29_c01431{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01431{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01431{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01431{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01431{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m31_c01431{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m24_c01431{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);}
.m40_c01431{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_c01431{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01431{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m21_c01431{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m19_c01431{transform:matrix(0.647500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.647500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.647500,0.000000,0.000000,0.250000,0,0);}
.m44_c01431{transform:matrix(0.817500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.817500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.817500,0.000000,0.000000,0.250000,0,0);}
.v1_c01431{vertical-align:-14.400000px;}
.v0_c01431{vertical-align:0.000000px;}
.ls0_c01431{letter-spacing:0.000000px;}
.sc__c01431{text-shadow:none;}
.sc0_c01431{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01431{-webkit-text-stroke:0px transparent;}
.sc0_c01431{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01431{word-spacing:0.000000px;}
.ws1_c01431{word-spacing:5.486141px;}
.ws0_c01431{word-spacing:9.801120px;}
.fc0_c01431{color:transparent;}
.fsb_c01431{font-size:25.920000px;}
.fs9_c01431{font-size:37.440000px;}
.fsa_c01431{font-size:43.200000px;}
.fsd_c01431{font-size:48.960000px;}
.fs8_c01431{font-size:51.840000px;}
.fs3_c01431{font-size:54.720000px;}
.fs1_c01431{font-size:57.600000px;}
.fs4_c01431{font-size:60.480000px;}
.fs6_c01431{font-size:63.360000px;}
.fsc_c01431{font-size:66.240000px;}
.fs7_c01431{font-size:69.120000px;}
.fs0_c01431{font-size:72.000000px;}
.fs5_c01431{font-size:74.880000px;}
.fs2_c01431{font-size:77.760000px;}
.fse_c01431{font-size:80.640000px;}
.y0_c01431{bottom:0.000000px;}
.y57_c01431{bottom:74.160000px;}
.y56_c01431{bottom:76.320000px;}
.y55_c01431{bottom:77.040000px;}
.y58_c01431{bottom:79.200000px;}
.y6e_c01431{bottom:79.920000px;}
.y70_c01431{bottom:82.080000px;}
.y6f_c01431{bottom:82.800000px;}
.y53_c01431{bottom:119.520000px;}
.y52_c01431{bottom:120.960000px;}
.y54_c01431{bottom:121.680000px;}
.y6b_c01431{bottom:123.120000px;}
.y6d_c01431{bottom:125.280000px;}
.y6c_c01431{bottom:126.720000px;}
.y4f_c01431{bottom:163.440000px;}
.y50_c01431{bottom:164.160000px;}
.y51_c01431{bottom:166.320000px;}
.y4d_c01431{bottom:195.120000px;}
.y4b_c01431{bottom:195.840000px;}
.y4a_c01431{bottom:196.560000px;}
.y4c_c01431{bottom:198.000000px;}
.y4e_c01431{bottom:200.160000px;}
.y6a_c01431{bottom:201.600000px;}
.y49_c01431{bottom:237.600000px;}
.y48_c01431{bottom:239.760000px;}
.y69_c01431{bottom:241.920000px;}
.y47_c01431{bottom:280.800000px;}
.y46_c01431{bottom:283.680000px;}
.y67_c01431{bottom:285.120000px;}
.y66_c01431{bottom:285.840000px;}
.y68_c01431{bottom:287.280000px;}
.y45_c01431{bottom:324.720000px;}
.y44_c01431{bottom:327.600000px;}
.y64_c01431{bottom:328.320000px;}
.y65_c01431{bottom:329.040000px;}
.y42_c01431{bottom:367.920000px;}
.y43_c01431{bottom:368.640000px;}
.y41_c01431{bottom:369.360000px;}
.y61_c01431{bottom:370.080000px;}
.y62_c01431{bottom:370.800000px;}
.y60_c01431{bottom:372.240000px;}
.y63_c01431{bottom:375.120000px;}
.y40_c01431{bottom:411.120000px;}
.y3f_c01431{bottom:414.720000px;}
.y5e_c01431{bottom:416.880000px;}
.y5f_c01431{bottom:417.600000px;}
.y3e_c01431{bottom:455.040000px;}
.y3d_c01431{bottom:457.200000px;}
.y5c_c01431{bottom:457.920000px;}
.y5d_c01431{bottom:459.360000px;}
.y5b_c01431{bottom:460.080000px;}
.y3b_c01431{bottom:498.240000px;}
.y3c_c01431{bottom:498.960000px;}
.y3a_c01431{bottom:500.400000px;}
.y5a_c01431{bottom:501.840000px;}
.y39_c01431{bottom:542.160000px;}
.y37_c01431{bottom:544.320000px;}
.y38_c01431{bottom:545.040000px;}
.y34_c01431{bottom:586.080000px;}
.y36_c01431{bottom:586.800000px;}
.y59_c01431{bottom:587.520000px;}
.y33_c01431{bottom:588.240000px;}
.y35_c01431{bottom:588.960000px;}
.y2e_c01431{bottom:628.560000px;}
.y30_c01431{bottom:629.280000px;}
.y2f_c01431{bottom:630.000000px;}
.y32_c01431{bottom:630.720000px;}
.y2d_c01431{bottom:631.440000px;}
.y31_c01431{bottom:632.880000px;}
.y28_c01431{bottom:671.760000px;}
.y2c_c01431{bottom:672.480000px;}
.y2b_c01431{bottom:673.200000px;}
.y27_c01431{bottom:673.920000px;}
.y2a_c01431{bottom:675.360000px;}
.y29_c01431{bottom:676.080000px;}
.y23_c01431{bottom:714.960000px;}
.y26_c01431{bottom:715.680000px;}
.y21_c01431{bottom:717.120000px;}
.y22_c01431{bottom:717.840000px;}
.y25_c01431{bottom:718.560000px;}
.y24_c01431{bottom:719.280000px;}
.y1f_c01431{bottom:756.720000px;}
.y1d_c01431{bottom:758.880000px;}
.y1c_c01431{bottom:760.320000px;}
.y1e_c01431{bottom:761.040000px;}
.y20_c01431{bottom:761.760000px;}
.y1b_c01431{bottom:800.640000px;}
.y19_c01431{bottom:801.360000px;}
.y1a_c01431{bottom:802.080000px;}
.y17_c01431{bottom:803.520000px;}
.y18_c01431{bottom:804.240000px;}
.y16_c01431{bottom:845.280000px;}
.y14_c01431{bottom:846.000000px;}
.y13_c01431{bottom:846.720000px;}
.y15_c01431{bottom:848.160000px;}
.y11_c01431{bottom:887.760000px;}
.y12_c01431{bottom:888.480000px;}
.y10_c01431{bottom:889.920000px;}
.ye_c01431{bottom:930.960000px;}
.yf_c01431{bottom:931.680000px;}
.yd_c01431{bottom:933.120000px;}
.ya_c01431{bottom:974.160000px;}
.y9_c01431{bottom:975.600000px;}
.yb_c01431{bottom:976.320000px;}
.yc_c01431{bottom:977.040000px;}
.y8_c01431{bottom:1016.640000px;}
.y3_c01431{bottom:1017.360000px;}
.y7_c01431{bottom:1018.080000px;}
.y4_c01431{bottom:1018.800000px;}
.y5_c01431{bottom:1019.520000px;}
.y6_c01431{bottom:1020.240000px;}
.y2_c01431{bottom:1020.960000px;}
.y1_c01431{bottom:1074.960000px;}
.hd_c01431{height:23.325469px;}
.hb_c01431{height:33.692344px;}
.hc_c01431{height:38.875781px;}
.h10_c01431{height:44.059219px;}
.hf_c01431{height:46.650937px;}
.h5_c01431{height:49.242656px;}
.h3_c01431{height:51.834375px;}
.h6_c01431{height:54.426094px;}
.ha_c01431{height:55.576406px;}
.h8_c01431{height:57.017812px;}
.he_c01431{height:59.609531px;}
.h9_c01431{height:62.201250px;}
.h2_c01431{height:64.792969px;}
.h7_c01431{height:67.384687px;}
.h4_c01431{height:69.976406px;}
.h11_c01431{height:72.568125px;}
.h1_c01431{height:1151.250000px;}
.h0_c01431{height:1151.280000px;}
.w1_c01431{width:771.750000px;}
.w0_c01431{width:771.840000px;}
.x0_c01431{left:0.000000px;}
.x2_c01431{left:49.680000px;}
.x25_c01431{left:51.120000px;}
.x12_c01431{left:82.080000px;}
.x3_c01431{left:113.040000px;}
.x26_c01431{left:114.480000px;}
.xe_c01431{left:190.080000px;}
.x10_c01431{left:198.720000px;}
.x18_c01431{left:200.880000px;}
.x28_c01431{left:211.680000px;}
.x24_c01431{left:233.280000px;}
.x17_c01431{left:244.080000px;}
.x4_c01431{left:254.880000px;}
.x29_c01431{left:266.400000px;}
.x13_c01431{left:287.280000px;}
.x22_c01431{left:295.920000px;}
.x19_c01431{left:297.360000px;}
.x14_c01431{left:298.800000px;}
.x5_c01431{left:308.880000px;}
.x1f_c01431{left:329.760000px;}
.x15_c01431{left:341.280000px;}
.x23_c01431{left:383.040000px;}
.x6_c01431{left:393.120000px;}
.x1a_c01431{left:403.920000px;}
.x7_c01431{left:438.480000px;}
.x1b_c01431{left:447.840000px;}
.x8_c01431{left:491.760000px;}
.x1c_c01431{left:501.120000px;}
.x27_c01431{left:534.240000px;}
.x20_c01431{left:576.720000px;}
.x21_c01431{left:597.600000px;}
.x16_c01431{left:599.040000px;}
.x9_c01431{left:600.480000px;}
.x11_c01431{left:630.720000px;}
.xb_c01431{left:632.160000px;}
.x1_c01431{left:660.240000px;}
.x1d_c01431{left:663.120000px;}
.xc_c01431{left:664.560000px;}
.x1e_c01431{left:696.240000px;}
.x2c_c01431{left:704.160000px;}
.x2b_c01431{left:705.600000px;}
.xf_c01431{left:707.040000px;}
.xd_c01431{left:708.480000px;}
.x2a_c01431{left:726.480000px;}
.xa_c01431{left:728.640000px;}
@media print{
.v1_c01431{vertical-align:-12.800000pt;}
.v0_c01431{vertical-align:0.000000pt;}
.ls0_c01431{letter-spacing:0.000000pt;}
.ws2_c01431{word-spacing:0.000000pt;}
.ws1_c01431{word-spacing:4.876570pt;}
.ws0_c01431{word-spacing:8.712107pt;}
.fsb_c01431{font-size:23.040000pt;}
.fs9_c01431{font-size:33.280000pt;}
.fsa_c01431{font-size:38.400000pt;}
.fsd_c01431{font-size:43.520000pt;}
.fs8_c01431{font-size:46.080000pt;}
.fs3_c01431{font-size:48.640000pt;}
.fs1_c01431{font-size:51.200000pt;}
.fs4_c01431{font-size:53.760000pt;}
.fs6_c01431{font-size:56.320000pt;}
.fsc_c01431{font-size:58.880000pt;}
.fs7_c01431{font-size:61.440000pt;}
.fs0_c01431{font-size:64.000000pt;}
.fs5_c01431{font-size:66.560000pt;}
.fs2_c01431{font-size:69.120000pt;}
.fse_c01431{font-size:71.680000pt;}
.y0_c01431{bottom:0.000000pt;}
.y57_c01431{bottom:65.920000pt;}
.y56_c01431{bottom:67.840000pt;}
.y55_c01431{bottom:68.480000pt;}
.y58_c01431{bottom:70.400000pt;}
.y6e_c01431{bottom:71.040000pt;}
.y70_c01431{bottom:72.960000pt;}
.y6f_c01431{bottom:73.600000pt;}
.y53_c01431{bottom:106.240000pt;}
.y52_c01431{bottom:107.520000pt;}
.y54_c01431{bottom:108.160000pt;}
.y6b_c01431{bottom:109.440000pt;}
.y6d_c01431{bottom:111.360000pt;}
.y6c_c01431{bottom:112.640000pt;}
.y4f_c01431{bottom:145.280000pt;}
.y50_c01431{bottom:145.920000pt;}
.y51_c01431{bottom:147.840000pt;}
.y4d_c01431{bottom:173.440000pt;}
.y4b_c01431{bottom:174.080000pt;}
.y4a_c01431{bottom:174.720000pt;}
.y4c_c01431{bottom:176.000000pt;}
.y4e_c01431{bottom:177.920000pt;}
.y6a_c01431{bottom:179.200000pt;}
.y49_c01431{bottom:211.200000pt;}
.y48_c01431{bottom:213.120000pt;}
.y69_c01431{bottom:215.040000pt;}
.y47_c01431{bottom:249.600000pt;}
.y46_c01431{bottom:252.160000pt;}
.y67_c01431{bottom:253.440000pt;}
.y66_c01431{bottom:254.080000pt;}
.y68_c01431{bottom:255.360000pt;}
.y45_c01431{bottom:288.640000pt;}
.y44_c01431{bottom:291.200000pt;}
.y64_c01431{bottom:291.840000pt;}
.y65_c01431{bottom:292.480000pt;}
.y42_c01431{bottom:327.040000pt;}
.y43_c01431{bottom:327.680000pt;}
.y41_c01431{bottom:328.320000pt;}
.y61_c01431{bottom:328.960000pt;}
.y62_c01431{bottom:329.600000pt;}
.y60_c01431{bottom:330.880000pt;}
.y63_c01431{bottom:333.440000pt;}
.y40_c01431{bottom:365.440000pt;}
.y3f_c01431{bottom:368.640000pt;}
.y5e_c01431{bottom:370.560000pt;}
.y5f_c01431{bottom:371.200000pt;}
.y3e_c01431{bottom:404.480000pt;}
.y3d_c01431{bottom:406.400000pt;}
.y5c_c01431{bottom:407.040000pt;}
.y5d_c01431{bottom:408.320000pt;}
.y5b_c01431{bottom:408.960000pt;}
.y3b_c01431{bottom:442.880000pt;}
.y3c_c01431{bottom:443.520000pt;}
.y3a_c01431{bottom:444.800000pt;}
.y5a_c01431{bottom:446.080000pt;}
.y39_c01431{bottom:481.920000pt;}
.y37_c01431{bottom:483.840000pt;}
.y38_c01431{bottom:484.480000pt;}
.y34_c01431{bottom:520.960000pt;}
.y36_c01431{bottom:521.600000pt;}
.y59_c01431{bottom:522.240000pt;}
.y33_c01431{bottom:522.880000pt;}
.y35_c01431{bottom:523.520000pt;}
.y2e_c01431{bottom:558.720000pt;}
.y30_c01431{bottom:559.360000pt;}
.y2f_c01431{bottom:560.000000pt;}
.y32_c01431{bottom:560.640000pt;}
.y2d_c01431{bottom:561.280000pt;}
.y31_c01431{bottom:562.560000pt;}
.y28_c01431{bottom:597.120000pt;}
.y2c_c01431{bottom:597.760000pt;}
.y2b_c01431{bottom:598.400000pt;}
.y27_c01431{bottom:599.040000pt;}
.y2a_c01431{bottom:600.320000pt;}
.y29_c01431{bottom:600.960000pt;}
.y23_c01431{bottom:635.520000pt;}
.y26_c01431{bottom:636.160000pt;}
.y21_c01431{bottom:637.440000pt;}
.y22_c01431{bottom:638.080000pt;}
.y25_c01431{bottom:638.720000pt;}
.y24_c01431{bottom:639.360000pt;}
.y1f_c01431{bottom:672.640000pt;}
.y1d_c01431{bottom:674.560000pt;}
.y1c_c01431{bottom:675.840000pt;}
.y1e_c01431{bottom:676.480000pt;}
.y20_c01431{bottom:677.120000pt;}
.y1b_c01431{bottom:711.680000pt;}
.y19_c01431{bottom:712.320000pt;}
.y1a_c01431{bottom:712.960000pt;}
.y17_c01431{bottom:714.240000pt;}
.y18_c01431{bottom:714.880000pt;}
.y16_c01431{bottom:751.360000pt;}
.y14_c01431{bottom:752.000000pt;}
.y13_c01431{bottom:752.640000pt;}
.y15_c01431{bottom:753.920000pt;}
.y11_c01431{bottom:789.120000pt;}
.y12_c01431{bottom:789.760000pt;}
.y10_c01431{bottom:791.040000pt;}
.ye_c01431{bottom:827.520000pt;}
.yf_c01431{bottom:828.160000pt;}
.yd_c01431{bottom:829.440000pt;}
.ya_c01431{bottom:865.920000pt;}
.y9_c01431{bottom:867.200000pt;}
.yb_c01431{bottom:867.840000pt;}
.yc_c01431{bottom:868.480000pt;}
.y8_c01431{bottom:903.680000pt;}
.y3_c01431{bottom:904.320000pt;}
.y7_c01431{bottom:904.960000pt;}
.y4_c01431{bottom:905.600000pt;}
.y5_c01431{bottom:906.240000pt;}
.y6_c01431{bottom:906.880000pt;}
.y2_c01431{bottom:907.520000pt;}
.y1_c01431{bottom:955.520000pt;}
.hd_c01431{height:20.733750pt;}
.hb_c01431{height:29.948750pt;}
.hc_c01431{height:34.556250pt;}
.h10_c01431{height:39.163750pt;}
.hf_c01431{height:41.467500pt;}
.h5_c01431{height:43.771250pt;}
.h3_c01431{height:46.075000pt;}
.h6_c01431{height:48.378750pt;}
.ha_c01431{height:49.401250pt;}
.h8_c01431{height:50.682500pt;}
.he_c01431{height:52.986250pt;}
.h9_c01431{height:55.290000pt;}
.h2_c01431{height:57.593750pt;}
.h7_c01431{height:59.897500pt;}
.h4_c01431{height:62.201250pt;}
.h11_c01431{height:64.505000pt;}
.h1_c01431{height:1023.333333pt;}
.h0_c01431{height:1023.360000pt;}
.w1_c01431{width:686.000000pt;}
.w0_c01431{width:686.080000pt;}
.x0_c01431{left:0.000000pt;}
.x2_c01431{left:44.160000pt;}
.x25_c01431{left:45.440000pt;}
.x12_c01431{left:72.960000pt;}
.x3_c01431{left:100.480000pt;}
.x26_c01431{left:101.760000pt;}
.xe_c01431{left:168.960000pt;}
.x10_c01431{left:176.640000pt;}
.x18_c01431{left:178.560000pt;}
.x28_c01431{left:188.160000pt;}
.x24_c01431{left:207.360000pt;}
.x17_c01431{left:216.960000pt;}
.x4_c01431{left:226.560000pt;}
.x29_c01431{left:236.800000pt;}
.x13_c01431{left:255.360000pt;}
.x22_c01431{left:263.040000pt;}
.x19_c01431{left:264.320000pt;}
.x14_c01431{left:265.600000pt;}
.x5_c01431{left:274.560000pt;}
.x1f_c01431{left:293.120000pt;}
.x15_c01431{left:303.360000pt;}
.x23_c01431{left:340.480000pt;}
.x6_c01431{left:349.440000pt;}
.x1a_c01431{left:359.040000pt;}
.x7_c01431{left:389.760000pt;}
.x1b_c01431{left:398.080000pt;}
.x8_c01431{left:437.120000pt;}
.x1c_c01431{left:445.440000pt;}
.x27_c01431{left:474.880000pt;}
.x20_c01431{left:512.640000pt;}
.x21_c01431{left:531.200000pt;}
.x16_c01431{left:532.480000pt;}
.x9_c01431{left:533.760000pt;}
.x11_c01431{left:560.640000pt;}
.xb_c01431{left:561.920000pt;}
.x1_c01431{left:586.880000pt;}
.x1d_c01431{left:589.440000pt;}
.xc_c01431{left:590.720000pt;}
.x1e_c01431{left:618.880000pt;}
.x2c_c01431{left:625.920000pt;}
.x2b_c01431{left:627.200000pt;}
.xf_c01431{left:628.480000pt;}
.xd_c01431{left:629.760000pt;}
.x2a_c01431{left:645.760000pt;}
.xa_c01431{left:647.680000pt;}
}





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

.ir_c01432:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01432{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01432;src:url('chunks/assets/font_f99c465feb9662758c9945e7.woff2')format("woff");}.ff1_c01432{font-family:ff1_c01432;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m41_c01432{transform:matrix(0.223425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223425,0.000000,0.000000,0.250000,0,0);}
.m28_c01432{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m3e_c01432{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);}
.m31_c01432{transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);}
.m46_c01432{transform:matrix(0.243825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243825,0.000000,0.000000,0.250000,0,0);}
.m34_c01432{transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);}
.m8_c01432{transform:matrix(0.244725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244725,0.000000,0.000000,0.250000,0,0);}
.m47_c01432{transform:matrix(0.247100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247100,0.000000,0.000000,0.250000,0,0);}
.m2d_c01432{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_c01432{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m18_c01432{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.ma_c01432{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);}
.m2a_c01432{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m10_c01432{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);}
.m3d_c01432{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);}
.m2f_c01432{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_c01432{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_c01432{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01432{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01432{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);}
.m27_c01432{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m25_c01432{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m5_c01432{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01432{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m14_c01432{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m2_c01432{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m17_c01432{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m37_c01432{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3_c01432{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01432{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m12_c01432{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m7_c01432{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m36_c01432{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.me_c01432{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);}
.m45_c01432{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01432{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01432{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m44_c01432{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01432{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);}
.m0_c01432{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m22_c01432{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m43_c01432{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);}
.m3c_c01432{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);}
.m30_c01432{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m13_c01432{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m9_c01432{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);}
.m40_c01432{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);}
.m21_c01432{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01432{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);}
.m20_c01432{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);}
.m39_c01432{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.md_c01432{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);}
.m29_c01432{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m1_c01432{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);}
.m38_c01432{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m48_c01432{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m33_c01432{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01432{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m23_c01432{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m4a_c01432{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m19_c01432{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);}
.m32_c01432{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m4_c01432{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01432{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);}
.m1b_c01432{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01432{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.mf_c01432{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);}
.m49_c01432{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m35_c01432{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);}
.m16_c01432{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m6_c01432{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m42_c01432{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.m15_c01432{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m11_c01432{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);}
.m24_c01432{transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);}
.v1_c01432{vertical-align:-2.880000px;}
.v0_c01432{vertical-align:0.000000px;}
.ls1_c01432{letter-spacing:0.000000px;}
.ls0_c01432{letter-spacing:94.995120px;}
.sc__c01432{text-shadow:none;}
.sc0_c01432{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01432{-webkit-text-stroke:0px transparent;}
.sc0_c01432{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01432{word-spacing:-0.280560px;}
.ws2_c01432{word-spacing:0.000000px;}
.ws0_c01432{word-spacing:11.648750px;}
.fc0_c01432{color:transparent;}
.fs8_c01432{font-size:31.680000px;}
.fs4_c01432{font-size:34.560000px;}
.fsf_c01432{font-size:37.440000px;}
.fsa_c01432{font-size:40.320000px;}
.fs9_c01432{font-size:43.200000px;}
.fse_c01432{font-size:48.960000px;}
.fs7_c01432{font-size:51.840000px;}
.fsb_c01432{font-size:54.720000px;}
.fs1_c01432{font-size:57.600000px;}
.fs2_c01432{font-size:60.480000px;}
.fs3_c01432{font-size:63.360000px;}
.fs5_c01432{font-size:66.240000px;}
.fs6_c01432{font-size:69.120000px;}
.fs0_c01432{font-size:72.000000px;}
.fsc_c01432{font-size:74.880000px;}
.fsd_c01432{font-size:77.760000px;}
.fs10_c01432{font-size:80.640000px;}
.y0_c01432{bottom:0.000000px;}
.y50_c01432{bottom:69.840000px;}
.y51_c01432{bottom:70.560000px;}
.y68_c01432{bottom:108.000000px;}
.y66_c01432{bottom:109.440000px;}
.y67_c01432{bottom:110.880000px;}
.y4c_c01432{bottom:112.320000px;}
.y4d_c01432{bottom:113.760000px;}
.y4e_c01432{bottom:114.480000px;}
.y4f_c01432{bottom:115.200000px;}
.y65_c01432{bottom:150.480000px;}
.y64_c01432{bottom:154.080000px;}
.y49_c01432{bottom:156.960000px;}
.y4a_c01432{bottom:157.680000px;}
.y4b_c01432{bottom:158.400000px;}
.y61_c01432{bottom:193.680000px;}
.y62_c01432{bottom:196.560000px;}
.y60_c01432{bottom:197.280000px;}
.y47_c01432{bottom:199.440000px;}
.y63_c01432{bottom:200.160000px;}
.y48_c01432{bottom:201.600000px;}
.y5f_c01432{bottom:236.880000px;}
.y5e_c01432{bottom:239.760000px;}
.y44_c01432{bottom:242.640000px;}
.y46_c01432{bottom:245.520000px;}
.y45_c01432{bottom:246.240000px;}
.y5d_c01432{bottom:281.520000px;}
.y5c_c01432{bottom:282.240000px;}
.y5b_c01432{bottom:283.680000px;}
.y42_c01432{bottom:285.120000px;}
.y43_c01432{bottom:286.560000px;}
.y5a_c01432{bottom:324.000000px;}
.y59_c01432{bottom:326.880000px;}
.y3f_c01432{bottom:329.040000px;}
.y40_c01432{bottom:329.760000px;}
.y41_c01432{bottom:331.920000px;}
.y58_c01432{bottom:367.920000px;}
.y56_c01432{bottom:370.080000px;}
.y57_c01432{bottom:370.800000px;}
.y3d_c01432{bottom:371.520000px;}
.y3e_c01432{bottom:372.240000px;}
.y55_c01432{bottom:410.400000px;}
.y54_c01432{bottom:414.000000px;}
.y3c_c01432{bottom:414.720000px;}
.y53_c01432{bottom:454.320000px;}
.y52_c01432{bottom:455.760000px;}
.y39_c01432{bottom:457.200000px;}
.y3b_c01432{bottom:457.920000px;}
.y3a_c01432{bottom:458.640000px;}
.y36_c01432{bottom:551.520000px;}
.y35_c01432{bottom:552.960000px;}
.y38_c01432{bottom:553.680000px;}
.y2a_c01432{bottom:554.400000px;}
.y37_c01432{bottom:555.120000px;}
.y2b_c01432{bottom:556.560000px;}
.y32_c01432{bottom:595.440000px;}
.y33_c01432{bottom:596.160000px;}
.y31_c01432{bottom:596.880000px;}
.y29_c01432{bottom:597.600000px;}
.y34_c01432{bottom:599.040000px;}
.y28_c01432{bottom:599.760000px;}
.y2e_c01432{bottom:638.640000px;}
.y26_c01432{bottom:640.080000px;}
.y27_c01432{bottom:640.800000px;}
.y30_c01432{bottom:642.240000px;}
.y2f_c01432{bottom:642.960000px;}
.y2c_c01432{bottom:682.560000px;}
.y23_c01432{bottom:683.280000px;}
.y25_c01432{bottom:684.000000px;}
.y2d_c01432{bottom:686.160000px;}
.y24_c01432{bottom:686.880000px;}
.y1b_c01432{bottom:725.760000px;}
.y1a_c01432{bottom:727.200000px;}
.y22_c01432{bottom:727.920000px;}
.y1c_c01432{bottom:728.640000px;}
.y1d_c01432{bottom:730.080000px;}
.y21_c01432{bottom:769.680000px;}
.y1f_c01432{bottom:770.400000px;}
.y20_c01432{bottom:771.840000px;}
.y18_c01432{bottom:812.880000px;}
.y17_c01432{bottom:814.320000px;}
.y1e_c01432{bottom:815.040000px;}
.y19_c01432{bottom:815.760000px;}
.y13_c01432{bottom:856.800000px;}
.y15_c01432{bottom:858.960000px;}
.y14_c01432{bottom:859.680000px;}
.y16_c01432{bottom:887.760000px;}
.y11_c01432{bottom:888.480000px;}
.y10_c01432{bottom:889.200000px;}
.ye_c01432{bottom:889.920000px;}
.y12_c01432{bottom:890.640000px;}
.yf_c01432{bottom:891.360000px;}
.yc_c01432{bottom:930.240000px;}
.ya_c01432{bottom:932.400000px;}
.yd_c01432{bottom:933.840000px;}
.yb_c01432{bottom:935.280000px;}
.y9_c01432{bottom:974.160000px;}
.y7_c01432{bottom:974.880000px;}
.y6_c01432{bottom:975.600000px;}
.y5_c01432{bottom:976.320000px;}
.y8_c01432{bottom:1017.360000px;}
.y2_c01432{bottom:1018.800000px;}
.y3_c01432{bottom:1019.520000px;}
.y4_c01432{bottom:1020.240000px;}
.y1_c01432{bottom:1071.360000px;}
.ha_c01432{height:28.508906px;}
.h6_c01432{height:31.100625px;}
.h11_c01432{height:33.692344px;}
.hc_c01432{height:36.284062px;}
.hb_c01432{height:38.875781px;}
.h10_c01432{height:44.059219px;}
.h9_c01432{height:46.650937px;}
.hd_c01432{height:49.242656px;}
.h3_c01432{height:51.834375px;}
.h4_c01432{height:54.426094px;}
.h5_c01432{height:57.017812px;}
.h7_c01432{height:59.609531px;}
.h8_c01432{height:62.201250px;}
.h2_c01432{height:64.792969px;}
.he_c01432{height:67.384687px;}
.hf_c01432{height:69.976406px;}
.h12_c01432{height:72.568125px;}
.h1_c01432{height:1151.250000px;}
.h0_c01432{height:1151.280000px;}
.w1_c01432{width:771.750000px;}
.w0_c01432{width:771.840000px;}
.x0_c01432{left:0.000000px;}
.x2_c01432{left:43.200000px;}
.xd_c01432{left:44.640000px;}
.x34_c01432{left:46.080000px;}
.x6_c01432{left:77.040000px;}
.x1f_c01432{left:107.280000px;}
.x3_c01432{left:108.720000px;}
.x12_c01432{left:172.800000px;}
.x2c_c01432{left:182.880000px;}
.x31_c01432{left:184.320000px;}
.xa_c01432{left:194.400000px;}
.x4_c01432{left:195.840000px;}
.x22_c01432{left:205.920000px;}
.x20_c01432{left:238.320000px;}
.x35_c01432{left:239.760000px;}
.x5_c01432{left:248.400000px;}
.xe_c01432{left:259.200000px;}
.x27_c01432{left:260.640000px;}
.x13_c01432{left:280.080000px;}
.x36_c01432{left:281.520000px;}
.x21_c01432{left:291.600000px;}
.x28_c01432{left:303.120000px;}
.x17_c01432{left:314.640000px;}
.x23_c01432{left:323.280000px;}
.x14_c01432{left:334.800000px;}
.x32_c01432{left:345.600000px;}
.x18_c01432{left:357.120000px;}
.xf_c01432{left:367.200000px;}
.x10_c01432{left:378.000000px;}
.x15_c01432{left:388.080000px;}
.x33_c01432{left:389.520000px;}
.x11_c01432{left:421.200000px;}
.x29_c01432{left:432.000000px;}
.x24_c01432{left:462.960000px;}
.x2a_c01432{left:486.000000px;}
.x25_c01432{left:517.680000px;}
.x2b_c01432{left:527.760000px;}
.x26_c01432{left:559.440000px;}
.x1b_c01432{left:591.840000px;}
.x30_c01432{left:593.280000px;}
.x2d_c01432{left:603.360000px;}
.xb_c01432{left:604.800000px;}
.x19_c01432{left:625.680000px;}
.x7_c01432{left:627.120000px;}
.x2f_c01432{left:648.000000px;}
.x1_c01432{left:654.480000px;}
.x1e_c01432{left:657.360000px;}
.x8_c01432{left:658.800000px;}
.x1c_c01432{left:668.160000px;}
.x16_c01432{left:691.200000px;}
.x9_c01432{left:692.640000px;}
.x1d_c01432{left:699.840000px;}
.xc_c01432{left:702.000000px;}
.x2e_c01432{left:720.000000px;}
.x1a_c01432{left:721.440000px;}
@media print{
.v1_c01432{vertical-align:-2.560000pt;}
.v0_c01432{vertical-align:0.000000pt;}
.ls1_c01432{letter-spacing:0.000000pt;}
.ls0_c01432{letter-spacing:84.440107pt;}
.ws1_c01432{word-spacing:-0.249387pt;}
.ws2_c01432{word-spacing:0.000000pt;}
.ws0_c01432{word-spacing:10.354445pt;}
.fs8_c01432{font-size:28.160000pt;}
.fs4_c01432{font-size:30.720000pt;}
.fsf_c01432{font-size:33.280000pt;}
.fsa_c01432{font-size:35.840000pt;}
.fs9_c01432{font-size:38.400000pt;}
.fse_c01432{font-size:43.520000pt;}
.fs7_c01432{font-size:46.080000pt;}
.fsb_c01432{font-size:48.640000pt;}
.fs1_c01432{font-size:51.200000pt;}
.fs2_c01432{font-size:53.760000pt;}
.fs3_c01432{font-size:56.320000pt;}
.fs5_c01432{font-size:58.880000pt;}
.fs6_c01432{font-size:61.440000pt;}
.fs0_c01432{font-size:64.000000pt;}
.fsc_c01432{font-size:66.560000pt;}
.fsd_c01432{font-size:69.120000pt;}
.fs10_c01432{font-size:71.680000pt;}
.y0_c01432{bottom:0.000000pt;}
.y50_c01432{bottom:62.080000pt;}
.y51_c01432{bottom:62.720000pt;}
.y68_c01432{bottom:96.000000pt;}
.y66_c01432{bottom:97.280000pt;}
.y67_c01432{bottom:98.560000pt;}
.y4c_c01432{bottom:99.840000pt;}
.y4d_c01432{bottom:101.120000pt;}
.y4e_c01432{bottom:101.760000pt;}
.y4f_c01432{bottom:102.400000pt;}
.y65_c01432{bottom:133.760000pt;}
.y64_c01432{bottom:136.960000pt;}
.y49_c01432{bottom:139.520000pt;}
.y4a_c01432{bottom:140.160000pt;}
.y4b_c01432{bottom:140.800000pt;}
.y61_c01432{bottom:172.160000pt;}
.y62_c01432{bottom:174.720000pt;}
.y60_c01432{bottom:175.360000pt;}
.y47_c01432{bottom:177.280000pt;}
.y63_c01432{bottom:177.920000pt;}
.y48_c01432{bottom:179.200000pt;}
.y5f_c01432{bottom:210.560000pt;}
.y5e_c01432{bottom:213.120000pt;}
.y44_c01432{bottom:215.680000pt;}
.y46_c01432{bottom:218.240000pt;}
.y45_c01432{bottom:218.880000pt;}
.y5d_c01432{bottom:250.240000pt;}
.y5c_c01432{bottom:250.880000pt;}
.y5b_c01432{bottom:252.160000pt;}
.y42_c01432{bottom:253.440000pt;}
.y43_c01432{bottom:254.720000pt;}
.y5a_c01432{bottom:288.000000pt;}
.y59_c01432{bottom:290.560000pt;}
.y3f_c01432{bottom:292.480000pt;}
.y40_c01432{bottom:293.120000pt;}
.y41_c01432{bottom:295.040000pt;}
.y58_c01432{bottom:327.040000pt;}
.y56_c01432{bottom:328.960000pt;}
.y57_c01432{bottom:329.600000pt;}
.y3d_c01432{bottom:330.240000pt;}
.y3e_c01432{bottom:330.880000pt;}
.y55_c01432{bottom:364.800000pt;}
.y54_c01432{bottom:368.000000pt;}
.y3c_c01432{bottom:368.640000pt;}
.y53_c01432{bottom:403.840000pt;}
.y52_c01432{bottom:405.120000pt;}
.y39_c01432{bottom:406.400000pt;}
.y3b_c01432{bottom:407.040000pt;}
.y3a_c01432{bottom:407.680000pt;}
.y36_c01432{bottom:490.240000pt;}
.y35_c01432{bottom:491.520000pt;}
.y38_c01432{bottom:492.160000pt;}
.y2a_c01432{bottom:492.800000pt;}
.y37_c01432{bottom:493.440000pt;}
.y2b_c01432{bottom:494.720000pt;}
.y32_c01432{bottom:529.280000pt;}
.y33_c01432{bottom:529.920000pt;}
.y31_c01432{bottom:530.560000pt;}
.y29_c01432{bottom:531.200000pt;}
.y34_c01432{bottom:532.480000pt;}
.y28_c01432{bottom:533.120000pt;}
.y2e_c01432{bottom:567.680000pt;}
.y26_c01432{bottom:568.960000pt;}
.y27_c01432{bottom:569.600000pt;}
.y30_c01432{bottom:570.880000pt;}
.y2f_c01432{bottom:571.520000pt;}
.y2c_c01432{bottom:606.720000pt;}
.y23_c01432{bottom:607.360000pt;}
.y25_c01432{bottom:608.000000pt;}
.y2d_c01432{bottom:609.920000pt;}
.y24_c01432{bottom:610.560000pt;}
.y1b_c01432{bottom:645.120000pt;}
.y1a_c01432{bottom:646.400000pt;}
.y22_c01432{bottom:647.040000pt;}
.y1c_c01432{bottom:647.680000pt;}
.y1d_c01432{bottom:648.960000pt;}
.y21_c01432{bottom:684.160000pt;}
.y1f_c01432{bottom:684.800000pt;}
.y20_c01432{bottom:686.080000pt;}
.y18_c01432{bottom:722.560000pt;}
.y17_c01432{bottom:723.840000pt;}
.y1e_c01432{bottom:724.480000pt;}
.y19_c01432{bottom:725.120000pt;}
.y13_c01432{bottom:761.600000pt;}
.y15_c01432{bottom:763.520000pt;}
.y14_c01432{bottom:764.160000pt;}
.y16_c01432{bottom:789.120000pt;}
.y11_c01432{bottom:789.760000pt;}
.y10_c01432{bottom:790.400000pt;}
.ye_c01432{bottom:791.040000pt;}
.y12_c01432{bottom:791.680000pt;}
.yf_c01432{bottom:792.320000pt;}
.yc_c01432{bottom:826.880000pt;}
.ya_c01432{bottom:828.800000pt;}
.yd_c01432{bottom:830.080000pt;}
.yb_c01432{bottom:831.360000pt;}
.y9_c01432{bottom:865.920000pt;}
.y7_c01432{bottom:866.560000pt;}
.y6_c01432{bottom:867.200000pt;}
.y5_c01432{bottom:867.840000pt;}
.y8_c01432{bottom:904.320000pt;}
.y2_c01432{bottom:905.600000pt;}
.y3_c01432{bottom:906.240000pt;}
.y4_c01432{bottom:906.880000pt;}
.y1_c01432{bottom:952.320000pt;}
.ha_c01432{height:25.341250pt;}
.h6_c01432{height:27.645000pt;}
.h11_c01432{height:29.948750pt;}
.hc_c01432{height:32.252500pt;}
.hb_c01432{height:34.556250pt;}
.h10_c01432{height:39.163750pt;}
.h9_c01432{height:41.467500pt;}
.hd_c01432{height:43.771250pt;}
.h3_c01432{height:46.075000pt;}
.h4_c01432{height:48.378750pt;}
.h5_c01432{height:50.682500pt;}
.h7_c01432{height:52.986250pt;}
.h8_c01432{height:55.290000pt;}
.h2_c01432{height:57.593750pt;}
.he_c01432{height:59.897500pt;}
.hf_c01432{height:62.201250pt;}
.h12_c01432{height:64.505000pt;}
.h1_c01432{height:1023.333333pt;}
.h0_c01432{height:1023.360000pt;}
.w1_c01432{width:686.000000pt;}
.w0_c01432{width:686.080000pt;}
.x0_c01432{left:0.000000pt;}
.x2_c01432{left:38.400000pt;}
.xd_c01432{left:39.680000pt;}
.x34_c01432{left:40.960000pt;}
.x6_c01432{left:68.480000pt;}
.x1f_c01432{left:95.360000pt;}
.x3_c01432{left:96.640000pt;}
.x12_c01432{left:153.600000pt;}
.x2c_c01432{left:162.560000pt;}
.x31_c01432{left:163.840000pt;}
.xa_c01432{left:172.800000pt;}
.x4_c01432{left:174.080000pt;}
.x22_c01432{left:183.040000pt;}
.x20_c01432{left:211.840000pt;}
.x35_c01432{left:213.120000pt;}
.x5_c01432{left:220.800000pt;}
.xe_c01432{left:230.400000pt;}
.x27_c01432{left:231.680000pt;}
.x13_c01432{left:248.960000pt;}
.x36_c01432{left:250.240000pt;}
.x21_c01432{left:259.200000pt;}
.x28_c01432{left:269.440000pt;}
.x17_c01432{left:279.680000pt;}
.x23_c01432{left:287.360000pt;}
.x14_c01432{left:297.600000pt;}
.x32_c01432{left:307.200000pt;}
.x18_c01432{left:317.440000pt;}
.xf_c01432{left:326.400000pt;}
.x10_c01432{left:336.000000pt;}
.x15_c01432{left:344.960000pt;}
.x33_c01432{left:346.240000pt;}
.x11_c01432{left:374.400000pt;}
.x29_c01432{left:384.000000pt;}
.x24_c01432{left:411.520000pt;}
.x2a_c01432{left:432.000000pt;}
.x25_c01432{left:460.160000pt;}
.x2b_c01432{left:469.120000pt;}
.x26_c01432{left:497.280000pt;}
.x1b_c01432{left:526.080000pt;}
.x30_c01432{left:527.360000pt;}
.x2d_c01432{left:536.320000pt;}
.xb_c01432{left:537.600000pt;}
.x19_c01432{left:556.160000pt;}
.x7_c01432{left:557.440000pt;}
.x2f_c01432{left:576.000000pt;}
.x1_c01432{left:581.760000pt;}
.x1e_c01432{left:584.320000pt;}
.x8_c01432{left:585.600000pt;}
.x1c_c01432{left:593.920000pt;}
.x16_c01432{left:614.400000pt;}
.x9_c01432{left:615.680000pt;}
.x1d_c01432{left:622.080000pt;}
.xc_c01432{left:624.000000pt;}
.x2e_c01432{left:640.000000pt;}
.x1a_c01432{left:641.280000pt;}
}





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

.ir_c01433:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01433{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01433;src:url('chunks/assets/font_93a157e94a350dc8497e16e3.woff2')format("woff");}.ff1_c01433{font-family:ff1_c01433;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m63_c01433{transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);}
.m60_c01433{transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);}
.m48_c01433{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01433{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m3b_c01433{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m54_c01433{transform:matrix(0.218650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218650,0.000000,0.000000,0.250000,0,0);}
.m6a_c01433{transform:matrix(0.220225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220225,0.000000,0.000000,0.250000,0,0);}
.m36_c01433{transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);}
.m4a_c01433{transform:matrix(0.223600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223600,0.000000,0.000000,0.250000,0,0);}
.ma_c01433{transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);}
.m42_c01433{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);}
.m1d_c01433{transform:matrix(0.229575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229575,0.000000,0.000000,0.250000,0,0);}
.m1e_c01433{transform:matrix(0.230375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230375,0.000000,0.000000,0.250000,0,0);}
.m6d_c01433{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m59_c01433{transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);}
.m21_c01433{transform:matrix(0.234075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234075,0.000000,0.000000,0.250000,0,0);}
.m24_c01433{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m2d_c01433{transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);}
.m1b_c01433{transform:matrix(0.238600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238600,0.000000,0.000000,0.250000,0,0);}
.m3c_c01433{transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);}
.m6c_c01433{transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);}
.m5b_c01433{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m33_c01433{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);}
.m4d_c01433{transform:matrix(0.246900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246900,0.000000,0.000000,0.250000,0,0);}
.m20_c01433{transform:matrix(0.247675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247675,0.000000,0.000000,0.250000,0,0);}
.m29_c01433{transform:matrix(0.248375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248375,0.000000,0.000000,0.250000,0,0);}
.m4_c01433{transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);}
.m55_c01433{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m31_c01433{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01433{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mb_c01433{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);}
.m32_c01433{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m19_c01433{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m22_c01433{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);}
.m2e_c01433{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);}
.m26_c01433{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);}
.m35_c01433{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);}
.m47_c01433{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);}
.m53_c01433{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m6_c01433{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.md_c01433{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m45_c01433{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m8_c01433{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m14_c01433{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m15_c01433{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01433{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01433{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m5d_c01433{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m17_c01433{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01433{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m58_c01433{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1_c01433{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m44_c01433{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m9_c01433{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m37_c01433{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mc_c01433{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m41_c01433{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m16_c01433{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m11_c01433{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m65_c01433{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m38_c01433{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m30_c01433{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m12_c01433{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);}
.m49_c01433{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m27_c01433{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01433{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);}
.m5e_c01433{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m7_c01433{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);}
.m66_c01433{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m10_c01433{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);}
.m4b_c01433{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m64_c01433{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);}
.m1a_c01433{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m40_c01433{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m0_c01433{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m6b_c01433{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);}
.m3f_c01433{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);}
.m61_c01433{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);}
.m5_c01433{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01433{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);}
.m5f_c01433{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m18_c01433{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);}
.m34_c01433{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);}
.m68_c01433{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);}
.m23_c01433{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m51_c01433{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);}
.m52_c01433{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m2_c01433{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m67_c01433{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m5c_c01433{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m25_c01433{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m5a_c01433{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);}
.m69_c01433{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);}
.m46_c01433{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01433{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);}
.m43_c01433{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);}
.me_c01433{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m28_c01433{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m50_c01433{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01433{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m13_c01433{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);}
.m1f_c01433{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01433{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01433{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m39_c01433{transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);}
.m56_c01433{transform:matrix(0.712500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.712500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.712500,0.000000,0.000000,0.250000,0,0);}
.m62_c01433{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m57_c01433{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.m3_c01433{transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);}
.mf_c01433{transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);}
.v0_c01433{vertical-align:0.000000px;}
.v1_c01433{vertical-align:8.640000px;}
.ls0_c01433{letter-spacing:0.000000px;}
.sc__c01433{text-shadow:none;}
.sc0_c01433{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01433{-webkit-text-stroke:0px transparent;}
.sc0_c01433{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01433{word-spacing:0.000000px;}
.ws0_c01433{word-spacing:85.697280px;}
.fc0_c01433{color:transparent;}
.fs3_c01433{font-size:17.280000px;}
.fs13_c01433{font-size:20.160000px;}
.fsf_c01433{font-size:23.040000px;}
.fs2_c01433{font-size:25.920000px;}
.fsd_c01433{font-size:34.560000px;}
.fs16_c01433{font-size:37.440000px;}
.fs14_c01433{font-size:40.320000px;}
.fs5_c01433{font-size:43.200000px;}
.fs10_c01433{font-size:46.080000px;}
.fs9_c01433{font-size:48.960000px;}
.fse_c01433{font-size:51.840000px;}
.fs7_c01433{font-size:54.720000px;}
.fs6_c01433{font-size:57.600000px;}
.fs1_c01433{font-size:60.480000px;}
.fsa_c01433{font-size:63.360000px;}
.fs11_c01433{font-size:66.240000px;}
.fs8_c01433{font-size:69.120000px;}
.fs0_c01433{font-size:72.000000px;}
.fs4_c01433{font-size:74.880000px;}
.fsb_c01433{font-size:77.760000px;}
.fs15_c01433{font-size:80.640000px;}
.fs12_c01433{font-size:83.520000px;}
.fsc_c01433{font-size:112.320000px;}
.y0_c01433{bottom:0.000000px;}
.y5e_c01433{bottom:33.840000px;}
.y61_c01433{bottom:34.560000px;}
.y5c_c01433{bottom:36.000000px;}
.y60_c01433{bottom:36.720000px;}
.y5f_c01433{bottom:37.440000px;}
.y5d_c01433{bottom:38.160000px;}
.y63_c01433{bottom:42.480000px;}
.y62_c01433{bottom:43.200000px;}
.y59_c01433{bottom:76.320000px;}
.y56_c01433{bottom:77.040000px;}
.y57_c01433{bottom:79.200000px;}
.y5a_c01433{bottom:82.800000px;}
.y58_c01433{bottom:83.520000px;}
.y5b_c01433{bottom:85.680000px;}
.y50_c01433{bottom:119.520000px;}
.y4d_c01433{bottom:120.960000px;}
.y51_c01433{bottom:121.680000px;}
.y52_c01433{bottom:122.400000px;}
.y54_c01433{bottom:123.120000px;}
.y4e_c01433{bottom:123.840000px;}
.y55_c01433{bottom:125.280000px;}
.y53_c01433{bottom:126.000000px;}
.y4f_c01433{bottom:126.720000px;}
.y4a_c01433{bottom:162.000000px;}
.y49_c01433{bottom:164.160000px;}
.y4c_c01433{bottom:164.880000px;}
.y4b_c01433{bottom:165.600000px;}
.y7a_c01433{bottom:168.480000px;}
.y7c_c01433{bottom:169.920000px;}
.y7b_c01433{bottom:171.360000px;}
.y8d_c01433{bottom:206.640000px;}
.y8b_c01433{bottom:208.080000px;}
.y8e_c01433{bottom:208.800000px;}
.y8c_c01433{bottom:209.520000px;}
.y79_c01433{bottom:210.960000px;}
.y77_c01433{bottom:212.400000px;}
.y78_c01433{bottom:214.560000px;}
.y8a_c01433{bottom:249.840000px;}
.y89_c01433{bottom:250.560000px;}
.y75_c01433{bottom:253.440000px;}
.y76_c01433{bottom:254.880000px;}
.y73_c01433{bottom:255.600000px;}
.y74_c01433{bottom:258.480000px;}
.y88_c01433{bottom:293.040000px;}
.y87_c01433{bottom:295.920000px;}
.y71_c01433{bottom:297.360000px;}
.y72_c01433{bottom:298.800000px;}
.y85_c01433{bottom:336.960000px;}
.y86_c01433{bottom:337.680000px;}
.y84_c01433{bottom:338.400000px;}
.y6f_c01433{bottom:340.560000px;}
.y70_c01433{bottom:341.280000px;}
.y6e_c01433{bottom:383.760000px;}
.y6d_c01433{bottom:385.200000px;}
.y83_c01433{bottom:425.520000px;}
.y82_c01433{bottom:426.240000px;}
.y6c_c01433{bottom:426.960000px;}
.y6b_c01433{bottom:427.680000px;}
.y6a_c01433{bottom:428.400000px;}
.y80_c01433{bottom:468.720000px;}
.y7f_c01433{bottom:469.440000px;}
.y69_c01433{bottom:470.160000px;}
.y81_c01433{bottom:470.880000px;}
.y67_c01433{bottom:471.600000px;}
.y68_c01433{bottom:473.760000px;}
.y7d_c01433{bottom:512.640000px;}
.y65_c01433{bottom:513.360000px;}
.y7e_c01433{bottom:514.800000px;}
.y66_c01433{bottom:515.520000px;}
.y64_c01433{bottom:516.960000px;}
.y44_c01433{bottom:555.120000px;}
.y46_c01433{bottom:555.840000px;}
.y47_c01433{bottom:556.560000px;}
.y43_c01433{bottom:557.280000px;}
.y45_c01433{bottom:558.720000px;}
.y48_c01433{bottom:559.440000px;}
.y3e_c01433{bottom:598.320000px;}
.y3d_c01433{bottom:599.040000px;}
.y3c_c01433{bottom:599.760000px;}
.y42_c01433{bottom:600.480000px;}
.y2a_c01433{bottom:640.800000px;}
.y40_c01433{bottom:642.240000px;}
.y29_c01433{bottom:642.960000px;}
.y41_c01433{bottom:643.680000px;}
.y3f_c01433{bottom:645.120000px;}
.y27_c01433{bottom:684.000000px;}
.y28_c01433{bottom:684.720000px;}
.y39_c01433{bottom:685.440000px;}
.y25_c01433{bottom:686.160000px;}
.y3b_c01433{bottom:686.880000px;}
.y3a_c01433{bottom:687.600000px;}
.y26_c01433{bottom:690.480000px;}
.y22_c01433{bottom:727.200000px;}
.y38_c01433{bottom:728.640000px;}
.y37_c01433{bottom:729.360000px;}
.y21_c01433{bottom:730.080000px;}
.y24_c01433{bottom:730.800000px;}
.y23_c01433{bottom:731.520000px;}
.y1f_c01433{bottom:770.400000px;}
.y35_c01433{bottom:771.120000px;}
.y20_c01433{bottom:771.840000px;}
.y34_c01433{bottom:773.280000px;}
.y1e_c01433{bottom:774.000000px;}
.y36_c01433{bottom:774.720000px;}
.y1d_c01433{bottom:813.600000px;}
.y32_c01433{bottom:815.040000px;}
.y33_c01433{bottom:815.760000px;}
.y1c_c01433{bottom:817.200000px;}
.y1b_c01433{bottom:856.800000px;}
.y31_c01433{bottom:857.520000px;}
.y30_c01433{bottom:858.240000px;}
.y18_c01433{bottom:858.960000px;}
.y19_c01433{bottom:860.400000px;}
.y1a_c01433{bottom:863.280000px;}
.y15_c01433{bottom:900.000000px;}
.y2e_c01433{bottom:900.720000px;}
.y2d_c01433{bottom:901.440000px;}
.y2f_c01433{bottom:902.160000px;}
.y14_c01433{bottom:902.880000px;}
.y17_c01433{bottom:903.600000px;}
.y16_c01433{bottom:904.320000px;}
.y13_c01433{bottom:943.200000px;}
.y2c_c01433{bottom:943.920000px;}
.y2b_c01433{bottom:944.640000px;}
.y11_c01433{bottom:945.360000px;}
.y12_c01433{bottom:946.800000px;}
.y10_c01433{bottom:977.040000px;}
.yd_c01433{bottom:986.400000px;}
.yf_c01433{bottom:988.560000px;}
.ya_c01433{bottom:989.280000px;}
.yb_c01433{bottom:990.000000px;}
.ye_c01433{bottom:990.720000px;}
.yc_c01433{bottom:993.600000px;}
.y8_c01433{bottom:1029.600000px;}
.y5_c01433{bottom:1030.320000px;}
.y6_c01433{bottom:1031.040000px;}
.y2_c01433{bottom:1032.480000px;}
.y7_c01433{bottom:1033.200000px;}
.y3_c01433{bottom:1033.920000px;}
.y9_c01433{bottom:1034.640000px;}
.y4_c01433{bottom:1037.520000px;}
.y1_c01433{bottom:1072.080000px;}
.h5_c01433{height:15.550313px;}
.h15_c01433{height:18.142031px;}
.h11_c01433{height:20.733750px;}
.h4_c01433{height:23.325469px;}
.hf_c01433{height:31.100625px;}
.h18_c01433{height:33.692344px;}
.h16_c01433{height:36.284062px;}
.h7_c01433{height:38.875781px;}
.h12_c01433{height:41.467500px;}
.hb_c01433{height:44.059219px;}
.h10_c01433{height:46.650937px;}
.h9_c01433{height:49.242656px;}
.h8_c01433{height:51.834375px;}
.h3_c01433{height:54.426094px;}
.hc_c01433{height:57.017812px;}
.h13_c01433{height:59.609531px;}
.ha_c01433{height:62.201250px;}
.h2_c01433{height:64.792969px;}
.h6_c01433{height:67.384687px;}
.hd_c01433{height:69.976406px;}
.h17_c01433{height:72.568125px;}
.h14_c01433{height:75.159844px;}
.he_c01433{height:101.077031px;}
.h0_c01433{height:1154.880000px;}
.h1_c01433{height:1155.000000px;}
.w0_c01433{width:777.600000px;}
.w1_c01433{width:777.750000px;}
.x0_c01433{left:0.000000px;}
.x2_c01433{left:50.400000px;}
.x29_c01433{left:52.560000px;}
.x3_c01433{left:83.520000px;}
.x4_c01433{left:92.880000px;}
.x13_c01433{left:113.760000px;}
.x5_c01433{left:115.200000px;}
.x35_c01433{left:190.800000px;}
.x34_c01433{left:192.240000px;}
.x6_c01433{left:200.880000px;}
.x15_c01433{left:202.320000px;}
.x2a_c01433{left:213.120000px;}
.x2c_c01433{left:224.640000px;}
.xe_c01433{left:234.000000px;}
.x7_c01433{left:244.800000px;}
.x38_c01433{left:246.240000px;}
.x16_c01433{left:254.880000px;}
.x37_c01433{left:256.320000px;}
.x24_c01433{left:266.400000px;}
.x2b_c01433{left:267.840000px;}
.x2d_c01433{left:278.640000px;}
.xf_c01433{left:288.720000px;}
.x14_c01433{left:299.520000px;}
.x27_c01433{left:310.320000px;}
.x2e_c01433{left:321.840000px;}
.x10_c01433{left:330.480000px;}
.x17_c01433{left:341.280000px;}
.x28_c01433{left:353.520000px;}
.x8_c01433{left:374.400000px;}
.x18_c01433{left:395.280000px;}
.x2f_c01433{left:406.080000px;}
.x9_c01433{left:426.960000px;}
.x30_c01433{left:450.720000px;}
.xa_c01433{left:471.600000px;}
.x11_c01433{left:482.400000px;}
.x31_c01433{left:504.000000px;}
.xb_c01433{left:514.080000px;}
.x12_c01433{left:524.880000px;}
.x32_c01433{left:546.480000px;}
.x20_c01433{left:578.160000px;}
.x1b_c01433{left:579.600000px;}
.x19_c01433{left:581.040000px;}
.x36_c01433{left:589.680000px;}
.xc_c01433{left:600.480000px;}
.x1f_c01433{left:611.280000px;}
.x25_c01433{left:632.160000px;}
.x1c_c01433{left:633.600000px;}
.x1_c01433{left:658.800000px;}
.x21_c01433{left:665.280000px;}
.x1a_c01433{left:666.720000px;}
.x33_c01433{left:676.080000px;}
.x26_c01433{left:698.400000px;}
.x22_c01433{left:707.040000px;}
.x1d_c01433{left:708.480000px;}
.xd_c01433{left:710.640000px;}
.x23_c01433{left:728.640000px;}
.x1e_c01433{left:730.080000px;}
@media print{
.v0_c01433{vertical-align:0.000000pt;}
.v1_c01433{vertical-align:7.680000pt;}
.ls0_c01433{letter-spacing:0.000000pt;}
.ws1_c01433{word-spacing:0.000000pt;}
.ws0_c01433{word-spacing:76.175360pt;}
.fs3_c01433{font-size:15.360000pt;}
.fs13_c01433{font-size:17.920000pt;}
.fsf_c01433{font-size:20.480000pt;}
.fs2_c01433{font-size:23.040000pt;}
.fsd_c01433{font-size:30.720000pt;}
.fs16_c01433{font-size:33.280000pt;}
.fs14_c01433{font-size:35.840000pt;}
.fs5_c01433{font-size:38.400000pt;}
.fs10_c01433{font-size:40.960000pt;}
.fs9_c01433{font-size:43.520000pt;}
.fse_c01433{font-size:46.080000pt;}
.fs7_c01433{font-size:48.640000pt;}
.fs6_c01433{font-size:51.200000pt;}
.fs1_c01433{font-size:53.760000pt;}
.fsa_c01433{font-size:56.320000pt;}
.fs11_c01433{font-size:58.880000pt;}
.fs8_c01433{font-size:61.440000pt;}
.fs0_c01433{font-size:64.000000pt;}
.fs4_c01433{font-size:66.560000pt;}
.fsb_c01433{font-size:69.120000pt;}
.fs15_c01433{font-size:71.680000pt;}
.fs12_c01433{font-size:74.240000pt;}
.fsc_c01433{font-size:99.840000pt;}
.y0_c01433{bottom:0.000000pt;}
.y5e_c01433{bottom:30.080000pt;}
.y61_c01433{bottom:30.720000pt;}
.y5c_c01433{bottom:32.000000pt;}
.y60_c01433{bottom:32.640000pt;}
.y5f_c01433{bottom:33.280000pt;}
.y5d_c01433{bottom:33.920000pt;}
.y63_c01433{bottom:37.760000pt;}
.y62_c01433{bottom:38.400000pt;}
.y59_c01433{bottom:67.840000pt;}
.y56_c01433{bottom:68.480000pt;}
.y57_c01433{bottom:70.400000pt;}
.y5a_c01433{bottom:73.600000pt;}
.y58_c01433{bottom:74.240000pt;}
.y5b_c01433{bottom:76.160000pt;}
.y50_c01433{bottom:106.240000pt;}
.y4d_c01433{bottom:107.520000pt;}
.y51_c01433{bottom:108.160000pt;}
.y52_c01433{bottom:108.800000pt;}
.y54_c01433{bottom:109.440000pt;}
.y4e_c01433{bottom:110.080000pt;}
.y55_c01433{bottom:111.360000pt;}
.y53_c01433{bottom:112.000000pt;}
.y4f_c01433{bottom:112.640000pt;}
.y4a_c01433{bottom:144.000000pt;}
.y49_c01433{bottom:145.920000pt;}
.y4c_c01433{bottom:146.560000pt;}
.y4b_c01433{bottom:147.200000pt;}
.y7a_c01433{bottom:149.760000pt;}
.y7c_c01433{bottom:151.040000pt;}
.y7b_c01433{bottom:152.320000pt;}
.y8d_c01433{bottom:183.680000pt;}
.y8b_c01433{bottom:184.960000pt;}
.y8e_c01433{bottom:185.600000pt;}
.y8c_c01433{bottom:186.240000pt;}
.y79_c01433{bottom:187.520000pt;}
.y77_c01433{bottom:188.800000pt;}
.y78_c01433{bottom:190.720000pt;}
.y8a_c01433{bottom:222.080000pt;}
.y89_c01433{bottom:222.720000pt;}
.y75_c01433{bottom:225.280000pt;}
.y76_c01433{bottom:226.560000pt;}
.y73_c01433{bottom:227.200000pt;}
.y74_c01433{bottom:229.760000pt;}
.y88_c01433{bottom:260.480000pt;}
.y87_c01433{bottom:263.040000pt;}
.y71_c01433{bottom:264.320000pt;}
.y72_c01433{bottom:265.600000pt;}
.y85_c01433{bottom:299.520000pt;}
.y86_c01433{bottom:300.160000pt;}
.y84_c01433{bottom:300.800000pt;}
.y6f_c01433{bottom:302.720000pt;}
.y70_c01433{bottom:303.360000pt;}
.y6e_c01433{bottom:341.120000pt;}
.y6d_c01433{bottom:342.400000pt;}
.y83_c01433{bottom:378.240000pt;}
.y82_c01433{bottom:378.880000pt;}
.y6c_c01433{bottom:379.520000pt;}
.y6b_c01433{bottom:380.160000pt;}
.y6a_c01433{bottom:380.800000pt;}
.y80_c01433{bottom:416.640000pt;}
.y7f_c01433{bottom:417.280000pt;}
.y69_c01433{bottom:417.920000pt;}
.y81_c01433{bottom:418.560000pt;}
.y67_c01433{bottom:419.200000pt;}
.y68_c01433{bottom:421.120000pt;}
.y7d_c01433{bottom:455.680000pt;}
.y65_c01433{bottom:456.320000pt;}
.y7e_c01433{bottom:457.600000pt;}
.y66_c01433{bottom:458.240000pt;}
.y64_c01433{bottom:459.520000pt;}
.y44_c01433{bottom:493.440000pt;}
.y46_c01433{bottom:494.080000pt;}
.y47_c01433{bottom:494.720000pt;}
.y43_c01433{bottom:495.360000pt;}
.y45_c01433{bottom:496.640000pt;}
.y48_c01433{bottom:497.280000pt;}
.y3e_c01433{bottom:531.840000pt;}
.y3d_c01433{bottom:532.480000pt;}
.y3c_c01433{bottom:533.120000pt;}
.y42_c01433{bottom:533.760000pt;}
.y2a_c01433{bottom:569.600000pt;}
.y40_c01433{bottom:570.880000pt;}
.y29_c01433{bottom:571.520000pt;}
.y41_c01433{bottom:572.160000pt;}
.y3f_c01433{bottom:573.440000pt;}
.y27_c01433{bottom:608.000000pt;}
.y28_c01433{bottom:608.640000pt;}
.y39_c01433{bottom:609.280000pt;}
.y25_c01433{bottom:609.920000pt;}
.y3b_c01433{bottom:610.560000pt;}
.y3a_c01433{bottom:611.200000pt;}
.y26_c01433{bottom:613.760000pt;}
.y22_c01433{bottom:646.400000pt;}
.y38_c01433{bottom:647.680000pt;}
.y37_c01433{bottom:648.320000pt;}
.y21_c01433{bottom:648.960000pt;}
.y24_c01433{bottom:649.600000pt;}
.y23_c01433{bottom:650.240000pt;}
.y1f_c01433{bottom:684.800000pt;}
.y35_c01433{bottom:685.440000pt;}
.y20_c01433{bottom:686.080000pt;}
.y34_c01433{bottom:687.360000pt;}
.y1e_c01433{bottom:688.000000pt;}
.y36_c01433{bottom:688.640000pt;}
.y1d_c01433{bottom:723.200000pt;}
.y32_c01433{bottom:724.480000pt;}
.y33_c01433{bottom:725.120000pt;}
.y1c_c01433{bottom:726.400000pt;}
.y1b_c01433{bottom:761.600000pt;}
.y31_c01433{bottom:762.240000pt;}
.y30_c01433{bottom:762.880000pt;}
.y18_c01433{bottom:763.520000pt;}
.y19_c01433{bottom:764.800000pt;}
.y1a_c01433{bottom:767.360000pt;}
.y15_c01433{bottom:800.000000pt;}
.y2e_c01433{bottom:800.640000pt;}
.y2d_c01433{bottom:801.280000pt;}
.y2f_c01433{bottom:801.920000pt;}
.y14_c01433{bottom:802.560000pt;}
.y17_c01433{bottom:803.200000pt;}
.y16_c01433{bottom:803.840000pt;}
.y13_c01433{bottom:838.400000pt;}
.y2c_c01433{bottom:839.040000pt;}
.y2b_c01433{bottom:839.680000pt;}
.y11_c01433{bottom:840.320000pt;}
.y12_c01433{bottom:841.600000pt;}
.y10_c01433{bottom:868.480000pt;}
.yd_c01433{bottom:876.800000pt;}
.yf_c01433{bottom:878.720000pt;}
.ya_c01433{bottom:879.360000pt;}
.yb_c01433{bottom:880.000000pt;}
.ye_c01433{bottom:880.640000pt;}
.yc_c01433{bottom:883.200000pt;}
.y8_c01433{bottom:915.200000pt;}
.y5_c01433{bottom:915.840000pt;}
.y6_c01433{bottom:916.480000pt;}
.y2_c01433{bottom:917.760000pt;}
.y7_c01433{bottom:918.400000pt;}
.y3_c01433{bottom:919.040000pt;}
.y9_c01433{bottom:919.680000pt;}
.y4_c01433{bottom:922.240000pt;}
.y1_c01433{bottom:952.960000pt;}
.h5_c01433{height:13.822500pt;}
.h15_c01433{height:16.126250pt;}
.h11_c01433{height:18.430000pt;}
.h4_c01433{height:20.733750pt;}
.hf_c01433{height:27.645000pt;}
.h18_c01433{height:29.948750pt;}
.h16_c01433{height:32.252500pt;}
.h7_c01433{height:34.556250pt;}
.h12_c01433{height:36.860000pt;}
.hb_c01433{height:39.163750pt;}
.h10_c01433{height:41.467500pt;}
.h9_c01433{height:43.771250pt;}
.h8_c01433{height:46.075000pt;}
.h3_c01433{height:48.378750pt;}
.hc_c01433{height:50.682500pt;}
.h13_c01433{height:52.986250pt;}
.ha_c01433{height:55.290000pt;}
.h2_c01433{height:57.593750pt;}
.h6_c01433{height:59.897500pt;}
.hd_c01433{height:62.201250pt;}
.h17_c01433{height:64.505000pt;}
.h14_c01433{height:66.808750pt;}
.he_c01433{height:89.846250pt;}
.h0_c01433{height:1026.560000pt;}
.h1_c01433{height:1026.666667pt;}
.w0_c01433{width:691.200000pt;}
.w1_c01433{width:691.333333pt;}
.x0_c01433{left:0.000000pt;}
.x2_c01433{left:44.800000pt;}
.x29_c01433{left:46.720000pt;}
.x3_c01433{left:74.240000pt;}
.x4_c01433{left:82.560000pt;}
.x13_c01433{left:101.120000pt;}
.x5_c01433{left:102.400000pt;}
.x35_c01433{left:169.600000pt;}
.x34_c01433{left:170.880000pt;}
.x6_c01433{left:178.560000pt;}
.x15_c01433{left:179.840000pt;}
.x2a_c01433{left:189.440000pt;}
.x2c_c01433{left:199.680000pt;}
.xe_c01433{left:208.000000pt;}
.x7_c01433{left:217.600000pt;}
.x38_c01433{left:218.880000pt;}
.x16_c01433{left:226.560000pt;}
.x37_c01433{left:227.840000pt;}
.x24_c01433{left:236.800000pt;}
.x2b_c01433{left:238.080000pt;}
.x2d_c01433{left:247.680000pt;}
.xf_c01433{left:256.640000pt;}
.x14_c01433{left:266.240000pt;}
.x27_c01433{left:275.840000pt;}
.x2e_c01433{left:286.080000pt;}
.x10_c01433{left:293.760000pt;}
.x17_c01433{left:303.360000pt;}
.x28_c01433{left:314.240000pt;}
.x8_c01433{left:332.800000pt;}
.x18_c01433{left:351.360000pt;}
.x2f_c01433{left:360.960000pt;}
.x9_c01433{left:379.520000pt;}
.x30_c01433{left:400.640000pt;}
.xa_c01433{left:419.200000pt;}
.x11_c01433{left:428.800000pt;}
.x31_c01433{left:448.000000pt;}
.xb_c01433{left:456.960000pt;}
.x12_c01433{left:466.560000pt;}
.x32_c01433{left:485.760000pt;}
.x20_c01433{left:513.920000pt;}
.x1b_c01433{left:515.200000pt;}
.x19_c01433{left:516.480000pt;}
.x36_c01433{left:524.160000pt;}
.xc_c01433{left:533.760000pt;}
.x1f_c01433{left:543.360000pt;}
.x25_c01433{left:561.920000pt;}
.x1c_c01433{left:563.200000pt;}
.x1_c01433{left:585.600000pt;}
.x21_c01433{left:591.360000pt;}
.x1a_c01433{left:592.640000pt;}
.x33_c01433{left:600.960000pt;}
.x26_c01433{left:620.800000pt;}
.x22_c01433{left:628.480000pt;}
.x1d_c01433{left:629.760000pt;}
.xd_c01433{left:631.680000pt;}
.x23_c01433{left:647.680000pt;}
.x1e_c01433{left:648.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_c01434 {
    display:none;
  }
  .loading-indicator_c01434.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01434 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01434 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01434" -> "#page-container .classname_c01434")
 */
.pf_c01434 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01434 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01434.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01434 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01434 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01434 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01434 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01434 {overflow:visible;}
  }
}
.c_c01434 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01434 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01434:after { /* webkit #35443 */
  content: '';
}
.t_c01434:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01434 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01434 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01434 { /* info for Javascript */
  display:none;
}
.l_c01434 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01434 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01434 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01434:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01434{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01434;src:url('chunks/assets/font_4810536b2fd211a1052ed2cb.woff2')format("woff");}.ff1_c01434{font-family:ff1_c01434;line-height:1.109863;font-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_c01434{transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);}
.m54_c01434{transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);}
.m30_c01434{transform:matrix(0.192400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192400,0.000000,0.000000,0.250000,0,0);}
.m4c_c01434{transform:matrix(0.195600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195600,0.000000,0.000000,0.250000,0,0);}
.m4b_c01434{transform:matrix(0.206575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206575,0.000000,0.000000,0.250000,0,0);}
.m32_c01434{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m20_c01434{transform:matrix(0.225100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225100,0.000000,0.000000,0.250000,0,0);}
.m17_c01434{transform:matrix(0.233225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233225,0.000000,0.000000,0.250000,0,0);}
.m2e_c01434{transform:matrix(0.234300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234300,0.000000,0.000000,0.250000,0,0);}
.m55_c01434{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m39_c01434{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m3e_c01434{transform:matrix(0.243575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243575,0.000000,0.000000,0.250000,0,0);}
.m53_c01434{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m40_c01434{transform:matrix(0.247275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247275,0.000000,0.000000,0.250000,0,0);}
.m49_c01434{transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);}
.m28_c01434{transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);}
.m5_c01434{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01434{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_c01434{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.me_c01434{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m11_c01434{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m19_c01434{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);}
.m44_c01434{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);}
.m2f_c01434{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m2_c01434{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m29_c01434{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);}
.m42_c01434{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);}
.m51_c01434{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01434{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);}
.m52_c01434{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);}
.m3a_c01434{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01434{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m13_c01434{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m35_c01434{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01434{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.md_c01434{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m4_c01434{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m46_c01434{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m15_c01434{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3_c01434{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m43_c01434{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mc_c01434{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01434{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01434{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);}
.m24_c01434{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m38_c01434{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);}
.m2b_c01434{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m8_c01434{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.ma_c01434{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);}
.m48_c01434{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01434{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);}
.m3b_c01434{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m10_c01434{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.mb_c01434{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);}
.m37_c01434{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m25_c01434{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);}
.m56_c01434{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m1_c01434{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);}
.m0_c01434{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m47_c01434{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);}
.m36_c01434{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);}
.m4a_c01434{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_c01434{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m18_c01434{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m22_c01434{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m21_c01434{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01434{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);}
.m26_c01434{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01434{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);}
.m1e_c01434{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);}
.m45_c01434{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);}
.m33_c01434{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m9_c01434{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m34_c01434{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m31_c01434{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01434{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01434{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);}
.m41_c01434{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m14_c01434{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01434{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.mf_c01434{transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);}
.m50_c01434{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m7_c01434{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m16_c01434{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m27_c01434{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m12_c01434{transform:matrix(0.832500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01434{transform:matrix(0.967500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.967500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.967500,0.000000,0.000000,0.250000,0,0);}
.v1_c01434{vertical-align:-8.640000px;}
.v0_c01434{vertical-align:0.000000px;}
.ls0_c01434{letter-spacing:0.000000px;}
.sc__c01434{text-shadow:none;}
.sc0_c01434{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01434{-webkit-text-stroke:0px transparent;}
.sc0_c01434{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01434{word-spacing:0.000000px;}
.ws0_c01434{word-spacing:13.140000px;}
.ws1_c01434{word-spacing:45.137376px;}
.fc0_c01434{color:transparent;}
.fsc_c01434{font-size:20.160000px;}
.fs12_c01434{font-size:25.920000px;}
.fse_c01434{font-size:34.560000px;}
.fs10_c01434{font-size:37.440000px;}
.fsf_c01434{font-size:40.320000px;}
.fsb_c01434{font-size:43.200000px;}
.fs8_c01434{font-size:48.960000px;}
.fs1_c01434{font-size:51.840000px;}
.fs3_c01434{font-size:54.720000px;}
.fs5_c01434{font-size:57.600000px;}
.fs2_c01434{font-size:60.480000px;}
.fs9_c01434{font-size:63.360000px;}
.fs6_c01434{font-size:66.240000px;}
.fsd_c01434{font-size:69.120000px;}
.fs0_c01434{font-size:72.000000px;}
.fs4_c01434{font-size:74.880000px;}
.fs7_c01434{font-size:77.760000px;}
.fsa_c01434{font-size:80.640000px;}
.fs11_c01434{font-size:86.400000px;}
.y0_c01434{bottom:0.000000px;}
.y62_c01434{bottom:42.480000px;}
.y61_c01434{bottom:45.360000px;}
.y7b_c01434{bottom:49.680000px;}
.y7c_c01434{bottom:51.120000px;}
.y5f_c01434{bottom:85.680000px;}
.y60_c01434{bottom:87.120000px;}
.y5e_c01434{bottom:87.840000px;}
.y79_c01434{bottom:93.600000px;}
.y7a_c01434{bottom:95.040000px;}
.y5a_c01434{bottom:129.600000px;}
.y5b_c01434{bottom:131.760000px;}
.y5d_c01434{bottom:132.480000px;}
.y59_c01434{bottom:133.200000px;}
.y5c_c01434{bottom:135.360000px;}
.y76_c01434{bottom:136.800000px;}
.y75_c01434{bottom:137.520000px;}
.y77_c01434{bottom:138.240000px;}
.y78_c01434{bottom:138.960000px;}
.y56_c01434{bottom:172.800000px;}
.y55_c01434{bottom:176.400000px;}
.y57_c01434{bottom:177.120000px;}
.y58_c01434{bottom:178.560000px;}
.y73_c01434{bottom:179.280000px;}
.y74_c01434{bottom:181.440000px;}
.y54_c01434{bottom:217.440000px;}
.y51_c01434{bottom:218.880000px;}
.y53_c01434{bottom:219.600000px;}
.y52_c01434{bottom:220.320000px;}
.y71_c01434{bottom:222.480000px;}
.y72_c01434{bottom:223.200000px;}
.y4e_c01434{bottom:260.640000px;}
.y50_c01434{bottom:262.080000px;}
.y4c_c01434{bottom:262.800000px;}
.y4d_c01434{bottom:263.520000px;}
.y4f_c01434{bottom:264.960000px;}
.y70_c01434{bottom:267.120000px;}
.y4a_c01434{bottom:303.840000px;}
.y4b_c01434{bottom:306.000000px;}
.y49_c01434{bottom:306.720000px;}
.y6e_c01434{bottom:308.160000px;}
.y6f_c01434{bottom:308.880000px;}
.y6c_c01434{bottom:311.760000px;}
.y6d_c01434{bottom:312.480000px;}
.y48_c01434{bottom:347.760000px;}
.y47_c01434{bottom:349.920000px;}
.y6b_c01434{bottom:352.800000px;}
.y69_c01434{bottom:353.520000px;}
.y6a_c01434{bottom:354.240000px;}
.y46_c01434{bottom:390.960000px;}
.y45_c01434{bottom:392.400000px;}
.y66_c01434{bottom:393.840000px;}
.y67_c01434{bottom:397.440000px;}
.y68_c01434{bottom:398.160000px;}
.y44_c01434{bottom:434.160000px;}
.y41_c01434{bottom:435.600000px;}
.y42_c01434{bottom:436.320000px;}
.y43_c01434{bottom:437.040000px;}
.y65_c01434{bottom:437.760000px;}
.y64_c01434{bottom:438.480000px;}
.y40_c01434{bottom:477.360000px;}
.y3e_c01434{bottom:479.520000px;}
.y3f_c01434{bottom:480.240000px;}
.y63_c01434{bottom:483.120000px;}
.y3d_c01434{bottom:520.560000px;}
.y3b_c01434{bottom:522.000000px;}
.y3c_c01434{bottom:522.720000px;}
.y39_c01434{bottom:567.360000px;}
.y3a_c01434{bottom:568.080000px;}
.y35_c01434{bottom:617.760000px;}
.y37_c01434{bottom:618.480000px;}
.y36_c01434{bottom:619.920000px;}
.y38_c01434{bottom:620.640000px;}
.y34_c01434{bottom:621.360000px;}
.y33_c01434{bottom:622.080000px;}
.y2f_c01434{bottom:660.960000px;}
.y30_c01434{bottom:662.400000px;}
.y2e_c01434{bottom:663.120000px;}
.y31_c01434{bottom:663.840000px;}
.y32_c01434{bottom:664.560000px;}
.y2a_c01434{bottom:704.160000px;}
.y2b_c01434{bottom:704.880000px;}
.y29_c01434{bottom:706.320000px;}
.y2c_c01434{bottom:707.040000px;}
.y2d_c01434{bottom:707.760000px;}
.y25_c01434{bottom:748.800000px;}
.y26_c01434{bottom:749.520000px;}
.y24_c01434{bottom:750.240000px;}
.y27_c01434{bottom:751.680000px;}
.y23_c01434{bottom:752.400000px;}
.y21_c01434{bottom:781.920000px;}
.y1e_c01434{bottom:782.640000px;}
.y22_c01434{bottom:783.360000px;}
.y20_c01434{bottom:784.080000px;}
.y28_c01434{bottom:784.800000px;}
.y1f_c01434{bottom:786.960000px;}
.y1d_c01434{bottom:824.400000px;}
.y1c_c01434{bottom:825.840000px;}
.y17_c01434{bottom:856.080000px;}
.y19_c01434{bottom:856.800000px;}
.y18_c01434{bottom:857.520000px;}
.y1b_c01434{bottom:858.240000px;}
.y16_c01434{bottom:859.680000px;}
.y1a_c01434{bottom:860.400000px;}
.y11_c01434{bottom:900.000000px;}
.y15_c01434{bottom:900.720000px;}
.y12_c01434{bottom:901.440000px;}
.y10_c01434{bottom:902.160000px;}
.y14_c01434{bottom:902.880000px;}
.y13_c01434{bottom:903.600000px;}
.yd_c01434{bottom:941.760000px;}
.yb_c01434{bottom:942.480000px;}
.ye_c01434{bottom:943.920000px;}
.ya_c01434{bottom:944.640000px;}
.yf_c01434{bottom:945.360000px;}
.yc_c01434{bottom:946.080000px;}
.y7_c01434{bottom:985.680000px;}
.y8_c01434{bottom:986.400000px;}
.y6_c01434{bottom:987.120000px;}
.y9_c01434{bottom:987.840000px;}
.y4_c01434{bottom:1029.600000px;}
.y3_c01434{bottom:1030.320000px;}
.y5_c01434{bottom:1031.760000px;}
.y2_c01434{bottom:1032.480000px;}
.y1_c01434{bottom:1085.040000px;}
.he_c01434{height:18.142031px;}
.h14_c01434{height:23.325469px;}
.h10_c01434{height:31.100625px;}
.h12_c01434{height:33.692344px;}
.h11_c01434{height:36.284062px;}
.hd_c01434{height:38.875781px;}
.ha_c01434{height:44.059219px;}
.h3_c01434{height:46.650937px;}
.h5_c01434{height:49.242656px;}
.h7_c01434{height:51.834375px;}
.h4_c01434{height:54.426094px;}
.hb_c01434{height:57.017812px;}
.h8_c01434{height:59.609531px;}
.hf_c01434{height:62.201250px;}
.h2_c01434{height:64.792969px;}
.h6_c01434{height:67.384687px;}
.h9_c01434{height:69.976406px;}
.hc_c01434{height:72.568125px;}
.h13_c01434{height:77.751563px;}
.h0_c01434{height:1155.600000px;}
.h1_c01434{height:1155.750000px;}
.w0_c01434{width:778.320000px;}
.w1_c01434{width:778.500000px;}
.x0_c01434{left:0.000000px;}
.x6_c01434{left:51.120000px;}
.x30_c01434{left:52.560000px;}
.x39_c01434{left:54.000000px;}
.x2a_c01434{left:83.520000px;}
.x3a_c01434{left:84.960000px;}
.x19_c01434{left:92.160000px;}
.x2_c01434{left:103.680000px;}
.x7_c01434{left:114.480000px;}
.x1a_c01434{left:115.920000px;}
.x2e_c01434{left:126.720000px;}
.x23_c01434{left:157.680000px;}
.x2d_c01434{left:159.120000px;}
.x3_c01434{left:169.200000px;}
.x1b_c01434{left:190.080000px;}
.x4_c01434{left:200.880000px;}
.x2f_c01434{left:202.320000px;}
.x18_c01434{left:213.120000px;}
.x5_c01434{left:223.200000px;}
.x38_c01434{left:224.640000px;}
.xb_c01434{left:233.280000px;}
.x1c_c01434{left:244.800000px;}
.x33_c01434{left:246.240000px;}
.x31_c01434{left:257.040000px;}
.x14_c01434{left:266.400000px;}
.x24_c01434{left:276.480000px;}
.xc_c01434{left:286.560000px;}
.x1d_c01434{left:300.240000px;}
.x2b_c01434{left:309.600000px;}
.x27_c01434{left:319.680000px;}
.x25_c01434{left:331.200000px;}
.x36_c01434{left:332.640000px;}
.x32_c01434{left:353.520000px;}
.xd_c01434{left:373.680000px;}
.x37_c01434{left:375.840000px;}
.x34_c01434{left:384.480000px;}
.x1e_c01434{left:394.560000px;}
.x1f_c01434{left:406.080000px;}
.x20_c01434{left:416.880000px;}
.x11_c01434{left:426.240000px;}
.x35_c01434{left:427.680000px;}
.x21_c01434{left:449.280000px;}
.xe_c01434{left:460.080000px;}
.x12_c01434{left:471.600000px;}
.x26_c01434{left:481.680000px;}
.x22_c01434{left:502.560000px;}
.x15_c01434{left:524.160000px;}
.x42_c01434{left:567.360000px;}
.x41_c01434{left:577.440000px;}
.x16_c01434{left:578.880000px;}
.x40_c01434{left:588.240000px;}
.x28_c01434{left:598.320000px;}
.x8_c01434{left:600.480000px;}
.x3b_c01434{left:609.840000px;}
.x3f_c01434{left:630.720000px;}
.xf_c01434{left:632.880000px;}
.x1_c01434{left:660.240000px;}
.x3c_c01434{left:663.120000px;}
.x10_c01434{left:665.280000px;}
.x29_c01434{left:675.360000px;}
.x3d_c01434{left:696.240000px;}
.x17_c01434{left:697.680000px;}
.x2c_c01434{left:706.320000px;}
.x9_c01434{left:708.480000px;}
.x3e_c01434{left:726.480000px;}
.x13_c01434{left:727.920000px;}
.xa_c01434{left:729.360000px;}
@media print{
.v1_c01434{vertical-align:-7.680000pt;}
.v0_c01434{vertical-align:0.000000pt;}
.ls0_c01434{letter-spacing:0.000000pt;}
.ws2_c01434{word-spacing:0.000000pt;}
.ws0_c01434{word-spacing:11.680000pt;}
.ws1_c01434{word-spacing:40.122112pt;}
.fsc_c01434{font-size:17.920000pt;}
.fs12_c01434{font-size:23.040000pt;}
.fse_c01434{font-size:30.720000pt;}
.fs10_c01434{font-size:33.280000pt;}
.fsf_c01434{font-size:35.840000pt;}
.fsb_c01434{font-size:38.400000pt;}
.fs8_c01434{font-size:43.520000pt;}
.fs1_c01434{font-size:46.080000pt;}
.fs3_c01434{font-size:48.640000pt;}
.fs5_c01434{font-size:51.200000pt;}
.fs2_c01434{font-size:53.760000pt;}
.fs9_c01434{font-size:56.320000pt;}
.fs6_c01434{font-size:58.880000pt;}
.fsd_c01434{font-size:61.440000pt;}
.fs0_c01434{font-size:64.000000pt;}
.fs4_c01434{font-size:66.560000pt;}
.fs7_c01434{font-size:69.120000pt;}
.fsa_c01434{font-size:71.680000pt;}
.fs11_c01434{font-size:76.800000pt;}
.y0_c01434{bottom:0.000000pt;}
.y62_c01434{bottom:37.760000pt;}
.y61_c01434{bottom:40.320000pt;}
.y7b_c01434{bottom:44.160000pt;}
.y7c_c01434{bottom:45.440000pt;}
.y5f_c01434{bottom:76.160000pt;}
.y60_c01434{bottom:77.440000pt;}
.y5e_c01434{bottom:78.080000pt;}
.y79_c01434{bottom:83.200000pt;}
.y7a_c01434{bottom:84.480000pt;}
.y5a_c01434{bottom:115.200000pt;}
.y5b_c01434{bottom:117.120000pt;}
.y5d_c01434{bottom:117.760000pt;}
.y59_c01434{bottom:118.400000pt;}
.y5c_c01434{bottom:120.320000pt;}
.y76_c01434{bottom:121.600000pt;}
.y75_c01434{bottom:122.240000pt;}
.y77_c01434{bottom:122.880000pt;}
.y78_c01434{bottom:123.520000pt;}
.y56_c01434{bottom:153.600000pt;}
.y55_c01434{bottom:156.800000pt;}
.y57_c01434{bottom:157.440000pt;}
.y58_c01434{bottom:158.720000pt;}
.y73_c01434{bottom:159.360000pt;}
.y74_c01434{bottom:161.280000pt;}
.y54_c01434{bottom:193.280000pt;}
.y51_c01434{bottom:194.560000pt;}
.y53_c01434{bottom:195.200000pt;}
.y52_c01434{bottom:195.840000pt;}
.y71_c01434{bottom:197.760000pt;}
.y72_c01434{bottom:198.400000pt;}
.y4e_c01434{bottom:231.680000pt;}
.y50_c01434{bottom:232.960000pt;}
.y4c_c01434{bottom:233.600000pt;}
.y4d_c01434{bottom:234.240000pt;}
.y4f_c01434{bottom:235.520000pt;}
.y70_c01434{bottom:237.440000pt;}
.y4a_c01434{bottom:270.080000pt;}
.y4b_c01434{bottom:272.000000pt;}
.y49_c01434{bottom:272.640000pt;}
.y6e_c01434{bottom:273.920000pt;}
.y6f_c01434{bottom:274.560000pt;}
.y6c_c01434{bottom:277.120000pt;}
.y6d_c01434{bottom:277.760000pt;}
.y48_c01434{bottom:309.120000pt;}
.y47_c01434{bottom:311.040000pt;}
.y6b_c01434{bottom:313.600000pt;}
.y69_c01434{bottom:314.240000pt;}
.y6a_c01434{bottom:314.880000pt;}
.y46_c01434{bottom:347.520000pt;}
.y45_c01434{bottom:348.800000pt;}
.y66_c01434{bottom:350.080000pt;}
.y67_c01434{bottom:353.280000pt;}
.y68_c01434{bottom:353.920000pt;}
.y44_c01434{bottom:385.920000pt;}
.y41_c01434{bottom:387.200000pt;}
.y42_c01434{bottom:387.840000pt;}
.y43_c01434{bottom:388.480000pt;}
.y65_c01434{bottom:389.120000pt;}
.y64_c01434{bottom:389.760000pt;}
.y40_c01434{bottom:424.320000pt;}
.y3e_c01434{bottom:426.240000pt;}
.y3f_c01434{bottom:426.880000pt;}
.y63_c01434{bottom:429.440000pt;}
.y3d_c01434{bottom:462.720000pt;}
.y3b_c01434{bottom:464.000000pt;}
.y3c_c01434{bottom:464.640000pt;}
.y39_c01434{bottom:504.320000pt;}
.y3a_c01434{bottom:504.960000pt;}
.y35_c01434{bottom:549.120000pt;}
.y37_c01434{bottom:549.760000pt;}
.y36_c01434{bottom:551.040000pt;}
.y38_c01434{bottom:551.680000pt;}
.y34_c01434{bottom:552.320000pt;}
.y33_c01434{bottom:552.960000pt;}
.y2f_c01434{bottom:587.520000pt;}
.y30_c01434{bottom:588.800000pt;}
.y2e_c01434{bottom:589.440000pt;}
.y31_c01434{bottom:590.080000pt;}
.y32_c01434{bottom:590.720000pt;}
.y2a_c01434{bottom:625.920000pt;}
.y2b_c01434{bottom:626.560000pt;}
.y29_c01434{bottom:627.840000pt;}
.y2c_c01434{bottom:628.480000pt;}
.y2d_c01434{bottom:629.120000pt;}
.y25_c01434{bottom:665.600000pt;}
.y26_c01434{bottom:666.240000pt;}
.y24_c01434{bottom:666.880000pt;}
.y27_c01434{bottom:668.160000pt;}
.y23_c01434{bottom:668.800000pt;}
.y21_c01434{bottom:695.040000pt;}
.y1e_c01434{bottom:695.680000pt;}
.y22_c01434{bottom:696.320000pt;}
.y20_c01434{bottom:696.960000pt;}
.y28_c01434{bottom:697.600000pt;}
.y1f_c01434{bottom:699.520000pt;}
.y1d_c01434{bottom:732.800000pt;}
.y1c_c01434{bottom:734.080000pt;}
.y17_c01434{bottom:760.960000pt;}
.y19_c01434{bottom:761.600000pt;}
.y18_c01434{bottom:762.240000pt;}
.y1b_c01434{bottom:762.880000pt;}
.y16_c01434{bottom:764.160000pt;}
.y1a_c01434{bottom:764.800000pt;}
.y11_c01434{bottom:800.000000pt;}
.y15_c01434{bottom:800.640000pt;}
.y12_c01434{bottom:801.280000pt;}
.y10_c01434{bottom:801.920000pt;}
.y14_c01434{bottom:802.560000pt;}
.y13_c01434{bottom:803.200000pt;}
.yd_c01434{bottom:837.120000pt;}
.yb_c01434{bottom:837.760000pt;}
.ye_c01434{bottom:839.040000pt;}
.ya_c01434{bottom:839.680000pt;}
.yf_c01434{bottom:840.320000pt;}
.yc_c01434{bottom:840.960000pt;}
.y7_c01434{bottom:876.160000pt;}
.y8_c01434{bottom:876.800000pt;}
.y6_c01434{bottom:877.440000pt;}
.y9_c01434{bottom:878.080000pt;}
.y4_c01434{bottom:915.200000pt;}
.y3_c01434{bottom:915.840000pt;}
.y5_c01434{bottom:917.120000pt;}
.y2_c01434{bottom:917.760000pt;}
.y1_c01434{bottom:964.480000pt;}
.he_c01434{height:16.126250pt;}
.h14_c01434{height:20.733750pt;}
.h10_c01434{height:27.645000pt;}
.h12_c01434{height:29.948750pt;}
.h11_c01434{height:32.252500pt;}
.hd_c01434{height:34.556250pt;}
.ha_c01434{height:39.163750pt;}
.h3_c01434{height:41.467500pt;}
.h5_c01434{height:43.771250pt;}
.h7_c01434{height:46.075000pt;}
.h4_c01434{height:48.378750pt;}
.hb_c01434{height:50.682500pt;}
.h8_c01434{height:52.986250pt;}
.hf_c01434{height:55.290000pt;}
.h2_c01434{height:57.593750pt;}
.h6_c01434{height:59.897500pt;}
.h9_c01434{height:62.201250pt;}
.hc_c01434{height:64.505000pt;}
.h13_c01434{height:69.112500pt;}
.h0_c01434{height:1027.200000pt;}
.h1_c01434{height:1027.333333pt;}
.w0_c01434{width:691.840000pt;}
.w1_c01434{width:692.000000pt;}
.x0_c01434{left:0.000000pt;}
.x6_c01434{left:45.440000pt;}
.x30_c01434{left:46.720000pt;}
.x39_c01434{left:48.000000pt;}
.x2a_c01434{left:74.240000pt;}
.x3a_c01434{left:75.520000pt;}
.x19_c01434{left:81.920000pt;}
.x2_c01434{left:92.160000pt;}
.x7_c01434{left:101.760000pt;}
.x1a_c01434{left:103.040000pt;}
.x2e_c01434{left:112.640000pt;}
.x23_c01434{left:140.160000pt;}
.x2d_c01434{left:141.440000pt;}
.x3_c01434{left:150.400000pt;}
.x1b_c01434{left:168.960000pt;}
.x4_c01434{left:178.560000pt;}
.x2f_c01434{left:179.840000pt;}
.x18_c01434{left:189.440000pt;}
.x5_c01434{left:198.400000pt;}
.x38_c01434{left:199.680000pt;}
.xb_c01434{left:207.360000pt;}
.x1c_c01434{left:217.600000pt;}
.x33_c01434{left:218.880000pt;}
.x31_c01434{left:228.480000pt;}
.x14_c01434{left:236.800000pt;}
.x24_c01434{left:245.760000pt;}
.xc_c01434{left:254.720000pt;}
.x1d_c01434{left:266.880000pt;}
.x2b_c01434{left:275.200000pt;}
.x27_c01434{left:284.160000pt;}
.x25_c01434{left:294.400000pt;}
.x36_c01434{left:295.680000pt;}
.x32_c01434{left:314.240000pt;}
.xd_c01434{left:332.160000pt;}
.x37_c01434{left:334.080000pt;}
.x34_c01434{left:341.760000pt;}
.x1e_c01434{left:350.720000pt;}
.x1f_c01434{left:360.960000pt;}
.x20_c01434{left:370.560000pt;}
.x11_c01434{left:378.880000pt;}
.x35_c01434{left:380.160000pt;}
.x21_c01434{left:399.360000pt;}
.xe_c01434{left:408.960000pt;}
.x12_c01434{left:419.200000pt;}
.x26_c01434{left:428.160000pt;}
.x22_c01434{left:446.720000pt;}
.x15_c01434{left:465.920000pt;}
.x42_c01434{left:504.320000pt;}
.x41_c01434{left:513.280000pt;}
.x16_c01434{left:514.560000pt;}
.x40_c01434{left:522.880000pt;}
.x28_c01434{left:531.840000pt;}
.x8_c01434{left:533.760000pt;}
.x3b_c01434{left:542.080000pt;}
.x3f_c01434{left:560.640000pt;}
.xf_c01434{left:562.560000pt;}
.x1_c01434{left:586.880000pt;}
.x3c_c01434{left:589.440000pt;}
.x10_c01434{left:591.360000pt;}
.x29_c01434{left:600.320000pt;}
.x3d_c01434{left:618.880000pt;}
.x17_c01434{left:620.160000pt;}
.x2c_c01434{left:627.840000pt;}
.x9_c01434{left:629.760000pt;}
.x3e_c01434{left:645.760000pt;}
.x13_c01434{left:647.040000pt;}
.xa_c01434{left:648.320000pt;}
}





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

.ir_c01435:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01435{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01435;src:url('chunks/assets/font_155823a75d44faf24157940d.woff2')format("woff");}.ff1_c01435{font-family:ff1_c01435;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m42_c01435{transform:matrix(0.069425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069425,0.000000,0.000000,0.250000,0,0);}
.m34_c01435{transform:matrix(0.170775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170775,0.000000,0.000000,0.250000,0,0);}
.m46_c01435{transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);}
.m40_c01435{transform:matrix(0.184625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184625,0.000000,0.000000,0.250000,0,0);}
.m31_c01435{transform:matrix(0.185475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185475,0.000000,0.000000,0.250000,0,0);}
.m23_c01435{transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);}
.m48_c01435{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.m4a_c01435{transform:matrix(0.201850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201850,0.000000,0.000000,0.250000,0,0);}
.m41_c01435{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m3d_c01435{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m47_c01435{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m1e_c01435{transform:matrix(0.232575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232575,0.000000,0.000000,0.250000,0,0);}
.m32_c01435{transform:matrix(0.240675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240675,0.000000,0.000000,0.250000,0,0);}
.m21_c01435{transform:matrix(0.241700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241700,0.000000,0.000000,0.250000,0,0);}
.m45_c01435{transform:matrix(0.246450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246450,0.000000,0.000000,0.250000,0,0);}
.m1_c01435{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m15_c01435{transform:matrix(0.249775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249775,0.000000,0.000000,0.250000,0,0);}
.m2_c01435{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01435{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m39_c01435{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);}
.m38_c01435{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m18_c01435{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m7_c01435{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);}
.m3b_c01435{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);}
.m4b_c01435{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);}
.m2c_c01435{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01435{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m4_c01435{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m25_c01435{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);}
.m3a_c01435{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01435{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);}
.m3f_c01435{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01435{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m43_c01435{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01435{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m27_c01435{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.me_c01435{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01435{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01435{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m28_c01435{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01435{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m49_c01435{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m12_c01435{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m22_c01435{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);}
.m2e_c01435{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);}
.m30_c01435{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.mc_c01435{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m35_c01435{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);}
.m1d_c01435{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.md_c01435{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.ma_c01435{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m24_c01435{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m0_c01435{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.mf_c01435{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);}
.m36_c01435{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m14_c01435{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m16_c01435{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);}
.m9_c01435{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m5_c01435{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);}
.m2f_c01435{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m17_c01435{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01435{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.mb_c01435{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);}
.m26_c01435{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m10_c01435{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m8_c01435{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m13_c01435{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);}
.m3_c01435{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m19_c01435{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);}
.m2b_c01435{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);}
.m3e_c01435{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m29_c01435{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m37_c01435{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01435{transform:matrix(0.712500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.712500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.712500,0.000000,0.000000,0.250000,0,0);}
.m44_c01435{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m33_c01435{transform:matrix(0.967500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.967500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.967500,0.000000,0.000000,0.250000,0,0);}
.m20_c01435{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.v2_c01435{vertical-align:-8.640000px;}
.v1_c01435{vertical-align:-2.880000px;}
.v0_c01435{vertical-align:0.000000px;}
.ls1_c01435{letter-spacing:0.000000px;}
.ls0_c01435{letter-spacing:153.576960px;}
.sc__c01435{text-shadow:none;}
.sc0_c01435{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01435{-webkit-text-stroke:0px transparent;}
.sc0_c01435{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01435{word-spacing:0.000000px;}
.ws1_c01435{word-spacing:9.210378px;}
.ws0_c01435{word-spacing:9.212400px;}
.fc0_c01435{color:transparent;}
.fsb_c01435{font-size:14.400000px;}
.fsc_c01435{font-size:31.680000px;}
.fs10_c01435{font-size:34.560000px;}
.fsd_c01435{font-size:40.320000px;}
.fsa_c01435{font-size:43.200000px;}
.fsf_c01435{font-size:48.960000px;}
.fs7_c01435{font-size:51.840000px;}
.fs3_c01435{font-size:54.720000px;}
.fs4_c01435{font-size:57.600000px;}
.fs0_c01435{font-size:60.480000px;}
.fs8_c01435{font-size:63.360000px;}
.fs5_c01435{font-size:66.240000px;}
.fs6_c01435{font-size:69.120000px;}
.fs2_c01435{font-size:72.000000px;}
.fse_c01435{font-size:74.880000px;}
.fs1_c01435{font-size:77.760000px;}
.fs9_c01435{font-size:80.640000px;}
.fs11_c01435{font-size:224.640000px;}
.y0_c01435{bottom:0.000000px;}
.y3e_c01435{bottom:30.240000px;}
.y3d_c01435{bottom:33.120000px;}
.y3c_c01435{bottom:35.280000px;}
.y61_c01435{bottom:37.440000px;}
.y62_c01435{bottom:39.600000px;}
.y63_c01435{bottom:40.320000px;}
.y3b_c01435{bottom:73.440000px;}
.y3a_c01435{bottom:75.600000px;}
.y39_c01435{bottom:76.320000px;}
.y5e_c01435{bottom:79.200000px;}
.y5f_c01435{bottom:79.920000px;}
.y60_c01435{bottom:81.360000px;}
.y35_c01435{bottom:170.640000px;}
.y38_c01435{bottom:172.800000px;}
.y33_c01435{bottom:173.520000px;}
.y34_c01435{bottom:174.960000px;}
.y37_c01435{bottom:175.680000px;}
.y36_c01435{bottom:176.400000px;}
.y5d_c01435{bottom:177.840000px;}
.y31_c01435{bottom:213.840000px;}
.y32_c01435{bottom:215.280000px;}
.y30_c01435{bottom:216.720000px;}
.y5b_c01435{bottom:218.880000px;}
.y5c_c01435{bottom:221.760000px;}
.y2e_c01435{bottom:256.320000px;}
.y2f_c01435{bottom:257.760000px;}
.y2d_c01435{bottom:259.200000px;}
.y59_c01435{bottom:260.640000px;}
.y5a_c01435{bottom:265.680000px;}
.y2a_c01435{bottom:300.960000px;}
.y2c_c01435{bottom:301.680000px;}
.y28_c01435{bottom:303.120000px;}
.y29_c01435{bottom:303.840000px;}
.y2b_c01435{bottom:304.560000px;}
.y56_c01435{bottom:305.280000px;}
.y57_c01435{bottom:308.160000px;}
.y58_c01435{bottom:308.880000px;}
.y25_c01435{bottom:344.160000px;}
.y27_c01435{bottom:345.600000px;}
.y24_c01435{bottom:347.040000px;}
.y26_c01435{bottom:347.760000px;}
.y55_c01435{bottom:348.480000px;}
.y53_c01435{bottom:390.960000px;}
.y54_c01435{bottom:391.680000px;}
.y22_c01435{bottom:432.720000px;}
.y21_c01435{bottom:433.440000px;}
.y51_c01435{bottom:434.160000px;}
.y23_c01435{bottom:434.880000px;}
.y52_c01435{bottom:435.600000px;}
.y20_c01435{bottom:474.480000px;}
.y1f_c01435{bottom:477.360000px;}
.y4f_c01435{bottom:478.080000px;}
.y4e_c01435{bottom:478.800000px;}
.y50_c01435{bottom:480.240000px;}
.y4d_c01435{bottom:480.960000px;}
.y1c_c01435{bottom:517.680000px;}
.y1e_c01435{bottom:518.400000px;}
.y1a_c01435{bottom:520.560000px;}
.y4b_c01435{bottom:521.280000px;}
.y1d_c01435{bottom:522.000000px;}
.y1b_c01435{bottom:525.600000px;}
.y4c_c01435{bottom:529.200000px;}
.y18_c01435{bottom:615.600000px;}
.y17_c01435{bottom:617.760000px;}
.y4a_c01435{bottom:618.480000px;}
.y19_c01435{bottom:619.920000px;}
.y15_c01435{bottom:658.800000px;}
.y16_c01435{bottom:660.240000px;}
.y12_c01435{bottom:692.640000px;}
.y13_c01435{bottom:693.360000px;}
.y11_c01435{bottom:694.080000px;}
.y14_c01435{bottom:695.520000px;}
.y48_c01435{bottom:738.000000px;}
.y49_c01435{bottom:738.720000px;}
.y47_c01435{bottom:778.320000px;}
.y46_c01435{bottom:779.040000px;}
.y45_c01435{bottom:822.960000px;}
.y44_c01435{bottom:823.680000px;}
.y43_c01435{bottom:825.120000px;}
.y41_c01435{bottom:864.000000px;}
.y42_c01435{bottom:865.440000px;}
.yf_c01435{bottom:907.200000px;}
.yd_c01435{bottom:907.920000px;}
.ye_c01435{bottom:908.640000px;}
.y10_c01435{bottom:911.520000px;}
.ya_c01435{bottom:940.320000px;}
.yb_c01435{bottom:941.040000px;}
.y9_c01435{bottom:941.760000px;}
.yc_c01435{bottom:943.200000px;}
.y6_c01435{bottom:982.800000px;}
.y7_c01435{bottom:984.240000px;}
.y5_c01435{bottom:985.680000px;}
.y8_c01435{bottom:986.400000px;}
.y2_c01435{bottom:1026.000000px;}
.y3_c01435{bottom:1027.440000px;}
.y40_c01435{bottom:1028.160000px;}
.y1_c01435{bottom:1028.880000px;}
.y4_c01435{bottom:1030.320000px;}
.y3f_c01435{bottom:1085.040000px;}
.hd_c01435{height:12.958594px;}
.he_c01435{height:28.508906px;}
.h12_c01435{height:31.100625px;}
.hf_c01435{height:36.284062px;}
.hc_c01435{height:38.875781px;}
.h11_c01435{height:44.059219px;}
.h9_c01435{height:46.650937px;}
.h5_c01435{height:49.242656px;}
.h6_c01435{height:51.834375px;}
.h2_c01435{height:54.426094px;}
.ha_c01435{height:57.017812px;}
.h7_c01435{height:59.609531px;}
.h8_c01435{height:62.201250px;}
.h4_c01435{height:64.792969px;}
.h10_c01435{height:67.384687px;}
.h3_c01435{height:69.976406px;}
.hb_c01435{height:72.568125px;}
.h13_c01435{height:202.154062px;}
.h0_c01435{height:1153.440000px;}
.h1_c01435{height:1153.500000px;}
.w0_c01435{width:776.160000px;}
.w1_c01435{width:776.250000px;}
.x0_c01435{left:0.000000px;}
.x1_c01435{left:49.680000px;}
.x19_c01435{left:51.120000px;}
.x15_c01435{left:82.080000px;}
.x10_c01435{left:91.440000px;}
.x2_c01435{left:112.320000px;}
.x7_c01435{left:113.760000px;}
.x1a_c01435{left:137.520000px;}
.x11_c01435{left:146.880000px;}
.x12_c01435{left:177.840000px;}
.x1b_c01435{left:188.640000px;}
.x20_c01435{left:190.080000px;}
.x8_c01435{left:198.720000px;}
.x3_c01435{left:200.880000px;}
.x13_c01435{left:210.240000px;}
.xe_c01435{left:211.680000px;}
.xd_c01435{left:243.360000px;}
.x17_c01435{left:244.800000px;}
.xf_c01435{left:254.880000px;}
.x9_c01435{left:264.960000px;}
.x16_c01435{left:288.720000px;}
.x14_c01435{left:308.160000px;}
.xa_c01435{left:318.960000px;}
.x18_c01435{left:330.480000px;}
.x6_c01435{left:349.920000px;}
.x1c_c01435{left:362.880000px;}
.x1d_c01435{left:372.240000px;}
.x1e_c01435{left:384.480000px;}
.x4_c01435{left:393.840000px;}
.xb_c01435{left:414.720000px;}
.x1f_c01435{left:416.160000px;}
.x5_c01435{left:449.280000px;}
.xc_c01435{left:469.440000px;}
.x27_c01435{left:568.080000px;}
.x30_c01435{left:577.440000px;}
.x22_c01435{left:578.880000px;}
.x28_c01435{left:599.040000px;}
.x2e_c01435{left:609.840000px;}
.x2a_c01435{left:631.440000px;}
.x23_c01435{left:632.880000px;}
.x21_c01435{left:647.280000px;}
.x2b_c01435{left:663.840000px;}
.x24_c01435{left:665.280000px;}
.x31_c01435{left:674.640000px;}
.x29_c01435{left:697.680000px;}
.x2c_c01435{left:707.040000px;}
.x25_c01435{left:708.480000px;}
.x2d_c01435{left:727.200000px;}
.x26_c01435{left:728.640000px;}
.x2f_c01435{left:763.200000px;}
@media print{
.v2_c01435{vertical-align:-7.680000pt;}
.v1_c01435{vertical-align:-2.560000pt;}
.v0_c01435{vertical-align:0.000000pt;}
.ls1_c01435{letter-spacing:0.000000pt;}
.ls0_c01435{letter-spacing:136.512853pt;}
.ws2_c01435{word-spacing:0.000000pt;}
.ws1_c01435{word-spacing:8.187003pt;}
.ws0_c01435{word-spacing:8.188800pt;}
.fsb_c01435{font-size:12.800000pt;}
.fsc_c01435{font-size:28.160000pt;}
.fs10_c01435{font-size:30.720000pt;}
.fsd_c01435{font-size:35.840000pt;}
.fsa_c01435{font-size:38.400000pt;}
.fsf_c01435{font-size:43.520000pt;}
.fs7_c01435{font-size:46.080000pt;}
.fs3_c01435{font-size:48.640000pt;}
.fs4_c01435{font-size:51.200000pt;}
.fs0_c01435{font-size:53.760000pt;}
.fs8_c01435{font-size:56.320000pt;}
.fs5_c01435{font-size:58.880000pt;}
.fs6_c01435{font-size:61.440000pt;}
.fs2_c01435{font-size:64.000000pt;}
.fse_c01435{font-size:66.560000pt;}
.fs1_c01435{font-size:69.120000pt;}
.fs9_c01435{font-size:71.680000pt;}
.fs11_c01435{font-size:199.680000pt;}
.y0_c01435{bottom:0.000000pt;}
.y3e_c01435{bottom:26.880000pt;}
.y3d_c01435{bottom:29.440000pt;}
.y3c_c01435{bottom:31.360000pt;}
.y61_c01435{bottom:33.280000pt;}
.y62_c01435{bottom:35.200000pt;}
.y63_c01435{bottom:35.840000pt;}
.y3b_c01435{bottom:65.280000pt;}
.y3a_c01435{bottom:67.200000pt;}
.y39_c01435{bottom:67.840000pt;}
.y5e_c01435{bottom:70.400000pt;}
.y5f_c01435{bottom:71.040000pt;}
.y60_c01435{bottom:72.320000pt;}
.y35_c01435{bottom:151.680000pt;}
.y38_c01435{bottom:153.600000pt;}
.y33_c01435{bottom:154.240000pt;}
.y34_c01435{bottom:155.520000pt;}
.y37_c01435{bottom:156.160000pt;}
.y36_c01435{bottom:156.800000pt;}
.y5d_c01435{bottom:158.080000pt;}
.y31_c01435{bottom:190.080000pt;}
.y32_c01435{bottom:191.360000pt;}
.y30_c01435{bottom:192.640000pt;}
.y5b_c01435{bottom:194.560000pt;}
.y5c_c01435{bottom:197.120000pt;}
.y2e_c01435{bottom:227.840000pt;}
.y2f_c01435{bottom:229.120000pt;}
.y2d_c01435{bottom:230.400000pt;}
.y59_c01435{bottom:231.680000pt;}
.y5a_c01435{bottom:236.160000pt;}
.y2a_c01435{bottom:267.520000pt;}
.y2c_c01435{bottom:268.160000pt;}
.y28_c01435{bottom:269.440000pt;}
.y29_c01435{bottom:270.080000pt;}
.y2b_c01435{bottom:270.720000pt;}
.y56_c01435{bottom:271.360000pt;}
.y57_c01435{bottom:273.920000pt;}
.y58_c01435{bottom:274.560000pt;}
.y25_c01435{bottom:305.920000pt;}
.y27_c01435{bottom:307.200000pt;}
.y24_c01435{bottom:308.480000pt;}
.y26_c01435{bottom:309.120000pt;}
.y55_c01435{bottom:309.760000pt;}
.y53_c01435{bottom:347.520000pt;}
.y54_c01435{bottom:348.160000pt;}
.y22_c01435{bottom:384.640000pt;}
.y21_c01435{bottom:385.280000pt;}
.y51_c01435{bottom:385.920000pt;}
.y23_c01435{bottom:386.560000pt;}
.y52_c01435{bottom:387.200000pt;}
.y20_c01435{bottom:421.760000pt;}
.y1f_c01435{bottom:424.320000pt;}
.y4f_c01435{bottom:424.960000pt;}
.y4e_c01435{bottom:425.600000pt;}
.y50_c01435{bottom:426.880000pt;}
.y4d_c01435{bottom:427.520000pt;}
.y1c_c01435{bottom:460.160000pt;}
.y1e_c01435{bottom:460.800000pt;}
.y1a_c01435{bottom:462.720000pt;}
.y4b_c01435{bottom:463.360000pt;}
.y1d_c01435{bottom:464.000000pt;}
.y1b_c01435{bottom:467.200000pt;}
.y4c_c01435{bottom:470.400000pt;}
.y18_c01435{bottom:547.200000pt;}
.y17_c01435{bottom:549.120000pt;}
.y4a_c01435{bottom:549.760000pt;}
.y19_c01435{bottom:551.040000pt;}
.y15_c01435{bottom:585.600000pt;}
.y16_c01435{bottom:586.880000pt;}
.y12_c01435{bottom:615.680000pt;}
.y13_c01435{bottom:616.320000pt;}
.y11_c01435{bottom:616.960000pt;}
.y14_c01435{bottom:618.240000pt;}
.y48_c01435{bottom:656.000000pt;}
.y49_c01435{bottom:656.640000pt;}
.y47_c01435{bottom:691.840000pt;}
.y46_c01435{bottom:692.480000pt;}
.y45_c01435{bottom:731.520000pt;}
.y44_c01435{bottom:732.160000pt;}
.y43_c01435{bottom:733.440000pt;}
.y41_c01435{bottom:768.000000pt;}
.y42_c01435{bottom:769.280000pt;}
.yf_c01435{bottom:806.400000pt;}
.yd_c01435{bottom:807.040000pt;}
.ye_c01435{bottom:807.680000pt;}
.y10_c01435{bottom:810.240000pt;}
.ya_c01435{bottom:835.840000pt;}
.yb_c01435{bottom:836.480000pt;}
.y9_c01435{bottom:837.120000pt;}
.yc_c01435{bottom:838.400000pt;}
.y6_c01435{bottom:873.600000pt;}
.y7_c01435{bottom:874.880000pt;}
.y5_c01435{bottom:876.160000pt;}
.y8_c01435{bottom:876.800000pt;}
.y2_c01435{bottom:912.000000pt;}
.y3_c01435{bottom:913.280000pt;}
.y40_c01435{bottom:913.920000pt;}
.y1_c01435{bottom:914.560000pt;}
.y4_c01435{bottom:915.840000pt;}
.y3f_c01435{bottom:964.480000pt;}
.hd_c01435{height:11.518750pt;}
.he_c01435{height:25.341250pt;}
.h12_c01435{height:27.645000pt;}
.hf_c01435{height:32.252500pt;}
.hc_c01435{height:34.556250pt;}
.h11_c01435{height:39.163750pt;}
.h9_c01435{height:41.467500pt;}
.h5_c01435{height:43.771250pt;}
.h6_c01435{height:46.075000pt;}
.h2_c01435{height:48.378750pt;}
.ha_c01435{height:50.682500pt;}
.h7_c01435{height:52.986250pt;}
.h8_c01435{height:55.290000pt;}
.h4_c01435{height:57.593750pt;}
.h10_c01435{height:59.897500pt;}
.h3_c01435{height:62.201250pt;}
.hb_c01435{height:64.505000pt;}
.h13_c01435{height:179.692500pt;}
.h0_c01435{height:1025.280000pt;}
.h1_c01435{height:1025.333333pt;}
.w0_c01435{width:689.920000pt;}
.w1_c01435{width:690.000000pt;}
.x0_c01435{left:0.000000pt;}
.x1_c01435{left:44.160000pt;}
.x19_c01435{left:45.440000pt;}
.x15_c01435{left:72.960000pt;}
.x10_c01435{left:81.280000pt;}
.x2_c01435{left:99.840000pt;}
.x7_c01435{left:101.120000pt;}
.x1a_c01435{left:122.240000pt;}
.x11_c01435{left:130.560000pt;}
.x12_c01435{left:158.080000pt;}
.x1b_c01435{left:167.680000pt;}
.x20_c01435{left:168.960000pt;}
.x8_c01435{left:176.640000pt;}
.x3_c01435{left:178.560000pt;}
.x13_c01435{left:186.880000pt;}
.xe_c01435{left:188.160000pt;}
.xd_c01435{left:216.320000pt;}
.x17_c01435{left:217.600000pt;}
.xf_c01435{left:226.560000pt;}
.x9_c01435{left:235.520000pt;}
.x16_c01435{left:256.640000pt;}
.x14_c01435{left:273.920000pt;}
.xa_c01435{left:283.520000pt;}
.x18_c01435{left:293.760000pt;}
.x6_c01435{left:311.040000pt;}
.x1c_c01435{left:322.560000pt;}
.x1d_c01435{left:330.880000pt;}
.x1e_c01435{left:341.760000pt;}
.x4_c01435{left:350.080000pt;}
.xb_c01435{left:368.640000pt;}
.x1f_c01435{left:369.920000pt;}
.x5_c01435{left:399.360000pt;}
.xc_c01435{left:417.280000pt;}
.x27_c01435{left:504.960000pt;}
.x30_c01435{left:513.280000pt;}
.x22_c01435{left:514.560000pt;}
.x28_c01435{left:532.480000pt;}
.x2e_c01435{left:542.080000pt;}
.x2a_c01435{left:561.280000pt;}
.x23_c01435{left:562.560000pt;}
.x21_c01435{left:575.360000pt;}
.x2b_c01435{left:590.080000pt;}
.x24_c01435{left:591.360000pt;}
.x31_c01435{left:599.680000pt;}
.x29_c01435{left:620.160000pt;}
.x2c_c01435{left:628.480000pt;}
.x25_c01435{left:629.760000pt;}
.x2d_c01435{left:646.400000pt;}
.x26_c01435{left:647.680000pt;}
.x2f_c01435{left:678.400000pt;}
}





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

.ir_c01436:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01436{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01436;src:url('chunks/assets/font_16868965ea59d29d34526653.woff2')format("woff");}.ff1_c01436{font-family:ff1_c01436;line-height:1.109863;font-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_c01436{transform:matrix(0.173325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173325,0.000000,0.000000,0.250000,0,0);}
.m21_c01436{transform:matrix(0.222300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222300,0.000000,0.000000,0.250000,0,0);}
.m32_c01436{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);}
.m1f_c01436{transform:matrix(0.228450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228450,0.000000,0.000000,0.250000,0,0);}
.m37_c01436{transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);}
.m29_c01436{transform:matrix(0.240775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240775,0.000000,0.000000,0.250000,0,0);}
.m2c_c01436{transform:matrix(0.240975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240975,0.000000,0.000000,0.250000,0,0);}
.m27_c01436{transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);}
.m43_c01436{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m41_c01436{transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);}
.m36_c01436{transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);}
.m34_c01436{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);}
.m44_c01436{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m17_c01436{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m8_c01436{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);}
.m48_c01436{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);}
.m28_c01436{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);}
.m2b_c01436{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);}
.m3a_c01436{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);}
.m40_c01436{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);}
.m3b_c01436{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01436{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m35_c01436{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1_c01436{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_c01436{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.md_c01436{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m46_c01436{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m45_c01436{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m31_c01436{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m20_c01436{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m30_c01436{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m18_c01436{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m5_c01436{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m19_c01436{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m33_c01436{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);}
.m39_c01436{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01436{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);}
.m24_c01436{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);}
.m3f_c01436{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.mb_c01436{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.me_c01436{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);}
.m3c_c01436{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m10_c01436{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);}
.m38_c01436{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);}
.m3d_c01436{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m13_c01436{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m11_c01436{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m2_c01436{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01436{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m12_c01436{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);}
.m16_c01436{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01436{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);}
.m0_c01436{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.mc_c01436{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);}
.m9_c01436{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);}
.mf_c01436{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m15_c01436{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);}
.m23_c01436{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m47_c01436{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m3_c01436{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01436{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01436{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.ma_c01436{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01436{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m7_c01436{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);}
.m2f_c01436{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);}
.m6_c01436{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01436{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m22_c01436{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m42_c01436{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01436{transform:matrix(0.842500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.842500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.842500,0.000000,0.000000,0.250000,0,0);}
.m26_c01436{transform:matrix(1.607500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.607500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.607500,0.000000,0.000000,0.250000,0,0);}
.m4_c01436{transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);}
.v0_c01436{vertical-align:0.000000px;}
.v1_c01436{vertical-align:8.640000px;}
.ls0_c01436{letter-spacing:0.000000px;}
.sc__c01436{text-shadow:none;}
.sc0_c01436{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01436{-webkit-text-stroke:0px transparent;}
.sc0_c01436{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01436{word-spacing:0.000000px;}
.ws2_c01436{word-spacing:3.334560px;}
.ws0_c01436{word-spacing:5.249163px;}
.ws1_c01436{word-spacing:47.737509px;}
.fc0_c01436{color:transparent;}
.fs4_c01436{font-size:17.280000px;}
.fsd_c01436{font-size:20.160000px;}
.fs3_c01436{font-size:25.920000px;}
.fsc_c01436{font-size:28.800000px;}
.fsf_c01436{font-size:40.320000px;}
.fsa_c01436{font-size:43.200000px;}
.fse_c01436{font-size:48.960000px;}
.fs2_c01436{font-size:51.840000px;}
.fs8_c01436{font-size:54.720000px;}
.fs6_c01436{font-size:57.600000px;}
.fs0_c01436{font-size:60.480000px;}
.fs5_c01436{font-size:63.360000px;}
.fs11_c01436{font-size:66.240000px;}
.fs9_c01436{font-size:69.120000px;}
.fsb_c01436{font-size:72.000000px;}
.fs7_c01436{font-size:74.880000px;}
.fs1_c01436{font-size:77.760000px;}
.fs10_c01436{font-size:83.520000px;}
.y0_c01436{bottom:0.000000px;}
.y48_c01436{bottom:41.760000px;}
.y47_c01436{bottom:42.480000px;}
.y46_c01436{bottom:43.920000px;}
.y68_c01436{bottom:46.800000px;}
.y67_c01436{bottom:48.240000px;}
.y69_c01436{bottom:48.960000px;}
.y45_c01436{bottom:84.240000px;}
.y44_c01436{bottom:86.400000px;}
.y43_c01436{bottom:87.120000px;}
.y65_c01436{bottom:88.560000px;}
.y66_c01436{bottom:91.440000px;}
.y42_c01436{bottom:131.760000px;}
.y41_c01436{bottom:182.880000px;}
.y40_c01436{bottom:185.760000px;}
.y63_c01436{bottom:186.480000px;}
.y64_c01436{bottom:187.920000px;}
.y3e_c01436{bottom:226.080000px;}
.y3f_c01436{bottom:227.520000px;}
.y3d_c01436{bottom:228.960000px;}
.y61_c01436{bottom:230.400000px;}
.y62_c01436{bottom:232.560000px;}
.y3b_c01436{bottom:269.280000px;}
.y3c_c01436{bottom:270.000000px;}
.y3a_c01436{bottom:272.880000px;}
.y60_c01436{bottom:274.320000px;}
.y5f_c01436{bottom:275.040000px;}
.y38_c01436{bottom:313.200000px;}
.y39_c01436{bottom:314.640000px;}
.y37_c01436{bottom:316.080000px;}
.y5e_c01436{bottom:319.680000px;}
.y36_c01436{bottom:360.720000px;}
.y31_c01436{bottom:410.400000px;}
.y34_c01436{bottom:411.120000px;}
.y35_c01436{bottom:411.840000px;}
.y30_c01436{bottom:413.280000px;}
.y33_c01436{bottom:414.720000px;}
.y32_c01436{bottom:415.440000px;}
.y2e_c01436{bottom:453.600000px;}
.y2f_c01436{bottom:455.040000px;}
.y2d_c01436{bottom:456.480000px;}
.y5c_c01436{bottom:457.920000px;}
.y5d_c01436{bottom:458.640000px;}
.y2b_c01436{bottom:497.520000px;}
.y2c_c01436{bottom:498.240000px;}
.y2a_c01436{bottom:499.680000px;}
.y5b_c01436{bottom:500.400000px;}
.y28_c01436{bottom:540.000000px;}
.y29_c01436{bottom:541.440000px;}
.y5a_c01436{bottom:542.160000px;}
.y59_c01436{bottom:543.600000px;}
.y26_c01436{bottom:544.320000px;}
.y25_c01436{bottom:545.040000px;}
.y27_c01436{bottom:547.200000px;}
.y21_c01436{bottom:583.920000px;}
.y24_c01436{bottom:584.640000px;}
.y58_c01436{bottom:586.080000px;}
.y20_c01436{bottom:586.800000px;}
.y23_c01436{bottom:587.520000px;}
.y22_c01436{bottom:588.240000px;}
.y1e_c01436{bottom:627.120000px;}
.y1f_c01436{bottom:627.840000px;}
.y56_c01436{bottom:628.560000px;}
.y57_c01436{bottom:629.280000px;}
.y55_c01436{bottom:630.000000px;}
.y1d_c01436{bottom:630.720000px;}
.y1b_c01436{bottom:671.760000px;}
.y54_c01436{bottom:672.480000px;}
.y19_c01436{bottom:673.200000px;}
.y1c_c01436{bottom:673.920000px;}
.y1a_c01436{bottom:674.640000px;}
.y17_c01436{bottom:714.240000px;}
.y16_c01436{bottom:715.680000px;}
.y53_c01436{bottom:716.400000px;}
.y15_c01436{bottom:717.120000px;}
.y52_c01436{bottom:717.840000px;}
.y18_c01436{bottom:718.560000px;}
.y14_c01436{bottom:758.160000px;}
.y51_c01436{bottom:758.880000px;}
.y50_c01436{bottom:759.600000px;}
.y13_c01436{bottom:760.320000px;}
.y12_c01436{bottom:801.360000px;}
.y4f_c01436{bottom:802.800000px;}
.y11_c01436{bottom:804.240000px;}
.yf_c01436{bottom:848.160000px;}
.y10_c01436{bottom:848.880000px;}
.ye_c01436{bottom:889.920000px;}
.yd_c01436{bottom:891.360000px;}
.yc_c01436{bottom:892.080000px;}
.yb_c01436{bottom:941.760000px;}
.y4d_c01436{bottom:943.200000px;}
.y4e_c01436{bottom:943.920000px;}
.ya_c01436{bottom:944.640000px;}
.y9_c01436{bottom:945.360000px;}
.y8_c01436{bottom:984.240000px;}
.y4c_c01436{bottom:984.960000px;}
.y5_c01436{bottom:986.400000px;}
.y7_c01436{bottom:987.840000px;}
.y6_c01436{bottom:988.560000px;}
.y3_c01436{bottom:989.280000px;}
.y4_c01436{bottom:992.160000px;}
.y2_c01436{bottom:1027.440000px;}
.y4a_c01436{bottom:1028.160000px;}
.y4b_c01436{bottom:1028.880000px;}
.y1_c01436{bottom:1030.320000px;}
.y49_c01436{bottom:1085.760000px;}
.h6_c01436{height:15.550313px;}
.hf_c01436{height:18.142031px;}
.h5_c01436{height:23.325469px;}
.he_c01436{height:25.917187px;}
.h11_c01436{height:36.284062px;}
.hc_c01436{height:38.875781px;}
.h10_c01436{height:44.059219px;}
.h4_c01436{height:46.650937px;}
.ha_c01436{height:49.242656px;}
.h8_c01436{height:51.834375px;}
.h2_c01436{height:54.426094px;}
.h7_c01436{height:57.017812px;}
.h13_c01436{height:59.609531px;}
.hb_c01436{height:62.201250px;}
.hd_c01436{height:64.792969px;}
.h9_c01436{height:67.384687px;}
.h3_c01436{height:69.976406px;}
.h12_c01436{height:75.159844px;}
.h0_c01436{height:1154.880000px;}
.h1_c01436{height:1155.000000px;}
.w0_c01436{width:777.600000px;}
.w1_c01436{width:777.750000px;}
.x0_c01436{left:0.000000px;}
.x1_c01436{left:52.560000px;}
.x12_c01436{left:54.000000px;}
.x3_c01436{left:85.680000px;}
.x4_c01436{left:95.040000px;}
.x25_c01436{left:105.840000px;}
.xc_c01436{left:107.280000px;}
.x2_c01436{left:116.640000px;}
.x5_c01436{left:118.800000px;}
.x1a_c01436{left:149.760000px;}
.x23_c01436{left:160.560000px;}
.x11_c01436{left:162.000000px;}
.x26_c01436{left:170.640000px;}
.xd_c01436{left:182.880000px;}
.x9_c01436{left:203.040000px;}
.x6_c01436{left:204.480000px;}
.x17_c01436{left:215.280000px;}
.xe_c01436{left:224.640000px;}
.x1b_c01436{left:246.240000px;}
.xa_c01436{left:248.400000px;}
.x7_c01436{left:258.480000px;}
.x13_c01436{left:269.280000px;}
.xb_c01436{left:290.160000px;}
.xf_c01436{left:291.600000px;}
.x18_c01436{left:301.680000px;}
.x19_c01436{left:311.760000px;}
.x8_c01436{left:313.200000px;}
.x10_c01436{left:322.560000px;}
.x24_c01436{left:334.080000px;}
.x1c_c01436{left:345.600000px;}
.x14_c01436{left:408.960000px;}
.x1d_c01436{left:430.560000px;}
.x15_c01436{left:462.960000px;}
.x16_c01436{left:505.440000px;}
.x1e_c01436{left:537.840000px;}
.x30_c01436{left:571.680000px;}
.x2d_c01436{left:581.040000px;}
.x2c_c01436{left:582.480000px;}
.x1f_c01436{left:591.840000px;}
.x32_c01436{left:601.200000px;}
.x33_c01436{left:603.360000px;}
.x2b_c01436{left:604.800000px;}
.x31_c01436{left:613.440000px;}
.x20_c01436{left:635.760000px;}
.x28_c01436{left:637.920000px;}
.x27_c01436{left:658.800000px;}
.x21_c01436{left:668.160000px;}
.x29_c01436{left:670.320000px;}
.x2e_c01436{left:677.520000px;}
.x2f_c01436{left:710.640000px;}
.x22_c01436{left:712.080000px;}
.x2a_c01436{left:734.400000px;}
@media print{
.v0_c01436{vertical-align:0.000000pt;}
.v1_c01436{vertical-align:7.680000pt;}
.ls0_c01436{letter-spacing:0.000000pt;}
.ws3_c01436{word-spacing:0.000000pt;}
.ws2_c01436{word-spacing:2.964053pt;}
.ws0_c01436{word-spacing:4.665923pt;}
.ws1_c01436{word-spacing:42.433341pt;}
.fs4_c01436{font-size:15.360000pt;}
.fsd_c01436{font-size:17.920000pt;}
.fs3_c01436{font-size:23.040000pt;}
.fsc_c01436{font-size:25.600000pt;}
.fsf_c01436{font-size:35.840000pt;}
.fsa_c01436{font-size:38.400000pt;}
.fse_c01436{font-size:43.520000pt;}
.fs2_c01436{font-size:46.080000pt;}
.fs8_c01436{font-size:48.640000pt;}
.fs6_c01436{font-size:51.200000pt;}
.fs0_c01436{font-size:53.760000pt;}
.fs5_c01436{font-size:56.320000pt;}
.fs11_c01436{font-size:58.880000pt;}
.fs9_c01436{font-size:61.440000pt;}
.fsb_c01436{font-size:64.000000pt;}
.fs7_c01436{font-size:66.560000pt;}
.fs1_c01436{font-size:69.120000pt;}
.fs10_c01436{font-size:74.240000pt;}
.y0_c01436{bottom:0.000000pt;}
.y48_c01436{bottom:37.120000pt;}
.y47_c01436{bottom:37.760000pt;}
.y46_c01436{bottom:39.040000pt;}
.y68_c01436{bottom:41.600000pt;}
.y67_c01436{bottom:42.880000pt;}
.y69_c01436{bottom:43.520000pt;}
.y45_c01436{bottom:74.880000pt;}
.y44_c01436{bottom:76.800000pt;}
.y43_c01436{bottom:77.440000pt;}
.y65_c01436{bottom:78.720000pt;}
.y66_c01436{bottom:81.280000pt;}
.y42_c01436{bottom:117.120000pt;}
.y41_c01436{bottom:162.560000pt;}
.y40_c01436{bottom:165.120000pt;}
.y63_c01436{bottom:165.760000pt;}
.y64_c01436{bottom:167.040000pt;}
.y3e_c01436{bottom:200.960000pt;}
.y3f_c01436{bottom:202.240000pt;}
.y3d_c01436{bottom:203.520000pt;}
.y61_c01436{bottom:204.800000pt;}
.y62_c01436{bottom:206.720000pt;}
.y3b_c01436{bottom:239.360000pt;}
.y3c_c01436{bottom:240.000000pt;}
.y3a_c01436{bottom:242.560000pt;}
.y60_c01436{bottom:243.840000pt;}
.y5f_c01436{bottom:244.480000pt;}
.y38_c01436{bottom:278.400000pt;}
.y39_c01436{bottom:279.680000pt;}
.y37_c01436{bottom:280.960000pt;}
.y5e_c01436{bottom:284.160000pt;}
.y36_c01436{bottom:320.640000pt;}
.y31_c01436{bottom:364.800000pt;}
.y34_c01436{bottom:365.440000pt;}
.y35_c01436{bottom:366.080000pt;}
.y30_c01436{bottom:367.360000pt;}
.y33_c01436{bottom:368.640000pt;}
.y32_c01436{bottom:369.280000pt;}
.y2e_c01436{bottom:403.200000pt;}
.y2f_c01436{bottom:404.480000pt;}
.y2d_c01436{bottom:405.760000pt;}
.y5c_c01436{bottom:407.040000pt;}
.y5d_c01436{bottom:407.680000pt;}
.y2b_c01436{bottom:442.240000pt;}
.y2c_c01436{bottom:442.880000pt;}
.y2a_c01436{bottom:444.160000pt;}
.y5b_c01436{bottom:444.800000pt;}
.y28_c01436{bottom:480.000000pt;}
.y29_c01436{bottom:481.280000pt;}
.y5a_c01436{bottom:481.920000pt;}
.y59_c01436{bottom:483.200000pt;}
.y26_c01436{bottom:483.840000pt;}
.y25_c01436{bottom:484.480000pt;}
.y27_c01436{bottom:486.400000pt;}
.y21_c01436{bottom:519.040000pt;}
.y24_c01436{bottom:519.680000pt;}
.y58_c01436{bottom:520.960000pt;}
.y20_c01436{bottom:521.600000pt;}
.y23_c01436{bottom:522.240000pt;}
.y22_c01436{bottom:522.880000pt;}
.y1e_c01436{bottom:557.440000pt;}
.y1f_c01436{bottom:558.080000pt;}
.y56_c01436{bottom:558.720000pt;}
.y57_c01436{bottom:559.360000pt;}
.y55_c01436{bottom:560.000000pt;}
.y1d_c01436{bottom:560.640000pt;}
.y1b_c01436{bottom:597.120000pt;}
.y54_c01436{bottom:597.760000pt;}
.y19_c01436{bottom:598.400000pt;}
.y1c_c01436{bottom:599.040000pt;}
.y1a_c01436{bottom:599.680000pt;}
.y17_c01436{bottom:634.880000pt;}
.y16_c01436{bottom:636.160000pt;}
.y53_c01436{bottom:636.800000pt;}
.y15_c01436{bottom:637.440000pt;}
.y52_c01436{bottom:638.080000pt;}
.y18_c01436{bottom:638.720000pt;}
.y14_c01436{bottom:673.920000pt;}
.y51_c01436{bottom:674.560000pt;}
.y50_c01436{bottom:675.200000pt;}
.y13_c01436{bottom:675.840000pt;}
.y12_c01436{bottom:712.320000pt;}
.y4f_c01436{bottom:713.600000pt;}
.y11_c01436{bottom:714.880000pt;}
.yf_c01436{bottom:753.920000pt;}
.y10_c01436{bottom:754.560000pt;}
.ye_c01436{bottom:791.040000pt;}
.yd_c01436{bottom:792.320000pt;}
.yc_c01436{bottom:792.960000pt;}
.yb_c01436{bottom:837.120000pt;}
.y4d_c01436{bottom:838.400000pt;}
.y4e_c01436{bottom:839.040000pt;}
.ya_c01436{bottom:839.680000pt;}
.y9_c01436{bottom:840.320000pt;}
.y8_c01436{bottom:874.880000pt;}
.y4c_c01436{bottom:875.520000pt;}
.y5_c01436{bottom:876.800000pt;}
.y7_c01436{bottom:878.080000pt;}
.y6_c01436{bottom:878.720000pt;}
.y3_c01436{bottom:879.360000pt;}
.y4_c01436{bottom:881.920000pt;}
.y2_c01436{bottom:913.280000pt;}
.y4a_c01436{bottom:913.920000pt;}
.y4b_c01436{bottom:914.560000pt;}
.y1_c01436{bottom:915.840000pt;}
.y49_c01436{bottom:965.120000pt;}
.h6_c01436{height:13.822500pt;}
.hf_c01436{height:16.126250pt;}
.h5_c01436{height:20.733750pt;}
.he_c01436{height:23.037500pt;}
.h11_c01436{height:32.252500pt;}
.hc_c01436{height:34.556250pt;}
.h10_c01436{height:39.163750pt;}
.h4_c01436{height:41.467500pt;}
.ha_c01436{height:43.771250pt;}
.h8_c01436{height:46.075000pt;}
.h2_c01436{height:48.378750pt;}
.h7_c01436{height:50.682500pt;}
.h13_c01436{height:52.986250pt;}
.hb_c01436{height:55.290000pt;}
.hd_c01436{height:57.593750pt;}
.h9_c01436{height:59.897500pt;}
.h3_c01436{height:62.201250pt;}
.h12_c01436{height:66.808750pt;}
.h0_c01436{height:1026.560000pt;}
.h1_c01436{height:1026.666667pt;}
.w0_c01436{width:691.200000pt;}
.w1_c01436{width:691.333333pt;}
.x0_c01436{left:0.000000pt;}
.x1_c01436{left:46.720000pt;}
.x12_c01436{left:48.000000pt;}
.x3_c01436{left:76.160000pt;}
.x4_c01436{left:84.480000pt;}
.x25_c01436{left:94.080000pt;}
.xc_c01436{left:95.360000pt;}
.x2_c01436{left:103.680000pt;}
.x5_c01436{left:105.600000pt;}
.x1a_c01436{left:133.120000pt;}
.x23_c01436{left:142.720000pt;}
.x11_c01436{left:144.000000pt;}
.x26_c01436{left:151.680000pt;}
.xd_c01436{left:162.560000pt;}
.x9_c01436{left:180.480000pt;}
.x6_c01436{left:181.760000pt;}
.x17_c01436{left:191.360000pt;}
.xe_c01436{left:199.680000pt;}
.x1b_c01436{left:218.880000pt;}
.xa_c01436{left:220.800000pt;}
.x7_c01436{left:229.760000pt;}
.x13_c01436{left:239.360000pt;}
.xb_c01436{left:257.920000pt;}
.xf_c01436{left:259.200000pt;}
.x18_c01436{left:268.160000pt;}
.x19_c01436{left:277.120000pt;}
.x8_c01436{left:278.400000pt;}
.x10_c01436{left:286.720000pt;}
.x24_c01436{left:296.960000pt;}
.x1c_c01436{left:307.200000pt;}
.x14_c01436{left:363.520000pt;}
.x1d_c01436{left:382.720000pt;}
.x15_c01436{left:411.520000pt;}
.x16_c01436{left:449.280000pt;}
.x1e_c01436{left:478.080000pt;}
.x30_c01436{left:508.160000pt;}
.x2d_c01436{left:516.480000pt;}
.x2c_c01436{left:517.760000pt;}
.x1f_c01436{left:526.080000pt;}
.x32_c01436{left:534.400000pt;}
.x33_c01436{left:536.320000pt;}
.x2b_c01436{left:537.600000pt;}
.x31_c01436{left:545.280000pt;}
.x20_c01436{left:565.120000pt;}
.x28_c01436{left:567.040000pt;}
.x27_c01436{left:585.600000pt;}
.x21_c01436{left:593.920000pt;}
.x29_c01436{left:595.840000pt;}
.x2e_c01436{left:602.240000pt;}
.x2f_c01436{left:631.680000pt;}
.x22_c01436{left:632.960000pt;}
.x2a_c01436{left:652.800000pt;}
}





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

.ir_c01437:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01437{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01437;src:url('chunks/assets/font_da70e3f25bf165e6de215529.woff2')format("woff");}.ff1_c01437{font-family:ff1_c01437;line-height:1.109863;font-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_c01437{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m17_c01437{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);}
.m16_c01437{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m42_c01437{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m1_c01437{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_c01437{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01437{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m3_c01437{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);}
.m3f_c01437{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.me_c01437{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m51_c01437{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m15_c01437{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2_c01437{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);}
.m4e_c01437{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mb_c01437{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01437{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m40_c01437{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01437{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01437{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01437{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m44_c01437{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m41_c01437{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m31_c01437{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m19_c01437{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m13_c01437{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m11_c01437{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m50_c01437{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m6_c01437{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.ma_c01437{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mf_c01437{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m4_c01437{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);}
.m52_c01437{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m20_c01437{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);}
.m4f_c01437{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01437{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);}
.m5_c01437{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01437{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);}
.m12_c01437{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m23_c01437{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.mc_c01437{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);}
.m49_c01437{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);}
.m33_c01437{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);}
.m0_c01437{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01437{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m30_c01437{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);}
.m10_c01437{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);}
.m14_c01437{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);}
.m26_c01437{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m36_c01437{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01437{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);}
.m34_c01437{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01437{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m39_c01437{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);}
.m37_c01437{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);}
.m43_c01437{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01437{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m32_c01437{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m21_c01437{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01437{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m29_c01437{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m24_c01437{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);}
.m2b_c01437{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m46_c01437{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01437{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01437{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m47_c01437{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m48_c01437{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);}
.m25_c01437{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);}
.m4a_c01437{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m38_c01437{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);}
.m22_c01437{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m18_c01437{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m8_c01437{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m7_c01437{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);}
.m9_c01437{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);}
.m4c_c01437{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m35_c01437{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01437{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m28_c01437{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);}
.m27_c01437{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01437{transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01437{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.m45_c01437{transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);}
.v1_c01437{vertical-align:-8.640000px;}
.v0_c01437{vertical-align:0.000000px;}
.v2_c01437{vertical-align:2.880000px;}
.ls2_c01437{letter-spacing:0.000000px;}
.ls0_c01437{letter-spacing:85.783680px;}
.ls1_c01437{letter-spacing:167.172720px;}
.sc__c01437{text-shadow:none;}
.sc0_c01437{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01437{-webkit-text-stroke:0px transparent;}
.sc0_c01437{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01437{word-spacing:0.000000px;}
.ws0_c01437{word-spacing:41.240163px;}
.ws1_c01437{word-spacing:67.834560px;}
.fc0_c01437{color:transparent;}
.fsf_c01437{font-size:17.280000px;}
.fsc_c01437{font-size:34.560000px;}
.fs7_c01437{font-size:37.440000px;}
.fse_c01437{font-size:43.200000px;}
.fs9_c01437{font-size:46.080000px;}
.fs3_c01437{font-size:48.960000px;}
.fs6_c01437{font-size:51.840000px;}
.fs4_c01437{font-size:54.720000px;}
.fs2_c01437{font-size:57.600000px;}
.fs1_c01437{font-size:60.480000px;}
.fsb_c01437{font-size:63.360000px;}
.fsd_c01437{font-size:66.240000px;}
.fs5_c01437{font-size:69.120000px;}
.fs0_c01437{font-size:72.000000px;}
.fs8_c01437{font-size:74.880000px;}
.fsa_c01437{font-size:77.760000px;}
.y0_c01437{bottom:0.000000px;}
.y65_c01437{bottom:60.480000px;}
.y66_c01437{bottom:61.200000px;}
.y67_c01437{bottom:62.640000px;}
.y64_c01437{bottom:63.360000px;}
.y60_c01437{bottom:82.080000px;}
.y5f_c01437{bottom:82.800000px;}
.y62_c01437{bottom:84.240000px;}
.y61_c01437{bottom:84.960000px;}
.y63_c01437{bottom:86.400000px;}
.y5c_c01437{bottom:105.840000px;}
.y5d_c01437{bottom:106.560000px;}
.y5e_c01437{bottom:107.280000px;}
.y5b_c01437{bottom:157.680000px;}
.y5a_c01437{bottom:159.840000px;}
.y59_c01437{bottom:160.560000px;}
.y58_c01437{bottom:161.280000px;}
.y56_c01437{bottom:200.880000px;}
.y55_c01437{bottom:203.040000px;}
.y54_c01437{bottom:203.760000px;}
.y57_c01437{bottom:204.480000px;}
.y53_c01437{bottom:254.880000px;}
.y52_c01437{bottom:257.040000px;}
.y51_c01437{bottom:266.400000px;}
.y50_c01437{bottom:268.560000px;}
.y4d_c01437{bottom:290.160000px;}
.y4f_c01437{bottom:290.880000px;}
.y4e_c01437{bottom:293.040000px;}
.y4c_c01437{bottom:298.800000px;}
.y4b_c01437{bottom:300.240000px;}
.y4a_c01437{bottom:300.960000px;}
.y49_c01437{bottom:320.400000px;}
.y45_c01437{bottom:321.840000px;}
.y44_c01437{bottom:323.280000px;}
.y43_c01437{bottom:330.480000px;}
.y46_c01437{bottom:331.200000px;}
.y47_c01437{bottom:331.920000px;}
.y48_c01437{bottom:332.640000px;}
.y42_c01437{bottom:333.360000px;}
.y3f_c01437{bottom:362.160000px;}
.y3e_c01437{bottom:362.880000px;}
.y40_c01437{bottom:363.600000px;}
.y41_c01437{bottom:365.040000px;}
.y3d_c01437{bottom:365.760000px;}
.y3b_c01437{bottom:396.720000px;}
.y3a_c01437{bottom:397.440000px;}
.y39_c01437{bottom:398.160000px;}
.y3c_c01437{bottom:400.320000px;}
.y38_c01437{bottom:440.640000px;}
.y36_c01437{bottom:480.960000px;}
.y37_c01437{bottom:481.680000px;}
.y35_c01437{bottom:483.120000px;}
.y34_c01437{bottom:483.840000px;}
.y32_c01437{bottom:534.960000px;}
.y33_c01437{bottom:537.120000px;}
.y30_c01437{bottom:537.840000px;}
.y31_c01437{bottom:538.560000px;}
.y2d_c01437{bottom:576.720000px;}
.y2e_c01437{bottom:577.440000px;}
.y29_c01437{bottom:578.160000px;}
.y2f_c01437{bottom:578.880000px;}
.y2b_c01437{bottom:580.320000px;}
.y2c_c01437{bottom:581.040000px;}
.y2a_c01437{bottom:581.760000px;}
.y27_c01437{bottom:622.080000px;}
.y26_c01437{bottom:623.520000px;}
.y28_c01437{bottom:624.240000px;}
.y23_c01437{bottom:684.720000px;}
.y24_c01437{bottom:685.440000px;}
.y22_c01437{bottom:686.880000px;}
.y25_c01437{bottom:688.320000px;}
.y20_c01437{bottom:727.200000px;}
.y1f_c01437{bottom:728.640000px;}
.y1e_c01437{bottom:759.600000px;}
.y1b_c01437{bottom:760.320000px;}
.y1d_c01437{bottom:761.040000px;}
.y1a_c01437{bottom:761.760000px;}
.y21_c01437{bottom:762.480000px;}
.y1c_c01437{bottom:763.920000px;}
.y14_c01437{bottom:802.800000px;}
.y17_c01437{bottom:803.520000px;}
.y18_c01437{bottom:804.240000px;}
.y13_c01437{bottom:804.960000px;}
.y19_c01437{bottom:805.680000px;}
.y12_c01437{bottom:844.560000px;}
.y16_c01437{bottom:845.280000px;}
.y11_c01437{bottom:846.000000px;}
.y10_c01437{bottom:847.440000px;}
.y15_c01437{bottom:848.160000px;}
.yf_c01437{bottom:893.520000px;}
.yd_c01437{bottom:941.760000px;}
.yc_c01437{bottom:942.480000px;}
.yb_c01437{bottom:943.920000px;}
.ye_c01437{bottom:944.640000px;}
.y9_c01437{bottom:985.680000px;}
.ya_c01437{bottom:986.400000px;}
.y6_c01437{bottom:987.120000px;}
.y7_c01437{bottom:987.840000px;}
.y8_c01437{bottom:989.280000px;}
.y4_c01437{bottom:1028.880000px;}
.y3_c01437{bottom:1029.600000px;}
.y2_c01437{bottom:1030.320000px;}
.y5_c01437{bottom:1031.760000px;}
.y1_c01437{bottom:1085.040000px;}
.h11_c01437{height:15.550313px;}
.he_c01437{height:31.100625px;}
.h9_c01437{height:33.692344px;}
.h10_c01437{height:38.875781px;}
.hb_c01437{height:41.467500px;}
.h5_c01437{height:44.059219px;}
.h12_c01437{height:44.347500px;}
.h8_c01437{height:46.650937px;}
.h6_c01437{height:49.242656px;}
.h4_c01437{height:51.834375px;}
.h3_c01437{height:54.426094px;}
.hd_c01437{height:57.017812px;}
.h13_c01437{height:57.306094px;}
.hf_c01437{height:59.609531px;}
.h7_c01437{height:62.201250px;}
.h2_c01437{height:64.792969px;}
.ha_c01437{height:67.384687px;}
.hc_c01437{height:69.976406px;}
.h0_c01437{height:1154.880000px;}
.h1_c01437{height:1155.000000px;}
.w0_c01437{width:777.600000px;}
.w1_c01437{width:777.750000px;}
.x0_c01437{left:0.000000px;}
.x2c_c01437{left:48.960000px;}
.x2_c01437{left:50.400450px;}
.x37_c01437{left:69.840000px;}
.x3c_c01437{left:79.200000px;}
.x4d_c01437{left:90.720000px;}
.x10_c01437{left:102.240000px;}
.x14_c01437{left:112.320000px;}
.x3_c01437{left:113.760000px;}
.x23_c01437{left:122.400000px;}
.x52_c01437{left:123.840000px;}
.x2d_c01437{left:133.920000px;}
.x4f_c01437{left:145.440000px;}
.x1b_c01437{left:155.520000px;}
.x11_c01437{left:156.960000px;}
.x42_c01437{left:166.320000px;}
.x43_c01437{left:186.480000px;}
.x2e_c01437{left:188.640000px;}
.x24_c01437{left:198.720000px;}
.x9_c01437{left:200.880000px;}
.x38_c01437{left:210.240000px;}
.xd_c01437{left:211.680000px;}
.x4e_c01437{left:220.320000px;}
.x18_c01437{left:221.760000px;}
.x12_c01437{left:233.280000px;}
.x1c_c01437{left:241.920000px;}
.x4_c01437{left:244.080000px;}
.x3d_c01437{left:252.720000px;}
.xa_c01437{left:254.880000px;}
.x46_c01437{left:263.520000px;}
.x16_c01437{left:265.680000px;}
.x50_c01437{left:275.040000px;}
.x25_c01437{left:276.480000px;}
.x2f_c01437{left:285.120000px;}
.xb_c01437{left:308.880000px;}
.x1d_c01437{left:318.960000px;}
.x26_c01437{left:329.040000px;}
.x4b_c01437{left:339.120000px;}
.x51_c01437{left:340.560000px;}
.x33_c01437{left:349.920000px;}
.x1e_c01437{left:351.360000px;}
.x3e_c01437{left:360.720000px;}
.x13_c01437{left:362.880000px;}
.x27_c01437{left:383.040000px;}
.x1f_c01437{left:403.920000px;}
.x17_c01437{left:406.080000px;}
.x4c_c01437{left:414.720000px;}
.x30_c01437{left:416.160000px;}
.x48_c01437{left:425.520000px;}
.x31_c01437{left:457.920000px;}
.x53_c01437{left:459.360000px;}
.x20_c01437{left:468.720000px;}
.x49_c01437{left:479.520000px;}
.x28_c01437{left:490.320000px;}
.x39_c01437{left:501.120000px;}
.x29_c01437{left:513.360000px;}
.x4a_c01437{left:521.280000px;}
.x32_c01437{left:522.720000px;}
.x3f_c01437{left:533.520000px;}
.x2a_c01437{left:544.320000px;}
.x34_c01437{left:555.120000px;}
.x44_c01437{left:565.920000px;}
.x47_c01437{left:576.000000px;}
.x21_c01437{left:577.440000px;}
.x15_c01437{left:578.880000px;}
.x5_c01437{left:580.320000px;}
.x3a_c01437{left:587.520000px;}
.x35_c01437{left:597.600000px;}
.xe_c01437{left:600.480000px;}
.x40_c01437{left:607.680000px;}
.x22_c01437{left:618.480000px;}
.x2b_c01437{left:619.920000px;}
.x1a_c01437{left:631.440000px;}
.x6_c01437{left:632.880000px;}
.x41_c01437{left:641.520000px;}
.x3b_c01437{left:652.320000px;}
.x45_c01437{left:663.120000px;}
.x1_c01437{left:665.280000px;}
.x7_c01437{left:666.720000px;}
.x36_c01437{left:672.480000px;}
.xf_c01437{left:676.080000px;}
.xc_c01437{left:699.120000px;}
.x19_c01437{left:707.040000px;}
.x8_c01437{left:709.200000px;}
@media print{
.v1_c01437{vertical-align:-7.680000pt;}
.v0_c01437{vertical-align:0.000000pt;}
.v2_c01437{vertical-align:2.560000pt;}
.ls2_c01437{letter-spacing:0.000000pt;}
.ls0_c01437{letter-spacing:76.252160pt;}
.ls1_c01437{letter-spacing:148.597973pt;}
.ws2_c01437{word-spacing:0.000000pt;}
.ws0_c01437{word-spacing:36.657923pt;}
.ws1_c01437{word-spacing:60.297387pt;}
.fsf_c01437{font-size:15.360000pt;}
.fsc_c01437{font-size:30.720000pt;}
.fs7_c01437{font-size:33.280000pt;}
.fse_c01437{font-size:38.400000pt;}
.fs9_c01437{font-size:40.960000pt;}
.fs3_c01437{font-size:43.520000pt;}
.fs6_c01437{font-size:46.080000pt;}
.fs4_c01437{font-size:48.640000pt;}
.fs2_c01437{font-size:51.200000pt;}
.fs1_c01437{font-size:53.760000pt;}
.fsb_c01437{font-size:56.320000pt;}
.fsd_c01437{font-size:58.880000pt;}
.fs5_c01437{font-size:61.440000pt;}
.fs0_c01437{font-size:64.000000pt;}
.fs8_c01437{font-size:66.560000pt;}
.fsa_c01437{font-size:69.120000pt;}
.y0_c01437{bottom:0.000000pt;}
.y65_c01437{bottom:53.760000pt;}
.y66_c01437{bottom:54.400000pt;}
.y67_c01437{bottom:55.680000pt;}
.y64_c01437{bottom:56.320000pt;}
.y60_c01437{bottom:72.960000pt;}
.y5f_c01437{bottom:73.600000pt;}
.y62_c01437{bottom:74.880000pt;}
.y61_c01437{bottom:75.520000pt;}
.y63_c01437{bottom:76.800000pt;}
.y5c_c01437{bottom:94.080000pt;}
.y5d_c01437{bottom:94.720000pt;}
.y5e_c01437{bottom:95.360000pt;}
.y5b_c01437{bottom:140.160000pt;}
.y5a_c01437{bottom:142.080000pt;}
.y59_c01437{bottom:142.720000pt;}
.y58_c01437{bottom:143.360000pt;}
.y56_c01437{bottom:178.560000pt;}
.y55_c01437{bottom:180.480000pt;}
.y54_c01437{bottom:181.120000pt;}
.y57_c01437{bottom:181.760000pt;}
.y53_c01437{bottom:226.560000pt;}
.y52_c01437{bottom:228.480000pt;}
.y51_c01437{bottom:236.800000pt;}
.y50_c01437{bottom:238.720000pt;}
.y4d_c01437{bottom:257.920000pt;}
.y4f_c01437{bottom:258.560000pt;}
.y4e_c01437{bottom:260.480000pt;}
.y4c_c01437{bottom:265.600000pt;}
.y4b_c01437{bottom:266.880000pt;}
.y4a_c01437{bottom:267.520000pt;}
.y49_c01437{bottom:284.800000pt;}
.y45_c01437{bottom:286.080000pt;}
.y44_c01437{bottom:287.360000pt;}
.y43_c01437{bottom:293.760000pt;}
.y46_c01437{bottom:294.400000pt;}
.y47_c01437{bottom:295.040000pt;}
.y48_c01437{bottom:295.680000pt;}
.y42_c01437{bottom:296.320000pt;}
.y3f_c01437{bottom:321.920000pt;}
.y3e_c01437{bottom:322.560000pt;}
.y40_c01437{bottom:323.200000pt;}
.y41_c01437{bottom:324.480000pt;}
.y3d_c01437{bottom:325.120000pt;}
.y3b_c01437{bottom:352.640000pt;}
.y3a_c01437{bottom:353.280000pt;}
.y39_c01437{bottom:353.920000pt;}
.y3c_c01437{bottom:355.840000pt;}
.y38_c01437{bottom:391.680000pt;}
.y36_c01437{bottom:427.520000pt;}
.y37_c01437{bottom:428.160000pt;}
.y35_c01437{bottom:429.440000pt;}
.y34_c01437{bottom:430.080000pt;}
.y32_c01437{bottom:475.520000pt;}
.y33_c01437{bottom:477.440000pt;}
.y30_c01437{bottom:478.080000pt;}
.y31_c01437{bottom:478.720000pt;}
.y2d_c01437{bottom:512.640000pt;}
.y2e_c01437{bottom:513.280000pt;}
.y29_c01437{bottom:513.920000pt;}
.y2f_c01437{bottom:514.560000pt;}
.y2b_c01437{bottom:515.840000pt;}
.y2c_c01437{bottom:516.480000pt;}
.y2a_c01437{bottom:517.120000pt;}
.y27_c01437{bottom:552.960000pt;}
.y26_c01437{bottom:554.240000pt;}
.y28_c01437{bottom:554.880000pt;}
.y23_c01437{bottom:608.640000pt;}
.y24_c01437{bottom:609.280000pt;}
.y22_c01437{bottom:610.560000pt;}
.y25_c01437{bottom:611.840000pt;}
.y20_c01437{bottom:646.400000pt;}
.y1f_c01437{bottom:647.680000pt;}
.y1e_c01437{bottom:675.200000pt;}
.y1b_c01437{bottom:675.840000pt;}
.y1d_c01437{bottom:676.480000pt;}
.y1a_c01437{bottom:677.120000pt;}
.y21_c01437{bottom:677.760000pt;}
.y1c_c01437{bottom:679.040000pt;}
.y14_c01437{bottom:713.600000pt;}
.y17_c01437{bottom:714.240000pt;}
.y18_c01437{bottom:714.880000pt;}
.y13_c01437{bottom:715.520000pt;}
.y19_c01437{bottom:716.160000pt;}
.y12_c01437{bottom:750.720000pt;}
.y16_c01437{bottom:751.360000pt;}
.y11_c01437{bottom:752.000000pt;}
.y10_c01437{bottom:753.280000pt;}
.y15_c01437{bottom:753.920000pt;}
.yf_c01437{bottom:794.240000pt;}
.yd_c01437{bottom:837.120000pt;}
.yc_c01437{bottom:837.760000pt;}
.yb_c01437{bottom:839.040000pt;}
.ye_c01437{bottom:839.680000pt;}
.y9_c01437{bottom:876.160000pt;}
.ya_c01437{bottom:876.800000pt;}
.y6_c01437{bottom:877.440000pt;}
.y7_c01437{bottom:878.080000pt;}
.y8_c01437{bottom:879.360000pt;}
.y4_c01437{bottom:914.560000pt;}
.y3_c01437{bottom:915.200000pt;}
.y2_c01437{bottom:915.840000pt;}
.y5_c01437{bottom:917.120000pt;}
.y1_c01437{bottom:964.480000pt;}
.h11_c01437{height:13.822500pt;}
.he_c01437{height:27.645000pt;}
.h9_c01437{height:29.948750pt;}
.h10_c01437{height:34.556250pt;}
.hb_c01437{height:36.860000pt;}
.h5_c01437{height:39.163750pt;}
.h12_c01437{height:39.420000pt;}
.h8_c01437{height:41.467500pt;}
.h6_c01437{height:43.771250pt;}
.h4_c01437{height:46.075000pt;}
.h3_c01437{height:48.378750pt;}
.hd_c01437{height:50.682500pt;}
.h13_c01437{height:50.938750pt;}
.hf_c01437{height:52.986250pt;}
.h7_c01437{height:55.290000pt;}
.h2_c01437{height:57.593750pt;}
.ha_c01437{height:59.897500pt;}
.hc_c01437{height:62.201250pt;}
.h0_c01437{height:1026.560000pt;}
.h1_c01437{height:1026.666667pt;}
.w0_c01437{width:691.200000pt;}
.w1_c01437{width:691.333333pt;}
.x0_c01437{left:0.000000pt;}
.x2c_c01437{left:43.520000pt;}
.x2_c01437{left:44.800400pt;}
.x37_c01437{left:62.080000pt;}
.x3c_c01437{left:70.400000pt;}
.x4d_c01437{left:80.640000pt;}
.x10_c01437{left:90.880000pt;}
.x14_c01437{left:99.840000pt;}
.x3_c01437{left:101.120000pt;}
.x23_c01437{left:108.800000pt;}
.x52_c01437{left:110.080000pt;}
.x2d_c01437{left:119.040000pt;}
.x4f_c01437{left:129.280000pt;}
.x1b_c01437{left:138.240000pt;}
.x11_c01437{left:139.520000pt;}
.x42_c01437{left:147.840000pt;}
.x43_c01437{left:165.760000pt;}
.x2e_c01437{left:167.680000pt;}
.x24_c01437{left:176.640000pt;}
.x9_c01437{left:178.560000pt;}
.x38_c01437{left:186.880000pt;}
.xd_c01437{left:188.160000pt;}
.x4e_c01437{left:195.840000pt;}
.x18_c01437{left:197.120000pt;}
.x12_c01437{left:207.360000pt;}
.x1c_c01437{left:215.040000pt;}
.x4_c01437{left:216.960000pt;}
.x3d_c01437{left:224.640000pt;}
.xa_c01437{left:226.560000pt;}
.x46_c01437{left:234.240000pt;}
.x16_c01437{left:236.160000pt;}
.x50_c01437{left:244.480000pt;}
.x25_c01437{left:245.760000pt;}
.x2f_c01437{left:253.440000pt;}
.xb_c01437{left:274.560000pt;}
.x1d_c01437{left:283.520000pt;}
.x26_c01437{left:292.480000pt;}
.x4b_c01437{left:301.440000pt;}
.x51_c01437{left:302.720000pt;}
.x33_c01437{left:311.040000pt;}
.x1e_c01437{left:312.320000pt;}
.x3e_c01437{left:320.640000pt;}
.x13_c01437{left:322.560000pt;}
.x27_c01437{left:340.480000pt;}
.x1f_c01437{left:359.040000pt;}
.x17_c01437{left:360.960000pt;}
.x4c_c01437{left:368.640000pt;}
.x30_c01437{left:369.920000pt;}
.x48_c01437{left:378.240000pt;}
.x31_c01437{left:407.040000pt;}
.x53_c01437{left:408.320000pt;}
.x20_c01437{left:416.640000pt;}
.x49_c01437{left:426.240000pt;}
.x28_c01437{left:435.840000pt;}
.x39_c01437{left:445.440000pt;}
.x29_c01437{left:456.320000pt;}
.x4a_c01437{left:463.360000pt;}
.x32_c01437{left:464.640000pt;}
.x3f_c01437{left:474.240000pt;}
.x2a_c01437{left:483.840000pt;}
.x34_c01437{left:493.440000pt;}
.x44_c01437{left:503.040000pt;}
.x47_c01437{left:512.000000pt;}
.x21_c01437{left:513.280000pt;}
.x15_c01437{left:514.560000pt;}
.x5_c01437{left:515.840000pt;}
.x3a_c01437{left:522.240000pt;}
.x35_c01437{left:531.200000pt;}
.xe_c01437{left:533.760000pt;}
.x40_c01437{left:540.160000pt;}
.x22_c01437{left:549.760000pt;}
.x2b_c01437{left:551.040000pt;}
.x1a_c01437{left:561.280000pt;}
.x6_c01437{left:562.560000pt;}
.x41_c01437{left:570.240000pt;}
.x3b_c01437{left:579.840000pt;}
.x45_c01437{left:589.440000pt;}
.x1_c01437{left:591.360000pt;}
.x7_c01437{left:592.640000pt;}
.x36_c01437{left:597.760000pt;}
.xf_c01437{left:600.960000pt;}
.xc_c01437{left:621.440000pt;}
.x19_c01437{left:628.480000pt;}
.x8_c01437{left:630.400000pt;}
}





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

.ir_c01438:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01438{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01438;src:url('chunks/assets/font_2e03adb8ded5acdf908890f4.woff2')format("woff");}.ff1_c01438{font-family:ff1_c01438;line-height:1.109863;font-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_c01438{transform:matrix(0.231525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231525,0.000000,0.000000,0.250000,0,0);}
.m46_c01438{transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);}
.m54_c01438{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);}
.m4c_c01438{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);}
.m56_c01438{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m35_c01438{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);}
.m4b_c01438{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m5a_c01438{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m12_c01438{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m13_c01438{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m39_c01438{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01438{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01438{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m55_c01438{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m10_c01438{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m27_c01438{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);}
.m51_c01438{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m43_c01438{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);}
.m34_c01438{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);}
.m30_c01438{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m32_c01438{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);}
.m40_c01438{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m0_c01438{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m57_c01438{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);}
.m53_c01438{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m23_c01438{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01438{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01438{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);}
.mb_c01438{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);}
.m41_c01438{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);}
.m47_c01438{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_c01438{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.mc_c01438{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);}
.m14_c01438{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01438{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01438{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);}
.m9_c01438{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01438{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);}
.m1_c01438{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m6_c01438{transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01438{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);}
.m58_c01438{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01438{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01438{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m50_c01438{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01438{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);}
.m5c_c01438{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m5b_c01438{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m28_c01438{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);}
.m19_c01438{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m8_c01438{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);}
.m4_c01438{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m20_c01438{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m45_c01438{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01438{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.ma_c01438{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);}
.m2a_c01438{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m26_c01438{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m44_c01438{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);}
.m2_c01438{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.mf_c01438{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.md_c01438{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.me_c01438{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m42_c01438{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);}
.m3_c01438{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);}
.m49_c01438{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m7_c01438{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01438{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m21_c01438{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);}
.m22_c01438{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m38_c01438{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m24_c01438{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m4f_c01438{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);}
.m25_c01438{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01438{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m17_c01438{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01438{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);}
.m1a_c01438{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m16_c01438{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m59_c01438{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);}
.m33_c01438{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);}
.m4e_c01438{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01438{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m5_c01438{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m31_c01438{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01438{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m48_c01438{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);}
.m37_c01438{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);}
.m18_c01438{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);}
.m1b_c01438{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m36_c01438{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);}
.m5d_c01438{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m29_c01438{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m52_c01438{transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);}
.v0_c01438{vertical-align:0.000000px;}
.v2_c01438{vertical-align:2.880000px;}
.v1_c01438{vertical-align:8.640000px;}
.ls0_c01438{letter-spacing:0.000000px;}
.sc__c01438{text-shadow:none;}
.sc0_c01438{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01438{-webkit-text-stroke:0px transparent;}
.sc0_c01438{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01438{word-spacing:-4.713120px;}
.ws2_c01438{word-spacing:-4.223280px;}
.ws0_c01438{word-spacing:-3.844560px;}
.ws3_c01438{word-spacing:0.000000px;}
.fc0_c01438{color:transparent;}
.fs4_c01438{font-size:34.560000px;}
.fs9_c01438{font-size:37.440000px;}
.fs7_c01438{font-size:43.200000px;}
.fs1_c01438{font-size:46.080000px;}
.fs3_c01438{font-size:48.960000px;}
.fs2_c01438{font-size:51.840000px;}
.fs8_c01438{font-size:54.720000px;}
.fs5_c01438{font-size:57.600000px;}
.fsa_c01438{font-size:60.480000px;}
.fsb_c01438{font-size:63.360000px;}
.fsc_c01438{font-size:66.240000px;}
.fsd_c01438{font-size:69.120000px;}
.fse_c01438{font-size:72.000000px;}
.fs0_c01438{font-size:74.880000px;}
.fs6_c01438{font-size:100.800000px;}
.y0_c01438{bottom:0.000000px;}
.y6d_c01438{bottom:35.280000px;}
.y6b_c01438{bottom:36.000000px;}
.y6e_c01438{bottom:36.720000px;}
.y6f_c01438{bottom:37.440000px;}
.y6c_c01438{bottom:38.160000px;}
.y6a_c01438{bottom:40.320000px;}
.y70_c01438{bottom:41.040000px;}
.y68_c01438{bottom:79.920000px;}
.y66_c01438{bottom:80.640000px;}
.y67_c01438{bottom:81.360000px;}
.y69_c01438{bottom:83.520000px;}
.y63_c01438{bottom:132.480000px;}
.y65_c01438{bottom:134.640000px;}
.y64_c01438{bottom:135.360000px;}
.y62_c01438{bottom:136.080000px;}
.y5c_c01438{bottom:174.240000px;}
.y5b_c01438{bottom:175.680000px;}
.y5f_c01438{bottom:177.120000px;}
.y5d_c01438{bottom:177.840000px;}
.y5e_c01438{bottom:178.560000px;}
.y60_c01438{bottom:179.280000px;}
.y61_c01438{bottom:180.000000px;}
.y58_c01438{bottom:220.320000px;}
.y5a_c01438{bottom:221.040000px;}
.y57_c01438{bottom:221.760000px;}
.y56_c01438{bottom:222.480000px;}
.y59_c01438{bottom:223.200000px;}
.y51_c01438{bottom:262.080000px;}
.y53_c01438{bottom:262.800000px;}
.y54_c01438{bottom:263.520000px;}
.y52_c01438{bottom:264.960000px;}
.y50_c01438{bottom:265.680000px;}
.y55_c01438{bottom:266.400000px;}
.y4e_c01438{bottom:306.720000px;}
.y4d_c01438{bottom:307.440000px;}
.y4c_c01438{bottom:308.160000px;}
.y4b_c01438{bottom:308.880000px;}
.y4f_c01438{bottom:309.600000px;}
.y4a_c01438{bottom:348.480000px;}
.y49_c01438{bottom:349.200000px;}
.y48_c01438{bottom:350.640000px;}
.y47_c01438{bottom:351.360000px;}
.y46_c01438{bottom:352.080000px;}
.y44_c01438{bottom:391.680000px;}
.y41_c01438{bottom:392.400000px;}
.y43_c01438{bottom:393.840000px;}
.y42_c01438{bottom:394.560000px;}
.y45_c01438{bottom:395.280000px;}
.y3f_c01438{bottom:434.880000px;}
.y40_c01438{bottom:435.600000px;}
.y3d_c01438{bottom:437.040000px;}
.y3e_c01438{bottom:437.760000px;}
.y3c_c01438{bottom:438.480000px;}
.y39_c01438{bottom:478.080000px;}
.y3a_c01438{bottom:478.800000px;}
.y38_c01438{bottom:480.240000px;}
.y3b_c01438{bottom:480.960000px;}
.y37_c01438{bottom:533.520000px;}
.y36_c01438{bottom:534.240000px;}
.y31_c01438{bottom:573.120000px;}
.y35_c01438{bottom:573.840000px;}
.y33_c01438{bottom:574.560000px;}
.y34_c01438{bottom:575.280000px;}
.y32_c01438{bottom:576.720000px;}
.y2e_c01438{bottom:617.040000px;}
.y2f_c01438{bottom:617.760000px;}
.y30_c01438{bottom:619.200000px;}
.y2c_c01438{bottom:619.920000px;}
.y2d_c01438{bottom:620.640000px;}
.y2a_c01438{bottom:659.520000px;}
.y27_c01438{bottom:660.240000px;}
.y28_c01438{bottom:660.960000px;}
.y2b_c01438{bottom:662.400000px;}
.y29_c01438{bottom:663.120000px;}
.y22_c01438{bottom:703.440000px;}
.y24_c01438{bottom:704.160000px;}
.y25_c01438{bottom:704.880000px;}
.y26_c01438{bottom:705.600000px;}
.y23_c01438{bottom:706.320000px;}
.y20_c01438{bottom:745.200000px;}
.y21_c01438{bottom:745.920000px;}
.y1d_c01438{bottom:746.640000px;}
.y1f_c01438{bottom:748.800000px;}
.y1e_c01438{bottom:749.520000px;}
.y1c_c01438{bottom:788.400000px;}
.y18_c01438{bottom:789.840000px;}
.y1b_c01438{bottom:790.560000px;}
.y1a_c01438{bottom:791.280000px;}
.y19_c01438{bottom:792.000000px;}
.y17_c01438{bottom:792.720000px;}
.y16_c01438{bottom:833.760000px;}
.y14_c01438{bottom:834.480000px;}
.y15_c01438{bottom:835.200000px;}
.y13_c01438{bottom:835.920000px;}
.y10_c01438{bottom:886.320000px;}
.y11_c01438{bottom:888.480000px;}
.y12_c01438{bottom:889.200000px;}
.yf_c01438{bottom:889.920000px;}
.yd_c01438{bottom:940.320000px;}
.ye_c01438{bottom:943.200000px;}
.ya_c01438{bottom:982.080000px;}
.yc_c01438{bottom:983.520000px;}
.yb_c01438{bottom:984.240000px;}
.y9_c01438{bottom:984.960000px;}
.y7_c01438{bottom:985.680000px;}
.y8_c01438{bottom:986.400000px;}
.y4_c01438{bottom:1024.560000px;}
.y6_c01438{bottom:1026.720000px;}
.y5_c01438{bottom:1027.440000px;}
.y3_c01438{bottom:1028.160000px;}
.y2_c01438{bottom:1029.600000px;}
.y1_c01438{bottom:1076.400000px;}
.h6_c01438{height:31.100625px;}
.hb_c01438{height:33.692344px;}
.h9_c01438{height:38.875781px;}
.h3_c01438{height:41.467500px;}
.h5_c01438{height:44.059219px;}
.h4_c01438{height:46.650937px;}
.ha_c01438{height:49.242656px;}
.h7_c01438{height:51.834375px;}
.hc_c01438{height:54.426094px;}
.h10_c01438{height:55.290938px;}
.hd_c01438{height:57.017812px;}
.he_c01438{height:59.609531px;}
.hf_c01438{height:62.201250px;}
.h11_c01438{height:64.792969px;}
.h2_c01438{height:67.384687px;}
.h8_c01438{height:90.710156px;}
.h0_c01438{height:1153.440000px;}
.h1_c01438{height:1153.500000px;}
.w0_c01438{width:775.440000px;}
.w1_c01438{width:775.500000px;}
.x0_c01438{left:0.000000px;}
.xb_c01438{left:51.120000px;}
.x5e_c01438{left:52.560000px;}
.x29_c01438{left:72.000000px;}
.x42_c01438{left:82.800000px;}
.x21_c01438{left:93.600000px;}
.x51_c01438{left:103.680000px;}
.x55_c01438{left:114.480000px;}
.x2f_c01438{left:116.640000px;}
.x35_c01438{left:125.280000px;}
.x22_c01438{left:127.440000px;}
.xc_c01438{left:138.240000px;}
.x13_c01438{left:149.040000px;}
.x43_c01438{left:157.680000px;}
.x2_c01438{left:159.120000px;}
.x19_c01438{left:160.560000px;}
.x5f_c01438{left:169.920000px;}
.x5b_c01438{left:180.720000px;}
.x3_c01438{left:192.240000px;}
.x30_c01438{left:201.600000px;}
.x2a_c01438{left:203.040000px;}
.x3c_c01438{left:213.120000px;}
.x1a_c01438{left:224.640000px;}
.x2b_c01438{left:235.440000px;}
.x4c_c01438{left:244.800000px;}
.x31_c01438{left:246.240000px;}
.x4_c01438{left:257.040000px;}
.x52_c01438{left:265.680000px;}
.x36_c01438{left:267.120000px;}
.x14_c01438{left:278.640000px;}
.x37_c01438{left:288.000000px;}
.x32_c01438{left:289.440000px;}
.x23_c01438{left:298.800000px;}
.xd_c01438{left:300.240000px;}
.x15_c01438{left:310.320000px;}
.x38_c01438{left:321.120000px;}
.x60_c01438{left:330.480000px;}
.x44_c01438{left:332.640000px;}
.x61_c01438{left:341.280000px;}
.x5_c01438{left:342.720000px;}
.x16_c01438{left:344.160000px;}
.x2e_c01438{left:354.240000px;}
.x6_c01438{left:364.320000px;}
.x2c_c01438{left:375.120000px;}
.x4d_c01438{left:385.200000px;}
.x1b_c01438{left:386.640000px;}
.x53_c01438{left:395.280000px;}
.x7_c01438{left:397.440000px;}
.xe_c01438{left:407.520000px;}
.x58_c01438{left:416.880000px;}
.x17_c01438{left:419.040000px;}
.x4e_c01438{left:427.680000px;}
.x24_c01438{left:429.120000px;}
.x1c_c01438{left:438.480000px;}
.x45_c01438{left:449.280000px;}
.xf_c01438{left:451.440000px;}
.x39_c01438{left:460.080000px;}
.x25_c01438{left:461.520000px;}
.x3d_c01438{left:470.880000px;}
.x40_c01438{left:482.400000px;}
.x18_c01438{left:483.840000px;}
.x46_c01438{left:492.480000px;}
.x48_c01438{left:502.560000px;}
.x1d_c01438{left:504.000000px;}
.x8_c01438{left:505.440000px;}
.x5c_c01438{left:513.360000px;}
.x26_c01438{left:514.800000px;}
.x56_c01438{left:523.440000px;}
.x2d_c01438{left:524.880000px;}
.x1e_c01438{left:537.120000px;}
.x49_c01438{left:545.760000px;}
.x4f_c01438{left:556.560000px;}
.x10_c01438{left:558.720000px;}
.x54_c01438{left:566.640000px;}
.x3e_c01438{left:568.080000px;}
.x27_c01438{left:578.880000px;}
.x11_c01438{left:580.320000px;}
.x50_c01438{left:588.240000px;}
.x1f_c01438{left:591.120000px;}
.x3a_c01438{left:600.480000px;}
.x4a_c01438{left:609.840000px;}
.x3f_c01438{left:611.280000px;}
.x5d_c01438{left:612.720000px;}
.x57_c01438{left:619.920000px;}
.x33_c01438{left:622.080000px;}
.x28_c01438{left:623.520000px;}
.x59_c01438{left:631.440000px;}
.x9_c01438{left:635.040000px;}
.x47_c01438{left:642.960000px;}
.x62_c01438{left:652.320000px;}
.x5a_c01438{left:653.760000px;}
.x20_c01438{left:655.200000px;}
.x34_c01438{left:665.280000px;}
.x1_c01438{left:669.600000px;}
.x4b_c01438{left:675.360000px;}
.xa_c01438{left:678.240000px;}
.x41_c01438{left:685.440000px;}
.x3b_c01438{left:686.880000px;}
.x12_c01438{left:689.040000px;}
@media print{
.v0_c01438{vertical-align:0.000000pt;}
.v2_c01438{vertical-align:2.560000pt;}
.v1_c01438{vertical-align:7.680000pt;}
.ls0_c01438{letter-spacing:0.000000pt;}
.ws1_c01438{word-spacing:-4.189440pt;}
.ws2_c01438{word-spacing:-3.754027pt;}
.ws0_c01438{word-spacing:-3.417387pt;}
.ws3_c01438{word-spacing:0.000000pt;}
.fs4_c01438{font-size:30.720000pt;}
.fs9_c01438{font-size:33.280000pt;}
.fs7_c01438{font-size:38.400000pt;}
.fs1_c01438{font-size:40.960000pt;}
.fs3_c01438{font-size:43.520000pt;}
.fs2_c01438{font-size:46.080000pt;}
.fs8_c01438{font-size:48.640000pt;}
.fs5_c01438{font-size:51.200000pt;}
.fsa_c01438{font-size:53.760000pt;}
.fsb_c01438{font-size:56.320000pt;}
.fsc_c01438{font-size:58.880000pt;}
.fsd_c01438{font-size:61.440000pt;}
.fse_c01438{font-size:64.000000pt;}
.fs0_c01438{font-size:66.560000pt;}
.fs6_c01438{font-size:89.600000pt;}
.y0_c01438{bottom:0.000000pt;}
.y6d_c01438{bottom:31.360000pt;}
.y6b_c01438{bottom:32.000000pt;}
.y6e_c01438{bottom:32.640000pt;}
.y6f_c01438{bottom:33.280000pt;}
.y6c_c01438{bottom:33.920000pt;}
.y6a_c01438{bottom:35.840000pt;}
.y70_c01438{bottom:36.480000pt;}
.y68_c01438{bottom:71.040000pt;}
.y66_c01438{bottom:71.680000pt;}
.y67_c01438{bottom:72.320000pt;}
.y69_c01438{bottom:74.240000pt;}
.y63_c01438{bottom:117.760000pt;}
.y65_c01438{bottom:119.680000pt;}
.y64_c01438{bottom:120.320000pt;}
.y62_c01438{bottom:120.960000pt;}
.y5c_c01438{bottom:154.880000pt;}
.y5b_c01438{bottom:156.160000pt;}
.y5f_c01438{bottom:157.440000pt;}
.y5d_c01438{bottom:158.080000pt;}
.y5e_c01438{bottom:158.720000pt;}
.y60_c01438{bottom:159.360000pt;}
.y61_c01438{bottom:160.000000pt;}
.y58_c01438{bottom:195.840000pt;}
.y5a_c01438{bottom:196.480000pt;}
.y57_c01438{bottom:197.120000pt;}
.y56_c01438{bottom:197.760000pt;}
.y59_c01438{bottom:198.400000pt;}
.y51_c01438{bottom:232.960000pt;}
.y53_c01438{bottom:233.600000pt;}
.y54_c01438{bottom:234.240000pt;}
.y52_c01438{bottom:235.520000pt;}
.y50_c01438{bottom:236.160000pt;}
.y55_c01438{bottom:236.800000pt;}
.y4e_c01438{bottom:272.640000pt;}
.y4d_c01438{bottom:273.280000pt;}
.y4c_c01438{bottom:273.920000pt;}
.y4b_c01438{bottom:274.560000pt;}
.y4f_c01438{bottom:275.200000pt;}
.y4a_c01438{bottom:309.760000pt;}
.y49_c01438{bottom:310.400000pt;}
.y48_c01438{bottom:311.680000pt;}
.y47_c01438{bottom:312.320000pt;}
.y46_c01438{bottom:312.960000pt;}
.y44_c01438{bottom:348.160000pt;}
.y41_c01438{bottom:348.800000pt;}
.y43_c01438{bottom:350.080000pt;}
.y42_c01438{bottom:350.720000pt;}
.y45_c01438{bottom:351.360000pt;}
.y3f_c01438{bottom:386.560000pt;}
.y40_c01438{bottom:387.200000pt;}
.y3d_c01438{bottom:388.480000pt;}
.y3e_c01438{bottom:389.120000pt;}
.y3c_c01438{bottom:389.760000pt;}
.y39_c01438{bottom:424.960000pt;}
.y3a_c01438{bottom:425.600000pt;}
.y38_c01438{bottom:426.880000pt;}
.y3b_c01438{bottom:427.520000pt;}
.y37_c01438{bottom:474.240000pt;}
.y36_c01438{bottom:474.880000pt;}
.y31_c01438{bottom:509.440000pt;}
.y35_c01438{bottom:510.080000pt;}
.y33_c01438{bottom:510.720000pt;}
.y34_c01438{bottom:511.360000pt;}
.y32_c01438{bottom:512.640000pt;}
.y2e_c01438{bottom:548.480000pt;}
.y2f_c01438{bottom:549.120000pt;}
.y30_c01438{bottom:550.400000pt;}
.y2c_c01438{bottom:551.040000pt;}
.y2d_c01438{bottom:551.680000pt;}
.y2a_c01438{bottom:586.240000pt;}
.y27_c01438{bottom:586.880000pt;}
.y28_c01438{bottom:587.520000pt;}
.y2b_c01438{bottom:588.800000pt;}
.y29_c01438{bottom:589.440000pt;}
.y22_c01438{bottom:625.280000pt;}
.y24_c01438{bottom:625.920000pt;}
.y25_c01438{bottom:626.560000pt;}
.y26_c01438{bottom:627.200000pt;}
.y23_c01438{bottom:627.840000pt;}
.y20_c01438{bottom:662.400000pt;}
.y21_c01438{bottom:663.040000pt;}
.y1d_c01438{bottom:663.680000pt;}
.y1f_c01438{bottom:665.600000pt;}
.y1e_c01438{bottom:666.240000pt;}
.y1c_c01438{bottom:700.800000pt;}
.y18_c01438{bottom:702.080000pt;}
.y1b_c01438{bottom:702.720000pt;}
.y1a_c01438{bottom:703.360000pt;}
.y19_c01438{bottom:704.000000pt;}
.y17_c01438{bottom:704.640000pt;}
.y16_c01438{bottom:741.120000pt;}
.y14_c01438{bottom:741.760000pt;}
.y15_c01438{bottom:742.400000pt;}
.y13_c01438{bottom:743.040000pt;}
.y10_c01438{bottom:787.840000pt;}
.y11_c01438{bottom:789.760000pt;}
.y12_c01438{bottom:790.400000pt;}
.yf_c01438{bottom:791.040000pt;}
.yd_c01438{bottom:835.840000pt;}
.ye_c01438{bottom:838.400000pt;}
.ya_c01438{bottom:872.960000pt;}
.yc_c01438{bottom:874.240000pt;}
.yb_c01438{bottom:874.880000pt;}
.y9_c01438{bottom:875.520000pt;}
.y7_c01438{bottom:876.160000pt;}
.y8_c01438{bottom:876.800000pt;}
.y4_c01438{bottom:910.720000pt;}
.y6_c01438{bottom:912.640000pt;}
.y5_c01438{bottom:913.280000pt;}
.y3_c01438{bottom:913.920000pt;}
.y2_c01438{bottom:915.200000pt;}
.y1_c01438{bottom:956.800000pt;}
.h6_c01438{height:27.645000pt;}
.hb_c01438{height:29.948750pt;}
.h9_c01438{height:34.556250pt;}
.h3_c01438{height:36.860000pt;}
.h5_c01438{height:39.163750pt;}
.h4_c01438{height:41.467500pt;}
.ha_c01438{height:43.771250pt;}
.h7_c01438{height:46.075000pt;}
.hc_c01438{height:48.378750pt;}
.h10_c01438{height:49.147500pt;}
.hd_c01438{height:50.682500pt;}
.he_c01438{height:52.986250pt;}
.hf_c01438{height:55.290000pt;}
.h11_c01438{height:57.593750pt;}
.h2_c01438{height:59.897500pt;}
.h8_c01438{height:80.631250pt;}
.h0_c01438{height:1025.280000pt;}
.h1_c01438{height:1025.333333pt;}
.w0_c01438{width:689.280000pt;}
.w1_c01438{width:689.333333pt;}
.x0_c01438{left:0.000000pt;}
.xb_c01438{left:45.440000pt;}
.x5e_c01438{left:46.720000pt;}
.x29_c01438{left:64.000000pt;}
.x42_c01438{left:73.600000pt;}
.x21_c01438{left:83.200000pt;}
.x51_c01438{left:92.160000pt;}
.x55_c01438{left:101.760000pt;}
.x2f_c01438{left:103.680000pt;}
.x35_c01438{left:111.360000pt;}
.x22_c01438{left:113.280000pt;}
.xc_c01438{left:122.880000pt;}
.x13_c01438{left:132.480000pt;}
.x43_c01438{left:140.160000pt;}
.x2_c01438{left:141.440000pt;}
.x19_c01438{left:142.720000pt;}
.x5f_c01438{left:151.040000pt;}
.x5b_c01438{left:160.640000pt;}
.x3_c01438{left:170.880000pt;}
.x30_c01438{left:179.200000pt;}
.x2a_c01438{left:180.480000pt;}
.x3c_c01438{left:189.440000pt;}
.x1a_c01438{left:199.680000pt;}
.x2b_c01438{left:209.280000pt;}
.x4c_c01438{left:217.600000pt;}
.x31_c01438{left:218.880000pt;}
.x4_c01438{left:228.480000pt;}
.x52_c01438{left:236.160000pt;}
.x36_c01438{left:237.440000pt;}
.x14_c01438{left:247.680000pt;}
.x37_c01438{left:256.000000pt;}
.x32_c01438{left:257.280000pt;}
.x23_c01438{left:265.600000pt;}
.xd_c01438{left:266.880000pt;}
.x15_c01438{left:275.840000pt;}
.x38_c01438{left:285.440000pt;}
.x60_c01438{left:293.760000pt;}
.x44_c01438{left:295.680000pt;}
.x61_c01438{left:303.360000pt;}
.x5_c01438{left:304.640000pt;}
.x16_c01438{left:305.920000pt;}
.x2e_c01438{left:314.880000pt;}
.x6_c01438{left:323.840000pt;}
.x2c_c01438{left:333.440000pt;}
.x4d_c01438{left:342.400000pt;}
.x1b_c01438{left:343.680000pt;}
.x53_c01438{left:351.360000pt;}
.x7_c01438{left:353.280000pt;}
.xe_c01438{left:362.240000pt;}
.x58_c01438{left:370.560000pt;}
.x17_c01438{left:372.480000pt;}
.x4e_c01438{left:380.160000pt;}
.x24_c01438{left:381.440000pt;}
.x1c_c01438{left:389.760000pt;}
.x45_c01438{left:399.360000pt;}
.xf_c01438{left:401.280000pt;}
.x39_c01438{left:408.960000pt;}
.x25_c01438{left:410.240000pt;}
.x3d_c01438{left:418.560000pt;}
.x40_c01438{left:428.800000pt;}
.x18_c01438{left:430.080000pt;}
.x46_c01438{left:437.760000pt;}
.x48_c01438{left:446.720000pt;}
.x1d_c01438{left:448.000000pt;}
.x8_c01438{left:449.280000pt;}
.x5c_c01438{left:456.320000pt;}
.x26_c01438{left:457.600000pt;}
.x56_c01438{left:465.280000pt;}
.x2d_c01438{left:466.560000pt;}
.x1e_c01438{left:477.440000pt;}
.x49_c01438{left:485.120000pt;}
.x4f_c01438{left:494.720000pt;}
.x10_c01438{left:496.640000pt;}
.x54_c01438{left:503.680000pt;}
.x3e_c01438{left:504.960000pt;}
.x27_c01438{left:514.560000pt;}
.x11_c01438{left:515.840000pt;}
.x50_c01438{left:522.880000pt;}
.x1f_c01438{left:525.440000pt;}
.x3a_c01438{left:533.760000pt;}
.x4a_c01438{left:542.080000pt;}
.x3f_c01438{left:543.360000pt;}
.x5d_c01438{left:544.640000pt;}
.x57_c01438{left:551.040000pt;}
.x33_c01438{left:552.960000pt;}
.x28_c01438{left:554.240000pt;}
.x59_c01438{left:561.280000pt;}
.x9_c01438{left:564.480000pt;}
.x47_c01438{left:571.520000pt;}
.x62_c01438{left:579.840000pt;}
.x5a_c01438{left:581.120000pt;}
.x20_c01438{left:582.400000pt;}
.x34_c01438{left:591.360000pt;}
.x1_c01438{left:595.200000pt;}
.x4b_c01438{left:600.320000pt;}
.xa_c01438{left:602.880000pt;}
.x41_c01438{left:609.280000pt;}
.x3b_c01438{left:610.560000pt;}
.x12_c01438{left:612.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_c01439 {
    display:none;
  }
  .loading-indicator_c01439.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01439 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01439 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01439" -> "#page-container .classname_c01439")
 */
.pf_c01439 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01439 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01439.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01439 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01439 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01439 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01439 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01439 {overflow:visible;}
  }
}
.c_c01439 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01439 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01439:after { /* webkit #35443 */
  content: '';
}
.t_c01439:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01439 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01439 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01439 { /* info for Javascript */
  display:none;
}
.l_c01439 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01439 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01439 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01439:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01439{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01439;src:url('chunks/assets/font_658d6b63224d3165cf299043.woff2')format("woff");}.ff1_c01439{font-family:ff1_c01439;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5e_c01439{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);}
.m34_c01439{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);}
.m55_c01439{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m58_c01439{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01439{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m45_c01439{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01439{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m42_c01439{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m51_c01439{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m53_c01439{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01439{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1_c01439{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m0_c01439{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m5a_c01439{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);}
.m52_c01439{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m4_c01439{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01439{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m12_c01439{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01439{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);}
.m2a_c01439{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_c01439{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.mc_c01439{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m40_c01439{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);}
.m33_c01439{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m3_c01439{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);}
.m56_c01439{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m29_c01439{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);}
.m23_c01439{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m50_c01439{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m6_c01439{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);}
.m7_c01439{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);}
.m46_c01439{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m39_c01439{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.ma_c01439{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m15_c01439{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);}
.m32_c01439{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01439{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m11_c01439{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m9_c01439{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);}
.m5_c01439{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01439{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01439{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m19_c01439{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01439{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);}
.m4f_c01439{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01439{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m30_c01439{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);}
.m4a_c01439{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m2_c01439{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);}
.mb_c01439{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01439{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01439{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01439{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.md_c01439{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);}
.m1e_c01439{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01439{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m28_c01439{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m47_c01439{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);}
.m24_c01439{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m57_c01439{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.me_c01439{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.mf_c01439{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m59_c01439{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m5c_c01439{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);}
.m14_c01439{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);}
.m38_c01439{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m25_c01439{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m36_c01439{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);}
.m13_c01439{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m4e_c01439{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m10_c01439{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);}
.m49_c01439{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m35_c01439{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m8_c01439{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);}
.m3f_c01439{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01439{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01439{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);}
.m27_c01439{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m54_c01439{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);}
.m44_c01439{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m21_c01439{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m41_c01439{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m18_c01439{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01439{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m5b_c01439{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);}
.m5d_c01439{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m17_c01439{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);}
.m20_c01439{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m43_c01439{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m26_c01439{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m48_c01439{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m37_c01439{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01439{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);}
.m22_c01439{transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);}
.m31_c01439{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m5f_c01439{transform:matrix(0.850000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.850000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.850000,0.000000,0.000000,0.250000,0,0);}
.v0_c01439{vertical-align:0.000000px;}
.v2_c01439{vertical-align:11.520000px;}
.v1_c01439{vertical-align:14.400000px;}
.ls0_c01439{letter-spacing:0.000000px;}
.sc__c01439{text-shadow:none;}
.sc0_c01439{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01439{-webkit-text-stroke:0px transparent;}
.sc0_c01439{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01439{word-spacing:-2.504400px;}
.ws3_c01439{word-spacing:0.000000px;}
.ws0_c01439{word-spacing:2.899313px;}
.ws1_c01439{word-spacing:4.722240px;}
.fc0_c01439{color:transparent;}
.fsf_c01439{font-size:25.920000px;}
.fsc_c01439{font-size:31.680000px;}
.fs9_c01439{font-size:34.560000px;}
.fs6_c01439{font-size:37.440000px;}
.fse_c01439{font-size:40.320000px;}
.fsa_c01439{font-size:43.200000px;}
.fs2_c01439{font-size:46.080000px;}
.fs8_c01439{font-size:48.960000px;}
.fs4_c01439{font-size:51.840000px;}
.fsd_c01439{font-size:54.720000px;}
.fs7_c01439{font-size:57.600000px;}
.fs5_c01439{font-size:60.480000px;}
.fs3_c01439{font-size:63.360000px;}
.fsb_c01439{font-size:66.240000px;}
.fs1_c01439{font-size:69.120000px;}
.fs0_c01439{font-size:72.000000px;}
.y0_c01439{bottom:0.000000px;}
.y81_c01439{bottom:11.520000px;}
.y80_c01439{bottom:12.960000px;}
.y7c_c01439{bottom:51.840000px;}
.y7e_c01439{bottom:52.560000px;}
.y7b_c01439{bottom:54.000000px;}
.y7a_c01439{bottom:54.720000px;}
.y7d_c01439{bottom:55.440000px;}
.y79_c01439{bottom:56.160000px;}
.y7f_c01439{bottom:56.880000px;}
.y75_c01439{bottom:93.600000px;}
.y73_c01439{bottom:94.320000px;}
.y72_c01439{bottom:96.480000px;}
.y74_c01439{bottom:97.200000px;}
.y76_c01439{bottom:97.920000px;}
.y78_c01439{bottom:98.640000px;}
.y77_c01439{bottom:99.360000px;}
.y6e_c01439{bottom:137.520000px;}
.y6f_c01439{bottom:138.240000px;}
.y6c_c01439{bottom:138.960000px;}
.y70_c01439{bottom:139.680000px;}
.y6d_c01439{bottom:140.400000px;}
.y71_c01439{bottom:142.560000px;}
.y68_c01439{bottom:181.440000px;}
.y6b_c01439{bottom:182.880000px;}
.y67_c01439{bottom:183.600000px;}
.y66_c01439{bottom:184.320000px;}
.y69_c01439{bottom:185.040000px;}
.y6a_c01439{bottom:185.760000px;}
.y62_c01439{bottom:223.200000px;}
.y61_c01439{bottom:224.640000px;}
.y65_c01439{bottom:225.360000px;}
.y60_c01439{bottom:226.800000px;}
.y63_c01439{bottom:227.520000px;}
.y64_c01439{bottom:228.960000px;}
.y5b_c01439{bottom:266.400000px;}
.y5c_c01439{bottom:267.840000px;}
.y5f_c01439{bottom:268.560000px;}
.y5a_c01439{bottom:269.280000px;}
.y5d_c01439{bottom:270.000000px;}
.y5e_c01439{bottom:270.720000px;}
.y58_c01439{bottom:322.560000px;}
.y59_c01439{bottom:323.280000px;}
.y57_c01439{bottom:324.000000px;}
.y53_c01439{bottom:362.880000px;}
.y52_c01439{bottom:363.600000px;}
.y56_c01439{bottom:364.320000px;}
.y51_c01439{bottom:366.480000px;}
.y54_c01439{bottom:367.200000px;}
.y55_c01439{bottom:367.920000px;}
.y50_c01439{bottom:406.080000px;}
.y4f_c01439{bottom:406.800000px;}
.y4d_c01439{bottom:408.960000px;}
.y4e_c01439{bottom:409.680000px;}
.y4b_c01439{bottom:448.560000px;}
.y4a_c01439{bottom:450.000000px;}
.y4c_c01439{bottom:452.160000px;}
.y47_c01439{bottom:491.040000px;}
.y48_c01439{bottom:492.480000px;}
.y49_c01439{bottom:493.200000px;}
.y46_c01439{bottom:495.360000px;}
.y40_c01439{bottom:534.960000px;}
.y41_c01439{bottom:536.400000px;}
.y43_c01439{bottom:537.120000px;}
.y45_c01439{bottom:537.840000px;}
.y42_c01439{bottom:538.560000px;}
.y44_c01439{bottom:539.280000px;}
.y3f_c01439{bottom:579.600000px;}
.y3e_c01439{bottom:581.040000px;}
.y3c_c01439{bottom:581.760000px;}
.y3d_c01439{bottom:582.480000px;}
.y3a_c01439{bottom:621.360000px;}
.y37_c01439{bottom:622.080000px;}
.y3b_c01439{bottom:623.520000px;}
.y38_c01439{bottom:624.240000px;}
.y39_c01439{bottom:624.960000px;}
.y34_c01439{bottom:666.000000px;}
.y36_c01439{bottom:667.440000px;}
.y35_c01439{bottom:668.160000px;}
.y31_c01439{bottom:707.040000px;}
.y32_c01439{bottom:707.760000px;}
.y2d_c01439{bottom:708.480000px;}
.y2f_c01439{bottom:709.200000px;}
.y33_c01439{bottom:709.920000px;}
.y30_c01439{bottom:710.640000px;}
.y2e_c01439{bottom:711.360000px;}
.y2a_c01439{bottom:750.960000px;}
.y29_c01439{bottom:751.680000px;}
.y2c_c01439{bottom:752.400000px;}
.y2b_c01439{bottom:753.840000px;}
.y26_c01439{bottom:792.720000px;}
.y24_c01439{bottom:794.160000px;}
.y28_c01439{bottom:795.600000px;}
.y27_c01439{bottom:796.320000px;}
.y25_c01439{bottom:797.040000px;}
.y23_c01439{bottom:835.200000px;}
.y21_c01439{bottom:836.640000px;}
.y22_c01439{bottom:838.080000px;}
.y1f_c01439{bottom:838.800000px;}
.y20_c01439{bottom:839.520000px;}
.y1d_c01439{bottom:878.400000px;}
.y1b_c01439{bottom:879.120000px;}
.y1e_c01439{bottom:880.560000px;}
.y1c_c01439{bottom:881.280000px;}
.y19_c01439{bottom:882.000000px;}
.y1a_c01439{bottom:882.720000px;}
.y18_c01439{bottom:920.880000px;}
.y16_c01439{bottom:921.600000px;}
.y15_c01439{bottom:922.320000px;}
.y17_c01439{bottom:923.760000px;}
.y14_c01439{bottom:924.480000px;}
.y13_c01439{bottom:925.200000px;}
.y12_c01439{bottom:925.920000px;}
.y10_c01439{bottom:964.080000px;}
.yf_c01439{bottom:964.800000px;}
.ye_c01439{bottom:965.520000px;}
.y11_c01439{bottom:966.960000px;}
.yc_c01439{bottom:967.680000px;}
.yd_c01439{bottom:968.400000px;}
.ya_c01439{bottom:1008.000000px;}
.yb_c01439{bottom:1009.440000px;}
.y8_c01439{bottom:1010.160000px;}
.y7_c01439{bottom:1010.880000px;}
.y9_c01439{bottom:1011.600000px;}
.y4_c01439{bottom:1051.200000px;}
.y2_c01439{bottom:1051.920000px;}
.y3_c01439{bottom:1052.640000px;}
.y6_c01439{bottom:1053.360000px;}
.y5_c01439{bottom:1054.080000px;}
.y1_c01439{bottom:1109.520000px;}
.h13_c01439{height:23.325469px;}
.he_c01439{height:28.508906px;}
.hb_c01439{height:31.100625px;}
.h8_c01439{height:33.692344px;}
.h11_c01439{height:36.284062px;}
.hc_c01439{height:38.875781px;}
.h4_c01439{height:41.467500px;}
.ha_c01439{height:44.059219px;}
.h6_c01439{height:46.650937px;}
.h10_c01439{height:49.242656px;}
.h9_c01439{height:51.834375px;}
.h7_c01439{height:54.426094px;}
.h12_c01439{height:55.579219px;}
.h5_c01439{height:57.017812px;}
.hf_c01439{height:58.459219px;}
.hd_c01439{height:59.609531px;}
.h3_c01439{height:62.201250px;}
.h2_c01439{height:64.792969px;}
.h1_c01439{height:1179.000000px;}
.h0_c01439{height:1179.360000px;}
.w1_c01439{width:771.750000px;}
.w0_c01439{width:771.840000px;}
.x0_c01439{left:0.000000px;}
.xb_c01439{left:48.240000px;}
.x2_c01439{left:49.680000px;}
.x46_c01439{left:51.120000px;}
.x5e_c01439{left:80.640000px;}
.x2f_c01439{left:91.440000px;}
.x1f_c01439{left:102.960000px;}
.x58_c01439{left:112.320000px;}
.xc_c01439{left:113.760000px;}
.x52_c01439{left:123.120000px;}
.x3_c01439{left:125.280000px;}
.x3d_c01439{left:134.640000px;}
.x1a_c01439{left:136.080000px;}
.x4_c01439{left:146.880000px;}
.x42_c01439{left:156.240000px;}
.x14_c01439{left:157.680000px;}
.x3e_c01439{left:166.320000px;}
.x33_c01439{left:167.760000px;}
.x4e_c01439{left:177.120000px;}
.x30_c01439{left:199.440000px;}
.x34_c01439{left:200.880000px;}
.x38_c01439{left:211.680000px;}
.x1b_c01439{left:222.480000px;}
.x2b_c01439{left:232.560000px;}
.x20_c01439{left:243.360000px;}
.x5_c01439{left:254.880000px;}
.x4c_c01439{left:264.240000px;}
.x47_c01439{left:265.680000px;}
.x1c_c01439{left:267.120000px;}
.x53_c01439{left:275.760000px;}
.x48_c01439{left:285.120000px;}
.x15_c01439{left:287.280000px;}
.x6_c01439{left:288.720000px;}
.x5d_c01439{left:296.640000px;}
.xd_c01439{left:298.080000px;}
.x4f_c01439{left:299.520000px;}
.x5c_c01439{left:308.160000px;}
.x54_c01439{left:318.240000px;}
.x16_c01439{left:319.680000px;}
.x4b_c01439{left:328.320000px;}
.x25_c01439{left:329.760000px;}
.x5f_c01439{left:340.560000px;}
.x31_c01439{left:351.360000px;}
.x55_c01439{left:361.440000px;}
.xe_c01439{left:362.880000px;}
.x21_c01439{left:372.240000px;}
.x28_c01439{left:373.680000px;}
.x1d_c01439{left:384.480000px;}
.x39_c01439{left:393.840000px;}
.x17_c01439{left:396.000000px;}
.x3f_c01439{left:404.640000px;}
.x26_c01439{left:416.160000px;}
.x3a_c01439{left:426.240000px;}
.x7_c01439{left:427.680000px;}
.x59_c01439{left:436.320000px;}
.x1e_c01439{left:438.480000px;}
.x2c_c01439{left:447.840000px;}
.xf_c01439{left:449.280000px;}
.x35_c01439{left:459.360000px;}
.x40_c01439{left:468.000000px;}
.x43_c01439{left:469.440000px;}
.x8_c01439{left:471.600000px;}
.x50_c01439{left:479.520000px;}
.x10_c01439{left:481.680000px;}
.x36_c01439{left:490.320000px;}
.x60_c01439{left:500.400000px;}
.x2d_c01439{left:501.840000px;}
.x22_c01439{left:512.640000px;}
.x18_c01439{left:514.080000px;}
.x5a_c01439{left:522.720000px;}
.x3b_c01439{left:533.520000px;}
.x56_c01439{left:543.600000px;}
.x27_c01439{left:545.040000px;}
.x29_c01439{left:546.480000px;}
.x61_c01439{left:553.680000px;}
.x23_c01439{left:555.840000px;}
.x4d_c01439{left:565.920000px;}
.x11_c01439{left:568.080000px;}
.x57_c01439{left:576.000000px;}
.x9_c01439{left:579.600000px;}
.x5b_c01439{left:586.080000px;}
.x41_c01439{left:587.520000px;}
.x2a_c01439{left:589.680000px;}
.x24_c01439{left:598.320000px;}
.x12_c01439{left:600.480000px;}
.x49_c01439{left:609.120000px;}
.x37_c01439{left:610.560000px;}
.x62_c01439{left:618.480000px;}
.x3c_c01439{left:619.920000px;}
.xa_c01439{left:622.080000px;}
.x44_c01439{left:630.720000px;}
.x4a_c01439{left:641.520000px;}
.x13_c01439{left:643.680000px;}
.x63_c01439{left:651.600000px;}
.x2e_c01439{left:653.040000px;}
.x45_c01439{left:662.400000px;}
.x19_c01439{left:664.560000px;}
.x1_c01439{left:668.160000px;}
.x51_c01439{left:673.200000px;}
.x32_c01439{left:685.440000px;}
.x64_c01439{left:759.600000px;}
@media print{
.v0_c01439{vertical-align:0.000000pt;}
.v2_c01439{vertical-align:10.240000pt;}
.v1_c01439{vertical-align:12.800000pt;}
.ls0_c01439{letter-spacing:0.000000pt;}
.ws2_c01439{word-spacing:-2.226133pt;}
.ws3_c01439{word-spacing:0.000000pt;}
.ws0_c01439{word-spacing:2.577167pt;}
.ws1_c01439{word-spacing:4.197547pt;}
.fsf_c01439{font-size:23.040000pt;}
.fsc_c01439{font-size:28.160000pt;}
.fs9_c01439{font-size:30.720000pt;}
.fs6_c01439{font-size:33.280000pt;}
.fse_c01439{font-size:35.840000pt;}
.fsa_c01439{font-size:38.400000pt;}
.fs2_c01439{font-size:40.960000pt;}
.fs8_c01439{font-size:43.520000pt;}
.fs4_c01439{font-size:46.080000pt;}
.fsd_c01439{font-size:48.640000pt;}
.fs7_c01439{font-size:51.200000pt;}
.fs5_c01439{font-size:53.760000pt;}
.fs3_c01439{font-size:56.320000pt;}
.fsb_c01439{font-size:58.880000pt;}
.fs1_c01439{font-size:61.440000pt;}
.fs0_c01439{font-size:64.000000pt;}
.y0_c01439{bottom:0.000000pt;}
.y81_c01439{bottom:10.240000pt;}
.y80_c01439{bottom:11.520000pt;}
.y7c_c01439{bottom:46.080000pt;}
.y7e_c01439{bottom:46.720000pt;}
.y7b_c01439{bottom:48.000000pt;}
.y7a_c01439{bottom:48.640000pt;}
.y7d_c01439{bottom:49.280000pt;}
.y79_c01439{bottom:49.920000pt;}
.y7f_c01439{bottom:50.560000pt;}
.y75_c01439{bottom:83.200000pt;}
.y73_c01439{bottom:83.840000pt;}
.y72_c01439{bottom:85.760000pt;}
.y74_c01439{bottom:86.400000pt;}
.y76_c01439{bottom:87.040000pt;}
.y78_c01439{bottom:87.680000pt;}
.y77_c01439{bottom:88.320000pt;}
.y6e_c01439{bottom:122.240000pt;}
.y6f_c01439{bottom:122.880000pt;}
.y6c_c01439{bottom:123.520000pt;}
.y70_c01439{bottom:124.160000pt;}
.y6d_c01439{bottom:124.800000pt;}
.y71_c01439{bottom:126.720000pt;}
.y68_c01439{bottom:161.280000pt;}
.y6b_c01439{bottom:162.560000pt;}
.y67_c01439{bottom:163.200000pt;}
.y66_c01439{bottom:163.840000pt;}
.y69_c01439{bottom:164.480000pt;}
.y6a_c01439{bottom:165.120000pt;}
.y62_c01439{bottom:198.400000pt;}
.y61_c01439{bottom:199.680000pt;}
.y65_c01439{bottom:200.320000pt;}
.y60_c01439{bottom:201.600000pt;}
.y63_c01439{bottom:202.240000pt;}
.y64_c01439{bottom:203.520000pt;}
.y5b_c01439{bottom:236.800000pt;}
.y5c_c01439{bottom:238.080000pt;}
.y5f_c01439{bottom:238.720000pt;}
.y5a_c01439{bottom:239.360000pt;}
.y5d_c01439{bottom:240.000000pt;}
.y5e_c01439{bottom:240.640000pt;}
.y58_c01439{bottom:286.720000pt;}
.y59_c01439{bottom:287.360000pt;}
.y57_c01439{bottom:288.000000pt;}
.y53_c01439{bottom:322.560000pt;}
.y52_c01439{bottom:323.200000pt;}
.y56_c01439{bottom:323.840000pt;}
.y51_c01439{bottom:325.760000pt;}
.y54_c01439{bottom:326.400000pt;}
.y55_c01439{bottom:327.040000pt;}
.y50_c01439{bottom:360.960000pt;}
.y4f_c01439{bottom:361.600000pt;}
.y4d_c01439{bottom:363.520000pt;}
.y4e_c01439{bottom:364.160000pt;}
.y4b_c01439{bottom:398.720000pt;}
.y4a_c01439{bottom:400.000000pt;}
.y4c_c01439{bottom:401.920000pt;}
.y47_c01439{bottom:436.480000pt;}
.y48_c01439{bottom:437.760000pt;}
.y49_c01439{bottom:438.400000pt;}
.y46_c01439{bottom:440.320000pt;}
.y40_c01439{bottom:475.520000pt;}
.y41_c01439{bottom:476.800000pt;}
.y43_c01439{bottom:477.440000pt;}
.y45_c01439{bottom:478.080000pt;}
.y42_c01439{bottom:478.720000pt;}
.y44_c01439{bottom:479.360000pt;}
.y3f_c01439{bottom:515.200000pt;}
.y3e_c01439{bottom:516.480000pt;}
.y3c_c01439{bottom:517.120000pt;}
.y3d_c01439{bottom:517.760000pt;}
.y3a_c01439{bottom:552.320000pt;}
.y37_c01439{bottom:552.960000pt;}
.y3b_c01439{bottom:554.240000pt;}
.y38_c01439{bottom:554.880000pt;}
.y39_c01439{bottom:555.520000pt;}
.y34_c01439{bottom:592.000000pt;}
.y36_c01439{bottom:593.280000pt;}
.y35_c01439{bottom:593.920000pt;}
.y31_c01439{bottom:628.480000pt;}
.y32_c01439{bottom:629.120000pt;}
.y2d_c01439{bottom:629.760000pt;}
.y2f_c01439{bottom:630.400000pt;}
.y33_c01439{bottom:631.040000pt;}
.y30_c01439{bottom:631.680000pt;}
.y2e_c01439{bottom:632.320000pt;}
.y2a_c01439{bottom:667.520000pt;}
.y29_c01439{bottom:668.160000pt;}
.y2c_c01439{bottom:668.800000pt;}
.y2b_c01439{bottom:670.080000pt;}
.y26_c01439{bottom:704.640000pt;}
.y24_c01439{bottom:705.920000pt;}
.y28_c01439{bottom:707.200000pt;}
.y27_c01439{bottom:707.840000pt;}
.y25_c01439{bottom:708.480000pt;}
.y23_c01439{bottom:742.400000pt;}
.y21_c01439{bottom:743.680000pt;}
.y22_c01439{bottom:744.960000pt;}
.y1f_c01439{bottom:745.600000pt;}
.y20_c01439{bottom:746.240000pt;}
.y1d_c01439{bottom:780.800000pt;}
.y1b_c01439{bottom:781.440000pt;}
.y1e_c01439{bottom:782.720000pt;}
.y1c_c01439{bottom:783.360000pt;}
.y19_c01439{bottom:784.000000pt;}
.y1a_c01439{bottom:784.640000pt;}
.y18_c01439{bottom:818.560000pt;}
.y16_c01439{bottom:819.200000pt;}
.y15_c01439{bottom:819.840000pt;}
.y17_c01439{bottom:821.120000pt;}
.y14_c01439{bottom:821.760000pt;}
.y13_c01439{bottom:822.400000pt;}
.y12_c01439{bottom:823.040000pt;}
.y10_c01439{bottom:856.960000pt;}
.yf_c01439{bottom:857.600000pt;}
.ye_c01439{bottom:858.240000pt;}
.y11_c01439{bottom:859.520000pt;}
.yc_c01439{bottom:860.160000pt;}
.yd_c01439{bottom:860.800000pt;}
.ya_c01439{bottom:896.000000pt;}
.yb_c01439{bottom:897.280000pt;}
.y8_c01439{bottom:897.920000pt;}
.y7_c01439{bottom:898.560000pt;}
.y9_c01439{bottom:899.200000pt;}
.y4_c01439{bottom:934.400000pt;}
.y2_c01439{bottom:935.040000pt;}
.y3_c01439{bottom:935.680000pt;}
.y6_c01439{bottom:936.320000pt;}
.y5_c01439{bottom:936.960000pt;}
.y1_c01439{bottom:986.240000pt;}
.h13_c01439{height:20.733750pt;}
.he_c01439{height:25.341250pt;}
.hb_c01439{height:27.645000pt;}
.h8_c01439{height:29.948750pt;}
.h11_c01439{height:32.252500pt;}
.hc_c01439{height:34.556250pt;}
.h4_c01439{height:36.860000pt;}
.ha_c01439{height:39.163750pt;}
.h6_c01439{height:41.467500pt;}
.h10_c01439{height:43.771250pt;}
.h9_c01439{height:46.075000pt;}
.h7_c01439{height:48.378750pt;}
.h12_c01439{height:49.403750pt;}
.h5_c01439{height:50.682500pt;}
.hf_c01439{height:51.963750pt;}
.hd_c01439{height:52.986250pt;}
.h3_c01439{height:55.290000pt;}
.h2_c01439{height:57.593750pt;}
.h1_c01439{height:1048.000000pt;}
.h0_c01439{height:1048.320000pt;}
.w1_c01439{width:686.000000pt;}
.w0_c01439{width:686.080000pt;}
.x0_c01439{left:0.000000pt;}
.xb_c01439{left:42.880000pt;}
.x2_c01439{left:44.160000pt;}
.x46_c01439{left:45.440000pt;}
.x5e_c01439{left:71.680000pt;}
.x2f_c01439{left:81.280000pt;}
.x1f_c01439{left:91.520000pt;}
.x58_c01439{left:99.840000pt;}
.xc_c01439{left:101.120000pt;}
.x52_c01439{left:109.440000pt;}
.x3_c01439{left:111.360000pt;}
.x3d_c01439{left:119.680000pt;}
.x1a_c01439{left:120.960000pt;}
.x4_c01439{left:130.560000pt;}
.x42_c01439{left:138.880000pt;}
.x14_c01439{left:140.160000pt;}
.x3e_c01439{left:147.840000pt;}
.x33_c01439{left:149.120000pt;}
.x4e_c01439{left:157.440000pt;}
.x30_c01439{left:177.280000pt;}
.x34_c01439{left:178.560000pt;}
.x38_c01439{left:188.160000pt;}
.x1b_c01439{left:197.760000pt;}
.x2b_c01439{left:206.720000pt;}
.x20_c01439{left:216.320000pt;}
.x5_c01439{left:226.560000pt;}
.x4c_c01439{left:234.880000pt;}
.x47_c01439{left:236.160000pt;}
.x1c_c01439{left:237.440000pt;}
.x53_c01439{left:245.120000pt;}
.x48_c01439{left:253.440000pt;}
.x15_c01439{left:255.360000pt;}
.x6_c01439{left:256.640000pt;}
.x5d_c01439{left:263.680000pt;}
.xd_c01439{left:264.960000pt;}
.x4f_c01439{left:266.240000pt;}
.x5c_c01439{left:273.920000pt;}
.x54_c01439{left:282.880000pt;}
.x16_c01439{left:284.160000pt;}
.x4b_c01439{left:291.840000pt;}
.x25_c01439{left:293.120000pt;}
.x5f_c01439{left:302.720000pt;}
.x31_c01439{left:312.320000pt;}
.x55_c01439{left:321.280000pt;}
.xe_c01439{left:322.560000pt;}
.x21_c01439{left:330.880000pt;}
.x28_c01439{left:332.160000pt;}
.x1d_c01439{left:341.760000pt;}
.x39_c01439{left:350.080000pt;}
.x17_c01439{left:352.000000pt;}
.x3f_c01439{left:359.680000pt;}
.x26_c01439{left:369.920000pt;}
.x3a_c01439{left:378.880000pt;}
.x7_c01439{left:380.160000pt;}
.x59_c01439{left:387.840000pt;}
.x1e_c01439{left:389.760000pt;}
.x2c_c01439{left:398.080000pt;}
.xf_c01439{left:399.360000pt;}
.x35_c01439{left:408.320000pt;}
.x40_c01439{left:416.000000pt;}
.x43_c01439{left:417.280000pt;}
.x8_c01439{left:419.200000pt;}
.x50_c01439{left:426.240000pt;}
.x10_c01439{left:428.160000pt;}
.x36_c01439{left:435.840000pt;}
.x60_c01439{left:444.800000pt;}
.x2d_c01439{left:446.080000pt;}
.x22_c01439{left:455.680000pt;}
.x18_c01439{left:456.960000pt;}
.x5a_c01439{left:464.640000pt;}
.x3b_c01439{left:474.240000pt;}
.x56_c01439{left:483.200000pt;}
.x27_c01439{left:484.480000pt;}
.x29_c01439{left:485.760000pt;}
.x61_c01439{left:492.160000pt;}
.x23_c01439{left:494.080000pt;}
.x4d_c01439{left:503.040000pt;}
.x11_c01439{left:504.960000pt;}
.x57_c01439{left:512.000000pt;}
.x9_c01439{left:515.200000pt;}
.x5b_c01439{left:520.960000pt;}
.x41_c01439{left:522.240000pt;}
.x2a_c01439{left:524.160000pt;}
.x24_c01439{left:531.840000pt;}
.x12_c01439{left:533.760000pt;}
.x49_c01439{left:541.440000pt;}
.x37_c01439{left:542.720000pt;}
.x62_c01439{left:549.760000pt;}
.x3c_c01439{left:551.040000pt;}
.xa_c01439{left:552.960000pt;}
.x44_c01439{left:560.640000pt;}
.x4a_c01439{left:570.240000pt;}
.x13_c01439{left:572.160000pt;}
.x63_c01439{left:579.200000pt;}
.x2e_c01439{left:580.480000pt;}
.x45_c01439{left:588.800000pt;}
.x19_c01439{left:590.720000pt;}
.x1_c01439{left:593.920000pt;}
.x51_c01439{left:598.400000pt;}
.x32_c01439{left:609.280000pt;}
.x64_c01439{left:675.200000pt;}
}





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

.ir_c01440:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01440{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01440;src:url('chunks/assets/font_c23929e5216dbf602be779b8.woff2')format("woff");}.ff1_c01440{font-family:ff1_c01440;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m45_c01440{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);}
.m3b_c01440{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);}
.m3e_c01440{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);}
.m66_c01440{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m3_c01440{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);}
.m64_c01440{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);}
.m57_c01440{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);}
.m47_c01440{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);}
.m53_c01440{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);}
.m4a_c01440{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);}
.m4c_c01440{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);}
.m67_c01440{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m5c_c01440{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m55_c01440{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m44_c01440{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m52_c01440{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m16_c01440{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m54_c01440{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m51_c01440{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m60_c01440{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01440{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m29_c01440{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01440{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m65_c01440{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m14_c01440{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);}
.m25_c01440{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);}
.m3d_c01440{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m0_c01440{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);}
.m28_c01440{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m5_c01440{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m42_c01440{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m18_c01440{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m19_c01440{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);}
.m48_c01440{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);}
.m41_c01440{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m5b_c01440{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m12_c01440{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);}
.m2e_c01440{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m34_c01440{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m20_c01440{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);}
.m1a_c01440{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m13_c01440{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);}
.m58_c01440{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_c01440{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);}
.m43_c01440{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.mc_c01440{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m1_c01440{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m46_c01440{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);}
.m2a_c01440{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m24_c01440{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);}
.me_c01440{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01440{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);}
.m17_c01440{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);}
.m3c_c01440{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m30_c01440{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01440{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01440{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m2_c01440{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);}
.m59_c01440{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m4_c01440{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);}
.m6_c01440{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m9_c01440{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.mf_c01440{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);}
.m23_c01440{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m40_c01440{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m37_c01440{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m33_c01440{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01440{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.md_c01440{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.mb_c01440{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);}
.m2c_c01440{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01440{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m7_c01440{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);}
.m31_c01440{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m35_c01440{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m38_c01440{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);}
.m36_c01440{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m49_c01440{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m5e_c01440{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m39_c01440{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);}
.m15_c01440{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m26_c01440{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);}
.m2b_c01440{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);}
.m22_c01440{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m8_c01440{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m11_c01440{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01440{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m27_c01440{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m10_c01440{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01440{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);}
.m3a_c01440{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m5d_c01440{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m21_c01440{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);}
.m32_c01440{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.ma_c01440{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m5a_c01440{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m62_c01440{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m5f_c01440{transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);}
.m63_c01440{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.m61_c01440{transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);}
.m56_c01440{transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);}
.m50_c01440{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01440{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.m4e_c01440{transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);}
.v0_c01440{vertical-align:0.000000px;}
.v1_c01440{vertical-align:2.880000px;}
.ls0_c01440{letter-spacing:0.000000px;}
.sc__c01440{text-shadow:none;}
.sc0_c01440{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01440{-webkit-text-stroke:0px transparent;}
.sc0_c01440{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01440{word-spacing:0.000000px;}
.ws0_c01440{word-spacing:6.886800px;}
.fc0_c01440{color:transparent;}
.fsf_c01440{font-size:14.400000px;}
.fse_c01440{font-size:17.280000px;}
.fs10_c01440{font-size:23.040000px;}
.fs6_c01440{font-size:34.560000px;}
.fs8_c01440{font-size:37.440000px;}
.fsd_c01440{font-size:43.200000px;}
.fs2_c01440{font-size:46.080000px;}
.fs1_c01440{font-size:48.960000px;}
.fs4_c01440{font-size:51.840000px;}
.fsc_c01440{font-size:54.720000px;}
.fsb_c01440{font-size:57.600000px;}
.fs9_c01440{font-size:60.480000px;}
.fs5_c01440{font-size:63.360000px;}
.fs7_c01440{font-size:66.240000px;}
.fs3_c01440{font-size:69.120000px;}
.fsa_c01440{font-size:72.000000px;}
.fs11_c01440{font-size:74.880000px;}
.fs0_c01440{font-size:77.760000px;}
.y0_c01440{bottom:0.000000px;}
.y7c_c01440{bottom:70.560000px;}
.y7a_c01440{bottom:71.280000px;}
.y7b_c01440{bottom:74.160000px;}
.y74_c01440{bottom:103.680000px;}
.y72_c01440{bottom:104.400000px;}
.y73_c01440{bottom:106.560000px;}
.y71_c01440{bottom:107.280000px;}
.y78_c01440{bottom:108.000000px;}
.y75_c01440{bottom:108.720000px;}
.y79_c01440{bottom:109.440000px;}
.y76_c01440{bottom:110.160000px;}
.y77_c01440{bottom:110.880000px;}
.y6d_c01440{bottom:146.160000px;}
.y6c_c01440{bottom:149.760000px;}
.y6f_c01440{bottom:150.480000px;}
.y6e_c01440{bottom:151.200000px;}
.y70_c01440{bottom:151.920000px;}
.y65_c01440{bottom:188.640000px;}
.y68_c01440{bottom:190.080000px;}
.y67_c01440{bottom:192.240000px;}
.y66_c01440{bottom:192.960000px;}
.y69_c01440{bottom:193.680000px;}
.y64_c01440{bottom:194.400000px;}
.y6b_c01440{bottom:195.120000px;}
.y6a_c01440{bottom:195.840000px;}
.y60_c01440{bottom:232.560000px;}
.y5f_c01440{bottom:236.160000px;}
.y62_c01440{bottom:237.600000px;}
.y61_c01440{bottom:238.320000px;}
.y63_c01440{bottom:239.040000px;}
.y5a_c01440{bottom:276.480000px;}
.y5b_c01440{bottom:279.360000px;}
.y5e_c01440{bottom:281.520000px;}
.y5c_c01440{bottom:282.240000px;}
.y5d_c01440{bottom:282.960000px;}
.y58_c01440{bottom:331.200000px;}
.y59_c01440{bottom:333.360000px;}
.y56_c01440{bottom:375.120000px;}
.y55_c01440{bottom:376.560000px;}
.y57_c01440{bottom:378.720000px;}
.y4d_c01440{bottom:429.120000px;}
.y50_c01440{bottom:430.560000px;}
.y4b_c01440{bottom:431.280000px;}
.y49_c01440{bottom:432.000000px;}
.y4c_c01440{bottom:432.720000px;}
.y4a_c01440{bottom:433.440000px;}
.y54_c01440{bottom:441.360000px;}
.y52_c01440{bottom:442.800000px;}
.y53_c01440{bottom:446.400000px;}
.y48_c01440{bottom:460.800000px;}
.y4f_c01440{bottom:461.520000px;}
.y46_c01440{bottom:463.680000px;}
.y47_c01440{bottom:465.120000px;}
.y4e_c01440{bottom:465.840000px;}
.y51_c01440{bottom:466.560000px;}
.y42_c01440{bottom:503.280000px;}
.y44_c01440{bottom:504.000000px;}
.y43_c01440{bottom:506.160000px;}
.y45_c01440{bottom:506.880000px;}
.y3d_c01440{bottom:546.480000px;}
.y40_c01440{bottom:547.200000px;}
.y3f_c01440{bottom:547.920000px;}
.y3e_c01440{bottom:549.360000px;}
.y41_c01440{bottom:550.080000px;}
.y38_c01440{bottom:589.680000px;}
.y3a_c01440{bottom:590.400000px;}
.y3b_c01440{bottom:591.840000px;}
.y39_c01440{bottom:592.560000px;}
.y3c_c01440{bottom:593.280000px;}
.y35_c01440{bottom:632.160000px;}
.y34_c01440{bottom:632.880000px;}
.y37_c01440{bottom:633.600000px;}
.y32_c01440{bottom:635.040000px;}
.y33_c01440{bottom:635.760000px;}
.y36_c01440{bottom:636.480000px;}
.y2e_c01440{bottom:686.160000px;}
.y30_c01440{bottom:686.880000px;}
.y2d_c01440{bottom:688.320000px;}
.y2f_c01440{bottom:689.040000px;}
.y31_c01440{bottom:689.760000px;}
.y2b_c01440{bottom:728.640000px;}
.y29_c01440{bottom:731.520000px;}
.y2c_c01440{bottom:732.240000px;}
.y2a_c01440{bottom:732.960000px;}
.y28_c01440{bottom:770.400000px;}
.y24_c01440{bottom:771.120000px;}
.y27_c01440{bottom:771.840000px;}
.y26_c01440{bottom:774.000000px;}
.y25_c01440{bottom:774.720000px;}
.y23_c01440{bottom:812.880000px;}
.y21_c01440{bottom:814.320000px;}
.y20_c01440{bottom:815.040000px;}
.y22_c01440{bottom:816.480000px;}
.y1e_c01440{bottom:817.200000px;}
.y1f_c01440{bottom:817.920000px;}
.y19_c01440{bottom:856.800000px;}
.y1b_c01440{bottom:857.520000px;}
.y1d_c01440{bottom:858.960000px;}
.y1a_c01440{bottom:860.400000px;}
.y1c_c01440{bottom:861.120000px;}
.y15_c01440{bottom:900.000000px;}
.y16_c01440{bottom:900.720000px;}
.y13_c01440{bottom:901.440000px;}
.y18_c01440{bottom:902.880000px;}
.y17_c01440{bottom:903.600000px;}
.y14_c01440{bottom:904.320000px;}
.y12_c01440{bottom:943.200000px;}
.y11_c01440{bottom:943.920000px;}
.y10_c01440{bottom:946.080000px;}
.ye_c01440{bottom:946.800000px;}
.yf_c01440{bottom:947.520000px;}
.yc_c01440{bottom:985.680000px;}
.y8_c01440{bottom:986.400000px;}
.yd_c01440{bottom:988.560000px;}
.yb_c01440{bottom:989.280000px;}
.y9_c01440{bottom:990.000000px;}
.ya_c01440{bottom:990.720000px;}
.y4_c01440{bottom:1030.320000px;}
.y3_c01440{bottom:1031.040000px;}
.y7_c01440{bottom:1031.760000px;}
.y6_c01440{bottom:1032.480000px;}
.y5_c01440{bottom:1033.200000px;}
.y2_c01440{bottom:1033.920000px;}
.y1_c01440{bottom:1089.360000px;}
.h12_c01440{height:12.958594px;}
.h11_c01440{height:15.550313px;}
.h13_c01440{height:20.733750px;}
.h8_c01440{height:31.100625px;}
.ha_c01440{height:33.692344px;}
.hf_c01440{height:38.875781px;}
.h4_c01440{height:41.467500px;}
.h3_c01440{height:44.059219px;}
.h6_c01440{height:46.650937px;}
.he_c01440{height:49.242656px;}
.h10_c01440{height:49.530938px;}
.hd_c01440{height:51.834375px;}
.hb_c01440{height:54.426094px;}
.h7_c01440{height:57.017812px;}
.h9_c01440{height:59.609531px;}
.h5_c01440{height:62.201250px;}
.hc_c01440{height:64.792969px;}
.h14_c01440{height:67.384687px;}
.h2_c01440{height:69.976406px;}
.h0_c01440{height:1158.480000px;}
.h1_c01440{height:1158.750000px;}
.w0_c01440{width:774.000000px;}
.x0_c01440{left:0.000000px;}
.xa_c01440{left:47.520000px;}
.x3c_c01440{left:48.960000px;}
.x44_c01440{left:50.400000px;}
.x4c_c01440{left:51.840000px;}
.x45_c01440{left:69.120000px;}
.x15_c01440{left:79.920000px;}
.x2c_c01440{left:90.720000px;}
.x50_c01440{left:92.160000px;}
.xb_c01440{left:102.960000px;}
.x28_c01440{left:111.600000px;}
.x2d_c01440{left:123.120000px;}
.x40_c01440{left:124.560000px;}
.xc_c01440{left:134.640000px;}
.x23_c01440{left:144.720000px;}
.x2_c01440{left:155.520000px;}
.x48_c01440{left:157.680000px;}
.x16_c01440{left:167.040000px;}
.x32_c01440{left:177.840000px;}
.x4d_c01440{left:179.280000px;}
.x3_c01440{left:187.920000px;}
.x51_c01440{left:190.080000px;}
.x17_c01440{left:198.720000px;}
.x46_c01440{left:211.680000px;}
.xd_c01440{left:220.320000px;}
.x1d_c01440{left:221.760000px;}
.x24_c01440{left:231.840000px;}
.x4e_c01440{left:233.280000px;}
.x41_c01440{left:241.920000px;}
.x4_c01440{left:243.360000px;}
.x2e_c01440{left:254.160000px;}
.xe_c01440{left:264.240000px;}
.x43_c01440{left:265.680000px;}
.x18_c01440{left:275.040000px;}
.x38_c01440{left:285.120000px;}
.x47_c01440{left:286.560000px;}
.x3d_c01440{left:295.920000px;}
.xf_c01440{left:307.440000px;}
.x35_c01440{left:318.960000px;}
.x5_c01440{left:329.040000px;}
.x42_c01440{left:330.480000px;}
.x2f_c01440{left:340.560000px;}
.x36_c01440{left:351.360000px;}
.x25_c01440{left:361.440000px;}
.x6_c01440{left:371.520000px;}
.x30_c01440{left:372.960000px;}
.x3e_c01440{left:382.320000px;}
.x1e_c01440{left:383.760000px;}
.x26_c01440{left:393.120000px;}
.x29_c01440{left:415.440000px;}
.x1f_c01440{left:426.960000px;}
.x10_c01440{left:437.040000px;}
.x19_c01440{left:457.920000px;}
.x33_c01440{left:468.000000px;}
.x1a_c01440{left:480.240000px;}
.x7_c01440{left:490.320000px;}
.x1b_c01440{left:501.120000px;}
.x11_c01440{left:511.920000px;}
.x8_c01440{left:523.440000px;}
.x12_c01440{left:533.520000px;}
.x39_c01440{left:544.320000px;}
.x31_c01440{left:554.400000px;}
.x20_c01440{left:555.840000px;}
.x3a_c01440{left:565.200000px;}
.x9_c01440{left:576.720000px;}
.x21_c01440{left:587.520000px;}
.x37_c01440{left:596.880000px;}
.x2a_c01440{left:598.320000px;}
.x34_c01440{left:609.120000px;}
.x13_c01440{left:620.640000px;}
.x2b_c01440{left:630.720000px;}
.x49_c01440{left:640.080000px;}
.x27_c01440{left:641.520000px;}
.x3b_c01440{left:652.320000px;}
.x1_c01440{left:663.120000px;}
.x1c_c01440{left:673.920000px;}
.x22_c01440{left:685.440000px;}
.x3f_c01440{left:694.800000px;}
.x14_c01440{left:697.680000px;}
.x4a_c01440{left:705.600000px;}
.x4f_c01440{left:726.480000px;}
.x4b_c01440{left:737.280000px;}
@media print{
.v0_c01440{vertical-align:0.000000pt;}
.v1_c01440{vertical-align:2.560000pt;}
.ls0_c01440{letter-spacing:0.000000pt;}
.ws1_c01440{word-spacing:0.000000pt;}
.ws0_c01440{word-spacing:6.121600pt;}
.fsf_c01440{font-size:12.800000pt;}
.fse_c01440{font-size:15.360000pt;}
.fs10_c01440{font-size:20.480000pt;}
.fs6_c01440{font-size:30.720000pt;}
.fs8_c01440{font-size:33.280000pt;}
.fsd_c01440{font-size:38.400000pt;}
.fs2_c01440{font-size:40.960000pt;}
.fs1_c01440{font-size:43.520000pt;}
.fs4_c01440{font-size:46.080000pt;}
.fsc_c01440{font-size:48.640000pt;}
.fsb_c01440{font-size:51.200000pt;}
.fs9_c01440{font-size:53.760000pt;}
.fs5_c01440{font-size:56.320000pt;}
.fs7_c01440{font-size:58.880000pt;}
.fs3_c01440{font-size:61.440000pt;}
.fsa_c01440{font-size:64.000000pt;}
.fs11_c01440{font-size:66.560000pt;}
.fs0_c01440{font-size:69.120000pt;}
.y0_c01440{bottom:0.000000pt;}
.y7c_c01440{bottom:62.720000pt;}
.y7a_c01440{bottom:63.360000pt;}
.y7b_c01440{bottom:65.920000pt;}
.y74_c01440{bottom:92.160000pt;}
.y72_c01440{bottom:92.800000pt;}
.y73_c01440{bottom:94.720000pt;}
.y71_c01440{bottom:95.360000pt;}
.y78_c01440{bottom:96.000000pt;}
.y75_c01440{bottom:96.640000pt;}
.y79_c01440{bottom:97.280000pt;}
.y76_c01440{bottom:97.920000pt;}
.y77_c01440{bottom:98.560000pt;}
.y6d_c01440{bottom:129.920000pt;}
.y6c_c01440{bottom:133.120000pt;}
.y6f_c01440{bottom:133.760000pt;}
.y6e_c01440{bottom:134.400000pt;}
.y70_c01440{bottom:135.040000pt;}
.y65_c01440{bottom:167.680000pt;}
.y68_c01440{bottom:168.960000pt;}
.y67_c01440{bottom:170.880000pt;}
.y66_c01440{bottom:171.520000pt;}
.y69_c01440{bottom:172.160000pt;}
.y64_c01440{bottom:172.800000pt;}
.y6b_c01440{bottom:173.440000pt;}
.y6a_c01440{bottom:174.080000pt;}
.y60_c01440{bottom:206.720000pt;}
.y5f_c01440{bottom:209.920000pt;}
.y62_c01440{bottom:211.200000pt;}
.y61_c01440{bottom:211.840000pt;}
.y63_c01440{bottom:212.480000pt;}
.y5a_c01440{bottom:245.760000pt;}
.y5b_c01440{bottom:248.320000pt;}
.y5e_c01440{bottom:250.240000pt;}
.y5c_c01440{bottom:250.880000pt;}
.y5d_c01440{bottom:251.520000pt;}
.y58_c01440{bottom:294.400000pt;}
.y59_c01440{bottom:296.320000pt;}
.y56_c01440{bottom:333.440000pt;}
.y55_c01440{bottom:334.720000pt;}
.y57_c01440{bottom:336.640000pt;}
.y4d_c01440{bottom:381.440000pt;}
.y50_c01440{bottom:382.720000pt;}
.y4b_c01440{bottom:383.360000pt;}
.y49_c01440{bottom:384.000000pt;}
.y4c_c01440{bottom:384.640000pt;}
.y4a_c01440{bottom:385.280000pt;}
.y54_c01440{bottom:392.320000pt;}
.y52_c01440{bottom:393.600000pt;}
.y53_c01440{bottom:396.800000pt;}
.y48_c01440{bottom:409.600000pt;}
.y4f_c01440{bottom:410.240000pt;}
.y46_c01440{bottom:412.160000pt;}
.y47_c01440{bottom:413.440000pt;}
.y4e_c01440{bottom:414.080000pt;}
.y51_c01440{bottom:414.720000pt;}
.y42_c01440{bottom:447.360000pt;}
.y44_c01440{bottom:448.000000pt;}
.y43_c01440{bottom:449.920000pt;}
.y45_c01440{bottom:450.560000pt;}
.y3d_c01440{bottom:485.760000pt;}
.y40_c01440{bottom:486.400000pt;}
.y3f_c01440{bottom:487.040000pt;}
.y3e_c01440{bottom:488.320000pt;}
.y41_c01440{bottom:488.960000pt;}
.y38_c01440{bottom:524.160000pt;}
.y3a_c01440{bottom:524.800000pt;}
.y3b_c01440{bottom:526.080000pt;}
.y39_c01440{bottom:526.720000pt;}
.y3c_c01440{bottom:527.360000pt;}
.y35_c01440{bottom:561.920000pt;}
.y34_c01440{bottom:562.560000pt;}
.y37_c01440{bottom:563.200000pt;}
.y32_c01440{bottom:564.480000pt;}
.y33_c01440{bottom:565.120000pt;}
.y36_c01440{bottom:565.760000pt;}
.y2e_c01440{bottom:609.920000pt;}
.y30_c01440{bottom:610.560000pt;}
.y2d_c01440{bottom:611.840000pt;}
.y2f_c01440{bottom:612.480000pt;}
.y31_c01440{bottom:613.120000pt;}
.y2b_c01440{bottom:647.680000pt;}
.y29_c01440{bottom:650.240000pt;}
.y2c_c01440{bottom:650.880000pt;}
.y2a_c01440{bottom:651.520000pt;}
.y28_c01440{bottom:684.800000pt;}
.y24_c01440{bottom:685.440000pt;}
.y27_c01440{bottom:686.080000pt;}
.y26_c01440{bottom:688.000000pt;}
.y25_c01440{bottom:688.640000pt;}
.y23_c01440{bottom:722.560000pt;}
.y21_c01440{bottom:723.840000pt;}
.y20_c01440{bottom:724.480000pt;}
.y22_c01440{bottom:725.760000pt;}
.y1e_c01440{bottom:726.400000pt;}
.y1f_c01440{bottom:727.040000pt;}
.y19_c01440{bottom:761.600000pt;}
.y1b_c01440{bottom:762.240000pt;}
.y1d_c01440{bottom:763.520000pt;}
.y1a_c01440{bottom:764.800000pt;}
.y1c_c01440{bottom:765.440000pt;}
.y15_c01440{bottom:800.000000pt;}
.y16_c01440{bottom:800.640000pt;}
.y13_c01440{bottom:801.280000pt;}
.y18_c01440{bottom:802.560000pt;}
.y17_c01440{bottom:803.200000pt;}
.y14_c01440{bottom:803.840000pt;}
.y12_c01440{bottom:838.400000pt;}
.y11_c01440{bottom:839.040000pt;}
.y10_c01440{bottom:840.960000pt;}
.ye_c01440{bottom:841.600000pt;}
.yf_c01440{bottom:842.240000pt;}
.yc_c01440{bottom:876.160000pt;}
.y8_c01440{bottom:876.800000pt;}
.yd_c01440{bottom:878.720000pt;}
.yb_c01440{bottom:879.360000pt;}
.y9_c01440{bottom:880.000000pt;}
.ya_c01440{bottom:880.640000pt;}
.y4_c01440{bottom:915.840000pt;}
.y3_c01440{bottom:916.480000pt;}
.y7_c01440{bottom:917.120000pt;}
.y6_c01440{bottom:917.760000pt;}
.y5_c01440{bottom:918.400000pt;}
.y2_c01440{bottom:919.040000pt;}
.y1_c01440{bottom:968.320000pt;}
.h12_c01440{height:11.518750pt;}
.h11_c01440{height:13.822500pt;}
.h13_c01440{height:18.430000pt;}
.h8_c01440{height:27.645000pt;}
.ha_c01440{height:29.948750pt;}
.hf_c01440{height:34.556250pt;}
.h4_c01440{height:36.860000pt;}
.h3_c01440{height:39.163750pt;}
.h6_c01440{height:41.467500pt;}
.he_c01440{height:43.771250pt;}
.h10_c01440{height:44.027500pt;}
.hd_c01440{height:46.075000pt;}
.hb_c01440{height:48.378750pt;}
.h7_c01440{height:50.682500pt;}
.h9_c01440{height:52.986250pt;}
.h5_c01440{height:55.290000pt;}
.hc_c01440{height:57.593750pt;}
.h14_c01440{height:59.897500pt;}
.h2_c01440{height:62.201250pt;}
.h0_c01440{height:1029.760000pt;}
.h1_c01440{height:1030.000000pt;}
.w0_c01440{width:688.000000pt;}
.x0_c01440{left:0.000000pt;}
.xa_c01440{left:42.240000pt;}
.x3c_c01440{left:43.520000pt;}
.x44_c01440{left:44.800000pt;}
.x4c_c01440{left:46.080000pt;}
.x45_c01440{left:61.440000pt;}
.x15_c01440{left:71.040000pt;}
.x2c_c01440{left:80.640000pt;}
.x50_c01440{left:81.920000pt;}
.xb_c01440{left:91.520000pt;}
.x28_c01440{left:99.200000pt;}
.x2d_c01440{left:109.440000pt;}
.x40_c01440{left:110.720000pt;}
.xc_c01440{left:119.680000pt;}
.x23_c01440{left:128.640000pt;}
.x2_c01440{left:138.240000pt;}
.x48_c01440{left:140.160000pt;}
.x16_c01440{left:148.480000pt;}
.x32_c01440{left:158.080000pt;}
.x4d_c01440{left:159.360000pt;}
.x3_c01440{left:167.040000pt;}
.x51_c01440{left:168.960000pt;}
.x17_c01440{left:176.640000pt;}
.x46_c01440{left:188.160000pt;}
.xd_c01440{left:195.840000pt;}
.x1d_c01440{left:197.120000pt;}
.x24_c01440{left:206.080000pt;}
.x4e_c01440{left:207.360000pt;}
.x41_c01440{left:215.040000pt;}
.x4_c01440{left:216.320000pt;}
.x2e_c01440{left:225.920000pt;}
.xe_c01440{left:234.880000pt;}
.x43_c01440{left:236.160000pt;}
.x18_c01440{left:244.480000pt;}
.x38_c01440{left:253.440000pt;}
.x47_c01440{left:254.720000pt;}
.x3d_c01440{left:263.040000pt;}
.xf_c01440{left:273.280000pt;}
.x35_c01440{left:283.520000pt;}
.x5_c01440{left:292.480000pt;}
.x42_c01440{left:293.760000pt;}
.x2f_c01440{left:302.720000pt;}
.x36_c01440{left:312.320000pt;}
.x25_c01440{left:321.280000pt;}
.x6_c01440{left:330.240000pt;}
.x30_c01440{left:331.520000pt;}
.x3e_c01440{left:339.840000pt;}
.x1e_c01440{left:341.120000pt;}
.x26_c01440{left:349.440000pt;}
.x29_c01440{left:369.280000pt;}
.x1f_c01440{left:379.520000pt;}
.x10_c01440{left:388.480000pt;}
.x19_c01440{left:407.040000pt;}
.x33_c01440{left:416.000000pt;}
.x1a_c01440{left:426.880000pt;}
.x7_c01440{left:435.840000pt;}
.x1b_c01440{left:445.440000pt;}
.x11_c01440{left:455.040000pt;}
.x8_c01440{left:465.280000pt;}
.x12_c01440{left:474.240000pt;}
.x39_c01440{left:483.840000pt;}
.x31_c01440{left:492.800000pt;}
.x20_c01440{left:494.080000pt;}
.x3a_c01440{left:502.400000pt;}
.x9_c01440{left:512.640000pt;}
.x21_c01440{left:522.240000pt;}
.x37_c01440{left:530.560000pt;}
.x2a_c01440{left:531.840000pt;}
.x34_c01440{left:541.440000pt;}
.x13_c01440{left:551.680000pt;}
.x2b_c01440{left:560.640000pt;}
.x49_c01440{left:568.960000pt;}
.x27_c01440{left:570.240000pt;}
.x3b_c01440{left:579.840000pt;}
.x1_c01440{left:589.440000pt;}
.x1c_c01440{left:599.040000pt;}
.x22_c01440{left:609.280000pt;}
.x3f_c01440{left:617.600000pt;}
.x14_c01440{left:620.160000pt;}
.x4a_c01440{left:627.200000pt;}
.x4f_c01440{left:645.760000pt;}
.x4b_c01440{left:655.360000pt;}
}





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

.ir_c01441:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01441{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01441;src:url('chunks/assets/font_0ab0db8852ca2fbaef3bc4ec.woff2')format("woff");}.ff1_c01441{font-family:ff1_c01441;line-height:1.109863;font-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_c01441{transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);}
.m3e_c01441{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);}
.m43_c01441{transform:matrix(0.239325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239325,0.000000,0.000000,0.250000,0,0);}
.ma_c01441{transform:matrix(0.243350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243350,0.000000,0.000000,0.250000,0,0);}
.m14_c01441{transform:matrix(0.247200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247200,0.000000,0.000000,0.250000,0,0);}
.m25_c01441{transform:matrix(0.248200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248200,0.000000,0.000000,0.250000,0,0);}
.m2e_c01441{transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);}
.m27_c01441{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m35_c01441{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01441{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);}
.m37_c01441{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);}
.m2b_c01441{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);}
.m39_c01441{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m10_c01441{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);}
.m29_c01441{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.mf_c01441{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);}
.m22_c01441{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m16_c01441{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m31_c01441{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m21_c01441{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m2_c01441{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m18_c01441{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_c01441{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mc_c01441{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m17_c01441{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m7_c01441{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01441{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m8_c01441{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m13_c01441{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m34_c01441{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m42_c01441{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.me_c01441{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m41_c01441{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m4_c01441{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m30_c01441{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01441{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m23_c01441{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m36_c01441{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);}
.m3b_c01441{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m15_c01441{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.mb_c01441{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.md_c01441{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);}
.m38_c01441{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);}
.m3_c01441{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);}
.m46_c01441{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);}
.m0_c01441{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m5_c01441{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);}
.m40_c01441{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m12_c01441{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);}
.m3c_c01441{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01441{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);}
.m2c_c01441{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m26_c01441{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01441{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m20_c01441{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m1_c01441{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01441{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m28_c01441{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);}
.m1b_c01441{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m45_c01441{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m9_c01441{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m44_c01441{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);}
.m1d_c01441{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01441{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m11_c01441{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);}
.m2f_c01441{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m33_c01441{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);}
.m32_c01441{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m24_c01441{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);}
.m3a_c01441{transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01441{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.v2_c01441{vertical-align:-5.760000px;}
.v1_c01441{vertical-align:-2.880000px;}
.v0_c01441{vertical-align:0.000000px;}
.ls1_c01441{letter-spacing:0.000000px;}
.ls0_c01441{letter-spacing:87.974400px;}
.sc__c01441{text-shadow:none;}
.sc0_c01441{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01441{-webkit-text-stroke:0px transparent;}
.sc0_c01441{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01441{word-spacing:0.000000px;}
.ws0_c01441{word-spacing:9.474000px;}
.fc0_c01441{color:transparent;}
.fse_c01441{font-size:31.680000px;}
.fsf_c01441{font-size:37.440000px;}
.fsd_c01441{font-size:40.320000px;}
.fs9_c01441{font-size:43.200000px;}
.fsa_c01441{font-size:46.080000px;}
.fsc_c01441{font-size:48.960000px;}
.fs4_c01441{font-size:51.840000px;}
.fs7_c01441{font-size:54.720000px;}
.fs6_c01441{font-size:57.600000px;}
.fs1_c01441{font-size:60.480000px;}
.fs5_c01441{font-size:63.360000px;}
.fs2_c01441{font-size:66.240000px;}
.fs3_c01441{font-size:69.120000px;}
.fs0_c01441{font-size:72.000000px;}
.fsb_c01441{font-size:74.880000px;}
.fs8_c01441{font-size:77.760000px;}
.y0_c01441{bottom:0.000000px;}
.y62_c01441{bottom:90.000000px;}
.y64_c01441{bottom:91.440000px;}
.y63_c01441{bottom:93.600000px;}
.y65_c01441{bottom:95.040000px;}
.y60_c01441{bottom:121.680000px;}
.y61_c01441{bottom:123.120000px;}
.y5e_c01441{bottom:125.280000px;}
.y5f_c01441{bottom:126.720000px;}
.y66_c01441{bottom:127.440000px;}
.y5c_c01441{bottom:169.920000px;}
.y5b_c01441{bottom:170.640000px;}
.y5d_c01441{bottom:171.360000px;}
.y14_c01441{bottom:209.520000px;}
.y12_c01441{bottom:211.680000px;}
.y11_c01441{bottom:212.400000px;}
.y13_c01441{bottom:213.120000px;}
.y5a_c01441{bottom:214.560000px;}
.y10_c01441{bottom:252.720000px;}
.yf_c01441{bottom:254.160000px;}
.ye_c01441{bottom:256.320000px;}
.y15_c01441{bottom:257.040000px;}
.y16_c01441{bottom:257.760000px;}
.y59_c01441{bottom:295.920000px;}
.y58_c01441{bottom:298.800000px;}
.y57_c01441{bottom:299.520000px;}
.y54_c01441{bottom:328.320000px;}
.y55_c01441{bottom:330.480000px;}
.y52_c01441{bottom:331.200000px;}
.y56_c01441{bottom:331.920000px;}
.y53_c01441{bottom:332.640000px;}
.y4f_c01441{bottom:371.520000px;}
.y50_c01441{bottom:373.680000px;}
.y4e_c01441{bottom:374.400000px;}
.y51_c01441{bottom:375.120000px;}
.y4b_c01441{bottom:414.720000px;}
.y4c_c01441{bottom:416.880000px;}
.y4d_c01441{bottom:417.600000px;}
.y4a_c01441{bottom:418.320000px;}
.y49_c01441{bottom:419.040000px;}
.y46_c01441{bottom:457.920000px;}
.y47_c01441{bottom:460.080000px;}
.y45_c01441{bottom:460.800000px;}
.y48_c01441{bottom:462.240000px;}
.y42_c01441{bottom:501.120000px;}
.y43_c01441{bottom:502.560000px;}
.y44_c01441{bottom:503.280000px;}
.y41_c01441{bottom:504.720000px;}
.y3f_c01441{bottom:544.320000px;}
.y40_c01441{bottom:545.760000px;}
.y2d_c01441{bottom:546.480000px;}
.y3d_c01441{bottom:547.200000px;}
.y3e_c01441{bottom:547.920000px;}
.y2e_c01441{bottom:548.640000px;}
.y39_c01441{bottom:587.520000px;}
.y3c_c01441{bottom:588.960000px;}
.y2c_c01441{bottom:589.680000px;}
.y38_c01441{bottom:590.400000px;}
.y3b_c01441{bottom:591.120000px;}
.y3a_c01441{bottom:591.840000px;}
.y37_c01441{bottom:631.440000px;}
.y2a_c01441{bottom:632.880000px;}
.y29_c01441{bottom:633.600000px;}
.y2b_c01441{bottom:634.320000px;}
.y36_c01441{bottom:635.040000px;}
.y35_c01441{bottom:674.640000px;}
.y28_c01441{bottom:675.360000px;}
.y27_c01441{bottom:676.080000px;}
.y34_c01441{bottom:678.240000px;}
.y1e_c01441{bottom:718.560000px;}
.y26_c01441{bottom:719.280000px;}
.y1d_c01441{bottom:720.000000px;}
.y1c_c01441{bottom:720.720000px;}
.y1b_c01441{bottom:722.160000px;}
.y33_c01441{bottom:761.760000px;}
.y24_c01441{bottom:762.480000px;}
.y25_c01441{bottom:763.200000px;}
.y32_c01441{bottom:765.360000px;}
.y22_c01441{bottom:805.680000px;}
.y23_c01441{bottom:806.400000px;}
.y31_c01441{bottom:807.840000px;}
.y30_c01441{bottom:848.160000px;}
.y20_c01441{bottom:848.880000px;}
.y21_c01441{bottom:851.040000px;}
.y2f_c01441{bottom:851.760000px;}
.y1a_c01441{bottom:891.360000px;}
.y1f_c01441{bottom:892.080000px;}
.y19_c01441{bottom:893.520000px;}
.y17_c01441{bottom:936.000000px;}
.y18_c01441{bottom:938.160000px;}
.yd_c01441{bottom:987.120000px;}
.y8_c01441{bottom:988.560000px;}
.yc_c01441{bottom:989.280000px;}
.y9_c01441{bottom:990.000000px;}
.yb_c01441{bottom:990.720000px;}
.ya_c01441{bottom:991.440000px;}
.y7_c01441{bottom:992.160000px;}
.y5_c01441{bottom:1031.760000px;}
.y3_c01441{bottom:1032.480000px;}
.y2_c01441{bottom:1033.200000px;}
.y6_c01441{bottom:1033.920000px;}
.y4_c01441{bottom:1034.640000px;}
.y1_c01441{bottom:1079.280000px;}
.h10_c01441{height:28.508906px;}
.h11_c01441{height:33.692344px;}
.hf_c01441{height:36.284062px;}
.hb_c01441{height:38.875781px;}
.hc_c01441{height:41.467500px;}
.he_c01441{height:44.059219px;}
.h6_c01441{height:46.650937px;}
.h9_c01441{height:49.242656px;}
.h8_c01441{height:51.834375px;}
.h3_c01441{height:54.426094px;}
.h7_c01441{height:57.017812px;}
.h4_c01441{height:59.609531px;}
.h5_c01441{height:62.201250px;}
.h2_c01441{height:64.792969px;}
.hd_c01441{height:67.384687px;}
.ha_c01441{height:69.976406px;}
.h1_c01441{height:1161.750000px;}
.h0_c01441{height:1162.080000px;}
.w1_c01441{width:791.250000px;}
.w0_c01441{width:791.280000px;}
.x0_c01441{left:0.000000px;}
.x2_c01441{left:65.520000px;}
.x2a_c01441{left:86.400000px;}
.x1d_c01441{left:106.560000px;}
.x3_c01441{left:108.000000px;}
.x13_c01441{left:117.360000px;}
.x1a_c01441{left:118.800000px;}
.x1b_c01441{left:172.800000px;}
.x14_c01441{left:192.960000px;}
.x4_c01441{left:194.400000px;}
.x15_c01441{left:204.480000px;}
.x1c_c01441{left:226.800000px;}
.xa_c01441{left:248.400000px;}
.x5_c01441{left:259.200000px;}
.x32_c01441{left:269.280000px;}
.x2b_c01441{left:291.600000px;}
.xb_c01441{left:301.680000px;}
.x24_c01441{left:311.040000px;}
.x6_c01441{left:313.200000px;}
.x2c_c01441{left:334.080000px;}
.xc_c01441{left:345.600000px;}
.x25_c01441{left:356.400000px;}
.x31_c01441{left:378.000000px;}
.x36_c01441{left:398.160000px;}
.x26_c01441{left:399.600000px;}
.xd_c01441{left:431.280000px;}
.x2d_c01441{left:462.960000px;}
.x27_c01441{left:473.040000px;}
.xe_c01441{left:475.200000px;}
.x2e_c01441{left:515.520000px;}
.x28_c01441{left:516.960000px;}
.xf_c01441{left:529.200000px;}
.x29_c01441{left:565.200000px;}
.x34_c01441{left:581.760000px;}
.x2f_c01441{left:591.840000px;}
.x23_c01441{left:613.440000px;}
.x1e_c01441{left:615.600000px;}
.x30_c01441{left:624.240000px;}
.x33_c01441{left:645.120000px;}
.x16_c01441{left:646.560000px;}
.x7_c01441{left:648.000000px;}
.x10_c01441{left:649.440000px;}
.x1_c01441{left:671.760000px;}
.x17_c01441{left:678.960000px;}
.x1f_c01441{left:681.120000px;}
.x8_c01441{left:682.560000px;}
.x11_c01441{left:692.640000px;}
.x35_c01441{left:711.360000px;}
.x20_c01441{left:714.240000px;}
.x18_c01441{left:721.440000px;}
.x21_c01441{left:722.880000px;}
.x9_c01441{left:725.040000px;}
.x19_c01441{left:742.320000px;}
.x22_c01441{left:743.760000px;}
.x12_c01441{left:745.200000px;}
@media print{
.v2_c01441{vertical-align:-5.120000pt;}
.v1_c01441{vertical-align:-2.560000pt;}
.v0_c01441{vertical-align:0.000000pt;}
.ls1_c01441{letter-spacing:0.000000pt;}
.ls0_c01441{letter-spacing:78.199467pt;}
.ws1_c01441{word-spacing:0.000000pt;}
.ws0_c01441{word-spacing:8.421333pt;}
.fse_c01441{font-size:28.160000pt;}
.fsf_c01441{font-size:33.280000pt;}
.fsd_c01441{font-size:35.840000pt;}
.fs9_c01441{font-size:38.400000pt;}
.fsa_c01441{font-size:40.960000pt;}
.fsc_c01441{font-size:43.520000pt;}
.fs4_c01441{font-size:46.080000pt;}
.fs7_c01441{font-size:48.640000pt;}
.fs6_c01441{font-size:51.200000pt;}
.fs1_c01441{font-size:53.760000pt;}
.fs5_c01441{font-size:56.320000pt;}
.fs2_c01441{font-size:58.880000pt;}
.fs3_c01441{font-size:61.440000pt;}
.fs0_c01441{font-size:64.000000pt;}
.fsb_c01441{font-size:66.560000pt;}
.fs8_c01441{font-size:69.120000pt;}
.y0_c01441{bottom:0.000000pt;}
.y62_c01441{bottom:80.000000pt;}
.y64_c01441{bottom:81.280000pt;}
.y63_c01441{bottom:83.200000pt;}
.y65_c01441{bottom:84.480000pt;}
.y60_c01441{bottom:108.160000pt;}
.y61_c01441{bottom:109.440000pt;}
.y5e_c01441{bottom:111.360000pt;}
.y5f_c01441{bottom:112.640000pt;}
.y66_c01441{bottom:113.280000pt;}
.y5c_c01441{bottom:151.040000pt;}
.y5b_c01441{bottom:151.680000pt;}
.y5d_c01441{bottom:152.320000pt;}
.y14_c01441{bottom:186.240000pt;}
.y12_c01441{bottom:188.160000pt;}
.y11_c01441{bottom:188.800000pt;}
.y13_c01441{bottom:189.440000pt;}
.y5a_c01441{bottom:190.720000pt;}
.y10_c01441{bottom:224.640000pt;}
.yf_c01441{bottom:225.920000pt;}
.ye_c01441{bottom:227.840000pt;}
.y15_c01441{bottom:228.480000pt;}
.y16_c01441{bottom:229.120000pt;}
.y59_c01441{bottom:263.040000pt;}
.y58_c01441{bottom:265.600000pt;}
.y57_c01441{bottom:266.240000pt;}
.y54_c01441{bottom:291.840000pt;}
.y55_c01441{bottom:293.760000pt;}
.y52_c01441{bottom:294.400000pt;}
.y56_c01441{bottom:295.040000pt;}
.y53_c01441{bottom:295.680000pt;}
.y4f_c01441{bottom:330.240000pt;}
.y50_c01441{bottom:332.160000pt;}
.y4e_c01441{bottom:332.800000pt;}
.y51_c01441{bottom:333.440000pt;}
.y4b_c01441{bottom:368.640000pt;}
.y4c_c01441{bottom:370.560000pt;}
.y4d_c01441{bottom:371.200000pt;}
.y4a_c01441{bottom:371.840000pt;}
.y49_c01441{bottom:372.480000pt;}
.y46_c01441{bottom:407.040000pt;}
.y47_c01441{bottom:408.960000pt;}
.y45_c01441{bottom:409.600000pt;}
.y48_c01441{bottom:410.880000pt;}
.y42_c01441{bottom:445.440000pt;}
.y43_c01441{bottom:446.720000pt;}
.y44_c01441{bottom:447.360000pt;}
.y41_c01441{bottom:448.640000pt;}
.y3f_c01441{bottom:483.840000pt;}
.y40_c01441{bottom:485.120000pt;}
.y2d_c01441{bottom:485.760000pt;}
.y3d_c01441{bottom:486.400000pt;}
.y3e_c01441{bottom:487.040000pt;}
.y2e_c01441{bottom:487.680000pt;}
.y39_c01441{bottom:522.240000pt;}
.y3c_c01441{bottom:523.520000pt;}
.y2c_c01441{bottom:524.160000pt;}
.y38_c01441{bottom:524.800000pt;}
.y3b_c01441{bottom:525.440000pt;}
.y3a_c01441{bottom:526.080000pt;}
.y37_c01441{bottom:561.280000pt;}
.y2a_c01441{bottom:562.560000pt;}
.y29_c01441{bottom:563.200000pt;}
.y2b_c01441{bottom:563.840000pt;}
.y36_c01441{bottom:564.480000pt;}
.y35_c01441{bottom:599.680000pt;}
.y28_c01441{bottom:600.320000pt;}
.y27_c01441{bottom:600.960000pt;}
.y34_c01441{bottom:602.880000pt;}
.y1e_c01441{bottom:638.720000pt;}
.y26_c01441{bottom:639.360000pt;}
.y1d_c01441{bottom:640.000000pt;}
.y1c_c01441{bottom:640.640000pt;}
.y1b_c01441{bottom:641.920000pt;}
.y33_c01441{bottom:677.120000pt;}
.y24_c01441{bottom:677.760000pt;}
.y25_c01441{bottom:678.400000pt;}
.y32_c01441{bottom:680.320000pt;}
.y22_c01441{bottom:716.160000pt;}
.y23_c01441{bottom:716.800000pt;}
.y31_c01441{bottom:718.080000pt;}
.y30_c01441{bottom:753.920000pt;}
.y20_c01441{bottom:754.560000pt;}
.y21_c01441{bottom:756.480000pt;}
.y2f_c01441{bottom:757.120000pt;}
.y1a_c01441{bottom:792.320000pt;}
.y1f_c01441{bottom:792.960000pt;}
.y19_c01441{bottom:794.240000pt;}
.y17_c01441{bottom:832.000000pt;}
.y18_c01441{bottom:833.920000pt;}
.yd_c01441{bottom:877.440000pt;}
.y8_c01441{bottom:878.720000pt;}
.yc_c01441{bottom:879.360000pt;}
.y9_c01441{bottom:880.000000pt;}
.yb_c01441{bottom:880.640000pt;}
.ya_c01441{bottom:881.280000pt;}
.y7_c01441{bottom:881.920000pt;}
.y5_c01441{bottom:917.120000pt;}
.y3_c01441{bottom:917.760000pt;}
.y2_c01441{bottom:918.400000pt;}
.y6_c01441{bottom:919.040000pt;}
.y4_c01441{bottom:919.680000pt;}
.y1_c01441{bottom:959.360000pt;}
.h10_c01441{height:25.341250pt;}
.h11_c01441{height:29.948750pt;}
.hf_c01441{height:32.252500pt;}
.hb_c01441{height:34.556250pt;}
.hc_c01441{height:36.860000pt;}
.he_c01441{height:39.163750pt;}
.h6_c01441{height:41.467500pt;}
.h9_c01441{height:43.771250pt;}
.h8_c01441{height:46.075000pt;}
.h3_c01441{height:48.378750pt;}
.h7_c01441{height:50.682500pt;}
.h4_c01441{height:52.986250pt;}
.h5_c01441{height:55.290000pt;}
.h2_c01441{height:57.593750pt;}
.hd_c01441{height:59.897500pt;}
.ha_c01441{height:62.201250pt;}
.h1_c01441{height:1032.666667pt;}
.h0_c01441{height:1032.960000pt;}
.w1_c01441{width:703.333333pt;}
.w0_c01441{width:703.360000pt;}
.x0_c01441{left:0.000000pt;}
.x2_c01441{left:58.240000pt;}
.x2a_c01441{left:76.800000pt;}
.x1d_c01441{left:94.720000pt;}
.x3_c01441{left:96.000000pt;}
.x13_c01441{left:104.320000pt;}
.x1a_c01441{left:105.600000pt;}
.x1b_c01441{left:153.600000pt;}
.x14_c01441{left:171.520000pt;}
.x4_c01441{left:172.800000pt;}
.x15_c01441{left:181.760000pt;}
.x1c_c01441{left:201.600000pt;}
.xa_c01441{left:220.800000pt;}
.x5_c01441{left:230.400000pt;}
.x32_c01441{left:239.360000pt;}
.x2b_c01441{left:259.200000pt;}
.xb_c01441{left:268.160000pt;}
.x24_c01441{left:276.480000pt;}
.x6_c01441{left:278.400000pt;}
.x2c_c01441{left:296.960000pt;}
.xc_c01441{left:307.200000pt;}
.x25_c01441{left:316.800000pt;}
.x31_c01441{left:336.000000pt;}
.x36_c01441{left:353.920000pt;}
.x26_c01441{left:355.200000pt;}
.xd_c01441{left:383.360000pt;}
.x2d_c01441{left:411.520000pt;}
.x27_c01441{left:420.480000pt;}
.xe_c01441{left:422.400000pt;}
.x2e_c01441{left:458.240000pt;}
.x28_c01441{left:459.520000pt;}
.xf_c01441{left:470.400000pt;}
.x29_c01441{left:502.400000pt;}
.x34_c01441{left:517.120000pt;}
.x2f_c01441{left:526.080000pt;}
.x23_c01441{left:545.280000pt;}
.x1e_c01441{left:547.200000pt;}
.x30_c01441{left:554.880000pt;}
.x33_c01441{left:573.440000pt;}
.x16_c01441{left:574.720000pt;}
.x7_c01441{left:576.000000pt;}
.x10_c01441{left:577.280000pt;}
.x1_c01441{left:597.120000pt;}
.x17_c01441{left:603.520000pt;}
.x1f_c01441{left:605.440000pt;}
.x8_c01441{left:606.720000pt;}
.x11_c01441{left:615.680000pt;}
.x35_c01441{left:632.320000pt;}
.x20_c01441{left:634.880000pt;}
.x18_c01441{left:641.280000pt;}
.x21_c01441{left:642.560000pt;}
.x9_c01441{left:644.480000pt;}
.x19_c01441{left:659.840000pt;}
.x22_c01441{left:661.120000pt;}
.x12_c01441{left:662.400000pt;}
}





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

.ir_c01442:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01442{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01442;src:url('chunks/assets/font_5062d0debc2b5aeb95d1cd66.woff2')format("woff");}.ff1_c01442{font-family:ff1_c01442;line-height:1.109863;font-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_c01442{transform:matrix(0.216150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216150,0.000000,0.000000,0.250000,0,0);}
.m4b_c01442{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m48_c01442{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m42_c01442{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m32_c01442{transform:matrix(0.239425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239425,0.000000,0.000000,0.250000,0,0);}
.m43_c01442{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m4a_c01442{transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);}
.m25_c01442{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_c01442{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01442{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m14_c01442{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);}
.m3c_c01442{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m1_c01442{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_c01442{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);}
.m2c_c01442{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);}
.m3e_c01442{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);}
.m2e_c01442{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m9_c01442{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_c01442{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.ma_c01442{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m11_c01442{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01442{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);}
.m30_c01442{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);}
.m40_c01442{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.md_c01442{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01442{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m12_c01442{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m38_c01442{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01442{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01442{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01442{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m34_c01442{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m39_c01442{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m16_c01442{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m47_c01442{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01442{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m26_c01442{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m24_c01442{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m7_c01442{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01442{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m46_c01442{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);}
.m2f_c01442{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);}
.m44_c01442{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01442{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m17_c01442{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);}
.m33_c01442{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m45_c01442{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);}
.m23_c01442{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_c01442{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m20_c01442{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m36_c01442{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);}
.m29_c01442{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);}
.m5_c01442{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01442{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m21_c01442{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.me_c01442{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);}
.m8_c01442{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);}
.m15_c01442{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m0_c01442{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01442{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m37_c01442{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);}
.m2_c01442{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.mf_c01442{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m27_c01442{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m35_c01442{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m31_c01442{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m49_c01442{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01442{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);}
.m41_c01442{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m13_c01442{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m3_c01442{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);}
.m22_c01442{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m19_c01442{transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);}
.m28_c01442{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01442{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.mc_c01442{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.v0_c01442{vertical-align:0.000000px;}
.ls0_c01442{letter-spacing:0.000000px;}
.sc__c01442{text-shadow:none;}
.sc0_c01442{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01442{-webkit-text-stroke:0px transparent;}
.sc0_c01442{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01442{word-spacing:0.000000px;}
.fc0_c01442{color:transparent;}
.fse_c01442{font-size:20.160000px;}
.fs9_c01442{font-size:37.440000px;}
.fs3_c01442{font-size:40.320000px;}
.fsb_c01442{font-size:46.080000px;}
.fsc_c01442{font-size:48.960000px;}
.fs2_c01442{font-size:51.840000px;}
.fs6_c01442{font-size:54.720000px;}
.fs0_c01442{font-size:57.600000px;}
.fs4_c01442{font-size:60.480000px;}
.fs8_c01442{font-size:63.360000px;}
.fsd_c01442{font-size:66.240000px;}
.fsa_c01442{font-size:69.120000px;}
.fs5_c01442{font-size:72.000000px;}
.fs1_c01442{font-size:74.880000px;}
.fs7_c01442{font-size:77.760000px;}
.y0_c01442{bottom:0.000000px;}
.y4b_c01442{bottom:123.120000px;}
.y4c_c01442{bottom:123.840000px;}
.y4a_c01442{bottom:126.720000px;}
.y74_c01442{bottom:127.440000px;}
.y75_c01442{bottom:128.160000px;}
.y76_c01442{bottom:128.880000px;}
.y48_c01442{bottom:166.320000px;}
.y46_c01442{bottom:167.760000px;}
.y49_c01442{bottom:169.920000px;}
.y72_c01442{bottom:172.080000px;}
.y47_c01442{bottom:172.800000px;}
.y73_c01442{bottom:173.520000px;}
.y42_c01442{bottom:209.520000px;}
.y45_c01442{bottom:211.680000px;}
.y43_c01442{bottom:212.400000px;}
.y41_c01442{bottom:213.120000px;}
.y44_c01442{bottom:213.840000px;}
.y71_c01442{bottom:214.560000px;}
.y70_c01442{bottom:217.440000px;}
.y3e_c01442{bottom:253.440000px;}
.y3c_c01442{bottom:255.600000px;}
.y40_c01442{bottom:256.320000px;}
.y3d_c01442{bottom:257.040000px;}
.y3f_c01442{bottom:257.760000px;}
.y6e_c01442{bottom:258.480000px;}
.y6d_c01442{bottom:260.640000px;}
.y6f_c01442{bottom:261.360000px;}
.y3a_c01442{bottom:296.640000px;}
.y39_c01442{bottom:297.360000px;}
.y38_c01442{bottom:299.520000px;}
.y6c_c01442{bottom:300.240000px;}
.y3b_c01442{bottom:301.680000px;}
.y36_c01442{bottom:340.560000px;}
.y37_c01442{bottom:341.280000px;}
.y35_c01442{bottom:343.440000px;}
.y6a_c01442{bottom:344.880000px;}
.y6b_c01442{bottom:347.040000px;}
.y34_c01442{bottom:383.760000px;}
.y33_c01442{bottom:386.640000px;}
.y67_c01442{bottom:387.360000px;}
.y68_c01442{bottom:388.800000px;}
.y69_c01442{bottom:390.240000px;}
.y31_c01442{bottom:427.680000px;}
.y32_c01442{bottom:428.400000px;}
.y30_c01442{bottom:429.840000px;}
.y65_c01442{bottom:431.280000px;}
.y66_c01442{bottom:433.440000px;}
.y2f_c01442{bottom:470.880000px;}
.y2e_c01442{bottom:473.040000px;}
.y63_c01442{bottom:473.760000px;}
.y64_c01442{bottom:474.480000px;}
.y2a_c01442{bottom:516.240000px;}
.y2b_c01442{bottom:516.960000px;}
.y60_c01442{bottom:517.680000px;}
.y2c_c01442{bottom:518.400000px;}
.y2d_c01442{bottom:519.120000px;}
.y61_c01442{bottom:519.840000px;}
.y62_c01442{bottom:520.560000px;}
.y27_c01442{bottom:559.440000px;}
.y28_c01442{bottom:560.160000px;}
.y5f_c01442{bottom:561.600000px;}
.y29_c01442{bottom:562.320000px;}
.y25_c01442{bottom:602.640000px;}
.y5e_c01442{bottom:604.080000px;}
.y26_c01442{bottom:605.520000px;}
.y5d_c01442{bottom:606.240000px;}
.y21_c01442{bottom:645.840000px;}
.y5c_c01442{bottom:646.560000px;}
.y23_c01442{bottom:647.280000px;}
.y22_c01442{bottom:648.000000px;}
.y24_c01442{bottom:648.720000px;}
.y1f_c01442{bottom:686.880000px;}
.y20_c01442{bottom:687.600000px;}
.y1e_c01442{bottom:688.320000px;}
.y5b_c01442{bottom:689.040000px;}
.y5a_c01442{bottom:691.200000px;}
.y1a_c01442{bottom:730.080000px;}
.y19_c01442{bottom:731.520000px;}
.y18_c01442{bottom:732.240000px;}
.y1d_c01442{bottom:733.680000px;}
.y1c_c01442{bottom:734.400000px;}
.y1b_c01442{bottom:735.120000px;}
.y16_c01442{bottom:773.280000px;}
.y57_c01442{bottom:774.000000px;}
.y17_c01442{bottom:774.720000px;}
.y15_c01442{bottom:775.440000px;}
.y58_c01442{bottom:776.880000px;}
.y59_c01442{bottom:777.600000px;}
.y14_c01442{bottom:817.200000px;}
.y55_c01442{bottom:817.920000px;}
.y13_c01442{bottom:818.640000px;}
.y56_c01442{bottom:820.800000px;}
.y12_c01442{bottom:860.400000px;}
.y53_c01442{bottom:861.120000px;}
.y54_c01442{bottom:861.840000px;}
.y52_c01442{bottom:862.560000px;}
.y11_c01442{bottom:863.280000px;}
.y10_c01442{bottom:904.320000px;}
.y50_c01442{bottom:905.040000px;}
.y51_c01442{bottom:906.480000px;}
.yf_c01442{bottom:907.920000px;}
.ye_c01442{bottom:946.080000px;}
.ya_c01442{bottom:947.520000px;}
.yc_c01442{bottom:948.240000px;}
.y9_c01442{bottom:948.960000px;}
.yd_c01442{bottom:950.400000px;}
.yb_c01442{bottom:951.120000px;}
.y8_c01442{bottom:989.280000px;}
.y4f_c01442{bottom:990.720000px;}
.y6_c01442{bottom:991.440000px;}
.y5_c01442{bottom:993.600000px;}
.y7_c01442{bottom:994.320000px;}
.y2_c01442{bottom:1033.920000px;}
.y4e_c01442{bottom:1034.640000px;}
.y1_c01442{bottom:1036.080000px;}
.y4_c01442{bottom:1037.520000px;}
.y3_c01442{bottom:1038.240000px;}
.y4d_c01442{bottom:1088.640000px;}
.h10_c01442{height:18.142031px;}
.hb_c01442{height:33.692344px;}
.h5_c01442{height:36.284062px;}
.hd_c01442{height:41.467500px;}
.he_c01442{height:44.059219px;}
.h4_c01442{height:46.650937px;}
.h8_c01442{height:49.242656px;}
.h2_c01442{height:51.834375px;}
.h6_c01442{height:54.426094px;}
.ha_c01442{height:57.017812px;}
.hf_c01442{height:59.609531px;}
.hc_c01442{height:62.201250px;}
.h7_c01442{height:64.792969px;}
.h3_c01442{height:67.384687px;}
.h9_c01442{height:69.976406px;}
.h0_c01442{height:1160.640000px;}
.h1_c01442{height:1161.000000px;}
.w1_c01442{width:789.000000px;}
.w0_c01442{width:789.120000px;}
.x0_c01442{left:0.000000px;}
.x1_c01442{left:61.200000px;}
.xf_c01442{left:82.800000px;}
.x1f_c01442{left:84.240000px;}
.x24_c01442{left:92.880000px;}
.x2_c01442{left:114.480000px;}
.x25_c01442{left:138.240000px;}
.x12_c01442{left:190.080000px;}
.x3_c01442{left:201.600000px;}
.x9_c01442{left:212.400000px;}
.x20_c01442{left:223.920000px;}
.x10_c01442{left:234.000000px;}
.x6_c01442{left:244.800000px;}
.x4_c01442{left:256.320000px;}
.x19_c01442{left:265.680000px;}
.xa_c01442{left:267.840000px;}
.xe_c01442{left:277.920000px;}
.x5_c01442{left:298.800000px;}
.x7_c01442{left:300.240000px;}
.x16_c01442{left:309.600000px;}
.x1a_c01442{left:320.400000px;}
.x13_c01442{left:331.920000px;}
.x23_c01442{left:342.000000px;}
.x1d_c01442{left:352.080000px;}
.x11_c01442{left:362.880000px;}
.x14_c01442{left:373.680000px;}
.x17_c01442{left:385.200000px;}
.x1e_c01442{left:395.280000px;}
.xb_c01442{left:396.720000px;}
.x21_c01442{left:406.800000px;}
.x1b_c01442{left:417.600000px;}
.x18_c01442{left:438.480000px;}
.xc_c01442{left:450.720000px;}
.x1c_c01442{left:460.080000px;}
.x8_c01442{left:461.520000px;}
.x15_c01442{left:470.880000px;}
.xd_c01442{left:493.200000px;}
.x22_c01442{left:546.480000px;}
.x2d_c01442{left:581.040000px;}
.x31_c01442{left:590.400000px;}
.x27_c01442{left:591.840000px;}
.x2f_c01442{left:611.280000px;}
.x28_c01442{left:612.720000px;}
.x33_c01442{left:643.680000px;}
.x2a_c01442{left:645.120000px;}
.x26_c01442{left:673.920000px;}
.x34_c01442{left:676.800000px;}
.x2b_c01442{left:678.240000px;}
.x37_c01442{left:686.880000px;}
.x35_c01442{left:709.200000px;}
.x2e_c01442{left:710.640000px;}
.x30_c01442{left:720.000000px;}
.x29_c01442{left:722.160000px;}
.x36_c01442{left:739.440000px;}
.x32_c01442{left:740.880000px;}
.x2c_c01442{left:742.320000px;}
@media print{
.v0_c01442{vertical-align:0.000000pt;}
.ls0_c01442{letter-spacing:0.000000pt;}
.ws0_c01442{word-spacing:0.000000pt;}
.fse_c01442{font-size:17.920000pt;}
.fs9_c01442{font-size:33.280000pt;}
.fs3_c01442{font-size:35.840000pt;}
.fsb_c01442{font-size:40.960000pt;}
.fsc_c01442{font-size:43.520000pt;}
.fs2_c01442{font-size:46.080000pt;}
.fs6_c01442{font-size:48.640000pt;}
.fs0_c01442{font-size:51.200000pt;}
.fs4_c01442{font-size:53.760000pt;}
.fs8_c01442{font-size:56.320000pt;}
.fsd_c01442{font-size:58.880000pt;}
.fsa_c01442{font-size:61.440000pt;}
.fs5_c01442{font-size:64.000000pt;}
.fs1_c01442{font-size:66.560000pt;}
.fs7_c01442{font-size:69.120000pt;}
.y0_c01442{bottom:0.000000pt;}
.y4b_c01442{bottom:109.440000pt;}
.y4c_c01442{bottom:110.080000pt;}
.y4a_c01442{bottom:112.640000pt;}
.y74_c01442{bottom:113.280000pt;}
.y75_c01442{bottom:113.920000pt;}
.y76_c01442{bottom:114.560000pt;}
.y48_c01442{bottom:147.840000pt;}
.y46_c01442{bottom:149.120000pt;}
.y49_c01442{bottom:151.040000pt;}
.y72_c01442{bottom:152.960000pt;}
.y47_c01442{bottom:153.600000pt;}
.y73_c01442{bottom:154.240000pt;}
.y42_c01442{bottom:186.240000pt;}
.y45_c01442{bottom:188.160000pt;}
.y43_c01442{bottom:188.800000pt;}
.y41_c01442{bottom:189.440000pt;}
.y44_c01442{bottom:190.080000pt;}
.y71_c01442{bottom:190.720000pt;}
.y70_c01442{bottom:193.280000pt;}
.y3e_c01442{bottom:225.280000pt;}
.y3c_c01442{bottom:227.200000pt;}
.y40_c01442{bottom:227.840000pt;}
.y3d_c01442{bottom:228.480000pt;}
.y3f_c01442{bottom:229.120000pt;}
.y6e_c01442{bottom:229.760000pt;}
.y6d_c01442{bottom:231.680000pt;}
.y6f_c01442{bottom:232.320000pt;}
.y3a_c01442{bottom:263.680000pt;}
.y39_c01442{bottom:264.320000pt;}
.y38_c01442{bottom:266.240000pt;}
.y6c_c01442{bottom:266.880000pt;}
.y3b_c01442{bottom:268.160000pt;}
.y36_c01442{bottom:302.720000pt;}
.y37_c01442{bottom:303.360000pt;}
.y35_c01442{bottom:305.280000pt;}
.y6a_c01442{bottom:306.560000pt;}
.y6b_c01442{bottom:308.480000pt;}
.y34_c01442{bottom:341.120000pt;}
.y33_c01442{bottom:343.680000pt;}
.y67_c01442{bottom:344.320000pt;}
.y68_c01442{bottom:345.600000pt;}
.y69_c01442{bottom:346.880000pt;}
.y31_c01442{bottom:380.160000pt;}
.y32_c01442{bottom:380.800000pt;}
.y30_c01442{bottom:382.080000pt;}
.y65_c01442{bottom:383.360000pt;}
.y66_c01442{bottom:385.280000pt;}
.y2f_c01442{bottom:418.560000pt;}
.y2e_c01442{bottom:420.480000pt;}
.y63_c01442{bottom:421.120000pt;}
.y64_c01442{bottom:421.760000pt;}
.y2a_c01442{bottom:458.880000pt;}
.y2b_c01442{bottom:459.520000pt;}
.y60_c01442{bottom:460.160000pt;}
.y2c_c01442{bottom:460.800000pt;}
.y2d_c01442{bottom:461.440000pt;}
.y61_c01442{bottom:462.080000pt;}
.y62_c01442{bottom:462.720000pt;}
.y27_c01442{bottom:497.280000pt;}
.y28_c01442{bottom:497.920000pt;}
.y5f_c01442{bottom:499.200000pt;}
.y29_c01442{bottom:499.840000pt;}
.y25_c01442{bottom:535.680000pt;}
.y5e_c01442{bottom:536.960000pt;}
.y26_c01442{bottom:538.240000pt;}
.y5d_c01442{bottom:538.880000pt;}
.y21_c01442{bottom:574.080000pt;}
.y5c_c01442{bottom:574.720000pt;}
.y23_c01442{bottom:575.360000pt;}
.y22_c01442{bottom:576.000000pt;}
.y24_c01442{bottom:576.640000pt;}
.y1f_c01442{bottom:610.560000pt;}
.y20_c01442{bottom:611.200000pt;}
.y1e_c01442{bottom:611.840000pt;}
.y5b_c01442{bottom:612.480000pt;}
.y5a_c01442{bottom:614.400000pt;}
.y1a_c01442{bottom:648.960000pt;}
.y19_c01442{bottom:650.240000pt;}
.y18_c01442{bottom:650.880000pt;}
.y1d_c01442{bottom:652.160000pt;}
.y1c_c01442{bottom:652.800000pt;}
.y1b_c01442{bottom:653.440000pt;}
.y16_c01442{bottom:687.360000pt;}
.y57_c01442{bottom:688.000000pt;}
.y17_c01442{bottom:688.640000pt;}
.y15_c01442{bottom:689.280000pt;}
.y58_c01442{bottom:690.560000pt;}
.y59_c01442{bottom:691.200000pt;}
.y14_c01442{bottom:726.400000pt;}
.y55_c01442{bottom:727.040000pt;}
.y13_c01442{bottom:727.680000pt;}
.y56_c01442{bottom:729.600000pt;}
.y12_c01442{bottom:764.800000pt;}
.y53_c01442{bottom:765.440000pt;}
.y54_c01442{bottom:766.080000pt;}
.y52_c01442{bottom:766.720000pt;}
.y11_c01442{bottom:767.360000pt;}
.y10_c01442{bottom:803.840000pt;}
.y50_c01442{bottom:804.480000pt;}
.y51_c01442{bottom:805.760000pt;}
.yf_c01442{bottom:807.040000pt;}
.ye_c01442{bottom:840.960000pt;}
.ya_c01442{bottom:842.240000pt;}
.yc_c01442{bottom:842.880000pt;}
.y9_c01442{bottom:843.520000pt;}
.yd_c01442{bottom:844.800000pt;}
.yb_c01442{bottom:845.440000pt;}
.y8_c01442{bottom:879.360000pt;}
.y4f_c01442{bottom:880.640000pt;}
.y6_c01442{bottom:881.280000pt;}
.y5_c01442{bottom:883.200000pt;}
.y7_c01442{bottom:883.840000pt;}
.y2_c01442{bottom:919.040000pt;}
.y4e_c01442{bottom:919.680000pt;}
.y1_c01442{bottom:920.960000pt;}
.y4_c01442{bottom:922.240000pt;}
.y3_c01442{bottom:922.880000pt;}
.y4d_c01442{bottom:967.680000pt;}
.h10_c01442{height:16.126250pt;}
.hb_c01442{height:29.948750pt;}
.h5_c01442{height:32.252500pt;}
.hd_c01442{height:36.860000pt;}
.he_c01442{height:39.163750pt;}
.h4_c01442{height:41.467500pt;}
.h8_c01442{height:43.771250pt;}
.h2_c01442{height:46.075000pt;}
.h6_c01442{height:48.378750pt;}
.ha_c01442{height:50.682500pt;}
.hf_c01442{height:52.986250pt;}
.hc_c01442{height:55.290000pt;}
.h7_c01442{height:57.593750pt;}
.h3_c01442{height:59.897500pt;}
.h9_c01442{height:62.201250pt;}
.h0_c01442{height:1031.680000pt;}
.h1_c01442{height:1032.000000pt;}
.w1_c01442{width:701.333333pt;}
.w0_c01442{width:701.440000pt;}
.x0_c01442{left:0.000000pt;}
.x1_c01442{left:54.400000pt;}
.xf_c01442{left:73.600000pt;}
.x1f_c01442{left:74.880000pt;}
.x24_c01442{left:82.560000pt;}
.x2_c01442{left:101.760000pt;}
.x25_c01442{left:122.880000pt;}
.x12_c01442{left:168.960000pt;}
.x3_c01442{left:179.200000pt;}
.x9_c01442{left:188.800000pt;}
.x20_c01442{left:199.040000pt;}
.x10_c01442{left:208.000000pt;}
.x6_c01442{left:217.600000pt;}
.x4_c01442{left:227.840000pt;}
.x19_c01442{left:236.160000pt;}
.xa_c01442{left:238.080000pt;}
.xe_c01442{left:247.040000pt;}
.x5_c01442{left:265.600000pt;}
.x7_c01442{left:266.880000pt;}
.x16_c01442{left:275.200000pt;}
.x1a_c01442{left:284.800000pt;}
.x13_c01442{left:295.040000pt;}
.x23_c01442{left:304.000000pt;}
.x1d_c01442{left:312.960000pt;}
.x11_c01442{left:322.560000pt;}
.x14_c01442{left:332.160000pt;}
.x17_c01442{left:342.400000pt;}
.x1e_c01442{left:351.360000pt;}
.xb_c01442{left:352.640000pt;}
.x21_c01442{left:361.600000pt;}
.x1b_c01442{left:371.200000pt;}
.x18_c01442{left:389.760000pt;}
.xc_c01442{left:400.640000pt;}
.x1c_c01442{left:408.960000pt;}
.x8_c01442{left:410.240000pt;}
.x15_c01442{left:418.560000pt;}
.xd_c01442{left:438.400000pt;}
.x22_c01442{left:485.760000pt;}
.x2d_c01442{left:516.480000pt;}
.x31_c01442{left:524.800000pt;}
.x27_c01442{left:526.080000pt;}
.x2f_c01442{left:543.360000pt;}
.x28_c01442{left:544.640000pt;}
.x33_c01442{left:572.160000pt;}
.x2a_c01442{left:573.440000pt;}
.x26_c01442{left:599.040000pt;}
.x34_c01442{left:601.600000pt;}
.x2b_c01442{left:602.880000pt;}
.x37_c01442{left:610.560000pt;}
.x35_c01442{left:630.400000pt;}
.x2e_c01442{left:631.680000pt;}
.x30_c01442{left:640.000000pt;}
.x29_c01442{left:641.920000pt;}
.x36_c01442{left:657.280000pt;}
.x32_c01442{left:658.560000pt;}
.x2c_c01442{left:659.840000pt;}
}





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

.ir_c01443:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01443{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01443;src:url('chunks/assets/font_6d1cfd8ad2d152a498e67d48.woff2')format("woff");}.ff1_c01443{font-family:ff1_c01443;line-height:1.109863;font-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_c01443{transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);}
.m35_c01443{transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);}
.m38_c01443{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m27_c01443{transform:matrix(0.236475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236475,0.000000,0.000000,0.250000,0,0);}
.m34_c01443{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m3a_c01443{transform:matrix(0.247275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247275,0.000000,0.000000,0.250000,0,0);}
.m17_c01443{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m1c_c01443{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);}
.m2f_c01443{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);}
.m22_c01443{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_c01443{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m13_c01443{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01443{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);}
.m26_c01443{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m19_c01443{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01443{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01443{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m15_c01443{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m33_c01443{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mc_c01443{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m8_c01443{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.md_c01443{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m1_c01443{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01443{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01443{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m9_c01443{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m6_c01443{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m5_c01443{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m42_c01443{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01443{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m36_c01443{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01443{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m18_c01443{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mf_c01443{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01443{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);}
.m2c_c01443{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);}
.m30_c01443{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m7_c01443{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);}
.m41_c01443{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m21_c01443{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m39_c01443{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);}
.m24_c01443{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m0_c01443{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01443{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);}
.m12_c01443{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.me_c01443{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m37_c01443{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01443{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);}
.m31_c01443{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.mb_c01443{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m14_c01443{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01443{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m23_c01443{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m4_c01443{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01443{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m25_c01443{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m11_c01443{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m10_c01443{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_c01443{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m29_c01443{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m2_c01443{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m28_c01443{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.ma_c01443{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m32_c01443{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01443{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m40_c01443{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);}
.m2d_c01443{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.v0_c01443{vertical-align:0.000000px;}
.v1_c01443{vertical-align:5.760000px;}
.ls0_c01443{letter-spacing:0.000000px;}
.sc__c01443{text-shadow:none;}
.sc0_c01443{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01443{-webkit-text-stroke:0px transparent;}
.sc0_c01443{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01443{word-spacing:0.000000px;}
.ws0_c01443{word-spacing:1380.799440px;}
.fc0_c01443{color:transparent;}
.fs2_c01443{font-size:37.440000px;}
.fsc_c01443{font-size:43.200000px;}
.fsa_c01443{font-size:48.960000px;}
.fs3_c01443{font-size:51.840000px;}
.fs4_c01443{font-size:54.720000px;}
.fs8_c01443{font-size:57.600000px;}
.fs1_c01443{font-size:60.480000px;}
.fsb_c01443{font-size:63.360000px;}
.fs9_c01443{font-size:66.240000px;}
.fs6_c01443{font-size:69.120000px;}
.fs0_c01443{font-size:72.000000px;}
.fs5_c01443{font-size:74.880000px;}
.fs7_c01443{font-size:77.760000px;}
.fsd_c01443{font-size:95.040000px;}
.y0_c01443{bottom:0.000000px;}
.y6b_c01443{bottom:120.960000px;}
.y67_c01443{bottom:125.280000px;}
.y66_c01443{bottom:126.720000px;}
.y69_c01443{bottom:127.440000px;}
.y6a_c01443{bottom:128.880000px;}
.y65_c01443{bottom:129.600000px;}
.y68_c01443{bottom:130.320000px;}
.y6c_c01443{bottom:131.040000px;}
.y60_c01443{bottom:169.200000px;}
.y5f_c01443{bottom:170.640000px;}
.y63_c01443{bottom:171.360000px;}
.y61_c01443{bottom:172.800000px;}
.y5e_c01443{bottom:173.520000px;}
.y62_c01443{bottom:174.960000px;}
.y64_c01443{bottom:176.400000px;}
.y5a_c01443{bottom:212.400000px;}
.y5b_c01443{bottom:213.120000px;}
.y59_c01443{bottom:216.000000px;}
.y5d_c01443{bottom:216.720000px;}
.y5c_c01443{bottom:217.440000px;}
.y54_c01443{bottom:255.600000px;}
.y56_c01443{bottom:256.320000px;}
.y55_c01443{bottom:257.760000px;}
.y53_c01443{bottom:259.200000px;}
.y57_c01443{bottom:259.920000px;}
.y58_c01443{bottom:260.640000px;}
.y50_c01443{bottom:298.800000px;}
.y51_c01443{bottom:299.520000px;}
.y4f_c01443{bottom:301.680000px;}
.y52_c01443{bottom:302.400000px;}
.y4a_c01443{bottom:342.000000px;}
.y4b_c01443{bottom:342.720000px;}
.y4d_c01443{bottom:344.880000px;}
.y49_c01443{bottom:346.320000px;}
.y4c_c01443{bottom:347.040000px;}
.y4e_c01443{bottom:347.760000px;}
.y46_c01443{bottom:385.200000px;}
.y47_c01443{bottom:385.920000px;}
.y45_c01443{bottom:389.520000px;}
.y48_c01443{bottom:390.960000px;}
.y3f_c01443{bottom:429.120000px;}
.y42_c01443{bottom:429.840000px;}
.y41_c01443{bottom:430.560000px;}
.y44_c01443{bottom:431.280000px;}
.y43_c01443{bottom:432.000000px;}
.y3e_c01443{bottom:432.720000px;}
.y40_c01443{bottom:433.440000px;}
.y3a_c01443{bottom:472.320000px;}
.y3c_c01443{bottom:473.040000px;}
.y3d_c01443{bottom:474.480000px;}
.y39_c01443{bottom:475.920000px;}
.y3b_c01443{bottom:476.640000px;}
.y34_c01443{bottom:516.240000px;}
.y35_c01443{bottom:516.960000px;}
.y36_c01443{bottom:517.680000px;}
.y33_c01443{bottom:518.400000px;}
.y38_c01443{bottom:519.120000px;}
.y37_c01443{bottom:519.840000px;}
.y2f_c01443{bottom:559.440000px;}
.y32_c01443{bottom:560.160000px;}
.y31_c01443{bottom:560.880000px;}
.y2e_c01443{bottom:561.600000px;}
.y30_c01443{bottom:563.760000px;}
.y2a_c01443{bottom:603.360000px;}
.y2c_c01443{bottom:604.080000px;}
.y29_c01443{bottom:605.520000px;}
.y2d_c01443{bottom:606.240000px;}
.y2b_c01443{bottom:606.960000px;}
.y25_c01443{bottom:646.560000px;}
.y28_c01443{bottom:647.280000px;}
.y26_c01443{bottom:648.000000px;}
.y24_c01443{bottom:648.720000px;}
.y27_c01443{bottom:649.440000px;}
.y21_c01443{bottom:689.760000px;}
.y23_c01443{bottom:691.200000px;}
.y20_c01443{bottom:691.920000px;}
.y22_c01443{bottom:692.640000px;}
.y1e_c01443{bottom:732.960000px;}
.y1d_c01443{bottom:734.400000px;}
.y1f_c01443{bottom:735.120000px;}
.y1b_c01443{bottom:776.160000px;}
.y1c_c01443{bottom:776.880000px;}
.y1a_c01443{bottom:778.320000px;}
.y15_c01443{bottom:818.640000px;}
.y17_c01443{bottom:819.360000px;}
.y19_c01443{bottom:820.080000px;}
.y16_c01443{bottom:820.800000px;}
.y14_c01443{bottom:821.520000px;}
.y18_c01443{bottom:822.960000px;}
.y11_c01443{bottom:861.840000px;}
.yf_c01443{bottom:863.280000px;}
.ye_c01443{bottom:864.000000px;}
.y12_c01443{bottom:864.720000px;}
.y13_c01443{bottom:865.440000px;}
.y10_c01443{bottom:866.160000px;}
.yd_c01443{bottom:905.040000px;}
.yc_c01443{bottom:905.760000px;}
.yb_c01443{bottom:907.200000px;}
.y9_c01443{bottom:948.240000px;}
.ya_c01443{bottom:948.960000px;}
.y8_c01443{bottom:950.400000px;}
.y6_c01443{bottom:991.440000px;}
.y5_c01443{bottom:992.160000px;}
.y7_c01443{bottom:992.880000px;}
.y4_c01443{bottom:995.040000px;}
.y2_c01443{bottom:1036.800000px;}
.y3_c01443{bottom:1039.680000px;}
.y1_c01443{bottom:1081.440000px;}
.h4_c01443{height:33.692344px;}
.he_c01443{height:38.875781px;}
.hc_c01443{height:44.059219px;}
.h5_c01443{height:46.650937px;}
.h6_c01443{height:49.242656px;}
.ha_c01443{height:51.834375px;}
.h3_c01443{height:54.426094px;}
.hd_c01443{height:57.017812px;}
.hb_c01443{height:59.609531px;}
.h8_c01443{height:62.201250px;}
.h2_c01443{height:64.792969px;}
.h7_c01443{height:67.384687px;}
.h9_c01443{height:69.976406px;}
.hf_c01443{height:85.526719px;}
.h1_c01443{height:1161.750000px;}
.h0_c01443{height:1162.080000px;}
.w1_c01443{width:790.500000px;}
.w0_c01443{width:790.560000px;}
.x0_c01443{left:0.000000px;}
.x5_c01443{left:66.960000px;}
.x1c_c01443{left:118.800000px;}
.x8_c01443{left:120.240000px;}
.x2_c01443{left:121.680000px;}
.x3_c01443{left:176.400000px;}
.x2f_c01443{left:195.840000px;}
.x2c_c01443{left:205.920000px;}
.x27_c01443{left:207.360000px;}
.xc_c01443{left:217.440000px;}
.x4_c01443{left:229.680000px;}
.x2a_c01443{left:239.040000px;}
.x23_c01443{left:250.560000px;}
.xd_c01443{left:262.080000px;}
.x1d_c01443{left:272.160000px;}
.x1b_c01443{left:282.960000px;}
.x24_c01443{left:303.120000px;}
.x30_c01443{left:324.720000px;}
.x33_c01443{left:326.160000px;}
.x2d_c01443{left:336.240000px;}
.x34_c01443{left:369.360000px;}
.x13_c01443{left:380.160000px;}
.x28_c01443{left:390.240000px;}
.x1e_c01443{left:401.760000px;}
.xe_c01443{left:411.840000px;}
.x25_c01443{left:421.200000px;}
.x29_c01443{left:443.520000px;}
.x1f_c01443{left:455.040000px;}
.x26_c01443{left:465.120000px;}
.xf_c01443{left:466.560000px;}
.x35_c01443{left:475.200000px;}
.x31_c01443{left:496.800000px;}
.x10_c01443{left:520.560000px;}
.x36_c01443{left:527.040000px;}
.x32_c01443{left:534.240000px;}
.x19_c01443{left:594.720000px;}
.x17_c01443{left:596.160000px;}
.x2b_c01443{left:614.880000px;}
.x18_c01443{left:616.320000px;}
.x6_c01443{left:617.760000px;}
.x37_c01443{left:646.560000px;}
.x2e_c01443{left:648.000000px;}
.x11_c01443{left:649.440000px;}
.xa_c01443{left:650.880000px;}
.x1_c01443{left:674.640000px;}
.x20_c01443{left:681.120000px;}
.x14_c01443{left:682.560000px;}
.x9_c01443{left:684.000000px;}
.x38_c01443{left:713.520000px;}
.x1a_c01443{left:714.960000px;}
.x12_c01443{left:717.120000px;}
.x21_c01443{left:724.320000px;}
.x15_c01443{left:725.760000px;}
.x7_c01443{left:727.920000px;}
.x22_c01443{left:743.760000px;}
.x16_c01443{left:745.920000px;}
.xb_c01443{left:747.360000px;}
@media print{
.v0_c01443{vertical-align:0.000000pt;}
.v1_c01443{vertical-align:5.120000pt;}
.ls0_c01443{letter-spacing:0.000000pt;}
.ws1_c01443{word-spacing:0.000000pt;}
.ws0_c01443{word-spacing:1227.377280pt;}
.fs2_c01443{font-size:33.280000pt;}
.fsc_c01443{font-size:38.400000pt;}
.fsa_c01443{font-size:43.520000pt;}
.fs3_c01443{font-size:46.080000pt;}
.fs4_c01443{font-size:48.640000pt;}
.fs8_c01443{font-size:51.200000pt;}
.fs1_c01443{font-size:53.760000pt;}
.fsb_c01443{font-size:56.320000pt;}
.fs9_c01443{font-size:58.880000pt;}
.fs6_c01443{font-size:61.440000pt;}
.fs0_c01443{font-size:64.000000pt;}
.fs5_c01443{font-size:66.560000pt;}
.fs7_c01443{font-size:69.120000pt;}
.fsd_c01443{font-size:84.480000pt;}
.y0_c01443{bottom:0.000000pt;}
.y6b_c01443{bottom:107.520000pt;}
.y67_c01443{bottom:111.360000pt;}
.y66_c01443{bottom:112.640000pt;}
.y69_c01443{bottom:113.280000pt;}
.y6a_c01443{bottom:114.560000pt;}
.y65_c01443{bottom:115.200000pt;}
.y68_c01443{bottom:115.840000pt;}
.y6c_c01443{bottom:116.480000pt;}
.y60_c01443{bottom:150.400000pt;}
.y5f_c01443{bottom:151.680000pt;}
.y63_c01443{bottom:152.320000pt;}
.y61_c01443{bottom:153.600000pt;}
.y5e_c01443{bottom:154.240000pt;}
.y62_c01443{bottom:155.520000pt;}
.y64_c01443{bottom:156.800000pt;}
.y5a_c01443{bottom:188.800000pt;}
.y5b_c01443{bottom:189.440000pt;}
.y59_c01443{bottom:192.000000pt;}
.y5d_c01443{bottom:192.640000pt;}
.y5c_c01443{bottom:193.280000pt;}
.y54_c01443{bottom:227.200000pt;}
.y56_c01443{bottom:227.840000pt;}
.y55_c01443{bottom:229.120000pt;}
.y53_c01443{bottom:230.400000pt;}
.y57_c01443{bottom:231.040000pt;}
.y58_c01443{bottom:231.680000pt;}
.y50_c01443{bottom:265.600000pt;}
.y51_c01443{bottom:266.240000pt;}
.y4f_c01443{bottom:268.160000pt;}
.y52_c01443{bottom:268.800000pt;}
.y4a_c01443{bottom:304.000000pt;}
.y4b_c01443{bottom:304.640000pt;}
.y4d_c01443{bottom:306.560000pt;}
.y49_c01443{bottom:307.840000pt;}
.y4c_c01443{bottom:308.480000pt;}
.y4e_c01443{bottom:309.120000pt;}
.y46_c01443{bottom:342.400000pt;}
.y47_c01443{bottom:343.040000pt;}
.y45_c01443{bottom:346.240000pt;}
.y48_c01443{bottom:347.520000pt;}
.y3f_c01443{bottom:381.440000pt;}
.y42_c01443{bottom:382.080000pt;}
.y41_c01443{bottom:382.720000pt;}
.y44_c01443{bottom:383.360000pt;}
.y43_c01443{bottom:384.000000pt;}
.y3e_c01443{bottom:384.640000pt;}
.y40_c01443{bottom:385.280000pt;}
.y3a_c01443{bottom:419.840000pt;}
.y3c_c01443{bottom:420.480000pt;}
.y3d_c01443{bottom:421.760000pt;}
.y39_c01443{bottom:423.040000pt;}
.y3b_c01443{bottom:423.680000pt;}
.y34_c01443{bottom:458.880000pt;}
.y35_c01443{bottom:459.520000pt;}
.y36_c01443{bottom:460.160000pt;}
.y33_c01443{bottom:460.800000pt;}
.y38_c01443{bottom:461.440000pt;}
.y37_c01443{bottom:462.080000pt;}
.y2f_c01443{bottom:497.280000pt;}
.y32_c01443{bottom:497.920000pt;}
.y31_c01443{bottom:498.560000pt;}
.y2e_c01443{bottom:499.200000pt;}
.y30_c01443{bottom:501.120000pt;}
.y2a_c01443{bottom:536.320000pt;}
.y2c_c01443{bottom:536.960000pt;}
.y29_c01443{bottom:538.240000pt;}
.y2d_c01443{bottom:538.880000pt;}
.y2b_c01443{bottom:539.520000pt;}
.y25_c01443{bottom:574.720000pt;}
.y28_c01443{bottom:575.360000pt;}
.y26_c01443{bottom:576.000000pt;}
.y24_c01443{bottom:576.640000pt;}
.y27_c01443{bottom:577.280000pt;}
.y21_c01443{bottom:613.120000pt;}
.y23_c01443{bottom:614.400000pt;}
.y20_c01443{bottom:615.040000pt;}
.y22_c01443{bottom:615.680000pt;}
.y1e_c01443{bottom:651.520000pt;}
.y1d_c01443{bottom:652.800000pt;}
.y1f_c01443{bottom:653.440000pt;}
.y1b_c01443{bottom:689.920000pt;}
.y1c_c01443{bottom:690.560000pt;}
.y1a_c01443{bottom:691.840000pt;}
.y15_c01443{bottom:727.680000pt;}
.y17_c01443{bottom:728.320000pt;}
.y19_c01443{bottom:728.960000pt;}
.y16_c01443{bottom:729.600000pt;}
.y14_c01443{bottom:730.240000pt;}
.y18_c01443{bottom:731.520000pt;}
.y11_c01443{bottom:766.080000pt;}
.yf_c01443{bottom:767.360000pt;}
.ye_c01443{bottom:768.000000pt;}
.y12_c01443{bottom:768.640000pt;}
.y13_c01443{bottom:769.280000pt;}
.y10_c01443{bottom:769.920000pt;}
.yd_c01443{bottom:804.480000pt;}
.yc_c01443{bottom:805.120000pt;}
.yb_c01443{bottom:806.400000pt;}
.y9_c01443{bottom:842.880000pt;}
.ya_c01443{bottom:843.520000pt;}
.y8_c01443{bottom:844.800000pt;}
.y6_c01443{bottom:881.280000pt;}
.y5_c01443{bottom:881.920000pt;}
.y7_c01443{bottom:882.560000pt;}
.y4_c01443{bottom:884.480000pt;}
.y2_c01443{bottom:921.600000pt;}
.y3_c01443{bottom:924.160000pt;}
.y1_c01443{bottom:961.280000pt;}
.h4_c01443{height:29.948750pt;}
.he_c01443{height:34.556250pt;}
.hc_c01443{height:39.163750pt;}
.h5_c01443{height:41.467500pt;}
.h6_c01443{height:43.771250pt;}
.ha_c01443{height:46.075000pt;}
.h3_c01443{height:48.378750pt;}
.hd_c01443{height:50.682500pt;}
.hb_c01443{height:52.986250pt;}
.h8_c01443{height:55.290000pt;}
.h2_c01443{height:57.593750pt;}
.h7_c01443{height:59.897500pt;}
.h9_c01443{height:62.201250pt;}
.hf_c01443{height:76.023750pt;}
.h1_c01443{height:1032.666667pt;}
.h0_c01443{height:1032.960000pt;}
.w1_c01443{width:702.666667pt;}
.w0_c01443{width:702.720000pt;}
.x0_c01443{left:0.000000pt;}
.x5_c01443{left:59.520000pt;}
.x1c_c01443{left:105.600000pt;}
.x8_c01443{left:106.880000pt;}
.x2_c01443{left:108.160000pt;}
.x3_c01443{left:156.800000pt;}
.x2f_c01443{left:174.080000pt;}
.x2c_c01443{left:183.040000pt;}
.x27_c01443{left:184.320000pt;}
.xc_c01443{left:193.280000pt;}
.x4_c01443{left:204.160000pt;}
.x2a_c01443{left:212.480000pt;}
.x23_c01443{left:222.720000pt;}
.xd_c01443{left:232.960000pt;}
.x1d_c01443{left:241.920000pt;}
.x1b_c01443{left:251.520000pt;}
.x24_c01443{left:269.440000pt;}
.x30_c01443{left:288.640000pt;}
.x33_c01443{left:289.920000pt;}
.x2d_c01443{left:298.880000pt;}
.x34_c01443{left:328.320000pt;}
.x13_c01443{left:337.920000pt;}
.x28_c01443{left:346.880000pt;}
.x1e_c01443{left:357.120000pt;}
.xe_c01443{left:366.080000pt;}
.x25_c01443{left:374.400000pt;}
.x29_c01443{left:394.240000pt;}
.x1f_c01443{left:404.480000pt;}
.x26_c01443{left:413.440000pt;}
.xf_c01443{left:414.720000pt;}
.x35_c01443{left:422.400000pt;}
.x31_c01443{left:441.600000pt;}
.x10_c01443{left:462.720000pt;}
.x36_c01443{left:468.480000pt;}
.x32_c01443{left:474.880000pt;}
.x19_c01443{left:528.640000pt;}
.x17_c01443{left:529.920000pt;}
.x2b_c01443{left:546.560000pt;}
.x18_c01443{left:547.840000pt;}
.x6_c01443{left:549.120000pt;}
.x37_c01443{left:574.720000pt;}
.x2e_c01443{left:576.000000pt;}
.x11_c01443{left:577.280000pt;}
.xa_c01443{left:578.560000pt;}
.x1_c01443{left:599.680000pt;}
.x20_c01443{left:605.440000pt;}
.x14_c01443{left:606.720000pt;}
.x9_c01443{left:608.000000pt;}
.x38_c01443{left:634.240000pt;}
.x1a_c01443{left:635.520000pt;}
.x12_c01443{left:637.440000pt;}
.x21_c01443{left:643.840000pt;}
.x15_c01443{left:645.120000pt;}
.x7_c01443{left:647.040000pt;}
.x22_c01443{left:661.120000pt;}
.x16_c01443{left:663.040000pt;}
.xb_c01443{left:664.320000pt;}
}





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

.ir_c01444:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01444{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01444;src:url('chunks/assets/font_1935ce27360c3e41fede7048.woff2')format("woff");}.ff1_c01444{font-family:ff1_c01444;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m41_c01444{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.m44_c01444{transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);}
.m30_c01444{transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);}
.m43_c01444{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m15_c01444{transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);}
.m52_c01444{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m4d_c01444{transform:matrix(0.237375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237375,0.000000,0.000000,0.250000,0,0);}
.m3e_c01444{transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);}
.m4c_c01444{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m4b_c01444{transform:matrix(0.244150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244150,0.000000,0.000000,0.250000,0,0);}
.m47_c01444{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01444{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);}
.m26_c01444{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m10_c01444{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m24_c01444{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);}
.m39_c01444{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);}
.m42_c01444{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_c01444{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);}
.m32_c01444{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m22_c01444{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);}
.m2f_c01444{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);}
.m36_c01444{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m19_c01444{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);}
.m2b_c01444{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m6_c01444{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);}
.m2a_c01444{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);}
.m3d_c01444{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m20_c01444{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01444{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01444{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m16_c01444{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m12_c01444{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01444{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m38_c01444{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m25_c01444{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m40_c01444{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m23_c01444{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m4a_c01444{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m2_c01444{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mc_c01444{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01444{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m9_c01444{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);}
.m49_c01444{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);}
.m35_c01444{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.mb_c01444{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);}
.m51_c01444{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.mf_c01444{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);}
.m2d_c01444{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m34_c01444{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1_c01444{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);}
.m2e_c01444{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);}
.m0_c01444{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01444{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);}
.m45_c01444{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m5_c01444{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);}
.m8_c01444{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01444{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);}
.m46_c01444{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m21_c01444{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m11_c01444{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m13_c01444{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);}
.m7_c01444{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);}
.ma_c01444{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m18_c01444{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m37_c01444{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m4_c01444{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01444{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01444{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);}
.m50_c01444{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m29_c01444{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01444{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.md_c01444{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m33_c01444{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);}
.m48_c01444{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);}
.m1f_c01444{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);}
.m14_c01444{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m4f_c01444{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01444{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);}
.me_c01444{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01444{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m3_c01444{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);}
.m28_c01444{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m31_c01444{transform:matrix(0.712500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.712500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.712500,0.000000,0.000000,0.250000,0,0);}
.m53_c01444{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.v0_c01444{vertical-align:0.000000px;}
.ls0_c01444{letter-spacing:0.000000px;}
.sc__c01444{text-shadow:none;}
.sc0_c01444{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01444{-webkit-text-stroke:0px transparent;}
.sc0_c01444{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01444{word-spacing:0.000000px;}
.fc0_c01444{color:transparent;}
.fs10_c01444{font-size:25.920000px;}
.fs7_c01444{font-size:37.440000px;}
.fsc_c01444{font-size:40.320000px;}
.fsd_c01444{font-size:43.200000px;}
.fse_c01444{font-size:46.080000px;}
.fs3_c01444{font-size:48.960000px;}
.fs4_c01444{font-size:51.840000px;}
.fs8_c01444{font-size:54.720000px;}
.fs9_c01444{font-size:57.600000px;}
.fs5_c01444{font-size:60.480000px;}
.fs2_c01444{font-size:63.360000px;}
.fs1_c01444{font-size:66.240000px;}
.fs6_c01444{font-size:69.120000px;}
.fs0_c01444{font-size:72.000000px;}
.fsb_c01444{font-size:74.880000px;}
.fsa_c01444{font-size:77.760000px;}
.fsf_c01444{font-size:83.520000px;}
.y0_c01444{bottom:0.000000px;}
.y74_c01444{bottom:66.960000px;}
.y73_c01444{bottom:67.680000px;}
.y72_c01444{bottom:69.120000px;}
.y71_c01444{bottom:69.840000px;}
.y6e_c01444{bottom:98.640000px;}
.y6f_c01444{bottom:99.360000px;}
.y6d_c01444{bottom:101.520000px;}
.y6c_c01444{bottom:102.960000px;}
.y75_c01444{bottom:103.680000px;}
.y70_c01444{bottom:105.120000px;}
.y76_c01444{bottom:105.840000px;}
.y6b_c01444{bottom:142.560000px;}
.y69_c01444{bottom:173.520000px;}
.y6a_c01444{bottom:177.120000px;}
.y68_c01444{bottom:177.840000px;}
.y60_c01444{bottom:179.280000px;}
.y5f_c01444{bottom:181.440000px;}
.y67_c01444{bottom:218.160000px;}
.y66_c01444{bottom:221.040000px;}
.y5d_c01444{bottom:222.480000px;}
.y5e_c01444{bottom:223.200000px;}
.y64_c01444{bottom:262.080000px;}
.y65_c01444{bottom:263.520000px;}
.y5a_c01444{bottom:264.960000px;}
.y59_c01444{bottom:266.400000px;}
.y5b_c01444{bottom:267.840000px;}
.y5c_c01444{bottom:268.560000px;}
.y61_c01444{bottom:305.280000px;}
.y62_c01444{bottom:306.720000px;}
.y63_c01444{bottom:307.440000px;}
.y56_c01444{bottom:309.600000px;}
.y58_c01444{bottom:311.040000px;}
.y57_c01444{bottom:311.760000px;}
.y55_c01444{bottom:312.480000px;}
.y4f_c01444{bottom:349.200000px;}
.y53_c01444{bottom:350.640000px;}
.y51_c01444{bottom:351.360000px;}
.y50_c01444{bottom:352.080000px;}
.y4e_c01444{bottom:352.800000px;}
.y52_c01444{bottom:353.520000px;}
.y54_c01444{bottom:354.960000px;}
.y49_c01444{bottom:393.120000px;}
.y4b_c01444{bottom:393.840000px;}
.y4a_c01444{bottom:396.000000px;}
.y48_c01444{bottom:396.720000px;}
.y4d_c01444{bottom:397.440000px;}
.y4c_c01444{bottom:398.160000px;}
.y47_c01444{bottom:436.320000px;}
.y46_c01444{bottom:437.040000px;}
.y45_c01444{bottom:437.760000px;}
.y44_c01444{bottom:439.920000px;}
.y43_c01444{bottom:440.640000px;}
.y3f_c01444{bottom:468.000000px;}
.y40_c01444{bottom:470.160000px;}
.y3e_c01444{bottom:470.880000px;}
.y42_c01444{bottom:471.600000px;}
.y41_c01444{bottom:472.320000px;}
.y3b_c01444{bottom:511.920000px;}
.y3c_c01444{bottom:512.640000px;}
.y39_c01444{bottom:514.080000px;}
.y3a_c01444{bottom:515.520000px;}
.y3d_c01444{bottom:516.240000px;}
.y35_c01444{bottom:555.120000px;}
.y36_c01444{bottom:556.560000px;}
.y34_c01444{bottom:557.280000px;}
.y38_c01444{bottom:558.000000px;}
.y37_c01444{bottom:558.720000px;}
.y32_c01444{bottom:598.320000px;}
.y31_c01444{bottom:600.480000px;}
.y33_c01444{bottom:601.920000px;}
.y2e_c01444{bottom:642.240000px;}
.y2f_c01444{bottom:644.400000px;}
.y30_c01444{bottom:645.840000px;}
.y2c_c01444{bottom:695.520000px;}
.y2d_c01444{bottom:696.960000px;}
.y2b_c01444{bottom:697.680000px;}
.y2a_c01444{bottom:738.720000px;}
.y29_c01444{bottom:739.440000px;}
.y28_c01444{bottom:741.600000px;}
.y23_c01444{bottom:781.920000px;}
.y24_c01444{bottom:782.640000px;}
.y27_c01444{bottom:783.360000px;}
.y26_c01444{bottom:784.080000px;}
.y22_c01444{bottom:784.800000px;}
.y25_c01444{bottom:786.240000px;}
.y21_c01444{bottom:825.120000px;}
.y1f_c01444{bottom:825.840000px;}
.y1e_c01444{bottom:828.000000px;}
.y20_c01444{bottom:829.440000px;}
.y1c_c01444{bottom:867.600000px;}
.y1d_c01444{bottom:868.320000px;}
.y19_c01444{bottom:869.040000px;}
.y18_c01444{bottom:870.480000px;}
.y1b_c01444{bottom:871.920000px;}
.y1a_c01444{bottom:872.640000px;}
.y17_c01444{bottom:911.520000px;}
.y16_c01444{bottom:912.240000px;}
.y15_c01444{bottom:914.400000px;}
.y14_c01444{bottom:955.440000px;}
.y12_c01444{bottom:956.880000px;}
.y11_c01444{bottom:957.600000px;}
.y13_c01444{bottom:958.320000px;}
.y10_c01444{bottom:959.040000px;}
.ye_c01444{bottom:997.920000px;}
.yd_c01444{bottom:999.360000px;}
.yb_c01444{bottom:1000.080000px;}
.y9_c01444{bottom:1000.800000px;}
.yc_c01444{bottom:1001.520000px;}
.ya_c01444{bottom:1002.240000px;}
.yf_c01444{bottom:1030.320000px;}
.y6_c01444{bottom:1031.040000px;}
.y8_c01444{bottom:1031.760000px;}
.y3_c01444{bottom:1032.480000px;}
.y7_c01444{bottom:1033.200000px;}
.y2_c01444{bottom:1033.920000px;}
.y5_c01444{bottom:1034.640000px;}
.y4_c01444{bottom:1035.360000px;}
.y1_c01444{bottom:1090.080000px;}
.h12_c01444{height:23.325469px;}
.h9_c01444{height:33.692344px;}
.he_c01444{height:36.284062px;}
.hf_c01444{height:38.875781px;}
.h10_c01444{height:41.467500px;}
.h5_c01444{height:44.059219px;}
.h6_c01444{height:46.650937px;}
.ha_c01444{height:49.242656px;}
.hb_c01444{height:51.834375px;}
.h7_c01444{height:54.426094px;}
.h4_c01444{height:57.017812px;}
.h3_c01444{height:59.609531px;}
.h8_c01444{height:62.201250px;}
.h2_c01444{height:64.792969px;}
.hd_c01444{height:67.384687px;}
.hc_c01444{height:69.976406px;}
.h11_c01444{height:75.159844px;}
.h0_c01444{height:1159.920000px;}
.h1_c01444{height:1160.250000px;}
.w1_c01444{width:788.250000px;}
.w0_c01444{width:788.400000px;}
.x0_c01444{left:0.000000px;}
.x2_c01444{left:67.680000px;}
.x3a_c01444{left:88.560000px;}
.x22_c01444{left:119.520000px;}
.x17_c01444{left:120.960000px;}
.x3_c01444{left:123.120000px;}
.x3e_c01444{left:153.360000px;}
.x3f_c01444{left:164.160000px;}
.x2a_c01444{left:172.800000px;}
.x20_c01444{left:175.680000px;}
.x30_c01444{left:207.360000px;}
.x4_c01444{left:208.800000px;}
.x25_c01444{left:216.000000px;}
.x18_c01444{left:218.880000px;}
.x21_c01444{left:229.680000px;}
.x10_c01444{left:239.760000px;}
.x31_c01444{left:249.840000px;}
.x26_c01444{left:261.360000px;}
.x5_c01444{left:262.800000px;}
.xe_c01444{left:273.600000px;}
.x11_c01444{left:284.400000px;}
.x2d_c01444{left:293.760000px;}
.x2b_c01444{left:304.560000px;}
.x3b_c01444{left:313.200000px;}
.x6_c01444{left:316.800000px;}
.x1b_c01444{left:326.160000px;}
.x28_c01444{left:336.960000px;}
.x12_c01444{left:338.400000px;}
.x2c_c01444{left:358.560000px;}
.x7_c01444{left:360.720000px;}
.x37_c01444{left:378.720000px;}
.x13_c01444{left:380.880000px;}
.x29_c01444{left:388.800000px;}
.x38_c01444{left:410.400000px;}
.x2e_c01444{left:423.360000px;}
.x8_c01444{left:434.880000px;}
.x32_c01444{left:444.240000px;}
.x39_c01444{left:455.040000px;}
.x3c_c01444{left:465.120000px;}
.x14_c01444{left:477.360000px;}
.x33_c01444{left:487.440000px;}
.x9_c01444{left:490.320000px;}
.x3d_c01444{left:518.400000px;}
.x15_c01444{left:532.800000px;}
.xa_c01444{left:543.600000px;}
.x36_c01444{left:585.360000px;}
.x34_c01444{left:595.440000px;}
.x19_c01444{left:596.880000px;}
.x35_c01444{left:615.600000px;}
.x1f_c01444{left:628.560000px;}
.xf_c01444{left:630.000000px;}
.x1c_c01444{left:650.160000px;}
.x1e_c01444{left:651.600000px;}
.xb_c01444{left:653.040000px;}
.x1_c01444{left:678.240000px;}
.x23_c01444{left:682.560000px;}
.x16_c01444{left:684.720000px;}
.xc_c01444{left:686.160000px;}
.x1a_c01444{left:694.800000px;}
.x27_c01444{left:714.960000px;}
.x2f_c01444{left:724.320000px;}
.x1d_c01444{left:726.480000px;}
.xd_c01444{left:728.640000px;}
.x24_c01444{left:745.920000px;}
@media print{
.v0_c01444{vertical-align:0.000000pt;}
.ls0_c01444{letter-spacing:0.000000pt;}
.ws0_c01444{word-spacing:0.000000pt;}
.fs10_c01444{font-size:23.040000pt;}
.fs7_c01444{font-size:33.280000pt;}
.fsc_c01444{font-size:35.840000pt;}
.fsd_c01444{font-size:38.400000pt;}
.fse_c01444{font-size:40.960000pt;}
.fs3_c01444{font-size:43.520000pt;}
.fs4_c01444{font-size:46.080000pt;}
.fs8_c01444{font-size:48.640000pt;}
.fs9_c01444{font-size:51.200000pt;}
.fs5_c01444{font-size:53.760000pt;}
.fs2_c01444{font-size:56.320000pt;}
.fs1_c01444{font-size:58.880000pt;}
.fs6_c01444{font-size:61.440000pt;}
.fs0_c01444{font-size:64.000000pt;}
.fsb_c01444{font-size:66.560000pt;}
.fsa_c01444{font-size:69.120000pt;}
.fsf_c01444{font-size:74.240000pt;}
.y0_c01444{bottom:0.000000pt;}
.y74_c01444{bottom:59.520000pt;}
.y73_c01444{bottom:60.160000pt;}
.y72_c01444{bottom:61.440000pt;}
.y71_c01444{bottom:62.080000pt;}
.y6e_c01444{bottom:87.680000pt;}
.y6f_c01444{bottom:88.320000pt;}
.y6d_c01444{bottom:90.240000pt;}
.y6c_c01444{bottom:91.520000pt;}
.y75_c01444{bottom:92.160000pt;}
.y70_c01444{bottom:93.440000pt;}
.y76_c01444{bottom:94.080000pt;}
.y6b_c01444{bottom:126.720000pt;}
.y69_c01444{bottom:154.240000pt;}
.y6a_c01444{bottom:157.440000pt;}
.y68_c01444{bottom:158.080000pt;}
.y60_c01444{bottom:159.360000pt;}
.y5f_c01444{bottom:161.280000pt;}
.y67_c01444{bottom:193.920000pt;}
.y66_c01444{bottom:196.480000pt;}
.y5d_c01444{bottom:197.760000pt;}
.y5e_c01444{bottom:198.400000pt;}
.y64_c01444{bottom:232.960000pt;}
.y65_c01444{bottom:234.240000pt;}
.y5a_c01444{bottom:235.520000pt;}
.y59_c01444{bottom:236.800000pt;}
.y5b_c01444{bottom:238.080000pt;}
.y5c_c01444{bottom:238.720000pt;}
.y61_c01444{bottom:271.360000pt;}
.y62_c01444{bottom:272.640000pt;}
.y63_c01444{bottom:273.280000pt;}
.y56_c01444{bottom:275.200000pt;}
.y58_c01444{bottom:276.480000pt;}
.y57_c01444{bottom:277.120000pt;}
.y55_c01444{bottom:277.760000pt;}
.y4f_c01444{bottom:310.400000pt;}
.y53_c01444{bottom:311.680000pt;}
.y51_c01444{bottom:312.320000pt;}
.y50_c01444{bottom:312.960000pt;}
.y4e_c01444{bottom:313.600000pt;}
.y52_c01444{bottom:314.240000pt;}
.y54_c01444{bottom:315.520000pt;}
.y49_c01444{bottom:349.440000pt;}
.y4b_c01444{bottom:350.080000pt;}
.y4a_c01444{bottom:352.000000pt;}
.y48_c01444{bottom:352.640000pt;}
.y4d_c01444{bottom:353.280000pt;}
.y4c_c01444{bottom:353.920000pt;}
.y47_c01444{bottom:387.840000pt;}
.y46_c01444{bottom:388.480000pt;}
.y45_c01444{bottom:389.120000pt;}
.y44_c01444{bottom:391.040000pt;}
.y43_c01444{bottom:391.680000pt;}
.y3f_c01444{bottom:416.000000pt;}
.y40_c01444{bottom:417.920000pt;}
.y3e_c01444{bottom:418.560000pt;}
.y42_c01444{bottom:419.200000pt;}
.y41_c01444{bottom:419.840000pt;}
.y3b_c01444{bottom:455.040000pt;}
.y3c_c01444{bottom:455.680000pt;}
.y39_c01444{bottom:456.960000pt;}
.y3a_c01444{bottom:458.240000pt;}
.y3d_c01444{bottom:458.880000pt;}
.y35_c01444{bottom:493.440000pt;}
.y36_c01444{bottom:494.720000pt;}
.y34_c01444{bottom:495.360000pt;}
.y38_c01444{bottom:496.000000pt;}
.y37_c01444{bottom:496.640000pt;}
.y32_c01444{bottom:531.840000pt;}
.y31_c01444{bottom:533.760000pt;}
.y33_c01444{bottom:535.040000pt;}
.y2e_c01444{bottom:570.880000pt;}
.y2f_c01444{bottom:572.800000pt;}
.y30_c01444{bottom:574.080000pt;}
.y2c_c01444{bottom:618.240000pt;}
.y2d_c01444{bottom:619.520000pt;}
.y2b_c01444{bottom:620.160000pt;}
.y2a_c01444{bottom:656.640000pt;}
.y29_c01444{bottom:657.280000pt;}
.y28_c01444{bottom:659.200000pt;}
.y23_c01444{bottom:695.040000pt;}
.y24_c01444{bottom:695.680000pt;}
.y27_c01444{bottom:696.320000pt;}
.y26_c01444{bottom:696.960000pt;}
.y22_c01444{bottom:697.600000pt;}
.y25_c01444{bottom:698.880000pt;}
.y21_c01444{bottom:733.440000pt;}
.y1f_c01444{bottom:734.080000pt;}
.y1e_c01444{bottom:736.000000pt;}
.y20_c01444{bottom:737.280000pt;}
.y1c_c01444{bottom:771.200000pt;}
.y1d_c01444{bottom:771.840000pt;}
.y19_c01444{bottom:772.480000pt;}
.y18_c01444{bottom:773.760000pt;}
.y1b_c01444{bottom:775.040000pt;}
.y1a_c01444{bottom:775.680000pt;}
.y17_c01444{bottom:810.240000pt;}
.y16_c01444{bottom:810.880000pt;}
.y15_c01444{bottom:812.800000pt;}
.y14_c01444{bottom:849.280000pt;}
.y12_c01444{bottom:850.560000pt;}
.y11_c01444{bottom:851.200000pt;}
.y13_c01444{bottom:851.840000pt;}
.y10_c01444{bottom:852.480000pt;}
.ye_c01444{bottom:887.040000pt;}
.yd_c01444{bottom:888.320000pt;}
.yb_c01444{bottom:888.960000pt;}
.y9_c01444{bottom:889.600000pt;}
.yc_c01444{bottom:890.240000pt;}
.ya_c01444{bottom:890.880000pt;}
.yf_c01444{bottom:915.840000pt;}
.y6_c01444{bottom:916.480000pt;}
.y8_c01444{bottom:917.120000pt;}
.y3_c01444{bottom:917.760000pt;}
.y7_c01444{bottom:918.400000pt;}
.y2_c01444{bottom:919.040000pt;}
.y5_c01444{bottom:919.680000pt;}
.y4_c01444{bottom:920.320000pt;}
.y1_c01444{bottom:968.960000pt;}
.h12_c01444{height:20.733750pt;}
.h9_c01444{height:29.948750pt;}
.he_c01444{height:32.252500pt;}
.hf_c01444{height:34.556250pt;}
.h10_c01444{height:36.860000pt;}
.h5_c01444{height:39.163750pt;}
.h6_c01444{height:41.467500pt;}
.ha_c01444{height:43.771250pt;}
.hb_c01444{height:46.075000pt;}
.h7_c01444{height:48.378750pt;}
.h4_c01444{height:50.682500pt;}
.h3_c01444{height:52.986250pt;}
.h8_c01444{height:55.290000pt;}
.h2_c01444{height:57.593750pt;}
.hd_c01444{height:59.897500pt;}
.hc_c01444{height:62.201250pt;}
.h11_c01444{height:66.808750pt;}
.h0_c01444{height:1031.040000pt;}
.h1_c01444{height:1031.333333pt;}
.w1_c01444{width:700.666667pt;}
.w0_c01444{width:700.800000pt;}
.x0_c01444{left:0.000000pt;}
.x2_c01444{left:60.160000pt;}
.x3a_c01444{left:78.720000pt;}
.x22_c01444{left:106.240000pt;}
.x17_c01444{left:107.520000pt;}
.x3_c01444{left:109.440000pt;}
.x3e_c01444{left:136.320000pt;}
.x3f_c01444{left:145.920000pt;}
.x2a_c01444{left:153.600000pt;}
.x20_c01444{left:156.160000pt;}
.x30_c01444{left:184.320000pt;}
.x4_c01444{left:185.600000pt;}
.x25_c01444{left:192.000000pt;}
.x18_c01444{left:194.560000pt;}
.x21_c01444{left:204.160000pt;}
.x10_c01444{left:213.120000pt;}
.x31_c01444{left:222.080000pt;}
.x26_c01444{left:232.320000pt;}
.x5_c01444{left:233.600000pt;}
.xe_c01444{left:243.200000pt;}
.x11_c01444{left:252.800000pt;}
.x2d_c01444{left:261.120000pt;}
.x2b_c01444{left:270.720000pt;}
.x3b_c01444{left:278.400000pt;}
.x6_c01444{left:281.600000pt;}
.x1b_c01444{left:289.920000pt;}
.x28_c01444{left:299.520000pt;}
.x12_c01444{left:300.800000pt;}
.x2c_c01444{left:318.720000pt;}
.x7_c01444{left:320.640000pt;}
.x37_c01444{left:336.640000pt;}
.x13_c01444{left:338.560000pt;}
.x29_c01444{left:345.600000pt;}
.x38_c01444{left:364.800000pt;}
.x2e_c01444{left:376.320000pt;}
.x8_c01444{left:386.560000pt;}
.x32_c01444{left:394.880000pt;}
.x39_c01444{left:404.480000pt;}
.x3c_c01444{left:413.440000pt;}
.x14_c01444{left:424.320000pt;}
.x33_c01444{left:433.280000pt;}
.x9_c01444{left:435.840000pt;}
.x3d_c01444{left:460.800000pt;}
.x15_c01444{left:473.600000pt;}
.xa_c01444{left:483.200000pt;}
.x36_c01444{left:520.320000pt;}
.x34_c01444{left:529.280000pt;}
.x19_c01444{left:530.560000pt;}
.x35_c01444{left:547.200000pt;}
.x1f_c01444{left:558.720000pt;}
.xf_c01444{left:560.000000pt;}
.x1c_c01444{left:577.920000pt;}
.x1e_c01444{left:579.200000pt;}
.xb_c01444{left:580.480000pt;}
.x1_c01444{left:602.880000pt;}
.x23_c01444{left:606.720000pt;}
.x16_c01444{left:608.640000pt;}
.xc_c01444{left:609.920000pt;}
.x1a_c01444{left:617.600000pt;}
.x27_c01444{left:635.520000pt;}
.x2f_c01444{left:643.840000pt;}
.x1d_c01444{left:645.760000pt;}
.xd_c01444{left:647.680000pt;}
.x24_c01444{left:663.040000pt;}
}





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

.ir_c01445:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01445{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01445;src:url('chunks/assets/font_f229337c209d30b663e58ca4.woff2')format("woff");}.ff1_c01445{font-family:ff1_c01445;line-height:1.109863;font-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_c01445{transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);}
.m4b_c01445{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m49_c01445{transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);}
.m1c_c01445{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_c01445{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m30_c01445{transform:matrix(0.217825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217825,0.000000,0.000000,0.250000,0,0);}
.m28_c01445{transform:matrix(0.221375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221375,0.000000,0.000000,0.250000,0,0);}
.m44_c01445{transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);}
.m4d_c01445{transform:matrix(0.233575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233575,0.000000,0.000000,0.250000,0,0);}
.m24_c01445{transform:matrix(0.235975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235975,0.000000,0.000000,0.250000,0,0);}
.m47_c01445{transform:matrix(0.241125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241125,0.000000,0.000000,0.250000,0,0);}
.m2a_c01445{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m46_c01445{transform:matrix(0.244450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244450,0.000000,0.000000,0.250000,0,0);}
.m40_c01445{transform:matrix(0.246725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246725,0.000000,0.000000,0.250000,0,0);}
.m1_c01445{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01445{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mf_c01445{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);}
.m33_c01445{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m5_c01445{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_c01445{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);}
.m32_c01445{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m26_c01445{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);}
.m42_c01445{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m11_c01445{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m2_c01445{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m7_c01445{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m12_c01445{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m3_c01445{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m22_c01445{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);}
.m2b_c01445{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01445{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m34_c01445{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01445{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mb_c01445{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m15_c01445{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m39_c01445{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m31_c01445{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01445{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m17_c01445{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01445{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01445{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m37_c01445{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01445{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m18_c01445{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m41_c01445{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01445{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m6_c01445{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m25_c01445{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_c01445{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m0_c01445{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);}
.m4e_c01445{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m13_c01445{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01445{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m4_c01445{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);}
.m21_c01445{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m20_c01445{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m8_c01445{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);}
.me_c01445{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m19_c01445{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m35_c01445{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m29_c01445{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.mc_c01445{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);}
.m1a_c01445{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m27_c01445{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m9_c01445{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m16_c01445{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m10_c01445{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);}
.m3d_c01445{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01445{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01445{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);}
.m23_c01445{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.ma_c01445{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);}
.md_c01445{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01445{transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);}
.m45_c01445{transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);}
.m38_c01445{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m48_c01445{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);}
.m36_c01445{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01445{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.v2_c01445{vertical-align:-8.640000px;}
.v1_c01445{vertical-align:-5.760000px;}
.v0_c01445{vertical-align:0.000000px;}
.ls0_c01445{letter-spacing:0.000000px;}
.sc__c01445{text-shadow:none;}
.sc0_c01445{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01445{-webkit-text-stroke:0px transparent;}
.sc0_c01445{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01445{word-spacing:0.000000px;}
.ws0_c01445{word-spacing:7.094400px;}
.ws2_c01445{word-spacing:53.162400px;}
.ws1_c01445{word-spacing:121.470509px;}
.fc0_c01445{color:transparent;}
.fsd_c01445{font-size:34.560000px;}
.fs7_c01445{font-size:37.440000px;}
.fsa_c01445{font-size:40.320000px;}
.fsb_c01445{font-size:48.960000px;}
.fs5_c01445{font-size:51.840000px;}
.fsc_c01445{font-size:54.720000px;}
.fs6_c01445{font-size:57.600000px;}
.fs3_c01445{font-size:60.480000px;}
.fs0_c01445{font-size:63.360000px;}
.fs4_c01445{font-size:66.240000px;}
.fs2_c01445{font-size:69.120000px;}
.fs8_c01445{font-size:72.000000px;}
.fs9_c01445{font-size:74.880000px;}
.fs1_c01445{font-size:77.760000px;}
.y0_c01445{bottom:0.000000px;}
.y59_c01445{bottom:100.080000px;}
.y5b_c01445{bottom:100.800000px;}
.y5a_c01445{bottom:101.520000px;}
.y58_c01445{bottom:104.400000px;}
.y65_c01445{bottom:105.120000px;}
.y66_c01445{bottom:108.000000px;}
.y57_c01445{bottom:143.280000px;}
.y56_c01445{bottom:146.160000px;}
.y63_c01445{bottom:147.600000px;}
.y62_c01445{bottom:148.320000px;}
.y64_c01445{bottom:149.760000px;}
.y53_c01445{bottom:187.200000px;}
.y55_c01445{bottom:188.640000px;}
.y52_c01445{bottom:190.800000px;}
.y54_c01445{bottom:191.520000px;}
.y61_c01445{bottom:192.960000px;}
.y60_c01445{bottom:193.680000px;}
.y51_c01445{bottom:230.400000px;}
.y50_c01445{bottom:232.560000px;}
.y5d_c01445{bottom:234.720000px;}
.y5f_c01445{bottom:235.440000px;}
.y5e_c01445{bottom:236.160000px;}
.y4f_c01445{bottom:273.600000px;}
.y4e_c01445{bottom:277.200000px;}
.y5c_c01445{bottom:279.360000px;}
.y4a_c01445{bottom:316.800000px;}
.y4b_c01445{bottom:317.520000px;}
.y49_c01445{bottom:320.400000px;}
.y4d_c01445{bottom:321.120000px;}
.y4c_c01445{bottom:321.840000px;}
.y44_c01445{bottom:360.720000px;}
.y46_c01445{bottom:361.440000px;}
.y47_c01445{bottom:363.600000px;}
.y43_c01445{bottom:364.320000px;}
.y45_c01445{bottom:365.040000px;}
.y48_c01445{bottom:367.200000px;}
.y2b_c01445{bottom:403.920000px;}
.y2d_c01445{bottom:404.640000px;}
.y2c_c01445{bottom:406.080000px;}
.y42_c01445{bottom:406.800000px;}
.y2a_c01445{bottom:407.520000px;}
.y41_c01445{bottom:408.240000px;}
.y28_c01445{bottom:447.840000px;}
.y27_c01445{bottom:450.720000px;}
.y29_c01445{bottom:451.440000px;}
.y40_c01445{bottom:452.160000px;}
.y26_c01445{bottom:491.760000px;}
.y3f_c01445{bottom:492.480000px;}
.y25_c01445{bottom:493.200000px;}
.y3e_c01445{bottom:493.920000px;}
.y23_c01445{bottom:534.240000px;}
.y3d_c01445{bottom:536.400000px;}
.y22_c01445{bottom:537.120000px;}
.y24_c01445{bottom:538.560000px;}
.y3c_c01445{bottom:539.280000px;}
.y21_c01445{bottom:578.160000px;}
.y3b_c01445{bottom:579.600000px;}
.y1f_c01445{bottom:580.320000px;}
.y20_c01445{bottom:581.760000px;}
.y1c_c01445{bottom:622.080000px;}
.y1b_c01445{bottom:624.240000px;}
.y1e_c01445{bottom:624.960000px;}
.y1d_c01445{bottom:625.680000px;}
.y1a_c01445{bottom:675.360000px;}
.y39_c01445{bottom:676.800000px;}
.y18_c01445{bottom:677.520000px;}
.y3a_c01445{bottom:678.240000px;}
.y19_c01445{bottom:678.960000px;}
.y16_c01445{bottom:720.000000px;}
.y17_c01445{bottom:722.880000px;}
.y15_c01445{bottom:772.560000px;}
.y38_c01445{bottom:773.280000px;}
.y14_c01445{bottom:774.000000px;}
.y13_c01445{bottom:815.760000px;}
.y36_c01445{bottom:816.480000px;}
.y12_c01445{bottom:817.920000px;}
.y37_c01445{bottom:818.640000px;}
.y10_c01445{bottom:858.960000px;}
.y11_c01445{bottom:859.680000px;}
.y35_c01445{bottom:860.400000px;}
.yf_c01445{bottom:861.120000px;}
.yd_c01445{bottom:902.160000px;}
.y34_c01445{bottom:902.880000px;}
.yc_c01445{bottom:904.320000px;}
.ye_c01445{bottom:905.760000px;}
.y33_c01445{bottom:945.360000px;}
.yb_c01445{bottom:946.080000px;}
.y8_c01445{bottom:946.800000px;}
.y7_c01445{bottom:947.520000px;}
.ya_c01445{bottom:948.240000px;}
.y9_c01445{bottom:948.960000px;}
.y6_c01445{bottom:988.560000px;}
.y30_c01445{bottom:989.280000px;}
.y31_c01445{bottom:990.000000px;}
.y32_c01445{bottom:991.440000px;}
.y5_c01445{bottom:992.160000px;}
.y4_c01445{bottom:1031.040000px;}
.y2_c01445{bottom:1032.480000px;}
.y2f_c01445{bottom:1033.200000px;}
.y3_c01445{bottom:1033.920000px;}
.y1_c01445{bottom:1035.360000px;}
.y2e_c01445{bottom:1076.400000px;}
.hf_c01445{height:31.100625px;}
.h9_c01445{height:33.692344px;}
.hc_c01445{height:36.284062px;}
.hd_c01445{height:44.059219px;}
.h7_c01445{height:46.650937px;}
.he_c01445{height:49.242656px;}
.h8_c01445{height:51.834375px;}
.h5_c01445{height:54.426094px;}
.h2_c01445{height:57.017812px;}
.h6_c01445{height:59.609531px;}
.h4_c01445{height:62.201250px;}
.ha_c01445{height:64.792969px;}
.hb_c01445{height:67.384687px;}
.h3_c01445{height:69.976406px;}
.h0_c01445{height:1158.480000px;}
.h1_c01445{height:1158.750000px;}
.w1_c01445{width:786.000000px;}
.w0_c01445{width:786.240000px;}
.x0_c01445{left:0.000000px;}
.x1_c01445{left:58.320000px;}
.xb_c01445{left:59.760000px;}
.x16_c01445{left:110.880000px;}
.x2_c01445{left:112.320000px;}
.x2f_c01445{left:123.120000px;}
.x10_c01445{left:146.160000px;}
.xc_c01445{left:167.040000px;}
.x13_c01445{left:187.920000px;}
.xf_c01445{left:189.360000px;}
.x3_c01445{left:199.440000px;}
.xa_c01445{left:210.960000px;}
.xd_c01445{left:222.480000px;}
.x11_c01445{left:233.280000px;}
.x14_c01445{left:242.640000px;}
.x5_c01445{left:253.440000px;}
.x33_c01445{left:264.960000px;}
.x17_c01445{left:275.760000px;}
.x15_c01445{left:297.360000px;}
.x6_c01445{left:308.160000px;}
.xe_c01445{left:319.680000px;}
.x18_c01445{left:329.040000px;}
.x12_c01445{left:330.480000px;}
.x19_c01445{left:339.120000px;}
.x34_c01445{left:340.560000px;}
.x30_c01445{left:349.200000px;}
.x7_c01445{left:351.360000px;}
.x4_c01445{left:361.440000px;}
.x31_c01445{left:393.840000px;}
.x32_c01445{left:404.640000px;}
.x8_c01445{left:426.240000px;}
.x9_c01445{left:480.960000px;}
.x2a_c01445{left:587.520000px;}
.x1b_c01445{left:588.960000px;}
.x2d_c01445{left:608.400000px;}
.x22_c01445{left:609.840000px;}
.x1c_c01445{left:611.280000px;}
.x2b_c01445{left:619.920000px;}
.x23_c01445{left:641.520000px;}
.x1e_c01445{left:642.960000px;}
.x1a_c01445{left:664.560000px;}
.x24_c01445{left:666.000000px;}
.x28_c01445{left:673.920000px;}
.x2e_c01445{left:675.360000px;}
.x1f_c01445{left:676.800000px;}
.x25_c01445{left:686.160000px;}
.x29_c01445{left:707.760000px;}
.x20_c01445{left:709.200000px;}
.x26_c01445{left:717.840000px;}
.x1d_c01445{left:719.280000px;}
.x27_c01445{left:738.720000px;}
.x21_c01445{left:740.880000px;}
.x2c_c01445{left:749.520000px;}
@media print{
.v2_c01445{vertical-align:-7.680000pt;}
.v1_c01445{vertical-align:-5.120000pt;}
.v0_c01445{vertical-align:0.000000pt;}
.ls0_c01445{letter-spacing:0.000000pt;}
.ws3_c01445{word-spacing:0.000000pt;}
.ws0_c01445{word-spacing:6.306133pt;}
.ws2_c01445{word-spacing:47.255467pt;}
.ws1_c01445{word-spacing:107.973786pt;}
.fsd_c01445{font-size:30.720000pt;}
.fs7_c01445{font-size:33.280000pt;}
.fsa_c01445{font-size:35.840000pt;}
.fsb_c01445{font-size:43.520000pt;}
.fs5_c01445{font-size:46.080000pt;}
.fsc_c01445{font-size:48.640000pt;}
.fs6_c01445{font-size:51.200000pt;}
.fs3_c01445{font-size:53.760000pt;}
.fs0_c01445{font-size:56.320000pt;}
.fs4_c01445{font-size:58.880000pt;}
.fs2_c01445{font-size:61.440000pt;}
.fs8_c01445{font-size:64.000000pt;}
.fs9_c01445{font-size:66.560000pt;}
.fs1_c01445{font-size:69.120000pt;}
.y0_c01445{bottom:0.000000pt;}
.y59_c01445{bottom:88.960000pt;}
.y5b_c01445{bottom:89.600000pt;}
.y5a_c01445{bottom:90.240000pt;}
.y58_c01445{bottom:92.800000pt;}
.y65_c01445{bottom:93.440000pt;}
.y66_c01445{bottom:96.000000pt;}
.y57_c01445{bottom:127.360000pt;}
.y56_c01445{bottom:129.920000pt;}
.y63_c01445{bottom:131.200000pt;}
.y62_c01445{bottom:131.840000pt;}
.y64_c01445{bottom:133.120000pt;}
.y53_c01445{bottom:166.400000pt;}
.y55_c01445{bottom:167.680000pt;}
.y52_c01445{bottom:169.600000pt;}
.y54_c01445{bottom:170.240000pt;}
.y61_c01445{bottom:171.520000pt;}
.y60_c01445{bottom:172.160000pt;}
.y51_c01445{bottom:204.800000pt;}
.y50_c01445{bottom:206.720000pt;}
.y5d_c01445{bottom:208.640000pt;}
.y5f_c01445{bottom:209.280000pt;}
.y5e_c01445{bottom:209.920000pt;}
.y4f_c01445{bottom:243.200000pt;}
.y4e_c01445{bottom:246.400000pt;}
.y5c_c01445{bottom:248.320000pt;}
.y4a_c01445{bottom:281.600000pt;}
.y4b_c01445{bottom:282.240000pt;}
.y49_c01445{bottom:284.800000pt;}
.y4d_c01445{bottom:285.440000pt;}
.y4c_c01445{bottom:286.080000pt;}
.y44_c01445{bottom:320.640000pt;}
.y46_c01445{bottom:321.280000pt;}
.y47_c01445{bottom:323.200000pt;}
.y43_c01445{bottom:323.840000pt;}
.y45_c01445{bottom:324.480000pt;}
.y48_c01445{bottom:326.400000pt;}
.y2b_c01445{bottom:359.040000pt;}
.y2d_c01445{bottom:359.680000pt;}
.y2c_c01445{bottom:360.960000pt;}
.y42_c01445{bottom:361.600000pt;}
.y2a_c01445{bottom:362.240000pt;}
.y41_c01445{bottom:362.880000pt;}
.y28_c01445{bottom:398.080000pt;}
.y27_c01445{bottom:400.640000pt;}
.y29_c01445{bottom:401.280000pt;}
.y40_c01445{bottom:401.920000pt;}
.y26_c01445{bottom:437.120000pt;}
.y3f_c01445{bottom:437.760000pt;}
.y25_c01445{bottom:438.400000pt;}
.y3e_c01445{bottom:439.040000pt;}
.y23_c01445{bottom:474.880000pt;}
.y3d_c01445{bottom:476.800000pt;}
.y22_c01445{bottom:477.440000pt;}
.y24_c01445{bottom:478.720000pt;}
.y3c_c01445{bottom:479.360000pt;}
.y21_c01445{bottom:513.920000pt;}
.y3b_c01445{bottom:515.200000pt;}
.y1f_c01445{bottom:515.840000pt;}
.y20_c01445{bottom:517.120000pt;}
.y1c_c01445{bottom:552.960000pt;}
.y1b_c01445{bottom:554.880000pt;}
.y1e_c01445{bottom:555.520000pt;}
.y1d_c01445{bottom:556.160000pt;}
.y1a_c01445{bottom:600.320000pt;}
.y39_c01445{bottom:601.600000pt;}
.y18_c01445{bottom:602.240000pt;}
.y3a_c01445{bottom:602.880000pt;}
.y19_c01445{bottom:603.520000pt;}
.y16_c01445{bottom:640.000000pt;}
.y17_c01445{bottom:642.560000pt;}
.y15_c01445{bottom:686.720000pt;}
.y38_c01445{bottom:687.360000pt;}
.y14_c01445{bottom:688.000000pt;}
.y13_c01445{bottom:725.120000pt;}
.y36_c01445{bottom:725.760000pt;}
.y12_c01445{bottom:727.040000pt;}
.y37_c01445{bottom:727.680000pt;}
.y10_c01445{bottom:763.520000pt;}
.y11_c01445{bottom:764.160000pt;}
.y35_c01445{bottom:764.800000pt;}
.yf_c01445{bottom:765.440000pt;}
.yd_c01445{bottom:801.920000pt;}
.y34_c01445{bottom:802.560000pt;}
.yc_c01445{bottom:803.840000pt;}
.ye_c01445{bottom:805.120000pt;}
.y33_c01445{bottom:840.320000pt;}
.yb_c01445{bottom:840.960000pt;}
.y8_c01445{bottom:841.600000pt;}
.y7_c01445{bottom:842.240000pt;}
.ya_c01445{bottom:842.880000pt;}
.y9_c01445{bottom:843.520000pt;}
.y6_c01445{bottom:878.720000pt;}
.y30_c01445{bottom:879.360000pt;}
.y31_c01445{bottom:880.000000pt;}
.y32_c01445{bottom:881.280000pt;}
.y5_c01445{bottom:881.920000pt;}
.y4_c01445{bottom:916.480000pt;}
.y2_c01445{bottom:917.760000pt;}
.y2f_c01445{bottom:918.400000pt;}
.y3_c01445{bottom:919.040000pt;}
.y1_c01445{bottom:920.320000pt;}
.y2e_c01445{bottom:956.800000pt;}
.hf_c01445{height:27.645000pt;}
.h9_c01445{height:29.948750pt;}
.hc_c01445{height:32.252500pt;}
.hd_c01445{height:39.163750pt;}
.h7_c01445{height:41.467500pt;}
.he_c01445{height:43.771250pt;}
.h8_c01445{height:46.075000pt;}
.h5_c01445{height:48.378750pt;}
.h2_c01445{height:50.682500pt;}
.h6_c01445{height:52.986250pt;}
.h4_c01445{height:55.290000pt;}
.ha_c01445{height:57.593750pt;}
.hb_c01445{height:59.897500pt;}
.h3_c01445{height:62.201250pt;}
.h0_c01445{height:1029.760000pt;}
.h1_c01445{height:1030.000000pt;}
.w1_c01445{width:698.666667pt;}
.w0_c01445{width:698.880000pt;}
.x0_c01445{left:0.000000pt;}
.x1_c01445{left:51.840000pt;}
.xb_c01445{left:53.120000pt;}
.x16_c01445{left:98.560000pt;}
.x2_c01445{left:99.840000pt;}
.x2f_c01445{left:109.440000pt;}
.x10_c01445{left:129.920000pt;}
.xc_c01445{left:148.480000pt;}
.x13_c01445{left:167.040000pt;}
.xf_c01445{left:168.320000pt;}
.x3_c01445{left:177.280000pt;}
.xa_c01445{left:187.520000pt;}
.xd_c01445{left:197.760000pt;}
.x11_c01445{left:207.360000pt;}
.x14_c01445{left:215.680000pt;}
.x5_c01445{left:225.280000pt;}
.x33_c01445{left:235.520000pt;}
.x17_c01445{left:245.120000pt;}
.x15_c01445{left:264.320000pt;}
.x6_c01445{left:273.920000pt;}
.xe_c01445{left:284.160000pt;}
.x18_c01445{left:292.480000pt;}
.x12_c01445{left:293.760000pt;}
.x19_c01445{left:301.440000pt;}
.x34_c01445{left:302.720000pt;}
.x30_c01445{left:310.400000pt;}
.x7_c01445{left:312.320000pt;}
.x4_c01445{left:321.280000pt;}
.x31_c01445{left:350.080000pt;}
.x32_c01445{left:359.680000pt;}
.x8_c01445{left:378.880000pt;}
.x9_c01445{left:427.520000pt;}
.x2a_c01445{left:522.240000pt;}
.x1b_c01445{left:523.520000pt;}
.x2d_c01445{left:540.800000pt;}
.x22_c01445{left:542.080000pt;}
.x1c_c01445{left:543.360000pt;}
.x2b_c01445{left:551.040000pt;}
.x23_c01445{left:570.240000pt;}
.x1e_c01445{left:571.520000pt;}
.x1a_c01445{left:590.720000pt;}
.x24_c01445{left:592.000000pt;}
.x28_c01445{left:599.040000pt;}
.x2e_c01445{left:600.320000pt;}
.x1f_c01445{left:601.600000pt;}
.x25_c01445{left:609.920000pt;}
.x29_c01445{left:629.120000pt;}
.x20_c01445{left:630.400000pt;}
.x26_c01445{left:638.080000pt;}
.x1d_c01445{left:639.360000pt;}
.x27_c01445{left:656.640000pt;}
.x21_c01445{left:658.560000pt;}
.x2c_c01445{left:666.240000pt;}
}





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

.ir_c01446:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01446{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01446;src:url('chunks/assets/font_e1a66a0eb3baee33a8614441.woff2')format("woff");}.ff1_c01446{font-family:ff1_c01446;line-height:1.109863;font-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_c01446{transform:matrix(0.056775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056775,0.000000,0.000000,0.250000,0,0);}
.m45_c01446{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);}
.m2a_c01446{transform:matrix(0.230950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230950,0.000000,0.000000,0.250000,0,0);}
.m3d_c01446{transform:matrix(0.234475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234475,0.000000,0.000000,0.250000,0,0);}
.m24_c01446{transform:matrix(0.239825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239825,0.000000,0.000000,0.250000,0,0);}
.m1d_c01446{transform:matrix(0.244400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244400,0.000000,0.000000,0.250000,0,0);}
.m3e_c01446{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.mc_c01446{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m3a_c01446{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);}
.m36_c01446{transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);}
.m2e_c01446{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01446{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);}
.m35_c01446{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01446{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m12_c01446{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m13_c01446{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m23_c01446{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m41_c01446{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m5_c01446{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01446{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mb_c01446{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m37_c01446{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m33_c01446{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m42_c01446{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m6_c01446{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m43_c01446{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m10_c01446{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3_c01446{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m29_c01446{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m15_c01446{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m49_c01446{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01446{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m17_c01446{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m20_c01446{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.ma_c01446{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m14_c01446{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01446{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m30_c01446{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);}
.m40_c01446{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_c01446{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m48_c01446{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m0_c01446{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);}
.me_c01446{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);}
.m31_c01446{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_c01446{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m16_c01446{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);}
.m19_c01446{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);}
.m2_c01446{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m38_c01446{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01446{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m9_c01446{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_c01446{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01446{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m22_c01446{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m34_c01446{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m32_c01446{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m46_c01446{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01446{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01446{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m39_c01446{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);}
.m2c_c01446{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m27_c01446{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m44_c01446{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m4_c01446{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);}
.md_c01446{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m8_c01446{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m18_c01446{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m28_c01446{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);}
.m11_c01446{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m25_c01446{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01446{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01446{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m7_c01446{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m47_c01446{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.v0_c01446{vertical-align:0.000000px;}
.v1_c01446{vertical-align:2.880000px;}
.v2_c01446{vertical-align:8.640000px;}
.ls0_c01446{letter-spacing:0.000000px;}
.sc__c01446{text-shadow:none;}
.sc0_c01446{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01446{-webkit-text-stroke:0px transparent;}
.sc0_c01446{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01446{word-spacing:0.000000px;}
.ws1_c01446{word-spacing:18.608400px;}
.ws0_c01446{word-spacing:46.595280px;}
.ws2_c01446{word-spacing:57.036000px;}
.fc0_c01446{color:transparent;}
.fs11_c01446{font-size:28.800000px;}
.fsf_c01446{font-size:34.560000px;}
.fs5_c01446{font-size:37.440000px;}
.fs6_c01446{font-size:40.320000px;}
.fs10_c01446{font-size:43.200000px;}
.fs9_c01446{font-size:46.080000px;}
.fsc_c01446{font-size:48.960000px;}
.fs4_c01446{font-size:51.840000px;}
.fsb_c01446{font-size:54.720000px;}
.fs2_c01446{font-size:57.600000px;}
.fs7_c01446{font-size:60.480000px;}
.fs3_c01446{font-size:63.360000px;}
.fs8_c01446{font-size:66.240000px;}
.fsd_c01446{font-size:69.120000px;}
.fse_c01446{font-size:72.000000px;}
.fs0_c01446{font-size:74.880000px;}
.fsa_c01446{font-size:77.760000px;}
.fs1_c01446{font-size:342.720000px;}
.y0_c01446{bottom:0.000000px;}
.y55_c01446{bottom:46.080000px;}
.y54_c01446{bottom:46.800000px;}
.y53_c01446{bottom:49.680000px;}
.y52_c01446{bottom:77.760000px;}
.y6a_c01446{bottom:82.080000px;}
.y51_c01446{bottom:82.800000px;}
.y50_c01446{bottom:83.520000px;}
.y6b_c01446{bottom:84.240000px;}
.y69_c01446{bottom:84.960000px;}
.y4e_c01446{bottom:120.960000px;}
.y4f_c01446{bottom:123.120000px;}
.y4d_c01446{bottom:125.280000px;}
.y68_c01446{bottom:128.160000px;}
.y47_c01446{bottom:166.320000px;}
.y4b_c01446{bottom:167.040000px;}
.y4a_c01446{bottom:167.760000px;}
.y48_c01446{bottom:168.480000px;}
.y46_c01446{bottom:169.200000px;}
.y49_c01446{bottom:169.920000px;}
.y67_c01446{bottom:170.640000px;}
.y4c_c01446{bottom:171.360000px;}
.y45_c01446{bottom:208.800000px;}
.y44_c01446{bottom:212.400000px;}
.y66_c01446{bottom:213.120000px;}
.y65_c01446{bottom:215.280000px;}
.y40_c01446{bottom:252.000000px;}
.y43_c01446{bottom:252.720000px;}
.y41_c01446{bottom:254.160000px;}
.y64_c01446{bottom:254.880000px;}
.y61_c01446{bottom:255.600000px;}
.y3f_c01446{bottom:256.320000px;}
.y42_c01446{bottom:257.040000px;}
.y63_c01446{bottom:257.760000px;}
.y62_c01446{bottom:258.480000px;}
.y3e_c01446{bottom:295.920000px;}
.y3d_c01446{bottom:296.640000px;}
.y3b_c01446{bottom:298.080000px;}
.y3c_c01446{bottom:298.800000px;}
.y5f_c01446{bottom:299.520000px;}
.y60_c01446{bottom:300.960000px;}
.y3a_c01446{bottom:339.120000px;}
.y5e_c01446{bottom:342.000000px;}
.y39_c01446{bottom:342.720000px;}
.y38_c01446{bottom:382.320000px;}
.y5d_c01446{bottom:384.480000px;}
.y37_c01446{bottom:385.200000px;}
.y34_c01446{bottom:426.240000px;}
.y36_c01446{bottom:429.120000px;}
.y35_c01446{bottom:429.840000px;}
.y30_c01446{bottom:479.520000px;}
.y33_c01446{bottom:480.960000px;}
.y32_c01446{bottom:481.680000px;}
.y5c_c01446{bottom:482.400000px;}
.y2f_c01446{bottom:483.120000px;}
.y31_c01446{bottom:483.840000px;}
.y2e_c01446{bottom:522.720000px;}
.y5b_c01446{bottom:524.880000px;}
.y2c_c01446{bottom:525.600000px;}
.y2d_c01446{bottom:527.040000px;}
.y2b_c01446{bottom:566.640000px;}
.y5a_c01446{bottom:568.080000px;}
.y2a_c01446{bottom:569.520000px;}
.y27_c01446{bottom:609.840000px;}
.y29_c01446{bottom:613.440000px;}
.y28_c01446{bottom:614.160000px;}
.y24_c01446{bottom:663.840000px;}
.y59_c01446{bottom:664.560000px;}
.y26_c01446{bottom:665.280000px;}
.y23_c01446{bottom:666.720000px;}
.y25_c01446{bottom:668.160000px;}
.y21_c01446{bottom:707.760000px;}
.y22_c01446{bottom:712.080000px;}
.y1c_c01446{bottom:771.840000px;}
.y20_c01446{bottom:772.560000px;}
.y1f_c01446{bottom:773.280000px;}
.y1b_c01446{bottom:774.000000px;}
.y58_c01446{bottom:774.720000px;}
.y1e_c01446{bottom:775.440000px;}
.y1d_c01446{bottom:776.160000px;}
.y1a_c01446{bottom:814.320000px;}
.y17_c01446{bottom:815.760000px;}
.y18_c01446{bottom:816.480000px;}
.y16_c01446{bottom:818.640000px;}
.y19_c01446{bottom:819.360000px;}
.y15_c01446{bottom:858.960000px;}
.y14_c01446{bottom:862.560000px;}
.y13_c01446{bottom:902.160000px;}
.y57_c01446{bottom:902.880000px;}
.y12_c01446{bottom:905.040000px;}
.y56_c01446{bottom:945.360000px;}
.y11_c01446{bottom:946.080000px;}
.y10_c01446{bottom:947.520000px;}
.yf_c01446{bottom:948.240000px;}
.yd_c01446{bottom:988.560000px;}
.ye_c01446{bottom:989.280000px;}
.yb_c01446{bottom:990.000000px;}
.yc_c01446{bottom:992.160000px;}
.ya_c01446{bottom:992.880000px;}
.y9_c01446{bottom:1020.960000px;}
.y6_c01446{bottom:1030.320000px;}
.y4_c01446{bottom:1031.040000px;}
.y5_c01446{bottom:1031.760000px;}
.y8_c01446{bottom:1033.200000px;}
.y7_c01446{bottom:1033.920000px;}
.y3_c01446{bottom:1034.640000px;}
.y2_c01446{bottom:1074.240000px;}
.y1_c01446{bottom:1076.400000px;}
.h14_c01446{height:25.917187px;}
.h12_c01446{height:31.100625px;}
.h7_c01446{height:33.692344px;}
.h8_c01446{height:36.284062px;}
.h13_c01446{height:38.875781px;}
.hb_c01446{height:41.467500px;}
.he_c01446{height:44.059219px;}
.h6_c01446{height:46.650937px;}
.hd_c01446{height:49.242656px;}
.h4_c01446{height:51.834375px;}
.h9_c01446{height:54.426094px;}
.h5_c01446{height:57.017812px;}
.h15_c01446{height:57.306094px;}
.ha_c01446{height:59.609531px;}
.h16_c01446{height:60.474375px;}
.hf_c01446{height:62.201250px;}
.h10_c01446{height:64.792969px;}
.h2_c01446{height:67.384687px;}
.hc_c01446{height:69.976406px;}
.h11_c01446{height:70.264688px;}
.h3_c01446{height:308.414531px;}
.h0_c01446{height:1159.920000px;}
.h1_c01446{height:1160.250000px;}
.w1_c01446{width:788.250000px;}
.w0_c01446{width:788.400000px;}
.x0_c01446{left:0.000000px;}
.x26_c01446{left:56.880000px;}
.x17_c01446{left:58.320000px;}
.x3_c01446{left:59.760000px;}
.x38_c01446{left:79.920000px;}
.x22_c01446{left:100.080000px;}
.x3b_c01446{left:109.440000px;}
.x30_c01446{left:110.880000px;}
.x20_c01446{left:112.320000px;}
.x1a_c01446{left:121.680000px;}
.x4_c01446{left:123.120000px;}
.xf_c01446{left:124.560000px;}
.x3c_c01446{left:154.080000px;}
.x21_c01446{left:166.320000px;}
.x2c_c01446{left:175.680000px;}
.x24_c01446{left:185.760000px;}
.x2d_c01446{left:187.200000px;}
.x31_c01446{left:198.000000px;}
.x39_c01446{left:208.800000px;}
.x10_c01446{left:210.240000px;}
.x2a_c01446{left:218.880000px;}
.x18_c01446{left:220.320000px;}
.x25_c01446{left:230.400000px;}
.x36_c01446{left:241.920000px;}
.x32_c01446{left:251.280000px;}
.x5_c01446{left:253.440000px;}
.x1b_c01446{left:263.520000px;}
.x11_c01446{left:275.040000px;}
.x37_c01446{left:283.680000px;}
.x2b_c01446{left:295.920000px;}
.x33_c01446{left:306.000000px;}
.x6_c01446{left:308.160000px;}
.x27_c01446{left:315.360000px;}
.x2e_c01446{left:316.800000px;}
.x1c_c01446{left:318.240000px;}
.x2f_c01446{left:359.280000px;}
.x19_c01446{left:360.720000px;}
.x15_c01446{left:383.040000px;}
.x3a_c01446{left:391.680000px;}
.x34_c01446{left:402.480000px;}
.x1d_c01446{left:403.920000px;}
.x23_c01446{left:436.320000px;}
.x7_c01446{left:437.760000px;}
.x28_c01446{left:445.680000px;}
.x35_c01446{left:455.760000px;}
.x1e_c01446{left:457.920000px;}
.x16_c01446{left:491.040000px;}
.x29_c01446{left:499.680000px;}
.x1f_c01446{left:501.120000px;}
.x8_c01446{left:577.440000px;}
.x48_c01446{left:586.080000px;}
.x9_c01446{left:589.680000px;}
.xa_c01446{left:600.480000px;}
.x49_c01446{left:606.960000px;}
.x41_c01446{left:609.120000px;}
.x3e_c01446{left:610.560000px;}
.x42_c01446{left:619.920000px;}
.xb_c01446{left:632.880000px;}
.x4d_c01446{left:638.640000px;}
.x44_c01446{left:640.800000px;}
.x3f_c01446{left:642.240000px;}
.x12_c01446{left:643.680000px;}
.x1_c01446{left:657.360000px;}
.x4a_c01446{left:673.200000px;}
.x45_c01446{left:674.640000px;}
.x13_c01446{left:676.800000px;}
.xc_c01446{left:681.840000px;}
.x40_c01446{left:686.160000px;}
.x14_c01446{left:709.920000px;}
.x4b_c01446{left:714.960000px;}
.x47_c01446{left:716.400000px;}
.x43_c01446{left:717.840000px;}
.x3d_c01446{left:719.280000px;}
.xd_c01446{left:725.040000px;}
.x4c_c01446{left:736.560000px;}
.x46_c01446{left:738.000000px;}
.xe_c01446{left:740.880000px;}
.x2_c01446{left:775.440000px;}
@media print{
.v0_c01446{vertical-align:0.000000pt;}
.v1_c01446{vertical-align:2.560000pt;}
.v2_c01446{vertical-align:7.680000pt;}
.ls0_c01446{letter-spacing:0.000000pt;}
.ws3_c01446{word-spacing:0.000000pt;}
.ws1_c01446{word-spacing:16.540800pt;}
.ws0_c01446{word-spacing:41.418027pt;}
.ws2_c01446{word-spacing:50.698667pt;}
.fs11_c01446{font-size:25.600000pt;}
.fsf_c01446{font-size:30.720000pt;}
.fs5_c01446{font-size:33.280000pt;}
.fs6_c01446{font-size:35.840000pt;}
.fs10_c01446{font-size:38.400000pt;}
.fs9_c01446{font-size:40.960000pt;}
.fsc_c01446{font-size:43.520000pt;}
.fs4_c01446{font-size:46.080000pt;}
.fsb_c01446{font-size:48.640000pt;}
.fs2_c01446{font-size:51.200000pt;}
.fs7_c01446{font-size:53.760000pt;}
.fs3_c01446{font-size:56.320000pt;}
.fs8_c01446{font-size:58.880000pt;}
.fsd_c01446{font-size:61.440000pt;}
.fse_c01446{font-size:64.000000pt;}
.fs0_c01446{font-size:66.560000pt;}
.fsa_c01446{font-size:69.120000pt;}
.fs1_c01446{font-size:304.640000pt;}
.y0_c01446{bottom:0.000000pt;}
.y55_c01446{bottom:40.960000pt;}
.y54_c01446{bottom:41.600000pt;}
.y53_c01446{bottom:44.160000pt;}
.y52_c01446{bottom:69.120000pt;}
.y6a_c01446{bottom:72.960000pt;}
.y51_c01446{bottom:73.600000pt;}
.y50_c01446{bottom:74.240000pt;}
.y6b_c01446{bottom:74.880000pt;}
.y69_c01446{bottom:75.520000pt;}
.y4e_c01446{bottom:107.520000pt;}
.y4f_c01446{bottom:109.440000pt;}
.y4d_c01446{bottom:111.360000pt;}
.y68_c01446{bottom:113.920000pt;}
.y47_c01446{bottom:147.840000pt;}
.y4b_c01446{bottom:148.480000pt;}
.y4a_c01446{bottom:149.120000pt;}
.y48_c01446{bottom:149.760000pt;}
.y46_c01446{bottom:150.400000pt;}
.y49_c01446{bottom:151.040000pt;}
.y67_c01446{bottom:151.680000pt;}
.y4c_c01446{bottom:152.320000pt;}
.y45_c01446{bottom:185.600000pt;}
.y44_c01446{bottom:188.800000pt;}
.y66_c01446{bottom:189.440000pt;}
.y65_c01446{bottom:191.360000pt;}
.y40_c01446{bottom:224.000000pt;}
.y43_c01446{bottom:224.640000pt;}
.y41_c01446{bottom:225.920000pt;}
.y64_c01446{bottom:226.560000pt;}
.y61_c01446{bottom:227.200000pt;}
.y3f_c01446{bottom:227.840000pt;}
.y42_c01446{bottom:228.480000pt;}
.y63_c01446{bottom:229.120000pt;}
.y62_c01446{bottom:229.760000pt;}
.y3e_c01446{bottom:263.040000pt;}
.y3d_c01446{bottom:263.680000pt;}
.y3b_c01446{bottom:264.960000pt;}
.y3c_c01446{bottom:265.600000pt;}
.y5f_c01446{bottom:266.240000pt;}
.y60_c01446{bottom:267.520000pt;}
.y3a_c01446{bottom:301.440000pt;}
.y5e_c01446{bottom:304.000000pt;}
.y39_c01446{bottom:304.640000pt;}
.y38_c01446{bottom:339.840000pt;}
.y5d_c01446{bottom:341.760000pt;}
.y37_c01446{bottom:342.400000pt;}
.y34_c01446{bottom:378.880000pt;}
.y36_c01446{bottom:381.440000pt;}
.y35_c01446{bottom:382.080000pt;}
.y30_c01446{bottom:426.240000pt;}
.y33_c01446{bottom:427.520000pt;}
.y32_c01446{bottom:428.160000pt;}
.y5c_c01446{bottom:428.800000pt;}
.y2f_c01446{bottom:429.440000pt;}
.y31_c01446{bottom:430.080000pt;}
.y2e_c01446{bottom:464.640000pt;}
.y5b_c01446{bottom:466.560000pt;}
.y2c_c01446{bottom:467.200000pt;}
.y2d_c01446{bottom:468.480000pt;}
.y2b_c01446{bottom:503.680000pt;}
.y5a_c01446{bottom:504.960000pt;}
.y2a_c01446{bottom:506.240000pt;}
.y27_c01446{bottom:542.080000pt;}
.y29_c01446{bottom:545.280000pt;}
.y28_c01446{bottom:545.920000pt;}
.y24_c01446{bottom:590.080000pt;}
.y59_c01446{bottom:590.720000pt;}
.y26_c01446{bottom:591.360000pt;}
.y23_c01446{bottom:592.640000pt;}
.y25_c01446{bottom:593.920000pt;}
.y21_c01446{bottom:629.120000pt;}
.y22_c01446{bottom:632.960000pt;}
.y1c_c01446{bottom:686.080000pt;}
.y20_c01446{bottom:686.720000pt;}
.y1f_c01446{bottom:687.360000pt;}
.y1b_c01446{bottom:688.000000pt;}
.y58_c01446{bottom:688.640000pt;}
.y1e_c01446{bottom:689.280000pt;}
.y1d_c01446{bottom:689.920000pt;}
.y1a_c01446{bottom:723.840000pt;}
.y17_c01446{bottom:725.120000pt;}
.y18_c01446{bottom:725.760000pt;}
.y16_c01446{bottom:727.680000pt;}
.y19_c01446{bottom:728.320000pt;}
.y15_c01446{bottom:763.520000pt;}
.y14_c01446{bottom:766.720000pt;}
.y13_c01446{bottom:801.920000pt;}
.y57_c01446{bottom:802.560000pt;}
.y12_c01446{bottom:804.480000pt;}
.y56_c01446{bottom:840.320000pt;}
.y11_c01446{bottom:840.960000pt;}
.y10_c01446{bottom:842.240000pt;}
.yf_c01446{bottom:842.880000pt;}
.yd_c01446{bottom:878.720000pt;}
.ye_c01446{bottom:879.360000pt;}
.yb_c01446{bottom:880.000000pt;}
.yc_c01446{bottom:881.920000pt;}
.ya_c01446{bottom:882.560000pt;}
.y9_c01446{bottom:907.520000pt;}
.y6_c01446{bottom:915.840000pt;}
.y4_c01446{bottom:916.480000pt;}
.y5_c01446{bottom:917.120000pt;}
.y8_c01446{bottom:918.400000pt;}
.y7_c01446{bottom:919.040000pt;}
.y3_c01446{bottom:919.680000pt;}
.y2_c01446{bottom:954.880000pt;}
.y1_c01446{bottom:956.800000pt;}
.h14_c01446{height:23.037500pt;}
.h12_c01446{height:27.645000pt;}
.h7_c01446{height:29.948750pt;}
.h8_c01446{height:32.252500pt;}
.h13_c01446{height:34.556250pt;}
.hb_c01446{height:36.860000pt;}
.he_c01446{height:39.163750pt;}
.h6_c01446{height:41.467500pt;}
.hd_c01446{height:43.771250pt;}
.h4_c01446{height:46.075000pt;}
.h9_c01446{height:48.378750pt;}
.h5_c01446{height:50.682500pt;}
.h15_c01446{height:50.938750pt;}
.ha_c01446{height:52.986250pt;}
.h16_c01446{height:53.755000pt;}
.hf_c01446{height:55.290000pt;}
.h10_c01446{height:57.593750pt;}
.h2_c01446{height:59.897500pt;}
.hc_c01446{height:62.201250pt;}
.h11_c01446{height:62.457500pt;}
.h3_c01446{height:274.146250pt;}
.h0_c01446{height:1031.040000pt;}
.h1_c01446{height:1031.333333pt;}
.w1_c01446{width:700.666667pt;}
.w0_c01446{width:700.800000pt;}
.x0_c01446{left:0.000000pt;}
.x26_c01446{left:50.560000pt;}
.x17_c01446{left:51.840000pt;}
.x3_c01446{left:53.120000pt;}
.x38_c01446{left:71.040000pt;}
.x22_c01446{left:88.960000pt;}
.x3b_c01446{left:97.280000pt;}
.x30_c01446{left:98.560000pt;}
.x20_c01446{left:99.840000pt;}
.x1a_c01446{left:108.160000pt;}
.x4_c01446{left:109.440000pt;}
.xf_c01446{left:110.720000pt;}
.x3c_c01446{left:136.960000pt;}
.x21_c01446{left:147.840000pt;}
.x2c_c01446{left:156.160000pt;}
.x24_c01446{left:165.120000pt;}
.x2d_c01446{left:166.400000pt;}
.x31_c01446{left:176.000000pt;}
.x39_c01446{left:185.600000pt;}
.x10_c01446{left:186.880000pt;}
.x2a_c01446{left:194.560000pt;}
.x18_c01446{left:195.840000pt;}
.x25_c01446{left:204.800000pt;}
.x36_c01446{left:215.040000pt;}
.x32_c01446{left:223.360000pt;}
.x5_c01446{left:225.280000pt;}
.x1b_c01446{left:234.240000pt;}
.x11_c01446{left:244.480000pt;}
.x37_c01446{left:252.160000pt;}
.x2b_c01446{left:263.040000pt;}
.x33_c01446{left:272.000000pt;}
.x6_c01446{left:273.920000pt;}
.x27_c01446{left:280.320000pt;}
.x2e_c01446{left:281.600000pt;}
.x1c_c01446{left:282.880000pt;}
.x2f_c01446{left:319.360000pt;}
.x19_c01446{left:320.640000pt;}
.x15_c01446{left:340.480000pt;}
.x3a_c01446{left:348.160000pt;}
.x34_c01446{left:357.760000pt;}
.x1d_c01446{left:359.040000pt;}
.x23_c01446{left:387.840000pt;}
.x7_c01446{left:389.120000pt;}
.x28_c01446{left:396.160000pt;}
.x35_c01446{left:405.120000pt;}
.x1e_c01446{left:407.040000pt;}
.x16_c01446{left:436.480000pt;}
.x29_c01446{left:444.160000pt;}
.x1f_c01446{left:445.440000pt;}
.x8_c01446{left:513.280000pt;}
.x48_c01446{left:520.960000pt;}
.x9_c01446{left:524.160000pt;}
.xa_c01446{left:533.760000pt;}
.x49_c01446{left:539.520000pt;}
.x41_c01446{left:541.440000pt;}
.x3e_c01446{left:542.720000pt;}
.x42_c01446{left:551.040000pt;}
.xb_c01446{left:562.560000pt;}
.x4d_c01446{left:567.680000pt;}
.x44_c01446{left:569.600000pt;}
.x3f_c01446{left:570.880000pt;}
.x12_c01446{left:572.160000pt;}
.x1_c01446{left:584.320000pt;}
.x4a_c01446{left:598.400000pt;}
.x45_c01446{left:599.680000pt;}
.x13_c01446{left:601.600000pt;}
.xc_c01446{left:606.080000pt;}
.x40_c01446{left:609.920000pt;}
.x14_c01446{left:631.040000pt;}
.x4b_c01446{left:635.520000pt;}
.x47_c01446{left:636.800000pt;}
.x43_c01446{left:638.080000pt;}
.x3d_c01446{left:639.360000pt;}
.xd_c01446{left:644.480000pt;}
.x4c_c01446{left:654.720000pt;}
.x46_c01446{left:656.000000pt;}
.xe_c01446{left:658.560000pt;}
.x2_c01446{left:689.280000pt;}
}





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

.ir_c01447:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01447{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01447;src:url('chunks/assets/font_17773ad2e178a8dec5162e1a.woff2')format("woff");}.ff1_c01447{font-family:ff1_c01447;line-height:1.109863;font-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_c01447{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m26_c01447{transform:matrix(0.058225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058225,0.000000,0.000000,0.250000,0,0);}
.m0_c01447{transform:matrix(0.235225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235225,0.000000,0.000000,0.250000,0,0);}
.m46_c01447{transform:matrix(0.236550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236550,0.000000,0.000000,0.250000,0,0);}
.m3c_c01447{transform:matrix(0.241125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241125,0.000000,0.000000,0.250000,0,0);}
.m35_c01447{transform:matrix(0.244050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244050,0.000000,0.000000,0.250000,0,0);}
.m37_c01447{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m43_c01447{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m44_c01447{transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);}
.m30_c01447{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);}
.m2d_c01447{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);}
.m31_c01447{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m16_c01447{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.md_c01447{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);}
.m2e_c01447{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);}
.m42_c01447{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_c01447{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_c01447{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m6_c01447{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);}
.m22_c01447{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);}
.m48_c01447{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m10_c01447{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m9_c01447{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m12_c01447{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_c01447{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01447{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01447{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m24_c01447{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m21_c01447{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m40_c01447{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01447{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m13_c01447{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01447{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01447{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.me_c01447{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m28_c01447{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m32_c01447{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m20_c01447{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m4_c01447{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01447{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);}
.m38_c01447{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_c01447{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01447{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m47_c01447{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);}
.m3a_c01447{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);}
.ma_c01447{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);}
.m34_c01447{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);}
.m17_c01447{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.mb_c01447{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01447{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m33_c01447{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m11_c01447{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m5_c01447{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m3_c01447{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01447{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m15_c01447{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m2_c01447{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m7_c01447{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m14_c01447{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.mc_c01447{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);}
.mf_c01447{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);}
.m1c_c01447{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m39_c01447{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m45_c01447{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);}
.m36_c01447{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);}
.m2b_c01447{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m1_c01447{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);}
.m41_c01447{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m49_c01447{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m23_c01447{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);}
.m1b_c01447{transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01447{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m25_c01447{transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01447{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.v1_c01447{vertical-align:-5.760000px;}
.v2_c01447{vertical-align:-2.880000px;}
.v0_c01447{vertical-align:0.000000px;}
.ls1_c01447{letter-spacing:0.000000px;}
.ls0_c01447{letter-spacing:87.974400px;}
.sc__c01447{text-shadow:none;}
.sc0_c01447{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01447{-webkit-text-stroke:0px transparent;}
.sc0_c01447{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01447{word-spacing:0.000000px;}
.ws0_c01447{word-spacing:9.212400px;}
.fc0_c01447{color:transparent;}
.fs1_c01447{font-size:37.440000px;}
.fs9_c01447{font-size:40.320000px;}
.fsf_c01447{font-size:43.200000px;}
.fs10_c01447{font-size:46.080000px;}
.fs2_c01447{font-size:48.960000px;}
.fs3_c01447{font-size:51.840000px;}
.fs5_c01447{font-size:54.720000px;}
.fs4_c01447{font-size:57.600000px;}
.fs8_c01447{font-size:60.480000px;}
.fs7_c01447{font-size:63.360000px;}
.fsb_c01447{font-size:66.240000px;}
.fsd_c01447{font-size:69.120000px;}
.fsc_c01447{font-size:72.000000px;}
.fsa_c01447{font-size:74.880000px;}
.fs0_c01447{font-size:77.760000px;}
.fs6_c01447{font-size:80.640000px;}
.fse_c01447{font-size:89.280000px;}
.y0_c01447{bottom:0.000000px;}
.y62_c01447{bottom:67.680000px;}
.y61_c01447{bottom:69.840000px;}
.y63_c01447{bottom:71.280000px;}
.y64_c01447{bottom:72.720000px;}
.y5a_c01447{bottom:110.880000px;}
.y5b_c01447{bottom:111.600000px;}
.y5c_c01447{bottom:112.320000px;}
.y5e_c01447{bottom:113.760000px;}
.y59_c01447{bottom:114.480000px;}
.y5d_c01447{bottom:115.200000px;}
.y5f_c01447{bottom:115.920000px;}
.y60_c01447{bottom:116.640000px;}
.y56_c01447{bottom:154.080000px;}
.y55_c01447{bottom:156.960000px;}
.y58_c01447{bottom:158.400000px;}
.y57_c01447{bottom:159.840000px;}
.y52_c01447{bottom:197.280000px;}
.y50_c01447{bottom:199.440000px;}
.y4f_c01447{bottom:200.160000px;}
.y51_c01447{bottom:200.880000px;}
.y53_c01447{bottom:201.600000px;}
.y54_c01447{bottom:202.320000px;}
.y49_c01447{bottom:240.480000px;}
.y4c_c01447{bottom:242.640000px;}
.y4d_c01447{bottom:243.360000px;}
.y48_c01447{bottom:244.080000px;}
.y4e_c01447{bottom:245.520000px;}
.y47_c01447{bottom:283.680000px;}
.y4a_c01447{bottom:285.840000px;}
.y4b_c01447{bottom:287.280000px;}
.y46_c01447{bottom:288.000000px;}
.y43_c01447{bottom:326.880000px;}
.y45_c01447{bottom:330.480000px;}
.y44_c01447{bottom:331.920000px;}
.y41_c01447{bottom:381.600000px;}
.y42_c01447{bottom:383.760000px;}
.y40_c01447{bottom:385.200000px;}
.y3d_c01447{bottom:424.800000px;}
.y3f_c01447{bottom:426.240000px;}
.y3c_c01447{bottom:428.400000px;}
.y3e_c01447{bottom:429.120000px;}
.y38_c01447{bottom:470.160000px;}
.y3a_c01447{bottom:470.880000px;}
.y37_c01447{bottom:471.600000px;}
.y39_c01447{bottom:472.320000px;}
.y3b_c01447{bottom:473.040000px;}
.y33_c01447{bottom:511.920000px;}
.y35_c01447{bottom:513.360000px;}
.y32_c01447{bottom:514.800000px;}
.y36_c01447{bottom:515.520000px;}
.y34_c01447{bottom:516.240000px;}
.y2f_c01447{bottom:555.840000px;}
.y31_c01447{bottom:557.280000px;}
.y2e_c01447{bottom:558.720000px;}
.y30_c01447{bottom:559.440000px;}
.y2c_c01447{bottom:599.040000px;}
.y2d_c01447{bottom:601.920000px;}
.y2b_c01447{bottom:602.640000px;}
.y2a_c01447{bottom:603.360000px;}
.y1b_c01447{bottom:642.240000px;}
.y29_c01447{bottom:642.960000px;}
.y19_c01447{bottom:644.400000px;}
.y28_c01447{bottom:645.120000px;}
.y1a_c01447{bottom:645.840000px;}
.y18_c01447{bottom:685.440000px;}
.y27_c01447{bottom:686.160000px;}
.y17_c01447{bottom:689.040000px;}
.y26_c01447{bottom:714.240000px;}
.y14_c01447{bottom:728.640000px;}
.y15_c01447{bottom:729.360000px;}
.y16_c01447{bottom:730.080000px;}
.y24_c01447{bottom:730.800000px;}
.y13_c01447{bottom:732.240000px;}
.y25_c01447{bottom:735.840000px;}
.y12_c01447{bottom:771.840000px;}
.y23_c01447{bottom:772.560000px;}
.y11_c01447{bottom:775.440000px;}
.y10_c01447{bottom:776.160000px;}
.yf_c01447{bottom:815.040000px;}
.yd_c01447{bottom:817.200000px;}
.ye_c01447{bottom:819.360000px;}
.y22_c01447{bottom:857.520000px;}
.yc_c01447{bottom:858.240000px;}
.yb_c01447{bottom:861.120000px;}
.ya_c01447{bottom:901.440000px;}
.y21_c01447{bottom:902.160000px;}
.y20_c01447{bottom:903.600000px;}
.y9_c01447{bottom:904.320000px;}
.y1d_c01447{bottom:943.920000px;}
.y8_c01447{bottom:944.640000px;}
.y1e_c01447{bottom:945.360000px;}
.y1f_c01447{bottom:946.800000px;}
.y7_c01447{bottom:947.520000px;}
.y6_c01447{bottom:987.840000px;}
.y5_c01447{bottom:990.000000px;}
.y1c_c01447{bottom:990.720000px;}
.y1_c01447{bottom:1032.480000px;}
.y3_c01447{bottom:1033.200000px;}
.y4_c01447{bottom:1035.360000px;}
.y2_c01447{bottom:1036.080000px;}
.h3_c01447{height:33.692344px;}
.hb_c01447{height:36.284062px;}
.h11_c01447{height:38.875781px;}
.h12_c01447{height:41.467500px;}
.h4_c01447{height:44.059219px;}
.h5_c01447{height:46.650937px;}
.h7_c01447{height:49.242656px;}
.h6_c01447{height:51.834375px;}
.ha_c01447{height:54.426094px;}
.h9_c01447{height:57.017812px;}
.hd_c01447{height:59.609531px;}
.hf_c01447{height:62.201250px;}
.he_c01447{height:64.792969px;}
.hc_c01447{height:67.384687px;}
.h2_c01447{height:69.976406px;}
.h8_c01447{height:72.568125px;}
.h10_c01447{height:80.343281px;}
.h0_c01447{height:1160.640000px;}
.h1_c01447{height:1161.000000px;}
.w1_c01447{width:789.000000px;}
.w0_c01447{width:789.120000px;}
.x0_c01447{left:0.000000px;}
.x20_c01447{left:59.040000px;}
.x6_c01447{left:60.480000px;}
.x2e_c01447{left:110.880000px;}
.x7_c01447{left:113.040000px;}
.x1_c01447{left:114.480000px;}
.x2d_c01447{left:123.840000px;}
.x2_c01447{left:168.480000px;}
.x8_c01447{left:189.360000px;}
.x25_c01447{left:198.720000px;}
.x31_c01447{left:208.080000px;}
.x27_c01447{left:209.520000px;}
.x2c_c01447{left:221.760000px;}
.x3_c01447{left:233.280000px;}
.x1e_c01447{left:242.640000px;}
.x9_c01447{left:244.080000px;}
.x28_c01447{left:252.720000px;}
.x21_c01447{left:264.240000px;}
.x4_c01447{left:265.680000px;}
.xa_c01447{left:285.840000px;}
.x5_c01447{left:287.280000px;}
.x22_c01447{left:296.640000px;}
.x29_c01447{left:308.160000px;}
.x35_c01447{left:339.120000px;}
.x23_c01447{left:350.640000px;}
.x32_c01447{left:361.440000px;}
.x36_c01447{left:382.320000px;}
.xb_c01447{left:383.760000px;}
.x33_c01447{left:403.200000px;}
.x37_c01447{left:436.320000px;}
.xc_c01447{left:437.760000px;}
.x34_c01447{left:457.920000px;}
.x2a_c01447{left:479.520000px;}
.x24_c01447{left:577.440000px;}
.x1c_c01447{left:588.960000px;}
.x2f_c01447{left:607.680000px;}
.x19_c01447{left:609.120000px;}
.x16_c01447{left:610.560000px;}
.xd_c01447{left:612.000000px;}
.x1a_c01447{left:620.640000px;}
.x1b_c01447{left:634.320000px;}
.x1d_c01447{left:642.240000px;}
.x13_c01447{left:643.680000px;}
.x10_c01447{left:645.120000px;}
.x1f_c01447{left:674.640000px;}
.x14_c01447{left:676.080000px;}
.x11_c01447{left:678.240000px;}
.x2b_c01447{left:684.720000px;}
.x30_c01447{left:716.400000px;}
.x15_c01447{left:717.840000px;}
.x12_c01447{left:719.280000px;}
.xe_c01447{left:720.720000px;}
.x26_c01447{left:737.280000px;}
.x17_c01447{left:738.720000px;}
.xf_c01447{left:741.600000px;}
.x18_c01447{left:774.000000px;}
@media print{
.v1_c01447{vertical-align:-5.120000pt;}
.v2_c01447{vertical-align:-2.560000pt;}
.v0_c01447{vertical-align:0.000000pt;}
.ls1_c01447{letter-spacing:0.000000pt;}
.ls0_c01447{letter-spacing:78.199467pt;}
.ws1_c01447{word-spacing:0.000000pt;}
.ws0_c01447{word-spacing:8.188800pt;}
.fs1_c01447{font-size:33.280000pt;}
.fs9_c01447{font-size:35.840000pt;}
.fsf_c01447{font-size:38.400000pt;}
.fs10_c01447{font-size:40.960000pt;}
.fs2_c01447{font-size:43.520000pt;}
.fs3_c01447{font-size:46.080000pt;}
.fs5_c01447{font-size:48.640000pt;}
.fs4_c01447{font-size:51.200000pt;}
.fs8_c01447{font-size:53.760000pt;}
.fs7_c01447{font-size:56.320000pt;}
.fsb_c01447{font-size:58.880000pt;}
.fsd_c01447{font-size:61.440000pt;}
.fsc_c01447{font-size:64.000000pt;}
.fsa_c01447{font-size:66.560000pt;}
.fs0_c01447{font-size:69.120000pt;}
.fs6_c01447{font-size:71.680000pt;}
.fse_c01447{font-size:79.360000pt;}
.y0_c01447{bottom:0.000000pt;}
.y62_c01447{bottom:60.160000pt;}
.y61_c01447{bottom:62.080000pt;}
.y63_c01447{bottom:63.360000pt;}
.y64_c01447{bottom:64.640000pt;}
.y5a_c01447{bottom:98.560000pt;}
.y5b_c01447{bottom:99.200000pt;}
.y5c_c01447{bottom:99.840000pt;}
.y5e_c01447{bottom:101.120000pt;}
.y59_c01447{bottom:101.760000pt;}
.y5d_c01447{bottom:102.400000pt;}
.y5f_c01447{bottom:103.040000pt;}
.y60_c01447{bottom:103.680000pt;}
.y56_c01447{bottom:136.960000pt;}
.y55_c01447{bottom:139.520000pt;}
.y58_c01447{bottom:140.800000pt;}
.y57_c01447{bottom:142.080000pt;}
.y52_c01447{bottom:175.360000pt;}
.y50_c01447{bottom:177.280000pt;}
.y4f_c01447{bottom:177.920000pt;}
.y51_c01447{bottom:178.560000pt;}
.y53_c01447{bottom:179.200000pt;}
.y54_c01447{bottom:179.840000pt;}
.y49_c01447{bottom:213.760000pt;}
.y4c_c01447{bottom:215.680000pt;}
.y4d_c01447{bottom:216.320000pt;}
.y48_c01447{bottom:216.960000pt;}
.y4e_c01447{bottom:218.240000pt;}
.y47_c01447{bottom:252.160000pt;}
.y4a_c01447{bottom:254.080000pt;}
.y4b_c01447{bottom:255.360000pt;}
.y46_c01447{bottom:256.000000pt;}
.y43_c01447{bottom:290.560000pt;}
.y45_c01447{bottom:293.760000pt;}
.y44_c01447{bottom:295.040000pt;}
.y41_c01447{bottom:339.200000pt;}
.y42_c01447{bottom:341.120000pt;}
.y40_c01447{bottom:342.400000pt;}
.y3d_c01447{bottom:377.600000pt;}
.y3f_c01447{bottom:378.880000pt;}
.y3c_c01447{bottom:380.800000pt;}
.y3e_c01447{bottom:381.440000pt;}
.y38_c01447{bottom:417.920000pt;}
.y3a_c01447{bottom:418.560000pt;}
.y37_c01447{bottom:419.200000pt;}
.y39_c01447{bottom:419.840000pt;}
.y3b_c01447{bottom:420.480000pt;}
.y33_c01447{bottom:455.040000pt;}
.y35_c01447{bottom:456.320000pt;}
.y32_c01447{bottom:457.600000pt;}
.y36_c01447{bottom:458.240000pt;}
.y34_c01447{bottom:458.880000pt;}
.y2f_c01447{bottom:494.080000pt;}
.y31_c01447{bottom:495.360000pt;}
.y2e_c01447{bottom:496.640000pt;}
.y30_c01447{bottom:497.280000pt;}
.y2c_c01447{bottom:532.480000pt;}
.y2d_c01447{bottom:535.040000pt;}
.y2b_c01447{bottom:535.680000pt;}
.y2a_c01447{bottom:536.320000pt;}
.y1b_c01447{bottom:570.880000pt;}
.y29_c01447{bottom:571.520000pt;}
.y19_c01447{bottom:572.800000pt;}
.y28_c01447{bottom:573.440000pt;}
.y1a_c01447{bottom:574.080000pt;}
.y18_c01447{bottom:609.280000pt;}
.y27_c01447{bottom:609.920000pt;}
.y17_c01447{bottom:612.480000pt;}
.y26_c01447{bottom:634.880000pt;}
.y14_c01447{bottom:647.680000pt;}
.y15_c01447{bottom:648.320000pt;}
.y16_c01447{bottom:648.960000pt;}
.y24_c01447{bottom:649.600000pt;}
.y13_c01447{bottom:650.880000pt;}
.y25_c01447{bottom:654.080000pt;}
.y12_c01447{bottom:686.080000pt;}
.y23_c01447{bottom:686.720000pt;}
.y11_c01447{bottom:689.280000pt;}
.y10_c01447{bottom:689.920000pt;}
.yf_c01447{bottom:724.480000pt;}
.yd_c01447{bottom:726.400000pt;}
.ye_c01447{bottom:728.320000pt;}
.y22_c01447{bottom:762.240000pt;}
.yc_c01447{bottom:762.880000pt;}
.yb_c01447{bottom:765.440000pt;}
.ya_c01447{bottom:801.280000pt;}
.y21_c01447{bottom:801.920000pt;}
.y20_c01447{bottom:803.200000pt;}
.y9_c01447{bottom:803.840000pt;}
.y1d_c01447{bottom:839.040000pt;}
.y8_c01447{bottom:839.680000pt;}
.y1e_c01447{bottom:840.320000pt;}
.y1f_c01447{bottom:841.600000pt;}
.y7_c01447{bottom:842.240000pt;}
.y6_c01447{bottom:878.080000pt;}
.y5_c01447{bottom:880.000000pt;}
.y1c_c01447{bottom:880.640000pt;}
.y1_c01447{bottom:917.760000pt;}
.y3_c01447{bottom:918.400000pt;}
.y4_c01447{bottom:920.320000pt;}
.y2_c01447{bottom:920.960000pt;}
.h3_c01447{height:29.948750pt;}
.hb_c01447{height:32.252500pt;}
.h11_c01447{height:34.556250pt;}
.h12_c01447{height:36.860000pt;}
.h4_c01447{height:39.163750pt;}
.h5_c01447{height:41.467500pt;}
.h7_c01447{height:43.771250pt;}
.h6_c01447{height:46.075000pt;}
.ha_c01447{height:48.378750pt;}
.h9_c01447{height:50.682500pt;}
.hd_c01447{height:52.986250pt;}
.hf_c01447{height:55.290000pt;}
.he_c01447{height:57.593750pt;}
.hc_c01447{height:59.897500pt;}
.h2_c01447{height:62.201250pt;}
.h8_c01447{height:64.505000pt;}
.h10_c01447{height:71.416250pt;}
.h0_c01447{height:1031.680000pt;}
.h1_c01447{height:1032.000000pt;}
.w1_c01447{width:701.333333pt;}
.w0_c01447{width:701.440000pt;}
.x0_c01447{left:0.000000pt;}
.x20_c01447{left:52.480000pt;}
.x6_c01447{left:53.760000pt;}
.x2e_c01447{left:98.560000pt;}
.x7_c01447{left:100.480000pt;}
.x1_c01447{left:101.760000pt;}
.x2d_c01447{left:110.080000pt;}
.x2_c01447{left:149.760000pt;}
.x8_c01447{left:168.320000pt;}
.x25_c01447{left:176.640000pt;}
.x31_c01447{left:184.960000pt;}
.x27_c01447{left:186.240000pt;}
.x2c_c01447{left:197.120000pt;}
.x3_c01447{left:207.360000pt;}
.x1e_c01447{left:215.680000pt;}
.x9_c01447{left:216.960000pt;}
.x28_c01447{left:224.640000pt;}
.x21_c01447{left:234.880000pt;}
.x4_c01447{left:236.160000pt;}
.xa_c01447{left:254.080000pt;}
.x5_c01447{left:255.360000pt;}
.x22_c01447{left:263.680000pt;}
.x29_c01447{left:273.920000pt;}
.x35_c01447{left:301.440000pt;}
.x23_c01447{left:311.680000pt;}
.x32_c01447{left:321.280000pt;}
.x36_c01447{left:339.840000pt;}
.xb_c01447{left:341.120000pt;}
.x33_c01447{left:358.400000pt;}
.x37_c01447{left:387.840000pt;}
.xc_c01447{left:389.120000pt;}
.x34_c01447{left:407.040000pt;}
.x2a_c01447{left:426.240000pt;}
.x24_c01447{left:513.280000pt;}
.x1c_c01447{left:523.520000pt;}
.x2f_c01447{left:540.160000pt;}
.x19_c01447{left:541.440000pt;}
.x16_c01447{left:542.720000pt;}
.xd_c01447{left:544.000000pt;}
.x1a_c01447{left:551.680000pt;}
.x1b_c01447{left:563.840000pt;}
.x1d_c01447{left:570.880000pt;}
.x13_c01447{left:572.160000pt;}
.x10_c01447{left:573.440000pt;}
.x1f_c01447{left:599.680000pt;}
.x14_c01447{left:600.960000pt;}
.x11_c01447{left:602.880000pt;}
.x2b_c01447{left:608.640000pt;}
.x30_c01447{left:636.800000pt;}
.x15_c01447{left:638.080000pt;}
.x12_c01447{left:639.360000pt;}
.xe_c01447{left:640.640000pt;}
.x26_c01447{left:655.360000pt;}
.x17_c01447{left:656.640000pt;}
.xf_c01447{left:659.200000pt;}
.x18_c01447{left:688.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_c01448 {
    display:none;
  }
  .loading-indicator_c01448.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01448 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01448 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01448" -> "#page-container .classname_c01448")
 */
.pf_c01448 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01448 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01448.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01448 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01448 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01448 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01448 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01448 {overflow:visible;}
  }
}
.c_c01448 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01448 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01448:after { /* webkit #35443 */
  content: '';
}
.t_c01448:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01448 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01448 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01448 { /* info for Javascript */
  display:none;
}
.l_c01448 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01448 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01448 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01448:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01448{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01448;src:url('chunks/assets/font_01e5db480d966958d2515d8b.woff2')format("woff");}.ff1_c01448{font-family:ff1_c01448;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m36_c01448{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m57_c01448{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m2b_c01448{transform:matrix(0.229050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229050,0.000000,0.000000,0.250000,0,0);}
.m3c_c01448{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m11_c01448{transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);}
.m33_c01448{transform:matrix(0.241975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241975,0.000000,0.000000,0.250000,0,0);}
.m55_c01448{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m19_c01448{transform:matrix(0.247275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247275,0.000000,0.000000,0.250000,0,0);}
.m2_c01448{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01448{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m8_c01448{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m12_c01448{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);}
.m40_c01448{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);}
.m39_c01448{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m9_c01448{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mb_c01448{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m4_c01448{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);}
.m58_c01448{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);}
.m5b_c01448{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mf_c01448{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m20_c01448{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m6_c01448{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01448{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m21_c01448{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m15_c01448{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m31_c01448{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m23_c01448{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m5d_c01448{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m24_c01448{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.md_c01448{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m52_c01448{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01448{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m25_c01448{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m28_c01448{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01448{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m60_c01448{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01448{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);}
.m34_c01448{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m13_c01448{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);}
.m2e_c01448{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01448{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);}
.m1e_c01448{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m17_c01448{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);}
.m50_c01448{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m51_c01448{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01448{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);}
.m1c_c01448{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m27_c01448{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);}
.m47_c01448{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.ma_c01448{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);}
.m42_c01448{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);}
.m29_c01448{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);}
.m10_c01448{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01448{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m14_c01448{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);}
.m4f_c01448{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.mc_c01448{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m22_c01448{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m49_c01448{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);}
.m43_c01448{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m63_c01448{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m18_c01448{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);}
.m7_c01448{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m46_c01448{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m32_c01448{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01448{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01448{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01448{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m56_c01448{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);}
.m3b_c01448{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m37_c01448{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01448{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m38_c01448{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);}
.m4a_c01448{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m5e_c01448{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m53_c01448{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m54_c01448{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m45_c01448{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);}
.m16_c01448{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01448{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.me_c01448{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);}
.m30_c01448{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m41_c01448{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01448{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01448{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m5_c01448{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01448{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m3_c01448{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m44_c01448{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m4e_c01448{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m48_c01448{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);}
.m5f_c01448{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m59_c01448{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m35_c01448{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m5c_c01448{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m62_c01448{transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);}
.m5a_c01448{transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);}
.m1_c01448{transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);}
.m61_c01448{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);}
.m26_c01448{transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);}
.v1_c01448{vertical-align:-2.880000px;}
.v0_c01448{vertical-align:0.000000px;}
.ls0_c01448{letter-spacing:0.000000px;}
.sc__c01448{text-shadow:none;}
.sc0_c01448{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01448{-webkit-text-stroke:0px transparent;}
.sc0_c01448{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01448{word-spacing:0.000000px;}
.ws0_c01448{word-spacing:11.856000px;}
.fc0_c01448{color:transparent;}
.fsf_c01448{font-size:17.280000px;}
.fs14_c01448{font-size:20.160000px;}
.fse_c01448{font-size:23.040000px;}
.fs12_c01448{font-size:25.920000px;}
.fs15_c01448{font-size:28.800000px;}
.fs1_c01448{font-size:31.680000px;}
.fs10_c01448{font-size:34.560000px;}
.fs13_c01448{font-size:37.440000px;}
.fs8_c01448{font-size:40.320000px;}
.fs11_c01448{font-size:43.200000px;}
.fsa_c01448{font-size:46.080000px;}
.fsd_c01448{font-size:48.960000px;}
.fs3_c01448{font-size:51.840000px;}
.fsb_c01448{font-size:54.720000px;}
.fs6_c01448{font-size:57.600000px;}
.fs9_c01448{font-size:60.480000px;}
.fs7_c01448{font-size:63.360000px;}
.fs4_c01448{font-size:66.240000px;}
.fs0_c01448{font-size:69.120000px;}
.fsc_c01448{font-size:72.000000px;}
.fs5_c01448{font-size:74.880000px;}
.fs2_c01448{font-size:77.760000px;}
.y0_c01448{bottom:0.000000px;}
.y7d_c01448{bottom:69.120000px;}
.y7a_c01448{bottom:69.840000px;}
.y7c_c01448{bottom:70.560000px;}
.y7b_c01448{bottom:74.160000px;}
.y6b_c01448{bottom:79.200000px;}
.y69_c01448{bottom:102.960000px;}
.y6a_c01448{bottom:105.840000px;}
.y68_c01448{bottom:110.880000px;}
.y67_c01448{bottom:113.760000px;}
.y79_c01448{bottom:115.200000px;}
.y78_c01448{bottom:115.920000px;}
.y66_c01448{bottom:135.360000px;}
.y65_c01448{bottom:136.080000px;}
.y76_c01448{bottom:138.240000px;}
.y77_c01448{bottom:139.680000px;}
.y64_c01448{bottom:144.720000px;}
.y74_c01448{bottom:145.440000px;}
.y63_c01448{bottom:146.880000px;}
.y75_c01448{bottom:148.320000px;}
.y61_c01448{bottom:177.120000px;}
.y62_c01448{bottom:177.840000px;}
.y6f_c01448{bottom:179.280000px;}
.y72_c01448{bottom:180.000000px;}
.y70_c01448{bottom:180.720000px;}
.y73_c01448{bottom:181.440000px;}
.y71_c01448{bottom:182.880000px;}
.y5d_c01448{bottom:205.920000px;}
.y5f_c01448{bottom:210.240000px;}
.y6e_c01448{bottom:211.680000px;}
.y5e_c01448{bottom:212.400000px;}
.y60_c01448{bottom:213.120000px;}
.y6c_c01448{bottom:213.840000px;}
.y6d_c01448{bottom:216.000000px;}
.y5b_c01448{bottom:252.720000px;}
.y5c_c01448{bottom:254.160000px;}
.y57_c01448{bottom:296.640000px;}
.y56_c01448{bottom:297.360000px;}
.y58_c01448{bottom:298.080000px;}
.y59_c01448{bottom:299.520000px;}
.y5a_c01448{bottom:300.240000px;}
.y51_c01448{bottom:339.120000px;}
.y50_c01448{bottom:339.840000px;}
.y55_c01448{bottom:340.560000px;}
.y4f_c01448{bottom:341.280000px;}
.y52_c01448{bottom:342.000000px;}
.y54_c01448{bottom:342.720000px;}
.y53_c01448{bottom:343.440000px;}
.y4d_c01448{bottom:383.760000px;}
.y4c_c01448{bottom:384.480000px;}
.y4b_c01448{bottom:385.920000px;}
.y4e_c01448{bottom:386.640000px;}
.y48_c01448{bottom:459.360000px;}
.y47_c01448{bottom:460.080000px;}
.y46_c01448{bottom:460.800000px;}
.y49_c01448{bottom:461.520000px;}
.y43_c01448{bottom:500.400000px;}
.y45_c01448{bottom:501.120000px;}
.y40_c01448{bottom:501.840000px;}
.y41_c01448{bottom:502.560000px;}
.y4a_c01448{bottom:503.280000px;}
.y44_c01448{bottom:504.000000px;}
.y42_c01448{bottom:504.720000px;}
.y3f_c01448{bottom:543.600000px;}
.y3a_c01448{bottom:545.040000px;}
.y39_c01448{bottom:545.760000px;}
.y3d_c01448{bottom:546.480000px;}
.y34_c01448{bottom:547.200000px;}
.y3e_c01448{bottom:550.800000px;}
.y3b_c01448{bottom:587.520000px;}
.y37_c01448{bottom:588.240000px;}
.y3c_c01448{bottom:589.680000px;}
.y38_c01448{bottom:590.400000px;}
.y33_c01448{bottom:630.720000px;}
.y35_c01448{bottom:631.440000px;}
.y36_c01448{bottom:632.160000px;}
.y32_c01448{bottom:634.320000px;}
.y2d_c01448{bottom:674.640000px;}
.y30_c01448{bottom:675.360000px;}
.y31_c01448{bottom:676.800000px;}
.y2e_c01448{bottom:678.240000px;}
.y2f_c01448{bottom:678.960000px;}
.y2b_c01448{bottom:738.720000px;}
.y2c_c01448{bottom:740.160000px;}
.y27_c01448{bottom:740.880000px;}
.y28_c01448{bottom:742.320000px;}
.y2a_c01448{bottom:743.040000px;}
.y29_c01448{bottom:746.640000px;}
.y1a_c01448{bottom:782.640000px;}
.y19_c01448{bottom:783.360000px;}
.y24_c01448{bottom:784.080000px;}
.y26_c01448{bottom:785.520000px;}
.y25_c01448{bottom:786.240000px;}
.y18_c01448{bottom:825.120000px;}
.y16_c01448{bottom:825.840000px;}
.y22_c01448{bottom:826.560000px;}
.y15_c01448{bottom:827.280000px;}
.y20_c01448{bottom:828.000000px;}
.y23_c01448{bottom:828.720000px;}
.y17_c01448{bottom:829.440000px;}
.y12_c01448{bottom:869.760000px;}
.y11_c01448{bottom:870.480000px;}
.y13_c01448{bottom:871.200000px;}
.y21_c01448{bottom:871.920000px;}
.y14_c01448{bottom:872.640000px;}
.yf_c01448{bottom:912.960000px;}
.y1f_c01448{bottom:913.680000px;}
.ye_c01448{bottom:915.120000px;}
.y10_c01448{bottom:915.840000px;}
.yd_c01448{bottom:955.440000px;}
.yb_c01448{bottom:956.880000px;}
.ya_c01448{bottom:957.600000px;}
.yc_c01448{bottom:959.040000px;}
.y8_c01448{bottom:987.120000px;}
.y7_c01448{bottom:987.840000px;}
.y1d_c01448{bottom:988.560000px;}
.y1c_c01448{bottom:989.280000px;}
.y6_c01448{bottom:990.000000px;}
.y1e_c01448{bottom:990.720000px;}
.y9_c01448{bottom:991.440000px;}
.y5_c01448{bottom:1030.320000px;}
.y3_c01448{bottom:1031.040000px;}
.y1_c01448{bottom:1031.760000px;}
.y2_c01448{bottom:1034.640000px;}
.y4_c01448{bottom:1035.360000px;}
.y1b_c01448{bottom:1075.680000px;}
.h11_c01448{height:15.550313px;}
.h16_c01448{height:18.142031px;}
.h10_c01448{height:20.733750px;}
.h14_c01448{height:23.325469px;}
.h17_c01448{height:25.917187px;}
.h3_c01448{height:28.508906px;}
.h12_c01448{height:31.100625px;}
.h15_c01448{height:33.692344px;}
.ha_c01448{height:36.284062px;}
.h13_c01448{height:38.875781px;}
.hc_c01448{height:41.467500px;}
.hf_c01448{height:44.059219px;}
.h5_c01448{height:46.650937px;}
.hd_c01448{height:49.242656px;}
.h8_c01448{height:51.834375px;}
.hb_c01448{height:54.426094px;}
.h9_c01448{height:57.017812px;}
.h6_c01448{height:59.609531px;}
.h2_c01448{height:62.201250px;}
.he_c01448{height:64.792969px;}
.h7_c01448{height:67.384687px;}
.h4_c01448{height:69.976406px;}
.h1_c01448{height:1161.750000px;}
.h0_c01448{height:1162.080000px;}
.w1_c01448{width:791.250000px;}
.w0_c01448{width:791.280000px;}
.x0_c01448{left:0.000000px;}
.x4c_c01448{left:54.720000px;}
.x1b_c01448{left:56.160000px;}
.x1_c01448{left:57.600000px;}
.x2f_c01448{left:67.680000px;}
.x30_c01448{left:77.760000px;}
.x2_c01448{left:79.920000px;}
.x1c_c01448{left:88.560000px;}
.x31_c01448{left:98.640000px;}
.x28_c01448{left:100.080000px;}
.x3_c01448{left:110.880000px;}
.xa_c01448{left:112.320000px;}
.x4a_c01448{left:131.760000px;}
.x4e_c01448{left:142.560000px;}
.x4b_c01448{left:153.360000px;}
.x22_c01448{left:164.880000px;}
.x4d_c01448{left:174.960000px;}
.x4f_c01448{left:176.400000px;}
.x32_c01448{left:185.760000px;}
.x1d_c01448{left:187.200000px;}
.x4_c01448{left:198.720000px;}
.xb_c01448{left:208.800000px;}
.x23_c01448{left:219.600000px;}
.x50_c01448{left:228.960000px;}
.x38_c01448{left:231.120000px;}
.x51_c01448{left:239.760000px;}
.x24_c01448{left:241.920000px;}
.x35_c01448{left:251.280000px;}
.x5_c01448{left:252.720000px;}
.xc_c01448{left:262.080000px;}
.x39_c01448{left:272.160000px;}
.x2d_c01448{left:283.680000px;}
.x1e_c01448{left:285.120000px;}
.x8_c01448{left:295.920000px;}
.xd_c01448{left:306.720000px;}
.x25_c01448{left:316.080000px;}
.x3e_c01448{left:326.880000px;}
.x2e_c01448{left:338.400000px;}
.xe_c01448{left:349.200000px;}
.x26_c01448{left:360.720000px;}
.x3f_c01448{left:369.360000px;}
.x1f_c01448{left:370.800000px;}
.x27_c01448{left:380.160000px;}
.x6_c01448{left:382.320000px;}
.xf_c01448{left:393.120000px;}
.x33_c01448{left:414.000000px;}
.x20_c01448{left:424.080000px;}
.x7_c01448{left:436.320000px;}
.x46_c01448{left:445.680000px;}
.x57_c01448{left:447.120000px;}
.x34_c01448{left:455.760000px;}
.x40_c01448{left:466.560000px;}
.x52_c01448{left:468.000000px;}
.x47_c01448{left:477.360000px;}
.x21_c01448{left:478.800000px;}
.x3a_c01448{left:488.880000px;}
.x9_c01448{left:490.320000px;}
.x56_c01448{left:496.080000px;}
.x41_c01448{left:498.960000px;}
.x53_c01448{left:509.760000px;}
.x48_c01448{left:511.200000px;}
.x3b_c01448{left:519.840000px;}
.x54_c01448{left:532.080000px;}
.x42_c01448{left:542.880000px;}
.x3c_c01448{left:563.760000px;}
.x55_c01448{left:574.560000px;}
.x14_c01448{left:578.160000px;}
.x29_c01448{left:586.080000px;}
.x17_c01448{left:587.520000px;}
.x11_c01448{left:589.680000px;}
.x43_c01448{left:596.160000px;}
.x12_c01448{left:609.120000px;}
.x2a_c01448{left:618.480000px;}
.x44_c01448{left:628.560000px;}
.x36_c01448{left:640.080000px;}
.x18_c01448{left:641.520000px;}
.x15_c01448{left:642.960000px;}
.x3d_c01448{left:650.160000px;}
.x37_c01448{left:672.480000px;}
.x19_c01448{left:674.640000px;}
.x10_c01448{left:676.080000px;}
.x49_c01448{left:682.560000px;}
.x45_c01448{left:693.360000px;}
.x16_c01448{left:708.480000px;}
.x2b_c01448{left:715.680000px;}
.x1a_c01448{left:717.120000px;}
.x13_c01448{left:718.560000px;}
.x2c_c01448{left:737.280000px;}
@media print{
.v1_c01448{vertical-align:-2.560000pt;}
.v0_c01448{vertical-align:0.000000pt;}
.ls0_c01448{letter-spacing:0.000000pt;}
.ws1_c01448{word-spacing:0.000000pt;}
.ws0_c01448{word-spacing:10.538667pt;}
.fsf_c01448{font-size:15.360000pt;}
.fs14_c01448{font-size:17.920000pt;}
.fse_c01448{font-size:20.480000pt;}
.fs12_c01448{font-size:23.040000pt;}
.fs15_c01448{font-size:25.600000pt;}
.fs1_c01448{font-size:28.160000pt;}
.fs10_c01448{font-size:30.720000pt;}
.fs13_c01448{font-size:33.280000pt;}
.fs8_c01448{font-size:35.840000pt;}
.fs11_c01448{font-size:38.400000pt;}
.fsa_c01448{font-size:40.960000pt;}
.fsd_c01448{font-size:43.520000pt;}
.fs3_c01448{font-size:46.080000pt;}
.fsb_c01448{font-size:48.640000pt;}
.fs6_c01448{font-size:51.200000pt;}
.fs9_c01448{font-size:53.760000pt;}
.fs7_c01448{font-size:56.320000pt;}
.fs4_c01448{font-size:58.880000pt;}
.fs0_c01448{font-size:61.440000pt;}
.fsc_c01448{font-size:64.000000pt;}
.fs5_c01448{font-size:66.560000pt;}
.fs2_c01448{font-size:69.120000pt;}
.y0_c01448{bottom:0.000000pt;}
.y7d_c01448{bottom:61.440000pt;}
.y7a_c01448{bottom:62.080000pt;}
.y7c_c01448{bottom:62.720000pt;}
.y7b_c01448{bottom:65.920000pt;}
.y6b_c01448{bottom:70.400000pt;}
.y69_c01448{bottom:91.520000pt;}
.y6a_c01448{bottom:94.080000pt;}
.y68_c01448{bottom:98.560000pt;}
.y67_c01448{bottom:101.120000pt;}
.y79_c01448{bottom:102.400000pt;}
.y78_c01448{bottom:103.040000pt;}
.y66_c01448{bottom:120.320000pt;}
.y65_c01448{bottom:120.960000pt;}
.y76_c01448{bottom:122.880000pt;}
.y77_c01448{bottom:124.160000pt;}
.y64_c01448{bottom:128.640000pt;}
.y74_c01448{bottom:129.280000pt;}
.y63_c01448{bottom:130.560000pt;}
.y75_c01448{bottom:131.840000pt;}
.y61_c01448{bottom:157.440000pt;}
.y62_c01448{bottom:158.080000pt;}
.y6f_c01448{bottom:159.360000pt;}
.y72_c01448{bottom:160.000000pt;}
.y70_c01448{bottom:160.640000pt;}
.y73_c01448{bottom:161.280000pt;}
.y71_c01448{bottom:162.560000pt;}
.y5d_c01448{bottom:183.040000pt;}
.y5f_c01448{bottom:186.880000pt;}
.y6e_c01448{bottom:188.160000pt;}
.y5e_c01448{bottom:188.800000pt;}
.y60_c01448{bottom:189.440000pt;}
.y6c_c01448{bottom:190.080000pt;}
.y6d_c01448{bottom:192.000000pt;}
.y5b_c01448{bottom:224.640000pt;}
.y5c_c01448{bottom:225.920000pt;}
.y57_c01448{bottom:263.680000pt;}
.y56_c01448{bottom:264.320000pt;}
.y58_c01448{bottom:264.960000pt;}
.y59_c01448{bottom:266.240000pt;}
.y5a_c01448{bottom:266.880000pt;}
.y51_c01448{bottom:301.440000pt;}
.y50_c01448{bottom:302.080000pt;}
.y55_c01448{bottom:302.720000pt;}
.y4f_c01448{bottom:303.360000pt;}
.y52_c01448{bottom:304.000000pt;}
.y54_c01448{bottom:304.640000pt;}
.y53_c01448{bottom:305.280000pt;}
.y4d_c01448{bottom:341.120000pt;}
.y4c_c01448{bottom:341.760000pt;}
.y4b_c01448{bottom:343.040000pt;}
.y4e_c01448{bottom:343.680000pt;}
.y48_c01448{bottom:408.320000pt;}
.y47_c01448{bottom:408.960000pt;}
.y46_c01448{bottom:409.600000pt;}
.y49_c01448{bottom:410.240000pt;}
.y43_c01448{bottom:444.800000pt;}
.y45_c01448{bottom:445.440000pt;}
.y40_c01448{bottom:446.080000pt;}
.y41_c01448{bottom:446.720000pt;}
.y4a_c01448{bottom:447.360000pt;}
.y44_c01448{bottom:448.000000pt;}
.y42_c01448{bottom:448.640000pt;}
.y3f_c01448{bottom:483.200000pt;}
.y3a_c01448{bottom:484.480000pt;}
.y39_c01448{bottom:485.120000pt;}
.y3d_c01448{bottom:485.760000pt;}
.y34_c01448{bottom:486.400000pt;}
.y3e_c01448{bottom:489.600000pt;}
.y3b_c01448{bottom:522.240000pt;}
.y37_c01448{bottom:522.880000pt;}
.y3c_c01448{bottom:524.160000pt;}
.y38_c01448{bottom:524.800000pt;}
.y33_c01448{bottom:560.640000pt;}
.y35_c01448{bottom:561.280000pt;}
.y36_c01448{bottom:561.920000pt;}
.y32_c01448{bottom:563.840000pt;}
.y2d_c01448{bottom:599.680000pt;}
.y30_c01448{bottom:600.320000pt;}
.y31_c01448{bottom:601.600000pt;}
.y2e_c01448{bottom:602.880000pt;}
.y2f_c01448{bottom:603.520000pt;}
.y2b_c01448{bottom:656.640000pt;}
.y2c_c01448{bottom:657.920000pt;}
.y27_c01448{bottom:658.560000pt;}
.y28_c01448{bottom:659.840000pt;}
.y2a_c01448{bottom:660.480000pt;}
.y29_c01448{bottom:663.680000pt;}
.y1a_c01448{bottom:695.680000pt;}
.y19_c01448{bottom:696.320000pt;}
.y24_c01448{bottom:696.960000pt;}
.y26_c01448{bottom:698.240000pt;}
.y25_c01448{bottom:698.880000pt;}
.y18_c01448{bottom:733.440000pt;}
.y16_c01448{bottom:734.080000pt;}
.y22_c01448{bottom:734.720000pt;}
.y15_c01448{bottom:735.360000pt;}
.y20_c01448{bottom:736.000000pt;}
.y23_c01448{bottom:736.640000pt;}
.y17_c01448{bottom:737.280000pt;}
.y12_c01448{bottom:773.120000pt;}
.y11_c01448{bottom:773.760000pt;}
.y13_c01448{bottom:774.400000pt;}
.y21_c01448{bottom:775.040000pt;}
.y14_c01448{bottom:775.680000pt;}
.yf_c01448{bottom:811.520000pt;}
.y1f_c01448{bottom:812.160000pt;}
.ye_c01448{bottom:813.440000pt;}
.y10_c01448{bottom:814.080000pt;}
.yd_c01448{bottom:849.280000pt;}
.yb_c01448{bottom:850.560000pt;}
.ya_c01448{bottom:851.200000pt;}
.yc_c01448{bottom:852.480000pt;}
.y8_c01448{bottom:877.440000pt;}
.y7_c01448{bottom:878.080000pt;}
.y1d_c01448{bottom:878.720000pt;}
.y1c_c01448{bottom:879.360000pt;}
.y6_c01448{bottom:880.000000pt;}
.y1e_c01448{bottom:880.640000pt;}
.y9_c01448{bottom:881.280000pt;}
.y5_c01448{bottom:915.840000pt;}
.y3_c01448{bottom:916.480000pt;}
.y1_c01448{bottom:917.120000pt;}
.y2_c01448{bottom:919.680000pt;}
.y4_c01448{bottom:920.320000pt;}
.y1b_c01448{bottom:956.160000pt;}
.h11_c01448{height:13.822500pt;}
.h16_c01448{height:16.126250pt;}
.h10_c01448{height:18.430000pt;}
.h14_c01448{height:20.733750pt;}
.h17_c01448{height:23.037500pt;}
.h3_c01448{height:25.341250pt;}
.h12_c01448{height:27.645000pt;}
.h15_c01448{height:29.948750pt;}
.ha_c01448{height:32.252500pt;}
.h13_c01448{height:34.556250pt;}
.hc_c01448{height:36.860000pt;}
.hf_c01448{height:39.163750pt;}
.h5_c01448{height:41.467500pt;}
.hd_c01448{height:43.771250pt;}
.h8_c01448{height:46.075000pt;}
.hb_c01448{height:48.378750pt;}
.h9_c01448{height:50.682500pt;}
.h6_c01448{height:52.986250pt;}
.h2_c01448{height:55.290000pt;}
.he_c01448{height:57.593750pt;}
.h7_c01448{height:59.897500pt;}
.h4_c01448{height:62.201250pt;}
.h1_c01448{height:1032.666667pt;}
.h0_c01448{height:1032.960000pt;}
.w1_c01448{width:703.333333pt;}
.w0_c01448{width:703.360000pt;}
.x0_c01448{left:0.000000pt;}
.x4c_c01448{left:48.640000pt;}
.x1b_c01448{left:49.920000pt;}
.x1_c01448{left:51.200000pt;}
.x2f_c01448{left:60.160000pt;}
.x30_c01448{left:69.120000pt;}
.x2_c01448{left:71.040000pt;}
.x1c_c01448{left:78.720000pt;}
.x31_c01448{left:87.680000pt;}
.x28_c01448{left:88.960000pt;}
.x3_c01448{left:98.560000pt;}
.xa_c01448{left:99.840000pt;}
.x4a_c01448{left:117.120000pt;}
.x4e_c01448{left:126.720000pt;}
.x4b_c01448{left:136.320000pt;}
.x22_c01448{left:146.560000pt;}
.x4d_c01448{left:155.520000pt;}
.x4f_c01448{left:156.800000pt;}
.x32_c01448{left:165.120000pt;}
.x1d_c01448{left:166.400000pt;}
.x4_c01448{left:176.640000pt;}
.xb_c01448{left:185.600000pt;}
.x23_c01448{left:195.200000pt;}
.x50_c01448{left:203.520000pt;}
.x38_c01448{left:205.440000pt;}
.x51_c01448{left:213.120000pt;}
.x24_c01448{left:215.040000pt;}
.x35_c01448{left:223.360000pt;}
.x5_c01448{left:224.640000pt;}
.xc_c01448{left:232.960000pt;}
.x39_c01448{left:241.920000pt;}
.x2d_c01448{left:252.160000pt;}
.x1e_c01448{left:253.440000pt;}
.x8_c01448{left:263.040000pt;}
.xd_c01448{left:272.640000pt;}
.x25_c01448{left:280.960000pt;}
.x3e_c01448{left:290.560000pt;}
.x2e_c01448{left:300.800000pt;}
.xe_c01448{left:310.400000pt;}
.x26_c01448{left:320.640000pt;}
.x3f_c01448{left:328.320000pt;}
.x1f_c01448{left:329.600000pt;}
.x27_c01448{left:337.920000pt;}
.x6_c01448{left:339.840000pt;}
.xf_c01448{left:349.440000pt;}
.x33_c01448{left:368.000000pt;}
.x20_c01448{left:376.960000pt;}
.x7_c01448{left:387.840000pt;}
.x46_c01448{left:396.160000pt;}
.x57_c01448{left:397.440000pt;}
.x34_c01448{left:405.120000pt;}
.x40_c01448{left:414.720000pt;}
.x52_c01448{left:416.000000pt;}
.x47_c01448{left:424.320000pt;}
.x21_c01448{left:425.600000pt;}
.x3a_c01448{left:434.560000pt;}
.x9_c01448{left:435.840000pt;}
.x56_c01448{left:440.960000pt;}
.x41_c01448{left:443.520000pt;}
.x53_c01448{left:453.120000pt;}
.x48_c01448{left:454.400000pt;}
.x3b_c01448{left:462.080000pt;}
.x54_c01448{left:472.960000pt;}
.x42_c01448{left:482.560000pt;}
.x3c_c01448{left:501.120000pt;}
.x55_c01448{left:510.720000pt;}
.x14_c01448{left:513.920000pt;}
.x29_c01448{left:520.960000pt;}
.x17_c01448{left:522.240000pt;}
.x11_c01448{left:524.160000pt;}
.x43_c01448{left:529.920000pt;}
.x12_c01448{left:541.440000pt;}
.x2a_c01448{left:549.760000pt;}
.x44_c01448{left:558.720000pt;}
.x36_c01448{left:568.960000pt;}
.x18_c01448{left:570.240000pt;}
.x15_c01448{left:571.520000pt;}
.x3d_c01448{left:577.920000pt;}
.x37_c01448{left:597.760000pt;}
.x19_c01448{left:599.680000pt;}
.x10_c01448{left:600.960000pt;}
.x49_c01448{left:606.720000pt;}
.x45_c01448{left:616.320000pt;}
.x16_c01448{left:629.760000pt;}
.x2b_c01448{left:636.160000pt;}
.x1a_c01448{left:637.440000pt;}
.x13_c01448{left:638.720000pt;}
.x2c_c01448{left:655.360000pt;}
}





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

.ir_c01449:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01449{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01449;src:url('chunks/assets/font_9a5d445d86ab362b78818488.woff2')format("woff");}.ff1_c01449{font-family:ff1_c01449;line-height:1.109863;font-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_c01449{transform:matrix(0.218725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218725,0.000000,0.000000,0.250000,0,0);}
.m14_c01449{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m1e_c01449{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m1_c01449{transform:matrix(0.240100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240100,0.000000,0.000000,0.250000,0,0);}
.m20_c01449{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m7_c01449{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.me_c01449{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m32_c01449{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);}
.m5f_c01449{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_c01449{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m4_c01449{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m12_c01449{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m31_c01449{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01449{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01449{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m5c_c01449{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01449{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m2_c01449{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m40_c01449{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m22_c01449{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m9_c01449{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.ma_c01449{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m17_c01449{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m60_c01449{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mc_c01449{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m6_c01449{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m5b_c01449{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01449{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);}
.m0_c01449{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m13_c01449{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m51_c01449{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_c01449{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);}
.m33_c01449{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m5_c01449{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);}
.m52_c01449{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);}
.m4e_c01449{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);}
.m39_c01449{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m29_c01449{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);}
.m44_c01449{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01449{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);}
.m3c_c01449{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m53_c01449{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m34_c01449{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01449{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m8_c01449{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);}
.m28_c01449{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m48_c01449{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);}
.m42_c01449{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);}
.m58_c01449{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m59_c01449{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m26_c01449{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01449{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);}
.m47_c01449{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01449{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m4a_c01449{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);}
.m15_c01449{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m45_c01449{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);}
.m2b_c01449{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01449{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m25_c01449{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m35_c01449{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01449{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);}
.m11_c01449{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m46_c01449{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01449{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01449{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m5e_c01449{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m27_c01449{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m19_c01449{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m38_c01449{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m37_c01449{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);}
.m50_c01449{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m21_c01449{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m43_c01449{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01449{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);}
.m2c_c01449{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m10_c01449{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01449{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);}
.m36_c01449{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m41_c01449{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01449{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);}
.m5d_c01449{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);}
.m56_c01449{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01449{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m57_c01449{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m5a_c01449{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m54_c01449{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01449{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);}
.m3e_c01449{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m49_c01449{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);}
.m30_c01449{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m16_c01449{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m18_c01449{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m23_c01449{transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);}
.m61_c01449{transform:matrix(0.912500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.912500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.912500,0.000000,0.000000,0.250000,0,0);}
.mb_c01449{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.md_c01449{transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);}
.mf_c01449{transform:matrix(5.760000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.760000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.760000,0.000000,0.000000,0.250000,0,0);}
.v0_c01449{vertical-align:0.000000px;}
.v1_c01449{vertical-align:2.880000px;}
.ls0_c01449{letter-spacing:0.000000px;}
.sc__c01449{text-shadow:none;}
.sc0_c01449{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01449{-webkit-text-stroke:0px transparent;}
.sc0_c01449{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01449{word-spacing:0.000000px;}
.ws0_c01449{word-spacing:1.647840px;}
.fc0_c01449{color:transparent;}
.fs6_c01449{font-size:17.280000px;}
.fs8_c01449{font-size:23.040000px;}
.fs10_c01449{font-size:25.920000px;}
.fsb_c01449{font-size:34.560000px;}
.fse_c01449{font-size:37.440000px;}
.fsa_c01449{font-size:43.200000px;}
.fs0_c01449{font-size:46.080000px;}
.fs3_c01449{font-size:48.960000px;}
.fs7_c01449{font-size:51.840000px;}
.fs9_c01449{font-size:54.720000px;}
.fsd_c01449{font-size:57.600000px;}
.fs5_c01449{font-size:60.480000px;}
.fsc_c01449{font-size:63.360000px;}
.fsf_c01449{font-size:66.240000px;}
.fs4_c01449{font-size:72.000000px;}
.fs1_c01449{font-size:100.800000px;}
.fs2_c01449{font-size:103.680000px;}
.y0_c01449{bottom:0.000000px;}
.y65_c01449{bottom:128.160000px;}
.y67_c01449{bottom:128.880000px;}
.y66_c01449{bottom:130.320000px;}
.y63_c01449{bottom:170.640000px;}
.y60_c01449{bottom:171.360000px;}
.y64_c01449{bottom:172.080000px;}
.y61_c01449{bottom:173.520000px;}
.y62_c01449{bottom:174.240000px;}
.y5e_c01449{bottom:213.840000px;}
.y5f_c01449{bottom:214.560000px;}
.y5c_c01449{bottom:216.000000px;}
.y5d_c01449{bottom:216.720000px;}
.y5b_c01449{bottom:218.160000px;}
.y59_c01449{bottom:257.040000px;}
.y56_c01449{bottom:257.760000px;}
.y57_c01449{bottom:259.200000px;}
.y58_c01449{bottom:259.920000px;}
.y5a_c01449{bottom:260.640000px;}
.y55_c01449{bottom:299.520000px;}
.y53_c01449{bottom:301.680000px;}
.y52_c01449{bottom:302.400000px;}
.y54_c01449{bottom:303.120000px;}
.y50_c01449{bottom:342.720000px;}
.y4f_c01449{bottom:343.440000px;}
.y51_c01449{bottom:345.600000px;}
.y4e_c01449{bottom:346.320000px;}
.y4d_c01449{bottom:385.920000px;}
.y4c_c01449{bottom:388.080000px;}
.y4a_c01449{bottom:388.800000px;}
.y4b_c01449{bottom:389.520000px;}
.y49_c01449{bottom:429.120000px;}
.y48_c01449{bottom:432.000000px;}
.y3_c01449{bottom:482.400000px;}
.y2_c01449{bottom:483.120000px;}
.y4_c01449{bottom:485.280000px;}
.y1_c01449{bottom:486.000000px;}
.y5_c01449{bottom:486.720000px;}
.y47_c01449{bottom:537.120000px;}
.y46_c01449{bottom:540.000000px;}
.y45_c01449{bottom:540.720000px;}
.y44_c01449{bottom:579.600000px;}
.y40_c01449{bottom:580.320000px;}
.y43_c01449{bottom:582.480000px;}
.y42_c01449{bottom:583.200000px;}
.y41_c01449{bottom:583.920000px;}
.y3c_c01449{bottom:624.240000px;}
.y3f_c01449{bottom:624.960000px;}
.y3e_c01449{bottom:625.680000px;}
.y3d_c01449{bottom:626.400000px;}
.y3b_c01449{bottom:627.120000px;}
.y3a_c01449{bottom:676.800000px;}
.y34_c01449{bottom:677.520000px;}
.y31_c01449{bottom:678.960000px;}
.y2f_c01449{bottom:679.680000px;}
.y30_c01449{bottom:684.000000px;}
.y37_c01449{bottom:698.400000px;}
.y33_c01449{bottom:699.120000px;}
.y2e_c01449{bottom:699.840000px;}
.y38_c01449{bottom:700.560000px;}
.y36_c01449{bottom:702.720000px;}
.y39_c01449{bottom:722.160000px;}
.y32_c01449{bottom:722.880000px;}
.y35_c01449{bottom:723.600000px;}
.y2d_c01449{bottom:724.320000px;}
.y2c_c01449{bottom:774.000000px;}
.y2b_c01449{bottom:776.880000px;}
.y28_c01449{bottom:816.480000px;}
.y2a_c01449{bottom:817.920000px;}
.y29_c01449{bottom:818.640000px;}
.y27_c01449{bottom:819.360000px;}
.y26_c01449{bottom:820.800000px;}
.y25_c01449{bottom:879.840000px;}
.y22_c01449{bottom:880.560000px;}
.y23_c01449{bottom:882.000000px;}
.y21_c01449{bottom:882.720000px;}
.y1e_c01449{bottom:883.440000px;}
.y20_c01449{bottom:884.160000px;}
.y1f_c01449{bottom:884.880000px;}
.y24_c01449{bottom:885.600000px;}
.y1d_c01449{bottom:936.000000px;}
.y1c_c01449{bottom:968.400000px;}
.y1b_c01449{bottom:969.120000px;}
.y19_c01449{bottom:970.560000px;}
.y1a_c01449{bottom:971.280000px;}
.y18_c01449{bottom:987.120000px;}
.y16_c01449{bottom:988.560000px;}
.y17_c01449{bottom:989.280000px;}
.y14_c01449{bottom:990.000000px;}
.y10_c01449{bottom:991.440000px;}
.y11_c01449{bottom:992.160000px;}
.y15_c01449{bottom:993.600000px;}
.y12_c01449{bottom:999.360000px;}
.y13_c01449{bottom:1000.800000px;}
.yf_c01449{bottom:1001.520000px;}
.ye_c01449{bottom:1003.680000px;}
.yd_c01449{bottom:1028.880000px;}
.y9_c01449{bottom:1031.760000px;}
.yc_c01449{bottom:1033.920000px;}
.y7_c01449{bottom:1034.640000px;}
.y8_c01449{bottom:1035.360000px;}
.yb_c01449{bottom:1036.080000px;}
.ya_c01449{bottom:1036.800000px;}
.y6_c01449{bottom:1087.200000px;}
.h8_c01449{height:15.550313px;}
.ha_c01449{height:20.733750px;}
.h13_c01449{height:23.325469px;}
.hd_c01449{height:31.100625px;}
.h10_c01449{height:33.692344px;}
.h11_c01449{height:33.980625px;}
.hc_c01449{height:38.875781px;}
.h2_c01449{height:41.467500px;}
.h5_c01449{height:44.059219px;}
.h9_c01449{height:46.650937px;}
.hb_c01449{height:49.242656px;}
.hf_c01449{height:51.834375px;}
.h7_c01449{height:54.426094px;}
.he_c01449{height:57.017812px;}
.h12_c01449{height:59.609531px;}
.h6_c01449{height:64.792969px;}
.h3_c01449{height:90.710156px;}
.h4_c01449{height:93.301875px;}
.h0_c01449{height:1160.640000px;}
.h1_c01449{height:1161.000000px;}
.w0_c01449{width:778.320000px;}
.w1_c01449{width:778.500000px;}
.x0_c01449{left:0.000000px;}
.x13_c01449{left:43.920000px;}
.x2b_c01449{left:45.360000px;}
.x8_c01449{left:46.800000px;}
.x2c_c01449{left:77.760000px;}
.x5c_c01449{left:86.400000px;}
.x4a_c01449{left:97.200000px;}
.x9_c01449{left:100.800000px;}
.x2f_c01449{left:109.440000px;}
.x66_c01449{left:118.800000px;}
.xa_c01449{left:120.960000px;}
.x30_c01449{left:132.480000px;}
.x62_c01449{left:141.120000px;}
.x2e_c01449{left:143.280000px;}
.x67_c01449{left:151.200000px;}
.x26_c01449{left:152.640000px;}
.x2d_c01449{left:154.080000px;}
.x14_c01449{left:155.520000px;}
.x43_c01449{left:162.000000px;}
.x37_c01449{left:164.160000px;}
.x1d_c01449{left:166.320000px;}
.x56_c01449{left:173.520000px;}
.x51_c01449{left:183.600000px;}
.x3e_c01449{left:185.040000px;}
.x27_c01449{left:186.480000px;}
.x38_c01449{left:194.400000px;}
.x68_c01449{left:195.840000px;}
.x31_c01449{left:198.000000px;}
.x44_c01449{left:204.480000px;}
.xb_c01449{left:208.800000px;}
.x3f_c01449{left:216.720000px;}
.x1e_c01449{left:218.160000px;}
.x57_c01449{left:228.240000px;}
.x52_c01449{left:237.600000px;}
.x15_c01449{left:240.480000px;}
.x69_c01449{left:248.400000px;}
.x28_c01449{left:250.560000px;}
.x1f_c01449{left:252.720000px;}
.x32_c01449{left:262.800000px;}
.xc_c01449{left:274.320000px;}
.x1_c01449{left:282.960000px;}
.x4b_c01449{left:293.040000px;}
.x53_c01449{left:303.120000px;}
.x20_c01449{left:304.560000px;}
.x2_c01449{left:314.640000px;}
.x5d_c01449{left:324.720000px;}
.x45_c01449{left:326.160000px;}
.xd_c01449{left:328.320000px;}
.x16_c01449{left:336.960000px;}
.x1c_c01449{left:338.400000px;}
.x3_c01449{left:348.480000px;}
.x33_c01449{left:358.560000px;}
.x5e_c01449{left:368.640000px;}
.xe_c01449{left:370.080000px;}
.x29_c01449{left:380.880000px;}
.x4_c01449{left:390.240000px;}
.xf_c01449{left:393.120000px;}
.x46_c01449{left:400.320000px;}
.x39_c01449{left:401.760000px;}
.x34_c01449{left:403.920000px;}
.x21_c01449{left:413.280000px;}
.x4c_c01449{left:421.920000px;}
.x5_c01449{left:423.360000px;}
.x47_c01449{left:432.000000px;}
.x3a_c01449{left:434.160000px;}
.x54_c01449{left:444.240000px;}
.x10_c01449{left:447.120000px;}
.x22_c01449{left:457.920000px;}
.x4d_c01449{left:464.400000px;}
.x40_c01449{left:466.560000px;}
.x35_c01449{left:468.000000px;}
.x3b_c01449{left:477.360000px;}
.x11_c01449{left:478.800000px;}
.x63_c01449{left:486.000000px;}
.x6_c01449{left:488.160000px;}
.x5f_c01449{left:496.800000px;}
.x36_c01449{left:498.960000px;}
.x12_c01449{left:501.840000px;}
.x23_c01449{left:511.200000px;}
.x4e_c01449{left:518.400000px;}
.x2a_c01449{left:520.560000px;}
.x64_c01449{left:529.200000px;}
.x17_c01449{left:533.520000px;}
.x58_c01449{left:541.440000px;}
.x41_c01449{left:552.240000px;}
.x48_c01449{left:562.320000px;}
.x24_c01449{left:564.480000px;}
.x59_c01449{left:572.400000px;}
.x3c_c01449{left:573.840000px;}
.x4f_c01449{left:582.480000px;}
.x18_c01449{left:586.800000px;}
.x60_c01449{left:594.000000px;}
.x55_c01449{left:595.440000px;}
.x25_c01449{left:606.960000px;}
.x19_c01449{left:609.120000px;}
.x42_c01449{left:616.320000px;}
.x61_c01449{left:637.200000px;}
.x1a_c01449{left:640.080000px;}
.x65_c01449{left:648.000000px;}
.x50_c01449{left:660.240000px;}
.x1b_c01449{left:663.120000px;}
.x7_c01449{left:667.440000px;}
.x49_c01449{left:669.600000px;}
.x3d_c01449{left:671.760000px;}
.x5a_c01449{left:691.920000px;}
.x5b_c01449{left:723.600000px;}
@media print{
.v0_c01449{vertical-align:0.000000pt;}
.v1_c01449{vertical-align:2.560000pt;}
.ls0_c01449{letter-spacing:0.000000pt;}
.ws1_c01449{word-spacing:0.000000pt;}
.ws0_c01449{word-spacing:1.464747pt;}
.fs6_c01449{font-size:15.360000pt;}
.fs8_c01449{font-size:20.480000pt;}
.fs10_c01449{font-size:23.040000pt;}
.fsb_c01449{font-size:30.720000pt;}
.fse_c01449{font-size:33.280000pt;}
.fsa_c01449{font-size:38.400000pt;}
.fs0_c01449{font-size:40.960000pt;}
.fs3_c01449{font-size:43.520000pt;}
.fs7_c01449{font-size:46.080000pt;}
.fs9_c01449{font-size:48.640000pt;}
.fsd_c01449{font-size:51.200000pt;}
.fs5_c01449{font-size:53.760000pt;}
.fsc_c01449{font-size:56.320000pt;}
.fsf_c01449{font-size:58.880000pt;}
.fs4_c01449{font-size:64.000000pt;}
.fs1_c01449{font-size:89.600000pt;}
.fs2_c01449{font-size:92.160000pt;}
.y0_c01449{bottom:0.000000pt;}
.y65_c01449{bottom:113.920000pt;}
.y67_c01449{bottom:114.560000pt;}
.y66_c01449{bottom:115.840000pt;}
.y63_c01449{bottom:151.680000pt;}
.y60_c01449{bottom:152.320000pt;}
.y64_c01449{bottom:152.960000pt;}
.y61_c01449{bottom:154.240000pt;}
.y62_c01449{bottom:154.880000pt;}
.y5e_c01449{bottom:190.080000pt;}
.y5f_c01449{bottom:190.720000pt;}
.y5c_c01449{bottom:192.000000pt;}
.y5d_c01449{bottom:192.640000pt;}
.y5b_c01449{bottom:193.920000pt;}
.y59_c01449{bottom:228.480000pt;}
.y56_c01449{bottom:229.120000pt;}
.y57_c01449{bottom:230.400000pt;}
.y58_c01449{bottom:231.040000pt;}
.y5a_c01449{bottom:231.680000pt;}
.y55_c01449{bottom:266.240000pt;}
.y53_c01449{bottom:268.160000pt;}
.y52_c01449{bottom:268.800000pt;}
.y54_c01449{bottom:269.440000pt;}
.y50_c01449{bottom:304.640000pt;}
.y4f_c01449{bottom:305.280000pt;}
.y51_c01449{bottom:307.200000pt;}
.y4e_c01449{bottom:307.840000pt;}
.y4d_c01449{bottom:343.040000pt;}
.y4c_c01449{bottom:344.960000pt;}
.y4a_c01449{bottom:345.600000pt;}
.y4b_c01449{bottom:346.240000pt;}
.y49_c01449{bottom:381.440000pt;}
.y48_c01449{bottom:384.000000pt;}
.y3_c01449{bottom:428.800000pt;}
.y2_c01449{bottom:429.440000pt;}
.y4_c01449{bottom:431.360000pt;}
.y1_c01449{bottom:432.000000pt;}
.y5_c01449{bottom:432.640000pt;}
.y47_c01449{bottom:477.440000pt;}
.y46_c01449{bottom:480.000000pt;}
.y45_c01449{bottom:480.640000pt;}
.y44_c01449{bottom:515.200000pt;}
.y40_c01449{bottom:515.840000pt;}
.y43_c01449{bottom:517.760000pt;}
.y42_c01449{bottom:518.400000pt;}
.y41_c01449{bottom:519.040000pt;}
.y3c_c01449{bottom:554.880000pt;}
.y3f_c01449{bottom:555.520000pt;}
.y3e_c01449{bottom:556.160000pt;}
.y3d_c01449{bottom:556.800000pt;}
.y3b_c01449{bottom:557.440000pt;}
.y3a_c01449{bottom:601.600000pt;}
.y34_c01449{bottom:602.240000pt;}
.y31_c01449{bottom:603.520000pt;}
.y2f_c01449{bottom:604.160000pt;}
.y30_c01449{bottom:608.000000pt;}
.y37_c01449{bottom:620.800000pt;}
.y33_c01449{bottom:621.440000pt;}
.y2e_c01449{bottom:622.080000pt;}
.y38_c01449{bottom:622.720000pt;}
.y36_c01449{bottom:624.640000pt;}
.y39_c01449{bottom:641.920000pt;}
.y32_c01449{bottom:642.560000pt;}
.y35_c01449{bottom:643.200000pt;}
.y2d_c01449{bottom:643.840000pt;}
.y2c_c01449{bottom:688.000000pt;}
.y2b_c01449{bottom:690.560000pt;}
.y28_c01449{bottom:725.760000pt;}
.y2a_c01449{bottom:727.040000pt;}
.y29_c01449{bottom:727.680000pt;}
.y27_c01449{bottom:728.320000pt;}
.y26_c01449{bottom:729.600000pt;}
.y25_c01449{bottom:782.080000pt;}
.y22_c01449{bottom:782.720000pt;}
.y23_c01449{bottom:784.000000pt;}
.y21_c01449{bottom:784.640000pt;}
.y1e_c01449{bottom:785.280000pt;}
.y20_c01449{bottom:785.920000pt;}
.y1f_c01449{bottom:786.560000pt;}
.y24_c01449{bottom:787.200000pt;}
.y1d_c01449{bottom:832.000000pt;}
.y1c_c01449{bottom:860.800000pt;}
.y1b_c01449{bottom:861.440000pt;}
.y19_c01449{bottom:862.720000pt;}
.y1a_c01449{bottom:863.360000pt;}
.y18_c01449{bottom:877.440000pt;}
.y16_c01449{bottom:878.720000pt;}
.y17_c01449{bottom:879.360000pt;}
.y14_c01449{bottom:880.000000pt;}
.y10_c01449{bottom:881.280000pt;}
.y11_c01449{bottom:881.920000pt;}
.y15_c01449{bottom:883.200000pt;}
.y12_c01449{bottom:888.320000pt;}
.y13_c01449{bottom:889.600000pt;}
.yf_c01449{bottom:890.240000pt;}
.ye_c01449{bottom:892.160000pt;}
.yd_c01449{bottom:914.560000pt;}
.y9_c01449{bottom:917.120000pt;}
.yc_c01449{bottom:919.040000pt;}
.y7_c01449{bottom:919.680000pt;}
.y8_c01449{bottom:920.320000pt;}
.yb_c01449{bottom:920.960000pt;}
.ya_c01449{bottom:921.600000pt;}
.y6_c01449{bottom:966.400000pt;}
.h8_c01449{height:13.822500pt;}
.ha_c01449{height:18.430000pt;}
.h13_c01449{height:20.733750pt;}
.hd_c01449{height:27.645000pt;}
.h10_c01449{height:29.948750pt;}
.h11_c01449{height:30.205000pt;}
.hc_c01449{height:34.556250pt;}
.h2_c01449{height:36.860000pt;}
.h5_c01449{height:39.163750pt;}
.h9_c01449{height:41.467500pt;}
.hb_c01449{height:43.771250pt;}
.hf_c01449{height:46.075000pt;}
.h7_c01449{height:48.378750pt;}
.he_c01449{height:50.682500pt;}
.h12_c01449{height:52.986250pt;}
.h6_c01449{height:57.593750pt;}
.h3_c01449{height:80.631250pt;}
.h4_c01449{height:82.935000pt;}
.h0_c01449{height:1031.680000pt;}
.h1_c01449{height:1032.000000pt;}
.w0_c01449{width:691.840000pt;}
.w1_c01449{width:692.000000pt;}
.x0_c01449{left:0.000000pt;}
.x13_c01449{left:39.040000pt;}
.x2b_c01449{left:40.320000pt;}
.x8_c01449{left:41.600000pt;}
.x2c_c01449{left:69.120000pt;}
.x5c_c01449{left:76.800000pt;}
.x4a_c01449{left:86.400000pt;}
.x9_c01449{left:89.600000pt;}
.x2f_c01449{left:97.280000pt;}
.x66_c01449{left:105.600000pt;}
.xa_c01449{left:107.520000pt;}
.x30_c01449{left:117.760000pt;}
.x62_c01449{left:125.440000pt;}
.x2e_c01449{left:127.360000pt;}
.x67_c01449{left:134.400000pt;}
.x26_c01449{left:135.680000pt;}
.x2d_c01449{left:136.960000pt;}
.x14_c01449{left:138.240000pt;}
.x43_c01449{left:144.000000pt;}
.x37_c01449{left:145.920000pt;}
.x1d_c01449{left:147.840000pt;}
.x56_c01449{left:154.240000pt;}
.x51_c01449{left:163.200000pt;}
.x3e_c01449{left:164.480000pt;}
.x27_c01449{left:165.760000pt;}
.x38_c01449{left:172.800000pt;}
.x68_c01449{left:174.080000pt;}
.x31_c01449{left:176.000000pt;}
.x44_c01449{left:181.760000pt;}
.xb_c01449{left:185.600000pt;}
.x3f_c01449{left:192.640000pt;}
.x1e_c01449{left:193.920000pt;}
.x57_c01449{left:202.880000pt;}
.x52_c01449{left:211.200000pt;}
.x15_c01449{left:213.760000pt;}
.x69_c01449{left:220.800000pt;}
.x28_c01449{left:222.720000pt;}
.x1f_c01449{left:224.640000pt;}
.x32_c01449{left:233.600000pt;}
.xc_c01449{left:243.840000pt;}
.x1_c01449{left:251.520000pt;}
.x4b_c01449{left:260.480000pt;}
.x53_c01449{left:269.440000pt;}
.x20_c01449{left:270.720000pt;}
.x2_c01449{left:279.680000pt;}
.x5d_c01449{left:288.640000pt;}
.x45_c01449{left:289.920000pt;}
.xd_c01449{left:291.840000pt;}
.x16_c01449{left:299.520000pt;}
.x1c_c01449{left:300.800000pt;}
.x3_c01449{left:309.760000pt;}
.x33_c01449{left:318.720000pt;}
.x5e_c01449{left:327.680000pt;}
.xe_c01449{left:328.960000pt;}
.x29_c01449{left:338.560000pt;}
.x4_c01449{left:346.880000pt;}
.xf_c01449{left:349.440000pt;}
.x46_c01449{left:355.840000pt;}
.x39_c01449{left:357.120000pt;}
.x34_c01449{left:359.040000pt;}
.x21_c01449{left:367.360000pt;}
.x4c_c01449{left:375.040000pt;}
.x5_c01449{left:376.320000pt;}
.x47_c01449{left:384.000000pt;}
.x3a_c01449{left:385.920000pt;}
.x54_c01449{left:394.880000pt;}
.x10_c01449{left:397.440000pt;}
.x22_c01449{left:407.040000pt;}
.x4d_c01449{left:412.800000pt;}
.x40_c01449{left:414.720000pt;}
.x35_c01449{left:416.000000pt;}
.x3b_c01449{left:424.320000pt;}
.x11_c01449{left:425.600000pt;}
.x63_c01449{left:432.000000pt;}
.x6_c01449{left:433.920000pt;}
.x5f_c01449{left:441.600000pt;}
.x36_c01449{left:443.520000pt;}
.x12_c01449{left:446.080000pt;}
.x23_c01449{left:454.400000pt;}
.x4e_c01449{left:460.800000pt;}
.x2a_c01449{left:462.720000pt;}
.x64_c01449{left:470.400000pt;}
.x17_c01449{left:474.240000pt;}
.x58_c01449{left:481.280000pt;}
.x41_c01449{left:490.880000pt;}
.x48_c01449{left:499.840000pt;}
.x24_c01449{left:501.760000pt;}
.x59_c01449{left:508.800000pt;}
.x3c_c01449{left:510.080000pt;}
.x4f_c01449{left:517.760000pt;}
.x18_c01449{left:521.600000pt;}
.x60_c01449{left:528.000000pt;}
.x55_c01449{left:529.280000pt;}
.x25_c01449{left:539.520000pt;}
.x19_c01449{left:541.440000pt;}
.x42_c01449{left:547.840000pt;}
.x61_c01449{left:566.400000pt;}
.x1a_c01449{left:568.960000pt;}
.x65_c01449{left:576.000000pt;}
.x50_c01449{left:586.880000pt;}
.x1b_c01449{left:589.440000pt;}
.x7_c01449{left:593.280000pt;}
.x49_c01449{left:595.200000pt;}
.x3d_c01449{left:597.120000pt;}
.x5a_c01449{left:615.040000pt;}
.x5b_c01449{left:643.200000pt;}
}





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

.ir_c01450:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01450{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01450;src:url('chunks/assets/font_5191be00aef6b151bb940a35.woff2')format("woff");}.ff1_c01450{font-family:ff1_c01450;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m57_c01450{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);}
.m55_c01450{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);}
.m31_c01450{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.mc_c01450{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);}
.m46_c01450{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);}
.m52_c01450{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01450{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m10_c01450{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m54_c01450{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m21_c01450{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01450{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m16_c01450{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m26_c01450{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m5_c01450{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01450{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m27_c01450{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m18_c01450{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m29_c01450{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m20_c01450{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);}
.m32_c01450{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01450{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01450{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m19_c01450{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);}
.m43_c01450{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m24_c01450{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m6_c01450{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2_c01450{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m41_c01450{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);}
.m4f_c01450{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01450{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01450{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.md_c01450{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);}
.m0_c01450{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01450{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);}
.m5b_c01450{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m33_c01450{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);}
.ma_c01450{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);}
.m1e_c01450{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);}
.m3a_c01450{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01450{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m48_c01450{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);}
.m5c_c01450{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m56_c01450{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);}
.m1_c01450{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);}
.m2a_c01450{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);}
.m4a_c01450{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m35_c01450{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m13_c01450{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m11_c01450{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m34_c01450{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);}
.m50_c01450{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m30_c01450{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m25_c01450{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);}
.mb_c01450{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);}
.m3_c01450{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m40_c01450{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01450{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m38_c01450{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m14_c01450{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);}
.m44_c01450{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m51_c01450{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m23_c01450{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m12_c01450{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);}
.m5a_c01450{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m45_c01450{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m4d_c01450{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m5d_c01450{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01450{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m36_c01450{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);}
.m42_c01450{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);}
.mf_c01450{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m39_c01450{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m28_c01450{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);}
.m2b_c01450{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m53_c01450{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01450{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m37_c01450{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);}
.m2d_c01450{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m9_c01450{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m4e_c01450{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);}
.m59_c01450{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m47_c01450{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m8_c01450{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);}
.m22_c01450{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);}
.m3d_c01450{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m58_c01450{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m7_c01450{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m15_c01450{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01450{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m4_c01450{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);}
.m3c_c01450{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.me_c01450{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);}
.m17_c01450{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m49_c01450{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.v0_c01450{vertical-align:0.000000px;}
.v1_c01450{vertical-align:8.640000px;}
.ls0_c01450{letter-spacing:0.000000px;}
.sc__c01450{text-shadow:none;}
.sc0_c01450{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01450{-webkit-text-stroke:0px transparent;}
.sc0_c01450{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01450{word-spacing:-3.602640px;}
.ws1_c01450{word-spacing:0.000000px;}
.fc0_c01450{color:transparent;}
.fs3_c01450{font-size:34.560000px;}
.fs5_c01450{font-size:37.440000px;}
.fsb_c01450{font-size:40.320000px;}
.fsc_c01450{font-size:43.200000px;}
.fs6_c01450{font-size:46.080000px;}
.fs1_c01450{font-size:48.960000px;}
.fs7_c01450{font-size:51.840000px;}
.fsa_c01450{font-size:54.720000px;}
.fs9_c01450{font-size:57.600000px;}
.fs2_c01450{font-size:60.480000px;}
.fs8_c01450{font-size:63.360000px;}
.fs4_c01450{font-size:69.120000px;}
.fs0_c01450{font-size:72.000000px;}
.y0_c01450{bottom:0.000000px;}
.y64_c01450{bottom:52.560000px;}
.y63_c01450{bottom:54.720000px;}
.y65_c01450{bottom:55.440000px;}
.y66_c01450{bottom:56.880000px;}
.y67_c01450{bottom:57.600000px;}
.y68_c01450{bottom:58.320000px;}
.y62_c01450{bottom:108.720000px;}
.y5e_c01450{bottom:151.920000px;}
.y5d_c01450{bottom:152.640000px;}
.y5f_c01450{bottom:153.360000px;}
.y60_c01450{bottom:154.080000px;}
.y61_c01450{bottom:154.800000px;}
.y5b_c01450{bottom:194.400000px;}
.y59_c01450{bottom:195.120000px;}
.y5a_c01450{bottom:195.840000px;}
.y58_c01450{bottom:196.560000px;}
.y5c_c01450{bottom:197.280000px;}
.y54_c01450{bottom:236.160000px;}
.y56_c01450{bottom:237.600000px;}
.y55_c01450{bottom:239.040000px;}
.y53_c01450{bottom:239.760000px;}
.y57_c01450{bottom:240.480000px;}
.y51_c01450{bottom:290.160000px;}
.y50_c01450{bottom:293.040000px;}
.y4f_c01450{bottom:293.760000px;}
.y52_c01450{bottom:294.480000px;}
.y4c_c01450{bottom:333.360000px;}
.y4a_c01450{bottom:334.080000px;}
.y4b_c01450{bottom:334.800000px;}
.y4e_c01450{bottom:335.520000px;}
.y48_c01450{bottom:336.240000px;}
.y49_c01450{bottom:336.960000px;}
.y4d_c01450{bottom:337.680000px;}
.y44_c01450{bottom:376.560000px;}
.y47_c01450{bottom:377.280000px;}
.y45_c01450{bottom:379.440000px;}
.y46_c01450{bottom:380.160000px;}
.y41_c01450{bottom:419.040000px;}
.y3f_c01450{bottom:419.760000px;}
.y42_c01450{bottom:420.480000px;}
.y40_c01450{bottom:421.920000px;}
.y3e_c01450{bottom:422.640000px;}
.y43_c01450{bottom:423.360000px;}
.y3b_c01450{bottom:462.240000px;}
.y3d_c01450{bottom:462.960000px;}
.y3a_c01450{bottom:465.120000px;}
.y3c_c01450{bottom:465.840000px;}
.y38_c01450{bottom:505.440000px;}
.y35_c01450{bottom:506.160000px;}
.y37_c01450{bottom:508.320000px;}
.y36_c01450{bottom:509.040000px;}
.y39_c01450{bottom:509.760000px;}
.y34_c01450{bottom:560.160000px;}
.y33_c01450{bottom:562.320000px;}
.y30_c01450{bottom:601.920000px;}
.y2f_c01450{bottom:602.640000px;}
.y2e_c01450{bottom:604.800000px;}
.y31_c01450{bottom:605.520000px;}
.y32_c01450{bottom:606.240000px;}
.y2c_c01450{bottom:645.840000px;}
.y2b_c01450{bottom:648.000000px;}
.y2d_c01450{bottom:648.720000px;}
.y2a_c01450{bottom:688.320000px;}
.y29_c01450{bottom:690.480000px;}
.y27_c01450{bottom:691.200000px;}
.y28_c01450{bottom:691.920000px;}
.y26_c01450{bottom:731.520000px;}
.y23_c01450{bottom:732.240000px;}
.y25_c01450{bottom:732.960000px;}
.y24_c01450{bottom:734.400000px;}
.y22_c01450{bottom:735.120000px;}
.y1e_c01450{bottom:774.720000px;}
.y20_c01450{bottom:775.440000px;}
.y21_c01450{bottom:777.600000px;}
.y1f_c01450{bottom:778.320000px;}
.y1c_c01450{bottom:817.920000px;}
.y1d_c01450{bottom:820.080000px;}
.y1b_c01450{bottom:820.800000px;}
.y1a_c01450{bottom:821.520000px;}
.y19_c01450{bottom:862.560000px;}
.y18_c01450{bottom:864.000000px;}
.y12_c01450{bottom:903.600000px;}
.y15_c01450{bottom:904.320000px;}
.y13_c01450{bottom:905.040000px;}
.y16_c01450{bottom:905.760000px;}
.y17_c01450{bottom:906.480000px;}
.y14_c01450{bottom:907.200000px;}
.y11_c01450{bottom:946.080000px;}
.yf_c01450{bottom:946.800000px;}
.y10_c01450{bottom:948.960000px;}
.yd_c01450{bottom:949.680000px;}
.ye_c01450{bottom:950.400000px;}
.yb_c01450{bottom:989.280000px;}
.y8_c01450{bottom:990.000000px;}
.ya_c01450{bottom:990.720000px;}
.yc_c01450{bottom:992.160000px;}
.y9_c01450{bottom:992.880000px;}
.y6_c01450{bottom:1031.040000px;}
.y4_c01450{bottom:1032.480000px;}
.y3_c01450{bottom:1033.200000px;}
.y7_c01450{bottom:1034.640000px;}
.y5_c01450{bottom:1035.360000px;}
.y2_c01450{bottom:1036.080000px;}
.y1_c01450{bottom:1100.160000px;}
.h5_c01450{height:31.100625px;}
.h7_c01450{height:33.692344px;}
.hd_c01450{height:36.284062px;}
.he_c01450{height:38.875781px;}
.h8_c01450{height:41.467500px;}
.h3_c01450{height:44.059219px;}
.h9_c01450{height:46.650937px;}
.hc_c01450{height:49.242656px;}
.hb_c01450{height:51.834375px;}
.h4_c01450{height:54.426094px;}
.ha_c01450{height:57.017812px;}
.h6_c01450{height:62.201250px;}
.h2_c01450{height:64.792969px;}
.h0_c01450{height:1160.640000px;}
.h1_c01450{height:1161.000000px;}
.w1_c01450{width:767.250000px;}
.w0_c01450{width:767.520000px;}
.x0_c01450{left:0.000000px;}
.xb_c01450{left:43.200000px;}
.x15_c01450{left:44.640000px;}
.x16_c01450{left:76.320000px;}
.x1e_c01450{left:86.400000px;}
.x3b_c01450{left:97.200000px;}
.x17_c01450{left:109.440000px;}
.x26_c01450{left:119.520000px;}
.x4d_c01450{left:129.600000px;}
.xc_c01450{left:131.040000px;}
.x1f_c01450{left:140.400000px;}
.x18_c01450{left:141.840000px;}
.x51_c01450{left:144.000000px;}
.x2_c01450{left:151.200000px;}
.x27_c01450{left:152.640000px;}
.x38_c01450{left:162.720000px;}
.x47_c01450{left:173.520000px;}
.xd_c01450{left:174.960000px;}
.x33_c01450{left:183.600000px;}
.x4e_c01450{left:194.400000px;}
.x3_c01450{left:196.560000px;}
.x42_c01450{left:205.920000px;}
.x3d_c01450{left:216.720000px;}
.x20_c01450{left:228.240000px;}
.x28_c01450{left:239.760000px;}
.x19_c01450{left:249.840000px;}
.xe_c01450{left:259.920000px;}
.x2d_c01450{left:270.720000px;}
.x1a_c01450{left:282.240000px;}
.x4_c01450{left:293.040000px;}
.xf_c01450{left:303.840000px;}
.x43_c01450{left:313.920000px;}
.x3e_c01450{left:325.440000px;}
.x21_c01450{left:347.760000px;}
.x29_c01450{left:357.120000px;}
.x39_c01450{left:358.560000px;}
.x2b_c01450{left:379.440000px;}
.x2e_c01450{left:389.520000px;}
.x10_c01450{left:391.680000px;}
.x22_c01450{left:400.320000px;}
.x5_c01450{left:401.760000px;}
.x44_c01450{left:411.120000px;}
.x52_c01450{left:412.560000px;}
.x54_c01450{left:421.920000px;}
.x11_c01450{left:424.080000px;}
.x6_c01450{left:434.160000px;}
.x2f_c01450{left:442.800000px;}
.x34_c01450{left:454.320000px;}
.x48_c01450{left:455.760000px;}
.x45_c01450{left:465.120000px;}
.x3a_c01450{left:466.560000px;}
.x3c_c01450{left:475.200000px;}
.x55_c01450{left:485.280000px;}
.x3f_c01450{left:486.720000px;}
.x49_c01450{left:488.160000px;}
.x35_c01450{left:496.800000px;}
.x12_c01450{left:498.240000px;}
.x4f_c01450{left:507.600000px;}
.x23_c01450{left:509.040000px;}
.x30_c01450{left:519.120000px;}
.x7_c01450{left:520.560000px;}
.x4a_c01450{left:529.200000px;}
.x24_c01450{left:531.360000px;}
.x53_c01450{left:540.000000px;}
.x13_c01450{left:542.160000px;}
.x2a_c01450{left:552.240000px;}
.x1b_c01450{left:553.680000px;}
.x36_c01450{left:562.320000px;}
.x25_c01450{left:563.760000px;}
.x50_c01450{left:572.400000px;}
.x56_c01450{left:583.200000px;}
.x4b_c01450{left:594.000000px;}
.x8_c01450{left:596.160000px;}
.x1c_c01450{left:606.240000px;}
.x2c_c01450{left:607.680000px;}
.x40_c01450{left:615.600000px;}
.x4c_c01450{left:617.040000px;}
.x46_c01450{left:627.120000px;}
.x31_c01450{left:628.560000px;}
.x9_c01450{left:639.360000px;}
.x37_c01450{left:648.720000px;}
.x1d_c01450{left:650.160000px;}
.x1_c01450{left:657.360000px;}
.x14_c01450{left:662.400000px;}
.x41_c01450{left:669.600000px;}
.xa_c01450{left:671.760000px;}
.x32_c01450{left:682.560000px;}
@media print{
.v0_c01450{vertical-align:0.000000pt;}
.v1_c01450{vertical-align:7.680000pt;}
.ls0_c01450{letter-spacing:0.000000pt;}
.ws0_c01450{word-spacing:-3.202347pt;}
.ws1_c01450{word-spacing:0.000000pt;}
.fs3_c01450{font-size:30.720000pt;}
.fs5_c01450{font-size:33.280000pt;}
.fsb_c01450{font-size:35.840000pt;}
.fsc_c01450{font-size:38.400000pt;}
.fs6_c01450{font-size:40.960000pt;}
.fs1_c01450{font-size:43.520000pt;}
.fs7_c01450{font-size:46.080000pt;}
.fsa_c01450{font-size:48.640000pt;}
.fs9_c01450{font-size:51.200000pt;}
.fs2_c01450{font-size:53.760000pt;}
.fs8_c01450{font-size:56.320000pt;}
.fs4_c01450{font-size:61.440000pt;}
.fs0_c01450{font-size:64.000000pt;}
.y0_c01450{bottom:0.000000pt;}
.y64_c01450{bottom:46.720000pt;}
.y63_c01450{bottom:48.640000pt;}
.y65_c01450{bottom:49.280000pt;}
.y66_c01450{bottom:50.560000pt;}
.y67_c01450{bottom:51.200000pt;}
.y68_c01450{bottom:51.840000pt;}
.y62_c01450{bottom:96.640000pt;}
.y5e_c01450{bottom:135.040000pt;}
.y5d_c01450{bottom:135.680000pt;}
.y5f_c01450{bottom:136.320000pt;}
.y60_c01450{bottom:136.960000pt;}
.y61_c01450{bottom:137.600000pt;}
.y5b_c01450{bottom:172.800000pt;}
.y59_c01450{bottom:173.440000pt;}
.y5a_c01450{bottom:174.080000pt;}
.y58_c01450{bottom:174.720000pt;}
.y5c_c01450{bottom:175.360000pt;}
.y54_c01450{bottom:209.920000pt;}
.y56_c01450{bottom:211.200000pt;}
.y55_c01450{bottom:212.480000pt;}
.y53_c01450{bottom:213.120000pt;}
.y57_c01450{bottom:213.760000pt;}
.y51_c01450{bottom:257.920000pt;}
.y50_c01450{bottom:260.480000pt;}
.y4f_c01450{bottom:261.120000pt;}
.y52_c01450{bottom:261.760000pt;}
.y4c_c01450{bottom:296.320000pt;}
.y4a_c01450{bottom:296.960000pt;}
.y4b_c01450{bottom:297.600000pt;}
.y4e_c01450{bottom:298.240000pt;}
.y48_c01450{bottom:298.880000pt;}
.y49_c01450{bottom:299.520000pt;}
.y4d_c01450{bottom:300.160000pt;}
.y44_c01450{bottom:334.720000pt;}
.y47_c01450{bottom:335.360000pt;}
.y45_c01450{bottom:337.280000pt;}
.y46_c01450{bottom:337.920000pt;}
.y41_c01450{bottom:372.480000pt;}
.y3f_c01450{bottom:373.120000pt;}
.y42_c01450{bottom:373.760000pt;}
.y40_c01450{bottom:375.040000pt;}
.y3e_c01450{bottom:375.680000pt;}
.y43_c01450{bottom:376.320000pt;}
.y3b_c01450{bottom:410.880000pt;}
.y3d_c01450{bottom:411.520000pt;}
.y3a_c01450{bottom:413.440000pt;}
.y3c_c01450{bottom:414.080000pt;}
.y38_c01450{bottom:449.280000pt;}
.y35_c01450{bottom:449.920000pt;}
.y37_c01450{bottom:451.840000pt;}
.y36_c01450{bottom:452.480000pt;}
.y39_c01450{bottom:453.120000pt;}
.y34_c01450{bottom:497.920000pt;}
.y33_c01450{bottom:499.840000pt;}
.y30_c01450{bottom:535.040000pt;}
.y2f_c01450{bottom:535.680000pt;}
.y2e_c01450{bottom:537.600000pt;}
.y31_c01450{bottom:538.240000pt;}
.y32_c01450{bottom:538.880000pt;}
.y2c_c01450{bottom:574.080000pt;}
.y2b_c01450{bottom:576.000000pt;}
.y2d_c01450{bottom:576.640000pt;}
.y2a_c01450{bottom:611.840000pt;}
.y29_c01450{bottom:613.760000pt;}
.y27_c01450{bottom:614.400000pt;}
.y28_c01450{bottom:615.040000pt;}
.y26_c01450{bottom:650.240000pt;}
.y23_c01450{bottom:650.880000pt;}
.y25_c01450{bottom:651.520000pt;}
.y24_c01450{bottom:652.800000pt;}
.y22_c01450{bottom:653.440000pt;}
.y1e_c01450{bottom:688.640000pt;}
.y20_c01450{bottom:689.280000pt;}
.y21_c01450{bottom:691.200000pt;}
.y1f_c01450{bottom:691.840000pt;}
.y1c_c01450{bottom:727.040000pt;}
.y1d_c01450{bottom:728.960000pt;}
.y1b_c01450{bottom:729.600000pt;}
.y1a_c01450{bottom:730.240000pt;}
.y19_c01450{bottom:766.720000pt;}
.y18_c01450{bottom:768.000000pt;}
.y12_c01450{bottom:803.200000pt;}
.y15_c01450{bottom:803.840000pt;}
.y13_c01450{bottom:804.480000pt;}
.y16_c01450{bottom:805.120000pt;}
.y17_c01450{bottom:805.760000pt;}
.y14_c01450{bottom:806.400000pt;}
.y11_c01450{bottom:840.960000pt;}
.yf_c01450{bottom:841.600000pt;}
.y10_c01450{bottom:843.520000pt;}
.yd_c01450{bottom:844.160000pt;}
.ye_c01450{bottom:844.800000pt;}
.yb_c01450{bottom:879.360000pt;}
.y8_c01450{bottom:880.000000pt;}
.ya_c01450{bottom:880.640000pt;}
.yc_c01450{bottom:881.920000pt;}
.y9_c01450{bottom:882.560000pt;}
.y6_c01450{bottom:916.480000pt;}
.y4_c01450{bottom:917.760000pt;}
.y3_c01450{bottom:918.400000pt;}
.y7_c01450{bottom:919.680000pt;}
.y5_c01450{bottom:920.320000pt;}
.y2_c01450{bottom:920.960000pt;}
.y1_c01450{bottom:977.920000pt;}
.h5_c01450{height:27.645000pt;}
.h7_c01450{height:29.948750pt;}
.hd_c01450{height:32.252500pt;}
.he_c01450{height:34.556250pt;}
.h8_c01450{height:36.860000pt;}
.h3_c01450{height:39.163750pt;}
.h9_c01450{height:41.467500pt;}
.hc_c01450{height:43.771250pt;}
.hb_c01450{height:46.075000pt;}
.h4_c01450{height:48.378750pt;}
.ha_c01450{height:50.682500pt;}
.h6_c01450{height:55.290000pt;}
.h2_c01450{height:57.593750pt;}
.h0_c01450{height:1031.680000pt;}
.h1_c01450{height:1032.000000pt;}
.w1_c01450{width:682.000000pt;}
.w0_c01450{width:682.240000pt;}
.x0_c01450{left:0.000000pt;}
.xb_c01450{left:38.400000pt;}
.x15_c01450{left:39.680000pt;}
.x16_c01450{left:67.840000pt;}
.x1e_c01450{left:76.800000pt;}
.x3b_c01450{left:86.400000pt;}
.x17_c01450{left:97.280000pt;}
.x26_c01450{left:106.240000pt;}
.x4d_c01450{left:115.200000pt;}
.xc_c01450{left:116.480000pt;}
.x1f_c01450{left:124.800000pt;}
.x18_c01450{left:126.080000pt;}
.x51_c01450{left:128.000000pt;}
.x2_c01450{left:134.400000pt;}
.x27_c01450{left:135.680000pt;}
.x38_c01450{left:144.640000pt;}
.x47_c01450{left:154.240000pt;}
.xd_c01450{left:155.520000pt;}
.x33_c01450{left:163.200000pt;}
.x4e_c01450{left:172.800000pt;}
.x3_c01450{left:174.720000pt;}
.x42_c01450{left:183.040000pt;}
.x3d_c01450{left:192.640000pt;}
.x20_c01450{left:202.880000pt;}
.x28_c01450{left:213.120000pt;}
.x19_c01450{left:222.080000pt;}
.xe_c01450{left:231.040000pt;}
.x2d_c01450{left:240.640000pt;}
.x1a_c01450{left:250.880000pt;}
.x4_c01450{left:260.480000pt;}
.xf_c01450{left:270.080000pt;}
.x43_c01450{left:279.040000pt;}
.x3e_c01450{left:289.280000pt;}
.x21_c01450{left:309.120000pt;}
.x29_c01450{left:317.440000pt;}
.x39_c01450{left:318.720000pt;}
.x2b_c01450{left:337.280000pt;}
.x2e_c01450{left:346.240000pt;}
.x10_c01450{left:348.160000pt;}
.x22_c01450{left:355.840000pt;}
.x5_c01450{left:357.120000pt;}
.x44_c01450{left:365.440000pt;}
.x52_c01450{left:366.720000pt;}
.x54_c01450{left:375.040000pt;}
.x11_c01450{left:376.960000pt;}
.x6_c01450{left:385.920000pt;}
.x2f_c01450{left:393.600000pt;}
.x34_c01450{left:403.840000pt;}
.x48_c01450{left:405.120000pt;}
.x45_c01450{left:413.440000pt;}
.x3a_c01450{left:414.720000pt;}
.x3c_c01450{left:422.400000pt;}
.x55_c01450{left:431.360000pt;}
.x3f_c01450{left:432.640000pt;}
.x49_c01450{left:433.920000pt;}
.x35_c01450{left:441.600000pt;}
.x12_c01450{left:442.880000pt;}
.x4f_c01450{left:451.200000pt;}
.x23_c01450{left:452.480000pt;}
.x30_c01450{left:461.440000pt;}
.x7_c01450{left:462.720000pt;}
.x4a_c01450{left:470.400000pt;}
.x24_c01450{left:472.320000pt;}
.x53_c01450{left:480.000000pt;}
.x13_c01450{left:481.920000pt;}
.x2a_c01450{left:490.880000pt;}
.x1b_c01450{left:492.160000pt;}
.x36_c01450{left:499.840000pt;}
.x25_c01450{left:501.120000pt;}
.x50_c01450{left:508.800000pt;}
.x56_c01450{left:518.400000pt;}
.x4b_c01450{left:528.000000pt;}
.x8_c01450{left:529.920000pt;}
.x1c_c01450{left:538.880000pt;}
.x2c_c01450{left:540.160000pt;}
.x40_c01450{left:547.200000pt;}
.x4c_c01450{left:548.480000pt;}
.x46_c01450{left:557.440000pt;}
.x31_c01450{left:558.720000pt;}
.x9_c01450{left:568.320000pt;}
.x37_c01450{left:576.640000pt;}
.x1d_c01450{left:577.920000pt;}
.x1_c01450{left:584.320000pt;}
.x14_c01450{left:588.800000pt;}
.x41_c01450{left:595.200000pt;}
.xa_c01450{left:597.120000pt;}
.x32_c01450{left:606.720000pt;}
}





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

.ir_c01451:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01451{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01451;src:url('chunks/assets/font_acffda2b0d2b71136f31fece.woff2')format("woff");}.ff1_c01451{font-family:ff1_c01451;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m57_c01451{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m3f_c01451{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);}
.m5a_c01451{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);}
.m53_c01451{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);}
.m54_c01451{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);}
.m55_c01451{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m4_c01451{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);}
.m44_c01451{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);}
.m61_c01451{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m2_c01451{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);}
.m52_c01451{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m5d_c01451{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m37_c01451{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m5c_c01451{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01451{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m23_c01451{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m41_c01451{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m31_c01451{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01451{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m50_c01451{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m49_c01451{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m58_c01451{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m8_c01451{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m56_c01451{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m20_c01451{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m21_c01451{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);}
.m5b_c01451{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01451{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);}
.m24_c01451{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_c01451{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m3_c01451{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m32_c01451{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01451{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);}
.mf_c01451{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_c01451{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.mc_c01451{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);}
.m0_c01451{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m5e_c01451{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);}
.m36_c01451{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m60_c01451{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);}
.m9_c01451{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);}
.m4d_c01451{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);}
.m17_c01451{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m5f_c01451{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m27_c01451{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m28_c01451{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);}
.m38_c01451{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01451{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01451{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);}
.m2b_c01451{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);}
.m1e_c01451{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01451{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);}
.m34_c01451{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m7_c01451{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);}
.m29_c01451{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);}
.m1d_c01451{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m15_c01451{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01451{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);}
.m40_c01451{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m19_c01451{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m39_c01451{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01451{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);}
.ma_c01451{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m42_c01451{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01451{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m14_c01451{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);}
.m11_c01451{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);}
.m45_c01451{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m6_c01451{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m12_c01451{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);}
.m33_c01451{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m59_c01451{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01451{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.mb_c01451{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m26_c01451{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);}
.m2a_c01451{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m48_c01451{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01451{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m25_c01451{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);}
.m1_c01451{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m22_c01451{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);}
.m3a_c01451{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m13_c01451{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01451{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m5_c01451{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m30_c01451{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01451{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);}
.md_c01451{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m16_c01451{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m35_c01451{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01451{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m4f_c01451{transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);}
.m47_c01451{transform:matrix(0.730000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.730000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.730000,0.000000,0.000000,0.250000,0,0);}
.m51_c01451{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m18_c01451{transform:matrix(1.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.155000,0.000000,0.000000,0.250000,0,0);}
.m46_c01451{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01451{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.m43_c01451{transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);}
.v0_c01451{vertical-align:0.000000px;}
.v1_c01451{vertical-align:8.640000px;}
.ls0_c01451{letter-spacing:0.000000px;}
.sc__c01451{text-shadow:none;}
.sc0_c01451{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01451{-webkit-text-stroke:0px transparent;}
.sc0_c01451{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01451{word-spacing:-4.049280px;}
.ws3_c01451{word-spacing:0.000000px;}
.ws2_c01451{word-spacing:11.823460px;}
.ws1_c01451{word-spacing:17.376687px;}
.fc0_c01451{color:transparent;}
.fsd_c01451{font-size:11.520000px;}
.fsc_c01451{font-size:14.400000px;}
.fse_c01451{font-size:23.040000px;}
.fs5_c01451{font-size:34.560000px;}
.fs9_c01451{font-size:37.440000px;}
.fsf_c01451{font-size:43.200000px;}
.fs8_c01451{font-size:46.080000px;}
.fs3_c01451{font-size:48.960000px;}
.fs1_c01451{font-size:51.840000px;}
.fs6_c01451{font-size:54.720000px;}
.fs2_c01451{font-size:57.600000px;}
.fs7_c01451{font-size:60.480000px;}
.fsa_c01451{font-size:63.360000px;}
.fsb_c01451{font-size:66.240000px;}
.fs4_c01451{font-size:69.120000px;}
.fs0_c01451{font-size:72.000000px;}
.fs10_c01451{font-size:74.880000px;}
.y0_c01451{bottom:0.000000px;}
.y6b_c01451{bottom:52.560000px;}
.y6a_c01451{bottom:56.880000px;}
.y69_c01451{bottom:57.600000px;}
.y71_c01451{bottom:58.320000px;}
.y6f_c01451{bottom:60.480000px;}
.y70_c01451{bottom:61.200000px;}
.y68_c01451{bottom:95.760000px;}
.y67_c01451{bottom:100.080000px;}
.y6e_c01451{bottom:100.800000px;}
.y6d_c01451{bottom:101.520000px;}
.y6c_c01451{bottom:102.960000px;}
.y65_c01451{bottom:139.680000px;}
.y66_c01451{bottom:143.280000px;}
.y64_c01451{bottom:144.000000px;}
.y63_c01451{bottom:194.400000px;}
.y62_c01451{bottom:195.120000px;}
.y61_c01451{bottom:195.840000px;}
.y58_c01451{bottom:197.280000px;}
.y57_c01451{bottom:198.720000px;}
.y60_c01451{bottom:235.440000px;}
.y5f_c01451{bottom:239.040000px;}
.y55_c01451{bottom:239.760000px;}
.y56_c01451{bottom:241.920000px;}
.y54_c01451{bottom:242.640000px;}
.y5e_c01451{bottom:278.640000px;}
.y5d_c01451{bottom:280.080000px;}
.y5c_c01451{bottom:281.520000px;}
.y53_c01451{bottom:282.240000px;}
.y52_c01451{bottom:285.120000px;}
.y5a_c01451{bottom:321.840000px;}
.y5b_c01451{bottom:322.560000px;}
.y4f_c01451{bottom:324.720000px;}
.y51_c01451{bottom:325.440000px;}
.y50_c01451{bottom:326.880000px;}
.y59_c01451{bottom:365.040000px;}
.y4d_c01451{bottom:367.920000px;}
.y4e_c01451{bottom:368.640000px;}
.y48_c01451{bottom:408.960000px;}
.y49_c01451{bottom:411.840000px;}
.y47_c01451{bottom:412.560000px;}
.y4a_c01451{bottom:413.280000px;}
.y4b_c01451{bottom:414.000000px;}
.y4c_c01451{bottom:414.720000px;}
.y45_c01451{bottom:452.880000px;}
.y44_c01451{bottom:454.320000px;}
.y43_c01451{bottom:455.760000px;}
.y46_c01451{bottom:456.480000px;}
.y3a_c01451{bottom:507.600000px;}
.y37_c01451{bottom:508.320000px;}
.y40_c01451{bottom:509.040000px;}
.y38_c01451{bottom:509.760000px;}
.y41_c01451{bottom:510.480000px;}
.y39_c01451{bottom:512.640000px;}
.y42_c01451{bottom:514.080000px;}
.y36_c01451{bottom:539.280000px;}
.y3f_c01451{bottom:540.000000px;}
.y33_c01451{bottom:540.720000px;}
.y34_c01451{bottom:541.440000px;}
.y3b_c01451{bottom:542.160000px;}
.y3d_c01451{bottom:543.600000px;}
.y35_c01451{bottom:544.320000px;}
.y3c_c01451{bottom:545.040000px;}
.y3e_c01451{bottom:546.480000px;}
.y2f_c01451{bottom:581.760000px;}
.y30_c01451{bottom:582.480000px;}
.y31_c01451{bottom:584.640000px;}
.y32_c01451{bottom:585.360000px;}
.y2e_c01451{bottom:625.680000px;}
.y2c_c01451{bottom:626.400000px;}
.y2b_c01451{bottom:627.120000px;}
.y2a_c01451{bottom:627.840000px;}
.y2d_c01451{bottom:628.560000px;}
.y28_c01451{bottom:678.960000px;}
.y27_c01451{bottom:679.680000px;}
.y24_c01451{bottom:680.400000px;}
.y25_c01451{bottom:681.120000px;}
.y26_c01451{bottom:681.840000px;}
.y29_c01451{bottom:682.560000px;}
.y23_c01451{bottom:721.440000px;}
.y22_c01451{bottom:722.160000px;}
.y21_c01451{bottom:723.600000px;}
.y1f_c01451{bottom:724.320000px;}
.y20_c01451{bottom:725.040000px;}
.y1e_c01451{bottom:775.440000px;}
.y1d_c01451{bottom:777.600000px;}
.y1c_c01451{bottom:817.920000px;}
.y19_c01451{bottom:818.640000px;}
.y18_c01451{bottom:820.800000px;}
.y1a_c01451{bottom:821.520000px;}
.y1b_c01451{bottom:822.240000px;}
.y16_c01451{bottom:861.840000px;}
.y14_c01451{bottom:863.280000px;}
.y15_c01451{bottom:864.000000px;}
.y17_c01451{bottom:864.720000px;}
.y11_c01451{bottom:904.320000px;}
.y13_c01451{bottom:905.040000px;}
.yf_c01451{bottom:906.480000px;}
.y10_c01451{bottom:907.200000px;}
.y12_c01451{bottom:907.920000px;}
.ye_c01451{bottom:946.800000px;}
.yd_c01451{bottom:947.520000px;}
.yb_c01451{bottom:949.680000px;}
.yc_c01451{bottom:950.400000px;}
.ya_c01451{bottom:990.720000px;}
.y8_c01451{bottom:992.880000px;}
.y9_c01451{bottom:993.600000px;}
.y5_c01451{bottom:1033.200000px;}
.y3_c01451{bottom:1034.640000px;}
.y6_c01451{bottom:1035.360000px;}
.y2_c01451{bottom:1036.080000px;}
.y4_c01451{bottom:1036.800000px;}
.y7_c01451{bottom:1037.520000px;}
.y1_c01451{bottom:1106.640000px;}
.hf_c01451{height:10.366875px;}
.he_c01451{height:12.958594px;}
.h10_c01451{height:20.733750px;}
.h7_c01451{height:31.100625px;}
.hb_c01451{height:33.692344px;}
.h11_c01451{height:38.875781px;}
.ha_c01451{height:41.467500px;}
.h5_c01451{height:44.059219px;}
.h3_c01451{height:46.650937px;}
.h8_c01451{height:49.242656px;}
.h4_c01451{height:51.834375px;}
.h9_c01451{height:54.426094px;}
.hc_c01451{height:57.017812px;}
.hd_c01451{height:59.609531px;}
.h6_c01451{height:62.201250px;}
.h2_c01451{height:64.792969px;}
.h12_c01451{height:67.384687px;}
.h1_c01451{height:1161.750000px;}
.h0_c01451{height:1162.080000px;}
.w1_c01451{width:768.750000px;}
.w0_c01451{width:768.960000px;}
.x0_c01451{left:0.000000px;}
.x2_c01451{left:43.920000px;}
.x22_c01451{left:45.360000px;}
.x47_c01451{left:47.520000px;}
.x3_c01451{left:76.320000px;}
.x48_c01451{left:87.120000px;}
.x49_c01451{left:88.560000px;}
.x1f_c01451{left:99.360000px;}
.x23_c01451{left:110.160000px;}
.x31_c01451{left:120.240000px;}
.x18_c01451{left:130.320000px;}
.x38_c01451{left:141.840000px;}
.x27_c01451{left:151.200000px;}
.x2c_c01451{left:153.360000px;}
.xf_c01451{left:162.720000px;}
.x4_c01451{left:164.160000px;}
.x4b_c01451{left:174.960000px;}
.x4a_c01451{left:186.480000px;}
.x3d_c01451{left:195.840000px;}
.x5_c01451{left:197.280000px;}
.x24_c01451{left:207.360000px;}
.x28_c01451{left:218.880000px;}
.x20_c01451{left:228.240000px;}
.x32_c01451{left:239.760000px;}
.x39_c01451{left:250.560000px;}
.x6_c01451{left:261.360000px;}
.x19_c01451{left:272.160000px;}
.x29_c01451{left:282.960000px;}
.x40_c01451{left:284.400000px;}
.x7_c01451{left:293.760000px;}
.x10_c01451{left:302.400000px;}
.x1a_c01451{left:304.560000px;}
.x34_c01451{left:306.000000px;}
.x3a_c01451{left:316.800000px;}
.x8_c01451{left:325.440000px;}
.x1b_c01451{left:336.960000px;}
.x25_c01451{left:348.480000px;}
.x2d_c01451{left:357.840000px;}
.x37_c01451{left:359.280000px;}
.x11_c01451{left:369.360000px;}
.x33_c01451{left:380.160000px;}
.x2a_c01451{left:390.960000px;}
.x9_c01451{left:401.760000px;}
.x12_c01451{left:413.280000px;}
.x2e_c01451{left:423.360000px;}
.x13_c01451{left:434.160000px;}
.xa_c01451{left:444.960000px;}
.x2f_c01451{left:457.200000px;}
.x14_c01451{left:465.840000px;}
.x35_c01451{left:477.360000px;}
.xb_c01451{left:488.160000px;}
.x1c_c01451{left:498.960000px;}
.x26_c01451{left:509.040000px;}
.x3e_c01451{left:510.480000px;}
.x3c_c01451{left:520.560000px;}
.x15_c01451{left:531.360000px;}
.x2b_c01451{left:552.960000px;}
.xc_c01451{left:563.760000px;}
.x16_c01451{left:574.560000px;}
.x21_c01451{left:586.080000px;}
.x36_c01451{left:596.160000px;}
.x3f_c01451{left:605.520000px;}
.x3b_c01451{left:606.960000px;}
.x30_c01451{left:617.760000px;}
.x1d_c01451{left:628.560000px;}
.x45_c01451{left:630.000000px;}
.x41_c01451{left:638.640000px;}
.x1e_c01451{left:651.600000px;}
.xd_c01451{left:661.680000px;}
.x4c_c01451{left:663.120000px;}
.x17_c01451{left:672.480000px;}
.x1_c01451{left:673.920000px;}
.xe_c01451{left:694.080000px;}
.x42_c01451{left:704.160000px;}
.x44_c01451{left:705.600000px;}
.x46_c01451{left:725.760000px;}
.x43_c01451{left:736.560000px;}
@media print{
.v0_c01451{vertical-align:0.000000pt;}
.v1_c01451{vertical-align:7.680000pt;}
.ls0_c01451{letter-spacing:0.000000pt;}
.ws0_c01451{word-spacing:-3.599360pt;}
.ws3_c01451{word-spacing:0.000000pt;}
.ws2_c01451{word-spacing:10.509742pt;}
.ws1_c01451{word-spacing:15.445944pt;}
.fsd_c01451{font-size:10.240000pt;}
.fsc_c01451{font-size:12.800000pt;}
.fse_c01451{font-size:20.480000pt;}
.fs5_c01451{font-size:30.720000pt;}
.fs9_c01451{font-size:33.280000pt;}
.fsf_c01451{font-size:38.400000pt;}
.fs8_c01451{font-size:40.960000pt;}
.fs3_c01451{font-size:43.520000pt;}
.fs1_c01451{font-size:46.080000pt;}
.fs6_c01451{font-size:48.640000pt;}
.fs2_c01451{font-size:51.200000pt;}
.fs7_c01451{font-size:53.760000pt;}
.fsa_c01451{font-size:56.320000pt;}
.fsb_c01451{font-size:58.880000pt;}
.fs4_c01451{font-size:61.440000pt;}
.fs0_c01451{font-size:64.000000pt;}
.fs10_c01451{font-size:66.560000pt;}
.y0_c01451{bottom:0.000000pt;}
.y6b_c01451{bottom:46.720000pt;}
.y6a_c01451{bottom:50.560000pt;}
.y69_c01451{bottom:51.200000pt;}
.y71_c01451{bottom:51.840000pt;}
.y6f_c01451{bottom:53.760000pt;}
.y70_c01451{bottom:54.400000pt;}
.y68_c01451{bottom:85.120000pt;}
.y67_c01451{bottom:88.960000pt;}
.y6e_c01451{bottom:89.600000pt;}
.y6d_c01451{bottom:90.240000pt;}
.y6c_c01451{bottom:91.520000pt;}
.y65_c01451{bottom:124.160000pt;}
.y66_c01451{bottom:127.360000pt;}
.y64_c01451{bottom:128.000000pt;}
.y63_c01451{bottom:172.800000pt;}
.y62_c01451{bottom:173.440000pt;}
.y61_c01451{bottom:174.080000pt;}
.y58_c01451{bottom:175.360000pt;}
.y57_c01451{bottom:176.640000pt;}
.y60_c01451{bottom:209.280000pt;}
.y5f_c01451{bottom:212.480000pt;}
.y55_c01451{bottom:213.120000pt;}
.y56_c01451{bottom:215.040000pt;}
.y54_c01451{bottom:215.680000pt;}
.y5e_c01451{bottom:247.680000pt;}
.y5d_c01451{bottom:248.960000pt;}
.y5c_c01451{bottom:250.240000pt;}
.y53_c01451{bottom:250.880000pt;}
.y52_c01451{bottom:253.440000pt;}
.y5a_c01451{bottom:286.080000pt;}
.y5b_c01451{bottom:286.720000pt;}
.y4f_c01451{bottom:288.640000pt;}
.y51_c01451{bottom:289.280000pt;}
.y50_c01451{bottom:290.560000pt;}
.y59_c01451{bottom:324.480000pt;}
.y4d_c01451{bottom:327.040000pt;}
.y4e_c01451{bottom:327.680000pt;}
.y48_c01451{bottom:363.520000pt;}
.y49_c01451{bottom:366.080000pt;}
.y47_c01451{bottom:366.720000pt;}
.y4a_c01451{bottom:367.360000pt;}
.y4b_c01451{bottom:368.000000pt;}
.y4c_c01451{bottom:368.640000pt;}
.y45_c01451{bottom:402.560000pt;}
.y44_c01451{bottom:403.840000pt;}
.y43_c01451{bottom:405.120000pt;}
.y46_c01451{bottom:405.760000pt;}
.y3a_c01451{bottom:451.200000pt;}
.y37_c01451{bottom:451.840000pt;}
.y40_c01451{bottom:452.480000pt;}
.y38_c01451{bottom:453.120000pt;}
.y41_c01451{bottom:453.760000pt;}
.y39_c01451{bottom:455.680000pt;}
.y42_c01451{bottom:456.960000pt;}
.y36_c01451{bottom:479.360000pt;}
.y3f_c01451{bottom:480.000000pt;}
.y33_c01451{bottom:480.640000pt;}
.y34_c01451{bottom:481.280000pt;}
.y3b_c01451{bottom:481.920000pt;}
.y3d_c01451{bottom:483.200000pt;}
.y35_c01451{bottom:483.840000pt;}
.y3c_c01451{bottom:484.480000pt;}
.y3e_c01451{bottom:485.760000pt;}
.y2f_c01451{bottom:517.120000pt;}
.y30_c01451{bottom:517.760000pt;}
.y31_c01451{bottom:519.680000pt;}
.y32_c01451{bottom:520.320000pt;}
.y2e_c01451{bottom:556.160000pt;}
.y2c_c01451{bottom:556.800000pt;}
.y2b_c01451{bottom:557.440000pt;}
.y2a_c01451{bottom:558.080000pt;}
.y2d_c01451{bottom:558.720000pt;}
.y28_c01451{bottom:603.520000pt;}
.y27_c01451{bottom:604.160000pt;}
.y24_c01451{bottom:604.800000pt;}
.y25_c01451{bottom:605.440000pt;}
.y26_c01451{bottom:606.080000pt;}
.y29_c01451{bottom:606.720000pt;}
.y23_c01451{bottom:641.280000pt;}
.y22_c01451{bottom:641.920000pt;}
.y21_c01451{bottom:643.200000pt;}
.y1f_c01451{bottom:643.840000pt;}
.y20_c01451{bottom:644.480000pt;}
.y1e_c01451{bottom:689.280000pt;}
.y1d_c01451{bottom:691.200000pt;}
.y1c_c01451{bottom:727.040000pt;}
.y19_c01451{bottom:727.680000pt;}
.y18_c01451{bottom:729.600000pt;}
.y1a_c01451{bottom:730.240000pt;}
.y1b_c01451{bottom:730.880000pt;}
.y16_c01451{bottom:766.080000pt;}
.y14_c01451{bottom:767.360000pt;}
.y15_c01451{bottom:768.000000pt;}
.y17_c01451{bottom:768.640000pt;}
.y11_c01451{bottom:803.840000pt;}
.y13_c01451{bottom:804.480000pt;}
.yf_c01451{bottom:805.760000pt;}
.y10_c01451{bottom:806.400000pt;}
.y12_c01451{bottom:807.040000pt;}
.ye_c01451{bottom:841.600000pt;}
.yd_c01451{bottom:842.240000pt;}
.yb_c01451{bottom:844.160000pt;}
.yc_c01451{bottom:844.800000pt;}
.ya_c01451{bottom:880.640000pt;}
.y8_c01451{bottom:882.560000pt;}
.y9_c01451{bottom:883.200000pt;}
.y5_c01451{bottom:918.400000pt;}
.y3_c01451{bottom:919.680000pt;}
.y6_c01451{bottom:920.320000pt;}
.y2_c01451{bottom:920.960000pt;}
.y4_c01451{bottom:921.600000pt;}
.y7_c01451{bottom:922.240000pt;}
.y1_c01451{bottom:983.680000pt;}
.hf_c01451{height:9.215000pt;}
.he_c01451{height:11.518750pt;}
.h10_c01451{height:18.430000pt;}
.h7_c01451{height:27.645000pt;}
.hb_c01451{height:29.948750pt;}
.h11_c01451{height:34.556250pt;}
.ha_c01451{height:36.860000pt;}
.h5_c01451{height:39.163750pt;}
.h3_c01451{height:41.467500pt;}
.h8_c01451{height:43.771250pt;}
.h4_c01451{height:46.075000pt;}
.h9_c01451{height:48.378750pt;}
.hc_c01451{height:50.682500pt;}
.hd_c01451{height:52.986250pt;}
.h6_c01451{height:55.290000pt;}
.h2_c01451{height:57.593750pt;}
.h12_c01451{height:59.897500pt;}
.h1_c01451{height:1032.666667pt;}
.h0_c01451{height:1032.960000pt;}
.w1_c01451{width:683.333333pt;}
.w0_c01451{width:683.520000pt;}
.x0_c01451{left:0.000000pt;}
.x2_c01451{left:39.040000pt;}
.x22_c01451{left:40.320000pt;}
.x47_c01451{left:42.240000pt;}
.x3_c01451{left:67.840000pt;}
.x48_c01451{left:77.440000pt;}
.x49_c01451{left:78.720000pt;}
.x1f_c01451{left:88.320000pt;}
.x23_c01451{left:97.920000pt;}
.x31_c01451{left:106.880000pt;}
.x18_c01451{left:115.840000pt;}
.x38_c01451{left:126.080000pt;}
.x27_c01451{left:134.400000pt;}
.x2c_c01451{left:136.320000pt;}
.xf_c01451{left:144.640000pt;}
.x4_c01451{left:145.920000pt;}
.x4b_c01451{left:155.520000pt;}
.x4a_c01451{left:165.760000pt;}
.x3d_c01451{left:174.080000pt;}
.x5_c01451{left:175.360000pt;}
.x24_c01451{left:184.320000pt;}
.x28_c01451{left:194.560000pt;}
.x20_c01451{left:202.880000pt;}
.x32_c01451{left:213.120000pt;}
.x39_c01451{left:222.720000pt;}
.x6_c01451{left:232.320000pt;}
.x19_c01451{left:241.920000pt;}
.x29_c01451{left:251.520000pt;}
.x40_c01451{left:252.800000pt;}
.x7_c01451{left:261.120000pt;}
.x10_c01451{left:268.800000pt;}
.x1a_c01451{left:270.720000pt;}
.x34_c01451{left:272.000000pt;}
.x3a_c01451{left:281.600000pt;}
.x8_c01451{left:289.280000pt;}
.x1b_c01451{left:299.520000pt;}
.x25_c01451{left:309.760000pt;}
.x2d_c01451{left:318.080000pt;}
.x37_c01451{left:319.360000pt;}
.x11_c01451{left:328.320000pt;}
.x33_c01451{left:337.920000pt;}
.x2a_c01451{left:347.520000pt;}
.x9_c01451{left:357.120000pt;}
.x12_c01451{left:367.360000pt;}
.x2e_c01451{left:376.320000pt;}
.x13_c01451{left:385.920000pt;}
.xa_c01451{left:395.520000pt;}
.x2f_c01451{left:406.400000pt;}
.x14_c01451{left:414.080000pt;}
.x35_c01451{left:424.320000pt;}
.xb_c01451{left:433.920000pt;}
.x1c_c01451{left:443.520000pt;}
.x26_c01451{left:452.480000pt;}
.x3e_c01451{left:453.760000pt;}
.x3c_c01451{left:462.720000pt;}
.x15_c01451{left:472.320000pt;}
.x2b_c01451{left:491.520000pt;}
.xc_c01451{left:501.120000pt;}
.x16_c01451{left:510.720000pt;}
.x21_c01451{left:520.960000pt;}
.x36_c01451{left:529.920000pt;}
.x3f_c01451{left:538.240000pt;}
.x3b_c01451{left:539.520000pt;}
.x30_c01451{left:549.120000pt;}
.x1d_c01451{left:558.720000pt;}
.x45_c01451{left:560.000000pt;}
.x41_c01451{left:567.680000pt;}
.x1e_c01451{left:579.200000pt;}
.xd_c01451{left:588.160000pt;}
.x4c_c01451{left:589.440000pt;}
.x17_c01451{left:597.760000pt;}
.x1_c01451{left:599.040000pt;}
.xe_c01451{left:616.960000pt;}
.x42_c01451{left:625.920000pt;}
.x44_c01451{left:627.200000pt;}
.x46_c01451{left:645.120000pt;}
.x43_c01451{left:654.720000pt;}
}





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

.ir_c01452:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01452{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01452;src:url('chunks/assets/font_a5041dba1fd92ad556d668df.woff2')format("woff");}.ff1_c01452{font-family:ff1_c01452;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m47_c01452{transform:matrix(0.188800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188800,0.000000,0.000000,0.250000,0,0);}
.m43_c01452{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.ma_c01452{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);}
.m27_c01452{transform:matrix(0.244350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244350,0.000000,0.000000,0.250000,0,0);}
.m37_c01452{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m45_c01452{transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);}
.m31_c01452{transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);}
.m2b_c01452{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_c01452{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);}
.m42_c01452{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);}
.m2e_c01452{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);}
.m41_c01452{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_c01452{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m23_c01452{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);}
.m48_c01452{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m8_c01452{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);}
.m36_c01452{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01452{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);}
.m29_c01452{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);}
.m2f_c01452{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m6_c01452{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m33_c01452{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01452{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m21_c01452{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m38_c01452{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m32_c01452{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m15_c01452{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01452{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m18_c01452{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m34_c01452{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m25_c01452{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01452{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m0_c01452{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m35_c01452{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.me_c01452{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);}
.m3c_c01452{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);}
.m4a_c01452{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);}
.m3b_c01452{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m13_c01452{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m22_c01452{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_c01452{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);}
.m3d_c01452{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m28_c01452{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m19_c01452{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);}
.m3_c01452{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);}
.m2d_c01452{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);}
.m3e_c01452{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);}
.m3a_c01452{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);}
.m49_c01452{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);}
.m1e_c01452{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01452{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.mf_c01452{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m30_c01452{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01452{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);}
.m44_c01452{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01452{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m40_c01452{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m7_c01452{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m20_c01452{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m12_c01452{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m1_c01452{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);}
.m14_c01452{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m2_c01452{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m17_c01452{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m9_c01452{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);}
.m1d_c01452{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_c01452{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m24_c01452{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m5_c01452{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);}
.mc_c01452{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m26_c01452{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);}
.m3f_c01452{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m10_c01452{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m11_c01452{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m46_c01452{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m39_c01452{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.v1_c01452{vertical-align:-2.880000px;}
.v0_c01452{vertical-align:0.000000px;}
.ls1_c01452{letter-spacing:0.000000px;}
.ls0_c01452{letter-spacing:37.638960px;}
.sc__c01452{text-shadow:none;}
.sc0_c01452{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01452{-webkit-text-stroke:0px transparent;}
.sc0_c01452{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01452{word-spacing:0.000000px;}
.ws0_c01452{word-spacing:43.848000px;}
.fc0_c01452{color:transparent;}
.fs9_c01452{font-size:34.560000px;}
.fse_c01452{font-size:37.440000px;}
.fsb_c01452{font-size:46.080000px;}
.fs5_c01452{font-size:48.960000px;}
.fs2_c01452{font-size:51.840000px;}
.fs4_c01452{font-size:54.720000px;}
.fs1_c01452{font-size:57.600000px;}
.fs7_c01452{font-size:60.480000px;}
.fs8_c01452{font-size:63.360000px;}
.fsc_c01452{font-size:66.240000px;}
.fsa_c01452{font-size:69.120000px;}
.fs6_c01452{font-size:72.000000px;}
.fs3_c01452{font-size:74.880000px;}
.fs0_c01452{font-size:77.760000px;}
.fsd_c01452{font-size:103.680000px;}
.y0_c01452{bottom:0.000000px;}
.y6e_c01452{bottom:34.560000px;}
.y6f_c01452{bottom:35.280000px;}
.y71_c01452{bottom:38.160000px;}
.y6d_c01452{bottom:38.880000px;}
.y6c_c01452{bottom:78.480000px;}
.y6b_c01452{bottom:81.360000px;}
.y70_c01452{bottom:82.800000px;}
.y65_c01452{bottom:123.840000px;}
.y64_c01452{bottom:124.560000px;}
.y6a_c01452{bottom:126.720000px;}
.y63_c01452{bottom:158.400000px;}
.y5f_c01452{bottom:164.160000px;}
.y61_c01452{bottom:165.600000px;}
.y5e_c01452{bottom:167.760000px;}
.y60_c01452{bottom:168.480000px;}
.y62_c01452{bottom:169.200000px;}
.y3d_c01452{bottom:207.360000px;}
.y69_c01452{bottom:210.240000px;}
.y68_c01452{bottom:210.960000px;}
.y67_c01452{bottom:211.680000px;}
.y3c_c01452{bottom:212.400000px;}
.y3b_c01452{bottom:251.280000px;}
.y66_c01452{bottom:254.160000px;}
.y3a_c01452{bottom:254.880000px;}
.y39_c01452{bottom:255.600000px;}
.y38_c01452{bottom:295.200000px;}
.y5d_c01452{bottom:295.920000px;}
.y5c_c01452{bottom:296.640000px;}
.y5b_c01452{bottom:298.080000px;}
.y37_c01452{bottom:299.520000px;}
.y35_c01452{bottom:338.400000px;}
.y5a_c01452{bottom:339.840000px;}
.y58_c01452{bottom:341.280000px;}
.y36_c01452{bottom:342.000000px;}
.y34_c01452{bottom:342.720000px;}
.y59_c01452{bottom:344.160000px;}
.y31_c01452{bottom:382.320000px;}
.y33_c01452{bottom:383.040000px;}
.y32_c01452{bottom:383.760000px;}
.y57_c01452{bottom:384.480000px;}
.y30_c01452{bottom:386.640000px;}
.y2d_c01452{bottom:425.520000px;}
.y2f_c01452{bottom:426.240000px;}
.y56_c01452{bottom:426.960000px;}
.y2e_c01452{bottom:427.680000px;}
.y2c_c01452{bottom:428.400000px;}
.y2b_c01452{bottom:468.720000px;}
.y54_c01452{bottom:470.880000px;}
.y55_c01452{bottom:471.600000px;}
.y2a_c01452{bottom:472.320000px;}
.y26_c01452{bottom:511.920000px;}
.y29_c01452{bottom:513.360000px;}
.y53_c01452{bottom:514.080000px;}
.y25_c01452{bottom:514.800000px;}
.y27_c01452{bottom:515.520000px;}
.y28_c01452{bottom:516.240000px;}
.y24_c01452{bottom:556.560000px;}
.y23_c01452{bottom:557.280000px;}
.y22_c01452{bottom:558.000000px;}
.y52_c01452{bottom:558.720000px;}
.y50_c01452{bottom:599.760000px;}
.y20_c01452{bottom:600.480000px;}
.y51_c01452{bottom:601.200000px;}
.y21_c01452{bottom:601.920000px;}
.y1f_c01452{bottom:642.960000px;}
.y1e_c01452{bottom:643.680000px;}
.y4f_c01452{bottom:644.400000px;}
.y1d_c01452{bottom:645.120000px;}
.y4d_c01452{bottom:685.440000px;}
.y1b_c01452{bottom:686.160000px;}
.y1c_c01452{bottom:686.880000px;}
.y4e_c01452{bottom:687.600000px;}
.y1a_c01452{bottom:689.040000px;}
.y4b_c01452{bottom:728.640000px;}
.y4a_c01452{bottom:729.360000px;}
.y19_c01452{bottom:730.080000px;}
.y4c_c01452{bottom:730.800000px;}
.y18_c01452{bottom:732.240000px;}
.y17_c01452{bottom:772.560000px;}
.y49_c01452{bottom:773.280000px;}
.y16_c01452{bottom:774.000000px;}
.y14_c01452{bottom:774.720000px;}
.y15_c01452{bottom:776.160000px;}
.y48_c01452{bottom:815.760000px;}
.y13_c01452{bottom:816.480000px;}
.y12_c01452{bottom:817.200000px;}
.y47_c01452{bottom:817.920000px;}
.y11_c01452{bottom:818.640000px;}
.yd_c01452{bottom:858.240000px;}
.y10_c01452{bottom:858.960000px;}
.y45_c01452{bottom:859.680000px;}
.y46_c01452{bottom:860.400000px;}
.yc_c01452{bottom:861.120000px;}
.yf_c01452{bottom:861.840000px;}
.ye_c01452{bottom:862.560000px;}
.yb_c01452{bottom:901.440000px;}
.y44_c01452{bottom:902.160000px;}
.ya_c01452{bottom:905.760000px;}
.y9_c01452{bottom:944.640000px;}
.y43_c01452{bottom:946.080000px;}
.y8_c01452{bottom:946.800000px;}
.y42_c01452{bottom:948.240000px;}
.y40_c01452{bottom:987.120000px;}
.y7_c01452{bottom:987.840000px;}
.y41_c01452{bottom:988.560000px;}
.y6_c01452{bottom:991.440000px;}
.y5_c01452{bottom:1031.040000px;}
.y3f_c01452{bottom:1031.760000px;}
.y2_c01452{bottom:1033.200000px;}
.y3e_c01452{bottom:1033.920000px;}
.y4_c01452{bottom:1034.640000px;}
.y3_c01452{bottom:1035.360000px;}
.y1_c01452{bottom:1103.760000px;}
.hb_c01452{height:31.100625px;}
.h11_c01452{height:33.692344px;}
.hd_c01452{height:41.467500px;}
.h7_c01452{height:44.059219px;}
.h4_c01452{height:46.650937px;}
.h6_c01452{height:49.242656px;}
.h3_c01452{height:51.834375px;}
.h9_c01452{height:54.426094px;}
.ha_c01452{height:57.017812px;}
.h10_c01452{height:59.321250px;}
.he_c01452{height:59.609531px;}
.hc_c01452{height:62.201250px;}
.h8_c01452{height:64.792969px;}
.h5_c01452{height:67.384687px;}
.h2_c01452{height:69.976406px;}
.hf_c01452{height:93.301875px;}
.h1_c01452{height:1161.750000px;}
.h0_c01452{height:1162.080000px;}
.w0_c01452{width:779.760000px;}
.w1_c01452{width:780.000000px;}
.x0_c01452{left:0.000000px;}
.x6_c01452{left:56.880000px;}
.x2_c01452{left:58.320000px;}
.x3_c01452{left:100.080000px;}
.xf_c01452{left:110.160000px;}
.xc_c01452{left:111.600000px;}
.x2f_c01452{left:153.360000px;}
.x7_c01452{left:185.760000px;}
.x4_c01452{left:187.920000px;}
.x10_c01452{left:196.560000px;}
.xd_c01452{left:198.000000px;}
.x15_c01452{left:208.800000px;}
.x5_c01452{left:230.400000px;}
.x2b_c01452{left:239.760000px;}
.x9_c01452{left:241.200000px;}
.x11_c01452{left:252.000000px;}
.xe_c01452{left:263.520000px;}
.x31_c01452{left:272.880000px;}
.x8_c01452{left:285.120000px;}
.x12_c01452{left:293.760000px;}
.x16_c01452{left:295.200000px;}
.x18_c01452{left:315.360000px;}
.x17_c01452{left:327.600000px;}
.x19_c01452{left:360.000000px;}
.xa_c01452{left:381.600000px;}
.x13_c01452{left:390.960000px;}
.x1a_c01452{left:403.200000px;}
.x2c_c01452{left:434.880000px;}
.xb_c01452{left:436.320000px;}
.x14_c01452{left:446.400000px;}
.x2d_c01452{left:478.080000px;}
.x2e_c01452{left:585.360000px;}
.x30_c01452{left:586.800000px;}
.x1f_c01452{left:588.960000px;}
.x28_c01452{left:607.680000px;}
.x1e_c01452{left:609.840000px;}
.x2a_c01452{left:640.800000px;}
.x21_c01452{left:642.240000px;}
.x1b_c01452{left:643.680000px;}
.x1_c01452{left:654.480000px;}
.x32_c01452{left:672.480000px;}
.x22_c01452{left:674.640000px;}
.x1c_c01452{left:676.080000px;}
.x29_c01452{left:684.720000px;}
.x24_c01452{left:706.320000px;}
.x23_c01452{left:707.760000px;}
.x27_c01452{left:714.960000px;}
.x25_c01452{left:716.400000px;}
.x1d_c01452{left:718.560000px;}
.x26_c01452{left:736.560000px;}
.x20_c01452{left:738.720000px;}
@media print{
.v1_c01452{vertical-align:-2.560000pt;}
.v0_c01452{vertical-align:0.000000pt;}
.ls1_c01452{letter-spacing:0.000000pt;}
.ls0_c01452{letter-spacing:33.456853pt;}
.ws1_c01452{word-spacing:0.000000pt;}
.ws0_c01452{word-spacing:38.976000pt;}
.fs9_c01452{font-size:30.720000pt;}
.fse_c01452{font-size:33.280000pt;}
.fsb_c01452{font-size:40.960000pt;}
.fs5_c01452{font-size:43.520000pt;}
.fs2_c01452{font-size:46.080000pt;}
.fs4_c01452{font-size:48.640000pt;}
.fs1_c01452{font-size:51.200000pt;}
.fs7_c01452{font-size:53.760000pt;}
.fs8_c01452{font-size:56.320000pt;}
.fsc_c01452{font-size:58.880000pt;}
.fsa_c01452{font-size:61.440000pt;}
.fs6_c01452{font-size:64.000000pt;}
.fs3_c01452{font-size:66.560000pt;}
.fs0_c01452{font-size:69.120000pt;}
.fsd_c01452{font-size:92.160000pt;}
.y0_c01452{bottom:0.000000pt;}
.y6e_c01452{bottom:30.720000pt;}
.y6f_c01452{bottom:31.360000pt;}
.y71_c01452{bottom:33.920000pt;}
.y6d_c01452{bottom:34.560000pt;}
.y6c_c01452{bottom:69.760000pt;}
.y6b_c01452{bottom:72.320000pt;}
.y70_c01452{bottom:73.600000pt;}
.y65_c01452{bottom:110.080000pt;}
.y64_c01452{bottom:110.720000pt;}
.y6a_c01452{bottom:112.640000pt;}
.y63_c01452{bottom:140.800000pt;}
.y5f_c01452{bottom:145.920000pt;}
.y61_c01452{bottom:147.200000pt;}
.y5e_c01452{bottom:149.120000pt;}
.y60_c01452{bottom:149.760000pt;}
.y62_c01452{bottom:150.400000pt;}
.y3d_c01452{bottom:184.320000pt;}
.y69_c01452{bottom:186.880000pt;}
.y68_c01452{bottom:187.520000pt;}
.y67_c01452{bottom:188.160000pt;}
.y3c_c01452{bottom:188.800000pt;}
.y3b_c01452{bottom:223.360000pt;}
.y66_c01452{bottom:225.920000pt;}
.y3a_c01452{bottom:226.560000pt;}
.y39_c01452{bottom:227.200000pt;}
.y38_c01452{bottom:262.400000pt;}
.y5d_c01452{bottom:263.040000pt;}
.y5c_c01452{bottom:263.680000pt;}
.y5b_c01452{bottom:264.960000pt;}
.y37_c01452{bottom:266.240000pt;}
.y35_c01452{bottom:300.800000pt;}
.y5a_c01452{bottom:302.080000pt;}
.y58_c01452{bottom:303.360000pt;}
.y36_c01452{bottom:304.000000pt;}
.y34_c01452{bottom:304.640000pt;}
.y59_c01452{bottom:305.920000pt;}
.y31_c01452{bottom:339.840000pt;}
.y33_c01452{bottom:340.480000pt;}
.y32_c01452{bottom:341.120000pt;}
.y57_c01452{bottom:341.760000pt;}
.y30_c01452{bottom:343.680000pt;}
.y2d_c01452{bottom:378.240000pt;}
.y2f_c01452{bottom:378.880000pt;}
.y56_c01452{bottom:379.520000pt;}
.y2e_c01452{bottom:380.160000pt;}
.y2c_c01452{bottom:380.800000pt;}
.y2b_c01452{bottom:416.640000pt;}
.y54_c01452{bottom:418.560000pt;}
.y55_c01452{bottom:419.200000pt;}
.y2a_c01452{bottom:419.840000pt;}
.y26_c01452{bottom:455.040000pt;}
.y29_c01452{bottom:456.320000pt;}
.y53_c01452{bottom:456.960000pt;}
.y25_c01452{bottom:457.600000pt;}
.y27_c01452{bottom:458.240000pt;}
.y28_c01452{bottom:458.880000pt;}
.y24_c01452{bottom:494.720000pt;}
.y23_c01452{bottom:495.360000pt;}
.y22_c01452{bottom:496.000000pt;}
.y52_c01452{bottom:496.640000pt;}
.y50_c01452{bottom:533.120000pt;}
.y20_c01452{bottom:533.760000pt;}
.y51_c01452{bottom:534.400000pt;}
.y21_c01452{bottom:535.040000pt;}
.y1f_c01452{bottom:571.520000pt;}
.y1e_c01452{bottom:572.160000pt;}
.y4f_c01452{bottom:572.800000pt;}
.y1d_c01452{bottom:573.440000pt;}
.y4d_c01452{bottom:609.280000pt;}
.y1b_c01452{bottom:609.920000pt;}
.y1c_c01452{bottom:610.560000pt;}
.y4e_c01452{bottom:611.200000pt;}
.y1a_c01452{bottom:612.480000pt;}
.y4b_c01452{bottom:647.680000pt;}
.y4a_c01452{bottom:648.320000pt;}
.y19_c01452{bottom:648.960000pt;}
.y4c_c01452{bottom:649.600000pt;}
.y18_c01452{bottom:650.880000pt;}
.y17_c01452{bottom:686.720000pt;}
.y49_c01452{bottom:687.360000pt;}
.y16_c01452{bottom:688.000000pt;}
.y14_c01452{bottom:688.640000pt;}
.y15_c01452{bottom:689.920000pt;}
.y48_c01452{bottom:725.120000pt;}
.y13_c01452{bottom:725.760000pt;}
.y12_c01452{bottom:726.400000pt;}
.y47_c01452{bottom:727.040000pt;}
.y11_c01452{bottom:727.680000pt;}
.yd_c01452{bottom:762.880000pt;}
.y10_c01452{bottom:763.520000pt;}
.y45_c01452{bottom:764.160000pt;}
.y46_c01452{bottom:764.800000pt;}
.yc_c01452{bottom:765.440000pt;}
.yf_c01452{bottom:766.080000pt;}
.ye_c01452{bottom:766.720000pt;}
.yb_c01452{bottom:801.280000pt;}
.y44_c01452{bottom:801.920000pt;}
.ya_c01452{bottom:805.120000pt;}
.y9_c01452{bottom:839.680000pt;}
.y43_c01452{bottom:840.960000pt;}
.y8_c01452{bottom:841.600000pt;}
.y42_c01452{bottom:842.880000pt;}
.y40_c01452{bottom:877.440000pt;}
.y7_c01452{bottom:878.080000pt;}
.y41_c01452{bottom:878.720000pt;}
.y6_c01452{bottom:881.280000pt;}
.y5_c01452{bottom:916.480000pt;}
.y3f_c01452{bottom:917.120000pt;}
.y2_c01452{bottom:918.400000pt;}
.y3e_c01452{bottom:919.040000pt;}
.y4_c01452{bottom:919.680000pt;}
.y3_c01452{bottom:920.320000pt;}
.y1_c01452{bottom:981.120000pt;}
.hb_c01452{height:27.645000pt;}
.h11_c01452{height:29.948750pt;}
.hd_c01452{height:36.860000pt;}
.h7_c01452{height:39.163750pt;}
.h4_c01452{height:41.467500pt;}
.h6_c01452{height:43.771250pt;}
.h3_c01452{height:46.075000pt;}
.h9_c01452{height:48.378750pt;}
.ha_c01452{height:50.682500pt;}
.h10_c01452{height:52.730000pt;}
.he_c01452{height:52.986250pt;}
.hc_c01452{height:55.290000pt;}
.h8_c01452{height:57.593750pt;}
.h5_c01452{height:59.897500pt;}
.h2_c01452{height:62.201250pt;}
.hf_c01452{height:82.935000pt;}
.h1_c01452{height:1032.666667pt;}
.h0_c01452{height:1032.960000pt;}
.w0_c01452{width:693.120000pt;}
.w1_c01452{width:693.333333pt;}
.x0_c01452{left:0.000000pt;}
.x6_c01452{left:50.560000pt;}
.x2_c01452{left:51.840000pt;}
.x3_c01452{left:88.960000pt;}
.xf_c01452{left:97.920000pt;}
.xc_c01452{left:99.200000pt;}
.x2f_c01452{left:136.320000pt;}
.x7_c01452{left:165.120000pt;}
.x4_c01452{left:167.040000pt;}
.x10_c01452{left:174.720000pt;}
.xd_c01452{left:176.000000pt;}
.x15_c01452{left:185.600000pt;}
.x5_c01452{left:204.800000pt;}
.x2b_c01452{left:213.120000pt;}
.x9_c01452{left:214.400000pt;}
.x11_c01452{left:224.000000pt;}
.xe_c01452{left:234.240000pt;}
.x31_c01452{left:242.560000pt;}
.x8_c01452{left:253.440000pt;}
.x12_c01452{left:261.120000pt;}
.x16_c01452{left:262.400000pt;}
.x18_c01452{left:280.320000pt;}
.x17_c01452{left:291.200000pt;}
.x19_c01452{left:320.000000pt;}
.xa_c01452{left:339.200000pt;}
.x13_c01452{left:347.520000pt;}
.x1a_c01452{left:358.400000pt;}
.x2c_c01452{left:386.560000pt;}
.xb_c01452{left:387.840000pt;}
.x14_c01452{left:396.800000pt;}
.x2d_c01452{left:424.960000pt;}
.x2e_c01452{left:520.320000pt;}
.x30_c01452{left:521.600000pt;}
.x1f_c01452{left:523.520000pt;}
.x28_c01452{left:540.160000pt;}
.x1e_c01452{left:542.080000pt;}
.x2a_c01452{left:569.600000pt;}
.x21_c01452{left:570.880000pt;}
.x1b_c01452{left:572.160000pt;}
.x1_c01452{left:581.760000pt;}
.x32_c01452{left:597.760000pt;}
.x22_c01452{left:599.680000pt;}
.x1c_c01452{left:600.960000pt;}
.x29_c01452{left:608.640000pt;}
.x24_c01452{left:627.840000pt;}
.x23_c01452{left:629.120000pt;}
.x27_c01452{left:635.520000pt;}
.x25_c01452{left:636.800000pt;}
.x1d_c01452{left:638.720000pt;}
.x26_c01452{left:654.720000pt;}
.x20_c01452{left:656.640000pt;}
}





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

.ir_c01453:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01453{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01453;src:url('chunks/assets/font_29d32e172c17799f641fbcba.woff2')format("woff");}.ff1_c01453{font-family:ff1_c01453;line-height:1.109863;font-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_c01453{transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);}
.m22_c01453{transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);}
.m6_c01453{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m25_c01453{transform:matrix(0.235600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235600,0.000000,0.000000,0.250000,0,0);}
.m2_c01453{transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);}
.m32_c01453{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m39_c01453{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_c01453{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);}
.m26_c01453{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_c01453{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01453{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_c01453{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);}
.m1e_c01453{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01453{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_c01453{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m13_c01453{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mb_c01453{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m3_c01453{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01453{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m11_c01453{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m10_c01453{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m5_c01453{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01453{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m43_c01453{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m17_c01453{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m29_c01453{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m37_c01453{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m34_c01453{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m4_c01453{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01453{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m49_c01453{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);}
.m3e_c01453{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m19_c01453{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.ma_c01453{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.mc_c01453{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);}
.m45_c01453{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m0_c01453{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);}
.m40_c01453{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);}
.m3b_c01453{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01453{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);}
.m47_c01453{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);}
.m31_c01453{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);}
.m3a_c01453{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);}
.m3d_c01453{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01453{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);}
.m7_c01453{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);}
.m28_c01453{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01453{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m1_c01453{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);}
.m46_c01453{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m12_c01453{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m18_c01453{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01453{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m35_c01453{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m21_c01453{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01453{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m4a_c01453{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m23_c01453{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);}
.me_c01453{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01453{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m38_c01453{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);}
.m9_c01453{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);}
.m42_c01453{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m36_c01453{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);}
.m15_c01453{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m41_c01453{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01453{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);}
.m2a_c01453{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m14_c01453{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);}
.m27_c01453{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m30_c01453{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m44_c01453{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);}
.m20_c01453{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);}
.m48_c01453{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m33_c01453{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.v1_c01453{vertical-align:-2.880000px;}
.v0_c01453{vertical-align:0.000000px;}
.v2_c01453{vertical-align:5.760000px;}
.ls0_c01453{letter-spacing:0.000000px;}
.sc__c01453{text-shadow:none;}
.sc0_c01453{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01453{-webkit-text-stroke:0px transparent;}
.sc0_c01453{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01453{word-spacing:0.000000px;}
.ws0_c01453{word-spacing:11.856000px;}
.ws1_c01453{word-spacing:56.301600px;}
.fc0_c01453{color:transparent;}
.fsc_c01453{font-size:34.560000px;}
.fsd_c01453{font-size:40.320000px;}
.fs5_c01453{font-size:46.080000px;}
.fs9_c01453{font-size:48.960000px;}
.fs8_c01453{font-size:51.840000px;}
.fs7_c01453{font-size:54.720000px;}
.fs4_c01453{font-size:57.600000px;}
.fs1_c01453{font-size:60.480000px;}
.fsa_c01453{font-size:63.360000px;}
.fsb_c01453{font-size:66.240000px;}
.fs6_c01453{font-size:69.120000px;}
.fs3_c01453{font-size:72.000000px;}
.fs2_c01453{font-size:74.880000px;}
.fs0_c01453{font-size:77.760000px;}
.y0_c01453{bottom:0.000000px;}
.y63_c01453{bottom:82.080000px;}
.y64_c01453{bottom:82.800000px;}
.y66_c01453{bottom:83.520000px;}
.y65_c01453{bottom:84.240000px;}
.y62_c01453{bottom:86.400000px;}
.y60_c01453{bottom:126.000000px;}
.y5f_c01453{bottom:128.160000px;}
.y61_c01453{bottom:129.600000px;}
.y5b_c01453{bottom:169.200000px;}
.y5e_c01453{bottom:171.360000px;}
.y5a_c01453{bottom:172.800000px;}
.y5c_c01453{bottom:173.520000px;}
.y5d_c01453{bottom:174.240000px;}
.y56_c01453{bottom:213.120000px;}
.y57_c01453{bottom:213.840000px;}
.y55_c01453{bottom:215.280000px;}
.y59_c01453{bottom:216.000000px;}
.y58_c01453{bottom:216.720000px;}
.y51_c01453{bottom:257.040000px;}
.y54_c01453{bottom:257.760000px;}
.y50_c01453{bottom:258.480000px;}
.y53_c01453{bottom:259.200000px;}
.y52_c01453{bottom:259.920000px;}
.y4c_c01453{bottom:299.520000px;}
.y4e_c01453{bottom:300.240000px;}
.y4b_c01453{bottom:301.680000px;}
.y4f_c01453{bottom:302.400000px;}
.y4d_c01453{bottom:303.120000px;}
.y4a_c01453{bottom:342.720000px;}
.y47_c01453{bottom:343.440000px;}
.y49_c01453{bottom:344.160000px;}
.y45_c01453{bottom:344.880000px;}
.y48_c01453{bottom:345.600000px;}
.y46_c01453{bottom:346.320000px;}
.y44_c01453{bottom:387.360000px;}
.y42_c01453{bottom:388.080000px;}
.y43_c01453{bottom:388.800000px;}
.y41_c01453{bottom:429.120000px;}
.y3e_c01453{bottom:430.560000px;}
.y3d_c01453{bottom:431.280000px;}
.y3f_c01453{bottom:432.000000px;}
.y40_c01453{bottom:432.720000px;}
.y39_c01453{bottom:471.600000px;}
.y3a_c01453{bottom:473.760000px;}
.y3c_c01453{bottom:475.200000px;}
.y38_c01453{bottom:475.920000px;}
.y3b_c01453{bottom:476.640000px;}
.y36_c01453{bottom:516.960000px;}
.y35_c01453{bottom:517.680000px;}
.y37_c01453{bottom:519.120000px;}
.y34_c01453{bottom:559.440000px;}
.y33_c01453{bottom:560.160000px;}
.y31_c01453{bottom:561.600000px;}
.y32_c01453{bottom:562.320000px;}
.y2e_c01453{bottom:601.920000px;}
.y2d_c01453{bottom:603.360000px;}
.y2f_c01453{bottom:604.080000px;}
.y2c_c01453{bottom:604.800000px;}
.y30_c01453{bottom:605.520000px;}
.y29_c01453{bottom:645.120000px;}
.y2a_c01453{bottom:646.560000px;}
.y2b_c01453{bottom:647.280000px;}
.y28_c01453{bottom:648.720000px;}
.y25_c01453{bottom:689.040000px;}
.y27_c01453{bottom:689.760000px;}
.y26_c01453{bottom:690.480000px;}
.y24_c01453{bottom:691.200000px;}
.y21_c01453{bottom:732.240000px;}
.y23_c01453{bottom:732.960000px;}
.y22_c01453{bottom:733.680000px;}
.y20_c01453{bottom:734.400000px;}
.y1c_c01453{bottom:774.720000px;}
.y1e_c01453{bottom:775.440000px;}
.y1d_c01453{bottom:776.160000px;}
.y1f_c01453{bottom:776.880000px;}
.y1b_c01453{bottom:777.600000px;}
.y19_c01453{bottom:817.920000px;}
.y18_c01453{bottom:820.080000px;}
.y1a_c01453{bottom:820.800000px;}
.y16_c01453{bottom:860.400000px;}
.y17_c01453{bottom:861.120000px;}
.y14_c01453{bottom:863.280000px;}
.y15_c01453{bottom:865.440000px;}
.y10_c01453{bottom:904.320000px;}
.y13_c01453{bottom:905.040000px;}
.yf_c01453{bottom:906.480000px;}
.y12_c01453{bottom:907.200000px;}
.y11_c01453{bottom:907.920000px;}
.yc_c01453{bottom:947.520000px;}
.yd_c01453{bottom:948.240000px;}
.ye_c01453{bottom:948.960000px;}
.yb_c01453{bottom:951.120000px;}
.y7_c01453{bottom:990.720000px;}
.y9_c01453{bottom:992.160000px;}
.y8_c01453{bottom:992.880000px;}
.ya_c01453{bottom:993.600000px;}
.y6_c01453{bottom:994.320000px;}
.y5_c01453{bottom:1033.200000px;}
.y4_c01453{bottom:1033.920000px;}
.y3_c01453{bottom:1034.640000px;}
.y2_c01453{bottom:1036.800000px;}
.y1_c01453{bottom:1108.080000px;}
.he_c01453{height:31.100625px;}
.hf_c01453{height:36.284062px;}
.h7_c01453{height:41.467500px;}
.hb_c01453{height:44.059219px;}
.ha_c01453{height:46.650937px;}
.h9_c01453{height:49.242656px;}
.h6_c01453{height:51.834375px;}
.h3_c01453{height:54.426094px;}
.h10_c01453{height:55.002656px;}
.hc_c01453{height:57.017812px;}
.hd_c01453{height:59.609531px;}
.h8_c01453{height:62.201250px;}
.h5_c01453{height:64.792969px;}
.h4_c01453{height:67.384687px;}
.h2_c01453{height:69.976406px;}
.h0_c01453{height:1160.640000px;}
.h1_c01453{height:1161.000000px;}
.w0_c01453{width:797.040000px;}
.w1_c01453{width:797.250000px;}
.x0_c01453{left:0.000000px;}
.x20_c01453{left:59.040000px;}
.x2_c01453{left:60.480000px;}
.x8_c01453{left:61.920000px;}
.x13_c01453{left:113.040000px;}
.x3_c01453{left:115.200000px;}
.x11_c01453{left:190.080000px;}
.x1a_c01453{left:200.160000px;}
.x15_c01453{left:201.600000px;}
.x4_c01453{left:211.680000px;}
.x2e_c01453{left:244.080000px;}
.x2b_c01453{left:264.240000px;}
.x1b_c01453{left:265.680000px;}
.x9_c01453{left:267.840000px;}
.x2c_c01453{left:276.480000px;}
.x26_c01453{left:307.440000px;}
.x23_c01453{left:308.880000px;}
.xd_c01453{left:330.480000px;}
.xa_c01453{left:352.800000px;}
.x24_c01453{left:362.880000px;}
.x28_c01453{left:371.520000px;}
.x1c_c01453{left:383.040000px;}
.xe_c01453{left:384.480000px;}
.x25_c01453{left:404.640000px;}
.x29_c01453{left:416.160000px;}
.x1d_c01453{left:427.680000px;}
.x21_c01453{left:578.880000px;}
.x16_c01453{left:589.680000px;}
.xc_c01453{left:591.840000px;}
.x2d_c01453{left:609.120000px;}
.x5_c01453{left:612.000000px;}
.xb_c01453{left:613.440000px;}
.x22_c01453{left:643.680000px;}
.x17_c01453{left:645.120000px;}
.xf_c01453{left:646.560000px;}
.x1_c01453{left:653.040000px;}
.x27_c01453{left:676.080000px;}
.x19_c01453{left:677.520000px;}
.x10_c01453{left:678.960000px;}
.x6_c01453{left:689.760000px;}
.x1f_c01453{left:709.920000px;}
.x1e_c01453{left:720.000000px;}
.x14_c01453{left:721.440000px;}
.x7_c01453{left:722.880000px;}
.x2a_c01453{left:740.160000px;}
.x18_c01453{left:741.600000px;}
.x12_c01453{left:743.040000px;}
@media print{
.v1_c01453{vertical-align:-2.560000pt;}
.v0_c01453{vertical-align:0.000000pt;}
.v2_c01453{vertical-align:5.120000pt;}
.ls0_c01453{letter-spacing:0.000000pt;}
.ws2_c01453{word-spacing:0.000000pt;}
.ws0_c01453{word-spacing:10.538667pt;}
.ws1_c01453{word-spacing:50.045867pt;}
.fsc_c01453{font-size:30.720000pt;}
.fsd_c01453{font-size:35.840000pt;}
.fs5_c01453{font-size:40.960000pt;}
.fs9_c01453{font-size:43.520000pt;}
.fs8_c01453{font-size:46.080000pt;}
.fs7_c01453{font-size:48.640000pt;}
.fs4_c01453{font-size:51.200000pt;}
.fs1_c01453{font-size:53.760000pt;}
.fsa_c01453{font-size:56.320000pt;}
.fsb_c01453{font-size:58.880000pt;}
.fs6_c01453{font-size:61.440000pt;}
.fs3_c01453{font-size:64.000000pt;}
.fs2_c01453{font-size:66.560000pt;}
.fs0_c01453{font-size:69.120000pt;}
.y0_c01453{bottom:0.000000pt;}
.y63_c01453{bottom:72.960000pt;}
.y64_c01453{bottom:73.600000pt;}
.y66_c01453{bottom:74.240000pt;}
.y65_c01453{bottom:74.880000pt;}
.y62_c01453{bottom:76.800000pt;}
.y60_c01453{bottom:112.000000pt;}
.y5f_c01453{bottom:113.920000pt;}
.y61_c01453{bottom:115.200000pt;}
.y5b_c01453{bottom:150.400000pt;}
.y5e_c01453{bottom:152.320000pt;}
.y5a_c01453{bottom:153.600000pt;}
.y5c_c01453{bottom:154.240000pt;}
.y5d_c01453{bottom:154.880000pt;}
.y56_c01453{bottom:189.440000pt;}
.y57_c01453{bottom:190.080000pt;}
.y55_c01453{bottom:191.360000pt;}
.y59_c01453{bottom:192.000000pt;}
.y58_c01453{bottom:192.640000pt;}
.y51_c01453{bottom:228.480000pt;}
.y54_c01453{bottom:229.120000pt;}
.y50_c01453{bottom:229.760000pt;}
.y53_c01453{bottom:230.400000pt;}
.y52_c01453{bottom:231.040000pt;}
.y4c_c01453{bottom:266.240000pt;}
.y4e_c01453{bottom:266.880000pt;}
.y4b_c01453{bottom:268.160000pt;}
.y4f_c01453{bottom:268.800000pt;}
.y4d_c01453{bottom:269.440000pt;}
.y4a_c01453{bottom:304.640000pt;}
.y47_c01453{bottom:305.280000pt;}
.y49_c01453{bottom:305.920000pt;}
.y45_c01453{bottom:306.560000pt;}
.y48_c01453{bottom:307.200000pt;}
.y46_c01453{bottom:307.840000pt;}
.y44_c01453{bottom:344.320000pt;}
.y42_c01453{bottom:344.960000pt;}
.y43_c01453{bottom:345.600000pt;}
.y41_c01453{bottom:381.440000pt;}
.y3e_c01453{bottom:382.720000pt;}
.y3d_c01453{bottom:383.360000pt;}
.y3f_c01453{bottom:384.000000pt;}
.y40_c01453{bottom:384.640000pt;}
.y39_c01453{bottom:419.200000pt;}
.y3a_c01453{bottom:421.120000pt;}
.y3c_c01453{bottom:422.400000pt;}
.y38_c01453{bottom:423.040000pt;}
.y3b_c01453{bottom:423.680000pt;}
.y36_c01453{bottom:459.520000pt;}
.y35_c01453{bottom:460.160000pt;}
.y37_c01453{bottom:461.440000pt;}
.y34_c01453{bottom:497.280000pt;}
.y33_c01453{bottom:497.920000pt;}
.y31_c01453{bottom:499.200000pt;}
.y32_c01453{bottom:499.840000pt;}
.y2e_c01453{bottom:535.040000pt;}
.y2d_c01453{bottom:536.320000pt;}
.y2f_c01453{bottom:536.960000pt;}
.y2c_c01453{bottom:537.600000pt;}
.y30_c01453{bottom:538.240000pt;}
.y29_c01453{bottom:573.440000pt;}
.y2a_c01453{bottom:574.720000pt;}
.y2b_c01453{bottom:575.360000pt;}
.y28_c01453{bottom:576.640000pt;}
.y25_c01453{bottom:612.480000pt;}
.y27_c01453{bottom:613.120000pt;}
.y26_c01453{bottom:613.760000pt;}
.y24_c01453{bottom:614.400000pt;}
.y21_c01453{bottom:650.880000pt;}
.y23_c01453{bottom:651.520000pt;}
.y22_c01453{bottom:652.160000pt;}
.y20_c01453{bottom:652.800000pt;}
.y1c_c01453{bottom:688.640000pt;}
.y1e_c01453{bottom:689.280000pt;}
.y1d_c01453{bottom:689.920000pt;}
.y1f_c01453{bottom:690.560000pt;}
.y1b_c01453{bottom:691.200000pt;}
.y19_c01453{bottom:727.040000pt;}
.y18_c01453{bottom:728.960000pt;}
.y1a_c01453{bottom:729.600000pt;}
.y16_c01453{bottom:764.800000pt;}
.y17_c01453{bottom:765.440000pt;}
.y14_c01453{bottom:767.360000pt;}
.y15_c01453{bottom:769.280000pt;}
.y10_c01453{bottom:803.840000pt;}
.y13_c01453{bottom:804.480000pt;}
.yf_c01453{bottom:805.760000pt;}
.y12_c01453{bottom:806.400000pt;}
.y11_c01453{bottom:807.040000pt;}
.yc_c01453{bottom:842.240000pt;}
.yd_c01453{bottom:842.880000pt;}
.ye_c01453{bottom:843.520000pt;}
.yb_c01453{bottom:845.440000pt;}
.y7_c01453{bottom:880.640000pt;}
.y9_c01453{bottom:881.920000pt;}
.y8_c01453{bottom:882.560000pt;}
.ya_c01453{bottom:883.200000pt;}
.y6_c01453{bottom:883.840000pt;}
.y5_c01453{bottom:918.400000pt;}
.y4_c01453{bottom:919.040000pt;}
.y3_c01453{bottom:919.680000pt;}
.y2_c01453{bottom:921.600000pt;}
.y1_c01453{bottom:984.960000pt;}
.he_c01453{height:27.645000pt;}
.hf_c01453{height:32.252500pt;}
.h7_c01453{height:36.860000pt;}
.hb_c01453{height:39.163750pt;}
.ha_c01453{height:41.467500pt;}
.h9_c01453{height:43.771250pt;}
.h6_c01453{height:46.075000pt;}
.h3_c01453{height:48.378750pt;}
.h10_c01453{height:48.891250pt;}
.hc_c01453{height:50.682500pt;}
.hd_c01453{height:52.986250pt;}
.h8_c01453{height:55.290000pt;}
.h5_c01453{height:57.593750pt;}
.h4_c01453{height:59.897500pt;}
.h2_c01453{height:62.201250pt;}
.h0_c01453{height:1031.680000pt;}
.h1_c01453{height:1032.000000pt;}
.w0_c01453{width:708.480000pt;}
.w1_c01453{width:708.666667pt;}
.x0_c01453{left:0.000000pt;}
.x20_c01453{left:52.480000pt;}
.x2_c01453{left:53.760000pt;}
.x8_c01453{left:55.040000pt;}
.x13_c01453{left:100.480000pt;}
.x3_c01453{left:102.400000pt;}
.x11_c01453{left:168.960000pt;}
.x1a_c01453{left:177.920000pt;}
.x15_c01453{left:179.200000pt;}
.x4_c01453{left:188.160000pt;}
.x2e_c01453{left:216.960000pt;}
.x2b_c01453{left:234.880000pt;}
.x1b_c01453{left:236.160000pt;}
.x9_c01453{left:238.080000pt;}
.x2c_c01453{left:245.760000pt;}
.x26_c01453{left:273.280000pt;}
.x23_c01453{left:274.560000pt;}
.xd_c01453{left:293.760000pt;}
.xa_c01453{left:313.600000pt;}
.x24_c01453{left:322.560000pt;}
.x28_c01453{left:330.240000pt;}
.x1c_c01453{left:340.480000pt;}
.xe_c01453{left:341.760000pt;}
.x25_c01453{left:359.680000pt;}
.x29_c01453{left:369.920000pt;}
.x1d_c01453{left:380.160000pt;}
.x21_c01453{left:514.560000pt;}
.x16_c01453{left:524.160000pt;}
.xc_c01453{left:526.080000pt;}
.x2d_c01453{left:541.440000pt;}
.x5_c01453{left:544.000000pt;}
.xb_c01453{left:545.280000pt;}
.x22_c01453{left:572.160000pt;}
.x17_c01453{left:573.440000pt;}
.xf_c01453{left:574.720000pt;}
.x1_c01453{left:580.480000pt;}
.x27_c01453{left:600.960000pt;}
.x19_c01453{left:602.240000pt;}
.x10_c01453{left:603.520000pt;}
.x6_c01453{left:613.120000pt;}
.x1f_c01453{left:631.040000pt;}
.x1e_c01453{left:640.000000pt;}
.x14_c01453{left:641.280000pt;}
.x7_c01453{left:642.560000pt;}
.x2a_c01453{left:657.920000pt;}
.x18_c01453{left:659.200000pt;}
.x12_c01453{left:660.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_c01454 {
    display:none;
  }
  .loading-indicator_c01454.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01454 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01454 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01454" -> "#page-container .classname_c01454")
 */
.pf_c01454 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01454 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01454.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01454 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01454 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01454 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01454 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01454 {overflow:visible;}
  }
}
.c_c01454 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01454 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01454:after { /* webkit #35443 */
  content: '';
}
.t_c01454:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01454 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01454 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01454 { /* info for Javascript */
  display:none;
}
.l_c01454 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01454 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01454 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01454:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01454{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01454;src:url('chunks/assets/font_c465e3c1a1edfc5c84ba5688.woff2')format("woff");}.ff1_c01454{font-family:ff1_c01454;line-height:1.109863;font-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_c01454{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);}
.m48_c01454{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m41_c01454{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);}
.m44_c01454{transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);}
.m1_c01454{transform:matrix(0.245975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245975,0.000000,0.000000,0.250000,0,0);}
.ma_c01454{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m34_c01454{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mf_c01454{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m12_c01454{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_c01454{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m6_c01454{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_c01454{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);}
.m3c_c01454{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);}
.m39_c01454{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m9_c01454{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m5_c01454{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m23_c01454{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m4_c01454{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m2_c01454{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01454{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m29_c01454{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m19_c01454{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m14_c01454{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.md_c01454{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01454{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m20_c01454{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m42_c01454{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01454{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m21_c01454{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m46_c01454{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m26_c01454{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m15_c01454{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01454{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m10_c01454{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m22_c01454{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m8_c01454{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);}
.m25_c01454{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);}
.m33_c01454{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01454{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01454{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);}
.m2b_c01454{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01454{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);}
.m28_c01454{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m45_c01454{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);}
.mc_c01454{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);}
.m3f_c01454{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);}
.m3_c01454{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);}
.m2f_c01454{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m16_c01454{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m35_c01454{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);}
.me_c01454{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m0_c01454{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m47_c01454{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01454{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01454{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m43_c01454{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m49_c01454{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);}
.m3b_c01454{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m31_c01454{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01454{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m30_c01454{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);}
.m38_c01454{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);}
.m13_c01454{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01454{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);}
.m7_c01454{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01454{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);}
.m11_c01454{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m18_c01454{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01454{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);}
.mb_c01454{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m36_c01454{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m24_c01454{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01454{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m32_c01454{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m37_c01454{transform:matrix(0.712500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.712500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.712500,0.000000,0.000000,0.250000,0,0);}
.m40_c01454{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.v1_c01454{vertical-align:-5.760000px;}
.v0_c01454{vertical-align:0.000000px;}
.v2_c01454{vertical-align:17.280000px;}
.ls1_c01454{letter-spacing:0.000000px;}
.ls0_c01454{letter-spacing:90.638400px;}
.sc__c01454{text-shadow:none;}
.sc0_c01454{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01454{-webkit-text-stroke:0px transparent;}
.sc0_c01454{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01454{word-spacing:0.000000px;}
.ws0_c01454{word-spacing:7.642313px;}
.ws1_c01454{word-spacing:1110.896640px;}
.fc0_c01454{color:transparent;}
.fsc_c01454{font-size:34.560000px;}
.fsa_c01454{font-size:40.320000px;}
.fs6_c01454{font-size:46.080000px;}
.fs9_c01454{font-size:48.960000px;}
.fs4_c01454{font-size:51.840000px;}
.fs8_c01454{font-size:54.720000px;}
.fs0_c01454{font-size:57.600000px;}
.fs3_c01454{font-size:60.480000px;}
.fsd_c01454{font-size:63.360000px;}
.fsb_c01454{font-size:66.240000px;}
.fs7_c01454{font-size:69.120000px;}
.fs2_c01454{font-size:72.000000px;}
.fs1_c01454{font-size:74.880000px;}
.fs5_c01454{font-size:77.760000px;}
.y0_c01454{bottom:0.000000px;}
.y6b_c01454{bottom:81.360000px;}
.y6a_c01454{bottom:83.520000px;}
.y6c_c01454{bottom:84.240000px;}
.y6d_c01454{bottom:84.960000px;}
.y66_c01454{bottom:124.560000px;}
.y65_c01454{bottom:126.000000px;}
.y67_c01454{bottom:127.440000px;}
.y68_c01454{bottom:129.600000px;}
.y69_c01454{bottom:130.320000px;}
.y62_c01454{bottom:168.480000px;}
.y61_c01454{bottom:170.640000px;}
.y63_c01454{bottom:171.360000px;}
.y64_c01454{bottom:172.080000px;}
.y5d_c01454{bottom:211.680000px;}
.y5c_c01454{bottom:213.120000px;}
.y5e_c01454{bottom:214.560000px;}
.y5f_c01454{bottom:215.280000px;}
.y60_c01454{bottom:216.000000px;}
.y56_c01454{bottom:253.440000px;}
.y57_c01454{bottom:254.160000px;}
.y55_c01454{bottom:256.320000px;}
.y59_c01454{bottom:257.760000px;}
.y5a_c01454{bottom:258.480000px;}
.y5b_c01454{bottom:259.200000px;}
.y58_c01454{bottom:259.920000px;}
.y51_c01454{bottom:298.080000px;}
.y4f_c01454{bottom:300.240000px;}
.y54_c01454{bottom:300.960000px;}
.y50_c01454{bottom:301.680000px;}
.y53_c01454{bottom:302.400000px;}
.y52_c01454{bottom:303.120000px;}
.y4b_c01454{bottom:341.280000px;}
.y4c_c01454{bottom:343.440000px;}
.y4d_c01454{bottom:344.160000px;}
.y4a_c01454{bottom:344.880000px;}
.y4e_c01454{bottom:346.320000px;}
.y48_c01454{bottom:384.480000px;}
.y47_c01454{bottom:387.360000px;}
.y49_c01454{bottom:388.800000px;}
.y45_c01454{bottom:429.120000px;}
.y44_c01454{bottom:432.000000px;}
.y46_c01454{bottom:432.720000px;}
.y42_c01454{bottom:481.680000px;}
.y43_c01454{bottom:482.400000px;}
.y39_c01454{bottom:483.840000px;}
.y37_c01454{bottom:484.560000px;}
.y38_c01454{bottom:485.280000px;}
.y41_c01454{bottom:526.320000px;}
.y40_c01454{bottom:527.040000px;}
.y3f_c01454{bottom:527.760000px;}
.y35_c01454{bottom:529.200000px;}
.y36_c01454{bottom:529.920000px;}
.y34_c01454{bottom:570.240000px;}
.y33_c01454{bottom:570.960000px;}
.y3e_c01454{bottom:572.400000px;}
.y3d_c01454{bottom:611.280000px;}
.y31_c01454{bottom:612.720000px;}
.y32_c01454{bottom:613.440000px;}
.y3c_c01454{bottom:614.880000px;}
.y30_c01454{bottom:615.600000px;}
.y3a_c01454{bottom:654.480000px;}
.y2f_c01454{bottom:655.920000px;}
.y2e_c01454{bottom:656.640000px;}
.y2c_c01454{bottom:657.360000px;}
.y3b_c01454{bottom:658.800000px;}
.y2d_c01454{bottom:659.520000px;}
.y1c_c01454{bottom:698.400000px;}
.y2b_c01454{bottom:699.840000px;}
.y1b_c01454{bottom:700.560000px;}
.y1d_c01454{bottom:702.000000px;}
.y2a_c01454{bottom:703.440000px;}
.y18_c01454{bottom:741.600000px;}
.y1a_c01454{bottom:742.320000px;}
.y17_c01454{bottom:743.040000px;}
.y29_c01454{bottom:743.760000px;}
.y19_c01454{bottom:745.200000px;}
.y16_c01454{bottom:785.520000px;}
.y15_c01454{bottom:786.240000px;}
.y12_c01454{bottom:817.200000px;}
.y11_c01454{bottom:818.640000px;}
.y13_c01454{bottom:819.360000px;}
.y28_c01454{bottom:820.080000px;}
.y14_c01454{bottom:820.800000px;}
.yf_c01454{bottom:860.400000px;}
.y10_c01454{bottom:861.840000px;}
.ye_c01454{bottom:862.560000px;}
.y27_c01454{bottom:863.280000px;}
.y9_c01454{bottom:900.720000px;}
.ya_c01454{bottom:902.880000px;}
.yd_c01454{bottom:904.320000px;}
.y25_c01454{bottom:905.760000px;}
.y26_c01454{bottom:906.480000px;}
.yc_c01454{bottom:907.200000px;}
.yb_c01454{bottom:907.920000px;}
.y7_c01454{bottom:946.800000px;}
.y6_c01454{bottom:948.240000px;}
.y24_c01454{bottom:950.400000px;}
.y8_c01454{bottom:951.120000px;}
.y5_c01454{bottom:990.000000px;}
.y21_c01454{bottom:990.720000px;}
.y4_c01454{bottom:991.440000px;}
.y22_c01454{bottom:992.160000px;}
.y23_c01454{bottom:994.320000px;}
.y2_c01454{bottom:1033.200000px;}
.y3_c01454{bottom:1033.920000px;}
.y1f_c01454{bottom:1034.640000px;}
.y1_c01454{bottom:1035.360000px;}
.y20_c01454{bottom:1036.800000px;}
.y1e_c01454{bottom:1107.360000px;}
.he_c01454{height:31.100625px;}
.hc_c01454{height:36.284062px;}
.h8_c01454{height:41.467500px;}
.hb_c01454{height:44.059219px;}
.h6_c01454{height:46.650937px;}
.ha_c01454{height:49.242656px;}
.h2_c01454{height:51.834375px;}
.h5_c01454{height:54.426094px;}
.hf_c01454{height:57.017812px;}
.hd_c01454{height:59.609531px;}
.h9_c01454{height:62.201250px;}
.h4_c01454{height:64.792969px;}
.h3_c01454{height:67.384687px;}
.h7_c01454{height:69.976406px;}
.h0_c01454{height:1159.920000px;}
.h1_c01454{height:1160.250000px;}
.w1_c01454{width:785.250000px;}
.w0_c01454{width:785.520000px;}
.x0_c01454{left:0.000000px;}
.x8_c01454{left:54.720000px;}
.x1_c01454{left:56.880000px;}
.x24_c01454{left:98.640000px;}
.x29_c01454{left:100.080000px;}
.x2_c01454{left:110.160000px;}
.x21_c01454{left:142.560000px;}
.x23_c01454{left:164.160000px;}
.x27_c01454{left:186.480000px;}
.xe_c01454{left:196.560000px;}
.x4_c01454{left:208.080000px;}
.x3_c01454{left:219.600000px;}
.x28_c01454{left:230.400000px;}
.x5_c01454{left:241.200000px;}
.xf_c01454{left:251.280000px;}
.x9_c01454{left:261.360000px;}
.x22_c01454{left:282.960000px;}
.xc_c01454{left:294.480000px;}
.x6_c01454{left:295.920000px;}
.xa_c01454{left:305.280000px;}
.xb_c01454{left:347.760000px;}
.x7_c01454{left:380.880000px;}
.xd_c01454{left:424.800000px;}
.x1f_c01454{left:476.640000px;}
.x1a_c01454{left:479.520000px;}
.x20_c01454{left:521.280000px;}
.x1b_c01454{left:586.080000px;}
.x11_c01454{left:587.520000px;}
.x16_c01454{left:607.680000px;}
.x25_c01454{left:631.440000px;}
.x1d_c01454{left:640.800000px;}
.x14_c01454{left:642.240000px;}
.x10_c01454{left:655.200000px;}
.x26_c01454{left:673.200000px;}
.x17_c01454{left:674.640000px;}
.x15_c01454{left:684.720000px;}
.x12_c01454{left:686.160000px;}
.x1e_c01454{left:715.680000px;}
.x18_c01454{left:717.120000px;}
.x13_c01454{left:718.560000px;}
.x1c_c01454{left:737.280000px;}
.x19_c01454{left:738.720000px;}
@media print{
.v1_c01454{vertical-align:-5.120000pt;}
.v0_c01454{vertical-align:0.000000pt;}
.v2_c01454{vertical-align:15.360000pt;}
.ls1_c01454{letter-spacing:0.000000pt;}
.ls0_c01454{letter-spacing:80.567467pt;}
.ws2_c01454{word-spacing:0.000000pt;}
.ws0_c01454{word-spacing:6.793167pt;}
.ws1_c01454{word-spacing:987.463680pt;}
.fsc_c01454{font-size:30.720000pt;}
.fsa_c01454{font-size:35.840000pt;}
.fs6_c01454{font-size:40.960000pt;}
.fs9_c01454{font-size:43.520000pt;}
.fs4_c01454{font-size:46.080000pt;}
.fs8_c01454{font-size:48.640000pt;}
.fs0_c01454{font-size:51.200000pt;}
.fs3_c01454{font-size:53.760000pt;}
.fsd_c01454{font-size:56.320000pt;}
.fsb_c01454{font-size:58.880000pt;}
.fs7_c01454{font-size:61.440000pt;}
.fs2_c01454{font-size:64.000000pt;}
.fs1_c01454{font-size:66.560000pt;}
.fs5_c01454{font-size:69.120000pt;}
.y0_c01454{bottom:0.000000pt;}
.y6b_c01454{bottom:72.320000pt;}
.y6a_c01454{bottom:74.240000pt;}
.y6c_c01454{bottom:74.880000pt;}
.y6d_c01454{bottom:75.520000pt;}
.y66_c01454{bottom:110.720000pt;}
.y65_c01454{bottom:112.000000pt;}
.y67_c01454{bottom:113.280000pt;}
.y68_c01454{bottom:115.200000pt;}
.y69_c01454{bottom:115.840000pt;}
.y62_c01454{bottom:149.760000pt;}
.y61_c01454{bottom:151.680000pt;}
.y63_c01454{bottom:152.320000pt;}
.y64_c01454{bottom:152.960000pt;}
.y5d_c01454{bottom:188.160000pt;}
.y5c_c01454{bottom:189.440000pt;}
.y5e_c01454{bottom:190.720000pt;}
.y5f_c01454{bottom:191.360000pt;}
.y60_c01454{bottom:192.000000pt;}
.y56_c01454{bottom:225.280000pt;}
.y57_c01454{bottom:225.920000pt;}
.y55_c01454{bottom:227.840000pt;}
.y59_c01454{bottom:229.120000pt;}
.y5a_c01454{bottom:229.760000pt;}
.y5b_c01454{bottom:230.400000pt;}
.y58_c01454{bottom:231.040000pt;}
.y51_c01454{bottom:264.960000pt;}
.y4f_c01454{bottom:266.880000pt;}
.y54_c01454{bottom:267.520000pt;}
.y50_c01454{bottom:268.160000pt;}
.y53_c01454{bottom:268.800000pt;}
.y52_c01454{bottom:269.440000pt;}
.y4b_c01454{bottom:303.360000pt;}
.y4c_c01454{bottom:305.280000pt;}
.y4d_c01454{bottom:305.920000pt;}
.y4a_c01454{bottom:306.560000pt;}
.y4e_c01454{bottom:307.840000pt;}
.y48_c01454{bottom:341.760000pt;}
.y47_c01454{bottom:344.320000pt;}
.y49_c01454{bottom:345.600000pt;}
.y45_c01454{bottom:381.440000pt;}
.y44_c01454{bottom:384.000000pt;}
.y46_c01454{bottom:384.640000pt;}
.y42_c01454{bottom:428.160000pt;}
.y43_c01454{bottom:428.800000pt;}
.y39_c01454{bottom:430.080000pt;}
.y37_c01454{bottom:430.720000pt;}
.y38_c01454{bottom:431.360000pt;}
.y41_c01454{bottom:467.840000pt;}
.y40_c01454{bottom:468.480000pt;}
.y3f_c01454{bottom:469.120000pt;}
.y35_c01454{bottom:470.400000pt;}
.y36_c01454{bottom:471.040000pt;}
.y34_c01454{bottom:506.880000pt;}
.y33_c01454{bottom:507.520000pt;}
.y3e_c01454{bottom:508.800000pt;}
.y3d_c01454{bottom:543.360000pt;}
.y31_c01454{bottom:544.640000pt;}
.y32_c01454{bottom:545.280000pt;}
.y3c_c01454{bottom:546.560000pt;}
.y30_c01454{bottom:547.200000pt;}
.y3a_c01454{bottom:581.760000pt;}
.y2f_c01454{bottom:583.040000pt;}
.y2e_c01454{bottom:583.680000pt;}
.y2c_c01454{bottom:584.320000pt;}
.y3b_c01454{bottom:585.600000pt;}
.y2d_c01454{bottom:586.240000pt;}
.y1c_c01454{bottom:620.800000pt;}
.y2b_c01454{bottom:622.080000pt;}
.y1b_c01454{bottom:622.720000pt;}
.y1d_c01454{bottom:624.000000pt;}
.y2a_c01454{bottom:625.280000pt;}
.y18_c01454{bottom:659.200000pt;}
.y1a_c01454{bottom:659.840000pt;}
.y17_c01454{bottom:660.480000pt;}
.y29_c01454{bottom:661.120000pt;}
.y19_c01454{bottom:662.400000pt;}
.y16_c01454{bottom:698.240000pt;}
.y15_c01454{bottom:698.880000pt;}
.y12_c01454{bottom:726.400000pt;}
.y11_c01454{bottom:727.680000pt;}
.y13_c01454{bottom:728.320000pt;}
.y28_c01454{bottom:728.960000pt;}
.y14_c01454{bottom:729.600000pt;}
.yf_c01454{bottom:764.800000pt;}
.y10_c01454{bottom:766.080000pt;}
.ye_c01454{bottom:766.720000pt;}
.y27_c01454{bottom:767.360000pt;}
.y9_c01454{bottom:800.640000pt;}
.ya_c01454{bottom:802.560000pt;}
.yd_c01454{bottom:803.840000pt;}
.y25_c01454{bottom:805.120000pt;}
.y26_c01454{bottom:805.760000pt;}
.yc_c01454{bottom:806.400000pt;}
.yb_c01454{bottom:807.040000pt;}
.y7_c01454{bottom:841.600000pt;}
.y6_c01454{bottom:842.880000pt;}
.y24_c01454{bottom:844.800000pt;}
.y8_c01454{bottom:845.440000pt;}
.y5_c01454{bottom:880.000000pt;}
.y21_c01454{bottom:880.640000pt;}
.y4_c01454{bottom:881.280000pt;}
.y22_c01454{bottom:881.920000pt;}
.y23_c01454{bottom:883.840000pt;}
.y2_c01454{bottom:918.400000pt;}
.y3_c01454{bottom:919.040000pt;}
.y1f_c01454{bottom:919.680000pt;}
.y1_c01454{bottom:920.320000pt;}
.y20_c01454{bottom:921.600000pt;}
.y1e_c01454{bottom:984.320000pt;}
.he_c01454{height:27.645000pt;}
.hc_c01454{height:32.252500pt;}
.h8_c01454{height:36.860000pt;}
.hb_c01454{height:39.163750pt;}
.h6_c01454{height:41.467500pt;}
.ha_c01454{height:43.771250pt;}
.h2_c01454{height:46.075000pt;}
.h5_c01454{height:48.378750pt;}
.hf_c01454{height:50.682500pt;}
.hd_c01454{height:52.986250pt;}
.h9_c01454{height:55.290000pt;}
.h4_c01454{height:57.593750pt;}
.h3_c01454{height:59.897500pt;}
.h7_c01454{height:62.201250pt;}
.h0_c01454{height:1031.040000pt;}
.h1_c01454{height:1031.333333pt;}
.w1_c01454{width:698.000000pt;}
.w0_c01454{width:698.240000pt;}
.x0_c01454{left:0.000000pt;}
.x8_c01454{left:48.640000pt;}
.x1_c01454{left:50.560000pt;}
.x24_c01454{left:87.680000pt;}
.x29_c01454{left:88.960000pt;}
.x2_c01454{left:97.920000pt;}
.x21_c01454{left:126.720000pt;}
.x23_c01454{left:145.920000pt;}
.x27_c01454{left:165.760000pt;}
.xe_c01454{left:174.720000pt;}
.x4_c01454{left:184.960000pt;}
.x3_c01454{left:195.200000pt;}
.x28_c01454{left:204.800000pt;}
.x5_c01454{left:214.400000pt;}
.xf_c01454{left:223.360000pt;}
.x9_c01454{left:232.320000pt;}
.x22_c01454{left:251.520000pt;}
.xc_c01454{left:261.760000pt;}
.x6_c01454{left:263.040000pt;}
.xa_c01454{left:271.360000pt;}
.xb_c01454{left:309.120000pt;}
.x7_c01454{left:338.560000pt;}
.xd_c01454{left:377.600000pt;}
.x1f_c01454{left:423.680000pt;}
.x1a_c01454{left:426.240000pt;}
.x20_c01454{left:463.360000pt;}
.x1b_c01454{left:520.960000pt;}
.x11_c01454{left:522.240000pt;}
.x16_c01454{left:540.160000pt;}
.x25_c01454{left:561.280000pt;}
.x1d_c01454{left:569.600000pt;}
.x14_c01454{left:570.880000pt;}
.x10_c01454{left:582.400000pt;}
.x26_c01454{left:598.400000pt;}
.x17_c01454{left:599.680000pt;}
.x15_c01454{left:608.640000pt;}
.x12_c01454{left:609.920000pt;}
.x1e_c01454{left:636.160000pt;}
.x18_c01454{left:637.440000pt;}
.x13_c01454{left:638.720000pt;}
.x1c_c01454{left:655.360000pt;}
.x19_c01454{left:656.640000pt;}
}





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

.ir_c01455:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01455{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01455;src:url('chunks/assets/font_b0ab8bc58b03e8e3555dbffe.woff2')format("woff");}.ff1_c01455{font-family:ff1_c01455;line-height:1.109863;font-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_c01455{transform:matrix(0.049950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.049950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.049950,0.000000,0.000000,0.250000,0,0);}
.m36_c01455{transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);}
.m11_c01455{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m8_c01455{transform:matrix(0.237275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237275,0.000000,0.000000,0.250000,0,0);}
.m1_c01455{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);}
.m39_c01455{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);}
.m19_c01455{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m43_c01455{transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);}
.m35_c01455{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m25_c01455{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);}
.m32_c01455{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);}
.m33_c01455{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_c01455{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m23_c01455{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);}
.m2b_c01455{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01455{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_c01455{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_c01455{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m15_c01455{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);}
.m41_c01455{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);}
.m2a_c01455{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);}
.m30_c01455{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m37_c01455{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m31_c01455{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m17_c01455{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m21_c01455{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01455{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m9_c01455{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01455{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m4_c01455{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01455{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m7_c01455{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m38_c01455{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01455{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m22_c01455{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m29_c01455{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m16_c01455{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m14_c01455{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);}
.m3c_c01455{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);}
.m26_c01455{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m2_c01455{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);}
.m1d_c01455{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.ma_c01455{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.me_c01455{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m18_c01455{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m6_c01455{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_c01455{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);}
.m48_c01455{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01455{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m47_c01455{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m3_c01455{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01455{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01455{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);}
.m1a_c01455{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01455{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m34_c01455{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01455{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m27_c01455{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m24_c01455{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m44_c01455{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.mb_c01455{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01455{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);}
.m0_c01455{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m20_c01455{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);}
.m40_c01455{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01455{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.md_c01455{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);}
.m2f_c01455{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m46_c01455{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m28_c01455{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);}
.m5_c01455{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m49_c01455{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);}
.m1c_c01455{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m12_c01455{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01455{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m45_c01455{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01455{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.m42_c01455{transform:matrix(0.892500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.892500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.892500,0.000000,0.000000,0.250000,0,0);}
.v3_c01455{vertical-align:-8.640000px;}
.v4_c01455{vertical-align:-5.760000px;}
.v5_c01455{vertical-align:-2.880000px;}
.v0_c01455{vertical-align:0.000000px;}
.v2_c01455{vertical-align:2.880000px;}
.v1_c01455{vertical-align:5.760000px;}
.ls1_c01455{letter-spacing:0.000000px;}
.ls0_c01455{letter-spacing:85.783680px;}
.sc__c01455{text-shadow:none;}
.sc0_c01455{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01455{-webkit-text-stroke:0px transparent;}
.sc0_c01455{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c01455{word-spacing:0.000000px;}
.ws1_c01455{word-spacing:10.749600px;}
.ws3_c01455{word-spacing:12.999600px;}
.ws0_c01455{word-spacing:14.240400px;}
.ws2_c01455{word-spacing:45.393600px;}
.fc0_c01455{color:transparent;}
.fs1_c01455{font-size:8.640000px;}
.fse_c01455{font-size:28.800000px;}
.fsf_c01455{font-size:34.560000px;}
.fsd_c01455{font-size:37.440000px;}
.fs10_c01455{font-size:40.320000px;}
.fsb_c01455{font-size:46.080000px;}
.fs6_c01455{font-size:48.960000px;}
.fs4_c01455{font-size:51.840000px;}
.fs0_c01455{font-size:54.720000px;}
.fsc_c01455{font-size:57.600000px;}
.fs8_c01455{font-size:60.480000px;}
.fs2_c01455{font-size:63.360000px;}
.fsa_c01455{font-size:66.240000px;}
.fs3_c01455{font-size:69.120000px;}
.fs7_c01455{font-size:72.000000px;}
.fs9_c01455{font-size:74.880000px;}
.fs5_c01455{font-size:77.760000px;}
.y0_c01455{bottom:0.000000px;}
.y7c_c01455{bottom:51.120000px;}
.y7b_c01455{bottom:54.000000px;}
.y79_c01455{bottom:54.720000px;}
.y7a_c01455{bottom:55.440000px;}
.y77_c01455{bottom:56.160000px;}
.y78_c01455{bottom:57.600000px;}
.y73_c01455{bottom:95.040000px;}
.y71_c01455{bottom:95.760000px;}
.y70_c01455{bottom:96.480000px;}
.y72_c01455{bottom:97.200000px;}
.y74_c01455{bottom:98.640000px;}
.y76_c01455{bottom:99.360000px;}
.y75_c01455{bottom:100.080000px;}
.y6c_c01455{bottom:138.240000px;}
.y6a_c01455{bottom:139.680000px;}
.y6b_c01455{bottom:141.120000px;}
.y6d_c01455{bottom:141.840000px;}
.y6e_c01455{bottom:142.560000px;}
.y6f_c01455{bottom:143.280000px;}
.y67_c01455{bottom:182.160000px;}
.y66_c01455{bottom:182.880000px;}
.y69_c01455{bottom:184.320000px;}
.y68_c01455{bottom:185.040000px;}
.y65_c01455{bottom:187.200000px;}
.y62_c01455{bottom:224.640000px;}
.y61_c01455{bottom:225.360000px;}
.y60_c01455{bottom:226.800000px;}
.y64_c01455{bottom:227.520000px;}
.y63_c01455{bottom:228.240000px;}
.y14_c01455{bottom:268.560000px;}
.y13_c01455{bottom:270.720000px;}
.y15_c01455{bottom:271.440000px;}
.y16_c01455{bottom:272.880000px;}
.y17_c01455{bottom:273.600000px;}
.y5f_c01455{bottom:311.760000px;}
.y5c_c01455{bottom:342.720000px;}
.y5d_c01455{bottom:344.160000px;}
.y5b_c01455{bottom:344.880000px;}
.y4a_c01455{bottom:346.320000px;}
.y4b_c01455{bottom:347.040000px;}
.y5e_c01455{bottom:347.760000px;}
.y4c_c01455{bottom:349.200000px;}
.y59_c01455{bottom:385.920000px;}
.y5a_c01455{bottom:386.640000px;}
.y57_c01455{bottom:388.080000px;}
.y49_c01455{bottom:388.800000px;}
.y58_c01455{bottom:389.520000px;}
.y48_c01455{bottom:390.240000px;}
.y55_c01455{bottom:429.120000px;}
.y56_c01455{bottom:429.840000px;}
.y54_c01455{bottom:431.280000px;}
.y47_c01455{bottom:432.720000px;}
.y46_c01455{bottom:435.600000px;}
.y52_c01455{bottom:473.040000px;}
.y53_c01455{bottom:473.760000px;}
.y44_c01455{bottom:475.920000px;}
.y45_c01455{bottom:476.640000px;}
.y50_c01455{bottom:516.240000px;}
.y51_c01455{bottom:516.960000px;}
.y43_c01455{bottom:519.840000px;}
.y4f_c01455{bottom:520.560000px;}
.y42_c01455{bottom:521.280000px;}
.y40_c01455{bottom:562.320000px;}
.y4e_c01455{bottom:563.040000px;}
.y4d_c01455{bottom:563.760000px;}
.y41_c01455{bottom:564.480000px;}
.y39_c01455{bottom:603.360000px;}
.y3b_c01455{bottom:604.080000px;}
.y38_c01455{bottom:604.800000px;}
.y37_c01455{bottom:605.520000px;}
.y3f_c01455{bottom:606.240000px;}
.y3a_c01455{bottom:607.680000px;}
.y3e_c01455{bottom:609.120000px;}
.y36_c01455{bottom:647.280000px;}
.y3c_c01455{bottom:648.720000px;}
.y34_c01455{bottom:649.440000px;}
.y35_c01455{bottom:650.160000px;}
.y3d_c01455{bottom:651.600000px;}
.y2f_c01455{bottom:689.760000px;}
.y31_c01455{bottom:690.480000px;}
.y30_c01455{bottom:691.200000px;}
.y2e_c01455{bottom:691.920000px;}
.y33_c01455{bottom:693.360000px;}
.y32_c01455{bottom:694.080000px;}
.y2b_c01455{bottom:732.960000px;}
.y2c_c01455{bottom:734.400000px;}
.y2d_c01455{bottom:735.120000px;}
.y2a_c01455{bottom:736.560000px;}
.y27_c01455{bottom:776.160000px;}
.y28_c01455{bottom:776.880000px;}
.y26_c01455{bottom:777.600000px;}
.y29_c01455{bottom:779.040000px;}
.y24_c01455{bottom:820.080000px;}
.y23_c01455{bottom:820.800000px;}
.y25_c01455{bottom:822.960000px;}
.y1e_c01455{bottom:861.120000px;}
.y21_c01455{bottom:861.840000px;}
.y20_c01455{bottom:862.560000px;}
.y1d_c01455{bottom:864.000000px;}
.y1f_c01455{bottom:865.440000px;}
.y22_c01455{bottom:866.160000px;}
.y19_c01455{bottom:905.040000px;}
.y1c_c01455{bottom:906.480000px;}
.y1b_c01455{bottom:907.200000px;}
.y18_c01455{bottom:907.920000px;}
.y1a_c01455{bottom:908.640000px;}
.yd_c01455{bottom:947.520000px;}
.yb_c01455{bottom:948.240000px;}
.yc_c01455{bottom:948.960000px;}
.y12_c01455{bottom:949.680000px;}
.ya_c01455{bottom:951.120000px;}
.y7_c01455{bottom:990.720000px;}
.y9_c01455{bottom:991.440000px;}
.y10_c01455{bottom:992.880000px;}
.y6_c01455{bottom:994.320000px;}
.y8_c01455{bottom:995.040000px;}
.y11_c01455{bottom:995.760000px;}
.yf_c01455{bottom:1033.200000px;}
.y5_c01455{bottom:1036.080000px;}
.y4_c01455{bottom:1036.800000px;}
.y1_c01455{bottom:1037.520000px;}
.ye_c01455{bottom:1038.240000px;}
.y3_c01455{bottom:1038.960000px;}
.y2_c01455{bottom:1047.600000px;}
.h3_c01455{height:7.775156px;}
.h12_c01455{height:25.917187px;}
.h13_c01455{height:31.100625px;}
.h10_c01455{height:33.692344px;}
.h14_c01455{height:36.284062px;}
.he_c01455{height:41.467500px;}
.h8_c01455{height:44.059219px;}
.h6_c01455{height:46.650937px;}
.h2_c01455{height:49.242656px;}
.hf_c01455{height:51.834375px;}
.h11_c01455{height:52.122656px;}
.ha_c01455{height:54.426094px;}
.h4_c01455{height:57.017812px;}
.hd_c01455{height:59.609531px;}
.hc_c01455{height:60.186094px;}
.h5_c01455{height:62.201250px;}
.h9_c01455{height:64.792969px;}
.hb_c01455{height:67.384687px;}
.h7_c01455{height:69.976406px;}
.h0_c01455{height:1160.640000px;}
.h1_c01455{height:1161.000000px;}
.w1_c01455{width:786.000000px;}
.w0_c01455{width:786.240000px;}
.x0_c01455{left:0.000000px;}
.x1_c01455{left:57.600000px;}
.x8_c01455{left:59.040000px;}
.x2a_c01455{left:80.640000px;}
.x2_c01455{left:94.320000px;}
.x3_c01455{left:101.520000px;}
.x9_c01455{left:110.880000px;}
.x14_c01455{left:112.320000px;}
.x4_c01455{left:187.200000px;}
.x1a_c01455{left:197.280000px;}
.x15_c01455{left:198.720000px;}
.xa_c01455{left:209.520000px;}
.xb_c01455{left:220.320000px;}
.x19_c01455{left:241.920000px;}
.x5_c01455{left:252.720000px;}
.x1e_c01455{left:262.800000px;}
.x2b_c01455{left:264.240000px;}
.x22_c01455{left:274.320000px;}
.x31_c01455{left:285.120000px;}
.x1f_c01455{left:295.920000px;}
.xc_c01455{left:305.280000px;}
.x2c_c01455{left:306.720000px;}
.x23_c01455{left:329.040000px;}
.x20_c01455{left:349.920000px;}
.x6_c01455{left:360.720000px;}
.x2d_c01455{left:390.960000px;}
.x21_c01455{left:393.120000px;}
.x7_c01455{left:414.720000px;}
.x1b_c01455{left:426.240000px;}
.x2e_c01455{left:436.320000px;}
.xd_c01455{left:457.920000px;}
.x1c_c01455{left:468.720000px;}
.x24_c01455{left:490.320000px;}
.x1d_c01455{left:565.920000px;}
.x26_c01455{left:587.520000px;}
.x27_c01455{left:608.400000px;}
.x12_c01455{left:609.840000px;}
.x2f_c01455{left:619.920000px;}
.x30_c01455{left:632.880000px;}
.x16_c01455{left:642.240000px;}
.xe_c01455{left:643.680000px;}
.x17_c01455{left:675.360000px;}
.x29_c01455{left:685.440000px;}
.x13_c01455{left:686.880000px;}
.x18_c01455{left:707.760000px;}
.x25_c01455{left:717.120000px;}
.xf_c01455{left:719.280000px;}
.x28_c01455{left:738.000000px;}
.x10_c01455{left:739.440000px;}
.x11_c01455{left:774.720000px;}
@media print{
.v3_c01455{vertical-align:-7.680000pt;}
.v4_c01455{vertical-align:-5.120000pt;}
.v5_c01455{vertical-align:-2.560000pt;}
.v0_c01455{vertical-align:0.000000pt;}
.v2_c01455{vertical-align:2.560000pt;}
.v1_c01455{vertical-align:5.120000pt;}
.ls1_c01455{letter-spacing:0.000000pt;}
.ls0_c01455{letter-spacing:76.252160pt;}
.ws4_c01455{word-spacing:0.000000pt;}
.ws1_c01455{word-spacing:9.555200pt;}
.ws3_c01455{word-spacing:11.555200pt;}
.ws0_c01455{word-spacing:12.658133pt;}
.ws2_c01455{word-spacing:40.349867pt;}
.fs1_c01455{font-size:7.680000pt;}
.fse_c01455{font-size:25.600000pt;}
.fsf_c01455{font-size:30.720000pt;}
.fsd_c01455{font-size:33.280000pt;}
.fs10_c01455{font-size:35.840000pt;}
.fsb_c01455{font-size:40.960000pt;}
.fs6_c01455{font-size:43.520000pt;}
.fs4_c01455{font-size:46.080000pt;}
.fs0_c01455{font-size:48.640000pt;}
.fsc_c01455{font-size:51.200000pt;}
.fs8_c01455{font-size:53.760000pt;}
.fs2_c01455{font-size:56.320000pt;}
.fsa_c01455{font-size:58.880000pt;}
.fs3_c01455{font-size:61.440000pt;}
.fs7_c01455{font-size:64.000000pt;}
.fs9_c01455{font-size:66.560000pt;}
.fs5_c01455{font-size:69.120000pt;}
.y0_c01455{bottom:0.000000pt;}
.y7c_c01455{bottom:45.440000pt;}
.y7b_c01455{bottom:48.000000pt;}
.y79_c01455{bottom:48.640000pt;}
.y7a_c01455{bottom:49.280000pt;}
.y77_c01455{bottom:49.920000pt;}
.y78_c01455{bottom:51.200000pt;}
.y73_c01455{bottom:84.480000pt;}
.y71_c01455{bottom:85.120000pt;}
.y70_c01455{bottom:85.760000pt;}
.y72_c01455{bottom:86.400000pt;}
.y74_c01455{bottom:87.680000pt;}
.y76_c01455{bottom:88.320000pt;}
.y75_c01455{bottom:88.960000pt;}
.y6c_c01455{bottom:122.880000pt;}
.y6a_c01455{bottom:124.160000pt;}
.y6b_c01455{bottom:125.440000pt;}
.y6d_c01455{bottom:126.080000pt;}
.y6e_c01455{bottom:126.720000pt;}
.y6f_c01455{bottom:127.360000pt;}
.y67_c01455{bottom:161.920000pt;}
.y66_c01455{bottom:162.560000pt;}
.y69_c01455{bottom:163.840000pt;}
.y68_c01455{bottom:164.480000pt;}
.y65_c01455{bottom:166.400000pt;}
.y62_c01455{bottom:199.680000pt;}
.y61_c01455{bottom:200.320000pt;}
.y60_c01455{bottom:201.600000pt;}
.y64_c01455{bottom:202.240000pt;}
.y63_c01455{bottom:202.880000pt;}
.y14_c01455{bottom:238.720000pt;}
.y13_c01455{bottom:240.640000pt;}
.y15_c01455{bottom:241.280000pt;}
.y16_c01455{bottom:242.560000pt;}
.y17_c01455{bottom:243.200000pt;}
.y5f_c01455{bottom:277.120000pt;}
.y5c_c01455{bottom:304.640000pt;}
.y5d_c01455{bottom:305.920000pt;}
.y5b_c01455{bottom:306.560000pt;}
.y4a_c01455{bottom:307.840000pt;}
.y4b_c01455{bottom:308.480000pt;}
.y5e_c01455{bottom:309.120000pt;}
.y4c_c01455{bottom:310.400000pt;}
.y59_c01455{bottom:343.040000pt;}
.y5a_c01455{bottom:343.680000pt;}
.y57_c01455{bottom:344.960000pt;}
.y49_c01455{bottom:345.600000pt;}
.y58_c01455{bottom:346.240000pt;}
.y48_c01455{bottom:346.880000pt;}
.y55_c01455{bottom:381.440000pt;}
.y56_c01455{bottom:382.080000pt;}
.y54_c01455{bottom:383.360000pt;}
.y47_c01455{bottom:384.640000pt;}
.y46_c01455{bottom:387.200000pt;}
.y52_c01455{bottom:420.480000pt;}
.y53_c01455{bottom:421.120000pt;}
.y44_c01455{bottom:423.040000pt;}
.y45_c01455{bottom:423.680000pt;}
.y50_c01455{bottom:458.880000pt;}
.y51_c01455{bottom:459.520000pt;}
.y43_c01455{bottom:462.080000pt;}
.y4f_c01455{bottom:462.720000pt;}
.y42_c01455{bottom:463.360000pt;}
.y40_c01455{bottom:499.840000pt;}
.y4e_c01455{bottom:500.480000pt;}
.y4d_c01455{bottom:501.120000pt;}
.y41_c01455{bottom:501.760000pt;}
.y39_c01455{bottom:536.320000pt;}
.y3b_c01455{bottom:536.960000pt;}
.y38_c01455{bottom:537.600000pt;}
.y37_c01455{bottom:538.240000pt;}
.y3f_c01455{bottom:538.880000pt;}
.y3a_c01455{bottom:540.160000pt;}
.y3e_c01455{bottom:541.440000pt;}
.y36_c01455{bottom:575.360000pt;}
.y3c_c01455{bottom:576.640000pt;}
.y34_c01455{bottom:577.280000pt;}
.y35_c01455{bottom:577.920000pt;}
.y3d_c01455{bottom:579.200000pt;}
.y2f_c01455{bottom:613.120000pt;}
.y31_c01455{bottom:613.760000pt;}
.y30_c01455{bottom:614.400000pt;}
.y2e_c01455{bottom:615.040000pt;}
.y33_c01455{bottom:616.320000pt;}
.y32_c01455{bottom:616.960000pt;}
.y2b_c01455{bottom:651.520000pt;}
.y2c_c01455{bottom:652.800000pt;}
.y2d_c01455{bottom:653.440000pt;}
.y2a_c01455{bottom:654.720000pt;}
.y27_c01455{bottom:689.920000pt;}
.y28_c01455{bottom:690.560000pt;}
.y26_c01455{bottom:691.200000pt;}
.y29_c01455{bottom:692.480000pt;}
.y24_c01455{bottom:728.960000pt;}
.y23_c01455{bottom:729.600000pt;}
.y25_c01455{bottom:731.520000pt;}
.y1e_c01455{bottom:765.440000pt;}
.y21_c01455{bottom:766.080000pt;}
.y20_c01455{bottom:766.720000pt;}
.y1d_c01455{bottom:768.000000pt;}
.y1f_c01455{bottom:769.280000pt;}
.y22_c01455{bottom:769.920000pt;}
.y19_c01455{bottom:804.480000pt;}
.y1c_c01455{bottom:805.760000pt;}
.y1b_c01455{bottom:806.400000pt;}
.y18_c01455{bottom:807.040000pt;}
.y1a_c01455{bottom:807.680000pt;}
.yd_c01455{bottom:842.240000pt;}
.yb_c01455{bottom:842.880000pt;}
.yc_c01455{bottom:843.520000pt;}
.y12_c01455{bottom:844.160000pt;}
.ya_c01455{bottom:845.440000pt;}
.y7_c01455{bottom:880.640000pt;}
.y9_c01455{bottom:881.280000pt;}
.y10_c01455{bottom:882.560000pt;}
.y6_c01455{bottom:883.840000pt;}
.y8_c01455{bottom:884.480000pt;}
.y11_c01455{bottom:885.120000pt;}
.yf_c01455{bottom:918.400000pt;}
.y5_c01455{bottom:920.960000pt;}
.y4_c01455{bottom:921.600000pt;}
.y1_c01455{bottom:922.240000pt;}
.ye_c01455{bottom:922.880000pt;}
.y3_c01455{bottom:923.520000pt;}
.y2_c01455{bottom:931.200000pt;}
.h3_c01455{height:6.911250pt;}
.h12_c01455{height:23.037500pt;}
.h13_c01455{height:27.645000pt;}
.h10_c01455{height:29.948750pt;}
.h14_c01455{height:32.252500pt;}
.he_c01455{height:36.860000pt;}
.h8_c01455{height:39.163750pt;}
.h6_c01455{height:41.467500pt;}
.h2_c01455{height:43.771250pt;}
.hf_c01455{height:46.075000pt;}
.h11_c01455{height:46.331250pt;}
.ha_c01455{height:48.378750pt;}
.h4_c01455{height:50.682500pt;}
.hd_c01455{height:52.986250pt;}
.hc_c01455{height:53.498750pt;}
.h5_c01455{height:55.290000pt;}
.h9_c01455{height:57.593750pt;}
.hb_c01455{height:59.897500pt;}
.h7_c01455{height:62.201250pt;}
.h0_c01455{height:1031.680000pt;}
.h1_c01455{height:1032.000000pt;}
.w1_c01455{width:698.666667pt;}
.w0_c01455{width:698.880000pt;}
.x0_c01455{left:0.000000pt;}
.x1_c01455{left:51.200000pt;}
.x8_c01455{left:52.480000pt;}
.x2a_c01455{left:71.680000pt;}
.x2_c01455{left:83.840000pt;}
.x3_c01455{left:90.240000pt;}
.x9_c01455{left:98.560000pt;}
.x14_c01455{left:99.840000pt;}
.x4_c01455{left:166.400000pt;}
.x1a_c01455{left:175.360000pt;}
.x15_c01455{left:176.640000pt;}
.xa_c01455{left:186.240000pt;}
.xb_c01455{left:195.840000pt;}
.x19_c01455{left:215.040000pt;}
.x5_c01455{left:224.640000pt;}
.x1e_c01455{left:233.600000pt;}
.x2b_c01455{left:234.880000pt;}
.x22_c01455{left:243.840000pt;}
.x31_c01455{left:253.440000pt;}
.x1f_c01455{left:263.040000pt;}
.xc_c01455{left:271.360000pt;}
.x2c_c01455{left:272.640000pt;}
.x23_c01455{left:292.480000pt;}
.x20_c01455{left:311.040000pt;}
.x6_c01455{left:320.640000pt;}
.x2d_c01455{left:347.520000pt;}
.x21_c01455{left:349.440000pt;}
.x7_c01455{left:368.640000pt;}
.x1b_c01455{left:378.880000pt;}
.x2e_c01455{left:387.840000pt;}
.xd_c01455{left:407.040000pt;}
.x1c_c01455{left:416.640000pt;}
.x24_c01455{left:435.840000pt;}
.x1d_c01455{left:503.040000pt;}
.x26_c01455{left:522.240000pt;}
.x27_c01455{left:540.800000pt;}
.x12_c01455{left:542.080000pt;}
.x2f_c01455{left:551.040000pt;}
.x30_c01455{left:562.560000pt;}
.x16_c01455{left:570.880000pt;}
.xe_c01455{left:572.160000pt;}
.x17_c01455{left:600.320000pt;}
.x29_c01455{left:609.280000pt;}
.x13_c01455{left:610.560000pt;}
.x18_c01455{left:629.120000pt;}
.x25_c01455{left:637.440000pt;}
.xf_c01455{left:639.360000pt;}
.x28_c01455{left:656.000000pt;}
.x10_c01455{left:657.280000pt;}
.x11_c01455{left:688.640000pt;}
}





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

.ir_c01456:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01456{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01456;src:url('chunks/assets/font_820dcd77819611dc739e2c07.woff2')format("woff");}.ff1_c01456{font-family:ff1_c01456;line-height:1.109863;font-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_c01456{transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);}
.m3f_c01456{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m28_c01456{transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);}
.m23_c01456{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m46_c01456{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m6_c01456{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);}
.m2c_c01456{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m26_c01456{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);}
.m42_c01456{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m2_c01456{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m27_c01456{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);}
.m39_c01456{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.md_c01456{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m5_c01456{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_c01456{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);}
.m3e_c01456{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m15_c01456{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m38_c01456{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01456{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01456{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01456{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m29_c01456{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m40_c01456{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1_c01456{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01456{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m36_c01456{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m17_c01456{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01456{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01456{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m11_c01456{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.mc_c01456{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);}
.m24_c01456{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m21_c01456{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_c01456{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m44_c01456{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m14_c01456{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);}
.m3c_c01456{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);}
.me_c01456{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);}
.m45_c01456{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);}
.m2b_c01456{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m12_c01456{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);}
.m8_c01456{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);}
.m20_c01456{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m0_c01456{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);}
.m33_c01456{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01456{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);}
.m1a_c01456{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01456{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);}
.m32_c01456{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);}
.m2d_c01456{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m10_c01456{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m9_c01456{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m3_c01456{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m25_c01456{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01456{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m19_c01456{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);}
.ma_c01456{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m35_c01456{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m13_c01456{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);}
.m16_c01456{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m37_c01456{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);}
.m34_c01456{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01456{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);}
.m22_c01456{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01456{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m31_c01456{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01456{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m18_c01456{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);}
.m30_c01456{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m41_c01456{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m43_c01456{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.v1_c01456{vertical-align:-2.880000px;}
.v0_c01456{vertical-align:0.000000px;}
.ls1_c01456{letter-spacing:0.000000px;}
.ls0_c01456{letter-spacing:81.576960px;}
.sc__c01456{text-shadow:none;}
.sc0_c01456{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01456{-webkit-text-stroke:0px transparent;}
.sc0_c01456{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01456{word-spacing:0.000000px;}
.ws0_c01456{word-spacing:5.628099px;}
.fc0_c01456{color:transparent;}
.fsc_c01456{font-size:37.440000px;}
.fs5_c01456{font-size:40.320000px;}
.fsa_c01456{font-size:46.080000px;}
.fsb_c01456{font-size:48.960000px;}
.fs4_c01456{font-size:51.840000px;}
.fs3_c01456{font-size:54.720000px;}
.fs1_c01456{font-size:57.600000px;}
.fs0_c01456{font-size:60.480000px;}
.fs7_c01456{font-size:63.360000px;}
.fs8_c01456{font-size:66.240000px;}
.fs9_c01456{font-size:69.120000px;}
.fsd_c01456{font-size:72.000000px;}
.fs2_c01456{font-size:74.880000px;}
.fs6_c01456{font-size:77.760000px;}
.y0_c01456{bottom:0.000000px;}
.y42_c01456{bottom:69.840000px;}
.y41_c01456{bottom:73.440000px;}
.y67_c01456{bottom:74.160000px;}
.y68_c01456{bottom:75.600000px;}
.y5f_c01456{bottom:76.320000px;}
.y40_c01456{bottom:112.320000px;}
.y3f_c01456{bottom:114.480000px;}
.y3e_c01456{bottom:115.920000px;}
.y65_c01456{bottom:117.360000px;}
.y66_c01456{bottom:118.080000px;}
.y5e_c01456{bottom:118.800000px;}
.y3d_c01456{bottom:156.240000px;}
.y3c_c01456{bottom:159.840000px;}
.y62_c01456{bottom:160.560000px;}
.y63_c01456{bottom:161.280000px;}
.y64_c01456{bottom:163.440000px;}
.y3b_c01456{bottom:201.600000px;}
.y3a_c01456{bottom:202.320000px;}
.y60_c01456{bottom:203.760000px;}
.y39_c01456{bottom:204.480000px;}
.y61_c01456{bottom:205.920000px;}
.y36_c01456{bottom:246.240000px;}
.y37_c01456{bottom:247.680000px;}
.y35_c01456{bottom:248.400000px;}
.y38_c01456{bottom:249.120000px;}
.y34_c01456{bottom:298.080000px;}
.y33_c01456{bottom:300.240000px;}
.y5c_c01456{bottom:301.680000px;}
.y5d_c01456{bottom:303.120000px;}
.y5b_c01456{bottom:303.840000px;}
.y32_c01456{bottom:342.000000px;}
.y31_c01456{bottom:344.160000px;}
.y5a_c01456{bottom:344.880000px;}
.y59_c01456{bottom:345.600000px;}
.y2e_c01456{bottom:385.200000px;}
.y2f_c01456{bottom:386.640000px;}
.y30_c01456{bottom:387.360000px;}
.y2d_c01456{bottom:388.080000px;}
.y58_c01456{bottom:390.960000px;}
.y2c_c01456{bottom:428.400000px;}
.y56_c01456{bottom:430.560000px;}
.y2b_c01456{bottom:431.280000px;}
.y57_c01456{bottom:434.160000px;}
.y2a_c01456{bottom:472.320000px;}
.y29_c01456{bottom:474.480000px;}
.y25_c01456{bottom:514.800000px;}
.y28_c01456{bottom:515.520000px;}
.y55_c01456{bottom:516.960000px;}
.y24_c01456{bottom:517.680000px;}
.y27_c01456{bottom:518.400000px;}
.y26_c01456{bottom:519.120000px;}
.y23_c01456{bottom:558.000000px;}
.y22_c01456{bottom:560.160000px;}
.y53_c01456{bottom:560.880000px;}
.y54_c01456{bottom:562.320000px;}
.y1f_c01456{bottom:602.640000px;}
.y1e_c01456{bottom:603.360000px;}
.y21_c01456{bottom:604.800000px;}
.y20_c01456{bottom:605.520000px;}
.y1b_c01456{bottom:645.840000px;}
.y1a_c01456{bottom:646.560000px;}
.y52_c01456{bottom:647.280000px;}
.y1d_c01456{bottom:648.000000px;}
.y1c_c01456{bottom:648.720000px;}
.y19_c01456{bottom:688.320000px;}
.y51_c01456{bottom:689.040000px;}
.y17_c01456{bottom:689.760000px;}
.y16_c01456{bottom:690.480000px;}
.y18_c01456{bottom:692.640000px;}
.y14_c01456{bottom:732.960000px;}
.y50_c01456{bottom:733.680000px;}
.y4f_c01456{bottom:734.400000px;}
.y4e_c01456{bottom:735.120000px;}
.y15_c01456{bottom:735.840000px;}
.y4b_c01456{bottom:775.440000px;}
.y12_c01456{bottom:776.160000px;}
.y13_c01456{bottom:776.880000px;}
.y4c_c01456{bottom:779.040000px;}
.y4d_c01456{bottom:779.760000px;}
.yf_c01456{bottom:819.360000px;}
.y10_c01456{bottom:820.080000px;}
.y11_c01456{bottom:822.240000px;}
.ye_c01456{bottom:861.840000px;}
.yd_c01456{bottom:863.280000px;}
.y4a_c01456{bottom:864.720000px;}
.yc_c01456{bottom:904.320000px;}
.y9_c01456{bottom:905.040000px;}
.y8_c01456{bottom:905.760000px;}
.yb_c01456{bottom:907.920000px;}
.ya_c01456{bottom:908.640000px;}
.y7_c01456{bottom:948.240000px;}
.y48_c01456{bottom:948.960000px;}
.y6_c01456{bottom:949.680000px;}
.y49_c01456{bottom:951.840000px;}
.y4_c01456{bottom:990.720000px;}
.y5_c01456{bottom:991.440000px;}
.y45_c01456{bottom:992.160000px;}
.y3_c01456{bottom:992.880000px;}
.y47_c01456{bottom:994.320000px;}
.y46_c01456{bottom:995.040000px;}
.y2_c01456{bottom:1033.920000px;}
.y44_c01456{bottom:1035.360000px;}
.y1_c01456{bottom:1036.080000px;}
.y43_c01456{bottom:1098.720000px;}
.he_c01456{height:33.692344px;}
.h7_c01456{height:36.284062px;}
.hc_c01456{height:41.467500px;}
.hd_c01456{height:44.059219px;}
.h6_c01456{height:46.650937px;}
.h5_c01456{height:49.242656px;}
.h3_c01456{height:51.834375px;}
.h2_c01456{height:54.426094px;}
.h9_c01456{height:57.017812px;}
.ha_c01456{height:59.609531px;}
.hb_c01456{height:62.201250px;}
.hf_c01456{height:64.792969px;}
.h4_c01456{height:67.384687px;}
.h8_c01456{height:69.976406px;}
.h1_c01456{height:1161.750000px;}
.h0_c01456{height:1162.080000px;}
.w1_c01456{width:787.500000px;}
.w0_c01456{width:787.680000px;}
.x0_c01456{left:0.000000px;}
.x1_c01456{left:54.000000px;}
.x4_c01456{left:55.440000px;}
.x1f_c01456{left:97.200000px;}
.x1e_c01456{left:98.640000px;}
.x2_c01456{left:108.000000px;}
.x7_c01456{left:109.440000px;}
.x3_c01456{left:153.360000px;}
.x1b_c01456{left:163.440000px;}
.x20_c01456{left:174.960000px;}
.x1a_c01456{left:185.040000px;}
.xd_c01456{left:195.120000px;}
.x17_c01456{left:205.200000px;}
.x5_c01456{left:206.640000px;}
.x8_c01456{left:228.240000px;}
.x6_c01456{left:249.120000px;}
.xe_c01456{left:259.920000px;}
.x9_c01456{left:282.960000px;}
.x1c_c01456{left:294.480000px;}
.xf_c01456{left:303.840000px;}
.xa_c01456{left:325.440000px;}
.x14_c01456{left:335.520000px;}
.x1d_c01456{left:336.960000px;}
.x18_c01456{left:347.760000px;}
.x10_c01456{left:357.840000px;}
.x12_c01456{left:390.240000px;}
.x19_c01456{left:401.760000px;}
.x16_c01456{left:411.120000px;}
.xb_c01456{left:423.360000px;}
.x15_c01456{left:444.240000px;}
.x13_c01456{left:455.040000px;}
.xc_c01456{left:465.840000px;}
.x11_c01456{left:488.160000px;}
.x31_c01456{left:575.280000px;}
.x22_c01456{left:576.720000px;}
.x29_c01456{left:586.080000px;}
.x26_c01456{left:607.680000px;}
.x2b_c01456{left:639.360000px;}
.x23_c01456{left:640.800000px;}
.x2e_c01456{left:663.120000px;}
.x21_c01456{left:669.600000px;}
.x2a_c01456{left:672.480000px;}
.x24_c01456{left:673.920000px;}
.x2f_c01456{left:682.560000px;}
.x2d_c01456{left:684.000000px;}
.x25_c01456{left:706.320000px;}
.x2c_c01456{left:714.960000px;}
.x27_c01456{left:716.400000px;}
.x30_c01456{left:735.840000px;}
.x28_c01456{left:737.280000px;}
@media print{
.v1_c01456{vertical-align:-2.560000pt;}
.v0_c01456{vertical-align:0.000000pt;}
.ls1_c01456{letter-spacing:0.000000pt;}
.ls0_c01456{letter-spacing:72.512853pt;}
.ws1_c01456{word-spacing:0.000000pt;}
.ws0_c01456{word-spacing:5.002755pt;}
.fsc_c01456{font-size:33.280000pt;}
.fs5_c01456{font-size:35.840000pt;}
.fsa_c01456{font-size:40.960000pt;}
.fsb_c01456{font-size:43.520000pt;}
.fs4_c01456{font-size:46.080000pt;}
.fs3_c01456{font-size:48.640000pt;}
.fs1_c01456{font-size:51.200000pt;}
.fs0_c01456{font-size:53.760000pt;}
.fs7_c01456{font-size:56.320000pt;}
.fs8_c01456{font-size:58.880000pt;}
.fs9_c01456{font-size:61.440000pt;}
.fsd_c01456{font-size:64.000000pt;}
.fs2_c01456{font-size:66.560000pt;}
.fs6_c01456{font-size:69.120000pt;}
.y0_c01456{bottom:0.000000pt;}
.y42_c01456{bottom:62.080000pt;}
.y41_c01456{bottom:65.280000pt;}
.y67_c01456{bottom:65.920000pt;}
.y68_c01456{bottom:67.200000pt;}
.y5f_c01456{bottom:67.840000pt;}
.y40_c01456{bottom:99.840000pt;}
.y3f_c01456{bottom:101.760000pt;}
.y3e_c01456{bottom:103.040000pt;}
.y65_c01456{bottom:104.320000pt;}
.y66_c01456{bottom:104.960000pt;}
.y5e_c01456{bottom:105.600000pt;}
.y3d_c01456{bottom:138.880000pt;}
.y3c_c01456{bottom:142.080000pt;}
.y62_c01456{bottom:142.720000pt;}
.y63_c01456{bottom:143.360000pt;}
.y64_c01456{bottom:145.280000pt;}
.y3b_c01456{bottom:179.200000pt;}
.y3a_c01456{bottom:179.840000pt;}
.y60_c01456{bottom:181.120000pt;}
.y39_c01456{bottom:181.760000pt;}
.y61_c01456{bottom:183.040000pt;}
.y36_c01456{bottom:218.880000pt;}
.y37_c01456{bottom:220.160000pt;}
.y35_c01456{bottom:220.800000pt;}
.y38_c01456{bottom:221.440000pt;}
.y34_c01456{bottom:264.960000pt;}
.y33_c01456{bottom:266.880000pt;}
.y5c_c01456{bottom:268.160000pt;}
.y5d_c01456{bottom:269.440000pt;}
.y5b_c01456{bottom:270.080000pt;}
.y32_c01456{bottom:304.000000pt;}
.y31_c01456{bottom:305.920000pt;}
.y5a_c01456{bottom:306.560000pt;}
.y59_c01456{bottom:307.200000pt;}
.y2e_c01456{bottom:342.400000pt;}
.y2f_c01456{bottom:343.680000pt;}
.y30_c01456{bottom:344.320000pt;}
.y2d_c01456{bottom:344.960000pt;}
.y58_c01456{bottom:347.520000pt;}
.y2c_c01456{bottom:380.800000pt;}
.y56_c01456{bottom:382.720000pt;}
.y2b_c01456{bottom:383.360000pt;}
.y57_c01456{bottom:385.920000pt;}
.y2a_c01456{bottom:419.840000pt;}
.y29_c01456{bottom:421.760000pt;}
.y25_c01456{bottom:457.600000pt;}
.y28_c01456{bottom:458.240000pt;}
.y55_c01456{bottom:459.520000pt;}
.y24_c01456{bottom:460.160000pt;}
.y27_c01456{bottom:460.800000pt;}
.y26_c01456{bottom:461.440000pt;}
.y23_c01456{bottom:496.000000pt;}
.y22_c01456{bottom:497.920000pt;}
.y53_c01456{bottom:498.560000pt;}
.y54_c01456{bottom:499.840000pt;}
.y1f_c01456{bottom:535.680000pt;}
.y1e_c01456{bottom:536.320000pt;}
.y21_c01456{bottom:537.600000pt;}
.y20_c01456{bottom:538.240000pt;}
.y1b_c01456{bottom:574.080000pt;}
.y1a_c01456{bottom:574.720000pt;}
.y52_c01456{bottom:575.360000pt;}
.y1d_c01456{bottom:576.000000pt;}
.y1c_c01456{bottom:576.640000pt;}
.y19_c01456{bottom:611.840000pt;}
.y51_c01456{bottom:612.480000pt;}
.y17_c01456{bottom:613.120000pt;}
.y16_c01456{bottom:613.760000pt;}
.y18_c01456{bottom:615.680000pt;}
.y14_c01456{bottom:651.520000pt;}
.y50_c01456{bottom:652.160000pt;}
.y4f_c01456{bottom:652.800000pt;}
.y4e_c01456{bottom:653.440000pt;}
.y15_c01456{bottom:654.080000pt;}
.y4b_c01456{bottom:689.280000pt;}
.y12_c01456{bottom:689.920000pt;}
.y13_c01456{bottom:690.560000pt;}
.y4c_c01456{bottom:692.480000pt;}
.y4d_c01456{bottom:693.120000pt;}
.yf_c01456{bottom:728.320000pt;}
.y10_c01456{bottom:728.960000pt;}
.y11_c01456{bottom:730.880000pt;}
.ye_c01456{bottom:766.080000pt;}
.yd_c01456{bottom:767.360000pt;}
.y4a_c01456{bottom:768.640000pt;}
.yc_c01456{bottom:803.840000pt;}
.y9_c01456{bottom:804.480000pt;}
.y8_c01456{bottom:805.120000pt;}
.yb_c01456{bottom:807.040000pt;}
.ya_c01456{bottom:807.680000pt;}
.y7_c01456{bottom:842.880000pt;}
.y48_c01456{bottom:843.520000pt;}
.y6_c01456{bottom:844.160000pt;}
.y49_c01456{bottom:846.080000pt;}
.y4_c01456{bottom:880.640000pt;}
.y5_c01456{bottom:881.280000pt;}
.y45_c01456{bottom:881.920000pt;}
.y3_c01456{bottom:882.560000pt;}
.y47_c01456{bottom:883.840000pt;}
.y46_c01456{bottom:884.480000pt;}
.y2_c01456{bottom:919.040000pt;}
.y44_c01456{bottom:920.320000pt;}
.y1_c01456{bottom:920.960000pt;}
.y43_c01456{bottom:976.640000pt;}
.he_c01456{height:29.948750pt;}
.h7_c01456{height:32.252500pt;}
.hc_c01456{height:36.860000pt;}
.hd_c01456{height:39.163750pt;}
.h6_c01456{height:41.467500pt;}
.h5_c01456{height:43.771250pt;}
.h3_c01456{height:46.075000pt;}
.h2_c01456{height:48.378750pt;}
.h9_c01456{height:50.682500pt;}
.ha_c01456{height:52.986250pt;}
.hb_c01456{height:55.290000pt;}
.hf_c01456{height:57.593750pt;}
.h4_c01456{height:59.897500pt;}
.h8_c01456{height:62.201250pt;}
.h1_c01456{height:1032.666667pt;}
.h0_c01456{height:1032.960000pt;}
.w1_c01456{width:700.000000pt;}
.w0_c01456{width:700.160000pt;}
.x0_c01456{left:0.000000pt;}
.x1_c01456{left:48.000000pt;}
.x4_c01456{left:49.280000pt;}
.x1f_c01456{left:86.400000pt;}
.x1e_c01456{left:87.680000pt;}
.x2_c01456{left:96.000000pt;}
.x7_c01456{left:97.280000pt;}
.x3_c01456{left:136.320000pt;}
.x1b_c01456{left:145.280000pt;}
.x20_c01456{left:155.520000pt;}
.x1a_c01456{left:164.480000pt;}
.xd_c01456{left:173.440000pt;}
.x17_c01456{left:182.400000pt;}
.x5_c01456{left:183.680000pt;}
.x8_c01456{left:202.880000pt;}
.x6_c01456{left:221.440000pt;}
.xe_c01456{left:231.040000pt;}
.x9_c01456{left:251.520000pt;}
.x1c_c01456{left:261.760000pt;}
.xf_c01456{left:270.080000pt;}
.xa_c01456{left:289.280000pt;}
.x14_c01456{left:298.240000pt;}
.x1d_c01456{left:299.520000pt;}
.x18_c01456{left:309.120000pt;}
.x10_c01456{left:318.080000pt;}
.x12_c01456{left:346.880000pt;}
.x19_c01456{left:357.120000pt;}
.x16_c01456{left:365.440000pt;}
.xb_c01456{left:376.320000pt;}
.x15_c01456{left:394.880000pt;}
.x13_c01456{left:404.480000pt;}
.xc_c01456{left:414.080000pt;}
.x11_c01456{left:433.920000pt;}
.x31_c01456{left:511.360000pt;}
.x22_c01456{left:512.640000pt;}
.x29_c01456{left:520.960000pt;}
.x26_c01456{left:540.160000pt;}
.x2b_c01456{left:568.320000pt;}
.x23_c01456{left:569.600000pt;}
.x2e_c01456{left:589.440000pt;}
.x21_c01456{left:595.200000pt;}
.x2a_c01456{left:597.760000pt;}
.x24_c01456{left:599.040000pt;}
.x2f_c01456{left:606.720000pt;}
.x2d_c01456{left:608.000000pt;}
.x25_c01456{left:627.840000pt;}
.x2c_c01456{left:635.520000pt;}
.x27_c01456{left:636.800000pt;}
.x30_c01456{left:654.080000pt;}
.x28_c01456{left:655.360000pt;}
}





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

.ir_c01457:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01457{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01457;src:url('chunks/assets/font_7cf2ab7aaa8dc684466e309c.woff2')format("woff");}.ff1_c01457{font-family:ff1_c01457;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m43_c01457{transform:matrix(0.096350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096350,0.000000,0.000000,0.250000,0,0);}
.m26_c01457{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.md_c01457{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.m32_c01457{transform:matrix(0.240975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240975,0.000000,0.000000,0.250000,0,0);}
.m23_c01457{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m2f_c01457{transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);}
.m44_c01457{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4f_c01457{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);}
.m36_c01457{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);}
.m54_c01457{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);}
.m37_c01457{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.me_c01457{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.mf_c01457{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);}
.m33_c01457{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m18_c01457{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);}
.m4d_c01457{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m25_c01457{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_c01457{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m35_c01457{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m11_c01457{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m10_c01457{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01457{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m16_c01457{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m27_c01457{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m19_c01457{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1_c01457{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01457{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01457{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m42_c01457{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m49_c01457{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m24_c01457{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m20_c01457{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m22_c01457{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);}
.m30_c01457{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);}
.m4b_c01457{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_c01457{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.ma_c01457{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);}
.m3f_c01457{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01457{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);}
.m48_c01457{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);}
.m12_c01457{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.mc_c01457{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);}
.mb_c01457{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);}
.m17_c01457{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m38_c01457{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);}
.m2c_c01457{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);}
.m28_c01457{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m6_c01457{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m5_c01457{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m50_c01457{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);}
.m1a_c01457{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);}
.m52_c01457{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);}
.m40_c01457{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01457{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m39_c01457{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m31_c01457{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m55_c01457{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);}
.m3a_c01457{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01457{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m13_c01457{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m46_c01457{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m8_c01457{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);}
.m3_c01457{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01457{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);}
.m2e_c01457{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m51_c01457{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m56_c01457{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m0_c01457{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);}
.m47_c01457{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);}
.m7_c01457{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m21_c01457{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01457{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);}
.m1c_c01457{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m2_c01457{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);}
.m4c_c01457{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m29_c01457{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m4_c01457{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);}
.m9_c01457{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m15_c01457{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m53_c01457{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01457{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m34_c01457{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m41_c01457{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m57_c01457{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01457{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m45_c01457{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01457{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);}
.m4e_c01457{transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);}
.v2_c01457{vertical-align:-8.640000px;}
.v0_c01457{vertical-align:0.000000px;}
.v1_c01457{vertical-align:5.760000px;}
.v3_c01457{vertical-align:8.640000px;}
.ls1_c01457{letter-spacing:0.000000px;}
.ls0_c01457{letter-spacing:88.309680px;}
.sc__c01457{text-shadow:none;}
.sc0_c01457{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01457{-webkit-text-stroke:0px transparent;}
.sc0_c01457{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01457{word-spacing:0.000000px;}
.ws0_c01457{word-spacing:0.504000px;}
.ws1_c01457{word-spacing:1.135440px;}
.fc0_c01457{color:transparent;}
.fsf_c01457{font-size:20.160000px;}
.fs4_c01457{font-size:23.040000px;}
.fse_c01457{font-size:34.560000px;}
.fs3_c01457{font-size:37.440000px;}
.fsb_c01457{font-size:46.080000px;}
.fs2_c01457{font-size:48.960000px;}
.fs5_c01457{font-size:51.840000px;}
.fs0_c01457{font-size:54.720000px;}
.fs6_c01457{font-size:57.600000px;}
.fs9_c01457{font-size:60.480000px;}
.fs1_c01457{font-size:63.360000px;}
.fsa_c01457{font-size:66.240000px;}
.fsc_c01457{font-size:69.120000px;}
.fs7_c01457{font-size:72.000000px;}
.fsd_c01457{font-size:74.880000px;}
.fs8_c01457{font-size:77.760000px;}
.y0_c01457{bottom:0.000000px;}
.y61_c01457{bottom:119.520000px;}
.y60_c01457{bottom:154.800000px;}
.y4c_c01457{bottom:171.360000px;}
.y4d_c01457{bottom:172.800000px;}
.y5e_c01457{bottom:185.760000px;}
.y5f_c01457{bottom:186.480000px;}
.y4b_c01457{bottom:204.480000px;}
.y57_c01457{bottom:205.200000px;}
.y4a_c01457{bottom:206.640000px;}
.y49_c01457{bottom:207.360000px;}
.y5d_c01457{bottom:218.880000px;}
.y5c_c01457{bottom:219.600000px;}
.y48_c01457{bottom:237.600000px;}
.y47_c01457{bottom:238.320000px;}
.y5a_c01457{bottom:248.400000px;}
.y5b_c01457{bottom:249.120000px;}
.y59_c01457{bottom:250.560000px;}
.y45_c01457{bottom:270.720000px;}
.y46_c01457{bottom:272.160000px;}
.y58_c01457{bottom:282.960000px;}
.y56_c01457{bottom:301.680000px;}
.y55_c01457{bottom:303.120000px;}
.y44_c01457{bottom:303.840000px;}
.y4e_c01457{bottom:315.360000px;}
.y4f_c01457{bottom:317.520000px;}
.y42_c01457{bottom:334.080000px;}
.y3f_c01457{bottom:334.800000px;}
.y40_c01457{bottom:335.520000px;}
.y43_c01457{bottom:336.240000px;}
.y41_c01457{bottom:336.960000px;}
.y50_c01457{bottom:375.840000px;}
.y51_c01457{bottom:376.560000px;}
.y52_c01457{bottom:378.000000px;}
.y54_c01457{bottom:378.720000px;}
.y53_c01457{bottom:379.440000px;}
.y3b_c01457{bottom:418.320000px;}
.y3a_c01457{bottom:419.760000px;}
.y3d_c01457{bottom:420.480000px;}
.y3c_c01457{bottom:422.640000px;}
.y3e_c01457{bottom:423.360000px;}
.y36_c01457{bottom:462.960000px;}
.y39_c01457{bottom:463.680000px;}
.y35_c01457{bottom:465.120000px;}
.y37_c01457{bottom:465.840000px;}
.y38_c01457{bottom:466.560000px;}
.y31_c01457{bottom:527.040000px;}
.y32_c01457{bottom:527.760000px;}
.y33_c01457{bottom:528.480000px;}
.y30_c01457{bottom:529.200000px;}
.y34_c01457{bottom:529.920000px;}
.y2f_c01457{bottom:571.680000px;}
.y29_c01457{bottom:602.640000px;}
.y2c_c01457{bottom:603.360000px;}
.y2a_c01457{bottom:604.080000px;}
.y2e_c01457{bottom:604.800000px;}
.y28_c01457{bottom:605.520000px;}
.y2d_c01457{bottom:606.240000px;}
.y2b_c01457{bottom:606.960000px;}
.y25_c01457{bottom:645.840000px;}
.y26_c01457{bottom:647.280000px;}
.y24_c01457{bottom:648.000000px;}
.y27_c01457{bottom:650.160000px;}
.y1f_c01457{bottom:689.760000px;}
.y22_c01457{bottom:690.480000px;}
.y1e_c01457{bottom:691.200000px;}
.y23_c01457{bottom:691.920000px;}
.y21_c01457{bottom:693.360000px;}
.y20_c01457{bottom:694.080000px;}
.y1b_c01457{bottom:734.400000px;}
.y1d_c01457{bottom:735.120000px;}
.y1c_c01457{bottom:736.560000px;}
.y19_c01457{bottom:777.600000px;}
.y18_c01457{bottom:779.040000px;}
.y1a_c01457{bottom:779.760000px;}
.y16_c01457{bottom:819.360000px;}
.y17_c01457{bottom:820.080000px;}
.y14_c01457{bottom:820.800000px;}
.y13_c01457{bottom:821.520000px;}
.y15_c01457{bottom:822.240000px;}
.y11_c01457{bottom:862.560000px;}
.y12_c01457{bottom:865.440000px;}
.y10_c01457{bottom:866.160000px;}
.yf_c01457{bottom:915.120000px;}
.yd_c01457{bottom:948.960000px;}
.yc_c01457{bottom:949.680000px;}
.ya_c01457{bottom:950.400000px;}
.yb_c01457{bottom:951.840000px;}
.ye_c01457{bottom:952.560000px;}
.y7_c01457{bottom:991.440000px;}
.y8_c01457{bottom:992.880000px;}
.y9_c01457{bottom:993.600000px;}
.y6_c01457{bottom:995.040000px;}
.y4_c01457{bottom:1036.080000px;}
.y2_c01457{bottom:1036.800000px;}
.y1_c01457{bottom:1037.520000px;}
.y5_c01457{bottom:1038.240000px;}
.y3_c01457{bottom:1038.960000px;}
.h13_c01457{height:18.142031px;}
.h6_c01457{height:20.733750px;}
.h12_c01457{height:31.100625px;}
.h5_c01457{height:33.692344px;}
.hd_c01457{height:41.467500px;}
.h4_c01457{height:44.059219px;}
.h7_c01457{height:46.650937px;}
.h2_c01457{height:49.242656px;}
.h8_c01457{height:51.834375px;}
.hf_c01457{height:52.410938px;}
.hb_c01457{height:54.426094px;}
.h11_c01457{height:55.290937px;}
.h3_c01457{height:57.017812px;}
.hc_c01457{height:59.609531px;}
.he_c01457{height:62.201250px;}
.h9_c01457{height:64.792969px;}
.h10_c01457{height:67.384687px;}
.ha_c01457{height:69.976406px;}
.h0_c01457{height:1160.640000px;}
.h1_c01457{height:1161.000000px;}
.w0_c01457{width:777.600000px;}
.w1_c01457{width:777.750000px;}
.x0_c01457{left:0.000000px;}
.x1_c01457{left:54.720000px;}
.xf_c01457{left:97.200000px;}
.x2_c01457{left:98.640000px;}
.x14_c01457{left:108.720000px;}
.x26_c01457{left:119.520000px;}
.x3a_c01457{left:131.040000px;}
.x3e_c01457{left:140.400000px;}
.x39_c01457{left:142.560000px;}
.x3b_c01457{left:153.360000px;}
.x15_c01457{left:162.720000px;}
.x3d_c01457{left:173.520000px;}
.x3_c01457{left:184.320000px;}
.x3c_c01457{left:185.760000px;}
.x10_c01457{left:195.120000px;}
.x16_c01457{left:205.200000px;}
.x21_c01457{left:207.360000px;}
.x35_c01457{left:227.520000px;}
.x4_c01457{left:238.320000px;}
.x1a_c01457{left:249.120000px;}
.x27_c01457{left:282.960000px;}
.x17_c01457{left:291.600000px;}
.x5_c01457{left:293.040000px;}
.x36_c01457{left:303.840000px;}
.x1d_c01457{left:315.360000px;}
.x28_c01457{left:324.000000px;}
.x6_c01457{left:326.160000px;}
.x7_c01457{left:336.960000px;}
.x18_c01457{left:347.040000px;}
.x1e_c01457{left:368.640000px;}
.x2e_c01457{left:380.880000px;}
.x12_c01457{left:389.520000px;}
.x37_c01457{left:401.760000px;}
.x8_c01457{left:423.360000px;}
.x9_c01457{left:433.440000px;}
.x2f_c01457{left:442.800000px;}
.x13_c01457{left:444.240000px;}
.x32_c01457{left:453.600000px;}
.x33_c01457{left:455.760000px;}
.x29_c01457{left:465.840000px;}
.x30_c01457{left:475.920000px;}
.xa_c01457{left:477.360000px;}
.x31_c01457{left:486.720000px;}
.x1f_c01457{left:507.600000px;}
.x22_c01457{left:518.400000px;}
.xb_c01457{left:531.360000px;}
.x2a_c01457{left:540.720000px;}
.x23_c01457{left:551.520000px;}
.x2b_c01457{left:562.320000px;}
.x38_c01457{left:573.840000px;}
.x20_c01457{left:585.360000px;}
.x2c_c01457{left:594.000000px;}
.x42_c01457{left:595.440000px;}
.x1c_c01457{left:606.240000px;}
.x24_c01457{left:617.040000px;}
.x43_c01457{left:627.120000px;}
.x40_c01457{left:628.560000px;}
.x19_c01457{left:639.360000px;}
.xc_c01457{left:640.800000px;}
.x3f_c01457{left:649.440000px;}
.x25_c01457{left:650.880000px;}
.x34_c01457{left:660.240000px;}
.x41_c01457{left:671.040000px;}
.xd_c01457{left:673.200000px;}
.x11_c01457{left:682.560000px;}
.x1b_c01457{left:715.680000px;}
.xe_c01457{left:717.120000px;}
.x2d_c01457{left:770.400000px;}
@media print{
.v2_c01457{vertical-align:-7.680000pt;}
.v0_c01457{vertical-align:0.000000pt;}
.v1_c01457{vertical-align:5.120000pt;}
.v3_c01457{vertical-align:7.680000pt;}
.ls1_c01457{letter-spacing:0.000000pt;}
.ls0_c01457{letter-spacing:78.497493pt;}
.ws2_c01457{word-spacing:0.000000pt;}
.ws0_c01457{word-spacing:0.448000pt;}
.ws1_c01457{word-spacing:1.009280pt;}
.fsf_c01457{font-size:17.920000pt;}
.fs4_c01457{font-size:20.480000pt;}
.fse_c01457{font-size:30.720000pt;}
.fs3_c01457{font-size:33.280000pt;}
.fsb_c01457{font-size:40.960000pt;}
.fs2_c01457{font-size:43.520000pt;}
.fs5_c01457{font-size:46.080000pt;}
.fs0_c01457{font-size:48.640000pt;}
.fs6_c01457{font-size:51.200000pt;}
.fs9_c01457{font-size:53.760000pt;}
.fs1_c01457{font-size:56.320000pt;}
.fsa_c01457{font-size:58.880000pt;}
.fsc_c01457{font-size:61.440000pt;}
.fs7_c01457{font-size:64.000000pt;}
.fsd_c01457{font-size:66.560000pt;}
.fs8_c01457{font-size:69.120000pt;}
.y0_c01457{bottom:0.000000pt;}
.y61_c01457{bottom:106.240000pt;}
.y60_c01457{bottom:137.600000pt;}
.y4c_c01457{bottom:152.320000pt;}
.y4d_c01457{bottom:153.600000pt;}
.y5e_c01457{bottom:165.120000pt;}
.y5f_c01457{bottom:165.760000pt;}
.y4b_c01457{bottom:181.760000pt;}
.y57_c01457{bottom:182.400000pt;}
.y4a_c01457{bottom:183.680000pt;}
.y49_c01457{bottom:184.320000pt;}
.y5d_c01457{bottom:194.560000pt;}
.y5c_c01457{bottom:195.200000pt;}
.y48_c01457{bottom:211.200000pt;}
.y47_c01457{bottom:211.840000pt;}
.y5a_c01457{bottom:220.800000pt;}
.y5b_c01457{bottom:221.440000pt;}
.y59_c01457{bottom:222.720000pt;}
.y45_c01457{bottom:240.640000pt;}
.y46_c01457{bottom:241.920000pt;}
.y58_c01457{bottom:251.520000pt;}
.y56_c01457{bottom:268.160000pt;}
.y55_c01457{bottom:269.440000pt;}
.y44_c01457{bottom:270.080000pt;}
.y4e_c01457{bottom:280.320000pt;}
.y4f_c01457{bottom:282.240000pt;}
.y42_c01457{bottom:296.960000pt;}
.y3f_c01457{bottom:297.600000pt;}
.y40_c01457{bottom:298.240000pt;}
.y43_c01457{bottom:298.880000pt;}
.y41_c01457{bottom:299.520000pt;}
.y50_c01457{bottom:334.080000pt;}
.y51_c01457{bottom:334.720000pt;}
.y52_c01457{bottom:336.000000pt;}
.y54_c01457{bottom:336.640000pt;}
.y53_c01457{bottom:337.280000pt;}
.y3b_c01457{bottom:371.840000pt;}
.y3a_c01457{bottom:373.120000pt;}
.y3d_c01457{bottom:373.760000pt;}
.y3c_c01457{bottom:375.680000pt;}
.y3e_c01457{bottom:376.320000pt;}
.y36_c01457{bottom:411.520000pt;}
.y39_c01457{bottom:412.160000pt;}
.y35_c01457{bottom:413.440000pt;}
.y37_c01457{bottom:414.080000pt;}
.y38_c01457{bottom:414.720000pt;}
.y31_c01457{bottom:468.480000pt;}
.y32_c01457{bottom:469.120000pt;}
.y33_c01457{bottom:469.760000pt;}
.y30_c01457{bottom:470.400000pt;}
.y34_c01457{bottom:471.040000pt;}
.y2f_c01457{bottom:508.160000pt;}
.y29_c01457{bottom:535.680000pt;}
.y2c_c01457{bottom:536.320000pt;}
.y2a_c01457{bottom:536.960000pt;}
.y2e_c01457{bottom:537.600000pt;}
.y28_c01457{bottom:538.240000pt;}
.y2d_c01457{bottom:538.880000pt;}
.y2b_c01457{bottom:539.520000pt;}
.y25_c01457{bottom:574.080000pt;}
.y26_c01457{bottom:575.360000pt;}
.y24_c01457{bottom:576.000000pt;}
.y27_c01457{bottom:577.920000pt;}
.y1f_c01457{bottom:613.120000pt;}
.y22_c01457{bottom:613.760000pt;}
.y1e_c01457{bottom:614.400000pt;}
.y23_c01457{bottom:615.040000pt;}
.y21_c01457{bottom:616.320000pt;}
.y20_c01457{bottom:616.960000pt;}
.y1b_c01457{bottom:652.800000pt;}
.y1d_c01457{bottom:653.440000pt;}
.y1c_c01457{bottom:654.720000pt;}
.y19_c01457{bottom:691.200000pt;}
.y18_c01457{bottom:692.480000pt;}
.y1a_c01457{bottom:693.120000pt;}
.y16_c01457{bottom:728.320000pt;}
.y17_c01457{bottom:728.960000pt;}
.y14_c01457{bottom:729.600000pt;}
.y13_c01457{bottom:730.240000pt;}
.y15_c01457{bottom:730.880000pt;}
.y11_c01457{bottom:766.720000pt;}
.y12_c01457{bottom:769.280000pt;}
.y10_c01457{bottom:769.920000pt;}
.yf_c01457{bottom:813.440000pt;}
.yd_c01457{bottom:843.520000pt;}
.yc_c01457{bottom:844.160000pt;}
.ya_c01457{bottom:844.800000pt;}
.yb_c01457{bottom:846.080000pt;}
.ye_c01457{bottom:846.720000pt;}
.y7_c01457{bottom:881.280000pt;}
.y8_c01457{bottom:882.560000pt;}
.y9_c01457{bottom:883.200000pt;}
.y6_c01457{bottom:884.480000pt;}
.y4_c01457{bottom:920.960000pt;}
.y2_c01457{bottom:921.600000pt;}
.y1_c01457{bottom:922.240000pt;}
.y5_c01457{bottom:922.880000pt;}
.y3_c01457{bottom:923.520000pt;}
.h13_c01457{height:16.126250pt;}
.h6_c01457{height:18.430000pt;}
.h12_c01457{height:27.645000pt;}
.h5_c01457{height:29.948750pt;}
.hd_c01457{height:36.860000pt;}
.h4_c01457{height:39.163750pt;}
.h7_c01457{height:41.467500pt;}
.h2_c01457{height:43.771250pt;}
.h8_c01457{height:46.075000pt;}
.hf_c01457{height:46.587500pt;}
.hb_c01457{height:48.378750pt;}
.h11_c01457{height:49.147500pt;}
.h3_c01457{height:50.682500pt;}
.hc_c01457{height:52.986250pt;}
.he_c01457{height:55.290000pt;}
.h9_c01457{height:57.593750pt;}
.h10_c01457{height:59.897500pt;}
.ha_c01457{height:62.201250pt;}
.h0_c01457{height:1031.680000pt;}
.h1_c01457{height:1032.000000pt;}
.w0_c01457{width:691.200000pt;}
.w1_c01457{width:691.333333pt;}
.x0_c01457{left:0.000000pt;}
.x1_c01457{left:48.640000pt;}
.xf_c01457{left:86.400000pt;}
.x2_c01457{left:87.680000pt;}
.x14_c01457{left:96.640000pt;}
.x26_c01457{left:106.240000pt;}
.x3a_c01457{left:116.480000pt;}
.x3e_c01457{left:124.800000pt;}
.x39_c01457{left:126.720000pt;}
.x3b_c01457{left:136.320000pt;}
.x15_c01457{left:144.640000pt;}
.x3d_c01457{left:154.240000pt;}
.x3_c01457{left:163.840000pt;}
.x3c_c01457{left:165.120000pt;}
.x10_c01457{left:173.440000pt;}
.x16_c01457{left:182.400000pt;}
.x21_c01457{left:184.320000pt;}
.x35_c01457{left:202.240000pt;}
.x4_c01457{left:211.840000pt;}
.x1a_c01457{left:221.440000pt;}
.x27_c01457{left:251.520000pt;}
.x17_c01457{left:259.200000pt;}
.x5_c01457{left:260.480000pt;}
.x36_c01457{left:270.080000pt;}
.x1d_c01457{left:280.320000pt;}
.x28_c01457{left:288.000000pt;}
.x6_c01457{left:289.920000pt;}
.x7_c01457{left:299.520000pt;}
.x18_c01457{left:308.480000pt;}
.x1e_c01457{left:327.680000pt;}
.x2e_c01457{left:338.560000pt;}
.x12_c01457{left:346.240000pt;}
.x37_c01457{left:357.120000pt;}
.x8_c01457{left:376.320000pt;}
.x9_c01457{left:385.280000pt;}
.x2f_c01457{left:393.600000pt;}
.x13_c01457{left:394.880000pt;}
.x32_c01457{left:403.200000pt;}
.x33_c01457{left:405.120000pt;}
.x29_c01457{left:414.080000pt;}
.x30_c01457{left:423.040000pt;}
.xa_c01457{left:424.320000pt;}
.x31_c01457{left:432.640000pt;}
.x1f_c01457{left:451.200000pt;}
.x22_c01457{left:460.800000pt;}
.xb_c01457{left:472.320000pt;}
.x2a_c01457{left:480.640000pt;}
.x23_c01457{left:490.240000pt;}
.x2b_c01457{left:499.840000pt;}
.x38_c01457{left:510.080000pt;}
.x20_c01457{left:520.320000pt;}
.x2c_c01457{left:528.000000pt;}
.x42_c01457{left:529.280000pt;}
.x1c_c01457{left:538.880000pt;}
.x24_c01457{left:548.480000pt;}
.x43_c01457{left:557.440000pt;}
.x40_c01457{left:558.720000pt;}
.x19_c01457{left:568.320000pt;}
.xc_c01457{left:569.600000pt;}
.x3f_c01457{left:577.280000pt;}
.x25_c01457{left:578.560000pt;}
.x34_c01457{left:586.880000pt;}
.x41_c01457{left:596.480000pt;}
.xd_c01457{left:598.400000pt;}
.x11_c01457{left:606.720000pt;}
.x1b_c01457{left:636.160000pt;}
.xe_c01457{left:637.440000pt;}
.x2d_c01457{left:684.800000pt;}
}





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

.ir_c01458:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01458{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01458;src:url('chunks/assets/font_d8e90bdcd1eb091bd2d8fefe.woff2')format("woff");}.ff1_c01458{font-family:ff1_c01458;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m35_c01458{transform:matrix(0.227475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227475,0.000000,0.000000,0.250000,0,0);}
.m36_c01458{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m5_c01458{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m38_c01458{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m14_c01458{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m19_c01458{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);}
.m37_c01458{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m12_c01458{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);}
.m49_c01458{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);}
.m30_c01458{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m16_c01458{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);}
.m50_c01458{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);}
.m31_c01458{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);}
.m41_c01458{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m6_c01458{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1_c01458{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01458{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m3_c01458{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01458{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m4_c01458{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01458{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m17_c01458{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.me_c01458{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m15_c01458{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);}
.m33_c01458{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01458{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m0_c01458{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m25_c01458{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m32_c01458{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_c01458{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m28_c01458{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);}
.m34_c01458{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m58_c01458{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);}
.m59_c01458{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m45_c01458{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m9_c01458{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);}
.m2e_c01458{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);}
.m4d_c01458{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m22_c01458{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01458{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);}
.m13_c01458{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);}
.mb_c01458{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01458{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01458{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m26_c01458{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m43_c01458{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);}
.m23_c01458{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);}
.m51_c01458{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m48_c01458{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);}
.m56_c01458{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m24_c01458{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m29_c01458{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);}
.m3e_c01458{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);}
.m4a_c01458{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m2_c01458{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01458{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m52_c01458{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);}
.m3d_c01458{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m47_c01458{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m21_c01458{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);}
.m44_c01458{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.ma_c01458{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);}
.m2a_c01458{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);}
.m54_c01458{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m7_c01458{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);}
.m20_c01458{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m46_c01458{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);}
.m2d_c01458{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01458{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m53_c01458{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01458{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01458{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01458{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01458{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m27_c01458{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01458{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);}
.m3b_c01458{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.md_c01458{transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);}
.m57_c01458{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.mc_c01458{transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);}
.m55_c01458{transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);}
.m39_c01458{transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01458{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);}
.m3a_c01458{transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);}
.mf_c01458{transform:matrix(0.767500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.767500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.767500,0.000000,0.000000,0.250000,0,0);}
.m42_c01458{transform:matrix(0.805000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.805000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.805000,0.000000,0.000000,0.250000,0,0);}
.m5a_c01458{transform:matrix(0.817500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.817500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.817500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01458{transform:matrix(0.980000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.980000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.980000,0.000000,0.000000,0.250000,0,0);}
.m40_c01458{transform:matrix(0.985000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.985000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.985000,0.000000,0.000000,0.250000,0,0);}
.m18_c01458{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.m11_c01458{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.v0_c01458{vertical-align:0.000000px;}
.v1_c01458{vertical-align:2.880000px;}
.ls0_c01458{letter-spacing:0.000000px;}
.sc__c01458{text-shadow:none;}
.sc0_c01458{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01458{-webkit-text-stroke:0px transparent;}
.sc0_c01458{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01458{word-spacing:0.000000px;}
.ws1_c01458{word-spacing:109.618800px;}
.ws2_c01458{word-spacing:113.042471px;}
.ws0_c01458{word-spacing:161.376538px;}
.fc0_c01458{color:transparent;}
.fsa_c01458{font-size:14.400000px;}
.fs7_c01458{font-size:17.280000px;}
.fsd_c01458{font-size:20.160000px;}
.fse_c01458{font-size:23.040000px;}
.fs6_c01458{font-size:34.560000px;}
.fs10_c01458{font-size:37.440000px;}
.fs1_c01458{font-size:43.200000px;}
.fs2_c01458{font-size:46.080000px;}
.fs3_c01458{font-size:48.960000px;}
.fs5_c01458{font-size:51.840000px;}
.fs9_c01458{font-size:54.720000px;}
.fs8_c01458{font-size:57.600000px;}
.fs4_c01458{font-size:60.480000px;}
.fsb_c01458{font-size:63.360000px;}
.fsc_c01458{font-size:66.240000px;}
.fsf_c01458{font-size:69.120000px;}
.fs11_c01458{font-size:72.000000px;}
.fs0_c01458{font-size:77.760000px;}
.y0_c01458{bottom:0.000000px;}
.y67_c01458{bottom:95.040000px;}
.y68_c01458{bottom:95.760000px;}
.y6d_c01458{bottom:97.200000px;}
.y6a_c01458{bottom:97.920000px;}
.y69_c01458{bottom:98.640000px;}
.y6c_c01458{bottom:99.360000px;}
.y6b_c01458{bottom:100.080000px;}
.y66_c01458{bottom:141.120000px;}
.y64_c01458{bottom:141.840000px;}
.y65_c01458{bottom:142.560000px;}
.y63_c01458{bottom:143.280000px;}
.y5f_c01458{bottom:182.160000px;}
.y61_c01458{bottom:183.600000px;}
.y60_c01458{bottom:184.320000px;}
.y5e_c01458{bottom:185.760000px;}
.y62_c01458{bottom:186.480000px;}
.y5a_c01458{bottom:226.080000px;}
.y5c_c01458{bottom:226.800000px;}
.y59_c01458{bottom:227.520000px;}
.y5b_c01458{bottom:228.240000px;}
.y58_c01458{bottom:228.960000px;}
.y5d_c01458{bottom:229.680000px;}
.y56_c01458{bottom:269.280000px;}
.y57_c01458{bottom:270.000000px;}
.y53_c01458{bottom:271.440000px;}
.y54_c01458{bottom:272.160000px;}
.y55_c01458{bottom:272.880000px;}
.y4f_c01458{bottom:312.480000px;}
.y52_c01458{bottom:313.200000px;}
.y4e_c01458{bottom:314.640000px;}
.y50_c01458{bottom:315.360000px;}
.y51_c01458{bottom:316.080000px;}
.y4d_c01458{bottom:367.200000px;}
.y42_c01458{bottom:409.680000px;}
.y41_c01458{bottom:410.400000px;}
.y4c_c01458{bottom:415.440000px;}
.y47_c01458{bottom:432.720000px;}
.y40_c01458{bottom:433.440000px;}
.y3d_c01458{bottom:474.480000px;}
.y3e_c01458{bottom:476.640000px;}
.y3f_c01458{bottom:477.360000px;}
.y4b_c01458{bottom:479.520000px;}
.y46_c01458{bottom:496.800000px;}
.y45_c01458{bottom:497.520000px;}
.y3c_c01458{bottom:498.240000px;}
.y3a_c01458{bottom:538.560000px;}
.y3b_c01458{bottom:540.720000px;}
.y39_c01458{bottom:541.440000px;}
.y4a_c01458{bottom:544.320000px;}
.y44_c01458{bottom:561.600000px;}
.y37_c01458{bottom:562.320000px;}
.y38_c01458{bottom:563.040000px;}
.y35_c01458{bottom:605.520000px;}
.y36_c01458{bottom:606.240000px;}
.y43_c01458{bottom:626.400000px;}
.y34_c01458{bottom:627.120000px;}
.y33_c01458{bottom:627.840000px;}
.y49_c01458{bottom:668.160000px;}
.y32_c01458{bottom:670.320000px;}
.y31_c01458{bottom:671.040000px;}
.y30_c01458{bottom:671.760000px;}
.y48_c01458{bottom:673.920000px;}
.y2d_c01458{bottom:680.400000px;}
.y2e_c01458{bottom:691.920000px;}
.y2f_c01458{bottom:692.640000px;}
.y2a_c01458{bottom:731.520000px;}
.y2c_c01458{bottom:732.240000px;}
.y2b_c01458{bottom:735.120000px;}
.y25_c01458{bottom:774.720000px;}
.y29_c01458{bottom:776.160000px;}
.y28_c01458{bottom:776.880000px;}
.y27_c01458{bottom:777.600000px;}
.y26_c01458{bottom:778.320000px;}
.y23_c01458{bottom:817.200000px;}
.y21_c01458{bottom:817.920000px;}
.y24_c01458{bottom:819.360000px;}
.y22_c01458{bottom:820.080000px;}
.y20_c01458{bottom:820.800000px;}
.y1d_c01458{bottom:871.920000px;}
.y1f_c01458{bottom:874.800000px;}
.y1e_c01458{bottom:875.520000px;}
.y1b_c01458{bottom:903.600000px;}
.y19_c01458{bottom:905.040000px;}
.y1c_c01458{bottom:906.480000px;}
.y18_c01458{bottom:907.200000px;}
.y1a_c01458{bottom:907.920000px;}
.y17_c01458{bottom:936.000000px;}
.y14_c01458{bottom:937.440000px;}
.y13_c01458{bottom:938.160000px;}
.y12_c01458{bottom:938.880000px;}
.y15_c01458{bottom:939.600000px;}
.y16_c01458{bottom:941.760000px;}
.ye_c01458{bottom:969.120000px;}
.y11_c01458{bottom:970.560000px;}
.yf_c01458{bottom:971.280000px;}
.yc_c01458{bottom:972.000000px;}
.y10_c01458{bottom:972.720000px;}
.yd_c01458{bottom:973.440000px;}
.ya_c01458{bottom:1002.960000px;}
.yb_c01458{bottom:1003.680000px;}
.y9_c01458{bottom:1004.400000px;}
.y5_c01458{bottom:1032.480000px;}
.y6_c01458{bottom:1033.200000px;}
.y7_c01458{bottom:1033.920000px;}
.y8_c01458{bottom:1034.640000px;}
.y2_c01458{bottom:1035.360000px;}
.y3_c01458{bottom:1036.080000px;}
.y4_c01458{bottom:1036.800000px;}
.y1_c01458{bottom:1108.800000px;}
.hc_c01458{height:12.958594px;}
.h9_c01458{height:15.550313px;}
.h10_c01458{height:18.142031px;}
.h11_c01458{height:20.733750px;}
.h8_c01458{height:31.100625px;}
.h13_c01458{height:33.692344px;}
.h3_c01458{height:38.875781px;}
.h4_c01458{height:41.467500px;}
.h5_c01458{height:44.059219px;}
.hf_c01458{height:44.347500px;}
.h7_c01458{height:46.650937px;}
.hb_c01458{height:49.242656px;}
.ha_c01458{height:51.834375px;}
.h6_c01458{height:54.426094px;}
.hd_c01458{height:57.017812px;}
.he_c01458{height:59.609531px;}
.h12_c01458{height:62.201250px;}
.h14_c01458{height:64.792969px;}
.h2_c01458{height:69.976406px;}
.h0_c01458{height:1160.640000px;}
.h1_c01458{height:1161.000000px;}
.w0_c01458{width:776.160000px;}
.w1_c01458{width:776.250000px;}
.x0_c01458{left:0.000000px;}
.x20_c01458{left:39.600000px;}
.x2_c01458{left:41.040000px;}
.x16_c01458{left:61.920000px;}
.x41_c01458{left:70.560000px;}
.x3_c01458{left:72.000000px;}
.x21_c01458{left:82.080000px;}
.x30_c01458{left:94.320000px;}
.x42_c01458{left:103.680000px;}
.x4_c01458{left:105.840000px;}
.x22_c01458{left:115.200000px;}
.x28_c01458{left:126.000000px;}
.x31_c01458{left:136.800000px;}
.x34_c01458{left:146.880000px;}
.x18_c01458{left:149.040000px;}
.x5_c01458{left:160.560000px;}
.x13_c01458{left:169.200000px;}
.x23_c01458{left:190.080000px;}
.x6_c01458{left:191.520000px;}
.x50_c01458{left:200.160000px;}
.x10_c01458{left:202.320000px;}
.x4a_c01458{left:212.400000px;}
.x43_c01458{left:223.920000px;}
.x7_c01458{left:225.360000px;}
.x2f_c01458{left:234.000000px;}
.x29_c01458{left:236.160000px;}
.x3b_c01458{left:244.800000px;}
.x19_c01458{left:246.240000px;}
.x24_c01458{left:257.040000px;}
.x51_c01458{left:266.400000px;}
.x8_c01458{left:267.840000px;}
.xe_c01458{left:288.720000px;}
.x2b_c01458{left:290.160000px;}
.x14_c01458{left:300.240000px;}
.x44_c01458{left:308.880000px;}
.x1a_c01458{left:310.320000px;}
.x9_c01458{left:321.840000px;}
.x11_c01458{left:323.280000px;}
.x35_c01458{left:330.480000px;}
.x4b_c01458{left:332.640000px;}
.x45_c01458{left:341.280000px;}
.x2a_c01458{left:343.440000px;}
.x1b_c01458{left:354.240000px;}
.x3c_c01458{left:364.320000px;}
.x52_c01458{left:374.400000px;}
.x46_c01458{left:385.200000px;}
.xa_c01458{left:386.640000px;}
.x36_c01458{left:396.720000px;}
.x2c_c01458{left:398.160000px;}
.x2e_c01458{left:408.960000px;}
.x53_c01458{left:417.600000px;}
.x1c_c01458{left:419.040000px;}
.x3d_c01458{left:429.120000px;}
.x54_c01458{left:450.720000px;}
.x2d_c01458{left:462.240000px;}
.x4c_c01458{left:471.600000px;}
.x47_c01458{left:473.040000px;}
.x55_c01458{left:482.400000px;}
.x25_c01458{left:484.560000px;}
.xb_c01458{left:486.000000px;}
.x48_c01458{left:493.200000px;}
.x15_c01458{left:494.640000px;}
.x17_c01458{left:496.080000px;}
.x37_c01458{left:504.720000px;}
.xf_c01458{left:506.160000px;}
.xc_c01458{left:516.240000px;}
.x12_c01458{left:527.040000px;}
.x49_c01458{left:536.400000px;}
.x26_c01458{left:537.840000px;}
.x1d_c01458{left:548.640000px;}
.xd_c01458{left:550.800000px;}
.x38_c01458{left:558.720000px;}
.x33_c01458{left:560.160000px;}
.x3e_c01458{left:568.800000px;}
.x32_c01458{left:570.960000px;}
.x1e_c01458{left:581.040000px;}
.x4d_c01458{left:590.400000px;}
.x39_c01458{left:611.280000px;}
.x3f_c01458{left:612.720000px;}
.x56_c01458{left:623.520000px;}
.x4e_c01458{left:632.880000px;}
.x27_c01458{left:635.760000px;}
.x1f_c01458{left:646.560000px;}
.x40_c01458{left:655.200000px;}
.x1_c01458{left:663.120000px;}
.x3a_c01458{left:666.720000px;}
.x4f_c01458{left:678.240000px;}
@media print{
.v0_c01458{vertical-align:0.000000pt;}
.v1_c01458{vertical-align:2.560000pt;}
.ls0_c01458{letter-spacing:0.000000pt;}
.ws3_c01458{word-spacing:0.000000pt;}
.ws1_c01458{word-spacing:97.438933pt;}
.ws2_c01458{word-spacing:100.482196pt;}
.ws0_c01458{word-spacing:143.445811pt;}
.fsa_c01458{font-size:12.800000pt;}
.fs7_c01458{font-size:15.360000pt;}
.fsd_c01458{font-size:17.920000pt;}
.fse_c01458{font-size:20.480000pt;}
.fs6_c01458{font-size:30.720000pt;}
.fs10_c01458{font-size:33.280000pt;}
.fs1_c01458{font-size:38.400000pt;}
.fs2_c01458{font-size:40.960000pt;}
.fs3_c01458{font-size:43.520000pt;}
.fs5_c01458{font-size:46.080000pt;}
.fs9_c01458{font-size:48.640000pt;}
.fs8_c01458{font-size:51.200000pt;}
.fs4_c01458{font-size:53.760000pt;}
.fsb_c01458{font-size:56.320000pt;}
.fsc_c01458{font-size:58.880000pt;}
.fsf_c01458{font-size:61.440000pt;}
.fs11_c01458{font-size:64.000000pt;}
.fs0_c01458{font-size:69.120000pt;}
.y0_c01458{bottom:0.000000pt;}
.y67_c01458{bottom:84.480000pt;}
.y68_c01458{bottom:85.120000pt;}
.y6d_c01458{bottom:86.400000pt;}
.y6a_c01458{bottom:87.040000pt;}
.y69_c01458{bottom:87.680000pt;}
.y6c_c01458{bottom:88.320000pt;}
.y6b_c01458{bottom:88.960000pt;}
.y66_c01458{bottom:125.440000pt;}
.y64_c01458{bottom:126.080000pt;}
.y65_c01458{bottom:126.720000pt;}
.y63_c01458{bottom:127.360000pt;}
.y5f_c01458{bottom:161.920000pt;}
.y61_c01458{bottom:163.200000pt;}
.y60_c01458{bottom:163.840000pt;}
.y5e_c01458{bottom:165.120000pt;}
.y62_c01458{bottom:165.760000pt;}
.y5a_c01458{bottom:200.960000pt;}
.y5c_c01458{bottom:201.600000pt;}
.y59_c01458{bottom:202.240000pt;}
.y5b_c01458{bottom:202.880000pt;}
.y58_c01458{bottom:203.520000pt;}
.y5d_c01458{bottom:204.160000pt;}
.y56_c01458{bottom:239.360000pt;}
.y57_c01458{bottom:240.000000pt;}
.y53_c01458{bottom:241.280000pt;}
.y54_c01458{bottom:241.920000pt;}
.y55_c01458{bottom:242.560000pt;}
.y4f_c01458{bottom:277.760000pt;}
.y52_c01458{bottom:278.400000pt;}
.y4e_c01458{bottom:279.680000pt;}
.y50_c01458{bottom:280.320000pt;}
.y51_c01458{bottom:280.960000pt;}
.y4d_c01458{bottom:326.400000pt;}
.y42_c01458{bottom:364.160000pt;}
.y41_c01458{bottom:364.800000pt;}
.y4c_c01458{bottom:369.280000pt;}
.y47_c01458{bottom:384.640000pt;}
.y40_c01458{bottom:385.280000pt;}
.y3d_c01458{bottom:421.760000pt;}
.y3e_c01458{bottom:423.680000pt;}
.y3f_c01458{bottom:424.320000pt;}
.y4b_c01458{bottom:426.240000pt;}
.y46_c01458{bottom:441.600000pt;}
.y45_c01458{bottom:442.240000pt;}
.y3c_c01458{bottom:442.880000pt;}
.y3a_c01458{bottom:478.720000pt;}
.y3b_c01458{bottom:480.640000pt;}
.y39_c01458{bottom:481.280000pt;}
.y4a_c01458{bottom:483.840000pt;}
.y44_c01458{bottom:499.200000pt;}
.y37_c01458{bottom:499.840000pt;}
.y38_c01458{bottom:500.480000pt;}
.y35_c01458{bottom:538.240000pt;}
.y36_c01458{bottom:538.880000pt;}
.y43_c01458{bottom:556.800000pt;}
.y34_c01458{bottom:557.440000pt;}
.y33_c01458{bottom:558.080000pt;}
.y49_c01458{bottom:593.920000pt;}
.y32_c01458{bottom:595.840000pt;}
.y31_c01458{bottom:596.480000pt;}
.y30_c01458{bottom:597.120000pt;}
.y48_c01458{bottom:599.040000pt;}
.y2d_c01458{bottom:604.800000pt;}
.y2e_c01458{bottom:615.040000pt;}
.y2f_c01458{bottom:615.680000pt;}
.y2a_c01458{bottom:650.240000pt;}
.y2c_c01458{bottom:650.880000pt;}
.y2b_c01458{bottom:653.440000pt;}
.y25_c01458{bottom:688.640000pt;}
.y29_c01458{bottom:689.920000pt;}
.y28_c01458{bottom:690.560000pt;}
.y27_c01458{bottom:691.200000pt;}
.y26_c01458{bottom:691.840000pt;}
.y23_c01458{bottom:726.400000pt;}
.y21_c01458{bottom:727.040000pt;}
.y24_c01458{bottom:728.320000pt;}
.y22_c01458{bottom:728.960000pt;}
.y20_c01458{bottom:729.600000pt;}
.y1d_c01458{bottom:775.040000pt;}
.y1f_c01458{bottom:777.600000pt;}
.y1e_c01458{bottom:778.240000pt;}
.y1b_c01458{bottom:803.200000pt;}
.y19_c01458{bottom:804.480000pt;}
.y1c_c01458{bottom:805.760000pt;}
.y18_c01458{bottom:806.400000pt;}
.y1a_c01458{bottom:807.040000pt;}
.y17_c01458{bottom:832.000000pt;}
.y14_c01458{bottom:833.280000pt;}
.y13_c01458{bottom:833.920000pt;}
.y12_c01458{bottom:834.560000pt;}
.y15_c01458{bottom:835.200000pt;}
.y16_c01458{bottom:837.120000pt;}
.ye_c01458{bottom:861.440000pt;}
.y11_c01458{bottom:862.720000pt;}
.yf_c01458{bottom:863.360000pt;}
.yc_c01458{bottom:864.000000pt;}
.y10_c01458{bottom:864.640000pt;}
.yd_c01458{bottom:865.280000pt;}
.ya_c01458{bottom:891.520000pt;}
.yb_c01458{bottom:892.160000pt;}
.y9_c01458{bottom:892.800000pt;}
.y5_c01458{bottom:917.760000pt;}
.y6_c01458{bottom:918.400000pt;}
.y7_c01458{bottom:919.040000pt;}
.y8_c01458{bottom:919.680000pt;}
.y2_c01458{bottom:920.320000pt;}
.y3_c01458{bottom:920.960000pt;}
.y4_c01458{bottom:921.600000pt;}
.y1_c01458{bottom:985.600000pt;}
.hc_c01458{height:11.518750pt;}
.h9_c01458{height:13.822500pt;}
.h10_c01458{height:16.126250pt;}
.h11_c01458{height:18.430000pt;}
.h8_c01458{height:27.645000pt;}
.h13_c01458{height:29.948750pt;}
.h3_c01458{height:34.556250pt;}
.h4_c01458{height:36.860000pt;}
.h5_c01458{height:39.163750pt;}
.hf_c01458{height:39.420000pt;}
.h7_c01458{height:41.467500pt;}
.hb_c01458{height:43.771250pt;}
.ha_c01458{height:46.075000pt;}
.h6_c01458{height:48.378750pt;}
.hd_c01458{height:50.682500pt;}
.he_c01458{height:52.986250pt;}
.h12_c01458{height:55.290000pt;}
.h14_c01458{height:57.593750pt;}
.h2_c01458{height:62.201250pt;}
.h0_c01458{height:1031.680000pt;}
.h1_c01458{height:1032.000000pt;}
.w0_c01458{width:689.920000pt;}
.w1_c01458{width:690.000000pt;}
.x0_c01458{left:0.000000pt;}
.x20_c01458{left:35.200000pt;}
.x2_c01458{left:36.480000pt;}
.x16_c01458{left:55.040000pt;}
.x41_c01458{left:62.720000pt;}
.x3_c01458{left:64.000000pt;}
.x21_c01458{left:72.960000pt;}
.x30_c01458{left:83.840000pt;}
.x42_c01458{left:92.160000pt;}
.x4_c01458{left:94.080000pt;}
.x22_c01458{left:102.400000pt;}
.x28_c01458{left:112.000000pt;}
.x31_c01458{left:121.600000pt;}
.x34_c01458{left:130.560000pt;}
.x18_c01458{left:132.480000pt;}
.x5_c01458{left:142.720000pt;}
.x13_c01458{left:150.400000pt;}
.x23_c01458{left:168.960000pt;}
.x6_c01458{left:170.240000pt;}
.x50_c01458{left:177.920000pt;}
.x10_c01458{left:179.840000pt;}
.x4a_c01458{left:188.800000pt;}
.x43_c01458{left:199.040000pt;}
.x7_c01458{left:200.320000pt;}
.x2f_c01458{left:208.000000pt;}
.x29_c01458{left:209.920000pt;}
.x3b_c01458{left:217.600000pt;}
.x19_c01458{left:218.880000pt;}
.x24_c01458{left:228.480000pt;}
.x51_c01458{left:236.800000pt;}
.x8_c01458{left:238.080000pt;}
.xe_c01458{left:256.640000pt;}
.x2b_c01458{left:257.920000pt;}
.x14_c01458{left:266.880000pt;}
.x44_c01458{left:274.560000pt;}
.x1a_c01458{left:275.840000pt;}
.x9_c01458{left:286.080000pt;}
.x11_c01458{left:287.360000pt;}
.x35_c01458{left:293.760000pt;}
.x4b_c01458{left:295.680000pt;}
.x45_c01458{left:303.360000pt;}
.x2a_c01458{left:305.280000pt;}
.x1b_c01458{left:314.880000pt;}
.x3c_c01458{left:323.840000pt;}
.x52_c01458{left:332.800000pt;}
.x46_c01458{left:342.400000pt;}
.xa_c01458{left:343.680000pt;}
.x36_c01458{left:352.640000pt;}
.x2c_c01458{left:353.920000pt;}
.x2e_c01458{left:363.520000pt;}
.x53_c01458{left:371.200000pt;}
.x1c_c01458{left:372.480000pt;}
.x3d_c01458{left:381.440000pt;}
.x54_c01458{left:400.640000pt;}
.x2d_c01458{left:410.880000pt;}
.x4c_c01458{left:419.200000pt;}
.x47_c01458{left:420.480000pt;}
.x55_c01458{left:428.800000pt;}
.x25_c01458{left:430.720000pt;}
.xb_c01458{left:432.000000pt;}
.x48_c01458{left:438.400000pt;}
.x15_c01458{left:439.680000pt;}
.x17_c01458{left:440.960000pt;}
.x37_c01458{left:448.640000pt;}
.xf_c01458{left:449.920000pt;}
.xc_c01458{left:458.880000pt;}
.x12_c01458{left:468.480000pt;}
.x49_c01458{left:476.800000pt;}
.x26_c01458{left:478.080000pt;}
.x1d_c01458{left:487.680000pt;}
.xd_c01458{left:489.600000pt;}
.x38_c01458{left:496.640000pt;}
.x33_c01458{left:497.920000pt;}
.x3e_c01458{left:505.600000pt;}
.x32_c01458{left:507.520000pt;}
.x1e_c01458{left:516.480000pt;}
.x4d_c01458{left:524.800000pt;}
.x39_c01458{left:543.360000pt;}
.x3f_c01458{left:544.640000pt;}
.x56_c01458{left:554.240000pt;}
.x4e_c01458{left:562.560000pt;}
.x27_c01458{left:565.120000pt;}
.x1f_c01458{left:574.720000pt;}
.x40_c01458{left:582.400000pt;}
.x1_c01458{left:589.440000pt;}
.x3a_c01458{left:592.640000pt;}
.x4f_c01458{left:602.880000pt;}
}





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

.ir_c01459:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01459{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01459;src:url('chunks/assets/font_020a57cddabb2294bd84df9c.woff2')format("woff");}.ff1_c01459{font-family:ff1_c01459;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4c_c01459{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);}
.m4d_c01459{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);}
.m58_c01459{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m37_c01459{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01459{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m34_c01459{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01459{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m20_c01459{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01459{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m15_c01459{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01459{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m0_c01459{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);}
.m23_c01459{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m30_c01459{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);}
.m4a_c01459{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m14_c01459{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_c01459{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m31_c01459{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01459{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m9_c01459{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m22_c01459{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m21_c01459{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m13_c01459{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);}
.m51_c01459{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);}
.m1a_c01459{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m40_c01459{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m1_c01459{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m2_c01459{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01459{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);}
.m55_c01459{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m5_c01459{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.me_c01459{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);}
.m27_c01459{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);}
.m46_c01459{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m33_c01459{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m18_c01459{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m38_c01459{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m3_c01459{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);}
.m6_c01459{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01459{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01459{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);}
.m2c_c01459{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);}
.ma_c01459{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01459{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m19_c01459{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m45_c01459{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01459{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);}
.m35_c01459{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m48_c01459{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m50_c01459{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);}
.m24_c01459{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.md_c01459{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m32_c01459{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m43_c01459{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m47_c01459{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_c01459{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);}
.m3a_c01459{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m10_c01459{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01459{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);}
.m3b_c01459{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m52_c01459{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01459{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);}
.m4e_c01459{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m7_c01459{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m4f_c01459{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);}
.m49_c01459{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01459{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m57_c01459{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);}
.m54_c01459{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m39_c01459{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);}
.m36_c01459{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m11_c01459{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m59_c01459{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.mf_c01459{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01459{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m29_c01459{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m8_c01459{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m4_c01459{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);}
.m25_c01459{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01459{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);}
.m28_c01459{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m56_c01459{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m12_c01459{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m41_c01459{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.mb_c01459{transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);}
.m26_c01459{transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);}
.m44_c01459{transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);}
.m42_c01459{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.mc_c01459{transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);}
.m53_c01459{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.v1_c01459{vertical-align:-2.880000px;}
.v0_c01459{vertical-align:0.000000px;}
.ls0_c01459{letter-spacing:0.000000px;}
.sc__c01459{text-shadow:none;}
.sc0_c01459{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01459{-webkit-text-stroke:0px transparent;}
.sc0_c01459{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01459{word-spacing:-4.789200px;}
.ws0_c01459{word-spacing:-3.916320px;}
.ws2_c01459{word-spacing:0.000000px;}
.fc0_c01459{color:transparent;}
.fsa_c01459{font-size:31.680000px;}
.fs3_c01459{font-size:34.560000px;}
.fsd_c01459{font-size:37.440000px;}
.fsf_c01459{font-size:40.320000px;}
.fs7_c01459{font-size:43.200000px;}
.fsc_c01459{font-size:46.080000px;}
.fs2_c01459{font-size:48.960000px;}
.fs1_c01459{font-size:51.840000px;}
.fs5_c01459{font-size:54.720000px;}
.fs8_c01459{font-size:57.600000px;}
.fs6_c01459{font-size:60.480000px;}
.fsb_c01459{font-size:63.360000px;}
.fs4_c01459{font-size:66.240000px;}
.fs9_c01459{font-size:69.120000px;}
.fse_c01459{font-size:72.000000px;}
.fs0_c01459{font-size:74.880000px;}
.y0_c01459{bottom:0.000000px;}
.y59_c01459{bottom:87.120000px;}
.y5a_c01459{bottom:87.840000px;}
.y5b_c01459{bottom:89.280000px;}
.y58_c01459{bottom:91.440000px;}
.y5c_c01459{bottom:92.160000px;}
.y5d_c01459{bottom:92.880000px;}
.y54_c01459{bottom:131.760000px;}
.y57_c01459{bottom:132.480000px;}
.y55_c01459{bottom:133.920000px;}
.y53_c01459{bottom:134.640000px;}
.y56_c01459{bottom:135.360000px;}
.y4f_c01459{bottom:174.960000px;}
.y51_c01459{bottom:175.680000px;}
.y50_c01459{bottom:177.120000px;}
.y52_c01459{bottom:177.840000px;}
.y4c_c01459{bottom:217.440000px;}
.y4d_c01459{bottom:218.160000px;}
.y4b_c01459{bottom:219.600000px;}
.y4a_c01459{bottom:220.320000px;}
.y4e_c01459{bottom:221.040000px;}
.y49_c01459{bottom:260.640000px;}
.y47_c01459{bottom:261.360000px;}
.y46_c01459{bottom:262.800000px;}
.y45_c01459{bottom:263.520000px;}
.y48_c01459{bottom:264.240000px;}
.y42_c01459{bottom:303.840000px;}
.y43_c01459{bottom:304.560000px;}
.y44_c01459{bottom:306.000000px;}
.y41_c01459{bottom:306.720000px;}
.y40_c01459{bottom:357.120000px;}
.y3e_c01459{bottom:357.840000px;}
.y3f_c01459{bottom:360.000000px;}
.y3c_c01459{bottom:400.320000px;}
.y3b_c01459{bottom:401.040000px;}
.y3d_c01459{bottom:403.200000px;}
.y3a_c01459{bottom:403.920000px;}
.y39_c01459{bottom:444.240000px;}
.y38_c01459{bottom:446.400000px;}
.y37_c01459{bottom:447.120000px;}
.y36_c01459{bottom:487.440000px;}
.y35_c01459{bottom:489.600000px;}
.y34_c01459{bottom:490.320000px;}
.y31_c01459{bottom:530.640000px;}
.y33_c01459{bottom:532.080000px;}
.y30_c01459{bottom:532.800000px;}
.y32_c01459{bottom:533.520000px;}
.y2f_c01459{bottom:576.000000px;}
.y2e_c01459{bottom:637.920000px;}
.y2c_c01459{bottom:680.400000px;}
.y2d_c01459{bottom:682.560000px;}
.y2a_c01459{bottom:683.280000px;}
.y2b_c01459{bottom:684.000000px;}
.y29_c01459{bottom:722.160000px;}
.y25_c01459{bottom:723.600000px;}
.y28_c01459{bottom:725.760000px;}
.y26_c01459{bottom:726.480000px;}
.y27_c01459{bottom:727.200000px;}
.y22_c01459{bottom:766.080000px;}
.y23_c01459{bottom:766.800000px;}
.y24_c01459{bottom:768.240000px;}
.y21_c01459{bottom:769.680000px;}
.y1e_c01459{bottom:819.360000px;}
.y1f_c01459{bottom:820.080000px;}
.y20_c01459{bottom:821.520000px;}
.y1d_c01459{bottom:822.960000px;}
.y1a_c01459{bottom:862.560000px;}
.y18_c01459{bottom:863.280000px;}
.y1c_c01459{bottom:864.000000px;}
.y1b_c01459{bottom:864.720000px;}
.y19_c01459{bottom:865.440000px;}
.y17_c01459{bottom:866.160000px;}
.y16_c01459{bottom:904.320000px;}
.y10_c01459{bottom:905.040000px;}
.y14_c01459{bottom:905.760000px;}
.y11_c01459{bottom:906.480000px;}
.y15_c01459{bottom:907.200000px;}
.y13_c01459{bottom:907.920000px;}
.y12_c01459{bottom:908.640000px;}
.yd_c01459{bottom:948.240000px;}
.yc_c01459{bottom:948.960000px;}
.yf_c01459{bottom:950.400000px;}
.ye_c01459{bottom:951.120000px;}
.yb_c01459{bottom:990.000000px;}
.ya_c01459{bottom:991.440000px;}
.y9_c01459{bottom:993.600000px;}
.y8_c01459{bottom:994.320000px;}
.y7_c01459{bottom:995.040000px;}
.y4_c01459{bottom:1033.920000px;}
.y5_c01459{bottom:1034.640000px;}
.y2_c01459{bottom:1036.800000px;}
.y6_c01459{bottom:1037.520000px;}
.y3_c01459{bottom:1038.240000px;}
.y1_c01459{bottom:1110.240000px;}
.hc_c01459{height:28.508906px;}
.h5_c01459{height:31.100625px;}
.hf_c01459{height:33.692344px;}
.h11_c01459{height:36.284062px;}
.h9_c01459{height:38.875781px;}
.he_c01459{height:41.467500px;}
.h4_c01459{height:44.059219px;}
.h3_c01459{height:46.650937px;}
.h7_c01459{height:49.242656px;}
.ha_c01459{height:51.834375px;}
.h8_c01459{height:54.426094px;}
.hd_c01459{height:57.017812px;}
.h6_c01459{height:59.609531px;}
.hb_c01459{height:62.201250px;}
.h10_c01459{height:64.792969px;}
.h2_c01459{height:67.384687px;}
.h1_c01459{height:1161.750000px;}
.h0_c01459{height:1162.080000px;}
.w0_c01459{width:764.640000px;}
.w1_c01459{width:765.000000px;}
.x0_c01459{left:0.000000px;}
.x2_c01459{left:40.320000px;}
.x16_c01459{left:41.760000px;}
.xd_c01459{left:43.200000px;}
.x17_c01459{left:62.640000px;}
.x21_c01459{left:84.240000px;}
.x28_c01459{left:95.040000px;}
.x36_c01459{left:105.120000px;}
.x31_c01459{left:106.560000px;}
.xe_c01459{left:118.080000px;}
.x22_c01459{left:128.880000px;}
.x4b_c01459{left:136.800000px;}
.x3_c01459{left:138.960000px;}
.x47_c01459{left:147.600000px;}
.x2d_c01459{left:149.760000px;}
.xf_c01459{left:160.560000px;}
.x3c_c01459{left:170.640000px;}
.x4_c01459{left:172.800000px;}
.x49_c01459{left:181.440000px;}
.x29_c01459{left:203.760000px;}
.x1c_c01459{left:205.200000px;}
.x3d_c01459{left:213.840000px;}
.x2e_c01459{left:216.000000px;}
.x52_c01459{left:224.640000px;}
.x5_c01459{left:226.800000px;}
.x10_c01459{left:236.880000px;}
.x32_c01459{left:246.240000px;}
.x41_c01459{left:257.760000px;}
.x6_c01459{left:259.200000px;}
.x4c_c01459{left:267.840000px;}
.x1d_c01459{left:269.280000px;}
.x44_c01459{left:279.360000px;}
.x11_c01459{left:280.800000px;}
.x42_c01459{left:290.160000px;}
.x23_c01459{left:300.960000px;}
.x2a_c01459{left:311.760000px;}
.x4f_c01459{left:321.840000px;}
.x18_c01459{left:324.000000px;}
.x12_c01459{left:334.800000px;}
.x48_c01459{left:343.440000px;}
.x38_c01459{left:344.880000px;}
.x1e_c01459{left:354.240000px;}
.x2f_c01459{left:355.680000px;}
.x53_c01459{left:365.760000px;}
.x7_c01459{left:367.200000px;}
.x2b_c01459{left:376.560000px;}
.x33_c01459{left:378.000000px;}
.x19_c01459{left:388.080000px;}
.x3a_c01459{left:397.440000px;}
.x2c_c01459{left:398.880000px;}
.x51_c01459{left:408.960000px;}
.x13_c01459{left:410.400000px;}
.x39_c01459{left:419.760000px;}
.x8_c01459{left:421.920000px;}
.x1f_c01459{left:432.720000px;}
.x24_c01459{left:441.360000px;}
.x9_c01459{left:454.320000px;}
.x34_c01459{left:464.400000px;}
.x4a_c01459{left:473.760000px;}
.x30_c01459{left:475.200000px;}
.x45_c01459{left:485.280000px;}
.x3b_c01459{left:494.640000px;}
.x3e_c01459{left:506.160000px;}
.x1a_c01459{left:507.600000px;}
.x54_c01459{left:516.960000px;}
.xa_c01459{left:518.400000px;}
.x50_c01459{left:527.760000px;}
.x25_c01459{left:529.920000px;}
.x1b_c01459{left:540.000000px;}
.x3f_c01459{left:549.360000px;}
.x14_c01459{left:552.240000px;}
.x35_c01459{left:571.680000px;}
.x26_c01459{left:583.200000px;}
.xb_c01459{left:584.640000px;}
.x15_c01459{left:594.000000px;}
.x46_c01459{left:603.360000px;}
.x43_c01459{left:614.160000px;}
.x27_c01459{left:616.320000px;}
.x55_c01459{left:624.240000px;}
.x4d_c01459{left:635.760000px;}
.x20_c01459{left:637.920000px;}
.x37_c01459{left:648.000000px;}
.x1_c01459{left:667.440000px;}
.x40_c01459{left:669.600000px;}
.x4e_c01459{left:680.400000px;}
.xc_c01459{left:681.840000px;}
@media print{
.v1_c01459{vertical-align:-2.560000pt;}
.v0_c01459{vertical-align:0.000000pt;}
.ls0_c01459{letter-spacing:0.000000pt;}
.ws1_c01459{word-spacing:-4.257067pt;}
.ws0_c01459{word-spacing:-3.481173pt;}
.ws2_c01459{word-spacing:0.000000pt;}
.fsa_c01459{font-size:28.160000pt;}
.fs3_c01459{font-size:30.720000pt;}
.fsd_c01459{font-size:33.280000pt;}
.fsf_c01459{font-size:35.840000pt;}
.fs7_c01459{font-size:38.400000pt;}
.fsc_c01459{font-size:40.960000pt;}
.fs2_c01459{font-size:43.520000pt;}
.fs1_c01459{font-size:46.080000pt;}
.fs5_c01459{font-size:48.640000pt;}
.fs8_c01459{font-size:51.200000pt;}
.fs6_c01459{font-size:53.760000pt;}
.fsb_c01459{font-size:56.320000pt;}
.fs4_c01459{font-size:58.880000pt;}
.fs9_c01459{font-size:61.440000pt;}
.fse_c01459{font-size:64.000000pt;}
.fs0_c01459{font-size:66.560000pt;}
.y0_c01459{bottom:0.000000pt;}
.y59_c01459{bottom:77.440000pt;}
.y5a_c01459{bottom:78.080000pt;}
.y5b_c01459{bottom:79.360000pt;}
.y58_c01459{bottom:81.280000pt;}
.y5c_c01459{bottom:81.920000pt;}
.y5d_c01459{bottom:82.560000pt;}
.y54_c01459{bottom:117.120000pt;}
.y57_c01459{bottom:117.760000pt;}
.y55_c01459{bottom:119.040000pt;}
.y53_c01459{bottom:119.680000pt;}
.y56_c01459{bottom:120.320000pt;}
.y4f_c01459{bottom:155.520000pt;}
.y51_c01459{bottom:156.160000pt;}
.y50_c01459{bottom:157.440000pt;}
.y52_c01459{bottom:158.080000pt;}
.y4c_c01459{bottom:193.280000pt;}
.y4d_c01459{bottom:193.920000pt;}
.y4b_c01459{bottom:195.200000pt;}
.y4a_c01459{bottom:195.840000pt;}
.y4e_c01459{bottom:196.480000pt;}
.y49_c01459{bottom:231.680000pt;}
.y47_c01459{bottom:232.320000pt;}
.y46_c01459{bottom:233.600000pt;}
.y45_c01459{bottom:234.240000pt;}
.y48_c01459{bottom:234.880000pt;}
.y42_c01459{bottom:270.080000pt;}
.y43_c01459{bottom:270.720000pt;}
.y44_c01459{bottom:272.000000pt;}
.y41_c01459{bottom:272.640000pt;}
.y40_c01459{bottom:317.440000pt;}
.y3e_c01459{bottom:318.080000pt;}
.y3f_c01459{bottom:320.000000pt;}
.y3c_c01459{bottom:355.840000pt;}
.y3b_c01459{bottom:356.480000pt;}
.y3d_c01459{bottom:358.400000pt;}
.y3a_c01459{bottom:359.040000pt;}
.y39_c01459{bottom:394.880000pt;}
.y38_c01459{bottom:396.800000pt;}
.y37_c01459{bottom:397.440000pt;}
.y36_c01459{bottom:433.280000pt;}
.y35_c01459{bottom:435.200000pt;}
.y34_c01459{bottom:435.840000pt;}
.y31_c01459{bottom:471.680000pt;}
.y33_c01459{bottom:472.960000pt;}
.y30_c01459{bottom:473.600000pt;}
.y32_c01459{bottom:474.240000pt;}
.y2f_c01459{bottom:512.000000pt;}
.y2e_c01459{bottom:567.040000pt;}
.y2c_c01459{bottom:604.800000pt;}
.y2d_c01459{bottom:606.720000pt;}
.y2a_c01459{bottom:607.360000pt;}
.y2b_c01459{bottom:608.000000pt;}
.y29_c01459{bottom:641.920000pt;}
.y25_c01459{bottom:643.200000pt;}
.y28_c01459{bottom:645.120000pt;}
.y26_c01459{bottom:645.760000pt;}
.y27_c01459{bottom:646.400000pt;}
.y22_c01459{bottom:680.960000pt;}
.y23_c01459{bottom:681.600000pt;}
.y24_c01459{bottom:682.880000pt;}
.y21_c01459{bottom:684.160000pt;}
.y1e_c01459{bottom:728.320000pt;}
.y1f_c01459{bottom:728.960000pt;}
.y20_c01459{bottom:730.240000pt;}
.y1d_c01459{bottom:731.520000pt;}
.y1a_c01459{bottom:766.720000pt;}
.y18_c01459{bottom:767.360000pt;}
.y1c_c01459{bottom:768.000000pt;}
.y1b_c01459{bottom:768.640000pt;}
.y19_c01459{bottom:769.280000pt;}
.y17_c01459{bottom:769.920000pt;}
.y16_c01459{bottom:803.840000pt;}
.y10_c01459{bottom:804.480000pt;}
.y14_c01459{bottom:805.120000pt;}
.y11_c01459{bottom:805.760000pt;}
.y15_c01459{bottom:806.400000pt;}
.y13_c01459{bottom:807.040000pt;}
.y12_c01459{bottom:807.680000pt;}
.yd_c01459{bottom:842.880000pt;}
.yc_c01459{bottom:843.520000pt;}
.yf_c01459{bottom:844.800000pt;}
.ye_c01459{bottom:845.440000pt;}
.yb_c01459{bottom:880.000000pt;}
.ya_c01459{bottom:881.280000pt;}
.y9_c01459{bottom:883.200000pt;}
.y8_c01459{bottom:883.840000pt;}
.y7_c01459{bottom:884.480000pt;}
.y4_c01459{bottom:919.040000pt;}
.y5_c01459{bottom:919.680000pt;}
.y2_c01459{bottom:921.600000pt;}
.y6_c01459{bottom:922.240000pt;}
.y3_c01459{bottom:922.880000pt;}
.y1_c01459{bottom:986.880000pt;}
.hc_c01459{height:25.341250pt;}
.h5_c01459{height:27.645000pt;}
.hf_c01459{height:29.948750pt;}
.h11_c01459{height:32.252500pt;}
.h9_c01459{height:34.556250pt;}
.he_c01459{height:36.860000pt;}
.h4_c01459{height:39.163750pt;}
.h3_c01459{height:41.467500pt;}
.h7_c01459{height:43.771250pt;}
.ha_c01459{height:46.075000pt;}
.h8_c01459{height:48.378750pt;}
.hd_c01459{height:50.682500pt;}
.h6_c01459{height:52.986250pt;}
.hb_c01459{height:55.290000pt;}
.h10_c01459{height:57.593750pt;}
.h2_c01459{height:59.897500pt;}
.h1_c01459{height:1032.666667pt;}
.h0_c01459{height:1032.960000pt;}
.w0_c01459{width:679.680000pt;}
.w1_c01459{width:680.000000pt;}
.x0_c01459{left:0.000000pt;}
.x2_c01459{left:35.840000pt;}
.x16_c01459{left:37.120000pt;}
.xd_c01459{left:38.400000pt;}
.x17_c01459{left:55.680000pt;}
.x21_c01459{left:74.880000pt;}
.x28_c01459{left:84.480000pt;}
.x36_c01459{left:93.440000pt;}
.x31_c01459{left:94.720000pt;}
.xe_c01459{left:104.960000pt;}
.x22_c01459{left:114.560000pt;}
.x4b_c01459{left:121.600000pt;}
.x3_c01459{left:123.520000pt;}
.x47_c01459{left:131.200000pt;}
.x2d_c01459{left:133.120000pt;}
.xf_c01459{left:142.720000pt;}
.x3c_c01459{left:151.680000pt;}
.x4_c01459{left:153.600000pt;}
.x49_c01459{left:161.280000pt;}
.x29_c01459{left:181.120000pt;}
.x1c_c01459{left:182.400000pt;}
.x3d_c01459{left:190.080000pt;}
.x2e_c01459{left:192.000000pt;}
.x52_c01459{left:199.680000pt;}
.x5_c01459{left:201.600000pt;}
.x10_c01459{left:210.560000pt;}
.x32_c01459{left:218.880000pt;}
.x41_c01459{left:229.120000pt;}
.x6_c01459{left:230.400000pt;}
.x4c_c01459{left:238.080000pt;}
.x1d_c01459{left:239.360000pt;}
.x44_c01459{left:248.320000pt;}
.x11_c01459{left:249.600000pt;}
.x42_c01459{left:257.920000pt;}
.x23_c01459{left:267.520000pt;}
.x2a_c01459{left:277.120000pt;}
.x4f_c01459{left:286.080000pt;}
.x18_c01459{left:288.000000pt;}
.x12_c01459{left:297.600000pt;}
.x48_c01459{left:305.280000pt;}
.x38_c01459{left:306.560000pt;}
.x1e_c01459{left:314.880000pt;}
.x2f_c01459{left:316.160000pt;}
.x53_c01459{left:325.120000pt;}
.x7_c01459{left:326.400000pt;}
.x2b_c01459{left:334.720000pt;}
.x33_c01459{left:336.000000pt;}
.x19_c01459{left:344.960000pt;}
.x3a_c01459{left:353.280000pt;}
.x2c_c01459{left:354.560000pt;}
.x51_c01459{left:363.520000pt;}
.x13_c01459{left:364.800000pt;}
.x39_c01459{left:373.120000pt;}
.x8_c01459{left:375.040000pt;}
.x1f_c01459{left:384.640000pt;}
.x24_c01459{left:392.320000pt;}
.x9_c01459{left:403.840000pt;}
.x34_c01459{left:412.800000pt;}
.x4a_c01459{left:421.120000pt;}
.x30_c01459{left:422.400000pt;}
.x45_c01459{left:431.360000pt;}
.x3b_c01459{left:439.680000pt;}
.x3e_c01459{left:449.920000pt;}
.x1a_c01459{left:451.200000pt;}
.x54_c01459{left:459.520000pt;}
.xa_c01459{left:460.800000pt;}
.x50_c01459{left:469.120000pt;}
.x25_c01459{left:471.040000pt;}
.x1b_c01459{left:480.000000pt;}
.x3f_c01459{left:488.320000pt;}
.x14_c01459{left:490.880000pt;}
.x35_c01459{left:508.160000pt;}
.x26_c01459{left:518.400000pt;}
.xb_c01459{left:519.680000pt;}
.x15_c01459{left:528.000000pt;}
.x46_c01459{left:536.320000pt;}
.x43_c01459{left:545.920000pt;}
.x27_c01459{left:547.840000pt;}
.x55_c01459{left:554.880000pt;}
.x4d_c01459{left:565.120000pt;}
.x20_c01459{left:567.040000pt;}
.x37_c01459{left:576.000000pt;}
.x1_c01459{left:593.280000pt;}
.x40_c01459{left:595.200000pt;}
.x4e_c01459{left:604.800000pt;}
.xc_c01459{left:606.080000pt;}
}





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

.ir_c01460:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01460{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01460;src:url('chunks/assets/font_8db9212531b57eebf3954333.woff2')format("woff");}.ff1_c01460{font-family:ff1_c01460;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3b_c01460{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);}
.m36_c01460{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mb_c01460{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);}
.m3f_c01460{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);}
.m31_c01460{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);}
.m38_c01460{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);}
.m40_c01460{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);}
.m4b_c01460{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m5a_c01460{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m41_c01460{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m15_c01460{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01460{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01460{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m58_c01460{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01460{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m26_c01460{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01460{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m52_c01460{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1_c01460{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);}
.m42_c01460{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01460{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);}
.m4a_c01460{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m2_c01460{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m8_c01460{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m39_c01460{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.mf_c01460{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01460{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m0_c01460{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);}
.m3e_c01460{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01460{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);}
.m34_c01460{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);}
.m14_c01460{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);}
.m27_c01460{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.me_c01460{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);}
.m29_c01460{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);}
.m49_c01460{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);}
.m33_c01460{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m11_c01460{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m3_c01460{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);}
.m1a_c01460{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m17_c01460{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);}
.m3d_c01460{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m47_c01460{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);}
.m50_c01460{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);}
.m23_c01460{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m32_c01460{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m24_c01460{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m35_c01460{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);}
.m2e_c01460{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m45_c01460{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);}
.m1c_c01460{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m4_c01460{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);}
.m6_c01460{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m5c_c01460{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01460{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m44_c01460{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m18_c01460{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);}
.m19_c01460{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m5e_c01460{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m21_c01460{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);}
.m46_c01460{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m16_c01460{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m28_c01460{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m53_c01460{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m4f_c01460{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);}
.m30_c01460{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);}
.md_c01460{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m13_c01460{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01460{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.mc_c01460{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);}
.m20_c01460{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m43_c01460{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m55_c01460{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m54_c01460{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);}
.m2b_c01460{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01460{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m25_c01460{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m10_c01460{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m9_c01460{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);}
.m12_c01460{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);}
.m5_c01460{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01460{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m57_c01460{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m5d_c01460{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01460{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m48_c01460{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01460{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m56_c01460{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);}
.m5b_c01460{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m59_c01460{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);}
.m1d_c01460{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m51_c01460{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m7_c01460{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m22_c01460{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m37_c01460{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.v0_c01460{vertical-align:0.000000px;}
.ls0_c01460{letter-spacing:0.000000px;}
.sc__c01460{text-shadow:none;}
.sc0_c01460{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01460{-webkit-text-stroke:0px transparent;}
.sc0_c01460{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01460{word-spacing:0.000000px;}
.fc0_c01460{color:transparent;}
.fs4_c01460{font-size:34.560000px;}
.fs6_c01460{font-size:37.440000px;}
.fsb_c01460{font-size:43.200000px;}
.fs8_c01460{font-size:46.080000px;}
.fs3_c01460{font-size:48.960000px;}
.fs2_c01460{font-size:51.840000px;}
.fsc_c01460{font-size:54.720000px;}
.fs7_c01460{font-size:57.600000px;}
.fs1_c01460{font-size:60.480000px;}
.fsa_c01460{font-size:63.360000px;}
.fs9_c01460{font-size:66.240000px;}
.fs5_c01460{font-size:69.120000px;}
.fsd_c01460{font-size:72.000000px;}
.fs0_c01460{font-size:74.880000px;}
.y0_c01460{bottom:0.000000px;}
.y63_c01460{bottom:66.960000px;}
.y64_c01460{bottom:67.680000px;}
.y65_c01460{bottom:69.840000px;}
.y66_c01460{bottom:70.560000px;}
.y67_c01460{bottom:71.280000px;}
.y60_c01460{bottom:110.880000px;}
.y5f_c01460{bottom:113.040000px;}
.y5e_c01460{bottom:113.760000px;}
.y61_c01460{bottom:114.480000px;}
.y62_c01460{bottom:115.200000px;}
.y5b_c01460{bottom:156.240000px;}
.y5c_c01460{bottom:156.960000px;}
.y5a_c01460{bottom:157.680000px;}
.y5d_c01460{bottom:158.400000px;}
.y58_c01460{bottom:197.280000px;}
.y56_c01460{bottom:198.000000px;}
.y59_c01460{bottom:198.720000px;}
.y57_c01460{bottom:200.160000px;}
.y55_c01460{bottom:200.880000px;}
.y52_c01460{bottom:239.760000px;}
.y53_c01460{bottom:241.200000px;}
.y51_c01460{bottom:243.360000px;}
.y54_c01460{bottom:244.080000px;}
.y50_c01460{bottom:244.800000px;}
.y4d_c01460{bottom:283.680000px;}
.y4f_c01460{bottom:284.400000px;}
.y4e_c01460{bottom:285.120000px;}
.y4c_c01460{bottom:286.560000px;}
.y4b_c01460{bottom:287.280000px;}
.y47_c01460{bottom:326.880000px;}
.y4a_c01460{bottom:327.600000px;}
.y49_c01460{bottom:329.760000px;}
.y48_c01460{bottom:330.480000px;}
.y44_c01460{bottom:369.360000px;}
.y45_c01460{bottom:370.080000px;}
.y46_c01460{bottom:370.800000px;}
.y43_c01460{bottom:372.240000px;}
.y42_c01460{bottom:372.960000px;}
.y3f_c01460{bottom:412.560000px;}
.y3d_c01460{bottom:413.280000px;}
.y41_c01460{bottom:414.720000px;}
.y3e_c01460{bottom:415.440000px;}
.y40_c01460{bottom:416.160000px;}
.y3b_c01460{bottom:455.040000px;}
.y3c_c01460{bottom:455.760000px;}
.y3a_c01460{bottom:456.480000px;}
.y39_c01460{bottom:457.920000px;}
.y38_c01460{bottom:458.640000px;}
.y37_c01460{bottom:498.240000px;}
.y36_c01460{bottom:498.960000px;}
.y34_c01460{bottom:501.120000px;}
.y35_c01460{bottom:501.840000px;}
.y32_c01460{bottom:541.440000px;}
.y33_c01460{bottom:542.160000px;}
.y31_c01460{bottom:544.320000px;}
.y30_c01460{bottom:545.040000px;}
.y2d_c01460{bottom:583.920000px;}
.y2e_c01460{bottom:584.640000px;}
.y2a_c01460{bottom:585.360000px;}
.y2f_c01460{bottom:586.800000px;}
.y2b_c01460{bottom:587.520000px;}
.y2c_c01460{bottom:588.240000px;}
.y29_c01460{bottom:628.560000px;}
.y28_c01460{bottom:630.000000px;}
.y27_c01460{bottom:630.720000px;}
.y26_c01460{bottom:681.120000px;}
.y25_c01460{bottom:681.840000px;}
.y24_c01460{bottom:723.600000px;}
.y20_c01460{bottom:724.320000px;}
.y23_c01460{bottom:726.480000px;}
.y22_c01460{bottom:727.200000px;}
.y21_c01460{bottom:727.920000px;}
.y1d_c01460{bottom:767.520000px;}
.y1e_c01460{bottom:768.240000px;}
.y1f_c01460{bottom:769.680000px;}
.y1b_c01460{bottom:770.400000px;}
.y1c_c01460{bottom:771.120000px;}
.y19_c01460{bottom:810.000000px;}
.y17_c01460{bottom:811.440000px;}
.y1a_c01460{bottom:812.160000px;}
.y18_c01460{bottom:812.880000px;}
.y16_c01460{bottom:813.600000px;}
.y13_c01460{bottom:853.200000px;}
.y15_c01460{bottom:856.080000px;}
.y14_c01460{bottom:856.800000px;}
.y12_c01460{bottom:898.560000px;}
.y11_c01460{bottom:899.280000px;}
.y10_c01460{bottom:900.000000px;}
.yd_c01460{bottom:940.320000px;}
.yf_c01460{bottom:941.040000px;}
.ye_c01460{bottom:941.760000px;}
.yb_c01460{bottom:942.480000px;}
.yc_c01460{bottom:943.200000px;}
.ya_c01460{bottom:992.880000px;}
.y9_c01460{bottom:995.040000px;}
.y7_c01460{bottom:995.760000px;}
.y8_c01460{bottom:996.480000px;}
.y6_c01460{bottom:1034.640000px;}
.y4_c01460{bottom:1035.360000px;}
.y2_c01460{bottom:1036.800000px;}
.y5_c01460{bottom:1037.520000px;}
.y3_c01460{bottom:1038.240000px;}
.y1_c01460{bottom:1109.520000px;}
.h6_c01460{height:31.100625px;}
.h8_c01460{height:33.692344px;}
.hd_c01460{height:38.875781px;}
.ha_c01460{height:41.467500px;}
.h5_c01460{height:44.059219px;}
.h4_c01460{height:46.650937px;}
.he_c01460{height:49.242656px;}
.h9_c01460{height:51.834375px;}
.h3_c01460{height:54.426094px;}
.hc_c01460{height:57.017812px;}
.hb_c01460{height:59.609531px;}
.h7_c01460{height:62.201250px;}
.hf_c01460{height:64.792969px;}
.h2_c01460{height:67.384687px;}
.h1_c01460{height:1161.750000px;}
.h0_c01460{height:1162.080000px;}
.w0_c01460{width:776.880000px;}
.w1_c01460{width:777.000000px;}
.x0_c01460{left:0.000000px;}
.xc_c01460{left:49.680000px;}
.x2_c01460{left:51.120000px;}
.x54_c01460{left:71.280000px;}
.x46_c01460{left:81.360000px;}
.x19_c01460{left:82.800000px;}
.x26_c01460{left:92.880000px;}
.xd_c01460{left:94.320000px;}
.x60_c01460{left:103.680000px;}
.x2c_c01460{left:105.120000px;}
.xe_c01460{left:115.200000px;}
.x1a_c01460{left:125.280000px;}
.x2d_c01460{left:136.080000px;}
.x5b_c01460{left:146.880000px;}
.x39_c01460{left:157.680000px;}
.x14_c01460{left:159.840000px;}
.x3f_c01460{left:168.480000px;}
.xf_c01460{left:179.280000px;}
.x5f_c01460{left:190.080000px;}
.x3a_c01460{left:191.520000px;}
.x34_c01460{left:201.600000px;}
.x2e_c01460{left:203.040000px;}
.x4d_c01460{left:211.680000px;}
.x3_c01460{left:213.840000px;}
.x3b_c01460{left:223.200000px;}
.x1f_c01460{left:234.720000px;}
.x50_c01460{left:244.080000px;}
.x4_c01460{left:246.240000px;}
.x55_c01460{left:254.880000px;}
.x10_c01460{left:257.040000px;}
.x15_c01460{left:267.840000px;}
.x20_c01460{left:277.920000px;}
.x56_c01460{left:287.280000px;}
.x11_c01460{left:289.440000px;}
.x3c_c01460{left:298.800000px;}
.x47_c01460{left:308.880000px;}
.x62_c01460{left:320.400000px;}
.x5_c01460{left:321.840000px;}
.x2f_c01460{left:331.920000px;}
.x52_c01460{left:342.000000px;}
.x16_c01460{left:344.160000px;}
.x21_c01460{left:353.520000px;}
.x40_c01460{left:356.400000px;}
.x17_c01460{left:365.040000px;}
.x30_c01460{left:374.400000px;}
.x6_c01460{left:375.840000px;}
.x35_c01460{left:385.920000px;}
.x3d_c01460{left:395.280000px;}
.x22_c01460{left:397.440000px;}
.x4a_c01460{left:406.800000px;}
.x7_c01460{left:408.240000px;}
.x61_c01460{left:416.880000px;}
.x27_c01460{left:418.320000px;}
.x23_c01460{left:428.400000px;}
.x12_c01460{left:430.560000px;}
.x28_c01460{left:439.920000px;}
.x1b_c01460{left:451.440000px;}
.x48_c01460{left:460.800000px;}
.x8_c01460{left:462.240000px;}
.x57_c01460{left:470.880000px;}
.x29_c01460{left:473.040000px;}
.x5c_c01460{left:482.400000px;}
.x1c_c01460{left:483.840000px;}
.x36_c01460{left:485.280000px;}
.x13_c01460{left:494.640000px;}
.x9_c01460{left:506.160000px;}
.x51_c01460{left:513.360000px;}
.x4b_c01460{left:514.800000px;}
.x24_c01460{left:516.240000px;}
.x5d_c01460{left:525.600000px;}
.x31_c01460{left:527.040000px;}
.x2a_c01460{left:537.120000px;}
.x58_c01460{left:546.480000px;}
.x1d_c01460{left:548.640000px;}
.x4c_c01460{left:557.280000px;}
.x44_c01460{left:558.720000px;}
.x41_c01460{left:568.800000px;}
.x32_c01460{left:570.240000px;}
.x18_c01460{left:592.560000px;}
.x4e_c01460{left:601.200000px;}
.xa_c01460{left:602.640000px;}
.x45_c01460{left:612.000000px;}
.x2b_c01460{left:614.160000px;}
.x42_c01460{left:622.800000px;}
.x37_c01460{left:624.240000px;}
.x33_c01460{left:635.040000px;}
.x53_c01460{left:643.680000px;}
.x5e_c01460{left:645.840000px;}
.xb_c01460{left:647.280000px;}
.x38_c01460{left:656.640000px;}
.x59_c01460{left:666.000000px;}
.x43_c01460{left:667.440000px;}
.x1e_c01460{left:668.880000px;}
.x49_c01460{left:673.920000px;}
.x1_c01460{left:676.080000px;}
.x3e_c01460{left:678.240000px;}
.x25_c01460{left:679.680000px;}
.x4f_c01460{left:688.320000px;}
.x5a_c01460{left:699.120000px;}
@media print{
.v0_c01460{vertical-align:0.000000pt;}
.ls0_c01460{letter-spacing:0.000000pt;}
.ws0_c01460{word-spacing:0.000000pt;}
.fs4_c01460{font-size:30.720000pt;}
.fs6_c01460{font-size:33.280000pt;}
.fsb_c01460{font-size:38.400000pt;}
.fs8_c01460{font-size:40.960000pt;}
.fs3_c01460{font-size:43.520000pt;}
.fs2_c01460{font-size:46.080000pt;}
.fsc_c01460{font-size:48.640000pt;}
.fs7_c01460{font-size:51.200000pt;}
.fs1_c01460{font-size:53.760000pt;}
.fsa_c01460{font-size:56.320000pt;}
.fs9_c01460{font-size:58.880000pt;}
.fs5_c01460{font-size:61.440000pt;}
.fsd_c01460{font-size:64.000000pt;}
.fs0_c01460{font-size:66.560000pt;}
.y0_c01460{bottom:0.000000pt;}
.y63_c01460{bottom:59.520000pt;}
.y64_c01460{bottom:60.160000pt;}
.y65_c01460{bottom:62.080000pt;}
.y66_c01460{bottom:62.720000pt;}
.y67_c01460{bottom:63.360000pt;}
.y60_c01460{bottom:98.560000pt;}
.y5f_c01460{bottom:100.480000pt;}
.y5e_c01460{bottom:101.120000pt;}
.y61_c01460{bottom:101.760000pt;}
.y62_c01460{bottom:102.400000pt;}
.y5b_c01460{bottom:138.880000pt;}
.y5c_c01460{bottom:139.520000pt;}
.y5a_c01460{bottom:140.160000pt;}
.y5d_c01460{bottom:140.800000pt;}
.y58_c01460{bottom:175.360000pt;}
.y56_c01460{bottom:176.000000pt;}
.y59_c01460{bottom:176.640000pt;}
.y57_c01460{bottom:177.920000pt;}
.y55_c01460{bottom:178.560000pt;}
.y52_c01460{bottom:213.120000pt;}
.y53_c01460{bottom:214.400000pt;}
.y51_c01460{bottom:216.320000pt;}
.y54_c01460{bottom:216.960000pt;}
.y50_c01460{bottom:217.600000pt;}
.y4d_c01460{bottom:252.160000pt;}
.y4f_c01460{bottom:252.800000pt;}
.y4e_c01460{bottom:253.440000pt;}
.y4c_c01460{bottom:254.720000pt;}
.y4b_c01460{bottom:255.360000pt;}
.y47_c01460{bottom:290.560000pt;}
.y4a_c01460{bottom:291.200000pt;}
.y49_c01460{bottom:293.120000pt;}
.y48_c01460{bottom:293.760000pt;}
.y44_c01460{bottom:328.320000pt;}
.y45_c01460{bottom:328.960000pt;}
.y46_c01460{bottom:329.600000pt;}
.y43_c01460{bottom:330.880000pt;}
.y42_c01460{bottom:331.520000pt;}
.y3f_c01460{bottom:366.720000pt;}
.y3d_c01460{bottom:367.360000pt;}
.y41_c01460{bottom:368.640000pt;}
.y3e_c01460{bottom:369.280000pt;}
.y40_c01460{bottom:369.920000pt;}
.y3b_c01460{bottom:404.480000pt;}
.y3c_c01460{bottom:405.120000pt;}
.y3a_c01460{bottom:405.760000pt;}
.y39_c01460{bottom:407.040000pt;}
.y38_c01460{bottom:407.680000pt;}
.y37_c01460{bottom:442.880000pt;}
.y36_c01460{bottom:443.520000pt;}
.y34_c01460{bottom:445.440000pt;}
.y35_c01460{bottom:446.080000pt;}
.y32_c01460{bottom:481.280000pt;}
.y33_c01460{bottom:481.920000pt;}
.y31_c01460{bottom:483.840000pt;}
.y30_c01460{bottom:484.480000pt;}
.y2d_c01460{bottom:519.040000pt;}
.y2e_c01460{bottom:519.680000pt;}
.y2a_c01460{bottom:520.320000pt;}
.y2f_c01460{bottom:521.600000pt;}
.y2b_c01460{bottom:522.240000pt;}
.y2c_c01460{bottom:522.880000pt;}
.y29_c01460{bottom:558.720000pt;}
.y28_c01460{bottom:560.000000pt;}
.y27_c01460{bottom:560.640000pt;}
.y26_c01460{bottom:605.440000pt;}
.y25_c01460{bottom:606.080000pt;}
.y24_c01460{bottom:643.200000pt;}
.y20_c01460{bottom:643.840000pt;}
.y23_c01460{bottom:645.760000pt;}
.y22_c01460{bottom:646.400000pt;}
.y21_c01460{bottom:647.040000pt;}
.y1d_c01460{bottom:682.240000pt;}
.y1e_c01460{bottom:682.880000pt;}
.y1f_c01460{bottom:684.160000pt;}
.y1b_c01460{bottom:684.800000pt;}
.y1c_c01460{bottom:685.440000pt;}
.y19_c01460{bottom:720.000000pt;}
.y17_c01460{bottom:721.280000pt;}
.y1a_c01460{bottom:721.920000pt;}
.y18_c01460{bottom:722.560000pt;}
.y16_c01460{bottom:723.200000pt;}
.y13_c01460{bottom:758.400000pt;}
.y15_c01460{bottom:760.960000pt;}
.y14_c01460{bottom:761.600000pt;}
.y12_c01460{bottom:798.720000pt;}
.y11_c01460{bottom:799.360000pt;}
.y10_c01460{bottom:800.000000pt;}
.yd_c01460{bottom:835.840000pt;}
.yf_c01460{bottom:836.480000pt;}
.ye_c01460{bottom:837.120000pt;}
.yb_c01460{bottom:837.760000pt;}
.yc_c01460{bottom:838.400000pt;}
.ya_c01460{bottom:882.560000pt;}
.y9_c01460{bottom:884.480000pt;}
.y7_c01460{bottom:885.120000pt;}
.y8_c01460{bottom:885.760000pt;}
.y6_c01460{bottom:919.680000pt;}
.y4_c01460{bottom:920.320000pt;}
.y2_c01460{bottom:921.600000pt;}
.y5_c01460{bottom:922.240000pt;}
.y3_c01460{bottom:922.880000pt;}
.y1_c01460{bottom:986.240000pt;}
.h6_c01460{height:27.645000pt;}
.h8_c01460{height:29.948750pt;}
.hd_c01460{height:34.556250pt;}
.ha_c01460{height:36.860000pt;}
.h5_c01460{height:39.163750pt;}
.h4_c01460{height:41.467500pt;}
.he_c01460{height:43.771250pt;}
.h9_c01460{height:46.075000pt;}
.h3_c01460{height:48.378750pt;}
.hc_c01460{height:50.682500pt;}
.hb_c01460{height:52.986250pt;}
.h7_c01460{height:55.290000pt;}
.hf_c01460{height:57.593750pt;}
.h2_c01460{height:59.897500pt;}
.h1_c01460{height:1032.666667pt;}
.h0_c01460{height:1032.960000pt;}
.w0_c01460{width:690.560000pt;}
.w1_c01460{width:690.666667pt;}
.x0_c01460{left:0.000000pt;}
.xc_c01460{left:44.160000pt;}
.x2_c01460{left:45.440000pt;}
.x54_c01460{left:63.360000pt;}
.x46_c01460{left:72.320000pt;}
.x19_c01460{left:73.600000pt;}
.x26_c01460{left:82.560000pt;}
.xd_c01460{left:83.840000pt;}
.x60_c01460{left:92.160000pt;}
.x2c_c01460{left:93.440000pt;}
.xe_c01460{left:102.400000pt;}
.x1a_c01460{left:111.360000pt;}
.x2d_c01460{left:120.960000pt;}
.x5b_c01460{left:130.560000pt;}
.x39_c01460{left:140.160000pt;}
.x14_c01460{left:142.080000pt;}
.x3f_c01460{left:149.760000pt;}
.xf_c01460{left:159.360000pt;}
.x5f_c01460{left:168.960000pt;}
.x3a_c01460{left:170.240000pt;}
.x34_c01460{left:179.200000pt;}
.x2e_c01460{left:180.480000pt;}
.x4d_c01460{left:188.160000pt;}
.x3_c01460{left:190.080000pt;}
.x3b_c01460{left:198.400000pt;}
.x1f_c01460{left:208.640000pt;}
.x50_c01460{left:216.960000pt;}
.x4_c01460{left:218.880000pt;}
.x55_c01460{left:226.560000pt;}
.x10_c01460{left:228.480000pt;}
.x15_c01460{left:238.080000pt;}
.x20_c01460{left:247.040000pt;}
.x56_c01460{left:255.360000pt;}
.x11_c01460{left:257.280000pt;}
.x3c_c01460{left:265.600000pt;}
.x47_c01460{left:274.560000pt;}
.x62_c01460{left:284.800000pt;}
.x5_c01460{left:286.080000pt;}
.x2f_c01460{left:295.040000pt;}
.x52_c01460{left:304.000000pt;}
.x16_c01460{left:305.920000pt;}
.x21_c01460{left:314.240000pt;}
.x40_c01460{left:316.800000pt;}
.x17_c01460{left:324.480000pt;}
.x30_c01460{left:332.800000pt;}
.x6_c01460{left:334.080000pt;}
.x35_c01460{left:343.040000pt;}
.x3d_c01460{left:351.360000pt;}
.x22_c01460{left:353.280000pt;}
.x4a_c01460{left:361.600000pt;}
.x7_c01460{left:362.880000pt;}
.x61_c01460{left:370.560000pt;}
.x27_c01460{left:371.840000pt;}
.x23_c01460{left:380.800000pt;}
.x12_c01460{left:382.720000pt;}
.x28_c01460{left:391.040000pt;}
.x1b_c01460{left:401.280000pt;}
.x48_c01460{left:409.600000pt;}
.x8_c01460{left:410.880000pt;}
.x57_c01460{left:418.560000pt;}
.x29_c01460{left:420.480000pt;}
.x5c_c01460{left:428.800000pt;}
.x1c_c01460{left:430.080000pt;}
.x36_c01460{left:431.360000pt;}
.x13_c01460{left:439.680000pt;}
.x9_c01460{left:449.920000pt;}
.x51_c01460{left:456.320000pt;}
.x4b_c01460{left:457.600000pt;}
.x24_c01460{left:458.880000pt;}
.x5d_c01460{left:467.200000pt;}
.x31_c01460{left:468.480000pt;}
.x2a_c01460{left:477.440000pt;}
.x58_c01460{left:485.760000pt;}
.x1d_c01460{left:487.680000pt;}
.x4c_c01460{left:495.360000pt;}
.x44_c01460{left:496.640000pt;}
.x41_c01460{left:505.600000pt;}
.x32_c01460{left:506.880000pt;}
.x18_c01460{left:526.720000pt;}
.x4e_c01460{left:534.400000pt;}
.xa_c01460{left:535.680000pt;}
.x45_c01460{left:544.000000pt;}
.x2b_c01460{left:545.920000pt;}
.x42_c01460{left:553.600000pt;}
.x37_c01460{left:554.880000pt;}
.x33_c01460{left:564.480000pt;}
.x53_c01460{left:572.160000pt;}
.x5e_c01460{left:574.080000pt;}
.xb_c01460{left:575.360000pt;}
.x38_c01460{left:583.680000pt;}
.x59_c01460{left:592.000000pt;}
.x43_c01460{left:593.280000pt;}
.x1e_c01460{left:594.560000pt;}
.x49_c01460{left:599.040000pt;}
.x1_c01460{left:600.960000pt;}
.x3e_c01460{left:602.880000pt;}
.x25_c01460{left:604.160000pt;}
.x4f_c01460{left:611.840000pt;}
.x5a_c01460{left:621.440000pt;}
}





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

.ir_c01461:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01461{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01461;src:url('chunks/assets/font_c730cefdb42280f54c015576.woff2')format("woff");}.ff1_c01461{font-family:ff1_c01461;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m82_c01461{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01461{transform:matrix(0.024975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024975,0.000000,0.000000,0.250000,0,0);}
.m32_c01461{transform:matrix(0.042975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042975,0.000000,0.000000,0.250000,0,0);}
.m37_c01461{transform:matrix(0.045125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045125,0.000000,0.000000,0.250000,0,0);}
.m3e_c01461{transform:matrix(0.050575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050575,0.000000,0.000000,0.250000,0,0);}
.m28_c01461{transform:matrix(0.056400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056400,0.000000,0.000000,0.250000,0,0);}
.m68_c01461{transform:matrix(0.060800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060800,0.000000,0.000000,0.250000,0,0);}
.m40_c01461{transform:matrix(0.060975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060975,0.000000,0.000000,0.250000,0,0);}
.m2e_c01461{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);}
.m21_c01461{transform:matrix(0.062600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062600,0.000000,0.000000,0.250000,0,0);}
.m7f_c01461{transform:matrix(0.070775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070775,0.000000,0.000000,0.250000,0,0);}
.m2a_c01461{transform:matrix(0.093850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093850,0.000000,0.000000,0.250000,0,0);}
.m34_c01461{transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);}
.m86_c01461{transform:matrix(0.100300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100300,0.000000,0.000000,0.250000,0,0);}
.m7c_c01461{transform:matrix(0.101125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101125,0.000000,0.000000,0.250000,0,0);}
.m7a_c01461{transform:matrix(0.103650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103650,0.000000,0.000000,0.250000,0,0);}
.m84_c01461{transform:matrix(0.104175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104175,0.000000,0.000000,0.250000,0,0);}
.m7e_c01461{transform:matrix(0.112150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112150,0.000000,0.000000,0.250000,0,0);}
.m4a_c01461{transform:matrix(0.116200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116200,0.000000,0.000000,0.250000,0,0);}
.m3b_c01461{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m7b_c01461{transform:matrix(0.123900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123900,0.000000,0.000000,0.250000,0,0);}
.m8d_c01461{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);}
.m80_c01461{transform:matrix(0.128400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128400,0.000000,0.000000,0.250000,0,0);}
.m69_c01461{transform:matrix(0.133000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133000,0.000000,0.000000,0.250000,0,0);}
.ma_c01461{transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);}
.m3_c01461{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.m85_c01461{transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);}
.m2b_c01461{transform:matrix(0.175350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175350,0.000000,0.000000,0.250000,0,0);}
.m59_c01461{transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);}
.m2_c01461{transform:matrix(0.180225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180225,0.000000,0.000000,0.250000,0,0);}
.m6b_c01461{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m46_c01461{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01461{transform:matrix(0.192350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192350,0.000000,0.000000,0.250000,0,0);}
.m47_c01461{transform:matrix(0.192700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192700,0.000000,0.000000,0.250000,0,0);}
.m88_c01461{transform:matrix(0.204050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204050,0.000000,0.000000,0.250000,0,0);}
.m53_c01461{transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);}
.m7d_c01461{transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);}
.m30_c01461{transform:matrix(0.221475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221475,0.000000,0.000000,0.250000,0,0);}
.m31_c01461{transform:matrix(0.223700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223700,0.000000,0.000000,0.250000,0,0);}
.m45_c01461{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m79_c01461{transform:matrix(0.225100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225100,0.000000,0.000000,0.250000,0,0);}
.m87_c01461{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m52_c01461{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m35_c01461{transform:matrix(0.238700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238700,0.000000,0.000000,0.250000,0,0);}
.m5d_c01461{transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);}
.m89_c01461{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_c01461{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);}
.m72_c01461{transform:matrix(0.248575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248575,0.000000,0.000000,0.250000,0,0);}
.m5c_c01461{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m5e_c01461{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m75_c01461{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);}
.m55_c01461{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_c01461{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m13_c01461{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);}
.m78_c01461{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);}
.m33_c01461{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);}
.m63_c01461{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);}
.m71_c01461{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_c01461{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m54_c01461{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);}
.m36_c01461{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m10_c01461{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);}
.m4c_c01461{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);}
.m44_c01461{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m6_c01461{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m38_c01461{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.me_c01461{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.md_c01461{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m49_c01461{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01461{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m24_c01461{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m5_c01461{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m7_c01461{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01461{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mb_c01461{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m27_c01461{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);}
.m57_c01461{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m50_c01461{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m9_c01461{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);}
.m29_c01461{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);}
.m56_c01461{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01461{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);}
.m26_c01461{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m6a_c01461{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);}
.m4d_c01461{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.mc_c01461{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);}
.m48_c01461{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1_c01461{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);}
.m4f_c01461{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m67_c01461{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);}
.m2f_c01461{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);}
.m16_c01461{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_c01461{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m20_c01461{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);}
.m8_c01461{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);}
.m65_c01461{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);}
.m1d_c01461{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);}
.m1f_c01461{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01461{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m4_c01461{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);}
.m22_c01461{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m64_c01461{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);}
.m51_c01461{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m18_c01461{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);}
.m6c_c01461{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);}
.m70_c01461{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m19_c01461{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m8b_c01461{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m73_c01461{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);}
.m58_c01461{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m74_c01461{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);}
.m5a_c01461{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m17_c01461{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);}
.m14_c01461{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m5f_c01461{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01461{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);}
.m1a_c01461{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);}
.m15_c01461{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m6d_c01461{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);}
.m60_c01461{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);}
.m42_c01461{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01461{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m25_c01461{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m6e_c01461{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01461{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m23_c01461{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);}
.m61_c01461{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m41_c01461{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m6f_c01461{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01461{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m8e_c01461{transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01461{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);}
.m66_c01461{transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);}
.m62_c01461{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.m83_c01461{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);}
.m3a_c01461{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m5b_c01461{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m8a_c01461{transform:matrix(0.757500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.757500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.757500,0.000000,0.000000,0.250000,0,0);}
.m81_c01461{transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);}
.m39_c01461{transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);}
.m76_c01461{transform:matrix(1.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.355000,0.000000,0.000000,0.250000,0,0);}
.m8c_c01461{transform:matrix(1.805000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.805000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.805000,0.000000,0.000000,0.250000,0,0);}
.m77_c01461{transform:matrix(3.067500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.067500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.067500,0.000000,0.000000,0.250000,0,0);}
.v0_c01461{vertical-align:0.000000px;}
.ls0_c01461{letter-spacing:0.000000px;}
.sc__c01461{text-shadow:none;}
.sc0_c01461{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01461{-webkit-text-stroke:0px transparent;}
.sc0_c01461{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01461{word-spacing:0.000000px;}
.fc0_c01461{color:transparent;}
.fs1d_c01461{font-size:2.880000px;}
.fs1f_c01461{font-size:5.760000px;}
.fs13_c01461{font-size:8.640000px;}
.fs9_c01461{font-size:11.520000px;}
.fs19_c01461{font-size:14.400000px;}
.fs14_c01461{font-size:17.280000px;}
.fs20_c01461{font-size:20.160000px;}
.fs1a_c01461{font-size:25.920000px;}
.fs17_c01461{font-size:28.800000px;}
.fs5_c01461{font-size:34.560000px;}
.fs12_c01461{font-size:37.440000px;}
.fs4_c01461{font-size:40.320000px;}
.fs1_c01461{font-size:43.200000px;}
.fs6_c01461{font-size:46.080000px;}
.fs7_c01461{font-size:48.960000px;}
.fs0_c01461{font-size:51.840000px;}
.fs18_c01461{font-size:54.720000px;}
.fs10_c01461{font-size:57.600000px;}
.fsc_c01461{font-size:60.480000px;}
.fsd_c01461{font-size:63.360000px;}
.fse_c01461{font-size:66.240000px;}
.fs3_c01461{font-size:69.120000px;}
.fsf_c01461{font-size:74.880000px;}
.fs11_c01461{font-size:77.760000px;}
.fs2_c01461{font-size:80.640000px;}
.fsb_c01461{font-size:86.400000px;}
.fsa_c01461{font-size:100.800000px;}
.fs1b_c01461{font-size:106.560000px;}
.fs1c_c01461{font-size:126.720000px;}
.fs1e_c01461{font-size:146.880000px;}
.fs8_c01461{font-size:311.040000px;}
.fs15_c01461{font-size:360.000000px;}
.fs16_c01461{font-size:368.640000px;}
.y0_c01461{bottom:0.000000px;}
.ya1_c01461{bottom:105.120000px;}
.y82_c01461{bottom:105.840000px;}
.y90_c01461{bottom:106.560000px;}
.y6a_c01461{bottom:108.000000px;}
.y100_c01461{bottom:130.320000px;}
.yf4_c01461{bottom:131.040000px;}
.y8f_c01461{bottom:132.480000px;}
.y69_c01461{bottom:133.200000px;}
.y18_c01461{bottom:136.800000px;}
.yf3_c01461{bottom:156.960000px;}
.y8e_c01461{bottom:158.400000px;}
.y81_c01461{bottom:159.120000px;}
.y80_c01461{bottom:160.560000px;}
.yf2_c01461{bottom:182.880000px;}
.y7f_c01461{bottom:185.040000px;}
.y17_c01461{bottom:189.360000px;}
.ycf_c01461{bottom:202.320000px;}
.y107_c01461{bottom:208.800000px;}
.yff_c01461{bottom:209.520000px;}
.yf0_c01461{bottom:210.240000px;}
.y8d_c01461{bottom:210.960000px;}
.yf1_c01461{bottom:211.680000px;}
.y99_c01461{bottom:212.400000px;}
.y7e_c01461{bottom:213.120000px;}
.y67_c01461{bottom:213.840000px;}
.y68_c01461{bottom:214.560000px;}
.ycd_c01461{bottom:223.200000px;}
.yce_c01461{bottom:223.920000px;}
.y8c_c01461{bottom:237.600000px;}
.yef_c01461{bottom:238.320000px;}
.y98_c01461{bottom:239.760000px;}
.y66_c01461{bottom:240.480000px;}
.ycc_c01461{bottom:253.440000px;}
.yee_c01461{bottom:260.640000px;}
.y8b_c01461{bottom:262.080000px;}
.y7d_c01461{bottom:262.800000px;}
.y65_c01461{bottom:263.520000px;}
.y7c_c01461{bottom:264.240000px;}
.y64_c01461{bottom:264.960000px;}
.ycb_c01461{bottom:275.040000px;}
.yfe_c01461{bottom:286.560000px;}
.yda_c01461{bottom:287.280000px;}
.yed_c01461{bottom:288.000000px;}
.y7b_c01461{bottom:289.440000px;}
.ya0_c01461{bottom:290.880000px;}
.y15_c01461{bottom:291.600000px;}
.y16_c01461{bottom:292.320000px;}
.y53_c01461{bottom:306.720000px;}
.yfd_c01461{bottom:313.920000px;}
.y9f_c01461{bottom:314.640000px;}
.y7a_c01461{bottom:315.360000px;}
.yec_c01461{bottom:316.080000px;}
.y63_c01461{bottom:316.800000px;}
.y62_c01461{bottom:317.520000px;}
.y52_c01461{bottom:327.600000px;}
.y50_c01461{bottom:328.320000px;}
.y51_c01461{bottom:329.040000px;}
.yeb_c01461{bottom:339.120000px;}
.yfc_c01461{bottom:341.280000px;}
.yca_c01461{bottom:342.000000px;}
.y97_c01461{bottom:342.720000px;}
.y8a_c01461{bottom:343.440000px;}
.y14_c01461{bottom:344.160000px;}
.ye9_c01461{bottom:365.040000px;}
.yea_c01461{bottom:366.480000px;}
.y79_c01461{bottom:367.200000px;}
.y61_c01461{bottom:367.920000px;}
.y89_c01461{bottom:368.640000px;}
.ye8_c01461{bottom:390.960000px;}
.y88_c01461{bottom:393.840000px;}
.y12_c01461{bottom:395.280000px;}
.y13_c01461{bottom:396.000000px;}
.y122_c01461{bottom:406.080000px;}
.y121_c01461{bottom:409.680000px;}
.y4f_c01461{bottom:410.400000px;}
.y120_c01461{bottom:414.720000px;}
.yfb_c01461{bottom:416.160000px;}
.ye6_c01461{bottom:416.880000px;}
.y87_c01461{bottom:417.600000px;}
.ye7_c01461{bottom:419.040000px;}
.y60_c01461{bottom:420.480000px;}
.y49_c01461{bottom:421.200000px;}
.y11f_c01461{bottom:424.080000px;}
.y4e_c01461{bottom:429.120000px;}
.y4d_c01461{bottom:431.280000px;}
.y11e_c01461{bottom:432.000000px;}
.y11d_c01461{bottom:439.200000px;}
.y11c_c01461{bottom:443.520000px;}
.ye5_c01461{bottom:444.240000px;}
.y5f_c01461{bottom:444.960000px;}
.y11_c01461{bottom:445.680000px;}
.y86_c01461{bottom:446.400000px;}
.y4c_c01461{bottom:447.120000px;}
.y119_c01461{bottom:449.280000px;}
.y11b_c01461{bottom:450.000000px;}
.y11a_c01461{bottom:452.160000px;}
.y4b_c01461{bottom:458.640000px;}
.yc9_c01461{bottom:459.360000px;}
.yc8_c01461{bottom:460.080000px;}
.y4a_c01461{bottom:460.800000px;}
.y118_c01461{bottom:464.400000px;}
.y117_c01461{bottom:466.560000px;}
.ye4_c01461{bottom:468.000000px;}
.y9e_c01461{bottom:468.720000px;}
.yd9_c01461{bottom:469.440000px;}
.y5e_c01461{bottom:470.880000px;}
.y77_c01461{bottom:471.600000px;}
.y78_c01461{bottom:472.320000px;}
.yc6_c01461{bottom:478.800000px;}
.y115_c01461{bottom:479.520000px;}
.yc7_c01461{bottom:480.960000px;}
.y116_c01461{bottom:481.680000px;}
.y48_c01461{bottom:482.400000px;}
.y110_c01461{bottom:484.560000px;}
.y114_c01461{bottom:488.880000px;}
.ye3_c01461{bottom:493.920000px;}
.y5d_c01461{bottom:495.360000px;}
.yd8_c01461{bottom:496.080000px;}
.y9d_c01461{bottom:497.520000px;}
.y10_c01461{bottom:499.680000px;}
.y112_c01461{bottom:501.120000px;}
.y113_c01461{bottom:508.320000px;}
.yc4_c01461{bottom:511.920000px;}
.y47_c01461{bottom:512.640000px;}
.yc5_c01461{bottom:513.360000px;}
.y46_c01461{bottom:514.800000px;}
.y111_c01461{bottom:516.960000px;}
.y44_c01461{bottom:521.280000px;}
.y76_c01461{bottom:522.000000px;}
.y43_c01461{bottom:522.720000px;}
.y5c_c01461{bottom:523.440000px;}
.y96_c01461{bottom:524.160000px;}
.y45_c01461{bottom:526.320000px;}
.y10f_c01461{bottom:527.040000px;}
.y10e_c01461{bottom:528.480000px;}
.y42_c01461{bottom:531.360000px;}
.ybf_c01461{bottom:532.080000px;}
.yc3_c01461{bottom:534.240000px;}
.y41_c01461{bottom:535.680000px;}
.y10c_c01461{bottom:539.280000px;}
.y10d_c01461{bottom:540.000000px;}
.yd7_c01461{bottom:545.760000px;}
.ybe_c01461{bottom:546.480000px;}
.y40_c01461{bottom:547.200000px;}
.y106_c01461{bottom:547.920000px;}
.yf_c01461{bottom:548.640000px;}
.ye2_c01461{bottom:549.360000px;}
.y75_c01461{bottom:550.080000px;}
.y3f_c01461{bottom:550.800000px;}
.ybc_c01461{bottom:561.600000px;}
.y3e_c01461{bottom:563.040000px;}
.ybd_c01461{bottom:563.760000px;}
.y3d_c01461{bottom:565.200000px;}
.yd6_c01461{bottom:572.400000px;}
.y74_c01461{bottom:573.120000px;}
.y59_c01461{bottom:573.840000px;}
.y5a_c01461{bottom:574.560000px;}
.y58_c01461{bottom:576.000000px;}
.y5b_c01461{bottom:576.720000px;}
.y3c_c01461{bottom:580.320000px;}
.ybb_c01461{bottom:584.640000px;}
.yc2_c01461{bottom:585.360000px;}
.y3b_c01461{bottom:586.080000px;}
.yfa_c01461{bottom:597.600000px;}
.y38_c01461{bottom:599.040000px;}
.y39_c01461{bottom:599.760000px;}
.y57_c01461{bottom:600.480000px;}
.y3a_c01461{bottom:601.200000px;}
.ye_c01461{bottom:601.920000px;}
.yba_c01461{bottom:607.680000px;}
.yb9_c01461{bottom:614.160000px;}
.y37_c01461{bottom:614.880000px;}
.yc1_c01461{bottom:615.600000px;}
.y36_c01461{bottom:617.040000px;}
.yf9_c01461{bottom:623.520000px;}
.ye1_c01461{bottom:624.240000px;}
.y9c_c01461{bottom:624.960000px;}
.y73_c01461{bottom:625.680000px;}
.y56_c01461{bottom:626.400000px;}
.y95_c01461{bottom:627.120000px;}
.y33_c01461{bottom:633.600000px;}
.y35_c01461{bottom:634.320000px;}
.yb8_c01461{bottom:636.480000px;}
.yc0_c01461{bottom:637.200000px;}
.y34_c01461{bottom:638.640000px;}
.y32_c01461{bottom:648.000000px;}
.y30_c01461{bottom:648.720000px;}
.yb7_c01461{bottom:649.440000px;}
.yd5_c01461{bottom:650.160000px;}
.y72_c01461{bottom:650.880000px;}
.yd_c01461{bottom:651.600000px;}
.y94_c01461{bottom:652.320000px;}
.y31_c01461{bottom:653.040000px;}
.y2f_c01461{bottom:662.400000px;}
.yb6_c01461{bottom:665.280000px;}
.yb3_c01461{bottom:668.160000px;}
.y10b_c01461{bottom:672.480000px;}
.y105_c01461{bottom:674.640000px;}
.yf8_c01461{bottom:675.360000px;}
.y9b_c01461{bottom:676.080000px;}
.yd4_c01461{bottom:676.800000px;}
.yd3_c01461{bottom:677.520000px;}
.y55_c01461{bottom:678.240000px;}
.y71_c01461{bottom:678.960000px;}
.y93_c01461{bottom:679.680000px;}
.y2c_c01461{bottom:681.840000px;}
.y2e_c01461{bottom:684.000000px;}
.yb5_c01461{bottom:688.320000px;}
.yb2_c01461{bottom:689.040000px;}
.y2d_c01461{bottom:689.760000px;}
.y10a_c01461{bottom:697.680000px;}
.y109_c01461{bottom:699.840000px;}
.yb4_c01461{bottom:701.280000px;}
.ye0_c01461{bottom:702.000000px;}
.y2b_c01461{bottom:702.720000px;}
.y104_c01461{bottom:703.440000px;}
.yc_c01461{bottom:704.160000px;}
.y2a_c01461{bottom:704.880000px;}
.y29_c01461{bottom:708.480000px;}
.yb1_c01461{bottom:717.840000px;}
.y28_c01461{bottom:718.560000px;}
.yb0_c01461{bottom:720.000000px;}
.y27_c01461{bottom:720.720000px;}
.y26_c01461{bottom:721.440000px;}
.y1f_c01461{bottom:725.760000px;}
.y103_c01461{bottom:727.200000px;}
.yf7_c01461{bottom:727.920000px;}
.y85_c01461{bottom:728.640000px;}
.y54_c01461{bottom:729.360000px;}
.y70_c01461{bottom:730.800000px;}
.y25_c01461{bottom:740.160000px;}
.yaf_c01461{bottom:740.880000px;}
.y24_c01461{bottom:741.600000px;}
.y102_c01461{bottom:751.680000px;}
.ydf_c01461{bottom:752.400000px;}
.yd2_c01461{bottom:753.120000px;}
.y23_c01461{bottom:753.840000px;}
.yb_c01461{bottom:754.560000px;}
.y6f_c01461{bottom:756.720000px;}
.yae_c01461{bottom:768.960000px;}
.y22_c01461{bottom:769.680000px;}
.y21_c01461{bottom:771.120000px;}
.y6e_c01461{bottom:779.760000px;}
.y84_c01461{bottom:780.480000px;}
.y92_c01461{bottom:781.200000px;}
.yad_c01461{bottom:791.280000px;}
.y20_c01461{bottom:792.000000px;}
.yf6_c01461{bottom:804.240000px;}
.yde_c01461{bottom:804.960000px;}
.ydd_c01461{bottom:805.680000px;}
.y6d_c01461{bottom:806.400000px;}
.y1e_c01461{bottom:807.120000px;}
.yd1_c01461{bottom:807.840000px;}
.ya_c01461{bottom:809.280000px;}
.yac_c01461{bottom:821.520000px;}
.y1d_c01461{bottom:822.240000px;}
.yab_c01461{bottom:823.680000px;}
.y1c_c01461{bottom:825.120000px;}
.y101_c01461{bottom:830.160000px;}
.yf5_c01461{bottom:830.880000px;}
.ydb_c01461{bottom:831.600000px;}
.y6c_c01461{bottom:832.320000px;}
.ydc_c01461{bottom:833.040000px;}
.yd0_c01461{bottom:833.760000px;}
.y9a_c01461{bottom:834.480000px;}
.yaa_c01461{bottom:840.240000px;}
.y1b_c01461{bottom:840.960000px;}
.ya9_c01461{bottom:843.120000px;}
.y1a_c01461{bottom:843.840000px;}
.y91_c01461{bottom:856.800000px;}
.y108_c01461{bottom:857.520000px;}
.y19_c01461{bottom:858.240000px;}
.y6b_c01461{bottom:858.960000px;}
.y83_c01461{bottom:859.680000px;}
.y9_c01461{bottom:860.400000px;}
.y8_c01461{bottom:874.080000px;}
.y4_c01461{bottom:889.920000px;}
.y3_c01461{bottom:890.640000px;}
.ya8_c01461{bottom:891.360000px;}
.y6_c01461{bottom:892.080000px;}
.ya3_c01461{bottom:894.240000px;}
.ya2_c01461{bottom:894.960000px;}
.y7_c01461{bottom:895.680000px;}
.y5_c01461{bottom:896.400000px;}
.y1_c01461{bottom:897.840000px;}
.y2_c01461{bottom:900.000000px;}
.ya7_c01461{bottom:901.440000px;}
.ya5_c01461{bottom:902.160000px;}
.ya6_c01461{bottom:904.320000px;}
.ya4_c01461{bottom:905.760000px;}
.h1f_c01461{height:2.591719px;}
.h21_c01461{height:5.183438px;}
.h15_c01461{height:7.775156px;}
.hb_c01461{height:10.366875px;}
.h1b_c01461{height:12.958594px;}
.h16_c01461{height:15.550313px;}
.h22_c01461{height:18.142031px;}
.h1c_c01461{height:23.325469px;}
.h19_c01461{height:25.917187px;}
.h7_c01461{height:31.100625px;}
.h14_c01461{height:33.692344px;}
.h6_c01461{height:36.284062px;}
.h3_c01461{height:38.875781px;}
.h8_c01461{height:41.467500px;}
.h9_c01461{height:44.059219px;}
.h2_c01461{height:46.650937px;}
.h1a_c01461{height:49.242656px;}
.h12_c01461{height:51.834375px;}
.he_c01461{height:54.426094px;}
.hf_c01461{height:57.017812px;}
.h10_c01461{height:59.609531px;}
.h5_c01461{height:62.201250px;}
.h11_c01461{height:67.384687px;}
.h13_c01461{height:69.976406px;}
.h4_c01461{height:72.568125px;}
.hd_c01461{height:77.751563px;}
.hc_c01461{height:90.710156px;}
.h1d_c01461{height:95.893594px;}
.h1e_c01461{height:114.035625px;}
.h20_c01461{height:132.177656px;}
.ha_c01461{height:279.905625px;}
.h17_c01461{height:323.964844px;}
.h18_c01461{height:331.740000px;}
.h1_c01461{height:931.500000px;}
.h0_c01461{height:931.680000px;}
.w1_c01461{width:1273.500000px;}
.w0_c01461{width:1273.680000px;}
.x0_c01461{left:0.000000px;}
.x1_c01461{left:39.600000px;}
.x59_c01461{left:51.120000px;}
.xd_c01461{left:66.960000px;}
.xf_c01461{left:76.320000px;}
.xc_c01461{left:86.400000px;}
.xb_c01461{left:105.840000px;}
.x2_c01461{left:118.800000px;}
.xe_c01461{left:126.720000px;}
.x5a_c01461{left:136.080000px;}
.x3_c01461{left:141.120000px;}
.x4_c01461{left:162.000000px;}
.x29_c01461{left:191.520000px;}
.x27_c01461{left:192.960000px;}
.x22_c01461{left:194.400000px;}
.x21_c01461{left:195.840000px;}
.x28_c01461{left:203.040000px;}
.x23_c01461{left:204.480000px;}
.x10_c01461{left:205.920000px;}
.x24_c01461{left:214.560000px;}
.x5_c01461{left:216.000000px;}
.x26_c01461{left:224.640000px;}
.x25_c01461{left:226.800000px;}
.x14_c01461{left:267.840000px;}
.x1d_c01461{left:269.280000px;}
.x15_c01461{left:270.720000px;}
.x1f_c01461{left:272.160000px;}
.x1b_c01461{left:279.360000px;}
.x12_c01461{left:281.520000px;}
.x20_c01461{left:288.720000px;}
.x16_c01461{left:291.600000px;}
.x6_c01461{left:295.200000px;}
.x11_c01461{left:304.560000px;}
.x18_c01461{left:313.920000px;}
.x13_c01461{left:316.080000px;}
.x1e_c01461{left:324.000000px;}
.x17_c01461{left:325.440000px;}
.x1c_c01461{left:335.520000px;}
.x1a_c01461{left:349.920000px;}
.x19_c01461{left:351.360000px;}
.x30_c01461{left:367.920000px;}
.x2d_c01461{left:369.360000px;}
.x2b_c01461{left:370.800000px;}
.x33_c01461{left:376.560000px;}
.x2f_c01461{left:378.000000px;}
.x2a_c01461{left:380.880000px;}
.x2c_c01461{left:389.520000px;}
.x7_c01461{left:390.960000px;}
.x32_c01461{left:397.440000px;}
.x31_c01461{left:398.880000px;}
.x2e_c01461{left:400.320000px;}
.x3b_c01461{left:462.960000px;}
.x39_c01461{left:465.840000px;}
.x36_c01461{left:467.280000px;}
.x34_c01461{left:468.720000px;}
.x38_c01461{left:475.200000px;}
.x35_c01461{left:476.640000px;}
.x8_c01461{left:478.080000px;}
.x3a_c01461{left:485.280000px;}
.x37_c01461{left:487.440000px;}
.x40_c01461{left:532.080000px;}
.x3f_c01461{left:539.280000px;}
.x3e_c01461{left:542.160000px;}
.x3c_c01461{left:544.320000px;}
.x41_c01461{left:550.800000px;}
.x3d_c01461{left:552.960000px;}
.x9_c01461{left:554.400000px;}
.x46_c01461{left:617.040000px;}
.x45_c01461{left:618.480000px;}
.x43_c01461{left:619.920000px;}
.x42_c01461{left:621.360000px;}
.xa_c01461{left:630.000000px;}
.x44_c01461{left:640.080000px;}
.x5d_c01461{left:691.920000px;}
.x5b_c01461{left:693.360000px;}
.x53_c01461{left:694.800000px;}
.x5e_c01461{left:712.800000px;}
.x55_c01461{left:716.400000px;}
.x47_c01461{left:719.280000px;}
.x52_c01461{left:728.640000px;}
.x56_c01461{left:737.280000px;}
.x54_c01461{left:738.720000px;}
.x58_c01461{left:747.360000px;}
.x57_c01461{left:769.680000px;}
.x5c_c01461{left:775.440000px;}
.x60_c01461{left:793.440000px;}
.x5f_c01461{left:802.080000px;}
.x48_c01461{left:803.520000px;}
.x61_c01461{left:812.880000px;}
.x6c_c01461{left:866.160000px;}
.x64_c01461{left:868.320000px;}
.x68_c01461{left:877.680000px;}
.x49_c01461{left:879.120000px;}
.x67_c01461{left:888.480000px;}
.x6b_c01461{left:898.560000px;}
.x63_c01461{left:900.720000px;}
.x66_c01461{left:909.360000px;}
.x65_c01461{left:910.800000px;}
.x6d_c01461{left:922.320000px;}
.x6a_c01461{left:928.080000px;}
.x69_c01461{left:933.120000px;}
.x62_c01461{left:935.280000px;}
.x4d_c01461{left:965.520000px;}
.x4a_c01461{left:966.960000px;}
.x6f_c01461{left:976.320000px;}
.x6e_c01461{left:977.760000px;}
.x70_c01461{left:987.120000px;}
.x4b_c01461{left:1000.080000px;}
.x4c_c01461{left:1012.320000px;}
.x50_c01461{left:1041.840000px;}
.x4e_c01461{left:1043.280000px;}
.x73_c01461{left:1051.920000px;}
.x72_c01461{left:1062.720000px;}
.x71_c01461{left:1064.880000px;}
.x4f_c01461{left:1087.920000px;}
.x79_c01461{left:1120.320000px;}
.x51_c01461{left:1129.680000px;}
.x75_c01461{left:1131.120000px;}
.x7a_c01461{left:1149.120000px;}
.x74_c01461{left:1152.000000px;}
.x77_c01461{left:1165.680000px;}
.x76_c01461{left:1175.040000px;}
.x78_c01461{left:1180.800000px;}
.x7b_c01461{left:1209.600000px;}
.x83_c01461{left:1213.200000px;}
.x81_c01461{left:1214.640000px;}
.x88_c01461{left:1216.800000px;}
.x85_c01461{left:1218.960000px;}
.x7d_c01461{left:1220.400000px;}
.x7f_c01461{left:1221.840000px;}
.x7c_c01461{left:1225.440000px;}
.x87_c01461{left:1226.880000px;}
.x86_c01461{left:1228.320000px;}
.x7e_c01461{left:1229.760000px;}
.x82_c01461{left:1231.200000px;}
.x84_c01461{left:1234.800000px;}
.x80_c01461{left:1236.240000px;}
@media print{
.v0_c01461{vertical-align:0.000000pt;}
.ls0_c01461{letter-spacing:0.000000pt;}
.ws0_c01461{word-spacing:0.000000pt;}
.fs1d_c01461{font-size:2.560000pt;}
.fs1f_c01461{font-size:5.120000pt;}
.fs13_c01461{font-size:7.680000pt;}
.fs9_c01461{font-size:10.240000pt;}
.fs19_c01461{font-size:12.800000pt;}
.fs14_c01461{font-size:15.360000pt;}
.fs20_c01461{font-size:17.920000pt;}
.fs1a_c01461{font-size:23.040000pt;}
.fs17_c01461{font-size:25.600000pt;}
.fs5_c01461{font-size:30.720000pt;}
.fs12_c01461{font-size:33.280000pt;}
.fs4_c01461{font-size:35.840000pt;}
.fs1_c01461{font-size:38.400000pt;}
.fs6_c01461{font-size:40.960000pt;}
.fs7_c01461{font-size:43.520000pt;}
.fs0_c01461{font-size:46.080000pt;}
.fs18_c01461{font-size:48.640000pt;}
.fs10_c01461{font-size:51.200000pt;}
.fsc_c01461{font-size:53.760000pt;}
.fsd_c01461{font-size:56.320000pt;}
.fse_c01461{font-size:58.880000pt;}
.fs3_c01461{font-size:61.440000pt;}
.fsf_c01461{font-size:66.560000pt;}
.fs11_c01461{font-size:69.120000pt;}
.fs2_c01461{font-size:71.680000pt;}
.fsb_c01461{font-size:76.800000pt;}
.fsa_c01461{font-size:89.600000pt;}
.fs1b_c01461{font-size:94.720000pt;}
.fs1c_c01461{font-size:112.640000pt;}
.fs1e_c01461{font-size:130.560000pt;}
.fs8_c01461{font-size:276.480000pt;}
.fs15_c01461{font-size:320.000000pt;}
.fs16_c01461{font-size:327.680000pt;}
.y0_c01461{bottom:0.000000pt;}
.ya1_c01461{bottom:93.440000pt;}
.y82_c01461{bottom:94.080000pt;}
.y90_c01461{bottom:94.720000pt;}
.y6a_c01461{bottom:96.000000pt;}
.y100_c01461{bottom:115.840000pt;}
.yf4_c01461{bottom:116.480000pt;}
.y8f_c01461{bottom:117.760000pt;}
.y69_c01461{bottom:118.400000pt;}
.y18_c01461{bottom:121.600000pt;}
.yf3_c01461{bottom:139.520000pt;}
.y8e_c01461{bottom:140.800000pt;}
.y81_c01461{bottom:141.440000pt;}
.y80_c01461{bottom:142.720000pt;}
.yf2_c01461{bottom:162.560000pt;}
.y7f_c01461{bottom:164.480000pt;}
.y17_c01461{bottom:168.320000pt;}
.ycf_c01461{bottom:179.840000pt;}
.y107_c01461{bottom:185.600000pt;}
.yff_c01461{bottom:186.240000pt;}
.yf0_c01461{bottom:186.880000pt;}
.y8d_c01461{bottom:187.520000pt;}
.yf1_c01461{bottom:188.160000pt;}
.y99_c01461{bottom:188.800000pt;}
.y7e_c01461{bottom:189.440000pt;}
.y67_c01461{bottom:190.080000pt;}
.y68_c01461{bottom:190.720000pt;}
.ycd_c01461{bottom:198.400000pt;}
.yce_c01461{bottom:199.040000pt;}
.y8c_c01461{bottom:211.200000pt;}
.yef_c01461{bottom:211.840000pt;}
.y98_c01461{bottom:213.120000pt;}
.y66_c01461{bottom:213.760000pt;}
.ycc_c01461{bottom:225.280000pt;}
.yee_c01461{bottom:231.680000pt;}
.y8b_c01461{bottom:232.960000pt;}
.y7d_c01461{bottom:233.600000pt;}
.y65_c01461{bottom:234.240000pt;}
.y7c_c01461{bottom:234.880000pt;}
.y64_c01461{bottom:235.520000pt;}
.ycb_c01461{bottom:244.480000pt;}
.yfe_c01461{bottom:254.720000pt;}
.yda_c01461{bottom:255.360000pt;}
.yed_c01461{bottom:256.000000pt;}
.y7b_c01461{bottom:257.280000pt;}
.ya0_c01461{bottom:258.560000pt;}
.y15_c01461{bottom:259.200000pt;}
.y16_c01461{bottom:259.840000pt;}
.y53_c01461{bottom:272.640000pt;}
.yfd_c01461{bottom:279.040000pt;}
.y9f_c01461{bottom:279.680000pt;}
.y7a_c01461{bottom:280.320000pt;}
.yec_c01461{bottom:280.960000pt;}
.y63_c01461{bottom:281.600000pt;}
.y62_c01461{bottom:282.240000pt;}
.y52_c01461{bottom:291.200000pt;}
.y50_c01461{bottom:291.840000pt;}
.y51_c01461{bottom:292.480000pt;}
.yeb_c01461{bottom:301.440000pt;}
.yfc_c01461{bottom:303.360000pt;}
.yca_c01461{bottom:304.000000pt;}
.y97_c01461{bottom:304.640000pt;}
.y8a_c01461{bottom:305.280000pt;}
.y14_c01461{bottom:305.920000pt;}
.ye9_c01461{bottom:324.480000pt;}
.yea_c01461{bottom:325.760000pt;}
.y79_c01461{bottom:326.400000pt;}
.y61_c01461{bottom:327.040000pt;}
.y89_c01461{bottom:327.680000pt;}
.ye8_c01461{bottom:347.520000pt;}
.y88_c01461{bottom:350.080000pt;}
.y12_c01461{bottom:351.360000pt;}
.y13_c01461{bottom:352.000000pt;}
.y122_c01461{bottom:360.960000pt;}
.y121_c01461{bottom:364.160000pt;}
.y4f_c01461{bottom:364.800000pt;}
.y120_c01461{bottom:368.640000pt;}
.yfb_c01461{bottom:369.920000pt;}
.ye6_c01461{bottom:370.560000pt;}
.y87_c01461{bottom:371.200000pt;}
.ye7_c01461{bottom:372.480000pt;}
.y60_c01461{bottom:373.760000pt;}
.y49_c01461{bottom:374.400000pt;}
.y11f_c01461{bottom:376.960000pt;}
.y4e_c01461{bottom:381.440000pt;}
.y4d_c01461{bottom:383.360000pt;}
.y11e_c01461{bottom:384.000000pt;}
.y11d_c01461{bottom:390.400000pt;}
.y11c_c01461{bottom:394.240000pt;}
.ye5_c01461{bottom:394.880000pt;}
.y5f_c01461{bottom:395.520000pt;}
.y11_c01461{bottom:396.160000pt;}
.y86_c01461{bottom:396.800000pt;}
.y4c_c01461{bottom:397.440000pt;}
.y119_c01461{bottom:399.360000pt;}
.y11b_c01461{bottom:400.000000pt;}
.y11a_c01461{bottom:401.920000pt;}
.y4b_c01461{bottom:407.680000pt;}
.yc9_c01461{bottom:408.320000pt;}
.yc8_c01461{bottom:408.960000pt;}
.y4a_c01461{bottom:409.600000pt;}
.y118_c01461{bottom:412.800000pt;}
.y117_c01461{bottom:414.720000pt;}
.ye4_c01461{bottom:416.000000pt;}
.y9e_c01461{bottom:416.640000pt;}
.yd9_c01461{bottom:417.280000pt;}
.y5e_c01461{bottom:418.560000pt;}
.y77_c01461{bottom:419.200000pt;}
.y78_c01461{bottom:419.840000pt;}
.yc6_c01461{bottom:425.600000pt;}
.y115_c01461{bottom:426.240000pt;}
.yc7_c01461{bottom:427.520000pt;}
.y116_c01461{bottom:428.160000pt;}
.y48_c01461{bottom:428.800000pt;}
.y110_c01461{bottom:430.720000pt;}
.y114_c01461{bottom:434.560000pt;}
.ye3_c01461{bottom:439.040000pt;}
.y5d_c01461{bottom:440.320000pt;}
.yd8_c01461{bottom:440.960000pt;}
.y9d_c01461{bottom:442.240000pt;}
.y10_c01461{bottom:444.160000pt;}
.y112_c01461{bottom:445.440000pt;}
.y113_c01461{bottom:451.840000pt;}
.yc4_c01461{bottom:455.040000pt;}
.y47_c01461{bottom:455.680000pt;}
.yc5_c01461{bottom:456.320000pt;}
.y46_c01461{bottom:457.600000pt;}
.y111_c01461{bottom:459.520000pt;}
.y44_c01461{bottom:463.360000pt;}
.y76_c01461{bottom:464.000000pt;}
.y43_c01461{bottom:464.640000pt;}
.y5c_c01461{bottom:465.280000pt;}
.y96_c01461{bottom:465.920000pt;}
.y45_c01461{bottom:467.840000pt;}
.y10f_c01461{bottom:468.480000pt;}
.y10e_c01461{bottom:469.760000pt;}
.y42_c01461{bottom:472.320000pt;}
.ybf_c01461{bottom:472.960000pt;}
.yc3_c01461{bottom:474.880000pt;}
.y41_c01461{bottom:476.160000pt;}
.y10c_c01461{bottom:479.360000pt;}
.y10d_c01461{bottom:480.000000pt;}
.yd7_c01461{bottom:485.120000pt;}
.ybe_c01461{bottom:485.760000pt;}
.y40_c01461{bottom:486.400000pt;}
.y106_c01461{bottom:487.040000pt;}
.yf_c01461{bottom:487.680000pt;}
.ye2_c01461{bottom:488.320000pt;}
.y75_c01461{bottom:488.960000pt;}
.y3f_c01461{bottom:489.600000pt;}
.ybc_c01461{bottom:499.200000pt;}
.y3e_c01461{bottom:500.480000pt;}
.ybd_c01461{bottom:501.120000pt;}
.y3d_c01461{bottom:502.400000pt;}
.yd6_c01461{bottom:508.800000pt;}
.y74_c01461{bottom:509.440000pt;}
.y59_c01461{bottom:510.080000pt;}
.y5a_c01461{bottom:510.720000pt;}
.y58_c01461{bottom:512.000000pt;}
.y5b_c01461{bottom:512.640000pt;}
.y3c_c01461{bottom:515.840000pt;}
.ybb_c01461{bottom:519.680000pt;}
.yc2_c01461{bottom:520.320000pt;}
.y3b_c01461{bottom:520.960000pt;}
.yfa_c01461{bottom:531.200000pt;}
.y38_c01461{bottom:532.480000pt;}
.y39_c01461{bottom:533.120000pt;}
.y57_c01461{bottom:533.760000pt;}
.y3a_c01461{bottom:534.400000pt;}
.ye_c01461{bottom:535.040000pt;}
.yba_c01461{bottom:540.160000pt;}
.yb9_c01461{bottom:545.920000pt;}
.y37_c01461{bottom:546.560000pt;}
.yc1_c01461{bottom:547.200000pt;}
.y36_c01461{bottom:548.480000pt;}
.yf9_c01461{bottom:554.240000pt;}
.ye1_c01461{bottom:554.880000pt;}
.y9c_c01461{bottom:555.520000pt;}
.y73_c01461{bottom:556.160000pt;}
.y56_c01461{bottom:556.800000pt;}
.y95_c01461{bottom:557.440000pt;}
.y33_c01461{bottom:563.200000pt;}
.y35_c01461{bottom:563.840000pt;}
.yb8_c01461{bottom:565.760000pt;}
.yc0_c01461{bottom:566.400000pt;}
.y34_c01461{bottom:567.680000pt;}
.y32_c01461{bottom:576.000000pt;}
.y30_c01461{bottom:576.640000pt;}
.yb7_c01461{bottom:577.280000pt;}
.yd5_c01461{bottom:577.920000pt;}
.y72_c01461{bottom:578.560000pt;}
.yd_c01461{bottom:579.200000pt;}
.y94_c01461{bottom:579.840000pt;}
.y31_c01461{bottom:580.480000pt;}
.y2f_c01461{bottom:588.800000pt;}
.yb6_c01461{bottom:591.360000pt;}
.yb3_c01461{bottom:593.920000pt;}
.y10b_c01461{bottom:597.760000pt;}
.y105_c01461{bottom:599.680000pt;}
.yf8_c01461{bottom:600.320000pt;}
.y9b_c01461{bottom:600.960000pt;}
.yd4_c01461{bottom:601.600000pt;}
.yd3_c01461{bottom:602.240000pt;}
.y55_c01461{bottom:602.880000pt;}
.y71_c01461{bottom:603.520000pt;}
.y93_c01461{bottom:604.160000pt;}
.y2c_c01461{bottom:606.080000pt;}
.y2e_c01461{bottom:608.000000pt;}
.yb5_c01461{bottom:611.840000pt;}
.yb2_c01461{bottom:612.480000pt;}
.y2d_c01461{bottom:613.120000pt;}
.y10a_c01461{bottom:620.160000pt;}
.y109_c01461{bottom:622.080000pt;}
.yb4_c01461{bottom:623.360000pt;}
.ye0_c01461{bottom:624.000000pt;}
.y2b_c01461{bottom:624.640000pt;}
.y104_c01461{bottom:625.280000pt;}
.yc_c01461{bottom:625.920000pt;}
.y2a_c01461{bottom:626.560000pt;}
.y29_c01461{bottom:629.760000pt;}
.yb1_c01461{bottom:638.080000pt;}
.y28_c01461{bottom:638.720000pt;}
.yb0_c01461{bottom:640.000000pt;}
.y27_c01461{bottom:640.640000pt;}
.y26_c01461{bottom:641.280000pt;}
.y1f_c01461{bottom:645.120000pt;}
.y103_c01461{bottom:646.400000pt;}
.yf7_c01461{bottom:647.040000pt;}
.y85_c01461{bottom:647.680000pt;}
.y54_c01461{bottom:648.320000pt;}
.y70_c01461{bottom:649.600000pt;}
.y25_c01461{bottom:657.920000pt;}
.yaf_c01461{bottom:658.560000pt;}
.y24_c01461{bottom:659.200000pt;}
.y102_c01461{bottom:668.160000pt;}
.ydf_c01461{bottom:668.800000pt;}
.yd2_c01461{bottom:669.440000pt;}
.y23_c01461{bottom:670.080000pt;}
.yb_c01461{bottom:670.720000pt;}
.y6f_c01461{bottom:672.640000pt;}
.yae_c01461{bottom:683.520000pt;}
.y22_c01461{bottom:684.160000pt;}
.y21_c01461{bottom:685.440000pt;}
.y6e_c01461{bottom:693.120000pt;}
.y84_c01461{bottom:693.760000pt;}
.y92_c01461{bottom:694.400000pt;}
.yad_c01461{bottom:703.360000pt;}
.y20_c01461{bottom:704.000000pt;}
.yf6_c01461{bottom:714.880000pt;}
.yde_c01461{bottom:715.520000pt;}
.ydd_c01461{bottom:716.160000pt;}
.y6d_c01461{bottom:716.800000pt;}
.y1e_c01461{bottom:717.440000pt;}
.yd1_c01461{bottom:718.080000pt;}
.ya_c01461{bottom:719.360000pt;}
.yac_c01461{bottom:730.240000pt;}
.y1d_c01461{bottom:730.880000pt;}
.yab_c01461{bottom:732.160000pt;}
.y1c_c01461{bottom:733.440000pt;}
.y101_c01461{bottom:737.920000pt;}
.yf5_c01461{bottom:738.560000pt;}
.ydb_c01461{bottom:739.200000pt;}
.y6c_c01461{bottom:739.840000pt;}
.ydc_c01461{bottom:740.480000pt;}
.yd0_c01461{bottom:741.120000pt;}
.y9a_c01461{bottom:741.760000pt;}
.yaa_c01461{bottom:746.880000pt;}
.y1b_c01461{bottom:747.520000pt;}
.ya9_c01461{bottom:749.440000pt;}
.y1a_c01461{bottom:750.080000pt;}
.y91_c01461{bottom:761.600000pt;}
.y108_c01461{bottom:762.240000pt;}
.y19_c01461{bottom:762.880000pt;}
.y6b_c01461{bottom:763.520000pt;}
.y83_c01461{bottom:764.160000pt;}
.y9_c01461{bottom:764.800000pt;}
.y8_c01461{bottom:776.960000pt;}
.y4_c01461{bottom:791.040000pt;}
.y3_c01461{bottom:791.680000pt;}
.ya8_c01461{bottom:792.320000pt;}
.y6_c01461{bottom:792.960000pt;}
.ya3_c01461{bottom:794.880000pt;}
.ya2_c01461{bottom:795.520000pt;}
.y7_c01461{bottom:796.160000pt;}
.y5_c01461{bottom:796.800000pt;}
.y1_c01461{bottom:798.080000pt;}
.y2_c01461{bottom:800.000000pt;}
.ya7_c01461{bottom:801.280000pt;}
.ya5_c01461{bottom:801.920000pt;}
.ya6_c01461{bottom:803.840000pt;}
.ya4_c01461{bottom:805.120000pt;}
.h1f_c01461{height:2.303750pt;}
.h21_c01461{height:4.607500pt;}
.h15_c01461{height:6.911250pt;}
.hb_c01461{height:9.215000pt;}
.h1b_c01461{height:11.518750pt;}
.h16_c01461{height:13.822500pt;}
.h22_c01461{height:16.126250pt;}
.h1c_c01461{height:20.733750pt;}
.h19_c01461{height:23.037500pt;}
.h7_c01461{height:27.645000pt;}
.h14_c01461{height:29.948750pt;}
.h6_c01461{height:32.252500pt;}
.h3_c01461{height:34.556250pt;}
.h8_c01461{height:36.860000pt;}
.h9_c01461{height:39.163750pt;}
.h2_c01461{height:41.467500pt;}
.h1a_c01461{height:43.771250pt;}
.h12_c01461{height:46.075000pt;}
.he_c01461{height:48.378750pt;}
.hf_c01461{height:50.682500pt;}
.h10_c01461{height:52.986250pt;}
.h5_c01461{height:55.290000pt;}
.h11_c01461{height:59.897500pt;}
.h13_c01461{height:62.201250pt;}
.h4_c01461{height:64.505000pt;}
.hd_c01461{height:69.112500pt;}
.hc_c01461{height:80.631250pt;}
.h1d_c01461{height:85.238750pt;}
.h1e_c01461{height:101.365000pt;}
.h20_c01461{height:117.491250pt;}
.ha_c01461{height:248.805000pt;}
.h17_c01461{height:287.968750pt;}
.h18_c01461{height:294.880000pt;}
.h1_c01461{height:828.000000pt;}
.h0_c01461{height:828.160000pt;}
.w1_c01461{width:1132.000000pt;}
.w0_c01461{width:1132.160000pt;}
.x0_c01461{left:0.000000pt;}
.x1_c01461{left:35.200000pt;}
.x59_c01461{left:45.440000pt;}
.xd_c01461{left:59.520000pt;}
.xf_c01461{left:67.840000pt;}
.xc_c01461{left:76.800000pt;}
.xb_c01461{left:94.080000pt;}
.x2_c01461{left:105.600000pt;}
.xe_c01461{left:112.640000pt;}
.x5a_c01461{left:120.960000pt;}
.x3_c01461{left:125.440000pt;}
.x4_c01461{left:144.000000pt;}
.x29_c01461{left:170.240000pt;}
.x27_c01461{left:171.520000pt;}
.x22_c01461{left:172.800000pt;}
.x21_c01461{left:174.080000pt;}
.x28_c01461{left:180.480000pt;}
.x23_c01461{left:181.760000pt;}
.x10_c01461{left:183.040000pt;}
.x24_c01461{left:190.720000pt;}
.x5_c01461{left:192.000000pt;}
.x26_c01461{left:199.680000pt;}
.x25_c01461{left:201.600000pt;}
.x14_c01461{left:238.080000pt;}
.x1d_c01461{left:239.360000pt;}
.x15_c01461{left:240.640000pt;}
.x1f_c01461{left:241.920000pt;}
.x1b_c01461{left:248.320000pt;}
.x12_c01461{left:250.240000pt;}
.x20_c01461{left:256.640000pt;}
.x16_c01461{left:259.200000pt;}
.x6_c01461{left:262.400000pt;}
.x11_c01461{left:270.720000pt;}
.x18_c01461{left:279.040000pt;}
.x13_c01461{left:280.960000pt;}
.x1e_c01461{left:288.000000pt;}
.x17_c01461{left:289.280000pt;}
.x1c_c01461{left:298.240000pt;}
.x1a_c01461{left:311.040000pt;}
.x19_c01461{left:312.320000pt;}
.x30_c01461{left:327.040000pt;}
.x2d_c01461{left:328.320000pt;}
.x2b_c01461{left:329.600000pt;}
.x33_c01461{left:334.720000pt;}
.x2f_c01461{left:336.000000pt;}
.x2a_c01461{left:338.560000pt;}
.x2c_c01461{left:346.240000pt;}
.x7_c01461{left:347.520000pt;}
.x32_c01461{left:353.280000pt;}
.x31_c01461{left:354.560000pt;}
.x2e_c01461{left:355.840000pt;}
.x3b_c01461{left:411.520000pt;}
.x39_c01461{left:414.080000pt;}
.x36_c01461{left:415.360000pt;}
.x34_c01461{left:416.640000pt;}
.x38_c01461{left:422.400000pt;}
.x35_c01461{left:423.680000pt;}
.x8_c01461{left:424.960000pt;}
.x3a_c01461{left:431.360000pt;}
.x37_c01461{left:433.280000pt;}
.x40_c01461{left:472.960000pt;}
.x3f_c01461{left:479.360000pt;}
.x3e_c01461{left:481.920000pt;}
.x3c_c01461{left:483.840000pt;}
.x41_c01461{left:489.600000pt;}
.x3d_c01461{left:491.520000pt;}
.x9_c01461{left:492.800000pt;}
.x46_c01461{left:548.480000pt;}
.x45_c01461{left:549.760000pt;}
.x43_c01461{left:551.040000pt;}
.x42_c01461{left:552.320000pt;}
.xa_c01461{left:560.000000pt;}
.x44_c01461{left:568.960000pt;}
.x5d_c01461{left:615.040000pt;}
.x5b_c01461{left:616.320000pt;}
.x53_c01461{left:617.600000pt;}
.x5e_c01461{left:633.600000pt;}
.x55_c01461{left:636.800000pt;}
.x47_c01461{left:639.360000pt;}
.x52_c01461{left:647.680000pt;}
.x56_c01461{left:655.360000pt;}
.x54_c01461{left:656.640000pt;}
.x58_c01461{left:664.320000pt;}
.x57_c01461{left:684.160000pt;}
.x5c_c01461{left:689.280000pt;}
.x60_c01461{left:705.280000pt;}
.x5f_c01461{left:712.960000pt;}
.x48_c01461{left:714.240000pt;}
.x61_c01461{left:722.560000pt;}
.x6c_c01461{left:769.920000pt;}
.x64_c01461{left:771.840000pt;}
.x68_c01461{left:780.160000pt;}
.x49_c01461{left:781.440000pt;}
.x67_c01461{left:789.760000pt;}
.x6b_c01461{left:798.720000pt;}
.x63_c01461{left:800.640000pt;}
.x66_c01461{left:808.320000pt;}
.x65_c01461{left:809.600000pt;}
.x6d_c01461{left:819.840000pt;}
.x6a_c01461{left:824.960000pt;}
.x69_c01461{left:829.440000pt;}
.x62_c01461{left:831.360000pt;}
.x4d_c01461{left:858.240000pt;}
.x4a_c01461{left:859.520000pt;}
.x6f_c01461{left:867.840000pt;}
.x6e_c01461{left:869.120000pt;}
.x70_c01461{left:877.440000pt;}
.x4b_c01461{left:888.960000pt;}
.x4c_c01461{left:899.840000pt;}
.x50_c01461{left:926.080000pt;}
.x4e_c01461{left:927.360000pt;}
.x73_c01461{left:935.040000pt;}
.x72_c01461{left:944.640000pt;}
.x71_c01461{left:946.560000pt;}
.x4f_c01461{left:967.040000pt;}
.x79_c01461{left:995.840000pt;}
.x51_c01461{left:1004.160000pt;}
.x75_c01461{left:1005.440000pt;}
.x7a_c01461{left:1021.440000pt;}
.x74_c01461{left:1024.000000pt;}
.x77_c01461{left:1036.160000pt;}
.x76_c01461{left:1044.480000pt;}
.x78_c01461{left:1049.600000pt;}
.x7b_c01461{left:1075.200000pt;}
.x83_c01461{left:1078.400000pt;}
.x81_c01461{left:1079.680000pt;}
.x88_c01461{left:1081.600000pt;}
.x85_c01461{left:1083.520000pt;}
.x7d_c01461{left:1084.800000pt;}
.x7f_c01461{left:1086.080000pt;}
.x7c_c01461{left:1089.280000pt;}
.x87_c01461{left:1090.560000pt;}
.x86_c01461{left:1091.840000pt;}
.x7e_c01461{left:1093.120000pt;}
.x82_c01461{left:1094.400000pt;}
.x84_c01461{left:1097.600000pt;}
.x80_c01461{left:1098.880000pt;}
}





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

.ir_c01462:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01462{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01462;src:url('chunks/assets/font_447a6c081dcfce2b0d561dcf.woff2')format("woff");}.ff1_c01462{font-family:ff1_c01462;line-height:1.109863;font-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_c01462{transform:matrix(0.229875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229875,0.000000,0.000000,0.250000,0,0);}
.m49_c01462{transform:matrix(0.238525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238525,0.000000,0.000000,0.250000,0,0);}
.m5a_c01462{transform:matrix(0.248900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248900,0.000000,0.000000,0.250000,0,0);}
.m4f_c01462{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);}
.m5f_c01462{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);}
.m3f_c01462{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);}
.m20_c01462{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);}
.m59_c01462{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);}
.m4e_c01462{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01462{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);}
.m40_c01462{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m61_c01462{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m5b_c01462{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m5e_c01462{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m6_c01462{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01462{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m53_c01462{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m58_c01462{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01462{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);}
.m57_c01462{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);}
.m3c_c01462{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m37_c01462{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01462{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);}
.m23_c01462{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01462{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m4_c01462{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m0_c01462{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m10_c01462{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m12_c01462{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m36_c01462{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);}
.ma_c01462{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_c01462{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m54_c01462{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);}
.m41_c01462{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m28_c01462{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);}
.m21_c01462{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);}
.m4a_c01462{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.md_c01462{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01462{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m51_c01462{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.mc_c01462{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m26_c01462{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);}
.m33_c01462{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01462{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);}
.m31_c01462{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);}
.m46_c01462{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m17_c01462{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m42_c01462{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01462{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);}
.m1d_c01462{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m5d_c01462{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m34_c01462{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);}
.m35_c01462{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m7_c01462{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);}
.m25_c01462{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01462{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m16_c01462{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01462{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m18_c01462{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);}
.m52_c01462{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m44_c01462{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m30_c01462{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m27_c01462{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);}
.m4c_c01462{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m48_c01462{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m39_c01462{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m14_c01462{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m24_c01462{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);}
.m15_c01462{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m13_c01462{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);}
.m2b_c01462{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m55_c01462{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m45_c01462{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m60_c01462{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m9_c01462{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m2_c01462{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m32_c01462{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m29_c01462{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);}
.m8_c01462{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);}
.me_c01462{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.mb_c01462{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m19_c01462{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m11_c01462{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01462{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m50_c01462{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01462{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);}
.m38_c01462{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m56_c01462{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.mf_c01462{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);}
.m3_c01462{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m1_c01462{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m22_c01462{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);}
.m43_c01462{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m47_c01462{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m5_c01462{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m5c_c01462{transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01462{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m4d_c01462{transform:matrix(0.982500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.982500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.982500,0.000000,0.000000,0.250000,0,0);}
.v0_c01462{vertical-align:0.000000px;}
.ls0_c01462{letter-spacing:0.000000px;}
.sc__c01462{text-shadow:none;}
.sc0_c01462{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01462{-webkit-text-stroke:0px transparent;}
.sc0_c01462{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01462{word-spacing:0.000000px;}
.fc0_c01462{color:transparent;}
.fse_c01462{font-size:23.040000px;}
.fs5_c01462{font-size:34.560000px;}
.fs1_c01462{font-size:37.440000px;}
.fs9_c01462{font-size:40.320000px;}
.fsd_c01462{font-size:43.200000px;}
.fs3_c01462{font-size:46.080000px;}
.fs2_c01462{font-size:48.960000px;}
.fs7_c01462{font-size:51.840000px;}
.fsc_c01462{font-size:54.720000px;}
.fs6_c01462{font-size:57.600000px;}
.fs8_c01462{font-size:60.480000px;}
.fsa_c01462{font-size:63.360000px;}
.fs4_c01462{font-size:66.240000px;}
.fsb_c01462{font-size:69.120000px;}
.fsf_c01462{font-size:72.000000px;}
.fs0_c01462{font-size:74.880000px;}
.y0_c01462{bottom:0.000000px;}
.y68_c01462{bottom:28.800000px;}
.y69_c01462{bottom:29.520000px;}
.y6b_c01462{bottom:31.680000px;}
.y6a_c01462{bottom:32.400000px;}
.y63_c01462{bottom:72.720000px;}
.y67_c01462{bottom:73.440000px;}
.y66_c01462{bottom:74.160000px;}
.y64_c01462{bottom:74.880000px;}
.y65_c01462{bottom:75.600000px;}
.y61_c01462{bottom:115.200000px;}
.y60_c01462{bottom:115.920000px;}
.y62_c01462{bottom:116.640000px;}
.y5f_c01462{bottom:118.080000px;}
.y5e_c01462{bottom:118.800000px;}
.y5d_c01462{bottom:159.120000px;}
.y5b_c01462{bottom:161.280000px;}
.y5c_c01462{bottom:162.000000px;}
.y58_c01462{bottom:210.960000px;}
.y57_c01462{bottom:211.680000px;}
.y5a_c01462{bottom:212.400000px;}
.y59_c01462{bottom:215.280000px;}
.y56_c01462{bottom:216.720000px;}
.y52_c01462{bottom:254.160000px;}
.y51_c01462{bottom:254.880000px;}
.y54_c01462{bottom:255.600000px;}
.y53_c01462{bottom:257.760000px;}
.y55_c01462{bottom:258.480000px;}
.y50_c01462{bottom:259.200000px;}
.y4e_c01462{bottom:298.080000px;}
.y4d_c01462{bottom:300.240000px;}
.y4c_c01462{bottom:300.960000px;}
.y4f_c01462{bottom:301.680000px;}
.y49_c01462{bottom:340.560000px;}
.y47_c01462{bottom:341.280000px;}
.y4a_c01462{bottom:342.000000px;}
.y48_c01462{bottom:343.440000px;}
.y4b_c01462{bottom:344.160000px;}
.y44_c01462{bottom:384.480000px;}
.y45_c01462{bottom:386.640000px;}
.y46_c01462{bottom:387.360000px;}
.y42_c01462{bottom:426.960000px;}
.y41_c01462{bottom:427.680000px;}
.y43_c01462{bottom:428.400000px;}
.y40_c01462{bottom:429.840000px;}
.y3f_c01462{bottom:430.560000px;}
.y3e_c01462{bottom:470.880000px;}
.y3d_c01462{bottom:471.600000px;}
.y3b_c01462{bottom:473.040000px;}
.y3c_c01462{bottom:473.760000px;}
.y39_c01462{bottom:524.160000px;}
.y3a_c01462{bottom:526.320000px;}
.y38_c01462{bottom:527.040000px;}
.y37_c01462{bottom:527.760000px;}
.y32_c01462{bottom:567.360000px;}
.y36_c01462{bottom:568.080000px;}
.y35_c01462{bottom:568.800000px;}
.y34_c01462{bottom:569.520000px;}
.y33_c01462{bottom:570.240000px;}
.y2f_c01462{bottom:610.560000px;}
.y31_c01462{bottom:612.720000px;}
.y30_c01462{bottom:613.440000px;}
.y2e_c01462{bottom:652.320000px;}
.y2b_c01462{bottom:653.760000px;}
.y2d_c01462{bottom:655.920000px;}
.y2c_c01462{bottom:656.640000px;}
.y29_c01462{bottom:695.520000px;}
.y28_c01462{bottom:696.240000px;}
.y2a_c01462{bottom:696.960000px;}
.y26_c01462{bottom:698.400000px;}
.y27_c01462{bottom:699.120000px;}
.y21_c01462{bottom:738.720000px;}
.y22_c01462{bottom:739.440000px;}
.y24_c01462{bottom:740.880000px;}
.y23_c01462{bottom:741.600000px;}
.y25_c01462{bottom:742.320000px;}
.y1c_c01462{bottom:781.200000px;}
.y20_c01462{bottom:781.920000px;}
.y1d_c01462{bottom:783.360000px;}
.y1e_c01462{bottom:784.080000px;}
.y1f_c01462{bottom:784.800000px;}
.y1b_c01462{bottom:824.400000px;}
.y19_c01462{bottom:826.560000px;}
.y1a_c01462{bottom:827.280000px;}
.y17_c01462{bottom:866.880000px;}
.y18_c01462{bottom:867.600000px;}
.y15_c01462{bottom:869.760000px;}
.y14_c01462{bottom:870.480000px;}
.y16_c01462{bottom:871.200000px;}
.yf_c01462{bottom:920.880000px;}
.y12_c01462{bottom:921.600000px;}
.y13_c01462{bottom:922.320000px;}
.ye_c01462{bottom:923.040000px;}
.y11_c01462{bottom:923.760000px;}
.y10_c01462{bottom:924.480000px;}
.y9_c01462{bottom:964.080000px;}
.yb_c01462{bottom:964.800000px;}
.yd_c01462{bottom:966.240000px;}
.ya_c01462{bottom:966.960000px;}
.yc_c01462{bottom:967.680000px;}
.y5_c01462{bottom:1006.560000px;}
.y6_c01462{bottom:1007.280000px;}
.y8_c01462{bottom:1008.000000px;}
.y2_c01462{bottom:1009.440000px;}
.y7_c01462{bottom:1010.160000px;}
.y3_c01462{bottom:1010.880000px;}
.y4_c01462{bottom:1011.600000px;}
.y1_c01462{bottom:1077.840000px;}
.h10_c01462{height:20.733750px;}
.h7_c01462{height:31.100625px;}
.h3_c01462{height:33.692344px;}
.hb_c01462{height:36.284062px;}
.hf_c01462{height:38.875781px;}
.h5_c01462{height:41.467500px;}
.h4_c01462{height:44.059219px;}
.h9_c01462{height:46.650937px;}
.he_c01462{height:49.242656px;}
.h8_c01462{height:51.834375px;}
.ha_c01462{height:54.426094px;}
.hc_c01462{height:57.017812px;}
.h6_c01462{height:59.609531px;}
.hd_c01462{height:62.201250px;}
.h11_c01462{height:64.792969px;}
.h2_c01462{height:67.384687px;}
.h1_c01462{height:1131.000000px;}
.h0_c01462{height:1131.120000px;}
.w0_c01462{width:758.160000px;}
.w1_c01462{width:758.250000px;}
.x0_c01462{left:0.000000px;}
.x2_c01462{left:38.880000px;}
.x42_c01462{left:41.040000px;}
.x48_c01462{left:42.480000px;}
.x56_c01462{left:43.920000px;}
.x37_c01462{left:60.480000px;}
.x17_c01462{left:71.280000px;}
.x4e_c01462{left:73.440000px;}
.x3_c01462{left:82.080000px;}
.x3e_c01462{left:92.880000px;}
.x2f_c01462{left:102.960000px;}
.x4_c01462{left:113.760000px;}
.x43_c01462{left:125.280000px;}
.x3a_c01462{left:135.360000px;}
.x10_c01462{left:146.160000px;}
.x51_c01462{left:147.600000px;}
.x44_c01462{left:157.680000px;}
.x4f_c01462{left:169.200000px;}
.x5_c01462{left:179.280000px;}
.x4b_c01462{left:180.720000px;}
.x11_c01462{left:190.080000px;}
.x47_c01462{left:202.320000px;}
.x6_c01462{left:211.680000px;}
.x2a_c01462{left:213.120000px;}
.x3b_c01462{left:222.480000px;}
.x38_c01462{left:234.000000px;}
.x7_c01462{left:244.080000px;}
.x1e_c01462{left:254.880000px;}
.x49_c01462{left:256.320000px;}
.x39_c01462{left:265.680000px;}
.x52_c01462{left:267.120000px;}
.x12_c01462{left:276.480000px;}
.x32_c01462{left:277.920000px;}
.x2b_c01462{left:287.280000px;}
.x50_c01462{left:289.440000px;}
.x18_c01462{left:298.080000px;}
.x30_c01462{left:300.240000px;}
.x3c_c01462{left:308.880000px;}
.x25_c01462{left:320.400000px;}
.x19_c01462{left:330.480000px;}
.x1f_c01462{left:332.640000px;}
.x8_c01462{left:341.280000px;}
.x57_c01462{left:342.720000px;}
.x20_c01462{left:352.080000px;}
.x9_c01462{left:363.600000px;}
.x53_c01462{left:365.040000px;}
.x4d_c01462{left:375.120000px;}
.x31_c01462{left:383.760000px;}
.x21_c01462{left:385.200000px;}
.xa_c01462{left:395.280000px;}
.x1a_c01462{left:396.720000px;}
.x26_c01462{left:406.080000px;}
.x22_c01462{left:416.880000px;}
.x3f_c01462{left:419.040000px;}
.x46_c01462{left:428.400000px;}
.x1b_c01462{left:429.840000px;}
.xb_c01462{left:439.200000px;}
.x27_c01462{left:450.720000px;}
.x13_c01462{left:460.800000px;}
.x33_c01462{left:471.600000px;}
.x4c_c01462{left:473.040000px;}
.x28_c01462{left:482.400000px;}
.x55_c01462{left:483.840000px;}
.x40_c01462{left:493.200000px;}
.x14_c01462{left:494.640000px;}
.x23_c01462{left:503.280000px;}
.x4a_c01462{left:504.720000px;}
.x45_c01462{left:506.160000px;}
.x1c_c01462{left:515.520000px;}
.x54_c01462{left:524.880000px;}
.x29_c01462{left:527.040000px;}
.x41_c01462{left:535.680000px;}
.x1d_c01462{left:537.840000px;}
.x34_c01462{left:540.000000px;}
.x24_c01462{left:547.920000px;}
.xc_c01462{left:559.440000px;}
.x2c_c01462{left:570.240000px;}
.x15_c01462{left:579.600000px;}
.xd_c01462{left:591.840000px;}
.x2d_c01462{left:601.920000px;}
.x35_c01462{left:612.720000px;}
.x16_c01462{left:624.240000px;}
.xe_c01462{left:635.040000px;}
.x2e_c01462{left:645.840000px;}
.x3d_c01462{left:655.200000px;}
.x36_c01462{left:656.640000px;}
.x1_c01462{left:668.880000px;}
.xf_c01462{left:678.960000px;}
@media print{
.v0_c01462{vertical-align:0.000000pt;}
.ls0_c01462{letter-spacing:0.000000pt;}
.ws0_c01462{word-spacing:0.000000pt;}
.fse_c01462{font-size:20.480000pt;}
.fs5_c01462{font-size:30.720000pt;}
.fs1_c01462{font-size:33.280000pt;}
.fs9_c01462{font-size:35.840000pt;}
.fsd_c01462{font-size:38.400000pt;}
.fs3_c01462{font-size:40.960000pt;}
.fs2_c01462{font-size:43.520000pt;}
.fs7_c01462{font-size:46.080000pt;}
.fsc_c01462{font-size:48.640000pt;}
.fs6_c01462{font-size:51.200000pt;}
.fs8_c01462{font-size:53.760000pt;}
.fsa_c01462{font-size:56.320000pt;}
.fs4_c01462{font-size:58.880000pt;}
.fsb_c01462{font-size:61.440000pt;}
.fsf_c01462{font-size:64.000000pt;}
.fs0_c01462{font-size:66.560000pt;}
.y0_c01462{bottom:0.000000pt;}
.y68_c01462{bottom:25.600000pt;}
.y69_c01462{bottom:26.240000pt;}
.y6b_c01462{bottom:28.160000pt;}
.y6a_c01462{bottom:28.800000pt;}
.y63_c01462{bottom:64.640000pt;}
.y67_c01462{bottom:65.280000pt;}
.y66_c01462{bottom:65.920000pt;}
.y64_c01462{bottom:66.560000pt;}
.y65_c01462{bottom:67.200000pt;}
.y61_c01462{bottom:102.400000pt;}
.y60_c01462{bottom:103.040000pt;}
.y62_c01462{bottom:103.680000pt;}
.y5f_c01462{bottom:104.960000pt;}
.y5e_c01462{bottom:105.600000pt;}
.y5d_c01462{bottom:141.440000pt;}
.y5b_c01462{bottom:143.360000pt;}
.y5c_c01462{bottom:144.000000pt;}
.y58_c01462{bottom:187.520000pt;}
.y57_c01462{bottom:188.160000pt;}
.y5a_c01462{bottom:188.800000pt;}
.y59_c01462{bottom:191.360000pt;}
.y56_c01462{bottom:192.640000pt;}
.y52_c01462{bottom:225.920000pt;}
.y51_c01462{bottom:226.560000pt;}
.y54_c01462{bottom:227.200000pt;}
.y53_c01462{bottom:229.120000pt;}
.y55_c01462{bottom:229.760000pt;}
.y50_c01462{bottom:230.400000pt;}
.y4e_c01462{bottom:264.960000pt;}
.y4d_c01462{bottom:266.880000pt;}
.y4c_c01462{bottom:267.520000pt;}
.y4f_c01462{bottom:268.160000pt;}
.y49_c01462{bottom:302.720000pt;}
.y47_c01462{bottom:303.360000pt;}
.y4a_c01462{bottom:304.000000pt;}
.y48_c01462{bottom:305.280000pt;}
.y4b_c01462{bottom:305.920000pt;}
.y44_c01462{bottom:341.760000pt;}
.y45_c01462{bottom:343.680000pt;}
.y46_c01462{bottom:344.320000pt;}
.y42_c01462{bottom:379.520000pt;}
.y41_c01462{bottom:380.160000pt;}
.y43_c01462{bottom:380.800000pt;}
.y40_c01462{bottom:382.080000pt;}
.y3f_c01462{bottom:382.720000pt;}
.y3e_c01462{bottom:418.560000pt;}
.y3d_c01462{bottom:419.200000pt;}
.y3b_c01462{bottom:420.480000pt;}
.y3c_c01462{bottom:421.120000pt;}
.y39_c01462{bottom:465.920000pt;}
.y3a_c01462{bottom:467.840000pt;}
.y38_c01462{bottom:468.480000pt;}
.y37_c01462{bottom:469.120000pt;}
.y32_c01462{bottom:504.320000pt;}
.y36_c01462{bottom:504.960000pt;}
.y35_c01462{bottom:505.600000pt;}
.y34_c01462{bottom:506.240000pt;}
.y33_c01462{bottom:506.880000pt;}
.y2f_c01462{bottom:542.720000pt;}
.y31_c01462{bottom:544.640000pt;}
.y30_c01462{bottom:545.280000pt;}
.y2e_c01462{bottom:579.840000pt;}
.y2b_c01462{bottom:581.120000pt;}
.y2d_c01462{bottom:583.040000pt;}
.y2c_c01462{bottom:583.680000pt;}
.y29_c01462{bottom:618.240000pt;}
.y28_c01462{bottom:618.880000pt;}
.y2a_c01462{bottom:619.520000pt;}
.y26_c01462{bottom:620.800000pt;}
.y27_c01462{bottom:621.440000pt;}
.y21_c01462{bottom:656.640000pt;}
.y22_c01462{bottom:657.280000pt;}
.y24_c01462{bottom:658.560000pt;}
.y23_c01462{bottom:659.200000pt;}
.y25_c01462{bottom:659.840000pt;}
.y1c_c01462{bottom:694.400000pt;}
.y20_c01462{bottom:695.040000pt;}
.y1d_c01462{bottom:696.320000pt;}
.y1e_c01462{bottom:696.960000pt;}
.y1f_c01462{bottom:697.600000pt;}
.y1b_c01462{bottom:732.800000pt;}
.y19_c01462{bottom:734.720000pt;}
.y1a_c01462{bottom:735.360000pt;}
.y17_c01462{bottom:770.560000pt;}
.y18_c01462{bottom:771.200000pt;}
.y15_c01462{bottom:773.120000pt;}
.y14_c01462{bottom:773.760000pt;}
.y16_c01462{bottom:774.400000pt;}
.yf_c01462{bottom:818.560000pt;}
.y12_c01462{bottom:819.200000pt;}
.y13_c01462{bottom:819.840000pt;}
.ye_c01462{bottom:820.480000pt;}
.y11_c01462{bottom:821.120000pt;}
.y10_c01462{bottom:821.760000pt;}
.y9_c01462{bottom:856.960000pt;}
.yb_c01462{bottom:857.600000pt;}
.yd_c01462{bottom:858.880000pt;}
.ya_c01462{bottom:859.520000pt;}
.yc_c01462{bottom:860.160000pt;}
.y5_c01462{bottom:894.720000pt;}
.y6_c01462{bottom:895.360000pt;}
.y8_c01462{bottom:896.000000pt;}
.y2_c01462{bottom:897.280000pt;}
.y7_c01462{bottom:897.920000pt;}
.y3_c01462{bottom:898.560000pt;}
.y4_c01462{bottom:899.200000pt;}
.y1_c01462{bottom:958.080000pt;}
.h10_c01462{height:18.430000pt;}
.h7_c01462{height:27.645000pt;}
.h3_c01462{height:29.948750pt;}
.hb_c01462{height:32.252500pt;}
.hf_c01462{height:34.556250pt;}
.h5_c01462{height:36.860000pt;}
.h4_c01462{height:39.163750pt;}
.h9_c01462{height:41.467500pt;}
.he_c01462{height:43.771250pt;}
.h8_c01462{height:46.075000pt;}
.ha_c01462{height:48.378750pt;}
.hc_c01462{height:50.682500pt;}
.h6_c01462{height:52.986250pt;}
.hd_c01462{height:55.290000pt;}
.h11_c01462{height:57.593750pt;}
.h2_c01462{height:59.897500pt;}
.h1_c01462{height:1005.333333pt;}
.h0_c01462{height:1005.440000pt;}
.w0_c01462{width:673.920000pt;}
.w1_c01462{width:674.000000pt;}
.x0_c01462{left:0.000000pt;}
.x2_c01462{left:34.560000pt;}
.x42_c01462{left:36.480000pt;}
.x48_c01462{left:37.760000pt;}
.x56_c01462{left:39.040000pt;}
.x37_c01462{left:53.760000pt;}
.x17_c01462{left:63.360000pt;}
.x4e_c01462{left:65.280000pt;}
.x3_c01462{left:72.960000pt;}
.x3e_c01462{left:82.560000pt;}
.x2f_c01462{left:91.520000pt;}
.x4_c01462{left:101.120000pt;}
.x43_c01462{left:111.360000pt;}
.x3a_c01462{left:120.320000pt;}
.x10_c01462{left:129.920000pt;}
.x51_c01462{left:131.200000pt;}
.x44_c01462{left:140.160000pt;}
.x4f_c01462{left:150.400000pt;}
.x5_c01462{left:159.360000pt;}
.x4b_c01462{left:160.640000pt;}
.x11_c01462{left:168.960000pt;}
.x47_c01462{left:179.840000pt;}
.x6_c01462{left:188.160000pt;}
.x2a_c01462{left:189.440000pt;}
.x3b_c01462{left:197.760000pt;}
.x38_c01462{left:208.000000pt;}
.x7_c01462{left:216.960000pt;}
.x1e_c01462{left:226.560000pt;}
.x49_c01462{left:227.840000pt;}
.x39_c01462{left:236.160000pt;}
.x52_c01462{left:237.440000pt;}
.x12_c01462{left:245.760000pt;}
.x32_c01462{left:247.040000pt;}
.x2b_c01462{left:255.360000pt;}
.x50_c01462{left:257.280000pt;}
.x18_c01462{left:264.960000pt;}
.x30_c01462{left:266.880000pt;}
.x3c_c01462{left:274.560000pt;}
.x25_c01462{left:284.800000pt;}
.x19_c01462{left:293.760000pt;}
.x1f_c01462{left:295.680000pt;}
.x8_c01462{left:303.360000pt;}
.x57_c01462{left:304.640000pt;}
.x20_c01462{left:312.960000pt;}
.x9_c01462{left:323.200000pt;}
.x53_c01462{left:324.480000pt;}
.x4d_c01462{left:333.440000pt;}
.x31_c01462{left:341.120000pt;}
.x21_c01462{left:342.400000pt;}
.xa_c01462{left:351.360000pt;}
.x1a_c01462{left:352.640000pt;}
.x26_c01462{left:360.960000pt;}
.x22_c01462{left:370.560000pt;}
.x3f_c01462{left:372.480000pt;}
.x46_c01462{left:380.800000pt;}
.x1b_c01462{left:382.080000pt;}
.xb_c01462{left:390.400000pt;}
.x27_c01462{left:400.640000pt;}
.x13_c01462{left:409.600000pt;}
.x33_c01462{left:419.200000pt;}
.x4c_c01462{left:420.480000pt;}
.x28_c01462{left:428.800000pt;}
.x55_c01462{left:430.080000pt;}
.x40_c01462{left:438.400000pt;}
.x14_c01462{left:439.680000pt;}
.x23_c01462{left:447.360000pt;}
.x4a_c01462{left:448.640000pt;}
.x45_c01462{left:449.920000pt;}
.x1c_c01462{left:458.240000pt;}
.x54_c01462{left:466.560000pt;}
.x29_c01462{left:468.480000pt;}
.x41_c01462{left:476.160000pt;}
.x1d_c01462{left:478.080000pt;}
.x34_c01462{left:480.000000pt;}
.x24_c01462{left:487.040000pt;}
.xc_c01462{left:497.280000pt;}
.x2c_c01462{left:506.880000pt;}
.x15_c01462{left:515.200000pt;}
.xd_c01462{left:526.080000pt;}
.x2d_c01462{left:535.040000pt;}
.x35_c01462{left:544.640000pt;}
.x16_c01462{left:554.880000pt;}
.xe_c01462{left:564.480000pt;}
.x2e_c01462{left:574.080000pt;}
.x3d_c01462{left:582.400000pt;}
.x36_c01462{left:583.680000pt;}
.x1_c01462{left:594.560000pt;}
.xf_c01462{left:603.520000pt;}
}





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

.ir_c01463:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01463{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01463;src:url('chunks/assets/font_f4f37065c735b2dc3698ca93.woff2')format("woff");}.ff1_c01463{font-family:ff1_c01463;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m8f_c01463{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01463{transform:matrix(0.020050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020050,0.000000,0.000000,0.250000,0,0);}
.m50_c01463{transform:matrix(0.046425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046425,0.000000,0.000000,0.250000,0,0);}
.m7b_c01463{transform:matrix(0.052075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.052075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.052075,0.000000,0.000000,0.250000,0,0);}
.m4b_c01463{transform:matrix(0.062250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062250,0.000000,0.000000,0.250000,0,0);}
.m51_c01463{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.mc3_c01463{transform:matrix(0.074275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.074275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.074275,0.000000,0.000000,0.250000,0,0);}
.m7c_c01463{transform:matrix(0.075600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075600,0.000000,0.000000,0.250000,0,0);}
.m9e_c01463{transform:matrix(0.078475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078475,0.000000,0.000000,0.250000,0,0);}
.m4d_c01463{transform:matrix(0.080325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080325,0.000000,0.000000,0.250000,0,0);}
.m5e_c01463{transform:matrix(0.080350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080350,0.000000,0.000000,0.250000,0,0);}
.m4c_c01463{transform:matrix(0.084375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084375,0.000000,0.000000,0.250000,0,0);}
.m7a_c01463{transform:matrix(0.086550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086550,0.000000,0.000000,0.250000,0,0);}
.m7e_c01463{transform:matrix(0.087025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087025,0.000000,0.000000,0.250000,0,0);}
.m30_c01463{transform:matrix(0.089925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089925,0.000000,0.000000,0.250000,0,0);}
.m1_c01463{transform:matrix(0.092575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092575,0.000000,0.000000,0.250000,0,0);}
.m4f_c01463{transform:matrix(0.098500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01463{transform:matrix(0.104125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104125,0.000000,0.000000,0.250000,0,0);}
.m53_c01463{transform:matrix(0.105775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105775,0.000000,0.000000,0.250000,0,0);}
.m98_c01463{transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);}
.m1d_c01463{transform:matrix(0.108075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108075,0.000000,0.000000,0.250000,0,0);}
.m7d_c01463{transform:matrix(0.108200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108200,0.000000,0.000000,0.250000,0,0);}
.m99_c01463{transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);}
.m36_c01463{transform:matrix(0.113625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113625,0.000000,0.000000,0.250000,0,0);}
.m10_c01463{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mb7_c01463{transform:matrix(0.136375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136375,0.000000,0.000000,0.250000,0,0);}
.ma3_c01463{transform:matrix(0.137650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137650,0.000000,0.000000,0.250000,0,0);}
.m5d_c01463{transform:matrix(0.145825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145825,0.000000,0.000000,0.250000,0,0);}
.m86_c01463{transform:matrix(0.147950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147950,0.000000,0.000000,0.250000,0,0);}
.m3c_c01463{transform:matrix(0.149875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149875,0.000000,0.000000,0.250000,0,0);}
.mb9_c01463{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);}
.m55_c01463{transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);}
.m0_c01463{transform:matrix(0.155675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155675,0.000000,0.000000,0.250000,0,0);}
.m3_c01463{transform:matrix(0.158700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158700,0.000000,0.000000,0.250000,0,0);}
.m83_c01463{transform:matrix(0.162375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162375,0.000000,0.000000,0.250000,0,0);}
.mbb_c01463{transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);}
.mb0_c01463{transform:matrix(0.169025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169025,0.000000,0.000000,0.250000,0,0);}
.m7_c01463{transform:matrix(0.172950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172950,0.000000,0.000000,0.250000,0,0);}
.mb8_c01463{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m81_c01463{transform:matrix(0.175950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175950,0.000000,0.000000,0.250000,0,0);}
.m80_c01463{transform:matrix(0.179150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179150,0.000000,0.000000,0.250000,0,0);}
.ma0_c01463{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m25_c01463{transform:matrix(0.183400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183400,0.000000,0.000000,0.250000,0,0);}
.m47_c01463{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);}
.ma1_c01463{transform:matrix(0.192700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192700,0.000000,0.000000,0.250000,0,0);}
.m95_c01463{transform:matrix(0.192900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192900,0.000000,0.000000,0.250000,0,0);}
.maf_c01463{transform:matrix(0.194900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194900,0.000000,0.000000,0.250000,0,0);}
.mba_c01463{transform:matrix(0.197300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197300,0.000000,0.000000,0.250000,0,0);}
.ma6_c01463{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.m6d_c01463{transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);}
.m52_c01463{transform:matrix(0.206300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206300,0.000000,0.000000,0.250000,0,0);}
.m61_c01463{transform:matrix(0.206775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206775,0.000000,0.000000,0.250000,0,0);}
.m46_c01463{transform:matrix(0.207375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207375,0.000000,0.000000,0.250000,0,0);}
.m60_c01463{transform:matrix(0.208025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208025,0.000000,0.000000,0.250000,0,0);}
.ma4_c01463{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mc6_c01463{transform:matrix(0.209525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209525,0.000000,0.000000,0.250000,0,0);}
.m24_c01463{transform:matrix(0.211400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211400,0.000000,0.000000,0.250000,0,0);}
.m8c_c01463{transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);}
.ma2_c01463{transform:matrix(0.214150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214150,0.000000,0.000000,0.250000,0,0);}
.m41_c01463{transform:matrix(0.214625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214625,0.000000,0.000000,0.250000,0,0);}
.mbd_c01463{transform:matrix(0.215975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215975,0.000000,0.000000,0.250000,0,0);}
.m48_c01463{transform:matrix(0.216100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216100,0.000000,0.000000,0.250000,0,0);}
.m64_c01463{transform:matrix(0.220100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220100,0.000000,0.000000,0.250000,0,0);}
.m97_c01463{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);}
.m9b_c01463{transform:matrix(0.224300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224300,0.000000,0.000000,0.250000,0,0);}
.m6f_c01463{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.mbf_c01463{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);}
.m6_c01463{transform:matrix(0.225625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225625,0.000000,0.000000,0.250000,0,0);}
.m93_c01463{transform:matrix(0.230450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230450,0.000000,0.000000,0.250000,0,0);}
.m7f_c01463{transform:matrix(0.235475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235475,0.000000,0.000000,0.250000,0,0);}
.m33_c01463{transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);}
.m29_c01463{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);}
.m3a_c01463{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m42_c01463{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01463{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);}
.mb4_c01463{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);}
.mbe_c01463{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m2_c01463{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_c01463{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);}
.m32_c01463{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);}
.m39_c01463{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);}
.m44_c01463{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);}
.m54_c01463{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m31_c01463{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m13_c01463{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);}
.mb6_c01463{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m15_c01463{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m16_c01463{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01463{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01463{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mae_c01463{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m49_c01463{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m94_c01463{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01463{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01463{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m43_c01463{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01463{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m9_c01463{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m12_c01463{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m40_c01463{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m20_c01463{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mb_c01463{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.ma_c01463{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);}
.m91_c01463{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);}
.m85_c01463{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m11_c01463{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);}
.m82_c01463{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m92_c01463{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);}
.m23_c01463{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01463{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);}
.m5_c01463{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);}
.m45_c01463{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);}
.maa_c01463{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m5f_c01463{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01463{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);}
.m35_c01463{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);}
.m5b_c01463{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);}
.ma7_c01463{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);}
.mac_c01463{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m38_c01463{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.mb3_c01463{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m9c_c01463{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);}
.m19_c01463{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);}
.m22_c01463{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);}
.mc5_c01463{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m9d_c01463{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m8a_c01463{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);}
.m8_c01463{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.mbc_c01463{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01463{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01463{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m5a_c01463{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.mc_c01463{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m58_c01463{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.mb5_c01463{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m18_c01463{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01463{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);}
.m2b_c01463{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);}
.m1c_c01463{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);}
.m4_c01463{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.mc4_c01463{transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);}
.me_c01463{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.mb2_c01463{transform:matrix(0.792500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.792500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.792500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01463{transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);}
.m9a_c01463{transform:matrix(0.877500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.877500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.877500,0.000000,0.000000,0.250000,0,0);}
.m62_c01463{transform:matrix(0.900000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.900000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.900000,0.000000,0.000000,0.250000,0,0);}
.m6c_c01463{transform:matrix(0.960000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.960000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.960000,0.000000,0.000000,0.250000,0,0);}
.mf_c01463{transform:matrix(1.012500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.012500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.012500,0.000000,0.000000,0.250000,0,0);}
.m6b_c01463{transform:matrix(1.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.080000,0.000000,0.000000,0.250000,0,0);}
.m72_c01463{transform:matrix(1.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.200000,0.000000,0.000000,0.250000,0,0);}
.ma8_c01463{transform:matrix(1.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.320000,0.000000,0.000000,0.250000,0,0);}
.ma9_c01463{transform:matrix(1.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.392500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01463{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.mad_c01463{transform:matrix(1.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.492500,0.000000,0.000000,0.250000,0,0);}
.md_c01463{transform:matrix(1.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.630000,0.000000,0.000000,0.250000,0,0);}
.m79_c01463{transform:matrix(1.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.632500,0.000000,0.000000,0.250000,0,0);}
.mc1_c01463{transform:matrix(1.642500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.642500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.642500,0.000000,0.000000,0.250000,0,0);}
.m28_c01463{transform:matrix(1.672500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.672500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.672500,0.000000,0.000000,0.250000,0,0);}
.m5c_c01463{transform:matrix(1.675000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.675000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.675000,0.000000,0.000000,0.250000,0,0);}
.mc0_c01463{transform:matrix(1.692500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.692500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.692500,0.000000,0.000000,0.250000,0,0);}
.mb1_c01463{transform:matrix(1.707500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.707500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.707500,0.000000,0.000000,0.250000,0,0);}
.m74_c01463{transform:matrix(1.755000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.755000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.755000,0.000000,0.000000,0.250000,0,0);}
.m77_c01463{transform:matrix(1.792500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.792500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.792500,0.000000,0.000000,0.250000,0,0);}
.m67_c01463{transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);}
.m87_c01463{transform:matrix(1.805000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.805000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.805000,0.000000,0.000000,0.250000,0,0);}
.m90_c01463{transform:matrix(1.872500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.872500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.872500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01463{transform:matrix(1.920000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.920000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.920000,0.000000,0.000000,0.250000,0,0);}
.m84_c01463{transform:matrix(1.957500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.957500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.957500,0.000000,0.000000,0.250000,0,0);}
.m78_c01463{transform:matrix(2.002500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.002500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.002500,0.000000,0.000000,0.250000,0,0);}
.m63_c01463{transform:matrix(2.022500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.022500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.022500,0.000000,0.000000,0.250000,0,0);}
.m8e_c01463{transform:matrix(2.030000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.030000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.030000,0.000000,0.000000,0.250000,0,0);}
.m70_c01463{transform:matrix(2.057500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.057500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.057500,0.000000,0.000000,0.250000,0,0);}
.mab_c01463{transform:matrix(2.062500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.062500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.062500,0.000000,0.000000,0.250000,0,0);}
.m76_c01463{transform:matrix(2.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.160000,0.000000,0.000000,0.250000,0,0);}
.mc2_c01463{transform:matrix(2.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.252500,0.000000,0.000000,0.250000,0,0);}
.m34_c01463{transform:matrix(2.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.280000,0.000000,0.000000,0.250000,0,0);}
.m68_c01463{transform:matrix(2.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.302500,0.000000,0.000000,0.250000,0,0);}
.m56_c01463{transform:matrix(2.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.400000,0.000000,0.000000,0.250000,0,0);}
.m57_c01463{transform:matrix(2.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.427500,0.000000,0.000000,0.250000,0,0);}
.m69_c01463{transform:matrix(2.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.495000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01463{transform:matrix(2.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.520000,0.000000,0.000000,0.250000,0,0);}
.m6e_c01463{transform:matrix(2.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.630000,0.000000,0.000000,0.250000,0,0);}
.m65_c01463{transform:matrix(2.660000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.660000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.660000,0.000000,0.000000,0.250000,0,0);}
.m6a_c01463{transform:matrix(2.695000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.695000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.695000,0.000000,0.000000,0.250000,0,0);}
.m8d_c01463{transform:matrix(2.760000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.760000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.760000,0.000000,0.000000,0.250000,0,0);}
.m66_c01463{transform:matrix(2.867500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.867500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.867500,0.000000,0.000000,0.250000,0,0);}
.m9f_c01463{transform:matrix(2.932500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.932500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.932500,0.000000,0.000000,0.250000,0,0);}
.m88_c01463{transform:matrix(2.942500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.942500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.942500,0.000000,0.000000,0.250000,0,0);}
.m73_c01463{transform:matrix(3.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.007500,0.000000,0.000000,0.250000,0,0);}
.m96_c01463{transform:matrix(3.045000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.045000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.045000,0.000000,0.000000,0.250000,0,0);}
.m75_c01463{transform:matrix(3.122500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.122500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.122500,0.000000,0.000000,0.250000,0,0);}
.m27_c01463{transform:matrix(3.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.240000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01463{transform:matrix(3.695000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.695000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.695000,0.000000,0.000000,0.250000,0,0);}
.m37_c01463{transform:matrix(3.722500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.722500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.722500,0.000000,0.000000,0.250000,0,0);}
.m71_c01463{transform:matrix(3.840000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.840000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.840000,0.000000,0.000000,0.250000,0,0);}
.m59_c01463{transform:matrix(3.927500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.927500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.927500,0.000000,0.000000,0.250000,0,0);}
.m89_c01463{transform:matrix(3.960000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.960000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.960000,0.000000,0.000000,0.250000,0,0);}
.ma5_c01463{transform:matrix(4.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.312500,0.000000,0.000000,0.250000,0,0);}
.m8b_c01463{transform:matrix(4.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.320000,0.000000,0.000000,0.250000,0,0);}
.v1_c01463{vertical-align:-8.640000px;}
.v4_c01463{vertical-align:-5.760000px;}
.v3_c01463{vertical-align:-2.880000px;}
.v0_c01463{vertical-align:0.000000px;}
.v5_c01463{vertical-align:2.880000px;}
.v2_c01463{vertical-align:5.760000px;}
.ls6_c01463{letter-spacing:0.000000px;}
.ls3_c01463{letter-spacing:9.211440px;}
.ls1_c01463{letter-spacing:255.982800px;}
.ls0_c01463{letter-spacing:285.360960px;}
.ls4_c01463{letter-spacing:317.052960px;}
.ls2_c01463{letter-spacing:1223.980800px;}
.ls5_c01463{letter-spacing:2680.116000px;}
.sc__c01463{text-shadow:none;}
.sc0_c01463{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01463{-webkit-text-stroke:0px transparent;}
.sc0_c01463{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsf_c01463{word-spacing:0.000000px;}
.ws7_c01463{word-spacing:1.976676px;}
.ws2_c01463{word-spacing:3.725035px;}
.wsd_c01463{word-spacing:62.665440px;}
.ws8_c01463{word-spacing:64.561920px;}
.ws9_c01463{word-spacing:102.504000px;}
.ws6_c01463{word-spacing:126.504000px;}
.wse_c01463{word-spacing:149.502000px;}
.wsb_c01463{word-spacing:180.504000px;}
.ws5_c01463{word-spacing:200.131200px;}
.ws0_c01463{word-spacing:201.393360px;}
.ws1_c01463{word-spacing:202.531200px;}
.wsa_c01463{word-spacing:204.931089px;}
.ws4_c01463{word-spacing:204.931200px;}
.wsc_c01463{word-spacing:210.390000px;}
.ws3_c01463{word-spacing:223.166400px;}
._0_c01463{width:166.002000px;}
.fc0_c01463{color:transparent;}
.fsc_c01463{font-size:2.880000px;}
.fsb_c01463{font-size:5.760000px;}
.fs14_c01463{font-size:6.000000px;}
.fs5_c01463{font-size:8.640000px;}
.fs16_c01463{font-size:11.520000px;}
.fs20_c01463{font-size:14.400000px;}
.fs6_c01463{font-size:17.280000px;}
.fs2a_c01463{font-size:20.160000px;}
.fs2d_c01463{font-size:23.040000px;}
.fs4_c01463{font-size:25.920000px;}
.fs2f_c01463{font-size:28.800000px;}
.fs2e_c01463{font-size:31.680000px;}
.fsa_c01463{font-size:34.560000px;}
.fs7_c01463{font-size:37.440000px;}
.fs28_c01463{font-size:40.320000px;}
.fsd_c01463{font-size:43.200000px;}
.fs8_c01463{font-size:46.080000px;}
.fs3_c01463{font-size:48.960000px;}
.fse_c01463{font-size:51.840000px;}
.fs12_c01463{font-size:54.720000px;}
.fs26_c01463{font-size:57.600000px;}
.fs13_c01463{font-size:60.480000px;}
.fs9_c01463{font-size:63.360000px;}
.fs15_c01463{font-size:66.240000px;}
.fs21_c01463{font-size:69.120000px;}
.fs23_c01463{font-size:72.000000px;}
.fs1f_c01463{font-size:74.880000px;}
.fs11_c01463{font-size:77.760000px;}
.fs22_c01463{font-size:80.640000px;}
.fs2b_c01463{font-size:86.400000px;}
.fs0_c01463{font-size:89.280000px;}
.fs2c_c01463{font-size:92.160000px;}
.fs17_c01463{font-size:95.040000px;}
.fs27_c01463{font-size:100.800000px;}
.fs19_c01463{font-size:106.560000px;}
.fs30_c01463{font-size:109.440000px;}
.fs1_c01463{font-size:112.320000px;}
.fs10_c01463{font-size:129.600000px;}
.fsf_c01463{font-size:138.240000px;}
.fs25_c01463{font-size:146.880000px;}
.fs24_c01463{font-size:149.760000px;}
.fs1c_c01463{font-size:155.520000px;}
.fs1a_c01463{font-size:172.800000px;}
.fs1e_c01463{font-size:175.680000px;}
.fs1b_c01463{font-size:178.560000px;}
.fs1d_c01463{font-size:181.440000px;}
.fs29_c01463{font-size:198.720000px;}
.fs18_c01463{font-size:239.040000px;}
.fs2_c01463{font-size:296.640000px;}
.y0_c01463{bottom:0.000000px;}
.yeb_c01463{bottom:0.720000px;}
.yef_c01463{bottom:2.880000px;}
.yec_c01463{bottom:3.600000px;}
.yed_c01463{bottom:4.320000px;}
.ye1_c01463{bottom:5.040000px;}
.ye0_c01463{bottom:6.480000px;}
.yf8_c01463{bottom:7.200000px;}
.yf0_c01463{bottom:7.920000px;}
.yee_c01463{bottom:8.640000px;}
.ye4_c01463{bottom:9.360000px;}
.yf6_c01463{bottom:33.120000px;}
.yf7_c01463{bottom:33.840000px;}
.yea_c01463{bottom:36.720000px;}
.ye9_c01463{bottom:54.720000px;}
.yf9_c01463{bottom:73.440000px;}
.yf3_c01463{bottom:84.960000px;}
.yf2_c01463{bottom:85.680000px;}
.ye8_c01463{bottom:86.400000px;}
.yf4_c01463{bottom:87.840000px;}
.yf5_c01463{bottom:88.560000px;}
.ye5_c01463{bottom:91.440000px;}
.ye2_c01463{bottom:92.160000px;}
.ye3_c01463{bottom:92.880000px;}
.ydf_c01463{bottom:105.840000px;}
.yde_c01463{bottom:113.040000px;}
.ye7_c01463{bottom:113.760000px;}
.y46_c01463{bottom:114.480000px;}
.yf1_c01463{bottom:116.640000px;}
.yd4_c01463{bottom:117.360000px;}
.ye6_c01463{bottom:118.080000px;}
.yd7_c01463{bottom:141.840000px;}
.ya5_c01463{bottom:142.560000px;}
.y9d_c01463{bottom:143.280000px;}
.y9c_c01463{bottom:144.000000px;}
.ya6_c01463{bottom:144.720000px;}
.ya0_c01463{bottom:145.440000px;}
.yd3_c01463{bottom:146.160000px;}
.ya3_c01463{bottom:162.720000px;}
.ya4_c01463{bottom:163.440000px;}
.ya2_c01463{bottom:164.160000px;}
.yce_c01463{bottom:165.600000px;}
.ycd_c01463{bottom:166.320000px;}
.ya1_c01463{bottom:170.640000px;}
.yd2_c01463{bottom:174.960000px;}
.yd5_c01463{bottom:177.120000px;}
.ycc_c01463{bottom:192.240000px;}
.yd6_c01463{bottom:196.560000px;}
.y97_c01463{bottom:198.000000px;}
.y98_c01463{bottom:200.880000px;}
.yc6_c01463{bottom:213.840000px;}
.yca_c01463{bottom:217.440000px;}
.ycb_c01463{bottom:218.160000px;}
.y9b_c01463{bottom:221.760000px;}
.y96_c01463{bottom:223.920000px;}
.yb5_c01463{bottom:224.640000px;}
.yb6_c01463{bottom:228.960000px;}
.y95_c01463{bottom:241.920000px;}
.yb7_c01463{bottom:242.640000px;}
.y94_c01463{bottom:244.080000px;}
.yc7_c01463{bottom:244.800000px;}
.yc8_c01463{bottom:245.520000px;}
.yc9_c01463{bottom:246.240000px;}
.y9a_c01463{bottom:246.960000px;}
.yae_c01463{bottom:248.400000px;}
.yb2_c01463{bottom:249.120000px;}
.yc4_c01463{bottom:264.960000px;}
.yc5_c01463{bottom:266.400000px;}
.yb3_c01463{bottom:268.560000px;}
.y93_c01463{bottom:269.280000px;}
.yb4_c01463{bottom:270.000000px;}
.y99_c01463{bottom:274.320000px;}
.y9f_c01463{bottom:275.040000px;}
.yaa_c01463{bottom:275.760000px;}
.y91_c01463{bottom:276.480000px;}
.y92_c01463{bottom:279.360000px;}
.yc3_c01463{bottom:288.000000px;}
.yc2_c01463{bottom:295.920000px;}
.y8a_c01463{bottom:299.520000px;}
.y88_c01463{bottom:300.240000px;}
.y89_c01463{bottom:301.680000px;}
.y8b_c01463{bottom:302.400000px;}
.yb1_c01463{bottom:308.880000px;}
.yc1_c01463{bottom:319.680000px;}
.y8c_c01463{bottom:320.400000px;}
.yac_c01463{bottom:321.120000px;}
.yc0_c01463{bottom:321.840000px;}
.yd9_c01463{bottom:324.000000px;}
.ya8_c01463{bottom:324.720000px;}
.y86_c01463{bottom:346.320000px;}
.yb0_c01463{bottom:347.040000px;}
.y87_c01463{bottom:347.760000px;}
.ybf_c01463{bottom:348.480000px;}
.yab_c01463{bottom:349.920000px;}
.y90_c01463{bottom:350.640000px;}
.y84_c01463{bottom:352.080000px;}
.y85_c01463{bottom:352.800000px;}
.y8f_c01463{bottom:354.240000px;}
.y83_c01463{bottom:371.520000px;}
.y82_c01463{bottom:372.240000px;}
.yaf_c01463{bottom:372.960000px;}
.ybe_c01463{bottom:376.560000px;}
.y80_c01463{bottom:377.280000px;}
.y81_c01463{bottom:378.000000px;}
.y8e_c01463{bottom:380.160000px;}
.y7f_c01463{bottom:397.440000px;}
.y7d_c01463{bottom:398.160000px;}
.y7e_c01463{bottom:398.880000px;}
.yad_c01463{bottom:399.600000px;}
.ya7_c01463{bottom:400.320000px;}
.y9e_c01463{bottom:401.040000px;}
.y7c_c01463{bottom:401.760000px;}
.ya9_c01463{bottom:403.200000px;}
.y7b_c01463{bottom:403.920000px;}
.y8d_c01463{bottom:404.640000px;}
.y79_c01463{bottom:424.080000px;}
.y78_c01463{bottom:424.800000px;}
.ybd_c01463{bottom:426.240000px;}
.y77_c01463{bottom:428.400000px;}
.y7a_c01463{bottom:429.840000px;}
.y76_c01463{bottom:430.560000px;}
.y72_c01463{bottom:447.840000px;}
.y71_c01463{bottom:449.280000px;}
.y6f_c01463{bottom:450.000000px;}
.y70_c01463{bottom:450.720000px;}
.ybc_c01463{bottom:452.160000px;}
.y6e_c01463{bottom:453.600000px;}
.y75_c01463{bottom:457.200000px;}
.y73_c01463{bottom:457.920000px;}
.y74_c01463{bottom:460.080000px;}
.y6d_c01463{bottom:473.760000px;}
.y6c_c01463{bottom:474.480000px;}
.y6b_c01463{bottom:475.200000px;}
.y6a_c01463{bottom:475.920000px;}
.y69_c01463{bottom:476.640000px;}
.y68_c01463{bottom:477.360000px;}
.ybb_c01463{bottom:478.080000px;}
.yd8_c01463{bottom:479.520000px;}
.y64_c01463{bottom:501.120000px;}
.y65_c01463{bottom:501.840000px;}
.y66_c01463{bottom:502.560000px;}
.y67_c01463{bottom:503.280000px;}
.yba_c01463{bottom:504.000000px;}
.y63_c01463{bottom:508.320000px;}
.yb9_c01463{bottom:527.040000px;}
.y25_c01463{bottom:527.760000px;}
.y5b_c01463{bottom:528.480000px;}
.y5a_c01463{bottom:529.200000px;}
.yb8_c01463{bottom:529.920000px;}
.y5e_c01463{bottom:530.640000px;}
.y5c_c01463{bottom:531.360000px;}
.y34_c01463{bottom:532.080000px;}
.y5d_c01463{bottom:533.520000px;}
.y59_c01463{bottom:534.240000px;}
.y57_c01463{bottom:535.680000px;}
.y58_c01463{bottom:536.400000px;}
.y26_c01463{bottom:539.280000px;}
.y53_c01463{bottom:553.680000px;}
.y52_c01463{bottom:554.400000px;}
.y55_c01463{bottom:556.560000px;}
.y56_c01463{bottom:557.280000px;}
.y54_c01463{bottom:558.720000px;}
.y33_c01463{bottom:559.440000px;}
.y51_c01463{bottom:561.600000px;}
.y50_c01463{bottom:570.960000px;}
.y30_c01463{bottom:578.880000px;}
.y2f_c01463{bottom:580.320000px;}
.y31_c01463{bottom:581.040000px;}
.y44_c01463{bottom:581.760000px;}
.y45_c01463{bottom:582.480000px;}
.y43_c01463{bottom:583.200000px;}
.y2e_c01463{bottom:583.920000px;}
.y42_c01463{bottom:585.360000px;}
.y32_c01463{bottom:586.080000px;}
.y3d_c01463{bottom:604.800000px;}
.y41_c01463{bottom:605.520000px;}
.y3e_c01463{bottom:606.240000px;}
.y40_c01463{bottom:607.680000px;}
.y2d_c01463{bottom:609.120000px;}
.y3f_c01463{bottom:611.280000px;}
.y4f_c01463{bottom:612.720000px;}
.y3c_c01463{bottom:631.440000px;}
.y2b_c01463{bottom:632.160000px;}
.y2c_c01463{bottom:632.880000px;}
.y3a_c01463{bottom:633.600000px;}
.y3b_c01463{bottom:634.320000px;}
.y4e_c01463{bottom:635.040000px;}
.y4c_c01463{bottom:636.480000px;}
.y39_c01463{bottom:637.200000px;}
.y4d_c01463{bottom:638.640000px;}
.y2a_c01463{bottom:658.080000px;}
.y29_c01463{bottom:658.800000px;}
.y36_c01463{bottom:660.240000px;}
.y38_c01463{bottom:660.960000px;}
.y37_c01463{bottom:662.400000px;}
.y35_c01463{bottom:663.120000px;}
.y4b_c01463{bottom:664.560000px;}
.y27_c01463{bottom:684.000000px;}
.y60_c01463{bottom:684.720000px;}
.y5f_c01463{bottom:685.440000px;}
.ydd_c01463{bottom:686.880000px;}
.y4a_c01463{bottom:688.320000px;}
.y47_c01463{bottom:689.040000px;}
.y28_c01463{bottom:689.760000px;}
.y49_c01463{bottom:691.200000px;}
.y48_c01463{bottom:691.920000px;}
.y62_c01463{bottom:709.920000px;}
.ydc_c01463{bottom:711.360000px;}
.ydb_c01463{bottom:712.800000px;}
.y61_c01463{bottom:714.960000px;}
.y23_c01463{bottom:715.680000px;}
.y21_c01463{bottom:717.120000px;}
.y22_c01463{bottom:717.840000px;}
.y20_c01463{bottom:718.560000px;}
.y24_c01463{bottom:728.640000px;}
.y1f_c01463{bottom:736.560000px;}
.y1e_c01463{bottom:737.280000px;}
.y1d_c01463{bottom:738.000000px;}
.yda_c01463{bottom:738.720000px;}
.y1c_c01463{bottom:740.160000px;}
.y1b_c01463{bottom:740.880000px;}
.y19_c01463{bottom:742.320000px;}
.y1a_c01463{bottom:743.040000px;}
.y17_c01463{bottom:743.760000px;}
.y18_c01463{bottom:744.480000px;}
.y16_c01463{bottom:762.480000px;}
.y15_c01463{bottom:774.000000px;}
.y14_c01463{bottom:774.720000px;}
.y11_c01463{bottom:775.440000px;}
.y10_c01463{bottom:776.160000px;}
.y13_c01463{bottom:776.880000px;}
.y12_c01463{bottom:777.600000px;}
.yf_c01463{bottom:779.760000px;}
.yc_c01463{bottom:812.880000px;}
.yd_c01463{bottom:819.360000px;}
.ye_c01463{bottom:820.080000px;}
.y3_c01463{bottom:822.240000px;}
.yb_c01463{bottom:822.960000px;}
.ya_c01463{bottom:825.840000px;}
.y8_c01463{bottom:827.280000px;}
.y9_c01463{bottom:830.880000px;}
.y7_c01463{bottom:840.960000px;}
.y2_c01463{bottom:848.880000px;}
.y5_c01463{bottom:851.040000px;}
.y6_c01463{bottom:856.800000px;}
.y4_c01463{bottom:860.400000px;}
.y1_c01463{bottom:873.360000px;}
.ycf_c01463{bottom:884.880000px;}
.yd1_c01463{bottom:886.320000px;}
.yd0_c01463{bottom:888.480000px;}
.he_c01463{height:2.591719px;}
.hd_c01463{height:5.183438px;}
.h17_c01463{height:5.399414px;}
.h7_c01463{height:7.775156px;}
.h2a_c01463{height:8.279414px;}
.h19_c01463{height:10.366875px;}
.h23_c01463{height:12.958594px;}
.h8_c01463{height:15.550313px;}
.h2f_c01463{height:18.142031px;}
.h32_c01463{height:20.733750px;}
.h6_c01463{height:23.325469px;}
.h34_c01463{height:25.917187px;}
.h33_c01463{height:28.508906px;}
.hc_c01463{height:31.100625px;}
.h9_c01463{height:33.692344px;}
.h2d_c01463{height:36.284062px;}
.hf_c01463{height:38.875781px;}
.ha_c01463{height:41.467500px;}
.h5_c01463{height:44.059219px;}
.h10_c01463{height:46.650937px;}
.h15_c01463{height:49.242656px;}
.h29_c01463{height:51.834375px;}
.h14_c01463{height:52.410938px;}
.h2b_c01463{height:53.849531px;}
.h16_c01463{height:54.426094px;}
.hb_c01463{height:57.017812px;}
.h18_c01463{height:59.609531px;}
.h24_c01463{height:62.201250px;}
.h26_c01463{height:64.792969px;}
.h22_c01463{height:67.384687px;}
.h13_c01463{height:69.976406px;}
.h25_c01463{height:72.568125px;}
.h30_c01463{height:77.751563px;}
.h2_c01463{height:80.343281px;}
.h31_c01463{height:82.935000px;}
.h1a_c01463{height:85.526719px;}
.h2c_c01463{height:90.710156px;}
.h1c_c01463{height:95.893594px;}
.h35_c01463{height:98.485312px;}
.h3_c01463{height:101.077031px;}
.h12_c01463{height:116.627344px;}
.h11_c01463{height:124.402500px;}
.h28_c01463{height:132.177656px;}
.h27_c01463{height:134.769375px;}
.h1f_c01463{height:139.952812px;}
.h1d_c01463{height:155.503125px;}
.h21_c01463{height:158.094844px;}
.h1e_c01463{height:160.686563px;}
.h20_c01463{height:163.278281px;}
.h2e_c01463{height:178.828594px;}
.h1b_c01463{height:215.112656px;}
.h4_c01463{height:266.947031px;}
.h1_c01463{height:896.250000px;}
.h0_c01463{height:896.400000px;}
.w1_c01463{width:1380.000000px;}
.w0_c01463{width:1380.240000px;}
.x0_c01463{left:0.000000px;}
.x1_c01463{left:2.160000px;}
.x2_c01463{left:4.320000px;}
.x3_c01463{left:12.960000px;}
.x8_c01463{left:28.080000px;}
.xec_c01463{left:30.240000px;}
.x6e_c01463{left:32.400000px;}
.x1c_c01463{left:33.840000px;}
.x4_c01463{left:36.720000px;}
.xab_c01463{left:41.760000px;}
.x63_c01463{left:43.200000px;}
.x5d_c01463{left:47.520000px;}
.x1d_c01463{left:54.000000px;}
.x1e_c01463{left:56.160000px;}
.x77_c01463{left:64.800000px;}
.x2a_c01463{left:66.240000px;}
.x26_c01463{left:74.880000px;}
.x9_c01463{left:78.480000px;}
.x58_c01463{left:86.400000px;}
.x2b_c01463{left:88.560000px;}
.x1f_c01463{left:90.000000px;}
.x78_c01463{left:92.880000px;}
.x90_c01463{left:95.040000px;}
.x8f_c01463{left:97.200000px;}
.x54_c01463{left:99.360000px;}
.x94_c01463{left:102.960000px;}
.xae_c01463{left:114.480000px;}
.xf0_c01463{left:116.640000px;}
.x91_c01463{left:118.800000px;}
.x5a_c01463{left:127.440000px;}
.xa8_c01463{left:131.760000px;}
.x95_c01463{left:133.920000px;}
.x72_c01463{left:137.520000px;}
.xaf_c01463{left:140.400000px;}
.x73_c01463{left:142.560000px;}
.x96_c01463{left:144.000000px;}
.xa3_c01463{left:146.880000px;}
.x97_c01463{left:151.200000px;}
.xd_c01463{left:154.080000px;}
.xed_c01463{left:157.680000px;}
.xa1_c01463{left:162.000000px;}
.x5e_c01463{left:163.440000px;}
.x20_c01463{left:165.600000px;}
.xa9_c01463{left:167.760000px;}
.xb2_c01463{left:172.800000px;}
.x64_c01463{left:174.960000px;}
.xb0_c01463{left:183.600000px;}
.x92_c01463{left:186.480000px;}
.xb1_c01463{left:198.720000px;}
.x65_c01463{left:200.880000px;}
.x93_c01463{left:205.200000px;}
.x79_c01463{left:208.080000px;}
.x5_c01463{left:220.320000px;}
.xa_c01463{left:222.480000px;}
.x66_c01463{left:231.120000px;}
.x9b_c01463{left:232.560000px;}
.x74_c01463{left:236.880000px;}
.xb3_c01463{left:239.040000px;}
.xe_c01463{left:241.920000px;}
.xa4_c01463{left:244.080000px;}
.xac_c01463{left:246.240000px;}
.xb4_c01463{left:249.120000px;}
.x5b_c01463{left:251.280000px;}
.x55_c01463{left:252.720000px;}
.x99_c01463{left:254.160000px;}
.x7a_c01463{left:259.200000px;}
.xc6_c01463{left:260.640000px;}
.x98_c01463{left:262.080000px;}
.x27_c01463{left:267.840000px;}
.x75_c01463{left:272.880000px;}
.x9c_c01463{left:275.760000px;}
.xee_c01463{left:277.920000px;}
.x5c_c01463{left:288.000000px;}
.xc7_c01463{left:290.880000px;}
.x5f_c01463{left:304.560000px;}
.x6_c01463{left:306.720000px;}
.x9a_c01463{left:308.160000px;}
.xf1_c01463{left:312.480000px;}
.xc1_c01463{left:320.400000px;}
.x9d_c01463{left:321.840000px;}
.x76_c01463{left:323.280000px;}
.xf2_c01463{left:325.440000px;}
.xf_c01463{left:328.320000px;}
.x9e_c01463{left:337.680000px;}
.x21_c01463{left:339.840000px;}
.x7b_c01463{left:343.440000px;}
.x60_c01463{left:348.480000px;}
.x56_c01463{left:349.920000px;}
.xa5_c01463{left:360.720000px;}
.x61_c01463{left:362.880000px;}
.x9f_c01463{left:365.040000px;}
.x67_c01463{left:367.200000px;}
.x68_c01463{left:372.240000px;}
.xc2_c01463{left:373.680000px;}
.xa0_c01463{left:378.000000px;}
.xf3_c01463{left:380.880000px;}
.x7_c01463{left:385.200000px;}
.xb_c01463{left:386.640000px;}
.xb5_c01463{left:390.240000px;}
.x82_c01463{left:401.760000px;}
.xf4_c01463{left:403.200000px;}
.x10_c01463{left:404.640000px;}
.x28_c01463{left:410.400000px;}
.xad_c01463{left:413.280000px;}
.x2c_c01463{left:414.720000px;}
.x22_c01463{left:416.160000px;}
.xa2_c01463{left:423.360000px;}
.x57_c01463{left:425.520000px;}
.xaa_c01463{left:427.680000px;}
.xb6_c01463{left:442.800000px;}
.xa6_c01463{left:452.880000px;}
.xf5_c01463{left:461.520000px;}
.x29_c01463{left:474.480000px;}
.xef_c01463{left:478.800000px;}
.xf6_c01463{left:490.320000px;}
.x11_c01463{left:491.760000px;}
.xc0_c01463{left:499.680000px;}
.x2d_c01463{left:501.840000px;}
.x23_c01463{left:503.280000px;}
.x7c_c01463{left:506.160000px;}
.xb9_c01463{left:509.760000px;}
.x62_c01463{left:511.200000px;}
.x59_c01463{left:512.640000px;}
.xb7_c01463{left:529.920000px;}
.xc_c01463{left:551.520000px;}
.xb8_c01463{left:555.120000px;}
.x35_c01463{left:563.760000px;}
.xfb_c01463{left:576.000000px;}
.x83_c01463{left:577.440000px;}
.x32_c01463{left:578.880000px;}
.x84_c01463{left:580.320000px;}
.x85_c01463{left:585.360000px;}
.x36_c01463{left:591.840000px;}
.xa7_c01463{left:594.000000px;}
.x2e_c01463{left:600.480000px;}
.x33_c01463{left:606.960000px;}
.x2f_c01463{left:609.120000px;}
.x24_c01463{left:610.560000px;}
.x114_c01463{left:619.920000px;}
.x39_c01463{left:623.520000px;}
.xc3_c01463{left:627.840000px;}
.x3a_c01463{left:632.880000px;}
.xc8_c01463{left:635.040000px;}
.x3b_c01463{left:636.480000px;}
.x115_c01463{left:640.800000px;}
.x86_c01463{left:643.680000px;}
.x10d_c01463{left:648.720000px;}
.x87_c01463{left:658.800000px;}
.xfc_c01463{left:662.400000px;}
.x88_c01463{left:663.840000px;}
.x12_c01463{left:665.280000px;}
.xfd_c01463{left:668.160000px;}
.x37_c01463{left:671.040000px;}
.x30_c01463{left:676.080000px;}
.x6f_c01463{left:683.280000px;}
.x3f_c01463{left:684.720000px;}
.x31_c01463{left:686.160000px;}
.x89_c01463{left:689.040000px;}
.xfe_c01463{left:692.640000px;}
.x34_c01463{left:694.080000px;}
.x38_c01463{left:702.720000px;}
.x7d_c01463{left:716.400000px;}
.x3c_c01463{left:725.760000px;}
.x3d_c01463{left:729.360000px;}
.x8a_c01463{left:732.240000px;}
.x3e_c01463{left:734.400000px;}
.x116_c01463{left:739.440000px;}
.x70_c01463{left:740.880000px;}
.xff_c01463{left:743.760000px;}
.x71_c01463{left:745.920000px;}
.x117_c01463{left:758.160000px;}
.x100_c01463{left:759.600000px;}
.x13_c01463{left:761.040000px;}
.x101_c01463{left:763.920000px;}
.x102_c01463{left:768.960000px;}
.x10e_c01463{left:773.280000px;}
.x8b_c01463{left:778.320000px;}
.xf7_c01463{left:779.760000px;}
.x10f_c01463{left:781.200000px;}
.x25_c01463{left:783.360000px;}
.x7e_c01463{left:793.440000px;}
.x110_c01463{left:794.880000px;}
.x8c_c01463{left:804.240000px;}
.x118_c01463{left:807.120000px;}
.x8d_c01463{left:812.160000px;}
.x119_c01463{left:817.920000px;}
.x6a_c01463{left:819.360000px;}
.x11a_c01463{left:820.800000px;}
.x111_c01463{left:825.120000px;}
.x14_c01463{left:826.560000px;}
.x11b_c01463{left:830.880000px;}
.x103_c01463{left:835.920000px;}
.x11c_c01463{left:838.080000px;}
.x104_c01463{left:840.240000px;}
.x105_c01463{left:844.560000px;}
.x11d_c01463{left:855.360000px;}
.x53_c01463{left:856.800000px;}
.x112_c01463{left:858.240000px;}
.x69_c01463{left:859.680000px;}
.x6b_c01463{left:870.480000px;}
.x6c_c01463{left:872.640000px;}
.x113_c01463{left:876.960000px;}
.x11e_c01463{left:881.280000px;}
.x7f_c01463{left:896.400000px;}
.x4b_c01463{left:898.560000px;}
.x8e_c01463{left:901.440000px;}
.x15_c01463{left:912.960000px;}
.x106_c01463{left:922.320000px;}
.x107_c01463{left:928.080000px;}
.x4c_c01463{left:930.960000px;}
.xf8_c01463{left:932.400000px;}
.x46_c01463{left:935.280000px;}
.x80_c01463{left:943.920000px;}
.x40_c01463{left:946.080000px;}
.x16_c01463{left:956.880000px;}
.x41_c01463{left:960.480000px;}
.x6d_c01463{left:961.920000px;}
.x108_c01463{left:969.120000px;}
.xbe_c01463{left:989.280000px;}
.xc4_c01463{left:990.720000px;}
.x81_c01463{left:992.160000px;}
.xba_c01463{left:998.640000px;}
.x17_c01463{left:1000.800000px;}
.xbb_c01463{left:1005.840000px;}
.xc5_c01463{left:1008.720000px;}
.xf9_c01463{left:1019.520000px;}
.xbf_c01463{left:1020.960000px;}
.x4f_c01463{left:1022.400000px;}
.xc9_c01463{left:1026.000000px;}
.x47_c01463{left:1031.040000px;}
.xbc_c01463{left:1032.480000px;}
.x42_c01463{left:1033.920000px;}
.xbd_c01463{left:1046.880000px;}
.x43_c01463{left:1048.320000px;}
.x18_c01463{left:1077.120000px;}
.xd0_c01463{left:1082.160000px;}
.xe3_c01463{left:1085.760000px;}
.xe5_c01463{left:1105.920000px;}
.x50_c01463{left:1112.400000px;}
.xd1_c01463{left:1116.000000px;}
.xd5_c01463{left:1118.880000px;}
.x48_c01463{left:1120.320000px;}
.xe4_c01463{left:1128.960000px;}
.xe7_c01463{left:1149.840000px;}
.x4d_c01463{left:1162.080000px;}
.xd2_c01463{left:1166.400000px;}
.x51_c01463{left:1168.560000px;}
.x19_c01463{left:1175.760000px;}
.xd6_c01463{left:1180.080000px;}
.xd9_c01463{left:1186.560000px;}
.x109_c01463{left:1192.320000px;}
.xe6_c01463{left:1198.080000px;}
.xda_c01463{left:1202.400000px;}
.xd3_c01463{left:1203.840000px;}
.x4e_c01463{left:1205.280000px;}
.x52_c01463{left:1207.440000px;}
.xd7_c01463{left:1218.960000px;}
.xcb_c01463{left:1220.400000px;}
.x49_c01463{left:1222.560000px;}
.xcc_c01463{left:1225.440000px;}
.x44_c01463{left:1226.880000px;}
.xce_c01463{left:1232.640000px;}
.xcf_c01463{left:1235.520000px;}
.xca_c01463{left:1238.400000px;}
.x1a_c01463{left:1242.720000px;}
.x4a_c01463{left:1248.480000px;}
.x45_c01463{left:1249.920000px;}
.xdf_c01463{left:1254.240000px;}
.xe0_c01463{left:1255.680000px;}
.x10a_c01463{left:1257.120000px;}
.xcd_c01463{left:1259.280000px;}
.x1b_c01463{left:1260.720000px;}
.xde_c01463{left:1281.600000px;}
.x10b_c01463{left:1285.200000px;}
.xd4_c01463{left:1291.680000px;}
.xe8_c01463{left:1296.720000px;}
.xe9_c01463{left:1302.480000px;}
.xfa_c01463{left:1307.520000px;}
.x10c_c01463{left:1308.960000px;}
.xdb_c01463{left:1312.560000px;}
.xea_c01463{left:1330.560000px;}
.xdc_c01463{left:1334.160000px;}
.xeb_c01463{left:1338.480000px;}
.xd8_c01463{left:1344.240000px;}
.xdd_c01463{left:1352.880000px;}
.xe1_c01463{left:1356.480000px;}
.xe2_c01463{left:1371.600000px;}
@media print{
.v1_c01463{vertical-align:-7.680000pt;}
.v4_c01463{vertical-align:-5.120000pt;}
.v3_c01463{vertical-align:-2.560000pt;}
.v0_c01463{vertical-align:0.000000pt;}
.v5_c01463{vertical-align:2.560000pt;}
.v2_c01463{vertical-align:5.120000pt;}
.ls6_c01463{letter-spacing:0.000000pt;}
.ls3_c01463{letter-spacing:8.187947pt;}
.ls1_c01463{letter-spacing:227.540267pt;}
.ls0_c01463{letter-spacing:253.654187pt;}
.ls4_c01463{letter-spacing:281.824853pt;}
.ls2_c01463{letter-spacing:1087.982933pt;}
.ls5_c01463{letter-spacing:2382.325333pt;}
.wsf_c01463{word-spacing:0.000000pt;}
.ws7_c01463{word-spacing:1.757046pt;}
.ws2_c01463{word-spacing:3.311142pt;}
.wsd_c01463{word-spacing:55.702613pt;}
.ws8_c01463{word-spacing:57.388373pt;}
.ws9_c01463{word-spacing:91.114667pt;}
.ws6_c01463{word-spacing:112.448000pt;}
.wse_c01463{word-spacing:132.890667pt;}
.wsb_c01463{word-spacing:160.448000pt;}
.ws5_c01463{word-spacing:177.894400pt;}
.ws0_c01463{word-spacing:179.016320pt;}
.ws1_c01463{word-spacing:180.027733pt;}
.wsa_c01463{word-spacing:182.160968pt;}
.ws4_c01463{word-spacing:182.161067pt;}
.wsc_c01463{word-spacing:187.013333pt;}
.ws3_c01463{word-spacing:198.370133pt;}
._0_c01463{width:147.557333pt;}
.fsc_c01463{font-size:2.560000pt;}
.fsb_c01463{font-size:5.120000pt;}
.fs14_c01463{font-size:5.333333pt;}
.fs5_c01463{font-size:7.680000pt;}
.fs16_c01463{font-size:10.240000pt;}
.fs20_c01463{font-size:12.800000pt;}
.fs6_c01463{font-size:15.360000pt;}
.fs2a_c01463{font-size:17.920000pt;}
.fs2d_c01463{font-size:20.480000pt;}
.fs4_c01463{font-size:23.040000pt;}
.fs2f_c01463{font-size:25.600000pt;}
.fs2e_c01463{font-size:28.160000pt;}
.fsa_c01463{font-size:30.720000pt;}
.fs7_c01463{font-size:33.280000pt;}
.fs28_c01463{font-size:35.840000pt;}
.fsd_c01463{font-size:38.400000pt;}
.fs8_c01463{font-size:40.960000pt;}
.fs3_c01463{font-size:43.520000pt;}
.fse_c01463{font-size:46.080000pt;}
.fs12_c01463{font-size:48.640000pt;}
.fs26_c01463{font-size:51.200000pt;}
.fs13_c01463{font-size:53.760000pt;}
.fs9_c01463{font-size:56.320000pt;}
.fs15_c01463{font-size:58.880000pt;}
.fs21_c01463{font-size:61.440000pt;}
.fs23_c01463{font-size:64.000000pt;}
.fs1f_c01463{font-size:66.560000pt;}
.fs11_c01463{font-size:69.120000pt;}
.fs22_c01463{font-size:71.680000pt;}
.fs2b_c01463{font-size:76.800000pt;}
.fs0_c01463{font-size:79.360000pt;}
.fs2c_c01463{font-size:81.920000pt;}
.fs17_c01463{font-size:84.480000pt;}
.fs27_c01463{font-size:89.600000pt;}
.fs19_c01463{font-size:94.720000pt;}
.fs30_c01463{font-size:97.280000pt;}
.fs1_c01463{font-size:99.840000pt;}
.fs10_c01463{font-size:115.200000pt;}
.fsf_c01463{font-size:122.880000pt;}
.fs25_c01463{font-size:130.560000pt;}
.fs24_c01463{font-size:133.120000pt;}
.fs1c_c01463{font-size:138.240000pt;}
.fs1a_c01463{font-size:153.600000pt;}
.fs1e_c01463{font-size:156.160000pt;}
.fs1b_c01463{font-size:158.720000pt;}
.fs1d_c01463{font-size:161.280000pt;}
.fs29_c01463{font-size:176.640000pt;}
.fs18_c01463{font-size:212.480000pt;}
.fs2_c01463{font-size:263.680000pt;}
.y0_c01463{bottom:0.000000pt;}
.yeb_c01463{bottom:0.640000pt;}
.yef_c01463{bottom:2.560000pt;}
.yec_c01463{bottom:3.200000pt;}
.yed_c01463{bottom:3.840000pt;}
.ye1_c01463{bottom:4.480000pt;}
.ye0_c01463{bottom:5.760000pt;}
.yf8_c01463{bottom:6.400000pt;}
.yf0_c01463{bottom:7.040000pt;}
.yee_c01463{bottom:7.680000pt;}
.ye4_c01463{bottom:8.320000pt;}
.yf6_c01463{bottom:29.440000pt;}
.yf7_c01463{bottom:30.080000pt;}
.yea_c01463{bottom:32.640000pt;}
.ye9_c01463{bottom:48.640000pt;}
.yf9_c01463{bottom:65.280000pt;}
.yf3_c01463{bottom:75.520000pt;}
.yf2_c01463{bottom:76.160000pt;}
.ye8_c01463{bottom:76.800000pt;}
.yf4_c01463{bottom:78.080000pt;}
.yf5_c01463{bottom:78.720000pt;}
.ye5_c01463{bottom:81.280000pt;}
.ye2_c01463{bottom:81.920000pt;}
.ye3_c01463{bottom:82.560000pt;}
.ydf_c01463{bottom:94.080000pt;}
.yde_c01463{bottom:100.480000pt;}
.ye7_c01463{bottom:101.120000pt;}
.y46_c01463{bottom:101.760000pt;}
.yf1_c01463{bottom:103.680000pt;}
.yd4_c01463{bottom:104.320000pt;}
.ye6_c01463{bottom:104.960000pt;}
.yd7_c01463{bottom:126.080000pt;}
.ya5_c01463{bottom:126.720000pt;}
.y9d_c01463{bottom:127.360000pt;}
.y9c_c01463{bottom:128.000000pt;}
.ya6_c01463{bottom:128.640000pt;}
.ya0_c01463{bottom:129.280000pt;}
.yd3_c01463{bottom:129.920000pt;}
.ya3_c01463{bottom:144.640000pt;}
.ya4_c01463{bottom:145.280000pt;}
.ya2_c01463{bottom:145.920000pt;}
.yce_c01463{bottom:147.200000pt;}
.ycd_c01463{bottom:147.840000pt;}
.ya1_c01463{bottom:151.680000pt;}
.yd2_c01463{bottom:155.520000pt;}
.yd5_c01463{bottom:157.440000pt;}
.ycc_c01463{bottom:170.880000pt;}
.yd6_c01463{bottom:174.720000pt;}
.y97_c01463{bottom:176.000000pt;}
.y98_c01463{bottom:178.560000pt;}
.yc6_c01463{bottom:190.080000pt;}
.yca_c01463{bottom:193.280000pt;}
.ycb_c01463{bottom:193.920000pt;}
.y9b_c01463{bottom:197.120000pt;}
.y96_c01463{bottom:199.040000pt;}
.yb5_c01463{bottom:199.680000pt;}
.yb6_c01463{bottom:203.520000pt;}
.y95_c01463{bottom:215.040000pt;}
.yb7_c01463{bottom:215.680000pt;}
.y94_c01463{bottom:216.960000pt;}
.yc7_c01463{bottom:217.600000pt;}
.yc8_c01463{bottom:218.240000pt;}
.yc9_c01463{bottom:218.880000pt;}
.y9a_c01463{bottom:219.520000pt;}
.yae_c01463{bottom:220.800000pt;}
.yb2_c01463{bottom:221.440000pt;}
.yc4_c01463{bottom:235.520000pt;}
.yc5_c01463{bottom:236.800000pt;}
.yb3_c01463{bottom:238.720000pt;}
.y93_c01463{bottom:239.360000pt;}
.yb4_c01463{bottom:240.000000pt;}
.y99_c01463{bottom:243.840000pt;}
.y9f_c01463{bottom:244.480000pt;}
.yaa_c01463{bottom:245.120000pt;}
.y91_c01463{bottom:245.760000pt;}
.y92_c01463{bottom:248.320000pt;}
.yc3_c01463{bottom:256.000000pt;}
.yc2_c01463{bottom:263.040000pt;}
.y8a_c01463{bottom:266.240000pt;}
.y88_c01463{bottom:266.880000pt;}
.y89_c01463{bottom:268.160000pt;}
.y8b_c01463{bottom:268.800000pt;}
.yb1_c01463{bottom:274.560000pt;}
.yc1_c01463{bottom:284.160000pt;}
.y8c_c01463{bottom:284.800000pt;}
.yac_c01463{bottom:285.440000pt;}
.yc0_c01463{bottom:286.080000pt;}
.yd9_c01463{bottom:288.000000pt;}
.ya8_c01463{bottom:288.640000pt;}
.y86_c01463{bottom:307.840000pt;}
.yb0_c01463{bottom:308.480000pt;}
.y87_c01463{bottom:309.120000pt;}
.ybf_c01463{bottom:309.760000pt;}
.yab_c01463{bottom:311.040000pt;}
.y90_c01463{bottom:311.680000pt;}
.y84_c01463{bottom:312.960000pt;}
.y85_c01463{bottom:313.600000pt;}
.y8f_c01463{bottom:314.880000pt;}
.y83_c01463{bottom:330.240000pt;}
.y82_c01463{bottom:330.880000pt;}
.yaf_c01463{bottom:331.520000pt;}
.ybe_c01463{bottom:334.720000pt;}
.y80_c01463{bottom:335.360000pt;}
.y81_c01463{bottom:336.000000pt;}
.y8e_c01463{bottom:337.920000pt;}
.y7f_c01463{bottom:353.280000pt;}
.y7d_c01463{bottom:353.920000pt;}
.y7e_c01463{bottom:354.560000pt;}
.yad_c01463{bottom:355.200000pt;}
.ya7_c01463{bottom:355.840000pt;}
.y9e_c01463{bottom:356.480000pt;}
.y7c_c01463{bottom:357.120000pt;}
.ya9_c01463{bottom:358.400000pt;}
.y7b_c01463{bottom:359.040000pt;}
.y8d_c01463{bottom:359.680000pt;}
.y79_c01463{bottom:376.960000pt;}
.y78_c01463{bottom:377.600000pt;}
.ybd_c01463{bottom:378.880000pt;}
.y77_c01463{bottom:380.800000pt;}
.y7a_c01463{bottom:382.080000pt;}
.y76_c01463{bottom:382.720000pt;}
.y72_c01463{bottom:398.080000pt;}
.y71_c01463{bottom:399.360000pt;}
.y6f_c01463{bottom:400.000000pt;}
.y70_c01463{bottom:400.640000pt;}
.ybc_c01463{bottom:401.920000pt;}
.y6e_c01463{bottom:403.200000pt;}
.y75_c01463{bottom:406.400000pt;}
.y73_c01463{bottom:407.040000pt;}
.y74_c01463{bottom:408.960000pt;}
.y6d_c01463{bottom:421.120000pt;}
.y6c_c01463{bottom:421.760000pt;}
.y6b_c01463{bottom:422.400000pt;}
.y6a_c01463{bottom:423.040000pt;}
.y69_c01463{bottom:423.680000pt;}
.y68_c01463{bottom:424.320000pt;}
.ybb_c01463{bottom:424.960000pt;}
.yd8_c01463{bottom:426.240000pt;}
.y64_c01463{bottom:445.440000pt;}
.y65_c01463{bottom:446.080000pt;}
.y66_c01463{bottom:446.720000pt;}
.y67_c01463{bottom:447.360000pt;}
.yba_c01463{bottom:448.000000pt;}
.y63_c01463{bottom:451.840000pt;}
.yb9_c01463{bottom:468.480000pt;}
.y25_c01463{bottom:469.120000pt;}
.y5b_c01463{bottom:469.760000pt;}
.y5a_c01463{bottom:470.400000pt;}
.yb8_c01463{bottom:471.040000pt;}
.y5e_c01463{bottom:471.680000pt;}
.y5c_c01463{bottom:472.320000pt;}
.y34_c01463{bottom:472.960000pt;}
.y5d_c01463{bottom:474.240000pt;}
.y59_c01463{bottom:474.880000pt;}
.y57_c01463{bottom:476.160000pt;}
.y58_c01463{bottom:476.800000pt;}
.y26_c01463{bottom:479.360000pt;}
.y53_c01463{bottom:492.160000pt;}
.y52_c01463{bottom:492.800000pt;}
.y55_c01463{bottom:494.720000pt;}
.y56_c01463{bottom:495.360000pt;}
.y54_c01463{bottom:496.640000pt;}
.y33_c01463{bottom:497.280000pt;}
.y51_c01463{bottom:499.200000pt;}
.y50_c01463{bottom:507.520000pt;}
.y30_c01463{bottom:514.560000pt;}
.y2f_c01463{bottom:515.840000pt;}
.y31_c01463{bottom:516.480000pt;}
.y44_c01463{bottom:517.120000pt;}
.y45_c01463{bottom:517.760000pt;}
.y43_c01463{bottom:518.400000pt;}
.y2e_c01463{bottom:519.040000pt;}
.y42_c01463{bottom:520.320000pt;}
.y32_c01463{bottom:520.960000pt;}
.y3d_c01463{bottom:537.600000pt;}
.y41_c01463{bottom:538.240000pt;}
.y3e_c01463{bottom:538.880000pt;}
.y40_c01463{bottom:540.160000pt;}
.y2d_c01463{bottom:541.440000pt;}
.y3f_c01463{bottom:543.360000pt;}
.y4f_c01463{bottom:544.640000pt;}
.y3c_c01463{bottom:561.280000pt;}
.y2b_c01463{bottom:561.920000pt;}
.y2c_c01463{bottom:562.560000pt;}
.y3a_c01463{bottom:563.200000pt;}
.y3b_c01463{bottom:563.840000pt;}
.y4e_c01463{bottom:564.480000pt;}
.y4c_c01463{bottom:565.760000pt;}
.y39_c01463{bottom:566.400000pt;}
.y4d_c01463{bottom:567.680000pt;}
.y2a_c01463{bottom:584.960000pt;}
.y29_c01463{bottom:585.600000pt;}
.y36_c01463{bottom:586.880000pt;}
.y38_c01463{bottom:587.520000pt;}
.y37_c01463{bottom:588.800000pt;}
.y35_c01463{bottom:589.440000pt;}
.y4b_c01463{bottom:590.720000pt;}
.y27_c01463{bottom:608.000000pt;}
.y60_c01463{bottom:608.640000pt;}
.y5f_c01463{bottom:609.280000pt;}
.ydd_c01463{bottom:610.560000pt;}
.y4a_c01463{bottom:611.840000pt;}
.y47_c01463{bottom:612.480000pt;}
.y28_c01463{bottom:613.120000pt;}
.y49_c01463{bottom:614.400000pt;}
.y48_c01463{bottom:615.040000pt;}
.y62_c01463{bottom:631.040000pt;}
.ydc_c01463{bottom:632.320000pt;}
.ydb_c01463{bottom:633.600000pt;}
.y61_c01463{bottom:635.520000pt;}
.y23_c01463{bottom:636.160000pt;}
.y21_c01463{bottom:637.440000pt;}
.y22_c01463{bottom:638.080000pt;}
.y20_c01463{bottom:638.720000pt;}
.y24_c01463{bottom:647.680000pt;}
.y1f_c01463{bottom:654.720000pt;}
.y1e_c01463{bottom:655.360000pt;}
.y1d_c01463{bottom:656.000000pt;}
.yda_c01463{bottom:656.640000pt;}
.y1c_c01463{bottom:657.920000pt;}
.y1b_c01463{bottom:658.560000pt;}
.y19_c01463{bottom:659.840000pt;}
.y1a_c01463{bottom:660.480000pt;}
.y17_c01463{bottom:661.120000pt;}
.y18_c01463{bottom:661.760000pt;}
.y16_c01463{bottom:677.760000pt;}
.y15_c01463{bottom:688.000000pt;}
.y14_c01463{bottom:688.640000pt;}
.y11_c01463{bottom:689.280000pt;}
.y10_c01463{bottom:689.920000pt;}
.y13_c01463{bottom:690.560000pt;}
.y12_c01463{bottom:691.200000pt;}
.yf_c01463{bottom:693.120000pt;}
.yc_c01463{bottom:722.560000pt;}
.yd_c01463{bottom:728.320000pt;}
.ye_c01463{bottom:728.960000pt;}
.y3_c01463{bottom:730.880000pt;}
.yb_c01463{bottom:731.520000pt;}
.ya_c01463{bottom:734.080000pt;}
.y8_c01463{bottom:735.360000pt;}
.y9_c01463{bottom:738.560000pt;}
.y7_c01463{bottom:747.520000pt;}
.y2_c01463{bottom:754.560000pt;}
.y5_c01463{bottom:756.480000pt;}
.y6_c01463{bottom:761.600000pt;}
.y4_c01463{bottom:764.800000pt;}
.y1_c01463{bottom:776.320000pt;}
.ycf_c01463{bottom:786.560000pt;}
.yd1_c01463{bottom:787.840000pt;}
.yd0_c01463{bottom:789.760000pt;}
.he_c01463{height:2.303750pt;}
.hd_c01463{height:4.607500pt;}
.h17_c01463{height:4.799479pt;}
.h7_c01463{height:6.911250pt;}
.h2a_c01463{height:7.359479pt;}
.h19_c01463{height:9.215000pt;}
.h23_c01463{height:11.518750pt;}
.h8_c01463{height:13.822500pt;}
.h2f_c01463{height:16.126250pt;}
.h32_c01463{height:18.430000pt;}
.h6_c01463{height:20.733750pt;}
.h34_c01463{height:23.037500pt;}
.h33_c01463{height:25.341250pt;}
.hc_c01463{height:27.645000pt;}
.h9_c01463{height:29.948750pt;}
.h2d_c01463{height:32.252500pt;}
.hf_c01463{height:34.556250pt;}
.ha_c01463{height:36.860000pt;}
.h5_c01463{height:39.163750pt;}
.h10_c01463{height:41.467500pt;}
.h15_c01463{height:43.771250pt;}
.h29_c01463{height:46.075000pt;}
.h14_c01463{height:46.587500pt;}
.h2b_c01463{height:47.866250pt;}
.h16_c01463{height:48.378750pt;}
.hb_c01463{height:50.682500pt;}
.h18_c01463{height:52.986250pt;}
.h24_c01463{height:55.290000pt;}
.h26_c01463{height:57.593750pt;}
.h22_c01463{height:59.897500pt;}
.h13_c01463{height:62.201250pt;}
.h25_c01463{height:64.505000pt;}
.h30_c01463{height:69.112500pt;}
.h2_c01463{height:71.416250pt;}
.h31_c01463{height:73.720000pt;}
.h1a_c01463{height:76.023750pt;}
.h2c_c01463{height:80.631250pt;}
.h1c_c01463{height:85.238750pt;}
.h35_c01463{height:87.542500pt;}
.h3_c01463{height:89.846250pt;}
.h12_c01463{height:103.668750pt;}
.h11_c01463{height:110.580000pt;}
.h28_c01463{height:117.491250pt;}
.h27_c01463{height:119.795000pt;}
.h1f_c01463{height:124.402500pt;}
.h1d_c01463{height:138.225000pt;}
.h21_c01463{height:140.528750pt;}
.h1e_c01463{height:142.832500pt;}
.h20_c01463{height:145.136250pt;}
.h2e_c01463{height:158.958750pt;}
.h1b_c01463{height:191.211250pt;}
.h4_c01463{height:237.286250pt;}
.h1_c01463{height:796.666667pt;}
.h0_c01463{height:796.800000pt;}
.w1_c01463{width:1226.666667pt;}
.w0_c01463{width:1226.880000pt;}
.x0_c01463{left:0.000000pt;}
.x1_c01463{left:1.920000pt;}
.x2_c01463{left:3.840000pt;}
.x3_c01463{left:11.520000pt;}
.x8_c01463{left:24.960000pt;}
.xec_c01463{left:26.880000pt;}
.x6e_c01463{left:28.800000pt;}
.x1c_c01463{left:30.080000pt;}
.x4_c01463{left:32.640000pt;}
.xab_c01463{left:37.120000pt;}
.x63_c01463{left:38.400000pt;}
.x5d_c01463{left:42.240000pt;}
.x1d_c01463{left:48.000000pt;}
.x1e_c01463{left:49.920000pt;}
.x77_c01463{left:57.600000pt;}
.x2a_c01463{left:58.880000pt;}
.x26_c01463{left:66.560000pt;}
.x9_c01463{left:69.760000pt;}
.x58_c01463{left:76.800000pt;}
.x2b_c01463{left:78.720000pt;}
.x1f_c01463{left:80.000000pt;}
.x78_c01463{left:82.560000pt;}
.x90_c01463{left:84.480000pt;}
.x8f_c01463{left:86.400000pt;}
.x54_c01463{left:88.320000pt;}
.x94_c01463{left:91.520000pt;}
.xae_c01463{left:101.760000pt;}
.xf0_c01463{left:103.680000pt;}
.x91_c01463{left:105.600000pt;}
.x5a_c01463{left:113.280000pt;}
.xa8_c01463{left:117.120000pt;}
.x95_c01463{left:119.040000pt;}
.x72_c01463{left:122.240000pt;}
.xaf_c01463{left:124.800000pt;}
.x73_c01463{left:126.720000pt;}
.x96_c01463{left:128.000000pt;}
.xa3_c01463{left:130.560000pt;}
.x97_c01463{left:134.400000pt;}
.xd_c01463{left:136.960000pt;}
.xed_c01463{left:140.160000pt;}
.xa1_c01463{left:144.000000pt;}
.x5e_c01463{left:145.280000pt;}
.x20_c01463{left:147.200000pt;}
.xa9_c01463{left:149.120000pt;}
.xb2_c01463{left:153.600000pt;}
.x64_c01463{left:155.520000pt;}
.xb0_c01463{left:163.200000pt;}
.x92_c01463{left:165.760000pt;}
.xb1_c01463{left:176.640000pt;}
.x65_c01463{left:178.560000pt;}
.x93_c01463{left:182.400000pt;}
.x79_c01463{left:184.960000pt;}
.x5_c01463{left:195.840000pt;}
.xa_c01463{left:197.760000pt;}
.x66_c01463{left:205.440000pt;}
.x9b_c01463{left:206.720000pt;}
.x74_c01463{left:210.560000pt;}
.xb3_c01463{left:212.480000pt;}
.xe_c01463{left:215.040000pt;}
.xa4_c01463{left:216.960000pt;}
.xac_c01463{left:218.880000pt;}
.xb4_c01463{left:221.440000pt;}
.x5b_c01463{left:223.360000pt;}
.x55_c01463{left:224.640000pt;}
.x99_c01463{left:225.920000pt;}
.x7a_c01463{left:230.400000pt;}
.xc6_c01463{left:231.680000pt;}
.x98_c01463{left:232.960000pt;}
.x27_c01463{left:238.080000pt;}
.x75_c01463{left:242.560000pt;}
.x9c_c01463{left:245.120000pt;}
.xee_c01463{left:247.040000pt;}
.x5c_c01463{left:256.000000pt;}
.xc7_c01463{left:258.560000pt;}
.x5f_c01463{left:270.720000pt;}
.x6_c01463{left:272.640000pt;}
.x9a_c01463{left:273.920000pt;}
.xf1_c01463{left:277.760000pt;}
.xc1_c01463{left:284.800000pt;}
.x9d_c01463{left:286.080000pt;}
.x76_c01463{left:287.360000pt;}
.xf2_c01463{left:289.280000pt;}
.xf_c01463{left:291.840000pt;}
.x9e_c01463{left:300.160000pt;}
.x21_c01463{left:302.080000pt;}
.x7b_c01463{left:305.280000pt;}
.x60_c01463{left:309.760000pt;}
.x56_c01463{left:311.040000pt;}
.xa5_c01463{left:320.640000pt;}
.x61_c01463{left:322.560000pt;}
.x9f_c01463{left:324.480000pt;}
.x67_c01463{left:326.400000pt;}
.x68_c01463{left:330.880000pt;}
.xc2_c01463{left:332.160000pt;}
.xa0_c01463{left:336.000000pt;}
.xf3_c01463{left:338.560000pt;}
.x7_c01463{left:342.400000pt;}
.xb_c01463{left:343.680000pt;}
.xb5_c01463{left:346.880000pt;}
.x82_c01463{left:357.120000pt;}
.xf4_c01463{left:358.400000pt;}
.x10_c01463{left:359.680000pt;}
.x28_c01463{left:364.800000pt;}
.xad_c01463{left:367.360000pt;}
.x2c_c01463{left:368.640000pt;}
.x22_c01463{left:369.920000pt;}
.xa2_c01463{left:376.320000pt;}
.x57_c01463{left:378.240000pt;}
.xaa_c01463{left:380.160000pt;}
.xb6_c01463{left:393.600000pt;}
.xa6_c01463{left:402.560000pt;}
.xf5_c01463{left:410.240000pt;}
.x29_c01463{left:421.760000pt;}
.xef_c01463{left:425.600000pt;}
.xf6_c01463{left:435.840000pt;}
.x11_c01463{left:437.120000pt;}
.xc0_c01463{left:444.160000pt;}
.x2d_c01463{left:446.080000pt;}
.x23_c01463{left:447.360000pt;}
.x7c_c01463{left:449.920000pt;}
.xb9_c01463{left:453.120000pt;}
.x62_c01463{left:454.400000pt;}
.x59_c01463{left:455.680000pt;}
.xb7_c01463{left:471.040000pt;}
.xc_c01463{left:490.240000pt;}
.xb8_c01463{left:493.440000pt;}
.x35_c01463{left:501.120000pt;}
.xfb_c01463{left:512.000000pt;}
.x83_c01463{left:513.280000pt;}
.x32_c01463{left:514.560000pt;}
.x84_c01463{left:515.840000pt;}
.x85_c01463{left:520.320000pt;}
.x36_c01463{left:526.080000pt;}
.xa7_c01463{left:528.000000pt;}
.x2e_c01463{left:533.760000pt;}
.x33_c01463{left:539.520000pt;}
.x2f_c01463{left:541.440000pt;}
.x24_c01463{left:542.720000pt;}
.x114_c01463{left:551.040000pt;}
.x39_c01463{left:554.240000pt;}
.xc3_c01463{left:558.080000pt;}
.x3a_c01463{left:562.560000pt;}
.xc8_c01463{left:564.480000pt;}
.x3b_c01463{left:565.760000pt;}
.x115_c01463{left:569.600000pt;}
.x86_c01463{left:572.160000pt;}
.x10d_c01463{left:576.640000pt;}
.x87_c01463{left:585.600000pt;}
.xfc_c01463{left:588.800000pt;}
.x88_c01463{left:590.080000pt;}
.x12_c01463{left:591.360000pt;}
.xfd_c01463{left:593.920000pt;}
.x37_c01463{left:596.480000pt;}
.x30_c01463{left:600.960000pt;}
.x6f_c01463{left:607.360000pt;}
.x3f_c01463{left:608.640000pt;}
.x31_c01463{left:609.920000pt;}
.x89_c01463{left:612.480000pt;}
.xfe_c01463{left:615.680000pt;}
.x34_c01463{left:616.960000pt;}
.x38_c01463{left:624.640000pt;}
.x7d_c01463{left:636.800000pt;}
.x3c_c01463{left:645.120000pt;}
.x3d_c01463{left:648.320000pt;}
.x8a_c01463{left:650.880000pt;}
.x3e_c01463{left:652.800000pt;}
.x116_c01463{left:657.280000pt;}
.x70_c01463{left:658.560000pt;}
.xff_c01463{left:661.120000pt;}
.x71_c01463{left:663.040000pt;}
.x117_c01463{left:673.920000pt;}
.x100_c01463{left:675.200000pt;}
.x13_c01463{left:676.480000pt;}
.x101_c01463{left:679.040000pt;}
.x102_c01463{left:683.520000pt;}
.x10e_c01463{left:687.360000pt;}
.x8b_c01463{left:691.840000pt;}
.xf7_c01463{left:693.120000pt;}
.x10f_c01463{left:694.400000pt;}
.x25_c01463{left:696.320000pt;}
.x7e_c01463{left:705.280000pt;}
.x110_c01463{left:706.560000pt;}
.x8c_c01463{left:714.880000pt;}
.x118_c01463{left:717.440000pt;}
.x8d_c01463{left:721.920000pt;}
.x119_c01463{left:727.040000pt;}
.x6a_c01463{left:728.320000pt;}
.x11a_c01463{left:729.600000pt;}
.x111_c01463{left:733.440000pt;}
.x14_c01463{left:734.720000pt;}
.x11b_c01463{left:738.560000pt;}
.x103_c01463{left:743.040000pt;}
.x11c_c01463{left:744.960000pt;}
.x104_c01463{left:746.880000pt;}
.x105_c01463{left:750.720000pt;}
.x11d_c01463{left:760.320000pt;}
.x53_c01463{left:761.600000pt;}
.x112_c01463{left:762.880000pt;}
.x69_c01463{left:764.160000pt;}
.x6b_c01463{left:773.760000pt;}
.x6c_c01463{left:775.680000pt;}
.x113_c01463{left:779.520000pt;}
.x11e_c01463{left:783.360000pt;}
.x7f_c01463{left:796.800000pt;}
.x4b_c01463{left:798.720000pt;}
.x8e_c01463{left:801.280000pt;}
.x15_c01463{left:811.520000pt;}
.x106_c01463{left:819.840000pt;}
.x107_c01463{left:824.960000pt;}
.x4c_c01463{left:827.520000pt;}
.xf8_c01463{left:828.800000pt;}
.x46_c01463{left:831.360000pt;}
.x80_c01463{left:839.040000pt;}
.x40_c01463{left:840.960000pt;}
.x16_c01463{left:850.560000pt;}
.x41_c01463{left:853.760000pt;}
.x6d_c01463{left:855.040000pt;}
.x108_c01463{left:861.440000pt;}
.xbe_c01463{left:879.360000pt;}
.xc4_c01463{left:880.640000pt;}
.x81_c01463{left:881.920000pt;}
.xba_c01463{left:887.680000pt;}
.x17_c01463{left:889.600000pt;}
.xbb_c01463{left:894.080000pt;}
.xc5_c01463{left:896.640000pt;}
.xf9_c01463{left:906.240000pt;}
.xbf_c01463{left:907.520000pt;}
.x4f_c01463{left:908.800000pt;}
.xc9_c01463{left:912.000000pt;}
.x47_c01463{left:916.480000pt;}
.xbc_c01463{left:917.760000pt;}
.x42_c01463{left:919.040000pt;}
.xbd_c01463{left:930.560000pt;}
.x43_c01463{left:931.840000pt;}
.x18_c01463{left:957.440000pt;}
.xd0_c01463{left:961.920000pt;}
.xe3_c01463{left:965.120000pt;}
.xe5_c01463{left:983.040000pt;}
.x50_c01463{left:988.800000pt;}
.xd1_c01463{left:992.000000pt;}
.xd5_c01463{left:994.560000pt;}
.x48_c01463{left:995.840000pt;}
.xe4_c01463{left:1003.520000pt;}
.xe7_c01463{left:1022.080000pt;}
.x4d_c01463{left:1032.960000pt;}
.xd2_c01463{left:1036.800000pt;}
.x51_c01463{left:1038.720000pt;}
.x19_c01463{left:1045.120000pt;}
.xd6_c01463{left:1048.960000pt;}
.xd9_c01463{left:1054.720000pt;}
.x109_c01463{left:1059.840000pt;}
.xe6_c01463{left:1064.960000pt;}
.xda_c01463{left:1068.800000pt;}
.xd3_c01463{left:1070.080000pt;}
.x4e_c01463{left:1071.360000pt;}
.x52_c01463{left:1073.280000pt;}
.xd7_c01463{left:1083.520000pt;}
.xcb_c01463{left:1084.800000pt;}
.x49_c01463{left:1086.720000pt;}
.xcc_c01463{left:1089.280000pt;}
.x44_c01463{left:1090.560000pt;}
.xce_c01463{left:1095.680000pt;}
.xcf_c01463{left:1098.240000pt;}
.xca_c01463{left:1100.800000pt;}
.x1a_c01463{left:1104.640000pt;}
.x4a_c01463{left:1109.760000pt;}
.x45_c01463{left:1111.040000pt;}
.xdf_c01463{left:1114.880000pt;}
.xe0_c01463{left:1116.160000pt;}
.x10a_c01463{left:1117.440000pt;}
.xcd_c01463{left:1119.360000pt;}
.x1b_c01463{left:1120.640000pt;}
.xde_c01463{left:1139.200000pt;}
.x10b_c01463{left:1142.400000pt;}
.xd4_c01463{left:1148.160000pt;}
.xe8_c01463{left:1152.640000pt;}
.xe9_c01463{left:1157.760000pt;}
.xfa_c01463{left:1162.240000pt;}
.x10c_c01463{left:1163.520000pt;}
.xdb_c01463{left:1166.720000pt;}
.xea_c01463{left:1182.720000pt;}
.xdc_c01463{left:1185.920000pt;}
.xeb_c01463{left:1189.760000pt;}
.xd8_c01463{left:1194.880000pt;}
.xdd_c01463{left:1202.560000pt;}
.xe1_c01463{left:1205.760000pt;}
.xe2_c01463{left:1219.200000pt;}
}





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

.ir_c01464:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01464{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01464;src:url('chunks/assets/font_394820ab6b037320352627c3.woff2')format("woff");}.ff1_c01464{font-family:ff1_c01464;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m82_c01464{transform:matrix(0.012500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012500,0.000000,0.000000,0.250000,0,0);}
.m76_c01464{transform:matrix(0.035450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.035450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.035450,0.000000,0.000000,0.250000,0,0);}
.m68_c01464{transform:matrix(0.035675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.035675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.035675,0.000000,0.000000,0.250000,0,0);}
.mb1_c01464{transform:matrix(0.037450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.037450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.037450,0.000000,0.000000,0.250000,0,0);}
.m96_c01464{transform:matrix(0.038200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.038200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.038200,0.000000,0.000000,0.250000,0,0);}
.mad_c01464{transform:matrix(0.042500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042500,0.000000,0.000000,0.250000,0,0);}
.m9e_c01464{transform:matrix(0.042775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042775,0.000000,0.000000,0.250000,0,0);}
.maf_c01464{transform:matrix(0.043900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043900,0.000000,0.000000,0.250000,0,0);}
.m77_c01464{transform:matrix(0.045900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045900,0.000000,0.000000,0.250000,0,0);}
.m78_c01464{transform:matrix(0.048075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048075,0.000000,0.000000,0.250000,0,0);}
.mb0_c01464{transform:matrix(0.053875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053875,0.000000,0.000000,0.250000,0,0);}
.m69_c01464{transform:matrix(0.054350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054350,0.000000,0.000000,0.250000,0,0);}
.m75_c01464{transform:matrix(0.057875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057875,0.000000,0.000000,0.250000,0,0);}
.mab_c01464{transform:matrix(0.060175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060175,0.000000,0.000000,0.250000,0,0);}
.m97_c01464{transform:matrix(0.062400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062400,0.000000,0.000000,0.250000,0,0);}
.m98_c01464{transform:matrix(0.062475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062475,0.000000,0.000000,0.250000,0,0);}
.m7a_c01464{transform:matrix(0.066550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066550,0.000000,0.000000,0.250000,0,0);}
.m9c_c01464{transform:matrix(0.072325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072325,0.000000,0.000000,0.250000,0,0);}
.mae_c01464{transform:matrix(0.073300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073300,0.000000,0.000000,0.250000,0,0);}
.ma0_c01464{transform:matrix(0.073600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073600,0.000000,0.000000,0.250000,0,0);}
.m6a_c01464{transform:matrix(0.074425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.074425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.074425,0.000000,0.000000,0.250000,0,0);}
.m7d_c01464{transform:matrix(0.075025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075025,0.000000,0.000000,0.250000,0,0);}
.m8b_c01464{transform:matrix(0.075700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075700,0.000000,0.000000,0.250000,0,0);}
.m9a_c01464{transform:matrix(0.076125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076125,0.000000,0.000000,0.250000,0,0);}
.m99_c01464{transform:matrix(0.079225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079225,0.000000,0.000000,0.250000,0,0);}
.m9d_c01464{transform:matrix(0.082400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082400,0.000000,0.000000,0.250000,0,0);}
.m52_c01464{transform:matrix(0.085950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085950,0.000000,0.000000,0.250000,0,0);}
.m95_c01464{transform:matrix(0.088450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088450,0.000000,0.000000,0.250000,0,0);}
.ma8_c01464{transform:matrix(0.089275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089275,0.000000,0.000000,0.250000,0,0);}
.m94_c01464{transform:matrix(0.091025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091025,0.000000,0.000000,0.250000,0,0);}
.m9b_c01464{transform:matrix(0.092350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092350,0.000000,0.000000,0.250000,0,0);}
.m5b_c01464{transform:matrix(0.093450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093450,0.000000,0.000000,0.250000,0,0);}
.m87_c01464{transform:matrix(0.093850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093850,0.000000,0.000000,0.250000,0,0);}
.m9f_c01464{transform:matrix(0.095325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095325,0.000000,0.000000,0.250000,0,0);}
.m47_c01464{transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);}
.m5f_c01464{transform:matrix(0.100300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100300,0.000000,0.000000,0.250000,0,0);}
.m91_c01464{transform:matrix(0.104600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104600,0.000000,0.000000,0.250000,0,0);}
.m90_c01464{transform:matrix(0.108725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108725,0.000000,0.000000,0.250000,0,0);}
.mac_c01464{transform:matrix(0.113150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113150,0.000000,0.000000,0.250000,0,0);}
.m92_c01464{transform:matrix(0.114425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114425,0.000000,0.000000,0.250000,0,0);}
.m51_c01464{transform:matrix(0.119900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119900,0.000000,0.000000,0.250000,0,0);}
.m1c_c01464{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m67_c01464{transform:matrix(0.138950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138950,0.000000,0.000000,0.250000,0,0);}
.m7c_c01464{transform:matrix(0.140500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140500,0.000000,0.000000,0.250000,0,0);}
.m74_c01464{transform:matrix(0.156575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156575,0.000000,0.000000,0.250000,0,0);}
.ma7_c01464{transform:matrix(0.161875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161875,0.000000,0.000000,0.250000,0,0);}
.m8c_c01464{transform:matrix(0.165025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165025,0.000000,0.000000,0.250000,0,0);}
.m7f_c01464{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m72_c01464{transform:matrix(0.173150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173150,0.000000,0.000000,0.250000,0,0);}
.m55_c01464{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.ma9_c01464{transform:matrix(0.187400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187400,0.000000,0.000000,0.250000,0,0);}
.m7e_c01464{transform:matrix(0.187575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187575,0.000000,0.000000,0.250000,0,0);}
.m6f_c01464{transform:matrix(0.195625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195625,0.000000,0.000000,0.250000,0,0);}
.m8f_c01464{transform:matrix(0.196275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196275,0.000000,0.000000,0.250000,0,0);}
.m81_c01464{transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);}
.m43_c01464{transform:matrix(0.200550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200550,0.000000,0.000000,0.250000,0,0);}
.m59_c01464{transform:matrix(0.200925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200925,0.000000,0.000000,0.250000,0,0);}
.m56_c01464{transform:matrix(0.203075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203075,0.000000,0.000000,0.250000,0,0);}
.m84_c01464{transform:matrix(0.209475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209475,0.000000,0.000000,0.250000,0,0);}
.m48_c01464{transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);}
.m80_c01464{transform:matrix(0.224525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224525,0.000000,0.000000,0.250000,0,0);}
.m29_c01464{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m85_c01464{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);}
.m93_c01464{transform:matrix(0.232925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232925,0.000000,0.000000,0.250000,0,0);}
.m62_c01464{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m3f_c01464{transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);}
.m22_c01464{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);}
.m8e_c01464{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.mb_c01464{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m73_c01464{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m28_c01464{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m3b_c01464{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m64_c01464{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);}
.m42_c01464{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);}
.m1f_c01464{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mf_c01464{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);}
.m53_c01464{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m12_c01464{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m4_c01464{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01464{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m6d_c01464{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m15_c01464{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);}
.m79_c01464{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m9_c01464{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);}
.m6b_c01464{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m8_c01464{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01464{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m10_c01464{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01464{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m3_c01464{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m0_c01464{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m6e_c01464{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01464{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m8a_c01464{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m44_c01464{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m13_c01464{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m5_c01464{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m2_c01464{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m7_c01464{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m40_c01464{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);}
.m66_c01464{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m39_c01464{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1_c01464{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);}
.m89_c01464{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m63_c01464{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);}
.m38_c01464{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m88_c01464{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);}
.m4f_c01464{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m27_c01464{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);}
.ma5_c01464{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.ma_c01464{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m20_c01464{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_c01464{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);}
.m7b_c01464{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);}
.m8d_c01464{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);}
.m3e_c01464{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);}
.ma3_c01464{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m32_c01464{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);}
.m50_c01464{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m11_c01464{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m4d_c01464{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.mc_c01464{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m34_c01464{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);}
.m54_c01464{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.md_c01464{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);}
.me_c01464{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);}
.m6_c01464{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);}
.m37_c01464{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m23_c01464{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.ma6_c01464{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.ma2_c01464{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.ma4_c01464{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01464{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m35_c01464{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01464{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m17_c01464{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);}
.m58_c01464{transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);}
.m41_c01464{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.ma1_c01464{transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);}
.m36_c01464{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);}
.m71_c01464{transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);}
.m18_c01464{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m60_c01464{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m33_c01464{transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);}
.m86_c01464{transform:matrix(0.792500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.792500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.792500,0.000000,0.000000,0.250000,0,0);}
.m6c_c01464{transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);}
.m30_c01464{transform:matrix(0.960000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.960000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.960000,0.000000,0.000000,0.250000,0,0);}
.m45_c01464{transform:matrix(0.997500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.997500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.997500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01464{transform:matrix(1.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.015000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01464{transform:matrix(1.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.080000,0.000000,0.000000,0.250000,0,0);}
.m46_c01464{transform:matrix(1.102500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.102500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.102500,0.000000,0.000000,0.250000,0,0);}
.m16_c01464{transform:matrix(1.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.165000,0.000000,0.000000,0.250000,0,0);}
.m4e_c01464{transform:matrix(1.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.222500,0.000000,0.000000,0.250000,0,0);}
.m14_c01464{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01464{transform:matrix(1.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.460000,0.000000,0.000000,0.250000,0,0);}
.m5d_c01464{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01464{transform:matrix(1.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.592500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01464{transform:matrix(1.640000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.640000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.640000,0.000000,0.000000,0.250000,0,0);}
.m19_c01464{transform:matrix(1.747500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.747500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.747500,0.000000,0.000000,0.250000,0,0);}
.m5a_c01464{transform:matrix(1.762500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.762500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.762500,0.000000,0.000000,0.250000,0,0);}
.m21_c01464{transform:matrix(1.822500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.822500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.822500,0.000000,0.000000,0.250000,0,0);}
.m25_c01464{transform:matrix(1.920000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.920000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.920000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01464{transform:matrix(1.955000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.955000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.955000,0.000000,0.000000,0.250000,0,0);}
.m49_c01464{transform:matrix(2.082500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.082500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.082500,0.000000,0.000000,0.250000,0,0);}
.m61_c01464{transform:matrix(2.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.482500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01464{transform:matrix(2.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.602500,0.000000,0.000000,0.250000,0,0);}
.m26_c01464{transform:matrix(2.640000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.640000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.640000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01464{transform:matrix(2.657500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.657500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.657500,0.000000,0.000000,0.250000,0,0);}
.m70_c01464{transform:matrix(3.055000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.055000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.055000,0.000000,0.000000,0.250000,0,0);}
.m5c_c01464{transform:matrix(3.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.120000,0.000000,0.000000,0.250000,0,0);}
.maa_c01464{transform:matrix(3.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.230000,0.000000,0.000000,0.250000,0,0);}
.m57_c01464{transform:matrix(3.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.310000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01464{transform:matrix(3.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.327500,0.000000,0.000000,0.250000,0,0);}
.m5e_c01464{transform:matrix(3.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.332500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01464{transform:matrix(3.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.372500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01464{transform:matrix(3.675000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.675000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.675000,0.000000,0.000000,0.250000,0,0);}
.m24_c01464{transform:matrix(3.992500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.992500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.992500,0.000000,0.000000,0.250000,0,0);}
.m83_c01464{transform:matrix(5.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.400000,0.000000,0.000000,0.250000,0,0);}
.v0_c01464{vertical-align:0.000000px;}
.v1_c01464{vertical-align:2.880000px;}
.v2_c01464{vertical-align:8.640000px;}
.ls2_c01464{letter-spacing:0.000000px;}
.ls1_c01464{letter-spacing:215.196240px;}
.ls0_c01464{letter-spacing:665.814960px;}
.sc__c01464{text-shadow:none;}
.sc0_c01464{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01464{-webkit-text-stroke:0px transparent;}
.sc0_c01464{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c01464{word-spacing:-1.098000px;}
.wsf_c01464{word-spacing:0.000000px;}
.ws0_c01464{word-spacing:2.725459px;}
.ws2_c01464{word-spacing:5.125404px;}
.ws9_c01464{word-spacing:5.125440px;}
.wse_c01464{word-spacing:16.380960px;}
.ws8_c01464{word-spacing:48.504000px;}
.ws6_c01464{word-spacing:102.504000px;}
.ws7_c01464{word-spacing:144.498000px;}
.wsd_c01464{word-spacing:160.025280px;}
.ws3_c01464{word-spacing:182.384888px;}
.wsc_c01464{word-spacing:233.461200px;}
.ws1_c01464{word-spacing:263.542507px;}
.wsa_c01464{word-spacing:264.510000px;}
.ws4_c01464{word-spacing:294.408240px;}
.ws5_c01464{word-spacing:404.933931px;}
._0_c01464{width:6.980242px;}
.fc0_c01464{color:transparent;}
.fs9_c01464{font-size:2.880000px;}
.fs8_c01464{font-size:5.760000px;}
.fsb_c01464{font-size:6.000000px;}
.fs7_c01464{font-size:8.640000px;}
.fs17_c01464{font-size:11.520000px;}
.fsf_c01464{font-size:14.400000px;}
.fs11_c01464{font-size:17.280000px;}
.fs16_c01464{font-size:20.160000px;}
.fs10_c01464{font-size:23.040000px;}
.fs12_c01464{font-size:25.920000px;}
.fs28_c01464{font-size:28.800000px;}
.fsc_c01464{font-size:31.680000px;}
.fse_c01464{font-size:34.560000px;}
.fsd_c01464{font-size:40.320000px;}
.fs3_c01464{font-size:43.200000px;}
.fs1_c01464{font-size:46.080000px;}
.fs0_c01464{font-size:48.960000px;}
.fs4_c01464{font-size:51.840000px;}
.fs6_c01464{font-size:54.720000px;}
.fs5_c01464{font-size:57.600000px;}
.fsa_c01464{font-size:60.480000px;}
.fs2_c01464{font-size:63.360000px;}
.fs14_c01464{font-size:66.240000px;}
.fs18_c01464{font-size:69.120000px;}
.fs27_c01464{font-size:72.000000px;}
.fs1d_c01464{font-size:74.880000px;}
.fs2b_c01464{font-size:77.760000px;}
.fs25_c01464{font-size:80.640000px;}
.fs13_c01464{font-size:86.400000px;}
.fs15_c01464{font-size:100.800000px;}
.fs26_c01464{font-size:103.680000px;}
.fs1b_c01464{font-size:106.560000px;}
.fs2a_c01464{font-size:135.360000px;}
.fs24_c01464{font-size:138.240000px;}
.fs1f_c01464{font-size:146.880000px;}
.fs22_c01464{font-size:149.760000px;}
.fs35_c01464{font-size:152.640000px;}
.fs19_c01464{font-size:155.520000px;}
.fs1e_c01464{font-size:164.160000px;}
.fs21_c01464{font-size:169.920000px;}
.fs1c_c01464{font-size:178.560000px;}
.fs1a_c01464{font-size:181.440000px;}
.fs36_c01464{font-size:195.840000px;}
.fs2e_c01464{font-size:207.360000px;}
.fs33_c01464{font-size:218.880000px;}
.fs30_c01464{font-size:224.640000px;}
.fs31_c01464{font-size:236.160000px;}
.fs32_c01464{font-size:244.800000px;}
.fs2f_c01464{font-size:247.680000px;}
.fs2c_c01464{font-size:250.560000px;}
.fs2d_c01464{font-size:253.440000px;}
.fs34_c01464{font-size:276.480000px;}
.fs20_c01464{font-size:316.800000px;}
.fs23_c01464{font-size:325.440000px;}
.fs29_c01464{font-size:342.720000px;}
.y0_c01464{bottom:0.000000px;}
.y45_c01464{bottom:15.840000px;}
.y43_c01464{bottom:16.560000px;}
.y44_c01464{bottom:18.720000px;}
.y41_c01464{bottom:22.320000px;}
.y42_c01464{bottom:23.760000px;}
.y40_c01464{bottom:29.520000px;}
.y3f_c01464{bottom:30.960000px;}
.y3d_c01464{bottom:49.680000px;}
.y3e_c01464{bottom:51.840000px;}
.yf2_c01464{bottom:82.080000px;}
.y91_c01464{bottom:85.680000px;}
.y8f_c01464{bottom:86.400000px;}
.y90_c01464{bottom:87.120000px;}
.yea_c01464{bottom:90.720000px;}
.ye8_c01464{bottom:92.160000px;}
.yeb_c01464{bottom:92.880000px;}
.ye9_c01464{bottom:94.320000px;}
.ye6_c01464{bottom:95.040000px;}
.ye7_c01464{bottom:95.760000px;}
.ye5_c01464{bottom:108.000000px;}
.yd0_c01464{bottom:111.600000px;}
.yd6_c01464{bottom:113.760000px;}
.ye1_c01464{bottom:114.480000px;}
.ye0_c01464{bottom:118.800000px;}
.ydd_c01464{bottom:120.240000px;}
.ydb_c01464{bottom:120.960000px;}
.yd9_c01464{bottom:121.680000px;}
.ydc_c01464{bottom:122.400000px;}
.yd8_c01464{bottom:123.120000px;}
.ydf_c01464{bottom:123.840000px;}
.yde_c01464{bottom:164.880000px;}
.ye4_c01464{bottom:166.320000px;}
.ye2_c01464{bottom:168.480000px;}
.ye3_c01464{bottom:169.200000px;}
.yd7_c01464{bottom:172.080000px;}
.yda_c01464{bottom:172.800000px;}
.yd1_c01464{bottom:180.000000px;}
.yd2_c01464{bottom:187.920000px;}
.yd4_c01464{bottom:188.640000px;}
.yce_c01464{bottom:189.360000px;}
.yd3_c01464{bottom:192.960000px;}
.yd5_c01464{bottom:193.680000px;}
.ycf_c01464{bottom:194.400000px;}
.ycd_c01464{bottom:195.120000px;}
.ycc_c01464{bottom:195.840000px;}
.ycb_c01464{bottom:196.560000px;}
.yca_c01464{bottom:198.000000px;}
.yc9_c01464{bottom:211.680000px;}
.yc8_c01464{bottom:213.120000px;}
.yc6_c01464{bottom:216.720000px;}
.yc5_c01464{bottom:218.160000px;}
.yc7_c01464{bottom:219.600000px;}
.yc4_c01464{bottom:220.320000px;}
.yc2_c01464{bottom:221.040000px;}
.yc3_c01464{bottom:222.480000px;}
.yc1_c01464{bottom:223.920000px;}
.y3a_c01464{bottom:224.640000px;}
.yc0_c01464{bottom:240.480000px;}
.ybb_c01464{bottom:242.640000px;}
.ybe_c01464{bottom:244.080000px;}
.ybf_c01464{bottom:244.800000px;}
.y3b_c01464{bottom:246.960000px;}
.y3c_c01464{bottom:247.680000px;}
.ybd_c01464{bottom:248.400000px;}
.ybc_c01464{bottom:249.120000px;}
.yba_c01464{bottom:250.560000px;}
.yb5_c01464{bottom:258.480000px;}
.y51_c01464{bottom:267.840000px;}
.yb7_c01464{bottom:268.560000px;}
.yb8_c01464{bottom:269.280000px;}
.y50_c01464{bottom:270.000000px;}
.yb9_c01464{bottom:271.440000px;}
.y72_c01464{bottom:272.160000px;}
.yf0_c01464{bottom:272.880000px;}
.y71_c01464{bottom:274.320000px;}
.yef_c01464{bottom:275.760000px;}
.y7d_c01464{bottom:276.480000px;}
.yb1_c01464{bottom:283.680000px;}
.y7c_c01464{bottom:292.320000px;}
.yb0_c01464{bottom:295.200000px;}
.yb6_c01464{bottom:295.920000px;}
.y94_c01464{bottom:298.080000px;}
.y7b_c01464{bottom:298.800000px;}
.yb2_c01464{bottom:299.520000px;}
.y4f_c01464{bottom:300.240000px;}
.y70_c01464{bottom:300.960000px;}
.yee_c01464{bottom:316.080000px;}
.y6c_c01464{bottom:317.520000px;}
.y6d_c01464{bottom:318.960000px;}
.y6e_c01464{bottom:320.400000px;}
.y6f_c01464{bottom:321.120000px;}
.yb3_c01464{bottom:321.840000px;}
.yb4_c01464{bottom:323.280000px;}
.y7a_c01464{bottom:325.440000px;}
.y4e_c01464{bottom:326.160000px;}
.y6b_c01464{bottom:326.880000px;}
.yed_c01464{bottom:328.320000px;}
.yaf_c01464{bottom:336.960000px;}
.yad_c01464{bottom:347.040000px;}
.y95_c01464{bottom:349.920000px;}
.y4d_c01464{bottom:351.360000px;}
.y79_c01464{bottom:352.800000px;}
.yec_c01464{bottom:353.520000px;}
.y34_c01464{bottom:359.280000px;}
.y69_c01464{bottom:369.360000px;}
.y6a_c01464{bottom:372.240000px;}
.yac_c01464{bottom:372.960000px;}
.yae_c01464{bottom:374.400000px;}
.y92_c01464{bottom:375.840000px;}
.y68_c01464{bottom:376.560000px;}
.y4c_c01464{bottom:377.280000px;}
.y78_c01464{bottom:378.000000px;}
.y39_c01464{bottom:380.160000px;}
.y8e_c01464{bottom:393.120000px;}
.y5e_c01464{bottom:395.280000px;}
.y5f_c01464{bottom:396.720000px;}
.y61_c01464{bottom:398.160000px;}
.y60_c01464{bottom:398.880000px;}
.ya4_c01464{bottom:403.200000px;}
.y77_c01464{bottom:403.920000px;}
.y4b_c01464{bottom:404.640000px;}
.y38_c01464{bottom:405.360000px;}
.yaa_c01464{bottom:412.560000px;}
.y93_c01464{bottom:420.480000px;}
.y5c_c01464{bottom:421.200000px;}
.y5a_c01464{bottom:423.360000px;}
.y5b_c01464{bottom:424.080000px;}
.y5d_c01464{bottom:424.800000px;}
.yab_c01464{bottom:425.520000px;}
.y76_c01464{bottom:429.840000px;}
.y67_c01464{bottom:430.560000px;}
.y37_c01464{bottom:432.000000px;}
.ya9_c01464{bottom:452.160000px;}
.ya8_c01464{bottom:452.880000px;}
.y82_c01464{bottom:453.600000px;}
.y66_c01464{bottom:454.320000px;}
.yf1_c01464{bottom:455.040000px;}
.y59_c01464{bottom:455.760000px;}
.y87_c01464{bottom:456.480000px;}
.y4a_c01464{bottom:457.920000px;}
.y36_c01464{bottom:458.640000px;}
.ya6_c01464{bottom:476.640000px;}
.ya5_c01464{bottom:478.080000px;}
.ya7_c01464{bottom:478.800000px;}
.y65_c01464{bottom:481.680000px;}
.y33_c01464{bottom:482.400000px;}
.y57_c01464{bottom:498.960000px;}
.y58_c01464{bottom:500.400000px;}
.y8d_c01464{bottom:501.840000px;}
.ya2_c01464{bottom:502.560000px;}
.ya3_c01464{bottom:504.000000px;}
.y8c_c01464{bottom:505.440000px;}
.y75_c01464{bottom:506.160000px;}
.y49_c01464{bottom:509.760000px;}
.y32_c01464{bottom:510.480000px;}
.y54_c01464{bottom:524.880000px;}
.y9e_c01464{bottom:527.040000px;}
.y56_c01464{bottom:527.760000px;}
.y55_c01464{bottom:528.480000px;}
.ya0_c01464{bottom:529.200000px;}
.ya1_c01464{bottom:529.920000px;}
.y9d_c01464{bottom:531.360000px;}
.y74_c01464{bottom:532.800000px;}
.y48_c01464{bottom:533.520000px;}
.y46_c01464{bottom:534.240000px;}
.y53_c01464{bottom:535.680000px;}
.y31_c01464{bottom:536.400000px;}
.y30_c01464{bottom:537.120000px;}
.y9f_c01464{bottom:555.120000px;}
.y86_c01464{bottom:558.000000px;}
.y64_c01464{bottom:558.720000px;}
.y2f_c01464{bottom:559.440000px;}
.y47_c01464{bottom:560.160000px;}
.y52_c01464{bottom:560.880000px;}
.y9c_c01464{bottom:581.040000px;}
.y9a_c01464{bottom:583.200000px;}
.y85_c01464{bottom:584.640000px;}
.y2c_c01464{bottom:585.360000px;}
.y9b_c01464{bottom:586.080000px;}
.y81_c01464{bottom:586.800000px;}
.y63_c01464{bottom:587.520000px;}
.y2b_c01464{bottom:588.240000px;}
.y2a_c01464{bottom:588.960000px;}
.y29_c01464{bottom:605.520000px;}
.y27_c01464{bottom:606.240000px;}
.y28_c01464{bottom:606.960000px;}
.y8b_c01464{bottom:609.120000px;}
.y89_c01464{bottom:609.840000px;}
.y80_c01464{bottom:610.560000px;}
.y62_c01464{bottom:611.280000px;}
.y25_c01464{bottom:612.000000px;}
.y84_c01464{bottom:612.720000px;}
.y26_c01464{bottom:613.440000px;}
.y2e_c01464{bottom:614.160000px;}
.y24_c01464{bottom:631.440000px;}
.y22_c01464{bottom:632.160000px;}
.y23_c01464{bottom:632.880000px;}
.y99_c01464{bottom:633.600000px;}
.y7f_c01464{bottom:635.760000px;}
.y21_c01464{bottom:636.480000px;}
.y88_c01464{bottom:637.200000px;}
.y73_c01464{bottom:638.640000px;}
.y20_c01464{bottom:639.360000px;}
.y2d_c01464{bottom:651.600000px;}
.y1d_c01464{bottom:657.360000px;}
.y1f_c01464{bottom:658.080000px;}
.y1e_c01464{bottom:658.800000px;}
.y98_c01464{bottom:659.520000px;}
.y7e_c01464{bottom:661.680000px;}
.y1c_c01464{bottom:662.400000px;}
.y1b_c01464{bottom:663.120000px;}
.y83_c01464{bottom:664.560000px;}
.y1a_c01464{bottom:665.280000px;}
.y18_c01464{bottom:683.280000px;}
.y19_c01464{bottom:684.000000px;}
.y97_c01464{bottom:684.720000px;}
.y16_c01464{bottom:688.320000px;}
.y15_c01464{bottom:689.040000px;}
.y17_c01464{bottom:689.760000px;}
.y14_c01464{bottom:691.200000px;}
.y35_c01464{bottom:693.360000px;}
.y12_c01464{bottom:709.200000px;}
.y13_c01464{bottom:709.920000px;}
.y8a_c01464{bottom:710.640000px;}
.y96_c01464{bottom:711.360000px;}
.y11_c01464{bottom:713.520000px;}
.yd_c01464{bottom:714.240000px;}
.yc_c01464{bottom:714.960000px;}
.yf_c01464{bottom:715.680000px;}
.ye_c01464{bottom:716.400000px;}
.yb_c01464{bottom:717.120000px;}
.ya_c01464{bottom:718.560000px;}
.y10_c01464{bottom:719.280000px;}
.y9_c01464{bottom:744.480000px;}
.y7_c01464{bottom:745.200000px;}
.y8_c01464{bottom:745.920000px;}
.y6_c01464{bottom:747.360000px;}
.y5_c01464{bottom:748.080000px;}
.y4_c01464{bottom:748.800000px;}
.y3_c01464{bottom:799.200000px;}
.y1_c01464{bottom:801.360000px;}
.y2_c01464{bottom:802.800000px;}
.hb_c01464{height:2.591719px;}
.ha_c01464{height:5.183438px;}
.hd_c01464{height:5.399414px;}
.h9_c01464{height:7.775156px;}
.h19_c01464{height:8.279414px;}
.h1b_c01464{height:10.366875px;}
.h11_c01464{height:12.958594px;}
.h13_c01464{height:15.550313px;}
.h1a_c01464{height:18.142031px;}
.h12_c01464{height:20.733750px;}
.h14_c01464{height:23.325469px;}
.h2c_c01464{height:25.917187px;}
.he_c01464{height:28.508906px;}
.h10_c01464{height:31.100625px;}
.hf_c01464{height:36.284062px;}
.h5_c01464{height:38.875781px;}
.h3_c01464{height:41.467500px;}
.h2_c01464{height:44.059219px;}
.h6_c01464{height:46.650937px;}
.h8_c01464{height:49.242656px;}
.h15_c01464{height:49.530938px;}
.h7_c01464{height:51.834375px;}
.hc_c01464{height:54.426094px;}
.h2d_c01464{height:55.290937px;}
.h4_c01464{height:57.017812px;}
.h17_c01464{height:59.609531px;}
.h1c_c01464{height:62.201250px;}
.h2b_c01464{height:64.792969px;}
.h21_c01464{height:67.384687px;}
.h30_c01464{height:69.976406px;}
.h29_c01464{height:72.568125px;}
.h16_c01464{height:77.751563px;}
.h18_c01464{height:90.710156px;}
.h2a_c01464{height:93.301875px;}
.h1f_c01464{height:95.893594px;}
.h2f_c01464{height:121.810781px;}
.h28_c01464{height:124.402500px;}
.h23_c01464{height:132.177656px;}
.h26_c01464{height:134.769375px;}
.h3a_c01464{height:137.361094px;}
.h1d_c01464{height:139.952812px;}
.h22_c01464{height:147.727969px;}
.h25_c01464{height:152.911406px;}
.h20_c01464{height:160.686563px;}
.h1e_c01464{height:163.278281px;}
.h3b_c01464{height:176.236875px;}
.h33_c01464{height:186.603750px;}
.h38_c01464{height:196.970625px;}
.h35_c01464{height:202.154062px;}
.h36_c01464{height:212.520938px;}
.h37_c01464{height:220.296094px;}
.h34_c01464{height:222.887812px;}
.h31_c01464{height:225.479531px;}
.h32_c01464{height:228.071250px;}
.h39_c01464{height:248.805000px;}
.h24_c01464{height:285.089062px;}
.h27_c01464{height:292.864219px;}
.h2e_c01464{height:308.414531px;}
.h0_c01464{height:887.760000px;}
.h1_c01464{height:888.000000px;}
.w0_c01464{width:1355.040000px;}
.w1_c01464{width:1355.250000px;}
.x0_c01464{left:0.000000px;}
.x49_c01464{left:1.440000px;}
.x4b_c01464{left:4.320000px;}
.x4c_c01464{left:7.920000px;}
.x4e_c01464{left:13.680000px;}
.x4f_c01464{left:15.120000px;}
.x4a_c01464{left:17.280000px;}
.x4d_c01464{left:18.720000px;}
.x46_c01464{left:29.520000px;}
.x10_c01464{left:30.960000px;}
.xc9_c01464{left:41.040000px;}
.x44_c01464{left:51.840000px;}
.x45_c01464{left:62.640000px;}
.xe5_c01464{left:66.960000px;}
.x47_c01464{left:73.440000px;}
.x11_c01464{left:75.600000px;}
.x43_c01464{left:84.240000px;}
.x42_c01464{left:85.680000px;}
.x3d_c01464{left:88.560000px;}
.xc8_c01464{left:123.840000px;}
.xe6_c01464{left:125.280000px;}
.xd6_c01464{left:129.600000px;}
.x3e_c01464{left:131.760000px;}
.xe7_c01464{left:136.080000px;}
.xca_c01464{left:137.520000px;}
.x3c_c01464{left:140.400000px;}
.x48_c01464{left:149.040000px;}
.x30_c01464{left:151.200000px;}
.x50_c01464{left:160.560000px;}
.x4_c01464{left:162.000000px;}
.xd7_c01464{left:169.200000px;}
.xe1_c01464{left:170.640000px;}
.x33_c01464{left:192.240000px;}
.x3f_c01464{left:195.840000px;}
.x37_c01464{left:199.440000px;}
.x40_c01464{left:200.880000px;}
.x1_c01464{left:205.200000px;}
.x53_c01464{left:209.520000px;}
.x23_c01464{left:221.760000px;}
.xcb_c01464{left:225.360000px;}
.x52_c01464{left:236.160000px;}
.x21_c01464{left:237.600000px;}
.x38_c01464{left:242.640000px;}
.x39_c01464{left:244.800000px;}
.x51_c01464{left:246.240000px;}
.x5_c01464{left:248.400000px;}
.xd8_c01464{left:257.040000px;}
.x34_c01464{left:259.200000px;}
.xe2_c01464{left:267.840000px;}
.x54_c01464{left:288.000000px;}
.x5e_c01464{left:290.160000px;}
.x2_c01464{left:292.320000px;}
.x19_c01464{left:293.760000px;}
.x68_c01464{left:295.920000px;}
.x24_c01464{left:298.080000px;}
.x62_c01464{left:302.400000px;}
.x63_c01464{left:307.440000px;}
.xcc_c01464{left:312.480000px;}
.x22_c01464{left:314.640000px;}
.x25_c01464{left:316.080000px;}
.x35_c01464{left:317.520000px;}
.x64_c01464{left:319.680000px;}
.x66_c01464{left:323.280000px;}
.xe_c01464{left:324.720000px;}
.x57_c01464{left:326.160000px;}
.x58_c01464{left:330.480000px;}
.x26_c01464{left:334.800000px;}
.x36_c01464{left:342.000000px;}
.x59_c01464{left:343.440000px;}
.x27_c01464{left:347.760000px;}
.xd9_c01464{left:356.400000px;}
.x5a_c01464{left:366.480000px;}
.x3_c01464{left:370.800000px;}
.x56_c01464{left:373.680000px;}
.x65_c01464{left:375.840000px;}
.xe3_c01464{left:377.280000px;}
.x28_c01464{left:380.880000px;}
.xda_c01464{left:386.640000px;}
.x69_c01464{left:395.280000px;}
.xcd_c01464{left:398.880000px;}
.x41_c01464{left:401.040000px;}
.x29_c01464{left:403.920000px;}
.x1a_c01464{left:406.080000px;}
.x6_c01464{left:410.400000px;}
.x12_c01464{left:411.840000px;}
.x2a_c01464{left:419.040000px;}
.x67_c01464{left:420.480000px;}
.x31_c01464{left:421.920000px;}
.x3a_c01464{left:425.520000px;}
.x3b_c01464{left:428.400000px;}
.x5b_c01464{left:429.840000px;}
.x5c_c01464{left:440.640000px;}
.x5d_c01464{left:444.960000px;}
.x2b_c01464{left:447.120000px;}
.xe4_c01464{left:451.440000px;}
.x6a_c01464{left:453.600000px;}
.x2c_c01464{left:462.960000px;}
.x5f_c01464{left:464.400000px;}
.x55_c01464{left:466.560000px;}
.xce_c01464{left:475.920000px;}
.xc1_c01464{left:480.240000px;}
.x13_c01464{left:486.720000px;}
.x60_c01464{left:488.160000px;}
.x7_c01464{left:496.800000px;}
.x61_c01464{left:498.240000px;}
.x14_c01464{left:519.840000px;}
.x85_c01464{left:549.360000px;}
.x86_c01464{left:559.440000px;}
.x87_c01464{left:561.600000px;}
.x88_c01464{left:566.640000px;}
.xdb_c01464{left:570.960000px;}
.xcf_c01464{left:572.400000px;}
.x6b_c01464{left:574.560000px;}
.x2d_c01464{left:580.320000px;}
.x89_c01464{left:582.480000px;}
.x6d_c01464{left:583.920000px;}
.x8_c01464{left:585.360000px;}
.x1b_c01464{left:592.560000px;}
.x6c_c01464{left:594.720000px;}
.x32_c01464{left:596.160000px;}
.x1c_c01464{left:613.440000px;}
.x8a_c01464{left:623.520000px;}
.xd0_c01464{left:624.960000px;}
.x6e_c01464{left:631.440000px;}
.x8b_c01464{left:636.480000px;}
.x2e_c01464{left:658.080000px;}
.x1d_c01464{left:659.520000px;}
.x9_c01464{left:671.760000px;}
.x1e_c01464{left:674.640000px;}
.x6f_c01464{left:681.120000px;}
.x82_c01464{left:682.560000px;}
.x2f_c01464{left:684.720000px;}
.x8c_c01464{left:686.160000px;}
.x8d_c01464{left:695.520000px;}
.x15_c01464{left:702.000000px;}
.x83_c01464{left:714.960000px;}
.x1f_c01464{left:719.280000px;}
.x20_c01464{left:721.440000px;}
.xa_c01464{left:745.200000px;}
.xbd_c01464{left:749.520000px;}
.x16_c01464{left:756.000000px;}
.x70_c01464{left:757.440000px;}
.x17_c01464{left:777.600000px;}
.x8e_c01464{left:782.640000px;}
.xdc_c01464{left:786.960000px;}
.x90_c01464{left:806.400000px;}
.xdd_c01464{left:808.560000px;}
.x84_c01464{left:817.920000px;}
.xd1_c01464{left:830.160000px;}
.xb_c01464{left:833.040000px;}
.xc2_c01464{left:840.960000px;}
.x18_c01464{left:842.400000px;}
.x71_c01464{left:843.840000px;}
.xde_c01464{left:853.200000px;}
.xd2_c01464{left:884.160000px;}
.x91_c01464{left:887.760000px;}
.x7e_c01464{left:892.800000px;}
.x78_c01464{left:900.720000px;}
.xdf_c01464{left:905.760000px;}
.x94_c01464{left:911.520000px;}
.x95_c01464{left:914.400000px;}
.xb2_c01464{left:918.000000px;}
.x96_c01464{left:919.440000px;}
.x72_c01464{left:928.800000px;}
.x76_c01464{left:930.960000px;}
.x92_c01464{left:933.840000px;}
.x79_c01464{left:936.720000px;}
.x8f_c01464{left:939.600000px;}
.x7b_c01464{left:941.760000px;}
.xb7_c01464{left:948.960000px;}
.x7f_c01464{left:951.840000px;}
.x93_c01464{left:956.880000px;}
.x73_c01464{left:961.200000px;}
.xbe_c01464{left:965.520000px;}
.x80_c01464{left:966.960000px;}
.x97_c01464{left:968.400000px;}
.xb8_c01464{left:973.440000px;}
.x81_c01464{left:977.040000px;}
.x98_c01464{left:985.680000px;}
.x77_c01464{left:1000.080000px;}
.x7c_c01464{left:1005.840000px;}
.xc3_c01464{left:1010.880000px;}
.x74_c01464{left:1012.320000px;}
.x7d_c01464{left:1015.920000px;}
.x7a_c01464{left:1018.080000px;}
.x75_c01464{left:1036.800000px;}
.xd3_c01464{left:1060.560000px;}
.xc5_c01464{left:1062.720000px;}
.xaa_c01464{left:1065.600000px;}
.xa7_c01464{left:1067.040000px;}
.xe0_c01464{left:1071.360000px;}
.xb3_c01464{left:1084.320000px;}
.xb9_c01464{left:1086.480000px;}
.xb4_c01464{left:1091.520000px;}
.xa0_c01464{left:1093.680000px;}
.xc6_c01464{left:1095.840000px;}
.xa8_c01464{left:1099.440000px;}
.xc_c01464{left:1104.480000px;}
.xe8_c01464{left:1119.600000px;}
.xb5_c01464{left:1121.760000px;}
.xe9_c01464{left:1133.280000px;}
.xea_c01464{left:1136.880000px;}
.xa1_c01464{left:1144.800000px;}
.x9d_c01464{left:1149.120000px;}
.x9f_c01464{left:1153.440000px;}
.x99_c01464{left:1156.320000px;}
.xf_c01464{left:1157.760000px;}
.xa4_c01464{left:1163.520000px;}
.xd4_c01464{left:1167.840000px;}
.x9b_c01464{left:1170.000000px;}
.xa2_c01464{left:1175.760000px;}
.xc4_c01464{left:1178.640000px;}
.x9a_c01464{left:1180.080000px;}
.xa3_c01464{left:1194.480000px;}
.xab_c01464{left:1198.800000px;}
.xba_c01464{left:1203.120000px;}
.xb0_c01464{left:1222.560000px;}
.xa5_c01464{left:1224.720000px;}
.xb6_c01464{left:1226.880000px;}
.xa9_c01464{left:1229.040000px;}
.xbb_c01464{left:1231.200000px;}
.x9c_c01464{left:1234.080000px;}
.x9e_c01464{left:1235.520000px;}
.xaf_c01464{left:1236.960000px;}
.xbc_c01464{left:1242.720000px;}
.xd_c01464{left:1244.160000px;}
.xa6_c01464{left:1245.600000px;}
.xb1_c01464{left:1252.800000px;}
.xac_c01464{left:1254.960000px;}
.xbf_c01464{left:1276.560000px;}
.xad_c01464{left:1278.720000px;}
.xc0_c01464{left:1283.760000px;}
.xae_c01464{left:1287.360000px;}
.xd5_c01464{left:1293.840000px;}
.xc7_c01464{left:1332.720000px;}
@media print{
.v0_c01464{vertical-align:0.000000pt;}
.v1_c01464{vertical-align:2.560000pt;}
.v2_c01464{vertical-align:7.680000pt;}
.ls2_c01464{letter-spacing:0.000000pt;}
.ls1_c01464{letter-spacing:191.285547pt;}
.ls0_c01464{letter-spacing:591.835520pt;}
.wsb_c01464{word-spacing:-0.976000pt;}
.wsf_c01464{word-spacing:0.000000pt;}
.ws0_c01464{word-spacing:2.422630pt;}
.ws2_c01464{word-spacing:4.555914pt;}
.ws9_c01464{word-spacing:4.555947pt;}
.wse_c01464{word-spacing:14.560853pt;}
.ws8_c01464{word-spacing:43.114667pt;}
.ws6_c01464{word-spacing:91.114667pt;}
.ws7_c01464{word-spacing:128.442667pt;}
.wsd_c01464{word-spacing:142.244693pt;}
.ws3_c01464{word-spacing:162.119900pt;}
.wsc_c01464{word-spacing:207.521067pt;}
.ws1_c01464{word-spacing:234.260006pt;}
.wsa_c01464{word-spacing:235.120000pt;}
.ws4_c01464{word-spacing:261.696213pt;}
.ws5_c01464{word-spacing:359.941272pt;}
._0_c01464{width:6.204659pt;}
.fs9_c01464{font-size:2.560000pt;}
.fs8_c01464{font-size:5.120000pt;}
.fsb_c01464{font-size:5.333333pt;}
.fs7_c01464{font-size:7.680000pt;}
.fs17_c01464{font-size:10.240000pt;}
.fsf_c01464{font-size:12.800000pt;}
.fs11_c01464{font-size:15.360000pt;}
.fs16_c01464{font-size:17.920000pt;}
.fs10_c01464{font-size:20.480000pt;}
.fs12_c01464{font-size:23.040000pt;}
.fs28_c01464{font-size:25.600000pt;}
.fsc_c01464{font-size:28.160000pt;}
.fse_c01464{font-size:30.720000pt;}
.fsd_c01464{font-size:35.840000pt;}
.fs3_c01464{font-size:38.400000pt;}
.fs1_c01464{font-size:40.960000pt;}
.fs0_c01464{font-size:43.520000pt;}
.fs4_c01464{font-size:46.080000pt;}
.fs6_c01464{font-size:48.640000pt;}
.fs5_c01464{font-size:51.200000pt;}
.fsa_c01464{font-size:53.760000pt;}
.fs2_c01464{font-size:56.320000pt;}
.fs14_c01464{font-size:58.880000pt;}
.fs18_c01464{font-size:61.440000pt;}
.fs27_c01464{font-size:64.000000pt;}
.fs1d_c01464{font-size:66.560000pt;}
.fs2b_c01464{font-size:69.120000pt;}
.fs25_c01464{font-size:71.680000pt;}
.fs13_c01464{font-size:76.800000pt;}
.fs15_c01464{font-size:89.600000pt;}
.fs26_c01464{font-size:92.160000pt;}
.fs1b_c01464{font-size:94.720000pt;}
.fs2a_c01464{font-size:120.320000pt;}
.fs24_c01464{font-size:122.880000pt;}
.fs1f_c01464{font-size:130.560000pt;}
.fs22_c01464{font-size:133.120000pt;}
.fs35_c01464{font-size:135.680000pt;}
.fs19_c01464{font-size:138.240000pt;}
.fs1e_c01464{font-size:145.920000pt;}
.fs21_c01464{font-size:151.040000pt;}
.fs1c_c01464{font-size:158.720000pt;}
.fs1a_c01464{font-size:161.280000pt;}
.fs36_c01464{font-size:174.080000pt;}
.fs2e_c01464{font-size:184.320000pt;}
.fs33_c01464{font-size:194.560000pt;}
.fs30_c01464{font-size:199.680000pt;}
.fs31_c01464{font-size:209.920000pt;}
.fs32_c01464{font-size:217.600000pt;}
.fs2f_c01464{font-size:220.160000pt;}
.fs2c_c01464{font-size:222.720000pt;}
.fs2d_c01464{font-size:225.280000pt;}
.fs34_c01464{font-size:245.760000pt;}
.fs20_c01464{font-size:281.600000pt;}
.fs23_c01464{font-size:289.280000pt;}
.fs29_c01464{font-size:304.640000pt;}
.y0_c01464{bottom:0.000000pt;}
.y45_c01464{bottom:14.080000pt;}
.y43_c01464{bottom:14.720000pt;}
.y44_c01464{bottom:16.640000pt;}
.y41_c01464{bottom:19.840000pt;}
.y42_c01464{bottom:21.120000pt;}
.y40_c01464{bottom:26.240000pt;}
.y3f_c01464{bottom:27.520000pt;}
.y3d_c01464{bottom:44.160000pt;}
.y3e_c01464{bottom:46.080000pt;}
.yf2_c01464{bottom:72.960000pt;}
.y91_c01464{bottom:76.160000pt;}
.y8f_c01464{bottom:76.800000pt;}
.y90_c01464{bottom:77.440000pt;}
.yea_c01464{bottom:80.640000pt;}
.ye8_c01464{bottom:81.920000pt;}
.yeb_c01464{bottom:82.560000pt;}
.ye9_c01464{bottom:83.840000pt;}
.ye6_c01464{bottom:84.480000pt;}
.ye7_c01464{bottom:85.120000pt;}
.ye5_c01464{bottom:96.000000pt;}
.yd0_c01464{bottom:99.200000pt;}
.yd6_c01464{bottom:101.120000pt;}
.ye1_c01464{bottom:101.760000pt;}
.ye0_c01464{bottom:105.600000pt;}
.ydd_c01464{bottom:106.880000pt;}
.ydb_c01464{bottom:107.520000pt;}
.yd9_c01464{bottom:108.160000pt;}
.ydc_c01464{bottom:108.800000pt;}
.yd8_c01464{bottom:109.440000pt;}
.ydf_c01464{bottom:110.080000pt;}
.yde_c01464{bottom:146.560000pt;}
.ye4_c01464{bottom:147.840000pt;}
.ye2_c01464{bottom:149.760000pt;}
.ye3_c01464{bottom:150.400000pt;}
.yd7_c01464{bottom:152.960000pt;}
.yda_c01464{bottom:153.600000pt;}
.yd1_c01464{bottom:160.000000pt;}
.yd2_c01464{bottom:167.040000pt;}
.yd4_c01464{bottom:167.680000pt;}
.yce_c01464{bottom:168.320000pt;}
.yd3_c01464{bottom:171.520000pt;}
.yd5_c01464{bottom:172.160000pt;}
.ycf_c01464{bottom:172.800000pt;}
.ycd_c01464{bottom:173.440000pt;}
.ycc_c01464{bottom:174.080000pt;}
.ycb_c01464{bottom:174.720000pt;}
.yca_c01464{bottom:176.000000pt;}
.yc9_c01464{bottom:188.160000pt;}
.yc8_c01464{bottom:189.440000pt;}
.yc6_c01464{bottom:192.640000pt;}
.yc5_c01464{bottom:193.920000pt;}
.yc7_c01464{bottom:195.200000pt;}
.yc4_c01464{bottom:195.840000pt;}
.yc2_c01464{bottom:196.480000pt;}
.yc3_c01464{bottom:197.760000pt;}
.yc1_c01464{bottom:199.040000pt;}
.y3a_c01464{bottom:199.680000pt;}
.yc0_c01464{bottom:213.760000pt;}
.ybb_c01464{bottom:215.680000pt;}
.ybe_c01464{bottom:216.960000pt;}
.ybf_c01464{bottom:217.600000pt;}
.y3b_c01464{bottom:219.520000pt;}
.y3c_c01464{bottom:220.160000pt;}
.ybd_c01464{bottom:220.800000pt;}
.ybc_c01464{bottom:221.440000pt;}
.yba_c01464{bottom:222.720000pt;}
.yb5_c01464{bottom:229.760000pt;}
.y51_c01464{bottom:238.080000pt;}
.yb7_c01464{bottom:238.720000pt;}
.yb8_c01464{bottom:239.360000pt;}
.y50_c01464{bottom:240.000000pt;}
.yb9_c01464{bottom:241.280000pt;}
.y72_c01464{bottom:241.920000pt;}
.yf0_c01464{bottom:242.560000pt;}
.y71_c01464{bottom:243.840000pt;}
.yef_c01464{bottom:245.120000pt;}
.y7d_c01464{bottom:245.760000pt;}
.yb1_c01464{bottom:252.160000pt;}
.y7c_c01464{bottom:259.840000pt;}
.yb0_c01464{bottom:262.400000pt;}
.yb6_c01464{bottom:263.040000pt;}
.y94_c01464{bottom:264.960000pt;}
.y7b_c01464{bottom:265.600000pt;}
.yb2_c01464{bottom:266.240000pt;}
.y4f_c01464{bottom:266.880000pt;}
.y70_c01464{bottom:267.520000pt;}
.yee_c01464{bottom:280.960000pt;}
.y6c_c01464{bottom:282.240000pt;}
.y6d_c01464{bottom:283.520000pt;}
.y6e_c01464{bottom:284.800000pt;}
.y6f_c01464{bottom:285.440000pt;}
.yb3_c01464{bottom:286.080000pt;}
.yb4_c01464{bottom:287.360000pt;}
.y7a_c01464{bottom:289.280000pt;}
.y4e_c01464{bottom:289.920000pt;}
.y6b_c01464{bottom:290.560000pt;}
.yed_c01464{bottom:291.840000pt;}
.yaf_c01464{bottom:299.520000pt;}
.yad_c01464{bottom:308.480000pt;}
.y95_c01464{bottom:311.040000pt;}
.y4d_c01464{bottom:312.320000pt;}
.y79_c01464{bottom:313.600000pt;}
.yec_c01464{bottom:314.240000pt;}
.y34_c01464{bottom:319.360000pt;}
.y69_c01464{bottom:328.320000pt;}
.y6a_c01464{bottom:330.880000pt;}
.yac_c01464{bottom:331.520000pt;}
.yae_c01464{bottom:332.800000pt;}
.y92_c01464{bottom:334.080000pt;}
.y68_c01464{bottom:334.720000pt;}
.y4c_c01464{bottom:335.360000pt;}
.y78_c01464{bottom:336.000000pt;}
.y39_c01464{bottom:337.920000pt;}
.y8e_c01464{bottom:349.440000pt;}
.y5e_c01464{bottom:351.360000pt;}
.y5f_c01464{bottom:352.640000pt;}
.y61_c01464{bottom:353.920000pt;}
.y60_c01464{bottom:354.560000pt;}
.ya4_c01464{bottom:358.400000pt;}
.y77_c01464{bottom:359.040000pt;}
.y4b_c01464{bottom:359.680000pt;}
.y38_c01464{bottom:360.320000pt;}
.yaa_c01464{bottom:366.720000pt;}
.y93_c01464{bottom:373.760000pt;}
.y5c_c01464{bottom:374.400000pt;}
.y5a_c01464{bottom:376.320000pt;}
.y5b_c01464{bottom:376.960000pt;}
.y5d_c01464{bottom:377.600000pt;}
.yab_c01464{bottom:378.240000pt;}
.y76_c01464{bottom:382.080000pt;}
.y67_c01464{bottom:382.720000pt;}
.y37_c01464{bottom:384.000000pt;}
.ya9_c01464{bottom:401.920000pt;}
.ya8_c01464{bottom:402.560000pt;}
.y82_c01464{bottom:403.200000pt;}
.y66_c01464{bottom:403.840000pt;}
.yf1_c01464{bottom:404.480000pt;}
.y59_c01464{bottom:405.120000pt;}
.y87_c01464{bottom:405.760000pt;}
.y4a_c01464{bottom:407.040000pt;}
.y36_c01464{bottom:407.680000pt;}
.ya6_c01464{bottom:423.680000pt;}
.ya5_c01464{bottom:424.960000pt;}
.ya7_c01464{bottom:425.600000pt;}
.y65_c01464{bottom:428.160000pt;}
.y33_c01464{bottom:428.800000pt;}
.y57_c01464{bottom:443.520000pt;}
.y58_c01464{bottom:444.800000pt;}
.y8d_c01464{bottom:446.080000pt;}
.ya2_c01464{bottom:446.720000pt;}
.ya3_c01464{bottom:448.000000pt;}
.y8c_c01464{bottom:449.280000pt;}
.y75_c01464{bottom:449.920000pt;}
.y49_c01464{bottom:453.120000pt;}
.y32_c01464{bottom:453.760000pt;}
.y54_c01464{bottom:466.560000pt;}
.y9e_c01464{bottom:468.480000pt;}
.y56_c01464{bottom:469.120000pt;}
.y55_c01464{bottom:469.760000pt;}
.ya0_c01464{bottom:470.400000pt;}
.ya1_c01464{bottom:471.040000pt;}
.y9d_c01464{bottom:472.320000pt;}
.y74_c01464{bottom:473.600000pt;}
.y48_c01464{bottom:474.240000pt;}
.y46_c01464{bottom:474.880000pt;}
.y53_c01464{bottom:476.160000pt;}
.y31_c01464{bottom:476.800000pt;}
.y30_c01464{bottom:477.440000pt;}
.y9f_c01464{bottom:493.440000pt;}
.y86_c01464{bottom:496.000000pt;}
.y64_c01464{bottom:496.640000pt;}
.y2f_c01464{bottom:497.280000pt;}
.y47_c01464{bottom:497.920000pt;}
.y52_c01464{bottom:498.560000pt;}
.y9c_c01464{bottom:516.480000pt;}
.y9a_c01464{bottom:518.400000pt;}
.y85_c01464{bottom:519.680000pt;}
.y2c_c01464{bottom:520.320000pt;}
.y9b_c01464{bottom:520.960000pt;}
.y81_c01464{bottom:521.600000pt;}
.y63_c01464{bottom:522.240000pt;}
.y2b_c01464{bottom:522.880000pt;}
.y2a_c01464{bottom:523.520000pt;}
.y29_c01464{bottom:538.240000pt;}
.y27_c01464{bottom:538.880000pt;}
.y28_c01464{bottom:539.520000pt;}
.y8b_c01464{bottom:541.440000pt;}
.y89_c01464{bottom:542.080000pt;}
.y80_c01464{bottom:542.720000pt;}
.y62_c01464{bottom:543.360000pt;}
.y25_c01464{bottom:544.000000pt;}
.y84_c01464{bottom:544.640000pt;}
.y26_c01464{bottom:545.280000pt;}
.y2e_c01464{bottom:545.920000pt;}
.y24_c01464{bottom:561.280000pt;}
.y22_c01464{bottom:561.920000pt;}
.y23_c01464{bottom:562.560000pt;}
.y99_c01464{bottom:563.200000pt;}
.y7f_c01464{bottom:565.120000pt;}
.y21_c01464{bottom:565.760000pt;}
.y88_c01464{bottom:566.400000pt;}
.y73_c01464{bottom:567.680000pt;}
.y20_c01464{bottom:568.320000pt;}
.y2d_c01464{bottom:579.200000pt;}
.y1d_c01464{bottom:584.320000pt;}
.y1f_c01464{bottom:584.960000pt;}
.y1e_c01464{bottom:585.600000pt;}
.y98_c01464{bottom:586.240000pt;}
.y7e_c01464{bottom:588.160000pt;}
.y1c_c01464{bottom:588.800000pt;}
.y1b_c01464{bottom:589.440000pt;}
.y83_c01464{bottom:590.720000pt;}
.y1a_c01464{bottom:591.360000pt;}
.y18_c01464{bottom:607.360000pt;}
.y19_c01464{bottom:608.000000pt;}
.y97_c01464{bottom:608.640000pt;}
.y16_c01464{bottom:611.840000pt;}
.y15_c01464{bottom:612.480000pt;}
.y17_c01464{bottom:613.120000pt;}
.y14_c01464{bottom:614.400000pt;}
.y35_c01464{bottom:616.320000pt;}
.y12_c01464{bottom:630.400000pt;}
.y13_c01464{bottom:631.040000pt;}
.y8a_c01464{bottom:631.680000pt;}
.y96_c01464{bottom:632.320000pt;}
.y11_c01464{bottom:634.240000pt;}
.yd_c01464{bottom:634.880000pt;}
.yc_c01464{bottom:635.520000pt;}
.yf_c01464{bottom:636.160000pt;}
.ye_c01464{bottom:636.800000pt;}
.yb_c01464{bottom:637.440000pt;}
.ya_c01464{bottom:638.720000pt;}
.y10_c01464{bottom:639.360000pt;}
.y9_c01464{bottom:661.760000pt;}
.y7_c01464{bottom:662.400000pt;}
.y8_c01464{bottom:663.040000pt;}
.y6_c01464{bottom:664.320000pt;}
.y5_c01464{bottom:664.960000pt;}
.y4_c01464{bottom:665.600000pt;}
.y3_c01464{bottom:710.400000pt;}
.y1_c01464{bottom:712.320000pt;}
.y2_c01464{bottom:713.600000pt;}
.hb_c01464{height:2.303750pt;}
.ha_c01464{height:4.607500pt;}
.hd_c01464{height:4.799479pt;}
.h9_c01464{height:6.911250pt;}
.h19_c01464{height:7.359479pt;}
.h1b_c01464{height:9.215000pt;}
.h11_c01464{height:11.518750pt;}
.h13_c01464{height:13.822500pt;}
.h1a_c01464{height:16.126250pt;}
.h12_c01464{height:18.430000pt;}
.h14_c01464{height:20.733750pt;}
.h2c_c01464{height:23.037500pt;}
.he_c01464{height:25.341250pt;}
.h10_c01464{height:27.645000pt;}
.hf_c01464{height:32.252500pt;}
.h5_c01464{height:34.556250pt;}
.h3_c01464{height:36.860000pt;}
.h2_c01464{height:39.163750pt;}
.h6_c01464{height:41.467500pt;}
.h8_c01464{height:43.771250pt;}
.h15_c01464{height:44.027500pt;}
.h7_c01464{height:46.075000pt;}
.hc_c01464{height:48.378750pt;}
.h2d_c01464{height:49.147500pt;}
.h4_c01464{height:50.682500pt;}
.h17_c01464{height:52.986250pt;}
.h1c_c01464{height:55.290000pt;}
.h2b_c01464{height:57.593750pt;}
.h21_c01464{height:59.897500pt;}
.h30_c01464{height:62.201250pt;}
.h29_c01464{height:64.505000pt;}
.h16_c01464{height:69.112500pt;}
.h18_c01464{height:80.631250pt;}
.h2a_c01464{height:82.935000pt;}
.h1f_c01464{height:85.238750pt;}
.h2f_c01464{height:108.276250pt;}
.h28_c01464{height:110.580000pt;}
.h23_c01464{height:117.491250pt;}
.h26_c01464{height:119.795000pt;}
.h3a_c01464{height:122.098750pt;}
.h1d_c01464{height:124.402500pt;}
.h22_c01464{height:131.313750pt;}
.h25_c01464{height:135.921250pt;}
.h20_c01464{height:142.832500pt;}
.h1e_c01464{height:145.136250pt;}
.h3b_c01464{height:156.655000pt;}
.h33_c01464{height:165.870000pt;}
.h38_c01464{height:175.085000pt;}
.h35_c01464{height:179.692500pt;}
.h36_c01464{height:188.907500pt;}
.h37_c01464{height:195.818750pt;}
.h34_c01464{height:198.122500pt;}
.h31_c01464{height:200.426250pt;}
.h32_c01464{height:202.730000pt;}
.h39_c01464{height:221.160000pt;}
.h24_c01464{height:253.412500pt;}
.h27_c01464{height:260.323750pt;}
.h2e_c01464{height:274.146250pt;}
.h0_c01464{height:789.120000pt;}
.h1_c01464{height:789.333333pt;}
.w0_c01464{width:1204.480000pt;}
.w1_c01464{width:1204.666667pt;}
.x0_c01464{left:0.000000pt;}
.x49_c01464{left:1.280000pt;}
.x4b_c01464{left:3.840000pt;}
.x4c_c01464{left:7.040000pt;}
.x4e_c01464{left:12.160000pt;}
.x4f_c01464{left:13.440000pt;}
.x4a_c01464{left:15.360000pt;}
.x4d_c01464{left:16.640000pt;}
.x46_c01464{left:26.240000pt;}
.x10_c01464{left:27.520000pt;}
.xc9_c01464{left:36.480000pt;}
.x44_c01464{left:46.080000pt;}
.x45_c01464{left:55.680000pt;}
.xe5_c01464{left:59.520000pt;}
.x47_c01464{left:65.280000pt;}
.x11_c01464{left:67.200000pt;}
.x43_c01464{left:74.880000pt;}
.x42_c01464{left:76.160000pt;}
.x3d_c01464{left:78.720000pt;}
.xc8_c01464{left:110.080000pt;}
.xe6_c01464{left:111.360000pt;}
.xd6_c01464{left:115.200000pt;}
.x3e_c01464{left:117.120000pt;}
.xe7_c01464{left:120.960000pt;}
.xca_c01464{left:122.240000pt;}
.x3c_c01464{left:124.800000pt;}
.x48_c01464{left:132.480000pt;}
.x30_c01464{left:134.400000pt;}
.x50_c01464{left:142.720000pt;}
.x4_c01464{left:144.000000pt;}
.xd7_c01464{left:150.400000pt;}
.xe1_c01464{left:151.680000pt;}
.x33_c01464{left:170.880000pt;}
.x3f_c01464{left:174.080000pt;}
.x37_c01464{left:177.280000pt;}
.x40_c01464{left:178.560000pt;}
.x1_c01464{left:182.400000pt;}
.x53_c01464{left:186.240000pt;}
.x23_c01464{left:197.120000pt;}
.xcb_c01464{left:200.320000pt;}
.x52_c01464{left:209.920000pt;}
.x21_c01464{left:211.200000pt;}
.x38_c01464{left:215.680000pt;}
.x39_c01464{left:217.600000pt;}
.x51_c01464{left:218.880000pt;}
.x5_c01464{left:220.800000pt;}
.xd8_c01464{left:228.480000pt;}
.x34_c01464{left:230.400000pt;}
.xe2_c01464{left:238.080000pt;}
.x54_c01464{left:256.000000pt;}
.x5e_c01464{left:257.920000pt;}
.x2_c01464{left:259.840000pt;}
.x19_c01464{left:261.120000pt;}
.x68_c01464{left:263.040000pt;}
.x24_c01464{left:264.960000pt;}
.x62_c01464{left:268.800000pt;}
.x63_c01464{left:273.280000pt;}
.xcc_c01464{left:277.760000pt;}
.x22_c01464{left:279.680000pt;}
.x25_c01464{left:280.960000pt;}
.x35_c01464{left:282.240000pt;}
.x64_c01464{left:284.160000pt;}
.x66_c01464{left:287.360000pt;}
.xe_c01464{left:288.640000pt;}
.x57_c01464{left:289.920000pt;}
.x58_c01464{left:293.760000pt;}
.x26_c01464{left:297.600000pt;}
.x36_c01464{left:304.000000pt;}
.x59_c01464{left:305.280000pt;}
.x27_c01464{left:309.120000pt;}
.xd9_c01464{left:316.800000pt;}
.x5a_c01464{left:325.760000pt;}
.x3_c01464{left:329.600000pt;}
.x56_c01464{left:332.160000pt;}
.x65_c01464{left:334.080000pt;}
.xe3_c01464{left:335.360000pt;}
.x28_c01464{left:338.560000pt;}
.xda_c01464{left:343.680000pt;}
.x69_c01464{left:351.360000pt;}
.xcd_c01464{left:354.560000pt;}
.x41_c01464{left:356.480000pt;}
.x29_c01464{left:359.040000pt;}
.x1a_c01464{left:360.960000pt;}
.x6_c01464{left:364.800000pt;}
.x12_c01464{left:366.080000pt;}
.x2a_c01464{left:372.480000pt;}
.x67_c01464{left:373.760000pt;}
.x31_c01464{left:375.040000pt;}
.x3a_c01464{left:378.240000pt;}
.x3b_c01464{left:380.800000pt;}
.x5b_c01464{left:382.080000pt;}
.x5c_c01464{left:391.680000pt;}
.x5d_c01464{left:395.520000pt;}
.x2b_c01464{left:397.440000pt;}
.xe4_c01464{left:401.280000pt;}
.x6a_c01464{left:403.200000pt;}
.x2c_c01464{left:411.520000pt;}
.x5f_c01464{left:412.800000pt;}
.x55_c01464{left:414.720000pt;}
.xce_c01464{left:423.040000pt;}
.xc1_c01464{left:426.880000pt;}
.x13_c01464{left:432.640000pt;}
.x60_c01464{left:433.920000pt;}
.x7_c01464{left:441.600000pt;}
.x61_c01464{left:442.880000pt;}
.x14_c01464{left:462.080000pt;}
.x85_c01464{left:488.320000pt;}
.x86_c01464{left:497.280000pt;}
.x87_c01464{left:499.200000pt;}
.x88_c01464{left:503.680000pt;}
.xdb_c01464{left:507.520000pt;}
.xcf_c01464{left:508.800000pt;}
.x6b_c01464{left:510.720000pt;}
.x2d_c01464{left:515.840000pt;}
.x89_c01464{left:517.760000pt;}
.x6d_c01464{left:519.040000pt;}
.x8_c01464{left:520.320000pt;}
.x1b_c01464{left:526.720000pt;}
.x6c_c01464{left:528.640000pt;}
.x32_c01464{left:529.920000pt;}
.x1c_c01464{left:545.280000pt;}
.x8a_c01464{left:554.240000pt;}
.xd0_c01464{left:555.520000pt;}
.x6e_c01464{left:561.280000pt;}
.x8b_c01464{left:565.760000pt;}
.x2e_c01464{left:584.960000pt;}
.x1d_c01464{left:586.240000pt;}
.x9_c01464{left:597.120000pt;}
.x1e_c01464{left:599.680000pt;}
.x6f_c01464{left:605.440000pt;}
.x82_c01464{left:606.720000pt;}
.x2f_c01464{left:608.640000pt;}
.x8c_c01464{left:609.920000pt;}
.x8d_c01464{left:618.240000pt;}
.x15_c01464{left:624.000000pt;}
.x83_c01464{left:635.520000pt;}
.x1f_c01464{left:639.360000pt;}
.x20_c01464{left:641.280000pt;}
.xa_c01464{left:662.400000pt;}
.xbd_c01464{left:666.240000pt;}
.x16_c01464{left:672.000000pt;}
.x70_c01464{left:673.280000pt;}
.x17_c01464{left:691.200000pt;}
.x8e_c01464{left:695.680000pt;}
.xdc_c01464{left:699.520000pt;}
.x90_c01464{left:716.800000pt;}
.xdd_c01464{left:718.720000pt;}
.x84_c01464{left:727.040000pt;}
.xd1_c01464{left:737.920000pt;}
.xb_c01464{left:740.480000pt;}
.xc2_c01464{left:747.520000pt;}
.x18_c01464{left:748.800000pt;}
.x71_c01464{left:750.080000pt;}
.xde_c01464{left:758.400000pt;}
.xd2_c01464{left:785.920000pt;}
.x91_c01464{left:789.120000pt;}
.x7e_c01464{left:793.600000pt;}
.x78_c01464{left:800.640000pt;}
.xdf_c01464{left:805.120000pt;}
.x94_c01464{left:810.240000pt;}
.x95_c01464{left:812.800000pt;}
.xb2_c01464{left:816.000000pt;}
.x96_c01464{left:817.280000pt;}
.x72_c01464{left:825.600000pt;}
.x76_c01464{left:827.520000pt;}
.x92_c01464{left:830.080000pt;}
.x79_c01464{left:832.640000pt;}
.x8f_c01464{left:835.200000pt;}
.x7b_c01464{left:837.120000pt;}
.xb7_c01464{left:843.520000pt;}
.x7f_c01464{left:846.080000pt;}
.x93_c01464{left:850.560000pt;}
.x73_c01464{left:854.400000pt;}
.xbe_c01464{left:858.240000pt;}
.x80_c01464{left:859.520000pt;}
.x97_c01464{left:860.800000pt;}
.xb8_c01464{left:865.280000pt;}
.x81_c01464{left:868.480000pt;}
.x98_c01464{left:876.160000pt;}
.x77_c01464{left:888.960000pt;}
.x7c_c01464{left:894.080000pt;}
.xc3_c01464{left:898.560000pt;}
.x74_c01464{left:899.840000pt;}
.x7d_c01464{left:903.040000pt;}
.x7a_c01464{left:904.960000pt;}
.x75_c01464{left:921.600000pt;}
.xd3_c01464{left:942.720000pt;}
.xc5_c01464{left:944.640000pt;}
.xaa_c01464{left:947.200000pt;}
.xa7_c01464{left:948.480000pt;}
.xe0_c01464{left:952.320000pt;}
.xb3_c01464{left:963.840000pt;}
.xb9_c01464{left:965.760000pt;}
.xb4_c01464{left:970.240000pt;}
.xa0_c01464{left:972.160000pt;}
.xc6_c01464{left:974.080000pt;}
.xa8_c01464{left:977.280000pt;}
.xc_c01464{left:981.760000pt;}
.xe8_c01464{left:995.200000pt;}
.xb5_c01464{left:997.120000pt;}
.xe9_c01464{left:1007.360000pt;}
.xea_c01464{left:1010.560000pt;}
.xa1_c01464{left:1017.600000pt;}
.x9d_c01464{left:1021.440000pt;}
.x9f_c01464{left:1025.280000pt;}
.x99_c01464{left:1027.840000pt;}
.xf_c01464{left:1029.120000pt;}
.xa4_c01464{left:1034.240000pt;}
.xd4_c01464{left:1038.080000pt;}
.x9b_c01464{left:1040.000000pt;}
.xa2_c01464{left:1045.120000pt;}
.xc4_c01464{left:1047.680000pt;}
.x9a_c01464{left:1048.960000pt;}
.xa3_c01464{left:1061.760000pt;}
.xab_c01464{left:1065.600000pt;}
.xba_c01464{left:1069.440000pt;}
.xb0_c01464{left:1086.720000pt;}
.xa5_c01464{left:1088.640000pt;}
.xb6_c01464{left:1090.560000pt;}
.xa9_c01464{left:1092.480000pt;}
.xbb_c01464{left:1094.400000pt;}
.x9c_c01464{left:1096.960000pt;}
.x9e_c01464{left:1098.240000pt;}
.xaf_c01464{left:1099.520000pt;}
.xbc_c01464{left:1104.640000pt;}
.xd_c01464{left:1105.920000pt;}
.xa6_c01464{left:1107.200000pt;}
.xb1_c01464{left:1113.600000pt;}
.xac_c01464{left:1115.520000pt;}
.xbf_c01464{left:1134.720000pt;}
.xad_c01464{left:1136.640000pt;}
.xc0_c01464{left:1141.120000pt;}
.xae_c01464{left:1144.320000pt;}
.xd5_c01464{left:1150.080000pt;}
.xc7_c01464{left:1184.640000pt;}
}





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

.ir_c01465:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01465{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01465;src:url('chunks/assets/font_929938079e584104fe7636c2.woff2')format("woff");}.ff1_c01465{font-family:ff1_c01465;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m95_c01465{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.maa_c01465{transform:matrix(0.014275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014275,0.000000,0.000000,0.250000,0,0);}
.ma0_c01465{transform:matrix(0.025950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025950,0.000000,0.000000,0.250000,0,0);}
.m8c_c01465{transform:matrix(0.026450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026450,0.000000,0.000000,0.250000,0,0);}
.ma5_c01465{transform:matrix(0.029825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.029825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.029825,0.000000,0.000000,0.250000,0,0);}
.m5f_c01465{transform:matrix(0.031475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031475,0.000000,0.000000,0.250000,0,0);}
.m4a_c01465{transform:matrix(0.041525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.041525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.041525,0.000000,0.000000,0.250000,0,0);}
.m88_c01465{transform:matrix(0.042975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042975,0.000000,0.000000,0.250000,0,0);}
.maf_c01465{transform:matrix(0.044150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.044150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.044150,0.000000,0.000000,0.250000,0,0);}
.mab_c01465{transform:matrix(0.044950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.044950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.044950,0.000000,0.000000,0.250000,0,0);}
.m5e_c01465{transform:matrix(0.047625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047625,0.000000,0.000000,0.250000,0,0);}
.ma2_c01465{transform:matrix(0.048925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048925,0.000000,0.000000,0.250000,0,0);}
.ma6_c01465{transform:matrix(0.051200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.051200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.051200,0.000000,0.000000,0.250000,0,0);}
.ma7_c01465{transform:matrix(0.051725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.051725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.051725,0.000000,0.000000,0.250000,0,0);}
.ma3_c01465{transform:matrix(0.053475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053475,0.000000,0.000000,0.250000,0,0);}
.ma8_c01465{transform:matrix(0.056200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056200,0.000000,0.000000,0.250000,0,0);}
.m72_c01465{transform:matrix(0.059950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.059950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.059950,0.000000,0.000000,0.250000,0,0);}
.m60_c01465{transform:matrix(0.067275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067275,0.000000,0.000000,0.250000,0,0);}
.mb0_c01465{transform:matrix(0.067700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067700,0.000000,0.000000,0.250000,0,0);}
.m9_c01465{transform:matrix(0.072850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072850,0.000000,0.000000,0.250000,0,0);}
.me0_c01465{transform:matrix(0.075200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075200,0.000000,0.000000,0.250000,0,0);}
.mf3_c01465{transform:matrix(0.077800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077800,0.000000,0.000000,0.250000,0,0);}
.mac_c01465{transform:matrix(0.079400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079400,0.000000,0.000000,0.250000,0,0);}
.m56_c01465{transform:matrix(0.080800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080800,0.000000,0.000000,0.250000,0,0);}
.m59_c01465{transform:matrix(0.083775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083775,0.000000,0.000000,0.250000,0,0);}
.ma1_c01465{transform:matrix(0.090375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090375,0.000000,0.000000,0.250000,0,0);}
.mcc_c01465{transform:matrix(0.091975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091975,0.000000,0.000000,0.250000,0,0);}
.m58_c01465{transform:matrix(0.096075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096075,0.000000,0.000000,0.250000,0,0);}
.m66_c01465{transform:matrix(0.096175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096175,0.000000,0.000000,0.250000,0,0);}
.m5b_c01465{transform:matrix(0.099925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099925,0.000000,0.000000,0.250000,0,0);}
.m94_c01465{transform:matrix(0.108825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108825,0.000000,0.000000,0.250000,0,0);}
.m98_c01465{transform:matrix(0.110800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110800,0.000000,0.000000,0.250000,0,0);}
.m97_c01465{transform:matrix(0.111075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111075,0.000000,0.000000,0.250000,0,0);}
.m9c_c01465{transform:matrix(0.112125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112125,0.000000,0.000000,0.250000,0,0);}
.m54_c01465{transform:matrix(0.112775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112775,0.000000,0.000000,0.250000,0,0);}
.m96_c01465{transform:matrix(0.115100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115100,0.000000,0.000000,0.250000,0,0);}
.m2f_c01465{transform:matrix(0.115375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115375,0.000000,0.000000,0.250000,0,0);}
.m9e_c01465{transform:matrix(0.118475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118475,0.000000,0.000000,0.250000,0,0);}
.m90_c01465{transform:matrix(0.118500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118500,0.000000,0.000000,0.250000,0,0);}
.m84_c01465{transform:matrix(0.119200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119200,0.000000,0.000000,0.250000,0,0);}
.m8_c01465{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m99_c01465{transform:matrix(0.120800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120800,0.000000,0.000000,0.250000,0,0);}
.m83_c01465{transform:matrix(0.125050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125050,0.000000,0.000000,0.250000,0,0);}
.m23_c01465{transform:matrix(0.125825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125825,0.000000,0.000000,0.250000,0,0);}
.mee_c01465{transform:matrix(0.129375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129375,0.000000,0.000000,0.250000,0,0);}
.mf2_c01465{transform:matrix(0.134850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134850,0.000000,0.000000,0.250000,0,0);}
.me8_c01465{transform:matrix(0.135775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135775,0.000000,0.000000,0.250000,0,0);}
.mf1_c01465{transform:matrix(0.136375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136375,0.000000,0.000000,0.250000,0,0);}
.m50_c01465{transform:matrix(0.137650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137650,0.000000,0.000000,0.250000,0,0);}
.mb2_c01465{transform:matrix(0.138850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138850,0.000000,0.000000,0.250000,0,0);}
.mb5_c01465{transform:matrix(0.139025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139025,0.000000,0.000000,0.250000,0,0);}
.me7_c01465{transform:matrix(0.140350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140350,0.000000,0.000000,0.250000,0,0);}
.m61_c01465{transform:matrix(0.144400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144400,0.000000,0.000000,0.250000,0,0);}
.m36_c01465{transform:matrix(0.145075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145075,0.000000,0.000000,0.250000,0,0);}
.ma9_c01465{transform:matrix(0.145775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145775,0.000000,0.000000,0.250000,0,0);}
.m7a_c01465{transform:matrix(0.145825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145825,0.000000,0.000000,0.250000,0,0);}
.mbc_c01465{transform:matrix(0.146450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146450,0.000000,0.000000,0.250000,0,0);}
.me9_c01465{transform:matrix(0.147700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147700,0.000000,0.000000,0.250000,0,0);}
.m9d_c01465{transform:matrix(0.148050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148050,0.000000,0.000000,0.250000,0,0);}
.ma4_c01465{transform:matrix(0.149875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149875,0.000000,0.000000,0.250000,0,0);}
.m76_c01465{transform:matrix(0.152650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152650,0.000000,0.000000,0.250000,0,0);}
.m80_c01465{transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);}
.m24_c01465{transform:matrix(0.154900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154900,0.000000,0.000000,0.250000,0,0);}
.mc4_c01465{transform:matrix(0.155150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155150,0.000000,0.000000,0.250000,0,0);}
.mce_c01465{transform:matrix(0.157550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157550,0.000000,0.000000,0.250000,0,0);}
.m53_c01465{transform:matrix(0.159900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159900,0.000000,0.000000,0.250000,0,0);}
.mb8_c01465{transform:matrix(0.160075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160075,0.000000,0.000000,0.250000,0,0);}
.m69_c01465{transform:matrix(0.160350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160350,0.000000,0.000000,0.250000,0,0);}
.m8d_c01465{transform:matrix(0.160850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160850,0.000000,0.000000,0.250000,0,0);}
.mc_c01465{transform:matrix(0.162575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162575,0.000000,0.000000,0.250000,0,0);}
.m5d_c01465{transform:matrix(0.163850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163850,0.000000,0.000000,0.250000,0,0);}
.mb1_c01465{transform:matrix(0.164575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164575,0.000000,0.000000,0.250000,0,0);}
.mec_c01465{transform:matrix(0.165850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165850,0.000000,0.000000,0.250000,0,0);}
.m57_c01465{transform:matrix(0.168675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168675,0.000000,0.000000,0.250000,0,0);}
.mcf_c01465{transform:matrix(0.170450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170450,0.000000,0.000000,0.250000,0,0);}
.m9f_c01465{transform:matrix(0.170550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170550,0.000000,0.000000,0.250000,0,0);}
.m7b_c01465{transform:matrix(0.171375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171375,0.000000,0.000000,0.250000,0,0);}
.m67_c01465{transform:matrix(0.174050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174050,0.000000,0.000000,0.250000,0,0);}
.me3_c01465{transform:matrix(0.175575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175575,0.000000,0.000000,0.250000,0,0);}
.m51_c01465{transform:matrix(0.177625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177625,0.000000,0.000000,0.250000,0,0);}
.meb_c01465{transform:matrix(0.177725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177725,0.000000,0.000000,0.250000,0,0);}
.m7f_c01465{transform:matrix(0.178075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178075,0.000000,0.000000,0.250000,0,0);}
.mef_c01465{transform:matrix(0.178200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178200,0.000000,0.000000,0.250000,0,0);}
.m5c_c01465{transform:matrix(0.179375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179375,0.000000,0.000000,0.250000,0,0);}
.m21_c01465{transform:matrix(0.180375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180375,0.000000,0.000000,0.250000,0,0);}
.mc2_c01465{transform:matrix(0.180725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180725,0.000000,0.000000,0.250000,0,0);}
.me4_c01465{transform:matrix(0.185100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185100,0.000000,0.000000,0.250000,0,0);}
.m47_c01465{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.mca_c01465{transform:matrix(0.191475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191475,0.000000,0.000000,0.250000,0,0);}
.m4f_c01465{transform:matrix(0.192025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192025,0.000000,0.000000,0.250000,0,0);}
.m52_c01465{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);}
.m3a_c01465{transform:matrix(0.195775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195775,0.000000,0.000000,0.250000,0,0);}
.mc3_c01465{transform:matrix(0.197450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197450,0.000000,0.000000,0.250000,0,0);}
.m92_c01465{transform:matrix(0.197925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197925,0.000000,0.000000,0.250000,0,0);}
.m3c_c01465{transform:matrix(0.200525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200525,0.000000,0.000000,0.250000,0,0);}
.m8f_c01465{transform:matrix(0.202675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202675,0.000000,0.000000,0.250000,0,0);}
.mb9_c01465{transform:matrix(0.205700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205700,0.000000,0.000000,0.250000,0,0);}
.m78_c01465{transform:matrix(0.207300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207300,0.000000,0.000000,0.250000,0,0);}
.mb3_c01465{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.m2a_c01465{transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);}
.mba_c01465{transform:matrix(0.213550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213550,0.000000,0.000000,0.250000,0,0);}
.m85_c01465{transform:matrix(0.216325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216325,0.000000,0.000000,0.250000,0,0);}
.m5a_c01465{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.mb7_c01465{transform:matrix(0.217875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217875,0.000000,0.000000,0.250000,0,0);}
.m70_c01465{transform:matrix(0.219125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219125,0.000000,0.000000,0.250000,0,0);}
.m40_c01465{transform:matrix(0.219850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219850,0.000000,0.000000,0.250000,0,0);}
.m41_c01465{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.me5_c01465{transform:matrix(0.227950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227950,0.000000,0.000000,0.250000,0,0);}
.m4c_c01465{transform:matrix(0.228875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228875,0.000000,0.000000,0.250000,0,0);}
.m1d_c01465{transform:matrix(0.229600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229600,0.000000,0.000000,0.250000,0,0);}
.m3b_c01465{transform:matrix(0.231950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231950,0.000000,0.000000,0.250000,0,0);}
.me6_c01465{transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);}
.m13_c01465{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m31_c01465{transform:matrix(0.238650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238650,0.000000,0.000000,0.250000,0,0);}
.md8_c01465{transform:matrix(0.239700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239700,0.000000,0.000000,0.250000,0,0);}
.m42_c01465{transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);}
.m3_c01465{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);}
.m8a_c01465{transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);}
.m1c_c01465{transform:matrix(0.249175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249175,0.000000,0.000000,0.250000,0,0);}
.m55_c01465{transform:matrix(0.249375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249375,0.000000,0.000000,0.250000,0,0);}
.m28_c01465{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m35_c01465{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m26_c01465{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);}
.mc7_c01465{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);}
.mdd_c01465{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);}
.m81_c01465{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);}
.m4b_c01465{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);}
.m2c_c01465{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);}
.m87_c01465{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m11_c01465{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_c01465{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);}
.m6f_c01465{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);}
.m2b_c01465{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);}
.m71_c01465{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);}
.m45_c01465{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);}
.mbd_c01465{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m27_c01465{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m30_c01465{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m12_c01465{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m4_c01465{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m32_c01465{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mf_c01465{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m18_c01465{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m43_c01465{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m73_c01465{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m62_c01465{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m5_c01465{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m37_c01465{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1_c01465{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m48_c01465{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m6e_c01465{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);}
.m7c_c01465{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m46_c01465{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.md_c01465{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);}
.m6d_c01465{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);}
.m39_c01465{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m65_c01465{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);}
.m6a_c01465{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m22_c01465{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);}
.md3_c01465{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.mc0_c01465{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);}
.m7e_c01465{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m29_c01465{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);}
.m93_c01465{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m25_c01465{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m64_c01465{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m7d_c01465{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m6_c01465{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);}
.m6c_c01465{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m6b_c01465{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);}
.m8e_c01465{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m49_c01465{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);}
.mc5_c01465{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);}
.md1_c01465{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m79_c01465{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m10_c01465{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);}
.mdf_c01465{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m20_c01465{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);}
.m9a_c01465{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m33_c01465{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);}
.m89_c01465{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m75_c01465{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m91_c01465{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);}
.mcb_c01465{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.mad_c01465{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.md6_c01465{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);}
.med_c01465{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.mdc_c01465{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);}
.mea_c01465{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01465{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m7_c01465{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01465{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.mda_c01465{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.md4_c01465{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.mdb_c01465{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.md0_c01465{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);}
.mc6_c01465{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.mae_c01465{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);}
.m4e_c01465{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);}
.mb4_c01465{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.mb_c01465{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);}
.m86_c01465{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.md2_c01465{transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01465{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);}
.mc9_c01465{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.mb6_c01465{transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01465{transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);}
.md7_c01465{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);}
.m2_c01465{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.m77_c01465{transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);}
.mbe_c01465{transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);}
.mcd_c01465{transform:matrix(0.707500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.707500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.707500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01465{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.m38_c01465{transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);}
.m16_c01465{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.ma_c01465{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);}
.m82_c01465{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m8b_c01465{transform:matrix(0.815000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.815000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.815000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01465{transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);}
.mbb_c01465{transform:matrix(0.960000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.960000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.960000,0.000000,0.000000,0.250000,0,0);}
.m34_c01465{transform:matrix(1.027500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.027500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.027500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01465{transform:matrix(1.057500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.057500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.057500,0.000000,0.000000,0.250000,0,0);}
.m0_c01465{transform:matrix(1.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.080000,0.000000,0.000000,0.250000,0,0);}
.mc1_c01465{transform:matrix(1.115000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.115000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.115000,0.000000,0.000000,0.250000,0,0);}
.mc8_c01465{transform:matrix(1.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.230000,0.000000,0.000000,0.250000,0,0);}
.md5_c01465{transform:matrix(1.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.255000,0.000000,0.000000,0.250000,0,0);}
.m19_c01465{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01465{transform:matrix(1.552500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.552500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.552500,0.000000,0.000000,0.250000,0,0);}
.m17_c01465{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.md9_c01465{transform:matrix(1.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.582500,0.000000,0.000000,0.250000,0,0);}
.mde_c01465{transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01465{transform:matrix(1.920000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.920000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.920000,0.000000,0.000000,0.250000,0,0);}
.me1_c01465{transform:matrix(1.935000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.935000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.935000,0.000000,0.000000,0.250000,0,0);}
.mbf_c01465{transform:matrix(2.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.040000,0.000000,0.000000,0.250000,0,0);}
.m63_c01465{transform:matrix(2.082500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.082500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.082500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01465{transform:matrix(2.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.305000,0.000000,0.000000,0.250000,0,0);}
.m15_c01465{transform:matrix(2.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.577500,0.000000,0.000000,0.250000,0,0);}
.m74_c01465{transform:matrix(2.640000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.640000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.640000,0.000000,0.000000,0.250000,0,0);}
.m14_c01465{transform:matrix(2.880000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.880000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.880000,0.000000,0.000000,0.250000,0,0);}
.m44_c01465{transform:matrix(3.055000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.055000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.055000,0.000000,0.000000,0.250000,0,0);}
.me2_c01465{transform:matrix(3.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.235000,0.000000,0.000000,0.250000,0,0);}
.m68_c01465{transform:matrix(3.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.240000,0.000000,0.000000,0.250000,0,0);}
.mf0_c01465{transform:matrix(3.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.600000,0.000000,0.000000,0.250000,0,0);}
.m9b_c01465{transform:matrix(3.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.720000,0.000000,0.000000,0.250000,0,0);}
.v2_c01465{vertical-align:-11.520000px;}
.v5_c01465{vertical-align:-8.640000px;}
.v4_c01465{vertical-align:-2.880000px;}
.v0_c01465{vertical-align:0.000000px;}
.v1_c01465{vertical-align:2.880000px;}
.v3_c01465{vertical-align:8.640000px;}
.v7_c01465{vertical-align:11.520000px;}
.v6_c01465{vertical-align:17.280000px;}
.ls1_c01465{letter-spacing:0.000000px;}
.ls0_c01465{letter-spacing:237.076800px;}
.sc__c01465{text-shadow:none;}
.sc0_c01465{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01465{-webkit-text-stroke:0px transparent;}
.sc0_c01465{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c01465{word-spacing:0.000000px;}
.ws0_c01465{word-spacing:4.225440px;}
.ws4_c01465{word-spacing:98.379840px;}
.ws5_c01465{word-spacing:141.411120px;}
.ws3_c01465{word-spacing:164.131200px;}
.ws1_c01465{word-spacing:228.047280px;}
.ws2_c01465{word-spacing:240.931200px;}
.fc0_c01465{color:transparent;}
.fs3_c01465{font-size:2.880000px;}
.fsc_c01465{font-size:5.760000px;}
.fs35_c01465{font-size:6.000000px;}
.fs11_c01465{font-size:8.640000px;}
.fs0_c01465{font-size:11.520000px;}
.fs1d_c01465{font-size:14.400000px;}
.fs9_c01465{font-size:17.280000px;}
.fsa_c01465{font-size:20.160000px;}
.fsd_c01465{font-size:23.040000px;}
.fs7_c01465{font-size:25.920000px;}
.fs34_c01465{font-size:28.800000px;}
.fs37_c01465{font-size:31.680000px;}
.fs2_c01465{font-size:34.560000px;}
.fs17_c01465{font-size:37.440000px;}
.fs18_c01465{font-size:40.320000px;}
.fs10_c01465{font-size:43.200000px;}
.fs4_c01465{font-size:46.080000px;}
.fs1_c01465{font-size:48.960000px;}
.fs5_c01465{font-size:51.840000px;}
.fsf_c01465{font-size:54.720000px;}
.fs12_c01465{font-size:57.600000px;}
.fse_c01465{font-size:60.480000px;}
.fs2a_c01465{font-size:63.360000px;}
.fs6_c01465{font-size:66.240000px;}
.fsb_c01465{font-size:69.120000px;}
.fs2b_c01465{font-size:72.000000px;}
.fs19_c01465{font-size:74.880000px;}
.fs25_c01465{font-size:77.760000px;}
.fs33_c01465{font-size:80.640000px;}
.fs14_c01465{font-size:83.520000px;}
.fs15_c01465{font-size:86.400000px;}
.fs13_c01465{font-size:89.280000px;}
.fs1a_c01465{font-size:92.160000px;}
.fs16_c01465{font-size:97.920000px;}
.fs29_c01465{font-size:100.800000px;}
.fs1c_c01465{font-size:103.680000px;}
.fs2c_c01465{font-size:106.560000px;}
.fs21_c01465{font-size:109.440000px;}
.fs1e_c01465{font-size:112.320000px;}
.fs20_c01465{font-size:115.200000px;}
.fs28_c01465{font-size:118.080000px;}
.fs1f_c01465{font-size:120.960000px;}
.fs36_c01465{font-size:123.840000px;}
.fs26_c01465{font-size:129.600000px;}
.fs27_c01465{font-size:132.480000px;}
.fs22_c01465{font-size:138.240000px;}
.fs2d_c01465{font-size:144.000000px;}
.fs23_c01465{font-size:146.880000px;}
.fs2e_c01465{font-size:149.760000px;}
.fs8_c01465{font-size:152.640000px;}
.fs24_c01465{font-size:155.520000px;}
.fs2f_c01465{font-size:161.280000px;}
.fs1b_c01465{font-size:164.160000px;}
.fs38_c01465{font-size:167.040000px;}
.fs30_c01465{font-size:172.800000px;}
.fs32_c01465{font-size:181.440000px;}
.fs31_c01465{font-size:192.960000px;}
.y0_c01465{bottom:0.000000px;}
.y147_c01465{bottom:0.720000px;}
.y149_c01465{bottom:7.920000px;}
.y144_c01465{bottom:8.640000px;}
.y143_c01465{bottom:10.800000px;}
.y148_c01465{bottom:12.960000px;}
.y14a_c01465{bottom:13.680000px;}
.y128_c01465{bottom:14.400000px;}
.y129_c01465{bottom:15.120000px;}
.y126_c01465{bottom:15.840000px;}
.y127_c01465{bottom:16.560000px;}
.y146_c01465{bottom:17.280000px;}
.y142_c01465{bottom:18.000000px;}
.y145_c01465{bottom:18.720000px;}
.y13f_c01465{bottom:28.080000px;}
.y13c_c01465{bottom:30.240000px;}
.y141_c01465{bottom:38.160000px;}
.y13e_c01465{bottom:38.880000px;}
.y13d_c01465{bottom:39.600000px;}
.y140_c01465{bottom:43.920000px;}
.y125_c01465{bottom:44.640000px;}
.y2_c01465{bottom:47.520000px;}
.y111_c01465{bottom:63.360000px;}
.y124_c01465{bottom:66.960000px;}
.y115_c01465{bottom:67.680000px;}
.y123_c01465{bottom:68.400000px;}
.y116_c01465{bottom:69.120000px;}
.y114_c01465{bottom:69.840000px;}
.y112_c01465{bottom:70.560000px;}
.y113_c01465{bottom:71.280000px;}
.y110_c01465{bottom:72.000000px;}
.y109_c01465{bottom:82.800000px;}
.y108_c01465{bottom:84.960000px;}
.y10c_c01465{bottom:90.000000px;}
.y10d_c01465{bottom:90.720000px;}
.y10b_c01465{bottom:91.440000px;}
.y10f_c01465{bottom:92.160000px;}
.y106_c01465{bottom:92.880000px;}
.y10e_c01465{bottom:94.320000px;}
.y105_c01465{bottom:96.480000px;}
.y107_c01465{bottom:97.200000px;}
.y10a_c01465{bottom:97.920000px;}
.y104_c01465{bottom:100.800000px;}
.yff_c01465{bottom:110.160000px;}
.yfe_c01465{bottom:111.600000px;}
.yfa_c01465{bottom:112.320000px;}
.y100_c01465{bottom:115.920000px;}
.yfb_c01465{bottom:116.640000px;}
.y103_c01465{bottom:117.360000px;}
.yf9_c01465{bottom:118.080000px;}
.y102_c01465{bottom:120.240000px;}
.yfd_c01465{bottom:121.680000px;}
.yf8_c01465{bottom:122.400000px;}
.y101_c01465{bottom:123.120000px;}
.yfc_c01465{bottom:123.840000px;}
.yf7_c01465{bottom:131.760000px;}
.yf6_c01465{bottom:134.640000px;}
.yf5_c01465{bottom:136.080000px;}
.yf2_c01465{bottom:142.560000px;}
.yf3_c01465{bottom:143.280000px;}
.yf4_c01465{bottom:144.000000px;}
.yf1_c01465{bottom:146.160000px;}
.yef_c01465{bottom:146.880000px;}
.yee_c01465{bottom:147.600000px;}
.yed_c01465{bottom:149.040000px;}
.yec_c01465{bottom:149.760000px;}
.yeb_c01465{bottom:150.480000px;}
.yf0_c01465{bottom:151.920000px;}
.ye6_c01465{bottom:162.000000px;}
.ye5_c01465{bottom:162.720000px;}
.ye0_c01465{bottom:164.160000px;}
.ye4_c01465{bottom:164.880000px;}
.ydf_c01465{bottom:165.600000px;}
.ye8_c01465{bottom:167.760000px;}
.ye7_c01465{bottom:168.480000px;}
.ye9_c01465{bottom:169.200000px;}
.ydd_c01465{bottom:171.360000px;}
.ye3_c01465{bottom:172.800000px;}
.ye2_c01465{bottom:173.520000px;}
.yea_c01465{bottom:174.240000px;}
.yde_c01465{bottom:174.960000px;}
.ye1_c01465{bottom:175.680000px;}
.yd4_c01465{bottom:185.040000px;}
.yda_c01465{bottom:185.760000px;}
.yd7_c01465{bottom:193.680000px;}
.yd9_c01465{bottom:195.120000px;}
.ydc_c01465{bottom:195.840000px;}
.ydb_c01465{bottom:198.000000px;}
.yd6_c01465{bottom:199.440000px;}
.yd8_c01465{bottom:200.880000px;}
.yd5_c01465{bottom:212.400000px;}
.yd2_c01465{bottom:213.840000px;}
.yd0_c01465{bottom:216.000000px;}
.yd3_c01465{bottom:221.040000px;}
.ycc_c01465{bottom:223.200000px;}
.yd1_c01465{bottom:225.360000px;}
.yc2_c01465{bottom:226.080000px;}
.yc8_c01465{bottom:226.800000px;}
.yc9_c01465{bottom:227.520000px;}
.yc7_c01465{bottom:235.440000px;}
.yc6_c01465{bottom:236.880000px;}
.yc3_c01465{bottom:237.600000px;}
.ycf_c01465{bottom:239.040000px;}
.yc1_c01465{bottom:240.480000px;}
.yc4_c01465{bottom:242.640000px;}
.ycd_c01465{bottom:243.360000px;}
.yca_c01465{bottom:246.960000px;}
.ycb_c01465{bottom:247.680000px;}
.yce_c01465{bottom:249.120000px;}
.yc5_c01465{bottom:249.840000px;}
.ybf_c01465{bottom:250.560000px;}
.ybd_c01465{bottom:252.000000px;}
.ybc_c01465{bottom:252.720000px;}
.yc0_c01465{bottom:253.440000px;}
.ybe_c01465{bottom:254.880000px;}
.yb9_c01465{bottom:275.040000px;}
.ybb_c01465{bottom:276.480000px;}
.yba_c01465{bottom:277.200000px;}
.yb8_c01465{bottom:277.920000px;}
.yb6_c01465{bottom:278.640000px;}
.yb7_c01465{bottom:280.800000px;}
.yb1_c01465{bottom:282.240000px;}
.yb4_c01465{bottom:289.440000px;}
.yb5_c01465{bottom:298.800000px;}
.y13b_c01465{bottom:299.520000px;}
.yb3_c01465{bottom:302.400000px;}
.yb2_c01465{bottom:303.120000px;}
.yaf_c01465{bottom:317.520000px;}
.yab_c01465{bottom:318.960000px;}
.yae_c01465{bottom:320.400000px;}
.ya9_c01465{bottom:321.840000px;}
.yb0_c01465{bottom:324.000000px;}
.yaa_c01465{bottom:324.720000px;}
.ya8_c01465{bottom:326.880000px;}
.y131_c01465{bottom:327.600000px;}
.yad_c01465{bottom:328.320000px;}
.yac_c01465{bottom:329.040000px;}
.ya3_c01465{bottom:336.960000px;}
.ya7_c01465{bottom:338.400000px;}
.ya6_c01465{bottom:340.560000px;}
.ya5_c01465{bottom:341.280000px;}
.ya4_c01465{bottom:349.920000px;}
.y13a_c01465{bottom:350.640000px;}
.ya1_c01465{bottom:352.800000px;}
.ya2_c01465{bottom:353.520000px;}
.y9f_c01465{bottom:354.240000px;}
.y9d_c01465{bottom:355.680000px;}
.ya0_c01465{bottom:356.400000px;}
.y9e_c01465{bottom:357.120000px;}
.y139_c01465{bottom:367.200000px;}
.y9a_c01465{bottom:370.080000px;}
.y96_c01465{bottom:371.520000px;}
.y99_c01465{bottom:372.240000px;}
.y97_c01465{bottom:375.840000px;}
.y95_c01465{bottom:376.560000px;}
.y94_c01465{bottom:377.280000px;}
.y9b_c01465{bottom:380.160000px;}
.y9c_c01465{bottom:380.880000px;}
.y98_c01465{bottom:382.320000px;}
.y92_c01465{bottom:390.960000px;}
.y8f_c01465{bottom:392.400000px;}
.y91_c01465{bottom:401.760000px;}
.y93_c01465{bottom:404.640000px;}
.y138_c01465{bottom:406.080000px;}
.y137_c01465{bottom:406.800000px;}
.y8e_c01465{bottom:407.520000px;}
.y90_c01465{bottom:408.240000px;}
.y122_c01465{bottom:410.400000px;}
.y121_c01465{bottom:419.760000px;}
.y8c_c01465{bottom:421.200000px;}
.y87_c01465{bottom:423.360000px;}
.y89_c01465{bottom:426.960000px;}
.y88_c01465{bottom:427.680000px;}
.y84_c01465{bottom:428.400000px;}
.y86_c01465{bottom:429.120000px;}
.y85_c01465{bottom:429.840000px;}
.y8d_c01465{bottom:432.000000px;}
.y8b_c01465{bottom:432.720000px;}
.y83_c01465{bottom:433.440000px;}
.y8a_c01465{bottom:434.880000px;}
.y82_c01465{bottom:444.960000px;}
.y81_c01465{bottom:453.600000px;}
.y11e_c01465{bottom:454.320000px;}
.y120_c01465{bottom:455.040000px;}
.y11f_c01465{bottom:455.760000px;}
.y80_c01465{bottom:457.920000px;}
.y7e_c01465{bottom:458.640000px;}
.y7d_c01465{bottom:459.360000px;}
.y7b_c01465{bottom:460.080000px;}
.y7f_c01465{bottom:460.800000px;}
.y7c_c01465{bottom:462.960000px;}
.y75_c01465{bottom:472.320000px;}
.y73_c01465{bottom:475.200000px;}
.y79_c01465{bottom:480.240000px;}
.y7a_c01465{bottom:480.960000px;}
.y78_c01465{bottom:482.400000px;}
.y77_c01465{bottom:483.120000px;}
.y76_c01465{bottom:483.840000px;}
.y72_c01465{bottom:485.280000px;}
.y74_c01465{bottom:486.720000px;}
.y70_c01465{bottom:493.920000px;}
.y6b_c01465{bottom:496.080000px;}
.y6a_c01465{bottom:498.960000px;}
.y6f_c01465{bottom:504.720000px;}
.y67_c01465{bottom:506.160000px;}
.y66_c01465{bottom:506.880000px;}
.y71_c01465{bottom:508.320000px;}
.y6e_c01465{bottom:509.040000px;}
.y6d_c01465{bottom:509.760000px;}
.y6c_c01465{bottom:510.480000px;}
.y68_c01465{bottom:513.360000px;}
.y69_c01465{bottom:516.240000px;}
.y59_c01465{bottom:522.000000px;}
.y60_c01465{bottom:524.160000px;}
.y5d_c01465{bottom:526.320000px;}
.y5c_c01465{bottom:527.040000px;}
.y62_c01465{bottom:527.760000px;}
.y61_c01465{bottom:529.920000px;}
.y63_c01465{bottom:530.640000px;}
.y5b_c01465{bottom:532.080000px;}
.y5a_c01465{bottom:532.800000px;}
.y65_c01465{bottom:534.240000px;}
.y64_c01465{bottom:535.680000px;}
.y5f_c01465{bottom:536.400000px;}
.y5e_c01465{bottom:537.120000px;}
.y57_c01465{bottom:561.600000px;}
.y55_c01465{bottom:562.320000px;}
.y53_c01465{bottom:563.040000px;}
.y56_c01465{bottom:563.760000px;}
.y50_c01465{bottom:564.480000px;}
.y4e_c01465{bottom:565.200000px;}
.y51_c01465{bottom:565.920000px;}
.y4f_c01465{bottom:566.640000px;}
.y118_c01465{bottom:567.360000px;}
.y4b_c01465{bottom:570.960000px;}
.y54_c01465{bottom:578.880000px;}
.y11d_c01465{bottom:581.760000px;}
.y4d_c01465{bottom:583.920000px;}
.y58_c01465{bottom:584.640000px;}
.y4c_c01465{bottom:585.360000px;}
.y4a_c01465{bottom:586.080000px;}
.y48_c01465{bottom:586.800000px;}
.y52_c01465{bottom:588.240000px;}
.y46_c01465{bottom:588.960000px;}
.y47_c01465{bottom:589.680000px;}
.y43_c01465{bottom:596.160000px;}
.y49_c01465{bottom:596.880000px;}
.y45_c01465{bottom:599.760000px;}
.y44_c01465{bottom:600.480000px;}
.y11a_c01465{bottom:607.680000px;}
.y11c_c01465{bottom:609.120000px;}
.y42_c01465{bottom:610.560000px;}
.y11b_c01465{bottom:611.280000px;}
.y40_c01465{bottom:614.160000px;}
.y3f_c01465{bottom:614.880000px;}
.y41_c01465{bottom:615.600000px;}
.y3e_c01465{bottom:616.320000px;}
.y119_c01465{bottom:618.480000px;}
.y3c_c01465{bottom:628.560000px;}
.y38_c01465{bottom:630.000000px;}
.y14d_c01465{bottom:631.440000px;}
.y3a_c01465{bottom:635.040000px;}
.y37_c01465{bottom:635.760000px;}
.y35_c01465{bottom:636.480000px;}
.y36_c01465{bottom:637.200000px;}
.y3d_c01465{bottom:638.640000px;}
.y3b_c01465{bottom:640.080000px;}
.y39_c01465{bottom:640.800000px;}
.y32_c01465{bottom:649.440000px;}
.y14c_c01465{bottom:650.160000px;}
.y34_c01465{bottom:650.880000px;}
.y30_c01465{bottom:651.600000px;}
.y33_c01465{bottom:652.320000px;}
.y2f_c01465{bottom:653.040000px;}
.y2e_c01465{bottom:653.760000px;}
.y2b_c01465{bottom:659.520000px;}
.y31_c01465{bottom:660.960000px;}
.y2d_c01465{bottom:661.680000px;}
.y2c_c01465{bottom:663.120000px;}
.y2a_c01465{bottom:664.560000px;}
.y28_c01465{bottom:666.720000px;}
.y26_c01465{bottom:667.440000px;}
.y29_c01465{bottom:668.160000px;}
.y27_c01465{bottom:668.880000px;}
.y25_c01465{bottom:670.320000px;}
.y24_c01465{bottom:671.040000px;}
.y23_c01465{bottom:681.840000px;}
.y1e_c01465{bottom:684.720000px;}
.y20_c01465{bottom:686.160000px;}
.y1f_c01465{bottom:686.880000px;}
.y1d_c01465{bottom:687.600000px;}
.y1c_c01465{bottom:688.320000px;}
.y135_c01465{bottom:691.200000px;}
.y134_c01465{bottom:691.920000px;}
.y22_c01465{bottom:692.640000px;}
.y12a_c01465{bottom:693.360000px;}
.y21_c01465{bottom:694.800000px;}
.y1b_c01465{bottom:703.440000px;}
.y1a_c01465{bottom:704.880000px;}
.y19_c01465{bottom:705.600000px;}
.y16_c01465{bottom:713.520000px;}
.y18_c01465{bottom:714.240000px;}
.y17_c01465{bottom:714.960000px;}
.y130_c01465{bottom:719.280000px;}
.y133_c01465{bottom:720.000000px;}
.y15_c01465{bottom:720.720000px;}
.y11_c01465{bottom:722.160000px;}
.y12_c01465{bottom:722.880000px;}
.y14_c01465{bottom:723.600000px;}
.y13_c01465{bottom:724.320000px;}
.y10_c01465{bottom:735.840000px;}
.yf_c01465{bottom:736.560000px;}
.ye_c01465{bottom:741.600000px;}
.y12c_c01465{bottom:748.080000px;}
.y12f_c01465{bottom:748.800000px;}
.y12e_c01465{bottom:749.520000px;}
.yc_c01465{bottom:750.240000px;}
.y12d_c01465{bottom:750.960000px;}
.yd_c01465{bottom:752.400000px;}
.y12b_c01465{bottom:753.120000px;}
.y14b_c01465{bottom:763.920000px;}
.y136_c01465{bottom:765.360000px;}
.y132_c01465{bottom:766.080000px;}
.y117_c01465{bottom:770.400000px;}
.y8_c01465{bottom:791.280000px;}
.y9_c01465{bottom:795.600000px;}
.ya_c01465{bottom:797.760000px;}
.y7_c01465{bottom:802.080000px;}
.y6_c01465{bottom:804.240000px;}
.y5_c01465{bottom:805.680000px;}
.y3_c01465{bottom:823.680000px;}
.y4_c01465{bottom:829.440000px;}
.yb_c01465{bottom:850.320000px;}
.y1_c01465{bottom:885.600000px;}
.h5_c01465{height:2.591719px;}
.hf_c01465{height:5.183438px;}
.h39_c01465{height:5.399414px;}
.ha_c01465{height:5.471719px;}
.h14_c01465{height:7.775156px;}
.h2_c01465{height:10.366875px;}
.h21_c01465{height:12.958594px;}
.hc_c01465{height:15.550313px;}
.hd_c01465{height:18.142031px;}
.h10_c01465{height:20.733750px;}
.h9_c01465{height:23.325469px;}
.h38_c01465{height:25.917187px;}
.h3b_c01465{height:28.508906px;}
.h4_c01465{height:31.100625px;}
.h1a_c01465{height:33.692344px;}
.h1b_c01465{height:36.284062px;}
.h13_c01465{height:38.875781px;}
.h6_c01465{height:41.467500px;}
.h3_c01465{height:44.059219px;}
.h7_c01465{height:46.650937px;}
.h12_c01465{height:49.242656px;}
.h15_c01465{height:51.834375px;}
.h11_c01465{height:54.426094px;}
.h1d_c01465{height:55.290937px;}
.h2e_c01465{height:57.017812px;}
.h8_c01465{height:59.609531px;}
.he_c01465{height:62.201250px;}
.h2f_c01465{height:64.792969px;}
.h1c_c01465{height:67.384687px;}
.h29_c01465{height:69.976406px;}
.h37_c01465{height:72.568125px;}
.h17_c01465{height:75.159844px;}
.h18_c01465{height:77.751563px;}
.h16_c01465{height:80.343281px;}
.h1e_c01465{height:82.935000px;}
.h19_c01465{height:88.118437px;}
.h2d_c01465{height:90.710156px;}
.h20_c01465{height:93.301875px;}
.h30_c01465{height:95.893594px;}
.h25_c01465{height:98.485312px;}
.h22_c01465{height:101.077031px;}
.h24_c01465{height:103.668750px;}
.h2c_c01465{height:106.260469px;}
.h23_c01465{height:108.852188px;}
.h3a_c01465{height:111.443906px;}
.h2a_c01465{height:116.627344px;}
.h2b_c01465{height:119.219062px;}
.h26_c01465{height:124.402500px;}
.h31_c01465{height:129.585938px;}
.h27_c01465{height:132.177656px;}
.h32_c01465{height:134.769375px;}
.hb_c01465{height:137.361094px;}
.h28_c01465{height:139.952812px;}
.h33_c01465{height:145.136250px;}
.h1f_c01465{height:147.727969px;}
.h3c_c01465{height:150.319687px;}
.h34_c01465{height:155.503125px;}
.h36_c01465{height:163.278281px;}
.h35_c01465{height:173.645156px;}
.h0_c01465{height:888.480000px;}
.h1_c01465{height:888.750000px;}
.w1_c01465{width:1308.750000px;}
.w0_c01465{width:1308.960000px;}
.x0_c01465{left:0.000000px;}
.x1_c01465{left:2.880000px;}
.xc3_c01465{left:10.800000px;}
.x3_c01465{left:15.120000px;}
.x15_c01465{left:17.280000px;}
.x5a_c01465{left:18.720000px;}
.x78_c01465{left:20.160000px;}
.x8c_c01465{left:21.600000px;}
.xbc_c01465{left:23.760000px;}
.xc4_c01465{left:28.080000px;}
.x8_c01465{left:31.680000px;}
.x6f_c01465{left:33.120000px;}
.xc9_c01465{left:43.200000px;}
.xca_c01465{left:44.640000px;}
.xc5_c01465{left:46.080000px;}
.x70_c01465{left:51.840000px;}
.x39_c01465{left:56.160000px;}
.xcb_c01465{left:57.600000px;}
.xc8_c01465{left:59.760000px;}
.x16_c01465{left:63.360000px;}
.xcc_c01465{left:72.720000px;}
.x4_c01465{left:75.600000px;}
.xaf_c01465{left:77.040000px;}
.x2f_c01465{left:88.560000px;}
.x9_c01465{left:91.440000px;}
.x2_c01465{left:96.480000px;}
.xcd_c01465{left:99.360000px;}
.xc6_c01465{left:105.840000px;}
.x17_c01465{left:119.520000px;}
.x5b_c01465{left:121.680000px;}
.x64_c01465{left:129.600000px;}
.x5_c01465{left:131.760000px;}
.xce_c01465{left:134.640000px;}
.x18_c01465{left:139.680000px;}
.xc7_c01465{left:142.560000px;}
.xcf_c01465{left:147.600000px;}
.x5c_c01465{left:149.040000px;}
.x79_c01465{left:151.200000px;}
.x3a_c01465{left:155.520000px;}
.x19_c01465{left:159.840000px;}
.xd0_c01465{left:165.600000px;}
.x3b_c01465{left:171.360000px;}
.x4d_c01465{left:177.840000px;}
.x5d_c01465{left:198.000000px;}
.x21_c01465{left:205.920000px;}
.x6_c01465{left:218.160000px;}
.x8d_c01465{left:227.520000px;}
.x4e_c01465{left:228.960000px;}
.x7a_c01465{left:231.840000px;}
.x3c_c01465{left:237.600000px;}
.xe_c01465{left:239.760000px;}
.xa1_c01465{left:248.400000px;}
.x49_c01465{left:249.840000px;}
.x81_c01465{left:259.920000px;}
.x7b_c01465{left:272.880000px;}
.x30_c01465{left:275.040000px;}
.x4f_c01465{left:276.480000px;}
.x1a_c01465{left:277.920000px;}
.x65_c01465{left:282.240000px;}
.x22_c01465{left:291.600000px;}
.x7_c01465{left:296.640000px;}
.x3d_c01465{left:298.080000px;}
.x31_c01465{left:300.240000px;}
.xbf_c01465{left:306.720000px;}
.xb0_c01465{left:317.520000px;}
.xd1_c01465{left:327.600000px;}
.x9b_c01465{left:334.080000px;}
.xf_c01465{left:337.680000px;}
.x9c_c01465{left:344.880000px;}
.x32_c01465{left:346.320000px;}
.x82_c01465{left:357.840000px;}
.x33_c01465{left:387.360000px;}
.x7c_c01465{left:395.280000px;}
.xc0_c01465{left:399.600000px;}
.xa8_c01465{left:401.040000px;}
.x5e_c01465{left:402.480000px;}
.x23_c01465{left:403.920000px;}
.xa2_c01465{left:407.520000px;}
.xe0_c01465{left:409.680000px;}
.x3e_c01465{left:412.560000px;}
.x10_c01465{left:414.000000px;}
.xb1_c01465{left:421.200000px;}
.x29_c01465{left:423.360000px;}
.x87_c01465{left:431.280000px;}
.x83_c01465{left:432.720000px;}
.x3f_c01465{left:486.000000px;}
.x9e_c01465{left:487.440000px;}
.x5f_c01465{left:488.880000px;}
.x24_c01465{left:490.320000px;}
.xe1_c01465{left:492.480000px;}
.x34_c01465{left:493.920000px;}
.x71_c01465{left:498.240000px;}
.x40_c01465{left:499.680000px;}
.x35_c01465{left:506.880000px;}
.x8e_c01465{left:508.320000px;}
.x11_c01465{left:510.480000px;}
.xbd_c01465{left:518.400000px;}
.x84_c01465{left:519.840000px;}
.x88_c01465{left:553.680000px;}
.x1b_c01465{left:559.440000px;}
.x72_c01465{left:568.080000px;}
.xc1_c01465{left:573.840000px;}
.x7d_c01465{left:575.280000px;}
.x25_c01465{left:576.720000px;}
.xe2_c01465{left:581.040000px;}
.x1c_c01465{left:582.480000px;}
.x41_c01465{left:585.360000px;}
.x75_c01465{left:589.680000px;}
.x1d_c01465{left:592.560000px;}
.xa3_c01465{left:594.720000px;}
.x66_c01465{left:596.160000px;}
.x12_c01465{left:597.600000px;}
.x60_c01465{left:635.760000px;}
.x8f_c01465{left:637.920000px;}
.x89_c01465{left:647.280000px;}
.x76_c01465{left:657.360000px;}
.xa9_c01465{left:660.960000px;}
.x26_c01465{left:663.120000px;}
.x90_c01465{left:670.320000px;}
.x50_c01465{left:672.480000px;}
.x13_c01465{left:673.920000px;}
.xa4_c01465{left:681.840000px;}
.x54_c01465{left:683.280000px;}
.x4a_c01465{left:684.720000px;}
.x67_c01465{left:693.360000px;}
.xb5_c01465{left:706.320000px;}
.x27_c01465{left:708.480000px;}
.x36_c01465{left:710.640000px;}
.x61_c01465{left:717.120000px;}
.x1e_c01465{left:719.280000px;}
.x7e_c01465{left:726.480000px;}
.x28_c01465{left:727.920000px;}
.x1f_c01465{left:730.080000px;}
.x73_c01465{left:735.120000px;}
.x42_c01465{left:736.560000px;}
.x91_c01465{left:745.200000px;}
.x9d_c01465{left:747.360000px;}
.xd2_c01465{left:749.520000px;}
.xaa_c01465{left:753.840000px;}
.xb2_c01465{left:756.720000px;}
.x6d_c01465{left:758.880000px;}
.x20_c01465{left:760.320000px;}
.xb6_c01465{left:761.760000px;}
.x86_c01465{left:763.920000px;}
.x55_c01465{left:766.800000px;}
.x2a_c01465{left:768.960000px;}
.x14_c01465{left:771.120000px;}
.x62_c01465{left:775.440000px;}
.xb7_c01465{left:777.600000px;}
.x37_c01465{left:779.040000px;}
.xab_c01465{left:796.320000px;}
.x92_c01465{left:801.360000px;}
.x6e_c01465{left:810.720000px;}
.x74_c01465{left:813.600000px;}
.x43_c01465{left:815.040000px;}
.x63_c01465{left:816.480000px;}
.x38_c01465{left:819.360000px;}
.xc2_c01465{left:833.040000px;}
.x8a_c01465{left:834.480000px;}
.x56_c01465{left:835.920000px;}
.xb8_c01465{left:842.400000px;}
.x7f_c01465{left:843.840000px;}
.x44_c01465{left:845.280000px;}
.xd3_c01465{left:846.720000px;}
.x93_c01465{left:853.920000px;}
.x68_c01465{left:856.080000px;}
.x2b_c01465{left:857.520000px;}
.x94_c01465{left:865.440000px;}
.x45_c01465{left:883.440000px;}
.x77_c01465{left:901.440000px;}
.x9f_c01465{left:906.480000px;}
.xd4_c01465{left:911.520000px;}
.xac_c01465{left:912.960000px;}
.xe3_c01465{left:918.000000px;}
.xb9_c01465{left:920.160000px;}
.x80_c01465{left:921.600000px;}
.x57_c01465{left:923.040000px;}
.xb3_c01465{left:925.920000px;}
.x95_c01465{left:927.360000px;}
.xd5_c01465{left:930.240000px;}
.x51_c01465{left:931.680000px;}
.x2c_c01465{left:933.120000px;}
.xbe_c01465{left:940.320000px;}
.x85_c01465{left:941.760000px;}
.x4b_c01465{left:943.920000px;}
.xb4_c01465{left:966.240000px;}
.x52_c01465{left:969.120000px;}
.x46_c01465{left:989.280000px;}
.xdc_c01465{left:997.920000px;}
.xe4_c01465{left:1005.120000px;}
.x8b_c01465{left:1007.280000px;}
.x58_c01465{left:1009.440000px;}
.x47_c01465{left:1017.360000px;}
.x2d_c01465{left:1019.520000px;}
.xdd_c01465{left:1021.680000px;}
.x96_c01465{left:1023.840000px;}
.x4c_c01465{left:1030.320000px;}
.xe5_c01465{left:1033.920000px;}
.xad_c01465{left:1038.960000px;}
.xde_c01465{left:1049.760000px;}
.xe6_c01465{left:1054.800000px;}
.xdf_c01465{left:1056.240000px;}
.x97_c01465{left:1062.720000px;}
.x98_c01465{left:1067.040000px;}
.xda_c01465{left:1068.480000px;}
.xe7_c01465{left:1074.960000px;}
.xd6_c01465{left:1080.000000px;}
.xba_c01465{left:1092.960000px;}
.xdb_c01465{left:1094.400000px;}
.x48_c01465{left:1095.840000px;}
.xd9_c01465{left:1098.000000px;}
.xa0_c01465{left:1102.320000px;}
.x53_c01465{left:1105.200000px;}
.x99_c01465{left:1114.560000px;}
.x2e_c01465{left:1116.720000px;}
.xd8_c01465{left:1118.160000px;}
.xd7_c01465{left:1143.360000px;}
.x9a_c01465{left:1152.720000px;}
.xb_c01465{left:1161.360000px;}
.x59_c01465{left:1162.800000px;}
.x6a_c01465{left:1166.400000px;}
.xae_c01465{left:1168.560000px;}
.xa5_c01465{left:1172.880000px;}
.x6b_c01465{left:1177.200000px;}
.xa6_c01465{left:1182.240000px;}
.xc_c01465{left:1184.400000px;}
.xa7_c01465{left:1190.160000px;}
.x69_c01465{left:1192.320000px;}
.xbb_c01465{left:1203.840000px;}
.x6c_c01465{left:1211.760000px;}
.xe9_c01465{left:1285.200000px;}
.xe8_c01465{left:1287.360000px;}
.xa_c01465{left:1288.800000px;}
.xd_c01465{left:1296.000000px;}
@media print{
.v2_c01465{vertical-align:-10.240000pt;}
.v5_c01465{vertical-align:-7.680000pt;}
.v4_c01465{vertical-align:-2.560000pt;}
.v0_c01465{vertical-align:0.000000pt;}
.v1_c01465{vertical-align:2.560000pt;}
.v3_c01465{vertical-align:7.680000pt;}
.v7_c01465{vertical-align:10.240000pt;}
.v6_c01465{vertical-align:15.360000pt;}
.ls1_c01465{letter-spacing:0.000000pt;}
.ls0_c01465{letter-spacing:210.734933pt;}
.ws6_c01465{word-spacing:0.000000pt;}
.ws0_c01465{word-spacing:3.755947pt;}
.ws4_c01465{word-spacing:87.448747pt;}
.ws5_c01465{word-spacing:125.698773pt;}
.ws3_c01465{word-spacing:145.894400pt;}
.ws1_c01465{word-spacing:202.708693pt;}
.ws2_c01465{word-spacing:214.161067pt;}
.fs3_c01465{font-size:2.560000pt;}
.fsc_c01465{font-size:5.120000pt;}
.fs35_c01465{font-size:5.333333pt;}
.fs11_c01465{font-size:7.680000pt;}
.fs0_c01465{font-size:10.240000pt;}
.fs1d_c01465{font-size:12.800000pt;}
.fs9_c01465{font-size:15.360000pt;}
.fsa_c01465{font-size:17.920000pt;}
.fsd_c01465{font-size:20.480000pt;}
.fs7_c01465{font-size:23.040000pt;}
.fs34_c01465{font-size:25.600000pt;}
.fs37_c01465{font-size:28.160000pt;}
.fs2_c01465{font-size:30.720000pt;}
.fs17_c01465{font-size:33.280000pt;}
.fs18_c01465{font-size:35.840000pt;}
.fs10_c01465{font-size:38.400000pt;}
.fs4_c01465{font-size:40.960000pt;}
.fs1_c01465{font-size:43.520000pt;}
.fs5_c01465{font-size:46.080000pt;}
.fsf_c01465{font-size:48.640000pt;}
.fs12_c01465{font-size:51.200000pt;}
.fse_c01465{font-size:53.760000pt;}
.fs2a_c01465{font-size:56.320000pt;}
.fs6_c01465{font-size:58.880000pt;}
.fsb_c01465{font-size:61.440000pt;}
.fs2b_c01465{font-size:64.000000pt;}
.fs19_c01465{font-size:66.560000pt;}
.fs25_c01465{font-size:69.120000pt;}
.fs33_c01465{font-size:71.680000pt;}
.fs14_c01465{font-size:74.240000pt;}
.fs15_c01465{font-size:76.800000pt;}
.fs13_c01465{font-size:79.360000pt;}
.fs1a_c01465{font-size:81.920000pt;}
.fs16_c01465{font-size:87.040000pt;}
.fs29_c01465{font-size:89.600000pt;}
.fs1c_c01465{font-size:92.160000pt;}
.fs2c_c01465{font-size:94.720000pt;}
.fs21_c01465{font-size:97.280000pt;}
.fs1e_c01465{font-size:99.840000pt;}
.fs20_c01465{font-size:102.400000pt;}
.fs28_c01465{font-size:104.960000pt;}
.fs1f_c01465{font-size:107.520000pt;}
.fs36_c01465{font-size:110.080000pt;}
.fs26_c01465{font-size:115.200000pt;}
.fs27_c01465{font-size:117.760000pt;}
.fs22_c01465{font-size:122.880000pt;}
.fs2d_c01465{font-size:128.000000pt;}
.fs23_c01465{font-size:130.560000pt;}
.fs2e_c01465{font-size:133.120000pt;}
.fs8_c01465{font-size:135.680000pt;}
.fs24_c01465{font-size:138.240000pt;}
.fs2f_c01465{font-size:143.360000pt;}
.fs1b_c01465{font-size:145.920000pt;}
.fs38_c01465{font-size:148.480000pt;}
.fs30_c01465{font-size:153.600000pt;}
.fs32_c01465{font-size:161.280000pt;}
.fs31_c01465{font-size:171.520000pt;}
.y0_c01465{bottom:0.000000pt;}
.y147_c01465{bottom:0.640000pt;}
.y149_c01465{bottom:7.040000pt;}
.y144_c01465{bottom:7.680000pt;}
.y143_c01465{bottom:9.600000pt;}
.y148_c01465{bottom:11.520000pt;}
.y14a_c01465{bottom:12.160000pt;}
.y128_c01465{bottom:12.800000pt;}
.y129_c01465{bottom:13.440000pt;}
.y126_c01465{bottom:14.080000pt;}
.y127_c01465{bottom:14.720000pt;}
.y146_c01465{bottom:15.360000pt;}
.y142_c01465{bottom:16.000000pt;}
.y145_c01465{bottom:16.640000pt;}
.y13f_c01465{bottom:24.960000pt;}
.y13c_c01465{bottom:26.880000pt;}
.y141_c01465{bottom:33.920000pt;}
.y13e_c01465{bottom:34.560000pt;}
.y13d_c01465{bottom:35.200000pt;}
.y140_c01465{bottom:39.040000pt;}
.y125_c01465{bottom:39.680000pt;}
.y2_c01465{bottom:42.240000pt;}
.y111_c01465{bottom:56.320000pt;}
.y124_c01465{bottom:59.520000pt;}
.y115_c01465{bottom:60.160000pt;}
.y123_c01465{bottom:60.800000pt;}
.y116_c01465{bottom:61.440000pt;}
.y114_c01465{bottom:62.080000pt;}
.y112_c01465{bottom:62.720000pt;}
.y113_c01465{bottom:63.360000pt;}
.y110_c01465{bottom:64.000000pt;}
.y109_c01465{bottom:73.600000pt;}
.y108_c01465{bottom:75.520000pt;}
.y10c_c01465{bottom:80.000000pt;}
.y10d_c01465{bottom:80.640000pt;}
.y10b_c01465{bottom:81.280000pt;}
.y10f_c01465{bottom:81.920000pt;}
.y106_c01465{bottom:82.560000pt;}
.y10e_c01465{bottom:83.840000pt;}
.y105_c01465{bottom:85.760000pt;}
.y107_c01465{bottom:86.400000pt;}
.y10a_c01465{bottom:87.040000pt;}
.y104_c01465{bottom:89.600000pt;}
.yff_c01465{bottom:97.920000pt;}
.yfe_c01465{bottom:99.200000pt;}
.yfa_c01465{bottom:99.840000pt;}
.y100_c01465{bottom:103.040000pt;}
.yfb_c01465{bottom:103.680000pt;}
.y103_c01465{bottom:104.320000pt;}
.yf9_c01465{bottom:104.960000pt;}
.y102_c01465{bottom:106.880000pt;}
.yfd_c01465{bottom:108.160000pt;}
.yf8_c01465{bottom:108.800000pt;}
.y101_c01465{bottom:109.440000pt;}
.yfc_c01465{bottom:110.080000pt;}
.yf7_c01465{bottom:117.120000pt;}
.yf6_c01465{bottom:119.680000pt;}
.yf5_c01465{bottom:120.960000pt;}
.yf2_c01465{bottom:126.720000pt;}
.yf3_c01465{bottom:127.360000pt;}
.yf4_c01465{bottom:128.000000pt;}
.yf1_c01465{bottom:129.920000pt;}
.yef_c01465{bottom:130.560000pt;}
.yee_c01465{bottom:131.200000pt;}
.yed_c01465{bottom:132.480000pt;}
.yec_c01465{bottom:133.120000pt;}
.yeb_c01465{bottom:133.760000pt;}
.yf0_c01465{bottom:135.040000pt;}
.ye6_c01465{bottom:144.000000pt;}
.ye5_c01465{bottom:144.640000pt;}
.ye0_c01465{bottom:145.920000pt;}
.ye4_c01465{bottom:146.560000pt;}
.ydf_c01465{bottom:147.200000pt;}
.ye8_c01465{bottom:149.120000pt;}
.ye7_c01465{bottom:149.760000pt;}
.ye9_c01465{bottom:150.400000pt;}
.ydd_c01465{bottom:152.320000pt;}
.ye3_c01465{bottom:153.600000pt;}
.ye2_c01465{bottom:154.240000pt;}
.yea_c01465{bottom:154.880000pt;}
.yde_c01465{bottom:155.520000pt;}
.ye1_c01465{bottom:156.160000pt;}
.yd4_c01465{bottom:164.480000pt;}
.yda_c01465{bottom:165.120000pt;}
.yd7_c01465{bottom:172.160000pt;}
.yd9_c01465{bottom:173.440000pt;}
.ydc_c01465{bottom:174.080000pt;}
.ydb_c01465{bottom:176.000000pt;}
.yd6_c01465{bottom:177.280000pt;}
.yd8_c01465{bottom:178.560000pt;}
.yd5_c01465{bottom:188.800000pt;}
.yd2_c01465{bottom:190.080000pt;}
.yd0_c01465{bottom:192.000000pt;}
.yd3_c01465{bottom:196.480000pt;}
.ycc_c01465{bottom:198.400000pt;}
.yd1_c01465{bottom:200.320000pt;}
.yc2_c01465{bottom:200.960000pt;}
.yc8_c01465{bottom:201.600000pt;}
.yc9_c01465{bottom:202.240000pt;}
.yc7_c01465{bottom:209.280000pt;}
.yc6_c01465{bottom:210.560000pt;}
.yc3_c01465{bottom:211.200000pt;}
.ycf_c01465{bottom:212.480000pt;}
.yc1_c01465{bottom:213.760000pt;}
.yc4_c01465{bottom:215.680000pt;}
.ycd_c01465{bottom:216.320000pt;}
.yca_c01465{bottom:219.520000pt;}
.ycb_c01465{bottom:220.160000pt;}
.yce_c01465{bottom:221.440000pt;}
.yc5_c01465{bottom:222.080000pt;}
.ybf_c01465{bottom:222.720000pt;}
.ybd_c01465{bottom:224.000000pt;}
.ybc_c01465{bottom:224.640000pt;}
.yc0_c01465{bottom:225.280000pt;}
.ybe_c01465{bottom:226.560000pt;}
.yb9_c01465{bottom:244.480000pt;}
.ybb_c01465{bottom:245.760000pt;}
.yba_c01465{bottom:246.400000pt;}
.yb8_c01465{bottom:247.040000pt;}
.yb6_c01465{bottom:247.680000pt;}
.yb7_c01465{bottom:249.600000pt;}
.yb1_c01465{bottom:250.880000pt;}
.yb4_c01465{bottom:257.280000pt;}
.yb5_c01465{bottom:265.600000pt;}
.y13b_c01465{bottom:266.240000pt;}
.yb3_c01465{bottom:268.800000pt;}
.yb2_c01465{bottom:269.440000pt;}
.yaf_c01465{bottom:282.240000pt;}
.yab_c01465{bottom:283.520000pt;}
.yae_c01465{bottom:284.800000pt;}
.ya9_c01465{bottom:286.080000pt;}
.yb0_c01465{bottom:288.000000pt;}
.yaa_c01465{bottom:288.640000pt;}
.ya8_c01465{bottom:290.560000pt;}
.y131_c01465{bottom:291.200000pt;}
.yad_c01465{bottom:291.840000pt;}
.yac_c01465{bottom:292.480000pt;}
.ya3_c01465{bottom:299.520000pt;}
.ya7_c01465{bottom:300.800000pt;}
.ya6_c01465{bottom:302.720000pt;}
.ya5_c01465{bottom:303.360000pt;}
.ya4_c01465{bottom:311.040000pt;}
.y13a_c01465{bottom:311.680000pt;}
.ya1_c01465{bottom:313.600000pt;}
.ya2_c01465{bottom:314.240000pt;}
.y9f_c01465{bottom:314.880000pt;}
.y9d_c01465{bottom:316.160000pt;}
.ya0_c01465{bottom:316.800000pt;}
.y9e_c01465{bottom:317.440000pt;}
.y139_c01465{bottom:326.400000pt;}
.y9a_c01465{bottom:328.960000pt;}
.y96_c01465{bottom:330.240000pt;}
.y99_c01465{bottom:330.880000pt;}
.y97_c01465{bottom:334.080000pt;}
.y95_c01465{bottom:334.720000pt;}
.y94_c01465{bottom:335.360000pt;}
.y9b_c01465{bottom:337.920000pt;}
.y9c_c01465{bottom:338.560000pt;}
.y98_c01465{bottom:339.840000pt;}
.y92_c01465{bottom:347.520000pt;}
.y8f_c01465{bottom:348.800000pt;}
.y91_c01465{bottom:357.120000pt;}
.y93_c01465{bottom:359.680000pt;}
.y138_c01465{bottom:360.960000pt;}
.y137_c01465{bottom:361.600000pt;}
.y8e_c01465{bottom:362.240000pt;}
.y90_c01465{bottom:362.880000pt;}
.y122_c01465{bottom:364.800000pt;}
.y121_c01465{bottom:373.120000pt;}
.y8c_c01465{bottom:374.400000pt;}
.y87_c01465{bottom:376.320000pt;}
.y89_c01465{bottom:379.520000pt;}
.y88_c01465{bottom:380.160000pt;}
.y84_c01465{bottom:380.800000pt;}
.y86_c01465{bottom:381.440000pt;}
.y85_c01465{bottom:382.080000pt;}
.y8d_c01465{bottom:384.000000pt;}
.y8b_c01465{bottom:384.640000pt;}
.y83_c01465{bottom:385.280000pt;}
.y8a_c01465{bottom:386.560000pt;}
.y82_c01465{bottom:395.520000pt;}
.y81_c01465{bottom:403.200000pt;}
.y11e_c01465{bottom:403.840000pt;}
.y120_c01465{bottom:404.480000pt;}
.y11f_c01465{bottom:405.120000pt;}
.y80_c01465{bottom:407.040000pt;}
.y7e_c01465{bottom:407.680000pt;}
.y7d_c01465{bottom:408.320000pt;}
.y7b_c01465{bottom:408.960000pt;}
.y7f_c01465{bottom:409.600000pt;}
.y7c_c01465{bottom:411.520000pt;}
.y75_c01465{bottom:419.840000pt;}
.y73_c01465{bottom:422.400000pt;}
.y79_c01465{bottom:426.880000pt;}
.y7a_c01465{bottom:427.520000pt;}
.y78_c01465{bottom:428.800000pt;}
.y77_c01465{bottom:429.440000pt;}
.y76_c01465{bottom:430.080000pt;}
.y72_c01465{bottom:431.360000pt;}
.y74_c01465{bottom:432.640000pt;}
.y70_c01465{bottom:439.040000pt;}
.y6b_c01465{bottom:440.960000pt;}
.y6a_c01465{bottom:443.520000pt;}
.y6f_c01465{bottom:448.640000pt;}
.y67_c01465{bottom:449.920000pt;}
.y66_c01465{bottom:450.560000pt;}
.y71_c01465{bottom:451.840000pt;}
.y6e_c01465{bottom:452.480000pt;}
.y6d_c01465{bottom:453.120000pt;}
.y6c_c01465{bottom:453.760000pt;}
.y68_c01465{bottom:456.320000pt;}
.y69_c01465{bottom:458.880000pt;}
.y59_c01465{bottom:464.000000pt;}
.y60_c01465{bottom:465.920000pt;}
.y5d_c01465{bottom:467.840000pt;}
.y5c_c01465{bottom:468.480000pt;}
.y62_c01465{bottom:469.120000pt;}
.y61_c01465{bottom:471.040000pt;}
.y63_c01465{bottom:471.680000pt;}
.y5b_c01465{bottom:472.960000pt;}
.y5a_c01465{bottom:473.600000pt;}
.y65_c01465{bottom:474.880000pt;}
.y64_c01465{bottom:476.160000pt;}
.y5f_c01465{bottom:476.800000pt;}
.y5e_c01465{bottom:477.440000pt;}
.y57_c01465{bottom:499.200000pt;}
.y55_c01465{bottom:499.840000pt;}
.y53_c01465{bottom:500.480000pt;}
.y56_c01465{bottom:501.120000pt;}
.y50_c01465{bottom:501.760000pt;}
.y4e_c01465{bottom:502.400000pt;}
.y51_c01465{bottom:503.040000pt;}
.y4f_c01465{bottom:503.680000pt;}
.y118_c01465{bottom:504.320000pt;}
.y4b_c01465{bottom:507.520000pt;}
.y54_c01465{bottom:514.560000pt;}
.y11d_c01465{bottom:517.120000pt;}
.y4d_c01465{bottom:519.040000pt;}
.y58_c01465{bottom:519.680000pt;}
.y4c_c01465{bottom:520.320000pt;}
.y4a_c01465{bottom:520.960000pt;}
.y48_c01465{bottom:521.600000pt;}
.y52_c01465{bottom:522.880000pt;}
.y46_c01465{bottom:523.520000pt;}
.y47_c01465{bottom:524.160000pt;}
.y43_c01465{bottom:529.920000pt;}
.y49_c01465{bottom:530.560000pt;}
.y45_c01465{bottom:533.120000pt;}
.y44_c01465{bottom:533.760000pt;}
.y11a_c01465{bottom:540.160000pt;}
.y11c_c01465{bottom:541.440000pt;}
.y42_c01465{bottom:542.720000pt;}
.y11b_c01465{bottom:543.360000pt;}
.y40_c01465{bottom:545.920000pt;}
.y3f_c01465{bottom:546.560000pt;}
.y41_c01465{bottom:547.200000pt;}
.y3e_c01465{bottom:547.840000pt;}
.y119_c01465{bottom:549.760000pt;}
.y3c_c01465{bottom:558.720000pt;}
.y38_c01465{bottom:560.000000pt;}
.y14d_c01465{bottom:561.280000pt;}
.y3a_c01465{bottom:564.480000pt;}
.y37_c01465{bottom:565.120000pt;}
.y35_c01465{bottom:565.760000pt;}
.y36_c01465{bottom:566.400000pt;}
.y3d_c01465{bottom:567.680000pt;}
.y3b_c01465{bottom:568.960000pt;}
.y39_c01465{bottom:569.600000pt;}
.y32_c01465{bottom:577.280000pt;}
.y14c_c01465{bottom:577.920000pt;}
.y34_c01465{bottom:578.560000pt;}
.y30_c01465{bottom:579.200000pt;}
.y33_c01465{bottom:579.840000pt;}
.y2f_c01465{bottom:580.480000pt;}
.y2e_c01465{bottom:581.120000pt;}
.y2b_c01465{bottom:586.240000pt;}
.y31_c01465{bottom:587.520000pt;}
.y2d_c01465{bottom:588.160000pt;}
.y2c_c01465{bottom:589.440000pt;}
.y2a_c01465{bottom:590.720000pt;}
.y28_c01465{bottom:592.640000pt;}
.y26_c01465{bottom:593.280000pt;}
.y29_c01465{bottom:593.920000pt;}
.y27_c01465{bottom:594.560000pt;}
.y25_c01465{bottom:595.840000pt;}
.y24_c01465{bottom:596.480000pt;}
.y23_c01465{bottom:606.080000pt;}
.y1e_c01465{bottom:608.640000pt;}
.y20_c01465{bottom:609.920000pt;}
.y1f_c01465{bottom:610.560000pt;}
.y1d_c01465{bottom:611.200000pt;}
.y1c_c01465{bottom:611.840000pt;}
.y135_c01465{bottom:614.400000pt;}
.y134_c01465{bottom:615.040000pt;}
.y22_c01465{bottom:615.680000pt;}
.y12a_c01465{bottom:616.320000pt;}
.y21_c01465{bottom:617.600000pt;}
.y1b_c01465{bottom:625.280000pt;}
.y1a_c01465{bottom:626.560000pt;}
.y19_c01465{bottom:627.200000pt;}
.y16_c01465{bottom:634.240000pt;}
.y18_c01465{bottom:634.880000pt;}
.y17_c01465{bottom:635.520000pt;}
.y130_c01465{bottom:639.360000pt;}
.y133_c01465{bottom:640.000000pt;}
.y15_c01465{bottom:640.640000pt;}
.y11_c01465{bottom:641.920000pt;}
.y12_c01465{bottom:642.560000pt;}
.y14_c01465{bottom:643.200000pt;}
.y13_c01465{bottom:643.840000pt;}
.y10_c01465{bottom:654.080000pt;}
.yf_c01465{bottom:654.720000pt;}
.ye_c01465{bottom:659.200000pt;}
.y12c_c01465{bottom:664.960000pt;}
.y12f_c01465{bottom:665.600000pt;}
.y12e_c01465{bottom:666.240000pt;}
.yc_c01465{bottom:666.880000pt;}
.y12d_c01465{bottom:667.520000pt;}
.yd_c01465{bottom:668.800000pt;}
.y12b_c01465{bottom:669.440000pt;}
.y14b_c01465{bottom:679.040000pt;}
.y136_c01465{bottom:680.320000pt;}
.y132_c01465{bottom:680.960000pt;}
.y117_c01465{bottom:684.800000pt;}
.y8_c01465{bottom:703.360000pt;}
.y9_c01465{bottom:707.200000pt;}
.ya_c01465{bottom:709.120000pt;}
.y7_c01465{bottom:712.960000pt;}
.y6_c01465{bottom:714.880000pt;}
.y5_c01465{bottom:716.160000pt;}
.y3_c01465{bottom:732.160000pt;}
.y4_c01465{bottom:737.280000pt;}
.yb_c01465{bottom:755.840000pt;}
.y1_c01465{bottom:787.200000pt;}
.h5_c01465{height:2.303750pt;}
.hf_c01465{height:4.607500pt;}
.h39_c01465{height:4.799479pt;}
.ha_c01465{height:4.863750pt;}
.h14_c01465{height:6.911250pt;}
.h2_c01465{height:9.215000pt;}
.h21_c01465{height:11.518750pt;}
.hc_c01465{height:13.822500pt;}
.hd_c01465{height:16.126250pt;}
.h10_c01465{height:18.430000pt;}
.h9_c01465{height:20.733750pt;}
.h38_c01465{height:23.037500pt;}
.h3b_c01465{height:25.341250pt;}
.h4_c01465{height:27.645000pt;}
.h1a_c01465{height:29.948750pt;}
.h1b_c01465{height:32.252500pt;}
.h13_c01465{height:34.556250pt;}
.h6_c01465{height:36.860000pt;}
.h3_c01465{height:39.163750pt;}
.h7_c01465{height:41.467500pt;}
.h12_c01465{height:43.771250pt;}
.h15_c01465{height:46.075000pt;}
.h11_c01465{height:48.378750pt;}
.h1d_c01465{height:49.147500pt;}
.h2e_c01465{height:50.682500pt;}
.h8_c01465{height:52.986250pt;}
.he_c01465{height:55.290000pt;}
.h2f_c01465{height:57.593750pt;}
.h1c_c01465{height:59.897500pt;}
.h29_c01465{height:62.201250pt;}
.h37_c01465{height:64.505000pt;}
.h17_c01465{height:66.808750pt;}
.h18_c01465{height:69.112500pt;}
.h16_c01465{height:71.416250pt;}
.h1e_c01465{height:73.720000pt;}
.h19_c01465{height:78.327500pt;}
.h2d_c01465{height:80.631250pt;}
.h20_c01465{height:82.935000pt;}
.h30_c01465{height:85.238750pt;}
.h25_c01465{height:87.542500pt;}
.h22_c01465{height:89.846250pt;}
.h24_c01465{height:92.150000pt;}
.h2c_c01465{height:94.453750pt;}
.h23_c01465{height:96.757500pt;}
.h3a_c01465{height:99.061250pt;}
.h2a_c01465{height:103.668750pt;}
.h2b_c01465{height:105.972500pt;}
.h26_c01465{height:110.580000pt;}
.h31_c01465{height:115.187500pt;}
.h27_c01465{height:117.491250pt;}
.h32_c01465{height:119.795000pt;}
.hb_c01465{height:122.098750pt;}
.h28_c01465{height:124.402500pt;}
.h33_c01465{height:129.010000pt;}
.h1f_c01465{height:131.313750pt;}
.h3c_c01465{height:133.617500pt;}
.h34_c01465{height:138.225000pt;}
.h36_c01465{height:145.136250pt;}
.h35_c01465{height:154.351250pt;}
.h0_c01465{height:789.760000pt;}
.h1_c01465{height:790.000000pt;}
.w1_c01465{width:1163.333333pt;}
.w0_c01465{width:1163.520000pt;}
.x0_c01465{left:0.000000pt;}
.x1_c01465{left:2.560000pt;}
.xc3_c01465{left:9.600000pt;}
.x3_c01465{left:13.440000pt;}
.x15_c01465{left:15.360000pt;}
.x5a_c01465{left:16.640000pt;}
.x78_c01465{left:17.920000pt;}
.x8c_c01465{left:19.200000pt;}
.xbc_c01465{left:21.120000pt;}
.xc4_c01465{left:24.960000pt;}
.x8_c01465{left:28.160000pt;}
.x6f_c01465{left:29.440000pt;}
.xc9_c01465{left:38.400000pt;}
.xca_c01465{left:39.680000pt;}
.xc5_c01465{left:40.960000pt;}
.x70_c01465{left:46.080000pt;}
.x39_c01465{left:49.920000pt;}
.xcb_c01465{left:51.200000pt;}
.xc8_c01465{left:53.120000pt;}
.x16_c01465{left:56.320000pt;}
.xcc_c01465{left:64.640000pt;}
.x4_c01465{left:67.200000pt;}
.xaf_c01465{left:68.480000pt;}
.x2f_c01465{left:78.720000pt;}
.x9_c01465{left:81.280000pt;}
.x2_c01465{left:85.760000pt;}
.xcd_c01465{left:88.320000pt;}
.xc6_c01465{left:94.080000pt;}
.x17_c01465{left:106.240000pt;}
.x5b_c01465{left:108.160000pt;}
.x64_c01465{left:115.200000pt;}
.x5_c01465{left:117.120000pt;}
.xce_c01465{left:119.680000pt;}
.x18_c01465{left:124.160000pt;}
.xc7_c01465{left:126.720000pt;}
.xcf_c01465{left:131.200000pt;}
.x5c_c01465{left:132.480000pt;}
.x79_c01465{left:134.400000pt;}
.x3a_c01465{left:138.240000pt;}
.x19_c01465{left:142.080000pt;}
.xd0_c01465{left:147.200000pt;}
.x3b_c01465{left:152.320000pt;}
.x4d_c01465{left:158.080000pt;}
.x5d_c01465{left:176.000000pt;}
.x21_c01465{left:183.040000pt;}
.x6_c01465{left:193.920000pt;}
.x8d_c01465{left:202.240000pt;}
.x4e_c01465{left:203.520000pt;}
.x7a_c01465{left:206.080000pt;}
.x3c_c01465{left:211.200000pt;}
.xe_c01465{left:213.120000pt;}
.xa1_c01465{left:220.800000pt;}
.x49_c01465{left:222.080000pt;}
.x81_c01465{left:231.040000pt;}
.x7b_c01465{left:242.560000pt;}
.x30_c01465{left:244.480000pt;}
.x4f_c01465{left:245.760000pt;}
.x1a_c01465{left:247.040000pt;}
.x65_c01465{left:250.880000pt;}
.x22_c01465{left:259.200000pt;}
.x7_c01465{left:263.680000pt;}
.x3d_c01465{left:264.960000pt;}
.x31_c01465{left:266.880000pt;}
.xbf_c01465{left:272.640000pt;}
.xb0_c01465{left:282.240000pt;}
.xd1_c01465{left:291.200000pt;}
.x9b_c01465{left:296.960000pt;}
.xf_c01465{left:300.160000pt;}
.x9c_c01465{left:306.560000pt;}
.x32_c01465{left:307.840000pt;}
.x82_c01465{left:318.080000pt;}
.x33_c01465{left:344.320000pt;}
.x7c_c01465{left:351.360000pt;}
.xc0_c01465{left:355.200000pt;}
.xa8_c01465{left:356.480000pt;}
.x5e_c01465{left:357.760000pt;}
.x23_c01465{left:359.040000pt;}
.xa2_c01465{left:362.240000pt;}
.xe0_c01465{left:364.160000pt;}
.x3e_c01465{left:366.720000pt;}
.x10_c01465{left:368.000000pt;}
.xb1_c01465{left:374.400000pt;}
.x29_c01465{left:376.320000pt;}
.x87_c01465{left:383.360000pt;}
.x83_c01465{left:384.640000pt;}
.x3f_c01465{left:432.000000pt;}
.x9e_c01465{left:433.280000pt;}
.x5f_c01465{left:434.560000pt;}
.x24_c01465{left:435.840000pt;}
.xe1_c01465{left:437.760000pt;}
.x34_c01465{left:439.040000pt;}
.x71_c01465{left:442.880000pt;}
.x40_c01465{left:444.160000pt;}
.x35_c01465{left:450.560000pt;}
.x8e_c01465{left:451.840000pt;}
.x11_c01465{left:453.760000pt;}
.xbd_c01465{left:460.800000pt;}
.x84_c01465{left:462.080000pt;}
.x88_c01465{left:492.160000pt;}
.x1b_c01465{left:497.280000pt;}
.x72_c01465{left:504.960000pt;}
.xc1_c01465{left:510.080000pt;}
.x7d_c01465{left:511.360000pt;}
.x25_c01465{left:512.640000pt;}
.xe2_c01465{left:516.480000pt;}
.x1c_c01465{left:517.760000pt;}
.x41_c01465{left:520.320000pt;}
.x75_c01465{left:524.160000pt;}
.x1d_c01465{left:526.720000pt;}
.xa3_c01465{left:528.640000pt;}
.x66_c01465{left:529.920000pt;}
.x12_c01465{left:531.200000pt;}
.x60_c01465{left:565.120000pt;}
.x8f_c01465{left:567.040000pt;}
.x89_c01465{left:575.360000pt;}
.x76_c01465{left:584.320000pt;}
.xa9_c01465{left:587.520000pt;}
.x26_c01465{left:589.440000pt;}
.x90_c01465{left:595.840000pt;}
.x50_c01465{left:597.760000pt;}
.x13_c01465{left:599.040000pt;}
.xa4_c01465{left:606.080000pt;}
.x54_c01465{left:607.360000pt;}
.x4a_c01465{left:608.640000pt;}
.x67_c01465{left:616.320000pt;}
.xb5_c01465{left:627.840000pt;}
.x27_c01465{left:629.760000pt;}
.x36_c01465{left:631.680000pt;}
.x61_c01465{left:637.440000pt;}
.x1e_c01465{left:639.360000pt;}
.x7e_c01465{left:645.760000pt;}
.x28_c01465{left:647.040000pt;}
.x1f_c01465{left:648.960000pt;}
.x73_c01465{left:653.440000pt;}
.x42_c01465{left:654.720000pt;}
.x91_c01465{left:662.400000pt;}
.x9d_c01465{left:664.320000pt;}
.xd2_c01465{left:666.240000pt;}
.xaa_c01465{left:670.080000pt;}
.xb2_c01465{left:672.640000pt;}
.x6d_c01465{left:674.560000pt;}
.x20_c01465{left:675.840000pt;}
.xb6_c01465{left:677.120000pt;}
.x86_c01465{left:679.040000pt;}
.x55_c01465{left:681.600000pt;}
.x2a_c01465{left:683.520000pt;}
.x14_c01465{left:685.440000pt;}
.x62_c01465{left:689.280000pt;}
.xb7_c01465{left:691.200000pt;}
.x37_c01465{left:692.480000pt;}
.xab_c01465{left:707.840000pt;}
.x92_c01465{left:712.320000pt;}
.x6e_c01465{left:720.640000pt;}
.x74_c01465{left:723.200000pt;}
.x43_c01465{left:724.480000pt;}
.x63_c01465{left:725.760000pt;}
.x38_c01465{left:728.320000pt;}
.xc2_c01465{left:740.480000pt;}
.x8a_c01465{left:741.760000pt;}
.x56_c01465{left:743.040000pt;}
.xb8_c01465{left:748.800000pt;}
.x7f_c01465{left:750.080000pt;}
.x44_c01465{left:751.360000pt;}
.xd3_c01465{left:752.640000pt;}
.x93_c01465{left:759.040000pt;}
.x68_c01465{left:760.960000pt;}
.x2b_c01465{left:762.240000pt;}
.x94_c01465{left:769.280000pt;}
.x45_c01465{left:785.280000pt;}
.x77_c01465{left:801.280000pt;}
.x9f_c01465{left:805.760000pt;}
.xd4_c01465{left:810.240000pt;}
.xac_c01465{left:811.520000pt;}
.xe3_c01465{left:816.000000pt;}
.xb9_c01465{left:817.920000pt;}
.x80_c01465{left:819.200000pt;}
.x57_c01465{left:820.480000pt;}
.xb3_c01465{left:823.040000pt;}
.x95_c01465{left:824.320000pt;}
.xd5_c01465{left:826.880000pt;}
.x51_c01465{left:828.160000pt;}
.x2c_c01465{left:829.440000pt;}
.xbe_c01465{left:835.840000pt;}
.x85_c01465{left:837.120000pt;}
.x4b_c01465{left:839.040000pt;}
.xb4_c01465{left:858.880000pt;}
.x52_c01465{left:861.440000pt;}
.x46_c01465{left:879.360000pt;}
.xdc_c01465{left:887.040000pt;}
.xe4_c01465{left:893.440000pt;}
.x8b_c01465{left:895.360000pt;}
.x58_c01465{left:897.280000pt;}
.x47_c01465{left:904.320000pt;}
.x2d_c01465{left:906.240000pt;}
.xdd_c01465{left:908.160000pt;}
.x96_c01465{left:910.080000pt;}
.x4c_c01465{left:915.840000pt;}
.xe5_c01465{left:919.040000pt;}
.xad_c01465{left:923.520000pt;}
.xde_c01465{left:933.120000pt;}
.xe6_c01465{left:937.600000pt;}
.xdf_c01465{left:938.880000pt;}
.x97_c01465{left:944.640000pt;}
.x98_c01465{left:948.480000pt;}
.xda_c01465{left:949.760000pt;}
.xe7_c01465{left:955.520000pt;}
.xd6_c01465{left:960.000000pt;}
.xba_c01465{left:971.520000pt;}
.xdb_c01465{left:972.800000pt;}
.x48_c01465{left:974.080000pt;}
.xd9_c01465{left:976.000000pt;}
.xa0_c01465{left:979.840000pt;}
.x53_c01465{left:982.400000pt;}
.x99_c01465{left:990.720000pt;}
.x2e_c01465{left:992.640000pt;}
.xd8_c01465{left:993.920000pt;}
.xd7_c01465{left:1016.320000pt;}
.x9a_c01465{left:1024.640000pt;}
.xb_c01465{left:1032.320000pt;}
.x59_c01465{left:1033.600000pt;}
.x6a_c01465{left:1036.800000pt;}
.xae_c01465{left:1038.720000pt;}
.xa5_c01465{left:1042.560000pt;}
.x6b_c01465{left:1046.400000pt;}
.xa6_c01465{left:1050.880000pt;}
.xc_c01465{left:1052.800000pt;}
.xa7_c01465{left:1057.920000pt;}
.x69_c01465{left:1059.840000pt;}
.xbb_c01465{left:1070.080000pt;}
.x6c_c01465{left:1077.120000pt;}
.xe9_c01465{left:1142.400000pt;}
.xe8_c01465{left:1144.320000pt;}
.xa_c01465{left:1145.600000pt;}
.xd_c01465{left:1152.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_c01466 {
    display:none;
  }
  .loading-indicator_c01466.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01466 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01466 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01466" -> "#page-container .classname_c01466")
 */
.pf_c01466 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01466 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01466.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01466 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01466 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01466 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01466 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01466 {overflow:visible;}
  }
}
.c_c01466 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01466 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01466:after { /* webkit #35443 */
  content: '';
}
.t_c01466:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01466 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01466 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01466 { /* info for Javascript */
  display:none;
}
.l_c01466 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01466 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01466 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01466:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01466{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01466;src:url('chunks/assets/font_f1f607a7d31dc09336c005e2.woff2')format("woff");}.ff1_c01466{font-family:ff1_c01466;line-height:1.109863;font-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_c01466{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_c01466{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);}
.m50_c01466{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m46_c01466{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m51_c01466{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m6_c01466{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01466{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m4d_c01466{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m56_c01466{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m53_c01466{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m32_c01466{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m21_c01466{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.me_c01466{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01466{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m17_c01466{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m0_c01466{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m27_c01466{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m33_c01466{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);}
.m4f_c01466{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01466{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);}
.m37_c01466{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m5c_c01466{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);}
.m12_c01466{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01466{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.mb_c01466{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);}
.m55_c01466{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01466{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);}
.m49_c01466{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m5_c01466{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m16_c01466{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01466{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);}
.m22_c01466{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);}
.m1f_c01466{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01466{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m36_c01466{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m14_c01466{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);}
.m43_c01466{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01466{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);}
.m5b_c01466{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m3_c01466{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);}
.m4e_c01466{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01466{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m1_c01466{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m58_c01466{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);}
.m44_c01466{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m2_c01466{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m26_c01466{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);}
.m40_c01466{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01466{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);}
.m23_c01466{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m20_c01466{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01466{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m4_c01466{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);}
.m31_c01466{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m7_c01466{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.mc_c01466{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m25_c01466{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);}
.m35_c01466{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m13_c01466{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m29_c01466{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m39_c01466{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01466{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m15_c01466{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);}
.m24_c01466{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);}
.mf_c01466{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m41_c01466{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.md_c01466{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);}
.m11_c01466{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m18_c01466{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m30_c01466{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01466{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_c01466{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01466{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01466{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01466{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);}
.m4a_c01466{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);}
.m10_c01466{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);}
.m54_c01466{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m57_c01466{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m9_c01466{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01466{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01466{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m34_c01466{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m47_c01466{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m48_c01466{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);}
.m59_c01466{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);}
.m5a_c01466{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m42_c01466{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m38_c01466{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);}
.m3f_c01466{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01466{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m45_c01466{transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);}
.m52_c01466{transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);}
.v1_c01466{vertical-align:-2.880000px;}
.v0_c01466{vertical-align:0.000000px;}
.ls0_c01466{letter-spacing:0.000000px;}
.sc__c01466{text-shadow:none;}
.sc0_c01466{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01466{-webkit-text-stroke:0px transparent;}
.sc0_c01466{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01466{word-spacing:-4.336080px;}
.ws1_c01466{word-spacing:0.000000px;}
.fc0_c01466{color:transparent;}
.fs6_c01466{font-size:34.560000px;}
.fs4_c01466{font-size:37.440000px;}
.fse_c01466{font-size:40.320000px;}
.fsc_c01466{font-size:43.200000px;}
.fs3_c01466{font-size:46.080000px;}
.fs2_c01466{font-size:48.960000px;}
.fs1_c01466{font-size:51.840000px;}
.fs9_c01466{font-size:54.720000px;}
.fsa_c01466{font-size:57.600000px;}
.fs5_c01466{font-size:60.480000px;}
.fs8_c01466{font-size:63.360000px;}
.fsb_c01466{font-size:66.240000px;}
.fs7_c01466{font-size:69.120000px;}
.fsd_c01466{font-size:72.000000px;}
.fs0_c01466{font-size:74.880000px;}
.y0_c01466{bottom:0.000000px;}
.y6b_c01466{bottom:46.800000px;}
.y6a_c01466{bottom:48.240000px;}
.y69_c01466{bottom:48.960000px;}
.y6c_c01466{bottom:49.680000px;}
.y6d_c01466{bottom:50.400000px;}
.y6e_c01466{bottom:51.840000px;}
.y66_c01466{bottom:101.520000px;}
.y68_c01466{bottom:102.960000px;}
.y67_c01466{bottom:103.680000px;}
.y65_c01466{bottom:146.160000px;}
.y63_c01466{bottom:146.880000px;}
.y62_c01466{bottom:147.600000px;}
.y64_c01466{bottom:149.040000px;}
.y5d_c01466{bottom:187.200000px;}
.y5f_c01466{bottom:189.360000px;}
.y5e_c01466{bottom:190.080000px;}
.y60_c01466{bottom:190.800000px;}
.y61_c01466{bottom:192.240000px;}
.y5a_c01466{bottom:230.400000px;}
.y59_c01466{bottom:232.560000px;}
.y58_c01466{bottom:233.280000px;}
.y5b_c01466{bottom:234.720000px;}
.y5c_c01466{bottom:235.440000px;}
.y53_c01466{bottom:273.600000px;}
.y54_c01466{bottom:274.320000px;}
.y55_c01466{bottom:275.040000px;}
.y52_c01466{bottom:276.480000px;}
.y56_c01466{bottom:277.200000px;}
.y57_c01466{bottom:277.920000px;}
.y4e_c01466{bottom:317.520000px;}
.y4f_c01466{bottom:318.240000px;}
.y50_c01466{bottom:318.960000px;}
.y4d_c01466{bottom:319.680000px;}
.y4c_c01466{bottom:320.400000px;}
.y51_c01466{bottom:321.840000px;}
.y4a_c01466{bottom:360.720000px;}
.y4b_c01466{bottom:362.880000px;}
.y49_c01466{bottom:363.600000px;}
.y44_c01466{bottom:403.200000px;}
.y45_c01466{bottom:403.920000px;}
.y46_c01466{bottom:405.360000px;}
.y47_c01466{bottom:406.080000px;}
.y48_c01466{bottom:406.800000px;}
.y42_c01466{bottom:445.680000px;}
.y43_c01466{bottom:447.840000px;}
.y41_c01466{bottom:448.560000px;}
.y40_c01466{bottom:449.280000px;}
.y3d_c01466{bottom:488.160000px;}
.y3f_c01466{bottom:489.600000px;}
.y3c_c01466{bottom:491.040000px;}
.y3b_c01466{bottom:491.760000px;}
.y3e_c01466{bottom:492.480000px;}
.y38_c01466{bottom:542.160000px;}
.y3a_c01466{bottom:543.600000px;}
.y37_c01466{bottom:545.040000px;}
.y39_c01466{bottom:545.760000px;}
.y36_c01466{bottom:585.360000px;}
.y34_c01466{bottom:586.800000px;}
.y33_c01466{bottom:588.240000px;}
.y35_c01466{bottom:588.960000px;}
.y32_c01466{bottom:628.560000px;}
.y30_c01466{bottom:630.720000px;}
.y31_c01466{bottom:631.440000px;}
.y2e_c01466{bottom:670.320000px;}
.y2d_c01466{bottom:671.040000px;}
.y2f_c01466{bottom:671.760000px;}
.y2c_c01466{bottom:672.480000px;}
.y2b_c01466{bottom:673.920000px;}
.y29_c01466{bottom:713.520000px;}
.y2a_c01466{bottom:714.960000px;}
.y27_c01466{bottom:716.400000px;}
.y28_c01466{bottom:717.120000px;}
.y25_c01466{bottom:756.720000px;}
.y23_c01466{bottom:757.440000px;}
.y22_c01466{bottom:758.160000px;}
.y26_c01466{bottom:758.880000px;}
.y21_c01466{bottom:759.600000px;}
.y24_c01466{bottom:760.320000px;}
.y20_c01466{bottom:798.480000px;}
.y1e_c01466{bottom:799.200000px;}
.y1f_c01466{bottom:799.920000px;}
.y1c_c01466{bottom:800.640000px;}
.y1b_c01466{bottom:802.800000px;}
.y1d_c01466{bottom:803.520000px;}
.y1a_c01466{bottom:842.400000px;}
.y17_c01466{bottom:843.840000px;}
.y19_c01466{bottom:845.280000px;}
.y18_c01466{bottom:846.000000px;}
.y16_c01466{bottom:846.720000px;}
.y12_c01466{bottom:897.120000px;}
.y13_c01466{bottom:897.840000px;}
.y15_c01466{bottom:898.560000px;}
.y14_c01466{bottom:900.000000px;}
.yd_c01466{bottom:939.600000px;}
.yf_c01466{bottom:940.320000px;}
.ye_c01466{bottom:941.040000px;}
.y10_c01466{bottom:941.760000px;}
.y11_c01466{bottom:942.480000px;}
.yb_c01466{bottom:982.080000px;}
.ya_c01466{bottom:982.800000px;}
.yc_c01466{bottom:984.240000px;}
.y8_c01466{bottom:984.960000px;}
.y9_c01466{bottom:985.680000px;}
.y6_c01466{bottom:1024.560000px;}
.y4_c01466{bottom:1025.280000px;}
.y3_c01466{bottom:1026.000000px;}
.y7_c01466{bottom:1026.720000px;}
.y5_c01466{bottom:1027.440000px;}
.y2_c01466{bottom:1028.160000px;}
.y1_c01466{bottom:1093.680000px;}
.h8_c01466{height:31.100625px;}
.h6_c01466{height:33.692344px;}
.h10_c01466{height:36.284062px;}
.he_c01466{height:38.875781px;}
.h5_c01466{height:41.467500px;}
.h4_c01466{height:44.059219px;}
.h3_c01466{height:46.650937px;}
.hb_c01466{height:49.242656px;}
.hc_c01466{height:51.834375px;}
.h7_c01466{height:54.426094px;}
.ha_c01466{height:57.017812px;}
.hd_c01466{height:59.609531px;}
.h9_c01466{height:62.201250px;}
.hf_c01466{height:64.792969px;}
.h2_c01466{height:67.384687px;}
.h1_c01466{height:1151.250000px;}
.h0_c01466{height:1151.280000px;}
.w1_c01466{width:768.750000px;}
.w0_c01466{width:768.960000px;}
.x0_c01466{left:0.000000px;}
.x1b_c01466{left:47.520000px;}
.x9_c01466{left:48.960000px;}
.x43_c01466{left:50.400000px;}
.xa_c01466{left:79.200000px;}
.x2e_c01466{left:90.720000px;}
.x37_c01466{left:100.800000px;}
.xb_c01466{left:112.320000px;}
.x48_c01466{left:123.120000px;}
.x3e_c01466{left:133.920000px;}
.x2f_c01466{left:144.720000px;}
.x2_c01466{left:155.520000px;}
.x4d_c01466{left:156.960000px;}
.x1c_c01466{left:166.320000px;}
.x29_c01466{left:177.120000px;}
.x3_c01466{left:187.920000px;}
.x3b_c01466{left:196.560000px;}
.x1d_c01466{left:198.000000px;}
.x4e_c01466{left:199.440000px;}
.xc_c01466{left:209.520000px;}
.x49_c01466{left:220.320000px;}
.x2a_c01466{left:221.760000px;}
.x3f_c01466{left:231.840000px;}
.xd_c01466{left:241.920000px;}
.x33_c01466{left:252.720000px;}
.x30_c01466{left:254.160000px;}
.x13_c01466{left:263.520000px;}
.x4_c01466{left:274.320000px;}
.x1f_c01466{left:285.120000px;}
.x46_c01466{left:296.640000px;}
.x14_c01466{left:306.720000px;}
.x5_c01466{left:318.240000px;}
.x31_c01466{left:328.320000px;}
.x38_c01466{left:329.760000px;}
.x6_c01466{left:339.120000px;}
.xe_c01466{left:349.920000px;}
.x47_c01466{left:360.000000px;}
.x1e_c01466{left:361.440000px;}
.xf_c01466{left:372.240000px;}
.x15_c01466{left:382.320000px;}
.x20_c01466{left:393.120000px;}
.x39_c01466{left:403.200000px;}
.x2b_c01466{left:414.720000px;}
.x16_c01466{left:424.080000px;}
.x21_c01466{left:425.520000px;}
.x23_c01466{left:436.320000px;}
.x40_c01466{left:447.120000px;}
.x32_c01466{left:457.200000px;}
.x3c_c01466{left:468.720000px;}
.x7_c01466{left:479.520000px;}
.x10_c01466{left:490.320000px;}
.x3a_c01466{left:499.680000px;}
.x24_c01466{left:501.120000px;}
.x4a_c01466{left:511.920000px;}
.x17_c01466{left:522.000000px;}
.x22_c01466{left:532.800000px;}
.x44_c01466{left:542.160000px;}
.x4b_c01466{left:543.600000px;}
.x25_c01466{left:554.400000px;}
.x18_c01466{left:564.480000px;}
.x41_c01466{left:574.560000px;}
.x26_c01466{left:576.720000px;}
.x45_c01466{left:586.080000px;}
.x36_c01466{left:596.880000px;}
.x8_c01466{left:609.120000px;}
.x34_c01466{left:617.760000px;}
.x2c_c01466{left:619.200000px;}
.x3d_c01466{left:628.560000px;}
.x19_c01466{left:630.720000px;}
.x27_c01466{left:640.080000px;}
.x11_c01466{left:641.520000px;}
.x2d_c01466{left:650.160000px;}
.x35_c01466{left:652.320000px;}
.x1a_c01466{left:662.400000px;}
.x4c_c01466{left:671.760000px;}
.x12_c01466{left:673.920000px;}
.x1_c01466{left:679.680000px;}
.x42_c01466{left:683.280000px;}
.x28_c01466{left:684.720000px;}
@media print{
.v1_c01466{vertical-align:-2.560000pt;}
.v0_c01466{vertical-align:0.000000pt;}
.ls0_c01466{letter-spacing:0.000000pt;}
.ws0_c01466{word-spacing:-3.854293pt;}
.ws1_c01466{word-spacing:0.000000pt;}
.fs6_c01466{font-size:30.720000pt;}
.fs4_c01466{font-size:33.280000pt;}
.fse_c01466{font-size:35.840000pt;}
.fsc_c01466{font-size:38.400000pt;}
.fs3_c01466{font-size:40.960000pt;}
.fs2_c01466{font-size:43.520000pt;}
.fs1_c01466{font-size:46.080000pt;}
.fs9_c01466{font-size:48.640000pt;}
.fsa_c01466{font-size:51.200000pt;}
.fs5_c01466{font-size:53.760000pt;}
.fs8_c01466{font-size:56.320000pt;}
.fsb_c01466{font-size:58.880000pt;}
.fs7_c01466{font-size:61.440000pt;}
.fsd_c01466{font-size:64.000000pt;}
.fs0_c01466{font-size:66.560000pt;}
.y0_c01466{bottom:0.000000pt;}
.y6b_c01466{bottom:41.600000pt;}
.y6a_c01466{bottom:42.880000pt;}
.y69_c01466{bottom:43.520000pt;}
.y6c_c01466{bottom:44.160000pt;}
.y6d_c01466{bottom:44.800000pt;}
.y6e_c01466{bottom:46.080000pt;}
.y66_c01466{bottom:90.240000pt;}
.y68_c01466{bottom:91.520000pt;}
.y67_c01466{bottom:92.160000pt;}
.y65_c01466{bottom:129.920000pt;}
.y63_c01466{bottom:130.560000pt;}
.y62_c01466{bottom:131.200000pt;}
.y64_c01466{bottom:132.480000pt;}
.y5d_c01466{bottom:166.400000pt;}
.y5f_c01466{bottom:168.320000pt;}
.y5e_c01466{bottom:168.960000pt;}
.y60_c01466{bottom:169.600000pt;}
.y61_c01466{bottom:170.880000pt;}
.y5a_c01466{bottom:204.800000pt;}
.y59_c01466{bottom:206.720000pt;}
.y58_c01466{bottom:207.360000pt;}
.y5b_c01466{bottom:208.640000pt;}
.y5c_c01466{bottom:209.280000pt;}
.y53_c01466{bottom:243.200000pt;}
.y54_c01466{bottom:243.840000pt;}
.y55_c01466{bottom:244.480000pt;}
.y52_c01466{bottom:245.760000pt;}
.y56_c01466{bottom:246.400000pt;}
.y57_c01466{bottom:247.040000pt;}
.y4e_c01466{bottom:282.240000pt;}
.y4f_c01466{bottom:282.880000pt;}
.y50_c01466{bottom:283.520000pt;}
.y4d_c01466{bottom:284.160000pt;}
.y4c_c01466{bottom:284.800000pt;}
.y51_c01466{bottom:286.080000pt;}
.y4a_c01466{bottom:320.640000pt;}
.y4b_c01466{bottom:322.560000pt;}
.y49_c01466{bottom:323.200000pt;}
.y44_c01466{bottom:358.400000pt;}
.y45_c01466{bottom:359.040000pt;}
.y46_c01466{bottom:360.320000pt;}
.y47_c01466{bottom:360.960000pt;}
.y48_c01466{bottom:361.600000pt;}
.y42_c01466{bottom:396.160000pt;}
.y43_c01466{bottom:398.080000pt;}
.y41_c01466{bottom:398.720000pt;}
.y40_c01466{bottom:399.360000pt;}
.y3d_c01466{bottom:433.920000pt;}
.y3f_c01466{bottom:435.200000pt;}
.y3c_c01466{bottom:436.480000pt;}
.y3b_c01466{bottom:437.120000pt;}
.y3e_c01466{bottom:437.760000pt;}
.y38_c01466{bottom:481.920000pt;}
.y3a_c01466{bottom:483.200000pt;}
.y37_c01466{bottom:484.480000pt;}
.y39_c01466{bottom:485.120000pt;}
.y36_c01466{bottom:520.320000pt;}
.y34_c01466{bottom:521.600000pt;}
.y33_c01466{bottom:522.880000pt;}
.y35_c01466{bottom:523.520000pt;}
.y32_c01466{bottom:558.720000pt;}
.y30_c01466{bottom:560.640000pt;}
.y31_c01466{bottom:561.280000pt;}
.y2e_c01466{bottom:595.840000pt;}
.y2d_c01466{bottom:596.480000pt;}
.y2f_c01466{bottom:597.120000pt;}
.y2c_c01466{bottom:597.760000pt;}
.y2b_c01466{bottom:599.040000pt;}
.y29_c01466{bottom:634.240000pt;}
.y2a_c01466{bottom:635.520000pt;}
.y27_c01466{bottom:636.800000pt;}
.y28_c01466{bottom:637.440000pt;}
.y25_c01466{bottom:672.640000pt;}
.y23_c01466{bottom:673.280000pt;}
.y22_c01466{bottom:673.920000pt;}
.y26_c01466{bottom:674.560000pt;}
.y21_c01466{bottom:675.200000pt;}
.y24_c01466{bottom:675.840000pt;}
.y20_c01466{bottom:709.760000pt;}
.y1e_c01466{bottom:710.400000pt;}
.y1f_c01466{bottom:711.040000pt;}
.y1c_c01466{bottom:711.680000pt;}
.y1b_c01466{bottom:713.600000pt;}
.y1d_c01466{bottom:714.240000pt;}
.y1a_c01466{bottom:748.800000pt;}
.y17_c01466{bottom:750.080000pt;}
.y19_c01466{bottom:751.360000pt;}
.y18_c01466{bottom:752.000000pt;}
.y16_c01466{bottom:752.640000pt;}
.y12_c01466{bottom:797.440000pt;}
.y13_c01466{bottom:798.080000pt;}
.y15_c01466{bottom:798.720000pt;}
.y14_c01466{bottom:800.000000pt;}
.yd_c01466{bottom:835.200000pt;}
.yf_c01466{bottom:835.840000pt;}
.ye_c01466{bottom:836.480000pt;}
.y10_c01466{bottom:837.120000pt;}
.y11_c01466{bottom:837.760000pt;}
.yb_c01466{bottom:872.960000pt;}
.ya_c01466{bottom:873.600000pt;}
.yc_c01466{bottom:874.880000pt;}
.y8_c01466{bottom:875.520000pt;}
.y9_c01466{bottom:876.160000pt;}
.y6_c01466{bottom:910.720000pt;}
.y4_c01466{bottom:911.360000pt;}
.y3_c01466{bottom:912.000000pt;}
.y7_c01466{bottom:912.640000pt;}
.y5_c01466{bottom:913.280000pt;}
.y2_c01466{bottom:913.920000pt;}
.y1_c01466{bottom:972.160000pt;}
.h8_c01466{height:27.645000pt;}
.h6_c01466{height:29.948750pt;}
.h10_c01466{height:32.252500pt;}
.he_c01466{height:34.556250pt;}
.h5_c01466{height:36.860000pt;}
.h4_c01466{height:39.163750pt;}
.h3_c01466{height:41.467500pt;}
.hb_c01466{height:43.771250pt;}
.hc_c01466{height:46.075000pt;}
.h7_c01466{height:48.378750pt;}
.ha_c01466{height:50.682500pt;}
.hd_c01466{height:52.986250pt;}
.h9_c01466{height:55.290000pt;}
.hf_c01466{height:57.593750pt;}
.h2_c01466{height:59.897500pt;}
.h1_c01466{height:1023.333333pt;}
.h0_c01466{height:1023.360000pt;}
.w1_c01466{width:683.333333pt;}
.w0_c01466{width:683.520000pt;}
.x0_c01466{left:0.000000pt;}
.x1b_c01466{left:42.240000pt;}
.x9_c01466{left:43.520000pt;}
.x43_c01466{left:44.800000pt;}
.xa_c01466{left:70.400000pt;}
.x2e_c01466{left:80.640000pt;}
.x37_c01466{left:89.600000pt;}
.xb_c01466{left:99.840000pt;}
.x48_c01466{left:109.440000pt;}
.x3e_c01466{left:119.040000pt;}
.x2f_c01466{left:128.640000pt;}
.x2_c01466{left:138.240000pt;}
.x4d_c01466{left:139.520000pt;}
.x1c_c01466{left:147.840000pt;}
.x29_c01466{left:157.440000pt;}
.x3_c01466{left:167.040000pt;}
.x3b_c01466{left:174.720000pt;}
.x1d_c01466{left:176.000000pt;}
.x4e_c01466{left:177.280000pt;}
.xc_c01466{left:186.240000pt;}
.x49_c01466{left:195.840000pt;}
.x2a_c01466{left:197.120000pt;}
.x3f_c01466{left:206.080000pt;}
.xd_c01466{left:215.040000pt;}
.x33_c01466{left:224.640000pt;}
.x30_c01466{left:225.920000pt;}
.x13_c01466{left:234.240000pt;}
.x4_c01466{left:243.840000pt;}
.x1f_c01466{left:253.440000pt;}
.x46_c01466{left:263.680000pt;}
.x14_c01466{left:272.640000pt;}
.x5_c01466{left:282.880000pt;}
.x31_c01466{left:291.840000pt;}
.x38_c01466{left:293.120000pt;}
.x6_c01466{left:301.440000pt;}
.xe_c01466{left:311.040000pt;}
.x47_c01466{left:320.000000pt;}
.x1e_c01466{left:321.280000pt;}
.xf_c01466{left:330.880000pt;}
.x15_c01466{left:339.840000pt;}
.x20_c01466{left:349.440000pt;}
.x39_c01466{left:358.400000pt;}
.x2b_c01466{left:368.640000pt;}
.x16_c01466{left:376.960000pt;}
.x21_c01466{left:378.240000pt;}
.x23_c01466{left:387.840000pt;}
.x40_c01466{left:397.440000pt;}
.x32_c01466{left:406.400000pt;}
.x3c_c01466{left:416.640000pt;}
.x7_c01466{left:426.240000pt;}
.x10_c01466{left:435.840000pt;}
.x3a_c01466{left:444.160000pt;}
.x24_c01466{left:445.440000pt;}
.x4a_c01466{left:455.040000pt;}
.x17_c01466{left:464.000000pt;}
.x22_c01466{left:473.600000pt;}
.x44_c01466{left:481.920000pt;}
.x4b_c01466{left:483.200000pt;}
.x25_c01466{left:492.800000pt;}
.x18_c01466{left:501.760000pt;}
.x41_c01466{left:510.720000pt;}
.x26_c01466{left:512.640000pt;}
.x45_c01466{left:520.960000pt;}
.x36_c01466{left:530.560000pt;}
.x8_c01466{left:541.440000pt;}
.x34_c01466{left:549.120000pt;}
.x2c_c01466{left:550.400000pt;}
.x3d_c01466{left:558.720000pt;}
.x19_c01466{left:560.640000pt;}
.x27_c01466{left:568.960000pt;}
.x11_c01466{left:570.240000pt;}
.x2d_c01466{left:577.920000pt;}
.x35_c01466{left:579.840000pt;}
.x1a_c01466{left:588.800000pt;}
.x4c_c01466{left:597.120000pt;}
.x12_c01466{left:599.040000pt;}
.x1_c01466{left:604.160000pt;}
.x42_c01466{left:607.360000pt;}
.x28_c01466{left:608.640000pt;}
}





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

.ir_c01467:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01467{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01467;src:url('chunks/assets/font_72e465258c0dab0978a55048.woff2')format("woff");}.ff1_c01467{font-family:ff1_c01467;line-height:1.109863;font-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_c01467{transform:matrix(0.172625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172625,0.000000,0.000000,0.250000,0,0);}
.m23_c01467{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m25_c01467{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01467{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);}
.m27_c01467{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);}
.m59_c01467{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m6_c01467{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m16_c01467{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);}
.m47_c01467{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01467{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m69_c01467{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01467{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m4_c01467{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01467{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01467{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.me_c01467{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m43_c01467{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m5_c01467{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m61_c01467{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m21_c01467{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m5d_c01467{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m22_c01467{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.mc_c01467{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_c01467{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01467{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m53_c01467{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);}
.m4a_c01467{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01467{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);}
.m4c_c01467{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m20_c01467{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m0_c01467{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);}
.m3a_c01467{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m67_c01467{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.mb_c01467{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);}
.m13_c01467{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);}
.m10_c01467{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);}
.m5a_c01467{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.ma_c01467{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m11_c01467{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m3_c01467{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);}
.m62_c01467{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);}
.m6a_c01467{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);}
.m4e_c01467{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m52_c01467{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m8_c01467{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m37_c01467{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);}
.m4b_c01467{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m5f_c01467{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);}
.m2b_c01467{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);}
.m36_c01467{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);}
.m2e_c01467{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m45_c01467{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01467{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m5e_c01467{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);}
.m49_c01467{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m39_c01467{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m9_c01467{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);}
.m4d_c01467{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m42_c01467{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);}
.m7_c01467{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m40_c01467{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m1_c01467{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);}
.m1d_c01467{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m58_c01467{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01467{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);}
.m56_c01467{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m41_c01467{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m12_c01467{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.mf_c01467{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m66_c01467{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m29_c01467{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);}
.md_c01467{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);}
.m3e_c01467{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01467{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m46_c01467{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m33_c01467{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);}
.m2_c01467{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m51_c01467{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m50_c01467{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m32_c01467{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m35_c01467{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);}
.m4f_c01467{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m68_c01467{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m60_c01467{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m34_c01467{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);}
.m14_c01467{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m5c_c01467{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m19_c01467{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m64_c01467{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m65_c01467{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m55_c01467{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01467{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);}
.m3b_c01467{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);}
.m38_c01467{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m48_c01467{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01467{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01467{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m5b_c01467{transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);}
.m44_c01467{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m57_c01467{transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);}
.m31_c01467{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m54_c01467{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);}
.m63_c01467{transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);}
.m26_c01467{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);}
.m24_c01467{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.m17_c01467{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.m28_c01467{transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);}
.v0_c01467{vertical-align:0.000000px;}
.v1_c01467{vertical-align:2.880000px;}
.v2_c01467{vertical-align:8.640000px;}
.ls0_c01467{letter-spacing:0.000000px;}
.sc__c01467{text-shadow:none;}
.sc0_c01467{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01467{-webkit-text-stroke:0px transparent;}
.sc0_c01467{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01467{word-spacing:-8.202960px;}
.ws0_c01467{word-spacing:-3.105840px;}
.ws2_c01467{word-spacing:0.000000px;}
.fc0_c01467{color:transparent;}
.fsc_c01467{font-size:11.520000px;}
.fse_c01467{font-size:14.400000px;}
.fs10_c01467{font-size:17.280000px;}
.fsf_c01467{font-size:23.040000px;}
.fsd_c01467{font-size:25.920000px;}
.fs2_c01467{font-size:34.560000px;}
.fs12_c01467{font-size:37.440000px;}
.fs11_c01467{font-size:43.200000px;}
.fsa_c01467{font-size:46.080000px;}
.fs7_c01467{font-size:48.960000px;}
.fs3_c01467{font-size:51.840000px;}
.fs1_c01467{font-size:54.720000px;}
.fs6_c01467{font-size:57.600000px;}
.fs8_c01467{font-size:60.480000px;}
.fs5_c01467{font-size:63.360000px;}
.fs9_c01467{font-size:66.240000px;}
.fs4_c01467{font-size:69.120000px;}
.fs13_c01467{font-size:72.000000px;}
.fs0_c01467{font-size:74.880000px;}
.fsb_c01467{font-size:92.160000px;}
.y0_c01467{bottom:0.000000px;}
.y6c_c01467{bottom:79.920000px;}
.y6b_c01467{bottom:80.640000px;}
.y6a_c01467{bottom:81.360000px;}
.y70_c01467{bottom:82.080000px;}
.y6d_c01467{bottom:82.800000px;}
.y6e_c01467{bottom:83.520000px;}
.y6f_c01467{bottom:84.240000px;}
.y71_c01467{bottom:84.960000px;}
.y67_c01467{bottom:123.840000px;}
.y64_c01467{bottom:125.280000px;}
.y65_c01467{bottom:126.000000px;}
.y66_c01467{bottom:126.720000px;}
.y68_c01467{bottom:127.440000px;}
.y69_c01467{bottom:128.160000px;}
.y5e_c01467{bottom:166.320000px;}
.y63_c01467{bottom:167.040000px;}
.y60_c01467{bottom:168.480000px;}
.y5f_c01467{bottom:169.200000px;}
.y62_c01467{bottom:169.920000px;}
.y61_c01467{bottom:170.640000px;}
.y5b_c01467{bottom:208.800000px;}
.y5a_c01467{bottom:209.520000px;}
.y5c_c01467{bottom:210.240000px;}
.y59_c01467{bottom:211.680000px;}
.y58_c01467{bottom:212.400000px;}
.y5d_c01467{bottom:213.120000px;}
.y57_c01467{bottom:252.720000px;}
.y55_c01467{bottom:254.880000px;}
.y56_c01467{bottom:255.600000px;}
.y54_c01467{bottom:308.160000px;}
.y50_c01467{bottom:347.760000px;}
.y53_c01467{bottom:349.200000px;}
.y52_c01467{bottom:351.360000px;}
.y51_c01467{bottom:352.080000px;}
.y4d_c01467{bottom:390.960000px;}
.y4b_c01467{bottom:391.680000px;}
.y4f_c01467{bottom:392.400000px;}
.y4e_c01467{bottom:393.840000px;}
.y4a_c01467{bottom:394.560000px;}
.y4c_c01467{bottom:396.720000px;}
.y47_c01467{bottom:434.880000px;}
.y48_c01467{bottom:437.040000px;}
.y46_c01467{bottom:437.760000px;}
.y49_c01467{bottom:438.480000px;}
.y44_c01467{bottom:477.360000px;}
.y45_c01467{bottom:478.080000px;}
.y43_c01467{bottom:480.240000px;}
.y42_c01467{bottom:480.960000px;}
.y41_c01467{bottom:481.680000px;}
.y40_c01467{bottom:534.240000px;}
.y3e_c01467{bottom:574.560000px;}
.y3a_c01467{bottom:575.280000px;}
.y3d_c01467{bottom:576.720000px;}
.y3c_c01467{bottom:577.440000px;}
.y3f_c01467{bottom:578.160000px;}
.y3b_c01467{bottom:578.880000px;}
.y39_c01467{bottom:617.760000px;}
.y36_c01467{bottom:619.920000px;}
.y37_c01467{bottom:620.640000px;}
.y38_c01467{bottom:621.360000px;}
.y33_c01467{bottom:658.800000px;}
.y30_c01467{bottom:659.520000px;}
.y34_c01467{bottom:660.240000px;}
.y35_c01467{bottom:660.960000px;}
.y31_c01467{bottom:663.120000px;}
.y32_c01467{bottom:663.840000px;}
.y2e_c01467{bottom:704.160000px;}
.y2f_c01467{bottom:705.600000px;}
.y2c_c01467{bottom:706.320000px;}
.y2d_c01467{bottom:707.040000px;}
.y29_c01467{bottom:745.920000px;}
.y27_c01467{bottom:746.640000px;}
.y2a_c01467{bottom:747.360000px;}
.y2b_c01467{bottom:748.080000px;}
.y26_c01467{bottom:748.800000px;}
.y28_c01467{bottom:749.520000px;}
.y25_c01467{bottom:788.400000px;}
.y24_c01467{bottom:790.560000px;}
.y23_c01467{bottom:791.280000px;}
.y22_c01467{bottom:792.000000px;}
.y1e_c01467{bottom:842.400000px;}
.y1f_c01467{bottom:843.120000px;}
.y1c_c01467{bottom:843.840000px;}
.y21_c01467{bottom:844.560000px;}
.y1b_c01467{bottom:845.280000px;}
.y20_c01467{bottom:846.720000px;}
.y1d_c01467{bottom:848.160000px;}
.y19_c01467{bottom:884.880000px;}
.y18_c01467{bottom:885.600000px;}
.y16_c01467{bottom:886.320000px;}
.y1a_c01467{bottom:887.040000px;}
.y15_c01467{bottom:888.480000px;}
.y17_c01467{bottom:890.640000px;}
.y13_c01467{bottom:927.360000px;}
.y12_c01467{bottom:928.080000px;}
.y10_c01467{bottom:928.800000px;}
.y14_c01467{bottom:929.520000px;}
.ye_c01467{bottom:930.960000px;}
.y11_c01467{bottom:933.120000px;}
.yf_c01467{bottom:934.560000px;}
.ya_c01467{bottom:980.640000px;}
.yb_c01467{bottom:981.360000px;}
.y8_c01467{bottom:982.080000px;}
.yd_c01467{bottom:982.800000px;}
.yc_c01467{bottom:983.520000px;}
.y9_c01467{bottom:984.240000px;}
.y5_c01467{bottom:1023.840000px;}
.y4_c01467{bottom:1024.560000px;}
.y7_c01467{bottom:1026.000000px;}
.y6_c01467{bottom:1026.720000px;}
.y2_c01467{bottom:1027.440000px;}
.y3_c01467{bottom:1028.160000px;}
.y1_c01467{bottom:1098.000000px;}
.he_c01467{height:10.366875px;}
.h10_c01467{height:12.958594px;}
.h12_c01467{height:15.550313px;}
.h11_c01467{height:20.733750px;}
.hf_c01467{height:23.325469px;}
.ha_c01467{height:31.100625px;}
.h14_c01467{height:33.692344px;}
.h13_c01467{height:38.875781px;}
.hc_c01467{height:41.467500px;}
.h8_c01467{height:44.059219px;}
.h4_c01467{height:46.650937px;}
.h3_c01467{height:49.242656px;}
.h7_c01467{height:51.834375px;}
.h9_c01467{height:54.426094px;}
.h6_c01467{height:57.017812px;}
.hb_c01467{height:59.609531px;}
.h5_c01467{height:62.201250px;}
.h15_c01467{height:64.792969px;}
.h2_c01467{height:67.384687px;}
.hd_c01467{height:82.935000px;}
.h1_c01467{height:1151.250000px;}
.h0_c01467{height:1151.280000px;}
.w1_c01467{width:768.750000px;}
.w0_c01467{width:768.960000px;}
.x0_c01467{left:0.000000px;}
.x2b_c01467{left:49.680000px;}
.x2_c01467{left:51.120000px;}
.x18_c01467{left:93.600000px;}
.x3b_c01467{left:103.680000px;}
.x3e_c01467{left:114.480000px;}
.x37_c01467{left:125.280000px;}
.x19_c01467{left:136.080000px;}
.x48_c01467{left:139.680000px;}
.x4e_c01467{left:146.160000px;}
.x10_c01467{left:147.600000px;}
.x23_c01467{left:157.680000px;}
.x1a_c01467{left:159.120000px;}
.x49_c01467{left:168.480000px;}
.x3_c01467{left:180.000000px;}
.x41_c01467{left:190.080000px;}
.x11_c01467{left:191.520000px;}
.x24_c01467{left:201.600000px;}
.x1b_c01467{left:212.400000px;}
.x4_c01467{left:223.200000px;}
.x42_c01467{left:234.000000px;}
.x21_c01467{left:244.800000px;}
.x1c_c01467{left:246.240000px;}
.x54_c01467{left:254.880000px;}
.x3c_c01467{left:256.320000px;}
.x3f_c01467{left:275.760000px;}
.x30_c01467{left:277.200000px;}
.x5_c01467{left:288.720000px;}
.x55_c01467{left:297.360000px;}
.x50_c01467{left:308.160000px;}
.x2c_c01467{left:309.600000px;}
.x12_c01467{left:320.400000px;}
.x6_c01467{left:321.840000px;}
.x1d_c01467{left:323.280000px;}
.x3d_c01467{left:330.480000px;}
.x13_c01467{left:341.280000px;}
.x7_c01467{left:353.520000px;}
.x25_c01467{left:362.880000px;}
.x38_c01467{left:365.040000px;}
.x43_c01467{left:372.960000px;}
.x8_c01467{left:374.400000px;}
.x22_c01467{left:384.480000px;}
.x14_c01467{left:385.920000px;}
.x9_c01467{left:397.440000px;}
.x4c_c01467{left:405.360000px;}
.x1e_c01467{left:406.800000px;}
.x31_c01467{left:416.160000px;}
.xa_c01467{left:427.680000px;}
.x51_c01467{left:437.760000px;}
.x26_c01467{left:439.200000px;}
.x32_c01467{left:450.000000px;}
.x27_c01467{left:470.880000px;}
.xb_c01467{left:473.040000px;}
.x4f_c01467{left:480.240000px;}
.x2d_c01467{left:481.680000px;}
.x15_c01467{left:483.120000px;}
.x39_c01467{left:492.480000px;}
.x56_c01467{left:502.560000px;}
.x4d_c01467{left:511.920000px;}
.x28_c01467{left:514.080000px;}
.xc_c01467{left:525.600000px;}
.x16_c01467{left:527.040000px;}
.x2e_c01467{left:535.680000px;}
.x33_c01467{left:545.760000px;}
.x3a_c01467{left:558.000000px;}
.x44_c01467{left:568.080000px;}
.x52_c01467{left:578.880000px;}
.x34_c01467{left:589.680000px;}
.x45_c01467{left:599.040000px;}
.x57_c01467{left:600.480000px;}
.x1f_c01467{left:601.920000px;}
.x35_c01467{left:610.560000px;}
.xd_c01467{left:613.440000px;}
.x4a_c01467{left:620.640000px;}
.x53_c01467{left:622.080000px;}
.x47_c01467{left:632.880000px;}
.x20_c01467{left:635.040000px;}
.x40_c01467{left:643.680000px;}
.x17_c01467{left:645.120000px;}
.x29_c01467{left:655.920000px;}
.xe_c01467{left:657.360000px;}
.x46_c01467{left:664.560000px;}
.x2f_c01467{left:666.000000px;}
.x36_c01467{left:676.080000px;}
.xf_c01467{left:678.240000px;}
.x1_c01467{left:686.160000px;}
.x4b_c01467{left:687.600000px;}
.x2a_c01467{left:689.040000px;}
@media print{
.v0_c01467{vertical-align:0.000000pt;}
.v1_c01467{vertical-align:2.560000pt;}
.v2_c01467{vertical-align:7.680000pt;}
.ls0_c01467{letter-spacing:0.000000pt;}
.ws1_c01467{word-spacing:-7.291520pt;}
.ws0_c01467{word-spacing:-2.760747pt;}
.ws2_c01467{word-spacing:0.000000pt;}
.fsc_c01467{font-size:10.240000pt;}
.fse_c01467{font-size:12.800000pt;}
.fs10_c01467{font-size:15.360000pt;}
.fsf_c01467{font-size:20.480000pt;}
.fsd_c01467{font-size:23.040000pt;}
.fs2_c01467{font-size:30.720000pt;}
.fs12_c01467{font-size:33.280000pt;}
.fs11_c01467{font-size:38.400000pt;}
.fsa_c01467{font-size:40.960000pt;}
.fs7_c01467{font-size:43.520000pt;}
.fs3_c01467{font-size:46.080000pt;}
.fs1_c01467{font-size:48.640000pt;}
.fs6_c01467{font-size:51.200000pt;}
.fs8_c01467{font-size:53.760000pt;}
.fs5_c01467{font-size:56.320000pt;}
.fs9_c01467{font-size:58.880000pt;}
.fs4_c01467{font-size:61.440000pt;}
.fs13_c01467{font-size:64.000000pt;}
.fs0_c01467{font-size:66.560000pt;}
.fsb_c01467{font-size:81.920000pt;}
.y0_c01467{bottom:0.000000pt;}
.y6c_c01467{bottom:71.040000pt;}
.y6b_c01467{bottom:71.680000pt;}
.y6a_c01467{bottom:72.320000pt;}
.y70_c01467{bottom:72.960000pt;}
.y6d_c01467{bottom:73.600000pt;}
.y6e_c01467{bottom:74.240000pt;}
.y6f_c01467{bottom:74.880000pt;}
.y71_c01467{bottom:75.520000pt;}
.y67_c01467{bottom:110.080000pt;}
.y64_c01467{bottom:111.360000pt;}
.y65_c01467{bottom:112.000000pt;}
.y66_c01467{bottom:112.640000pt;}
.y68_c01467{bottom:113.280000pt;}
.y69_c01467{bottom:113.920000pt;}
.y5e_c01467{bottom:147.840000pt;}
.y63_c01467{bottom:148.480000pt;}
.y60_c01467{bottom:149.760000pt;}
.y5f_c01467{bottom:150.400000pt;}
.y62_c01467{bottom:151.040000pt;}
.y61_c01467{bottom:151.680000pt;}
.y5b_c01467{bottom:185.600000pt;}
.y5a_c01467{bottom:186.240000pt;}
.y5c_c01467{bottom:186.880000pt;}
.y59_c01467{bottom:188.160000pt;}
.y58_c01467{bottom:188.800000pt;}
.y5d_c01467{bottom:189.440000pt;}
.y57_c01467{bottom:224.640000pt;}
.y55_c01467{bottom:226.560000pt;}
.y56_c01467{bottom:227.200000pt;}
.y54_c01467{bottom:273.920000pt;}
.y50_c01467{bottom:309.120000pt;}
.y53_c01467{bottom:310.400000pt;}
.y52_c01467{bottom:312.320000pt;}
.y51_c01467{bottom:312.960000pt;}
.y4d_c01467{bottom:347.520000pt;}
.y4b_c01467{bottom:348.160000pt;}
.y4f_c01467{bottom:348.800000pt;}
.y4e_c01467{bottom:350.080000pt;}
.y4a_c01467{bottom:350.720000pt;}
.y4c_c01467{bottom:352.640000pt;}
.y47_c01467{bottom:386.560000pt;}
.y48_c01467{bottom:388.480000pt;}
.y46_c01467{bottom:389.120000pt;}
.y49_c01467{bottom:389.760000pt;}
.y44_c01467{bottom:424.320000pt;}
.y45_c01467{bottom:424.960000pt;}
.y43_c01467{bottom:426.880000pt;}
.y42_c01467{bottom:427.520000pt;}
.y41_c01467{bottom:428.160000pt;}
.y40_c01467{bottom:474.880000pt;}
.y3e_c01467{bottom:510.720000pt;}
.y3a_c01467{bottom:511.360000pt;}
.y3d_c01467{bottom:512.640000pt;}
.y3c_c01467{bottom:513.280000pt;}
.y3f_c01467{bottom:513.920000pt;}
.y3b_c01467{bottom:514.560000pt;}
.y39_c01467{bottom:549.120000pt;}
.y36_c01467{bottom:551.040000pt;}
.y37_c01467{bottom:551.680000pt;}
.y38_c01467{bottom:552.320000pt;}
.y33_c01467{bottom:585.600000pt;}
.y30_c01467{bottom:586.240000pt;}
.y34_c01467{bottom:586.880000pt;}
.y35_c01467{bottom:587.520000pt;}
.y31_c01467{bottom:589.440000pt;}
.y32_c01467{bottom:590.080000pt;}
.y2e_c01467{bottom:625.920000pt;}
.y2f_c01467{bottom:627.200000pt;}
.y2c_c01467{bottom:627.840000pt;}
.y2d_c01467{bottom:628.480000pt;}
.y29_c01467{bottom:663.040000pt;}
.y27_c01467{bottom:663.680000pt;}
.y2a_c01467{bottom:664.320000pt;}
.y2b_c01467{bottom:664.960000pt;}
.y26_c01467{bottom:665.600000pt;}
.y28_c01467{bottom:666.240000pt;}
.y25_c01467{bottom:700.800000pt;}
.y24_c01467{bottom:702.720000pt;}
.y23_c01467{bottom:703.360000pt;}
.y22_c01467{bottom:704.000000pt;}
.y1e_c01467{bottom:748.800000pt;}
.y1f_c01467{bottom:749.440000pt;}
.y1c_c01467{bottom:750.080000pt;}
.y21_c01467{bottom:750.720000pt;}
.y1b_c01467{bottom:751.360000pt;}
.y20_c01467{bottom:752.640000pt;}
.y1d_c01467{bottom:753.920000pt;}
.y19_c01467{bottom:786.560000pt;}
.y18_c01467{bottom:787.200000pt;}
.y16_c01467{bottom:787.840000pt;}
.y1a_c01467{bottom:788.480000pt;}
.y15_c01467{bottom:789.760000pt;}
.y17_c01467{bottom:791.680000pt;}
.y13_c01467{bottom:824.320000pt;}
.y12_c01467{bottom:824.960000pt;}
.y10_c01467{bottom:825.600000pt;}
.y14_c01467{bottom:826.240000pt;}
.ye_c01467{bottom:827.520000pt;}
.y11_c01467{bottom:829.440000pt;}
.yf_c01467{bottom:830.720000pt;}
.ya_c01467{bottom:871.680000pt;}
.yb_c01467{bottom:872.320000pt;}
.y8_c01467{bottom:872.960000pt;}
.yd_c01467{bottom:873.600000pt;}
.yc_c01467{bottom:874.240000pt;}
.y9_c01467{bottom:874.880000pt;}
.y5_c01467{bottom:910.080000pt;}
.y4_c01467{bottom:910.720000pt;}
.y7_c01467{bottom:912.000000pt;}
.y6_c01467{bottom:912.640000pt;}
.y2_c01467{bottom:913.280000pt;}
.y3_c01467{bottom:913.920000pt;}
.y1_c01467{bottom:976.000000pt;}
.he_c01467{height:9.215000pt;}
.h10_c01467{height:11.518750pt;}
.h12_c01467{height:13.822500pt;}
.h11_c01467{height:18.430000pt;}
.hf_c01467{height:20.733750pt;}
.ha_c01467{height:27.645000pt;}
.h14_c01467{height:29.948750pt;}
.h13_c01467{height:34.556250pt;}
.hc_c01467{height:36.860000pt;}
.h8_c01467{height:39.163750pt;}
.h4_c01467{height:41.467500pt;}
.h3_c01467{height:43.771250pt;}
.h7_c01467{height:46.075000pt;}
.h9_c01467{height:48.378750pt;}
.h6_c01467{height:50.682500pt;}
.hb_c01467{height:52.986250pt;}
.h5_c01467{height:55.290000pt;}
.h15_c01467{height:57.593750pt;}
.h2_c01467{height:59.897500pt;}
.hd_c01467{height:73.720000pt;}
.h1_c01467{height:1023.333333pt;}
.h0_c01467{height:1023.360000pt;}
.w1_c01467{width:683.333333pt;}
.w0_c01467{width:683.520000pt;}
.x0_c01467{left:0.000000pt;}
.x2b_c01467{left:44.160000pt;}
.x2_c01467{left:45.440000pt;}
.x18_c01467{left:83.200000pt;}
.x3b_c01467{left:92.160000pt;}
.x3e_c01467{left:101.760000pt;}
.x37_c01467{left:111.360000pt;}
.x19_c01467{left:120.960000pt;}
.x48_c01467{left:124.160000pt;}
.x4e_c01467{left:129.920000pt;}
.x10_c01467{left:131.200000pt;}
.x23_c01467{left:140.160000pt;}
.x1a_c01467{left:141.440000pt;}
.x49_c01467{left:149.760000pt;}
.x3_c01467{left:160.000000pt;}
.x41_c01467{left:168.960000pt;}
.x11_c01467{left:170.240000pt;}
.x24_c01467{left:179.200000pt;}
.x1b_c01467{left:188.800000pt;}
.x4_c01467{left:198.400000pt;}
.x42_c01467{left:208.000000pt;}
.x21_c01467{left:217.600000pt;}
.x1c_c01467{left:218.880000pt;}
.x54_c01467{left:226.560000pt;}
.x3c_c01467{left:227.840000pt;}
.x3f_c01467{left:245.120000pt;}
.x30_c01467{left:246.400000pt;}
.x5_c01467{left:256.640000pt;}
.x55_c01467{left:264.320000pt;}
.x50_c01467{left:273.920000pt;}
.x2c_c01467{left:275.200000pt;}
.x12_c01467{left:284.800000pt;}
.x6_c01467{left:286.080000pt;}
.x1d_c01467{left:287.360000pt;}
.x3d_c01467{left:293.760000pt;}
.x13_c01467{left:303.360000pt;}
.x7_c01467{left:314.240000pt;}
.x25_c01467{left:322.560000pt;}
.x38_c01467{left:324.480000pt;}
.x43_c01467{left:331.520000pt;}
.x8_c01467{left:332.800000pt;}
.x22_c01467{left:341.760000pt;}
.x14_c01467{left:343.040000pt;}
.x9_c01467{left:353.280000pt;}
.x4c_c01467{left:360.320000pt;}
.x1e_c01467{left:361.600000pt;}
.x31_c01467{left:369.920000pt;}
.xa_c01467{left:380.160000pt;}
.x51_c01467{left:389.120000pt;}
.x26_c01467{left:390.400000pt;}
.x32_c01467{left:400.000000pt;}
.x27_c01467{left:418.560000pt;}
.xb_c01467{left:420.480000pt;}
.x4f_c01467{left:426.880000pt;}
.x2d_c01467{left:428.160000pt;}
.x15_c01467{left:429.440000pt;}
.x39_c01467{left:437.760000pt;}
.x56_c01467{left:446.720000pt;}
.x4d_c01467{left:455.040000pt;}
.x28_c01467{left:456.960000pt;}
.xc_c01467{left:467.200000pt;}
.x16_c01467{left:468.480000pt;}
.x2e_c01467{left:476.160000pt;}
.x33_c01467{left:485.120000pt;}
.x3a_c01467{left:496.000000pt;}
.x44_c01467{left:504.960000pt;}
.x52_c01467{left:514.560000pt;}
.x34_c01467{left:524.160000pt;}
.x45_c01467{left:532.480000pt;}
.x57_c01467{left:533.760000pt;}
.x1f_c01467{left:535.040000pt;}
.x35_c01467{left:542.720000pt;}
.xd_c01467{left:545.280000pt;}
.x4a_c01467{left:551.680000pt;}
.x53_c01467{left:552.960000pt;}
.x47_c01467{left:562.560000pt;}
.x20_c01467{left:564.480000pt;}
.x40_c01467{left:572.160000pt;}
.x17_c01467{left:573.440000pt;}
.x29_c01467{left:583.040000pt;}
.xe_c01467{left:584.320000pt;}
.x46_c01467{left:590.720000pt;}
.x2f_c01467{left:592.000000pt;}
.x36_c01467{left:600.960000pt;}
.xf_c01467{left:602.880000pt;}
.x1_c01467{left:609.920000pt;}
.x4b_c01467{left:611.200000pt;}
.x2a_c01467{left:612.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_c01468 {
    display:none;
  }
  .loading-indicator_c01468.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01468 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01468 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01468" -> "#page-container .classname_c01468")
 */
.pf_c01468 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01468 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01468.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01468 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01468 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01468 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01468 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01468 {overflow:visible;}
  }
}
.c_c01468 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01468 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01468:after { /* webkit #35443 */
  content: '';
}
.t_c01468:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01468 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01468 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01468 { /* info for Javascript */
  display:none;
}
.l_c01468 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01468 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01468 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01468:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01468{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01468;src:url('chunks/assets/font_97198d02829306f589b52011.woff2')format("woff");}.ff1_c01468{font-family:ff1_c01468;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m52_c01468{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m55_c01468{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);}
.m5a_c01468{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01468{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01468{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m32_c01468{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m54_c01468{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m11_c01468{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01468{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m5d_c01468{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m44_c01468{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.md_c01468{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m57_c01468{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m16_c01468{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m38_c01468{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01468{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_c01468{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);}
.m4e_c01468{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m0_c01468{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);}
.m46_c01468{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m50_c01468{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m25_c01468{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m58_c01468{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);}
.m27_c01468{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);}
.m41_c01468{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01468{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);}
.mc_c01468{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);}
.m15_c01468{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);}
.m5_c01468{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);}
.m4f_c01468{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m36_c01468{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);}
.m10_c01468{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);}
.m2_c01468{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);}
.m3e_c01468{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m4_c01468{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m24_c01468{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);}
.m3f_c01468{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);}
.m2b_c01468{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01468{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);}
.m13_c01468{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);}
.m21_c01468{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m29_c01468{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m17_c01468{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m9_c01468{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m37_c01468{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);}
.ma_c01468{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m5b_c01468{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m40_c01468{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);}
.m49_c01468{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.mf_c01468{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);}
.m2d_c01468{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m34_c01468{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m5c_c01468{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01468{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01468{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);}
.m4d_c01468{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m20_c01468{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01468{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);}
.m1d_c01468{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m3_c01468{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m33_c01468{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m1_c01468{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);}
.m7_c01468{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m14_c01468{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m26_c01468{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);}
.m1f_c01468{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m22_c01468{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01468{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m23_c01468{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m19_c01468{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);}
.m4c_c01468{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m51_c01468{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m42_c01468{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m47_c01468{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);}
.m3b_c01468{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m12_c01468{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);}
.m18_c01468{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);}
.m35_c01468{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m28_c01468{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m39_c01468{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01468{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m8_c01468{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m53_c01468{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m31_c01468{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);}
.m30_c01468{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m6_c01468{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);}
.m45_c01468{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.mb_c01468{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m48_c01468{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01468{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m59_c01468{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01468{transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);}
.m56_c01468{transform:matrix(0.910000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.910000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.910000,0.000000,0.000000,0.250000,0,0);}
.m43_c01468{transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);}
.v3_c01468{vertical-align:-11.520000px;}
.v1_c01468{vertical-align:-2.880000px;}
.v0_c01468{vertical-align:0.000000px;}
.v2_c01468{vertical-align:2.880000px;}
.ls0_c01468{letter-spacing:0.000000px;}
.sc__c01468{text-shadow:none;}
.sc0_c01468{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01468{-webkit-text-stroke:0px transparent;}
.sc0_c01468{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01468{word-spacing:-1.226160px;}
.ws3_c01468{word-spacing:0.000000px;}
.ws1_c01468{word-spacing:1.627680px;}
.ws2_c01468{word-spacing:12.444960px;}
.fc0_c01468{color:transparent;}
.fsc_c01468{font-size:11.520000px;}
.fse_c01468{font-size:14.400000px;}
.fsf_c01468{font-size:23.040000px;}
.fs5_c01468{font-size:34.560000px;}
.fs9_c01468{font-size:37.440000px;}
.fsd_c01468{font-size:40.320000px;}
.fsa_c01468{font-size:43.200000px;}
.fs3_c01468{font-size:46.080000px;}
.fs1_c01468{font-size:48.960000px;}
.fs0_c01468{font-size:51.840000px;}
.fs4_c01468{font-size:54.720000px;}
.fs2_c01468{font-size:57.600000px;}
.fs8_c01468{font-size:60.480000px;}
.fs6_c01468{font-size:63.360000px;}
.fs7_c01468{font-size:66.240000px;}
.fsb_c01468{font-size:69.120000px;}
.fs10_c01468{font-size:72.000000px;}
.y0_c01468{bottom:0.000000px;}
.y73_c01468{bottom:34.560000px;}
.y75_c01468{bottom:35.280000px;}
.y76_c01468{bottom:36.000000px;}
.y74_c01468{bottom:37.440000px;}
.y72_c01468{bottom:38.880000px;}
.y6c_c01468{bottom:76.320000px;}
.y6f_c01468{bottom:78.480000px;}
.y70_c01468{bottom:79.200000px;}
.y6d_c01468{bottom:79.920000px;}
.y6b_c01468{bottom:80.640000px;}
.y6e_c01468{bottom:81.360000px;}
.y71_c01468{bottom:82.080000px;}
.y6a_c01468{bottom:121.680000px;}
.y67_c01468{bottom:123.840000px;}
.y69_c01468{bottom:124.560000px;}
.y68_c01468{bottom:125.280000px;}
.y64_c01468{bottom:174.240000px;}
.y62_c01468{bottom:174.960000px;}
.y63_c01468{bottom:175.680000px;}
.y5f_c01468{bottom:176.400000px;}
.y60_c01468{bottom:177.840000px;}
.y65_c01468{bottom:178.560000px;}
.y66_c01468{bottom:179.280000px;}
.y61_c01468{bottom:180.720000px;}
.y5e_c01468{bottom:190.800000px;}
.y59_c01468{bottom:217.440000px;}
.y5d_c01468{bottom:218.880000px;}
.y5a_c01468{bottom:220.320000px;}
.y5c_c01468{bottom:221.040000px;}
.y5b_c01468{bottom:221.760000px;}
.y57_c01468{bottom:261.360000px;}
.y58_c01468{bottom:262.080000px;}
.y56_c01468{bottom:263.520000px;}
.y54_c01468{bottom:264.240000px;}
.y55_c01468{bottom:264.960000px;}
.y53_c01468{bottom:303.840000px;}
.y52_c01468{bottom:307.440000px;}
.y51_c01468{bottom:308.160000px;}
.y4d_c01468{bottom:357.120000px;}
.y4e_c01468{bottom:358.560000px;}
.y50_c01468{bottom:359.280000px;}
.y4f_c01468{bottom:360.720000px;}
.y4c_c01468{bottom:361.440000px;}
.y4b_c01468{bottom:401.040000px;}
.y4a_c01468{bottom:401.760000px;}
.y49_c01468{bottom:403.920000px;}
.y48_c01468{bottom:444.240000px;}
.y47_c01468{bottom:446.400000px;}
.y46_c01468{bottom:447.120000px;}
.y44_c01468{bottom:486.000000px;}
.y45_c01468{bottom:486.720000px;}
.y40_c01468{bottom:487.440000px;}
.y43_c01468{bottom:488.880000px;}
.y41_c01468{bottom:489.600000px;}
.y42_c01468{bottom:490.320000px;}
.y3e_c01468{bottom:529.200000px;}
.y3c_c01468{bottom:529.920000px;}
.y3d_c01468{bottom:532.800000px;}
.y3f_c01468{bottom:534.960000px;}
.y3b_c01468{bottom:572.400000px;}
.y39_c01468{bottom:573.120000px;}
.y3a_c01468{bottom:574.560000px;}
.y38_c01468{bottom:575.280000px;}
.y37_c01468{bottom:614.880000px;}
.y34_c01468{bottom:616.320000px;}
.y36_c01468{bottom:617.760000px;}
.y33_c01468{bottom:618.480000px;}
.y35_c01468{bottom:619.200000px;}
.y32_c01468{bottom:658.080000px;}
.y31_c01468{bottom:658.800000px;}
.y2e_c01468{bottom:659.520000px;}
.y30_c01468{bottom:660.960000px;}
.y2f_c01468{bottom:662.400000px;}
.y2d_c01468{bottom:700.560000px;}
.y2a_c01468{bottom:701.280000px;}
.y2c_c01468{bottom:702.000000px;}
.y2b_c01468{bottom:703.440000px;}
.y28_c01468{bottom:704.160000px;}
.y27_c01468{bottom:704.880000px;}
.y29_c01468{bottom:705.600000px;}
.y25_c01468{bottom:743.040000px;}
.y23_c01468{bottom:744.480000px;}
.y26_c01468{bottom:745.920000px;}
.y24_c01468{bottom:746.640000px;}
.y22_c01468{bottom:747.360000px;}
.y21_c01468{bottom:748.080000px;}
.y20_c01468{bottom:799.920000px;}
.y1f_c01468{bottom:801.360000px;}
.y1e_c01468{bottom:840.240000px;}
.y1c_c01468{bottom:840.960000px;}
.y1d_c01468{bottom:843.120000px;}
.y1b_c01468{bottom:843.840000px;}
.y1a_c01468{bottom:844.560000px;}
.y18_c01468{bottom:883.440000px;}
.y13_c01468{bottom:884.160000px;}
.y14_c01468{bottom:884.880000px;}
.y19_c01468{bottom:885.600000px;}
.y17_c01468{bottom:886.320000px;}
.y15_c01468{bottom:887.040000px;}
.y16_c01468{bottom:887.760000px;}
.y10_c01468{bottom:927.360000px;}
.ye_c01468{bottom:928.080000px;}
.y12_c01468{bottom:928.800000px;}
.y11_c01468{bottom:929.520000px;}
.yd_c01468{bottom:930.240000px;}
.yf_c01468{bottom:930.960000px;}
.yb_c01468{bottom:969.120000px;}
.y7_c01468{bottom:969.840000px;}
.yc_c01468{bottom:971.280000px;}
.ya_c01468{bottom:972.000000px;}
.y8_c01468{bottom:973.440000px;}
.y9_c01468{bottom:974.160000px;}
.y6_c01468{bottom:1012.320000px;}
.y5_c01468{bottom:1013.040000px;}
.y4_c01468{bottom:1013.760000px;}
.y3_c01468{bottom:1014.480000px;}
.y1_c01468{bottom:1015.200000px;}
.y2_c01468{bottom:1015.920000px;}
.he_c01468{height:10.366875px;}
.h11_c01468{height:12.958594px;}
.h12_c01468{height:20.733750px;}
.h7_c01468{height:31.100625px;}
.hb_c01468{height:33.692344px;}
.h10_c01468{height:36.284062px;}
.hc_c01468{height:38.875781px;}
.h5_c01468{height:41.467500px;}
.h3_c01468{height:44.059219px;}
.h2_c01468{height:46.650937px;}
.h6_c01468{height:49.242656px;}
.hf_c01468{height:49.530938px;}
.h4_c01468{height:51.834375px;}
.ha_c01468{height:54.426094px;}
.h8_c01468{height:57.017812px;}
.h9_c01468{height:59.609531px;}
.hd_c01468{height:62.201250px;}
.h13_c01468{height:64.792969px;}
.h1_c01468{height:1146.750000px;}
.h0_c01468{height:1146.960000px;}
.w0_c01468{width:763.200000px;}
.w1_c01468{width:763.500000px;}
.x0_c01468{left:0.000000px;}
.x24_c01468{left:40.320000px;}
.x1_c01468{left:41.760000px;}
.x41_c01468{left:43.200000px;}
.x48_c01468{left:45.360000px;}
.x2_c01468{left:73.440000px;}
.x47_c01468{left:74.880000px;}
.x31_c01468{left:84.240000px;}
.x49_c01468{left:95.040000px;}
.xc_c01468{left:105.840000px;}
.x42_c01468{left:116.640000px;}
.x3b_c01468{left:127.440000px;}
.x4c_c01468{left:136.080000px;}
.x3_c01468{left:138.960000px;}
.x13_c01468{left:149.760000px;}
.x34_c01468{left:159.120000px;}
.x3c_c01468{left:169.920000px;}
.x25_c01468{left:171.360000px;}
.x14_c01468{left:181.440000px;}
.x4a_c01468{left:190.800000px;}
.x4_c01468{left:192.240000px;}
.x3e_c01468{left:193.680000px;}
.x35_c01468{left:203.760000px;}
.x5_c01468{left:214.560000px;}
.x44_c01468{left:223.920000px;}
.x2a_c01468{left:225.360000px;}
.x15_c01468{left:235.440000px;}
.x1e_c01468{left:246.240000px;}
.xd_c01468{left:257.040000px;}
.x6_c01468{left:267.840000px;}
.x16_c01468{left:278.640000px;}
.x1f_c01468{left:288.000000px;}
.x7_c01468{left:289.440000px;}
.x2b_c01468{left:300.240000px;}
.x38_c01468{left:311.040000px;}
.x32_c01468{left:312.480000px;}
.x36_c01468{left:321.120000px;}
.x17_c01468{left:322.560000px;}
.x26_c01468{left:333.360000px;}
.x2c_c01468{left:343.440000px;}
.x27_c01468{left:354.240000px;}
.x37_c01468{left:365.760000px;}
.x39_c01468{left:376.560000px;}
.x8_c01468{left:386.640000px;}
.xe_c01468{left:397.440000px;}
.x2d_c01468{left:407.520000px;}
.x20_c01468{left:419.040000px;}
.x9_c01468{left:429.840000px;}
.x18_c01468{left:441.360000px;}
.x28_c01468{left:451.440000px;}
.x33_c01468{left:462.240000px;}
.x21_c01468{left:463.680000px;}
.x4b_c01468{left:471.600000px;}
.x19_c01468{left:473.040000px;}
.xf_c01468{left:484.560000px;}
.x2e_c01468{left:494.640000px;}
.x1a_c01468{left:505.440000px;}
.x2f_c01468{left:516.960000px;}
.x10_c01468{left:527.040000px;}
.x22_c01468{left:537.840000px;}
.xa_c01468{left:548.640000px;}
.x4d_c01468{left:558.720000px;}
.x1b_c01468{left:560.160000px;}
.x23_c01468{left:570.960000px;}
.x43_c01468{left:581.040000px;}
.xb_c01468{left:583.200000px;}
.x3a_c01468{left:591.120000px;}
.x1c_c01468{left:602.640000px;}
.x3d_c01468{left:604.800000px;}
.x45_c01468{left:612.720000px;}
.x29_c01468{left:614.160000px;}
.x3f_c01468{left:624.240000px;}
.x11_c01468{left:637.200000px;}
.x30_c01468{left:645.840000px;}
.x12_c01468{left:657.360000px;}
.x1d_c01468{left:668.160000px;}
.x46_c01468{left:679.680000px;}
.x40_c01468{left:699.840000px;}
@media print{
.v3_c01468{vertical-align:-10.240000pt;}
.v1_c01468{vertical-align:-2.560000pt;}
.v0_c01468{vertical-align:0.000000pt;}
.v2_c01468{vertical-align:2.560000pt;}
.ls0_c01468{letter-spacing:0.000000pt;}
.ws0_c01468{word-spacing:-1.089920pt;}
.ws3_c01468{word-spacing:0.000000pt;}
.ws1_c01468{word-spacing:1.446827pt;}
.ws2_c01468{word-spacing:11.062187pt;}
.fsc_c01468{font-size:10.240000pt;}
.fse_c01468{font-size:12.800000pt;}
.fsf_c01468{font-size:20.480000pt;}
.fs5_c01468{font-size:30.720000pt;}
.fs9_c01468{font-size:33.280000pt;}
.fsd_c01468{font-size:35.840000pt;}
.fsa_c01468{font-size:38.400000pt;}
.fs3_c01468{font-size:40.960000pt;}
.fs1_c01468{font-size:43.520000pt;}
.fs0_c01468{font-size:46.080000pt;}
.fs4_c01468{font-size:48.640000pt;}
.fs2_c01468{font-size:51.200000pt;}
.fs8_c01468{font-size:53.760000pt;}
.fs6_c01468{font-size:56.320000pt;}
.fs7_c01468{font-size:58.880000pt;}
.fsb_c01468{font-size:61.440000pt;}
.fs10_c01468{font-size:64.000000pt;}
.y0_c01468{bottom:0.000000pt;}
.y73_c01468{bottom:30.720000pt;}
.y75_c01468{bottom:31.360000pt;}
.y76_c01468{bottom:32.000000pt;}
.y74_c01468{bottom:33.280000pt;}
.y72_c01468{bottom:34.560000pt;}
.y6c_c01468{bottom:67.840000pt;}
.y6f_c01468{bottom:69.760000pt;}
.y70_c01468{bottom:70.400000pt;}
.y6d_c01468{bottom:71.040000pt;}
.y6b_c01468{bottom:71.680000pt;}
.y6e_c01468{bottom:72.320000pt;}
.y71_c01468{bottom:72.960000pt;}
.y6a_c01468{bottom:108.160000pt;}
.y67_c01468{bottom:110.080000pt;}
.y69_c01468{bottom:110.720000pt;}
.y68_c01468{bottom:111.360000pt;}
.y64_c01468{bottom:154.880000pt;}
.y62_c01468{bottom:155.520000pt;}
.y63_c01468{bottom:156.160000pt;}
.y5f_c01468{bottom:156.800000pt;}
.y60_c01468{bottom:158.080000pt;}
.y65_c01468{bottom:158.720000pt;}
.y66_c01468{bottom:159.360000pt;}
.y61_c01468{bottom:160.640000pt;}
.y5e_c01468{bottom:169.600000pt;}
.y59_c01468{bottom:193.280000pt;}
.y5d_c01468{bottom:194.560000pt;}
.y5a_c01468{bottom:195.840000pt;}
.y5c_c01468{bottom:196.480000pt;}
.y5b_c01468{bottom:197.120000pt;}
.y57_c01468{bottom:232.320000pt;}
.y58_c01468{bottom:232.960000pt;}
.y56_c01468{bottom:234.240000pt;}
.y54_c01468{bottom:234.880000pt;}
.y55_c01468{bottom:235.520000pt;}
.y53_c01468{bottom:270.080000pt;}
.y52_c01468{bottom:273.280000pt;}
.y51_c01468{bottom:273.920000pt;}
.y4d_c01468{bottom:317.440000pt;}
.y4e_c01468{bottom:318.720000pt;}
.y50_c01468{bottom:319.360000pt;}
.y4f_c01468{bottom:320.640000pt;}
.y4c_c01468{bottom:321.280000pt;}
.y4b_c01468{bottom:356.480000pt;}
.y4a_c01468{bottom:357.120000pt;}
.y49_c01468{bottom:359.040000pt;}
.y48_c01468{bottom:394.880000pt;}
.y47_c01468{bottom:396.800000pt;}
.y46_c01468{bottom:397.440000pt;}
.y44_c01468{bottom:432.000000pt;}
.y45_c01468{bottom:432.640000pt;}
.y40_c01468{bottom:433.280000pt;}
.y43_c01468{bottom:434.560000pt;}
.y41_c01468{bottom:435.200000pt;}
.y42_c01468{bottom:435.840000pt;}
.y3e_c01468{bottom:470.400000pt;}
.y3c_c01468{bottom:471.040000pt;}
.y3d_c01468{bottom:473.600000pt;}
.y3f_c01468{bottom:475.520000pt;}
.y3b_c01468{bottom:508.800000pt;}
.y39_c01468{bottom:509.440000pt;}
.y3a_c01468{bottom:510.720000pt;}
.y38_c01468{bottom:511.360000pt;}
.y37_c01468{bottom:546.560000pt;}
.y34_c01468{bottom:547.840000pt;}
.y36_c01468{bottom:549.120000pt;}
.y33_c01468{bottom:549.760000pt;}
.y35_c01468{bottom:550.400000pt;}
.y32_c01468{bottom:584.960000pt;}
.y31_c01468{bottom:585.600000pt;}
.y2e_c01468{bottom:586.240000pt;}
.y30_c01468{bottom:587.520000pt;}
.y2f_c01468{bottom:588.800000pt;}
.y2d_c01468{bottom:622.720000pt;}
.y2a_c01468{bottom:623.360000pt;}
.y2c_c01468{bottom:624.000000pt;}
.y2b_c01468{bottom:625.280000pt;}
.y28_c01468{bottom:625.920000pt;}
.y27_c01468{bottom:626.560000pt;}
.y29_c01468{bottom:627.200000pt;}
.y25_c01468{bottom:660.480000pt;}
.y23_c01468{bottom:661.760000pt;}
.y26_c01468{bottom:663.040000pt;}
.y24_c01468{bottom:663.680000pt;}
.y22_c01468{bottom:664.320000pt;}
.y21_c01468{bottom:664.960000pt;}
.y20_c01468{bottom:711.040000pt;}
.y1f_c01468{bottom:712.320000pt;}
.y1e_c01468{bottom:746.880000pt;}
.y1c_c01468{bottom:747.520000pt;}
.y1d_c01468{bottom:749.440000pt;}
.y1b_c01468{bottom:750.080000pt;}
.y1a_c01468{bottom:750.720000pt;}
.y18_c01468{bottom:785.280000pt;}
.y13_c01468{bottom:785.920000pt;}
.y14_c01468{bottom:786.560000pt;}
.y19_c01468{bottom:787.200000pt;}
.y17_c01468{bottom:787.840000pt;}
.y15_c01468{bottom:788.480000pt;}
.y16_c01468{bottom:789.120000pt;}
.y10_c01468{bottom:824.320000pt;}
.ye_c01468{bottom:824.960000pt;}
.y12_c01468{bottom:825.600000pt;}
.y11_c01468{bottom:826.240000pt;}
.yd_c01468{bottom:826.880000pt;}
.yf_c01468{bottom:827.520000pt;}
.yb_c01468{bottom:861.440000pt;}
.y7_c01468{bottom:862.080000pt;}
.yc_c01468{bottom:863.360000pt;}
.ya_c01468{bottom:864.000000pt;}
.y8_c01468{bottom:865.280000pt;}
.y9_c01468{bottom:865.920000pt;}
.y6_c01468{bottom:899.840000pt;}
.y5_c01468{bottom:900.480000pt;}
.y4_c01468{bottom:901.120000pt;}
.y3_c01468{bottom:901.760000pt;}
.y1_c01468{bottom:902.400000pt;}
.y2_c01468{bottom:903.040000pt;}
.he_c01468{height:9.215000pt;}
.h11_c01468{height:11.518750pt;}
.h12_c01468{height:18.430000pt;}
.h7_c01468{height:27.645000pt;}
.hb_c01468{height:29.948750pt;}
.h10_c01468{height:32.252500pt;}
.hc_c01468{height:34.556250pt;}
.h5_c01468{height:36.860000pt;}
.h3_c01468{height:39.163750pt;}
.h2_c01468{height:41.467500pt;}
.h6_c01468{height:43.771250pt;}
.hf_c01468{height:44.027500pt;}
.h4_c01468{height:46.075000pt;}
.ha_c01468{height:48.378750pt;}
.h8_c01468{height:50.682500pt;}
.h9_c01468{height:52.986250pt;}
.hd_c01468{height:55.290000pt;}
.h13_c01468{height:57.593750pt;}
.h1_c01468{height:1019.333333pt;}
.h0_c01468{height:1019.520000pt;}
.w0_c01468{width:678.400000pt;}
.w1_c01468{width:678.666667pt;}
.x0_c01468{left:0.000000pt;}
.x24_c01468{left:35.840000pt;}
.x1_c01468{left:37.120000pt;}
.x41_c01468{left:38.400000pt;}
.x48_c01468{left:40.320000pt;}
.x2_c01468{left:65.280000pt;}
.x47_c01468{left:66.560000pt;}
.x31_c01468{left:74.880000pt;}
.x49_c01468{left:84.480000pt;}
.xc_c01468{left:94.080000pt;}
.x42_c01468{left:103.680000pt;}
.x3b_c01468{left:113.280000pt;}
.x4c_c01468{left:120.960000pt;}
.x3_c01468{left:123.520000pt;}
.x13_c01468{left:133.120000pt;}
.x34_c01468{left:141.440000pt;}
.x3c_c01468{left:151.040000pt;}
.x25_c01468{left:152.320000pt;}
.x14_c01468{left:161.280000pt;}
.x4a_c01468{left:169.600000pt;}
.x4_c01468{left:170.880000pt;}
.x3e_c01468{left:172.160000pt;}
.x35_c01468{left:181.120000pt;}
.x5_c01468{left:190.720000pt;}
.x44_c01468{left:199.040000pt;}
.x2a_c01468{left:200.320000pt;}
.x15_c01468{left:209.280000pt;}
.x1e_c01468{left:218.880000pt;}
.xd_c01468{left:228.480000pt;}
.x6_c01468{left:238.080000pt;}
.x16_c01468{left:247.680000pt;}
.x1f_c01468{left:256.000000pt;}
.x7_c01468{left:257.280000pt;}
.x2b_c01468{left:266.880000pt;}
.x38_c01468{left:276.480000pt;}
.x32_c01468{left:277.760000pt;}
.x36_c01468{left:285.440000pt;}
.x17_c01468{left:286.720000pt;}
.x26_c01468{left:296.320000pt;}
.x2c_c01468{left:305.280000pt;}
.x27_c01468{left:314.880000pt;}
.x37_c01468{left:325.120000pt;}
.x39_c01468{left:334.720000pt;}
.x8_c01468{left:343.680000pt;}
.xe_c01468{left:353.280000pt;}
.x2d_c01468{left:362.240000pt;}
.x20_c01468{left:372.480000pt;}
.x9_c01468{left:382.080000pt;}
.x18_c01468{left:392.320000pt;}
.x28_c01468{left:401.280000pt;}
.x33_c01468{left:410.880000pt;}
.x21_c01468{left:412.160000pt;}
.x4b_c01468{left:419.200000pt;}
.x19_c01468{left:420.480000pt;}
.xf_c01468{left:430.720000pt;}
.x2e_c01468{left:439.680000pt;}
.x1a_c01468{left:449.280000pt;}
.x2f_c01468{left:459.520000pt;}
.x10_c01468{left:468.480000pt;}
.x22_c01468{left:478.080000pt;}
.xa_c01468{left:487.680000pt;}
.x4d_c01468{left:496.640000pt;}
.x1b_c01468{left:497.920000pt;}
.x23_c01468{left:507.520000pt;}
.x43_c01468{left:516.480000pt;}
.xb_c01468{left:518.400000pt;}
.x3a_c01468{left:525.440000pt;}
.x1c_c01468{left:535.680000pt;}
.x3d_c01468{left:537.600000pt;}
.x45_c01468{left:544.640000pt;}
.x29_c01468{left:545.920000pt;}
.x3f_c01468{left:554.880000pt;}
.x11_c01468{left:566.400000pt;}
.x30_c01468{left:574.080000pt;}
.x12_c01468{left:584.320000pt;}
.x1d_c01468{left:593.920000pt;}
.x46_c01468{left:604.160000pt;}
.x40_c01468{left:622.080000pt;}
}





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

.ir_c01469:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01469{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01469;src:url('chunks/assets/font_b15ce58e81248f908a430e96.woff2')format("woff");}.ff1_c01469{font-family:ff1_c01469;line-height:1.109863;font-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_c01469{transform:matrix(0.167375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167375,0.000000,0.000000,0.250000,0,0);}
.mb_c01469{transform:matrix(0.218800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218800,0.000000,0.000000,0.250000,0,0);}
.m29_c01469{transform:matrix(0.225100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225100,0.000000,0.000000,0.250000,0,0);}
.m25_c01469{transform:matrix(0.231525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231525,0.000000,0.000000,0.250000,0,0);}
.m27_c01469{transform:matrix(0.233425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233425,0.000000,0.000000,0.250000,0,0);}
.m4f_c01469{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);}
.m2a_c01469{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);}
.m51_c01469{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);}
.m33_c01469{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m0_c01469{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.me_c01469{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m5_c01469{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m8_c01469{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.ma_c01469{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m6_c01469{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01469{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m57_c01469{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m54_c01469{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m28_c01469{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m26_c01469{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m12_c01469{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);}
.m38_c01469{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);}
.m55_c01469{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01469{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m22_c01469{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.md_c01469{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m43_c01469{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);}
.m4d_c01469{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01469{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01469{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);}
.m4e_c01469{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);}
.m24_c01469{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);}
.m5b_c01469{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);}
.m42_c01469{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m15_c01469{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);}
.m37_c01469{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);}
.m3d_c01469{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);}
.m41_c01469{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m17_c01469{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m18_c01469{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m23_c01469{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);}
.m2b_c01469{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m45_c01469{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m20_c01469{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01469{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);}
.m14_c01469{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);}
.m52_c01469{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m53_c01469{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01469{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01469{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m34_c01469{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);}
.m5a_c01469{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01469{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m50_c01469{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);}
.m1f_c01469{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);}
.m10_c01469{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m16_c01469{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m3_c01469{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01469{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);}
.m40_c01469{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m47_c01469{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m58_c01469{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.mf_c01469{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);}
.m13_c01469{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.mc_c01469{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m59_c01469{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01469{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01469{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);}
.m35_c01469{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m32_c01469{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01469{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01469{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);}
.m19_c01469{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01469{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01469{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);}
.m56_c01469{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01469{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m44_c01469{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);}
.m21_c01469{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.m1_c01469{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);}
.m48_c01469{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m49_c01469{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01469{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m30_c01469{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m46_c01469{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m39_c01469{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m11_c01469{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m31_c01469{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);}
.m36_c01469{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);}
.m2_c01469{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m9_c01469{transform:matrix(0.980000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.980000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.980000,0.000000,0.000000,0.250000,0,0);}
.m7_c01469{transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);}
.v0_c01469{vertical-align:0.000000px;}
.ls0_c01469{letter-spacing:0.000000px;}
.sc__c01469{text-shadow:none;}
.sc0_c01469{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01469{-webkit-text-stroke:0px transparent;}
.sc0_c01469{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01469{word-spacing:0.000000px;}
.ws0_c01469{word-spacing:133.030832px;}
.fc0_c01469{color:transparent;}
.fs5_c01469{font-size:11.520000px;}
.fs6_c01469{font-size:20.160000px;}
.fs1_c01469{font-size:34.560000px;}
.fsd_c01469{font-size:37.440000px;}
.fs11_c01469{font-size:40.320000px;}
.fsc_c01469{font-size:43.200000px;}
.fsb_c01469{font-size:46.080000px;}
.fs9_c01469{font-size:48.960000px;}
.fsa_c01469{font-size:51.840000px;}
.fs2_c01469{font-size:54.720000px;}
.fs8_c01469{font-size:57.600000px;}
.fs7_c01469{font-size:60.480000px;}
.fs10_c01469{font-size:63.360000px;}
.fs12_c01469{font-size:66.240000px;}
.fs4_c01469{font-size:69.120000px;}
.fs13_c01469{font-size:72.000000px;}
.fs0_c01469{font-size:74.880000px;}
.fs3_c01469{font-size:95.040000px;}
.fse_c01469{font-size:100.800000px;}
.fsf_c01469{font-size:103.680000px;}
.y0_c01469{bottom:0.000000px;}
.y5a_c01469{bottom:38.880000px;}
.y59_c01469{bottom:40.320000px;}
.y5b_c01469{bottom:41.760000px;}
.y5c_c01469{bottom:42.480000px;}
.y5e_c01469{bottom:43.200000px;}
.y5d_c01469{bottom:43.920000px;}
.y54_c01469{bottom:82.080000px;}
.y53_c01469{bottom:83.520000px;}
.y55_c01469{bottom:84.240000px;}
.y56_c01469{bottom:84.960000px;}
.y58_c01469{bottom:85.680000px;}
.y57_c01469{bottom:86.400000px;}
.y52_c01469{bottom:87.120000px;}
.y50_c01469{bottom:125.280000px;}
.y4e_c01469{bottom:126.720000px;}
.y4f_c01469{bottom:128.160000px;}
.y51_c01469{bottom:128.880000px;}
.y4d_c01469{bottom:167.760000px;}
.y49_c01469{bottom:168.480000px;}
.y4b_c01469{bottom:169.200000px;}
.y4c_c01469{bottom:171.360000px;}
.y4a_c01469{bottom:172.080000px;}
.y48_c01469{bottom:211.680000px;}
.y46_c01469{bottom:213.120000px;}
.y47_c01469{bottom:213.840000px;}
.y45_c01469{bottom:214.560000px;}
.y43_c01469{bottom:253.440000px;}
.y41_c01469{bottom:254.160000px;}
.y44_c01469{bottom:254.880000px;}
.y42_c01469{bottom:257.040000px;}
.y40_c01469{bottom:257.760000px;}
.y3d_c01469{bottom:296.640000px;}
.y3c_c01469{bottom:297.360000px;}
.y3b_c01469{bottom:298.080000px;}
.y3f_c01469{bottom:299.520000px;}
.y3e_c01469{bottom:300.240000px;}
.y38_c01469{bottom:340.560000px;}
.y3a_c01469{bottom:342.720000px;}
.y39_c01469{bottom:343.440000px;}
.y35_c01469{bottom:383.040000px;}
.y37_c01469{bottom:383.760000px;}
.y34_c01469{bottom:385.200000px;}
.y36_c01469{bottom:385.920000px;}
.y33_c01469{bottom:438.480000px;}
.y32_c01469{bottom:479.520000px;}
.y2f_c01469{bottom:480.240000px;}
.y31_c01469{bottom:481.680000px;}
.y30_c01469{bottom:482.400000px;}
.y2e_c01469{bottom:483.120000px;}
.y2a_c01469{bottom:522.000000px;}
.y2d_c01469{bottom:522.720000px;}
.y2c_c01469{bottom:523.440000px;}
.y2b_c01469{bottom:524.880000px;}
.y28_c01469{bottom:525.600000px;}
.y29_c01469{bottom:526.320000px;}
.y25_c01469{bottom:565.200000px;}
.y26_c01469{bottom:565.920000px;}
.y27_c01469{bottom:568.080000px;}
.y23_c01469{bottom:568.800000px;}
.y24_c01469{bottom:569.520000px;}
.y22_c01469{bottom:610.560000px;}
.y21_c01469{bottom:611.280000px;}
.y20_c01469{bottom:612.000000px;}
.y1e_c01469{bottom:663.120000px;}
.y1f_c01469{bottom:665.280000px;}
.y1d_c01469{bottom:715.680000px;}
.y1b_c01469{bottom:717.120000px;}
.y1c_c01469{bottom:719.280000px;}
.y1a_c01469{bottom:720.000000px;}
.y19_c01469{bottom:768.960000px;}
.y17_c01469{bottom:769.680000px;}
.y18_c01469{bottom:770.400000px;}
.y15_c01469{bottom:772.560000px;}
.y16_c01469{bottom:773.280000px;}
.y11_c01469{bottom:823.680000px;}
.y12_c01469{bottom:824.400000px;}
.y14_c01469{bottom:825.120000px;}
.y13_c01469{bottom:825.840000px;}
.y10_c01469{bottom:865.440000px;}
.yf_c01469{bottom:867.600000px;}
.yd_c01469{bottom:868.320000px;}
.ye_c01469{bottom:869.040000px;}
.yc_c01469{bottom:907.920000px;}
.yb_c01469{bottom:910.080000px;}
.ya_c01469{bottom:910.800000px;}
.y9_c01469{bottom:911.520000px;}
.y7_c01469{bottom:961.920000px;}
.y5_c01469{bottom:962.640000px;}
.y8_c01469{bottom:964.080000px;}
.y4_c01469{bottom:964.800000px;}
.y6_c01469{bottom:968.400000px;}
.y2_c01469{bottom:1018.800000px;}
.y3_c01469{bottom:1019.520000px;}
.y1_c01469{bottom:1054.080000px;}
.h7_c01469{height:10.366875px;}
.h8_c01469{height:18.142031px;}
.h3_c01469{height:31.100625px;}
.hf_c01469{height:33.692344px;}
.h13_c01469{height:36.284062px;}
.he_c01469{height:38.875781px;}
.hd_c01469{height:41.467500px;}
.hb_c01469{height:44.059219px;}
.hc_c01469{height:46.650937px;}
.h4_c01469{height:49.242656px;}
.ha_c01469{height:51.834375px;}
.h9_c01469{height:54.426094px;}
.h12_c01469{height:57.017812px;}
.h14_c01469{height:59.609531px;}
.h6_c01469{height:62.201250px;}
.h15_c01469{height:64.792969px;}
.h2_c01469{height:67.384687px;}
.h5_c01469{height:85.526719px;}
.h10_c01469{height:90.710156px;}
.h11_c01469{height:93.301875px;}
.h0_c01469{height:1152.720000px;}
.h1_c01469{height:1152.750000px;}
.w0_c01469{width:781.920000px;}
.w1_c01469{width:782.250000px;}
.x0_c01469{left:0.000000px;}
.x3c_c01469{left:44.640000px;}
.x2_c01469{left:46.080000px;}
.x56_c01469{left:47.520000px;}
.x4b_c01469{left:77.040000px;}
.x3_c01469{left:79.200000px;}
.x5_c01469{left:91.440000px;}
.x59_c01469{left:97.920000px;}
.x37_c01469{left:99.360000px;}
.x17_c01469{left:110.160000px;}
.x4_c01469{left:121.680000px;}
.x4f_c01469{left:130.320000px;}
.x30_c01469{left:131.760000px;}
.x53_c01469{left:141.120000px;}
.x3d_c01469{left:142.560000px;}
.x40_c01469{left:152.640000px;}
.xf_c01469{left:154.080000px;}
.x31_c01469{left:164.160000px;}
.x48_c01469{left:166.320000px;}
.x4c_c01469{left:173.520000px;}
.x6_c01469{left:174.960000px;}
.x46_c01469{left:185.040000px;}
.x10_c01469{left:186.480000px;}
.x32_c01469{left:195.120000px;}
.x41_c01469{left:196.560000px;}
.x1c_c01469{left:207.360000px;}
.x4d_c01469{left:216.720000px;}
.x38_c01469{left:228.960000px;}
.x50_c01469{left:239.040000px;}
.x11_c01469{left:240.480000px;}
.x1d_c01469{left:250.560000px;}
.x5a_c01469{left:259.200000px;}
.x39_c01469{left:261.360000px;}
.x49_c01469{left:262.800000px;}
.x33_c01469{left:272.160000px;}
.x22_c01469{left:273.600000px;}
.x2a_c01469{left:282.960000px;}
.x3a_c01469{left:293.760000px;}
.x23_c01469{left:304.560000px;}
.x7_c01469{left:315.360000px;}
.x2b_c01469{left:325.440000px;}
.x24_c01469{left:337.680000px;}
.x8_c01469{left:340.560000px;}
.x3e_c01469{left:347.040000px;}
.x42_c01469{left:348.480000px;}
.x18_c01469{left:358.560000px;}
.x25_c01469{left:369.360000px;}
.x51_c01469{left:379.440000px;}
.x12_c01469{left:380.880000px;}
.x54_c01469{left:388.800000px;}
.x2c_c01469{left:390.960000px;}
.x57_c01469{left:400.320000px;}
.x19_c01469{left:401.760000px;}
.x1e_c01469{left:411.840000px;}
.x52_c01469{left:421.920000px;}
.x2d_c01469{left:423.360000px;}
.x26_c01469{left:434.160000px;}
.x3f_c01469{left:442.800000px;}
.x9_c01469{left:444.960000px;}
.x34_c01469{left:454.320000px;}
.x1f_c01469{left:455.760000px;}
.x5b_c01469{left:464.400000px;}
.x2e_c01469{left:465.840000px;}
.xa_c01469{left:467.280000px;}
.x4e_c01469{left:475.920000px;}
.x13_c01469{left:477.360000px;}
.x55_c01469{left:486.720000px;}
.x20_c01469{left:488.160000px;}
.x35_c01469{left:497.520000px;}
.x27_c01469{left:509.760000px;}
.x14_c01469{left:520.560000px;}
.x21_c01469{left:530.640000px;}
.x58_c01469{left:540.720000px;}
.x28_c01469{left:542.160000px;}
.x47_c01469{left:552.960000px;}
.xb_c01469{left:555.840000px;}
.x43_c01469{left:563.760000px;}
.x29_c01469{left:574.560000px;}
.x15_c01469{left:586.080000px;}
.x4a_c01469{left:594.720000px;}
.x44_c01469{left:605.520000px;}
.xc_c01469{left:608.400000px;}
.x3b_c01469{left:617.760000px;}
.x1a_c01469{left:628.560000px;}
.x16_c01469{left:630.000000px;}
.x2f_c01469{left:639.360000px;}
.x45_c01469{left:650.880000px;}
.x36_c01469{left:660.960000px;}
.xd_c01469{left:663.120000px;}
.x1b_c01469{left:672.480000px;}
.x1_c01469{left:673.920000px;}
.xe_c01469{left:695.520000px;}
@media print{
.v0_c01469{vertical-align:0.000000pt;}
.ls0_c01469{letter-spacing:0.000000pt;}
.ws1_c01469{word-spacing:0.000000pt;}
.ws0_c01469{word-spacing:118.249628pt;}
.fs5_c01469{font-size:10.240000pt;}
.fs6_c01469{font-size:17.920000pt;}
.fs1_c01469{font-size:30.720000pt;}
.fsd_c01469{font-size:33.280000pt;}
.fs11_c01469{font-size:35.840000pt;}
.fsc_c01469{font-size:38.400000pt;}
.fsb_c01469{font-size:40.960000pt;}
.fs9_c01469{font-size:43.520000pt;}
.fsa_c01469{font-size:46.080000pt;}
.fs2_c01469{font-size:48.640000pt;}
.fs8_c01469{font-size:51.200000pt;}
.fs7_c01469{font-size:53.760000pt;}
.fs10_c01469{font-size:56.320000pt;}
.fs12_c01469{font-size:58.880000pt;}
.fs4_c01469{font-size:61.440000pt;}
.fs13_c01469{font-size:64.000000pt;}
.fs0_c01469{font-size:66.560000pt;}
.fs3_c01469{font-size:84.480000pt;}
.fse_c01469{font-size:89.600000pt;}
.fsf_c01469{font-size:92.160000pt;}
.y0_c01469{bottom:0.000000pt;}
.y5a_c01469{bottom:34.560000pt;}
.y59_c01469{bottom:35.840000pt;}
.y5b_c01469{bottom:37.120000pt;}
.y5c_c01469{bottom:37.760000pt;}
.y5e_c01469{bottom:38.400000pt;}
.y5d_c01469{bottom:39.040000pt;}
.y54_c01469{bottom:72.960000pt;}
.y53_c01469{bottom:74.240000pt;}
.y55_c01469{bottom:74.880000pt;}
.y56_c01469{bottom:75.520000pt;}
.y58_c01469{bottom:76.160000pt;}
.y57_c01469{bottom:76.800000pt;}
.y52_c01469{bottom:77.440000pt;}
.y50_c01469{bottom:111.360000pt;}
.y4e_c01469{bottom:112.640000pt;}
.y4f_c01469{bottom:113.920000pt;}
.y51_c01469{bottom:114.560000pt;}
.y4d_c01469{bottom:149.120000pt;}
.y49_c01469{bottom:149.760000pt;}
.y4b_c01469{bottom:150.400000pt;}
.y4c_c01469{bottom:152.320000pt;}
.y4a_c01469{bottom:152.960000pt;}
.y48_c01469{bottom:188.160000pt;}
.y46_c01469{bottom:189.440000pt;}
.y47_c01469{bottom:190.080000pt;}
.y45_c01469{bottom:190.720000pt;}
.y43_c01469{bottom:225.280000pt;}
.y41_c01469{bottom:225.920000pt;}
.y44_c01469{bottom:226.560000pt;}
.y42_c01469{bottom:228.480000pt;}
.y40_c01469{bottom:229.120000pt;}
.y3d_c01469{bottom:263.680000pt;}
.y3c_c01469{bottom:264.320000pt;}
.y3b_c01469{bottom:264.960000pt;}
.y3f_c01469{bottom:266.240000pt;}
.y3e_c01469{bottom:266.880000pt;}
.y38_c01469{bottom:302.720000pt;}
.y3a_c01469{bottom:304.640000pt;}
.y39_c01469{bottom:305.280000pt;}
.y35_c01469{bottom:340.480000pt;}
.y37_c01469{bottom:341.120000pt;}
.y34_c01469{bottom:342.400000pt;}
.y36_c01469{bottom:343.040000pt;}
.y33_c01469{bottom:389.760000pt;}
.y32_c01469{bottom:426.240000pt;}
.y2f_c01469{bottom:426.880000pt;}
.y31_c01469{bottom:428.160000pt;}
.y30_c01469{bottom:428.800000pt;}
.y2e_c01469{bottom:429.440000pt;}
.y2a_c01469{bottom:464.000000pt;}
.y2d_c01469{bottom:464.640000pt;}
.y2c_c01469{bottom:465.280000pt;}
.y2b_c01469{bottom:466.560000pt;}
.y28_c01469{bottom:467.200000pt;}
.y29_c01469{bottom:467.840000pt;}
.y25_c01469{bottom:502.400000pt;}
.y26_c01469{bottom:503.040000pt;}
.y27_c01469{bottom:504.960000pt;}
.y23_c01469{bottom:505.600000pt;}
.y24_c01469{bottom:506.240000pt;}
.y22_c01469{bottom:542.720000pt;}
.y21_c01469{bottom:543.360000pt;}
.y20_c01469{bottom:544.000000pt;}
.y1e_c01469{bottom:589.440000pt;}
.y1f_c01469{bottom:591.360000pt;}
.y1d_c01469{bottom:636.160000pt;}
.y1b_c01469{bottom:637.440000pt;}
.y1c_c01469{bottom:639.360000pt;}
.y1a_c01469{bottom:640.000000pt;}
.y19_c01469{bottom:683.520000pt;}
.y17_c01469{bottom:684.160000pt;}
.y18_c01469{bottom:684.800000pt;}
.y15_c01469{bottom:686.720000pt;}
.y16_c01469{bottom:687.360000pt;}
.y11_c01469{bottom:732.160000pt;}
.y12_c01469{bottom:732.800000pt;}
.y14_c01469{bottom:733.440000pt;}
.y13_c01469{bottom:734.080000pt;}
.y10_c01469{bottom:769.280000pt;}
.yf_c01469{bottom:771.200000pt;}
.yd_c01469{bottom:771.840000pt;}
.ye_c01469{bottom:772.480000pt;}
.yc_c01469{bottom:807.040000pt;}
.yb_c01469{bottom:808.960000pt;}
.ya_c01469{bottom:809.600000pt;}
.y9_c01469{bottom:810.240000pt;}
.y7_c01469{bottom:855.040000pt;}
.y5_c01469{bottom:855.680000pt;}
.y8_c01469{bottom:856.960000pt;}
.y4_c01469{bottom:857.600000pt;}
.y6_c01469{bottom:860.800000pt;}
.y2_c01469{bottom:905.600000pt;}
.y3_c01469{bottom:906.240000pt;}
.y1_c01469{bottom:936.960000pt;}
.h7_c01469{height:9.215000pt;}
.h8_c01469{height:16.126250pt;}
.h3_c01469{height:27.645000pt;}
.hf_c01469{height:29.948750pt;}
.h13_c01469{height:32.252500pt;}
.he_c01469{height:34.556250pt;}
.hd_c01469{height:36.860000pt;}
.hb_c01469{height:39.163750pt;}
.hc_c01469{height:41.467500pt;}
.h4_c01469{height:43.771250pt;}
.ha_c01469{height:46.075000pt;}
.h9_c01469{height:48.378750pt;}
.h12_c01469{height:50.682500pt;}
.h14_c01469{height:52.986250pt;}
.h6_c01469{height:55.290000pt;}
.h15_c01469{height:57.593750pt;}
.h2_c01469{height:59.897500pt;}
.h5_c01469{height:76.023750pt;}
.h10_c01469{height:80.631250pt;}
.h11_c01469{height:82.935000pt;}
.h0_c01469{height:1024.640000pt;}
.h1_c01469{height:1024.666667pt;}
.w0_c01469{width:695.040000pt;}
.w1_c01469{width:695.333333pt;}
.x0_c01469{left:0.000000pt;}
.x3c_c01469{left:39.680000pt;}
.x2_c01469{left:40.960000pt;}
.x56_c01469{left:42.240000pt;}
.x4b_c01469{left:68.480000pt;}
.x3_c01469{left:70.400000pt;}
.x5_c01469{left:81.280000pt;}
.x59_c01469{left:87.040000pt;}
.x37_c01469{left:88.320000pt;}
.x17_c01469{left:97.920000pt;}
.x4_c01469{left:108.160000pt;}
.x4f_c01469{left:115.840000pt;}
.x30_c01469{left:117.120000pt;}
.x53_c01469{left:125.440000pt;}
.x3d_c01469{left:126.720000pt;}
.x40_c01469{left:135.680000pt;}
.xf_c01469{left:136.960000pt;}
.x31_c01469{left:145.920000pt;}
.x48_c01469{left:147.840000pt;}
.x4c_c01469{left:154.240000pt;}
.x6_c01469{left:155.520000pt;}
.x46_c01469{left:164.480000pt;}
.x10_c01469{left:165.760000pt;}
.x32_c01469{left:173.440000pt;}
.x41_c01469{left:174.720000pt;}
.x1c_c01469{left:184.320000pt;}
.x4d_c01469{left:192.640000pt;}
.x38_c01469{left:203.520000pt;}
.x50_c01469{left:212.480000pt;}
.x11_c01469{left:213.760000pt;}
.x1d_c01469{left:222.720000pt;}
.x5a_c01469{left:230.400000pt;}
.x39_c01469{left:232.320000pt;}
.x49_c01469{left:233.600000pt;}
.x33_c01469{left:241.920000pt;}
.x22_c01469{left:243.200000pt;}
.x2a_c01469{left:251.520000pt;}
.x3a_c01469{left:261.120000pt;}
.x23_c01469{left:270.720000pt;}
.x7_c01469{left:280.320000pt;}
.x2b_c01469{left:289.280000pt;}
.x24_c01469{left:300.160000pt;}
.x8_c01469{left:302.720000pt;}
.x3e_c01469{left:308.480000pt;}
.x42_c01469{left:309.760000pt;}
.x18_c01469{left:318.720000pt;}
.x25_c01469{left:328.320000pt;}
.x51_c01469{left:337.280000pt;}
.x12_c01469{left:338.560000pt;}
.x54_c01469{left:345.600000pt;}
.x2c_c01469{left:347.520000pt;}
.x57_c01469{left:355.840000pt;}
.x19_c01469{left:357.120000pt;}
.x1e_c01469{left:366.080000pt;}
.x52_c01469{left:375.040000pt;}
.x2d_c01469{left:376.320000pt;}
.x26_c01469{left:385.920000pt;}
.x3f_c01469{left:393.600000pt;}
.x9_c01469{left:395.520000pt;}
.x34_c01469{left:403.840000pt;}
.x1f_c01469{left:405.120000pt;}
.x5b_c01469{left:412.800000pt;}
.x2e_c01469{left:414.080000pt;}
.xa_c01469{left:415.360000pt;}
.x4e_c01469{left:423.040000pt;}
.x13_c01469{left:424.320000pt;}
.x55_c01469{left:432.640000pt;}
.x20_c01469{left:433.920000pt;}
.x35_c01469{left:442.240000pt;}
.x27_c01469{left:453.120000pt;}
.x14_c01469{left:462.720000pt;}
.x21_c01469{left:471.680000pt;}
.x58_c01469{left:480.640000pt;}
.x28_c01469{left:481.920000pt;}
.x47_c01469{left:491.520000pt;}
.xb_c01469{left:494.080000pt;}
.x43_c01469{left:501.120000pt;}
.x29_c01469{left:510.720000pt;}
.x15_c01469{left:520.960000pt;}
.x4a_c01469{left:528.640000pt;}
.x44_c01469{left:538.240000pt;}
.xc_c01469{left:540.800000pt;}
.x3b_c01469{left:549.120000pt;}
.x1a_c01469{left:558.720000pt;}
.x16_c01469{left:560.000000pt;}
.x2f_c01469{left:568.320000pt;}
.x45_c01469{left:578.560000pt;}
.x36_c01469{left:587.520000pt;}
.xd_c01469{left:589.440000pt;}
.x1b_c01469{left:597.760000pt;}
.x1_c01469{left:599.040000pt;}
.xe_c01469{left:618.240000pt;}
}





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

.ir_c01470:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01470{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01470;src:url('chunks/assets/font_c16f824882ab73dab3de7aff.woff2')format("woff");}.ff1_c01470{font-family:ff1_c01470;line-height:1.109863;font-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_c01470{transform:matrix(0.234725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234725,0.000000,0.000000,0.250000,0,0);}
.m58_c01470{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);}
.m2b_c01470{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);}
.m3f_c01470{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m0_c01470{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01470{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m40_c01470{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m39_c01470{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m47_c01470{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01470{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m28_c01470{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01470{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01470{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m9_c01470{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);}
.m37_c01470{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m15_c01470{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);}
.m57_c01470{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);}
.m49_c01470{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);}
.m52_c01470{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m33_c01470{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);}
.m42_c01470{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);}
.mc_c01470{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01470{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);}
.m4c_c01470{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m17_c01470{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m56_c01470{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.me_c01470{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);}
.mb_c01470{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m6_c01470{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m48_c01470{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);}
.m12_c01470{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01470{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);}
.m54_c01470{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_c01470{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);}
.m8_c01470{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m46_c01470{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m31_c01470{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m7_c01470{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m27_c01470{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);}
.m21_c01470{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m20_c01470{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);}
.m11_c01470{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);}
.m2d_c01470{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m59_c01470{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01470{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m43_c01470{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m5_c01470{transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);}
.m13_c01470{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m44_c01470{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m41_c01470{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);}
.m32_c01470{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m25_c01470{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);}
.m3_c01470{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m4e_c01470{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01470{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01470{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);}
.m2_c01470{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m51_c01470{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m30_c01470{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m18_c01470{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);}
.mf_c01470{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m24_c01470{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m14_c01470{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m23_c01470{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m10_c01470{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);}
.m1_c01470{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);}
.m4_c01470{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01470{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);}
.md_c01470{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m5c_c01470{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m34_c01470{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m5b_c01470{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m26_c01470{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);}
.m36_c01470{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01470{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m29_c01470{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01470{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);}
.ma_c01470{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m45_c01470{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);}
.m1d_c01470{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);}
.m35_c01470{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01470{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m5a_c01470{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01470{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m53_c01470{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);}
.m4b_c01470{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01470{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);}
.m22_c01470{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m55_c01470{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m16_c01470{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m38_c01470{transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);}
.m50_c01470{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01470{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);}
.v1_c01470{vertical-align:-2.880000px;}
.v0_c01470{vertical-align:0.000000px;}
.ls0_c01470{letter-spacing:0.000000px;}
.sc__c01470{text-shadow:none;}
.sc0_c01470{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01470{-webkit-text-stroke:0px transparent;}
.sc0_c01470{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01470{word-spacing:-2.789760px;}
.ws2_c01470{word-spacing:0.000000px;}
.ws1_c01470{word-spacing:4.444320px;}
.fc0_c01470{color:transparent;}
.fsa_c01470{font-size:34.560000px;}
.fsb_c01470{font-size:37.440000px;}
.fs7_c01470{font-size:40.320000px;}
.fsc_c01470{font-size:43.200000px;}
.fs8_c01470{font-size:46.080000px;}
.fs2_c01470{font-size:48.960000px;}
.fs1_c01470{font-size:51.840000px;}
.fs3_c01470{font-size:54.720000px;}
.fs6_c01470{font-size:57.600000px;}
.fs4_c01470{font-size:60.480000px;}
.fs5_c01470{font-size:63.360000px;}
.fs9_c01470{font-size:66.240000px;}
.fsd_c01470{font-size:69.120000px;}
.fs0_c01470{font-size:72.000000px;}
.y0_c01470{bottom:0.000000px;}
.y5f_c01470{bottom:60.480000px;}
.y61_c01470{bottom:61.200000px;}
.y60_c01470{bottom:61.920000px;}
.y5e_c01470{bottom:62.640000px;}
.y5d_c01470{bottom:63.360000px;}
.y5c_c01470{bottom:64.080000px;}
.y57_c01470{bottom:103.680000px;}
.y5a_c01470{bottom:104.400000px;}
.y5b_c01470{bottom:105.120000px;}
.y59_c01470{bottom:106.560000px;}
.y58_c01470{bottom:107.280000px;}
.y54_c01470{bottom:146.880000px;}
.y56_c01470{bottom:147.600000px;}
.y52_c01470{bottom:149.040000px;}
.y53_c01470{bottom:149.760000px;}
.y55_c01470{bottom:150.480000px;}
.y51_c01470{bottom:190.080000px;}
.y50_c01470{bottom:192.960000px;}
.y4f_c01470{bottom:193.680000px;}
.y4c_c01470{bottom:233.280000px;}
.y4d_c01470{bottom:234.000000px;}
.y4b_c01470{bottom:236.160000px;}
.y4e_c01470{bottom:236.880000px;}
.y44_c01470{bottom:285.840000px;}
.y46_c01470{bottom:286.560000px;}
.y48_c01470{bottom:287.280000px;}
.y4a_c01470{bottom:288.720000px;}
.y45_c01470{bottom:289.440000px;}
.y47_c01470{bottom:290.160000px;}
.y49_c01470{bottom:290.880000px;}
.y42_c01470{bottom:329.760000px;}
.y40_c01470{bottom:330.480000px;}
.y41_c01470{bottom:332.640000px;}
.y43_c01470{bottom:333.360000px;}
.y3f_c01470{bottom:334.080000px;}
.y3e_c01470{bottom:373.680000px;}
.y3d_c01470{bottom:375.840000px;}
.y3c_c01470{bottom:427.680000px;}
.y3b_c01470{bottom:428.400000px;}
.y39_c01470{bottom:429.840000px;}
.y3a_c01470{bottom:430.560000px;}
.y38_c01470{bottom:470.160000px;}
.y36_c01470{bottom:472.320000px;}
.y37_c01470{bottom:473.040000px;}
.y35_c01470{bottom:473.760000px;}
.y31_c01470{bottom:512.640000px;}
.y34_c01470{bottom:513.360000px;}
.y33_c01470{bottom:515.520000px;}
.y32_c01470{bottom:516.240000px;}
.y2e_c01470{bottom:555.840000px;}
.y2d_c01470{bottom:556.560000px;}
.y30_c01470{bottom:558.000000px;}
.y2f_c01470{bottom:558.720000px;}
.y2b_c01470{bottom:598.320000px;}
.y28_c01470{bottom:599.760000px;}
.y29_c01470{bottom:600.480000px;}
.y2a_c01470{bottom:601.200000px;}
.y2c_c01470{bottom:601.920000px;}
.y26_c01470{bottom:640.080000px;}
.y24_c01470{bottom:640.800000px;}
.y25_c01470{bottom:641.520000px;}
.y27_c01470{bottom:642.240000px;}
.y21_c01470{bottom:643.680000px;}
.y23_c01470{bottom:644.400000px;}
.y22_c01470{bottom:645.120000px;}
.y1f_c01470{bottom:684.000000px;}
.y20_c01470{bottom:684.720000px;}
.y1e_c01470{bottom:686.880000px;}
.y1d_c01470{bottom:687.600000px;}
.y18_c01470{bottom:737.280000px;}
.y1c_c01470{bottom:740.160000px;}
.y1b_c01470{bottom:740.880000px;}
.y1a_c01470{bottom:741.600000px;}
.y19_c01470{bottom:742.320000px;}
.y17_c01470{bottom:783.360000px;}
.y16_c01470{bottom:784.080000px;}
.y11_c01470{bottom:823.680000px;}
.y13_c01470{bottom:824.400000px;}
.y15_c01470{bottom:825.840000px;}
.y14_c01470{bottom:826.560000px;}
.y12_c01470{bottom:827.280000px;}
.y10_c01470{bottom:866.880000px;}
.yf_c01470{bottom:867.600000px;}
.ye_c01470{bottom:869.760000px;}
.yb_c01470{bottom:910.080000px;}
.yd_c01470{bottom:911.520000px;}
.yc_c01470{bottom:912.240000px;}
.ya_c01470{bottom:912.960000px;}
.y9_c01470{bottom:913.680000px;}
.y8_c01470{bottom:952.560000px;}
.y7_c01470{bottom:955.440000px;}
.y6_c01470{bottom:1017.360000px;}
.y3_c01470{bottom:1018.080000px;}
.y5_c01470{bottom:1019.520000px;}
.y4_c01470{bottom:1020.240000px;}
.y2_c01470{bottom:1020.960000px;}
.y1_c01470{bottom:1092.240000px;}
.hb_c01470{height:31.100625px;}
.hd_c01470{height:33.692344px;}
.hf_c01470{height:35.995781px;}
.h9_c01470{height:36.284062px;}
.he_c01470{height:38.875781px;}
.ha_c01470{height:41.467500px;}
.h4_c01470{height:44.059219px;}
.h3_c01470{height:46.650937px;}
.h5_c01470{height:49.242656px;}
.h8_c01470{height:51.834375px;}
.h6_c01470{height:54.426094px;}
.h7_c01470{height:57.017812px;}
.hc_c01470{height:59.609531px;}
.h10_c01470{height:62.201250px;}
.h2_c01470{height:64.792969px;}
.h0_c01470{height:1154.880000px;}
.h1_c01470{height:1155.000000px;}
.w1_c01470{width:768.750000px;}
.w0_c01470{width:768.960000px;}
.x0_c01470{left:0.000000px;}
.x2_c01470{left:45.360000px;}
.x1f_c01470{left:46.800000px;}
.x20_c01470{left:67.680000px;}
.x36_c01470{left:76.320000px;}
.x4b_c01470{left:77.760000px;}
.x41_c01470{left:88.560000px;}
.x3_c01470{left:90.000000px;}
.x21_c01470{left:110.160000px;}
.x37_c01470{left:120.960000px;}
.x42_c01470{left:130.320000px;}
.x4e_c01470{left:131.760000px;}
.x17_c01470{left:133.200000px;}
.x25_c01470{left:143.280000px;}
.x45_c01470{left:153.360000px;}
.xb_c01470{left:154.800000px;}
.x18_c01470{left:164.160000px;}
.x26_c01470{left:165.600000px;}
.xc_c01470{left:174.960000px;}
.x4_c01470{left:186.480000px;}
.x3d_c01470{left:196.560000px;}
.x51_c01470{left:207.360000px;}
.x9_c01470{left:208.800000px;}
.x4f_c01470{left:218.160000px;}
.x12_c01470{left:229.680000px;}
.x2f_c01470{left:239.760000px;}
.x5_c01470{left:241.200000px;}
.x28_c01470{left:261.360000px;}
.x44_c01470{left:272.160000px;}
.x6_c01470{left:273.600000px;}
.x38_c01470{left:282.960000px;}
.x19_c01470{left:293.760000px;}
.xd_c01470{left:304.560000px;}
.x27_c01470{left:315.360000px;}
.x13_c01470{left:326.880000px;}
.x1a_c01470{left:336.960000px;}
.x30_c01470{left:338.400000px;}
.x7_c01470{left:348.480000px;}
.xe_c01470{left:349.920000px;}
.xa_c01470{left:359.280000px;}
.x14_c01470{left:369.360000px;}
.x3f_c01470{left:382.320000px;}
.x8_c01470{left:391.680000px;}
.x22_c01470{left:401.760000px;}
.x31_c01470{left:414.000000px;}
.x29_c01470{left:423.360000px;}
.x1b_c01470{left:433.440000px;}
.x32_c01470{left:444.960000px;}
.x39_c01470{left:446.400000px;}
.x2a_c01470{left:455.760000px;}
.xf_c01470{left:457.200000px;}
.x52_c01470{left:466.560000px;}
.x33_c01470{left:477.360000px;}
.x4c_c01470{left:488.160000px;}
.x3a_c01470{left:489.600000px;}
.x23_c01470{left:498.960000px;}
.x1c_c01470{left:500.400000px;}
.x47_c01470{left:510.480000px;}
.x2b_c01470{left:521.280000px;}
.x49_c01470{left:531.360000px;}
.x3b_c01470{left:532.800000px;}
.x43_c01470{left:542.160000px;}
.x4d_c01470{left:552.240000px;}
.x2c_c01470{left:553.680000px;}
.x4a_c01470{left:563.040000px;}
.x1d_c01470{left:565.200000px;}
.x10_c01470{left:575.280000px;}
.x1e_c01470{left:586.080000px;}
.x15_c01470{left:596.880000px;}
.x3c_c01470{left:606.960000px;}
.x3e_c01470{left:617.760000px;}
.x24_c01470{left:619.200000px;}
.x2d_c01470{left:628.560000px;}
.x40_c01470{left:638.640000px;}
.x16_c01470{left:640.080000px;}
.x34_c01470{left:641.520000px;}
.x2e_c01470{left:650.880000px;}
.x11_c01470{left:661.680000px;}
.x48_c01470{left:663.120000px;}
.x1_c01470{left:669.600000px;}
.x50_c01470{left:671.760000px;}
.x35_c01470{left:673.200000px;}
.x46_c01470{left:683.280000px;}
@media print{
.v1_c01470{vertical-align:-2.560000pt;}
.v0_c01470{vertical-align:0.000000pt;}
.ls0_c01470{letter-spacing:0.000000pt;}
.ws0_c01470{word-spacing:-2.479787pt;}
.ws2_c01470{word-spacing:0.000000pt;}
.ws1_c01470{word-spacing:3.950507pt;}
.fsa_c01470{font-size:30.720000pt;}
.fsb_c01470{font-size:33.280000pt;}
.fs7_c01470{font-size:35.840000pt;}
.fsc_c01470{font-size:38.400000pt;}
.fs8_c01470{font-size:40.960000pt;}
.fs2_c01470{font-size:43.520000pt;}
.fs1_c01470{font-size:46.080000pt;}
.fs3_c01470{font-size:48.640000pt;}
.fs6_c01470{font-size:51.200000pt;}
.fs4_c01470{font-size:53.760000pt;}
.fs5_c01470{font-size:56.320000pt;}
.fs9_c01470{font-size:58.880000pt;}
.fsd_c01470{font-size:61.440000pt;}
.fs0_c01470{font-size:64.000000pt;}
.y0_c01470{bottom:0.000000pt;}
.y5f_c01470{bottom:53.760000pt;}
.y61_c01470{bottom:54.400000pt;}
.y60_c01470{bottom:55.040000pt;}
.y5e_c01470{bottom:55.680000pt;}
.y5d_c01470{bottom:56.320000pt;}
.y5c_c01470{bottom:56.960000pt;}
.y57_c01470{bottom:92.160000pt;}
.y5a_c01470{bottom:92.800000pt;}
.y5b_c01470{bottom:93.440000pt;}
.y59_c01470{bottom:94.720000pt;}
.y58_c01470{bottom:95.360000pt;}
.y54_c01470{bottom:130.560000pt;}
.y56_c01470{bottom:131.200000pt;}
.y52_c01470{bottom:132.480000pt;}
.y53_c01470{bottom:133.120000pt;}
.y55_c01470{bottom:133.760000pt;}
.y51_c01470{bottom:168.960000pt;}
.y50_c01470{bottom:171.520000pt;}
.y4f_c01470{bottom:172.160000pt;}
.y4c_c01470{bottom:207.360000pt;}
.y4d_c01470{bottom:208.000000pt;}
.y4b_c01470{bottom:209.920000pt;}
.y4e_c01470{bottom:210.560000pt;}
.y44_c01470{bottom:254.080000pt;}
.y46_c01470{bottom:254.720000pt;}
.y48_c01470{bottom:255.360000pt;}
.y4a_c01470{bottom:256.640000pt;}
.y45_c01470{bottom:257.280000pt;}
.y47_c01470{bottom:257.920000pt;}
.y49_c01470{bottom:258.560000pt;}
.y42_c01470{bottom:293.120000pt;}
.y40_c01470{bottom:293.760000pt;}
.y41_c01470{bottom:295.680000pt;}
.y43_c01470{bottom:296.320000pt;}
.y3f_c01470{bottom:296.960000pt;}
.y3e_c01470{bottom:332.160000pt;}
.y3d_c01470{bottom:334.080000pt;}
.y3c_c01470{bottom:380.160000pt;}
.y3b_c01470{bottom:380.800000pt;}
.y39_c01470{bottom:382.080000pt;}
.y3a_c01470{bottom:382.720000pt;}
.y38_c01470{bottom:417.920000pt;}
.y36_c01470{bottom:419.840000pt;}
.y37_c01470{bottom:420.480000pt;}
.y35_c01470{bottom:421.120000pt;}
.y31_c01470{bottom:455.680000pt;}
.y34_c01470{bottom:456.320000pt;}
.y33_c01470{bottom:458.240000pt;}
.y32_c01470{bottom:458.880000pt;}
.y2e_c01470{bottom:494.080000pt;}
.y2d_c01470{bottom:494.720000pt;}
.y30_c01470{bottom:496.000000pt;}
.y2f_c01470{bottom:496.640000pt;}
.y2b_c01470{bottom:531.840000pt;}
.y28_c01470{bottom:533.120000pt;}
.y29_c01470{bottom:533.760000pt;}
.y2a_c01470{bottom:534.400000pt;}
.y2c_c01470{bottom:535.040000pt;}
.y26_c01470{bottom:568.960000pt;}
.y24_c01470{bottom:569.600000pt;}
.y25_c01470{bottom:570.240000pt;}
.y27_c01470{bottom:570.880000pt;}
.y21_c01470{bottom:572.160000pt;}
.y23_c01470{bottom:572.800000pt;}
.y22_c01470{bottom:573.440000pt;}
.y1f_c01470{bottom:608.000000pt;}
.y20_c01470{bottom:608.640000pt;}
.y1e_c01470{bottom:610.560000pt;}
.y1d_c01470{bottom:611.200000pt;}
.y18_c01470{bottom:655.360000pt;}
.y1c_c01470{bottom:657.920000pt;}
.y1b_c01470{bottom:658.560000pt;}
.y1a_c01470{bottom:659.200000pt;}
.y19_c01470{bottom:659.840000pt;}
.y17_c01470{bottom:696.320000pt;}
.y16_c01470{bottom:696.960000pt;}
.y11_c01470{bottom:732.160000pt;}
.y13_c01470{bottom:732.800000pt;}
.y15_c01470{bottom:734.080000pt;}
.y14_c01470{bottom:734.720000pt;}
.y12_c01470{bottom:735.360000pt;}
.y10_c01470{bottom:770.560000pt;}
.yf_c01470{bottom:771.200000pt;}
.ye_c01470{bottom:773.120000pt;}
.yb_c01470{bottom:808.960000pt;}
.yd_c01470{bottom:810.240000pt;}
.yc_c01470{bottom:810.880000pt;}
.ya_c01470{bottom:811.520000pt;}
.y9_c01470{bottom:812.160000pt;}
.y8_c01470{bottom:846.720000pt;}
.y7_c01470{bottom:849.280000pt;}
.y6_c01470{bottom:904.320000pt;}
.y3_c01470{bottom:904.960000pt;}
.y5_c01470{bottom:906.240000pt;}
.y4_c01470{bottom:906.880000pt;}
.y2_c01470{bottom:907.520000pt;}
.y1_c01470{bottom:970.880000pt;}
.hb_c01470{height:27.645000pt;}
.hd_c01470{height:29.948750pt;}
.hf_c01470{height:31.996250pt;}
.h9_c01470{height:32.252500pt;}
.he_c01470{height:34.556250pt;}
.ha_c01470{height:36.860000pt;}
.h4_c01470{height:39.163750pt;}
.h3_c01470{height:41.467500pt;}
.h5_c01470{height:43.771250pt;}
.h8_c01470{height:46.075000pt;}
.h6_c01470{height:48.378750pt;}
.h7_c01470{height:50.682500pt;}
.hc_c01470{height:52.986250pt;}
.h10_c01470{height:55.290000pt;}
.h2_c01470{height:57.593750pt;}
.h0_c01470{height:1026.560000pt;}
.h1_c01470{height:1026.666667pt;}
.w1_c01470{width:683.333333pt;}
.w0_c01470{width:683.520000pt;}
.x0_c01470{left:0.000000pt;}
.x2_c01470{left:40.320000pt;}
.x1f_c01470{left:41.600000pt;}
.x20_c01470{left:60.160000pt;}
.x36_c01470{left:67.840000pt;}
.x4b_c01470{left:69.120000pt;}
.x41_c01470{left:78.720000pt;}
.x3_c01470{left:80.000000pt;}
.x21_c01470{left:97.920000pt;}
.x37_c01470{left:107.520000pt;}
.x42_c01470{left:115.840000pt;}
.x4e_c01470{left:117.120000pt;}
.x17_c01470{left:118.400000pt;}
.x25_c01470{left:127.360000pt;}
.x45_c01470{left:136.320000pt;}
.xb_c01470{left:137.600000pt;}
.x18_c01470{left:145.920000pt;}
.x26_c01470{left:147.200000pt;}
.xc_c01470{left:155.520000pt;}
.x4_c01470{left:165.760000pt;}
.x3d_c01470{left:174.720000pt;}
.x51_c01470{left:184.320000pt;}
.x9_c01470{left:185.600000pt;}
.x4f_c01470{left:193.920000pt;}
.x12_c01470{left:204.160000pt;}
.x2f_c01470{left:213.120000pt;}
.x5_c01470{left:214.400000pt;}
.x28_c01470{left:232.320000pt;}
.x44_c01470{left:241.920000pt;}
.x6_c01470{left:243.200000pt;}
.x38_c01470{left:251.520000pt;}
.x19_c01470{left:261.120000pt;}
.xd_c01470{left:270.720000pt;}
.x27_c01470{left:280.320000pt;}
.x13_c01470{left:290.560000pt;}
.x1a_c01470{left:299.520000pt;}
.x30_c01470{left:300.800000pt;}
.x7_c01470{left:309.760000pt;}
.xe_c01470{left:311.040000pt;}
.xa_c01470{left:319.360000pt;}
.x14_c01470{left:328.320000pt;}
.x3f_c01470{left:339.840000pt;}
.x8_c01470{left:348.160000pt;}
.x22_c01470{left:357.120000pt;}
.x31_c01470{left:368.000000pt;}
.x29_c01470{left:376.320000pt;}
.x1b_c01470{left:385.280000pt;}
.x32_c01470{left:395.520000pt;}
.x39_c01470{left:396.800000pt;}
.x2a_c01470{left:405.120000pt;}
.xf_c01470{left:406.400000pt;}
.x52_c01470{left:414.720000pt;}
.x33_c01470{left:424.320000pt;}
.x4c_c01470{left:433.920000pt;}
.x3a_c01470{left:435.200000pt;}
.x23_c01470{left:443.520000pt;}
.x1c_c01470{left:444.800000pt;}
.x47_c01470{left:453.760000pt;}
.x2b_c01470{left:463.360000pt;}
.x49_c01470{left:472.320000pt;}
.x3b_c01470{left:473.600000pt;}
.x43_c01470{left:481.920000pt;}
.x4d_c01470{left:490.880000pt;}
.x2c_c01470{left:492.160000pt;}
.x4a_c01470{left:500.480000pt;}
.x1d_c01470{left:502.400000pt;}
.x10_c01470{left:511.360000pt;}
.x1e_c01470{left:520.960000pt;}
.x15_c01470{left:530.560000pt;}
.x3c_c01470{left:539.520000pt;}
.x3e_c01470{left:549.120000pt;}
.x24_c01470{left:550.400000pt;}
.x2d_c01470{left:558.720000pt;}
.x40_c01470{left:567.680000pt;}
.x16_c01470{left:568.960000pt;}
.x34_c01470{left:570.240000pt;}
.x2e_c01470{left:578.560000pt;}
.x11_c01470{left:588.160000pt;}
.x48_c01470{left:589.440000pt;}
.x1_c01470{left:595.200000pt;}
.x50_c01470{left:597.120000pt;}
.x35_c01470{left:598.400000pt;}
.x46_c01470{left:607.360000pt;}
}





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

.ir_c01471:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01471{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01471;src:url('chunks/assets/font_bd96d0b7a26e624960315e7f.woff2')format("woff");}.ff1_c01471{font-family:ff1_c01471;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m54_c01471{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m0_c01471{transform:matrix(0.233800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233800,0.000000,0.000000,0.250000,0,0);}
.m1_c01471{transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);}
.m3b_c01471{transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);}
.m6_c01471{transform:matrix(0.242300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242300,0.000000,0.000000,0.250000,0,0);}
.m5d_c01471{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m58_c01471{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);}
.m52_c01471{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);}
.m61_c01471{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m53_c01471{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01471{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m3_c01471{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m5f_c01471{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01471{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m64_c01471{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m55_c01471{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01471{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m51_c01471{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m18_c01471{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m9_c01471{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m4_c01471{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m43_c01471{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m32_c01471{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m20_c01471{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);}
.m3e_c01471{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);}
.m5e_c01471{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01471{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m15_c01471{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);}
.m44_c01471{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m36_c01471{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);}
.m2c_c01471{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m29_c01471{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);}
.m24_c01471{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);}
.m49_c01471{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01471{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m14_c01471{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);}
.m56_c01471{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);}
.m4c_c01471{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);}
.m4e_c01471{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m57_c01471{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);}
.m10_c01471{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m5b_c01471{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);}
.m26_c01471{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);}
.m3a_c01471{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.mc_c01471{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m7_c01471{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.me_c01471{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);}
.m22_c01471{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m40_c01471{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);}
.mf_c01471{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m62_c01471{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);}
.m11_c01471{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);}
.m50_c01471{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01471{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m27_c01471{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01471{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m46_c01471{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01471{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);}
.m45_c01471{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m4a_c01471{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);}
.m5a_c01471{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m21_c01471{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m4f_c01471{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m33_c01471{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);}
.m63_c01471{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m30_c01471{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m31_c01471{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);}
.m1a_c01471{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01471{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m5c_c01471{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m25_c01471{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.mb_c01471{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m13_c01471{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);}
.m2d_c01471{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);}
.m2_c01471{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.ma_c01471{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.md_c01471{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m37_c01471{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);}
.m3f_c01471{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m59_c01471{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01471{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);}
.m2e_c01471{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01471{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01471{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m35_c01471{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m41_c01471{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m23_c01471{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);}
.m48_c01471{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);}
.m4d_c01471{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m16_c01471{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m39_c01471{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m19_c01471{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m38_c01471{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m34_c01471{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m42_c01471{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);}
.m5_c01471{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);}
.m12_c01471{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m8_c01471{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01471{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);}
.m47_c01471{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m60_c01471{transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);}
.v0_c01471{vertical-align:0.000000px;}
.v1_c01471{vertical-align:2.880000px;}
.ls0_c01471{letter-spacing:0.000000px;}
.sc__c01471{text-shadow:none;}
.sc0_c01471{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01471{-webkit-text-stroke:0px transparent;}
.sc0_c01471{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01471{word-spacing:-1.944000px;}
.ws1_c01471{word-spacing:-1.274640px;}
.ws2_c01471{word-spacing:-1.052880px;}
.ws3_c01471{word-spacing:0.000000px;}
.fc0_c01471{color:transparent;}
.fs4_c01471{font-size:34.560000px;}
.fsc_c01471{font-size:37.440000px;}
.fs7_c01471{font-size:40.320000px;}
.fsb_c01471{font-size:43.200000px;}
.fs9_c01471{font-size:46.080000px;}
.fs5_c01471{font-size:48.960000px;}
.fs2_c01471{font-size:51.840000px;}
.fsa_c01471{font-size:54.720000px;}
.fs3_c01471{font-size:57.600000px;}
.fs8_c01471{font-size:60.480000px;}
.fsd_c01471{font-size:63.360000px;}
.fs1_c01471{font-size:66.240000px;}
.fs6_c01471{font-size:69.120000px;}
.fs0_c01471{font-size:72.000000px;}
.y0_c01471{bottom:0.000000px;}
.y67_c01471{bottom:40.320000px;}
.y66_c01471{bottom:41.040000px;}
.y64_c01471{bottom:41.760000px;}
.y63_c01471{bottom:42.480000px;}
.y62_c01471{bottom:43.200000px;}
.y65_c01471{bottom:43.920000px;}
.y60_c01471{bottom:83.520000px;}
.y5f_c01471{bottom:85.680000px;}
.y61_c01471{bottom:86.400000px;}
.y5c_c01471{bottom:136.800000px;}
.y5e_c01471{bottom:138.960000px;}
.y5d_c01471{bottom:139.680000px;}
.y5b_c01471{bottom:140.400000px;}
.y58_c01471{bottom:180.720000px;}
.y59_c01471{bottom:182.880000px;}
.y5a_c01471{bottom:183.600000px;}
.y56_c01471{bottom:223.200000px;}
.y55_c01471{bottom:223.920000px;}
.y54_c01471{bottom:225.360000px;}
.y53_c01471{bottom:226.080000px;}
.y57_c01471{bottom:226.800000px;}
.y4f_c01471{bottom:265.680000px;}
.y52_c01471{bottom:266.400000px;}
.y50_c01471{bottom:268.560000px;}
.y51_c01471{bottom:269.280000px;}
.y4c_c01471{bottom:308.880000px;}
.y4a_c01471{bottom:309.600000px;}
.y4e_c01471{bottom:310.320000px;}
.y4b_c01471{bottom:311.040000px;}
.y4d_c01471{bottom:311.760000px;}
.y49_c01471{bottom:312.480000px;}
.y47_c01471{bottom:350.640000px;}
.y48_c01471{bottom:351.360000px;}
.y44_c01471{bottom:352.080000px;}
.y46_c01471{bottom:353.520000px;}
.y45_c01471{bottom:354.240000px;}
.y43_c01471{bottom:354.960000px;}
.y41_c01471{bottom:393.840000px;}
.y40_c01471{bottom:394.560000px;}
.y3e_c01471{bottom:395.280000px;}
.y42_c01471{bottom:396.720000px;}
.y3f_c01471{bottom:397.440000px;}
.y3d_c01471{bottom:437.040000px;}
.y3c_c01471{bottom:437.760000px;}
.y3a_c01471{bottom:438.480000px;}
.y3b_c01471{bottom:439.920000px;}
.y38_c01471{bottom:479.520000px;}
.y39_c01471{bottom:480.960000px;}
.y36_c01471{bottom:481.680000px;}
.y37_c01471{bottom:482.400000px;}
.y34_c01471{bottom:483.120000px;}
.y35_c01471{bottom:483.840000px;}
.y33_c01471{bottom:522.720000px;}
.y30_c01471{bottom:523.440000px;}
.y32_c01471{bottom:525.600000px;}
.y31_c01471{bottom:526.320000px;}
.y2f_c01471{bottom:527.040000px;}
.y2e_c01471{bottom:565.920000px;}
.y2b_c01471{bottom:566.640000px;}
.y2c_c01471{bottom:568.080000px;}
.y2d_c01471{bottom:568.800000px;}
.y2a_c01471{bottom:569.520000px;}
.y25_c01471{bottom:608.400000px;}
.y28_c01471{bottom:609.120000px;}
.y27_c01471{bottom:609.840000px;}
.y29_c01471{bottom:612.000000px;}
.y26_c01471{bottom:612.720000px;}
.y23_c01471{bottom:652.320000px;}
.y21_c01471{bottom:653.040000px;}
.y24_c01471{bottom:654.480000px;}
.y22_c01471{bottom:655.200000px;}
.y20_c01471{bottom:655.920000px;}
.y1f_c01471{bottom:696.960000px;}
.y1e_c01471{bottom:697.680000px;}
.y1c_c01471{bottom:698.400000px;}
.y1d_c01471{bottom:699.120000px;}
.y1a_c01471{bottom:738.000000px;}
.y19_c01471{bottom:738.720000px;}
.y1b_c01471{bottom:740.880000px;}
.y18_c01471{bottom:741.600000px;}
.y17_c01471{bottom:794.160000px;}
.y14_c01471{bottom:834.480000px;}
.y15_c01471{bottom:835.200000px;}
.y16_c01471{bottom:836.640000px;}
.y13_c01471{bottom:837.360000px;}
.y12_c01471{bottom:876.960000px;}
.y11_c01471{bottom:877.680000px;}
.y10_c01471{bottom:879.120000px;}
.ye_c01471{bottom:879.840000px;}
.yf_c01471{bottom:880.560000px;}
.yd_c01471{bottom:932.400000px;}
.ya_c01471{bottom:972.720000px;}
.yb_c01471{bottom:973.440000px;}
.yc_c01471{bottom:975.600000px;}
.y9_c01471{bottom:976.320000px;}
.y5_c01471{bottom:1015.920000px;}
.y6_c01471{bottom:1016.640000px;}
.y4_c01471{bottom:1017.360000px;}
.y8_c01471{bottom:1018.080000px;}
.y7_c01471{bottom:1018.800000px;}
.y3_c01471{bottom:1019.520000px;}
.y1_c01471{bottom:1093.680000px;}
.y2_c01471{bottom:1094.400000px;}
.h6_c01471{height:31.100625px;}
.he_c01471{height:33.692344px;}
.h9_c01471{height:36.284062px;}
.hd_c01471{height:38.875781px;}
.hb_c01471{height:41.467500px;}
.h7_c01471{height:44.059219px;}
.h4_c01471{height:46.650937px;}
.hc_c01471{height:49.242656px;}
.h5_c01471{height:51.834375px;}
.ha_c01471{height:54.426094px;}
.hf_c01471{height:57.017812px;}
.h3_c01471{height:59.609531px;}
.h8_c01471{height:62.201250px;}
.h2_c01471{height:64.792969px;}
.h0_c01471{height:1152.720000px;}
.h1_c01471{height:1152.750000px;}
.w1_c01471{width:765.000000px;}
.w0_c01471{width:765.360000px;}
.x0_c01471{left:0.000000px;}
.x23_c01471{left:43.200000px;}
.x3_c01471{left:45.360000px;}
.x42_c01471{left:47.520000px;}
.x43_c01471{left:64.800000px;}
.x49_c01471{left:75.600000px;}
.x2e_c01471{left:77.040000px;}
.x1e_c01471{left:86.400000px;}
.xe_c01471{left:88.560000px;}
.x4a_c01471{left:97.200000px;}
.x52_c01471{left:98.640000px;}
.x3a_c01471{left:108.720000px;}
.x31_c01471{left:119.520000px;}
.x5a_c01471{left:129.600000px;}
.x3f_c01471{left:140.400000px;}
.x4_c01471{left:143.280000px;}
.x37_c01471{left:151.200000px;}
.x18_c01471{left:152.640450px;}
.x4d_c01471{left:162.000000px;}
.x32_c01471{left:163.440000px;}
.x4f_c01471{left:172.800000px;}
.x5_c01471{left:174.240000px;}
.x19_c01471{left:185.040000px;}
.xf_c01471{left:195.120000px;}
.x59_c01471{left:205.200000px;}
.x44_c01471{left:206.640000px;}
.x2f_c01471{left:216.000000px;}
.x1f_c01471{left:217.440000px;}
.x38_c01471{left:227.520000px;}
.x24_c01471{left:238.320000px;}
.x45_c01471{left:239.760000px;}
.x10_c01471{left:249.840000px;}
.x34_c01471{left:259.920000px;}
.x2a_c01471{left:270.720000px;}
.x33_c01471{left:280.800000px;}
.x11_c01471{left:282.240000px;}
.x35_c01471{left:292.320000px;}
.x46_c01471{left:293.760000px;}
.x6_c01471{left:303.120000px;}
.x25_c01471{left:313.920000px;}
.x3b_c01471{left:315.360000px;}
.x12_c01471{left:325.440000px;}
.x50_c01471{left:334.800000px;}
.x7_c01471{left:336.960000px;}
.x53_c01471{left:347.760000px;}
.x40_c01471{left:356.400000px;}
.x13_c01471{left:358.560000px;}
.x47_c01471{left:367.920000px;}
.x57_c01471{left:389.520000px;}
.x8_c01471{left:390.960000px;}
.x4e_c01471{left:399.600000px;}
.x1a_c01471{left:401.040000px;}
.x48_c01471{left:410.400000px;}
.x14_c01471{left:411.840000px;}
.x3c_c01471{left:421.920000px;}
.x9_c01471{left:423.360000px;}
.x51_c01471{left:432.000000px;}
.x2b_c01471{left:434.160000px;}
.x54_c01471{left:443.520000px;}
.xa_c01471{left:454.320000px;}
.x26_c01471{left:455.760000px;}
.x2c_c01471{left:464.400000px;}
.x20_c01471{left:466.560000px;}
.x55_c01471{left:475.200000px;}
.x1b_c01471{left:486.720000px;}
.x21_c01471{left:497.520000px;}
.x2d_c01471{left:498.960000px;}
.x56_c01471{left:507.600000px;}
.x15_c01471{left:509.760000px;}
.x4b_c01471{left:518.400000px;}
.x58_c01471{left:519.840000px;}
.xb_c01471{left:530.640000px;}
.x16_c01471{left:541.440000px;}
.x3d_c01471{left:552.240000px;}
.x27_c01471{left:562.320000px;}
.xc_c01471{left:563.760000px;}
.x17_c01471{left:573.840000px;}
.x39_c01471{left:584.640000px;}
.x28_c01471{left:596.160000px;}
.x22_c01471{left:606.960000px;}
.x4c_c01471{left:615.600000px;}
.x30_c01471{left:617.040000px;}
.x41_c01471{left:619.920000px;}
.x1c_c01471{left:627.840000px;}
.x5b_c01471{left:639.360000px;}
.x1d_c01471{left:650.160000px;}
.xd_c01471{left:660.960000px;}
.x36_c01471{left:671.760000px;}
.x1_c01471{left:674.640000px;}
.x29_c01471{left:682.560000px;}
.x3e_c01471{left:693.360000px;}
.x2_c01471{left:710.640000px;}
@media print{
.v0_c01471{vertical-align:0.000000pt;}
.v1_c01471{vertical-align:2.560000pt;}
.ls0_c01471{letter-spacing:0.000000pt;}
.ws0_c01471{word-spacing:-1.728000pt;}
.ws1_c01471{word-spacing:-1.133013pt;}
.ws2_c01471{word-spacing:-0.935893pt;}
.ws3_c01471{word-spacing:0.000000pt;}
.fs4_c01471{font-size:30.720000pt;}
.fsc_c01471{font-size:33.280000pt;}
.fs7_c01471{font-size:35.840000pt;}
.fsb_c01471{font-size:38.400000pt;}
.fs9_c01471{font-size:40.960000pt;}
.fs5_c01471{font-size:43.520000pt;}
.fs2_c01471{font-size:46.080000pt;}
.fsa_c01471{font-size:48.640000pt;}
.fs3_c01471{font-size:51.200000pt;}
.fs8_c01471{font-size:53.760000pt;}
.fsd_c01471{font-size:56.320000pt;}
.fs1_c01471{font-size:58.880000pt;}
.fs6_c01471{font-size:61.440000pt;}
.fs0_c01471{font-size:64.000000pt;}
.y0_c01471{bottom:0.000000pt;}
.y67_c01471{bottom:35.840000pt;}
.y66_c01471{bottom:36.480000pt;}
.y64_c01471{bottom:37.120000pt;}
.y63_c01471{bottom:37.760000pt;}
.y62_c01471{bottom:38.400000pt;}
.y65_c01471{bottom:39.040000pt;}
.y60_c01471{bottom:74.240000pt;}
.y5f_c01471{bottom:76.160000pt;}
.y61_c01471{bottom:76.800000pt;}
.y5c_c01471{bottom:121.600000pt;}
.y5e_c01471{bottom:123.520000pt;}
.y5d_c01471{bottom:124.160000pt;}
.y5b_c01471{bottom:124.800000pt;}
.y58_c01471{bottom:160.640000pt;}
.y59_c01471{bottom:162.560000pt;}
.y5a_c01471{bottom:163.200000pt;}
.y56_c01471{bottom:198.400000pt;}
.y55_c01471{bottom:199.040000pt;}
.y54_c01471{bottom:200.320000pt;}
.y53_c01471{bottom:200.960000pt;}
.y57_c01471{bottom:201.600000pt;}
.y4f_c01471{bottom:236.160000pt;}
.y52_c01471{bottom:236.800000pt;}
.y50_c01471{bottom:238.720000pt;}
.y51_c01471{bottom:239.360000pt;}
.y4c_c01471{bottom:274.560000pt;}
.y4a_c01471{bottom:275.200000pt;}
.y4e_c01471{bottom:275.840000pt;}
.y4b_c01471{bottom:276.480000pt;}
.y4d_c01471{bottom:277.120000pt;}
.y49_c01471{bottom:277.760000pt;}
.y47_c01471{bottom:311.680000pt;}
.y48_c01471{bottom:312.320000pt;}
.y44_c01471{bottom:312.960000pt;}
.y46_c01471{bottom:314.240000pt;}
.y45_c01471{bottom:314.880000pt;}
.y43_c01471{bottom:315.520000pt;}
.y41_c01471{bottom:350.080000pt;}
.y40_c01471{bottom:350.720000pt;}
.y3e_c01471{bottom:351.360000pt;}
.y42_c01471{bottom:352.640000pt;}
.y3f_c01471{bottom:353.280000pt;}
.y3d_c01471{bottom:388.480000pt;}
.y3c_c01471{bottom:389.120000pt;}
.y3a_c01471{bottom:389.760000pt;}
.y3b_c01471{bottom:391.040000pt;}
.y38_c01471{bottom:426.240000pt;}
.y39_c01471{bottom:427.520000pt;}
.y36_c01471{bottom:428.160000pt;}
.y37_c01471{bottom:428.800000pt;}
.y34_c01471{bottom:429.440000pt;}
.y35_c01471{bottom:430.080000pt;}
.y33_c01471{bottom:464.640000pt;}
.y30_c01471{bottom:465.280000pt;}
.y32_c01471{bottom:467.200000pt;}
.y31_c01471{bottom:467.840000pt;}
.y2f_c01471{bottom:468.480000pt;}
.y2e_c01471{bottom:503.040000pt;}
.y2b_c01471{bottom:503.680000pt;}
.y2c_c01471{bottom:504.960000pt;}
.y2d_c01471{bottom:505.600000pt;}
.y2a_c01471{bottom:506.240000pt;}
.y25_c01471{bottom:540.800000pt;}
.y28_c01471{bottom:541.440000pt;}
.y27_c01471{bottom:542.080000pt;}
.y29_c01471{bottom:544.000000pt;}
.y26_c01471{bottom:544.640000pt;}
.y23_c01471{bottom:579.840000pt;}
.y21_c01471{bottom:580.480000pt;}
.y24_c01471{bottom:581.760000pt;}
.y22_c01471{bottom:582.400000pt;}
.y20_c01471{bottom:583.040000pt;}
.y1f_c01471{bottom:619.520000pt;}
.y1e_c01471{bottom:620.160000pt;}
.y1c_c01471{bottom:620.800000pt;}
.y1d_c01471{bottom:621.440000pt;}
.y1a_c01471{bottom:656.000000pt;}
.y19_c01471{bottom:656.640000pt;}
.y1b_c01471{bottom:658.560000pt;}
.y18_c01471{bottom:659.200000pt;}
.y17_c01471{bottom:705.920000pt;}
.y14_c01471{bottom:741.760000pt;}
.y15_c01471{bottom:742.400000pt;}
.y16_c01471{bottom:743.680000pt;}
.y13_c01471{bottom:744.320000pt;}
.y12_c01471{bottom:779.520000pt;}
.y11_c01471{bottom:780.160000pt;}
.y10_c01471{bottom:781.440000pt;}
.ye_c01471{bottom:782.080000pt;}
.yf_c01471{bottom:782.720000pt;}
.yd_c01471{bottom:828.800000pt;}
.ya_c01471{bottom:864.640000pt;}
.yb_c01471{bottom:865.280000pt;}
.yc_c01471{bottom:867.200000pt;}
.y9_c01471{bottom:867.840000pt;}
.y5_c01471{bottom:903.040000pt;}
.y6_c01471{bottom:903.680000pt;}
.y4_c01471{bottom:904.320000pt;}
.y8_c01471{bottom:904.960000pt;}
.y7_c01471{bottom:905.600000pt;}
.y3_c01471{bottom:906.240000pt;}
.y1_c01471{bottom:972.160000pt;}
.y2_c01471{bottom:972.800000pt;}
.h6_c01471{height:27.645000pt;}
.he_c01471{height:29.948750pt;}
.h9_c01471{height:32.252500pt;}
.hd_c01471{height:34.556250pt;}
.hb_c01471{height:36.860000pt;}
.h7_c01471{height:39.163750pt;}
.h4_c01471{height:41.467500pt;}
.hc_c01471{height:43.771250pt;}
.h5_c01471{height:46.075000pt;}
.ha_c01471{height:48.378750pt;}
.hf_c01471{height:50.682500pt;}
.h3_c01471{height:52.986250pt;}
.h8_c01471{height:55.290000pt;}
.h2_c01471{height:57.593750pt;}
.h0_c01471{height:1024.640000pt;}
.h1_c01471{height:1024.666667pt;}
.w1_c01471{width:680.000000pt;}
.w0_c01471{width:680.320000pt;}
.x0_c01471{left:0.000000pt;}
.x23_c01471{left:38.400000pt;}
.x3_c01471{left:40.320000pt;}
.x42_c01471{left:42.240000pt;}
.x43_c01471{left:57.600000pt;}
.x49_c01471{left:67.200000pt;}
.x2e_c01471{left:68.480000pt;}
.x1e_c01471{left:76.800000pt;}
.xe_c01471{left:78.720000pt;}
.x4a_c01471{left:86.400000pt;}
.x52_c01471{left:87.680000pt;}
.x3a_c01471{left:96.640000pt;}
.x31_c01471{left:106.240000pt;}
.x5a_c01471{left:115.200000pt;}
.x3f_c01471{left:124.800000pt;}
.x4_c01471{left:127.360000pt;}
.x37_c01471{left:134.400000pt;}
.x18_c01471{left:135.680400pt;}
.x4d_c01471{left:144.000000pt;}
.x32_c01471{left:145.280000pt;}
.x4f_c01471{left:153.600000pt;}
.x5_c01471{left:154.880000pt;}
.x19_c01471{left:164.480000pt;}
.xf_c01471{left:173.440000pt;}
.x59_c01471{left:182.400000pt;}
.x44_c01471{left:183.680000pt;}
.x2f_c01471{left:192.000000pt;}
.x1f_c01471{left:193.280000pt;}
.x38_c01471{left:202.240000pt;}
.x24_c01471{left:211.840000pt;}
.x45_c01471{left:213.120000pt;}
.x10_c01471{left:222.080000pt;}
.x34_c01471{left:231.040000pt;}
.x2a_c01471{left:240.640000pt;}
.x33_c01471{left:249.600000pt;}
.x11_c01471{left:250.880000pt;}
.x35_c01471{left:259.840000pt;}
.x46_c01471{left:261.120000pt;}
.x6_c01471{left:269.440000pt;}
.x25_c01471{left:279.040000pt;}
.x3b_c01471{left:280.320000pt;}
.x12_c01471{left:289.280000pt;}
.x50_c01471{left:297.600000pt;}
.x7_c01471{left:299.520000pt;}
.x53_c01471{left:309.120000pt;}
.x40_c01471{left:316.800000pt;}
.x13_c01471{left:318.720000pt;}
.x47_c01471{left:327.040000pt;}
.x57_c01471{left:346.240000pt;}
.x8_c01471{left:347.520000pt;}
.x4e_c01471{left:355.200000pt;}
.x1a_c01471{left:356.480000pt;}
.x48_c01471{left:364.800000pt;}
.x14_c01471{left:366.080000pt;}
.x3c_c01471{left:375.040000pt;}
.x9_c01471{left:376.320000pt;}
.x51_c01471{left:384.000000pt;}
.x2b_c01471{left:385.920000pt;}
.x54_c01471{left:394.240000pt;}
.xa_c01471{left:403.840000pt;}
.x26_c01471{left:405.120000pt;}
.x2c_c01471{left:412.800000pt;}
.x20_c01471{left:414.720000pt;}
.x55_c01471{left:422.400000pt;}
.x1b_c01471{left:432.640000pt;}
.x21_c01471{left:442.240000pt;}
.x2d_c01471{left:443.520000pt;}
.x56_c01471{left:451.200000pt;}
.x15_c01471{left:453.120000pt;}
.x4b_c01471{left:460.800000pt;}
.x58_c01471{left:462.080000pt;}
.xb_c01471{left:471.680000pt;}
.x16_c01471{left:481.280000pt;}
.x3d_c01471{left:490.880000pt;}
.x27_c01471{left:499.840000pt;}
.xc_c01471{left:501.120000pt;}
.x17_c01471{left:510.080000pt;}
.x39_c01471{left:519.680000pt;}
.x28_c01471{left:529.920000pt;}
.x22_c01471{left:539.520000pt;}
.x4c_c01471{left:547.200000pt;}
.x30_c01471{left:548.480000pt;}
.x41_c01471{left:551.040000pt;}
.x1c_c01471{left:558.080000pt;}
.x5b_c01471{left:568.320000pt;}
.x1d_c01471{left:577.920000pt;}
.xd_c01471{left:587.520000pt;}
.x36_c01471{left:597.120000pt;}
.x1_c01471{left:599.680000pt;}
.x29_c01471{left:606.720000pt;}
.x3e_c01471{left:616.320000pt;}
.x2_c01471{left:631.680000pt;}
}





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

.ir_c01472:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01472{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01472;src:url('chunks/assets/font_e88c4c44c7b19fab2385988f.woff2')format("woff");}.ff1_c01472{font-family:ff1_c01472;line-height:1.109863;font-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_c01472{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);}
.m55_c01472{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);}
.m4a_c01472{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);}
.m60_c01472{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m41_c01472{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01472{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01472{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m5f_c01472{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01472{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m61_c01472{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m49_c01472{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m30_c01472{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m40_c01472{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m6_c01472{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01472{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m43_c01472{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);}
.m51_c01472{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m11_c01472{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);}
.m5a_c01472{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.mf_c01472{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m1_c01472{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);}
.m0_c01472{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m17_c01472{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m4_c01472{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01472{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);}
.m5c_c01472{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);}
.m50_c01472{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m53_c01472{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01472{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);}
.m45_c01472{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);}
.m2b_c01472{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);}
.m56_c01472{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m46_c01472{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.mc_c01472{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.ma_c01472{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);}
.m9_c01472{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);}
.m47_c01472{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m7_c01472{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m54_c01472{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01472{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m26_c01472{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m19_c01472{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);}
.m24_c01472{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01472{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);}
.m3b_c01472{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.me_c01472{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m21_c01472{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01472{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);}
.m59_c01472{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m42_c01472{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01472{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);}
.m48_c01472{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m14_c01472{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_c01472{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01472{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m29_c01472{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);}
.m36_c01472{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01472{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m4d_c01472{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m38_c01472{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);}
.m32_c01472{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m39_c01472{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m37_c01472{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m57_c01472{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m33_c01472{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);}
.m15_c01472{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);}
.m5_c01472{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m5e_c01472{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m4f_c01472{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);}
.m28_c01472{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.mb_c01472{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m35_c01472{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m25_c01472{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);}
.m5b_c01472{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m16_c01472{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m2_c01472{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m31_c01472{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);}
.m12_c01472{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01472{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01472{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);}
.m22_c01472{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m27_c01472{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);}
.m1c_c01472{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01472{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01472{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m58_c01472{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m8_c01472{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m10_c01472{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m44_c01472{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m3_c01472{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);}
.m52_c01472{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01472{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.md_c01472{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);}
.m2e_c01472{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m18_c01472{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m34_c01472{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m23_c01472{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01472{transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);}
.v0_c01472{vertical-align:0.000000px;}
.ls0_c01472{letter-spacing:0.000000px;}
.sc__c01472{text-shadow:none;}
.sc0_c01472{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01472{-webkit-text-stroke:0px transparent;}
.sc0_c01472{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01472{word-spacing:0.000000px;}
.ws0_c01472{word-spacing:1.391161px;}
.fc0_c01472{color:transparent;}
.fs7_c01472{font-size:34.560000px;}
.fs2_c01472{font-size:37.440000px;}
.fs4_c01472{font-size:40.320000px;}
.fse_c01472{font-size:43.200000px;}
.fsc_c01472{font-size:46.080000px;}
.fs3_c01472{font-size:48.960000px;}
.fs8_c01472{font-size:51.840000px;}
.fs1_c01472{font-size:54.720000px;}
.fsa_c01472{font-size:57.600000px;}
.fs6_c01472{font-size:60.480000px;}
.fs9_c01472{font-size:63.360000px;}
.fsb_c01472{font-size:66.240000px;}
.fs5_c01472{font-size:69.120000px;}
.fsd_c01472{font-size:72.000000px;}
.fs0_c01472{font-size:74.880000px;}
.y0_c01472{bottom:0.000000px;}
.y61_c01472{bottom:72.000000px;}
.y62_c01472{bottom:73.440000px;}
.y63_c01472{bottom:74.160000px;}
.y64_c01472{bottom:75.600000px;}
.y5d_c01472{bottom:114.480000px;}
.y5f_c01472{bottom:115.200000px;}
.y60_c01472{bottom:116.640000px;}
.y5e_c01472{bottom:117.360000px;}
.y5c_c01472{bottom:118.080000px;}
.y5a_c01472{bottom:158.400000px;}
.y58_c01472{bottom:159.840000px;}
.y59_c01472{bottom:160.560000px;}
.y5b_c01472{bottom:161.280000px;}
.y56_c01472{bottom:200.160000px;}
.y55_c01472{bottom:203.040000px;}
.y57_c01472{bottom:203.760000px;}
.y53_c01472{bottom:264.960000px;}
.y52_c01472{bottom:265.680000px;}
.y54_c01472{bottom:267.120000px;}
.y4f_c01472{bottom:308.880000px;}
.y51_c01472{bottom:309.600000px;}
.y50_c01472{bottom:311.040000px;}
.y4e_c01472{bottom:311.760000px;}
.y49_c01472{bottom:351.360000px;}
.y4b_c01472{bottom:352.080000px;}
.y4d_c01472{bottom:352.800000px;}
.y4c_c01472{bottom:353.520000px;}
.y4a_c01472{bottom:354.240000px;}
.y48_c01472{bottom:354.960000px;}
.y44_c01472{bottom:394.560000px;}
.y47_c01472{bottom:395.280000px;}
.y45_c01472{bottom:396.000000px;}
.y43_c01472{bottom:397.440000px;}
.y46_c01472{bottom:398.160000px;}
.y42_c01472{bottom:437.760000px;}
.y41_c01472{bottom:438.480000px;}
.y40_c01472{bottom:440.640000px;}
.y3f_c01472{bottom:441.360000px;}
.y3e_c01472{bottom:480.960000px;}
.y3d_c01472{bottom:483.840000px;}
.y3c_c01472{bottom:484.560000px;}
.y37_c01472{bottom:524.160000px;}
.y38_c01472{bottom:524.880000px;}
.y3b_c01472{bottom:526.320000px;}
.y3a_c01472{bottom:527.040000px;}
.y39_c01472{bottom:527.760000px;}
.y36_c01472{bottom:578.880000px;}
.y34_c01472{bottom:579.600000px;}
.y35_c01472{bottom:580.320000px;}
.y32_c01472{bottom:619.920000px;}
.y30_c01472{bottom:620.640000px;}
.y33_c01472{bottom:622.800000px;}
.y31_c01472{bottom:623.520000px;}
.y2f_c01472{bottom:663.120000px;}
.y2d_c01472{bottom:663.840000px;}
.y2e_c01472{bottom:665.280000px;}
.y2c_c01472{bottom:666.000000px;}
.y27_c01472{bottom:704.880000px;}
.y2b_c01472{bottom:705.600000px;}
.y29_c01472{bottom:706.320000px;}
.y2a_c01472{bottom:708.480000px;}
.y28_c01472{bottom:709.200000px;}
.y26_c01472{bottom:748.080000px;}
.y23_c01472{bottom:749.520000px;}
.y25_c01472{bottom:750.960000px;}
.y22_c01472{bottom:751.680000px;}
.y24_c01472{bottom:752.400000px;}
.y21_c01472{bottom:791.280000px;}
.y20_c01472{bottom:793.440000px;}
.y1f_c01472{bottom:794.160000px;}
.y1e_c01472{bottom:794.880000px;}
.y1a_c01472{bottom:834.480000px;}
.y1b_c01472{bottom:835.200000px;}
.y1d_c01472{bottom:836.640000px;}
.y1c_c01472{bottom:837.360000px;}
.y19_c01472{bottom:838.080000px;}
.y16_c01472{bottom:889.200000px;}
.y18_c01472{bottom:890.640000px;}
.y15_c01472{bottom:891.360000px;}
.y17_c01472{bottom:892.080000px;}
.y12_c01472{bottom:930.960000px;}
.y11_c01472{bottom:931.680000px;}
.y14_c01472{bottom:933.120000px;}
.y13_c01472{bottom:933.840000px;}
.yf_c01472{bottom:934.560000px;}
.y10_c01472{bottom:935.280000px;}
.yd_c01472{bottom:973.440000px;}
.ye_c01472{bottom:974.160000px;}
.ya_c01472{bottom:975.600000px;}
.yb_c01472{bottom:976.320000px;}
.yc_c01472{bottom:977.040000px;}
.y8_c01472{bottom:977.760000px;}
.y9_c01472{bottom:978.480000px;}
.y7_c01472{bottom:1016.640000px;}
.y5_c01472{bottom:1018.080000px;}
.y2_c01472{bottom:1018.800000px;}
.y6_c01472{bottom:1019.520000px;}
.y4_c01472{bottom:1020.240000px;}
.y3_c01472{bottom:1020.960000px;}
.y1_c01472{bottom:1095.840000px;}
.h9_c01472{height:31.100625px;}
.h4_c01472{height:33.692344px;}
.h6_c01472{height:36.284062px;}
.h10_c01472{height:38.875781px;}
.he_c01472{height:41.467500px;}
.h5_c01472{height:44.059219px;}
.ha_c01472{height:46.650937px;}
.h3_c01472{height:49.242656px;}
.hc_c01472{height:51.834375px;}
.h8_c01472{height:54.426094px;}
.hb_c01472{height:57.017812px;}
.hd_c01472{height:59.609531px;}
.h7_c01472{height:62.201250px;}
.hf_c01472{height:64.792969px;}
.h2_c01472{height:67.384687px;}
.h1_c01472{height:1151.250000px;}
.h0_c01472{height:1151.280000px;}
.w0_c01472{width:764.640000px;}
.w1_c01472{width:765.000000px;}
.x0_c01472{left:0.000000px;}
.x2_c01472{left:42.480000px;}
.x45_c01472{left:43.920000px;}
.x3c_c01472{left:73.440000px;}
.xf_c01472{left:74.880000px;}
.x42_c01472{left:84.240000px;}
.x3_c01472{left:86.400000px;}
.x4a_c01472{left:95.040000px;}
.x18_c01472{left:97.200000px;}
.x1f_c01472{left:107.280000px;}
.x4_c01472{left:117.360000px;}
.x24_c01472{left:129.600000px;}
.x10_c01472{left:139.680000px;}
.x19_c01472{left:151.200000px;}
.x3d_c01472{left:159.840000px;}
.x20_c01472{left:162.000000px;}
.x39_c01472{left:172.080000px;}
.x5_c01472{left:183.600000px;}
.x21_c01472{left:194.400000px;}
.x2e_c01472{left:203.760000px;}
.x11_c01472{left:205.200000px;}
.x6_c01472{left:215.280000px;}
.x28_c01472{left:226.800000px;}
.x12_c01472{left:236.880000px;}
.x7_c01472{left:246.240000px;}
.x1a_c01472{left:248.400000px;}
.x3e_c01472{left:257.760000px;}
.x43_c01472{left:259.200000px;}
.x4c_c01472{left:268.560000px;}
.x49_c01472{left:270.000000px;}
.x3a_c01472{left:290.880000px;}
.x33_c01472{left:300.960000px;}
.x13_c01472{left:302.400000px;}
.x22_c01472{left:312.480000px;}
.x1b_c01472{left:323.280000px;}
.x14_c01472{left:332.640000px;}
.x29_c01472{left:334.080000px;}
.x46_c01472{left:344.160000px;}
.x3b_c01472{left:345.600000px;}
.x8_c01472{left:356.400000px;}
.x25_c01472{left:366.480000px;}
.x34_c01472{left:376.560000px;}
.x2a_c01472{left:378.000000px;}
.x3f_c01472{left:387.360000px;}
.x1c_c01472{left:399.600000px;}
.x15_c01472{left:410.400000px;}
.x35_c01472{left:419.760000px;}
.x4d_c01472{left:421.200000px;}
.x2f_c01472{left:429.840000px;}
.x1d_c01472{left:431.280000px;}
.x40_c01472{left:441.360000px;}
.x36_c01472{left:451.440000px;}
.x9_c01472{left:452.880000px;}
.x47_c01472{left:474.480000px;}
.xa_c01472{left:485.280000px;}
.x4b_c01472{left:506.160000px;}
.x41_c01472{left:507.600000px;}
.x16_c01472{left:517.680000px;}
.x30_c01472{left:528.480000px;}
.x26_c01472{left:537.840000px;}
.xb_c01472{left:539.280000px;}
.x2b_c01472{left:549.360000px;}
.x1e_c01472{left:572.400000px;}
.x2c_c01472{left:581.760000px;}
.x48_c01472{left:583.200000px;}
.x31_c01472{left:593.280000px;}
.xc_c01472{left:594.720000px;}
.x37_c01472{left:604.080000px;}
.x17_c01472{left:615.600000px;}
.xd_c01472{left:626.400000px;}
.x2d_c01472{left:636.480000px;}
.x27_c01472{left:648.000000px;}
.x44_c01472{left:657.360000px;}
.xe_c01472{left:659.520000px;}
.x1_c01472{left:665.280000px;}
.x32_c01472{left:670.320000px;}
.x38_c01472{left:680.400000px;}
.x23_c01472{left:691.920000px;}
@media print{
.v0_c01472{vertical-align:0.000000pt;}
.ls0_c01472{letter-spacing:0.000000pt;}
.ws1_c01472{word-spacing:0.000000pt;}
.ws0_c01472{word-spacing:1.236588pt;}
.fs7_c01472{font-size:30.720000pt;}
.fs2_c01472{font-size:33.280000pt;}
.fs4_c01472{font-size:35.840000pt;}
.fse_c01472{font-size:38.400000pt;}
.fsc_c01472{font-size:40.960000pt;}
.fs3_c01472{font-size:43.520000pt;}
.fs8_c01472{font-size:46.080000pt;}
.fs1_c01472{font-size:48.640000pt;}
.fsa_c01472{font-size:51.200000pt;}
.fs6_c01472{font-size:53.760000pt;}
.fs9_c01472{font-size:56.320000pt;}
.fsb_c01472{font-size:58.880000pt;}
.fs5_c01472{font-size:61.440000pt;}
.fsd_c01472{font-size:64.000000pt;}
.fs0_c01472{font-size:66.560000pt;}
.y0_c01472{bottom:0.000000pt;}
.y61_c01472{bottom:64.000000pt;}
.y62_c01472{bottom:65.280000pt;}
.y63_c01472{bottom:65.920000pt;}
.y64_c01472{bottom:67.200000pt;}
.y5d_c01472{bottom:101.760000pt;}
.y5f_c01472{bottom:102.400000pt;}
.y60_c01472{bottom:103.680000pt;}
.y5e_c01472{bottom:104.320000pt;}
.y5c_c01472{bottom:104.960000pt;}
.y5a_c01472{bottom:140.800000pt;}
.y58_c01472{bottom:142.080000pt;}
.y59_c01472{bottom:142.720000pt;}
.y5b_c01472{bottom:143.360000pt;}
.y56_c01472{bottom:177.920000pt;}
.y55_c01472{bottom:180.480000pt;}
.y57_c01472{bottom:181.120000pt;}
.y53_c01472{bottom:235.520000pt;}
.y52_c01472{bottom:236.160000pt;}
.y54_c01472{bottom:237.440000pt;}
.y4f_c01472{bottom:274.560000pt;}
.y51_c01472{bottom:275.200000pt;}
.y50_c01472{bottom:276.480000pt;}
.y4e_c01472{bottom:277.120000pt;}
.y49_c01472{bottom:312.320000pt;}
.y4b_c01472{bottom:312.960000pt;}
.y4d_c01472{bottom:313.600000pt;}
.y4c_c01472{bottom:314.240000pt;}
.y4a_c01472{bottom:314.880000pt;}
.y48_c01472{bottom:315.520000pt;}
.y44_c01472{bottom:350.720000pt;}
.y47_c01472{bottom:351.360000pt;}
.y45_c01472{bottom:352.000000pt;}
.y43_c01472{bottom:353.280000pt;}
.y46_c01472{bottom:353.920000pt;}
.y42_c01472{bottom:389.120000pt;}
.y41_c01472{bottom:389.760000pt;}
.y40_c01472{bottom:391.680000pt;}
.y3f_c01472{bottom:392.320000pt;}
.y3e_c01472{bottom:427.520000pt;}
.y3d_c01472{bottom:430.080000pt;}
.y3c_c01472{bottom:430.720000pt;}
.y37_c01472{bottom:465.920000pt;}
.y38_c01472{bottom:466.560000pt;}
.y3b_c01472{bottom:467.840000pt;}
.y3a_c01472{bottom:468.480000pt;}
.y39_c01472{bottom:469.120000pt;}
.y36_c01472{bottom:514.560000pt;}
.y34_c01472{bottom:515.200000pt;}
.y35_c01472{bottom:515.840000pt;}
.y32_c01472{bottom:551.040000pt;}
.y30_c01472{bottom:551.680000pt;}
.y33_c01472{bottom:553.600000pt;}
.y31_c01472{bottom:554.240000pt;}
.y2f_c01472{bottom:589.440000pt;}
.y2d_c01472{bottom:590.080000pt;}
.y2e_c01472{bottom:591.360000pt;}
.y2c_c01472{bottom:592.000000pt;}
.y27_c01472{bottom:626.560000pt;}
.y2b_c01472{bottom:627.200000pt;}
.y29_c01472{bottom:627.840000pt;}
.y2a_c01472{bottom:629.760000pt;}
.y28_c01472{bottom:630.400000pt;}
.y26_c01472{bottom:664.960000pt;}
.y23_c01472{bottom:666.240000pt;}
.y25_c01472{bottom:667.520000pt;}
.y22_c01472{bottom:668.160000pt;}
.y24_c01472{bottom:668.800000pt;}
.y21_c01472{bottom:703.360000pt;}
.y20_c01472{bottom:705.280000pt;}
.y1f_c01472{bottom:705.920000pt;}
.y1e_c01472{bottom:706.560000pt;}
.y1a_c01472{bottom:741.760000pt;}
.y1b_c01472{bottom:742.400000pt;}
.y1d_c01472{bottom:743.680000pt;}
.y1c_c01472{bottom:744.320000pt;}
.y19_c01472{bottom:744.960000pt;}
.y16_c01472{bottom:790.400000pt;}
.y18_c01472{bottom:791.680000pt;}
.y15_c01472{bottom:792.320000pt;}
.y17_c01472{bottom:792.960000pt;}
.y12_c01472{bottom:827.520000pt;}
.y11_c01472{bottom:828.160000pt;}
.y14_c01472{bottom:829.440000pt;}
.y13_c01472{bottom:830.080000pt;}
.yf_c01472{bottom:830.720000pt;}
.y10_c01472{bottom:831.360000pt;}
.yd_c01472{bottom:865.280000pt;}
.ye_c01472{bottom:865.920000pt;}
.ya_c01472{bottom:867.200000pt;}
.yb_c01472{bottom:867.840000pt;}
.yc_c01472{bottom:868.480000pt;}
.y8_c01472{bottom:869.120000pt;}
.y9_c01472{bottom:869.760000pt;}
.y7_c01472{bottom:903.680000pt;}
.y5_c01472{bottom:904.960000pt;}
.y2_c01472{bottom:905.600000pt;}
.y6_c01472{bottom:906.240000pt;}
.y4_c01472{bottom:906.880000pt;}
.y3_c01472{bottom:907.520000pt;}
.y1_c01472{bottom:974.080000pt;}
.h9_c01472{height:27.645000pt;}
.h4_c01472{height:29.948750pt;}
.h6_c01472{height:32.252500pt;}
.h10_c01472{height:34.556250pt;}
.he_c01472{height:36.860000pt;}
.h5_c01472{height:39.163750pt;}
.ha_c01472{height:41.467500pt;}
.h3_c01472{height:43.771250pt;}
.hc_c01472{height:46.075000pt;}
.h8_c01472{height:48.378750pt;}
.hb_c01472{height:50.682500pt;}
.hd_c01472{height:52.986250pt;}
.h7_c01472{height:55.290000pt;}
.hf_c01472{height:57.593750pt;}
.h2_c01472{height:59.897500pt;}
.h1_c01472{height:1023.333333pt;}
.h0_c01472{height:1023.360000pt;}
.w0_c01472{width:679.680000pt;}
.w1_c01472{width:680.000000pt;}
.x0_c01472{left:0.000000pt;}
.x2_c01472{left:37.760000pt;}
.x45_c01472{left:39.040000pt;}
.x3c_c01472{left:65.280000pt;}
.xf_c01472{left:66.560000pt;}
.x42_c01472{left:74.880000pt;}
.x3_c01472{left:76.800000pt;}
.x4a_c01472{left:84.480000pt;}
.x18_c01472{left:86.400000pt;}
.x1f_c01472{left:95.360000pt;}
.x4_c01472{left:104.320000pt;}
.x24_c01472{left:115.200000pt;}
.x10_c01472{left:124.160000pt;}
.x19_c01472{left:134.400000pt;}
.x3d_c01472{left:142.080000pt;}
.x20_c01472{left:144.000000pt;}
.x39_c01472{left:152.960000pt;}
.x5_c01472{left:163.200000pt;}
.x21_c01472{left:172.800000pt;}
.x2e_c01472{left:181.120000pt;}
.x11_c01472{left:182.400000pt;}
.x6_c01472{left:191.360000pt;}
.x28_c01472{left:201.600000pt;}
.x12_c01472{left:210.560000pt;}
.x7_c01472{left:218.880000pt;}
.x1a_c01472{left:220.800000pt;}
.x3e_c01472{left:229.120000pt;}
.x43_c01472{left:230.400000pt;}
.x4c_c01472{left:238.720000pt;}
.x49_c01472{left:240.000000pt;}
.x3a_c01472{left:258.560000pt;}
.x33_c01472{left:267.520000pt;}
.x13_c01472{left:268.800000pt;}
.x22_c01472{left:277.760000pt;}
.x1b_c01472{left:287.360000pt;}
.x14_c01472{left:295.680000pt;}
.x29_c01472{left:296.960000pt;}
.x46_c01472{left:305.920000pt;}
.x3b_c01472{left:307.200000pt;}
.x8_c01472{left:316.800000pt;}
.x25_c01472{left:325.760000pt;}
.x34_c01472{left:334.720000pt;}
.x2a_c01472{left:336.000000pt;}
.x3f_c01472{left:344.320000pt;}
.x1c_c01472{left:355.200000pt;}
.x15_c01472{left:364.800000pt;}
.x35_c01472{left:373.120000pt;}
.x4d_c01472{left:374.400000pt;}
.x2f_c01472{left:382.080000pt;}
.x1d_c01472{left:383.360000pt;}
.x40_c01472{left:392.320000pt;}
.x36_c01472{left:401.280000pt;}
.x9_c01472{left:402.560000pt;}
.x47_c01472{left:421.760000pt;}
.xa_c01472{left:431.360000pt;}
.x4b_c01472{left:449.920000pt;}
.x41_c01472{left:451.200000pt;}
.x16_c01472{left:460.160000pt;}
.x30_c01472{left:469.760000pt;}
.x26_c01472{left:478.080000pt;}
.xb_c01472{left:479.360000pt;}
.x2b_c01472{left:488.320000pt;}
.x1e_c01472{left:508.800000pt;}
.x2c_c01472{left:517.120000pt;}
.x48_c01472{left:518.400000pt;}
.x31_c01472{left:527.360000pt;}
.xc_c01472{left:528.640000pt;}
.x37_c01472{left:536.960000pt;}
.x17_c01472{left:547.200000pt;}
.xd_c01472{left:556.800000pt;}
.x2d_c01472{left:565.760000pt;}
.x27_c01472{left:576.000000pt;}
.x44_c01472{left:584.320000pt;}
.xe_c01472{left:586.240000pt;}
.x1_c01472{left:591.360000pt;}
.x32_c01472{left:595.840000pt;}
.x38_c01472{left:604.800000pt;}
.x23_c01472{left:615.040000pt;}
}





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

.ir_c01473:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01473{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01473;src:url('chunks/assets/font_90aea852fee8c1a1a6fc344f.woff2')format("woff");}.ff1_c01473{font-family:ff1_c01473;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5c_c01473{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m10_c01473{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_c01473{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01473{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);}
.m4f_c01473{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);}
.m27_c01473{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m36_c01473{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mf_c01473{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01473{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01473{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m23_c01473{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m4d_c01473{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m55_c01473{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01473{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m35_c01473{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m37_c01473{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m0_c01473{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);}
.m42_c01473{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m18_c01473{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m3_c01473{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);}
.m3f_c01473{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);}
.m2f_c01473{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01473{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m50_c01473{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);}
.m2d_c01473{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m9_c01473{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);}
.m26_c01473{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m41_c01473{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m17_c01473{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);}
.m11_c01473{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m56_c01473{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m31_c01473{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);}
.m3d_c01473{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m5_c01473{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m14_c01473{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);}
.m52_c01473{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01473{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m25_c01473{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01473{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);}
.m51_c01473{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m5b_c01473{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);}
.mb_c01473{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m1_c01473{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);}
.m28_c01473{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);}
.m2e_c01473{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01473{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m39_c01473{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.me_c01473{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);}
.m1a_c01473{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m29_c01473{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);}
.m7_c01473{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m34_c01473{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);}
.md_c01473{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m15_c01473{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m2_c01473{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m49_c01473{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);}
.m16_c01473{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m30_c01473{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m24_c01473{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01473{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);}
.m47_c01473{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01473{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m4_c01473{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m59_c01473{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m44_c01473{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01473{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);}
.m40_c01473{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);}
.m20_c01473{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m21_c01473{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);}
.m22_c01473{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m45_c01473{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m13_c01473{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);}
.ma_c01473{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m57_c01473{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m33_c01473{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m54_c01473{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01473{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m48_c01473{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);}
.m5a_c01473{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m43_c01473{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01473{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01473{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m12_c01473{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m5d_c01473{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m46_c01473{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01473{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);}
.m6_c01473{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);}
.m38_c01473{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01473{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m8_c01473{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m19_c01473{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);}
.m58_c01473{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m53_c01473{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m32_c01473{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.v1_c01473{vertical-align:-11.520000px;}
.v3_c01473{vertical-align:-2.880000px;}
.v0_c01473{vertical-align:0.000000px;}
.v2_c01473{vertical-align:8.640000px;}
.ls1_c01473{letter-spacing:0.000000px;}
.ls0_c01473{letter-spacing:24.606000px;}
.sc__c01473{text-shadow:none;}
.sc0_c01473{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01473{-webkit-text-stroke:0px transparent;}
.sc0_c01473{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01473{word-spacing:-5.739600px;}
.ws1_c01473{word-spacing:-4.460880px;}
.ws3_c01473{word-spacing:0.000000px;}
.ws2_c01473{word-spacing:0.378720px;}
.fc0_c01473{color:transparent;}
.fs5_c01473{font-size:34.560000px;}
.fs6_c01473{font-size:37.440000px;}
.fsc_c01473{font-size:43.200000px;}
.fsb_c01473{font-size:46.080000px;}
.fs1_c01473{font-size:48.960000px;}
.fs2_c01473{font-size:51.840000px;}
.fs3_c01473{font-size:54.720000px;}
.fsa_c01473{font-size:57.600000px;}
.fs8_c01473{font-size:60.480000px;}
.fs4_c01473{font-size:63.360000px;}
.fs9_c01473{font-size:66.240000px;}
.fs7_c01473{font-size:69.120000px;}
.fs0_c01473{font-size:74.880000px;}
.y0_c01473{bottom:0.000000px;}
.y61_c01473{bottom:54.000000px;}
.y65_c01473{bottom:55.440000px;}
.y60_c01473{bottom:56.160000px;}
.y62_c01473{bottom:57.600000px;}
.y63_c01473{bottom:58.320000px;}
.y64_c01473{bottom:59.040000px;}
.y5c_c01473{bottom:97.200000px;}
.y5f_c01473{bottom:99.360000px;}
.y5d_c01473{bottom:100.800000px;}
.y5b_c01473{bottom:101.520000px;}
.y5e_c01473{bottom:102.240000px;}
.y58_c01473{bottom:141.120000px;}
.y59_c01473{bottom:141.840000px;}
.y57_c01473{bottom:144.000000px;}
.y5a_c01473{bottom:144.720000px;}
.y55_c01473{bottom:185.040000px;}
.y53_c01473{bottom:186.480000px;}
.y54_c01473{bottom:187.200000px;}
.y56_c01473{bottom:187.920000px;}
.y44_c01473{bottom:279.360000px;}
.y46_c01473{bottom:280.800000px;}
.y43_c01473{bottom:281.520000px;}
.y45_c01473{bottom:282.960000px;}
.y47_c01473{bottom:283.680000px;}
.y48_c01473{bottom:284.400000px;}
.y41_c01473{bottom:324.000000px;}
.y40_c01473{bottom:324.720000px;}
.y3f_c01473{bottom:325.440000px;}
.y3e_c01473{bottom:326.160000px;}
.y42_c01473{bottom:326.880000px;}
.y3b_c01473{bottom:366.480000px;}
.y3a_c01473{bottom:367.200000px;}
.y3c_c01473{bottom:368.640000px;}
.y3d_c01473{bottom:369.360000px;}
.y37_c01473{bottom:409.680000px;}
.y39_c01473{bottom:411.840000px;}
.y38_c01473{bottom:412.560000px;}
.y35_c01473{bottom:452.160000px;}
.y33_c01473{bottom:452.880000px;}
.y36_c01473{bottom:455.040000px;}
.y34_c01473{bottom:455.760000px;}
.y32_c01473{bottom:494.640000px;}
.y31_c01473{bottom:495.360000px;}
.y2f_c01473{bottom:497.520000px;}
.y30_c01473{bottom:498.240000px;}
.y2d_c01473{bottom:537.840000px;}
.y2b_c01473{bottom:538.560000px;}
.y2e_c01473{bottom:540.000000px;}
.y2a_c01473{bottom:540.720000px;}
.y2c_c01473{bottom:541.440000px;}
.y28_c01473{bottom:581.040000px;}
.y27_c01473{bottom:581.760000px;}
.y29_c01473{bottom:583.200000px;}
.y26_c01473{bottom:583.920000px;}
.y24_c01473{bottom:623.520000px;}
.y23_c01473{bottom:624.240000px;}
.y25_c01473{bottom:626.400000px;}
.y22_c01473{bottom:627.120000px;}
.y1e_c01473{bottom:667.440000px;}
.y21_c01473{bottom:668.880000px;}
.y20_c01473{bottom:669.600000px;}
.y1f_c01473{bottom:670.320000px;}
.y1d_c01473{bottom:709.920000px;}
.y1c_c01473{bottom:710.640000px;}
.y19_c01473{bottom:712.080000px;}
.y1a_c01473{bottom:712.800000px;}
.y1b_c01473{bottom:713.520000px;}
.y17_c01473{bottom:752.400000px;}
.y16_c01473{bottom:753.120000px;}
.y18_c01473{bottom:754.560000px;}
.y15_c01473{bottom:755.280000px;}
.y14_c01473{bottom:756.000000px;}
.y11_c01473{bottom:795.600000px;}
.y10_c01473{bottom:796.320000px;}
.yf_c01473{bottom:797.040000px;}
.y13_c01473{bottom:797.760000px;}
.y12_c01473{bottom:798.480000px;}
.yd_c01473{bottom:838.800000px;}
.ye_c01473{bottom:840.960000px;}
.yc_c01473{bottom:841.680000px;}
.ya_c01473{bottom:880.560000px;}
.y6_c01473{bottom:882.000000px;}
.yb_c01473{bottom:882.720000px;}
.y9_c01473{bottom:883.440000px;}
.y7_c01473{bottom:884.160000px;}
.y8_c01473{bottom:884.880000px;}
.y4_c01473{bottom:923.040000px;}
.y3_c01473{bottom:925.920000px;}
.y5_c01473{bottom:926.640000px;}
.y2_c01473{bottom:927.360000px;}
.y50_c01473{bottom:977.760000px;}
.y52_c01473{bottom:978.480000px;}
.y51_c01473{bottom:979.920000px;}
.y4f_c01473{bottom:980.640000px;}
.y4e_c01473{bottom:1019.520000px;}
.y4c_c01473{bottom:1020.240000px;}
.y4a_c01473{bottom:1020.960000px;}
.y4d_c01473{bottom:1022.400000px;}
.y4b_c01473{bottom:1023.120000px;}
.y49_c01473{bottom:1023.840000px;}
.y1_c01473{bottom:1103.040000px;}
.h7_c01473{height:31.100625px;}
.h8_c01473{height:33.692344px;}
.hf_c01473{height:38.875781px;}
.hd_c01473{height:41.467500px;}
.h3_c01473{height:44.059219px;}
.h4_c01473{height:46.650937px;}
.h5_c01473{height:49.242656px;}
.hc_c01473{height:51.834375px;}
.ha_c01473{height:54.426094px;}
.he_c01473{height:55.290938px;}
.h6_c01473{height:57.017812px;}
.hb_c01473{height:59.609531px;}
.h9_c01473{height:62.201250px;}
.h2_c01473{height:67.384687px;}
.h0_c01473{height:1154.880000px;}
.h1_c01473{height:1155.000000px;}
.w1_c01473{width:769.500000px;}
.w0_c01473{width:769.680000px;}
.x0_c01473{left:0.000000px;}
.x4c_c01473{left:38.880000px;}
.xa_c01473{left:40.320000px;}
.x53_c01473{left:41.760000px;}
.x1b_c01473{left:43.200000px;}
.x14_c01473{left:72.000000px;}
.x54_c01473{left:73.440000px;}
.x39_c01473{left:82.080000px;}
.x33_c01473{left:84.240000px;}
.x30_c01473{left:105.840000px;}
.x50_c01473{left:108.720000px;}
.x3c_c01473{left:115.200000px;}
.x27_c01473{left:116.640000px;}
.x2c_c01473{left:126.000000px;}
.x4e_c01473{left:127.440000px;}
.x46_c01473{left:137.520000px;}
.x2_c01473{left:147.600000px;}
.x1c_c01473{left:149.760000px;}
.xb_c01473{left:159.840000px;}
.x23_c01473{left:170.640000px;}
.x28_c01473{left:180.720000px;}
.x3d_c01473{left:190.080000px;}
.x3_c01473{left:192.240000px;}
.x51_c01473{left:193.680000px;}
.x48_c01473{left:200.880000px;}
.x34_c01473{left:202.320000px;}
.x15_c01473{left:213.120000px;}
.x44_c01473{left:223.920000px;}
.x1d_c01473{left:225.360000px;}
.x29_c01473{left:235.440000px;}
.x2d_c01473{left:246.240000px;}
.xc_c01473{left:257.040000px;}
.x42_c01473{left:267.840000px;}
.x16_c01473{left:278.640000px;}
.xd_c01473{left:288.000000px;}
.x1e_c01473{left:289.440000px;}
.x49_c01473{left:300.240000px;}
.x31_c01473{left:302.400000px;}
.x4_c01473{left:311.040000px;}
.x3e_c01473{left:320.400000px;}
.x35_c01473{left:321.840000px;}
.x40_c01473{left:332.640000px;}
.x56_c01473{left:334.080000px;}
.x5_c01473{left:342.000000px;}
.x4a_c01473{left:343.440000px;}
.x2a_c01473{left:354.240000px;}
.x17_c01473{left:365.040000px;}
.x1f_c01473{left:375.840000px;}
.x2b_c01473{left:386.640000px;}
.x18_c01473{left:397.440000px;}
.x32_c01473{left:398.880000px;}
.x6_c01473{left:406.800000px;}
.x36_c01473{left:408.240000px;}
.xe_c01473{left:418.320000px;}
.xf_c01473{left:439.200000px;}
.x57_c01473{left:440.640000px;}
.x24_c01473{left:450.720000px;}
.x20_c01473{left:452.160000px;}
.x45_c01473{left:461.520000px;}
.x2e_c01473{left:473.040000px;}
.x19_c01473{left:483.120000px;}
.x3a_c01473{left:492.480000px;}
.x4f_c01473{left:493.920000px;}
.x7_c01473{left:504.000000px;}
.x10_c01473{left:505.440000px;}
.x1a_c01473{left:516.240000px;}
.x8_c01473{left:537.840000px;}
.x2f_c01473{left:548.640000px;}
.x11_c01473{left:559.440000px;}
.x3b_c01473{left:568.800000px;}
.x37_c01473{left:570.240000px;}
.x4d_c01473{left:579.600000px;}
.x3f_c01473{left:581.040000px;}
.x21_c01473{left:592.560000px;}
.x12_c01473{left:601.920000px;}
.x43_c01473{left:603.360000px;}
.x9_c01473{left:612.720000px;}
.x38_c01473{left:614.160000px;}
.x41_c01473{left:624.240000px;}
.x25_c01473{left:625.680000px;}
.x22_c01473{left:635.040000px;}
.x4b_c01473{left:645.840000px;}
.x52_c01473{left:647.280000px;}
.x47_c01473{left:656.640000px;}
.x58_c01473{left:658.080000px;}
.x1_c01473{left:663.120000px;}
.x13_c01473{left:668.160000px;}
.x26_c01473{left:678.240000px;}
.x55_c01473{left:700.560000px;}
@media print{
.v1_c01473{vertical-align:-10.240000pt;}
.v3_c01473{vertical-align:-2.560000pt;}
.v0_c01473{vertical-align:0.000000pt;}
.v2_c01473{vertical-align:7.680000pt;}
.ls1_c01473{letter-spacing:0.000000pt;}
.ls0_c01473{letter-spacing:21.872000pt;}
.ws0_c01473{word-spacing:-5.101867pt;}
.ws1_c01473{word-spacing:-3.965227pt;}
.ws3_c01473{word-spacing:0.000000pt;}
.ws2_c01473{word-spacing:0.336640pt;}
.fs5_c01473{font-size:30.720000pt;}
.fs6_c01473{font-size:33.280000pt;}
.fsc_c01473{font-size:38.400000pt;}
.fsb_c01473{font-size:40.960000pt;}
.fs1_c01473{font-size:43.520000pt;}
.fs2_c01473{font-size:46.080000pt;}
.fs3_c01473{font-size:48.640000pt;}
.fsa_c01473{font-size:51.200000pt;}
.fs8_c01473{font-size:53.760000pt;}
.fs4_c01473{font-size:56.320000pt;}
.fs9_c01473{font-size:58.880000pt;}
.fs7_c01473{font-size:61.440000pt;}
.fs0_c01473{font-size:66.560000pt;}
.y0_c01473{bottom:0.000000pt;}
.y61_c01473{bottom:48.000000pt;}
.y65_c01473{bottom:49.280000pt;}
.y60_c01473{bottom:49.920000pt;}
.y62_c01473{bottom:51.200000pt;}
.y63_c01473{bottom:51.840000pt;}
.y64_c01473{bottom:52.480000pt;}
.y5c_c01473{bottom:86.400000pt;}
.y5f_c01473{bottom:88.320000pt;}
.y5d_c01473{bottom:89.600000pt;}
.y5b_c01473{bottom:90.240000pt;}
.y5e_c01473{bottom:90.880000pt;}
.y58_c01473{bottom:125.440000pt;}
.y59_c01473{bottom:126.080000pt;}
.y57_c01473{bottom:128.000000pt;}
.y5a_c01473{bottom:128.640000pt;}
.y55_c01473{bottom:164.480000pt;}
.y53_c01473{bottom:165.760000pt;}
.y54_c01473{bottom:166.400000pt;}
.y56_c01473{bottom:167.040000pt;}
.y44_c01473{bottom:248.320000pt;}
.y46_c01473{bottom:249.600000pt;}
.y43_c01473{bottom:250.240000pt;}
.y45_c01473{bottom:251.520000pt;}
.y47_c01473{bottom:252.160000pt;}
.y48_c01473{bottom:252.800000pt;}
.y41_c01473{bottom:288.000000pt;}
.y40_c01473{bottom:288.640000pt;}
.y3f_c01473{bottom:289.280000pt;}
.y3e_c01473{bottom:289.920000pt;}
.y42_c01473{bottom:290.560000pt;}
.y3b_c01473{bottom:325.760000pt;}
.y3a_c01473{bottom:326.400000pt;}
.y3c_c01473{bottom:327.680000pt;}
.y3d_c01473{bottom:328.320000pt;}
.y37_c01473{bottom:364.160000pt;}
.y39_c01473{bottom:366.080000pt;}
.y38_c01473{bottom:366.720000pt;}
.y35_c01473{bottom:401.920000pt;}
.y33_c01473{bottom:402.560000pt;}
.y36_c01473{bottom:404.480000pt;}
.y34_c01473{bottom:405.120000pt;}
.y32_c01473{bottom:439.680000pt;}
.y31_c01473{bottom:440.320000pt;}
.y2f_c01473{bottom:442.240000pt;}
.y30_c01473{bottom:442.880000pt;}
.y2d_c01473{bottom:478.080000pt;}
.y2b_c01473{bottom:478.720000pt;}
.y2e_c01473{bottom:480.000000pt;}
.y2a_c01473{bottom:480.640000pt;}
.y2c_c01473{bottom:481.280000pt;}
.y28_c01473{bottom:516.480000pt;}
.y27_c01473{bottom:517.120000pt;}
.y29_c01473{bottom:518.400000pt;}
.y26_c01473{bottom:519.040000pt;}
.y24_c01473{bottom:554.240000pt;}
.y23_c01473{bottom:554.880000pt;}
.y25_c01473{bottom:556.800000pt;}
.y22_c01473{bottom:557.440000pt;}
.y1e_c01473{bottom:593.280000pt;}
.y21_c01473{bottom:594.560000pt;}
.y20_c01473{bottom:595.200000pt;}
.y1f_c01473{bottom:595.840000pt;}
.y1d_c01473{bottom:631.040000pt;}
.y1c_c01473{bottom:631.680000pt;}
.y19_c01473{bottom:632.960000pt;}
.y1a_c01473{bottom:633.600000pt;}
.y1b_c01473{bottom:634.240000pt;}
.y17_c01473{bottom:668.800000pt;}
.y16_c01473{bottom:669.440000pt;}
.y18_c01473{bottom:670.720000pt;}
.y15_c01473{bottom:671.360000pt;}
.y14_c01473{bottom:672.000000pt;}
.y11_c01473{bottom:707.200000pt;}
.y10_c01473{bottom:707.840000pt;}
.yf_c01473{bottom:708.480000pt;}
.y13_c01473{bottom:709.120000pt;}
.y12_c01473{bottom:709.760000pt;}
.yd_c01473{bottom:745.600000pt;}
.ye_c01473{bottom:747.520000pt;}
.yc_c01473{bottom:748.160000pt;}
.ya_c01473{bottom:782.720000pt;}
.y6_c01473{bottom:784.000000pt;}
.yb_c01473{bottom:784.640000pt;}
.y9_c01473{bottom:785.280000pt;}
.y7_c01473{bottom:785.920000pt;}
.y8_c01473{bottom:786.560000pt;}
.y4_c01473{bottom:820.480000pt;}
.y3_c01473{bottom:823.040000pt;}
.y5_c01473{bottom:823.680000pt;}
.y2_c01473{bottom:824.320000pt;}
.y50_c01473{bottom:869.120000pt;}
.y52_c01473{bottom:869.760000pt;}
.y51_c01473{bottom:871.040000pt;}
.y4f_c01473{bottom:871.680000pt;}
.y4e_c01473{bottom:906.240000pt;}
.y4c_c01473{bottom:906.880000pt;}
.y4a_c01473{bottom:907.520000pt;}
.y4d_c01473{bottom:908.800000pt;}
.y4b_c01473{bottom:909.440000pt;}
.y49_c01473{bottom:910.080000pt;}
.y1_c01473{bottom:980.480000pt;}
.h7_c01473{height:27.645000pt;}
.h8_c01473{height:29.948750pt;}
.hf_c01473{height:34.556250pt;}
.hd_c01473{height:36.860000pt;}
.h3_c01473{height:39.163750pt;}
.h4_c01473{height:41.467500pt;}
.h5_c01473{height:43.771250pt;}
.hc_c01473{height:46.075000pt;}
.ha_c01473{height:48.378750pt;}
.he_c01473{height:49.147500pt;}
.h6_c01473{height:50.682500pt;}
.hb_c01473{height:52.986250pt;}
.h9_c01473{height:55.290000pt;}
.h2_c01473{height:59.897500pt;}
.h0_c01473{height:1026.560000pt;}
.h1_c01473{height:1026.666667pt;}
.w1_c01473{width:684.000000pt;}
.w0_c01473{width:684.160000pt;}
.x0_c01473{left:0.000000pt;}
.x4c_c01473{left:34.560000pt;}
.xa_c01473{left:35.840000pt;}
.x53_c01473{left:37.120000pt;}
.x1b_c01473{left:38.400000pt;}
.x14_c01473{left:64.000000pt;}
.x54_c01473{left:65.280000pt;}
.x39_c01473{left:72.960000pt;}
.x33_c01473{left:74.880000pt;}
.x30_c01473{left:94.080000pt;}
.x50_c01473{left:96.640000pt;}
.x3c_c01473{left:102.400000pt;}
.x27_c01473{left:103.680000pt;}
.x2c_c01473{left:112.000000pt;}
.x4e_c01473{left:113.280000pt;}
.x46_c01473{left:122.240000pt;}
.x2_c01473{left:131.200000pt;}
.x1c_c01473{left:133.120000pt;}
.xb_c01473{left:142.080000pt;}
.x23_c01473{left:151.680000pt;}
.x28_c01473{left:160.640000pt;}
.x3d_c01473{left:168.960000pt;}
.x3_c01473{left:170.880000pt;}
.x51_c01473{left:172.160000pt;}
.x48_c01473{left:178.560000pt;}
.x34_c01473{left:179.840000pt;}
.x15_c01473{left:189.440000pt;}
.x44_c01473{left:199.040000pt;}
.x1d_c01473{left:200.320000pt;}
.x29_c01473{left:209.280000pt;}
.x2d_c01473{left:218.880000pt;}
.xc_c01473{left:228.480000pt;}
.x42_c01473{left:238.080000pt;}
.x16_c01473{left:247.680000pt;}
.xd_c01473{left:256.000000pt;}
.x1e_c01473{left:257.280000pt;}
.x49_c01473{left:266.880000pt;}
.x31_c01473{left:268.800000pt;}
.x4_c01473{left:276.480000pt;}
.x3e_c01473{left:284.800000pt;}
.x35_c01473{left:286.080000pt;}
.x40_c01473{left:295.680000pt;}
.x56_c01473{left:296.960000pt;}
.x5_c01473{left:304.000000pt;}
.x4a_c01473{left:305.280000pt;}
.x2a_c01473{left:314.880000pt;}
.x17_c01473{left:324.480000pt;}
.x1f_c01473{left:334.080000pt;}
.x2b_c01473{left:343.680000pt;}
.x18_c01473{left:353.280000pt;}
.x32_c01473{left:354.560000pt;}
.x6_c01473{left:361.600000pt;}
.x36_c01473{left:362.880000pt;}
.xe_c01473{left:371.840000pt;}
.xf_c01473{left:390.400000pt;}
.x57_c01473{left:391.680000pt;}
.x24_c01473{left:400.640000pt;}
.x20_c01473{left:401.920000pt;}
.x45_c01473{left:410.240000pt;}
.x2e_c01473{left:420.480000pt;}
.x19_c01473{left:429.440000pt;}
.x3a_c01473{left:437.760000pt;}
.x4f_c01473{left:439.040000pt;}
.x7_c01473{left:448.000000pt;}
.x10_c01473{left:449.280000pt;}
.x1a_c01473{left:458.880000pt;}
.x8_c01473{left:478.080000pt;}
.x2f_c01473{left:487.680000pt;}
.x11_c01473{left:497.280000pt;}
.x3b_c01473{left:505.600000pt;}
.x37_c01473{left:506.880000pt;}
.x4d_c01473{left:515.200000pt;}
.x3f_c01473{left:516.480000pt;}
.x21_c01473{left:526.720000pt;}
.x12_c01473{left:535.040000pt;}
.x43_c01473{left:536.320000pt;}
.x9_c01473{left:544.640000pt;}
.x38_c01473{left:545.920000pt;}
.x41_c01473{left:554.880000pt;}
.x25_c01473{left:556.160000pt;}
.x22_c01473{left:564.480000pt;}
.x4b_c01473{left:574.080000pt;}
.x52_c01473{left:575.360000pt;}
.x47_c01473{left:583.680000pt;}
.x58_c01473{left:584.960000pt;}
.x1_c01473{left:589.440000pt;}
.x13_c01473{left:593.920000pt;}
.x26_c01473{left:602.880000pt;}
.x55_c01473{left:622.720000pt;}
}





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

.ir_c01474:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01474{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01474;src:url('chunks/assets/font_63bc0d5456f1b6abaea34f5e.woff2')format("woff");}.ff1_c01474{font-family:ff1_c01474;line-height:1.109863;font-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_c01474{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);}
.m55_c01474{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);}
.m46_c01474{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);}
.m45_c01474{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m5_c01474{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);}
.m4e_c01474{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);}
.m3e_c01474{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01474{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m48_c01474{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m50_c01474{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m16_c01474{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01474{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);}
.m51_c01474{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01474{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_c01474{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);}
.m44_c01474{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);}
.m2c_c01474{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01474{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m3_c01474{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m6_c01474{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_c01474{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m8_c01474{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);}
.m30_c01474{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m0_c01474{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m24_c01474{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.mc_c01474{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);}
.m25_c01474{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);}
.m27_c01474{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);}
.m52_c01474{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);}
.m2a_c01474{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m1_c01474{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);}
.m21_c01474{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);}
.m49_c01474{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01474{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m31_c01474{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_c01474{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01474{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);}
.m12_c01474{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m41_c01474{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);}
.m2b_c01474{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m43_c01474{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m7_c01474{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m47_c01474{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);}
.m42_c01474{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m2_c01474{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m35_c01474{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);}
.m1f_c01474{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.mb_c01474{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);}
.m2f_c01474{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.ma_c01474{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m37_c01474{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);}
.m32_c01474{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m4_c01474{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);}
.m4b_c01474{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01474{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m20_c01474{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m14_c01474{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m29_c01474{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);}
.m38_c01474{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);}
.m33_c01474{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m13_c01474{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);}
.m34_c01474{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m40_c01474{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01474{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m15_c01474{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);}
.m18_c01474{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m39_c01474{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m10_c01474{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.me_c01474{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);}
.m28_c01474{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);}
.m23_c01474{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01474{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m22_c01474{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01474{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m26_c01474{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01474{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);}
.m19_c01474{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);}
.m36_c01474{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.md_c01474{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01474{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m54_c01474{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01474{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m11_c01474{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.m4a_c01474{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m4f_c01474{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.m53_c01474{transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);}
.v0_c01474{vertical-align:0.000000px;}
.ls0_c01474{letter-spacing:0.000000px;}
.sc__c01474{text-shadow:none;}
.sc0_c01474{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01474{-webkit-text-stroke:0px transparent;}
.sc0_c01474{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01474{word-spacing:-0.831120px;}
.ws1_c01474{word-spacing:0.000000px;}
.fc0_c01474{color:transparent;}
.fsf_c01474{font-size:11.520000px;}
.fse_c01474{font-size:14.400000px;}
.fs10_c01474{font-size:17.280000px;}
.fs8_c01474{font-size:34.560000px;}
.fs7_c01474{font-size:37.440000px;}
.fs2_c01474{font-size:43.200000px;}
.fsc_c01474{font-size:46.080000px;}
.fs6_c01474{font-size:48.960000px;}
.fs3_c01474{font-size:51.840000px;}
.fs4_c01474{font-size:54.720000px;}
.fsa_c01474{font-size:57.600000px;}
.fs1_c01474{font-size:60.480000px;}
.fsb_c01474{font-size:63.360000px;}
.fs9_c01474{font-size:66.240000px;}
.fs5_c01474{font-size:69.120000px;}
.fsd_c01474{font-size:72.000000px;}
.fs0_c01474{font-size:74.880000px;}
.y0_c01474{bottom:0.000000px;}
.y5a_c01474{bottom:101.520000px;}
.y58_c01474{bottom:102.240000px;}
.y5b_c01474{bottom:102.960000px;}
.y59_c01474{bottom:103.680000px;}
.y5d_c01474{bottom:105.120000px;}
.y5c_c01474{bottom:107.280000px;}
.y54_c01474{bottom:155.520000px;}
.y57_c01474{bottom:156.240000px;}
.y55_c01474{bottom:156.960000px;}
.y4e_c01474{bottom:157.680000px;}
.y4f_c01474{bottom:160.560000px;}
.y56_c01474{bottom:161.280000px;}
.y52_c01474{bottom:208.800000px;}
.y50_c01474{bottom:209.520000px;}
.y51_c01474{bottom:210.240000px;}
.y4d_c01474{bottom:211.680000px;}
.y53_c01474{bottom:215.280000px;}
.y4b_c01474{bottom:262.080000px;}
.y4c_c01474{bottom:264.240000px;}
.y4a_c01474{bottom:264.960000px;}
.y46_c01474{bottom:305.280000px;}
.y45_c01474{bottom:306.000000px;}
.y49_c01474{bottom:306.720000px;}
.y47_c01474{bottom:308.160000px;}
.y48_c01474{bottom:308.880000px;}
.y3f_c01474{bottom:348.480000px;}
.y41_c01474{bottom:349.200000px;}
.y40_c01474{bottom:350.640000px;}
.y43_c01474{bottom:351.360000px;}
.y42_c01474{bottom:352.080000px;}
.y44_c01474{bottom:352.800000px;}
.y3a_c01474{bottom:391.680000px;}
.y3e_c01474{bottom:392.400000px;}
.y3b_c01474{bottom:393.840000px;}
.y3c_c01474{bottom:394.560000px;}
.y3d_c01474{bottom:395.280000px;}
.y36_c01474{bottom:445.680000px;}
.y37_c01474{bottom:447.120000px;}
.y38_c01474{bottom:447.840000px;}
.y39_c01474{bottom:448.560000px;}
.y34_c01474{bottom:488.160000px;}
.y35_c01474{bottom:488.880000px;}
.y31_c01474{bottom:491.040000px;}
.y33_c01474{bottom:491.760000px;}
.y32_c01474{bottom:492.480000px;}
.y30_c01474{bottom:532.800000px;}
.y2f_c01474{bottom:533.520000px;}
.y2e_c01474{bottom:534.240000px;}
.y2d_c01474{bottom:534.960000px;}
.y2b_c01474{bottom:574.560000px;}
.y2c_c01474{bottom:575.280000px;}
.y2a_c01474{bottom:576.720000px;}
.y29_c01474{bottom:577.440000px;}
.y27_c01474{bottom:617.040000px;}
.y26_c01474{bottom:617.760000px;}
.y28_c01474{bottom:619.920000px;}
.y25_c01474{bottom:620.640000px;}
.y24_c01474{bottom:671.040000px;}
.y23_c01474{bottom:673.920000px;}
.y21_c01474{bottom:714.240000px;}
.y20_c01474{bottom:716.400000px;}
.y22_c01474{bottom:717.120000px;}
.y1c_c01474{bottom:755.280000px;}
.y1b_c01474{bottom:756.720000px;}
.y1f_c01474{bottom:758.880000px;}
.y1e_c01474{bottom:759.600000px;}
.y1d_c01474{bottom:760.320000px;}
.y1a_c01474{bottom:799.200000px;}
.y19_c01474{bottom:801.360000px;}
.y17_c01474{bottom:802.080000px;}
.y18_c01474{bottom:802.800000px;}
.y16_c01474{bottom:840.960000px;}
.y15_c01474{bottom:842.400000px;}
.y13_c01474{bottom:844.560000px;}
.y14_c01474{bottom:845.280000px;}
.y12_c01474{bottom:884.880000px;}
.y10_c01474{bottom:885.600000px;}
.yf_c01474{bottom:887.760000px;}
.y11_c01474{bottom:888.480000px;}
.ye_c01474{bottom:927.360000px;}
.ya_c01474{bottom:928.800000px;}
.yd_c01474{bottom:930.240000px;}
.yc_c01474{bottom:930.960000px;}
.yb_c01474{bottom:931.680000px;}
.y8_c01474{bottom:971.280000px;}
.y6_c01474{bottom:972.000000px;}
.y9_c01474{bottom:973.440000px;}
.y7_c01474{bottom:974.160000px;}
.y5_c01474{bottom:1014.480000px;}
.y3_c01474{bottom:1015.200000px;}
.y4_c01474{bottom:1016.640000px;}
.y2_c01474{bottom:1017.360000px;}
.y1_c01474{bottom:1086.480000px;}
.h11_c01474{height:10.366875px;}
.h10_c01474{height:12.958594px;}
.h12_c01474{height:15.550313px;}
.ha_c01474{height:31.100625px;}
.h9_c01474{height:33.692344px;}
.h4_c01474{height:38.875781px;}
.he_c01474{height:41.467500px;}
.h8_c01474{height:44.059219px;}
.h5_c01474{height:46.650937px;}
.h6_c01474{height:49.242656px;}
.hc_c01474{height:51.834375px;}
.h3_c01474{height:54.426094px;}
.hd_c01474{height:57.017812px;}
.hb_c01474{height:59.609531px;}
.h7_c01474{height:62.201250px;}
.hf_c01474{height:64.792969px;}
.h2_c01474{height:67.384687px;}
.h1_c01474{height:1151.250000px;}
.h0_c01474{height:1151.280000px;}
.w0_c01474{width:763.200000px;}
.w1_c01474{width:763.500000px;}
.x0_c01474{left:0.000000px;}
.x2_c01474{left:33.120000px;}
.xa_c01474{left:34.560000px;}
.x3f_c01474{left:36.720000px;}
.x3d_c01474{left:56.880000px;}
.x19_c01474{left:66.240000px;}
.x20_c01474{left:76.320000px;}
.x2c_c01474{left:78.480000px;}
.x27_c01474{left:88.560000px;}
.x38_c01474{left:98.640000px;}
.x3_c01474{left:110.160000px;}
.x28_c01474{left:120.960000px;}
.x1a_c01474{left:131.760000px;}
.x32_c01474{left:142.560000px;}
.x46_c01474{left:144.720000px;}
.x4_c01474{left:152.640000px;}
.x13_c01474{left:164.160000px;}
.x42_c01474{left:166.320000px;}
.x33_c01474{left:174.960000px;}
.xb_c01474{left:185.760000px;}
.x1b_c01474{left:195.840000px;}
.x39_c01474{left:197.280000px;}
.x5_c01474{left:218.160000px;}
.xc_c01474{left:228.960000px;}
.x21_c01474{left:239.040000px;}
.x35_c01474{left:240.480000px;}
.x29_c01474{left:251.280000px;}
.x14_c01474{left:261.360000px;}
.x36_c01474{left:272.160000px;}
.x30_c01474{left:282.960000px;}
.x22_c01474{left:293.760000px;}
.x15_c01474{left:304.560000px;}
.x45_c01474{left:306.000000px;}
.xd_c01474{left:313.920000px;}
.x3a_c01474{left:316.080000px;}
.x1c_c01474{left:336.960000px;}
.x2d_c01474{left:347.760000px;}
.xe_c01474{left:357.840000px;}
.x6_c01474{left:361.440000px;}
.x1d_c01474{left:369.360000px;}
.x16_c01474{left:380.160000px;}
.x41_c01474{left:381.600000px;}
.x23_c01474{left:390.240000px;}
.xf_c01474{left:401.760000px;}
.x17_c01474{left:412.560000px;}
.x2e_c01474{left:434.160000px;}
.x7_c01474{left:444.960000px;}
.x43_c01474{left:456.480000px;}
.x1e_c01474{left:467.280000px;}
.x8_c01474{left:476.640000px;}
.x24_c01474{left:488.880000px;}
.x3b_c01474{left:497.520000px;}
.x3e_c01474{left:510.480000px;}
.x47_c01474{left:511.920000px;}
.x2f_c01474{left:520.560000px;}
.x2a_c01474{left:522.000000px;}
.x37_c01474{left:532.080000px;}
.x9_c01474{left:542.160000px;}
.x25_c01474{left:552.960000px;}
.x10_c01474{left:564.480000px;}
.x44_c01474{left:565.920000px;}
.x3c_c01474{left:576.000000px;}
.x26_c01474{left:585.360000px;}
.x11_c01474{left:596.160000px;}
.x18_c01474{left:606.960000px;}
.x31_c01474{left:618.480000px;}
.x2b_c01474{left:628.560000px;}
.x12_c01474{left:630.000000px;}
.x1f_c01474{left:650.880000px;}
.x1_c01474{left:654.480000px;}
.x40_c01474{left:662.400000px;}
.x34_c01474{left:673.200000px;}
@media print{
.v0_c01474{vertical-align:0.000000pt;}
.ls0_c01474{letter-spacing:0.000000pt;}
.ws0_c01474{word-spacing:-0.738773pt;}
.ws1_c01474{word-spacing:0.000000pt;}
.fsf_c01474{font-size:10.240000pt;}
.fse_c01474{font-size:12.800000pt;}
.fs10_c01474{font-size:15.360000pt;}
.fs8_c01474{font-size:30.720000pt;}
.fs7_c01474{font-size:33.280000pt;}
.fs2_c01474{font-size:38.400000pt;}
.fsc_c01474{font-size:40.960000pt;}
.fs6_c01474{font-size:43.520000pt;}
.fs3_c01474{font-size:46.080000pt;}
.fs4_c01474{font-size:48.640000pt;}
.fsa_c01474{font-size:51.200000pt;}
.fs1_c01474{font-size:53.760000pt;}
.fsb_c01474{font-size:56.320000pt;}
.fs9_c01474{font-size:58.880000pt;}
.fs5_c01474{font-size:61.440000pt;}
.fsd_c01474{font-size:64.000000pt;}
.fs0_c01474{font-size:66.560000pt;}
.y0_c01474{bottom:0.000000pt;}
.y5a_c01474{bottom:90.240000pt;}
.y58_c01474{bottom:90.880000pt;}
.y5b_c01474{bottom:91.520000pt;}
.y59_c01474{bottom:92.160000pt;}
.y5d_c01474{bottom:93.440000pt;}
.y5c_c01474{bottom:95.360000pt;}
.y54_c01474{bottom:138.240000pt;}
.y57_c01474{bottom:138.880000pt;}
.y55_c01474{bottom:139.520000pt;}
.y4e_c01474{bottom:140.160000pt;}
.y4f_c01474{bottom:142.720000pt;}
.y56_c01474{bottom:143.360000pt;}
.y52_c01474{bottom:185.600000pt;}
.y50_c01474{bottom:186.240000pt;}
.y51_c01474{bottom:186.880000pt;}
.y4d_c01474{bottom:188.160000pt;}
.y53_c01474{bottom:191.360000pt;}
.y4b_c01474{bottom:232.960000pt;}
.y4c_c01474{bottom:234.880000pt;}
.y4a_c01474{bottom:235.520000pt;}
.y46_c01474{bottom:271.360000pt;}
.y45_c01474{bottom:272.000000pt;}
.y49_c01474{bottom:272.640000pt;}
.y47_c01474{bottom:273.920000pt;}
.y48_c01474{bottom:274.560000pt;}
.y3f_c01474{bottom:309.760000pt;}
.y41_c01474{bottom:310.400000pt;}
.y40_c01474{bottom:311.680000pt;}
.y43_c01474{bottom:312.320000pt;}
.y42_c01474{bottom:312.960000pt;}
.y44_c01474{bottom:313.600000pt;}
.y3a_c01474{bottom:348.160000pt;}
.y3e_c01474{bottom:348.800000pt;}
.y3b_c01474{bottom:350.080000pt;}
.y3c_c01474{bottom:350.720000pt;}
.y3d_c01474{bottom:351.360000pt;}
.y36_c01474{bottom:396.160000pt;}
.y37_c01474{bottom:397.440000pt;}
.y38_c01474{bottom:398.080000pt;}
.y39_c01474{bottom:398.720000pt;}
.y34_c01474{bottom:433.920000pt;}
.y35_c01474{bottom:434.560000pt;}
.y31_c01474{bottom:436.480000pt;}
.y33_c01474{bottom:437.120000pt;}
.y32_c01474{bottom:437.760000pt;}
.y30_c01474{bottom:473.600000pt;}
.y2f_c01474{bottom:474.240000pt;}
.y2e_c01474{bottom:474.880000pt;}
.y2d_c01474{bottom:475.520000pt;}
.y2b_c01474{bottom:510.720000pt;}
.y2c_c01474{bottom:511.360000pt;}
.y2a_c01474{bottom:512.640000pt;}
.y29_c01474{bottom:513.280000pt;}
.y27_c01474{bottom:548.480000pt;}
.y26_c01474{bottom:549.120000pt;}
.y28_c01474{bottom:551.040000pt;}
.y25_c01474{bottom:551.680000pt;}
.y24_c01474{bottom:596.480000pt;}
.y23_c01474{bottom:599.040000pt;}
.y21_c01474{bottom:634.880000pt;}
.y20_c01474{bottom:636.800000pt;}
.y22_c01474{bottom:637.440000pt;}
.y1c_c01474{bottom:671.360000pt;}
.y1b_c01474{bottom:672.640000pt;}
.y1f_c01474{bottom:674.560000pt;}
.y1e_c01474{bottom:675.200000pt;}
.y1d_c01474{bottom:675.840000pt;}
.y1a_c01474{bottom:710.400000pt;}
.y19_c01474{bottom:712.320000pt;}
.y17_c01474{bottom:712.960000pt;}
.y18_c01474{bottom:713.600000pt;}
.y16_c01474{bottom:747.520000pt;}
.y15_c01474{bottom:748.800000pt;}
.y13_c01474{bottom:750.720000pt;}
.y14_c01474{bottom:751.360000pt;}
.y12_c01474{bottom:786.560000pt;}
.y10_c01474{bottom:787.200000pt;}
.yf_c01474{bottom:789.120000pt;}
.y11_c01474{bottom:789.760000pt;}
.ye_c01474{bottom:824.320000pt;}
.ya_c01474{bottom:825.600000pt;}
.yd_c01474{bottom:826.880000pt;}
.yc_c01474{bottom:827.520000pt;}
.yb_c01474{bottom:828.160000pt;}
.y8_c01474{bottom:863.360000pt;}
.y6_c01474{bottom:864.000000pt;}
.y9_c01474{bottom:865.280000pt;}
.y7_c01474{bottom:865.920000pt;}
.y5_c01474{bottom:901.760000pt;}
.y3_c01474{bottom:902.400000pt;}
.y4_c01474{bottom:903.680000pt;}
.y2_c01474{bottom:904.320000pt;}
.y1_c01474{bottom:965.760000pt;}
.h11_c01474{height:9.215000pt;}
.h10_c01474{height:11.518750pt;}
.h12_c01474{height:13.822500pt;}
.ha_c01474{height:27.645000pt;}
.h9_c01474{height:29.948750pt;}
.h4_c01474{height:34.556250pt;}
.he_c01474{height:36.860000pt;}
.h8_c01474{height:39.163750pt;}
.h5_c01474{height:41.467500pt;}
.h6_c01474{height:43.771250pt;}
.hc_c01474{height:46.075000pt;}
.h3_c01474{height:48.378750pt;}
.hd_c01474{height:50.682500pt;}
.hb_c01474{height:52.986250pt;}
.h7_c01474{height:55.290000pt;}
.hf_c01474{height:57.593750pt;}
.h2_c01474{height:59.897500pt;}
.h1_c01474{height:1023.333333pt;}
.h0_c01474{height:1023.360000pt;}
.w0_c01474{width:678.400000pt;}
.w1_c01474{width:678.666667pt;}
.x0_c01474{left:0.000000pt;}
.x2_c01474{left:29.440000pt;}
.xa_c01474{left:30.720000pt;}
.x3f_c01474{left:32.640000pt;}
.x3d_c01474{left:50.560000pt;}
.x19_c01474{left:58.880000pt;}
.x20_c01474{left:67.840000pt;}
.x2c_c01474{left:69.760000pt;}
.x27_c01474{left:78.720000pt;}
.x38_c01474{left:87.680000pt;}
.x3_c01474{left:97.920000pt;}
.x28_c01474{left:107.520000pt;}
.x1a_c01474{left:117.120000pt;}
.x32_c01474{left:126.720000pt;}
.x46_c01474{left:128.640000pt;}
.x4_c01474{left:135.680000pt;}
.x13_c01474{left:145.920000pt;}
.x42_c01474{left:147.840000pt;}
.x33_c01474{left:155.520000pt;}
.xb_c01474{left:165.120000pt;}
.x1b_c01474{left:174.080000pt;}
.x39_c01474{left:175.360000pt;}
.x5_c01474{left:193.920000pt;}
.xc_c01474{left:203.520000pt;}
.x21_c01474{left:212.480000pt;}
.x35_c01474{left:213.760000pt;}
.x29_c01474{left:223.360000pt;}
.x14_c01474{left:232.320000pt;}
.x36_c01474{left:241.920000pt;}
.x30_c01474{left:251.520000pt;}
.x22_c01474{left:261.120000pt;}
.x15_c01474{left:270.720000pt;}
.x45_c01474{left:272.000000pt;}
.xd_c01474{left:279.040000pt;}
.x3a_c01474{left:280.960000pt;}
.x1c_c01474{left:299.520000pt;}
.x2d_c01474{left:309.120000pt;}
.xe_c01474{left:318.080000pt;}
.x6_c01474{left:321.280000pt;}
.x1d_c01474{left:328.320000pt;}
.x16_c01474{left:337.920000pt;}
.x41_c01474{left:339.200000pt;}
.x23_c01474{left:346.880000pt;}
.xf_c01474{left:357.120000pt;}
.x17_c01474{left:366.720000pt;}
.x2e_c01474{left:385.920000pt;}
.x7_c01474{left:395.520000pt;}
.x43_c01474{left:405.760000pt;}
.x1e_c01474{left:415.360000pt;}
.x8_c01474{left:423.680000pt;}
.x24_c01474{left:434.560000pt;}
.x3b_c01474{left:442.240000pt;}
.x3e_c01474{left:453.760000pt;}
.x47_c01474{left:455.040000pt;}
.x2f_c01474{left:462.720000pt;}
.x2a_c01474{left:464.000000pt;}
.x37_c01474{left:472.960000pt;}
.x9_c01474{left:481.920000pt;}
.x25_c01474{left:491.520000pt;}
.x10_c01474{left:501.760000pt;}
.x44_c01474{left:503.040000pt;}
.x3c_c01474{left:512.000000pt;}
.x26_c01474{left:520.320000pt;}
.x11_c01474{left:529.920000pt;}
.x18_c01474{left:539.520000pt;}
.x31_c01474{left:549.760000pt;}
.x2b_c01474{left:558.720000pt;}
.x12_c01474{left:560.000000pt;}
.x1f_c01474{left:578.560000pt;}
.x1_c01474{left:581.760000pt;}
.x40_c01474{left:588.800000pt;}
.x34_c01474{left:598.400000pt;}
}





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

.ir_c01475:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01475{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01475;src:url('chunks/assets/font_5f2241a226b6cf782a506c80.woff2')format("woff");}.ff1_c01475{font-family:ff1_c01475;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4e_c01475{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_c01475{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1_c01475{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);}
.m47_c01475{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m9_c01475{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_c01475{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m12_c01475{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m13_c01475{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m35_c01475{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m17_c01475{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01475{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m16_c01475{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01475{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m45_c01475{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01475{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.ma_c01475{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m51_c01475{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01475{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m43_c01475{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);}
.m26_c01475{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_c01475{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);}
.m32_c01475{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01475{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);}
.m29_c01475{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m18_c01475{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m2_c01475{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m41_c01475{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);}
.m38_c01475{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);}
.m4d_c01475{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);}
.m0_c01475{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m49_c01475{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.mc_c01475{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01475{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);}
.m5_c01475{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);}
.m34_c01475{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m27_c01475{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);}
.m11_c01475{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m4_c01475{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);}
.m4f_c01475{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_c01475{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);}
.m1e_c01475{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01475{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m3_c01475{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m15_c01475{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m7_c01475{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);}
.mb_c01475{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m10_c01475{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01475{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);}
.m2e_c01475{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m4a_c01475{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m30_c01475{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m23_c01475{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);}
.m2d_c01475{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01475{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m33_c01475{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);}
.m40_c01475{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m31_c01475{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01475{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01475{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);}
.m1c_c01475{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);}
.m1a_c01475{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m25_c01475{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m39_c01475{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);}
.m2a_c01475{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m42_c01475{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m20_c01475{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);}
.m21_c01475{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m28_c01475{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);}
.m50_c01475{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01475{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);}
.m14_c01475{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);}
.m36_c01475{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01475{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m48_c01475{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m24_c01475{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m22_c01475{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);}
.m37_c01475{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m19_c01475{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_c01475{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m46_c01475{transform:matrix(1.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.015000,0.000000,0.000000,0.250000,0,0);}
.md_c01475{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.m6_c01475{transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);}
.v1_c01475{vertical-align:-11.520000px;}
.v0_c01475{vertical-align:0.000000px;}
.ls0_c01475{letter-spacing:0.000000px;}
.sc__c01475{text-shadow:none;}
.sc0_c01475{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01475{-webkit-text-stroke:0px transparent;}
.sc0_c01475{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01475{word-spacing:-2.544240px;}
.ws2_c01475{word-spacing:-1.479721px;}
.ws1_c01475{word-spacing:-0.879360px;}
.ws3_c01475{word-spacing:0.000000px;}
.fc0_c01475{color:transparent;}
.fs5_c01475{font-size:14.400000px;}
.fs6_c01475{font-size:17.280000px;}
.fsf_c01475{font-size:23.040000px;}
.fs9_c01475{font-size:34.560000px;}
.fsb_c01475{font-size:37.440000px;}
.fsc_c01475{font-size:43.200000px;}
.fsd_c01475{font-size:46.080000px;}
.fs7_c01475{font-size:48.960000px;}
.fs3_c01475{font-size:51.840000px;}
.fs4_c01475{font-size:54.720000px;}
.fs1_c01475{font-size:57.600000px;}
.fs2_c01475{font-size:60.480000px;}
.fsa_c01475{font-size:63.360000px;}
.fs8_c01475{font-size:66.240000px;}
.fse_c01475{font-size:69.120000px;}
.fs0_c01475{font-size:72.000000px;}
.y0_c01475{bottom:0.000000px;}
.y60_c01475{bottom:72.000000px;}
.y5e_c01475{bottom:73.440000px;}
.y5f_c01475{bottom:74.160000px;}
.y5d_c01475{bottom:74.880000px;}
.y5b_c01475{bottom:115.200000px;}
.y5c_c01475{bottom:115.920000px;}
.y59_c01475{bottom:116.640000px;}
.y58_c01475{bottom:117.360000px;}
.y5a_c01475{bottom:118.080000px;}
.y57_c01475{bottom:118.800000px;}
.y54_c01475{bottom:158.400000px;}
.y55_c01475{bottom:161.280000px;}
.y56_c01475{bottom:162.000000px;}
.y52_c01475{bottom:201.600000px;}
.y53_c01475{bottom:202.320000px;}
.y51_c01475{bottom:203.760000px;}
.y50_c01475{bottom:204.480000px;}
.y4c_c01475{bottom:254.880000px;}
.y4e_c01475{bottom:255.600000px;}
.y4f_c01475{bottom:256.320000px;}
.y4d_c01475{bottom:257.040000px;}
.y4b_c01475{bottom:257.760000px;}
.y49_c01475{bottom:297.360000px;}
.y47_c01475{bottom:298.080000px;}
.y48_c01475{bottom:299.520000px;}
.y4a_c01475{bottom:300.240000px;}
.y46_c01475{bottom:300.960000px;}
.y43_c01475{bottom:340.560000px;}
.y45_c01475{bottom:341.280000px;}
.y42_c01475{bottom:342.720000px;}
.y44_c01475{bottom:343.440000px;}
.y41_c01475{bottom:383.040000px;}
.y40_c01475{bottom:383.760000px;}
.y3e_c01475{bottom:385.920000px;}
.y3f_c01475{bottom:386.640000px;}
.y3a_c01475{bottom:426.240000px;}
.y3c_c01475{bottom:426.960000px;}
.y3b_c01475{bottom:428.400000px;}
.y39_c01475{bottom:429.120000px;}
.y3d_c01475{bottom:429.840000px;}
.y33_c01475{bottom:468.720000px;}
.y34_c01475{bottom:469.440000px;}
.y36_c01475{bottom:470.160000px;}
.y35_c01475{bottom:471.600000px;}
.y37_c01475{bottom:472.320000px;}
.y38_c01475{bottom:473.040000px;}
.y32_c01475{bottom:511.920000px;}
.y30_c01475{bottom:512.640000px;}
.y31_c01475{bottom:514.800000px;}
.y2f_c01475{bottom:515.520000px;}
.y2e_c01475{bottom:555.120000px;}
.y2d_c01475{bottom:557.280000px;}
.y2c_c01475{bottom:558.000000px;}
.y2b_c01475{bottom:558.720000px;}
.y2a_c01475{bottom:599.040000px;}
.y28_c01475{bottom:601.200000px;}
.y29_c01475{bottom:601.920000px;}
.y27_c01475{bottom:641.520000px;}
.y24_c01475{bottom:642.240000px;}
.y26_c01475{bottom:643.680000px;}
.y23_c01475{bottom:644.400000px;}
.y25_c01475{bottom:645.120000px;}
.y20_c01475{bottom:684.720000px;}
.y21_c01475{bottom:685.440000px;}
.y22_c01475{bottom:686.880000px;}
.y1f_c01475{bottom:687.600000px;}
.y1e_c01475{bottom:727.920000px;}
.y1c_c01475{bottom:730.080000px;}
.y1d_c01475{bottom:730.800000px;}
.y1b_c01475{bottom:770.400000px;}
.y18_c01475{bottom:771.120000px;}
.y19_c01475{bottom:773.280000px;}
.y1a_c01475{bottom:774.000000px;}
.y17_c01475{bottom:812.160000px;}
.y15_c01475{bottom:812.880000px;}
.y14_c01475{bottom:813.600000px;}
.y16_c01475{bottom:815.760000px;}
.y13_c01475{bottom:816.480000px;}
.yf_c01475{bottom:867.600000px;}
.y10_c01475{bottom:868.320000px;}
.y11_c01475{bottom:869.040000px;}
.y12_c01475{bottom:869.760000px;}
.yd_c01475{bottom:920.160000px;}
.yc_c01475{bottom:920.880000px;}
.ye_c01475{bottom:922.320000px;}
.y7_c01475{bottom:923.040000px;}
.yb_c01475{bottom:925.200000px;}
.y8_c01475{bottom:974.160000px;}
.y6_c01475{bottom:974.880000px;}
.y9_c01475{bottom:976.320000px;}
.ya_c01475{bottom:979.200000px;}
.y4_c01475{bottom:1027.440000px;}
.y2_c01475{bottom:1028.160000px;}
.y3_c01475{bottom:1029.600000px;}
.y5_c01475{bottom:1032.480000px;}
.y1_c01475{bottom:1100.880000px;}
.h7_c01475{height:12.958594px;}
.h8_c01475{height:15.550313px;}
.h11_c01475{height:20.733750px;}
.hb_c01475{height:31.100625px;}
.hd_c01475{height:33.692344px;}
.he_c01475{height:38.875781px;}
.hf_c01475{height:41.467500px;}
.h9_c01475{height:44.059219px;}
.h5_c01475{height:46.650937px;}
.h6_c01475{height:49.242656px;}
.h3_c01475{height:51.834375px;}
.h4_c01475{height:54.426094px;}
.hc_c01475{height:57.017812px;}
.ha_c01475{height:59.609531px;}
.h10_c01475{height:62.201250px;}
.h2_c01475{height:64.792969px;}
.h0_c01475{height:1155.600000px;}
.h1_c01475{height:1155.750000px;}
.w1_c01475{width:769.500000px;}
.w0_c01475{width:769.680000px;}
.x0_c01475{left:0.000000px;}
.x1b_c01475{left:48.240000px;}
.x2_c01475{left:49.680000px;}
.x48_c01475{left:69.120000px;}
.x2d_c01475{left:80.640000px;}
.x34_c01475{left:82.080000px;}
.x3f_c01475{left:92.160000px;}
.xc_c01475{left:102.240000px;}
.x1c_c01475{left:113.040000px;}
.x29_c01475{left:123.840000px;}
.x3e_c01475{left:134.640000px;}
.x3_c01475{left:136.080000px;}
.x23_c01475{left:146.160000px;}
.x15_c01475{left:156.960000px;}
.x35_c01475{left:167.040000px;}
.x11_c01475{left:179.280000px;}
.x1d_c01475{left:188.640000px;}
.x45_c01475{left:190.080000px;}
.x39_c01475{left:200.160000px;}
.x4_c01475{left:209.520000px;}
.x16_c01475{left:210.960000px;}
.x40_c01475{left:222.480000px;}
.x12_c01475{left:231.120000px;}
.x1e_c01475{left:233.280000px;}
.xd_c01475{left:241.920000px;}
.x3a_c01475{left:244.080000px;}
.x2a_c01475{left:254.160000px;}
.x2e_c01475{left:264.960000px;}
.x17_c01475{left:276.480000px;}
.x5_c01475{left:287.280000px;}
.x43_c01475{left:296.640000px;}
.xe_c01475{left:298.080000px;}
.x31_c01475{left:307.440000px;}
.x4d_c01475{left:308.880000px;}
.x49_c01475{left:317.520000px;}
.x13_c01475{left:319.680000px;}
.x44_c01475{left:328.320000px;}
.x32_c01475{left:330.480000px;}
.x47_c01475{left:341.280000px;}
.x24_c01475{left:351.360000px;}
.xf_c01475{left:352.800000px;}
.x3b_c01475{left:362.880000px;}
.x2f_c01475{left:373.680000px;}
.x25_c01475{left:383.760000px;}
.x41_c01475{left:394.560000px;}
.x9_c01475{left:403.920000px;}
.x6_c01475{left:406.080000px;}
.x46_c01475{left:416.880000px;}
.x1f_c01475{left:426.960000px;}
.x14_c01475{left:437.760000px;}
.x20_c01475{left:449.280000px;}
.x42_c01475{left:460.080000px;}
.xa_c01475{left:469.440000px;}
.x33_c01475{left:470.880000px;}
.x3c_c01475{left:481.680000px;}
.xb_c01475{left:491.040000px;}
.x4a_c01475{left:492.480000px;}
.x7_c01475{left:502.560000px;}
.x3d_c01475{left:512.640000px;}
.x8_c01475{left:524.160000px;}
.x18_c01475{left:534.240000px;}
.x10_c01475{left:545.760000px;}
.x36_c01475{left:557.280000px;}
.x30_c01475{left:568.080000px;}
.x37_c01475{left:578.880000px;}
.x2b_c01475{left:589.680000px;}
.x26_c01475{left:600.480000px;}
.x38_c01475{left:609.120000px;}
.x19_c01475{left:610.560000px;}
.x27_c01475{left:631.440000px;}
.x21_c01475{left:632.880000px;}
.x4b_c01475{left:643.680000px;}
.x2c_c01475{left:654.480000px;}
.x22_c01475{left:665.280000px;}
.x28_c01475{left:666.720000px;}
.x1_c01475{left:669.600000px;}
.x1a_c01475{left:676.080000px;}
.x4c_c01475{left:686.880000px;}
@media print{
.v1_c01475{vertical-align:-10.240000pt;}
.v0_c01475{vertical-align:0.000000pt;}
.ls0_c01475{letter-spacing:0.000000pt;}
.ws0_c01475{word-spacing:-2.261547pt;}
.ws2_c01475{word-spacing:-1.315308pt;}
.ws1_c01475{word-spacing:-0.781653pt;}
.ws3_c01475{word-spacing:0.000000pt;}
.fs5_c01475{font-size:12.800000pt;}
.fs6_c01475{font-size:15.360000pt;}
.fsf_c01475{font-size:20.480000pt;}
.fs9_c01475{font-size:30.720000pt;}
.fsb_c01475{font-size:33.280000pt;}
.fsc_c01475{font-size:38.400000pt;}
.fsd_c01475{font-size:40.960000pt;}
.fs7_c01475{font-size:43.520000pt;}
.fs3_c01475{font-size:46.080000pt;}
.fs4_c01475{font-size:48.640000pt;}
.fs1_c01475{font-size:51.200000pt;}
.fs2_c01475{font-size:53.760000pt;}
.fsa_c01475{font-size:56.320000pt;}
.fs8_c01475{font-size:58.880000pt;}
.fse_c01475{font-size:61.440000pt;}
.fs0_c01475{font-size:64.000000pt;}
.y0_c01475{bottom:0.000000pt;}
.y60_c01475{bottom:64.000000pt;}
.y5e_c01475{bottom:65.280000pt;}
.y5f_c01475{bottom:65.920000pt;}
.y5d_c01475{bottom:66.560000pt;}
.y5b_c01475{bottom:102.400000pt;}
.y5c_c01475{bottom:103.040000pt;}
.y59_c01475{bottom:103.680000pt;}
.y58_c01475{bottom:104.320000pt;}
.y5a_c01475{bottom:104.960000pt;}
.y57_c01475{bottom:105.600000pt;}
.y54_c01475{bottom:140.800000pt;}
.y55_c01475{bottom:143.360000pt;}
.y56_c01475{bottom:144.000000pt;}
.y52_c01475{bottom:179.200000pt;}
.y53_c01475{bottom:179.840000pt;}
.y51_c01475{bottom:181.120000pt;}
.y50_c01475{bottom:181.760000pt;}
.y4c_c01475{bottom:226.560000pt;}
.y4e_c01475{bottom:227.200000pt;}
.y4f_c01475{bottom:227.840000pt;}
.y4d_c01475{bottom:228.480000pt;}
.y4b_c01475{bottom:229.120000pt;}
.y49_c01475{bottom:264.320000pt;}
.y47_c01475{bottom:264.960000pt;}
.y48_c01475{bottom:266.240000pt;}
.y4a_c01475{bottom:266.880000pt;}
.y46_c01475{bottom:267.520000pt;}
.y43_c01475{bottom:302.720000pt;}
.y45_c01475{bottom:303.360000pt;}
.y42_c01475{bottom:304.640000pt;}
.y44_c01475{bottom:305.280000pt;}
.y41_c01475{bottom:340.480000pt;}
.y40_c01475{bottom:341.120000pt;}
.y3e_c01475{bottom:343.040000pt;}
.y3f_c01475{bottom:343.680000pt;}
.y3a_c01475{bottom:378.880000pt;}
.y3c_c01475{bottom:379.520000pt;}
.y3b_c01475{bottom:380.800000pt;}
.y39_c01475{bottom:381.440000pt;}
.y3d_c01475{bottom:382.080000pt;}
.y33_c01475{bottom:416.640000pt;}
.y34_c01475{bottom:417.280000pt;}
.y36_c01475{bottom:417.920000pt;}
.y35_c01475{bottom:419.200000pt;}
.y37_c01475{bottom:419.840000pt;}
.y38_c01475{bottom:420.480000pt;}
.y32_c01475{bottom:455.040000pt;}
.y30_c01475{bottom:455.680000pt;}
.y31_c01475{bottom:457.600000pt;}
.y2f_c01475{bottom:458.240000pt;}
.y2e_c01475{bottom:493.440000pt;}
.y2d_c01475{bottom:495.360000pt;}
.y2c_c01475{bottom:496.000000pt;}
.y2b_c01475{bottom:496.640000pt;}
.y2a_c01475{bottom:532.480000pt;}
.y28_c01475{bottom:534.400000pt;}
.y29_c01475{bottom:535.040000pt;}
.y27_c01475{bottom:570.240000pt;}
.y24_c01475{bottom:570.880000pt;}
.y26_c01475{bottom:572.160000pt;}
.y23_c01475{bottom:572.800000pt;}
.y25_c01475{bottom:573.440000pt;}
.y20_c01475{bottom:608.640000pt;}
.y21_c01475{bottom:609.280000pt;}
.y22_c01475{bottom:610.560000pt;}
.y1f_c01475{bottom:611.200000pt;}
.y1e_c01475{bottom:647.040000pt;}
.y1c_c01475{bottom:648.960000pt;}
.y1d_c01475{bottom:649.600000pt;}
.y1b_c01475{bottom:684.800000pt;}
.y18_c01475{bottom:685.440000pt;}
.y19_c01475{bottom:687.360000pt;}
.y1a_c01475{bottom:688.000000pt;}
.y17_c01475{bottom:721.920000pt;}
.y15_c01475{bottom:722.560000pt;}
.y14_c01475{bottom:723.200000pt;}
.y16_c01475{bottom:725.120000pt;}
.y13_c01475{bottom:725.760000pt;}
.yf_c01475{bottom:771.200000pt;}
.y10_c01475{bottom:771.840000pt;}
.y11_c01475{bottom:772.480000pt;}
.y12_c01475{bottom:773.120000pt;}
.yd_c01475{bottom:817.920000pt;}
.yc_c01475{bottom:818.560000pt;}
.ye_c01475{bottom:819.840000pt;}
.y7_c01475{bottom:820.480000pt;}
.yb_c01475{bottom:822.400000pt;}
.y8_c01475{bottom:865.920000pt;}
.y6_c01475{bottom:866.560000pt;}
.y9_c01475{bottom:867.840000pt;}
.ya_c01475{bottom:870.400000pt;}
.y4_c01475{bottom:913.280000pt;}
.y2_c01475{bottom:913.920000pt;}
.y3_c01475{bottom:915.200000pt;}
.y5_c01475{bottom:917.760000pt;}
.y1_c01475{bottom:978.560000pt;}
.h7_c01475{height:11.518750pt;}
.h8_c01475{height:13.822500pt;}
.h11_c01475{height:18.430000pt;}
.hb_c01475{height:27.645000pt;}
.hd_c01475{height:29.948750pt;}
.he_c01475{height:34.556250pt;}
.hf_c01475{height:36.860000pt;}
.h9_c01475{height:39.163750pt;}
.h5_c01475{height:41.467500pt;}
.h6_c01475{height:43.771250pt;}
.h3_c01475{height:46.075000pt;}
.h4_c01475{height:48.378750pt;}
.hc_c01475{height:50.682500pt;}
.ha_c01475{height:52.986250pt;}
.h10_c01475{height:55.290000pt;}
.h2_c01475{height:57.593750pt;}
.h0_c01475{height:1027.200000pt;}
.h1_c01475{height:1027.333333pt;}
.w1_c01475{width:684.000000pt;}
.w0_c01475{width:684.160000pt;}
.x0_c01475{left:0.000000pt;}
.x1b_c01475{left:42.880000pt;}
.x2_c01475{left:44.160000pt;}
.x48_c01475{left:61.440000pt;}
.x2d_c01475{left:71.680000pt;}
.x34_c01475{left:72.960000pt;}
.x3f_c01475{left:81.920000pt;}
.xc_c01475{left:90.880000pt;}
.x1c_c01475{left:100.480000pt;}
.x29_c01475{left:110.080000pt;}
.x3e_c01475{left:119.680000pt;}
.x3_c01475{left:120.960000pt;}
.x23_c01475{left:129.920000pt;}
.x15_c01475{left:139.520000pt;}
.x35_c01475{left:148.480000pt;}
.x11_c01475{left:159.360000pt;}
.x1d_c01475{left:167.680000pt;}
.x45_c01475{left:168.960000pt;}
.x39_c01475{left:177.920000pt;}
.x4_c01475{left:186.240000pt;}
.x16_c01475{left:187.520000pt;}
.x40_c01475{left:197.760000pt;}
.x12_c01475{left:205.440000pt;}
.x1e_c01475{left:207.360000pt;}
.xd_c01475{left:215.040000pt;}
.x3a_c01475{left:216.960000pt;}
.x2a_c01475{left:225.920000pt;}
.x2e_c01475{left:235.520000pt;}
.x17_c01475{left:245.760000pt;}
.x5_c01475{left:255.360000pt;}
.x43_c01475{left:263.680000pt;}
.xe_c01475{left:264.960000pt;}
.x31_c01475{left:273.280000pt;}
.x4d_c01475{left:274.560000pt;}
.x49_c01475{left:282.240000pt;}
.x13_c01475{left:284.160000pt;}
.x44_c01475{left:291.840000pt;}
.x32_c01475{left:293.760000pt;}
.x47_c01475{left:303.360000pt;}
.x24_c01475{left:312.320000pt;}
.xf_c01475{left:313.600000pt;}
.x3b_c01475{left:322.560000pt;}
.x2f_c01475{left:332.160000pt;}
.x25_c01475{left:341.120000pt;}
.x41_c01475{left:350.720000pt;}
.x9_c01475{left:359.040000pt;}
.x6_c01475{left:360.960000pt;}
.x46_c01475{left:370.560000pt;}
.x1f_c01475{left:379.520000pt;}
.x14_c01475{left:389.120000pt;}
.x20_c01475{left:399.360000pt;}
.x42_c01475{left:408.960000pt;}
.xa_c01475{left:417.280000pt;}
.x33_c01475{left:418.560000pt;}
.x3c_c01475{left:428.160000pt;}
.xb_c01475{left:436.480000pt;}
.x4a_c01475{left:437.760000pt;}
.x7_c01475{left:446.720000pt;}
.x3d_c01475{left:455.680000pt;}
.x8_c01475{left:465.920000pt;}
.x18_c01475{left:474.880000pt;}
.x10_c01475{left:485.120000pt;}
.x36_c01475{left:495.360000pt;}
.x30_c01475{left:504.960000pt;}
.x37_c01475{left:514.560000pt;}
.x2b_c01475{left:524.160000pt;}
.x26_c01475{left:533.760000pt;}
.x38_c01475{left:541.440000pt;}
.x19_c01475{left:542.720000pt;}
.x27_c01475{left:561.280000pt;}
.x21_c01475{left:562.560000pt;}
.x4b_c01475{left:572.160000pt;}
.x2c_c01475{left:581.760000pt;}
.x22_c01475{left:591.360000pt;}
.x28_c01475{left:592.640000pt;}
.x1_c01475{left:595.200000pt;}
.x1a_c01475{left:600.960000pt;}
.x4c_c01475{left:610.560000pt;}
}





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

.ir_c01476:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01476{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01476;src:url('chunks/assets/font_c8c86c623d86ba637d855f51.woff2')format("woff");}.ff1_c01476{font-family:ff1_c01476;line-height:1.109863;font-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_c01476{transform:matrix(0.229625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229625,0.000000,0.000000,0.250000,0,0);}
.m12_c01476{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);}
.m4e_c01476{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);}
.m44_c01476{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m13_c01476{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m54_c01476{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01476{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m22_c01476{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01476{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m29_c01476{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mb_c01476{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m35_c01476{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01476{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);}
.m5a_c01476{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01476{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);}
.m25_c01476{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m0_c01476{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);}
.m51_c01476{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);}
.m42_c01476{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m33_c01476{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01476{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);}
.m43_c01476{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m4_c01476{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m6_c01476{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m19_c01476{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);}
.ma_c01476{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01476{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m1_c01476{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m5c_c01476{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);}
.m2c_c01476{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m15_c01476{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.mc_c01476{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01476{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m3_c01476{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);}
.md_c01476{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m36_c01476{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m53_c01476{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);}
.m39_c01476{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);}
.m48_c01476{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m5_c01476{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m49_c01476{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m30_c01476{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.mf_c01476{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);}
.me_c01476{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m26_c01476{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m46_c01476{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);}
.m3d_c01476{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);}
.m7_c01476{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m5b_c01476{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m31_c01476{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m8_c01476{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);}
.m18_c01476{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m47_c01476{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m14_c01476{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);}
.m45_c01476{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m27_c01476{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01476{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m40_c01476{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m41_c01476{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);}
.m23_c01476{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01476{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m17_c01476{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);}
.m28_c01476{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m10_c01476{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m56_c01476{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m34_c01476{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);}
.m2d_c01476{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01476{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);}
.m2_c01476{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01476{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);}
.m11_c01476{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);}
.m4c_c01476{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01476{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m9_c01476{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01476{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m32_c01476{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01476{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m59_c01476{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01476{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m55_c01476{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);}
.m24_c01476{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);}
.m2e_c01476{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);}
.m50_c01476{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01476{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m20_c01476{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m57_c01476{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);}
.m16_c01476{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m38_c01476{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m4a_c01476{transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);}
.m58_c01476{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.m52_c01476{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m37_c01476{transform:matrix(0.817500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.817500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.817500,0.000000,0.000000,0.250000,0,0);}
.m21_c01476{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.v1_c01476{vertical-align:-14.400000px;}
.v0_c01476{vertical-align:0.000000px;}
.ls0_c01476{letter-spacing:0.000000px;}
.sc__c01476{text-shadow:none;}
.sc0_c01476{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01476{-webkit-text-stroke:0px transparent;}
.sc0_c01476{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01476{word-spacing:0.000000px;}
.ws0_c01476{word-spacing:1.362000px;}
.fc0_c01476{color:transparent;}
.fsb_c01476{font-size:14.400000px;}
.fs10_c01476{font-size:20.160000px;}
.fs5_c01476{font-size:34.560000px;}
.fse_c01476{font-size:37.440000px;}
.fsf_c01476{font-size:40.320000px;}
.fsd_c01476{font-size:43.200000px;}
.fs1_c01476{font-size:46.080000px;}
.fs3_c01476{font-size:48.960000px;}
.fs2_c01476{font-size:51.840000px;}
.fsc_c01476{font-size:54.720000px;}
.fsa_c01476{font-size:57.600000px;}
.fs4_c01476{font-size:60.480000px;}
.fs8_c01476{font-size:63.360000px;}
.fs9_c01476{font-size:66.240000px;}
.fs7_c01476{font-size:69.120000px;}
.fs6_c01476{font-size:72.000000px;}
.fs0_c01476{font-size:74.880000px;}
.y0_c01476{bottom:0.000000px;}
.y5c_c01476{bottom:67.680000px;}
.y5b_c01476{bottom:69.840000px;}
.y5a_c01476{bottom:70.560000px;}
.y5d_c01476{bottom:71.280000px;}
.y55_c01476{bottom:120.960000px;}
.y58_c01476{bottom:121.680000px;}
.y59_c01476{bottom:122.400000px;}
.y56_c01476{bottom:123.840000px;}
.y57_c01476{bottom:124.560000px;}
.y54_c01476{bottom:125.280000px;}
.y52_c01476{bottom:164.160000px;}
.y51_c01476{bottom:167.040000px;}
.y50_c01476{bottom:167.760000px;}
.y53_c01476{bottom:168.480000px;}
.y4c_c01476{bottom:207.360000px;}
.y4d_c01476{bottom:208.080000px;}
.y4f_c01476{bottom:208.800000px;}
.y4b_c01476{bottom:210.240000px;}
.y4e_c01476{bottom:210.960000px;}
.y49_c01476{bottom:252.000000px;}
.y48_c01476{bottom:253.440000px;}
.y4a_c01476{bottom:254.160000px;}
.y45_c01476{bottom:304.560000px;}
.y47_c01476{bottom:306.000000px;}
.y44_c01476{bottom:307.440000px;}
.y46_c01476{bottom:308.160000px;}
.y42_c01476{bottom:347.040000px;}
.y41_c01476{bottom:350.640000px;}
.y43_c01476{bottom:351.360000px;}
.y3e_c01476{bottom:390.960000px;}
.y3f_c01476{bottom:391.680000px;}
.y3d_c01476{bottom:393.840000px;}
.y40_c01476{bottom:394.560000px;}
.y3c_c01476{bottom:444.960000px;}
.y3b_c01476{bottom:488.160000px;}
.y3a_c01476{bottom:490.320000px;}
.y39_c01476{bottom:491.040000px;}
.y36_c01476{bottom:530.640000px;}
.y38_c01476{bottom:531.360000px;}
.y35_c01476{bottom:533.520000px;}
.y37_c01476{bottom:534.240000px;}
.y33_c01476{bottom:573.840000px;}
.y32_c01476{bottom:576.720000px;}
.y34_c01476{bottom:577.440000px;}
.y2f_c01476{bottom:615.600000px;}
.y2e_c01476{bottom:617.040000px;}
.y2d_c01476{bottom:618.480000px;}
.y2c_c01476{bottom:619.200000px;}
.y31_c01476{bottom:619.920000px;}
.y30_c01476{bottom:629.280000px;}
.y2b_c01476{bottom:669.600000px;}
.y29_c01476{bottom:671.760000px;}
.y2a_c01476{bottom:672.480000px;}
.y27_c01476{bottom:712.080000px;}
.y25_c01476{bottom:712.800000px;}
.y26_c01476{bottom:715.680000px;}
.y28_c01476{bottom:716.400000px;}
.y22_c01476{bottom:754.560000px;}
.y20_c01476{bottom:755.280000px;}
.y23_c01476{bottom:756.000000px;}
.y21_c01476{bottom:758.160000px;}
.y24_c01476{bottom:758.880000px;}
.y1f_c01476{bottom:798.480000px;}
.y1e_c01476{bottom:801.360000px;}
.y1d_c01476{bottom:802.080000px;}
.y1a_c01476{bottom:852.480000px;}
.y1c_c01476{bottom:853.920000px;}
.y19_c01476{bottom:855.360000px;}
.y1b_c01476{bottom:857.520000px;}
.y17_c01476{bottom:894.240000px;}
.y18_c01476{bottom:894.960000px;}
.y15_c01476{bottom:895.680000px;}
.y16_c01476{bottom:897.120000px;}
.y14_c01476{bottom:897.840000px;}
.y13_c01476{bottom:898.560000px;}
.y10_c01476{bottom:937.440000px;}
.y12_c01476{bottom:938.160000px;}
.yf_c01476{bottom:938.880000px;}
.y11_c01476{bottom:940.320000px;}
.ye_c01476{bottom:941.040000px;}
.yc_c01476{bottom:981.360000px;}
.y9_c01476{bottom:982.080000px;}
.yd_c01476{bottom:982.800000px;}
.ya_c01476{bottom:983.520000px;}
.yb_c01476{bottom:984.240000px;}
.y5_c01476{bottom:1023.840000px;}
.y3_c01476{bottom:1024.560000px;}
.y4_c01476{bottom:1025.280000px;}
.y8_c01476{bottom:1026.000000px;}
.y6_c01476{bottom:1026.720000px;}
.y2_c01476{bottom:1027.440000px;}
.y7_c01476{bottom:1028.160000px;}
.y1_c01476{bottom:1094.400000px;}
.hd_c01476{height:12.958594px;}
.h12_c01476{height:18.142031px;}
.h7_c01476{height:31.100625px;}
.h10_c01476{height:33.692344px;}
.h11_c01476{height:36.284062px;}
.hf_c01476{height:38.875781px;}
.h3_c01476{height:41.467500px;}
.h13_c01476{height:42.617812px;}
.h5_c01476{height:44.059219px;}
.h4_c01476{height:46.650937px;}
.he_c01476{height:49.242656px;}
.hc_c01476{height:51.834375px;}
.h6_c01476{height:54.426094px;}
.ha_c01476{height:57.017812px;}
.hb_c01476{height:59.609531px;}
.h9_c01476{height:62.201250px;}
.h8_c01476{height:64.792969px;}
.h2_c01476{height:67.384687px;}
.h0_c01476{height:1155.600000px;}
.h1_c01476{height:1155.750000px;}
.w1_c01476{width:769.500000px;}
.w0_c01476{width:769.680000px;}
.x0_c01476{left:0.000000px;}
.xd_c01476{left:46.080000px;}
.x37_c01476{left:47.520000px;}
.x4d_c01476{left:48.960000px;}
.x14_c01476{left:77.760000px;}
.x4f_c01476{left:79.920000px;}
.x25_c01476{left:89.280000px;}
.x16_c01476{left:90.720000px;}
.x1d_c01476{left:99.360000px;}
.x3f_c01476{left:101.520000px;}
.x17_c01476{left:111.600000px;}
.x38_c01476{left:122.400000px;}
.x26_c01476{left:133.920000px;}
.x4a_c01476{left:144.720000px;}
.x2_c01476{left:154.800000px;}
.x31_c01476{left:166.320000px;}
.x2c_c01476{left:175.680000px;}
.x3b_c01476{left:177.120000px;}
.x3_c01476{left:187.200000px;}
.x32_c01476{left:198.720000px;}
.x50_c01476{left:209.520000px;}
.x4_c01476{left:219.600000px;}
.x52_c01476{left:221.040000px;}
.xe_c01476{left:231.120000px;}
.x18_c01476{left:239.760000px;}
.x27_c01476{left:241.920000px;}
.x1e_c01476{left:252.720000px;}
.x20_c01476{left:263.520000px;}
.x5_c01476{left:274.320000px;}
.x2d_c01476{left:282.960000px;}
.x40_c01476{left:284.400000px;}
.xf_c01476{left:295.200000px;}
.x39_c01476{left:306.000000px;}
.x21_c01476{left:315.360000px;}
.x28_c01476{left:316.800000px;}
.x51_c01476{left:318.240000px;}
.x10_c01476{left:327.600000px;}
.x1f_c01476{left:338.400000px;}
.x2e_c01476{left:349.920000px;}
.x6_c01476{left:360.000000px;}
.x46_c01476{left:362.160000px;}
.x11_c01476{left:371.520000px;}
.x19_c01476{left:380.160000px;}
.x29_c01476{left:382.320000px;}
.x7_c01476{left:392.400000px;}
.x45_c01476{left:403.920000px;}
.x41_c01476{left:414.720000px;}
.x3c_c01476{left:416.160000px;}
.x48_c01476{left:424.080000px;}
.x1a_c01476{left:425.520000px;}
.x34_c01476{left:436.320000px;}
.x4b_c01476{left:437.760000px;}
.x2f_c01476{left:447.840000px;}
.x8_c01476{left:457.920000px;}
.x22_c01476{left:468.720000px;}
.x33_c01476{left:478.800000px;}
.x47_c01476{left:480.960000px;}
.x3a_c01476{left:491.040000px;}
.x23_c01476{left:499.680000px;}
.x15_c01476{left:501.120000px;}
.x30_c01476{left:511.200000px;}
.x42_c01476{left:522.720000px;}
.x1b_c01476{left:532.080000px;}
.x43_c01476{left:533.520000px;}
.x3d_c01476{left:534.960000px;}
.x9_c01476{left:544.320000px;}
.x2a_c01476{left:555.120000px;}
.xa_c01476{left:565.200000px;}
.x44_c01476{left:566.640000px;}
.x12_c01476{left:587.520000px;}
.x2b_c01476{left:588.960000px;}
.xb_c01476{left:598.320000px;}
.x24_c01476{left:609.120000px;}
.x13_c01476{left:619.920000px;}
.x1c_c01476{left:630.000000px;}
.x4c_c01476{left:632.880000px;}
.x3e_c01476{left:641.520000px;}
.xc_c01476{left:653.040000px;}
.x36_c01476{left:664.560000px;}
.x1_c01476{left:668.160000px;}
.x49_c01476{left:675.360000px;}
.x35_c01476{left:678.240000px;}
.x4e_c01476{left:686.880000px;}
@media print{
.v1_c01476{vertical-align:-12.800000pt;}
.v0_c01476{vertical-align:0.000000pt;}
.ls0_c01476{letter-spacing:0.000000pt;}
.ws1_c01476{word-spacing:0.000000pt;}
.ws0_c01476{word-spacing:1.210667pt;}
.fsb_c01476{font-size:12.800000pt;}
.fs10_c01476{font-size:17.920000pt;}
.fs5_c01476{font-size:30.720000pt;}
.fse_c01476{font-size:33.280000pt;}
.fsf_c01476{font-size:35.840000pt;}
.fsd_c01476{font-size:38.400000pt;}
.fs1_c01476{font-size:40.960000pt;}
.fs3_c01476{font-size:43.520000pt;}
.fs2_c01476{font-size:46.080000pt;}
.fsc_c01476{font-size:48.640000pt;}
.fsa_c01476{font-size:51.200000pt;}
.fs4_c01476{font-size:53.760000pt;}
.fs8_c01476{font-size:56.320000pt;}
.fs9_c01476{font-size:58.880000pt;}
.fs7_c01476{font-size:61.440000pt;}
.fs6_c01476{font-size:64.000000pt;}
.fs0_c01476{font-size:66.560000pt;}
.y0_c01476{bottom:0.000000pt;}
.y5c_c01476{bottom:60.160000pt;}
.y5b_c01476{bottom:62.080000pt;}
.y5a_c01476{bottom:62.720000pt;}
.y5d_c01476{bottom:63.360000pt;}
.y55_c01476{bottom:107.520000pt;}
.y58_c01476{bottom:108.160000pt;}
.y59_c01476{bottom:108.800000pt;}
.y56_c01476{bottom:110.080000pt;}
.y57_c01476{bottom:110.720000pt;}
.y54_c01476{bottom:111.360000pt;}
.y52_c01476{bottom:145.920000pt;}
.y51_c01476{bottom:148.480000pt;}
.y50_c01476{bottom:149.120000pt;}
.y53_c01476{bottom:149.760000pt;}
.y4c_c01476{bottom:184.320000pt;}
.y4d_c01476{bottom:184.960000pt;}
.y4f_c01476{bottom:185.600000pt;}
.y4b_c01476{bottom:186.880000pt;}
.y4e_c01476{bottom:187.520000pt;}
.y49_c01476{bottom:224.000000pt;}
.y48_c01476{bottom:225.280000pt;}
.y4a_c01476{bottom:225.920000pt;}
.y45_c01476{bottom:270.720000pt;}
.y47_c01476{bottom:272.000000pt;}
.y44_c01476{bottom:273.280000pt;}
.y46_c01476{bottom:273.920000pt;}
.y42_c01476{bottom:308.480000pt;}
.y41_c01476{bottom:311.680000pt;}
.y43_c01476{bottom:312.320000pt;}
.y3e_c01476{bottom:347.520000pt;}
.y3f_c01476{bottom:348.160000pt;}
.y3d_c01476{bottom:350.080000pt;}
.y40_c01476{bottom:350.720000pt;}
.y3c_c01476{bottom:395.520000pt;}
.y3b_c01476{bottom:433.920000pt;}
.y3a_c01476{bottom:435.840000pt;}
.y39_c01476{bottom:436.480000pt;}
.y36_c01476{bottom:471.680000pt;}
.y38_c01476{bottom:472.320000pt;}
.y35_c01476{bottom:474.240000pt;}
.y37_c01476{bottom:474.880000pt;}
.y33_c01476{bottom:510.080000pt;}
.y32_c01476{bottom:512.640000pt;}
.y34_c01476{bottom:513.280000pt;}
.y2f_c01476{bottom:547.200000pt;}
.y2e_c01476{bottom:548.480000pt;}
.y2d_c01476{bottom:549.760000pt;}
.y2c_c01476{bottom:550.400000pt;}
.y31_c01476{bottom:551.040000pt;}
.y30_c01476{bottom:559.360000pt;}
.y2b_c01476{bottom:595.200000pt;}
.y29_c01476{bottom:597.120000pt;}
.y2a_c01476{bottom:597.760000pt;}
.y27_c01476{bottom:632.960000pt;}
.y25_c01476{bottom:633.600000pt;}
.y26_c01476{bottom:636.160000pt;}
.y28_c01476{bottom:636.800000pt;}
.y22_c01476{bottom:670.720000pt;}
.y20_c01476{bottom:671.360000pt;}
.y23_c01476{bottom:672.000000pt;}
.y21_c01476{bottom:673.920000pt;}
.y24_c01476{bottom:674.560000pt;}
.y1f_c01476{bottom:709.760000pt;}
.y1e_c01476{bottom:712.320000pt;}
.y1d_c01476{bottom:712.960000pt;}
.y1a_c01476{bottom:757.760000pt;}
.y1c_c01476{bottom:759.040000pt;}
.y19_c01476{bottom:760.320000pt;}
.y1b_c01476{bottom:762.240000pt;}
.y17_c01476{bottom:794.880000pt;}
.y18_c01476{bottom:795.520000pt;}
.y15_c01476{bottom:796.160000pt;}
.y16_c01476{bottom:797.440000pt;}
.y14_c01476{bottom:798.080000pt;}
.y13_c01476{bottom:798.720000pt;}
.y10_c01476{bottom:833.280000pt;}
.y12_c01476{bottom:833.920000pt;}
.yf_c01476{bottom:834.560000pt;}
.y11_c01476{bottom:835.840000pt;}
.ye_c01476{bottom:836.480000pt;}
.yc_c01476{bottom:872.320000pt;}
.y9_c01476{bottom:872.960000pt;}
.yd_c01476{bottom:873.600000pt;}
.ya_c01476{bottom:874.240000pt;}
.yb_c01476{bottom:874.880000pt;}
.y5_c01476{bottom:910.080000pt;}
.y3_c01476{bottom:910.720000pt;}
.y4_c01476{bottom:911.360000pt;}
.y8_c01476{bottom:912.000000pt;}
.y6_c01476{bottom:912.640000pt;}
.y2_c01476{bottom:913.280000pt;}
.y7_c01476{bottom:913.920000pt;}
.y1_c01476{bottom:972.800000pt;}
.hd_c01476{height:11.518750pt;}
.h12_c01476{height:16.126250pt;}
.h7_c01476{height:27.645000pt;}
.h10_c01476{height:29.948750pt;}
.h11_c01476{height:32.252500pt;}
.hf_c01476{height:34.556250pt;}
.h3_c01476{height:36.860000pt;}
.h13_c01476{height:37.882500pt;}
.h5_c01476{height:39.163750pt;}
.h4_c01476{height:41.467500pt;}
.he_c01476{height:43.771250pt;}
.hc_c01476{height:46.075000pt;}
.h6_c01476{height:48.378750pt;}
.ha_c01476{height:50.682500pt;}
.hb_c01476{height:52.986250pt;}
.h9_c01476{height:55.290000pt;}
.h8_c01476{height:57.593750pt;}
.h2_c01476{height:59.897500pt;}
.h0_c01476{height:1027.200000pt;}
.h1_c01476{height:1027.333333pt;}
.w1_c01476{width:684.000000pt;}
.w0_c01476{width:684.160000pt;}
.x0_c01476{left:0.000000pt;}
.xd_c01476{left:40.960000pt;}
.x37_c01476{left:42.240000pt;}
.x4d_c01476{left:43.520000pt;}
.x14_c01476{left:69.120000pt;}
.x4f_c01476{left:71.040000pt;}
.x25_c01476{left:79.360000pt;}
.x16_c01476{left:80.640000pt;}
.x1d_c01476{left:88.320000pt;}
.x3f_c01476{left:90.240000pt;}
.x17_c01476{left:99.200000pt;}
.x38_c01476{left:108.800000pt;}
.x26_c01476{left:119.040000pt;}
.x4a_c01476{left:128.640000pt;}
.x2_c01476{left:137.600000pt;}
.x31_c01476{left:147.840000pt;}
.x2c_c01476{left:156.160000pt;}
.x3b_c01476{left:157.440000pt;}
.x3_c01476{left:166.400000pt;}
.x32_c01476{left:176.640000pt;}
.x50_c01476{left:186.240000pt;}
.x4_c01476{left:195.200000pt;}
.x52_c01476{left:196.480000pt;}
.xe_c01476{left:205.440000pt;}
.x18_c01476{left:213.120000pt;}
.x27_c01476{left:215.040000pt;}
.x1e_c01476{left:224.640000pt;}
.x20_c01476{left:234.240000pt;}
.x5_c01476{left:243.840000pt;}
.x2d_c01476{left:251.520000pt;}
.x40_c01476{left:252.800000pt;}
.xf_c01476{left:262.400000pt;}
.x39_c01476{left:272.000000pt;}
.x21_c01476{left:280.320000pt;}
.x28_c01476{left:281.600000pt;}
.x51_c01476{left:282.880000pt;}
.x10_c01476{left:291.200000pt;}
.x1f_c01476{left:300.800000pt;}
.x2e_c01476{left:311.040000pt;}
.x6_c01476{left:320.000000pt;}
.x46_c01476{left:321.920000pt;}
.x11_c01476{left:330.240000pt;}
.x19_c01476{left:337.920000pt;}
.x29_c01476{left:339.840000pt;}
.x7_c01476{left:348.800000pt;}
.x45_c01476{left:359.040000pt;}
.x41_c01476{left:368.640000pt;}
.x3c_c01476{left:369.920000pt;}
.x48_c01476{left:376.960000pt;}
.x1a_c01476{left:378.240000pt;}
.x34_c01476{left:387.840000pt;}
.x4b_c01476{left:389.120000pt;}
.x2f_c01476{left:398.080000pt;}
.x8_c01476{left:407.040000pt;}
.x22_c01476{left:416.640000pt;}
.x33_c01476{left:425.600000pt;}
.x47_c01476{left:427.520000pt;}
.x3a_c01476{left:436.480000pt;}
.x23_c01476{left:444.160000pt;}
.x15_c01476{left:445.440000pt;}
.x30_c01476{left:454.400000pt;}
.x42_c01476{left:464.640000pt;}
.x1b_c01476{left:472.960000pt;}
.x43_c01476{left:474.240000pt;}
.x3d_c01476{left:475.520000pt;}
.x9_c01476{left:483.840000pt;}
.x2a_c01476{left:493.440000pt;}
.xa_c01476{left:502.400000pt;}
.x44_c01476{left:503.680000pt;}
.x12_c01476{left:522.240000pt;}
.x2b_c01476{left:523.520000pt;}
.xb_c01476{left:531.840000pt;}
.x24_c01476{left:541.440000pt;}
.x13_c01476{left:551.040000pt;}
.x1c_c01476{left:560.000000pt;}
.x4c_c01476{left:562.560000pt;}
.x3e_c01476{left:570.240000pt;}
.xc_c01476{left:580.480000pt;}
.x36_c01476{left:590.720000pt;}
.x1_c01476{left:593.920000pt;}
.x49_c01476{left:600.320000pt;}
.x35_c01476{left:602.880000pt;}
.x4e_c01476{left:610.560000pt;}
}





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

.ir_c01477:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01477{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01477;src:url('chunks/assets/font_c0fd0928429862f861ab731e.woff2')format("woff");}.ff1_c01477{font-family:ff1_c01477;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5a_c01477{transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);}
.m7_c01477{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);}
.m55_c01477{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_c01477{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01477{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m52_c01477{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);}
.m54_c01477{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m53_c01477{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m42_c01477{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01477{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m56_c01477{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m5d_c01477{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mc_c01477{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01477{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m40_c01477{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);}
.m5c_c01477{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01477{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);}
.m5b_c01477{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m18_c01477{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m10_c01477{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);}
.m3a_c01477{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m44_c01477{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);}
.m47_c01477{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m0_c01477{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m5e_c01477{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);}
.m2b_c01477{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);}
.mf_c01477{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m34_c01477{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.me_c01477{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);}
.m1e_c01477{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);}
.m2e_c01477{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_c01477{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m2_c01477{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);}
.m1b_c01477{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m28_c01477{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);}
.m26_c01477{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);}
.m57_c01477{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m24_c01477{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.md_c01477{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m45_c01477{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);}
.m14_c01477{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);}
.m25_c01477{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m36_c01477{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m59_c01477{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m20_c01477{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01477{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);}
.ma_c01477{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01477{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m41_c01477{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);}
.m43_c01477{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m9_c01477{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);}
.m37_c01477{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m32_c01477{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m4a_c01477{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);}
.m3c_c01477{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.mb_c01477{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m27_c01477{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);}
.m39_c01477{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m51_c01477{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01477{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m46_c01477{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m33_c01477{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_c01477{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);}
.m58_c01477{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m6_c01477{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m22_c01477{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);}
.m4e_c01477{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01477{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m12_c01477{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m11_c01477{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m35_c01477{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);}
.m49_c01477{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m4_c01477{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m3_c01477{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m48_c01477{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);}
.m23_c01477{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m5_c01477{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);}
.m19_c01477{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);}
.m16_c01477{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m1_c01477{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m29_c01477{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01477{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m30_c01477{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m31_c01477{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01477{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m21_c01477{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m50_c01477{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m15_c01477{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);}
.m8_c01477{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01477{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01477{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01477{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m38_c01477{transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);}
.m4f_c01477{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01477{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.v1_c01477{vertical-align:-2.880000px;}
.v0_c01477{vertical-align:0.000000px;}
.v2_c01477{vertical-align:2.880000px;}
.ls0_c01477{letter-spacing:0.000000px;}
.sc__c01477{text-shadow:none;}
.sc0_c01477{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01477{-webkit-text-stroke:0px transparent;}
.sc0_c01477{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01477{word-spacing:-2.769840px;}
.ws2_c01477{word-spacing:0.000000px;}
.ws0_c01477{word-spacing:2.898000px;}
.fc0_c01477{color:transparent;}
.fs8_c01477{font-size:34.560000px;}
.fs4_c01477{font-size:37.440000px;}
.fsc_c01477{font-size:40.320000px;}
.fsd_c01477{font-size:43.200000px;}
.fsa_c01477{font-size:46.080000px;}
.fs1_c01477{font-size:48.960000px;}
.fs3_c01477{font-size:51.840000px;}
.fsb_c01477{font-size:54.720000px;}
.fs9_c01477{font-size:57.600000px;}
.fs6_c01477{font-size:60.480000px;}
.fs2_c01477{font-size:63.360000px;}
.fse_c01477{font-size:66.240000px;}
.fs5_c01477{font-size:69.120000px;}
.fs7_c01477{font-size:72.000000px;}
.fs0_c01477{font-size:74.880000px;}
.y0_c01477{bottom:0.000000px;}
.y56_c01477{bottom:41.040000px;}
.y55_c01477{bottom:43.200000px;}
.y58_c01477{bottom:43.920000px;}
.y57_c01477{bottom:44.640000px;}
.y53_c01477{bottom:84.240000px;}
.y52_c01477{bottom:86.400000px;}
.y54_c01477{bottom:87.120000px;}
.y51_c01477{bottom:140.400000px;}
.y50_c01477{bottom:141.120000px;}
.y4f_c01477{bottom:181.440000px;}
.y4c_c01477{bottom:182.880000px;}
.y4d_c01477{bottom:183.600000px;}
.y4e_c01477{bottom:184.320000px;}
.y49_c01477{bottom:223.920000px;}
.y4b_c01477{bottom:224.640000px;}
.y48_c01477{bottom:226.800000px;}
.y4a_c01477{bottom:227.520000px;}
.y44_c01477{bottom:266.400000px;}
.y45_c01477{bottom:267.120000px;}
.y46_c01477{bottom:269.280000px;}
.y47_c01477{bottom:270.000000px;}
.y43_c01477{bottom:270.720000px;}
.y41_c01477{bottom:309.600000px;}
.y3f_c01477{bottom:310.320000px;}
.y42_c01477{bottom:311.760000px;}
.y40_c01477{bottom:312.480000px;}
.y3e_c01477{bottom:313.200000px;}
.y3d_c01477{bottom:352.800000px;}
.y3c_c01477{bottom:355.680000px;}
.y3b_c01477{bottom:396.000000px;}
.y3a_c01477{bottom:398.160000px;}
.y39_c01477{bottom:398.880000px;}
.y38_c01477{bottom:438.480000px;}
.y37_c01477{bottom:440.640000px;}
.y36_c01477{bottom:441.360000px;}
.y33_c01477{bottom:480.960000px;}
.y35_c01477{bottom:481.680000px;}
.y32_c01477{bottom:483.840000px;}
.y34_c01477{bottom:484.560000px;}
.y30_c01477{bottom:524.160000px;}
.y2f_c01477{bottom:524.880000px;}
.y31_c01477{bottom:526.320000px;}
.y2e_c01477{bottom:527.040000px;}
.y2d_c01477{bottom:527.760000px;}
.y2a_c01477{bottom:578.880000px;}
.y2c_c01477{bottom:580.320000px;}
.y2b_c01477{bottom:581.040000px;}
.y29_c01477{bottom:620.640000px;}
.y27_c01477{bottom:621.360000px;}
.y28_c01477{bottom:623.520000px;}
.y26_c01477{bottom:624.240000px;}
.y25_c01477{bottom:663.840000px;}
.y23_c01477{bottom:664.560000px;}
.y22_c01477{bottom:666.720000px;}
.y24_c01477{bottom:667.440000px;}
.y21_c01477{bottom:707.040000px;}
.y20_c01477{bottom:707.760000px;}
.y1e_c01477{bottom:709.920000px;}
.y1f_c01477{bottom:710.640000px;}
.y1d_c01477{bottom:750.240000px;}
.y1c_c01477{bottom:750.960000px;}
.y1b_c01477{bottom:753.120000px;}
.y1a_c01477{bottom:793.440000px;}
.y19_c01477{bottom:795.600000px;}
.y18_c01477{bottom:796.320000px;}
.y16_c01477{bottom:846.720000px;}
.y14_c01477{bottom:848.160000px;}
.y17_c01477{bottom:848.880000px;}
.y15_c01477{bottom:849.600000px;}
.y10_c01477{bottom:887.040000px;}
.y13_c01477{bottom:889.200000px;}
.y11_c01477{bottom:889.920000px;}
.y12_c01477{bottom:891.360000px;}
.yf_c01477{bottom:892.080000px;}
.yc_c01477{bottom:930.960000px;}
.yb_c01477{bottom:931.680000px;}
.ye_c01477{bottom:932.400000px;}
.yd_c01477{bottom:934.560000px;}
.ya_c01477{bottom:935.280000px;}
.y8_c01477{bottom:974.160000px;}
.y9_c01477{bottom:974.880000px;}
.y6_c01477{bottom:977.040000px;}
.y7_c01477{bottom:977.760000px;}
.y5_c01477{bottom:1017.360000px;}
.y3_c01477{bottom:1018.080000px;}
.y2_c01477{bottom:1020.240000px;}
.y4_c01477{bottom:1020.960000px;}
.y1_c01477{bottom:1095.120000px;}
.ha_c01477{height:31.100625px;}
.h6_c01477{height:33.692344px;}
.he_c01477{height:36.284062px;}
.hf_c01477{height:38.875781px;}
.hc_c01477{height:41.467500px;}
.h3_c01477{height:44.059219px;}
.h5_c01477{height:46.650937px;}
.hd_c01477{height:49.242656px;}
.hb_c01477{height:51.834375px;}
.h8_c01477{height:54.426094px;}
.h4_c01477{height:57.017812px;}
.h10_c01477{height:59.609531px;}
.h7_c01477{height:62.201250px;}
.h9_c01477{height:64.792969px;}
.h2_c01477{height:67.384687px;}
.h0_c01477{height:1152.720000px;}
.h1_c01477{height:1152.750000px;}
.w1_c01477{width:766.500000px;}
.w0_c01477{width:766.800000px;}
.x0_c01477{left:0.000000px;}
.x2_c01477{left:39.600000px;}
.x13_c01477{left:41.040000px;}
.x3_c01477{left:72.720000px;}
.x46_c01477{left:82.800000px;}
.xd_c01477{left:84.240000px;}
.x3a_c01477{left:93.600000px;}
.x23_c01477{left:95.040000px;}
.x32_c01477{left:105.840000px;}
.x1b_c01477{left:115.920000px;}
.x42_c01477{left:126.000000px;}
.x24_c01477{left:127.440000px;}
.x33_c01477{left:136.800000px;}
.xe_c01477{left:138.960000px;}
.x47_c01477{left:147.600000px;}
.x1c_c01477{left:149.760000px;}
.x14_c01477{left:159.120000px;}
.x4_c01477{left:171.360000px;}
.x27_c01477{left:181.440000px;}
.x15_c01477{left:192.960000px;}
.x5_c01477{left:201.600000px;}
.x34_c01477{left:203.040000px;}
.x28_c01477{left:213.840000px;}
.x3e_c01477{left:223.920000px;}
.x49_c01477{left:225.360000px;}
.x1d_c01477{left:235.440000px;}
.x25_c01477{left:246.240000px;}
.x2c_c01477{left:256.320000px;}
.x6_c01477{left:267.840000px;}
.x16_c01477{left:279.360000px;}
.x37_c01477{left:289.440000px;}
.x7_c01477{left:300.240000px;}
.xf_c01477{left:311.040000px;}
.x45_c01477{left:321.840000px;}
.x8_c01477{left:332.640000px;}
.x35_c01477{left:343.440000px;}
.x10_c01477{left:353.520000px;}
.x2d_c01477{left:354.960000px;}
.x3f_c01477{left:363.600000px;}
.x26_c01477{left:365.040000px;}
.x43_c01477{left:374.400000px;}
.x48_c01477{left:376.560000px;}
.x2e_c01477{left:386.640000px;}
.x29_c01477{left:398.160000px;}
.x44_c01477{left:406.800000px;}
.x1e_c01477{left:408.240000px;}
.x36_c01477{left:419.040000px;}
.x9_c01477{left:429.840000px;}
.x17_c01477{left:441.360000px;}
.x1f_c01477{left:451.440000px;}
.xa_c01477{left:462.240000px;}
.x2f_c01477{left:483.840000px;}
.x2a_c01477{left:486.000000px;}
.x40_c01477{left:495.360000px;}
.x38_c01477{left:506.160000px;}
.x3b_c01477{left:516.960000px;}
.x30_c01477{left:527.040000px;}
.xb_c01477{left:538.560000px;}
.x11_c01477{left:548.640000px;}
.x20_c01477{left:560.160000px;}
.x18_c01477{left:570.960000px;}
.x21_c01477{left:581.040000px;}
.xc_c01477{left:583.200000px;}
.x19_c01477{left:592.560000px;}
.x39_c01477{left:602.640000px;}
.x12_c01477{left:613.440000px;}
.x3c_c01477{left:614.880000px;}
.x1a_c01477{left:637.200000px;}
.x31_c01477{left:645.840000px;}
.x41_c01477{left:648.000000px;}
.x2b_c01477{left:658.080000px;}
.x1_c01477{left:660.240000px;}
.x3d_c01477{left:668.880000px;}
.x22_c01477{left:679.680000px;}
@media print{
.v1_c01477{vertical-align:-2.560000pt;}
.v0_c01477{vertical-align:0.000000pt;}
.v2_c01477{vertical-align:2.560000pt;}
.ls0_c01477{letter-spacing:0.000000pt;}
.ws1_c01477{word-spacing:-2.462080pt;}
.ws2_c01477{word-spacing:0.000000pt;}
.ws0_c01477{word-spacing:2.576000pt;}
.fs8_c01477{font-size:30.720000pt;}
.fs4_c01477{font-size:33.280000pt;}
.fsc_c01477{font-size:35.840000pt;}
.fsd_c01477{font-size:38.400000pt;}
.fsa_c01477{font-size:40.960000pt;}
.fs1_c01477{font-size:43.520000pt;}
.fs3_c01477{font-size:46.080000pt;}
.fsb_c01477{font-size:48.640000pt;}
.fs9_c01477{font-size:51.200000pt;}
.fs6_c01477{font-size:53.760000pt;}
.fs2_c01477{font-size:56.320000pt;}
.fse_c01477{font-size:58.880000pt;}
.fs5_c01477{font-size:61.440000pt;}
.fs7_c01477{font-size:64.000000pt;}
.fs0_c01477{font-size:66.560000pt;}
.y0_c01477{bottom:0.000000pt;}
.y56_c01477{bottom:36.480000pt;}
.y55_c01477{bottom:38.400000pt;}
.y58_c01477{bottom:39.040000pt;}
.y57_c01477{bottom:39.680000pt;}
.y53_c01477{bottom:74.880000pt;}
.y52_c01477{bottom:76.800000pt;}
.y54_c01477{bottom:77.440000pt;}
.y51_c01477{bottom:124.800000pt;}
.y50_c01477{bottom:125.440000pt;}
.y4f_c01477{bottom:161.280000pt;}
.y4c_c01477{bottom:162.560000pt;}
.y4d_c01477{bottom:163.200000pt;}
.y4e_c01477{bottom:163.840000pt;}
.y49_c01477{bottom:199.040000pt;}
.y4b_c01477{bottom:199.680000pt;}
.y48_c01477{bottom:201.600000pt;}
.y4a_c01477{bottom:202.240000pt;}
.y44_c01477{bottom:236.800000pt;}
.y45_c01477{bottom:237.440000pt;}
.y46_c01477{bottom:239.360000pt;}
.y47_c01477{bottom:240.000000pt;}
.y43_c01477{bottom:240.640000pt;}
.y41_c01477{bottom:275.200000pt;}
.y3f_c01477{bottom:275.840000pt;}
.y42_c01477{bottom:277.120000pt;}
.y40_c01477{bottom:277.760000pt;}
.y3e_c01477{bottom:278.400000pt;}
.y3d_c01477{bottom:313.600000pt;}
.y3c_c01477{bottom:316.160000pt;}
.y3b_c01477{bottom:352.000000pt;}
.y3a_c01477{bottom:353.920000pt;}
.y39_c01477{bottom:354.560000pt;}
.y38_c01477{bottom:389.760000pt;}
.y37_c01477{bottom:391.680000pt;}
.y36_c01477{bottom:392.320000pt;}
.y33_c01477{bottom:427.520000pt;}
.y35_c01477{bottom:428.160000pt;}
.y32_c01477{bottom:430.080000pt;}
.y34_c01477{bottom:430.720000pt;}
.y30_c01477{bottom:465.920000pt;}
.y2f_c01477{bottom:466.560000pt;}
.y31_c01477{bottom:467.840000pt;}
.y2e_c01477{bottom:468.480000pt;}
.y2d_c01477{bottom:469.120000pt;}
.y2a_c01477{bottom:514.560000pt;}
.y2c_c01477{bottom:515.840000pt;}
.y2b_c01477{bottom:516.480000pt;}
.y29_c01477{bottom:551.680000pt;}
.y27_c01477{bottom:552.320000pt;}
.y28_c01477{bottom:554.240000pt;}
.y26_c01477{bottom:554.880000pt;}
.y25_c01477{bottom:590.080000pt;}
.y23_c01477{bottom:590.720000pt;}
.y22_c01477{bottom:592.640000pt;}
.y24_c01477{bottom:593.280000pt;}
.y21_c01477{bottom:628.480000pt;}
.y20_c01477{bottom:629.120000pt;}
.y1e_c01477{bottom:631.040000pt;}
.y1f_c01477{bottom:631.680000pt;}
.y1d_c01477{bottom:666.880000pt;}
.y1c_c01477{bottom:667.520000pt;}
.y1b_c01477{bottom:669.440000pt;}
.y1a_c01477{bottom:705.280000pt;}
.y19_c01477{bottom:707.200000pt;}
.y18_c01477{bottom:707.840000pt;}
.y16_c01477{bottom:752.640000pt;}
.y14_c01477{bottom:753.920000pt;}
.y17_c01477{bottom:754.560000pt;}
.y15_c01477{bottom:755.200000pt;}
.y10_c01477{bottom:788.480000pt;}
.y13_c01477{bottom:790.400000pt;}
.y11_c01477{bottom:791.040000pt;}
.y12_c01477{bottom:792.320000pt;}
.yf_c01477{bottom:792.960000pt;}
.yc_c01477{bottom:827.520000pt;}
.yb_c01477{bottom:828.160000pt;}
.ye_c01477{bottom:828.800000pt;}
.yd_c01477{bottom:830.720000pt;}
.ya_c01477{bottom:831.360000pt;}
.y8_c01477{bottom:865.920000pt;}
.y9_c01477{bottom:866.560000pt;}
.y6_c01477{bottom:868.480000pt;}
.y7_c01477{bottom:869.120000pt;}
.y5_c01477{bottom:904.320000pt;}
.y3_c01477{bottom:904.960000pt;}
.y2_c01477{bottom:906.880000pt;}
.y4_c01477{bottom:907.520000pt;}
.y1_c01477{bottom:973.440000pt;}
.ha_c01477{height:27.645000pt;}
.h6_c01477{height:29.948750pt;}
.he_c01477{height:32.252500pt;}
.hf_c01477{height:34.556250pt;}
.hc_c01477{height:36.860000pt;}
.h3_c01477{height:39.163750pt;}
.h5_c01477{height:41.467500pt;}
.hd_c01477{height:43.771250pt;}
.hb_c01477{height:46.075000pt;}
.h8_c01477{height:48.378750pt;}
.h4_c01477{height:50.682500pt;}
.h10_c01477{height:52.986250pt;}
.h7_c01477{height:55.290000pt;}
.h9_c01477{height:57.593750pt;}
.h2_c01477{height:59.897500pt;}
.h0_c01477{height:1024.640000pt;}
.h1_c01477{height:1024.666667pt;}
.w1_c01477{width:681.333333pt;}
.w0_c01477{width:681.600000pt;}
.x0_c01477{left:0.000000pt;}
.x2_c01477{left:35.200000pt;}
.x13_c01477{left:36.480000pt;}
.x3_c01477{left:64.640000pt;}
.x46_c01477{left:73.600000pt;}
.xd_c01477{left:74.880000pt;}
.x3a_c01477{left:83.200000pt;}
.x23_c01477{left:84.480000pt;}
.x32_c01477{left:94.080000pt;}
.x1b_c01477{left:103.040000pt;}
.x42_c01477{left:112.000000pt;}
.x24_c01477{left:113.280000pt;}
.x33_c01477{left:121.600000pt;}
.xe_c01477{left:123.520000pt;}
.x47_c01477{left:131.200000pt;}
.x1c_c01477{left:133.120000pt;}
.x14_c01477{left:141.440000pt;}
.x4_c01477{left:152.320000pt;}
.x27_c01477{left:161.280000pt;}
.x15_c01477{left:171.520000pt;}
.x5_c01477{left:179.200000pt;}
.x34_c01477{left:180.480000pt;}
.x28_c01477{left:190.080000pt;}
.x3e_c01477{left:199.040000pt;}
.x49_c01477{left:200.320000pt;}
.x1d_c01477{left:209.280000pt;}
.x25_c01477{left:218.880000pt;}
.x2c_c01477{left:227.840000pt;}
.x6_c01477{left:238.080000pt;}
.x16_c01477{left:248.320000pt;}
.x37_c01477{left:257.280000pt;}
.x7_c01477{left:266.880000pt;}
.xf_c01477{left:276.480000pt;}
.x45_c01477{left:286.080000pt;}
.x8_c01477{left:295.680000pt;}
.x35_c01477{left:305.280000pt;}
.x10_c01477{left:314.240000pt;}
.x2d_c01477{left:315.520000pt;}
.x3f_c01477{left:323.200000pt;}
.x26_c01477{left:324.480000pt;}
.x43_c01477{left:332.800000pt;}
.x48_c01477{left:334.720000pt;}
.x2e_c01477{left:343.680000pt;}
.x29_c01477{left:353.920000pt;}
.x44_c01477{left:361.600000pt;}
.x1e_c01477{left:362.880000pt;}
.x36_c01477{left:372.480000pt;}
.x9_c01477{left:382.080000pt;}
.x17_c01477{left:392.320000pt;}
.x1f_c01477{left:401.280000pt;}
.xa_c01477{left:410.880000pt;}
.x2f_c01477{left:430.080000pt;}
.x2a_c01477{left:432.000000pt;}
.x40_c01477{left:440.320000pt;}
.x38_c01477{left:449.920000pt;}
.x3b_c01477{left:459.520000pt;}
.x30_c01477{left:468.480000pt;}
.xb_c01477{left:478.720000pt;}
.x11_c01477{left:487.680000pt;}
.x20_c01477{left:497.920000pt;}
.x18_c01477{left:507.520000pt;}
.x21_c01477{left:516.480000pt;}
.xc_c01477{left:518.400000pt;}
.x19_c01477{left:526.720000pt;}
.x39_c01477{left:535.680000pt;}
.x12_c01477{left:545.280000pt;}
.x3c_c01477{left:546.560000pt;}
.x1a_c01477{left:566.400000pt;}
.x31_c01477{left:574.080000pt;}
.x41_c01477{left:576.000000pt;}
.x2b_c01477{left:584.960000pt;}
.x1_c01477{left:586.880000pt;}
.x3d_c01477{left:594.560000pt;}
.x22_c01477{left:604.160000pt;}
}





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

.ir_c01478:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01478{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01478;src:url('chunks/assets/font_e925f700ee60b1147caee971.woff2')format("woff");}.ff1_c01478{font-family:ff1_c01478;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m54_c01478{transform:matrix(0.229625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229625,0.000000,0.000000,0.250000,0,0);}
.m5a_c01478{transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);}
.m5f_c01478{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);}
.m64_c01478{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_c01478{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);}
.m32_c01478{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m57_c01478{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);}
.m67_c01478{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);}
.m60_c01478{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m48_c01478{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m5d_c01478{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m26_c01478{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01478{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m18_c01478{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m59_c01478{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m63_c01478{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m65_c01478{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m35_c01478{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);}
.m39_c01478{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m11_c01478{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01478{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);}
.m5b_c01478{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m3_c01478{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);}
.m33_c01478{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m28_c01478{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);}
.m5_c01478{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m8_c01478{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m0_c01478{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);}
.m2d_c01478{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.ma_c01478{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m27_c01478{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);}
.m66_c01478{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);}
.m42_c01478{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);}
.m53_c01478{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m36_c01478{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);}
.m24_c01478{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m41_c01478{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);}
.mb_c01478{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);}
.mc_c01478{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);}
.m44_c01478{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m12_c01478{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m10_c01478{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01478{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_c01478{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01478{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);}
.m62_c01478{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m5e_c01478{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);}
.m40_c01478{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);}
.m4b_c01478{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01478{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m55_c01478{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m31_c01478{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);}
.m43_c01478{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01478{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m15_c01478{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m1_c01478{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);}
.m4a_c01478{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01478{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m6_c01478{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.me_c01478{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m45_c01478{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);}
.m2a_c01478{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01478{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m9_c01478{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m25_c01478{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);}
.m30_c01478{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m50_c01478{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m4d_c01478{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01478{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01478{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m29_c01478{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);}
.m20_c01478{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);}
.m38_c01478{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m17_c01478{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m21_c01478{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01478{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);}
.m1c_c01478{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m34_c01478{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m23_c01478{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m7_c01478{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);}
.m46_c01478{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01478{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01478{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01478{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);}
.m49_c01478{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m58_c01478{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m16_c01478{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_c01478{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m13_c01478{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m22_c01478{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m61_c01478{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01478{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01478{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m56_c01478{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m4_c01478{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);}
.m52_c01478{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m37_c01478{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);}
.m2e_c01478{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m47_c01478{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m2_c01478{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m51_c01478{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m14_c01478{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m5c_c01478{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01478{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.v0_c01478{vertical-align:0.000000px;}
.ls0_c01478{letter-spacing:0.000000px;}
.sc__c01478{text-shadow:none;}
.sc0_c01478{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01478{-webkit-text-stroke:0px transparent;}
.sc0_c01478{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01478{word-spacing:-0.728400px;}
.ws2_c01478{word-spacing:0.000000px;}
.ws0_c01478{word-spacing:0.509520px;}
.fc0_c01478{color:transparent;}
.fs3_c01478{font-size:34.560000px;}
.fsc_c01478{font-size:37.440000px;}
.fsd_c01478{font-size:40.320000px;}
.fsa_c01478{font-size:43.200000px;}
.fs8_c01478{font-size:46.080000px;}
.fs4_c01478{font-size:48.960000px;}
.fs1_c01478{font-size:51.840000px;}
.fs6_c01478{font-size:54.720000px;}
.fs2_c01478{font-size:57.600000px;}
.fs7_c01478{font-size:60.480000px;}
.fs5_c01478{font-size:63.360000px;}
.fsb_c01478{font-size:66.240000px;}
.fs9_c01478{font-size:69.120000px;}
.fs0_c01478{font-size:74.880000px;}
.y0_c01478{bottom:0.000000px;}
.y5e_c01478{bottom:27.360000px;}
.y61_c01478{bottom:28.800000px;}
.y5f_c01478{bottom:29.520000px;}
.y5d_c01478{bottom:30.240000px;}
.y60_c01478{bottom:30.960000px;}
.y5c_c01478{bottom:69.120000px;}
.y5a_c01478{bottom:69.840000px;}
.y59_c01478{bottom:72.000000px;}
.y5b_c01478{bottom:72.720000px;}
.y57_c01478{bottom:121.680000px;}
.y58_c01478{bottom:122.400000px;}
.y55_c01478{bottom:165.600000px;}
.y54_c01478{bottom:166.320000px;}
.y53_c01478{bottom:167.040000px;}
.y56_c01478{bottom:168.480000px;}
.y50_c01478{bottom:208.800000px;}
.y51_c01478{bottom:209.520000px;}
.y4f_c01478{bottom:210.960000px;}
.y52_c01478{bottom:211.680000px;}
.y4e_c01478{bottom:251.280000px;}
.y4d_c01478{bottom:252.000000px;}
.y4c_c01478{bottom:254.160000px;}
.y4b_c01478{bottom:254.880000px;}
.y49_c01478{bottom:294.480000px;}
.y47_c01478{bottom:295.200000px;}
.y48_c01478{bottom:297.360000px;}
.y4a_c01478{bottom:298.080000px;}
.y43_c01478{bottom:337.680000px;}
.y45_c01478{bottom:338.400000px;}
.y44_c01478{bottom:340.560000px;}
.y46_c01478{bottom:341.280000px;}
.y3f_c01478{bottom:380.880000px;}
.y41_c01478{bottom:381.600000px;}
.y40_c01478{bottom:383.760000px;}
.y3e_c01478{bottom:384.480000px;}
.y42_c01478{bottom:385.200000px;}
.y3c_c01478{bottom:424.080000px;}
.y3d_c01478{bottom:424.800000px;}
.y3a_c01478{bottom:426.240000px;}
.y3b_c01478{bottom:426.960000px;}
.y39_c01478{bottom:427.680000px;}
.y38_c01478{bottom:467.280000px;}
.y37_c01478{bottom:468.000000px;}
.y36_c01478{bottom:470.160000px;}
.y35_c01478{bottom:470.880000px;}
.y32_c01478{bottom:510.480000px;}
.y34_c01478{bottom:512.640000px;}
.y33_c01478{bottom:513.360000px;}
.y30_c01478{bottom:552.240000px;}
.y2f_c01478{bottom:554.400000px;}
.y31_c01478{bottom:555.840000px;}
.y2e_c01478{bottom:556.560000px;}
.y29_c01478{bottom:596.160000px;}
.y2c_c01478{bottom:596.880000px;}
.y2b_c01478{bottom:598.320000px;}
.y2a_c01478{bottom:599.040000px;}
.y2d_c01478{bottom:599.760000px;}
.y28_c01478{bottom:638.640000px;}
.y27_c01478{bottom:639.360000px;}
.y26_c01478{bottom:641.520000px;}
.y23_c01478{bottom:681.840000px;}
.y25_c01478{bottom:684.000000px;}
.y24_c01478{bottom:684.720000px;}
.y21_c01478{bottom:724.320000px;}
.y20_c01478{bottom:725.040000px;}
.y1f_c01478{bottom:727.200000px;}
.y22_c01478{bottom:727.920000px;}
.y1d_c01478{bottom:778.320000px;}
.y1e_c01478{bottom:779.040000px;}
.y1c_c01478{bottom:780.480000px;}
.y17_c01478{bottom:820.080000px;}
.y1b_c01478{bottom:820.800000px;}
.y1a_c01478{bottom:822.960000px;}
.y18_c01478{bottom:823.680000px;}
.y19_c01478{bottom:824.400000px;}
.y14_c01478{bottom:862.560000px;}
.y16_c01478{bottom:863.280000px;}
.y13_c01478{bottom:864.000000px;}
.y15_c01478{bottom:866.160000px;}
.y10_c01478{bottom:906.480000px;}
.yf_c01478{bottom:907.200000px;}
.y12_c01478{bottom:909.360000px;}
.y11_c01478{bottom:910.080000px;}
.ye_c01478{bottom:948.960000px;}
.yd_c01478{bottom:949.680000px;}
.yb_c01478{bottom:952.560000px;}
.yc_c01478{bottom:953.280000px;}
.ya_c01478{bottom:992.880000px;}
.y6_c01478{bottom:993.600000px;}
.y8_c01478{bottom:994.320000px;}
.y9_c01478{bottom:995.040000px;}
.y7_c01478{bottom:995.760000px;}
.y4_c01478{bottom:1035.360000px;}
.y5_c01478{bottom:1036.080000px;}
.y3_c01478{bottom:1038.240000px;}
.y2_c01478{bottom:1038.960000px;}
.y1_c01478{bottom:1105.920000px;}
.h5_c01478{height:31.100625px;}
.he_c01478{height:33.692344px;}
.hf_c01478{height:36.284062px;}
.hc_c01478{height:38.875781px;}
.ha_c01478{height:41.467500px;}
.h6_c01478{height:44.059219px;}
.h3_c01478{height:46.650937px;}
.h8_c01478{height:49.242656px;}
.h4_c01478{height:51.834375px;}
.h9_c01478{height:54.426094px;}
.h7_c01478{height:57.017812px;}
.hd_c01478{height:59.609531px;}
.hb_c01478{height:62.201250px;}
.h2_c01478{height:67.384687px;}
.h0_c01478{height:1172.160000px;}
.h1_c01478{height:1172.250000px;}
.w0_c01478{width:760.320000px;}
.w1_c01478{width:760.500000px;}
.x0_c01478{left:0.000000px;}
.x25_c01478{left:38.880000px;}
.x2_c01478{left:40.320000px;}
.x50_c01478{left:41.760000px;}
.x37_c01478{left:71.280000px;}
.x15_c01478{left:73.440000px;}
.x3_c01478{left:82.080000px;}
.x4c_c01478{left:93.600000px;}
.x16_c01478{left:103.680000px;}
.x43_c01478{left:105.120000px;}
.x29_c01478{left:115.920000px;}
.x53_c01478{left:126.000000px;}
.x4_c01478{left:136.080000px;}
.x17_c01478{left:137.520000px;}
.x2c_c01478{left:147.600000px;}
.xd_c01478{left:159.120000px;}
.x48_c01478{left:169.200000px;}
.x38_c01478{left:170.640000px;}
.x5_c01478{left:180.000000px;}
.x3b_c01478{left:190.800000px;}
.xe_c01478{left:192.240000px;}
.x18_c01478{left:203.040000px;}
.x49_c01478{left:211.680000px;}
.x44_c01478{left:213.840000px;}
.x1d_c01478{left:224.640000px;}
.x19_c01478{left:235.440000px;}
.x1e_c01478{left:245.520000px;}
.x35_c01478{left:257.040000px;}
.x4d_c01478{left:259.200000px;}
.xf_c01478{left:267.120000px;}
.x45_c01478{left:277.200000px;}
.x6_c01478{left:278.640000px;}
.x1f_c01478{left:289.440000px;}
.x3c_c01478{left:299.520000px;}
.x7_c01478{left:309.600000px;}
.x39_c01478{left:311.040000px;}
.x31_c01478{left:321.120000px;}
.x2d_c01478{left:330.480000px;}
.x2a_c01478{left:331.920000px;}
.x3d_c01478{left:342.000000px;}
.x1a_c01478{left:353.520000px;}
.x26_c01478{left:355.680000px;}
.x8_c01478{left:364.320000px;}
.x4b_c01478{left:365.760000px;}
.x20_c01478{left:375.120000px;}
.x10_c01478{left:385.200000px;}
.x40_c01478{left:386.640000px;}
.x9_c01478{left:396.720000px;}
.x21_c01478{left:406.800000px;}
.x2e_c01478{left:408.240000px;}
.x11_c01478{left:417.600000px;}
.x54_c01478{left:419.760000px;}
.x41_c01478{left:428.400000px;}
.x2b_c01478{left:429.840000px;}
.x32_c01478{left:440.640000px;}
.x3e_c01478{left:451.440000px;}
.x2f_c01478{left:461.520000px;}
.x3a_c01478{left:473.760000px;}
.x4a_c01478{left:482.400000px;}
.x27_c01478{left:483.840000px;}
.x22_c01478{left:493.920000px;}
.x28_c01478{left:504.720000px;}
.x51_c01478{left:506.160000px;}
.xa_c01478{left:516.240000px;}
.x12_c01478{left:527.040000px;}
.x46_c01478{left:537.840000px;}
.xb_c01478{left:547.920000px;}
.x23_c01478{left:559.440000px;}
.x13_c01478{left:570.240000px;}
.x42_c01478{left:579.600000px;}
.x33_c01478{left:581.040000px;}
.x24_c01478{left:591.840000px;}
.x36_c01478{left:593.280000px;}
.x47_c01478{left:601.200000px;}
.x3f_c01478{left:602.640000px;}
.x4f_c01478{left:605.520000px;}
.x34_c01478{left:612.720000px;}
.x4e_c01478{left:614.880000px;}
.x55_c01478{left:617.760000px;}
.x30_c01478{left:624.240000px;}
.x14_c01478{left:635.040000px;}
.x52_c01478{left:636.480000px;}
.x1b_c01478{left:645.840000px;}
.x56_c01478{left:647.280000px;}
.xc_c01478{left:656.640000px;}
.x1_c01478{left:669.600000px;}
.x1c_c01478{left:689.760000px;}
@media print{
.v0_c01478{vertical-align:0.000000pt;}
.ls0_c01478{letter-spacing:0.000000pt;}
.ws1_c01478{word-spacing:-0.647467pt;}
.ws2_c01478{word-spacing:0.000000pt;}
.ws0_c01478{word-spacing:0.452907pt;}
.fs3_c01478{font-size:30.720000pt;}
.fsc_c01478{font-size:33.280000pt;}
.fsd_c01478{font-size:35.840000pt;}
.fsa_c01478{font-size:38.400000pt;}
.fs8_c01478{font-size:40.960000pt;}
.fs4_c01478{font-size:43.520000pt;}
.fs1_c01478{font-size:46.080000pt;}
.fs6_c01478{font-size:48.640000pt;}
.fs2_c01478{font-size:51.200000pt;}
.fs7_c01478{font-size:53.760000pt;}
.fs5_c01478{font-size:56.320000pt;}
.fsb_c01478{font-size:58.880000pt;}
.fs9_c01478{font-size:61.440000pt;}
.fs0_c01478{font-size:66.560000pt;}
.y0_c01478{bottom:0.000000pt;}
.y5e_c01478{bottom:24.320000pt;}
.y61_c01478{bottom:25.600000pt;}
.y5f_c01478{bottom:26.240000pt;}
.y5d_c01478{bottom:26.880000pt;}
.y60_c01478{bottom:27.520000pt;}
.y5c_c01478{bottom:61.440000pt;}
.y5a_c01478{bottom:62.080000pt;}
.y59_c01478{bottom:64.000000pt;}
.y5b_c01478{bottom:64.640000pt;}
.y57_c01478{bottom:108.160000pt;}
.y58_c01478{bottom:108.800000pt;}
.y55_c01478{bottom:147.200000pt;}
.y54_c01478{bottom:147.840000pt;}
.y53_c01478{bottom:148.480000pt;}
.y56_c01478{bottom:149.760000pt;}
.y50_c01478{bottom:185.600000pt;}
.y51_c01478{bottom:186.240000pt;}
.y4f_c01478{bottom:187.520000pt;}
.y52_c01478{bottom:188.160000pt;}
.y4e_c01478{bottom:223.360000pt;}
.y4d_c01478{bottom:224.000000pt;}
.y4c_c01478{bottom:225.920000pt;}
.y4b_c01478{bottom:226.560000pt;}
.y49_c01478{bottom:261.760000pt;}
.y47_c01478{bottom:262.400000pt;}
.y48_c01478{bottom:264.320000pt;}
.y4a_c01478{bottom:264.960000pt;}
.y43_c01478{bottom:300.160000pt;}
.y45_c01478{bottom:300.800000pt;}
.y44_c01478{bottom:302.720000pt;}
.y46_c01478{bottom:303.360000pt;}
.y3f_c01478{bottom:338.560000pt;}
.y41_c01478{bottom:339.200000pt;}
.y40_c01478{bottom:341.120000pt;}
.y3e_c01478{bottom:341.760000pt;}
.y42_c01478{bottom:342.400000pt;}
.y3c_c01478{bottom:376.960000pt;}
.y3d_c01478{bottom:377.600000pt;}
.y3a_c01478{bottom:378.880000pt;}
.y3b_c01478{bottom:379.520000pt;}
.y39_c01478{bottom:380.160000pt;}
.y38_c01478{bottom:415.360000pt;}
.y37_c01478{bottom:416.000000pt;}
.y36_c01478{bottom:417.920000pt;}
.y35_c01478{bottom:418.560000pt;}
.y32_c01478{bottom:453.760000pt;}
.y34_c01478{bottom:455.680000pt;}
.y33_c01478{bottom:456.320000pt;}
.y30_c01478{bottom:490.880000pt;}
.y2f_c01478{bottom:492.800000pt;}
.y31_c01478{bottom:494.080000pt;}
.y2e_c01478{bottom:494.720000pt;}
.y29_c01478{bottom:529.920000pt;}
.y2c_c01478{bottom:530.560000pt;}
.y2b_c01478{bottom:531.840000pt;}
.y2a_c01478{bottom:532.480000pt;}
.y2d_c01478{bottom:533.120000pt;}
.y28_c01478{bottom:567.680000pt;}
.y27_c01478{bottom:568.320000pt;}
.y26_c01478{bottom:570.240000pt;}
.y23_c01478{bottom:606.080000pt;}
.y25_c01478{bottom:608.000000pt;}
.y24_c01478{bottom:608.640000pt;}
.y21_c01478{bottom:643.840000pt;}
.y20_c01478{bottom:644.480000pt;}
.y1f_c01478{bottom:646.400000pt;}
.y22_c01478{bottom:647.040000pt;}
.y1d_c01478{bottom:691.840000pt;}
.y1e_c01478{bottom:692.480000pt;}
.y1c_c01478{bottom:693.760000pt;}
.y17_c01478{bottom:728.960000pt;}
.y1b_c01478{bottom:729.600000pt;}
.y1a_c01478{bottom:731.520000pt;}
.y18_c01478{bottom:732.160000pt;}
.y19_c01478{bottom:732.800000pt;}
.y14_c01478{bottom:766.720000pt;}
.y16_c01478{bottom:767.360000pt;}
.y13_c01478{bottom:768.000000pt;}
.y15_c01478{bottom:769.920000pt;}
.y10_c01478{bottom:805.760000pt;}
.yf_c01478{bottom:806.400000pt;}
.y12_c01478{bottom:808.320000pt;}
.y11_c01478{bottom:808.960000pt;}
.ye_c01478{bottom:843.520000pt;}
.yd_c01478{bottom:844.160000pt;}
.yb_c01478{bottom:846.720000pt;}
.yc_c01478{bottom:847.360000pt;}
.ya_c01478{bottom:882.560000pt;}
.y6_c01478{bottom:883.200000pt;}
.y8_c01478{bottom:883.840000pt;}
.y9_c01478{bottom:884.480000pt;}
.y7_c01478{bottom:885.120000pt;}
.y4_c01478{bottom:920.320000pt;}
.y5_c01478{bottom:920.960000pt;}
.y3_c01478{bottom:922.880000pt;}
.y2_c01478{bottom:923.520000pt;}
.y1_c01478{bottom:983.040000pt;}
.h5_c01478{height:27.645000pt;}
.he_c01478{height:29.948750pt;}
.hf_c01478{height:32.252500pt;}
.hc_c01478{height:34.556250pt;}
.ha_c01478{height:36.860000pt;}
.h6_c01478{height:39.163750pt;}
.h3_c01478{height:41.467500pt;}
.h8_c01478{height:43.771250pt;}
.h4_c01478{height:46.075000pt;}
.h9_c01478{height:48.378750pt;}
.h7_c01478{height:50.682500pt;}
.hd_c01478{height:52.986250pt;}
.hb_c01478{height:55.290000pt;}
.h2_c01478{height:59.897500pt;}
.h0_c01478{height:1041.920000pt;}
.h1_c01478{height:1042.000000pt;}
.w0_c01478{width:675.840000pt;}
.w1_c01478{width:676.000000pt;}
.x0_c01478{left:0.000000pt;}
.x25_c01478{left:34.560000pt;}
.x2_c01478{left:35.840000pt;}
.x50_c01478{left:37.120000pt;}
.x37_c01478{left:63.360000pt;}
.x15_c01478{left:65.280000pt;}
.x3_c01478{left:72.960000pt;}
.x4c_c01478{left:83.200000pt;}
.x16_c01478{left:92.160000pt;}
.x43_c01478{left:93.440000pt;}
.x29_c01478{left:103.040000pt;}
.x53_c01478{left:112.000000pt;}
.x4_c01478{left:120.960000pt;}
.x17_c01478{left:122.240000pt;}
.x2c_c01478{left:131.200000pt;}
.xd_c01478{left:141.440000pt;}
.x48_c01478{left:150.400000pt;}
.x38_c01478{left:151.680000pt;}
.x5_c01478{left:160.000000pt;}
.x3b_c01478{left:169.600000pt;}
.xe_c01478{left:170.880000pt;}
.x18_c01478{left:180.480000pt;}
.x49_c01478{left:188.160000pt;}
.x44_c01478{left:190.080000pt;}
.x1d_c01478{left:199.680000pt;}
.x19_c01478{left:209.280000pt;}
.x1e_c01478{left:218.240000pt;}
.x35_c01478{left:228.480000pt;}
.x4d_c01478{left:230.400000pt;}
.xf_c01478{left:237.440000pt;}
.x45_c01478{left:246.400000pt;}
.x6_c01478{left:247.680000pt;}
.x1f_c01478{left:257.280000pt;}
.x3c_c01478{left:266.240000pt;}
.x7_c01478{left:275.200000pt;}
.x39_c01478{left:276.480000pt;}
.x31_c01478{left:285.440000pt;}
.x2d_c01478{left:293.760000pt;}
.x2a_c01478{left:295.040000pt;}
.x3d_c01478{left:304.000000pt;}
.x1a_c01478{left:314.240000pt;}
.x26_c01478{left:316.160000pt;}
.x8_c01478{left:323.840000pt;}
.x4b_c01478{left:325.120000pt;}
.x20_c01478{left:333.440000pt;}
.x10_c01478{left:342.400000pt;}
.x40_c01478{left:343.680000pt;}
.x9_c01478{left:352.640000pt;}
.x21_c01478{left:361.600000pt;}
.x2e_c01478{left:362.880000pt;}
.x11_c01478{left:371.200000pt;}
.x54_c01478{left:373.120000pt;}
.x41_c01478{left:380.800000pt;}
.x2b_c01478{left:382.080000pt;}
.x32_c01478{left:391.680000pt;}
.x3e_c01478{left:401.280000pt;}
.x2f_c01478{left:410.240000pt;}
.x3a_c01478{left:421.120000pt;}
.x4a_c01478{left:428.800000pt;}
.x27_c01478{left:430.080000pt;}
.x22_c01478{left:439.040000pt;}
.x28_c01478{left:448.640000pt;}
.x51_c01478{left:449.920000pt;}
.xa_c01478{left:458.880000pt;}
.x12_c01478{left:468.480000pt;}
.x46_c01478{left:478.080000pt;}
.xb_c01478{left:487.040000pt;}
.x23_c01478{left:497.280000pt;}
.x13_c01478{left:506.880000pt;}
.x42_c01478{left:515.200000pt;}
.x33_c01478{left:516.480000pt;}
.x24_c01478{left:526.080000pt;}
.x36_c01478{left:527.360000pt;}
.x47_c01478{left:534.400000pt;}
.x3f_c01478{left:535.680000pt;}
.x4f_c01478{left:538.240000pt;}
.x34_c01478{left:544.640000pt;}
.x4e_c01478{left:546.560000pt;}
.x55_c01478{left:549.120000pt;}
.x30_c01478{left:554.880000pt;}
.x14_c01478{left:564.480000pt;}
.x52_c01478{left:565.760000pt;}
.x1b_c01478{left:574.080000pt;}
.x56_c01478{left:575.360000pt;}
.xc_c01478{left:583.680000pt;}
.x1_c01478{left:595.200000pt;}
.x1c_c01478{left:613.120000pt;}
}





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

.ir_c01479:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01479{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01479;src:url('chunks/assets/font_64c7fcaa589e45ba98a44d76.woff2')format("woff");}.ff1_c01479{font-family:ff1_c01479;line-height:1.109863;font-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_c01479{transform:matrix(0.224175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224175,0.000000,0.000000,0.250000,0,0);}
.mf_c01479{transform:matrix(0.228150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228150,0.000000,0.000000,0.250000,0,0);}
.m2a_c01479{transform:matrix(0.248350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248350,0.000000,0.000000,0.250000,0,0);}
.m4_c01479{transform:matrix(0.248775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248775,0.000000,0.000000,0.250000,0,0);}
.m51_c01479{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);}
.m67_c01479{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_c01479{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01479{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m5_c01479{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m16_c01479{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);}
.m36_c01479{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m28_c01479{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m64_c01479{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m53_c01479{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01479{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m4d_c01479{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m30_c01479{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m68_c01479{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m50_c01479{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m69_c01479{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m5e_c01479{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m15_c01479{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01479{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);}
.m33_c01479{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m62_c01479{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);}
.m1d_c01479{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.md_c01479{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m29_c01479{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m43_c01479{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1_c01479{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m18_c01479{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m14_c01479{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);}
.m3_c01479{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m13_c01479{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m7_c01479{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);}
.m35_c01479{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);}
.m3b_c01479{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);}
.m61_c01479{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01479{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.mc_c01479{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m39_c01479{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);}
.m3d_c01479{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m32_c01479{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m44_c01479{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);}
.m48_c01479{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01479{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_c01479{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);}
.m21_c01479{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);}
.m4e_c01479{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m52_c01479{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m6a_c01479{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m63_c01479{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m12_c01479{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.mb_c01479{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m26_c01479{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);}
.m4c_c01479{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m5d_c01479{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);}
.m10_c01479{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m45_c01479{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m5b_c01479{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m17_c01479{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m42_c01479{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);}
.m2b_c01479{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m65_c01479{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m24_c01479{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m22_c01479{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m49_c01479{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01479{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m46_c01479{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);}
.m47_c01479{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);}
.m3a_c01479{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.ma_c01479{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m58_c01479{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m19_c01479{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);}
.m5f_c01479{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m41_c01479{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m4f_c01479{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m27_c01479{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);}
.m34_c01479{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m38_c01479{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01479{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m57_c01479{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);}
.m2c_c01479{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m5a_c01479{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);}
.m9_c01479{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);}
.m6_c01479{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m66_c01479{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01479{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01479{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m11_c01479{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01479{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m2_c01479{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);}
.m40_c01479{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.me_c01479{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);}
.m60_c01479{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m5c_c01479{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m20_c01479{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m55_c01479{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01479{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m37_c01479{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01479{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m31_c01479{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.m54_c01479{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01479{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m59_c01479{transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);}
.m56_c01479{transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);}
.m25_c01479{transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);}
.v0_c01479{vertical-align:0.000000px;}
.ls0_c01479{letter-spacing:0.000000px;}
.sc__c01479{text-shadow:none;}
.sc0_c01479{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01479{-webkit-text-stroke:0px transparent;}
.sc0_c01479{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01479{word-spacing:0.000000px;}
.fc0_c01479{color:transparent;}
.fs2_c01479{font-size:34.560000px;}
.fs6_c01479{font-size:37.440000px;}
.fsd_c01479{font-size:43.200000px;}
.fsa_c01479{font-size:46.080000px;}
.fs1_c01479{font-size:48.960000px;}
.fs8_c01479{font-size:51.840000px;}
.fsb_c01479{font-size:54.720000px;}
.fsc_c01479{font-size:57.600000px;}
.fs3_c01479{font-size:60.480000px;}
.fs5_c01479{font-size:63.360000px;}
.fs9_c01479{font-size:66.240000px;}
.fs4_c01479{font-size:69.120000px;}
.fs7_c01479{font-size:72.000000px;}
.fs0_c01479{font-size:80.640000px;}
.y0_c01479{bottom:0.000000px;}
.y6e_c01479{bottom:61.200000px;}
.y6b_c01479{bottom:61.920000px;}
.y6c_c01479{bottom:64.080000px;}
.y6d_c01479{bottom:64.800000px;}
.y6a_c01479{bottom:104.400000px;}
.y68_c01479{bottom:105.120000px;}
.y69_c01479{bottom:106.560000px;}
.y67_c01479{bottom:107.280000px;}
.y66_c01479{bottom:108.000000px;}
.y63_c01479{bottom:159.120000px;}
.y65_c01479{bottom:160.560000px;}
.y64_c01479{bottom:161.280000px;}
.y5e_c01479{bottom:201.600000px;}
.y5d_c01479{bottom:202.320000px;}
.y62_c01479{bottom:203.040000px;}
.y60_c01479{bottom:203.760000px;}
.y61_c01479{bottom:204.480000px;}
.y5f_c01479{bottom:205.200000px;}
.y5a_c01479{bottom:244.080000px;}
.y58_c01479{bottom:244.800000px;}
.y5c_c01479{bottom:246.960000px;}
.y59_c01479{bottom:247.680000px;}
.y5b_c01479{bottom:248.400000px;}
.y55_c01479{bottom:287.280000px;}
.y57_c01479{bottom:288.720000px;}
.y54_c01479{bottom:290.160000px;}
.y56_c01479{bottom:290.880000px;}
.y50_c01479{bottom:330.480000px;}
.y52_c01479{bottom:331.200000px;}
.y51_c01479{bottom:332.640000px;}
.y4e_c01479{bottom:333.360000px;}
.y4f_c01479{bottom:334.080000px;}
.y53_c01479{bottom:334.800000px;}
.y4b_c01479{bottom:374.400000px;}
.y4c_c01479{bottom:376.560000px;}
.y4a_c01479{bottom:377.280000px;}
.y4d_c01479{bottom:378.000000px;}
.y49_c01479{bottom:416.880000px;}
.y47_c01479{bottom:417.600000px;}
.y48_c01479{bottom:419.040000px;}
.y46_c01479{bottom:419.760000px;}
.y45_c01479{bottom:459.360000px;}
.y42_c01479{bottom:460.080000px;}
.y43_c01479{bottom:461.520000px;}
.y41_c01479{bottom:462.240000px;}
.y44_c01479{bottom:462.960000px;}
.y3d_c01479{bottom:502.560000px;}
.y40_c01479{bottom:503.280000px;}
.y3c_c01479{bottom:504.720000px;}
.y3e_c01479{bottom:505.440000px;}
.y3f_c01479{bottom:506.160000px;}
.y39_c01479{bottom:556.560000px;}
.y3b_c01479{bottom:558.000000px;}
.y3a_c01479{bottom:558.720000px;}
.y38_c01479{bottom:559.440000px;}
.y34_c01479{bottom:599.040000px;}
.y36_c01479{bottom:599.760000px;}
.y37_c01479{bottom:601.200000px;}
.y35_c01479{bottom:601.920000px;}
.y33_c01479{bottom:642.240000px;}
.y32_c01479{bottom:644.400000px;}
.y31_c01479{bottom:645.120000px;}
.y30_c01479{bottom:684.720000px;}
.y2c_c01479{bottom:685.440000px;}
.y2f_c01479{bottom:687.600000px;}
.y2d_c01479{bottom:688.320000px;}
.y2e_c01479{bottom:689.040000px;}
.y29_c01479{bottom:727.920000px;}
.y2a_c01479{bottom:728.640000px;}
.y28_c01479{bottom:730.800000px;}
.y2b_c01479{bottom:731.520000px;}
.y27_c01479{bottom:770.400000px;}
.y25_c01479{bottom:771.120000px;}
.y26_c01479{bottom:771.840000px;}
.y24_c01479{bottom:773.280000px;}
.y23_c01479{bottom:774.000000px;}
.y21_c01479{bottom:814.320000px;}
.y1f_c01479{bottom:815.040000px;}
.y20_c01479{bottom:815.760000px;}
.y22_c01479{bottom:816.480000px;}
.y1e_c01479{bottom:817.200000px;}
.y1c_c01479{bottom:856.080000px;}
.y1b_c01479{bottom:857.520000px;}
.y1a_c01479{bottom:858.240000px;}
.y18_c01479{bottom:858.960000px;}
.y19_c01479{bottom:859.680000px;}
.y1d_c01479{bottom:860.400000px;}
.y16_c01479{bottom:900.000000px;}
.y15_c01479{bottom:900.720000px;}
.y17_c01479{bottom:901.440000px;}
.y14_c01479{bottom:902.160000px;}
.y13_c01479{bottom:902.880000px;}
.y11_c01479{bottom:942.480000px;}
.yf_c01479{bottom:943.200000px;}
.y12_c01479{bottom:944.640000px;}
.ye_c01479{bottom:945.360000px;}
.y10_c01479{bottom:946.080000px;}
.yc_c01479{bottom:984.240000px;}
.yb_c01479{bottom:984.960000px;}
.yd_c01479{bottom:985.680000px;}
.ya_c01479{bottom:986.400000px;}
.y8_c01479{bottom:987.840000px;}
.y9_c01479{bottom:988.560000px;}
.y6_c01479{bottom:1026.000000px;}
.y4_c01479{bottom:1026.720000px;}
.y3_c01479{bottom:1028.880000px;}
.y5_c01479{bottom:1029.600000px;}
.y7_c01479{bottom:1030.320000px;}
.y2_c01479{bottom:1031.040000px;}
.y1_c01479{bottom:1097.280000px;}
.h4_c01479{height:31.100625px;}
.h8_c01479{height:33.692344px;}
.hf_c01479{height:38.875781px;}
.hc_c01479{height:41.467500px;}
.h3_c01479{height:44.059219px;}
.ha_c01479{height:46.650937px;}
.hd_c01479{height:49.242656px;}
.he_c01479{height:51.834375px;}
.h5_c01479{height:54.426094px;}
.h7_c01479{height:57.017812px;}
.hb_c01479{height:59.609531px;}
.h6_c01479{height:62.201250px;}
.h9_c01479{height:64.792969px;}
.h2_c01479{height:72.568125px;}
.h1_c01479{height:1162.500000px;}
.h0_c01479{height:1162.800000px;}
.w1_c01479{width:765.000000px;}
.w0_c01479{width:765.360000px;}
.x0_c01479{left:0.000000px;}
.x2b_c01479{left:41.040000px;}
.x2_c01479{left:42.480000px;}
.xe_c01479{left:74.160000px;}
.x3_c01479{left:75.600000px;}
.x23_c01479{left:84.960000px;}
.x4c_c01479{left:95.760000px;}
.x3a_c01479{left:97.200000px;}
.x4_c01479{left:107.280000px;}
.xf_c01479{left:108.720000px;}
.x50_c01479{left:118.800000px;}
.x4a_c01479{left:127.440000px;}
.x19_c01479{left:129.600000px;}
.x52_c01479{left:140.400000px;}
.x10_c01479{left:150.480000px;}
.x45_c01479{left:160.560000px;}
.x2c_c01479{left:162.000000px;}
.x11_c01479{left:172.800000px;}
.x1a_c01479{left:183.600000px;}
.x5_c01479{left:194.400000px;}
.x1b_c01479{left:203.760000px;}
.x12_c01479{left:205.200000px;}
.x24_c01479{left:215.280000px;}
.x2d_c01479{left:226.080000px;}
.x25_c01479{left:236.160000px;}
.x13_c01479{left:237.600000px;}
.x51_c01479{left:247.680000px;}
.x2e_c01479{left:249.120000px;}
.x6_c01479{left:259.200000px;}
.x35_c01479{left:268.560000px;}
.x48_c01479{left:270.000000px;}
.x4d_c01479{left:280.800000px;}
.x3f_c01479{left:291.600000px;}
.x7_c01479{left:300.960000px;}
.x59_c01479{left:303.120000px;}
.x36_c01479{left:312.480000px;}
.x46_c01479{left:313.920000px;}
.x40_c01479{left:324.000000px;}
.x8_c01479{left:334.080000px;}
.x56_c01479{left:346.320000px;}
.x1c_c01479{left:354.960000px;}
.x14_c01479{left:356.400000px;}
.x9_c01479{left:366.480000px;}
.x37_c01479{left:377.280000px;}
.x5a_c01479{left:379.440000px;}
.x2f_c01479{left:387.360000px;}
.x4b_c01479{left:388.800000px;}
.x26_c01479{left:398.880000px;}
.x3b_c01479{left:408.960000px;}
.x38_c01479{left:410.400000px;}
.x57_c01479{left:411.840000px;}
.x30_c01479{left:419.760000px;}
.x1d_c01479{left:421.200000px;}
.x53_c01479{left:432.720000px;}
.xa_c01479{left:442.080000px;}
.x3c_c01479{left:443.520000px;}
.x27_c01479{left:452.880000px;}
.x15_c01479{left:455.760000px;}
.x43_c01479{left:462.960000px;}
.x4e_c01479{left:464.400000px;}
.xb_c01479{left:474.480000px;}
.x1e_c01479{left:485.280000px;}
.x5b_c01479{left:486.720000px;}
.x28_c01479{left:496.800000px;}
.xc_c01479{left:507.600000px;}
.x29_c01479{left:518.400000px;}
.x3d_c01479{left:520.560000px;}
.x31_c01479{left:527.040000px;}
.x1f_c01479{left:529.200000px;}
.x49_c01479{left:540.000000px;}
.x39_c01479{left:550.080000px;}
.x58_c01479{left:551.520000px;}
.x20_c01479{left:561.600000px;}
.x5c_c01479{left:563.040000px;}
.x16_c01479{left:570.240000px;}
.x32_c01479{left:571.680000px;}
.x47_c01479{left:583.200000px;}
.x33_c01479{left:591.840000px;}
.x4f_c01479{left:594.000000px;}
.x2a_c01479{left:604.800000px;}
.x54_c01479{left:606.240000px;}
.x44_c01479{left:614.160000px;}
.x21_c01479{left:615.600000px;}
.xd_c01479{left:624.960000px;}
.x41_c01479{left:626.400000px;}
.x17_c01479{left:637.200000px;}
.x22_c01479{left:647.280000px;}
.x42_c01479{left:648.720000px;}
.x55_c01479{left:650.160000px;}
.x34_c01479{left:658.800000px;}
.x1_c01479{left:669.600000px;}
.x18_c01479{left:671.040000px;}
.x3e_c01479{left:680.400000px;}
@media print{
.v0_c01479{vertical-align:0.000000pt;}
.ls0_c01479{letter-spacing:0.000000pt;}
.ws0_c01479{word-spacing:0.000000pt;}
.fs2_c01479{font-size:30.720000pt;}
.fs6_c01479{font-size:33.280000pt;}
.fsd_c01479{font-size:38.400000pt;}
.fsa_c01479{font-size:40.960000pt;}
.fs1_c01479{font-size:43.520000pt;}
.fs8_c01479{font-size:46.080000pt;}
.fsb_c01479{font-size:48.640000pt;}
.fsc_c01479{font-size:51.200000pt;}
.fs3_c01479{font-size:53.760000pt;}
.fs5_c01479{font-size:56.320000pt;}
.fs9_c01479{font-size:58.880000pt;}
.fs4_c01479{font-size:61.440000pt;}
.fs7_c01479{font-size:64.000000pt;}
.fs0_c01479{font-size:71.680000pt;}
.y0_c01479{bottom:0.000000pt;}
.y6e_c01479{bottom:54.400000pt;}
.y6b_c01479{bottom:55.040000pt;}
.y6c_c01479{bottom:56.960000pt;}
.y6d_c01479{bottom:57.600000pt;}
.y6a_c01479{bottom:92.800000pt;}
.y68_c01479{bottom:93.440000pt;}
.y69_c01479{bottom:94.720000pt;}
.y67_c01479{bottom:95.360000pt;}
.y66_c01479{bottom:96.000000pt;}
.y63_c01479{bottom:141.440000pt;}
.y65_c01479{bottom:142.720000pt;}
.y64_c01479{bottom:143.360000pt;}
.y5e_c01479{bottom:179.200000pt;}
.y5d_c01479{bottom:179.840000pt;}
.y62_c01479{bottom:180.480000pt;}
.y60_c01479{bottom:181.120000pt;}
.y61_c01479{bottom:181.760000pt;}
.y5f_c01479{bottom:182.400000pt;}
.y5a_c01479{bottom:216.960000pt;}
.y58_c01479{bottom:217.600000pt;}
.y5c_c01479{bottom:219.520000pt;}
.y59_c01479{bottom:220.160000pt;}
.y5b_c01479{bottom:220.800000pt;}
.y55_c01479{bottom:255.360000pt;}
.y57_c01479{bottom:256.640000pt;}
.y54_c01479{bottom:257.920000pt;}
.y56_c01479{bottom:258.560000pt;}
.y50_c01479{bottom:293.760000pt;}
.y52_c01479{bottom:294.400000pt;}
.y51_c01479{bottom:295.680000pt;}
.y4e_c01479{bottom:296.320000pt;}
.y4f_c01479{bottom:296.960000pt;}
.y53_c01479{bottom:297.600000pt;}
.y4b_c01479{bottom:332.800000pt;}
.y4c_c01479{bottom:334.720000pt;}
.y4a_c01479{bottom:335.360000pt;}
.y4d_c01479{bottom:336.000000pt;}
.y49_c01479{bottom:370.560000pt;}
.y47_c01479{bottom:371.200000pt;}
.y48_c01479{bottom:372.480000pt;}
.y46_c01479{bottom:373.120000pt;}
.y45_c01479{bottom:408.320000pt;}
.y42_c01479{bottom:408.960000pt;}
.y43_c01479{bottom:410.240000pt;}
.y41_c01479{bottom:410.880000pt;}
.y44_c01479{bottom:411.520000pt;}
.y3d_c01479{bottom:446.720000pt;}
.y40_c01479{bottom:447.360000pt;}
.y3c_c01479{bottom:448.640000pt;}
.y3e_c01479{bottom:449.280000pt;}
.y3f_c01479{bottom:449.920000pt;}
.y39_c01479{bottom:494.720000pt;}
.y3b_c01479{bottom:496.000000pt;}
.y3a_c01479{bottom:496.640000pt;}
.y38_c01479{bottom:497.280000pt;}
.y34_c01479{bottom:532.480000pt;}
.y36_c01479{bottom:533.120000pt;}
.y37_c01479{bottom:534.400000pt;}
.y35_c01479{bottom:535.040000pt;}
.y33_c01479{bottom:570.880000pt;}
.y32_c01479{bottom:572.800000pt;}
.y31_c01479{bottom:573.440000pt;}
.y30_c01479{bottom:608.640000pt;}
.y2c_c01479{bottom:609.280000pt;}
.y2f_c01479{bottom:611.200000pt;}
.y2d_c01479{bottom:611.840000pt;}
.y2e_c01479{bottom:612.480000pt;}
.y29_c01479{bottom:647.040000pt;}
.y2a_c01479{bottom:647.680000pt;}
.y28_c01479{bottom:649.600000pt;}
.y2b_c01479{bottom:650.240000pt;}
.y27_c01479{bottom:684.800000pt;}
.y25_c01479{bottom:685.440000pt;}
.y26_c01479{bottom:686.080000pt;}
.y24_c01479{bottom:687.360000pt;}
.y23_c01479{bottom:688.000000pt;}
.y21_c01479{bottom:723.840000pt;}
.y1f_c01479{bottom:724.480000pt;}
.y20_c01479{bottom:725.120000pt;}
.y22_c01479{bottom:725.760000pt;}
.y1e_c01479{bottom:726.400000pt;}
.y1c_c01479{bottom:760.960000pt;}
.y1b_c01479{bottom:762.240000pt;}
.y1a_c01479{bottom:762.880000pt;}
.y18_c01479{bottom:763.520000pt;}
.y19_c01479{bottom:764.160000pt;}
.y1d_c01479{bottom:764.800000pt;}
.y16_c01479{bottom:800.000000pt;}
.y15_c01479{bottom:800.640000pt;}
.y17_c01479{bottom:801.280000pt;}
.y14_c01479{bottom:801.920000pt;}
.y13_c01479{bottom:802.560000pt;}
.y11_c01479{bottom:837.760000pt;}
.yf_c01479{bottom:838.400000pt;}
.y12_c01479{bottom:839.680000pt;}
.ye_c01479{bottom:840.320000pt;}
.y10_c01479{bottom:840.960000pt;}
.yc_c01479{bottom:874.880000pt;}
.yb_c01479{bottom:875.520000pt;}
.yd_c01479{bottom:876.160000pt;}
.ya_c01479{bottom:876.800000pt;}
.y8_c01479{bottom:878.080000pt;}
.y9_c01479{bottom:878.720000pt;}
.y6_c01479{bottom:912.000000pt;}
.y4_c01479{bottom:912.640000pt;}
.y3_c01479{bottom:914.560000pt;}
.y5_c01479{bottom:915.200000pt;}
.y7_c01479{bottom:915.840000pt;}
.y2_c01479{bottom:916.480000pt;}
.y1_c01479{bottom:975.360000pt;}
.h4_c01479{height:27.645000pt;}
.h8_c01479{height:29.948750pt;}
.hf_c01479{height:34.556250pt;}
.hc_c01479{height:36.860000pt;}
.h3_c01479{height:39.163750pt;}
.ha_c01479{height:41.467500pt;}
.hd_c01479{height:43.771250pt;}
.he_c01479{height:46.075000pt;}
.h5_c01479{height:48.378750pt;}
.h7_c01479{height:50.682500pt;}
.hb_c01479{height:52.986250pt;}
.h6_c01479{height:55.290000pt;}
.h9_c01479{height:57.593750pt;}
.h2_c01479{height:64.505000pt;}
.h1_c01479{height:1033.333333pt;}
.h0_c01479{height:1033.600000pt;}
.w1_c01479{width:680.000000pt;}
.w0_c01479{width:680.320000pt;}
.x0_c01479{left:0.000000pt;}
.x2b_c01479{left:36.480000pt;}
.x2_c01479{left:37.760000pt;}
.xe_c01479{left:65.920000pt;}
.x3_c01479{left:67.200000pt;}
.x23_c01479{left:75.520000pt;}
.x4c_c01479{left:85.120000pt;}
.x3a_c01479{left:86.400000pt;}
.x4_c01479{left:95.360000pt;}
.xf_c01479{left:96.640000pt;}
.x50_c01479{left:105.600000pt;}
.x4a_c01479{left:113.280000pt;}
.x19_c01479{left:115.200000pt;}
.x52_c01479{left:124.800000pt;}
.x10_c01479{left:133.760000pt;}
.x45_c01479{left:142.720000pt;}
.x2c_c01479{left:144.000000pt;}
.x11_c01479{left:153.600000pt;}
.x1a_c01479{left:163.200000pt;}
.x5_c01479{left:172.800000pt;}
.x1b_c01479{left:181.120000pt;}
.x12_c01479{left:182.400000pt;}
.x24_c01479{left:191.360000pt;}
.x2d_c01479{left:200.960000pt;}
.x25_c01479{left:209.920000pt;}
.x13_c01479{left:211.200000pt;}
.x51_c01479{left:220.160000pt;}
.x2e_c01479{left:221.440000pt;}
.x6_c01479{left:230.400000pt;}
.x35_c01479{left:238.720000pt;}
.x48_c01479{left:240.000000pt;}
.x4d_c01479{left:249.600000pt;}
.x3f_c01479{left:259.200000pt;}
.x7_c01479{left:267.520000pt;}
.x59_c01479{left:269.440000pt;}
.x36_c01479{left:277.760000pt;}
.x46_c01479{left:279.040000pt;}
.x40_c01479{left:288.000000pt;}
.x8_c01479{left:296.960000pt;}
.x56_c01479{left:307.840000pt;}
.x1c_c01479{left:315.520000pt;}
.x14_c01479{left:316.800000pt;}
.x9_c01479{left:325.760000pt;}
.x37_c01479{left:335.360000pt;}
.x5a_c01479{left:337.280000pt;}
.x2f_c01479{left:344.320000pt;}
.x4b_c01479{left:345.600000pt;}
.x26_c01479{left:354.560000pt;}
.x3b_c01479{left:363.520000pt;}
.x38_c01479{left:364.800000pt;}
.x57_c01479{left:366.080000pt;}
.x30_c01479{left:373.120000pt;}
.x1d_c01479{left:374.400000pt;}
.x53_c01479{left:384.640000pt;}
.xa_c01479{left:392.960000pt;}
.x3c_c01479{left:394.240000pt;}
.x27_c01479{left:402.560000pt;}
.x15_c01479{left:405.120000pt;}
.x43_c01479{left:411.520000pt;}
.x4e_c01479{left:412.800000pt;}
.xb_c01479{left:421.760000pt;}
.x1e_c01479{left:431.360000pt;}
.x5b_c01479{left:432.640000pt;}
.x28_c01479{left:441.600000pt;}
.xc_c01479{left:451.200000pt;}
.x29_c01479{left:460.800000pt;}
.x3d_c01479{left:462.720000pt;}
.x31_c01479{left:468.480000pt;}
.x1f_c01479{left:470.400000pt;}
.x49_c01479{left:480.000000pt;}
.x39_c01479{left:488.960000pt;}
.x58_c01479{left:490.240000pt;}
.x20_c01479{left:499.200000pt;}
.x5c_c01479{left:500.480000pt;}
.x16_c01479{left:506.880000pt;}
.x32_c01479{left:508.160000pt;}
.x47_c01479{left:518.400000pt;}
.x33_c01479{left:526.080000pt;}
.x4f_c01479{left:528.000000pt;}
.x2a_c01479{left:537.600000pt;}
.x54_c01479{left:538.880000pt;}
.x44_c01479{left:545.920000pt;}
.x21_c01479{left:547.200000pt;}
.xd_c01479{left:555.520000pt;}
.x41_c01479{left:556.800000pt;}
.x17_c01479{left:566.400000pt;}
.x22_c01479{left:575.360000pt;}
.x42_c01479{left:576.640000pt;}
.x55_c01479{left:577.920000pt;}
.x34_c01479{left:585.600000pt;}
.x1_c01479{left:595.200000pt;}
.x18_c01479{left:596.480000pt;}
.x3e_c01479{left:604.800000pt;}
}





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

.ir_c01480:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01480{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01480;src:url('chunks/assets/font_080af97277db5463d091af4e.woff2')format("woff");}.ff1_c01480{font-family:ff1_c01480;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4e_c01480{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);}
.m2d_c01480{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);}
.m31_c01480{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);}
.m51_c01480{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01480{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m16_c01480{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m45_c01480{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m53_c01480{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01480{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m17_c01480{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);}
.m5f_c01480{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m52_c01480{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01480{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.mf_c01480{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m5d_c01480{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_c01480{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m58_c01480{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);}
.m42_c01480{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m1_c01480{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_c01480{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01480{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01480{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);}
.m4c_c01480{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m18_c01480{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m28_c01480{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);}
.m36_c01480{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);}
.m32_c01480{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_c01480{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);}
.m1a_c01480{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m3_c01480{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);}
.m13_c01480{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);}
.m30_c01480{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);}
.m59_c01480{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m40_c01480{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m5_c01480{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01480{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m2_c01480{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m25_c01480{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);}
.m1f_c01480{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.me_c01480{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);}
.m48_c01480{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);}
.m5b_c01480{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01480{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m26_c01480{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m49_c01480{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);}
.m19_c01480{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m41_c01480{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01480{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);}
.m22_c01480{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);}
.m43_c01480{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m20_c01480{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m9_c01480{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.ma_c01480{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);}
.m5e_c01480{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m21_c01480{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01480{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);}
.m57_c01480{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m44_c01480{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m24_c01480{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m39_c01480{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01480{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m33_c01480{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);}
.m12_c01480{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);}
.m38_c01480{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m4_c01480{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01480{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01480{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);}
.m34_c01480{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.mc_c01480{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m56_c01480{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m14_c01480{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);}
.m15_c01480{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m37_c01480{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01480{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m6_c01480{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);}
.m3e_c01480{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m29_c01480{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m7_c01480{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);}
.m23_c01480{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01480{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m11_c01480{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m50_c01480{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m55_c01480{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01480{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m5a_c01480{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m27_c01480{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);}
.m54_c01480{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m8_c01480{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);}
.m35_c01480{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m4a_c01480{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01480{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m5c_c01480{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01480{transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);}
.m46_c01480{transform:matrix(0.650000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.650000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.650000,0.000000,0.000000,0.250000,0,0);}
.m47_c01480{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);}
.md_c01480{transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);}
.v3_c01480{vertical-align:-8.640000px;}
.v1_c01480{vertical-align:-5.760000px;}
.v0_c01480{vertical-align:0.000000px;}
.v2_c01480{vertical-align:2.880000px;}
.ls1_c01480{letter-spacing:0.000000px;}
.ls0_c01480{letter-spacing:27.882000px;}
.sc__c01480{text-shadow:none;}
.sc0_c01480{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01480{-webkit-text-stroke:0px transparent;}
.sc0_c01480{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01480{word-spacing:-6.768000px;}
.ws2_c01480{word-spacing:-2.732160px;}
.ws3_c01480{word-spacing:0.000000px;}
.ws1_c01480{word-spacing:0.800548px;}
.fc0_c01480{color:transparent;}
.fs6_c01480{font-size:34.560000px;}
.fs5_c01480{font-size:37.440000px;}
.fsc_c01480{font-size:43.200000px;}
.fs2_c01480{font-size:46.080000px;}
.fs4_c01480{font-size:48.960000px;}
.fs3_c01480{font-size:51.840000px;}
.fs8_c01480{font-size:54.720000px;}
.fs7_c01480{font-size:57.600000px;}
.fsb_c01480{font-size:60.480000px;}
.fs9_c01480{font-size:63.360000px;}
.fsa_c01480{font-size:66.240000px;}
.fs1_c01480{font-size:69.120000px;}
.fs0_c01480{font-size:74.880000px;}
.y0_c01480{bottom:0.000000px;}
.y67_c01480{bottom:34.560000px;}
.y66_c01480{bottom:36.000000px;}
.y65_c01480{bottom:36.720000px;}
.y68_c01480{bottom:37.440000px;}
.y69_c01480{bottom:38.160000px;}
.y61_c01480{bottom:76.320000px;}
.y62_c01480{bottom:77.040000px;}
.y64_c01480{bottom:77.760000px;}
.y60_c01480{bottom:79.200000px;}
.y5f_c01480{bottom:79.920000px;}
.y63_c01480{bottom:80.640000px;}
.y5b_c01480{bottom:119.520000px;}
.y5e_c01480{bottom:120.240000px;}
.y5c_c01480{bottom:120.960000px;}
.y5a_c01480{bottom:123.120000px;}
.y5d_c01480{bottom:123.840000px;}
.y59_c01480{bottom:163.440000px;}
.y57_c01480{bottom:165.600000px;}
.y58_c01480{bottom:166.320000px;}
.y55_c01480{bottom:207.360000px;}
.y54_c01480{bottom:208.080000px;}
.y53_c01480{bottom:208.800000px;}
.y56_c01480{bottom:209.520000px;}
.y4f_c01480{bottom:248.400000px;}
.y4d_c01480{bottom:249.120000px;}
.y4e_c01480{bottom:251.280000px;}
.y50_c01480{bottom:252.000000px;}
.y51_c01480{bottom:252.720000px;}
.y52_c01480{bottom:253.440000px;}
.y4a_c01480{bottom:292.320000px;}
.y49_c01480{bottom:294.480000px;}
.y4b_c01480{bottom:295.200000px;}
.y4c_c01480{bottom:295.920000px;}
.y45_c01480{bottom:334.800000px;}
.y47_c01480{bottom:335.520000px;}
.y46_c01480{bottom:336.240000px;}
.y44_c01480{bottom:337.680000px;}
.y48_c01480{bottom:338.400000px;}
.y3d_c01480{bottom:377.280000px;}
.y3f_c01480{bottom:378.000000px;}
.y40_c01480{bottom:378.720000px;}
.y3e_c01480{bottom:380.160000px;}
.y41_c01480{bottom:380.880000px;}
.y43_c01480{bottom:381.600000px;}
.y42_c01480{bottom:382.320000px;}
.y37_c01480{bottom:420.480000px;}
.y38_c01480{bottom:421.200000px;}
.y3c_c01480{bottom:421.920000px;}
.y3a_c01480{bottom:423.360000px;}
.y39_c01480{bottom:424.080000px;}
.y3b_c01480{bottom:424.800000px;}
.y33_c01480{bottom:463.680000px;}
.y34_c01480{bottom:464.400000px;}
.y35_c01480{bottom:466.560000px;}
.y32_c01480{bottom:467.280000px;}
.y36_c01480{bottom:468.000000px;}
.y2c_c01480{bottom:506.880000px;}
.y2d_c01480{bottom:507.600000px;}
.y30_c01480{bottom:509.040000px;}
.y2f_c01480{bottom:509.760000px;}
.y2e_c01480{bottom:510.480000px;}
.y31_c01480{bottom:511.920000px;}
.y2a_c01480{bottom:550.080000px;}
.y29_c01480{bottom:552.960000px;}
.y2b_c01480{bottom:553.680000px;}
.y26_c01480{bottom:592.560000px;}
.y25_c01480{bottom:593.280000px;}
.y28_c01480{bottom:594.000000px;}
.y24_c01480{bottom:596.160000px;}
.y27_c01480{bottom:596.880000px;}
.y23_c01480{bottom:636.480000px;}
.y22_c01480{bottom:639.360000px;}
.y20_c01480{bottom:679.680000px;}
.y1f_c01480{bottom:681.840000px;}
.y21_c01480{bottom:682.560000px;}
.y1e_c01480{bottom:732.240000px;}
.y1d_c01480{bottom:735.120000px;}
.y1c_c01480{bottom:775.440000px;}
.y1a_c01480{bottom:776.160000px;}
.y19_c01480{bottom:777.600000px;}
.y1b_c01480{bottom:778.320000px;}
.y17_c01480{bottom:817.920000px;}
.y18_c01480{bottom:820.080000px;}
.y16_c01480{bottom:820.800000px;}
.y14_c01480{bottom:860.400000px;}
.y12_c01480{bottom:861.120000px;}
.y15_c01480{bottom:862.560000px;}
.y11_c01480{bottom:863.280000px;}
.y13_c01480{bottom:864.000000px;}
.y10_c01480{bottom:905.760000px;}
.yf_c01480{bottom:906.480000px;}
.yc_c01480{bottom:946.080000px;}
.ye_c01480{bottom:948.240000px;}
.yd_c01480{bottom:948.960000px;}
.ya_c01480{bottom:949.680000px;}
.yb_c01480{bottom:950.400000px;}
.y7_c01480{bottom:988.560000px;}
.y9_c01480{bottom:989.280000px;}
.y8_c01480{bottom:991.440000px;}
.y5_c01480{bottom:992.160000px;}
.y6_c01480{bottom:992.880000px;}
.y2_c01480{bottom:1033.920000px;}
.y4_c01480{bottom:1034.640000px;}
.y3_c01480{bottom:1035.360000px;}
.y1_c01480{bottom:1110.960000px;}
.h8_c01480{height:31.100625px;}
.h7_c01480{height:33.692344px;}
.he_c01480{height:38.875781px;}
.h4_c01480{height:41.467500px;}
.h6_c01480{height:44.059219px;}
.hf_c01480{height:44.347500px;}
.h5_c01480{height:46.650937px;}
.ha_c01480{height:49.242656px;}
.h9_c01480{height:51.834375px;}
.hd_c01480{height:54.426094px;}
.hb_c01480{height:57.017812px;}
.hc_c01480{height:59.609531px;}
.h3_c01480{height:62.201250px;}
.h2_c01480{height:67.384687px;}
.h1_c01480{height:1164.000000px;}
.h0_c01480{height:1164.240000px;}
.w1_c01480{width:766.500000px;}
.w0_c01480{width:766.800000px;}
.x0_c01480{left:0.000000px;}
.x2_c01480{left:51.840000px;}
.x46_c01480{left:53.280000px;}
.xc_c01480{left:84.960000px;}
.x13_c01480{left:95.760000px;}
.x3_c01480{left:117.360000px;}
.xd_c01480{left:127.440000px;}
.x14_c01480{left:128.880000px;}
.x1d_c01480{left:138.240000px;}
.x53_c01480{left:139.680000px;}
.x2f_c01480{left:149.040000px;}
.x4_c01480{left:159.840000px;}
.x4d_c01480{left:161.280000px;}
.x23_c01480{left:171.360000px;}
.x32_c01480{left:172.800000px;}
.x42_c01480{left:181.440000px;}
.x3b_c01480{left:182.880000px;}
.x34_c01480{left:192.240000px;}
.xe_c01480{left:203.040000px;}
.x24_c01480{left:214.560000px;}
.x3c_c01480{left:226.080000px;}
.x33_c01480{left:235.440000px;}
.x54_c01480{left:237.600000px;}
.x25_c01480{left:246.240000px;}
.x5_c01480{left:247.680000px;}
.x15_c01480{left:257.760000px;}
.x43_c01480{left:269.280000px;}
.x6_c01480{left:278.640000px;}
.xf_c01480{left:280.080000px;}
.x26_c01480{left:289.440000px;}
.x58_c01480{left:290.880000px;}
.x4e_c01480{left:301.680000px;}
.x1e_c01480{left:311.040000px;}
.x55_c01480{left:313.200000px;}
.x27_c01480{left:321.840000px;}
.x44_c01480{left:323.280000px;}
.x7_c01480{left:332.640000px;}
.x4f_c01480{left:334.080000px;}
.x35_c01480{left:343.440000px;}
.x49_c01480{left:344.880000px;}
.x1f_c01480{left:355.680000px;}
.x16_c01480{left:365.040000px;}
.x28_c01480{left:366.480000px;}
.x50_c01480{left:377.280000px;}
.x2c_c01480{left:387.360000px;}
.x56_c01480{left:388.800000px;}
.x17_c01480{left:398.160000px;}
.x20_c01480{left:408.960000px;}
.x59_c01480{left:411.120000px;}
.x29_c01480{left:419.040000px;}
.x4b_c01480{left:421.920000px;}
.x8_c01480{left:429.840000px;}
.x36_c01480{left:431.280000px;}
.x5a_c01480{left:432.720000px;}
.x3d_c01480{left:441.360000px;}
.x2d_c01480{left:451.440000px;}
.x3f_c01480{left:461.520000px;}
.x2a_c01480{left:462.960000px;}
.x52_c01480{left:464.400000px;}
.x9_c01480{left:472.320000px;}
.x47_c01480{left:473.760000px;}
.x18_c01480{left:483.840000px;}
.x2e_c01480{left:495.360000px;}
.x57_c01480{left:496.800000px;}
.xa_c01480{left:506.160000px;}
.x5b_c01480{left:508.320000px;}
.x37_c01480{left:517.680000px;}
.x19_c01480{left:526.320000px;}
.x3a_c01480{left:527.760000px;}
.x30_c01480{left:529.920000px;}
.x10_c01480{left:537.840000px;}
.x40_c01480{left:540.000000px;}
.x51_c01480{left:550.800000px;}
.x21_c01480{left:558.720000px;}
.x5c_c01480{left:563.040000px;}
.x11_c01480{left:570.240000px;}
.x45_c01480{left:573.840000px;}
.x38_c01480{left:581.040000px;}
.x3e_c01480{left:582.480000px;}
.xb_c01480{left:593.280000px;}
.x48_c01480{left:604.800000px;}
.x1a_c01480{left:613.440000px;}
.x4a_c01480{left:615.600000px;}
.x31_c01480{left:624.960000px;}
.x39_c01480{left:626.400000px;}
.x2b_c01480{left:636.480000px;}
.x5d_c01480{left:637.920000px;}
.x12_c01480{left:648.000000px;}
.x1b_c01480{left:658.800000px;}
.x4c_c01480{left:670.320000px;}
.x1_c01480{left:674.640000px;}
.x41_c01480{left:678.240000px;}
.x22_c01480{left:689.040000px;}
.x1c_c01480{left:691.200000px;}
@media print{
.v3_c01480{vertical-align:-7.680000pt;}
.v1_c01480{vertical-align:-5.120000pt;}
.v0_c01480{vertical-align:0.000000pt;}
.v2_c01480{vertical-align:2.560000pt;}
.ls1_c01480{letter-spacing:0.000000pt;}
.ls0_c01480{letter-spacing:24.784000pt;}
.ws0_c01480{word-spacing:-6.016000pt;}
.ws2_c01480{word-spacing:-2.428587pt;}
.ws3_c01480{word-spacing:0.000000pt;}
.ws1_c01480{word-spacing:0.711598pt;}
.fs6_c01480{font-size:30.720000pt;}
.fs5_c01480{font-size:33.280000pt;}
.fsc_c01480{font-size:38.400000pt;}
.fs2_c01480{font-size:40.960000pt;}
.fs4_c01480{font-size:43.520000pt;}
.fs3_c01480{font-size:46.080000pt;}
.fs8_c01480{font-size:48.640000pt;}
.fs7_c01480{font-size:51.200000pt;}
.fsb_c01480{font-size:53.760000pt;}
.fs9_c01480{font-size:56.320000pt;}
.fsa_c01480{font-size:58.880000pt;}
.fs1_c01480{font-size:61.440000pt;}
.fs0_c01480{font-size:66.560000pt;}
.y0_c01480{bottom:0.000000pt;}
.y67_c01480{bottom:30.720000pt;}
.y66_c01480{bottom:32.000000pt;}
.y65_c01480{bottom:32.640000pt;}
.y68_c01480{bottom:33.280000pt;}
.y69_c01480{bottom:33.920000pt;}
.y61_c01480{bottom:67.840000pt;}
.y62_c01480{bottom:68.480000pt;}
.y64_c01480{bottom:69.120000pt;}
.y60_c01480{bottom:70.400000pt;}
.y5f_c01480{bottom:71.040000pt;}
.y63_c01480{bottom:71.680000pt;}
.y5b_c01480{bottom:106.240000pt;}
.y5e_c01480{bottom:106.880000pt;}
.y5c_c01480{bottom:107.520000pt;}
.y5a_c01480{bottom:109.440000pt;}
.y5d_c01480{bottom:110.080000pt;}
.y59_c01480{bottom:145.280000pt;}
.y57_c01480{bottom:147.200000pt;}
.y58_c01480{bottom:147.840000pt;}
.y55_c01480{bottom:184.320000pt;}
.y54_c01480{bottom:184.960000pt;}
.y53_c01480{bottom:185.600000pt;}
.y56_c01480{bottom:186.240000pt;}
.y4f_c01480{bottom:220.800000pt;}
.y4d_c01480{bottom:221.440000pt;}
.y4e_c01480{bottom:223.360000pt;}
.y50_c01480{bottom:224.000000pt;}
.y51_c01480{bottom:224.640000pt;}
.y52_c01480{bottom:225.280000pt;}
.y4a_c01480{bottom:259.840000pt;}
.y49_c01480{bottom:261.760000pt;}
.y4b_c01480{bottom:262.400000pt;}
.y4c_c01480{bottom:263.040000pt;}
.y45_c01480{bottom:297.600000pt;}
.y47_c01480{bottom:298.240000pt;}
.y46_c01480{bottom:298.880000pt;}
.y44_c01480{bottom:300.160000pt;}
.y48_c01480{bottom:300.800000pt;}
.y3d_c01480{bottom:335.360000pt;}
.y3f_c01480{bottom:336.000000pt;}
.y40_c01480{bottom:336.640000pt;}
.y3e_c01480{bottom:337.920000pt;}
.y41_c01480{bottom:338.560000pt;}
.y43_c01480{bottom:339.200000pt;}
.y42_c01480{bottom:339.840000pt;}
.y37_c01480{bottom:373.760000pt;}
.y38_c01480{bottom:374.400000pt;}
.y3c_c01480{bottom:375.040000pt;}
.y3a_c01480{bottom:376.320000pt;}
.y39_c01480{bottom:376.960000pt;}
.y3b_c01480{bottom:377.600000pt;}
.y33_c01480{bottom:412.160000pt;}
.y34_c01480{bottom:412.800000pt;}
.y35_c01480{bottom:414.720000pt;}
.y32_c01480{bottom:415.360000pt;}
.y36_c01480{bottom:416.000000pt;}
.y2c_c01480{bottom:450.560000pt;}
.y2d_c01480{bottom:451.200000pt;}
.y30_c01480{bottom:452.480000pt;}
.y2f_c01480{bottom:453.120000pt;}
.y2e_c01480{bottom:453.760000pt;}
.y31_c01480{bottom:455.040000pt;}
.y2a_c01480{bottom:488.960000pt;}
.y29_c01480{bottom:491.520000pt;}
.y2b_c01480{bottom:492.160000pt;}
.y26_c01480{bottom:526.720000pt;}
.y25_c01480{bottom:527.360000pt;}
.y28_c01480{bottom:528.000000pt;}
.y24_c01480{bottom:529.920000pt;}
.y27_c01480{bottom:530.560000pt;}
.y23_c01480{bottom:565.760000pt;}
.y22_c01480{bottom:568.320000pt;}
.y20_c01480{bottom:604.160000pt;}
.y1f_c01480{bottom:606.080000pt;}
.y21_c01480{bottom:606.720000pt;}
.y1e_c01480{bottom:650.880000pt;}
.y1d_c01480{bottom:653.440000pt;}
.y1c_c01480{bottom:689.280000pt;}
.y1a_c01480{bottom:689.920000pt;}
.y19_c01480{bottom:691.200000pt;}
.y1b_c01480{bottom:691.840000pt;}
.y17_c01480{bottom:727.040000pt;}
.y18_c01480{bottom:728.960000pt;}
.y16_c01480{bottom:729.600000pt;}
.y14_c01480{bottom:764.800000pt;}
.y12_c01480{bottom:765.440000pt;}
.y15_c01480{bottom:766.720000pt;}
.y11_c01480{bottom:767.360000pt;}
.y13_c01480{bottom:768.000000pt;}
.y10_c01480{bottom:805.120000pt;}
.yf_c01480{bottom:805.760000pt;}
.yc_c01480{bottom:840.960000pt;}
.ye_c01480{bottom:842.880000pt;}
.yd_c01480{bottom:843.520000pt;}
.ya_c01480{bottom:844.160000pt;}
.yb_c01480{bottom:844.800000pt;}
.y7_c01480{bottom:878.720000pt;}
.y9_c01480{bottom:879.360000pt;}
.y8_c01480{bottom:881.280000pt;}
.y5_c01480{bottom:881.920000pt;}
.y6_c01480{bottom:882.560000pt;}
.y2_c01480{bottom:919.040000pt;}
.y4_c01480{bottom:919.680000pt;}
.y3_c01480{bottom:920.320000pt;}
.y1_c01480{bottom:987.520000pt;}
.h8_c01480{height:27.645000pt;}
.h7_c01480{height:29.948750pt;}
.he_c01480{height:34.556250pt;}
.h4_c01480{height:36.860000pt;}
.h6_c01480{height:39.163750pt;}
.hf_c01480{height:39.420000pt;}
.h5_c01480{height:41.467500pt;}
.ha_c01480{height:43.771250pt;}
.h9_c01480{height:46.075000pt;}
.hd_c01480{height:48.378750pt;}
.hb_c01480{height:50.682500pt;}
.hc_c01480{height:52.986250pt;}
.h3_c01480{height:55.290000pt;}
.h2_c01480{height:59.897500pt;}
.h1_c01480{height:1034.666667pt;}
.h0_c01480{height:1034.880000pt;}
.w1_c01480{width:681.333333pt;}
.w0_c01480{width:681.600000pt;}
.x0_c01480{left:0.000000pt;}
.x2_c01480{left:46.080000pt;}
.x46_c01480{left:47.360000pt;}
.xc_c01480{left:75.520000pt;}
.x13_c01480{left:85.120000pt;}
.x3_c01480{left:104.320000pt;}
.xd_c01480{left:113.280000pt;}
.x14_c01480{left:114.560000pt;}
.x1d_c01480{left:122.880000pt;}
.x53_c01480{left:124.160000pt;}
.x2f_c01480{left:132.480000pt;}
.x4_c01480{left:142.080000pt;}
.x4d_c01480{left:143.360000pt;}
.x23_c01480{left:152.320000pt;}
.x32_c01480{left:153.600000pt;}
.x42_c01480{left:161.280000pt;}
.x3b_c01480{left:162.560000pt;}
.x34_c01480{left:170.880000pt;}
.xe_c01480{left:180.480000pt;}
.x24_c01480{left:190.720000pt;}
.x3c_c01480{left:200.960000pt;}
.x33_c01480{left:209.280000pt;}
.x54_c01480{left:211.200000pt;}
.x25_c01480{left:218.880000pt;}
.x5_c01480{left:220.160000pt;}
.x15_c01480{left:229.120000pt;}
.x43_c01480{left:239.360000pt;}
.x6_c01480{left:247.680000pt;}
.xf_c01480{left:248.960000pt;}
.x26_c01480{left:257.280000pt;}
.x58_c01480{left:258.560000pt;}
.x4e_c01480{left:268.160000pt;}
.x1e_c01480{left:276.480000pt;}
.x55_c01480{left:278.400000pt;}
.x27_c01480{left:286.080000pt;}
.x44_c01480{left:287.360000pt;}
.x7_c01480{left:295.680000pt;}
.x4f_c01480{left:296.960000pt;}
.x35_c01480{left:305.280000pt;}
.x49_c01480{left:306.560000pt;}
.x1f_c01480{left:316.160000pt;}
.x16_c01480{left:324.480000pt;}
.x28_c01480{left:325.760000pt;}
.x50_c01480{left:335.360000pt;}
.x2c_c01480{left:344.320000pt;}
.x56_c01480{left:345.600000pt;}
.x17_c01480{left:353.920000pt;}
.x20_c01480{left:363.520000pt;}
.x59_c01480{left:365.440000pt;}
.x29_c01480{left:372.480000pt;}
.x4b_c01480{left:375.040000pt;}
.x8_c01480{left:382.080000pt;}
.x36_c01480{left:383.360000pt;}
.x5a_c01480{left:384.640000pt;}
.x3d_c01480{left:392.320000pt;}
.x2d_c01480{left:401.280000pt;}
.x3f_c01480{left:410.240000pt;}
.x2a_c01480{left:411.520000pt;}
.x52_c01480{left:412.800000pt;}
.x9_c01480{left:419.840000pt;}
.x47_c01480{left:421.120000pt;}
.x18_c01480{left:430.080000pt;}
.x2e_c01480{left:440.320000pt;}
.x57_c01480{left:441.600000pt;}
.xa_c01480{left:449.920000pt;}
.x5b_c01480{left:451.840000pt;}
.x37_c01480{left:460.160000pt;}
.x19_c01480{left:467.840000pt;}
.x3a_c01480{left:469.120000pt;}
.x30_c01480{left:471.040000pt;}
.x10_c01480{left:478.080000pt;}
.x40_c01480{left:480.000000pt;}
.x51_c01480{left:489.600000pt;}
.x21_c01480{left:496.640000pt;}
.x5c_c01480{left:500.480000pt;}
.x11_c01480{left:506.880000pt;}
.x45_c01480{left:510.080000pt;}
.x38_c01480{left:516.480000pt;}
.x3e_c01480{left:517.760000pt;}
.xb_c01480{left:527.360000pt;}
.x48_c01480{left:537.600000pt;}
.x1a_c01480{left:545.280000pt;}
.x4a_c01480{left:547.200000pt;}
.x31_c01480{left:555.520000pt;}
.x39_c01480{left:556.800000pt;}
.x2b_c01480{left:565.760000pt;}
.x5d_c01480{left:567.040000pt;}
.x12_c01480{left:576.000000pt;}
.x1b_c01480{left:585.600000pt;}
.x4c_c01480{left:595.840000pt;}
.x1_c01480{left:599.680000pt;}
.x41_c01480{left:602.880000pt;}
.x22_c01480{left:612.480000pt;}
.x1c_c01480{left:614.400000pt;}
}





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

.ir_c01481:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01481{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01481;src:url('chunks/assets/font_15edb56fa0bdbe79ff271a64.woff2')format("woff");}.ff1_c01481{font-family:ff1_c01481;line-height:1.109863;font-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_c01481{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.me_c01481{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);}
.m34_c01481{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m31_c01481{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m5a_c01481{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m23_c01481{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01481{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m4d_c01481{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m46_c01481{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m0_c01481{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m4e_c01481{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m19_c01481{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.md_c01481{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1_c01481{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);}
.m5d_c01481{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.mb_c01481{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m5_c01481{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_c01481{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m15_c01481{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m40_c01481{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);}
.m51_c01481{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01481{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m11_c01481{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01481{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m17_c01481{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);}
.m29_c01481{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);}
.m18_c01481{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);}
.m4b_c01481{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);}
.m49_c01481{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);}
.mf_c01481{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01481{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m6_c01481{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01481{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_c01481{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01481{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01481{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);}
.m10_c01481{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);}
.m52_c01481{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m4a_c01481{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01481{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m33_c01481{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01481{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);}
.m57_c01481{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m3_c01481{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m30_c01481{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);}
.m28_c01481{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m8_c01481{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m36_c01481{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m55_c01481{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m13_c01481{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);}
.m2_c01481{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m16_c01481{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01481{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01481{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);}
.m58_c01481{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m20_c01481{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01481{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01481{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01481{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);}
.m4_c01481{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);}
.m45_c01481{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m9_c01481{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m48_c01481{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m7_c01481{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);}
.m50_c01481{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01481{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01481{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);}
.m3d_c01481{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m43_c01481{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m44_c01481{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m53_c01481{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);}
.m14_c01481{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m5c_c01481{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);}
.m22_c01481{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m37_c01481{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);}
.m27_c01481{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01481{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m41_c01481{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m56_c01481{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.mc_c01481{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m38_c01481{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m35_c01481{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m5b_c01481{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);}
.m39_c01481{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);}
.m32_c01481{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m59_c01481{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m42_c01481{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m25_c01481{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);}
.m24_c01481{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01481{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m54_c01481{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01481{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m21_c01481{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);}
.m47_c01481{transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);}
.v1_c01481{vertical-align:-8.640000px;}
.v0_c01481{vertical-align:0.000000px;}
.ls0_c01481{letter-spacing:0.000000px;}
.sc__c01481{text-shadow:none;}
.sc0_c01481{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01481{-webkit-text-stroke:0px transparent;}
.sc0_c01481{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01481{word-spacing:-4.896240px;}
.ws2_c01481{word-spacing:0.000000px;}
.ws0_c01481{word-spacing:58.236192px;}
.fc0_c01481{color:transparent;}
.fsc_c01481{font-size:31.680000px;}
.fs6_c01481{font-size:34.560000px;}
.fsd_c01481{font-size:37.440000px;}
.fsb_c01481{font-size:43.200000px;}
.fs2_c01481{font-size:46.080000px;}
.fs3_c01481{font-size:48.960000px;}
.fs4_c01481{font-size:51.840000px;}
.fs9_c01481{font-size:54.720000px;}
.fs8_c01481{font-size:57.600000px;}
.fs5_c01481{font-size:60.480000px;}
.fs7_c01481{font-size:63.360000px;}
.fs1_c01481{font-size:66.240000px;}
.fsa_c01481{font-size:69.120000px;}
.fs0_c01481{font-size:74.880000px;}
.y0_c01481{bottom:0.000000px;}
.y6d_c01481{bottom:62.640000px;}
.y6a_c01481{bottom:63.360000px;}
.y6e_c01481{bottom:64.080000px;}
.y6b_c01481{bottom:64.800000px;}
.y6c_c01481{bottom:66.240000px;}
.y69_c01481{bottom:66.960000px;}
.y65_c01481{bottom:106.560000px;}
.y64_c01481{bottom:107.280000px;}
.y66_c01481{bottom:108.720000px;}
.y67_c01481{bottom:109.440000px;}
.y68_c01481{bottom:110.160000px;}
.y61_c01481{bottom:149.760000px;}
.y63_c01481{bottom:150.480000px;}
.y60_c01481{bottom:151.920000px;}
.y62_c01481{bottom:152.640000px;}
.y5f_c01481{bottom:153.360000px;}
.y5d_c01481{bottom:192.960000px;}
.y5e_c01481{bottom:193.680000px;}
.y5b_c01481{bottom:195.120000px;}
.y5c_c01481{bottom:195.840000px;}
.y5a_c01481{bottom:196.560000px;}
.y56_c01481{bottom:236.880000px;}
.y57_c01481{bottom:238.320000px;}
.y58_c01481{bottom:239.040000px;}
.y59_c01481{bottom:239.760000px;}
.y55_c01481{bottom:279.360000px;}
.y54_c01481{bottom:282.240000px;}
.y53_c01481{bottom:332.640000px;}
.y50_c01481{bottom:333.360000px;}
.y52_c01481{bottom:334.800000px;}
.y51_c01481{bottom:335.520000px;}
.y4e_c01481{bottom:375.120000px;}
.y4d_c01481{bottom:375.840000px;}
.y4f_c01481{bottom:378.000000px;}
.y4c_c01481{bottom:378.720000px;}
.y4a_c01481{bottom:418.320000px;}
.y49_c01481{bottom:419.040000px;}
.y4b_c01481{bottom:419.760000px;}
.y47_c01481{bottom:421.200000px;}
.y48_c01481{bottom:421.920000px;}
.y43_c01481{bottom:460.800000px;}
.y44_c01481{bottom:461.520000px;}
.y45_c01481{bottom:462.240000px;}
.y42_c01481{bottom:463.680000px;}
.y41_c01481{bottom:464.400000px;}
.y46_c01481{bottom:465.120000px;}
.y40_c01481{bottom:504.000000px;}
.y3f_c01481{bottom:504.720000px;}
.y3d_c01481{bottom:506.880000px;}
.y3e_c01481{bottom:507.600000px;}
.y3a_c01481{bottom:546.480000px;}
.y3c_c01481{bottom:547.200000px;}
.y39_c01481{bottom:549.360000px;}
.y3b_c01481{bottom:550.080000px;}
.y35_c01481{bottom:590.400000px;}
.y38_c01481{bottom:591.840000px;}
.y37_c01481{bottom:592.560000px;}
.y36_c01481{bottom:593.280000px;}
.y33_c01481{bottom:632.160000px;}
.y34_c01481{bottom:634.320000px;}
.y32_c01481{bottom:635.040000px;}
.y31_c01481{bottom:635.760000px;}
.y30_c01481{bottom:675.360000px;}
.y2e_c01481{bottom:677.520000px;}
.y2f_c01481{bottom:678.240000px;}
.y2c_c01481{bottom:717.840000px;}
.y2a_c01481{bottom:718.560000px;}
.y2d_c01481{bottom:720.000000px;}
.y28_c01481{bottom:720.720000px;}
.y29_c01481{bottom:721.440000px;}
.y2b_c01481{bottom:722.160000px;}
.y26_c01481{bottom:761.040000px;}
.y24_c01481{bottom:761.760000px;}
.y27_c01481{bottom:763.200000px;}
.y25_c01481{bottom:763.920000px;}
.y21_c01481{bottom:802.800000px;}
.y20_c01481{bottom:804.240000px;}
.y1e_c01481{bottom:804.960000px;}
.y23_c01481{bottom:805.680000px;}
.y22_c01481{bottom:806.400000px;}
.y1f_c01481{bottom:807.120000px;}
.y1c_c01481{bottom:846.000000px;}
.y1a_c01481{bottom:848.160000px;}
.y1d_c01481{bottom:848.880000px;}
.y1b_c01481{bottom:849.600000px;}
.y19_c01481{bottom:850.320000px;}
.y16_c01481{bottom:889.200000px;}
.y14_c01481{bottom:889.920000px;}
.y17_c01481{bottom:891.360000px;}
.y18_c01481{bottom:892.080000px;}
.y15_c01481{bottom:892.800000px;}
.y13_c01481{bottom:893.520000px;}
.yc_c01481{bottom:943.200000px;}
.y10_c01481{bottom:943.920000px;}
.y12_c01481{bottom:944.640000px;}
.y11_c01481{bottom:945.360000px;}
.yf_c01481{bottom:946.080000px;}
.ye_c01481{bottom:946.800000px;}
.yd_c01481{bottom:947.520000px;}
.ya_c01481{bottom:985.680000px;}
.y8_c01481{bottom:987.120000px;}
.yb_c01481{bottom:987.840000px;}
.y9_c01481{bottom:988.560000px;}
.y7_c01481{bottom:990.000000px;}
.y2_c01481{bottom:1028.880000px;}
.y3_c01481{bottom:1030.320000px;}
.y6_c01481{bottom:1031.040000px;}
.y5_c01481{bottom:1031.760000px;}
.y4_c01481{bottom:1032.480000px;}
.y1_c01481{bottom:1105.920000px;}
.he_c01481{height:28.508906px;}
.h8_c01481{height:31.100625px;}
.hf_c01481{height:33.692344px;}
.hd_c01481{height:38.875781px;}
.h4_c01481{height:41.467500px;}
.h5_c01481{height:44.059219px;}
.h6_c01481{height:46.650937px;}
.hb_c01481{height:49.242656px;}
.ha_c01481{height:51.834375px;}
.h7_c01481{height:54.426094px;}
.h9_c01481{height:57.017812px;}
.h3_c01481{height:59.609531px;}
.hc_c01481{height:62.201250px;}
.h2_c01481{height:67.384687px;}
.h0_c01481{height:1154.880000px;}
.h1_c01481{height:1155.000000px;}
.w1_c01481{width:769.500000px;}
.w0_c01481{width:769.680000px;}
.x0_c01481{left:0.000000px;}
.x2_c01481{left:51.840000px;}
.x3b_c01481{left:53.280000px;}
.x21_c01481{left:73.440000px;}
.x1d_c01481{left:84.240000px;}
.x32_c01481{left:95.040000px;}
.x4e_c01481{left:105.840000px;}
.x22_c01481{left:115.920000px;}
.x33_c01481{left:127.440000px;}
.x26_c01481{left:138.960000px;}
.x23_c01481{left:149.040000px;}
.x44_c01481{left:158.400000px;}
.x11_c01481{left:160.560000px;}
.x3_c01481{left:170.640000px;}
.x36_c01481{left:181.440000px;}
.x15_c01481{left:192.240000px;}
.x41_c01481{left:193.680000px;}
.x45_c01481{left:201.600000px;}
.x1e_c01481{left:203.040000px;}
.xa_c01481{left:213.840000px;}
.x4_c01481{left:225.360000px;}
.x37_c01481{left:234.000000px;}
.x2a_c01481{left:235.440000px;}
.x46_c01481{left:246.960000px;}
.x27_c01481{left:256.320000px;}
.x16_c01481{left:257.760000px;}
.x24_c01481{left:267.840000px;}
.x5_c01481{left:278.640000px;}
.x12_c01481{left:290.160000px;}
.x17_c01481{left:300.240000px;}
.x2b_c01481{left:311.760000px;}
.x6_c01481{left:321.840000px;}
.x3e_c01481{left:333.360000px;}
.x49_c01481{left:334.800000px;}
.x28_c01481{left:344.160000px;}
.x2f_c01481{left:354.240000px;}
.x3f_c01481{left:365.040000px;}
.x38_c01481{left:375.120000px;}
.x1f_c01481{left:376.560000px;}
.x13_c01481{left:386.640000px;}
.xb_c01481{left:397.440000px;}
.x42_c01481{left:398.880000px;}
.x2c_c01481{left:408.240000px;}
.x14_c01481{left:419.760000px;}
.xc_c01481{left:429.840000px;}
.x4c_c01481{left:432.720000px;}
.x29_c01481{left:440.640000px;}
.x7_c01481{left:450.720000px;}
.x3c_c01481{left:462.960000px;}
.xd_c01481{left:472.320000px;}
.x39_c01481{left:473.760000px;}
.x2d_c01481{left:483.840000px;}
.x18_c01481{left:495.360000px;}
.x3a_c01481{left:505.440000px;}
.x47_c01481{left:506.880000px;}
.xe_c01481{left:516.960000px;}
.x19_c01481{left:526.320000px;}
.x8_c01481{left:537.840000px;}
.x25_c01481{left:548.640000px;}
.x4a_c01481{left:550.080000px;}
.x9_c01481{left:560.160000px;}
.x43_c01481{left:570.960000px;}
.x4b_c01481{left:572.400000px;}
.x20_c01481{left:582.480000px;}
.x30_c01481{left:591.840000px;}
.x1a_c01481{left:602.640000px;}
.x3d_c01481{left:604.080000px;}
.xf_c01481{left:613.440000px;}
.x34_c01481{left:624.240000px;}
.x31_c01481{left:625.680000px;}
.x2e_c01481{left:635.040000px;}
.x1b_c01481{left:646.560000px;}
.x4d_c01481{left:648.000000px;}
.x40_c01481{left:655.920000px;}
.x10_c01481{left:657.360000px;}
.x48_c01481{left:658.800000px;}
.x35_c01481{left:667.440000px;}
.x1c_c01481{left:678.960000px;}
.x1_c01481{left:680.400000px;}
@media print{
.v1_c01481{vertical-align:-7.680000pt;}
.v0_c01481{vertical-align:0.000000pt;}
.ls0_c01481{letter-spacing:0.000000pt;}
.ws1_c01481{word-spacing:-4.352213pt;}
.ws2_c01481{word-spacing:0.000000pt;}
.ws0_c01481{word-spacing:51.765504pt;}
.fsc_c01481{font-size:28.160000pt;}
.fs6_c01481{font-size:30.720000pt;}
.fsd_c01481{font-size:33.280000pt;}
.fsb_c01481{font-size:38.400000pt;}
.fs2_c01481{font-size:40.960000pt;}
.fs3_c01481{font-size:43.520000pt;}
.fs4_c01481{font-size:46.080000pt;}
.fs9_c01481{font-size:48.640000pt;}
.fs8_c01481{font-size:51.200000pt;}
.fs5_c01481{font-size:53.760000pt;}
.fs7_c01481{font-size:56.320000pt;}
.fs1_c01481{font-size:58.880000pt;}
.fsa_c01481{font-size:61.440000pt;}
.fs0_c01481{font-size:66.560000pt;}
.y0_c01481{bottom:0.000000pt;}
.y6d_c01481{bottom:55.680000pt;}
.y6a_c01481{bottom:56.320000pt;}
.y6e_c01481{bottom:56.960000pt;}
.y6b_c01481{bottom:57.600000pt;}
.y6c_c01481{bottom:58.880000pt;}
.y69_c01481{bottom:59.520000pt;}
.y65_c01481{bottom:94.720000pt;}
.y64_c01481{bottom:95.360000pt;}
.y66_c01481{bottom:96.640000pt;}
.y67_c01481{bottom:97.280000pt;}
.y68_c01481{bottom:97.920000pt;}
.y61_c01481{bottom:133.120000pt;}
.y63_c01481{bottom:133.760000pt;}
.y60_c01481{bottom:135.040000pt;}
.y62_c01481{bottom:135.680000pt;}
.y5f_c01481{bottom:136.320000pt;}
.y5d_c01481{bottom:171.520000pt;}
.y5e_c01481{bottom:172.160000pt;}
.y5b_c01481{bottom:173.440000pt;}
.y5c_c01481{bottom:174.080000pt;}
.y5a_c01481{bottom:174.720000pt;}
.y56_c01481{bottom:210.560000pt;}
.y57_c01481{bottom:211.840000pt;}
.y58_c01481{bottom:212.480000pt;}
.y59_c01481{bottom:213.120000pt;}
.y55_c01481{bottom:248.320000pt;}
.y54_c01481{bottom:250.880000pt;}
.y53_c01481{bottom:295.680000pt;}
.y50_c01481{bottom:296.320000pt;}
.y52_c01481{bottom:297.600000pt;}
.y51_c01481{bottom:298.240000pt;}
.y4e_c01481{bottom:333.440000pt;}
.y4d_c01481{bottom:334.080000pt;}
.y4f_c01481{bottom:336.000000pt;}
.y4c_c01481{bottom:336.640000pt;}
.y4a_c01481{bottom:371.840000pt;}
.y49_c01481{bottom:372.480000pt;}
.y4b_c01481{bottom:373.120000pt;}
.y47_c01481{bottom:374.400000pt;}
.y48_c01481{bottom:375.040000pt;}
.y43_c01481{bottom:409.600000pt;}
.y44_c01481{bottom:410.240000pt;}
.y45_c01481{bottom:410.880000pt;}
.y42_c01481{bottom:412.160000pt;}
.y41_c01481{bottom:412.800000pt;}
.y46_c01481{bottom:413.440000pt;}
.y40_c01481{bottom:448.000000pt;}
.y3f_c01481{bottom:448.640000pt;}
.y3d_c01481{bottom:450.560000pt;}
.y3e_c01481{bottom:451.200000pt;}
.y3a_c01481{bottom:485.760000pt;}
.y3c_c01481{bottom:486.400000pt;}
.y39_c01481{bottom:488.320000pt;}
.y3b_c01481{bottom:488.960000pt;}
.y35_c01481{bottom:524.800000pt;}
.y38_c01481{bottom:526.080000pt;}
.y37_c01481{bottom:526.720000pt;}
.y36_c01481{bottom:527.360000pt;}
.y33_c01481{bottom:561.920000pt;}
.y34_c01481{bottom:563.840000pt;}
.y32_c01481{bottom:564.480000pt;}
.y31_c01481{bottom:565.120000pt;}
.y30_c01481{bottom:600.320000pt;}
.y2e_c01481{bottom:602.240000pt;}
.y2f_c01481{bottom:602.880000pt;}
.y2c_c01481{bottom:638.080000pt;}
.y2a_c01481{bottom:638.720000pt;}
.y2d_c01481{bottom:640.000000pt;}
.y28_c01481{bottom:640.640000pt;}
.y29_c01481{bottom:641.280000pt;}
.y2b_c01481{bottom:641.920000pt;}
.y26_c01481{bottom:676.480000pt;}
.y24_c01481{bottom:677.120000pt;}
.y27_c01481{bottom:678.400000pt;}
.y25_c01481{bottom:679.040000pt;}
.y21_c01481{bottom:713.600000pt;}
.y20_c01481{bottom:714.880000pt;}
.y1e_c01481{bottom:715.520000pt;}
.y23_c01481{bottom:716.160000pt;}
.y22_c01481{bottom:716.800000pt;}
.y1f_c01481{bottom:717.440000pt;}
.y1c_c01481{bottom:752.000000pt;}
.y1a_c01481{bottom:753.920000pt;}
.y1d_c01481{bottom:754.560000pt;}
.y1b_c01481{bottom:755.200000pt;}
.y19_c01481{bottom:755.840000pt;}
.y16_c01481{bottom:790.400000pt;}
.y14_c01481{bottom:791.040000pt;}
.y17_c01481{bottom:792.320000pt;}
.y18_c01481{bottom:792.960000pt;}
.y15_c01481{bottom:793.600000pt;}
.y13_c01481{bottom:794.240000pt;}
.yc_c01481{bottom:838.400000pt;}
.y10_c01481{bottom:839.040000pt;}
.y12_c01481{bottom:839.680000pt;}
.y11_c01481{bottom:840.320000pt;}
.yf_c01481{bottom:840.960000pt;}
.ye_c01481{bottom:841.600000pt;}
.yd_c01481{bottom:842.240000pt;}
.ya_c01481{bottom:876.160000pt;}
.y8_c01481{bottom:877.440000pt;}
.yb_c01481{bottom:878.080000pt;}
.y9_c01481{bottom:878.720000pt;}
.y7_c01481{bottom:880.000000pt;}
.y2_c01481{bottom:914.560000pt;}
.y3_c01481{bottom:915.840000pt;}
.y6_c01481{bottom:916.480000pt;}
.y5_c01481{bottom:917.120000pt;}
.y4_c01481{bottom:917.760000pt;}
.y1_c01481{bottom:983.040000pt;}
.he_c01481{height:25.341250pt;}
.h8_c01481{height:27.645000pt;}
.hf_c01481{height:29.948750pt;}
.hd_c01481{height:34.556250pt;}
.h4_c01481{height:36.860000pt;}
.h5_c01481{height:39.163750pt;}
.h6_c01481{height:41.467500pt;}
.hb_c01481{height:43.771250pt;}
.ha_c01481{height:46.075000pt;}
.h7_c01481{height:48.378750pt;}
.h9_c01481{height:50.682500pt;}
.h3_c01481{height:52.986250pt;}
.hc_c01481{height:55.290000pt;}
.h2_c01481{height:59.897500pt;}
.h0_c01481{height:1026.560000pt;}
.h1_c01481{height:1026.666667pt;}
.w1_c01481{width:684.000000pt;}
.w0_c01481{width:684.160000pt;}
.x0_c01481{left:0.000000pt;}
.x2_c01481{left:46.080000pt;}
.x3b_c01481{left:47.360000pt;}
.x21_c01481{left:65.280000pt;}
.x1d_c01481{left:74.880000pt;}
.x32_c01481{left:84.480000pt;}
.x4e_c01481{left:94.080000pt;}
.x22_c01481{left:103.040000pt;}
.x33_c01481{left:113.280000pt;}
.x26_c01481{left:123.520000pt;}
.x23_c01481{left:132.480000pt;}
.x44_c01481{left:140.800000pt;}
.x11_c01481{left:142.720000pt;}
.x3_c01481{left:151.680000pt;}
.x36_c01481{left:161.280000pt;}
.x15_c01481{left:170.880000pt;}
.x41_c01481{left:172.160000pt;}
.x45_c01481{left:179.200000pt;}
.x1e_c01481{left:180.480000pt;}
.xa_c01481{left:190.080000pt;}
.x4_c01481{left:200.320000pt;}
.x37_c01481{left:208.000000pt;}
.x2a_c01481{left:209.280000pt;}
.x46_c01481{left:219.520000pt;}
.x27_c01481{left:227.840000pt;}
.x16_c01481{left:229.120000pt;}
.x24_c01481{left:238.080000pt;}
.x5_c01481{left:247.680000pt;}
.x12_c01481{left:257.920000pt;}
.x17_c01481{left:266.880000pt;}
.x2b_c01481{left:277.120000pt;}
.x6_c01481{left:286.080000pt;}
.x3e_c01481{left:296.320000pt;}
.x49_c01481{left:297.600000pt;}
.x28_c01481{left:305.920000pt;}
.x2f_c01481{left:314.880000pt;}
.x3f_c01481{left:324.480000pt;}
.x38_c01481{left:333.440000pt;}
.x1f_c01481{left:334.720000pt;}
.x13_c01481{left:343.680000pt;}
.xb_c01481{left:353.280000pt;}
.x42_c01481{left:354.560000pt;}
.x2c_c01481{left:362.880000pt;}
.x14_c01481{left:373.120000pt;}
.xc_c01481{left:382.080000pt;}
.x4c_c01481{left:384.640000pt;}
.x29_c01481{left:391.680000pt;}
.x7_c01481{left:400.640000pt;}
.x3c_c01481{left:411.520000pt;}
.xd_c01481{left:419.840000pt;}
.x39_c01481{left:421.120000pt;}
.x2d_c01481{left:430.080000pt;}
.x18_c01481{left:440.320000pt;}
.x3a_c01481{left:449.280000pt;}
.x47_c01481{left:450.560000pt;}
.xe_c01481{left:459.520000pt;}
.x19_c01481{left:467.840000pt;}
.x8_c01481{left:478.080000pt;}
.x25_c01481{left:487.680000pt;}
.x4a_c01481{left:488.960000pt;}
.x9_c01481{left:497.920000pt;}
.x43_c01481{left:507.520000pt;}
.x4b_c01481{left:508.800000pt;}
.x20_c01481{left:517.760000pt;}
.x30_c01481{left:526.080000pt;}
.x1a_c01481{left:535.680000pt;}
.x3d_c01481{left:536.960000pt;}
.xf_c01481{left:545.280000pt;}
.x34_c01481{left:554.880000pt;}
.x31_c01481{left:556.160000pt;}
.x2e_c01481{left:564.480000pt;}
.x1b_c01481{left:574.720000pt;}
.x4d_c01481{left:576.000000pt;}
.x40_c01481{left:583.040000pt;}
.x10_c01481{left:584.320000pt;}
.x48_c01481{left:585.600000pt;}
.x35_c01481{left:593.280000pt;}
.x1c_c01481{left:603.520000pt;}
.x1_c01481{left:604.800000pt;}
}





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

.ir_c01482:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01482{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01482;src:url('chunks/assets/font_de73cfd35dddca7ec02f6664.woff2')format("woff");}.ff1_c01482{font-family:ff1_c01482;line-height:1.109863;font-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_c01482{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01482{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01482{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mb_c01482{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mf_c01482{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m34_c01482{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m21_c01482{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m3_c01482{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);}
.m0_c01482{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01482{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m17_c01482{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01482{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m7_c01482{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m24_c01482{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);}
.m25_c01482{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_c01482{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m12_c01482{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);}
.m1b_c01482{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m33_c01482{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);}
.m39_c01482{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m6_c01482{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m30_c01482{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m18_c01482{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m27_c01482{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);}
.m35_c01482{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m38_c01482{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m1_c01482{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);}
.m1e_c01482{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m14_c01482{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m9_c01482{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);}
.m37_c01482{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01482{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.me_c01482{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m19_c01482{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);}
.m22_c01482{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m26_c01482{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m8_c01482{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m29_c01482{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);}
.m2d_c01482{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01482{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m32_c01482{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);}
.m3c_c01482{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01482{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m20_c01482{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m15_c01482{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);}
.m36_c01482{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01482{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);}
.m2_c01482{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m16_c01482{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01482{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);}
.m23_c01482{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m13_c01482{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m10_c01482{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);}
.m11_c01482{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m4_c01482{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m28_c01482{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m5_c01482{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01482{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);}
.m1a_c01482{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.md_c01482{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01482{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);}
.m31_c01482{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01482{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.mc_c01482{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.v0_c01482{vertical-align:0.000000px;}
.ls0_c01482{letter-spacing:0.000000px;}
.sc__c01482{text-shadow:none;}
.sc0_c01482{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01482{-webkit-text-stroke:0px transparent;}
.sc0_c01482{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01482{word-spacing:0.000000px;}
.fc0_c01482{color:transparent;}
.fs4_c01482{font-size:34.560000px;}
.fsa_c01482{font-size:37.440000px;}
.fs2_c01482{font-size:43.200000px;}
.fs7_c01482{font-size:46.080000px;}
.fs1_c01482{font-size:48.960000px;}
.fs6_c01482{font-size:51.840000px;}
.fs5_c01482{font-size:54.720000px;}
.fs9_c01482{font-size:57.600000px;}
.fs3_c01482{font-size:60.480000px;}
.fsb_c01482{font-size:63.360000px;}
.fsc_c01482{font-size:66.240000px;}
.fs8_c01482{font-size:69.120000px;}
.fs0_c01482{font-size:74.880000px;}
.y0_c01482{bottom:0.000000px;}
.y2c_c01482{bottom:635.040000px;}
.y2d_c01482{bottom:636.480000px;}
.y2b_c01482{bottom:637.920000px;}
.y28_c01482{bottom:678.240000px;}
.y29_c01482{bottom:680.400000px;}
.y27_c01482{bottom:681.120000px;}
.y2a_c01482{bottom:681.840000px;}
.y24_c01482{bottom:721.440000px;}
.y23_c01482{bottom:723.600000px;}
.y25_c01482{bottom:724.320000px;}
.y26_c01482{bottom:725.040000px;}
.y22_c01482{bottom:763.920000px;}
.y20_c01482{bottom:766.080000px;}
.y21_c01482{bottom:766.800000px;}
.y1e_c01482{bottom:806.400000px;}
.y1b_c01482{bottom:807.120000px;}
.y1a_c01482{bottom:807.840000px;}
.y1c_c01482{bottom:808.560000px;}
.y1d_c01482{bottom:809.280000px;}
.y1f_c01482{bottom:810.000000px;}
.y17_c01482{bottom:848.880000px;}
.y16_c01482{bottom:849.600000px;}
.y19_c01482{bottom:851.040000px;}
.y15_c01482{bottom:851.760000px;}
.y18_c01482{bottom:852.480000px;}
.y10_c01482{bottom:891.360000px;}
.y13_c01482{bottom:892.080000px;}
.y14_c01482{bottom:892.800000px;}
.y11_c01482{bottom:894.240000px;}
.y12_c01482{bottom:894.960000px;}
.yc_c01482{bottom:934.560000px;}
.ye_c01482{bottom:936.720000px;}
.yd_c01482{bottom:937.440000px;}
.yf_c01482{bottom:938.160000px;}
.ya_c01482{bottom:977.040000px;}
.y8_c01482{bottom:977.760000px;}
.yb_c01482{bottom:979.200000px;}
.y9_c01482{bottom:979.920000px;}
.y7_c01482{bottom:980.640000px;}
.y2_c01482{bottom:1020.240000px;}
.y4_c01482{bottom:1020.960000px;}
.y3_c01482{bottom:1021.680000px;}
.y6_c01482{bottom:1023.120000px;}
.y5_c01482{bottom:1023.840000px;}
.y1_c01482{bottom:1090.800000px;}
.h6_c01482{height:31.100625px;}
.hc_c01482{height:33.692344px;}
.h4_c01482{height:38.875781px;}
.h9_c01482{height:41.467500px;}
.h3_c01482{height:44.059219px;}
.h8_c01482{height:46.650937px;}
.h7_c01482{height:49.242656px;}
.hb_c01482{height:51.834375px;}
.h5_c01482{height:54.426094px;}
.hd_c01482{height:57.017812px;}
.he_c01482{height:59.609531px;}
.ha_c01482{height:62.201250px;}
.h2_c01482{height:67.384687px;}
.h0_c01482{height:1157.760000px;}
.h1_c01482{height:1158.000000px;}
.w0_c01482{width:774.000000px;}
.x0_c01482{left:0.000000px;}
.x2_c01482{left:47.520000px;}
.x1f_c01482{left:48.960000px;}
.x24_c01482{left:59.040000px;}
.xe_c01482{left:80.640000px;}
.x25_c01482{left:91.440000px;}
.x3c_c01482{left:116.640000px;}
.x3_c01482{left:123.120000px;}
.x2e_c01482{left:135.360000px;}
.xf_c01482{left:145.440000px;}
.x20_c01482{left:156.240000px;}
.x4_c01482{left:166.320000px;}
.x2a_c01482{left:177.840000px;}
.x33_c01482{left:187.920000px;}
.x18_c01482{left:189.360000px;}
.x19_c01482{left:211.680000px;}
.x37_c01482{left:222.480000px;}
.x34_c01482{left:231.840000px;}
.x1a_c01482{left:241.920000px;}
.x5_c01482{left:252.720000px;}
.x10_c01482{left:264.240000px;}
.x38_c01482{left:265.680000px;}
.x6_c01482{left:285.120000px;}
.x26_c01482{left:295.920000px;}
.x11_c01482{left:297.360000px;}
.x2b_c01482{left:306.720000px;}
.x2f_c01482{left:308.880000px;}
.x7_c01482{left:317.520000px;}
.x12_c01482{left:329.040000px;}
.x39_c01482{left:340.560000px;}
.x21_c01482{left:360.720000px;}
.x2c_c01482{left:372.240000px;}
.x8_c01482{left:383.040000px;}
.x13_c01482{left:393.120000px;}
.x27_c01482{left:394.560000px;}
.x1b_c01482{left:404.640000px;}
.x9_c01482{left:415.440000px;}
.x3a_c01482{left:426.240000px;}
.x1c_c01482{left:436.320000px;}
.x35_c01482{left:457.920000px;}
.x28_c01482{left:459.360000px;}
.x14_c01482{left:468.720000px;}
.xa_c01482{left:490.320000px;}
.x15_c01482{left:501.840000px;}
.xb_c01482{left:512.640000px;}
.x22_c01482{left:533.520000px;}
.x30_c01482{left:545.760000px;}
.x29_c01482{left:555.120000px;}
.x1d_c01482{left:567.360000px;}
.x16_c01482{left:578.160000px;}
.x3b_c01482{left:589.680000px;}
.x1e_c01482{left:599.040000px;}
.x31_c01482{left:611.280000px;}
.x23_c01482{left:620.640000px;}
.x2d_c01482{left:630.720000px;}
.xc_c01482{left:632.160000px;}
.x32_c01482{left:653.760000px;}
.xd_c01482{left:664.560000px;}
.x1_c01482{left:668.880000px;}
.x17_c01482{left:675.360000px;}
.x36_c01482{left:697.680000px;}
@media print{
.v0_c01482{vertical-align:0.000000pt;}
.ls0_c01482{letter-spacing:0.000000pt;}
.ws0_c01482{word-spacing:0.000000pt;}
.fs4_c01482{font-size:30.720000pt;}
.fsa_c01482{font-size:33.280000pt;}
.fs2_c01482{font-size:38.400000pt;}
.fs7_c01482{font-size:40.960000pt;}
.fs1_c01482{font-size:43.520000pt;}
.fs6_c01482{font-size:46.080000pt;}
.fs5_c01482{font-size:48.640000pt;}
.fs9_c01482{font-size:51.200000pt;}
.fs3_c01482{font-size:53.760000pt;}
.fsb_c01482{font-size:56.320000pt;}
.fsc_c01482{font-size:58.880000pt;}
.fs8_c01482{font-size:61.440000pt;}
.fs0_c01482{font-size:66.560000pt;}
.y0_c01482{bottom:0.000000pt;}
.y2c_c01482{bottom:564.480000pt;}
.y2d_c01482{bottom:565.760000pt;}
.y2b_c01482{bottom:567.040000pt;}
.y28_c01482{bottom:602.880000pt;}
.y29_c01482{bottom:604.800000pt;}
.y27_c01482{bottom:605.440000pt;}
.y2a_c01482{bottom:606.080000pt;}
.y24_c01482{bottom:641.280000pt;}
.y23_c01482{bottom:643.200000pt;}
.y25_c01482{bottom:643.840000pt;}
.y26_c01482{bottom:644.480000pt;}
.y22_c01482{bottom:679.040000pt;}
.y20_c01482{bottom:680.960000pt;}
.y21_c01482{bottom:681.600000pt;}
.y1e_c01482{bottom:716.800000pt;}
.y1b_c01482{bottom:717.440000pt;}
.y1a_c01482{bottom:718.080000pt;}
.y1c_c01482{bottom:718.720000pt;}
.y1d_c01482{bottom:719.360000pt;}
.y1f_c01482{bottom:720.000000pt;}
.y17_c01482{bottom:754.560000pt;}
.y16_c01482{bottom:755.200000pt;}
.y19_c01482{bottom:756.480000pt;}
.y15_c01482{bottom:757.120000pt;}
.y18_c01482{bottom:757.760000pt;}
.y10_c01482{bottom:792.320000pt;}
.y13_c01482{bottom:792.960000pt;}
.y14_c01482{bottom:793.600000pt;}
.y11_c01482{bottom:794.880000pt;}
.y12_c01482{bottom:795.520000pt;}
.yc_c01482{bottom:830.720000pt;}
.ye_c01482{bottom:832.640000pt;}
.yd_c01482{bottom:833.280000pt;}
.yf_c01482{bottom:833.920000pt;}
.ya_c01482{bottom:868.480000pt;}
.y8_c01482{bottom:869.120000pt;}
.yb_c01482{bottom:870.400000pt;}
.y9_c01482{bottom:871.040000pt;}
.y7_c01482{bottom:871.680000pt;}
.y2_c01482{bottom:906.880000pt;}
.y4_c01482{bottom:907.520000pt;}
.y3_c01482{bottom:908.160000pt;}
.y6_c01482{bottom:909.440000pt;}
.y5_c01482{bottom:910.080000pt;}
.y1_c01482{bottom:969.600000pt;}
.h6_c01482{height:27.645000pt;}
.hc_c01482{height:29.948750pt;}
.h4_c01482{height:34.556250pt;}
.h9_c01482{height:36.860000pt;}
.h3_c01482{height:39.163750pt;}
.h8_c01482{height:41.467500pt;}
.h7_c01482{height:43.771250pt;}
.hb_c01482{height:46.075000pt;}
.h5_c01482{height:48.378750pt;}
.hd_c01482{height:50.682500pt;}
.he_c01482{height:52.986250pt;}
.ha_c01482{height:55.290000pt;}
.h2_c01482{height:59.897500pt;}
.h0_c01482{height:1029.120000pt;}
.h1_c01482{height:1029.333333pt;}
.w0_c01482{width:688.000000pt;}
.x0_c01482{left:0.000000pt;}
.x2_c01482{left:42.240000pt;}
.x1f_c01482{left:43.520000pt;}
.x24_c01482{left:52.480000pt;}
.xe_c01482{left:71.680000pt;}
.x25_c01482{left:81.280000pt;}
.x3c_c01482{left:103.680000pt;}
.x3_c01482{left:109.440000pt;}
.x2e_c01482{left:120.320000pt;}
.xf_c01482{left:129.280000pt;}
.x20_c01482{left:138.880000pt;}
.x4_c01482{left:147.840000pt;}
.x2a_c01482{left:158.080000pt;}
.x33_c01482{left:167.040000pt;}
.x18_c01482{left:168.320000pt;}
.x19_c01482{left:188.160000pt;}
.x37_c01482{left:197.760000pt;}
.x34_c01482{left:206.080000pt;}
.x1a_c01482{left:215.040000pt;}
.x5_c01482{left:224.640000pt;}
.x10_c01482{left:234.880000pt;}
.x38_c01482{left:236.160000pt;}
.x6_c01482{left:253.440000pt;}
.x26_c01482{left:263.040000pt;}
.x11_c01482{left:264.320000pt;}
.x2b_c01482{left:272.640000pt;}
.x2f_c01482{left:274.560000pt;}
.x7_c01482{left:282.240000pt;}
.x12_c01482{left:292.480000pt;}
.x39_c01482{left:302.720000pt;}
.x21_c01482{left:320.640000pt;}
.x2c_c01482{left:330.880000pt;}
.x8_c01482{left:340.480000pt;}
.x13_c01482{left:349.440000pt;}
.x27_c01482{left:350.720000pt;}
.x1b_c01482{left:359.680000pt;}
.x9_c01482{left:369.280000pt;}
.x3a_c01482{left:378.880000pt;}
.x1c_c01482{left:387.840000pt;}
.x35_c01482{left:407.040000pt;}
.x28_c01482{left:408.320000pt;}
.x14_c01482{left:416.640000pt;}
.xa_c01482{left:435.840000pt;}
.x15_c01482{left:446.080000pt;}
.xb_c01482{left:455.680000pt;}
.x22_c01482{left:474.240000pt;}
.x30_c01482{left:485.120000pt;}
.x29_c01482{left:493.440000pt;}
.x1d_c01482{left:504.320000pt;}
.x16_c01482{left:513.920000pt;}
.x3b_c01482{left:524.160000pt;}
.x1e_c01482{left:532.480000pt;}
.x31_c01482{left:543.360000pt;}
.x23_c01482{left:551.680000pt;}
.x2d_c01482{left:560.640000pt;}
.xc_c01482{left:561.920000pt;}
.x32_c01482{left:581.120000pt;}
.xd_c01482{left:590.720000pt;}
.x1_c01482{left:594.560000pt;}
.x17_c01482{left:600.320000pt;}
.x36_c01482{left:620.160000pt;}
}





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

.ir_c01483:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01483{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01483;src:url('chunks/assets/font_b99a347a2497ac231a580813.woff2')format("woff");}.ff1_c01483{font-family:ff1_c01483;line-height:1.109863;font-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_c01483{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);}
.m4f_c01483{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.ma_c01483{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01483{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01483{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2_c01483{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m4a_c01483{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m54_c01483{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m36_c01483{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m57_c01483{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01483{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m37_c01483{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);}
.m3b_c01483{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01483{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m12_c01483{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);}
.m3c_c01483{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01483{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);}
.m45_c01483{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m8_c01483{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_c01483{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m24_c01483{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01483{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m38_c01483{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);}
.m31_c01483{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m41_c01483{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m18_c01483{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);}
.m3e_c01483{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_c01483{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m29_c01483{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01483{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m25_c01483{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);}
.m56_c01483{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);}
.m13_c01483{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m7_c01483{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m55_c01483{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);}
.m2a_c01483{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m52_c01483{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m14_c01483{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_c01483{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);}
.m1f_c01483{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01483{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m33_c01483{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);}
.m16_c01483{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m17_c01483{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);}
.mb_c01483{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);}
.m3a_c01483{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m6_c01483{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01483{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m27_c01483{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m40_c01483{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);}
.m50_c01483{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m21_c01483{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m15_c01483{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);}
.m58_c01483{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01483{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.md_c01483{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.mc_c01483{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m22_c01483{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m53_c01483{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);}
.m3d_c01483{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);}
.me_c01483{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m23_c01483{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m51_c01483{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m34_c01483{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);}
.m1_c01483{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01483{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.mf_c01483{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m26_c01483{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);}
.m4e_c01483{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m9_c01483{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m43_c01483{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m30_c01483{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);}
.m4d_c01483{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01483{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);}
.m49_c01483{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m47_c01483{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m39_c01483{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m4_c01483{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m32_c01483{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m46_c01483{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m3_c01483{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m44_c01483{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m28_c01483{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);}
.m42_c01483{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);}
.m35_c01483{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m20_c01483{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m48_c01483{transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01483{transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);}
.m19_c01483{transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);}
.v0_c01483{vertical-align:0.000000px;}
.ls0_c01483{letter-spacing:0.000000px;}
.sc__c01483{text-shadow:none;}
.sc0_c01483{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01483{-webkit-text-stroke:0px transparent;}
.sc0_c01483{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01483{word-spacing:-0.345511px;}
.ws1_c01483{word-spacing:0.000000px;}
.fc0_c01483{color:transparent;}
.fs8_c01483{font-size:17.280000px;}
.fs2_c01483{font-size:34.560000px;}
.fsc_c01483{font-size:37.440000px;}
.fs10_c01483{font-size:40.320000px;}
.fsd_c01483{font-size:43.200000px;}
.fs6_c01483{font-size:46.080000px;}
.fs1_c01483{font-size:48.960000px;}
.fs3_c01483{font-size:51.840000px;}
.fs9_c01483{font-size:54.720000px;}
.fsb_c01483{font-size:57.600000px;}
.fs7_c01483{font-size:60.480000px;}
.fsa_c01483{font-size:63.360000px;}
.fse_c01483{font-size:66.240000px;}
.fs5_c01483{font-size:69.120000px;}
.fsf_c01483{font-size:72.000000px;}
.fs0_c01483{font-size:74.880000px;}
.fs4_c01483{font-size:77.760000px;}
.y0_c01483{bottom:0.000000px;}
.y60_c01483{bottom:95.760000px;}
.y5f_c01483{bottom:97.200000px;}
.y5d_c01483{bottom:136.800000px;}
.y5c_c01483{bottom:138.240000px;}
.y5a_c01483{bottom:138.960000px;}
.y5b_c01483{bottom:139.680000px;}
.y59_c01483{bottom:140.400000px;}
.y5e_c01483{bottom:141.120000px;}
.y55_c01483{bottom:180.720000px;}
.y58_c01483{bottom:181.440000px;}
.y56_c01483{bottom:182.160000px;}
.y54_c01483{bottom:182.880000px;}
.y57_c01483{bottom:183.600000px;}
.y53_c01483{bottom:184.320000px;}
.y4c_c01483{bottom:222.480000px;}
.y4d_c01483{bottom:223.200000px;}
.y50_c01483{bottom:223.920000px;}
.y52_c01483{bottom:224.640000px;}
.y4e_c01483{bottom:226.080000px;}
.y4f_c01483{bottom:226.800000px;}
.y51_c01483{bottom:227.520000px;}
.y4b_c01483{bottom:267.840000px;}
.y49_c01483{bottom:268.560000px;}
.y48_c01483{bottom:269.280000px;}
.y4a_c01483{bottom:270.000000px;}
.y46_c01483{bottom:309.600000px;}
.y45_c01483{bottom:311.760000px;}
.y44_c01483{bottom:312.480000px;}
.y47_c01483{bottom:313.200000px;}
.y41_c01483{bottom:352.800000px;}
.y40_c01483{bottom:354.960000px;}
.y42_c01483{bottom:355.680000px;}
.y43_c01483{bottom:356.400000px;}
.y3e_c01483{bottom:406.080000px;}
.y3f_c01483{bottom:406.800000px;}
.y3d_c01483{bottom:408.960000px;}
.y3b_c01483{bottom:449.280000px;}
.y3a_c01483{bottom:451.440000px;}
.y3c_c01483{bottom:452.160000px;}
.y38_c01483{bottom:491.760000px;}
.y36_c01483{bottom:494.640000px;}
.y37_c01483{bottom:495.360000px;}
.y39_c01483{bottom:496.080000px;}
.y34_c01483{bottom:537.840000px;}
.y35_c01483{bottom:538.560000px;}
.y33_c01483{bottom:578.160000px;}
.y32_c01483{bottom:578.880000px;}
.y31_c01483{bottom:581.040000px;}
.y2d_c01483{bottom:632.160000px;}
.y2e_c01483{bottom:632.880000px;}
.y30_c01483{bottom:634.320000px;}
.y2c_c01483{bottom:635.040000px;}
.y2f_c01483{bottom:635.760000px;}
.y29_c01483{bottom:675.360000px;}
.y2b_c01483{bottom:676.080000px;}
.y2a_c01483{bottom:677.520000px;}
.y28_c01483{bottom:678.240000px;}
.y24_c01483{bottom:717.840000px;}
.y27_c01483{bottom:719.280000px;}
.y25_c01483{bottom:720.720000px;}
.y26_c01483{bottom:721.440000px;}
.y23_c01483{bottom:761.040000px;}
.y22_c01483{bottom:761.760000px;}
.y21_c01483{bottom:763.200000px;}
.y1f_c01483{bottom:763.920000px;}
.y20_c01483{bottom:764.640000px;}
.y1a_c01483{bottom:804.240000px;}
.y1c_c01483{bottom:804.960000px;}
.y1e_c01483{bottom:805.680000px;}
.y1d_c01483{bottom:806.400000px;}
.y19_c01483{bottom:807.120000px;}
.y1b_c01483{bottom:807.840000px;}
.y18_c01483{bottom:846.000000px;}
.y16_c01483{bottom:846.720000px;}
.y17_c01483{bottom:848.880000px;}
.y14_c01483{bottom:849.600000px;}
.y15_c01483{bottom:850.320000px;}
.y13_c01483{bottom:889.200000px;}
.y10_c01483{bottom:889.920000px;}
.y12_c01483{bottom:891.360000px;}
.y11_c01483{bottom:892.080000px;}
.yd_c01483{bottom:931.680000px;}
.yb_c01483{bottom:933.120000px;}
.ye_c01483{bottom:934.560000px;}
.yc_c01483{bottom:935.280000px;}
.ya_c01483{bottom:936.000000px;}
.yf_c01483{bottom:937.440000px;}
.y8_c01483{bottom:974.880000px;}
.y6_c01483{bottom:975.600000px;}
.y9_c01483{bottom:977.760000px;}
.y7_c01483{bottom:978.480000px;}
.y5_c01483{bottom:979.200000px;}
.y3_c01483{bottom:1026.000000px;}
.y4_c01483{bottom:1031.040000px;}
.y2_c01483{bottom:1031.760000px;}
.y1_c01483{bottom:1110.960000px;}
.ha_c01483{height:15.550313px;}
.h4_c01483{height:31.100625px;}
.he_c01483{height:33.692344px;}
.h12_c01483{height:36.284062px;}
.hf_c01483{height:38.875781px;}
.h8_c01483{height:41.467500px;}
.h3_c01483{height:44.059219px;}
.h5_c01483{height:46.650937px;}
.hb_c01483{height:49.242656px;}
.hd_c01483{height:51.834375px;}
.h9_c01483{height:54.426094px;}
.hc_c01483{height:57.017812px;}
.h10_c01483{height:59.609531px;}
.h7_c01483{height:62.201250px;}
.h11_c01483{height:64.792969px;}
.h2_c01483{height:67.384687px;}
.h6_c01483{height:69.976406px;}
.h0_c01483{height:1157.760000px;}
.h1_c01483{height:1158.000000px;}
.w0_c01483{width:774.000000px;}
.x0_c01483{left:0.000000px;}
.xf_c01483{left:46.800000px;}
.x16_c01483{left:48.240000px;}
.x48_c01483{left:49.680000px;}
.x49_c01483{left:69.120000px;}
.x40_c01483{left:79.920000px;}
.x31_c01483{left:89.280000px;}
.x34_c01483{left:90.720000px;}
.x2c_c01483{left:101.520000px;}
.x20_c01483{left:112.320000px;}
.x10_c01483{left:123.120000px;}
.x2d_c01483{left:131.760000px;}
.x1a_c01483{left:133.920000px;}
.x4b_c01483{left:144.720000px;}
.x8_c01483{left:155.520000px;}
.x2_c01483{left:166.320000px;}
.x1b_c01483{left:177.120000px;}
.x9_c01483{left:187.200000px;}
.x21_c01483{left:188.640000px;}
.x41_c01483{left:191.520000px;}
.x11_c01483{left:199.440000px;}
.x3f_c01483{left:210.240000px;}
.x1c_c01483{left:220.320000px;}
.x3_c01483{left:231.120000px;}
.x39_c01483{left:241.920000px;}
.x43_c01483{left:243.360000px;}
.x47_c01483{left:253.440000px;}
.x38_c01483{left:263.520000px;}
.x17_c01483{left:274.320000px;}
.xa_c01483{left:285.840000px;}
.x4c_c01483{left:295.920000px;}
.x1d_c01483{left:307.440000px;}
.x42_c01483{left:310.320000px;}
.x12_c01483{left:317.520000px;}
.x4d_c01483{left:319.680000px;}
.x22_c01483{left:328.320000px;}
.x4_c01483{left:339.120000px;}
.x45_c01483{left:340.560000px;}
.x29_c01483{left:349.920000px;}
.xb_c01483{left:359.280000px;}
.x2e_c01483{left:360.720000px;}
.x5_c01483{left:371.520000px;}
.x35_c01483{left:372.960000px;}
.x23_c01483{left:382.320000px;}
.x2a_c01483{left:393.120000px;}
.x6_c01483{left:403.920000px;}
.x3a_c01483{left:405.360000px;}
.x24_c01483{left:414.720000px;}
.x13_c01483{left:426.240000px;}
.x1e_c01483{left:435.600000px;}
.x4a_c01483{left:447.840000px;}
.x25_c01483{left:457.200000px;}
.x4e_c01483{left:458.640000px;}
.x2f_c01483{left:469.440000px;}
.x7_c01483{left:478.080000px;}
.xc_c01483{left:479.520000px;}
.x32_c01483{left:480.960000px;}
.x2b_c01483{left:489.600000px;}
.xd_c01483{left:501.120000px;}
.x36_c01483{left:502.560000px;}
.x37_c01483{left:522.720000px;}
.x18_c01483{left:533.520000px;}
.x30_c01483{left:544.320000px;}
.x3b_c01483{left:556.560000px;}
.x19_c01483{left:565.920000px;}
.x26_c01483{left:577.440000px;}
.x33_c01483{left:588.240000px;}
.x44_c01483{left:598.320000px;}
.x14_c01483{left:599.760000px;}
.xe_c01483{left:609.120000px;}
.x4f_c01483{left:622.080000px;}
.x27_c01483{left:630.720000px;}
.x3c_c01483{left:632.880000px;}
.x3e_c01483{left:641.520000px;}
.x1f_c01483{left:642.960000px;}
.x46_c01483{left:653.760000px;}
.x3d_c01483{left:663.840000px;}
.x1_c01483{left:673.920000px;}
.x28_c01483{left:686.160000px;}
.x15_c01483{left:696.240000px;}
@media print{
.v0_c01483{vertical-align:0.000000pt;}
.ls0_c01483{letter-spacing:0.000000pt;}
.ws0_c01483{word-spacing:-0.307121pt;}
.ws1_c01483{word-spacing:0.000000pt;}
.fs8_c01483{font-size:15.360000pt;}
.fs2_c01483{font-size:30.720000pt;}
.fsc_c01483{font-size:33.280000pt;}
.fs10_c01483{font-size:35.840000pt;}
.fsd_c01483{font-size:38.400000pt;}
.fs6_c01483{font-size:40.960000pt;}
.fs1_c01483{font-size:43.520000pt;}
.fs3_c01483{font-size:46.080000pt;}
.fs9_c01483{font-size:48.640000pt;}
.fsb_c01483{font-size:51.200000pt;}
.fs7_c01483{font-size:53.760000pt;}
.fsa_c01483{font-size:56.320000pt;}
.fse_c01483{font-size:58.880000pt;}
.fs5_c01483{font-size:61.440000pt;}
.fsf_c01483{font-size:64.000000pt;}
.fs0_c01483{font-size:66.560000pt;}
.fs4_c01483{font-size:69.120000pt;}
.y0_c01483{bottom:0.000000pt;}
.y60_c01483{bottom:85.120000pt;}
.y5f_c01483{bottom:86.400000pt;}
.y5d_c01483{bottom:121.600000pt;}
.y5c_c01483{bottom:122.880000pt;}
.y5a_c01483{bottom:123.520000pt;}
.y5b_c01483{bottom:124.160000pt;}
.y59_c01483{bottom:124.800000pt;}
.y5e_c01483{bottom:125.440000pt;}
.y55_c01483{bottom:160.640000pt;}
.y58_c01483{bottom:161.280000pt;}
.y56_c01483{bottom:161.920000pt;}
.y54_c01483{bottom:162.560000pt;}
.y57_c01483{bottom:163.200000pt;}
.y53_c01483{bottom:163.840000pt;}
.y4c_c01483{bottom:197.760000pt;}
.y4d_c01483{bottom:198.400000pt;}
.y50_c01483{bottom:199.040000pt;}
.y52_c01483{bottom:199.680000pt;}
.y4e_c01483{bottom:200.960000pt;}
.y4f_c01483{bottom:201.600000pt;}
.y51_c01483{bottom:202.240000pt;}
.y4b_c01483{bottom:238.080000pt;}
.y49_c01483{bottom:238.720000pt;}
.y48_c01483{bottom:239.360000pt;}
.y4a_c01483{bottom:240.000000pt;}
.y46_c01483{bottom:275.200000pt;}
.y45_c01483{bottom:277.120000pt;}
.y44_c01483{bottom:277.760000pt;}
.y47_c01483{bottom:278.400000pt;}
.y41_c01483{bottom:313.600000pt;}
.y40_c01483{bottom:315.520000pt;}
.y42_c01483{bottom:316.160000pt;}
.y43_c01483{bottom:316.800000pt;}
.y3e_c01483{bottom:360.960000pt;}
.y3f_c01483{bottom:361.600000pt;}
.y3d_c01483{bottom:363.520000pt;}
.y3b_c01483{bottom:399.360000pt;}
.y3a_c01483{bottom:401.280000pt;}
.y3c_c01483{bottom:401.920000pt;}
.y38_c01483{bottom:437.120000pt;}
.y36_c01483{bottom:439.680000pt;}
.y37_c01483{bottom:440.320000pt;}
.y39_c01483{bottom:440.960000pt;}
.y34_c01483{bottom:478.080000pt;}
.y35_c01483{bottom:478.720000pt;}
.y33_c01483{bottom:513.920000pt;}
.y32_c01483{bottom:514.560000pt;}
.y31_c01483{bottom:516.480000pt;}
.y2d_c01483{bottom:561.920000pt;}
.y2e_c01483{bottom:562.560000pt;}
.y30_c01483{bottom:563.840000pt;}
.y2c_c01483{bottom:564.480000pt;}
.y2f_c01483{bottom:565.120000pt;}
.y29_c01483{bottom:600.320000pt;}
.y2b_c01483{bottom:600.960000pt;}
.y2a_c01483{bottom:602.240000pt;}
.y28_c01483{bottom:602.880000pt;}
.y24_c01483{bottom:638.080000pt;}
.y27_c01483{bottom:639.360000pt;}
.y25_c01483{bottom:640.640000pt;}
.y26_c01483{bottom:641.280000pt;}
.y23_c01483{bottom:676.480000pt;}
.y22_c01483{bottom:677.120000pt;}
.y21_c01483{bottom:678.400000pt;}
.y1f_c01483{bottom:679.040000pt;}
.y20_c01483{bottom:679.680000pt;}
.y1a_c01483{bottom:714.880000pt;}
.y1c_c01483{bottom:715.520000pt;}
.y1e_c01483{bottom:716.160000pt;}
.y1d_c01483{bottom:716.800000pt;}
.y19_c01483{bottom:717.440000pt;}
.y1b_c01483{bottom:718.080000pt;}
.y18_c01483{bottom:752.000000pt;}
.y16_c01483{bottom:752.640000pt;}
.y17_c01483{bottom:754.560000pt;}
.y14_c01483{bottom:755.200000pt;}
.y15_c01483{bottom:755.840000pt;}
.y13_c01483{bottom:790.400000pt;}
.y10_c01483{bottom:791.040000pt;}
.y12_c01483{bottom:792.320000pt;}
.y11_c01483{bottom:792.960000pt;}
.yd_c01483{bottom:828.160000pt;}
.yb_c01483{bottom:829.440000pt;}
.ye_c01483{bottom:830.720000pt;}
.yc_c01483{bottom:831.360000pt;}
.ya_c01483{bottom:832.000000pt;}
.yf_c01483{bottom:833.280000pt;}
.y8_c01483{bottom:866.560000pt;}
.y6_c01483{bottom:867.200000pt;}
.y9_c01483{bottom:869.120000pt;}
.y7_c01483{bottom:869.760000pt;}
.y5_c01483{bottom:870.400000pt;}
.y3_c01483{bottom:912.000000pt;}
.y4_c01483{bottom:916.480000pt;}
.y2_c01483{bottom:917.120000pt;}
.y1_c01483{bottom:987.520000pt;}
.ha_c01483{height:13.822500pt;}
.h4_c01483{height:27.645000pt;}
.he_c01483{height:29.948750pt;}
.h12_c01483{height:32.252500pt;}
.hf_c01483{height:34.556250pt;}
.h8_c01483{height:36.860000pt;}
.h3_c01483{height:39.163750pt;}
.h5_c01483{height:41.467500pt;}
.hb_c01483{height:43.771250pt;}
.hd_c01483{height:46.075000pt;}
.h9_c01483{height:48.378750pt;}
.hc_c01483{height:50.682500pt;}
.h10_c01483{height:52.986250pt;}
.h7_c01483{height:55.290000pt;}
.h11_c01483{height:57.593750pt;}
.h2_c01483{height:59.897500pt;}
.h6_c01483{height:62.201250pt;}
.h0_c01483{height:1029.120000pt;}
.h1_c01483{height:1029.333333pt;}
.w0_c01483{width:688.000000pt;}
.x0_c01483{left:0.000000pt;}
.xf_c01483{left:41.600000pt;}
.x16_c01483{left:42.880000pt;}
.x48_c01483{left:44.160000pt;}
.x49_c01483{left:61.440000pt;}
.x40_c01483{left:71.040000pt;}
.x31_c01483{left:79.360000pt;}
.x34_c01483{left:80.640000pt;}
.x2c_c01483{left:90.240000pt;}
.x20_c01483{left:99.840000pt;}
.x10_c01483{left:109.440000pt;}
.x2d_c01483{left:117.120000pt;}
.x1a_c01483{left:119.040000pt;}
.x4b_c01483{left:128.640000pt;}
.x8_c01483{left:138.240000pt;}
.x2_c01483{left:147.840000pt;}
.x1b_c01483{left:157.440000pt;}
.x9_c01483{left:166.400000pt;}
.x21_c01483{left:167.680000pt;}
.x41_c01483{left:170.240000pt;}
.x11_c01483{left:177.280000pt;}
.x3f_c01483{left:186.880000pt;}
.x1c_c01483{left:195.840000pt;}
.x3_c01483{left:205.440000pt;}
.x39_c01483{left:215.040000pt;}
.x43_c01483{left:216.320000pt;}
.x47_c01483{left:225.280000pt;}
.x38_c01483{left:234.240000pt;}
.x17_c01483{left:243.840000pt;}
.xa_c01483{left:254.080000pt;}
.x4c_c01483{left:263.040000pt;}
.x1d_c01483{left:273.280000pt;}
.x42_c01483{left:275.840000pt;}
.x12_c01483{left:282.240000pt;}
.x4d_c01483{left:284.160000pt;}
.x22_c01483{left:291.840000pt;}
.x4_c01483{left:301.440000pt;}
.x45_c01483{left:302.720000pt;}
.x29_c01483{left:311.040000pt;}
.xb_c01483{left:319.360000pt;}
.x2e_c01483{left:320.640000pt;}
.x5_c01483{left:330.240000pt;}
.x35_c01483{left:331.520000pt;}
.x23_c01483{left:339.840000pt;}
.x2a_c01483{left:349.440000pt;}
.x6_c01483{left:359.040000pt;}
.x3a_c01483{left:360.320000pt;}
.x24_c01483{left:368.640000pt;}
.x13_c01483{left:378.880000pt;}
.x1e_c01483{left:387.200000pt;}
.x4a_c01483{left:398.080000pt;}
.x25_c01483{left:406.400000pt;}
.x4e_c01483{left:407.680000pt;}
.x2f_c01483{left:417.280000pt;}
.x7_c01483{left:424.960000pt;}
.xc_c01483{left:426.240000pt;}
.x32_c01483{left:427.520000pt;}
.x2b_c01483{left:435.200000pt;}
.xd_c01483{left:445.440000pt;}
.x36_c01483{left:446.720000pt;}
.x37_c01483{left:464.640000pt;}
.x18_c01483{left:474.240000pt;}
.x30_c01483{left:483.840000pt;}
.x3b_c01483{left:494.720000pt;}
.x19_c01483{left:503.040000pt;}
.x26_c01483{left:513.280000pt;}
.x33_c01483{left:522.880000pt;}
.x44_c01483{left:531.840000pt;}
.x14_c01483{left:533.120000pt;}
.xe_c01483{left:541.440000pt;}
.x4f_c01483{left:552.960000pt;}
.x27_c01483{left:560.640000pt;}
.x3c_c01483{left:562.560000pt;}
.x3e_c01483{left:570.240000pt;}
.x1f_c01483{left:571.520000pt;}
.x46_c01483{left:581.120000pt;}
.x3d_c01483{left:590.080000pt;}
.x1_c01483{left:599.040000pt;}
.x28_c01483{left:609.920000pt;}
.x15_c01483{left:618.880000pt;}
}





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

.ir_c01484:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01484{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01484;src:url('chunks/assets/font_eafbbd3d2e2894040630b0dd.woff2')format("woff");}.ff1_c01484{font-family:ff1_c01484;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4c_c01484{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m4_c01484{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);}
.m4d_c01484{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);}
.m52_c01484{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);}
.m48_c01484{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01484{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m59_c01484{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m3_c01484{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m30_c01484{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m4e_c01484{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01484{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01484{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m10_c01484{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m5e_c01484{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m21_c01484{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);}
.m23_c01484{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_c01484{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_c01484{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m42_c01484{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);}
.m2c_c01484{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m13_c01484{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);}
.m31_c01484{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m16_c01484{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m0_c01484{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m55_c01484{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m5d_c01484{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m41_c01484{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01484{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.mf_c01484{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);}
.m14_c01484{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);}
.m38_c01484{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m24_c01484{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);}
.m2e_c01484{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01484{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);}
.ma_c01484{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);}
.m39_c01484{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01484{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m9_c01484{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m1_c01484{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m28_c01484{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m22_c01484{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m51_c01484{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);}
.m35_c01484{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m47_c01484{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m29_c01484{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);}
.m25_c01484{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m17_c01484{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m2_c01484{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);}
.m40_c01484{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01484{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);}
.m37_c01484{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01484{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m50_c01484{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m20_c01484{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m5_c01484{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);}
.m36_c01484{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m56_c01484{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01484{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);}
.m7_c01484{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01484{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m18_c01484{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01484{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m34_c01484{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m12_c01484{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);}
.m27_c01484{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);}
.m8_c01484{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01484{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.mc_c01484{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);}
.m53_c01484{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m46_c01484{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01484{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m57_c01484{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);}
.md_c01484{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m32_c01484{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m49_c01484{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m5b_c01484{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m6_c01484{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m33_c01484{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);}
.m3b_c01484{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m5a_c01484{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);}
.m2f_c01484{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m44_c01484{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m26_c01484{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01484{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m43_c01484{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);}
.mb_c01484{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);}
.m15_c01484{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);}
.m5c_c01484{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.me_c01484{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m45_c01484{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01484{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);}
.m54_c01484{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);}
.m4f_c01484{transform:matrix(1.027500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.027500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.027500,0.000000,0.000000,0.250000,0,0);}
.m58_c01484{transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01484{transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);}
.v0_c01484{vertical-align:0.000000px;}
.v1_c01484{vertical-align:2.880000px;}
.ls0_c01484{letter-spacing:0.000000px;}
.sc__c01484{text-shadow:none;}
.sc0_c01484{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01484{-webkit-text-stroke:0px transparent;}
.sc0_c01484{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01484{word-spacing:-3.981120px;}
.ws2_c01484{word-spacing:0.000000px;}
.ws1_c01484{word-spacing:4.357670px;}
.fc0_c01484{color:transparent;}
.fsc_c01484{font-size:17.280000px;}
.fsf_c01484{font-size:23.040000px;}
.fs7_c01484{font-size:34.560000px;}
.fs3_c01484{font-size:37.440000px;}
.fs6_c01484{font-size:40.320000px;}
.fse_c01484{font-size:43.200000px;}
.fs8_c01484{font-size:46.080000px;}
.fs1_c01484{font-size:48.960000px;}
.fs4_c01484{font-size:51.840000px;}
.fs5_c01484{font-size:54.720000px;}
.fsd_c01484{font-size:57.600000px;}
.fs2_c01484{font-size:60.480000px;}
.fsa_c01484{font-size:63.360000px;}
.fs9_c01484{font-size:66.240000px;}
.fsb_c01484{font-size:69.120000px;}
.fs10_c01484{font-size:72.000000px;}
.fs0_c01484{font-size:74.880000px;}
.y0_c01484{bottom:0.000000px;}
.y57_c01484{bottom:94.320000px;}
.y58_c01484{bottom:95.760000px;}
.y5a_c01484{bottom:96.480000px;}
.y56_c01484{bottom:97.200000px;}
.y55_c01484{bottom:97.920000px;}
.y59_c01484{bottom:98.640000px;}
.y53_c01484{bottom:138.240000px;}
.y54_c01484{bottom:138.960000px;}
.y51_c01484{bottom:140.400000px;}
.y50_c01484{bottom:141.120000px;}
.y52_c01484{bottom:141.840000px;}
.y4e_c01484{bottom:181.440000px;}
.y4c_c01484{bottom:183.600000px;}
.y4d_c01484{bottom:184.320000px;}
.y4f_c01484{bottom:185.040000px;}
.y4b_c01484{bottom:237.600000px;}
.y4a_c01484{bottom:278.640000px;}
.y47_c01484{bottom:280.080000px;}
.y46_c01484{bottom:280.800000px;}
.y48_c01484{bottom:281.520000px;}
.y49_c01484{bottom:283.680000px;}
.y41_c01484{bottom:321.120000px;}
.y42_c01484{bottom:321.840000px;}
.y45_c01484{bottom:322.560000px;}
.y43_c01484{bottom:324.000000px;}
.y44_c01484{bottom:324.720000px;}
.y3e_c01484{bottom:364.320000px;}
.y3d_c01484{bottom:366.480000px;}
.y3c_c01484{bottom:367.200000px;}
.y3f_c01484{bottom:367.920000px;}
.y40_c01484{bottom:368.640000px;}
.y37_c01484{bottom:407.520000px;}
.y39_c01484{bottom:408.240000px;}
.y3a_c01484{bottom:408.960000px;}
.y38_c01484{bottom:410.400000px;}
.y3b_c01484{bottom:411.120000px;}
.y35_c01484{bottom:450.720000px;}
.y36_c01484{bottom:451.440000px;}
.y34_c01484{bottom:453.600000px;}
.y33_c01484{bottom:454.320000px;}
.y32_c01484{bottom:493.200000px;}
.y30_c01484{bottom:493.920000px;}
.y31_c01484{bottom:494.640000px;}
.y2f_c01484{bottom:496.800000px;}
.y2e_c01484{bottom:537.120000px;}
.y2d_c01484{bottom:537.840000px;}
.y2c_c01484{bottom:540.000000px;}
.y2a_c01484{bottom:580.320000px;}
.y2b_c01484{bottom:581.040000px;}
.y28_c01484{bottom:582.480000px;}
.y29_c01484{bottom:583.200000px;}
.y27_c01484{bottom:623.520000px;}
.y26_c01484{bottom:624.960000px;}
.y25_c01484{bottom:625.680000px;}
.y24_c01484{bottom:676.800000px;}
.y22_c01484{bottom:719.280000px;}
.y21_c01484{bottom:720.000000px;}
.y23_c01484{bottom:721.440000px;}
.y20_c01484{bottom:722.160000px;}
.y1d_c01484{bottom:761.760000px;}
.y1f_c01484{bottom:762.480000px;}
.y1c_c01484{bottom:764.640000px;}
.y1e_c01484{bottom:765.360000px;}
.y1b_c01484{bottom:805.680000px;}
.y19_c01484{bottom:807.840000px;}
.y1a_c01484{bottom:808.560000px;}
.y18_c01484{bottom:848.160000px;}
.y16_c01484{bottom:848.880000px;}
.y17_c01484{bottom:851.040000px;}
.y15_c01484{bottom:851.760000px;}
.y14_c01484{bottom:891.360000px;}
.y13_c01484{bottom:892.080000px;}
.y11_c01484{bottom:892.800000px;}
.y10_c01484{bottom:894.240000px;}
.y12_c01484{bottom:894.960000px;}
.yd_c01484{bottom:934.560000px;}
.yb_c01484{bottom:935.280000px;}
.ye_c01484{bottom:937.440000px;}
.yc_c01484{bottom:938.160000px;}
.yf_c01484{bottom:939.600000px;}
.ya_c01484{bottom:977.040000px;}
.y6_c01484{bottom:977.760000px;}
.y9_c01484{bottom:979.920000px;}
.y8_c01484{bottom:980.640000px;}
.y7_c01484{bottom:981.360000px;}
.y3_c01484{bottom:1021.680000px;}
.y5_c01484{bottom:1023.120000px;}
.y4_c01484{bottom:1023.840000px;}
.y2_c01484{bottom:1024.560000px;}
.y1_c01484{bottom:1095.120000px;}
.he_c01484{height:15.550313px;}
.h12_c01484{height:20.733750px;}
.h9_c01484{height:31.100625px;}
.h5_c01484{height:33.692344px;}
.h8_c01484{height:36.284062px;}
.h11_c01484{height:38.875781px;}
.ha_c01484{height:41.467500px;}
.h3_c01484{height:44.059219px;}
.h6_c01484{height:46.650937px;}
.h7_c01484{height:49.242656px;}
.h10_c01484{height:49.530938px;}
.hf_c01484{height:51.834375px;}
.h4_c01484{height:54.426094px;}
.hc_c01484{height:57.017812px;}
.hb_c01484{height:59.609531px;}
.hd_c01484{height:62.201250px;}
.h13_c01484{height:64.792969px;}
.h2_c01484{height:67.384687px;}
.h0_c01484{height:1157.760000px;}
.h1_c01484{height:1158.000000px;}
.w0_c01484{width:763.200000px;}
.w1_c01484{width:763.500000px;}
.x0_c01484{left:0.000000px;}
.x1c_c01484{left:38.880000px;}
.xb_c01484{left:40.320000px;}
.x32_c01484{left:41.760000px;}
.x25_c01484{left:72.720000px;}
.x37_c01484{left:82.800000px;}
.xc_c01484{left:84.240000px;}
.x48_c01484{left:104.400000px;}
.x44_c01484{left:105.840000px;}
.xd_c01484{left:116.640000px;}
.x2d_c01484{left:126.000000px;}
.x1d_c01484{left:138.240000px;}
.x29_c01484{left:146.880000px;}
.x2_c01484{left:148.320000px;}
.x16_c01484{left:169.200000px;}
.x27_c01484{left:170.640000px;}
.x3_c01484{left:180.720000px;}
.x30_c01484{left:191.520000px;}
.x17_c01484{left:202.320000px;}
.x41_c01484{left:203.760000px;}
.xe_c01484{left:213.840000px;}
.x3c_c01484{left:224.640000px;}
.x3d_c01484{left:234.720000px;}
.xf_c01484{left:244.800000px;}
.x1e_c01484{left:246.240000px;}
.x3a_c01484{left:257.040000px;}
.x1f_c01484{left:267.120000px;}
.x10_c01484{left:277.920000px;}
.x33_c01484{left:279.360000px;}
.x4_c01484{left:289.440000px;}
.x34_c01484{left:299.520000px;}
.x20_c01484{left:311.040000px;}
.x11_c01484{left:321.840000px;}
.x3f_c01484{left:332.640000px;}
.x18_c01484{left:342.720000px;}
.x38_c01484{left:352.800000px;}
.x21_c01484{left:354.240000px;}
.x31_c01484{left:365.040000px;}
.x19_c01484{left:375.840000px;}
.x3b_c01484{left:386.640000px;}
.x2e_c01484{left:395.280000px;}
.x12_c01484{left:397.440000px;}
.x5_c01484{left:408.240000px;}
.x42_c01484{left:419.760000px;}
.x40_c01484{left:429.840000px;}
.x22_c01484{left:451.440000px;}
.x6_c01484{left:462.240000px;}
.x23_c01484{left:472.320000px;}
.x7_c01484{left:483.840000px;}
.x1a_c01484{left:493.920000px;}
.x24_c01484{left:504.000000px;}
.x39_c01484{left:505.440000px;}
.x8_c01484{left:515.520000px;}
.x35_c01484{left:517.680000px;}
.x2a_c01484{left:527.040000px;}
.x26_c01484{left:537.840000px;}
.x13_c01484{left:548.640000px;}
.x9_c01484{left:558.720000px;}
.x36_c01484{left:570.240000px;}
.x45_c01484{left:571.680000px;}
.x2b_c01484{left:581.040000px;}
.x14_c01484{left:591.840000px;}
.xa_c01484{left:602.640000px;}
.x46_c01484{left:604.080000px;}
.x2c_c01484{left:613.440000px;}
.x2f_c01484{left:624.240000px;}
.x49_c01484{left:635.760000px;}
.x28_c01484{left:646.560000px;}
.x15_c01484{left:657.360000px;}
.x3e_c01484{left:658.800000px;}
.x47_c01484{left:668.160000px;}
.x1_c01484{left:673.920000px;}
.x43_c01484{left:678.960000px;}
.x1b_c01484{left:689.040000px;}
@media print{
.v0_c01484{vertical-align:0.000000pt;}
.v1_c01484{vertical-align:2.560000pt;}
.ls0_c01484{letter-spacing:0.000000pt;}
.ws0_c01484{word-spacing:-3.538773pt;}
.ws2_c01484{word-spacing:0.000000pt;}
.ws1_c01484{word-spacing:3.873485pt;}
.fsc_c01484{font-size:15.360000pt;}
.fsf_c01484{font-size:20.480000pt;}
.fs7_c01484{font-size:30.720000pt;}
.fs3_c01484{font-size:33.280000pt;}
.fs6_c01484{font-size:35.840000pt;}
.fse_c01484{font-size:38.400000pt;}
.fs8_c01484{font-size:40.960000pt;}
.fs1_c01484{font-size:43.520000pt;}
.fs4_c01484{font-size:46.080000pt;}
.fs5_c01484{font-size:48.640000pt;}
.fsd_c01484{font-size:51.200000pt;}
.fs2_c01484{font-size:53.760000pt;}
.fsa_c01484{font-size:56.320000pt;}
.fs9_c01484{font-size:58.880000pt;}
.fsb_c01484{font-size:61.440000pt;}
.fs10_c01484{font-size:64.000000pt;}
.fs0_c01484{font-size:66.560000pt;}
.y0_c01484{bottom:0.000000pt;}
.y57_c01484{bottom:83.840000pt;}
.y58_c01484{bottom:85.120000pt;}
.y5a_c01484{bottom:85.760000pt;}
.y56_c01484{bottom:86.400000pt;}
.y55_c01484{bottom:87.040000pt;}
.y59_c01484{bottom:87.680000pt;}
.y53_c01484{bottom:122.880000pt;}
.y54_c01484{bottom:123.520000pt;}
.y51_c01484{bottom:124.800000pt;}
.y50_c01484{bottom:125.440000pt;}
.y52_c01484{bottom:126.080000pt;}
.y4e_c01484{bottom:161.280000pt;}
.y4c_c01484{bottom:163.200000pt;}
.y4d_c01484{bottom:163.840000pt;}
.y4f_c01484{bottom:164.480000pt;}
.y4b_c01484{bottom:211.200000pt;}
.y4a_c01484{bottom:247.680000pt;}
.y47_c01484{bottom:248.960000pt;}
.y46_c01484{bottom:249.600000pt;}
.y48_c01484{bottom:250.240000pt;}
.y49_c01484{bottom:252.160000pt;}
.y41_c01484{bottom:285.440000pt;}
.y42_c01484{bottom:286.080000pt;}
.y45_c01484{bottom:286.720000pt;}
.y43_c01484{bottom:288.000000pt;}
.y44_c01484{bottom:288.640000pt;}
.y3e_c01484{bottom:323.840000pt;}
.y3d_c01484{bottom:325.760000pt;}
.y3c_c01484{bottom:326.400000pt;}
.y3f_c01484{bottom:327.040000pt;}
.y40_c01484{bottom:327.680000pt;}
.y37_c01484{bottom:362.240000pt;}
.y39_c01484{bottom:362.880000pt;}
.y3a_c01484{bottom:363.520000pt;}
.y38_c01484{bottom:364.800000pt;}
.y3b_c01484{bottom:365.440000pt;}
.y35_c01484{bottom:400.640000pt;}
.y36_c01484{bottom:401.280000pt;}
.y34_c01484{bottom:403.200000pt;}
.y33_c01484{bottom:403.840000pt;}
.y32_c01484{bottom:438.400000pt;}
.y30_c01484{bottom:439.040000pt;}
.y31_c01484{bottom:439.680000pt;}
.y2f_c01484{bottom:441.600000pt;}
.y2e_c01484{bottom:477.440000pt;}
.y2d_c01484{bottom:478.080000pt;}
.y2c_c01484{bottom:480.000000pt;}
.y2a_c01484{bottom:515.840000pt;}
.y2b_c01484{bottom:516.480000pt;}
.y28_c01484{bottom:517.760000pt;}
.y29_c01484{bottom:518.400000pt;}
.y27_c01484{bottom:554.240000pt;}
.y26_c01484{bottom:555.520000pt;}
.y25_c01484{bottom:556.160000pt;}
.y24_c01484{bottom:601.600000pt;}
.y22_c01484{bottom:639.360000pt;}
.y21_c01484{bottom:640.000000pt;}
.y23_c01484{bottom:641.280000pt;}
.y20_c01484{bottom:641.920000pt;}
.y1d_c01484{bottom:677.120000pt;}
.y1f_c01484{bottom:677.760000pt;}
.y1c_c01484{bottom:679.680000pt;}
.y1e_c01484{bottom:680.320000pt;}
.y1b_c01484{bottom:716.160000pt;}
.y19_c01484{bottom:718.080000pt;}
.y1a_c01484{bottom:718.720000pt;}
.y18_c01484{bottom:753.920000pt;}
.y16_c01484{bottom:754.560000pt;}
.y17_c01484{bottom:756.480000pt;}
.y15_c01484{bottom:757.120000pt;}
.y14_c01484{bottom:792.320000pt;}
.y13_c01484{bottom:792.960000pt;}
.y11_c01484{bottom:793.600000pt;}
.y10_c01484{bottom:794.880000pt;}
.y12_c01484{bottom:795.520000pt;}
.yd_c01484{bottom:830.720000pt;}
.yb_c01484{bottom:831.360000pt;}
.ye_c01484{bottom:833.280000pt;}
.yc_c01484{bottom:833.920000pt;}
.yf_c01484{bottom:835.200000pt;}
.ya_c01484{bottom:868.480000pt;}
.y6_c01484{bottom:869.120000pt;}
.y9_c01484{bottom:871.040000pt;}
.y8_c01484{bottom:871.680000pt;}
.y7_c01484{bottom:872.320000pt;}
.y3_c01484{bottom:908.160000pt;}
.y5_c01484{bottom:909.440000pt;}
.y4_c01484{bottom:910.080000pt;}
.y2_c01484{bottom:910.720000pt;}
.y1_c01484{bottom:973.440000pt;}
.he_c01484{height:13.822500pt;}
.h12_c01484{height:18.430000pt;}
.h9_c01484{height:27.645000pt;}
.h5_c01484{height:29.948750pt;}
.h8_c01484{height:32.252500pt;}
.h11_c01484{height:34.556250pt;}
.ha_c01484{height:36.860000pt;}
.h3_c01484{height:39.163750pt;}
.h6_c01484{height:41.467500pt;}
.h7_c01484{height:43.771250pt;}
.h10_c01484{height:44.027500pt;}
.hf_c01484{height:46.075000pt;}
.h4_c01484{height:48.378750pt;}
.hc_c01484{height:50.682500pt;}
.hb_c01484{height:52.986250pt;}
.hd_c01484{height:55.290000pt;}
.h13_c01484{height:57.593750pt;}
.h2_c01484{height:59.897500pt;}
.h0_c01484{height:1029.120000pt;}
.h1_c01484{height:1029.333333pt;}
.w0_c01484{width:678.400000pt;}
.w1_c01484{width:678.666667pt;}
.x0_c01484{left:0.000000pt;}
.x1c_c01484{left:34.560000pt;}
.xb_c01484{left:35.840000pt;}
.x32_c01484{left:37.120000pt;}
.x25_c01484{left:64.640000pt;}
.x37_c01484{left:73.600000pt;}
.xc_c01484{left:74.880000pt;}
.x48_c01484{left:92.800000pt;}
.x44_c01484{left:94.080000pt;}
.xd_c01484{left:103.680000pt;}
.x2d_c01484{left:112.000000pt;}
.x1d_c01484{left:122.880000pt;}
.x29_c01484{left:130.560000pt;}
.x2_c01484{left:131.840000pt;}
.x16_c01484{left:150.400000pt;}
.x27_c01484{left:151.680000pt;}
.x3_c01484{left:160.640000pt;}
.x30_c01484{left:170.240000pt;}
.x17_c01484{left:179.840000pt;}
.x41_c01484{left:181.120000pt;}
.xe_c01484{left:190.080000pt;}
.x3c_c01484{left:199.680000pt;}
.x3d_c01484{left:208.640000pt;}
.xf_c01484{left:217.600000pt;}
.x1e_c01484{left:218.880000pt;}
.x3a_c01484{left:228.480000pt;}
.x1f_c01484{left:237.440000pt;}
.x10_c01484{left:247.040000pt;}
.x33_c01484{left:248.320000pt;}
.x4_c01484{left:257.280000pt;}
.x34_c01484{left:266.240000pt;}
.x20_c01484{left:276.480000pt;}
.x11_c01484{left:286.080000pt;}
.x3f_c01484{left:295.680000pt;}
.x18_c01484{left:304.640000pt;}
.x38_c01484{left:313.600000pt;}
.x21_c01484{left:314.880000pt;}
.x31_c01484{left:324.480000pt;}
.x19_c01484{left:334.080000pt;}
.x3b_c01484{left:343.680000pt;}
.x2e_c01484{left:351.360000pt;}
.x12_c01484{left:353.280000pt;}
.x5_c01484{left:362.880000pt;}
.x42_c01484{left:373.120000pt;}
.x40_c01484{left:382.080000pt;}
.x22_c01484{left:401.280000pt;}
.x6_c01484{left:410.880000pt;}
.x23_c01484{left:419.840000pt;}
.x7_c01484{left:430.080000pt;}
.x1a_c01484{left:439.040000pt;}
.x24_c01484{left:448.000000pt;}
.x39_c01484{left:449.280000pt;}
.x8_c01484{left:458.240000pt;}
.x35_c01484{left:460.160000pt;}
.x2a_c01484{left:468.480000pt;}
.x26_c01484{left:478.080000pt;}
.x13_c01484{left:487.680000pt;}
.x9_c01484{left:496.640000pt;}
.x36_c01484{left:506.880000pt;}
.x45_c01484{left:508.160000pt;}
.x2b_c01484{left:516.480000pt;}
.x14_c01484{left:526.080000pt;}
.xa_c01484{left:535.680000pt;}
.x46_c01484{left:536.960000pt;}
.x2c_c01484{left:545.280000pt;}
.x2f_c01484{left:554.880000pt;}
.x49_c01484{left:565.120000pt;}
.x28_c01484{left:574.720000pt;}
.x15_c01484{left:584.320000pt;}
.x3e_c01484{left:585.600000pt;}
.x47_c01484{left:593.920000pt;}
.x1_c01484{left:599.040000pt;}
.x43_c01484{left:603.520000pt;}
.x1b_c01484{left:612.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_c01485 {
    display:none;
  }
  .loading-indicator_c01485.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01485 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01485 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01485" -> "#page-container .classname_c01485")
 */
.pf_c01485 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01485 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01485.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01485 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01485 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01485 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01485 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01485 {overflow:visible;}
  }
}
.c_c01485 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01485 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01485:after { /* webkit #35443 */
  content: '';
}
.t_c01485:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01485 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01485 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01485 { /* info for Javascript */
  display:none;
}
.l_c01485 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01485 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01485 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01485:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01485{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01485;src:url('chunks/assets/font_0ec6fa102f67eb359103d7b2.woff2')format("woff");}.ff1_c01485{font-family:ff1_c01485;line-height:1.109863;font-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_c01485{transform:matrix(0.181800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181800,0.000000,0.000000,0.250000,0,0);}
.m60_c01485{transform:matrix(0.226175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226175,0.000000,0.000000,0.250000,0,0);}
.m28_c01485{transform:matrix(0.234275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234275,0.000000,0.000000,0.250000,0,0);}
.m63_c01485{transform:matrix(0.242100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242100,0.000000,0.000000,0.250000,0,0);}
.m54_c01485{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);}
.m2a_c01485{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01485{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);}
.m5a_c01485{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);}
.m5f_c01485{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);}
.m62_c01485{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m29_c01485{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m61_c01485{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m58_c01485{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m45_c01485{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m40_c01485{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01485{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m56_c01485{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m26_c01485{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01485{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m13_c01485{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m4f_c01485{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);}
.m49_c01485{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);}
.m39_c01485{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);}
.m52_c01485{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m4_c01485{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m17_c01485{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m0_c01485{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);}
.m3a_c01485{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m22_c01485{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);}
.m3f_c01485{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m43_c01485{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);}
.m2_c01485{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);}
.m42_c01485{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m48_c01485{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m44_c01485{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);}
.m1b_c01485{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);}
.m32_c01485{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);}
.m4b_c01485{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01485{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);}
.m20_c01485{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m55_c01485{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);}
.m53_c01485{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);}
.m2b_c01485{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);}
.m38_c01485{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.me_c01485{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);}
.m64_c01485{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m66_c01485{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);}
.mb_c01485{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01485{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);}
.m4e_c01485{transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);}
.m1_c01485{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01485{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01485{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m35_c01485{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);}
.m7_c01485{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m23_c01485{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01485{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);}
.m14_c01485{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.mf_c01485{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m8_c01485{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m41_c01485{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);}
.m5b_c01485{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.mc_c01485{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m18_c01485{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);}
.m2c_c01485{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m37_c01485{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01485{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m33_c01485{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m65_c01485{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);}
.m5_c01485{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);}
.m21_c01485{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m31_c01485{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m15_c01485{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);}
.m19_c01485{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m12_c01485{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m6_c01485{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m16_c01485{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);}
.md_c01485{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m30_c01485{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m50_c01485{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m59_c01485{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01485{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);}
.m47_c01485{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m10_c01485{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);}
.m9_c01485{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m5c_c01485{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m4d_c01485{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m11_c01485{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01485{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m27_c01485{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01485{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m5e_c01485{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);}
.m1a_c01485{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.ma_c01485{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);}
.m34_c01485{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m24_c01485{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m46_c01485{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m5d_c01485{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m57_c01485{transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);}
.m51_c01485{transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);}
.m25_c01485{transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01485{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m36_c01485{transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);}
.v1_c01485{vertical-align:-2.880000px;}
.v0_c01485{vertical-align:0.000000px;}
.ls0_c01485{letter-spacing:0.000000px;}
.sc__c01485{text-shadow:none;}
.sc0_c01485{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01485{-webkit-text-stroke:0px transparent;}
.sc0_c01485{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01485{word-spacing:0.000000px;}
.ws0_c01485{word-spacing:3.911040px;}
.fc0_c01485{color:transparent;}
.fs5_c01485{font-size:34.560000px;}
.fs6_c01485{font-size:37.440000px;}
.fsa_c01485{font-size:43.200000px;}
.fs3_c01485{font-size:46.080000px;}
.fs4_c01485{font-size:48.960000px;}
.fs1_c01485{font-size:51.840000px;}
.fs9_c01485{font-size:54.720000px;}
.fsf_c01485{font-size:57.600000px;}
.fs7_c01485{font-size:60.480000px;}
.fsb_c01485{font-size:63.360000px;}
.fse_c01485{font-size:66.240000px;}
.fs8_c01485{font-size:69.120000px;}
.fsc_c01485{font-size:72.000000px;}
.fs10_c01485{font-size:74.880000px;}
.fs0_c01485{font-size:77.760000px;}
.fsd_c01485{font-size:80.640000px;}
.fs11_c01485{font-size:83.520000px;}
.fs2_c01485{font-size:97.920000px;}
.y0_c01485{bottom:0.000000px;}
.y5c_c01485{bottom:95.760000px;}
.y5d_c01485{bottom:96.480000px;}
.y5b_c01485{bottom:97.200000px;}
.y5a_c01485{bottom:97.920000px;}
.y5f_c01485{bottom:98.640000px;}
.y5e_c01485{bottom:99.360000px;}
.y55_c01485{bottom:138.240000px;}
.y57_c01485{bottom:138.960000px;}
.y59_c01485{bottom:139.680000px;}
.y56_c01485{bottom:140.400000px;}
.y54_c01485{bottom:141.120000px;}
.y53_c01485{bottom:141.840000px;}
.y58_c01485{bottom:142.560000px;}
.y50_c01485{bottom:182.160000px;}
.y52_c01485{bottom:182.880000px;}
.y4e_c01485{bottom:184.320000px;}
.y4f_c01485{bottom:185.040000px;}
.y51_c01485{bottom:185.760000px;}
.y4c_c01485{bottom:236.160000px;}
.y4d_c01485{bottom:237.600000px;}
.y49_c01485{bottom:278.640000px;}
.y4a_c01485{bottom:281.520000px;}
.y4b_c01485{bottom:282.240000px;}
.y47_c01485{bottom:321.120000px;}
.y46_c01485{bottom:321.840000px;}
.y45_c01485{bottom:324.000000px;}
.y48_c01485{bottom:324.720000px;}
.y3f_c01485{bottom:363.600000px;}
.y42_c01485{bottom:364.320000px;}
.y43_c01485{bottom:365.040000px;}
.y40_c01485{bottom:366.480000px;}
.y41_c01485{bottom:367.200000px;}
.y44_c01485{bottom:367.920000px;}
.y3b_c01485{bottom:407.520000px;}
.y3c_c01485{bottom:409.680000px;}
.y3d_c01485{bottom:410.400000px;}
.y3e_c01485{bottom:411.120000px;}
.y37_c01485{bottom:450.720000px;}
.y39_c01485{bottom:452.160000px;}
.y38_c01485{bottom:452.880000px;}
.y36_c01485{bottom:453.600000px;}
.y3a_c01485{bottom:454.320000px;}
.y34_c01485{bottom:493.920000px;}
.y32_c01485{bottom:495.360000px;}
.y33_c01485{bottom:496.080000px;}
.y35_c01485{bottom:496.800000px;}
.y30_c01485{bottom:535.680000px;}
.y31_c01485{bottom:537.120000px;}
.y2e_c01485{bottom:539.280000px;}
.y2f_c01485{bottom:540.000000px;}
.y2c_c01485{bottom:580.320000px;}
.y2d_c01485{bottom:582.480000px;}
.y2b_c01485{bottom:583.200000px;}
.y2a_c01485{bottom:634.320000px;}
.y29_c01485{bottom:635.760000px;}
.y26_c01485{bottom:677.520000px;}
.y28_c01485{bottom:678.960000px;}
.y25_c01485{bottom:679.680000px;}
.y27_c01485{bottom:680.400000px;}
.y24_c01485{bottom:718.560000px;}
.y23_c01485{bottom:720.000000px;}
.y21_c01485{bottom:722.160000px;}
.y22_c01485{bottom:722.880000px;}
.y1e_c01485{bottom:763.920000px;}
.y1f_c01485{bottom:764.640000px;}
.y1c_c01485{bottom:765.360000px;}
.y20_c01485{bottom:766.080000px;}
.y1d_c01485{bottom:766.800000px;}
.y19_c01485{bottom:805.680000px;}
.y18_c01485{bottom:806.400000px;}
.y1a_c01485{bottom:807.840000px;}
.y17_c01485{bottom:808.560000px;}
.y1b_c01485{bottom:809.280000px;}
.y12_c01485{bottom:848.160000px;}
.y13_c01485{bottom:848.880000px;}
.y16_c01485{bottom:850.320000px;}
.y14_c01485{bottom:851.040000px;}
.y15_c01485{bottom:851.760000px;}
.y10_c01485{bottom:890.640000px;}
.y11_c01485{bottom:893.520000px;}
.yf_c01485{bottom:894.240000px;}
.ya_c01485{bottom:933.840000px;}
.ye_c01485{bottom:934.560000px;}
.yd_c01485{bottom:935.280000px;}
.yc_c01485{bottom:936.000000px;}
.yb_c01485{bottom:936.720000px;}
.y9_c01485{bottom:976.320000px;}
.y8_c01485{bottom:978.480000px;}
.y6_c01485{bottom:979.200000px;}
.y7_c01485{bottom:979.920000px;}
.y3_c01485{bottom:1010.160000px;}
.y5_c01485{bottom:1021.680000px;}
.y2_c01485{bottom:1022.400000px;}
.y4_c01485{bottom:1023.120000px;}
.y1_c01485{bottom:1095.840000px;}
.h7_c01485{height:31.100625px;}
.h8_c01485{height:33.692344px;}
.hc_c01485{height:38.875781px;}
.h5_c01485{height:41.467500px;}
.h6_c01485{height:44.059219px;}
.h3_c01485{height:46.650937px;}
.hb_c01485{height:49.242656px;}
.h11_c01485{height:51.834375px;}
.h9_c01485{height:54.426094px;}
.hd_c01485{height:57.017812px;}
.h10_c01485{height:59.609531px;}
.ha_c01485{height:62.201250px;}
.he_c01485{height:64.792969px;}
.h12_c01485{height:67.384687px;}
.h2_c01485{height:69.976406px;}
.hf_c01485{height:72.568125px;}
.h13_c01485{height:75.159844px;}
.h4_c01485{height:88.118437px;}
.h0_c01485{height:1157.760000px;}
.h1_c01485{height:1158.000000px;}
.w0_c01485{width:764.640000px;}
.w1_c01485{width:765.000000px;}
.x0_c01485{left:0.000000px;}
.x34_c01485{left:48.240000px;}
.x2_c01485{left:49.680000px;}
.x4d_c01485{left:51.120000px;}
.x20_c01485{left:82.080000px;}
.x48_c01485{left:92.880000px;}
.x41_c01485{left:102.240000px;}
.x35_c01485{left:103.680000px;}
.x39_c01485{left:105.840000px;}
.x2b_c01485{left:114.480000px;}
.x3_c01485{left:124.560000px;}
.x4a_c01485{left:126.000000px;}
.x17_c01485{left:136.080000px;}
.x42_c01485{left:146.160000px;}
.x4_c01485{left:157.680000px;}
.xd_c01485{left:168.480000px;}
.x45_c01485{left:179.280000px;}
.x49_c01485{left:180.720000px;}
.x18_c01485{left:190.080000px;}
.xe_c01485{left:200.160000px;}
.x4e_c01485{left:201.600000px;}
.x5_c01485{left:212.400000px;}
.x36_c01485{left:213.840000px;}
.x25_c01485{left:222.480000px;}
.x52_c01485{left:224.640000px;}
.x19_c01485{left:232.560000px;}
.x43_c01485{left:235.440000px;}
.x6_c01485{left:244.080000px;}
.x3e_c01485{left:255.600000px;}
.x31_c01485{left:265.680000px;}
.x21_c01485{left:277.200000px;}
.x7_c01485{left:286.560000px;}
.x32_c01485{left:296.640000px;}
.x1a_c01485{left:308.160000px;}
.x4b_c01485{left:309.600000px;}
.xf_c01485{left:319.680000px;}
.x50_c01485{left:331.200000px;}
.x2c_c01485{left:340.560000px;}
.x26_c01485{left:352.080000px;}
.x3a_c01485{left:362.880000px;}
.x53_c01485{left:367.200000px;}
.x10_c01485{left:373.680000px;}
.x8_c01485{left:384.480000px;}
.x11_c01485{left:395.280000px;}
.x22_c01485{left:406.080000px;}
.x37_c01485{left:408.240000px;}
.x27_c01485{left:417.600000px;}
.x12_c01485{left:427.680000px;}
.x1b_c01485{left:437.760000px;}
.x23_c01485{left:439.200000px;}
.x54_c01485{left:440.640000px;}
.x2d_c01485{left:450.000000px;}
.x47_c01485{left:458.640000px;}
.x9_c01485{left:460.800000px;}
.x3b_c01485{left:470.880000px;}
.x1c_c01485{left:481.680000px;}
.x4c_c01485{left:483.120000px;}
.x3c_c01485{left:492.480000px;}
.x2e_c01485{left:503.280000px;}
.x3f_c01485{left:514.080000px;}
.x28_c01485{left:525.600000px;}
.xa_c01485{left:535.680000px;}
.x3d_c01485{left:546.480000px;}
.x38_c01485{left:557.280000px;}
.x29_c01485{left:560.160000px;}
.x2f_c01485{left:568.800000px;}
.x1d_c01485{left:579.600000px;}
.x13_c01485{left:589.680000px;}
.x30_c01485{left:591.120000px;}
.x46_c01485{left:600.480000px;}
.x33_c01485{left:601.920000px;}
.x1e_c01485{left:611.280000px;}
.x14_c01485{left:612.720000px;}
.x24_c01485{left:622.080000px;}
.x51_c01485{left:623.520000px;}
.x15_c01485{left:632.880000px;}
.x2a_c01485{left:634.320000px;}
.x44_c01485{left:643.680000px;}
.x4f_c01485{left:645.840000px;}
.xb_c01485{left:654.480000px;}
.x16_c01485{left:666.000000px;}
.x40_c01485{left:667.440000px;}
.x1_c01485{left:676.800000px;}
.x1f_c01485{left:686.880000px;}
.xc_c01485{left:688.320000px;}
@media print{
.v1_c01485{vertical-align:-2.560000pt;}
.v0_c01485{vertical-align:0.000000pt;}
.ls0_c01485{letter-spacing:0.000000pt;}
.ws1_c01485{word-spacing:0.000000pt;}
.ws0_c01485{word-spacing:3.476480pt;}
.fs5_c01485{font-size:30.720000pt;}
.fs6_c01485{font-size:33.280000pt;}
.fsa_c01485{font-size:38.400000pt;}
.fs3_c01485{font-size:40.960000pt;}
.fs4_c01485{font-size:43.520000pt;}
.fs1_c01485{font-size:46.080000pt;}
.fs9_c01485{font-size:48.640000pt;}
.fsf_c01485{font-size:51.200000pt;}
.fs7_c01485{font-size:53.760000pt;}
.fsb_c01485{font-size:56.320000pt;}
.fse_c01485{font-size:58.880000pt;}
.fs8_c01485{font-size:61.440000pt;}
.fsc_c01485{font-size:64.000000pt;}
.fs10_c01485{font-size:66.560000pt;}
.fs0_c01485{font-size:69.120000pt;}
.fsd_c01485{font-size:71.680000pt;}
.fs11_c01485{font-size:74.240000pt;}
.fs2_c01485{font-size:87.040000pt;}
.y0_c01485{bottom:0.000000pt;}
.y5c_c01485{bottom:85.120000pt;}
.y5d_c01485{bottom:85.760000pt;}
.y5b_c01485{bottom:86.400000pt;}
.y5a_c01485{bottom:87.040000pt;}
.y5f_c01485{bottom:87.680000pt;}
.y5e_c01485{bottom:88.320000pt;}
.y55_c01485{bottom:122.880000pt;}
.y57_c01485{bottom:123.520000pt;}
.y59_c01485{bottom:124.160000pt;}
.y56_c01485{bottom:124.800000pt;}
.y54_c01485{bottom:125.440000pt;}
.y53_c01485{bottom:126.080000pt;}
.y58_c01485{bottom:126.720000pt;}
.y50_c01485{bottom:161.920000pt;}
.y52_c01485{bottom:162.560000pt;}
.y4e_c01485{bottom:163.840000pt;}
.y4f_c01485{bottom:164.480000pt;}
.y51_c01485{bottom:165.120000pt;}
.y4c_c01485{bottom:209.920000pt;}
.y4d_c01485{bottom:211.200000pt;}
.y49_c01485{bottom:247.680000pt;}
.y4a_c01485{bottom:250.240000pt;}
.y4b_c01485{bottom:250.880000pt;}
.y47_c01485{bottom:285.440000pt;}
.y46_c01485{bottom:286.080000pt;}
.y45_c01485{bottom:288.000000pt;}
.y48_c01485{bottom:288.640000pt;}
.y3f_c01485{bottom:323.200000pt;}
.y42_c01485{bottom:323.840000pt;}
.y43_c01485{bottom:324.480000pt;}
.y40_c01485{bottom:325.760000pt;}
.y41_c01485{bottom:326.400000pt;}
.y44_c01485{bottom:327.040000pt;}
.y3b_c01485{bottom:362.240000pt;}
.y3c_c01485{bottom:364.160000pt;}
.y3d_c01485{bottom:364.800000pt;}
.y3e_c01485{bottom:365.440000pt;}
.y37_c01485{bottom:400.640000pt;}
.y39_c01485{bottom:401.920000pt;}
.y38_c01485{bottom:402.560000pt;}
.y36_c01485{bottom:403.200000pt;}
.y3a_c01485{bottom:403.840000pt;}
.y34_c01485{bottom:439.040000pt;}
.y32_c01485{bottom:440.320000pt;}
.y33_c01485{bottom:440.960000pt;}
.y35_c01485{bottom:441.600000pt;}
.y30_c01485{bottom:476.160000pt;}
.y31_c01485{bottom:477.440000pt;}
.y2e_c01485{bottom:479.360000pt;}
.y2f_c01485{bottom:480.000000pt;}
.y2c_c01485{bottom:515.840000pt;}
.y2d_c01485{bottom:517.760000pt;}
.y2b_c01485{bottom:518.400000pt;}
.y2a_c01485{bottom:563.840000pt;}
.y29_c01485{bottom:565.120000pt;}
.y26_c01485{bottom:602.240000pt;}
.y28_c01485{bottom:603.520000pt;}
.y25_c01485{bottom:604.160000pt;}
.y27_c01485{bottom:604.800000pt;}
.y24_c01485{bottom:638.720000pt;}
.y23_c01485{bottom:640.000000pt;}
.y21_c01485{bottom:641.920000pt;}
.y22_c01485{bottom:642.560000pt;}
.y1e_c01485{bottom:679.040000pt;}
.y1f_c01485{bottom:679.680000pt;}
.y1c_c01485{bottom:680.320000pt;}
.y20_c01485{bottom:680.960000pt;}
.y1d_c01485{bottom:681.600000pt;}
.y19_c01485{bottom:716.160000pt;}
.y18_c01485{bottom:716.800000pt;}
.y1a_c01485{bottom:718.080000pt;}
.y17_c01485{bottom:718.720000pt;}
.y1b_c01485{bottom:719.360000pt;}
.y12_c01485{bottom:753.920000pt;}
.y13_c01485{bottom:754.560000pt;}
.y16_c01485{bottom:755.840000pt;}
.y14_c01485{bottom:756.480000pt;}
.y15_c01485{bottom:757.120000pt;}
.y10_c01485{bottom:791.680000pt;}
.y11_c01485{bottom:794.240000pt;}
.yf_c01485{bottom:794.880000pt;}
.ya_c01485{bottom:830.080000pt;}
.ye_c01485{bottom:830.720000pt;}
.yd_c01485{bottom:831.360000pt;}
.yc_c01485{bottom:832.000000pt;}
.yb_c01485{bottom:832.640000pt;}
.y9_c01485{bottom:867.840000pt;}
.y8_c01485{bottom:869.760000pt;}
.y6_c01485{bottom:870.400000pt;}
.y7_c01485{bottom:871.040000pt;}
.y3_c01485{bottom:897.920000pt;}
.y5_c01485{bottom:908.160000pt;}
.y2_c01485{bottom:908.800000pt;}
.y4_c01485{bottom:909.440000pt;}
.y1_c01485{bottom:974.080000pt;}
.h7_c01485{height:27.645000pt;}
.h8_c01485{height:29.948750pt;}
.hc_c01485{height:34.556250pt;}
.h5_c01485{height:36.860000pt;}
.h6_c01485{height:39.163750pt;}
.h3_c01485{height:41.467500pt;}
.hb_c01485{height:43.771250pt;}
.h11_c01485{height:46.075000pt;}
.h9_c01485{height:48.378750pt;}
.hd_c01485{height:50.682500pt;}
.h10_c01485{height:52.986250pt;}
.ha_c01485{height:55.290000pt;}
.he_c01485{height:57.593750pt;}
.h12_c01485{height:59.897500pt;}
.h2_c01485{height:62.201250pt;}
.hf_c01485{height:64.505000pt;}
.h13_c01485{height:66.808750pt;}
.h4_c01485{height:78.327500pt;}
.h0_c01485{height:1029.120000pt;}
.h1_c01485{height:1029.333333pt;}
.w0_c01485{width:679.680000pt;}
.w1_c01485{width:680.000000pt;}
.x0_c01485{left:0.000000pt;}
.x34_c01485{left:42.880000pt;}
.x2_c01485{left:44.160000pt;}
.x4d_c01485{left:45.440000pt;}
.x20_c01485{left:72.960000pt;}
.x48_c01485{left:82.560000pt;}
.x41_c01485{left:90.880000pt;}
.x35_c01485{left:92.160000pt;}
.x39_c01485{left:94.080000pt;}
.x2b_c01485{left:101.760000pt;}
.x3_c01485{left:110.720000pt;}
.x4a_c01485{left:112.000000pt;}
.x17_c01485{left:120.960000pt;}
.x42_c01485{left:129.920000pt;}
.x4_c01485{left:140.160000pt;}
.xd_c01485{left:149.760000pt;}
.x45_c01485{left:159.360000pt;}
.x49_c01485{left:160.640000pt;}
.x18_c01485{left:168.960000pt;}
.xe_c01485{left:177.920000pt;}
.x4e_c01485{left:179.200000pt;}
.x5_c01485{left:188.800000pt;}
.x36_c01485{left:190.080000pt;}
.x25_c01485{left:197.760000pt;}
.x52_c01485{left:199.680000pt;}
.x19_c01485{left:206.720000pt;}
.x43_c01485{left:209.280000pt;}
.x6_c01485{left:216.960000pt;}
.x3e_c01485{left:227.200000pt;}
.x31_c01485{left:236.160000pt;}
.x21_c01485{left:246.400000pt;}
.x7_c01485{left:254.720000pt;}
.x32_c01485{left:263.680000pt;}
.x1a_c01485{left:273.920000pt;}
.x4b_c01485{left:275.200000pt;}
.xf_c01485{left:284.160000pt;}
.x50_c01485{left:294.400000pt;}
.x2c_c01485{left:302.720000pt;}
.x26_c01485{left:312.960000pt;}
.x3a_c01485{left:322.560000pt;}
.x53_c01485{left:326.400000pt;}
.x10_c01485{left:332.160000pt;}
.x8_c01485{left:341.760000pt;}
.x11_c01485{left:351.360000pt;}
.x22_c01485{left:360.960000pt;}
.x37_c01485{left:362.880000pt;}
.x27_c01485{left:371.200000pt;}
.x12_c01485{left:380.160000pt;}
.x1b_c01485{left:389.120000pt;}
.x23_c01485{left:390.400000pt;}
.x54_c01485{left:391.680000pt;}
.x2d_c01485{left:400.000000pt;}
.x47_c01485{left:407.680000pt;}
.x9_c01485{left:409.600000pt;}
.x3b_c01485{left:418.560000pt;}
.x1c_c01485{left:428.160000pt;}
.x4c_c01485{left:429.440000pt;}
.x3c_c01485{left:437.760000pt;}
.x2e_c01485{left:447.360000pt;}
.x3f_c01485{left:456.960000pt;}
.x28_c01485{left:467.200000pt;}
.xa_c01485{left:476.160000pt;}
.x3d_c01485{left:485.760000pt;}
.x38_c01485{left:495.360000pt;}
.x29_c01485{left:497.920000pt;}
.x2f_c01485{left:505.600000pt;}
.x1d_c01485{left:515.200000pt;}
.x13_c01485{left:524.160000pt;}
.x30_c01485{left:525.440000pt;}
.x46_c01485{left:533.760000pt;}
.x33_c01485{left:535.040000pt;}
.x1e_c01485{left:543.360000pt;}
.x14_c01485{left:544.640000pt;}
.x24_c01485{left:552.960000pt;}
.x51_c01485{left:554.240000pt;}
.x15_c01485{left:562.560000pt;}
.x2a_c01485{left:563.840000pt;}
.x44_c01485{left:572.160000pt;}
.x4f_c01485{left:574.080000pt;}
.xb_c01485{left:581.760000pt;}
.x16_c01485{left:592.000000pt;}
.x40_c01485{left:593.280000pt;}
.x1_c01485{left:601.600000pt;}
.x1f_c01485{left:610.560000pt;}
.xc_c01485{left:611.840000pt;}
}





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

.ir_c01486:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01486{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01486;src:url('chunks/assets/font_eefa9090045dd9b36f4265f6.woff2')format("woff");}.ff1_c01486{font-family:ff1_c01486;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m51_c01486{transform:matrix(0.168375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168375,0.000000,0.000000,0.250000,0,0);}
.m53_c01486{transform:matrix(0.226175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226175,0.000000,0.000000,0.250000,0,0);}
.m1b_c01486{transform:matrix(0.237325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237325,0.000000,0.000000,0.250000,0,0);}
.m15_c01486{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);}
.m55_c01486{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m54_c01486{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01486{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01486{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);}
.m4a_c01486{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);}
.m59_c01486{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m48_c01486{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m44_c01486{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m40_c01486{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m5d_c01486{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m5c_c01486{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01486{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m49_c01486{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01486{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2_c01486{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01486{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m43_c01486{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m12_c01486{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);}
.m23_c01486{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);}
.m2b_c01486{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m3_c01486{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m57_c01486{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);}
.m36_c01486{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);}
.m0_c01486{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m5_c01486{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m13_c01486{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);}
.m35_c01486{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m22_c01486{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m18_c01486{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);}
.m2f_c01486{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_c01486{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01486{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);}
.m52_c01486{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01486{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);}
.m3f_c01486{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);}
.m42_c01486{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);}
.m1f_c01486{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m1_c01486{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m10_c01486{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_c01486{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m46_c01486{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);}
.m3a_c01486{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m26_c01486{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);}
.m30_c01486{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);}
.mc_c01486{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.me_c01486{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m8_c01486{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m45_c01486{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);}
.mb_c01486{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m39_c01486{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);}
.m3c_c01486{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m47_c01486{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);}
.m31_c01486{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m9_c01486{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m25_c01486{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m38_c01486{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m7_c01486{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);}
.m37_c01486{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m34_c01486{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01486{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);}
.m2e_c01486{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01486{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m4_c01486{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01486{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01486{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);}
.m32_c01486{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m5e_c01486{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m21_c01486{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);}
.m11_c01486{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m6_c01486{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m41_c01486{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m14_c01486{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);}
.ma_c01486{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m50_c01486{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01486{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);}
.m58_c01486{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m17_c01486{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);}
.m3b_c01486{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m27_c01486{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);}
.m56_c01486{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.md_c01486{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m20_c01486{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m28_c01486{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m5a_c01486{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m29_c01486{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);}
.m1a_c01486{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m24_c01486{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);}
.m2a_c01486{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m33_c01486{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.mf_c01486{transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);}
.m5b_c01486{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);}
.v0_c01486{vertical-align:0.000000px;}
.v1_c01486{vertical-align:2.880000px;}
.v2_c01486{vertical-align:11.520000px;}
.ls0_c01486{letter-spacing:0.000000px;}
.sc__c01486{text-shadow:none;}
.sc0_c01486{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01486{-webkit-text-stroke:0px transparent;}
.sc0_c01486{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01486{word-spacing:-1.480080px;}
.ws2_c01486{word-spacing:0.000000px;}
.ws0_c01486{word-spacing:2.961840px;}
.fc0_c01486{color:transparent;}
.fs12_c01486{font-size:23.040000px;}
.fs8_c01486{font-size:34.560000px;}
.fs6_c01486{font-size:37.440000px;}
.fsd_c01486{font-size:40.320000px;}
.fse_c01486{font-size:43.200000px;}
.fs4_c01486{font-size:46.080000px;}
.fs9_c01486{font-size:48.960000px;}
.fs7_c01486{font-size:51.840000px;}
.fs3_c01486{font-size:54.720000px;}
.fs1_c01486{font-size:57.600000px;}
.fs5_c01486{font-size:60.480000px;}
.fsa_c01486{font-size:63.360000px;}
.fsc_c01486{font-size:66.240000px;}
.fs2_c01486{font-size:69.120000px;}
.fs0_c01486{font-size:72.000000px;}
.fs11_c01486{font-size:74.880000px;}
.fs10_c01486{font-size:83.520000px;}
.fsb_c01486{font-size:86.400000px;}
.fsf_c01486{font-size:97.920000px;}
.y0_c01486{bottom:0.000000px;}
.y67_c01486{bottom:108.720000px;}
.y66_c01486{bottom:109.440000px;}
.y68_c01486{bottom:111.600000px;}
.y69_c01486{bottom:112.320000px;}
.y65_c01486{bottom:113.040000px;}
.y63_c01486{bottom:151.920000px;}
.y60_c01486{bottom:152.640000px;}
.y64_c01486{bottom:153.360000px;}
.y62_c01486{bottom:154.080000px;}
.y5f_c01486{bottom:155.520000px;}
.y61_c01486{bottom:158.400000px;}
.y5b_c01486{bottom:194.400000px;}
.y5d_c01486{bottom:195.840000px;}
.y5c_c01486{bottom:198.000000px;}
.y5a_c01486{bottom:198.720000px;}
.y5e_c01486{bottom:199.440000px;}
.y53_c01486{bottom:238.320000px;}
.y54_c01486{bottom:239.040000px;}
.y56_c01486{bottom:239.760000px;}
.y55_c01486{bottom:241.200000px;}
.y58_c01486{bottom:241.920000px;}
.y59_c01486{bottom:242.640000px;}
.y57_c01486{bottom:243.360000px;}
.y4f_c01486{bottom:281.520000px;}
.y4e_c01486{bottom:282.240000px;}
.y52_c01486{bottom:282.960000px;}
.y51_c01486{bottom:285.120000px;}
.y50_c01486{bottom:285.840000px;}
.y4b_c01486{bottom:325.440000px;}
.y4d_c01486{bottom:326.880000px;}
.y4a_c01486{bottom:327.600000px;}
.y49_c01486{bottom:328.320000px;}
.y4c_c01486{bottom:329.040000px;}
.y47_c01486{bottom:359.280000px;}
.y42_c01486{bottom:367.920000px;}
.y45_c01486{bottom:368.640000px;}
.y48_c01486{bottom:369.360000px;}
.y43_c01486{bottom:370.800000px;}
.y44_c01486{bottom:371.520000px;}
.y46_c01486{bottom:372.240000px;}
.y3e_c01486{bottom:411.840000px;}
.y40_c01486{bottom:412.560000px;}
.y41_c01486{bottom:414.000000px;}
.y3f_c01486{bottom:414.720000px;}
.y3b_c01486{bottom:455.040000px;}
.y3d_c01486{bottom:455.760000px;}
.y3a_c01486{bottom:457.920000px;}
.y3c_c01486{bottom:458.640000px;}
.y38_c01486{bottom:497.520000px;}
.y37_c01486{bottom:498.240000px;}
.y36_c01486{bottom:500.400000px;}
.y35_c01486{bottom:501.120000px;}
.y39_c01486{bottom:501.840000px;}
.y34_c01486{bottom:552.240000px;}
.y33_c01486{bottom:553.680000px;}
.y32_c01486{bottom:554.400000px;}
.y31_c01486{bottom:594.000000px;}
.y30_c01486{bottom:596.880000px;}
.y2f_c01486{bottom:597.600000px;}
.y2d_c01486{bottom:637.200000px;}
.y2e_c01486{bottom:639.360000px;}
.y2c_c01486{bottom:640.080000px;}
.y26_c01486{bottom:679.680000px;}
.y28_c01486{bottom:680.400000px;}
.y27_c01486{bottom:681.120000px;}
.y2a_c01486{bottom:682.560000px;}
.y29_c01486{bottom:683.280000px;}
.y2b_c01486{bottom:684.000000px;}
.y25_c01486{bottom:722.880000px;}
.y22_c01486{bottom:723.600000px;}
.y24_c01486{bottom:725.040000px;}
.y23_c01486{bottom:725.760000px;}
.y21_c01486{bottom:726.480000px;}
.y1e_c01486{bottom:766.080000px;}
.y1f_c01486{bottom:766.800000px;}
.y20_c01486{bottom:768.240000px;}
.y1d_c01486{bottom:768.960000px;}
.y18_c01486{bottom:809.280000px;}
.y1a_c01486{bottom:810.000000px;}
.y1b_c01486{bottom:811.440000px;}
.y19_c01486{bottom:812.160000px;}
.y1c_c01486{bottom:812.880000px;}
.y17_c01486{bottom:852.480000px;}
.y15_c01486{bottom:854.640000px;}
.y14_c01486{bottom:855.360000px;}
.y16_c01486{bottom:856.080000px;}
.y11_c01486{bottom:895.680000px;}
.y12_c01486{bottom:896.400000px;}
.y10_c01486{bottom:897.120000px;}
.y13_c01486{bottom:897.840000px;}
.yf_c01486{bottom:898.560000px;}
.yd_c01486{bottom:938.160000px;}
.yb_c01486{bottom:938.880000px;}
.yc_c01486{bottom:939.600000px;}
.ye_c01486{bottom:941.040000px;}
.ya_c01486{bottom:941.760000px;}
.y8_c01486{bottom:980.640000px;}
.y7_c01486{bottom:981.360000px;}
.y9_c01486{bottom:983.520000px;}
.y5_c01486{bottom:984.240000px;}
.y6_c01486{bottom:984.960000px;}
.y3_c01486{bottom:1024.560000px;}
.y4_c01486{bottom:1026.720000px;}
.y2_c01486{bottom:1027.440000px;}
.y1_c01486{bottom:1093.680000px;}
.h16_c01486{height:20.733750px;}
.h9_c01486{height:31.100625px;}
.hd_c01486{height:33.692344px;}
.h11_c01486{height:36.284062px;}
.h12_c01486{height:38.875781px;}
.h6_c01486{height:41.467500px;}
.ha_c01486{height:44.059219px;}
.hb_c01486{height:46.650937px;}
.h5_c01486{height:49.242656px;}
.h8_c01486{height:49.530938px;}
.h3_c01486{height:51.834375px;}
.h7_c01486{height:54.426094px;}
.hc_c01486{height:57.017812px;}
.hf_c01486{height:59.609531px;}
.h4_c01486{height:62.201250px;}
.h10_c01486{height:63.354375px;}
.h2_c01486{height:64.792969px;}
.h15_c01486{height:67.384687px;}
.h14_c01486{height:75.159844px;}
.he_c01486{height:77.751563px;}
.h13_c01486{height:88.118437px;}
.h0_c01486{height:1157.040000px;}
.h1_c01486{height:1157.250000px;}
.w0_c01486{width:763.200000px;}
.w1_c01486{width:763.500000px;}
.x0_c01486{left:0.000000px;}
.x2_c01486{left:38.880000px;}
.x55_c01486{left:41.040000px;}
.x51_c01486{left:43.200000px;}
.x4c_c01486{left:72.720000px;}
.x2c_c01486{left:82.800000px;}
.xa_c01486{left:92.160000px;}
.x1a_c01486{left:104.400000px;}
.x27_c01486{left:114.480000px;}
.x52_c01486{left:116.640000px;}
.x22_c01486{left:126.000000px;}
.x13_c01486{left:136.080000px;}
.x3f_c01486{left:148.320000px;}
.x1b_c01486{left:158.400000px;}
.x5b_c01486{left:162.000000px;}
.x31_c01486{left:169.200000px;}
.xb_c01486{left:179.280000px;}
.x23_c01486{left:190.800000px;}
.x42_c01486{left:192.240000px;}
.x3_c01486{left:200.880000px;}
.x1c_c01486{left:202.320000px;}
.x36_c01486{left:213.120000px;}
.x32_c01486{left:221.760000px;}
.x4d_c01486{left:223.200000px;}
.x3c_c01486{left:233.280000px;}
.xc_c01486{left:234.720000px;}
.x43_c01486{left:244.800000px;}
.x4a_c01486{left:254.880000px;}
.x40_c01486{left:256.320000px;}
.x14_c01486{left:266.400000px;}
.x46_c01486{left:267.840000px;}
.x24_c01486{left:277.200000px;}
.x53_c01486{left:278.640000px;}
.x28_c01486{left:287.280000px;}
.x5d_c01486{left:288.720000px;}
.x2d_c01486{left:298.080000px;}
.x47_c01486{left:299.520000px;}
.x33_c01486{left:308.160000px;}
.x4_c01486{left:311.040000px;}
.x15_c01486{left:321.840000px;}
.x3d_c01486{left:331.200000px;}
.x2e_c01486{left:341.280000px;}
.x56_c01486{left:343.440000px;}
.x1d_c01486{left:345.600000px;}
.xd_c01486{left:352.800000px;}
.x4e_c01486{left:362.880000px;}
.x57_c01486{left:364.320000px;}
.x54_c01486{left:375.840000px;}
.x5_c01486{left:384.480000px;}
.x5c_c01486{left:387.360000px;}
.x48_c01486{left:396.000000px;}
.x58_c01486{left:397.440000px;}
.x49_c01486{left:399.600000px;}
.x6_c01486{left:406.080000px;}
.x4f_c01486{left:408.240000px;}
.x16_c01486{left:417.600000px;}
.x3e_c01486{left:419.040000px;}
.x44_c01486{left:421.200000px;}
.x2f_c01486{left:429.120000px;}
.x29_c01486{left:438.480000px;}
.x4b_c01486{left:439.920000px;}
.x5e_c01486{left:441.360000px;}
.xe_c01486{left:450.000000px;}
.x34_c01486{left:460.800000px;}
.x59_c01486{left:462.240000px;}
.x37_c01486{left:470.880000px;}
.x7_c01486{left:472.320000px;}
.x30_c01486{left:482.400000px;}
.x17_c01486{left:493.920000px;}
.x38_c01486{left:504.000000px;}
.xf_c01486{left:505.440000px;}
.x35_c01486{left:514.800000px;}
.x5a_c01486{left:516.240000px;}
.x10_c01486{left:524.880000px;}
.x45_c01486{left:535.680000px;}
.x2a_c01486{left:537.840000px;}
.x39_c01486{left:547.200000px;}
.x1e_c01486{left:558.000000px;}
.x41_c01486{left:559.440000px;}
.x11_c01486{left:568.800000px;}
.x18_c01486{left:579.600000px;}
.x3a_c01486{left:581.040000px;}
.x25_c01486{left:590.400000px;}
.x1f_c01486{left:591.840000px;}
.x8_c01486{left:602.640000px;}
.x19_c01486{left:612.000000px;}
.x50_c01486{left:613.440000px;}
.x9_c01486{left:622.800000px;}
.x26_c01486{left:624.240000px;}
.x3b_c01486{left:634.320000px;}
.x2b_c01486{left:645.840000px;}
.x20_c01486{left:655.920000px;}
.x12_c01486{left:667.440000px;}
.x1_c01486{left:684.720000px;}
.x21_c01486{left:699.840000px;}
@media print{
.v0_c01486{vertical-align:0.000000pt;}
.v1_c01486{vertical-align:2.560000pt;}
.v2_c01486{vertical-align:10.240000pt;}
.ls0_c01486{letter-spacing:0.000000pt;}
.ws1_c01486{word-spacing:-1.315627pt;}
.ws2_c01486{word-spacing:0.000000pt;}
.ws0_c01486{word-spacing:2.632747pt;}
.fs12_c01486{font-size:20.480000pt;}
.fs8_c01486{font-size:30.720000pt;}
.fs6_c01486{font-size:33.280000pt;}
.fsd_c01486{font-size:35.840000pt;}
.fse_c01486{font-size:38.400000pt;}
.fs4_c01486{font-size:40.960000pt;}
.fs9_c01486{font-size:43.520000pt;}
.fs7_c01486{font-size:46.080000pt;}
.fs3_c01486{font-size:48.640000pt;}
.fs1_c01486{font-size:51.200000pt;}
.fs5_c01486{font-size:53.760000pt;}
.fsa_c01486{font-size:56.320000pt;}
.fsc_c01486{font-size:58.880000pt;}
.fs2_c01486{font-size:61.440000pt;}
.fs0_c01486{font-size:64.000000pt;}
.fs11_c01486{font-size:66.560000pt;}
.fs10_c01486{font-size:74.240000pt;}
.fsb_c01486{font-size:76.800000pt;}
.fsf_c01486{font-size:87.040000pt;}
.y0_c01486{bottom:0.000000pt;}
.y67_c01486{bottom:96.640000pt;}
.y66_c01486{bottom:97.280000pt;}
.y68_c01486{bottom:99.200000pt;}
.y69_c01486{bottom:99.840000pt;}
.y65_c01486{bottom:100.480000pt;}
.y63_c01486{bottom:135.040000pt;}
.y60_c01486{bottom:135.680000pt;}
.y64_c01486{bottom:136.320000pt;}
.y62_c01486{bottom:136.960000pt;}
.y5f_c01486{bottom:138.240000pt;}
.y61_c01486{bottom:140.800000pt;}
.y5b_c01486{bottom:172.800000pt;}
.y5d_c01486{bottom:174.080000pt;}
.y5c_c01486{bottom:176.000000pt;}
.y5a_c01486{bottom:176.640000pt;}
.y5e_c01486{bottom:177.280000pt;}
.y53_c01486{bottom:211.840000pt;}
.y54_c01486{bottom:212.480000pt;}
.y56_c01486{bottom:213.120000pt;}
.y55_c01486{bottom:214.400000pt;}
.y58_c01486{bottom:215.040000pt;}
.y59_c01486{bottom:215.680000pt;}
.y57_c01486{bottom:216.320000pt;}
.y4f_c01486{bottom:250.240000pt;}
.y4e_c01486{bottom:250.880000pt;}
.y52_c01486{bottom:251.520000pt;}
.y51_c01486{bottom:253.440000pt;}
.y50_c01486{bottom:254.080000pt;}
.y4b_c01486{bottom:289.280000pt;}
.y4d_c01486{bottom:290.560000pt;}
.y4a_c01486{bottom:291.200000pt;}
.y49_c01486{bottom:291.840000pt;}
.y4c_c01486{bottom:292.480000pt;}
.y47_c01486{bottom:319.360000pt;}
.y42_c01486{bottom:327.040000pt;}
.y45_c01486{bottom:327.680000pt;}
.y48_c01486{bottom:328.320000pt;}
.y43_c01486{bottom:329.600000pt;}
.y44_c01486{bottom:330.240000pt;}
.y46_c01486{bottom:330.880000pt;}
.y3e_c01486{bottom:366.080000pt;}
.y40_c01486{bottom:366.720000pt;}
.y41_c01486{bottom:368.000000pt;}
.y3f_c01486{bottom:368.640000pt;}
.y3b_c01486{bottom:404.480000pt;}
.y3d_c01486{bottom:405.120000pt;}
.y3a_c01486{bottom:407.040000pt;}
.y3c_c01486{bottom:407.680000pt;}
.y38_c01486{bottom:442.240000pt;}
.y37_c01486{bottom:442.880000pt;}
.y36_c01486{bottom:444.800000pt;}
.y35_c01486{bottom:445.440000pt;}
.y39_c01486{bottom:446.080000pt;}
.y34_c01486{bottom:490.880000pt;}
.y33_c01486{bottom:492.160000pt;}
.y32_c01486{bottom:492.800000pt;}
.y31_c01486{bottom:528.000000pt;}
.y30_c01486{bottom:530.560000pt;}
.y2f_c01486{bottom:531.200000pt;}
.y2d_c01486{bottom:566.400000pt;}
.y2e_c01486{bottom:568.320000pt;}
.y2c_c01486{bottom:568.960000pt;}
.y26_c01486{bottom:604.160000pt;}
.y28_c01486{bottom:604.800000pt;}
.y27_c01486{bottom:605.440000pt;}
.y2a_c01486{bottom:606.720000pt;}
.y29_c01486{bottom:607.360000pt;}
.y2b_c01486{bottom:608.000000pt;}
.y25_c01486{bottom:642.560000pt;}
.y22_c01486{bottom:643.200000pt;}
.y24_c01486{bottom:644.480000pt;}
.y23_c01486{bottom:645.120000pt;}
.y21_c01486{bottom:645.760000pt;}
.y1e_c01486{bottom:680.960000pt;}
.y1f_c01486{bottom:681.600000pt;}
.y20_c01486{bottom:682.880000pt;}
.y1d_c01486{bottom:683.520000pt;}
.y18_c01486{bottom:719.360000pt;}
.y1a_c01486{bottom:720.000000pt;}
.y1b_c01486{bottom:721.280000pt;}
.y19_c01486{bottom:721.920000pt;}
.y1c_c01486{bottom:722.560000pt;}
.y17_c01486{bottom:757.760000pt;}
.y15_c01486{bottom:759.680000pt;}
.y14_c01486{bottom:760.320000pt;}
.y16_c01486{bottom:760.960000pt;}
.y11_c01486{bottom:796.160000pt;}
.y12_c01486{bottom:796.800000pt;}
.y10_c01486{bottom:797.440000pt;}
.y13_c01486{bottom:798.080000pt;}
.yf_c01486{bottom:798.720000pt;}
.yd_c01486{bottom:833.920000pt;}
.yb_c01486{bottom:834.560000pt;}
.yc_c01486{bottom:835.200000pt;}
.ye_c01486{bottom:836.480000pt;}
.ya_c01486{bottom:837.120000pt;}
.y8_c01486{bottom:871.680000pt;}
.y7_c01486{bottom:872.320000pt;}
.y9_c01486{bottom:874.240000pt;}
.y5_c01486{bottom:874.880000pt;}
.y6_c01486{bottom:875.520000pt;}
.y3_c01486{bottom:910.720000pt;}
.y4_c01486{bottom:912.640000pt;}
.y2_c01486{bottom:913.280000pt;}
.y1_c01486{bottom:972.160000pt;}
.h16_c01486{height:18.430000pt;}
.h9_c01486{height:27.645000pt;}
.hd_c01486{height:29.948750pt;}
.h11_c01486{height:32.252500pt;}
.h12_c01486{height:34.556250pt;}
.h6_c01486{height:36.860000pt;}
.ha_c01486{height:39.163750pt;}
.hb_c01486{height:41.467500pt;}
.h5_c01486{height:43.771250pt;}
.h8_c01486{height:44.027500pt;}
.h3_c01486{height:46.075000pt;}
.h7_c01486{height:48.378750pt;}
.hc_c01486{height:50.682500pt;}
.hf_c01486{height:52.986250pt;}
.h4_c01486{height:55.290000pt;}
.h10_c01486{height:56.315000pt;}
.h2_c01486{height:57.593750pt;}
.h15_c01486{height:59.897500pt;}
.h14_c01486{height:66.808750pt;}
.he_c01486{height:69.112500pt;}
.h13_c01486{height:78.327500pt;}
.h0_c01486{height:1028.480000pt;}
.h1_c01486{height:1028.666667pt;}
.w0_c01486{width:678.400000pt;}
.w1_c01486{width:678.666667pt;}
.x0_c01486{left:0.000000pt;}
.x2_c01486{left:34.560000pt;}
.x55_c01486{left:36.480000pt;}
.x51_c01486{left:38.400000pt;}
.x4c_c01486{left:64.640000pt;}
.x2c_c01486{left:73.600000pt;}
.xa_c01486{left:81.920000pt;}
.x1a_c01486{left:92.800000pt;}
.x27_c01486{left:101.760000pt;}
.x52_c01486{left:103.680000pt;}
.x22_c01486{left:112.000000pt;}
.x13_c01486{left:120.960000pt;}
.x3f_c01486{left:131.840000pt;}
.x1b_c01486{left:140.800000pt;}
.x5b_c01486{left:144.000000pt;}
.x31_c01486{left:150.400000pt;}
.xb_c01486{left:159.360000pt;}
.x23_c01486{left:169.600000pt;}
.x42_c01486{left:170.880000pt;}
.x3_c01486{left:178.560000pt;}
.x1c_c01486{left:179.840000pt;}
.x36_c01486{left:189.440000pt;}
.x32_c01486{left:197.120000pt;}
.x4d_c01486{left:198.400000pt;}
.x3c_c01486{left:207.360000pt;}
.xc_c01486{left:208.640000pt;}
.x43_c01486{left:217.600000pt;}
.x4a_c01486{left:226.560000pt;}
.x40_c01486{left:227.840000pt;}
.x14_c01486{left:236.800000pt;}
.x46_c01486{left:238.080000pt;}
.x24_c01486{left:246.400000pt;}
.x53_c01486{left:247.680000pt;}
.x28_c01486{left:255.360000pt;}
.x5d_c01486{left:256.640000pt;}
.x2d_c01486{left:264.960000pt;}
.x47_c01486{left:266.240000pt;}
.x33_c01486{left:273.920000pt;}
.x4_c01486{left:276.480000pt;}
.x15_c01486{left:286.080000pt;}
.x3d_c01486{left:294.400000pt;}
.x2e_c01486{left:303.360000pt;}
.x56_c01486{left:305.280000pt;}
.x1d_c01486{left:307.200000pt;}
.xd_c01486{left:313.600000pt;}
.x4e_c01486{left:322.560000pt;}
.x57_c01486{left:323.840000pt;}
.x54_c01486{left:334.080000pt;}
.x5_c01486{left:341.760000pt;}
.x5c_c01486{left:344.320000pt;}
.x48_c01486{left:352.000000pt;}
.x58_c01486{left:353.280000pt;}
.x49_c01486{left:355.200000pt;}
.x6_c01486{left:360.960000pt;}
.x4f_c01486{left:362.880000pt;}
.x16_c01486{left:371.200000pt;}
.x3e_c01486{left:372.480000pt;}
.x44_c01486{left:374.400000pt;}
.x2f_c01486{left:381.440000pt;}
.x29_c01486{left:389.760000pt;}
.x4b_c01486{left:391.040000pt;}
.x5e_c01486{left:392.320000pt;}
.xe_c01486{left:400.000000pt;}
.x34_c01486{left:409.600000pt;}
.x59_c01486{left:410.880000pt;}
.x37_c01486{left:418.560000pt;}
.x7_c01486{left:419.840000pt;}
.x30_c01486{left:428.800000pt;}
.x17_c01486{left:439.040000pt;}
.x38_c01486{left:448.000000pt;}
.xf_c01486{left:449.280000pt;}
.x35_c01486{left:457.600000pt;}
.x5a_c01486{left:458.880000pt;}
.x10_c01486{left:466.560000pt;}
.x45_c01486{left:476.160000pt;}
.x2a_c01486{left:478.080000pt;}
.x39_c01486{left:486.400000pt;}
.x1e_c01486{left:496.000000pt;}
.x41_c01486{left:497.280000pt;}
.x11_c01486{left:505.600000pt;}
.x18_c01486{left:515.200000pt;}
.x3a_c01486{left:516.480000pt;}
.x25_c01486{left:524.800000pt;}
.x1f_c01486{left:526.080000pt;}
.x8_c01486{left:535.680000pt;}
.x19_c01486{left:544.000000pt;}
.x50_c01486{left:545.280000pt;}
.x9_c01486{left:553.600000pt;}
.x26_c01486{left:554.880000pt;}
.x3b_c01486{left:563.840000pt;}
.x2b_c01486{left:574.080000pt;}
.x20_c01486{left:583.040000pt;}
.x12_c01486{left:593.280000pt;}
.x1_c01486{left:608.640000pt;}
.x21_c01486{left:622.080000pt;}
}





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

.ir_c01487:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01487{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01487;src:url('chunks/assets/font_a7e40ecd07208f4e26e7af7e.woff2')format("woff");}.ff1_c01487{font-family:ff1_c01487;line-height:1.109863;font-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_c01487{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);}
.m54_c01487{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m7_c01487{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);}
.m27_c01487{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);}
.m48_c01487{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m57_c01487{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01487{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01487{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m36_c01487{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m52_c01487{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m23_c01487{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01487{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m41_c01487{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m4_c01487{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m8_c01487{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);}
.m38_c01487{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);}
.m4f_c01487{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);}
.m53_c01487{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m12_c01487{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);}
.m4c_c01487{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m11_c01487{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);}
.m2_c01487{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m6_c01487{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01487{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);}
.m40_c01487{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m51_c01487{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m0_c01487{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);}
.m47_c01487{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);}
.m25_c01487{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01487{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);}
.m9_c01487{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m49_c01487{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);}
.m4a_c01487{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);}
.m56_c01487{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m16_c01487{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m58_c01487{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);}
.m44_c01487{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m20_c01487{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);}
.m32_c01487{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01487{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);}
.m30_c01487{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);}
.m45_c01487{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01487{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01487{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01487{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);}
.mc_c01487{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01487{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01487{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);}
.m24_c01487{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01487{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);}
.m3_c01487{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01487{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01487{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m55_c01487{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);}
.m14_c01487{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m26_c01487{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01487{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);}
.m46_c01487{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m10_c01487{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m5_c01487{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m34_c01487{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m50_c01487{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);}
.m31_c01487{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);}
.m1d_c01487{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m22_c01487{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01487{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m17_c01487{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);}
.m42_c01487{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.md_c01487{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01487{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01487{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.mb_c01487{transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);}
.m1_c01487{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01487{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m43_c01487{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);}
.ma_c01487{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.me_c01487{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.m37_c01487{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);}
.m35_c01487{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m19_c01487{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m15_c01487{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m18_c01487{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m33_c01487{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m39_c01487{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m28_c01487{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);}
.mf_c01487{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);}
.m13_c01487{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m29_c01487{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m21_c01487{transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);}
.v0_c01487{vertical-align:0.000000px;}
.ls0_c01487{letter-spacing:0.000000px;}
.sc__c01487{text-shadow:none;}
.sc0_c01487{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01487{-webkit-text-stroke:0px transparent;}
.sc0_c01487{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01487{word-spacing:0.000000px;}
.fc0_c01487{color:transparent;}
.fs1_c01487{font-size:34.560000px;}
.fsa_c01487{font-size:37.440000px;}
.fsd_c01487{font-size:40.320000px;}
.fs8_c01487{font-size:43.200000px;}
.fs5_c01487{font-size:46.080000px;}
.fs3_c01487{font-size:48.960000px;}
.fs9_c01487{font-size:51.840000px;}
.fsc_c01487{font-size:54.720000px;}
.fsb_c01487{font-size:57.600000px;}
.fs6_c01487{font-size:60.480000px;}
.fs2_c01487{font-size:63.360000px;}
.fs4_c01487{font-size:66.240000px;}
.fs7_c01487{font-size:69.120000px;}
.fs0_c01487{font-size:72.000000px;}
.y0_c01487{bottom:0.000000px;}
.y5b_c01487{bottom:71.280000px;}
.y5c_c01487{bottom:74.160000px;}
.y5a_c01487{bottom:74.880000px;}
.y59_c01487{bottom:117.360000px;}
.y57_c01487{bottom:118.080000px;}
.y58_c01487{bottom:118.800000px;}
.y53_c01487{bottom:157.680000px;}
.y55_c01487{bottom:158.400000px;}
.y56_c01487{bottom:159.120000px;}
.y54_c01487{bottom:160.560000px;}
.y52_c01487{bottom:161.280000px;}
.y51_c01487{bottom:200.880000px;}
.y4e_c01487{bottom:201.600000px;}
.y50_c01487{bottom:203.040000px;}
.y4f_c01487{bottom:203.760000px;}
.y4c_c01487{bottom:243.360000px;}
.y4b_c01487{bottom:246.960000px;}
.y4d_c01487{bottom:247.680000px;}
.y4a_c01487{bottom:299.520000px;}
.y47_c01487{bottom:339.840000px;}
.y48_c01487{bottom:340.560000px;}
.y49_c01487{bottom:343.440000px;}
.y46_c01487{bottom:344.160000px;}
.y43_c01487{bottom:383.760000px;}
.y45_c01487{bottom:384.480000px;}
.y44_c01487{bottom:385.920000px;}
.y42_c01487{bottom:386.640000px;}
.y41_c01487{bottom:387.360000px;}
.y3d_c01487{bottom:426.240000px;}
.y3e_c01487{bottom:426.960000px;}
.y40_c01487{bottom:427.680000px;}
.y3f_c01487{bottom:429.120000px;}
.y3c_c01487{bottom:429.840000px;}
.y38_c01487{bottom:469.440000px;}
.y3a_c01487{bottom:470.160000px;}
.y3b_c01487{bottom:470.880000px;}
.y39_c01487{bottom:472.320000px;}
.y37_c01487{bottom:473.040000px;}
.y36_c01487{bottom:525.600000px;}
.y34_c01487{bottom:526.320000px;}
.y35_c01487{bottom:527.040000px;}
.y32_c01487{bottom:566.640000px;}
.y31_c01487{bottom:567.360000px;}
.y33_c01487{bottom:569.520000px;}
.y30_c01487{bottom:570.240000px;}
.y2e_c01487{bottom:609.120000px;}
.y2f_c01487{bottom:609.840000px;}
.y2c_c01487{bottom:612.720000px;}
.y2d_c01487{bottom:613.440000px;}
.y29_c01487{bottom:653.760000px;}
.y2b_c01487{bottom:655.200000px;}
.y2a_c01487{bottom:655.920000px;}
.y28_c01487{bottom:656.640000px;}
.y27_c01487{bottom:695.520000px;}
.y26_c01487{bottom:696.240000px;}
.y25_c01487{bottom:696.960000px;}
.y24_c01487{bottom:699.120000px;}
.y22_c01487{bottom:738.720000px;}
.y23_c01487{bottom:741.600000px;}
.y21_c01487{bottom:742.320000px;}
.y20_c01487{bottom:781.920000px;}
.y1e_c01487{bottom:782.640000px;}
.y1c_c01487{bottom:783.360000px;}
.y1f_c01487{bottom:784.800000px;}
.y1d_c01487{bottom:785.520000px;}
.y19_c01487{bottom:824.400000px;}
.y1b_c01487{bottom:825.120000px;}
.y1a_c01487{bottom:827.280000px;}
.y18_c01487{bottom:828.000000px;}
.y17_c01487{bottom:828.720000px;}
.y15_c01487{bottom:877.680000px;}
.y10_c01487{bottom:879.120000px;}
.y16_c01487{bottom:879.840000px;}
.y14_c01487{bottom:880.560000px;}
.y13_c01487{bottom:881.280000px;}
.y12_c01487{bottom:882.000000px;}
.y11_c01487{bottom:882.720000px;}
.yd_c01487{bottom:920.880000px;}
.yf_c01487{bottom:923.760000px;}
.yc_c01487{bottom:924.480000px;}
.ye_c01487{bottom:925.200000px;}
.yb_c01487{bottom:966.240000px;}
.ya_c01487{bottom:966.960000px;}
.y9_c01487{bottom:967.680000px;}
.y8_c01487{bottom:968.400000px;}
.y7_c01487{bottom:1017.360000px;}
.y5_c01487{bottom:1018.080000px;}
.y3_c01487{bottom:1018.800000px;}
.y6_c01487{bottom:1020.960000px;}
.y4_c01487{bottom:1021.680000px;}
.y2_c01487{bottom:1022.400000px;}
.y1_c01487{bottom:1100.160000px;}
.h3_c01487{height:31.100625px;}
.hc_c01487{height:33.692344px;}
.hf_c01487{height:36.284062px;}
.ha_c01487{height:38.875781px;}
.h7_c01487{height:41.467500px;}
.h5_c01487{height:44.059219px;}
.hb_c01487{height:46.650937px;}
.he_c01487{height:49.242656px;}
.hd_c01487{height:51.834375px;}
.h8_c01487{height:54.426094px;}
.h4_c01487{height:57.017812px;}
.h6_c01487{height:59.609531px;}
.h9_c01487{height:62.201250px;}
.h2_c01487{height:64.792969px;}
.h0_c01487{height:1152.720000px;}
.h1_c01487{height:1152.750000px;}
.w0_c01487{width:756.000000px;}
.x0_c01487{left:0.000000px;}
.x2e_c01487{left:36.000000px;}
.x2_c01487{left:37.440000px;}
.x45_c01487{left:38.880000px;}
.x13_c01487{left:69.840000px;}
.x49_c01487{left:72.720000px;}
.x34_c01487{left:79.920000px;}
.x2f_c01487{left:81.360000px;}
.x4f_c01487{left:90.720000px;}
.x3_c01487{left:92.880000px;}
.x14_c01487{left:102.240000px;}
.x2a_c01487{left:113.040000px;}
.x42_c01487{left:123.120000px;}
.x27_c01487{left:134.640000px;}
.x24_c01487{left:145.440000px;}
.xa_c01487{left:146.880000px;}
.x30_c01487{left:155.520000px;}
.x3a_c01487{left:167.040000px;}
.x1c_c01487{left:168.480000px;}
.xb_c01487{left:177.840000px;}
.x4_c01487{left:179.280000px;}
.x1d_c01487{left:188.640000px;}
.x31_c01487{left:198.720000px;}
.x3b_c01487{left:200.880000px;}
.xc_c01487{left:210.240000px;}
.x3f_c01487{left:211.680000px;}
.x15_c01487{left:231.840000px;}
.x35_c01487{left:242.640000px;}
.x4a_c01487{left:244.080000px;}
.x1e_c01487{left:254.160000px;}
.x5_c01487{left:257.040000px;}
.x43_c01487{left:264.240000px;}
.x25_c01487{left:265.680000px;}
.x16_c01487{left:274.320000px;}
.x51_c01487{left:276.480000px;}
.x1f_c01487{left:285.840000px;}
.x28_c01487{left:287.280000px;}
.x40_c01487{left:295.920000px;}
.xd_c01487{left:298.080000px;}
.x17_c01487{left:307.440000px;}
.x4b_c01487{left:318.240000px;}
.x20_c01487{left:319.680000px;}
.xe_c01487{left:330.480000px;}
.x6_c01487{left:339.120000px;}
.x2b_c01487{left:341.280000px;}
.x3c_c01487{left:349.920000px;}
.x7_c01487{left:361.440000px;}
.x18_c01487{left:372.960000px;}
.x4c_c01487{left:383.040000px;}
.x26_c01487{left:384.480000px;}
.x21_c01487{left:394.560000px;}
.x19_c01487{left:405.360000px;}
.x32_c01487{left:416.160000px;}
.xf_c01487{left:426.240000px;}
.x8_c01487{left:427.680000px;}
.x4d_c01487{left:437.040000px;}
.x22_c01487{left:438.480000px;}
.x36_c01487{left:447.840000px;}
.x10_c01487{left:458.640000px;}
.x52_c01487{left:460.080000px;}
.x47_c01487{left:470.160000px;}
.x37_c01487{left:480.240000px;}
.x9_c01487{left:491.760000px;}
.x3d_c01487{left:501.120000px;}
.x44_c01487{left:512.640000px;}
.x1a_c01487{left:514.080000px;}
.x50_c01487{left:522.720000px;}
.x29_c01487{left:524.160000px;}
.x11_c01487{left:535.680000px;}
.x33_c01487{left:545.760000px;}
.x23_c01487{left:555.840000px;}
.x2c_c01487{left:566.640000px;}
.x12_c01487{left:568.080000px;}
.x38_c01487{left:578.880000px;}
.x48_c01487{left:587.520000px;}
.x46_c01487{left:588.960000px;}
.x2d_c01487{left:599.040000px;}
.x53_c01487{left:611.280000px;}
.x3e_c01487{left:621.360000px;}
.x41_c01487{left:632.160000px;}
.x1b_c01487{left:642.960000px;}
.x4e_c01487{left:653.760000px;}
.x1_c01487{left:672.480000px;}
.x39_c01487{left:676.080000px;}
@media print{
.v0_c01487{vertical-align:0.000000pt;}
.ls0_c01487{letter-spacing:0.000000pt;}
.ws0_c01487{word-spacing:0.000000pt;}
.fs1_c01487{font-size:30.720000pt;}
.fsa_c01487{font-size:33.280000pt;}
.fsd_c01487{font-size:35.840000pt;}
.fs8_c01487{font-size:38.400000pt;}
.fs5_c01487{font-size:40.960000pt;}
.fs3_c01487{font-size:43.520000pt;}
.fs9_c01487{font-size:46.080000pt;}
.fsc_c01487{font-size:48.640000pt;}
.fsb_c01487{font-size:51.200000pt;}
.fs6_c01487{font-size:53.760000pt;}
.fs2_c01487{font-size:56.320000pt;}
.fs4_c01487{font-size:58.880000pt;}
.fs7_c01487{font-size:61.440000pt;}
.fs0_c01487{font-size:64.000000pt;}
.y0_c01487{bottom:0.000000pt;}
.y5b_c01487{bottom:63.360000pt;}
.y5c_c01487{bottom:65.920000pt;}
.y5a_c01487{bottom:66.560000pt;}
.y59_c01487{bottom:104.320000pt;}
.y57_c01487{bottom:104.960000pt;}
.y58_c01487{bottom:105.600000pt;}
.y53_c01487{bottom:140.160000pt;}
.y55_c01487{bottom:140.800000pt;}
.y56_c01487{bottom:141.440000pt;}
.y54_c01487{bottom:142.720000pt;}
.y52_c01487{bottom:143.360000pt;}
.y51_c01487{bottom:178.560000pt;}
.y4e_c01487{bottom:179.200000pt;}
.y50_c01487{bottom:180.480000pt;}
.y4f_c01487{bottom:181.120000pt;}
.y4c_c01487{bottom:216.320000pt;}
.y4b_c01487{bottom:219.520000pt;}
.y4d_c01487{bottom:220.160000pt;}
.y4a_c01487{bottom:266.240000pt;}
.y47_c01487{bottom:302.080000pt;}
.y48_c01487{bottom:302.720000pt;}
.y49_c01487{bottom:305.280000pt;}
.y46_c01487{bottom:305.920000pt;}
.y43_c01487{bottom:341.120000pt;}
.y45_c01487{bottom:341.760000pt;}
.y44_c01487{bottom:343.040000pt;}
.y42_c01487{bottom:343.680000pt;}
.y41_c01487{bottom:344.320000pt;}
.y3d_c01487{bottom:378.880000pt;}
.y3e_c01487{bottom:379.520000pt;}
.y40_c01487{bottom:380.160000pt;}
.y3f_c01487{bottom:381.440000pt;}
.y3c_c01487{bottom:382.080000pt;}
.y38_c01487{bottom:417.280000pt;}
.y3a_c01487{bottom:417.920000pt;}
.y3b_c01487{bottom:418.560000pt;}
.y39_c01487{bottom:419.840000pt;}
.y37_c01487{bottom:420.480000pt;}
.y36_c01487{bottom:467.200000pt;}
.y34_c01487{bottom:467.840000pt;}
.y35_c01487{bottom:468.480000pt;}
.y32_c01487{bottom:503.680000pt;}
.y31_c01487{bottom:504.320000pt;}
.y33_c01487{bottom:506.240000pt;}
.y30_c01487{bottom:506.880000pt;}
.y2e_c01487{bottom:541.440000pt;}
.y2f_c01487{bottom:542.080000pt;}
.y2c_c01487{bottom:544.640000pt;}
.y2d_c01487{bottom:545.280000pt;}
.y29_c01487{bottom:581.120000pt;}
.y2b_c01487{bottom:582.400000pt;}
.y2a_c01487{bottom:583.040000pt;}
.y28_c01487{bottom:583.680000pt;}
.y27_c01487{bottom:618.240000pt;}
.y26_c01487{bottom:618.880000pt;}
.y25_c01487{bottom:619.520000pt;}
.y24_c01487{bottom:621.440000pt;}
.y22_c01487{bottom:656.640000pt;}
.y23_c01487{bottom:659.200000pt;}
.y21_c01487{bottom:659.840000pt;}
.y20_c01487{bottom:695.040000pt;}
.y1e_c01487{bottom:695.680000pt;}
.y1c_c01487{bottom:696.320000pt;}
.y1f_c01487{bottom:697.600000pt;}
.y1d_c01487{bottom:698.240000pt;}
.y19_c01487{bottom:732.800000pt;}
.y1b_c01487{bottom:733.440000pt;}
.y1a_c01487{bottom:735.360000pt;}
.y18_c01487{bottom:736.000000pt;}
.y17_c01487{bottom:736.640000pt;}
.y15_c01487{bottom:780.160000pt;}
.y10_c01487{bottom:781.440000pt;}
.y16_c01487{bottom:782.080000pt;}
.y14_c01487{bottom:782.720000pt;}
.y13_c01487{bottom:783.360000pt;}
.y12_c01487{bottom:784.000000pt;}
.y11_c01487{bottom:784.640000pt;}
.yd_c01487{bottom:818.560000pt;}
.yf_c01487{bottom:821.120000pt;}
.yc_c01487{bottom:821.760000pt;}
.ye_c01487{bottom:822.400000pt;}
.yb_c01487{bottom:858.880000pt;}
.ya_c01487{bottom:859.520000pt;}
.y9_c01487{bottom:860.160000pt;}
.y8_c01487{bottom:860.800000pt;}
.y7_c01487{bottom:904.320000pt;}
.y5_c01487{bottom:904.960000pt;}
.y3_c01487{bottom:905.600000pt;}
.y6_c01487{bottom:907.520000pt;}
.y4_c01487{bottom:908.160000pt;}
.y2_c01487{bottom:908.800000pt;}
.y1_c01487{bottom:977.920000pt;}
.h3_c01487{height:27.645000pt;}
.hc_c01487{height:29.948750pt;}
.hf_c01487{height:32.252500pt;}
.ha_c01487{height:34.556250pt;}
.h7_c01487{height:36.860000pt;}
.h5_c01487{height:39.163750pt;}
.hb_c01487{height:41.467500pt;}
.he_c01487{height:43.771250pt;}
.hd_c01487{height:46.075000pt;}
.h8_c01487{height:48.378750pt;}
.h4_c01487{height:50.682500pt;}
.h6_c01487{height:52.986250pt;}
.h9_c01487{height:55.290000pt;}
.h2_c01487{height:57.593750pt;}
.h0_c01487{height:1024.640000pt;}
.h1_c01487{height:1024.666667pt;}
.w0_c01487{width:672.000000pt;}
.x0_c01487{left:0.000000pt;}
.x2e_c01487{left:32.000000pt;}
.x2_c01487{left:33.280000pt;}
.x45_c01487{left:34.560000pt;}
.x13_c01487{left:62.080000pt;}
.x49_c01487{left:64.640000pt;}
.x34_c01487{left:71.040000pt;}
.x2f_c01487{left:72.320000pt;}
.x4f_c01487{left:80.640000pt;}
.x3_c01487{left:82.560000pt;}
.x14_c01487{left:90.880000pt;}
.x2a_c01487{left:100.480000pt;}
.x42_c01487{left:109.440000pt;}
.x27_c01487{left:119.680000pt;}
.x24_c01487{left:129.280000pt;}
.xa_c01487{left:130.560000pt;}
.x30_c01487{left:138.240000pt;}
.x3a_c01487{left:148.480000pt;}
.x1c_c01487{left:149.760000pt;}
.xb_c01487{left:158.080000pt;}
.x4_c01487{left:159.360000pt;}
.x1d_c01487{left:167.680000pt;}
.x31_c01487{left:176.640000pt;}
.x3b_c01487{left:178.560000pt;}
.xc_c01487{left:186.880000pt;}
.x3f_c01487{left:188.160000pt;}
.x15_c01487{left:206.080000pt;}
.x35_c01487{left:215.680000pt;}
.x4a_c01487{left:216.960000pt;}
.x1e_c01487{left:225.920000pt;}
.x5_c01487{left:228.480000pt;}
.x43_c01487{left:234.880000pt;}
.x25_c01487{left:236.160000pt;}
.x16_c01487{left:243.840000pt;}
.x51_c01487{left:245.760000pt;}
.x1f_c01487{left:254.080000pt;}
.x28_c01487{left:255.360000pt;}
.x40_c01487{left:263.040000pt;}
.xd_c01487{left:264.960000pt;}
.x17_c01487{left:273.280000pt;}
.x4b_c01487{left:282.880000pt;}
.x20_c01487{left:284.160000pt;}
.xe_c01487{left:293.760000pt;}
.x6_c01487{left:301.440000pt;}
.x2b_c01487{left:303.360000pt;}
.x3c_c01487{left:311.040000pt;}
.x7_c01487{left:321.280000pt;}
.x18_c01487{left:331.520000pt;}
.x4c_c01487{left:340.480000pt;}
.x26_c01487{left:341.760000pt;}
.x21_c01487{left:350.720000pt;}
.x19_c01487{left:360.320000pt;}
.x32_c01487{left:369.920000pt;}
.xf_c01487{left:378.880000pt;}
.x8_c01487{left:380.160000pt;}
.x4d_c01487{left:388.480000pt;}
.x22_c01487{left:389.760000pt;}
.x36_c01487{left:398.080000pt;}
.x10_c01487{left:407.680000pt;}
.x52_c01487{left:408.960000pt;}
.x47_c01487{left:417.920000pt;}
.x37_c01487{left:426.880000pt;}
.x9_c01487{left:437.120000pt;}
.x3d_c01487{left:445.440000pt;}
.x44_c01487{left:455.680000pt;}
.x1a_c01487{left:456.960000pt;}
.x50_c01487{left:464.640000pt;}
.x29_c01487{left:465.920000pt;}
.x11_c01487{left:476.160000pt;}
.x33_c01487{left:485.120000pt;}
.x23_c01487{left:494.080000pt;}
.x2c_c01487{left:503.680000pt;}
.x12_c01487{left:504.960000pt;}
.x38_c01487{left:514.560000pt;}
.x48_c01487{left:522.240000pt;}
.x46_c01487{left:523.520000pt;}
.x2d_c01487{left:532.480000pt;}
.x53_c01487{left:543.360000pt;}
.x3e_c01487{left:552.320000pt;}
.x41_c01487{left:561.920000pt;}
.x1b_c01487{left:571.520000pt;}
.x4e_c01487{left:581.120000pt;}
.x1_c01487{left:597.760000pt;}
.x39_c01487{left:600.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_c01488 {
    display:none;
  }
  .loading-indicator_c01488.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01488 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01488 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01488" -> "#page-container .classname_c01488")
 */
.pf_c01488 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01488 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01488.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01488 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01488 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01488 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01488 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01488 {overflow:visible;}
  }
}
.c_c01488 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01488 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01488:after { /* webkit #35443 */
  content: '';
}
.t_c01488:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01488 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01488 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01488 { /* info for Javascript */
  display:none;
}
.l_c01488 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01488 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01488 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01488:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01488{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01488;src:url('chunks/assets/font_26b579fd1a9a62f1e9af7ba4.woff2')format("woff");}.ff1_c01488{font-family:ff1_c01488;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3d_c01488{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_c01488{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);}
.m58_c01488{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);}
.m4d_c01488{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01488{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m43_c01488{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m56_c01488{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m45_c01488{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m59_c01488{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m15_c01488{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m8_c01488{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m53_c01488{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.ma_c01488{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m21_c01488{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m42_c01488{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);}
.m48_c01488{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.md_c01488{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m57_c01488{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m4_c01488{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_c01488{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01488{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m0_c01488{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01488{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);}
.m27_c01488{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);}
.m28_c01488{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01488{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m12_c01488{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m1_c01488{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);}
.m1c_c01488{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);}
.m26_c01488{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m10_c01488{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);}
.mf_c01488{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01488{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);}
.m32_c01488{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);}
.m1b_c01488{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);}
.m36_c01488{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01488{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01488{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m50_c01488{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);}
.m37_c01488{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01488{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m31_c01488{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m44_c01488{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);}
.m38_c01488{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_c01488{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m7_c01488{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m3_c01488{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m13_c01488{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m23_c01488{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_c01488{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m35_c01488{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01488{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);}
.m2_c01488{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01488{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m11_c01488{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01488{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m20_c01488{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.mb_c01488{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);}
.m55_c01488{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m16_c01488{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m40_c01488{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m22_c01488{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);}
.m4c_c01488{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01488{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m5_c01488{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m51_c01488{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);}
.m14_c01488{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);}
.m4b_c01488{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.me_c01488{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m17_c01488{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);}
.mc_c01488{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m30_c01488{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m6_c01488{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);}
.m29_c01488{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m52_c01488{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m25_c01488{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m41_c01488{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);}
.m54_c01488{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);}
.m46_c01488{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01488{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m39_c01488{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m33_c01488{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01488{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m47_c01488{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01488{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m49_c01488{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);}
.m9_c01488{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m34_c01488{transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01488{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01488{transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);}
.v1_c01488{vertical-align:-2.880000px;}
.v0_c01488{vertical-align:0.000000px;}
.ls0_c01488{letter-spacing:0.000000px;}
.sc__c01488{text-shadow:none;}
.sc0_c01488{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01488{-webkit-text-stroke:0px transparent;}
.sc0_c01488{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01488{word-spacing:0.000000px;}
.ws0_c01488{word-spacing:1.674720px;}
.fc0_c01488{color:transparent;}
.fs6_c01488{font-size:34.560000px;}
.fs4_c01488{font-size:37.440000px;}
.fs9_c01488{font-size:40.320000px;}
.fs7_c01488{font-size:46.080000px;}
.fs3_c01488{font-size:48.960000px;}
.fs2_c01488{font-size:51.840000px;}
.fsd_c01488{font-size:54.720000px;}
.fsa_c01488{font-size:57.600000px;}
.fs1_c01488{font-size:60.480000px;}
.fsb_c01488{font-size:63.360000px;}
.fs5_c01488{font-size:66.240000px;}
.fs8_c01488{font-size:69.120000px;}
.fsc_c01488{font-size:72.000000px;}
.fs0_c01488{font-size:74.880000px;}
.y0_c01488{bottom:0.000000px;}
.y59_c01488{bottom:104.400000px;}
.y5c_c01488{bottom:105.120000px;}
.y5a_c01488{bottom:106.560000px;}
.y5b_c01488{bottom:107.280000px;}
.y58_c01488{bottom:108.000000px;}
.y54_c01488{bottom:147.600000px;}
.y55_c01488{bottom:148.320000px;}
.y57_c01488{bottom:149.040000px;}
.y56_c01488{bottom:149.760000px;}
.y53_c01488{bottom:150.480000px;}
.y52_c01488{bottom:151.200000px;}
.y4d_c01488{bottom:190.080000px;}
.y51_c01488{bottom:191.520000px;}
.y4f_c01488{bottom:192.960000px;}
.y4e_c01488{bottom:193.680000px;}
.y50_c01488{bottom:194.400000px;}
.y4a_c01488{bottom:234.000000px;}
.y4b_c01488{bottom:234.720000px;}
.y4c_c01488{bottom:236.880000px;}
.y49_c01488{bottom:237.600000px;}
.y46_c01488{bottom:277.920000px;}
.y47_c01488{bottom:280.080000px;}
.y48_c01488{bottom:280.800000px;}
.y44_c01488{bottom:331.920000px;}
.y45_c01488{bottom:334.080000px;}
.y43_c01488{bottom:334.800000px;}
.y42_c01488{bottom:374.400000px;}
.y3f_c01488{bottom:375.120000px;}
.y41_c01488{bottom:377.280000px;}
.y40_c01488{bottom:378.000000px;}
.y3d_c01488{bottom:418.320000px;}
.y3c_c01488{bottom:420.480000px;}
.y3e_c01488{bottom:421.200000px;}
.y3a_c01488{bottom:460.080000px;}
.y38_c01488{bottom:460.800000px;}
.y39_c01488{bottom:463.680000px;}
.y3b_c01488{bottom:464.400000px;}
.y34_c01488{bottom:504.000000px;}
.y37_c01488{bottom:506.160000px;}
.y36_c01488{bottom:506.880000px;}
.y35_c01488{bottom:507.600000px;}
.y33_c01488{bottom:545.760000px;}
.y32_c01488{bottom:547.200000px;}
.y30_c01488{bottom:549.360000px;}
.y31_c01488{bottom:550.080000px;}
.y2e_c01488{bottom:589.680000px;}
.y2c_c01488{bottom:591.840000px;}
.y2f_c01488{bottom:592.560000px;}
.y2d_c01488{bottom:593.280000px;}
.y2a_c01488{bottom:631.440000px;}
.y2b_c01488{bottom:632.880000px;}
.y28_c01488{bottom:635.040000px;}
.y29_c01488{bottom:635.760000px;}
.y27_c01488{bottom:674.640000px;}
.y26_c01488{bottom:677.520000px;}
.y25_c01488{bottom:678.240000px;}
.y24_c01488{bottom:678.960000px;}
.y22_c01488{bottom:717.840000px;}
.y21_c01488{bottom:718.560000px;}
.y23_c01488{bottom:719.280000px;}
.y20_c01488{bottom:721.440000px;}
.y1e_c01488{bottom:761.040000px;}
.y1d_c01488{bottom:761.760000px;}
.y1c_c01488{bottom:762.480000px;}
.y1b_c01488{bottom:764.640000px;}
.y1f_c01488{bottom:765.360000px;}
.y1a_c01488{bottom:804.960000px;}
.y18_c01488{bottom:807.840000px;}
.y19_c01488{bottom:808.560000px;}
.y16_c01488{bottom:848.160000px;}
.y17_c01488{bottom:850.320000px;}
.y15_c01488{bottom:851.040000px;}
.y13_c01488{bottom:890.640000px;}
.y12_c01488{bottom:891.360000px;}
.y14_c01488{bottom:893.520000px;}
.y11_c01488{bottom:894.240000px;}
.yc_c01488{bottom:933.840000px;}
.ye_c01488{bottom:934.560000px;}
.yd_c01488{bottom:935.280000px;}
.y10_c01488{bottom:936.000000px;}
.yb_c01488{bottom:936.720000px;}
.yf_c01488{bottom:937.440000px;}
.ya_c01488{bottom:976.320000px;}
.y8_c01488{bottom:977.040000px;}
.y7_c01488{bottom:979.920000px;}
.y9_c01488{bottom:980.640000px;}
.y6_c01488{bottom:1019.520000px;}
.y2_c01488{bottom:1020.960000px;}
.y5_c01488{bottom:1021.680000px;}
.y4_c01488{bottom:1022.400000px;}
.y3_c01488{bottom:1023.120000px;}
.y1_c01488{bottom:1090.080000px;}
.h8_c01488{height:31.100625px;}
.h6_c01488{height:33.692344px;}
.hb_c01488{height:36.284062px;}
.h9_c01488{height:41.467500px;}
.h5_c01488{height:44.059219px;}
.h4_c01488{height:46.650937px;}
.hf_c01488{height:49.242656px;}
.hc_c01488{height:51.834375px;}
.h3_c01488{height:54.426094px;}
.hd_c01488{height:57.017812px;}
.h7_c01488{height:59.609531px;}
.ha_c01488{height:62.201250px;}
.he_c01488{height:64.792969px;}
.h2_c01488{height:67.384687px;}
.h0_c01488{height:1153.440000px;}
.h1_c01488{height:1153.500000px;}
.w1_c01488{width:747.750000px;}
.w0_c01488{width:748.080000px;}
.x0_c01488{left:0.000000px;}
.x2a_c01488{left:32.400000px;}
.x2_c01488{left:33.840000px;}
.x4b_c01488{left:36.000000px;}
.x3b_c01488{left:54.000000px;}
.x32_c01488{left:56.160000px;}
.x3f_c01488{left:65.520000px;}
.x12_c01488{left:77.040000px;}
.xb_c01488{left:88.560000px;}
.x2b_c01488{left:90.720000px;}
.x13_c01488{left:99.360000px;}
.x1c_c01488{left:109.440000px;}
.x27_c01488{left:120.240000px;}
.x22_c01488{left:130.320000px;}
.x33_c01488{left:131.760000px;}
.x34_c01488{left:141.840000px;}
.x1d_c01488{left:153.360000px;}
.x3d_c01488{left:162.720000px;}
.x3_c01488{left:164.160000px;}
.x35_c01488{left:174.240000px;}
.xc_c01488{left:185.760000px;}
.x23_c01488{left:196.560000px;}
.x3e_c01488{left:205.920000px;}
.xd_c01488{left:207.360000px;}
.x14_c01488{left:217.440000px;}
.x41_c01488{left:228.960000px;}
.x4_c01488{left:239.760000px;}
.xe_c01488{left:250.560000px;}
.x15_c01488{left:261.360000px;}
.x5_c01488{left:272.160000px;}
.x39_c01488{left:282.960000px;}
.xf_c01488{left:293.760000px;}
.x47_c01488{left:295.200000px;}
.x42_c01488{left:302.400000px;}
.x16_c01488{left:304.560000px;}
.x2e_c01488{left:314.640000px;}
.x37_c01488{left:316.080000px;}
.x6_c01488{left:324.720000px;}
.x2c_c01488{left:326.880000px;}
.x17_c01488{left:337.680000px;}
.x24_c01488{left:347.760000px;}
.x46_c01488{left:351.360000px;}
.x2f_c01488{left:358.560000px;}
.x36_c01488{left:368.640000px;}
.x25_c01488{left:370.080000px;}
.x38_c01488{left:380.160000px;}
.x1e_c01488{left:390.960000px;}
.x48_c01488{left:394.560000px;}
.x18_c01488{left:401.760000px;}
.x7_c01488{left:412.560000px;}
.x28_c01488{left:423.360000px;}
.x19_c01488{left:433.440000px;}
.x1f_c01488{left:435.600000px;}
.x8_c01488{left:444.960000px;}
.x29_c01488{left:455.760000px;}
.x43_c01488{left:466.560000px;}
.x9_c01488{left:478.080000px;}
.x1a_c01488{left:499.680000px;}
.x10_c01488{left:509.040000px;}
.x1b_c01488{left:521.280000px;}
.x20_c01488{left:530.640000px;}
.x44_c01488{left:542.160000px;}
.x30_c01488{left:552.960000px;}
.x2d_c01488{left:563.760000px;}
.x40_c01488{left:565.200000px;}
.x11_c01488{left:574.560000px;}
.x49_c01488{left:576.720000px;}
.x3a_c01488{left:585.360000px;}
.x26_c01488{left:596.880000px;}
.xa_c01488{left:607.680000px;}
.x31_c01488{left:617.760000px;}
.x45_c01488{left:619.920000px;}
.x3c_c01488{left:628.560000px;}
.x21_c01488{left:640.080000px;}
.x4a_c01488{left:654.480000px;}
.x1_c01488{left:660.960000px;}
@media print{
.v1_c01488{vertical-align:-2.560000pt;}
.v0_c01488{vertical-align:0.000000pt;}
.ls0_c01488{letter-spacing:0.000000pt;}
.ws1_c01488{word-spacing:0.000000pt;}
.ws0_c01488{word-spacing:1.488640pt;}
.fs6_c01488{font-size:30.720000pt;}
.fs4_c01488{font-size:33.280000pt;}
.fs9_c01488{font-size:35.840000pt;}
.fs7_c01488{font-size:40.960000pt;}
.fs3_c01488{font-size:43.520000pt;}
.fs2_c01488{font-size:46.080000pt;}
.fsd_c01488{font-size:48.640000pt;}
.fsa_c01488{font-size:51.200000pt;}
.fs1_c01488{font-size:53.760000pt;}
.fsb_c01488{font-size:56.320000pt;}
.fs5_c01488{font-size:58.880000pt;}
.fs8_c01488{font-size:61.440000pt;}
.fsc_c01488{font-size:64.000000pt;}
.fs0_c01488{font-size:66.560000pt;}
.y0_c01488{bottom:0.000000pt;}
.y59_c01488{bottom:92.800000pt;}
.y5c_c01488{bottom:93.440000pt;}
.y5a_c01488{bottom:94.720000pt;}
.y5b_c01488{bottom:95.360000pt;}
.y58_c01488{bottom:96.000000pt;}
.y54_c01488{bottom:131.200000pt;}
.y55_c01488{bottom:131.840000pt;}
.y57_c01488{bottom:132.480000pt;}
.y56_c01488{bottom:133.120000pt;}
.y53_c01488{bottom:133.760000pt;}
.y52_c01488{bottom:134.400000pt;}
.y4d_c01488{bottom:168.960000pt;}
.y51_c01488{bottom:170.240000pt;}
.y4f_c01488{bottom:171.520000pt;}
.y4e_c01488{bottom:172.160000pt;}
.y50_c01488{bottom:172.800000pt;}
.y4a_c01488{bottom:208.000000pt;}
.y4b_c01488{bottom:208.640000pt;}
.y4c_c01488{bottom:210.560000pt;}
.y49_c01488{bottom:211.200000pt;}
.y46_c01488{bottom:247.040000pt;}
.y47_c01488{bottom:248.960000pt;}
.y48_c01488{bottom:249.600000pt;}
.y44_c01488{bottom:295.040000pt;}
.y45_c01488{bottom:296.960000pt;}
.y43_c01488{bottom:297.600000pt;}
.y42_c01488{bottom:332.800000pt;}
.y3f_c01488{bottom:333.440000pt;}
.y41_c01488{bottom:335.360000pt;}
.y40_c01488{bottom:336.000000pt;}
.y3d_c01488{bottom:371.840000pt;}
.y3c_c01488{bottom:373.760000pt;}
.y3e_c01488{bottom:374.400000pt;}
.y3a_c01488{bottom:408.960000pt;}
.y38_c01488{bottom:409.600000pt;}
.y39_c01488{bottom:412.160000pt;}
.y3b_c01488{bottom:412.800000pt;}
.y34_c01488{bottom:448.000000pt;}
.y37_c01488{bottom:449.920000pt;}
.y36_c01488{bottom:450.560000pt;}
.y35_c01488{bottom:451.200000pt;}
.y33_c01488{bottom:485.120000pt;}
.y32_c01488{bottom:486.400000pt;}
.y30_c01488{bottom:488.320000pt;}
.y31_c01488{bottom:488.960000pt;}
.y2e_c01488{bottom:524.160000pt;}
.y2c_c01488{bottom:526.080000pt;}
.y2f_c01488{bottom:526.720000pt;}
.y2d_c01488{bottom:527.360000pt;}
.y2a_c01488{bottom:561.280000pt;}
.y2b_c01488{bottom:562.560000pt;}
.y28_c01488{bottom:564.480000pt;}
.y29_c01488{bottom:565.120000pt;}
.y27_c01488{bottom:599.680000pt;}
.y26_c01488{bottom:602.240000pt;}
.y25_c01488{bottom:602.880000pt;}
.y24_c01488{bottom:603.520000pt;}
.y22_c01488{bottom:638.080000pt;}
.y21_c01488{bottom:638.720000pt;}
.y23_c01488{bottom:639.360000pt;}
.y20_c01488{bottom:641.280000pt;}
.y1e_c01488{bottom:676.480000pt;}
.y1d_c01488{bottom:677.120000pt;}
.y1c_c01488{bottom:677.760000pt;}
.y1b_c01488{bottom:679.680000pt;}
.y1f_c01488{bottom:680.320000pt;}
.y1a_c01488{bottom:715.520000pt;}
.y18_c01488{bottom:718.080000pt;}
.y19_c01488{bottom:718.720000pt;}
.y16_c01488{bottom:753.920000pt;}
.y17_c01488{bottom:755.840000pt;}
.y15_c01488{bottom:756.480000pt;}
.y13_c01488{bottom:791.680000pt;}
.y12_c01488{bottom:792.320000pt;}
.y14_c01488{bottom:794.240000pt;}
.y11_c01488{bottom:794.880000pt;}
.yc_c01488{bottom:830.080000pt;}
.ye_c01488{bottom:830.720000pt;}
.yd_c01488{bottom:831.360000pt;}
.y10_c01488{bottom:832.000000pt;}
.yb_c01488{bottom:832.640000pt;}
.yf_c01488{bottom:833.280000pt;}
.ya_c01488{bottom:867.840000pt;}
.y8_c01488{bottom:868.480000pt;}
.y7_c01488{bottom:871.040000pt;}
.y9_c01488{bottom:871.680000pt;}
.y6_c01488{bottom:906.240000pt;}
.y2_c01488{bottom:907.520000pt;}
.y5_c01488{bottom:908.160000pt;}
.y4_c01488{bottom:908.800000pt;}
.y3_c01488{bottom:909.440000pt;}
.y1_c01488{bottom:968.960000pt;}
.h8_c01488{height:27.645000pt;}
.h6_c01488{height:29.948750pt;}
.hb_c01488{height:32.252500pt;}
.h9_c01488{height:36.860000pt;}
.h5_c01488{height:39.163750pt;}
.h4_c01488{height:41.467500pt;}
.hf_c01488{height:43.771250pt;}
.hc_c01488{height:46.075000pt;}
.h3_c01488{height:48.378750pt;}
.hd_c01488{height:50.682500pt;}
.h7_c01488{height:52.986250pt;}
.ha_c01488{height:55.290000pt;}
.he_c01488{height:57.593750pt;}
.h2_c01488{height:59.897500pt;}
.h0_c01488{height:1025.280000pt;}
.h1_c01488{height:1025.333333pt;}
.w1_c01488{width:664.666667pt;}
.w0_c01488{width:664.960000pt;}
.x0_c01488{left:0.000000pt;}
.x2a_c01488{left:28.800000pt;}
.x2_c01488{left:30.080000pt;}
.x4b_c01488{left:32.000000pt;}
.x3b_c01488{left:48.000000pt;}
.x32_c01488{left:49.920000pt;}
.x3f_c01488{left:58.240000pt;}
.x12_c01488{left:68.480000pt;}
.xb_c01488{left:78.720000pt;}
.x2b_c01488{left:80.640000pt;}
.x13_c01488{left:88.320000pt;}
.x1c_c01488{left:97.280000pt;}
.x27_c01488{left:106.880000pt;}
.x22_c01488{left:115.840000pt;}
.x33_c01488{left:117.120000pt;}
.x34_c01488{left:126.080000pt;}
.x1d_c01488{left:136.320000pt;}
.x3d_c01488{left:144.640000pt;}
.x3_c01488{left:145.920000pt;}
.x35_c01488{left:154.880000pt;}
.xc_c01488{left:165.120000pt;}
.x23_c01488{left:174.720000pt;}
.x3e_c01488{left:183.040000pt;}
.xd_c01488{left:184.320000pt;}
.x14_c01488{left:193.280000pt;}
.x41_c01488{left:203.520000pt;}
.x4_c01488{left:213.120000pt;}
.xe_c01488{left:222.720000pt;}
.x15_c01488{left:232.320000pt;}
.x5_c01488{left:241.920000pt;}
.x39_c01488{left:251.520000pt;}
.xf_c01488{left:261.120000pt;}
.x47_c01488{left:262.400000pt;}
.x42_c01488{left:268.800000pt;}
.x16_c01488{left:270.720000pt;}
.x2e_c01488{left:279.680000pt;}
.x37_c01488{left:280.960000pt;}
.x6_c01488{left:288.640000pt;}
.x2c_c01488{left:290.560000pt;}
.x17_c01488{left:300.160000pt;}
.x24_c01488{left:309.120000pt;}
.x46_c01488{left:312.320000pt;}
.x2f_c01488{left:318.720000pt;}
.x36_c01488{left:327.680000pt;}
.x25_c01488{left:328.960000pt;}
.x38_c01488{left:337.920000pt;}
.x1e_c01488{left:347.520000pt;}
.x48_c01488{left:350.720000pt;}
.x18_c01488{left:357.120000pt;}
.x7_c01488{left:366.720000pt;}
.x28_c01488{left:376.320000pt;}
.x19_c01488{left:385.280000pt;}
.x1f_c01488{left:387.200000pt;}
.x8_c01488{left:395.520000pt;}
.x29_c01488{left:405.120000pt;}
.x43_c01488{left:414.720000pt;}
.x9_c01488{left:424.960000pt;}
.x1a_c01488{left:444.160000pt;}
.x10_c01488{left:452.480000pt;}
.x1b_c01488{left:463.360000pt;}
.x20_c01488{left:471.680000pt;}
.x44_c01488{left:481.920000pt;}
.x30_c01488{left:491.520000pt;}
.x2d_c01488{left:501.120000pt;}
.x40_c01488{left:502.400000pt;}
.x11_c01488{left:510.720000pt;}
.x49_c01488{left:512.640000pt;}
.x3a_c01488{left:520.320000pt;}
.x26_c01488{left:530.560000pt;}
.xa_c01488{left:540.160000pt;}
.x31_c01488{left:549.120000pt;}
.x45_c01488{left:551.040000pt;}
.x3c_c01488{left:558.720000pt;}
.x21_c01488{left:568.960000pt;}
.x4a_c01488{left:581.760000pt;}
.x1_c01488{left:587.520000pt;}
}





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

.ir_c01489:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01489{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01489;src:url('chunks/assets/font_20e6a9d3bfdf1ad30c4fd5fd.woff2')format("woff");}.ff1_c01489{font-family:ff1_c01489;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01489{transform:matrix(0.233800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233800,0.000000,0.000000,0.250000,0,0);}
.m49_c01489{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_c01489{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.md_c01489{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_c01489{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01489{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01489{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01489{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m39_c01489{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01489{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m19_c01489{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01489{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m16_c01489{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m55_c01489{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m10_c01489{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);}
.m29_c01489{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);}
.m59_c01489{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m9_c01489{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m12_c01489{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m15_c01489{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m14_c01489{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m53_c01489{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m1_c01489{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);}
.m54_c01489{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m7_c01489{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01489{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);}
.m2d_c01489{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m3_c01489{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);}
.m32_c01489{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m26_c01489{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01489{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);}
.m2b_c01489{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);}
.m50_c01489{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);}
.m40_c01489{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m57_c01489{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m38_c01489{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);}
.m4d_c01489{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m28_c01489{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);}
.ma_c01489{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m27_c01489{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);}
.m41_c01489{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);}
.m30_c01489{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m45_c01489{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m56_c01489{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m20_c01489{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m31_c01489{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);}
.m33_c01489{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01489{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.mb_c01489{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m25_c01489{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);}
.m2e_c01489{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m35_c01489{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.mf_c01489{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m36_c01489{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);}
.m47_c01489{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01489{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m23_c01489{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m6_c01489{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);}
.m58_c01489{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m17_c01489{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.mc_c01489{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01489{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m48_c01489{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m18_c01489{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);}
.m37_c01489{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);}
.m4f_c01489{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01489{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m22_c01489{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);}
.me_c01489{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m5_c01489{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m24_c01489{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);}
.m2f_c01489{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m44_c01489{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01489{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01489{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m21_c01489{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01489{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);}
.m43_c01489{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);}
.m52_c01489{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m13_c01489{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m51_c01489{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m4_c01489{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m34_c01489{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m2_c01489{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);}
.m46_c01489{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01489{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01489{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01489{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);}
.m4c_c01489{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01489{transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);}
.v0_c01489{vertical-align:0.000000px;}
.v1_c01489{vertical-align:8.640000px;}
.ls0_c01489{letter-spacing:0.000000px;}
.sc__c01489{text-shadow:none;}
.sc0_c01489{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01489{-webkit-text-stroke:0px transparent;}
.sc0_c01489{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01489{word-spacing:-11.090160px;}
.ws2_c01489{word-spacing:0.000000px;}
.ws1_c01489{word-spacing:1.003920px;}
.fc0_c01489{color:transparent;}
.fs2_c01489{font-size:23.040000px;}
.fs3_c01489{font-size:28.800000px;}
.fs1_c01489{font-size:34.560000px;}
.fs4_c01489{font-size:37.440000px;}
.fsd_c01489{font-size:40.320000px;}
.fsf_c01489{font-size:43.200000px;}
.fs9_c01489{font-size:46.080000px;}
.fs8_c01489{font-size:48.960000px;}
.fs5_c01489{font-size:51.840000px;}
.fse_c01489{font-size:54.720000px;}
.fs6_c01489{font-size:57.600000px;}
.fsb_c01489{font-size:60.480000px;}
.fsc_c01489{font-size:63.360000px;}
.fs7_c01489{font-size:66.240000px;}
.fsa_c01489{font-size:69.120000px;}
.fs0_c01489{font-size:72.000000px;}
.fs10_c01489{font-size:74.880000px;}
.y0_c01489{bottom:0.000000px;}
.y61_c01489{bottom:95.760000px;}
.y5d_c01489{bottom:137.520000px;}
.y5f_c01489{bottom:138.960000px;}
.y5c_c01489{bottom:140.400000px;}
.y5e_c01489{bottom:141.120000px;}
.y5b_c01489{bottom:141.840000px;}
.y60_c01489{bottom:142.560000px;}
.y58_c01489{bottom:182.160000px;}
.y57_c01489{bottom:183.600000px;}
.y56_c01489{bottom:184.320000px;}
.y59_c01489{bottom:185.040000px;}
.y5a_c01489{bottom:185.760000px;}
.y52_c01489{bottom:224.640000px;}
.y55_c01489{bottom:225.360000px;}
.y54_c01489{bottom:226.800000px;}
.y53_c01489{bottom:227.520000px;}
.y4e_c01489{bottom:267.840000px;}
.y51_c01489{bottom:268.560000px;}
.y50_c01489{bottom:270.000000px;}
.y4f_c01489{bottom:270.720000px;}
.y49_c01489{bottom:309.600000px;}
.y4b_c01489{bottom:310.320000px;}
.y4c_c01489{bottom:311.040000px;}
.y4a_c01489{bottom:313.200000px;}
.y4d_c01489{bottom:314.640000px;}
.y46_c01489{bottom:352.800000px;}
.y47_c01489{bottom:353.520000px;}
.y44_c01489{bottom:355.680000px;}
.y45_c01489{bottom:356.400000px;}
.y48_c01489{bottom:357.120000px;}
.y42_c01489{bottom:396.720000px;}
.y40_c01489{bottom:398.880000px;}
.y41_c01489{bottom:399.600000px;}
.y43_c01489{bottom:400.320000px;}
.y3c_c01489{bottom:439.920000px;}
.y3f_c01489{bottom:440.640000px;}
.y3d_c01489{bottom:442.800000px;}
.y3e_c01489{bottom:443.520000px;}
.y3b_c01489{bottom:493.920000px;}
.y38_c01489{bottom:496.080000px;}
.y3a_c01489{bottom:496.800000px;}
.y39_c01489{bottom:497.520000px;}
.y36_c01489{bottom:537.120000px;}
.y35_c01489{bottom:538.560000px;}
.y33_c01489{bottom:539.280000px;}
.y34_c01489{bottom:540.000000px;}
.y37_c01489{bottom:540.720000px;}
.y32_c01489{bottom:579.600000px;}
.y30_c01489{bottom:580.320000px;}
.y31_c01489{bottom:582.480000px;}
.y2f_c01489{bottom:583.200000px;}
.y2e_c01489{bottom:623.520000px;}
.y2c_c01489{bottom:625.680000px;}
.y2d_c01489{bottom:626.400000px;}
.y2b_c01489{bottom:666.720000px;}
.y2a_c01489{bottom:668.880000px;}
.y29_c01489{bottom:669.600000px;}
.y28_c01489{bottom:709.200000px;}
.y27_c01489{bottom:709.920000px;}
.y24_c01489{bottom:711.360000px;}
.y26_c01489{bottom:712.080000px;}
.y25_c01489{bottom:712.800000px;}
.y21_c01489{bottom:751.680000px;}
.y22_c01489{bottom:753.840000px;}
.y20_c01489{bottom:754.560000px;}
.y23_c01489{bottom:755.280000px;}
.y1f_c01489{bottom:793.440000px;}
.y1e_c01489{bottom:794.880000px;}
.y1c_c01489{bottom:797.040000px;}
.y1d_c01489{bottom:797.760000px;}
.y1b_c01489{bottom:836.640000px;}
.y19_c01489{bottom:837.360000px;}
.y18_c01489{bottom:838.080000px;}
.y1a_c01489{bottom:840.240000px;}
.y16_c01489{bottom:840.960000px;}
.y17_c01489{bottom:841.680000px;}
.y14_c01489{bottom:891.360000px;}
.y15_c01489{bottom:892.080000px;}
.y12_c01489{bottom:933.840000px;}
.yf_c01489{bottom:934.560000px;}
.y13_c01489{bottom:936.000000px;}
.y11_c01489{bottom:936.720000px;}
.y10_c01489{bottom:937.440000px;}
.yd_c01489{bottom:976.320000px;}
.ya_c01489{bottom:977.760000px;}
.yc_c01489{bottom:979.200000px;}
.ye_c01489{bottom:979.920000px;}
.yb_c01489{bottom:980.640000px;}
.y7_c01489{bottom:1019.520000px;}
.y8_c01489{bottom:1020.240000px;}
.y9_c01489{bottom:1020.960000px;}
.y5_c01489{bottom:1023.120000px;}
.y6_c01489{bottom:1023.840000px;}
.y4_c01489{bottom:1092.240000px;}
.y1_c01489{bottom:1092.960000px;}
.y2_c01489{bottom:1101.600000px;}
.y3_c01489{bottom:1103.040000px;}
.h4_c01489{height:20.733750px;}
.h5_c01489{height:25.917187px;}
.h3_c01489{height:31.100625px;}
.h6_c01489{height:33.692344px;}
.hf_c01489{height:36.284062px;}
.h11_c01489{height:38.875781px;}
.hb_c01489{height:41.467500px;}
.ha_c01489{height:44.059219px;}
.h7_c01489{height:46.650937px;}
.h10_c01489{height:49.242656px;}
.h8_c01489{height:51.834375px;}
.hd_c01489{height:54.426094px;}
.he_c01489{height:57.017812px;}
.h9_c01489{height:59.609531px;}
.hc_c01489{height:62.201250px;}
.h13_c01489{height:63.066094px;}
.h2_c01489{height:64.792969px;}
.h12_c01489{height:67.384687px;}
.h0_c01489{height:1155.600000px;}
.h1_c01489{height:1155.750000px;}
.w1_c01489{width:751.500000px;}
.w0_c01489{width:751.680000px;}
.x0_c01489{left:0.000000px;}
.x2d_c01489{left:41.041200px;}
.x6_c01489{left:42.480000px;}
.x1d_c01489{left:44.640000px;}
.x7_c01489{left:73.440000px;}
.x49_c01489{left:84.240000px;}
.x2e_c01489{left:95.760000px;}
.x1e_c01489{left:97.200000px;}
.x26_c01489{left:105.840000px;}
.x3c_c01489{left:116.640000px;}
.x40_c01489{left:127.440000px;}
.x3b_c01489{left:128.880000px;}
.x10_c01489{left:138.960000px;}
.x18_c01489{left:140.400000px;}
.x8_c01489{left:149.760000px;}
.x1f_c01489{left:151.200000px;}
.x41_c01489{left:159.840000px;}
.x50_c01489{left:170.640000px;}
.x31_c01489{left:172.080000px;}
.x20_c01489{left:181.440000px;}
.x11_c01489{left:182.880000px;}
.x4c_c01489{left:193.680000px;}
.x3d_c01489{left:205.200000px;}
.x27_c01489{left:214.560000px;}
.x47_c01489{left:216.000000px;}
.x32_c01489{left:224.640000px;}
.x21_c01489{left:226.080000px;}
.x2f_c01489{left:236.160000px;}
.x9_c01489{left:247.680000px;}
.x33_c01489{left:258.480000px;}
.x28_c01489{left:268.560000px;}
.x37_c01489{left:280.080000px;}
.x19_c01489{left:290.880000px;}
.x12_c01489{left:301.680000px;}
.xa_c01489{left:311.040000px;}
.x42_c01489{left:322.560000px;}
.x1a_c01489{left:324.000000px;}
.x13_c01489{left:332.640000px;}
.x52_c01489{left:334.080000px;}
.x4d_c01489{left:343.440000px;}
.x4f_c01489{left:345.600000px;}
.x46_c01489{left:354.960000px;}
.xb_c01489{left:356.400000px;}
.x43_c01489{left:365.760000px;}
.x38_c01489{left:367.200000px;}
.x14_c01489{left:376.560000px;}
.x34_c01489{left:387.360000px;}
.x22_c01489{left:398.160000px;}
.x30_c01489{left:409.680000px;}
.x29_c01489{left:420.480000px;}
.x53_c01489{left:421.920000px;}
.x23_c01489{left:432.000000px;}
.x44_c01489{left:433.440000px;}
.x3e_c01489{left:441.360000px;}
.x4a_c01489{left:442.800000px;}
.xc_c01489{left:452.160000px;}
.x2a_c01489{left:462.960000px;}
.x45_c01489{left:474.480000px;}
.x1b_c01489{left:485.280000px;}
.x24_c01489{left:496.080000px;}
.xd_c01489{left:506.880000px;}
.x51_c01489{left:518.400000px;}
.x39_c01489{left:527.040000px;}
.x4e_c01489{left:528.480000px;}
.x15_c01489{left:538.560000px;}
.x54_c01489{left:540.000000px;}
.x2b_c01489{left:561.600000px;}
.x16_c01489{left:570.960000px;}
.x4b_c01489{left:581.040000px;}
.x48_c01489{left:582.480000px;}
.x2c_c01489{left:594.000000px;}
.xe_c01489{left:604.080000px;}
.x3a_c01489{left:615.600000px;}
.x3f_c01489{left:625.680000px;}
.xf_c01489{left:627.120000px;}
.x17_c01489{left:637.200000px;}
.x1c_c01489{left:638.640000px;}
.x35_c01489{left:648.000000px;}
.x55_c01489{left:649.440000px;}
.x1_c01489{left:660.960000px;}
.x25_c01489{left:669.600000px;}
.x2_c01489{left:678.240000px;}
.x36_c01489{left:680.400000px;}
.x4_c01489{left:682.560000px;}
.x5_c01489{left:696.960000px;}
.x3_c01489{left:699.840000px;}
@media print{
.v0_c01489{vertical-align:0.000000pt;}
.v1_c01489{vertical-align:7.680000pt;}
.ls0_c01489{letter-spacing:0.000000pt;}
.ws0_c01489{word-spacing:-9.857920pt;}
.ws2_c01489{word-spacing:0.000000pt;}
.ws1_c01489{word-spacing:0.892373pt;}
.fs2_c01489{font-size:20.480000pt;}
.fs3_c01489{font-size:25.600000pt;}
.fs1_c01489{font-size:30.720000pt;}
.fs4_c01489{font-size:33.280000pt;}
.fsd_c01489{font-size:35.840000pt;}
.fsf_c01489{font-size:38.400000pt;}
.fs9_c01489{font-size:40.960000pt;}
.fs8_c01489{font-size:43.520000pt;}
.fs5_c01489{font-size:46.080000pt;}
.fse_c01489{font-size:48.640000pt;}
.fs6_c01489{font-size:51.200000pt;}
.fsb_c01489{font-size:53.760000pt;}
.fsc_c01489{font-size:56.320000pt;}
.fs7_c01489{font-size:58.880000pt;}
.fsa_c01489{font-size:61.440000pt;}
.fs0_c01489{font-size:64.000000pt;}
.fs10_c01489{font-size:66.560000pt;}
.y0_c01489{bottom:0.000000pt;}
.y61_c01489{bottom:85.120000pt;}
.y5d_c01489{bottom:122.240000pt;}
.y5f_c01489{bottom:123.520000pt;}
.y5c_c01489{bottom:124.800000pt;}
.y5e_c01489{bottom:125.440000pt;}
.y5b_c01489{bottom:126.080000pt;}
.y60_c01489{bottom:126.720000pt;}
.y58_c01489{bottom:161.920000pt;}
.y57_c01489{bottom:163.200000pt;}
.y56_c01489{bottom:163.840000pt;}
.y59_c01489{bottom:164.480000pt;}
.y5a_c01489{bottom:165.120000pt;}
.y52_c01489{bottom:199.680000pt;}
.y55_c01489{bottom:200.320000pt;}
.y54_c01489{bottom:201.600000pt;}
.y53_c01489{bottom:202.240000pt;}
.y4e_c01489{bottom:238.080000pt;}
.y51_c01489{bottom:238.720000pt;}
.y50_c01489{bottom:240.000000pt;}
.y4f_c01489{bottom:240.640000pt;}
.y49_c01489{bottom:275.200000pt;}
.y4b_c01489{bottom:275.840000pt;}
.y4c_c01489{bottom:276.480000pt;}
.y4a_c01489{bottom:278.400000pt;}
.y4d_c01489{bottom:279.680000pt;}
.y46_c01489{bottom:313.600000pt;}
.y47_c01489{bottom:314.240000pt;}
.y44_c01489{bottom:316.160000pt;}
.y45_c01489{bottom:316.800000pt;}
.y48_c01489{bottom:317.440000pt;}
.y42_c01489{bottom:352.640000pt;}
.y40_c01489{bottom:354.560000pt;}
.y41_c01489{bottom:355.200000pt;}
.y43_c01489{bottom:355.840000pt;}
.y3c_c01489{bottom:391.040000pt;}
.y3f_c01489{bottom:391.680000pt;}
.y3d_c01489{bottom:393.600000pt;}
.y3e_c01489{bottom:394.240000pt;}
.y3b_c01489{bottom:439.040000pt;}
.y38_c01489{bottom:440.960000pt;}
.y3a_c01489{bottom:441.600000pt;}
.y39_c01489{bottom:442.240000pt;}
.y36_c01489{bottom:477.440000pt;}
.y35_c01489{bottom:478.720000pt;}
.y33_c01489{bottom:479.360000pt;}
.y34_c01489{bottom:480.000000pt;}
.y37_c01489{bottom:480.640000pt;}
.y32_c01489{bottom:515.200000pt;}
.y30_c01489{bottom:515.840000pt;}
.y31_c01489{bottom:517.760000pt;}
.y2f_c01489{bottom:518.400000pt;}
.y2e_c01489{bottom:554.240000pt;}
.y2c_c01489{bottom:556.160000pt;}
.y2d_c01489{bottom:556.800000pt;}
.y2b_c01489{bottom:592.640000pt;}
.y2a_c01489{bottom:594.560000pt;}
.y29_c01489{bottom:595.200000pt;}
.y28_c01489{bottom:630.400000pt;}
.y27_c01489{bottom:631.040000pt;}
.y24_c01489{bottom:632.320000pt;}
.y26_c01489{bottom:632.960000pt;}
.y25_c01489{bottom:633.600000pt;}
.y21_c01489{bottom:668.160000pt;}
.y22_c01489{bottom:670.080000pt;}
.y20_c01489{bottom:670.720000pt;}
.y23_c01489{bottom:671.360000pt;}
.y1f_c01489{bottom:705.280000pt;}
.y1e_c01489{bottom:706.560000pt;}
.y1c_c01489{bottom:708.480000pt;}
.y1d_c01489{bottom:709.120000pt;}
.y1b_c01489{bottom:743.680000pt;}
.y19_c01489{bottom:744.320000pt;}
.y18_c01489{bottom:744.960000pt;}
.y1a_c01489{bottom:746.880000pt;}
.y16_c01489{bottom:747.520000pt;}
.y17_c01489{bottom:748.160000pt;}
.y14_c01489{bottom:792.320000pt;}
.y15_c01489{bottom:792.960000pt;}
.y12_c01489{bottom:830.080000pt;}
.yf_c01489{bottom:830.720000pt;}
.y13_c01489{bottom:832.000000pt;}
.y11_c01489{bottom:832.640000pt;}
.y10_c01489{bottom:833.280000pt;}
.yd_c01489{bottom:867.840000pt;}
.ya_c01489{bottom:869.120000pt;}
.yc_c01489{bottom:870.400000pt;}
.ye_c01489{bottom:871.040000pt;}
.yb_c01489{bottom:871.680000pt;}
.y7_c01489{bottom:906.240000pt;}
.y8_c01489{bottom:906.880000pt;}
.y9_c01489{bottom:907.520000pt;}
.y5_c01489{bottom:909.440000pt;}
.y6_c01489{bottom:910.080000pt;}
.y4_c01489{bottom:970.880000pt;}
.y1_c01489{bottom:971.520000pt;}
.y2_c01489{bottom:979.200000pt;}
.y3_c01489{bottom:980.480000pt;}
.h4_c01489{height:18.430000pt;}
.h5_c01489{height:23.037500pt;}
.h3_c01489{height:27.645000pt;}
.h6_c01489{height:29.948750pt;}
.hf_c01489{height:32.252500pt;}
.h11_c01489{height:34.556250pt;}
.hb_c01489{height:36.860000pt;}
.ha_c01489{height:39.163750pt;}
.h7_c01489{height:41.467500pt;}
.h10_c01489{height:43.771250pt;}
.h8_c01489{height:46.075000pt;}
.hd_c01489{height:48.378750pt;}
.he_c01489{height:50.682500pt;}
.h9_c01489{height:52.986250pt;}
.hc_c01489{height:55.290000pt;}
.h13_c01489{height:56.058750pt;}
.h2_c01489{height:57.593750pt;}
.h12_c01489{height:59.897500pt;}
.h0_c01489{height:1027.200000pt;}
.h1_c01489{height:1027.333333pt;}
.w1_c01489{width:668.000000pt;}
.w0_c01489{width:668.160000pt;}
.x0_c01489{left:0.000000pt;}
.x2d_c01489{left:36.481067pt;}
.x6_c01489{left:37.760000pt;}
.x1d_c01489{left:39.680000pt;}
.x7_c01489{left:65.280000pt;}
.x49_c01489{left:74.880000pt;}
.x2e_c01489{left:85.120000pt;}
.x1e_c01489{left:86.400000pt;}
.x26_c01489{left:94.080000pt;}
.x3c_c01489{left:103.680000pt;}
.x40_c01489{left:113.280000pt;}
.x3b_c01489{left:114.560000pt;}
.x10_c01489{left:123.520000pt;}
.x18_c01489{left:124.800000pt;}
.x8_c01489{left:133.120000pt;}
.x1f_c01489{left:134.400000pt;}
.x41_c01489{left:142.080000pt;}
.x50_c01489{left:151.680000pt;}
.x31_c01489{left:152.960000pt;}
.x20_c01489{left:161.280000pt;}
.x11_c01489{left:162.560000pt;}
.x4c_c01489{left:172.160000pt;}
.x3d_c01489{left:182.400000pt;}
.x27_c01489{left:190.720000pt;}
.x47_c01489{left:192.000000pt;}
.x32_c01489{left:199.680000pt;}
.x21_c01489{left:200.960000pt;}
.x2f_c01489{left:209.920000pt;}
.x9_c01489{left:220.160000pt;}
.x33_c01489{left:229.760000pt;}
.x28_c01489{left:238.720000pt;}
.x37_c01489{left:248.960000pt;}
.x19_c01489{left:258.560000pt;}
.x12_c01489{left:268.160000pt;}
.xa_c01489{left:276.480000pt;}
.x42_c01489{left:286.720000pt;}
.x1a_c01489{left:288.000000pt;}
.x13_c01489{left:295.680000pt;}
.x52_c01489{left:296.960000pt;}
.x4d_c01489{left:305.280000pt;}
.x4f_c01489{left:307.200000pt;}
.x46_c01489{left:315.520000pt;}
.xb_c01489{left:316.800000pt;}
.x43_c01489{left:325.120000pt;}
.x38_c01489{left:326.400000pt;}
.x14_c01489{left:334.720000pt;}
.x34_c01489{left:344.320000pt;}
.x22_c01489{left:353.920000pt;}
.x30_c01489{left:364.160000pt;}
.x29_c01489{left:373.760000pt;}
.x53_c01489{left:375.040000pt;}
.x23_c01489{left:384.000000pt;}
.x44_c01489{left:385.280000pt;}
.x3e_c01489{left:392.320000pt;}
.x4a_c01489{left:393.600000pt;}
.xc_c01489{left:401.920000pt;}
.x2a_c01489{left:411.520000pt;}
.x45_c01489{left:421.760000pt;}
.x1b_c01489{left:431.360000pt;}
.x24_c01489{left:440.960000pt;}
.xd_c01489{left:450.560000pt;}
.x51_c01489{left:460.800000pt;}
.x39_c01489{left:468.480000pt;}
.x4e_c01489{left:469.760000pt;}
.x15_c01489{left:478.720000pt;}
.x54_c01489{left:480.000000pt;}
.x2b_c01489{left:499.200000pt;}
.x16_c01489{left:507.520000pt;}
.x4b_c01489{left:516.480000pt;}
.x48_c01489{left:517.760000pt;}
.x2c_c01489{left:528.000000pt;}
.xe_c01489{left:536.960000pt;}
.x3a_c01489{left:547.200000pt;}
.x3f_c01489{left:556.160000pt;}
.xf_c01489{left:557.440000pt;}
.x17_c01489{left:566.400000pt;}
.x1c_c01489{left:567.680000pt;}
.x35_c01489{left:576.000000pt;}
.x55_c01489{left:577.280000pt;}
.x1_c01489{left:587.520000pt;}
.x25_c01489{left:595.200000pt;}
.x2_c01489{left:602.880000pt;}
.x36_c01489{left:604.800000pt;}
.x4_c01489{left:606.720000pt;}
.x5_c01489{left:619.520000pt;}
.x3_c01489{left:622.080000pt;}
}





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

.ir_c01490:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01490{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01490;src:url('chunks/assets/font_de7fa33f32f4b66a98604b2c.woff2')format("woff");}.ff1_c01490{font-family:ff1_c01490;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m70_c01490{transform:matrix(0.177800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177800,0.000000,0.000000,0.250000,0,0);}
.m6a_c01490{transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);}
.m46_c01490{transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);}
.m52_c01490{transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);}
.m16_c01490{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m58_c01490{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m6c_c01490{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m4b_c01490{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);}
.m50_c01490{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);}
.m57_c01490{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);}
.m59_c01490{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);}
.m61_c01490{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);}
.m5f_c01490{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);}
.m73_c01490{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);}
.m4d_c01490{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);}
.m67_c01490{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);}
.m49_c01490{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_c01490{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);}
.m5a_c01490{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);}
.m5e_c01490{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m6f_c01490{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m62_c01490{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01490{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m71_c01490{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m5d_c01490{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01490{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m69_c01490{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01490{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m12_c01490{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m6e_c01490{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m14_c01490{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m5b_c01490{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m20_c01490{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);}
.m3c_c01490{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m21_c01490{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);}
.m65_c01490{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);}
.m56_c01490{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m24_c01490{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m13_c01490{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);}
.m6d_c01490{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m60_c01490{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);}
.m53_c01490{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m43_c01490{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m4_c01490{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01490{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m63_c01490{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);}
.m41_c01490{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);}
.m27_c01490{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);}
.m2_c01490{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m11_c01490{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);}
.m3f_c01490{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);}
.m1e_c01490{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);}
.m39_c01490{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m51_c01490{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.ma_c01490{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m45_c01490{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);}
.m22_c01490{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01490{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01490{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);}
.m23_c01490{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m8_c01490{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m1_c01490{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01490{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);}
.m38_c01490{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.me_c01490{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01490{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);}
.m33_c01490{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m36_c01490{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);}
.m18_c01490{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m68_c01490{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m34_c01490{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01490{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01490{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);}
.m6_c01490{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01490{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m5c_c01490{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);}
.m17_c01490{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m19_c01490{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m37_c01490{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m7_c01490{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);}
.m2a_c01490{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);}
.m25_c01490{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01490{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m9_c01490{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m15_c01490{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);}
.mc_c01490{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m54_c01490{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m5_c01490{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);}
.m4c_c01490{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m40_c01490{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m31_c01490{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01490{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);}
.m44_c01490{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.mf_c01490{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);}
.mb_c01490{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m64_c01490{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m26_c01490{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m10_c01490{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m48_c01490{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m30_c01490{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m66_c01490{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);}
.m2d_c01490{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);}
.m32_c01490{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m6b_c01490{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m28_c01490{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);}
.m2c_c01490{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.md_c01490{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m42_c01490{transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01490{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);}
.m72_c01490{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m29_c01490{transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);}
.m55_c01490{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);}
.m2f_c01490{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);}
.m4e_c01490{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.m47_c01490{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.m35_c01490{transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);}
.v1_c01490{vertical-align:-8.640000px;}
.v0_c01490{vertical-align:0.000000px;}
.ls1_c01490{letter-spacing:0.000000px;}
.ls0_c01490{letter-spacing:113.735520px;}
.sc__c01490{text-shadow:none;}
.sc0_c01490{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01490{-webkit-text-stroke:0px transparent;}
.sc0_c01490{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01490{word-spacing:-8.295600px;}
.ws4_c01490{word-spacing:0.000000px;}
.ws0_c01490{word-spacing:15.758400px;}
.ws3_c01490{word-spacing:84.085678px;}
.ws2_c01490{word-spacing:280.567200px;}
.fc0_c01490{color:transparent;}
.fs11_c01490{font-size:11.520000px;}
.fsf_c01490{font-size:14.400000px;}
.fsc_c01490{font-size:17.280000px;}
.fs9_c01490{font-size:34.560000px;}
.fs8_c01490{font-size:37.440000px;}
.fse_c01490{font-size:40.320000px;}
.fs10_c01490{font-size:43.200000px;}
.fs1_c01490{font-size:46.080000px;}
.fs7_c01490{font-size:48.960000px;}
.fs5_c01490{font-size:51.840000px;}
.fsa_c01490{font-size:54.720000px;}
.fsb_c01490{font-size:57.600000px;}
.fs4_c01490{font-size:60.480000px;}
.fs6_c01490{font-size:63.360000px;}
.fsd_c01490{font-size:66.240000px;}
.fs2_c01490{font-size:69.120000px;}
.fs3_c01490{font-size:72.000000px;}
.fs0_c01490{font-size:74.880000px;}
.fs12_c01490{font-size:103.680000px;}
.y0_c01490{bottom:0.000000px;}
.ya2_c01490{bottom:26.640000px;}
.ya3_c01490{bottom:28.800000px;}
.ya4_c01490{bottom:34.560000px;}
.ya6_c01490{bottom:35.280000px;}
.ya5_c01490{bottom:36.720000px;}
.y9e_c01490{bottom:55.440000px;}
.y9c_c01490{bottom:56.880000px;}
.y9d_c01490{bottom:58.320000px;}
.y9b_c01490{bottom:59.040000px;}
.y9f_c01490{bottom:60.480000px;}
.ya0_c01490{bottom:65.520000px;}
.ya1_c01490{bottom:67.680000px;}
.y9a_c01490{bottom:76.320000px;}
.y99_c01490{bottom:78.480000px;}
.y98_c01490{bottom:79.200000px;}
.y97_c01490{bottom:79.920000px;}
.y92_c01490{bottom:87.840000px;}
.y91_c01490{bottom:90.000000px;}
.y8d_c01490{bottom:91.440000px;}
.y8f_c01490{bottom:92.160000px;}
.y96_c01490{bottom:92.880000px;}
.y90_c01490{bottom:94.320000px;}
.y8e_c01490{bottom:95.040000px;}
.y93_c01490{bottom:98.640000px;}
.y95_c01490{bottom:100.800000px;}
.y94_c01490{bottom:102.240000px;}
.y8c_c01490{bottom:119.520000px;}
.y89_c01490{bottom:120.240000px;}
.y88_c01490{bottom:120.960000px;}
.y8b_c01490{bottom:122.400000px;}
.y87_c01490{bottom:123.120000px;}
.y85_c01490{bottom:123.840000px;}
.y8a_c01490{bottom:125.280000px;}
.y86_c01490{bottom:127.440000px;}
.y81_c01490{bottom:131.760000px;}
.y83_c01490{bottom:141.840000px;}
.y82_c01490{bottom:144.720000px;}
.y84_c01490{bottom:145.440000px;}
.y7f_c01490{bottom:152.640000px;}
.y7e_c01490{bottom:154.080000px;}
.y80_c01490{bottom:154.800000px;}
.y7d_c01490{bottom:156.240000px;}
.y7b_c01490{bottom:157.680000px;}
.y7c_c01490{bottom:159.840000px;}
.y7a_c01490{bottom:163.440000px;}
.y73_c01490{bottom:164.160000px;}
.y77_c01490{bottom:166.320000px;}
.y79_c01490{bottom:167.040000px;}
.y78_c01490{bottom:169.200000px;}
.y74_c01490{bottom:176.400000px;}
.y76_c01490{bottom:177.120000px;}
.y75_c01490{bottom:180.000000px;}
.y70_c01490{bottom:195.120000px;}
.y72_c01490{bottom:197.280000px;}
.y71_c01490{bottom:198.000000px;}
.y6f_c01490{bottom:199.440000px;}
.y6e_c01490{bottom:249.120000px;}
.y6b_c01490{bottom:249.840000px;}
.y6d_c01490{bottom:250.560000px;}
.y6c_c01490{bottom:252.000000px;}
.y6a_c01490{bottom:252.720000px;}
.y67_c01490{bottom:261.360000px;}
.y69_c01490{bottom:263.520000px;}
.y66_c01490{bottom:264.960000px;}
.y68_c01490{bottom:267.120000px;}
.y65_c01490{bottom:273.600000px;}
.y62_c01490{bottom:281.520000px;}
.y61_c01490{bottom:283.680000px;}
.y64_c01490{bottom:285.120000px;}
.y63_c01490{bottom:287.280000px;}
.y5d_c01490{bottom:295.200000px;}
.y60_c01490{bottom:295.920000px;}
.y5e_c01490{bottom:296.640000px;}
.y5f_c01490{bottom:299.520000px;}
.y5c_c01490{bottom:311.760000px;}
.y5b_c01490{bottom:313.200000px;}
.y56_c01490{bottom:314.640000px;}
.y5a_c01490{bottom:315.360000px;}
.y58_c01490{bottom:316.800000px;}
.y55_c01490{bottom:317.520000px;}
.y57_c01490{bottom:318.960000px;}
.y53_c01490{bottom:326.160000px;}
.y52_c01490{bottom:327.600000px;}
.y59_c01490{bottom:329.040000px;}
.y54_c01490{bottom:331.200000px;}
.y51_c01490{bottom:347.040000px;}
.y4f_c01490{bottom:348.480000px;}
.y50_c01490{bottom:351.360000px;}
.y49_c01490{bottom:358.560000px;}
.y4d_c01490{bottom:359.280000px;}
.y4a_c01490{bottom:360.720000px;}
.y4e_c01490{bottom:361.440000px;}
.y4b_c01490{bottom:362.880000px;}
.y4c_c01490{bottom:368.640000px;}
.y47_c01490{bottom:388.800000px;}
.y45_c01490{bottom:389.520000px;}
.y48_c01490{bottom:390.240000px;}
.y46_c01490{bottom:390.960000px;}
.y43_c01490{bottom:391.680000px;}
.y40_c01490{bottom:392.400000px;}
.y42_c01490{bottom:393.120000px;}
.y44_c01490{bottom:393.840000px;}
.y41_c01490{bottom:396.000000px;}
.y3f_c01490{bottom:419.760000px;}
.y3c_c01490{bottom:421.200000px;}
.y3b_c01490{bottom:421.920000px;}
.y3a_c01490{bottom:422.640000px;}
.y3e_c01490{bottom:423.360000px;}
.y3d_c01490{bottom:424.080000px;}
.y38_c01490{bottom:424.800000px;}
.y36_c01490{bottom:425.520000px;}
.y39_c01490{bottom:426.960000px;}
.y37_c01490{bottom:428.400000px;}
.y35_c01490{bottom:481.680000px;}
.y33_c01490{bottom:524.160000px;}
.y34_c01490{bottom:526.320000px;}
.y32_c01490{bottom:527.040000px;}
.y31_c01490{bottom:579.600000px;}
.y2f_c01490{bottom:580.320000px;}
.y30_c01490{bottom:581.040000px;}
.y2b_c01490{bottom:620.640000px;}
.y2a_c01490{bottom:622.080000px;}
.y2d_c01490{bottom:622.800000px;}
.y2e_c01490{bottom:623.520000px;}
.y2c_c01490{bottom:624.240000px;}
.y28_c01490{bottom:663.120000px;}
.y25_c01490{bottom:663.840000px;}
.y26_c01490{bottom:664.560000px;}
.y27_c01490{bottom:666.000000px;}
.y29_c01490{bottom:666.720000px;}
.y1f_c01490{bottom:707.040000px;}
.y22_c01490{bottom:708.480000px;}
.y21_c01490{bottom:709.200000px;}
.y20_c01490{bottom:709.920000px;}
.y24_c01490{bottom:710.640000px;}
.y23_c01490{bottom:712.080000px;}
.y1d_c01490{bottom:750.240000px;}
.y1b_c01490{bottom:752.400000px;}
.y1c_c01490{bottom:753.120000px;}
.y1e_c01490{bottom:753.840000px;}
.y17_c01490{bottom:792.720000px;}
.y1a_c01490{bottom:793.440000px;}
.y16_c01490{bottom:795.600000px;}
.y19_c01490{bottom:796.320000px;}
.y18_c01490{bottom:797.040000px;}
.y15_c01490{bottom:836.640000px;}
.y14_c01490{bottom:838.080000px;}
.y12_c01490{bottom:838.800000px;}
.y13_c01490{bottom:839.520000px;}
.y11_c01490{bottom:889.920000px;}
.y10_c01490{bottom:892.800000px;}
.yc_c01490{bottom:933.120000px;}
.yd_c01490{bottom:933.840000px;}
.yf_c01490{bottom:934.560000px;}
.ye_c01490{bottom:935.280000px;}
.yb_c01490{bottom:936.000000px;}
.y7_c01490{bottom:974.880000px;}
.y9_c01490{bottom:975.600000px;}
.ya_c01490{bottom:977.760000px;}
.y8_c01490{bottom:978.480000px;}
.y4_c01490{bottom:1018.080000px;}
.y3_c01490{bottom:1018.800000px;}
.y5_c01490{bottom:1020.960000px;}
.y6_c01490{bottom:1021.680000px;}
.y2_c01490{bottom:1022.400000px;}
.y1_c01490{bottom:1091.520000px;}
.h13_c01490{height:10.366875px;}
.h11_c01490{height:12.958594px;}
.he_c01490{height:15.550313px;}
.hb_c01490{height:31.100625px;}
.ha_c01490{height:33.692344px;}
.h10_c01490{height:36.284062px;}
.h12_c01490{height:38.875781px;}
.h3_c01490{height:41.467500px;}
.h9_c01490{height:44.059219px;}
.h7_c01490{height:46.650937px;}
.hc_c01490{height:49.242656px;}
.hd_c01490{height:51.834375px;}
.h6_c01490{height:54.426094px;}
.h8_c01490{height:57.017812px;}
.hf_c01490{height:59.609531px;}
.h4_c01490{height:62.201250px;}
.h5_c01490{height:64.792969px;}
.h2_c01490{height:67.384687px;}
.h14_c01490{height:93.301875px;}
.h0_c01490{height:1153.440000px;}
.h1_c01490{height:1153.500000px;}
.w0_c01490{width:756.720000px;}
.w1_c01490{width:756.750000px;}
.x0_c01490{left:0.000000px;}
.x57_c01490{left:33.120000px;}
.x43_c01490{left:34.560000px;}
.x12_c01490{left:39.600000px;}
.x9_c01490{left:41.040000px;}
.x6f_c01490{left:52.560000px;}
.x44_c01490{left:54.000000px;}
.x13_c01490{left:71.280000px;}
.x70_c01490{left:74.160000px;}
.x45_c01490{left:75.600000px;}
.xa_c01490{left:82.800000px;}
.x1f_c01490{left:93.600000px;}
.x27_c01490{left:95.040000px;}
.x14_c01490{left:104.400000px;}
.x3b_c01490{left:114.480000px;}
.x74_c01490{left:117.360000px;}
.x77_c01490{left:127.440000px;}
.x71_c01490{left:128.880000px;}
.x2f_c01490{left:136.800000px;}
.x46_c01490{left:140.400000px;}
.x2_c01490{left:147.600000px;}
.x78_c01490{left:151.200000px;}
.x28_c01490{left:158.400000px;}
.x15_c01490{left:159.840000px;}
.x47_c01490{left:163.440000px;}
.xb_c01490{left:169.200000px;}
.x5f_c01490{left:172.800000px;}
.x3_c01490{left:180.000000px;}
.x63_c01490{left:187.920000px;}
.x36_c01490{left:190.800000px;}
.x29_c01490{left:200.880000px;}
.x16_c01490{left:202.320000px;}
.x60_c01490{left:205.200000px;}
.xc_c01490{left:213.120000px;}
.x37_c01490{left:222.480000px;}
.x58_c01490{left:226.800000px;}
.x48_c01490{left:228.240000px;}
.x64_c01490{left:231.840000px;}
.x17_c01490{left:234.000000px;}
.xd_c01490{left:246.240000px;}
.x40_c01490{left:255.600000px;}
.x20_c01490{left:257.040000px;}
.x61_c01490{left:260.640000px;}
.x18_c01490{left:266.400000px;}
.x54_c01490{left:270.000000px;}
.x49_c01490{left:272.160000px;}
.x21_c01490{left:277.200000px;}
.x65_c01490{left:285.120000px;}
.x19_c01490{left:289.440000px;}
.x62_c01490{left:291.600000px;}
.x5d_c01490{left:293.040000px;}
.x7e_c01490{left:295.920000px;}
.x66_c01490{left:307.440000px;}
.x1a_c01490{left:309.600000px;}
.x41_c01490{left:320.400000px;}
.x32_c01490{left:321.840000px;}
.x5e_c01490{left:324.720000px;}
.x7f_c01490{left:329.040000px;}
.x4_c01490{left:331.200000px;}
.x2a_c01490{left:332.640000px;}
.x55_c01490{left:334.800000px;}
.x50_c01490{left:336.240000px;}
.x1b_c01490{left:343.440000px;}
.x3c_c01490{left:352.800000px;}
.x56_c01490{left:357.120000px;}
.x4a_c01490{left:358.560000px;}
.x72_c01490{left:361.440000px;}
.x1c_c01490{left:363.600000px;}
.x3d_c01490{left:373.680000px;}
.xe_c01490{left:385.200000px;}
.x67_c01490{left:393.840000px;}
.x79_c01490{left:395.280000px;}
.x51_c01490{left:401.040000px;}
.x1d_c01490{left:406.800000px;}
.x59_c01490{left:412.560000px;}
.x22_c01490{left:417.600000px;}
.x38_c01490{left:419.040000px;}
.x52_c01490{left:421.200000px;}
.x4b_c01490{left:422.640000px;}
.xf_c01490{left:428.400000px;}
.x2b_c01490{left:429.840000px;}
.x68_c01490{left:436.320000px;}
.x5_c01490{left:439.920000px;}
.x4c_c01490{left:444.240000px;}
.x39_c01490{left:450.000000px;}
.x3e_c01490{left:451.440000px;}
.x5a_c01490{left:454.320000px;}
.x69_c01490{left:459.360000px;}
.x23_c01490{left:462.240000px;}
.x10_c01490{left:470.880000px;}
.x4d_c01490{left:477.360000px;}
.x30_c01490{left:482.400000px;}
.x7a_c01490{left:491.760000px;}
.x6_c01490{left:493.920000px;}
.x6a_c01490{left:512.640000px;}
.x31_c01490{left:515.520000px;}
.x5b_c01490{left:519.840000px;}
.x7d_c01490{left:523.440000px;}
.x7_c01490{left:527.040000px;}
.x4e_c01490{left:530.640000px;}
.x6b_c01490{left:534.240000px;}
.x33_c01490{left:537.840000px;}
.x2c_c01490{left:547.200000px;}
.x80_c01490{left:557.280000px;}
.x3a_c01490{left:559.440000px;}
.x53_c01490{left:562.320000px;}
.x6c_c01490{left:568.080000px;}
.x24_c01490{left:569.520000px;}
.x2d_c01490{left:581.040000px;}
.x4f_c01490{left:586.080000px;}
.x11_c01490{left:591.120000px;}
.x42_c01490{left:601.920000px;}
.x7c_c01490{left:611.280000px;}
.x8_c01490{left:614.160000px;}
.x5c_c01490{left:617.040000px;}
.x73_c01490{left:620.640000px;}
.x7b_c01490{left:622.080000px;}
.x25_c01490{left:623.520000px;}
.x34_c01490{left:634.320000px;}
.x1e_c01490{left:635.760000px;}
.x75_c01490{left:643.680000px;}
.x3f_c01490{left:645.840000px;}
.x6d_c01490{left:653.760000px;}
.x2e_c01490{left:656.640000px;}
.x26_c01490{left:667.440000px;}
.x1_c01490{left:669.600000px;}
.x6e_c01490{left:676.080000px;}
.x35_c01490{left:678.240000px;}
.x76_c01490{left:697.680000px;}
@media print{
.v1_c01490{vertical-align:-7.680000pt;}
.v0_c01490{vertical-align:0.000000pt;}
.ls1_c01490{letter-spacing:0.000000pt;}
.ls0_c01490{letter-spacing:101.098240pt;}
.ws1_c01490{word-spacing:-7.373867pt;}
.ws4_c01490{word-spacing:0.000000pt;}
.ws0_c01490{word-spacing:14.007467pt;}
.ws3_c01490{word-spacing:74.742825pt;}
.ws2_c01490{word-spacing:249.393067pt;}
.fs11_c01490{font-size:10.240000pt;}
.fsf_c01490{font-size:12.800000pt;}
.fsc_c01490{font-size:15.360000pt;}
.fs9_c01490{font-size:30.720000pt;}
.fs8_c01490{font-size:33.280000pt;}
.fse_c01490{font-size:35.840000pt;}
.fs10_c01490{font-size:38.400000pt;}
.fs1_c01490{font-size:40.960000pt;}
.fs7_c01490{font-size:43.520000pt;}
.fs5_c01490{font-size:46.080000pt;}
.fsa_c01490{font-size:48.640000pt;}
.fsb_c01490{font-size:51.200000pt;}
.fs4_c01490{font-size:53.760000pt;}
.fs6_c01490{font-size:56.320000pt;}
.fsd_c01490{font-size:58.880000pt;}
.fs2_c01490{font-size:61.440000pt;}
.fs3_c01490{font-size:64.000000pt;}
.fs0_c01490{font-size:66.560000pt;}
.fs12_c01490{font-size:92.160000pt;}
.y0_c01490{bottom:0.000000pt;}
.ya2_c01490{bottom:23.680000pt;}
.ya3_c01490{bottom:25.600000pt;}
.ya4_c01490{bottom:30.720000pt;}
.ya6_c01490{bottom:31.360000pt;}
.ya5_c01490{bottom:32.640000pt;}
.y9e_c01490{bottom:49.280000pt;}
.y9c_c01490{bottom:50.560000pt;}
.y9d_c01490{bottom:51.840000pt;}
.y9b_c01490{bottom:52.480000pt;}
.y9f_c01490{bottom:53.760000pt;}
.ya0_c01490{bottom:58.240000pt;}
.ya1_c01490{bottom:60.160000pt;}
.y9a_c01490{bottom:67.840000pt;}
.y99_c01490{bottom:69.760000pt;}
.y98_c01490{bottom:70.400000pt;}
.y97_c01490{bottom:71.040000pt;}
.y92_c01490{bottom:78.080000pt;}
.y91_c01490{bottom:80.000000pt;}
.y8d_c01490{bottom:81.280000pt;}
.y8f_c01490{bottom:81.920000pt;}
.y96_c01490{bottom:82.560000pt;}
.y90_c01490{bottom:83.840000pt;}
.y8e_c01490{bottom:84.480000pt;}
.y93_c01490{bottom:87.680000pt;}
.y95_c01490{bottom:89.600000pt;}
.y94_c01490{bottom:90.880000pt;}
.y8c_c01490{bottom:106.240000pt;}
.y89_c01490{bottom:106.880000pt;}
.y88_c01490{bottom:107.520000pt;}
.y8b_c01490{bottom:108.800000pt;}
.y87_c01490{bottom:109.440000pt;}
.y85_c01490{bottom:110.080000pt;}
.y8a_c01490{bottom:111.360000pt;}
.y86_c01490{bottom:113.280000pt;}
.y81_c01490{bottom:117.120000pt;}
.y83_c01490{bottom:126.080000pt;}
.y82_c01490{bottom:128.640000pt;}
.y84_c01490{bottom:129.280000pt;}
.y7f_c01490{bottom:135.680000pt;}
.y7e_c01490{bottom:136.960000pt;}
.y80_c01490{bottom:137.600000pt;}
.y7d_c01490{bottom:138.880000pt;}
.y7b_c01490{bottom:140.160000pt;}
.y7c_c01490{bottom:142.080000pt;}
.y7a_c01490{bottom:145.280000pt;}
.y73_c01490{bottom:145.920000pt;}
.y77_c01490{bottom:147.840000pt;}
.y79_c01490{bottom:148.480000pt;}
.y78_c01490{bottom:150.400000pt;}
.y74_c01490{bottom:156.800000pt;}
.y76_c01490{bottom:157.440000pt;}
.y75_c01490{bottom:160.000000pt;}
.y70_c01490{bottom:173.440000pt;}
.y72_c01490{bottom:175.360000pt;}
.y71_c01490{bottom:176.000000pt;}
.y6f_c01490{bottom:177.280000pt;}
.y6e_c01490{bottom:221.440000pt;}
.y6b_c01490{bottom:222.080000pt;}
.y6d_c01490{bottom:222.720000pt;}
.y6c_c01490{bottom:224.000000pt;}
.y6a_c01490{bottom:224.640000pt;}
.y67_c01490{bottom:232.320000pt;}
.y69_c01490{bottom:234.240000pt;}
.y66_c01490{bottom:235.520000pt;}
.y68_c01490{bottom:237.440000pt;}
.y65_c01490{bottom:243.200000pt;}
.y62_c01490{bottom:250.240000pt;}
.y61_c01490{bottom:252.160000pt;}
.y64_c01490{bottom:253.440000pt;}
.y63_c01490{bottom:255.360000pt;}
.y5d_c01490{bottom:262.400000pt;}
.y60_c01490{bottom:263.040000pt;}
.y5e_c01490{bottom:263.680000pt;}
.y5f_c01490{bottom:266.240000pt;}
.y5c_c01490{bottom:277.120000pt;}
.y5b_c01490{bottom:278.400000pt;}
.y56_c01490{bottom:279.680000pt;}
.y5a_c01490{bottom:280.320000pt;}
.y58_c01490{bottom:281.600000pt;}
.y55_c01490{bottom:282.240000pt;}
.y57_c01490{bottom:283.520000pt;}
.y53_c01490{bottom:289.920000pt;}
.y52_c01490{bottom:291.200000pt;}
.y59_c01490{bottom:292.480000pt;}
.y54_c01490{bottom:294.400000pt;}
.y51_c01490{bottom:308.480000pt;}
.y4f_c01490{bottom:309.760000pt;}
.y50_c01490{bottom:312.320000pt;}
.y49_c01490{bottom:318.720000pt;}
.y4d_c01490{bottom:319.360000pt;}
.y4a_c01490{bottom:320.640000pt;}
.y4e_c01490{bottom:321.280000pt;}
.y4b_c01490{bottom:322.560000pt;}
.y4c_c01490{bottom:327.680000pt;}
.y47_c01490{bottom:345.600000pt;}
.y45_c01490{bottom:346.240000pt;}
.y48_c01490{bottom:346.880000pt;}
.y46_c01490{bottom:347.520000pt;}
.y43_c01490{bottom:348.160000pt;}
.y40_c01490{bottom:348.800000pt;}
.y42_c01490{bottom:349.440000pt;}
.y44_c01490{bottom:350.080000pt;}
.y41_c01490{bottom:352.000000pt;}
.y3f_c01490{bottom:373.120000pt;}
.y3c_c01490{bottom:374.400000pt;}
.y3b_c01490{bottom:375.040000pt;}
.y3a_c01490{bottom:375.680000pt;}
.y3e_c01490{bottom:376.320000pt;}
.y3d_c01490{bottom:376.960000pt;}
.y38_c01490{bottom:377.600000pt;}
.y36_c01490{bottom:378.240000pt;}
.y39_c01490{bottom:379.520000pt;}
.y37_c01490{bottom:380.800000pt;}
.y35_c01490{bottom:428.160000pt;}
.y33_c01490{bottom:465.920000pt;}
.y34_c01490{bottom:467.840000pt;}
.y32_c01490{bottom:468.480000pt;}
.y31_c01490{bottom:515.200000pt;}
.y2f_c01490{bottom:515.840000pt;}
.y30_c01490{bottom:516.480000pt;}
.y2b_c01490{bottom:551.680000pt;}
.y2a_c01490{bottom:552.960000pt;}
.y2d_c01490{bottom:553.600000pt;}
.y2e_c01490{bottom:554.240000pt;}
.y2c_c01490{bottom:554.880000pt;}
.y28_c01490{bottom:589.440000pt;}
.y25_c01490{bottom:590.080000pt;}
.y26_c01490{bottom:590.720000pt;}
.y27_c01490{bottom:592.000000pt;}
.y29_c01490{bottom:592.640000pt;}
.y1f_c01490{bottom:628.480000pt;}
.y22_c01490{bottom:629.760000pt;}
.y21_c01490{bottom:630.400000pt;}
.y20_c01490{bottom:631.040000pt;}
.y24_c01490{bottom:631.680000pt;}
.y23_c01490{bottom:632.960000pt;}
.y1d_c01490{bottom:666.880000pt;}
.y1b_c01490{bottom:668.800000pt;}
.y1c_c01490{bottom:669.440000pt;}
.y1e_c01490{bottom:670.080000pt;}
.y17_c01490{bottom:704.640000pt;}
.y1a_c01490{bottom:705.280000pt;}
.y16_c01490{bottom:707.200000pt;}
.y19_c01490{bottom:707.840000pt;}
.y18_c01490{bottom:708.480000pt;}
.y15_c01490{bottom:743.680000pt;}
.y14_c01490{bottom:744.960000pt;}
.y12_c01490{bottom:745.600000pt;}
.y13_c01490{bottom:746.240000pt;}
.y11_c01490{bottom:791.040000pt;}
.y10_c01490{bottom:793.600000pt;}
.yc_c01490{bottom:829.440000pt;}
.yd_c01490{bottom:830.080000pt;}
.yf_c01490{bottom:830.720000pt;}
.ye_c01490{bottom:831.360000pt;}
.yb_c01490{bottom:832.000000pt;}
.y7_c01490{bottom:866.560000pt;}
.y9_c01490{bottom:867.200000pt;}
.ya_c01490{bottom:869.120000pt;}
.y8_c01490{bottom:869.760000pt;}
.y4_c01490{bottom:904.960000pt;}
.y3_c01490{bottom:905.600000pt;}
.y5_c01490{bottom:907.520000pt;}
.y6_c01490{bottom:908.160000pt;}
.y2_c01490{bottom:908.800000pt;}
.y1_c01490{bottom:970.240000pt;}
.h13_c01490{height:9.215000pt;}
.h11_c01490{height:11.518750pt;}
.he_c01490{height:13.822500pt;}
.hb_c01490{height:27.645000pt;}
.ha_c01490{height:29.948750pt;}
.h10_c01490{height:32.252500pt;}
.h12_c01490{height:34.556250pt;}
.h3_c01490{height:36.860000pt;}
.h9_c01490{height:39.163750pt;}
.h7_c01490{height:41.467500pt;}
.hc_c01490{height:43.771250pt;}
.hd_c01490{height:46.075000pt;}
.h6_c01490{height:48.378750pt;}
.h8_c01490{height:50.682500pt;}
.hf_c01490{height:52.986250pt;}
.h4_c01490{height:55.290000pt;}
.h5_c01490{height:57.593750pt;}
.h2_c01490{height:59.897500pt;}
.h14_c01490{height:82.935000pt;}
.h0_c01490{height:1025.280000pt;}
.h1_c01490{height:1025.333333pt;}
.w0_c01490{width:672.640000pt;}
.w1_c01490{width:672.666667pt;}
.x0_c01490{left:0.000000pt;}
.x57_c01490{left:29.440000pt;}
.x43_c01490{left:30.720000pt;}
.x12_c01490{left:35.200000pt;}
.x9_c01490{left:36.480000pt;}
.x6f_c01490{left:46.720000pt;}
.x44_c01490{left:48.000000pt;}
.x13_c01490{left:63.360000pt;}
.x70_c01490{left:65.920000pt;}
.x45_c01490{left:67.200000pt;}
.xa_c01490{left:73.600000pt;}
.x1f_c01490{left:83.200000pt;}
.x27_c01490{left:84.480000pt;}
.x14_c01490{left:92.800000pt;}
.x3b_c01490{left:101.760000pt;}
.x74_c01490{left:104.320000pt;}
.x77_c01490{left:113.280000pt;}
.x71_c01490{left:114.560000pt;}
.x2f_c01490{left:121.600000pt;}
.x46_c01490{left:124.800000pt;}
.x2_c01490{left:131.200000pt;}
.x78_c01490{left:134.400000pt;}
.x28_c01490{left:140.800000pt;}
.x15_c01490{left:142.080000pt;}
.x47_c01490{left:145.280000pt;}
.xb_c01490{left:150.400000pt;}
.x5f_c01490{left:153.600000pt;}
.x3_c01490{left:160.000000pt;}
.x63_c01490{left:167.040000pt;}
.x36_c01490{left:169.600000pt;}
.x29_c01490{left:178.560000pt;}
.x16_c01490{left:179.840000pt;}
.x60_c01490{left:182.400000pt;}
.xc_c01490{left:189.440000pt;}
.x37_c01490{left:197.760000pt;}
.x58_c01490{left:201.600000pt;}
.x48_c01490{left:202.880000pt;}
.x64_c01490{left:206.080000pt;}
.x17_c01490{left:208.000000pt;}
.xd_c01490{left:218.880000pt;}
.x40_c01490{left:227.200000pt;}
.x20_c01490{left:228.480000pt;}
.x61_c01490{left:231.680000pt;}
.x18_c01490{left:236.800000pt;}
.x54_c01490{left:240.000000pt;}
.x49_c01490{left:241.920000pt;}
.x21_c01490{left:246.400000pt;}
.x65_c01490{left:253.440000pt;}
.x19_c01490{left:257.280000pt;}
.x62_c01490{left:259.200000pt;}
.x5d_c01490{left:260.480000pt;}
.x7e_c01490{left:263.040000pt;}
.x66_c01490{left:273.280000pt;}
.x1a_c01490{left:275.200000pt;}
.x41_c01490{left:284.800000pt;}
.x32_c01490{left:286.080000pt;}
.x5e_c01490{left:288.640000pt;}
.x7f_c01490{left:292.480000pt;}
.x4_c01490{left:294.400000pt;}
.x2a_c01490{left:295.680000pt;}
.x55_c01490{left:297.600000pt;}
.x50_c01490{left:298.880000pt;}
.x1b_c01490{left:305.280000pt;}
.x3c_c01490{left:313.600000pt;}
.x56_c01490{left:317.440000pt;}
.x4a_c01490{left:318.720000pt;}
.x72_c01490{left:321.280000pt;}
.x1c_c01490{left:323.200000pt;}
.x3d_c01490{left:332.160000pt;}
.xe_c01490{left:342.400000pt;}
.x67_c01490{left:350.080000pt;}
.x79_c01490{left:351.360000pt;}
.x51_c01490{left:356.480000pt;}
.x1d_c01490{left:361.600000pt;}
.x59_c01490{left:366.720000pt;}
.x22_c01490{left:371.200000pt;}
.x38_c01490{left:372.480000pt;}
.x52_c01490{left:374.400000pt;}
.x4b_c01490{left:375.680000pt;}
.xf_c01490{left:380.800000pt;}
.x2b_c01490{left:382.080000pt;}
.x68_c01490{left:387.840000pt;}
.x5_c01490{left:391.040000pt;}
.x4c_c01490{left:394.880000pt;}
.x39_c01490{left:400.000000pt;}
.x3e_c01490{left:401.280000pt;}
.x5a_c01490{left:403.840000pt;}
.x69_c01490{left:408.320000pt;}
.x23_c01490{left:410.880000pt;}
.x10_c01490{left:418.560000pt;}
.x4d_c01490{left:424.320000pt;}
.x30_c01490{left:428.800000pt;}
.x7a_c01490{left:437.120000pt;}
.x6_c01490{left:439.040000pt;}
.x6a_c01490{left:455.680000pt;}
.x31_c01490{left:458.240000pt;}
.x5b_c01490{left:462.080000pt;}
.x7d_c01490{left:465.280000pt;}
.x7_c01490{left:468.480000pt;}
.x4e_c01490{left:471.680000pt;}
.x6b_c01490{left:474.880000pt;}
.x33_c01490{left:478.080000pt;}
.x2c_c01490{left:486.400000pt;}
.x80_c01490{left:495.360000pt;}
.x3a_c01490{left:497.280000pt;}
.x53_c01490{left:499.840000pt;}
.x6c_c01490{left:504.960000pt;}
.x24_c01490{left:506.240000pt;}
.x2d_c01490{left:516.480000pt;}
.x4f_c01490{left:520.960000pt;}
.x11_c01490{left:525.440000pt;}
.x42_c01490{left:535.040000pt;}
.x7c_c01490{left:543.360000pt;}
.x8_c01490{left:545.920000pt;}
.x5c_c01490{left:548.480000pt;}
.x73_c01490{left:551.680000pt;}
.x7b_c01490{left:552.960000pt;}
.x25_c01490{left:554.240000pt;}
.x34_c01490{left:563.840000pt;}
.x1e_c01490{left:565.120000pt;}
.x75_c01490{left:572.160000pt;}
.x3f_c01490{left:574.080000pt;}
.x6d_c01490{left:581.120000pt;}
.x2e_c01490{left:583.680000pt;}
.x26_c01490{left:593.280000pt;}
.x1_c01490{left:595.200000pt;}
.x6e_c01490{left:600.960000pt;}
.x35_c01490{left:602.880000pt;}
.x76_c01490{left:620.160000pt;}
}





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

.ir_c01491:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01491{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01491;src:url('chunks/assets/font_47d2d883fb041e55e5af3756.woff2')format("woff");}.ff1_c01491{font-family:ff1_c01491;line-height:1.109863;font-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_c01491{transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);}
.m16_c01491{transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);}
.m1a_c01491{transform:matrix(0.222550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222550,0.000000,0.000000,0.250000,0,0);}
.m5b_c01491{transform:matrix(0.235575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235575,0.000000,0.000000,0.250000,0,0);}
.m30_c01491{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m2d_c01491{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m1d_c01491{transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);}
.mc_c01491{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m28_c01491{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m23_c01491{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);}
.m22_c01491{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);}
.m32_c01491{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);}
.m2b_c01491{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);}
.m33_c01491{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01491{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_c01491{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);}
.m38_c01491{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01491{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m17_c01491{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01491{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m35_c01491{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m34_c01491{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m47_c01491{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m5a_c01491{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01491{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m18_c01491{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m36_c01491{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m21_c01491{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m64_c01491{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m20_c01491{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m14_c01491{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m6_c01491{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);}
.m25_c01491{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);}
.m27_c01491{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m1_c01491{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01491{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);}
.m68_c01491{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m26_c01491{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);}
.m0_c01491{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01491{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m7_c01491{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m37_c01491{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01491{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m44_c01491{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m8_c01491{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);}
.m2a_c01491{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);}
.m2_c01491{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);}
.m2c_c01491{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m15_c01491{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);}
.m39_c01491{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m42_c01491{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);}
.m3a_c01491{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m31_c01491{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m29_c01491{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m11_c01491{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);}
.m4b_c01491{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m60_c01491{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);}
.m56_c01491{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);}
.m41_c01491{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m55_c01491{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.mb_c01491{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);}
.m3_c01491{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m5d_c01491{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m9_c01491{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);}
.m40_c01491{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m10_c01491{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.mf_c01491{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);}
.m65_c01491{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m13_c01491{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01491{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);}
.m66_c01491{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m52_c01491{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m43_c01491{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01491{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);}
.m57_c01491{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m5_c01491{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m58_c01491{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);}
.m46_c01491{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m61_c01491{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01491{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);}
.m59_c01491{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m5c_c01491{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m4a_c01491{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01491{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m5f_c01491{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);}
.m51_c01491{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m62_c01491{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.md_c01491{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m63_c01491{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.ma_c01491{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01491{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m53_c01491{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);}
.m4_c01491{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);}
.m49_c01491{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);}
.m48_c01491{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01491{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m45_c01491{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.me_c01491{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m5e_c01491{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);}
.m3b_c01491{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m50_c01491{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);}
.m54_c01491{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.m67_c01491{transform:matrix(0.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680000,0.000000,0.000000,0.250000,0,0);}
.m24_c01491{transform:matrix(0.707500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.707500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.707500,0.000000,0.000000,0.250000,0,0);}
.m12_c01491{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.v0_c01491{vertical-align:0.000000px;}
.ls0_c01491{letter-spacing:0.000000px;}
.sc__c01491{text-shadow:none;}
.sc0_c01491{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01491{-webkit-text-stroke:0px transparent;}
.sc0_c01491{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01491{word-spacing:-2.304240px;}
.ws0_c01491{word-spacing:-1.532160px;}
.ws2_c01491{word-spacing:0.000000px;}
.fc0_c01491{color:transparent;}
.fs8_c01491{font-size:14.400000px;}
.fs4_c01491{font-size:34.560000px;}
.fsd_c01491{font-size:37.440000px;}
.fs9_c01491{font-size:43.200000px;}
.fs1_c01491{font-size:46.080000px;}
.fs3_c01491{font-size:48.960000px;}
.fs5_c01491{font-size:51.840000px;}
.fsc_c01491{font-size:54.720000px;}
.fs2_c01491{font-size:57.600000px;}
.fs7_c01491{font-size:60.480000px;}
.fsb_c01491{font-size:63.360000px;}
.fsa_c01491{font-size:66.240000px;}
.fs6_c01491{font-size:69.120000px;}
.fs0_c01491{font-size:74.880000px;}
.y0_c01491{bottom:0.000000px;}
.y5b_c01491{bottom:93.600000px;}
.y5a_c01491{bottom:96.480000px;}
.y5c_c01491{bottom:97.200000px;}
.y59_c01491{bottom:136.800000px;}
.y58_c01491{bottom:137.520000px;}
.y57_c01491{bottom:139.680000px;}
.y56_c01491{bottom:140.400000px;}
.y52_c01491{bottom:180.000000px;}
.y54_c01491{bottom:180.720000px;}
.y53_c01491{bottom:182.880000px;}
.y55_c01491{bottom:183.600000px;}
.y50_c01491{bottom:223.200000px;}
.y51_c01491{bottom:226.080000px;}
.y4f_c01491{bottom:226.800000px;}
.y4b_c01491{bottom:265.680000px;}
.y4e_c01491{bottom:266.400000px;}
.y4d_c01491{bottom:267.120000px;}
.y4c_c01491{bottom:268.560000px;}
.y4a_c01491{bottom:269.280000px;}
.y49_c01491{bottom:270.000000px;}
.y47_c01491{bottom:308.880000px;}
.y45_c01491{bottom:309.600000px;}
.y48_c01491{bottom:311.760000px;}
.y46_c01491{bottom:312.480000px;}
.y41_c01491{bottom:352.080000px;}
.y42_c01491{bottom:353.520000px;}
.y40_c01491{bottom:354.240000px;}
.y43_c01491{bottom:355.680000px;}
.y44_c01491{bottom:356.400000px;}
.y3f_c01491{bottom:408.240000px;}
.y3e_c01491{bottom:408.960000px;}
.y3a_c01491{bottom:448.560000px;}
.y3d_c01491{bottom:449.280000px;}
.y3c_c01491{bottom:451.440000px;}
.y3b_c01491{bottom:452.160000px;}
.y39_c01491{bottom:494.640000px;}
.y38_c01491{bottom:495.360000px;}
.y36_c01491{bottom:535.680000px;}
.y37_c01491{bottom:537.840000px;}
.y35_c01491{bottom:538.560000px;}
.y34_c01491{bottom:577.440000px;}
.y33_c01491{bottom:578.160000px;}
.y32_c01491{bottom:581.040000px;}
.y2e_c01491{bottom:621.360000px;}
.y30_c01491{bottom:622.080000px;}
.y2f_c01491{bottom:624.240000px;}
.y31_c01491{bottom:624.960000px;}
.y2d_c01491{bottom:664.560000px;}
.y2c_c01491{bottom:666.720000px;}
.y2b_c01491{bottom:667.440000px;}
.y29_c01491{bottom:709.920000px;}
.y2a_c01491{bottom:710.640000px;}
.y28_c01491{bottom:771.840000px;}
.y25_c01491{bottom:772.560000px;}
.y27_c01491{bottom:774.000000px;}
.y26_c01491{bottom:774.720000px;}
.y21_c01491{bottom:793.440000px;}
.y24_c01491{bottom:794.160000px;}
.y23_c01491{bottom:795.600000px;}
.y22_c01491{bottom:796.320000px;}
.y1f_c01491{bottom:815.040000px;}
.y1d_c01491{bottom:815.760000px;}
.y20_c01491{bottom:816.480000px;}
.y1e_c01491{bottom:817.920000px;}
.y1c_c01491{bottom:835.920000px;}
.y1a_c01491{bottom:836.640000px;}
.y18_c01491{bottom:837.360000px;}
.y1b_c01491{bottom:838.800000px;}
.y19_c01491{bottom:839.520000px;}
.y17_c01491{bottom:857.520000px;}
.y14_c01491{bottom:858.240000px;}
.y15_c01491{bottom:858.960000px;}
.y16_c01491{bottom:859.680000px;}
.y13_c01491{bottom:860.400000px;}
.y11_c01491{bottom:887.040000px;}
.y12_c01491{bottom:887.760000px;}
.y10_c01491{bottom:890.640000px;}
.yf_c01491{bottom:891.360000px;}
.ye_c01491{bottom:892.080000px;}
.yd_c01491{bottom:892.800000px;}
.y9_c01491{bottom:943.920000px;}
.yc_c01491{bottom:945.360000px;}
.ya_c01491{bottom:946.080000px;}
.yb_c01491{bottom:948.960000px;}
.y8_c01491{bottom:984.960000px;}
.y7_c01491{bottom:985.680000px;}
.y5_c01491{bottom:988.560000px;}
.y6_c01491{bottom:989.280000px;}
.y4_c01491{bottom:1028.880000px;}
.y3_c01491{bottom:1031.760000px;}
.y2_c01491{bottom:1032.480000px;}
.y1_c01491{bottom:1099.440000px;}
.ha_c01491{height:12.958594px;}
.h6_c01491{height:31.100625px;}
.hf_c01491{height:33.692344px;}
.hb_c01491{height:38.875781px;}
.h3_c01491{height:41.467500px;}
.h5_c01491{height:44.059219px;}
.h7_c01491{height:46.650937px;}
.he_c01491{height:49.242656px;}
.h4_c01491{height:51.834375px;}
.h9_c01491{height:54.426094px;}
.hd_c01491{height:57.017812px;}
.hc_c01491{height:59.609531px;}
.h8_c01491{height:62.201250px;}
.h2_c01491{height:67.384687px;}
.h1_c01491{height:1151.250000px;}
.h0_c01491{height:1151.280000px;}
.w1_c01491{width:750.750000px;}
.w0_c01491{width:750.960000px;}
.x0_c01491{left:0.000000px;}
.x46_c01491{left:36.000000px;}
.xa_c01491{left:37.440000px;}
.x1b_c01491{left:49.680000px;}
.xb_c01491{left:69.120000px;}
.x47_c01491{left:80.640000px;}
.x1c_c01491{left:82.080000px;}
.x12_c01491{left:91.440000px;}
.x22_c01491{left:92.880000px;}
.x49_c01491{left:101.520000px;}
.xc_c01491{left:112.320000px;}
.x1d_c01491{left:113.760000px;}
.x23_c01491{left:124.560000px;}
.x4c_c01491{left:133.920000px;}
.x2a_c01491{left:144.720000px;}
.x2_c01491{left:146.160000px;}
.x43_c01491{left:155.520000px;}
.x37_c01491{left:167.040000px;}
.x3_c01491{left:177.840000px;}
.x2b_c01491{left:187.200000px;}
.x15_c01491{left:189.360000px;}
.x44_c01491{left:198.720000px;}
.x32_c01491{left:209.520000px;}
.x13_c01491{left:211.680000px;}
.xd_c01491{left:221.040000px;}
.x2c_c01491{left:231.120000px;}
.x4a_c01491{left:232.560000px;}
.x3e_c01491{left:241.920000px;}
.x39_c01491{left:252.720000px;}
.x4_c01491{left:254.160000px;}
.x24_c01491{left:264.240000px;}
.x16_c01491{left:265.680000px;}
.x2d_c01491{left:275.040000px;}
.x14_c01491{left:285.840000px;}
.x17_c01491{left:297.360000px;}
.x5_c01491{left:308.160000px;}
.x4d_c01491{left:318.240000px;}
.x1e_c01491{left:319.680000px;}
.x33_c01491{left:329.760000px;}
.x6_c01491{left:339.840000px;}
.x25_c01491{left:350.640000px;}
.x1f_c01491{left:352.080000px;}
.x34_c01491{left:361.440000px;}
.x3f_c01491{left:371.520000px;}
.x7_c01491{left:372.960000px;}
.x48_c01491{left:383.040000px;}
.xe_c01491{left:384.480000px;}
.x2e_c01491{left:393.840000px;}
.x3a_c01491{left:404.640000px;}
.x18_c01491{left:416.880000px;}
.x2f_c01491{left:426.960000px;}
.x3b_c01491{left:437.040000px;}
.x26_c01491{left:449.280000px;}
.x8_c01491{left:459.360000px;}
.x45_c01491{left:469.440000px;}
.x4f_c01491{left:470.880000px;}
.x35_c01491{left:480.240000px;}
.x9_c01491{left:491.760000px;}
.x3d_c01491{left:513.360000px;}
.x36_c01491{left:523.440000px;}
.xf_c01491{left:524.880000px;}
.x3c_c01491{left:534.240000px;}
.x27_c01491{left:535.680000px;}
.x20_c01491{left:546.480000px;}
.x4e_c01491{left:555.120000px;}
.x40_c01491{left:566.640000px;}
.x28_c01491{left:568.080000px;}
.x30_c01491{left:578.160000px;}
.x21_c01491{left:579.600000px;}
.x10_c01491{left:588.960000px;}
.x41_c01491{left:598.320000px;}
.x19_c01491{left:600.480000px;}
.x31_c01491{left:611.280000px;}
.x11_c01491{left:622.080000px;}
.x29_c01491{left:633.600000px;}
.x1a_c01491{left:643.680000px;}
.x38_c01491{left:653.760000px;}
.x42_c01491{left:665.280000px;}
.x1_c01491{left:670.320000px;}
.x4b_c01491{left:676.080000px;}
@media print{
.v0_c01491{vertical-align:0.000000pt;}
.ls0_c01491{letter-spacing:0.000000pt;}
.ws1_c01491{word-spacing:-2.048213pt;}
.ws0_c01491{word-spacing:-1.361920pt;}
.ws2_c01491{word-spacing:0.000000pt;}
.fs8_c01491{font-size:12.800000pt;}
.fs4_c01491{font-size:30.720000pt;}
.fsd_c01491{font-size:33.280000pt;}
.fs9_c01491{font-size:38.400000pt;}
.fs1_c01491{font-size:40.960000pt;}
.fs3_c01491{font-size:43.520000pt;}
.fs5_c01491{font-size:46.080000pt;}
.fsc_c01491{font-size:48.640000pt;}
.fs2_c01491{font-size:51.200000pt;}
.fs7_c01491{font-size:53.760000pt;}
.fsb_c01491{font-size:56.320000pt;}
.fsa_c01491{font-size:58.880000pt;}
.fs6_c01491{font-size:61.440000pt;}
.fs0_c01491{font-size:66.560000pt;}
.y0_c01491{bottom:0.000000pt;}
.y5b_c01491{bottom:83.200000pt;}
.y5a_c01491{bottom:85.760000pt;}
.y5c_c01491{bottom:86.400000pt;}
.y59_c01491{bottom:121.600000pt;}
.y58_c01491{bottom:122.240000pt;}
.y57_c01491{bottom:124.160000pt;}
.y56_c01491{bottom:124.800000pt;}
.y52_c01491{bottom:160.000000pt;}
.y54_c01491{bottom:160.640000pt;}
.y53_c01491{bottom:162.560000pt;}
.y55_c01491{bottom:163.200000pt;}
.y50_c01491{bottom:198.400000pt;}
.y51_c01491{bottom:200.960000pt;}
.y4f_c01491{bottom:201.600000pt;}
.y4b_c01491{bottom:236.160000pt;}
.y4e_c01491{bottom:236.800000pt;}
.y4d_c01491{bottom:237.440000pt;}
.y4c_c01491{bottom:238.720000pt;}
.y4a_c01491{bottom:239.360000pt;}
.y49_c01491{bottom:240.000000pt;}
.y47_c01491{bottom:274.560000pt;}
.y45_c01491{bottom:275.200000pt;}
.y48_c01491{bottom:277.120000pt;}
.y46_c01491{bottom:277.760000pt;}
.y41_c01491{bottom:312.960000pt;}
.y42_c01491{bottom:314.240000pt;}
.y40_c01491{bottom:314.880000pt;}
.y43_c01491{bottom:316.160000pt;}
.y44_c01491{bottom:316.800000pt;}
.y3f_c01491{bottom:362.880000pt;}
.y3e_c01491{bottom:363.520000pt;}
.y3a_c01491{bottom:398.720000pt;}
.y3d_c01491{bottom:399.360000pt;}
.y3c_c01491{bottom:401.280000pt;}
.y3b_c01491{bottom:401.920000pt;}
.y39_c01491{bottom:439.680000pt;}
.y38_c01491{bottom:440.320000pt;}
.y36_c01491{bottom:476.160000pt;}
.y37_c01491{bottom:478.080000pt;}
.y35_c01491{bottom:478.720000pt;}
.y34_c01491{bottom:513.280000pt;}
.y33_c01491{bottom:513.920000pt;}
.y32_c01491{bottom:516.480000pt;}
.y2e_c01491{bottom:552.320000pt;}
.y30_c01491{bottom:552.960000pt;}
.y2f_c01491{bottom:554.880000pt;}
.y31_c01491{bottom:555.520000pt;}
.y2d_c01491{bottom:590.720000pt;}
.y2c_c01491{bottom:592.640000pt;}
.y2b_c01491{bottom:593.280000pt;}
.y29_c01491{bottom:631.040000pt;}
.y2a_c01491{bottom:631.680000pt;}
.y28_c01491{bottom:686.080000pt;}
.y25_c01491{bottom:686.720000pt;}
.y27_c01491{bottom:688.000000pt;}
.y26_c01491{bottom:688.640000pt;}
.y21_c01491{bottom:705.280000pt;}
.y24_c01491{bottom:705.920000pt;}
.y23_c01491{bottom:707.200000pt;}
.y22_c01491{bottom:707.840000pt;}
.y1f_c01491{bottom:724.480000pt;}
.y1d_c01491{bottom:725.120000pt;}
.y20_c01491{bottom:725.760000pt;}
.y1e_c01491{bottom:727.040000pt;}
.y1c_c01491{bottom:743.040000pt;}
.y1a_c01491{bottom:743.680000pt;}
.y18_c01491{bottom:744.320000pt;}
.y1b_c01491{bottom:745.600000pt;}
.y19_c01491{bottom:746.240000pt;}
.y17_c01491{bottom:762.240000pt;}
.y14_c01491{bottom:762.880000pt;}
.y15_c01491{bottom:763.520000pt;}
.y16_c01491{bottom:764.160000pt;}
.y13_c01491{bottom:764.800000pt;}
.y11_c01491{bottom:788.480000pt;}
.y12_c01491{bottom:789.120000pt;}
.y10_c01491{bottom:791.680000pt;}
.yf_c01491{bottom:792.320000pt;}
.ye_c01491{bottom:792.960000pt;}
.yd_c01491{bottom:793.600000pt;}
.y9_c01491{bottom:839.040000pt;}
.yc_c01491{bottom:840.320000pt;}
.ya_c01491{bottom:840.960000pt;}
.yb_c01491{bottom:843.520000pt;}
.y8_c01491{bottom:875.520000pt;}
.y7_c01491{bottom:876.160000pt;}
.y5_c01491{bottom:878.720000pt;}
.y6_c01491{bottom:879.360000pt;}
.y4_c01491{bottom:914.560000pt;}
.y3_c01491{bottom:917.120000pt;}
.y2_c01491{bottom:917.760000pt;}
.y1_c01491{bottom:977.280000pt;}
.ha_c01491{height:11.518750pt;}
.h6_c01491{height:27.645000pt;}
.hf_c01491{height:29.948750pt;}
.hb_c01491{height:34.556250pt;}
.h3_c01491{height:36.860000pt;}
.h5_c01491{height:39.163750pt;}
.h7_c01491{height:41.467500pt;}
.he_c01491{height:43.771250pt;}
.h4_c01491{height:46.075000pt;}
.h9_c01491{height:48.378750pt;}
.hd_c01491{height:50.682500pt;}
.hc_c01491{height:52.986250pt;}
.h8_c01491{height:55.290000pt;}
.h2_c01491{height:59.897500pt;}
.h1_c01491{height:1023.333333pt;}
.h0_c01491{height:1023.360000pt;}
.w1_c01491{width:667.333333pt;}
.w0_c01491{width:667.520000pt;}
.x0_c01491{left:0.000000pt;}
.x46_c01491{left:32.000000pt;}
.xa_c01491{left:33.280000pt;}
.x1b_c01491{left:44.160000pt;}
.xb_c01491{left:61.440000pt;}
.x47_c01491{left:71.680000pt;}
.x1c_c01491{left:72.960000pt;}
.x12_c01491{left:81.280000pt;}
.x22_c01491{left:82.560000pt;}
.x49_c01491{left:90.240000pt;}
.xc_c01491{left:99.840000pt;}
.x1d_c01491{left:101.120000pt;}
.x23_c01491{left:110.720000pt;}
.x4c_c01491{left:119.040000pt;}
.x2a_c01491{left:128.640000pt;}
.x2_c01491{left:129.920000pt;}
.x43_c01491{left:138.240000pt;}
.x37_c01491{left:148.480000pt;}
.x3_c01491{left:158.080000pt;}
.x2b_c01491{left:166.400000pt;}
.x15_c01491{left:168.320000pt;}
.x44_c01491{left:176.640000pt;}
.x32_c01491{left:186.240000pt;}
.x13_c01491{left:188.160000pt;}
.xd_c01491{left:196.480000pt;}
.x2c_c01491{left:205.440000pt;}
.x4a_c01491{left:206.720000pt;}
.x3e_c01491{left:215.040000pt;}
.x39_c01491{left:224.640000pt;}
.x4_c01491{left:225.920000pt;}
.x24_c01491{left:234.880000pt;}
.x16_c01491{left:236.160000pt;}
.x2d_c01491{left:244.480000pt;}
.x14_c01491{left:254.080000pt;}
.x17_c01491{left:264.320000pt;}
.x5_c01491{left:273.920000pt;}
.x4d_c01491{left:282.880000pt;}
.x1e_c01491{left:284.160000pt;}
.x33_c01491{left:293.120000pt;}
.x6_c01491{left:302.080000pt;}
.x25_c01491{left:311.680000pt;}
.x1f_c01491{left:312.960000pt;}
.x34_c01491{left:321.280000pt;}
.x3f_c01491{left:330.240000pt;}
.x7_c01491{left:331.520000pt;}
.x48_c01491{left:340.480000pt;}
.xe_c01491{left:341.760000pt;}
.x2e_c01491{left:350.080000pt;}
.x3a_c01491{left:359.680000pt;}
.x18_c01491{left:370.560000pt;}
.x2f_c01491{left:379.520000pt;}
.x3b_c01491{left:388.480000pt;}
.x26_c01491{left:399.360000pt;}
.x8_c01491{left:408.320000pt;}
.x45_c01491{left:417.280000pt;}
.x4f_c01491{left:418.560000pt;}
.x35_c01491{left:426.880000pt;}
.x9_c01491{left:437.120000pt;}
.x3d_c01491{left:456.320000pt;}
.x36_c01491{left:465.280000pt;}
.xf_c01491{left:466.560000pt;}
.x3c_c01491{left:474.880000pt;}
.x27_c01491{left:476.160000pt;}
.x20_c01491{left:485.760000pt;}
.x4e_c01491{left:493.440000pt;}
.x40_c01491{left:503.680000pt;}
.x28_c01491{left:504.960000pt;}
.x30_c01491{left:513.920000pt;}
.x21_c01491{left:515.200000pt;}
.x10_c01491{left:523.520000pt;}
.x41_c01491{left:531.840000pt;}
.x19_c01491{left:533.760000pt;}
.x31_c01491{left:543.360000pt;}
.x11_c01491{left:552.960000pt;}
.x29_c01491{left:563.200000pt;}
.x1a_c01491{left:572.160000pt;}
.x38_c01491{left:581.120000pt;}
.x42_c01491{left:591.360000pt;}
.x1_c01491{left:595.840000pt;}
.x4b_c01491{left:600.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_c01492 {
    display:none;
  }
  .loading-indicator_c01492.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01492 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01492 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01492" -> "#page-container .classname_c01492")
 */
.pf_c01492 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01492 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01492.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01492 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01492 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01492 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01492 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01492 {overflow:visible;}
  }
}
.c_c01492 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01492 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01492:after { /* webkit #35443 */
  content: '';
}
.t_c01492:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01492 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01492 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01492 { /* info for Javascript */
  display:none;
}
.l_c01492 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01492 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01492 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01492:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01492{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01492;src:url('chunks/assets/font_077c9ebbb080bf92f2afec01.woff2')format("woff");}.ff1_c01492{font-family:ff1_c01492;line-height:1.109863;font-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_c01492{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);}
.m4b_c01492{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m15_c01492{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);}
.m38_c01492{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01492{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01492{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m50_c01492{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m36_c01492{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01492{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m49_c01492{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m4a_c01492{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);}
.m47_c01492{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m29_c01492{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);}
.m2a_c01492{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);}
.m41_c01492{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);}
.m4f_c01492{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m33_c01492{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m26_c01492{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m35_c01492{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);}
.m46_c01492{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);}
.m0_c01492{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m19_c01492{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.md_c01492{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);}
.m25_c01492{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);}
.m53_c01492{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m10_c01492{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);}
.m51_c01492{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01492{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m1_c01492{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);}
.m20_c01492{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);}
.m24_c01492{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01492{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01492{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m6_c01492{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m7_c01492{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);}
.m48_c01492{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01492{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);}
.m42_c01492{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);}
.m4e_c01492{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m22_c01492{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m3_c01492{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m17_c01492{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.mf_c01492{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);}
.m3c_c01492{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m28_c01492{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);}
.m31_c01492{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);}
.m34_c01492{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m23_c01492{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01492{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m44_c01492{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m13_c01492{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);}
.m8_c01492{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m54_c01492{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m5_c01492{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.ma_c01492{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01492{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m27_c01492{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m18_c01492{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);}
.m2d_c01492{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01492{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01492{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);}
.m45_c01492{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01492{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m39_c01492{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);}
.m2f_c01492{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m9_c01492{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m30_c01492{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01492{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m12_c01492{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);}
.m4c_c01492{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.mc_c01492{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.me_c01492{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m21_c01492{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m52_c01492{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m4_c01492{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m16_c01492{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m2_c01492{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);}
.m32_c01492{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);}
.m14_c01492{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);}
.mb_c01492{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01492{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01492{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);}
.m43_c01492{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);}
.m40_c01492{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);}
.m37_c01492{transform:matrix(0.985000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.985000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.985000,0.000000,0.000000,0.250000,0,0);}
.v0_c01492{vertical-align:0.000000px;}
.ls0_c01492{letter-spacing:0.000000px;}
.sc__c01492{text-shadow:none;}
.sc0_c01492{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01492{-webkit-text-stroke:0px transparent;}
.sc0_c01492{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01492{word-spacing:0.000000px;}
.fc0_c01492{color:transparent;}
.fsc_c01492{font-size:20.160000px;}
.fsa_c01492{font-size:31.680000px;}
.fs4_c01492{font-size:34.560000px;}
.fs8_c01492{font-size:37.440000px;}
.fse_c01492{font-size:43.200000px;}
.fs3_c01492{font-size:46.080000px;}
.fs2_c01492{font-size:48.960000px;}
.fs1_c01492{font-size:51.840000px;}
.fsd_c01492{font-size:54.720000px;}
.fs7_c01492{font-size:57.600000px;}
.fs5_c01492{font-size:60.480000px;}
.fsb_c01492{font-size:63.360000px;}
.fs6_c01492{font-size:66.240000px;}
.fs9_c01492{font-size:69.120000px;}
.fs0_c01492{font-size:72.000000px;}
.y0_c01492{bottom:0.000000px;}
.y61_c01492{bottom:62.640000px;}
.y62_c01492{bottom:64.080000px;}
.y60_c01492{bottom:65.520000px;}
.y5f_c01492{bottom:66.240000px;}
.y63_c01492{bottom:66.960000px;}
.y5b_c01492{bottom:106.560000px;}
.y5e_c01492{bottom:108.000000px;}
.y5c_c01492{bottom:108.720000px;}
.y5d_c01492{bottom:109.440000px;}
.y5a_c01492{bottom:110.160000px;}
.y54_c01492{bottom:149.760000px;}
.y56_c01492{bottom:150.480000px;}
.y59_c01492{bottom:151.200000px;}
.y53_c01492{bottom:151.920000px;}
.y55_c01492{bottom:152.640000px;}
.y57_c01492{bottom:153.360000px;}
.y58_c01492{bottom:154.080000px;}
.y4f_c01492{bottom:192.240000px;}
.y4d_c01492{bottom:192.960000px;}
.y50_c01492{bottom:193.680000px;}
.y4e_c01492{bottom:195.120000px;}
.y51_c01492{bottom:195.840000px;}
.y52_c01492{bottom:196.560000px;}
.y47_c01492{bottom:234.720000px;}
.y4a_c01492{bottom:236.160000px;}
.y4b_c01492{bottom:236.880000px;}
.y49_c01492{bottom:238.320000px;}
.y48_c01492{bottom:239.040000px;}
.y4c_c01492{bottom:239.760000px;}
.y44_c01492{bottom:278.640000px;}
.y41_c01492{bottom:279.360000px;}
.y46_c01492{bottom:280.080000px;}
.y43_c01492{bottom:281.520000px;}
.y42_c01492{bottom:282.240000px;}
.y45_c01492{bottom:282.960000px;}
.y40_c01492{bottom:321.840000px;}
.y3e_c01492{bottom:322.560000px;}
.y3f_c01492{bottom:323.280000px;}
.y3c_c01492{bottom:324.720000px;}
.y3d_c01492{bottom:325.440000px;}
.y38_c01492{bottom:364.320000px;}
.y3a_c01492{bottom:365.040000px;}
.y39_c01492{bottom:367.200000px;}
.y3b_c01492{bottom:367.920000px;}
.y35_c01492{bottom:408.240000px;}
.y36_c01492{bottom:410.400000px;}
.y37_c01492{bottom:411.120000px;}
.y31_c01492{bottom:450.720000px;}
.y33_c01492{bottom:451.440000px;}
.y34_c01492{bottom:452.160000px;}
.y30_c01492{bottom:453.600000px;}
.y32_c01492{bottom:454.320000px;}
.y2e_c01492{bottom:493.920000px;}
.y2d_c01492{bottom:496.800000px;}
.y2f_c01492{bottom:497.520000px;}
.y2a_c01492{bottom:547.920000px;}
.y2c_c01492{bottom:548.640000px;}
.y29_c01492{bottom:550.800000px;}
.y2b_c01492{bottom:554.400000px;}
.y27_c01492{bottom:593.280000px;}
.y28_c01492{bottom:594.000000px;}
.y24_c01492{bottom:633.600000px;}
.y21_c01492{bottom:634.320000px;}
.y23_c01492{bottom:635.040000px;}
.y25_c01492{bottom:636.480000px;}
.y26_c01492{bottom:637.200000px;}
.y22_c01492{bottom:640.800000px;}
.y1f_c01492{bottom:676.080000px;}
.y20_c01492{bottom:678.960000px;}
.y1d_c01492{bottom:679.680000px;}
.y1e_c01492{bottom:680.400000px;}
.y1a_c01492{bottom:719.280000px;}
.y1b_c01492{bottom:722.160000px;}
.y1c_c01492{bottom:722.880000px;}
.y18_c01492{bottom:762.480000px;}
.y17_c01492{bottom:765.360000px;}
.y19_c01492{bottom:766.080000px;}
.y16_c01492{bottom:805.680000px;}
.y14_c01492{bottom:807.840000px;}
.y15_c01492{bottom:808.560000px;}
.y12_c01492{bottom:848.880000px;}
.y11_c01492{bottom:849.600000px;}
.y13_c01492{bottom:850.320000px;}
.y10_c01492{bottom:851.760000px;}
.ye_c01492{bottom:891.360000px;}
.yf_c01492{bottom:893.520000px;}
.yd_c01492{bottom:894.240000px;}
.yc_c01492{bottom:947.520000px;}
.yb_c01492{bottom:948.960000px;}
.ya_c01492{bottom:987.840000px;}
.y6_c01492{bottom:988.560000px;}
.y9_c01492{bottom:990.000000px;}
.y8_c01492{bottom:990.720000px;}
.y7_c01492{bottom:991.440000px;}
.y3_c01492{bottom:1030.320000px;}
.y5_c01492{bottom:1032.480000px;}
.y4_c01492{bottom:1033.200000px;}
.y2_c01492{bottom:1033.920000px;}
.y1_c01492{bottom:1097.280000px;}
.he_c01492{height:18.142031px;}
.hc_c01492{height:28.508906px;}
.h6_c01492{height:31.100625px;}
.ha_c01492{height:33.692344px;}
.h10_c01492{height:38.875781px;}
.h5_c01492{height:41.467500px;}
.h4_c01492{height:44.059219px;}
.h3_c01492{height:46.650937px;}
.hf_c01492{height:49.242656px;}
.h9_c01492{height:51.834375px;}
.h7_c01492{height:54.426094px;}
.hd_c01492{height:57.017812px;}
.h8_c01492{height:59.609531px;}
.hb_c01492{height:62.201250px;}
.h2_c01492{height:64.792969px;}
.h0_c01492{height:1157.760000px;}
.h1_c01492{height:1158.000000px;}
.w1_c01492{width:771.000000px;}
.w0_c01492{width:771.120000px;}
.x0_c01492{left:0.000000px;}
.x2_c01492{left:49.680000px;}
.x26_c01492{left:51.120000px;}
.x3b_c01492{left:54.000000px;}
.x4d_c01492{left:69.840000px;}
.x2a_c01492{left:82.080000px;}
.x1a_c01492{left:84.240000px;}
.x3c_c01492{left:93.600000px;}
.x3_c01492{left:95.040000px;}
.x23_c01492{left:104.400000px;}
.x35_c01492{left:114.480000px;}
.x4_c01492{left:126.000000px;}
.x43_c01492{left:128.880000px;}
.x2b_c01492{left:136.800000px;}
.x3d_c01492{left:139.680000px;}
.x2f_c01492{left:147.600000px;}
.x44_c01492{left:157.680000px;}
.x1b_c01492{left:159.120000px;}
.x48_c01492{left:168.480000px;}
.x56_c01492{left:178.560000px;}
.x53_c01492{left:180.000000px;}
.xe_c01492{left:181.440000px;}
.x1c_c01492{left:190.800000px;}
.x3e_c01492{left:200.880000px;}
.x30_c01492{left:211.680000px;}
.x5_c01492{left:213.120000px;}
.x54_c01492{left:221.760000px;}
.x2c_c01492{left:223.200000px;}
.x4c_c01492{left:226.800000px;}
.x27_c01492{left:234.000000px;}
.x49_c01492{left:244.080000px;}
.x6_c01492{left:245.520000px;}
.x31_c01492{left:255.600000px;}
.xf_c01492{left:267.120000px;}
.x28_c01492{left:277.920000px;}
.x1d_c01492{left:288.720000px;}
.x10_c01492{left:298.800000px;}
.x36_c01492{left:309.600000px;}
.x7_c01492{left:320.400000px;}
.x11_c01492{left:331.200000px;}
.x3f_c01492{left:341.280000px;}
.x32_c01492{left:352.080000px;}
.x4f_c01492{left:354.240000px;}
.x8_c01492{left:363.600000px;}
.x24_c01492{left:373.680000px;}
.x37_c01492{left:385.200000px;}
.x12_c01492{left:396.720000px;}
.x1e_c01492{left:406.080000px;}
.x51_c01492{left:407.520000px;}
.x4a_c01492{left:416.880000px;}
.x38_c01492{left:418.320000px;}
.x13_c01492{left:428.400000px;}
.x33_c01492{left:440.640000px;}
.x55_c01492{left:442.800000px;}
.x47_c01492{left:449.280000px;}
.x9_c01492{left:450.720000px;}
.x14_c01492{left:461.520000px;}
.x41_c01492{left:471.600000px;}
.x45_c01492{left:483.840000px;}
.x1f_c01492{left:493.200000px;}
.x4e_c01492{left:503.280000px;}
.xa_c01492{left:505.440000px;}
.x50_c01492{left:514.800000px;}
.x15_c01492{left:516.240000px;}
.x20_c01492{left:526.320000px;}
.x34_c01492{left:535.680000px;}
.xb_c01492{left:537.120000px;}
.x29_c01492{left:547.200000px;}
.x16_c01492{left:548.640000px;}
.x2d_c01492{left:558.000000px;}
.x25_c01492{left:559.440000px;}
.x17_c01492{left:568.800000px;}
.x57_c01492{left:570.240000px;}
.x39_c01492{left:579.600000px;}
.x2e_c01492{left:589.680000px;}
.x21_c01492{left:591.840000px;}
.x40_c01492{left:601.200000px;}
.x18_c01492{left:602.640000px;}
.x3a_c01492{left:612.720000px;}
.x52_c01492{left:622.800000px;}
.x4b_c01492{left:624.240000px;}
.x22_c01492{left:633.600000px;}
.xc_c01492{left:635.040000px;}
.x42_c01492{left:645.840000px;}
.x46_c01492{left:655.920000px;}
.x19_c01492{left:667.440000px;}
.xd_c01492{left:678.240000px;}
.x1_c01492{left:683.280000px;}
@media print{
.v0_c01492{vertical-align:0.000000pt;}
.ls0_c01492{letter-spacing:0.000000pt;}
.ws0_c01492{word-spacing:0.000000pt;}
.fsc_c01492{font-size:17.920000pt;}
.fsa_c01492{font-size:28.160000pt;}
.fs4_c01492{font-size:30.720000pt;}
.fs8_c01492{font-size:33.280000pt;}
.fse_c01492{font-size:38.400000pt;}
.fs3_c01492{font-size:40.960000pt;}
.fs2_c01492{font-size:43.520000pt;}
.fs1_c01492{font-size:46.080000pt;}
.fsd_c01492{font-size:48.640000pt;}
.fs7_c01492{font-size:51.200000pt;}
.fs5_c01492{font-size:53.760000pt;}
.fsb_c01492{font-size:56.320000pt;}
.fs6_c01492{font-size:58.880000pt;}
.fs9_c01492{font-size:61.440000pt;}
.fs0_c01492{font-size:64.000000pt;}
.y0_c01492{bottom:0.000000pt;}
.y61_c01492{bottom:55.680000pt;}
.y62_c01492{bottom:56.960000pt;}
.y60_c01492{bottom:58.240000pt;}
.y5f_c01492{bottom:58.880000pt;}
.y63_c01492{bottom:59.520000pt;}
.y5b_c01492{bottom:94.720000pt;}
.y5e_c01492{bottom:96.000000pt;}
.y5c_c01492{bottom:96.640000pt;}
.y5d_c01492{bottom:97.280000pt;}
.y5a_c01492{bottom:97.920000pt;}
.y54_c01492{bottom:133.120000pt;}
.y56_c01492{bottom:133.760000pt;}
.y59_c01492{bottom:134.400000pt;}
.y53_c01492{bottom:135.040000pt;}
.y55_c01492{bottom:135.680000pt;}
.y57_c01492{bottom:136.320000pt;}
.y58_c01492{bottom:136.960000pt;}
.y4f_c01492{bottom:170.880000pt;}
.y4d_c01492{bottom:171.520000pt;}
.y50_c01492{bottom:172.160000pt;}
.y4e_c01492{bottom:173.440000pt;}
.y51_c01492{bottom:174.080000pt;}
.y52_c01492{bottom:174.720000pt;}
.y47_c01492{bottom:208.640000pt;}
.y4a_c01492{bottom:209.920000pt;}
.y4b_c01492{bottom:210.560000pt;}
.y49_c01492{bottom:211.840000pt;}
.y48_c01492{bottom:212.480000pt;}
.y4c_c01492{bottom:213.120000pt;}
.y44_c01492{bottom:247.680000pt;}
.y41_c01492{bottom:248.320000pt;}
.y46_c01492{bottom:248.960000pt;}
.y43_c01492{bottom:250.240000pt;}
.y42_c01492{bottom:250.880000pt;}
.y45_c01492{bottom:251.520000pt;}
.y40_c01492{bottom:286.080000pt;}
.y3e_c01492{bottom:286.720000pt;}
.y3f_c01492{bottom:287.360000pt;}
.y3c_c01492{bottom:288.640000pt;}
.y3d_c01492{bottom:289.280000pt;}
.y38_c01492{bottom:323.840000pt;}
.y3a_c01492{bottom:324.480000pt;}
.y39_c01492{bottom:326.400000pt;}
.y3b_c01492{bottom:327.040000pt;}
.y35_c01492{bottom:362.880000pt;}
.y36_c01492{bottom:364.800000pt;}
.y37_c01492{bottom:365.440000pt;}
.y31_c01492{bottom:400.640000pt;}
.y33_c01492{bottom:401.280000pt;}
.y34_c01492{bottom:401.920000pt;}
.y30_c01492{bottom:403.200000pt;}
.y32_c01492{bottom:403.840000pt;}
.y2e_c01492{bottom:439.040000pt;}
.y2d_c01492{bottom:441.600000pt;}
.y2f_c01492{bottom:442.240000pt;}
.y2a_c01492{bottom:487.040000pt;}
.y2c_c01492{bottom:487.680000pt;}
.y29_c01492{bottom:489.600000pt;}
.y2b_c01492{bottom:492.800000pt;}
.y27_c01492{bottom:527.360000pt;}
.y28_c01492{bottom:528.000000pt;}
.y24_c01492{bottom:563.200000pt;}
.y21_c01492{bottom:563.840000pt;}
.y23_c01492{bottom:564.480000pt;}
.y25_c01492{bottom:565.760000pt;}
.y26_c01492{bottom:566.400000pt;}
.y22_c01492{bottom:569.600000pt;}
.y1f_c01492{bottom:600.960000pt;}
.y20_c01492{bottom:603.520000pt;}
.y1d_c01492{bottom:604.160000pt;}
.y1e_c01492{bottom:604.800000pt;}
.y1a_c01492{bottom:639.360000pt;}
.y1b_c01492{bottom:641.920000pt;}
.y1c_c01492{bottom:642.560000pt;}
.y18_c01492{bottom:677.760000pt;}
.y17_c01492{bottom:680.320000pt;}
.y19_c01492{bottom:680.960000pt;}
.y16_c01492{bottom:716.160000pt;}
.y14_c01492{bottom:718.080000pt;}
.y15_c01492{bottom:718.720000pt;}
.y12_c01492{bottom:754.560000pt;}
.y11_c01492{bottom:755.200000pt;}
.y13_c01492{bottom:755.840000pt;}
.y10_c01492{bottom:757.120000pt;}
.ye_c01492{bottom:792.320000pt;}
.yf_c01492{bottom:794.240000pt;}
.yd_c01492{bottom:794.880000pt;}
.yc_c01492{bottom:842.240000pt;}
.yb_c01492{bottom:843.520000pt;}
.ya_c01492{bottom:878.080000pt;}
.y6_c01492{bottom:878.720000pt;}
.y9_c01492{bottom:880.000000pt;}
.y8_c01492{bottom:880.640000pt;}
.y7_c01492{bottom:881.280000pt;}
.y3_c01492{bottom:915.840000pt;}
.y5_c01492{bottom:917.760000pt;}
.y4_c01492{bottom:918.400000pt;}
.y2_c01492{bottom:919.040000pt;}
.y1_c01492{bottom:975.360000pt;}
.he_c01492{height:16.126250pt;}
.hc_c01492{height:25.341250pt;}
.h6_c01492{height:27.645000pt;}
.ha_c01492{height:29.948750pt;}
.h10_c01492{height:34.556250pt;}
.h5_c01492{height:36.860000pt;}
.h4_c01492{height:39.163750pt;}
.h3_c01492{height:41.467500pt;}
.hf_c01492{height:43.771250pt;}
.h9_c01492{height:46.075000pt;}
.h7_c01492{height:48.378750pt;}
.hd_c01492{height:50.682500pt;}
.h8_c01492{height:52.986250pt;}
.hb_c01492{height:55.290000pt;}
.h2_c01492{height:57.593750pt;}
.h0_c01492{height:1029.120000pt;}
.h1_c01492{height:1029.333333pt;}
.w1_c01492{width:685.333333pt;}
.w0_c01492{width:685.440000pt;}
.x0_c01492{left:0.000000pt;}
.x2_c01492{left:44.160000pt;}
.x26_c01492{left:45.440000pt;}
.x3b_c01492{left:48.000000pt;}
.x4d_c01492{left:62.080000pt;}
.x2a_c01492{left:72.960000pt;}
.x1a_c01492{left:74.880000pt;}
.x3c_c01492{left:83.200000pt;}
.x3_c01492{left:84.480000pt;}
.x23_c01492{left:92.800000pt;}
.x35_c01492{left:101.760000pt;}
.x4_c01492{left:112.000000pt;}
.x43_c01492{left:114.560000pt;}
.x2b_c01492{left:121.600000pt;}
.x3d_c01492{left:124.160000pt;}
.x2f_c01492{left:131.200000pt;}
.x44_c01492{left:140.160000pt;}
.x1b_c01492{left:141.440000pt;}
.x48_c01492{left:149.760000pt;}
.x56_c01492{left:158.720000pt;}
.x53_c01492{left:160.000000pt;}
.xe_c01492{left:161.280000pt;}
.x1c_c01492{left:169.600000pt;}
.x3e_c01492{left:178.560000pt;}
.x30_c01492{left:188.160000pt;}
.x5_c01492{left:189.440000pt;}
.x54_c01492{left:197.120000pt;}
.x2c_c01492{left:198.400000pt;}
.x4c_c01492{left:201.600000pt;}
.x27_c01492{left:208.000000pt;}
.x49_c01492{left:216.960000pt;}
.x6_c01492{left:218.240000pt;}
.x31_c01492{left:227.200000pt;}
.xf_c01492{left:237.440000pt;}
.x28_c01492{left:247.040000pt;}
.x1d_c01492{left:256.640000pt;}
.x10_c01492{left:265.600000pt;}
.x36_c01492{left:275.200000pt;}
.x7_c01492{left:284.800000pt;}
.x11_c01492{left:294.400000pt;}
.x3f_c01492{left:303.360000pt;}
.x32_c01492{left:312.960000pt;}
.x4f_c01492{left:314.880000pt;}
.x8_c01492{left:323.200000pt;}
.x24_c01492{left:332.160000pt;}
.x37_c01492{left:342.400000pt;}
.x12_c01492{left:352.640000pt;}
.x1e_c01492{left:360.960000pt;}
.x51_c01492{left:362.240000pt;}
.x4a_c01492{left:370.560000pt;}
.x38_c01492{left:371.840000pt;}
.x13_c01492{left:380.800000pt;}
.x33_c01492{left:391.680000pt;}
.x55_c01492{left:393.600000pt;}
.x47_c01492{left:399.360000pt;}
.x9_c01492{left:400.640000pt;}
.x14_c01492{left:410.240000pt;}
.x41_c01492{left:419.200000pt;}
.x45_c01492{left:430.080000pt;}
.x1f_c01492{left:438.400000pt;}
.x4e_c01492{left:447.360000pt;}
.xa_c01492{left:449.280000pt;}
.x50_c01492{left:457.600000pt;}
.x15_c01492{left:458.880000pt;}
.x20_c01492{left:467.840000pt;}
.x34_c01492{left:476.160000pt;}
.xb_c01492{left:477.440000pt;}
.x29_c01492{left:486.400000pt;}
.x16_c01492{left:487.680000pt;}
.x2d_c01492{left:496.000000pt;}
.x25_c01492{left:497.280000pt;}
.x17_c01492{left:505.600000pt;}
.x57_c01492{left:506.880000pt;}
.x39_c01492{left:515.200000pt;}
.x2e_c01492{left:524.160000pt;}
.x21_c01492{left:526.080000pt;}
.x40_c01492{left:534.400000pt;}
.x18_c01492{left:535.680000pt;}
.x3a_c01492{left:544.640000pt;}
.x52_c01492{left:553.600000pt;}
.x4b_c01492{left:554.880000pt;}
.x22_c01492{left:563.200000pt;}
.xc_c01492{left:564.480000pt;}
.x42_c01492{left:574.080000pt;}
.x46_c01492{left:583.040000pt;}
.x19_c01492{left:593.280000pt;}
.xd_c01492{left:602.880000pt;}
.x1_c01492{left:607.360000pt;}
}





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

.ir_c01493:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01493{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01493;src:url('chunks/assets/font_a0b5874a8ef029a461484b3d.woff2')format("woff");}.ff1_c01493{font-family:ff1_c01493;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5b_c01493{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_c01493{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);}
.m3b_c01493{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);}
.m33_c01493{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);}
.m4d_c01493{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m53_c01493{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m5d_c01493{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01493{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m16_c01493{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01493{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);}
.m45_c01493{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m36_c01493{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);}
.m43_c01493{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m0_c01493{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m5c_c01493{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);}
.m38_c01493{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m23_c01493{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m6_c01493{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m24_c01493{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m9_c01493{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m5_c01493{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m11_c01493{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);}
.m2e_c01493{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m54_c01493{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m2_c01493{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m29_c01493{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);}
.m3c_c01493{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);}
.m22_c01493{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.mb_c01493{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);}
.m34_c01493{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01493{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);}
.m2b_c01493{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_c01493{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);}
.m4_c01493{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m25_c01493{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);}
.m46_c01493{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01493{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);}
.m7_c01493{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m14_c01493{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);}
.m28_c01493{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);}
.m4c_c01493{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m51_c01493{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.md_c01493{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m59_c01493{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01493{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);}
.m4f_c01493{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m15_c01493{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m55_c01493{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_c01493{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);}
.m39_c01493{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m5a_c01493{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m57_c01493{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m32_c01493{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01493{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);}
.ma_c01493{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01493{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m52_c01493{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m27_c01493{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);}
.m42_c01493{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01493{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m41_c01493{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01493{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01493{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01493{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);}
.m44_c01493{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);}
.m50_c01493{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m13_c01493{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m47_c01493{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01493{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);}
.m3f_c01493{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m18_c01493{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m30_c01493{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m20_c01493{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);}
.m1a_c01493{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m26_c01493{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m8_c01493{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);}
.m58_c01493{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.mf_c01493{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m35_c01493{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);}
.m1f_c01493{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);}
.m12_c01493{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m37_c01493{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.mc_c01493{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m48_c01493{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m56_c01493{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m3_c01493{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.me_c01493{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m40_c01493{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);}
.m3e_c01493{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);}
.m1b_c01493{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01493{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);}
.m49_c01493{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m17_c01493{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m31_c01493{transform:matrix(1.122500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.122500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.122500,0.000000,0.000000,0.250000,0,0);}
.v1_c01493{vertical-align:-2.880000px;}
.v0_c01493{vertical-align:0.000000px;}
.ls0_c01493{letter-spacing:0.000000px;}
.sc__c01493{text-shadow:none;}
.sc0_c01493{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01493{-webkit-text-stroke:0px transparent;}
.sc0_c01493{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01493{word-spacing:-1.205280px;}
.ws1_c01493{word-spacing:0.000000px;}
.fc0_c01493{color:transparent;}
.fsd_c01493{font-size:20.160000px;}
.fs3_c01493{font-size:34.560000px;}
.fs8_c01493{font-size:37.440000px;}
.fsc_c01493{font-size:40.320000px;}
.fse_c01493{font-size:43.200000px;}
.fsa_c01493{font-size:46.080000px;}
.fs2_c01493{font-size:48.960000px;}
.fs6_c01493{font-size:51.840000px;}
.fs9_c01493{font-size:54.720000px;}
.fsb_c01493{font-size:57.600000px;}
.fs1_c01493{font-size:60.480000px;}
.fs4_c01493{font-size:63.360000px;}
.fs5_c01493{font-size:66.240000px;}
.fs7_c01493{font-size:69.120000px;}
.fs0_c01493{font-size:72.000000px;}
.y0_c01493{bottom:0.000000px;}
.y5d_c01493{bottom:83.520000px;}
.y5e_c01493{bottom:84.240000px;}
.y5c_c01493{bottom:84.960000px;}
.y5a_c01493{bottom:85.680000px;}
.y5b_c01493{bottom:86.400000px;}
.y59_c01493{bottom:87.120000px;}
.y58_c01493{bottom:127.440000px;}
.y55_c01493{bottom:128.880000px;}
.y56_c01493{bottom:129.600000px;}
.y57_c01493{bottom:130.320000px;}
.y51_c01493{bottom:180.720000px;}
.y53_c01493{bottom:181.440000px;}
.y52_c01493{bottom:182.160000px;}
.y50_c01493{bottom:182.880000px;}
.y4f_c01493{bottom:183.600000px;}
.y54_c01493{bottom:184.320000px;}
.y4a_c01493{bottom:223.920000px;}
.y4e_c01493{bottom:225.360000px;}
.y4b_c01493{bottom:226.080000px;}
.y4c_c01493{bottom:226.800000px;}
.y4d_c01493{bottom:227.520000px;}
.y46_c01493{bottom:267.120000px;}
.y47_c01493{bottom:269.280000px;}
.y48_c01493{bottom:270.000000px;}
.y49_c01493{bottom:270.720000px;}
.y43_c01493{bottom:309.600000px;}
.y45_c01493{bottom:310.320000px;}
.y42_c01493{bottom:312.480000px;}
.y44_c01493{bottom:313.200000px;}
.y3f_c01493{bottom:352.800000px;}
.y40_c01493{bottom:353.520000px;}
.y3e_c01493{bottom:355.680000px;}
.y41_c01493{bottom:356.400000px;}
.y3a_c01493{bottom:396.720000px;}
.y3d_c01493{bottom:397.440000px;}
.y3b_c01493{bottom:398.880000px;}
.y3c_c01493{bottom:399.600000px;}
.y38_c01493{bottom:452.160000px;}
.y39_c01493{bottom:452.880000px;}
.y36_c01493{bottom:492.480000px;}
.y37_c01493{bottom:493.920000px;}
.y35_c01493{bottom:495.360000px;}
.y34_c01493{bottom:496.080000px;}
.y31_c01493{bottom:535.680000px;}
.y33_c01493{bottom:536.400000px;}
.y30_c01493{bottom:537.120000px;}
.y2f_c01493{bottom:538.560000px;}
.y32_c01493{bottom:539.280000px;}
.y2d_c01493{bottom:579.600000px;}
.y2c_c01493{bottom:581.760000px;}
.y2e_c01493{bottom:582.480000px;}
.y27_c01493{bottom:621.360000px;}
.y2a_c01493{bottom:622.080000px;}
.y29_c01493{bottom:623.520000px;}
.y26_c01493{bottom:624.240000px;}
.y2b_c01493{bottom:624.960000px;}
.y28_c01493{bottom:625.680000px;}
.y21_c01493{bottom:664.560000px;}
.y25_c01493{bottom:665.280000px;}
.y23_c01493{bottom:666.720000px;}
.y24_c01493{bottom:667.440000px;}
.y22_c01493{bottom:668.160000px;}
.y1e_c01493{bottom:707.760000px;}
.y20_c01493{bottom:709.200000px;}
.y1f_c01493{bottom:710.640000px;}
.y1d_c01493{bottom:711.360000px;}
.y1b_c01493{bottom:761.760000px;}
.y1c_c01493{bottom:763.920000px;}
.y1a_c01493{bottom:804.960000px;}
.y18_c01493{bottom:806.400000px;}
.y19_c01493{bottom:807.120000px;}
.y15_c01493{bottom:846.720000px;}
.y12_c01493{bottom:847.440000px;}
.y17_c01493{bottom:848.160000px;}
.y16_c01493{bottom:849.600000px;}
.y14_c01493{bottom:850.320000px;}
.y13_c01493{bottom:851.040000px;}
.y10_c01493{bottom:889.920000px;}
.yf_c01493{bottom:890.640000px;}
.y11_c01493{bottom:892.800000px;}
.ye_c01493{bottom:893.520000px;}
.yb_c01493{bottom:933.120000px;}
.yd_c01493{bottom:936.000000px;}
.yc_c01493{bottom:936.720000px;}
.ya_c01493{bottom:976.320000px;}
.y8_c01493{bottom:977.040000px;}
.y9_c01493{bottom:978.480000px;}
.y7_c01493{bottom:979.200000px;}
.y6_c01493{bottom:979.920000px;}
.y5_c01493{bottom:1030.320000px;}
.y4_c01493{bottom:1031.040000px;}
.y2_c01493{bottom:1033.200000px;}
.y3_c01493{bottom:1033.920000px;}
.y1_c01493{bottom:1080.720000px;}
.hf_c01493{height:18.142031px;}
.h5_c01493{height:31.100625px;}
.ha_c01493{height:33.692344px;}
.he_c01493{height:36.284062px;}
.h10_c01493{height:38.875781px;}
.hc_c01493{height:41.467500px;}
.h4_c01493{height:44.059219px;}
.h8_c01493{height:46.650937px;}
.hb_c01493{height:49.242656px;}
.hd_c01493{height:51.834375px;}
.h3_c01493{height:54.426094px;}
.h6_c01493{height:57.017812px;}
.h7_c01493{height:59.609531px;}
.h9_c01493{height:62.201250px;}
.h2_c01493{height:64.792969px;}
.h0_c01493{height:1157.040000px;}
.h1_c01493{height:1157.250000px;}
.w1_c01493{width:768.750000px;}
.w0_c01493{width:768.960000px;}
.x0_c01493{left:0.000000px;}
.x2_c01493{left:43.200000px;}
.x15_c01493{left:44.640000px;}
.x4c_c01493{left:46.080000px;}
.x1d_c01493{left:65.520000px;}
.x23_c01493{left:77.760000px;}
.x3_c01493{left:87.840000px;}
.x1e_c01493{left:99.360000px;}
.x16_c01493{left:110.160000px;}
.x4_c01493{left:119.520000px;}
.x24_c01493{left:131.040000px;}
.x2b_c01493{left:141.120000px;}
.x1f_c01493{left:142.560000px;}
.x47_c01493{left:151.920000px;}
.x5_c01493{left:153.360000px;}
.x41_c01493{left:163.440000px;}
.x3b_c01493{left:174.960000px;}
.x8_c01493{left:185.040000px;}
.x3c_c01493{left:194.400000px;}
.xd_c01493{left:195.840000px;}
.x48_c01493{left:205.200000px;}
.x3e_c01493{left:217.440000px;}
.x6_c01493{left:221.040000px;}
.x25_c01493{left:226.800000px;}
.xe_c01493{left:228.240000px;}
.x36_c01493{left:239.040000px;}
.x2c_c01493{left:249.840000px;}
.x9_c01493{left:260.640000px;}
.x49_c01493{left:272.160000px;}
.x3d_c01493{left:282.240000px;}
.x2d_c01493{left:283.680000px;}
.x17_c01493{left:293.760000px;}
.x20_c01493{left:304.560000px;}
.x37_c01493{left:314.640000px;}
.x18_c01493{left:324.720000px;}
.x43_c01493{left:326.160000px;}
.x7_c01493{left:336.960000px;}
.xf_c01493{left:345.600000px;}
.x2e_c01493{left:347.040000px;}
.x4a_c01493{left:358.560000px;}
.x21_c01493{left:368.640000px;}
.x26_c01493{left:380.160000px;}
.x19_c01493{left:390.960000px;}
.x2f_c01493{left:401.040000px;}
.x38_c01493{left:411.840000px;}
.x4d_c01493{left:413.280000px;}
.x33_c01493{left:422.640000px;}
.x50_c01493{left:424.080000px;}
.x30_c01493{left:434.160000px;}
.x22_c01493{left:454.320000px;}
.x4e_c01493{left:455.760000px;}
.x10_c01493{left:466.560000px;}
.x39_c01493{left:476.640000px;}
.x27_c01493{left:478.800000px;}
.x34_c01493{left:488.160000px;}
.x3f_c01493{left:497.520000px;}
.xa_c01493{left:498.960000px;}
.x1a_c01493{left:509.040000px;}
.x28_c01493{left:519.840000px;}
.x42_c01493{left:521.280000px;}
.xb_c01493{left:530.640000px;}
.x3a_c01493{left:540.720000px;}
.x4b_c01493{left:542.160000px;}
.x44_c01493{left:543.600000px;}
.x31_c01493{left:552.960000px;}
.x1b_c01493{left:563.040000px;}
.x11_c01493{left:573.840000px;}
.xc_c01493{left:585.360000px;}
.x51_c01493{left:589.680000px;}
.x1c_c01493{left:596.160000px;}
.x12_c01493{left:606.960000px;}
.x4f_c01493{left:609.120000px;}
.x29_c01493{left:617.760000px;}
.x46_c01493{left:619.200000px;}
.x40_c01493{left:628.560000px;}
.x13_c01493{left:639.360000px;}
.x45_c01493{left:642.960000px;}
.x35_c01493{left:650.160000px;}
.x32_c01493{left:652.320000px;}
.x2a_c01493{left:660.960000px;}
.x1_c01493{left:669.600000px;}
.x14_c01493{left:671.760000px;}
.x52_c01493{left:673.920000px;}
@media print{
.v1_c01493{vertical-align:-2.560000pt;}
.v0_c01493{vertical-align:0.000000pt;}
.ls0_c01493{letter-spacing:0.000000pt;}
.ws0_c01493{word-spacing:-1.071360pt;}
.ws1_c01493{word-spacing:0.000000pt;}
.fsd_c01493{font-size:17.920000pt;}
.fs3_c01493{font-size:30.720000pt;}
.fs8_c01493{font-size:33.280000pt;}
.fsc_c01493{font-size:35.840000pt;}
.fse_c01493{font-size:38.400000pt;}
.fsa_c01493{font-size:40.960000pt;}
.fs2_c01493{font-size:43.520000pt;}
.fs6_c01493{font-size:46.080000pt;}
.fs9_c01493{font-size:48.640000pt;}
.fsb_c01493{font-size:51.200000pt;}
.fs1_c01493{font-size:53.760000pt;}
.fs4_c01493{font-size:56.320000pt;}
.fs5_c01493{font-size:58.880000pt;}
.fs7_c01493{font-size:61.440000pt;}
.fs0_c01493{font-size:64.000000pt;}
.y0_c01493{bottom:0.000000pt;}
.y5d_c01493{bottom:74.240000pt;}
.y5e_c01493{bottom:74.880000pt;}
.y5c_c01493{bottom:75.520000pt;}
.y5a_c01493{bottom:76.160000pt;}
.y5b_c01493{bottom:76.800000pt;}
.y59_c01493{bottom:77.440000pt;}
.y58_c01493{bottom:113.280000pt;}
.y55_c01493{bottom:114.560000pt;}
.y56_c01493{bottom:115.200000pt;}
.y57_c01493{bottom:115.840000pt;}
.y51_c01493{bottom:160.640000pt;}
.y53_c01493{bottom:161.280000pt;}
.y52_c01493{bottom:161.920000pt;}
.y50_c01493{bottom:162.560000pt;}
.y4f_c01493{bottom:163.200000pt;}
.y54_c01493{bottom:163.840000pt;}
.y4a_c01493{bottom:199.040000pt;}
.y4e_c01493{bottom:200.320000pt;}
.y4b_c01493{bottom:200.960000pt;}
.y4c_c01493{bottom:201.600000pt;}
.y4d_c01493{bottom:202.240000pt;}
.y46_c01493{bottom:237.440000pt;}
.y47_c01493{bottom:239.360000pt;}
.y48_c01493{bottom:240.000000pt;}
.y49_c01493{bottom:240.640000pt;}
.y43_c01493{bottom:275.200000pt;}
.y45_c01493{bottom:275.840000pt;}
.y42_c01493{bottom:277.760000pt;}
.y44_c01493{bottom:278.400000pt;}
.y3f_c01493{bottom:313.600000pt;}
.y40_c01493{bottom:314.240000pt;}
.y3e_c01493{bottom:316.160000pt;}
.y41_c01493{bottom:316.800000pt;}
.y3a_c01493{bottom:352.640000pt;}
.y3d_c01493{bottom:353.280000pt;}
.y3b_c01493{bottom:354.560000pt;}
.y3c_c01493{bottom:355.200000pt;}
.y38_c01493{bottom:401.920000pt;}
.y39_c01493{bottom:402.560000pt;}
.y36_c01493{bottom:437.760000pt;}
.y37_c01493{bottom:439.040000pt;}
.y35_c01493{bottom:440.320000pt;}
.y34_c01493{bottom:440.960000pt;}
.y31_c01493{bottom:476.160000pt;}
.y33_c01493{bottom:476.800000pt;}
.y30_c01493{bottom:477.440000pt;}
.y2f_c01493{bottom:478.720000pt;}
.y32_c01493{bottom:479.360000pt;}
.y2d_c01493{bottom:515.200000pt;}
.y2c_c01493{bottom:517.120000pt;}
.y2e_c01493{bottom:517.760000pt;}
.y27_c01493{bottom:552.320000pt;}
.y2a_c01493{bottom:552.960000pt;}
.y29_c01493{bottom:554.240000pt;}
.y26_c01493{bottom:554.880000pt;}
.y2b_c01493{bottom:555.520000pt;}
.y28_c01493{bottom:556.160000pt;}
.y21_c01493{bottom:590.720000pt;}
.y25_c01493{bottom:591.360000pt;}
.y23_c01493{bottom:592.640000pt;}
.y24_c01493{bottom:593.280000pt;}
.y22_c01493{bottom:593.920000pt;}
.y1e_c01493{bottom:629.120000pt;}
.y20_c01493{bottom:630.400000pt;}
.y1f_c01493{bottom:631.680000pt;}
.y1d_c01493{bottom:632.320000pt;}
.y1b_c01493{bottom:677.120000pt;}
.y1c_c01493{bottom:679.040000pt;}
.y1a_c01493{bottom:715.520000pt;}
.y18_c01493{bottom:716.800000pt;}
.y19_c01493{bottom:717.440000pt;}
.y15_c01493{bottom:752.640000pt;}
.y12_c01493{bottom:753.280000pt;}
.y17_c01493{bottom:753.920000pt;}
.y16_c01493{bottom:755.200000pt;}
.y14_c01493{bottom:755.840000pt;}
.y13_c01493{bottom:756.480000pt;}
.y10_c01493{bottom:791.040000pt;}
.yf_c01493{bottom:791.680000pt;}
.y11_c01493{bottom:793.600000pt;}
.ye_c01493{bottom:794.240000pt;}
.yb_c01493{bottom:829.440000pt;}
.yd_c01493{bottom:832.000000pt;}
.yc_c01493{bottom:832.640000pt;}
.ya_c01493{bottom:867.840000pt;}
.y8_c01493{bottom:868.480000pt;}
.y9_c01493{bottom:869.760000pt;}
.y7_c01493{bottom:870.400000pt;}
.y6_c01493{bottom:871.040000pt;}
.y5_c01493{bottom:915.840000pt;}
.y4_c01493{bottom:916.480000pt;}
.y2_c01493{bottom:918.400000pt;}
.y3_c01493{bottom:919.040000pt;}
.y1_c01493{bottom:960.640000pt;}
.hf_c01493{height:16.126250pt;}
.h5_c01493{height:27.645000pt;}
.ha_c01493{height:29.948750pt;}
.he_c01493{height:32.252500pt;}
.h10_c01493{height:34.556250pt;}
.hc_c01493{height:36.860000pt;}
.h4_c01493{height:39.163750pt;}
.h8_c01493{height:41.467500pt;}
.hb_c01493{height:43.771250pt;}
.hd_c01493{height:46.075000pt;}
.h3_c01493{height:48.378750pt;}
.h6_c01493{height:50.682500pt;}
.h7_c01493{height:52.986250pt;}
.h9_c01493{height:55.290000pt;}
.h2_c01493{height:57.593750pt;}
.h0_c01493{height:1028.480000pt;}
.h1_c01493{height:1028.666667pt;}
.w1_c01493{width:683.333333pt;}
.w0_c01493{width:683.520000pt;}
.x0_c01493{left:0.000000pt;}
.x2_c01493{left:38.400000pt;}
.x15_c01493{left:39.680000pt;}
.x4c_c01493{left:40.960000pt;}
.x1d_c01493{left:58.240000pt;}
.x23_c01493{left:69.120000pt;}
.x3_c01493{left:78.080000pt;}
.x1e_c01493{left:88.320000pt;}
.x16_c01493{left:97.920000pt;}
.x4_c01493{left:106.240000pt;}
.x24_c01493{left:116.480000pt;}
.x2b_c01493{left:125.440000pt;}
.x1f_c01493{left:126.720000pt;}
.x47_c01493{left:135.040000pt;}
.x5_c01493{left:136.320000pt;}
.x41_c01493{left:145.280000pt;}
.x3b_c01493{left:155.520000pt;}
.x8_c01493{left:164.480000pt;}
.x3c_c01493{left:172.800000pt;}
.xd_c01493{left:174.080000pt;}
.x48_c01493{left:182.400000pt;}
.x3e_c01493{left:193.280000pt;}
.x6_c01493{left:196.480000pt;}
.x25_c01493{left:201.600000pt;}
.xe_c01493{left:202.880000pt;}
.x36_c01493{left:212.480000pt;}
.x2c_c01493{left:222.080000pt;}
.x9_c01493{left:231.680000pt;}
.x49_c01493{left:241.920000pt;}
.x3d_c01493{left:250.880000pt;}
.x2d_c01493{left:252.160000pt;}
.x17_c01493{left:261.120000pt;}
.x20_c01493{left:270.720000pt;}
.x37_c01493{left:279.680000pt;}
.x18_c01493{left:288.640000pt;}
.x43_c01493{left:289.920000pt;}
.x7_c01493{left:299.520000pt;}
.xf_c01493{left:307.200000pt;}
.x2e_c01493{left:308.480000pt;}
.x4a_c01493{left:318.720000pt;}
.x21_c01493{left:327.680000pt;}
.x26_c01493{left:337.920000pt;}
.x19_c01493{left:347.520000pt;}
.x2f_c01493{left:356.480000pt;}
.x38_c01493{left:366.080000pt;}
.x4d_c01493{left:367.360000pt;}
.x33_c01493{left:375.680000pt;}
.x50_c01493{left:376.960000pt;}
.x30_c01493{left:385.920000pt;}
.x22_c01493{left:403.840000pt;}
.x4e_c01493{left:405.120000pt;}
.x10_c01493{left:414.720000pt;}
.x39_c01493{left:423.680000pt;}
.x27_c01493{left:425.600000pt;}
.x34_c01493{left:433.920000pt;}
.x3f_c01493{left:442.240000pt;}
.xa_c01493{left:443.520000pt;}
.x1a_c01493{left:452.480000pt;}
.x28_c01493{left:462.080000pt;}
.x42_c01493{left:463.360000pt;}
.xb_c01493{left:471.680000pt;}
.x3a_c01493{left:480.640000pt;}
.x4b_c01493{left:481.920000pt;}
.x44_c01493{left:483.200000pt;}
.x31_c01493{left:491.520000pt;}
.x1b_c01493{left:500.480000pt;}
.x11_c01493{left:510.080000pt;}
.xc_c01493{left:520.320000pt;}
.x51_c01493{left:524.160000pt;}
.x1c_c01493{left:529.920000pt;}
.x12_c01493{left:539.520000pt;}
.x4f_c01493{left:541.440000pt;}
.x29_c01493{left:549.120000pt;}
.x46_c01493{left:550.400000pt;}
.x40_c01493{left:558.720000pt;}
.x13_c01493{left:568.320000pt;}
.x45_c01493{left:571.520000pt;}
.x35_c01493{left:577.920000pt;}
.x32_c01493{left:579.840000pt;}
.x2a_c01493{left:587.520000pt;}
.x1_c01493{left:595.200000pt;}
.x14_c01493{left:597.120000pt;}
.x52_c01493{left:599.040000pt;}
}





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

.ir_c01494:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01494{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01494;src:url('chunks/assets/font_2f97666c77ea40791b742ec5.woff2')format("woff");}.ff1_c01494{font-family:ff1_c01494;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m60_c01494{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);}
.m63_c01494{transform:matrix(0.154725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154725,0.000000,0.000000,0.250000,0,0);}
.m5d_c01494{transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);}
.m9_c01494{transform:matrix(0.190975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190975,0.000000,0.000000,0.250000,0,0);}
.m5e_c01494{transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);}
.m61_c01494{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m55_c01494{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m64_c01494{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);}
.m31_c01494{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m53_c01494{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);}
.m58_c01494{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);}
.m66_c01494{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);}
.m6e_c01494{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);}
.m68_c01494{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);}
.m48_c01494{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);}
.m6f_c01494{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m34_c01494{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);}
.m5b_c01494{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);}
.m6c_c01494{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);}
.m6a_c01494{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mb_c01494{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m50_c01494{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01494{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m14_c01494{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m6d_c01494{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1_c01494{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m8_c01494{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m59_c01494{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m32_c01494{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m51_c01494{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m62_c01494{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m16_c01494{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);}
.m4e_c01494{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m5_c01494{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);}
.m6b_c01494{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);}
.m45_c01494{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);}
.m5f_c01494{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m12_c01494{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);}
.m69_c01494{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m41_c01494{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m15_c01494{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m5c_c01494{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m0_c01494{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);}
.m2e_c01494{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01494{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m23_c01494{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);}
.m37_c01494{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);}
.m29_c01494{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);}
.m3e_c01494{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m21_c01494{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);}
.m2f_c01494{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);}
.m44_c01494{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);}
.m4c_c01494{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01494{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m6_c01494{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m49_c01494{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);}
.m47_c01494{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m30_c01494{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);}
.me_c01494{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);}
.m11_c01494{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m19_c01494{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m26_c01494{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m4_c01494{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);}
.m28_c01494{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01494{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m7_c01494{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);}
.m36_c01494{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m20_c01494{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);}
.m1e_c01494{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m27_c01494{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m13_c01494{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m2_c01494{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);}
.m67_c01494{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m42_c01494{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01494{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);}
.m10_c01494{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.ma_c01494{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m54_c01494{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m17_c01494{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);}
.md_c01494{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);}
.m1b_c01494{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m35_c01494{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m40_c01494{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);}
.m2a_c01494{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m38_c01494{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01494{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01494{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);}
.mc_c01494{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01494{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01494{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01494{transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);}
.m18_c01494{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01494{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);}
.m24_c01494{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);}
.m39_c01494{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.mf_c01494{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m43_c01494{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m46_c01494{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01494{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01494{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m25_c01494{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m33_c01494{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m5a_c01494{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m22_c01494{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);}
.m3_c01494{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m56_c01494{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m4d_c01494{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01494{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01494{transform:matrix(0.650000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.650000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.650000,0.000000,0.000000,0.250000,0,0);}
.m52_c01494{transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);}
.m57_c01494{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01494{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.v1_c01494{vertical-align:-8.640000px;}
.v0_c01494{vertical-align:0.000000px;}
.v2_c01494{vertical-align:8.640000px;}
.ls0_c01494{letter-spacing:0.000000px;}
.sc__c01494{text-shadow:none;}
.sc0_c01494{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01494{-webkit-text-stroke:0px transparent;}
.sc0_c01494{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01494{word-spacing:-2.988240px;}
.ws3_c01494{word-spacing:0.000000px;}
.ws2_c01494{word-spacing:28.258320px;}
.ws1_c01494{word-spacing:46.749600px;}
.fc0_c01494{color:transparent;}
.fse_c01494{font-size:17.280000px;}
.fs3_c01494{font-size:34.560000px;}
.fs9_c01494{font-size:37.440000px;}
.fsb_c01494{font-size:43.200000px;}
.fs5_c01494{font-size:46.080000px;}
.fs4_c01494{font-size:48.960000px;}
.fs2_c01494{font-size:51.840000px;}
.fsd_c01494{font-size:54.720000px;}
.fs7_c01494{font-size:57.600000px;}
.fsc_c01494{font-size:60.480000px;}
.fs8_c01494{font-size:63.360000px;}
.fsa_c01494{font-size:66.240000px;}
.fs6_c01494{font-size:69.120000px;}
.fs1_c01494{font-size:72.000000px;}
.fs0_c01494{font-size:74.880000px;}
.fsf_c01494{font-size:77.760000px;}
.y0_c01494{bottom:0.000000px;}
.y76_c01494{bottom:93.600000px;}
.y74_c01494{bottom:95.040000px;}
.y75_c01494{bottom:95.760000px;}
.y77_c01494{bottom:97.200000px;}
.y78_c01494{bottom:97.920000px;}
.y72_c01494{bottom:115.200000px;}
.y73_c01494{bottom:115.920000px;}
.y70_c01494{bottom:116.640000px;}
.y71_c01494{bottom:117.360000px;}
.y6c_c01494{bottom:136.800000px;}
.y6d_c01494{bottom:137.520000px;}
.y6b_c01494{bottom:138.240000px;}
.y6e_c01494{bottom:138.960000px;}
.y6f_c01494{bottom:141.120000px;}
.y67_c01494{bottom:158.400000px;}
.y65_c01494{bottom:159.120000px;}
.y68_c01494{bottom:159.840000px;}
.y66_c01494{bottom:160.560000px;}
.y69_c01494{bottom:162.000000px;}
.y6a_c01494{bottom:163.440000px;}
.y5f_c01494{bottom:180.720000px;}
.y60_c01494{bottom:181.440000px;}
.y61_c01494{bottom:182.160000px;}
.y5e_c01494{bottom:182.880000px;}
.y5d_c01494{bottom:183.600000px;}
.y63_c01494{bottom:184.320000px;}
.y62_c01494{bottom:185.760000px;}
.y64_c01494{bottom:188.640000px;}
.y57_c01494{bottom:209.520000px;}
.y5a_c01494{bottom:210.240000px;}
.y5c_c01494{bottom:210.960000px;}
.y56_c01494{bottom:213.840000px;}
.y59_c01494{bottom:214.560000px;}
.y55_c01494{bottom:215.280000px;}
.y58_c01494{bottom:216.000000px;}
.y5b_c01494{bottom:216.720000px;}
.y4e_c01494{bottom:267.120000px;}
.y54_c01494{bottom:268.560000px;}
.y53_c01494{bottom:270.000000px;}
.y52_c01494{bottom:288.720000px;}
.y51_c01494{bottom:289.440000px;}
.y50_c01494{bottom:290.880000px;}
.y4a_c01494{bottom:299.520000px;}
.y4d_c01494{bottom:300.240000px;}
.y4c_c01494{bottom:300.960000px;}
.y4f_c01494{bottom:331.200000px;}
.y49_c01494{bottom:332.640000px;}
.y4b_c01494{bottom:333.360000px;}
.y47_c01494{bottom:334.080000px;}
.y48_c01494{bottom:334.800000px;}
.y44_c01494{bottom:372.960000px;}
.y42_c01494{bottom:373.680000px;}
.y46_c01494{bottom:374.400000px;}
.y43_c01494{bottom:376.560000px;}
.y45_c01494{bottom:377.280000px;}
.y41_c01494{bottom:379.440000px;}
.y3e_c01494{bottom:416.880000px;}
.y3f_c01494{bottom:419.760000px;}
.y40_c01494{bottom:420.480000px;}
.y3c_c01494{bottom:460.080000px;}
.y3b_c01494{bottom:462.240000px;}
.y3d_c01494{bottom:462.960000px;}
.y3a_c01494{bottom:463.680000px;}
.y38_c01494{bottom:513.360000px;}
.y36_c01494{bottom:514.080000px;}
.y39_c01494{bottom:514.800000px;}
.y35_c01494{bottom:516.240000px;}
.y37_c01494{bottom:516.960000px;}
.y30_c01494{bottom:555.840000px;}
.y31_c01494{bottom:556.560000px;}
.y32_c01494{bottom:557.280000px;}
.y33_c01494{bottom:559.440000px;}
.y34_c01494{bottom:560.160000px;}
.y2e_c01494{bottom:599.760000px;}
.y2f_c01494{bottom:600.480000px;}
.y2d_c01494{bottom:602.640000px;}
.y2b_c01494{bottom:642.960000px;}
.y2a_c01494{bottom:645.120000px;}
.y2c_c01494{bottom:645.840000px;}
.y26_c01494{bottom:685.440000px;}
.y27_c01494{bottom:686.160000px;}
.y28_c01494{bottom:686.880000px;}
.y25_c01494{bottom:688.320000px;}
.y29_c01494{bottom:689.040000px;}
.y20_c01494{bottom:727.920000px;}
.y24_c01494{bottom:728.640000px;}
.y23_c01494{bottom:729.360000px;}
.y22_c01494{bottom:731.520000px;}
.y21_c01494{bottom:732.240000px;}
.y1e_c01494{bottom:771.120000px;}
.y1c_c01494{bottom:771.840000px;}
.y1f_c01494{bottom:772.560000px;}
.y1d_c01494{bottom:774.000000px;}
.y1b_c01494{bottom:774.720000px;}
.y17_c01494{bottom:814.320000px;}
.y1a_c01494{bottom:816.480000px;}
.y19_c01494{bottom:817.200000px;}
.y18_c01494{bottom:817.920000px;}
.y16_c01494{bottom:856.800000px;}
.y13_c01494{bottom:857.520000px;}
.y15_c01494{bottom:859.680000px;}
.y14_c01494{bottom:860.400000px;}
.y12_c01494{bottom:900.720000px;}
.y10_c01494{bottom:902.880000px;}
.y11_c01494{bottom:903.600000px;}
.yb_c01494{bottom:942.480000px;}
.yd_c01494{bottom:943.200000px;}
.yc_c01494{bottom:943.920000px;}
.yf_c01494{bottom:945.360000px;}
.ye_c01494{bottom:946.080000px;}
.ya_c01494{bottom:984.960000px;}
.y9_c01494{bottom:986.400000px;}
.y7_c01494{bottom:988.560000px;}
.y8_c01494{bottom:989.280000px;}
.y6_c01494{bottom:1028.160000px;}
.y2_c01494{bottom:1028.880000px;}
.y5_c01494{bottom:1029.600000px;}
.y4_c01494{bottom:1031.040000px;}
.y3_c01494{bottom:1031.760000px;}
.y1_c01494{bottom:1100.160000px;}
.h10_c01494{height:15.550313px;}
.h5_c01494{height:31.100625px;}
.hb_c01494{height:33.692344px;}
.hd_c01494{height:38.875781px;}
.h7_c01494{height:41.467500px;}
.h6_c01494{height:44.059219px;}
.h4_c01494{height:46.650937px;}
.hf_c01494{height:49.242656px;}
.h9_c01494{height:51.834375px;}
.he_c01494{height:54.426094px;}
.ha_c01494{height:57.017812px;}
.hc_c01494{height:59.609531px;}
.h12_c01494{height:60.474375px;}
.h8_c01494{height:62.201250px;}
.h3_c01494{height:64.792969px;}
.h2_c01494{height:67.384687px;}
.h11_c01494{height:69.976406px;}
.h0_c01494{height:1157.760000px;}
.h1_c01494{height:1158.000000px;}
.w0_c01494{width:780.480000px;}
.w1_c01494{width:780.750000px;}
.x0_c01494{left:0.000000px;}
.x2_c01494{left:54.720000px;}
.x4a_c01494{left:56.160000px;}
.x4c_c01494{left:66.240000px;}
.x41_c01494{left:76.320000px;}
.xd_c01494{left:86.400000px;}
.x35_c01494{left:97.200000px;}
.x4f_c01494{left:98.640000px;}
.x44_c01494{left:108.720000px;}
.x15_c01494{left:119.520000px;}
.xe_c01494{left:129.600000px;}
.x16_c01494{left:141.120000px;}
.x3b_c01494{left:151.200000px;}
.x45_c01494{left:152.640000px;}
.x24_c01494{left:162.000000px;}
.x1b_c01494{left:163.440000px;}
.x21_c01494{left:172.080000px;}
.xf_c01494{left:174.240000px;}
.x2e_c01494{left:183.600000px;}
.x3f_c01494{left:194.400000px;}
.x3_c01494{left:196.560000px;}
.x10_c01494{left:205.200000px;}
.x25_c01494{left:206.640000px;}
.x29_c01494{left:216.720000px;}
.x46_c01494{left:218.160000px;}
.x1c_c01494{left:227.520000px;}
.x32_c01494{left:228.960000px;}
.x39_c01494{left:239.040000px;}
.x2a_c01494{left:248.400000px;}
.x1d_c01494{left:259.920000px;}
.x17_c01494{left:270.000000px;}
.x49_c01494{left:272.160000px;}
.x47_c01494{left:280.800000px;}
.x2f_c01494{left:282.240000px;}
.x4_c01494{left:291.600000px;}
.x26_c01494{left:293.040000px;}
.x11_c01494{left:303.120000px;}
.x42_c01494{left:314.640000px;}
.x40_c01494{left:325.440000px;}
.x5_c01494{left:334.800000px;}
.x48_c01494{left:336.240000px;}
.x3c_c01494{left:345.600000px;}
.x3a_c01494{left:357.120000px;}
.x1e_c01494{left:367.200000px;}
.x4e_c01494{left:368.640000px;}
.x18_c01494{left:378.720000px;}
.x33_c01494{left:388.800000px;}
.x30_c01494{left:390.240000px;}
.x6_c01494{left:401.040000px;}
.x12_c01494{left:411.120000px;}
.x27_c01494{left:421.920000px;}
.x3d_c01494{left:432.000000px;}
.x7_c01494{left:433.440000px;}
.x1f_c01494{left:455.040000px;}
.x22_c01494{left:465.120000px;}
.x2d_c01494{left:466.560000px;}
.x8_c01494{left:475.920000px;}
.x28_c01494{left:486.720000px;}
.x20_c01494{left:497.520000px;}
.x2b_c01494{left:508.320000px;}
.x50_c01494{left:509.760000px;}
.x3e_c01494{left:518.400000px;}
.x34_c01494{left:529.920000px;}
.x13_c01494{left:531.360000px;}
.x9_c01494{left:540.000000px;}
.x43_c01494{left:541.440000px;}
.x51_c01494{left:552.960000px;}
.x19_c01494{left:563.040000px;}
.x36_c01494{left:573.120000px;}
.x2c_c01494{left:574.560000px;}
.x52_c01494{left:585.360000px;}
.x31_c01494{left:594.720000px;}
.xa_c01494{left:596.160000px;}
.x37_c01494{left:605.520000px;}
.x4d_c01494{left:607.680000px;}
.x4b_c01494{left:617.760000px;}
.xb_c01494{left:627.840000px;}
.x38_c01494{left:648.000000px;}
.xc_c01494{left:650.160000px;}
.x23_c01494{left:660.240000px;}
.x14_c01494{left:671.040000px;}
.x1a_c01494{left:682.560000px;}
.x1_c01494{left:706.320000px;}
@media print{
.v1_c01494{vertical-align:-7.680000pt;}
.v0_c01494{vertical-align:0.000000pt;}
.v2_c01494{vertical-align:7.680000pt;}
.ls0_c01494{letter-spacing:0.000000pt;}
.ws0_c01494{word-spacing:-2.656213pt;}
.ws3_c01494{word-spacing:0.000000pt;}
.ws2_c01494{word-spacing:25.118507pt;}
.ws1_c01494{word-spacing:41.555200pt;}
.fse_c01494{font-size:15.360000pt;}
.fs3_c01494{font-size:30.720000pt;}
.fs9_c01494{font-size:33.280000pt;}
.fsb_c01494{font-size:38.400000pt;}
.fs5_c01494{font-size:40.960000pt;}
.fs4_c01494{font-size:43.520000pt;}
.fs2_c01494{font-size:46.080000pt;}
.fsd_c01494{font-size:48.640000pt;}
.fs7_c01494{font-size:51.200000pt;}
.fsc_c01494{font-size:53.760000pt;}
.fs8_c01494{font-size:56.320000pt;}
.fsa_c01494{font-size:58.880000pt;}
.fs6_c01494{font-size:61.440000pt;}
.fs1_c01494{font-size:64.000000pt;}
.fs0_c01494{font-size:66.560000pt;}
.fsf_c01494{font-size:69.120000pt;}
.y0_c01494{bottom:0.000000pt;}
.y76_c01494{bottom:83.200000pt;}
.y74_c01494{bottom:84.480000pt;}
.y75_c01494{bottom:85.120000pt;}
.y77_c01494{bottom:86.400000pt;}
.y78_c01494{bottom:87.040000pt;}
.y72_c01494{bottom:102.400000pt;}
.y73_c01494{bottom:103.040000pt;}
.y70_c01494{bottom:103.680000pt;}
.y71_c01494{bottom:104.320000pt;}
.y6c_c01494{bottom:121.600000pt;}
.y6d_c01494{bottom:122.240000pt;}
.y6b_c01494{bottom:122.880000pt;}
.y6e_c01494{bottom:123.520000pt;}
.y6f_c01494{bottom:125.440000pt;}
.y67_c01494{bottom:140.800000pt;}
.y65_c01494{bottom:141.440000pt;}
.y68_c01494{bottom:142.080000pt;}
.y66_c01494{bottom:142.720000pt;}
.y69_c01494{bottom:144.000000pt;}
.y6a_c01494{bottom:145.280000pt;}
.y5f_c01494{bottom:160.640000pt;}
.y60_c01494{bottom:161.280000pt;}
.y61_c01494{bottom:161.920000pt;}
.y5e_c01494{bottom:162.560000pt;}
.y5d_c01494{bottom:163.200000pt;}
.y63_c01494{bottom:163.840000pt;}
.y62_c01494{bottom:165.120000pt;}
.y64_c01494{bottom:167.680000pt;}
.y57_c01494{bottom:186.240000pt;}
.y5a_c01494{bottom:186.880000pt;}
.y5c_c01494{bottom:187.520000pt;}
.y56_c01494{bottom:190.080000pt;}
.y59_c01494{bottom:190.720000pt;}
.y55_c01494{bottom:191.360000pt;}
.y58_c01494{bottom:192.000000pt;}
.y5b_c01494{bottom:192.640000pt;}
.y4e_c01494{bottom:237.440000pt;}
.y54_c01494{bottom:238.720000pt;}
.y53_c01494{bottom:240.000000pt;}
.y52_c01494{bottom:256.640000pt;}
.y51_c01494{bottom:257.280000pt;}
.y50_c01494{bottom:258.560000pt;}
.y4a_c01494{bottom:266.240000pt;}
.y4d_c01494{bottom:266.880000pt;}
.y4c_c01494{bottom:267.520000pt;}
.y4f_c01494{bottom:294.400000pt;}
.y49_c01494{bottom:295.680000pt;}
.y4b_c01494{bottom:296.320000pt;}
.y47_c01494{bottom:296.960000pt;}
.y48_c01494{bottom:297.600000pt;}
.y44_c01494{bottom:331.520000pt;}
.y42_c01494{bottom:332.160000pt;}
.y46_c01494{bottom:332.800000pt;}
.y43_c01494{bottom:334.720000pt;}
.y45_c01494{bottom:335.360000pt;}
.y41_c01494{bottom:337.280000pt;}
.y3e_c01494{bottom:370.560000pt;}
.y3f_c01494{bottom:373.120000pt;}
.y40_c01494{bottom:373.760000pt;}
.y3c_c01494{bottom:408.960000pt;}
.y3b_c01494{bottom:410.880000pt;}
.y3d_c01494{bottom:411.520000pt;}
.y3a_c01494{bottom:412.160000pt;}
.y38_c01494{bottom:456.320000pt;}
.y36_c01494{bottom:456.960000pt;}
.y39_c01494{bottom:457.600000pt;}
.y35_c01494{bottom:458.880000pt;}
.y37_c01494{bottom:459.520000pt;}
.y30_c01494{bottom:494.080000pt;}
.y31_c01494{bottom:494.720000pt;}
.y32_c01494{bottom:495.360000pt;}
.y33_c01494{bottom:497.280000pt;}
.y34_c01494{bottom:497.920000pt;}
.y2e_c01494{bottom:533.120000pt;}
.y2f_c01494{bottom:533.760000pt;}
.y2d_c01494{bottom:535.680000pt;}
.y2b_c01494{bottom:571.520000pt;}
.y2a_c01494{bottom:573.440000pt;}
.y2c_c01494{bottom:574.080000pt;}
.y26_c01494{bottom:609.280000pt;}
.y27_c01494{bottom:609.920000pt;}
.y28_c01494{bottom:610.560000pt;}
.y25_c01494{bottom:611.840000pt;}
.y29_c01494{bottom:612.480000pt;}
.y20_c01494{bottom:647.040000pt;}
.y24_c01494{bottom:647.680000pt;}
.y23_c01494{bottom:648.320000pt;}
.y22_c01494{bottom:650.240000pt;}
.y21_c01494{bottom:650.880000pt;}
.y1e_c01494{bottom:685.440000pt;}
.y1c_c01494{bottom:686.080000pt;}
.y1f_c01494{bottom:686.720000pt;}
.y1d_c01494{bottom:688.000000pt;}
.y1b_c01494{bottom:688.640000pt;}
.y17_c01494{bottom:723.840000pt;}
.y1a_c01494{bottom:725.760000pt;}
.y19_c01494{bottom:726.400000pt;}
.y18_c01494{bottom:727.040000pt;}
.y16_c01494{bottom:761.600000pt;}
.y13_c01494{bottom:762.240000pt;}
.y15_c01494{bottom:764.160000pt;}
.y14_c01494{bottom:764.800000pt;}
.y12_c01494{bottom:800.640000pt;}
.y10_c01494{bottom:802.560000pt;}
.y11_c01494{bottom:803.200000pt;}
.yb_c01494{bottom:837.760000pt;}
.yd_c01494{bottom:838.400000pt;}
.yc_c01494{bottom:839.040000pt;}
.yf_c01494{bottom:840.320000pt;}
.ye_c01494{bottom:840.960000pt;}
.ya_c01494{bottom:875.520000pt;}
.y9_c01494{bottom:876.800000pt;}
.y7_c01494{bottom:878.720000pt;}
.y8_c01494{bottom:879.360000pt;}
.y6_c01494{bottom:913.920000pt;}
.y2_c01494{bottom:914.560000pt;}
.y5_c01494{bottom:915.200000pt;}
.y4_c01494{bottom:916.480000pt;}
.y3_c01494{bottom:917.120000pt;}
.y1_c01494{bottom:977.920000pt;}
.h10_c01494{height:13.822500pt;}
.h5_c01494{height:27.645000pt;}
.hb_c01494{height:29.948750pt;}
.hd_c01494{height:34.556250pt;}
.h7_c01494{height:36.860000pt;}
.h6_c01494{height:39.163750pt;}
.h4_c01494{height:41.467500pt;}
.hf_c01494{height:43.771250pt;}
.h9_c01494{height:46.075000pt;}
.he_c01494{height:48.378750pt;}
.ha_c01494{height:50.682500pt;}
.hc_c01494{height:52.986250pt;}
.h12_c01494{height:53.755000pt;}
.h8_c01494{height:55.290000pt;}
.h3_c01494{height:57.593750pt;}
.h2_c01494{height:59.897500pt;}
.h11_c01494{height:62.201250pt;}
.h0_c01494{height:1029.120000pt;}
.h1_c01494{height:1029.333333pt;}
.w0_c01494{width:693.760000pt;}
.w1_c01494{width:694.000000pt;}
.x0_c01494{left:0.000000pt;}
.x2_c01494{left:48.640000pt;}
.x4a_c01494{left:49.920000pt;}
.x4c_c01494{left:58.880000pt;}
.x41_c01494{left:67.840000pt;}
.xd_c01494{left:76.800000pt;}
.x35_c01494{left:86.400000pt;}
.x4f_c01494{left:87.680000pt;}
.x44_c01494{left:96.640000pt;}
.x15_c01494{left:106.240000pt;}
.xe_c01494{left:115.200000pt;}
.x16_c01494{left:125.440000pt;}
.x3b_c01494{left:134.400000pt;}
.x45_c01494{left:135.680000pt;}
.x24_c01494{left:144.000000pt;}
.x1b_c01494{left:145.280000pt;}
.x21_c01494{left:152.960000pt;}
.xf_c01494{left:154.880000pt;}
.x2e_c01494{left:163.200000pt;}
.x3f_c01494{left:172.800000pt;}
.x3_c01494{left:174.720000pt;}
.x10_c01494{left:182.400000pt;}
.x25_c01494{left:183.680000pt;}
.x29_c01494{left:192.640000pt;}
.x46_c01494{left:193.920000pt;}
.x1c_c01494{left:202.240000pt;}
.x32_c01494{left:203.520000pt;}
.x39_c01494{left:212.480000pt;}
.x2a_c01494{left:220.800000pt;}
.x1d_c01494{left:231.040000pt;}
.x17_c01494{left:240.000000pt;}
.x49_c01494{left:241.920000pt;}
.x47_c01494{left:249.600000pt;}
.x2f_c01494{left:250.880000pt;}
.x4_c01494{left:259.200000pt;}
.x26_c01494{left:260.480000pt;}
.x11_c01494{left:269.440000pt;}
.x42_c01494{left:279.680000pt;}
.x40_c01494{left:289.280000pt;}
.x5_c01494{left:297.600000pt;}
.x48_c01494{left:298.880000pt;}
.x3c_c01494{left:307.200000pt;}
.x3a_c01494{left:317.440000pt;}
.x1e_c01494{left:326.400000pt;}
.x4e_c01494{left:327.680000pt;}
.x18_c01494{left:336.640000pt;}
.x33_c01494{left:345.600000pt;}
.x30_c01494{left:346.880000pt;}
.x6_c01494{left:356.480000pt;}
.x12_c01494{left:365.440000pt;}
.x27_c01494{left:375.040000pt;}
.x3d_c01494{left:384.000000pt;}
.x7_c01494{left:385.280000pt;}
.x1f_c01494{left:404.480000pt;}
.x22_c01494{left:413.440000pt;}
.x2d_c01494{left:414.720000pt;}
.x8_c01494{left:423.040000pt;}
.x28_c01494{left:432.640000pt;}
.x20_c01494{left:442.240000pt;}
.x2b_c01494{left:451.840000pt;}
.x50_c01494{left:453.120000pt;}
.x3e_c01494{left:460.800000pt;}
.x34_c01494{left:471.040000pt;}
.x13_c01494{left:472.320000pt;}
.x9_c01494{left:480.000000pt;}
.x43_c01494{left:481.280000pt;}
.x51_c01494{left:491.520000pt;}
.x19_c01494{left:500.480000pt;}
.x36_c01494{left:509.440000pt;}
.x2c_c01494{left:510.720000pt;}
.x52_c01494{left:520.320000pt;}
.x31_c01494{left:528.640000pt;}
.xa_c01494{left:529.920000pt;}
.x37_c01494{left:538.240000pt;}
.x4d_c01494{left:540.160000pt;}
.x4b_c01494{left:549.120000pt;}
.xb_c01494{left:558.080000pt;}
.x38_c01494{left:576.000000pt;}
.xc_c01494{left:577.920000pt;}
.x23_c01494{left:586.880000pt;}
.x14_c01494{left:596.480000pt;}
.x1a_c01494{left:606.720000pt;}
.x1_c01494{left:627.840000pt;}
}





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

.ir_c01495:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01495{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01495;src:url('chunks/assets/font_ac302d52e1c4d1e6f593eab9.woff2')format("woff");}.ff1_c01495{font-family:ff1_c01495;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3a_c01495{transform:matrix(0.220100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220100,0.000000,0.000000,0.250000,0,0);}
.m1c_c01495{transform:matrix(0.246050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246050,0.000000,0.000000,0.250000,0,0);}
.m55_c01495{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m2_c01495{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1_c01495{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m10_c01495{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);}
.m50_c01495{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m22_c01495{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m49_c01495{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01495{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01495{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m42_c01495{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m61_c01495{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m25_c01495{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m8_c01495{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m27_c01495{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);}
.m24_c01495{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);}
.m2b_c01495{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m14_c01495{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m38_c01495{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m6_c01495{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.md_c01495{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m19_c01495{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);}
.m4c_c01495{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m26_c01495{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m34_c01495{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m4_c01495{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);}
.m0_c01495{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m17_c01495{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);}
.mf_c01495{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);}
.m47_c01495{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);}
.m46_c01495{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01495{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m35_c01495{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);}
.m5b_c01495{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);}
.m12_c01495{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01495{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);}
.m32_c01495{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);}
.m5f_c01495{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.me_c01495{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01495{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m11_c01495{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m21_c01495{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);}
.m53_c01495{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m48_c01495{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m31_c01495{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);}
.m28_c01495{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m59_c01495{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);}
.m2a_c01495{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m43_c01495{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01495{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01495{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);}
.m36_c01495{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m29_c01495{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m51_c01495{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m3_c01495{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);}
.m5_c01495{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m45_c01495{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m37_c01495{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m9_c01495{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01495{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);}
.m33_c01495{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m16_c01495{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.mc_c01495{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);}
.m13_c01495{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m58_c01495{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m52_c01495{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.ma_c01495{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);}
.m39_c01495{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m5c_c01495{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m15_c01495{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01495{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);}
.m3d_c01495{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m44_c01495{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);}
.m3c_c01495{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m18_c01495{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m7_c01495{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m41_c01495{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m40_c01495{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m23_c01495{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01495{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);}
.m30_c01495{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);}
.mb_c01495{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m5d_c01495{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01495{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01495{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);}
.m2d_c01495{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m5a_c01495{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m57_c01495{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m20_c01495{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m60_c01495{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01495{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m54_c01495{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m4d_c01495{transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01495{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m5e_c01495{transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01495{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m56_c01495{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m62_c01495{transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);}
.v0_c01495{vertical-align:0.000000px;}
.ls0_c01495{letter-spacing:0.000000px;}
.sc__c01495{text-shadow:none;}
.sc0_c01495{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01495{-webkit-text-stroke:0px transparent;}
.sc0_c01495{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01495{word-spacing:0.000000px;}
.fc0_c01495{color:transparent;}
.fse_c01495{font-size:31.680000px;}
.fs3_c01495{font-size:34.560000px;}
.fs9_c01495{font-size:37.440000px;}
.fsc_c01495{font-size:43.200000px;}
.fs5_c01495{font-size:46.080000px;}
.fs6_c01495{font-size:48.960000px;}
.fs4_c01495{font-size:51.840000px;}
.fs2_c01495{font-size:54.720000px;}
.fsb_c01495{font-size:57.600000px;}
.fs1_c01495{font-size:60.480000px;}
.fs8_c01495{font-size:63.360000px;}
.fs7_c01495{font-size:66.240000px;}
.fsa_c01495{font-size:69.120000px;}
.fs0_c01495{font-size:72.000000px;}
.fsd_c01495{font-size:74.880000px;}
.y0_c01495{bottom:0.000000px;}
.y5d_c01495{bottom:51.120000px;}
.y5e_c01495{bottom:54.000000px;}
.y5f_c01495{bottom:54.720000px;}
.y60_c01495{bottom:55.440000px;}
.y5b_c01495{bottom:94.320000px;}
.y5a_c01495{bottom:95.040000px;}
.y59_c01495{bottom:97.200000px;}
.y5c_c01495{bottom:97.920000px;}
.y58_c01495{bottom:150.480000px;}
.y55_c01495{bottom:190.800000px;}
.y54_c01495{bottom:191.520000px;}
.y52_c01495{bottom:192.240000px;}
.y53_c01495{bottom:194.400000px;}
.y56_c01495{bottom:195.120000px;}
.y57_c01495{bottom:195.840000px;}
.y4f_c01495{bottom:234.720000px;}
.y50_c01495{bottom:235.440000px;}
.y4d_c01495{bottom:236.880000px;}
.y4e_c01495{bottom:237.600000px;}
.y51_c01495{bottom:238.320000px;}
.y4b_c01495{bottom:278.640000px;}
.y4a_c01495{bottom:280.800000px;}
.y4c_c01495{bottom:281.520000px;}
.y46_c01495{bottom:331.200000px;}
.y47_c01495{bottom:331.920000px;}
.y48_c01495{bottom:332.640000px;}
.y49_c01495{bottom:333.360000px;}
.y45_c01495{bottom:334.080000px;}
.y44_c01495{bottom:334.800000px;}
.y41_c01495{bottom:373.680000px;}
.y42_c01495{bottom:375.120000px;}
.y3f_c01495{bottom:375.840000px;}
.y40_c01495{bottom:378.000000px;}
.y43_c01495{bottom:378.720000px;}
.y3c_c01495{bottom:416.160000px;}
.y3d_c01495{bottom:416.880000px;}
.y3e_c01495{bottom:417.600000px;}
.y3b_c01495{bottom:418.320000px;}
.y39_c01495{bottom:420.480000px;}
.y3a_c01495{bottom:421.200000px;}
.y37_c01495{bottom:460.080000px;}
.y36_c01495{bottom:460.800000px;}
.y38_c01495{bottom:461.520000px;}
.y34_c01495{bottom:463.680000px;}
.y35_c01495{bottom:464.400000px;}
.y30_c01495{bottom:504.000000px;}
.y33_c01495{bottom:504.720000px;}
.y31_c01495{bottom:506.880000px;}
.y32_c01495{bottom:507.600000px;}
.y2d_c01495{bottom:547.200000px;}
.y2f_c01495{bottom:548.640000px;}
.y2c_c01495{bottom:550.080000px;}
.y2e_c01495{bottom:550.800000px;}
.y29_c01495{bottom:589.680000px;}
.y2a_c01495{bottom:590.400000px;}
.y28_c01495{bottom:592.560000px;}
.y2b_c01495{bottom:594.000000px;}
.y25_c01495{bottom:632.880000px;}
.y27_c01495{bottom:635.760000px;}
.y26_c01495{bottom:636.480000px;}
.y24_c01495{bottom:676.080000px;}
.y23_c01495{bottom:678.240000px;}
.y22_c01495{bottom:678.960000px;}
.y20_c01495{bottom:718.560000px;}
.y21_c01495{bottom:719.280000px;}
.y1f_c01495{bottom:720.000000px;}
.y1d_c01495{bottom:721.440000px;}
.y1e_c01495{bottom:722.160000px;}
.y1c_c01495{bottom:761.040000px;}
.y1b_c01495{bottom:761.760000px;}
.y19_c01495{bottom:762.480000px;}
.y18_c01495{bottom:764.640000px;}
.y1a_c01495{bottom:765.360000px;}
.y16_c01495{bottom:807.840000px;}
.y17_c01495{bottom:808.560000px;}
.y14_c01495{bottom:847.440000px;}
.y13_c01495{bottom:848.160000px;}
.y11_c01495{bottom:848.880000px;}
.y15_c01495{bottom:850.320000px;}
.y12_c01495{bottom:851.040000px;}
.yf_c01495{bottom:890.640000px;}
.y10_c01495{bottom:893.520000px;}
.ye_c01495{bottom:894.240000px;}
.yb_c01495{bottom:933.120000px;}
.yc_c01495{bottom:933.840000px;}
.yd_c01495{bottom:936.000000px;}
.y9_c01495{bottom:936.720000px;}
.ya_c01495{bottom:937.440000px;}
.y8_c01495{bottom:977.040000px;}
.y6_c01495{bottom:977.760000px;}
.y7_c01495{bottom:979.200000px;}
.y5_c01495{bottom:979.920000px;}
.y2_c01495{bottom:1020.240000px;}
.y4_c01495{bottom:1022.400000px;}
.y3_c01495{bottom:1023.120000px;}
.y1_c01495{bottom:1094.400000px;}
.h10_c01495{height:28.508906px;}
.h5_c01495{height:31.100625px;}
.hb_c01495{height:33.692344px;}
.he_c01495{height:38.875781px;}
.h7_c01495{height:41.467500px;}
.h8_c01495{height:44.059219px;}
.h6_c01495{height:46.650937px;}
.h4_c01495{height:49.242656px;}
.hd_c01495{height:51.834375px;}
.h3_c01495{height:54.426094px;}
.ha_c01495{height:57.017812px;}
.h9_c01495{height:59.609531px;}
.hc_c01495{height:62.201250px;}
.h2_c01495{height:64.792969px;}
.hf_c01495{height:67.384687px;}
.h0_c01495{height:1157.760000px;}
.h1_c01495{height:1158.000000px;}
.w0_c01495{width:780.480000px;}
.w1_c01495{width:780.750000px;}
.x0_c01495{left:0.000000px;}
.xd_c01495{left:54.720000px;}
.x3c_c01495{left:56.160000px;}
.x51_c01495{left:57.600000px;}
.x17_c01495{left:87.840000px;}
.x3d_c01495{left:97.200000px;}
.xe_c01495{left:98.640000px;}
.x18_c01495{left:120.240000px;}
.x4c_c01495{left:129.600000px;}
.xf_c01495{left:131.040000px;}
.x2a_c01495{left:141.120000px;}
.x19_c01495{left:151.200000px;}
.x2_c01495{left:163.440000px;}
.x2b_c01495{left:173.520000px;}
.x41_c01495{left:174.960000px;}
.x30_c01495{left:185.760000px;}
.x10_c01495{left:195.120000px;}
.x37_c01495{left:196.560000px;}
.x3_c01495{left:207.360000px;}
.x1a_c01495{left:216.720000px;}
.x4_c01495{left:227.520000px;}
.x3f_c01495{left:238.320000px;}
.x34_c01495{left:239.760000px;}
.x49_c01495{left:248.400000px;}
.x21_c01495{left:249.840000px;}
.x1b_c01495{left:259.200000px;}
.x31_c01495{left:270.720000px;}
.x28_c01495{left:272.160000px;}
.x44_c01495{left:280.800000px;}
.x36_c01495{left:282.960000px;}
.x4d_c01495{left:293.040000px;}
.x1c_c01495{left:302.400000px;}
.x5_c01495{left:303.840000px;}
.x38_c01495{left:315.360000px;}
.x42_c01495{left:324.000000px;}
.x3a_c01495{left:326.160000px;}
.x11_c01495{left:337.680000px;}
.x22_c01495{left:339.120000px;}
.x2c_c01495{left:347.040000px;}
.x1d_c01495{left:358.560000px;}
.x32_c01495{left:368.640000px;}
.x23_c01495{left:379.440000px;}
.x6_c01495{left:389.520000px;}
.x12_c01495{left:390.960000px;}
.x24_c01495{left:401.760000px;}
.x45_c01495{left:403.200000px;}
.x4f_c01495{left:411.840000px;}
.x4e_c01495{left:416.880000px;}
.x13_c01495{left:423.360000px;}
.x7_c01495{left:432.000000px;}
.x1e_c01495{left:433.440000px;}
.x39_c01495{left:444.960000px;}
.x3b_c01495{left:454.320000px;}
.x4a_c01495{left:455.760000px;}
.x46_c01495{left:465.840000px;}
.x2d_c01495{left:476.640000px;}
.x25_c01495{left:488.160000px;}
.x29_c01495{left:498.240000px;}
.x14_c01495{left:509.760000px;}
.x47_c01495{left:519.840000px;}
.x4b_c01495{left:531.360000px;}
.x8_c01495{left:542.160000px;}
.x3e_c01495{left:552.960000px;}
.x1f_c01495{left:563.040000px;}
.x26_c01495{left:573.840000px;}
.x43_c01495{left:576.000000px;}
.x15_c01495{left:585.360000px;}
.x9_c01495{left:586.800000px;}
.x48_c01495{left:596.160000px;}
.x33_c01495{left:606.240000px;}
.x20_c01495{left:617.760000px;}
.xa_c01495{left:628.560000px;}
.x50_c01495{left:630.000000px;}
.x2e_c01495{left:639.360000px;}
.xb_c01495{left:650.160000px;}
.x40_c01495{left:653.760000px;}
.x27_c01495{left:660.960000px;}
.x16_c01495{left:671.040000px;}
.x2f_c01495{left:672.480000px;}
.xc_c01495{left:682.560000px;}
.x1_c01495{left:691.920000px;}
.x35_c01495{left:693.360000px;}
@media print{
.v0_c01495{vertical-align:0.000000pt;}
.ls0_c01495{letter-spacing:0.000000pt;}
.ws0_c01495{word-spacing:0.000000pt;}
.fse_c01495{font-size:28.160000pt;}
.fs3_c01495{font-size:30.720000pt;}
.fs9_c01495{font-size:33.280000pt;}
.fsc_c01495{font-size:38.400000pt;}
.fs5_c01495{font-size:40.960000pt;}
.fs6_c01495{font-size:43.520000pt;}
.fs4_c01495{font-size:46.080000pt;}
.fs2_c01495{font-size:48.640000pt;}
.fsb_c01495{font-size:51.200000pt;}
.fs1_c01495{font-size:53.760000pt;}
.fs8_c01495{font-size:56.320000pt;}
.fs7_c01495{font-size:58.880000pt;}
.fsa_c01495{font-size:61.440000pt;}
.fs0_c01495{font-size:64.000000pt;}
.fsd_c01495{font-size:66.560000pt;}
.y0_c01495{bottom:0.000000pt;}
.y5d_c01495{bottom:45.440000pt;}
.y5e_c01495{bottom:48.000000pt;}
.y5f_c01495{bottom:48.640000pt;}
.y60_c01495{bottom:49.280000pt;}
.y5b_c01495{bottom:83.840000pt;}
.y5a_c01495{bottom:84.480000pt;}
.y59_c01495{bottom:86.400000pt;}
.y5c_c01495{bottom:87.040000pt;}
.y58_c01495{bottom:133.760000pt;}
.y55_c01495{bottom:169.600000pt;}
.y54_c01495{bottom:170.240000pt;}
.y52_c01495{bottom:170.880000pt;}
.y53_c01495{bottom:172.800000pt;}
.y56_c01495{bottom:173.440000pt;}
.y57_c01495{bottom:174.080000pt;}
.y4f_c01495{bottom:208.640000pt;}
.y50_c01495{bottom:209.280000pt;}
.y4d_c01495{bottom:210.560000pt;}
.y4e_c01495{bottom:211.200000pt;}
.y51_c01495{bottom:211.840000pt;}
.y4b_c01495{bottom:247.680000pt;}
.y4a_c01495{bottom:249.600000pt;}
.y4c_c01495{bottom:250.240000pt;}
.y46_c01495{bottom:294.400000pt;}
.y47_c01495{bottom:295.040000pt;}
.y48_c01495{bottom:295.680000pt;}
.y49_c01495{bottom:296.320000pt;}
.y45_c01495{bottom:296.960000pt;}
.y44_c01495{bottom:297.600000pt;}
.y41_c01495{bottom:332.160000pt;}
.y42_c01495{bottom:333.440000pt;}
.y3f_c01495{bottom:334.080000pt;}
.y40_c01495{bottom:336.000000pt;}
.y43_c01495{bottom:336.640000pt;}
.y3c_c01495{bottom:369.920000pt;}
.y3d_c01495{bottom:370.560000pt;}
.y3e_c01495{bottom:371.200000pt;}
.y3b_c01495{bottom:371.840000pt;}
.y39_c01495{bottom:373.760000pt;}
.y3a_c01495{bottom:374.400000pt;}
.y37_c01495{bottom:408.960000pt;}
.y36_c01495{bottom:409.600000pt;}
.y38_c01495{bottom:410.240000pt;}
.y34_c01495{bottom:412.160000pt;}
.y35_c01495{bottom:412.800000pt;}
.y30_c01495{bottom:448.000000pt;}
.y33_c01495{bottom:448.640000pt;}
.y31_c01495{bottom:450.560000pt;}
.y32_c01495{bottom:451.200000pt;}
.y2d_c01495{bottom:486.400000pt;}
.y2f_c01495{bottom:487.680000pt;}
.y2c_c01495{bottom:488.960000pt;}
.y2e_c01495{bottom:489.600000pt;}
.y29_c01495{bottom:524.160000pt;}
.y2a_c01495{bottom:524.800000pt;}
.y28_c01495{bottom:526.720000pt;}
.y2b_c01495{bottom:528.000000pt;}
.y25_c01495{bottom:562.560000pt;}
.y27_c01495{bottom:565.120000pt;}
.y26_c01495{bottom:565.760000pt;}
.y24_c01495{bottom:600.960000pt;}
.y23_c01495{bottom:602.880000pt;}
.y22_c01495{bottom:603.520000pt;}
.y20_c01495{bottom:638.720000pt;}
.y21_c01495{bottom:639.360000pt;}
.y1f_c01495{bottom:640.000000pt;}
.y1d_c01495{bottom:641.280000pt;}
.y1e_c01495{bottom:641.920000pt;}
.y1c_c01495{bottom:676.480000pt;}
.y1b_c01495{bottom:677.120000pt;}
.y19_c01495{bottom:677.760000pt;}
.y18_c01495{bottom:679.680000pt;}
.y1a_c01495{bottom:680.320000pt;}
.y16_c01495{bottom:718.080000pt;}
.y17_c01495{bottom:718.720000pt;}
.y14_c01495{bottom:753.280000pt;}
.y13_c01495{bottom:753.920000pt;}
.y11_c01495{bottom:754.560000pt;}
.y15_c01495{bottom:755.840000pt;}
.y12_c01495{bottom:756.480000pt;}
.yf_c01495{bottom:791.680000pt;}
.y10_c01495{bottom:794.240000pt;}
.ye_c01495{bottom:794.880000pt;}
.yb_c01495{bottom:829.440000pt;}
.yc_c01495{bottom:830.080000pt;}
.yd_c01495{bottom:832.000000pt;}
.y9_c01495{bottom:832.640000pt;}
.ya_c01495{bottom:833.280000pt;}
.y8_c01495{bottom:868.480000pt;}
.y6_c01495{bottom:869.120000pt;}
.y7_c01495{bottom:870.400000pt;}
.y5_c01495{bottom:871.040000pt;}
.y2_c01495{bottom:906.880000pt;}
.y4_c01495{bottom:908.800000pt;}
.y3_c01495{bottom:909.440000pt;}
.y1_c01495{bottom:972.800000pt;}
.h10_c01495{height:25.341250pt;}
.h5_c01495{height:27.645000pt;}
.hb_c01495{height:29.948750pt;}
.he_c01495{height:34.556250pt;}
.h7_c01495{height:36.860000pt;}
.h8_c01495{height:39.163750pt;}
.h6_c01495{height:41.467500pt;}
.h4_c01495{height:43.771250pt;}
.hd_c01495{height:46.075000pt;}
.h3_c01495{height:48.378750pt;}
.ha_c01495{height:50.682500pt;}
.h9_c01495{height:52.986250pt;}
.hc_c01495{height:55.290000pt;}
.h2_c01495{height:57.593750pt;}
.hf_c01495{height:59.897500pt;}
.h0_c01495{height:1029.120000pt;}
.h1_c01495{height:1029.333333pt;}
.w0_c01495{width:693.760000pt;}
.w1_c01495{width:694.000000pt;}
.x0_c01495{left:0.000000pt;}
.xd_c01495{left:48.640000pt;}
.x3c_c01495{left:49.920000pt;}
.x51_c01495{left:51.200000pt;}
.x17_c01495{left:78.080000pt;}
.x3d_c01495{left:86.400000pt;}
.xe_c01495{left:87.680000pt;}
.x18_c01495{left:106.880000pt;}
.x4c_c01495{left:115.200000pt;}
.xf_c01495{left:116.480000pt;}
.x2a_c01495{left:125.440000pt;}
.x19_c01495{left:134.400000pt;}
.x2_c01495{left:145.280000pt;}
.x2b_c01495{left:154.240000pt;}
.x41_c01495{left:155.520000pt;}
.x30_c01495{left:165.120000pt;}
.x10_c01495{left:173.440000pt;}
.x37_c01495{left:174.720000pt;}
.x3_c01495{left:184.320000pt;}
.x1a_c01495{left:192.640000pt;}
.x4_c01495{left:202.240000pt;}
.x3f_c01495{left:211.840000pt;}
.x34_c01495{left:213.120000pt;}
.x49_c01495{left:220.800000pt;}
.x21_c01495{left:222.080000pt;}
.x1b_c01495{left:230.400000pt;}
.x31_c01495{left:240.640000pt;}
.x28_c01495{left:241.920000pt;}
.x44_c01495{left:249.600000pt;}
.x36_c01495{left:251.520000pt;}
.x4d_c01495{left:260.480000pt;}
.x1c_c01495{left:268.800000pt;}
.x5_c01495{left:270.080000pt;}
.x38_c01495{left:280.320000pt;}
.x42_c01495{left:288.000000pt;}
.x3a_c01495{left:289.920000pt;}
.x11_c01495{left:300.160000pt;}
.x22_c01495{left:301.440000pt;}
.x2c_c01495{left:308.480000pt;}
.x1d_c01495{left:318.720000pt;}
.x32_c01495{left:327.680000pt;}
.x23_c01495{left:337.280000pt;}
.x6_c01495{left:346.240000pt;}
.x12_c01495{left:347.520000pt;}
.x24_c01495{left:357.120000pt;}
.x45_c01495{left:358.400000pt;}
.x4f_c01495{left:366.080000pt;}
.x4e_c01495{left:370.560000pt;}
.x13_c01495{left:376.320000pt;}
.x7_c01495{left:384.000000pt;}
.x1e_c01495{left:385.280000pt;}
.x39_c01495{left:395.520000pt;}
.x3b_c01495{left:403.840000pt;}
.x4a_c01495{left:405.120000pt;}
.x46_c01495{left:414.080000pt;}
.x2d_c01495{left:423.680000pt;}
.x25_c01495{left:433.920000pt;}
.x29_c01495{left:442.880000pt;}
.x14_c01495{left:453.120000pt;}
.x47_c01495{left:462.080000pt;}
.x4b_c01495{left:472.320000pt;}
.x8_c01495{left:481.920000pt;}
.x3e_c01495{left:491.520000pt;}
.x1f_c01495{left:500.480000pt;}
.x26_c01495{left:510.080000pt;}
.x43_c01495{left:512.000000pt;}
.x15_c01495{left:520.320000pt;}
.x9_c01495{left:521.600000pt;}
.x48_c01495{left:529.920000pt;}
.x33_c01495{left:538.880000pt;}
.x20_c01495{left:549.120000pt;}
.xa_c01495{left:558.720000pt;}
.x50_c01495{left:560.000000pt;}
.x2e_c01495{left:568.320000pt;}
.xb_c01495{left:577.920000pt;}
.x40_c01495{left:581.120000pt;}
.x27_c01495{left:587.520000pt;}
.x16_c01495{left:596.480000pt;}
.x2f_c01495{left:597.760000pt;}
.xc_c01495{left:606.720000pt;}
.x1_c01495{left:615.040000pt;}
.x35_c01495{left:616.320000pt;}
}





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

.ir_c01496:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01496{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01496;src:url('chunks/assets/font_84e68c20b86246da9f7e8aba.woff2')format("woff");}.ff1_c01496{font-family:ff1_c01496;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m58_c01496{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);}
.m49_c01496{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);}
.m38_c01496{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);}
.m4a_c01496{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);}
.m41_c01496{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);}
.m26_c01496{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m47_c01496{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m35_c01496{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m5d_c01496{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m43_c01496{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m52_c01496{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m31_c01496{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m17_c01496{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m30_c01496{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);}
.m5e_c01496{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01496{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01496{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m0_c01496{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m12_c01496{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m40_c01496{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m23_c01496{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_c01496{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m20_c01496{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m2_c01496{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m42_c01496{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);}
.m4c_c01496{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);}
.m61_c01496{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m44_c01496{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1_c01496{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);}
.m6_c01496{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);}
.m5a_c01496{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_c01496{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01496{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);}
.m5f_c01496{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);}
.m25_c01496{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);}
.m53_c01496{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);}
.m24_c01496{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m21_c01496{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m50_c01496{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);}
.m3c_c01496{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m36_c01496{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m11_c01496{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);}
.m15_c01496{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01496{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01496{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m7_c01496{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m27_c01496{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);}
.m1a_c01496{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.mc_c01496{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);}
.m57_c01496{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m5_c01496{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);}
.m28_c01496{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m4f_c01496{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m37_c01496{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m9_c01496{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m16_c01496{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);}
.m32_c01496{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m4e_c01496{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01496{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);}
.m2f_c01496{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.me_c01496{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m39_c01496{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m13_c01496{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01496{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m4_c01496{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);}
.m48_c01496{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m19_c01496{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.md_c01496{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m59_c01496{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);}
.m3b_c01496{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m8_c01496{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.ma_c01496{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m14_c01496{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);}
.m33_c01496{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01496{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m55_c01496{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m10_c01496{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);}
.m22_c01496{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01496{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01496{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);}
.m51_c01496{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m54_c01496{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01496{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m3_c01496{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.mb_c01496{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m45_c01496{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m5b_c01496{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m60_c01496{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);}
.m34_c01496{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);}
.m5c_c01496{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m18_c01496{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);}
.m29_c01496{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01496{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01496{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);}
.m56_c01496{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m46_c01496{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01496{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01496{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.v0_c01496{vertical-align:0.000000px;}
.v2_c01496{vertical-align:5.760000px;}
.v1_c01496{vertical-align:8.640000px;}
.ls0_c01496{letter-spacing:0.000000px;}
.sc__c01496{text-shadow:none;}
.sc0_c01496{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01496{-webkit-text-stroke:0px transparent;}
.sc0_c01496{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01496{word-spacing:-5.132880px;}
.ws0_c01496{word-spacing:-3.931920px;}
.ws1_c01496{word-spacing:-2.504400px;}
.ws3_c01496{word-spacing:0.000000px;}
.fc0_c01496{color:transparent;}
.fsa_c01496{font-size:34.560000px;}
.fs6_c01496{font-size:37.440000px;}
.fsc_c01496{font-size:40.320000px;}
.fs5_c01496{font-size:46.080000px;}
.fs2_c01496{font-size:48.960000px;}
.fs3_c01496{font-size:51.840000px;}
.fs4_c01496{font-size:54.720000px;}
.fsb_c01496{font-size:57.600000px;}
.fs1_c01496{font-size:60.480000px;}
.fs8_c01496{font-size:63.360000px;}
.fs7_c01496{font-size:66.240000px;}
.fs9_c01496{font-size:69.120000px;}
.fsd_c01496{font-size:72.000000px;}
.fs0_c01496{font-size:74.880000px;}
.y0_c01496{bottom:0.000000px;}
.y59_c01496{bottom:102.960000px;}
.y5d_c01496{bottom:103.680000px;}
.y5b_c01496{bottom:105.120000px;}
.y5a_c01496{bottom:105.840000px;}
.y5c_c01496{bottom:106.560000px;}
.y56_c01496{bottom:145.440000px;}
.y57_c01496{bottom:146.880000px;}
.y55_c01496{bottom:149.040000px;}
.y58_c01496{bottom:149.760000px;}
.y53_c01496{bottom:188.640000px;}
.y52_c01496{bottom:189.360000px;}
.y51_c01496{bottom:191.520000px;}
.y50_c01496{bottom:192.240000px;}
.y54_c01496{bottom:192.960000px;}
.y4f_c01496{bottom:232.560000px;}
.y4e_c01496{bottom:234.720000px;}
.y4d_c01496{bottom:235.440000px;}
.y4a_c01496{bottom:275.040000px;}
.y48_c01496{bottom:275.760000px;}
.y4c_c01496{bottom:276.480000px;}
.y49_c01496{bottom:277.200000px;}
.y4b_c01496{bottom:278.640000px;}
.y45_c01496{bottom:317.520000px;}
.y43_c01496{bottom:318.240000px;}
.y46_c01496{bottom:318.960000px;}
.y44_c01496{bottom:321.120000px;}
.y47_c01496{bottom:321.840000px;}
.y41_c01496{bottom:361.440000px;}
.y42_c01496{bottom:362.160000px;}
.y3f_c01496{bottom:364.320000px;}
.y40_c01496{bottom:365.040000px;}
.y3e_c01496{bottom:416.160000px;}
.y3d_c01496{bottom:417.600000px;}
.y3c_c01496{bottom:418.320000px;}
.y37_c01496{bottom:457.920000px;}
.y38_c01496{bottom:458.640000px;}
.y3a_c01496{bottom:459.360000px;}
.y3b_c01496{bottom:460.800000px;}
.y39_c01496{bottom:461.520000px;}
.y33_c01496{bottom:499.680000px;}
.y36_c01496{bottom:501.840000px;}
.y35_c01496{bottom:502.560000px;}
.y32_c01496{bottom:504.000000px;}
.y34_c01496{bottom:504.720000px;}
.y30_c01496{bottom:544.320000px;}
.y31_c01496{bottom:545.040000px;}
.y2d_c01496{bottom:546.480000px;}
.y2f_c01496{bottom:547.200000px;}
.y2e_c01496{bottom:547.920000px;}
.y2a_c01496{bottom:587.520000px;}
.y2b_c01496{bottom:588.240000px;}
.y29_c01496{bottom:590.400000px;}
.y2c_c01496{bottom:591.120000px;}
.y27_c01496{bottom:629.280000px;}
.y26_c01496{bottom:630.720000px;}
.y28_c01496{bottom:632.880000px;}
.y25_c01496{bottom:633.600000px;}
.y22_c01496{bottom:673.920000px;}
.y24_c01496{bottom:676.080000px;}
.y23_c01496{bottom:676.800000px;}
.y20_c01496{bottom:717.120000px;}
.y1f_c01496{bottom:719.280000px;}
.y21_c01496{bottom:720.000000px;}
.y1d_c01496{bottom:770.400000px;}
.y1c_c01496{bottom:771.120000px;}
.y1e_c01496{bottom:772.560000px;}
.y1b_c01496{bottom:773.280000px;}
.y18_c01496{bottom:812.160000px;}
.y19_c01496{bottom:812.880000px;}
.y16_c01496{bottom:813.600000px;}
.y17_c01496{bottom:815.760000px;}
.y1a_c01496{bottom:816.480000px;}
.y15_c01496{bottom:856.080000px;}
.y14_c01496{bottom:858.240000px;}
.y13_c01496{bottom:858.960000px;}
.ye_c01496{bottom:898.560000px;}
.y11_c01496{bottom:899.280000px;}
.y12_c01496{bottom:900.720000px;}
.y10_c01496{bottom:901.440000px;}
.yf_c01496{bottom:902.880000px;}
.yc_c01496{bottom:941.040000px;}
.yb_c01496{bottom:941.760000px;}
.yd_c01496{bottom:943.920000px;}
.ya_c01496{bottom:944.640000px;}
.y9_c01496{bottom:945.360000px;}
.y8_c01496{bottom:983.520000px;}
.y7_c01496{bottom:984.960000px;}
.y5_c01496{bottom:987.120000px;}
.y6_c01496{bottom:987.840000px;}
.y4_c01496{bottom:1029.600000px;}
.y2_c01496{bottom:1030.320000px;}
.y3_c01496{bottom:1031.040000px;}
.y1_c01496{bottom:1095.840000px;}
.hc_c01496{height:31.100625px;}
.h8_c01496{height:33.692344px;}
.hf_c01496{height:36.284062px;}
.h7_c01496{height:41.467500px;}
.h4_c01496{height:44.059219px;}
.h5_c01496{height:46.650937px;}
.h6_c01496{height:49.242656px;}
.he_c01496{height:51.834375px;}
.hd_c01496{height:52.699219px;}
.h3_c01496{height:54.426094px;}
.ha_c01496{height:57.017812px;}
.h9_c01496{height:59.609531px;}
.hb_c01496{height:62.201250px;}
.h10_c01496{height:64.792969px;}
.h2_c01496{height:67.384687px;}
.h0_c01496{height:1155.600000px;}
.h1_c01496{height:1155.750000px;}
.w1_c01496{width:767.250000px;}
.w0_c01496{width:767.520000px;}
.x0_c01496{left:0.000000px;}
.x2_c01496{left:45.360000px;}
.xd_c01496{left:46.800000px;}
.x28_c01496{left:66.960000px;}
.x45_c01496{left:79.200000px;}
.xe_c01496{left:89.280000px;}
.x39_c01496{left:99.360000px;}
.x21_c01496{left:110.880000px;}
.x3d_c01496{left:113.760000px;}
.x52_c01496{left:120.960000px;}
.x3_c01496{left:123.120000px;}
.xf_c01496{left:132.480000px;}
.x3a_c01496{left:141.840000px;}
.x22_c01496{left:143.280000px;}
.x4_c01496{left:154.080000px;}
.x15_c01496{left:164.880000px;}
.x50_c01496{left:174.960000px;}
.x29_c01496{left:176.400000px;}
.x5_c01496{left:186.480000px;}
.x23_c01496{left:197.280000px;}
.x2d_c01496{left:208.800000px;}
.x46_c01496{left:218.880000px;}
.x2e_c01496{left:240.480000px;}
.x10_c01496{left:251.280000px;}
.x35_c01496{left:261.360000px;}
.x2a_c01496{left:262.800000px;}
.x2f_c01496{left:272.880000px;}
.x1d_c01496{left:282.960000px;}
.x16_c01496{left:284.400000px;}
.x6_c01496{left:293.040000px;}
.x11_c01496{left:295.200000px;}
.x48_c01496{left:304.560000px;}
.x1e_c01496{left:326.880000px;}
.x2b_c01496{left:336.960000px;}
.x3e_c01496{left:341.280000px;}
.x30_c01496{left:347.760000px;}
.x51_c01496{left:349.200000px;}
.x24_c01496{left:358.560000px;}
.x53_c01496{left:360.720000px;}
.x41_c01496{left:370.800000px;}
.x49_c01496{left:380.880000px;}
.x4b_c01496{left:390.960000px;}
.x12_c01496{left:392.400000px;}
.x42_c01496{left:402.480000px;}
.x47_c01496{left:403.920000px;}
.x17_c01496{left:413.280000px;}
.x7_c01496{left:414.720000px;}
.x13_c01496{left:423.360000px;}
.x4e_c01496{left:424.800000px;}
.x2c_c01496{left:434.880000px;}
.x3f_c01496{left:436.320000px;}
.x43_c01496{left:445.680000px;}
.x8_c01496{left:447.120000px;}
.x25_c01496{left:467.280000px;}
.x36_c01496{left:468.720000px;}
.x31_c01496{left:470.880000px;}
.x4a_c01496{left:478.800000px;}
.x1f_c01496{left:488.880000px;}
.x18_c01496{left:499.680000px;}
.x40_c01496{left:511.200000px;}
.x19_c01496{left:521.280000px;}
.x9_c01496{left:522.720000px;}
.x26_c01496{left:532.800000px;}
.x4d_c01496{left:542.160000px;}
.x33_c01496{left:544.320000px;}
.x1a_c01496{left:552.960000px;}
.xa_c01496{left:555.120000px;}
.x4c_c01496{left:564.480000px;}
.x32_c01496{left:565.920000px;}
.x27_c01496{left:574.560000px;}
.x14_c01496{left:576.000000px;}
.x3b_c01496{left:586.080000px;}
.x4f_c01496{left:587.520000px;}
.x37_c01496{left:596.880000px;}
.x54_c01496{left:598.320000px;}
.x1b_c01496{left:608.400000px;}
.xb_c01496{left:619.920000px;}
.x3c_c01496{left:630.720000px;}
.x38_c01496{left:640.800000px;}
.x34_c01496{left:642.240000px;}
.x20_c01496{left:652.320000px;}
.x44_c01496{left:654.480000px;}
.xc_c01496{left:663.120000px;}
.x1c_c01496{left:673.920000px;}
.x1_c01496{left:688.320000px;}
@media print{
.v0_c01496{vertical-align:0.000000pt;}
.v2_c01496{vertical-align:5.120000pt;}
.v1_c01496{vertical-align:7.680000pt;}
.ls0_c01496{letter-spacing:0.000000pt;}
.ws2_c01496{word-spacing:-4.562560pt;}
.ws0_c01496{word-spacing:-3.495040pt;}
.ws1_c01496{word-spacing:-2.226133pt;}
.ws3_c01496{word-spacing:0.000000pt;}
.fsa_c01496{font-size:30.720000pt;}
.fs6_c01496{font-size:33.280000pt;}
.fsc_c01496{font-size:35.840000pt;}
.fs5_c01496{font-size:40.960000pt;}
.fs2_c01496{font-size:43.520000pt;}
.fs3_c01496{font-size:46.080000pt;}
.fs4_c01496{font-size:48.640000pt;}
.fsb_c01496{font-size:51.200000pt;}
.fs1_c01496{font-size:53.760000pt;}
.fs8_c01496{font-size:56.320000pt;}
.fs7_c01496{font-size:58.880000pt;}
.fs9_c01496{font-size:61.440000pt;}
.fsd_c01496{font-size:64.000000pt;}
.fs0_c01496{font-size:66.560000pt;}
.y0_c01496{bottom:0.000000pt;}
.y59_c01496{bottom:91.520000pt;}
.y5d_c01496{bottom:92.160000pt;}
.y5b_c01496{bottom:93.440000pt;}
.y5a_c01496{bottom:94.080000pt;}
.y5c_c01496{bottom:94.720000pt;}
.y56_c01496{bottom:129.280000pt;}
.y57_c01496{bottom:130.560000pt;}
.y55_c01496{bottom:132.480000pt;}
.y58_c01496{bottom:133.120000pt;}
.y53_c01496{bottom:167.680000pt;}
.y52_c01496{bottom:168.320000pt;}
.y51_c01496{bottom:170.240000pt;}
.y50_c01496{bottom:170.880000pt;}
.y54_c01496{bottom:171.520000pt;}
.y4f_c01496{bottom:206.720000pt;}
.y4e_c01496{bottom:208.640000pt;}
.y4d_c01496{bottom:209.280000pt;}
.y4a_c01496{bottom:244.480000pt;}
.y48_c01496{bottom:245.120000pt;}
.y4c_c01496{bottom:245.760000pt;}
.y49_c01496{bottom:246.400000pt;}
.y4b_c01496{bottom:247.680000pt;}
.y45_c01496{bottom:282.240000pt;}
.y43_c01496{bottom:282.880000pt;}
.y46_c01496{bottom:283.520000pt;}
.y44_c01496{bottom:285.440000pt;}
.y47_c01496{bottom:286.080000pt;}
.y41_c01496{bottom:321.280000pt;}
.y42_c01496{bottom:321.920000pt;}
.y3f_c01496{bottom:323.840000pt;}
.y40_c01496{bottom:324.480000pt;}
.y3e_c01496{bottom:369.920000pt;}
.y3d_c01496{bottom:371.200000pt;}
.y3c_c01496{bottom:371.840000pt;}
.y37_c01496{bottom:407.040000pt;}
.y38_c01496{bottom:407.680000pt;}
.y3a_c01496{bottom:408.320000pt;}
.y3b_c01496{bottom:409.600000pt;}
.y39_c01496{bottom:410.240000pt;}
.y33_c01496{bottom:444.160000pt;}
.y36_c01496{bottom:446.080000pt;}
.y35_c01496{bottom:446.720000pt;}
.y32_c01496{bottom:448.000000pt;}
.y34_c01496{bottom:448.640000pt;}
.y30_c01496{bottom:483.840000pt;}
.y31_c01496{bottom:484.480000pt;}
.y2d_c01496{bottom:485.760000pt;}
.y2f_c01496{bottom:486.400000pt;}
.y2e_c01496{bottom:487.040000pt;}
.y2a_c01496{bottom:522.240000pt;}
.y2b_c01496{bottom:522.880000pt;}
.y29_c01496{bottom:524.800000pt;}
.y2c_c01496{bottom:525.440000pt;}
.y27_c01496{bottom:559.360000pt;}
.y26_c01496{bottom:560.640000pt;}
.y28_c01496{bottom:562.560000pt;}
.y25_c01496{bottom:563.200000pt;}
.y22_c01496{bottom:599.040000pt;}
.y24_c01496{bottom:600.960000pt;}
.y23_c01496{bottom:601.600000pt;}
.y20_c01496{bottom:637.440000pt;}
.y1f_c01496{bottom:639.360000pt;}
.y21_c01496{bottom:640.000000pt;}
.y1d_c01496{bottom:684.800000pt;}
.y1c_c01496{bottom:685.440000pt;}
.y1e_c01496{bottom:686.720000pt;}
.y1b_c01496{bottom:687.360000pt;}
.y18_c01496{bottom:721.920000pt;}
.y19_c01496{bottom:722.560000pt;}
.y16_c01496{bottom:723.200000pt;}
.y17_c01496{bottom:725.120000pt;}
.y1a_c01496{bottom:725.760000pt;}
.y15_c01496{bottom:760.960000pt;}
.y14_c01496{bottom:762.880000pt;}
.y13_c01496{bottom:763.520000pt;}
.ye_c01496{bottom:798.720000pt;}
.y11_c01496{bottom:799.360000pt;}
.y12_c01496{bottom:800.640000pt;}
.y10_c01496{bottom:801.280000pt;}
.yf_c01496{bottom:802.560000pt;}
.yc_c01496{bottom:836.480000pt;}
.yb_c01496{bottom:837.120000pt;}
.yd_c01496{bottom:839.040000pt;}
.ya_c01496{bottom:839.680000pt;}
.y9_c01496{bottom:840.320000pt;}
.y8_c01496{bottom:874.240000pt;}
.y7_c01496{bottom:875.520000pt;}
.y5_c01496{bottom:877.440000pt;}
.y6_c01496{bottom:878.080000pt;}
.y4_c01496{bottom:915.200000pt;}
.y2_c01496{bottom:915.840000pt;}
.y3_c01496{bottom:916.480000pt;}
.y1_c01496{bottom:974.080000pt;}
.hc_c01496{height:27.645000pt;}
.h8_c01496{height:29.948750pt;}
.hf_c01496{height:32.252500pt;}
.h7_c01496{height:36.860000pt;}
.h4_c01496{height:39.163750pt;}
.h5_c01496{height:41.467500pt;}
.h6_c01496{height:43.771250pt;}
.he_c01496{height:46.075000pt;}
.hd_c01496{height:46.843750pt;}
.h3_c01496{height:48.378750pt;}
.ha_c01496{height:50.682500pt;}
.h9_c01496{height:52.986250pt;}
.hb_c01496{height:55.290000pt;}
.h10_c01496{height:57.593750pt;}
.h2_c01496{height:59.897500pt;}
.h0_c01496{height:1027.200000pt;}
.h1_c01496{height:1027.333333pt;}
.w1_c01496{width:682.000000pt;}
.w0_c01496{width:682.240000pt;}
.x0_c01496{left:0.000000pt;}
.x2_c01496{left:40.320000pt;}
.xd_c01496{left:41.600000pt;}
.x28_c01496{left:59.520000pt;}
.x45_c01496{left:70.400000pt;}
.xe_c01496{left:79.360000pt;}
.x39_c01496{left:88.320000pt;}
.x21_c01496{left:98.560000pt;}
.x3d_c01496{left:101.120000pt;}
.x52_c01496{left:107.520000pt;}
.x3_c01496{left:109.440000pt;}
.xf_c01496{left:117.760000pt;}
.x3a_c01496{left:126.080000pt;}
.x22_c01496{left:127.360000pt;}
.x4_c01496{left:136.960000pt;}
.x15_c01496{left:146.560000pt;}
.x50_c01496{left:155.520000pt;}
.x29_c01496{left:156.800000pt;}
.x5_c01496{left:165.760000pt;}
.x23_c01496{left:175.360000pt;}
.x2d_c01496{left:185.600000pt;}
.x46_c01496{left:194.560000pt;}
.x2e_c01496{left:213.760000pt;}
.x10_c01496{left:223.360000pt;}
.x35_c01496{left:232.320000pt;}
.x2a_c01496{left:233.600000pt;}
.x2f_c01496{left:242.560000pt;}
.x1d_c01496{left:251.520000pt;}
.x16_c01496{left:252.800000pt;}
.x6_c01496{left:260.480000pt;}
.x11_c01496{left:262.400000pt;}
.x48_c01496{left:270.720000pt;}
.x1e_c01496{left:290.560000pt;}
.x2b_c01496{left:299.520000pt;}
.x3e_c01496{left:303.360000pt;}
.x30_c01496{left:309.120000pt;}
.x51_c01496{left:310.400000pt;}
.x24_c01496{left:318.720000pt;}
.x53_c01496{left:320.640000pt;}
.x41_c01496{left:329.600000pt;}
.x49_c01496{left:338.560000pt;}
.x4b_c01496{left:347.520000pt;}
.x12_c01496{left:348.800000pt;}
.x42_c01496{left:357.760000pt;}
.x47_c01496{left:359.040000pt;}
.x17_c01496{left:367.360000pt;}
.x7_c01496{left:368.640000pt;}
.x13_c01496{left:376.320000pt;}
.x4e_c01496{left:377.600000pt;}
.x2c_c01496{left:386.560000pt;}
.x3f_c01496{left:387.840000pt;}
.x43_c01496{left:396.160000pt;}
.x8_c01496{left:397.440000pt;}
.x25_c01496{left:415.360000pt;}
.x36_c01496{left:416.640000pt;}
.x31_c01496{left:418.560000pt;}
.x4a_c01496{left:425.600000pt;}
.x1f_c01496{left:434.560000pt;}
.x18_c01496{left:444.160000pt;}
.x40_c01496{left:454.400000pt;}
.x19_c01496{left:463.360000pt;}
.x9_c01496{left:464.640000pt;}
.x26_c01496{left:473.600000pt;}
.x4d_c01496{left:481.920000pt;}
.x33_c01496{left:483.840000pt;}
.x1a_c01496{left:491.520000pt;}
.xa_c01496{left:493.440000pt;}
.x4c_c01496{left:501.760000pt;}
.x32_c01496{left:503.040000pt;}
.x27_c01496{left:510.720000pt;}
.x14_c01496{left:512.000000pt;}
.x3b_c01496{left:520.960000pt;}
.x4f_c01496{left:522.240000pt;}
.x37_c01496{left:530.560000pt;}
.x54_c01496{left:531.840000pt;}
.x1b_c01496{left:540.800000pt;}
.xb_c01496{left:551.040000pt;}
.x3c_c01496{left:560.640000pt;}
.x38_c01496{left:569.600000pt;}
.x34_c01496{left:570.880000pt;}
.x20_c01496{left:579.840000pt;}
.x44_c01496{left:581.760000pt;}
.xc_c01496{left:589.440000pt;}
.x1c_c01496{left:599.040000pt;}
.x1_c01496{left:611.840000pt;}
}





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

.ir_c01497:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01497{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01497;src:url('chunks/assets/font_b63377773d75322308052f82.woff2')format("woff");}.ff1_c01497{font-family:ff1_c01497;line-height:1.109863;font-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_c01497{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);}
.m58_c01497{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);}
.m33_c01497{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);}
.m57_c01497{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01497{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01497{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m44_c01497{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);}
.m42_c01497{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m19_c01497{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01497{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);}
.m31_c01497{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m49_c01497{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m28_c01497{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);}
.m56_c01497{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01497{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m3_c01497{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m15_c01497{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);}
.m29_c01497{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);}
.m20_c01497{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01497{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m0_c01497{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);}
.m1f_c01497{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);}
.m2c_c01497{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m9_c01497{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);}
.m41_c01497{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m26_c01497{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);}
.m2_c01497{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);}
.m27_c01497{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);}
.m38_c01497{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m6_c01497{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.mf_c01497{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m30_c01497{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);}
.m5_c01497{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m21_c01497{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);}
.m24_c01497{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01497{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);}
.m34_c01497{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);}
.m39_c01497{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m35_c01497{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.md_c01497{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m22_c01497{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);}
.m4f_c01497{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m25_c01497{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m4d_c01497{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);}
.m46_c01497{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01497{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);}
.m1b_c01497{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01497{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m55_c01497{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01497{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.ma_c01497{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);}
.m43_c01497{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m45_c01497{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m18_c01497{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m51_c01497{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m36_c01497{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m37_c01497{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m48_c01497{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);}
.m53_c01497{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);}
.m17_c01497{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01497{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m11_c01497{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);}
.m13_c01497{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m16_c01497{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m54_c01497{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m8_c01497{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);}
.m4a_c01497{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m50_c01497{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m52_c01497{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m47_c01497{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01497{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);}
.m10_c01497{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m7_c01497{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);}
.m59_c01497{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m14_c01497{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.mb_c01497{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m1_c01497{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m23_c01497{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01497{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01497{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);}
.m1e_c01497{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);}
.m40_c01497{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m4_c01497{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);}
.me_c01497{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m12_c01497{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01497{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);}
.m3a_c01497{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m32_c01497{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01497{transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01497{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.v1_c01497{vertical-align:-2.880000px;}
.v0_c01497{vertical-align:0.000000px;}
.ls0_c01497{letter-spacing:0.000000px;}
.sc__c01497{text-shadow:none;}
.sc0_c01497{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01497{-webkit-text-stroke:0px transparent;}
.sc0_c01497{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01497{word-spacing:-0.216480px;}
.ws1_c01497{word-spacing:0.000000px;}
.fc0_c01497{color:transparent;}
.fs4_c01497{font-size:34.560000px;}
.fs1_c01497{font-size:37.440000px;}
.fs9_c01497{font-size:40.320000px;}
.fsd_c01497{font-size:43.200000px;}
.fsb_c01497{font-size:46.080000px;}
.fs3_c01497{font-size:48.960000px;}
.fs5_c01497{font-size:51.840000px;}
.fs7_c01497{font-size:54.720000px;}
.fsc_c01497{font-size:57.600000px;}
.fs2_c01497{font-size:60.480000px;}
.fs8_c01497{font-size:63.360000px;}
.fs6_c01497{font-size:66.240000px;}
.fsa_c01497{font-size:69.120000px;}
.fs0_c01497{font-size:72.000000px;}
.y0_c01497{bottom:0.000000px;}
.y61_c01497{bottom:95.760000px;}
.y5d_c01497{bottom:136.800000px;}
.y5e_c01497{bottom:138.240000px;}
.y5c_c01497{bottom:138.960000px;}
.y5b_c01497{bottom:139.680000px;}
.y5f_c01497{bottom:140.400000px;}
.y60_c01497{bottom:141.120000px;}
.y58_c01497{bottom:180.720000px;}
.y5a_c01497{bottom:182.160000px;}
.y57_c01497{bottom:182.880000px;}
.y59_c01497{bottom:183.600000px;}
.y53_c01497{bottom:223.200000px;}
.y56_c01497{bottom:223.920000px;}
.y52_c01497{bottom:226.080000px;}
.y54_c01497{bottom:226.800000px;}
.y55_c01497{bottom:227.520000px;}
.y51_c01497{bottom:266.400000px;}
.y50_c01497{bottom:267.840000px;}
.y4f_c01497{bottom:268.560000px;}
.y4e_c01497{bottom:269.280000px;}
.y4d_c01497{bottom:270.000000px;}
.y4b_c01497{bottom:310.320000px;}
.y4a_c01497{bottom:312.480000px;}
.y4c_c01497{bottom:313.200000px;}
.y49_c01497{bottom:363.600000px;}
.y48_c01497{bottom:365.760000px;}
.y47_c01497{bottom:366.480000px;}
.y45_c01497{bottom:406.800000px;}
.y44_c01497{bottom:408.960000px;}
.y43_c01497{bottom:409.680000px;}
.y46_c01497{bottom:410.400000px;}
.y42_c01497{bottom:450.000000px;}
.y40_c01497{bottom:450.720000px;}
.y3f_c01497{bottom:452.160000px;}
.y41_c01497{bottom:452.880000px;}
.y3a_c01497{bottom:491.760000px;}
.y3c_c01497{bottom:493.200000px;}
.y3e_c01497{bottom:494.640000px;}
.y3d_c01497{bottom:495.360000px;}
.y3b_c01497{bottom:496.080000px;}
.y37_c01497{bottom:534.960000px;}
.y34_c01497{bottom:535.680000px;}
.y38_c01497{bottom:537.840000px;}
.y36_c01497{bottom:538.560000px;}
.y35_c01497{bottom:539.280000px;}
.y39_c01497{bottom:540.000000px;}
.y30_c01497{bottom:578.880000px;}
.y33_c01497{bottom:579.600000px;}
.y2f_c01497{bottom:581.040000px;}
.y31_c01497{bottom:581.760000px;}
.y32_c01497{bottom:582.480000px;}
.y2e_c01497{bottom:622.080000px;}
.y2d_c01497{bottom:624.240000px;}
.y2c_c01497{bottom:624.960000px;}
.y2b_c01497{bottom:625.680000px;}
.y27_c01497{bottom:663.840000px;}
.y2a_c01497{bottom:664.560000px;}
.y28_c01497{bottom:667.440000px;}
.y29_c01497{bottom:668.160000px;}
.y25_c01497{bottom:707.760000px;}
.y26_c01497{bottom:708.480000px;}
.y24_c01497{bottom:709.920000px;}
.y23_c01497{bottom:710.640000px;}
.y20_c01497{bottom:750.960000px;}
.y21_c01497{bottom:751.680000px;}
.y22_c01497{bottom:753.120000px;}
.y1f_c01497{bottom:753.840000px;}
.y1d_c01497{bottom:794.160000px;}
.y1c_c01497{bottom:796.320000px;}
.y1e_c01497{bottom:797.040000px;}
.y1b_c01497{bottom:859.680000px;}
.y19_c01497{bottom:860.400000px;}
.y1a_c01497{bottom:861.120000px;}
.y16_c01497{bottom:900.720000px;}
.y15_c01497{bottom:901.440000px;}
.y14_c01497{bottom:902.160000px;}
.y17_c01497{bottom:902.880000px;}
.y18_c01497{bottom:903.600000px;}
.y13_c01497{bottom:904.320000px;}
.y10_c01497{bottom:943.200000px;}
.y12_c01497{bottom:943.920000px;}
.yd_c01497{bottom:944.640000px;}
.yf_c01497{bottom:946.080000px;}
.y11_c01497{bottom:946.800000px;}
.ye_c01497{bottom:947.520000px;}
.yc_c01497{bottom:986.400000px;}
.y8_c01497{bottom:987.120000px;}
.yb_c01497{bottom:989.280000px;}
.y9_c01497{bottom:990.000000px;}
.ya_c01497{bottom:990.720000px;}
.y6_c01497{bottom:1029.600000px;}
.y5_c01497{bottom:1030.320000px;}
.y3_c01497{bottom:1031.040000px;}
.y7_c01497{bottom:1031.760000px;}
.y2_c01497{bottom:1033.200000px;}
.y4_c01497{bottom:1033.920000px;}
.y1_c01497{bottom:1095.120000px;}
.h6_c01497{height:31.100625px;}
.h3_c01497{height:33.692344px;}
.hb_c01497{height:36.284062px;}
.hf_c01497{height:38.875781px;}
.hd_c01497{height:41.467500px;}
.h5_c01497{height:44.059219px;}
.h7_c01497{height:46.650937px;}
.h9_c01497{height:49.242656px;}
.he_c01497{height:51.834375px;}
.h4_c01497{height:54.426094px;}
.ha_c01497{height:57.017812px;}
.h8_c01497{height:59.609531px;}
.hc_c01497{height:62.201250px;}
.h2_c01497{height:64.792969px;}
.h0_c01497{height:1157.760000px;}
.h1_c01497{height:1158.000000px;}
.w1_c01497{width:769.500000px;}
.w0_c01497{width:769.680000px;}
.x0_c01497{left:0.000000px;}
.x2_c01497{left:38.880000px;}
.x45_c01497{left:41.040000px;}
.x32_c01497{left:71.280000px;}
.x3_c01497{left:82.080000px;}
.x3c_c01497{left:92.880000px;}
.x3e_c01497{left:103.680000px;}
.x20_c01497{left:114.480000px;}
.xe_c01497{left:115.920000px;}
.x46_c01497{left:125.280000px;}
.x17_c01497{left:137.520000px;}
.x24_c01497{left:147.600000px;}
.x2d_c01497{left:149.040000px;}
.xf_c01497{left:157.680000px;}
.x36_c01497{left:168.480000px;}
.x4_c01497{left:169.920000px;}
.x25_c01497{left:179.280000px;}
.x33_c01497{left:180.720000px;}
.x3f_c01497{left:190.800000px;}
.x5_c01497{left:200.880000px;}
.x10_c01497{left:202.320000px;}
.x2e_c01497{left:212.400000px;}
.x6_c01497{left:233.280000px;}
.x21_c01497{left:235.440000px;}
.x39_c01497{left:244.080000px;}
.x18_c01497{left:245.520000px;}
.x4b_c01497{left:254.880000px;}
.x19_c01497{left:277.920000px;}
.x48_c01497{left:288.000000px;}
.x11_c01497{left:289.440000px;}
.x7_c01497{left:298.800000px;}
.x4c_c01497{left:300.240000px;}
.x12_c01497{left:309.600000px;}
.x41_c01497{left:311.040000px;}
.x37_c01497{left:319.680000px;}
.x42_c01497{left:321.120000px;}
.x28_c01497{left:331.200000px;}
.x13_c01497{left:342.000000px;}
.x43_c01497{left:352.800000px;}
.x29_c01497{left:362.880000px;}
.x1c_c01497{left:364.320000px;}
.x8_c01497{left:374.400000px;}
.x14_c01497{left:384.480000px;}
.x49_c01497{left:395.280000px;}
.x26_c01497{left:396.720000px;}
.x2a_c01497{left:406.800000px;}
.x9_c01497{left:417.600000px;}
.x27_c01497{left:429.120000px;}
.x15_c01497{left:438.480000px;}
.x47_c01497{left:439.920000px;}
.xa_c01497{left:450.000000px;}
.x3a_c01497{left:461.520000px;}
.x1a_c01497{left:472.320000px;}
.x22_c01497{left:483.840000px;}
.x40_c01497{left:493.200000px;}
.x3b_c01497{left:494.640000px;}
.x1d_c01497{left:504.720000px;}
.x3d_c01497{left:516.240000px;}
.x34_c01497{left:525.600000px;}
.x4a_c01497{left:527.760000px;}
.x23_c01497{left:535.680000px;}
.x2b_c01497{left:537.840000px;}
.x2f_c01497{left:546.480000px;}
.x1b_c01497{left:547.920000px;}
.xb_c01497{left:559.440000px;}
.x16_c01497{left:569.520000px;}
.xc_c01497{left:580.320000px;}
.x35_c01497{left:591.840000px;}
.x1e_c01497{left:601.920000px;}
.xd_c01497{left:612.720000px;}
.x30_c01497{left:623.520000px;}
.x44_c01497{left:635.040000px;}
.x1f_c01497{left:645.120000px;}
.x38_c01497{left:655.920000px;}
.x31_c01497{left:657.360000px;}
.x2c_c01497{left:666.720000px;}
.x1_c01497{left:686.160000px;}
@media print{
.v1_c01497{vertical-align:-2.560000pt;}
.v0_c01497{vertical-align:0.000000pt;}
.ls0_c01497{letter-spacing:0.000000pt;}
.ws0_c01497{word-spacing:-0.192427pt;}
.ws1_c01497{word-spacing:0.000000pt;}
.fs4_c01497{font-size:30.720000pt;}
.fs1_c01497{font-size:33.280000pt;}
.fs9_c01497{font-size:35.840000pt;}
.fsd_c01497{font-size:38.400000pt;}
.fsb_c01497{font-size:40.960000pt;}
.fs3_c01497{font-size:43.520000pt;}
.fs5_c01497{font-size:46.080000pt;}
.fs7_c01497{font-size:48.640000pt;}
.fsc_c01497{font-size:51.200000pt;}
.fs2_c01497{font-size:53.760000pt;}
.fs8_c01497{font-size:56.320000pt;}
.fs6_c01497{font-size:58.880000pt;}
.fsa_c01497{font-size:61.440000pt;}
.fs0_c01497{font-size:64.000000pt;}
.y0_c01497{bottom:0.000000pt;}
.y61_c01497{bottom:85.120000pt;}
.y5d_c01497{bottom:121.600000pt;}
.y5e_c01497{bottom:122.880000pt;}
.y5c_c01497{bottom:123.520000pt;}
.y5b_c01497{bottom:124.160000pt;}
.y5f_c01497{bottom:124.800000pt;}
.y60_c01497{bottom:125.440000pt;}
.y58_c01497{bottom:160.640000pt;}
.y5a_c01497{bottom:161.920000pt;}
.y57_c01497{bottom:162.560000pt;}
.y59_c01497{bottom:163.200000pt;}
.y53_c01497{bottom:198.400000pt;}
.y56_c01497{bottom:199.040000pt;}
.y52_c01497{bottom:200.960000pt;}
.y54_c01497{bottom:201.600000pt;}
.y55_c01497{bottom:202.240000pt;}
.y51_c01497{bottom:236.800000pt;}
.y50_c01497{bottom:238.080000pt;}
.y4f_c01497{bottom:238.720000pt;}
.y4e_c01497{bottom:239.360000pt;}
.y4d_c01497{bottom:240.000000pt;}
.y4b_c01497{bottom:275.840000pt;}
.y4a_c01497{bottom:277.760000pt;}
.y4c_c01497{bottom:278.400000pt;}
.y49_c01497{bottom:323.200000pt;}
.y48_c01497{bottom:325.120000pt;}
.y47_c01497{bottom:325.760000pt;}
.y45_c01497{bottom:361.600000pt;}
.y44_c01497{bottom:363.520000pt;}
.y43_c01497{bottom:364.160000pt;}
.y46_c01497{bottom:364.800000pt;}
.y42_c01497{bottom:400.000000pt;}
.y40_c01497{bottom:400.640000pt;}
.y3f_c01497{bottom:401.920000pt;}
.y41_c01497{bottom:402.560000pt;}
.y3a_c01497{bottom:437.120000pt;}
.y3c_c01497{bottom:438.400000pt;}
.y3e_c01497{bottom:439.680000pt;}
.y3d_c01497{bottom:440.320000pt;}
.y3b_c01497{bottom:440.960000pt;}
.y37_c01497{bottom:475.520000pt;}
.y34_c01497{bottom:476.160000pt;}
.y38_c01497{bottom:478.080000pt;}
.y36_c01497{bottom:478.720000pt;}
.y35_c01497{bottom:479.360000pt;}
.y39_c01497{bottom:480.000000pt;}
.y30_c01497{bottom:514.560000pt;}
.y33_c01497{bottom:515.200000pt;}
.y2f_c01497{bottom:516.480000pt;}
.y31_c01497{bottom:517.120000pt;}
.y32_c01497{bottom:517.760000pt;}
.y2e_c01497{bottom:552.960000pt;}
.y2d_c01497{bottom:554.880000pt;}
.y2c_c01497{bottom:555.520000pt;}
.y2b_c01497{bottom:556.160000pt;}
.y27_c01497{bottom:590.080000pt;}
.y2a_c01497{bottom:590.720000pt;}
.y28_c01497{bottom:593.280000pt;}
.y29_c01497{bottom:593.920000pt;}
.y25_c01497{bottom:629.120000pt;}
.y26_c01497{bottom:629.760000pt;}
.y24_c01497{bottom:631.040000pt;}
.y23_c01497{bottom:631.680000pt;}
.y20_c01497{bottom:667.520000pt;}
.y21_c01497{bottom:668.160000pt;}
.y22_c01497{bottom:669.440000pt;}
.y1f_c01497{bottom:670.080000pt;}
.y1d_c01497{bottom:705.920000pt;}
.y1c_c01497{bottom:707.840000pt;}
.y1e_c01497{bottom:708.480000pt;}
.y1b_c01497{bottom:764.160000pt;}
.y19_c01497{bottom:764.800000pt;}
.y1a_c01497{bottom:765.440000pt;}
.y16_c01497{bottom:800.640000pt;}
.y15_c01497{bottom:801.280000pt;}
.y14_c01497{bottom:801.920000pt;}
.y17_c01497{bottom:802.560000pt;}
.y18_c01497{bottom:803.200000pt;}
.y13_c01497{bottom:803.840000pt;}
.y10_c01497{bottom:838.400000pt;}
.y12_c01497{bottom:839.040000pt;}
.yd_c01497{bottom:839.680000pt;}
.yf_c01497{bottom:840.960000pt;}
.y11_c01497{bottom:841.600000pt;}
.ye_c01497{bottom:842.240000pt;}
.yc_c01497{bottom:876.800000pt;}
.y8_c01497{bottom:877.440000pt;}
.yb_c01497{bottom:879.360000pt;}
.y9_c01497{bottom:880.000000pt;}
.ya_c01497{bottom:880.640000pt;}
.y6_c01497{bottom:915.200000pt;}
.y5_c01497{bottom:915.840000pt;}
.y3_c01497{bottom:916.480000pt;}
.y7_c01497{bottom:917.120000pt;}
.y2_c01497{bottom:918.400000pt;}
.y4_c01497{bottom:919.040000pt;}
.y1_c01497{bottom:973.440000pt;}
.h6_c01497{height:27.645000pt;}
.h3_c01497{height:29.948750pt;}
.hb_c01497{height:32.252500pt;}
.hf_c01497{height:34.556250pt;}
.hd_c01497{height:36.860000pt;}
.h5_c01497{height:39.163750pt;}
.h7_c01497{height:41.467500pt;}
.h9_c01497{height:43.771250pt;}
.he_c01497{height:46.075000pt;}
.h4_c01497{height:48.378750pt;}
.ha_c01497{height:50.682500pt;}
.h8_c01497{height:52.986250pt;}
.hc_c01497{height:55.290000pt;}
.h2_c01497{height:57.593750pt;}
.h0_c01497{height:1029.120000pt;}
.h1_c01497{height:1029.333333pt;}
.w1_c01497{width:684.000000pt;}
.w0_c01497{width:684.160000pt;}
.x0_c01497{left:0.000000pt;}
.x2_c01497{left:34.560000pt;}
.x45_c01497{left:36.480000pt;}
.x32_c01497{left:63.360000pt;}
.x3_c01497{left:72.960000pt;}
.x3c_c01497{left:82.560000pt;}
.x3e_c01497{left:92.160000pt;}
.x20_c01497{left:101.760000pt;}
.xe_c01497{left:103.040000pt;}
.x46_c01497{left:111.360000pt;}
.x17_c01497{left:122.240000pt;}
.x24_c01497{left:131.200000pt;}
.x2d_c01497{left:132.480000pt;}
.xf_c01497{left:140.160000pt;}
.x36_c01497{left:149.760000pt;}
.x4_c01497{left:151.040000pt;}
.x25_c01497{left:159.360000pt;}
.x33_c01497{left:160.640000pt;}
.x3f_c01497{left:169.600000pt;}
.x5_c01497{left:178.560000pt;}
.x10_c01497{left:179.840000pt;}
.x2e_c01497{left:188.800000pt;}
.x6_c01497{left:207.360000pt;}
.x21_c01497{left:209.280000pt;}
.x39_c01497{left:216.960000pt;}
.x18_c01497{left:218.240000pt;}
.x4b_c01497{left:226.560000pt;}
.x19_c01497{left:247.040000pt;}
.x48_c01497{left:256.000000pt;}
.x11_c01497{left:257.280000pt;}
.x7_c01497{left:265.600000pt;}
.x4c_c01497{left:266.880000pt;}
.x12_c01497{left:275.200000pt;}
.x41_c01497{left:276.480000pt;}
.x37_c01497{left:284.160000pt;}
.x42_c01497{left:285.440000pt;}
.x28_c01497{left:294.400000pt;}
.x13_c01497{left:304.000000pt;}
.x43_c01497{left:313.600000pt;}
.x29_c01497{left:322.560000pt;}
.x1c_c01497{left:323.840000pt;}
.x8_c01497{left:332.800000pt;}
.x14_c01497{left:341.760000pt;}
.x49_c01497{left:351.360000pt;}
.x26_c01497{left:352.640000pt;}
.x2a_c01497{left:361.600000pt;}
.x9_c01497{left:371.200000pt;}
.x27_c01497{left:381.440000pt;}
.x15_c01497{left:389.760000pt;}
.x47_c01497{left:391.040000pt;}
.xa_c01497{left:400.000000pt;}
.x3a_c01497{left:410.240000pt;}
.x1a_c01497{left:419.840000pt;}
.x22_c01497{left:430.080000pt;}
.x40_c01497{left:438.400000pt;}
.x3b_c01497{left:439.680000pt;}
.x1d_c01497{left:448.640000pt;}
.x3d_c01497{left:458.880000pt;}
.x34_c01497{left:467.200000pt;}
.x4a_c01497{left:469.120000pt;}
.x23_c01497{left:476.160000pt;}
.x2b_c01497{left:478.080000pt;}
.x2f_c01497{left:485.760000pt;}
.x1b_c01497{left:487.040000pt;}
.xb_c01497{left:497.280000pt;}
.x16_c01497{left:506.240000pt;}
.xc_c01497{left:515.840000pt;}
.x35_c01497{left:526.080000pt;}
.x1e_c01497{left:535.040000pt;}
.xd_c01497{left:544.640000pt;}
.x30_c01497{left:554.240000pt;}
.x44_c01497{left:564.480000pt;}
.x1f_c01497{left:573.440000pt;}
.x38_c01497{left:583.040000pt;}
.x31_c01497{left:584.320000pt;}
.x2c_c01497{left:592.640000pt;}
.x1_c01497{left:609.920000pt;}
}





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

.ir_c01498:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01498{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01498;src:url('chunks/assets/font_dfc7bc64aba49f5140930382.woff2')format("woff");}.ff1_c01498{font-family:ff1_c01498;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m41_c01498{transform:matrix(0.246600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246600,0.000000,0.000000,0.250000,0,0);}
.m47_c01498{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);}
.m46_c01498{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01498{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01498{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01498{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m14_c01498{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01498{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);}
.m23_c01498{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);}
.m39_c01498{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m4_c01498{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m34_c01498{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m26_c01498{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);}
.m3d_c01498{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m29_c01498{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);}
.mc_c01498{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m40_c01498{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_c01498{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.mb_c01498{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01498{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);}
.m6_c01498{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);}
.m4c_c01498{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01498{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);}
.m1f_c01498{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m24_c01498{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);}
.m19_c01498{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);}
.m0_c01498{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01498{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m17_c01498{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);}
.m4d_c01498{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01498{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m20_c01498{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);}
.m31_c01498{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);}
.m3e_c01498{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m38_c01498{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m15_c01498{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m1_c01498{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m7_c01498{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m5_c01498{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);}
.m37_c01498{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.mf_c01498{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);}
.m25_c01498{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01498{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m12_c01498{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m35_c01498{transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);}
.m10_c01498{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01498{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m48_c01498{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m22_c01498{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);}
.m32_c01498{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m3_c01498{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m45_c01498{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.me_c01498{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01498{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);}
.ma_c01498{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);}
.m13_c01498{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m18_c01498{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);}
.m8_c01498{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m44_c01498{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m43_c01498{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m21_c01498{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);}
.m42_c01498{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01498{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);}
.m30_c01498{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);}
.m28_c01498{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);}
.m4a_c01498{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.md_c01498{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m36_c01498{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01498{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m2_c01498{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m9_c01498{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);}
.m3a_c01498{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);}
.m11_c01498{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01498{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m27_c01498{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);}
.m4b_c01498{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m16_c01498{transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);}
.m49_c01498{transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);}
.m33_c01498{transform:matrix(0.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680000,0.000000,0.000000,0.250000,0,0);}
.v0_c01498{vertical-align:0.000000px;}
.ls0_c01498{letter-spacing:0.000000px;}
.sc__c01498{text-shadow:none;}
.sc0_c01498{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01498{-webkit-text-stroke:0px transparent;}
.sc0_c01498{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01498{word-spacing:0.000000px;}
.ws0_c01498{word-spacing:4.731489px;}
.fc0_c01498{color:transparent;}
.fs2_c01498{font-size:34.560000px;}
.fs9_c01498{font-size:37.440000px;}
.fsb_c01498{font-size:40.320000px;}
.fsa_c01498{font-size:43.200000px;}
.fs8_c01498{font-size:46.080000px;}
.fs1_c01498{font-size:48.960000px;}
.fs3_c01498{font-size:51.840000px;}
.fs5_c01498{font-size:54.720000px;}
.fs6_c01498{font-size:57.600000px;}
.fs4_c01498{font-size:60.480000px;}
.fs7_c01498{font-size:63.360000px;}
.fsc_c01498{font-size:66.240000px;}
.fs0_c01498{font-size:69.120000px;}
.fsd_c01498{font-size:72.000000px;}
.y0_c01498{bottom:0.000000px;}
.y64_c01498{bottom:92.160000px;}
.y65_c01498{bottom:92.880000px;}
.y67_c01498{bottom:94.320000px;}
.y66_c01498{bottom:95.760000px;}
.y63_c01498{bottom:96.480000px;}
.y68_c01498{bottom:97.200000px;}
.y5f_c01498{bottom:135.360000px;}
.y5e_c01498{bottom:136.080000px;}
.y60_c01498{bottom:136.800000px;}
.y5d_c01498{bottom:138.960000px;}
.y62_c01498{bottom:139.680000px;}
.y61_c01498{bottom:140.400000px;}
.y59_c01498{bottom:179.280000px;}
.y5c_c01498{bottom:180.720000px;}
.y58_c01498{bottom:182.160000px;}
.y5b_c01498{bottom:182.880000px;}
.y5a_c01498{bottom:183.600000px;}
.y53_c01498{bottom:221.760000px;}
.y54_c01498{bottom:222.480000px;}
.y56_c01498{bottom:223.200000px;}
.y55_c01498{bottom:223.920000px;}
.y50_c01498{bottom:224.640000px;}
.y51_c01498{bottom:225.360000px;}
.y52_c01498{bottom:226.080000px;}
.y57_c01498{bottom:226.800000px;}
.y4e_c01498{bottom:265.680000px;}
.y4f_c01498{bottom:266.400000px;}
.y4b_c01498{bottom:268.560000px;}
.y4d_c01498{bottom:269.280000px;}
.y4c_c01498{bottom:270.000000px;}
.y45_c01498{bottom:308.160000px;}
.y47_c01498{bottom:309.600000px;}
.y4a_c01498{bottom:310.320000px;}
.y46_c01498{bottom:311.760000px;}
.y48_c01498{bottom:312.480000px;}
.y49_c01498{bottom:313.200000px;}
.y43_c01498{bottom:352.080000px;}
.y42_c01498{bottom:354.960000px;}
.y44_c01498{bottom:355.680000px;}
.y40_c01498{bottom:395.280000px;}
.y3f_c01498{bottom:397.440000px;}
.y3e_c01498{bottom:398.160000px;}
.y41_c01498{bottom:398.880000px;}
.y39_c01498{bottom:438.480000px;}
.y3c_c01498{bottom:439.200000px;}
.y3a_c01498{bottom:440.640000px;}
.y3b_c01498{bottom:441.360000px;}
.y3d_c01498{bottom:442.080000px;}
.y35_c01498{bottom:480.960000px;}
.y36_c01498{bottom:481.680000px;}
.y37_c01498{bottom:483.840000px;}
.y38_c01498{bottom:484.560000px;}
.y34_c01498{bottom:524.880000px;}
.y33_c01498{bottom:527.040000px;}
.y32_c01498{bottom:527.760000px;}
.y2f_c01498{bottom:577.440000px;}
.y30_c01498{bottom:578.160000px;}
.y31_c01498{bottom:578.880000px;}
.y2e_c01498{bottom:581.040000px;}
.y2b_c01498{bottom:620.640000px;}
.y2d_c01498{bottom:621.360000px;}
.y2c_c01498{bottom:623.520000px;}
.y2a_c01498{bottom:624.240000px;}
.y29_c01498{bottom:664.560000px;}
.y28_c01498{bottom:665.280000px;}
.y27_c01498{bottom:666.720000px;}
.y26_c01498{bottom:667.440000px;}
.y24_c01498{bottom:707.760000px;}
.y25_c01498{bottom:708.480000px;}
.y23_c01498{bottom:709.920000px;}
.y22_c01498{bottom:710.640000px;}
.y20_c01498{bottom:761.760000px;}
.y21_c01498{bottom:762.480000px;}
.y1f_c01498{bottom:763.200000px;}
.y1d_c01498{bottom:803.520000px;}
.y1b_c01498{bottom:804.240000px;}
.y1e_c01498{bottom:806.400000px;}
.y1c_c01498{bottom:807.120000px;}
.y1a_c01498{bottom:846.720000px;}
.y17_c01498{bottom:847.440000px;}
.y19_c01498{bottom:848.880000px;}
.y18_c01498{bottom:849.600000px;}
.y16_c01498{bottom:889.920000px;}
.y13_c01498{bottom:890.640000px;}
.y15_c01498{bottom:891.360000px;}
.y14_c01498{bottom:892.080000px;}
.y12_c01498{bottom:892.800000px;}
.y11_c01498{bottom:893.520000px;}
.ye_c01498{bottom:932.400000px;}
.y10_c01498{bottom:933.120000px;}
.yf_c01498{bottom:935.280000px;}
.yd_c01498{bottom:936.000000px;}
.yc_c01498{bottom:936.720000px;}
.y9_c01498{bottom:975.600000px;}
.ya_c01498{bottom:977.040000px;}
.yb_c01498{bottom:977.760000px;}
.y7_c01498{bottom:978.480000px;}
.y8_c01498{bottom:979.200000px;}
.y4_c01498{bottom:1017.360000px;}
.y6_c01498{bottom:1018.080000px;}
.y5_c01498{bottom:1020.240000px;}
.y3_c01498{bottom:1020.960000px;}
.y2_c01498{bottom:1021.680000px;}
.y1_c01498{bottom:1100.880000px;}
.h4_c01498{height:31.100625px;}
.hb_c01498{height:33.692344px;}
.hd_c01498{height:36.284062px;}
.hc_c01498{height:38.875781px;}
.ha_c01498{height:41.467500px;}
.h3_c01498{height:44.059219px;}
.h5_c01498{height:46.650937px;}
.h7_c01498{height:49.242656px;}
.h8_c01498{height:51.834375px;}
.h6_c01498{height:54.426094px;}
.h9_c01498{height:57.017812px;}
.he_c01498{height:59.609531px;}
.h2_c01498{height:62.201250px;}
.hf_c01498{height:64.792969px;}
.h0_c01498{height:1153.440000px;}
.h1_c01498{height:1153.500000px;}
.w1_c01498{width:750.000000px;}
.w0_c01498{width:750.240000px;}
.x0_c01498{left:0.000000px;}
.x9_c01498{left:28.080000px;}
.x1a_c01498{left:29.520000px;}
.x33_c01498{left:51.120000px;}
.x30_c01498{left:60.480000px;}
.x12_c01498{left:61.920000px;}
.xa_c01498{left:72.000000px;}
.x42_c01498{left:81.360000px;}
.x43_c01498{left:92.880000px;}
.x1b_c01498{left:95.040000px;}
.x3e_c01498{left:103.680000px;}
.x13_c01498{left:105.840000px;}
.x37_c01498{left:115.200000px;}
.x34_c01498{left:126.000000px;}
.x2_c01498{left:138.240000px;}
.x31_c01498{left:147.600000px;}
.xb_c01498{left:149.040000px;}
.x1c_c01498{left:159.120000px;}
.x2b_c01498{left:168.480000px;}
.x3b_c01498{left:169.920000px;}
.x26_c01498{left:180.000000px;}
.xc_c01498{left:181.440000px;}
.x3_c01498{left:192.240000px;}
.x1d_c01498{left:201.600000px;}
.x2a_c01498{left:212.400000px;}
.x14_c01498{left:225.360000px;}
.x4_c01498{left:234.720000px;}
.x1e_c01498{left:244.080000px;}
.x2c_c01498{left:256.320000px;}
.x38_c01498{left:267.120000px;}
.x5_c01498{left:277.200000px;}
.x3f_c01498{left:278.640000px;}
.x44_c01498{left:288.720000px;}
.x3c_c01498{left:298.800000px;}
.x49_c01498{left:300.240000px;}
.x35_c01498{left:310.320000px;}
.xd_c01498{left:320.400000px;}
.x15_c01498{left:331.200000px;}
.x4f_c01498{left:332.640000px;}
.x4d_c01498{left:342.000000px;}
.x2d_c01498{left:343.440000px;}
.x27_c01498{left:354.240000px;}
.x6_c01498{left:363.600000px;}
.x50_c01498{left:365.760000px;}
.x32_c01498{left:373.680000px;}
.x16_c01498{left:375.120000px;}
.x47_c01498{left:385.200000px;}
.x4a_c01498{left:386.640000px;}
.x22_c01498{left:396.720000px;}
.x36_c01498{left:406.800000px;}
.x4c_c01498{left:408.240000px;}
.x48_c01498{left:417.600000px;}
.x40_c01498{left:427.680000px;}
.x1f_c01498{left:429.120000px;}
.xe_c01498{left:439.920000px;}
.x2e_c01498{left:460.800000px;}
.x51_c01498{left:462.240000px;}
.xf_c01498{left:470.880000px;}
.x7_c01498{left:482.400000px;}
.x17_c01498{left:483.840000px;}
.x39_c01498{left:493.920000px;}
.x4b_c01498{left:495.360000px;}
.x10_c01498{left:504.720000px;}
.x3d_c01498{left:514.080000px;}
.x18_c01498{left:516.240000px;}
.x3a_c01498{left:527.040000px;}
.x28_c01498{left:537.840000px;}
.x23_c01498{left:547.200000px;}
.x45_c01498{left:548.640000px;}
.x41_c01498{left:558.720000px;}
.x24_c01498{left:569.520000px;}
.x11_c01498{left:580.320000px;}
.x46_c01498{left:591.120000px;}
.x4e_c01498{left:592.560000px;}
.x25_c01498{left:600.480000px;}
.x20_c01498{left:602.640000px;}
.x29_c01498{left:613.440000px;}
.x8_c01498{left:624.960000px;}
.x21_c01498{left:635.040000px;}
.x2f_c01498{left:645.840000px;}
.x19_c01498{left:657.360000px;}
.x1_c01498{left:666.720000px;}
@media print{
.v0_c01498{vertical-align:0.000000pt;}
.ls0_c01498{letter-spacing:0.000000pt;}
.ws1_c01498{word-spacing:0.000000pt;}
.ws0_c01498{word-spacing:4.205768pt;}
.fs2_c01498{font-size:30.720000pt;}
.fs9_c01498{font-size:33.280000pt;}
.fsb_c01498{font-size:35.840000pt;}
.fsa_c01498{font-size:38.400000pt;}
.fs8_c01498{font-size:40.960000pt;}
.fs1_c01498{font-size:43.520000pt;}
.fs3_c01498{font-size:46.080000pt;}
.fs5_c01498{font-size:48.640000pt;}
.fs6_c01498{font-size:51.200000pt;}
.fs4_c01498{font-size:53.760000pt;}
.fs7_c01498{font-size:56.320000pt;}
.fsc_c01498{font-size:58.880000pt;}
.fs0_c01498{font-size:61.440000pt;}
.fsd_c01498{font-size:64.000000pt;}
.y0_c01498{bottom:0.000000pt;}
.y64_c01498{bottom:81.920000pt;}
.y65_c01498{bottom:82.560000pt;}
.y67_c01498{bottom:83.840000pt;}
.y66_c01498{bottom:85.120000pt;}
.y63_c01498{bottom:85.760000pt;}
.y68_c01498{bottom:86.400000pt;}
.y5f_c01498{bottom:120.320000pt;}
.y5e_c01498{bottom:120.960000pt;}
.y60_c01498{bottom:121.600000pt;}
.y5d_c01498{bottom:123.520000pt;}
.y62_c01498{bottom:124.160000pt;}
.y61_c01498{bottom:124.800000pt;}
.y59_c01498{bottom:159.360000pt;}
.y5c_c01498{bottom:160.640000pt;}
.y58_c01498{bottom:161.920000pt;}
.y5b_c01498{bottom:162.560000pt;}
.y5a_c01498{bottom:163.200000pt;}
.y53_c01498{bottom:197.120000pt;}
.y54_c01498{bottom:197.760000pt;}
.y56_c01498{bottom:198.400000pt;}
.y55_c01498{bottom:199.040000pt;}
.y50_c01498{bottom:199.680000pt;}
.y51_c01498{bottom:200.320000pt;}
.y52_c01498{bottom:200.960000pt;}
.y57_c01498{bottom:201.600000pt;}
.y4e_c01498{bottom:236.160000pt;}
.y4f_c01498{bottom:236.800000pt;}
.y4b_c01498{bottom:238.720000pt;}
.y4d_c01498{bottom:239.360000pt;}
.y4c_c01498{bottom:240.000000pt;}
.y45_c01498{bottom:273.920000pt;}
.y47_c01498{bottom:275.200000pt;}
.y4a_c01498{bottom:275.840000pt;}
.y46_c01498{bottom:277.120000pt;}
.y48_c01498{bottom:277.760000pt;}
.y49_c01498{bottom:278.400000pt;}
.y43_c01498{bottom:312.960000pt;}
.y42_c01498{bottom:315.520000pt;}
.y44_c01498{bottom:316.160000pt;}
.y40_c01498{bottom:351.360000pt;}
.y3f_c01498{bottom:353.280000pt;}
.y3e_c01498{bottom:353.920000pt;}
.y41_c01498{bottom:354.560000pt;}
.y39_c01498{bottom:389.760000pt;}
.y3c_c01498{bottom:390.400000pt;}
.y3a_c01498{bottom:391.680000pt;}
.y3b_c01498{bottom:392.320000pt;}
.y3d_c01498{bottom:392.960000pt;}
.y35_c01498{bottom:427.520000pt;}
.y36_c01498{bottom:428.160000pt;}
.y37_c01498{bottom:430.080000pt;}
.y38_c01498{bottom:430.720000pt;}
.y34_c01498{bottom:466.560000pt;}
.y33_c01498{bottom:468.480000pt;}
.y32_c01498{bottom:469.120000pt;}
.y2f_c01498{bottom:513.280000pt;}
.y30_c01498{bottom:513.920000pt;}
.y31_c01498{bottom:514.560000pt;}
.y2e_c01498{bottom:516.480000pt;}
.y2b_c01498{bottom:551.680000pt;}
.y2d_c01498{bottom:552.320000pt;}
.y2c_c01498{bottom:554.240000pt;}
.y2a_c01498{bottom:554.880000pt;}
.y29_c01498{bottom:590.720000pt;}
.y28_c01498{bottom:591.360000pt;}
.y27_c01498{bottom:592.640000pt;}
.y26_c01498{bottom:593.280000pt;}
.y24_c01498{bottom:629.120000pt;}
.y25_c01498{bottom:629.760000pt;}
.y23_c01498{bottom:631.040000pt;}
.y22_c01498{bottom:631.680000pt;}
.y20_c01498{bottom:677.120000pt;}
.y21_c01498{bottom:677.760000pt;}
.y1f_c01498{bottom:678.400000pt;}
.y1d_c01498{bottom:714.240000pt;}
.y1b_c01498{bottom:714.880000pt;}
.y1e_c01498{bottom:716.800000pt;}
.y1c_c01498{bottom:717.440000pt;}
.y1a_c01498{bottom:752.640000pt;}
.y17_c01498{bottom:753.280000pt;}
.y19_c01498{bottom:754.560000pt;}
.y18_c01498{bottom:755.200000pt;}
.y16_c01498{bottom:791.040000pt;}
.y13_c01498{bottom:791.680000pt;}
.y15_c01498{bottom:792.320000pt;}
.y14_c01498{bottom:792.960000pt;}
.y12_c01498{bottom:793.600000pt;}
.y11_c01498{bottom:794.240000pt;}
.ye_c01498{bottom:828.800000pt;}
.y10_c01498{bottom:829.440000pt;}
.yf_c01498{bottom:831.360000pt;}
.yd_c01498{bottom:832.000000pt;}
.yc_c01498{bottom:832.640000pt;}
.y9_c01498{bottom:867.200000pt;}
.ya_c01498{bottom:868.480000pt;}
.yb_c01498{bottom:869.120000pt;}
.y7_c01498{bottom:869.760000pt;}
.y8_c01498{bottom:870.400000pt;}
.y4_c01498{bottom:904.320000pt;}
.y6_c01498{bottom:904.960000pt;}
.y5_c01498{bottom:906.880000pt;}
.y3_c01498{bottom:907.520000pt;}
.y2_c01498{bottom:908.160000pt;}
.y1_c01498{bottom:978.560000pt;}
.h4_c01498{height:27.645000pt;}
.hb_c01498{height:29.948750pt;}
.hd_c01498{height:32.252500pt;}
.hc_c01498{height:34.556250pt;}
.ha_c01498{height:36.860000pt;}
.h3_c01498{height:39.163750pt;}
.h5_c01498{height:41.467500pt;}
.h7_c01498{height:43.771250pt;}
.h8_c01498{height:46.075000pt;}
.h6_c01498{height:48.378750pt;}
.h9_c01498{height:50.682500pt;}
.he_c01498{height:52.986250pt;}
.h2_c01498{height:55.290000pt;}
.hf_c01498{height:57.593750pt;}
.h0_c01498{height:1025.280000pt;}
.h1_c01498{height:1025.333333pt;}
.w1_c01498{width:666.666667pt;}
.w0_c01498{width:666.880000pt;}
.x0_c01498{left:0.000000pt;}
.x9_c01498{left:24.960000pt;}
.x1a_c01498{left:26.240000pt;}
.x33_c01498{left:45.440000pt;}
.x30_c01498{left:53.760000pt;}
.x12_c01498{left:55.040000pt;}
.xa_c01498{left:64.000000pt;}
.x42_c01498{left:72.320000pt;}
.x43_c01498{left:82.560000pt;}
.x1b_c01498{left:84.480000pt;}
.x3e_c01498{left:92.160000pt;}
.x13_c01498{left:94.080000pt;}
.x37_c01498{left:102.400000pt;}
.x34_c01498{left:112.000000pt;}
.x2_c01498{left:122.880000pt;}
.x31_c01498{left:131.200000pt;}
.xb_c01498{left:132.480000pt;}
.x1c_c01498{left:141.440000pt;}
.x2b_c01498{left:149.760000pt;}
.x3b_c01498{left:151.040000pt;}
.x26_c01498{left:160.000000pt;}
.xc_c01498{left:161.280000pt;}
.x3_c01498{left:170.880000pt;}
.x1d_c01498{left:179.200000pt;}
.x2a_c01498{left:188.800000pt;}
.x14_c01498{left:200.320000pt;}
.x4_c01498{left:208.640000pt;}
.x1e_c01498{left:216.960000pt;}
.x2c_c01498{left:227.840000pt;}
.x38_c01498{left:237.440000pt;}
.x5_c01498{left:246.400000pt;}
.x3f_c01498{left:247.680000pt;}
.x44_c01498{left:256.640000pt;}
.x3c_c01498{left:265.600000pt;}
.x49_c01498{left:266.880000pt;}
.x35_c01498{left:275.840000pt;}
.xd_c01498{left:284.800000pt;}
.x15_c01498{left:294.400000pt;}
.x4f_c01498{left:295.680000pt;}
.x4d_c01498{left:304.000000pt;}
.x2d_c01498{left:305.280000pt;}
.x27_c01498{left:314.880000pt;}
.x6_c01498{left:323.200000pt;}
.x50_c01498{left:325.120000pt;}
.x32_c01498{left:332.160000pt;}
.x16_c01498{left:333.440000pt;}
.x47_c01498{left:342.400000pt;}
.x4a_c01498{left:343.680000pt;}
.x22_c01498{left:352.640000pt;}
.x36_c01498{left:361.600000pt;}
.x4c_c01498{left:362.880000pt;}
.x48_c01498{left:371.200000pt;}
.x40_c01498{left:380.160000pt;}
.x1f_c01498{left:381.440000pt;}
.xe_c01498{left:391.040000pt;}
.x2e_c01498{left:409.600000pt;}
.x51_c01498{left:410.880000pt;}
.xf_c01498{left:418.560000pt;}
.x7_c01498{left:428.800000pt;}
.x17_c01498{left:430.080000pt;}
.x39_c01498{left:439.040000pt;}
.x4b_c01498{left:440.320000pt;}
.x10_c01498{left:448.640000pt;}
.x3d_c01498{left:456.960000pt;}
.x18_c01498{left:458.880000pt;}
.x3a_c01498{left:468.480000pt;}
.x28_c01498{left:478.080000pt;}
.x23_c01498{left:486.400000pt;}
.x45_c01498{left:487.680000pt;}
.x41_c01498{left:496.640000pt;}
.x24_c01498{left:506.240000pt;}
.x11_c01498{left:515.840000pt;}
.x46_c01498{left:525.440000pt;}
.x4e_c01498{left:526.720000pt;}
.x25_c01498{left:533.760000pt;}
.x20_c01498{left:535.680000pt;}
.x29_c01498{left:545.280000pt;}
.x8_c01498{left:555.520000pt;}
.x21_c01498{left:564.480000pt;}
.x2f_c01498{left:574.080000pt;}
.x19_c01498{left:584.320000pt;}
.x1_c01498{left:592.640000pt;}
}





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

.ir_c01499:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01499{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01499;src:url('chunks/assets/font_429d24674b9873f551543ded.woff2')format("woff");}.ff1_c01499{font-family:ff1_c01499;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m58_c01499{transform:matrix(0.243850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243850,0.000000,0.000000,0.250000,0,0);}
.m0_c01499{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);}
.m5d_c01499{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m2_c01499{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);}
.m4d_c01499{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01499{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m5b_c01499{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m17_c01499{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m4a_c01499{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01499{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m40_c01499{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m54_c01499{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01499{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m24_c01499{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m3_c01499{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);}
.m2c_c01499{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);}
.m2a_c01499{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m9_c01499{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01499{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m46_c01499{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.md_c01499{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m5a_c01499{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);}
.m6_c01499{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);}
.m15_c01499{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m48_c01499{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1_c01499{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);}
.m5_c01499{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);}
.m41_c01499{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_c01499{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m29_c01499{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);}
.m37_c01499{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m26_c01499{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);}
.m55_c01499{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);}
.ma_c01499{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m35_c01499{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m28_c01499{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);}
.m3f_c01499{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01499{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);}
.m10_c01499{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.mc_c01499{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);}
.m52_c01499{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);}
.m3a_c01499{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.mb_c01499{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01499{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01499{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);}
.m2e_c01499{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m12_c01499{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m32_c01499{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);}
.m27_c01499{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m49_c01499{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01499{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01499{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.me_c01499{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m34_c01499{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);}
.m56_c01499{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m45_c01499{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m13_c01499{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);}
.m4f_c01499{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01499{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m8_c01499{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m18_c01499{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m57_c01499{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m14_c01499{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);}
.m33_c01499{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);}
.m1e_c01499{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m51_c01499{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m30_c01499{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);}
.m38_c01499{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m50_c01499{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m43_c01499{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m7_c01499{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);}
.m36_c01499{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m31_c01499{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m53_c01499{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);}
.m4c_c01499{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m4_c01499{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);}
.m25_c01499{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m19_c01499{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m21_c01499{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01499{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m44_c01499{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m20_c01499{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01499{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);}
.m2b_c01499{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);}
.m16_c01499{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01499{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);}
.m1b_c01499{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m39_c01499{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.m59_c01499{transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);}
.m42_c01499{transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);}
.m5c_c01499{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m47_c01499{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m23_c01499{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.mf_c01499{transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);}
.v2_c01499{vertical-align:-2.880000px;}
.v0_c01499{vertical-align:0.000000px;}
.v1_c01499{vertical-align:8.640000px;}
.v3_c01499{vertical-align:11.520000px;}
.ls0_c01499{letter-spacing:0.000000px;}
.sc__c01499{text-shadow:none;}
.sc0_c01499{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01499{-webkit-text-stroke:0px transparent;}
.sc0_c01499{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01499{word-spacing:-2.022720px;}
.ws2_c01499{word-spacing:-1.115760px;}
.ws3_c01499{word-spacing:0.000000px;}
.ws1_c01499{word-spacing:0.698160px;}
.fc0_c01499{color:transparent;}
.fs8_c01499{font-size:23.040000px;}
.fsb_c01499{font-size:34.560000px;}
.fs4_c01499{font-size:37.440000px;}
.fse_c01499{font-size:40.320000px;}
.fs5_c01499{font-size:46.080000px;}
.fs6_c01499{font-size:48.960000px;}
.fs1_c01499{font-size:51.840000px;}
.fsa_c01499{font-size:54.720000px;}
.fsd_c01499{font-size:57.600000px;}
.fs2_c01499{font-size:60.480000px;}
.fs3_c01499{font-size:63.360000px;}
.fs7_c01499{font-size:66.240000px;}
.fs9_c01499{font-size:69.120000px;}
.fsc_c01499{font-size:72.000000px;}
.fs0_c01499{font-size:77.760000px;}
.y0_c01499{bottom:0.000000px;}
.y5d_c01499{bottom:60.480000px;}
.y60_c01499{bottom:61.920000px;}
.y5e_c01499{bottom:63.360000px;}
.y5f_c01499{bottom:64.080000px;}
.y5a_c01499{bottom:104.400000px;}
.y5c_c01499{bottom:107.280000px;}
.y5b_c01499{bottom:108.000000px;}
.y57_c01499{bottom:147.600000px;}
.y56_c01499{bottom:148.320000px;}
.y58_c01499{bottom:149.040000px;}
.y59_c01499{bottom:150.480000px;}
.y55_c01499{bottom:151.200000px;}
.y54_c01499{bottom:190.800000px;}
.y53_c01499{bottom:193.680000px;}
.y52_c01499{bottom:194.400000px;}
.y51_c01499{bottom:234.000000px;}
.y4f_c01499{bottom:234.720000px;}
.y4e_c01499{bottom:236.160000px;}
.y50_c01499{bottom:236.880000px;}
.y4a_c01499{bottom:277.200000px;}
.y4d_c01499{bottom:277.920000px;}
.y4b_c01499{bottom:279.360000px;}
.y49_c01499{bottom:280.080000px;}
.y4c_c01499{bottom:280.800000px;}
.y48_c01499{bottom:332.640000px;}
.y47_c01499{bottom:333.360000px;}
.y46_c01499{bottom:334.080000px;}
.y44_c01499{bottom:373.680000px;}
.y45_c01499{bottom:374.400000px;}
.y42_c01499{bottom:375.120000px;}
.y43_c01499{bottom:377.280000px;}
.y3f_c01499{bottom:417.600000px;}
.y3e_c01499{bottom:419.760000px;}
.y40_c01499{bottom:420.480000px;}
.y41_c01499{bottom:421.200000px;}
.y3a_c01499{bottom:460.800000px;}
.y3c_c01499{bottom:462.240000px;}
.y39_c01499{bottom:462.960000px;}
.y3b_c01499{bottom:463.680000px;}
.y3d_c01499{bottom:464.400000px;}
.y38_c01499{bottom:502.560000px;}
.y36_c01499{bottom:503.280000px;}
.y35_c01499{bottom:504.000000px;}
.y34_c01499{bottom:506.160000px;}
.y37_c01499{bottom:506.880000px;}
.y33_c01499{bottom:546.480000px;}
.y32_c01499{bottom:548.640000px;}
.y31_c01499{bottom:549.360000px;}
.y30_c01499{bottom:550.080000px;}
.y2d_c01499{bottom:589.680000px;}
.y2f_c01499{bottom:591.840000px;}
.y2e_c01499{bottom:592.560000px;}
.y2b_c01499{bottom:632.160000px;}
.y2a_c01499{bottom:632.880000px;}
.y29_c01499{bottom:635.040000px;}
.y2c_c01499{bottom:635.760000px;}
.y27_c01499{bottom:675.360000px;}
.y26_c01499{bottom:676.080000px;}
.y25_c01499{bottom:678.240000px;}
.y28_c01499{bottom:678.960000px;}
.y23_c01499{bottom:719.280000px;}
.y24_c01499{bottom:720.000000px;}
.y21_c01499{bottom:721.440000px;}
.y22_c01499{bottom:722.160000px;}
.y1e_c01499{bottom:761.760000px;}
.y20_c01499{bottom:763.920000px;}
.y1f_c01499{bottom:764.640000px;}
.y18_c01499{bottom:804.240000px;}
.y1d_c01499{bottom:804.960000px;}
.y1b_c01499{bottom:805.680000px;}
.y1c_c01499{bottom:806.400000px;}
.y19_c01499{bottom:807.120000px;}
.y1a_c01499{bottom:807.840000px;}
.y16_c01499{bottom:846.720000px;}
.y13_c01499{bottom:847.440000px;}
.y15_c01499{bottom:849.600000px;}
.y17_c01499{bottom:850.320000px;}
.y14_c01499{bottom:851.040000px;}
.y11_c01499{bottom:889.200000px;}
.y10_c01499{bottom:892.800000px;}
.y12_c01499{bottom:893.520000px;}
.ye_c01499{bottom:933.120000px;}
.yd_c01499{bottom:933.840000px;}
.yc_c01499{bottom:934.560000px;}
.yb_c01499{bottom:936.000000px;}
.yf_c01499{bottom:936.720000px;}
.y8_c01499{bottom:975.600000px;}
.y7_c01499{bottom:976.320000px;}
.ya_c01499{bottom:977.760000px;}
.y9_c01499{bottom:978.480000px;}
.y6_c01499{bottom:979.200000px;}
.y5_c01499{bottom:1018.800000px;}
.y4_c01499{bottom:1019.520000px;}
.y2_c01499{bottom:1021.680000px;}
.y3_c01499{bottom:1022.400000px;}
.y1_c01499{bottom:1100.880000px;}
.ha_c01499{height:20.733750px;}
.hd_c01499{height:31.100625px;}
.h6_c01499{height:33.692344px;}
.h11_c01499{height:36.284062px;}
.h7_c01499{height:41.467500px;}
.h8_c01499{height:44.059219px;}
.h3_c01499{height:46.650937px;}
.hc_c01499{height:49.242656px;}
.hf_c01499{height:51.834375px;}
.h10_c01499{height:52.699219px;}
.h4_c01499{height:54.426094px;}
.h5_c01499{height:57.017812px;}
.h12_c01499{height:58.170937px;}
.h9_c01499{height:59.609531px;}
.hb_c01499{height:62.201250px;}
.he_c01499{height:64.792969px;}
.h2_c01499{height:69.976406px;}
.h0_c01499{height:1155.600000px;}
.h1_c01499{height:1155.750000px;}
.w0_c01499{width:764.640000px;}
.w1_c01499{width:765.000000px;}
.x0_c01499{left:0.000000px;}
.x2_c01499{left:47.520000px;}
.x15_c01499{left:48.960000px;}
.x37_c01499{left:79.920000px;}
.xd_c01499{left:91.440000px;}
.x38_c01499{left:101.520000px;}
.x3_c01499{left:112.320000px;}
.x28_c01499{left:123.840000px;}
.x39_c01499{left:133.920000px;}
.x1e_c01499{left:144.720000px;}
.x47_c01499{left:146.160000px;}
.x4_c01499{left:156.240000px;}
.x2c_c01499{left:166.320000px;}
.x23_c01499{left:167.760000px;}
.x30_c01499{left:177.120000px;}
.x16_c01499{left:188.640000px;}
.x24_c01499{left:199.440000px;}
.x3f_c01499{left:209.520000px;}
.xe_c01499{left:210.960000px;}
.x34_c01499{left:220.320000px;}
.x29_c01499{left:222.480000px;}
.x17_c01499{left:231.840000px;}
.x42_c01499{left:233.280000px;}
.x1f_c01499{left:242.640000px;}
.x35_c01499{left:253.440000px;}
.x54_c01499{left:254.880000px;}
.x3a_c01499{left:263.520000px;}
.x5_c01499{left:275.040000px;}
.x4e_c01499{left:276.480000px;}
.x43_c01499{left:287.280000px;}
.x48_c01499{left:296.640000px;}
.x3b_c01499{left:306.720000px;}
.x20_c01499{left:308.160000px;}
.x6_c01499{left:317.520000px;}
.x50_c01499{left:318.960000px;}
.x49_c01499{left:329.040000px;}
.x31_c01499{left:339.840000px;}
.x21_c01499{left:341.280000px;}
.xf_c01499{left:350.640000px;}
.x40_c01499{left:352.080000px;}
.x18_c01499{left:362.160000px;}
.x3c_c01499{left:372.240000px;}
.x2d_c01499{left:373.680000px;}
.x7_c01499{left:383.040000px;}
.x10_c01499{left:384.480000px;}
.x19_c01499{left:393.840000px;}
.x55_c01499{left:395.280000px;}
.x32_c01499{left:403.920000px;}
.x8_c01499{left:415.440000px;}
.x11_c01499{left:416.880000px;}
.x36_c01499{left:426.240000px;}
.x1a_c01499{left:427.680000px;}
.x4a_c01499{left:438.480000px;}
.x12_c01499{left:448.560000px;}
.x25_c01499{left:458.640000px;}
.x4f_c01499{left:460.800000px;}
.x2a_c01499{left:468.720000px;}
.x3d_c01499{left:470.160000px;}
.x4b_c01499{left:471.600000px;}
.x51_c01499{left:481.680000px;}
.x9_c01499{left:491.040000px;}
.x2e_c01499{left:501.840000px;}
.x4c_c01499{left:503.280000px;}
.xa_c01499{left:513.360000px;}
.x1b_c01499{left:523.440000px;}
.x44_c01499{left:524.880000px;}
.x26_c01499{left:534.240000px;}
.x13_c01499{left:535.680000px;}
.xb_c01499{left:546.480000px;}
.x46_c01499{left:555.840000px;}
.x52_c01499{left:557.280000px;}
.x2b_c01499{left:567.360000px;}
.x1c_c01499{left:578.160000px;}
.x4d_c01499{left:589.680000px;}
.x27_c01499{left:599.760000px;}
.x2f_c01499{left:611.280000px;}
.x3e_c01499{left:620.640000px;}
.xc_c01499{left:622.080000px;}
.x41_c01499{left:632.880000px;}
.x22_c01499{left:643.680000px;}
.x33_c01499{left:654.480000px;}
.x45_c01499{left:663.840000px;}
.x1d_c01499{left:665.280000px;}
.x53_c01499{left:666.720000px;}
.x14_c01499{left:676.800000px;}
.x1_c01499{left:684.000000px;}
@media print{
.v2_c01499{vertical-align:-2.560000pt;}
.v0_c01499{vertical-align:0.000000pt;}
.v1_c01499{vertical-align:7.680000pt;}
.v3_c01499{vertical-align:10.240000pt;}
.ls0_c01499{letter-spacing:0.000000pt;}
.ws0_c01499{word-spacing:-1.797973pt;}
.ws2_c01499{word-spacing:-0.991787pt;}
.ws3_c01499{word-spacing:0.000000pt;}
.ws1_c01499{word-spacing:0.620587pt;}
.fs8_c01499{font-size:20.480000pt;}
.fsb_c01499{font-size:30.720000pt;}
.fs4_c01499{font-size:33.280000pt;}
.fse_c01499{font-size:35.840000pt;}
.fs5_c01499{font-size:40.960000pt;}
.fs6_c01499{font-size:43.520000pt;}
.fs1_c01499{font-size:46.080000pt;}
.fsa_c01499{font-size:48.640000pt;}
.fsd_c01499{font-size:51.200000pt;}
.fs2_c01499{font-size:53.760000pt;}
.fs3_c01499{font-size:56.320000pt;}
.fs7_c01499{font-size:58.880000pt;}
.fs9_c01499{font-size:61.440000pt;}
.fsc_c01499{font-size:64.000000pt;}
.fs0_c01499{font-size:69.120000pt;}
.y0_c01499{bottom:0.000000pt;}
.y5d_c01499{bottom:53.760000pt;}
.y60_c01499{bottom:55.040000pt;}
.y5e_c01499{bottom:56.320000pt;}
.y5f_c01499{bottom:56.960000pt;}
.y5a_c01499{bottom:92.800000pt;}
.y5c_c01499{bottom:95.360000pt;}
.y5b_c01499{bottom:96.000000pt;}
.y57_c01499{bottom:131.200000pt;}
.y56_c01499{bottom:131.840000pt;}
.y58_c01499{bottom:132.480000pt;}
.y59_c01499{bottom:133.760000pt;}
.y55_c01499{bottom:134.400000pt;}
.y54_c01499{bottom:169.600000pt;}
.y53_c01499{bottom:172.160000pt;}
.y52_c01499{bottom:172.800000pt;}
.y51_c01499{bottom:208.000000pt;}
.y4f_c01499{bottom:208.640000pt;}
.y4e_c01499{bottom:209.920000pt;}
.y50_c01499{bottom:210.560000pt;}
.y4a_c01499{bottom:246.400000pt;}
.y4d_c01499{bottom:247.040000pt;}
.y4b_c01499{bottom:248.320000pt;}
.y49_c01499{bottom:248.960000pt;}
.y4c_c01499{bottom:249.600000pt;}
.y48_c01499{bottom:295.680000pt;}
.y47_c01499{bottom:296.320000pt;}
.y46_c01499{bottom:296.960000pt;}
.y44_c01499{bottom:332.160000pt;}
.y45_c01499{bottom:332.800000pt;}
.y42_c01499{bottom:333.440000pt;}
.y43_c01499{bottom:335.360000pt;}
.y3f_c01499{bottom:371.200000pt;}
.y3e_c01499{bottom:373.120000pt;}
.y40_c01499{bottom:373.760000pt;}
.y41_c01499{bottom:374.400000pt;}
.y3a_c01499{bottom:409.600000pt;}
.y3c_c01499{bottom:410.880000pt;}
.y39_c01499{bottom:411.520000pt;}
.y3b_c01499{bottom:412.160000pt;}
.y3d_c01499{bottom:412.800000pt;}
.y38_c01499{bottom:446.720000pt;}
.y36_c01499{bottom:447.360000pt;}
.y35_c01499{bottom:448.000000pt;}
.y34_c01499{bottom:449.920000pt;}
.y37_c01499{bottom:450.560000pt;}
.y33_c01499{bottom:485.760000pt;}
.y32_c01499{bottom:487.680000pt;}
.y31_c01499{bottom:488.320000pt;}
.y30_c01499{bottom:488.960000pt;}
.y2d_c01499{bottom:524.160000pt;}
.y2f_c01499{bottom:526.080000pt;}
.y2e_c01499{bottom:526.720000pt;}
.y2b_c01499{bottom:561.920000pt;}
.y2a_c01499{bottom:562.560000pt;}
.y29_c01499{bottom:564.480000pt;}
.y2c_c01499{bottom:565.120000pt;}
.y27_c01499{bottom:600.320000pt;}
.y26_c01499{bottom:600.960000pt;}
.y25_c01499{bottom:602.880000pt;}
.y28_c01499{bottom:603.520000pt;}
.y23_c01499{bottom:639.360000pt;}
.y24_c01499{bottom:640.000000pt;}
.y21_c01499{bottom:641.280000pt;}
.y22_c01499{bottom:641.920000pt;}
.y1e_c01499{bottom:677.120000pt;}
.y20_c01499{bottom:679.040000pt;}
.y1f_c01499{bottom:679.680000pt;}
.y18_c01499{bottom:714.880000pt;}
.y1d_c01499{bottom:715.520000pt;}
.y1b_c01499{bottom:716.160000pt;}
.y1c_c01499{bottom:716.800000pt;}
.y19_c01499{bottom:717.440000pt;}
.y1a_c01499{bottom:718.080000pt;}
.y16_c01499{bottom:752.640000pt;}
.y13_c01499{bottom:753.280000pt;}
.y15_c01499{bottom:755.200000pt;}
.y17_c01499{bottom:755.840000pt;}
.y14_c01499{bottom:756.480000pt;}
.y11_c01499{bottom:790.400000pt;}
.y10_c01499{bottom:793.600000pt;}
.y12_c01499{bottom:794.240000pt;}
.ye_c01499{bottom:829.440000pt;}
.yd_c01499{bottom:830.080000pt;}
.yc_c01499{bottom:830.720000pt;}
.yb_c01499{bottom:832.000000pt;}
.yf_c01499{bottom:832.640000pt;}
.y8_c01499{bottom:867.200000pt;}
.y7_c01499{bottom:867.840000pt;}
.ya_c01499{bottom:869.120000pt;}
.y9_c01499{bottom:869.760000pt;}
.y6_c01499{bottom:870.400000pt;}
.y5_c01499{bottom:905.600000pt;}
.y4_c01499{bottom:906.240000pt;}
.y2_c01499{bottom:908.160000pt;}
.y3_c01499{bottom:908.800000pt;}
.y1_c01499{bottom:978.560000pt;}
.ha_c01499{height:18.430000pt;}
.hd_c01499{height:27.645000pt;}
.h6_c01499{height:29.948750pt;}
.h11_c01499{height:32.252500pt;}
.h7_c01499{height:36.860000pt;}
.h8_c01499{height:39.163750pt;}
.h3_c01499{height:41.467500pt;}
.hc_c01499{height:43.771250pt;}
.hf_c01499{height:46.075000pt;}
.h10_c01499{height:46.843750pt;}
.h4_c01499{height:48.378750pt;}
.h5_c01499{height:50.682500pt;}
.h12_c01499{height:51.707500pt;}
.h9_c01499{height:52.986250pt;}
.hb_c01499{height:55.290000pt;}
.he_c01499{height:57.593750pt;}
.h2_c01499{height:62.201250pt;}
.h0_c01499{height:1027.200000pt;}
.h1_c01499{height:1027.333333pt;}
.w0_c01499{width:679.680000pt;}
.w1_c01499{width:680.000000pt;}
.x0_c01499{left:0.000000pt;}
.x2_c01499{left:42.240000pt;}
.x15_c01499{left:43.520000pt;}
.x37_c01499{left:71.040000pt;}
.xd_c01499{left:81.280000pt;}
.x38_c01499{left:90.240000pt;}
.x3_c01499{left:99.840000pt;}
.x28_c01499{left:110.080000pt;}
.x39_c01499{left:119.040000pt;}
.x1e_c01499{left:128.640000pt;}
.x47_c01499{left:129.920000pt;}
.x4_c01499{left:138.880000pt;}
.x2c_c01499{left:147.840000pt;}
.x23_c01499{left:149.120000pt;}
.x30_c01499{left:157.440000pt;}
.x16_c01499{left:167.680000pt;}
.x24_c01499{left:177.280000pt;}
.x3f_c01499{left:186.240000pt;}
.xe_c01499{left:187.520000pt;}
.x34_c01499{left:195.840000pt;}
.x29_c01499{left:197.760000pt;}
.x17_c01499{left:206.080000pt;}
.x42_c01499{left:207.360000pt;}
.x1f_c01499{left:215.680000pt;}
.x35_c01499{left:225.280000pt;}
.x54_c01499{left:226.560000pt;}
.x3a_c01499{left:234.240000pt;}
.x5_c01499{left:244.480000pt;}
.x4e_c01499{left:245.760000pt;}
.x43_c01499{left:255.360000pt;}
.x48_c01499{left:263.680000pt;}
.x3b_c01499{left:272.640000pt;}
.x20_c01499{left:273.920000pt;}
.x6_c01499{left:282.240000pt;}
.x50_c01499{left:283.520000pt;}
.x49_c01499{left:292.480000pt;}
.x31_c01499{left:302.080000pt;}
.x21_c01499{left:303.360000pt;}
.xf_c01499{left:311.680000pt;}
.x40_c01499{left:312.960000pt;}
.x18_c01499{left:321.920000pt;}
.x3c_c01499{left:330.880000pt;}
.x2d_c01499{left:332.160000pt;}
.x7_c01499{left:340.480000pt;}
.x10_c01499{left:341.760000pt;}
.x19_c01499{left:350.080000pt;}
.x55_c01499{left:351.360000pt;}
.x32_c01499{left:359.040000pt;}
.x8_c01499{left:369.280000pt;}
.x11_c01499{left:370.560000pt;}
.x36_c01499{left:378.880000pt;}
.x1a_c01499{left:380.160000pt;}
.x4a_c01499{left:389.760000pt;}
.x12_c01499{left:398.720000pt;}
.x25_c01499{left:407.680000pt;}
.x4f_c01499{left:409.600000pt;}
.x2a_c01499{left:416.640000pt;}
.x3d_c01499{left:417.920000pt;}
.x4b_c01499{left:419.200000pt;}
.x51_c01499{left:428.160000pt;}
.x9_c01499{left:436.480000pt;}
.x2e_c01499{left:446.080000pt;}
.x4c_c01499{left:447.360000pt;}
.xa_c01499{left:456.320000pt;}
.x1b_c01499{left:465.280000pt;}
.x44_c01499{left:466.560000pt;}
.x26_c01499{left:474.880000pt;}
.x13_c01499{left:476.160000pt;}
.xb_c01499{left:485.760000pt;}
.x46_c01499{left:494.080000pt;}
.x52_c01499{left:495.360000pt;}
.x2b_c01499{left:504.320000pt;}
.x1c_c01499{left:513.920000pt;}
.x4d_c01499{left:524.160000pt;}
.x27_c01499{left:533.120000pt;}
.x2f_c01499{left:543.360000pt;}
.x3e_c01499{left:551.680000pt;}
.xc_c01499{left:552.960000pt;}
.x41_c01499{left:562.560000pt;}
.x22_c01499{left:572.160000pt;}
.x33_c01499{left:581.760000pt;}
.x45_c01499{left:590.080000pt;}
.x1d_c01499{left:591.360000pt;}
.x53_c01499{left:592.640000pt;}
.x14_c01499{left:601.600000pt;}
.x1_c01499{left:608.000000pt;}
}





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

.ir_c00002:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00002{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00002;src:url('chunks/assets/font_f7968bc4bb1fb496162839fd.woff2')format("woff");}.ff1_c00002{font-family:ff1_c00002;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m18f_c00002{transform:matrix(0.032125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032125,0.000000,0.000000,0.250000,0,0);}
.mdb_c00002{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);}
.mcf_c00002{transform:matrix(0.086550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086550,0.000000,0.000000,0.250000,0,0);}
.m10f_c00002{transform:matrix(0.089225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089225,0.000000,0.000000,0.250000,0,0);}
.m128_c00002{transform:matrix(0.095175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095175,0.000000,0.000000,0.250000,0,0);}
.mce_c00002{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m14e_c00002{transform:matrix(0.161275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161275,0.000000,0.000000,0.250000,0,0);}
.m1c4_c00002{transform:matrix(0.163575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163575,0.000000,0.000000,0.250000,0,0);}
.m1d2_c00002{transform:matrix(0.166275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166275,0.000000,0.000000,0.250000,0,0);}
.m106_c00002{transform:matrix(0.167475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167475,0.000000,0.000000,0.250000,0,0);}
.m1ce_c00002{transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);}
.m1a8_c00002{transform:matrix(0.172475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172475,0.000000,0.000000,0.250000,0,0);}
.mac_c00002{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.md0_c00002{transform:matrix(0.174050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174050,0.000000,0.000000,0.250000,0,0);}
.mcc_c00002{transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);}
.m159_c00002{transform:matrix(0.174300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174300,0.000000,0.000000,0.250000,0,0);}
.m18e_c00002{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);}
.mcb_c00002{transform:matrix(0.178950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178950,0.000000,0.000000,0.250000,0,0);}
.mdd_c00002{transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);}
.m187_c00002{transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);}
.m14f_c00002{transform:matrix(0.180350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180350,0.000000,0.000000,0.250000,0,0);}
.m1c7_c00002{transform:matrix(0.181050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181050,0.000000,0.000000,0.250000,0,0);}
.mdf_c00002{transform:matrix(0.185625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185625,0.000000,0.000000,0.250000,0,0);}
.m193_c00002{transform:matrix(0.187350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187350,0.000000,0.000000,0.250000,0,0);}
.m1bc_c00002{transform:matrix(0.190650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190650,0.000000,0.000000,0.250000,0,0);}
.m14a_c00002{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m100_c00002{transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);}
.me9_c00002{transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);}
.m19f_c00002{transform:matrix(0.195200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195200,0.000000,0.000000,0.250000,0,0);}
.mf6_c00002{transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);}
.mf9_c00002{transform:matrix(0.198375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198375,0.000000,0.000000,0.250000,0,0);}
.m1b2_c00002{transform:matrix(0.199200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199200,0.000000,0.000000,0.250000,0,0);}
.m142_c00002{transform:matrix(0.200775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200775,0.000000,0.000000,0.250000,0,0);}
.m148_c00002{transform:matrix(0.200875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200875,0.000000,0.000000,0.250000,0,0);}
.m17c_c00002{transform:matrix(0.201100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201100,0.000000,0.000000,0.250000,0,0);}
.m17b_c00002{transform:matrix(0.202050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202050,0.000000,0.000000,0.250000,0,0);}
.m167_c00002{transform:matrix(0.202375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202375,0.000000,0.000000,0.250000,0,0);}
.m192_c00002{transform:matrix(0.202700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202700,0.000000,0.000000,0.250000,0,0);}
.m164_c00002{transform:matrix(0.204175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204175,0.000000,0.000000,0.250000,0,0);}
.m1d3_c00002{transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);}
.m15b_c00002{transform:matrix(0.204875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204875,0.000000,0.000000,0.250000,0,0);}
.m174_c00002{transform:matrix(0.205800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205800,0.000000,0.000000,0.250000,0,0);}
.m1b0_c00002{transform:matrix(0.206075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206075,0.000000,0.000000,0.250000,0,0);}
.me4_c00002{transform:matrix(0.207800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207800,0.000000,0.000000,0.250000,0,0);}
.m1a6_c00002{transform:matrix(0.208125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208125,0.000000,0.000000,0.250000,0,0);}
.m127_c00002{transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);}
.m181_c00002{transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);}
.m1be_c00002{transform:matrix(0.208950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208950,0.000000,0.000000,0.250000,0,0);}
.m149_c00002{transform:matrix(0.209200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209200,0.000000,0.000000,0.250000,0,0);}
.m171_c00002{transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);}
.m1b6_c00002{transform:matrix(0.210475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210475,0.000000,0.000000,0.250000,0,0);}
.mf7_c00002{transform:matrix(0.210775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210775,0.000000,0.000000,0.250000,0,0);}
.m170_c00002{transform:matrix(0.211400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211400,0.000000,0.000000,0.250000,0,0);}
.m113_c00002{transform:matrix(0.212100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212100,0.000000,0.000000,0.250000,0,0);}
.m1b7_c00002{transform:matrix(0.212150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212150,0.000000,0.000000,0.250000,0,0);}
.m1c5_c00002{transform:matrix(0.212300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212300,0.000000,0.000000,0.250000,0,0);}
.md4_c00002{transform:matrix(0.213550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213550,0.000000,0.000000,0.250000,0,0);}
.m1ba_c00002{transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);}
.m1aa_c00002{transform:matrix(0.214225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214225,0.000000,0.000000,0.250000,0,0);}
.m1c9_c00002{transform:matrix(0.214425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214425,0.000000,0.000000,0.250000,0,0);}
.m115_c00002{transform:matrix(0.214900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214900,0.000000,0.000000,0.250000,0,0);}
.m15f_c00002{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m17e_c00002{transform:matrix(0.215575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215575,0.000000,0.000000,0.250000,0,0);}
.m15e_c00002{transform:matrix(0.217350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217350,0.000000,0.000000,0.250000,0,0);}
.m1b3_c00002{transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);}
.m11e_c00002{transform:matrix(0.217975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217975,0.000000,0.000000,0.250000,0,0);}
.m1b4_c00002{transform:matrix(0.218100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218100,0.000000,0.000000,0.250000,0,0);}
.m1c0_c00002{transform:matrix(0.218275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218275,0.000000,0.000000,0.250000,0,0);}
.m17f_c00002{transform:matrix(0.218725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218725,0.000000,0.000000,0.250000,0,0);}
.m118_c00002{transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);}
.m195_c00002{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.md8_c00002{transform:matrix(0.220175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220175,0.000000,0.000000,0.250000,0,0);}
.m199_c00002{transform:matrix(0.220475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220475,0.000000,0.000000,0.250000,0,0);}
.med_c00002{transform:matrix(0.220675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220675,0.000000,0.000000,0.250000,0,0);}
.m11f_c00002{transform:matrix(0.221400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221400,0.000000,0.000000,0.250000,0,0);}
.m175_c00002{transform:matrix(0.221600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221600,0.000000,0.000000,0.250000,0,0);}
.mf8_c00002{transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);}
.m17d_c00002{transform:matrix(0.222375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222375,0.000000,0.000000,0.250000,0,0);}
.m135_c00002{transform:matrix(0.223225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223225,0.000000,0.000000,0.250000,0,0);}
.md7_c00002{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m1a0_c00002{transform:matrix(0.223600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223600,0.000000,0.000000,0.250000,0,0);}
.md9_c00002{transform:matrix(0.224075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224075,0.000000,0.000000,0.250000,0,0);}
.m16b_c00002{transform:matrix(0.224425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224425,0.000000,0.000000,0.250000,0,0);}
.mc9_c00002{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.ma4_c00002{transform:matrix(0.225100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225100,0.000000,0.000000,0.250000,0,0);}
.mc8_c00002{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);}
.m18d_c00002{transform:matrix(0.225375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225375,0.000000,0.000000,0.250000,0,0);}
.m140_c00002{transform:matrix(0.225400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225400,0.000000,0.000000,0.250000,0,0);}
.m13b_c00002{transform:matrix(0.225875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225875,0.000000,0.000000,0.250000,0,0);}
.m16c_c00002{transform:matrix(0.226275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226275,0.000000,0.000000,0.250000,0,0);}
.m1b9_c00002{transform:matrix(0.226475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226475,0.000000,0.000000,0.250000,0,0);}
.m1cd_c00002{transform:matrix(0.226675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226675,0.000000,0.000000,0.250000,0,0);}
.m130_c00002{transform:matrix(0.227400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227400,0.000000,0.000000,0.250000,0,0);}
.m14c_c00002{transform:matrix(0.227425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227425,0.000000,0.000000,0.250000,0,0);}
.m12c_c00002{transform:matrix(0.227450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227450,0.000000,0.000000,0.250000,0,0);}
.m172_c00002{transform:matrix(0.227575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227575,0.000000,0.000000,0.250000,0,0);}
.m1ad_c00002{transform:matrix(0.227775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227775,0.000000,0.000000,0.250000,0,0);}
.m16f_c00002{transform:matrix(0.227850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227850,0.000000,0.000000,0.250000,0,0);}
.m114_c00002{transform:matrix(0.228800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228800,0.000000,0.000000,0.250000,0,0);}
.m108_c00002{transform:matrix(0.229125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229125,0.000000,0.000000,0.250000,0,0);}
.m10c_c00002{transform:matrix(0.229225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229225,0.000000,0.000000,0.250000,0,0);}
.m151_c00002{transform:matrix(0.229425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229425,0.000000,0.000000,0.250000,0,0);}
.m1cc_c00002{transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);}
.m76_c00002{transform:matrix(0.229625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229625,0.000000,0.000000,0.250000,0,0);}
.md1_c00002{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);}
.mef_c00002{transform:matrix(0.230175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230175,0.000000,0.000000,0.250000,0,0);}
.m156_c00002{transform:matrix(0.230300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230300,0.000000,0.000000,0.250000,0,0);}
.m117_c00002{transform:matrix(0.230450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230450,0.000000,0.000000,0.250000,0,0);}
.m177_c00002{transform:matrix(0.230900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230900,0.000000,0.000000,0.250000,0,0);}
.m1c8_c00002{transform:matrix(0.230950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230950,0.000000,0.000000,0.250000,0,0);}
.m144_c00002{transform:matrix(0.230975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230975,0.000000,0.000000,0.250000,0,0);}
.m19d_c00002{transform:matrix(0.231150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231150,0.000000,0.000000,0.250000,0,0);}
.m146_c00002{transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);}
.ma5_c00002{transform:matrix(0.231525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231525,0.000000,0.000000,0.250000,0,0);}
.m116_c00002{transform:matrix(0.231825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231825,0.000000,0.000000,0.250000,0,0);}
.m125_c00002{transform:matrix(0.232400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232400,0.000000,0.000000,0.250000,0,0);}
.m180_c00002{transform:matrix(0.232450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232450,0.000000,0.000000,0.250000,0,0);}
.mda_c00002{transform:matrix(0.232575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232575,0.000000,0.000000,0.250000,0,0);}
.m1ac_c00002{transform:matrix(0.232775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232775,0.000000,0.000000,0.250000,0,0);}
.m13a_c00002{transform:matrix(0.232950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232950,0.000000,0.000000,0.250000,0,0);}
.m1b5_c00002{transform:matrix(0.233225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233225,0.000000,0.000000,0.250000,0,0);}
.m198_c00002{transform:matrix(0.233325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233325,0.000000,0.000000,0.250000,0,0);}
.mcd_c00002{transform:matrix(0.233875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233875,0.000000,0.000000,0.250000,0,0);}
.m138_c00002{transform:matrix(0.234575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234575,0.000000,0.000000,0.250000,0,0);}
.m137_c00002{transform:matrix(0.234675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234675,0.000000,0.000000,0.250000,0,0);}
.mb1_c00002{transform:matrix(0.234725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234725,0.000000,0.000000,0.250000,0,0);}
.m158_c00002{transform:matrix(0.235175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235175,0.000000,0.000000,0.250000,0,0);}
.me2_c00002{transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);}
.m1b1_c00002{transform:matrix(0.235375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235375,0.000000,0.000000,0.250000,0,0);}
.mb2_c00002{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m134_c00002{transform:matrix(0.236150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236150,0.000000,0.000000,0.250000,0,0);}
.m1d0_c00002{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m1d4_c00002{transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);}
.m14b_c00002{transform:matrix(0.237325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237325,0.000000,0.000000,0.250000,0,0);}
.m14d_c00002{transform:matrix(0.237400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237400,0.000000,0.000000,0.250000,0,0);}
.m18a_c00002{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);}
.m1bb_c00002{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m131_c00002{transform:matrix(0.237975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237975,0.000000,0.000000,0.250000,0,0);}
.mb0_c00002{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m16a_c00002{transform:matrix(0.238300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238300,0.000000,0.000000,0.250000,0,0);}
.m13d_c00002{transform:matrix(0.238700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238700,0.000000,0.000000,0.250000,0,0);}
.m12b_c00002{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m194_c00002{transform:matrix(0.239100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239100,0.000000,0.000000,0.250000,0,0);}
.m1c6_c00002{transform:matrix(0.239125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239125,0.000000,0.000000,0.250000,0,0);}
.mb6_c00002{transform:matrix(0.239175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239175,0.000000,0.000000,0.250000,0,0);}
.mb5_c00002{transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);}
.m119_c00002{transform:matrix(0.239350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239350,0.000000,0.000000,0.250000,0,0);}
.m173_c00002{transform:matrix(0.239550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239550,0.000000,0.000000,0.250000,0,0);}
.m139_c00002{transform:matrix(0.239775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239775,0.000000,0.000000,0.250000,0,0);}
.m120_c00002{transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);}
.me8_c00002{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m197_c00002{transform:matrix(0.240250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00002{transform:matrix(0.240450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240450,0.000000,0.000000,0.250000,0,0);}
.m19a_c00002{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);}
.m16e_c00002{transform:matrix(0.241075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241075,0.000000,0.000000,0.250000,0,0);}
.mba_c00002{transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);}
.m168_c00002{transform:matrix(0.241200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241200,0.000000,0.000000,0.250000,0,0);}
.m196_c00002{transform:matrix(0.241225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241225,0.000000,0.000000,0.250000,0,0);}
.m157_c00002{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m109_c00002{transform:matrix(0.241275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241275,0.000000,0.000000,0.250000,0,0);}
.m15c_c00002{transform:matrix(0.241325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241325,0.000000,0.000000,0.250000,0,0);}
.m166_c00002{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);}
.m153_c00002{transform:matrix(0.241550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241550,0.000000,0.000000,0.250000,0,0);}
.m17a_c00002{transform:matrix(0.241575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241575,0.000000,0.000000,0.250000,0,0);}
.m155_c00002{transform:matrix(0.241725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241725,0.000000,0.000000,0.250000,0,0);}
.m163_c00002{transform:matrix(0.241825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241825,0.000000,0.000000,0.250000,0,0);}
.m10a_c00002{transform:matrix(0.241850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241850,0.000000,0.000000,0.250000,0,0);}
.m179_c00002{transform:matrix(0.242300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242300,0.000000,0.000000,0.250000,0,0);}
.m10e_c00002{transform:matrix(0.242450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242450,0.000000,0.000000,0.250000,0,0);}
.m1ab_c00002{transform:matrix(0.242875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242875,0.000000,0.000000,0.250000,0,0);}
.m1c2_c00002{transform:matrix(0.243200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243200,0.000000,0.000000,0.250000,0,0);}
.mde_c00002{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m152_c00002{transform:matrix(0.243600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243600,0.000000,0.000000,0.250000,0,0);}
.m1a7_c00002{transform:matrix(0.243725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243725,0.000000,0.000000,0.250000,0,0);}
.m10d_c00002{transform:matrix(0.244050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244050,0.000000,0.000000,0.250000,0,0);}
.m12d_c00002{transform:matrix(0.244075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244075,0.000000,0.000000,0.250000,0,0);}
.mab_c00002{transform:matrix(0.244175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244175,0.000000,0.000000,0.250000,0,0);}
.m107_c00002{transform:matrix(0.244425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244425,0.000000,0.000000,0.250000,0,0);}
.m1ca_c00002{transform:matrix(0.244475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244475,0.000000,0.000000,0.250000,0,0);}
.m165_c00002{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m1b8_c00002{transform:matrix(0.244800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244800,0.000000,0.000000,0.250000,0,0);}
.mbb_c00002{transform:matrix(0.244850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244850,0.000000,0.000000,0.250000,0,0);}
.m123_c00002{transform:matrix(0.244950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244950,0.000000,0.000000,0.250000,0,0);}
.m188_c00002{transform:matrix(0.245025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245025,0.000000,0.000000,0.250000,0,0);}
.m1a4_c00002{transform:matrix(0.245275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245275,0.000000,0.000000,0.250000,0,0);}
.ma7_c00002{transform:matrix(0.245325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245325,0.000000,0.000000,0.250000,0,0);}
.m12e_c00002{transform:matrix(0.245725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245725,0.000000,0.000000,0.250000,0,0);}
.m147_c00002{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00002{transform:matrix(0.245825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245825,0.000000,0.000000,0.250000,0,0);}
.m19e_c00002{transform:matrix(0.246200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246200,0.000000,0.000000,0.250000,0,0);}
.m1c1_c00002{transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);}
.m145_c00002{transform:matrix(0.246450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246450,0.000000,0.000000,0.250000,0,0);}
.m13c_c00002{transform:matrix(0.246550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246550,0.000000,0.000000,0.250000,0,0);}
.m18c_c00002{transform:matrix(0.246825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246825,0.000000,0.000000,0.250000,0,0);}
.m186_c00002{transform:matrix(0.246850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246850,0.000000,0.000000,0.250000,0,0);}
.mb7_c00002{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m11d_c00002{transform:matrix(0.247325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247325,0.000000,0.000000,0.250000,0,0);}
.m1a3_c00002{transform:matrix(0.247400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247400,0.000000,0.000000,0.250000,0,0);}
.m1a5_c00002{transform:matrix(0.247425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247425,0.000000,0.000000,0.250000,0,0);}
.m11a_c00002{transform:matrix(0.247700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247700,0.000000,0.000000,0.250000,0,0);}
.m13f_c00002{transform:matrix(0.247825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247825,0.000000,0.000000,0.250000,0,0);}
.m1bd_c00002{transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);}
.m191_c00002{transform:matrix(0.248225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248225,0.000000,0.000000,0.250000,0,0);}
.m16d_c00002{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00002{transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);}
.m12a_c00002{transform:matrix(0.248575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248575,0.000000,0.000000,0.250000,0,0);}
.m161_c00002{transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);}
.m184_c00002{transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);}
.m154_c00002{transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);}
.m1c3_c00002{transform:matrix(0.249200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249200,0.000000,0.000000,0.250000,0,0);}
.m104_c00002{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m10b_c00002{transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);}
.m1a1_c00002{transform:matrix(0.249550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249550,0.000000,0.000000,0.250000,0,0);}
.m105_c00002{transform:matrix(0.249700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249700,0.000000,0.000000,0.250000,0,0);}
.m183_c00002{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m190_c00002{transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);}
.m126_c00002{transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);}
.meb_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);}
.maa_c00002{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);}
.ma8_c00002{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);}
.m9f_c00002{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);}
.mae_c00002{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);}
.m8e_c00002{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);}
.m8f_c00002{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);}
.m70_c00002{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);}
.m9d_c00002{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);}
.m8c_c00002{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00002{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);}
.m84_c00002{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);}
.m53_c00002{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m67_c00002{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);}
.m87_c00002{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);}
.m74_c00002{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);}
.m45_c00002{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);}
.m91_c00002{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m86_c00002{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m77_c00002{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00002{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m72_c00002{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00002{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m73_c00002{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m82_c00002{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m51_c00002{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m57_c00002{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00002{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m4_c00002{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m46_c00002{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m21_c00002{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m62_c00002{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m31_c00002{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);}
.m36_c00002{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m61_c00002{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00002{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);}
.m4b_c00002{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.mc_c00002{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m23_c00002{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);}
.m4d_c00002{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m3_c00002{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);}
.m3a_c00002{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m35_c00002{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);}
.m30_c00002{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m10_c00002{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);}
.m59_c00002{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);}
.m33_c00002{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.ma_c00002{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.mf_c00002{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);}
.m5e_c00002{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);}
.m2_c00002{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);}
.m0_c00002{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m28_c00002{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);}
.m1e_c00002{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m71_c00002{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m6_c00002{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);}
.m4a_c00002{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);}
.m39_c00002{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m1_c00002{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m32_c00002{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m26_c00002{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);}
.m2e_c00002{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m50_c00002{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);}
.m41_c00002{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m60_c00002{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);}
.mb_c00002{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);}
.m42_c00002{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00002{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m22_c00002{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m18_c00002{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m34_c00002{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);}
.m25_c00002{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00002{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m40_c00002{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);}
.m14_c00002{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00002{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);}
.m2c_c00002{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m43_c00002{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m16_c00002{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m8_c00002{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m58_c00002{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);}
.m27_c00002{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m56_c00002{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00002{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00002{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);}
.m5c_c00002{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00002{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m5_c00002{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m44_c00002{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m47_c00002{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m13_c00002{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);}
.m19_c00002{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);}
.m3b_c00002{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m12_c00002{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00002{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00002{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);}
.m38_c00002{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m17_c00002{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m54_c00002{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m69_c00002{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m24_c00002{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);}
.m2b_c00002{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00002{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m65_c00002{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m29_c00002{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m55_c00002{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);}
.m2d_c00002{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m52_c00002{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00002{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);}
.m98_c00002{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.md_c00002{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);}
.m88_c00002{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m81_c00002{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m7_c00002{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m20_c00002{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m48_c00002{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00002{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m37_c00002{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m49_c00002{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m11_c00002{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m64_c00002{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);}
.me_c00002{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);}
.m78_c00002{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m63_c00002{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00002{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00002{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);}
.m5b_c00002{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m15_c00002{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00002{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m75_c00002{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00002{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);}
.m5d_c00002{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m93_c00002{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00002{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00002{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m95_c00002{transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);}
.m79_c00002{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.m68_c00002{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m92_c00002{transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);}
.m96_c00002{transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00002{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00002{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m89_c00002{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00002{transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00002{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);}
.ma1_c00002{transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);}
.m97_c00002{transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00002{transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00002{transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00002{transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00002{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);}
.m85_c00002{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.m83_c00002{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.me5_c00002{transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00002{transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00002{transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00002{transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00002{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00002{transform:matrix(0.647500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.647500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.647500,0.000000,0.000000,0.250000,0,0);}
.m162_c00002{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00002{transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);}
.mee_c00002{transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);}
.m9_c00002{transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);}
.m160_c00002{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);}
.m185_c00002{transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);}
.mff_c00002{transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00002{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);}
.mbe_c00002{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.md5_c00002{transform:matrix(0.687500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687500,0.000000,0.000000,0.250000,0,0);}
.m99_c00002{transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00002{transform:matrix(0.700000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.700000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.700000,0.000000,0.000000,0.250000,0,0);}
.me1_c00002{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.me0_c00002{transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00002{transform:matrix(0.712500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.712500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.712500,0.000000,0.000000,0.250000,0,0);}
.mad_c00002{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.maf_c00002{transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);}
.m94_c00002{transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00002{transform:matrix(0.735000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735000,0.000000,0.000000,0.250000,0,0);}
.m103_c00002{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);}
.md2_c00002{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.m1bf_c00002{transform:matrix(0.747500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.747500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.747500,0.000000,0.000000,0.250000,0,0);}
.m90_c00002{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);}
.mec_c00002{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00002{transform:matrix(0.757500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.757500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.757500,0.000000,0.000000,0.250000,0,0);}
.m133_c00002{transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);}
.m1d1_c00002{transform:matrix(0.762500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.762500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.762500,0.000000,0.000000,0.250000,0,0);}
.md3_c00002{transform:matrix(0.775000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.775000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.775000,0.000000,0.000000,0.250000,0,0);}
.m19c_c00002{transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00002{transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);}
.me6_c00002{transform:matrix(0.787500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.787500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.787500,0.000000,0.000000,0.250000,0,0);}
.m102_c00002{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m1cf_c00002{transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00002{transform:matrix(0.800000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.800000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.800000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00002{transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);}
.m136_c00002{transform:matrix(0.810000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.810000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.810000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00002{transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00002{transform:matrix(0.817500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.817500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.817500,0.000000,0.000000,0.250000,0,0);}
.m15a_c00002{transform:matrix(0.827500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.827500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.827500,0.000000,0.000000,0.250000,0,0);}
.m121_c00002{transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);}
.me3_c00002{transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);}
.m1a9_c00002{transform:matrix(0.842500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.842500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.842500,0.000000,0.000000,0.250000,0,0);}
.mea_c00002{transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00002{transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);}
.m1ae_c00002{transform:matrix(0.860000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.860000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.860000,0.000000,0.000000,0.250000,0,0);}
.m15d_c00002{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);}
.mfa_c00002{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00002{transform:matrix(0.872500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.872500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.872500,0.000000,0.000000,0.250000,0,0);}
.m18b_c00002{transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);}
.m122_c00002{transform:matrix(0.877500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.877500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.877500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00002{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);}
.me7_c00002{transform:matrix(0.912500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.912500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.912500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00002{transform:matrix(0.932500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.932500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.932500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00002{transform:matrix(0.935000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.935000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.935000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00002{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);}
.m182_c00002{transform:matrix(0.950000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.950000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.950000,0.000000,0.000000,0.250000,0,0);}
.md6_c00002{transform:matrix(0.960000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.960000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.960000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00002{transform:matrix(0.967500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.967500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.967500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00002{transform:matrix(0.972500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.972500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.972500,0.000000,0.000000,0.250000,0,0);}
.m1af_c00002{transform:matrix(0.977500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.977500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.977500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00002{transform:matrix(0.982500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.982500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.982500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00002{transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00002{transform:matrix(1.025000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.025000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.025000,0.000000,0.000000,0.250000,0,0);}
.m13e_c00002{transform:matrix(1.027500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.027500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.027500,0.000000,0.000000,0.250000,0,0);}
.m1cb_c00002{transform:matrix(1.037500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.037500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.037500,0.000000,0.000000,0.250000,0,0);}
.m189_c00002{transform:matrix(1.052500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.052500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.052500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00002{transform:matrix(1.065000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.065000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.065000,0.000000,0.000000,0.250000,0,0);}
.m129_c00002{transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);}
.m178_c00002{transform:matrix(1.077500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.077500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.077500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00002{transform:matrix(1.115000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.115000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.115000,0.000000,0.000000,0.250000,0,0);}
.m176_c00002{transform:matrix(1.122500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.122500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.122500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00002{transform:matrix(1.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.137500,0.000000,0.000000,0.250000,0,0);}
.m101_c00002{transform:matrix(1.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.167500,0.000000,0.000000,0.250000,0,0);}
.mca_c00002{transform:matrix(1.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.185000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00002{transform:matrix(1.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.207500,0.000000,0.000000,0.250000,0,0);}
.m12f_c00002{transform:matrix(1.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.220000,0.000000,0.000000,0.250000,0,0);}
.m169_c00002{transform:matrix(1.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.312500,0.000000,0.000000,0.250000,0,0);}
.m1a2_c00002{transform:matrix(1.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.365000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00002{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.m143_c00002{transform:matrix(1.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.502500,0.000000,0.000000,0.250000,0,0);}
.m19b_c00002{transform:matrix(1.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.505000,0.000000,0.000000,0.250000,0,0);}
.m66_c00002{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.m80_c00002{transform:matrix(1.597500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.597500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.597500,0.000000,0.000000,0.250000,0,0);}
.m132_c00002{transform:matrix(1.610000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.610000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.610000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00002{transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);}
.m150_c00002{transform:matrix(1.690000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.690000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.690000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00002{transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);}
.m124_c00002{transform:matrix(1.920000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.920000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.920000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00002{transform:matrix(2.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.040000,0.000000,0.000000,0.250000,0,0);}
.m141_c00002{transform:matrix(3.997500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.997500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.997500,0.000000,0.000000,0.250000,0,0);}
.m112_c00002{transform:matrix(5.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.060000,0.000000,0.000000,0.250000,0,0);}
.m110_c00002{transform:matrix(6.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(6.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(6.480000,0.000000,0.000000,0.250000,0,0);}
.m111_c00002{transform:matrix(8.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(8.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(8.625000,0.000000,0.000000,0.250000,0,0);}
.va_c00002{vertical-align:-17.280000px;}
.vc_c00002{vertical-align:-14.400000px;}
.v6_c00002{vertical-align:-11.520000px;}
.v4_c00002{vertical-align:-8.640000px;}
.v8_c00002{vertical-align:-5.760000px;}
.v5_c00002{vertical-align:-2.880000px;}
.v0_c00002{vertical-align:0.000000px;}
.v7_c00002{vertical-align:2.880000px;}
.v3_c00002{vertical-align:5.760000px;}
.v2_c00002{vertical-align:8.640000px;}
.v1_c00002{vertical-align:11.520000px;}
.v9_c00002{vertical-align:14.400000px;}
.vb_c00002{vertical-align:17.280000px;}
.ls0_c00002{letter-spacing:0.000000px;}
.ls5_c00002{letter-spacing:21.600000px;}
.ls2_c00002{letter-spacing:24.606000px;}
.ls3_c00002{letter-spacing:26.334000px;}
.ls9_c00002{letter-spacing:27.606720px;}
.ls7_c00002{letter-spacing:39.392640px;}
.lsc_c00002{letter-spacing:45.516000px;}
.lsa_c00002{letter-spacing:86.011200px;}
.ls6_c00002{letter-spacing:86.808960px;}
.ls4_c00002{letter-spacing:127.976400px;}
.ls1_c00002{letter-spacing:181.770720px;}
.lsb_c00002{letter-spacing:210.810960px;}
.ls8_c00002{letter-spacing:351.606720px;}
.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;}
}
.ws4e_c00002{word-spacing:-33.580800px;}
.ws39_c00002{word-spacing:-10.119600px;}
.ws34_c00002{word-spacing:-9.865200px;}
.ws63_c00002{word-spacing:-9.658080px;}
.ws44_c00002{word-spacing:-9.523920px;}
.ws4b_c00002{word-spacing:-9.393840px;}
.ws3f_c00002{word-spacing:-8.181120px;}
.ws55_c00002{word-spacing:-7.658640px;}
.ws14_c00002{word-spacing:-7.548480px;}
.wse_c00002{word-spacing:-7.168800px;}
.ws46_c00002{word-spacing:-7.147200px;}
.ws1b_c00002{word-spacing:-7.126800px;}
.ws4d_c00002{word-spacing:-6.816000px;}
.ws20_c00002{word-spacing:-6.578640px;}
.ws29_c00002{word-spacing:-6.564707px;}
.ws9_c00002{word-spacing:-5.607740px;}
.ws52_c00002{word-spacing:-5.578800px;}
.ws43_c00002{word-spacing:-5.399040px;}
.ws0_c00002{word-spacing:-5.260320px;}
.wsd_c00002{word-spacing:-5.086800px;}
.ws11_c00002{word-spacing:-4.896240px;}
.ws25_c00002{word-spacing:-4.828560px;}
.ws51_c00002{word-spacing:-4.806240px;}
.ws33_c00002{word-spacing:-4.733520px;}
.ws42_c00002{word-spacing:-4.285302px;}
.ws40_c00002{word-spacing:-4.238400px;}
.ws3_c00002{word-spacing:-4.230714px;}
.ws12_c00002{word-spacing:-3.779040px;}
.ws49_c00002{word-spacing:-3.411840px;}
.ws45_c00002{word-spacing:-3.147600px;}
.ws65_c00002{word-spacing:-3.142800px;}
.ws2b_c00002{word-spacing:-3.093840px;}
.ws58_c00002{word-spacing:-3.028800px;}
.ws4_c00002{word-spacing:-3.016320px;}
.ws2d_c00002{word-spacing:-2.990160px;}
.ws59_c00002{word-spacing:-2.972160px;}
.ws41_c00002{word-spacing:-2.927040px;}
.ws32_c00002{word-spacing:-2.618400px;}
.ws19_c00002{word-spacing:-2.155680px;}
.ws1e_c00002{word-spacing:-2.150640px;}
.wsc_c00002{word-spacing:-2.114400px;}
.ws54_c00002{word-spacing:-1.913760px;}
.ws38_c00002{word-spacing:-1.565280px;}
.wsf_c00002{word-spacing:-1.428480px;}
.ws36_c00002{word-spacing:-1.150800px;}
.ws4f_c00002{word-spacing:-1.012560px;}
.ws3a_c00002{word-spacing:-0.979050px;}
.ws1d_c00002{word-spacing:-0.903840px;}
.ws7_c00002{word-spacing:-0.841680px;}
.ws57_c00002{word-spacing:-0.635280px;}
.ws27_c00002{word-spacing:-0.532560px;}
.ws10_c00002{word-spacing:-0.472800px;}
.ws22_c00002{word-spacing:-0.109920px;}
.ws1_c00002{word-spacing:0.000000px;}
.ws8_c00002{word-spacing:0.223920px;}
.ws56_c00002{word-spacing:0.262800px;}
.ws37_c00002{word-spacing:0.300741px;}
.ws5f_c00002{word-spacing:0.474240px;}
.ws18_c00002{word-spacing:0.517200px;}
.ws64_c00002{word-spacing:0.576000px;}
.ws3e_c00002{word-spacing:0.871200px;}
.ws3b_c00002{word-spacing:0.884640px;}
.ws3d_c00002{word-spacing:1.156800px;}
.ws2e_c00002{word-spacing:1.206732px;}
.ws21_c00002{word-spacing:1.277040px;}
.wsa_c00002{word-spacing:1.287600px;}
.ws24_c00002{word-spacing:1.600800px;}
.ws2c_c00002{word-spacing:1.692000px;}
.ws2_c00002{word-spacing:2.023680px;}
.ws31_c00002{word-spacing:2.419440px;}
.ws35_c00002{word-spacing:2.645292px;}
.ws3c_c00002{word-spacing:3.376676px;}
.ws4a_c00002{word-spacing:3.460800px;}
.ws61_c00002{word-spacing:3.579840px;}
.ws16_c00002{word-spacing:3.836880px;}
.ws30_c00002{word-spacing:3.987840px;}
.ws66_c00002{word-spacing:4.212720px;}
.ws26_c00002{word-spacing:4.344480px;}
.ws28_c00002{word-spacing:4.582800px;}
.ws23_c00002{word-spacing:4.705200px;}
.ws67_c00002{word-spacing:4.823280px;}
.ws17_c00002{word-spacing:4.934400px;}
.ws2f_c00002{word-spacing:4.963920px;}
.ws48_c00002{word-spacing:5.125680px;}
.ws50_c00002{word-spacing:5.300640px;}
.ws53_c00002{word-spacing:5.345280px;}
.wsb_c00002{word-spacing:5.470320px;}
.ws1c_c00002{word-spacing:5.485200px;}
.ws47_c00002{word-spacing:5.869440px;}
.ws1f_c00002{word-spacing:5.928240px;}
.ws5d_c00002{word-spacing:6.209760px;}
.ws4c_c00002{word-spacing:6.276000px;}
.ws6_c00002{word-spacing:6.526800px;}
.ws5e_c00002{word-spacing:6.578640px;}
.ws2a_c00002{word-spacing:6.788863px;}
.ws15_c00002{word-spacing:7.642800px;}
.ws5c_c00002{word-spacing:7.644240px;}
.ws5b_c00002{word-spacing:7.711680px;}
.ws62_c00002{word-spacing:8.538000px;}
.ws1a_c00002{word-spacing:9.442080px;}
.ws5_c00002{word-spacing:9.927360px;}
.ws13_c00002{word-spacing:10.267200px;}
.ws60_c00002{word-spacing:12.273600px;}
.ws5a_c00002{word-spacing:13.669200px;}
.ws68_c00002{word-spacing:15.462240px;}
._0_c00002{width:2.059200px;}
.fc0_c00002{color:transparent;}
.fs1c_c00002{font-size:2.880000px;}
.fs24_c00002{font-size:5.760000px;}
.fs21_c00002{font-size:8.640000px;}
.fs15_c00002{font-size:11.520000px;}
.fs14_c00002{font-size:14.400000px;}
.fse_c00002{font-size:17.280000px;}
.fs12_c00002{font-size:20.160000px;}
.fs16_c00002{font-size:23.040000px;}
.fs13_c00002{font-size:25.920000px;}
.fs1b_c00002{font-size:28.800000px;}
.fs19_c00002{font-size:31.680000px;}
.fs5_c00002{font-size:34.560000px;}
.fs6_c00002{font-size:37.440000px;}
.fsd_c00002{font-size:40.320000px;}
.fs10_c00002{font-size:43.200000px;}
.fs4_c00002{font-size:46.080000px;}
.fs2_c00002{font-size:48.960000px;}
.fs1_c00002{font-size:51.840000px;}
.fsb_c00002{font-size:54.720000px;}
.fs8_c00002{font-size:57.600000px;}
.fs7_c00002{font-size:60.480000px;}
.fs9_c00002{font-size:63.360000px;}
.fs3_c00002{font-size:66.240000px;}
.fsa_c00002{font-size:69.120000px;}
.fs0_c00002{font-size:72.000000px;}
.fsf_c00002{font-size:74.880000px;}
.fsc_c00002{font-size:77.760000px;}
.fs11_c00002{font-size:80.640000px;}
.fs1f_c00002{font-size:83.520000px;}
.fs20_c00002{font-size:86.400000px;}
.fs1e_c00002{font-size:89.280000px;}
.fs23_c00002{font-size:92.160000px;}
.fs1a_c00002{font-size:95.040000px;}
.fs18_c00002{font-size:100.800000px;}
.fs17_c00002{font-size:103.680000px;}
.fs1d_c00002{font-size:112.320000px;}
.fs25_c00002{font-size:120.960000px;}
.fs22_c00002{font-size:204.480000px;}
.y0_c00002{bottom:0.000000px;}
.y555_c00002{bottom:6.480000px;}
.y556_c00002{bottom:7.200000px;}
.y557_c00002{bottom:7.920000px;}
.y558_c00002{bottom:9.360000px;}
.y503_c00002{bottom:12.960000px;}
.y504_c00002{bottom:16.560000px;}
.y545_c00002{bottom:21.600000px;}
.y544_c00002{bottom:24.480000px;}
.y546_c00002{bottom:25.920000px;}
.y4f1_c00002{bottom:27.360000px;}
.y4f2_c00002{bottom:28.080000px;}
.y3e6_c00002{bottom:28.800000px;}
.y4f3_c00002{bottom:29.520000px;}
.y3e8_c00002{bottom:30.960000px;}
.y3e7_c00002{bottom:32.400000px;}
.y41e_c00002{bottom:33.120000px;}
.y3e9_c00002{bottom:33.840000px;}
.y3eb_c00002{bottom:34.560000px;}
.y3ea_c00002{bottom:35.280000px;}
.y327_c00002{bottom:36.000000px;}
.y233_c00002{bottom:36.720000px;}
.y235_c00002{bottom:37.440000px;}
.y3b6_c00002{bottom:38.160000px;}
.y231_c00002{bottom:38.880000px;}
.y232_c00002{bottom:39.600000px;}
.y234_c00002{bottom:40.320000px;}
.y2f4_c00002{bottom:41.040000px;}
.y2f6_c00002{bottom:41.760000px;}
.y2f5_c00002{bottom:42.480000px;}
.y208_c00002{bottom:43.200000px;}
.y429_c00002{bottom:43.920000px;}
.y20b_c00002{bottom:44.640000px;}
.y2c1_c00002{bottom:45.360000px;}
.y209_c00002{bottom:46.080000px;}
.y207_c00002{bottom:46.800000px;}
.y20a_c00002{bottom:47.520000px;}
.yab_c00002{bottom:48.240000px;}
.y5e_c00002{bottom:48.960000px;}
.y5f_c00002{bottom:49.680000px;}
.y60_c00002{bottom:50.400000px;}
.y18a_c00002{bottom:51.120000px;}
.yac_c00002{bottom:51.840000px;}
.y5c_c00002{bottom:52.560000px;}
.y5d_c00002{bottom:53.280000px;}
.y5b_c00002{bottom:54.000000px;}
.y14c_c00002{bottom:54.720000px;}
.y270_c00002{bottom:55.440000px;}
.y14e_c00002{bottom:56.160000px;}
.y354_c00002{bottom:56.880000px;}
.y14b_c00002{bottom:57.600000px;}
.y14d_c00002{bottom:58.320000px;}
.y14a_c00002{bottom:59.040000px;}
.y14f_c00002{bottom:59.760000px;}
.y353_c00002{bottom:60.480000px;}
.y52b_c00002{bottom:61.200000px;}
.y465_c00002{bottom:61.920000px;}
.y461_c00002{bottom:62.640000px;}
.y462_c00002{bottom:63.360000px;}
.y464_c00002{bottom:64.080000px;}
.y463_c00002{bottom:64.800000px;}
.y4a5_c00002{bottom:65.520000px;}
.y4a6_c00002{bottom:66.240000px;}
.y403_c00002{bottom:67.680000px;}
.y405_c00002{bottom:68.400000px;}
.y401_c00002{bottom:69.120000px;}
.y402_c00002{bottom:69.840000px;}
.y404_c00002{bottom:70.560000px;}
.y3a3_c00002{bottom:71.280000px;}
.y4ef_c00002{bottom:72.000000px;}
.y3a7_c00002{bottom:72.720000px;}
.y3a6_c00002{bottom:73.440000px;}
.y3a2_c00002{bottom:74.160000px;}
.y4f0_c00002{bottom:74.880000px;}
.y3a4_c00002{bottom:75.600000px;}
.y3a5_c00002{bottom:76.320000px;}
.y3e5_c00002{bottom:77.040000px;}
.y41d_c00002{bottom:77.760000px;}
.y22f_c00002{bottom:78.480000px;}
.y230_c00002{bottom:79.200000px;}
.y326_c00002{bottom:79.920000px;}
.ye0_c00002{bottom:80.640000px;}
.ydd_c00002{bottom:81.360000px;}
.ydc_c00002{bottom:82.080000px;}
.yde_c00002{bottom:82.800000px;}
.ydf_c00002{bottom:83.520000px;}
.y2f2_c00002{bottom:84.240000px;}
.y2f3_c00002{bottom:84.960000px;}
.y1d7_c00002{bottom:85.680000px;}
.y428_c00002{bottom:86.400000px;}
.y1d8_c00002{bottom:87.120000px;}
.y1da_c00002{bottom:87.840000px;}
.y1d9_c00002{bottom:88.560000px;}
.ya6_c00002{bottom:89.280000px;}
.y1d6_c00002{bottom:90.000000px;}
.yaa_c00002{bottom:90.720000px;}
.ya8_c00002{bottom:91.440000px;}
.ya7_c00002{bottom:92.160000px;}
.y59_c00002{bottom:92.880000px;}
.y333_c00002{bottom:93.600000px;}
.y189_c00002{bottom:94.320000px;}
.y58_c00002{bottom:95.040000px;}
.y57_c00002{bottom:95.760000px;}
.y5a_c00002{bottom:96.480000px;}
.ya9_c00002{bottom:97.200000px;}
.y26d_c00002{bottom:97.920000px;}
.y149_c00002{bottom:98.640000px;}
.y26e_c00002{bottom:99.360000px;}
.y26f_c00002{bottom:100.080000px;}
.y147_c00002{bottom:100.800000px;}
.y148_c00002{bottom:101.520000px;}
.y146_c00002{bottom:102.240000px;}
.y352_c00002{bottom:102.960000px;}
.y351_c00002{bottom:103.680000px;}
.y45f_c00002{bottom:104.400000px;}
.y53a_c00002{bottom:105.120000px;}
.y45c_c00002{bottom:105.840000px;}
.y52a_c00002{bottom:106.560000px;}
.y45d_c00002{bottom:107.280000px;}
.y45e_c00002{bottom:108.000000px;}
.y460_c00002{bottom:108.720000px;}
.y501_c00002{bottom:109.440000px;}
.y502_c00002{bottom:110.160000px;}
.y3fd_c00002{bottom:110.880000px;}
.y400_c00002{bottom:111.600000px;}
.y3ff_c00002{bottom:112.320000px;}
.y3fc_c00002{bottom:113.040000px;}
.y39f_c00002{bottom:113.760000px;}
.y3fe_c00002{bottom:114.480000px;}
.y4ee_c00002{bottom:115.200000px;}
.y4f6_c00002{bottom:115.920000px;}
.y39e_c00002{bottom:116.640000px;}
.y4d3_c00002{bottom:117.360000px;}
.y3a0_c00002{bottom:118.080000px;}
.y3a1_c00002{bottom:118.800000px;}
.y54c_c00002{bottom:119.520000px;}
.y41c_c00002{bottom:120.240000px;}
.y41b_c00002{bottom:120.960000px;}
.y22e_c00002{bottom:121.680000px;}
.yd9_c00002{bottom:122.400000px;}
.y325_c00002{bottom:123.120000px;}
.ydb_c00002{bottom:123.840000px;}
.yd8_c00002{bottom:124.560000px;}
.yd7_c00002{bottom:125.280000px;}
.y2f1_c00002{bottom:126.000000px;}
.yda_c00002{bottom:126.720000px;}
.y29a_c00002{bottom:127.440000px;}
.y29b_c00002{bottom:128.160000px;}
.y29c_c00002{bottom:128.880000px;}
.y299_c00002{bottom:129.600000px;}
.y1d4_c00002{bottom:130.320000px;}
.y1d3_c00002{bottom:131.040000px;}
.y2c0_c00002{bottom:131.760000px;}
.y1d2_c00002{bottom:132.480000px;}
.ya4_c00002{bottom:133.200000px;}
.y1d5_c00002{bottom:133.920000px;}
.y2bf_c00002{bottom:134.640000px;}
.y53_c00002{bottom:135.360000px;}
.y56_c00002{bottom:136.080000px;}
.y54_c00002{bottom:136.800000px;}
.ya5_c00002{bottom:137.520000px;}
.y52_c00002{bottom:138.240000px;}
.y55_c00002{bottom:138.960000px;}
.y51_c00002{bottom:139.680000px;}
.y476_c00002{bottom:140.400000px;}
.y142_c00002{bottom:141.120000px;}
.y143_c00002{bottom:141.840000px;}
.y144_c00002{bottom:142.560000px;}
.y350_c00002{bottom:143.280000px;}
.y141_c00002{bottom:144.000000px;}
.y30d_c00002{bottom:144.720000px;}
.y145_c00002{bottom:145.440000px;}
.y4b1_c00002{bottom:146.160000px;}
.y34f_c00002{bottom:146.880000px;}
.y459_c00002{bottom:147.600000px;}
.y575_c00002{bottom:148.320000px;}
.y457_c00002{bottom:149.040000px;}
.y458_c00002{bottom:149.760000px;}
.y45a_c00002{bottom:150.480000px;}
.y45b_c00002{bottom:151.200000px;}
.y4a3_c00002{bottom:151.920000px;}
.y576_c00002{bottom:152.640000px;}
.y4a1_c00002{bottom:153.360000px;}
.y4a2_c00002{bottom:154.080000px;}
.y4a4_c00002{bottom:154.800000px;}
.y500_c00002{bottom:155.520000px;}
.y4ea_c00002{bottom:156.240000px;}
.y39d_c00002{bottom:156.960000px;}
.y4ec_c00002{bottom:157.680000px;}
.y4ed_c00002{bottom:158.400000px;}
.y4eb_c00002{bottom:159.120000px;}
.y539_c00002{bottom:159.840000px;}
.y39c_c00002{bottom:160.560000px;}
.y54a_c00002{bottom:161.280000px;}
.y54b_c00002{bottom:162.000000px;}
.y41a_c00002{bottom:162.720000px;}
.y4d2_c00002{bottom:163.440000px;}
.y3fb_c00002{bottom:164.160000px;}
.y22d_c00002{bottom:164.880000px;}
.yd3_c00002{bottom:165.600000px;}
.yd4_c00002{bottom:166.320000px;}
.y22c_c00002{bottom:167.040000px;}
.yd1_c00002{bottom:167.760000px;}
.yd2_c00002{bottom:168.480000px;}
.yd6_c00002{bottom:169.200000px;}
.yd5_c00002{bottom:169.920000px;}
.y298_c00002{bottom:170.640000px;}
.y297_c00002{bottom:171.360000px;}
.y295_c00002{bottom:172.080000px;}
.y296_c00002{bottom:172.800000px;}
.y1cf_c00002{bottom:173.520000px;}
.y1d0_c00002{bottom:174.240000px;}
.y1d1_c00002{bottom:174.960000px;}
.y1ce_c00002{bottom:175.680000px;}
.ya0_c00002{bottom:176.400000px;}
.ya1_c00002{bottom:177.120000px;}
.ya2_c00002{bottom:177.840000px;}
.y4f_c00002{bottom:178.560000px;}
.y4d_c00002{bottom:179.280000px;}
.y50_c00002{bottom:180.000000px;}
.ya3_c00002{bottom:180.720000px;}
.y4c_c00002{bottom:181.440000px;}
.y4b_c00002{bottom:182.160000px;}
.y4e_c00002{bottom:182.880000px;}
.y205_c00002{bottom:183.600000px;}
.y30c_c00002{bottom:184.320000px;}
.y13c_c00002{bottom:185.040000px;}
.y13f_c00002{bottom:185.760000px;}
.y206_c00002{bottom:186.480000px;}
.y13d_c00002{bottom:187.200000px;}
.y13e_c00002{bottom:187.920000px;}
.y140_c00002{bottom:188.640000px;}
.y34e_c00002{bottom:189.360000px;}
.y188_c00002{bottom:190.080000px;}
.y456_c00002{bottom:190.800000px;}
.y3e2_c00002{bottom:191.520000px;}
.y3e1_c00002{bottom:192.240000px;}
.y3e3_c00002{bottom:192.960000px;}
.y3e0_c00002{bottom:193.680000px;}
.y26c_c00002{bottom:194.400000px;}
.y26b_c00002{bottom:195.120000px;}
.y3e4_c00002{bottom:195.840000px;}
.y49f_c00002{bottom:196.560000px;}
.y49e_c00002{bottom:197.280000px;}
.y4a0_c00002{bottom:198.000000px;}
.y4ff_c00002{bottom:198.720000px;}
.y57a_c00002{bottom:199.440000px;}
.y4fe_c00002{bottom:200.160000px;}
.y39b_c00002{bottom:200.880000px;}
.y57b_c00002{bottom:201.600000px;}
.y538_c00002{bottom:202.320000px;}
.y399_c00002{bottom:203.040000px;}
.y529_c00002{bottom:203.760000px;}
.y39a_c00002{bottom:204.480000px;}
.y535_c00002{bottom:205.200000px;}
.y536_c00002{bottom:205.920000px;}
.y537_c00002{bottom:206.640000px;}
.y3f9_c00002{bottom:207.360000px;}
.y22a_c00002{bottom:208.080000px;}
.y22b_c00002{bottom:208.800000px;}
.y3fa_c00002{bottom:209.520000px;}
.ycd_c00002{bottom:210.240000px;}
.y229_c00002{bottom:210.960000px;}
.ycf_c00002{bottom:211.680000px;}
.yce_c00002{bottom:212.400000px;}
.yd0_c00002{bottom:213.120000px;}
.y3df_c00002{bottom:213.840000px;}
.y293_c00002{bottom:214.560000px;}
.y292_c00002{bottom:215.280000px;}
.y294_c00002{bottom:216.000000px;}
.y1cc_c00002{bottom:216.720000px;}
.y1cd_c00002{bottom:217.440000px;}
.y1cb_c00002{bottom:218.160000px;}
.y9c_c00002{bottom:218.880000px;}
.y9d_c00002{bottom:219.600000px;}
.y2ef_c00002{bottom:220.320000px;}
.y2f0_c00002{bottom:221.040000px;}
.y335_c00002{bottom:221.760000px;}
.y4a_c00002{bottom:222.480000px;}
.y9e_c00002{bottom:223.200000px;}
.y9f_c00002{bottom:223.920000px;}
.y49_c00002{bottom:224.640000px;}
.y48_c00002{bottom:225.360000px;}
.y3c1_c00002{bottom:226.080000px;}
.y3c0_c00002{bottom:226.800000px;}
.y137_c00002{bottom:227.520000px;}
.y138_c00002{bottom:228.240000px;}
.y13b_c00002{bottom:228.960000px;}
.y136_c00002{bottom:229.680000px;}
.y135_c00002{bottom:230.400000px;}
.y139_c00002{bottom:231.120000px;}
.y13a_c00002{bottom:231.840000px;}
.y183_c00002{bottom:232.560000px;}
.y34d_c00002{bottom:233.280000px;}
.y184_c00002{bottom:234.000000px;}
.y185_c00002{bottom:234.720000px;}
.y186_c00002{bottom:235.440000px;}
.y187_c00002{bottom:236.160000px;}
.y26a_c00002{bottom:236.880000px;}
.y267_c00002{bottom:237.600000px;}
.y268_c00002{bottom:238.320000px;}
.y269_c00002{bottom:239.040000px;}
.y49b_c00002{bottom:239.760000px;}
.y49c_c00002{bottom:240.480000px;}
.y49d_c00002{bottom:241.200000px;}
.y549_c00002{bottom:241.920000px;}
.y524_c00002{bottom:242.640000px;}
.y398_c00002{bottom:243.360000px;}
.y528_c00002{bottom:244.080000px;}
.y526_c00002{bottom:244.800000px;}
.y397_c00002{bottom:245.520000px;}
.y527_c00002{bottom:246.960000px;}
.y51b_c00002{bottom:247.680000px;}
.y525_c00002{bottom:248.400000px;}
.y4e9_c00002{bottom:249.120000px;}
.y567_c00002{bottom:249.840000px;}
.y3f8_c00002{bottom:250.560000px;}
.y324_c00002{bottom:251.280000px;}
.y227_c00002{bottom:252.000000px;}
.y3f7_c00002{bottom:252.720000px;}
.y226_c00002{bottom:253.440000px;}
.y225_c00002{bottom:254.160000px;}
.y228_c00002{bottom:254.880000px;}
.y28f_c00002{bottom:255.600000px;}
.y375_c00002{bottom:256.320000px;}
.y291_c00002{bottom:257.040000px;}
.y28e_c00002{bottom:257.760000px;}
.y290_c00002{bottom:258.480000px;}
.y1ca_c00002{bottom:259.200000px;}
.y1c9_c00002{bottom:259.920000px;}
.y1c7_c00002{bottom:260.640000px;}
.y1c8_c00002{bottom:261.360000px;}
.ycb_c00002{bottom:262.080000px;}
.ycc_c00002{bottom:262.800000px;}
.y37d_c00002{bottom:263.520000px;}
.y3b3_c00002{bottom:264.240000px;}
.y45_c00002{bottom:264.960000px;}
.y47_c00002{bottom:265.680000px;}
.y9a_c00002{bottom:266.400000px;}
.y9b_c00002{bottom:267.120000px;}
.y46_c00002{bottom:267.840000px;}
.y44_c00002{bottom:268.560000px;}
.y3c8_c00002{bottom:269.280000px;}
.y202_c00002{bottom:270.000000px;}
.y203_c00002{bottom:270.720000px;}
.y133_c00002{bottom:271.440000px;}
.y201_c00002{bottom:272.160000px;}
.y204_c00002{bottom:272.880000px;}
.y134_c00002{bottom:273.600000px;}
.y132_c00002{bottom:274.320000px;}
.y180_c00002{bottom:275.040000px;}
.y332_c00002{bottom:275.760000px;}
.y30b_c00002{bottom:276.480000px;}
.y455_c00002{bottom:277.200000px;}
.y181_c00002{bottom:277.920000px;}
.y182_c00002{bottom:278.640000px;}
.y265_c00002{bottom:279.360000px;}
.y454_c00002{bottom:280.080000px;}
.y263_c00002{bottom:280.800000px;}
.y264_c00002{bottom:281.520000px;}
.y266_c00002{bottom:282.240000px;}
.y499_c00002{bottom:282.960000px;}
.y49a_c00002{bottom:283.680000px;}
.y554_c00002{bottom:284.400000px;}
.y531_c00002{bottom:285.120000px;}
.y54f_c00002{bottom:285.840000px;}
.y394_c00002{bottom:287.280000px;}
.y392_c00002{bottom:288.000000px;}
.y391_c00002{bottom:288.720000px;}
.y566_c00002{bottom:289.440000px;}
.y396_c00002{bottom:290.160000px;}
.y393_c00002{bottom:290.880000px;}
.y395_c00002{bottom:291.600000px;}
.y4fc_c00002{bottom:292.320000px;}
.y4fd_c00002{bottom:293.040000px;}
.y323_c00002{bottom:293.760000px;}
.y322_c00002{bottom:294.480000px;}
.y31f_c00002{bottom:295.200000px;}
.y3f5_c00002{bottom:295.920000px;}
.y3f6_c00002{bottom:296.640000px;}
.y321_c00002{bottom:297.360000px;}
.y320_c00002{bottom:298.080000px;}
.y46c_c00002{bottom:298.800000px;}
.y3de_c00002{bottom:299.520000px;}
.y3dd_c00002{bottom:300.240000px;}
.y374_c00002{bottom:300.960000px;}
.y1c4_c00002{bottom:301.680000px;}
.y1c6_c00002{bottom:302.400000px;}
.y372_c00002{bottom:303.120000px;}
.y373_c00002{bottom:303.840000px;}
.y1c5_c00002{bottom:304.560000px;}
.yca_c00002{bottom:305.280000px;}
.y97_c00002{bottom:306.000000px;}
.y99_c00002{bottom:306.720000px;}
.y3f_c00002{bottom:307.440000px;}
.y98_c00002{bottom:308.160000px;}
.y40_c00002{bottom:308.880000px;}
.y43_c00002{bottom:309.600000px;}
.y41_c00002{bottom:310.320000px;}
.y3e_c00002{bottom:311.040000px;}
.y42_c00002{bottom:311.760000px;}
.y472_c00002{bottom:312.480000px;}
.y1ff_c00002{bottom:313.200000px;}
.y200_c00002{bottom:313.920000px;}
.y131_c00002{bottom:314.640000px;}
.y42a_c00002{bottom:315.360000px;}
.y1fe_c00002{bottom:316.080000px;}
.y12f_c00002{bottom:316.800000px;}
.y130_c00002{bottom:317.520000px;}
.y2be_c00002{bottom:318.240000px;}
.y17f_c00002{bottom:318.960000px;}
.y331_c00002{bottom:319.680000px;}
.y17d_c00002{bottom:320.400000px;}
.y17e_c00002{bottom:321.120000px;}
.y25e_c00002{bottom:321.840000px;}
.y260_c00002{bottom:322.560000px;}
.y453_c00002{bottom:323.280000px;}
.y25f_c00002{bottom:324.000000px;}
.y261_c00002{bottom:324.720000px;}
.y262_c00002{bottom:325.440000px;}
.y498_c00002{bottom:326.160000px;}
.y497_c00002{bottom:326.880000px;}
.y4b0_c00002{bottom:327.600000px;}
.y553_c00002{bottom:328.320000px;}
.y54e_c00002{bottom:329.040000px;}
.y54d_c00002{bottom:329.760000px;}
.y38f_c00002{bottom:330.480000px;}
.y390_c00002{bottom:331.200000px;}
.y540_c00002{bottom:331.920000px;}
.y3da_c00002{bottom:332.640000px;}
.y3d9_c00002{bottom:333.360000px;}
.y38e_c00002{bottom:334.080000px;}
.y3db_c00002{bottom:334.800000px;}
.y50c_c00002{bottom:335.520000px;}
.y50b_c00002{bottom:336.240000px;}
.y31e_c00002{bottom:336.960000px;}
.y31d_c00002{bottom:337.680000px;}
.y31b_c00002{bottom:338.400000px;}
.y3f4_c00002{bottom:339.120000px;}
.y427_c00002{bottom:339.840000px;}
.y31a_c00002{bottom:340.560000px;}
.y31c_c00002{bottom:341.280000px;}
.y3dc_c00002{bottom:342.000000px;}
.y426_c00002{bottom:342.720000px;}
.y36f_c00002{bottom:343.440000px;}
.y1c1_c00002{bottom:344.160000px;}
.y1c3_c00002{bottom:344.880000px;}
.y1c2_c00002{bottom:345.600000px;}
.y370_c00002{bottom:346.320000px;}
.y371_c00002{bottom:347.040000px;}
.yc9_c00002{bottom:347.760000px;}
.y94_c00002{bottom:348.480000px;}
.y95_c00002{bottom:349.200000px;}
.y96_c00002{bottom:349.920000px;}
.y224_c00002{bottom:350.640000px;}
.y3a_c00002{bottom:351.360000px;}
.y3c_c00002{bottom:352.080000px;}
.y28c_c00002{bottom:352.800000px;}
.y28d_c00002{bottom:353.520000px;}
.y3b_c00002{bottom:354.240000px;}
.y3d_c00002{bottom:354.960000px;}
.y1fd_c00002{bottom:355.680000px;}
.y3c7_c00002{bottom:356.400000px;}
.y2bc_c00002{bottom:357.120000px;}
.y2bd_c00002{bottom:357.840000px;}
.y1fc_c00002{bottom:358.560000px;}
.y177_c00002{bottom:359.280000px;}
.y2bb_c00002{bottom:360.000000px;}
.y179_c00002{bottom:360.720000px;}
.y17c_c00002{bottom:361.440000px;}
.y330_c00002{bottom:362.160000px;}
.y17a_c00002{bottom:362.880000px;}
.y178_c00002{bottom:363.600000px;}
.y17b_c00002{bottom:364.320000px;}
.y25c_c00002{bottom:365.040000px;}
.y452_c00002{bottom:365.760000px;}
.y3bf_c00002{bottom:366.480000px;}
.y12d_c00002{bottom:367.200000px;}
.y25d_c00002{bottom:367.920000px;}
.y12e_c00002{bottom:368.640000px;}
.y3be_c00002{bottom:369.360000px;}
.y3bd_c00002{bottom:370.080000px;}
.y12c_c00002{bottom:370.800000px;}
.y2ed_c00002{bottom:371.520000px;}
.y2e9_c00002{bottom:372.240000px;}
.y2e8_c00002{bottom:372.960000px;}
.y38d_c00002{bottom:373.680000px;}
.y516_c00002{bottom:374.400000px;}
.y515_c00002{bottom:375.120000px;}
.y56e_c00002{bottom:375.840000px;}
.y38c_c00002{bottom:376.560000px;}
.y517_c00002{bottom:377.280000px;}
.y519_c00002{bottom:378.000000px;}
.y51a_c00002{bottom:378.720000px;}
.y530_c00002{bottom:379.440000px;}
.y518_c00002{bottom:380.160000px;}
.y318_c00002{bottom:380.880000px;}
.y319_c00002{bottom:381.600000px;}
.y523_c00002{bottom:382.320000px;}
.y425_c00002{bottom:383.040000px;}
.y316_c00002{bottom:383.760000px;}
.y317_c00002{bottom:384.480000px;}
.y46b_c00002{bottom:385.200000px;}
.y3d8_c00002{bottom:385.920000px;}
.y1be_c00002{bottom:386.640000px;}
.y36e_c00002{bottom:387.360000px;}
.y1c0_c00002{bottom:388.080000px;}
.y36c_c00002{bottom:388.800000px;}
.y36d_c00002{bottom:389.520000px;}
.y1bf_c00002{bottom:390.240000px;}
.y92_c00002{bottom:390.960000px;}
.yc8_c00002{bottom:391.680000px;}
.y93_c00002{bottom:392.400000px;}
.y223_c00002{bottom:393.120000px;}
.y91_c00002{bottom:393.840000px;}
.y38_c00002{bottom:394.560000px;}
.y39_c00002{bottom:395.280000px;}
.y2eb_c00002{bottom:396.000000px;}
.y35_c00002{bottom:396.720000px;}
.y36_c00002{bottom:397.440000px;}
.y37_c00002{bottom:398.160000px;}
.y1f9_c00002{bottom:398.880000px;}
.y2ee_c00002{bottom:399.600000px;}
.y2ba_c00002{bottom:400.320000px;}
.y2b9_c00002{bottom:401.040000px;}
.y1fa_c00002{bottom:401.760000px;}
.y1fb_c00002{bottom:402.480000px;}
.y174_c00002{bottom:403.200000px;}
.y2b8_c00002{bottom:403.920000px;}
.y32e_c00002{bottom:404.640000px;}
.y32f_c00002{bottom:405.360000px;}
.y173_c00002{bottom:406.080000px;}
.y175_c00002{bottom:406.800000px;}
.y176_c00002{bottom:407.520000px;}
.y37c_c00002{bottom:408.240000px;}
.y3bc_c00002{bottom:408.960000px;}
.y30a_c00002{bottom:409.680000px;}
.y25a_c00002{bottom:410.400000px;}
.y25b_c00002{bottom:411.120000px;}
.y129_c00002{bottom:411.840000px;}
.y309_c00002{bottom:412.560000px;}
.y12a_c00002{bottom:413.280000px;}
.y12b_c00002{bottom:414.000000px;}
.y4e1_c00002{bottom:414.720000px;}
.y583_c00002{bottom:415.440000px;}
.y582_c00002{bottom:416.160000px;}
.y2e7_c00002{bottom:416.880000px;}
.y2ea_c00002{bottom:417.600000px;}
.y2ec_c00002{bottom:418.320000px;}
.y552_c00002{bottom:419.040000px;}
.y587_c00002{bottom:419.760000px;}
.y496_c00002{bottom:421.200000px;}
.y522_c00002{bottom:421.920000px;}
.y495_c00002{bottom:422.640000px;}
.y494_c00002{bottom:423.360000px;}
.y548_c00002{bottom:424.080000px;}
.y314_c00002{bottom:424.800000px;}
.y521_c00002{bottom:425.520000px;}
.y424_c00002{bottom:426.240000px;}
.y313_c00002{bottom:426.960000px;}
.y315_c00002{bottom:427.680000px;}
.y38b_c00002{bottom:428.400000px;}
.y38a_c00002{bottom:429.120000px;}
.y36b_c00002{bottom:429.840000px;}
.y36a_c00002{bottom:430.560000px;}
.y1ba_c00002{bottom:431.280000px;}
.y432_c00002{bottom:432.000000px;}
.y369_c00002{bottom:432.720000px;}
.y1bb_c00002{bottom:433.440000px;}
.y1bc_c00002{bottom:434.160000px;}
.y1bd_c00002{bottom:434.880000px;}
.y8f_c00002{bottom:435.600000px;}
.y46f_c00002{bottom:436.320000px;}
.yc7_c00002{bottom:437.040000px;}
.y8e_c00002{bottom:437.760000px;}
.y8d_c00002{bottom:438.480000px;}
.y90_c00002{bottom:439.200000px;}
.y3c6_c00002{bottom:439.920000px;}
.y28a_c00002{bottom:440.640000px;}
.y28b_c00002{bottom:441.360000px;}
.y1f7_c00002{bottom:442.080000px;}
.y1f5_c00002{bottom:442.800000px;}
.y2b7_c00002{bottom:443.520000px;}
.y1f6_c00002{bottom:444.240000px;}
.y1f8_c00002{bottom:444.960000px;}
.y170_c00002{bottom:445.680000px;}
.y2b6_c00002{bottom:446.400000px;}
.y172_c00002{bottom:447.120000px;}
.y32d_c00002{bottom:447.840000px;}
.y34_c00002{bottom:448.560000px;}
.y16f_c00002{bottom:449.280000px;}
.y171_c00002{bottom:450.000000px;}
.y259_c00002{bottom:450.720000px;}
.y450_c00002{bottom:451.440000px;}
.y451_c00002{bottom:452.160000px;}
.y258_c00002{bottom:452.880000px;}
.y127_c00002{bottom:453.600000px;}
.y125_c00002{bottom:454.320000px;}
.y3bb_c00002{bottom:455.040000px;}
.y128_c00002{bottom:455.760000px;}
.y126_c00002{bottom:456.480000px;}
.y308_c00002{bottom:457.200000px;}
.y4e0_c00002{bottom:457.920000px;}
.y580_c00002{bottom:458.640000px;}
.y581_c00002{bottom:459.360000px;}
.y4df_c00002{bottom:460.080000px;}
.y2e3_c00002{bottom:460.800000px;}
.y2e5_c00002{bottom:461.520000px;}
.y2e6_c00002{bottom:462.240000px;}
.y3d7_c00002{bottom:462.960000px;}
.y2e4_c00002{bottom:463.680000px;}
.y3d5_c00002{bottom:464.400000px;}
.y493_c00002{bottom:465.840000px;}
.y3d6_c00002{bottom:466.560000px;}
.y56d_c00002{bottom:468.000000px;}
.y3b2_c00002{bottom:468.720000px;}
.y3b1_c00002{bottom:469.440000px;}
.y3b0_c00002{bottom:470.160000px;}
.y388_c00002{bottom:470.880000px;}
.y389_c00002{bottom:471.600000px;}
.y366_c00002{bottom:472.320000px;}
.y367_c00002{bottom:473.040000px;}
.y368_c00002{bottom:473.760000px;}
.y1b7_c00002{bottom:474.480000px;}
.y364_c00002{bottom:475.200000px;}
.y365_c00002{bottom:475.920000px;}
.y1b8_c00002{bottom:476.640000px;}
.y8b_c00002{bottom:477.360000px;}
.y1b9_c00002{bottom:478.080000px;}
.y8a_c00002{bottom:478.800000px;}
.y32c_c00002{bottom:479.520000px;}
.y8c_c00002{bottom:480.240000px;}
.y89_c00002{bottom:480.960000px;}
.y289_c00002{bottom:481.680000px;}
.y287_c00002{bottom:482.400000px;}
.y3c5_c00002{bottom:483.120000px;}
.y3c4_c00002{bottom:483.840000px;}
.y286_c00002{bottom:484.560000px;}
.y288_c00002{bottom:485.280000px;}
.y2b5_c00002{bottom:486.000000px;}
.y2b4_c00002{bottom:486.720000px;}
.y3f3_c00002{bottom:487.440000px;}
.y221_c00002{bottom:488.160000px;}
.y222_c00002{bottom:488.880000px;}
.y16d_c00002{bottom:489.600000px;}
.y16e_c00002{bottom:490.320000px;}
.y32_c00002{bottom:491.040000px;}
.y33_c00002{bottom:491.760000px;}
.y16c_c00002{bottom:492.480000px;}
.y257_c00002{bottom:493.200000px;}
.y31_c00002{bottom:493.920000px;}
.y30_c00002{bottom:494.640000px;}
.y124_c00002{bottom:495.360000px;}
.y1f4_c00002{bottom:496.080000px;}
.y122_c00002{bottom:496.800000px;}
.y307_c00002{bottom:497.520000px;}
.y3ba_c00002{bottom:498.240000px;}
.y123_c00002{bottom:498.960000px;}
.y120_c00002{bottom:499.680000px;}
.y121_c00002{bottom:500.400000px;}
.y44d_c00002{bottom:501.120000px;}
.y44f_c00002{bottom:502.560000px;}
.y584_c00002{bottom:503.280000px;}
.y44b_c00002{bottom:504.000000px;}
.y44c_c00002{bottom:504.720000px;}
.y44e_c00002{bottom:505.440000px;}
.y55f_c00002{bottom:506.160000px;}
.y492_c00002{bottom:506.880000px;}
.y4da_c00002{bottom:507.600000px;}
.y4de_c00002{bottom:508.320000px;}
.y491_c00002{bottom:509.040000px;}
.y490_c00002{bottom:509.760000px;}
.y4db_c00002{bottom:510.480000px;}
.y4dd_c00002{bottom:511.200000px;}
.y586_c00002{bottom:511.920000px;}
.y57f_c00002{bottom:512.640000px;}
.y4dc_c00002{bottom:513.360000px;}
.y4b6_c00002{bottom:514.080000px;}
.y386_c00002{bottom:514.800000px;}
.y387_c00002{bottom:516.240000px;}
.y1b6_c00002{bottom:516.960000px;}
.y385_c00002{bottom:517.680000px;}
.y1b4_c00002{bottom:518.400000px;}
.y419_c00002{bottom:519.120000px;}
.y1b5_c00002{bottom:519.840000px;}
.y86_c00002{bottom:520.560000px;}
.yc6_c00002{bottom:521.280000px;}
.y423_c00002{bottom:522.000000px;}
.y2e1_c00002{bottom:522.720000px;}
.y88_c00002{bottom:523.440000px;}
.y85_c00002{bottom:524.160000px;}
.y87_c00002{bottom:524.880000px;}
.y285_c00002{bottom:525.600000px;}
.y2e0_c00002{bottom:526.320000px;}
.y283_c00002{bottom:527.040000px;}
.y284_c00002{bottom:527.760000px;}
.y2e2_c00002{bottom:528.480000px;}
.y363_c00002{bottom:529.200000px;}
.y2b2_c00002{bottom:529.920000px;}
.y34c_c00002{bottom:530.640000px;}
.y21e_c00002{bottom:531.360000px;}
.y220_c00002{bottom:532.080000px;}
.y2b3_c00002{bottom:532.800000px;}
.y2d_c00002{bottom:533.520000px;}
.y21f_c00002{bottom:534.240000px;}
.y2f_c00002{bottom:534.960000px;}
.y37b_c00002{bottom:535.680000px;}
.y256_c00002{bottom:536.400000px;}
.y2c_c00002{bottom:537.120000px;}
.y2e_c00002{bottom:537.840000px;}
.y1f2_c00002{bottom:538.560000px;}
.y11d_c00002{bottom:539.280000px;}
.y11e_c00002{bottom:540.000000px;}
.y1f3_c00002{bottom:540.720000px;}
.y11f_c00002{bottom:541.440000px;}
.y11b_c00002{bottom:542.160000px;}
.y11c_c00002{bottom:542.880000px;}
.y579_c00002{bottom:543.600000px;}
.y3ab_c00002{bottom:544.320000px;}
.y3ad_c00002{bottom:545.040000px;}
.y16a_c00002{bottom:545.760000px;}
.y16b_c00002{bottom:546.480000px;}
.y3af_c00002{bottom:547.200000px;}
.y3ae_c00002{bottom:547.920000px;}
.y3d3_c00002{bottom:548.640000px;}
.y3d4_c00002{bottom:549.360000px;}
.y3ac_c00002{bottom:550.080000px;}
.y57e_c00002{bottom:550.800000px;}
.y48f_c00002{bottom:551.520000px;}
.y48e_c00002{bottom:552.240000px;}
.y48d_c00002{bottom:552.960000px;}
.y551_c00002{bottom:553.680000px;}
.y550_c00002{bottom:554.400000px;}
.y2df_c00002{bottom:555.120000px;}
.y2db_c00002{bottom:555.840000px;}
.y4d1_c00002{bottom:556.560000px;}
.y2d9_c00002{bottom:557.280000px;}
.y2dc_c00002{bottom:558.000000px;}
.y2dd_c00002{bottom:558.720000px;}
.y1b3_c00002{bottom:559.440000px;}
.y2da_c00002{bottom:560.160000px;}
.y2de_c00002{bottom:560.880000px;}
.y4d9_c00002{bottom:561.600000px;}
.y418_c00002{bottom:562.320000px;}
.y82_c00002{bottom:563.040000px;}
.yc5_c00002{bottom:563.760000px;}
.y83_c00002{bottom:564.480000px;}
.y4ba_c00002{bottom:565.200000px;}
.y422_c00002{bottom:565.920000px;}
.y81_c00002{bottom:566.640000px;}
.y80_c00002{bottom:567.360000px;}
.y84_c00002{bottom:568.080000px;}
.y3c3_c00002{bottom:568.800000px;}
.y361_c00002{bottom:569.520000px;}
.y362_c00002{bottom:570.240000px;}
.y281_c00002{bottom:570.960000px;}
.y282_c00002{bottom:571.680000px;}
.y2b1_c00002{bottom:572.400000px;}
.y360_c00002{bottom:573.120000px;}
.y21d_c00002{bottom:573.840000px;}
.yf2_c00002{bottom:574.560000px;}
.y2b0_c00002{bottom:575.280000px;}
.y34b_c00002{bottom:576.000000px;}
.yf1_c00002{bottom:576.720000px;}
.y2a_c00002{bottom:577.440000px;}
.y2b_c00002{bottom:578.160000px;}
.y253_c00002{bottom:578.880000px;}
.y254_c00002{bottom:579.600000px;}
.y29_c00002{bottom:580.320000px;}
.y255_c00002{bottom:581.040000px;}
.y1f0_c00002{bottom:581.760000px;}
.y119_c00002{bottom:582.480000px;}
.y117_c00002{bottom:583.200000px;}
.y1f1_c00002{bottom:583.920000px;}
.y11a_c00002{bottom:584.640000px;}
.y118_c00002{bottom:585.360000px;}
.y167_c00002{bottom:586.080000px;}
.y32b_c00002{bottom:586.800000px;}
.y32a_c00002{bottom:587.520000px;}
.y169_c00002{bottom:588.240000px;}
.y166_c00002{bottom:588.960000px;}
.y168_c00002{bottom:589.680000px;}
.y44a_c00002{bottom:590.400000px;}
.y449_c00002{bottom:591.120000px;}
.y565_c00002{bottom:592.560000px;}
.y563_c00002{bottom:593.280000px;}
.y574_c00002{bottom:594.000000px;}
.y57d_c00002{bottom:594.720000px;}
.y56c_c00002{bottom:596.160000px;}
.y56b_c00002{bottom:596.880000px;}
.y55e_c00002{bottom:598.320000px;}
.y4d0_c00002{bottom:599.040000px;}
.y4ce_c00002{bottom:599.760000px;}
.y4cd_c00002{bottom:601.200000px;}
.y1b2_c00002{bottom:601.920000px;}
.y1af_c00002{bottom:602.640000px;}
.y4cf_c00002{bottom:603.360000px;}
.y48c_c00002{bottom:604.080000px;}
.y4d8_c00002{bottom:604.800000px;}
.y1b1_c00002{bottom:605.520000px;}
.y1b0_c00002{bottom:606.240000px;}
.yc3_c00002{bottom:606.960000px;}
.yc1_c00002{bottom:607.680000px;}
.y2d7_c00002{bottom:608.400000px;}
.yc0_c00002{bottom:609.120000px;}
.yc4_c00002{bottom:609.840000px;}
.yc2_c00002{bottom:610.560000px;}
.y27e_c00002{bottom:611.280000px;}
.y2d8_c00002{bottom:612.000000px;}
.y35e_c00002{bottom:612.720000px;}
.y27f_c00002{bottom:613.440000px;}
.y280_c00002{bottom:614.160000px;}
.y35f_c00002{bottom:614.880000px;}
.y2af_c00002{bottom:615.600000px;}
.y34a_c00002{bottom:616.320000px;}
.yef_c00002{bottom:617.040000px;}
.yf0_c00002{bottom:617.760000px;}
.y2ae_c00002{bottom:618.480000px;}
.y7f_c00002{bottom:619.200000px;}
.yee_c00002{bottom:619.920000px;}
.y28_c00002{bottom:620.640000px;}
.y7e_c00002{bottom:621.360000px;}
.y252_c00002{bottom:622.080000px;}
.y251_c00002{bottom:622.800000px;}
.y27_c00002{bottom:623.520000px;}
.y250_c00002{bottom:624.240000px;}
.y115_c00002{bottom:624.960000px;}
.y116_c00002{bottom:625.680000px;}
.y306_c00002{bottom:626.400000px;}
.y3b9_c00002{bottom:627.120000px;}
.y114_c00002{bottom:627.840000px;}
.y113_c00002{bottom:628.560000px;}
.y165_c00002{bottom:629.280000px;}
.y3aa_c00002{bottom:630.000000px;}
.y329_c00002{bottom:630.720000px;}
.y163_c00002{bottom:631.440000px;}
.y164_c00002{bottom:632.160000px;}
.y37a_c00002{bottom:632.880000px;}
.y448_c00002{bottom:633.600000px;}
.y561_c00002{bottom:634.320000px;}
.y562_c00002{bottom:635.040000px;}
.y1ef_c00002{bottom:635.760000px;}
.y573_c00002{bottom:636.480000px;}
.y4d7_c00002{bottom:637.200000px;}
.y572_c00002{bottom:637.920000px;}
.y571_c00002{bottom:638.640000px;}
.y56a_c00002{bottom:639.360000px;}
.y569_c00002{bottom:640.080000px;}
.y55d_c00002{bottom:641.520000px;}
.y4cb_c00002{bottom:642.240000px;}
.y3d1_c00002{bottom:642.960000px;}
.y3ce_c00002{bottom:643.680000px;}
.y3d0_c00002{bottom:644.400000px;}
.y4cc_c00002{bottom:645.120000px;}
.y3d2_c00002{bottom:645.840000px;}
.y1ad_c00002{bottom:646.560000px;}
.y3cf_c00002{bottom:647.280000px;}
.y4d6_c00002{bottom:648.000000px;}
.y1ae_c00002{bottom:648.720000px;}
.y1ac_c00002{bottom:649.440000px;}
.y46e_c00002{bottom:650.160000px;}
.ybf_c00002{bottom:650.880000px;}
.y2d6_c00002{bottom:651.600000px;}
.ybe_c00002{bottom:652.320000px;}
.ybd_c00002{bottom:653.040000px;}
.ybc_c00002{bottom:653.760000px;}
.y27d_c00002{bottom:654.480000px;}
.y35c_c00002{bottom:655.200000px;}
.y35d_c00002{bottom:655.920000px;}
.y27b_c00002{bottom:656.640000px;}
.y27c_c00002{bottom:657.360000px;}
.y2ad_c00002{bottom:658.080000px;}
.y2ac_c00002{bottom:658.800000px;}
.y7c_c00002{bottom:659.520000px;}
.y7d_c00002{bottom:660.240000px;}
.y7b_c00002{bottom:660.960000px;}
.y2ab_c00002{bottom:661.680000px;}
.y349_c00002{bottom:662.400000px;}
.y7a_c00002{bottom:663.120000px;}
.y25_c00002{bottom:663.840000px;}
.y420_c00002{bottom:664.560000px;}
.y24f_c00002{bottom:665.280000px;}
.y26_c00002{bottom:666.000000px;}
.y24_c00002{bottom:666.720000px;}
.y24d_c00002{bottom:667.440000px;}
.y24e_c00002{bottom:668.160000px;}
.y24c_c00002{bottom:668.880000px;}
.y304_c00002{bottom:669.600000px;}
.y305_c00002{bottom:670.320000px;}
.y21b_c00002{bottom:671.040000px;}
.y21c_c00002{bottom:671.760000px;}
.y162_c00002{bottom:672.480000px;}
.y3a9_c00002{bottom:673.200000px;}
.y15f_c00002{bottom:673.920000px;}
.y160_c00002{bottom:674.640000px;}
.y379_c00002{bottom:675.360000px;}
.y161_c00002{bottom:676.080000px;}
.y3cd_c00002{bottom:676.800000px;}
.y3cc_c00002{bottom:677.520000px;}
.y1ed_c00002{bottom:678.240000px;}
.y1eb_c00002{bottom:678.960000px;}
.y112_c00002{bottom:679.680000px;}
.y1ee_c00002{bottom:680.400000px;}
.y1ea_c00002{bottom:681.120000px;}
.y1ec_c00002{bottom:681.840000px;}
.y111_c00002{bottom:682.560000px;}
.y570_c00002{bottom:683.280000px;}
.y578_c00002{bottom:684.000000px;}
.y55c_c00002{bottom:684.720000px;}
.y55a_c00002{bottom:685.440000px;}
.y4ca_c00002{bottom:686.160000px;}
.y55b_c00002{bottom:686.880000px;}
.y48b_c00002{bottom:687.600000px;}
.y1a9_c00002{bottom:688.320000px;}
.y1aa_c00002{bottom:689.040000px;}
.y1a8_c00002{bottom:689.760000px;}
.y4c9_c00002{bottom:690.480000px;}
.y1ab_c00002{bottom:691.200000px;}
.y1a7_c00002{bottom:691.920000px;}
.y48a_c00002{bottom:692.640000px;}
.yba_c00002{bottom:693.360000px;}
.y2d4_c00002{bottom:694.080000px;}
.y2d5_c00002{bottom:694.800000px;}
.ybb_c00002{bottom:695.520000px;}
.yb9_c00002{bottom:696.240000px;}
.y2d3_c00002{bottom:696.960000px;}
.y2d2_c00002{bottom:697.680000px;}
.y35b_c00002{bottom:698.400000px;}
.y27a_c00002{bottom:699.120000px;}
.y279_c00002{bottom:699.840000px;}
.y384_c00002{bottom:700.560000px;}
.y2aa_c00002{bottom:701.280000px;}
.y417_c00002{bottom:702.000000px;}
.yed_c00002{bottom:702.720000px;}
.y78_c00002{bottom:703.440000px;}
.y77_c00002{bottom:704.160000px;}
.y3b5_c00002{bottom:704.880000px;}
.y79_c00002{bottom:705.600000px;}
.y22_c00002{bottom:706.320000px;}
.y23_c00002{bottom:707.040000px;}
.y24b_c00002{bottom:707.760000px;}
.y249_c00002{bottom:708.480000px;}
.y20_c00002{bottom:709.200000px;}
.y21_c00002{bottom:709.920000px;}
.y24a_c00002{bottom:710.640000px;}
.y248_c00002{bottom:711.360000px;}
.y3b8_c00002{bottom:712.080000px;}
.y303_c00002{bottom:712.800000px;}
.y219_c00002{bottom:713.520000px;}
.y302_c00002{bottom:714.240000px;}
.y15d_c00002{bottom:714.960000px;}
.y21a_c00002{bottom:715.680000px;}
.y218_c00002{bottom:716.400000px;}
.y15e_c00002{bottom:717.120000px;}
.y15c_c00002{bottom:717.840000px;}
.y378_c00002{bottom:718.560000px;}
.y4fb_c00002{bottom:720.000000px;}
.y10f_c00002{bottom:720.720000px;}
.y10e_c00002{bottom:721.440000px;}
.y10c_c00002{bottom:722.160000px;}
.y589_c00002{bottom:722.880000px;}
.y577_c00002{bottom:723.600000px;}
.y110_c00002{bottom:724.320000px;}
.y10d_c00002{bottom:725.040000px;}
.y10a_c00002{bottom:725.760000px;}
.y10b_c00002{bottom:726.480000px;}
.y559_c00002{bottom:727.200000px;}
.y4c8_c00002{bottom:727.920000px;}
.y4c7_c00002{bottom:728.640000px;}
.y4c6_c00002{bottom:729.360000px;}
.y4c5_c00002{bottom:730.080000px;}
.y1a5_c00002{bottom:730.800000px;}
.y1a6_c00002{bottom:731.520000px;}
.y489_c00002{bottom:732.240000px;}
.y4c4_c00002{bottom:732.960000px;}
.y4ab_c00002{bottom:733.680000px;}
.y1a3_c00002{bottom:734.400000px;}
.y1a4_c00002{bottom:735.120000px;}
.y4b9_c00002{bottom:735.840000px;}
.y4aa_c00002{bottom:736.560000px;}
.y4ac_c00002{bottom:737.280000px;}
.y4b5_c00002{bottom:738.000000px;}
.y447_c00002{bottom:738.720000px;}
.y475_c00002{bottom:739.440000px;}
.y382_c00002{bottom:740.160000px;}
.y446_c00002{bottom:740.880000px;}
.y416_c00002{bottom:741.600000px;}
.y381_c00002{bottom:742.320000px;}
.y383_c00002{bottom:743.040000px;}
.y2a9_c00002{bottom:743.760000px;}
.y2a8_c00002{bottom:744.480000px;}
.y2a5_c00002{bottom:745.200000px;}
.y75_c00002{bottom:745.920000px;}
.y74_c00002{bottom:746.640000px;}
.y2a7_c00002{bottom:747.360000px;}
.y2a6_c00002{bottom:748.080000px;}
.y76_c00002{bottom:748.800000px;}
.y1e_c00002{bottom:749.520000px;}
.y1d_c00002{bottom:750.240000px;}
.y278_c00002{bottom:750.960000px;}
.y1f_c00002{bottom:751.680000px;}
.y1c_c00002{bottom:752.400000px;}
.y300_c00002{bottom:753.120000px;}
.y301_c00002{bottom:753.840000px;}
.y35a_c00002{bottom:754.560000px;}
.y359_c00002{bottom:755.280000px;}
.y217_c00002{bottom:756.000000px;}
.y2ff_c00002{bottom:756.720000px;}
.y15b_c00002{bottom:757.440000px;}
.y158_c00002{bottom:758.160000px;}
.y216_c00002{bottom:758.880000px;}
.y215_c00002{bottom:759.600000px;}
.y15a_c00002{bottom:760.320000px;}
.y159_c00002{bottom:761.040000px;}
.y377_c00002{bottom:761.760000px;}
.y247_c00002{bottom:762.480000px;}
.y4fa_c00002{bottom:763.200000px;}
.y109_c00002{bottom:763.920000px;}
.y1e9_c00002{bottom:764.640000px;}
.y246_c00002{bottom:765.360000px;}
.y4af_c00002{bottom:766.080000px;}
.y108_c00002{bottom:766.800000px;}
.y107_c00002{bottom:767.520000px;}
.y106_c00002{bottom:768.240000px;}
.y4f5_c00002{bottom:768.960000px;}
.y347_c00002{bottom:769.680000px;}
.y348_c00002{bottom:770.400000px;}
.y4c3_c00002{bottom:771.120000px;}
.y346_c00002{bottom:771.840000px;}
.y56f_c00002{bottom:772.560000px;}
.y487_c00002{bottom:773.280000px;}
.y488_c00002{bottom:774.000000px;}
.y1a1_c00002{bottom:774.720000px;}
.y4f4_c00002{bottom:775.440000px;}
.y4d5_c00002{bottom:776.160000px;}
.y1a0_c00002{bottom:776.880000px;}
.y1a2_c00002{bottom:777.600000px;}
.y4b8_c00002{bottom:778.320000px;}
.y4a9_c00002{bottom:779.040000px;}
.y4a8_c00002{bottom:779.760000px;}
.y444_c00002{bottom:780.480000px;}
.y445_c00002{bottom:781.200000px;}
.y4b4_c00002{bottom:781.920000px;}
.y430_c00002{bottom:782.640000px;}
.y431_c00002{bottom:783.360000px;}
.y415_c00002{bottom:784.080000px;}
.y412_c00002{bottom:784.800000px;}
.y46a_c00002{bottom:785.520000px;}
.y414_c00002{bottom:786.240000px;}
.y413_c00002{bottom:786.960000px;}
.y2a4_c00002{bottom:787.680000px;}
.y2a3_c00002{bottom:788.400000px;}
.y72_c00002{bottom:789.120000px;}
.y73_c00002{bottom:789.840000px;}
.y2a2_c00002{bottom:790.560000px;}
.y2d1_c00002{bottom:791.280000px;}
.y71_c00002{bottom:792.000000px;}
.y19_c00002{bottom:792.720000px;}
.y1a_c00002{bottom:793.440000px;}
.y1b_c00002{bottom:794.160000px;}
.y17_c00002{bottom:794.880000px;}
.y18_c00002{bottom:795.600000px;}
.y277_c00002{bottom:796.320000px;}
.y2fd_c00002{bottom:797.040000px;}
.y2fc_c00002{bottom:797.760000px;}
.y214_c00002{bottom:798.480000px;}
.y2fe_c00002{bottom:799.200000px;}
.yec_c00002{bottom:799.920000px;}
.y155_c00002{bottom:800.640000px;}
.y213_c00002{bottom:801.360000px;}
.y211_c00002{bottom:802.080000px;}
.y212_c00002{bottom:802.800000px;}
.y157_c00002{bottom:803.520000px;}
.y156_c00002{bottom:804.240000px;}
.y376_c00002{bottom:804.960000px;}
.y514_c00002{bottom:805.680000px;}
.y3cb_c00002{bottom:806.400000px;}
.y105_c00002{bottom:807.120000px;}
.y1e8_c00002{bottom:807.840000px;}
.y245_c00002{bottom:808.560000px;}
.y102_c00002{bottom:809.280000px;}
.y104_c00002{bottom:810.000000px;}
.y103_c00002{bottom:810.720000px;}
.y101_c00002{bottom:811.440000px;}
.y4f9_c00002{bottom:812.160000px;}
.y520_c00002{bottom:812.880000px;}
.y4c2_c00002{bottom:813.600000px;}
.y4c0_c00002{bottom:814.320000px;}
.y4f8_c00002{bottom:815.040000px;}
.y4be_c00002{bottom:815.760000px;}
.y4c1_c00002{bottom:816.480000px;}
.y484_c00002{bottom:817.200000px;}
.y4bf_c00002{bottom:817.920000px;}
.y482_c00002{bottom:818.640000px;}
.y486_c00002{bottom:819.360000px;}
.y485_c00002{bottom:820.080000px;}
.y344_c00002{bottom:820.800000px;}
.y345_c00002{bottom:821.520000px;}
.y4a7_c00002{bottom:822.240000px;}
.y343_c00002{bottom:822.960000px;}
.y483_c00002{bottom:823.680000px;}
.y443_c00002{bottom:824.400000px;}
.y442_c00002{bottom:825.120000px;}
.y42f_c00002{bottom:825.840000px;}
.y411_c00002{bottom:826.560000px;}
.y40f_c00002{bottom:827.280000px;}
.y469_c00002{bottom:828.000000px;}
.y42e_c00002{bottom:828.720000px;}
.y410_c00002{bottom:829.440000px;}
.y19f_c00002{bottom:830.160000px;}
.y40e_c00002{bottom:830.880000px;}
.y42d_c00002{bottom:831.600000px;}
.y2cf_c00002{bottom:832.320000px;}
.y6e_c00002{bottom:833.040000px;}
.y2d0_c00002{bottom:833.760000px;}
.y6f_c00002{bottom:834.480000px;}
.y70_c00002{bottom:835.200000px;}
.y15_c00002{bottom:835.920000px;}
.y2ce_c00002{bottom:836.640000px;}
.y16_c00002{bottom:837.360000px;}
.y14_c00002{bottom:838.080000px;}
.y13_c00002{bottom:838.800000px;}
.y276_c00002{bottom:839.520000px;}
.y2fb_c00002{bottom:840.240000px;}
.y358_c00002{bottom:840.960000px;}
.y2a1_c00002{bottom:841.680000px;}
.y210_c00002{bottom:842.400000px;}
.yea_c00002{bottom:843.120000px;}
.y153_c00002{bottom:843.840000px;}
.y20f_c00002{bottom:844.560000px;}
.yeb_c00002{bottom:845.280000px;}
.ye9_c00002{bottom:846.000000px;}
.y154_c00002{bottom:846.720000px;}
.y244_c00002{bottom:847.440000px;}
.y243_c00002{bottom:848.160000px;}
.y242_c00002{bottom:848.880000px;}
.y3ca_c00002{bottom:849.600000px;}
.y100_c00002{bottom:850.320000px;}
.y241_c00002{bottom:851.040000px;}
.yfe_c00002{bottom:851.760000px;}
.y4ae_c00002{bottom:852.480000px;}
.yff_c00002{bottom:853.200000px;}
.yfd_c00002{bottom:853.920000px;}
.yfc_c00002{bottom:854.640000px;}
.y52f_c00002{bottom:855.360000px;}
.y4e8_c00002{bottom:856.080000px;}
.y57c_c00002{bottom:856.800000px;}
.y4bc_c00002{bottom:857.520000px;}
.y4f7_c00002{bottom:858.240000px;}
.y4bd_c00002{bottom:858.960000px;}
.y47f_c00002{bottom:859.680000px;}
.y47d_c00002{bottom:860.400000px;}
.y47c_c00002{bottom:861.120000px;}
.y480_c00002{bottom:861.840000px;}
.y481_c00002{bottom:862.560000px;}
.y47e_c00002{bottom:863.280000px;}
.y1e7_c00002{bottom:864.000000px;}
.y4b7_c00002{bottom:864.720000px;}
.y441_c00002{bottom:865.440000px;}
.y342_c00002{bottom:866.160000px;}
.y43e_c00002{bottom:866.880000px;}
.y340_c00002{bottom:867.600000px;}
.y341_c00002{bottom:868.320000px;}
.y440_c00002{bottom:869.040000px;}
.y43f_c00002{bottom:869.760000px;}
.y19b_c00002{bottom:870.480000px;}
.y19e_c00002{bottom:871.200000px;}
.y199_c00002{bottom:871.920000px;}
.y19c_c00002{bottom:872.640000px;}
.y19d_c00002{bottom:873.360000px;}
.yb8_c00002{bottom:874.080000px;}
.y19a_c00002{bottom:874.800000px;}
.y6d_c00002{bottom:875.520000px;}
.y6a_c00002{bottom:876.240000px;}
.y69_c00002{bottom:876.960000px;}
.y6c_c00002{bottom:877.680000px;}
.yb7_c00002{bottom:878.400000px;}
.y6b_c00002{bottom:879.120000px;}
.y273_c00002{bottom:879.840000px;}
.y2cd_c00002{bottom:880.560000px;}
.y275_c00002{bottom:881.280000px;}
.y380_c00002{bottom:882.000000px;}
.y274_c00002{bottom:882.720000px;}
.y2fa_c00002{bottom:883.440000px;}
.y2a0_c00002{bottom:884.160000px;}
.y152_c00002{bottom:884.880000px;}
.ye6_c00002{bottom:885.600000px;}
.ye7_c00002{bottom:886.320000px;}
.y20e_c00002{bottom:887.040000px;}
.y20d_c00002{bottom:887.760000px;}
.ye8_c00002{bottom:888.480000px;}
.y11_c00002{bottom:889.200000px;}
.y10_c00002{bottom:889.920000px;}
.y240_c00002{bottom:890.640000px;}
.y12_c00002{bottom:891.360000px;}
.yf_c00002{bottom:892.080000px;}
.yfb_c00002{bottom:892.800000px;}
.y23e_c00002{bottom:893.520000px;}
.y23f_c00002{bottom:894.240000px;}
.y50a_c00002{bottom:894.960000px;}
.yf8_c00002{bottom:895.680000px;}
.yf9_c00002{bottom:896.400000px;}
.yfa_c00002{bottom:897.120000px;}
.y51d_c00002{bottom:897.840000px;}
.y4e4_c00002{bottom:898.560000px;}
.y4e6_c00002{bottom:899.280000px;}
.y4e7_c00002{bottom:900.000000px;}
.y51e_c00002{bottom:900.720000px;}
.y513_c00002{bottom:901.440000px;}
.y4e5_c00002{bottom:902.160000px;}
.y479_c00002{bottom:902.880000px;}
.y51f_c00002{bottom:903.600000px;}
.y478_c00002{bottom:904.320000px;}
.y47a_c00002{bottom:905.040000px;}
.y47b_c00002{bottom:906.480000px;}
.y477_c00002{bottom:907.200000px;}
.y564_c00002{bottom:907.920000px;}
.y33e_c00002{bottom:908.640000px;}
.y33f_c00002{bottom:909.360000px;}
.y4b3_c00002{bottom:910.080000px;}
.y33d_c00002{bottom:910.800000px;}
.y43d_c00002{bottom:911.520000px;}
.y40c_c00002{bottom:912.240000px;}
.y198_c00002{bottom:912.960000px;}
.y196_c00002{bottom:913.680000px;}
.y468_c00002{bottom:914.400000px;}
.y40d_c00002{bottom:915.120000px;}
.y197_c00002{bottom:915.840000px;}
.y195_c00002{bottom:916.560000px;}
.y194_c00002{bottom:917.280000px;}
.yb6_c00002{bottom:918.000000px;}
.yb4_c00002{bottom:918.720000px;}
.y421_c00002{bottom:919.440000px;}
.y2cc_c00002{bottom:920.160000px;}
.yb5_c00002{bottom:920.880000px;}
.yb2_c00002{bottom:921.600000px;}
.yb3_c00002{bottom:922.320000px;}
.yb1_c00002{bottom:923.040000px;}
.y37f_c00002{bottom:923.760000px;}
.y357_c00002{bottom:924.480000px;}
.y2f9_c00002{bottom:925.200000px;}
.y29f_c00002{bottom:925.920000px;}
.y1e5_c00002{bottom:926.640000px;}
.y1e6_c00002{bottom:927.360000px;}
.y20c_c00002{bottom:928.080000px;}
.ye2_c00002{bottom:928.800000px;}
.ye5_c00002{bottom:929.520000px;}
.ye3_c00002{bottom:930.240000px;}
.ye4_c00002{bottom:930.960000px;}
.y68_c00002{bottom:931.680000px;}
.yc_c00002{bottom:932.400000px;}
.yd_c00002{bottom:933.120000px;}
.ye_c00002{bottom:933.840000px;}
.yb_c00002{bottom:934.560000px;}
.ya_c00002{bottom:935.280000px;}
.y23d_c00002{bottom:936.000000px;}
.y23c_c00002{bottom:936.720000px;}
.y473_c00002{bottom:937.440000px;}
.y33b_c00002{bottom:938.160000px;}
.y474_c00002{bottom:938.880000px;}
.y3f2_c00002{bottom:939.600000px;}
.y33a_c00002{bottom:940.320000px;}
.y33c_c00002{bottom:941.040000px;}
.y339_c00002{bottom:941.760000px;}
.y338_c00002{bottom:942.480000px;}
.y337_c00002{bottom:943.200000px;}
.y52e_c00002{bottom:943.920000px;}
.y512_c00002{bottom:944.640000px;}
.y534_c00002{bottom:945.360000px;}
.y52d_c00002{bottom:946.080000px;}
.y509_c00002{bottom:946.800000px;}
.y53d_c00002{bottom:947.520000px;}
.y543_c00002{bottom:948.240000px;}
.y508_c00002{bottom:948.960000px;}
.y53c_c00002{bottom:949.680000px;}
.y53b_c00002{bottom:950.400000px;}
.y43c_c00002{bottom:951.120000px;}
.y43b_c00002{bottom:951.840000px;}
.yf7_c00002{bottom:952.560000px;}
.y43a_c00002{bottom:953.280000px;}
.y467_c00002{bottom:954.000000px;}
.y40b_c00002{bottom:954.720000px;}
.y40a_c00002{bottom:955.440000px;}
.y193_c00002{bottom:956.160000px;}
.y408_c00002{bottom:956.880000px;}
.yf6_c00002{bottom:957.600000px;}
.y409_c00002{bottom:958.320000px;}
.y192_c00002{bottom:959.040000px;}
.y191_c00002{bottom:959.760000px;}
.y190_c00002{bottom:960.480000px;}
.yf5_c00002{bottom:961.200000px;}
.y2cb_c00002{bottom:961.920000px;}
.y2c8_c00002{bottom:962.640000px;}
.y312_c00002{bottom:963.360000px;}
.y2ca_c00002{bottom:964.080000px;}
.y2c7_c00002{bottom:964.800000px;}
.y2c9_c00002{bottom:965.520000px;}
.y356_c00002{bottom:966.240000px;}
.y1e4_c00002{bottom:966.960000px;}
.y2f8_c00002{bottom:967.680000px;}
.y1e2_c00002{bottom:968.400000px;}
.y29e_c00002{bottom:969.120000px;}
.y1e1_c00002{bottom:969.840000px;}
.y151_c00002{bottom:970.560000px;}
.y1e3_c00002{bottom:971.280000px;}
.y67_c00002{bottom:972.000000px;}
.yb0_c00002{bottom:972.720000px;}
.y66_c00002{bottom:973.440000px;}
.y8_c00002{bottom:974.160000px;}
.y6_c00002{bottom:974.880000px;}
.y7_c00002{bottom:975.600000px;}
.y65_c00002{bottom:976.320000px;}
.y9_c00002{bottom:977.040000px;}
.y5_c00002{bottom:977.760000px;}
.y23b_c00002{bottom:978.480000px;}
.y239_c00002{bottom:979.200000px;}
.y23a_c00002{bottom:979.920000px;}
.y3f1_c00002{bottom:980.640000px;}
.y272_c00002{bottom:981.360000px;}
.y3ef_c00002{bottom:982.080000px;}
.y3f0_c00002{bottom:982.800000px;}
.y53e_c00002{bottom:983.520000px;}
.y53f_c00002{bottom:984.240000px;}
.y511_c00002{bottom:984.960000px;}
.y533_c00002{bottom:985.680000px;}
.y50d_c00002{bottom:986.400000px;}
.y510_c00002{bottom:987.120000px;}
.y507_c00002{bottom:987.840000px;}
.y50e_c00002{bottom:988.560000px;}
.y532_c00002{bottom:989.280000px;}
.y542_c00002{bottom:990.000000px;}
.y506_c00002{bottom:990.720000px;}
.y50f_c00002{bottom:991.440000px;}
.y4e3_c00002{bottom:992.160000px;}
.y4e2_c00002{bottom:992.880000px;}
.y547_c00002{bottom:993.600000px;}
.y438_c00002{bottom:994.320000px;}
.y437_c00002{bottom:995.040000px;}
.y434_c00002{bottom:995.760000px;}
.y4b2_c00002{bottom:996.480000px;}
.y439_c00002{bottom:997.200000px;}
.y436_c00002{bottom:997.920000px;}
.y435_c00002{bottom:998.640000px;}
.y18e_c00002{bottom:999.360000px;}
.y471_c00002{bottom:1000.080000px;}
.y407_c00002{bottom:1000.800000px;}
.y18f_c00002{bottom:1001.520000px;}
.y18d_c00002{bottom:1002.240000px;}
.y311_c00002{bottom:1002.960000px;}
.y18c_c00002{bottom:1003.680000px;}
.y310_c00002{bottom:1004.400000px;}
.y30f_c00002{bottom:1005.120000px;}
.y2c4_c00002{bottom:1005.840000px;}
.y2c3_c00002{bottom:1006.560000px;}
.y2c6_c00002{bottom:1007.280000px;}
.y2c5_c00002{bottom:1008.000000px;}
.y2c2_c00002{bottom:1008.720000px;}
.y466_c00002{bottom:1009.440000px;}
.y1df_c00002{bottom:1010.160000px;}
.y1e0_c00002{bottom:1010.880000px;}
.y1dd_c00002{bottom:1011.600000px;}
.y1dc_c00002{bottom:1012.320000px;}
.y1de_c00002{bottom:1013.040000px;}
.yf4_c00002{bottom:1013.760000px;}
.y64_c00002{bottom:1014.480000px;}
.yaf_c00002{bottom:1015.200000px;}
.yae_c00002{bottom:1015.920000px;}
.y4_c00002{bottom:1016.640000px;}
.y3_c00002{bottom:1017.360000px;}
.y63_c00002{bottom:1018.080000px;}
.y61_c00002{bottom:1018.800000px;}
.y62_c00002{bottom:1019.520000px;}
.y2_c00002{bottom:1020.240000px;}
.y3c9_c00002{bottom:1020.960000px;}
.y237_c00002{bottom:1021.680000px;}
.y238_c00002{bottom:1022.400000px;}
.y3ee_c00002{bottom:1023.840000px;}
.y3ed_c00002{bottom:1024.560000px;}
.y505_c00002{bottom:1084.320000px;}
.yad_c00002{bottom:1085.040000px;}
.y52c_c00002{bottom:1086.480000px;}
.y51c_c00002{bottom:1087.200000px;}
.yf3_c00002{bottom:1091.520000px;}
.y2f7_c00002{bottom:1093.680000px;}
.y3c2_c00002{bottom:1095.120000px;}
.y1_c00002{bottom:1095.840000px;}
.y541_c00002{bottom:1098.000000px;}
.y585_c00002{bottom:1100.160000px;}
.y588_c00002{bottom:1100.880000px;}
.y560_c00002{bottom:1101.600000px;}
.ye1_c00002{bottom:1102.320000px;}
.y470_c00002{bottom:1103.040000px;}
.y150_c00002{bottom:1103.760000px;}
.y433_c00002{bottom:1106.640000px;}
.y236_c00002{bottom:1107.360000px;}
.y4ad_c00002{bottom:1108.080000px;}
.y41f_c00002{bottom:1108.800000px;}
.y37e_c00002{bottom:1109.520000px;}
.y4d4_c00002{bottom:1110.240000px;}
.y3b4_c00002{bottom:1110.960000px;}
.y18b_c00002{bottom:1111.680000px;}
.y30e_c00002{bottom:1112.400000px;}
.y3b7_c00002{bottom:1113.120000px;}
.y3ec_c00002{bottom:1113.840000px;}
.y46d_c00002{bottom:1114.560000px;}
.y355_c00002{bottom:1115.280000px;}
.y271_c00002{bottom:1116.000000px;}
.y3a8_c00002{bottom:1116.720000px;}
.y336_c00002{bottom:1117.440000px;}
.y406_c00002{bottom:1118.160000px;}
.y1db_c00002{bottom:1118.880000px;}
.y29d_c00002{bottom:1119.600000px;}
.y4bb_c00002{bottom:1120.320000px;}
.y328_c00002{bottom:1121.040000px;}
.y334_c00002{bottom:1121.760000px;}
.y42b_c00002{bottom:1126.800000px;}
.y568_c00002{bottom:1127.520000px;}
.y42c_c00002{bottom:1128.960000px;}
.h36_c00002{height:2.591719px;}
.h51_c00002{height:5.183438px;}
.h47_c00002{height:7.775156px;}
.h29_c00002{height:10.366875px;}
.h22_c00002{height:12.958594px;}
.h13_c00002{height:15.550313px;}
.h1b_c00002{height:18.142031px;}
.h60_c00002{height:19.295156px;}
.h2a_c00002{height:20.733750px;}
.h20_c00002{height:23.325469px;}
.h35_c00002{height:25.917187px;}
.h2d_c00002{height:28.508906px;}
.h7_c00002{height:31.100625px;}
.h8_c00002{height:33.692344px;}
.h12_c00002{height:36.284062px;}
.h17_c00002{height:38.875781px;}
.h6_c00002{height:41.467500px;}
.h4_c00002{height:44.059219px;}
.h56_c00002{height:46.362656px;}
.h3_c00002{height:46.650937px;}
.h42_c00002{height:46.939219px;}
.h43_c00002{height:48.666094px;}
.hd_c00002{height:49.242656px;}
.h55_c00002{height:49.530938px;}
.h39_c00002{height:50.969531px;}
.h26_c00002{height:51.546094px;}
.ha_c00002{height:51.834375px;}
.h59_c00002{height:52.410937px;}
.h25_c00002{height:52.699219px;}
.h40_c00002{height:52.987500px;}
.h9_c00002{height:54.426094px;}
.h4c_c00002{height:55.002656px;}
.h33_c00002{height:55.290937px;}
.he_c00002{height:55.579219px;}
.h3a_c00002{height:55.867500px;}
.hb_c00002{height:57.017812px;}
.h2e_c00002{height:57.306094px;}
.h71_c00002{height:57.882656px;}
.h69_c00002{height:58.170937px;}
.h5_c00002{height:59.609531px;}
.h21_c00002{height:60.186094px;}
.h34_c00002{height:61.050937px;}
.hc_c00002{height:62.201250px;}
.h70_c00002{height:62.489531px;}
.h32_c00002{height:62.777812px;}
.h5a_c00002{height:63.066094px;}
.h2_c00002{height:64.792969px;}
.h6d_c00002{height:65.081250px;}
.h48_c00002{height:66.522656px;}
.h14_c00002{height:67.384687px;}
.h6a_c00002{height:67.961250px;}
.h3b_c00002{height:68.826094px;}
.hf_c00002{height:69.976406px;}
.h1a_c00002{height:72.568125px;}
.h41_c00002{height:75.159844px;}
.h46_c00002{height:77.751563px;}
.h38_c00002{height:80.343281px;}
.h50_c00002{height:82.935000px;}
.h2f_c00002{height:85.526719px;}
.h2c_c00002{height:90.710156px;}
.h2b_c00002{height:93.301875px;}
.h37_c00002{height:101.077031px;}
.h5f_c00002{height:108.852188px;}
.h4f_c00002{height:184.012031px;}
.h1_c00002{height:1146.000000px;}
.h0_c00002{height:1146.240000px;}
.h4e_c00002{height:1146.750000px;}
.h4d_c00002{height:1146.960000px;}
.h3f_c00002{height:1149.000000px;}
.h3e_c00002{height:1149.120000px;}
.h1d_c00002{height:1150.500000px;}
.h1c_c00002{height:1150.560000px;}
.h31_c00002{height:1151.250000px;}
.h30_c00002{height:1151.280000px;}
.h52_c00002{height:1152.000000px;}
.h3c_c00002{height:1152.720000px;}
.h3d_c00002{height:1152.750000px;}
.h1e_c00002{height:1153.440000px;}
.h1f_c00002{height:1153.500000px;}
.h57_c00002{height:1154.160000px;}
.h58_c00002{height:1154.250000px;}
.h27_c00002{height:1154.880000px;}
.h28_c00002{height:1155.000000px;}
.h18_c00002{height:1155.600000px;}
.h19_c00002{height:1155.750000px;}
.h4a_c00002{height:1156.320000px;}
.h4b_c00002{height:1156.500000px;}
.h15_c00002{height:1157.040000px;}
.h16_c00002{height:1157.250000px;}
.h10_c00002{height:1157.760000px;}
.h11_c00002{height:1158.000000px;}
.h53_c00002{height:1158.480000px;}
.h54_c00002{height:1158.750000px;}
.h44_c00002{height:1159.200000px;}
.h45_c00002{height:1159.500000px;}
.h23_c00002{height:1159.920000px;}
.h24_c00002{height:1160.250000px;}
.h6e_c00002{height:1160.640000px;}
.h6f_c00002{height:1161.000000px;}
.h5e_c00002{height:1161.750000px;}
.h5d_c00002{height:1162.080000px;}
.h66_c00002{height:1162.500000px;}
.h65_c00002{height:1162.800000px;}
.h64_c00002{height:1163.250000px;}
.h63_c00002{height:1163.520000px;}
.h6c_c00002{height:1164.000000px;}
.h6b_c00002{height:1164.240000px;}
.h68_c00002{height:1164.750000px;}
.h67_c00002{height:1164.960000px;}
.h49_c00002{height:1170.000000px;}
.h61_c00002{height:1170.720000px;}
.h62_c00002{height:1170.750000px;}
.h5b_c00002{height:1175.040000px;}
.h5c_c00002{height:1175.250000px;}
.w1_c00002{width:747.000000px;}
.w0_c00002{width:747.360000px;}
.w1a_c00002{width:750.000000px;}
.w19_c00002{width:750.240000px;}
.w18_c00002{width:753.750000px;}
.w17_c00002{width:753.840000px;}
.wd_c00002{width:755.250000px;}
.wc_c00002{width:755.280000px;}
.w14_c00002{width:756.000000px;}
.w15_c00002{width:758.160000px;}
.w16_c00002{width:758.250000px;}
.we_c00002{width:759.600000px;}
.wf_c00002{width:759.750000px;}
.w12_c00002{width:760.320000px;}
.w13_c00002{width:760.500000px;}
.w23_c00002{width:761.760000px;}
.w24_c00002{width:762.000000px;}
.wa_c00002{width:762.480000px;}
.wb_c00002{width:762.750000px;}
.w4_c00002{width:763.200000px;}
.w5_c00002{width:763.500000px;}
.w8_c00002{width:763.920000px;}
.w9_c00002{width:764.250000px;}
.w2_c00002{width:764.640000px;}
.w3_c00002{width:765.000000px;}
.w25_c00002{width:765.360000px;}
.w11_c00002{width:765.750000px;}
.w10_c00002{width:766.080000px;}
.w1c_c00002{width:766.500000px;}
.w1b_c00002{width:766.800000px;}
.w27_c00002{width:768.750000px;}
.w26_c00002{width:768.960000px;}
.w49_c00002{width:770.250000px;}
.w48_c00002{width:770.400000px;}
.w7_c00002{width:771.750000px;}
.w6_c00002{width:771.840000px;}
.w47_c00002{width:773.250000px;}
.w46_c00002{width:773.280000px;}
.w28_c00002{width:774.720000px;}
.w29_c00002{width:774.750000px;}
.w2a_c00002{width:775.440000px;}
.w2b_c00002{width:775.500000px;}
.w30_c00002{width:776.880000px;}
.w31_c00002{width:777.000000px;}
.w2c_c00002{width:777.600000px;}
.w2d_c00002{width:777.750000px;}
.w32_c00002{width:779.040000px;}
.w33_c00002{width:779.250000px;}
.w1f_c00002{width:779.760000px;}
.w20_c00002{width:780.000000px;}
.w2e_c00002{width:781.200000px;}
.w2f_c00002{width:781.500000px;}
.w1d_c00002{width:781.920000px;}
.w1e_c00002{width:782.250000px;}
.w22_c00002{width:783.000000px;}
.w21_c00002{width:783.360000px;}
.w37_c00002{width:786.000000px;}
.w36_c00002{width:786.240000px;}
.w3f_c00002{width:788.250000px;}
.w3e_c00002{width:788.400000px;}
.w35_c00002{width:789.000000px;}
.w34_c00002{width:789.120000px;}
.w3b_c00002{width:790.500000px;}
.w3a_c00002{width:790.560000px;}
.w38_c00002{width:792.720000px;}
.w39_c00002{width:792.750000px;}
.w40_c00002{width:793.440000px;}
.w41_c00002{width:793.500000px;}
.w42_c00002{width:799.920000px;}
.w43_c00002{width:800.250000px;}
.w3d_c00002{width:801.000000px;}
.w3c_c00002{width:801.360000px;}
.w45_c00002{width:804.000000px;}
.w44_c00002{width:804.240000px;}
.x0_c00002{left:0.000000px;}
.x1a2_c00002{left:4.320000px;}
.x1af_c00002{left:5.760000px;}
.x1ab_c00002{left:7.200000px;}
.x1a3_c00002{left:13.680000px;}
.x1b0_c00002{left:15.120000px;}
.x30_c00002{left:19.440000px;}
.x184_c00002{left:25.920000px;}
.x181_c00002{left:28.080000px;}
.x14_c00002{left:30.240000px;}
.xb_c00002{left:32.400000px;}
.x119_c00002{left:34.560000px;}
.x78_c00002{left:36.000000px;}
.xaa_c00002{left:37.440000px;}
.xd2_c00002{left:39.600000px;}
.x156_c00002{left:41.040000px;}
.x56_c00002{left:43.200000px;}
.x5b_c00002{left:44.640000px;}
.x172_c00002{left:46.800000px;}
.x176_c00002{left:48.240000px;}
.x1ad_c00002{left:49.680000px;}
.x1b1_c00002{left:51.120000px;}
.x196_c00002{left:52.560000px;}
.x14b_c00002{left:54.000000px;}
.x13a_c00002{left:55.440000px;}
.xcf_c00002{left:57.600000px;}
.x183_c00002{left:59.040000px;}
.xf0_c00002{left:60.480000px;}
.x18b_c00002{left:61.920000px;}
.x2b_c00002{left:63.360000px;}
.x70_c00002{left:64.800000px;}
.x11e_c00002{left:66.960000px;}
.x79_c00002{left:69.120000px;}
.xdb_c00002{left:71.280000px;}
.x3b_c00002{left:73.440000px;}
.x5c_c00002{left:74.880000px;}
.x5e_c00002{left:76.320000px;}
.x161_c00002{left:77.760000px;}
.xac_c00002{left:79.200000px;}
.xbb_c00002{left:80.640000px;}
.xf6_c00002{left:82.080000px;}
.x52_c00002{left:84.240000px;}
.x15_c00002{left:85.680000px;}
.x10e_c00002{left:87.120000px;}
.x16c_c00002{left:88.560000px;}
.x99_c00002{left:90.720000px;}
.x108_c00002{left:92.880000px;}
.x44_c00002{left:95.040000px;}
.x72_c00002{left:97.200000px;}
.x132_c00002{left:98.640000px;}
.x7a_c00002{left:100.800000px;}
.xb0_c00002{left:102.240000px;}
.x167_c00002{left:103.680000px;}
.xf1_c00002{left:105.120000px;}
.xc_c00002{left:107.280000px;}
.x65_c00002{left:108.720000px;}
.x129_c00002{left:110.160000px;}
.x8a_c00002{left:112.320000px;}
.xf9_c00002{left:113.760000px;}
.xe0_c00002{left:115.200000px;}
.x4f_c00002{left:116.640000px;}
.x5a_c00002{left:118.800000px;}
.x162_c00002{left:120.240000px;}
.x85_c00002{left:121.680000px;}
.x94_c00002{left:123.120000px;}
.xf2_c00002{left:125.280000px;}
.x18a_c00002{left:126.720000px;}
.x33_c00002{left:128.160000px;}
.xd_c00002{left:129.600000px;}
.x114_c00002{left:131.040000px;}
.x171_c00002{left:132.480000px;}
.xc9_c00002{left:133.920000px;}
.x104_c00002{left:135.360000px;}
.xe9_c00002{left:136.800000px;}
.x37_c00002{left:138.240000px;}
.x26_c00002{left:139.680000px;}
.x2_c00002{left:141.120000px;}
.x121_c00002{left:142.560000px;}
.x8b_c00002{left:144.000000px;}
.x9f_c00002{left:145.440000px;}
.xd3_c00002{left:147.600000px;}
.x53_c00002{left:149.760000px;}
.x57_c00002{left:151.200000px;}
.x60_c00002{left:152.640000px;}
.x16f_c00002{left:154.080000px;}
.xb6_c00002{left:156.240000px;}
.xfb_c00002{left:158.400000px;}
.x42_c00002{left:159.840000px;}
.x16_c00002{left:161.280000px;}
.x116_c00002{left:162.720000px;}
.x75_c00002{left:164.160000px;}
.x95_c00002{left:165.600000px;}
.xbf_c00002{left:167.040000px;}
.xdc_c00002{left:168.480000px;}
.x34_c00002{left:170.640000px;}
.x21_c00002{left:172.080000px;}
.x13f_c00002{left:174.240000px;}
.x7b_c00002{left:175.680000px;}
.xa0_c00002{left:177.120000px;}
.xbc_c00002{left:178.560000px;}
.x10d_c00002{left:180.000000px;}
.x3f_c00002{left:181.440000px;}
.x49_c00002{left:182.880000px;}
.x6b_c00002{left:184.320000px;}
.x11a_c00002{left:185.760000px;}
.xa4_c00002{left:187.920000px;}
.xc8_c00002{left:189.360000px;}
.x17d_c00002{left:190.800000px;}
.x31_c00002{left:192.240000px;}
.x3_c00002{left:193.680000px;}
.x143_c00002{left:195.120000px;}
.x120_c00002{left:196.560000px;}
.xcb_c00002{left:198.000000px;}
.x8c_c00002{left:199.440000px;}
.xb2_c00002{left:200.880000px;}
.xd4_c00002{left:203.040000px;}
.x17_c00002{left:205.200000px;}
.x136_c00002{left:206.640000px;}
.x76_c00002{left:208.080000px;}
.xc0_c00002{left:209.520000px;}
.xbd_c00002{left:211.680000px;}
.x47_c00002{left:213.840000px;}
.x43_c00002{left:215.280000px;}
.x10f_c00002{left:216.720000px;}
.x125_c00002{left:218.160000px;}
.x7c_c00002{left:219.600000px;}
.xa5_c00002{left:221.040000px;}
.xfc_c00002{left:222.480000px;}
.x27_c00002{left:224.640000px;}
.xe_c00002{left:226.800000px;}
.x14c_c00002{left:228.240000px;}
.x16b_c00002{left:229.680000px;}
.xad_c00002{left:231.120000px;}
.xce_c00002{left:232.560000px;}
.x109_c00002{left:234.000000px;}
.x4b_c00002{left:236.160000px;}
.x5d_c00002{left:237.600000px;}
.x135_c00002{left:239.040000px;}
.x16d_c00002{left:240.480000px;}
.x8d_c00002{left:242.640000px;}
.xf7_c00002{left:244.800000px;}
.x35_c00002{left:246.960000px;}
.x48_c00002{left:248.400000px;}
.x115_c00002{left:249.840000px;}
.x96_c00002{left:252.000000px;}
.x9a_c00002{left:253.440000px;}
.xd5_c00002{left:255.600000px;}
.x15d_c00002{left:257.760000px;}
.xf_c00002{left:259.200000px;}
.x122_c00002{left:261.360000px;}
.x7d_c00002{left:262.800000px;}
.xab_c00002{left:264.240000px;}
.x102_c00002{left:265.680000px;}
.x151_c00002{left:267.840000px;}
.x4c_c00002{left:269.280000px;}
.x58_c00002{left:270.720000px;}
.x12c_c00002{left:272.160000px;}
.xa6_c00002{left:274.320000px;}
.xff_c00002{left:275.760000px;}
.xea_c00002{left:277.200000px;}
.x4_c00002{left:279.360000px;}
.x18_c00002{left:280.800000px;}
.x146_c00002{left:282.240000px;}
.x133_c00002{left:283.680000px;}
.xae_c00002{left:285.120000px;}
.xb3_c00002{left:286.560000px;}
.x185_c00002{left:288.000000px;}
.x177_c00002{left:289.440000px;}
.x1c_c00002{left:290.880000px;}
.x10_c00002{left:292.320000px;}
.x138_c00002{left:293.760000px;}
.x8e_c00002{left:295.920000px;}
.xd6_c00002{left:298.080000px;}
.x4d_c00002{left:300.240000px;}
.x28_c00002{left:302.400000px;}
.x12d_c00002{left:304.560000px;}
.x86_c00002{left:306.000000px;}
.xb1_c00002{left:308.160000px;}
.xf3_c00002{left:310.320000px;}
.x110_c00002{left:311.760000px;}
.x19_c00002{left:313.200000px;}
.x149_c00002{left:314.640000px;}
.x170_c00002{left:316.080000px;}
.xcc_c00002{left:317.520000px;}
.xd0_c00002{left:318.960000px;}
.x15c_c00002{left:320.400000px;}
.x40_c00002{left:322.560000px;}
.x5_c00002{left:324.000000px;}
.x137_c00002{left:326.160000px;}
.x7e_c00002{left:327.600000px;}
.x106_c00002{left:329.040000px;}
.xdd_c00002{left:331.200000px;}
.x158_c00002{left:332.640000px;}
.x2c_c00002{left:334.080000px;}
.x5f_c00002{left:335.520000px;}
.x77_c00002{left:336.960000px;}
.x8f_c00002{left:339.120000px;}
.x100_c00002{left:340.560000px;}
.xe1_c00002{left:342.720000px;}
.x45_c00002{left:344.160000px;}
.x1d_c00002{left:345.600000px;}
.x13d_c00002{left:347.760000px;}
.x87_c00002{left:349.200000px;}
.x187_c00002{left:350.640000px;}
.x14d_c00002{left:352.080000px;}
.x18f_c00002{left:353.520000px;}
.x3c_c00002{left:354.960000px;}
.x22_c00002{left:356.400000px;}
.x11b_c00002{left:358.560000px;}
.x7f_c00002{left:360.000000px;}
.xb4_c00002{left:361.440000px;}
.xeb_c00002{left:363.600000px;}
.x6f_c00002{left:365.760000px;}
.x2d_c00002{left:367.200000px;}
.x13b_c00002{left:368.640000px;}
.x199_c00002{left:370.080000px;}
.xc5_c00002{left:371.520000px;}
.xd7_c00002{left:373.680000px;}
.x111_c00002{left:375.840000px;}
.x29_c00002{left:378.000000px;}
.x12e_c00002{left:380.160000px;}
.xa1_c00002{left:381.600000px;}
.xb7_c00002{left:383.040000px;}
.xe4_c00002{left:384.480000px;}
.x112_c00002{left:386.640000px;}
.x11_c00002{left:388.800000px;}
.x123_c00002{left:390.240000px;}
.xa7_c00002{left:392.400000px;}
.x14e_c00002{left:393.840000px;}
.xde_c00002{left:395.280000px;}
.x180_c00002{left:396.720000px;}
.x50_c00002{left:398.160000px;}
.x2e_c00002{left:399.600000px;}
.x14a_c00002{left:401.040000px;}
.x173_c00002{left:402.480000px;}
.xc1_c00002{left:403.920000px;}
.xfd_c00002{left:406.080000px;}
.x182_c00002{left:407.520000px;}
.x4a_c00002{left:408.960000px;}
.x1a_c00002{left:410.400000px;}
.x142_c00002{left:411.840000px;}
.x88_c00002{left:413.280000px;}
.xb8_c00002{left:415.440000px;}
.xd8_c00002{left:416.880000px;}
.x154_c00002{left:419.040000px;}
.x38_c00002{left:420.480000px;}
.x147_c00002{left:421.920000px;}
.x11c_c00002{left:423.360000px;}
.x90_c00002{left:425.520000px;}
.x101_c00002{left:427.680000px;}
.x188_c00002{left:429.120000px;}
.x69_c00002{left:430.560000px;}
.x6_c00002{left:432.000000px;}
.x117_c00002{left:433.440000px;}
.x80_c00002{left:435.600000px;}
.x10a_c00002{left:437.760000px;}
.x179_c00002{left:439.200000px;}
.x73_c00002{left:440.640000px;}
.x1e_c00002{left:442.800000px;}
.x12f_c00002{left:444.240000px;}
.xc2_c00002{left:446.400000px;}
.xaf_c00002{left:447.840000px;}
.xe5_c00002{left:449.280000px;}
.x17f_c00002{left:450.720000px;}
.x3d_c00002{left:452.160000px;}
.x7_c00002{left:453.600000px;}
.x55_c00002{left:455.760000px;}
.x91_c00002{left:457.920000px;}
.xbe_c00002{left:460.080000px;}
.x155_c00002{left:461.520000px;}
.x189_c00002{left:462.960000px;}
.x39_c00002{left:464.400000px;}
.x126_c00002{left:466.560000px;}
.x9b_c00002{left:468.000000px;}
.x164_c00002{left:469.440000px;}
.xec_c00002{left:470.880000px;}
.x18d_c00002{left:472.320000px;}
.x6c_c00002{left:473.760000px;}
.x1f_c00002{left:475.200000px;}
.x13c_c00002{left:476.640000px;}
.x16e_c00002{left:478.080000px;}
.x81_c00002{left:479.520000px;}
.xf4_c00002{left:480.960000px;}
.x17b_c00002{left:482.400000px;}
.x66_c00002{left:484.560000px;}
.x3e_c00002{left:486.000000px;}
.x130_c00002{left:488.160000px;}
.xc6_c00002{left:489.600000px;}
.x107_c00002{left:491.040000px;}
.xf8_c00002{left:492.480000px;}
.x18e_c00002{left:493.920000px;}
.x46_c00002{left:495.360000px;}
.x8_c00002{left:497.520000px;}
.x127_c00002{left:498.960000px;}
.x9c_c00002{left:500.400000px;}
.xb9_c00002{left:501.840000px;}
.xe6_c00002{left:503.280000px;}
.x6d_c00002{left:505.440000px;}
.x23_c00002{left:507.600000px;}
.x134_c00002{left:509.040000px;}
.xa2_c00002{left:510.480000px;}
.x82_c00002{left:511.920000px;}
.xfe_c00002{left:513.360000px;}
.x17c_c00002{left:515.520000px;}
.x68_c00002{left:516.960000px;}
.x1b_c00002{left:518.400000px;}
.x124_c00002{left:520.560000px;}
.xa8_c00002{left:522.720000px;}
.xed_c00002{left:524.880000px;}
.x190_c00002{left:526.320000px;}
.x61_c00002{left:527.760000px;}
.x9_c00002{left:529.200000px;}
.x141_c00002{left:530.640000px;}
.x92_c00002{left:532.800000px;}
.x10b_c00002{left:534.960000px;}
.xdf_c00002{left:536.400000px;}
.x15f_c00002{left:537.840000px;}
.x32_c00002{left:539.280000px;}
.x145_c00002{left:540.720000px;}
.xca_c00002{left:542.880000px;}
.xc3_c00002{left:544.320000px;}
.x169_c00002{left:545.760000px;}
.xe7_c00002{left:547.200000px;}
.x157_c00002{left:548.640000px;}
.x2a_c00002{left:550.080000px;}
.x118_c00002{left:551.520000px;}
.xcd_c00002{left:553.680000px;}
.xa9_c00002{left:555.120000px;}
.xee_c00002{left:557.280000px;}
.x18c_c00002{left:558.720000px;}
.x67_c00002{left:560.160000px;}
.x41_c00002{left:561.600000px;}
.x128_c00002{left:563.760000px;}
.x9d_c00002{left:565.920000px;}
.x10c_c00002{left:567.360000px;}
.xd9_c00002{left:568.800000px;}
.x74_c00002{left:570.960000px;}
.x12_c00002{left:572.400000px;}
.x163_c00002{left:573.840000px;}
.x12a_c00002{left:575.280000px;}
.x97_c00002{left:576.720000px;}
.xe2_c00002{left:578.880000px;}
.x15b_c00002{left:581.040000px;}
.x63_c00002{left:582.480000px;}
.x20_c00002{left:583.920000px;}
.x11d_c00002{left:585.360000px;}
.x83_c00002{left:586.800000px;}
.x103_c00002{left:588.240000px;}
.xef_c00002{left:589.680000px;}
.x17a_c00002{left:591.120000px;}
.x62_c00002{left:592.560000px;}
.x36_c00002{left:594.000000px;}
.x139_c00002{left:595.440000px;}
.x11f_c00002{left:596.880000px;}
.xc4_c00002{left:598.320000px;}
.xe3_c00002{left:599.760000px;}
.x175_c00002{left:601.200000px;}
.x59_c00002{left:602.640000px;}
.x6a_c00002{left:604.080000px;}
.x13_c00002{left:605.520000px;}
.x148_c00002{left:606.960000px;}
.x93_c00002{left:609.120000px;}
.x165_c00002{left:610.560000px;}
.xda_c00002{left:612.000000px;}
.x24_c00002{left:614.160000px;}
.x54_c00002{left:616.320000px;}
.x13e_c00002{left:617.760000px;}
.x9e_c00002{left:619.920000px;}
.xfa_c00002{left:622.080000px;}
.x152_c00002{left:624.240000px;}
.x2f_c00002{left:626.400000px;}
.x51_c00002{left:627.840000px;}
.x71_c00002{left:629.280000px;}
.xa3_c00002{left:630.720000px;}
.xb5_c00002{left:632.880000px;}
.x178_c00002{left:634.320000px;}
.x113_c00002{left:635.760000px;}
.x4e_c00002{left:637.200000px;}
.xa_c00002{left:638.640000px;}
.x16a_c00002{left:640.080000px;}
.x84_c00002{left:641.520000px;}
.xf5_c00002{left:643.680000px;}
.x17e_c00002{left:645.120000px;}
.x159_c00002{left:646.560000px;}
.x25_c00002{left:648.720000px;}
.x12b_c00002{left:650.160000px;}
.x150_c00002{left:651.600000px;}
.x89_c00002{left:653.040000px;}
.xe8_c00002{left:654.480000px;}
.x191_c00002{left:655.920000px;}
.x153_c00002{left:657.360000px;}
.x3a_c00002{left:658.800000px;}
.x131_c00002{left:660.960000px;}
.xc7_c00002{left:662.400000px;}
.x98_c00002{left:663.840000px;}
.x105_c00002{left:666.000000px;}
.x15e_c00002{left:668.160000px;}
.x64_c00002{left:669.600000px;}
.x1_c00002{left:671.760000px;}
.x6e_c00002{left:673.920000px;}
.xba_c00002{left:676.080000px;}
.x15a_c00002{left:678.240000px;}
.x160_c00002{left:679.680000px;}
.x19a_c00002{left:681.840000px;}
.x140_c00002{left:683.280000px;}
.x174_c00002{left:684.720000px;}
.x14f_c00002{left:686.880000px;}
.x186_c00002{left:688.320000px;}
.x195_c00002{left:690.480000px;}
.x1a8_c00002{left:691.920000px;}
.x144_c00002{left:693.360000px;}
.x19b_c00002{left:694.800000px;}
.xd1_c00002{left:696.960000px;}
.x1a4_c00002{left:699.120000px;}
.x1a0_c00002{left:701.280000px;}
.x1a1_c00002{left:703.440000px;}
.x193_c00002{left:705.600000px;}
.x19f_c00002{left:707.760000px;}
.x166_c00002{left:709.200000px;}
.x19c_c00002{left:710.640000px;}
.x197_c00002{left:712.080000px;}
.x194_c00002{left:714.240000px;}
.x1b2_c00002{left:716.400000px;}
.x1a6_c00002{left:720.000000px;}
.x1ae_c00002{left:721.440000px;}
.x1aa_c00002{left:722.880000px;}
.x1a9_c00002{left:724.320000px;}
.x19e_c00002{left:725.760000px;}
.x19d_c00002{left:727.920000px;}
.x198_c00002{left:729.360000px;}
.x168_c00002{left:731.520000px;}
.x1a7_c00002{left:735.120000px;}
.x192_c00002{left:738.000000px;}
.x1a5_c00002{left:771.120000px;}
.x1ac_c00002{left:784.080000px;}
@media print{
.va_c00002{vertical-align:-15.360000pt;}
.vc_c00002{vertical-align:-12.800000pt;}
.v6_c00002{vertical-align:-10.240000pt;}
.v4_c00002{vertical-align:-7.680000pt;}
.v8_c00002{vertical-align:-5.120000pt;}
.v5_c00002{vertical-align:-2.560000pt;}
.v0_c00002{vertical-align:0.000000pt;}
.v7_c00002{vertical-align:2.560000pt;}
.v3_c00002{vertical-align:5.120000pt;}
.v2_c00002{vertical-align:7.680000pt;}
.v1_c00002{vertical-align:10.240000pt;}
.v9_c00002{vertical-align:12.800000pt;}
.vb_c00002{vertical-align:15.360000pt;}
.ls0_c00002{letter-spacing:0.000000pt;}
.ls5_c00002{letter-spacing:19.200000pt;}
.ls2_c00002{letter-spacing:21.872000pt;}
.ls3_c00002{letter-spacing:23.408000pt;}
.ls9_c00002{letter-spacing:24.539307pt;}
.ls7_c00002{letter-spacing:35.015680pt;}
.lsc_c00002{letter-spacing:40.458667pt;}
.lsa_c00002{letter-spacing:76.454400pt;}
.ls6_c00002{letter-spacing:77.163520pt;}
.ls4_c00002{letter-spacing:113.756800pt;}
.ls1_c00002{letter-spacing:161.573973pt;}
.lsb_c00002{letter-spacing:187.387520pt;}
.ls8_c00002{letter-spacing:312.539307pt;}
.ws4e_c00002{word-spacing:-29.849600pt;}
.ws39_c00002{word-spacing:-8.995200pt;}
.ws34_c00002{word-spacing:-8.769067pt;}
.ws63_c00002{word-spacing:-8.584960pt;}
.ws44_c00002{word-spacing:-8.465707pt;}
.ws4b_c00002{word-spacing:-8.350080pt;}
.ws3f_c00002{word-spacing:-7.272107pt;}
.ws55_c00002{word-spacing:-6.807680pt;}
.ws14_c00002{word-spacing:-6.709760pt;}
.wse_c00002{word-spacing:-6.372267pt;}
.ws46_c00002{word-spacing:-6.353067pt;}
.ws1b_c00002{word-spacing:-6.334933pt;}
.ws4d_c00002{word-spacing:-6.058667pt;}
.ws20_c00002{word-spacing:-5.847680pt;}
.ws29_c00002{word-spacing:-5.835295pt;}
.ws9_c00002{word-spacing:-4.984658pt;}
.ws52_c00002{word-spacing:-4.958933pt;}
.ws43_c00002{word-spacing:-4.799147pt;}
.ws0_c00002{word-spacing:-4.675840pt;}
.wsd_c00002{word-spacing:-4.521600pt;}
.ws11_c00002{word-spacing:-4.352213pt;}
.ws25_c00002{word-spacing:-4.292053pt;}
.ws51_c00002{word-spacing:-4.272213pt;}
.ws33_c00002{word-spacing:-4.207573pt;}
.ws42_c00002{word-spacing:-3.809157pt;}
.ws40_c00002{word-spacing:-3.767467pt;}
.ws3_c00002{word-spacing:-3.760635pt;}
.ws12_c00002{word-spacing:-3.359147pt;}
.ws49_c00002{word-spacing:-3.032747pt;}
.ws45_c00002{word-spacing:-2.797867pt;}
.ws65_c00002{word-spacing:-2.793600pt;}
.ws2b_c00002{word-spacing:-2.750080pt;}
.ws58_c00002{word-spacing:-2.692267pt;}
.ws4_c00002{word-spacing:-2.681173pt;}
.ws2d_c00002{word-spacing:-2.657920pt;}
.ws59_c00002{word-spacing:-2.641920pt;}
.ws41_c00002{word-spacing:-2.601813pt;}
.ws32_c00002{word-spacing:-2.327467pt;}
.ws19_c00002{word-spacing:-1.916160pt;}
.ws1e_c00002{word-spacing:-1.911680pt;}
.wsc_c00002{word-spacing:-1.879467pt;}
.ws54_c00002{word-spacing:-1.701120pt;}
.ws38_c00002{word-spacing:-1.391360pt;}
.wsf_c00002{word-spacing:-1.269760pt;}
.ws36_c00002{word-spacing:-1.022933pt;}
.ws4f_c00002{word-spacing:-0.900053pt;}
.ws3a_c00002{word-spacing:-0.870267pt;}
.ws1d_c00002{word-spacing:-0.803413pt;}
.ws7_c00002{word-spacing:-0.748160pt;}
.ws57_c00002{word-spacing:-0.564693pt;}
.ws27_c00002{word-spacing:-0.473387pt;}
.ws10_c00002{word-spacing:-0.420267pt;}
.ws22_c00002{word-spacing:-0.097707pt;}
.ws1_c00002{word-spacing:0.000000pt;}
.ws8_c00002{word-spacing:0.199040pt;}
.ws56_c00002{word-spacing:0.233600pt;}
.ws37_c00002{word-spacing:0.267325pt;}
.ws5f_c00002{word-spacing:0.421547pt;}
.ws18_c00002{word-spacing:0.459733pt;}
.ws64_c00002{word-spacing:0.512000pt;}
.ws3e_c00002{word-spacing:0.774400pt;}
.ws3b_c00002{word-spacing:0.786347pt;}
.ws3d_c00002{word-spacing:1.028267pt;}
.ws2e_c00002{word-spacing:1.072650pt;}
.ws21_c00002{word-spacing:1.135147pt;}
.wsa_c00002{word-spacing:1.144533pt;}
.ws24_c00002{word-spacing:1.422933pt;}
.ws2c_c00002{word-spacing:1.504000pt;}
.ws2_c00002{word-spacing:1.798827pt;}
.ws31_c00002{word-spacing:2.150613pt;}
.ws35_c00002{word-spacing:2.351370pt;}
.ws3c_c00002{word-spacing:3.001490pt;}
.ws4a_c00002{word-spacing:3.076267pt;}
.ws61_c00002{word-spacing:3.182080pt;}
.ws16_c00002{word-spacing:3.410560pt;}
.ws30_c00002{word-spacing:3.544747pt;}
.ws66_c00002{word-spacing:3.744640pt;}
.ws26_c00002{word-spacing:3.861760pt;}
.ws28_c00002{word-spacing:4.073600pt;}
.ws23_c00002{word-spacing:4.182400pt;}
.ws67_c00002{word-spacing:4.287360pt;}
.ws17_c00002{word-spacing:4.386133pt;}
.ws2f_c00002{word-spacing:4.412373pt;}
.ws48_c00002{word-spacing:4.556160pt;}
.ws50_c00002{word-spacing:4.711680pt;}
.ws53_c00002{word-spacing:4.751360pt;}
.wsb_c00002{word-spacing:4.862507pt;}
.ws1c_c00002{word-spacing:4.875733pt;}
.ws47_c00002{word-spacing:5.217280pt;}
.ws1f_c00002{word-spacing:5.269547pt;}
.ws5d_c00002{word-spacing:5.519787pt;}
.ws4c_c00002{word-spacing:5.578667pt;}
.ws6_c00002{word-spacing:5.801600pt;}
.ws5e_c00002{word-spacing:5.847680pt;}
.ws2a_c00002{word-spacing:6.034545pt;}
.ws15_c00002{word-spacing:6.793600pt;}
.ws5c_c00002{word-spacing:6.794880pt;}
.ws5b_c00002{word-spacing:6.854827pt;}
.ws62_c00002{word-spacing:7.589333pt;}
.ws1a_c00002{word-spacing:8.392960pt;}
.ws5_c00002{word-spacing:8.824320pt;}
.ws13_c00002{word-spacing:9.126400pt;}
.ws60_c00002{word-spacing:10.909867pt;}
.ws5a_c00002{word-spacing:12.150400pt;}
.ws68_c00002{word-spacing:13.744213pt;}
._0_c00002{width:1.830400pt;}
.fs1c_c00002{font-size:2.560000pt;}
.fs24_c00002{font-size:5.120000pt;}
.fs21_c00002{font-size:7.680000pt;}
.fs15_c00002{font-size:10.240000pt;}
.fs14_c00002{font-size:12.800000pt;}
.fse_c00002{font-size:15.360000pt;}
.fs12_c00002{font-size:17.920000pt;}
.fs16_c00002{font-size:20.480000pt;}
.fs13_c00002{font-size:23.040000pt;}
.fs1b_c00002{font-size:25.600000pt;}
.fs19_c00002{font-size:28.160000pt;}
.fs5_c00002{font-size:30.720000pt;}
.fs6_c00002{font-size:33.280000pt;}
.fsd_c00002{font-size:35.840000pt;}
.fs10_c00002{font-size:38.400000pt;}
.fs4_c00002{font-size:40.960000pt;}
.fs2_c00002{font-size:43.520000pt;}
.fs1_c00002{font-size:46.080000pt;}
.fsb_c00002{font-size:48.640000pt;}
.fs8_c00002{font-size:51.200000pt;}
.fs7_c00002{font-size:53.760000pt;}
.fs9_c00002{font-size:56.320000pt;}
.fs3_c00002{font-size:58.880000pt;}
.fsa_c00002{font-size:61.440000pt;}
.fs0_c00002{font-size:64.000000pt;}
.fsf_c00002{font-size:66.560000pt;}
.fsc_c00002{font-size:69.120000pt;}
.fs11_c00002{font-size:71.680000pt;}
.fs1f_c00002{font-size:74.240000pt;}
.fs20_c00002{font-size:76.800000pt;}
.fs1e_c00002{font-size:79.360000pt;}
.fs23_c00002{font-size:81.920000pt;}
.fs1a_c00002{font-size:84.480000pt;}
.fs18_c00002{font-size:89.600000pt;}
.fs17_c00002{font-size:92.160000pt;}
.fs1d_c00002{font-size:99.840000pt;}
.fs25_c00002{font-size:107.520000pt;}
.fs22_c00002{font-size:181.760000pt;}
.y0_c00002{bottom:0.000000pt;}
.y555_c00002{bottom:5.760000pt;}
.y556_c00002{bottom:6.400000pt;}
.y557_c00002{bottom:7.040000pt;}
.y558_c00002{bottom:8.320000pt;}
.y503_c00002{bottom:11.520000pt;}
.y504_c00002{bottom:14.720000pt;}
.y545_c00002{bottom:19.200000pt;}
.y544_c00002{bottom:21.760000pt;}
.y546_c00002{bottom:23.040000pt;}
.y4f1_c00002{bottom:24.320000pt;}
.y4f2_c00002{bottom:24.960000pt;}
.y3e6_c00002{bottom:25.600000pt;}
.y4f3_c00002{bottom:26.240000pt;}
.y3e8_c00002{bottom:27.520000pt;}
.y3e7_c00002{bottom:28.800000pt;}
.y41e_c00002{bottom:29.440000pt;}
.y3e9_c00002{bottom:30.080000pt;}
.y3eb_c00002{bottom:30.720000pt;}
.y3ea_c00002{bottom:31.360000pt;}
.y327_c00002{bottom:32.000000pt;}
.y233_c00002{bottom:32.640000pt;}
.y235_c00002{bottom:33.280000pt;}
.y3b6_c00002{bottom:33.920000pt;}
.y231_c00002{bottom:34.560000pt;}
.y232_c00002{bottom:35.200000pt;}
.y234_c00002{bottom:35.840000pt;}
.y2f4_c00002{bottom:36.480000pt;}
.y2f6_c00002{bottom:37.120000pt;}
.y2f5_c00002{bottom:37.760000pt;}
.y208_c00002{bottom:38.400000pt;}
.y429_c00002{bottom:39.040000pt;}
.y20b_c00002{bottom:39.680000pt;}
.y2c1_c00002{bottom:40.320000pt;}
.y209_c00002{bottom:40.960000pt;}
.y207_c00002{bottom:41.600000pt;}
.y20a_c00002{bottom:42.240000pt;}
.yab_c00002{bottom:42.880000pt;}
.y5e_c00002{bottom:43.520000pt;}
.y5f_c00002{bottom:44.160000pt;}
.y60_c00002{bottom:44.800000pt;}
.y18a_c00002{bottom:45.440000pt;}
.yac_c00002{bottom:46.080000pt;}
.y5c_c00002{bottom:46.720000pt;}
.y5d_c00002{bottom:47.360000pt;}
.y5b_c00002{bottom:48.000000pt;}
.y14c_c00002{bottom:48.640000pt;}
.y270_c00002{bottom:49.280000pt;}
.y14e_c00002{bottom:49.920000pt;}
.y354_c00002{bottom:50.560000pt;}
.y14b_c00002{bottom:51.200000pt;}
.y14d_c00002{bottom:51.840000pt;}
.y14a_c00002{bottom:52.480000pt;}
.y14f_c00002{bottom:53.120000pt;}
.y353_c00002{bottom:53.760000pt;}
.y52b_c00002{bottom:54.400000pt;}
.y465_c00002{bottom:55.040000pt;}
.y461_c00002{bottom:55.680000pt;}
.y462_c00002{bottom:56.320000pt;}
.y464_c00002{bottom:56.960000pt;}
.y463_c00002{bottom:57.600000pt;}
.y4a5_c00002{bottom:58.240000pt;}
.y4a6_c00002{bottom:58.880000pt;}
.y403_c00002{bottom:60.160000pt;}
.y405_c00002{bottom:60.800000pt;}
.y401_c00002{bottom:61.440000pt;}
.y402_c00002{bottom:62.080000pt;}
.y404_c00002{bottom:62.720000pt;}
.y3a3_c00002{bottom:63.360000pt;}
.y4ef_c00002{bottom:64.000000pt;}
.y3a7_c00002{bottom:64.640000pt;}
.y3a6_c00002{bottom:65.280000pt;}
.y3a2_c00002{bottom:65.920000pt;}
.y4f0_c00002{bottom:66.560000pt;}
.y3a4_c00002{bottom:67.200000pt;}
.y3a5_c00002{bottom:67.840000pt;}
.y3e5_c00002{bottom:68.480000pt;}
.y41d_c00002{bottom:69.120000pt;}
.y22f_c00002{bottom:69.760000pt;}
.y230_c00002{bottom:70.400000pt;}
.y326_c00002{bottom:71.040000pt;}
.ye0_c00002{bottom:71.680000pt;}
.ydd_c00002{bottom:72.320000pt;}
.ydc_c00002{bottom:72.960000pt;}
.yde_c00002{bottom:73.600000pt;}
.ydf_c00002{bottom:74.240000pt;}
.y2f2_c00002{bottom:74.880000pt;}
.y2f3_c00002{bottom:75.520000pt;}
.y1d7_c00002{bottom:76.160000pt;}
.y428_c00002{bottom:76.800000pt;}
.y1d8_c00002{bottom:77.440000pt;}
.y1da_c00002{bottom:78.080000pt;}
.y1d9_c00002{bottom:78.720000pt;}
.ya6_c00002{bottom:79.360000pt;}
.y1d6_c00002{bottom:80.000000pt;}
.yaa_c00002{bottom:80.640000pt;}
.ya8_c00002{bottom:81.280000pt;}
.ya7_c00002{bottom:81.920000pt;}
.y59_c00002{bottom:82.560000pt;}
.y333_c00002{bottom:83.200000pt;}
.y189_c00002{bottom:83.840000pt;}
.y58_c00002{bottom:84.480000pt;}
.y57_c00002{bottom:85.120000pt;}
.y5a_c00002{bottom:85.760000pt;}
.ya9_c00002{bottom:86.400000pt;}
.y26d_c00002{bottom:87.040000pt;}
.y149_c00002{bottom:87.680000pt;}
.y26e_c00002{bottom:88.320000pt;}
.y26f_c00002{bottom:88.960000pt;}
.y147_c00002{bottom:89.600000pt;}
.y148_c00002{bottom:90.240000pt;}
.y146_c00002{bottom:90.880000pt;}
.y352_c00002{bottom:91.520000pt;}
.y351_c00002{bottom:92.160000pt;}
.y45f_c00002{bottom:92.800000pt;}
.y53a_c00002{bottom:93.440000pt;}
.y45c_c00002{bottom:94.080000pt;}
.y52a_c00002{bottom:94.720000pt;}
.y45d_c00002{bottom:95.360000pt;}
.y45e_c00002{bottom:96.000000pt;}
.y460_c00002{bottom:96.640000pt;}
.y501_c00002{bottom:97.280000pt;}
.y502_c00002{bottom:97.920000pt;}
.y3fd_c00002{bottom:98.560000pt;}
.y400_c00002{bottom:99.200000pt;}
.y3ff_c00002{bottom:99.840000pt;}
.y3fc_c00002{bottom:100.480000pt;}
.y39f_c00002{bottom:101.120000pt;}
.y3fe_c00002{bottom:101.760000pt;}
.y4ee_c00002{bottom:102.400000pt;}
.y4f6_c00002{bottom:103.040000pt;}
.y39e_c00002{bottom:103.680000pt;}
.y4d3_c00002{bottom:104.320000pt;}
.y3a0_c00002{bottom:104.960000pt;}
.y3a1_c00002{bottom:105.600000pt;}
.y54c_c00002{bottom:106.240000pt;}
.y41c_c00002{bottom:106.880000pt;}
.y41b_c00002{bottom:107.520000pt;}
.y22e_c00002{bottom:108.160000pt;}
.yd9_c00002{bottom:108.800000pt;}
.y325_c00002{bottom:109.440000pt;}
.ydb_c00002{bottom:110.080000pt;}
.yd8_c00002{bottom:110.720000pt;}
.yd7_c00002{bottom:111.360000pt;}
.y2f1_c00002{bottom:112.000000pt;}
.yda_c00002{bottom:112.640000pt;}
.y29a_c00002{bottom:113.280000pt;}
.y29b_c00002{bottom:113.920000pt;}
.y29c_c00002{bottom:114.560000pt;}
.y299_c00002{bottom:115.200000pt;}
.y1d4_c00002{bottom:115.840000pt;}
.y1d3_c00002{bottom:116.480000pt;}
.y2c0_c00002{bottom:117.120000pt;}
.y1d2_c00002{bottom:117.760000pt;}
.ya4_c00002{bottom:118.400000pt;}
.y1d5_c00002{bottom:119.040000pt;}
.y2bf_c00002{bottom:119.680000pt;}
.y53_c00002{bottom:120.320000pt;}
.y56_c00002{bottom:120.960000pt;}
.y54_c00002{bottom:121.600000pt;}
.ya5_c00002{bottom:122.240000pt;}
.y52_c00002{bottom:122.880000pt;}
.y55_c00002{bottom:123.520000pt;}
.y51_c00002{bottom:124.160000pt;}
.y476_c00002{bottom:124.800000pt;}
.y142_c00002{bottom:125.440000pt;}
.y143_c00002{bottom:126.080000pt;}
.y144_c00002{bottom:126.720000pt;}
.y350_c00002{bottom:127.360000pt;}
.y141_c00002{bottom:128.000000pt;}
.y30d_c00002{bottom:128.640000pt;}
.y145_c00002{bottom:129.280000pt;}
.y4b1_c00002{bottom:129.920000pt;}
.y34f_c00002{bottom:130.560000pt;}
.y459_c00002{bottom:131.200000pt;}
.y575_c00002{bottom:131.840000pt;}
.y457_c00002{bottom:132.480000pt;}
.y458_c00002{bottom:133.120000pt;}
.y45a_c00002{bottom:133.760000pt;}
.y45b_c00002{bottom:134.400000pt;}
.y4a3_c00002{bottom:135.040000pt;}
.y576_c00002{bottom:135.680000pt;}
.y4a1_c00002{bottom:136.320000pt;}
.y4a2_c00002{bottom:136.960000pt;}
.y4a4_c00002{bottom:137.600000pt;}
.y500_c00002{bottom:138.240000pt;}
.y4ea_c00002{bottom:138.880000pt;}
.y39d_c00002{bottom:139.520000pt;}
.y4ec_c00002{bottom:140.160000pt;}
.y4ed_c00002{bottom:140.800000pt;}
.y4eb_c00002{bottom:141.440000pt;}
.y539_c00002{bottom:142.080000pt;}
.y39c_c00002{bottom:142.720000pt;}
.y54a_c00002{bottom:143.360000pt;}
.y54b_c00002{bottom:144.000000pt;}
.y41a_c00002{bottom:144.640000pt;}
.y4d2_c00002{bottom:145.280000pt;}
.y3fb_c00002{bottom:145.920000pt;}
.y22d_c00002{bottom:146.560000pt;}
.yd3_c00002{bottom:147.200000pt;}
.yd4_c00002{bottom:147.840000pt;}
.y22c_c00002{bottom:148.480000pt;}
.yd1_c00002{bottom:149.120000pt;}
.yd2_c00002{bottom:149.760000pt;}
.yd6_c00002{bottom:150.400000pt;}
.yd5_c00002{bottom:151.040000pt;}
.y298_c00002{bottom:151.680000pt;}
.y297_c00002{bottom:152.320000pt;}
.y295_c00002{bottom:152.960000pt;}
.y296_c00002{bottom:153.600000pt;}
.y1cf_c00002{bottom:154.240000pt;}
.y1d0_c00002{bottom:154.880000pt;}
.y1d1_c00002{bottom:155.520000pt;}
.y1ce_c00002{bottom:156.160000pt;}
.ya0_c00002{bottom:156.800000pt;}
.ya1_c00002{bottom:157.440000pt;}
.ya2_c00002{bottom:158.080000pt;}
.y4f_c00002{bottom:158.720000pt;}
.y4d_c00002{bottom:159.360000pt;}
.y50_c00002{bottom:160.000000pt;}
.ya3_c00002{bottom:160.640000pt;}
.y4c_c00002{bottom:161.280000pt;}
.y4b_c00002{bottom:161.920000pt;}
.y4e_c00002{bottom:162.560000pt;}
.y205_c00002{bottom:163.200000pt;}
.y30c_c00002{bottom:163.840000pt;}
.y13c_c00002{bottom:164.480000pt;}
.y13f_c00002{bottom:165.120000pt;}
.y206_c00002{bottom:165.760000pt;}
.y13d_c00002{bottom:166.400000pt;}
.y13e_c00002{bottom:167.040000pt;}
.y140_c00002{bottom:167.680000pt;}
.y34e_c00002{bottom:168.320000pt;}
.y188_c00002{bottom:168.960000pt;}
.y456_c00002{bottom:169.600000pt;}
.y3e2_c00002{bottom:170.240000pt;}
.y3e1_c00002{bottom:170.880000pt;}
.y3e3_c00002{bottom:171.520000pt;}
.y3e0_c00002{bottom:172.160000pt;}
.y26c_c00002{bottom:172.800000pt;}
.y26b_c00002{bottom:173.440000pt;}
.y3e4_c00002{bottom:174.080000pt;}
.y49f_c00002{bottom:174.720000pt;}
.y49e_c00002{bottom:175.360000pt;}
.y4a0_c00002{bottom:176.000000pt;}
.y4ff_c00002{bottom:176.640000pt;}
.y57a_c00002{bottom:177.280000pt;}
.y4fe_c00002{bottom:177.920000pt;}
.y39b_c00002{bottom:178.560000pt;}
.y57b_c00002{bottom:179.200000pt;}
.y538_c00002{bottom:179.840000pt;}
.y399_c00002{bottom:180.480000pt;}
.y529_c00002{bottom:181.120000pt;}
.y39a_c00002{bottom:181.760000pt;}
.y535_c00002{bottom:182.400000pt;}
.y536_c00002{bottom:183.040000pt;}
.y537_c00002{bottom:183.680000pt;}
.y3f9_c00002{bottom:184.320000pt;}
.y22a_c00002{bottom:184.960000pt;}
.y22b_c00002{bottom:185.600000pt;}
.y3fa_c00002{bottom:186.240000pt;}
.ycd_c00002{bottom:186.880000pt;}
.y229_c00002{bottom:187.520000pt;}
.ycf_c00002{bottom:188.160000pt;}
.yce_c00002{bottom:188.800000pt;}
.yd0_c00002{bottom:189.440000pt;}
.y3df_c00002{bottom:190.080000pt;}
.y293_c00002{bottom:190.720000pt;}
.y292_c00002{bottom:191.360000pt;}
.y294_c00002{bottom:192.000000pt;}
.y1cc_c00002{bottom:192.640000pt;}
.y1cd_c00002{bottom:193.280000pt;}
.y1cb_c00002{bottom:193.920000pt;}
.y9c_c00002{bottom:194.560000pt;}
.y9d_c00002{bottom:195.200000pt;}
.y2ef_c00002{bottom:195.840000pt;}
.y2f0_c00002{bottom:196.480000pt;}
.y335_c00002{bottom:197.120000pt;}
.y4a_c00002{bottom:197.760000pt;}
.y9e_c00002{bottom:198.400000pt;}
.y9f_c00002{bottom:199.040000pt;}
.y49_c00002{bottom:199.680000pt;}
.y48_c00002{bottom:200.320000pt;}
.y3c1_c00002{bottom:200.960000pt;}
.y3c0_c00002{bottom:201.600000pt;}
.y137_c00002{bottom:202.240000pt;}
.y138_c00002{bottom:202.880000pt;}
.y13b_c00002{bottom:203.520000pt;}
.y136_c00002{bottom:204.160000pt;}
.y135_c00002{bottom:204.800000pt;}
.y139_c00002{bottom:205.440000pt;}
.y13a_c00002{bottom:206.080000pt;}
.y183_c00002{bottom:206.720000pt;}
.y34d_c00002{bottom:207.360000pt;}
.y184_c00002{bottom:208.000000pt;}
.y185_c00002{bottom:208.640000pt;}
.y186_c00002{bottom:209.280000pt;}
.y187_c00002{bottom:209.920000pt;}
.y26a_c00002{bottom:210.560000pt;}
.y267_c00002{bottom:211.200000pt;}
.y268_c00002{bottom:211.840000pt;}
.y269_c00002{bottom:212.480000pt;}
.y49b_c00002{bottom:213.120000pt;}
.y49c_c00002{bottom:213.760000pt;}
.y49d_c00002{bottom:214.400000pt;}
.y549_c00002{bottom:215.040000pt;}
.y524_c00002{bottom:215.680000pt;}
.y398_c00002{bottom:216.320000pt;}
.y528_c00002{bottom:216.960000pt;}
.y526_c00002{bottom:217.600000pt;}
.y397_c00002{bottom:218.240000pt;}
.y527_c00002{bottom:219.520000pt;}
.y51b_c00002{bottom:220.160000pt;}
.y525_c00002{bottom:220.800000pt;}
.y4e9_c00002{bottom:221.440000pt;}
.y567_c00002{bottom:222.080000pt;}
.y3f8_c00002{bottom:222.720000pt;}
.y324_c00002{bottom:223.360000pt;}
.y227_c00002{bottom:224.000000pt;}
.y3f7_c00002{bottom:224.640000pt;}
.y226_c00002{bottom:225.280000pt;}
.y225_c00002{bottom:225.920000pt;}
.y228_c00002{bottom:226.560000pt;}
.y28f_c00002{bottom:227.200000pt;}
.y375_c00002{bottom:227.840000pt;}
.y291_c00002{bottom:228.480000pt;}
.y28e_c00002{bottom:229.120000pt;}
.y290_c00002{bottom:229.760000pt;}
.y1ca_c00002{bottom:230.400000pt;}
.y1c9_c00002{bottom:231.040000pt;}
.y1c7_c00002{bottom:231.680000pt;}
.y1c8_c00002{bottom:232.320000pt;}
.ycb_c00002{bottom:232.960000pt;}
.ycc_c00002{bottom:233.600000pt;}
.y37d_c00002{bottom:234.240000pt;}
.y3b3_c00002{bottom:234.880000pt;}
.y45_c00002{bottom:235.520000pt;}
.y47_c00002{bottom:236.160000pt;}
.y9a_c00002{bottom:236.800000pt;}
.y9b_c00002{bottom:237.440000pt;}
.y46_c00002{bottom:238.080000pt;}
.y44_c00002{bottom:238.720000pt;}
.y3c8_c00002{bottom:239.360000pt;}
.y202_c00002{bottom:240.000000pt;}
.y203_c00002{bottom:240.640000pt;}
.y133_c00002{bottom:241.280000pt;}
.y201_c00002{bottom:241.920000pt;}
.y204_c00002{bottom:242.560000pt;}
.y134_c00002{bottom:243.200000pt;}
.y132_c00002{bottom:243.840000pt;}
.y180_c00002{bottom:244.480000pt;}
.y332_c00002{bottom:245.120000pt;}
.y30b_c00002{bottom:245.760000pt;}
.y455_c00002{bottom:246.400000pt;}
.y181_c00002{bottom:247.040000pt;}
.y182_c00002{bottom:247.680000pt;}
.y265_c00002{bottom:248.320000pt;}
.y454_c00002{bottom:248.960000pt;}
.y263_c00002{bottom:249.600000pt;}
.y264_c00002{bottom:250.240000pt;}
.y266_c00002{bottom:250.880000pt;}
.y499_c00002{bottom:251.520000pt;}
.y49a_c00002{bottom:252.160000pt;}
.y554_c00002{bottom:252.800000pt;}
.y531_c00002{bottom:253.440000pt;}
.y54f_c00002{bottom:254.080000pt;}
.y394_c00002{bottom:255.360000pt;}
.y392_c00002{bottom:256.000000pt;}
.y391_c00002{bottom:256.640000pt;}
.y566_c00002{bottom:257.280000pt;}
.y396_c00002{bottom:257.920000pt;}
.y393_c00002{bottom:258.560000pt;}
.y395_c00002{bottom:259.200000pt;}
.y4fc_c00002{bottom:259.840000pt;}
.y4fd_c00002{bottom:260.480000pt;}
.y323_c00002{bottom:261.120000pt;}
.y322_c00002{bottom:261.760000pt;}
.y31f_c00002{bottom:262.400000pt;}
.y3f5_c00002{bottom:263.040000pt;}
.y3f6_c00002{bottom:263.680000pt;}
.y321_c00002{bottom:264.320000pt;}
.y320_c00002{bottom:264.960000pt;}
.y46c_c00002{bottom:265.600000pt;}
.y3de_c00002{bottom:266.240000pt;}
.y3dd_c00002{bottom:266.880000pt;}
.y374_c00002{bottom:267.520000pt;}
.y1c4_c00002{bottom:268.160000pt;}
.y1c6_c00002{bottom:268.800000pt;}
.y372_c00002{bottom:269.440000pt;}
.y373_c00002{bottom:270.080000pt;}
.y1c5_c00002{bottom:270.720000pt;}
.yca_c00002{bottom:271.360000pt;}
.y97_c00002{bottom:272.000000pt;}
.y99_c00002{bottom:272.640000pt;}
.y3f_c00002{bottom:273.280000pt;}
.y98_c00002{bottom:273.920000pt;}
.y40_c00002{bottom:274.560000pt;}
.y43_c00002{bottom:275.200000pt;}
.y41_c00002{bottom:275.840000pt;}
.y3e_c00002{bottom:276.480000pt;}
.y42_c00002{bottom:277.120000pt;}
.y472_c00002{bottom:277.760000pt;}
.y1ff_c00002{bottom:278.400000pt;}
.y200_c00002{bottom:279.040000pt;}
.y131_c00002{bottom:279.680000pt;}
.y42a_c00002{bottom:280.320000pt;}
.y1fe_c00002{bottom:280.960000pt;}
.y12f_c00002{bottom:281.600000pt;}
.y130_c00002{bottom:282.240000pt;}
.y2be_c00002{bottom:282.880000pt;}
.y17f_c00002{bottom:283.520000pt;}
.y331_c00002{bottom:284.160000pt;}
.y17d_c00002{bottom:284.800000pt;}
.y17e_c00002{bottom:285.440000pt;}
.y25e_c00002{bottom:286.080000pt;}
.y260_c00002{bottom:286.720000pt;}
.y453_c00002{bottom:287.360000pt;}
.y25f_c00002{bottom:288.000000pt;}
.y261_c00002{bottom:288.640000pt;}
.y262_c00002{bottom:289.280000pt;}
.y498_c00002{bottom:289.920000pt;}
.y497_c00002{bottom:290.560000pt;}
.y4b0_c00002{bottom:291.200000pt;}
.y553_c00002{bottom:291.840000pt;}
.y54e_c00002{bottom:292.480000pt;}
.y54d_c00002{bottom:293.120000pt;}
.y38f_c00002{bottom:293.760000pt;}
.y390_c00002{bottom:294.400000pt;}
.y540_c00002{bottom:295.040000pt;}
.y3da_c00002{bottom:295.680000pt;}
.y3d9_c00002{bottom:296.320000pt;}
.y38e_c00002{bottom:296.960000pt;}
.y3db_c00002{bottom:297.600000pt;}
.y50c_c00002{bottom:298.240000pt;}
.y50b_c00002{bottom:298.880000pt;}
.y31e_c00002{bottom:299.520000pt;}
.y31d_c00002{bottom:300.160000pt;}
.y31b_c00002{bottom:300.800000pt;}
.y3f4_c00002{bottom:301.440000pt;}
.y427_c00002{bottom:302.080000pt;}
.y31a_c00002{bottom:302.720000pt;}
.y31c_c00002{bottom:303.360000pt;}
.y3dc_c00002{bottom:304.000000pt;}
.y426_c00002{bottom:304.640000pt;}
.y36f_c00002{bottom:305.280000pt;}
.y1c1_c00002{bottom:305.920000pt;}
.y1c3_c00002{bottom:306.560000pt;}
.y1c2_c00002{bottom:307.200000pt;}
.y370_c00002{bottom:307.840000pt;}
.y371_c00002{bottom:308.480000pt;}
.yc9_c00002{bottom:309.120000pt;}
.y94_c00002{bottom:309.760000pt;}
.y95_c00002{bottom:310.400000pt;}
.y96_c00002{bottom:311.040000pt;}
.y224_c00002{bottom:311.680000pt;}
.y3a_c00002{bottom:312.320000pt;}
.y3c_c00002{bottom:312.960000pt;}
.y28c_c00002{bottom:313.600000pt;}
.y28d_c00002{bottom:314.240000pt;}
.y3b_c00002{bottom:314.880000pt;}
.y3d_c00002{bottom:315.520000pt;}
.y1fd_c00002{bottom:316.160000pt;}
.y3c7_c00002{bottom:316.800000pt;}
.y2bc_c00002{bottom:317.440000pt;}
.y2bd_c00002{bottom:318.080000pt;}
.y1fc_c00002{bottom:318.720000pt;}
.y177_c00002{bottom:319.360000pt;}
.y2bb_c00002{bottom:320.000000pt;}
.y179_c00002{bottom:320.640000pt;}
.y17c_c00002{bottom:321.280000pt;}
.y330_c00002{bottom:321.920000pt;}
.y17a_c00002{bottom:322.560000pt;}
.y178_c00002{bottom:323.200000pt;}
.y17b_c00002{bottom:323.840000pt;}
.y25c_c00002{bottom:324.480000pt;}
.y452_c00002{bottom:325.120000pt;}
.y3bf_c00002{bottom:325.760000pt;}
.y12d_c00002{bottom:326.400000pt;}
.y25d_c00002{bottom:327.040000pt;}
.y12e_c00002{bottom:327.680000pt;}
.y3be_c00002{bottom:328.320000pt;}
.y3bd_c00002{bottom:328.960000pt;}
.y12c_c00002{bottom:329.600000pt;}
.y2ed_c00002{bottom:330.240000pt;}
.y2e9_c00002{bottom:330.880000pt;}
.y2e8_c00002{bottom:331.520000pt;}
.y38d_c00002{bottom:332.160000pt;}
.y516_c00002{bottom:332.800000pt;}
.y515_c00002{bottom:333.440000pt;}
.y56e_c00002{bottom:334.080000pt;}
.y38c_c00002{bottom:334.720000pt;}
.y517_c00002{bottom:335.360000pt;}
.y519_c00002{bottom:336.000000pt;}
.y51a_c00002{bottom:336.640000pt;}
.y530_c00002{bottom:337.280000pt;}
.y518_c00002{bottom:337.920000pt;}
.y318_c00002{bottom:338.560000pt;}
.y319_c00002{bottom:339.200000pt;}
.y523_c00002{bottom:339.840000pt;}
.y425_c00002{bottom:340.480000pt;}
.y316_c00002{bottom:341.120000pt;}
.y317_c00002{bottom:341.760000pt;}
.y46b_c00002{bottom:342.400000pt;}
.y3d8_c00002{bottom:343.040000pt;}
.y1be_c00002{bottom:343.680000pt;}
.y36e_c00002{bottom:344.320000pt;}
.y1c0_c00002{bottom:344.960000pt;}
.y36c_c00002{bottom:345.600000pt;}
.y36d_c00002{bottom:346.240000pt;}
.y1bf_c00002{bottom:346.880000pt;}
.y92_c00002{bottom:347.520000pt;}
.yc8_c00002{bottom:348.160000pt;}
.y93_c00002{bottom:348.800000pt;}
.y223_c00002{bottom:349.440000pt;}
.y91_c00002{bottom:350.080000pt;}
.y38_c00002{bottom:350.720000pt;}
.y39_c00002{bottom:351.360000pt;}
.y2eb_c00002{bottom:352.000000pt;}
.y35_c00002{bottom:352.640000pt;}
.y36_c00002{bottom:353.280000pt;}
.y37_c00002{bottom:353.920000pt;}
.y1f9_c00002{bottom:354.560000pt;}
.y2ee_c00002{bottom:355.200000pt;}
.y2ba_c00002{bottom:355.840000pt;}
.y2b9_c00002{bottom:356.480000pt;}
.y1fa_c00002{bottom:357.120000pt;}
.y1fb_c00002{bottom:357.760000pt;}
.y174_c00002{bottom:358.400000pt;}
.y2b8_c00002{bottom:359.040000pt;}
.y32e_c00002{bottom:359.680000pt;}
.y32f_c00002{bottom:360.320000pt;}
.y173_c00002{bottom:360.960000pt;}
.y175_c00002{bottom:361.600000pt;}
.y176_c00002{bottom:362.240000pt;}
.y37c_c00002{bottom:362.880000pt;}
.y3bc_c00002{bottom:363.520000pt;}
.y30a_c00002{bottom:364.160000pt;}
.y25a_c00002{bottom:364.800000pt;}
.y25b_c00002{bottom:365.440000pt;}
.y129_c00002{bottom:366.080000pt;}
.y309_c00002{bottom:366.720000pt;}
.y12a_c00002{bottom:367.360000pt;}
.y12b_c00002{bottom:368.000000pt;}
.y4e1_c00002{bottom:368.640000pt;}
.y583_c00002{bottom:369.280000pt;}
.y582_c00002{bottom:369.920000pt;}
.y2e7_c00002{bottom:370.560000pt;}
.y2ea_c00002{bottom:371.200000pt;}
.y2ec_c00002{bottom:371.840000pt;}
.y552_c00002{bottom:372.480000pt;}
.y587_c00002{bottom:373.120000pt;}
.y496_c00002{bottom:374.400000pt;}
.y522_c00002{bottom:375.040000pt;}
.y495_c00002{bottom:375.680000pt;}
.y494_c00002{bottom:376.320000pt;}
.y548_c00002{bottom:376.960000pt;}
.y314_c00002{bottom:377.600000pt;}
.y521_c00002{bottom:378.240000pt;}
.y424_c00002{bottom:378.880000pt;}
.y313_c00002{bottom:379.520000pt;}
.y315_c00002{bottom:380.160000pt;}
.y38b_c00002{bottom:380.800000pt;}
.y38a_c00002{bottom:381.440000pt;}
.y36b_c00002{bottom:382.080000pt;}
.y36a_c00002{bottom:382.720000pt;}
.y1ba_c00002{bottom:383.360000pt;}
.y432_c00002{bottom:384.000000pt;}
.y369_c00002{bottom:384.640000pt;}
.y1bb_c00002{bottom:385.280000pt;}
.y1bc_c00002{bottom:385.920000pt;}
.y1bd_c00002{bottom:386.560000pt;}
.y8f_c00002{bottom:387.200000pt;}
.y46f_c00002{bottom:387.840000pt;}
.yc7_c00002{bottom:388.480000pt;}
.y8e_c00002{bottom:389.120000pt;}
.y8d_c00002{bottom:389.760000pt;}
.y90_c00002{bottom:390.400000pt;}
.y3c6_c00002{bottom:391.040000pt;}
.y28a_c00002{bottom:391.680000pt;}
.y28b_c00002{bottom:392.320000pt;}
.y1f7_c00002{bottom:392.960000pt;}
.y1f5_c00002{bottom:393.600000pt;}
.y2b7_c00002{bottom:394.240000pt;}
.y1f6_c00002{bottom:394.880000pt;}
.y1f8_c00002{bottom:395.520000pt;}
.y170_c00002{bottom:396.160000pt;}
.y2b6_c00002{bottom:396.800000pt;}
.y172_c00002{bottom:397.440000pt;}
.y32d_c00002{bottom:398.080000pt;}
.y34_c00002{bottom:398.720000pt;}
.y16f_c00002{bottom:399.360000pt;}
.y171_c00002{bottom:400.000000pt;}
.y259_c00002{bottom:400.640000pt;}
.y450_c00002{bottom:401.280000pt;}
.y451_c00002{bottom:401.920000pt;}
.y258_c00002{bottom:402.560000pt;}
.y127_c00002{bottom:403.200000pt;}
.y125_c00002{bottom:403.840000pt;}
.y3bb_c00002{bottom:404.480000pt;}
.y128_c00002{bottom:405.120000pt;}
.y126_c00002{bottom:405.760000pt;}
.y308_c00002{bottom:406.400000pt;}
.y4e0_c00002{bottom:407.040000pt;}
.y580_c00002{bottom:407.680000pt;}
.y581_c00002{bottom:408.320000pt;}
.y4df_c00002{bottom:408.960000pt;}
.y2e3_c00002{bottom:409.600000pt;}
.y2e5_c00002{bottom:410.240000pt;}
.y2e6_c00002{bottom:410.880000pt;}
.y3d7_c00002{bottom:411.520000pt;}
.y2e4_c00002{bottom:412.160000pt;}
.y3d5_c00002{bottom:412.800000pt;}
.y493_c00002{bottom:414.080000pt;}
.y3d6_c00002{bottom:414.720000pt;}
.y56d_c00002{bottom:416.000000pt;}
.y3b2_c00002{bottom:416.640000pt;}
.y3b1_c00002{bottom:417.280000pt;}
.y3b0_c00002{bottom:417.920000pt;}
.y388_c00002{bottom:418.560000pt;}
.y389_c00002{bottom:419.200000pt;}
.y366_c00002{bottom:419.840000pt;}
.y367_c00002{bottom:420.480000pt;}
.y368_c00002{bottom:421.120000pt;}
.y1b7_c00002{bottom:421.760000pt;}
.y364_c00002{bottom:422.400000pt;}
.y365_c00002{bottom:423.040000pt;}
.y1b8_c00002{bottom:423.680000pt;}
.y8b_c00002{bottom:424.320000pt;}
.y1b9_c00002{bottom:424.960000pt;}
.y8a_c00002{bottom:425.600000pt;}
.y32c_c00002{bottom:426.240000pt;}
.y8c_c00002{bottom:426.880000pt;}
.y89_c00002{bottom:427.520000pt;}
.y289_c00002{bottom:428.160000pt;}
.y287_c00002{bottom:428.800000pt;}
.y3c5_c00002{bottom:429.440000pt;}
.y3c4_c00002{bottom:430.080000pt;}
.y286_c00002{bottom:430.720000pt;}
.y288_c00002{bottom:431.360000pt;}
.y2b5_c00002{bottom:432.000000pt;}
.y2b4_c00002{bottom:432.640000pt;}
.y3f3_c00002{bottom:433.280000pt;}
.y221_c00002{bottom:433.920000pt;}
.y222_c00002{bottom:434.560000pt;}
.y16d_c00002{bottom:435.200000pt;}
.y16e_c00002{bottom:435.840000pt;}
.y32_c00002{bottom:436.480000pt;}
.y33_c00002{bottom:437.120000pt;}
.y16c_c00002{bottom:437.760000pt;}
.y257_c00002{bottom:438.400000pt;}
.y31_c00002{bottom:439.040000pt;}
.y30_c00002{bottom:439.680000pt;}
.y124_c00002{bottom:440.320000pt;}
.y1f4_c00002{bottom:440.960000pt;}
.y122_c00002{bottom:441.600000pt;}
.y307_c00002{bottom:442.240000pt;}
.y3ba_c00002{bottom:442.880000pt;}
.y123_c00002{bottom:443.520000pt;}
.y120_c00002{bottom:444.160000pt;}
.y121_c00002{bottom:444.800000pt;}
.y44d_c00002{bottom:445.440000pt;}
.y44f_c00002{bottom:446.720000pt;}
.y584_c00002{bottom:447.360000pt;}
.y44b_c00002{bottom:448.000000pt;}
.y44c_c00002{bottom:448.640000pt;}
.y44e_c00002{bottom:449.280000pt;}
.y55f_c00002{bottom:449.920000pt;}
.y492_c00002{bottom:450.560000pt;}
.y4da_c00002{bottom:451.200000pt;}
.y4de_c00002{bottom:451.840000pt;}
.y491_c00002{bottom:452.480000pt;}
.y490_c00002{bottom:453.120000pt;}
.y4db_c00002{bottom:453.760000pt;}
.y4dd_c00002{bottom:454.400000pt;}
.y586_c00002{bottom:455.040000pt;}
.y57f_c00002{bottom:455.680000pt;}
.y4dc_c00002{bottom:456.320000pt;}
.y4b6_c00002{bottom:456.960000pt;}
.y386_c00002{bottom:457.600000pt;}
.y387_c00002{bottom:458.880000pt;}
.y1b6_c00002{bottom:459.520000pt;}
.y385_c00002{bottom:460.160000pt;}
.y1b4_c00002{bottom:460.800000pt;}
.y419_c00002{bottom:461.440000pt;}
.y1b5_c00002{bottom:462.080000pt;}
.y86_c00002{bottom:462.720000pt;}
.yc6_c00002{bottom:463.360000pt;}
.y423_c00002{bottom:464.000000pt;}
.y2e1_c00002{bottom:464.640000pt;}
.y88_c00002{bottom:465.280000pt;}
.y85_c00002{bottom:465.920000pt;}
.y87_c00002{bottom:466.560000pt;}
.y285_c00002{bottom:467.200000pt;}
.y2e0_c00002{bottom:467.840000pt;}
.y283_c00002{bottom:468.480000pt;}
.y284_c00002{bottom:469.120000pt;}
.y2e2_c00002{bottom:469.760000pt;}
.y363_c00002{bottom:470.400000pt;}
.y2b2_c00002{bottom:471.040000pt;}
.y34c_c00002{bottom:471.680000pt;}
.y21e_c00002{bottom:472.320000pt;}
.y220_c00002{bottom:472.960000pt;}
.y2b3_c00002{bottom:473.600000pt;}
.y2d_c00002{bottom:474.240000pt;}
.y21f_c00002{bottom:474.880000pt;}
.y2f_c00002{bottom:475.520000pt;}
.y37b_c00002{bottom:476.160000pt;}
.y256_c00002{bottom:476.800000pt;}
.y2c_c00002{bottom:477.440000pt;}
.y2e_c00002{bottom:478.080000pt;}
.y1f2_c00002{bottom:478.720000pt;}
.y11d_c00002{bottom:479.360000pt;}
.y11e_c00002{bottom:480.000000pt;}
.y1f3_c00002{bottom:480.640000pt;}
.y11f_c00002{bottom:481.280000pt;}
.y11b_c00002{bottom:481.920000pt;}
.y11c_c00002{bottom:482.560000pt;}
.y579_c00002{bottom:483.200000pt;}
.y3ab_c00002{bottom:483.840000pt;}
.y3ad_c00002{bottom:484.480000pt;}
.y16a_c00002{bottom:485.120000pt;}
.y16b_c00002{bottom:485.760000pt;}
.y3af_c00002{bottom:486.400000pt;}
.y3ae_c00002{bottom:487.040000pt;}
.y3d3_c00002{bottom:487.680000pt;}
.y3d4_c00002{bottom:488.320000pt;}
.y3ac_c00002{bottom:488.960000pt;}
.y57e_c00002{bottom:489.600000pt;}
.y48f_c00002{bottom:490.240000pt;}
.y48e_c00002{bottom:490.880000pt;}
.y48d_c00002{bottom:491.520000pt;}
.y551_c00002{bottom:492.160000pt;}
.y550_c00002{bottom:492.800000pt;}
.y2df_c00002{bottom:493.440000pt;}
.y2db_c00002{bottom:494.080000pt;}
.y4d1_c00002{bottom:494.720000pt;}
.y2d9_c00002{bottom:495.360000pt;}
.y2dc_c00002{bottom:496.000000pt;}
.y2dd_c00002{bottom:496.640000pt;}
.y1b3_c00002{bottom:497.280000pt;}
.y2da_c00002{bottom:497.920000pt;}
.y2de_c00002{bottom:498.560000pt;}
.y4d9_c00002{bottom:499.200000pt;}
.y418_c00002{bottom:499.840000pt;}
.y82_c00002{bottom:500.480000pt;}
.yc5_c00002{bottom:501.120000pt;}
.y83_c00002{bottom:501.760000pt;}
.y4ba_c00002{bottom:502.400000pt;}
.y422_c00002{bottom:503.040000pt;}
.y81_c00002{bottom:503.680000pt;}
.y80_c00002{bottom:504.320000pt;}
.y84_c00002{bottom:504.960000pt;}
.y3c3_c00002{bottom:505.600000pt;}
.y361_c00002{bottom:506.240000pt;}
.y362_c00002{bottom:506.880000pt;}
.y281_c00002{bottom:507.520000pt;}
.y282_c00002{bottom:508.160000pt;}
.y2b1_c00002{bottom:508.800000pt;}
.y360_c00002{bottom:509.440000pt;}
.y21d_c00002{bottom:510.080000pt;}
.yf2_c00002{bottom:510.720000pt;}
.y2b0_c00002{bottom:511.360000pt;}
.y34b_c00002{bottom:512.000000pt;}
.yf1_c00002{bottom:512.640000pt;}
.y2a_c00002{bottom:513.280000pt;}
.y2b_c00002{bottom:513.920000pt;}
.y253_c00002{bottom:514.560000pt;}
.y254_c00002{bottom:515.200000pt;}
.y29_c00002{bottom:515.840000pt;}
.y255_c00002{bottom:516.480000pt;}
.y1f0_c00002{bottom:517.120000pt;}
.y119_c00002{bottom:517.760000pt;}
.y117_c00002{bottom:518.400000pt;}
.y1f1_c00002{bottom:519.040000pt;}
.y11a_c00002{bottom:519.680000pt;}
.y118_c00002{bottom:520.320000pt;}
.y167_c00002{bottom:520.960000pt;}
.y32b_c00002{bottom:521.600000pt;}
.y32a_c00002{bottom:522.240000pt;}
.y169_c00002{bottom:522.880000pt;}
.y166_c00002{bottom:523.520000pt;}
.y168_c00002{bottom:524.160000pt;}
.y44a_c00002{bottom:524.800000pt;}
.y449_c00002{bottom:525.440000pt;}
.y565_c00002{bottom:526.720000pt;}
.y563_c00002{bottom:527.360000pt;}
.y574_c00002{bottom:528.000000pt;}
.y57d_c00002{bottom:528.640000pt;}
.y56c_c00002{bottom:529.920000pt;}
.y56b_c00002{bottom:530.560000pt;}
.y55e_c00002{bottom:531.840000pt;}
.y4d0_c00002{bottom:532.480000pt;}
.y4ce_c00002{bottom:533.120000pt;}
.y4cd_c00002{bottom:534.400000pt;}
.y1b2_c00002{bottom:535.040000pt;}
.y1af_c00002{bottom:535.680000pt;}
.y4cf_c00002{bottom:536.320000pt;}
.y48c_c00002{bottom:536.960000pt;}
.y4d8_c00002{bottom:537.600000pt;}
.y1b1_c00002{bottom:538.240000pt;}
.y1b0_c00002{bottom:538.880000pt;}
.yc3_c00002{bottom:539.520000pt;}
.yc1_c00002{bottom:540.160000pt;}
.y2d7_c00002{bottom:540.800000pt;}
.yc0_c00002{bottom:541.440000pt;}
.yc4_c00002{bottom:542.080000pt;}
.yc2_c00002{bottom:542.720000pt;}
.y27e_c00002{bottom:543.360000pt;}
.y2d8_c00002{bottom:544.000000pt;}
.y35e_c00002{bottom:544.640000pt;}
.y27f_c00002{bottom:545.280000pt;}
.y280_c00002{bottom:545.920000pt;}
.y35f_c00002{bottom:546.560000pt;}
.y2af_c00002{bottom:547.200000pt;}
.y34a_c00002{bottom:547.840000pt;}
.yef_c00002{bottom:548.480000pt;}
.yf0_c00002{bottom:549.120000pt;}
.y2ae_c00002{bottom:549.760000pt;}
.y7f_c00002{bottom:550.400000pt;}
.yee_c00002{bottom:551.040000pt;}
.y28_c00002{bottom:551.680000pt;}
.y7e_c00002{bottom:552.320000pt;}
.y252_c00002{bottom:552.960000pt;}
.y251_c00002{bottom:553.600000pt;}
.y27_c00002{bottom:554.240000pt;}
.y250_c00002{bottom:554.880000pt;}
.y115_c00002{bottom:555.520000pt;}
.y116_c00002{bottom:556.160000pt;}
.y306_c00002{bottom:556.800000pt;}
.y3b9_c00002{bottom:557.440000pt;}
.y114_c00002{bottom:558.080000pt;}
.y113_c00002{bottom:558.720000pt;}
.y165_c00002{bottom:559.360000pt;}
.y3aa_c00002{bottom:560.000000pt;}
.y329_c00002{bottom:560.640000pt;}
.y163_c00002{bottom:561.280000pt;}
.y164_c00002{bottom:561.920000pt;}
.y37a_c00002{bottom:562.560000pt;}
.y448_c00002{bottom:563.200000pt;}
.y561_c00002{bottom:563.840000pt;}
.y562_c00002{bottom:564.480000pt;}
.y1ef_c00002{bottom:565.120000pt;}
.y573_c00002{bottom:565.760000pt;}
.y4d7_c00002{bottom:566.400000pt;}
.y572_c00002{bottom:567.040000pt;}
.y571_c00002{bottom:567.680000pt;}
.y56a_c00002{bottom:568.320000pt;}
.y569_c00002{bottom:568.960000pt;}
.y55d_c00002{bottom:570.240000pt;}
.y4cb_c00002{bottom:570.880000pt;}
.y3d1_c00002{bottom:571.520000pt;}
.y3ce_c00002{bottom:572.160000pt;}
.y3d0_c00002{bottom:572.800000pt;}
.y4cc_c00002{bottom:573.440000pt;}
.y3d2_c00002{bottom:574.080000pt;}
.y1ad_c00002{bottom:574.720000pt;}
.y3cf_c00002{bottom:575.360000pt;}
.y4d6_c00002{bottom:576.000000pt;}
.y1ae_c00002{bottom:576.640000pt;}
.y1ac_c00002{bottom:577.280000pt;}
.y46e_c00002{bottom:577.920000pt;}
.ybf_c00002{bottom:578.560000pt;}
.y2d6_c00002{bottom:579.200000pt;}
.ybe_c00002{bottom:579.840000pt;}
.ybd_c00002{bottom:580.480000pt;}
.ybc_c00002{bottom:581.120000pt;}
.y27d_c00002{bottom:581.760000pt;}
.y35c_c00002{bottom:582.400000pt;}
.y35d_c00002{bottom:583.040000pt;}
.y27b_c00002{bottom:583.680000pt;}
.y27c_c00002{bottom:584.320000pt;}
.y2ad_c00002{bottom:584.960000pt;}
.y2ac_c00002{bottom:585.600000pt;}
.y7c_c00002{bottom:586.240000pt;}
.y7d_c00002{bottom:586.880000pt;}
.y7b_c00002{bottom:587.520000pt;}
.y2ab_c00002{bottom:588.160000pt;}
.y349_c00002{bottom:588.800000pt;}
.y7a_c00002{bottom:589.440000pt;}
.y25_c00002{bottom:590.080000pt;}
.y420_c00002{bottom:590.720000pt;}
.y24f_c00002{bottom:591.360000pt;}
.y26_c00002{bottom:592.000000pt;}
.y24_c00002{bottom:592.640000pt;}
.y24d_c00002{bottom:593.280000pt;}
.y24e_c00002{bottom:593.920000pt;}
.y24c_c00002{bottom:594.560000pt;}
.y304_c00002{bottom:595.200000pt;}
.y305_c00002{bottom:595.840000pt;}
.y21b_c00002{bottom:596.480000pt;}
.y21c_c00002{bottom:597.120000pt;}
.y162_c00002{bottom:597.760000pt;}
.y3a9_c00002{bottom:598.400000pt;}
.y15f_c00002{bottom:599.040000pt;}
.y160_c00002{bottom:599.680000pt;}
.y379_c00002{bottom:600.320000pt;}
.y161_c00002{bottom:600.960000pt;}
.y3cd_c00002{bottom:601.600000pt;}
.y3cc_c00002{bottom:602.240000pt;}
.y1ed_c00002{bottom:602.880000pt;}
.y1eb_c00002{bottom:603.520000pt;}
.y112_c00002{bottom:604.160000pt;}
.y1ee_c00002{bottom:604.800000pt;}
.y1ea_c00002{bottom:605.440000pt;}
.y1ec_c00002{bottom:606.080000pt;}
.y111_c00002{bottom:606.720000pt;}
.y570_c00002{bottom:607.360000pt;}
.y578_c00002{bottom:608.000000pt;}
.y55c_c00002{bottom:608.640000pt;}
.y55a_c00002{bottom:609.280000pt;}
.y4ca_c00002{bottom:609.920000pt;}
.y55b_c00002{bottom:610.560000pt;}
.y48b_c00002{bottom:611.200000pt;}
.y1a9_c00002{bottom:611.840000pt;}
.y1aa_c00002{bottom:612.480000pt;}
.y1a8_c00002{bottom:613.120000pt;}
.y4c9_c00002{bottom:613.760000pt;}
.y1ab_c00002{bottom:614.400000pt;}
.y1a7_c00002{bottom:615.040000pt;}
.y48a_c00002{bottom:615.680000pt;}
.yba_c00002{bottom:616.320000pt;}
.y2d4_c00002{bottom:616.960000pt;}
.y2d5_c00002{bottom:617.600000pt;}
.ybb_c00002{bottom:618.240000pt;}
.yb9_c00002{bottom:618.880000pt;}
.y2d3_c00002{bottom:619.520000pt;}
.y2d2_c00002{bottom:620.160000pt;}
.y35b_c00002{bottom:620.800000pt;}
.y27a_c00002{bottom:621.440000pt;}
.y279_c00002{bottom:622.080000pt;}
.y384_c00002{bottom:622.720000pt;}
.y2aa_c00002{bottom:623.360000pt;}
.y417_c00002{bottom:624.000000pt;}
.yed_c00002{bottom:624.640000pt;}
.y78_c00002{bottom:625.280000pt;}
.y77_c00002{bottom:625.920000pt;}
.y3b5_c00002{bottom:626.560000pt;}
.y79_c00002{bottom:627.200000pt;}
.y22_c00002{bottom:627.840000pt;}
.y23_c00002{bottom:628.480000pt;}
.y24b_c00002{bottom:629.120000pt;}
.y249_c00002{bottom:629.760000pt;}
.y20_c00002{bottom:630.400000pt;}
.y21_c00002{bottom:631.040000pt;}
.y24a_c00002{bottom:631.680000pt;}
.y248_c00002{bottom:632.320000pt;}
.y3b8_c00002{bottom:632.960000pt;}
.y303_c00002{bottom:633.600000pt;}
.y219_c00002{bottom:634.240000pt;}
.y302_c00002{bottom:634.880000pt;}
.y15d_c00002{bottom:635.520000pt;}
.y21a_c00002{bottom:636.160000pt;}
.y218_c00002{bottom:636.800000pt;}
.y15e_c00002{bottom:637.440000pt;}
.y15c_c00002{bottom:638.080000pt;}
.y378_c00002{bottom:638.720000pt;}
.y4fb_c00002{bottom:640.000000pt;}
.y10f_c00002{bottom:640.640000pt;}
.y10e_c00002{bottom:641.280000pt;}
.y10c_c00002{bottom:641.920000pt;}
.y589_c00002{bottom:642.560000pt;}
.y577_c00002{bottom:643.200000pt;}
.y110_c00002{bottom:643.840000pt;}
.y10d_c00002{bottom:644.480000pt;}
.y10a_c00002{bottom:645.120000pt;}
.y10b_c00002{bottom:645.760000pt;}
.y559_c00002{bottom:646.400000pt;}
.y4c8_c00002{bottom:647.040000pt;}
.y4c7_c00002{bottom:647.680000pt;}
.y4c6_c00002{bottom:648.320000pt;}
.y4c5_c00002{bottom:648.960000pt;}
.y1a5_c00002{bottom:649.600000pt;}
.y1a6_c00002{bottom:650.240000pt;}
.y489_c00002{bottom:650.880000pt;}
.y4c4_c00002{bottom:651.520000pt;}
.y4ab_c00002{bottom:652.160000pt;}
.y1a3_c00002{bottom:652.800000pt;}
.y1a4_c00002{bottom:653.440000pt;}
.y4b9_c00002{bottom:654.080000pt;}
.y4aa_c00002{bottom:654.720000pt;}
.y4ac_c00002{bottom:655.360000pt;}
.y4b5_c00002{bottom:656.000000pt;}
.y447_c00002{bottom:656.640000pt;}
.y475_c00002{bottom:657.280000pt;}
.y382_c00002{bottom:657.920000pt;}
.y446_c00002{bottom:658.560000pt;}
.y416_c00002{bottom:659.200000pt;}
.y381_c00002{bottom:659.840000pt;}
.y383_c00002{bottom:660.480000pt;}
.y2a9_c00002{bottom:661.120000pt;}
.y2a8_c00002{bottom:661.760000pt;}
.y2a5_c00002{bottom:662.400000pt;}
.y75_c00002{bottom:663.040000pt;}
.y74_c00002{bottom:663.680000pt;}
.y2a7_c00002{bottom:664.320000pt;}
.y2a6_c00002{bottom:664.960000pt;}
.y76_c00002{bottom:665.600000pt;}
.y1e_c00002{bottom:666.240000pt;}
.y1d_c00002{bottom:666.880000pt;}
.y278_c00002{bottom:667.520000pt;}
.y1f_c00002{bottom:668.160000pt;}
.y1c_c00002{bottom:668.800000pt;}
.y300_c00002{bottom:669.440000pt;}
.y301_c00002{bottom:670.080000pt;}
.y35a_c00002{bottom:670.720000pt;}
.y359_c00002{bottom:671.360000pt;}
.y217_c00002{bottom:672.000000pt;}
.y2ff_c00002{bottom:672.640000pt;}
.y15b_c00002{bottom:673.280000pt;}
.y158_c00002{bottom:673.920000pt;}
.y216_c00002{bottom:674.560000pt;}
.y215_c00002{bottom:675.200000pt;}
.y15a_c00002{bottom:675.840000pt;}
.y159_c00002{bottom:676.480000pt;}
.y377_c00002{bottom:677.120000pt;}
.y247_c00002{bottom:677.760000pt;}
.y4fa_c00002{bottom:678.400000pt;}
.y109_c00002{bottom:679.040000pt;}
.y1e9_c00002{bottom:679.680000pt;}
.y246_c00002{bottom:680.320000pt;}
.y4af_c00002{bottom:680.960000pt;}
.y108_c00002{bottom:681.600000pt;}
.y107_c00002{bottom:682.240000pt;}
.y106_c00002{bottom:682.880000pt;}
.y4f5_c00002{bottom:683.520000pt;}
.y347_c00002{bottom:684.160000pt;}
.y348_c00002{bottom:684.800000pt;}
.y4c3_c00002{bottom:685.440000pt;}
.y346_c00002{bottom:686.080000pt;}
.y56f_c00002{bottom:686.720000pt;}
.y487_c00002{bottom:687.360000pt;}
.y488_c00002{bottom:688.000000pt;}
.y1a1_c00002{bottom:688.640000pt;}
.y4f4_c00002{bottom:689.280000pt;}
.y4d5_c00002{bottom:689.920000pt;}
.y1a0_c00002{bottom:690.560000pt;}
.y1a2_c00002{bottom:691.200000pt;}
.y4b8_c00002{bottom:691.840000pt;}
.y4a9_c00002{bottom:692.480000pt;}
.y4a8_c00002{bottom:693.120000pt;}
.y444_c00002{bottom:693.760000pt;}
.y445_c00002{bottom:694.400000pt;}
.y4b4_c00002{bottom:695.040000pt;}
.y430_c00002{bottom:695.680000pt;}
.y431_c00002{bottom:696.320000pt;}
.y415_c00002{bottom:696.960000pt;}
.y412_c00002{bottom:697.600000pt;}
.y46a_c00002{bottom:698.240000pt;}
.y414_c00002{bottom:698.880000pt;}
.y413_c00002{bottom:699.520000pt;}
.y2a4_c00002{bottom:700.160000pt;}
.y2a3_c00002{bottom:700.800000pt;}
.y72_c00002{bottom:701.440000pt;}
.y73_c00002{bottom:702.080000pt;}
.y2a2_c00002{bottom:702.720000pt;}
.y2d1_c00002{bottom:703.360000pt;}
.y71_c00002{bottom:704.000000pt;}
.y19_c00002{bottom:704.640000pt;}
.y1a_c00002{bottom:705.280000pt;}
.y1b_c00002{bottom:705.920000pt;}
.y17_c00002{bottom:706.560000pt;}
.y18_c00002{bottom:707.200000pt;}
.y277_c00002{bottom:707.840000pt;}
.y2fd_c00002{bottom:708.480000pt;}
.y2fc_c00002{bottom:709.120000pt;}
.y214_c00002{bottom:709.760000pt;}
.y2fe_c00002{bottom:710.400000pt;}
.yec_c00002{bottom:711.040000pt;}
.y155_c00002{bottom:711.680000pt;}
.y213_c00002{bottom:712.320000pt;}
.y211_c00002{bottom:712.960000pt;}
.y212_c00002{bottom:713.600000pt;}
.y157_c00002{bottom:714.240000pt;}
.y156_c00002{bottom:714.880000pt;}
.y376_c00002{bottom:715.520000pt;}
.y514_c00002{bottom:716.160000pt;}
.y3cb_c00002{bottom:716.800000pt;}
.y105_c00002{bottom:717.440000pt;}
.y1e8_c00002{bottom:718.080000pt;}
.y245_c00002{bottom:718.720000pt;}
.y102_c00002{bottom:719.360000pt;}
.y104_c00002{bottom:720.000000pt;}
.y103_c00002{bottom:720.640000pt;}
.y101_c00002{bottom:721.280000pt;}
.y4f9_c00002{bottom:721.920000pt;}
.y520_c00002{bottom:722.560000pt;}
.y4c2_c00002{bottom:723.200000pt;}
.y4c0_c00002{bottom:723.840000pt;}
.y4f8_c00002{bottom:724.480000pt;}
.y4be_c00002{bottom:725.120000pt;}
.y4c1_c00002{bottom:725.760000pt;}
.y484_c00002{bottom:726.400000pt;}
.y4bf_c00002{bottom:727.040000pt;}
.y482_c00002{bottom:727.680000pt;}
.y486_c00002{bottom:728.320000pt;}
.y485_c00002{bottom:728.960000pt;}
.y344_c00002{bottom:729.600000pt;}
.y345_c00002{bottom:730.240000pt;}
.y4a7_c00002{bottom:730.880000pt;}
.y343_c00002{bottom:731.520000pt;}
.y483_c00002{bottom:732.160000pt;}
.y443_c00002{bottom:732.800000pt;}
.y442_c00002{bottom:733.440000pt;}
.y42f_c00002{bottom:734.080000pt;}
.y411_c00002{bottom:734.720000pt;}
.y40f_c00002{bottom:735.360000pt;}
.y469_c00002{bottom:736.000000pt;}
.y42e_c00002{bottom:736.640000pt;}
.y410_c00002{bottom:737.280000pt;}
.y19f_c00002{bottom:737.920000pt;}
.y40e_c00002{bottom:738.560000pt;}
.y42d_c00002{bottom:739.200000pt;}
.y2cf_c00002{bottom:739.840000pt;}
.y6e_c00002{bottom:740.480000pt;}
.y2d0_c00002{bottom:741.120000pt;}
.y6f_c00002{bottom:741.760000pt;}
.y70_c00002{bottom:742.400000pt;}
.y15_c00002{bottom:743.040000pt;}
.y2ce_c00002{bottom:743.680000pt;}
.y16_c00002{bottom:744.320000pt;}
.y14_c00002{bottom:744.960000pt;}
.y13_c00002{bottom:745.600000pt;}
.y276_c00002{bottom:746.240000pt;}
.y2fb_c00002{bottom:746.880000pt;}
.y358_c00002{bottom:747.520000pt;}
.y2a1_c00002{bottom:748.160000pt;}
.y210_c00002{bottom:748.800000pt;}
.yea_c00002{bottom:749.440000pt;}
.y153_c00002{bottom:750.080000pt;}
.y20f_c00002{bottom:750.720000pt;}
.yeb_c00002{bottom:751.360000pt;}
.ye9_c00002{bottom:752.000000pt;}
.y154_c00002{bottom:752.640000pt;}
.y244_c00002{bottom:753.280000pt;}
.y243_c00002{bottom:753.920000pt;}
.y242_c00002{bottom:754.560000pt;}
.y3ca_c00002{bottom:755.200000pt;}
.y100_c00002{bottom:755.840000pt;}
.y241_c00002{bottom:756.480000pt;}
.yfe_c00002{bottom:757.120000pt;}
.y4ae_c00002{bottom:757.760000pt;}
.yff_c00002{bottom:758.400000pt;}
.yfd_c00002{bottom:759.040000pt;}
.yfc_c00002{bottom:759.680000pt;}
.y52f_c00002{bottom:760.320000pt;}
.y4e8_c00002{bottom:760.960000pt;}
.y57c_c00002{bottom:761.600000pt;}
.y4bc_c00002{bottom:762.240000pt;}
.y4f7_c00002{bottom:762.880000pt;}
.y4bd_c00002{bottom:763.520000pt;}
.y47f_c00002{bottom:764.160000pt;}
.y47d_c00002{bottom:764.800000pt;}
.y47c_c00002{bottom:765.440000pt;}
.y480_c00002{bottom:766.080000pt;}
.y481_c00002{bottom:766.720000pt;}
.y47e_c00002{bottom:767.360000pt;}
.y1e7_c00002{bottom:768.000000pt;}
.y4b7_c00002{bottom:768.640000pt;}
.y441_c00002{bottom:769.280000pt;}
.y342_c00002{bottom:769.920000pt;}
.y43e_c00002{bottom:770.560000pt;}
.y340_c00002{bottom:771.200000pt;}
.y341_c00002{bottom:771.840000pt;}
.y440_c00002{bottom:772.480000pt;}
.y43f_c00002{bottom:773.120000pt;}
.y19b_c00002{bottom:773.760000pt;}
.y19e_c00002{bottom:774.400000pt;}
.y199_c00002{bottom:775.040000pt;}
.y19c_c00002{bottom:775.680000pt;}
.y19d_c00002{bottom:776.320000pt;}
.yb8_c00002{bottom:776.960000pt;}
.y19a_c00002{bottom:777.600000pt;}
.y6d_c00002{bottom:778.240000pt;}
.y6a_c00002{bottom:778.880000pt;}
.y69_c00002{bottom:779.520000pt;}
.y6c_c00002{bottom:780.160000pt;}
.yb7_c00002{bottom:780.800000pt;}
.y6b_c00002{bottom:781.440000pt;}
.y273_c00002{bottom:782.080000pt;}
.y2cd_c00002{bottom:782.720000pt;}
.y275_c00002{bottom:783.360000pt;}
.y380_c00002{bottom:784.000000pt;}
.y274_c00002{bottom:784.640000pt;}
.y2fa_c00002{bottom:785.280000pt;}
.y2a0_c00002{bottom:785.920000pt;}
.y152_c00002{bottom:786.560000pt;}
.ye6_c00002{bottom:787.200000pt;}
.ye7_c00002{bottom:787.840000pt;}
.y20e_c00002{bottom:788.480000pt;}
.y20d_c00002{bottom:789.120000pt;}
.ye8_c00002{bottom:789.760000pt;}
.y11_c00002{bottom:790.400000pt;}
.y10_c00002{bottom:791.040000pt;}
.y240_c00002{bottom:791.680000pt;}
.y12_c00002{bottom:792.320000pt;}
.yf_c00002{bottom:792.960000pt;}
.yfb_c00002{bottom:793.600000pt;}
.y23e_c00002{bottom:794.240000pt;}
.y23f_c00002{bottom:794.880000pt;}
.y50a_c00002{bottom:795.520000pt;}
.yf8_c00002{bottom:796.160000pt;}
.yf9_c00002{bottom:796.800000pt;}
.yfa_c00002{bottom:797.440000pt;}
.y51d_c00002{bottom:798.080000pt;}
.y4e4_c00002{bottom:798.720000pt;}
.y4e6_c00002{bottom:799.360000pt;}
.y4e7_c00002{bottom:800.000000pt;}
.y51e_c00002{bottom:800.640000pt;}
.y513_c00002{bottom:801.280000pt;}
.y4e5_c00002{bottom:801.920000pt;}
.y479_c00002{bottom:802.560000pt;}
.y51f_c00002{bottom:803.200000pt;}
.y478_c00002{bottom:803.840000pt;}
.y47a_c00002{bottom:804.480000pt;}
.y47b_c00002{bottom:805.760000pt;}
.y477_c00002{bottom:806.400000pt;}
.y564_c00002{bottom:807.040000pt;}
.y33e_c00002{bottom:807.680000pt;}
.y33f_c00002{bottom:808.320000pt;}
.y4b3_c00002{bottom:808.960000pt;}
.y33d_c00002{bottom:809.600000pt;}
.y43d_c00002{bottom:810.240000pt;}
.y40c_c00002{bottom:810.880000pt;}
.y198_c00002{bottom:811.520000pt;}
.y196_c00002{bottom:812.160000pt;}
.y468_c00002{bottom:812.800000pt;}
.y40d_c00002{bottom:813.440000pt;}
.y197_c00002{bottom:814.080000pt;}
.y195_c00002{bottom:814.720000pt;}
.y194_c00002{bottom:815.360000pt;}
.yb6_c00002{bottom:816.000000pt;}
.yb4_c00002{bottom:816.640000pt;}
.y421_c00002{bottom:817.280000pt;}
.y2cc_c00002{bottom:817.920000pt;}
.yb5_c00002{bottom:818.560000pt;}
.yb2_c00002{bottom:819.200000pt;}
.yb3_c00002{bottom:819.840000pt;}
.yb1_c00002{bottom:820.480000pt;}
.y37f_c00002{bottom:821.120000pt;}
.y357_c00002{bottom:821.760000pt;}
.y2f9_c00002{bottom:822.400000pt;}
.y29f_c00002{bottom:823.040000pt;}
.y1e5_c00002{bottom:823.680000pt;}
.y1e6_c00002{bottom:824.320000pt;}
.y20c_c00002{bottom:824.960000pt;}
.ye2_c00002{bottom:825.600000pt;}
.ye5_c00002{bottom:826.240000pt;}
.ye3_c00002{bottom:826.880000pt;}
.ye4_c00002{bottom:827.520000pt;}
.y68_c00002{bottom:828.160000pt;}
.yc_c00002{bottom:828.800000pt;}
.yd_c00002{bottom:829.440000pt;}
.ye_c00002{bottom:830.080000pt;}
.yb_c00002{bottom:830.720000pt;}
.ya_c00002{bottom:831.360000pt;}
.y23d_c00002{bottom:832.000000pt;}
.y23c_c00002{bottom:832.640000pt;}
.y473_c00002{bottom:833.280000pt;}
.y33b_c00002{bottom:833.920000pt;}
.y474_c00002{bottom:834.560000pt;}
.y3f2_c00002{bottom:835.200000pt;}
.y33a_c00002{bottom:835.840000pt;}
.y33c_c00002{bottom:836.480000pt;}
.y339_c00002{bottom:837.120000pt;}
.y338_c00002{bottom:837.760000pt;}
.y337_c00002{bottom:838.400000pt;}
.y52e_c00002{bottom:839.040000pt;}
.y512_c00002{bottom:839.680000pt;}
.y534_c00002{bottom:840.320000pt;}
.y52d_c00002{bottom:840.960000pt;}
.y509_c00002{bottom:841.600000pt;}
.y53d_c00002{bottom:842.240000pt;}
.y543_c00002{bottom:842.880000pt;}
.y508_c00002{bottom:843.520000pt;}
.y53c_c00002{bottom:844.160000pt;}
.y53b_c00002{bottom:844.800000pt;}
.y43c_c00002{bottom:845.440000pt;}
.y43b_c00002{bottom:846.080000pt;}
.yf7_c00002{bottom:846.720000pt;}
.y43a_c00002{bottom:847.360000pt;}
.y467_c00002{bottom:848.000000pt;}
.y40b_c00002{bottom:848.640000pt;}
.y40a_c00002{bottom:849.280000pt;}
.y193_c00002{bottom:849.920000pt;}
.y408_c00002{bottom:850.560000pt;}
.yf6_c00002{bottom:851.200000pt;}
.y409_c00002{bottom:851.840000pt;}
.y192_c00002{bottom:852.480000pt;}
.y191_c00002{bottom:853.120000pt;}
.y190_c00002{bottom:853.760000pt;}
.yf5_c00002{bottom:854.400000pt;}
.y2cb_c00002{bottom:855.040000pt;}
.y2c8_c00002{bottom:855.680000pt;}
.y312_c00002{bottom:856.320000pt;}
.y2ca_c00002{bottom:856.960000pt;}
.y2c7_c00002{bottom:857.600000pt;}
.y2c9_c00002{bottom:858.240000pt;}
.y356_c00002{bottom:858.880000pt;}
.y1e4_c00002{bottom:859.520000pt;}
.y2f8_c00002{bottom:860.160000pt;}
.y1e2_c00002{bottom:860.800000pt;}
.y29e_c00002{bottom:861.440000pt;}
.y1e1_c00002{bottom:862.080000pt;}
.y151_c00002{bottom:862.720000pt;}
.y1e3_c00002{bottom:863.360000pt;}
.y67_c00002{bottom:864.000000pt;}
.yb0_c00002{bottom:864.640000pt;}
.y66_c00002{bottom:865.280000pt;}
.y8_c00002{bottom:865.920000pt;}
.y6_c00002{bottom:866.560000pt;}
.y7_c00002{bottom:867.200000pt;}
.y65_c00002{bottom:867.840000pt;}
.y9_c00002{bottom:868.480000pt;}
.y5_c00002{bottom:869.120000pt;}
.y23b_c00002{bottom:869.760000pt;}
.y239_c00002{bottom:870.400000pt;}
.y23a_c00002{bottom:871.040000pt;}
.y3f1_c00002{bottom:871.680000pt;}
.y272_c00002{bottom:872.320000pt;}
.y3ef_c00002{bottom:872.960000pt;}
.y3f0_c00002{bottom:873.600000pt;}
.y53e_c00002{bottom:874.240000pt;}
.y53f_c00002{bottom:874.880000pt;}
.y511_c00002{bottom:875.520000pt;}
.y533_c00002{bottom:876.160000pt;}
.y50d_c00002{bottom:876.800000pt;}
.y510_c00002{bottom:877.440000pt;}
.y507_c00002{bottom:878.080000pt;}
.y50e_c00002{bottom:878.720000pt;}
.y532_c00002{bottom:879.360000pt;}
.y542_c00002{bottom:880.000000pt;}
.y506_c00002{bottom:880.640000pt;}
.y50f_c00002{bottom:881.280000pt;}
.y4e3_c00002{bottom:881.920000pt;}
.y4e2_c00002{bottom:882.560000pt;}
.y547_c00002{bottom:883.200000pt;}
.y438_c00002{bottom:883.840000pt;}
.y437_c00002{bottom:884.480000pt;}
.y434_c00002{bottom:885.120000pt;}
.y4b2_c00002{bottom:885.760000pt;}
.y439_c00002{bottom:886.400000pt;}
.y436_c00002{bottom:887.040000pt;}
.y435_c00002{bottom:887.680000pt;}
.y18e_c00002{bottom:888.320000pt;}
.y471_c00002{bottom:888.960000pt;}
.y407_c00002{bottom:889.600000pt;}
.y18f_c00002{bottom:890.240000pt;}
.y18d_c00002{bottom:890.880000pt;}
.y311_c00002{bottom:891.520000pt;}
.y18c_c00002{bottom:892.160000pt;}
.y310_c00002{bottom:892.800000pt;}
.y30f_c00002{bottom:893.440000pt;}
.y2c4_c00002{bottom:894.080000pt;}
.y2c3_c00002{bottom:894.720000pt;}
.y2c6_c00002{bottom:895.360000pt;}
.y2c5_c00002{bottom:896.000000pt;}
.y2c2_c00002{bottom:896.640000pt;}
.y466_c00002{bottom:897.280000pt;}
.y1df_c00002{bottom:897.920000pt;}
.y1e0_c00002{bottom:898.560000pt;}
.y1dd_c00002{bottom:899.200000pt;}
.y1dc_c00002{bottom:899.840000pt;}
.y1de_c00002{bottom:900.480000pt;}
.yf4_c00002{bottom:901.120000pt;}
.y64_c00002{bottom:901.760000pt;}
.yaf_c00002{bottom:902.400000pt;}
.yae_c00002{bottom:903.040000pt;}
.y4_c00002{bottom:903.680000pt;}
.y3_c00002{bottom:904.320000pt;}
.y63_c00002{bottom:904.960000pt;}
.y61_c00002{bottom:905.600000pt;}
.y62_c00002{bottom:906.240000pt;}
.y2_c00002{bottom:906.880000pt;}
.y3c9_c00002{bottom:907.520000pt;}
.y237_c00002{bottom:908.160000pt;}
.y238_c00002{bottom:908.800000pt;}
.y3ee_c00002{bottom:910.080000pt;}
.y3ed_c00002{bottom:910.720000pt;}
.y505_c00002{bottom:963.840000pt;}
.yad_c00002{bottom:964.480000pt;}
.y52c_c00002{bottom:965.760000pt;}
.y51c_c00002{bottom:966.400000pt;}
.yf3_c00002{bottom:970.240000pt;}
.y2f7_c00002{bottom:972.160000pt;}
.y3c2_c00002{bottom:973.440000pt;}
.y1_c00002{bottom:974.080000pt;}
.y541_c00002{bottom:976.000000pt;}
.y585_c00002{bottom:977.920000pt;}
.y588_c00002{bottom:978.560000pt;}
.y560_c00002{bottom:979.200000pt;}
.ye1_c00002{bottom:979.840000pt;}
.y470_c00002{bottom:980.480000pt;}
.y150_c00002{bottom:981.120000pt;}
.y433_c00002{bottom:983.680000pt;}
.y236_c00002{bottom:984.320000pt;}
.y4ad_c00002{bottom:984.960000pt;}
.y41f_c00002{bottom:985.600000pt;}
.y37e_c00002{bottom:986.240000pt;}
.y4d4_c00002{bottom:986.880000pt;}
.y3b4_c00002{bottom:987.520000pt;}
.y18b_c00002{bottom:988.160000pt;}
.y30e_c00002{bottom:988.800000pt;}
.y3b7_c00002{bottom:989.440000pt;}
.y3ec_c00002{bottom:990.080000pt;}
.y46d_c00002{bottom:990.720000pt;}
.y355_c00002{bottom:991.360000pt;}
.y271_c00002{bottom:992.000000pt;}
.y3a8_c00002{bottom:992.640000pt;}
.y336_c00002{bottom:993.280000pt;}
.y406_c00002{bottom:993.920000pt;}
.y1db_c00002{bottom:994.560000pt;}
.y29d_c00002{bottom:995.200000pt;}
.y4bb_c00002{bottom:995.840000pt;}
.y328_c00002{bottom:996.480000pt;}
.y334_c00002{bottom:997.120000pt;}
.y42b_c00002{bottom:1001.600000pt;}
.y568_c00002{bottom:1002.240000pt;}
.y42c_c00002{bottom:1003.520000pt;}
.h36_c00002{height:2.303750pt;}
.h51_c00002{height:4.607500pt;}
.h47_c00002{height:6.911250pt;}
.h29_c00002{height:9.215000pt;}
.h22_c00002{height:11.518750pt;}
.h13_c00002{height:13.822500pt;}
.h1b_c00002{height:16.126250pt;}
.h60_c00002{height:17.151250pt;}
.h2a_c00002{height:18.430000pt;}
.h20_c00002{height:20.733750pt;}
.h35_c00002{height:23.037500pt;}
.h2d_c00002{height:25.341250pt;}
.h7_c00002{height:27.645000pt;}
.h8_c00002{height:29.948750pt;}
.h12_c00002{height:32.252500pt;}
.h17_c00002{height:34.556250pt;}
.h6_c00002{height:36.860000pt;}
.h4_c00002{height:39.163750pt;}
.h56_c00002{height:41.211250pt;}
.h3_c00002{height:41.467500pt;}
.h42_c00002{height:41.723750pt;}
.h43_c00002{height:43.258750pt;}
.hd_c00002{height:43.771250pt;}
.h55_c00002{height:44.027500pt;}
.h39_c00002{height:45.306250pt;}
.h26_c00002{height:45.818750pt;}
.ha_c00002{height:46.075000pt;}
.h59_c00002{height:46.587500pt;}
.h25_c00002{height:46.843750pt;}
.h40_c00002{height:47.100000pt;}
.h9_c00002{height:48.378750pt;}
.h4c_c00002{height:48.891250pt;}
.h33_c00002{height:49.147500pt;}
.he_c00002{height:49.403750pt;}
.h3a_c00002{height:49.660000pt;}
.hb_c00002{height:50.682500pt;}
.h2e_c00002{height:50.938750pt;}
.h71_c00002{height:51.451250pt;}
.h69_c00002{height:51.707500pt;}
.h5_c00002{height:52.986250pt;}
.h21_c00002{height:53.498750pt;}
.h34_c00002{height:54.267500pt;}
.hc_c00002{height:55.290000pt;}
.h70_c00002{height:55.546250pt;}
.h32_c00002{height:55.802500pt;}
.h5a_c00002{height:56.058750pt;}
.h2_c00002{height:57.593750pt;}
.h6d_c00002{height:57.850000pt;}
.h48_c00002{height:59.131250pt;}
.h14_c00002{height:59.897500pt;}
.h6a_c00002{height:60.410000pt;}
.h3b_c00002{height:61.178750pt;}
.hf_c00002{height:62.201250pt;}
.h1a_c00002{height:64.505000pt;}
.h41_c00002{height:66.808750pt;}
.h46_c00002{height:69.112500pt;}
.h38_c00002{height:71.416250pt;}
.h50_c00002{height:73.720000pt;}
.h2f_c00002{height:76.023750pt;}
.h2c_c00002{height:80.631250pt;}
.h2b_c00002{height:82.935000pt;}
.h37_c00002{height:89.846250pt;}
.h5f_c00002{height:96.757500pt;}
.h4f_c00002{height:163.566250pt;}
.h1_c00002{height:1018.666667pt;}
.h0_c00002{height:1018.880000pt;}
.h4e_c00002{height:1019.333333pt;}
.h4d_c00002{height:1019.520000pt;}
.h3f_c00002{height:1021.333333pt;}
.h3e_c00002{height:1021.440000pt;}
.h1d_c00002{height:1022.666667pt;}
.h1c_c00002{height:1022.720000pt;}
.h31_c00002{height:1023.333333pt;}
.h30_c00002{height:1023.360000pt;}
.h52_c00002{height:1024.000000pt;}
.h3c_c00002{height:1024.640000pt;}
.h3d_c00002{height:1024.666667pt;}
.h1e_c00002{height:1025.280000pt;}
.h1f_c00002{height:1025.333333pt;}
.h57_c00002{height:1025.920000pt;}
.h58_c00002{height:1026.000000pt;}
.h27_c00002{height:1026.560000pt;}
.h28_c00002{height:1026.666667pt;}
.h18_c00002{height:1027.200000pt;}
.h19_c00002{height:1027.333333pt;}
.h4a_c00002{height:1027.840000pt;}
.h4b_c00002{height:1028.000000pt;}
.h15_c00002{height:1028.480000pt;}
.h16_c00002{height:1028.666667pt;}
.h10_c00002{height:1029.120000pt;}
.h11_c00002{height:1029.333333pt;}
.h53_c00002{height:1029.760000pt;}
.h54_c00002{height:1030.000000pt;}
.h44_c00002{height:1030.400000pt;}
.h45_c00002{height:1030.666667pt;}
.h23_c00002{height:1031.040000pt;}
.h24_c00002{height:1031.333333pt;}
.h6e_c00002{height:1031.680000pt;}
.h6f_c00002{height:1032.000000pt;}
.h5e_c00002{height:1032.666667pt;}
.h5d_c00002{height:1032.960000pt;}
.h66_c00002{height:1033.333333pt;}
.h65_c00002{height:1033.600000pt;}
.h64_c00002{height:1034.000000pt;}
.h63_c00002{height:1034.240000pt;}
.h6c_c00002{height:1034.666667pt;}
.h6b_c00002{height:1034.880000pt;}
.h68_c00002{height:1035.333333pt;}
.h67_c00002{height:1035.520000pt;}
.h49_c00002{height:1040.000000pt;}
.h61_c00002{height:1040.640000pt;}
.h62_c00002{height:1040.666667pt;}
.h5b_c00002{height:1044.480000pt;}
.h5c_c00002{height:1044.666667pt;}
.w1_c00002{width:664.000000pt;}
.w0_c00002{width:664.320000pt;}
.w1a_c00002{width:666.666667pt;}
.w19_c00002{width:666.880000pt;}
.w18_c00002{width:670.000000pt;}
.w17_c00002{width:670.080000pt;}
.wd_c00002{width:671.333333pt;}
.wc_c00002{width:671.360000pt;}
.w14_c00002{width:672.000000pt;}
.w15_c00002{width:673.920000pt;}
.w16_c00002{width:674.000000pt;}
.we_c00002{width:675.200000pt;}
.wf_c00002{width:675.333333pt;}
.w12_c00002{width:675.840000pt;}
.w13_c00002{width:676.000000pt;}
.w23_c00002{width:677.120000pt;}
.w24_c00002{width:677.333333pt;}
.wa_c00002{width:677.760000pt;}
.wb_c00002{width:678.000000pt;}
.w4_c00002{width:678.400000pt;}
.w5_c00002{width:678.666667pt;}
.w8_c00002{width:679.040000pt;}
.w9_c00002{width:679.333333pt;}
.w2_c00002{width:679.680000pt;}
.w3_c00002{width:680.000000pt;}
.w25_c00002{width:680.320000pt;}
.w11_c00002{width:680.666667pt;}
.w10_c00002{width:680.960000pt;}
.w1c_c00002{width:681.333333pt;}
.w1b_c00002{width:681.600000pt;}
.w27_c00002{width:683.333333pt;}
.w26_c00002{width:683.520000pt;}
.w49_c00002{width:684.666667pt;}
.w48_c00002{width:684.800000pt;}
.w7_c00002{width:686.000000pt;}
.w6_c00002{width:686.080000pt;}
.w47_c00002{width:687.333333pt;}
.w46_c00002{width:687.360000pt;}
.w28_c00002{width:688.640000pt;}
.w29_c00002{width:688.666667pt;}
.w2a_c00002{width:689.280000pt;}
.w2b_c00002{width:689.333333pt;}
.w30_c00002{width:690.560000pt;}
.w31_c00002{width:690.666667pt;}
.w2c_c00002{width:691.200000pt;}
.w2d_c00002{width:691.333333pt;}
.w32_c00002{width:692.480000pt;}
.w33_c00002{width:692.666667pt;}
.w1f_c00002{width:693.120000pt;}
.w20_c00002{width:693.333333pt;}
.w2e_c00002{width:694.400000pt;}
.w2f_c00002{width:694.666667pt;}
.w1d_c00002{width:695.040000pt;}
.w1e_c00002{width:695.333333pt;}
.w22_c00002{width:696.000000pt;}
.w21_c00002{width:696.320000pt;}
.w37_c00002{width:698.666667pt;}
.w36_c00002{width:698.880000pt;}
.w3f_c00002{width:700.666667pt;}
.w3e_c00002{width:700.800000pt;}
.w35_c00002{width:701.333333pt;}
.w34_c00002{width:701.440000pt;}
.w3b_c00002{width:702.666667pt;}
.w3a_c00002{width:702.720000pt;}
.w38_c00002{width:704.640000pt;}
.w39_c00002{width:704.666667pt;}
.w40_c00002{width:705.280000pt;}
.w41_c00002{width:705.333333pt;}
.w42_c00002{width:711.040000pt;}
.w43_c00002{width:711.333333pt;}
.w3d_c00002{width:712.000000pt;}
.w3c_c00002{width:712.320000pt;}
.w45_c00002{width:714.666667pt;}
.w44_c00002{width:714.880000pt;}
.x0_c00002{left:0.000000pt;}
.x1a2_c00002{left:3.840000pt;}
.x1af_c00002{left:5.120000pt;}
.x1ab_c00002{left:6.400000pt;}
.x1a3_c00002{left:12.160000pt;}
.x1b0_c00002{left:13.440000pt;}
.x30_c00002{left:17.280000pt;}
.x184_c00002{left:23.040000pt;}
.x181_c00002{left:24.960000pt;}
.x14_c00002{left:26.880000pt;}
.xb_c00002{left:28.800000pt;}
.x119_c00002{left:30.720000pt;}
.x78_c00002{left:32.000000pt;}
.xaa_c00002{left:33.280000pt;}
.xd2_c00002{left:35.200000pt;}
.x156_c00002{left:36.480000pt;}
.x56_c00002{left:38.400000pt;}
.x5b_c00002{left:39.680000pt;}
.x172_c00002{left:41.600000pt;}
.x176_c00002{left:42.880000pt;}
.x1ad_c00002{left:44.160000pt;}
.x1b1_c00002{left:45.440000pt;}
.x196_c00002{left:46.720000pt;}
.x14b_c00002{left:48.000000pt;}
.x13a_c00002{left:49.280000pt;}
.xcf_c00002{left:51.200000pt;}
.x183_c00002{left:52.480000pt;}
.xf0_c00002{left:53.760000pt;}
.x18b_c00002{left:55.040000pt;}
.x2b_c00002{left:56.320000pt;}
.x70_c00002{left:57.600000pt;}
.x11e_c00002{left:59.520000pt;}
.x79_c00002{left:61.440000pt;}
.xdb_c00002{left:63.360000pt;}
.x3b_c00002{left:65.280000pt;}
.x5c_c00002{left:66.560000pt;}
.x5e_c00002{left:67.840000pt;}
.x161_c00002{left:69.120000pt;}
.xac_c00002{left:70.400000pt;}
.xbb_c00002{left:71.680000pt;}
.xf6_c00002{left:72.960000pt;}
.x52_c00002{left:74.880000pt;}
.x15_c00002{left:76.160000pt;}
.x10e_c00002{left:77.440000pt;}
.x16c_c00002{left:78.720000pt;}
.x99_c00002{left:80.640000pt;}
.x108_c00002{left:82.560000pt;}
.x44_c00002{left:84.480000pt;}
.x72_c00002{left:86.400000pt;}
.x132_c00002{left:87.680000pt;}
.x7a_c00002{left:89.600000pt;}
.xb0_c00002{left:90.880000pt;}
.x167_c00002{left:92.160000pt;}
.xf1_c00002{left:93.440000pt;}
.xc_c00002{left:95.360000pt;}
.x65_c00002{left:96.640000pt;}
.x129_c00002{left:97.920000pt;}
.x8a_c00002{left:99.840000pt;}
.xf9_c00002{left:101.120000pt;}
.xe0_c00002{left:102.400000pt;}
.x4f_c00002{left:103.680000pt;}
.x5a_c00002{left:105.600000pt;}
.x162_c00002{left:106.880000pt;}
.x85_c00002{left:108.160000pt;}
.x94_c00002{left:109.440000pt;}
.xf2_c00002{left:111.360000pt;}
.x18a_c00002{left:112.640000pt;}
.x33_c00002{left:113.920000pt;}
.xd_c00002{left:115.200000pt;}
.x114_c00002{left:116.480000pt;}
.x171_c00002{left:117.760000pt;}
.xc9_c00002{left:119.040000pt;}
.x104_c00002{left:120.320000pt;}
.xe9_c00002{left:121.600000pt;}
.x37_c00002{left:122.880000pt;}
.x26_c00002{left:124.160000pt;}
.x2_c00002{left:125.440000pt;}
.x121_c00002{left:126.720000pt;}
.x8b_c00002{left:128.000000pt;}
.x9f_c00002{left:129.280000pt;}
.xd3_c00002{left:131.200000pt;}
.x53_c00002{left:133.120000pt;}
.x57_c00002{left:134.400000pt;}
.x60_c00002{left:135.680000pt;}
.x16f_c00002{left:136.960000pt;}
.xb6_c00002{left:138.880000pt;}
.xfb_c00002{left:140.800000pt;}
.x42_c00002{left:142.080000pt;}
.x16_c00002{left:143.360000pt;}
.x116_c00002{left:144.640000pt;}
.x75_c00002{left:145.920000pt;}
.x95_c00002{left:147.200000pt;}
.xbf_c00002{left:148.480000pt;}
.xdc_c00002{left:149.760000pt;}
.x34_c00002{left:151.680000pt;}
.x21_c00002{left:152.960000pt;}
.x13f_c00002{left:154.880000pt;}
.x7b_c00002{left:156.160000pt;}
.xa0_c00002{left:157.440000pt;}
.xbc_c00002{left:158.720000pt;}
.x10d_c00002{left:160.000000pt;}
.x3f_c00002{left:161.280000pt;}
.x49_c00002{left:162.560000pt;}
.x6b_c00002{left:163.840000pt;}
.x11a_c00002{left:165.120000pt;}
.xa4_c00002{left:167.040000pt;}
.xc8_c00002{left:168.320000pt;}
.x17d_c00002{left:169.600000pt;}
.x31_c00002{left:170.880000pt;}
.x3_c00002{left:172.160000pt;}
.x143_c00002{left:173.440000pt;}
.x120_c00002{left:174.720000pt;}
.xcb_c00002{left:176.000000pt;}
.x8c_c00002{left:177.280000pt;}
.xb2_c00002{left:178.560000pt;}
.xd4_c00002{left:180.480000pt;}
.x17_c00002{left:182.400000pt;}
.x136_c00002{left:183.680000pt;}
.x76_c00002{left:184.960000pt;}
.xc0_c00002{left:186.240000pt;}
.xbd_c00002{left:188.160000pt;}
.x47_c00002{left:190.080000pt;}
.x43_c00002{left:191.360000pt;}
.x10f_c00002{left:192.640000pt;}
.x125_c00002{left:193.920000pt;}
.x7c_c00002{left:195.200000pt;}
.xa5_c00002{left:196.480000pt;}
.xfc_c00002{left:197.760000pt;}
.x27_c00002{left:199.680000pt;}
.xe_c00002{left:201.600000pt;}
.x14c_c00002{left:202.880000pt;}
.x16b_c00002{left:204.160000pt;}
.xad_c00002{left:205.440000pt;}
.xce_c00002{left:206.720000pt;}
.x109_c00002{left:208.000000pt;}
.x4b_c00002{left:209.920000pt;}
.x5d_c00002{left:211.200000pt;}
.x135_c00002{left:212.480000pt;}
.x16d_c00002{left:213.760000pt;}
.x8d_c00002{left:215.680000pt;}
.xf7_c00002{left:217.600000pt;}
.x35_c00002{left:219.520000pt;}
.x48_c00002{left:220.800000pt;}
.x115_c00002{left:222.080000pt;}
.x96_c00002{left:224.000000pt;}
.x9a_c00002{left:225.280000pt;}
.xd5_c00002{left:227.200000pt;}
.x15d_c00002{left:229.120000pt;}
.xf_c00002{left:230.400000pt;}
.x122_c00002{left:232.320000pt;}
.x7d_c00002{left:233.600000pt;}
.xab_c00002{left:234.880000pt;}
.x102_c00002{left:236.160000pt;}
.x151_c00002{left:238.080000pt;}
.x4c_c00002{left:239.360000pt;}
.x58_c00002{left:240.640000pt;}
.x12c_c00002{left:241.920000pt;}
.xa6_c00002{left:243.840000pt;}
.xff_c00002{left:245.120000pt;}
.xea_c00002{left:246.400000pt;}
.x4_c00002{left:248.320000pt;}
.x18_c00002{left:249.600000pt;}
.x146_c00002{left:250.880000pt;}
.x133_c00002{left:252.160000pt;}
.xae_c00002{left:253.440000pt;}
.xb3_c00002{left:254.720000pt;}
.x185_c00002{left:256.000000pt;}
.x177_c00002{left:257.280000pt;}
.x1c_c00002{left:258.560000pt;}
.x10_c00002{left:259.840000pt;}
.x138_c00002{left:261.120000pt;}
.x8e_c00002{left:263.040000pt;}
.xd6_c00002{left:264.960000pt;}
.x4d_c00002{left:266.880000pt;}
.x28_c00002{left:268.800000pt;}
.x12d_c00002{left:270.720000pt;}
.x86_c00002{left:272.000000pt;}
.xb1_c00002{left:273.920000pt;}
.xf3_c00002{left:275.840000pt;}
.x110_c00002{left:277.120000pt;}
.x19_c00002{left:278.400000pt;}
.x149_c00002{left:279.680000pt;}
.x170_c00002{left:280.960000pt;}
.xcc_c00002{left:282.240000pt;}
.xd0_c00002{left:283.520000pt;}
.x15c_c00002{left:284.800000pt;}
.x40_c00002{left:286.720000pt;}
.x5_c00002{left:288.000000pt;}
.x137_c00002{left:289.920000pt;}
.x7e_c00002{left:291.200000pt;}
.x106_c00002{left:292.480000pt;}
.xdd_c00002{left:294.400000pt;}
.x158_c00002{left:295.680000pt;}
.x2c_c00002{left:296.960000pt;}
.x5f_c00002{left:298.240000pt;}
.x77_c00002{left:299.520000pt;}
.x8f_c00002{left:301.440000pt;}
.x100_c00002{left:302.720000pt;}
.xe1_c00002{left:304.640000pt;}
.x45_c00002{left:305.920000pt;}
.x1d_c00002{left:307.200000pt;}
.x13d_c00002{left:309.120000pt;}
.x87_c00002{left:310.400000pt;}
.x187_c00002{left:311.680000pt;}
.x14d_c00002{left:312.960000pt;}
.x18f_c00002{left:314.240000pt;}
.x3c_c00002{left:315.520000pt;}
.x22_c00002{left:316.800000pt;}
.x11b_c00002{left:318.720000pt;}
.x7f_c00002{left:320.000000pt;}
.xb4_c00002{left:321.280000pt;}
.xeb_c00002{left:323.200000pt;}
.x6f_c00002{left:325.120000pt;}
.x2d_c00002{left:326.400000pt;}
.x13b_c00002{left:327.680000pt;}
.x199_c00002{left:328.960000pt;}
.xc5_c00002{left:330.240000pt;}
.xd7_c00002{left:332.160000pt;}
.x111_c00002{left:334.080000pt;}
.x29_c00002{left:336.000000pt;}
.x12e_c00002{left:337.920000pt;}
.xa1_c00002{left:339.200000pt;}
.xb7_c00002{left:340.480000pt;}
.xe4_c00002{left:341.760000pt;}
.x112_c00002{left:343.680000pt;}
.x11_c00002{left:345.600000pt;}
.x123_c00002{left:346.880000pt;}
.xa7_c00002{left:348.800000pt;}
.x14e_c00002{left:350.080000pt;}
.xde_c00002{left:351.360000pt;}
.x180_c00002{left:352.640000pt;}
.x50_c00002{left:353.920000pt;}
.x2e_c00002{left:355.200000pt;}
.x14a_c00002{left:356.480000pt;}
.x173_c00002{left:357.760000pt;}
.xc1_c00002{left:359.040000pt;}
.xfd_c00002{left:360.960000pt;}
.x182_c00002{left:362.240000pt;}
.x4a_c00002{left:363.520000pt;}
.x1a_c00002{left:364.800000pt;}
.x142_c00002{left:366.080000pt;}
.x88_c00002{left:367.360000pt;}
.xb8_c00002{left:369.280000pt;}
.xd8_c00002{left:370.560000pt;}
.x154_c00002{left:372.480000pt;}
.x38_c00002{left:373.760000pt;}
.x147_c00002{left:375.040000pt;}
.x11c_c00002{left:376.320000pt;}
.x90_c00002{left:378.240000pt;}
.x101_c00002{left:380.160000pt;}
.x188_c00002{left:381.440000pt;}
.x69_c00002{left:382.720000pt;}
.x6_c00002{left:384.000000pt;}
.x117_c00002{left:385.280000pt;}
.x80_c00002{left:387.200000pt;}
.x10a_c00002{left:389.120000pt;}
.x179_c00002{left:390.400000pt;}
.x73_c00002{left:391.680000pt;}
.x1e_c00002{left:393.600000pt;}
.x12f_c00002{left:394.880000pt;}
.xc2_c00002{left:396.800000pt;}
.xaf_c00002{left:398.080000pt;}
.xe5_c00002{left:399.360000pt;}
.x17f_c00002{left:400.640000pt;}
.x3d_c00002{left:401.920000pt;}
.x7_c00002{left:403.200000pt;}
.x55_c00002{left:405.120000pt;}
.x91_c00002{left:407.040000pt;}
.xbe_c00002{left:408.960000pt;}
.x155_c00002{left:410.240000pt;}
.x189_c00002{left:411.520000pt;}
.x39_c00002{left:412.800000pt;}
.x126_c00002{left:414.720000pt;}
.x9b_c00002{left:416.000000pt;}
.x164_c00002{left:417.280000pt;}
.xec_c00002{left:418.560000pt;}
.x18d_c00002{left:419.840000pt;}
.x6c_c00002{left:421.120000pt;}
.x1f_c00002{left:422.400000pt;}
.x13c_c00002{left:423.680000pt;}
.x16e_c00002{left:424.960000pt;}
.x81_c00002{left:426.240000pt;}
.xf4_c00002{left:427.520000pt;}
.x17b_c00002{left:428.800000pt;}
.x66_c00002{left:430.720000pt;}
.x3e_c00002{left:432.000000pt;}
.x130_c00002{left:433.920000pt;}
.xc6_c00002{left:435.200000pt;}
.x107_c00002{left:436.480000pt;}
.xf8_c00002{left:437.760000pt;}
.x18e_c00002{left:439.040000pt;}
.x46_c00002{left:440.320000pt;}
.x8_c00002{left:442.240000pt;}
.x127_c00002{left:443.520000pt;}
.x9c_c00002{left:444.800000pt;}
.xb9_c00002{left:446.080000pt;}
.xe6_c00002{left:447.360000pt;}
.x6d_c00002{left:449.280000pt;}
.x23_c00002{left:451.200000pt;}
.x134_c00002{left:452.480000pt;}
.xa2_c00002{left:453.760000pt;}
.x82_c00002{left:455.040000pt;}
.xfe_c00002{left:456.320000pt;}
.x17c_c00002{left:458.240000pt;}
.x68_c00002{left:459.520000pt;}
.x1b_c00002{left:460.800000pt;}
.x124_c00002{left:462.720000pt;}
.xa8_c00002{left:464.640000pt;}
.xed_c00002{left:466.560000pt;}
.x190_c00002{left:467.840000pt;}
.x61_c00002{left:469.120000pt;}
.x9_c00002{left:470.400000pt;}
.x141_c00002{left:471.680000pt;}
.x92_c00002{left:473.600000pt;}
.x10b_c00002{left:475.520000pt;}
.xdf_c00002{left:476.800000pt;}
.x15f_c00002{left:478.080000pt;}
.x32_c00002{left:479.360000pt;}
.x145_c00002{left:480.640000pt;}
.xca_c00002{left:482.560000pt;}
.xc3_c00002{left:483.840000pt;}
.x169_c00002{left:485.120000pt;}
.xe7_c00002{left:486.400000pt;}
.x157_c00002{left:487.680000pt;}
.x2a_c00002{left:488.960000pt;}
.x118_c00002{left:490.240000pt;}
.xcd_c00002{left:492.160000pt;}
.xa9_c00002{left:493.440000pt;}
.xee_c00002{left:495.360000pt;}
.x18c_c00002{left:496.640000pt;}
.x67_c00002{left:497.920000pt;}
.x41_c00002{left:499.200000pt;}
.x128_c00002{left:501.120000pt;}
.x9d_c00002{left:503.040000pt;}
.x10c_c00002{left:504.320000pt;}
.xd9_c00002{left:505.600000pt;}
.x74_c00002{left:507.520000pt;}
.x12_c00002{left:508.800000pt;}
.x163_c00002{left:510.080000pt;}
.x12a_c00002{left:511.360000pt;}
.x97_c00002{left:512.640000pt;}
.xe2_c00002{left:514.560000pt;}
.x15b_c00002{left:516.480000pt;}
.x63_c00002{left:517.760000pt;}
.x20_c00002{left:519.040000pt;}
.x11d_c00002{left:520.320000pt;}
.x83_c00002{left:521.600000pt;}
.x103_c00002{left:522.880000pt;}
.xef_c00002{left:524.160000pt;}
.x17a_c00002{left:525.440000pt;}
.x62_c00002{left:526.720000pt;}
.x36_c00002{left:528.000000pt;}
.x139_c00002{left:529.280000pt;}
.x11f_c00002{left:530.560000pt;}
.xc4_c00002{left:531.840000pt;}
.xe3_c00002{left:533.120000pt;}
.x175_c00002{left:534.400000pt;}
.x59_c00002{left:535.680000pt;}
.x6a_c00002{left:536.960000pt;}
.x13_c00002{left:538.240000pt;}
.x148_c00002{left:539.520000pt;}
.x93_c00002{left:541.440000pt;}
.x165_c00002{left:542.720000pt;}
.xda_c00002{left:544.000000pt;}
.x24_c00002{left:545.920000pt;}
.x54_c00002{left:547.840000pt;}
.x13e_c00002{left:549.120000pt;}
.x9e_c00002{left:551.040000pt;}
.xfa_c00002{left:552.960000pt;}
.x152_c00002{left:554.880000pt;}
.x2f_c00002{left:556.800000pt;}
.x51_c00002{left:558.080000pt;}
.x71_c00002{left:559.360000pt;}
.xa3_c00002{left:560.640000pt;}
.xb5_c00002{left:562.560000pt;}
.x178_c00002{left:563.840000pt;}
.x113_c00002{left:565.120000pt;}
.x4e_c00002{left:566.400000pt;}
.xa_c00002{left:567.680000pt;}
.x16a_c00002{left:568.960000pt;}
.x84_c00002{left:570.240000pt;}
.xf5_c00002{left:572.160000pt;}
.x17e_c00002{left:573.440000pt;}
.x159_c00002{left:574.720000pt;}
.x25_c00002{left:576.640000pt;}
.x12b_c00002{left:577.920000pt;}
.x150_c00002{left:579.200000pt;}
.x89_c00002{left:580.480000pt;}
.xe8_c00002{left:581.760000pt;}
.x191_c00002{left:583.040000pt;}
.x153_c00002{left:584.320000pt;}
.x3a_c00002{left:585.600000pt;}
.x131_c00002{left:587.520000pt;}
.xc7_c00002{left:588.800000pt;}
.x98_c00002{left:590.080000pt;}
.x105_c00002{left:592.000000pt;}
.x15e_c00002{left:593.920000pt;}
.x64_c00002{left:595.200000pt;}
.x1_c00002{left:597.120000pt;}
.x6e_c00002{left:599.040000pt;}
.xba_c00002{left:600.960000pt;}
.x15a_c00002{left:602.880000pt;}
.x160_c00002{left:604.160000pt;}
.x19a_c00002{left:606.080000pt;}
.x140_c00002{left:607.360000pt;}
.x174_c00002{left:608.640000pt;}
.x14f_c00002{left:610.560000pt;}
.x186_c00002{left:611.840000pt;}
.x195_c00002{left:613.760000pt;}
.x1a8_c00002{left:615.040000pt;}
.x144_c00002{left:616.320000pt;}
.x19b_c00002{left:617.600000pt;}
.xd1_c00002{left:619.520000pt;}
.x1a4_c00002{left:621.440000pt;}
.x1a0_c00002{left:623.360000pt;}
.x1a1_c00002{left:625.280000pt;}
.x193_c00002{left:627.200000pt;}
.x19f_c00002{left:629.120000pt;}
.x166_c00002{left:630.400000pt;}
.x19c_c00002{left:631.680000pt;}
.x197_c00002{left:632.960000pt;}
.x194_c00002{left:634.880000pt;}
.x1b2_c00002{left:636.800000pt;}
.x1a6_c00002{left:640.000000pt;}
.x1ae_c00002{left:641.280000pt;}
.x1aa_c00002{left:642.560000pt;}
.x1a9_c00002{left:643.840000pt;}
.x19e_c00002{left:645.120000pt;}
.x19d_c00002{left:647.040000pt;}
.x198_c00002{left:648.320000pt;}
.x168_c00002{left:650.240000pt;}
.x1a7_c00002{left:653.440000pt;}
.x192_c00002{left:656.000000pt;}
.x1a5_c00002{left:685.440000pt;}
.x1ac_c00002{left:696.960000pt;}
}




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